Repository: amanchadha/stanford-cs224n-assignments-2021 Branch: main Commit: 20ede2ff6b41 Files: 183 Total size: 210.6 MB Directory structure: gitextract_w5crukyc/ ├── README.md ├── a1/ │ ├── .ipynb_checkpoints/ │ │ └── exploring_word_vectors-checkpoint.ipynb │ ├── Gensim word vector visualization.ipynb │ ├── README.txt │ ├── env.yml │ ├── exploring_word_vectors.ipynb │ └── exploring_word_vectors_solved.ipynb ├── a2/ │ ├── collect_submission.sh │ ├── env.yml │ ├── get_datasets.sh │ ├── run.py │ ├── saved_params_10000.npy │ ├── saved_params_15000.npy │ ├── saved_params_20000.npy │ ├── saved_params_25000.npy │ ├── saved_params_30000.npy │ ├── saved_params_35000.npy │ ├── saved_params_40000.npy │ ├── saved_params_5000.npy │ ├── saved_state_10000.pickle │ ├── saved_state_15000.pickle │ ├── saved_state_20000.pickle │ ├── saved_state_25000.pickle │ ├── saved_state_30000.pickle │ ├── saved_state_35000.pickle │ ├── saved_state_40000.pickle │ ├── saved_state_5000.pickle │ ├── sgd.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── datasets/ │ │ │ └── stanfordSentimentTreebank/ │ │ │ ├── README.txt │ │ │ ├── SOStr.txt │ │ │ ├── STree.txt │ │ │ ├── datasetSentences.txt │ │ │ ├── datasetSplit.txt │ │ │ ├── dictionary.txt │ │ │ ├── original_rt_snippets.txt │ │ │ └── sentiment_labels.txt │ │ ├── gradcheck.py │ │ ├── treebank.py │ │ └── utils.py │ └── word2vec.py ├── a3/ │ ├── README.txt │ ├── collect_submission.sh │ ├── data/ │ │ ├── dev.conll │ │ ├── dev.gold.conll │ │ ├── en-cw.txt │ │ ├── test.conll │ │ ├── test.gold.conll │ │ ├── train.conll │ │ └── train.gold.conll │ ├── local_env.yml │ ├── parser_model.py │ ├── parser_transitions.py │ ├── results/ │ │ └── 20210202_021220/ │ │ └── model.weights │ ├── run.py │ └── utils/ │ ├── __init__.py │ ├── general_utils.py │ └── parser_utils.py ├── a4/ │ ├── README.md │ ├── __init__.py │ ├── chr_en_data/ │ │ ├── dev.chr │ │ ├── dev.en │ │ ├── test.chr │ │ ├── test.en │ │ ├── train.chr │ │ └── train.en │ ├── collect_submission.bat │ ├── collect_submission.sh │ ├── gpu_requirements.txt │ ├── local_env.yml │ ├── model_embeddings.py │ ├── nmt_model.py │ ├── outputs/ │ │ ├── .gitignore │ │ └── test_outputs.txt │ ├── run.bat │ ├── run.py │ ├── run.sh │ ├── sanity_check.py │ ├── sanity_check_en_es_data/ │ │ ├── Ybar_t.pkl │ │ ├── combined_outputs.pkl │ │ ├── dec_init_state.pkl │ │ ├── dec_state.pkl │ │ ├── dev_sanity_check.en │ │ ├── dev_sanity_check.es │ │ ├── e_t.pkl │ │ ├── enc_hiddens.pkl │ │ ├── enc_hiddens_proj.pkl │ │ ├── enc_masks.pkl │ │ ├── o_t.pkl │ │ ├── step_dec_state_0.pkl │ │ ├── step_dec_state_1.pkl │ │ ├── step_dec_state_10.pkl │ │ ├── step_dec_state_11.pkl │ │ ├── step_dec_state_12.pkl │ │ ├── step_dec_state_13.pkl │ │ ├── step_dec_state_14.pkl │ │ ├── step_dec_state_15.pkl │ │ ├── step_dec_state_16.pkl │ │ ├── step_dec_state_17.pkl │ │ ├── step_dec_state_18.pkl │ │ ├── step_dec_state_19.pkl │ │ ├── step_dec_state_2.pkl │ │ ├── step_dec_state_20.pkl │ │ ├── step_dec_state_21.pkl │ │ ├── step_dec_state_22.pkl │ │ ├── step_dec_state_3.pkl │ │ ├── step_dec_state_4.pkl │ │ ├── step_dec_state_5.pkl │ │ ├── step_dec_state_6.pkl │ │ ├── step_dec_state_7.pkl │ │ ├── step_dec_state_8.pkl │ │ ├── step_dec_state_9.pkl │ │ ├── step_o_t_0.pkl │ │ ├── step_o_t_1.pkl │ │ ├── step_o_t_10.pkl │ │ ├── step_o_t_11.pkl │ │ ├── step_o_t_12.pkl │ │ ├── step_o_t_13.pkl │ │ ├── step_o_t_14.pkl │ │ ├── step_o_t_15.pkl │ │ ├── step_o_t_16.pkl │ │ ├── step_o_t_17.pkl │ │ ├── step_o_t_18.pkl │ │ ├── step_o_t_19.pkl │ │ ├── step_o_t_2.pkl │ │ ├── step_o_t_20.pkl │ │ ├── step_o_t_21.pkl │ │ ├── step_o_t_22.pkl │ │ ├── step_o_t_3.pkl │ │ ├── step_o_t_4.pkl │ │ ├── step_o_t_5.pkl │ │ ├── step_o_t_6.pkl │ │ ├── step_o_t_7.pkl │ │ ├── step_o_t_8.pkl │ │ ├── step_o_t_9.pkl │ │ ├── target_padded.pkl │ │ ├── test_sanity_check.en │ │ ├── test_sanity_check.es │ │ ├── train_sanity_check.en │ │ ├── train_sanity_check.es │ │ └── vocab_sanity_check.json │ ├── src.model │ ├── src.vocab │ ├── test_outputs.txt │ ├── tgt.model │ ├── tgt.vocab │ ├── utils.py │ ├── vocab.json │ └── vocab.py └── a5/ ├── birth_dev.tsv ├── birth_places_train.tsv ├── birth_test_inputs.tsv ├── collect_submission.sh ├── d_cmd ├── f_cmd ├── g_cmd ├── mingpt-demo/ │ ├── .ipynb_checkpoints/ │ │ └── play_char-checkpoint.ipynb │ ├── LICENSE │ ├── README.md │ ├── mingpt/ │ │ ├── __init__.py │ │ ├── model.py │ │ ├── trainer.py │ │ └── utils.py │ └── play_char.ipynb ├── src/ │ ├── attention.py │ ├── dataset.py │ ├── london_baseline.py │ ├── model.py │ ├── run.py │ ├── trainer.py │ └── utils.py ├── synthesizer.finetune.params ├── synthesizer.pretrain.dev.predictions ├── synthesizer.pretrain.params ├── synthesizer.pretrain.test.predictions ├── vanilla.finetune.params ├── vanilla.model.params ├── vanilla.nopretrain.dev.predictions ├── vanilla.nopretrain.test.predictions ├── vanilla.pretrain.dev.predictions ├── vanilla.pretrain.params ├── vanilla.pretrain.test.predictions └── wiki.txt ================================================ FILE CONTENTS ================================================ ================================================ FILE: README.md ================================================ # Stanford Course CS224n - Natural Language Processing with Deep Learning (Winter 2021) These 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. There are five assignments in total. Here is a brief description of each one of these assignments: ## Assignment 1. Word Embeddings - 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). ### 1. Count-Based Word Vectors - 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. - 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 w, and then slide this window over all of the documents. Then, we count how many times two different words vi and vj occurs with each other in a window, and put this number in the (i, j)th entry of the matrix. We then run dimensionality reduction on the co-occurence matrix using singular value decomposition. We then select the top r components after the decomposition and thus, derive r-dimensional embeddings for words.

drawing

### 2. Prediction (or Maximum Likelihood)-Based Word Vectors: Word2Vec - 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 x, y, and z, you have to find a word w such that the following relationship holds: x is to y like z is to w. 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. - If you’re feeling adventurous, challenge yourself and try reading [GloVe’s original paper](https://nlp.stanford.edu/pubs/glove.pdf).

drawing

## Assignment 2. Understanding and Implementing Word2Vec - 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. - 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. - 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.

drawing

## Assignment 3. Neural Dependency Parsing - 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. - 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. - 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.

drawing

## Assignment 4. Seq2Seq Machine Translation Model with Multiplicative Attention - 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.

drawing

## Assignment 5. Self-Attention, Transformers, and Pretraining - 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: 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. 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. - 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.

## Handouts - [x] Assignment 1: Intro to word vectors [`a1/exploring_word_vectors.ipynb`](a1/exploring_word_vectors.ipynb) - [x] Assignment 2: Training Word2Vec [`a2/a2.pdf`](a2/a2.pdf) - [x] Assignment 3: Dependency parsing [`a3/a3.pdf`](a3/a3.pdf) - [x] Assignment 4: Neural machine translation with seq2seq and attention [`a4/a4.pdf`](a4/a4.pdf) - [x] Assignment 5: Neural machine translation with sub-word modeling [`a5/a5.pdf`](a5/a5.pdf) - [x] Project: [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/) - Stanford Question Asking Dataset [`project/proposal.pdf`](project/proposal.pdf) ## Prerequisites - Proficiency in Python. 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. - College Calculus, Linear Algebra (e.g. MATH51, CME100). You should be comfortable taking (multivariable) derivatives and understanding matrix/vector notation and operations. - Basic Probability and Statistics (e.g. CS109 or equivalent) You should know basics of probabilities, Gaussian distributions, mean, standard deviation, etc. - Foundations of Machine Learning (e.g. CS221 or CS229). 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! ## Course Description - 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. - 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. ## Resources Lecture notes, assignments and other materials can be downloaded from the [course webpage](http://web.stanford.edu/class/cs224n/). - Lectures: [YouTube](https://www.youtube.com/watch?v=8rXD5-xhemo&list=PLoROMvodv4rOhcuXMZkNm7j3fVwBBY42z) - Schedule: [Stanford CS224n](http://web.stanford.edu/class/cs224n/index.html#schedule) - Projects: [Stanford CS224n](http://web.stanford.edu/class/cs224n/project.html) ## Disclaimer I 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). ================================================ FILE: a1/.ipynb_checkpoints/exploring_word_vectors-checkpoint.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# CS224N Assignment 1: Exploring Word Vectors (25 Points)\n", "### Due 4:30pm, Tue Jan 19 \n", "\n", "Welcome to CS224N! \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", "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", "**Assignment Notes:** Please make sure to save the notebook as you go along. Submission Instructions are located at the bottom of the notebook." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[nltk_data] Downloading package reuters to /Users/Aman/nltk_data...\n", "[nltk_data] Package reuters is already up-to-date!\n" ] } ], "source": [ "# All Import Statements Defined Here\n", "# Note: Do not add to this list.\n", "# ----------------\n", "\n", "import sys\n", "assert sys.version_info[0]==3\n", "assert sys.version_info[1] >= 5\n", "\n", "from gensim.models import KeyedVectors\n", "from gensim.test.utils import datapath\n", "import pprint\n", "import matplotlib.pyplot as plt\n", "plt.rcParams['figure.figsize'] = [10, 5]\n", "import nltk\n", "nltk.download('reuters')\n", "from nltk.corpus import reuters\n", "import numpy as np\n", "import random\n", "import scipy as sp\n", "from sklearn.decomposition import TruncatedSVD\n", "from sklearn.decomposition import PCA\n", "\n", "START_TOKEN = ''\n", "END_TOKEN = ''\n", "\n", "np.random.seed(0)\n", "random.seed(0)\n", "# ----------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Word Vectors\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", "**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*\"." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Part 1: Count-Based Word Vectors (10 points)\n", "\n", "Most word vector models start from the following idea:\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", "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))." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Co-Occurrence\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", "**Example: Co-Occurrence with Fixed Window of n=1**:\n", "\n", "Document 1: \"all that glitters is not gold\"\n", "\n", "Document 2: \"all is well that ends well\"\n", "\n", "\n", "| * | `` | all | that | glitters | is | not | gold | well | ends | `` |\n", "|----------|-------|-----|------|----------|------|------|-------|------|------|-----|\n", "| `` | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |\n", "| all | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |\n", "| that | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |\n", "| glitters | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |\n", "| is | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 |\n", "| not | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |\n", "| gold | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 |\n", "| well | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 |\n", "| ends | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |\n", "| `` | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |\n", "\n", "**Note:** In NLP, we often add `` and `` tokens to represent the beginning and end of sentences, paragraphs or documents. In thise case we imagine `` and `` tokens encapsulating each document, e.g., \"`` All that glitters is not gold ``\", and include these tokens in our co-occurrence counts.\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", "![Picture of an SVD](imgs/svd.png \"SVD\")\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", "**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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Plotting Co-Occurrence Word Embeddings\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 `` and `` tokens to each of the documents, and lowercases words. You do **not** have to perform any other kind of pre-processing." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def read_corpus(category=\"crude\"):\n", " \"\"\" Read files from the specified Reuter's category.\n", " Params:\n", " category (string): category name\n", " Return:\n", " list of lists, with words from each of the processed files\n", " \"\"\"\n", " files = reuters.fileids(category)\n", " return [[START_TOKEN] + [w.lower() for w in list(reuters.words(f))] + [END_TOKEN] for f in files]\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's have a look what these documents are like…." ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "scrolled": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[['', 'japan', 'to', 'revise', 'long', '-', 'term', 'energy', 'demand', 'downwards', 'the',\n", " 'ministry', 'of', 'international', 'trade', 'and', 'industry', '(', 'miti', ')', 'will', 'revise',\n", " 'its', 'long', '-', 'term', 'energy', 'supply', '/', 'demand', 'outlook', 'by', 'august', 'to',\n", " 'meet', 'a', 'forecast', 'downtrend', 'in', 'japanese', 'energy', 'demand', ',', 'ministry',\n", " 'officials', 'said', '.', 'miti', 'is', 'expected', 'to', 'lower', 'the', 'projection', 'for',\n", " 'primary', 'energy', 'supplies', 'in', 'the', 'year', '2000', 'to', '550', 'mln', 'kilolitres',\n", " '(', 'kl', ')', 'from', '600', 'mln', ',', 'they', 'said', '.', 'the', 'decision', 'follows',\n", " 'the', 'emergence', 'of', 'structural', 'changes', 'in', 'japanese', 'industry', 'following',\n", " 'the', 'rise', 'in', 'the', 'value', 'of', 'the', 'yen', 'and', 'a', 'decline', 'in', 'domestic',\n", " 'electric', 'power', 'demand', '.', 'miti', 'is', 'planning', 'to', 'work', 'out', 'a', 'revised',\n", " 'energy', 'supply', '/', 'demand', 'outlook', 'through', 'deliberations', 'of', 'committee',\n", " 'meetings', 'of', 'the', 'agency', 'of', 'natural', 'resources', 'and', 'energy', ',', 'the',\n", " 'officials', 'said', '.', 'they', 'said', 'miti', 'will', 'also', 'review', 'the', 'breakdown',\n", " 'of', 'energy', 'supply', 'sources', ',', 'including', 'oil', ',', 'nuclear', ',', 'coal', 'and',\n", " 'natural', 'gas', '.', 'nuclear', 'energy', 'provided', 'the', 'bulk', 'of', 'japan', \"'\", 's',\n", " 'electric', 'power', 'in', 'the', 'fiscal', 'year', 'ended', 'march', '31', ',', 'supplying',\n", " 'an', 'estimated', '27', 'pct', 'on', 'a', 'kilowatt', '/', 'hour', 'basis', ',', 'followed',\n", " 'by', 'oil', '(', '23', 'pct', ')', 'and', 'liquefied', 'natural', 'gas', '(', '21', 'pct', '),',\n", " 'they', 'noted', '.', ''],\n", " ['', 'energy', '/', 'u', '.', 's', '.', 'petrochemical', 'industry', 'cheap', 'oil',\n", " 'feedstocks', ',', 'the', 'weakened', 'u', '.', 's', '.', 'dollar', 'and', 'a', 'plant',\n", " 'utilization', 'rate', 'approaching', '90', 'pct', 'will', 'propel', 'the', 'streamlined', 'u',\n", " '.', 's', '.', 'petrochemical', 'industry', 'to', 'record', 'profits', 'this', 'year', ',',\n", " 'with', 'growth', 'expected', 'through', 'at', 'least', '1990', ',', 'major', 'company',\n", " 'executives', 'predicted', '.', 'this', 'bullish', 'outlook', 'for', 'chemical', 'manufacturing',\n", " 'and', 'an', 'industrywide', 'move', 'to', 'shed', 'unrelated', 'businesses', 'has', 'prompted',\n", " 'gaf', 'corp', '&', 'lt', ';', 'gaf', '>,', 'privately', '-', 'held', 'cain', 'chemical', 'inc',\n", " ',', 'and', 'other', 'firms', 'to', 'aggressively', 'seek', 'acquisitions', 'of', 'petrochemical',\n", " 'plants', '.', 'oil', 'companies', 'such', 'as', 'ashland', 'oil', 'inc', '&', 'lt', ';', 'ash',\n", " '>,', 'the', 'kentucky', '-', 'based', 'oil', 'refiner', 'and', 'marketer', ',', 'are', 'also',\n", " 'shopping', 'for', 'money', '-', 'making', 'petrochemical', 'businesses', 'to', 'buy', '.', '\"',\n", " 'i', 'see', 'us', 'poised', 'at', 'the', 'threshold', 'of', 'a', 'golden', 'period', ',\"', 'said',\n", " 'paul', 'oreffice', ',', 'chairman', 'of', 'giant', 'dow', 'chemical', 'co', '&', 'lt', ';',\n", " 'dow', '>,', 'adding', ',', '\"', 'there', \"'\", 's', 'no', 'major', 'plant', 'capacity', 'being',\n", " 'added', 'around', 'the', 'world', 'now', '.', 'the', 'whole', 'game', 'is', 'bringing', 'out',\n", " 'new', 'products', 'and', 'improving', 'the', 'old', 'ones', '.\"', 'analysts', 'say', 'the',\n", " 'chemical', 'industry', \"'\", 's', 'biggest', 'customers', ',', 'automobile', 'manufacturers',\n", " 'and', 'home', 'builders', 'that', 'use', 'a', 'lot', 'of', 'paints', 'and', 'plastics', ',',\n", " 'are', 'expected', 'to', 'buy', 'quantities', 'this', 'year', '.', 'u', '.', 's', '.',\n", " 'petrochemical', 'plants', 'are', 'currently', 'operating', 'at', 'about', '90', 'pct',\n", " 'capacity', ',', 'reflecting', 'tighter', 'supply', 'that', 'could', 'hike', 'product', 'prices',\n", " 'by', '30', 'to', '40', 'pct', 'this', 'year', ',', 'said', 'john', 'dosher', ',', 'managing',\n", " 'director', 'of', 'pace', 'consultants', 'inc', 'of', 'houston', '.', 'demand', 'for', 'some',\n", " 'products', 'such', 'as', 'styrene', 'could', 'push', 'profit', 'margins', 'up', 'by', 'as',\n", " 'much', 'as', '300', 'pct', ',', 'he', 'said', '.', 'oreffice', ',', 'speaking', 'at', 'a',\n", " 'meeting', 'of', 'chemical', 'engineers', 'in', 'houston', ',', 'said', 'dow', 'would', 'easily',\n", " 'top', 'the', '741', 'mln', 'dlrs', 'it', 'earned', 'last', 'year', 'and', 'predicted', 'it',\n", " 'would', 'have', 'the', 'best', 'year', 'in', 'its', 'history', '.', 'in', '1985', ',', 'when',\n", " 'oil', 'prices', 'were', 'still', 'above', '25', 'dlrs', 'a', 'barrel', 'and', 'chemical',\n", " 'exports', 'were', 'adversely', 'affected', 'by', 'the', 'strong', 'u', '.', 's', '.', 'dollar',\n", " ',', 'dow', 'had', 'profits', 'of', '58', 'mln', 'dlrs', '.', '\"', 'i', 'believe', 'the',\n", " 'entire', 'chemical', 'industry', 'is', 'headed', 'for', 'a', 'record', 'year', 'or', 'close',\n", " 'to', 'it', ',\"', 'oreffice', 'said', '.', 'gaf', 'chairman', 'samuel', 'heyman', 'estimated',\n", " 'that', 'the', 'u', '.', 's', '.', 'chemical', 'industry', 'would', 'report', 'a', '20', 'pct',\n", " 'gain', 'in', 'profits', 'during', '1987', '.', 'last', 'year', ',', 'the', 'domestic',\n", " 'industry', 'earned', 'a', 'total', 'of', '13', 'billion', 'dlrs', ',', 'a', '54', 'pct', 'leap',\n", " 'from', '1985', '.', 'the', 'turn', 'in', 'the', 'fortunes', 'of', 'the', 'once', '-', 'sickly',\n", " 'chemical', 'industry', 'has', 'been', 'brought', 'about', 'by', 'a', 'combination', 'of', 'luck',\n", " 'and', 'planning', ',', 'said', 'pace', \"'\", 's', 'john', 'dosher', '.', 'dosher', 'said', 'last',\n", " 'year', \"'\", 's', 'fall', 'in', 'oil', 'prices', 'made', 'feedstocks', 'dramatically', 'cheaper',\n", " 'and', 'at', 'the', 'same', 'time', 'the', 'american', 'dollar', 'was', 'weakening', 'against',\n", " 'foreign', 'currencies', '.', 'that', 'helped', 'boost', 'u', '.', 's', '.', 'chemical',\n", " 'exports', '.', 'also', 'helping', 'to', 'bring', 'supply', 'and', 'demand', 'into', 'balance',\n", " 'has', 'been', 'the', 'gradual', 'market', 'absorption', 'of', 'the', 'extra', 'chemical',\n", " 'manufacturing', 'capacity', 'created', 'by', 'middle', 'eastern', 'oil', 'producers', 'in',\n", " 'the', 'early', '1980s', '.', 'finally', ',', 'virtually', 'all', 'major', 'u', '.', 's', '.',\n", " 'chemical', 'manufacturers', 'have', 'embarked', 'on', 'an', 'extensive', 'corporate',\n", " 'restructuring', 'program', 'to', 'mothball', 'inefficient', 'plants', ',', 'trim', 'the',\n", " 'payroll', 'and', 'eliminate', 'unrelated', 'businesses', '.', 'the', 'restructuring', 'touched',\n", " 'off', 'a', 'flurry', 'of', 'friendly', 'and', 'hostile', 'takeover', 'attempts', '.', 'gaf', ',',\n", " 'which', 'made', 'an', 'unsuccessful', 'attempt', 'in', '1985', 'to', 'acquire', 'union',\n", " 'carbide', 'corp', '&', 'lt', ';', 'uk', '>,', 'recently', 'offered', 'three', 'billion', 'dlrs',\n", " 'for', 'borg', 'warner', 'corp', '&', 'lt', ';', 'bor', '>,', 'a', 'chicago', 'manufacturer',\n", " 'of', 'plastics', 'and', 'chemicals', '.', 'another', 'industry', 'powerhouse', ',', 'w', '.',\n", " 'r', '.', 'grace', '&', 'lt', ';', 'gra', '>', 'has', 'divested', 'its', 'retailing', ',',\n", " 'restaurant', 'and', 'fertilizer', 'businesses', 'to', 'raise', 'cash', 'for', 'chemical',\n", " 'acquisitions', '.', 'but', 'some', 'experts', 'worry', 'that', 'the', 'chemical', 'industry',\n", " 'may', 'be', 'headed', 'for', 'trouble', 'if', 'companies', 'continue', 'turning', 'their',\n", " 'back', 'on', 'the', 'manufacturing', 'of', 'staple', 'petrochemical', 'commodities', ',', 'such',\n", " 'as', 'ethylene', ',', 'in', 'favor', 'of', 'more', 'profitable', 'specialty', 'chemicals',\n", " 'that', 'are', 'custom', '-', 'designed', 'for', 'a', 'small', 'group', 'of', 'buyers', '.', '\"',\n", " 'companies', 'like', 'dupont', '&', 'lt', ';', 'dd', '>', 'and', 'monsanto', 'co', '&', 'lt', ';',\n", " 'mtc', '>', 'spent', 'the', 'past', 'two', 'or', 'three', 'years', 'trying', 'to', 'get', 'out',\n", " 'of', 'the', 'commodity', 'chemical', 'business', 'in', 'reaction', 'to', 'how', 'badly', 'the',\n", " 'market', 'had', 'deteriorated', ',\"', 'dosher', 'said', '.', '\"', 'but', 'i', 'think', 'they',\n", " 'will', 'eventually', 'kill', 'the', 'margins', 'on', 'the', 'profitable', 'chemicals', 'in',\n", " 'the', 'niche', 'market', '.\"', 'some', 'top', 'chemical', 'executives', 'share', 'the',\n", " 'concern', '.', '\"', 'the', 'challenge', 'for', 'our', 'industry', 'is', 'to', 'keep', 'from',\n", " 'getting', 'carried', 'away', 'and', 'repeating', 'past', 'mistakes', ',\"', 'gaf', \"'\", 's',\n", " 'heyman', 'cautioned', '.', '\"', 'the', 'shift', 'from', 'commodity', 'chemicals', 'may', 'be',\n", " 'ill', '-', 'advised', '.', 'specialty', 'businesses', 'do', 'not', 'stay', 'special', 'long',\n", " '.\"', 'houston', '-', 'based', 'cain', 'chemical', ',', 'created', 'this', 'month', 'by', 'the',\n", " 'sterling', 'investment', 'banking', 'group', ',', 'believes', 'it', 'can', 'generate', '700',\n", " 'mln', 'dlrs', 'in', 'annual', 'sales', 'by', 'bucking', 'the', 'industry', 'trend', '.',\n", " 'chairman', 'gordon', 'cain', ',', 'who', 'previously', 'led', 'a', 'leveraged', 'buyout', 'of',\n", " 'dupont', \"'\", 's', 'conoco', 'inc', \"'\", 's', 'chemical', 'business', ',', 'has', 'spent', '1',\n", " '.', '1', 'billion', 'dlrs', 'since', 'january', 'to', 'buy', 'seven', 'petrochemical', 'plants',\n", " 'along', 'the', 'texas', 'gulf', 'coast', '.', 'the', 'plants', 'produce', 'only', 'basic',\n", " 'commodity', 'petrochemicals', 'that', 'are', 'the', 'building', 'blocks', 'of', 'specialty',\n", " 'products', '.', '\"', 'this', 'kind', 'of', 'commodity', 'chemical', 'business', 'will', 'never',\n", " 'be', 'a', 'glamorous', ',', 'high', '-', 'margin', 'business', ',\"', 'cain', 'said', ',',\n", " 'adding', 'that', 'demand', 'is', 'expected', 'to', 'grow', 'by', 'about', 'three', 'pct',\n", " 'annually', '.', 'garo', 'armen', ',', 'an', 'analyst', 'with', 'dean', 'witter', 'reynolds', ',',\n", " 'said', 'chemical', 'makers', 'have', 'also', 'benefitted', 'by', 'increasing', 'demand', 'for',\n", " 'plastics', 'as', 'prices', 'become', 'more', 'competitive', 'with', 'aluminum', ',', 'wood',\n", " 'and', 'steel', 'products', '.', 'armen', 'estimated', 'the', 'upturn', 'in', 'the', 'chemical',\n", " 'business', 'could', 'last', 'as', 'long', 'as', 'four', 'or', 'five', 'years', ',', 'provided',\n", " 'the', 'u', '.', 's', '.', 'economy', 'continues', 'its', 'modest', 'rate', 'of', 'growth', '.',\n", " ''],\n", " ['', 'turkey', 'calls', 'for', 'dialogue', 'to', 'solve', 'dispute', 'turkey', 'said',\n", " 'today', 'its', 'disputes', 'with', 'greece', ',', 'including', 'rights', 'on', 'the',\n", " 'continental', 'shelf', 'in', 'the', 'aegean', 'sea', ',', 'should', 'be', 'solved', 'through',\n", " 'negotiations', '.', 'a', 'foreign', 'ministry', 'statement', 'said', 'the', 'latest', 'crisis',\n", " 'between', 'the', 'two', 'nato', 'members', 'stemmed', 'from', 'the', 'continental', 'shelf',\n", " 'dispute', 'and', 'an', 'agreement', 'on', 'this', 'issue', 'would', 'effect', 'the', 'security',\n", " ',', 'economy', 'and', 'other', 'rights', 'of', 'both', 'countries', '.', '\"', 'as', 'the',\n", " 'issue', 'is', 'basicly', 'political', ',', 'a', 'solution', 'can', 'only', 'be', 'found', 'by',\n", " 'bilateral', 'negotiations', ',\"', 'the', 'statement', 'said', '.', 'greece', 'has', 'repeatedly',\n", " 'said', 'the', 'issue', 'was', 'legal', 'and', 'could', 'be', 'solved', 'at', 'the',\n", " 'international', 'court', 'of', 'justice', '.', 'the', 'two', 'countries', 'approached', 'armed',\n", " 'confrontation', 'last', 'month', 'after', 'greece', 'announced', 'it', 'planned', 'oil',\n", " 'exploration', 'work', 'in', 'the', 'aegean', 'and', 'turkey', 'said', 'it', 'would', 'also',\n", " 'search', 'for', 'oil', '.', 'a', 'face', '-', 'off', 'was', 'averted', 'when', 'turkey',\n", " 'confined', 'its', 'research', 'to', 'territorrial', 'waters', '.', '\"', 'the', 'latest',\n", " 'crises', 'created', 'an', 'historic', 'opportunity', 'to', 'solve', 'the', 'disputes', 'between',\n", " 'the', 'two', 'countries', ',\"', 'the', 'foreign', 'ministry', 'statement', 'said', '.', 'turkey',\n", " \"'\", 's', 'ambassador', 'in', 'athens', ',', 'nazmi', 'akiman', ',', 'was', 'due', 'to', 'meet',\n", " 'prime', 'minister', 'andreas', 'papandreou', 'today', 'for', 'the', 'greek', 'reply', 'to', 'a',\n", " 'message', 'sent', 'last', 'week', 'by', 'turkish', 'prime', 'minister', 'turgut', 'ozal', '.',\n", " 'the', 'contents', 'of', 'the', 'message', 'were', 'not', 'disclosed', '.', '']]\n" ] } ], "source": [ "reuters_corpus = read_corpus()\n", "pprint.pprint(reuters_corpus[:3], compact=True, width=100)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.1: Implement `distinct_words` [code] (2 points)\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", "Your returned `corpus_words` should be sorted. You can use python's `sorted` function for this.\n", "\n", "You may find it useful to use [Python sets](https://www.w3schools.com/python/python_sets.asp) to remove duplicate words." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "def distinct_words(corpus):\n", " \"\"\" Determine a list of distinct words for the corpus.\n", " Params:\n", " corpus (list of list of strings): corpus of documents\n", " Return:\n", " corpus_words (list of strings): sorted list of distinct words across the corpus\n", " num_corpus_words (integer): number of distinct words across the corpus\n", " \"\"\"\n", " corpus_words = []\n", " num_corpus_words = -1\n", " \n", " # ------------------\n", " # Write your implementation here.\n", " corpus_words = {word for doc in corpus for word in doc}\n", " corpus_words = sorted(list(corpus_words))\n", " num_corpus_words = len(corpus_words)\n", " # ------------------\n", "\n", " return corpus_words, num_corpus_words" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n", "Passed All Tests!\n", "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this not an exhaustive check for correctness.\n", "# ---------------------\n", "\n", "# Define toy corpus\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", "test_corpus_words, num_corpus_words = distinct_words(test_corpus)\n", "\n", "# Correct answers\n", "ans_test_corpus_words = sorted([START_TOKEN, \"All\", \"ends\", \"that\", \"gold\", \"All's\", \"glitters\", \"isn't\", \"well\", END_TOKEN])\n", "ans_num_corpus_words = len(ans_test_corpus_words)\n", "\n", "# Test correct number of words\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", "# Test correct words\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", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.2: Implement `compute_co_occurrence_matrix` [code] (3 points)\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" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "def compute_co_occurrence_matrix(corpus, window_size=4):\n", " \"\"\" Compute co-occurrence matrix for the given corpus and window_size (default of 4).\n", " \n", " Note: Each word in a document should be at the center of a window. Words near edges will have a smaller\n", " number of co-occurring words.\n", " \n", " For example, if we take the document \" All that glitters is not gold \" with window size of 4,\n", " \"All\" will co-occur with \"\", \"that\", \"glitters\", \"is\", and \"not\".\n", " \n", " Params:\n", " corpus (list of list of strings): corpus of documents\n", " window_size (int): size of context window\n", " Return:\n", " M (a symmetric numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): \n", " Co-occurence matrix of word counts. \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", " word2ind (dict): dictionary that maps word to index (i.e. row/column number) for matrix M.\n", " \"\"\"\n", " words, num_words = distinct_words(corpus)\n", " M = None\n", " word2ind = {}\n", " \n", " # ------------------\n", " # Write your implementation here.\n", " \n", " # Build the word to index mapping.\n", " word2ind = {word: i for i, word in enumerate(words)}\n", " \n", " # Build the co-occurrence matrix.\n", " M = np.zeros((num_words, num_words))\n", " for body in corpus:\n", " for curr_idx, word in enumerate(body):\n", " for window_idx in range(-window_size, window_size + 1):\n", " neighbor_idx = curr_idx + window_idx\n", " if (neighbor_idx < 0) or (neighbor_idx >= len(body)) or (curr_idx == neighbor_idx):\n", " continue\n", " co_occur_word = body[neighbor_idx]\n", " (word_idx, co_occur_idx) = (word2ind[word], word2ind[co_occur_word])\n", " M[word_idx, co_occur_idx] += 1\n", "\n", " # ------------------\n", "\n", " return M, word2ind" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n", "Passed All Tests!\n", "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness.\n", "# ---------------------\n", "\n", "# Define toy corpus and get student's co-occurrence matrix\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", "M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\n", "\n", "# Correct M and word2ind\n", "M_test_ans = np.array( \n", " [[0., 0., 0., 0., 0., 0., 1., 0., 0., 1.,],\n", " [0., 0., 1., 1., 0., 0., 0., 0., 0., 0.,],\n", " [0., 1., 0., 0., 0., 0., 0., 0., 1., 0.,],\n", " [0., 1., 0., 0., 0., 0., 0., 0., 0., 1.,],\n", " [0., 0., 0., 0., 0., 0., 0., 0., 1., 1.,],\n", " [0., 0., 0., 0., 0., 0., 0., 1., 1., 0.,],\n", " [1., 0., 0., 0., 0., 0., 0., 1., 0., 0.,],\n", " [0., 0., 0., 0., 0., 1., 1., 0., 0., 0.,],\n", " [0., 0., 1., 0., 1., 1., 0., 0., 0., 1.,],\n", " [1., 0., 0., 1., 1., 0., 0., 0., 1., 0.,]]\n", ")\n", "ans_test_corpus_words = sorted([START_TOKEN, \"All\", \"ends\", \"that\", \"gold\", \"All's\", \"glitters\", \"isn't\", \"well\", END_TOKEN])\n", "word2ind_ans = dict(zip(ans_test_corpus_words, range(len(ans_test_corpus_words))))\n", "\n", "# Test correct word2ind\n", "assert (word2ind_ans == word2ind_test), \"Your word2ind is incorrect:\\nCorrect: {}\\nYours: {}\".format(word2ind_ans, word2ind_test)\n", "\n", "# Test correct M shape\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", "# Test correct M values\n", "for w1 in word2ind_ans.keys():\n", " idx1 = word2ind_ans[w1]\n", " for w2 in word2ind_ans.keys():\n", " idx2 = word2ind_ans[w2]\n", " student = M_test[idx1, idx2]\n", " correct = M_test_ans[idx1, idx2]\n", " if student != correct:\n", " print(\"Correct M:\")\n", " print(M_test_ans)\n", " print(\"Your M: \")\n", " print(M_test)\n", " raise AssertionError(\"Incorrect count at index ({}, {})=({}, {}) in matrix M. Yours has {} but should have {}.\".format(idx1, idx2, w1, w2, student, correct))\n", "\n", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.3: Implement `reduce_to_k_dim` [code] (1 point)\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", "**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)." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "def reduce_to_k_dim(M, k=2):\n", " \"\"\" Reduce a co-occurence count matrix of dimensionality (num_corpus_words, num_corpus_words)\n", " to a matrix of dimensionality (num_corpus_words, k) using the following SVD function from Scikit-Learn:\n", " - http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html\n", " \n", " Params:\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", " k (int): embedding size of each word after dimension reduction\n", " Return:\n", " M_reduced (numpy matrix of shape (number of corpus words, k)): matrix of k-dimensioal word embeddings.\n", " In terms of the SVD from math class, this actually returns U * S\n", " \"\"\" \n", " n_iters = 10 # Use this parameter in your call to `TruncatedSVD`\n", " M_reduced = None\n", " print(\"Running Truncated SVD over %i words...\" % (M.shape[0]))\n", " \n", " # ------------------\n", " # Write your implementation here.\n", "\n", " svd = TruncatedSVD(n_components = k, n_iter = n_iters)\n", " M_reduced = svd.fit_transform(M) \n", " # or (instead of the above line)...\n", " # svd.fit(M)\n", " # M_reduced = svd.transform(M)\n", " \n", " # ------------------\n", "\n", " print(\"Done.\")\n", " return M_reduced" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Running Truncated SVD over 10 words...\n", "Done.\n", "--------------------------------------------------------------------------------\n", "Passed All Tests!\n", "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness \n", "# In fact we only check that your M_reduced has the right dimensions.\n", "# ---------------------\n", "\n", "# Define toy corpus and run student code\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", "M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\n", "M_test_reduced = reduce_to_k_dim(M_test, k=2)\n", "\n", "# Test proper dimensions\n", "assert (M_test_reduced.shape[0] == 10), \"M_reduced has {} rows; should have {}\".format(M_test_reduced.shape[0], 10)\n", "assert (M_test_reduced.shape[1] == 2), \"M_reduced has {} columns; should have {}\".format(M_test_reduced.shape[1], 2)\n", "\n", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.4: Implement `plot_embeddings` [code] (1 point)\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", "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." ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "def plot_embeddings(M_reduced, word2ind, words):\n", " \"\"\" Plot in a scatterplot the embeddings of the words specified in the list \"words\".\n", " NOTE: do not plot all the words listed in M_reduced / word2ind.\n", " Include a label next to each point.\n", " \n", " Params:\n", " M_reduced (numpy matrix of shape (number of unique words in the corpus , 2)): matrix of 2-dimensioal word embeddings\n", " word2ind (dict): dictionary that maps word to indices for matrix M\n", " words (list of strings): words whose embeddings we want to visualize\n", " \"\"\"\n", "\n", " # ------------------\n", " # Write your implementation here.\n", " \n", " # Get only the rows corresponding the words we want to plot.\n", " word_idxs = [word2ind[word] for word in words]\n", " word_vectors = M_reduced[word_idxs]\n", " # Get 2D coordinates.\n", " x_coords = [vec[0] for vec in word_vectors]\n", " y_coords = [vec[1] for vec in word_vectors]\n", " # Plot the scatter points in 2D.\n", " for i, word in enumerate(words):\n", " x = x_coords[i]\n", " y = y_coords[i]\n", " plt.scatter(x, y, marker='x', color='red')\n", " plt.text(x, y, word, fontsize=9)\n", " plt.show()\n", "\n", " # ------------------" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n", "Outputted Plot:\n" ] }, { "data": { "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", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness.\n", "# The plot produced should look like the \"test solution plot\" depicted below. \n", "# ---------------------\n", "\n", "print (\"-\" * 80)\n", "print (\"Outputted Plot:\")\n", "\n", "M_reduced_plot_test = np.array([[1, 1], [-1, -1], [1, -1], [-1, 1], [0, 0]])\n", "word2ind_plot_test = {'test1': 0, 'test2': 1, 'test3': 2, 'test4': 3, 'test5': 4}\n", "words = ['test1', 'test2', 'test3', 'test4', 'test5']\n", "plot_embeddings(M_reduced_plot_test, word2ind_plot_test, words)\n", "\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Test Plot Solution**\n", "
\n", " \n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.5: Co-Occurrence Plot Analysis [written] (3 points)\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", "[Computation on Arrays: Broadcasting by Jake VanderPlas](https://jakevdp.github.io/PythonDataScienceHandbook/02.05-computation-on-arrays-broadcasting.html).\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." ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Running Truncated SVD over 8185 words...\n", "Done.\n" ] }, { "data": { "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", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# -----------------------------\n", "# Run This Cell to Produce Your Plot\n", "# ------------------------------\n", "reuters_corpus = read_corpus()\n", "M_co_occurrence, word2ind_co_occurrence = compute_co_occurrence_matrix(reuters_corpus)\n", "M_reduced_co_occurrence = reduce_to_k_dim(M_co_occurrence, k=2)\n", "\n", "# Rescale (normalize) the rows to make them each of unit-length\n", "M_lengths = np.linalg.norm(M_reduced_co_occurrence, axis=1)\n", "M_normalized = M_reduced_co_occurrence / M_lengths[:, np.newaxis] # broadcasting\n", "\n", "words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\n", "\n", "plot_embeddings(M_normalized, word2ind_co_occurrence, words)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- From the plot above, there's three clusters that we can observe:\n", " - petroleum, industry\n", " - energy, oil\n", " - ecuador, iraq, kuwait\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", "- \"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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Part 2: Prediction-Based Word Vectors (15 points)\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", "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." ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "def load_embedding_model():\n", " \"\"\" Load GloVe Vectors\n", " Return:\n", " wv_from_bin: All 400000 embeddings, each lengh 200\n", " \"\"\"\n", " import gensim.downloader as api\n", " wv_from_bin = api.load(\"glove-wiki-gigaword-200\")\n", " print(\"Loaded vocab size %i\" % len(wv_from_bin.vocab.keys()))\n", " return wv_from_bin" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loaded vocab size 400000\n" ] } ], "source": [ "# -----------------------------------\n", "# Run Cell to Load Word Vectors\n", "# Note: This will take a couple minutes\n", "# -----------------------------------\n", "wv_from_bin = load_embedding_model()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Note: If you are receiving a \"reset by peer\" error, rerun the cell to restart the download. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Reducing dimensionality of Word Embeddings\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", "Run the following cells to:\n", "\n", "1. Put 10000 Glove vectors into a matrix M\n", "2. Run `reduce_to_k_dim` (your Truncated SVD function) to reduce the vectors from 200-dimensional to 2-dimensional." ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "def get_matrix_of_vectors(wv_from_bin, required_words=['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']):\n", " \"\"\" Put the GloVe vectors into a matrix M.\n", " Param:\n", " wv_from_bin: KeyedVectors object; the 400000 GloVe vectors loaded from file\n", " Return:\n", " M: numpy matrix shape (num words, 200) containing the vectors\n", " word2ind: dictionary mapping each word to its row number in M\n", " \"\"\"\n", " import random\n", " words = list(wv_from_bin.vocab.keys())\n", " print(\"Shuffling words ...\")\n", " random.seed(224)\n", " random.shuffle(words)\n", " words = words[:10000]\n", " print(\"Putting %i words into word2ind and matrix M...\" % len(words))\n", " word2ind = {}\n", " M = []\n", " curInd = 0\n", " for w in words:\n", " try:\n", " M.append(wv_from_bin.word_vec(w))\n", " word2ind[w] = curInd\n", " curInd += 1\n", " except KeyError:\n", " continue\n", " for w in required_words:\n", " if w in words:\n", " continue\n", " try:\n", " M.append(wv_from_bin.word_vec(w))\n", " word2ind[w] = curInd\n", " curInd += 1\n", " except KeyError:\n", " continue\n", " M = np.stack(M)\n", " print(\"Done.\")\n", " return M, word2ind" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Shuffling words ...\n", "Putting 10000 words into word2ind and matrix M...\n", "Done.\n", "Running Truncated SVD over 10010 words...\n", "Done.\n" ] } ], "source": [ "# -----------------------------------------------------------------\n", "# Run Cell to Reduce 200-Dimensional Word Embeddings to k Dimensions\n", "# Note: This should be quick to run\n", "# -----------------------------------------------------------------\n", "M, word2ind = get_matrix_of_vectors(wv_from_bin)\n", "M_reduced = reduce_to_k_dim(M, k=2)\n", "\n", "# Rescale (normalize) the rows to make them each of unit-length\n", "M_lengths = np.linalg.norm(M_reduced, axis=1)\n", "M_reduced_normalized = M_reduced / M_lengths[:, np.newaxis] # broadcasting" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**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.**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.1: GloVe Plot Analysis [written] (3 points)\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", "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?" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "scrolled": true }, "outputs": [ { "data": { "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", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\n", "plot_embeddings(M_reduced_normalized, word2ind, words)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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", "- 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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Cosine Similarity\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", "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", "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", "$$s = \\frac{p \\cdot q}{||p|| ||q||}, \\textrm{ where } s \\in [-1, 1] $$ " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.2: Words with Multiple Meanings (1.5 points) [code + written] \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", "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", "**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)__." ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('weapons', 0.7115006446838379),\n", " ('hand', 0.5853789448738098),\n", " ('hands', 0.582863986492157),\n", " ('weapon', 0.5786144733428955),\n", " ('embargo', 0.5249772667884827),\n", " ('arm', 0.5146462917327881),\n", " ('weaponry', 0.513433039188385),\n", " ('nuclear', 0.5115358829498291),\n", " ('disarmament', 0.5083263516426086),\n", " ('iraq', 0.49865245819091797)]" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " wv_from_bin.most_similar(\"arms\")\n", " #wv_from_bin.most_similar(\"mouse\")\n", " #wv_from_bin.most_similar(\"mole\")\n", " #wv_from_bin.most_similar(\"tear\")\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.3: Synonyms & Antonyms (2 points) [code + written] \n", "\n", "When considering Cosine Similarity, it's often more convenient to think of Cosine Distance, which is simply 1 - Cosine Similarity.\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", "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", "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." ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Synonyms love, affection have cosine distance: 0.42052197456359863\n", "Antonyms love, hate have cosine distance: 0.49353712797164917\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " w1 = \"love\" # synonym 1\n", " w2 = \"affection\" # synonym 2\n", " w3 = \"hate\" # antonym\n", " w1_w2_dist = wv_from_bin.distance(w1, w2)\n", " w1_w3_dist = wv_from_bin.distance(w1, w3)\n", "\n", " print(\"Synonyms {}, {} have cosine distance: {}\".format(w1, w2, w1_w2_dist))\n", " print(\"Antonyms {}, {} have cosine distance: {}\".format(w1, w3, w1_w3_dist))\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.4: Analogies with Word Vectors [written] (1.5 points)\n", "Word vectors have been shown to *sometimes* exhibit the ability to solve analogies. \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", "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)." ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('queen', 0.6978679299354553),\n", " ('princess', 0.6081743836402893),\n", " ('monarch', 0.5889754891395569),\n", " ('throne', 0.5775110125541687),\n", " ('prince', 0.5750998258590698),\n", " ('elizabeth', 0.5463595986366272),\n", " ('daughter', 0.5399126410484314),\n", " ('kingdom', 0.5318052768707275),\n", " ('mother', 0.5168544054031372),\n", " ('crown', 0.5164472460746765)]\n" ] } ], "source": [ "# Run this cell to answer the analogy -- man : king :: woman : x\n", "pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'king'], negative=['man']))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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", "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?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "The expression in which we are maximizing cosine similarity with $x$ is:\n", "$$|k - m| \\approx |x - w|$$\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$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.5: Finding Analogies [code + written] (1.5 points)\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", "**Note**: You may have to try many analogies to find one that works!" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('actress', 0.8572621941566467),\n", " ('actresses', 0.6734701991081238),\n", " ('actors', 0.6297088861465454),\n", " ('starring', 0.6084522604942322),\n", " ('starred', 0.5989463925361633),\n", " ('screenwriter', 0.595988929271698),\n", " ('dancer', 0.5881683230400085),\n", " ('comedian', 0.5791141390800476),\n", " ('singer', 0.5661861300468445),\n", " ('married', 0.5574131011962891)]\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " pprint.pprint(wv_from_bin.most_similar(positive=['woman','actor'], negative=['man']))\n", " #pprint.pprint(wv_from_bin.most_similar(positive=['paris', 'italy'], negative=['rome']))\n", " \n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- Example 1:\n", " - man:actor :: woman:actress\n", "- Example 2:\n", " - rome:italy :: paris:france" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.6: Incorrect Analogy [code + written] (1.5 points)\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." ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('45,000-square', 0.4922032356262207),\n", " ('15,000-square', 0.4649604260921478),\n", " ('10,000-square', 0.45447564125061035),\n", " ('6,000-square', 0.44975778460502625),\n", " ('3,500-square', 0.4441334307193756),\n", " ('700-square', 0.44257500767707825),\n", " ('50,000-square', 0.4356396794319153),\n", " ('3,000-square', 0.43486514687538147),\n", " ('30,000-square', 0.4330596923828125),\n", " ('footed', 0.43236875534057617)]\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " pprint.pprint(wv_from_bin.most_similar(positive=[\"foot\", \"glove\"], negative=[\"hand\"]))\n", " #pprint.pprint(wv_from_bin.most_similar(positive=[\"england\", \"india\"], negative=[\"english\"]))\n", " #pprint.pprint(wv_from_bin.most_similar(positive=[\"america\", \"peacock\"], negative=[\"india\"]))\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- Example 1:\n", " - Actual: hand:glove :: foot:sock\n", " - Expected: hand:glove :: foot:sock\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", "- Example 2:\n", " - Actual: england:english :: india:pakistan\n", " - Expected: england:english :: india:hindi\n", "- Example 3:\n", " - Actual: india:peacock :: america:nbc\n", " - Expected: india:peacock :: america:eagle " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.7: Guided Analysis of Bias in Word Vectors [written] (1 point)\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", "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." ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('employee', 0.6375863552093506),\n", " ('workers', 0.6068919897079468),\n", " ('nurse', 0.5837946534156799),\n", " ('pregnant', 0.536388635635376),\n", " ('mother', 0.5321309566497803),\n", " ('employer', 0.5127025842666626),\n", " ('teacher', 0.5099576711654663),\n", " ('child', 0.5096741914749146),\n", " ('homemaker', 0.5019454956054688),\n", " ('nurses', 0.4970572292804718)]\n", "\n", "[('workers', 0.611325740814209),\n", " ('employee', 0.5983108282089233),\n", " ('working', 0.5615329146385193),\n", " ('laborer', 0.5442320108413696),\n", " ('unemployed', 0.5368516445159912),\n", " ('job', 0.5278826951980591),\n", " ('work', 0.5223962664604187),\n", " ('mechanic', 0.5088937282562256),\n", " ('worked', 0.5054520964622498),\n", " ('factory', 0.4940453767776489)]\n" ] } ], "source": [ "# Run this cell\n", "# Here `positive` indicates the list of words to be similar to and `negative` indicates the list of words to be\n", "# most dissimilar from.\n", "pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'worker'], negative=['man']))\n", "print()\n", "pprint.pprint(wv_from_bin.most_similar(positive=['man', 'worker'], negative=['woman']))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "There seems to be some bias in the vectors generated around occupations with respect to gender.\n", "\n", "- Nurse, teacher, homemaker are among the top 10 terms most similar to \"woman\" and \"worker\" but most disimilar to \"man\".\n", "- Laborer, mechanic and factory are examples of terms most similar to \"man\" and \"worker\" but most disimilar to \"woman\".\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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.8: Independent Analysis of Bias in Word Vectors [code + written] (1 point)\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." ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('professions', 0.5957457423210144),\n", " ('practitioner', 0.49884119629859924),\n", " ('teaching', 0.48292142152786255),\n", " ('nursing', 0.4821180999279022),\n", " ('vocation', 0.4788965880870819),\n", " ('teacher', 0.47160348296165466),\n", " ('practicing', 0.4693780839443207),\n", " ('educator', 0.46524325013160706),\n", " ('physicians', 0.4628995358943939),\n", " ('professionals', 0.4601393938064575)]\n", "\n", "[('reputation', 0.5250176191329956),\n", " ('professions', 0.5178037881851196),\n", " ('skill', 0.49046963453292847),\n", " ('skills', 0.49005505442619324),\n", " ('ethic', 0.4897659420967102),\n", " ('business', 0.4875851273536682),\n", " ('respected', 0.4859202802181244),\n", " ('practice', 0.4821045994758606),\n", " ('regarded', 0.47785723209381104),\n", " ('life', 0.4760662317276001)]\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'profession'], negative=['man']))\n", " print()\n", " pprint.pprint(wv_from_bin.most_similar(positive=['man', 'profession'], negative=['woman']))\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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", "- 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\"." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.9: Thinking About Bias [written] (2 points)\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?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- \"Your model is only as good as the data it is trained on\" a.k.a. \"garbage in/garbage out\". \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", "- 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", "- 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", "- 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)." ] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "cs224n", "language": "python", "name": "cs224n" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: a1/Gensim word vector visualization.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Gensim word vector visualization of various word vectors" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "\n", "# Get the interactive Tools for Matplotlib\n", "%matplotlib notebook\n", "import matplotlib.pyplot as plt\n", "plt.style.use('ggplot')\n", "\n", "from sklearn.decomposition import PCA\n", "\n", "from gensim.test.utils import datapath, get_tmpfile\n", "from gensim.models import KeyedVectors\n", "from gensim.scripts.glove2word2vec import glove2word2vec" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(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.)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "glove_file = datapath('/Users/manning/Corpora/GloVe/glove.6B.100d.txt')\n", "word2vec_glove_file = get_tmpfile(\"glove.6B.100d.word2vec.txt\")\n", "glove2word2vec(glove_file, word2vec_glove_file)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "model = KeyedVectors.load_word2vec_format(word2vec_glove_file)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "model.most_similar('obama')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "model.most_similar('banana')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "model.most_similar(negative='banana')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "result = model.most_similar(positive=['woman', 'king'], negative=['man'])\n", "print(\"{}: {:.4f}\".format(*result[0]))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def analogy(x1, x2, y1):\n", " result = model.most_similar(positive=[y1, x2], negative=[x1])\n", " return result[0][0]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "![Analogy](imgs/word2vec-king-queen-composition.png)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "analogy('japan', 'japanese', 'australia')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "analogy('australia', 'beer', 'france')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "analogy('obama', 'clinton', 'reagan')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "analogy('tall', 'tallest', 'long')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "analogy('good', 'fantastic', 'bad')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(model.doesnt_match(\"breakfast cereal dinner lunch\".split()))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def display_pca_scatterplot(model, words=None, sample=0):\n", " if words == None:\n", " if sample > 0:\n", " words = np.random.choice(list(model.vocab.keys()), sample)\n", " else:\n", " words = [ word for word in model.vocab ]\n", " \n", " word_vectors = np.array([model[w] for w in words])\n", "\n", " twodim = PCA().fit_transform(word_vectors)[:,:2]\n", " \n", " plt.figure(figsize=(6,6))\n", " plt.scatter(twodim[:,0], twodim[:,1], edgecolors='k', c='r')\n", " for word, (x,y) in zip(words, twodim):\n", " plt.text(x+0.05, y+0.05, word)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "display_pca_scatterplot(model, \n", " ['coffee', 'tea', 'beer', 'wine', 'brandy', 'rum', 'champagne', 'water',\n", " 'spaghetti', 'borscht', 'hamburger', 'pizza', 'falafel', 'sushi', 'meatballs',\n", " 'dog', 'horse', 'cat', 'monkey', 'parrot', 'koala', 'lizard',\n", " 'frog', 'toad', 'monkey', 'ape', 'kangaroo', 'wombat', 'wolf',\n", " 'france', 'germany', 'hungary', 'luxembourg', 'australia', 'fiji', 'china',\n", " 'homework', 'assignment', 'problem', 'exam', 'test', 'class',\n", " 'school', 'college', 'university', 'institute'])" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "display_pca_scatterplot(model, sample=300)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.1" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: a1/README.txt ================================================ Welcome to CS224N! We'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. After you have installed conda, close any open terminals you might have. Then open a new terminal and run the following command: # 1. Create an environment with dependencies specified in env.yml: conda env create -f env.yml # 2. Activate the new environment: conda activate cs224n # 3. Inside the new environment, instatll IPython kernel so we can use this environment in jupyter notebook: python -m ipykernel install --user --name cs224n # 4. Homework 1 (only) is a Jupyter Notebook. With the above done you should be able to get underway by typing: jupyter notebook exploring_word_vectors.ipynb # 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. # To deactivate an active environment, use conda deactivate ================================================ FILE: a1/env.yml ================================================ name: cs224n channels: - defaults - anaconda dependencies: - jupyter - matplotlib - numpy - python=3.7 - ipykernel - scikit-learn - nltk - gensim ================================================ FILE: a1/exploring_word_vectors.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# CS224N Assignment 1: Exploring Word Vectors (25 Points)\n", "### Due 4:30pm, Tue Jan 19 \n", "\n", "Welcome to CS224N! \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", "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", "**Assignment Notes:** Please make sure to save the notebook as you go along. Submission Instructions are located at the bottom of the notebook." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# All Import Statements Defined Here\n", "# Note: Do not add to this list.\n", "# ----------------\n", "\n", "import sys\n", "assert sys.version_info[0]==3\n", "assert sys.version_info[1] >= 5\n", "\n", "from gensim.models import KeyedVectors\n", "from gensim.test.utils import datapath\n", "import pprint\n", "import matplotlib.pyplot as plt\n", "plt.rcParams['figure.figsize'] = [10, 5]\n", "import nltk\n", "nltk.download('reuters')\n", "from nltk.corpus import reuters\n", "import numpy as np\n", "import random\n", "import scipy as sp\n", "from sklearn.decomposition import TruncatedSVD\n", "from sklearn.decomposition import PCA\n", "\n", "START_TOKEN = ''\n", "END_TOKEN = ''\n", "\n", "np.random.seed(0)\n", "random.seed(0)\n", "# ----------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Word Vectors\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", "**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*\"." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Part 1: Count-Based Word Vectors (10 points)\n", "\n", "Most word vector models start from the following idea:\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", "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))." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Co-Occurrence\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", "**Example: Co-Occurrence with Fixed Window of n=1**:\n", "\n", "Document 1: \"all that glitters is not gold\"\n", "\n", "Document 2: \"all is well that ends well\"\n", "\n", "\n", "| * | `` | all | that | glitters | is | not | gold | well | ends | `` |\n", "|----------|-------|-----|------|----------|------|------|-------|------|------|-----|\n", "| `` | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |\n", "| all | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |\n", "| that | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |\n", "| glitters | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |\n", "| is | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 |\n", "| not | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |\n", "| gold | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 |\n", "| well | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 |\n", "| ends | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |\n", "| `` | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |\n", "\n", "**Note:** In NLP, we often add `` and `` tokens to represent the beginning and end of sentences, paragraphs or documents. In thise case we imagine `` and `` tokens encapsulating each document, e.g., \"`` All that glitters is not gold ``\", and include these tokens in our co-occurrence counts.\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", "![Picture of an SVD](./imgs/svd.png \"SVD\")\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", "**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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Plotting Co-Occurrence Word Embeddings\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 `` and `` tokens to each of the documents, and lowercases words. You do **not** have to perform any other kind of pre-processing." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def read_corpus(category=\"crude\"):\n", " \"\"\" Read files from the specified Reuter's category.\n", " Params:\n", " category (string): category name\n", " Return:\n", " list of lists, with words from each of the processed files\n", " \"\"\"\n", " files = reuters.fileids(category)\n", " return [[START_TOKEN] + [w.lower() for w in list(reuters.words(f))] + [END_TOKEN] for f in files]\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's have a look what these documents are like…." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "scrolled": false }, "outputs": [], "source": [ "reuters_corpus = read_corpus()\n", "pprint.pprint(reuters_corpus[:3], compact=True, width=100)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.1: Implement `distinct_words` [code] (2 points)\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", "Your returned `corpus_words` should be sorted. You can use python's `sorted` function for this.\n", "\n", "You may find it useful to use [Python sets](https://www.w3schools.com/python/python_sets.asp) to remove duplicate words." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def distinct_words(corpus):\n", " \"\"\" Determine a list of distinct words for the corpus.\n", " Params:\n", " corpus (list of list of strings): corpus of documents\n", " Return:\n", " corpus_words (list of strings): sorted list of distinct words across the corpus\n", " num_corpus_words (integer): number of distinct words across the corpus\n", " \"\"\"\n", " corpus_words = []\n", " num_corpus_words = -1\n", " \n", " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------\n", "\n", " return corpus_words, num_corpus_words" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this not an exhaustive check for correctness.\n", "# ---------------------\n", "\n", "# Define toy corpus\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", "test_corpus_words, num_corpus_words = distinct_words(test_corpus)\n", "\n", "# Correct answers\n", "ans_test_corpus_words = sorted([START_TOKEN, \"All\", \"ends\", \"that\", \"gold\", \"All's\", \"glitters\", \"isn't\", \"well\", END_TOKEN])\n", "ans_num_corpus_words = len(ans_test_corpus_words)\n", "\n", "# Test correct number of words\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", "# Test correct words\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", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.2: Implement `compute_co_occurrence_matrix` [code] (3 points)\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" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def compute_co_occurrence_matrix(corpus, window_size=4):\n", " \"\"\" Compute co-occurrence matrix for the given corpus and window_size (default of 4).\n", " \n", " Note: Each word in a document should be at the center of a window. Words near edges will have a smaller\n", " number of co-occurring words.\n", " \n", " For example, if we take the document \" All that glitters is not gold \" with window size of 4,\n", " \"All\" will co-occur with \"\", \"that\", \"glitters\", \"is\", and \"not\".\n", " \n", " Params:\n", " corpus (list of list of strings): corpus of documents\n", " window_size (int): size of context window\n", " Return:\n", " M (a symmetric numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): \n", " Co-occurence matrix of word counts. \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", " word2ind (dict): dictionary that maps word to index (i.e. row/column number) for matrix M.\n", " \"\"\"\n", " words, num_words = distinct_words(corpus)\n", " M = None\n", " word2ind = {}\n", " \n", " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------\n", "\n", " return M, word2ind" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness.\n", "# ---------------------\n", "\n", "# Define toy corpus and get student's co-occurrence matrix\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", "M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\n", "\n", "# Correct M and word2ind\n", "M_test_ans = np.array( \n", " [[0., 0., 0., 0., 0., 0., 1., 0., 0., 1.,],\n", " [0., 0., 1., 1., 0., 0., 0., 0., 0., 0.,],\n", " [0., 1., 0., 0., 0., 0., 0., 0., 1., 0.,],\n", " [0., 1., 0., 0., 0., 0., 0., 0., 0., 1.,],\n", " [0., 0., 0., 0., 0., 0., 0., 0., 1., 1.,],\n", " [0., 0., 0., 0., 0., 0., 0., 1., 1., 0.,],\n", " [1., 0., 0., 0., 0., 0., 0., 1., 0., 0.,],\n", " [0., 0., 0., 0., 0., 1., 1., 0., 0., 0.,],\n", " [0., 0., 1., 0., 1., 1., 0., 0., 0., 1.,],\n", " [1., 0., 0., 1., 1., 0., 0., 0., 1., 0.,]]\n", ")\n", "ans_test_corpus_words = sorted([START_TOKEN, \"All\", \"ends\", \"that\", \"gold\", \"All's\", \"glitters\", \"isn't\", \"well\", END_TOKEN])\n", "word2ind_ans = dict(zip(ans_test_corpus_words, range(len(ans_test_corpus_words))))\n", "\n", "# Test correct word2ind\n", "assert (word2ind_ans == word2ind_test), \"Your word2ind is incorrect:\\nCorrect: {}\\nYours: {}\".format(word2ind_ans, word2ind_test)\n", "\n", "# Test correct M shape\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", "# Test correct M values\n", "for w1 in word2ind_ans.keys():\n", " idx1 = word2ind_ans[w1]\n", " for w2 in word2ind_ans.keys():\n", " idx2 = word2ind_ans[w2]\n", " student = M_test[idx1, idx2]\n", " correct = M_test_ans[idx1, idx2]\n", " if student != correct:\n", " print(\"Correct M:\")\n", " print(M_test_ans)\n", " print(\"Your M: \")\n", " print(M_test)\n", " raise AssertionError(\"Incorrect count at index ({}, {})=({}, {}) in matrix M. Yours has {} but should have {}.\".format(idx1, idx2, w1, w2, student, correct))\n", "\n", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.3: Implement `reduce_to_k_dim` [code] (1 point)\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", "**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)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def reduce_to_k_dim(M, k=2):\n", " \"\"\" Reduce a co-occurence count matrix of dimensionality (num_corpus_words, num_corpus_words)\n", " to a matrix of dimensionality (num_corpus_words, k) using the following SVD function from Scikit-Learn:\n", " - http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html\n", " \n", " Params:\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", " k (int): embedding size of each word after dimension reduction\n", " Return:\n", " M_reduced (numpy matrix of shape (number of corpus words, k)): matrix of k-dimensioal word embeddings.\n", " In terms of the SVD from math class, this actually returns U * S\n", " \"\"\" \n", " n_iters = 10 # Use this parameter in your call to `TruncatedSVD`\n", " M_reduced = None\n", " print(\"Running Truncated SVD over %i words...\" % (M.shape[0]))\n", " \n", " # ------------------\n", " # Write your implementation here.\n", " \n", " \n", " # ------------------\n", "\n", " print(\"Done.\")\n", " return M_reduced" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness \n", "# In fact we only check that your M_reduced has the right dimensions.\n", "# ---------------------\n", "\n", "# Define toy corpus and run student code\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", "M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\n", "M_test_reduced = reduce_to_k_dim(M_test, k=2)\n", "\n", "# Test proper dimensions\n", "assert (M_test_reduced.shape[0] == 10), \"M_reduced has {} rows; should have {}\".format(M_test_reduced.shape[0], 10)\n", "assert (M_test_reduced.shape[1] == 2), \"M_reduced has {} columns; should have {}\".format(M_test_reduced.shape[1], 2)\n", "\n", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.4: Implement `plot_embeddings` [code] (1 point)\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", "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def plot_embeddings(M_reduced, word2ind, words):\n", " \"\"\" Plot in a scatterplot the embeddings of the words specified in the list \"words\".\n", " NOTE: do not plot all the words listed in M_reduced / word2ind.\n", " Include a label next to each point.\n", " \n", " Params:\n", " M_reduced (numpy matrix of shape (number of unique words in the corpus , 2)): matrix of 2-dimensioal word embeddings\n", " word2ind (dict): dictionary that maps word to indices for matrix M\n", " words (list of strings): words whose embeddings we want to visualize\n", " \"\"\"\n", "\n", " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness.\n", "# The plot produced should look like the \"test solution plot\" depicted below. \n", "# ---------------------\n", "\n", "print (\"-\" * 80)\n", "print (\"Outputted Plot:\")\n", "\n", "M_reduced_plot_test = np.array([[1, 1], [-1, -1], [1, -1], [-1, 1], [0, 0]])\n", "word2ind_plot_test = {'test1': 0, 'test2': 1, 'test3': 2, 'test4': 3, 'test5': 4}\n", "words = ['test1', 'test2', 'test3', 'test4', 'test5']\n", "plot_embeddings(M_reduced_plot_test, word2ind_plot_test, words)\n", "\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Test Plot Solution**\n", "
\n", " \n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.5: Co-Occurrence Plot Analysis [written] (3 points)\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", "[Computation on Arrays: Broadcasting by Jake VanderPlas](https://jakevdp.github.io/PythonDataScienceHandbook/02.05-computation-on-arrays-broadcasting.html).\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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# -----------------------------\n", "# Run This Cell to Produce Your Plot\n", "# ------------------------------\n", "reuters_corpus = read_corpus()\n", "M_co_occurrence, word2ind_co_occurrence = compute_co_occurrence_matrix(reuters_corpus)\n", "M_reduced_co_occurrence = reduce_to_k_dim(M_co_occurrence, k=2)\n", "\n", "# Rescale (normalize) the rows to make them each of unit-length\n", "M_lengths = np.linalg.norm(M_reduced_co_occurrence, axis=1)\n", "M_normalized = M_reduced_co_occurrence / M_lengths[:, np.newaxis] # broadcasting\n", "\n", "words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\n", "\n", "plot_embeddings(M_normalized, word2ind_co_occurrence, words)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Part 2: Prediction-Based Word Vectors (15 points)\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", "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def load_embedding_model():\n", " \"\"\" Load GloVe Vectors\n", " Return:\n", " wv_from_bin: All 400000 embeddings, each lengh 200\n", " \"\"\"\n", " import gensim.downloader as api\n", " wv_from_bin = api.load(\"glove-wiki-gigaword-200\")\n", " print(\"Loaded vocab size %i\" % len(wv_from_bin.vocab.keys()))\n", " return wv_from_bin" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# -----------------------------------\n", "# Run Cell to Load Word Vectors\n", "# Note: This will take a couple minutes\n", "# -----------------------------------\n", "wv_from_bin = load_embedding_model()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Note: If you are receiving a \"reset by peer\" error, rerun the cell to restart the download. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Reducing dimensionality of Word Embeddings\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", "Run the following cells to:\n", "\n", "1. Put 10000 Glove vectors into a matrix M\n", "2. Run `reduce_to_k_dim` (your Truncated SVD function) to reduce the vectors from 200-dimensional to 2-dimensional." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def get_matrix_of_vectors(wv_from_bin, required_words=['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']):\n", " \"\"\" Put the GloVe vectors into a matrix M.\n", " Param:\n", " wv_from_bin: KeyedVectors object; the 400000 GloVe vectors loaded from file\n", " Return:\n", " M: numpy matrix shape (num words, 200) containing the vectors\n", " word2ind: dictionary mapping each word to its row number in M\n", " \"\"\"\n", " import random\n", " words = list(wv_from_bin.vocab.keys())\n", " print(\"Shuffling words ...\")\n", " random.seed(224)\n", " random.shuffle(words)\n", " words = words[:10000]\n", " print(\"Putting %i words into word2ind and matrix M...\" % len(words))\n", " word2ind = {}\n", " M = []\n", " curInd = 0\n", " for w in words:\n", " try:\n", " M.append(wv_from_bin.word_vec(w))\n", " word2ind[w] = curInd\n", " curInd += 1\n", " except KeyError:\n", " continue\n", " for w in required_words:\n", " if w in words:\n", " continue\n", " try:\n", " M.append(wv_from_bin.word_vec(w))\n", " word2ind[w] = curInd\n", " curInd += 1\n", " except KeyError:\n", " continue\n", " M = np.stack(M)\n", " print(\"Done.\")\n", " return M, word2ind" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# -----------------------------------------------------------------\n", "# Run Cell to Reduce 200-Dimensional Word Embeddings to k Dimensions\n", "# Note: This should be quick to run\n", "# -----------------------------------------------------------------\n", "M, word2ind = get_matrix_of_vectors(wv_from_bin)\n", "M_reduced = reduce_to_k_dim(M, k=2)\n", "\n", "# Rescale (normalize) the rows to make them each of unit-length\n", "M_lengths = np.linalg.norm(M_reduced, axis=1)\n", "M_reduced_normalized = M_reduced / M_lengths[:, np.newaxis] # broadcasting" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**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.**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.1: GloVe Plot Analysis [written] (3 points)\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", "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?" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "scrolled": true }, "outputs": [], "source": [ "words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\n", "plot_embeddings(M_reduced_normalized, word2ind, words)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Cosine Similarity\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", "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", "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", "$$s = \\frac{p \\cdot q}{||p|| ||q||}, \\textrm{ where } s \\in [-1, 1] $$ " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.2: Words with Multiple Meanings (1.5 points) [code + written] \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", "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", "**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)__." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.3: Synonyms & Antonyms (2 points) [code + written] \n", "\n", "When considering Cosine Similarity, it's often more convenient to think of Cosine Distance, which is simply 1 - Cosine Similarity.\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", "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", "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.4: Analogies with Word Vectors [written] (1.5 points)\n", "Word vectors have been shown to *sometimes* exhibit the ability to solve analogies. \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", "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)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Run this cell to answer the analogy -- man : king :: woman : x\n", "pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'king'], negative=['man']))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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", "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?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.5: Finding Analogies [code + written] (1.5 points)\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", "**Note**: You may have to try many analogies to find one that works!" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.6: Incorrect Analogy [code + written] (1.5 points)\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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.7: Guided Analysis of Bias in Word Vectors [written] (1 point)\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", "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Run this cell\n", "# Here `positive` indicates the list of words to be similar to and `negative` indicates the list of words to be\n", "# most dissimilar from.\n", "pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'worker'], negative=['man']))\n", "print()\n", "pprint.pprint(wv_from_bin.most_similar(positive=['man', 'worker'], negative=['woman']))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.8: Independent Analysis of Bias in Word Vectors [code + written] (1 point)\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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.9: Thinking About Bias [written] (2 points)\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?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Submission Instructions\n", "\n", "1. Click the Save button at the top of the Jupyter Notebook.\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", "2. Select Cell -> Run All. This will run all the cells in order, and will take several minutes.\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. Make sure all your solutions especially the coding parts are displayed in the pdf, it's okay if the provided codes get cut off because lines are not wrapped in code cells).\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", "5. Submit your PDF on Gradescope." ] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.4" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: a1/exploring_word_vectors_solved.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# CS224N Assignment 1: Exploring Word Vectors (25 Points)\n", "### Due 4:30pm, Tue Jan 19 \n", "\n", "Welcome to CS224N! \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", "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", "**Assignment Notes:** Please make sure to save the notebook as you go along. Submission Instructions are located at the bottom of the notebook." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[nltk_data] Downloading package reuters to /Users/Aman/nltk_data...\n", "[nltk_data] Package reuters is already up-to-date!\n" ] } ], "source": [ "# All Import Statements Defined Here\n", "# Note: Do not add to this list.\n", "# ----------------\n", "\n", "import sys\n", "assert sys.version_info[0]==3\n", "assert sys.version_info[1] >= 5\n", "\n", "from gensim.models import KeyedVectors\n", "from gensim.test.utils import datapath\n", "import pprint\n", "import matplotlib.pyplot as plt\n", "plt.rcParams['figure.figsize'] = [10, 5]\n", "import nltk\n", "nltk.download('reuters')\n", "from nltk.corpus import reuters\n", "import numpy as np\n", "import random\n", "import scipy as sp\n", "from sklearn.decomposition import TruncatedSVD\n", "from sklearn.decomposition import PCA\n", "\n", "START_TOKEN = ''\n", "END_TOKEN = ''\n", "\n", "np.random.seed(0)\n", "random.seed(0)\n", "# ----------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Word Vectors\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", "**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*\"." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Part 1: Count-Based Word Vectors (10 points)\n", "\n", "Most word vector models start from the following idea:\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", "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))." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Co-Occurrence\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", "**Example: Co-Occurrence with Fixed Window of n=1**:\n", "\n", "Document 1: \"all that glitters is not gold\"\n", "\n", "Document 2: \"all is well that ends well\"\n", "\n", "\n", "| * | `` | all | that | glitters | is | not | gold | well | ends | `` |\n", "|----------|-------|-----|------|----------|------|------|-------|------|------|-----|\n", "| `` | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |\n", "| all | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |\n", "| that | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |\n", "| glitters | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |\n", "| is | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 |\n", "| not | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |\n", "| gold | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 |\n", "| well | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 |\n", "| ends | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |\n", "| `` | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |\n", "\n", "**Note:** In NLP, we often add `` and `` tokens to represent the beginning and end of sentences, paragraphs or documents. In thise case we imagine `` and `` tokens encapsulating each document, e.g., \"`` All that glitters is not gold ``\", and include these tokens in our co-occurrence counts.\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", "![Picture of an SVD](imgs/svd.png \"SVD\")\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", "**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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Plotting Co-Occurrence Word Embeddings\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 `` and `` tokens to each of the documents, and lowercases words. You do **not** have to perform any other kind of pre-processing." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def read_corpus(category=\"crude\"):\n", " \"\"\" Read files from the specified Reuter's category.\n", " Params:\n", " category (string): category name\n", " Return:\n", " list of lists, with words from each of the processed files\n", " \"\"\"\n", " files = reuters.fileids(category)\n", " return [[START_TOKEN] + [w.lower() for w in list(reuters.words(f))] + [END_TOKEN] for f in files]\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's have a look what these documents are like…." ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "scrolled": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[['', 'japan', 'to', 'revise', 'long', '-', 'term', 'energy', 'demand', 'downwards', 'the',\n", " 'ministry', 'of', 'international', 'trade', 'and', 'industry', '(', 'miti', ')', 'will', 'revise',\n", " 'its', 'long', '-', 'term', 'energy', 'supply', '/', 'demand', 'outlook', 'by', 'august', 'to',\n", " 'meet', 'a', 'forecast', 'downtrend', 'in', 'japanese', 'energy', 'demand', ',', 'ministry',\n", " 'officials', 'said', '.', 'miti', 'is', 'expected', 'to', 'lower', 'the', 'projection', 'for',\n", " 'primary', 'energy', 'supplies', 'in', 'the', 'year', '2000', 'to', '550', 'mln', 'kilolitres',\n", " '(', 'kl', ')', 'from', '600', 'mln', ',', 'they', 'said', '.', 'the', 'decision', 'follows',\n", " 'the', 'emergence', 'of', 'structural', 'changes', 'in', 'japanese', 'industry', 'following',\n", " 'the', 'rise', 'in', 'the', 'value', 'of', 'the', 'yen', 'and', 'a', 'decline', 'in', 'domestic',\n", " 'electric', 'power', 'demand', '.', 'miti', 'is', 'planning', 'to', 'work', 'out', 'a', 'revised',\n", " 'energy', 'supply', '/', 'demand', 'outlook', 'through', 'deliberations', 'of', 'committee',\n", " 'meetings', 'of', 'the', 'agency', 'of', 'natural', 'resources', 'and', 'energy', ',', 'the',\n", " 'officials', 'said', '.', 'they', 'said', 'miti', 'will', 'also', 'review', 'the', 'breakdown',\n", " 'of', 'energy', 'supply', 'sources', ',', 'including', 'oil', ',', 'nuclear', ',', 'coal', 'and',\n", " 'natural', 'gas', '.', 'nuclear', 'energy', 'provided', 'the', 'bulk', 'of', 'japan', \"'\", 's',\n", " 'electric', 'power', 'in', 'the', 'fiscal', 'year', 'ended', 'march', '31', ',', 'supplying',\n", " 'an', 'estimated', '27', 'pct', 'on', 'a', 'kilowatt', '/', 'hour', 'basis', ',', 'followed',\n", " 'by', 'oil', '(', '23', 'pct', ')', 'and', 'liquefied', 'natural', 'gas', '(', '21', 'pct', '),',\n", " 'they', 'noted', '.', ''],\n", " ['', 'energy', '/', 'u', '.', 's', '.', 'petrochemical', 'industry', 'cheap', 'oil',\n", " 'feedstocks', ',', 'the', 'weakened', 'u', '.', 's', '.', 'dollar', 'and', 'a', 'plant',\n", " 'utilization', 'rate', 'approaching', '90', 'pct', 'will', 'propel', 'the', 'streamlined', 'u',\n", " '.', 's', '.', 'petrochemical', 'industry', 'to', 'record', 'profits', 'this', 'year', ',',\n", " 'with', 'growth', 'expected', 'through', 'at', 'least', '1990', ',', 'major', 'company',\n", " 'executives', 'predicted', '.', 'this', 'bullish', 'outlook', 'for', 'chemical', 'manufacturing',\n", " 'and', 'an', 'industrywide', 'move', 'to', 'shed', 'unrelated', 'businesses', 'has', 'prompted',\n", " 'gaf', 'corp', '&', 'lt', ';', 'gaf', '>,', 'privately', '-', 'held', 'cain', 'chemical', 'inc',\n", " ',', 'and', 'other', 'firms', 'to', 'aggressively', 'seek', 'acquisitions', 'of', 'petrochemical',\n", " 'plants', '.', 'oil', 'companies', 'such', 'as', 'ashland', 'oil', 'inc', '&', 'lt', ';', 'ash',\n", " '>,', 'the', 'kentucky', '-', 'based', 'oil', 'refiner', 'and', 'marketer', ',', 'are', 'also',\n", " 'shopping', 'for', 'money', '-', 'making', 'petrochemical', 'businesses', 'to', 'buy', '.', '\"',\n", " 'i', 'see', 'us', 'poised', 'at', 'the', 'threshold', 'of', 'a', 'golden', 'period', ',\"', 'said',\n", " 'paul', 'oreffice', ',', 'chairman', 'of', 'giant', 'dow', 'chemical', 'co', '&', 'lt', ';',\n", " 'dow', '>,', 'adding', ',', '\"', 'there', \"'\", 's', 'no', 'major', 'plant', 'capacity', 'being',\n", " 'added', 'around', 'the', 'world', 'now', '.', 'the', 'whole', 'game', 'is', 'bringing', 'out',\n", " 'new', 'products', 'and', 'improving', 'the', 'old', 'ones', '.\"', 'analysts', 'say', 'the',\n", " 'chemical', 'industry', \"'\", 's', 'biggest', 'customers', ',', 'automobile', 'manufacturers',\n", " 'and', 'home', 'builders', 'that', 'use', 'a', 'lot', 'of', 'paints', 'and', 'plastics', ',',\n", " 'are', 'expected', 'to', 'buy', 'quantities', 'this', 'year', '.', 'u', '.', 's', '.',\n", " 'petrochemical', 'plants', 'are', 'currently', 'operating', 'at', 'about', '90', 'pct',\n", " 'capacity', ',', 'reflecting', 'tighter', 'supply', 'that', 'could', 'hike', 'product', 'prices',\n", " 'by', '30', 'to', '40', 'pct', 'this', 'year', ',', 'said', 'john', 'dosher', ',', 'managing',\n", " 'director', 'of', 'pace', 'consultants', 'inc', 'of', 'houston', '.', 'demand', 'for', 'some',\n", " 'products', 'such', 'as', 'styrene', 'could', 'push', 'profit', 'margins', 'up', 'by', 'as',\n", " 'much', 'as', '300', 'pct', ',', 'he', 'said', '.', 'oreffice', ',', 'speaking', 'at', 'a',\n", " 'meeting', 'of', 'chemical', 'engineers', 'in', 'houston', ',', 'said', 'dow', 'would', 'easily',\n", " 'top', 'the', '741', 'mln', 'dlrs', 'it', 'earned', 'last', 'year', 'and', 'predicted', 'it',\n", " 'would', 'have', 'the', 'best', 'year', 'in', 'its', 'history', '.', 'in', '1985', ',', 'when',\n", " 'oil', 'prices', 'were', 'still', 'above', '25', 'dlrs', 'a', 'barrel', 'and', 'chemical',\n", " 'exports', 'were', 'adversely', 'affected', 'by', 'the', 'strong', 'u', '.', 's', '.', 'dollar',\n", " ',', 'dow', 'had', 'profits', 'of', '58', 'mln', 'dlrs', '.', '\"', 'i', 'believe', 'the',\n", " 'entire', 'chemical', 'industry', 'is', 'headed', 'for', 'a', 'record', 'year', 'or', 'close',\n", " 'to', 'it', ',\"', 'oreffice', 'said', '.', 'gaf', 'chairman', 'samuel', 'heyman', 'estimated',\n", " 'that', 'the', 'u', '.', 's', '.', 'chemical', 'industry', 'would', 'report', 'a', '20', 'pct',\n", " 'gain', 'in', 'profits', 'during', '1987', '.', 'last', 'year', ',', 'the', 'domestic',\n", " 'industry', 'earned', 'a', 'total', 'of', '13', 'billion', 'dlrs', ',', 'a', '54', 'pct', 'leap',\n", " 'from', '1985', '.', 'the', 'turn', 'in', 'the', 'fortunes', 'of', 'the', 'once', '-', 'sickly',\n", " 'chemical', 'industry', 'has', 'been', 'brought', 'about', 'by', 'a', 'combination', 'of', 'luck',\n", " 'and', 'planning', ',', 'said', 'pace', \"'\", 's', 'john', 'dosher', '.', 'dosher', 'said', 'last',\n", " 'year', \"'\", 's', 'fall', 'in', 'oil', 'prices', 'made', 'feedstocks', 'dramatically', 'cheaper',\n", " 'and', 'at', 'the', 'same', 'time', 'the', 'american', 'dollar', 'was', 'weakening', 'against',\n", " 'foreign', 'currencies', '.', 'that', 'helped', 'boost', 'u', '.', 's', '.', 'chemical',\n", " 'exports', '.', 'also', 'helping', 'to', 'bring', 'supply', 'and', 'demand', 'into', 'balance',\n", " 'has', 'been', 'the', 'gradual', 'market', 'absorption', 'of', 'the', 'extra', 'chemical',\n", " 'manufacturing', 'capacity', 'created', 'by', 'middle', 'eastern', 'oil', 'producers', 'in',\n", " 'the', 'early', '1980s', '.', 'finally', ',', 'virtually', 'all', 'major', 'u', '.', 's', '.',\n", " 'chemical', 'manufacturers', 'have', 'embarked', 'on', 'an', 'extensive', 'corporate',\n", " 'restructuring', 'program', 'to', 'mothball', 'inefficient', 'plants', ',', 'trim', 'the',\n", " 'payroll', 'and', 'eliminate', 'unrelated', 'businesses', '.', 'the', 'restructuring', 'touched',\n", " 'off', 'a', 'flurry', 'of', 'friendly', 'and', 'hostile', 'takeover', 'attempts', '.', 'gaf', ',',\n", " 'which', 'made', 'an', 'unsuccessful', 'attempt', 'in', '1985', 'to', 'acquire', 'union',\n", " 'carbide', 'corp', '&', 'lt', ';', 'uk', '>,', 'recently', 'offered', 'three', 'billion', 'dlrs',\n", " 'for', 'borg', 'warner', 'corp', '&', 'lt', ';', 'bor', '>,', 'a', 'chicago', 'manufacturer',\n", " 'of', 'plastics', 'and', 'chemicals', '.', 'another', 'industry', 'powerhouse', ',', 'w', '.',\n", " 'r', '.', 'grace', '&', 'lt', ';', 'gra', '>', 'has', 'divested', 'its', 'retailing', ',',\n", " 'restaurant', 'and', 'fertilizer', 'businesses', 'to', 'raise', 'cash', 'for', 'chemical',\n", " 'acquisitions', '.', 'but', 'some', 'experts', 'worry', 'that', 'the', 'chemical', 'industry',\n", " 'may', 'be', 'headed', 'for', 'trouble', 'if', 'companies', 'continue', 'turning', 'their',\n", " 'back', 'on', 'the', 'manufacturing', 'of', 'staple', 'petrochemical', 'commodities', ',', 'such',\n", " 'as', 'ethylene', ',', 'in', 'favor', 'of', 'more', 'profitable', 'specialty', 'chemicals',\n", " 'that', 'are', 'custom', '-', 'designed', 'for', 'a', 'small', 'group', 'of', 'buyers', '.', '\"',\n", " 'companies', 'like', 'dupont', '&', 'lt', ';', 'dd', '>', 'and', 'monsanto', 'co', '&', 'lt', ';',\n", " 'mtc', '>', 'spent', 'the', 'past', 'two', 'or', 'three', 'years', 'trying', 'to', 'get', 'out',\n", " 'of', 'the', 'commodity', 'chemical', 'business', 'in', 'reaction', 'to', 'how', 'badly', 'the',\n", " 'market', 'had', 'deteriorated', ',\"', 'dosher', 'said', '.', '\"', 'but', 'i', 'think', 'they',\n", " 'will', 'eventually', 'kill', 'the', 'margins', 'on', 'the', 'profitable', 'chemicals', 'in',\n", " 'the', 'niche', 'market', '.\"', 'some', 'top', 'chemical', 'executives', 'share', 'the',\n", " 'concern', '.', '\"', 'the', 'challenge', 'for', 'our', 'industry', 'is', 'to', 'keep', 'from',\n", " 'getting', 'carried', 'away', 'and', 'repeating', 'past', 'mistakes', ',\"', 'gaf', \"'\", 's',\n", " 'heyman', 'cautioned', '.', '\"', 'the', 'shift', 'from', 'commodity', 'chemicals', 'may', 'be',\n", " 'ill', '-', 'advised', '.', 'specialty', 'businesses', 'do', 'not', 'stay', 'special', 'long',\n", " '.\"', 'houston', '-', 'based', 'cain', 'chemical', ',', 'created', 'this', 'month', 'by', 'the',\n", " 'sterling', 'investment', 'banking', 'group', ',', 'believes', 'it', 'can', 'generate', '700',\n", " 'mln', 'dlrs', 'in', 'annual', 'sales', 'by', 'bucking', 'the', 'industry', 'trend', '.',\n", " 'chairman', 'gordon', 'cain', ',', 'who', 'previously', 'led', 'a', 'leveraged', 'buyout', 'of',\n", " 'dupont', \"'\", 's', 'conoco', 'inc', \"'\", 's', 'chemical', 'business', ',', 'has', 'spent', '1',\n", " '.', '1', 'billion', 'dlrs', 'since', 'january', 'to', 'buy', 'seven', 'petrochemical', 'plants',\n", " 'along', 'the', 'texas', 'gulf', 'coast', '.', 'the', 'plants', 'produce', 'only', 'basic',\n", " 'commodity', 'petrochemicals', 'that', 'are', 'the', 'building', 'blocks', 'of', 'specialty',\n", " 'products', '.', '\"', 'this', 'kind', 'of', 'commodity', 'chemical', 'business', 'will', 'never',\n", " 'be', 'a', 'glamorous', ',', 'high', '-', 'margin', 'business', ',\"', 'cain', 'said', ',',\n", " 'adding', 'that', 'demand', 'is', 'expected', 'to', 'grow', 'by', 'about', 'three', 'pct',\n", " 'annually', '.', 'garo', 'armen', ',', 'an', 'analyst', 'with', 'dean', 'witter', 'reynolds', ',',\n", " 'said', 'chemical', 'makers', 'have', 'also', 'benefitted', 'by', 'increasing', 'demand', 'for',\n", " 'plastics', 'as', 'prices', 'become', 'more', 'competitive', 'with', 'aluminum', ',', 'wood',\n", " 'and', 'steel', 'products', '.', 'armen', 'estimated', 'the', 'upturn', 'in', 'the', 'chemical',\n", " 'business', 'could', 'last', 'as', 'long', 'as', 'four', 'or', 'five', 'years', ',', 'provided',\n", " 'the', 'u', '.', 's', '.', 'economy', 'continues', 'its', 'modest', 'rate', 'of', 'growth', '.',\n", " ''],\n", " ['', 'turkey', 'calls', 'for', 'dialogue', 'to', 'solve', 'dispute', 'turkey', 'said',\n", " 'today', 'its', 'disputes', 'with', 'greece', ',', 'including', 'rights', 'on', 'the',\n", " 'continental', 'shelf', 'in', 'the', 'aegean', 'sea', ',', 'should', 'be', 'solved', 'through',\n", " 'negotiations', '.', 'a', 'foreign', 'ministry', 'statement', 'said', 'the', 'latest', 'crisis',\n", " 'between', 'the', 'two', 'nato', 'members', 'stemmed', 'from', 'the', 'continental', 'shelf',\n", " 'dispute', 'and', 'an', 'agreement', 'on', 'this', 'issue', 'would', 'effect', 'the', 'security',\n", " ',', 'economy', 'and', 'other', 'rights', 'of', 'both', 'countries', '.', '\"', 'as', 'the',\n", " 'issue', 'is', 'basicly', 'political', ',', 'a', 'solution', 'can', 'only', 'be', 'found', 'by',\n", " 'bilateral', 'negotiations', ',\"', 'the', 'statement', 'said', '.', 'greece', 'has', 'repeatedly',\n", " 'said', 'the', 'issue', 'was', 'legal', 'and', 'could', 'be', 'solved', 'at', 'the',\n", " 'international', 'court', 'of', 'justice', '.', 'the', 'two', 'countries', 'approached', 'armed',\n", " 'confrontation', 'last', 'month', 'after', 'greece', 'announced', 'it', 'planned', 'oil',\n", " 'exploration', 'work', 'in', 'the', 'aegean', 'and', 'turkey', 'said', 'it', 'would', 'also',\n", " 'search', 'for', 'oil', '.', 'a', 'face', '-', 'off', 'was', 'averted', 'when', 'turkey',\n", " 'confined', 'its', 'research', 'to', 'territorrial', 'waters', '.', '\"', 'the', 'latest',\n", " 'crises', 'created', 'an', 'historic', 'opportunity', 'to', 'solve', 'the', 'disputes', 'between',\n", " 'the', 'two', 'countries', ',\"', 'the', 'foreign', 'ministry', 'statement', 'said', '.', 'turkey',\n", " \"'\", 's', 'ambassador', 'in', 'athens', ',', 'nazmi', 'akiman', ',', 'was', 'due', 'to', 'meet',\n", " 'prime', 'minister', 'andreas', 'papandreou', 'today', 'for', 'the', 'greek', 'reply', 'to', 'a',\n", " 'message', 'sent', 'last', 'week', 'by', 'turkish', 'prime', 'minister', 'turgut', 'ozal', '.',\n", " 'the', 'contents', 'of', 'the', 'message', 'were', 'not', 'disclosed', '.', '']]\n" ] } ], "source": [ "reuters_corpus = read_corpus()\n", "pprint.pprint(reuters_corpus[:3], compact=True, width=100)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.1: Implement `distinct_words` [code] (2 points)\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", "Your returned `corpus_words` should be sorted. You can use python's `sorted` function for this.\n", "\n", "You may find it useful to use [Python sets](https://www.w3schools.com/python/python_sets.asp) to remove duplicate words." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "def distinct_words(corpus):\n", " \"\"\" Determine a list of distinct words for the corpus.\n", " Params:\n", " corpus (list of list of strings): corpus of documents\n", " Return:\n", " corpus_words (list of strings): sorted list of distinct words across the corpus\n", " num_corpus_words (integer): number of distinct words across the corpus\n", " \"\"\"\n", " corpus_words = []\n", " num_corpus_words = -1\n", " \n", " # ------------------\n", " # Write your implementation here.\n", " corpus_words = {word for doc in corpus for word in doc}\n", " corpus_words = sorted(list(corpus_words))\n", " num_corpus_words = len(corpus_words)\n", " # ------------------\n", "\n", " return corpus_words, num_corpus_words" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n", "Passed All Tests!\n", "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this not an exhaustive check for correctness.\n", "# ---------------------\n", "\n", "# Define toy corpus\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", "test_corpus_words, num_corpus_words = distinct_words(test_corpus)\n", "\n", "# Correct answers\n", "ans_test_corpus_words = sorted([START_TOKEN, \"All\", \"ends\", \"that\", \"gold\", \"All's\", \"glitters\", \"isn't\", \"well\", END_TOKEN])\n", "ans_num_corpus_words = len(ans_test_corpus_words)\n", "\n", "# Test correct number of words\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", "# Test correct words\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", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.2: Implement `compute_co_occurrence_matrix` [code] (3 points)\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" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "def compute_co_occurrence_matrix(corpus, window_size=4):\n", " \"\"\" Compute co-occurrence matrix for the given corpus and window_size (default of 4).\n", " \n", " Note: Each word in a document should be at the center of a window. Words near edges will have a smaller\n", " number of co-occurring words.\n", " \n", " For example, if we take the document \" All that glitters is not gold \" with window size of 4,\n", " \"All\" will co-occur with \"\", \"that\", \"glitters\", \"is\", and \"not\".\n", " \n", " Params:\n", " corpus (list of list of strings): corpus of documents\n", " window_size (int): size of context window\n", " Return:\n", " M (a symmetric numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): \n", " Co-occurence matrix of word counts. \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", " word2ind (dict): dictionary that maps word to index (i.e. row/column number) for matrix M.\n", " \"\"\"\n", " words, num_words = distinct_words(corpus)\n", " M = None\n", " word2ind = {}\n", " \n", " # ------------------\n", " # Write your implementation here.\n", " \n", " # Build the word to index mapping.\n", " word2ind = {word: i for i, word in enumerate(words)}\n", " \n", " # Build the co-occurrence matrix.\n", " M = np.zeros((num_words, num_words))\n", " for body in corpus:\n", " for curr_idx, word in enumerate(body):\n", " for window_idx in range(-window_size, window_size + 1):\n", " neighbor_idx = curr_idx + window_idx\n", " if (neighbor_idx < 0) or (neighbor_idx >= len(body)) or (curr_idx == neighbor_idx):\n", " continue\n", " co_occur_word = body[neighbor_idx]\n", " (word_idx, co_occur_idx) = (word2ind[word], word2ind[co_occur_word])\n", " M[word_idx, co_occur_idx] += 1\n", "\n", " # ------------------\n", "\n", " return M, word2ind" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n", "Passed All Tests!\n", "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness.\n", "# ---------------------\n", "\n", "# Define toy corpus and get student's co-occurrence matrix\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", "M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\n", "\n", "# Correct M and word2ind\n", "M_test_ans = np.array( \n", " [[0., 0., 0., 0., 0., 0., 1., 0., 0., 1.,],\n", " [0., 0., 1., 1., 0., 0., 0., 0., 0., 0.,],\n", " [0., 1., 0., 0., 0., 0., 0., 0., 1., 0.,],\n", " [0., 1., 0., 0., 0., 0., 0., 0., 0., 1.,],\n", " [0., 0., 0., 0., 0., 0., 0., 0., 1., 1.,],\n", " [0., 0., 0., 0., 0., 0., 0., 1., 1., 0.,],\n", " [1., 0., 0., 0., 0., 0., 0., 1., 0., 0.,],\n", " [0., 0., 0., 0., 0., 1., 1., 0., 0., 0.,],\n", " [0., 0., 1., 0., 1., 1., 0., 0., 0., 1.,],\n", " [1., 0., 0., 1., 1., 0., 0., 0., 1., 0.,]]\n", ")\n", "ans_test_corpus_words = sorted([START_TOKEN, \"All\", \"ends\", \"that\", \"gold\", \"All's\", \"glitters\", \"isn't\", \"well\", END_TOKEN])\n", "word2ind_ans = dict(zip(ans_test_corpus_words, range(len(ans_test_corpus_words))))\n", "\n", "# Test correct word2ind\n", "assert (word2ind_ans == word2ind_test), \"Your word2ind is incorrect:\\nCorrect: {}\\nYours: {}\".format(word2ind_ans, word2ind_test)\n", "\n", "# Test correct M shape\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", "# Test correct M values\n", "for w1 in word2ind_ans.keys():\n", " idx1 = word2ind_ans[w1]\n", " for w2 in word2ind_ans.keys():\n", " idx2 = word2ind_ans[w2]\n", " student = M_test[idx1, idx2]\n", " correct = M_test_ans[idx1, idx2]\n", " if student != correct:\n", " print(\"Correct M:\")\n", " print(M_test_ans)\n", " print(\"Your M: \")\n", " print(M_test)\n", " raise AssertionError(\"Incorrect count at index ({}, {})=({}, {}) in matrix M. Yours has {} but should have {}.\".format(idx1, idx2, w1, w2, student, correct))\n", "\n", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.3: Implement `reduce_to_k_dim` [code] (1 point)\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", "**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)." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "def reduce_to_k_dim(M, k=2):\n", " \"\"\" Reduce a co-occurence count matrix of dimensionality (num_corpus_words, num_corpus_words)\n", " to a matrix of dimensionality (num_corpus_words, k) using the following SVD function from Scikit-Learn:\n", " - http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html\n", " \n", " Params:\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", " k (int): embedding size of each word after dimension reduction\n", " Return:\n", " M_reduced (numpy matrix of shape (number of corpus words, k)): matrix of k-dimensioal word embeddings.\n", " In terms of the SVD from math class, this actually returns U * S\n", " \"\"\" \n", " n_iters = 10 # Use this parameter in your call to `TruncatedSVD`\n", " M_reduced = None\n", " print(\"Running Truncated SVD over %i words...\" % (M.shape[0]))\n", " \n", " # ------------------\n", " # Write your implementation here.\n", "\n", " svd = TruncatedSVD(n_components = k, n_iter = n_iters)\n", " M_reduced = svd.fit_transform(M) \n", " # or (instead of the above line)...\n", " # svd.fit(M)\n", " # M_reduced = svd.transform(M)\n", " \n", " # ------------------\n", "\n", " print(\"Done.\")\n", " return M_reduced" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Running Truncated SVD over 10 words...\n", "Done.\n", "--------------------------------------------------------------------------------\n", "Passed All Tests!\n", "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness \n", "# In fact we only check that your M_reduced has the right dimensions.\n", "# ---------------------\n", "\n", "# Define toy corpus and run student code\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", "M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\n", "M_test_reduced = reduce_to_k_dim(M_test, k=2)\n", "\n", "# Test proper dimensions\n", "assert (M_test_reduced.shape[0] == 10), \"M_reduced has {} rows; should have {}\".format(M_test_reduced.shape[0], 10)\n", "assert (M_test_reduced.shape[1] == 2), \"M_reduced has {} columns; should have {}\".format(M_test_reduced.shape[1], 2)\n", "\n", "# Print Success\n", "print (\"-\" * 80)\n", "print(\"Passed All Tests!\")\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.4: Implement `plot_embeddings` [code] (1 point)\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", "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." ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "def plot_embeddings(M_reduced, word2ind, words):\n", " \"\"\" Plot in a scatterplot the embeddings of the words specified in the list \"words\".\n", " NOTE: do not plot all the words listed in M_reduced / word2ind.\n", " Include a label next to each point.\n", " \n", " Params:\n", " M_reduced (numpy matrix of shape (number of unique words in the corpus , 2)): matrix of 2-dimensioal word embeddings\n", " word2ind (dict): dictionary that maps word to indices for matrix M\n", " words (list of strings): words whose embeddings we want to visualize\n", " \"\"\"\n", "\n", " # ------------------\n", " # Write your implementation here.\n", " \n", " # Get only the rows corresponding the words we want to plot.\n", " word_idxs = [word2ind[word] for word in words]\n", " word_vectors = M_reduced[word_idxs]\n", " # Get 2D coordinates.\n", " x_coords = [vec[0] for vec in word_vectors]\n", " y_coords = [vec[1] for vec in word_vectors]\n", " # Plot the scatter points in 2D.\n", " for i, word in enumerate(words):\n", " x = x_coords[i]\n", " y = y_coords[i]\n", " plt.scatter(x, y, marker='x', color='red')\n", " plt.text(x, y, word, fontsize=9)\n", " plt.show()\n", "\n", " # ------------------" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n", "Outputted Plot:\n" ] }, { "data": { "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", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------\n" ] } ], "source": [ "# ---------------------\n", "# Run this sanity check\n", "# Note that this is not an exhaustive check for correctness.\n", "# The plot produced should look like the \"test solution plot\" depicted below. \n", "# ---------------------\n", "\n", "print (\"-\" * 80)\n", "print (\"Outputted Plot:\")\n", "\n", "M_reduced_plot_test = np.array([[1, 1], [-1, -1], [1, -1], [-1, 1], [0, 0]])\n", "word2ind_plot_test = {'test1': 0, 'test2': 1, 'test3': 2, 'test4': 3, 'test5': 4}\n", "words = ['test1', 'test2', 'test3', 'test4', 'test5']\n", "plot_embeddings(M_reduced_plot_test, word2ind_plot_test, words)\n", "\n", "print (\"-\" * 80)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Test Plot Solution**\n", "
\n", " \n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1.5: Co-Occurrence Plot Analysis [written] (3 points)\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", "[Computation on Arrays: Broadcasting by Jake VanderPlas](https://jakevdp.github.io/PythonDataScienceHandbook/02.05-computation-on-arrays-broadcasting.html).\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." ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Running Truncated SVD over 8185 words...\n", "Done.\n" ] }, { "data": { "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", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# -----------------------------\n", "# Run This Cell to Produce Your Plot\n", "# ------------------------------\n", "reuters_corpus = read_corpus()\n", "M_co_occurrence, word2ind_co_occurrence = compute_co_occurrence_matrix(reuters_corpus)\n", "M_reduced_co_occurrence = reduce_to_k_dim(M_co_occurrence, k=2)\n", "\n", "# Rescale (normalize) the rows to make them each of unit-length\n", "M_lengths = np.linalg.norm(M_reduced_co_occurrence, axis=1)\n", "M_normalized = M_reduced_co_occurrence / M_lengths[:, np.newaxis] # broadcasting\n", "\n", "words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\n", "\n", "plot_embeddings(M_normalized, word2ind_co_occurrence, words)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- From the plot above, there's three clusters that we can observe:\n", " - petroleum, industry\n", " - energy, oil\n", " - ecuador, iraq, kuwait\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", "- \"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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Part 2: Prediction-Based Word Vectors (15 points)\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", "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." ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "def load_embedding_model():\n", " \"\"\" Load GloVe Vectors\n", " Return:\n", " wv_from_bin: All 400000 embeddings, each lengh 200\n", " \"\"\"\n", " import gensim.downloader as api\n", " wv_from_bin = api.load(\"glove-wiki-gigaword-200\")\n", " print(\"Loaded vocab size %i\" % len(wv_from_bin.key_to_index.keys()))\n", " return wv_from_bin" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loaded vocab size 400000\n" ] } ], "source": [ "# -----------------------------------\n", "# Run Cell to Load Word Vectors\n", "# Note: This will take a couple minutes\n", "# -----------------------------------\n", "wv_from_bin = load_embedding_model()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Note: If you are receiving a \"reset by peer\" error, rerun the cell to restart the download. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Reducing dimensionality of Word Embeddings\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", "Run the following cells to:\n", "\n", "1. Put 10000 Glove vectors into a matrix M\n", "2. Run `reduce_to_k_dim` (your Truncated SVD function) to reduce the vectors from 200-dimensional to 2-dimensional." ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "def get_matrix_of_vectors(wv_from_bin, required_words=['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']):\n", " \"\"\" Put the GloVe vectors into a matrix M.\n", " Param:\n", " wv_from_bin: KeyedVectors object; the 400000 GloVe vectors loaded from file\n", " Return:\n", " M: numpy matrix shape (num words, 200) containing the vectors\n", " word2ind: dictionary mapping each word to its row number in M\n", " \"\"\"\n", " import random\n", " words = list(wv_from_bin.key_to_index.keys())\n", " print(\"Shuffling words ...\")\n", " random.seed(224)\n", " random.shuffle(words)\n", " words = words[:10000]\n", " print(\"Putting %i words into word2ind and matrix M...\" % len(words))\n", " word2ind = {}\n", " M = []\n", " curInd = 0\n", " for w in words:\n", " try:\n", " M.append(wv_from_bin.word_vec(w))\n", " word2ind[w] = curInd\n", " curInd += 1\n", " except KeyError:\n", " continue\n", " for w in required_words:\n", " if w in words:\n", " continue\n", " try:\n", " M.append(wv_from_bin.word_vec(w))\n", " word2ind[w] = curInd\n", " curInd += 1\n", " except KeyError:\n", " continue\n", " M = np.stack(M)\n", " print(\"Done.\")\n", " return M, word2ind" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Shuffling words ...\n", "Putting 10000 words into word2ind and matrix M...\n", "Done.\n", "Running Truncated SVD over 10010 words...\n", "Done.\n" ] } ], "source": [ "# -----------------------------------------------------------------\n", "# Run Cell to Reduce 200-Dimensional Word Embeddings to k Dimensions\n", "# Note: This should be quick to run\n", "# -----------------------------------------------------------------\n", "M, word2ind = get_matrix_of_vectors(wv_from_bin)\n", "M_reduced = reduce_to_k_dim(M, k=2)\n", "\n", "# Rescale (normalize) the rows to make them each of unit-length\n", "M_lengths = np.linalg.norm(M_reduced, axis=1)\n", "M_reduced_normalized = M_reduced / M_lengths[:, np.newaxis] # broadcasting" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**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.**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.1: GloVe Plot Analysis [written] (3 points)\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", "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?" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "scrolled": true }, "outputs": [ { "data": { "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", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\n", "plot_embeddings(M_reduced_normalized, word2ind, words)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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", "- 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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Cosine Similarity\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", "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", "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", "$$s = \\frac{p \\cdot q}{||p|| ||q||}, \\textrm{ where } s \\in [-1, 1] $$ " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.2: Words with Multiple Meanings (1.5 points) [code + written] \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", "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", "**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)__." ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('weapons', 0.7115006446838379),\n", " ('hand', 0.5853789448738098),\n", " ('hands', 0.582863986492157),\n", " ('weapon', 0.5786144733428955),\n", " ('embargo', 0.5249772667884827),\n", " ('arm', 0.5146462917327881),\n", " ('weaponry', 0.513433039188385),\n", " ('nuclear', 0.5115358829498291),\n", " ('disarmament', 0.5083263516426086),\n", " ('iraq', 0.49865245819091797)]" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " wv_from_bin.most_similar(\"arms\")\n", " #wv_from_bin.most_similar(\"mouse\")\n", " #wv_from_bin.most_similar(\"mole\")\n", " #wv_from_bin.most_similar(\"tear\")\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.3: Synonyms & Antonyms (2 points) [code + written] \n", "\n", "When considering Cosine Similarity, it's often more convenient to think of Cosine Distance, which is simply 1 - Cosine Similarity.\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", "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", "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." ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Synonyms love, affection have cosine distance: 0.42052197456359863\n", "Antonyms love, hate have cosine distance: 0.49353712797164917\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " w1 = \"love\" # synonym 1\n", " w2 = \"affection\" # synonym 2\n", " w3 = \"hate\" # antonym\n", " w1_w2_dist = wv_from_bin.distance(w1, w2)\n", " w1_w3_dist = wv_from_bin.distance(w1, w3)\n", "\n", " print(\"Synonyms {}, {} have cosine distance: {}\".format(w1, w2, w1_w2_dist))\n", " print(\"Antonyms {}, {} have cosine distance: {}\".format(w1, w3, w1_w3_dist))\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.4: Analogies with Word Vectors [written] (1.5 points)\n", "Word vectors have been shown to *sometimes* exhibit the ability to solve analogies. \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", "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)." ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('queen', 0.6978679299354553),\n", " ('princess', 0.6081743836402893),\n", " ('monarch', 0.5889754891395569),\n", " ('throne', 0.5775110125541687),\n", " ('prince', 0.5750998258590698),\n", " ('elizabeth', 0.5463595986366272),\n", " ('daughter', 0.5399126410484314),\n", " ('kingdom', 0.5318052768707275),\n", " ('mother', 0.5168544054031372),\n", " ('crown', 0.5164472460746765)]\n" ] } ], "source": [ "# Run this cell to answer the analogy -- man : king :: woman : x\n", "pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'king'], negative=['man']))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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", "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?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "The expression in which we are maximizing cosine similarity with $x$ is:\n", "$$|k - m| \\approx |x - w|$$\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$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.5: Finding Analogies [code + written] (1.5 points)\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", "**Note**: You may have to try many analogies to find one that works!" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('actress', 0.8572621941566467),\n", " ('actresses', 0.6734701991081238),\n", " ('actors', 0.6297088861465454),\n", " ('starring', 0.6084522604942322),\n", " ('starred', 0.5989463925361633),\n", " ('screenwriter', 0.595988929271698),\n", " ('dancer', 0.5881683230400085),\n", " ('comedian', 0.5791141390800476),\n", " ('singer', 0.5661861300468445),\n", " ('married', 0.5574131011962891)]\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " pprint.pprint(wv_from_bin.most_similar(positive=['woman','actor'], negative=['man']))\n", " #pprint.pprint(wv_from_bin.most_similar(positive=['paris', 'italy'], negative=['rome']))\n", " \n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- Example 1:\n", " - man:actor :: woman:actress\n", "- Example 2:\n", " - rome:italy :: paris:france" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.6: Incorrect Analogy [code + written] (1.5 points)\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." ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('45,000-square', 0.4922032356262207),\n", " ('15,000-square', 0.4649604260921478),\n", " ('10,000-square', 0.45447564125061035),\n", " ('6,000-square', 0.44975778460502625),\n", " ('3,500-square', 0.4441334307193756),\n", " ('700-square', 0.44257500767707825),\n", " ('50,000-square', 0.4356396794319153),\n", " ('3,000-square', 0.43486514687538147),\n", " ('30,000-square', 0.4330596923828125),\n", " ('footed', 0.43236875534057617)]\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " pprint.pprint(wv_from_bin.most_similar(positive=[\"foot\", \"glove\"], negative=[\"hand\"]))\n", " #pprint.pprint(wv_from_bin.most_similar(positive=[\"england\", \"india\"], negative=[\"english\"]))\n", " #pprint.pprint(wv_from_bin.most_similar(positive=[\"america\", \"peacock\"], negative=[\"india\"]))\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- Example 1:\n", " - Actual: hand:glove :: foot:sock\n", " - Expected: hand:glove :: foot:sock\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", "- Example 2:\n", " - Actual: england:english :: india:pakistan\n", " - Expected: england:english :: india:hindi\n", "- Example 3:\n", " - Actual: india:peacock :: america:nbc\n", " - Expected: india:peacock :: america:eagle " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.7: Guided Analysis of Bias in Word Vectors [written] (1 point)\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", "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." ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('employee', 0.6375863552093506),\n", " ('workers', 0.6068919897079468),\n", " ('nurse', 0.5837946534156799),\n", " ('pregnant', 0.536388635635376),\n", " ('mother', 0.5321309566497803),\n", " ('employer', 0.5127025842666626),\n", " ('teacher', 0.5099576711654663),\n", " ('child', 0.5096741914749146),\n", " ('homemaker', 0.5019454956054688),\n", " ('nurses', 0.4970572292804718)]\n", "\n", "[('workers', 0.611325740814209),\n", " ('employee', 0.5983108282089233),\n", " ('working', 0.5615329146385193),\n", " ('laborer', 0.5442320108413696),\n", " ('unemployed', 0.5368516445159912),\n", " ('job', 0.5278826951980591),\n", " ('work', 0.5223962664604187),\n", " ('mechanic', 0.5088937282562256),\n", " ('worked', 0.5054520964622498),\n", " ('factory', 0.4940453767776489)]\n" ] } ], "source": [ "# Run this cell\n", "# Here `positive` indicates the list of words to be similar to and `negative` indicates the list of words to be\n", "# most dissimilar from.\n", "pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'worker'], negative=['man']))\n", "print()\n", "pprint.pprint(wv_from_bin.most_similar(positive=['man', 'worker'], negative=['woman']))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "There seems to be some bias in the vectors generated around occupations with respect to gender.\n", "\n", "- Nurse, teacher, homemaker are among the top 10 terms most similar to \"woman\" and \"worker\" but most disimilar to \"man\".\n", "- Laborer, mechanic and factory are examples of terms most similar to \"man\" and \"worker\" but most disimilar to \"woman\".\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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.8: Independent Analysis of Bias in Word Vectors [code + written] (1 point)\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." ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[('professions', 0.5957457423210144),\n", " ('practitioner', 0.49884119629859924),\n", " ('teaching', 0.48292142152786255),\n", " ('nursing', 0.4821180999279022),\n", " ('vocation', 0.4788965880870819),\n", " ('teacher', 0.47160348296165466),\n", " ('practicing', 0.4693780839443207),\n", " ('educator', 0.46524325013160706),\n", " ('physicians', 0.4628995358943939),\n", " ('professionals', 0.4601393938064575)]\n", "\n", "[('reputation', 0.5250176191329956),\n", " ('professions', 0.5178037881851196),\n", " ('skill', 0.49046963453292847),\n", " ('skills', 0.49005505442619324),\n", " ('ethic', 0.4897659420967102),\n", " ('business', 0.4875851273536682),\n", " ('respected', 0.4859202802181244),\n", " ('practice', 0.4821045994758606),\n", " ('regarded', 0.47785723209381104),\n", " ('life', 0.4760662317276001)]\n" ] } ], "source": [ " # ------------------\n", " # Write your implementation here.\n", "\n", " pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'profession'], negative=['man']))\n", " print()\n", " pprint.pprint(wv_from_bin.most_similar(positive=['man', 'profession'], negative=['woman']))\n", "\n", " # ------------------" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\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", "- 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", "- 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\"." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2.9: Thinking About Bias [written] (2 points)\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?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Write your answer here.\n", "\n", "- \"Your model is only as good as the data it is trained on\" a.k.a. \"garbage in/garbage out\". \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", "- 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", "- 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", "- 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)." ] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "cs224n", "language": "python", "name": "cs224n" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: a2/collect_submission.sh ================================================ rm -f assignment2.zip zip -r assignment2.zip *.py *.png saved_params_40000.npy ================================================ FILE: a2/env.yml ================================================ name: a2 channels: - defaults - anaconda dependencies: - jupyter - matplotlib - numpy - python=3.7 - scikit-learn ================================================ FILE: a2/get_datasets.sh ================================================ #!/bin/bash DATASETS_DIR="utils/datasets" mkdir -p $DATASETS_DIR cd $DATASETS_DIR # Get Stanford Sentiment Treebank if hash wget 2>/dev/null; then wget http://nlp.stanford.edu/~socherr/stanfordSentimentTreebank.zip else curl -L http://nlp.stanford.edu/~socherr/stanfordSentimentTreebank.zip -o stanfordSentimentTreebank.zip fi unzip stanfordSentimentTreebank.zip rm stanfordSentimentTreebank.zip ================================================ FILE: a2/run.py ================================================ #!/usr/bin/env python import random import numpy as np from utils.treebank import StanfordSentiment import matplotlib matplotlib.use('agg') import matplotlib.pyplot as plt import time from word2vec import * from sgd import * # Check Python Version import sys assert sys.version_info[0] == 3 assert sys.version_info[1] >= 5 # Reset the random seed to make sure that everyone gets the same results random.seed(314) dataset = StanfordSentiment() tokens = dataset.tokens() nWords = len(tokens) # We are going to train 10-dimensional vectors for this assignment dimVectors = 10 # Context size C = 5 # Reset the random seed to make sure that everyone gets the same results random.seed(31415) np.random.seed(9265) startTime=time.time() wordVectors = np.concatenate( ((np.random.rand(nWords, dimVectors) - 0.5) / dimVectors, np.zeros((nWords, dimVectors))), axis=0) wordVectors = sgd( lambda vec: word2vec_sgd_wrapper(skipgram, tokens, vec, dataset, C, negSamplingLossAndGradient), wordVectors, 0.3, 40000, None, True, PRINT_EVERY=10) # Note that normalization is not called here. This is not a bug, # normalizing during training loses the notion of length. print("sanity check: cost at convergence should be around or below 10") print("training took %d seconds" % (time.time() - startTime)) # concatenate the input and output word vectors wordVectors = np.concatenate( (wordVectors[:nWords,:], wordVectors[nWords:,:]), axis=0) visualizeWords = [ "great", "cool", "brilliant", "wonderful", "well", "amazing", "worth", "sweet", "enjoyable", "boring", "bad", "dumb", "annoying", "female", "male", "queen", "king", "man", "woman", "rain", "snow", "hail", "coffee", "tea"] visualizeIdx = [tokens[word] for word in visualizeWords] visualizeVecs = wordVectors[visualizeIdx, :] temp = (visualizeVecs - np.mean(visualizeVecs, axis=0)) covariance = 1.0 / len(visualizeIdx) * temp.T.dot(temp) U,S,V = np.linalg.svd(covariance) coord = temp.dot(U[:,0:2]) for i in range(len(visualizeWords)): plt.text(coord[i,0], coord[i,1], visualizeWords[i], bbox=dict(facecolor='green', alpha=0.1)) plt.xlim((np.min(coord[:,0]), np.max(coord[:,0]))) plt.ylim((np.min(coord[:,1]), np.max(coord[:,1]))) plt.savefig('word_vectors.png') ================================================ FILE: a2/sgd.py ================================================ #!/usr/bin/env python # Save parameters every a few SGD iterations as fail-safe SAVE_PARAMS_EVERY = 5000 import pickle import glob import random import numpy as np import os.path as op def load_saved_params(): """ A helper function that loads previously saved parameters and resets iteration start. """ st = 0 for f in glob.glob("saved_params_*.npy"): iter = int(op.splitext(op.basename(f))[0].split("_")[2]) if (iter > st): st = iter if st > 0: params_file = "saved_params_%d.npy" % st state_file = "saved_state_%d.pickle" % st params = np.load(params_file) with open(state_file, "rb") as f: state = pickle.load(f) return st, params, state else: return st, None, None def save_params(iter, params): params_file = "saved_params_%d.npy" % iter np.save(params_file, params) with open("saved_state_%d.pickle" % iter, "wb") as f: pickle.dump(random.getstate(), f) def sgd(f, x0, step, iterations, postprocessing=None, useSaved=False, PRINT_EVERY=10): """ Stochastic Gradient Descent Implement the stochastic gradient descent method in this function. Arguments: f -- the function to optimize, it should take a single argument and yield two outputs, a loss and the gradient with respect to the arguments x0 -- the initial point to start SGD from step -- the step size for SGD iterations -- total iterations to run SGD for postprocessing -- postprocessing function for the parameters if necessary. In the case of word2vec we will need to normalize the word vectors to have unit length. PRINT_EVERY -- specifies how many iterations to output loss Return: x -- the parameter value after SGD finishes """ # Anneal learning rate every several iterations ANNEAL_EVERY = 20000 if useSaved: start_iter, oldx, state = load_saved_params() if start_iter > 0: x0 = oldx step *= 0.5 ** (start_iter / ANNEAL_EVERY) if state: random.setstate(state) else: start_iter = 0 x = x0 if not postprocessing: postprocessing = lambda x: x exploss = None for iter in range(start_iter + 1, iterations + 1): # You might want to print the progress every few iterations. loss = None ### YOUR CODE HERE (~2 lines) # Calculate loss and gradients loss, grad = f(x) # Take step in direction of gradient. x -= step * grad ### END YOUR CODE x = postprocessing(x) if iter % PRINT_EVERY == 0: if not exploss: exploss = loss else: exploss = .95 * exploss + .05 * loss print("iter %d: %f" % (iter, exploss)) if iter % SAVE_PARAMS_EVERY == 0 and useSaved: save_params(iter, x) if iter % ANNEAL_EVERY == 0: step *= 0.5 return x def sanity_check(): quad = lambda x: (np.sum(x ** 2), x * 2) print("Running sanity checks...") t1 = sgd(quad, 0.5, 0.01, 1000, PRINT_EVERY=100) print("test 1 result:", t1) assert abs(t1) <= 1e-6 t2 = sgd(quad, 0.0, 0.01, 1000, PRINT_EVERY=100) print("test 2 result:", t2) assert abs(t2) <= 1e-6 t3 = sgd(quad, -1.5, 0.01, 1000, PRINT_EVERY=100) print("test 3 result:", t3) assert abs(t3) <= 1e-6 print("-" * 40) print("ALL TESTS PASSED") print("-" * 40) if __name__ == "__main__": sanity_check() ================================================ FILE: a2/utils/__init__.py ================================================ ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/README.txt ================================================ Stanford Sentiment Treebank V1.0 This is the dataset of the paper: Recursive Deep Models for Semantic Compositionality Over a Sentiment Treebank Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher Manning, Andrew Ng and Christopher Potts Conference on Empirical Methods in Natural Language Processing (EMNLP 2013) If you use this dataset in your research, please cite the above paper. @incollection{SocherEtAl2013:RNTN, title = {{Parsing With Compositional Vector Grammars}}, author = {Richard Socher and Alex Perelygin and Jean Wu and Jason Chuang and Christopher Manning and Andrew Ng and Christopher Potts}, booktitle = {{EMNLP}}, year = {2013} } This file includes: 1. 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. 2. dictionary.txt contains all phrases and their IDs, separated by a vertical line | 3. sentiment_labels.txt contains all phrase ids and the corresponding sentiment labels, separated by a vertical line. Note that you can recover the 5 classes by mapping the positivity probability using the following cut-offs: [0, 0.2], (0.2, 0.4], (0.4, 0.6], (0.6, 0.8], (0.8, 1.0] for very negative, negative, neutral, positive, very positive, respectively. Please note that phrase ids and sentence ids are not the same. 4. SOStr.txt and STree.txt encode the structure of the parse trees. STree 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. 5. 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. 6. datasetSplit.txt contains the sentence index (corresponding to the index in datasetSentences.txt file) followed by the set label separated by a comma: 1 = train 2 = test 3 = dev Please note that the datasetSentences.txt file has more sentences/lines than the original_rt_snippet.txt. Each row in the latter represents a snippet as shown on RT, whereas the former is each sub sentence as determined by the Stanford parser. For comparing research and training models, please use the provided train/dev/test splits. ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/SOStr.txt ================================================ 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|. The|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|. Effective|but|too-tepid|biopic If|you|sometimes|like|to|go|to|the|movies|to|have|fun|,|Wasabi|is|a|good|place|to|start|. Emerges|as|something|rare|,|an|issue|movie|that|'s|so|honest|and|keenly|observed|that|it|does|n't|feel|like|one|. The|film|provides|some|great|insight|into|the|neurotic|mindset|of|all|comics|--|even|those|who|have|reached|the|absolute|top|of|the|game|. Offers|that|rare|combination|of|entertainment|and|education|. Perhaps|no|picture|ever|made|has|more|literally|showed|that|the|road|to|hell|is|paved|with|good|intentions|. Steers|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|. Take|Care|of|My|Cat|offers|a|refreshingly|different|slice|of|Asian|cinema|. This|is|a|film|well|worth|seeing|,|talking|and|singing|heads|and|all|. What|really|surprises|about|Wisegirls|is|its|low-key|quality|and|genuine|tenderness|. (|Wendigo|is|)|why|we|go|to|the|cinema|:|to|be|fed|through|the|eye|,|the|heart|,|the|mind|. One|of|the|greatest|family-oriented|,|fantasy-adventure|movies|ever|. Ultimately|,|it|ponders|the|reasons|we|need|stories|so|much|. An|utterly|compelling|`|who|wrote|it|'|in|which|the|reputation|of|the|most|famous|author|who|ever|lived|comes|into|question|. Illuminating|if|overly|talky|documentary|. A|masterpiece|four|years|in|the|making|. The|movie|'s|ripe|,|enrapturing|beauty|will|tempt|those|willing|to|probe|its|inscrutable|mysteries|. Offers|a|breath|of|the|fresh|air|of|true|sophistication|. A|thoughtful|,|provocative|,|insistently|humanizing|film|. With|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|. A|disturbing|and|frighteningly|evocative|assembly|of|imagery|and|hypnotic|music|composed|by|Philip|Glass|. Not|for|everyone|,|but|for|those|with|whom|it|will|connect|,|it|'s|a|nice|departure|from|standard|moviegoing|fare|. Scores|a|few|points|for|doing|what|it|does|with|a|dedicated|and|good-hearted|professionalism|. Occasionally|melodramatic|,|it|'s|also|extremely|effective|. An|idealistic|love|story|that|brings|out|the|latent|15-year-old|romantic|in|everyone|. At|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|. It|helps|that|Lil|Bow|Wow|...|tones|down|his|pint-sized|gangsta|act|to|play|someone|who|resembles|a|real|kid|. Guaranteed|to|move|anyone|who|ever|shook|,|rattled|,|or|rolled|. A|masterful|film|from|a|master|filmmaker|,|unique|in|its|deceptive|grimness|,|compelling|in|its|fatalist|worldview|. Light|,|cute|and|forgettable|. If|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|. While|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|. Though|everything|might|be|literate|and|smart|,|it|never|took|off|and|always|seemed|static|. Cantet|perfectly|captures|the|hotel|lobbies|,|two-lane|highways|,|and|roadside|cafes|that|permeate|Vincent|'s|days Ms.|Fulford-Wierzbicki|is|almost|spooky|in|her|sulky|,|calculating|Lolita|turn|. Though|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|. Like|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|. Newton|draws|our|attention|like|a|magnet|,|and|acts|circles|around|her|better|known|co-star|,|Mark|Wahlberg|. The|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|. Fuller|would|surely|have|called|this|gutsy|and|at|times|exhilarating|movie|a|great|yarn|. The|film|makes|a|strong|case|for|the|importance|of|the|musicians|in|creating|the|Motown|sound|. Karmen|moves|like|rhythm|itself|,|her|lips|chanting|to|the|beat|,|her|long|,|braided|hair|doing|little|to|wipe|away|the|jeweled|beads|of|sweat|. Gosling|provides|an|amazing|performance|that|dwarfs|everything|else|in|the|film|. A|real|movie|,|about|real|people|,|that|gives|us|a|rare|glimpse|into|a|culture|most|of|us|do|n't|know|. Tender|yet|lacerating|and|darkly|funny|fable|. May|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|. An|engaging|overview|of|Johnson|'s|eccentric|career|. In|its|ragged|,|cheap|and|unassuming|way|,|the|movie|works|. Some|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|. Sandra|Nettelbeck|beautifully|orchestrates|the|transformation|of|the|chilly|,|neurotic|,|and|self-absorbed|Martha|as|her|heart|begins|to|open|. Behind|the|snow|games|and|lovable|Siberian|huskies|(|plus|one|sheep|dog|)|,|the|picture|hosts|a|parka-wrapped|dose|of|heart|. Everytime|you|think|Undercover|Brother|has|run|out|of|steam|,|it|finds|a|new|way|to|surprise|and|amuse|. Manages|to|be|original|,|even|though|it|rips|off|many|of|its|ideas|. Singer\/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|. You|'d|think|by|now|America|would|have|had|enough|of|plucky|British|eccentrics|with|hearts|of|gold|. Yet|the|act|is|still|charming|here|. Whether|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|. A|pleasant|enough|movie|,|held|together|by|skilled|ensemble|actors|. This|is|the|best|American|movie|about|troubled|teens|since|1998|'s|Whatever|. Disney|has|always|been|hit-or-miss|when|bringing|beloved|kids|'|books|to|the|screen|...|Tuck|Everlasting|is|a|little|of|both|. Just|the|labour|involved|in|creating|the|layered|richness|of|the|imagery|in|this|chiaroscuro|of|madness|and|light|is|astonishing|. The|animated|subplot|keenly|depicts|the|inner|struggles|of|our|adolescent|heroes|-|insecure|,|uncontrolled|,|and|intense|. The|invincible|Werner|Herzog|is|alive|and|well|and|living|in|LA Morton|is|a|great|actress|portraying|a|complex|character|,|but|Morvern|Callar|grows|less|compelling|the|farther|it|meanders|from|its|shocking|start|. Part|of|the|charm|of|Satin|Rouge|is|that|it|avoids|the|obvious|with|humour|and|lightness|. Son|of|the|Bride|may|be|a|good|half-hour|too|long|but|comes|replete|with|a|flattering|sense|of|mystery|and|quietness|. A|simmering|psychological|drama|in|which|the|bursts|of|sudden|violence|are|all|the|more|startling|for|the|slow|buildup|that|has|preceded|them|. A|taut|,|intelligent|psychological|drama|. A|truly|moving|experience|,|and|a|perfect|example|of|how|art|--|when|done|right|--|can|help|heal|,|clarify|,|and|comfort|. This|delicately|observed|story|,|deeply|felt|and|masterfully|stylized|,|is|a|triumph|for|its|maverick|director|. At|heart|the|movie|is|a|deftly|wrought|suspense|yarn|whose|richer|shadings|work|as|coloring|rather|than|substance|. The|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|! a|screenplay|more|ingeniously|constructed|than|``|Memento|'' If|this|movie|were|a|book|,|it|would|be|a|page-turner|,|you|ca|n't|wait|to|see|what|happens|next|. Haneke|challenges|us|to|confront|the|reality|of|sexual|aberration|. Absorbing|and|disturbing|--|perhaps|more|disturbing|than|originally|intended|--|but|a|little|clarity|would|have|gone|a|long|way|. It|'s|the|best|film|of|the|year|so|far|,|the|benchmark|against|which|all|other|Best|Picture|contenders|should|be|measured|. Painful|to|watch|,|but|viewers|willing|to|take|a|chance|will|be|rewarded|with|two|of|the|year|'s|most|accomplished|and|riveting|film|performances|. This|is|a|startling|film|that|gives|you|a|fascinating|,|albeit|depressing|view|of|Iranian|rural|life|close|to|the|Iraqi|border|. A|few|artsy|flourishes|aside|,|Narc|is|as|gritty|as|a|movie|gets|these|days|. While|The|Isle|is|both|preposterous|and|thoroughly|misogynistic|,|its|vistas|are|incredibly|beautiful|to|look|at|. Together|,|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|. Director|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|. The|movie|is|a|blast|of|educational|energy|,|as|bouncy|animation|and|catchy|songs|escort|you|through|the|entire|85|minutes|. A|sports|movie|with|action|that|'s|exciting|on|the|field|and|a|story|you|care|about|off|it|. Doug|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|. The|tenderness|of|the|piece|is|still|intact|. Katz|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 Like|the|film|'s|almost|anthropologically|detailed|realization|of|early|-|'80s|suburbia|,|it|'s|significant|without|being|overstated|. While|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|. If|nothing|else|,|this|movie|introduces|a|promising|,|unusual|kind|of|psychological|horror|. In|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|. Writer-director|Burger|imaginatively|fans|the|embers|of|a|dormant|national|grief|and|curiosity|that|has|calcified|into|chronic|cynicism|and|fear|. ...|a|roller-coaster|ride|of|a|movie I|enjoyed|Time|of|Favor|while|I|was|watching|it|,|but|I|was|surprised|at|how|quickly|it|faded|from|my|memory|. Chicago|is|sophisticated|,|brash|,|sardonic|,|completely|joyful|in|its|execution|. Steve|Irwin|'s|method|is|Ernest|Hemmingway|at|accelerated|speed|and|volume|. A|refreshing|Korean|film|about|five|female|high|school|friends|who|face|an|uphill|battle|when|they|try|to|take|their|relationships|into|deeper|waters|. On|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|. The|values|that|have|held|the|Enterprise|crew|together|through|previous|adventures|and|perils|do|so|again-courage|,|self-sacrifice|and|patience|under|pressure|. If|it|'s|possible|for|a|sequel|to|outshine|the|original|,|then|SL2|does|just|that|. A|romantic|comedy|that|operates|by|the|rules|of|its|own|self-contained|universe|. 4|friends|,|2|couples|,|2000|miles|,|and|all|the|Pabst|Blue|Ribbon|beer|they|can|drink|-|it|'s|the|ultimate|redneck|road-trip|. The|film|is|often|filled|with|a|sense|of|pure|wonderment|and|excitement|not|often|seen|in|today|'s|cinema|du|sarcasm It|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|. A|feel-good|picture|in|the|best|sense|of|the|term|. Edited|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|. A|mostly|intelligent|,|engrossing|and|psychologically|resonant|suspenser|. It|'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|. Hip-hop|has|a|history|,|and|it|'s|a|metaphor|for|this|love|story|. In|scope|,|ambition|and|accomplishment|,|Children|of|the|Century|...|takes|Kurys|'|career|to|a|whole|new|level|. This|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|. Between|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|. A|gentle|,|compassionate|drama|about|grief|and|healing|. Somewhere|short|of|Tremors|on|the|modern|B-scene|:|neither|as|funny|nor|as|clever|,|though|an|agreeably|unpretentious|way|to|spend|ninety|minutes|. Digital-video|documentary|about|stand-up|comedians|is|a|great|glimpse|into|a|very|different|world|. Unlike|most|teen|flicks|,|Swimming|takes|its|time|to|tell|its|story|,|casts|mostly|little-known|performers|in|key|roles|,|and|introduces|some|intriguing|ambiguity|. An|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|. ``|Extreme|Ops|''|exceeds|expectations|. Good|fun|,|good|action|,|good|acting|,|good|dialogue|,|good|pace|,|good|cinematography|. You|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|. A|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|. It|'s|obviously|struck|a|responsive|chord|with|many|South|Koreans|,|and|should|work|its|magic|in|other|parts|of|the|world|. Run|,|do|n't|walk|,|to|see|this|barbed|and|bracing|comedy|on|the|big|screen|. A|classy|item|by|a|legend|who|may|have|nothing|left|to|prove|but|still|has|the|chops|and|drive|to|show|how|its|done|. It|is|nature|against|progress|. In|Fessenden|'s|horror|trilogy|,|this|theme|has|proved|important|to|him|and|is|especially|so|in|the|finale|. It|'s|not|exactly|a|gourmet|meal|but|the|fare|is|fair|,|even|coming|from|the|drive-thru|. This|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|. Merely|as|a|technical|,|logistical|feat|,|Russian|Ark|marks|a|cinematic|milestone|. (|Schweiger|is|)|talented|and|terribly|charismatic|,|qualities|essential|to|both|movie|stars|and|social|anarchists|. It|'s|a|great|deal|of|sizzle|and|very|little|steak|. But|what|spectacular|sizzle|it|is|! ...|In|this|incarnation|its|fizz|is|infectious|. An|original|gem|about|an|obsession|with|time|. It|will|delight|newcomers|to|the|story|and|those|who|know|it|from|bygone|days|. Gloriously|goofy|(|and|gory|)|midnight|movie|stuff|. The|film|overcomes|the|regular|minefield|of|coming-of-age|cliches|with|potent|doses|of|honesty|and|sensitivity|. If|your|senses|have|n't|been|dulled|by|slasher|films|and|gorefests|,|if|you|'re|a|connoisseur|of|psychological|horror|,|this|is|your|ticket|. It|'s|a|minor|comedy|that|tries|to|balance|sweetness|with|coarseness|,|while|it|paints|a|sad|picture|of|the|singles|scene|. It|is|intensely|personal|and|yet|--|unlike|Quills|--|deftly|shows|us|the|temper|of|the|times|. As|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|. Like|Mike|does|n'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|. It|'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|. Far|from|perfect|,|but|its|heart|is|in|the|right|place|...|innocent|and|well-meaning|. A|sad|,|superior|human|comedy|played|out|on|the|back|roads|of|life|. Waydowntown|is|by|no|means|a|perfect|film|,|but|its|boasts|a|huge|charm|factor|and|smacks|of|originality|. Tim|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|. More|a|load|of|enjoyable|,|Conan-esque|claptrap|than|the|punishing|,|special-effects|soul|assaults|the|Mummy|pictures|represent|. Enormously|likable|,|partly|because|it|is|aware|of|its|own|grasp|of|the|absurd|. Here|'s|a|British|flick|gleefully|unconcerned|with|plausibility|,|yet|just|as|determined|to|entertain|you|. It|'s|an|old|story|,|but|a|lively|script|,|sharp|acting|and|partially|animated|interludes|make|Just|a|Kiss|seem|minty|fresh|. Must|be|seen|to|be|believed|. Ray|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|. Everything|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|. The|year|'s|happiest|surprise|,|a|movie|that|deals|with|a|real|subject|in|an|always|surprising|way|. Fans|of|Behan|'s|work|and|of|Irish|movies|in|general|will|be|rewarded|by|Borstal|Boy|. Its|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|. The|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|. Stephen|Earnhart|'s|homespun|documentary|Mule|Skinner|Blues|has|nothing|but|love|for|its|posse|of|trailer|park|denizens|. A|solidly|seaworthy|chiller|. If|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|. There|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|. A|well-made|thriller|with|a|certain|level|of|intelligence|and|non-reactionary|morality|. There|'s|enough|science|to|make|it|count|as|educational|,|and|enough|beauty|to|make|it|unforgettable|. Remains|a|solid|,|if|somewhat|heavy-handed|,|account|of|the|near-disaster|...|done|up|by|Howard|with|a|steady|,|if|not|very|imaginative|,|hand|. Makmalbaf|follows|a|resolutely|realistic|path|in|this|uncompromising|insight|into|the|harsh|existence|of|the|Kurdish|refugees|of|Iran|'s|borderlands|. For|a|good|chunk|of|its|running|time|,|Trapped|is|an|effective|and|claustrophobic|thriller|. Most|of|Crush|is|a|clever|and|captivating|romantic|comedy|with|a|welcome|pinch|of|tartness|. Nair|does|capture|the|complexity|of|a|big|family|and|its|trials|and|tribulations|... The|seaside|splendor|and|shallow|,|beautiful|people|are|nice|to|look|at|while|you|wait|for|the|story|to|get|going|. Rare|is|the|`|urban|comedy|'|that|even|attempts|the|insight|and|honesty|of|this|disarming|indie|. Ranks|among|Willams|'|best|screen|work|. Engagingly|captures|the|maddening|and|magnetic|ebb|and|flow|of|friendship|. An|experience|so|engrossing|it|is|like|being|buried|in|a|new|environment|. It|'s|traditional|moviemaking|all|the|way|,|but|it|'s|done|with|a|lot|of|careful|period|attention|as|well|as|some|very|welcome|wit|. Maybe|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|. A|droll|,|well-acted|,|character-driven|comedy|with|unexpected|deposits|of|feeling|. This|is|simply|the|most|fun|you|'ll|ever|have|with|a|documentary|! A|very|funny|movie|. Watching|Haneke|'s|film|is|,|aptly|enough|,|a|challenge|and|a|punishment|. But|watching|Huppert|,|a|great|actress|tearing|into|a|landmark|role|,|is|riveting|. A|cop|story|that|understands|the|medium|amazingly|well|. Britney|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|. Those|outside|show|business|will|enjoy|a|close|look|at|people|they|do|n't|really|want|to|know|. The|kind|of|nervous|film|that|will|either|give|you|a|mild|headache|or|exhilarate|you|. Watching|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|. Children|may|not|understand|everything|that|happens|--|I|'m|not|sure|even|Miyazaki|himself|does|--|but|they|will|almost|certainly|be|fascinated|,|and|undoubtedly|delighted|. A|fascinating|and|fun|film|. Tadpole|is|a|sophisticated|,|funny|and|good-natured|treat|,|slight|but|a|pleasure|. This|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|. I|admired|this|work|a|lot|. Whether|you|'re|moved|and|love|it|,|or|bored|or|frustrated|by|the|film|,|you|'ll|still|feel|something|. ...|there|are|enough|moments|of|heartbreaking|honesty|to|keep|one|glued|to|the|screen|. My|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|. A|smart|,|sweet|and|playful|romantic|comedy|. Australian|actor\/director|John|Polson|and|award-winning|English|cinematographer|Giles|Nuttgens|make|a|terrific|effort|at|disguising|the|obvious|with|energy|and|innovation|. Without|heavy-handedness|,|Dong|provides|perspective|with|his|intelligent|grasp|of|human|foibles|and|contradictions|. Solid|,|lump-in-the-throat|family|entertainment|that|derives|its|power|by|sticking|to|the|facts|. As|an|entertainment|,|the|movie|keeps|you|diverted|and|best|of|all|,|it|lightens|your|wallet|without|leaving|a|sting|. It|is|interesting|and|fun|to|see|Goodall|and|her|chimpanzees|on|the|bigger-than-life|screen|. It|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|. A|somewhat|crudely|constructed|but|gripping|,|questing|look|at|a|person|so|racked|with|self-loathing|,|he|becomes|an|enemy|to|his|own|race|. It|extends|the|writings|of|Jean|Genet|and|John|Rechy|,|the|films|of|Fassbinder|,|perhaps|even|the|nocturnal|works|of|Goya|. Narc|may|not|get|an|`|A|'|for|originality|,|but|it|wears|its|B-movie|heritage|like|a|badge|of|honor|. With|the|film|'s|striking|ending|,|one|realizes|that|we|have|a|long|way|to|go|before|we|fully|understand|all|the|sexual|permutations|involved|. (|Drumline|)|is|entertaining|for|what|it|does|,|and|admirable|for|what|it|does|n't|do|. At|its|best|early|on|as|it|plays|the|culture|clashes|between|the|brothers|. An|unabashedly|schmaltzy|and|thoroughly|enjoyable|true|story|. A|thoughtful|look|at|a|painful|incident|that|made|headlines|in|1995|. You|walk|out|of|The|Good|Girl|with|mixed|emotions|--|disapproval|of|Justine|combined|with|a|tinge|of|understanding|for|her|actions|. Tsai|Ming-liang|has|taken|his|trademark|style|and|refined|it|to|a|crystalline|point|. Purely|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|. Now|trimmed|by|about|20|minutes|,|this|lavish|three-year-old|production|has|enough|grandeur|and|scale|to|satisfy|as|grown-up|escapism|. We|get|some|truly|unique|character|studies|and|a|cross-section|of|Americana|that|Hollywood|could|n't|possibly|fictionalize|and|be|believed|. Though|this|film|can|be|clumsy|,|its|ambitions|are|equally|--|and|admirably|--|uncommercial|. Daring|,|mesmerizing|and|exceedingly|hard|to|forget|. Moore|'s|performance|impresses|almost|as|much|as|her|work|with|Haynes|in|1995|'s|Safe|. Visits|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|. An|absorbing|,|slice-of-depression|life|that|touches|nerves|and|rings|true|. Mr.|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|. The|result|is|something|quite|fresh|and|delightful|. All|but|the|most|persnickety|preteens|should|enjoy|this|nonthreatening|but|thrilling|adventure|. Despite|its|many|infuriating|flaws|--|not|the|least|of|which|is|Amy|'s|self-absorbed|personality|--|Amy|'s|O|'s|honesty|will|win|you|over|. This|is|one|of|Polanski|'s|best|films|. Day|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|. Polished|Korean|political-action|film|is|just|as|good|--|and|bad|--|as|Hollywood|action|epics|. Is|this|progress|? Elling|,|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|. Denis|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 An|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|. I|admired|it|,|particularly|that|unexpected|downer|of|an|ending|. The|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|. Remarkably|accessible|and|affecting|. Never|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|. A|triumph|of|art|direction|over|narrative|,|but|what|art|direction|! Behan|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|. Jirí|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|.|. Moore|'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|. The|additional|storyline|is|interesting|and|entertaining|,|but|it|does|n't|have|the|same|magical|quality|as|the|beginning|of|the|story|. I|like|the|new|footage|and|still|love|the|old|stuff|. Though|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|. You|might|not|buy|the|ideas|. But|you|'ll|definitely|want|the|T-shirt|. Provides|an|intriguing|window|into|the|imagination|and|hermetic|analysis|of|Todd|Solondz|. Windtalkers|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|. Presents|an|astute|appraisal|of|Middle|American|musical|torpor|and|the|desperate|struggle|to|escape|it|. Just|what|makes|us|happy|,|anyway|? A|thoughtful|,|moving|piece|that|faces|difficult|issues|with|honesty|and|beauty|. One|of|the|greatest|romantic|comedies|of|the|past|decade|. You|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|. Benefits|from|a|strong|performance|from|Zhao|,|but|it|'s|Dong|Jie|'s|face|you|remember|at|the|end|. This|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|. The|director|,|Steven|Shainberg|,|has|succeeded|by|focusing|intently|on|his|characters|,|making|them|quirky|individuals|rather|than|figures|of|fun|. It|ultimately|stands|forth|as|an|important|chronicle|of|the|abuses|of|one|of|Latin|America|'s|most|oppressive|regimes|. The|movie|has|a|soft|,|percolating|magic|,|a|deadpan|suspense|. A|well-made|and|often|lovely|depiction|of|the|mysteries|of|friendship|. Using|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|. ...|understands|that|a|generation|defines|its|music|as|much|as|the|music|defines|a|generation|. The|Transporter|is|as|lively|and|as|fun|as|it|is|unapologetically|dumb As|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|. Has|it|ever|been|possible|to|say|that|Williams|has|truly|inhabited|a|character|? It|is|now|. By|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|. An|impressive|debut|for|first-time|writer-director|Mark|Romanek|,|especially|considering|his|background|is|in|music|video|. An|incendiary|,|deeply|thought-provoking|look|at|one|of|the|most|peculiar|(|and|peculiarly|venomous|)|bigotries|in|our|increasingly|frightening|theocracy All|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|. ``|its|successes|are|also|tempered|with|elements|which|prove|the|direct|antithesis|of|what|it|gets|right|.|'' It|'s|solid|and|affecting|and|exactly|as|thought-provoking|as|it|should|be|. This|is|such|a|dazzlingly|self-assured|directorial|debut|that|it|'s|hard|to|know|what|to|praise|first|. Parker|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|. Münch|'s|genuine|insight|makes|the|film|'s|occasional|overindulgence|forgivable|. Thankfully|,|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|. Ultimately|,|the|message|of|Trouble|Every|Day|seems|to|be|that|all|sexual|desire|disrupts|life|'s|stasis|. If|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|. The|film|has|just|enough|of|everything|--|re-enactments|,|archival|footage|,|talking-head|interviews|--|and|the|music|is|simply|sublime|. There|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|. A|wonderful|character-based|comedy|. It|would|be|interesting|to|hear|from|the|other|side|,|but|in|Talk|to|Her|,|the|women|are|down|for|the|count|. An|endearingly|offbeat|romantic|comedy|with|a|great|meet-cute|gimmick|. The|unique|tug-of-war|with|viewer|expectations|is|undeniable|,|if|not|a|pleasure|in|its|own|right|. It|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|. It|'s|almost|impossible|not|to|be|moved|by|the|movie|'s|depiction|of|sacrifice|and|its|stirring|epilogue|in|post-Soviet|Russia|. Who|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|. The|tone|is|balanced|,|reflective|and|reasonable|. The|principals|in|this|cast|are|all|fine|,|but|Bishop|and|Stevenson|are|standouts|. It|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|. What|'s|most|striking|about|this|largely|celebratory|film|...|is|the|sense|of|isolation|that|permeates|these|bastions|of|individuality|in|an|Ikea|world|. ...|if|you|'re|in|a|mind|set|for|goofy|comedy|,|the|troopers|will|entertain|with|their|gross|outs|,|bawdy|comedy|and|head|games|. Somewhat|blurred|,|but|Kinnear|'s|performance|is|razor|sharp|. As|a|director|,|Mr.|Ratliff|wisely|rejects|the|temptation|to|make|fun|of|his|subjects|. For|anyone|who|remembers|the|'60s|or|is|interested|in|one|man|'s|response|to|stroke|,|Ram|Dass|:|Fierce|Grace|is|worth|seeking|out|. Intriguing|and|beautiful|film|,|but|those|of|you|who|read|the|book|are|likely|to|be|disappointed|. The|New|Guy|does|have|a|heart|. Now|,|if|it|only|had|a|brain|. A|savvy|exploration|of|paranoia|and|insecurity|in|America|'s|culture|of|fear|. Legendary|Irish|writer|Brendan|Behan|'s|memoir|,|Borstal|Boy|,|has|been|given|a|loving|screen|transferral|. The|film|'s|greatest|asset|is|how|much|it|'s|not|just|another|connect-the-dots|,|spy-on-the-run|picture|. This|clever|caper|movie|has|twists|worthy|of|David|Mamet|and|is|enormous|fun|for|thinking|audiences|. It|'s|one|of|the|saddest|films|I|have|ever|seen|that|still|manages|to|be|uplifting|but|not|overly|sentimental|. Morton|is|,|as|usual|,|brilliant|. Even|with|all|those|rough|edges|safely|sanded|down|,|the|American|Insomnia|is|still|pretty|darned|good|. I|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|. The|tug|of|war|that|ensues|is|as|much|a|snapshot|of|modern|China|in|microcosm|as|it|is|a|crash|course|in|movie|mythology|. Nearly|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|. You|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|. Asia|authors|herself|as|Anna|Battista|,|an|Italian|superstar|and|aspiring|directress|who|just|happens|to|be|her|own|worst|enemy|. Roman|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|. An|amusing|,|breezily|apolitical|documentary|about|life|on|the|campaign|trail|. High|on|melodrama|. But|it|'s|emotionally|engrossing|,|too|,|thanks|to|strong|,|credible|performances|from|the|whole|cast|. Finally|,|a|genre|movie|that|delivers|--|in|a|couple|of|genres|,|no|less|. It|'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|. Spielberg|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|. Post|9\/11|the|philosophical|message|of|``|Personal|Freedom|First|''|might|not|be|as|palatable|as|intended|. Hu|and|Liu|offer|natural|,|matter-of-fact|performances|that|glint|with|sorrow|,|longing|and|love|. This|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|. Easier|to|respect|than|enthuse|over|,|Andersson|'s|rigorous|personal|vision|is|not|only|distanced|but|distancing|. Girls|gone|wild|and|gone|civil|again ...|Tunney|is|allowed|to|build|an|uncommonly|human|character|,|an|almost|real-live|girl|complete|with|trouble|and|hope|. While|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|. Clever|,|brutal|and|strangely|soulful|movie|. ...|always|remains|movingly|genuine|. An|intelligent|fiction|about|learning|through|cultural|clash|. Will|grab|your|children|by|the|imagination|and|amaze|them|and|amuse|them|. A|remarkable|179-minute|meditation|on|the|nature|of|revolution|. Those|who|would|follow|Haneke|on|his|creepy|explorations|...|are|rewarded|by|brutal|,|committed|performances|from|Huppert|and|Magimel|. An|involving|true|story|of|a|Chinese|actor|who|takes|up|drugs|and|winds|up|in|an|institution|--|acted|mostly|by|the|actual|people|involved|. Hands|down|the|year|'s|most|thought-provoking|film|. But|it|pays|a|price|for|its|intricate|intellectual|gamesmanship|. It|'s|a|terrific|American|sports|movie|and|Dennis|Quaid|is|its|athletic|heart|. This|is|such|a|high-energy|movie|where|the|drumming|and|the|marching|are|so|excellent|,|who|cares|if|the|story|'s|a|little|weak|. Compelling|revenge|thriller|,|though|somewhat|weakened|by|a|miscast|leading|lady|. It|'s|amazingly|perceptive|in|its|subtle|,|supportive|but|unsentimental|look|at|the|Marks|family|. A|whole|lot|foul|,|freaky|and|funny|. Attal|mixes|comedy|with|a|serious|exploration|of|ego|and|jealousy|within|a|seemingly|serene|marriage|. The|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|. The|Pianist|is|a|fine|valedictory|work|for|Polanski|,|made|richer|by|his|own|experiences|,|making|his|other|movies|somehow|richer|in|the|bargain|. Foster|nails|the|role|,|giving|a|tight|,|focused|performance|illuminated|by|shards|of|feeling|. Even|if|you|ca|n't|pronounce|``|gyro|''|correctly|,|you|'ll|appreciate|much|of|Vardalos|'|humor|,|which|transcends|ethnic|boundaries|. Is|office|work|really|as|alienating|as|`|Bartleby|'|so|effectively|makes|it|? Farrell|...|thankfully|manages|to|outshine|the|role|and|successfully|plays|the|foil|to|Willis|'s|world-weary|colonel|. Audiences|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|. Bennett|'s|dramatization|of|her|personal|descent|into|post-breakup|perdition|has|a|morbid|appeal|that|'s|tough|to|shake|. An|intriguing|and|entertaining|introduction|to|Johnson|. As|expected|,|Sayles|'|smart|wordplay|and|clever|plot|contrivances|are|as|sharp|as|ever|,|though|they|may|be|overshadowed|by|some|strong|performances|. A|model|of|what|films|like|this|should|be|like|. As|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|. Yeah|,|these|flicks|are|just|that|damn|good|. Is|n't|it|great|? An|unbelievably|fun|film|just|a|leading|man|away|from|perfection|. Over-the-top|and|a|bit|ostentatious|,|this|is|a|movie|that|'s|got|oodles|of|style|and|substance|. ...|a|poignant|and|powerful|narrative|that|reveals|that|reading|writing|and|arithmetic|are|not|the|only|subjects|to|learn|in|life|. Nicely|serves|as|an|examination|of|a|society|in|transition|. A|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|. As|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|. Absorbing|character|study|by|André|Turpin|. Celebrated|at|Sundance|,|this|slight|comedy|of|manners|has|winning|performances|and|a|glossy|,|glib|charm|that|'s|hard|to|beat|. Renner|'s|performance|as|Dahmer|is|unforgettable|,|deeply|absorbing|. If|no|one|singles|out|any|of|these|performances|as|award-worthy|,|it|'s|only|because|we|would|expect|nothing|less|from|this|bunch|. If|you|love|reading|and\/or|poetry|,|then|by|all|means|check|it|out|. You|'ll|probably|love|it|. Though|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|. Energetic|and|boldly|provocative|. Star|Wars|is|back|in|a|major|way|. It|'s|a|movie|--|and|an|album|--|you|wo|n't|want|to|miss|. It|'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|. While|not|all|transitions|to|adulthood|are|so|fraught|,|there|'s|much|truth|and|no|small|amount|of|poetry|in|Girls|Ca|n't|Swim|. If|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|. Jacquot|'s|Tosca|is|a|treat|. By|the|end|of|No|Such|Thing|the|audience|,|like|Beatrice|,|has|a|watchful|affection|for|the|monster|. If|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|. ...|the|gentle|melding|of|drama|and|comedy|makes|``|What|Time|Is|It|There|?|'' something|the|true|film|buff|will|enjoy|. Romanek|keeps|the|film|constantly|taut|...|reflecting|the|character|'s|instability|with|a|metaphorical|visual|style|and|an|unnerving|,|heartbeat-like|score|. I|whole-heartedly|recommend|that|everyone|see|this|movie|--|for|its|historical|significance|alone|. Hey|,|who|else|needs|a|shower|? Longley|has|constructed|a|remarkably|coherent|,|horrifically|vivid|snapshot|of|those|turbulent|days|. Although|it|bangs|a|very|cliched|drum|at|times|,|this|crowd-pleaser|'s|fresh|dialogue|,|energetic|music|,|and|good-natured|spunk|are|often|infectious|. Often|gruelling|and|heartbreaking|to|witness|,|but|Seldahl|and|Wollter|'s|sterling|performances|raise|this|far|above|the|level|of|the|usual|maudlin|disease|movie|. Go|see|it|and|enjoy|. The|stunning|,|dreamlike|visuals|will|impress|even|those|viewers|who|have|little|patience|for|Euro-film|pretension|. George|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|. There|'s|a|vastness|implied|in|Metropolis|that|is|just|breathtaking|. Murderous|Maids|may|well|be|the|most|comprehensive|of|these|films|and|also|strike|closest|to|the|truth|. The|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|. As|green-guts|monster|movies|go|,|it|'s|a|beaut|. As|Bundy|,|Michael|Reilly|Burke|(|Octopus|2|:|River|of|Fear|)|has|just|the|right|amount|of|charisma|and|menace|. A|deceivingly|simple|film|,|one|that|grows|in|power|in|retrospect|. Ana|is|a|vivid|,|vibrant|individual|and|the|movie|'s|focus|upon|her|makes|it|successful|and|accessible|. A|slick|,|skillful|little|horror|film|. A|very|witty|take|on|change|,|risk|and|romance|,|and|the|film|uses|humour|to|make|its|points|about|acceptance|and|growth|. (|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|. Bubba|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|. despite|the|long|running|time|,|the|pace|never|feels|slack|--|there|'s|no|scene|that|screams|``|bathroom|break|!|'' Bullock|does|a|good|job|here|of|working|against|her|natural|likability|. A|film|of|precious|increments|artfully|camouflaged|as|everyday|activities|. Kinnear|gives|a|tremendous|performance|. The|best|movie|of|its|kind|since|`|Brazil|.|' Lucas|,|take|notes|. This|is|how|you|use|special|effects|. ``|Frailty|''|has|been|written|so|well|,|that|even|a|simple|``|Goddammit|!|'' near|the|end|takes|on|a|whole|other|meaning|. One|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|. Kaufman|creates|an|eerie|sense|of|not|only|being|there|at|the|time|of|these|events|but|the|very|night|Matthew|was|killed|. Chalk|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|. Its|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|. It|represents|better-than-average|movie-making|that|does|n't|demand|a|dumb|,|distracted|audience|. A|charming|yet|poignant|tale|of|the|irrevocable|ties|that|bind|. An|enchanting|spectacular|for|Potter|fans|anxious|to|ride|the|Hogwarts|Express|toward|a|new|year|of|magic|and|mischief|. The|talents|of|the|actors|helps|``|Moonlight|Mile|''|rise|above|its|heart-on-its-sleeve|writing|. It|'s|a|humble|effort|,|but|spiced|with|wry|humor|and|genuine|pathos|,|especially|between|Morgan|and|Redgrave|. This|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|. Dark|and|disturbing|,|but|also|surprisingly|funny|. The|movie|has|an|avalanche|of|eye-popping|visual|effects|. Starts|off|with|a|bang|,|but|then|fizzles|like|a|wet|stick|of|dynamite|at|the|very|end|. It|'s|still|worth|a|look|. Most|impressive|,|though|,|is|the|film|'s|open-ended|finale|that|refuses|to|entirely|close|its|characters|'|emotional|wounds|. A|hip|ride|into|hyper-time|,|Clockstoppers|is|a|lively|and|enjoyable|adventure|for|all|ages|at|any|time|. Grenier|is|terrific|,|bringing|an|unforced|,|rapid-fire|delivery|to|Toback|'s|Heidegger|-|and|Nietzsche-referencing|dialogue|. ...|a|polished|and|relatively|sincere|piece|of|escapism|. The|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|. The|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|. ...|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|. Long|after|you|leave|Justine|,|you|'ll|be|wondering|what|will|happen|to|her|and|wishing|her|the|best|--|whatever|that|might|mean|. Still|pretentious|and|filled|with|subtext|,|but|entertaining|enough|at|`|face|value|'|to|recommend|to|anyone|looking|for|something|different|. Call|me|a|wimp|,|but|I|cried|,|not|once|,|but|three|times|in|this|animated|sweet|film|. Notorious|C.H.O.|has|oodles|of|vulgar|highlights|. An|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|. The|level|of|maturity|displayed|by|this|33-year-old|first-time|feature|director|is|astonishing|,|considering|her|inexperience|and|her|subject|matter|. A|splendid|entertainment|,|young|in|spirit|but|accomplished|in|all|aspects|with|the|fullness|of|spirit|and|sense|of|ease|that|comes|only|with|experience|. Disney|'s|live-action|division|has|a|history|of|releasing|cinematic|flotsam|,|but|this|is|one|occasion|when|they|have|unearthed|a|rare|gem|. If|the|message|seems|more|facile|than|the|earlier|films|,|the|images|have|such|a|terrible|beauty|you|may|not|care|. Whether|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|. There|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|. There|are|moments|it|can|be|heart-rending|in|an|honest|and|unaffected|(|and|gentle|)|way|. Stay|clear|of|reminding|yourself|that|it|'s|a|``|true|story|''|and|you|'re|likely|to|have|one|helluva|time|at|the|movies|. There|are|just|enough|twists|in|the|tale|to|make|it|far|more|satisfying|than|almost|any|horror|film|in|recent|memory|. The|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|. Working|from|Elliott|'s|memoir|,|Rohmer|fashions|the|sort|of|delicate|,|articulate|character|-|and|-|relationship|study|he|'s|favored|for|decades|. The|story|feels|more|like|a|serious|read|,|filled|with|heavy|doses|of|always|enticing|Sayles|dialogue|. When|it|really|counts|...|Bloody|Sunday|connects|on|a|visceral|level|that|transcends|language|. The|crime|matters|less|than|the|characters|,|although|the|filmmakers|supply|enough|complications|,|close|calls|and|double-crosses|to|satisfy|us|. The|actors|are|fantastic|. They|are|what|makes|it|worth|the|trip|to|the|theatre|. Ranging|from|funny|to|shattering|and|featuring|some|of|the|year|'s|best|acting|,|Personal|Velocity|gathers|plenty|of|dramatic|momentum|. I|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|. Recalls|quiet|freak-outs|like|L'Avventura|and|Repulsion|. Only|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|. ...|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|. A|great|comedy|filmmaker|knows|great|comedy|need|n't|always|make|us|laugh|. Tim|Story|'s|not|there|yet|-|but|`|Barbershop|'|shows|he|'s|on|his|way|. The|movie|is|one|of|the|best|examples|of|artful|Large|Format|filmmaking|you|are|likely|to|see|anytime|soon|. Lends|itself|to|the|narcotizing|bland|(|sinister|,|though|not|nearly|so|sinister|as|the|biennial|Disney|girl|movie|)|machinations|of|the|biennial|Disney|boy|movie|. Well-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|. Jason|X|has|cheesy|effects|and|a|hoary|plot|,|but|its|macabre|,|self-deprecating|sense|of|humor|makes|up|for|a|lot|. (|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|is|n't|a|new|idea|. It|'s|been|done|before|but|never|so|vividly|or|with|so|much|passion|. An|impressive|if|flawed|effort|that|indicates|real|talent|. Two|generations|within|one|family|test|boundaries|in|this|intelligent|and|restrained|coming-of-age|drama|. it|sounds|sick|and|twisted|,|but|the|miracle|of|Shainberg|'s|film|is|that|it|truly|is|romance Disturbing|and|brilliant|documentary|. ...|mesmerizing|,|an|eye-opening|tour|of|modern|Beijing|culture|in|a|journey|of|rebellion|,|retreat|into|oblivion|and|return|. One|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|. Not|too|far|below|the|gloss|you|can|still|feel|director|Denis|Villeneuve|'s|beating|heart|and|the|fondness|he|has|for|his|characters|. As|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|. (|Villeneuve|)|seems|to|realize|intuitively|that|even|morality|is|reduced|to|an|option|by|the|ultimate|mysteries|of|life|and|death|. The|result|is|mesmerizing|--|filled|with|menace|and|squalor|. Fisher|has|bared|his|soul|and|confronted|his|own|shortcomings|here|in|a|way|...|that|feels|very|human|and|very|true|to|life|. It|'s|fun|,|but|the|code-talk|will|fly|right|over|everyone|'s|head Bourne|,|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|! What|makes|the|movie|a|comedy|is|the|way|it|avoids|the|more|serious|emotions|involved|. This|cuddly|sequel|to|the|1999|hit|is|a|little|more|visually|polished|,|a|little|funnier|,|and|a|little|more|madcap|. The|pleasures|of|Super|Troopers|may|be|fleeting|,|but|they|'ll|register|strongly|with|anybody|who|still|retains|a|soft|spot|for|precollegiate|humor|. The|film|is|exhilarating|to|watch|because|Sandler|,|liberated|from|the|constraints|of|formula|,|reveals|unexpected|depths|as|an|actor|. A|distant|,|even|sterile|,|yet|compulsively|watchable|look|at|the|sordid|life|of|Hogan|'s|Heroes|star|Bob|Crane|. The|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|. What|might|have|been|a|predictably|heartwarming|tale|is|suffused|with|complexity|. Sound|the|trumpets|:|For|the|first|time|since|Desperately|Seeking|Susan|,|Madonna|does|n't|suck|as|an|actress|. Although|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|. (|``|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|. As|the|story|moves|inexorably|through|its|seven|day|timeframe|,|the|picture|becomes|increasingly|mesmerizing|. Maguire|is|a|surprisingly|effective|Peter\/Spider-Man|. Not|a|cozy|or|ingratiating|work|,|but|it|'s|challenging|,|sometimes|clever|,|and|always|interesting|,|and|those|are|reasons|enough|to|see|it|. The|film|runs|on|equal|parts|of|innocence|and|wisdom|--|wisdom|that|comes|with|experience|. It|has|fun|being|grown|up|. Like|old|myths|and|wonder|tales|spun|afresh|. Rarely|do|films|come|along|that|are|as|intelligent|,|exuberant|,|and|moving|as|Monsoon|Wedding|. One|scarcely|needs|the|subtitles|to|enjoy|this|colorful|action|farce|. Quite|funny|for|the|type|of|movie|it|is|... It|'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|. One|of|(|Herzog|'s|)|least|inspired|works|. This|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|. Elling|really|is|about|a|couple|of|crazy|guys|,|and|it|'s|therapeutic|to|laugh|along|with|them|. An|irresistible|combination|of|a|rousing|good|story|set|on|a|truly|grand|scale|. There|'s|no|denying|the|physically|spectacular|qualities|of|the|film|...|or|the|emotional|integrity|of|the|performances|. Few|films|this|year|have|been|as|resolute|in|their|emotional|nakedness|. Exquisitely|acted|and|masterfully|if|preciously|interwoven|...|(|the|film|)|addresses|in|a|fascinating|,|intelligent|manner|the|intermingling|of|race|,|politics|and|local|commerce|. Stevenson|'s|performance|is|at|once|clueless|and|fiercely|committed|,|a|volatile|combination|. This|is|a|very|fine|movie|--|go|see|it|. As|shaky|as|the|plot|is|,|Kaufman|'s|script|is|still|memorable|for|some|great|one-liners|. Despite|its|flaws|,|Secretary|stays|in|your|head|and|makes|you|question|your|own|firmly|held|positions|. One|of|those|rare|,|exhilarating|cinematic|delights|that|gets|even|better|in|hindsight|,|as|you|mull|over|its|every|nuance|in|your|mind|. Not|everything|works|,|but|the|average|is|higher|than|in|Mary|and|most|other|recent|comedies|. A|byzantine|melodrama|that|stimulates|the|higher|brain|functions|as|well|as|the|libido|. A|sensitive|and|expertly|acted|crowd-pleaser|that|is|n't|above|a|little|broad|comedy|and|a|few|unabashedly|sentimental|tears|. The|film|'s|sharp|,|often|mischievous|sense|of|humor|will|catch|some|off|guard|... Does|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|. Almost|every|scene|in|this|film|is|a|gem|that|could|stand|alone|,|a|perfectly|realized|observation|of|mood|,|behavior|and|intent|. A|psychologically|rich|and|suspenseful|moral|thriller|with|a|stellar|performance|by|Al|Pacino|. You|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|. This|version|'s|no|classic|like|its|predecessor|,|but|its|pleasures|are|still|plentiful|. The|Bourne|Identity|is|what|summer|screen|escapism|used|to|be|in|the|decades|when|it|was|geared|more|to|grownups|. Provide|(|s|)|nail-biting|suspense|and|credible|characters|without|relying|on|technology-of-the-moment|technique|or|pretentious|dialogue|. If|it|tried|to|do|anything|more|,|it|would|fail|and|perhaps|explode|,|but|at|this|level|of|manic|whimsy|,|it|is|just|about|right|. Too|sincere|to|exploit|its|subjects|and|too|honest|to|manipulate|its|audience|. The|saturation|bombing|of|Reggio|'s|images|and|Glass|'|evocative|music|...|ultimately|leaves|viewers|with|the|task|of|divining|meaning|. For|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|. A|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|. This|road|movie|gives|you|emotional|whiplash|,|and|you|'ll|be|glad|you|went|along|for|the|ride|. Sure|,|it|'s|more|of|the|same|,|but|as|the|film|proves|,|that|'s|not|always|a|bad|thing|. A|lighthearted|,|feel-good|film|that|embraces|the|time-honored|truth|that|the|most|powerful|thing|in|life|is|love|. A|bowel-curdling|,|heart-stopping|recipe|for|terror|. Daughter|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|. Zhang|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|. ...|breathes|surprising|new|life|into|the|familiar|by|amalgamating|genres|and|adding|true|human|complexity|to|its|not-so-stock|characters|.|' ...|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|.|' A|pleasant|romantic|comedy|. It|'s|a|Count|for|our|times|. Greengrass|has|delivered|an|undoubted|stylistic|tour-de-force|,|and|has|managed|elements|such|as|sound|and|cinematography|with|skill Smith|'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|. A|romantic|comedy|,|yes|,|but|one|with|characters|who|think|and|talk|about|their|goals|,|and|are|working|on|hard|decisions|. Vividly|conveys|both|the|pitfalls|and|the|pleasures|of|over-the-top|love|. ...|a|weak|,|manipulative|,|pencil-thin|story|that|is|miraculously|able|to|entertain|anyway|. A|pro-fat|farce|that|overcomes|much|of|its|excessive|moral|baggage|thanks|to|two|appealing|lead|performances|. For|the|first|two-thirds|of|this|sparklingly|inventive|and|artful|,|always|fast|and|furious|tale|,|kids|will|go|happily|along|for|the|ride|. Majidi|'s|poetic|love|story|is|a|ravishing|consciousness-raiser|,|if|a|bit|draggy|at|times|. The|smartest|bonehead|comedy|of|the|summer|. Effectively|feeds|our|senses|with|the|chilling|sights|and|sounds|from|within|the|camp|to|create|a|completely|numbing|experience|. I|love|the|way|that|it|took|chances|and|really|asks|you|to|take|these|great|leaps|of|faith|and|pays|off|. In|his|debut|as|a|film|director|,|Denzel|Washington|delivers|a|lean|and|engaging|work|. Only|two|words|will|tell|you|what|you|know|when|deciding|to|see|it|:|Anthony|. Hopkins|. The|movie|'s|quiet|affirmation|of|neighborhood|values|gives|it|an|honest|,|lived-in|glow|. A|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|. Hayek|is|stunning|as|Frida|and|...|a|star-making|project|. It|'s|both|a|necessary|political|work|and|a|fascinating|documentary|... Hilarious|,|acidic|Brit|comedy|. As|a|revenge|thriller|,|the|movie|is|serviceable|,|but|it|does|n't|really|deliver|the|delicious|guilty|pleasure|of|the|better|film|versions|. An|ironic|speculation|on|democracy|in|a|culture|unaccustomed|to|it|. It|'s|not|life-affirming|--|its|vulgar|and|mean|,|but|I|liked|it|. Several|degrees|shy|of|the|gross-out|contests|one|expects|from|current|teen|fare|. The|inherent|strength|of|the|material|as|well|as|the|integrity|of|the|filmmakers|gives|this|coming-of-age|story|restraint|as|well|as|warmth|. Led|by|Griffin|'s|smartly|nuanced|performance|and|enthusiasm|,|the|cast|has|a|lot|of|fun|with|the|material|. Tuck|Everlasting|achieves|a|delicate|balance|of|romantic|innocence|and|philosophical|depth|. A|gentle|blend|of|present|day|testimonials|,|surviving|footage|of|Burstein|and|his|family|performing|,|historical|archives|,|and|telling|stills|. A|Generation|X|artifact|,|capturing|a|brief|era|of|insanity|in|the|sports|arena|that|surely|can|not|last|. Possession|is|Elizabeth|Barrett|Browning|meets|Nancy|Drew|,|and|it|'s|directed|by|...|Neil|LaBute|. Hmm|. An|uneven|but|intriguing|drama|that|is|part|homage|and|part|remake|of|the|Italian|masterpiece|. Windtalkers|celebrates|the|human|spirit|and|packs|an|emotional|wallop|. Having|never|been|a|huge|fan|of|Dickens|'|800-page|novel|,|it|surprised|me|how|much|pleasure|I|had|watching|McGrath|'s|version|. The|best|thing|the|film|does|is|to|show|us|not|only|what|that|mind|looks|like|,|but|how|the|creative|process|itself|operates|. For|all|its|failed|connections|,|Divine|Secrets|of|the|Ya-Ya|Sisterhood|is|nurturing|,|in|a|gauzy|,|dithering|way|. This|is|pretty|dicey|material|. But|some|unexpected|zigs|and|zags|help|. The|filmmakers|skillfully|evoke|the|sense|of|menace|that|nature|holds|for|many|urban|dwellers|. The|laser-projected|paintings|provide|a|spell-casting|beauty|,|while|Russell|and|Dreyfus|are|a|romantic|pairing|of|hearts|,|preciously|exposed|as|history|corners|them|. You|do|n't|have|to|be|an|especially|tough|grader|to|give|a|charitable|B-minus|to|The|Emperor|'s|Club|. This|romantic|thriller|is|steeped|in|the|atmosphere|of|wartime|England|,|and|ably|captures|the|speech|patterns|,|moral|codes|and|ideals|of|the|1940s|. Divine|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|. Viewed|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|. A|journey|through|memory|,|a|celebration|of|living|,|and|a|sobering|rumination|on|fatality|,|classism|,|and|ignorance|. Resourceful|and|ingenious|entertainment|. ``|Antwone|Fisher|''|is|an|earnest|,|by-the-numbers|effort|by|Washington|. It|wo|n't|rock|any|boats|but|is|solid|meat-and-potatoes|filmmaking|. A|historical|epic|with|the|courage|of|its|convictions|about|both|scope|and|detail|. We|need|(|Moore|'s|)|noisy|,|cocky|energy|,|his|passion|and|class|consciousness|;|we|need|his|shticks|,|we|need|his|stones|. Although|the|editing|might|have|been|tighter|,|Hush|! sympathetically|captures|the|often|futile|lifestyle|of|young|people|in|modern|Japan|. (|Gai|)|comes|closer|to|any|actress|I|can|remember|to|personifying|independence|in|its|purest|and|,|yes|,|most|intimidating|form|. These|are|lives|worth|watching|,|paths|worth|following|. It|'s|rather|like|a|Lifetime|special|--|pleasant|,|sweet|and|forgettable|. A|moody|horror\/thriller|elevated|by|deft|staging|and|the|director|'s|well-known|narrative|gamesmanship|. As|a|singular|character|study|,|it|'s|perfect|. It|'s|also|the|year|'s|sweetest|movie|. A|graceful|,|contemplative|film|that|gradually|and|artfully|draws|us|into|a|world|where|the|personal|and|the|political|get|fatally|intertwined|. While|not|as|aggressively|impressive|as|its|American|counterpart|,|``|In|the|Bedroom|,|''|Moretti|'s|film|makes|its|own|,|quieter|observations The|experience|of|watching|blobby|old-school|CGI|animation|in|this|superlarge|format|is|just|surreal|enough|to|be|diverting|. Time|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 ``|The|Emperor|'s|New|Clothes|''|begins|with|a|simple|plan|...|Well|,|at|least|that|'s|the|plan|. Haynes|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|. (|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|. While|the|glass|slipper|does|n't|quite|fit|,|Pumpkin|is|definitely|a|unique|modern|fairytale|. The|drama|is|played|out|with|such|aching|beauty|and|truth|that|it|brings|tears|to|your|eyes|. An|exciting|and|involving|rock|music|doc|,|a|smart|and|satisfying|look|inside|that|tumultuous|world|. An|offbeat|,|sometimes|gross|and|surprisingly|appealing|animated|film|about|the|true|meaning|of|the|holidays|. This|version|incarnates|the|prophetic|book|in|a|way|even|its|exacting|author|might|admire|. Sometimes|,|nothing|satisfies|like|old-fashioned|swashbuckling|. And|in|this|regard|,|On|Guard|delivers|. ...|ambition|is|in|short|supply|in|the|cinema|,|and|Egoyan|tackles|his|themes|and|explores|his|characters|'|crises|with|seriousness|and|compassion|. An|impossible|romance|,|but|we|root|for|the|patronized|Iranian|lad|. Like|Dickens|with|his|passages|,|McGrath|crafts|quite|moving|scenes|throughout|his|resolutely|dramatic|variation|on|the|novel|. There|'s|a|disreputable|air|about|the|whole|thing|,|and|that|'s|what|makes|it|irresistible|. an|exceedingly|clever|piece|of|cinema|. another|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 A|carefully|structured|scream|of|consciousness|that|is|tortured|and|unsettling|--|but|unquestionably|alive|. A|quietly|reflective|and|melancholy|New|Zealand|film|about|an|eventful|summer|in|a|13-year-old|girl|'s|life|. Cute|,|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|. very|solid|,|very|watchable|first|feature|for|director|Peter|Sheridan a|budget|affair|that|exposes|the|generally|sad|existence|of|the|Bedouins|while|providing|a|precious|twinkle|of|insight|into|their|lives|. It|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|. Workmanlike|,|maybe|,|but|still|a|film|with|all|the|elements|that|made|the|other|three|great|,|scary|times|at|the|movies|. A|pleasant|enough|comedy|that|should|have|found|a|summer|place|. Branagh|,|in|his|most|forceful|non-Shakespeare|screen|performance|,|grounds|even|the|softest|moments|in|the|angry|revolt|of|his|wit|. Though|the|violence|is|far|less|sadistic|than|usual|,|the|film|is|typical|Miike|:|fast|,|furious|and|full|of|off-the-cuff|imaginative|flourishes|. Compelling|as|it|is|exotic|,|Fast|Runner|has|a|plot|that|rivals|Shakespeare|for|intrigue|,|treachery|and|murder|. What|it|lacks|in|originality|it|makes|up|for|in|intelligence|and|B-grade|stylishness|. The|warm|presence|of|Zhao|Benshan|makes|the|preposterous|lying|hero|into|something|more|than|he|reasonably|should|be|. This|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|. Director|Rob|Marshall|went|out|gunning|to|make|a|great|one|. Skip|work|to|see|it|at|the|first|opportunity|. Bow|'s|best|moments|are|when|he|'s|getting|busy|on|the|basketball|court|because|that|'s|when|he|really|scores|. Offers|enough|playful|fun|to|entertain|the|preschool|set|while|embracing|a|wholesome|attitude|. In|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|. An|intimate|,|good-humored|ethnic|comedy|like|numerous|others|but|cuts|deeper|than|expected|. Ice|Cube|holds|the|film|together|with|an|engaging|and|warm|performance|... Both|deeply|weird|and|charmingly|dear|. As|blunt|as|it|is|in|depicting|child|abuse|,|El|Bola|is|a|movie|steeped|in|an|ambiguity|that|lends|its|conflicts|a|symbolic|resonance|. Despite|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|. An|incredibly|low-rent|Danish|film|,|it|brings|a|group|of|people|together|in|a|sweet|and|charming|way|,|if|a|little|convenient It|'s|the|cinematic|equivalent|of|a|good|page-turner|,|and|even|if|it|'s|nonsense|,|its|claws|dig|surprisingly|deep|. Director|Nalin|Pan|does|n't|do|much|to|weigh|any|arguments|one|way|or|the|other|. He|simply|presents|his|point|of|view|that|Ayurveda|works|. No|question|. What|``|Empire|''|lacks|in|depth|it|makes|up|for|with|its|heart|. Claude|Miller|airs|out|a|tight|plot|with|an|easy|pace|and|a|focus|on|character|drama|over|crime-film|complications|. What|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|... Rich|in|detail|,|gorgeously|shot|and|beautifully|acted|,|Les|Destinees|is|,|in|its|quiet|,|epic|way|,|daring|,|inventive|and|refreshingly|unusual|. (|A|)|Hollywood|sheen|bedevils|the|film|from|the|very|beginning|...|(|but|)|Lohman|'s|moist|,|deeply|emotional|eyes|shine|through|this|bogus|veneer|... Do|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|? Ford|deserves|to|be|remembered|at|Oscar|time|for|crafting|this|wonderful|portrait|of|a|conflicted|soldier|. The|film|'s|45-minute|running|time|stops|shy|of|overkill|,|though|viewers|may|be|more|exhausted|than|the|athletes|onscreen|. Do|n't|expect|any|surprises|in|this|checklist|of|teamwork|cliches|... As|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 The|movie|addresses|a|hungry|need|for|PG-rated|,|nonthreatening|family|movies|,|but|it|does|n't|go|too|much|further|. This|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|. A|yarn|that|respects|the|Marvel|version|without|becoming|ensnared|by|it|. This|is|a|happy|throwback|to|the|time|when|cartoons|were|cinema|'s|most|idiosyncratic|form|instead|of|one|of|its|most|predictable|. Complex|,|affecting|and|uniquely|Almodóvar|,|the|film|evokes|strong|emotions|and|pushes|viewers|to|question|their|deepest|notions|of|moral|right|and|wrong|. Good|ol'|urban|legend|stuff|. Not|so|much|a|movie|as|a|picture|book|for|the|big|screen|. This|is|n't|my|favorite|in|the|series|,|still|I|enjoyed|it|enough|to|recommend|. It|'s|one|of|the|most|honest|films|ever|made|about|Hollywood|. It|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|. On|its|own|cinematic|terms|,|it|successfully|showcases|the|passions|of|both|the|director|and|novelist|Byatt|. Light|,|silly|,|photographed|with|colour|and|depth|,|and|rather|a|good|time|. Pray|'s|film|works|well|and|will|appeal|even|to|those|who|are|n't|too|familiar|with|turntablism|. Good|movie|. Good|actress|. But|if|you|expect|light|romantic|comedy|,|good|gosh|,|will|you|be|shocked|. It|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|. With|youthful|high|spirits|,|Tautou|remains|captivating|throughout|Michele|'s|religious|and|romantic|quests|,|and|she|is|backed|by|a|likable|cast|. It|'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|. A|very|funny|look|at|how|another|culture|handles|the|process|of|courting|and|marriage|. But|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|... Much|of|the|movie|'s|charm|lies|in|the|utter|cuteness|of|Stuart|and|Margolo|. Their|computer-animated|faces|are|very|expressive|. The|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|. Anchored|by|a|terrific|performance|by|Abbass|,|Satin|Rouge|shows|that|the|idea|of|women|'s|self-actualization|knows|few|continental|divides|. Awkward|but|sincere|and|,|ultimately|,|it|wins|you|over|. Smith|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|. Though|the|plot|is|predictable|,|the|movie|never|feels|formulaic|,|because|the|attention|is|on|the|nuances|of|the|emotional|development|of|the|delicate|characters|. Sam|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|. Goyer|'s|screenplay|and|direction|are|thankfully|understated|,|and|he|has|drawn|excellent|performances|from|his|cast|. Binoche|and|Magimel|are|perfect|in|these|roles|. When|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|. While|Undercover|Brother|is|definitely|one|for|the|masses|,|it|'s|also|full|of|sharp|,|smart|satire|. Gets|under|the|skin|of|a|man|who|has|just|lost|his|wife|. No|wonder|they|'re|talking|about|``|Talk|to|Her|.|'' It|'s|astonishing|. For|its|seriousness|,|high|literary|aspirations|and|stunning|acting|,|the|film|can|only|be|applauded|. Look|,|this|is|a|terrific|flick|replete|with|dazzling|camera-work|,|dancing|and|music|. It|is|inspirational|in|characterizing|how|people|from|such|diverse|cultures|share|the|same|human|and|spiritual|needs|. It|'s|fairly|self-aware|in|its|dumbness|. A|triumph|,|relentless|and|beautiful|in|its|downbeat|darkness|. Tailored|to|entertain|! A|compelling|,|moving|film|that|respects|its|audience|and|its|source|material|. has|a|plot|full|of|twists|upon|knots|...|and|a|nonstop|parade|of|mock-Tarantino|scuzbag|types|that|starts|out|clever|but|veers|into|overkill|. A|work|of|astonishing|delicacy|and|force|. The|film|benefits|greatly|from|a|less|manic|tone|than|its|predecessor|,|as|Cho|appears|to|have|settled|comfortably|into|her|skin|. For|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|. Is|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|. The|film|hinges|on|its|performances|,|and|both|leads|are|up|to|the|task|. An|intelligent|,|earnest|,|intimate|film|that|drops|the|ball|only|when|it|pauses|for|blunt|exposition|to|make|sure|you|'re|getting|its|metaphysical|point|. A|modest|pleasure|that|accomplishes|its|goals|with|ease|and|confidence|. A|breezy|,|diverting|,|conventional|,|well-acted|tale|of|two|men|locked|in|an|ongoing|game|of|cat-and-cat|. What|Jackson|has|accomplished|here|is|amazing|on|a|technical|level|. As|teen|movies|go|,|``|Orange|County|''|is|a|refreshing|change Makes|S&M|seem|very|romantic|,|and|Maggie|Gyllenhaal|is|a|delight|. A|deliciously|mordant|,|bitter|black|comedy|. Although|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|. It|is|risky|,|intelligent|,|romantic|and|rapturous|from|start|to|finish|. The|movie|sticks|much|closer|to|Hornby|'s|drop-dead|confessional|tone|than|the|film|version|of|High|Fidelity|did|. A|pleasant|ramble|through|the|sort|of|idoosyncratic|terrain|that|Errol|Morris|has|often|dealt|with|...|it|does|possess|a|loose|,|lackadaisical|charm|. ...|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|) This|is|a|raw|and|disturbing|tale|that|took|five|years|to|make|,|and|the|trio|'s|absorbing|narrative|is|a|heart-wrenching|showcase|indeed|. A|beautiful|and|haunting|examination|of|the|stories|we|tell|ourselves|to|make|sense|of|the|mundane|horrors|of|the|world|. Aside|from|being|the|funniest|movie|of|the|year|,|Simone|,|Andrew|Niccol|'s|brilliant|anti-Hollywood|satire|,|has|a|wickedly|eccentric|enchantment|to|it|. Watstein|handily|directs|and|edits|around|his|screenplay|'s|sappier|elements|...|and|sustains|Off|the|Hook|'s|buildup|with|remarkable|assuredness|for|a|first-timer|. Just|another|fish-out-of-water|story|that|barely|stays|afloat|. There|'s|an|energy|to|Y|Tu|Mamá|También|. Much|of|it|comes|from|the|brave|,|uninhibited|performances|by|its|lead|actors|. It|'s|the|kind|of|pigeonhole-resisting|romp|that|Hollywood|too|rarely|provides|. Reinforces|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|. You|can|feel|the|heat|that|ignites|this|gripping|tale|,|and|the|humor|and|humanity|that|root|it|in|feeling|. It|'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|. A|movie|for|11-year-old|boys|with|sports|dreams|of|their|own|and|the|preteen|girls|who|worship|Lil|'|Bow|Wow|. A|refreshingly|authentic|coming-of-age|tale|. If|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|. But|fans|should|have|fun|meeting|a|brand-new|Pokemon|called|Celebi|. From|the|big|giant|titles|of|the|opening|credits|to|Elmer|Bernstein|'s|perfectly|melodic|score|,|Haynes|gets|just|about|everything|right|. Whether|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|. Has|a|shambling|charm|...|a|cheerfully|inconsequential|diversion|. Ferrara|directs|the|entire|film|with|the|kind|of|detachment|that|makes|any|given|frame|look|like|a|family|'s|custom-made|Christmas|card|. The|movie|has|lots|of|dancing|and|fabulous|music|. There|are|slow|and|repetitive|parts|,|but|it|has|just|enough|spice|to|keep|it|interesting|. An|incredibly|clever|and|superbly|paced|caper|filled|with|scams|within|scams|within|scams|. There|'s|not|much|more|to|this|adaptation|of|the|Nick|Hornby|novel|than|charm|--|effortless|,|pleasurable|,|featherweight|charm|. As|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|. Even|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|. Not|as|distinctive|or|even|as|humorous|as|its|needs|to|be|to|stand|out|,|but|it|has|clearly|been|made|with|affection|and|care|. This|is|Carion|'s|debut|feature|but|his|script|and|direction|hums|with|a|confidence|that|many|spend|entire|careers|trying|to|reach|. An|intelligent|,|moving|and|invigorating|film|. ...|one|of|the|most|ingenious|and|entertaining|thrillers|I|'ve|seen|in|quite|a|long|time|. A|clever|blend|of|fact|and|fiction|. A|vivid|cinematic|portrait|. Hilarious|,|touching|and|wonderfully|dyspeptic|. Theirs|is|a|simple|and|heart-warming|story|,|full|of|mirth|that|should|charm|all|but|the|most|cynical|. The|film|is|an|enjoyable|family|film|--|pretty|much|aimed|at|any|youngster|who|loves|horses|. A|frisky|and|fresh|romantic|comedy|exporing|sexual|politics|and|the|challenges|of|friendships|between|women|. It|'s|a|good|film|--|not|a|classic|,|but|odd|,|entertaining|and|authentic|. Flavorful|and|romantic|,|you|could|call|this|How|Martha|Got|Her|Groove|Back|--|assuming|,|that|is|,|she|ever|had|one|to|begin|with|. Happily|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|. Thurman|and|Lewis|are|hilarious|throughout|. the|plot|is|so|amusingly|contrived|and|outlandish|in|its|coincidences|that|no|one|could|ever|mistake|it|for|anything|resembling|reality Hits|one|out|of|the|park|for|the|`|they|do|n't|make|'em|like|that|anymore|'|department|. It|dares|to|be|a|little|different|,|and|that|shading|is|what|makes|it|worthwhile|. (|Fessenden|)|is|much|more|into|ambiguity|and|creating|mood|than|he|is|for|on|screen|thrills The|comic|performances|are|all|spot|on|,|especially|Lee|Ross|'s|turn|as|Ken|. a|compelling|journey|...|and|``|His|Best|Friend|Remembers|''|is|up|there|with|the|finest|of|specials|. At|nearly|three|hours|,|the|whole|of|Safe|Conduct|is|less|than|the|sum|of|its|parts|. The|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|... A|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|. Pretty|darn|good|,|despite|its|smarty-pants|aura|. So|young|,|so|smart|,|such|talent|,|such|a|wise|\*\*\*|. Woo|'s|fights|have|a|distinct|flair|. His|warriors|collide|in|balletic|explosion|that|implies|an|underlying|order|throughout|the|chaos|. Barney|has|created|a|tour|de|force|that|is|weird|,|wacky|and|wonderful|. The|ending|does|leave|you|unfulfilled|,|but|these|are|performances|to|enjoy|in|a|memorable|ensemble|piece|. ...|an|agreeable|time-wasting|device|--|but|George|Pal|'s|low-tech|1960|version|still|rules|the|epochs|. It|'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|. Offers|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|. I|do|n't|think|I|'ve|been|as|entranced|and|appalled|by|an|Asian|film|since|Shinya|Tsukamoto|'s|Iron|Man|. It|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|. Director|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|. Lilia|'s|transformation|from|strict|mother|to|sensual|siren|is|superficially|preposterous|,|but|Abbas|infuses|the|role|with|an|unimpeachable|core|of|emotional|truth|. Frida|'s|artistic|brilliance|is|undeniable|--|it|'s|among|the|most|breathtakingly|designed|films|I|'ve|ever|seen|. The|perfect|film|for|those|who|like|sick|comedies|that|can|be|snide|. `|Charly|'|will|divide|its|audience|in|two|separate|groups|,|those|reaching|for|more|tissues|and|those|begging|for|mercy|... Nervy|and|sensitive|,|it|taps|into|genuine|artistic|befuddlement|,|and|at|the|same|time|presents|a|scathing|indictment|of|what|drives|Hollywood|. A|marvellous|journey|from|childhood|idealism|to|adolescent|self-absorption|. The|film|is|just|a|big|,|gorgeous|,|mind-blowing|,|breath-taking|mess|. Sharp|,|lively|,|funny|and|ultimately|sobering|film|. Though|the|film|'s|scenario|is|certainly|not|earthshaking|,|this|depiction|of|fluctuating|female|sexuality|has|two|winning|lead|performances|and|charm|to|spare|. A|worthy|tribute|to|a|great|humanitarian|and|her|vibrant|`|co-stars|.|' A|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|. The|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|. Occasionally|funny|and|consistently|odd|,|and|it|works|reasonably|well|as|a|star|vehicle|for|Zhao|. Bright|seems|alternately|amused|and|disgusted|with|this|material|,|and|he|ca|n't|help|throwing|in|a|few|of|his|own|touches|. The|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|. Andersson|creates|a|world|that|'s|at|once|surreal|and|disturbingly|familiar|;|absurd|,|yet|tremendously|sad|. It|'s|predictable|,|but|it|jumps|through|the|expected|hoops|with|style|and|even|some|depth|. Often|hilarious|,|well-shot|and|,|importantly|,|entertaining|,|Hell|House|is|a|fascinating|document|of|an|event|that|has|to|be|seen|to|be|believed|. De|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|. ...|an|inviting|piece|of|film|. The|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|. The|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|. A|deviant|topical|comedy|which|is|funny|from|start|to|finish|. A|startling|and|fresh|examination|of|how|the|bike|still|remains|an|ambiguous|icon|in|Chinese|society|. A|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 As|Hugh|Grant|says|repeatedly|throughout|the|movie|,|`|Lovely|! Brilliant|!|' Cho|'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|. Works|because|,|for|the|most|part|,|it|avoids|the|stupid|cliches|and|formulaic|potholes|that|befall|its|brethren|. At|its|best|,|The|Good|Girl|is|a|refreshingly|adult|take|on|adultery|... An|amazing|and|incendiary|movie|that|dives|straight|into|the|rough|waters|of|contradiction|. About|nowhere|kids|who|appropriated|turfs|as|they|found|them|and|become|self-made|celebrity|athletes|--|a|low-down|version|of|the|American|dream|. Occasionally|,|in|the|course|of|reviewing|art-house|obscurities|and|slam-bam|action|flicks|,|a|jaded|critic|smacks|into|something|truly|new|. A|miniscule|little|bleep|on|the|film|radar|,|but|one|that|many|more|people|should|check|out ``|13|Conversations|''|holds|its|goodwill|close|,|but|is|relatively|slow|to|come|to|the|point|. A|slick|,|well-oiled|machine|,|exquisitely|polished|and|upholstered|. Do|n't|plan|on|the|perfect|ending|,|but|Sweet|Home|Alabama|hits|the|mark|with|critics|who|escaped|from|a|small|town|life|. It|has|a|subtle|way|of|getting|under|your|skin|and|sticking|with|you|long|after|it|'s|over|. The|movie|stays|afloat|thanks|to|its|hallucinatory|production|design|. It|helps|that|the|central|performers|are|experienced|actors|,|and|that|they|know|their|roles|so|well|. A|provocative|movie|about|loss|,|anger|,|greed|,|jealousy|,|sickness|and|love|. Worth|the|effort|to|watch|. That|rara|avis|:|the|intelligent|romantic|comedy|with|actual|ideas|on|its|mind|. Boisterous|and|daft|documentary|. Hawke|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|. A|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|. Full|Frontal|is|the|antidote|for|Soderbergh|fans|who|think|he|'s|gone|too|commercial|since|his|two|Oscar|nominated|films|in|2000 It|turns|out|to|be|a|cut|above|the|norm|,|thanks|to|some|clever|writing|and|sprightly|acting|. You|might|not|want|to|hang|out|with|Samantha|,|but|you|'ll|probably|see|a|bit|of|yourself|in|her|unfinished|story|. A|work|of|intricate|elegance|,|literary|lyricism|and|profound|common|sense|. It|'s|as|close|as|we|'ll|ever|come|to|looking|through|a|photographer|'s|viewfinder|as|he|works|. Thoughtful|,|provocative|and|entertaining|. Witty|,|touching|and|well|paced|. Lee|Jeong-Hyang|tells|it|so|lovingly|and|films|it|so|beautifully|that|I|could|n't|help|being|captivated|by|it|. You|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|. Enjoy|it|for|what|it|is|;|you|can|hate|yourself|later|. A|map|of|the|inner|rhythms|of|love|and|jealousy|and|sacrifice|drawn|with|a|master|'s|steady|stroke|. A|psychological|thriller|with|a|smart|script|and|an|obsessive-compulsive|'s|attention|to|detail|. Grant|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|. At|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|. Westfeldt|and|Juergensen|exude|a|chemistry|and|comfort|level|that|'s|both|saucy|and|endearing|. Harsh|,|effective|documentary|on|life|in|the|Israeli-occupied|Palestinian|territories|. The|film|is|all|a|little|Lit|Crit|101|,|but|it|'s|extremely|well|played|and|often|very|funny|. Earns|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|. A|real|story|about|real|people|living|their|lives|concerned|about|the|future|of|an|elderly|,|mentally|handicapped|family|member|. It|'s|absolutely|spooky|how|Lillard|channels|the|Shagster|right|down|to|the|original|Casey|Kasem-furnished|voice|. A|dream|cast|of|solid|female|talent|who|build|a|seamless|ensemble|. There|is|n't|a|weak|or|careless|performance|amongst|them|. Smart|science|fiction|for|grown-ups|,|with|only|a|few|false|steps|along|the|way|. It|'s|a|refreshing|change|from|the|self-interest|and|paranoia|that|shape|most|American|representations|of|Castro|. Often|moving|and|explores|the|discomfort|inherent|in|the|contacts|between|the|American|`|hosts|'|and|their|`|guests|.|' Though|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|. Lathan|and|Diggs|have|considerable|personal|charm|,|and|their|screen|rapport|makes|the|old|story|seem|new|. The|story|may|not|be|new|,|but|Australian|director|John|Polson|,|making|his|American|feature|debut|,|jazzes|it|up|adroitly|. It|'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|. The|film|often|achieves|a|mesmerizing|poetry|. More|than|makes|up|for|its|mawkish|posing|by|offering|rousing|spates|of|genuine|feeling|. It|'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|. Occasionally|funny|,|always|very|colorful|and|enjoyably|overblown|in|the|traditional|Almodóvar|style|. Merchant|effectively|translates|Naipaul|'s|lively|mix|of|characters|from|the|page|to|screen|. Some|movies|are|like|a|tasty|hors-d'oeuvre|;|this|one|is|a|feast|. What|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|. Davis|has|filled|out|his|cast|with|appealing|fresh|faces|. Achieves|a|sort|of|filmic|epiphany|that|revels|in|the|true|potential|of|the|medium|. Once|you|get|into|its|rhythm|...|the|movie|becomes|a|heady|experience|. ``|Auto|Focus|''|works|as|an|unusual|biopic|and|document|of|male|swingers|in|the|Playboy|era If|Mr.|Zhang|'s|subject|matter|is|,|to|some|degree|at|least|,|quintessentially|American|,|his|approach|to|storytelling|might|be|called|Iranian|. A|fast-moving|and|remarkable|film|that|appears|destined|to|become|a|landmark|in|Japanese|animation|. ...|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|. A|worthy|entry|into|a|very|difficult|genre|. (|Broomfield|)|uncovers|a|story|powerful|enough|to|leave|the|screen|sizzling|with|intrigue|. Eight|Crazy|Nights|is|a|showcase|for|Sandler|'s|many|talents|. A|sweet-natured|reconsideration|of|one|of|San|Francisco|'s|most|vital|,|if|least|widely|recognized|,|creative|fountainheads|. This|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|. Everywhere|the|camera|looks|there|is|something|worth|seeing|. A|richly|imagined|and|admirably|mature|work|from|a|gifted|director|who|definitely|has|something|on|his|mind|. It|'s|a|nicely|detailed|world|of|pawns|,|bishops|and|kings|,|of|wagers|in|dingy|backrooms|or|pristine|forests|. A|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|. It|never|fails|to|engage|us|. Its|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|. A|charming|romantic|comedy|that|is|by|far|the|lightest|Dogme|film|and|among|the|most|enjoyable|. This|is|the|kind|of|movie|that|used|to|be|right|at|home|at|the|Saturday|matinee|,|and|it|still|is|. The|spark|of|special|anime|magic|here|is|unmistakable|and|hard|to|resist|. Like|its|two|predecessors|,|1983|'s|Koyaanisqatsi|and|1988|'s|Powaqqatsi|,|the|cinematic|collage|Naqoyqatsi|could|be|the|most|navel-gazing|film|ever|. Baran|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|. The|visuals|alone|make|Metropolis|worth|seeing|. Dark|,|resonant|,|inventively|detailed|and|packed|with|fleet|turns|of|plot|and|a|feast|of|visual|amazement|. A|picture|that|extols|the|virtues|of|comradeship|and|community|in|a|spunky|,|spirited|fashion|. A|resonant|tale|of|racism|,|revenge|and|retribution|. Noyce|'s|film|is|contemplative|and|mournfully|reflective|. Here|,|Adrian|Lyne|comes|as|close|to|profundity|as|he|is|likely|to|get|. Evokes|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|. Rain|is|a|small|treasure|,|enveloping|the|viewer|in|a|literal|and|spiritual|torpor|that|is|anything|but|cathartic|. An|elegant|,|exquisitely|modulated|psychological|thriller|. This|concoction|,|so|bizarre|to|the|adult|mind|,|is|actually|a|charming|triumph|where|its|intended|under-12|audience|is|concerned|. Droll|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|.|'' It|'s|a|beautifully|accomplished|lyrical|meditation|on|a|bunch|of|despondent|and|vulnerable|characters|living|in|the|renown|Chelsea|Hotel|... Is|it|a|total|success|? No.|. Is|it|something|any|true|film|addict|will|want|to|check|out|? You|bet|. Zany|,|exuberantly|irreverent|animated|space|adventure|. Dolgin|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|. The|disarming|cornball|atmosphere|has|a|way|of|infecting|the|entire|crowd|as|the|film|rolls|on|. A|refreshingly|honest|and|ultimately|touching|tale|of|the|sort|of|people|usually|ignored|in|contemporary|American|film|. Search|it|out|. Engrossing|and|affecting|,|if|ultimately|not|quite|satisfying|. The|story|,|like|life|,|refuses|to|be|simple|,|and|the|result|is|a|compelling|slice|of|awkward|emotions|. A|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|. Funny|and|,|at|times|,|poignant|,|the|film|from|director|George|Hickenlooper|all|takes|place|in|Pasadena|,|``|a|city|where|people|still|read|.|'' This|horror-comedy|does|n't|go|for|the|usual|obvious|laughs|at|the|expense|of|cheap-looking|monsters|--|unless|you|count|Elvira|'s|hooters|. The|movie|'s|eventual|success|should|be|credited|to|Dennis|Quaid|,|in|fighting|trim|shape|as|an|athlete|as|well|as|an|actor Not|a|bad|journey|at|all|. Sits|uneasily|as|a|horror|picture|...|but|finds|surprising|depth|in|its|look|at|the|binds|of|a|small|family|. Windtalkers|blows|this|way|and|that|,|but|there|'s|no|mistaking|the|filmmaker|in|the|tall|grass|,|true|to|himself|. There|is|a|refreshing|absence|of|cynicism|in|Stuart|Little|2|--|quite|a|rarity|,|even|in|the|family|film|market|. Eventually|,|it|wins|you|over|. Noyce|films|it|more|as|a|shocking|history|lesson|than|as|drama|. Like|a|south-of-the-border|Melrose|Place|. Those|with|an|interest|in|new|or|singular|sorts|of|film|experiences|will|find|What|Time|Is|It|There|? well|worth|the|time|. A|wildly|funny|prison|caper|. Huppert|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|. Despite|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|. You|'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|. The|actors|are|so|terrific|at|conveying|their|young|angst|,|we|do|indeed|feel|for|them|. The|reason|this|picture|works|better|than|its|predecessors|is|that|Myers|is|no|longer|simply|spoofing|the|mini-mod-madness|of|'60s|spy|movies|. It|is|a|kickass|,|dense|sci-fi|action|thriller|hybrid|that|delivers|and|then|some|. I|have|n't|seen|one|in|so|long|,|no|wonder|I|did|n't|recognize|it|at|first|. a|compelling|portrait|of|moral|emptiness In|Adobo|,|ethnicity|is|not|just|the|spice|,|but|at|the|heart|of|more|universal|concerns|. It|is|ridiculous|,|of|course|...|but|it|is|also|refreshing|,|disarming|,|and|just|outright|enjoyable|despite|its|ridiculousness|. ...|Blade|II|is|more|enjoyable|than|the|original|. A|film|that|takes|you|inside|the|rhythms|of|its|subject|:|You|experience|it|as|you|watch|. The|movie|exists|for|its|soccer|action|and|its|fine|acting|. The|movie|is|saved|from|unbearable|lightness|by|the|simplicity|of|the|storytelling|and|the|authenticity|of|the|performances|. The|film|starts|out|as|competent|but|unremarkable|...|and|gradually|grows|into|something|of|considerable|power|. Nothing|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|. Reinforces|the|talents|of|screenwriter|Charlie|Kaufman|,|creator|of|Adaptation|and|Being|John|Malkovich|. Greene|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|. Finds|a|way|to|tell|a|simple|story|,|perhaps|the|simplest|story|of|all|,|in|a|way|that|seems|compelling|and|even|original|. A|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|. This|is|art|paying|homage|to|art|. ...|a|joke|at|once|flaky|and|resonant|,|lightweight|and|bizarrely|original|. Invincible|is|a|wonderful|movie|. ...|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|. Dazzling|and|sugar-sweet|,|a|blast|of|shallow|magnificence|that|only|sex|,|scandal|,|and|a|chorus|line|of|dangerous|damsels|can|deliver|. Occasionally|amateurishly|made|but|a|winsome|cast|and|nice|dialogue|keeps|it|going|. Japan|'s|premier|stylist|of|sex|and|blood|hits|audiences|with|what|may|be|his|most|demented|film|to|date|. Culkin|,|who|'s|in|virtually|every|scene|,|shines|as|a|young|man|who|uses|sarcastic|lies|like|a|shield|. Cuts|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|. The|AM-radio|soundtrack|and|game|cast|--|Tierney|and|the|inimitable|Walken|especially|--|keep|this|unusual|comedy|from|choking|on|its|own|conceit|. ...|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|. Marvelous|,|merry|and|,|yes|,|melancholy|film|. From|spiritual|rebirth|to|bruising|defeat|,|Vincent|'s|odyssey|resonates|in|a|profound|way|,|comparable|to|the|classic|films|of|Jean|Renoir|. Novak|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|. Insomnia|is|involving|. Still|,|I|thought|it|could|have|been|more|. There|was|time|on|that|second|round|to|see|the|subtleties|of|Ramsay|'s|portrait|of|grief|. We|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|. A|comprehensive|and|provocative|film|--|one|that|pushes|the|boundaries|of|biography|,|and|challenges|its|audience|. The|way|Coppola|professes|his|love|for|movies|--|both|colorful|pop|junk|and|the|classics|that|unequivocally|qualify|as|art|--|is|giddily|entertaining|. A|worthwhile|way|to|spend|two|hours|. Francophiles|will|snicker|knowingly|and|you|'ll|want|to|slap|them|. Sensitive|,|insightful|and|beautifully|rendered|film|. One|of|the|best|of|the|year|. A|love|for|films|shines|through|each|frame|and|the|era|is|recreated|with|obvious|affection|,|scored|to|perfection|with|some|tasty|boogaloo|beats|. Throwing|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|. Makes|an|aborbing|if|arguable|case|for|the|man|'s|greatness|. An|endlessly|fascinating|,|landmark|movie|that|is|as|bold|as|anything|the|cinema|has|seen|in|years|. ...|a|haunting|vision|,|with|images|that|seem|more|like|disturbing|hallucinations|. It|is|not|a|mass-market|entertainment|but|an|uncompromising|attempt|by|one|artist|to|think|about|another|. Frailty|is|n't|as|gory|or|explicit|. But|in|its|child-centered|,|claustrophobic|context|,|it|can|be|just|as|frightening|and|disturbing|--|even|punishing|. Mixes|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|. The|long-range|appeal|of|``|Minority|Report|''|should|transcend|any|awards|it|bags|. This|is|one|for|the|ages|. (|A|)|superbly|controlled|,|passionate|adaptation|of|Graham|Greene|'s|1955|novel|. Much|monkeyfun|for|all|. An|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|. (|Hawn|'s|character|)|is|so|bluntly|written|,|without|a|trace|of|sentimentality|,|and|so|blisteringly|defined|,|that|every|other|character|seems|overlooked|and|underwritten|. The|heightened|symmetry|of|this|new\/old|Cinema|Paradiso|makes|the|film|a|fuller|experience|,|like|an|old|friend|haunted|by|the|exigencies|of|time|. The|Powers|team|has|fashioned|a|comedy|with|more|laughs|than|many|,|no|question|. But|this|time|there|'s|some|mold|on|the|gold|. While|surprisingly|sincere|,|this|average|little|story|is|adorned|with|some|awesome|action|photography|and|surfing|. It|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|. A|film|that|is|a|portrait|of|grace|in|an|imperfect|world|. A|pleasurably|jacked-up|piece|of|action|moviemaking|. Nicolas|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|. A|perverse|little|truffle|,|dainty|psychological|terror|on|the|outside|with|a|creamy|filling|of|familial|jealousy|and|unrepentant|domestic|psychopathy|. This|ecologically|minded|,|wildlife|friendly|film|teaches|good|ethics|while|entertaining|with|its|unconventionally|wacky|but|loving|family An|enjoyably|half-wit|remake|of|the|venerable|Italian|comedy|Big|Deal|on|Madonna|Street|. It|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|. Reign|of|Fire|may|be|little|more|than|another|platter|of|reheated|Aliens|,|but|it|'s|still|pretty|tasty|. There|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|. Two|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|. This|cheery|,|down-to-earth|film|is|warm|with|the|cozy|feeling|of|relaxing|around|old|friends|. Thrilling|,|provocative|and|darkly|funny|,|this|timely|sci-fi|mystery|works|on|so|many|different|levels|that|it|not|only|invites|,|it|demands|repeated|viewings|. A|tale|of|horror|and|revenge|that|is|nearly|perfect|in|its|relentless|descent|to|the|depths|of|one|man|'s|tortured|soul|. An|epic|of|grandeur|and|scale|that|'s|been|decades|gone|from|the|popcorn|pushing|sound|stages|of|Hollywood|. Genuinely|touching|because|it|'s|realistic|about|all|kinds|of|love|. Lauren|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|. There|has|been|much|puzzlement|among|critics|about|what|the|election|symbolizes|. I|believe|the|message|is|in|the|messenger|:|The|agent|is|a|woman|. An|enjoyable|film|for|the|family|,|amusing|and|cute|for|both|adults|and|kids|. ``|The|Mothman|Prophecies|''|is|a|difficult|film|to|shake|from|your|conscience|when|night|falls|. The|second|chapter|of|the|Harry|Potter|series|is|even|more|magical|than|the|first|and|simply|the|best|family|film|of|the|year|. More|honest|about|Alzheimer|'s|disease|,|I|think|,|than|Iris|. The|acting|alone|is|worth|the|price|of|admission|. An|excellent|romp|that|boasts|both|a|heart|and|a|mind|. Interacting|eyeball-to-eyeball|and|toe-to-toe|,|Hopkins|and|Norton|are|a|winning|combination|--|but|Fiennes|steals|`|Red|Dragon|'|right|from|under|their|noses|. This|is|a|terrific|character|study|,|a|probe|into|the|life|of|a|complex|man|. Impresses|you|with|its|open-endedness|and|surprises|. This|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|. My|oh|my|,|is|this|an|invigorating|,|electric|movie|. The|two|leads|chomp|considerably|more|scenery|with|their|acting|than|fire-breathing|monsters|barbecue|with|their|breath|... Cedar|takes|a|very|open-minded|approach|to|this|sensitive|material|,|showing|impressive|control|,|both|visually|and|in|the|writing|. Biggie|and|Tupac|is|so|single-mindedly|daring|,|it|puts|far|more|polished|documentaries|to|shame|. So|many|documentaries|like|this|presuppose|religious|bigotry|or|zealous|nuttiness|of|its|antagonists|,|but|Family|Fundamentals|displays|a|rare|gift|for|unflinching|impartiality|. The|cast|is|uniformly|excellent|and|relaxed|. After|making|several|adaptations|of|other|writers|'|work|,|Armenian-Canadian|director|Atom|Egoyan|broached|an|original|treatment|of|a|deeply|personal|subject|. The|film|is|painfully|authentic|,|and|the|performances|of|the|young|players|are|utterly|convincing|. If|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|. A|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|. Fans|of|the|animated|wildlife|adventure|show|will|be|in|warthog|heaven|;|others|need|not|necessarily|apply|. Without|resorting|to|hyperbole|,|I|can|state|that|Kissing|Jessica|Stein|may|be|the|best|same-sex|romance|I|have|seen|. Nolan|bravely|treads|where|few|American|films|dare|to|delve|--|into|the|world|of|ambivalence|and|ambiguity|... Unlike|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|. A|potent|allegorical|love|story|. Even|those|who|would|like|to|dismiss|the|film|outright|should|find|much|to|mull|and|debate|. This|is|cool|,|slick|stuff|,|ready|to|quench|the|thirst|of|an|audience|that|misses|the|summer|blockbusters|. The|movie|is|full|of|fine|performances|,|led|by|Josef|Bierbichler|as|Brecht|and|Monica|Bleibtreu|as|Helene|Weigel|,|his|wife|. A|captivating|cross-cultural|comedy|of|manners|. Andy|Garcia|enjoys|one|of|his|richest|roles|in|years|and|Mick|Jagger|gives|his|best|movie|performance|since|,|well|,|Performance|. The|movie|is|n'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|. It|'s|(|Ricci|'s|)|best|work|yet|,|this|girl-woman|who|sincerely|believes|she|can|thwart|the|world|'s|misery|with|blind|good|will|. Highlights|are|the|terrific|performances|by|Christopher|Plummer|,|as|the|prime|villain|,|and|Nathan|Lane|as|Vincent|Crummles|,|the|eccentric|theater|company|manager|. (|Howard|)|so|good|as|Leon|Barlow|...|that|he|hardly|seems|to|be|acting|. Superior|genre|storytelling|,|which|gets|under|our|skin|simply|by|crossing|the|nuclear|line|. By|taking|Entertainment|Tonight|subject|matter|and|giving|it|humor|and|poignancy|,|Auto|Focus|becomes|both|gut-bustingly|funny|and|crushingly|depressing|. It|'s|a|bittersweet|and|lyrical|mix|of|elements|. Subversive|,|meditative|,|clinical|and|poetic|,|The|Piano|Teacher|is|a|daring|work|of|genius|. The|weakest|of|the|four|Harry|Potter|books|has|been|transformed|into|the|stronger|of|the|two|films|by|the|thinnest|of|margins|. Its|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|. It|further|declares|its|director|,|Zhang|Yang|of|Shower|,|as|a|boldly|experimental|,|contemporary|stylist|with|a|bright|future|. Smith|'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|. Full|of|profound|,|real-life|moments|that|anyone|can|relate|to|,|it|deserves|a|wide|audience|. A|movie|that|will|touch|the|hearts|of|both|children|and|adults|,|as|well|as|bring|audiences|to|the|edge|of|their|seats|. Leave|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|. Fine|acting|but|there|is|no|sense|of|connecting|the|dots|,|just|dots|. An|extraordinary|Swedish|film|about|the|soul|adventure|of|marriage|--|the|kind|of|intimate|and|character-driven|film|that|Bille|August|does|best|. A|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|. It|took|19|predecessors|to|get|THIS|? Thoughtful|,|even|stinging|at|times|,|and|lots|of|fun|. One|of|the|most|haunting|,|viciously|honest|coming-of-age|films|in|recent|memory|. The|WWII|drama|is|well|plotted|,|visually|striking|and|filled|with|enjoyably|complex|characters|who|are|never|what|they|first|appear|. It|'s|a|pleasure|to|see|Seinfeld|griping|about|the|biz|with|buddies|Chris|Rock|,|Garry|Shandling|and|Colin|Quinn|. If|you|love|Motown|music|,|you|'ll|love|this|documentary|. This|time|out|,|(|Sade|)|is|an|unsettlingly|familiar|figure|--|in|turns|loyal|and|deceitful|,|responsible|and|reckless|,|idealistically|selfless|and|coldly|self-interested|. Human|Resources|was|a|good|,|straightforward|tale|,|but|Time|Out|is|better|. It|'s|haunting|. It|'s|like|a|poem|. To|the|film|'s|credit|,|the|acting|is|fresh|and|unselfconscious|,|and|Munch|is|a|marvel|of|reality|versus|sappy|sentiment|. Chicago|is|,|in|many|ways|,|an|admirable|achievement|. Shainberg|weaves|a|carefully|balanced|scenario|that|is|controlled|by|neither|character|,|is|weirdly|sympathetic|to|both|and|manages|to|be|tender|and|darkly|comic|. Even|when|foreign|directors|...|borrow|stuff|from|Hollywood|,|they|invariably|shake|up|the|formula|and|make|it|more|interesting|. A|cockamamie|tone|poem|pitched|precipitously|between|swoony|lyricism|and|violent|catastrophe|...|the|most|aggressively|nerve-wracking|and|screamingly|neurotic|romantic|comedy|in|cinema|history|. Sturdy|,|entertaining|period|drama|...|both|Caine|and|Fraser|have|their|moments|. Whether|(|Binoche|and|Magimel|)|are|being|charming|or|angst-ridden|,|they|easily|fill|their|scenes|and|,|fine|judges|both|,|never|overcook|the|hysteria|. A|spunky|,|original|take|on|a|theme|that|will|resonate|with|singles|of|many|ages|. It|'s|a|glorious|groove|that|leaves|you|wanting|more|. Majidi|gets|uniformly|engaging|performances|from|his|largely|amateur|cast|. ...|a|well-observed|and|disturbing|little|movie Fans|of|Nijinsky|will|savor|every|minute|of|Cox|'s|work|. Everything|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|. Jagger|the|actor|is|someone|you|want|to|see|again|. Escapism|in|its|purest|form|. There|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|. A|comic|gem|with|some|serious|sparkles|. U.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|. ``|Cremaster|3|''|should|come|with|the|warning|``|For|serious|film|buffs|only|!|'' Once|again|,|director|Jackson|strikes|a|rewarding|balance|between|emotion|on|the|human|scale|and|action\/effects|on|the|spectacular|scale|. A|loving|little|film|of|considerable|appeal|. Although|it|'s|a|bit|smug|and|repetitive|,|this|documentary|engages|your|brain|in|a|way|few|current|films|do|. Flawed|but|worthy|look|at|life|in|U.S.|relocation|camps|. It|'s|a|lovely|film|with|lovely|performances|by|Buy|and|Accorsi|. No|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|. A|warm|,|funny|,|engaging|film|. Uses|sharp|humor|and|insight|into|human|nature|to|examine|class|conflict|,|adolescent|yearning|,|the|roots|of|friendship|and|sexual|identity|. Half|Submarine|flick|,|Half|Ghost|Story|,|All|in|one|criminally|neglected|film Entertains|by|providing|good|,|lively|company|. Dazzles|with|its|fully-written|characters|,|its|determined|stylishness|(|which|always|relates|to|characters|and|story|)|and|Johnny|Dankworth|'s|best|soundtrack|in|years|. Visually|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|. Nothing|'s|at|stake|,|just|a|twisty|double-cross|you|can|smell|a|mile|away|--|still|,|the|derivative|Nine|Queens|is|lots|of|fun|. Unlike|the|speedy|wham-bam|effect|of|most|Hollywood|offerings|,|character|development|--|and|more|importantly|,|character|empathy|--|is|at|the|heart|of|Italian|for|Beginners|. You|'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|. The|band|'s|courage|in|the|face|of|official|repression|is|inspiring|,|especially|for|aging|hippies|(|this|one|included|)|. Although|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|. A|beguiling|splash|of|pastel|colors|and|prankish|comedy|from|Disney|. As|surreal|as|a|dream|and|as|detailed|as|a|photograph|,|as|visually|dexterous|as|it|is|at|times|imaginatively|overwhelming|. (|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|. The|film|serves|as|a|valuable|time|capsule|to|remind|us|of|the|devastating|horror|suffered|by|an|entire|people|. What|'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|. Whether|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|. ...|an|otherwise|intense|,|twist-and-turn|thriller|that|certainly|should|n't|hurt|talented|young|Gaghan|'s|resume|. It|provides|the|grand|,|intelligent|entertainment|of|a|superior|cast|playing|smart|people|amid|a|compelling|plot|. There|'s|...|tremendous|energy|from|the|cast|,|a|sense|of|playfulness|and|excitement|that|seems|appropriate|. It|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|. A|deep|and|meaningful|film|. The|film|'s|welcome|breeziness|and|some|unbelievably|hilarious|moments|--|most|portraying|the|idiocy|of|the|film|industry|--|make|it|mostly|worth|the|trip|. It|'s|a|remarkably|solid|and|subtly|satirical|tour|de|force|. Enormously|entertaining|for|moviegoers|of|any|age|. A|poignant|,|artfully|crafted|meditation|on|mortality|. A|rarity|among|recent|Iranian|films|:|It|'s|a|comedy|full|of|gentle|humor|that|chides|the|absurdity|of|its|protagonist|'s|plight|. Not|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|. In|a|way|,|the|film|feels|like|a|breath|of|fresh|air|,|but|only|to|those|that|allow|it|in|. Woody|Allen|'s|latest|is|an|ambling|,|broad|comedy|about|all|there|is|to|love|--|and|hate|--|about|the|movie|biz|. It|'s|a|stunning|lyrical|work|of|considerable|force|and|truth|. The|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æs|)|directed|the|stage|version|of|Elling|,|and|gets|fine|performances|from|his|two|leads|who|originated|the|characters|on|stage|. Made|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|. A|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|. Like|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|. (|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|. Here|'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|can|not|be|said|to|suck|. You|wo|n't|like|Roger|,|but|you|will|quickly|recognize|him|. And|that|'s|a|big|part|of|why|we|go|to|the|movies|. While|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|. We|know|the|plot|'s|a|little|crazy|,|but|it|held|my|interest|from|start|to|finish|. A|sober|and|affecting|chronicle|of|the|leveling|effect|of|loss|. A|fast|,|funny|,|highly|enjoyable|movie|. A|celebration|of|quirkiness|,|eccentricity|,|and|certain|individuals|'|tendency|to|let|it|all|hang|out|,|and|damn|the|consequences|. Writer\/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|. A|smart|,|witty|follow-up|. While|the|ideas|about|techno-saturation|are|far|from|novel|,|they|'re|presented|with|a|wry|dark|humor|. An|infectious|cultural|fable|with|a|tasty|balance|of|family|drama|and|frenetic|comedy|. Although|occasionally|static|to|the|point|of|resembling|a|stage|play|,|the|film|delivers|a|solid|mixture|of|sweetness|and|laughs|. It|provides|an|honest|look|at|a|community|striving|to|anchor|itself|in|new|grounds|. Add|yet|another|hat|to|a|talented|head|,|Clooney|'s|a|good|director|. Building|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|. Ultimately|feels|empty|and|unsatisfying|,|like|swallowing|a|Communion|wafer|without|the|wine|. Chilling|,|well-acted|,|and|finely|directed|:|David|Jacobson|'s|Dahmer|. A|swashbuckling|tale|of|love|,|betrayal|,|revenge|and|above|all|,|faith|. Without|ever|becoming|didactic|,|director|Carlos|Carrera|expertly|weaves|this|novelistic|story|of|entangled|interrelationships|and|complex|morality|. It|'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|. A|literate|presentation|that|wonderfully|weaves|a|murderous|event|in|1873|with|murderous|rage|in|2002|. Makes|even|the|claustrophobic|on-board|quarters|seem|fun|. This|is|as|respectful|a|film|as|Byatt|fans|could|hope|for|,|though|lovers|of|the|book|may|wonder|why|it|'s|necessary|. One|of|the|best|films|of|the|year|with|its|exploration|of|the|obstacles|to|happiness|faced|by|five|contemporary|individuals|...|a|psychological|masterpiece|. Not|far|beneath|the|surface|,|this|reconfigured|tale|asks|disturbing|questions|about|those|things|we|expect|from|military|epics|. For|the|most|part|Stevens|glides|through|on|some|solid|performances|and|witty|dialogue|. Broomfield|turns|his|distinctive|`|blundering|'|style|into|something|that|could|really|help|clear|up|the|case|. Against|all|odds|in|heaven|and|hell|,|it|creeped|me|out|just|fine|. It|'s|refreshing|to|see|a|girl-power|movie|that|does|n't|feel|it|has|to|prove|anything|. It|'s|worth|seeing|just|on|the|basis|of|the|wisdom|,|and|at|times|,|the|startling|optimism|,|of|the|children|. A|rigorously|structured|and|exquisitely|filmed|drama|about|a|father|and|son|connection|that|is|a|brief|shooting|star|of|love|. This|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|. A|quiet|treasure|--|a|film|to|be|savored|. May|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|. A|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|. Huston|nails|both|the|glad-handing|and|the|choking|sense|of|hollow|despair|. may|not|have|generated|many|sparks|,|but|with|his|affection|for|Astoria|and|its|people|he|has|given|his|tale|a|warm|glow|. A|delirious|celebration|of|the|female|orgasm|. Exquisitely|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|. It|'s|fascinating|to|see|how|Bettany|and|McDowell|play|off|each|other|. The|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|. Leigh|'s|film|is|full|of|memorable|performances|from|top|to|bottom|. One|of|the|most|significant|moviegoing|pleasures|of|the|year|. Jose|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|. Generally|,|Clockstoppers|will|fulfill|your|wildest|fantasies|about|being|a|different|kind|of|time|traveler|,|while|happily|killing|94|minutes|. The|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|. Neither|Parker|nor|Donovan|is|a|typical|romantic|lead|,|but|they|bring|a|fresh|,|quirky|charm|to|the|formula|. It|'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|. Not|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|. Jaglom|...|put|(|s|)|the|audience|in|the|privileged|position|of|eavesdropping|on|his|characters Beautifully|observed|,|miraculously|unsentimental|comedy-drama|. A|must-see|for|the|David|Mamet|enthusiast|and|for|anyone|who|appreciates|intelligent|,|stylish|moviemaking|. Crackerjack|entertainment|--|nonstop|romance|,|music|,|suspense|and|action|. The|acting|,|costumes|,|music|,|cinematography|and|sound|are|all|astounding|given|the|production|'s|austere|locales|. García|Bernal|and|Talancón|are|an|immensely|appealing|couple|,|and|even|though|their|story|is|predictable|,|you|'ll|want|things|to|work|out|. Far|more|imaginative|and|ambitious|than|the|trivial|,|cash-in|features|Nickelodeon|has|made|from|its|other|animated|TV|series|. The|very|definition|of|the|`|small|'|movie|,|but|it|is|a|good|stepping|stone|for|director|Sprecher|. A|gripping|,|searing|portrait|of|a|lost|soul|trying|to|find|her|way|through|life|. Suffers|from|the|lack|of|a|compelling|or|comprehensible|narrative|. Still|,|as|a|visual|treat|,|the|film|is|almost|unsurpassed|. So|unassuming|and|pure|of|heart|,|you|ca|n't|help|but|warmly|extend|your|arms|and|yell|`|Safe|!|' An|intriguing|cinematic|omnibus|and|round-robin|that|occasionally|is|more|interesting|in|concept|than|in|execution|. So|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|. At|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|. The|magic|of|the|film|lies|not|in|the|mysterious|spring|but|in|the|richness|of|its|performances|. Hoffman|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|. What|better|message|than|`|love|thyself|'|could|young|women|of|any|size|receive|? The|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|. 84|minutes|of|rolling|musical|back|beat|and|supercharged|cartoon|warfare|. It|'s|also|,|clearly|,|great|fun|. ...|takes|the|beauty|of|baseball|and|melds|it|with|a|story|that|could|touch|anyone|regardless|of|their|familiarity|with|the|sport Seldahl|'s|Barbara|is|a|precise|and|moving|portrait|of|someone|whose|world|is|turned|upside|down|,|first|by|passion|and|then|by|illness|. A|warm|but|realistic|meditation|on|friendship|,|family|and|affection|. Byler|reveals|his|characters|in|a|way|that|intrigues|and|even|fascinates|us|,|and|he|never|reduces|the|situation|to|simple|melodrama|. Turns|potentially|forgettable|formula|into|something|strangely|diverting|. Bogdanovich|tantalizes|by|offering|a|peep|show|into|the|lives|of|the|era|'s|creme|de|la|celluloid|. People|cinema|at|its|finest|. The|performances|take|the|movie|to|a|higher|level|. what|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|. ...|a|spoof|comedy|that|carries|its|share|of|laughs|--|sometimes|a|chuckle|,|sometimes|a|guffaw|and|,|to|my|great|pleasure|,|the|occasional|belly|laugh|. Manages|to|transcend|the|sex|,|drugs|and|show-tunes|plot|into|something|far|richer|. Dense|with|characters|and|contains|some|thrilling|moments|. LaPaglia|'s|ability|to|convey|grief|and|hope|works|with|Weaver|'s|sensitive|reactions|to|make|this|a|two-actor|master|class|. Reign|of|Fire|looks|as|if|it|was|made|without|much|thought|--|and|is|best|watched|that|way|. Altogether|,|this|is|successful|as|a|film|,|while|at|the|same|time|being|a|most|touching|reconsideration|of|the|familiar|masterpiece|. We|root|for|(|Clara|and|Paul|)|,|even|like|them|,|though|perhaps|it|'s|an|emotion|closer|to|pity|. The|best|film|about|baseball|to|hit|theaters|since|Field|of|Dreams|. Instead|of|a|hyperbolic|beat-charged|urban|western|,|it|'s|an|unpretentious|,|sociologically|pointed|slice|of|life|. the|film|tunes|into|a|grief|that|could|lead|a|man|across|centuries|. If|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|. (|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|. As|a|tolerable|diversion|,|the|film|suffices|;|a|Triumph|,|however|,|it|is|not|. If|director|Michael|Dowse|only|superficially|understands|his|characters|,|he|does|n't|hold|them|in|contempt|. If|your|taste|runs|to|`|difficult|'|films|you|absolutely|ca|n't|miss|it|. (|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|. ...|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|. Like|Leon|,|it|'s|frustrating|and|still|oddly|likable|. All|in|all|,|The|Count|of|Monte|Cristo|is|okay|,|but|it|is|surely|no|classic|,|like|the|novel|upon|which|it|is|based|. If|you|can|stomach|the|rough|content|,|it|'s|worth|checking|out|for|the|performances|alone|. Looking|aristocratic|,|luminous|yet|careworn|in|Jane|Hamilton|'s|exemplary|costumes|,|Rampling|gives|a|performance|that|could|not|be|improved|upon|.|' ...|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|.|' On|this|tricky|topic|,|Tadpole|is|very|much|a|step|in|the|right|direction|,|with|its|blend|of|frankness|,|civility|and|compassion|. Fun|,|flip|and|terribly|hip|bit|of|cinematic|entertainment|. Montias|...|pumps|a|lot|of|energy|into|his|nicely|nuanced|narrative|and|surrounds|himself|with|a|cast|of|quirky|--|but|not|stereotyped|--|street|characters|. Falls|neatly|into|the|category|of|Good|Stupid|Fun|. The|film|'s|performances|are|thrilling|. Even|in|its|most|tedious|scenes|,|Russian|Ark|is|mesmerizing|. The|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|. Reggio|'s|continual|visual|barrage|is|absorbing|as|well|as|thought-provoking|. Unfortunately|,|it|appears|that|(|Jackie|)|Chan|'s|US|influence|is|starting|to|show|in|his|Hong|Kong|films|. It|all|adds|up|to|good|fun|. A|big|,|gorgeous|,|sprawling|swashbuckler|that|delivers|its|diversions|in|grand|,|uncomplicated|fashion|. The|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|. A|stunning|and|overwhelmingly|cogent|case|for|Kissinger|as|a|calculating|war|criminal|. Sade|is|an|engaging|look|at|the|controversial|eponymous|and|fiercely|atheistic|hero|. a|quiet|,|pure|,|elliptical|film Kinnear|does|n't|aim|for|our|sympathy|,|but|rather|delivers|a|performance|of|striking|skill|and|depth|. The|subtle|strength|of|``|Elling|''|is|that|it|never|loses|touch|with|the|reality|of|the|grim|situation|. A|study|in|shades|of|gray|,|offering|itself|up|in|subtle|plot|maneuvers|... The|format|gets|used|best|...|to|capture|the|dizzying|heights|achieved|by|motocross|and|BMX|riders|,|whose|balletic|hotdogging|occasionally|ends|in|bone-crushing|screwups|. Has|a|lot|of|the|virtues|of|Eastwood|at|his|best|. Chilling|but|uncommercial|look|into|the|mind|of|Jeffrey|Dahmer|,|serial|killer|. Though|it|'s|become|almost|redundant|to|say|so|,|major|kudos|go|to|Leigh|for|actually|casting|people|who|look|working-class|. It|deserves|to|be|seen|by|anyone|with|even|a|passing|interest|in|the|events|shaping|the|world|beyond|their|own|horizons|. A|movie|that|reminds|us|of|just|how|exciting|and|satisfying|the|fantasy|cinema|can|be|when|it|'s|approached|with|imagination|and|flair|. Thanks|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|. Nine|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|. It|'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|. Will|amuse|and|provoke|adventurous|adults|in|specialty|venues|. You|do|n't|have|to|know|about|music|to|appreciate|the|film|'s|easygoing|blend|of|comedy|and|romance|. A|film|about|a|young|man|finding|God|that|is|accessible|and|touching|to|the|marrow|. For|the|first|time|in|years|,|De|Niro|digs|deep|emotionally|,|perhaps|because|he|'s|been|stirred|by|the|powerful|work|of|his|co-stars|. The|film|'s|snags|and|stumblings|are|more|than|compensated|for|by|its|wryly|subversive|tone|. Inside|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|. The|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|. An|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|. Having|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|. A|subtle|and|well-crafted|(|for|the|most|part|)|chiller|. Warm|Water|Under|a|Red|Bridge|is|a|quirky|and|poignant|Japanese|film|that|explores|the|fascinating|connections|between|women|,|water|,|nature|,|and|sexuality|. Although|laced|with|humor|and|a|few|fanciful|touches|,|the|film|is|a|refreshingly|serious|look|at|young|women|. The|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|. A|delectable|and|intriguing|thriller|filled|with|surprises|,|Read|My|Lips|is|an|original|. This|is|a|story|of|two|misfits|who|do|n't|stand|a|chance|alone|,|but|together|they|are|magnificent|. Highbrow|self-appointed|guardians|of|culture|need|not|apply|,|but|those|who|loved|Cool|as|Ice|have|at|last|found|a|worthy|follow-up|. One|of|creepiest|,|scariest|movies|to|come|along|in|a|long|,|long|time|,|easily|rivaling|Blair|Witch|or|The|Others|. Maud|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|. Pacino|is|brilliant|as|the|sleep-deprived|Dormer|,|his|increasing|weariness|as|much|existential|as|it|is|physical|. Rare|Birds|has|more|than|enough|charm|to|make|it|memorable|. Manages|to|be|sweet|and|wickedly|satisfying|at|the|same|time|. This|Nickleby|thing|might|have|more|homosexual|undertones|than|an|Eddie|Murphy|film|. And|just|when|you|think|it|ca|n't|get|any|more|gay|,|in|pops|Nathan|Lane|. No|sophomore|slump|for|director|Sam|Mendes|,|who|segues|from|Oscar|winner|to|Oscar-winning|potential|with|a|smooth|sleight|of|hand|. The|movie|is|n't|just|hilarious|:|It|'s|witty|and|inventive|,|too|,|and|in|hindsight|,|it|is|n't|even|all|that|dumb|. Old-form|moviemaking|at|its|best|. Ahhhh|...|revenge|is|sweet|! Yakusho|and|Shimizu|...|create|engaging|characterizations|in|Imamura|'s|lively|and|enjoyable|cultural|mix|. You|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|. Ruzowitzky|has|taken|this|mothball-y|stuff|and|made|a|rather|sturdy|,|old-fashioned|entertainment|out|of|it|. In|spite|of|Good|Housekeeping|'s|unsavory|characters|and|WWF|mentality|,|this|white|trash|War|of|the|Roses|is|a|surprisingly|engaging|film|. Collateral|Damage|finally|delivers|the|goods|for|Schwarzenegger|fans|. There|has|always|been|something|likable|about|the|Marquis|de|Sade|. As|a|first-time|director|,|Paxton|has|tapped|something|in|himself|as|an|actor|that|provides|Frailty|with|its|dark|soul|. For|the|most|part|,|director|Anne-Sophie|Birot|'s|first|feature|is|a|sensitive|,|extraordinarily|well-acted|drama|. By|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|. This|riveting|World|War|II|moral|suspense|story|deals|with|the|shadow|side|of|American|culture|:|racial|prejudice|in|its|ugly|and|diverse|forms|. A|tender|,|heartfelt|family|drama|. A|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|. For|the|most|part|,|it|'s|a|work|of|incendiary|genius|,|steering|clear|of|knee-jerk|reactions|and|quick|solutions|. It|has|the|charm|of|the|original|American|road|movies|,|feasting|on|the|gorgeous|,|ramshackle|landscape|of|the|filmmaker|'s|motherland|. (|Chaiken|'s|)|talent|lies|in|an|evocative|,|accurate|observation|of|a|distinctive|milieu|and|in|the|lively|,|convincing|dialogue|she|creates|for|her|characters|. In|all|,|this|is|a|watchable|movie|that|'s|not|quite|the|memorable|experience|it|might|have|been|. Huppert|'s|superbly|controlled|display|of|murderous|vulnerability|ensures|that|malice|has|a|very|human|face|. My|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|. One|of|the|more|intelligent|children|'s|movies|to|hit|theaters|this|year|. Remember|the|kind|of|movie|we|were|hoping|``|Ecks|vs.|Sever|''|or|``|xXx|''|was|going|to|be|? This|is|it|. Not|for|the|prurient|or|squeamish|,|it|'s|a|daring|if|overlong|examination|of|an|idolized|culture|,|self-loathing|and|sexual|politics|. A|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|. The|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|. Travels|a|fascinating|arc|from|hope|and|euphoria|to|reality|and|disillusionment|. There|'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|. For|anyone|unfamiliar|with|pentacostal|practices|in|general|and|theatrical|phenomenon|of|Hell|Houses|in|particular|,|it|'s|an|eye-opener|. It|seems|like|I|have|been|waiting|my|whole|life|for|this|movie|and|now|I|ca|n't|wait|for|the|sequel|. It|'s|a|bit|disappointing|that|it|only|manages|to|be|decent|instead|of|dead|brilliant|. An|operatic|,|sprawling|picture|that|'s|entertainingly|acted|,|magnificently|shot|and|gripping|enough|to|sustain|most|of|its|170-minute|length|. The|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|. It|inspires|a|continuing|and|deeply|satisfying|awareness|of|the|best|movies|as|monumental|`|picture|shows|.|' Awesome|creatures|,|breathtaking|scenery|,|and|epic|battle|scenes|add|up|to|another|`|spectacular|spectacle|.|' By|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|. It|'s|unnerving|to|see|Recoing|'s|bizzarre|reaction|to|his|unemployment|. Good|film|,|but|very|glum|. Much|as|we|might|be|interested|in|gratuitous|sexualization|,|Haneke|has|a|different|objective|in|mind|--|namely|the|implications|of|our|craving|for|fake|stimulation|. Dazzling|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|... It|has|charm|to|spare|,|and|unlike|many|romantic|comedies|,|it|does|not|alienate|either|gender|in|the|audience|. Although|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|. It|is|great|summer|fun|to|watch|Arnold|and|his|buddy|Gerald|bounce|off|a|quirky|cast|of|characters|. Bleakly|funny|,|its|characters|all|the|more|touching|for|refusing|to|pity|or|memorialize|themselves|. It|will|not|appeal|to|the|impatient|,|but|those|who|like|long|books|and|movies|will|admire|the|way|it|accumulates|power|and|depth|. This|flick|is|about|as|cool|and|crowd-pleasing|as|a|documentary|can|get|. ``|The|Ring|''|is|pretty|much|an|English-language|copy|of|the|film|that|inspired|it|,|and|it|carries|the|same|strengths|and|flaws|. The|Wild|Thornberrys|Movie|is|a|jolly|surprise|. Griffiths|proves|she|'s|that|rare|luminary|who|continually|raises|the|standard|of|her|profession|. Prancing|his|way|through|the|tailor-made|part|of|a|male|hooker|approaching|the|end|of|his|vitality|,|Jagger|obviously|relishes|every|self-mocking|moment|. Offers|much|to|enjoy|...|and|a|lot|to|mull|over|in|terms|of|love|,|loyalty|and|the|nature|of|staying|friends|. An|important|movie|,|a|reminder|of|the|power|of|film|to|move|us|and|to|make|us|examine|our|values|. Is|this|love|or|is|it|masochism|? Binoche|makes|it|interesting|trying|to|find|out|. The|mesmerizing|performances|of|the|leads|keep|the|film|grounded|and|keep|the|audience|riveted|. Worth|watching|for|Dong|Jie|'s|performance|--|and|for|the|way|it|documents|a|culture|in|the|throes|of|rapid|change|. Two|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|. It|'s|one|heck|of|a|character|study|--|not|of|Hearst|or|Davies|but|of|the|unique|relationship|between|them|. Candid|Camera|on|methamphetamines|. A|subject|like|this|should|inspire|reaction|in|its|audience|;|The|Pianist|does|not|. Equilibrium|is|what|George|Orwell|might|have|imagined|had|today|'s|mood-altering|drug|therapy|been|envisioned|by|chemists|in|1949|. Creepy|,|authentic|and|dark|. This|disturbing|bio-pic|is|hard|to|forget|. Martin|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|. A|twisty|,|moody|slice|of|Southern|Gothic|... It|'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|. The|weight|of|the|piece|,|the|unerring|professionalism|of|the|chilly|production|,|and|the|fascination|embedded|in|the|lurid|topic|prove|recommendation|enough|. An|absurdist|comedy|about|alienation|,|separation|and|loss|. `|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|. This|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|. ...|with|``|The|Bourne|Identity|''|we|return|to|the|more|traditional|action|genre|. Beneath|Clouds|is|a|succinct|low-budget|film|whose|compelling|characters|and|intelligent|script|are|exactly|what|was|missing|from|Rabbit-Proof|Fence|. The|film|is|a|contrivance|,|as|artificial|as|the|video|games|Japanese|teens|play|in|a|nightclub|sequence|,|but|it|'s|an|enjoyable|one|. Holm|...|embodies|the|character|with|an|effortlessly|regal|charisma|. It|is|amusing|,|and|that|'s|all|it|needs|to|be|. Among|the|year|'s|most|intriguing|explorations|of|alientation|. A|full|world|has|been|presented|onscreen|,|not|some|series|of|carefully|structured|plot|points|building|to|a|pat|resolution|. Seldom|has|a|movie|so|closely|matched|the|spirit|of|a|man|and|his|work|. Audrey|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|. The|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|. Even|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|. The|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|wo|n't|go|away|. It|'s|made|with|deftly|unsettling|genre|flair|. It|just|may|inspire|a|few|younger|moviegoers|to|read|Stevenson|'s|book|,|which|is|a|treasure|in|and|of|itself|. Funny|but|perilously|slight|. Overall|very|good|for|what|it|'s|trying|to|do|. Forgettable|horror|--|more|gory|than|psychological|--|with|a|highly|satisfying|quotient|of|Friday-night|excitement|and|Milla|power|. Ramsay|,|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|. It|may|seem|long|at|110|minutes|if|you|'re|not|a|fan|,|because|it|includes|segments|of|12|songs|at|a|reunion|concert|. A|lean|,|deftly|shot|,|well-acted|,|weirdly|retro|thriller|that|recalls|a|raft|of|'60s|and|'70s|European-set|spy|pictures|. It|proves|quite|compelling|as|an|intense|,|brooding|character|study|. The|Son|'s|Room|is|a|triumph|of|gentility|that|earns|its|moments|of|pathos|. Morton|uses|her|face|and|her|body|language|to|bring|us|Morvern|'s|soul|,|even|though|the|character|is|almost|completely|deadpan|. The|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 A|superbly|acted|and|funny\/gritty|fable|of|the|humanizing|of|one|woman|at|the|hands|of|the|unseen|forces|of|fate|. One|of|the|smartest|takes|on|singles|culture|I|'ve|seen|in|a|long|time|. There|is|a|fabric|of|complex|ideas|here|,|and|feelings|that|profoundly|deepen|them|. CQ|'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|. The|emotions|are|raw|and|will|strike|a|nerve|with|anyone|who|'s|ever|had|family|trauma|. Holy|mad|maniac|in|a|mask|,|Splat-Man|! Good|old-fashioned|slash-and-hack|is|back|! As|unseemly|as|its|title|suggests|. The|French|are|rather|good|at|this|kind|of|thing|,|unlike|the|Americans|,|who|have|a|passion|for|Musketeers|,|only|to|spoof|them|. The|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|. It|'s|an|offbeat|treat|that|pokes|fun|at|the|democratic|exercise|while|also|examining|its|significance|for|those|who|take|part|. Allows|us|to|hope|that|Nolan|is|poised|to|embark|a|major|career|as|a|commercial|yet|inventive|filmmaker|. Maneuvers|skillfully|through|the|plot|'s|hot|brine|--|until|it|'s|undone|by|the|sogginess|of|its|contemporary|characters|,|and|actors|. It|has|the|ability|to|offend|and|put|off|everyone|,|but|it|holds|you|with|its|outrageousness|. Anchored|by|Friel|and|Williams|'s|exceptional|performances|,|the|film|'s|power|lies|in|its|complexity|. Nothing|is|black|and|white|. It|'s|a|charming|and|often|affecting|journey|. No|screen|fantasy-adventure|in|recent|memory|has|the|showmanship|of|Clones|'|last|45|minutes|. A|poignant|and|compelling|story|about|relationships|,|Food|of|Love|takes|us|on|a|bumpy|but|satisfying|journey|of|the|heart|. The|Chateau|cleverly|probes|the|cross-cultural|differences|between|Gauls|and|Yanks|. Not|since|Tom|Cruise|in|Risky|Business|has|an|actor|made|such|a|strong|impression|in|his|underwear|. Aside|from|minor|tinkering|,|this|is|the|same|movie|you|probably|loved|in|1994|,|except|that|it|looks|even|better|. Uses|high|comedy|to|evoke|surprising|poignance|. It|confirms|Fincher|'s|status|as|a|film|maker|who|artfully|bends|technical|know-how|to|the|service|of|psychological|insight|. Vera|'s|three|actors|--|Mollà|,|Gil|and|Bardem|--|excel|in|insightful|,|empathetic|performances|. A|marvel|like|none|you|'ve|seen|. With|tightly|organized|efficiency|,|numerous|flashbacks|and|a|constant|edge|of|tension|,|Miller|'s|film|is|one|of|2002|'s|involvingly|adult|surprises|. Mr.|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|. Writer\/director|Mark|Romanek|spotlights|the|underlying|caste|system|in|America|. It|'s|a|scathing|portrayal|. This|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|. Moody|,|heartbreaking|,|and|filmed|in|a|natural|,|unforced|style|that|makes|its|characters|seem|entirely|convincing|even|when|its|script|is|not|. Not|a|film|to|rival|To|Live|,|but|a|fine|little|amuse-bouche|to|keep|your|appetite|whetted|. True|tale|of|courage|--|and|complicity|--|at|Auschwitz|is|a|harrowing|drama|that|tries|to|tell|of|the|unspeakable|. Gives|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|. MacDowell|,|whose|wifty|Southern|charm|has|anchored|lighter|affairs|...|brings|an|absolutely|riveting|conviction|to|her|role|. What|Time|Is|It|There|? is|not|easy|. It|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|. if|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|. Although|the|level|of|the|comedy|declines|as|the|movie|proceeds|,|there|'s|no|denying|the|fun|of|watching|De|Niro|and|Crystal|having|fun|. Claude|Chabrol|has|here|a|thriller|without|thrills|,|but|that|'s|okay|. For|movie|lovers|as|well|as|opera|lovers|,|Tosca|is|a|real|treat|. Unflinchingly|bleak|and|desperate Moretti|'s|compelling|anatomy|of|grief|and|the|difficult|process|of|adapting|to|loss|. Challenging|,|intermittently|engrossing|and|unflaggingly|creative|. But|it|'s|too|long|and|too|convoluted|and|it|ends|in|a|muddle|. The|vivid|lead|performances|sustain|interest|and|empathy|,|but|the|journey|is|far|more|interesting|than|the|final|destination|. A|painfully|funny|ode|to|bad|behavior|. `|Easily|my|choice|for|one|of|the|year|'s|best|films|.|' Charles|'|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|. That|dogged|good|will|of|the|parents|and|`|vain|'|Jia|'s|defoliation|of|ego|,|make|the|film|touching|despite|some|doldrums|. The|movie|is|for|fans|who|ca|n't|stop|loving|anime|,|and|the|fanatical|excess|built|into|it|. The|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|. A|densely|constructed|,|highly|referential|film|,|and|an|audacious|return|to|form|that|can|comfortably|sit|among|Jean-Luc|Godard|'s|finest|work|. Michael|Gerbosi|'s|script|is|economically|packed|with|telling|scenes|. A|strangely|compelling|and|brilliantly|acted|psychological|drama|. Candid|and|comfortable|;|a|film|that|deftly|balances|action|and|reflection|as|it|lets|you|grasp|and|feel|the|passion|others|have|for|their|work|. Open-minded|kids|--|kids|who|read|,|kids|who|dream|--|will|be|comforted|by|the|way|it|deals|with|big|issues|like|death|and|destiny|. Bennett|'s|naturalistic|performance|speaks|volumes|more|truth|than|any|`|reality|'|show|,|and|anybody|contemplating|their|own|drastic|life|changes|should|watch|Some|Body|first|. ...|a|good|,|if|not|entirely|fresh|,|look|at|war|. The|film|is|powerful|,|accessible|and|funny|. You|wo|n't|miss|its|messages|,|but|you|'ll|be|entertained|as|well|. ``|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|. If|you|dig|on|David|Mamet|'s|mind|tricks|...|rent|this|movie|and|enjoy|! The|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|. It|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|. A|gorgeous|,|high-spirited|musical|from|India|that|exquisitely|blends|music|,|dance|,|song|,|and|high|drama|. It|'s|hard|to|imagine|Alan|Arkin|being|better|than|he|is|in|this|performance|. For|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|. Despite|the|2-D|animation|,|The|Wild|Thornberrys|Movie|makes|for|a|surprisingly|cinematic|experience|. ...|a|fun|little|timewaster|,|helped|especially|by|the|cool|presence|of|Jean|Reno|. (|Majidi|)|makes|us|think|twice|about|immigrants|we|see|around|us|every|day|. Though|only|60|minutes|long|,|the|film|is|packed|with|information|and|impressions|. I|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|. Immersing|us|in|the|endlessly|inventive|,|fiercely|competitive|world|of|hip-hop|DJs|,|the|project|is|sensational|and|revelatory|,|even|if|scratching|makes|you|itch|. Further|proof|that|the|epicenter|of|cool|,|beautiful|,|thought-provoking|foreign|cinema|is|smack-dab|in|the|middle|of|Dubya|'s|Axis|of|Evil|. There|'s|really|only|one|good|idea|in|this|movie|,|but|the|director|runs|with|it|and|presents|it|with|an|unforgettable|visual|panache|. A|simple|,|but|gritty|and|well-acted|ensemble|drama|that|encompasses|a|potent|metaphor|for|a|country|still|dealing|with|its|fascist|past|. Lovely|and|poignant|. Puts|a|human|face|on|a|land|most|Westerners|are|unfamiliar|with|. I|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|. Displaying|about|equal|amounts|of|naiveté|,|passion|and|talent|,|Beneath|Clouds|establishes|Sen|as|a|filmmaker|of|considerable|potential|. The|vitality|of|the|actors|keeps|the|intensity|of|the|film|high|,|even|as|the|strafings|blend|together|. Not|since|Japanese|filmmaker|Akira|Kurosawa|'s|Ran|have|the|savagery|of|combat|and|the|specter|of|death|been|visualized|with|such|operatic|grandeur|. We|learn|a|lot|about|dying|coral|and|see|a|lot|of|life|on|the|reef|. If|the|first|Men|in|Black|was|money|,|the|second|is|small|change|. But|it|still|jingles|in|the|pocket|. It|'s|fun|lite|. Passable|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|. I|just|loved|every|minute|of|this|film|. This|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|. Just|as|moving|,|uplifting|and|funny|as|ever|. My|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|. It|will|grip|even|viewers|who|are|n't|interested|in|rap|,|as|it|cuts|to|the|heart|of|American|society|in|an|unnerving|way|. A|muckraking|job|,|the|cinematic|equivalent|of|a|legal|indictment|,|and|a|fairly|effective|one|at|that|. A|tender|,|witty|,|captivating|film|about|friendship|,|love|,|memory|,|trust|and|loyalty|. Belongs|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|. An|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 A|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|. While|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|. Pumpkin|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|. If|you|'re|hard|up|for|raunchy|college|humor|,|this|is|your|ticket|right|here|. Few|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|. Corny|,|schmaltzy|and|predictable|,|but|still|manages|to|be|kind|of|heartwarming|,|nonetheless|. It|'s|the|perfect|kind|of|film|to|see|when|you|do|n't|want|to|use|your|brain|. At|all|. While|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|. Feature|debuter|D.J.|Caruso|directs|a|crack|ensemble|cast|,|bringing|screenwriter|Tony|Gayton|'s|narcotics|noir|to|life|. Every|dance|becomes|about|seduction|,|where|backstabbing|and|betrayals|are|celebrated|,|and|sex|is|currency|. Harris|commands|the|screen|,|using|his|frailty|to|suggest|the|ravages|of|a|life|of|corruption|and|ruthlessness|. Stephen|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|. Director|of|photography|Benoit|Delhomme|shot|the|movie|in|delicious|colors|,|and|the|costumes|and|sets|are|grand|. The|movie|'s|relatively|simple|plot|and|uncomplicated|morality|play|well|with|the|affable|cast|. The|film|is|quiet|,|threatening|and|unforgettable|. This|illuminating|documentary|transcends|our|preconceived|vision|of|the|Holy|Land|and|its|inhabitants|,|revealing|the|human|complexities|beneath|. deliriously|funny|,|fast|and|loose|,|accessible|to|the|uninitiated|,|and|full|of|surprises Trademark|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|. One|from|the|heart|. More|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|. An|entertaining|,|colorful|,|action-filled|crime|story|with|an|intimate|heart|. While|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|. The|most|compelling|Wiseman|epic|of|recent|years|. The|socio-histo-political|treatise|is|told|in|earnest|strides|...|(|and|)|personal|illusion|is|deconstructed|with|poignancy|. It|'s|great|escapist|fun|that|recreates|a|place|and|time|that|will|never|happen|again|. Good|car|chases|,|great|fight|scenes|,|and|a|distinctive|blend|of|European|,|American|and|Asian|influences|. Liotta|put|on|30|pounds|for|the|role|,|and|has|completely|transformed|himself|from|his|smooth|,|Goodfellas|image|. A|woman|'s|pic|directed|with|resonance|by|Ilya|Chaiken|. (|Grant|'s|)|bumbling|magic|takes|over|the|film|,|and|it|turns|out|to|be|another|winning|star|vehicle|. ...|Brian|De|Palma|is|utterly|mad|:|cinema|mad|,|set-piece|mad|,|style|mad|. It|'s|a|beautiful|madness|. Generally|provides|its|target|audience|of|youngsters|enough|stimulating|eye|and|ear|candy|to|make|its|moral|medicine|go|down|. There|are|some|wonderfully|fresh|moments|that|smooth|the|moral|stiffness|with|human|kindness|and|hopefulness|. A|grimly|competent|and|stolid|and|earnest|military|courtroom|drama|. Escaping|the|studio|,|Piccoli|is|warmly|affecting|and|so|is|this|adroitly|minimalist|movie|. Very|psychoanalytical|--|provocatively|so|--|and|also|refreshingly|literary|. A|gorgeous|,|witty|,|seductive|movie|. The|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|. On|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|. With|Rabbit-Proof|Fence|,|Noyce|has|tailored|an|epic|tale|into|a|lean|,|economical|movie|. (|A|)|n|utterly|charming|and|hilarious|film|that|reminded|me|of|the|best|of|the|Disney|comedies|from|the|60s|. Preaches|to|two|completely|different|choirs|at|the|same|time|,|which|is|a|pretty|amazing|accomplishment|. Thanks|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|. Birthday|Girl|is|an|amusing|joy|ride|,|with|some|surprisingly|violent|moments|. More|romantic|,|more|emotional|and|ultimately|more|satisfying|than|the|teary-eyed|original|. An|appealingly|juvenile|trifle|that|delivers|its|share|of|laughs|and|smiles|. Writer-director|'s|Mehta|'s|effort|has|tons|of|charm|and|the|whimsy|is|in|the|mixture|,|the|intoxicating|masala|,|of|cultures|and|film|genres|. The|draw|(|for|``|Big|Bad|Love|''|)|is|a|solid|performance|by|Arliss|Howard|. It|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|. The|terrific|and|bewilderingly|underrated|Campbell|Scott|gives|a|star|performance|that|is|nothing|short|of|mesmerizing|. Cool|? This|movie|is|a|snow|emergency|. Like|Mike|is|n't|interested|in|recycling|old|cliches|. It|wants|to|tweak|them|with|a|taste|of|tangy|new|humor|. Smith|is|careful|not|to|make|fun|of|these|curious|owners|of|architectural|oddities|. Instead|,|he|shows|them|the|respect|they|are|due|. A|mess|when|it|comes|to|the|characters|and|writing|...|but|works|its|way|underneath|the|skin|like|few|movies|have|in|recent|memory|. Drops|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|. Zhang|...|has|done|an|amazing|job|of|getting|realistic|performances|from|his|mainly|nonprofessional|cast|. A|solid|examination|of|the|male|midlife|crisis|. If|you|'re|in|the|mood|for|a|Bollywood|film|,|here|'s|one|for|you|. As|the|two|leads|,|Lathan|and|Diggs|are|charming|and|have|chemistry|both|as|friends|and|lovers|. A|beguiling|,|slow-moving|parable|about|the|collision|of|past|and|present|on|a|remote|seacoast|in|Iran|. My|Big|Fat|Greek|Wedding|uses|stereotypes|in|a|delightful|blend|of|sweet|romance|and|lovingly|dished|out|humor|. Kept|aloft|largely|by|a|comically|adept|ensemble|. The|sort|of|film|that|makes|me|miss|Hitchcock|,|but|also|feel|optimistic|that|there|'s|hope|for|popular|cinema|yet|. First-time|writer-director|Serry|shows|a|remarkable|gift|for|storytelling|with|this|moving|,|effective|little|film|. It|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|. Atom|Egoyan|has|conjured|up|a|multilayered|work|that|tackles|any|number|of|fascinating|issues essentially|an|exceptionally|well-written|,|well-edited|,|well-directed|,|well-acted|,|bald|rip-off|of|Aliens|. `|De|Niro|...|is|a|veritable|source|of|sincere|passion|that|this|Hollywood|contrivance|orbits|around|.|' The|whole|is|quite|entertaining|,|but|despite|its|virtues|,|there|is|an|unsettled|feeling|to|the|film|. While|its|careful|pace|and|seemingly|opaque|story|may|not|satisfy|every|moviegoer|'s|appetite|,|the|film|'s|final|scene|is|soaringly|,|transparently|moving|. Hardly|a|masterpiece|,|but|it|introduces|viewers|to|a|good|charitable|enterprise|and|some|interesting|real|people|. Based|on|a|devilishly|witty|script|by|Heather|McGowan|and|Niels|Mueller|,|the|film|gets|great|laughs|,|but|never|at|the|expense|of|its|characters It|'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|. If|you|'ve|ever|wondered|what|an|ending|without|the|input|of|studio|executives|or|test|audiences|would|look|like|,|here|it|is|. Exciting|and|direct|,|with|ghost|imagery|that|shows|just|enough|to|keep|us|on|our|toes|. Whether|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|. What|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|. If|you|enjoy|more|thoughtful|comedies|with|interesting|conflicted|characters|;|this|one|is|for|you|. The|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|. This|film|seems|thirsty|for|reflection|,|itself|taking|on|adolescent|qualities|. Another|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|. A|breezy|romantic|comedy|that|has|the|punch|of|a|good|sitcom|,|while|offering|exceptionally|well-detailed|characters|. A|romantic|comedy|enriched|by|a|sharp|eye|for|manners|and|mores|. Viewers|of|``|The|Ring|''|are|more|likely|to|remember|the|haunting|images|than|the|plot|holes|. A|delightful|coming-of-age|story|. One|of|those|energetic|surprises|,|an|original|that|pleases|almost|everyone|who|sees|it|. An|exquisitely|crafted|and|acted|tale|. A|taut|psychological|thriller|that|does|n't|waste|a|moment|of|its|two-hour|running|time|. Jones|...|does|offer|a|brutal|form|of|charisma|. Despite|its|title|,|Punch-Drunk|Love|is|never|heavy-handed|. The|jabs|it|employs|are|short|,|carefully|placed|and|dead-center|. There|'s|a|wickedly|subversive|bent|to|the|best|parts|of|Birthday|Girl|. Likely|to|expertly|drum|up|repressed|teenage|memories|in|any|viewer|. Blanchett|'s|performance|confirms|her|power|once|again|. ...|a|magnificent|drama|well|worth|tracking|down|. A|good|piece|of|work|more|often|than|not|. The|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|. What|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|. Smart|,|provocative|and|blisteringly|funny|. Nothing|is|sacred|in|this|gut-buster|. The|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|. Filmmakers|who|can|deftly|change|moods|are|treasures|and|even|marvels|. So|,|too|,|is|this|comedy|about|mild|culture|clashing|in|today|'s|New|Delhi|. If|Steven|Soderbergh|'s|`|Solaris|'|is|a|failure|it|is|a|glorious|failure|. ``|Mostly|Martha|''|is|a|bright|,|light|modern|day|family|parable|that|wears|its|heart|on|its|sleeve|for|all|to|see|. It|'s|a|scattershot|affair|,|but|when|it|hits|its|mark|it|'s|brilliant|. A|pleasant|enough|romance|with|intellectual|underpinnings|,|the|kind|of|movie|that|entertains|even|as|it|turns|maddeningly|predictable|. Featuring|a|dangerously|seductive|performance|from|the|great|Daniel|Auteuil|,|``|Sade|''|covers|the|same|period|as|Kaufmann|'s|``|Quills|''|with|more|unsettlingly|realistic|results|. A|spellbinding|African|film|about|the|modern|condition|of|rootlessness|,|a|state|experienced|by|millions|around|the|globe|. It|'s|a|work|by|an|artist|so|in|control|of|both|his|medium|and|his|message|that|he|can|improvise|like|a|jazzman|. A|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|. A|very|well-made|,|funny|and|entertaining|picture|. A|giggle-inducing|comedy|with|snappy|dialogue|and|winning|performances|by|an|unlikely|team|of|Oscar-winners|:|Susan|Sarandon|and|Goldie|Hawn|. Its|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|. Oscar|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|. The|movie|does|a|good|job|of|laying|out|some|of|the|major|issues|that|we|encounter|as|we|journey|through|life|. Brilliantly|explores|the|conflict|between|following|one|'s|heart|and|following|the|demands|of|tradition|. This|remake|gets|all|there|is|to|get|out|of|a|peculiar|premise|with|promise|:|Al|Pacino|loathing|Robin|Williams|. The|next|generation|of|mob|movie|. Part|low|rent|Godfather|. Part|Three|Stooges|. Lan|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|. A|thinly|veiled|look|at|different|aspects|of|Chinese|life|clashing|with|each|other|. Light|years|\/|several|warp|speeds|\/|levels|and|levels|of|dilithium|crystals|better|than|the|pitiful|Insurrection|. Which|is|n't|to|say|that|it|'s|the|equal|of|some|of|its|predecessors|. If|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|. The|Lion|King|was|a|roaring|success|when|it|was|released|eight|years|ago|,|but|on|Imax|it|seems|better|,|not|just|bigger|. A|gripping|movie|,|played|with|performances|that|are|all|understated|and|touching|. The|piece|plays|as|well|as|it|does|thanks|in|large|measure|to|Anspaugh|'s|three|lead|actresses|. The|inspirational|screenplay|by|Mike|Rich|covers|a|lot|of|ground|,|perhaps|too|much|,|but|ties|things|together|,|neatly|,|by|the|end|. Not|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|. Director|Andrew|Niccol|...|demonstrates|a|wry|understanding|of|the|quirks|of|fame|. His|healthy|sense|of|satire|is|light|and|fun|... About|a|manga-like|heroine|who|fights|back|at|her|abusers|,|it|'s|energetic|and|satisfying|if|not|deep|and|psychological|. This|is|human|comedy|at|its|most|amusing|,|interesting|and|confirming|. An|artful|,|intelligent|film|that|stays|within|the|confines|of|a|well-established|genre|. Majidi|is|an|unconventional|storyteller|,|capable|of|finding|beauty|in|the|most|depressing|places|. Richard|Gere|and|Diane|Lane|put|in|fine|performances|as|does|French|actor|Oliver|Martinez|. The|minor|figures|surrounding|(|Bobby|)|...|form|a|gritty|urban|mosaic|. This|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|. It|'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|. There|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|. All-in-all|,|the|film|is|an|enjoyable|and|frankly|told|tale|of|a|people|who|live|among|us|,|but|not|necessarily|with|us|. An|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|.|'' A|movie|with|a|real|anarchic|flair|. A|welcome|relief|from|baseball|movies|that|try|too|hard|to|be|mythic|,|this|one|is|a|sweet|and|modest|and|ultimately|winning|story|. A|crisp|psychological|drama|(|and|)|a|fascinating|little|thriller|that|would|have|been|perfect|for|an|old|``|Twilight|Zone|''|episode|. It|has|more|than|a|few|moments|that|are|insightful|enough|to|be|fondly|remembered|in|the|endlessly|challenging|maze|of|moviegoing|. Opening|with|some|contrived|banter|,|cliches|and|some|loose|ends|,|the|screenplay|only|comes|into|its|own|in|the|second|half|. An|uncluttered|,|resonant|gem|that|relays|its|universal|points|without|lectures|or|confrontations|.|' (|The|Cockettes|)|provides|a|window|into|a|subculture|hell-bent|on|expressing|itself|in|every|way|imaginable|.|' A|smart|,|steamy|mix|of|road|movie|,|coming-of-age|story|and|political|satire|. The|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|. A|terrific|B|movie|--|in|fact|,|the|best|in|recent|memory|. ``|Birthday|Girl|''|is|an|actor|'s|movie|first|and|foremost|. I|walked|away|from|this|new|version|of|E.T.|just|as|I|hoped|I|would|--|with|moist|eyes|. For|devotees|of|French|cinema|,|Safe|Conduct|is|so|rich|with|period|minutiae|it|'s|like|dying|and|going|to|celluloid|heaven|. What|'s|really|so|appealing|about|the|characters|is|their|resemblance|to|everyday|children|. Shamelessly|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 An|absurdist|spider|web|. If|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|. This|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|. Some|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|. Allen|'s|funniest|and|most|likeable|movie|in|years|. It|'s|a|glorious|spectacle|like|those|D.W.|Griffith|made|in|the|early|days|of|silent|film|. This|comic|gem|is|as|delightful|as|it|is|derivative|. More|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|. The|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|. With|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|. The|production|has|been|made|with|an|enormous|amount|of|affection|,|so|we|believe|these|characters|love|each|other|. Certainly|the|performances|are|worthwhile|. Winds|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|. Watching|these|eccentrics|is|both|inspiring|and|pure|joy|. Steven|Spielberg|brings|us|another|masterpiece Finally|,|the|French-produced|``|Read|My|Lips|''|is|a|movie|that|understands|characters|must|come|first|. Ms.|Seigner|and|Mr.|Serrault|bring|fresh|,|unforced|naturalism|to|their|characters|. Allen|shows|he|can|outgag|any|of|those|young|whippersnappers|making|moving|pictures|today|. A|good|film|with|a|solid|pedigree|both|in|front|of|and|,|more|specifically|,|behind|the|camera|. By|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|. I|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|! A|literary|detective|story|is|still|a|detective|story|and|aficionados|of|the|whodunit|wo|n't|be|disappointed|. High|Crimes|steals|so|freely|from|other|movies|and|combines|enough|disparate|types|of|films|that|it|ca|n't|help|but|engage|an|audience|. If|you|'re|a|fan|of|the|series|you|'ll|love|it|and|probably|want|to|see|it|twice|. I|will|be|. It|celebrates|the|group|'s|playful|spark|of|nonconformity|,|glancing|vividly|back|at|what|Hibiscus|grandly|called|his|`|angels|of|light|.|' The|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|. Laced|with|liberal|doses|of|dark|humor|,|gorgeous|exterior|photography|,|and|a|stable-full|of|solid|performances|,|No|Such|Thing|is|a|fascinating|little|tale|. Huppert|'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|. Nair|does|n't|treat|the|issues|lightly|. She|allows|each|character|to|confront|their|problems|openly|and|honestly|. One|of|the|best|silly|horror|movies|of|recent|memory|,|with|some|real|shocks|in|store|for|unwary|viewers|. The|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|. Has|a|certain|ghoulish|fascination|,|and|generates|a|fair|amount|of|B-movie|excitement|. Familiar|but|utterly|delightful|. A|fascinating|,|dark|thriller|that|keeps|you|hooked|on|the|delicious|pulpiness|of|its|lurid|fiction|. The|film|aims|to|be|funny|,|uplifting|and|moving|,|sometimes|all|at|once|. The|extent|to|which|it|succeeds|is|impressive|. The|film|brilliantly|shines|on|all|the|characters|,|as|the|direction|is|intelligently|accomplished|. While|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|. As|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|. In|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|. Jeffrey|Tambor|'s|performance|as|the|intelligent|jazz-playing|exterminator|is|Oscar-worthy|. From|the|opening|strains|of|the|Average|White|Band|'s|``|Pick|up|the|Pieces|''|,|you|can|feel|the|love|. Stevens|'|vibrant|creative|instincts|are|the|difference|between|this|and|countless|other|flicks|about|guys|and|dolls|. that|it|'ll|probably|be|the|best|and|most|mature|comedy|of|the|2002|summer|season|speaks|more|of|the|season|than|the|picture Old|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|. Meyjes|'|provocative|film|might|be|called|an|example|of|the|haphazardness|of|evil|. Tian|emphasizes|the|isolation|of|these|characters|by|confining|color|to|Liyan|'s|backyard|. The|movie|is|pretty|funny|now|and|then|without|in|any|way|demeaning|its|subjects|. imagine|a|scenario|where|Bergman|approaches|Swedish|fatalism|using|Gary|Larson|'s|Far|Side|humor Too|damn|weird|to|pass|up|,|and|for|the|blacklight|crowd|,|way|cheaper|(|and|better|)|than|Pink|Floyd|tickets|. It|is|most|remarkable|not|because|of|its|epic|scope|,|but|because|of|the|startling|intimacy|it|achieves|despite|that|breadth|. It|'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|! The|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|. Others|,|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|. Miller|tells|this|very|compelling|tale|with|little|fuss|or|noise|,|expertly|plucking|tension|from|quiet|. Time|Out|is|existential|drama|without|any|of|the|pretension|associated|with|the|term|. It|'s|a|sweet|,|laugh-a-minute|crowd|pleaser|that|lifts|your|spirits|as|well|as|the|corners|of|your|mouth|. Writer\/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|. A|movie|that|at|its|best|does|n't|just|make|the|most|out|of|its|characters|'|flaws|but|insists|on|the|virtue|of|imperfection|. It|'s|tough|to|watch|,|but|it|'s|a|fantastic|movie|. The|best|animated|feature|to|hit|theaters|since|Beauty|and|the|Beast|11|years|ago|. What|saves|this|deeply|affecting|film|from|being|merely|a|collection|of|wrenching|cases|is|Corcuera|'s|attention|to|detail|. Pacino|is|the|best|he|'s|been|in|years|and|Keener|is|marvelous|. A|solid|,|spooky|entertainment|worthy|of|the|price|of|a|ticket|. By|turns|fanciful|,|grisly|and|engagingly|quixotic|. ...|very|funny|,|very|enjoyable|... Adaptation|is|intricately|constructed|and|in|a|strange|way|nails|all|of|Orlean|'s|themes|without|being|a|true|adaptation|of|her|book|. So|purely|enjoyable|that|you|might|not|even|notice|it|'s|a|fairly|straightforward|remake|of|Hollywood|comedies|such|as|Father|of|the|Bride|. Moonlight|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|. The|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|. Robin|Williams|has|thankfully|ditched|the|saccharine|sentimentality|of|Bicentennial|Man|in|favour|of|an|altogether|darker|side|. If|you|'re|willing|to|have|fun|with|it|,|you|wo|n't|feel|cheated|by|the|high|infidelity|of|Unfaithful|. Australia|:|Land|Beyond|Time|is|an|enjoyable|Big|Movie|primarily|because|Australia|is|a|weirdly|beautiful|place|. Hoffman|'s|performance|is|authentic|to|the|core|of|his|being|. Told|just|proficiently|enough|to|trounce|its|overly|comfortable|trappings|. An|enthralling|aesthetic|experience|,|one|that|'s|steeped|in|mystery|and|a|ravishing|,|baroque|beauty|. The|quirky|drama|touches|the|heart|and|the|funnybone|thanks|to|the|energetic|and|always|surprising|performance|by|Rachel|Griffiths|. A|captivating|coming-of-age|story|that|may|also|be|the|first|narrative|film|to|be|truly|informed|by|the|wireless|age|. What|could|have|been|a|daytime|soap|opera|is|actually|a|compelling|look|at|a|young|woman|'s|tragic|odyssey|. Duvall|is|strong|as|always|. A|no-holds-barred|cinematic|treat|. You|'d|have|to|be|a|most|hard-hearted|person|not|to|be|moved|by|this|drama|. Allen|'s|underestimated|charm|delivers|more|goodies|than|lumps|of|coal|. Measured|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|. An|exhilarating|serving|of|movie|fluff|. Maelstrom|is|strange|and|compelling|,|engrossing|and|different|,|a|moral|tale|with|a|twisted|sense|of|humor|. It|makes|you|believe|the|cast|and|crew|thoroughly|enjoyed|themselves|and|believed|in|their|small-budget|film|. Dark|and|disturbing|,|yet|compelling|to|watch|. Too|often|,|Son|of|the|Bride|becomes|an|exercise|in|trying|to|predict|when|a|preordained|``|big|moment|''|will|occur|and|not|``|if|.|'' The|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|. A|solid|piece|of|journalistic|work|that|draws|a|picture|of|a|man|for|whom|political|expedience|became|a|deadly|foreign|policy|. A|terrific|insider|look|at|the|star-making|machinery|of|tinseltown|. It|'s|a|diverting|enough|hour-and-a-half|for|the|family|audience|. A|party-hearty|teen|flick|that|scalds|like|acid|. As|giddy|and|whimsical|and|relevant|today|as|it|was|270|years|ago|. The|film|offers|an|intriguing|what-if|premise|. The|Pianist|is|the|film|Roman|Polanski|may|have|been|born|to|make|. This|version|does|justice|both|to|Stevenson|and|to|the|sci-fi|genre|. Poignant|and|delicately|complex|. Enough|may|pander|to|our|basest|desires|for|payback|,|but|unlike|many|revenge|fantasies|,|it|ultimately|delivers|. Cho|'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|. In|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|. Despite|the|film|'s|shortcomings|,|the|stories|are|quietly|moving|. Those|who|love|Cinema|Paradiso|will|find|the|new|scenes|interesting|,|but|few|will|find|the|movie|improved|. If|you|come|from|a|family|that|eats|,|meddles|,|argues|,|laughs|,|kibbitzes|and|fights|together|,|then|go|see|this|delightful|comedy|. This|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|. The|reason|to|see|``|Sade|''|lay|with|the|chemistry|and|complex|relationship|between|the|marquis|(|Auteil|)|and|Emilie|(|Le|Besco|)|. It|'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|. The|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|. ...|best|seen|as|speculative|history|,|as|much|an|exploration|of|the|paranoid|impulse|as|a|creative|sequel|to|the|Warren|Report|. It|has|its|faults|,|but|it|is|a|kind|,|unapologetic|,|sweetheart|of|a|movie|,|and|Mandy|Moore|leaves|a|positive|impression|. The|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|. Despite|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|. Flawed|,|but|worth|seeing|for|Ambrose|'s|performance|. With|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|. The|humor|and|humanity|of|Monsoon|Wedding|are|in|perfect|balance|. Lookin|'|for|sin|,|American-style|? Try|Hell|House|,|which|documents|the|cautionary|Christian|spook-a-rama|of|the|same|name|. A|compelling|motion|picture|that|illustrates|an|American|tragedy|. As|comedic|spotlights|go|,|Notorious|C.H.O.|hits|all|the|verbal|marks|it|should|. It|'s|a|day|at|the|beach|--|with|air|conditioning|and|popcorn|. Frida|is|n'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|. Stevens|has|a|flair|for|dialogue|comedy|,|the|film|operates|nicely|off|the|element|of|surprise|,|and|the|large|cast|is|solid|. Extremely|well|acted|by|the|four|primary|actors|,|this|is|a|seriously|intended|movie|that|is|not|easily|forgotten|. The|film|exudes|the|urbane|sweetness|that|Woody|Allen|seems|to|have|bitterly|forsaken|. K-19|:|The|Widowmaker|is|derivative|,|overlong|,|and|bombastic|--|yet|surprisingly|entertaining|. It|'s|good|,|hard-edged|stuff|,|violent|and|a|bit|exploitative|but|also|nicely|done|,|morally|alert|and|street-smart|. Cineasts|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|. It|'s|a|rare|window|on|an|artistic|collaboration|. ...|begins|with|promise|,|but|runs|aground|after|being|snared|in|its|own|tangled|plot|. Perhaps|the|best|sports|movie|I|'ve|ever|seen|. Cho|'s|timing|is|priceless|. ...|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|. A|sensitive|,|moving|,|brilliantly|constructed|work|. An|edgy|thriller|that|delivers|a|surprising|punch|. A|reasonably|entertaining|sequel|to|1994|'s|surprise|family|hit|that|may|strain|adult|credibility|. (|Reno|)|delivers|a|monologue|that|manages|to|incorporate|both|the|horror|and|the|absurdity|of|the|situation|in|a|well-balanced|fashion|. there|is|truth|here a|confident|,|richly|acted|,|emotionally|devastating|piece|of|work|and|2002|'s|first|great|film A|touching|,|small-scale|story|of|family|responsibility|and|care|in|the|community|. Arteta|directs|one|of|the|best|ensemble|casts|of|the|year The|casting|of|von|Sydow|...|is|itself|Intacto|'s|luckiest|stroke|. No|,|it|'s|not|as|single-minded|as|John|Carpenter|'s|original|,|but|it|'s|sure|a|lot|smarter|and|more|unnerving|than|the|sequels|. A|gem|of|a|romantic|crime|comedy|that|turns|out|to|be|clever|,|amusing|and|unpredictable|. Stands|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|. ...|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|... This|movie|got|me|grinning|. There|'s|a|part|of|us|that|can|not|help|be|entertained|by|the|sight|of|someone|getting|away|with|something|. An|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|. What|'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|'|? This|English-language|version|...|does|full|honor|to|Miyazaki|'s|teeming|and|often|unsettling|landscape|,|and|to|the|conflicted|complexity|of|his|characters|. The|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|. Not|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|. There|are|no|special|effects|,|and|no|Hollywood|endings|. Like|the|original|,|this|version|is|raised|a|few|notches|above|kiddie|fantasy|pablum|by|Allen|'s|astringent|wit|. Despite|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|. A|brutally|honest|documentary|about|a|much|anticipated|family|reunion|that|goes|wrong|thanks|to|culture|shock|and|a|refusal|to|empathize|with|others|. Filled|with|honest|performances|and|exceptional|detail|,|Baran|is|a|gentle|film|with|dramatic|punch|,|a|haunting|ode|to|humanity|. Sparkles|in|its|deft|portrait|of|Tinseltown|'s|seasoned|veterans|of|gossip|,|wealth|,|paranoia|,|and|celebrityhood|. In|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|. ...|a|triumph|of|emotionally|and|narratively|complex|filmmaking|. (|Haynes|'|)|homage|to|such|films|as|``|All|That|Heaven|Allows|''|and|``|Imitation|of|Life|''|transcends|them|. Simply|put|,|``|Far|From|Heaven|''|is|a|masterpiece|. An|intense|and|effective|film|about|loneliness|and|the|chilly|anonymity|of|the|environments|where|so|many|of|us|spend|so|much|of|our|time|. Although|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|. Proves|mainly|that|South|Korean|filmmakers|can|make|undemanding|action|movies|with|all|the|alacrity|of|their|Hollywood|counterparts|. A|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|. Top-notch|action|powers|this|romantic|drama|. Beresford|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|wo|n't|get|an|opportunity|to|embrace|small|,|sweet|`|Evelyn|.|' I|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|. Probably|the|best|case|for|Christianity|since|Chesterton|and|Lewis|. A|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|. Would|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|. Visually|fascinating|...|an|often|intense|character|study|about|fathers|and|sons|,|loyalty|and|duty|. A|lyrical|metaphor|for|cultural|and|personal|self-discovery|and|a|picaresque|view|of|a|little-remembered|world|. Schü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|. A|slick|,|engrossing|melodrama|. S1M0NE|'s|satire|is|not|subtle|,|but|it|is|effective|. It|'s|a|quirky|,|off-beat|project|. While|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|. Even|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|. The|solid|filmmaking|and|convincing|characters|makes|this|a|high|water|mark|for|this|genre|. Films|about|loss|,|grief|and|recovery|are|pretty|valuable|these|days|. Seen|in|that|light|,|Moonlight|Mile|should|strike|a|nerve|in|many|. It|'s|endlessly|inventive|,|consistently|intelligent|and|sickeningly|savage|. It|is|definitely|worth|seeing|. An|impeccable|study|in|perversity|. Far|From|Heaven|is|a|dazzling|conceptual|feat|,|but|more|than|that|,|it|'s|a|work|of|enthralling|drama|. A|movie|that|both|thrills|the|eye|and|,|in|its|over-the-top|way|,|touches|the|heart|. Stuffed|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|. Affectionately|reminds|us|that|,|in|any|language|,|the|huge|stuff|in|life|can|usually|be|traced|back|to|the|little|things|. A|drama|of|great|power|,|yet|some|members|of|the|audience|will|leave|the|theater|believing|they|have|seen|a|comedy|. The|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|. The|result|is|more|depressing|than|liberating|,|but|it|'s|never|boring|. A|story|about|intelligent|high|school|students|that|deals|with|first|love|sweetly|but|also|seriously|. It|is|also|beautifully|acted|. It|is|n't|that|the|picture|is|unfamiliar|,|but|that|it|manages|to|find|new|avenues|of|discourse|on|old|problems|. Same|song|,|second|verse|,|coulda|been|better|,|but|it|coulda|been|worse|. It|'s|a|technically|superb|film|,|shining|with|all|the|usual|Spielberg|flair|,|expertly|utilizing|the|talents|of|his|top-notch|creative|team|. Wilco|fans|will|have|a|great|time|,|and|the|movie|should|win|the|band|a|few|new|converts|,|too|. Tsai|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|. The|date|movie|that|Franz|Kafka|would|have|made|. The|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|. Leguizamo|and|Jones|are|both|excellent|and|the|rest|of|the|cast|is|uniformly|superb|. I|liked|this|film|a|lot|... ...|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|. A|solid|and|refined|piece|of|moviemaking|imbued|with|passion|and|attitude|. Nettelbeck|has|crafted|an|engaging|fantasy|of|flavours|and|emotions|,|one|part|romance|novel|,|one|part|recipe|book|. With|or|without|the|sex|,|a|wonderful|tale|of|love|and|destiny|,|told|well|by|a|master|storyteller On|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|. A|weird|,|arresting|little|ride|. A|fine|film|,|but|it|would|be|a|lot|better|if|it|stuck|to|Betty|Fisher|and|left|out|the|other|stories|. A|first-class|road|movie|that|proves|you|can|run|away|from|home|,|but|your|ego|and|all|your|problems|go|with|you|. You|might|want|to|take|a|reality|check|before|you|pay|the|full|ticket|price|to|see|``|Simone|,|''|and|consider|a|DVD|rental|instead|. Well|cast|and|well|directed|-|a|powerful|drama|with|enough|sardonic|wit|to|keep|it|from|being|maudlin|. A|backstage|must-see|for|true|fans|of|comedy|. There|'s|back-stabbing|,|inter-racial|desire|and|,|most|importantly|,|singing|and|dancing|. The|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|. Jones|...|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|. In|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 Below|may|not|mark|Mr.|Twohy|'s|emergence|into|the|mainstream|,|but|his|promise|remains|undiminished|. There|'s|no|reason|to|miss|Interview|with|the|Assassin Happily|stays|close|to|the|ground|in|a|spare|and|simple|manner|and|does|n't|pummel|us|with|phony|imagery|or|music|. Its|sheer|dynamism|is|infectious|. For|his|first|attempt|at|film|noir|,|Spielberg|presents|a|fascinating|but|flawed|look|at|the|near|future|. it|somehow|managed|to|make|its|way|past|my|crappola|radar|and|find|a|small|place|in|my|heart Perhaps|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|. It|does|give|a|taste|of|the|Burning|Man|ethos|,|an|appealing|blend|of|counter-cultural|idealism|and|hedonistic|creativity|. The|limited|sets|and|small|confined|and|dark|spaces|also|are|homages|to|a|classic|low-budget|film|noir|movie|. The|movie|is|well|done|,|but|slow|. (|A|)|wonderfully|loopy|tale|of|love|,|longing|,|and|voting|. The|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|. The|last|scenes|of|the|film|are|anguished|,|bitter|and|truthful|. Mr.|Koshashvili|is|a|director|to|watch|. Predictable|storyline|and|by-the-book|scripting|is|all|but|washed|away|by|sumptuous|ocean|visuals|and|the|cinematic|stylings|of|director|John|Stockwell|. Antwone|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|. One|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|. It|challenges|,|this|nervy|oddity|,|like|modern|art|should|. Whenever|you|think|you|'ve|figured|out|Late|Marriage|,|it|throws|you|for|a|loop|. The|Pianist|is|Polanski|'s|best|film|. It|is|a|testament|of|quiet|endurance|,|of|common|concern|,|of|reconciled|survival|. This|Orange|has|some|juice|,|but|it|'s|far|from|fresh-squeezed|. A|sensitive|,|modest|comic|tragedy|that|works|as|both|character|study|and|symbolic|examination|of|the|huge|economic|changes|sweeping|modern|China|. High|Crimes|knows|the|mistakes|that|bad|movies|make|and|is|determined|not|to|make|them|,|and|maybe|that|is|nobility|of|a|sort|. Cusack|'s|just|brilliant|in|this|. Knows|how|to|make|our|imagination|wonder|. Jae-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|. The|overall|fabric|is|hypnotic|,|and|Mr.|Mattei|fosters|moments|of|spontaneous|intimacy|. Evokes|a|palpable|sense|of|disconnection|,|made|all|the|more|poignant|by|the|incessant|use|of|cell|phones|. Malcolm|McDowell|is|cool|. Paul|Bettany|is|cool|. Paul|Bettany|playing|Malcolm|McDowell|? Cool|. A|touching|,|sophisticated|film|that|almost|seems|like|a|documentary|in|the|way|it|captures|an|Italian|immigrant|family|on|the|brink|of|major|changes|. ...|a|trashy|little|bit|of|fluff|stuffed|with|enjoyable|performances|and|a|bewildering|sense|of|self-importance An|inventive|,|absorbing|movie|that|'s|as|hard|to|classify|as|it|is|hard|to|resist|. It|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|'|. (|Caine|)|proves|once|again|he|has|n't|lost|his|touch|,|bringing|off|a|superb|performance|in|an|admittedly|middling|film|. Bogdanovich|puts|history|in|perspective|and|,|via|Kirsten|Dunst|'s|remarkable|performance|,|he|showcases|Davies|as|a|young|woman|of|great|charm|,|generosity|and|diplomacy|. This|breezy|caper|movie|becomes|a|soulful|,|incisive|meditation|on|the|way|we|were|,|and|the|way|we|are|. A|captivating|new|film|. Those|who|are|n't|put|off|by|the|film|'s|austerity|will|find|it|more|than|capable|of|rewarding|them|. It|'s|a|clear-eyed|portrait|of|an|intensely|lived|time|,|filled|with|nervous|energy|,|moral|ambiguity|and|great|uncertainties|. Reveals|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|. With|the|same|sort|of|good-natured|fun|found|in|films|like|Tremors|,|Eight|Legged|Freaks|is|prime|escapist|fare|. A|sharp|,|amusing|study|of|the|cult|of|celebrity|. The|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|. A|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|. A|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|. Made|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|. If|you|'re|looking|for|something|new|and|hoping|for|something|entertaining|,|you|'re|in|luck|. A|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|. A|rip-roaring|comedy|action|fest|that|'ll|put|hairs|on|your|chest|. If|there|'s|no|art|here|,|it|'s|still|a|good|yarn|--|which|is|nothing|to|sneeze|at|these|days|. Simultaneously|heart-breaking|and|very|funny|,|The|Last|Kiss|is|really|all|about|performances|. There|is|a|subversive|element|to|this|Disney|cartoon|,|providing|unexpected|fizzability|. An|unforgettable|look|at|morality|,|family|,|and|social|expectation|through|the|prism|of|that|omnibus|tradition|called|marriage|. An|enjoyable|,|if|occasionally|flawed|,|experiment|. Miyazaki|is|one|of|world|cinema|'s|most|wondrously|gifted|artists|and|storytellers|. If|Ayurveda|can|help|us|return|to|a|sane|regimen|of|eating|,|sleeping|and|stress-reducing|contemplation|,|it|is|clearly|a|good|thing|. Meeting|,|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|. Leigh|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|. Poetry|in|motion|captured|on|film|. While|it|can|be|a|bit|repetitive|,|overall|it|'s|an|entertaining|and|informative|documentary|. Directing|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|. The|entire|movie|establishes|a|wonderfully|creepy|mood|. I|found|The|Ring|moderately|absorbing|,|largely|for|its|elegantly|colorful|look|and|sound|. The|filmmakers|want|nothing|else|than|to|show|us|a|good|time|,|and|in|their|cheap|,|B|movie|way|,|they|succeed|. Amari|has|dressed|up|this|little|parable|in|a|fairly|irresistible|package|full|of|privileged|moments|and|memorable|performances|. Rabbit-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|does|n't|make|you|feel|like|a|sucker|. Both|heartbreaking|and|heartwarming|...|just|a|simple|fable|done|in|an|artless|sytle|,|but|it|'s|tremendously|moving|. This|masterfully|calibrated|psychological|thriller|thrives|on|its|taut|performances|and|creepy|atmosphere|even|if|the|screenplay|falls|somewhat|short|. The|film|'s|sense|of|imagery|gives|it|a|terrible|strength|,|but|it|'s|propelled|by|the|acting|. The|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|. Strange|it|is|,|but|delightfully|so|. Elegant|,|mannered|and|teasing|. An|average|coming-of-age|tale|elevated|by|the|wholesome|twist|of|a|pesky|mother|interfering|during|her|son|'s|discovery|of|his|homosexuality|. The|ingenuity|that|Parker|displays|in|freshening|the|play|is|almost|in|a|class|with|that|of|Wilde|himself|. Decasia|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|. A|droll|,|bitchy|frolic|which|pokes|fun|at|the|price|of|popularity|and|small-town|pretension|in|the|Lone|Star|State|. With|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|. Ryan|Gosling|...|is|at|22|a|powerful|young|actor|. A|minor|work|yet|there|'s|no|denying|the|potency|of|Miller|'s|strange|,|fleeting|brew|of|hopeful|perseverance|and|hopeless|closure|. As|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|. The|film|is|a|verbal|duel|between|two|gifted|performers|. Imperfect|? Yes|,|but|also|intriguing|and|honorable|,|a|worthwhile|addition|to|a|distinguished|film|legacy|. You|'ll|get|the|enjoyable|basic|minimum|. But|not|a|whit|more|. What|a|great|way|to|spend|4|units|of|your|day|. The|movie|is|hardly|a|masterpiece|,|but|it|does|mark|Ms.|Bullock|'s|best|work|in|some|time|. As|simple|and|innocent|a|movie|as|you|can|imagine|. This|is|a|movie|you|can|trust|. Passionate|,|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|. ``|It|'s|all|about|the|image|.|'' Vividly|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|. Hollywood|Ending|is|not|show-stoppingly|hilarious|,|but|scathingly|witty|nonetheless|. Maybe|Thomas|Wolfe|was|right|:|You|ca|n't|go|home|again|. A|compelling|yarn|,|but|not|quite|a|ripping|one|. On|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|. The|film|has|several|strong|performances|. I|'ve|never|bought|from|telemarketers|,|but|I|bought|this|movie|. Perfectly|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|. The|funny|thing|is|,|I|did|n't|mind|all|this|contrived|nonsense|a|bit|. (|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|. A|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|. An|entertaining|documentary|that|freshly|considers|arguments|the|Bard|'s|immortal|plays|were|written|by|somebody|else|. A|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|? Call|it|magic|realism|or|surrealism|,|but|Miss|Wonton|floats|beyond|reality|with|a|certain|degree|of|wit|and|dignity|. Raimi|and|his|team|could|n't|have|done|any|better|in|bringing|the|story|of|Spider-Man|to|the|big|screen|. The|director|explores|all|three|sides|of|his|story|with|a|sensitivity|and|an|inquisitiveness|reminiscent|of|Truffaut|. Well-acted|,|well-directed|and|,|for|all|its|moodiness|,|not|too|pretentious|. It|'s|a|satisfying|summer|blockbuster|and|worth|a|look|. Boomers|and|their|kids|will|have|a|Barrie|good|time|. Real|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|. Ultimately|,|``|MIB|II|''|succeeds|due|to|its|rapid-fire|delivery|and|enough|inspired|levity|that|it|ca|n't|be|dismissed|as|mindless|. Stage|director|Sam|Mendes|showcases|Tom|Hanks|as|a|depression|era|hit-man|in|this|dark|tale|of|revenge|. Sitting|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 The|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|. What|'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|. Strip|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|. An|immensely|entertaining|look|at|some|of|the|unsung|heroes|of|20th|century|pop|music|. This|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|. This|beautifully|animated|epic|is|never|dull|. Brian|Tufano|'s|handsome|widescreen|photography|and|Paul|Grabowsky|'s|excellent|music|turn|this|fairly|parochial|melodrama|into|something|really|rather|special|. It|makes|compelling|,|provocative|and|prescient|viewing|. A|thoroughly|entertaining|comedy|that|uses|Grant|'s|own|twist|of|acidity|to|prevent|itself|from|succumbing|to|its|own|bathos|. Using|a|stock|plot|,|About|a|Boy|injects|just|enough|freshness|into|the|proceedings|to|provide|an|enjoyable|100|minutes|in|a|movie|theater|. What|Eric|Schaeffer|has|accomplished|with|Never|Again|may|not|,|strictly|speaking|,|qualify|as|revolutionary|. But|it|'s|defiantly|and|delightfully|against|the|grain|. The|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|. A|positively|thrilling|combination|of|ethnography|and|all|the|intrigue|,|betrayal|,|deceit|and|murder|of|a|Shakespearean|tragedy|or|a|juicy|soap|opera|. Mr.|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|. Definitely|funny|stuff|,|but|it|'s|more|of|the|`|laughing|at|'|variety|than|the|`|laughing|with|.|' Easily|the|most|thoughtful|fictional|examination|of|the|root|causes|of|anti-Semitism|ever|seen|on|screen|. A|real|winner|--|smart|,|funny|,|subtle|,|and|resonant|. Family|portrait|of|need|,|neurosis|and|nervy|negativity|is|a|rare|treat|that|shows|the|promise|of|digital|filmmaking|. The|pitch|must|have|read|like|a|discarded|House|Beautiful|spread|. Uplifting|as|only|a|document|of|the|worst|possibilities|of|mankind|can|be|,|and|among|the|best|films|of|the|year|. Director|David|Jacobson|gives|Dahmer|a|consideration|that|the|murderer|never|game|his|victims|. The|film|has|a|terrific|look|and|Salma|Hayek|has|a|feel|for|the|character|at|all|stages|of|her|life|. A|decided|lack|of|spontaneity|in|its|execution|and|a|dearth|of|real|poignancy|in|its|epiphanies|. The|performances|are|remarkable|. It|'s|Burns|'|visuals|,|characters|and|his|punchy|dialogue|,|not|his|plot|,|that|carry|waydowntown|. As|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|. While|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|. Strange|,|funny|,|twisted|,|brilliant|and|macabre|. A|genuinely|moving|and|wisely|unsentimental|drama|. Heaven|is|a|haunting|dramatization|of|a|couple|'s|moral|ascension|. The|Mothman|Prophecies|is|best|when|illustrating|the|demons|bedevilling|the|modern|masculine|journey|. Plays|out|with|a|dogged|and|eventually|winning|squareness|that|would|make|it|the|darling|of|many|a|kids-and-family-oriented|cable|channel|. An|entertaining|British|hybrid|of|comedy|,|caper|thrills|and|quirky|romance|. Alain|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|. Mostly|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|. Hardly|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|. The|mark|of|a|respectable|summer|blockbuster|is|one|of|two|things|:|unadulterated|thrills|or|genuine|laughs|. The|film|is|visually|dazzling|,|the|depicted|events|dramatic|,|funny|and|poignant|. A|directorial|tour|de|force|by|Bernard|Rose|,|ivans|xtc|. is|one|of|this|year|'s|very|best|pictures|. What|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|. Even|the|digressions|are|funny|. Mr.|Spielberg|and|his|company|just|want|you|to|enjoy|yourselves|without|feeling|conned|. And|they|succeed|merrily|at|their|noble|endeavor|. Melodrama|with|a|message|. A|perfectly|pleasant|if|slightly|pokey|comedy|. Coppola|'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|. At|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|. Wang|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|. It|'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|. Bogdanovich|taps|deep|into|the|Hearst|mystique|,|entertainingly|reenacting|a|historic|scandal|. A|moving|tale|of|love|and|destruction|in|unexpected|places|,|unexamined|lives|. Clooney|directs|this|film|always|keeping|the|balance|between|the|fantastic|and|the|believable|... Even|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|. ...|a|lesson|in|prehistoric|hilarity|. A|fantastically|vital|movie|that|manages|to|invest|real|humor|,|sensuality|,|and|sympathy|into|a|story|about|two|adolescent|boys|. Lawrence|plumbs|personal|tragedy|and|also|the|human|comedy|. Though|a|capable|thriller|,|somewhere|along|the|way|K-19|jettisoned|some|crucial|drama|. Just|about|the|surest|bet|for|an|all-around|good|time|at|the|movies|this|summer|. It|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|. There|is|a|certain|sense|of|experimentation|and|improvisation|to|this|film|that|may|not|always|work|,|but|it|is|nevertheless|compelling|. The|Four|Feathers|has|rewards|,|from|the|exoticism|of|its|seas|of|sand|to|the|fierce|grandeur|of|its|sweeping|battle|scenes|. A|delicious|,|quirky|movie|with|a|terrific|screenplay|and|fanciful|direction|by|Michael|Gondry|. This|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|. The|bodily|function|jokes|are|about|what|you|'d|expect|,|but|there|are|rich|veins|of|funny|stuff|in|this|movie|. The|performances|are|amiable|and|committed|,|and|the|comedy|more|often|than|not|hits|the|bullseye|. This|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|. There|'s|plenty|to|enjoy|--|in|no|small|part|thanks|to|Lau|. With|a|romantic|comedy|plotline|straight|from|the|ages|,|this|Cinderella|story|does|n't|have|a|single|surprise|up|its|sleeve|. But|it|does|somehow|manage|to|get|you|under|its|spell|. Though|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|. ``|Catch|Me|''|feels|capable|of|charming|the|masses|with|star|power|,|a|pop-induced|score|and|sentimental|moments|that|have|become|a|Spielberg|trademark|. By|no|means|a|great|movie|,|but|it|is|a|refreshingly|forthright|one|. The|casting|of|Raymond|J.|Barry|as|the|`|assassin|'|greatly|enhances|the|quality|of|Neil|Burger|'s|impressive|fake|documentary|. Despite|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|. This|documentary|is|a|dazzling|,|remarkably|unpretentious|reminder|of|what|(|Evans|)|had|,|lost|,|and|got|back|. A|thoughtful|movie|,|a|movie|that|is|concerned|with|souls|and|risk|and|schemes|and|the|consequences|of|one|'s|actions|. As|satisfyingly|odd|and|intriguing|a|tale|as|it|was|a|century|and|a|half|ago|...|has|a|delightfully|dour|,|deadpan|tone|and|stylistic|consistency|. Methodical|,|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|. A|witty|,|trenchant|,|wildly|unsentimental|but|flawed|look|at|the|ins|and|outs|of|modern|moviemaking|. For|most|of|the|distance|the|picture|provides|a|satisfyingly|unsettling|ride|into|the|dark|places|of|our|national|psyche|. By|the|standards|of|knucklehead|swill|,|The|Hot|Chick|is|pretty|damned|funny|. One|of|the|most|gloriously|unsubtle|and|adrenalized|extreme|shockers|since|The|Evil|Dead|. (|Reaches|)|wholly|believable|and|heart-wrenching|depths|of|despair|. An|absorbing|and|unsettling|psychological|drama|. This|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|. Though|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|. The|entire|cast|is|extraordinarily|good|. Yakusho|,|as|always|,|is|wonderful|as|the|long-faced|sad|sack|...|and|his|chemistry|with|Shimizu|is|very|believable|. Young|Hanks|and|Fisk|,|who|vaguely|resemble|their|celebrity|parents|,|bring|fresh|good|looks|and|an|ease|in|front|of|the|camera|to|the|work|. A|captivatingly|quirky|hybrid|of|character|portrait|,|romantic|comedy|and|beat-the-clock|thriller|. The|film|sparkles|with|the|the|wisdom|and|humor|of|its|subjects|. If|(|Jaglom|'s|)|latest|effort|is|not|the|director|at|his|most|sparkling|,|some|of|its|repartee|is|still|worth|hearing|. Like|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|. Just|about|the|best|straight-up|,|old-school|horror|film|of|the|last|15|years|. A|chilling|tale|of|one|of|the|great|crimes|of|20th|Century|France|:|the|murder|of|two|rich|women|by|their|servants|in|1933|. An|oddity|,|to|be|sure|,|but|one|that|you|might|wind|up|remembering|with|a|degree|of|affection|rather|than|revulsion|. While|the|film|is|not|entirely|successful|,|it|still|manages|to|string|together|enough|charming|moments|to|work|. A|winning|piece|of|work|filled|with|love|for|the|movies|of|the|1960s|. E.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|. Helps|to|remind|the|First|World|that|HIV\/AIDS|is|far|from|being|yesterday|'s|news|. A|heartening|tale|of|small|victories|and|enduring|hope|. The|vistas|are|sweeping|and|the|acting|is|far|from|painful|. Jackson|and|co|have|brought|back|the|value|and|respect|for|the|term|epic|cinema|. It|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 Charlotte|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|. A|delightful|stimulus|for|the|optic|nerves|,|so|much|that|it|'s|forgivable|that|the|plot|feels|like|every|other|tale|of|a|totalitarian|tomorrow|. Defies|logic|,|the|laws|of|physics|and|almost|anyone|'s|willingness|to|believe|in|it|. But|darned|if|it|does|n't|also|keep|us|riveted|to|our|seats|. A|complex|psychological|drama|about|a|father|who|returns|to|his|son|'s|home|after|decades|away|. Writer|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|. This|is|NOT|a|retread|of|``|Dead|Poets|'|Society|.|'' Sweet|and|memorable|film|. A|smart|,|arch|and|rather|cold-blooded|comedy|. Keenly|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|. ...|begins|on|a|high|note|and|sustains|it|beautifully|. Davis|...|gets|vivid|performances|from|her|cast|and|pulls|off|some|deft|Ally|McBeal-style|fantasy|sequences|. `|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|.|' Funny|,|somber|,|absurd|,|and|,|finally|,|achingly|sad|,|Bartleby|is|a|fine|,|understated|piece|of|filmmaking|. ``|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|. Succeeds|only|because|Bullock|and|Grant|were|made|to|share|the|silver|screen|. Both|flawed|and|delayed|,|Martin|Scorcese|'s|Gangs|of|New|York|still|emerges|as|his|most|vital|work|since|GoodFellas|. As|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|does|n't|disappoint|. As|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|. A|moving|and|solidly|entertaining|comedy\/drama|that|should|bolster|director|and|co-writer|Juan|José|Campanella|'s|reputation|in|the|United|States|. Thanks|to|confident|filmmaking|and|a|pair|of|fascinating|performances|,|the|way|to|that|destination|is|a|really|special|walk|in|the|woods|. Beautifully|shot|,|delicately|scored|and|powered|by|a|set|of|heartfelt|performances|,|it|'s|a|lyrical|endeavour|. A|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|. A|stylistic|romp|that|'s|always|fun|to|watch|. Informative|,|intriguing|,|observant|,|often|touching|...|gives|a|human|face|to|what|'s|often|discussed|in|purely|abstract|terms|. ...|once|the|true|impact|of|the|day|unfolds|,|the|power|of|this|movie|is|undeniable|. An|honest|,|sensitive|story|from|a|Vietnamese|point|of|view|. A|buoyant|romantic|comedy|about|friendship|,|love|,|and|the|truth|that|we|'re|all|in|this|together|. The|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|. It|'s|the|perfect|star|vehicle|for|Grant|,|allowing|him|to|finally|move|away|from|his|usual|bumbling|,|tongue-tied|screen|persona|. Gaunt|,|silver-haired|and|leonine|,|(|Harris|)|brings|a|tragic|dimension|and|savage|full-bodied|wit|and|cunning|to|the|aging|Sandeman|. A|disturbing|examination|of|what|appears|to|be|the|definition|of|a|`|bad|'|police|shooting|. It|'s|been|made|with|an|innocent|yet|fervid|conviction|that|our|Hollywood|has|all|but|lost|. Not|only|a|reminder|of|how|they|used|to|make|movies|,|but|also|how|they|sometimes|still|can|be|made|. A|three-hour|cinema|master|class|. Eyre|is|on|his|way|to|becoming|the|American|Indian|Spike|Lee|. A|witty|,|whimsical|feature|debut|. Warm|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|. It|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|. Clint|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|. A|movie|that|will|surely|be|profane|,|politically|charged|music|to|the|ears|of|Cho|'s|fans|. Much|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|. Rarely|,|a|movie|is|more|than|a|movie|. Go|. Jacquot|'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|. Quitting|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|. By|not|averting|his|eyes|,|Solondz|forces|us|to|consider|the|unthinkable|,|the|unacceptable|,|the|unmentionable|. One|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|. While|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|. A|fascinating|documentary|that|provides|a|rounded|and|revealing|overview|of|this|ancient|holistic|healing|system Birthday|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|. An|interesting|look|behind|the|scenes|of|Chicago-based|rock|group|Wilco|... Sharp|edges|and|a|deep|vein|of|sadness|run|through|its|otherwise|comic|narrative|. There|'s|lots|of|cool|stuff|packed|into|ESPN|'s|Ultimate|X. Rock|solid|family|fun|out|of|the|gates|,|extremely|imaginative|through|out|,|but|wanes|in|the|middle The|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|. The|touch|is|generally|light|enough|and|the|performances|,|for|the|most|part|,|credible|. I|liked|About|Schmidt|a|lot|,|but|I|have|a|feeling|that|I|would|have|liked|it|much|more|if|Harry|&|Tonto|never|existed|. Steers|has|an|unexpectedly|adamant|streak|of|warm-blooded|empathy|for|all|his|disparate|Manhattan|denizens|--|especially|the|a|\*\*|holes|. That|Storytelling|has|value|can|not|be|denied|. Not|even|Solondz|'s|thirst|for|controversy|,|sketchy|characters|and|immature|provocations|can|fully|succeed|at|cheapening|it|. Once|the|downward|spiral|comes|to|pass|,|Auto|Focus|bears|out|as|your|typical|junkie|opera|... A|knowing|sense|of|humor|and|a|lot|of|warmth|ignite|Son|of|the|Bride|. A|rich|tale|of|our|times|,|very|well|told|with|an|appropriate|minimum|of|means|. The|characters|are|complex|and|quirky|,|but|entirely|believable|as|the|remarkable|ensemble|cast|brings|them|to|life|. In|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|. As|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|. Efficient|,|suitably|anonymous|chiller|. Gorgeous|scenes|,|masterful|performances|,|but|the|sickly|sweet|gender|normative|narrative|left|an|acrid|test|in|this|gourmet|'s|mouth|. The|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|. It|'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|. A|memorable|experience|that|,|like|many|of|his|works|,|presents|weighty|issues|colorfully|wrapped|up|in|his|own|idiosyncratic|strain|of|kitschy|goodwill|. Executed|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|. The|gentle|comic|treatment|of|adolescent|sturm|und|drang|should|please|fans|of|Chris|Fuhrman|'s|posthumously|published|cult|novel|. Director|Claude|Chabrol|has|become|the|master|of|innuendo|. It|is|not|what|you|see|,|it|is|what|you|think|you|see|. A|deftly|entertaining|film|,|smartly|played|and|smartly|directed|. A|documentary|to|make|the|stones|weep|--|as|shameful|as|it|is|scary|. I|hope|the|movie|is|widely|seen|and|debated|with|appropriate|ferocity|and|thoughtfulness|. A|thought-provoking|look|at|how|Western|foreign|policy|-|however|well|intentioned|-|can|wreak|havoc|in|other|cultures|. Asks|what|truth|can|be|discerned|from|non-firsthand|experience|,|and|specifically|questions|cinema|'s|capability|for|recording|truth|. The|journey|to|the|secret|'s|eventual|discovery|is|a|separate|adventure|,|and|thrill|enough|. A|quiet|,|disquieting|triumph|. Darkly|funny|and|frequently|insightful|. ...|the|tale|of|her|passionate|,|tumultuous|affair|with|Musset|unfolds|as|Sand|'s|masculine|persona|,|with|its|love|of|life|and|beauty|,|takes|form|. If|you|want|to|see|a|train|wreck|that|you|ca|n't|look|away|from|,|then|look|no|further|,|because|here|it|is|. There|'s|so|much|to|look|at|in|Metropolis|you|hate|to|tear|your|eyes|away|from|the|images|long|enough|to|read|the|subtitles|. The|search|for|redemption|makes|for|a|touching|love|story|,|mainly|because|Blanchett|and|Ribisi|compellingly|tap|into|a|spiritual|aspect|of|their|characters|'|suffering|. A|film|of|ideas|and|wry|comic|mayhem|. At|its|worst|the|screenplay|is|callow|,|but|at|its|best|it|is|a|young|artist|'s|thoughtful|consideration|of|fatherhood|. A|worthwhile|documentary|,|whether|you|'re|into|rap|or|not|,|even|if|it|may|still|leave|you|wanting|more|answers|as|the|credits|roll|. Fessenden|'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|. That|the|film|opens|with|maggots|crawling|on|a|dead|dog|is|not|an|out|of|place|metaphor|. Stanley|Kwan|has|directed|not|only|one|of|the|best|gay|love|stories|ever|made|,|but|one|of|the|best|love|stories|of|any|stripe|. The|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|. Norton|holds|the|film|together|. (|There|'s|)|quite|a|bit|of|heart|,|as|you|would|expect|from|the|directors|of|The|Little|Mermaid|and|Aladdin|. You|wo|n't|have|any|trouble|getting|kids|to|eat|up|these|Veggies|. A|creaky|staircase|gothic|. Enjoyably|dumb|,|sweet|,|and|intermittently|hilarious|--|if|you|'ve|a|taste|for|the|quirky|,|steal|a|glimpse|. A|movie|that|sends|you|out|of|the|theater|feeling|like|you|'ve|actually|spent|time|living|in|another|community|. Light-years|ahead|of|paint-by-number|American|blockbusters|like|Pearl|Harbor|,|at|least|artistically|. A|fascinating|documentary|about|the|long|and|eventful|spiritual|journey|of|the|guru|who|helped|launch|the|New|Age|. Isabelle|Huppert|excels|as|the|enigmatic|Mika|and|Anna|Mouglalis|is|a|stunning|new|young|talent|in|one|of|Chabrol|'s|most|intense|psychological|mysteries|. Perhaps|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|. Wedding|feels|a|bit|anachronistic|. Still|,|not|every|low-budget|movie|must|be|quirky|or|bleak|,|and|a|happy|ending|is|no|cinematic|sin|. It|'s|still|a|comic|book|,|but|Maguire|makes|it|a|comic|book|with|soul|. Brings|to|a|spectacular|completion|one|of|the|most|complex|,|generous|and|subversive|artworks|of|the|last|decade|. An|amusing|and|unexpectedly|insightful|examination|of|sexual|jealousy|,|resentment|and|the|fine|line|between|passion|and|pretence|. A|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|. Adaptation|'s|success|in|engaging|the|audience|in|the|travails|of|creating|a|screenplay|is|extraordinary|. A|polished|and|vastly|entertaining|caper|film|that|puts|the|sting|back|into|the|con|. It|'s|no|surprise|that|as|a|director|Washington|demands|and|receives|excellent|performances|,|from|himself|and|from|newcomer|Derek|Luke|. ...|while|each|moment|of|this|broken|character|study|is|rich|in|emotional|texture|,|the|journey|does|n't|really|go|anywhere|. The|film|gets|close|to|the|chimps|the|same|way|Goodall|did|,|with|a|serious|minded|patience|,|respect|and|affection|. It|'s|an|often-cute|film|but|either|needs|more|substance|to|fill|the|time|or|some|judicious|editing|. This|may|be|Burns|'s|strongest|film|since|The|Brothers|McMullen|. What|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|. It|'s|Quaid|who|anchors|the|film|with|his|effortless|performance|and|that|trademark|grin|of|his|--|so|perfect|for|a|ballplayer|. It|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|. Though|not|for|everyone|,|The|Guys|is|a|somber|trip|worth|taking|. A|sly|female|empowerment|movie|,|although|not|in|a|way|anyone|would|expect|. You|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|. It|'s|a|wonderful|,|sobering|,|heart-felt|drama|. Runs|on|the|pure|adrenalin|of|Pacino|'s|performance|. The|Paradiso|'s|rusted-out|ruin|and|ultimate|collapse|during|the|film|'s|final|(|restored|)|third|...|emotionally|belittle|a|cinema|classic|. Sometimes|shorter|is|better|. Phillip|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|. The|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|. As|a|vehicle|to|savour|Binoche|'s|skill|,|the|film|is|well|worthwhile|. The|huskies|are|beautiful|,|the|border|collie|is|funny|and|the|overall|feeling|is|genial|and|decent|. Whatever|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|. Mastering|its|formidable|arithmetic|of|cameras|and|souls|,|Group|articulates|a|flood|of|emotion|. A|pretty|decent|kid-pleasing|,|tolerable-to-adults|lark|of|a|movie|. Even|during|the|climactic|hourlong|cricket|match|,|boredom|never|takes|hold|. Combine|the|paranoid|claustrophobia|of|a|submarine|movie|with|the|unsettling|spookiness|of|the|supernatural|--|why|did|n't|Hollywood|think|of|this|sooner|? Like|Kubrick|,|Soderbergh|is|n't|afraid|to|try|any|genre|and|to|do|it|his|own|way|. Nothing|can|detract|from|the|affection|of|that|moral|favorite|:|friends|will|be|friends|through|thick|and|thin|. If|the|film|has|a|problem|,|its|shortness|disappoints|:|You|want|the|story|to|go|on|and|on|. Unlike|most|anime|,|whose|most|ardent|fans|outside|Japan|seem|to|be|introverted|young|men|with|fantasy|fetishes|,|Metropolis|never|seems|hopelessly|juvenile|. The|plot|twists|give|I|Am|Trying|to|Break|Your|Heart|an|attraction|it|desperately|needed|. The|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|. Like|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|. The|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|. Flamboyant|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|. ...|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|. The|most|amazing|super-sized|dosage|of|goofball|stunts|any|``|Jackass|''|fan|could|want|. Real|Women|may|have|many|agendas|,|but|it|also|will|win|you|over|,|in|a|big|way|. Young|Everlyn|Sampi|,|as|the|courageous|Molly|Craig|,|simply|radiates|star-power|potential|in|this|remarkable|and|memorable|film|. Surprisingly|powerful|and|universal|. Apart|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|. I|'ll|put|it|this|way|:|If|you|'re|in|the|mood|for|a|melodrama|narrated|by|talking|fish|,|this|is|the|movie|for|you|. Morvern|Callar|confirms|Lynne|Ramsay|as|an|important|,|original|talent|in|international|cinema|. Well-done|supernatural|thriller|with|keen|insights|into|parapsychological|phenomena|and|the|soulful|nuances|of|the|grieving|process|. A|plethora|of|engaging|diatribes|on|the|meaning|of|`|home|,|'|delivered|in|grand|passion|by|the|members|of|the|various|households|. It|'s|technically|sumptuous|but|also|almost|wildly|alive|. This|film|puts|Wang|at|the|forefront|of|China|'s|Sixth|Generation|of|film|makers|. it|'s|refreshing|to|see|a|movie|that|embraces|its|old-fashioned|themes|and|in|the|process|comes|out|looking|like|something|wholly|original|. Wiseman|is|patient|and|uncompromising|,|letting|his|camera|observe|and|record|the|lives|of|women|torn|apart|by|a|legacy|of|abuse|. There|'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|. An|ingenious|and|often|harrowing|look|at|damaged|people|and|how|families|can|offer|either|despair|or|consolation|. Arguably|the|best|script|that|Besson|has|written|in|years|. It|'s|no|lie|--|Big|Fat|Liar|is|a|real|charmer|. Invigorating|,|surreal|,|and|resonant|with|a|rainbow|of|emotion|. Director|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|. Pray|has|really|done|his|subject|justice|. An|unexpectedly|sweet|story|of|sisterhood|. Maintains|your|sympathy|for|this|otherwise|challenging|soul|by|letting|you|share|her|one-room|world|for|a|while|. A|subtle|,|humorous|,|illuminating|study|of|politics|,|power|and|social|mobility|. Even|if|you|have|no|interest|in|the|gang-infested|,|East-vs|. -|West|Coast|rap|wars|,|this|modern|mob|music|drama|never|fails|to|fascinate|. Nair|'s|attention|to|detail|creates|an|impeccable|sense|of|place|,|while|Thurman|and|Lewis|give|what|can|easily|be|considered|career-best|performances|. Berry|'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 Red|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|. Caviezel|embodies|the|transformation|of|his|character|completely|. A|creepy|,|intermittently|powerful|study|of|a|self-destructive|man|...|about|as|unsettling|to|watch|as|an|exploratory|medical|procedure|or|an|autopsy|. Pacino|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|. The|cast|is|top-notch|and|I|predict|there|will|be|plenty|of|female|audience|members|drooling|over|Michael|Idemoto|as|Michael|. Béart|and|Berling|are|both|superb|,|while|Huppert|...|is|magnificent|. All|the|actors|are|good|in|Pauline|&|Paulette|but|van|der|Groen|,|described|as|`|Belgium|'s|national|treasure|,|'|is|especially|terrific|as|Pauline|. Miyazaki|has|created|such|a|vibrant|,|colorful|world|,|it|'s|almost|impossible|not|to|be|swept|away|by|the|sheer|beauty|of|his|images|. Muccino|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|. But|even|while|his|characters|are|acting|horribly|,|he|is|always|sympathetic|. Whether|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|. Ozpetek|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|. ...|an|eerily|suspenseful|,|deeply|absorbing|piece|that|works|as|a|treatise|on|spirituality|as|well|as|a|solid|sci-fi|thriller|. I|'ve|never|seen|or|heard|anything|quite|like|this|film|,|and|I|recommend|it|for|its|originality|alone|. Nicole|Kidman|makes|it|a|party|worth|attending|. The|direction|has|a|fluid|,|no-nonsense|authority|,|and|the|performances|by|Harris|,|Phifer|and|Cam|`|ron|seal|the|deal|. The|Komediant|is|a|tale|worth|catching|. The|writing|is|clever|and|the|cast|is|appealing|. The|simplicity|of|The|Way|Home|has|few|equals|this|side|of|Aesop Life|on|the|rez|is|no|picnic|:|this|picture|shows|you|why|. Spielberg|has|managed|to|marry|science|fiction|with|film|noir|and|action|flicks|with|philosophical|inquiry|. It|'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|. A|taut|,|sobering|film|. Exudes|the|fizz|of|a|Busby|Berkeley|musical|and|the|visceral|excitement|of|a|sports|extravaganza|. It|'s|full|of|cheesy|dialogue|,|but|great|trashy|fun|that|finally|returns|De|Palma|to|his|pulpy|thrillers|of|the|early|'80s|. The|results|,|if|not|memorable|,|are|at|least|interesting|. A|quietly|moving|look|back|at|what|it|was|to|be|Iranian-American|in|1979|. Like|a|veteran|head|cutter|,|Barbershop|is|tuned|in|to|its|community|. I|'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|. You|live|the|mood|rather|than|savour|the|story|. Angela|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|. While|there|are|times|when|the|film|'s|reach|exceeds|its|grasp|,|the|production|works|more|often|than|it|does|n't|. While|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|. Watching|this|gentle|,|mesmerizing|portrait|of|a|man|coming|to|terms|with|time|,|you|barely|realize|your|mind|is|being|blown|. The|beautifully|choreographed|kitchen|ballet|is|simple|but|absorbing|. There|'s|...|an|underlying|Old|World|sexism|to|Monday|Morning|that|undercuts|its|charm|. ``|The|best|Disney|movie|since|the|Lion|King|'' Transcends|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|. Think|of|it|as|Gidget|,|only|with|muscles|and|a|lot|more|smarts|,|but|just|as|endearing|and|easy|to|watch|. There|is|no|solace|here|,|no|entertainment|value|,|merely|a|fierce|lesson|in|where|filmmaking|can|take|us|. Giggling|at|the|absurdities|and|inconsistencies|is|part|of|the|fun|. But|the|talented|cast|alone|will|keep|you|watching|,|as|will|the|fight|scenes|. Arteta|paints|a|picture|of|lives|lived|in|a|state|of|quiet|desperation|. Drug|abuse|,|infidelity|and|death|are|n't|usually|comedy|fare|,|but|Turpin|'s|film|allows|us|to|chuckle|through|the|angst|. While|Insomnia|is|in|many|ways|a|conventional|,|even|predictable|remake|,|Nolan|'s|penetrating|undercurrent|of|cerebral|and|cinemantic|flair|lends|(|it|)|stimulating|depth|. Efteriades|gives|the|neighborhood|--|scenery|,|vibe|and|all|--|the|cinematic|equivalent|of|a|big|,|tender|hug|. This|is|a|nicely|handled|affair|,|a|film|about|human|darkness|but|etched|with|a|light|(|yet|unsentimental|)|touch|. Amazing|! A|college|story|that|works|even|without|vulgarity|,|sex|scenes|,|and|cussing|! The|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|. A|raunchy|and|frequently|hilarious|follow-up|to|the|gifted|Korean|American|stand-up|'s|I|'m|the|One|That|I|Want|. If|you|ever|wanted|to|be|an|astronaut|,|this|is|the|ultimate|movie|experience|-|it|'s|informative|and|breathtakingly|spectacular|. While|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|. A|smart|,|sassy|and|exceptionally|charming|romantic|comedy|. There|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|. A|gift|to|anyone|who|loves|both|dance|and|cinema It|seems|Grant|does|n't|need|the|floppy|hair|and|the|self-deprecating|stammers|after|all|. A|reminder|that|beyond|all|the|hype|and|recent|digital|glitz|,|Spielberg|knows|how|to|tell|us|about|people|. One|of|the|finest|,|most|humane|and|important|Holocaust|movies|ever|made|. An|engrossing|and|infectiously|enthusiastic|documentary|. A|beautiful|,|timeless|and|universal|tale|of|heated|passions|--|jealousy|,|betrayal|,|forgiveness|and|murder|. A|culture-clash|comedy|that|,|in|addition|to|being|very|funny|,|captures|some|of|the|discomfort|and|embarrassment|of|being|a|bumbling|American|in|Europe|. Shattering|,|devastating|documentary|on|two|maladjusted|teens|in|a|downward|narcotized|spiral|. Extraordinary|debut|from|Josh|Koury|. The|most|compelling|performance|of|the|year|adds|substantial|depth|to|this|shocking|testament|to|anti-Semitism|and|neo-fascism|. For|those|who|are|intrigued|by|politics|of|the|'70s|,|the|film|is|every|bit|as|fascinating|as|it|is|flawed|. All|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|. Douglas|McGrath|'s|Nicholas|Nickleby|does|Dickens|as|it|should|be|done|cinematically|. It|'s|a|lovely|,|eerie|film|that|casts|an|odd|,|rapt|spell|. The|quirky|and|recessive|charms|of|co-stars|Martin|Donovan|and|Mary-Louise|Parker|help|overcome|the|problematic|script|. It|'s|good|to|see|Michael|Caine|whipping|out|the|dirty|words|and|punching|people|in|the|stomach|again|. You|just|know|something|terrible|is|going|to|happen|. But|when|it|does|,|you|'re|entirely|unprepared|. It|'s|fun|,|wispy|,|wise|and|surprisingly|inoffensive|for|a|film|about|a|teen|in|love|with|his|stepmom|. Able|to|provide|insight|into|a|fascinating|part|of|theater|history|. An|unflinching|,|complex|portrait|of|a|modern|Israel|that|is|rarely|seen|on-screen|. A|Jewish|WW|II|doc|that|is|n't|trying|simply|to|out-shock|,|out-outrage|or|out-depress|its|potential|audience|! Who|knew|... It|'s|a|familiar|story|,|but|one|that|is|presented|with|great|sympathy|and|intelligence|. Gently|humorous|and|touching|. It|wo|n't|hold|up|over|the|long|haul|,|but|in|the|moment|,|Finch|'s|tale|provides|the|forgettable|pleasures|of|a|Saturday|matinee|. Kinnear|'s|performance|is|a|career-defining|revelation|. The|film|is|predictable|in|the|reassuring|manner|of|a|beautifully|sung|holiday|carol|. ...|hits|every|cliche|we|'ve|come|to|expect|,|including|the|assumption|that|``|crazy|''|people|are|innocent|,|childlike|and|inherently|funny|. The|strong|subject|matter|continues|to|shock|throughout|the|film|. Not|everyone|will|play|the|dark|,|challenging|tune|taught|by|The|Piano|Teacher|. A|certain|sexiness|underlines|even|the|dullest|tangents|. You|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|. There|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|. That|old|adage|about|women|being|unknowable|gets|an|exhilarating|new|interpretation|in|Morvern|Callar|. A|mix|of|gritty|realism|,|crisp|storytelling|and|radiant|compassion|that|effortlessly|draws|you|in|. After|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|. In|his|U.S.|debut|,|Mr.|Schnitzler|proves|himself|a|deft|pace|master|and|stylist|. Ultimate|X|is|a|ride|,|basically|the|kind|of|greatest-hits|reel|that|might|come|with|a|subscription|to|ESPN|the|Magazine|. Rich|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|. Offers|a|clear-eyed|chronicle|of|a|female|friendship|that|is|more|complex|and|honest|than|anything|represented|in|a|Hollywood|film|. A|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|. Its|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|. Lohman|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 Although|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|. For|a|movie|audience|,|The|Hours|does|n't|connect|in|a|neat|way|,|but|introduces|characters|who|illuminate|mysteries|of|sex|,|duty|and|love|. A|bright|,|inventive|,|thoroughly|winning|flight|of|revisionist|fancy|. Ozpetek|'s|effort|has|the|scope|and|shape|of|an|especially|well-executed|television|movie|. Affirms|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|. A|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|. Makes|one|thing|abundantly|clear|. American|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|. Deepa|Mehta|provides|an|accessible|introduction|as|well|as|some|intelligent|observations|on|the|success|of|Bollywood|in|the|Western|world|. If|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|. In|addition|to|gluing|you|to|the|edge|of|your|seat|,|Changing|Lanes|is|also|a|film|of|freshness|,|imagination|and|insight|. Pan|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|. The|mood|,|look|and|tone|of|the|film|fit|the|incredible|storyline|to|a|T. It|'s|crafty|,|energetic|and|smart|--|the|kid|is|sort|of|like|a|fourteen-year|old|Ferris|Bueller|. A|work|of|extraordinary|journalism|,|but|it|is|also|a|work|of|deft|and|subtle|poetry|. It|'s|funny|and|human|and|really|pretty|damned|wonderful|,|all|at|once|. At|78|minutes|it|just|zings|along|with|vibrance|and|warmth|. A|strangely|stirring|experience|that|finds|warmth|in|the|coldest|environment|and|makes|each|crumb|of|emotional|comfort|feel|like|a|10-course|banquet|. Sometimes|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|. The|stripped-down|dramatic|constructs|,|austere|imagery|and|abstract|characters|are|equal|parts|poetry|and|politics|,|obvious|at|times|but|evocative|and|heartfelt|. Dogtown|and|Z-Boys|more|than|exposes|the|roots|of|the|skateboarding|boom|that|would|become|``|the|punk|kids|'|revolution|.|'' ...|plenty|of|warmth|to|go|around|,|with|music|and|laughter|and|the|love|of|family|. It|'ll|keep|you|wide|awake|and|...|very|tense|. Could|use|a|little|more|humanity|,|but|it|never|lacks|in|eye-popping|visuals|. (|Danny|Huston|gives|)|an|astounding|performance|that|deftly|,|gradually|reveals|a|real|human|soul|buried|beneath|a|spellbinding|serpent|'s|smirk|. These|three|films|form|a|remarkably|cohesive|whole|,|both|visually|and|thematically|,|through|their|consistently|sensitive|and|often|exciting|treatment|of|an|ignored|people|. A|funny|and|well-contructed|black|comedy|where|the|old|adage|``|be|careful|what|you|wish|for|''|is|given|a|full|workout|. It|reaffirms|life|as|it|looks|in|the|face|of|death|. The|film|is|reasonably|entertaining|,|though|it|begins|to|drag|two-thirds|through|,|when|the|melodramatic|aspects|start|to|overtake|the|comedy|. This|is|more|fascinating|--|being|real|--|than|anything|seen|on|Jerry|Springer|. A|different|movie|--|sometimes|tedious|--|by|a|director|many|viewers|would|like|to|skip|but|film|buffs|should|get|to|know|. Williams|plays|Sy|,|another|of|his|open-faced|,|smiling|madmen|,|like|the|killer|in|Insomnia|. He|does|this|so|well|you|do|n't|have|the|slightest|difficulty|accepting|him|in|the|role|. Twist|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|. Thought-provoking|and|stylish|,|if|also|somewhat|hermetic|. Broomfield|is|energized|by|Volletta|Wallace|'s|maternal|fury|,|her|fearlessness|,|and|because|of|that|,|his|film|crackles|. While|it|has|definite|weaknesses|--|like|a|rather|unbelievable|love|interest|and|a|meandering|ending|--|this|'60s|caper|film|is|a|riveting|,|brisk|delight|. Funny|in|a|sick|,|twisted|sort|of|way|. If|cinema|had|been|around|to|capture|the|chaos|of|France|in|the|1790|'s|,|one|imagines|the|result|would|look|like|something|like|this|. It|'s|a|talking|head|documentary|,|but|a|great|one|. The|Fast|Runner|'|transports|the|viewer|into|an|unusual|space Ultimately|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|.|' ...|a|solid|,|well-formed|satire|. As|part|of|Mr.|Dong|'s|continuing|exploration|of|homosexuality|in|America|,|Family|Fundamentals|is|an|earnest|study|in|despair|. Most|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|. Hatosy|...|portrays|young|Brendan|with|his|usual|intelligence|and|subtlety|,|not|to|mention|a|convincing|brogue|. The|filmmakers|'|eye|for|detail|and|the|high|standards|of|performance|convey|a|strong|sense|of|the|girls|'|environment|. Uneven|,|self-conscious|but|often|hilarious|spoof|. Even|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|. Thanks|to|The|Château|'s|balance|of|whimsicality|,|narrative|discipline|and|serious|improvisation|,|almost|every|relationship|and|personality|in|the|film|yields|surprises|. Alan|and|his|fellow|survivors|are|idiosyncratic|enough|to|lift|the|movie|above|its|playwriting|101|premise|. Fresh|and|raw|like|a|blown-out|vein|,|Narc|takes|a|walking-dead|,|cop-flick|subgenre|and|beats|new|life|into|it|. The|premise|of|Jason|X|is|silly|but|strangely|believable|. It|'s|a|wise|and|powerful|tale|of|race|and|culture|forcefully|told|,|with|superb|performances|throughout|. An|awfully|good|,|achingly|human|picture|. The|cast|comes|through|even|when|the|movie|does|n't|. You|'ll|laugh|at|either|the|obviousness|of|it|all|or|its|stupidity|or|maybe|even|its|inventiveness|,|but|the|point|is|,|you|'ll|laugh|. Definitely|worth|95|minutes|of|your|time|. The|film|jolts|the|laughs|from|the|audience|--|as|if|by|cattle|prod|. A|sexy|,|surprising|romance|...|Idemoto|and|Kim|make|a|gorgeous|pair|...|their|scenes|brim|with|sexual|possibility|and|emotional|danger|. Toes|the|fine|line|between|cheese|and|earnestness|remarkably|well|;|everything|is|delivered|with|such|conviction|that|it|'s|hard|not|to|be|carried|away|. Whereas|Oliver|Stone|'s|conspiracy|thriller|JFK|was|long|,|intricate|,|star-studded|and|visually|flashy|,|Interview|with|the|Assassin|draws|its|considerable|power|from|simplicity|. Funny|,|sexy|,|devastating|and|incurably|romantic|. Triple|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|. Very|well-written|and|very|well-acted|. A|powerful|and|telling|story|that|examines|forbidden|love|,|racial|tension|,|and|other|issues|that|are|as|valid|today|as|they|were|in|the|1950s|. You|emerge|dazed|,|confused|as|to|whether|you|'ve|seen|pornography|or|documentary|. It|ai|n't|art|,|by|a|long|shot|,|but|unlike|last|year|'s|lame|Musketeer|,|this|Dumas|adaptation|entertains|. likeable|thanks|to|its|cast|,|its|cuisine|and|its|quirky|tunes|. Chilling|in|its|objective|portrait|of|dreary|,|lost|twenty-first|century|America|. Highly|recommended|as|an|engrossing|story|about|a|horrifying|historical|event|and|the|elements|which|contributed|to|it|. ...|there|'s|enough|cool|fun|here|to|warm|the|hearts|of|animation|enthusiasts|of|all|ages|. It|manages|to|squeeze|by|on|Angelina|Jolie|'s|surprising|flair|for|self-deprecating|comedy|. Secretary|manages|a|neat|trick|,|bundling|the|flowers|of|perversity|,|comedy|and|romance|into|a|strangely|tempting|bouquet|of|a|movie|. Judith|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|. Photographed|with|melancholy|richness|and|eloquently|performed|yet|also|decidedly|uncinematic|. A|knowing|look|at|female|friendship|,|spiked|with|raw|urban|humor|. As|I|settled|into|my|World|War|II|memories|,|I|found|myself|strangely|moved|by|even|the|corniest|and|most|hackneyed|contrivances|. The|overall|effect|is|awe|and|affection|--|and|a|strange|urge|to|get|on|a|board|and|,|uh|,|shred|,|dude|. It|'s|that|rare|family|movie|--|genuine|and|sweet|without|relying|on|animation|or|dumb|humor|. The|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|. Confessions|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|. A|special|kind|of|movie|,|this|melancholic|film|noir|reminded|me|a|lot|of|Memento|... Simple|,|poignant|and|leavened|with|humor|,|it|'s|a|film|that|affirms|the|nourishing|aspects|of|love|and|companionship|. Together|,|Miller|,|Kuras|and|the|actresses|make|Personal|Velocity|into|an|intricate|,|intimate|and|intelligent|journey|. The|wonder|of|Mostly|Martha|is|the|performance|of|Gedeck|,|who|makes|Martha|enormously|endearing|. With|Notorious|C.H.O.|Cho|proves|she|has|the|stuff|to|stand|tall|with|Pryor|,|Carlin|and|Murphy|. Less|front-loaded|and|more|shapely|than|the|two-hour|version|released|here|in|1990|. Watching|War|Photographer|,|you|come|to|believe|that|Nachtwey|hates|the|wars|he|shows|and|empathizes|with|the|victims|he|reveals|. (|A|)|real|pleasure|in|its|laid-back|way|. Some|may|choose|to|interpret|the|film|'s|end|as|hopeful|or|optimistic|but|I|think|Payne|is|after|something|darker|. Though|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|. A|much|better|documentary|--|more|revealing|,|more|emotional|and|more|surprising|--|than|its|pedestrian|English|title|would|have|you|believe|. Notwithstanding|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|- A|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|. The|film|has|the|uncanny|ability|to|right|itself|precisely|when|you|think|it|'s|in|danger|of|going|wrong|. My|Big|Fat|Greek|Wedding|is|that|rare|animal|known|as|'|a|perfect|family|film|,|'|because|it|'s|about|family|. would|make|an|excellent|companion|piece|to|the|similarly|themed|`|The|French|Lieutenant|'s|Woman|.|' ...|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|. A|movie|that|'s|just|plain|awful|but|still|manages|to|entertain|on|a|guilty-pleasure|,|so-bad-it|'s|-|funny|level|. A|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|. Functions|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|. With|a|confrontational|stance|,|Todd|Solondz|takes|aim|on|political|correctness|and|suburban|families|. A|mess|,|but|it|'s|a|sincere|mess|. This|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|. For|a|debut|film|,|Skin|of|Man|,|Heart|of|Beast|feels|unusually|assured|. A|photographic|marvel|of|sorts|,|and|it|'s|certainly|an|invaluable|record|of|that|special|fishy|community|. It|'s|soulful|and|unslick|,|and|that|'s|apparently|just|what|(|Aniston|)|has|always|needed|to|grow|into|a|movie|career|. Although|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|. A|jaw-droppingly|beautiful|work|that|upends|nearly|every|cliché|of|Japanese|animation|while|delivering|a|more|than|satisfactory|amount|of|carnage|. Terry|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|. Parts|seem|like|they|were|lifted|from|Terry|Gilliam|'s|subconscious|,|pressed|through|Kafka|'s|meat|grinder|and|into|Buñuel|'s|casings `|Like|a|child|with|an|important|message|to|tell|...|(|Skins|'|)|faults|are|easy|to|forgive|because|the|intentions|are|lofty|.|' A|delightful|entree|in|the|tradition|of|food|movies|. An|escapist|confection|that|'s|pure|entertainment|. The|Ring|is|worth|a|look|,|if|you|do|n't|demand|much|more|than|a|few|cheap|thrills|from|your|Halloween|entertainment|. The|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|. Throwing|it|all|away|for|the|fleeting|joys|of|love|'s|brief|moment|. Armed|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|. A|decent-enough|nail-biter|that|stands|a|good|chance|of|being|the|big|hit|Franklin|needs|to|stay|afloat|in|Hollywood|. Begins|like|a|docu-drama|but|builds|its|multi-character|story|with|a|flourish|. One|of|the|most|genuinely|sweet|films|to|come|along|in|quite|some|time|. After|an|uncertain|start|,|Murder|hits|and|generally|sustains|a|higher|plateau|with|Bullock|'s|memorable|first|interrogation|of|Gosling|. The|story|ultimately|takes|hold|and|grips|hard|. A|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|. An|emotionally|strong|and|politically|potent|piece|of|cinema|. Enticing|and|often|funny|documentary|. Going|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|. A|portrait|of|hell|so|shattering|it|'s|impossible|to|shake|. Almodovar|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|.|' Better|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|. At|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|. Tense|,|terrific|,|sweaty-palmed|fun|. Majidi|'s|direction|has|never|been|smoother|or|more|confident|. What|a|bewilderingly|brilliant|and|entertaining|movie|this|is|. Hard|,|endearing|,|caring|,|warm|. Bring|tissues|. A|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|. ``|Me|Without|You|''|is|a|probing|examination|of|a|female|friendship|set|against|a|few|dynamic|decades|. Inherently|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|. Though|Frodo|'s|quest|remains|unfulfilled|,|a|hardy|group|of|determined|New|Zealanders|has|proved|its|creative|mettle|. It|'s|a|square|,|sentimental|drama|that|satisfies|,|as|comfort|food|often|can|. Pure|cinematic|intoxication|,|a|wildly|inventive|mixture|of|comedy|and|melodrama|,|tastelessness|and|swooning|elegance|. Ramsay|is|clearly|extraordinarily|talented|,|and|based|on|three|short|films|and|two|features|,|here|'s|betting|her|third|feature|will|be|something|to|behold|. I|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|. A|classy|,|sprightly|spin|on|film|. fast|,|frantic|and|fun|,|but|also|soon|forgotten A|spiffy|animated|feature|about|an|unruly|adolescent|boy|who|is|yearning|for|adventure|and|a|chance|to|prove|his|worth|. Devos|and|Cassel|have|tremendous|chemistry|--|their|sexual|and|romantic|tension|,|while|never|really|vocalized|,|is|palpable|. Fulfills|the|minimum|requirement|of|Disney|animation|. A|moving|,|if|uneven|,|success|. With|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|. Wickedly|funny|,|visually|engrossing|,|never|boring|,|this|movie|challenges|us|to|think|about|the|ways|we|consume|pop|culture|. There|'s|plenty|to|impress|about|E.T. A|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|. Until|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|. (|Woo|'s|)|most|resonant|film|since|The|Killer|. Collateral|Damage|is|trash|,|but|it|earns|extra|points|by|acting|as|if|it|were|n't|. A|whole|lot|of|fun|and|funny|in|the|middle|,|though|somewhat|less|hard-hitting|at|the|start|and|finish|. Maybe|it|is|formula|filmmaking|,|but|there|'s|nothing|wrong|with|that|if|the|film|is|well-crafted|and|this|one|is|. (|Fincher|'s|)|camera|sense|and|assured|pacing|make|it|an|above-average|thriller|. The|film|is|insightful|about|Kissinger|'s|background|and|history|. An|engrossing|portrait|of|a|man|whose|engaging|manner|and|flamboyant|style|made|him|a|truly|larger-than-life|character|. A|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|. Exploits|(|headbanger|)|stereotypes|in|good|fun|,|while|adding|a|bit|of|heart|and|unsettling|subject|matter|. A|journey|that|is|as|difficult|for|the|audience|to|take|as|it|is|for|the|protagonist|--|yet|it|'s|potentially|just|as|rewarding|. Ratliff|'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|. From|its|invitingly|upbeat|overture|to|its|pathos-filled|but|ultimately|life-affirming|finale|,|Martin|is|a|masterfully|conducted|work|. Passions|,|obsessions|,|and|loneliest|dark|spots|are|pushed|to|their|most|virtuous|limits|,|lending|the|narrative|an|unusually|surreal|tone|. A|comedy|that|swings|and|jostles|to|the|rhythms|of|life|. At|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|wo|n't|be|able|to|look|away|for|a|second|. If|you|'re|part|of|her|targeted|audience|,|you|'ll|cheer|. Otherwise|,|maybe|. As|animation|increasingly|emphasizes|the|computer|and|the|cool|,|this|is|a|film|that|takes|a|stand|in|favor|of|tradition|and|warmth|. Blade|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|. Instead|of|hitting|the|audience|over|the|head|with|a|moral|,|Schrader|relies|on|subtle|ironies|and|visual|devices|to|convey|point|of|view|. K-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|. Contrived|as|this|may|sound|,|Mr.|Rose|'s|updating|works|surprisingly|well|. A|glib|but|bouncy|bit|of|sixties-style|slickness|in|which|the|hero|might|wind|up|caught|but|the|audience|gets|pure|escapism|. You|do|n't|need|to|be|a|hip-hop|fan|to|appreciate|Scratch|,|and|that|'s|the|mark|of|a|documentary|that|works|. Between|bursts|of|automatic|gunfire|,|the|story|offers|a|trenchant|critique|of|capitalism|. Combines|improbable|melodrama|(|gored|bullfighters|,|comatose|ballerinas|)|with|subtly|kinky|bedside|vigils|and|sensational|denouements|,|and|yet|at|the|end|,|we|are|undeniably|touched|. While|the|story|'s|undeniably|hard|to|follow|,|Iwai|'s|gorgeous|visuals|seduce|. If|you|can|get|past|the|taboo|subject|matter|,|it|will|be|well|worth|your|time|. A|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|. Scooby|Doo|is|surely|everything|its|fans|are|hoping|it|will|be|,|and|in|that|sense|is|a|movie|that|deserves|recommendation|. (|A|)|devastatingly|powerful|and|astonishingly|vivid|Holocaust|drama|. A|solid|cast|,|assured|direction|and|complete|lack|of|modern|day|irony|. These|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|. A|sun-drenched|masterpiece|,|part|parlor|game|,|part|psychological|case|study|,|part|droll|social|satire|. Worth|a|look|as|a|curiosity|. You|watch|for|that|sense|of|openness|,|the|little|surprises|. Director|Peter|Kosminsky|gives|these|women|a|forum|to|demonstrate|their|acting|`|chops|'|and|they|take|full|advantage|. Auto|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|. The|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|. For|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|. Remove|Spider-Man|the|movie|from|its|red|herring|surroundings|and|it|'s|apparent|that|this|is|one|summer|film|that|satisfies|. The|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|. A|gorgeously|strange|movie|,|Heaven|is|deeply|concerned|with|morality|,|but|it|refuses|to|spell|things|out|for|viewers|. The|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|. It|'s|truly|awful|and|heartbreaking|subject|matter|,|but|one|whose|lessons|are|well|worth|revisiting|as|many|times|as|possible|. Though|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|. There|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|. The|message|of|such|reflections|--|intentional|or|not|--|is|that|while|no|art|grows|from|a|vacuum|,|many|artists|exist|in|one|. Gooding|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|. The|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|. The|movie|is|brilliant|,|really|. It|is|philosophy|,|illustrated|through|everyday|events|. It|'s|stylishly|directed|with|verve|... Gives|an|intriguing|twist|to|the|French|coming-of-age|genre|. Offers|an|interesting|look|at|the|rapidly|changing|face|of|Beijing|. A|solid|,|psychological|action|film|from|Hong|Kong|. See|it|now|,|before|the|inevitable|Hollywood|remake|flattens|out|all|its|odd|,|intriguing|wrinkles|. Holm|does|his|sly|,|intricate|magic|,|and|Iben|Hjelje|is|entirely|appealing|as|Pumpkin|. An|enjoyable|feel-good|family|comedy|regardless|of|race|. Features|what|is|surely|the|funniest|and|most|accurate|depiction|of|writer|'s|block|ever|. It|would|take|a|complete|moron|to|foul|up|a|screen|adaptation|of|Oscar|Wilde|'s|classic|satire|. It|'s|bright|,|pristine|style|and|bold|colors|make|it|as|much|fun|as|reading|an|oversized|picture|book|before|bedtime|. In|the|long|,|dishonorable|history|of|quickie|teen-pop|exploitation|,|Like|Mike|stands|out|for|its|only|partly|synthetic|decency|. Bravo|for|history|rewritten|,|and|for|the|uncompromising|knowledge|that|the|highest|power|of|all|is|the|power|of|love|. Lead|actress|Gaï|,|she|of|the|impossibly|long|limbs|and|sweetly|conspiratorial|smile|,|is|a|towering|siren|. Even|if|you|'ve|seen|``|Stomp|''|(|the|stage|show|)|,|you|still|have|to|see|this|! ...|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|. It|'s|a|setup|so|easy|it|borders|on|facile|,|but|keeping|the|film|from|cheap-shot|mediocrity|is|its|crack|cast|. Rife|with|the|rueful|,|wry|humor|springing|out|of|Yiddish|culture|and|language|. A|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|. Rubbo|'s|humorously|tendentious|intervention|into|the|who-wrote-Shakespeare|controversy|. Cantet|beautifully|illuminates|what|it|means|sometimes|to|be|inside|looking|out|,|and|at|other|times|outside|looking|in|. K-19|:|The|Widowmaker|is|a|great|yarn|. It|'s|as|raw|and|action-packed|an|experience|as|a|ringside|seat|at|a|tough-man|contest|. Evokes|the|frustration|,|the|awkwardness|and|the|euphoria|of|growing|up|,|without|relying|on|the|usual|tropes|. A|brilliant|gag|at|the|expense|of|those|who|paid|for|it|and|those|who|pay|to|see|it|. Visually|striking|and|viscerally|repellent|. Overcomes|its|visual|hideousness|with|a|sharp|script|and|strong|performances|. Astonishingly|skillful|and|moving|...|it|could|become|a|historically|significant|work|as|well|as|a|masterfully|made|one|. Beautifully|crafted|and|cooly|unsettling|...|recreates|the|atmosphere|of|the|crime|expertly|. The|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|. Although|it|does|n't|always|hang|together|--|violence|and|whimsy|do|n't|combine|easily|--|``|Cherish|''|certainly|is|n't|dull|. The|sight|of|the|spaceship|on|the|launching|pad|is|duly|impressive|in|IMAX|dimensions|,|as|are|shots|of|the|astronauts|floating|in|their|cabins|. Time|is|a|beautiful|film|to|watch|,|an|interesting|and|at|times|captivating|take|on|loss|and|loneliness|. An|intriguing|look|at|the|French|film|industry|during|the|German|occupation|;|its|most|delightful|moments|come|when|various|characters|express|their|quirky|inner|selves|. A|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|. Judging|by|those|standards|,|`|Scratch|'|is|a|pretty|decent|little|documentary|. Fubar|is|very|funny|,|but|not|always|in|a|laugh-out-loud|way|. A|diverse|and|astonishingly|articulate|cast|of|Palestinian|and|Israeli|children|. Slight|but|enjoyable|documentary|. `|The|film|is|stark|,|straightforward|and|deadly|...|an|unnatural|calm|that|'s|occasionally|shaken|by|...|blasts|of|rage|,|and|later|,|violent|jealousy|.|' Call|this|The|Full|Monty|on|ice|,|the|underdog|sports|team|formula|redux|. Unfolds|in|a|low-key|,|organic|way|that|encourages|you|to|accept|it|as|life|and|go|with|its|flow|. A|beguiling|evocation|of|the|quality|that|keeps|Dickens|evergreen|:|the|exuberant|openness|with|which|he|expresses|our|most|basic|emotions|. The|heat|of|the|moment|prevails|. It|cooks|Conduct|in|a|low|,|smoky|and|inviting|sizzle|. A|riveting|story|well|told|. Denis|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|. A|compelling|pre-WWII|drama|with|vivid|characters|and|a|warm|,|moving|message|. The|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|. Pretty|good|little|movie|. By|turns|touching|,|raucously|amusing|,|uncomfortable|,|and|,|yes|,|even|sexy|,|Never|Again|is|a|welcome|and|heartwarming|addition|to|the|romantic|comedy|genre|. If|you|have|n'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|... (|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|. An|entertaining|mix|of|period|drama|and|flat-out|farce|that|should|please|history|fans|. Canada|'s|arctic|light|shines|bright|on|this|frozen|tundra|soap|opera|that|breathes|extraordinary|life|into|the|private|existence|of|the|Inuit|people|. The|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|. Alternately|hilarious|and|sad|,|aggravating|and|soulful|,|scathing|and|joyous|. It|'s|a|masterpeice|. The|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|. Though|it|lacks|the|utter|authority|of|a|genre|gem|,|there|'s|a|certain|robustness|to|this|engaging|mix|of|love|and|bloodletting|. A|conventional|,|but|well-crafted|film|about|a|historic|legal|battle|in|Ireland|over|a|man|'s|right|to|raise|his|own|children|. Yes|,|it|'s|as|good|as|you|remember|. In|fact|,|even|better|. Hartley|adds|enough|quirky|and|satirical|touches|in|the|screenplay|to|keep|the|film|entertaining|. An|uncomfortable|movie|,|suffocating|and|sometimes|almost|senseless|,|The|Grey|Zone|does|have|a|center|,|though|a|morbid|one|. This|is|a|harrowing|movie|about|how|parents|know|where|all|the|buttons|are|,|and|how|to|push|them|. A|stirring|road|movie|. One|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|. Insanely|hilarious|! I|have|n't|laughed|that|hard|in|years|! Anyone|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|. It|'s|a|tour|de|force|,|written|and|directed|so|quietly|that|it|'s|implosion|rather|than|explosion|you|fear|. It|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|. If|``|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|. This|may|be|Dover|Kosashvili|'s|feature|directing|debut|,|but|it|looks|an|awful|lot|like|life|--|gritty|,|awkward|and|ironic|. This|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|. See|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|. ...|``|Bowling|for|Columbine|''|remains|a|disquieting|and|thought-provoking|film|... Even|though|it|is|infused|with|the|sensibility|of|a|video|director|,|it|does|n't|make|for|completely|empty|entertainment But|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|. Talk|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|. Star\/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|. A|truly|wonderful|tale|combined|with|stunning|animation|. A|low-key|labor|of|love|that|strikes|a|very|resonant|chord|. An|average|kid-empowerment|fantasy|with|slightly|above-average|brains|. Confessions|is|n't|always|coherent|,|but|it|'s|sharply|comic|and|surprisingly|touching|,|so|hold|the|gong|. While|Guzmán|frustratingly|refuses|to|give|Pinochet|'s|crimes|a|political|context|,|his|distance|from|the|material|is|mostly|admirable|. ...|a|story|,|an|old|and|scary|one|,|about|the|monsters|we|make|,|and|the|vengeance|they|take|. A|sentimental|but|entirely|irresistible|portrait|of|three|aging|sisters|. White|Oleander|may|leave|you|rolling|your|eyes|in|the|dark|,|but|that|does|n't|mean|you|wo|n't|like|looking|at|it|. In|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|. The|most|brilliant|work|in|this|genre|since|the|1984|uncut|version|of|Sergio|Leone|'s|flawed|but|staggering|Once|Upon|a|Time|in|America|. It|looks|closely|,|insightfully|at|fragile|,|complex|relationships|. Not|a|bad|choice|here|,|assuming|that|...|the|air-conditioning|in|the|theater|is|working|properly|. A|fine|effort|,|an|interesting|topic|,|some|intriguing|characters|and|a|sad|ending|. Certainly|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|. It|must|be|the|end|of|the|world|:|the|best|film|so|far|this|year|is|a|franchise|sequel|starring|Wesley|Snipes|. There|are|moments|of|hilarity|to|be|had|. A|hypnotic|portrait|of|this|sad|,|compulsive|life|. (|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|. One|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|. Return|to|Never|Land|is|reliable|,|standard|Disney|animated|fare|,|with|enough|creative|energy|and|wit|to|entertain|all|ages|. Michael|Moore|'s|latest|documentary|about|America|'s|thirst|for|violence|is|his|best|film|yet|... Suffice|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|. Like|a|Tarantino|movie|with|heart|,|Alias|Betty|is|richly|detailed|,|deftly|executed|and|utterly|absorbing|. Marvelously|entertaining|and|deliriously|joyous|documentary|. A|brisk|,|reverent|,|and|subtly|different|sequel|. A|movie|I|loved|on|first|sight|and|,|even|more|important|,|love|in|remembrance|. Deserves|a|place|of|honor|next|to|Nanook|as|a|landmark|in|film|history|. Murderous|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|... This|is|an|undeniably|intriguing|film|from|an|adventurous|young|talent|who|finds|his|inspiration|on|the|fringes|of|the|American|underground|. The|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|. This|is|lightweight|filmmaking|,|to|be|sure|,|but|it|'s|pleasant|enough|--|and|oozing|with|attractive|men|. At|its|most|basic|,|this|cartoon|adventure|is|that|wind-in-the-hair|exhilarating|. Fans|of|critics|'|darling|band|Wilco|will|marvel|at|the|sometimes|murky|,|always|brooding|look|of|I|Am|Trying|to|Break|Your|Heart|. The|film|presents|visceral|and|dangerously|honest|revelations|about|the|men|and|machines|behind|the|curtains|of|our|planet|. (|Gosling|'s|)|combination|of|explosive|physical|energy|and|convincing|intelligence|helps|create|a|complex|,|unpredictable|character|. Confounding|because|it|solemnly|advances|a|daringly|preposterous|thesis|. Acting|can|not|be|acted|. Fulford-Wierzbicki|...|deftly|captures|the|wise-beyond-her-years|teen|. A|wild|ride|juiced|with|enough|energy|and|excitement|for|at|least|three|films|. It|'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|. The|movie|is|not|as|terrible|as|the|synergistic|impulse|that|created|it|. A|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|. Less|an|examination|of|neo-Nazism|than|a|probe|into|the|nature|of|faith|itself|. A|moving|and|weighty|depiction|of|one|family|'s|attempts|to|heal|after|the|death|of|a|child|. I|do|n't|think|most|of|the|people|who|loved|the|1989|Paradiso|will|prefer|this|new|version|. But|I|do|. A|zinger-filled|crowd-pleaser|that|open-minded|Elvis|fans|(|but|by|no|means|all|)|will|have|fun|with|. Diggs|and|Lathan|are|among|the|chief|reasons|Brown|Sugar|is|such|a|sweet|and|sexy|film|. Entirely|suspenseful|,|extremely|well-paced|and|ultimately|...|dare|I|say|,|entertaining|! The|riveting|performances|by|the|incredibly|flexible|cast|make|Love|a|joy|to|behold|. Terrific|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|. With|an|unflappable|air|of|decadent|urbanity|,|Everett|remains|a|perfect|Wildean|actor|,|and|a|relaxed|Firth|displays|impeccable|comic|skill|. The|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|. Very|well|written|and|directed|with|brutal|honesty|and|respect|for|its|audience|. Wonderful|fencing|scenes|and|an|exciting|plot|make|this|an|eminently|engrossing|film|. It|'s|pretty|linear|and|only|makeup-deep|,|but|Bogdanovich|ties|it|together|with|efficiency|and|an|affection|for|the|period|. A|surprisingly|charming|and|even|witty|match|for|the|best|of|Hollywood|'s|comic-book|adaptations|. This|is|a|superior|horror|flick|. Adaptation|is|simply|brilliant|. Smart|and|alert|,|Thirteen|Conversations|About|One|Thing|is|a|small|gem|. The|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|. A|haunting|tale|of|murder|and|mayhem|. I|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|. It|'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|. One|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|. Ian|Holm|conquers|France|as|an|earthy|Napoleon Offers|big|,|fat|,|dumb|laughs|that|may|make|you|hate|yourself|for|giving|in|. Ah|,|what|the|hell|. (|Sports|)|admirable|energy|,|full-bodied|characterizations|and|narrative|urgency|. A|portrait|of|an|artist|. Directors|Brett|Morgen|and|Nanette|Burstein|have|put|together|a|bold|biographical|fantasia|. The|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|. A|tremendous|piece|of|work|. A|delightful|,|if|minor|,|pastry|of|a|movie|. While|obviously|aimed|at|kids|,|The|Country|Bears|...|should|keep|parents|amused|with|its|low|groan-to-guffaw|ratio|. LaBute|masterfully|balances|both|Traditional|or|Modern|stories|together|in|a|manner|that|one|never|overwhelms|the|other|. Something|for|everyone|. Irwin|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|. Leigh|succeeds|in|delivering|a|dramatic|slap|in|the|face|that|'s|simultaneously|painful|and|refreshing|. Not|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|. `|Film|aficionados|can|not|help|but|love|Cinema|Paradiso|,|whether|the|original|version|or|new|Director|'s|Cut|.|' A|fascinating|glimpse|into|an|insular|world|that|gives|the|lie|to|many|clichés|and|showcases|a|group|of|dedicated|artists|. It|'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|. Contradicts|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|. Could|I|have|been|more|geeked|when|I|heard|that|Apollo|13|was|going|to|be|released|in|IMAX|format|? In|a|word|:|No.|. Murderous|Maids|has|a|lot|going|for|it|,|not|least|the|brilliant|performances|by|Testud|...|and|Parmentier|. Filmmaker|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|. There|are|a|couple|of|things|that|elevate|``|Glory|''|above|most|of|its|ilk|,|most|notably|the|mere|presence|of|Duvall|. It|'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|. (|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|. A|breezy|blend|of|art|,|history|,|esoteric|musings|and|philosophy|. Kids|will|love|its|fantasy|and|adventure|,|and|grownups|should|appreciate|its|whimsical|humor|. Tsai|Ming-liang|'s|ghosts|are|painfully|aware|of|their|not-being|. Leaping|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|. Sean|Penn|,|you|owe|Nicolas|Cage|an|apology|. The|performances|are|uniformly|good|. She|'s|all-powerful|,|a|voice|for|a|pop-cyber|culture|that|feeds|on|her|Bjorkness|. It|'s|a|perfect|show|of|respect|to|just|one|of|those|underrated|professionals|who|deserve|but|rarely|receive|it|. For|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|. The|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|. This|in-depth|study|of|important|developments|of|the|computer|industry|should|make|it|required|viewing|in|university|computer|science|departments|for|years|to|come|. It|shows|us|a|slice|of|life|that|'s|very|different|from|our|own|and|yet|instantly|recognizable|. A|wonderfully|speculative|character|study|that|made|up|for|its|rather|slow|beginning|by|drawing|me|into|the|picture|. Has|its|share|of|arresting|images|. Leave|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|. Reign|of|Fire|just|might|go|down|as|one|of|the|all-time|great|apocalypse|movies|. A|smart|little|indie|. Payne|has|created|a|beautiful|canvas|,|and|Nicholson|proves|once|again|that|he|'s|the|best|brush|in|the|business|. Try|as|you|might|to|resist|,|if|you|'ve|got|a|place|in|your|heart|for|Smokey|Robinson|,|this|movie|will|worm|its|way|there|. A|riveting|profile|of|law|enforcement|,|and|a|visceral|,|nasty|journey|into|an|urban|Hades|. Director|Douglas|McGrath|takes|on|Nickleby|with|all|the|halfhearted|zeal|of|an|8th|grade|boy|delving|into|required|reading|. Stands|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|. I|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|. With|not|a|lot|of|help|from|the|screenplay|(|proficient|,|but|singularly|cursory|)|,|(|Testud|)|acts|with|the|feral|intensity|of|the|young|Bette|Davis|. It|'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|. Slow|and|ponderous|,|but|Rohmer|'s|drama|builds|to|an|intense|indoor|drama|about|compassion|,|sacrifice|,|and|Christian|love|in|the|face|of|political|corruption|. If|you|'re|not|totally|weirded|-|out|by|the|notion|of|cinema|as|community-therapy|spectacle|,|Quitting|hits|home|with|disorienting|force|. Austin|Powers|for|the|most|part|is|extremely|funny|,|the|first|part|making|up|for|any|flaws|that|come|later|. While|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|. Cho|continues|her|exploration|of|the|outer|limits|of|raunch|with|considerable|brio|. Elvira|fans|could|hardly|ask|for|more|. A|canny|,|derivative|,|wildly|gruesome|portrait|of|a|London|sociopath|who|'s|the|scariest|of|sadists|. The|movie|should|be|credited|with|remembering|his|victims|. Fast-paced|and|wonderfully|edited|,|the|film|is|extremely|thorough|. A|bracing|,|unblinking|work|that|serves|as|a|painful|elegy|and|sobering|cautionary|tale|. Hashiguchi|uses|the|situation|to|evoke|a|Japan|bustling|atop|an|undercurrent|of|loneliness|and|isolation|. As|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|. My|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|. Few|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|. Another|love|story|in|2002|'s|remarkable|procession|of|sweeping|pictures|that|have|reinvigorated|the|romance|genre|. It|'s|another|retelling|of|Alexandre|Dumas|'|classic|. Why|? Who|knows|,|but|it|works|under|the|direction|of|Kevin|Reynolds|. (|F|)|rom|the|performances|and|the|cinematography|to|the|outstanding|soundtrack|and|unconventional|narrative|,|the|film|is|blazingly|alive|and|admirable|on|many|levels|. Shiri|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|. Provides|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|. A|penetrating|,|potent|exploration|of|sanctimony|,|self-awareness|,|self-hatred|and|self-determination|. This|is|n't|a|retooled|genre|piece|,|the|tale|of|a|guy|and|his|gun|,|but|an|amiably|idiosyncratic|work|. Overall|,|it|'s|a|very|entertaining|,|thought-provoking|film|with|a|simple|message|:|God|is|love|. It|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|. Although|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|. Jeong-Hyang|Lee|'s|film|is|deceptively|simple|,|deeply|satisfying|. The|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|. George|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|. Even|when|it|drags|,|we|are|forced|to|reflect|that|its|visual|imagination|is|breathtaking Although|commentary|on|Nachtwey|is|provided|...|it|'s|the|image|that|really|tells|the|tale|. A|life-size|reenactment|of|those|Jack|Chick|cartoon|tracts|that|always|ended|with|some|hippie|getting|tossed|into|the|lake|of|fire|. Grainy|photography|mars|an|otherwise|delightful|comedy|of|errors|. this|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|. The|film|is|impressive|for|the|sights|and|sounds|of|the|wondrous|beats|the|world|has|to|offer|. Daily|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|. ...|in|no|way|original|,|or|even|all|that|memorable|,|but|as|downtown|Saturday|matinee|brain|candy|,|it|does|n't|disappoint|. Clever|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|. Cremaster|3|is|at|once|a|tough|pill|to|swallow|and|a|minor|miracle|of|self-expression|. Sex|is|one|of|those|films|that|aims|to|confuse|. Compared|to|his|series|of|spectacular|belly|flops|both|on|and|off|the|screen|,|RunTelDat|is|something|of|a|triumph|. (|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|. The|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|. In|his|debut|as|a|director|,|Washington|has|a|sure|hand|. His|work|with|actors|is|particularly|impressive|. A|generous|,|inspiring|film|that|unfolds|with|grace|and|humor|and|gradually|becomes|a|testament|to|faith|. Delivers|the|sexy|razzle-dazzle|that|everyone|,|especially|movie|musical|fans|,|has|been|hoping|for|. Vincent|Gallo|is|right|at|home|in|this|French|shocker|playing|his|usual|bad|boy|weirdo|role|. Fierce|,|glaring|and|unforgettable|. Cletis|is|playful|but|highly|studied|and|dependent|for|its|success|on|a|patient|viewer|. Like|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|. Campanella|gets|the|tone|just|right|--|funny|in|the|middle|of|sad|in|the|middle|of|hopeful|. Either|a|fascinating|study|of|the|relationship|between|mothers|and|their|children|or|a|disturbing|story|about|sociopaths|and|their|marks|. ...|gripping|and|handsome|execution|,|(|but|)|there|is|n't|much|about|K-19|that|'s|unique|or|memorable|. Effective|in|all|its|aspects|,|Margarita|Happy|Hour|represents|an|auspicious|feature|debut|for|Chaiken|. The|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|. Standing|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|. Not|the|best|Herzog|perhaps|,|but|unmistakably|Herzog|. Enjoyably|fast-moving|,|hard-hitting|documentary|. Rehearsals|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|. The|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|. This|is|a|stunning|film|,|a|one-of-a-kind|tour|de|force|. (|Cho|'s|face|is|)|an|amazing|slapstick|instrument|,|creating|a|scrapbook|of|living|mug|shots|. It|'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|. While|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|. An|extremely|funny|,|ultimately|heartbreaking|look|at|life|in|contemporary|China|. Your|response|to|its|new|sequel|,|Analyze|That|,|may|hinge|on|what|you|thought|of|the|first|film|. Davis|is|funny|,|charming|and|quirky|in|her|feature|film|acting|debut|as|Amy|. Bloody|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|ca|n't|possibly|be|enough|. A|lively|and|engaging|examination|of|how|similar|obsessions|can|dominate|a|family|. In|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|. Faithful|without|being|forceful|,|sad|without|being|shrill|,|``|A|Walk|to|Remember|''|succeeds|through|sincerity|. The|film|is|a|masterpiece|of|nuance|and|characterization|,|marred|only|by|an|inexplicable|,|utterly|distracting|blunder|at|the|very|end|. The|film|is|full|of|charm|. The|movie|is|well|crafted|,|and|well|executed|. If|you|'re|paying|attention|,|the|``|big|twists|''|are|pretty|easy|to|guess|-|but|that|does|n't|make|the|movie|any|less|entertaining|. One|of|those|unassuming|films|that|sneaks|up|on|you|and|stays|with|you|long|after|you|have|left|the|theatre|. ...|Pray|does|n't|have|a|passion|for|the|material|. He|nonetheless|appreciates|the|art|and|reveals|a|music|scene|that|transcends|culture|and|race|. The|one-liners|are|snappy|,|the|situations|volatile|and|the|comic|opportunities|richly|rewarded|. It|'s|anchored|by|splendid|performances|from|an|honored|screen|veteran|and|a|sparkling|newcomer|who|instantly|transform|themselves|into|a|believable|mother\/daughter|pair|. Fathers|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|. This|sci-fi|techno-sex|thriller|starts|out|bizarre|and|just|keeps|getting|weirder|. Last|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|. A|slight|but|sweet|film|. Writer\/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|. It|is|a|happy|,|heady|jumble|of|thought|and|storytelling|,|an|insane|comic|undertaking|that|ultimately|coheres|into|a|sane|and|breathtakingly|creative|film|. This|new|Time|Machine|is|hardly|perfect|...|yet|it|proves|surprisingly|serviceable|. Even|at|its|worst|,|it|'s|not|half-bad|. Almost|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|... Once|folks|started|hanging|out|at|the|barbershop|,|they|never|wanted|to|leave|. Chances|are|you|wo|n't|,|either|. George|Lucas|returns|as|a|visionary|with|a|tale|full|of|nuance|and|character|dimension|. Can|be|viewed|as|pure|composition|and|form|--|film|as|music An|extraordinary|dramatic|experience|. Every|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|. If|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|. It|'s|a|treat|watching|Shaw|,|a|British|stage|icon|,|melting|under|the|heat|of|Phocion|'s|attentions|. All|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|. Narc|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|. Me|Without|You|has|a|bracing|truth|that|'s|refreshing|after|the|phoniness|of|female-bonding|pictures|like|Divine|Secrets|of|the|Ya-Ya|Sisterhood|. It|'s|a|strange|film|,|one|that|was|hard|for|me|to|warm|up|to|. Goes|a|long|way|on|hedonistic|gusto|. The|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|. The|Scorpion|King|is|more|fun|than|Conan|the|Barbarian|. If|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|. Unexpected|moments|of|authentically|impulsive|humor|are|the|hallmark|of|this|bittersweet|,|uncommonly|sincere|movie|that|portrays|the|frank|humanity|of|...|emotional|recovery|. Jacquot|has|filmed|the|opera|exactly|as|the|libretto|directs|,|ideally|capturing|the|opera|'s|drama|and|lyricism|. This|is|a|sincerely|crafted|picture|that|deserves|to|emerge|from|the|traffic|jam|of|holiday|movies|. I|liked|it|because|it|was|so|endlessly|,|grotesquely|,|inventive|. Audiard|successfully|maintains|suspense|on|different|levels|throughout|a|film|that|is|both|gripping|and|compelling|. Credit|director|Ramsay|for|taking|the|sometimes|improbable|story|and|making|it|feel|realistic|. This|is|DiCaprio|'s|best|performance|in|anything|ever|,|and|easily|the|most|watchable|film|of|the|year|. Witherspoon|puts|to|rest|her|valley-girl|image|,|but|it|'s|Dench|who|really|steals|the|show|. Even|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|. While|dutifully|pulling|on|heartstrings|,|directors|Dean|Deblois|and|Chris|Sanders|valiantly|keep|punching|up|the|mix|. Ambitious|,|unsettling|psychodrama|that|takes|full|,|chilling|advantage|of|its|rough-around-the-edges|,|low-budget|constraints|. Eric|Byler|'s|nuanced|pic|avoids|easy|sentiments|and|explanations|... Manages|to|be|wholesome|and|subversive|at|the|same|time|. When|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|. The|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|. Blithely|anachronistic|and|slyly|achronological|. This|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|! Triumph|of|Love|is|a|very|silly|movie|,|but|the|silliness|has|a|pedigree|. Discursive|but|oddly|riveting|documentary|. The|movie|has|no|respect|for|laws|,|political|correctness|or|common|decency|,|but|it|displays|something|more|important|:|respect|for|its|flawed|,|crazy|people|. On|its|own|,|Big|Trouble|could|be|considered|a|funny|little|film|. An|undeniably|gorgeous|,|terminally|smitten|document|of|a|troubadour|,|his|acolytes|,|and|the|triumph|of|his|band|. This|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|. A|beautifully|observed|character|piece|. A|coming-of-age|movie|that|Hollywood|would|n't|have|the|guts|to|make|. It|is|quite|a|vision|. There|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|. A|bittersweet|drama|about|the|limbo|of|grief|and|how|truth-telling|can|open|the|door|to|liberation|. A|strong|and|confident|work|which|works|so|well|for|the|first|89|minutes|,|but|ends|so|horrendously|confusing|in|the|final|two Salma|goes|native|and|she|'s|never|been|better|in|this|colorful|bio-pic|of|a|Mexican|icon|. Filled|with|Alexandre|Desplat|'s|haunting|and|sublime|music|,|the|movie|completely|transfixes|the|audience|. As|chilling|and|fascinating|as|Philippe|Mora|'s|modern|Hitler-study|,|Snide|and|Prejudice|. An|hour|and|a|half|of|joyful|solo|performance|. Strange|and|beautiful|film|. No|worse|a|film|than|Breaking|Out|,|and|Breaking|Out|was|utterly|charming|. Parker|can|not|sustain|the|buoyant|energy|level|of|the|film|'s|city|beginnings|into|its|country|conclusion|' ...|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|.|' ...|a|guiltless|film|for|nice|evening|out|. Deflated|ending|aside|,|there|'s|much|to|recommend|the|film|. It|'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|. Performances|all|around|are|tops|,|with|the|two|leads|delivering|Oscar-caliber|performances|. Everything|about|The|Quiet|American|is|good|,|except|its|timing|. A|savage|John|Waters-like|humor|that|dances|on|the|edge|of|tastelessness|without|ever|quite|falling|over|. At|once|a|testament|to|the|divine|calling|of|education|and|a|demonstration|of|the|painstaking|process|of|imparting|knowledge|. May|seriously|impair|your|ability|to|ever|again|maintain|a|straight|face|while|speaking|to|a|highway|patrolman|. It|'s|an|interesting|effort|(|particularly|for|JFK|conspiracy|nuts|)|,|and|Barry|'s|cold-fish|act|makes|the|experience|worthwhile|. They|'re|just|a|couple|of|cops|in|Copmovieland|,|these|two|,|but|in|Narc|,|they|find|new|routes|through|a|familiar|neighborhood|. Brings|awareness|to|an|issue|often|overlooked|--|women|'s|depression|. It|'s|a|shame|the|marvelous|first|101|minutes|have|to|be|combined|with|the|misconceived|final|5|. It|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|. You|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|. Foster|and|Whitaker|are|especially|fine|. She|is|a|lioness|,|protecting|her|cub|,|and|he|a|reluctant|villain|,|incapable|of|controlling|his|crew|. Undoubtedly|the|scariest|movie|ever|made|about|tattoos|. A|movie|that|will|wear|you|out|and|make|you|misty|even|when|you|do|n't|want|to|be|. Not|only|better|than|its|predecessor|,|it|may|rate|as|the|most|magical|and|most|fun|family|fare|of|this|or|any|recent|holiday|season|. Though|the|story|...|is|hackneyed|,|the|characters|have|a|freshness|and|modesty|that|transcends|their|predicament|. Although|Frailty|fits|into|a|classic|genre|,|in|its|script|and|execution|it|is|a|remarkably|original|work|. If|this|movie|leaves|you|cool|,|it|also|leaves|you|intriguingly|contemplative|. The|climactic|events|are|so|well|realized|that|you|may|forget|all|about|the|original|conflict|,|just|like|the|movie|does A|rude|black|comedy|about|the|catalytic|effect|a|holy|fool|has|upon|those|around|him|in|the|cutthroat|world|of|children|'s|television|. All|comedy|is|subversive|,|but|this|unrelenting|bleak|insistence|on|opting|out|of|any|opportunity|for|finding|meaning|in|relationships|or|work|just|becomes|sad|. If|a|horror|movie|'s|primary|goal|is|to|frighten|and|disturb|,|then|They|works|spectacularly|well|...|A|shiver-inducing|,|nerve-rattling|ride|. A|playful|Iranian|parable|about|openness|,|particularly|the|need|for|people|of|diverse|political|perspectives|to|get|along|despite|their|ideological|differences|. Brilliantly|written|and|well-acted|,|Yellow|Asphalt|is|an|uncompromising|film|. That|`|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|)|... Personal|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|. A|fascinating|literary|mystery|story|with|multiple|strands|about|the|controversy|of|who|really|wrote|Shakespeare|'s|plays|. Throughout|,|Mr.|Audiard|'s|direction|is|fluid|and|quick|. A|dashing|and|absorbing|outing|with|one|of|France|'s|most|inventive|directors|. It|'s|a|fine|,|old-fashioned-movie|movie|,|which|is|to|say|it|'s|unburdened|by|pretensions|to|great|artistic|significance|. ...|flat-out|amusing|,|sometimes|endearing|and|often|fabulous|,|with|a|solid|cast|,|noteworthy|characters|,|delicious|dialogue|and|a|wide|supply|of|effective|sight|gags|. The|Trials|of|Henry|Kissinger|is|a|remarkable|piece|of|filmmaking|...|because|you|get|it|. Nachtwey|clears|the|cynicism|right|out|of|you|. He|makes|you|realize|that|deep|inside|righteousness|can|be|found|a|tough|beauty|. What|it|lacks|in|substance|it|makes|up|for|in|heart|. Robert|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|. With|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 In|Auteil|'s|less|dramatic|but|equally|incisive|performance|,|he|'s|a|charismatic|charmer|likely|to|seduce|and|conquer|. The|heart|of|the|film|is|a|touching|reflection|on|aging|,|suffering|and|the|prospect|of|death|. Will|you|go|ape|over|this|movie|? Well|,|it|probably|wo|n't|have|you|swinging|from|the|trees|hooting|it|'s|praises|,|but|it|'s|definitely|worth|taking|a|look|. Its|director|'s|most|substantial|feature|for|some|time|. Fontaine|'s|direction|,|especially|her|agreeably|startling|use|of|close-ups|and|her|grace|with|a|moving|camera|,|creates|sheerly|cinematic|appeal|. The|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|. This|movie|is|to|be|cherished|. ...|a|visually|seductive|,|unrepentantly|trashy|take|on|Rice|'s|second|installment|of|her|Vampire|Chronicles|. The|story|'s|scope|and|pageantry|are|mesmerizing|,|and|Mr.|Day-Lewis|roars|with|leonine|power|. P.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|. Twenty|years|later|,|E.T.|is|still|a|cinematic|touchstone|. This|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|. It|'s|virtually|impossible|to|like|any|of|these|despicable|characters|. This|is|mostly|well-constructed|fluff|,|which|is|all|it|seems|intended|to|be|. Even|through|its|flaws|,|Revolution|#|9|proves|to|be|a|compelling|,|interestingly|told|film|. The|best|way|to|describe|it|is|as|a|cross|between|Paul|Thomas|Anderson|'s|Magnolia|and|David|Lynch|'s|Mulholland|Dr. Schepisi|,|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|. Watching|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|. There|is|no|denying|the|power|of|Polanski|'s|film|... The|movie|is|amateurish|,|but|it|'s|a|minor|treat|. This|charming|but|slight|tale|has|warmth|,|wit|and|interesting|characters|compassionately|portrayed|. Offers|a|persuasive|look|at|a|defeated|but|defiant|nation|in|flux|. A|return|to|pure|Disney|magic|and|is|enjoyable|family|fare|. Takes|a|fresh|and|absorbing|look|at|a|figure|whose|legacy|had|begun|to|bronze|. A|triumph|of|pure|craft|and|passionate|heart|. Gosling|creates|a|staggeringly|compelling|character|,|a|young|man|whose|sharp|intellect|is|at|the|very|root|of|his|contradictory|,|self-hating|,|self-destructive|ways|. Witty|and|often|surprising|,|a|dark|little|morality|tale|disguised|as|a|romantic|comedy|. Even|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|. Got|a|David|Lynch|jones|? Then|you|'d|do|well|to|check|this|one|out|because|it|'s|straight|up|Twin|Peaks|action|... Astonishing|...|(|frames|)|profound|ethical|and|philosophical|questions|in|the|form|of|dazzling|pop|entertainment|. Take|Care|is|nicely|performed|by|a|quintet|of|actresses|,|but|nonetheless|it|drags|during|its|112-minute|length|. It|'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|. One|of|the|very|best|movies|ever|made|about|the|life|of|moviemaking|. Rarely|does|such|high-profile|talent|serve|such|literate|material|. An|elegant|and|sly|deadpan|comedy|. The|way|the|roundelay|of|partners|functions|,|and|the|interplay|within|partnerships|and|among|partnerships|and|the|general|air|of|Gator-bashing|are|consistently|delightful|. Land|,|people|and|narrative|flow|together|in|a|stark|portrait|of|motherhood|deferred|and|desire|explored|. `|Blue|Crush|'|swims|away|with|the|Sleeper|Movie|of|the|Summer|award|. You|'re|not|merely|watching|history|,|you|'re|engulfed|by|it|. A|chick|flick|for|guys|. It|'s|mildly|entertaining|,|especially|if|you|find|comfort|in|familiarity|. But|it|'s|hardly|a|necessary|enterprise|. The|Quiet|American|is|n't|a|bad|film|,|it|'s|just|one|that|could|easily|wait|for|your|pay|per|view|dollar|. As|home|movie|gone|haywire|,|it|'s|pretty|enjoyable|,|but|as|sexual|manifesto|,|I|'d|rather|listen|to|old|Tori|Amos|records|. In|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|. Like|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|. A|sensitive|,|cultivated|treatment|of|Greene|'s|work|as|well|as|a|remarkably|faithful|one|. It|'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|. It|'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|. What|makes|Barbershop|so|likable|,|with|all|its|flaws|,|is|that|it|has|none|of|the|pushiness|and|decibel|volume|of|most|contemporary|comedies|. Watching|these|two|actors|play|against|each|other|so|intensely|,|but|with|restraint|,|is|a|treat|. An|example|of|quiet|,|confident|craftsmanship|that|tells|a|sweet|,|charming|tale|of|intergalactic|friendship|. A|meditation|on|faith|and|madness|,|Frailty|is|blood-curdling|stuff|. The|production|design|,|score|and|choreography|are|simply|intoxicating|. A|comedy|that|is|warm|,|inviting|,|and|surprising|. So|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|. Suspend|your|disbelief|here|and|now|,|or|you|'ll|be|shaking|your|head|all|the|way|to|the|credits|. Trades|run-of-the-mill|revulsion|for|extreme|unease|. ...|one|of|the|more|influential|works|of|the|`|Korean|New|Wave|'|. Implicitly|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|. A|beautifully|tooled|action|thriller|about|love|and|terrorism|in|Korea|. Director-writer|Bille|August|...|depicts|this|relationship|with|economical|grace|,|letting|his|superb|actors|convey|Martin|'s|deterioration|and|Barbara|'s|sadness|--|and|,|occasionally|,|anger|. Victor|Rosa|is|Leguizamo|'s|best|movie|work|so|far|,|a|subtle|and|richly|internalized|performance|. Birthday|Girl|does|n't|try|to|surprise|us|with|plot|twists|,|but|rather|seems|to|enjoy|its|own|transparency|. smart|,|funny|and|just|honest|enough|to|provide|the|pleasures|of|a|slightly|naughty|,|just-above-average|off|-|Broadway|play|. Topics|that|could|make|a|sailor|blush|-|but|lots|of|laughs|. Michael|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|. A|fine|production|with|splendid|singing|by|Angela|Gheorghiu|,|Ruggero|Raimondi|,|and|Roberto|Alagna|. About|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|. None|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|? The|film|is|a|fierce|dance|of|destruction|. Its|flame-like|,|roiling|black-and-white|inspires|trembling|and|gratitude|. May|lack|the|pungent|bite|of|its|title|,|but|it|'s|an|enjoyable|trifle|nonetheless|. ...|manages|to|fall|closer|in|quality|to|Silence|than|to|the|abysmal|Hannibal|. You|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|. Diane|Lane|works|nothing|short|of|a|minor|miracle|in|Unfaithful|. Takashi|Miike|keeps|pushing|the|envelope|:|Ichi|the|Killer A|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|. Exhilarating|but|blatantly|biased|. Much|of|what|we|see|is|horrible|but|it|'s|also|undeniably|exceedingly|clever|. It|understands|,|in|a|way|that|speaks|forcefully|enough|about|the|mechanisms|of|poverty|to|transcend|the|rather|simplistic|filmmaking|. Ramsay|succeeds|primarily|with|her|typical|blend|of|unsettling|atmospherics|,|delivering|a|series|of|abrasive|,|stylized|sequences|that|burn|themselves|upon|the|viewer|'s|memory|. ...|a|thoughtful|what-if|for|the|heart|as|well|as|the|mind|. Like|its|bizarre|heroine|,|it|irrigates|our|souls|. Hawn|and|Sarandon|form|an|acting|bond|that|makes|The|Banger|Sisters|a|fascinating|character|study|with|laughs|to|spare|. It|'s|a|fun|adventure|movie|for|kids|(|of|all|ages|)|that|like|adventure|. A|very|capable|nailbiter|. Because|the|genre|is|well|established|,|what|makes|the|movie|fresh|is|smart|writing|,|skewed|characters|,|and|the|title|performance|by|Kieran|Culkin|. ``|White|Oleander|,|''|the|movie|,|is|akin|to|a|Reader|'s|Digest|condensed|version|of|the|source|material|. It|'s|like|going|to|a|house|party|and|watching|the|host|defend|himself|against|a|frothing|ex-girlfriend|. You|do|n't|want|to|call|the|cops|. You|want|to|call|Domino|'s|. What|'s|most|refreshing|about|Real|Women|Have|Curves|is|its|unforced|comedy-drama|and|its|relaxed|,|natural-seeming|actors|. The|low-key|direction|is|pleasingly|emphatic|in|this|properly|intense|,|claustrophobic|tale|of|obsessive|love|. Secretary|is|just|too|original|to|be|ignored|. That|rare|film|whose|real-life|basis|is|,|in|fact|,|so|interesting|that|no|embellishment|is|needed|. Smart|and|fun|,|but|far|more|witty|than|it|is|wise|. This|is|n'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|. Originality|ai|n't|on|the|menu|,|but|there|'s|never|a|dull|moment|in|the|giant|spider|invasion|comic|chiller|. Walter|Hill|'s|Undisputed|is|like|a|1940s|Warner|Bros.|. B|picture|,|and|I|mean|that|as|a|compliment|. This|one|is|not|nearly|as|dreadful|as|expected|. In|fact|,|it|'s|quite|fun|in|places|. With|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|. A|biopic|about|Crane|'s|life|in|the|classic|tradition|but|evolves|into|what|has|become|of|us|all|in|the|era|of|video|. The|best|of|the|Pierce|Brosnan|James|Bond|films|to|date|. Thanks|to|a|small|star|with|big|heart|,|this|family|film|sequel|is|plenty|of|fun|for|all|. While|the|now|72-year-old|Robert|Evans|been|slowed|down|by|a|stroke|,|he|has|at|least|one|more|story|to|tell|:|his|own|. It|'s|about|individual|moments|of|mood|,|and|an|aimlessness|that|'s|actually|sort|of|amazing|. The|people|in|Jessica|are|so|recognizable|and|true|that|,|as|in|real|life|,|we|'re|never|sure|how|things|will|work|out|. A|tone|poem|of|transgression|. Creeps|you|out|in|high|style|,|even|if|Nakata|did|it|better|. Rubbo|runs|through|a|remarkable|amount|of|material|in|the|film|'s|short|90|minutes|. Visually|engrossing|,|seldom|hammy|,|honorably|Mexican|and|burns|its|Kahlories|with|conviction|. This|is|Christmas|Future|for|a|lot|of|baby|boomers|. Despite|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|. Spider-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|. The|obnoxious|title|character|provides|the|drama|that|gives|added|clout|to|this|doc|. Anyone|who|welcomes|a|dash|of|the|avant-garde|fused|with|their|humor|should|take|pleasure|in|this|crazed|,|joyous|romp|of|a|film|. The|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|. Saddled|with|an|unwieldy|cast|of|characters|and|angles|,|but|the|payoff|is|powerful|and|revelatory|. It|'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|. Mr.|Caine|and|Mr.|Fraser|are|the|whole|show|here|,|with|their|memorable|and|resourceful|performances|. A|frustrating|yet|deeply|watchable|melodrama|that|makes|you|think|it|'s|a|tougher|picture|than|it|is|. A|giddy|and|provocative|sexual|romp|that|has|something|to|say|. (|Russell|)|makes|good|B|movies|(|The|Mask|,|The|Blob|)|,|and|The|Scorpion|King|more|than|ably|meets|those|standards|. Otto-Sallies|has|a|real|filmmaker|'s|eye|. This|is|a|smart|movie|that|knows|its|classical|music|,|knows|its|Freud|and|knows|its|Sade|. The|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|. Beautifully|reclaiming|the|story|of|Carmen|and|recreating|it|an|in|an|African|idiom|. The|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|. A|flawed|but|engrossing|thriller|. Demonstrates|the|unusual|power|of|thoughtful|,|subjective|filmmaking|. Expect|no|major|discoveries|,|nor|any|stylish|sizzle|,|but|the|film|sits|with|square|conviction|and|touching|good|sense|on|the|experience|of|its|women|. The|success|of|Undercover|Brother|is|found|in|its|ability|to|spoof|both|black|and|white|stereotypes|equally|. This|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|. Cox|creates|a|fluid|and|mesmerizing|sequence|of|images|to|match|the|words|of|Nijinsky|'s|diaries|. What|Bloody|Sunday|lacks|in|clarity|,|it|makes|up|for|with|a|great|,|fiery|passion|. Its|adult|themes|of|familial|separation|and|societal|betrayal|are|head|and|shoulders|above|much|of|the|director|'s|previous|popcorn|work|. Director|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|. The|film|grows|on|you|. And|how|. One|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|. Halloween|:|Resurrection|is|n't|exactly|quality|cinema|,|but|it|is|n't|nearly|as|terrible|as|it|cold|have|been|. As|banal|as|the|telling|may|be|--|and|at|times|,|All|My|Loved|Ones|more|than|flirts|with|kitsch|--|the|tale|commands|attention|. Romantic|comedy|and|Dogme|95|filmmaking|may|seem|odd|bedfellows|,|but|they|turn|out|to|be|delightfully|compatible|here|. The|most|wondrous|love|story|in|years|,|it|is|a|great|film|. Some|movies|suck|you|in|despite|their|flaws|,|and|Heaven|is|one|such|beast|. My|Wife|Is|an|Actress|works|as|well|as|it|does|because|(|the|leads|)|are|such|a|companionable|couple|. With|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|. Based|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|. Bouquet|gives|a|performance|that|is|masterly|. A|poignant|comedy|that|offers|food|for|thought|. ...|a|series|of|tales|told|with|the|intricate|preciseness|of|the|best|short|story|writing|. If|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|. This|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|. While|the|path|may|be|familiar|,|first-time|director|Denzel|Washington|and|a|top-notch|cast|manage|to|keep|things|interesting|. An|engaging|criminal|romp|that|will|have|viewers|guessing|just|who|'s|being|conned|right|up|to|the|finale|. The|picture|runs|a|mere|84|minutes|,|but|it|'s|no|glance|. It|'s|a|head-turner|--|thoughtfully|written|,|beautifully|read|and|,|finally|,|deeply|humanizing|. It|asks|nothing|of|the|audience|other|than|to|sit|back|and|enjoy|a|couple|of|great|actors|hamming|it|up|. It|is|as|uncompromising|as|it|is|nonjudgmental|,|and|makes|clear|that|a|prostitute|can|be|as|lonely|and|needy|as|any|of|the|clients|. ``|Barbershop|''|is|a|good-hearted|ensemble|comedy|with|a|variety|of|quirky|characters|and|an|engaging|story|. Tully|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|. I|like|this|movie|a|lot|. I|like|that|Smith|,|he|'s|not|making|fun|of|these|people|,|he|'s|not|laughing|at|them|. ...|the|implication|is|Kissinger|may|have|decided|that|--|when|it|comes|to|truncheoning|--|it|'s|better|to|give|than|to|receive|. `|What|'s|the|Russian|word|for|Wow|!?|' Kiarostami|has|crafted|a|deceptively|casual|ode|to|children|and|managed|to|convey|a|tiny|sense|of|hope|. I|had|more|fun|watching|Spy|than|I|had|with|most|of|the|big|summer|movies|. What|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 Murder|by|Numbers|'|is|n't|a|great|movie|,|but|it|'s|a|perfectly|acceptable|widget|. For|those|of|an|indulgent|,|slightly|sunbaked|and|summery|mind|,|Sex|and|Lucia|may|well|prove|diverting|enough|. What|(|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|. A|well-done|film|of|a|self-reflexive|,|philosophical|nature|. Texan|director|George|Ratliff|had|unlimited|access|to|families|and|church|meetings|,|and|he|delivers|fascinating|psychological|fare|. The|rich|performances|by|Friel|--|and|especially|Williams|,|an|American|actress|who|becomes|fully|English|--|round|out|the|square|edges|. The|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|. A|film|in|a|class|with|Spike|Lee|'s|masterful|Do|The|Right|Thing|. Jagger|,|Stoppard|and|director|Michael|Apted|...|deliver|a|riveting|and|surprisingly|romantic|ride|. Greengrass|(|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|. A|thought-provoking|and|often-funny|drama|about|isolation|. Whatever|one|makes|of|its|political|edge|,|this|is|beautiful|filmmaking|from|one|of|French|cinema|'s|master|craftsmen|. Mama|Africa|pretty|much|delivers|on|that|promise|. It|does|give|you|a|peek|. The|main|problem|being|that|it|'s|only|a|peek|. Roman|Polanski|'s|autobiographical|gesture|at|redemption|is|better|than|`|Shindler|'s|List|'|-|it|is|more|than|merely|a|Holocaust|movie|. A|perfectly|respectable|,|perfectly|inoffensive|,|easily|forgettable|film|. Romanek|'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|. Seeing|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|. Speaks|eloquently|about|the|symbiotic|relationship|between|art|and|life|. The|work|of|an|artist|tormented|by|his|heritage|,|using|his|storytelling|ability|to|honor|the|many|faceless|victims|. The|audacity|to|view|one|of|Shakespeare|'s|better|known|tragedies|as|a|dark|comedy|is|,|by|itself|,|deserving|of|discussion|. This|is|an|exercise|in|chilling|style|,|and|Twohy|films|the|sub|,|inside|and|out|,|with|an|eye|on|preserving|a|sense|of|mystery|. An|uncomfortable|experience|,|but|one|as|brave|and|challenging|as|you|could|possibly|expect|these|days|from|American|cinema|. Hailed|as|a|clever|exercise|in|neo-Hitchcockianism|,|this|clever|and|very|satisfying|picture|is|more|accurately|Chabrolian|. Funny|and|also|heartwarming|without|stooping|to|gooeyness|. At|the|film|'s|centre|is|a|precisely|layered|performance|by|an|actor|in|his|mid-seventies|,|Michel|Piccoli|. The|viewer|takes|great|pleasure|in|watching|the|resourceful|Molly|stay|a|step|ahead|of|her|pursuers|. With|amazing|finesse|,|the|film|shadows|Heidi|'s|trip|back|to|Vietnam|and|the|city|where|her|mother|,|Mai|Thi|Kim|,|still|lives|. Director|Charles|Stone|III|applies|more|detail|to|the|film|'s|music|than|to|the|story|line|;|what|'s|best|about|Drumline|is|its|energy|. A|heroic|tale|of|persistence|that|is|sure|to|win|viewers|'|hearts|. It|'s|all|a|rather|shapeless|good|time|... has|far|more|energy|,|wit|and|warmth|than|should|be|expected|from|any|movie|with|a|``|2|''|at|the|end|of|its|title|. A|little|better|than|Sorcerer|'s|Stone|. A|chilling|movie|without|oppressive|gore|. A|uniquely|sensual|metaphorical|dramatization|of|sexual|obsession|that|spends|a|bit|too|much|time|on|its|fairly|ludicrous|plot|. If|you|like|peace|,|you|'ll|like|Promises|. Be|prepared|to|cling|to|the|edge|of|your|seat|,|tense|with|suspense|. The|Ring|never|lets|you|off|the|hook|. Thumbs|up|to|Paxton|for|not|falling|into|the|Hollywood|trap|and|making|a|vanity|project|with|nothing|new|to|offer|. At|once|disarmingly|straightforward|and|strikingly|devious|. If|you|like|quirky|,|odd|movies|and\/or|the|ironic|,|here|'s|a|fun|one|. Sensitive|ensemble|performances|and|good|period|reconstruction|add|up|to|a|moving|tragedy|with|some|buoyant|human|moments|. It|'s|not|the|least|of|Afghan|tragedies|that|this|noble|warlord|would|be|consigned|to|the|dustbin|of|history|. It|'s|a|lovely|,|sad|dance|highlighted|by|Kwan|'s|unique|directing|style|. The|script|by|David|Koepp|is|perfectly|serviceable|and|because|he|gives|the|story|some|soul|...|he|elevates|the|experience|to|a|more|mythic|level|. This|is|a|visually|stunning|rumination|on|love|,|memory|,|history|and|the|war|between|art|and|commerce|. Short-story|quaint|,|touchingly|mending|a|child|'s|pain|for|his|dead|mother|via|communication|with|an|old|woman|straight|out|of|Eudora|Welty|. It|'s|always|fascinating|to|watch|Marker|the|essayist|at|work|. A|quiet|family|drama|with|a|little|bit|of|romance|and|a|dose|of|darkness|. The|tasteful|little|revision|works|wonders|,|enhancing|the|cultural|and|economic|subtext|,|bringing|richer|meaning|to|the|story|'s|morals|. Kosminsky|...|puts|enough|salt|into|the|wounds|of|the|tortured|and|self-conscious|material|to|make|it|sting|. One|of|the|greatest|films|I|'ve|ever|seen|. Its|gentle|,|touching|story|creeps|into|your|heart|. About|as|big|a|crowdpleaser|as|they|possibly|come|. Bound|to|appeal|to|women|looking|for|a|howlingly|trashy|time|. Even|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|. A|poignant|and|gently|humorous|parable|that|loves|its|characters|and|communicates|something|rather|beautiful|about|human|nature|. Real|Women|Have|Curves|does|n't|offer|any|easy|answers|. Vampire|epic|succeeds|as|spooky|action-packed|trash|of|the|highest|order|. One|of|the|funniest|motion|pictures|of|the|year|,|but|...|also|one|of|the|most|curiously|depressing|. While|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|. Like|the|chilled|breath|of|oral|storytelling|frozen|onto|film|. A|charmer|from|Belgium|. A|wild|,|endearing|,|masterful|documentary|. Jackie|Chan|movies|are|a|guilty|pleasure|-|he|'s|easy|to|like|and|always|leaves|us|laughing|. Brown|Sugar|signals|director|Rick|Famuyiwa|'s|emergence|as|an|articulate|,|grown-up|voice|in|African-American|cinema|. With|exquisite|craftsmanship|...|Olivier|Assayas|has|fashioned|an|absorbing|look|at|provincial|bourgeois|French|society|. It|'s|rare|for|any|movie|to|be|as|subtle|and|touching|as|The|Son|'s|Room|. It|has|a|way|of|seeping|into|your|consciousness|,|with|lingering|questions|about|what|the|film|is|really|getting|at|. Maelstrom|is|a|deliberately|unsteady|mixture|of|stylistic|elements|. (|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|. (|D|)|espite|its|familiar|subject|matter|,|Ice|Age|is|consistently|amusing|and|engrossing|... The|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 Assured|,|glossy|and|shot|through|with|brittle|desperation|. The|bottom|line|is|the|piece|works|brilliantly|. It|was|only|a|matter|of|time|before|some|savvy|producer|saw|the|potential|success|inherent|in|the|mixture|of|Bullock|Bubble|and|Hugh|Goo|. It|is|Scott|'s|convincing|portrayal|of|Roger|the|sad|cad|that|really|gives|the|film|its|oomph|. While|this|movie|,|by|necessity|,|lacks|Fellowship|'s|heart|,|Two|Towers|outdoes|its|spectacle|. Meyjes|...|has|done|his|homework|and|soaked|up|some|jazzy|new|revisionist|theories|about|the|origins|of|Nazi|politics|and|aesthetics|. Aside|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|. What|`|Dumb|and|Dumber|'|would|have|been|without|the|vulgarity|and|with|an|intelligent|,|life-affirming|script|. ...|a|vivid|,|thoughtful|,|unapologetically|raw|coming-of-age|tale|full|of|sex|,|drugs|and|rock|'n'|roll|. You|would|n't|want|to|live|waydowntown|,|but|it|is|a|hilarious|place|to|visit|. Films|are|made|of|little|moments|. Changing|Lanes|tries|for|more|. It|does|n't|reach|them|,|but|the|effort|is|gratefully|received|. When|the|movie|mixes|the|cornpone|and|the|Cosa|Nostra|,|it|finds|a|nice|rhythm|. The|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|. Terrific|casting|and|solid|execution|give|all|three|stories|life|. A|hard|look|at|one|man|'s|occupational|angst|and|its|subsequent|reinvention|,|a|terrifying|study|of|bourgeois|desperation|worthy|of|Claude|Chabrol|. (|Ramsay|)|visually|transforms|the|dreary|expanse|of|dead-end|distaste|the|characters|inhabit|into|a|poem|of|art|,|music|and|metaphor|. Frequent|flurries|of|creative|belly|laughs|and|genuinely|enthusiastic|performances|...|keep|the|movie|slaloming|through|its|hackneyed|elements|with|enjoyable|ease|. At|its|best|,|this|is|grand-scale|moviemaking|for|a|larger-than-life|figure|,|an|artist|who|has|been|awarded|mythic|status|in|contemporary|culture|. The|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|. 10|minutes|into|the|film|you|'ll|be|white-knuckled|and|unable|to|look|away|. It|'s|a|beautiful|film|,|full|of|elaborate|and|twisted|characters|-|and|it|'s|also|pretty|funny|. Could|this|be|the|first|major|studio|production|shot|on|video|tape|instead|of|film|? Not|since|Ghostbusters|has|a|film|used|Manhattan|'s|architecture|in|such|a|gloriously|goofy|way|. As|tricky|and|satisfying|as|any|of|David|Mamet|'s|airless|cinematic|shell|games|. The|universal|theme|of|becoming|a|better|person|through|love|has|never|been|filmed|more|irresistibly|than|in|`|Baran|.|' Cube|'s|charisma|and|chemistry|compensate|for|corniness|and|cliche|. With|lesser|talents|,|High|Crimes|would|be|entertaining|,|but|forgettable|. With|Freeman|and|Judd|,|I|'ll|at|least|remember|their|characters|. As|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|. The|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|. Daughter|From|Danang|sticks|with|its|subjects|a|little|longer|and|tells|a|deeper|story A|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|. The|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|. A|distinguished|and|thoughtful|film|,|marked|by|acute|writing|and|a|host|of|splendid|performances|. Barry|convinces|us|he|'s|a|dangerous|,|secretly|unhinged|guy|who|could|easily|have|killed|a|president|because|it|made|him|feel|powerful|. Takes|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|. I|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|. It|'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|. Changing|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|. borrows|a|bit|from|the|classics|``|Wait|Until|Dark|''|and|``|Extremities|''|...|But|in|terms|of|its|style|,|the|movie|is|in|a|class|by|itself|. Because|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|. Puts|a|refreshing|and|comical|spin|on|the|all-too-familiar|saga|of|the|contemporary|single|woman|. If|you|grew|up|on|Scooby|--|you|'ll|love|this|movie|. Matthew|Lillard|is|born|to|play|Shaggy|! Though|filmed|partly|in|Canada|,|Paid|in|Full|has|clever|ways|of|capturing|inner-city|life|during|the|Reagan|years|. ``|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|ca|n't|miss|it|. If|you|'re|not|,|you|'ll|still|have|a|good|time|.|'' This|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|. The|movie|is|a|trove|of|delights|. Excellent|performances|from|Jacqueline|Bisset|and|Martha|Plimpton|grace|this|deeply|touching|melodrama|. In|a|summer|of|clones|,|Harvard|Man|is|something|rare|and|riveting|:|a|wild|ride|that|relies|on|more|than|special|effects|. While|the|humor|is|recognizably|Plympton|,|he|has|actually|bothered|to|construct|a|real|story|this|time|. Jolting|into|Charleston|rhythms|,|the|story|has|the|sizzle|of|old|news|that|has|finally|found|the|right|vent|(|accurate|? Who|cares|?|)|. An|overly|melodramatic|but|somewhat|insightful|French|coming-of-age|film|... Most|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|. Close|enough|in|spirit|to|its|freewheeling|trash-cinema|roots|to|be|a|breath|of|fresh|air|. Skillfully|weaves|both|the|elements|of|the|plot|and|a|powerfully|evocative|mood|combining|heated|sexuality|with|a|haunting|sense|of|malaise|. Damon|brings|the|proper|conviction|to|his|role|as|(|Jason|Bourne|)|. For|the|most|part|,|it|works|beautifully|as|a|movie|without|sacrificing|the|integrity|of|the|opera|. As|played|by|Ryan|Gosling|,|Danny|is|a|frighteningly|fascinating|contradiction|. This|is|not|Chabrol|'s|best|,|but|even|his|lesser|works|outshine|the|best|some|directors|can|offer|. Despite|its|flaws|,|Crazy|as|Hell|marks|an|encouraging|new|direction|for|La|Salle|. You|'ll|end|up|moved|. If|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|. The|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|. I|loved|the|look|of|this|film|. Those|with|a|modicum|of|patience|will|find|in|these|characters|'|foibles|a|timeless|and|unique|perspective|. Beautiful|to|watch|and|holds|a|certain|charm|. 13|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|. The|movie|is|our|story|as|much|as|it|is|Schmidt|'s|,|no|matter|if|it|'s|viewed|as|a|self-reflection|or|cautionary|tale|. Foster|breathes|life|into|a|roll|that|could|have|otherwise|been|bland|and|run|of|the|mill|. Quitting|offers|piercing|domestic|drama|with|spikes|of|sly|humor|. Some|people|want|the|ol'|ball-and-chain|and|then|there|are|those|who|just|want|the|Ball|and|Chain|. (|Barry|)|gives|Assassin|a|disquieting|authority|. It|'s|refreshing|to|see|a|romance|this|smart|. At|its|best|(|and|it|does|have|some|very|funny|sequences|)|Looking|for|Leonard|reminds|you|just|how|comically|subversive|silence|can|be|. As|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|. Anyone|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|. ``|The|turntable|is|now|outselling|the|electric|guitar|...|'' Transforms|one|of|(|Shakespeare|'s|)|deepest|tragedies|into|a|smart|new|comedy|. An|intelligent|and|deeply|felt|work|about|impossible|,|irrevocable|choices|and|the|price|of|making|them|. It|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|. Sayles|is|making|a|statement|about|the|inability|of|dreams|and|aspirations|to|carry|forward|into|the|next|generation|. As|Antonia|is|assimilated|into|this|newfangled|community|,|the|film|settles|in|and|becomes|compulsively|watchable|in|a|guilty-pleasure|,|daytime-drama|sort|of|fashion|. every|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 On|its|own|staggeringly|unoriginal|terms|,|this|gender-bending|comedy|is|generally|quite|funny|. It|'s|never|dull|and|always|looks|good|. The|tonal|shifts|are|jolting|,|and|though|Wen|'s|messages|are|profound|and|thoughtfully|delivered|,|more|thorough|transitions|would|have|made|the|film|more|cohesive|. As|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|. With|wit|and|empathy|to|spare|,|waydowntown|acknowledges|the|silent|screams|of|workaday|inertia|but|stops|short|of|indulging|its|characters|'|striving|solipsism|. All|of|it|works|smoothly|under|the|direction|of|Spielberg|,|who|does|a|convincing|impersonation|here|of|a|director|enjoying|himself|immensely|. The|kind|of|sweet-and-sour|insider|movie|that|film|buffs|will|eat|up|like|so|much|gelati|. With|`|Bowling|for|Columbine|,|'|Michael|Moore|gives|us|the|perfect|starting|point|for|a|national|conversation|about|guns|,|violence|,|and|fear|. One|of|the|year|'s|most|weirdly|engaging|and|unpredictable|character|pieces|. One|of|the|best|inside-show-biz|yarns|ever|. None|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|. A|terrifically|entertaining|specimen|of|Spielbergian|sci-fi|. A|rare|and|lightly|entertaining|look|behind|the|curtain|that|separates|comics|from|the|people|laughing|in|the|crowd|. Solondz|is|so|intent|on|hammering|home|his|message|that|he|forgets|to|make|it|entertaining|. Whatever|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|. It|establishes|its|ominous|mood|and|tension|swiftly|,|and|if|the|suspense|never|rises|to|a|higher|level|,|it|is|nevertheless|maintained|throughout|. Although|What|Time|offers|Tsai|'s|usual|style|and|themes|,|it|has|a|more|colorful|,|more|playful|tone|than|his|other|films|. A|moving|and|stark|reminder|that|the|casualties|of|war|reach|much|further|than|we|imagine|. A|thoroughly|engaging|,|surprisingly|touching|British|comedy|. A|sloppy|,|amusing|comedy|that|proceeds|from|a|stunningly|unoriginal|premise|. ...|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 captures|that|perverse|element|of|the|Kafkaesque|where|identity|,|overnight|,|is|robbed|and|replaced|with|a|persecuted|``|other|.|'' The|actors|are|simply|too|good|,|and|the|story|too|intriguing|,|for|technical|flaws|to|get|in|the|way|. An|estrogen|opera|so|intensely|feminine|that|it|serves|as|the|antidote|(|and|cannier|doppelganger|)|to|Diesel|'s|XXX|flex-a-thon|. Imamura|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|. It|'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|. A|family|film|that|contains|some|hefty|thematic|material|on|time|,|death|,|eternity|,|and|what|is|needed|to|live|a|rich|and|full|life|. With|Dickens|'|words|and|writer-director|Douglas|McGrath|'s|even-toned|direction|,|a|ripping|good|yarn|is|told|. Exactly|what|its|title|implies|:|lusty|,|boisterous|and|utterly|charming|. The|film|is|darkly|funny|in|its|observation|of|just|how|much|more|grueling|and|time-consuming|the|illusion|of|work|is|than|actual|work|. A|smart|,|compelling|drama|. A|must-see|for|fans|of|thoughtful|war|films|and|those|interested|in|the|sights|and|sounds|of|battle|. I|found|myself|liking|the|film|,|though|in|this|case|one|man|'s|treasure|could|prove|to|be|another|man|'s|garbage|. ...|Rogers|'s|mouth|never|stops|shut|about|the|war|between|the|sexes|and|how|to|win|the|battle|. Deliberately|and|skillfully|uses|ambiguity|to|suggest|possibilities|which|imbue|the|theme|with|added|depth|and|resonance|. It|'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|. Nicholson|'s|understated|performance|is|wonderful|. As|Warren|he|stumbles|in|search|of|all|the|emotions|and|life|experiences|he|'s|neglected|over|the|years|. Despite|its|old-hat|set-up|and|predictable|plot|,|Empire|still|has|enough|moments|to|keep|it|entertaining|. Another|entertaining|romp|from|Robert|Rodriguez|. It|'s|not|a|classic|spy-action|or|buddy|movie|,|but|it|'s|entertaining|enough|and|worth|a|look|. I|am|more|offended|by|his|lack|of|faith|in|his|audience|than|by|anything|on|display|here|. A|sharp|satire|of|desperation|and|cinematic|deception|. Tsai|convincingly|paints|a|specifically|urban|sense|of|disassociation|here|. If|you|can|swallow|its|absurdities|and|crudities|Lagaan|really|is|enormously|good|fun|. An|unorthodox|little|film|noir|organized|crime|story|that|includes|one|of|the|strangest|love|stories|you|will|ever|see|. A|pleasing|,|often-funny|comedy|. (|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|. All|three|actresses|are|simply|dazzling|,|particularly|Balk|,|who|'s|finally|been|given|a|part|worthy|of|her|considerable|talents|. An|Asian|neo-realist|treasure|. Plummer|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|. ...|less|a|story|than|an|inexplicable|nightmare|,|right|down|to|the|population|'s|shrugging|acceptance|to|each|new|horror|. I|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|. A|compassionate|,|moving|portrait|of|an|American|(|and|an|America|)|always|reaching|for|something|just|outside|his|grasp|. An|original|little|film|about|one|young|woman|'s|education|. The|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|. One|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|. An|instance|of|an|old|dog|not|only|learning|but|inventing|a|remarkable|new|trick|. Rodriguez|has|the|chops|of|a|smart-aleck|film|school|brat|and|the|imagination|of|a|big|kid|... Amy|and|Matthew|have|a|bit|of|a|phony|relationship|,|but|the|film|works|in|spite|of|it|. Garcia|and|the|other|actors|help|make|the|wobbly|premise|work|. It|'s|surprisingly|decent|,|particularly|for|a|tenth|installment|in|a|series|. A|fascinating|,|unnerving|examination|of|the|delusions|of|one|unstable|man|. It|'s|no|accident|that|The|Accidental|Spy|is|a|solid|action|pic|that|returns|the|martial|arts|master|to|top|form|. Leave|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|. The|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|. Heartwarming|here|relies|less|on|forced|air|than|on|Petter|Næss|'|delicate|,|clever|direction|...|and|a|wonderful|,|imaginative|script|by|Axel|Hellstenius|. Makes|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|. Steers|refreshingly|clear|of|the|usual|cliches|. ``|Home|Movie|''|is|a|sweet|treasure|and|something|well|worth|your|time|. Highly|recommended|viewing|for|its|courage|,|ideas|,|technical|proficiency|and|great|acting|. The|movie|'s|thesis|--|elegant|technology|for|the|masses|--|is|surprisingly|refreshing|. Scott|delivers|a|terrific|performance|in|this|fascinating|portrait|of|a|modern|Lothario|. ...|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|. Combines|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|. While|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|. Marshall|puts|a|suspenseful|spin|on|standard|horror|flick|formula|. As|lively|an|account|as|Seinfeld|is|deadpan|. Though|Lan|Yu|lacks|a|sense|of|dramatic|urgency|,|the|film|makes|up|for|it|with|a|pleasing|verisimilitude|. You|may|leave|the|theater|with|more|questions|than|answers|,|but|darned|if|your|toes|wo|n't|still|be|tapping|. Take|any|12-year-old|boy|to|see|this|picture|,|and|he|'ll|be|your|slave|for|a|year|. But|this|is|not|a|movie|about|an|inhuman|monster|;|it|'s|about|a|very|human|one|. At|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|. What|makes|it|worth|watching|is|Quaid|'s|performance|. Soderbergh|skims|the|fat|from|the|1972|film|. What|'s|left|is|a|rich|stew|of|longing|. It|'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|. More|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|. Hatfield|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|. Best|of|all|is|Garcia|,|who|perfectly|portrays|the|desperation|of|a|very|insecure|man|. The|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|. A|sobering|and|powerful|documentary|about|the|most|severe|kind|of|personal|loss|:|rejection|by|one|'s|mother|. Often|overwrought|and|at|times|positively|irritating|,|the|film|turns|into|an|engrossing|thriller|almost|in|spite|of|itself|. Humorous|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|. A|poignant|lyricism|runs|through|Balzac|and|the|Little|Chinese|Seamstress|that|transforms|this|story|about|love|and|culture|into|a|cinematic|poem|. This|is|SO|De|Palma|. If|you|love|him|,|you|'ll|like|it|. If|you|do|n't|...|well|,|skip|to|another|review|. Rouge|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|. The|moral|shrapnel|and|mental|shellshock|will|linger|long|after|this|film|has|ended|. Unfolds|in|a|series|of|achronological|vignettes|whose|cumulative|effect|is|chilling|. The|movie|enters|a|realm|where|few|non-porn|films|venture|,|and|comes|across|as|darkly|funny|,|energetic|,|and|surprisingly|gentle|. Although|the|subject|matter|may|still|be|too|close|to|recent|national|events|,|the|film|works|-|mostly|due|to|its|superior|cast|of|characters|. It|'s|not|going|to|be|everyone|'s|bag|of|popcorn|,|but|it|definitely|gives|you|something|to|chew|on|. Huppert|and|Girardot|give|performances|of|exceptional|honesty|. It|has|that|rare|quality|of|being|able|to|creep|the|living|hell|out|of|you|... A|cautionary|tale|about|the|grandiosity|of|a|college|student|who|sees|himself|as|impervious|to|a|fall|. An|infinitely|wittier|version|of|the|Home|Alone|formula|. Feardotcom|'s|thrills|are|all|cheap|,|but|they|mostly|work|. (|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|. Mr.|Deeds|is|,|as|comedy|goes|,|very|silly|--|and|in|the|best|way|. You|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|. With|We|Were|Soldiers|,|Hollywood|makes|a|valiant|attempt|to|tell|a|story|about|the|Vietnam|War|before|the|pathology|set|in|. `|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|.|' Broomfield|reveals|an|ironic|manifestation|of|institutionalized|slavery|that|ties|a|black-owned|record|label|with|a|white-empowered|police|force|. At|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|. Stuart|'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|. There|is|greatness|here|. Boasts|enough|funny|dialogue|and|sharp|characterizations|to|be|mildly|amusing|. Director|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|. If|you|love|the|music|,|and|I|do|,|its|hard|to|imagine|having|more|fun|watching|a|documentary|... Nakata|'s|technique|is|to|imply|terror|by|suggestion|,|rather|than|the|overuse|of|special|effects|. ``|13|Conversations|About|One|Thing|''|is|an|intelligent|flick|that|examines|many|different|ideas|from|happiness|to|guilt|in|an|intriguing|bit|of|storytelling|. Satin|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|. Though|an|important|political|documentary|,|this|does|not|really|make|the|case|the|Kissinger|should|be|tried|as|a|war|criminal|. Cannon|'s|confidence|and|laid-back|good|spirits|are|,|with|the|drumming|routines|,|among|the|film|'s|saving|graces|. In|its|understanding|,|often|funny|way|,|it|tells|a|story|whose|restatement|is|validated|by|the|changing|composition|of|the|nation|. She|may|not|be|real|,|but|the|laughs|are|. A|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|. OK|arthouse|. The|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|. The|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|. About|Schmidt|is|undoubtedly|one|of|the|finest|films|of|the|year|. If|you|'re|not|deeply|touched|by|this|movie|,|check|your|pulse|. The|charm|of|Revolution|OS|is|rather|the|way|it|introduces|you|to|new|,|fervently|held|ideas|and|fanciful|thinkers|. Until|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|. Offers|the|flash|of|rock|videos|fused|with|solid|performances|and|eerie|atmosphere|. Filmmakers|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 For|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|. An|edifying|glimpse|into|the|wit|and|revolutionary|spirit|of|these|performers|and|their|era|. Craig|Bartlett|and|director|Tuck|Tucker|should|be|commended|for|illustrating|the|merits|of|fighting|hard|for|something|that|really|matters|. The|film|is|saved|from|are|n't|-|kids-cute|sentimentality|by|a|warmth|that|is|n't|faked|and|a|stately|sense|of|composition|. This|is|one|of|the|year|'s|best|films|. A|fleet-footed|and|pleasingly|upbeat|family|diversion|. Sorvino|is|delightful|in|the|central|role|. She|nearly|glows|with|enthusiasm|,|sensuality|and|a|conniving|wit|. It|'s|immensely|ambitious|,|different|than|anything|that|'s|been|done|before|and|amazingly|successful|in|terms|of|what|it|'s|trying|to|do|. The|story|,|once|it|gets|rolling|,|is|nothing|short|of|a|great|one|. Great|performances|,|stylish|cinematography|and|a|gritty|feel|help|make|Gangster|No.|1|a|worthwhile|moviegoing|experience|. ``|Mr.|Deeds|''|is|suitable|summer|entertainment|that|offers|escapism|without|requiring|a|great|deal|of|thought|. It|'s|an|ambitious|film|,|and|as|with|all|ambitious|films|,|it|has|some|problems|. But|on|the|whole|,|you|'re|gonna|like|this|movie|. Chaiken|ably|balances|real-time|rhythms|with|propulsive|incident|. This|is|an|extraordinary|film|,|not|least|because|it|is|Japanese|and|yet|feels|universal|. In|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|. There|'s|just|something|about|watching|a|squad|of|psychopathic|underdogs|whale|the|tar|out|of|unsuspecting|lawmen|that|reaches|across|time|and|distance|. A|funny|and|touching|film|that|is|gorgeously|acted|by|a|British|cast|to|rival|Gosford|Park|'s|. There|'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|. I|'m|not|generally|a|fan|of|vegetables|but|this|batch|is|pretty|cute|. Qutting|may|be|a|flawed|film|,|but|it|is|nothing|if|not|sincere|. Beautifully|crafted|,|engaging|filmmaking|that|should|attract|upscale|audiences|hungry|for|quality|and|a|nostalgic|,|twisty|yarn|that|will|keep|them|guessing|. A|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|. A|cultural|wildcard|experience|:|wacky|,|different|,|unusual|,|even|nutty|. Daughter|From|Danang|reveals|that|efforts|toward|closure|only|open|new|wounds|. It|does|n't|flinch|from|its|unsettling|prognosis|,|namely|,|that|the|legacy|of|war|is|a|kind|of|perpetual|pain|. For|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|. This|is|not|an|easy|film|. But|it|could|be|,|by|its|art|and|heart|,|a|necessary|one|. A|very|good|film|sits|in|the|place|where|a|masterpiece|should|be|. ...|spellbinding|fun|and|deliciously|exploitative|. It|'s|Jagger|'s|bone-dry|,|mournfully|brittle|delivery|that|gives|the|film|its|bittersweet|bite|. Impossible|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|. Despite|the|predictable|parent|vs.|child|coming-of-age|theme|,|first-class|,|natural|acting|and|a|look|at|``|the|real|Americans|''|make|this|a|charmer|. One|of|the|smarter|offerings|the|horror|genre|has|produced|in|recent|memory|,|even|if|it|'s|far|tamer|than|advertised|. One|of|recent|memory|'s|most|thoughtful|films|about|art|,|ethics|,|and|the|cost|of|moral|compromise|. the|film|does|n't|sustain|its|initial|promise|with|a|jarring|,|new-agey|tone|creeping|into|the|second|half Blade|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|. The|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|. Many|a|parent|and|their|teen|(|or|preteen|)|kid|could|bond|while|watching|A|Walk|To|Remember|. So|could|young|romantics|out|on|a|date|. All|leather|pants|&|augmented|boobs|,|Hawn|is|hilarious|as|she|tries|to|resuscitate|the|fun-loving|libertine|lost|somewhere|inside|the|conservative|,|handbag-clutching|Sarandon|. The|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|. While|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|. Chicago|offers|much|colorful|eye|candy|,|including|the|spectacle|of|Gere|in|his|dancing|shoes|,|hoofing|and|crooning|with|the|best|of|them|. A|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|. By|and|large|this|is|Mr.|Kilmer|'s|movie|,|and|it|'s|his|strongest|performance|since|The|Doors|. Some|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|. A|charming|but|slight|comedy|. Henry|Bean|'s|thoughtful|screenplay|provides|no|easy|answers|,|but|offers|a|compelling|investigation|of|faith|versus|intellect A|great|cast|and|a|wonderful|but|sometimes|confusing|flashback|movie|about|growing|up|in|a|dysfunctional|family|. Playing|a|role|of|almost|Bergmanesque|intensity|...|Bisset|is|both|convincing|and|radiant|. A|smart|,|provocative|drama|that|does|the|nearly|impossible|:|It|gets|under|the|skin|of|a|man|we|only|know|as|an|evil|,|monstrous|lunatic|. An|alternately|fascinating|and|frustrating|documentary|. Griffin|&|Co.|manage|to|be|spectacularly|outrageous|. Nair|'s|cast|is|so|large|it|'s|Altman-esque|,|but|she|deftly|spins|the|multiple|stories|in|a|vibrant|and|intoxicating|fashion|. The|movie|plays|up|the|cartoon|'s|more|obvious|strength|of|snazziness|while|neglecting|its|less|conspicuous|writing|strength|. Poignant|Japanese|epic|about|adolescent|anomie|and|heartbreak|. We|'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|. Secretary|is|not|a|movie|about|fetishism|. It|is|a|movie|about|passion|. Even|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|. Although|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|. What|could|have|easily|become|a|cold|,|calculated|exercise|in|postmodern|pastiche|winds|up|a|powerful|and|deeply|moving|example|of|melodramatic|moviemaking|. A|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|. The|IMAX|screen|enhances|the|personal|touch|of|manual|animation|. Does|an|impressive|job|of|relating|the|complicated|history|of|the|war|and|of|filling|in|the|background|. It|'s|all|about|Anakin|...|and|the|lustrous|polished|visuals|rich|in|color|and|creativity|and|,|of|course|,|special|effect|. Lacks|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|. It|'s|funny|,|touching|,|dramatically|forceful|,|and|beautifully|shot|. Its|rawness|and|vitality|give|it|considerable|punch|. A|live-wire|film|that|never|loses|its|ability|to|shock|and|amaze|. The|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|. It|'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|. Brims|with|passion|:|for|words|,|for|its|eccentric|,|accident-prone|characters|,|and|for|the|crazy|things|that|keep|people|going|in|this|crazy|life|. It|'s|secondary|to|American|Psycho|but|still|has|claws|enough|to|get|inside|you|and|stay|there|for|a|couple|of|hours|. The|Hours|,|a|delicately|crafted|film|,|is|an|impressive|achievement|in|spite|of|a|river|of|sadness|that|pours|into|every|frame|. Fudges|fact|and|fancy|with|such|confidence|that|we|feel|as|if|we|'re|seeing|something|purer|than|the|real|thing|. This|is|unusual|,|food-for-thought|cinema|that|'s|as|entertaining|as|it|is|instructive|. With|an|expressive|face|reminiscent|of|Gong|Li|and|a|vivid|personality|like|Zhang|Ziyi|'s|,|Dong|stakes|out|the|emotional|heart|of|Happy|. Nohe|'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|. It|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|? Secret|Ballot|is|a|funny|,|puzzling|movie|ambiguous|enough|to|be|engaging|and|oddly|moving|. Although|devoid|of|objectivity|and|full|of|nostalgic|comments|from|the|now|middle-aged|participants|,|Dogtown|and|Z-Boys|has|a|compelling|story|to|tell|. It|'s|got|some|pretentious|eye-rolling|moments|and|it|did|n't|entirely|grab|me|,|but|there|'s|stuff|here|to|like|. Birthday|Girl|walks|a|tricky|tightrope|between|being|wickedly|funny|and|just|plain|wicked|. The|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|. Brings|an|irresistible|blend|of|warmth|and|humor|and|a|consistent|embracing|humanity|in|the|face|of|life|'s|harshness|. Jackson|is|always|watchable|. To|the|degree|that|ivans|xtc|. works|,|it|'s|thanks|to|Huston|'s|revelatory|performance|. A|wild|ride|of|a|movie|that|keeps|throwing|fastballs|. Confessions|is|without|a|doubt|a|memorable|directorial|debut|from|King|Hunk|. Weird|,|vulgar|comedy|that|'s|definitely|an|acquired|taste|. A.|.|. cynical|and|serious|look|at|teenage|boys|doing|what|they|do|best|-|being|teenagers|. The|film|is|a|very|good|viewing|alternative|for|young|women|. Australian|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|. A|dazzling|dream|of|a|documentary|. A|keep|-|'em|-|guessing|plot|and|an|affectionate|take|on|its|screwed-up|characters|. Brave|and|sweetly|rendered|love|story|. The|film|proves|unrelentingly|grim|--|and|equally|engrossing|. A|hallmark|film|in|an|increasingly|important|film|industry|and|worth|the|look|. The|Last|Kiss|will|probably|never|achieve|the|popularity|of|My|Big|Fat|Greek|Wedding|,|but|its|provocative|central|wedding|sequence|has|far|more|impact|. If|you|like|blood|,|guts|and|crazy|beasts|stalking|men|with|guns|though|...|you|will|likely|enjoy|this|monster|. The|difference|between|Cho|and|most|comics|is|that|her|confidence|in|her|material|is|merited|. Sad|to|say|--|it|accurately|reflects|the|rage|and|alienation|that|fuels|the|self-destructiveness|of|many|young|people|. There|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|. `|Anyone|with|a|passion|for|cinema|,|and|indeed|sex|,|should|see|it|as|soon|as|possible|.|' Seeks|to|transcend|its|genre|with|a|curiously|stylized|,|quasi-Shakespearean|portrait|of|pure|misogynist|evil|. Mordantly|funny|and|intimately|knowing|... What|makes|the|movie|special|is|its|utter|sincerity|. Fast|and|funny|,|an|action|cartoon|that|'s|suspenseful|enough|for|older|kids|but|not|too|scary|for|the|school-age|crowd|. One|of|those|rare|films|that|come|by|once|in|a|while|with|flawless|amounts|of|acting|,|direction|,|story|and|pace|. The|AAA|of|action|,|XXX|is|a|blast|of|adrenalin|,|rated|EEE|for|excitement|. And|Vin|Diesel|is|the|man|. Earnest|,|unsubtle|and|Hollywood-predictable|,|Green|Dragon|is|still|a|deeply|moving|effort|to|put|a|human|face|on|the|travail|of|thousands|of|Vietnamese|. An|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|. Nair|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|. The|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|. Despite|its|floating|narrative|,|this|is|a|remarkably|accessible|and|haunting|film|. Vibrantly|colored|and|beautifully|designed|,|Metropolis|is|a|feast|for|the|eyes|. Sweetly|sexy|,|funny|and|touching|. ...|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|. Is|truth|stranger|than|fiction|? In|(|screenwriter|)|Charlie|Kaufman|'s|world|,|truth|and|fiction|are|equally|strange|,|and|his|for|the|taking|. For|decades|we|'ve|marveled|at|Disney|'s|rendering|of|water|,|snow|,|flames|and|shadows|in|a|hand-drawn|animated|world|. Prepare|to|marvel|again|. A|witty|,|low-key|romantic|comedy|. More|good|than|great|but|Freeman|and|Judd|make|it|work|. If|you|'re|looking|for|a|smart|,|nuanced|look|at|de|Sade|and|what|might|have|happened|at|Picpus|,|Sade|is|your|film|. Could|have|been|crisper|and|punchier|,|but|it|'s|likely|to|please|audiences|who|like|movies|that|demand|four|hankies|. Together|writer-director|Danny|Verete|'s|three|tales|comprise|a|powerful|and|reasonably|fulfilling|gestalt|. Bursting|through|the|constraints|of|its|source|,|this|is|one|adapted|-|from-television|movie|that|actually|looks|as|if|it|belongs|on|the|big|screen|. Its|almost|too-spectacular|coastal|setting|distracts|slightly|from|an|eccentric|and|good-naturedly|aimless|story|. In|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|! This|story|of|a|determined|woman|'s|courage|to|find|her|husband|in|a|war|zone|offers|winning|performances|and|some|effecting|moments|. Like|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|. A|modestly|made|but|profoundly|moving|documentary|. It|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|. Not|everything|in|this|ambitious|comic|escapade|works|,|but|Coppola|,|along|with|his|sister|,|Sofia|,|is|a|real|filmmaker|. It|must|be|in|the|genes|. The|performers|are|so|spot|on|,|it|is|hard|to|conceive|anyone|else|in|their|roles|. This|slight|premise|...|works|because|of|the|ideal|casting|of|the|masterful|British|actor|Ian|Holm|as|the|aged|Napoleon|. Hashiguchi|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|. Although|the|film|boils|down|to|a|lightweight|story|about|matchmaking|,|the|characters|make|Italian|for|Beginners|worth|the|journey The|dragons|are|the|real|stars|of|Reign|of|Fire|and|you|wo|n't|be|disappointed|. Kudos|to|the|most|enchanting|film|of|the|year|. It|works|well|enough|,|since|the|thrills|pop|up|frequently|,|and|the|dispatching|of|the|cast|is|as|often|imaginative|as|it|is|gory|. Colorful|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|. It|'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|. Director|Paul|Cox|'s|unorthodox|,|abstract|approach|to|visualizing|Nijinsky|'s|diaries|is|both|stimulating|and|demanding|. For|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|. Most|of|the|things|that|made|the|original|Men|in|Black|such|a|pleasure|are|still|there|. Mostly|honest|,|this|somber|picture|reveals|itself|slowly|,|intelligently|,|artfully|. Best|enjoyed|as|a|work|of|fiction|inspired|by|real-life|events|. Those|seeking|a|definitive|account|of|Eisenstein|'s|life|would|do|better|elsewhere|. (|Westbrook|)|makes|a|wonderful|subject|for|the|camera|. A|film|that|'s|flawed|and|brilliant|in|equal|measure|. Even|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|. Ultimately|too|repellent|to|fully|endear|itself|to|American|art|house|audiences|,|but|it|is|notable|for|its|stylistic|austerity|and|forcefulness|. Hardly|a|film|that|comes|along|every|day|. A|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|. The|film|'s|only|missteps|come|from|the|script|'s|insistence|on|providing|deep|emotional|motivation|for|each|and|every|one|of|Abagnale|'s|antics|. A|sweet|,|tender|sermon|about|a|12-year-old|Welsh|boy|more|curious|about|God|than|girls|,|who|learns|that|believing|in|something|does|matter|. the|film|belongs|to|the|marvelous|Verdu|,|a|sexy|slip|of|an|earth|mother|who|mourns|her|tragedies|in|private|and|embraces|life|in|public More|intimate|than|spectacular|,|E.T.|is|carried|less|by|wow|factors|than|by|its|funny|,|moving|yarn|that|holds|up|well|after|two|decades|. For|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|. If|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|. Moonlight|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|. It|is|an|indelible|epic|American|story|about|two|families|,|one|black|and|one|white|,|facing|change|in|both|their|inner|and|outer|lives|. Not|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|. Quite|simply|,|a|joy|to|watch|and|--|especially|--|to|listen|to|. A|flawed|film|but|an|admirable|one|that|tries|to|immerse|us|in|a|world|of|artistic|abandon|and|political|madness|and|very|nearly|succeeds|. The|filmmakers|wisely|decided|to|let|Crocodile|Hunter|Steve|Irwin|do|what|he|does|best|,|and|fashion|a|story|around|him|. A|winning|and|wildly|fascinating|work|. We|do|get|the|distinct|impression|that|this|franchise|is|drawing|to|a|close|. Worth|catching|for|Griffiths|'|warm|and|winning|central|performance|. The|tone|errs|on|the|shrill|side|,|tempered|by|a|soft|southern|gentility|that|speaks|of|beauty|,|grace|and|a|closet|full|of|skeletons|. An|interesting|psychological|game|of|cat-and-mouse|,|three-dimensional|characters|and|believable|performances|all|add|up|to|a|satisfying|crime|drama|. A|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|. The|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|. Maintains|your|interest|until|the|end|and|even|leaves|you|with|a|few|lingering|animated|thoughts|. There|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|. If|Divine|Secrets|of|the|Ya-Ya|Sisterhood|suffers|from|a|ploddingly|melodramatic|structure|,|it|comes|to|life|in|the|performances|. If|you|ignore|the|cliches|and|concentrate|on|City|by|the|Sea|'s|interpersonal|drama|,|it|ai|n't|half-bad|. There|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|. Reign|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|. An|earnest|,|roughshod|document|,|it|serves|as|a|workable|primer|for|the|region|'s|recent|history|,|and|would|make|a|terrific|10th-grade|learning|tool|. Samuel|Beckett|applied|to|the|Iranian|voting|process|. The|Bard|as|black|comedy|--|Willie|would|have|loved|it|. Another|trumpet|blast|that|there|may|be|a|New|Mexican|Cinema|a-bornin|'|.|' ...|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|.|' Tadpole|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|. This|is|a|story|that|zings|all|the|way|through|with|originality|,|humour|and|pathos|. As|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|. It|is|a|challenging|film|,|if|not|always|a|narratively|cohesive|one|. Trapped|wo|n't|score|points|for|political|correctness|,|but|it|may|cause|parents|a|few|sleepless|hours|--|a|sign|of|its|effectiveness|. A|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|. It|'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|. As|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|. There|'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|. Like|a|skillful|fisher|,|the|director|uses|the|last|act|to|reel|in|the|audience|since|its|poignancy|hooks|us|completely|. A|film|with|contemporary|political|resonance|illustrated|by|a|winning|family|story|. Kids|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|. An|unsettling|,|memorable|cinematic|experience|that|does|its|predecessors|proud|. Maid|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|. Much|of|All|About|Lily|Chou-Chou|is|mesmerizing|:|some|of|its|plaintiveness|could|make|you|weep|. Ferrara|'s|strongest|and|most|touching|movie|of|recent|years|. Spielberg|'s|first|real|masterpiece|,|it|deserved|all|the|hearts|it|won|--|and|wins|still|,|20|years|later|. The|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|... More|than|simply|a|portrait|of|early|extreme|sports|,|this|peek|into|the|1970s|skateboard|revolution|is|a|skateboard|film|as|social|anthropology|... What|I|saw|,|I|enjoyed|. The|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|. A|deft|,|delightful|mix|of|sulky|teen|drama|and|overcoming-obstacles|sports-movie|triumph|. Daringly|perceptive|,|taut|,|piercing|and|feisty|,|Biggie|and|Tupac|is|undeniably|subversive|and|involving|in|its|bold|presentation|. Delivers|more|than|its|fair|share|of|saucy|hilarity|. A|fairly|enjoyable|mixture|of|Longest|Yard|...|and|the|1999|Guy|Ritchie|caper|Lock|Stock|and|Two|Smoking|Barrels|. Happily|,|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|. Hugely|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|. It|'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|. It|'s|probably|worth|catching|solely|on|its|visual|merits|. If|only|it|had|the|story|to|match|. Like|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|. ...|only|Bond|can|save|us|from|the|latest|eccentric|,|super-wealthy|megalomaniac|bent|on|world|domination|and|destruction|. The|first|half|bursts|with|a|goofy|energy|previous|Disney|films|only|used|for|a|few|minutes|here|and|there|. It|'s|quite|diverting|nonsense|. An|old-fashioned|scary|movie|,|one|that|relies|on|lingering|terror|punctuated|by|sudden|shocks|and|not|constant|bloodshed|punctuated|by|flying|guts|. For|all|the|wit|and|hoopla|,|Festival|In|Cannes|offers|rare|insight|into|the|structure|of|relationships|. What|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|. Renner|? s|face|is|chillingly|unemotive|,|yet|he|communicates|a|great|deal|in|his|performance|. See|it|for|his|performance|if|nothing|else|. ...|the|kind|of|entertainment|that|parents|love|to|have|their|kids|see|. It|'s|a|fine|,|focused|piece|of|work|that|reopens|an|interesting|controversy|and|never|succumbs|to|sensationalism|. Its|engaging|simplicity|is|driven|by|appealing|leads|. Swimming|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|. A|respectable|venture|on|its|own|terms|,|lacking|the|broader|vision|that|has|seen|certain|Trek|films|...|cross|over|to|a|more|mainstream|audience|. It|'s|weird|,|wonderful|,|and|not|necessarily|for|kids|. An|elegant|film|with|often|surprising|twists|and|an|intermingling|of|naiveté|and|sophistication|. Blessed|with|two|fine|,|nuanced|lead|performances|. While|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|. As|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|. You|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|. Turturro|is|fabulously|funny|and|over|the|top|as|a|`|very|sneaky|'|butler|who|excels|in|the|art|of|impossible|disappearing\/reappearing|acts Meant|for|Star|Wars|fans|. It|is|there|to|give|them|a|good|time|. From|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|. Simply|and|eloquently|articulates|the|tangled|feelings|of|particular|New|Yorkers|deeply|touched|by|an|unprecedented|tragedy|. Provides|a|very|moving|and|revelatory|footnote|to|the|Holocaust|. Terrific|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|. It|'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|. I|like|it|. There|is|a|freedom|to|watching|stunts|that|are|this|crude|,|this|fast-paced|and|this|insane|. That|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|. That|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|. It|'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|. A|sharp|and|quick|documentary|that|is|funny|and|pithy|,|while|illuminating|an|era|of|theatrical|comedy|that|,|while|past|,|really|is|n't|. The|film|does|a|solid|job|of|slowly|,|steadily|building|up|to|the|climactic|burst|of|violence|. Fred|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|. The|directive|to|protect|the|code|at|all|costs|also|begins|to|blur|as|the|importance|of|the|man|and|the|code|merge Overall|,|Cletis|Tout|is|a|winning|comedy|that|excites|the|imagination|and|tickles|the|funny|bone|. Easily|one|of|the|best|and|most|exciting|movies|of|the|year|. The|script|manages|the|rare|trick|of|seeming|at|once|both|refreshingly|different|and|reassuringly|familiar|. An|engaging|,|formulaic|sports|drama|that|carries|a|charge|of|genuine|excitement|. Insomnia|is|one|of|the|year|'s|best|films|and|Pacino|gives|one|of|his|most|daring|,|and|complicated|,|performances|. Like|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|. I|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|. Despite|its|flaws|...|Belinsky|is|still|able|to|create|an|engaging|story|that|keeps|you|guessing|at|almost|every|turn|. Each|punch|seen|through|prison|bars|,|the|fights|become|not|so|much|a|struggle|of|man|vs.|man|as|Brother-Man|vs.|The|Man|. The|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|. Like|the|best|of|Godard|'s|movies|...|it|is|visually|ravishing|,|penetrating|,|impenetrable|. Horns|and|Halos|benefits|from|serendipity|but|also|reminds|us|of|our|own|responsibility|to|question|what|is|told|as|the|truth|. (|Has|)|an|immediacy|and|an|intimacy|that|sucks|you|in|and|dares|you|not|to|believe|it|'s|all|true|. It|treats|Ana|'s|journey|with|honesty|that|is|tragically|rare|in|the|depiction|of|young|women|in|film|. Captivates|as|it|shows|excess|in|business|and|pleasure|,|allowing|us|to|find|the|small|,|human|moments|,|and|leaving|off|with|a|grand|whimper|. A|refreshingly|realistic|,|affectation-free|coming-of-age|tale|. How|good|this|film|might|be|,|depends|if|you|believe|that|the|shocking|conclusion|is|too|much|of|a|plunge|or|not|. Great|fun|both|for|sports|aficionados|and|for|ordinary|louts|whose|idea|of|exercise|is|climbing|the|steps|of|a|stadium-seat|megaplex|. Features|one|of|the|most|affecting|depictions|of|a|love|affair|ever|committed|to|film|. To|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|. One|of|the|best|movies|of|the|year|. The|usual|movie|rah-rah|,|pleasantly|and|predictably|delivered|in|low-key|style|by|director|Michael|Apted|and|writer|Tom|Stoppard|. A|superlative|B|movie|--|funny|,|sexy|,|and|rousing|. Those|prone|to|indignation|need|not|apply|;|those|susceptible|to|blue|hilarity|,|step|right|up|. Like|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|. (|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|. The|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|. At|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|. A|modestly|surprising|movie|. A|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|. There|'s|a|spontaneity|to|The|Chateau|,|a|sense|of|light-heartedness|,|that|makes|it|attractive|throughout|. The|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|. Like|any|good|romance|,|Son|of|the|Bride|,|proves|it|'s|never|too|late|to|learn|. (|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|. The|film|,|while|not|exactly|assured|in|its|execution|,|is|notable|for|its|sheer|audacity|and|openness|. A|thoroughly|enjoyable|,|heartfelt|coming-of-age|comedy|. Feeling|like|a|dope|has|rarely|been|more|fun|than|it|is|in|Nine|Queens|. Leigh|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|. A|lot|of|fun|,|with|an|undeniable|energy|sparked|by|two|actresses|in|their|50s|working|at|the|peak|of|their|powers|. Promises|is|one|film|that|'s|truly|deserving|of|its|Oscar|nomination|. What|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|. If|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|. Beautiful|,|angry|and|sad|,|with|a|curious|sick|poetry|,|as|if|the|Marquis|de|Sade|had|gone|in|for|pastel|landscapes|. Ms.|Hutchins|is|talented|enough|and|charismatic|enough|to|make|us|care|about|Zelda|'s|ultimate|fate|. Monte|Cristo|smartly|emphasizes|the|well-wrought|story|and|omits|needless|chase|scenes|and|swordfights|as|the|revenge|unfolds|. A|mesmerizing|cinematic|poem|from|the|first|frame|to|the|last|. (|It|'s|)|a|clever|thriller|with|enough|unexpected|twists|to|keep|our|interest|. An|undeniably|moving|film|to|experience|,|and|ultimately|that|'s|what|makes|it|worth|a|recommendation|. Nicole|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|. Vividly|conveys|the|shadow|side|of|the|30-year|friendship|between|two|English|women|. The|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|. Manages|to|please|its|intended|audience|--|children|--|without|placing|their|parents|in|a|coma-like|state|. When|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|. A|strong|first|act|and|absolutely|,|inescapably|gorgeous|,|skyscraper-trapeze|motion|of|the|amazing|Spider-Man|. Driven|by|a|fantastic|dual|performance|from|Ian|Holm|...|the|film|is|funny|,|insightfully|human|and|a|delightful|lark|for|history|buffs|. A|well-put-together|piece|of|urban|satire|. It|'s|the|sweet|Cinderella|story|that|``|Pretty|Woman|''|wanted|to|be|. It|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|. What|does|n't|this|film|have|that|an|impressionable|kid|could|n't|stand|to|hear|? What|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|. A|deeply|felt|and|vividly|detailed|story|about|newcomers|in|a|strange|new|world|. It|'s|a|visual|delight|and|a|decent|popcorn|adventure|,|as|long|as|you|do|n't|try|to|look|too|deep|into|the|story It|'s|a|feel-good|movie|about|which|you|can|actually|feel|good|. A|full|experience|,|a|love|story|and|a|murder|mystery|that|expands|into|a|meditation|on|the|deep|deceptions|of|innocence|. The|Powerpuff|Girls|arrive|on|the|big|screen|with|their|super-powers|,|their|super-simple|animation|and|their|super-dooper-adorability|intact|. (|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|. A|new|film|from|Bill|Plympton|,|the|animation|master|,|is|always|welcome|. A|devastating|indictment|of|unbridled|greed|and|materalism|. What|makes|the|film|special|is|the|refreshingly|unhibited|enthusiasm|that|the|people|,|in|spite|of|clearly|evident|poverty|and|hardship|,|bring|to|their|music|. The|film|has|a|kind|of|hard|,|cold|effect|. The|gags|are|often|a|stitch|. The|asylum|material|is|gripping|,|as|are|the|scenes|of|Jia|with|his|family|. A|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|. One|ca|n't|deny|its|seriousness|and|quality|. Good|performances|and|a|realistic|,|non-exploitive|approach|make|Paid|in|Full|worth|seeing|. This|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|. Ryan|Gosling|is|,|in|a|word|,|brilliant|as|the|conflicted|Daniel|. ...|somehow|manages|to|escape|the|shackles|of|its|own|clichés|to|be|the|best|espionage|picture|to|come|out|in|weeks|. Much|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|. Takes|a|simple|premise|and|carries|it|to|unexpected|heights|. With|few|respites|,|Marshall|keeps|the|energy|humming|,|and|his|edits|,|unlike|those|in|Moulin|Rouge|,|are|crisp|and|purposeful|without|overdoing|it|. Its|metaphors|are|opaque|enough|to|avoid|didacticism|,|and|the|film|succeeds|as|an|emotionally|accessible|,|almost|mystical|work|. Provides|a|satisfactory|overview|of|the|bizarre|world|of|extreme|athletes|as|several|daredevils|express|their|own|views|. Inventive|,|fun|,|intoxicatingly|sexy|,|violent|,|self-indulgent|and|maddening|. Comedian|,|like|its|subjects|,|delivers|the|goods|and|audiences|will|have|a|fun|,|no-frills|ride|. A|naturally|funny|film|,|Home|Movie|makes|you|crave|Chris|Smith|'s|next|movie|. Pipe|Dream|does|have|its|charms|. The|leads|are|natural|and|lovely|,|the|pace|is|serene|,|the|humor|wry|and|sprightly|. Those|who|want|to|be|jolted|out|of|their|gourd|should|drop|everything|and|run|to|Ichi|. ...|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|. Sheds|light|on|a|subject|few|are|familiar|with|,|and|makes|you|care|about|music|you|may|not|have|heard|before|. Despite|the|film|'s|bizarre|developments|,|Hoffman|keeps|us|riveted|with|every|painful|nuance|,|unexpected|flashes|of|dark|comedy|and|the|character|'s|gripping|humanity|. To|get|at|the|root|psychology|of|this|film|would|require|many|sessions|on|the|couch|of|Dr.|Freud|. Great|over-the-top|moviemaking|if|you|'re|in|a|slap-happy|mood|. Viveka|Seldahl|and|Sven|Wollter|will|touch|you|to|the|core|in|a|film|you|will|never|forget|--|that|you|should|never|forget|. The|magic|(|and|original|running|time|)|of|ace|Japanimator|Hayao|Miyazaki|'s|Spirited|Away|survives|intact|in|BV|'s|re-voiced|version|. From|the|dull|,|surreal|ache|of|mortal|awareness|emerges|a|radiant|character|portrait|. Captures|the|raw|comic|energy|of|one|of|our|most|flamboyant|female|comics|. It|'s|not|particularly|subtle|...|However|,|it|still|manages|to|build|to|a|terrifying|,|if|obvious|,|conclusion|. The|auteur|'s|ear|for|the|way|fears|and|slights|are|telegraphed|in|the|most|blithe|exchanges|gives|the|film|its|lingering|tug|. Bolstered|by|exceptional|performances|and|a|clear-eyed|take|on|the|economics|of|dealing|and|the|pathology|of|ghetto|fabulousness|. This|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|. Some|remarkable|achival|film|about|how|Shanghai|(|of|all|places|)|served|Jews|who|escaped|the|Holocaust|. In|a|movie|full|of|surprises|,|the|biggest|is|that|Secret|Ballot|is|a|comedy|,|both|gentle|and|biting|. The|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|. A|manically|generous|Christmas|vaudeville|. Tony|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|. A|psychic|journey|deep|into|the|very|fabric|of|Iranian|...|life|. It|'s|a|smartly|directed|,|grown-up|film|of|ideas|. While|puerile|men|dominate|the|story|,|the|women|shine|. Unlike|lots|of|Hollywood|fluff|,|this|has|layered|,|well-developed|characters|and|some|surprises|. For|a|film|that|'s|being|advertised|as|a|comedy|,|Sweet|Home|Alabama|is|n't|as|funny|as|you|'d|hoped|. For|a|film|that|'s|being|advertised|as|a|comedy|,|Sweet|Home|Alabama|is|n't|as|funny|as|you|'d|hoped|. Vera|has|created|a|provocative|,|absorbing|drama|that|reveals|the|curse|of|a|self-hatred|instilled|by|rigid|social|mores|. A|French|film|with|a|more|down-home|flavor|. Depending|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|. While|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|. There|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|. Fontaine|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|. As|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|. Sure|,|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|. Dong|shows|how|intolerance|has|the|power|to|deform|families|,|then|tear|them|apart|. The|Chateau|belongs|to|Rudd|,|whose|portrait|of|a|therapy-dependent|flakeball|spouting|French|malapropisms|...|is|a|nonstop|hoot|. The|cast|,|collectively|a|successful|example|of|the|lovable-loser|protagonist|,|shows|deft|comic|timing|. It|trusts|the|story|it|sets|out|to|tell|. I|could|n't|recommend|this|film|more|. As|a|good|old-fashioned|adventure|for|kids|,|Spirit|:|Stallion|of|the|Cimarron|is|a|winner|. An|effective|portrait|of|a|life|in|stasis|--|of|the|power|of|inertia|to|arrest|development|in|a|dead-end|existence|. Succeeds|as|a|well-made|evocation|of|a|subculture|. ...|an|interesting|slice|of|history|. Me|no|lika|da|accents|so|good|,|but|I|thoroughly|enjoyed|the|love|story|. Scott|Baio|is|turning|in|some|delightful|work|on|indie|projects|. It|'s|an|experience|in|understanding|a|unique|culture|that|is|presented|with|universal|appeal|. What|'s|surprising|is|how|well|it|holds|up|in|an|era|in|which|computer-generated|images|are|the|norm|. Brings|together|some|of|the|biggest|names|in|Japanese|anime|,|with|impressive|results|. Wonder|,|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 A|flick|about|our|infantilized|culture|that|is|n't|entirely|infantile|. An|exceptionally|acted|,|quietly|affecting|cop|drama|. Sensual|,|funny|and|,|in|the|end|,|very|touching|. Angel|presents|events|partly|from|the|perspective|of|Aurelie|and|Christelle|,|and|infuses|the|film|with|the|sensibility|of|a|particularly|nightmarish|fairytale|. Who|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|? (|A|)|smarter|and|much|funnier|version|of|the|old|Police|Academy|flicks|. Proof|once|again|that|if|the|filmmakers|just|follow|the|books|,|they|ca|n't|go|wrong|. Better|effects|,|better|acting|and|a|hilarious|Kenneth|Branagh|. An|excellent|sequel|. Both|a|grand|tour|through|300|hundred|years|of|Russian|cultural|identity|and|a|stunning|technical|achievement|. Just|how|these|families|interact|may|surprise|you|. Proves|that|some|movie|formulas|do|n't|need|messing|with|--|like|the|big-bug|movie|. A|surprisingly|funny|movie|. This|new|movie|version|of|the|Alexandre|Dumas|classic|is|the|stuff|of|high|romance|,|brought|off|with|considerable|wit|. Like|all|of|Egoyan|'s|work|,|Ararat|is|fiercely|intelligent|and|uncommonly|ambitious|. If|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|. ...|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|. (|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|. Although|made|on|a|shoestring|and|unevenly|acted|,|conjures|a|Lynch-like|vision|of|the|rotting|underbelly|of|Middle|America|. A|piquant|meditation|on|the|things|that|prevent|people|from|reaching|happiness|. A|timely|look|back|at|civil|disobedience|,|anti-war|movements|and|the|power|of|strong|voices|. Rifkin|'s|references|are|...|impeccable|throughout|. I|'d|be|lying|if|I|said|my|ribcage|did|n't|ache|by|the|end|of|Kung|Pow|. More|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|. The|movie|is|ingenious|fun|. See|it|. The|combination|of|lightness|and|strictness|in|this|instance|gives|Italian|for|Beginners|an|amiable|aimlessness|that|keeps|it|from|seeming|predictably|formulaic|. The|script|is|smart|and|dark|-|hallelujah|for|small|favors|. An|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|. Mr.|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|. Spectacular|in|every|sense|of|the|word|,|even|if|you|don|'|t|know|an|Orc|from|a|Uruk-Hai|. This|is|n't|exactly|profound|cinema|,|but|it|'s|good-natured|and|sometimes|quite|funny|. This|is|a|finely|written|,|superbly|acted|offbeat|thriller|. Tres|Greek|writer|and|star|Nia|Vardalos|has|crafted|here|a|worldly-wise|and|very|funny|script|. A|tasty|appetizer|that|leaves|you|wanting|more|. It|gives|devastating|testimony|to|both|people|'s|capacity|for|evil|and|their|heroic|capacity|for|good|. The|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 Morton|deserves|an|Oscar|nomination|. A|colorful|,|vibrant|introduction|to|a|universal|human|impulse|,|lushly|photographed|and|beautifully|recorded|. The|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|''|. The|history|is|fascinating|;|the|action|is|dazzling|. They|just|do|n't|work|in|concert|. For|those|in|search|of|something|different|,|Wendigo|is|a|genuinely|bone-chilling|tale|. A|lovely|film|for|the|holiday|season|. It|remains|to|be|seen|whether|Statham|can|move|beyond|the|crime-land|action|genre|,|but|then|again|,|who|says|he|has|to|? A|hypnotic|cyber|hymn|and|a|cruel|story|of|youth|culture|. It|'s|a|fairy|tale|that|comes|from|a|renowned|Indian|film|culture|that|allows|Americans|to|finally|revel|in|its|splendor|. At|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|. The|performances|of|the|children|,|untrained|in|acting|,|have|an|honesty|and|dignity|that|breaks|your|heart|. Despite|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|. This|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|. Adams|,|with|four|scriptwriters|,|takes|care|with|the|characters|,|who|are|so|believable|that|you|feel|what|they|feel|. A|completely|spooky|piece|of|business|that|gets|under|your|skin|and|,|some|plot|blips|aside|,|stays|there|for|the|duration|. Superbly|photographed|and|staged|by|Mendes|with|a|series|of|riveting|set|pieces|the|likes|of|which|mainstream|audiences|have|rarely|seen|. The|ensemble|cast|turns|in|a|collectively|stellar|performance|,|and|the|writing|is|tight|and|truthful|,|full|of|funny|situations|and|honest|observations|. Not|quite|as|miraculous|as|its|DreamWorks|makers|would|have|you|believe|,|but|it|more|than|adequately|fills|the|eyes|and|stirs|the|emotions|. A|properly|spooky|film|about|the|power|of|spirits|to|influence|us|whether|we|believe|in|them|or|not|. The|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|. Like|Edward|Norton|in|American|History|X|,|Ryan|Gosling|(|Murder|By|Numbers|)|delivers|a|magnetic|performance|. This|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|. Rarely|,|indeed|almost|never|,|is|such|high-wattage|brainpower|coupled|with|pitch-perfect|acting|and|an|exquisite|,|unfakable|sense|of|cinema|. The|leanest|and|meanest|of|Solondz|'s|misanthropic|comedies|. A|dark|,|quirky|road|movie|that|constantly|defies|expectation|. There|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|. Often|messy|and|frustrating|,|but|very|pleasing|at|its|best|moments|,|it|'s|very|much|like|life|itself|. A|burst|of|color|,|music|,|and|dance|that|only|the|most|practiced|curmudgeon|could|fail|to|crack|a|smile|at|. An|energetic|,|violent|movie|with|a|momentum|that|never|lets|up|. Lasker|'s|canny|,|meditative|script|distances|sex|and|love|,|as|Byron|and|Luther|...|realize|they|ca|n't|get|no|satisfaction|without|the|latter|. It|turns|out|to|be|smarter|and|more|diabolical|than|you|could|have|guessed|at|the|beginning|. Cage|makes|an|unusual|but|pleasantly|haunting|debut|behind|the|camera|. Noyce|has|worked|wonders|with|the|material|. It|'s|mostly|a|pleasure|to|watch|. And|the|reason|for|that|is|a|self-aware|,|often|self-mocking|,|intelligence|. The|Chateau|is|a|risky|venture|that|never|quite|goes|where|you|expect|and|often|surprises|you|with|unexpected|comedy|. A|very|well-meaning|movie|,|and|it|will|stand|in|future|years|as|an|eloquent|memorial|to|the|World|Trade|Center|tragedy|. There|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|. Vividly|demonstrates|that|the|director|of|such|Hollywood|blockbusters|as|Patriot|Games|can|still|turn|out|a|small|,|personal|film|with|an|emotional|wallop|. A|four|star|performance|from|Kevin|Kline|who|unfortunately|works|with|a|two|star|script|. Dogtown|&|Z-Boys|evokes|the|blithe|rebel|fantasy|with|the|kind|of|insouciance|embedded|in|the|sexy|demise|of|James|Dean|. If|you|do|n't|flee|,|you|might|be|seduced|. If|you|do|n't|laugh|,|flee|. Payne|constructs|a|hilarious|ode|to|middle|America|and|middle|age|with|this|unlikely|odyssey|,|featuring|a|pathetic|,|endearing|hero|who|is|all|too|human|. Koury|frighteningly|and|honestly|exposes|one|teenager|'s|uncomfortable|class|resentment|and|,|in|turn|,|his|self-inflicted|retaliation|. The|Santa|Clause|2|proves|itself|a|more|streamlined|and|thought|out|encounter|than|the|original|could|ever|have|hoped|to|be|. Now|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|. Succeeds|where|its|recent|predecessor|miserably|fails|because|it|demands|that|you|suffer|the|dreadfulness|of|war|from|both|sides|. The|first|Bond|movie|in|ages|that|is|n't|fake|fun|. This|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|. A|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|. A|weird|and|wonderful|comedy|. The|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|. Has|the|capability|of|effecting|change|and|inspiring|hope|. A|first-class|,|thoroughly|involving|B|movie|that|effectively|combines|two|surefire|,|beloved|genres|--|the|prison|flick|and|the|fight|film|. LaBute|'s|careful|handling|makes|the|material|seem|genuine|rather|than|pandering|. In|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|. Death|to|Smoochy|is|often|very|funny|,|but|what|'s|even|more|remarkable|is|the|integrity|of|DeVito|'s|misanthropic|vision|. A|beautiful|,|entertaining|two|hours|. You|get|the|idea|,|though|,|that|Kapur|intended|the|film|to|be|more|than|that|. A|wonderful|,|ghastly|film|. Amid|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|. Parris|'|performance|is|credible|and|remarkably|mature|. `|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|.|' Munch|'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|. It|grabs|you|in|the|dark|and|shakes|you|vigorously|for|its|duration|. Leigh|'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|. Hashiguchi|vividly|captures|the|way|young|Japanese|live|now|,|chafing|against|their|culture|'s|manic|mix|of|millennial|brusqueness|and|undying|,|traditional|politesse|. Uneven|but|a|lot|of|fun|. I|know|that|I|'ll|never|listen|to|Marvin|Gaye|or|the|Supremes|the|same|way|again The|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|. Not|as|good|as|The|Full|Monty|,|but|a|really|strong|second|effort|. Whenever|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|. Unfolds|as|one|of|the|most|politically|audacious|films|of|recent|decades|from|any|country|,|but|especially|from|France|. This|real-life|Hollywood|fairy-tale|is|more|engaging|than|the|usual|fantasies|Hollywood|produces|. The|graphic|carnage|and|re-creation|of|war-torn|Croatia|is|uncomfortably|timely|,|relevant|,|and|sickeningly|real|. Left|me|with|the|visceral|sensation|of|longing|,|lasting|traces|of|Charlotte|'s|web|of|desire|and|desperation|. The|characters|are|more|deeply|thought|through|than|in|most|`|right-thinking|'|films|. Crammed|with|incident|,|and|bristles|with|passion|and|energy|. It|'s|fun|,|splashy|and|entertainingly|nasty|. A|simple|tale|of|an|unlikely|friendship|,|but|thanks|to|the|gorgeous|locales|and|exceptional|lead|performances|,|it|has|considerable|charm|. It|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|. There|'s|very|little|sense|to|what|'s|going|on|here|,|but|the|makers|serve|up|the|cliches|with|considerable|dash|. Witty|,|contemplative|,|and|sublimely|beautiful|. A|surprisingly|`|solid|'|achievement|by|director|Malcolm|D.|Lee|and|writer|John|Ridley|. Woven|together|handsomely|,|recalling|sixties|'|rockumentary|milestones|from|Lonely|Boy|to|Do|n't|Look|Back|. This|is|pure|,|exciting|moviemaking|. You|wo|n't|exactly|know|what|'s|happening|but|you|'ll|be|blissfully|exhausted|. The|1960s|rebellion|was|misdirected|:|you|ca|n't|fight|your|culture|. Works|because|Reno|does|n't|become|smug|or|sanctimonious|towards|the|audience|. Nettelbeck|...|has|a|pleasing|way|with|a|metaphor|. A|pure|participatory|event|that|malnourished|intellectuals|will|gulp|down|in|a|frenzy|. The|cast|delivers|without|sham|the|raw-nerved|story|. Steven|Soderbergh|'s|digital|video|experiment|is|a|clever|and|cutting|,|quick|and|dirty|look|at|modern|living|and|movie|life|. The|film|'s|highlight|is|definitely|its|screenplay|,|both|for|the|rhapsodic|dialogue|that|jumps|off|the|page|,|and|for|the|memorable|character|creations|. It|lets|you|brush|up|against|the|humanity|of|a|psycho|,|without|making|him|any|less|psycho|. Sillier|,|cuter|,|and|shorter|than|the|first|(|as|best|I|remember|)|,|but|still|a|very|good|time|at|the|cinema|. The|film|is|bright|and|flashy|in|all|the|right|ways|. Elegant|and|eloquent|(|meditation|)|on|death|and|that|most|elusive|of|passions|,|love|. Cut|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|. Filmmaker|Tian|Zhuangzhuang|triumphantly|returns|to|narrative|filmmaking|with|a|visually|masterful|work|of|quiet|power|. It|excels|because|,|unlike|so|many|other|Hollywood|movies|of|its|ilk|,|it|offers|hope|. Shot|in|rich|,|shadowy|black-and-white|,|Devils|chronicles|,|with|increasingly|amused|irony|,|the|relationship|between|reluctant|captors|and|befuddled|captives|. There|'s|no|clear|picture|of|who|killed|Bob|Crane|. But|here|'s|a|glimpse|at|his|life|. Spectacularly|beautiful|,|not|to|mention|mysterious|,|sensual|,|emotionally|intense|,|and|replete|with|virtuoso|throat-singing|. A|summer|entertainment|adults|can|see|without|feeling|embarrassed|,|but|it|could|have|been|more|. Sparse|but|oddly|compelling|. A|stirring|,|funny|and|finally|transporting|re-imagining|of|Beauty|and|the|Beast|and|1930s|horror|films The|Pinochet|Case|is|a|searing|album|of|remembrance|from|those|who|,|having|survived|,|suffered|most|. A|sweet-tempered|comedy|that|forgoes|the|knee-jerk|misogyny|that|passes|for|humor|in|so|many|teenage|comedies|. Argento|,|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|. With|so|many|bad|romances|out|there|,|this|is|the|kind|of|movie|that|deserves|a|chance|to|shine|. Brash|,|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|. Though|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|. ``|The|Quiet|American|''|begins|in|Saigon|in|1952|. That|'s|its|first|sign|of|trouble|. A|dazzling|thing|to|behold|--|as|long|as|you|'re|wearing|the|somewhat|cumbersome|3D|goggles|the|theater|provides|. Be|patient|with|the|lovely|Hush|! and|your|reward|will|be|a|thoughtful|,|emotional|movie|experience|. The|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|. Godard|has|never|made|a|more|sheerly|beautiful|film|than|this|unexpectedly|moving|meditation|on|love|,|history|,|memory|,|resistance|and|artistic|transcendence|. The|kind|of|movie|that|comes|along|only|occasionally|,|one|so|unconventional|,|gutsy|and|perfectly|executed|it|takes|your|breath|away|. Unlike|most|surf|movies|,|Blue|Crush|thrillingly|uses|modern|technology|to|take|the|viewer|inside|the|wave|. By|the|end|you|ca|n't|help|but|feel|`|stoked|.|' The|off-center|humor|is|a|constant|,|and|the|ensemble|gives|it|a|buoyant|delivery|. A|tasty|slice|of|droll|whimsy|. Mike|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 Awesome|work|:|ineffable|,|elusive|,|yet|inexplicably|powerful Sparkling|,|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|'|. Even|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|. Where|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|. The|result|is|somewhat|satisfying|--|it|still|comes|from|Spielberg|,|who|has|never|made|anything|that|was|n't|at|least|watchable|. But|it|'s|also|disappointing|to|a|certain|degree|. The|all-French|cast|is|marveilleux|. There|'s|a|lot|to|recommend|Read|My|Lips|. A|minor|film|with|major|pleasures|from|Portuguese|master|Manoel|de|Oliviera|... Brosnan|gives|a|portrayal|as|solid|and|as|perfect|as|his|outstanding|performance|as|Bond|in|Die|Another|Day|. Audiences|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|. The|movie|is|...|very|funny|as|you|peek|at|it|through|the|fingers|in|front|of|your|eyes|. Nicks|sustains|the|level|of|exaggerated|,|stylized|humor|throughout|by|taking|your|expectations|and|twisting|them|just|a|bit|. A|refreshing|change|from|the|usual|whoopee-cushion|effort|aimed|at|the|youth|market|. It|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|. ...|an|enjoyably|frothy|`|date|movie|'|... The|genius|of|the|work|speaks|volumes|,|offering|up|a|hallucinatory|dreamscape|that|frustrates|and|captivates|. Two|Weeks|Notice|has|appeal|beyond|being|a|Sandra|Bullock|vehicle|or|a|standard|romantic|comedy|. The|movie|'s|seams|may|show|...|but|Pellington|gives|``|Mothman|''|an|irresistibly|uncanny|ambience|that|goes|a|long|way|toward|keeping|the|picture|compelling|. If|Mostly|Martha|is|mostly|unsurprising|,|it|'s|still|a|sweet|,|even|delectable|diversion|. A|wild|comedy|that|could|only|spring|from|the|demented|mind|of|the|writer|of|Being|John|Malkovich|. Schnitzler|does|a|fine|job|contrasting|the|sleekness|of|the|film|'s|present|with|the|playful|paranoia|of|the|film|'s|past|.|' 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|.|' Mana|gives|us|compelling|,|damaged|characters|who|we|want|to|help|--|or|hurt|. The|sentimental|script|has|problems|,|but|the|actors|pick|up|the|slack|. A|good|documentary|can|make|interesting|a|subject|you|thought|would|leave|you|cold|. A|case|in|point|:|Doug|Pray|'s|Scratch|. Abderrahmane|Sissako|'s|Heremakono|(|Waiting|for|Happiness|)|is|an|elegiac|portrait|of|a|transit|city|on|the|West|African|coast|struggling|against|foreign|influences|. In|XXX|,|Diesel|is|that|rare|creature|--|an|action|hero|with|table|manners|,|and|one|who|proves|that|elegance|is|more|than|tattoo|deep|. An|engrossing|and|grim|portrait|of|hookers|:|what|they|think|of|themselves|and|their|clients|. It|all|plays|out|...|like|a|high-end|John|Hughes|comedy|,|a|kind|of|Elder|Bueller|'s|Time|Out|. The|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|. This|is|one|of|the|rarest|kinds|of|films|:|a|family-oriented|non-Disney|film|that|is|actually|funny|without|hitting|below|the|belt|. It|is|refreshingly|undogmatic|about|its|characters|. A|moving|and|important|film|. Deep|intelligence|and|a|warm|,|enveloping|affection|breathe|out|of|every|frame|. Famuyiwa|'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|. Showtime|is|a|fine-looking|film|with|a|bouncy|score|and|a|clutch|of|lively|songs|for|deft|punctuation|. Sweet|Home|Alabama|is|n't|going|to|win|any|Academy|Awards|,|but|this|date-night|diversion|will|definitely|win|some|hearts|. a|cruelly|funny|twist|on|teen|comedy|packed|with|inventive|cinematic|tricks|and|an|ironically|killer|soundtrack A|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|. Even|though|many|of|these|guys|are|less|than|adorable|(|their|lamentations|are|pretty|much|self-centered|)|,|there|'s|something|vital|about|the|movie|. A|tour|de|force|drama|about|the|astonishingly|pivotal|role|of|imagination|in|the|soulful|development|of|two|rowdy|teenagers|. It|is|a|strength|of|a|documentary|to|disregard|available|bias|,|especially|as|temptingly|easy|as|it|would|have|been|with|this|premise|. When|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|. Maryam|is|more|timely|now|than|ever|. An|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|. Piccoli|gives|a|superb|performance|full|of|deep|feeling|. What|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|. The|rare|movie|that|'s|as|crisp|and|to|the|point|as|the|novel|on|which|it|'s|based|. A|film|of|epic|scale|with|an|intimate|feeling|,|a|saga|of|the|ups|and|downs|of|friendships|. Sayles|has|an|eye|for|the|ways|people|of|different|ethnicities|talk|to|and|about|others|outside|the|group|. ``|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|. Niccol|the|filmmaker|merges|his|collaborators|'|symbolic|images|with|his|words|,|insinuating|,|for|example|,|that|in|Hollywood|,|only|God|speaks|to|the|press Khouri|manages|,|with|terrific|flair|,|to|keep|the|extremes|of|screwball|farce|and|blood-curdling|family|intensity|on|one|continuum|. Impresses|as|a|skillfully|assembled|,|highly|polished|and|professional|adaptation|...|just|about|as|chilling|and|unsettling|as|`|Manhunter|'|was|. It|'s|a|solid|movie|about|people|whose|lives|are|anything|but|. Though|a|touch|too|Arthouse|101|in|its|poetic|symbolism|,|Heaven|proves|to|be|a|good|match|of|the|sensibilities|of|two|directors|. I|simply|ca|n't|recommend|it|enough|. Wiseman|reveals|the|victims|of|domestic|abuse|in|all|of|their|pity|and|terror|. Muccino|,|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|. We|want|the|funk|-|and|this|movie|'s|got|it|. Wow|,|so|who|knew|Charles|Dickens|could|be|so|light-hearted|? Many|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|. The|storylines|are|woven|together|skilfully|,|the|magnificent|swooping|aerial|shots|are|breathtaking|,|and|the|overall|experience|is|awesome|. A|miraculous|movie|,|I|'m|Going|Home|is|so|slight|,|yet|overflows|with|wisdom|and|emotion|. Baran|is|shockingly|devoid|of|your|typical|Majid|Majidi|shoe-loving|,|crippled|children|. Every|moment|crackles|with|tension|,|and|by|the|end|of|the|flick|,|you|'re|on|the|edge|of|your|seat|. A|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|. The|series|'|message|about|making|the|right|choice|in|the|face|of|tempting|alternatives|remains|prominent|,|as|do|the|girls|'|amusing|personalities|. Richly|entertaining|and|suggestive|of|any|number|of|metaphorical|readings|. A|compelling|allegory|about|the|last|days|of|Germany|'s|democratic|Weimar|Republic|. Offers|a|guilt-free|trip|into|feel-good|territory|. A|B-movie|you|can|sit|through|,|enjoy|on|a|certain|level|and|then|forget|. Devos|delivers|a|perfect|performance|that|captures|the|innocence|and|budding|demons|within|a|wallflower|. Disappointingly|,|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|. Director|Todd|Solondz|has|made|a|movie|about|critical|reaction|to|his|two|previous|movies|,|and|about|his|responsibility|to|the|characters|that|he|creates|. The|word|that|comes|to|mind|,|while|watching|Eric|Rohmer|'s|tribute|to|a|courageous|Scottish|lady|,|is|painterly|. A|fascinating|case|study|of|flower-power|liberation|--|and|the|price|that|was|paid|for|it|. Bluer|than|the|Atlantic|and|more|biologically|detailed|than|an|autopsy|,|the|movie|...|is|,|also|,|frequently|hilarious|. Really|is|a|pan-American|movie|,|with|moments|of|genuine|insight|into|the|urban|heart|. An|overly|familiar|scenario|is|made|fresh|by|an|intelligent|screenplay|and|gripping|performances|in|this|low-budget|,|video-shot|,|debut|indie|effort|. Peppering|this|urban|study|with|references|to|Norwegian|folktales|,|Villeneuve|creates|in|Maelstrom|a|world|where|the|bizarre|is|credible|and|the|real|turns|magical|. Ong|'s|promising|debut|is|a|warm|and|well-told|tale|of|one|recent|Chinese|immigrant|'s|experiences|in|New|York|City|. That|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|. There|'s|not|much|to|Fatale|,|outside|of|its|stylish|surprises|...|but|that|'s|OK|. What|redeems|the|film|is|the|cast|,|particularly|the|Ya-Yas|themselves|. Beautiful|,|cold|,|oddly|colorful|and|just|plain|otherworldly|,|a|freaky|bit|of|art|that|'s|there|to|scare|while|we|delight|in|the|images|. It|'s|up|to|(|Watts|)|to|lend|credibility|to|this|strange|scenario|,|and|her|presence|succeeds|in|making|us|believe|. The|film|is|darkly|atmospheric|,|with|Herrmann|quietly|suggesting|the|sadness|and|obsession|beneath|Hearst|'s|forced|avuncular|chortles|. Shyamalan|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|. ...|the|story|,|like|Ravel|'s|Bolero|,|builds|to|a|crescendo|that|encompasses|many|more|paths|than|we|started|with|. It|'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|. Gondry|'s|direction|is|adequate|...|but|what|gives|Human|Nature|its|unique|feel|is|Kaufman|'s|script|. The|film|'s|plot|may|be|shallow|,|but|you|'ve|never|seen|the|deep|like|you|see|it|in|these|harrowing|surf|shots|. With|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|. The|observations|of|this|social\/economic\/urban|environment|are|canny|and|spiced|with|irony|. Renner|carries|much|of|the|film|with|a|creepy|and|dead-on|performance|. Jarecki|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|. The|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|. Aniston|has|at|last|decisively|broken|with|her|Friends|image|in|an|independent|film|of|satiric|fire|and|emotional|turmoil|. A|mildly|enjoyable|if|toothless|adaptation|of|a|much|better|book|. Unexpected|,|and|often|contradictory|,|truths|emerge|. 300|years|of|Russian|history|and|culture|compressed|into|an|evanescent|,|seamless|and|sumptuous|stream|of|consciousness|. Intelligent|,|caustic|take|on|a|great|writer|and|dubious|human|being|. May|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|. Less|the|sensational|true-crime|hell-jaunt|purists|might|like|and|more|experimental|in|its|storytelling|(|though|no|less|horrifying|for|it|)|. The|film|is|one|of|the|year|'s|best|. Eerily|accurate|depiction|of|depression|. ...|a|delicious|crime|drama|on|par|with|the|slickest|of|Mamet|. Charming|and|witty|,|it|'s|also|somewhat|clumsy|. Directed|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|. Escapes|the|precious|trappings|of|most|romantic|comedies|,|infusing|into|the|story|very|real|,|complicated|emotions|. This|big|screen|caper|has|a|good|bark|,|far|from|being|a|bow-wow|. (|Allen|)|manages|to|breathe|life|into|this|somewhat|tired|premise|. I|have|two|words|to|say|about|Reign|of|Fire|. Great|dragons|! By|surrounding|us|with|hyper-artificiality|,|Haynes|makes|us|see|familiar|issues|,|like|racism|and|homophobia|,|in|a|fresh|way|. A|deliberative|account|of|a|lifestyle|characterized|by|its|surface-obsession|--|one|that|typifies|the|delirium|of|post|,|pre|,|and|extant|stardom|. Superb|production|values|&|Christian|Bale|'s|charisma|make|up|for|a|derivative|plot|. The|film|has|the|courage|of|its|convictions|and|excellent|performances|on|its|side|. I|know|I|should|n't|have|laughed|,|but|hey|,|those|farts|got|to|my|inner|nine-year-old|. A|movie|that|will|thrill|you|,|touch|you|and|make|you|laugh|as|well|. It|'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|. More|vaudeville|show|than|well-constructed|narrative|,|but|on|those|terms|it|'s|inoffensive|and|actually|rather|sweet|. The|case|is|a|convincing|one|,|and|should|give|anyone|with|a|conscience|reason|to|pause|. The|actresses|find|their|own|rhythm|and|protect|each|other|from|the|script|'s|bad|ideas|and|awkwardness|. Diverting|French|comedy|in|which|a|husband|has|to|cope|with|the|pesky|moods|of|jealousy|. Captivates|and|shows|how|a|skillful|filmmaker|can|impart|a|message|without|bludgeoning|the|audience|over|the|head|. There|is|a|welcome|lack|of|pretension|about|the|film|,|which|very|simply|sets|out|to|entertain|and|ends|up|delivering|in|good|measure|. Coy|but|exhilarating|,|with|really|solid|performances|by|Ving|Rhames|and|Wesley|Snipes|. It|is|a|likable|story|,|told|with|competence|. Not|only|does|Spider-Man|deliver|,|but|I|suspect|it|might|deliver|again|and|again|. Tackles|the|difficult|subject|of|grief|and|loss|with|such|life-embracing|spirit|that|the|theme|does|n't|drag|an|audience|down|. A|small|movie|with|a|big|impact|. The|movie|,|despite|its|rough|edges|and|a|tendency|to|sag|in|certain|places|,|is|wry|and|engrossing|. I|admire|the|closing|scenes|of|the|film|,|which|seem|to|ask|whether|our|civilization|offers|a|cure|for|Vincent|'s|complaint|. Like|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|. a|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|. Using|an|endearing|cast|,|writer\/director|Dover|Kosashvili|takes|a|slightly|dark|look|at|relationships|,|both|sexual|and|kindred|. When|a|movie|has|stuck|around|for|this|long|,|you|know|there|'s|something|there|. It|'s|that|good|. Smart|,|sassy|interpretation|of|the|Oscar|Wilde|play|. Forget|about|one|Oscar|nomination|for|Julianne|Moore|this|year|-|she|should|get|all|five|. Japanese|director|Shohei|Imamura|'s|latest|film|is|an|odd|but|ultimately|satisfying|blend|of|the|sophomoric|and|the|sublime|. Kwan|is|a|master|of|shadow|,|quietude|,|and|room|noise|,|and|Lan|Yu|is|a|disarmingly|lived-in|movie|. While|the|plot|follows|a|predictable|connect-the-dots|course|...|director|John|Schultz|colors|the|picture|in|some|evocative|shades|. Katz|'s|documentary|does|n't|have|much|panache|,|but|with|material|this|rich|it|does|n't|need|it|. We|get|an|image|of|Big|Papa|spanning|history|,|rather|than|suspending|it|. Evelyn|'s|strong|cast|and|surehanded|direction|make|for|a|winning|,|heartwarming|yarn|. A|conventional|but|heartwarming|tale|. This|is|one|of|the|outstanding|thrillers|of|recent|years|. Skins|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|. A|film|of|quiet|power|. More|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|. An|intelligent|romantic|thriller|of|a|very|old-school|kind|of|quality|. The|sword|fighting|is|well|done|and|Auteuil|is|a|goofy|pleasure|. Yes|,|MIBII|is|rote|work|and|predictable|,|but|with|a|philosophical|visual|coming|right|at|the|end|that|extravagantly|redeems|it|. Film|ca|n't|quite|maintain|its|initial|momentum|,|but|remains|sporadically|funny|throughout|. O|Fantasma|is|boldly|,|confidently|orchestrated|,|aesthetically|and|sexually|,|and|its|impact|is|deeply|and|rightly|disturbing|. It|'s|still|Adam|Sandler|,|and|it|'s|not|Little|Nicky|. And|for|many|of|us|,|that|'s|good|enough|. Here|'s|yet|another|cool|crime|movie|that|actually|manages|to|bring|something|new|into|the|mix|. Lee|'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|. Kaufman|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|. It|tends|to|remind|one|of|a|really|solid|Woody|Allen|film|,|with|its|excellent|use|of|New|York|locales|and|sharp|writing While|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|. The|film|,|despite|the|gratuitous|cinematic|distractions|impressed|upon|it|,|is|still|good|fun|. The|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|. Has|an|unmistakable|,|easy|joie|de|vivre|. More|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|. This|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|. Mostly|works|because|of|the|universal|themes|,|earnest|performances|...|and|excellent|use|of|music|by|India|'s|popular|Gulzar|and|Jagjit|Singh|. ...|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|. That|'s|fun|for|kids|of|any|age|. Writer\/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|. Rarely|have|I|seen|a|film|so|willing|to|champion|the|fallibility|of|the|human|heart|. Holofcener|rejects|patent|solutions|to|dramatize|life|'s|messiness|from|inside|out|,|in|all|its|strange|quirks|. Like|The|Full|Monty|,|this|is|sure|to|raise|audience|'s|spirits|and|leave|them|singing|long|after|the|credits|roll|. ...|a|gleefully|grungy|,|hilariously|wicked|black|comedy|... Kinnear|and|Dafoe|give|what|may|be|the|performances|of|their|careers|. All|in|all|,|a|great|party|. A|moving|story|of|determination|and|the|human|spirit|. ``|Brown|Sugar|''|admirably|aspires|to|be|more|than|another|``|Best|Man|''|clone|by|weaving|a|theme|throughout|this|funny|film|. (|Gulpilil|)|is|a|commanding|screen|presence|,|and|his|character|'s|abundant|humanism|makes|him|the|film|'s|moral|compass|. An|effortlessly|accomplished|and|richly|resonant|work|. In|some|ways|,|Lagaan|is|quintessential|Bollywood|. Except|it|'s|much|,|much|better|. Though|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|. Scotland|looks|wonderful|,|the|fans|are|often|funny|fanatics|,|the|showdown|sure|beats|a|bad|day|of|golf|. What|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|. The|emotion|is|impressively|true|for|being|so|hot-blooded|,|and|both|leads|are|up|to|the|task|. Although|it|lacks|the|detail|of|the|book|,|the|film|does|pack|some|serious|suspense|. I|'d|watch|these|two|together|again|in|a|New|York|minute|. There|'s|nothing|like|love|to|give|a|movie|a|B-12|shot|,|and|CQ|shimmers|with|it|. A|moving|essay|about|the|specter|of|death|,|especially|suicide|. This|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|. Like|a|less|dizzily|gorgeous|companion|to|Mr.|Wong|'s|In|the|Mood|for|Love|--|very|much|a|Hong|Kong|movie|despite|its|mainland|setting|. ...|a|somber|film|,|almost|completely|unrelieved|by|any|comedy|beyond|the|wistful|everyday|ironies|of|the|working|poor|. Coral|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|. The|overall|result|is|an|intelligent|,|realistic|portrayal|of|testing|boundaries|. Poignant|and|moving|,|A|Walk|to|Remember|is|an|inspirational|love|story|,|capturing|the|innocence|and|idealism|of|that|first|encounter|. Worth|a|salute|just|for|trying|to|be|more|complex|than|your|average|film|. Handsome|and|sophisticated|approach|to|the|workplace|romantic|comedy|. A|shimmeringly|lovely|coming-of-age|portrait|,|shot|in|artful|,|watery|tones|of|blue|,|green|and|brown|. While|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|. In|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|. We|admire|this|film|for|its|harsh|objectivity|and|refusal|to|seek|our|tears|,|our|sympathies|. An|often|watchable|,|though|goofy|and|lurid|,|blast|of|a|costume|drama|set|in|the|late|15th|century|. The|entire|cast|is|first-rate|,|especially|Sorvino|. The|Cat|'s|Meow|marks|a|return|to|form|for|director|Peter|Bogdanovich|... This|one|is|strictly|a|lightweight|escapist|film|. This|sensitive|,|smart|,|savvy|,|compelling|coming-of-age|drama|delves|into|the|passive-aggressive|psychology|of|co-dependence|and|the|struggle|for|self-esteem|. The|culmination|of|everyone|'s|efforts|is|given|life|when|A|Selection|appears|in|its|final|form|(|in|``|Last|Dance|''|)|. In|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|. A|very|charming|and|funny|movie|. This|is|a|film|that|manages|to|find|greatness|in|the|hue|of|its|drastic|iconography|. Streamlined|to|a|tight|,|brisk|85-minute|screwball|thriller|,|``|Big|Trouble|''|is|funny|,|harmless|and|as|substantial|as|a|tub|of|popcorn|with|extra|butter|. Consummate|actor|Barry|has|done|excellent|work|here|. The|biggest|problem|with|this|movie|is|that|it|'s|not|nearly|long|enough|. While|not|all|that|bad|of|a|movie|,|it|'s|nowhere|near|as|good|as|the|original|. Ali|'s|graduation|from|little|screen|to|big|is|far|less|painful|than|his|opening|scene|encounter|with|an|over-amorous|terrier|. I|have|always|appreciated|a|smartly|written|motion|picture|,|and|,|whatever|flaws|Igby|Goes|Down|may|possess|,|it|is|undeniably|that|. You|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|. May|be|the|most|undeserving|victim|of|critical|overkill|since|Town|and|Country|. A|chilly|,|brooding|but|quietly|resonant|psychological|study|of|domestic|tension|and|unhappiness|. The|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|. Cold|,|nervy|and|memorable|. Becomes|a|fascinating|study|of|isolation|and|frustration|that|successfully|recreates|both|the|physical|setting|and|emotional|tensions|of|the|Papin|sisters|. Spend|your|Benjamins|on|a|matinee|. All|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|. Worth|seeing|just|for|Weaver|and|LaPaglia|. A|pleasant|piece|of|escapist|entertainment|. Among|the|many|pleasures|are|the|lively|intelligence|of|the|artists|and|their|perceptiveness|about|their|own|situations|. It|'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|. It|'s|the|cute|frissons|of|discovery|and|humor|between|Chaplin|and|Kidman|that|keep|this|nicely|wound|clock|not|just|ticking|,|but|humming|. The|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|. There|'s|something|about|a|marching|band|that|gets|me|where|I|live|. Cuaron|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|. It|'s|definitely|an|improvement|on|the|first|Blade|,|since|it|does|n't|take|itself|so|deadly|seriously|. A|slam-bang|extravaganza|that|is|all|about|a|wild-and-woolly|,|wall-to-wall|good|time|. What|'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|does|n't|give|a|damn|. Is|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|'|. Writer-director|Juan|Carlos|Fresnadillo|makes|a|feature|debut|that|is|fully|formed|and|remarkably|assured|. insightfully|written|,|delicately|performed Perhaps|the|grossest|movie|ever|made|. Funny|,|though|. This|90-minute|postmodern|voyage|was|more|diverting|and|thought-provoking|than|I|'d|expected|it|to|be|. One|of|those|exceedingly|rare|films|in|which|the|talk|alone|is|enough|to|keep|us|involved|. A|heartbreakingly|thoughtful|minor|classic|,|the|work|of|a|genuine|and|singular|artist|. An|affectionately|goofy|satire|that|'s|unafraid|to|throw|elbows|when|necessary|... Between|them|,|De|Niro|and|Murphy|make|Showtime|the|most|savory|and|hilarious|guilty|pleasure|of|many|a|recent|movie|season|. Jackson|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|. Filmmakers|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|. Interesting|both|as|a|historical|study|and|as|a|tragic|love|story|. A|stylish|but|steady|,|and|ultimately|very|satisfying|,|piece|of|character-driven|storytelling|. It|picked|me|up|,|swung|me|around|,|and|dropped|me|back|in|my|seat|with|more|emotional|force|than|any|other|recent|film|. Graham|Greene|'s|novel|of|colonialism|and|empire|is|elevated|by|Michael|Caine|'s|performance|as|a|weary|journalist|in|a|changing|world|. Though|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|. Compulsively|watchable|,|no|matter|how|degraded|things|get|. Delivers|roughly|equal|amounts|of|beautiful|movement|and|inside|information|. Bon|appétit|! Just|like|a|splendid|meal|,|Red|Dragon|satisfies|--|from|its|ripe|recipe|,|inspiring|ingredients|,|certified|cuisine|and|palatable|presentation|. The|structure|is|simple|,|but|in|its|own|way|,|Rabbit-Proof|Fence|is|a|quest|story|as|grand|as|The|Lord|of|the|Rings|. This|charming|,|thought-provoking|New|York|fest|of|life|and|love|has|its|rewards|. Some|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|. Playfully|profound|...|and|crazier|than|Michael|Jackson|on|the|top|floor|of|a|skyscraper|nursery|surrounded|by|open|windows|. A|film|that|will|enthrall|the|whole|family|. The|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|. K|19|stays|afloat|as|decent|drama\/action|flick It|sends|you|away|a|believer|again|and|quite|cheered|at|just|that|. Like|the|best|60|Minutes|exposé|,|the|film|(|at|80|minutes|)|is|actually|quite|entertaining|. an|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 An|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|. Nair|does|n'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|. Both|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|. Leading|a|double|life|in|an|American|film|only|comes|to|no|good|,|but|not|here|. Matters|play|out|realistically|if|not|always|fairly|. In|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|. Like|Mike|is|a|harmlessly|naïve|slice|of|b-ball|fantasy|,|fit|for|filling|in|during|the|real|NBA|'s|off-season|. Though|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|. What|the|movie|lacks|in|action|it|more|than|makes|up|for|in|drama|,|suspense|,|revenge|,|and|romance|. Just|offbeat|enough|to|keep|you|interested|without|coming|close|to|bowling|you|over|. Probes|in|a|light-hearted|way|the|romantic|problems|of|individuals|for|whom|the|yearning|for|passion|spells|discontent|. What|elevates|the|movie|above|the|run-of-the-mill|singles|blender|is|its|surreal|sense|of|humor|and|technological|finish|. A|film|about|female|friendship|that|men|can|embrace|and|women|will|talk|about|for|hours|. The|directing|and|story|are|disjointed|,|flaws|that|have|to|be|laid|squarely|on|Taylor|'s|doorstep|. But|the|actors|make|this|worth|a|peek|. Light|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|. It|may|be|about|drug|dealers|,|kidnapping|,|and|unsavory|folks|,|but|the|tone|and|pacing|are|shockingly|intimate|. Massoud|'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|. If|villainous|vampires|are|your|cup|of|blood|,|Blade|2|is|definitely|a|cut|above|the|rest|. Drumline|ably|captures|the|complicated|relationships|in|a|marching|band|. Because|the|film|deliberately|lacks|irony|,|it|has|a|genuine|dramatic|impact|;|it|plays|like|a|powerful|1957|drama|we|'ve|somehow|never|seen|before|. Does|point|the|way|for|adventurous|Indian|filmmakers|toward|a|crossover|into|nonethnic|markets|. Seems|based|on|ugly|ideas|instead|of|ugly|behavior|,|as|Happiness|was|...|Hence|,|Storytelling|is|far|more|appealing|. ``|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|. An|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|. A|terrific|date|movie|,|whatever|your|orientation|. Not|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|. What|it|lacks|in|originality|it|makes|up|for|in|effective|if|cheap|moments|of|fright|and|dread|. The|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|. A|gem|of|a|movie|. Witty|,|vibrant|,|and|intelligent|. It|'s|all|stitched|together|with|energy|,|intelligence|and|verve|,|enhanced|by|a|surplus|of|vintage|archive|footage|. Miller|comes|at|film|with|bracing|intelligence|and|a|vision|both|painterly|and|literary|. The|film|is|moody|,|oozing|,|chilling|and|heart-warming|all|at|once|...|a|twisting|,|unpredictable|,|cat-and-mouse|thriller|. Eight|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|. This|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|. A|thriller|whose|style|,|structure|and|rhythms|are|so|integrated|with|the|story|,|you|can|not|separate|them|. It|'s|a|hoot|watching|The|Rock|chomp|on|jumbo|ants|,|pull|an|arrow|out|of|his|back|,|and|leap|unscathed|through|raging|fire|! Returning|director|Rob|Minkoff|...|and|screenwriter|Bruce|Joel|Rubin|...|have|done|a|fine|job|of|updating|White|'s|dry|wit|to|a|new|age|. Unfolds|with|such|a|wallop|of|you-are-there|immediacy|that|when|the|bullets|start|to|fly|,|your|first|instinct|is|to|duck|. A|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|. An|unflinching|look|at|the|world|'s|dispossessed|. If|the|film|fails|to|fulfill|its|own|ambitious|goals|,|it|nonetheless|sustains|interest|during|the|long|build-up|of|expository|material|. Polanski|has|found|the|perfect|material|with|which|to|address|his|own|World|War|II|experience|in|his|signature|style|. It|is|life|affirming|and|heartbreaking|,|sweet|without|the|decay|factor|,|funny|and|sad|. An|off-beat|and|fanciful|film|about|the|human|need|for|monsters|to|blame|for|all|that|is|amiss|in|the|world|. A|colorful|,|joyous|celebration|of|life|;|a|tapestry|woven|of|romance|,|dancing|,|singing|,|and|unforgettable|characters|. Frei|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|. Nicely|combines|the|enigmatic|features|of|`|Memento|'|with|the|hallucinatory|drug|culture|of|`|Requiem|for|a|Dream|.|' A|well|paced|and|satisfying|little|drama|that|deserved|better|than|a|`|direct-to-video|'|release|. The|best|part|about|``|Gangs|''|was|Daniel|Day-Lewis|. A|treat|for|its|depiction|on|not|giving|up|on|dreams|when|you|'re|a|struggling|nobody|. One|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|. A|gripping|documentary|that|reveals|how|deep|the|antagonism|lies|in|war-torn|Jerusalem|. Director|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|. One|of|the|film|'s|most|effective|aspects|is|its|Tchaikovsky|soundtrack|of|neurasthenic|regret|. Solondz|creates|some|effective|moments|of|discomfort|for|character|and|viewer|alike|. The|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|. I|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|. Somehow|Ms.|Griffiths|and|Mr.|Pryce|bring|off|this|wild|Welsh|whimsy|. More|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|. For|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|. A|fanciful|drama|about|Napoleon|'s|last|years|and|his|surprising|discovery|of|love|and|humility|. A|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|. Eric|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|. Lovely|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|. Campbell|Scott|finds|the|ideal|outlet|for|his|flick-knife|diction|in|the|role|of|Roger|Swanson|. (|Fiji|diver|Rusi|Vulakoro|and|the|married|couple|Howard|and|Michelle|Hall|)|show|us|the|world|they|love|and|make|us|love|it|,|too|. Russian|Ark|is|a|new|treasure|of|the|Hermitage|. The|animated|sequences|are|well|done|and|perfectly|constructed|to|convey|a|sense|of|childhood|imagination|and|creating|adventure|out|of|angst|. It|'s|definitely|a|step|in|the|right|direction|. As|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|. Ourside|the|theatre|Roger|might|be|intolerable|company|,|but|inside|it|he|'s|well|worth|spending|some|time|with|. A|gem|,|captured|in|the|unhurried|,|low-key|style|favored|by|many|directors|of|the|Iranian|new|wave|. In|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|. Ranges|from|laugh-out-loud|hilarious|to|wonder-what|-|time-it-is|tedious|. The|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|. Talk|To|Her|is|not|the|perfect|movie|many|have|made|it|out|to|be|,|but|it|'s|still|quite|worth|seeing|. Beating|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|. This|is|a|dark|,|gritty|,|sometimes|funny|little|gem|. For|all|its|visual|panache|and|compelling|supporting|characters|,|the|heart|of|the|film|rests|in|the|relationship|between|Sullivan|and|his|son|. What|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|. A|hidden-agenda|drama|that|shouts|classic|French|nuance|. With|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|. An|invaluable|historical|document|thanks|to|the|filmmaker|'s|extraordinary|access|to|Massoud|,|whose|charm|,|cultivation|and|devotion|to|his|people|are|readily|apparent|. The|performances|of|the|four|main|actresses|bring|their|characters|to|life|. A|little|melodramatic|,|but|with|enough|hope|to|keep|you|engaged|. Lan|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|. Everyone|should|be|able|to|appreciate|the|wonderful|cinematography|and|naturalistic|acting|. This|often-hilarious|farce|manages|to|generate|the|belly|laughs|of|lowbrow|comedy|without|sacrificing|its|high-minded|appeal|. Expands|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|. The|farcical|elements|seemed|too|pat|and|familiar|to|hold|my|interest|,|yet|its|diverting|grim|message|is|a|good|one|. Shanghai|Ghetto|may|not|be|as|dramatic|as|Roman|Polanski|'s|The|Pianist|,|but|its|compassionate|spirit|soars|every|bit|as|high|. Despite|these|annoyances|,|the|capable|Clayburgh|and|Tambor|really|do|a|great|job|of|anchoring|the|characters|in|the|emotional|realities|of|middle|age|. The|underworld|urban|angst|is|derivative|of|Martin|Scorsese|'s|Taxi|Driver|and|Goodfellas|,|but|this|film|speaks|for|itself|. The|film|'s|heady|yet|far|from|impenetrable|theory|suggests|that|Russians|take|comfort|in|their|closed-off|nationalist|reality|. Despite|modest|aspirations|its|occasional|charms|are|not|to|be|dismissed|. Constantly|touching|,|surprisingly|funny|,|semi-surrealist|exploration|of|the|creative|act|. The|journey|is|worth|your|time|,|especially|if|you|have|Ellen|Pompeo|sitting|next|to|you|for|the|ride|. Merci|pour|le|movie|. For|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|. What|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|. All|three|women|deliver|remarkable|performances|. Claire|is|a|terrific|role|for|someone|like|Judd|,|who|really|ought|to|be|playing|villains|. It|'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|. Compassionately|explores|the|seemingly|irreconcilable|situation|between|conservative|Christian|parents|and|their|estranged|gay|and|lesbian|children|. The|soundtrack|alone|is|worth|the|price|of|admission|. Rodriguez|does|a|splendid|job|of|racial|profiling|Hollywood|style|--|casting|excellent|Latin|actors|of|all|ages|--|a|trend|long|overdue|. Beneath|the|film|'s|obvious|determination|to|shock|at|any|cost|lies|considerable|skill|and|determination|,|backed|by|sheer|nerve|. Bielinsky|is|a|filmmaker|of|impressive|talent|. So|beautifully|acted|and|directed|,|it|'s|clear|that|Washington|most|certainly|has|a|new|career|ahead|of|him|if|he|so|chooses|. A|visual|spectacle|full|of|stunning|images|and|effects|. A|gentle|and|engrossing|character|study|. It|'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|. An|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|. A|mischievous|visual|style|and|oodles|of|charm|make|`|Cherish|'|a|very|good|(|but|not|great|)|movie|. Just|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|. (|A|)|strong|piece|of|work|. A|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|. The|Importance|of|Being|Earnest|,|so|thick|with|wit|it|plays|like|a|reading|from|Bartlett|'s|Familiar|Quotations Daring|and|beautifully|made|. Made|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|. Imagine|O.|Henry|'s|The|Gift|of|the|Magi|relocated|to|the|scuzzy|underbelly|of|NYC|'s|drug|scene|. Merry|friggin|'|Christmas|! The|film|does|give|a|pretty|good|overall|picture|of|the|situation|in|Laramie|following|the|murder|of|Matthew|Shepard|. Both|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|. Ferrara|'s|best|film|in|years|. A|remarkably|insightful|look|at|the|backstage|angst|of|the|stand-up|comic|. Nothing|short|of|wonderful|with|its|ten-year-old|female|protagonist|and|its|steadfast|refusal|to|set|up|a|dualistic|battle|between|good|and|evil|. Davis|'|candid|,|archly|funny|and|deeply|authentic|take|on|intimate|relationships|comes|to|fruition|in|her|sophomore|effort|. It|'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|. Matches|neorealism|'s|impact|by|showing|the|humanity|of|a|war-torn|land|filled|with|people|who|just|want|to|live|their|lives|. Those|moviegoers|who|would|automatically|bypass|a|hip-hop|documentary|should|give|``|Scratch|''|a|second|look|. Baby-faced|Renner|is|eerily|convincing|as|this|bland|blank|of|a|man|with|unimaginable|demons|within|. Romantic|,|riveting|and|handsomely|animated|. A|competent|,|unpretentious|entertainment|destined|to|fill|the|after-school|slot|at|shopping|mall|theaters|across|the|country|. Shot|largely|in|small|rooms|,|the|film|has|a|gentle|,|unforced|intimacy|that|never|becomes|claustrophobic|. Where|Janice|Beard|falters|in|its|recycled|aspects|,|implausibility|,|and|sags|in|pace|,|it|rises|in|its|courageousness|,|and|comedic|employment|. Byler|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|. McGrath|has|deftly|trimmed|Dickens|'|wonderfully|sprawling|soap|opera|,|the|better|to|focus|on|the|hero|'s|odyssey|from|cowering|poverty|to|courage|and|happiness|. A|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|. Metaphors|abound|,|but|it|is|easy|to|take|this|film|at|face|value|and|enjoy|its|slightly|humorous|and|tender|story|. As|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|. The|best|comedy|concert|movie|I|'ve|seen|since|Cho|'s|previous|concert|comedy|film|,|I|'m|the|One|That|I|Want|,|in|2000|. Broomfield|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|. Offers|laughs|and|insight|into|one|of|the|toughest|ages|a|kid|can|go|through|. A|perceptive|,|good-natured|movie|. An|amused|indictment|of|Jaglom|'s|own|profession|. A|small|movie|with|a|big|heart|. Hugely|accomplished|slice|of|Hitchcockian|suspense|. The|formula|is|familiar|but|enjoyable|. Tells|a|fascinating|,|compelling|story|. A|triumph|,|a|film|that|hews|out|a|world|and|carries|us|effortlessly|from|darkness|to|light|. What|begins|as|a|conventional|thriller|evolves|into|a|gorgeously|atmospheric|meditation|on|life-changing|chance|encounters|. The|Lady|and|the|Duke|is|a|smart|,|romantic|drama|that|dares|to|depict|the|French|Revolution|from|the|aristocrats|'|perspective|. Most|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 World|Traveler|might|not|go|anywhere|new|,|or|arrive|anyplace|special|,|but|it|'s|certainly|an|honest|attempt|to|get|at|something|. There|'s|much|tongue|in|cheek|in|the|film|and|there|'s|no|doubt|the|filmmaker|is|having|fun|with|it|all|. There|'s|absolutely|no|reason|why|Blue|Crush|,|a|late-summer|surfer|girl|entry|,|should|be|as|entertaining|as|it|is An|action\/thriller|of|the|finest|kind|,|evoking|memories|of|Day|of|the|Jackal|,|The|French|Connection|,|and|Heat|. The|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|. In|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|. Insomnia|does|not|become|one|of|those|rare|remakes|to|eclipse|the|original|,|but|it|does|n't|disgrace|it|,|either|. classic|cinema|served|up|with|heart|and|humor (|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|. The|events|of|the|film|are|just|so|WEIRD|that|I|honestly|never|knew|what|the|hell|was|coming|next|. Nicole|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|. That|Jack|Nicholson|makes|this|man|so|watchable|is|a|tribute|not|only|to|his|craft|,|but|to|his|legend|. Has|a|solid|emotional|impact|. Successfully|blended|satire|,|high|camp|and|yet|another|sexual|taboo|into|a|really|funny|movie|. Mark|Pellington|'s|latest|pop|thriller|is|as|kooky|and|overeager|as|it|is|spooky|and|subtly|in|love|with|myth|. While|maintaining|the|appearance|of|clinical|objectivity|,|this|sad|,|occasionally|horrifying|but|often|inspiring|film|is|among|Wiseman|'s|warmest|. Raimi|crafted|a|complicated|hero|who|is|a|welcome|relief|from|the|usual|two-dimensional|offerings|. An|enjoyable|above|average|summer|diversion|. There|is|simply|no|doubt|that|this|film|asks|the|right|questions|at|the|right|time|in|the|history|of|our|country|. If|you|'ve|the|patience|,|there|are|great|rewards|here|. As|a|science|fiction|movie|,|``|Minority|Report|''|astounds|. Watching|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|. Visually|breathtaking|,|viscerally|exciting|,|and|dramatically|moving|,|it|'s|the|very|definition|of|epic|adventure|. Chris|Columbus|'|sequel|is|faster|,|livelier|and|a|good|deal|funnier|than|his|original|. Watching|this|film|,|what|we|feel|is|n't|mainly|suspense|or|excitement|. The|dominant|feeling|is|something|like|nostalgia|.|' ...|a|great|,|participatory|spectator|sport|.|' A|rather|brilliant|little|cult|item|:|a|pastiche|of|children|'s|entertainment|,|superhero|comics|,|and|Japanese|animation|. Believes|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|. Adam|SANDLER|! In|an|ART|FILM|! As|averse|as|I|usually|am|to|feel-good|,|follow-your-dream|Hollywood|fantasies|,|this|one|got|to|me|. Stone|seems|to|have|a|knack|for|wrapping|the|theater|in|a|cold|blanket|of|urban|desperation|. ...|a|funny|yet|dark|and|seedy|clash|of|cultures|and|generations|. The|hook|is|the|drama|within|the|drama|,|as|an|unsolved|murder|and|an|unresolved|moral|conflict|jockey|for|the|spotlight|. Over|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|. Like|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 One|of|those|movies|that|make|us|pause|and|think|of|what|we|have|given|up|to|acquire|the|fast-paced|contemporary|society|. One|of|the|most|original|American|productions|this|year|,|you|'ll|find|yourself|remembering|this|refreshing|visit|to|a|Sunshine|State|. Melds|derivative|elements|into|something|that|is|often|quite|rich|and|exciting|,|and|always|a|beauty|to|behold|. Gives|everyone|something|to|shout|about|. The|entire|movie|has|a|truncated|feeling|,|but|what|'s|available|is|lovely|and|lovable|. (|A|)|thoughtful|,|visually|graceful|work|. Admirers|of|director|Abel|Ferrara|may|be|relieved|that|his|latest|feature|,|R|Xmas|,|marks|a|modest|if|encouraging|return|to|form|. The|slam-bang|superheroics|are|kinetic|enough|to|engross|even|the|most|antsy|youngsters|. A|worthy|addition|to|the|cinematic|canon|,|which|,|at|last|count|,|numbered|52|different|versions|. Deliciously|mean-spirited|and|wryly|observant|. The|kind|of|primal|storytelling|that|George|Lucas|can|only|dream|of|. Even|if|The|Ring|has|a|familiar|ring|,|it|'s|still|unusually|crafty|and|intelligent|for|Hollywood|horror|. The|sheer|joy|and|pride|they|took|in|their|work|--|and|in|each|other|--|shines|through|every|frame|. A|solidly|constructed|,|entertaining|thriller|that|stops|short|of|true|inspiration|. The|cast|...|keeps|this|pretty|watchable|,|and|casting|Mick|Jagger|as|director|of|the|escort|service|was|inspired|. An|entertaining|,|if|somewhat|standardized|,|action|movie|. It|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|. An|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|. Intriguing|and|downright|intoxicating|. An|incredibly|thoughtful|,|deeply|meditative|picture|that|neatly|and|effectively|captures|the|debilitating|grief|felt|in|the|immediate|aftermath|of|the|terrorist|attacks|. With|an|obvious|rapport|with|her|actors|and|a|striking|style|behind|the|camera|,|Hélène|Angel|is|definitely|a|director|to|watch|. ...|could|easily|be|called|the|best|Korean|film|of|2002|. Full|of|detail|about|the|man|and|his|country|,|and|is|well|worth|seeing|. The|banter|between|Calvin|and|his|fellow|barbers|feels|like|a|streetwise|McLaughlin|Group|...|and|never|fails|to|entertain|. Thoroughly|engrossing|and|ultimately|tragic|. Peter|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|. Bill|Morrison|'s|Decasia|is|uncompromising|,|difficult|and|unbearably|beautiful|. Full|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|. Even|with|all|its|botches|,|Enigma|offers|all|the|pleasure|of|a|handsome|and|well-made|entertainment|. His|work|transcends|the|boy-meets-girl|posturing|of|typical|love|stories|. If|the|real-life|story|is|genuinely|inspirational|,|the|movie|stirs|us|as|well|. An|ebullient|Tunisian|film|about|the|startling|transformation|of|a|tradition-bound|widow|who|is|drawn|into|the|exotic|world|of|belly|dancing|. The|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|. Highly|irritating|at|first|,|Mr.|Koury|'s|passive|technique|eventually|begins|to|yield|some|interesting|results|. About|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|. The|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|. It|does|n't|make|for|great|cinema|,|but|it|is|interesting|to|see|where|one|'s|imagination|will|lead|when|given|the|opportunity|. It|'s|sobering|,|particularly|if|anyone|still|thinks|this|conflict|can|be|resolved|easily|,|or|soon|. If|it|'s|not|entirely|memorable|,|the|movie|is|certainly|easy|to|watch|. ...|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|. Best|indie|of|the|year|,|so|far|. (|Ferrera|)|has|the|charisma|of|a|young|woman|who|knows|how|to|hold|the|screen|. ...|the|plot|weaves|us|into|a|complex|web|. Do|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|. In|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|. A|serviceable|Euro-trash|action|extravaganza|,|with|a|decent|sense|of|humor|and|plenty|of|things|that|go|boom|--|handguns|,|BMWs|and|seaside|chateaus|. Fortunately|,|Elling|never|gets|too|cloying|thanks|to|the|actors|'|perfect|comic|timing|and|sweet|,|genuine|chemistry|. If|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|. Greg|Kinnear|gives|a|mesmerizing|performance|as|a|full-fledged|sex|addict|who|is|in|complete|denial|about|his|obsessive|behavior|. Not|only|a|coming-of-age|story|and|cautionary|parable|,|but|also|a|perfectly|rendered|period|piece|. ou|'ve|got|to|love|a|Disney|pic|with|as|little|cleavage|as|this|one|has|,|and|a|heroine|as|feisty|and|principled|as|Jane|. A|funny|,|triumphant|,|and|moving|documentary|. Lathan|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|. About|Schmidt|is|Nicholson|'s|goofy|,|heartfelt|,|mesmerizing|King|Lear|. A|confluence|of|kiddie|entertainment|,|sophisticated|wit|and|symbolic|graphic|design|. Gay|or|straight|,|Kissing|Jessica|Stein|is|one|of|the|greatest|date|movies|in|years|. This|is|a|movie|full|of|grace|and|,|ultimately|,|hope|. Even|better|than|the|first|one|! Its|compelling|mix|of|trial|movie|,|escape|movie|and|unexpected|fable|ensures|the|film|never|feels|draggy|. A|must|see|for|all|sides|of|the|political|spectrum (|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|. There|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|. Rich|in|atmosphere|of|the|post-war|art|world|,|it|manages|to|instruct|without|reeking|of|research|library|dust|. Has|the|rare|capability|to|soothe|and|break|your|heart|with|a|single|stroke|. It|rapidly|develops|into|a|gut-wrenching|examination|of|the|way|cultural|differences|and|emotional|expectations|collide|. Though|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|. This|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|.|' It|will|break|your|heart|many|times|over|. A|straight-shooting|family|film|which|awards|animals|the|respect|they|'ve|rarely|been|given|. Overall|,|interesting|as|a|documentary|--|but|not|very|Imaxy|. This|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|. ``|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|. The|film|fits|into|a|genre|that|has|been|overexposed|,|redolent|of|a|thousand|cliches|,|and|yet|remains|uniquely|itself|,|vibrant|with|originality|. Not|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|. The|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|. Too|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|. The|story|is|virtually|impossible|to|follow|here|,|but|there|'s|a|certain|style|and|wit|to|the|dialogue|. The|music|makes|a|nice|album|,|the|food|is|enticing|and|Italy|beckons|us|all|. The|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|. The|film|is|small|in|scope|,|yet|perfectly|formed|. Jones|has|delivered|a|solidly|entertaining|and|moving|family|drama|. Happy|Times|maintains|an|appealing|veneer|without|becoming|too|cute|about|it|. Oliveira|seems|to|pursue|silent|film|representation|with|every|mournful|composition|. One|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|. Captures|all|the|longing|,|anguish|and|ache|,|the|confusing|sexual|messages|and|the|wish|to|be|a|part|of|that|elusive|adult|world|. He|'s|the|scariest|guy|you|'ll|see|all|summer|. ``|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|wo|n't|be|talking|about|the|film|once|you|exit|the|theater|. If|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|. Quiet|,|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|. In|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|. Some|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|. It|is|hard|not|to|be|especially|grateful|for|freedom|after|a|film|like|this|. The|dirty|jokes|provide|the|funniest|moments|in|this|oddly|sweet|comedy|about|jokester|highway|patrolmen|. Y|Tu|Mamá|También|is|hilariously|,|gloriously|alive|,|and|quite|often|hotter|than|Georgia|asphalt|. ...|works|on|some|levels|and|is|certainly|worth|seeing|at|least|once|. You|come|away|from|his|film|overwhelmed|,|hopeful|and|,|perhaps|paradoxically|,|illuminated|. If|the|material|is|slight|and|admittedly|manipulative|,|Jacquot|preserves|Tosca|'s|intoxicating|ardor|through|his|use|of|the|camera|. Thirteen|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|. Overall|,|it|'s|a|wacky|and|inspired|little|film|that|works|effortlessly|at|delivering|genuine|,|acerbic|laughs|. A|must|for|fans|of|British|cinema|,|if|only|because|so|many|titans|of|the|industry|are|along|for|the|ride|. Tsai|has|managed|to|create|an|underplayed|melodrama|about|family|dynamics|and|dysfunction|that|harks|back|to|the|spare|,|unchecked|heartache|of|Yasujiro|Ozu|. Until|(|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|. It|'s|a|good|film|,|but|it|falls|short|of|its|aspiration|to|be|a|true|`|epic|'|. All|the|pieces|fall|together|without|much|surprise|,|but|little|moments|give|it|a|boost|. The|beauty|of|Alexander|Payne|'s|ode|to|the|Everyman|is|in|the|details|. A|touching|drama|about|old|age|and|grief|with|a|tour|de|force|performance|by|Michel|Piccoli|. The|ending|feels|at|odds|with|the|rest|of|the|film|. A|tone|of|rueful|compassion|...|reverberates|throughout|this|film|,|whose|meaning|and|impact|is|sadly|heightened|by|current|world|events|. A|beautiful|paean|to|a|time|long|past|. Dense|and|thoughtful|and|brimming|with|ideas|that|are|too|complex|to|be|rapidly|absorbed|. If|you|thought|Tom|Hanks|was|just|an|ordinary|big-screen|star|,|wait|until|you|'ve|seen|him|eight|stories|tall|. With|this|masterful|,|flawless|film|,|(|Wang|)|emerges|in|the|front|ranks|of|China|'s|now|numerous|,|world-renowned|filmmakers|. Shyamalan|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|. This|film|is|an|act|of|spiritual|faith|--|an|eloquent|,|deeply|felt|meditation|on|the|nature|of|compassion|. A|different|kind|of|love|story|-|one|that|is|dark|,|disturbing|,|painful|to|watch|,|yet|compelling|. Splendidly|illustrates|the|ability|of|the|human|spirit|to|overcome|adversity|. A|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|. She|'s|as|rude|and|profane|as|ever|,|always|hilarious|and|,|most|of|the|time|,|absolutely|right|in|her|stinging|social|observations|. To|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|. Even|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|. A|thoughtful|,|reverent|portrait|of|what|is|essentially|a|subculture|,|with|its|own|rules|regarding|love|and|family|,|governance|and|hierarchy|. It|seems|impossible|that|an|epic|four-hour|Indian|musical|about|a|cricket|game|could|be|this|good|,|but|it|is|. Will|certainly|appeal|to|Asian|cult|cinema|fans|and|Asiaphiles|interested|to|see|what|all|the|fuss|is|about|. Touches|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|. A|wildly|entertaining|scan|of|Evans|'|career|. A|mature|,|deeply|felt|fantasy|of|a|director|'s|travel|through|300|years|of|Russian|history|. Boldly|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|. A|finely|tuned|mood|piece|,|a|model|of|menacing|atmosphere|. The|Salton|Sea|has|moments|of|inspired|humour|,|though|every|scrap|is|of|the|darkest|variety|. Both|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|. Although|shot|with|little|style|,|Skins|is|heartfelt|and|achingly|real|. Harks|back|to|a|time|when|movies|had|more|to|do|with|imagination|than|market|research|. Upsetting|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|. A|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|. A|harrowing|account|of|a|psychological|breakdown|. Continually|challenges|perceptions|of|guilt|and|innocence|,|of|good|guys|and|bad|,|and|asks|us|whether|a|noble|end|can|justify|evil|means|. It|certainly|wo|n't|win|any|awards|in|the|plot|department|but|it|sets|out|with|no|pretensions|and|delivers|big|time|. Dog|Soldiers|does|n't|transcend|genre|--|it|embraces|it|,|energizes|it|and|takes|big|bloody|chomps|out|of|it|. At|once|emotional|and|richly|analytical|,|the|Cosby-Seinfeld|encounter|alone|confirms|the|serious|weight|behind|this|superficially|loose|,|larky|documentary|. It|may|scream|low|budget|,|but|this|charmer|has|a|spirit|that|can|not|be|denied|. `|Alice|'s|adventure|through|the|looking|glass|and|into|zombie-land|'|is|filled|with|strange|and|wonderful|creatures|. Without|(|De|Niro|)|,|City|By|The|Sea|would|slip|under|the|waves|. He|drags|it|back|,|single-handed|. A|good|music|documentary|,|probably|one|of|the|best|since|The|Last|Waltz|. If|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|. ...|(|the|film|)|works|,|due|mostly|to|the|tongue-in-cheek|attitude|of|the|screenplay|. The|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|. Broomfield|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|. At|its|best|when|the|guarded|,|resentful|Betty|and|the|manipulative|yet|needy|Margot|are|front|and|center|. Gloriously|straight|from|the|vagina|. It|'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|. The|film|oozes|craft|. Robinson|'s|web|of|suspense|matches|the|page-turning|frenzy|that|Clancy|creates|. Manages|to|be|both|hugely|entertaining|and|uplifting|. A|classic|fairy|tale|that|perfectly|captures|the|wonders|and|worries|of|childhood|in|a|way|that|few|movies|have|ever|approached|. It|'s|the|unsettling|images|of|a|war-ravaged|land|that|prove|more|potent|and|riveting|than|the|unlikely|story|of|Sarah|and|Harrison|. a|wonderfully|warm|human|drama|that|remains|vividly|in|memory|long|after|viewing Jaunty|fun|,|with|its|celeb-strewn|backdrop|well|used|. Recoing|'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|. Washington|overcomes|the|script|'s|flaws|and|envelops|the|audience|in|his|character|'s|anguish|,|anger|and|frustration|. The|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|. A|searing|,|epic|treatment|of|a|nationwide|blight|that|seems|to|be|,|horrifyingly|,|ever|on|the|rise|. Not|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|. Read|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|. The|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|. while|(|Roman|Coppola|)|scores|points|for|style|,|he|staggers|in|terms|of|story|. Any|movie|that|makes|hard|work|seem|heroic|deserves|a|look|. It|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|. A|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|. It|'s|sweet|,|funny|,|charming|,|and|completely|delightful|. A|perfectly|competent|and|often|imaginative|film|that|lacks|what|little|Lilo|&|Stitch|had|in|spades|--|charisma|. Beautifully|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|. Medem|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|. An|elegant|work|,|Food|of|Love|is|as|consistently|engaging|as|it|is|revealing|. Although|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|. A|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|. A|brain|twister|,|less|a|movie-movie|than|a|funny|and|weird|meditation|on|Hollywood|,|success|,|artistic|integrity|and|intellectual|bankruptcy|. A|powerful|,|inflammatory|film|about|religion|that|dares|to|question|an|ancient|faith|,|and|about|hatred|that|offers|no|easy|,|comfortable|resolution|. In|its|own|floundering|way|,|it|gets|to|you|. Just|like|Igby|. Return|to|Never|Land|may|be|another|shameless|attempt|by|Disney|to|rake|in|dough|from|baby|boomer|families|,|but|it|'s|not|half-bad|. Wise|and|deadpan|humorous|. God|bless|Crudup|and|his|aversion|to|taking|the|easy|Hollywood|road|and|cashing|in|on|his|movie-star|gorgeousness|. If|Signs|is|a|good|film|,|and|it|is|,|the|essence|of|a|great|one|is|in|there|somewhere|. Veterans|of|the|dating|wars|will|smirk|uneasily|at|the|film|'s|nightmare|versions|of|everyday|sex-in-the-city|misadventures|. Schrader|examines|Crane|'s|decline|with|unblinking|candor|. You|can|watch|,|giggle|and|get|an|adrenaline|boost|without|feeling|like|you|'ve|completely|lowered|your|entertainment|standards|. It|thankfully|goes|easy|on|the|reel\/real|world|dichotomy|that|(|Jaglom|)|pursued|with|such|enervating|determination|in|Venice\/Venice|. This|rich|,|bittersweet|Israeli|documentary|,|about|the|life|of|song-and-dance-man|Pasach|`|ke|Burstein|and|his|family|,|transcends|ethnic|lines|. Sensitively|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|. Cool|gadgets|and|creatures|keep|this|fresh|. Not|as|good|as|the|original|,|but|what|is|... Presents|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|. (|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|. Engages|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|. a|bilingual|charmer|,|just|like|the|woman|who|inspired|it Blisteringly|rude|,|scarily|funny|,|sorrowfully|sympathetic|to|the|damage|it|surveys|,|the|film|has|in|Kieran|Culkin|a|pitch-perfect|Holden|. The|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|. What|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|. (|It|)|has|the|feel|of|a|summer|popcorn|movie|. Nothing|too|deep|or|substantial|. Explosions|,|jokes|,|and|sexual|innuendoes|abound|. Miyazaki|'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|. ...|a|delightfully|unpredictable|,|hilarious|comedy|with|wonderful|performances|that|tug|at|your|heart|in|ways|that|utterly|transcend|gender|labels|. Assured|,|vital|and|well|wrought|,|the|film|is|,|arguably|,|the|most|accomplished|work|to|date|from|Hong|Kong|'s|versatile|Stanley|Kwan|. Delia|,|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|. A|surprisingly|sweet|and|gentle|comedy|. Shanghai|Ghetto|,|much|stranger|than|any|fiction|,|brings|this|unknown|slice|of|history|affectingly|to|life|. It|'s|not|particularly|well|made|,|but|since|I|found|myself|howling|more|than|cringing|,|I|'d|say|the|film|works|. But|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|. Though|its|story|is|only|surface|deep|,|the|visuals|and|enveloping|sounds|of|Blue|Crush|make|this|surprisingly|decent|flick|worth|a|summertime|look-see|. Ryosuke|has|created|a|wry|,|winning|,|if|languidly|paced|,|meditation|on|the|meaning|and|value|of|family|. Sometimes|charming|,|sometimes|infuriating|,|this|Argentinean|`|dramedy|'|succeeds|mainly|on|the|shoulders|of|its|actors|. You|may|feel|compelled|to|watch|the|film|twice|or|pick|up|a|book|on|the|subject|. Often|shocking|but|ultimately|worthwhile|exploration|of|motherhood|and|desperate|mothers|. A|venturesome|,|beautifully|realized|psychological|mood|piece|that|reveals|its|first-time|feature|director|'s|understanding|of|the|expressive|power|of|the|camera|. Like|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|. Taken|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|. The|setting|is|so|cool|that|it|chills|the|characters|,|reducing|our|emotional|stake|in|the|outcome|of|``|Intacto|'s|''|dangerous|and|seductively|stylish|game|. A|lovely|and|beautifully|photographed|romance|. One|of|the|most|splendid|entertainments|to|emerge|from|the|French|film|industry|in|years|. Its|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|. For|almost|the|first|two-thirds|of|Martin|Scorsese|'s|168-minute|Gangs|of|New|York|,|I|was|entranced|. Open-ended|and|composed|of|layer|upon|layer|,|Talk|to|Her|is|a|cinephile|'s|feast|,|an|invitation|to|countless|interpretations|. One|of|the|most|slyly|exquisite|anti-adult|movies|ever|made|. What|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|. Neither|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|. A|clever|script|and|skilled|actors|bring|new|energy|to|the|familiar|topic|of|office|politics|. The|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|. Disney|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|. It|'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|. Dark|and|unrepentant|,|this|excursion|into|the|epicenter|of|percolating|mental|instability|is|not|easily|dismissed|or|forgotten|. It|'s|a|rollicking|adventure|for|you|and|all|your|mateys|,|regardless|of|their|ages|. Boasts|a|handful|of|virtuosic|set|pieces|and|offers|a|fair|amount|of|trashy|,|kinky|fun|. ...|Myers|has|turned|his|franchise|into|the|movie|version|of|an|adolescent|dirty-joke|book|done|up|in|post-Tarantino|pop-culture|riffs|... If|you|'re|down|for|a|silly|hack-and-slash|flick|,|you|can|do|no|wrong|with|Jason|X. This|is|a|very|ambitious|project|for|a|fairly|inexperienced|filmmaker|,|but|good|actors|,|good|poetry|and|good|music|help|sustain|it|. The|modern|master|of|the|chase|sequence|returns|with|a|chase|to|end|all|chases The|messy|emotions|raging|throughout|this|three-hour|effort|are|instantly|recognizable|,|allowing|the|film|to|paradoxically|feel|familiar|and|foreign|at|the|same|time|. ...|either|you|'re|willing|to|go|with|this|claustrophobic|concept|or|you|'re|not|. Just|watch|Bettany|strut|his|stuff|. You|'ll|know|a|star|when|you|see|one|. Austin|Powers|in|Goldmember|is|a|cinematic|car|wreck|,|a|catastrophic|collision|of|tastelessness|and|gall|that|nevertheless|will|leave|fans|clamoring|for|another|ride|. You|can|fire|a|torpedo|through|some|of|Clancy|'s|holes|,|and|the|scripters|do|n'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|. contrasting|the|original|Ringu|with|the|current|Americanized|adaptation|is|akin|to|comparing|The|Evil|Dead|with|Evil|Dead|II A|small|gem|of|a|movie|that|defies|classification|and|is|as|thought-provoking|as|it|is|funny|,|scary|and|sad|. For|a|long|time|the|film|succeeds|with|its|dark|,|delicate|treatment|of|these|characters|and|its|unerring|respect|for|them|. It|'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|. Late|Marriage|is|an|in-your-face|family|drama|and|black|comedy|that|is|filled|with|raw|emotions|conveying|despair|and|love|. An|ambitious|and|moving|but|bleak|film|. It|'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|. It|'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|. It|'s|never|laugh-out-loud|funny|,|but|it|is|frequently|amusing|. A|bittersweet|film|,|simple|in|form|but|rich|with|human|events|. The|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|. ``|Punch-Drunk|Love|''|is|a|little|like|a|chocolate|milk|moustache|... ...|digs|beyond|the|usual|portrayals|of|good|kids|and|bad|seeds|to|reveal|a|more|ambivalent|set|of|characters|and|motivations|. The|beauty|of|the|piece|is|that|it|counts|heart|as|important|as|humor|. Piercingly|affecting|...|while|clearly|a|manipulative|film|,|emerges|as|powerful|rather|than|cloying|. Very|amusing|,|not|the|usual|route|in|a|thriller|,|and|the|performances|are|odd|and|pixilated|and|sometimes|both|. While|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|. The|cast|is|phenomenal|,|especially|the|women|. A|marvel|of|production|design|. The|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|. Good|actors|have|a|radar|for|juicy|roles|--|there|'s|a|plethora|of|characters|in|this|picture|,|and|not|one|of|them|is|flat|. Though|in|some|ways|similar|to|Catherine|Breillat|'s|Fat|Girl|,|Rain|is|the|far|superior|film|. Is|not|so|much|a|work|of|entertainment|as|it|is|a|unique|,|well-crafted|psychological|study|of|grief|. Remarkable|for|its|excellent|storytelling|,|its|economical|,|compressed|characterisations|and|for|its|profound|humanity|,|it|'s|an|adventure|story|and|history|lesson|all|in|one|. Colorful|,|energetic|and|sweetly|whimsical|...|the|rare|sequel|that|'s|better|than|its|predecessor|. Reno|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|. Significantly|better|than|its|2002|children|'s|-|movie|competition|. UB|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|. A|lot|smarter|than|your|average|Bond|. ...|bright|,|intelligent|,|and|humanly|funny|film|. Painful|,|horrifying|and|oppressively|tragic|,|this|film|should|not|be|missed|. Part|of|the|film|'s|cheeky|charm|comes|from|its|vintage|schmaltz|. So|unique|and|stubborn|and|charismatic|that|you|want|it|to|be|better|and|more|successful|than|it|is|. I|wo|n't|argue|with|anyone|who|calls|`|Slackers|'|dumb|,|insulting|,|or|childish|...|but|I|laughed|so|much|that|I|did|n't|mind|. It|arrives|with|an|impeccable|pedigree|,|mongrel|pep|,|and|almost|indecipherable|plot|complications|. So|fiendishly|cunning|that|even|the|most|jaded|cinema|audiences|will|leave|the|auditorium|feeling|dizzy|,|confused|,|and|totally|disorientated|. Not|to|mention|absolutely|refreshed|. A|vibrant|,|colorful|,|semimusical|rendition|. The|film|sometimes|flags|...|but|there|is|enough|secondary|action|to|keep|things|moving|along|at|a|brisk|,|amusing|pace|. It|'s|a|drawling|,|slobbering|,|lovable|run-on|sentence|of|a|film|,|a|Southern|Gothic|with|the|emotional|arc|of|its|raw|blues|soundtrack|. Nolan|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|. It|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|. Both|a|successful|adaptation|and|an|enjoyable|film|in|its|own|right|. All|the|filmmakers|are|asking|of|us|,|is|to|believe|in|something|that|is|improbable|. If|the|very|concept|makes|you|nervous|...|you|'ll|have|an|idea|of|the|film|'s|creepy|,|scary|effectiveness|. Worth|a|look|by|those|on|both|sides|of|the|issues|,|if|only|for|the|perspective|it|offers|,|one|the|public|rarely|sees|. A|mostly|believable|,|refreshingly|low-key|and|quietly|inspirational|little|sports|drama|. May|be|more|genial|than|ingenious|,|but|it|gets|the|job|done|. A|stylish|cast|and|some|clever|scripting|solutions|help|Chicago|make|the|transition|from|stage|to|screen|with|considerable|appeal|intact|. Exhilarating|,|funny|and|fun|. While|not|quite|``|Shrek|''|or|``|Monsters|,|Inc.|''|,|it|'s|not|too|bad|. It|'s|worth|taking|the|kids|to|. In|the|end|there|is|one|word|that|best|describes|this|film|:|honest|. Writer-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|. The|action|sequences|are|fun|and|reminiscent|of|combat|scenes|from|the|Star|Wars|series|. Norton|is|magnetic|as|Graham|. Savvy|director|Robert|J.|Siegel|and|his|co-writers|keep|the|story|subtle|and|us|in|suspense|. It|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|. Twenty|years|after|its|first|release|,|E.T.|remains|the|most|wondrous|of|all|Hollywood|fantasies|--|and|the|apex|of|Steven|Spielberg|'s|misunderstood|career|. It|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|. Gives|us|a|lot|to|chew|on|,|but|not|all|of|it|has|been|properly|digested|. It|'s|an|exhilarating|place|to|visit|,|this|laboratory|of|laughter|. ``|Simone|''|is|a|fun|and|funky|look|into|an|artificial|creation|in|a|world|that|thrives|on|artificiality|. A|great|companion|piece|to|other|Napoleon|films|. To|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|. At|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|! A|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|. Berling|and|Béart|...|continue|to|impress|,|and|Isabelle|Huppert|...|again|shows|uncanny|skill|in|getting|under|the|skin|of|her|characters|. Uplifting|,|funny|and|wise|. Remarkable|for|its|intelligence|and|intensity|. The|hypnotic|imagery|and|fragmentary|tale|explore|the|connections|between|place|and|personal|identity|. Brosnan|is|more|feral|in|this|film|than|I|'ve|seen|him|before|and|Halle|Berry|does|her|best|to|keep|up|with|him|. A|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|. ``|On|Guard|!|'' wo|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|. The|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|. This|is|the|stuff|that|Disney|movies|are|made|of|. Like|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|. That|the|e-graveyard|holds|as|many|good|ideas|as|bad|is|the|cold|comfort|that|Chin|'s|film|serves|up|with|style|and|empathy|. While|we|no|longer|possess|the|lack-of-attention|span|that|we|did|at|seventeen|,|we|had|no|trouble|sitting|for|Blade|II|. like|a|poor|man|'s|You|Can|Count|On|Me ...|a|solid|,|unassuming|drama|. A|seriocomic|debut|of|extravagant|promise|by|Georgian-Israeli|director|Dover|Kosashvili|. Thanks|to|Ice|Cube|,|Benjamins|feels|an|awful|lot|like|Friday|in|Miami|. The|real|star|of|this|movie|is|the|score|,|as|in|the|songs|translate|well|to|film|,|and|it|'s|really|well|directed|. It|'s|rare|to|find|a|film|to|which|the|adjective|`|gentle|'|applies|,|but|the|word|perfectly|describes|Pauline|&|Paulette|. My|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|. Both|Garcia|and|Jagger|turn|in|perfectly|executed|and|wonderfully|sympathetic|characters|,|who|are|alternately|touching|and|funny|. Humorous|,|artsy|,|and|even|cute|,|in|an|off-kilter|,|dark|,|vaguely|disturbing|way|. The|more|you|think|about|the|movie|,|the|more|you|will|probably|like|it|. ...|a|powerful|sequel|and|one|of|the|best|films|of|the|year|. For|the|most|part|,|the|film|does|hold|up|pretty|well|. Together|(|Time|Out|and|Human|Resources|)|establish|Mr.|Cantet|as|France|'s|foremost|cinematic|poet|of|the|workplace|. You|can|take|the|grandkids|or|the|grandparents|and|never|worry|about|anyone|being|bored|...|audience|is|a|sea|of|constant|smiles|and|frequent|laughter|. Like|these|Russo|guys|lookin|'|for|their|Mamet|instead|found|their|Sturges|. There|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|. By|applying|definition|to|both|sides|of|the|man|,|the|picture|realizes|a|fullness|that|does|not|negate|the|subject|. Who|is|the|audience|for|Cletis|Tout|? Anybody|who|enjoys|quirky|,|fun|,|popcorn|movies|with|a|touch|of|silliness|and|a|little|bloodshed|. (|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|. Puts|to|rest|any|thought|that|the|German|film|industry|can|not|make|a|delightful|comedy|centering|on|food|. Witty|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|. Ash|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|. After|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|. The|footage|of|the|rappers|at|play|and|the|prison|interview|with|Suge|Knight|are|just|two|of|the|elements|that|will|grab|you|. ...|it|'s|as|comprehensible|as|any|Dummies|guide|,|something|even|non-techies|can|enjoy|. Do|n't|wait|to|see|this|terrific|film|with|your|kids|--|if|you|do|n't|have|kids|borrow|some|. Moretti|...|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|. The|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|. Features|Fincher|'s|characteristically|startling|visual|style|and|an|almost|palpable|sense|of|intensity|. Precocious|smarter-than-thou|wayward|teen|struggles|to|rebel|against|his|oppressive|,|right-wing|,|propriety-obsessed|family|. Anyone|else|seen|this|before|? Moore|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|. Alternating|between|facetious|comic|parody|and|pulp|melodrama|,|this|smart-aleck|movie|...|tosses|around|some|intriguing|questions|about|the|difference|between|human|and|android|life|. A|cutesy|romantic|tale|with|a|twist|. This|is|a|gorgeous|film|-|vivid|with|color|,|music|and|life|. Delight|your|senses|and|crash|this|wedding|! A|brutally|dry|satire|of|Middle|American|numbness|. More|sophisticated|and|literate|than|such|pictures|usually|are|...|an|amusing|little|catch|. Smith|examines|the|intimate|,|unguarded|moments|of|folks|who|live|in|unusual|homes|--|which|pop|up|in|nearly|every|corner|of|the|country|. With|an|admirably|dark|first|script|by|Brent|Hanley|,|Paxton|,|making|his|directorial|feature|debut|,|does|strong|,|measured|work|. A|compelling|French|psychological|drama|examining|the|encounter|of|an|aloof|father|and|his|chilly|son|after|20|years|apart|. ...|even|if|you|'ve|never|heard|of|Chaplin|,|you|'ll|still|be|glued|to|the|screen|. You|have|enough|finely|tuned|acting|to|compensate|for|the|movie|'s|failings|. As|the|dominant|Christine|,|Sylvie|Testud|is|icily|brilliant|. Although|tender|and|touching|,|the|movie|would|have|benefited|from|a|little|more|dramatic|tension|and|some|more|editing|. The|story|that|emerges|has|elements|of|romance|,|tragedy|and|even|silent-movie|comedy|. (|``|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|! It|offers|a|glimpse|of|the|Solomonic|decision|facing|Jewish|parents|in|those|turbulent|times|:|to|save|their|children|and|yet|to|lose|them|. The|film|is|delicately|narrated|by|Martin|Landau|and|directed|with|sensitivity|and|skill|by|Dana|Janklowicz-Mann|. Martyr|gets|royally|screwed|and|comes|back|for|more|. A|virtual|roller-coaster|ride|of|glamour|and|sleaze|. an|admirable|,|sometimes|exceptional|film If|you|like|an|extreme|action-packed|film|with|a|hint|of|humor|,|then|Triple|X|marks|the|spot|. If|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 May|not|be|a|breakthrough|in|filmmaking|,|but|it|is|unwavering|and|arresting|. The|film|'s|images|give|a|backbone|to|the|company|and|provide|an|emotional|edge|to|its|ultimate|demise|. A|bodice-ripper|for|intellectuals|. The|locations|go|from|stark|desert|to|gorgeous|beaches|. The|story|plays|out|slowly|,|but|the|characters|are|intriguing|and|realistic|. Count|on|his|movie|to|work|at|the|back|of|your|neck|long|after|you|leave|the|theater|. Neil|Burger|here|succeeded|in|...|making|the|mystery|of|four|decades|back|the|springboard|for|a|more|immediate|mystery|in|the|present|. The|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|. A|thriller|made|from|a|completist|'s|checklist|rather|than|with|a|cultist|'s|passion|. Try|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|. As|quiet|,|patient|and|tenacious|as|Mr.|Lopez|himself|,|who|approaches|his|difficult|,|endless|work|with|remarkable|serenity|and|discipline|. Though|the|film|never|veers|from|its|comic|course|,|its|unintentional|parallels|might|inadvertently|evoke|memories|and|emotions|which|are|anything|but|humorous|. Evokes|the|style|and|flash|of|the|double-cross|that|made|Mamet|'s|``|House|of|Games|''|and|last|fall|'s|``|Heist|''|so|much|fun|. So|original|in|its|base|concept|that|you|can|not|help|but|get|caught|up|. It|may|be|a|no-brainer|,|but|at|least|it|'s|a|funny|no-brainer|. A|lot|more|dimensional|and|complex|than|its|sunny|disposition|would|lead|you|to|believe|. Jeffs|has|created|a|breathtakingly|assured|and|stylish|work|of|spare|dialogue|and|acute|expressiveness|. Underachieves|only|in|not|taking|the|Shakespeare|parallels|quite|far|enough|. The|most|audacious|,|outrageous|,|sexually|explicit|,|psychologically|probing|,|pure|libido|film|of|the|year|has|arrived|from|Portugal|. The|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|. Art-house|to|the|core|,|Read|My|Lips|is|a|genre-curling|crime|story|that|revives|the|free-wheeling|noir|spirit|of|old|French|cinema|. Grant|is|certainly|amusing|,|but|the|very|hollowness|of|the|character|he|plays|keeps|him|at|arms|length Conceptually|brilliant|...|Plays|like|a|living-room|War|Of|The|Worlds|,|gaining|most|of|its|unsettling|force|from|the|suggested|and|the|unknown|. ...|manages|to|deliver|a|fair|bit|of|vampire|fun|. Drama|of|temptation|,|salvation|and|good|intentions|is|a|thoughtful|examination|of|faith|,|love|and|power|. The|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|. The|performances|are|strong|,|though|the|subject|matter|demands|acting|that|borders|on|hammy|at|times|. A|damn|fine|and|a|truly|distinctive|and|a|deeply|pertinent|film|. Still|rapturous|after|all|these|years|,|Cinema|Paradiso|stands|as|one|of|the|great|films|about|movie|love|. Reggio|and|Glass|put|on|an|intoxicating|show|. MacDowell|...|gives|give|a|solid|,|anguished|performance|that|eclipses|nearly|everything|else|she|'s|ever|done|. The|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|. I|liked|a|lot|of|the|smaller|scenes|. The|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|. An|eye-boggling|blend|of|psychedelic|devices|,|special|effects|and|backgrounds|,|`|Spy|Kids|2|'|is|a|visual|treat|for|all|audiences|. Straightforward|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|. It|may|...|work|as|a|jaunt|down|memory|lane|for|teens|and|young|adults|who|grew|up|on|televised|Scooby-Doo|shows|or|reruns|. One|of|those|movies|that|catches|you|up|in|something|bigger|than|yourself|,|namely|,|an|archetypal|desire|to|enjoy|good|trash|every|now|and|then|. This|harrowing|journey|into|combat|hell|vividly|captures|the|chaotic|insanity|and|personal|tragedies|that|are|all|too|abundant|when|human|hatred|spews|forth|unchecked|. Far|more|successful|,|if|considerably|less|ambitious|,|than|last|year|'s|Kubrick-meets-Spielberg|exercise|. Elling|builds|gradually|until|you|feel|fully|embraced|by|this|gentle|comedy|. A|fascinating|examination|of|the|joyous|,|turbulent|self-discovery|made|by|a|proper|,|middle-aged|woman|. Here|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|. Buy|popcorn|. Take|nothing|seriously|and|enjoy|the|ride|. Carrying|off|a|spot-on|Scottish|burr|,|Duvall|(|also|a|producer|)|peels|layers|from|this|character|that|may|well|not|have|existed|on|paper|. The|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|. Some|Body|will|take|you|places|you|have|n't|been|,|and|also|places|you|have|. Vereté|has|a|whip-smart|sense|of|narrative|bluffs|. Parts|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|. Were|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|. ``|Home|Movie|''|is|the|film|equivalent|of|a|lovingly|rendered|coffee|table|book|. Graphic|sex|may|be|what|'s|attracting|audiences|to|Unfaithful|,|but|gripping|performances|by|Lane|and|Gere|are|what|will|keep|them|awake|. When|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|. Both|damning|and|damned|compelling|. Much|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|. You|have|to|see|it|. Even|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|. What|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|. Both|an|admirable|reconstruction|of|terrible|events|,|and|a|fitting|memorial|to|the|dead|of|that|day|,|and|of|the|thousands|thereafter|. A|sly|dissection|of|the|inanities|of|the|contemporary|music|business|and|a|rather|sad|story|of|the|difficulties|of|artistic|collaboration|. The|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|. Lovingly|photographed|in|the|manner|of|a|Golden|Book|sprung|to|life|,|Stuart|Little|2|manages|sweetness|largely|without|stickiness|. Consistently|clever|and|suspenseful|. It|'s|like|a|``|Big|Chill|''|reunion|of|the|Baader-Meinhof|Gang|,|only|these|guys|are|more|harmless|pranksters|than|political|activists|. The|story|gives|ample|opportunity|for|large-scale|action|and|suspense|,|which|director|Shekhar|Kapur|supplies|with|tremendous|skill|. Fresnadillo|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|. Throws|in|enough|clever|and|unexpected|twists|to|make|the|formula|feel|fresh|. Weighty|and|ponderous|but|every|bit|as|filling|as|the|treat|of|the|title|. A|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|. Generates|an|enormous|feeling|of|empathy|for|its|characters|. Exposing|the|ways|we|fool|ourselves|is|One|Hour|Photo|'s|real|strength|. It|'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|. Mostly|,|(|Goldbacher|)|just|lets|her|complicated|characters|be|unruly|,|confusing|and|,|through|it|all|,|human|. ...|quite|good|at|providing|some|good|old|fashioned|spooks|. At|its|worst|,|the|movie|is|pretty|diverting|;|the|pity|is|that|it|rarely|achieves|its|best|. Scherfig|'s|light-hearted|profile|of|emotional|desperation|is|achingly|honest|and|delightfully|cheeky|. A|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|. The|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|. As|it|turns|out|,|you|can|go|home|again|. You|'ve|already|seen|City|by|the|Sea|under|a|variety|of|titles|,|but|it|'s|worth|yet|another|visit|. This|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|. Making|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|. Grown-up|quibbles|are|beside|the|point|here|. The|little|girls|understand|,|and|McCracken|knows|that|'s|all|that|matters|. A|powerful|,|chilling|,|and|affecting|study|of|one|man|'s|dying|fall|. This|is|a|fascinating|film|because|there|is|no|clear-cut|hero|and|no|all-out|villain|. A|dreadful|day|in|Irish|history|is|given|passionate|,|if|somewhat|flawed|,|treatment|. ...|a|good|film|that|must|have|baffled|the|folks|in|the|marketing|department|. ...|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|. Devotees|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|. A|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|. What|'s|so|striking|about|Jolie|'s|performance|is|that|she|never|lets|her|character|become|a|caricature|--|not|even|with|that|radioactive|hair|. The|main|story|...|is|compelling|enough|,|but|it|'s|difficult|to|shrug|off|the|annoyance|of|that|chatty|fish|. The|performances|are|immaculate|,|with|Roussillon|providing|comic|relief|. Kinnear|...|gives|his|best|screen|performance|with|an|oddly|winning|portrayal|of|one|of|life|'s|ultimate|losers|. Hugh|Grant|,|who|has|a|good|line|in|charm|,|has|never|been|more|charming|than|in|About|a|Boy|. There|'s|a|lot|of|tooth|in|Roger|Dodger|. But|what|'s|nice|is|that|there|'s|a|casual|intelligence|that|permeates|the|script|. Reminiscent|of|Alfred|Hitchcock|'s|thrillers|,|most|of|the|scary|parts|in|`|Signs|'|occur|while|waiting|for|things|to|happen|. One|of|the|best|looking|and|stylish|animated|movies|in|quite|a|while|... Its|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|. Denver|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|. You|need|n'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|. Waiting|for|Godard|can|be|fruitful|:|`|In|Praise|of|Love|'|is|the|director|'s|epitaph|for|himself|. A|gangster|movie|with|the|capacity|to|surprise|. The|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|. If|not|a|home|run|,|then|at|least|a|solid|base|hit|. Goldmember|is|funny|enough|to|justify|the|embarrassment|of|bringing|a|barf|bag|to|the|moviehouse|. ...|a|fairly|disposable|yet|still|entertaining|B|picture|. It|may|not|be|particularly|innovative|,|but|the|film|'s|crisp|,|unaffected|style|and|air|of|gentle|longing|make|it|unexpectedly|rewarding|. The|film|truly|does|rescue|(|the|Funk|Brothers|)|from|Motown|'s|shadows|. It|'s|about|time|. Drawing|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|. Works|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|. (|Scherfig|)|has|made|a|movie|that|will|leave|you|wondering|about|the|characters|'|lives|after|the|clever|credits|roll|. A|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|. Skin|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|. The|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|. As|refreshing|as|a|drink|from|a|woodland|stream|. Williams|absolutely|nails|Sy|'s|queasy|infatuation|and|overall|strangeness|. Can|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|? While|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|. By|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|. An|intimate|contemplation|of|two|marvelously|messy|lives|. Rarely|has|skin|looked|as|beautiful|,|desirable|,|even|delectable|,|as|it|does|in|Trouble|Every|Day|. This|is|one|of|those|rare|docs|that|paints|a|grand|picture|of|an|era|and|makes|the|journey|feel|like|a|party|. Poignant|if|familiar|story|of|a|young|person|suspended|between|two|cultures|. A|metaphor|for|a|modern-day|urban|China|searching|for|its|identity|. For|all|its|brooding|quality|,|Ash|Wednesday|is|suspenseful|and|ultimately|unpredictable|,|with|a|sterling|ensemble|cast|. An|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|. The|film|feels|uncomfortably|real|,|its|language|and|locations|bearing|the|unmistakable|stamp|of|authority|. Despite|its|faults|,|Gangs|excels|in|spectacle|and|pacing|. Entertaining|despite|its|one-joke|premise|with|the|thesis|that|women|from|Venus|and|men|from|Mars|can|indeed|get|together|. A|tightly|directed|,|highly|professional|film|that|'s|old-fashioned|in|all|the|best|possible|ways|. It|'s|dark|but|has|wonderfully|funny|moments|;|you|care|about|the|characters|;|and|the|action|and|special|effects|are|first-rate|. In|visual|fertility|Treasure|Planet|rivals|the|top|Japanese|animations|of|recent|vintage|. Enormously|enjoyable|,|high-adrenaline|documentary|. Buy|is|an|accomplished|actress|,|and|this|is|a|big|,|juicy|role|. It|works|its|magic|with|such|exuberance|and|passion|that|the|film|'s|length|becomes|a|part|of|its|fun|. Beautifully|crafted|and|brutally|honest|,|Promises|offers|an|unexpected|window|into|the|complexities|of|the|Middle|East|struggle|and|into|the|humanity|of|its|people|. An|old-fashioned|but|emotionally|stirring|adventure|tale|of|the|kind|they|rarely|make|anymore|. Charlotte|Sometimes|is|a|gem|. It|'s|always|enthralling|. In|my|opinion|,|Analyze|That|is|not|as|funny|or|entertaining|as|Analyze|This|,|but|it|is|a|respectable|sequel|. A|remarkable|film|by|Bernard|Rose|. Zhuangzhuang|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|. A|much|more|successful|translation|than|its|most|famous|previous|film|adaptation|,|writer-director|Anthony|Friedman|'s|similarly|updated|1970|British|production|. an|original|and|highly|cerebral|examination|of|the|psychopathic|mind Michel|Piccoli|'s|moving|performance|is|this|films|reason|for|being|. A|captivating|and|intimate|study|about|dying|and|loving|... This|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|. (|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|. A|high-spirited|buddy|movie|about|the|reunion|of|Berlin|anarchists|who|face|arrest|15|years|after|their|crime|. About|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|. An|involving|,|inspirational|drama|that|sometimes|falls|prey|to|its|sob-story|trappings|. Some|of|the|most|inventive|silliness|you|are|likely|to|witness|in|a|movie|theatre|for|some|time|. Canadian|filmmaker|Gary|Burns|'|inventive|and|mordantly|humorous|take|on|the|soullessness|of|work|in|the|city|. A|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|. Everyone|'s|insecure|in|Lovely|and|Amazing|,|a|poignant|and|wryly|amusing|film|about|mothers|,|daughters|and|their|relationships|. The|closest|thing|to|the|experience|of|space|travel Connoisseurs|of|Chinese|film|will|be|pleased|to|discover|that|Tian|'s|meticulous|talent|has|not|withered|during|his|enforced|hiatus|. If|you|can|push|on|through|the|slow|spots|,|you|'ll|be|rewarded|with|some|fine|acting|. An|unusually|dry-eyed|,|even|analytical|approach|to|material|that|is|generally|played|for|maximum|moisture|. Symbolically|,|Warm|Water|Under|a|Red|Bridge|is|a|celebration|of|feminine|energy|,|a|tribute|to|the|power|of|women|to|heal|. Spy|Kids|2|also|happens|to|be|that|rarity|among|sequels|:|It|actually|improves|upon|the|original|hit|movie|. Exceptionally|well|acted|by|Diane|Lane|and|Richard|Gere|. Like|a|precious|and|finely|cut|diamond|,|magnificent|to|behold|in|its|sparkling|beauty|yet|in|reality|it|'s|one|tough|rock|. In|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|. Miller|has|crafted|an|intriguing|story|of|maternal|instincts|and|misguided|acts|of|affection|. One|of|the|most|exciting|action|films|to|come|out|of|China|in|recent|years|. This|is|a|nervy|,|risky|film|,|and|Villeneuve|has|inspired|Croze|to|give|herself|over|completely|to|the|tormented|persona|of|Bibi|. MY|LITTLE|EYE|is|the|best|little|``|horror|''|movie|I|'ve|seen|in|years|. Tunney|,|brimming|with|coltish|,|neurotic|energy|,|holds|the|screen|like|a|true|star|. Even|if|the|Naipaul|original|remains|the|real|masterpiece|,|the|movie|possesses|its|own|languorous|charm|. (|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|. Sometimes|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|. The|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|. Like|the|series|,|the|movie|is|funny|,|smart|,|visually|inventive|,|and|most|of|all|,|alive|. It|was|filled|with|shootings|,|beatings|,|and|more|cussing|than|you|could|shake|a|stick|at|. You|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|. Or|both|. Sure|,|I|hated|myself|in|the|morning|. But|then|again|,|I|hate|myself|most|mornings|. I|still|like|Moonlight|Mile|,|better|judgment|be|damned|. Time|Out|is|as|serious|as|a|pink|slip|. And|more|than|that|,|it|'s|an|observant|,|unfussily|poetic|meditation|about|identity|and|alienation|. Will|assuredly|rank|as|one|of|the|cleverest|,|most|deceptively|amusing|comedies|of|the|year|. Maryam|is|a|small|film|,|but|it|offers|large|rewards|. A|highly|watchable|,|giggly|little|story|with|a|sweet|edge|to|it|. The|most|consistently|funny|of|the|Austin|Powers|films|. Ana|'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|... Cockettes|has|the|glorious|,|gaudy|benefit|of|much|stock|footage|of|Those|Days|,|featuring|all|manner|of|drag|queen|,|bearded|lady|and|lactating|hippie|. There|'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|. The|comedy|makes|social|commentary|more|palatable|. An|ideal|love|story|for|those|intolerant|of|the|more|common|saccharine|genre|. One|funny|popcorn|flick|. This|New|Zealand|coming-of-age|movie|is|n't|really|about|anything|. When|it|'s|this|rich|and|luscious|,|who|cares|? Tully|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|. This|gorgeous|epic|is|guaranteed|to|lift|the|spirits|of|the|whole|family|. The|Wild|Thornberrys|Movie|is|pleasant|enough|and|the|message|of|our|close|ties|with|animals|can|certainly|not|be|emphasized|enough|. Williams|creates|a|stunning|,|Taxi|Driver-esque|portrayal|of|a|man|teetering|on|the|edge|of|sanity|. If|you|'re|in|the|right|B-movie|frame|of|mind|,|it|may|just|scare|the|pants|off|you|. A|movie|of|riveting|power|and|sadness|. Both|a|detective|story|and|a|romance|spiced|with|the|intrigue|of|academic|skullduggery|and|politics|. Ludicrous|,|but|director|Carl|Franklin|adds|enough|flourishes|and|freak-outs|to|make|it|entertaining|. Director|Roger|Kumble|offers|just|enough|sweet|and|traditional|romantic|comedy|to|counter|the|crudity|. And|there|'s|the|inimitable|Diaz|,|holding|it|all|together|. Spielberg|'s|picture|is|smarter|and|subtler|than|(|Total|Recall|and|Blade|Runner|)|,|although|its|plot|may|prove|too|convoluted|for|fun-seeking|summer|audiences|. It|'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|. A|grittily|beautiful|film|that|looks|,|sounds|,|and|feels|more|like|an|extended|,|open-ended|poem|than|a|traditionally|structured|story|. The|production|values|are|of|the|highest|and|the|performances|attractive|without|being|memorable|. A|well-rounded|tribute|to|a|man|whose|achievements|--|and|complexities|--|reached|far|beyond|the|end|zone|. finely|crafted|,|finely|written|,|exquisitely|performed Ramsay|and|Morton|fill|this|character|study|with|poetic|force|and|buoyant|feeling|. This|submarine|drama|earns|the|right|to|be|favorably|compared|to|Das|Boot|. Claude|Chabrol|'s|camera|has|a|way|of|gently|swaying|back|and|forth|as|it|cradles|its|characters|,|veiling|tension|beneath|otherwise|tender|movements|. There|'s|a|great|deal|of|corny|dialogue|and|preposterous|moments|. And|yet|,|it|still|works|. The|film|was|immensely|enjoyable|thanks|to|great|performances|by|both|Steve|Buscemi|and|Rosario|Dawson|... Like|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|. Special|P.O.V.|camera|mounts|on|bikes|,|skateboards|,|and|motorcycles|provide|an|intense|experience|when|splashed|across|the|immense|IMAX|screen|. Mike|White|'s|deft|combination|of|serious|subject|matter|and|dark|,|funny|humor|make|``|The|Good|Girl|''|a|film|worth|watching|. This|is|a|shrewd|and|effective|film|from|a|director|who|understands|how|to|create|and|sustain|a|mood|. Meant|to|reduce|Blake|'s|philosophy|into|a|tragic|coming-of-age|saga|punctuated|by|bursts|of|animator|Todd|McFarlane|'s|superhero|dystopia|. Assayas|'|ambitious|,|sometimes|beautiful|adaptation|of|Jacques|Chardonne|'s|novel|. As|ex-Marine|Walter|,|who|may|or|may|not|have|shot|Kennedy|,|actor|Raymond|J.|Barry|is|perfectly|creepy|and|believable|. Those|who|do|n't|entirely|`|get|'|Godard|'s|distinctive|discourse|will|still|come|away|with|a|sense|of|his|reserved|but|existential|poignancy|. Pete|'s|screenplay|manages|to|find|that|real|natural|,|even-flowing|tone|that|few|movies|are|able|to|accomplish|. Like|Brosnan|'s|performance|,|Evelyn|comes|from|the|heart|. It|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|. Its|spirit|of|iconoclastic|abandon|--|however|canned|--|makes|for|unexpectedly|giddy|viewing|. The|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|. This|quiet|,|introspective|and|entertaining|independent|is|worth|seeking|. Whether|our|action-and-popcorn|obsessed|culture|will|embrace|this|engaging|and|literate|psychodrama|is|n't|much|of|a|mystery|,|unfortunately|. Whether|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|. Sly|,|sophisticated|and|surprising|. Spare|but|quietly|effective|retelling|. Demonstrates|a|vivid|imagination|and|an|impressive|style|that|result|in|some|terrific|setpieces|. By|its|modest|,|straight-ahead|standards|,|Undisputed|scores|a|direct|hit|. Its|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|. For|those|who|like|quirky|,|slightly|strange|French|films|,|this|is|a|must|! There|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|. (|Shyamalan|)|continues|to|cut|a|swathe|through|mainstream|Hollywood|,|while|retaining|an|integrity|and|refusing|to|compromise|his|vision|. A|whale|of|a|good|time|for|both|children|and|parents|seeking|Christian-themed|fun|. What|begins|as|a|film|in|the|tradition|of|The|Graduate|quickly|switches|into|something|more|recyclable|than|significant|. Much|smarter|and|more|attentive|than|it|first|sets|out|to|be|. The|story|is|smart|and|entirely|charming|in|intent|and|execution|. A|movie|of|technical|skill|and|rare|depth|of|intellect|and|feeling|. Represents|a|worthy|departure|from|the|culture|clash|comedies|that|have|marked|an|emerging|Indian|American|cinema|. Does|n'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|. If|you|'re|looking|for|an|intelligent|movie|in|which|you|can|release|your|pent|up|anger|,|ENOUGH|is|just|the|ticket|you|need|. A|pointed|,|often|tender|,|examination|of|the|pros|and|cons|of|unconditional|love|and|familial|duties|. As|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|. A|comedy-drama|of|nearly|epic|proportions|rooted|in|a|sincere|performance|by|the|title|character|undergoing|midlife|crisis|. It|'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|. Elegantly|produced|and|expressively|performed|,|the|six|musical|numbers|crystallize|key|plot|moments|into|minutely|detailed|wonders|of|dreamlike|ecstasy|. Enriched|by|a|strong|and|unforced|supporting|cast|. Writer|\/|director|M.|Night|Shyamalan|'s|ability|to|pull|together|easily|accessible|stories|that|resonate|with|profundity|is|undeniable|. If|you|can|keep|your|eyes|open|amid|all|the|blood|and|gore|,|you|'ll|see|Del|Toro|has|brought|unexpected|gravity|to|Blade|II|. Not|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|. A|breathtaking|adventure|for|all|ages|,|Spirit|tells|its|poignant|and|uplifting|story|in|a|stunning|fusion|of|music|and|images|. A|charming|and|funny|story|of|clashing|cultures|and|a|clashing|mother\/daughter|relationship|. Never|lets|go|your|emotions|,|taking|them|to|surprising|highs|,|sorrowful|lows|and|hidden|impulsive|niches|...|gorgeous|,|passionate|,|and|at|times|uncommonly|moving|. ``|...|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|.|'' (|Washington|'s|)|strong|hand|,|keen|eye|,|sweet|spirit|and|good|taste|are|reflected|in|almost|every|scene|. Shiner|can|certainly|go|the|distance|,|but|is|n't|world|championship|material The|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|. ...|a|quietly|introspective|portrait|of|the|self-esteem|of|employment|and|the|shame|of|losing|a|job|... Affable|if|not|timeless|,|Like|Mike|raises|some|worthwhile|themes|while|delivering|a|wholesome|fantasy|for|kids|. A|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|. It|'s|an|unusual|,|thoughtful|bio-drama|with|a|rich|subject|and|some|fantastic|moments|and|scenes|. Saved|from|being|merely|way-cool|by|a|basic|,|credible|compassion|. The|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|. Gangs|,|despite|the|gravity|of|its|subject|matter|,|is|often|as|fun|to|watch|as|a|good|spaghetti|western|. Peter|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 There|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|. Ice|Age|wo|n't|drop|your|jaw|,|but|it|will|warm|your|heart|,|and|I|'m|giving|it|a|strong|thumbs|up|. Like|Kissing|Jessica|Stein|,|Amy|'s|Orgasm|has|a|key|strength|in|its|willingness|to|explore|its|principal|characters|with|honesty|,|insight|and|humor|. The|Lady|and|the|Duke|is|Eric|Rohmer|'s|economical|antidote|to|the|bloated|costume|drama One|of|the|year|'s|best|films|,|featuring|an|Oscar-worthy|performance|by|Julianne|Moore|. A|small|gem|from|Belgium|. Combines|a|comically|dismal|social|realism|with|a|farcically|bawdy|fantasy|of|redemption|and|regeneration|. A|soap-opera|quality|twist|in|the|last|20|minutes|...|almost|puts|the|kibosh|on|what|is|otherwise|a|sumptuous|work|of|B-movie|imagination|. The|most|ingenious|film|comedy|since|Being|John|Malkovich|. There|'s|something|to|be|said|for|a|studio-produced|film|that|never|bothers|to|hand|viewers|a|suitcase|full|of|easy|answers|. A|movie|where|story|is|almost|an|afterthought|amidst|a|swirl|of|colors|and|inexplicable|events|. Manages|to|accomplish|what|few|sequels|can|--|it|equals|the|original|and|in|some|ways|even|betters|it|. To|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|. Jolie|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|. Although|melodramatic|and|predictable|,|this|romantic|comedy|explores|the|friendship|between|five|Filipino-Americans|and|their|frantic|efforts|to|find|love|. I|have|a|new|favorite|musical|--|and|I|'m|not|even|a|fan|of|the|genre It|'s|unlikely|we|'ll|see|a|better|thriller|this|year|. There|is|a|real|subject|here|,|and|it|is|handled|with|intelligence|and|care|. Jason|Patric|and|Ray|Liotta|make|for|one|splendidly|cast|pair|. Noyce|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|. Starts|slowly|,|but|Adrien|Brody|--|in|the|title|role|--|helps|make|the|film|'s|conclusion|powerful|and|satisfying|. Very|predictable|but|still|entertaining Nothing|short|of|a|masterpiece|--|and|a|challenging|one|. Pratfalls|aside|,|Barbershop|gets|its|greatest|play|from|the|timeless|spectacle|of|people|really|talking|to|each|other|. This|amiable|picture|talks|tough|,|but|it|'s|all|bluster|--|in|the|end|it|'s|as|sweet|as|Greenfingers|... This|is|one|of|Mr.|Chabrol|'s|subtlest|works|,|but|also|one|of|his|most|uncanny|. An|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|. Even|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|. Watching|Spirited|Away|is|like|watching|an|Eastern|imagination|explode|. As|relationships|shift|,|director|Robert|J.|Siegel|allows|the|characters|to|inhabit|their|world|without|cleaving|to|a|narrative|arc|. Twohy|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|. While|the|story|does|seem|pretty|unbelievable|at|times|,|it|'s|awfully|entertaining|to|watch|. A|smart|and|funny|,|albeit|sometimes|superficial|,|cautionary|tale|of|a|technology|in|search|of|an|artist|. Examines|its|explosive|subject|matter|as|nonjudgmentally|as|Wiseman|'s|previous|studies|of|inner-city|high|schools|,|hospitals|,|courts|and|welfare|centers|. I|prefer|Soderbergh|'s|concentration|on|his|two|lovers|over|Tarkovsky|'s|mostly|male|,|mostly|patriarchal|debating|societies|. `|If|you|are|in|the|mood|for|an|intelligent|weepy|,|it|can|easily|worm|its|way|into|your|heart|.|' In|IMAX|in|short|,|it|'s|just|as|wonderful|on|the|big|screen|. Does|a|good|job|of|establishing|a|time|and|place|,|and|of|telling|a|fascinating|character|'s|story|. I|'m|going|to|give|it|a|marginal|thumbs|up|. I|liked|it|just|enough|. Those|of|you|who|do|n'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|. A|deliciously|nonsensical|comedy|about|a|city|coming|apart|at|its|seams|. The|rare|Imax|movie|that|you|'ll|wish|was|longer|than|an|hour|. My|Wife|'s|plotting|is|nothing|special|;|it|'s|the|delivery|that|matters|here|. I|'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|. A|moving|and|not|infrequently|breathtaking|film|. It|'s|a|sharp|movie|about|otherwise|dull|subjects|. It|'s|like|Rocky|and|Bullwinkle|on|Speed|,|but|that|'s|neither|completely|enlightening|,|nor|does|it|catch|the|intensity|of|the|movie|'s|strangeness|. As|action-adventure|,|this|space-based|homage|to|Robert|Louis|Stevenson|'s|Treasure|Island|fires|on|all|plasma|conduits|. A|melancholy|,|emotional|film|. While|the|filmmaking|may|be|a|bit|disjointed|,|the|subject|matter|is|so|fascinating|that|you|wo|n't|care|. Intensely|romantic|,|thought-provoking|and|even|an|engaging|mystery|. Goofy|,|nutty|,|consistently|funny|. And|educational|! Another|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|. It|leaves|little|doubt|that|Kidman|has|become|one|of|our|best|actors|. The|film|boasts|dry|humor|and|jarring|shocks|,|plus|moments|of|breathtaking|mystery|. Beautifully|directed|and|convincingly|acted|. Gambling|and|throwing|a|basketball|game|for|money|is|n't|a|new|plot|--|in|fact|Toback|himself|used|it|in|Black|and|White|. But|Toback|'s|deranged|immediacy|makes|it|seem|fresh|again|. In|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|. Bring|on|the|sequel|. Graced|with|the|kind|of|social|texture|and|realism|that|would|be|foreign|in|American|teen|comedies|. If|we|sometimes|need|comforting|fantasies|about|mental|illness|,|we|also|need|movies|like|Tim|McCann|'s|Revolution|No.|9|. The|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|. A|big-budget\/all-star|movie|as|unblinkingly|pure|as|The|Hours|is|a|distinct|rarity|,|and|an|event|. ...|certainly|an|entertaining|ride|,|despite|many|talky|,|slow|scenes|. But|something|seems|to|be|missing|. A|sense|of|real|magic|,|perhaps|. That|Haynes|can|both|maintain|and|dismantle|the|facades|that|his|genre|and|his|character|construct|is|a|wonderous|accomplishment|of|veracity|and|narrative|grace|. The|movie|worked|for|me|right|up|to|the|final|scene|,|and|then|it|caved|in|. ...|one|of|the|most|entertaining|monster|movies|in|ages|... Plunges|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|. Would|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|. The|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|. Missteps|take|what|was|otherwise|a|fascinating|,|riveting|story|and|send|it|down|the|path|of|the|mundane|. An|indispensable|peek|at|the|art|and|the|agony|of|making|people|laugh|. Steadfastly|uncinematic|but|powerfully|dramatic|. The|engagingly|primitive|animated|special|effects|contribute|to|a|mood|that|'s|sustained|through|the|surprisingly|somber|conclusion|. Made-Up|lampoons|the|moviemaking|process|itself|,|while|shining|a|not|particularly|flattering|spotlight|on|America|'s|skin-deep|notions|of|pulchritude|. Evokes|the|19th|century|with|a|subtlety|that|is|an|object|lesson|in|period|filmmaking|. Ya-Yas|everywhere|will|forgive|the|flaws|and|love|the|film|. The|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|. The|artwork|is|spectacular|and|unlike|most|animaton|from|Japan|,|the|characters|move|with|grace|and|panache|. The|picture|'s|fascinating|byways|are|littered|with|trenchant|satirical|jabs|at|the|peculiar|egocentricities|of|the|acting|breed|. The|modern|remake|of|Dumas|'s|story|is|long|on|narrative|and|(|too|)|short|on|action|. Fred|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|. Suffers|from|its|timid|parsing|of|the|barn-side|target|of|sons|trying|to|breach|gaps|in|their|relationships|with|their|fathers|. Nonchalantly|freaky|and|uncommonly|pleasurable|,|Warm|Water|may|well|be|the|year|'s|best|and|most|unpredictable|comedy|. It|'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|. It|'s|a|great|American|adventure|and|a|wonderful|film|to|bring|to|IMAX|. Satisfyingly|scarifying|,|fresh|and|old-fashioned|at|the|same|time|. Oh|,|James|! Your|20th|outing|shows|off|a|lot|of|stamina|and|vitality|,|and|get|this|,|Madonna|'s|cameo|does|n't|suck|! That|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|. There|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 A|huge|box-office|hit|in|Korea|,|Shiri|is|a|must|for|genre|fans|. I|'m|not|a|fan|of|the|phrase|`|life|affirming|'|because|it|usually|means|`|schmaltzy|,|'|but|Real|Women|Have|Curves|truly|is|life|affirming|. The|symbols|float|like|butterflies|and|the|spinning|styx|sting|like|bees|. I|wanted|more|. If|it|'s|unnerving|suspense|you|'re|after|--|you|'ll|find|it|with|Ring|,|an|indisputably|spooky|film|;|with|a|screenplay|to|die|for|. The|art|direction|and|costumes|are|gorgeous|and|finely|detailed|,|and|Kurys|'|direction|is|clever|and|insightful|. Red|Dragon|makes|one|appreciate|Silence|of|the|Lambs|. Proves|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|. Leigh|is|n't|breaking|new|ground|,|but|he|knows|how|a|daily|grind|can|kill|love|. While|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|. ...|strips|Bible|stores|of|the|potential|for|sanctimoniousness|,|making|them|meaningful|for|both|kids|and|church-wary|adults|. Laugh-out-loud|lines|,|adorably|ditsy|but|heartfelt|performances|,|and|sparkling|,|bittersweet|dialogue|that|cuts|to|the|chase|of|the|modern|girl|'s|dilemma|. Tends|to|pile|too|many|``|serious|issues|''|on|its|plate|at|times|,|yet|remains|fairly|light|,|always|entertaining|,|and|smartly|written|. A|solidly|entertaining|little|film|. It|'s|an|entertaining|movie|,|and|the|effects|,|boosted|to|the|size|of|a|downtown|hotel|,|will|all|but|take|you|to|outer|space|. Sayles|has|a|knack|for|casting|,|often|resurrecting|performers|who|rarely|work|in|movies|now|...|and|drawing|flavorful|performances|from|bland|actors|. Despite|an|overwrought|ending|,|the|film|works|as|well|as|it|does|because|of|the|performances|. A|passionately|inquisitive|film|determined|to|uncover|the|truth|and|hopefully|inspire|action|. Though|Nijinsky|'s|words|grow|increasingly|disturbed|,|the|film|maintains|a|beguiling|serenity|and|poise|that|make|it|accessible|for|a|non-narrative|feature|. A|muddle|splashed|with|bloody|beauty|as|vivid|as|any|Scorsese|has|ever|given|us|. From|both|a|great|and|a|terrible|story|,|Mr.|Nelson|has|made|a|film|that|is|an|undeniably|worthy|and|devastating|experience|. Spider-Man|is|about|growing|strange|hairs|,|getting|a|more|mature|body|,|and|finding|it|necessary|to|hide|new|secretions|from|the|parental|units|. The|first|shocking|thing|about|Sorority|Boys|is|that|it|'s|actually|watchable|. Even|more|baffling|is|that|it|'s|funny|. Highlighted|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|. Neither|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|. First|and|foremost|...|the|reason|to|go|see|``|Blue|Crush|''|is|the|phenomenal|,|water-born|cinematography|by|David|Hennings|. A|visionary|marvel|,|but|it|'s|lacking|a|depth|in|storytelling|usually|found|in|anime|like|this|. The|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|. In|his|latest|effort|,|Storytelling|,|Solondz|has|finally|made|a|movie|that|is|n't|just|offensive|--|it|also|happens|to|be|good|. How|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|. I|just|saw|this|movie|...|well|,|it|'s|probably|not|accurate|to|call|it|a|movie|. What|'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|. Scherfig|,|the|writer-director|,|has|made|a|film|so|unabashedly|hopeful|that|it|actually|makes|the|heart|soar|. Yes|,|soar|. A|delicious|and|delicately|funny|look|at|the|residents|of|a|Copenhagen|neighborhood|coping|with|the|befuddling|complications|life|tosses|at|them|. ``|What|really|happened|?|'' is|a|question|for|philosophers|,|not|filmmakers|;|all|the|filmmakers|need|to|do|is|engage|an|audience|. Soderbergh|,|like|Kubrick|before|him|,|may|not|touch|the|planet|'s|skin|,|but|understands|the|workings|of|its|spirit|. Much|credit|must|be|given|to|the|water-camera|operating|team|of|Don|King|,|Sonny|Miller|,|and|Michael|Stewart|. Their|work|is|fantastic|. Crush|is|so|warm|and|fuzzy|you|might|be|able|to|forgive|its|mean-spirited|second|half|. Franco|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|. Tsai|Ming-liang|'s|witty|,|wistful|new|film|,|What|Time|Is|It|There|? ,|is|a|temporal|inquiry|that|shoulders|its|philosophical|burden|lightly|. The|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|. Steers|,|in|his|feature|film|debut|,|has|created|a|brilliant|motion|picture|. A|brilliant|,|absurd|collection|of|vignettes|that|,|in|their|own|idiosyncratic|way|,|sum|up|the|strange|horror|of|life|in|the|new|millennium|. As|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|. The|film|may|not|hit|as|hard|as|some|of|the|better|drug-related|pictures|,|but|it|still|manages|to|get|a|few|punches|in|. Old-fashioned|but|thoroughly|satisfying|entertainment|. An|energizing|,|intoxicating|documentary|charting|the|rise|of|hip-hop|culture|in|general|and|the|art|of|scratching|(|or|turntablism|)|in|particular|. A|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|.|' If|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|. I|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|. Even|though|the|film|does|n't|manage|to|hit|all|of|its|marks|,|it|'s|still|entertaining|to|watch|the|target|practice|. Where|This|was|lazy|but|enjoyable|,|a|formula|comedy|redeemed|by|its|stars|,|That|is|even|lazier|and|far|less|enjoyable|. The|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|. The|attraction|between|these|two|marginal|characters|is|complex|from|the|start|--|and|,|refreshingly|,|stays|that|way|. Fans|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|. Even|when|he|'s|not|at|his|most|critically|insightful|,|Godard|can|still|be|smarter|than|any|50|other|filmmakers|still|at|work|. What|sets|this|romantic|comedy|apart|from|most|Hollywood|romantic|comedies|is|its|low-key|way|of|tackling|what|seems|like|done-to-death|material|. Has|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|. This|seductive|tease|of|a|thriller|gets|the|job|done|. It|'s|a|scorcher|. Bittersweet|comedy\/drama|full|of|life|,|hand|gestures|,|and|some|really|adorable|Italian|guys|. Works|as|pretty|contagious|fun|. The|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|. A|realistically|terrifying|movie|that|puts|another|notch|in|the|belt|of|the|long|list|of|renegade-cop|tales|. A|charming|,|banter-filled|comedy|...|one|of|those|airy|cinematic|bon|bons|whose|aims|--|and|by|extension|,|accomplishments|--|seem|deceptively|slight|on|the|surface|. A|film|with|almost|as|many|delights|for|adults|as|there|are|for|children|and|dog|lovers|. Serious|movie-goers|embarking|upon|this|journey|will|find|that|The|Road|to|Perdition|leads|to|a|satisfying|destination|. Heartwarming|and|gently|comic|even|as|the|film|breaks|your|heart|. Caruso|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|. A|``|black|Austin|Powers|?|'' I|prefer|to|think|of|it|as|``|Pootie|Tang|with|a|budget|.|'' Sa|da|TAY|! Oddly|,|the|film|is|n't|nearly|as|downbeat|as|it|sounds|,|but|strikes|a|tone|that|'s|alternately|melancholic|,|hopeful|and|strangely|funny|. I|would|be|shocked|if|there|was|actually|one|correct|interpretation|,|but|that|should|n't|make|the|movie|or|the|discussion|any|less|enjoyable|. Chouraqui|brings|documentary-like|credibility|to|the|horrors|of|the|killing|field|and|the|barbarism|of|`|ethnic|cleansing|.|' The|best|thing|I|can|say|about|this|film|is|that|I|ca|n't|wait|to|see|what|the|director|does|next|. Smarter|than|its|commercials|make|it|seem|. One|of|the|funnier|movies|in|town|. Campanella|'s|competent|direction|and|his|excellent|cast|overcome|the|obstacles|of|a|predictable|outcome|and|a|screenplay|that|glosses|over|Rafael|'s|evolution|. By|turns|very|dark|and|very|funny|. Steven|Soderbergh|does|n't|remake|Andrei|Tarkovsky|'s|Solaris|so|much|as|distill|it|. For|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|. Simultaneously|heartbreakingly|beautiful|and|exquisitely|sad|. Though|overall|an|overwhelmingly|positive|portrayal|,|the|film|does|n't|ignore|the|more|problematic|aspects|of|Brown|'s|life|. The|philosophical|musings|of|the|dialogue|jar|against|the|tawdry|soap|opera|antics|of|the|film|'s|action|in|a|way|that|is|surprisingly|enjoyable|. Not|too|fancy|,|not|too|filling|,|not|too|fluffy|,|but|definitely|tasty|and|sweet|. Director|Lee|has|a|true|cinematic|knack|,|but|it|'s|also|nice|to|see|a|movie|with|its|heart|so|thoroughly|,|unabashedly|on|its|sleeve|. As|Allen|'s|execution|date|closes|in|,|the|documentary|gives|an|especially|poignant|portrait|of|her|friendship|with|the|never|flagging|legal|investigator|David|Presson|. Jones|has|tackled|a|meaty|subject|and|drawn|engaging|characters|while|peppering|the|pages|with|memorable|zingers|. A|vivid|,|spicy|footnote|to|history|,|and|a|movie|that|grips|and|holds|you|in|rapt|attention|from|start|to|finish|. If|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|. If|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|. One|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|. ...|an|adorably|whimsical|comedy|that|deserves|more|than|a|passing|twinkle|. An|engrossing|story|that|combines|psychological|drama|,|sociological|reflection|,|and|high-octane|thriller|. It|'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|. Mel|Gibson|fights|the|good|fight|in|Vietnam|in|director|Randall|Wallace|'s|flag-waving|war|flick|with|a|core|of|decency|. There|'s|real|visual|charge|to|the|filmmaking|,|and|a|strong|erotic|spark|to|the|most|crucial|lip-reading|sequence|. A|brutal|and|funny|work|. Nicole|Holofcenter|,|the|insightful|writer\/director|responsible|for|this|illuminating|comedy|does|n't|wrap|the|proceedings|up|neatly|but|the|ideas|tie|together|beautifully|. The|film|is|a|blunt|indictment|,|part|of|a|perhaps|surreal|campaign|to|bring|Kissinger|to|trial|for|crimes|against|humanity|. One|of|the|most|important|and|exhilarating|forms|of|animated|filmmaking|since|old|Walt|doodled|Steamboat|Willie|. Move|over|Bond|;|this|girl|deserves|a|sequel|. The|kind|of|trifle|that|date|nights|were|invented|for|.|. 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|... Tells|(|the|story|)|with|such|atmospheric|ballast|that|shrugging|off|the|plot|'s|persnickety|problems|is|simply|a|matter|of|(|being|)|in|a|shrugging|mood|. The|film|is|hard|to|dismiss|--|moody|,|thoughtful|,|and|lit|by|flashes|of|mordant|humor|. If|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|. What|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|. Meticulously|uncovers|a|trail|of|outrageous|force|and|craven|concealment|. Hey|,|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|. You|wo|n't|look|at|religious|fanatics|--|or|backyard|sheds|--|the|same|way|again|. At|its|best|...|Festival|in|Cannes|bubbles|with|the|excitement|of|the|festival|in|Cannes|. There|is|a|general|air|of|exuberance|in|All|About|The|Benjamins|that|'s|hard|to|resist|. A|lovably|old-school|Hollywood|confection|. I|'m|happy|to|have|seen|it|--|not|as|an|alternate|version|,|but|as|the|ultimate|exercise|in|viewing|deleted|scenes|. By|turns|gripping|,|amusing|,|tender|and|heart-wrenching|,|Laissez-passer|has|all|the|earmarks|of|French|cinema|at|its|best|. The|warnings|to|resist|temptation|in|this|film|...|are|blunt|and|challenging|and|offer|no|easy|rewards|for|staying|clean|. Wonder|of|wonders|--|a|teen|movie|with|a|humanistic|message|. A|quirky|comedy|set|in|Newfoundland|that|cleverly|captures|the|dry|wit|that|'s|so|prevalent|on|The|Rock|. Peppered|with|witty|dialogue|and|inventive|moments|. I|'d|rather|watch|a|rerun|of|The|Powerpuff|Girls With|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|. The|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|. Like|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|. As|a|thoughtful|and|unflinching|examination|of|an|alternative|lifestyle|,|Sex|with|Strangers|is|a|success|. unpretentious|,|charming|,|quirky|,|original Spinning|a|web|of|dazzling|entertainment|may|be|overstating|it|,|but|``|Spider-Man|''|certainly|delivers|the|goods|. Other|than|the|slightly|flawed|(|and|fairly|unbelievable|)|finale|,|everything|else|is|top|shelf|. This|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|. Manages|to|delight|without|much|of|a|story|. There|'s|no|denying|that|Burns|is|a|filmmaker|with|a|bright|future|ahead|of|him|. I|have|a|confession|to|make|:|I|did|n'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|! Fairy-tale|formula|,|serves|as|a|paper|skeleton|for|some|very|good|acting|,|dialogue|,|comedy|,|direction|and|especially|charm|. A|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|. Though|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|. An|energetic|and|engaging|film|that|never|pretends|to|be|something|it|is|n't|. A|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|. An|animation|landmark|as|monumental|as|Disney|'s|1937|breakthrough|Snow|White|and|the|Seven|Dwarfs|. An|entertaining|,|if|ultimately|minor|,|thriller|. Sex|With|Strangers|is|fascinating|... A|subtle|,|poignant|picture|of|goodness|that|is|flawed|,|compromised|and|sad|. A|wry|,|affectionate|delight|. The|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|. One|of|those|joyous|films|that|leaps|over|national|boundaries|and|celebrates|universal|human|nature|. A|penetrating|glimpse|into|the|tissue-thin|ego|of|the|stand-up|comic|. Kids|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|. Paid|in|Full|is|remarkably|engaging|despite|being|noticeably|derivative|of|Goodfellas|and|at|least|a|half|dozen|other|trouble-in-the-ghetto|flicks|. Less|cinematically|powerful|than|quietly|and|deeply|moving|,|which|is|powerful|in|itself|. waydowntown|manages|to|nail|the|spirit-crushing|ennui|of|denuded|urban|living|without|giving|in|to|it|. Each|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|. If|Borstal|Boy|is|n't|especially|realistic|,|it|is|an|engaging|nostalgia|piece|. Often|demented|in|a|good|way|,|but|it|is|an|uneven|film|for|the|most|part|. The|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|. Maggie|Smith|as|the|Ya-Ya|member|with|the|O2-tank|will|absolutely|crack|you|up|with|her|crass|,|then|gasp|for|gas|,|verbal|deportment|. This|is|a|movie|that|refreshes|the|mind|and|spirit|along|with|the|body|,|so|original|is|its|content|,|look|,|and|style|. Although|I|did|n't|hate|this|one|,|it|'s|not|very|good|either|. It|can|be|safely|recommended|as|a|video\/DVD|babysitter|. Another|Best|of|the|Year|selection|. The|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|. It|'s|a|very|valuable|film|... Max|pokes|,|provokes|,|takes|expressionistic|license|and|hits|a|nerve|...|as|far|as|art|is|concerned|,|it|'s|mission|accomplished|. Literary|purists|may|not|be|pleased|,|but|as|far|as|mainstream|matinee-style|entertainment|goes|,|it|does|a|bang-up|job|of|pleasing|the|crowds|. Here|Polanski|looks|back|on|those|places|he|saw|at|childhood|,|and|captures|them|by|freeing|them|from|artefact|,|and|by|showing|them|heartbreakingly|drably|. The|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|. A|compelling|story|of|musical|passion|against|governmental|odds|. With|``|Ichi|the|Killer|''|,|Takashi|Miike|,|Japan|'s|wildest|filmmaker|gives|us|a|crime|fighter|carrying|more|emotional|baggage|than|Batman|... You|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|. (|Breheny|'s|)|lensing|of|the|New|Zealand|and|Cook|Island|locations|captures|both|the|beauty|of|the|land|and|the|people|. An|almost|unbearably|morbid|love|story|. The|Wild|Thornberrys|Movie|has|all|the|sibling|rivalry|and|general|family|chaos|to|which|anyone|can|relate|. A|forceful|drama|of|an|alienated|executive|who|re-invents|himself|. Spielberg|'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|. The|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|. The|best|film|of|the|year|2002|. An|enthralling|,|entertaining|feature|. Stripped|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|. A|remarkable|movie|with|an|unsatisfying|ending|,|which|is|just|the|point|. All|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|. Smith|finds|amusing|juxtapositions|that|justify|his|exercise|. Working|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|. An|older|cad|instructs|a|younger|lad|in|Zen|and|the|art|of|getting|laid|in|this|prickly|indie|comedy|of|manners|and|misanthropy|. ``|Austin|Powers|in|Goldmember|''|has|the|right|stuff|for|silly|summer|entertainment|and|has|enough|laughs|to|sustain|interest|to|the|end|. One|of|(|Jaglom|'s|)|better|efforts|--|a|wry|and|sometime|bitter|movie|about|love|. Schaeffer|is|n't|in|this|film|,|which|may|be|why|it|works|as|well|as|it|does|. A|fresh|,|entertaining|comedy|that|looks|at|relationships|minus|traditional|gender|roles|. Although|Estela|Bravo|'s|documentary|is|cloyingly|hagiographic|in|its|portrait|of|Cuban|leader|Fidel|Castro|,|it|'s|still|a|guilty|pleasure|to|watch|. Surprisingly|,|the|film|is|a|hilarious|adventure|and|I|shamelessly|enjoyed|it|. The|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|. Brutally|honest|and|told|with|humor|and|poignancy|,|which|makes|its|message|resonate|. If|you|can|read|the|subtitles|(|the|opera|is|sung|in|Italian|)|and|you|like|`|Masterpiece|Theatre|'|type|costumes|,|you|'ll|enjoy|this|movie|. A|pretty|funny|movie|,|with|most|of|the|humor|coming|,|as|before|,|from|the|incongruous|but|chemically|perfect|teaming|of|Crystal|and|De|Niro|. Gangster|No.|1|is|solid|,|satisfying|fare|for|adults|. This|Chicago|has|hugely|imaginative|and|successful|casting|to|its|great|credit|,|as|well|as|one|terrific|score|and|attitude|to|spare|. Has|enough|gun|battles|and|throwaway|humor|to|cover|up|the|yawning|chasm|where|the|plot|should|be|. With|its|jerky|hand-held|camera|and|documentary|feel|,|Bloody|Sunday|is|a|sobering|recount|of|a|very|bleak|day|in|Derry|. You|will|likely|prefer|to|keep|on|watching|. Insomnia|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|. What|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|. At|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|. An|Inuit|masterpiece|that|will|give|you|goosebumps|as|its|uncanny|tale|of|love|,|communal|discord|,|and|justice|unfolds|. This|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 It|'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|. Performances|are|potent|,|and|the|women|'s|stories|are|ably|intercut|and|involving|. An|enormously|entertaining|movie|,|like|nothing|we|'ve|ever|seen|before|,|and|yet|completely|familiar|. Lan|Yu|is|a|genuine|love|story|,|full|of|traditional|layers|of|awakening|and|ripening|and|separation|and|recovery|. Your|children|will|be|occupied|for|72|minutes|. Pull|(|s|)|off|the|rare|trick|of|recreating|not|only|the|look|of|a|certain|era|,|but|also|the|feel|. Twohy|'s|a|good|yarn-spinner|,|and|ultimately|the|story|compels|. `|Tobey|Maguire|is|a|poster|boy|for|the|geek|generation|.|' ...|a|sweetly|affecting|story|about|four|sisters|who|are|coping|,|in|one|way|or|another|,|with|life|'s|endgame|. Passion|,|melodrama|,|sorrow|,|laugther|,|and|tears|cascade|over|the|screen|effortlessly|... Road|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|. A|marvelous|performance|by|Allison|Lohman|as|an|identity-seeking|foster|child|. Arliss|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|. Critics|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|. What|a|dumb|,|fun|,|curiously|adolescent|movie|this|is|. The|charms|of|the|lead|performances|allow|us|to|forget|most|of|the|film|'s|problems|. A|vivid|,|sometimes|surreal|,|glimpse|into|the|mysteries|of|human|behavior|. A|tour|de|force|of|modern|cinema|. Peralta|captures|,|in|luminous|interviews|and|amazingly|evocative|film|from|three|decades|ago|,|the|essence|of|the|Dogtown|experience|. The|lively|appeal|of|The|Last|Kiss|lies|in|the|ease|with|which|it|integrates|thoughtfulness|and|pasta-fagioli|comedy|. Without|resorting|to|camp|or|parody|,|Haynes|(|like|Sirk|,|but|differently|)|has|transformed|the|rhetoric|of|Hollywood|melodrama|into|something|provocative|,|rich|,|and|strange|. The|performances|are|an|absolute|joy|. A|quasi-documentary|by|French|filmmaker|Karim|Dridi|that|celebrates|the|hardy|spirit|of|Cuban|music|. Grant|carries|the|day|with|impeccable|comic|timing|,|raffish|charm|and|piercing|intellect|. A|sensitive|and|astute|first|feature|by|Anne-Sophie|Birot|. Both|exuberantly|romantic|and|serenely|melancholy|,|What|Time|Is|It|There|? may|prove|to|be|(|Tsai|'s|)|masterpiece|. Mazel|tov|to|a|film|about|a|family|'s|joyous|life|acting|on|the|Yiddish|stage|. Standing|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|. It|'s|nice|to|see|Piscopo|again|after|all|these|years|,|and|Chaykin|and|Headly|are|priceless|. Provides|a|porthole|into|that|noble|,|trembling|incoherence|that|defines|us|all|. Simplistic|,|silly|and|tedious|. It|'s|so|laddish|and|juvenile|,|only|teenage|boys|could|possibly|find|it|funny|. Exploitative|and|largely|devoid|of|the|depth|or|sophistication|that|would|make|watching|such|a|graphic|treatment|of|the|crimes|bearable|. (|Garbus|)|discards|the|potential|for|pathological|study|,|exhuming|instead|,|the|skewed|melodrama|of|the|circumstantial|situation|. A|visually|flashy|but|narratively|opaque|and|emotionally|vapid|exercise|in|style|and|mystification|. The|story|is|also|as|unoriginal|as|they|come|,|already|having|been|recycled|more|times|than|I|'d|care|to|count|. About|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|. Not|so|much|farcical|as|sour|. Unfortunately|the|story|and|the|actors|are|served|with|a|hack|script|. All|the|more|disquieting|for|its|relatively|gore-free|allusions|to|the|serial|murders|,|but|it|falls|down|in|its|attempts|to|humanize|its|subject|. A|sentimental|mess|that|never|rings|true|. While|the|performances|are|often|engaging|,|this|loose|collection|of|largely|improvised|numbers|would|probably|have|worked|better|as|a|one-hour|TV|documentary|. Interesting|,|but|not|compelling|. On|a|cutting|room|floor|somewhere|lies|...|footage|that|might|have|made|No|Such|Thing|a|trenchant|,|ironic|cultural|satire|instead|of|a|frustrating|misfire|. While|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|. There|is|a|difference|between|movies|with|the|courage|to|go|over|the|top|and|movies|that|do|n't|care|about|being|stupid Nothing|here|seems|as|funny|as|it|did|in|Analyze|This|,|not|even|Joe|Viterelli|as|De|Niro|'s|right-hand|goombah|. Such|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|! Here|,|common|sense|flies|out|the|window|,|along|with|the|hail|of|bullets|,|none|of|which|ever|seem|to|hit|Sascha|. This|100-minute|movie|only|has|about|25|minutes|of|decent|material|. The|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|. On|its|own|,|it|'s|not|very|interesting|. As|a|remake|,|it|'s|a|pale|imitation|. It|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|. A|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|. As|exciting|as|all|this|exoticism|might|sound|to|the|typical|Pax|viewer|,|the|rest|of|us|will|be|lulled|into|a|coma|. The|party|scenes|deliver|some|tawdry|kicks|. The|rest|of|the|film|...|is|dudsville|. Our|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|.|' The|criticism|never|rises|above|easy|,|cynical|potshots|at|morally|bankrupt|characters|... The|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|. Somewhere|in|the|middle|,|the|film|compels|,|as|Demme|experiments|he|harvests|a|few|movie|moment|gems|,|but|the|field|of|roughage|dominates|. The|action|clichés|just|pile|up|. Payami|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|. The|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|. Another|useless|recycling|of|a|brutal|mid|-|'70s|American|sports|movie|. Please|,|someone|,|stop|Eric|Schaeffer|before|he|makes|another|film|. Most|of|the|problems|with|the|film|do|n't|derive|from|the|screenplay|,|but|rather|the|mediocre|performances|by|most|of|the|actors|involved ...|if|you|'re|just|in|the|mood|for|a|fun|--|but|bad|--|movie|,|you|might|want|to|catch|Freaks|as|a|matinee|. Curling|may|be|a|unique|sport|but|Men|with|Brooms|is|distinctly|ordinary|. Though|the|opera|itself|takes|place|mostly|indoors|,|Jacquot|seems|unsure|of|how|to|evoke|any|sort|of|naturalism|on|the|set|. There|'s|no|getting|around|the|fact|that|this|is|Revenge|Of|The|Nerds|Revisited|--|again|. The|effort|is|sincere|and|the|results|are|honest|,|but|the|film|is|so|bleak|that|it|'s|hardly|watchable|. Analyze|That|regurgitates|and|waters|down|many|of|the|previous|film|'s|successes|,|with|a|few|new|swings|thrown|in|. With|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|. Stinks|from|start|to|finish|,|like|a|wet|burlap|sack|of|gloom|. To|the|civilized|mind|,|a|movie|like|Ballistic|:|Ecks|Vs.|Sever|is|more|of|an|ordeal|than|an|amusement|. Equlibrium|could|pass|for|a|thirteen-year-old|'s|book|report|on|the|totalitarian|themes|of|1984|and|Farenheit|451|. The|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|. When|Seagal|appeared|in|an|orange|prison|jumpsuit|,|I|wanted|to|stand|up|in|the|theater|and|shout|,|`|Hey|,|Kool-Aid|!|' An|easy|watch|,|except|for|the|annoying|demeanour|of|its|lead|character|. Imagine|the|CleanFlicks|version|of|`|Love|Story|,|'|with|Ali|MacGraw|'s|profanities|replaced|by|romance-novel|platitudes|. PC|stability|notwithstanding|,|the|film|suffers|from|a|simplistic|narrative|and|a|pat|,|fairy-tale|conclusion|. Forget|the|misleading|title|,|what|'s|with|the|unexplained|baboon|cameo|? An|odd|,|haphazard|,|and|inconsequential|romantic|comedy|. Though|her|fans|will|assuredly|have|their|funny|bones|tickled|,|others|will|find|their|humor-seeking|dollars|best|spent|elsewhere|. Pascale|Bailly|'s|rom-com|provides|Amélie|'s|Audrey|Tautou|with|another|fabuleux|destin|--|i.e.|,|a|banal|spiritual|quest|. A|static|and|sugary|little|half-hour|,|after-school|special|about|interfaith|understanding|,|stretched|out|to|90|minutes|. Watching|the|chemistry|between|Freeman|and|Judd|,|however|,|almost|makes|this|movie|worth|seeing|. Almost|. ...|a|pretentious|and|ultimately|empty|examination|of|a|sick|and|evil|woman|. The|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|. The|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|. The|characters|are|never|more|than|sketches|...|which|leaves|any|true|emotional|connection|or|identification|frustratingly|out|of|reach|. Mattei|'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|. Only|in|its|final|surprising|shots|does|Rabbit-Proof|Fence|find|the|authority|it|'s|looking|for|. Is|n't|as|sharp|as|the|original|...|Despite|some|visual|virtues|,|`|Blade|II|'|just|does|n't|cut|it|. ...|plays|like|a|badly|edited|,|91-minute|trailer|(|and|)|the|director|ca|n't|seem|to|get|a|coherent|rhythm|going|. In|fact|,|it|does|n't|even|seem|like|she|tried|. Maybe|LeBlanc|thought|,|``|Hey|,|the|movie|about|the|baseball-playing|monkey|was|worse|.|'' What|you|expect|is|just|what|you|get|...|assuming|the|bar|of|expectations|has|n't|been|raised|above|sixth-grade|height|. Barry|Sonnenfeld|owes|Frank|the|Pug|big|time The|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|. So|riddled|with|unanswered|questions|that|it|requires|gargantuan|leaps|of|faith|just|to|watch|it|plod|along|. I|approached|the|usher|and|said|that|if|she|had|to|sit|through|it|again|,|she|should|ask|for|a|raise|. If|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|. Too|slow|for|a|younger|crowd|,|too|shallow|for|an|older|one|. There|'s|a|reason|the|studio|did|n't|offer|an|advance|screening|. ``|The|Adventures|of|Pluto|Nash|''|is|a|big|time|stinker|. A|punch|line|without|a|premise|,|a|joke|built|entirely|from|musty|memories|of|half-dimensional|characters|. Takes|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|. The|things|this|movie|tries|to|get|the|audience|to|buy|just|wo|n't|fly|with|most|intelligent|viewers|. Even|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|. Sitting|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|. Confuses|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|. Deadly|dull|,|pointless|meditation|on|losers|in|a|gone-to-seed|hotel|. With|this|new|Rollerball|,|sense|and|sensibility|have|been|overrun|by|what|can|only|be|characterized|as|robotic|sentiment|. One|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 A|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|. Sex|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 The|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|. A|portrait|of|alienation|so|perfect|,|it|will|certainly|succeed|in|alienating|most|viewers|. The|code|talkers|deserved|better|than|a|hollow|tribute|. Skip|the|film|and|buy|the|Philip|Glass|soundtrack|CD|. Feels|like|a|cold|old|man|going|through|the|motions|. Dignified|CEO|'s|meet|at|a|rustic|retreat|and|pee|against|a|tree|. Can|you|bear|the|laughter|? Dull|and|mechanical|,|kinda|like|a|very|goofy|museum|exhibit There|'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|. Beware|the|quirky|Brit-com|. They|can|and|will|turn|on|a|dime|from|oddly|humorous|to|tediously|sentimental|. Has|its|moments|--|and|almost|as|many|subplots|. The|gags|,|and|the|script|,|are|a|mixed|bag|. Completely|awful|Iranian|drama|...|as|much|fun|as|a|grouchy|ayatollah|in|a|cold|mosque|. Narratively|,|Trouble|Every|Day|is|a|plodding|mess|. There|'s|no|point|in|extracting|the|bare|bones|of|Byatt|'s|plot|for|purposes|of|bland|Hollywood|romance|. Directors|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|. Adam|Sandler|'s|heart|may|be|in|the|right|place|,|but|he|needs|to|pull|his|head|out|of|his|butt There|'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|. Despite|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|. It|'s|all|pretty|tame|. The|most|offensive|thing|about|the|movie|is|that|Hollywood|expects|people|to|pay|to|see|it|. The|movie|is|a|mess|from|start|to|finish|. The|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|. I|'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|. In|the|telling|of|a|story|largely|untold|,|Bui|chooses|to|produce|something|that|is|ultimately|suspiciously|familiar|. The|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 Terminally|brain|dead|production|. Some|episodes|work|,|some|do|n't|. Beautifully|filmed|and|well|acted|...|but|admittedly|problematic|in|its|narrative|specifics|. J.|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|. Rymer|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|. Not|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|. Wow|. I|have|not|been|this|disappointed|by|a|movie|in|a|long|time|. Off|the|Hook|is|overlong|and|not|well-acted|,|but|credit|writer-producer-director|Adam|Watstein|with|finishing|it|at|all|. It|'s|a|drag|how|Nettelbeck|sees|working|women|--|or|at|least|this|working|woman|--|for|whom|she|shows|little|understanding|. Watching|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|. It|'s|also|curious|to|note|that|this|film|,|like|the|similarly|ill-timed|Antitrust|,|is|easily|as|bad|at|a|fraction|the|budget|. Will|probably|be|one|of|those|movies|barely|registering|a|blip|on|the|radar|screen|of|2002|. The|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|. There|'s|nothing|interesting|in|Unfaithful|whatsoever|. None|of|this|is|half|as|moving|as|the|filmmakers|seem|to|think|. A|processed|comedy|chop|suey|. As|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|. Fails|as|a|dystopian|movie|,|as|a|retooling|of|Fahrenheit|451|,|and|even|as|a|rip-off|of|The|Matrix|. Full|of|the|kind|of|obnoxious|chitchat|that|only|self-aware|neurotics|engage|in|. An|erotic|thriller|that|'s|neither|too|erotic|nor|very|thrilling|,|either|. The|movie|,|like|Bartleby|,|is|something|of|a|stiff|--|an|extra-dry|office|comedy|that|seems|twice|as|long|as|its|83|minutes|. With|its|parade|of|almost|perpetually|wasted|characters|...|Margarita|feels|like|a|hazy|high|that|takes|too|long|to|shake|. If|you|value|your|time|and|money|,|find|an|escape|clause|and|avoid|seeing|this|trite|,|predictable|rehash|. The|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|. Everything|is|pegged|into|the|groove|of|a|New|York|dating|comedy|with|`|issues|'|to|simplify|. A|dramatic|comedy|as|pleasantly|dishonest|and|pat|as|any|Hollywood|fluff|. The|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|. It|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|. The|50-something|lovebirds|are|too|immature|and|unappealing|to|care|about|. So|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|. Even|in|the|summertime|,|the|most|restless|young|audience|deserves|the|dignity|of|an|action|hero|motivated|by|something|more|than|franchise|possibilities|. What|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|. As|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|. Plodding|,|peevish|and|gimmicky|. The|Four|Feathers|is|definitely|horse|feathers|,|but|if|you|go|in|knowing|that|,|you|might|have|fun|in|this|cinematic|sandbox|. Oozes|condescension|from|every|pore|. ``|Solaris|''|is|a|shapeless|inconsequential|move|relying|on|the|viewer|to|do|most|of|the|work|. The|direction|,|by|George|Hickenlooper|,|has|no|snap|to|it|,|no|wiseacre|crackle|or|hard-bitten|cynicism|. Though|this|saga|would|be|terrific|to|read|about|,|it|is|dicey|screen|material|that|only|a|genius|should|touch|. It|has|plenty|of|laughs|. It|just|does|n't|have|much|else|...|especially|in|a|moral|sense|. An|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|. Confusion|is|one|of|my|least|favourite|emotions|,|especially|when|I|have|to|put|up|with|146|minutes|of|it|. (|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|. Occasionally|loud|and|offensive|,|but|more|often|,|it|simply|lulls|you|into|a|gentle|waking|coma|. it|may|play|well|as|a|double|feature|with|mainstream|foreign|mush|like|My|Big|Fat|Greek|Wedding By|the|time|you|reach|the|finale|,|you|'re|likely|wondering|why|you|'ve|been|watching|all|this|strutting|and|posturing|. Journalistically|dubious|,|inept|and|often|lethally|dull|. Putting|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|. At|its|best|,|it|'s|Black|Hawk|Down|with|more|heart|. At|its|worst|,|it|'s|Rambo|-|meets-John|Ford|. Exactly|what|you|'d|expect|from|a|guy|named|Kaos|. This|movie|...|does|n't|deserve|the|energy|it|takes|to|describe|how|bad|it|is|. With|or|without|ballast|tanks|,|K-19|sinks|to|a|Harrison|Ford|low|. Director|Oliver|Parker|labors|so|hard|to|whip|life|into|The|Importance|of|Being|Earnest|that|he|probably|pulled|a|muscle|or|two|. You|might|be|shocked|to|discover|that|Seinfeld|'s|real|life|is|boring|. It|'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|. Walsh|ca|n't|quite|negotiate|the|many|inconsistencies|in|Janice|'s|behavior|or|compensate|for|them|by|sheer|force|of|charm|. This|10th|film|in|the|series|looks|and|feels|tired|. It|leers|,|offering|next|to|little|insight|into|its|intriguing|subject|. I|found|myself|growing|more|and|more|frustrated|and|detached|as|Vincent|became|more|and|more|abhorrent|. One|of|the|oddest|and|most|inexplicable|sequels|in|movie|history|. There|'s|nothing|to|gain|from|watching|They|. It|is|n't|scary|. It|hates|its|characters|. It|finds|no|way|to|entertain|or|inspire|its|viewers|. Fear|permeates|the|whole|of|Stortelling|,|Todd|Solondz|'|oftentimes|funny|,|yet|ultimately|cowardly|autocritique|. The|skirmishes|for|power|waged|among|victims|and|predators|settle|into|an|undistinguished|rhythm|of|artificial|suspense|. ...|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|. Though|the|film|is|well-intentioned|,|one|could|rent|the|original|and|get|the|same|love|story|and|parable|. Just|too|silly|and|sophomoric|to|ensnare|its|target|audience|. The|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|. A|cleverly|crafted|but|ultimately|hollow|mockumentary|. It|gets|bogged|down|by|hit-and-miss|topical|humour|before|getting|to|the|truly|good|stuff|. An|achingly|enthralling|premise|,|the|film|is|hindered|by|uneven|dialogue|and|plot|lapses|. It|'s|Tommy|'s|job|to|clean|the|peep|booths|surrounding|her|,|and|after|viewing|this|one|,|you|'ll|feel|like|mopping|up|,|too|. Rifkin|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|. Such|a|bad|movie|that|its|luckiest|viewers|will|be|seated|next|to|one|of|those|ignorant|pinheads|who|talk|throughout|the|show|. If|you|go|into|the|theater|expecting|a|scary|,|action-packed|chiller|,|you|might|soon|be|looking|for|a|sign|. An|EXIT|sign|,|that|is|. Holds|limited|appeal|to|those|who|like|explosions|,|sadism|and|seeing|people|beat|each|other|to|a|pulp|. The|dialogue|is|very|choppy|and|monosyllabic|despite|the|fact|that|it|is|being|dubbed|. A|feature-length|,|R-rated|,|road-trip|version|of|Mama|'s|Family|. What|you|end|up|getting|is|the|Vertical|Limit|of|surfing|movies|-|memorable|stunts|with|lots|of|downtime|in|between|. Stealing|Harvard|does|n't|care|about|cleverness|,|wit|or|any|other|kind|of|intelligent|humor|. Bigelow|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|. There|'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|. Imagine|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|. Suffers|from|a|lack|of|clarity|and|audacity|that|a|subject|as|monstrous|and|pathetic|as|Dahmer|demands|. What|soured|me|on|The|Santa|Clause|2|was|that|Santa|bumps|up|against|21st|century|reality|so|hard|,|it|'s|icky|. It|'s|an|88-minute|highlight|reel|that|'s|86|minutes|too|long|. The|film|favors|the|scientific|over|the|spectacular|(|visually|speaking|)|. Such|an|incomprehensible|mess|that|it|feels|less|like|bad|cinema|than|like|being|stuck|in|a|dark|pit|having|a|nightmare|about|bad|cinema|. With|the|exception|of|McCoist|,|the|players|do|n't|have|a|clue|on|the|park|. The|acting|is|n't|much|better|. The|whole|affair|is|as|predictable|as|can|be|. A|not-so-Divine|Secrets|of|the|Ya-Ya|Sisterhood|with|a|hefty|helping|of|Re-Fried|Green|Tomatoes|. This|cloying|,|voices-from-the-other-side|story|is|hell|. A|suffocating|rape-payback|horror|show|that|hinges|on|the|subgenre|'s|most|enabling|victim|...|and|an|ebullient|affection|for|industrial-model|meat|freezers|. Star|Trek|was|kind|of|terrific|once|,|but|now|it|is|a|copy|of|a|copy|of|a|copy|. (|N|)|o|matter|how|much|good|will|the|actors|generate|,|Showtime|eventually|folds|under|its|own|thinness|. Every|potential|twist|is|telegraphed|well|in|advance|,|every|performance|respectably|muted|;|the|movie|itself|seems|to|have|been|made|under|the|influence|of|Rohypnol|. Puts|on|airs|of|a|Hal|Hartley|wannabe|film|--|without|the|vital|comic|ingredient|of|the|hilarious|writer-director|himself|. Ver|Wiel|'s|desperate|attempt|at|wit|is|lost|,|leaving|the|character|of|Critical|Jim|two-dimensional|and|pointless|. Despite|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 Although|Disney|follows|its|standard|formula|in|this|animated|adventure|,|it|feels|more|forced|than|usual|. Gaghan|...|has|thrown|every|suspenseful|cliché|in|the|book|at|this|nonsensical|story|. A|sham|construct|based|on|theory|,|sleight-of-hand|,|and|ill-wrought|hypothesis|. (|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|. `|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|...|' Gooding|offers|a|desperately|ingratiating|performance|. Parker|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|. The|director|has|injected|self-consciousness|into|the|proceedings|at|every|turn|. The|results|are|far|more|alienating|than|involving|. Bogdanich|is|unashamedly|pro-Serbian|and|makes|little|attempt|to|give|voice|to|the|other|side|. A|lack|of|thesis|makes|Maryam|,|in|the|end|,|play|out|with|the|intellectual|and|emotional|impact|of|an|after-school|special|. Without|Shakespeare|'s|eloquent|language|,|the|update|is|dreary|and|sluggish|. If|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|.|' During|The|Tuxedo|'s|90|minutes|of|screen|time|,|there|is|n't|one|true|`|Chan|moment|'|. Bisset|delivers|a|game|performance|,|but|she|is|unable|to|save|the|movie|. Watching|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|. The|most|anti-human|big|studio|picture|since|3000|Miles|to|Graceland|. The|film|can|depress|you|about|life|itself|. I|'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é|. The|acting|is|fine|but|the|script|is|about|as|interesting|as|a|recording|of|conversations|at|the|Wal-Mart|checkout|line|. Its|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|. The|plot|plummets|into|a|comedy|graveyard|before|Janice|comes|racing|to|the|rescue|in|the|final|reel|. Sometimes|there|are|very|,|very|good|reasons|for|certain|movies|to|be|sealed|in|a|jar|and|left|on|a|remote|shelf|indefinitely|. At|90|minutes|this|movie|is|short|,|but|it|feels|much|longer|. Here|'s|my|advice|,|Kev|. Start|reading|your|scripts|before|signing|that|dotted|line|. An|alternately|raucous|and|sappy|ethnic|sitcom|...|you|'d|be|wise|to|send|your|regrets|. An|ugly-duckling|tale|so|hideously|and|clumsily|told|it|feels|accidental|. Unfortunately|,|it|'s|also|not|very|good|. Especially|compared|with|the|television|series|that|inspired|the|movie|. It|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|. Glazed|with|a|tawdry|B-movie|scum|. This|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|. It|winds|up|moving|in|many|directions|as|it|searches|(|vainly|,|I|think|)|for|something|fresh|to|say|. All|in|all|,|Road|to|Perdition|is|more|in|love|with|strangeness|than|excellence|. A|big|fat|pain|. A|mimetic|approximation|of|better|films|like|Contempt|and|8 1\/2|. Unintelligible|,|poorly|acted|,|brain-slappingly|bad|,|Harvard|Man|is|ludicrous|enough|that|it|could|become|a|cult|classic|. Watching|The|Powerpuff|Girls|Movie|,|my|mind|kept|returning|to|one|anecdote|for|comparison|:|the|cartoon|in|Japan|that|gave|people|seizures|. An|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|. To|build|a|feel-good|fantasy|around|a|vain|dictator-madman|is|off-putting|,|to|say|the|least|,|not|to|mention|inappropriate|and|wildly|undeserved|. With|the|cheesiest|monsters|this|side|of|a|horror|spoof|,|which|They|is|n't|,|it|is|more|likely|to|induce|sleep|than|fright|. Mild|,|meandering|teen|flick|. Though|its|atmosphere|is|intriguing|...|the|drama|is|finally|too|predictable|to|leave|much|of|an|impression|. Though|this|rude|and|crude|film|does|deliver|a|few|gut-busting|laughs|,|its|digs|at|modern|society|are|all|things|we|'ve|seen|before|. Although|it|tries|to|be|much|more|,|it|'s|really|just|another|Major|League|. Astonishing|is|n'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|. One|thing|is|for|sure|:|This|movie|does|not|tell|you|a|whole|lot|about|Lily|Chou-Chou|. With|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|. To|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|. Cuba|Gooding|Jr.|valiantly|mugs|his|way|through|Snow|Dogs|,|but|even|his|boisterous|energy|fails|to|spark|this|leaden|comedy|. Diane|Lane|'s|sophisticated|performance|ca|n't|rescue|Adrian|Lyne|'s|Unfaithful|from|its|sleazy|moralizing|. Not|at|all|clear|what|it|'s|trying|to|say|and|even|if|it|were|--|I|doubt|it|would|be|all|that|interesting|. (|Swimfan|)|falls|victim|to|sloppy|plotting|,|an|insultingly|unbelievable|final|act|and|a|villainess|who|is|too|crazy|to|be|interesting|. This|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|. Silly|,|loud|and|goofy|. Why|spend|$|9|on|the|same|stuff|you|can|get|for|a|buck|or|so|in|that|greasy|little|vidgame|pit|in|the|theater|lobby|? The|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|. The|basic|premise|is|intriguing|but|quickly|becomes|distasteful|and|downright|creepy|. The|Pool|drowned|me|in|boredom|. It|'s|like|an|all-star|salute|to|Disney|'s|cheesy|commercialism|. It|'s|hard|to|imagine|any|recent|film|,|independent|or|otherwise|,|that|makes|as|much|of|a|mess|as|this|one|. Some|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|. There|'s|an|excellent|90-minute|film|here|;|unfortunately|,|it|runs|for|170|. As|saccharine|movies|go|,|this|is|likely|to|cause|massive|cardiac|arrest|if|taken|in|large|doses|. Die|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|. As|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|. The|mystery|of|Enigma|is|how|a|rich|historical|subject|,|combined|with|so|much|first-rate|talent|...|could|have|yielded|such|a|flat|,|plodding|picture|. It|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|. The|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|. It|'s|not|only|dull|because|we|'ve|seen|(|Eddie|)|Murphy|do|the|genial-rogue|shtick|to|death|,|but|because|the|plot|is|equally|hackneyed|. Avary|'s|film|never|quite|emerges|from|the|shadow|of|Ellis|'|book|. A|poorly|scripted|,|preachy|fable|that|forgets|about|unfolding|a|coherent|,|believable|story|in|its|zeal|to|spread|propaganda|. While|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|. Woo|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|? It|'s|sincere|to|a|fault|,|but|,|unfortunately|,|not|very|compelling|or|much|fun|. ...|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|. This|follow-up|seems|so|similar|to|the|1953|Disney|classic|that|it|makes|one|long|for|a|geriatric|Peter|. Why|,|you|may|ask|,|why|should|you|buy|the|movie|milk|when|the|TV|cow|is|free|? There|'s|no|good|answer|to|that|one|. This|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|. A|muddled|limp|biscuit|of|a|movie|,|a|vampire|soap|opera|that|does|n't|make|much|sense|even|on|its|own|terms|. There|'s|the|plot|,|and|a|maddeningly|insistent|and|repetitive|piano|score|that|made|me|want|to|scream|. This|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|. This|is|amusing|for|about|three|minutes|. Klein|,|charming|in|comedies|like|American|Pie|and|dead-on|in|Election|,|delivers|one|of|the|saddest|action|hero|performances|ever|witnessed|. It|'s|rare|to|see|a|movie|that|takes|such|a|speedy|swan|dive|from|``|promising|''|to|``|interesting|''|to|``|familiar|''|before|landing|squarely|on|``|stupid|''|. This|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|. The|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|. There|are|few|things|more|frustrating|to|a|film|buff|than|seeing|an|otherwise|good|movie|marred|beyond|redemption|by|a|disastrous|ending|. It|wo|n'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|. Looks|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|. Given|too|much|time|to|consider|the|looseness|of|the|piece|,|the|picture|begins|to|resemble|the|shapeless|,|grasping|actors|'|workshop|that|it|is|. They|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|. Just|because|A|Walk|to|Remember|is|shrewd|enough|to|activate|girlish|tear|ducts|does|n't|mean|it|'s|good|enough|for|our|girls|. (|Carvey|'s|)|characters|are|both|overplayed|and|exaggerated|,|but|then|again|,|subtlety|has|never|been|his|trademark|. It|'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|. This|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|. Brown|'s|saga|,|like|many|before|his|,|makes|for|snappy|prose|but|a|stumblebum|of|a|movie|. The|boys|'|sparring|,|like|the|succession|of|blows|dumped|on|Guei|,|wears|down|the|story|'s|more|cerebral|,|and|likable|,|plot|elements|. The|script|by|Vincent|R.|Nebrida|...|tries|to|cram|too|many|ingredients|into|one|small|pot|. The|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|. Oedekerk|mugs|mercilessly|,|and|the|genuinely|funny|jokes|are|few|and|far|between|. Since|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|. Only|those|most|addicted|to|film|violence|in|all|its|forms|will|find|anything|here|to|appreciate|. Cold|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|. Every|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|! It|'s|not|difficult|to|spot|the|culprit|early-on|in|this|predictable|thriller|. ...|a|mostly|boring|affair|with|a|confusing|sudden|finale|that|'s|likely|to|irk|viewers|. The|trappings|of|I|Spy|are|so|familiar|you|might|as|well|be|watching|a|rerun|. What|starts|off|as|a|potentially|incredibly|twisting|mystery|becomes|simply|a|monster|chase|film|. In|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|. It|is|messy|,|uncouth|,|incomprehensible|,|vicious|and|absurd|. Really|does|feel|like|a|short|stretched|out|to|feature|length|. Hampered|--|no|,|paralyzed|--|by|a|self-indulgent|script|...|that|aims|for|poetry|and|ends|up|sounding|like|satire|. Cheap|,|vulgar|dialogue|and|a|plot|that|crawls|along|at|a|snail|'s|pace|. And|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|! Directed|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|. It|'s|a|very|tasteful|rock|and|roll|movie|. You|could|put|it|on|a|coffee|table|anywhere|. The|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|. An|infuriating|film|. Just|when|you|think|you|are|making|sense|of|it|,|something|happens|that|tells|you|there|is|no|sense|. The|entire|movie|is|so|formulaic|and|forgettable|that|it|'s|hardly|over|before|it|begins|to|fade|from|memory|. The|setting|turns|out|to|be|more|interesting|than|any|of|the|character|dramas|,|which|never|reach|satisfying|conclusions|. As|an|entertainment|destination|for|the|general|public|,|Kung|Pow|sets|a|new|benchmark|for|lameness|. This|misty-eyed|Southern|nostalgia|piece|,|in|treading|the|line|between|sappy|and|sanguine|,|winds|up|mired|in|tear-drenched|quicksand|. As|pure|over-the-top|trash|,|any|John|Waters|movie|has|it|beat|by|a|country|mile|. Wendigo|wants|to|be|a|monster|movie|for|the|art-house|crowd|,|but|it|falls|into|the|trap|of|pretention|almost|every|time|. Bigelow|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|. This|film|biggest|problem|? No|laughs|. Less-than-compelling|documentary|of|a|Yiddish|theater|clan|. That|the|Chuck|Norris|``|grenade|gag|''|occurs|about|7|times|during|Windtalkers|is|a|good|indication|of|how|serious-minded|the|film|is|. Viewers|are|asked|so|often|to|suspend|belief|that|were|it|not|for|Holm|'s|performance|,|the|film|would|be|a|total|washout|. It|'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|. I|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|... Everybody|loves|a|David|and|Goliath|story|,|and|this|one|is|told|almost|entirely|from|David|'s|point|of|view|. Throw|Smoochy|from|the|train|! Eventually|,|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|. Irwin|and|his|director|never|come|up|with|an|adequate|reason|why|we|should|pay|money|for|what|we|can|get|on|television|for|free|. A|light|,|engaging|comedy|that|fumbles|away|almost|all|of|its|accumulated|enjoyment|with|a|crucial|third|act|miscalculation|. Cedar|somewhat|defuses|this|provocative|theme|by|submerging|it|in|a|hoary|love|triangle|. To|paraphrase|a|line|from|another|Dickens|'|novel|,|Nicholas|Nickleby|is|too|much|like|a|fragment|of|an|underdone|potato|. The|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|. The|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|. An|extremely|unpleasant|film|. A|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|. A|sincere|but|dramatically|conflicted|gay|coming-of-age|tale|. Wait|for|it|to|hit|cable|. Ultimately|feels|like|just|one|more|in|the|long|line|of|films|this|year|about|the|business|of|making|movies|. Nothing|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|. 77|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|. The|one|not-so-small|problem|with|Expecting|is|that|the|entire|exercise|has|no|real|point|. A|movie|you|observe|,|rather|than|one|you|enter|into|. (|At|least|)|Moore|is|a|real|charmer|. John|Carlen|'s|script|is|full|of|unhappy|,|two-dimensional|characters|who|are|anything|but|compelling|. LaBute|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|. The|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|. Stale|first|act|,|Scrooge|story|,|blatant|product|placement|,|some|very|good|comedic|songs|,|strong|finish|,|dumb|fart|jokes|. Unsurprisingly|,|the|way|this|all|works|out|makes|the|women|look|more|like|stereotypical|caretakers|and|moral|teachers|,|instead|of|serious|athletes|. A|film|that|loses|sight|of|its|own|story|. Adam|Sandler|'s|Eight|Crazy|Nights|grows|on|you|--|like|a|rash|. The|big-screen|Scooby|makes|the|silly|original|cartoon|seem|smart|and|well-crafted|in|comparison|. Few|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|. Gets|better|after|Foster|leaves|that|little|room|. The|movie|is|as|padded|as|Allen|'s|jelly|belly|. Resident|Evil|is|n't|a|product|of|its|cinematic|predecessors|so|much|as|an|MTV|,|sugar|hysteria|,|and|PlayStation|cocktail|. A|rather|average|action|film|that|benefits|from|several|funny|moments|supplied|by|Epps|. ...|unspeakably|,|unbearably|dull|,|featuring|reams|of|flatly|delivered|dialogue|and|a|heroine|who|comes|across|as|both|shallow|and|dim-witted|. Resembles|a|soft|porn|Brian|De|Palma|pastiche|. Bluto|Blutarsky|,|we|miss|you|. Innocuous|enough|to|make|even|Jean-Claude|Van|Damme|look|good|. It|'s|a|glorified|sitcom|,|and|a|long|,|unfunny|one|at|that|. Woody|Allen|can|write|and|deliver|a|one|liner|as|well|as|anybody|. But|I|had|a|lot|of|problems|with|this|movie|. Devoid|of|any|of|the|qualities|that|made|the|first|film|so|special|. All|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|. Plotless|collection|of|moronic|stunts|is|by|far|the|worst|movie|of|the|year|. However|sincere|it|may|be|,|The|Rising|Place|never|quite|justifies|its|own|existence|. Parker|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|. It|'s|sort|of|a|21st|century|morality|play|with|a|Latino|hip|hop|beat|. But|the|second|half|of|the|movie|really|goes|downhill|. Paxton|'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|. The|script|becomes|lifeless|and|falls|apart|like|a|cheap|lawn|chair|. The|script|falls|back|on|too|many|tried-and-true|shenanigans|that|hardly|distinguish|it|from|the|next|teen|comedy|. The|film|starts|promisingly|,|but|the|ending|is|all|too|predictable|and|far|too|cliched|to|really|work|. Let|'s|issue|a|moratorium|,|effective|immediately|,|on|treacly|films|about|inspirational|prep-school|professors|and|the|children|they|so|heartwarmingly|motivate|. It|'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|. Alternately|frustrating|and|rewarding|. It|'s|impossible|to|even|categorize|this|as|a|smutty|guilty|pleasure|. Despite|suffering|a|sense-of-humour|failure|,|The|Man|Who|Wrote|Rocky|does|not|deserve|to|go|down|with|a|ship|as|leaky|as|this|. Swinging|,|the|film|makes|it|seem|,|is|not|a|hobby|that|attracts|the|young|and|fit|. Or|intelligent|. The|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|. See|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|. Suffers|from|over-familiarity|since|hit-hungry|British|filmmakers|have|strip-mined|the|Monty|formula|mercilessly|since|1997|. There|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|. Yes|,|I|have|given|this|movie|a|rating|of|zero|. But|fans|of|the|show|should|not|consider|this|a|diss|. Consider|it|`|perfection|.|' The|cumulative|effect|of|the|movie|is|repulsive|and|depressing|. Children|and|adults|enamored|of|all|things|Pokemon|wo|n't|be|disappointed|. I|do|n't|even|care|that|there|'s|no|plot|in|this|Antonio|Banderas-Lucy|Liu|faceoff|. It|'s|still|terrible|! Children|of|the|Century|,|though|well|dressed|and|well|made|,|ultimately|falls|prey|to|the|contradiction|that|afflicts|so|many|movies|about|writers|. It|'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|. Peralta|'s|mythmaking|could|have|used|some|informed|,|adult|hindsight|. A|close-to-solid|espionage|thriller|with|the|misfortune|of|being|released|a|few|decades|too|late|. Cloaks|a|familiar|anti-feminist|equation|(|career|-|kids|=|misery|)|in|tiresome|romantic-comedy|duds|. The|Good|Girl|is|a|film|in|which|the|talent|is|undeniable|but|the|results|are|underwhelming|. Just|a|collection|of|this|and|that|--|whatever|fills|time|--|with|no|unified|whole|. The|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|. Only|about|as|sexy|and|dangerous|as|an|actress|in|a|role|that|reminds|at|every|turn|of|Elizabeth|Berkley|'s|flopping|dolphin-gasm|. Kids|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|. Mr.|Soderbergh|'s|direction|and|visual|style|struck|me|as|unusually|and|unimpressively|fussy|and|pretentious|. Do|you|say|``|hi|''|to|your|lover|when|you|wake|up|in|the|morning|? It|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 Director|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|. `|Yes|,|that|'s|right|:|it|'s|Forrest|Gump|,|Angel|Of|Death|.|' A|wildly|erratic|drama|with|sequences|that|make|you|wince|in|embarrassment|and|others|,|thanks|to|the|actors|,|that|are|quite|touching|. While|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|. About|as|enjoyable|,|I|would|imagine|,|as|searching|for|a|quarter|in|a|giant|pile|of|elephant|feces|...|positively|dreadful|. A|generic|international|version|of|a|typical|American|horror|film|. ...|while|certainly|clever|in|spots|,|this|too-long|,|spoofy|update|of|Shakespeare|'s|Macbeth|does|n't|sustain|a|high|enough|level|of|invention|. Lucas|has|in|fact|come|closer|than|anyone|could|desire|to|the|cheap|,|graceless|,|hackneyed|sci-fi|serials|of|the|'30s|and|'40s|. There|'s|a|lot|of|good|material|here|,|but|there|'s|also|a|lot|of|redundancy|and|unsuccessful|crudeness|accompanying|it|. Absurdities|and|clichés|accumulate|like|lint|in|a|fat|man|'s|navel|. If|you|think|it|'s|a|riot|to|see|Rob|Schneider|in|a|young|woman|'s|clothes|,|then|you|'ll|enjoy|The|Hot|Chick|. The|sheer|dumbness|of|the|plot|(|other|than|its|one|good|idea|)|and|the|movie|'s|inescapable|air|of|sleaziness|get|you|down|. Strangely|comes|off|as|a|kingdom|more|mild|than|wild|. The|next|big|thing|'s|not-so-big|(|and|not-so-hot|)|directorial|debut|. Yet|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|... Bond-inspired|? Certainly|. Likely|to|have|decades|of|life|as|a|classic|movie|franchise|? Let|'s|hope|not|. This|flat|run|at|a|hip-hop|Tootsie|is|so|poorly|paced|you|could|fit|all|of|Pootie|Tang|in|between|its|punchlines|. Davis|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|. Surprisingly|,|considering|that|Baird|is|a|former|film|editor|,|the|movie|is|rather|choppy|. None|of|this|is|very|original|,|and|it|is|n't|particularly|funny|. ...|a|bland|murder-on-campus|yawner|. A|humorless|journey|into|a|philosophical|void|. These|two|are|generating|about|as|much|chemistry|as|an|Iraqi|factory|poised|to|receive|a|UN|inspector|. Just|as|the|lousy|Tarantino|imitations|have|subsided|,|here|comes|the|first|lousy|Guy|Ritchie|imitation|. A|passable|romantic|comedy|,|in|need|of|another|couple|of|passes|through|the|word|processor|. The|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|. shows|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|. Ultimately|...|the|movie|is|too|heady|for|children|,|and|too|preachy|for|adults|. It|'s|just|a|little|too|self-satisfied|. Clever|but|not|especially|compelling|. McKay|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|. A|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|. LaBute|was|more|fun|when|his|characters|were|torturing|each|other|psychologically|and|talking|about|their|genitals|in|public|. The|movie|weighs|no|more|than|a|glass|of|flat|champagne|. The|problem|with|ANTWONE|FISHER|is|that|it|has|a|screenplay|written|by|Antwone|Fisher|based|on|the|book|by|Antwone|Fisher|. Alarms|for|Duvall|'s|throbbing|sincerity|and|his|elderly|propensity|for|patting|people|while|he|talks|. What|little|grace|(|Rifkin|'s|)|tale|of|precarious|skid-row|dignity|achieves|is|pushed|into|the|margins|by|predictable|plotting|and|tiresome|histrionics|. Tries|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|. Unfortunately|,|Kapur|modernizes|A.E.W.|Mason|'s|story|to|suit|the|sensibilities|of|a|young|American|,|a|decision|that|plucks|``|The|Four|Feathers|''|bare|. ...|what|a|banal|bore|the|preachy|Circuit|turns|out|to|be Falsehoods|pile|up|,|undermining|the|movie|'s|reality|and|stifling|its|creator|'s|comic|voice|. A|mechanical|action-comedy|whose|seeming|purpose|is|to|market|the|charismatic|Jackie|Chan|to|even|younger|audiences|. One|of|the|most|incoherent|features|in|recent|memory|. Low|rent|from|frame|one|. Eight|Legged|Freaks|? No|big|hairy|deal|. The|issues|are|presented|in|such|a|lousy|way|,|complete|with|some|of|the|year|'s|(|unintentionally|)|funniest|moments|,|that|it|'s|impossible|to|care|. Laggard|drama|wending|its|way|to|an|uninspired|philosophical|epiphany|. The|respective|charms|of|Sandra|Bullock|and|Hugh|Grant|have|worn|threadbare|. `|This|movie|sucks|.|' None|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|. A|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|. Bad|in|such|a|bizarre|way|that|it|'s|almost|worth|seeing|,|if|only|to|witness|the|crazy|confluence|of|purpose|and|taste|. There|'s|more|repetition|than|creativity|throughout|the|movie|. Hugh|Grant|'s|act|is|so|consuming|that|sometimes|it|'s|difficult|to|tell|who|the|other|actors|in|the|movie|are|. Although|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|. I|'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|. What|we|get|...|is|Caddyshack|crossed|with|the|Loyal|Order|of|Raccoons|. The|jokes|are|flat|,|and|the|action|looks|fake|. When|a|movie|asks|you|to|feel|sorry|for|Mick|Jagger|'s|sex|life|,|it|already|has|one|strike|against|it|. There|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|. ...|hokey|art|house|pretension|. ...|a|weak|and|ineffective|ghost|story|without|a|conclusion|or|pay|off|. Gussied|up|with|so|many|distracting|special|effects|and|visual|party|tricks|that|it|'s|not|clear|whether|we|'re|supposed|to|shriek|or|laugh|. Plodding|,|poorly|written|,|murky|and|weakly|acted|,|the|picture|feels|as|if|everyone|making|it|lost|their|movie|mojo|. This|is|a|fudged|opportunity|of|gigantic|proportions|--|a|lunar|mission|with|no|signs|of|life|. A|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|. Soderbergh|seems|capable|only|of|delivering|artfully|lighted|,|earnest|inquiries|that|lack|the|kind|of|genuine|depth|that|would|make|them|redeemable|. The|only|thing|that|distinguishes|a|Randall|Wallace|film|from|any|other|is|the|fact|that|there|is|nothing|distinguishing|in|a|Randall|Wallace|film|. Silly|stuff|,|all|mixed|up|together|like|a|term|paper|from|a|kid|who|ca|n't|quite|distinguish|one|sci-fi|work|from|another|. There|is|so|much|plodding|sensitivity|. The|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|. ...|too|sappy|for|its|own|good|. Circuit|queens|wo|n't|learn|a|thing|,|they|'ll|be|too|busy|cursing|the|film|'s|strategically|placed|white|sheets|. As|an|actress|,|Madonna|is|one|helluva|singer|. As|the|Mediterranean|sparkles|,|`|Swept|Away|'|sinks|. Every|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|. Expanded|to|65|minutes|for|theatrical|release|,|it|still|feels|somewhat|unfinished|. It|all|looks|and|plays|like|a|$|40|million|version|of|a|game|you|'re|more|likely|to|enjoy|on|a|computer|. (|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|. Feels|shrill|,|simple|and|soapy|. Adults|,|other|than|the|parents|...|will|be|hard|pressed|to|succumb|to|the|call|of|the|wild|. Brady|achieves|the|remarkable|feat|of|squandering|a|topnotch|foursome|of|actors|...|by|shoving|them|into|every|clichéd|white-trash|situation|imaginable|. In|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|. No|amount|of|blood|and|disintegrating|vampire|cadavers|can|obscure|this|movie|'s|lack|of|ideas|. A|direct-to-void|release|,|heading|nowhere|. Typical|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|. Below|is|well|below|expectations|. At|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|. ...|standard|guns|versus|martial|arts|cliche|with|little|new|added|. Empire|ca|n't|make|up|its|mind|whether|it|wants|to|be|a|gangster|flick|or|an|art|film|. It|does|n't|work|as|either|. Given|the|fact|that|virtually|no|one|is|bound|to|show|up|at|theatres|for|it|,|the|project|should|have|been|made|for|the|tube|. Possession|is|in|the|end|an|honorable|,|interesting|failure|. It|falls|far|short|of|poetry|,|but|it|'s|not|bad|prose|. Jonathan|Parker|'s|Bartleby|should|have|been|the|be-all-end-all|of|the|modern-office|anomie|films|. There|may|have|been|a|good|film|in|``|Trouble|Every|Day|,|''|but|it|is|not|what|is|on|the|screen|. Unfortunately|,|Carvey|'s|rubber-face|routine|is|no|match|for|the|insipid|script|he|has|crafted|with|Harris|Goldberg|. Viewed|as|a|comedy|,|a|romance|,|a|fairy|tale|,|or|a|drama|,|there|'s|nothing|remotely|triumphant|about|this|motion|picture|. There|'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|. The|Master|of|Disguise|is|funny|--|not|``|ha|ha|''|funny|,|``|dead|circus|performer|''|funny|. And|for|all|the|wrong|reasons|besides|. A|zippy|96|minutes|of|mediocre|special|effects|,|hoary|dialogue|,|fluxing|accents|,|and|--|worst|of|all|--|silly-looking|Morlocks|. A|75-minute|sample|of|puerile|rubbish|that|is|listless|,|witless|,|and|devoid|of|anything|resembling|humor|. You|leave|feeling|like|you|'ve|endured|a|long|workout|without|your|pulse|ever|racing|. The|waterlogged|script|plumbs|uncharted|depths|of|stupidity|,|incoherence|and|sub-sophomoric|sexual|banter|. With|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|. It|'s|the|type|of|stunt|the|Academy|loves|:|a|powerful|political|message|stuffed|into|an|otherwise|mediocre|film|. In|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|. So|mind-numbingly|awful|that|you|hope|Britney|wo|n't|do|it|one|more|time|,|as|far|as|movies|are|concerned|. The|images|are|usually|abbreviated|in|favor|of|mushy|obviousness|and|telegraphed|pathos|,|particularly|where|Whitaker|'s|misfit|artist|is|concerned|. If|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|. Sets|animation|back|30|years|,|musicals|back|40|years|and|Judaism|back|at|least|50|. Weirdly|,|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|. Might|best|be|enjoyed|as|a|daytime|soaper|. eventually|arrives|at|its|heart|,|as|simple|self-reflection|meditation|. A|showcase|for|both|the|scenic|splendor|of|the|mountains|and|for|legendary|actor|Michel|Serrault|,|the|film|is|less|successful|on|other|levels|. Boy|oh|boy|,|it|'s|a|howler|. A|few|pieces|of|the|film|buzz|and|whir|;|very|little|of|it|actually|clicks|. The|thing|just|never|gets|off|the|ground|. ...|contains|very|few|laughs|and|even|less|surprises|. The|actors|must|indeed|be|good|to|recite|some|of|this|laughable|dialogue|with|a|straight|face|. Most|of|the|storylines|feel|like|time|fillers|between|surf|shots|. The|movie|is|n't|horrible|,|but|you|can|see|mediocre|cresting|on|the|next|wave|. However|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|. There|'s|nothing|remotely|topical|or|sexy|here|. The|Tuxedo|was|n't|just|bad|;|it|was|,|as|my|friend|David|Cross|would|call|it|,|`|Hungry-Man|portions|of|bad|'|. Blue|Crush|is|so|prolonged|and|boring|it|is|n't|even|close|to|being|the|barn-burningly|bad|movie|it|promised|it|would|be|. The|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|. While|Van|Wilder|may|not|be|the|worst|National|Lampoon|film|,|it|'s|far|from|being|this|generation|'s|Animal|House|. So|devoid|of|pleasure|or|sensuality|that|it|can|not|even|be|dubbed|hedonistic|. Reeks|of|rot|and|hack|work|from|start|to|finish|. An|exhausting|family|drama|about|a|porcelain|empire|and|just|as|hard|a|flick|as|its|subject|matter|. Woody|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|. The|bland|outweighs|the|nifty|,|and|Cletis|Tout|never|becomes|the|clever|crime|comedy|it|thinks|it|is|. It|'s|such|a|mechanical|endeavor|(|that|)|it|never|bothers|to|question|why|somebody|might|devote|time|to|see|it|. The|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|. If|the|predictability|of|bland|comfort|food|appeals|to|you|,|then|the|film|is|a|pleasant|enough|dish|. Ultimately|,|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 A|seriously|bad|film|with|seriously|warped|logic|by|writer-director|Kurt|Wimmer|at|the|screenplay|level|. A|pleasant|and|engaging|enough|sit|,|but|in|trying|to|have|the|best|of|both|worlds|it|ends|up|falling|short|as|a|whole|. Its|plot|and|animation|offer|daytime|TV|serviceability|,|but|little|more|. A|tired|,|unimaginative|and|derivative|variation|of|that|already-shallow|genre|. Human|Nature|,|in|short|,|is|n't|nearly|as|funny|as|it|thinks|it|is|;|neither|is|it|as|smart|. A|film|with|a|great|premise|but|only|a|great|premise|. Instead|of|building|to|a|laugh|riot|we|are|left|with|a|handful|of|disparate|funny|moments|of|no|real|consequence|. Kirshner|and|Monroe|seem|to|be|in|a|contest|to|see|who|can|out-bad-act|the|other|. (|Kirshner|wins|,|but|it|'s|close|.|) A|lame|romantic|comedy|about|an|unsympathetic|character|and|someone|who|would|not|likely|be|so|stupid|as|to|get|involved|with|her|. What|started|out|as|a|taut|contest|of|wills|between|Bacon|and|Theron|,|deteriorates|into|a|protracted|and|borderline|silly|chase|sequence|. (|Sam|'s|)|self-flagellation|is|more|depressing|than|entertaining|. An|ugly|,|pointless|,|stupid|movie|. Simply|put|,|there|should|have|been|a|more|compelling|excuse|to|pair|Susan|Sarandon|and|Goldie|Hawn|. The|Master|of|Disguise|represents|Adam|Sandler|'s|latest|attempt|to|dumb|down|the|universe|. This|is|an|ungainly|movie|,|ill-fitting|,|with|its|elbows|sticking|out|where|the|knees|should|be|. Too|silly|to|take|seriously|. The|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|. Everything|'s|serious|,|poetic|,|earnest|and|--|sadly|--|dull|. I|like|it|. No|,|I|hate|it|. No|,|I|love|it|...|hell|,|I|dunno|. This|mess|of|a|movie|is|nothing|short|of|a|travesty|of|a|transvestite|comedy|. It|'s|clotted|with|heavy-handed|symbolism|,|dime-store|psychology|and|endless|scenic|shots|that|make|105|minutes|seem|twice|as|long|. A|fifty|car|pileup|of|cliches|. It|'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|. What|ultimately|makes|Windtalkers|a|disappointment|is|the|superficial|way|it|deals|with|its|story|. As|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|. A|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|. It|'s|not|hateful|. It|'s|simply|stupid|,|irrelevant|and|deeply|,|truly|,|bottomlessly|cynical|. Possibly|not|since|Grumpy|Old|Men|have|I|heard|a|film|so|solidly|connect|with|one|demographic|while|striking|out|with|another|. The|drama|was|so|uninspiring|that|even|a|story|immersed|in|love|,|lust|,|and|sin|could|n't|keep|my|attention|. A|rather|tired|exercise|in|nostalgia|. The|misery|of|these|people|becomes|just|another|voyeuristic|spectacle|,|to|be|consumed|and|forgotten|. Some|Body|often|looks|like|an|episode|of|the|TV|show|Blind|Date|,|only|less|technically|proficient|and|without|the|pop-up|comments|. Bad|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|. Predecessors|The|Mummy|and|The|Mummy|Returns|stand|as|intellectual|masterpieces|next|to|The|Scorpion|King|. A|markedly|inactive|film|,|City|is|conversational|bordering|on|confessional|. While|kids|will|probably|eat|the|whole|thing|up|,|most|adults|will|be|way|ahead|of|the|plot|. Despite|an|impressive|roster|of|stars|and|direction|from|Kathryn|Bigelow|,|The|Weight|of|Water|is|oppressively|heavy|. We|'ve|liked|Klein|'s|other|work|but|Rollerball|left|us|cold|. They|were|afraid|to|show|this|movie|to|reviewers|before|its|opening|,|afraid|of|the|bad|reviews|they|thought|they|'d|earn|. They|were|right|. It|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|. Offers|no|new|insight|on|the|matter|,|nor|do|its|characters|exactly|spring|to|life|. Nohe|has|made|a|decent|`|intro|'|documentary|,|but|he|feels|like|a|spectator|and|not|a|participant|. Apparently|designed|as|a|reverie|about|memory|and|regret|,|but|the|only|thing|you|'ll|regret|is|remembering|the|experience|of|sitting|through|it|. A|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|. Guy|gets|girl|,|guy|loses|girl|,|audience|falls|asleep|. Too|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|. Stirs|potentially|enticing|ingredients|into|an|uneasy|blend|of|Ghost|and|Close|Encounters|of|the|Third|Kind|. The|weird|thing|about|The|Santa|Clause|2|,|purportedly|a|children|'s|movie|,|is|that|there|is|nothing|in|it|to|engage|children|emotionally|. It|'s|pretentious|in|a|way|that|verges|on|the|amateurish|. Contains|the|humor|,|characterization|,|poignancy|,|and|intelligence|of|a|bad|sitcom|. It|does|n't|matter|that|the|film|is|less|than|90|minutes|. It|still|feels|like|a|prison|stretch|. Partly|a|schmaltzy|,|by-the-numbers|romantic|comedy|,|partly|a|shallow|rumination|on|the|emptiness|of|success|--|and|entirely|soulless|. Ong|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|. The|overall|feel|is|not|unlike|watching|a|glorified|episode|of|``|7th|Heaven|.|'' Just|a|Kiss|is|a|just|a|waste|. ...|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|. Frankly|,|it|'s|kind|of|insulting|,|both|to|men|and|women|. And|it|'s|not|that|funny|--|which|is|just|generally|insulting|. As|if|Drop|Dead|Gorgeous|was|n't|enough|,|this|equally|derisive|clunker|is|fixated|on|the|spectacle|of|small-town|competition|. A|wretched|movie|that|reduces|the|Second|World|War|to|one|man|'s|quest|to|find|an|old|flame|. This|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|. It|'s|better|than|mid-range|Steven|Seagal|,|but|not|as|sharp|as|Jet|Li|on|rollerblades|. There|'s|a|reason|why|halftime|is|only|fifteen|minutes|long|. The|talk-heavy|film|plays|like|one|of|Robert|Altman|'s|lesser|works|. As|happily|glib|and|vicious|as|its|characters|. One|of|those|films|that|started|with|a|great|premise|and|then|just|fell|apart|. No|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|. (|MacDowell|)|ventures|beyond|her|abilities|several|times|here|and|reveals|how|bad|an|actress|she|is|. I|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|. Talky|,|artificial|and|opaque|...|an|interesting|technical|exercise|,|but|a|tedious|picture|. Kurys|never|shows|why|,|of|all|the|period|'s|volatile|romantic|lives|,|Sand|and|Musset|are|worth|particular|attention|. Almost|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|. It|'s|easy|to|love|Robin|Tunney|--|she|'s|pretty|and|she|can|act|--|but|it|gets|harder|and|harder|to|understand|her|choices|. If|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|. The|new|film|of|Anton|Chekhov|'s|The|Cherry|Orchard|puts|the|`|ick|'|in|`|classic|.|' Has|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|. If|I|want|music|,|I|'ll|buy|the|soundtrack|. If|I|want|a|real|movie|,|I|'ll|buy|the|Criterion|DVD|. An|unremarkable|,|modern|action\/comedy|buddy|movie|whose|only|nod|to|nostalgia|is|in|the|title|. Has|all|the|right|elements|but|completely|fails|to|gel|together|. Writer-director|Stephen|Gaghan|has|made|the|near-fatal|mistake|of|being|what|the|English|call|`|too|clever|by|half|.|' Seagal|ran|out|of|movies|years|ago|,|and|this|is|just|the|proof|. The|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|. An|awkwardly|garish|showcase|that|diverges|from|anything|remotely|probing|or|penetrating|. The|name|says|it|all|. Jackass|is|a|vulgar|and|cheap-looking|version|of|Candid|Camera|staged|for|the|Marquis|de|Sade|set|. Children|,|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|. Pleasant|but|not|more|than|recycled|jock|piffle|. ...|the|kind|of|movie|you|see|because|the|theater|has|air|conditioning|. With|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|. Hip-hop|prison|thriller|of|stupefying|absurdity|. An|uneven|mix|of|dark|satire|and|childhood|awakening|. aside|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|' A|perfectly|acceptable|,|perfectly|bland|,|competently|acted|but|by|no|means|scary|horror|movie|. The|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|. The|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|. Like|a|soft|drink|that|'s|been|sitting|open|too|long|:|it|'s|too|much|syrup|and|not|enough|fizz|. As|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|. There|are|some|fairly|unsettling|scenes|,|but|they|never|succeed|in|really|rattling|the|viewer|. The|Emperor|'s|Club|is|one|of|those|films|that|possesses|all|the|good|intentions|in|the|world|,|but|... In|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|.|' A|straight-ahead|thriller|that|never|rises|above|superficiality|. Glizty|but|formulaic|and|silly|...|Cagney|'s|`|top|of|the|world|'|has|been|replaced|by|the|bottom|of|the|barrel|. The|re|-|enactments|,|however|fascinating|they|may|be|as|history|,|are|too|crude|to|serve|the|work|especially|well|. Is|anyone|else|out|there|getting|tired|of|the|whole|slo-mo|,|double-pistoled|,|ballistic-pyrotechnic|Hong|Kong|action|aesthetic|? Once|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|. Serving|Sara|is|little|more|than|a|mall|movie|designed|to|kill|time|. Too|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|. A|well-made|but|emotionally|scattered|film|whose|hero|gives|his|heart|only|to|the|dog|. The|most|repugnant|adaptation|of|a|classic|text|since|Roland|Joffé|and|Demi|Moore|'s|The|Scarlet|Letter|. The|isolated|moments|of|creative|insanity|finally|are|lost|in|the|thin|soup|of|canned|humor|. As|a|movie|,|it|never|seems|fresh|and|vital|. It|never|plays|as|dramatic|even|when|dramatic|things|happen|to|people|. It|labours|as|storytelling|. The|Adventures|of|Pluto|Nash|is|a|whole|lot|of|nada|. A|really|good|premise|is|frittered|away|in|middle-of-the-road|blandness|. Lawrence|should|stick|to|his|day|job|. He|'s|a|better|actor|than|a|standup|comedian|. Despite|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 A|well|made|indieflick|in|need|of|some|trims|and|a|more|chemistry|between|its|stars|. I|never|thought|I|'d|say|this|,|but|I|'d|much|rather|watch|teens|poking|their|genitals|into|fruit|pies|! A|film|neither|bitter|nor|sweet|,|neither|romantic|nor|comedic|,|neither|warm|nor|fuzzy|. Tiresomely|derivative|and|hammily|acted|. We|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|. The|plot|grows|thin|soon|,|and|you|find|yourself|praying|for|a|quick|resolution|. Too|bad|Maggio|could|n't|come|up|with|a|better|script|. Much|of|the|cast|is|stiff|or|just|plain|bad|. Rice|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|. At|best|,|Cletis|Tout|might|inspire|a|trip|to|the|video|store|--|in|search|of|a|better|movie|experience|. Witless|,|pointless|,|tasteless|and|idiotic|. Not|really|a|thriller|so|much|as|a|movie|for|teens|to|laugh|,|groan|and|hiss|at|. As|plain|and|pedestrian|as|catsup|-- An|improvement|on|the|feeble|examples|of|big-screen|Poke-mania|that|have|preceded|it|. I|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|. Your|stomach|for|Heaven|depends|largely|on|your|appetite|for|canned|corn|. A|picture|as|erratic|as|its|central|character|. Whatever|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 The|package|in|which|this|fascinating|--|and|timely|--|content|comes|wrapped|is|disappointingly|generic|. Guys|say|mean|things|and|shoot|a|lot|of|bullets|. Some|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|. Wildly|incompetent|but|brilliantly|named|Half|Past|Dead|--|or|for|Seagal|pessimists|:|Totally|Past|His|Prime|. Just|another|combination|of|bad|animation|and|mindless|violence|...|lacking|the|slightest|bit|of|wit|or|charm|. All|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|. Much|like|its|easily|dismissive|take|on|the|upscale|lifestyle|,|there|is|n't|much|there|here|. The|film|ultimately|offers|nothing|more|than|people|in|an|urban|jungle|needing|other|people|to|survive|... For|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|. This|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|. A|bit|too|eager|to|please|. You|'d|be|hard|put|to|find|a|movie|character|more|unattractive|or|odorous|(|than|Leon|)|. Kapur|'s|contradictory|feelings|about|his|material|result|in|a|movie|that|works|against|itself|. ``|the|road|paved|with|good|intentions|leads|to|the|video|store|'' Animated|drivel|meant|to|enhance|the|self-image|of|drooling|idiots|. One|scene|after|another|in|this|supposedly|funny|movie|falls|to|the|floor|with|a|sickening|thud|. `|The|Château|is|never|quite|able|to|overcome|the|cultural|moat|surrounding|its|ludicrous|and|contrived|plot|.|' Meyjes|focuses|too|much|on|Max|when|he|should|be|filling|the|screen|with|this|tortured|,|dull|artist|and|monster-in-the|-|making|. Jacobi|,|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|. Crudup|'s|screen|presence|is|the|one|thing|that|holds|interest|in|the|midst|of|a|mushy|,|existential|exploration|of|why|men|leave|their|families|. There|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|. Despite|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|. An|incredibly|narrow|in-joke|targeted|to|the|tiniest|segment|of|an|already|obscure|demographic|. The|only|thing|I|laughed|at|were|the|people|who|paid|to|see|it|. All|of|the|elements|are|in|place|for|a|great|film|noir|,|but|director|George|Hickenlooper|'s|approach|to|the|material|is|too|upbeat|. The|hackneyed|story|about|an|affluent|damsel|in|distress|who|decides|to|fight|her|bully|of|a|husband|is|simply|too|overdone|. the|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|is|n't|back|at|Blockbuster|before|midnight|,|you|'re|going|to|face|frightening|late|fees|. O.K.|,|not|really|. Possibly|the|most|irresponsible|picture|ever|released|by|a|major|film|studio|. The|film|'s|overall|mood|and|focus|is|interesting|but|constantly|unfulfilling|. ...|a|cheap|,|ludicrous|attempt|at|serious|horror|. Those|of|you|who|are|not|an|eighth|grade|girl|will|most|likely|doze|off|during|this|one|. Befuddled|in|its|characterizations|as|it|begins|to|seem|as|long|as|the|two|year|affair|which|is|its|subject From|beginning|to|end|,|this|overheated|melodrama|plays|like|a|student|film|. The|movie|would|seem|less|of|a|trifle|if|Ms.|Sugarman|followed|through|on|her|defiance|of|the|saccharine|. It|'s|just|not|very|smart|. Like|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|. Imagine|(|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|. In|trying|to|be|daring|and|original|,|it|comes|off|as|only|occasionally|satirical|and|never|fresh|. 90|punitive|minutes|of|eardrum-dicing|gunplay|,|screeching-metal|smashups|,|and|flaccid|odd-couple|sniping|. Sadly|,|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|. Never|capitalizes|on|this|concept|and|opts|for|the|breezy|and|amateurish|feel|of|an|after|school|special|on|the|subject|of|tolerance|. After|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|. This|wretchedly|unfunny|wannabe|comedy|is|inane|and|awful|-|no|doubt|,|it|'s|the|worst|movie|I|'ve|seen|this|summer|. It|'s|drab|. It|'s|uninteresting|. It|squanders|Chan|'s|uniqueness|;|it|could|even|be|said|to|squander|Jennifer|Love|Hewitt|! The|movie|keeps|coming|back|to|the|achingly|unfunny|Phonce|and|his|several|silly|subplots|. This|tale|has|been|told|and|retold|;|the|races|and|rackets|change|,|but|the|song|remains|the|same|. A|surprisingly|flat|retread|,|hobbled|by|half-baked|setups|and|sluggish|pacing|. Forget|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|. A|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|. New|ways|of|describing|badness|need|to|be|invented|to|describe|exactly|how|bad|it|is|. Lots|of|effort|and|intelligence|are|on|display|but|in|execution|it|is|all|awkward|,|static|,|and|lifeless|rumblings|. When|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|. I|suspect|that|there|are|more|interesting|ways|of|dealing|with|the|subject|. The|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|. An|unintentional|parody|of|every|teen|movie|made|in|the|last|five|years|. Only|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|. For|all|its|violence|,|the|movie|is|remarkably|dull|with|only|Caine|making|much|of|an|impression|. No|matter|how|firmly|director|John|Stainton|has|his|tongue|in|his|cheek|,|the|fact|remains|that|a|wacky|concept|does|not|a|movie|make|. A|sub-formulaic|slap|in|the|face|to|seasonal|cheer|. The|action|is|reasonably|well-done|...|yet|story|,|character|and|comedy|bits|are|too|ragged|to|ever|fit|smoothly|together|. Several|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|. Hill|looks|to|be|going|through|the|motions|,|beginning|with|the|pale|script|. Howard|conjures|the|past|via|surrealist|flourishes|so|overwrought|you|'d|swear|he|just|stepped|out|of|a|Buñuel|retrospective|. The|best|thing|that|can|be|said|of|the|picture|is|that|it|does|have|a|few|cute|moments|. It|'s|not|a|bad|premise|,|just|a|bad|movie|. An|already|thin|story|boils|down|to|surviving|invaders|seeking|an|existent|anti-virus|. If|only|there|were|one|for|this|kind|of|movie|. By|the|time|the|surprise|ending|is|revealed|,|interest|can|not|be|revived|. The|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|. A|peculiar|misfire|that|even|Tunney|ca|n't|save|. Watching|Queen|of|the|Damned|is|like|reading|a|research|paper|,|with|special|effects|tossed|in|. I|ca|n't|remember|the|last|time|I|saw|worse|stunt|editing|or|cheaper|action|movie|production|values|than|in|Extreme|Ops|. Too|much|of|Nemesis|has|a|tired|,|talky|feel|. I|felt|trapped|and|with|no|obvious|escape|for|the|entire|100|minutes|. When|Mr.|Hundert|tells|us|in|his|narration|that|`|this|is|a|story|without|surprises|,|'|we|nod|in|agreement|. Leaves|us|wondering|less|about|its|ideas|and|more|about|its|characterization|of|Hitler|and|the|contrived|nature|of|its|provocative|conclusion|. It|is|that|rare|combination|of|bad|writing|,|bad|direction|and|bad|acting|--|the|trifecta|of|badness|. Each|scene|wreaks|of|routine|;|the|film|never|manages|to|generate|a|single|threat|of|suspense|. A|soulless|jumble|of|ineptly|assembled|cliches|and|pabulum|that|plays|like|a|95-minute|commercial|for|NBA|properties|. Borstal|Boy|represents|the|worst|kind|of|filmmaking|,|the|kind|that|pretends|to|be|passionate|and|truthful|but|is|really|frustratingly|timid|and|soggy|. The|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|. works|on|the|whodunit|level|as|its|larger|themes|get|lost|in|the|murk|of|its|own|making Crush|could|be|the|worst|film|a|man|has|made|about|women|since|Valley|of|the|Dolls|. 4Ever|has|the|same|sledgehammer|appeal|as|Pokemon|videos|,|but|it|breathes|more|on|the|big|screen|and|induces|headaches|more|slowly|. Feels|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|. Trailer|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|. Viewers|of|Barney|'s|crushingly|self-indulgent|spectacle|will|see|nothing|in|it|to|match|the|ordeal|of|sitting|through|it|. ...|its|stupidities|wind|up|sticking|in|one|'s|mind|a|lot|more|than|the|cool|bits|. Sayles|...|once|again|strands|his|superb|performers|in|the|same|old|story|. The|Piano|Teacher|,|like|its|title|character|,|is|repellantly|out|of|control|. I|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|. The|filmmakers|lack|the|nerve|...|to|fully|exploit|the|script|'s|potential|for|sick|humor|. The|film|was|n't|preachy|,|but|it|was|feminism|by|the|book|. ...|the|same|tired|old|gags|,|modernized|for|the|extreme|sports|generation|. There|'s|already|been|too|many|of|these|films|... Several|of|Steven|Soderbergh|'s|earlier|films|were|hailed|as|the|works|of|an|artist|. Sadly|,|Full|Frontal|plays|like|the|work|of|a|dilettante|. Clockstoppers|is|one|of|those|crazy|,|mixed-up|films|that|does|n't|know|what|it|wants|to|be|when|it|grows|up|. Although|bright|,|well-acted|and|thought-provoking|,|Tuck|Everlasting|suffers|from|a|laconic|pace|and|a|lack|of|traditional|action|. `|The|War|of|the|Roses|,|'|trailer-trash|style|. Entertaining|but|like|shooting|fish|in|a|barrel|. Supposedly|,|Pokemon|ca|n't|be|killed|,|but|Pokemon|4Ever|practically|assures|that|the|pocket|monster|movie|franchise|is|nearly|ready|to|keel|over|. White|has|n't|developed|characters|so|much|as|caricatures|,|one-dimensional|buffoons|that|get|him|a|few|laughs|but|nothing|else|. When|you|resurrect|a|dead|man|,|Hard|Copy|should|come|a-knocking|,|no|? Cattaneo|should|have|followed|the|runaway|success|of|his|first|film|,|The|Full|Monty|,|with|something|different|. The|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|. This|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|? The|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|. Mr.|Deeds|is|not|really|a|film|as|much|as|it|is|a|loose|collection|of|not-so-funny|gags|,|scattered|moments|of|lazy|humor|. How|this|one|escaped|the|Lifetime|network|I|'ll|never|know|. Could|n't|someone|take|Rob|Schneider|and|have|him|switch|bodies|with|a|funny|person|? One|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|. For|all|its|brilliant|touches|,|Dragon|loses|its|fire|midway|,|nearly|flickering|out|by|its|perfunctory|conclusion|. I|have|to|admit|that|I|am|baffled|by|Jason|X. A|mean-spirited|film|made|by|someone|who|surely|read|The|Catcher|in|the|Rye|but|clearly|suffers|from|dyslexia Instead|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|. This|is|a|film|living|far|too|much|in|its|own|head|. The|umpteenth|summer|skinny|dip|in|Jerry|Bruckheimer|'s|putrid|pond|of|retread|action|twaddle|. National|Lampoon|'s|Van|Wilder|may|aim|to|be|the|next|Animal|House|,|but|it|more|closely|resembles|this|year|'s|version|of|Tomcats|. The|film|thrusts|the|inchoate|but|already|eldritch|Christian|Right|propaganda|machine|into|national|media|circles|. Dogtown|is|hollow|,|self-indulgent|,|and|-|worst|of|all|-|boring|. A|movie|so|bad|that|it|quickly|enters|the|pantheon|of|wreckage|that|includes|Battlefield|Earth|and|Showgirls|. More|of|a|career|curio|than|a|major|work|. It|'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|. Cox|is|far|more|concerned|with|aggrandizing|madness|,|not|the|man|,|and|the|results|might|drive|you|crazy|. To|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|. As|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|.|' The|filmmakers|might|want|to|look|it|up|. A|frustrating|`|tweener|'|--|too|slick|,|contrived|and|exploitative|for|the|art|houses|and|too|cynical|,|small|and|decadent|for|the|malls|. What|'s|surprising|about|this|traditional|thriller|,|moderately|successful|but|not|completely|satisfying|,|is|exactly|how|genteel|and|unsurprising|the|execution|turns|out|to|be|. Drowning|'s|too|good|for|this|sucker|. An|instantly|forgettable|snow-and-stuntwork|extravaganza|that|likely|will|be|upstaged|by|an|avalanche|of|more|appealing|holiday-season|product|. Frankly|,|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|... Love|Liza|is|a|festival|film|that|would|have|been|better|off|staying|on|the|festival|circuit|. There|are|things|to|like|about|Murder|By|Numbers|--|but|,|in|the|end|,|the|disparate|elements|do|n't|gel|. ...|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|. Quite|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|. My|precious|new|Star|Wars|movie|is|a|lumbering|,|wheezy|drag|... The|innocence|of|holiday|cheer|ai|n't|what|it|used|to|be|. Too|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|. Horrid|little|propaganda|film|with|fascinating|connections|not|only|to|the|Serbs|themselves|but|also|to|a|network|of|American|right-wing|extremists|. Should|have|gone|straight|to|video|. It|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|. It|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|. Consider|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|. A|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|. Sheridan|had|a|wonderful|account|to|work|from|,|but|,|curiously|,|he|waters|it|down|,|turning|grit|and|vulnerability|into|light|reading|. Heavy|with|flabby|rolls|of|typical|Toback|machinations|. It|is|very|difficult|to|care|about|the|character|,|and|that|is|the|central|flaw|of|the|film|. Snow|Dogs|finds|its|humour|in|a|black|man|getting|humiliated|by|a|pack|of|dogs|who|are|smarter|than|him Whole|stretches|of|the|film|may|be|incomprehensible|to|moviegoers|not|already|clad|in|basic|black|. Reggio|and|Glass|so|rhapsodize|cynicism|,|with|repetition|and|languorous|slo-mo|sequences|,|that|Glass|'s|dirgelike|score|becomes|a|fang-baring|lullaby|. Ends|up|offering|nothing|more|than|the|latest|Schwarzenegger|or|Stallone|flick|would|. The|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|. Charlize|CHASES|Kevin|with|a|GUN|. Courtney|CHASES|Stuart|with|a|CELL|PHONE|. The|sound|of|GUNFIRE|and|cell|phones|RINGING|. If|The|Tuxedo|actually|were|a|suit|,|it|would|fit|Chan|like|a|$|99|bargain-basement|special|. Parents|beware|;|this|is|downright|movie|penance|. ...|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|. Has|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|. A|pathetically|inane|and|unimaginative|cross|between|XXX|and|Vertical|Limit|. Impeccably|filmed|,|sexually|charged|,|but|ultimately|lacking|in|substance|,|not|to|mention|dragged|down|by|a|leaden|closing|act|. Feels|at|times|like|a|giant|commercial|for|Universal|Studios|,|where|much|of|the|action|takes|place|. While|the|mystery|unravels|,|the|characters|respond|by|hitting|on|each|other|. Britney|Spears|'|phoniness|is|nothing|compared|to|the|movie|'s|contrived|,|lame|screenplay|and|listless|direction|. Every|sequel|you|skip|will|be|two|hours|gained|. Consider|this|review|life-affirming|. If|the|movie|were|all|comedy|,|it|might|work|better|. But|it|has|an|ambition|to|say|something|about|its|subjects|,|but|not|a|willingness|. The|movie|,|while|beautiful|,|feels|labored|,|with|a|hint|of|the|writing|exercise|about|it|. Twenty-three|movies|into|a|mostly|magnificent|directorial|career|,|Clint|Eastwood|'s|efficiently|minimalist|style|finally|has|failed|him|. Big|time|. This|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|. The|film|has|a|childlike|quality|about|it|. But|the|feelings|evoked|in|the|film|are|lukewarm|and|quick|to|pass|. The|most|opaque|,|self-indulgent|and|just|plain|goofy|an|excuse|for|a|movie|as|you|can|imagine|. It|'s|not|a|film|to|be|taken|literally|on|any|level|,|but|its|focus|always|appears|questionable|. Big|Fat|Liar|is|little|more|than|Home|Alone|raised|to|a|new|,|self-deprecating|level|. The|movie|is|gorgeously|made|,|but|it|is|also|somewhat|shallow|and|art-conscious|. The|only|time|8|Crazy|Nights|comes|close|to|hitting|a|comedic|or|satirical|target|is|during|the|offbeat|musical|numbers|. Loses|its|sense|of|humor|in|a|vat|of|failed|jokes|,|twitchy|acting|,|and|general|boorishness|. There|'s|a|delightfully|quirky|movie|to|be|made|from|curling|,|but|Brooms|is|n't|it|. The|story|suffers|a|severe|case|of|oversimplification|,|superficiality|and|silliness|. Chamber|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|. Too|clever|by|about|nine-tenths|. Has|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|. Bears|about|as|much|resemblance|to|the|experiences|of|most|battered|women|as|Spider-Man|does|to|the|experiences|of|most|teenagers|. Toward|the|end|Sum|of|All|Fears|morphs|into|a|mundane|'70s|disaster|flick|. Director|Carl|Franklin|,|so|crisp|and|economical|in|One|False|Move|,|bogs|down|in|genre|cliches|here|. Mendes|still|does|n'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|. This|thing|is|just|garbage|. As|crimes|go|,|writer-director|Michael|Kalesniko|'s|How|to|Kill|Your|Neighbor|'s|Dog|is|slight|but|unendurable|. There|must|be|an|audience|that|enjoys|the|Friday|series|,|but|I|would|n't|be|interested|in|knowing|any|of|them|personally|. A|bold|(|and|lovely|)|experiment|that|will|almost|certainly|bore|most|audiences|into|their|own|brightly|colored|dreams|. An|uplifting|,|largely|bogus|story|. An|empty|exercise|,|a|florid|but|ultimately|vapid|crime|melodrama|with|lots|of|surface|flash|but|little|emotional|resonance|. If|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|. My|own|minority|report|is|that|it|stinks|. Trying|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|. The|script|is|high|on|squaddie|banter|,|low|on|shocks|. ...|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|. While|Solondz|tries|and|tries|hard|,|Storytelling|fails|to|provide|much|more|insight|than|the|inside|column|of|a|torn|book|jacket|. With|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|. (|Davis|)|wants|to|cause|his|audience|an|epiphany|,|yet|he|refuses|to|give|us|real|situations|and|characters|. Without|a|fresh|infusion|of|creativity|,|4Ever|is|neither|a|promise|nor|a|threat|so|much|as|wishful|thinking|. ...|unlike|(|Scorsese|'s|Mean|Streets|)|,|Ash|Wednesday|is|essentially|devoid|of|interesting|characters|or|even|a|halfway|intriguing|plot|. Being|unique|does|n't|necessarily|equate|to|being|good|,|no|matter|how|admirably|the|filmmakers|have|gone|for|broke|. A|few|hours|after|you|'ve|seen|it|,|you|forget|you|'ve|been|to|the|movies|. waydowntown|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|. Yes|,|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|. Shadyac|,|who|belongs|with|the|damned|for|perpetrating|Patch|Adams|,|trots|out|every|ghost|trick|from|The|Sixth|Sense|to|The|Mothman|Prophecies|. The|photographer|'s|show-don|`|t-tell|stance|is|admirable|,|but|it|can|make|him|a|problematic|documentary|subject|. It|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|. I|'d|be|hard|pressed|to|think|of|a|film|more|cloyingly|sappy|than|Evelyn|this|year|. Nothing|more|than|an|amiable|but|unfocused|bagatelle|that|plays|like|a|loosely-connected|string|of|acting-workshop|exercises|. meanders|between|its|powerful|moments|. What|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|. A|backhanded|ode|to|female|camaraderie|penned|by|a|man|who|has|little|clue|about|either|the|nature|of|women|or|of|friendship|. Pure|of|intention|and|passably|diverting|,|His|Secret|Life|is|light|,|innocuous|and|unremarkable|. ...|delivers|few|moments|of|inspiration|amid|the|bland|animation|and|simplistic|story|. Take|away|the|controversy|,|and|it|'s|not|much|more|watchable|than|a|Mexican|soap|opera|. It|'s|got|the|brawn|,|but|not|the|brains|. Mindless|and|boring|martial|arts|and|gunplay|with|too|little|excitement|and|zero|compelling|storyline|. A|lot|of|talent|is|wasted|in|this|crass|,|low-wattage|endeavor|. To|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|. (|T|)|oo|many|of|these|gross|out|scenes|... About|one|in|three|gags|in|White|'s|intermittently|wise|script|hits|its|mark|;|the|rest|are|padding|unashamedly|appropriated|from|the|teen-exploitation|playbook|. Little|is|done|to|support|the|premise|other|than|fling|gags|at|it|to|see|which|ones|shtick|. Reno|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|. If|Jews|were|Catholics|,|this|would|be|Catechism One|of|those|films|that|seems|tailor|made|to|air|on|pay|cable|to|offer|some|modest|amusements|when|one|has|nothing|else|to|watch|. The|big|ending|surprise|almost|saves|the|movie|. It|'s|too|bad|that|the|rest|is|n't|more|compelling|. Charming|,|if|overly|complicated|... Schneider|'s|mugging|is|relentless|and|his|constant|need|to|suddenly|transpose|himself|into|another|character|undermines|the|story|'s|continuity|and|progression|. All|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|. It|'s|probably|not|easy|to|make|such|a|worthless|film|... Hope|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|. Has|no|reason|to|exist|,|other|than|to|employ|Hollywood|kids|and|people|who|owe|favors|to|their|famous|parents|. For|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|. Constantly|slips|from|the|grasp|of|its|maker|. Smothered|by|its|own|solemnity|. `|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|.|' Might|be|one|of|those|vanity|projects|in|which|a|renowned|filmmaker|attempts|to|show|off|his|talent|by|surrounding|himself|with|untalented|people|. After|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|. Not|one|moment|in|the|enterprise|did|n't|make|me|want|to|lie|down|in|a|dark|room|with|something|cool|to|my|brow|. In|the|era|of|The|Sopranos|,|it|feels|painfully|redundant|and|inauthentic|. The|overall|vibe|is|druggy|and|self-indulgent|,|like|a|spring-break|orgy|for|pretentious|arts|majors|. Breen|'s|script|is|sketchy|with|actorish|notations|on|the|margin|of|acting|. There|'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|. If|only|Merchant|paid|more|attention|the|story|. At|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|. ...|too|contrived|to|be|as|naturally|charming|as|it|needs|to|be|. A|simpler|,|leaner|treatment|would|have|been|preferable|;|after|all|,|being|about|nothing|is|sometimes|funnier|than|being|about|something|. The|characters|are|based|on|stock|clichés|,|and|the|attempt|to|complicate|the|story|only|defies|credibility|. Everything|about|it|from|the|bland|songs|to|the|colorful|but|flat|drawings|is|completely|serviceable|and|quickly|forgettable|. Not|the|Great|American|Comedy|,|but|if|you|liked|the|previous|movies|in|the|series|,|you|'ll|have|a|good|time|with|this|one|too|. A|domestic|melodrama|with|weak|dialogue|and|biopic|cliches|. Mr.|Goyer|'s|loose|,|unaccountable|direction|is|technically|sophisticated|in|the|worst|way|. The|movie|is|so|thoughtlessly|assembled|. Benigni|presents|himself|as|the|boy|puppet|Pinocchio|,|complete|with|receding|hairline|,|weathered|countenance|and|American|Breckin|Meyer|'s|ridiculously|inappropriate|Valley|Boy|voice|. plays|like|some|corny|television|production|from|a|bygone|era The|end|result|is|like|cold|porridge|with|only|the|odd|enjoyably|chewy|lump|. For|all|the|charm|of|Kevin|Kline|and|a|story|that|puts|old-fashioned|values|under|the|microscope|,|there|'s|something|creepy|about|this|movie|. I|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|. Producer|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|.|'' Ignoring|that|,|he|made|Swimfan|anyway Naipaul|fans|may|be|disappointed|. Those|who|are|not|acquainted|with|the|author|'s|work|,|on|the|other|hand|,|may|fall|fast|asleep|. Hoffman|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|. If|you|'re|a|Crocodile|Hunter|fan|,|you|'ll|enjoy|at|least|the|``|real|''|portions|of|the|film|. If|you|'re|looking|for|a|story|,|do|n't|bother|. Full|Frontal|had|no|effect|and|elicited|no|sympathies|for|any|of|the|characters|. By|that|measure|,|it|is|a|failure|. A|baffling|mixed|platter|of|gritty|realism|and|magic|realism|with|a|hard-to-swallow|premise|. An|affable|but|undernourished|romantic|comedy|that|fails|to|match|the|freshness|of|the|actress-producer|and|writer|'s|previous|collaboration|,|Miss|Congeniality|. Sometimes|this|modest|little|number|clicks|,|and|sometimes|it|does|n't|. Like|a|pack|of|dynamite|sticks|,|built|for|controversy|. The|film|is|explosive|,|but|a|few|of|those|sticks|are|wet|. Has|its|charming|quirks|and|its|dull|spots|. An|admitted|egomaniac|,|Evans|is|no|Hollywood|villain|,|and|yet|this|grating|showcase|almost|makes|you|wish|he|'d|gone|the|way|of|Don|Simpson|. The|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|. Everyone|'s|to|blame|here|. You|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|. Less|a|study|in|madness|or|love|than|a|study|in|schoolgirl|obsession|. Rice|never|clearly|defines|his|characters|or|gives|us|a|reason|to|care|about|them|. It|'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|. A|slight|and|obvious|effort|,|even|for|one|whose|target|demographic|is|likely|still|in|the|single|digits|,|age-wise|. Sex|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|? You|see|Robin|Williams|and|psycho|killer|,|and|you|think|,|hmmmmm|. You|see|the|movie|and|you|think|,|zzzzzzzzz|. Downright|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|. The|movie|slides|downhill|as|soon|as|macho|action|conventions|assert|themselves|. Formulaic|to|the|51st|power|,|more|like|. Draggin|'|about|dragons Howard|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|. A|respectable|but|uninspired|thriller|that|'s|intelligent|and|considered|in|its|details|,|but|ultimately|weak|in|its|impact|. Jones|helps|breathe|some|life|into|the|insubstantial|plot|,|but|even|he|is|overwhelmed|by|predictability|. The|movie|just|has|too|much|on|its|plate|to|really|stay|afloat|for|its|just|under|ninety|minute|running|time|. Comes|off|more|like|a|misdemeanor|,|a|flat|,|unconvincing|drama|that|never|catches|fire|. Offers|absolutely|nothing|I|had|n't|already|seen|. ``|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|. You|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|. Complex|,|sinuously|plotted|and|,|somehow|,|off-puttingly|cold|. First-time|writer-director|Dylan|Kidd|also|has|a|good|ear|for|dialogue|,|and|the|characters|sound|like|real|people|. ...|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|. Goldmember|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|. Could|as|easily|have|been|called|`|Under|Siege|3|:|In|Alcatraz|'|...|a|cinematic|corpse|that|never|springs|to|life|. In|comparison|to|his|earlier|films|it|seems|a|disappointingly|thin|slice|of|lower-class|London|life|;|despite|the|title|...|amounts|to|surprisingly|little|. Lame|Sweet|Home|leaves|no|Southern|stereotype|unturned|. Slow|,|dry|,|poorly|cast|,|but|beautifully|shot|. The|jokes|are|sophomoric|,|stereotypes|are|sprinkled|everywhere|and|the|acting|ranges|from|bad|to|bodacious|. Will|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|. In|its|chicken|heart|,|Crush|goes|to|absurd|lengths|to|duck|the|very|issues|it|raises|. This|long|and|relentlessly|saccharine|film|is|a|clear|case|of|preaching|to|the|converted|. The|film|is|flat|. The|movie|is|a|lumbering|load|of|hokum|but|...|it|'s|at|least|watchable|. It|'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|. An|unbelievably|stupid|film|,|though|occasionally|fun|enough|to|make|you|forget|its|absurdity|. The|first|Fatal|Attraction|was|vile|enough|. Do|we|really|need|the|Tiger|Beat|version|? This|Bond|film|goes|off|the|beaten|path|,|not|necessarily|for|the|better|. The|problem|is|that|the|movie|has|no|idea|of|it|is|serious|or|not|. When|the|fire|burns|out|,|we|'ve|only|come|face-to-face|with|a|couple|dragons|and|that|'s|where|the|film|ultimately|fails|. It|would|work|much|better|as|a|one-hour|TV|documentary|. The|elements|were|all|there|but|lack|of|a|pyschological|center|knocks|it|flat|. Anemic|chronicle|of|money|grubbing|New|Yorkers|and|their|serial|loveless|hook|ups|. Simply|does|n't|have|sufficient|heft|to|justify|its|two-hour|running|time|. An|unsuccessful|attempt|at|a|movie|of|ideas|. Queen|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|. This|toothless|Dog|,|already|on|cable|,|loses|all|bite|on|the|big|screen|. It|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|. Not|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|. It|'s|so|crammed|with|scenes|and|vistas|and|pretty|moments|that|it|'s|left|a|few|crucial|things|out|,|like|character|development|and|coherence|. Serving|Sara|should|be|served|an|eviction|notice|at|every|theater|stuck|with|it|. Director|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|. A|loud|,|low-budget|and|tired|formula|film|that|arrives|cloaked|in|the|euphemism|`|urban|drama|.|' The|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|. A|pathetic|exploitation|film|that|tries|to|seem|sincere|,|and|just|seems|worse|for|the|effort|. At|some|point|,|all|this|visual|trickery|stops|being|clever|and|devolves|into|flashy|,|vaguely|silly|overkill|. Despite|some|charm|and|heart|,|this|quirky|soccer|import|is|forgettable Meyjes|'s|movie|,|like|Max|Rothman|'s|future|,|does|not|work|. What|'s|needed|so|badly|but|what|is|virtually|absent|here|is|either|a|saving|dark|humor|or|the|feel|of|poetic|tragedy|. Schneidermeister|...|Makin|'|a|fool|of|himself|...|Losin|'|his|fan|base|... An|ambitious|,|serious|film|that|manages|to|do|virtually|everything|wrong|;|sitting|through|it|is|something|akin|to|an|act|of|cinematic|penance|. Not|once|does|it|come|close|to|being|exciting|. A|Frankenstein|mishmash|that|careens|from|dark|satire|to|cartoonish|slapstick|,|Bartleby|performs|neither|one|very|well|. It|plays|like|a|big-budget|,|after-school|special|with|a|generous|cast|,|who|at|times|lift|the|material|from|its|well-meaning|clunkiness|. There|'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|. One|of|those|strained|caper|movies|that|'s|hardly|any|fun|to|watch|and|begins|to|vaporize|from|your|memory|minutes|after|it|ends|. Needed|a|little|less|bling-bling|and|a|lot|more|romance|. The|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|. It|'s|hard|to|believe|these|jokers|are|supposed|to|have|pulled|off|four|similar|kidnappings|before|. I|'m|not|exactly|sure|what|this|movie|thinks|it|is|about|. Cal|is|an|unpleasantly|shallow|and|immature|character|with|whom|to|spend|110|claustrophobic|minutes|. So|brisk|is|Wang|'s|pacing|that|none|of|the|excellent|cast|are|given|air|to|breathe|. The|bottom|line|,|at|least|in|my|opinion|,|is|Imposter|makes|a|better|short|story|than|it|does|a|film|. Some|elements|of|it|really|blow|the|big|one|,|but|other|parts|are|decent|. It|is|just|too|bad|the|film|'s|story|does|not|live|up|to|its|style|. Unless|you|'re|a|fanatic|,|the|best|advice|is|:|`|Scooby|'|do|n't|. A|cautionary|tale|about|the|folly|of|superficiality|that|is|itself|endlessly|superficial|. For|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|. Shreve|'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|. Contains|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|. Nothing|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|. This|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|. The|movie|is|undone|by|a|filmmaking|methodology|that|'s|just|experimental|enough|to|alienate|the|mainstream|audience|while|ringing|cliched|to|hardened|indie-heads|. A|jumbled|fantasy|comedy|that|did|not|figure|out|a|coherent|game|plan|at|scripting|,|shooting|or|post-production|stages|. A|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|. Personal|Velocity|ought|to|be|exploring|these|women|'s|inner|lives|,|but|it|never|moves|beyond|their|surfaces|. We|hate|(|Madonna|)|within|the|film|'s|first|five|minutes|,|and|she|lacks|the|skill|or|presence|to|regain|any|ground|. Sounding|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|. Two|big|things|are|missing|--|anything|approaching|a|visceral|kick|,|and|anything|approaching|even|a|vague|reason|to|sit|through|it|all|. A|fascinating|but|choppy|documentary|. Scarcely|worth|a|mention|apart|from|reporting|on|the|number|of|tumbleweeds|blowing|through|the|empty|theatres|graced|with|its|company|. The|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|is|n't|nearly|as|captivating|as|the|rowdy|participants|think|it|is|. Too|stagey|,|talky|--|and|long|--|for|its|own|good|. Apparently|reassembled|from|the|cutting-room|floor|of|any|given|daytime|soap|. The|sinister|inspiration|that|fuelled|DeVito|'s|early|work|is|confused|in|Death|to|Smoochy|into|something|both|ugly|and|mindless|. Despite|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|. Director|Boris|von|Sychowski|instead|opts|for|a|routine|slasher|film|that|was|probably|more|fun|to|make|than|it|is|to|sit|through|. ...|little|more|than|a|well-acted|television|melodrama|shot|for|the|big|screen|. Never|comes|together|as|a|coherent|whole|. An|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|. First|,|for|a|movie|that|tries|to|be|smart|,|it|'s|kinda|dumb|. And|second|,|what|'s|with|all|the|shooting|? Do|n't|even|bother|to|rent|this|on|video|. There|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|. This|is|the|kind|of|movie|that|gets|a|quick|release|before|real|contenders|arrive|in|September|. Not|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|. Plays|like|one|long|,|meandering|sketch|inspired|by|the|works|of|John|Waters|and|Todd|Solondz|,|rather|than|a|fully|developed|story|. The|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|. A|mawkish|self-parody|that|plays|like|some|weird|Masterpiece|Theater|sketch|with|neither|a|point|of|view|nor|a|compelling|reason|for|being|. An|average|B-movie|with|no|aspirations|to|be|anything|more|. Bartlett|'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|. Gibney|and|Jarecki|just|want|to|string|the|bastard|up|. The|plot|is|plastered|with|one|Hollywood|cliche|after|another|,|most|of|which|involve|precocious|kids|getting|the|better|of|obnoxious|adults|. Less|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|. A|film|that|suffers|because|of|its|many|excesses|. Too|bland|and|fustily|tasteful|to|be|truly|prurient|. In|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|. Depicts|the|sorriest|and|most|sordid|of|human|behavior|on|the|screen|,|then|laughs|at|how|clever|it|'s|being|. Nijinsky|says|,|'|I|know|how|to|suffer|'|and|if|you|see|this|film|you|'ll|know|too|. `|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 The|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|. ...|the|story|simply|putters|along|looking|for|astute|observations|and|coming|up|blank|. Instead|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|? It|just|did|n't|mean|much|to|me|and|played|too|skewed|to|ever|get|a|hold|on|(|or|be|entertained|by|)|. This|action-thriller\/dark|comedy|is|one|of|the|most|repellent|things|to|pop|up|in|a|cinematic|year|already|littered|with|celluloid|garbage|. MIB|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|. No|amount|of|arty|theorizing|--|the|special|effects|are|`|German-Expressionist|,|'|according|to|the|press|notes|--|can|render|it|anything|but|laughable|. Blue|Crush|follows|the|formula|,|but|throws|in|too|many|conflicts|to|keep|the|story|compelling|. Boyd|'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|. There|'s|not|a|spark|of|new|inspiration|in|it|,|just|more|of|the|same|,|done|with|noticeably|less|energy|and|imagination|. Jackson|shamefully|strolls|through|this|mess|with|a|smug|grin|,|inexplicably|wearing|a|kilt|and|carrying|a|bag|of|golf|clubs|over|one|shoulder|. A|moving|picture|that|does|not|move|. Ruh-roh|! Romething|'s|really|wrong|with|this|ricture|! Its|salient|points|are|simultaneously|buried|,|drowned|and|smothered|in|the|excesses|of|writer-director|Roger|Avary|. I|'m|not|sure|these|words|have|ever|been|together|in|the|same|sentence|:|This|erotic|cannibal|movie|is|boring|. `|God|help|us|,|but|Capra|and|Cooper|are|rolling|over|in|their|graves|.|' ...|an|hour-and-a-half|of|inoffensive|,|unmemorable|filler|. Is|it|a|comedy|? A|drama|? A|romance|? A|cartoon|? Ze|movie|starts|out|so|funny|,|then|she|is|nothing|. Did|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|. It|'s|a|bad|sign|in|a|thriller|when|you|instantly|know|whodunit|. Has|a|customarily|jovial|air|but|a|deficit|of|flim-flam|inventiveness|. Eight|Legged|Freaks|wo|n't|join|the|pantheon|of|great|monster\/science|fiction|flicks|that|we|have|come|to|love|... It|gets|the|details|of|its|time|frame|right|but|it|completely|misses|its|emotions|. Who|,|exactly|,|is|fighting|whom|here|? Ah|,|yes|,|that|would|be|me|:|fighting|off|the|urge|to|doze|. A|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|. Contrived|,|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|. Starts|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|. The|film|lapses|too|often|into|sugary|sentiment|and|withholds|delivery|on|the|pell-mell|pyrotechnics|its|punchy|style|promises|. The|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|. This|movie|is|so|bad|,|that|it|'s|almost|worth|seeing|because|it|'s|so|bad|. A|crisply|made|movie|that|is|no|more|than|mildly|amusing|. This|movie|feel|more|like|a|non-stop|cry|for|attention|,|than|an|attempt|at|any|kind|of|satisfying|entertainment|. Overall|,|it|'s|a|pretty|mediocre|family|film|. Love|may|have|been|in|the|air|onscreen|,|but|I|certainly|was|n't|feeling|any|of|it|. In|addition|to|the|overcooked|,|ham-fisted|direction|,|which|has|all|the|actors|reaching|for|the|back|row|,|the|dialogue|sounds|like|horrible|poetry|. The|very|definition|of|what|critics|have|come|to|term|an|``|ambitious|failure|.|'' It|'s|as|if|De|Palma|spent|an|hour|setting|a|fancy|table|and|then|served|up|Kraft|Macaroni|and|Cheese|. The|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|. Worthy|of|the|gong|. While|certainly|more|naturalistic|than|its|Australian|counterpart|,|Amari|'s|film|falls|short|in|building|the|drama|of|Lilia|'s|journey|. I|found|the|movie|as|divided|against|itself|as|the|dysfunctional|family|it|portrays|. The|soul-searching|deliberateness|of|the|film|,|although|leavened|nicely|with|dry|absurdist|wit|,|eventually|becomes|too|heavy|for|the|plot|. The|movie|does|n't|add|anything|fresh|to|the|myth|. As|inept|as|big-screen|remakes|of|The|Avengers|and|The|Wild|Wild|West|. Comes|across|as|a|relic|from|a|bygone|era|,|and|its|convolutions|...|feel|silly|rather|than|plausible|. Moves|in|such|odd|plot|directions|and|descends|into|such|message-mongering|moralism|that|its|good|qualities|are|obscured|. It|'s|a|very|sincere|work|,|but|it|would|be|better|as|a|diary|or|documentary|. Once|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|. Oops|,|she|'s|really|done|it|this|time|. That|chirpy|songbird|Britney|Spears|has|popped|up|with|more|mindless|drivel|. It|'s|a|loathsome|movie|,|it|really|is|and|it|makes|absolutely|no|sense|. A|chiller|resolutely|without|chills|. For|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|. The|director|mostly|plays|it|straight|,|turning|Leys|'|fable|into|a|listless|climb|down|the|social|ladder|. ``|Bad|''|is|the|operative|word|for|``|Bad|Company|,|''|and|I|do|n't|mean|that|in|a|good|way|. Though|Frida|is|easier|to|swallow|than|Julie|Taymor|'s|preposterous|Titus|,|the|eye|candy|here|lacks|considerable|brio|. Drumline|is|--|the|mere|suggestion|,|albeit|a|visually|compelling|one|,|of|a|fully|realized|story|. The|whole|movie|is|simply|a|lazy|exercise|in|bad|filmmaking|that|asks|you|to|not|only|suspend|your|disbelief|but|your|intelligence|as|well|. The|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|. Billy|Crystal|and|Robert|De|Niro|sleepwalk|through|vulgarities|in|a|sequel|you|can|refuse|. It|'s|loud|and|boring|;|watching|it|is|like|being|trapped|at|a|bad|rock|concert|. Merely|(|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|. If|you|want|a|movie|time|trip|,|the|1960|version|is|a|far|smoother|ride|. Traffics|in|the|kind|of|prechewed|racial|clichés|that|have|already|been|through|the|corporate|stand-up-comedy|mill|. The|story|is|--|forgive|me|--|a|little|thin|,|and|the|filmmaking|clumsy|and|rushed|. ...|grows|decidedly|flimsier|with|its|many|out-sized|,|out|of|character|and|logically|porous|action|set|pieces|. I|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|. Aggressive|self-glorification|and|a|manipulative|whitewash|. Stay|for|the|credits|and|see|a|devastating|comic|impersonation|by|Dustin|Hoffman|that|is|revelatory|. None|of|the|characters|or|plot-lines|are|fleshed-out|enough|to|build|any|interest|. As|social|exposé|,|Skins|has|its|heart|in|the|right|place|,|but|that|'s|not|much|to|hang|a|soap|opera|on|. The|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|. There|'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|. The|only|way|to|tolerate|this|insipid|,|brutally|clueless|film|might|be|with|a|large|dose|of|painkillers|. This|one|is|certainly|well-meaning|,|but|it|'s|also|simple-minded|and|contrived|. Coppola|has|made|a|film|of|intoxicating|atmosphere|and|little|else|. Bad|and|baffling|from|the|get-go|. A|series|of|immaculately|composed|shots|of|Patch|Adams|quietly|freaking|out|does|not|make|for|much|of|a|movie|. At|a|time|when|we|'ve|learned|the|hard|way|just|how|complex|international|terrorism|is|,|Collateral|Damage|paints|an|absurdly|simplistic|picture|. The|impulses|that|produced|this|project|...|are|commendable|,|but|the|results|are|uneven|. A|well-acted|movie|that|simply|does|n't|gel|. Like|a|can|of|2-day|old|Coke|. You|can|taste|it|,|but|there|'s|no|fizz|. There|'s|no|excuse|for|following|up|a|delightful|,|well-crafted|family|film|with|a|computer-generated|cold|fish|. Both|the|crime|story|and|the|love|story|are|unusual|. But|they|do|n't|fit|well|together|and|neither|is|well|told|. It|'s|both|sitcomishly|predictable|and|cloying|in|its|attempts|to|be|poignant|. Other|than|a|mildly|engaging|central|romance|,|Hospital|is|sickly|entertainment|at|best|and|mind-destroying|cinematic|pollution|at|worst|. Jaglom|offers|the|none-too-original|premise|that|everyone|involved|with|moviemaking|is|a|con|artist|and|a|liar|. Outside|of|Burger|'s|desire|to|make|some|kind|of|film|,|it|'s|really|unclear|why|this|project|was|undertaken Was|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|? A|fragile|framework|upon|which|to|hang|broad|,|mildly|fleshed-out|characters|that|seem|to|have|been|conjured|up|only|10|minutes|prior|to|filming|. By|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|. Since|Lee|is|a|sentimentalist|,|the|film|is|more|worshipful|than|your|random|E|! True|Hollywood|Story|. Wes|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|.|' Sunshine|State|surveys|the|landscape|and|assesses|the|issues|with|a|clear|passion|for|sociology|. But|the|cinematography|is|cloudy|,|the|picture|making|becalmed|. It|'s|one|long|bore|. It|gets|old|quickly|. Watch|Barbershop|again|if|you|'re|in|need|of|a|Cube|fix|--|this|is|n't|worth|sitting|through|. It|'s|leaden|and|predictable|,|and|laughs|are|lacking|. ...|a|cinematic|disaster|so|inadvertently|sidesplitting|it|'s|worth|the|price|of|admission|for|the|ridicule|factor|alone|. Skip|this|dreck|,|rent|Animal|House|and|go|back|to|the|source|. The|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|. We|just|do|n't|really|care|too|much|about|this|love|story|. In|that|setting|,|their|struggle|is|simply|too|ludicrous|and|borderline|insulting|. The|Transporter|bombards|the|viewer|with|so|many|explosions|and|side|snap|kicks|that|it|ends|up|being|surprisingly|dull|. Uzumaki|'s|interesting|social|parallel|and|defiant|aesthetic|seems|a|prostituted|muse|... `|Men|in|Black|II|creates|a|new|threat|for|the|MIB|,|but|recycles|the|same|premise|. Large|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|Is|n't|Better|. Feels|familiar|and|tired|. A|retread|of|material|already|thoroughly|plumbed|by|Martin|Scorsese|. Instead|of|making|his|own|style|,|director|Marcus|Adams|just|copies|from|various|sources|--|good|sources|,|bad|mixture Criminal|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|. A|bore|that|tends|to|hammer|home|every|one|of|its|points|. A|story|which|fails|to|rise|above|its|disgusting|source|material|. It|'s|fitting|that|a|movie|as|artificial|and|soulless|as|The|Country|Bears|owes|its|genesis|to|an|animatronic|display|at|Disneyland|. Starts|as|an|intense|political|and|psychological|thriller|but|is|sabotaged|by|ticking|time|bombs|and|other|Hollywood-action|cliches|. Completely|creatively|stillborn|and|executed|in|a|manner|that|I|'m|not|sure|could|be|a|single|iota|worse|...|a|soulless|hunk|of|exploitative|garbage|. An|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|. Horrible|. The|disjointed|mess|flows|as|naturally|as|Jolie|'s|hideous|yellow|`|do|. Bolstered|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|. An|authentically|vague|,|but|ultimately|purposeless|,|study|in|total|pandemonium|. Makes|a|joke|out|of|car|chases|for|an|hour|and|then|gives|us|half|an|hour|of|car|chases|. As|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|. The|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|. It|'s|too|interested|in|jerking|off|in|all|its|Byzantine|incarnations|to|bother|pleasuring|its|audience|. `|Synthetic|'|is|the|best|description|of|this|well-meaning|,|beautifully|produced|film|that|sacrifices|its|promise|for|a|high-powered|star|pedigree|. It|concentrates|far|too|much|on|the|awkward|interplay|and|utter|lack|of|chemistry|between|Chan|and|Hewitt|. Impostor|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|. Judd|'s|characters|ought|to|pick|up|the|durable|best|seller|Smart|Women|,|Foolish|Choices|for|advice|. The|script|has|less|spice|than|a|rat|burger|and|The|Rock|'s|fighting|skills|are|more|in|line|with|Steven|Seagal|. This|ill-conceived|and|expensive|project|winds|up|looking|like|a|bunch|of|talented|thesps|slumming|it|. ...|there|'s|a|choppy|,|surface-effect|feeling|to|the|whole|enterprise|. Does|n't|get|the|job|done|,|running|off|the|limited|chemistry|created|by|Ralph|Fiennes|and|Jennifer|Lopez|. A|particularly|joyless|,|and|exceedingly|dull|,|period|coming-of-age|tale|. It|'s|impossible|to|indulge|the|fanciful|daydreams|of|Janice|Beard|(|Eileen|Walsh|)|when|her|real-life|persona|is|so|charmless|and|vacant|. ...|it|was|n't|the|subject|matter|that|ultimately|defeated|the|film|...|It|was|the|unfulfilling|,|incongruous|,|``|wait|a|second|,|did|I|miss|something|?|'' ending|. This|is|a|movie|where|the|most|notable|observation|is|how|long|you|'ve|been|sitting|still|. Poor|editing|,|bad|bluescreen|,|and|ultra-cheesy|dialogue|highlight|the|radical|action|. It|'s|super|-|violent|,|super-serious|and|super-stupid|. So|earnest|and|well-meaning|,|and|so|stocked|with|talent|,|that|you|almost|forget|the|sheer|,|ponderous|awfulness|of|its|script|. Just|a|string|of|stale|gags|,|with|no|good|inside|dope|,|and|no|particular|bite|. It|'s|Splash|without|the|jokes|. The|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|. Shallow|,|noisy|and|pretentious|. Morrissette|has|performed|a|difficult|task|indeed|-|he|'s|taken|one|of|the|world|'s|most|fascinating|stories|and|made|it|dull|,|lifeless|,|and|irritating|. Granddad|of|Le|Nouvelle|Vague|,|Jean-Luc|Godard|continues|to|baffle|the|faithful|with|his|games|of|hide-and-seek|. This|loud|and|thoroughly|obnoxious|comedy|about|a|pair|of|squabbling|working-class|spouses|is|a|deeply|unpleasant|experience|. It|'s|better|than|The|Phantom|Menace|. But|unless|you|'re|an|absolute|raving|Star|Wars|junkie|,|it|is|n't|much|fun|. Philosophically|,|intellectually|and|logistically|a|mess|. A|standard|police-oriented|drama|that|,|were|it|not|for|De|Niro|'s|participation|,|would|have|likely|wound|up|a|TNT|Original|. Coupling|disgracefully|written|dialogue|with|flailing|bodily|movements|that|substitute|for|acting|,|Circuit|is|the|awkwardly|paced|soap|opera-ish|story|. Hollywood|Ending|just|is|n't|very|funny|. Though|clearly|well-intentioned|,|this|cross-cultural|soap|opera|is|painfully|formulaic|and|stilted|. A|technical|triumph|and|an|extraordinary|bore|. I|can|easily|imagine|Benigni|'s|Pinocchio|becoming|a|Christmas|perennial|. Coal|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|. Two|hours|of|junk|. Ends|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|. Self-congratulatory|,|misguided|,|and|ill-informed|,|if|nonetheless|compulsively|watchable|. A|clumsily|manufactured|exploitation|flick|,|a|style-free|exercise|in|manipulation|and|mayhem|. The|whole|affair|,|true|story|or|not|,|feels|incredibly|hokey|...|(|it|)|comes|off|like|a|Hallmark|commercial|. What|'s|missing|is|what|we|call|the|`|wow|'|factor|. The|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|. ...|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|... The|young|stars|are|too|cute|;|the|story|and|ensuing|complications|are|too|manipulative|;|the|message|is|too|blatant|;|the|resolutions|are|too|convenient|. Normally|,|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|. I|highly|recommend|Irwin|,|but|not|in|the|way|this|film|showcases|him|. It|'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|. This|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|. Malone|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|. Though|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|. A|Blair|Witch|-|style|adventure|that|plays|like|a|bad|soap|opera|,|with|passable|performances|from|everyone|in|the|cast|. Diaz|wears|out|her|welcome|in|her|most|charmless|performance It|is|too|bad|that|this|likable|movie|is|n't|more|accomplished|. The|actors|try|hard|but|come|off|too|amateurish|and|awkward|. The|plot|has|a|number|of|holes|,|and|at|times|it|'s|simply|baffling|. An|ill-conceived|jumble|that|'s|not|scary|,|not|smart|and|not|engaging|. Brainless|,|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|. Gets|bogged|down|by|an|overly|sillified|plot|and|stop-and-start|pacing|. ``|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|. Like|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|. Its|generic|villains|lack|any|intrigue|(|other|than|their|funny|accents|)|and|the|action|scenes|are|poorly|delivered|. Dripping|with|cliche|and|bypassing|no|opportunity|to|trivialize|the|material|. Hard-core|slasher|aficionados|will|find|things|to|like|...|but|overall|the|Halloween|series|has|lost|its|edge|. Stiff|and|schmaltzy|and|clumsily|directed|. The|story|the|movie|tells|is|of|Brian|De|Palma|'s|addiction|to|the|junk-calorie|suspense|tropes|that|have|all|but|ruined|his|career|. Too|many|improbabilities|and|rose-colored|situations|temper|what|could|'ve|been|an|impacting|film|. Generic|slasher-movie|nonsense|,|but|it|'s|not|without|style|. With|tiny|little|jokes|and|nary|an|original|idea|,|this|sappy|ethnic|sleeper|proves|that|not|only|blockbusters|pollute|the|summer|movie|pool|. It|sticks|rigidly|to|the|paradigm|,|rarely|permitting|its|characters|more|than|two|obvious|dimensions|and|repeatedly|placing|them|in|contrived|,|well-worn|situations|. Ever|see|one|of|those|comedies|that|just|seem|like|a|bad|idea|from|frame|one|? Once|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|. The|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|. It|would|be|great|to|see|this|turd|squashed|under|a|truck|,|preferably|a|semi|. In|the|end|,|all|you|can|do|is|admire|the|ensemble|players|and|wonder|what|the|point|of|it|is|. For|most|movies|,|84|minutes|is|short|,|but|this|one|feels|like|a|life|sentence|. While|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|. Shatner|is|probably|the|funniest|person|in|the|film|,|which|gives|you|an|idea|just|how|bad|it|was|. Tries|so|hard|to|be|quirky|and|funny|that|the|strain|is|all|too|evident|. As|immaculate|as|Stuart|Little|2|is|,|it|could|be|a|lot|better|if|it|were|,|well|,|more|adventurous|. Simply|a|re-hash|of|the|other|seven|films|. With|jump|cuts|,|fast|editing|and|lots|of|pyrotechnics|,|Yu|clearly|hopes|to|camouflage|how|bad|his|movie|is|. He|fails|. I|found|myself|more|appreciative|of|what|the|director|was|trying|to|do|than|of|what|he|had|actually|done|. A|very|depressing|movie|of|many|missed|opportunities|. Goes|on|and|on|to|the|point|of|nausea|. By|turns|numbingly|dull-witted|and|disquietingly|creepy|. Boy|,|has|this|franchise|ever|run|out|of|gas|. One|problem|with|the|movie|,|directed|by|Joel|Schumacher|,|is|that|it|jams|too|many|prefabricated|story|elements|into|the|running|time|. The|comedy|is|nonexistent|. ...|a|bland|,|pretentious|mess|. It|'s|a|pedestrian|,|flat|drama|that|screams|out|`|amateur|'|in|almost|every|frame|. A|bland|animated|sequel|that|hardly|seems|worth|the|effort|. It|'s|not|just|the|vampires|that|are|damned|in|Queen|of|the|Damned|--|the|viewers|will|feel|they|suffer|the|same|fate|. If|religious|films|are|n't|your|bailiwick|,|stay|away|. Otherwise|,|this|could|be|a|passable|date|film|. This|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|. The|pace|and|the|visuals|are|so|hyped|up|that|a|curious|sense|of|menace|informs|everything|. Stuffy|,|full|of|itself|,|morally|ambiguous|and|nothing|to|shout|about|. It|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|. Do|n't|let|the|subtitles|fool|you|;|the|movie|only|proves|that|Hollywood|no|longer|has|a|monopoly|on|mindless|action|. Chai|'s|structure|and|pacing|are|disconcertingly|slack|. To|be|oblivious|to|the|existence|of|this|film|would|be|very|sweet|indeed|. The|director|,|with|his|fake|backdrops|and|stately|pacing|,|never|settles|on|a|consistent|tone|. One|just|waits|grimly|for|the|next|shock|without|developing|much|attachment|to|the|characters|. Instead|of|panoramic|sweep|,|Kapur|gives|us|episodic|choppiness|,|undermining|the|story|'s|emotional|thrust|. The|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|. This|dubious|product|of|a|college-spawned|(|Colgate|U.|)|comedy|ensemble|known|as|Broken|Lizard|plays|like|a|mix|of|Cheech|and|Chong|and|CHiPs|. The|movie|does|n't|think|much|of|its|characters|,|its|protagonist|,|or|of|us|. Super|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|. ...|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|. Made|me|feel|uneasy|,|even|queasy|,|because|(|Solondz|'s|)|cool|compassion|is|on|the|border|of|bemused|contempt|. As|a|kind|of|colorful|,|dramatized|PBS|program|,|Frida|gets|the|job|done|. But|,|for|that|,|why|not|watch|a|documentary|? With|minimal|imagination|,|you|could|restage|the|whole|thing|in|your|bathtub|. Nights|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|. Although|...|visually|striking|and|slickly|staged|,|it|'s|also|cold|,|grey|,|antiseptic|and|emotionally|desiccated|. You|can|see|where|Big|Bad|Love|is|trying|to|go|,|but|it|never|quite|gets|there|. Friday|After|Next|is|the|kind|of|film|that|could|only|be|made|by|African-Americans|because|of|its|broad|racial|insensitivity|towards|African-Americans|. It|'s|not|as|awful|as|some|of|the|recent|Hollywood|trip|tripe|...|but|it|'s|far|from|a|groundbreaking|endeavor|. The|only|thing|``|swept|away|''|is|the|one|hour|and|thirty-three|minutes|spent|watching|this|waste|of|time|. One-sided|documentary|offers|simplistic|explanations|to|a|very|complex|situation|. ...|Stylistically|,|the|movie|is|a|disaster|. The|corpse|count|ultimately|overrides|what|little|we|learn|along|the|way|about|vicarious|redemption|. As|violent|,|profane|and|exploitative|as|the|most|offensive|action|flick|you|'ve|ever|seen|. Egoyan|'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|. Life|or|Something|Like|It|has|its|share|of|high|points|,|but|it|misses|too|many|opportunities|. This|is|a|truly|,|truly|bad|movie|. Despite|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 Believability|was|n't|one|of|the|film|'s|virtues|. Sewer|rats|could|watch|this|movie|and|be|so|skeeved|out|that|they|'d|need|a|shower|. The|Santa|Clause|2|'s|plot|may|sound|like|it|was|co-written|by|Mattel|executives|and|lobbyists|for|the|tinsel|industry|. His|best|film|remains|his|shortest|,|The|Hole|,|which|makes|many|of|the|points|that|this|film|does|but|feels|less|repetitive|. Just|another|disjointed|,|fairly|predictable|psychological|thriller|. ...|stumbles|over|every|cheap|trick|in|the|book|trying|to|make|the|outrage|come|even|easier|. Even|the|hastily|and|amateurishly|drawn|animation|can|not|engage|. Kung|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|. Busy|urban|comedy|is|clearly|not|Zhang|'s|forte|,|his|directorial|touch|is|neither|light|nor|magical|enough|to|bring|off|this|kind|of|whimsy|. Not|completely|loveable|--|but|what|underdog|movie|since|The|Bad|News|Bears|has|been|? --|but|certainly|hard|to|hate|. A|movie|that|ca|n't|get|sufficient|distance|from|Leroy|'s|delusions|to|escape|their|maudlin|influence|. It|'s|Young|Guns|meets|Goodfellas|in|this|easily|skippable|hayseeds-vs|. -|greaseballs|mob|action-comedy|. Louiso|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|. The|movie|straddles|the|fence|between|escapism|and|social|commentary|,|and|on|both|sides|it|falls|short|. The|film|is|old-fashioned|,|occasionally|charming|and|as|subtle|as|boldface|. Ca|n'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|. In|The|New|Guy|,|even|the|bull|gets|recycled|. Largely|,|this|is|a|movie|that|also|does|it|by|the|numbers|. On|top|of|a|foundering|performance|,|(|Madonna|'s|)|denied|her|own|athleticism|by|lighting|that|emphasizes|every|line|and|sag|. This|is|the|first|full|scale|WWII|flick|from|Hong|Kong|'s|John|Woo|. He|'s|not|good|with|people|. Patchy|combination|of|soap|opera|,|low-tech|magic|realism|and|,|at|times|,|ploddingly|sociological|commentary|. (|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|. So|boring|that|even|its|target|audience|talked|all|the|way|through|it|. One|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|. Hollywood|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|. ...|generically|,|forgettably|pleasant|from|start|to|finish|. It|'s|just|hard|to|believe|that|a|life|like|this|can|sound|so|dull|. When|not|wallowing|in|its|characters|'|frustrations|,|the|movie|is|busy|contriving|false|,|sitcom-worthy|solutions|to|their|problems|. An|overstylized|,|puréed|mélange|of|sex|,|psychology|,|drugs|and|philosophy|. Sometimes|entertaining|,|sometimes|indulgent|--|but|never|less|than|pure|wankery|. `|Lovely|and|Amazing|,|'|unhappily|,|is|neither|...|excessively|strained|and|contrived|. Ringu|is|a|disaster|of|a|story|,|full|of|holes|and|completely|lacking|in|chills|. Ignore|the|reputation|,|and|ignore|the|film|. This|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|. `|It|'s|painful|to|watch|Witherspoon|'s|talents|wasting|away|inside|unnecessary|films|like|Legally|Blonde|and|Sweet|Home|Abomination|,|I|mean|,|Alabama|.|' A|plodding|teen|remake|that|'s|so|mechanical|you|can|smell|the|grease|on|the|plot|twists|. Trying|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|. Even|in|terms|of|the|low-grade|cheese|standards|on|which|it|operates|,|it|never|quite|makes|the|grade|as|tawdry|trash|. Amidst|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|.|'' Rife|with|nutty|cliches|and|far|too|much|dialogue|. It|'s|a|100-year|old|mystery|that|is|constantly|being|interrupted|by|Elizabeth|Hurley|in|a|bathing|suit|. ...|one|big|laugh|,|three|or|four|mild|giggles|,|and|a|whole|lot|of|not|much|else|. Too|intensely|focused|on|the|travails|of|being|Hal|Hartley|to|function|as|pastiche|,|No|Such|Thing|is|Hartley|'s|least|accessible|screed|yet|. Kenneth|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|. Director|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|. Ms.|Phoenix|is|completely|lacking|in|charm|and|charisma|,|and|is|unable|to|project|either|Esther|'s|initial|anomie|or|her|eventual|awakening|. The|movie|fails|to|portray|its|literarily|talented|and|notorious|subject|as|anything|much|more|than|a|dirty|old|man|. A|clichéd|and|shallow|cautionary|tale|about|the|hard-partying|lives|of|gay|men|. The|fetid|underbelly|of|fame|has|never|looked|uglier|. A|little|weak|--|and|it|is|n't|that|funny|. While|it|is|welcome|to|see|a|Chinese|film|depict|a|homosexual|relationship|in|a|mature|and|frank|fashion|,|Lan|Yu|never|catches|dramatic|fire|. The|script|boasts|some|tart|TV-insider|humor|,|but|the|film|has|not|a|trace|of|humanity|or|empathy|. Despite|the|pyrotechnics|,|Narc|is|strictly|by|the|book|. In|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|. Cacoyannis|is|perhaps|too|effective|in|creating|an|atmosphere|of|dust-caked|stagnation|and|labored|gentility|. Worth|seeing|once|,|but|its|charm|quickly|fades|. The|original|was|n't|a|good|movie|but|this|remake|makes|it|look|like|a|masterpiece|! One|suspects|that|Craven|endorses|They|simply|because|this|movie|makes|his|own|look|much|better|by|comparison|. Gere|gives|a|good|performance|in|a|film|that|does|n't|merit|it|. Your|appreciation|of|it|will|depend|on|what|experiences|you|bring|to|it|and|what|associations|you|choose|to|make|. Includes|too|much|obvious|padding|. There|'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|. I|'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|. Do|n't|expect|any|subtlety|from|this|latest|entry|in|the|increasingly|threadbare|gross-out|comedy|cycle|. The|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|. Shot|like|a|postcard|and|overacted|with|all|the|boozy|self-indulgence|that|brings|out|the|worst|in|otherwise|talented|actors|... Spain|'s|greatest|star|wattage|does|n't|overcome|the|tumult|of|maudlin|tragedy|. Conforms|itself|with|creating|a|game|of|`|who|'s|who|'|...|where|the|characters|'|moves|are|often|more|predictable|than|their|consequences|. Looks|and|feels|like|a|low-budget|hybrid|of|Scarface|or|Carlito|'s|Way|. The|script|is|a|tired|one|,|with|few|moments|of|joy|rising|above|the|stale|material|. Suffers|from|all|the|excesses|of|the|genre|. The|verdict|:|Two|bodies|and|hardly|a|laugh|between|them|. The|latest|Adam|Sandler|assault|and|possibly|the|worst|film|of|the|year|. Downbeat|,|period-perfect|biopic|hammers|home|a|heavy-handed|moralistic|message|. While|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|. They|ought|to|be|a|whole|lot|scarier|than|they|are|in|this|tepid|genre|offering|. It|'s|harmless|,|diverting|fluff|. But|it|'s|hard|to|imagine|a|more|generic|effort|in|the|genre|. It|'s|just|plain|lurid|when|it|is|n't|downright|silly|. Comedy|troupe|Broken|Lizard|'s|first|movie|is|very|funny|but|too|concerned|with|giving|us|a|plot|. Pap|invested|in|undergraduate|doubling|subtexts|and|ridiculous|stabs|at|existentialism|reminding|of|the|discovery|of|the|wizard|of|God|in|the|fifth|Trek|flick|. A|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|. It|'s|a|film|with|an|idea|buried|somewhere|inside|its|fabric|,|but|never|clearly|seen|or|felt|. `|All|in|all|,|Reign|of|Fire|will|be|a|good|(|successful|)|rental|.|' Occasionally|funny|,|sometimes|inspiring|,|often|boring|. A|movie|in|which|two|not|very|absorbing|characters|are|engaged|in|a|romance|you|ca|n't|wait|to|see|end|. The|predominantly|amateur|cast|is|painful|to|watch|,|so|stilted|and|unconvincing|are|the|performances|. Who|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|!|'' Elegantly|crafted|but|emotionally|cold|,|a|puzzle|whose|intricate|construction|one|can|admire|but|is|difficult|to|connect|with|on|any|deeper|level|. Were|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|.|' The|story|has|its|redundancies|,|and|the|young|actors|,|not|very|experienced|,|are|sometimes|inexpressive|. I|'m|sure|the|filmmaker|would|disagree|,|but|,|honestly|,|I|do|n't|see|the|point|. It|'s|a|visual|Rorschach|test|and|I|must|have|failed|. The|film|is|really|closer|to|porn|than|a|serious|critique|of|what|'s|wrong|with|this|increasingly|pervasive|aspect|of|gay|culture|. Murder|by|Numbers|just|does|n't|add|up|. Clare|Peploe|'s|airless|movie|adaptation|could|use|a|little|American|Pie-like|irreverence|. Video|games|are|more|involving|than|this|mess|. Clayburgh|and|Tambor|are|charming|performers|;|neither|of|them|deserves|Eric|Schaeffer|. A|pale|Xerox|of|other|,|better|crime|movies|. ...|a|hokey|piece|of|nonsense|that|tries|too|hard|to|be|emotional|. Illiterate|,|often|inert|sci-fi|action|thriller|. A|perfect|example|of|rancid|,|well-intentioned|,|but|shamelessly|manipulative|movie|making|. The|adventure|does|n't|contain|half|the|excitement|of|Balto|,|or|quarter|the|fun|of|Toy|Story|2|. Essentially|a|collection|of|bits|--|and|they|'re|all|naughty|. A|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|. The|screenplay|by|James|Eric|,|James|Horton|and|director|Peter|O'Fallon|...|is|so|pat|it|makes|your|teeth|hurt|. Before|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|. Solaris|is|rigid|and|evasive|in|ways|that|Soderbergh|'s|best|films|,|``|Erin|Brockovich|,|''|``|Out|of|Sight|''|and|``|Ocean|'s|Eleven|,|''|never|were|. Seems|like|something|American|and|European|gay|movies|were|doing|20|years|ago|. In|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|. You|can|see|the|would-be|surprises|coming|a|mile|away|,|and|the|execution|of|these|twists|is|delivered|with|a|hammer|. Thumbs|down|. The|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|. ...|del|Toro|maintains|a|dark|mood|that|makes|the|film|seem|like|something|to|endure|instead|of|enjoy|. The|movie|eventually|snaps|under|the|strain|of|its|plot|contrivances|and|its|need|to|reassure|. The|real|question|this|movie|poses|is|not|`|Who|?|' but|`|Why|?|' Now|here|'s|a|sadistic|bike|flick|that|would|have|made|Vittorio|De|Sica|proud|. A|movie|that|'s|about|as|overbearing|and|over-the-top|as|the|family|it|depicts|. A|movie|in|which|laughter|and|self-exploitation|merge|into|jolly|soft-porn|'em|powerment|.|' Occasionally|interesting|but|essentially|unpersuasive|,|a|footnote|to|a|still|evolving|story|. If|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|? Moretti|plays|Giovanni|,|a|psychiatrist|who|predictably|finds|it|difficult|to|sustain|interest|in|his|profession|after|the|family|tragedy|. Too|predictably|,|in|fact|. Alternative|medicine|obviously|has|its|merits|...|but|Ayurveda|does|the|field|no|favors|. This|thing|works|on|no|level|whatsoever|for|me|. It|follows|the|basic|plot|trajectory|of|nearly|every|Schwarzenegger|film|:|Someone|crosses|Arnie|. Arnie|blows|things|up|. Ice|Age|posits|a|heretofore|unfathomable|question|:|Is|it|possible|for|computer-generated|characters|to|go|through|the|motions|? An|incoherent|jumble|of|a|film|that|'s|rarely|as|entertaining|as|it|could|have|been|. ...|they|missed|the|boat|. More|dutiful|than|enchanting|...|terribly|episodic|and|lacking|the|spark|of|imagination|that|might|have|made|it|an|exhilarating|treat|. Laconic|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|. The|comedy|Death|to|Smoochy|is|a|rancorous|curiosity|:|a|movie|without|an|apparent|audience|. Barney|'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|. Affleck|merely|creates|an|outline|for|a|role|he|still|needs|to|grow|into|,|a|role|that|Ford|effortlessly|filled|with|authority|. Cinematic|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|. The|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|. Nothing|more|or|less|than|an|outright|bodice-ripper|--|it|should|have|ditched|the|artsy|pretensions|and|revelled|in|the|entertaining|shallows|. A|living|testament|to|the|power|of|the|eccentric|and|the|strange|. The|fact|that|it|is|n't|very|good|is|almost|beside|the|point|. Feels|less|like|a|cousin|to|Blade|Runner|than|like|a|bottom-feeder|sequel|in|the|Escape|From|New|York|series|. What|might|have|been|acceptable|on|the|printed|page|of|Iles|'|book|does|not|translate|well|to|the|screen|. If|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|. A|poky|and|pseudo-serious|exercise|in|sham|actor|workshops|and|an|affected|malaise|. Mediocre|fable|from|Burkina|Faso|. Fessenden|has|nurtured|his|metaphors|at|the|expense|of|his|narrative|,|but|he|does|display|an|original|talent|. Since|the|movie|is|based|on|a|Nicholas|Sparks|best|seller|,|you|know|death|is|lurking|around|the|corner|,|just|waiting|to|spoil|things|. Bottom-rung|New|Jack|City|wannabe|. Fincher|takes|no|apparent|joy|in|making|movies|,|and|he|gives|none|to|the|audience|. It|'s|mildly|amusing|,|but|I|certainly|ca|n't|recommend|it|. Nicholas|Nickleby|celebrates|the|human|spirit|with|such|unrelenting|Dickensian|decency|that|it|turned|me|(|horrors|!|) into|Scrooge|. Fear|Dot|Com|is|more|frustrating|than|a|modem|that|disconnects|every|10|seconds|. Full|of|flatulence|jokes|and|mild|sexual|references|,|Kung|Pow|! is|the|kind|of|movie|that|'s|critic-proof|,|simply|because|it|aims|so|low|. May|cause|you|to|bite|your|tongue|to|keep|from|laughing|at|the|ridiculous|dialog|or|the|oh-so|convenient|plot|twists|. There|are|just|too|many|characters|saying|too|many|clever|things|and|getting|into|too|many|pointless|situations|. Where|'s|the|movie|here|? A|dark|,|dull|thriller|with|a|parting|shot|that|misfires|. Lacking|substance|and|soul|,|Crossroads|comes|up|shorter|than|Britney|'s|cutoffs|. Cassavetes|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|. Buries|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|. Although|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|. It|'s|so|badly|made|on|every|level|that|I|'m|actually|having|a|hard|time|believing|people|were|paid|to|make|it|. Without|non-stop|techno|or|the|existential|overtones|of|a|Kieslowski|morality|tale|,|Maelström|is|just|another|Winter|Sleepers|. Nicks|,|seemingly|uncertain|what|'s|going|to|make|people|laugh|,|runs|the|gamut|from|stale|parody|to|raunchy|sex|gags|to|formula|romantic|comedy|. `|A|'|for|creativity|but|comes|across|more|as|a|sketch|for|a|full-length|comedy|. If|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|. The|script|kicks|in|,|and|Mr.|Hartley|'s|distended|pace|and|foot-dragging|rhythms|follow|. (|E|)|ventually|,|every|idea|in|this|film|is|flushed|down|the|latrine|of|heroism|. I|am|sorry|that|I|was|unable|to|get|the|full|brunt|of|the|comedy|. No|telegraphing|is|too|obvious|or|simplistic|for|this|movie|. Looks|and|feels|like|a|project|better|suited|for|the|small|screen|. In|its|best|moments|,|resembles|a|bad|high|school|production|of|Grease|,|without|benefit|of|song|. Indifferently|implausible|popcorn|programmer|of|a|movie|. It|'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|. His|comedy|premises|are|often|hackneyed|or|just|plain|crude|,|calculated|to|provoke|shocked|laughter|,|without|following|up|on|a|deeper|level|. Christina|Ricci|comedy|about|sympathy|,|hypocrisy|and|love|is|a|misfire|. At|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|. They|should|have|called|it|Gutterball|. Thekids|will|probably|stay|amused|at|the|kaleidoscope|of|big|,|colorful|characters|. Mom|and|Dad|can|catch|some|quality|naptime|along|the|way|. It|'s|too|self-important|and|plodding|to|be|funny|,|and|too|clipped|and|abbreviated|to|be|an|epic|. The|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|. Less|dizzying|than|just|dizzy|,|the|jaunt|is|practically|over|before|it|begins|. Slick|piece|of|cross-promotion|. Taylor|appears|to|have|blown|his|entire|budget|on|soundtrack|rights|and|had|nothing|left|over|for|jokes|. It|believes|it|'s|revealing|some|great|human|truths|,|when|,|in|reality|,|it|'s|churning|ground|that|has|long|passed|the|point|of|being|fertile|. It|all|drags|on|so|interminably|it|'s|like|watching|a|miserable|relationship|unfold|in|real|time|. Villeneuve|spends|too|much|time|wallowing|in|Bibi|'s|generic|angst|(|there|are|a|lot|of|shots|of|her|gazing|out|windows|)|. (|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|. It|'s|another|video|movie|photographed|like|a|film|,|with|the|bad|lighting|that|'s|often|written|off|as|indie|film|naturalism|. The|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|. I|got|a|headache|watching|this|meaningless|downer|. Apart|from|dazzling|cinematography|,|we|'ve|seen|just|about|everything|in|Blue|Crush|in|one|form|or|the|other|. Too|much|of|the|humor|falls|flat|. Detox|is|ultimately|a|pointless|endeavor|. Van|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|. The|piquant|story|needs|more|dramatic|meat|on|its|bones|. Very|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|. The|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|. No|way|I|can|believe|this|load|of|junk|. ``|Roger|Michell|(|''|Notting|Hill|``|)|directs|a|morality|thriller|.|'' It|'s|dumb|,|but|more|importantly|,|it|'s|just|not|scary|. There|is|no|pleasure|in|watching|a|child|suffer|. Just|embarrassment|and|a|vague|sense|of|shame|. The|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|? Even|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|. There|'s|just|no|currency|in|deriding|James|Bond|for|being|a|clichéd|,|doddering|,|misogynistic|boy|'s|club|. When|the|film|ended|,|I|felt|tired|and|drained|and|wanted|to|lie|on|my|own|deathbed|for|a|while|. Full|of|witless|jokes|,|dealing|in|broad|stereotypes|and|outrageously|unbelievable|scenarios|,|and|saddled|with|a|general|air|of|misogyny The|film|'s|hackneyed|message|is|not|helped|by|the|thin|characterizations|,|nonexistent|plot|and|pretentious|visual|style|. The|Iditarod|lasts|for|days|-|this|just|felt|like|it|did|. It|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|. This|movie|is|maddening|. It|conveys|a|simple|message|in|a|visual|style|that|is|willfully|overwrought|. Should|have|been|someone|else|- The|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|. Why|make|a|documentary|about|these|marginal|historical|figures|? Would|n't|one|about|their|famous|dad|,|author|of|Death|in|Venice|,|etc.|,|be|more|valuable|? The|lower|your|expectations|,|the|more|you|'ll|enjoy|it|. Rarely|has|leukemia|looked|so|shimmering|and|benign|. ...|is|an|arthritic|attempt|at|directing|by|Callie|Khouri|. I|had|to|look|away|-|this|was|god|awful|. Even|in|this|less-than-magic|kingdom|,|Reese|rules|. Velocity|represents|everything|wrong|with|''|independent|film|''|as|a|commodified|,|sold-out|concept|on|the|American|filmmaking|scene|. Just|one|bad|idea|after|another|. Because|of|an|unnecessary|and|clumsy|last|scene|,|`|Swimfan|'|left|me|with|a|very|bad|feeling|. Though|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|. A|movie|that|hovers|somewhere|between|an|acute|character|study|and|a|trite|power|struggle|. Corpus|Collosum|--|while|undeniably|interesting|--|wore|out|its|welcome|well|before|the|end|credits|rolled|about|45|minutes|in|. The|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 It|'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|. A|by-the-numbers|effort|that|wo|n't|do|much|to|enhance|the|franchise|. Involves|two|mysteries|--|one|it|gives|away|and|the|other|featuring|such|badly|drawn|characters|that|its|outcome|hardly|matters|. Overall|the|film|feels|like|a|low-budget|TV|pilot|that|could|not|find|a|buyer|to|play|it|on|the|tube|. It|'s|of|the|quality|of|a|lesser|Harrison|Ford|movie|-|Six|Days|,|Seven|Nights|,|maybe|,|or|that|dreadful|Sabrina|remake|. It|appears|that|something|has|been|lost|in|the|translation|to|the|screen|. Despite|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|. An|unclassifiably|awful|study|in|self|-|and|audience-abuse|. This|movie|is|something|of|an|impostor|itself|,|stretching|and|padding|its|material|in|a|blur|of|dead|ends|and|distracting|camera|work|. Hey|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|. This|one|is|definitely|one|to|skip|,|even|for|horror|movie|fanatics|. Excessive|,|profane|,|packed|with|cartoonish|violence|and|comic-strip|characters|. Once|the|50|year|old|Benigni|appears|as|the|title|character|,|we|find|ourselves|longing|for|the|block|of|wood|to|come|back|. A|working|class|``|us|vs.|them|''|opera|that|leaves|no|heartstring|untugged|and|no|liberal|cause|unplundered|. If|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|. There|are|simply|too|many|ideas|floating|around|--|part|farce|,|part|Sliding|Doors|,|part|pop|video|--|and|yet|failing|to|exploit|them|. It|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|. We|have|n't|seen|such|hilarity|since|Say|It|Is|n't|So|! Expect|the|same-old|,|lame-old|slasher|nonsense|,|just|with|different|scenery|. The|Cold|Turkey|would|'ve|been|a|far|better|title|. The|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|. The|ga-zillionth|airhead|movie|about|a|wife|in|distress|who|resorts|to|desperate|measures|. Zaidan|'s|script|has|barely|enough|plot|to|string|the|stunts|together|and|not|quite|enough|characterization|to|keep|the|faces|straight|. Try|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|!|' when|Leguizamo|finally|plugged|an|irritating|character|late|in|the|movie|. While|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|. It|treats|women|like|idiots|. Though|Catch|Me|If|You|Can|is|n't|badly|made|,|the|fun|slowly|leaks|out|of|the|movie|. Just|an|average|comedic|dateflick|but|not|a|waste|of|time|. A|valueless|kiddie|paean|to|pro|basketball|underwritten|by|the|NBA|. Impostor|has|a|handful|of|thrilling|moments|and|a|couple|of|good|performances|,|but|the|movie|does|n't|quite|fly|. For|starters|,|the|story|is|just|too|slim|. So|much|facile|technique|,|such|cute|ideas|,|so|little|movie|. The|experience|of|going|to|a|film|festival|is|a|rewarding|one|;|the|experiencing|of|sampling|one|through|this|movie|is|not|. The|film|takes|the|materials|of|human|tragedy|and|dresses|them|in|lovely|costumes|,|Southern|California|locations|and|star|power|. It|has|its|moments|of|swaggering|camaraderie|,|but|more|often|just|feels|generic|,|derivative|and|done|to|death|. Almost|gags|on|its|own|gore|. How|do|you|spell|cliché|? It|'s|sweet|,|harmless|,|dumb|,|occasionally|funny|and|about|as|compelling|as|a|fishing|show|. The|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|. While|(|Hill|)|has|learned|new|tricks|,|the|tricks|alone|are|not|enough|to|salvage|this|lifeless|boxing|film|. In|the|real|world|,|an|actor|this|uncharismatically|beautiful|would|have|a|résumé|loaded|with|credits|like|``|Girl|in|Bar|#|3|.|'' Too|much|of|it|feels|unfocused|and|underdeveloped|. Under|15|? A|giggle|a|minute|. Over|age|15|? Big|Fat|Waste|of|Time|. Hey|Arnold|! The|Movie|is|what|happens|when|you|blow|up|small|potatoes|to|10|times|their|natural|size|,|and|it|ai|n't|pretty|. Sometimes|seems|less|like|storytelling|than|something|the|otherwise|compelling|director|needed|to|get|off|his|chest|. This|is|not|the|undisputed|worst|boxing|movie|ever|,|but|it|'s|certainly|not|a|champion|-|the|big|loser|is|the|audience|. You|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|. In|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|. Chokes|on|its|own|depiction|of|upper-crust|decorum|. Well-nigh|unendurable|...|though|the|picture|strains|to|become|cinematic|poetry|,|it|remains|depressingly|prosaic|and|dull|. I|thought|my|own|watch|had|stopped|keeping|time|as|I|slogged|my|way|through|Clockstoppers|. While|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|. This|directorial|debut|from|music|video|show-off|Higuchinsky|is|all|flash|. Yes|,|Ballistic|is|silly|. Unfortunately|,|it|'s|not|silly|fun|unless|you|enjoy|really|bad|movies|. The|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|. The|longer|the|movie|goes|,|the|worse|it|gets|,|but|it|'s|actually|pretty|good|in|the|first|few|minutes|. While|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|. Not|only|unfunny|,|but|downright|repellent|. Care|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|. Forced|,|familiar|and|thoroughly|condescending|. Does|little|more|than|play|an|innocuous|game|of|fill-in|-|the-blanks|with|a|tragic|past|. K-19|exploits|our|substantial|collective|fear|of|nuclear|holocaust|to|generate|cheap|Hollywood|tension|. Has|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 A|ragbag|of|promising|ideas|and|failed|narrative|,|of|good|acting|and|plain|old|bad|filmmaking|. Whaley|'s|determination|to|immerse|you|in|sheer|,|unrelenting|wretchedness|is|exhausting|. Uncommonly|stylish|but|equally|silly|...|the|picture|fails|to|generate|much|suspense|,|nor|does|it|ask|searching|enough|questions|to|justify|its|pretensions|. The|entire|movie|is|about|a|boring|,|sad|man|being|boring|and|sad|. The|plot|convolutions|ultimately|add|up|to|nothing|more|than|jerking|the|audience|'s|chain|. Confirms|the|nagging|suspicion|that|Ethan|Hawke|would|be|even|worse|behind|the|camera|than|he|is|in|front|of|it|. Made|with|no|discernible|craft|and|monstrously|sanctimonious|in|dealing|with|childhood|loss|. It|'s|a|trifle|of|a|movie|,|with|a|few|laughs|surrounding|an|unremarkable|soft|center|. Holden|Caulfield|did|it|better|. A|synthesis|of|cliches|and|absurdities|that|seems|positively|decadent|in|its|cinematic|flash|and|emptiness|. Oh|come|on|. Like|you|could|n't|smell|this|turkey|rotting|from|miles|away|. If|it|'s|seldom|boring|,|well|,|it|'s|also|rarely|coherent|. Simplistic|fluff-ball|of|whimsy|. Not|exactly|the|Bees|Knees It|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|. The|kind|of|spectacularly|misconceived|enterprise|that|only|a|sophisticated|cinephile|could|have|perpetrated|. Makes|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|. The|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|. Jacquot|'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|. Chabrol|has|taken|promising|material|for|a|black|comedy|and|turned|it|instead|into|a|somber|chamber|drama|. It|'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|. This|is|nothing|but|familiar|territory|. In|execution|,|this|clever|idea|is|far|less|funny|than|the|original|,|Killers|From|Space|. One|of|the|more|irritating|cartoons|you|will|see|this|,|or|any|,|year|. A|broad|,|melodramatic|estrogen|opera|that|'s|pretty|toxic|in|its|own|right|. Too|slow|,|too|long|and|too|little|happens|. The|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|. Sacrifices|the|value|of|its|wealth|of|archival|foot-age|with|its|less-than-objective|stance|. Utterly|lacking|in|charm|,|wit|and|invention|,|Roberto|Benigni|'s|Pinocchio|is|an|astonishingly|bad|film|. A|hamfisted|romantic|comedy|that|makes|our|girl|the|hapless|facilitator|of|an|extended|cheap|shot|across|the|Mason-Dixon|line|. Scores|no|points|for|originality|,|wit|,|or|intelligence|. It|'s|a|cookie-cutter|movie|,|a|cut-and-paste|job|. They|takes|a|long|time|to|get|to|its|gasp-inducing|ending|. Barely|gets|off|the|ground|. Even|on|those|rare|occasions|when|the|narrator|stops|yammering|,|Miller|'s|hand|often|feels|unsure|. Pumpkin|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|. At|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|. From|the|opening|scenes|,|it|'s|clear|that|All|About|the|Benjamins|is|a|totally|formulaic|movie|. It|takes|a|certain|kind|of|horror|movie|to|qualify|as|`|worse|than|expected|,|'|but|Ghost|Ship|somehow|manages|to|do|exactly|that|. On|the|bright|side|,|it|contains|Jesse|Ventura|'s|best|work|since|the|XFL|. Despite|impeccable|acting|...|and|a|script|that|takes|some|rather|unexpected|(|even|,|at|times|,|preposterous|)|turns|,|Love|is|just|too|,|too|precious|in|the|end|. A|TV|style|murder|mystery|with|a|few|big|screen|moments|(|including|one|that|seems|to|be|made|for|a|different|film|altogether|)|. By|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|. Too|often|,|the|viewer|is|n't|reacting|to|humor|so|much|as|they|are|wincing|back|in|repugnance|. Dilbert|without|the|right-on|satiric|humor|. Manages|to|show|life|in|all|of|its|banality|when|the|intention|is|quite|the|opposite|. Do|not|see|this|film|. Minority|Report|is|exactly|what|the|title|indicates|,|a|report|. Delivers|the|same|old|same|old|,|tarted|up|with|Latin|flava|and|turned|out|by|Hollywood|playas|. If|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|. To|call|The|Other|Side|of|Heaven|``|appalling|''|would|be|to|underestimate|just|how|dangerous|entertainments|like|it|can|be|. In|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|. If|only|the|story|about|a|multi-million|dollar|con|bothered|to|include|the|con|. I|'d|have|to|say|the|star|and|director|are|the|big|problems|here|. Without|the|dark|spookiness|of|Crystal|Lake|Camp|,|the|horror|concept|completely|loses|its|creepy|menace|. It|'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|?|)|. While|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|. For|close|to|two|hours|the|audience|is|forced|to|endure|three|terminally|depressed|,|mostly|inarticulate|,|hyper|dysfunctional|families|for|the|price|of|one|. To|my|taste|,|the|film|'s|comic|characters|come|perilously|close|to|being|Amoses|and|Andys|for|a|new|generation|. What|the|director|ca|n't|do|is|make|either|of|Val|Kilmer|'s|two|personas|interesting|or|worth|caring|about|. In|an|effort|,|I|suspect|,|not|to|offend|by|appearing|either|too|serious|or|too|lighthearted|,|it|offends|by|just|being|wishy-washy|. It|'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|. Harland|Williams|is|so|funny|in|drag|he|should|consider|permanent|sex-reassignment|. ...|nothing|scary|here|except|for|some|awful|acting|and|lame|special|effects|. It|'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|. A|very|long|movie|,|dull|in|stretches|,|with|entirely|too|much|focus|on|meal|preparation|and|igloo|construction|. Not|an|objectionable|or|dull|film|;|it|merely|lacks|everything|except|good|intentions|. A|science-fiction|pastiche|so|lacking|in|originality|that|if|you|stripped|away|its|inspirations|there|would|be|precious|little|left|. Once|(|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|. The|words|,|`|Frankly|,|my|dear|,|I|do|n't|give|a|damn|,|'|have|never|been|more|appropriate|. What|'s|next|:|``|My|Mother|the|Car|?|'' All|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|. A|sequel|that|'s|much|too|big|for|its|britches|. So|unremittingly|awful|that|labeling|it|a|dog|probably|constitutes|cruelty|to|canines|. What|was|once|original|has|been|co-opted|so|frequently|that|it|now|seems|pedestrian|. A|perplexing|example|of|promise|unfulfilled|,|despite|many|charming|moments|. For|all|the|writhing|and|wailing|,|tears|,|rage|and|opium|overdoses|,|there|'s|no|sense|of|actual|passion|being|washed|away|in|love|'s|dissolution|. A|coarse|and|stupid|gross-out|. a|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|. Does|n't|offer|much|besides|glib|soullessness|,|raunchy|language|and|a|series|of|brutal|set|pieces|...|that|raise|the|bar|on|stylized|screen|violence|. There|'s|something|with|potential|here|,|but|the|movie|decides|,|like|Lavinia|,|to|go|the|conservative|route|. It|'s|one|pussy-ass|world|when|even|killer-thrillers|revolve|around|group|therapy|sessions|. The|stripped-down|approach|does|give|the|film|a|certain|timeless|quality|,|but|the|measured|pace|and|lack|of|dramatic|inflection|can|also|seem|tedious|. But|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|. Rarely|has|so|much|money|delivered|so|little|entertainment|. Tries|to|add|some|spice|to|its|quirky|sentiments|but|the|taste|is|all|too|familiar|. Paid|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|. Harrison|'s|Flowers|puts|its|heart|in|the|right|place|,|but|its|brains|are|in|no|particular|place|at|all|. This|re-do|is|so|dumb|and|so|exploitative|in|its|violence|that|,|ironically|,|it|becomes|everything|that|the|rather|clumsy|original|was|railing|against|. A|string|of|rehashed|sight|gags|based|in|insipid|vulgarity|. The|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|. Basically|a|static|series|of|semi-improvised|(|and|semi-coherent|)|raps|between|the|stars|. Too|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|. An|unpredictable|blend|of|gal-pal|smart|talk|,|romantic|comedy|and|dark|tragedy|that|bites|off|considerably|more|than|writer\/director|John|McKay|can|swallow|. It|'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|. ``|The|Time|Machine|''|is|a|movie|that|has|no|interest|in|itself|. It|does|n't|believe|in|itself|,|it|has|no|sense|of|humor|...|it|'s|just|plain|bored|. ...|a|hollow|joke|told|by|a|cinematic|gymnast|having|too|much|fun|embellishing|the|misanthropic|tale|to|actually|engage|it|. A|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|... The|film|'s|essentially|over|by|the|meet-cute|. I|'m|sure|if|you|'re|a|Hartley|fan|,|you|might|enjoy|yourself|...|Me|,|I|did|n't|care|for|it|. It|'s|about|following|your|dreams|,|no|matter|what|your|parents|think|. Socrates|motions|for|hemlock|. The|script|is|n't|very|good|;|not|even|someone|as|gifted|as|Hoffman|(|the|actor|)|can|make|it|work|. Walter|Hill|'s|pulpy|,|stylized|boxing|melodrama|Undisputed|nearly|overcomes|its|questionable|in-the-ring|match-up|with|solid|fight|choreography|and|gritty|prison|authenticity|. It|has|all|the|excitement|of|eating|oatmeal|. It|'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|. Although|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|. I|'ll|bet|the|video|game|is|a|lot|more|fun|than|the|film|. Star|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|. Like|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|. I|do|n't|mind|having|my|heartstrings|pulled|,|but|do|n't|treat|me|like|a|fool|. ...|although|this|idea|is|``|new|''|the|results|are|tired|. I|'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|. An|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.|. Its|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|. For|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|. Do|n't|be|fooled|by|the|impressive|cast|list|-|Eye|See|You|is|pure|junk|. Not|since|Freddy|Got|Fingered|has|a|major|release|been|so|painful|to|sit|through|. The|documentary|does|little|,|apart|from|raising|the|topic|,|to|further|stoke|the|conversation|. Plays|like|a|volatile|and|overlong|W|magazine|fashion|spread|. A|better|title|,|for|all|concerned|,|might|be|Swept|Under|the|Rug|. This|movie|seems|to|have|been|written|using|Mad-libs|. There|can|be|no|other|explanation|. Hilariously|inept|and|ridiculous|. Vera|'s|technical|prowess|ends|up|selling|his|film|short|;|he|smoothes|over|hard|truths|even|as|he|uncovers|them|. (|A|)|shapeless|blob|of|desperate|entertainment|. Feels|too|formulaic|and|too|familiar|to|produce|the|transgressive|thrills|of|early|underground|work|. Given|how|heavy-handed|and|portent-heavy|it|is|,|this|could|be|the|worst|thing|Soderbergh|has|ever|done|. a|by-the-numbers|patient\/doctor|pic|that|covers|all|the|usual|ground A|dumb|movie|with|dumb|characters|doing|dumb|things|and|you|have|to|be|really|dumb|not|to|see|where|this|is|going|. Stealing|Harvard|aspires|to|comedic|grand|larceny|but|stands|convicted|of|nothing|more|than|petty|theft|of|your|time|. Pretension|,|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|. With|the|exception|of|some|fleetingly|amusing|improvisations|by|Cedric|the|Entertainer|as|Perry|'s|boss|,|there|is|n't|a|redeeming|moment|here|. It|'s|a|grab|bag|of|genres|that|do|n't|add|up|to|a|whole|lot|of|sense|. Movie|fans|,|get|ready|to|take|off|...|the|other|direction|. (|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|. The|intent|is|almost|exactly|the|same|(|as|The|Full|Monty|)|. All|that|'s|missing|is|the|spontaneity|,|originality|and|delight|. No|one|but|a|convict|guilty|of|some|truly|heinous|crime|should|have|to|sit|through|The|Master|of|Disguise|. Even|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|. There|'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|. It|'s|not|without|its|pleasures|,|but|I|'ll|stick|with|The|Tune|. Miller|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|. Despite|the|evocative|aesthetics|evincing|the|hollow|state|of|modern|love|life|,|the|film|never|percolates|beyond|a|monotonous|whine|. More|maudlin|than|sharp|. This|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|. It|'s|slow|--|very|,|very|slow|. It|'s|not|the|ultimate|Depression-era|gangster|movie|. That|'s|pure|PR|hype|. Characters|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|. Comes|...|uncomfortably|close|to|coasting|in|the|treads|of|The|Bicycle|Thief|. Visually|rather|stunning|,|but|ultimately|a|handsome-looking|bore|,|the|true|creativity|would|have|been|to|hide|Treasure|Planet|entirely|and|completely|reimagine|it|. Stealing|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|. There|seems|to|be|no|clear|path|as|to|where|the|story|'s|going|,|or|how|long|it|'s|going|to|take|to|get|there|. If|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|. I|do|n't|think|I|laughed|out|loud|once|. And|when|you|'re|talking|about|a|slapstick|comedy|,|that|'s|a|pretty|big|problem|. It|'s|so|mediocre|,|despite|the|dynamic|duo|on|the|marquee|,|that|we|just|ca|n't|get|no|satisfaction|. Slapstick|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|? ...|turns|so|unforgivably|trite|in|its|last|10|minutes|that|anyone|without|a|fortified|sweet|tooth|will|likely|go|into|sugar|shock|. The|notion|that|bombing|buildings|is|the|funniest|thing|in|the|world|goes|entirely|unexamined|in|this|startlingly|unfunny|comedy|. My|reaction|in|a|word|:|disappointment|. His|last|movie|was|poetically|romantic|and|full|of|indelible|images|,|but|his|latest|has|nothing|going|for|it|. It|kinda|works|and|qualifies|as|cool|at|times|,|but|is|just|too|lame|to|work|or|be|cool|at|others|. Sustains|its|dreamlike|glide|through|a|succession|of|cheesy|coincidences|and|voluptuous|cheap|effects|,|not|the|least|of|which|is|Rebecca|Romijn-Stamos|. Intriguing|documentary|which|is|emotionally|diluted|by|focusing|on|the|story|'s|least|interesting|subject|. Feels|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|. For|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|. In|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|. I|'ve|always|dreamed|of|attending|Cannes|,|but|after|seeing|this|film|,|it|'s|not|that|big|a|deal|. The|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|. A|workshop|mentality|prevails|. It|can|not|be|enjoyed|,|even|on|the|level|that|one|enjoys|a|bad|slasher|flick|,|primarily|because|it|is|dull|. Yes|,|dull|. Pumpkin|wants|to|have|it|both|ways|. Director|Uwe|Boll|and|the|actors|provide|scant|reason|to|care|in|this|crude|'70s|throwback|. (|W|)|hile|long|on|amiable|monkeys|and|worthy|environmentalism|,|Jane|Goodall|'s|Wild|Chimpanzees|is|short|on|the|thrills|the|oversize|medium|demands|. Outer-space|buffs|might|love|this|film|,|but|others|will|find|its|pleasures|intermittent|. This|piece|of|Channel|5|grade|trash|is|,|quite|frankly|,|an|insult|to|the|intelligence|of|the|true|genre|enthusiast|. An|occasionally|funny|,|but|overall|limp|,|fish-out-of-water|story|. A|bloated|gasbag|thesis|grotesquely|impressed|by|its|own|gargantuan|aura|of|self-importance|... It|'s|mighty|tedious|for|the|viewer|who|has|to|contend|with|unpleasant|characters|,|hit-and-miss|performances|and|awkwardly|staged|scenes|. As|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|. New|Best|Friend|'s|Playboy-mansion|presentation|of|college|life|is|laugh-out-loud|ludicrous|. an|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|... The|humor|is|forced|and|heavy-handed|,|and|occasionally|simply|unpleasant|. Scorsese|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|. While|the|script|starts|promisingly|,|it|loses|steam|towards|the|middle|and|never|really|develops|beyond|attacking|obvious|target|. As|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|. This|is|n't|even|Madonna|'s|Swept|Away|. This|is|her|Blue|Lagoon|. The|director|knows|how|to|apply|textural|gloss|,|but|his|portrait|of|sex-as-war|is|strictly|sitcom|. ...|the|film|suffers|from|a|lack|of|humor|(|something|needed|to|balance|out|the|violence|)|... Burns|never|really|harnesses|to|full|effect|the|energetic|cast|. An|overemphatic|,|would-be|wacky|,|ultimately|tedious|sex|farce|. Has|all|the|depth|of|a|wading|pool|. This|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|. The|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|. ...|the|movie|is|just|a|plain|old|monster|. If|this|disposable|tissue|has|one|wild|card|,|it|'s|John|Turturro|,|who|'s|simply|fab|as|a|Spanish|butler|with|a|foot|fetish|. One|long|string|of|cliches|. Fancy|a|real|downer|? (|Leigh|)|lays|it|on|so|thick|this|time|that|it|feels|like|a|suicide|race|. Professionally|speaking|,|it|'s|tempting|to|jump|ship|in|January|to|avoid|ridiculous|schlock|like|this|shoddy|suspense|thriller|. Nelson|'s|brutally|unsentimental|approach|...|sucks|the|humanity|from|the|film|,|leaving|behind|an|horrific|but|weirdly|unemotional|spectacle|. Weaves|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|. At|once|half-baked|and|overheated|. There|'s|a|solid|woman|-|finding-herself|story|somewhere|in|here|,|but|you|'d|have|to|dig|pretty|deep|to|uncover|it|. I|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|. (|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|. By|the|miserable|standards|to|which|the|slasher|genre|has|sunk|,|...|actually|pretty|good|. Of|course|,|by|more|objective|measurements|it|'s|still|quite|bad|. The|only|entertainment|you|'ll|derive|from|this|choppy|and|sloppy|affair|will|be|from|unintentional|giggles|--|several|of|them|. Sam|Mendes|has|become|valedictorian|at|the|School|for|Soft|Landings|and|Easy|Ways|Out|. Exactly|what|it|claims|to|be|--|a|simple|diversion|for|the|kids|. Its|story|may|be|a|thousand|years|old|,|but|why|did|it|have|to|seem|like|it|took|another|thousand|to|tell|it|to|us|? The|problem|with|this|film|is|that|it|lacks|focus|. I|sympathize|with|the|plight|of|these|families|,|but|the|movie|does|n't|do|a|very|good|job|conveying|the|issue|at|hand|. A|momentary|escape|from|the|summer|heat|and|the|sedentary|doldrums|that|set|in|at|this|time|of|year|. ...|think|of|it|as|American|Pie|On|Valium|. Dull|,|lifeless|,|and|amateurishly|assembled|. Puportedly|``|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|. ...|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|! It|'s|a|bad|thing|when|a|movie|has|about|as|much|substance|as|its|end|credits|blooper|reel|. With|its|dogged|Hollywood|naturalism|and|the|inexorable|passage|of|its|characters|toward|sainthood|,|Windtalkers|is|nothing|but|a|sticky-sweet|soap|. Some|of|it|is|clever|,|but|it|is|never|melodic|\/ Better|to|just|call|it|ABC|Kiarostami|. For|AIDS|and|Africa|are|nothing|more|than|part|of|the|scenery|. No|aspirations|to|social|import|inform|the|movie|version|. This|is|a|shameless|sham|,|calculated|to|cash|in|on|the|popularity|of|its|stars|. Manages|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|. This|rather|superficial|arthouse|middle-brow|film|knows|how|to|please|a|crowd|,|and|that|'s|about|all|it|does|well|. It|'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|. As|vulgar|as|it|is|banal|. You|wonder|why|Enough|was|n't|just|a|music|video|rather|than|a|full-length|movie|. The|film|'s|tone|and|pacing|are|off|almost|from|the|get-go|. The|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|. More|whiny|downer|than|corruscating|commentary|. Tambor|and|Clayburgh|make|an|appealing|couple|--|he|'s|understated|and|sardonic|,|she|'s|appealingly|manic|and|energetic|. Both|deserve|better|. Suffocated|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|. Coughs|and|sputters|on|its|own|postmodern|conceit|. A|wildly|inconsistent|emotional|experience|. Sit|through|this|one|,|and|you|wo|n't|need|a|magic|watch|to|stop|time|;|your|DVD|player|will|do|it|for|you|. A|sometimes|tedious|film|. Teen|movies|have|really|hit|the|skids|. There|are|plot|holes|big|enough|for|Shamu|the|killer|whale|to|swim|through|. ...|plays|like|somebody|spliced|random|moments|of|a|Chris|Rock|routine|into|what|is|otherwise|a|cliche-riddled|but|self-serious|spy|thriller|. Nasty|,|ugly|,|pointless|and|depressing|,|even|if|you|hate|clowns|. What|is|100|%|missing|here|is|a|script|of|even|the|most|elemental|literacy|,|an|inkling|of|genuine|wit|,|and|anything|resembling|acting|. does|paint|some|memorable|images|...|,|but|Makhmalbaf|keeps|her|distance|from|the|characters It|uses|the|pain|and|violence|of|war|as|background|material|for|color|. just|not|campy|enough The|movie|,|directed|by|Mick|Jackson|,|leaves|no|cliche|unturned|,|from|the|predictable|plot|to|the|characters|straight|out|of|central|casting|. It|'s|everything|you|do|n't|go|to|the|movies|for|. Like|watching|a|dress|rehearsal|the|week|before|the|show|goes|up|:|everything|'s|in|place|but|something|'s|just|a|little|off-kilter|. The|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|. For|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|. American|Chai|encourages|rueful|laughter|at|stereotypes|only|an|Indian-American|would|recognize|. And|the|lesson|,|in|the|end|,|is|nothing|new|. It|made|me|want|to|wrench|my|eyes|out|of|my|head|and|toss|them|at|the|screen|. Due|to|some|script|weaknesses|and|the|casting|of|the|director|'s|brother|,|the|film|trails|off|into|inconsequentiality|. ...|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|. So|devoid|of|any|kind|of|intelligible|story|that|it|makes|films|like|XXX|and|Collateral|Damage|seem|like|thoughtful|treatises Combining|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|. Dragonfly|has|no|atmosphere|,|no|tension|--|nothing|but|Costner|,|flailing|away|. It|'s|a|buggy|drag|. Works|hard|to|establish|rounded|characters|,|but|then|has|nothing|fresh|or|particularly|interesting|to|say|about|them|. The|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|. Nonsensical|,|dull|``|cyber-horror|''|flick|is|a|grim|,|hollow|exercise|in|flat|scares|and|bad|acting|. Instead|of|hiding|Pinocchio|from|critics|,|Miramax|should|have|hidden|it|from|everyone|. Manages|to|be|both|repulsively|sadistic|and|mundane|. A|great|ensemble|cast|ca|n't|lift|this|heartfelt|enterprise|out|of|the|familiar|. There|ought|to|be|a|directing|license|,|so|that|Ed|Burns|can|have|his|revoked|. The|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|. Whereas|last|year|'s|exemplary|Sexy|Beast|seemed|to|revitalize|the|British|gangster|movie|,|this|equally|brutal|outing|merely|sustains|it|. ...|a|boring|parade|of|talking|heads|and|technical|gibberish|that|will|do|little|to|advance|the|Linux|cause|. Green|might|want|to|hang|onto|that|ski|mask|,|as|robbery|may|be|the|only|way|to|pay|for|his|next|project|. I|can|take|infantile|humor|...|but|this|is|the|sort|of|infantile|that|makes|you|wonder|about|changing|the|director|and|writer|'s|diapers|. There|is|n't|nearly|enough|fun|here|,|despite|the|presence|of|some|appealing|ingredients|. The|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|. Directed|in|a|paint-by-numbers|manner|. A|cheerful|enough|but|imminently|forgettable|rip-off|of|(|Besson|'s|)|earlier|work|. A|lackluster|,|unessential|sequel|to|the|classic|Disney|adaptation|of|J.M.|Barrie|'s|Peter|Pan|. Samira|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 ...|routine|,|harmless|diversion|and|little|else|. Late|Marriage|'s|stiffness|is|unlikely|to|demonstrate|the|emotional|clout|to|sweep|U.S.|viewers|off|their|feet|. This|time|Mr.|Burns|is|trying|something|in|the|Martin|Scorsese|street-realist|mode|,|but|his|self-regarding|sentimentality|trips|him|up|again|. While|there|'s|something|intrinsically|funny|about|Sir|Anthony|Hopkins|saying|`|Get|in|the|car|,|bitch|,|'|this|Jerry|Bruckheimer|production|has|little|else|to|offer It|'s|hampered|by|a|Lifetime-channel|kind|of|plot|and|a|lead|actress|who|is|out|of|her|depth|. Let|'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|. Is|there|a|group|of|more|self-absorbed|women|than|the|mother|and|daughters|featured|in|this|film|? I|do|n't|think|so|. Nothing|wrong|with|performances|here|,|but|the|whiney|characters|bugged|me|. There|is|very|little|dread|or|apprehension|,|and|though|I|like|the|creepy|ideas|,|they|are|not|executed|with|anything|more|than|perfunctory|skill|. If|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|. In|the|end|,|the|movie|collapses|on|its|shaky|foundation|despite|the|best|efforts|of|director|Joe|Carnahan|. Adults|will|wish|the|movie|were|less|simplistic|,|obvious|,|clumsily|plotted|and|shallowly|characterized|. But|what|are|adults|doing|in|the|theater|at|all|? Sticky|sweet|sentimentality|,|clumsy|plotting|and|a|rosily|myopic|view|of|life|in|the|WWII-era|Mississippi|Delta|undermine|this|adaptation|. It|'s|another|stale|,|kill-by-numbers|flick|,|complete|with|blade-thin|characters|and|terrible|,|pun-laden|dialogue|. Every|time|you|look|,|Sweet|Home|Alabama|is|taking|another|bummer|of|a|wrong|turn|. Partway|through|watching|this|saccharine|,|Easter-egg-colored|concoction|,|you|realize|that|it|is|made|up|of|three|episodes|of|a|rejected|TV|show|. The|overall|effect|is|less|like|a|children|'s|movie|than|a|recruitment|film|for|future|Hollywood|sellouts|. Portentous|and|pretentious|,|The|Weight|of|Water|is|appropriately|titled|,|given|the|heavy-handedness|of|it|drama|. A|fitfully|amusing|romp|that|,|if|nothing|else|,|will|appeal|to|fans|of|Malcolm|in|the|Middle|and|its|pubescent|star|,|Frankie|Muniz|. Jason|X|is|positively|anti-Darwinian|:|nine|sequels|and|400|years|later|,|the|teens|are|none|the|wiser|and|Jason|still|kills|on|auto-pilot|. To|say|this|was|done|better|in|Wilder|'s|Some|Like|It|Hot|is|like|saying|the|sun|rises|in|the|east|. At|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|. The|actors|are|appealing|,|but|Elysian|Fields|is|idiotic|and|absurdly|sentimental|. As|`|chick|flicks|'|go|,|this|one|is|pretty|miserable|,|resorting|to|string-pulling|rather|than|legitimate|character|development|and|intelligent|plotting|. The|only|excitement|comes|when|the|credits|finally|roll|and|you|get|to|leave|the|theater|. There|'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|. It|ca|n't|decide|if|it|wants|to|be|a|mystery\/thriller|,|a|romance|or|a|comedy|. Denis|O'Neill|'s|script|avoids|the|prime|sports|cliche|,|a|last-second|goal|to|win|the|championship|,|but|it|neglects|few|others|. The|character|of|ZigZag|is|not|sufficiently|developed|to|support|a|film|constructed|around|him|. One|of|those|pictures|whose|promising|,|if|rather|precious|,|premise|is|undercut|by|amateurish|execution|. Serving|Sara|does|n't|serve|up|a|whole|lot|of|laughs|. The|most|hopelessly|monotonous|film|of|the|year|,|noteworthy|only|for|the|gimmick|of|being|filmed|as|a|single|unbroken|87-minute|take|. With|virtually|no|interesting|elements|for|an|audience|to|focus|on|,|Chelsea|Walls|is|a|triple-espresso|endurance|challenge|. Deadeningly|dull|,|mired|in|convoluted|melodrama|,|nonsensical|jargon|and|stiff-upper-lip|laboriousness|. A|misogynistic|piece|of|filth|that|attempts|to|pass|itself|off|as|hip|,|young|adult|entertainment|. Like|the|Chelsea|'s|denizens|...|Burdette|'s|collage-form|scenario|tends|to|over-romanticize|the|spiritual|desolation|of|the|struggling|artiste|. It|'s|basically|an|overlong|episode|of|Tales|from|the|Crypt|. The|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|. Another|in-your-face|wallow|in|the|lower|depths|made|by|people|who|have|never|sung|those|blues|. Shaky|close-ups|of|turkey-on-rolls|,|stubbly|chins|,|liver|spots|,|red|noses|and|the|filmmakers|new|bobbed|do|draw|easy|chuckles|but|lead|nowhere|. I|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|. Complete|lack|of|originality|,|cleverness|or|even|visible|effort Though|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|. Something|akin|to|a|Japanese|Alice|Through|the|Looking|Glass|,|except|that|it|seems|to|take|itself|far|more|seriously|. It|takes|talent|to|make|a|lifeless|movie|about|the|most|heinous|man|who|ever|lived|. On|the|whole|,|the|movie|lacks|wit|,|feeling|and|believability|to|compensate|for|its|incessant|coarseness|and|banality|. The|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|. Offers|very|little|genuine|romance|and|even|fewer|laughs|...|a|sad|sitcom|of|a|movie|,|largely|devoid|of|charm|. Makes|for|a|pretty|unpleasant|viewing|experience|. The|movie|fails|to|live|up|to|the|sum|of|its|parts|. Although|Huppert|'s|intensity|and|focus|has|a|raw|exhilaration|about|it|,|The|Piano|Teacher|is|anything|but|fun|. It|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|. Bad|. Very|bad|. Stultifyingly|,|dumbfoundingly|,|mind-numbingly|bad|. May|reawaken|discussion|of|the|Kennedy|assassination|but|this|fictional|film|looks|made|for|cable|rather|than|for|the|big|screen|. If|looking|for|a|thrilling|sci-fi|cinematic|ride|,|do|n't|settle|for|this|Imposter|. Not|really|bad|so|much|as|distasteful|:|We|need|kidnapping|suspense|dramas|right|now|like|we|need|doomsday|thrillers|. The|result|is|a|gaudy|bag|of|stale|candy|,|something|from|a|Halloween|that|died|. Davis|...|is|so|enamored|of|her|own|creation|that|she|ca|n't|see|how|insufferable|the|character|is|. The|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|. The|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|did|n't|quite|engage|this|adult|. Historical|dramas|fused|with|love|triangle|is|a|well|worn|conceit|. But|this|films|lacks|the|passion|required|to|sell|the|material|. Long|Time|Dead|? Not|nearly|long|enough|. Nothing|more|substantial|than|a|fitfully|clever|doodle|. A|solid|film|...|but|more|conscientious|than|it|is|truly|stirring|. There|'s|not|enough|here|to|justify|the|almost|two|hours|. The|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|. Perceptive|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|. Verbinski|implements|every|hack-artist|trick|to|give|us|the|ooky-spookies|. McConaughey|'s|fun|to|watch|,|the|dragons|are|okay|,|not|much|fire|in|the|script|. An|unwise|amalgam|of|Broadcast|News|and|Vibes|. Skins|has|a|right|to|yawp|,|and|we|have|a|right|to|our|grains|of|salt|. Who|needs|love|like|this|? Hit|and|miss|as|far|as|the|comedy|goes|and|a|big|ole|'|miss|in|the|way|of|story|. Returning|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|. Exists|then|as|an|occasionally|insightful|acting|exercise|. Trite|,|banal|,|cliched|,|mostly|inoffensive|. Mattei|is|tiresomely|grave|and|long-winded|,|as|if|circularity|itself|indicated|profundity|. It|'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|. Whenever|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|. It|offers|little|beyond|the|momentary|joys|of|pretty|and|weightless|intellectual|entertainment|. A|sequence|of|ridiculous|shoot|-|'em|-|up|scenes|. Nothing|in|Waking|Up|in|Reno|ever|inspired|me|to|think|of|its|inhabitants|as|anything|more|than|markers|in|a|screenplay|. I|'m|just|too|bored|to|care|. Irwin|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|. Not|a|stereotype|is|omitted|nor|a|cliché|left|unsaid|. As|befits|its|title|,|this|PG-13-rated|piffle|is|ultimately|as|threatening|as|the|Snuggle|Fabric|Softener|bear|. Attempts|by|this|ensemble|film|to|impart|a|message|are|so|heavy-handed|that|they|instead|pummel|the|audience|. It|all|feels|like|a|Monty|Python|sketch|gone|horribly|wrong|. Nervous|breakdowns|are|not|entertaining|. Scorsese|does|n't|give|us|a|character|worth|giving|a|damn|about|. A|beautifully|made|piece|of|unwatchable|drivel|. Like|being|trapped|at|a|perpetual|frat|party|...|How|can|something|so|gross|be|so|boring|? This|is|so|bad|. Even|film|silliness|needs|a|little|gravity|,|beyond|good|hair|and|humping|. I|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|. Prurient|playthings|aside|,|there|'s|little|to|love|about|this|English|trifle|. This|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|. The|film|flat|lines|when|it|should|peak|and|is|more|missed|opportunity|and|trifle|than|dark|,|decadent|truffle|. It|'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|. Van|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|. A|disappointment|for|those|who|love|alternate|versions|of|the|Bard|,|particularly|ones|that|involve|deep|fryers|and|hamburgers|. The|film|tries|too|hard|to|be|funny|and|tries|too|hard|to|be|hip|. The|end|result|is|a|film|that|'s|neither|. Every|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|. Scooby|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|! Is|the|time|really|ripe|for|a|warmed-over|James|Bond|adventure|,|with|a|village|idiot|as|the|007|clone|? There|'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|. However|it|may|please|those|who|love|movies|that|blare|with|pop|songs|,|young|science|fiction|fans|will|stomp|away|in|disgust|. The|humor|is|n't|as|sharp|,|the|effects|not|as|innovative|,|nor|the|story|as|imaginative|as|in|the|original|. But|it|could|have|been|worse|. Some|of|their|jokes|work|,|but|most|fail|miserably|and|in|the|end|,|Pumpkin|is|far|more|offensive|than|it|is|funny|. Even|horror|fans|will|most|likely|not|find|what|they|'re|seeking|with|Trouble|Every|Day|;|the|movie|lacks|both|thrills|and|humor|. comes|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|. it|seems|to|me|the|film|is|about|the|art|of|ripping|people|off|without|ever|letting|them|consciously|know|you|have|done|so It|'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|. The|title|not|only|describes|its|main|characters|,|but|the|lazy|people|behind|the|camera|as|well|. Sometimes|it|feels|as|if|it|might|have|been|made|in|the|'70s|or|'80s|,|and|starred|Chevy|Chase|and|Goldie|Hawn|. Schaeffer|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|. Demands|too|much|of|most|viewers|. The|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|. It|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|. Shamelessly|sappy|and|,|worse|,|runs|away|from|its|own|provocative|theme|. The|Ring|just|left|me|cold|and|wet|like|I|was|out|in|the|Seattle|drizzle|without|rainwear|. The|film|seems|a|dead|weight|. The|lack|of|pace|kills|it|,|although|,|in|a|movie|about|cancer|,|this|might|be|apt|. For|anyone|who|grew|up|on|Disney|'s|1950|Treasure|Island|,|or|remembers|the|1934|Victor|Fleming|classic|,|this|one|feels|like|an|impostor|. A|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|. Meandering|,|sub-aquatic|mess|:|It|'s|so|bad|it|'s|good|,|but|only|if|you|slide|in|on|a|freebie|. The|ending|is|a|cop-out|. What|happens|to|John|Q|? I|do|n't|have|an|I|Am|Sam|clue|. Has|the|feel|of|an|unedited|personal|journal|. Remember|when|Bond|had|more|glamour|than|clamor|? No|more|. Cry|havoc|and|let|slip|the|dogs|of|cheese|,|indeed|. This|charmless|nonsense|ensues|amid|clanging|film|references|that|make|Jay|and|Silent|Bob|'s|Excellent|Adventure|seem|understated|. It|does|n't|quite|deserve|the|gong|,|but|there|are|more|fascinating|acts|than|``|Confessions|of|a|Dangerous|Mind|.|'' The|subject|of|swinging|still|seems|ripe|for|a|documentary|--|just|not|this|one|. ...|Hudlin|is|stuck|trying|to|light|a|fire|with|soggy|leaves|. Unlike|his|directorial|efforts|,|La|Femme|Nikita|and|The|Professional|,|The|Transporter|lacks|Besson|'s|perspective|as|a|storyteller|. The|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|. Most|of|the|supporting|characters|in|Eastwood|films|are|weak|,|as|are|most|of|the|subplots|. This|one|'s|weaker|than|most|. Audiences|will|find|no|mention|of|political|prisoners|or|persecutions|that|might|paint|the|Castro|regime|in|less|than|saintly|tones|. The|film|takes|too|long|getting|to|the|good|stuff|,|then|takes|too|long|figuring|out|what|to|do|next|. You|can|practically|smell|the|patchouli|oil|. To|say|Analyze|That|is|De|Niro|'s|best|film|since|Meet|the|Parents|sums|up|the|sad|state|of|his|recent|career|. The|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|. An|often-deadly|boring|,|strange|reading|of|a|classic|whose|witty|dialogue|is|treated|with|a|baffling|casual|approach This|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|. Consists|of|a|plot|and|jokes|done|too|often|by|people|far|more|talented|than|Ali|G Another|week|,|another|gross-out|college|comedy|--|ugh|. Moderately|involving|despite|bargain-basement|photography|and|hackneyed|romance|. There|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|. The|editing|is|chaotic|,|the|photography|grainy|and|badly|focused|,|the|writing|unintentionally|hilarious|,|the|direction|unfocused|,|the|performances|as|wooden|. When|(|De|Palma|'s|)|bad|,|he|'s|really|bad|,|and|Femme|Fatale|ranks|with|the|worst|he|has|done|. Tadpole|is|emblematic|of|the|witless|ageism|afflicting|films|:|Young|is|cool|,|and|too|young|is|too|cool|. I|doubt|anyone|will|remember|the|picture|by|the|time|Christmas|really|rolls|around|,|but|maybe|it|'ll|be|on|video|by|then|. Uncertain|in|tone|...|a|garbled|exercise|in|sexual|politics|,|a|junior|varsity|Short|Cuts|by|way|of|Very|Bad|Things|. All|'s|well|that|ends|well|,|and|rest|assured|,|the|consciousness-raising|lessons|are|cloaked|in|gross-out|gags|. The|only|thing|worse|than|your|substandard|,|run-of-the-mill|Hollywood|picture|is|an|angst-ridden|attempt|to|be|profound|. If|you|think|that|Jennifer|Lopez|has|shown|poor|judgment|in|planning|to|marry|Ben|Affleck|,|wait|till|you|see|Maid|in|Manhattan|. Stars|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|. It|'s|best|to|avoid|imprisonment|with|the|dull|,|nerdy|folks|that|inhabit|Cherish|. Culkin|exudes|none|of|the|charm|or|charisma|that|might|keep|a|more|general|audience|even|vaguely|interested|in|his|bratty|character|. In|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|. ...|(|like|)|channel|surfing|between|the|Discovery|Channel|and|a|late-night|made-for-cable|action|movie|. A|movie|that|,|rather|than|skip|along|the|Seine|,|more|or|less|slogs|its|way|through|soggy|Paris|,|tongue|uncomfortably|in|cheek|. Shot|perhaps|`|artistically|'|with|handheld|cameras|and|apparently|no|movie|lights|by|Joaquin|Baca-Asay|,|the|low-budget|production|swings|annoyingly|between|vertigo|and|opacity|. Imagine|a|really|bad|community|theater|production|of|West|Side|Story|without|the|songs|. Soul|is|what|'s|lacking|in|every|character|in|this|movie|and|,|subsequently|,|the|movie|itself|. A|one-trick|pony|whose|few|T&A|bits|still|ca|n't|save|itself|from|being|unoriginal|,|unfunny|and|unrecommendable|. The|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 It|may|be|a|prize|winner|,|but|Teacher|is|a|bomb|. The|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|. It|'s|got|its|heart|in|the|right|place|,|but|it|also|wilts|after|awhile|. Proves|that|a|movie|about|goodness|is|not|the|same|thing|as|a|good|movie|. Well|,|it|does|go|on|forever|. This|overproduced|and|generally|disappointing|effort|is|n't|likely|to|rouse|the|Rush|Hour|crowd|. Topkapi|this|is|not|. If|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|? Ethan|Hawke|has|always|fancied|himself|the|bastard|child|of|the|Beatnik|generation|and|it|'s|all|over|his|Chelsea|Walls|. Equal|parts|bodice-ripper|and|plodding|costume|drama|. I|'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|. While|the|film|misfires|at|every|level|,|the|biggest|downside|is|the|paucity|of|laughter|in|what|'s|supposed|to|be|a|comedy|. If|you|liked|the|1982|film|then|,|you|'ll|still|like|it|now|. A|93-minute|condensation|of|a|26-episode|TV|series|,|with|all|of|the|pitfalls|of|such|you|'d|expect|. Guillen|rarely|gets|beneath|the|surface|of|things|. She|lists|ingredients|,|but|never|mixes|and|stirs|. Audiences|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|. To|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|. It|delivers|some|chills|and|sustained|unease|,|but|flounders|in|its|quest|for|Deeper|Meaning|. Credibility|levels|are|low|and|character|development|a|non-starter|. I|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|. For|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|. An|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|. A|mawkish|,|implausible|platonic|romance|that|makes|Chaplin|'s|City|Lights|seem|dispassionate|by|comparison|. Yes|,|one|enjoys|seeing|Joan|grow|from|awkward|young|woman|to|strong|,|determined|monarch|,|but|her|love|for|the|philandering|Philip|only|diminishes|her|stature|. It|'s|a|film|that|hinges|on|its|casting|,|and|Glover|really|does|n't|fit|the|part|. This|is|a|throwaway|,|junk-food|movie|whose|rap|soundtrack|was|better|tended|to|than|the|film|itself|. ...|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|. It|'s|a|trifle|. Literally|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|. Arguably|the|year|'s|silliest|and|most|incoherent|movie|. Anyway|,|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|. Chao|was|Chen|Kaige|'s|assistant|for|years|in|China|. He|has|not|learnt|that|storytelling|is|what|the|movies|are|about|. A|mixed|bag|of|a|comedy|that|ca|n't|really|be|described|as|out|of|this|world|. The|film|is|a|travesty|of|the|genre|and|even|as|spoof|takes|itself|too|seriously|. Marries|the|amateurishness|of|The|Blair|Witch|Project|with|the|illogic|of|Series|7|:|The|Contenders|to|create|a|completely|crass|and|forgettable|movie|. The|Piano|Teacher|is|the|sort|of|movie|that|discourages|American|audiences|from|ever|wanting|to|see|another|foreign|film|. If|it|'s|another|regurgitated|action|movie|you|'re|after|,|there|'s|no|better|film|than|Half|Past|Dead|. So|what|is|the|point|? Lovingly|choreographed|bloodshed|taking|place|in|a|pristine|movie|neverland|,|basically|. This|is|junk|food|cinema|at|its|greasiest|. When|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|. Most|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|. The|story|is|naturally|poignant|,|but|first-time|screenwriter|Paul|Pender|overloads|it|with|sugary|bits|of|business|. You|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|! A|sermonizing|and|lifeless|paean|to|teenage|dullards|. This|dramatically|shaky|contest|of|wills|only|reiterates|the|old|Hollywood|saw|:|Evil|is|interesting|and|good|is|boring|. Before|long|,|the|film|starts|playing|like|General|Hospital|crossed|with|a|Saturday|Night|Live|spoof|of|Dog|Day|Afternoon|. The|charms|of|willful|eccentricity|,|at|least|as|evidenced|by|this|latest|cinematic|essay|,|are|beginning|to|wear|a|bit|thin|. Instead|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|? A|silly|,|self-indulgent|film|about|a|silly|,|self-indulgent|filmmaker|. Scarlet|Diva|has|a|voyeuristic|tug|,|but|all|in|all|it|'s|a|lot|less|sensational|than|it|wants|to|be|. The|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|. Flashy|,|pretentious|and|as|impenetrable|as|Morvern|'s|thick|,|working-class|Scottish|accent|. A|battle|between|bug-eye|theatre|and|dead-eye|matinee|. The|movie|is|virtually|without|context|--|journalistic|or|historical|. What|'s|worse|is|that|Pelosi|knows|it|. ...|instead|go|rent|``|Shakes|The|Clown|''|,|a|much|funnier|film|with|a|similar|theme|and|an|equally|great|Robin|Williams|performance|. Lame|,|haphazard|teen|comedy|. It|'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|. This|miserable|excuse|of|a|movie|runs|on|empty|,|believing|Flatbush|machismo|will|get|it|through|. Expect|to|be|reminded|of|other|,|better|films|,|especially|Seven|,|which|director|William|Malone|slavishly|copies|. Nair|stuffs|the|film|with|dancing|,|henna|,|ornamentation|,|and|group|song|,|but|her|narrative|clichés|and|telegraphed|episodes|smell|of|old|soap|opera|. It|'s|getting|harder|and|harder|to|ignore|the|fact|that|Hollywood|is|n't|laughing|with|us|,|folks|. It|'s|laughing|at|us|. Might|have|been|better|off|as|a|documentary|,|with|less|of|Mr.|Eyre|'s|uninspired|dramatics|and|more|of|his|sense|of|observation|and|outrage|. Every|good|actor|needs|to|do|his|or|her|own|Hamlet|. For|Benigni|it|was|n't|Shakespeare|whom|he|wanted|to|define|his|career|with|but|Pinocchio|. It|might|as|well|have|been|Problem|Child|IV|. Arnold|'s|jump|from|little|screen|to|big|will|leave|frowns|on|more|than|a|few|faces|. Both|awful|and|appealing|. The|lack|of|opposing|viewpoints|soon|grows|tiresome|--|the|film|feels|more|like|a|series|of|toasts|at|a|testimonial|dinner|than|a|documentary|. Nothing|plot-wise|is|worth|e-mailing|home|about|. We|are|left|with|a|superficial|snapshot|that|,|however|engaging|,|is|insufficiently|enlightening|and|inviting|. Helmer|DeVito|...|attempts|to|do|too|many|things|in|this|story|about|ethics|,|payola|,|vice|,|murder|,|kids|'|TV|and|revenge|. It|would|n't|be|my|preferred|way|of|spending|100|minutes|or|$|7.00|. I|hated|every|minute|of|it|. (|T|)|hose|same|extremes|prevent|us|from|taking|its|message|seriously|,|and|the|Stepford|Wives|mentality|does|n't|work|in|a|modern|context|. Obvious|politics|and|rudimentary|animation|reduce|the|chances|that|the|appeal|of|Hey|Arnold|! The|Movie|will|reach|far|beyond|its|core|demographic|. There|'s|no|mistaking|the|fact|that|this|hybrid|misses|the|impact|of|the|Disney|classic|,|and|even|that|of|the|excellent|1934|MGM|version|. A|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|. Roger|Michell|,|who|did|an|appealing|job|directing|Persuasion|and|Notting|Hill|in|England|,|gets|too|artsy|in|his|American|debut|. There|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|. Anthony|Hopkins|? Big|deal|! We|'ve|already|seen|the|prequel|to|The|Silence|of|the|Lambs|and|Hannibal|--|and|it|was|better|the|first|time|. Ostensibly|celebrates|middle-aged|girl|power|,|even|as|it|presents|friendship|between|women|as|pathetic|,|dysfunctional|and|destructive|. If|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|. Pumpkin|sits|in|a|patch|somewhere|between|mirthless|Todd|Solondzian|satire|and|callow|student|film|. Not|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|. It|'s|not|that|Waiting|For|Happiness|is|a|bad|film|,|because|it|is|n't|. It|'s|just|incredibly|dull|. The|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|. A|cumbersome|and|cliche-ridden|movie|greased|with|every|emotional|device|known|to|man|. Director|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|. Egoyan|'s|movie|is|too|complicated|to|sustain|involvement|,|and|,|if|you|'ll|excuse|a|little|critical|heresy|,|too|intellectually|ambitious|. It|wants|to|be|thought|of|as|a|subversive|little|indie|film|,|but|it|has|all|the|qualities|of|a|modern|situation|comedy|. Despite|apparent|motives|to|the|contrary|,|it|ends|up|being|,|like|(|Seinfeld|'s|)|revered|TV|show|,|about|pretty|much|nothing|. Shadyac|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|. Plays|less|like|a|coming-of-age|romance|than|an|infomercial|. There|are|a|few|laughs|and|clever|sight|gags|scattered|about|,|but|not|enough|to|make|this|anything|more|than|another|big-budget|bust|. The|story|'s|so|preposterous|that|I|did|n't|believe|it|for|a|second|,|despite|the|best|efforts|of|everyone|involved|. I|'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|. Despite|her|relentless|vim|and|winsome|facial|symmetry|,|Witherspoon|is|just|too|dialed-up|to|be|America|'s|Sweetheart|. An|ultra-low-budget|indie|debut|that|smacks|more|of|good|intentions|than|talent|. Birot|is|a|competent|enough|filmmaker|,|but|her|story|has|nothing|fresh|or|very|exciting|about|it|. De|Niro|and|McDormand|give|solid|performances|,|but|their|screen|time|is|sabotaged|by|the|story|'s|inability|to|create|interest|. Even|those|of|a|single|digit|age|will|be|able|to|recognize|that|this|story|is|too|goofy|...|even|for|Disney|. That|is|essentially|what|'s|missing|from|Blackboards|--|the|sense|of|something|bigger|,|some|ultimate|point|. A|compendium|of|Solondz|'s|own|worst|instincts|in|under|90|minutes|. If|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|?|'' It|is|a|comedy|that|'s|not|very|funny|and|an|action|movie|that|is|not|very|thrilling|(|and|an|uneasy|alliance|,|at|that|)|. The|story|is|familiar|from|its|many|predecessors|;|like|them|,|it|eventually|culminates|in|the|not-exactly|-|stunning|insight|that|crime|does|n't|pay|. You|'ll|have|more|fun|setting|fire|to|yourself|in|the|parking|lot|. You|'ll|be|more|entertained|getting|hit|by|a|bus|. Dissing|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|. Ritchie|'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|. Flat|,|but|with|a|revelatory|performance|by|Michelle|Williams|. Little|more|than|a|frothy|vanity|project|. The|film|goes|from|being|an|unusual|sci-fi|character|study|to|a|chase|flick|that|detracts|from|its|ending|. Verbinski|substitutes|atmosphere|for|action|,|tedium|for|thrills|. For|all|its|surface|frenzy|,|High|Crimes|should|be|charged|with|loitering|--|so|much|on|view|,|so|little|to|offer|. The|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|. Alex|Nohe|'s|documentary|plays|like|a|travelogue|for|what|mostly|resembles|a|real-life|,|big-budget|NC-17|version|of|Tank|Girl|. The|title|Trapped|turns|out|to|be|a|pretty|fair|description|of|how|you|feel|while|you|'re|watching|this|ultra-manipulative|thriller|. The|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|. The|story|really|has|no|place|to|go|since|Simone|is|not|real|--|she|ca|n't|provide|any|conflict|. IHOPs|do|n't|pile|on|this|much|syrup|. For|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|. focuses|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|. This|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|. A|bit|of|an|unwieldy|mess|. With|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|. The|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|. The|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|. A|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|. ...|the|last|time|I|saw|a|theater|full|of|people|constantly|checking|their|watches|was|during|my|SATs|. ...|fifty|minutes|of|tedious|adolescent|melodramatics|followed|by|thirty-five|minutes|of|inflated|nonsense|. ...|lacks|the|punch|and|verve|needed|to|make|this|genre|soar|. It|'s|often|faintly|amusing|,|but|the|problems|of|the|characters|never|become|important|to|us|,|and|the|story|never|takes|hold|. It|'s|tough|,|astringent|,|darkly|funny|and|...|well|,|it|'s|also|generic|,|untidy|,|condescending|and|mild|of|impact|rather|than|stunning|. Largely|a|for-fans|artifact|. There|'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|. Characters|wander|into|predictably|treacherous|situations|even|though|they|should|know|better|. There|'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|. (|I|)|f|you|'ve|been|to|more|than|one|indie|flick|in|your|life|,|chances|are|you|'ve|already|seen|this|kind|of|thing|. First-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|. No|reason|for|anyone|to|invest|their|hard-earned|bucks|into|a|movie|which|obviously|did|n't|invest|much|into|itself|either|. A|strong|first|quarter|,|slightly|less|so|second|quarter|,|and|average|second|half|. A|boring|,|wincingly|cute|and|nauseatingly|politically|correct|cartoon|guaranteed|to|drive|anyone|much|over|age|4|screaming|from|the|theater|. The|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|. When|the|first|few|villians|are|introduced|as|``|Spider|''|and|``|Snake|''|you|know|you|'re|in|for|a|real|winner|,|creativity|at|its|peak|. An|Afterschool|Special|without|the|courage|of|its|convictions|. The|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|. (|Director|)|Byler|may|yet|have|a|great|movie|in|him|,|but|Charlotte|Sometimes|is|only|half|of|one|. So|few|movies|explore|religion|that|it|'s|disappointing|to|see|one|reduce|it|to|an|idea|that|fits|in|a|sampler|. It|'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|. Watching|it|is|rather|like|viewing|a|long|soap|opera|in|which|only|the|first|episode|was|any|good|. It|'s|fun|,|but|a|psychological|mess|,|with|Austin|Powers|bumping|his|head|on|the|way|out|of|the|closet|. There|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|. Could|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|. I|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|. The|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|. I|wonder|what|the|reaction|of|Israelis|will|be|to|this|supposedly|evenhanded|presentation|. The|film|would|work|much|better|as|a|video|installation|in|a|museum|,|where|viewers|would|be|free|to|leave|. Immediately|. Human|Nature|initially|succeeds|by|allowing|itself|to|go|crazy|,|but|ultimately|fails|by|spinning|out|of|control|. (|It|'s|)|a|prison|soccer|movie|starring|charismatic|tough|guy|Vinnie|Jones|,|but|it|had|too|much|spitting|for|me|to|enjoy|. Not|even|the|Hanson|Brothers|can|save|it The|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|. ...|(|a|)|strained|comedy|that|jettisons|all|opportunities|for|Rock|to|make|his|mark|by|serving|up|the|usual|chaotic|nonsense|. A|sour|,|nasty|offering|. Feels|like|one|of|those|contrived|,|only-in|-|Hollywood|productions|where|name|actors|deliver|big|performances|created|for|the|sole|purpose|of|generating|Oscar|talk|. Obstacles|are|too|easily|overcome|and|there|is|n't|much|in|the|way|of|character|development|in|the|script|. It|tells|more|than|it|shows|. Earnest|falls|short|of|its|Ideal|predecessor|largely|due|to|Parker|'s|ill-advised|meddling|with|the|timeless|source|material|. The|film|might|have|been|more|satisfying|if|it|had|,|in|fact|,|been|fleshed|out|a|little|more|instead|of|going|for|easy|smiles|. Pretentious|editing|ruins|a|potentially|terrific|flick|. Not|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|''|. Do|not|,|under|any|circumstances|,|consider|taking|a|child|younger|than|middle|school|age|to|this|wallow|in|crude|humor|. Nothing|debases|a|concept|comedy|quite|like|the|grinding|of|bad|ideas|,|and|Showtime|is|crammed|full|of|them|. Much-anticipated|and|ultimately|lackluster|movie|. This|is|really|just|another|genre|picture|. Each|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|. William|Shatner|,|as|a|pompous|professor|,|is|the|sole|bright|spot|... A|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|. Neither|funny|nor|suspenseful|nor|particularly|well-drawn|. Acting|,|particularly|by|Tambor|,|almost|makes|``|Never|Again|''|worthwhile|,|but|(|writer\/director|)|Schaeffer|should|follow|his|titular|advice Both|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|. ``|Collateral|Damage|''|goes|by|the|numbers|and|reps|decent|action|entertainment|--|until|the|silly|showdown|ending|that|forces|the|viewer|to|totally|suspend|disbelief `|Enigma|'|is|a|good|name|for|a|movie|this|delibrately|obtuse|and|unapproachable|. A|waste|of|good|performances|. A|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|. I|kept|thinking|over|and|over|again|,|'|I|should|be|enjoying|this|.|' But|I|was|n't|. As|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|. Like|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|. The|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|. Just|like|Hearst|'s|enormous|yacht|,|it|'s|slow|and|unwieldy|and|takes|a|long|time|to|reach|its|destination|. There|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|. Where|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|. Why|come|up|with|something|even|quasi-original|,|when|you|can|pillage|from|Shirley|Jackson|,|Richard|Matheson|...|and|puke|up|something|like|ROSE|RED|? A|broadly|played|,|lowbrow|comedy|in|which|the|cast|delivers|mildly|amusing|performances|and|no|farm|animals|were|injured|by|any|of|the|gags|. ...|too|gory|to|be|a|comedy|and|too|silly|to|be|an|effective|horror|film|. Lacks|heart|,|depth|and|,|most|of|all|,|purpose|. Though|a|bit|of|a|patchwork|in|script|and|production|,|a|glossy|,|rich|green|,|environment|almost|makes|the|picture|work|. perfectly|enjoyable|,|instantly|forgettable|,|nothing|to|write|home|about|. Wasabi|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|. Somehow|both|wildly|implausible|and|strangely|conventional|. This|ill-fitting|Tuxedo|is|strictly|off-the-rack|. The|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|. Sets|up|a|nice|concept|for|its|fiftysomething|leading|ladies|,|but|fails|loudly|in|execution|. Kidman|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|. Imagine|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|. This|time|Kaufman|'s|imagination|has|failed|him|. An|intermittently|pleasing|but|mostly|routine|effort|. It|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|. `|Unfaithful|'|cheats|on|itself|and|retreats|to|comfortable|territory|. Too|bad|. Frenetic|but|not|really|funny|. Taken|individually|or|collectively|,|the|stories|never|add|up|to|as|much|as|they|promise|. If|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|. A|didactic|and|dull|documentary|glorifying|software|anarchy|. Sluggishly|directed|by|episodic|TV|veteran|Joe|Zwick|,|it|'s|a|sitcom|without|the|snap-crackle|. You|could|nap|for|an|hour|and|not|miss|a|thing|. Director|Clare|Kilner|'s|debut|is|never|as|daft|as|it|should|have|been|. New|Best|Friend|should|n't|have|gone|straight|to|video|;|it|should|have|gone|straight|to|a|Mystery|Science|Theater|3000|video|. Wallace|seems|less|like|he|'s|been|burning|to|tell|a|war|story|than|he|'s|been|itching|to|somehow|tack|one|together The|thrill|is|(|long|)|gone|. Began|life|as|a|computer|game|,|then|morphed|into|a|movie|--|a|bad|one|,|of|course|. Part|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|. Godawful|boring|slug|of|a|movie|. Dull|,|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|. Scene-by-scene|,|things|happen|,|but|you|'d|be|hard-pressed|to|say|what|or|why|. ...|an|unimaginative|,|nasty|,|glibly|cynical|piece|of|work|. It|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|. The|tug-of-war|at|the|core|of|Beijing|Bicycle|becomes|weighed|down|with|agonizing|contrivances|,|overheated|pathos|and|long|,|wistful|gazes|. Vile|and|tacky|are|the|two|best|adjectives|to|describe|Ghost|Ship|. Some|decent|actors|inflict|big|damage|upon|their|reputations|. Being|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|. Offensive|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|. Mark|me|down|as|a|non-believer|in|werewolf|films|that|are|not|serious|and|rely|on|stupidity|as|a|substitute|for|humor|. Thoughtless|,|random|,|superficial|humour|and|a|lot|of|very|bad|Scouse|accents Aspires|for|the|piquant|but|only|really|achieves|a|sort|of|ridiculous|sourness|. Accuracy|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|. For|all|its|highfalutin|title|and|corkscrew|narrative|,|the|movie|turns|out|to|be|not|much|more|than|a|shaggy|human|tale|. A|soggy|,|cliche-bound|epic-horror|yarn|that|ends|up|being|even|dumber|than|its|title|. One|groan-inducing|familiarity|begets|another|. Although|based|on|a|real-life|person|,|John|,|in|the|movie|,|is|a|rather|dull|person|to|be|stuck|with|for|two|hours|. Great|story|,|bad|idea|for|a|movie|. With|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|. There|is|no|entry|portal|in|The|Rules|of|Attraction|,|and|I|spent|most|of|the|movie|feeling|depressed|by|the|shallow|,|selfish|,|greedy|characters|. It|'s|hard|to|tell|with|all|the|crashing|and|banging|where|the|salesmanship|ends|and|the|movie|begins|. ``|My|god|,|I|'m|behaving|like|an|idiot|!|'' Yes|,|you|are|,|Ben|Kingsley|. A|dreadful|live-action|movie|. Divertingly|ridiculous|,|headbangingly|noisy|. An|earnest|racial-issues|picture|that|might|have|gotten|respectful|critical|praise|in|a|different|era|--|say|,|the|'60s|. A|hideous|,|confusing|spectacle|,|one|that|may|well|put|the|nail|in|the|coffin|of|any|future|Rice|adaptations|. All|I|can|say|is|fuhgeddaboutit|. Between|bedroom|scenes|,|viewers|may|find|themselves|wishing|they|could|roll|over|and|take|a|nap|. If|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|. Despite|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|. Every|bit|as|bogus|as|most|Disney|live|action|family|movies|are|--|no|real|plot|,|no|real|conflict|,|no|real|point|. A|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|. Never|engaging|,|utterly|predictable|and|completely|void|of|anything|remotely|interesting|or|suspenseful|. Spousal|abuse|is|a|major|problem|in|contemporary|society|,|but|the|film|reduces|this|domestic|tragedy|to|florid|melodrama|. Oedekerk|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|. The|creaking|,|rusty|ship|makes|a|fine|backdrop|,|but|the|ghosts|'|haunting|is|routine|. Whatever|Eyre|'s|failings|as|a|dramatist|,|he|deserves|credit|for|bringing|audiences|into|this|hard|and|bitter|place|. Scotland|,|PA.|blurs|the|line|between|black|comedy|and|black|hole|. It|tries|too|hard|,|and|overreaches|the|logic|of|its|own|world|. The|whole|damn|thing|is|ripe|for|the|Jerry|Springer|crowd|. It|'s|all|pretty|cynical|and|condescending|,|too|. I|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|. A|boring|,|formulaic|mix|of|serial|killers|and|stalk|'n'|slash|. What|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|has|n't|added|enough|of|his|own|ingredients|. With|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|. Flaunts|its|quirky|excesses|like|a|New|Year|'s|Eve|drunk|sporting|a|paper|party|hat|. Writhing|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|. ...|too|slow|,|too|boring|,|and|occasionally|annoying|. Is|there|enough|material|to|merit|a|documentary|on|the|making|of|Wilco|'s|last|album|? Faultlessly|professional|but|finally|slight|. Schmaltzy|and|unfunny|,|Adam|Sandler|'s|cartoon|about|Hanukkah|is|numbingly|bad|,|Little|Nicky|bad|,|10|Worst|List|bad|. It|'s|really|yet|another|anemic|and|formulaic|Lethal|Weapon-derived|buddy-cop|movie|,|trying|to|pass|off|its|lack|of|imagination|as|hip|knowingness|. Scotland|,|Pa.|is|a|strangely|drab|romp|. Some|studio|pizazz|might|have|helped|. When|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|. There|'s|more|scatological|action|in|8|Crazy|Nights|than|a|proctologist|is|apt|to|encounter|in|an|entire|career|. Too|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|. The|cartoon|is|about|as|true|to|the|spirit|of|the|Festival|of|Lights|as|Mr.|Deeds|was|to|that|of|Frank|Capra|. ...|the|sum|of|the|parts|equals|largely|a|confused|mediocrity|. The|tone|shifts|abruptly|from|tense|to|celebratory|to|soppy|. If|we|do|n't|demand|a|standard|of|quality|for|the|art|that|we|choose|,|we|deserve|the|trash|that|we|get|. A|modest|and|messy|metaphysical|thriller|offering|more|questions|than|answers|. Julia|is|played|with|exasperating|blandness|by|Laura|Regan|. Morrissette|'s|script|and|direction|show|a|fair|amount|of|intelligence|and|wit|--|but|it|does|n't|signify|a|whole|lot|either|. There|'s|suspension|of|disbelief|and|then|there|'s|bad|screenwriting|...|this|film|packs|a|wallop|of|the|latter|. All|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|. Mocking|kung|fu|pictures|when|they|were|a|staple|of|exploitation|theater|programming|was|witty|. Mocking|them|now|is|an|exercise|in|pointlessness|. This|is|a|particularly|toxic|little|bonbon|,|palatable|to|only|a|chosen|and|very|jaundiced|few|. This|is|n't|just|the|CliffsNotes|version|of|Nicholas|Nickleby|,|it|'s|the|CliffsNotes|with|pages|missing|. Considering|the|harsh|locations|and|demanding|stunts|,|this|must|have|been|a|difficult|shoot|,|but|the|movie|proves|rough|going|for|the|audience|as|well|. Better|at|putting|you|to|sleep|than|a|sound|machine|. So|clichéd|that|,|at|one|point|,|they|literally|upset|an|apple|cart|. It|'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|. It|might|be|the|first|sci-fi|comedy|that|could|benefit|from|a|Three|'s|Company-style|laugh|track|. When|the|plot|kicks|in|,|the|film|loses|credibility|. Credibility|sinks|into|a|mire|of|sentiment|. The|movie|takes|itself|too|seriously|and|,|as|a|result|,|it|makes|for|only|intermittent|fun|. (|Davis|)|has|a|bright|,|chipper|style|that|keeps|things|moving|,|while|never|quite|managing|to|connect|her|wish-fulfilling|characters|to|the|human|race|. Does|n't|amount|to|much|of|anything|. Bullock|'s|complete|lack|of|focus|and|ability|quickly|derails|the|film So|stupid|,|so|ill-conceived|,|so|badly|drawn|,|it|created|whole|new|levels|of|ugly|. The|truth|is|that|The|Truth|About|Charlie|gets|increasingly|tiresome|. Enduring|love|but|exhausting|cinema|. Some|of|Seagal|'s|action|pictures|are|guilty|pleasures|,|but|this|one|is|so|formulaic|that|it|seems|to|be|on|auto-pilot|. A|ponderous|meditation|on|love|that|feels|significantly|longer|than|its|relatively|scant|97|minutes|. A|long-winded|and|stagy|session|of|romantic|contrivances|that|never|really|gels|like|the|shrewd|feminist|fairy|tale|it|could|have|been|. A|little|too|pat|for|its|own|good|. There|are|films|that|try|the|patience|of|even|the|most|cinema-besotted|critic|--|and|this|was|one|of|them|. Watching|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|. Well-intentioned|though|it|may|be|,|its|soap-opera|morality|tales|have|the|antiseptic|,|preprogrammed|feel|of|an|after-school|special|. What|would|Jesus|do|if|He|was|a|film|director|? He|'d|create|a|movie|better|than|this|. When|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|. It|'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|. Ca|n't|kick|about|the|assembled|talent|and|the|Russos|show|genuine|promise|as|comic|filmmakers|. Still|,|this|thing|feels|flimsy|and|ephemeral|. Diane|Lane|shines|in|Unfaithful|. Almost|everything|else|is|wan|. I|'m|afraid|you|wo|n'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|. So|relentlessly|wholesome|it|made|me|want|to|swipe|something|. The|title|helpfully|offers|the|most|succinct|review|of|it|you|'ll|read|anywhere|. The|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|. God|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|. Let|'s|cut|to|the|consumer-advice|bottom|line|:|Stay|home|. Undercover|Brother|does|n't|go|far|enough|. It|'s|just|a|silly|black|genre|spoof|. The|film|'s|implicit|premise|is|that|the|faith|of|the|Tonga|people|is|in|every|way|inferior|to|that|of|John|. Rates|an|`|E|'|for|effort|--|and|a|`|B|'|for|boring|. You|'ve|already|seen|Heartbreak|if|you|'ve|watched|the|far|superior|Nurse|Betty|or|Sunset|Boulevard|. Even|the|unwatchable|Soapdish|is|more|original|. Plays|like|one|of|those|conversations|that|Comic|Book|Guy|on|``|The|Simpsons|''|has|. A|journey|that|'s|too|random|and|inconclusive|to|be|compelling|,|but|which|Hoffman|'s|brilliance|almost|makes|worth|taking|. The|movie|bounces|all|over|the|map|. But|buying|into|sham|truths|and|routine|``|indie|''|filmmaking|,|Freundlich|has|made|just|another|safe|movie|. It|'s|not|horrible|,|just|horribly|mediocre|. Not|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|. ``|Juwanna|Mann|?|'' No|thanks|. Wewannour|money|back|,|actually|. It|'s|a|sometimes|interesting|remake|that|does|n't|compare|to|the|brilliant|original|. You|'re|too|conscious|of|the|effort|it|takes|to|be|this|spontaneous|. Feel|bad|for|King|,|who|'s|honestly|trying|,|and|Schwartzman|,|who|'s|shot|himself|in|the|foot|. Some|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|. Sometimes|,|fond|memories|should|stay|in|the|past|:|a|lesson|this|film|teaches|all|too|well|. The|enormous|comic|potential|of|an|oafish|idiot|impersonating|an|aristocrat|remains|sadly|unrealized|. Begins|as|a|promising|meditation|on|one|of|America|'s|most|durable|obsessions|but|winds|up|as|a|slender|cinematic|stunt|. A|monster|combat|thriller|as|impersonal|in|its|relentlessness|as|the|videogame|series|that|inspired|it|. Proof|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|. The|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|. There|'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|. In|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|. Director|Barry|Skolnick|and|his|screenwriters|glibly|tick|off|every|point|of|``|The|Longest|Yard|''|playbook|like|a|checklist|. The|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|. Oh|,|it|'s|extreme|,|all|right|. Extremely|dumb|. Extremely|confusing|. Extremely|boring|. We|never|really|feel|involved|with|the|story|,|as|all|of|its|ideas|remain|just|that|:|abstract|ideas|. For|a|shoot|-|'em|-|up|,|Ballistic|is|oddly|lifeless|. One|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|. What|happened|with|Pluto|Nash|? How|did|it|ever|get|made|? We|may|never|think|of|band|camp|as|a|geeky|or|nerdy|thing|again|. Opens|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|.|'' The|result|is|solemn|and|horrifying|,|yet|strangely|detached|. These|spiders|can|outrun|a|motorcycle|and|wrap|a|person|in|a|sticky|cocoon|in|seconds|,|but|they|fall|short|of|being|interesting|or|entertaining|. A|long|slog|for|anyone|but|the|most|committed|Pokemon|fan|. Matthew|McConaughey|tries|,|and|fails|,|to|control|the|screen|with|swaggering|machismo|and|over-the-top|lunacy|. How|on|earth|,|or|anywhere|else|,|did|director|Ron|Underwood|manage|to|blow|$|100|million|on|this|? Everyone|connected|to|this|movie|seems|to|be|part|of|an|insider|clique|,|which|tends|to|breed|formulaic|films|rather|than|fresh|ones|. With|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|. Its|lack|of|quality|earns|it|a|place|alongside|those|other|two|recent|Dumas|botch-jobs|,|The|Man|in|the|Iron|Mask|and|The|Musketeer|. A|benign|but|forgettable|sci-fi|diversion|. The|plot|grinds|on|with|yawn-provoking|dullness|. It|'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|. It|does|n't|help|that|the|director|and|cinematographer|Stephen|Kazmierski|shoot|on|grungy|video|,|giving|the|whole|thing|a|dirty|,|tasteless|feel|. Desperately|unfunny|when|it|tries|to|makes|us|laugh|and|desperately|unsuspenseful|when|it|tries|to|make|us|jump|out|of|our|seats|. This|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|. John|McTiernan|'s|botched|remake|may|be|subtler|than|Norman|Jewison|'s|1975|ultraviolent|futuristic|corporate-sports|saga|. It|'s|also|stupider|. Director|Dirk|Shafer|and|co-writer|Greg|Hinton|ride|the|dubious|divide|where|gay|porn|reaches|for|serious|drama|. Borrows|from|so|many|literary|and|cinematic|sources|that|this|future|world|feels|absolutely|deja|vu|. As|(|the|characters|)|get|more|depressed|,|the|story|gets|more|tiresome|,|especially|as|it|continues|to|mount|a|conspicuous|effort|to|be|profound|. The|acting|by|the|over-25s|lacks|spark|,|with|Csokas|particularly|unconnected|. Though|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|. Falters|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|. The|fight|scenes|are|fun|,|but|it|grows|tedious|. Anyone|who|can|count|to|five|(|the|film|'s|target|market|?|) can|see|where|this|dumbed-down|concoction|is|going|. All|this|turns|out|to|be|neither|funny|nor|provocative|-|only|dull|. Demme|'s|loose|approach|kills|the|suspense|. This|idea|has|lost|its|originality|...|and|neither|star|appears|very|excited|at|rehashing|what|was|basically|a|one-joke|picture|. (|Plays|)|in|broad|outline|as|pandering|middle-age|buddy-comedy|. The|film|is|itself|a|sort|of|cinematic|high|crime|,|one|that|brings|military|courtroom|dramas|down|very|,|very|low|. Nothing|more|than|a|mediocre|trifle|. A|turgid|little|history|lesson|,|humourless|and|dull|. Too|silly|to|be|frightening|,|too|stolid|to|be|funny|,|it|projects|the|same|lazy|affability|as|its|nominal|star|,|David|Arquette|. If|Kaufman|kept|Cameron|Diaz|a|prisoner|in|a|cage|with|her|ape|,|in|his|latest|,|he|'d|have|them|mate|. Trivial|where|it|should|be|profound|,|and|hyper-cliched|where|it|should|be|sincere|. It|would|be|hard|to|think|of|a|recent|movie|that|has|worked|this|hard|to|achieve|this|little|fun|. Theology|aside|,|why|put|someone|who|ultimately|does|n't|learn|at|the|center|of|a|kids|'|story|? All|that|(|Powerpuff|Girls|)|charm|is|present|in|the|movie|,|but|it|'s|spread|too|thin|. Sometimes|smart|but|more|often|sophomoric|. The|ill-conceived|modern-day|ending|falls|flat|where|it|should|deliver|a|moral|punch|. Collateral|Damage|is|,|despite|its|alleged|provocation|post-9|\/|11|,|an|antique|,|in|the|end|. As|are|its|star|,|its|attitude|and|its|obliviousness|. Dawdles|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|. Its|save-the-planet|message|clashes|with|its|crass|marketing|. A|great|idea|becomes|a|not-great|movie|. ...|watching|this|film|nearly|provoked|me|to|take|my|own|life|. And|if|The|Hours|wins|`|Best|Picture|'|I|just|might|. By|the|end|,|I|was|looking|for|something|hard|with|which|to|bludgeon|myself|unconscious|. Not|a|movie|but|a|live-action|agitprop|cartoon|so|shameless|and|coarse|,|it|'s|almost|funny|. Feels|like|six|different|movies|fighting|each|other|for|attention|. Life|is|a|crock|--|or|something|like|it|. Made|by|jackasses|for|jackasses|. Despite|a|powerful|portrayal|by|Binoche|,|it|'s|a|period|romance|that|suffers|from|an|overly|deliberate|pace|and|uneven|narrative|momentum|. The|picture|is|a|primer|on|what|happens|when|lack|of|know-how|mixes|with|lack|of|give-a-damn|. Bartleby|is|a|one-joke|movie|,|and|a|bad|joke|at|that|. Given|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|. A|bravura|exercise|in|emptiness|. Philip|K.|Dick|must|be|turning|in|his|grave|,|along|with|my|stomach|. Despite|the|premise|of|a|good|story|...|it|wastes|all|its|star|power|on|cliched|or|meaningless|roles|. All|prints|of|this|film|should|be|sent|to|and|buried|on|Pluto|. Not|only|does|the|movie|fail|to|make|us|part|of|its|reality|,|it|fails|the|most|basic|relevancy|test|as|well|. First|good|,|then|bothersome|. Excellent|acting|and|direction|. This|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 It|'s|difficult|to|say|whether|The|Tuxedo|is|more|boring|or|embarrassing|--|I|'m|prepared|to|call|it|a|draw|. Even|as|lame|horror|flicks|go|,|this|is|lame|. So|routine|,|familiar|and|predictable|,|it|raises|the|possibility|that|it|wrote|itself|as|a|newly|automated|Final|Draft|computer|program|. Sunshine|State|lacks|the|kind|of|dynamic|that|Limbo|offers|,|and|in|some|ways|is|a|rather|indulgent|piece|. Even|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|. A|long-winded|,|predictable|scenario|. Too|close|to|Phantom|Menace|for|comfort|. Although|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|. Too|clunky|and|too|busy|ribbing|itself|to|be|truly|entertaining|. This|movie|is|about|lying|,|cheating|,|but|loving|the|friends|you|betray|. It|smacks|of|purely|commercial|motivation|,|with|no|great|love|for|the|original|. Melanie|eventually|slugs|the|Yankee|. Too|bad|the|former|Murphy|Brown|does|n't|pop|Reese|back|. At|the|bottom|rung|of|the|series|'|entries|. A|real|clunker|. A|well-made|,|thoughtful|,|well-acted|clunker|,|but|a|clunker|nonetheless|. A|dreary|rip-off|of|Goodfellas|that|serves|as|a|muddled|and|offensive|cautionary|tale|for|Hispanic|Americans|. The|picture|,|scored|by|a|perversely|cheerful|Marcus|Miller|accordion\/harmonica\/banjo|abomination|,|is|a|monument|to|bad|in|all|its|florid|variety|. Good|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|. ...|a|big|,|baggy|,|sprawling|carnival|of|a|movie|,|stretching|out|before|us|with|little|rhyme|or|reason|. A|frustrating|combination|of|strained|humor|and|heavy-handed|sentimentality|. Lawrence|preaches|strictly|to|the|converted|. As|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|. Will|probably|stay|in|the|shadow|of|its|two|older|,|more|accessible|Qatsi|siblings|. Just|when|the|movie|seems|confident|enough|to|handle|subtlety|,|it|dives|into|soapy|bathos|. Choppy|editing|and|too|many|repetitive|scenes|spoil|what|could|have|been|an|important|documentary|about|stand-up|comedy|. ...|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|. The|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|. If|you|'re|looking|for|comedy|to|be|served|up|,|better|look|elsewhere|. It|virtually|defines|a|comedy|that|'s|strongly|mediocre|,|with|funny|bits|surfacing|every|once|in|a|while|. An|instant|candidate|for|worst|movie|of|the|year|. Despite|its|title|,|Amy|'s|Orgasm|is|not|a|porno|,|though|it|is|as|tedious|as|one|. Like|a|tone-deaf|singer|at|a|benefit|concert|,|John|Q.|is|a|bad|movie|appearing|on|behalf|of|a|good|cause|. Adam|Sandler|is|to|Gary|Cooper|what|a|gnat|is|to|a|racehorse|. What|kids|will|discover|is|a|new|collectible|. What|parents|will|suspect|is|that|they|'re|watching|a|76-minute|commercial|. Beers|,|who|,|when|she|'s|given|the|right|lines|,|can|charm|the|paint|off|the|wall|...|(|but|)|the|script|goes|wrong|at|several|key|junctures|. Without|September|11|,|Collateral|Damage|would|have|been|just|another|bad|movie|. Now|it|'s|a|bad|,|embarrassing|movie|. Drags|along|in|a|dazed|and|enervated|,|drenched-in-the|-|past|numbness|. There|'s|a|disturbing|`|Great|White|Hope|'|undertone|to|The|Other|Side|of|Heaven|that|subtly|undermines|its|message|of|Christian|love|and|compassion|. Unless|you|are|in|dire|need|of|a|Diesel|fix|,|there|is|no|real|reason|to|see|it|. Wait|for|video|--|and|then|do|n't|rent|it|. The|attempt|is|courageous|,|even|if|the|result|is|wildly|uneven|. There|'s|something|fundamental|missing|from|this|story|:|something|or|someone|to|care|about|. Too|much|of|this|well-acted|but|dangerously|slow|thriller|feels|like|a|preamble|to|a|bigger|,|more|complicated|story|,|one|that|never|materializes|. When|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|. Unfortunately|,|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|. The|more|Kevin|Costner|rests|on|his|pretty-boy|laurels|,|the|public|is|,|regrettably|,|going|to|have|tepid|films|like|Dragonfly|tossed|at|them|. (|It|'s|)|difficult|to|get|beyond|the|overall|blandness|of|American|Chai|,|despite|its|likable|performances|and|refreshingly|naive|point|of|view|. The|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|. Taken|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|. If|Myers|decides|to|make|another|Austin|Powers|movie|,|maybe|he|should|just|stick|with|Austin|and|Dr|Evil|. The|backyard|battles|you|staged|with|your|green|plastic|army|men|were|more|exciting|and|almost|certainly|made|more|sense|. Too|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|. Overly|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|. What|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|. If|this|is|satire|,|it|'s|the|smug|and|self-congratulatory|kind|that|lets|the|audience|completely|off|the|hook|. Had|the|film|boasted|a|clearer|,|more|memorable|,|the|creepiness|would|have|gotten|under|the|skin|. These|people|would|n't|know|subtle|characterization|if|it|put|on|a|giant|furry|monster|costume|and|then|gave|them|a|lapdance|. Imagine|if|you|will|a|Tony|Hawk|skating|video|interspliced|with|footage|from|Behind|Enemy|Lines|and|set|to|Jersey|shore|techno|. It|does|n't|quite|work|,|but|there|'s|enough|here|to|make|us|look|forward|to|the|Russos|'|next|offering|. Any|film|featuring|young|children|threatened|by|a|terrorist|bomb|can|no|longer|pass|as|mere|entertainment|. The|director|'s|twitchy|sketchbook|style|and|adroit|perspective|shifts|grow|wearisome|amid|leaden|pacing|and|indifferent|craftsmanship|(|most|notably|wretched|sound|design|)|. About|as|satisfying|and|predictable|as|the|fare|at|your|local|drive|through|. Apparently|kissing|leads|to|suicide|attempts|and|tragic|deaths|. Marisa|Tomei|is|good|,|but|Just|A|Kiss|is|just|a|mess|. Opens|at|a|funeral|,|ends|on|the|protagonist|'s|death|bed|and|does|n't|get|much|livelier|in|the|three|hours|in|between|. The|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|. To|portray|modern|women|the|way|director|Davis|has|done|is|just|unthinkable|. Too|simple|for|its|own|good|. Flaccid|drama|and|exasperatingly|slow|journey|. A|chaotic|panorama|that|'s|too|busy|flying|a|lot|of|metaphoric|flags|. Suffers|from|rambling|,|repetitive|dialogue|and|the|visual|drabness|endemic|to|digital|video|. The|screenplay|sabotages|the|movie|'s|strengths|at|almost|every|juncture|. All|the|characters|are|stereotypes|,|and|their|interaction|is|numbingly|predictable|. A|trashy|,|exploitative|,|thoroughly|unpleasant|experience|. Newcomer|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|. Should|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|. Often|silly|--|and|gross|--|but|it|'s|rarely|as|moronic|as|some|campus|gross-out|films|. The|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|. The|performances|are|so|leaden|,|Michael|Rymer|'s|direction|is|so|bloodless|and|the|dialogue|is|so|corny|that|the|audience|laughs|out|loud|. A|subtle|variation|on|I|Spit|On|Your|Grave|in|which|our|purported|heroine|pathologically|avenges|a|hatred|for|men|. Reggio|'s|trippy|,|ambitious|downer|can|also|sometimes|come|across|like|nothing|more|than|a|glorified|Nike|ad|. As|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|. If|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|. The|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|. A|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|. An|overstuffed|compendium|of|teen-Catholic-movie|dogma|. Too|leisurely|paced|and|visually|drab|for|its|own|good|,|it|succeeds|in|being|only|sporadically|amusing|. Ben|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|? The|movie|'s|biggest|offense|is|its|complete|and|utter|lack|of|tension|. The|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|. If|this|is|the|resurrection|of|the|Halloween|franchise|,|it|would|have|been|better|off|dead|. This|formulaic|chiller|will|do|little|to|boost|Stallone|'s|career|. I|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|. Though|Avary|has|done|his|best|to|make|something|out|of|Ellis|'|nothing|novel|,|in|the|end|,|his|Rules|is|barely|worth|following|. The|average|local|news|columnist|has|a|bigger|rant|on|the|war|between|modern|landscape|architecture|and|small-town|America|. No|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|. The|plot|is|so|predictable|and|sentimental|that|viewers|are|likely|to|lose|interest|before|Sandrine|and|her|goats|walk|off|into|the|sunset|. At|first|,|the|sight|of|a|blind|man|directing|a|film|is|hilarious|,|but|as|the|film|goes|on|,|the|joke|wears|thin|. Never|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|. the|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|. Technically|,|the|film|is|about|as|interesting|as|an|insurance|commercial|. The|title|'s|lameness|should|clue|you|in|on|how|bad|the|movie|is|. The|parts|are|better|than|the|whole|(|bizarre|,|funny|,|tragic|-|like|love|in|New|York|)|. While|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|. The|humor|is|hinged|on|the|belief|that|knees|in|the|crotch|,|elbows|in|the|face|and|spit|in|the|eye|are|inherently|funny|. It|'s|a|movie|forged|in|the|fires|of|Chick|Flick|Hell|. Its|characters|are|thinner|than|cardboard|--|or|even|comic-book|paper|. Any|one|episode|of|The|Sopranos|would|send|this|ill-conceived|folly|to|sleep|with|the|fishes|. Feels|like|the|grittiest|movie|that|was|ever|made|for|the|Lifetime|cable|television|network|. Lanie|'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|. Credit|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 Denzel|Washington|'s|efforts|are|sunk|by|all|the|sanctimony|. If|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|)|. So|faithful|to|the|doldrums|of|the|not-quite-urban|,|not-quite-suburban|milieu|as|to|have|viewers|recoiling|from|the|reality|check|. Rambles|on|in|a|disjointed|,|substandard|fashion|from|one|poorly|executed|action|sequence|to|the|next|. There|'s|an|audience|for|it|,|but|it|could|have|been|funnier|and|more|innocent|. I|can|only|imagine|one|thing|worse|than|Kevin|Spacey|trying|on|an|Irish|accent|,|and|that|'s|sultry|Linda|Fiorentino|doing|the|same|thing|. An|awkward|and|indigestible|movie|. The|movie|has|very|little|to|offer|besides|unintentional|laughs|. Haneke|keeps|us|at|arm|'s|length|. Guided|more|by|intellect|than|heart|,|his|story|flattens|instead|of|sharpens|. All|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|. Like|most|sequels|,|it|takes|what|worked|last|time|,|repeats|it|and|adds|more|characters|,|more|stunts|,|more|stuff|in|attempt|to|camouflage|its|sameness|. There|'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|. Message|movie|or|an|action-packed|submarine|spectacular|? Alas|,|it|'s|neither|. No|movement|,|no|yuks|,|not|much|of|anything|. `|Dragonfly|'|is|a|movie|about|a|bus|wreck|that|turns|into|a|film|wreck|. Thirty|years|ago|,|it|would|have|been|groundbreaking|. Now|it|'s|just|tired|. Heavy-handed|exercise|in|time-vaulting|literary|pretension|. The|movie|is|too|cute|to|take|itself|too|seriously|,|but|it|still|feels|like|it|was|made|by|some|very|stoned|college|students|. A|thinly|veiled|excuse|for|Wilson|to|play|his|self-deprecating|act|against|Murphy|'s|well-honed|prima|donna|shtick|. A|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|. The|movie|succumbs|to|being|nothing|more|than|a|formulaic|chase|in|the|dark|. Plays|as|hollow|catharsis|,|with|lots|of|tears|but|very|little|in|the|way|of|insights|. It|will|come|as|no|surprise|that|the|movie|is|n't|scary|. But|here|'s|the|real|damn|:|It|is|n't|funny|,|either|. Quick|:|who|wants|to|see|a|comedy|about|shoddy|airport|security|? The|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|. What|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|. Cho|'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|. Looks|awfully|like|one|long|tourist|spot|for|a|Mississippi|that|may|never|have|existed|outside|of|a|scriptwriter|'s|imagination|. The|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|. High|Crimes|miscasts|nearly|every|leading|character|. The|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|. De|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|. I|did|n't|believe|for|a|moment|in|these|villains|or|their|plot|. Another|rent|installment|for|the|Ian|Fleming|estate|. With|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|. So|lazy|and|slipshod|it|confuses|the|mere|flashing|of|kinky|soft-core|imagery|with|naughty|fun|. Though|it|draws|several|decent|laughs|,|it|'s|low-cal|Woody|at|best|. Has|little|on|its|mind|aside|from|scoring|points|with|drag|gags|. Britney|'s|performance|can|not|be|faulted|. Lucy|'s|a|dull|girl|,|that|'s|all|. Well-shot|but|badly|written|tale|set|in|a|future|ravaged|by|dragons|. Sadly|,|Hewitt|'s|forte|is|leaning|forward|while|wearing|low-cut|gowns|,|not|making|snappy|comebacks|. If|Melville|is|creatively|a|great|whale|,|this|film|is|canned|tuna|. This|film|is|so|slick|,|superficial|and|trend-hoppy|,|that|it|'s|easy|to|imagine|that|a|new|software|program|spit|out|the|screenplay|. Just|one|more|collection|of|penis|,|breast|and|flatulence|gags|in|search|of|a|story|. Or|a|profit|. Or|some|damn|thing|. The|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|. Enough|trivializes|an|important|crisis|,|reduces|it|to|an|almost|comic|embarrassment|. The|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|. A|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|. Gee|,|a|second|assassin|shot|Kennedy|? Moot|point|. A|hysterical|yet|humorless|disquisition|on|the|thin|line|between|sucking|face|and|literally|sucking|face|. Needless|to|say|,|the|dramatics|that|follow|are|utter|hooey|. The|problem|is|that|rather|than|dramatizing|this|premise|,|Mr.|Desplechin|is|content|to|state|it|. Madonna|still|ca|n't|act|a|lick|. Even|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|. If|you|pitch|your|expectations|at|an|all|time|low|,|you|could|do|worse|than|this|oddly|cheerful|--|but|not|particularly|funny|--|body-switching|farce|. The|episodic|film|makes|valid|points|about|the|depersonalization|of|modern|life|. But|the|characters|tend|to|be|cliches|whose|lives|are|never|fully|explored|. Serry|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|. Do|n't|let|your|festive|spirit|go|this|far|. Though|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|. Hey|,|at|least|the|title|of|this|film|lets|you|know|exactly|where|it|'s|heading|. Intended|to|be|a|comedy|about|relationships|,|this|wretched|work|falls|flat|in|just|about|every|conceivable|area|. Sensitive|though|not|quite|revelatory|documentary|. Director|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|. ...|perhaps|the|heaviest|,|most|joyless|movie|ever|made|about|giant|dragons|taking|over|the|world|. Suggests|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|. I|'d|give|real|money|to|see|the|perpetrators|of|Chicago|torn|apart|by|dingoes|. Movies|like|this|are|selling|the|old|European|candor|,|the|old|wink|of|`|bold|'|revelation|. But|in|2002|,|such|revelations|wilt|. The|timing|in|nearly|every|scene|seems|a|half|beat|off|. I|admire|it|and|yet|can|not|recommend|it|,|because|it|overstays|its|natural|running|time|. A|fairly|by-the-books|blend|of|action|and|romance|with|sprinklings|of|intentional|and|unintentional|comedy|. Flounders|due|to|the|general|sense|that|no|two|people|working|on|the|production|had|exactly|the|same|thing|in|mind|. Even|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|. The|story|bogs|down|in|a|mess|of|purposeless|violence|. Despite|some|gulps|the|film|is|a|fuzzy|huggy|. McKay|deflates|his|piece|of|puffery|with|a|sour|cliche|and|heavy|doses|of|mean-spiritedness A|recipe|for|cinematic|disaster|...|part|Quentin|Tarantino|,|part|Guy|Ritchie|,|and|part|1960s|spy|spoof|,|it|'s|all|bad|. The|cumulative|effect|of|the|relentless|horror|on|parade|numbs|the|movie|'s|power|as|a|work|of|drama|. Another|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|. Aaliyah|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|. Outrageousness|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|. Much|of|what|is|meant|to|be|`|inspirational|'|and|`|uplifting|'|is|simply|distasteful|to|audiences|not|already|sharing|(|the|movie|'s|)|mindset|. Well|before|it|'s|over|,|Beijing|Bicycle|begins|spinning|its|wheels|. Home|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|are|n't|this|nice|. (|Nelson|'s|)|movie|about|morally|compromised|figures|leaves|viewers|feeling|compromised|,|unable|to|find|their|way|out|of|the|fog|and|the|ashes|. Passion|,|lip-synching|,|tragedy|,|and|lots|of|really|really|high|notes|. For|me|,|this|opera|is|n't|a|favorite|,|so|it|'s|a|long|time|before|the|fat|lady|sings|. Looks|like|a|high|school|film|project|completed|the|day|before|it|was|due|. Truth|to|tell|,|if|you|'ve|seen|more|than|half-a-dozen|horror|films|,|there|'s|nothing|here|you|have|n't|seen|before|. Abandons|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|. Even|die-hard|fans|of|Japanese|animation|...|will|find|this|one|a|challenge|. Filmmakers|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|. The|movie|gets|muted|and|routine|. The|issue|of|faith|is|not|explored|very|deeply It|'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|. The|situations|and|jokes|are|as|predictable|and|as|lowbrow|as|the|endless|pratfalls|the|boys|take|in|their|high|heels|. It|'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|. I|was|perplexed|to|watch|it|unfold|with|an|astonishing|lack|of|passion|or|uniqueness|. K-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|. A|very|stylish|but|ultimately|extremely|silly|tale|...|a|slick|piece|of|nonsense|but|nothing|more|. Automatically|pegs|itself|for|the|straight-to-video|sci-fi|rental|shelf|. The|film|is|like|a|series|of|beginnings|and|middles|that|never|take|off|. Feels|less|like|it|'s|about|teenagers|,|than|it|was|written|by|teenagers|. Ja|Rule|and|Kurupt|should|have|gotten|to|rap|. It|would|have|benefitted|the|dialogue|. A|standard|haunted|house|tale|transplanted|to|the|high|seas|. Elicits|more|groans|from|the|audience|than|Jar|Jar|Binks|,|Scrappy|Doo|and|Scooby|Dumb|,|all|wrapped|up|into|one|. It|'s|badly|acted|,|blandly|directed|,|and|could|have|been|scripted|by|someone|who|just|graduated|from|elementary|school|. In|the|end|,|White|Oleander|is|n't|an|adaptation|of|a|novel|. It|'s|a|flashy|,|star-splashed|reduction|. This|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|. The|angst-ridden|,|affluent|slacker|characters|are|more|grating|than|engaging|. A|soggy|,|shapeless|mess|...|just|a|dumb|excuse|for|a|waterlogged|equivalent|of|a|haunted-house|movie|. Men|in|Black|II|has|sequel-itis|something|fierce|. An|ungainly|,|comedy-deficient|,|B-movie|rush|job|... A|combination|of|standard|,|stiff|TV-style|animation|and|snazzy-looking|digital|effects|that|do|little|to|disguise|the|fact|that|the|characters|barely|move|. An|unsatisfying|hybrid|of|Blair|Witch|and|typical|stalk-and-slash|fare|,|where|the|most|conservative|protagonist|is|always|the|last|one|living|. Say|this|for|the|soundtrack|,|it|drowns|out|the|lousy|dialogue|. After|seeing|SWEPT|AWAY|,|I|feel|sorry|for|Madonna|. Instead|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|. A|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|. Maudlin|and|melodramatic|we|expected|. Boring|we|did|n't|. Never|quite|transcends|jokester|status|...|and|the|punchline|does|n't|live|up|to|Barry|'s|dead-eyed|,|perfectly|chilled|delivery|. The|film|'s|bathos|often|overwhelms|what|could|have|been|a|more|multifaceted|look|at|this|interesting|time|and|place|. It|almost|plays|like|Solaris|,|but|with|guns|and|jokes|. A|baffling|misfire|,|and|possibly|the|weakest|movie|(|Woody|Allen|)|has|made|in|the|last|twenty|years|. It|wo|n't|be|long|before|you|'ll|spy|I|Spy|at|a|video|store|near|you|. This|film|looks|like|it|was|produced|in|1954|,|shelved|for|48|years|,|and|repackaged|for|a|2002|audience|. Propelled|not|by|characters|but|by|caricatures|. There|is|not|an|ounce|of|honesty|in|the|entire|production|. This|extremely|unfunny|film|clocks|in|at|80|minutes|,|but|feels|twice|as|long|. Earnest|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|. The|pivotal|narrative|point|is|so|ripe|the|film|ca|n't|help|but|go|soft|and|stinky|. For|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|. A|predictable|and|stereotypical|little|B-movie|. If|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|. Frustratingly|,|Dridi|tells|us|nothing|about|El|Gallo|other|than|what|emerges|through|his|music|. Places|a|slightly|believable|love|triangle|in|a|difficult-to-swallow|setting|,|and|then|disappointingly|moves|the|story|into|the|realm|of|an|improbable|thriller|. Stephen|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|. A|very|average|science|fiction|film|. Undone|by|its|overly|complicated|and|derivative|screenplay|,|the|glacier-paced|direction|and|the|stereotypical|characters|. How|anyone|over|the|age|of|2|can|stomach|the|touchy-feely|message|this|preachy|produce|promotes|is|beyond|us|. The|sort|of|movie|that|gives|tastelessness|a|bad|rap|. The|cold|and|dreary|weather|is|a|perfect|metaphor|for|the|movie|itself|,|which|contains|few|laughs|and|not|much|drama|. The|plot|is|straight|off|the|shelf|,|the|performances|are|television|-|caliber|and|the|message|of|providing|solace|through|deception|is|a|little|creepy|. ordinary|melodrama|that|is|heavy|on|religious|symbols|but|wafer-thin|on|dramatic|substance A|whimsical|if|predictable|time-travel|fable|marred|by|a|willful|single-mindedness|. Those|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|. Jolie|'s|performance|vanishes|somewhere|between|her|hair|and|her|lips|. As|with|too|many|studio|pics|,|plot|mechanics|get|in|the|way|of|what|should|be|the|lighter-than-air|adventure|. Static|,|repetitive|,|muddy|and|blurry|,|Hey|Arnold|! would|seem|to|have|a|lock|on|the|title|of|ugliest|movie|of|the|year|. For|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|. When|it|comes|to|entertainment|,|children|deserve|better|than|Pokemon|4Ever|. What|The|Four|Feathers|lacks|is|genuine|sweep|or|feeling|or|even|a|character|worth|caring|about|. While|Benigni|(|who|stars|and|co-wrote|)|seems|to|be|having|a|wonderful|time|,|he|might|be|alone|in|that|. Yes|,|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|? Preposterous|and|tedious|,|Sonny|is|spiked|with|unintentional|laughter|that|,|unfortunately|,|occurs|too|infrequently|to|make|the|film|even|a|guilty|pleasure|. Calling|this|movie|brainless|would|be|paying|it|a|compliment|:|it|'s|more|like|entertainment|for|trolls|. None|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|. ...|just|a|big|mess|of|a|movie|,|full|of|images|and|events|,|but|no|tension|or|surprise|. As|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|. Splashes|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|. ...|has|virtually|no|script|at|all|... Will|only|satisfy|those|who|ca|n't|tell|the|difference|between|the|good|,|the|bad|and|the|ugly|. This|kind|of|dark|comedy|requires|a|delicate|,|surgical|touch|. But|director|Danny|DeVito|and|screenwriter|Adam|Resnick|(|remember|Cabin|Boy|?|) just|pound|away|. At|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|. Rather|quickly|,|the|film|falls|into|a|soothing|formula|of|brotherly|conflict|and|reconciliation|. Screenwriters|Scott|Abbott|and|Michael|Petroni|have|turned|Rice|'s|complex|Akasha|into|a|cartoon|monster|. The|writers|,|director|Wally|Wolodarsky|,|and|all|the|actors|should|start|their|own|coeducational|fraternity|:|Kappa|Rho|Alpha|Phi|. Bad|beyond|belief|and|ridiculous|beyond|description|. The|new|faces|are|interesting|,|but|the|old|story|is|n't|,|especially|when|it|starts|to|seem|more|improvised|than|scripted|. Most|of|the|action|setups|are|incoherent|. Liman|,|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|. ...|surprisingly|inert|for|a|movie|in|which|the|main|character|travels|back|and|forth|between|epochs|. The|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|. Dreary|,|highly|annoying|...|`|Some|Body|'|will|appeal|to|No|One|. There|'s|something|deeply|creepy|about|Never|Again|,|a|new|arrow|in|Schaeffer|'s|quiver|of|ineptitudes|. The|problem|with|concept|films|is|that|if|the|concept|is|a|poor|one|,|there|'s|no|saving|the|movie|. Sorry|,|Charlie A|painfully|leaden|film|destined|for|pre-dawn|cable|television|slots|. Blessed|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|. The|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|. Shocking|only|in|that|it|reveals|the|filmmaker|'s|bottomless|pit|of|self-absorption|. This|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|. All|ends|well|,|sort|of|,|but|the|frenzied|comic|moments|never|click|. If|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|. Formula|51|is|so|trite|that|even|Yu|'s|high-energy|action|stylings|ca|n't|break|through|the|stupor|. Only|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|. When|the|painted|backdrops|in|a|movie|are|more|alive|than|its|characters|,|you|know|you|'re|in|trouble|. (|Two|)|fairly|dull|--|contrasting|and|interlocking|stories|about|miserable|Scandinavian|settlers|in|18th-century|Canada|,|and|yuppie|sailboaters|in|the|here|and|now|. The|film|is|really|not|so|much|bad|as|bland|. The|central|story|lacks|punch|. Though|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|. This|may|be|the|dumbest|,|sketchiest|movie|on|record|about|an|aspiring|writer|'s|coming-of-age|. Succumbs|to|the|same|kind|of|maudlin|,|sentimental|mysticism|that|mars|the|Touched|by|an|Angel|school|of|non-God|spiritual-uplift|movies|. A|harmless|and|mildly|amusing|family|comedy|. What|was|subtle|and|mystifying|in|the|novella|is|now|broad|and|farcical|. The|kids|often|appear|to|be|reading|the|lines|and|are|incapable|of|conveying|any|emotion|. ``|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|? Sucking|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|... This|72-minute|film|does|have|some|exciting|scenes|,|but|it|'s|a|tad|slow|. While|Super|Troopers|is|above|Academy|standards|,|its|quintet|of|writers|could|still|use|some|more|schooling|. A|mix|of|velocity|and|idiocy|,|this|ruinous|remake|lacks|the|brawn|--|and|the|brains|--|of|the|1970s|original|. The|low-budget|Full|Frontal|was|one|of|the|year|'s|murkiest|,|intentionally|obscure|and|self-indulgent|pictures|,|and|Solaris|is|its|big-budget|brother|. The|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|. The|film|seems|all|but|destined|to|pop|up|on|a|television|screen|in|the|background|of|a|scene|in|a|future|Quentin|Tarantino|picture A|free-for-all|of|half-baked|thoughts|,|clumsily|used|visual|tricks|and|self-indulgent|actor|moments|. Apallingly|absurd|...|the|chemistry|or|lack|thereof|between|Newton|and|Wahlberg|could|turn|an|Imax|theater|into|a|9|''|black|and|white|portable|TV|. A|well|acted|and|well|intentioned|snoozer|. The|smug|,|oily|demeanor|that|Donovan|adopts|throughout|the|stupidly|named|Pipe|Dream|is|just|repulsive|. Must-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|. Despite|its|good|nature|and|some|genuinely|funny|moments|,|Super|Troopers|suffers|from|a|bad|case|of|arrested|development|. It|'s|hard|not|to|feel|you|'ve|just|watched|a|feature-length|video|game|with|some|really|heavy|back|story|. I|watched|the|brainless|insanity|of|No|Such|Thing|with|mounting|disbelief|. This|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|. Kwan|makes|the|mix-and|-|match|metaphors|intriguing|,|while|lulling|us|into|torpor|with|his|cultivated|allergy|to|action|. While|obviously|an|extremely|personal|work|,|it|remains|inextricably|stuck|in|an|emotionally|unavailable|rut|. Any|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|. I|loved|looking|at|this|movie|. I|just|did|n't|care|as|much|for|the|story|. Has|all|the|poignancy|of|a|Hallmark|card|and|all|the|comedy|of|a|Gallagher|stand-up|act|. It|does|n't|do|the|original|any|particular|dishonor|,|but|neither|does|it|exude|any|charm|or|personality|. fear|dot|com|is|so|rambling|and|disconnected|it|never|builds|any|suspense|. A|gorgeous|,|somnolent|show|that|is|splendidly|mummified|and|thoroughly|unsurprising|. A|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|. It|feels|like|a|community|theater|production|of|a|great|Broadway|play|:|Even|at|its|best|,|it|will|never|hold|a|candle|to|the|original|. The|film|apparently|takes|place|in|a|fantasy|world|where|people|in|hotel|hallways|recite|poetry|in|voice-over|instead|of|speaking|to|each|other|. The|element|of|surprise|might|be|the|only|thing|Femme|Fatale|has|going|for|it|. It|'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|. Maybe|it|'s|asking|too|much|,|but|if|a|movie|is|truly|going|to|inspire|me|,|I|want|a|little|more|than|this|. A|graceless|,|witless|attempt|at|mating|Some|Like|It|Hot|with|the|WWII|espionage|thriller|. The|story|and|characters|are|nowhere|near|gripping|enough|. Based|on|a|David|Leavitt|story|,|the|film|shares|that|writer|'s|usual|blend|of|observant|cleverness|,|too-facile|coincidence|and|slightly|noxious|preciousness|. Just|like|every|other|Seagal|movie|,|only|louder|and|without|that|silly|ponytail|. To|enjoy|this|movie|'s|sharp|dialogue|and|delightful|performance|by|Jolie|and|Burns|,|you|have|to|gloss|over|the|no|sense|ending|. National|Lampoon|'s|Van|Wilder|could|be|the|worst|thing|to|come|out|of|National|Lampoon|since|Class|Reunion This|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|. Ecks|this|one|off|your|must-see|list|. Overall|,|the|film|misses|the|brilliance|of|Jelinek|'s|novel|by|some|way|. It|settles|for|being|merely|grim|. The|Irwins|emerge|unscathed|,|but|the|fictional|footage|is|unconvincing|and|criminally|badly|acted|. It|'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|. Just|because|it|really|happened|to|you|,|honey|,|does|n't|mean|that|it|'s|interesting|to|anyone|else|. Just|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|. Every|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|. This|is|n't|a|``|Friday|''|worth|waiting|for|. Everything|that|'s|worthwhile|about|Collision|Course|can|already|be|seen|on|television|. If|this|movie|belonged|to|a|sorority|,|it|would|be|called|Beta|Alpha|Delta|. Not|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|. Uneasy|mishmash|of|styles|and|genres|. Herzog|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|. All|in|all|,|there|'s|only|one|thing|to|root|for|:|expulsion|for|everyone|. Beyond|a|handful|of|mildly|amusing|lines|...|there|just|is|n't|much|to|laugh|at|. Secret|Ballot|is|too|contemplative|to|be|really|funny|. The|film|'s|center|will|not|hold|. Myers|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|. Too|lazy|to|take|advantage|of|its|semi-humorous|premise|. A|great|ending|does|n't|make|up|for|a|weak|movie|,|and|Crazy|as|Hell|does|n't|even|have|a|great|ending|. Dialogue-heavy|and|too|cerebral|for|its|own|good|--|or|,|at|any|rate|,|too|cerebral|for|its|racy|subject|matter|. Its|over-reliance|on|genre|conventions|,|character|types|and|formulaic|conflict|resolutions|crushes|all|the|goodwill|it|otherwise|develops|. As|an|actor|,|The|Rock|is|aptly|named|. A|mostly|tired|retread|of|several|other|mob|tales|. I|wish|I|could|say|``|Thank|God|It|'s|Friday|''|,|but|the|truth|of|the|matter|is|I|was|glad|when|it|was|over|. Nothing|about|it|fits|. As|it|abruptly|crosscuts|among|the|five|friends|,|it|fails|to|lend|the|characters|'|individual|stories|enough|dramatic|resonance|to|make|us|care|about|them|. Somehow|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|. The|cast|is|so|low-wattage|that|none|of|the|characters|comes|off|as|big|...|and|the|setting|remains|indistinct|. Consider|the|title|'s|clunk-on-the-head|that|suggests|the|overtime|someone|put|in|to|come|up|with|an|irritatingly|unimaginative|retread|concept|. The|movie|quickly|drags|on|becoming|boring|and|predictable|. I|tried|to|read|the|time|on|my|watch|. The|film|makes|a|tragic|error|by|going|on|for|too|long|,|trying|to|mirror|every|subsequent|event|in|Chinese|history|:|war|,|revolution|,|Communism|,|etc.|. Johnson|has|,|in|his|first|film|,|set|himself|a|task|he|is|not|nearly|up|to|. Ultimately|the|project|comes|across|as|clinical|,|detached|,|uninvolving|,|possibly|prompting|audience|members|to|wonder|,|`|What|'s|the|point|?|' The|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|. The|film|meant|well|in|its|horse|tale|about|freedom|,|but|was|n't|able|to|reach|the|heart|because|it|was|too|overbearing|. The|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|. Once|the|audience|figure|out|what|'s|being|said|,|the|filmmaker|'s|relative|passivity|will|make|it|tough|for|them|to|really|care|. There|'s|nothing|provocative|about|this|film|save|for|the|ways|in|which|it|studiously|avoids|provoking|thought|. It|seems|just|a|long|,|convoluted|ploy|to|get|men|into|drag|--|period|drag|,|no|less|. The|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|. Even|by|dumb|action-movie|standards|,|Ballistic|:|Ecks|vs.|Sever|is|a|dumb|action|movie|. The|film|equivalent|of|a|toy|chest|whose|contents|get|scattered|over|the|course|of|80|minutes|. Just|a|bloody|mess|. Creepy|but|ultimately|unsatisfying|thriller|. You|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|. Has|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|. Bears|is|bad|. Not|`|terrible|filmmaking|'|bad|,|but|more|like|,|'|I|once|had|a|nightmare|like|this|,|and|it|'s|now|coming|true|'|bad|. As|is|most|commonly|case|with|projects|such|noble|and|lofty|ambitions|,|the|film|is|less|poetic|than|simply|pretentious|. George|,|hire|a|real|director|and|good|writers|for|the|next|installment|,|please|. For|a|film|about|two|mismatched|buddies|,|Crystal|and|De|Niro|share|little|screen|time|and|even|less|chemistry|. However|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|. Extreme|Oops|-|oops|,|ops|,|no|matter|how|you|spell|it|,|it|'s|still|a|mistake|to|go|see|it|. What|could|and|should|have|been|biting|and|droll|is|instead|a|tepid|waste|of|time|and|talent|. What|will|,|most|likely|,|turn|out|to|be|the|most|repellent|movie|of|2002|. ...|too|dull|to|enjoy|. A|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|. Here|'s|a|self-congratulatory|3D|IMAX|rah-rah|. Eastwood|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|. A|sophomoric|exploration|of|`|life|problems|'|most|people|solved|long|ago|--|or|at|least|got|tired|of|hearing|people|kvetch|about|. It|'s|all|very|cute|,|though|not|terribly|funny|if|you|'re|more|than|six|years|old|. The|impact|of|the|Armenian|genocide|is|diluted|by|too|much|stage|business|in|the|modern|day|. Going|to|the|website|may|be|just|as|fun|(|and|scary|)|as|going|to|the|film|. Lacking|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|. Admirable|,|certainly|,|but|not|much|fun|to|watch|. For|Caine|Lovers|only|. A|shambles|of|a|movie|--|visually|unattractive|,|unbearably|loud|and|utterly|silly|...|its|hilarity|is|completely|unintentional|. De|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|. No|,|it|'s|not|nearly|as|good|as|any|of|its|influences|. A|reasonably|efficient|mechanism|,|but|it|offers|few|surprises|and|finds|its|stars|slumming|in|territory|they|should|have|avoided|. The|rest|of|the|plot|is|impossible|to|explain|without|blowing|whatever|tension|there|is|,|although|it|'s|more|comedy|than|suspense|De|Palma|creates|. Human|Nature|talks|the|talk|,|but|it|fails|to|walk|the|silly|walk|that|distinguishes|the|merely|quirky|from|the|surreal|. City|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|. The|Marquis|de|Sade|could|n't|have|been|as|dull|a|person|as|this|film|makes|him|out|to|be|. What|could|have|been|a|neat|little|story|about|believing|in|yourself|is|swamped|by|heavy-handed|melodrama|. The|cast|is|uniformly|excellent|...|but|the|film|itself|is|merely|mildly|charming|. Drives|for|the|same|kind|of|bittersweet|,|conciliatory|tone|that|Three|Seasons|achieved|but|loses|its|way|in|rhetorical|excess|and|blatant|sentimentality|. A|bigger|holiday|downer|than|your|end-of-year|401|(|k|)|statement|. The|whole|thing|plays|out|with|the|drowsy|heaviness|of|synchronized|swimmer|wearing|a|wool|wetsuit|. Fairly|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|! It|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|. Take|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|. It|'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|. Showtime|is|closer|to|Slowtime|. It|may|be|an|easy|swipe|to|take|,|but|this|Barbershop|just|does|n't|make|the|cut|. The|Weight|of|Water|uses|water|as|a|metaphor|for|subconscious|desire|,|but|this|leaky|script|barely|stays|afloat|. `|How|many|more|voyages|can|this|limping|but|dearly-loved|franchise|survive|?|' Despite|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|. Fans|of|the|TV|series|will|be|disappointed|,|and|everyone|else|will|be|slightly|bored|. The|only|element|of|suspense|is|whether|the|movie|will|change|titles|or|distributors|again|before|the|closing|credits|roll|. Barely|goes|beyond|comic|book|status|. It|'s|disappointing|when|filmmakers|throw|a|few|big-name|actors|and|cameos|at|a|hokey|script|. I|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|. An|eccentric|little|comic\/thriller|deeply|in|love|with|its|own|quirky|personality|. Afraid|to|pitch|into|farce|,|yet|only|half-hearted|in|its|spy|mechanics|,|All|the|Queen|'s|Men|is|finally|just|one|long|drag|. Maybe|it|'s|the|star|power|of|the|cast|or|the|redundant|messages|,|but|something|aboul|``|Full|Frontal|''|seems|,|well|,|contrived|. (|Morgan|)|,|Judd|and|Franklin|ca|n't|save|the|script|,|rooted|in|a|novel|by|Joseph|Finder|,|from|some|opportunism|. Passably|entertaining|but|also|mechanical|and|joyless|. Safe|Conduct|,|however|ambitious|and|well-intentioned|,|fails|to|hit|the|entertainment|bull|'s|-|eye|. My|response|to|the|film|is|best|described|as|lukewarm|. Maybe|I|found|the|proceedings|a|little|bit|too|conventional|. Too|timid|to|bring|a|sense|of|closure|to|an|ugly|chapter|of|the|twentieth|century|. It|'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|. It|'s|too|long|,|too|repetitive|,|and|takes|way|too|many|years|to|resolve|to|be|a|total|winner|. A|sudsy|cautionary|tale|. A|movie|that|tries|to|fuse|the|two|`|woods|'|but|winds|up|a|Bolly-Holly|masala|mess|. Mr.|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|. Leaves|you|with|a|knot|in|your|stomach|,|its|power|is|undercut|by|its|own|head-banging|obviousness|. Watching|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|. Unfortunately|,|as|a|writer|,|Mr.|Montias|is|n't|nearly|as|good|to|his|crew|as|he|is|as|a|director|or|actor|. On|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|. The|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|. One|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|. ...|this|movie|has|a|glossy|coat|of|action|movie|excess|while|remaining|heartless|at|its|core|. Murder|By|Numbers|is|like|a|couple|of|mediocre|TV-movie|-|of-the-week|films|clumsily|stuck|together|. The|film|is|surprisingly|well-directed|by|Brett|Ratner|,|who|keeps|things|moving|well|--|at|least|until|the|problematic|third|act|. Warmed-over|Tarantino|by|way|of|wannabe|Elmore|Leonard|. (|Sen|'s|)|soap|opera-ish|approach|undermines|his|good|intentions|. Showtime|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|. Sushi|for|the|connoisseurs|of|the|macabre|. Do|n't|waste|your|money|. Though|certainly|original|in|form|,|Altar|Boys|requires|a|taste|for|Swamp|Thing-type|animation|,|doubled|with|a|deafening|score|. There|are|n't|many|laughs|in|this|interesting|study|of|the|cultural|mores|of|Georgian|Jews|in|Tel|Aviv|. There|'s|not|enough|to|sustain|the|comedy|. Like|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|. We|may|get|the|full|visceral|impact|of|a|ruthless|army|on|the|warpath|but|no|sense|of|the|devilish|complexity|of|the|Balkans|conflict|. You|'re|better|off|staying|home|and|watching|The|X-Files|. Chaotic|,|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|. Bears|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|. This|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|. Friday|After|Next|has|the|same|problem|that|Next|Friday|did|--|it|'s|called|Where|'s|Chris|Tucker|When|You|Need|Him|? This|film|is|full|of|rabbits|. Brimful|. But|like|most|rabbits|,|it|seems|to|lack|substance|. I|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|. I|kept|wishing|I|was|watching|a|documentary|about|the|wartime|Navajos|and|what|they|accomplished|instead|of|all|this|specious|Hollywood|hoo-ha|. No|number|of|fantastic|sets|,|extras|,|costumes|and|spectacular|locales|can|disguise|the|emptiness|at|the|center|of|the|story|. A|movie|far|more|cynical|and|lazy|than|anything|a|fictitious|Charlie|Kaufman|might|object|to|. Could|The|Country|Bears|really|be|as|bad|as|its|trailers|? In|a|word|--|yes|. If|High|Crimes|were|any|more|generic|it|would|have|a|universal|product|code|instead|of|a|title|. Reggio|falls|victim|to|relying|on|the|very|digital|technology|that|he|fervently|scorns|,|creating|a|meandering|,|inarticulate|and|ultimately|disappointing|film|. The|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|? The|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|. Despite|the|authenticity|of|the|trappings|,|the|film|is|overblown|in|its|plotting|,|hackneyed|in|its|dialogue|and|anachronistic|in|its|style|. Murder|and|mayhem|of|this|sort|quickly|becomes|monotonous|. The|journey|toward|redemption|feels|more|like|a|cinematic|experiment|than|a|full-blown|movie|. That|Zhang|would|make|such|a|strainingly|cute|film|--|with|a|blind|orphan|at|its|center|,|no|less|--|indicates|where|his|ambitions|have|wandered|. The|Gantzes|'|interviews|tend|to|let|the|guys|off|the|hook|. The|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|. This|is|a|good|movie|in|spurts|,|but|when|it|does|n't|work|,|it|'s|at|important|times|. Parker|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|. Flotsam|in|the|sea|of|moviemaking|,|not|big|enough|for|us|to|worry|about|it|causing|significant|harm|and|not|smelly|enough|to|bother|despising|. A|TV|episode|inflated|past|its|natural|length|. Involving|at|times|,|but|lapses|quite|casually|into|the|absurd|. All|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|. There|are|weird|resonances|between|actor|and|role|here|,|and|they|'re|not|exactly|flattering|. The|unceasing|sadism|is|so|graphically|excessive|,|the|director|just|ends|up|exposing|his|own|obsession|. The|story|...|is|moldy|and|obvious|. It|'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|. Suffocated|at|conception|by|its|Munchausen-by-proxy|mum|. Punish|the|vehicle|to|adore|the|star|. Even|if|Britney|Spears|is|really|cute|,|her|movie|is|really|bad|. Big|Fat|Liar|is|just|futile|silliness|looking|to|tap|into|the|kiddie|sensibilities|. Usually|when|I|get|this|much|syrup|,|I|like|pancakes|to|go|with|it|. All|the|necessary|exposition|prevents|the|picture|from|rising|above|your|generic|sand|'n'|sandal|adventure|. Glib|,|satirical|documentary|that|fudges|facts|,|makes|facile|points|and|engages|in|the|cinematic|equivalent|of|tabloid|journalism|. Gangs|of|New|York|is|an|unapologetic|mess|,|whose|only|saving|grace|is|that|it|ends|by|blowing|just|about|everything|up|. An|overblown|clunker|full|of|bad|jokes|,|howling|cliches|and|by-the-numbers|action|sequences|. Without|a|strong|script|and|energetic|acting|,|Dogma|films|can|produce|the|same|sleep-inducing|effects|as|watching|your|neighbor|'s|home|videos|. A|mild|,|reluctant|,|thumbs|down|. Strong|setup|and|ambitious|goals|fade|as|the|film|descends|into|unsophisticated|scare|tactics|and|B-film|thuggery|. Schindler|'s|List|it|ai|n't|. A|cinematic|sleeping|pill|of|impressive|potency|. It|'s|an|awfully|derivative|story|. The|movie|barely|makes|sense|,|with|its|unbelievable|naïveté|and|arbitrary|flashbacks|. It|'s|an|earnest|debut|full|of|heartfelt|performances|,|but|is|ultimately|let|down|by|a|story|that|is|all|too|predictable|. About|as|cutting-edge|as|Pet|Rock|:|The|Movie|. With|generic|sets|and|B-grade|special|effects|,|Jason|is|about|as|convincing|on|the|sci-fi|front|as|TV|'s|defunct|Cleopatra|2525|. Not|sweet|enough|to|liven|up|its|predictable|story|and|will|leave|even|fans|of|hip-hop|sorely|disappointed|. Winds|up|feeling|like|lots|of|other|quirky|movies|that|try|to|score|hipness|points|with|young|adults|. Oft-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 The|pacing|is|glacial|,|the|screenplay|is|stiff|as|a|board|,|and|things|heat|up|only|in|the|movie|'s|final|scenes|. The|premise|is|overshadowed|by|the|uberviolence|of|the|Clericks|as|this|becomes|just|another|kung-fu|sci-fi|movie|with|silly|action|sequences|. With|its|hints|of|a|greater|intelligence|lurking|somewhere|,|The|Ring|makes|its|stupidity|more|than|obvious|. It|'s|painful|. Pumpkin|struts|about|with|``|courage|''|pinned|to|its|huckster|lapel|while|a|yellow|streak|a|mile|wide|decorates|its|back|. An|uneven|film|dealing|with|too|many|problems|to|be|taken|seriously|. Sheridan|...|smoothes|over|sources|of|conflict|that|could|have|lent|the|film|a|bit|more|depth|. An|atonal|estrogen|opera|that|demonizes|feminism|while|gifting|the|most|sympathetic|male|of|the|piece|with|a|nice|vomit|bath|at|his|wedding|. Half|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|. Writer\/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|. (|Newton|)|wanders|through|CHARLIE|completely|unaware|she|needs|to|show|some|presence|and|star|quality|. Unfortunately|,|the|picture|failed|to|capture|me|. I|found|it|slow|,|drab|,|and|bordering|on|melodramatic|. A|lousy|movie|that|'s|not|merely|unwatchable|,|but|also|unlistenable|. The|best|way|to|hope|for|any|chance|of|enjoying|this|film|is|by|lowering|your|expectations|. Then|lower|them|a|bit|more|. When|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|. Cliches|are|as|thick|as|the|cigarette|smoke|. A|woozy|,|roisterous|,|exhausting|mess|,|and|the|off-beat|casting|of|its|two|leads|turns|out|to|be|as|ill-starred|as|you|might|expect|. `|Abandon|all|hope|,|ye|who|enter|here|'|...|you|should|definitely|let|Dante|'s|gloomy|words|be|your|guide|. What|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|. A|grim|,|flat|and|boring|werewolf|movie|that|refuses|to|develop|an|energy|level|. Birot|'s|directorial|debut|(|she|co-wrote|the|script|with|Christophe|Honoré|)|is|n't|so|much|bad|as|it|is|bland|. Watching|the|film|is|like|reading|a|Times|Portrait|of|Grief|that|keeps|shifting|focus|to|the|journalist|who|wrote|it|. Enough|similarities|to|Gymkata|and|Howie|Long|'s|Firestorm|that|my|fingernails|instinctively|crawled|towards|my|long-suffering|eyeballs|. Succeeds|in|providing|a|disquiet|world|the|long-dreaded|completion|of|the|Police|Academy|series|. Christians|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|. If|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|. A|frantic|search|for|laughs|,|with|a|hit-to-miss|ratio|that|does|n't|exactly|favour|the|audience|. Like|a|documentary|version|of|Fight|Club|,|shorn|of|social|insight|,|intellectual|pretension|and|cinematic|interest|. ``|An|entire|film|about|researchers|quietly|reading|dusty|old|letters|.|'' Pryor|Lite|,|with|half|the|demons|,|half|the|daring|,|much|less|talent|,|many|fewer|laughs|. What|'s|at|stake|in|this|film|is|nothing|more|than|an|obsolete|,|if|irritating|,|notion|of|class|. The|stories|here|suffer|from|the|chosen|format|. While|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|. Just|how|extreme|are|these|ops|? I|regret|to|report|that|these|ops|are|just|not|extreme|enough|. The|actors|are|forced|to|grapple|with|hazy|motivations|that|never|come|into|focus|. John|Leguizamo|may|be|a|dramatic|actor|--|just|not|in|this|movie|. The|sequel|has|turned|completely|and|irrevocably|bizarre|to|the|point|of|utter|nonsense|. Hardly|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|. Build|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|. Rainy|days|and|movies|about|the|disintegration|of|families|always|get|me|down|. ...|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|. The|Master|Of|Disaster|-|it|'s|a|piece|of|dreck|disguised|as|comedy|. The|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|. The|stupidest|,|most|insulting|movie|of|2002|'s|first|quarter|. It|'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|. A|film|so|tedious|that|it|is|impossible|to|care|whether|that|boast|is|true|or|not|. None|of|this|violates|the|letter|of|Behan|'s|book|,|but|missing|is|its|spirit|,|its|ribald|,|full-throated|humor|. Bad|Company|leaves|a|bad|taste|,|not|only|because|of|its|bad-luck|timing|,|but|also|the|staleness|of|its|script|. Even|if|it|ultimately|disappoints|,|the|picture|does|have|about|a|matinee|admission|'s|worth|of|funny|to|keep|it|afloat|. Fails|to|bring|as|much|to|the|table|. A|film|made|with|as|little|wit|,|interest|,|and|professionalism|as|artistically|possible|for|a|slummy|Hollywood|caper|flick|. Disturbingly|superficial|in|its|approach|to|the|material|. If|you|'re|not|the|target|demographic|...|this|movie|is|one|long|chick-flick|slog|. I|hate|this|movie It|'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|. Gooding|and|Coburn|are|both|Oscar|winners|,|a|fact|which|,|as|you|watch|them|clumsily|mugging|their|way|through|Snow|Dogs|,|seems|inconceivable|. At|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 ...|pitiful|,|slapdash|disaster|. A|DOA|dud|from|frame|one|. Jaw-droppingly|superficial|,|straining|to|get|by|on|humor|that|is|not|even|as|daring|as|John|Ritter|'s|glory|days|on|Three|'s|Company|. There|are|plenty|of|scenes|in|Frida|that|do|work|,|but|rarely|do|they|involve|the|title|character|herself|. Although|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|. The|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|. Distances|you|by|throwing|out|so|many|red|herrings|,|so|many|false|scares|,|that|the|genuine|ones|barely|register|. Godard|uses|his|characters|--|if|that|'s|not|too|glorified|a|term|--|as|art|things|,|mouthpieces|,|visual|motifs|,|blanks|. The|movie|generates|plot|points|with|a|degree|of|randomness|usually|achieved|only|by|lottery|drawing|. A|predictable|,|manipulative|stinker|. The|story|passes|time|until|it|'s|time|for|an|absurd|finale|of|twisted|metal|,|fireballs|and|revenge|. Eastwood|winces|,|clutches|his|chest|and|gasps|for|breath|. It|'s|a|spectacular|performance|-|ahem|,|we|hope|it|'s|only|acting|. The|movie|suffers|from|two|fatal|ailments|--|a|dearth|of|vitality|and|a|story|that|'s|shapeless|and|uninflected|. It|'s|just|weirdness|for|the|sake|of|weirdness|,|and|where|Human|Nature|should|be|ingratiating|,|it|'s|just|grating|. An|ambitiously|naturalistic|,|albeit|half-baked|,|drama|about|an|abused|,|inner-city|autistic|teen|. once|she|lets|her|love|depraved|leads|meet|,|(|Denis|'|)|story|becomes|a|hopeless|,|unsatisfying|muddle The|dose|is|strong|and|funny|,|for|the|first|15|minutes|anyway|;|after|that|,|the|potency|wanes|dramatically|. The|people|in|ABC|Africa|are|treated|as|docile|,|mostly|wordless|ethnographic|extras|. What|'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|. No|doubt|the|star|and|everyone|else|involved|had|their|hearts|in|the|right|place|. Where|their|heads|were|is|anyone|'s|guess|. Call|me|a|cynic|,|but|there|'s|something|awfully|deadly|about|any|movie|with|a|life-affirming|message|. A|gratingly|unfunny|groaner|littered|with|zero-dimensional|,|unlikable|characters|and|hackneyed|,|threadbare|comic|setups|. Got|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|. A|painfully|slow|cliche-ridden|film|filled|with|more|holes|than|Clyde|Barrow|'s|car|. Like|leafing|through|an|album|of|photos|accompanied|by|the|sketchiest|of|captions|. I|guess|it|just|goes|to|show|that|if|you|give|a|filmmaker|an|unlimited|amount|of|phony|blood|,|nothing|good|can|happen|. Gaghan|captures|the|half-lit|,|sometimes|creepy|intimacy|of|college|dorm|rooms|,|a|subtlety|that|makes|the|silly|,|over-the-top|coda|especially|disappointing|. Feels|less|like|a|change|in|(|Herzog|'s|)|personal|policy|than|a|half-hearted|fluke|. One|of|the|most|unpleasant|things|the|studio|has|ever|produced|. Will|anyone|who|is|n't|a|Fangoria|subscriber|be|excited|that|it|has|n't|gone|straight|to|video|? A|selection|of|scenes|in|search|of|a|movie|. (|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|. Will|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|. True|to|its|animatronic|roots|:|...|as|stiff|,|ponderous|and|charmless|as|a|mechanical|apparatus|...|`|The|Country|Bears|'|should|never|have|been|brought|out|of|hibernation|. (|Evans|is|)|a|fascinating|character|,|and|deserves|a|better|vehicle|than|this|facetious|smirk|of|a|movie|. The|script|'s|judgment|and|sense|of|weight|is|way|,|way|off|. You|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|. Evelyn|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|. A|derivative|collection|of|horror|and|sci-fi|cliches|. Loosely|speaking|,|we|'re|in|All|of|Me|territory|again|,|and|,|strictly|speaking|,|Schneider|is|no|Steve|Martin|. As|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|. Limps|along|on|a|squirm-inducing|fish-out-of-water|formula|that|goes|nowhere|and|goes|there|very|,|very|slowly|. Just|the|sort|of|lazy|tearjerker|that|gives|movies|about|ordinary|folk|a|bad|name|. The|redeeming|feature|of|Chan|'s|films|has|always|been|the|action|,|but|the|stunts|in|The|Tuxedo|seem|tired|and|,|what|'s|worse|,|routine|. While|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|. Has|all|the|scenic|appeal|of|a|cesspool|. A|rambling|ensemble|piece|with|loosely|connected|characters|and|plots|that|never|quite|gel|. A|Lifetime|movie|about|men|. The|Balkans|provide|the|obstacle|course|for|the|love|of|a|good|woman|. It|'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 This|is|a|movie|that|starts|out|like|Heathers|,|then|becomes|Bring|it|On|,|then|becomes|unwatchable|. The|screenplay|flounders|under|the|weight|of|too|many|story|lines|. I|think|it|was|Plato|who|said|,|'|I|think|,|therefore|I|know|better|than|to|rush|to|the|theatre|for|this|one|.|' If|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|. This|is|rote|drivel|aimed|at|Mom|and|Dad|'s|wallet|. Contrived|,|maudlin|and|cliche-ridden|...|if|this|sappy|script|was|the|best|the|contest|received|,|those|rejected|must|have|been|astronomically|bad|. I|hate|the|feeling|of|having|been|slimed|in|the|name|of|High|Art|. This|is|more|a|case|of|`|Sacre|bleu|!|' than|`|Magnifique|'|. The|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|. Whether|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|. Yet|another|weepy|Southern|bore-athon|. I|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|. Perhaps|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|. Except|as|an|acting|exercise|or|an|exceptionally|dark|joke|,|you|wonder|what|anyone|saw|in|this|film|that|allowed|it|to|get|made|. This|insufferable|movie|is|meant|to|make|you|think|about|existential|suffering|. Instead|,|it|'ll|only|put|you|to|sleep|. Who|is|this|movie|for|? Not|kids|,|who|do|n'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|.|' A|sleep-inducingly|slow-paced|crime|drama|with|clumsy|dialogue|,|heavy-handed|phoney-feeling|sentiment|,|and|an|overly-familiar|set|of|plot|devices|. It|'s|so|tedious|that|it|makes|you|forgive|every|fake|,|dishonest|,|entertaining|and|,|ultimately|,|more|perceptive|moment|in|Bridget|Jones|'s|Diary|. Almost|as|offensive|as|``|Freddy|Got|Fingered|.|'' The|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|. It|is|depressing|,|ruthlessly|pained|and|depraved|,|the|movie|equivalent|of|staring|into|an|open|wound|. Ponderous|,|plodding|soap|opera|disguised|as|a|feature|film|. Cold|,|pretentious|,|thoroughly|dislikable|study|in|sociopathy|. For|the|future|,|one|hopes|Mr.|Plympton|will|find|room|for|one|more|member|of|his|little|band|,|a|professional|screenwriter|. A|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|. Reign|of|Fire|never|comes|close|to|recovering|from|its|demented|premise|,|but|it|does|sustain|an|enjoyable|level|of|ridiculousness|. Human|Nature|is|a|goofball|movie|,|in|the|way|that|Malkovich|was|,|but|it|tries|too|hard|. Originality|is|sorely|lacking|. The|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|. Though|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|. Ram|Dass|Fierce|Grace|moulds|itself|as|an|example|to|up-and-coming|documentarians|,|of|the|overlooked|pitfalls|of|such|an|endeavour|. Lucky|Break|is|perfectly|inoffensive|and|harmless|,|but|it|'s|also|drab|and|inert|. For|a|story|set|at|sea|,|Ghost|Ship|is|pretty|landbound|,|with|its|leaden|acting|,|dull|exposition|and|telegraphed|`|surprises|.|' There|might|be|some|sort|of|credible|gender-provoking|philosophy|submerged|here|,|but|who|the|hell|cares|? Nothing|more|than|a|stifling|morality|tale|dressed|up|in|peekaboo|clothing|. I|like|my|Christmas|movies|with|more|elves|and|snow|and|less|pimps|and|ho|'s|. It|all|seemed|wasted|like|DeNiro|'s|once|promising|career|and|the|once|grand|Long|Beach|boardwalk|. (|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|. Unfortunately|,|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|. Just|entertaining|enough|not|to|hate|,|too|mediocre|to|love|. `|Sophisticated|'|viewers|who|refuse|to|admit|that|they|do|n't|like|it|will|likely|call|it|`|challenging|'|to|their|fellow|sophisticates|. Equilibrium|the|movie|,|as|opposed|to|the|manifesto|,|is|really|,|really|stupid|. Excruciatingly|unfunny|and|pitifully|unromantic|. The|film|'s|thoroughly|recycled|plot|and|tiresome|jokes|...|drag|the|movie|down|. It|does|n't|offer|audiences|any|way|of|gripping|what|its|point|is|,|or|even|its|attitude|toward|its|subject|. This|kiddie-oriented|stinker|is|so|bad|that|I|even|caught|the|gum|stuck|under|my|seat|trying|to|sneak|out|of|the|theater Though|Impostor|deviously|adopts|the|guise|of|a|modern|motion|picture|,|it|too|is|a|bomb|. Cox|offers|plenty|of|glimpses|at|existing|photos|,|but|there|are|no|movies|of|Nijinsky|,|so|instead|the|director|treats|us|to|an|aimless|hodgepodge|. Every|note|rings|false|. When|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|. It|never|rises|to|its|clever|what-if|concept|. Admirably|ambitious|but|self-indulgent|. This|story|of|unrequited|love|does|n't|sustain|interest|beyond|the|first|half-hour|. This|angst-ridden|territory|was|covered|earlier|and|much|better|in|Ordinary|People|. The|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|. A|big|,|loud|,|bang-the-drum|bore|. (|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|. The|concept|behind|Kung|Pow|:|Enter|the|Fist|is|hilarious|. It|'s|too|bad|nothing|else|is|. Hardman|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|. El|Crimen|Del|Padre|Amaro|would|likely|be|most|effective|if|used|as|a|tool|to|rally|anti-Catholic|protestors|. Interesting|and|thoroughly|unfaithful|version|of|Carmen A|serious|movie|with|serious|ideas|. But|seriously|,|folks|,|it|does|n't|work|. There|'s|nothing|exactly|wrong|here|,|but|there|'s|not|nearly|enough|that|'s|right|. The|action|here|is|unusually|tame|,|the|characters|are|too|simplistic|to|maintain|interest|,|and|the|plot|offers|few|surprises|. I|could|n't|help|but|feel|the|wasted|potential|of|this|slapstick|comedy|. What|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|. (|A|)|painfully|flat|gross-out|comedy|... Even|if|you|'re|an|Elvis|person|,|you|wo|n't|find|anything|to|get|excited|about|on|this|DVD|. The|movie|certainly|has|its|share|of|clever|moments|and|biting|dialogue|,|but|there|'s|just|not|much|lurking|below|its|abstract|surface|. It|'s|bedeviled|by|labored|writing|and|slack|direction|. I|'m|sure|there|'s|a|teenage|boy|out|there|somewhere|who|'s|dying|for|this|kind|of|entertainment|. The|Tuxedo|miscalculates|badly|by|forcing|the|star|to|play|second|fiddle|to|the|dull|effects|that|allow|the|suit|to|come|to|life|. The|film|is|a|confusing|melange|of|tones|and|styles|,|one|moment|a|romantic|trifle|and|the|next|a|turgid|drama|. Obviously|,|a|lot|of|people|wasted|a|lot|of|their|time|(|including|mine|)|on|something|very|inconsequential|. There|'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|. It|drowns|in|sap|. Deliberately|and|devotedly|constructed|,|Far|from|Heaven|is|too|picture|postcard|perfect|,|too|neat|and|new|pin-like|,|too|obviously|a|recreation|to|resonate|. It|'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|. I|'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|. The|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|. The|modern-day|characters|are|nowhere|near|as|vivid|as|the|19th-century|ones|. Blessed|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|. Uneven|performances|and|a|spotty|script|add|up|to|a|biting|satire|that|has|no|teeth|. Director|Jay|Russell|stomps|in|hobnail|boots|over|Natalie|Babbitt|'s|gentle|,|endearing|1975|children|'s|novel|. Benigni|'s|Pinocchio|is|extremely|straight|and|mind-numbingly|stilted|,|its|episodic|pacing|keeping|the|film|from|developing|any|storytelling|flow|. The|troubling|thing|about|Clockstoppers|is|that|it|does|n't|make|any|sense|. With|its|paint|fights|,|motorized|scooter|chases|and|dewy-eyed|sentiment|,|it|'s|a|pretty|listless|collection|of|kid-movie|clichés|. Mostly|the|film|is|just|hectic|and|homiletic|:|two|parts|exhausting|Men|in|Black|mayhem|to|one|part|family|values|. Kicks|off|with|an|inauspicious|premise|,|mopes|through|a|dreary|tract|of|virtually|plotless|meanderings|and|then|ends|with|a|whimper|. A|rote|exercise|in|both|animation|and|storytelling|. The|material|and|the|production|itself|are|little|more|than|routine|. The|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|. Not|even|Steven|Spielberg|has|dreamed|up|such|blatant|and|sickening|product|placement|in|a|movie|. It|'s|all|surface|psychodramatics|. The|Mothman|Prophecies|,|which|is|mostly|a|bore|,|seems|to|exist|only|for|its|climactic|setpiece|. That|frenetic|spectacle|(|on|the|TV|show|)|has|usually|been|leavened|by|a|charm|that|'s|conspicuously|missing|from|the|Girls|'|big-screen|blowout|. Kitschy|,|flashy|,|overlong|soap|opera|. For|all|the|time|we|spend|with|these|people|,|we|never|really|get|inside|of|them|. Yet|another|Arnold|vehicle|that|fails|to|make|adequate|use|of|his|particular|talents|. Sandra|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|. An|undistinguished|attempt|to|make|a|classic|theater|piece|cinematic|. too|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|. There|is|simply|not|enough|of|interest|onscreen|to|sustain|its|seventy-minute|running|time|. A|wordy|wisp|of|a|comedy|. Broomfield|'s|style|of|journalism|is|hardly|journalism|at|all|,|and|even|those|with|an|avid|interest|in|the|subject|will|grow|impatient|. (|Seagal|'s|)|strenuous|attempt|at|a|change|in|expression|could|very|well|clinch|him|this|year|'s|Razzie|. Has|the|disjointed|feel|of|a|bunch|of|strung-together|TV|episodes|. A|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|. Ozpetek|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|. A|dopey|movie|clothed|in|excess|layers|of|hipness|. The|Sweetest|Thing|is|expressly|for|idiots|who|do|n't|care|what|kind|of|sewage|they|shovel|into|their|mental|gullets|to|simulate|sustenance|. Sinks|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|. I|realized|that|no|matter|how|fantastic|Reign|of|Fire|looked|,|its|story|was|making|no|sense|at|all|. It|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|. Some|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|. SC2|is|an|autopilot|Hollywood|concoction|lacking|in|imagination|and|authentic|Christmas|spirit|,|yet|it|'s|geared|toward|an|audience|full|of|masters|of|both|. After|all|the|big|build-up|,|the|payoff|for|the|audience|,|as|well|as|the|characters|,|is|messy|,|murky|,|unsatisfying|. Seems|content|to|dog-paddle|in|the|mediocre|end|of|the|pool|,|and|it|'s|a|sad|,|sick|sight|. It|'s|refreshing|that|someone|understands|the|need|for|the|bad|boy|;|Diesel|,|with|his|brawny|frame|and|cool|,|composed|delivery|,|fits|the|bill|perfectly|. If|all|of|Eight|Legged|Freaks|was|as|entertaining|as|the|final|hour|,|I|would|have|no|problem|giving|it|an|unqualified|recommendation|. Suffers|from|a|flat|script|and|a|low|budget|. There|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|. The|same|should|go|for|movie|theaters|. Seemingly|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|. The|film|tries|to|touch|on|spousal|abuse|but|veers|off|course|and|becomes|just|another|revenge|film|. As|it|stands|it|'s|an|opera|movie|for|the|buffs|. This|franchise|has|not|spawned|a|single|good|film|. The|crap|continues|. Its|inescapable|absurdities|are|tantamount|to|insulting|the|intelligence|of|anyone|who|has|n't|been|living|under|a|rock|(|since|Sept.|11|)|. High|drama|,|Disney-style|-|a|wing|and|a|prayer|and|a|hunky|has-been|pursuing|his|castle|in|the|sky|. Like|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|. One|big|blustery|movie|where|nothing|really|happens|. When|it|comes|out|on|video|,|then|it|'s|the|perfect|cure|for|insomnia|. Like|a|comedian|who|starts|off|promisingly|but|then|proceeds|to|flop|,|Comedian|runs|out|of|steam|after|a|half|hour|. The|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|. Director|Chris|Eyre|is|going|through|the|paces|again|with|his|usual|high|melodramatic|style|of|filmmaking|. As|it|stands|,|there|'s|some|fine|sex|onscreen|,|and|some|tense|arguing|,|but|not|a|whole|lot|more|. I|could|just|feel|the|screenwriter|at|every|moment|`|Tap|,|tap|,|tap|,|tap|,|tapping|away|'|on|this|screenplay|. The|picture|does|n't|know|it|'s|a|comedy|. A|stupid|,|derivative|horror|film|that|substitutes|extreme|gore|for|suspense|. The|rollerball|sequences|feel|sanitised|and|stagey|. Roman|Polanski|directs|The|Pianist|like|a|surgeon|mends|a|broken|heart|;|very|meticulously|but|without|any|passion|. Nothing|more|than|a|run-of-the-mill|action|flick|. Lan|Yu|is|certainly|a|serviceable|melodrama|,|but|it|does|n't|even|try|for|the|greatness|that|Happy|Together|shoots|for|(|and|misses|)|. This|is|an|action|movie|with|an|action|icon|who|'s|been|all|but|decommissioned|. Even|if|it|is|generally|amusing|from|time|to|time|,|I|Spy|has|all|the|same|problems|the|majority|of|action|comedies|have|. Much|like|Robin|Williams|,|Death|to|Smoochy|has|already|reached|its|expiration|date|. An|annoying|orgy|of|excess|and|exploitation|that|has|no|point|and|goes|nowhere|. A|tired|,|unnecessary|retread|...|a|stale|copy|of|a|picture|that|was|n't|all|that|great|to|begin|with|. An|often|unfunny|romp|. A|worthy|idea|,|but|the|uninspired|scripts|,|acting|and|direction|never|rise|above|the|level|of|an|after-school|TV|special|. Twenty|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|. Ear-splitting|exercise|in|formula|crash-and-bash|action|. We|have|an|actor|who|is|great|fun|to|watch|performing|in|a|film|that|is|only|mildly|diverting|. Despite|Hoffman|'s|best|efforts|,|Wilson|remains|a|silent|,|lumpish|cipher|;|his|encounters|reveal|nothing|about|who|he|is|or|who|he|was|before|. There|'s|a|thin|line|between|likably|old-fashioned|and|fuddy-duddy|,|and|The|Count|of|Monte|Cristo|...|never|quite|settles|on|either|side|. The|emotional|overload|of|female|angst|irreparably|drags|the|film|down|. Schaefer|'s|...|determination|to|inject|farcical|raunch|...|drowns|out|the|promise|of|the|romantic|angle|. Like|Showgirls|and|Glitter|,|the|most|entertaining|moments|here|are|unintentional|. While|some|of|the|camera|work|is|interesting|,|the|film|'s|mid-to-low|budget|is|betrayed|by|the|surprisingly|shoddy|makeup|work|. The|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|. Impostor|is|a|step|down|for|director|Gary|Fleder|. Seagal|,|who|looks|more|like|Danny|Aiello|these|days|,|mumbles|his|way|through|the|movie|. The|movie|is|a|negligible|work|of|manipulation|,|an|exploitation|piece|doing|its|usual|worst|to|guilt-trip|parents|. Lacks|dramatic|punch|and|depth|. There|are|moments|of|real|pleasure|to|be|found|in|Sara|Sugarman|'s|whimsical|comedy|Very|Annie-Mary|but|not|enough|to|sustain|the|film|. I|can|analyze|this|movie|in|three|words|:|Thumbs|Friggin|'|Down|. Sadly|,|`|Garth|'|has|n't|progressed|as|nicely|as|`|Wayne|.|' Make|like|the|title|and|dodge|this|one|. This|is|not|one|of|the|movies|you|'d|want|to|watch|if|you|only|had|a|week|to|live|. The|first|hour|is|tedious|though|Ford|and|Neeson|capably|hold|our|interest|,|but|its|just|not|a|thrilling|movie|. Here|'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|. It|'s|obvious|(|Je-Gyu|is|)|trying|for|poetry|;|what|he|gets|instead|has|all|the|lyricism|of|a|limerick|scrawled|in|a|public|restroom|. Sweet|Home|Alabama|is|one|dumb|movie|,|but|its|stupidity|is|so|relentlessly|harmless|that|it|almost|wins|you|over|in|the|end|. (|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|. No|amount|of|good|acting|is|enough|to|save|Oleander|'s|uninspired|story|. A|vile|,|incoherent|mess|...|a|scummy|ripoff|of|David|Cronenberg|'s|brilliant|`|Videodrome|.|' Murphy|and|Wilson|actually|make|a|pretty|good|team|...|but|the|project|surrounding|them|is|distressingly|rote|. Despite|its|raucous|intent|,|XXX|is|as|conventional|as|a|Nike|ad|and|as|rebellious|as|spring|break|. Think|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|. It|is|one|more|celluloid|testimonial|to|the|cruelties|experienced|by|Southern|blacks|as|distilled|through|a|Caucasian|perspective|. It|'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|. A|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|)|. An|amateurish|,|quasi-improvised|acting|exercise|shot|on|ugly|digital|video|. The|holes|in|this|film|remain|agape|--|holes|punched|through|by|an|inconsistent|,|meandering|,|and|sometimes|dry|plot|. Would|Benigni|'s|Italian|Pinocchio|have|been|any|easier|to|sit|through|than|this|hastily|dubbed|disaster|? Unofficially|,|National|Lampoon|'s|Van|Wilder|is|Son|of|Animal|House|. Officially|,|it|is|twice|as|bestial|but|half|as|funny|. This|is|a|fragmented|film|,|once|a|good|idea|that|was|followed|by|the|bad|idea|to|turn|it|into|a|movie|. Mindless|yet|impressively|lean|spinoff|of|last|summer|'s|bloated|effects|fest|The|Mummy|Returns|. Halfway|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|. will|be|far|more|interesting|to|the|Soderbergh|faithful|than|it|will|be|to|the|casual|moviegoer|who|might|be|lured|in|by|Julia|Roberts|... Authentic|,|and|at|times|endearing|,|humorous|,|spooky|,|educational|,|but|at|other|times|as|bland|as|a|block|of|snow|. Control-Alt-Delete|Simone|as|quickly|as|possible Follows|the|original|film|virtually|scene|for|scene|and|yet|manages|to|bleed|it|almost|completely|dry|of|humor|,|verve|and|fun|. The|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|. The|screenplay|comes|across|,|rather|unintentionally|,|as|Hip-Hop|Scooby-Doo|. Has|lost|some|of|the|dramatic|conviction|that|underlies|the|best|of|comedies|... Vaguely|interesting|,|but|it|'s|just|too|too|much|. ...|no|charm|,|no|laughs|,|no|fun|,|no|reason|to|watch|. A|generic|family|comedy|unlikely|to|be|appreciated|by|anyone|outside|the|under-10|set|. Kung|Pow|seems|like|some|futile|concoction|that|was|developed|hastily|after|Oedekerk|and|his|fellow|moviemakers|got|through|crashing|a|college|keg|party|. Kurys|seems|intimidated|by|both|her|subject|matter|and|the|period|trappings|of|this|debut|venture|into|the|heritage|business|. The|film|virtually|chokes|on|its|own|self-consciousness|. A|manipulative|feminist|empowerment|tale|thinly|posing|as|a|serious|drama|about|spousal|abuse|. Everything|in|Maid|in|Manhattan|is|exceedingly|pleasant|,|designed|not|to|offend|. It|goes|down|easy|,|leaving|virtually|no|aftertaste|. A|profoundly|stupid|affair|,|populating|its|hackneyed|and|meanspirited|storyline|with|cardboard|characters|and|performers|who|value|cash|above|credibility|. ...|pays|tribute|to|heroes|the|way|Julia|Roberts|hands|out|awards|--|with|phony|humility|barely|camouflaging|grotesque|narcissism|. Time|stands|still|in|more|ways|that|one|in|Clockstoppers|,|a|sci-fi|thriller|as|lazy|as|it|is|interminable|. As|a|director|,|Eastwood|is|off|his|game|--|there|'s|no|real|sense|of|suspense|,|and|none|of|the|plot|`|surprises|'|are|really|surprising|. Eccentric|enough|to|stave|off|doldrums|,|Caruso|'s|self-conscious|debut|is|also|eminently|forgettable|. To|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|. Although|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|. A|puzzle|whose|pieces|do|not|fit|. Some|are|fascinating|and|others|are|not|,|and|in|the|end|,|it|is|almost|a|good|movie|. Would|that|Greengrass|had|gone|a|tad|less|for|grit|and|a|lot|more|for|intelligibility|. The|good|is|very|,|very|good|...|The|rest|runs|from|mildly|unimpressive|to|despairingly|awful|. `|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|. Be|forewarned|,|if|you|'re|depressed|about|anything|before|watching|this|film|,|you|may|just|end|up|trying|to|drown|yourself|in|a|lake|afterwards|. a|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 An|inexperienced|director|,|Mehta|has|much|to|learn|. A|limp|Eddie|Murphy|vehicle|that|even|he|seems|embarrassed|to|be|part|of|. So|muddled|,|repetitive|and|ragged|that|it|says|far|less|about|the|horrifying|historical|reality|than|about|the|filmmaker|'s|characteristic|style|. A|gushy|episode|of|``|M|\*|A|\*|S|\*|H|''|only|this|time|from|an|Asian|perspective|. ``|Looking|For|Leonard|''|just|seems|to|kinda|sit|in|neutral|,|hoping|for|a|stiff|wind|to|blow|it|uphill|or|something|. Nothing|more|than|four|or|five|mild|chuckles|surrounded|by|86|minutes|of|overly-familiar|and|poorly-constructed|comedy|. Definitely|in|the|guilty|pleasure|B-movie|category|,|Reign|of|Fire|is|so|incredibly|inane|that|it|is|laughingly|enjoyable|. Good-looking|but|relentlessly|lowbrow|outing|plays|like|Clueless|Does|South|Fork|. entertaining|enough|,|but|nothing|new ...|one|resurrection|too|many|. This|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|. DeMeo|is|not|without|talent|;|he|just|needs|better|material|. In|spite|of|featuring|a|script|credited|to|no|fewer|than|five|writers|,|apparently|nobody|here|bothered|to|check|it|twice|. No|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|. Initially|gripping|,|eventually|cloying|POW|drama|. A|timid|,|soggy|near|miss|. Works|better|in|the|conception|than|it|does|in|the|execution|...|winds|up|seeming|just|a|little|too|clever|. To|the|vast|majority|of|more|casual|filmgoers|,|it|will|probably|be|a|talky|bore|. Observant|intelligence|constantly|vies|with|pretension|--|and|sometimes|plain|wacky|implausibility|--|throughout|Maelstrom|. This|version|of|H.G.|Wells|'|Time|Machine|was|directed|by|H.G.|Wells|'|great-grandson|. They|should|have|found|Orson|Welles|'|great-grandson|. Shunji|Iwai|'s|All|About|Lily|Chou|Chou|is|a|beautifully|shot|,|but|ultimately|flawed|film|about|growing|up|in|Japan|. With|more|character|development|this|might|have|been|an|eerie|thriller|;|with|better|payoffs|,|it|could|have|been|a|thinking|man|'s|monster|movie|. Thriller|directorial|debut|for|Traffic|scribe|Gaghan|has|all|the|right|parts|,|but|the|pieces|do|n't|quite|fit|together|. ...|would|be|a|total|loss|if|not|for|two|supporting|performances|taking|place|at|the|movie|'s|edges|. There|'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|. Goldbacher|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|. Though|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|. The|documentary|is|much|too|conventional|--|lots|of|boring|talking|heads|,|etc.|--|to|do|the|subject|matter|justice|. The|movie|itself|appears|to|be|running|on|hypertime|in|reverse|as|the|truly|funny|bits|get|further|and|further|apart|. This|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|. Far|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|. The|problem|with|movies|about|angels|is|they|have|a|tendency|to|slip|into|hokum|. A|Rumor|of|Angels|does|n't|just|slip|--|it|avalanches|into|forced|fuzziness|. No|big|whoop|,|nothing|new|to|see|,|zero|thrills|,|too|many|flashbacks|and|a|choppy|ending|make|for|a|bad|film|. I|do|n't|think|this|movie|loves|women|at|all|. Shankman|...|and|screenwriter|Karen|Janszen|bungle|their|way|through|the|narrative|as|if|it|were|a|series|of|Bible|parables|and|not|an|actual|story|. A|negligible|British|comedy|. Fails|to|convince|the|audience|that|these|brats|will|ever|be|anything|more|than|losers|. Slack|and|uninspired|,|and|peopled|mainly|by|characters|so|unsympathetic|that|you|'re|left|with|a|sour|taste|in|your|mouth|. Skip|this|turd|and|pick|your|nose|instead|because|you|'re|sure|to|get|more|out|of|the|latter|experience|. What|can|one|say|about|a|balding|50-year-old|actor|playing|an|innocent|boy|carved|from|a|log|? Trailer|trash|cinema|so|uncool|the|only|thing|missing|is|the|``|Gadzooks|!|'' Her|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|. Like|the|world|of|his|film|,|Hartley|created|a|monster|but|did|n't|know|how|to|handle|it|. No|new|plot|conceptions|or|environmental|changes|,|just|different|bodies|for|sharp|objects|to|rip|through|. Needs|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|. In|the|end|,|there|is|n't|much|to|it|. A|waste|of|fearless|purity|in|the|acting|craft|. The|film|is|ultimately|about|as|inspiring|as|a|Hallmark|card|. Anyone|not|into|high-tech|splatterfests|is|advised|to|take|the|warning|literally|,|and|log|on|to|something|more|user-friendly|. Disreputable|doings|and|exquisite|trappings|are|dampened|by|a|lackluster|script|and|substandard|performances|. You|could|easily|mistake|it|for|a|sketchy|work-in-progress|that|was|inexplicably|rushed|to|the|megaplexes|before|its|time|. Directors|Harry|Gantz|and|Joe|Gantz|have|chosen|a|fascinating|subject|matter|,|but|the|couples|exposing|themselves|are|n't|all|that|interesting|. Yet|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|. for|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 Femme|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|? It|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|. Fluffy|neo-noir|hiding|behind|cutesy|film|references|. Imagine|Susan|Sontag|falling|in|love|with|Howard|Stern|. Like|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|. Should|have|been|worth|cheering|as|a|breakthrough|but|is|devoid|of|wit|and|humor|. The|best|thing|about|the|movie|is|its|personable|,|amusing|cast|. These|guys|seem|great|to|knock|back|a|beer|with|but|they|'re|simply|not|funny|performers|. Everything|was|as|superficial|as|the|forced|New|Jersey|lowbrow|accent|Uma|had|. Director|David|Fincher|and|writer|David|Koepp|ca|n't|sustain|it|. Finally|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|. A|movie|that|feels|like|the|pilot|episode|of|a|new|teen-targeted|action|TV|series|. One|of|the|most|highly-praised|disappointments|I|'ve|had|the|misfortune|to|watch|in|quite|some|time|. The|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|. Director|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|. Strong|filmmaking|requires|a|clear|sense|of|purpose|,|and|in|that|oh-so-important|category|,|The|Four|Feathers|comes|up|short|. The|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|. Devolves|into|the|derivative|,|leaning|on|badly-rendered|CGI|effects|. Anyone|who|gets|chills|from|movies|with|giant|plot|holes|will|find|plenty|to|shake|and|shiver|about|in|`|The|Ring|.|' A|grand|fart|coming|from|a|director|beginning|to|resemble|someone|'s|crazy|French|grandfather|. The|script|is|a|disaster|,|with|cloying|messages|and|irksome|characters|. both|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|. Plods|along|,|minus|the|twisted|humor|and|eye-popping|visuals|that|have|made|Miike|...|a|cult|hero|. Hollywood|has|taken|quite|a|nosedive|from|Alfred|Hitchcock|'s|imaginative|flight|to|Shyamalan|'s|self-important|summer|fluff|. The|film|'s|maudlin|focus|on|the|young|woman|'s|infirmity|and|her|naive|dreams|play|like|the|worst|kind|of|Hollywood|heart-string|plucking|. I|firmly|believe|that|a|good|video|game|movie|is|going|to|show|up|soon|. I|also|believe|that|Resident|Evil|is|not|it|. It|has|the|air|of|a|surprisingly|juvenile|lark|,|a|pop-influenced|prank|whose|charms|are|immediately|apparent|and|wear|thin|with|repetition|. The|plot|meanders|from|gripping|to|plodding|and|back|. This|is|cruel|,|misanthropic|stuff|with|only|weak|claims|to|surrealism|and|black|comedy|. No|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|. Best|described|as|I|Know|What|You|Did|Last|Winter|. (|Taylor|)|takes|us|on|a|ride|that|'s|consistently|surprising|,|easy|to|watch|--|but|,|oh|,|so|dumb|. It|'s|difficult|for|a|longtime|admirer|of|his|work|to|not|be|swept|up|in|Invincible|and|overlook|its|drawbacks|. Lazily|directed|by|Charles|Stone|III|...|from|a|leaden|script|by|Matthew|Cirulnick|and|novelist|Thulani|Davis|. Though|Jones|and|Snipes|are|enthralling|,|the|movie|bogs|down|in|rhetoric|and|cliché|. The|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|. An|artsploitation|movie|with|too|much|exploitation|and|too|little|art|. The|pacing|is|often|way|off|and|there|are|too|many|bona|fide|groaners|among|too|few|laughs|. With|lines|that|feel|like|long|soliloquies|--|even|as|they|are|being|framed|in|conversation|--|Max|is|static|,|stilted|. Barely|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|. Writer\/director|Burr|Steers|emphasizes|the|Q|in|Quirky|,|with|mixed|results|. One|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|. In|between|the|icy|stunts|,|the|actors|spout|hilarious|dialogue|about|following|your|dream|and|`|just|letting|the|mountain|tell|you|what|to|do|.|' The|obligatory|break-ups|and|hook-ups|do|n't|seem|to|have|much|emotional|impact|on|the|characters|. Make|no|mistake|,|ivans|xtc|. is|a|mess|. Hypnotically|dull|,|relentlessly|downbeat|,|laughably|predictable|wail|pitched|to|the|cadence|of|a|depressed|fifteen-year-old|'s|suicidal|poetry|. The|concept|is|a|hoot|. The|trailer|is|a|riot|. The|movie|is|a|dud|. It|'s|a|boring|movie|about|a|boring|man|,|made|watchable|by|a|bravura|performance|from|a|consummate|actor|incapable|of|being|boring|. Because|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|. It|'s|hard|to|imagine|another|director|ever|making|his|wife|look|so|bad|in|a|major|movie|. Some|stunning|visuals|--|and|some|staggeringly|boring|cinema|. These|characters|become|wearisome|. A|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|. This|may|be|the|first|cartoon|ever|to|look|as|if|it|were|being|shown|on|the|projection|television|screen|of|a|sports|bar|. Kim|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|. A|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|. After|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|. Contrived|pastiche|of|caper|clichés|. Many|shallower|movies|these|days|seem|too|long|,|but|this|one|is|egregiously|short|. Just|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|. The|most|ill-conceived|animated|comedy|since|the|1991|dog|Rover|Dangerfield|. Like|shave|ice|without|the|topping|,|this|cinematic|snow|cone|is|as|innocuous|as|it|is|flavorless|. Despite|its|sincere|acting|,|Signs|is|just|another|unoriginal|run|of|the|mill|sci-fi|film|with|a|flimsy|ending|and|lots|of|hype|. Yet|another|movie|which|presumes|that|high|school|social|groups|are|at|war|,|let|alone|conscious|of|each|other|'s|existence|. Loud|,|chaotic|and|largely|unfunny|. I|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|. Qualities|that|were|once|amusing|are|becoming|irritating|. Well|,|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|)|. Donovan|...|squanders|his|main|asset|,|Jackie|Chan|,|and|fumbles|the|vital|action|sequences|. There|is|no|psychology|here|,|and|no|real|narrative|logic|--|just|a|series|of|carefully|choreographed|atrocities|,|which|become|strangely|impersonal|and|abstract|. Bread|,|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|. Frida|is|certainly|no|disaster|,|but|neither|is|it|the|Kahlo|movie|Frida|fans|have|been|looking|for|. Leaks|treacle|from|every|pore|. The|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|. Kapur|weighs|down|the|tale|with|bogus|profundities|. While|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|. Blue|Crush|is|as|predictable|as|the|tides|. ...|The|movie|feels|stitched|together|from|stock|situations|and|characters|from|other|movies|. If|you|enjoy|being|rewarded|by|a|script|that|assumes|you|are|n't|very|bright|,|then|Blood|Work|is|for|you|. Trouble|Every|Day|is|a|success|in|some|sense|,|but|it|'s|hard|to|like|a|film|so|cold|and|dead|. The|film|'s|stagecrafts|are|intimate|and|therefore|bolder|than|the|otherwise|calculated|artifice|that|defines|and|overwhelms|the|film|'s|production|design|. A|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|. A|family-friendly|fantasy|that|ends|up|doing|very|little|with|its|imaginative|premise|. A|plodding|look|at|the|French|Revolution|through|the|eyes|of|aristocrats|. Tom|Shadyac|has|learned|a|bit|more|craft|since|directing|Adams|,|but|he|still|lingers|over|every|point|until|the|slowest|viewer|grasps|it|. Unspools|like|a|highbrow|,|low-key|,|102-minute|infomercial|,|blending|entrepreneurial|zeal|with|the|testimony|of|satisfied|customers|. A|fast-paced|,|glitzy|but|extremely|silly|piece|. Any|reasonably|creative|eighth-grader|could|have|written|a|more|credible|script|,|though|with|the|same|number|of|continuity|errors|. ...|while|the|humor|aspects|of|`|Jason|X|'|were|far|more|entertaining|than|I|had|expected|,|everything|else|about|the|film|tanks|. Your|taste|for|Jonah|-|A|Veggie|Tales|Movie|may|well|depend|on|your|threshold|for|pop|manifestations|of|the|Holy|Spirit|. Like|an|Afterschool|Special|with|costumes|by|Gianni|Versace|,|Mad|Love|looks|better|than|it|feels|. While|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|. The|script|,|the|gags|,|the|characters|are|all|direct-to-video|stuff|,|and|that|'s|where|this|film|should|have|remained|. A|thriller|without|thrills|and|a|mystery|devoid|of|urgent|questions|. A|collage|of|clichés|and|a|dim|echo|of|allusions|to|other|films|. The|film|is|hampered|by|its|predictable|plot|and|paper-thin|supporting|characters|. Jonah|is|only|so-so|...|the|addition|of|a|biblical|message|will|either|improve|the|film|for|you|,|or|it|will|lessen|it|. An|excruciating|demonstration|of|the|unsalvageability|of|a|movie|saddled|with|an|amateurish|screenplay|. How|many|more|times|will|indie|filmmakers|subject|us|to|boring|,|self-important|stories|of|how|horrible|we|are|to|ourselves|and|each|other|? There|are|some|laughs|in|this|movie|,|but|Williams|'|anarchy|gets|tiresome|,|the|satire|is|weak|. As|steamy|as|last|week|'s|pork|dumplings|. The|somber|pacing|and|lack|of|dramatic|fireworks|make|Green|Dragon|seem|more|like|medicine|than|entertainment|. The|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|. Another|wholly|unnecessary|addition|to|the|growing|,|moldering|pile|of|,|well|,|extreme|stunt|pictures|. This|strenuously|unfunny|Showtime|deserves|the|hook|. The|whole|thing|'s|fairly|lame|,|making|it|par|for|the|course|for|Disney|sequels|. ...|its|solemn|pretension|prevents|us|from|sharing|the|awe|in|which|it|holds|itself|. ...|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|.|'' If|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|. Features|nonsensical|and|laughable|plotting|,|wooden|performances|,|ineptly|directed|action|sequences|and|some|of|the|worst|dialogue|in|recent|memory|. With|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|. Nothing|about|this|movie|works|. If|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|. A|spooky|yarn|of|demonic|doings|on|the|high|seas|that|works|better|the|less|the|brain|is|engaged|. None|of|Birthday|Girl|'s|calculated|events|take|us|by|surprise|... Are|monsters|born|,|or|made|? Lisa|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|. The|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|. It|'s|exactly|the|kind|of|movie|Toback|'s|detractors|always|accuse|him|of|making|. With|the|dog|days|of|August|upon|us|,|think|of|this|dog|of|a|movie|as|the|cinematic|equivalent|of|high|humidity|. Less|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|. The|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|. This|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|. Takes|a|clunky|TV-movie|approach|to|detailing|a|chapter|in|the|life|of|the|celebrated|Irish|playwright|,|poet|and|drinker|. Not|only|does|the|thoroughly|formulaic|film|represent|totally|exemplify|middle-of-the-road|mainstream|,|it|also|represents|glossy|Hollywood|at|its|laziest|. A|shame|that|Stealing|Harvard|is|too|busy|getting|in|its|own|way|to|be|anything|but|frustrating|,|boring|,|and|forgettable|. Nearly|every|attempt|at|humor|here|is|DOA|. Collapses|under|its|own|meager|weight|. This|is|mild-mannered|,|been-there|material|given|a|pedestrian|spin|by|a|director|who|needed|a|touch|of|the|flamboyant|,|the|outrageous|. If|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|. Technically|and|artistically|inept|. Those|who|are|only|mildly|curious|,|I|fear|,|will|be|put|to|sleep|or|bewildered|by|the|artsy|and|often|pointless|visuals|. Though|Tom|Shadyac|'s|film|kicks|off|spookily|enough|,|around|the|halfway|mark|it|takes|an|abrupt|turn|into|glucose|sentimentality|and|laughable|contrivance|. A|long|,|dull|procession|of|despair|,|set|to|cello|music|culled|from|a|minimalist|funeral|. Call|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|. Death|might|be|a|release|. ``|(|Hopkins|)|does|n't|so|much|phone|in|his|performance|as|fax|it|. No|,|even|that|'s|too|committed|. He|gets|his|secretary|to|fax|it|.|'' Sodden|and|glum|,|even|in|those|moments|where|it|'s|supposed|to|feel|funny|and|light|. Priggish|,|lethargically|paced|parable|of|renewal|. A|beautifully|shot|but|dull|and|ankle-deep|`|epic|.|' Even|with|its|$|50-million|US|budget|,|Pinocchio|never|quite|achieves|the|feel|of|a|fanciful|motion|picture|. This|is|a|third-person|story|now|,|told|by|Hollywood|,|and|much|more|ordinary|for|it|. The|filmmakers|know|how|to|please|the|eye|,|but|it|is|not|always|the|prettiest|pictures|that|tell|the|best|story|. Written|,|flatly|,|by|David|Kendall|and|directed|,|barely|,|by|There|'s|Something|About|Mary|co-writer|Ed|Decter|. The|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|. Very|well|made|,|but|does|n't|generate|a|lot|of|tension|. Like|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|. It|'s|depressing|to|see|how|far|Herzog|has|fallen|. The|question|hanging|over|The|Time|Machine|is|not|,|as|the|main|character|suggests|,|`|what|if|?|' but|rather|,|`|How|can|you|charge|money|for|this|?|' Millions|of|dollars|heaped|upon|a|project|of|such|vast|proportions|need|to|reap|more|rewards|than|spiffy|bluescreen|technique|and|stylish|weaponry|. ``|Freaky|Friday|,|''|it|'s|not|. Perhaps|a|better|celebration|of|these|unfairly|dismissed|heroes|would|be|a|film|that|is|n't|this|painfully|forced|,|false|and|fabricated|. Although|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|. In|this|film|,|Aussie|David|Caesar|channels|the|not-quite-dead|career|of|Guy|Ritchie|. Maybe|you|'ll|be|lucky|,|and|there|'ll|be|a|power|outage|during|your|screening|so|you|can|get|your|money|back|. The|characterizations|and|dialogue|lack|depth|or|complexity|,|with|the|ironic|exception|of|Scooter|. This|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|. Narc|can|only|remind|us|of|brilliant|crime|dramas|without|becoming|one|itself|. Somewhere|inside|the|mess|that|is|World|Traveler|,|there|is|a|mediocre|movie|trying|to|get|out|. A|tedious|parable|about|honesty|and|good|sportsmanship|. Its|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|. An|artful|yet|depressing|film|that|makes|a|melodramatic|mountain|out|of|the|molehill|of|a|missing|bike|. The|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|. A|glossy|knock-off|of|a|B-movie|revenge|flick|. ...|expands|the|horizons|of|boredom|to|the|point|of|collapse|,|turning|into|a|black|hole|of|dullness|,|from|which|no|interesting|concept|can|escape|. It|'s|just|plain|boring|. Sad|nonsense|,|this|. But|not|without|cheesy|fun|factor|. One|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|. Really|dumb|but|occasionally|really|funny|. The|movie|wavers|between|Hallmark|card|sentimentality|and|goofy|,|life-affirming|moments|straight|out|of|a|cellular|phone|commercial|. The|director|'s|many|dodges|and|turns|add|up|to|little|more|than|a|screenful|of|gamesmanship|that|'s|low|on|both|suspense|and|payoff|. While|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|. The|satire|is|unfocused|,|while|the|story|goes|nowhere|. They|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|. It|'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|. Reyes|'|directorial|debut|has|good|things|to|offer|,|but|ultimately|it|'s|undone|by|a|sloppy|script If|you|'re|over|25|,|have|an|IQ|over|90|,|and|have|a|driver|'s|license|,|you|should|be|able|to|find|better|entertainment|. The|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|. ...|the|picture|'s|cleverness|is|ironically|muted|by|the|very|people|who|are|intended|to|make|it|shine|. Never|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|.|'' One|of|those|so-so|films|that|could|have|been|much|better|. Crossroads|feels|like|a|teenybopper|Ed|Wood|film|,|replete|with|the|pubescent|scandalous|innuendo|and|the|high-strung|but|flaccid|drama|. Fails|to|satisfactorily|exploit|its|gender|politics|,|genre|thrills|or|inherent|humor|. Interview|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|. Cacoyannis|'|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|. It|has|more|in|common|with|a|fireworks|display|than|a|movie|,|which|normally|is|expected|to|have|characters|and|a|storyline|. It|appears|to|have|been|made|by|people|to|whom|the|idea|of|narrative|logic|or|cohesion|is|an|entirely|foreign|concept|. Less|a|heartfelt|appeal|for|the|handicapped|than|a|nice|Belgian|waffle|. It|'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|. Abandon|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|. No|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|. Due|to|stodgy|,|soap|opera-ish|dialogue|,|the|rest|of|the|cast|comes|across|as|stick|figures|reading|lines|from|a|TelePrompTer|. (|T|)|he|film|is|never|sure|to|make|a|clear|point|--|even|if|it|seeks|to|rely|on|an|ambiguous|presentation|. While|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|. An|overwrought|Taiwanese|soaper|about|three|people|and|their|mixed-up|relationship|. Nobody|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|. A|thoroughly|awful|movie|--|dumb|,|narratively|chaotic|,|visually|sloppy|...|a|weird|amalgam|of|`|The|Thing|'|and|a|geriatric|`|Scream|.|' ...|another|example|of|how|Sandler|is|losing|his|touch|. Nothing|sticks|,|really|,|except|a|lingering|creepiness|one|feels|from|being|dragged|through|a|sad|,|sordid|universe|of|guns|,|drugs|,|avarice|and|damaged|dreams|. What|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|. The|plot|'s|contrivances|are|uncomfortably|strained|. Guilty|of|the|worst|sin|of|attributable|to|a|movie|like|this|:|it|'s|not|scary|in|the|slightest|. Schnieder|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|... Its|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|. By|the|final|whistle|you|'re|convinced|that|this|Mean|Machine|was|a|decent|TV|outing|that|just|does|n't|have|big|screen|magic|. To|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|. A|film|of|empty|,|fetishistic|violence|in|which|murder|is|casual|and|fun|. Pretend|it|'s|a|werewolf|itself|by|avoiding|eye|contact|and|walking|slowly|away|. It|'s|fun|,|but|it|'s|a|real|howler|. Some|fine|acting|,|but|ultimately|a|movie|with|no|reason|for|being|. It|'s|difficult|to|feel|anything|much|while|watching|this|movie|,|beyond|mild|disturbance|or|detached|pleasure|at|the|acting|. A|waterlogged|version|of|`|Fatal|Attraction|'|for|the|teeny-bopper|set|...|a|sad|,|soggy|potboiler|that|wastes|the|talents|of|its|attractive|young|leads|. It|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|. Sweet|gentle|Jesus|,|did|the|screenwriters|just|do|a|cut-and-paste|of|every|bad|action-movie|line|in|history|? It|'s|not|the|worst|comedy|of|the|year|,|but|it|certainly|wo|n't|win|any|honors|. This|is|for|the|most|part|a|useless|movie|,|even|with|a|great|director|at|the|helm|. A|loud|,|witless|mess|that|has|none|of|the|charm|and|little|of|the|intrigue|from|the|TV|series|. Even|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|. Though|it|inspires|some|(|out-of-field|)|creative|thought|,|the|film|is|--|to|its|own|detriment|--|much|more|a|cinematic|collage|than|a|polemical|tract|. As|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|. Sinks|into|the|usual|cafeteria|goulash|of|fart|jokes|,|masturbation|jokes|,|and|racist|Japanese|jokes|. Where|Tom|Green|stages|his|gags|as|assaults|on|America|'s|knee-jerk|moral|sanctimony|,|Jackass|lacks|aspirations|of|social|upheaval|. More|of|an|intriguing|curiosity|than|a|gripping|thriller|. The|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|. Contains|all|the|substance|of|a|Twinkie|--|easy|to|swallow|,|but|scarcely|nourishing|. Return|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|. Rarely|does|a|film|so|graceless|and|devoid|of|merit|as|this|one|come|along|. It|'s|a|thin|notion|,|repetitively|stretched|out|to|feature|length|,|awash|in|self-consciously|flashy|camera|effects|,|droning|house|music|and|flat|,|flat|dialogue|. On|a|certain|base|level|,|Blue|Crush|delivers|what|it|promises|,|just|not|well|enough|to|recommend|it|. The|colorful|Masseur|wastes|its|time|on|mood|rather|than|riding|with|the|inherent|absurdity|of|Ganesh|'s|rise|up|the|social|ladder|. ...|an|incredibly|heavy-handed|,|manipulative|dud|that|feels|all|too|familiar|. Wimps|out|by|going|for|that|PG-13|rating|,|so|the|more|graphic|violence|is|mostly|off-screen|and|the|sexuality|is|muted|. Trapped|presents|a|frightening|and|compelling|`|What|if|?|' scenario|that|will|give|most|parents|pause|...|Then|,|something|terrible|happens|. Madonna|has|made|herself|over|so|often|now|,|there|'s|apparently|nothing|left|to|work|with|,|sort|of|like|Michael|Jackson|'s|nose|. Never|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|. The|story|is|lacking|any|real|emotional|impact|,|and|the|plot|is|both|contrived|and|cliched|. A|depraved|,|incoherent|,|instantly|disposable|piece|of|hackery|. It|'s|a|bad|action|movie|because|there|'s|no|rooting|interest|and|the|spectacle|is|grotesque|and|boring|. (|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|. Handsome|and|sincere|but|slightly|awkward|in|its|combination|of|entertainment|and|evangelical|boosterism|. So|aggressively|cheery|that|Pollyana|would|reach|for|a|barf|bag|. Scooby-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|. Russell|lacks|the|visual|panache|,|the|comic|touch|,|and|perhaps|the|budget|of|Sommers|'s|title-bout|features|. Highly|uneven|and|inconsistent|...|Margarita|Happy|Hour|kinda|resembles|the|el|cheapo|margaritas|served|within|. Very|stupid|and|annoying|. The|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|. A|listless|and|desultory|affair|. Represents|the|depths|to|which|the|girls-behaving-badly|film|has|fallen|. How|inept|is|Serving|Sara|? It|makes|even|Elizabeth|Hurley|seem|graceless|and|ugly|. Jam-packed|with|literally|bruising|jokes|. Every|five|minutes|or|so|,|someone|gets|clocked|. Wins|my|vote|for|`|The|2002|Enemy|of|Cinema|'|Award|. Any|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|. Helmer|Hudlin|tries|to|make|a|hip|comedy|,|but|his|dependence|on|slapstick|defeats|the|possibility|of|creating|a|more|darkly|edged|tome|. Lazy|,|miserable|and|smug|. This|is|one|of|the|biggest|disappointments|of|the|year|. Formula|51|has|dulled|your|senses|faster|and|deeper|than|any|recreational|drug|on|the|market|. Every|visual|joke|is|milked|,|every|set-up|obvious|and|lengthy|,|every|punchline|predictable|. There|'s|no|energy|. Apparently|writer-director|Attal|thought|he|need|only|cast|himself|and|his|movie-star|wife|sitting|around|in|their|drawers|to|justify|a|film|. After|the|setup|,|the|air|leaks|out|of|the|movie|,|flattening|its|momentum|with|about|an|hour|to|go|. This|is|a|poster|movie|,|a|mediocre|tribute|to|films|like|Them|! At|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|. A|bit|too|derivative|to|stand|on|its|own|as|the|psychological|thriller|it|purports|to|be|. A|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|. The|film|'s|darker|moments|become|smoothed|over|by|an|overwhelming|need|to|tender|inspirational|tidings|,|especially|in|the|last|few|cloying|moments|. If|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|. This|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|.|' Shanghai|Ghetto|should|be|applauded|for|finding|a|new|angle|on|a|tireless|story|,|but|you|might|want|to|think|twice|before|booking|passage|. Plays|like|a|checklist|of|everything|Rob|Reiner|and|his|cast|were|sending|up|. There|'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|. It|'s|at|once|laughable|and|compulsively|watchable|,|in|its|committed|dumbness|. All|the|sensuality|,|all|the|eroticism|of|a|good|vampire|tale|has|been|,|pardon|the|pun|,|sucked|out|and|replaced|by|goth|goofiness|. A|cross|between|Blow|and|Boyz|N|The|Hood|,|this|movie|strives|to|be|more|,|but|does|n't|quite|get|there|. Good|performances|keep|it|from|being|a|total|rehash|. The|screenplay|is|hugely|overwritten|,|with|tons|and|tons|of|dialogue|--|most|of|it|given|to|children|. Troll|the|cult|section|of|your|local|video|store|for|the|real|deal|. At|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|. Elmo|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|. It|'s|difficult|to|conceive|of|anyone|who|has|reached|puberty|actually|finding|the|characters|in|Slackers|or|their|antics|amusing|,|let|alone|funny|. Despite|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|.|' Both|shrill|and|soporific|,|and|because|everything|is|repeated|five|or|six|times|,|it|can|seem|tiresomely|simpleminded|. Does|not|go|far|enough|in|its|humor|or|stock|ideas|to|stand|out|as|particularly|memorable|or|even|all|that|funny|. Neither|revelatory|nor|truly|edgy|--|merely|crassly|flamboyant|and|comedically|labored|. Just|about|everyone|involved|here|seems|to|be|coasting|. There|are|a|few|modest|laughs|,|but|certainly|no|thrills|. Fails|so|fundamentally|on|every|conventional|level|that|it|achieves|some|kind|of|goofy|grandeur|. There|'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|. While|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|. A|preposterous|,|prurient|whodunit|. Go|,|girls|,|right|down|the|reality|drain|. Boasting|some|of|the|most|poorly|staged|and|lit|action|in|memory|,|Impostor|is|as|close|as|you|can|get|to|an|imitation|movie|. Can|be|classified|as|one|of|those|`|alternate|reality|'|movies|...|except|that|it|would|have|worked|so|much|better|dealing|in|only|one|reality|. Predictable|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|. ...|unlikable|,|uninteresting|,|unfunny|,|and|completely|,|utterly|inept|. The|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|. An|imponderably|stilted|and|self-consciously|arty|movie|. Muddled|,|melodramatic|paranormal|romance|is|an|all-time|low|for|Kevin|Costner|. Too|clumsy|in|key|moments|...|to|make|a|big|splash|. Just|a|bunch|of|good|actors|flailing|around|in|a|caper|that|'s|neither|original|nor|terribly|funny|. `|Matrix|'|-|style|massacres|erupt|throughout|...|but|the|movie|has|a|tougher|time|balancing|its|violence|with|Kafka-inspired|philosophy|. At|least|it|'s|a|fairly|impressive|debut|from|the|director|,|Charles|Stone|III|. It|all|unfolds|predictably|,|and|the|adventures|that|happen|along|the|way|seem|repetitive|and|designed|to|fill|time|,|providing|no|real|sense|of|suspense|. Wanker|Goths|are|on|the|loose|! Run|for|your|lives|! Why|would|anyone|cast|the|magnificent|Jackie|Chan|in|a|movie|full|of|stunt|doubles|and|special|effects|? A|grating|,|emaciated|flick|. Unambitious|writing|emerges|in|the|movie|,|using|a|plot|that|could|have|come|from|an|animated-movie|screenwriting|textbook|. Presents|a|good|case|while|failing|to|provide|a|reason|for|us|to|care|beyond|the|very|basic|dictums|of|human|decency|. We|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|. According|to|the|script|,|Grant|and|Bullock|'s|characters|are|made|for|each|other|. But|you|'d|never|guess|that|from|the|performances|. The|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|. Ararat|feels|like|a|book|report Steve|Oedekerk|is|,|alas|,|no|Woody|Allen|. A|lot|like|the|imaginary|sport|it|projects|onto|the|screen|--|loud|,|violent|and|mindless|. An|amalgam|of|The|Fugitive|,|Blade|Runner|,|and|Total|Recall|,|only|without|much|energy|or|tension|. The|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|. Shows|that|Jackie|Chan|is|getting|older|,|and|that|'s|something|I|would|rather|live|in|denial|about With|miscast|leads|,|banal|dialogue|and|an|absurdly|overblown|climax|,|Killing|Me|Softly|belongs|firmly|in|the|so-bad-it|'s|-|good|camp|. Alas|,|the|black-and-white|archival|footage|of|their|act|showcases|pretty|mediocre|shtick|. The|slapstick|is|labored|,|and|the|bigger|setpieces|flat|. This|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|. The|problem|with|the|mayhem|in|Formula|51|is|not|that|it|'s|offensive|,|but|that|it|'s|boring|. Much|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é|. the|film|never|rises|above|a|conventional|,|two|dimension|tale Mark|Wahlberg|...|may|look|classy|in|a|'60s|-|homage|pokepie|hat|,|but|as|a|character|he|'s|dry|,|dry|,|dry|. Told|in|scattered|fashion|,|the|movie|only|intermittently|lives|up|to|the|stories|and|faces|and|music|of|the|men|who|are|its|subject|. The|irony|is|that|this|film|'s|cast|is|uniformly|superb|;|their|performances|could|have|--|should|have|--|been|allowed|to|stand|on|their|own|. Now|I|can|see|why|people|thought|I|was|too|hard|on|``|The|Mothman|Prophecies|''|. If|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|. With|an|unusual|protagonist|(|a|kilt-wearing|Jackson|)|and|subject|matter|,|the|improbable|``|Formula|51|''|is|somewhat|entertaining|,|but|it|could|have|been|much|stronger|. Sandra|Bullock|'s|best|dramatic|performance|to|date|(|is|)|almost|enough|to|lift|(|this|)|thrill-kill|cat-and-mouser|...|above|its|paint-by-numbers|plot|. A|feel-good|movie|that|does|n't|give|you|enough|to|feel|good|about|. Adolescents|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|.|' This|mistaken-identity|picture|is|so|film-culture|referential|that|the|final|product|is|a|ghost|. The|picture|emerges|as|a|surprisingly|anemic|disappointment|. De|Niro|cries|. You|'ll|cry|for|your|money|back|. Slap|me|,|I|saw|this|movie|. (|The|kid|'s|)|just|too|bratty|for|sympathy|,|and|as|the|film|grows|to|its|finale|,|his|little|changes|ring|hollow|. Behind|the|glitz|,|Hollywood|is|sordid|and|disgusting|. Quelle|surprise|! Scherfig|,|who|has|had|a|successful|career|in|TV|,|tackles|more|than|she|can|handle|. Just|consider|what|New|Best|Friend|does|not|have|,|beginning|with|the|minor|omission|of|a|screenplay|. Oscar|caliber|cast|does|n't|live|up|to|material The|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|. Carrying|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|.|' So|putrid|it|is|not|worth|the|price|of|the|match|that|should|be|used|to|burn|every|print|of|the|film|. In|the|end|,|the|movie|bogs|down|in|insignificance|,|saying|nothing|about|Kennedy|'s|assassination|and|revealing|nothing|about|the|pathology|it|pretends|to|investigate|. Starts|out|ballsy|and|stylish|but|fails|to|keep|it|up|and|settles|into|clichés|. Sometimes|makes|less|sense|than|the|Bruckheimeresque|American|action|flicks|it|emulates|. One|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|. There|'s|only|one|way|to|kill|Michael|Myers|for|good|:|stop|buying|tickets|to|these|movies|. `|Rare|Birds|'|tries|to|force|its|quirkiness|upon|the|audience|. The|movie|is|about|as|humorous|as|watching|your|favorite|pet|get|buried|alive|. Resident|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|. Five|screenwriters|are|credited|with|the|cliché-laden|screenplay|;|it|seems|as|if|each|watered|down|the|version|of|the|one|before|. The|whole|thing|comes|off|like|a|particularly|amateurish|episode|of|Bewitched|that|takes|place|during|Spring|Break|. Well|made|but|uninvolving|,|Bloodwork|is|n't|a|terrible|movie|,|just|a|stultifyingly|obvious|one|--|an|unrewarding|collar|for|a|murder|mystery|. So|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|. The|movie|'s|blatant|derivativeness|is|one|reason|it|'s|so|lackluster|. Kids|do|n't|mind|crappy|movies|as|much|as|adults|,|provided|there|'s|lots|of|cute|animals|and|clumsy|people|. `|Snow|Dogs|'|has|both|. It|'s|almost|as|if|it|'s|an|elaborate|dare|more|than|a|full-blooded|film|. Wobbly|Senegalese|updating|of|``|Carmen|''|which|is|best|for|the|stunning|star|turn|by|Djeinaba|Diop|Gai It|'s|the|humanizing|stuff|that|will|probably|sink|the|film|for|anyone|who|does|n't|think|about|percentages|all|day|long|. Ken|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|. Bella|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|. The|premise|of|``|Abandon|''|holds|promise|,|...|but|its|delivery|is|a|complete|mess|. What|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|. A|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|. Unless|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|. The|Rock|has|a|great|presence|but|one|battle|after|another|is|not|the|same|as|one|battle|followed|by|killer|CGI|effects|. The|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|. The|lousy|John|Q|all|but|spits|out|Denzel|Washington|'s|fine|performance|in|the|title|role|. The|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|. What|a|stiflingly|unfunny|and|unoriginal|mess|this|is|! The|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|. Opera|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|. Despite|all|the|closed-door|hanky-panky|,|the|film|is|essentially|juiceless|. It|is|parochial|,|accessible|to|a|chosen|few|,|standoffish|to|everyone|else|,|and|smugly|suggests|a|superior|moral|tone|is|more|important|than|filmmaking|skill The|Sweetest|Thing|leaves|an|awful|sour|taste|. It|'s|lost|the|politics|and|the|social|observation|and|become|just|another|situation|romance|about|a|couple|of|saps|stuck|in|an|inarticulate|screenplay|. Terminally|bland|,|painfully|slow|and|needlessly|confusing|...|The|movie|,|shot|on|digital|videotape|rather|than|film|,|is|frequently|indecipherable|. As|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|. Aloof|and|lacks|any|real|raw|emotion|,|which|is|fatal|for|a|film|that|relies|on|personal|relationships|. A|low-rent|retread|of|the|Alien|pictures|. Serviceable|at|best|,|slightly|less|than|serviceable|at|worst|. Its|initial|excitement|settles|into|a|warmed|over|pastiche|. A|big|meal|of|cliches|that|the|talented|cast|generally|chokes|on|. The|story|has|little|wit|and|no|surprises|. The|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|. What|should|have|been|a|cutting|Hollywood|satire|is|instead|about|as|fresh|as|last|week|'s|issue|of|Variety|. Hey|everybody|,|wanna|watch|a|movie|in|which|a|guy|dressed|as|a|children|'s|party|clown|gets|violently|gang-raped|? I|did|n't|think|so|. A|little|more|intensity|and|a|little|less|charm|would|have|saved|this|film|a|world|of|hurt|. (|T|)|his|slop|does|n't|even|have|potential|as|a|cult|film|,|as|it|'s|too|loud|to|shout|insults|at|the|screen|. The|movie|'s|plot|is|almost|entirely|witless|and|inane|,|carrying|every|gag|two|or|three|times|beyond|its|limit|to|sustain|a|laugh|. ...|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|. Plays|like|a|glossy|melodrama|that|occasionally|verges|on|camp|. The|central|character|is|n't|complex|enough|to|hold|our|interest|. A|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|. A|puppy|dog|so|desperate|for|attention|it|nearly|breaks|its|little|neck|trying|to|perform|entertaining|tricks|. Just|about|all|of|the|film|is|confusing|on|one|level|or|another|,|making|Ararat|far|more|demanding|than|it|needs|to|be|. A|little|less|extreme|than|in|the|past|,|with|longer|exposition|sequences|between|them|,|and|with|fewer|gags|to|break|the|tedium|. There|'s|a|heavy|stench|of|`|been|there|,|done|that|'|hanging|over|the|film|. It|'s|everything|you|'d|expect|--|but|nothing|more|. The|biggest|problem|with|Satin|Rouge|is|Lilia|herself|. She|'s|a|cipher|,|played|by|an|actress|who|smiles|and|frowns|but|does|n't|reveal|an|inner|life|. A|quaint|,|romanticized|rendering|. What|with|the|incessant|lounge|music|playing|in|the|film|'s|background|,|you|may|mistake|Love|Liza|for|an|Adam|Sandler|Chanukah|song|. The|movie|'s|heavy-handed|screenplay|navigates|a|fast|fade|into|pomposity|and|pretentiousness|. A|potentially|good|comic|premise|and|excellent|cast|are|terribly|wasted|. Woody|Allen|used|to|ridicule|movies|like|Hollywood|Ending|. Now|he|makes|them|. She|'s|not|yet|an|actress|,|not|quite|a|singer|... Not|a|bad|premise|,|but|the|execution|is|lackluster|at|best|. Been|there|done|that|. There|is|only|so|much|baked|cardboard|I|need|to|chew|. A|movie|like|The|Guys|is|why|film|criticism|can|be|considered|work|. Schnitzler|'s|film|has|a|great|hook|,|some|clever|bits|and|well-drawn|,|if|standard|issue|,|characters|,|but|is|still|only|partly|satisfying|. Even|if|it|made|its|original|release|date|last|fall|,|it|would|'ve|reeked|of|a|been-there|,|done-that|sameness|. Only|two-fifths|of|a|satisfying|movie|experience|. A|loud|,|ugly|,|irritating|movie|without|any|of|its|satirical|salvos|hitting|a|discernible|target|. A|movie|version|of|a|paint-by-numbers|picture|. We|can|tell|what|it|is|supposed|to|be|,|but|ca|n't|really|call|it|a|work|of|art|. It|'s|a|brilliant|,|honest|performance|by|Nicholson|,|but|the|film|is|an|agonizing|bore|except|when|the|fantastic|Kathy|Bates|turns|up|. Bravado|Kathy|! ...|Liotta|is|put|in|an|impossible|spot|because|his|character|'s|deceptions|ultimately|undo|him|and|the|believability|of|the|entire|scenario|. Too|bad|. You|can|thank|me|for|this|. I|saw|Juwanna|Mann|so|you|do|n't|have|to|. Unfunny|and|lacking|any|sense|of|commitment|to|or|affection|for|its|characters|,|the|Reginald|Hudlin|comedy|relies|on|toilet|humor|,|ethnic|slurs|. Basically|,|it|'s|pretty|but|dumb|. This|romantic\/comedy|asks|the|question|how|much|souvlaki|can|you|take|before|indigestion|sets|in|. Squandering|his|opportunity|to|make|absurdist|observations|,|Burns|gets|caught|up|in|the|rush|of|slapstick|thoroughfare|. There|'s|a|neat|twist|,|subtly|rendered|,|that|could|have|wrapped|things|up|at|80|minutes|,|but|Kang|tacks|on|three|or|four|more|endings|. Reeboir|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|. The|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|. Co-writer\/director|Jonathan|Parker|'s|attempts|to|fashion|a|Brazil-like|,|hyper-real|satire|fall|dreadfully|short|. If|this|silly|little|cartoon|can|inspire|a|few|kids|not|to|grow|up|to|be|greedy|bastards|,|more|power|to|it|. A|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|. If|there|'s|a|heaven|for|bad|movies|,|Deuces|Wild|is|on|its|way|. Comes|off|like|a|bad|imitation|of|the|Bard|. What|'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|. An|uninspired|preachy|and|clichéd|war|film|. Horrendously|amateurish|filmmaking|that|is|plainly|dull|and|visually|ugly|when|it|is|n't|incomprehensible|. A|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|. Slackers|'|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|. If|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|. The|movie|is|too|impressed|with|its|own|solemn|insights|to|work|up|much|entertainment|value|. I|have|n't|seen|such|self-amused|trash|since|Freddy|Got|Fingered|. Little|more|than|a|well-mounted|history|lesson|. Rob|Schneider|'s|infantile|cross-dressing|routines|fill|The|Hot|Chick|,|the|latest|gimmick|from|this|unimaginative|comedian|. A|horrible|,|99-minute|stink|bomb|. The|film|is|weighed|down|by|supporting|characters|who|are|either|too|goodly|,|wise|and|knowing|or|downright|comically|evil|. The|film|is|so|bad|it|does|n't|improve|upon|the|experience|of|staring|at|a|blank|screen|. Sheridan|'s|take|on|the|author|'s|schoolboy|memoir|...|is|a|rather|toothless|take|on|a|hard|young|life|. It|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|. How|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|. When|it|comes|to|the|battle|of|Hollywood|vs.|Woo|,|it|looks|like|Woo|'s|a|P.O.W. There|are|a|few|chuckles|,|but|not|a|single|gag|sequence|that|really|scores|,|and|the|stars|seem|to|be|in|two|different|movies|. The|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|. It|'s|dull|,|spiritless|,|silly|and|monotonous|:|an|ultra-loud|blast|of|pointless|mayhem|,|going|nowhere|fast|. The|mushy|finale|turns|John|Q|into|a|movie-of-the-week|tearjerker|. Content|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|. The|movie|turns|out|to|be|(|Assayas|'|)|homage|to|the|Gallic|`|tradition|of|quality|,|'|in|all|its|fusty|squareness|. Its|message|has|merit|and|,|in|the|hands|of|a|brutally|honest|individual|like|Prophet|Jack|,|might|have|made|a|point|or|two|regarding|life|. (|Seems|)|even|more|uselessly|redundant|and|shamelessly|money-grubbing|than|most|third-rate|horror|sequels|. It|'s|hard|to|imagine|that|even|very|small|children|will|be|impressed|by|this|tired|retread|. Neither|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|. If|swimfan|does|catch|on|,|it|may|be|because|teens|are|looking|for|something|to|make|them|laugh|. What|might|'ve|been|an|exhilarating|exploration|of|an|odd|love|triangle|becomes|a|sprawl|of|uncoordinated|vectors|. The|Master|of|Disguise|may|have|made|a|great|Saturday|Night|Live|sketch|,|but|a|great|movie|it|is|not|. It|'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|. Boll|uses|a|lot|of|quick|cutting|and|blurry|step-printing|to|goose|things|up|,|but|dopey|dialogue|and|sometimes|inadequate|performances|kill|the|effect|. It|'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|. Has|the|marks|of|a|septuagenarian|;|it|'s|a|crusty|treatment|of|a|clever|gimmick|. Like|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|. Something|must|have|been|lost|in|the|translation|. Becomes|the|last|thing|you|would|expect|from|a|film|with|this|title|or|indeed|from|any|Plympton|film|:|boring|. In|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|. Chan|'s|stunts|are|limited|and|so|embellished|by|editing|that|there|'s|really|not|much|of|a|sense|of|action|or|even|action-comedy|. Rock|'s|stand-up|magic|wanes|. Hopkins|,|squarely|fills|the|screen|. Action|-|mechanical|. ``|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|. For|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|. The|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|. What|puzzles|me|is|the|lack|of|emphasis|on|music|in|Britney|Spears|'|first|movie|. Plot|,|characters|,|drama|,|emotions|,|ideas|--|all|are|irrelevant|to|the|experience|of|seeing|The|Scorpion|King|. City|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|. Whatever|the|movie|'s|sentimental|,|hypocritical|lessons|about|sexism|,|its|true|colors|come|out|in|various|wet|T-shirt|and|shower|scenes|. As|a|hybrid|teen|thriller|and|murder|mystery|,|Murder|by|Numbers|fits|the|profile|too|closely|. There|ai|n't|a|lot|more|painful|than|an|unfunny|movie|that|thinks|it|'s|hilarious|. I|enjoyed|the|movie|in|a|superficial|way|,|while|never|sure|what|its|purpose|was|. What|a|pity|...|that|the|material|is|so|second-rate|. Does|n't|deliver|a|great|story|,|nor|is|the|action|as|gripping|as|in|past|Seagal|films|. The|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|. Nicks|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|. Nothing|about|the|film|--|with|the|possible|exception|of|Elizabeth|Hurley|'s|breasts|--|is|authentic|. Amid|the|cliché|and|foreshadowing|,|Cage|manages|a|degree|of|casual|realism|...|that|is|routinely|dynamited|by|Blethyn|. Mostly|,|Shafer|and|co-writer|Gregory|Hinton|lack|a|strong-minded|viewpoint|,|or|a|sense|of|humor|. No|cliche|escapes|the|perfervid|treatment|of|gang|warfare|called|ces|Wild|. Eddie|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|. Strictly|a|`|guy|'s|film|'|in|the|worst|sense|of|the|expression|. There|'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|. It|'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|. There|'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|. We|'re|left|with|a|story|that|tries|to|grab|us|,|only|to|keep|letting|go|at|all|the|wrong|moments|. Like|many|such|biographical|melodramas|,|it|suffers|from|the|awkwardness|that|results|from|adhering|to|the|messiness|of|true|stories|. There|is|nothing|redeeming|about|this|movie|. The|film|has|(|its|)|moments|,|but|they|are|few|and|far|between|. I|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|. Derailed|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|. Deserves|high|marks|for|political|courage|but|barely|gets|by|on|its|artistic|merits|. ...|comes|alive|only|when|it|switches|gears|to|the|sentimental|. Brosnan|'s|finest|non-Bondish|performance|yet|fails|to|overcome|the|film|'s|manipulative|sentimentality|and|annoying|stereotypes|. A|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|. To|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|. Tsai|may|be|ploughing|the|same|furrow|once|too|often|. Flashy|gadgets|and|whirling|fight|sequences|may|look|cool|,|but|they|ca|n't|distract|from|the|flawed|support|structure|holding|Equilibrium|up|. ZigZag|might|have|been|richer|and|more|observant|if|it|were|less|densely|plotted|. How|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|)|. Nicks|and|Steinberg|match|their|own|creations|for|pure|venality|--|that|'s|giving|it|the|old|college|try|. Episode|II|--|Attack|of|the|Clones|is|a|technological|exercise|that|lacks|juice|and|delight|. The|problem|with|all|of|this|:|It|'s|not|really|funny|. (|Denis|'|)|bare-bones|narrative|more|closely|resembles|an|outline|for|a|'70s|exploitation|picture|than|the|finished|product|. Wanders|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|. Viewing|this|underdramatized|but|overstated|film|is|like|watching|a|transcript|of|a|therapy|session|brought|to|humdrum|life|by|some|Freudian|puppet|. Overall|tomfoolery|like|this|is|a|matter|of|taste|. The|mantra|behind|the|project|seems|to|have|been|`|it|'s|just|a|kids|'|flick|.|' Translation|:|`|We|do|n't|need|to|try|very|hard|.|' In|all|the|annals|of|the|movies|,|few|films|have|been|this|odd|,|inexplicable|and|unpleasant|. It|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|. an|essentially|awkward|version|of|the|lightweight|female|empowerment|picture|we|'ve|been|watching|for|decades The|author|'s|devotees|will|probably|find|it|fascinating|;|others|may|find|it|baffling|. Writer-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|. There|'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|. A|cockeyed|shot|all|the|way|. Lush|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|. Unfortunately|,|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|. Cold|,|Sterile|And|Lacking|Any|Color|Or|Warmth|. The|film|is|undone|by|anachronistic|quick|edits|and|occasional|jarring|glimpses|of|a|modern|theater|audience|watching|the|events|unfold|. Seems|like|someone|going|through|the|motions|. For|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|. Wallace|gets|a|bit|heavy|handed|with|his|message|at|times|,|and|has|a|visual|flair|that|waxes|poetic|far|too|much|for|our|taste|. Impostor|does|n't|do|much|with|its|template|,|despite|a|remarkably|strong|cast|. Wraps|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|. Choppy|,|overlong|documentary|about|`|The|Lifestyle|.|' One|sloughs|one|'s|way|through|the|mire|of|this|alleged|psychological|thriller|in|search|of|purpose|or|even|a|plot|. A|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|. It|'s|a|fanboy|`|what|if|?|' brought|to|life|on|the|big|screen|. The|story|itself|is|actually|quite|vapid|. It|'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|. Wait|for|pay|per|view|or|rental|but|do|n't|dismiss|BarberShop|out|of|hand|. A|few|zingers|aside|,|the|writing|is|indifferent|,|and|Jordan|Brady|'s|direction|is|prosaic|. Each|scene|drags|,|underscoring|the|obvious|,|and|sentiment|is|slathered|on|top|. Would|'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|. One|of|those|staggeringly|well-produced|,|joylessly|extravagant|pictures|that|keep|whooshing|you|from|one|visual|marvel|to|the|next|,|hastily|,|emptily|. Nair|just|does|n't|have|the|necessary|self-control|to|guide|a|loose|,|poorly|structured|film|through|the|pitfalls|of|incoherence|and|redundancy|. Enthusiastically|taking|up|the|current|teen|movie|concern|with|bodily|functions|,|Walt|Becker|'s|film|pushes|all|the|demographically|appropriate|comic|buttons|. It|'s|the|funniest|American|comedy|since|Graffiti|Bridge|. That|neither|protagonist|has|a|distinguishable|condition|hardly|matters|because|both|are|just|actory|concoctions|,|defined|by|childlike|dimness|and|a|handful|of|quirks|. What|starts|off|as|a|possible|Argentine|American|Beauty|reeks|like|a|room|stacked|with|pungent|flowers|. The|project|'s|filmmakers|forgot|to|include|anything|even|halfway|scary|as|they|poorly|rejigger|Fatal|Attraction|into|a|high|school|setting|. In|old-fashioned|screenwriting|parlance|,|Ms.|Shreve|'s|novel|proved|too|difficult|a|text|to|`|lick|,|'|despite|the|efforts|of|a|first-rate|cast|. Solondz|may|well|be|the|only|one|laughing|at|his|own|joke Stitch|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|. Deep|down|,|I|realized|the|harsh|reality|of|my|situation|:|I|would|leave|the|theater|with|a|lower|I.Q.|than|when|I|had|entered|. A|really|funny|fifteen-minute|short|stretched|beyond|its|limits|to|fill|an|almost|feature-length|film|. Aside|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|. It|is|bad|,|but|certainly|not|without|merit|as|entertainment|. For|its|100|minutes|running|time|,|you|'ll|wait|in|vain|for|a|movie|to|happen|. A|work|that|lacks|both|a|purpose|and|a|strong|pulse|. A|faster|paced|family|flick|. Upper|Teens|may|get|cynical|. Smaller|numbered|kidlets|will|enjoy|. While|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|. It|'s|a|road-trip|drama|with|too|many|wrong|turns|. Most|fish|stories|are|a|little|peculiar|,|but|this|is|one|that|should|be|thrown|back|in|the|river|. It|'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|. ``|I|blame|all|men|for|war|,|''|(|the|warden|'s|daughter|)|tells|her|father|. The|movie|is|about|as|deep|as|that|sentiment|. It|'s|fitfully|funny|but|never|really|takes|off|. I|'ve|seen|some|bad|singer-turned|actors|,|but|Lil|Bow|Wow|takes|the|cake|. By|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|. For|all|the|complications|,|it|'s|all|surprisingly|predictable|. It|'s|been|20|years|since|48|Hrs|. made|Eddie|Murphy|a|movie|star|and|the|man|has|n't|aged|a|day|. But|his|showboating|wise-cracker|stock|persona|sure|is|getting|old|. If|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|was|n't|. For|a|film|about|action|,|Ultimate|X|is|the|gabbiest|giant-screen|movie|ever|,|bogging|down|in|a|barrage|of|hype|. ...|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|. It|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|. The|picture|seems|uncertain|whether|it|wants|to|be|an|acidic|all-male|All|About|Eve|or|a|lush|,|swooning|melodrama|in|the|Intermezzo|strain|. A|nearly|21\/2|hours|,|the|film|is|way|too|indulgent|. Gorgeous|to|look|at|but|insufferably|tedious|and|turgid|...|a|curiously|constricted|epic|. It|looks|much|more|like|a|cartoon|in|the|end|than|The|Simpsons|ever|has|. With|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|. Does|n't|really|add|up|to|much|. It|'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|. An|entertainment|so|in|love|with|its|overinflated|mythology|that|it|no|longer|recognizes|the|needs|of|moviegoers|for|real|characters|and|compelling|plots|. A|prolonged|extrusion|of|psychopathic|pulp|. Borrows|from|other|movies|like|it|in|the|most|ordinary|and|obvious|fashion|. It|'s|surprisingly|bland|despite|the|heavy|doses|of|weird|performances|and|direction|. A|chilly|,|remote|,|emotionally|distant|piece|...|so|dull|that|its|tagline|should|be|:|`|In|space|,|no|one|can|hear|you|snore|.|' The|characters|seem|one-dimensional|,|and|the|film|is|superficial|and|will|probably|be|of|interest|primarily|to|its|target|audience|. Sorvino|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|. It|'s|like|a|drive-by|. You|can|drive|right|by|it|without|noticing|anything|special|,|save|for|a|few|comic|turns|,|intended|and|otherwise|. Everything|--|even|life|on|an|aircraft|carrier|--|is|sentimentalized|. This|would-be|`|James|Bond|for|the|Extreme|Generation|'|pic|is|one|big|,|dumb|action|movie|. Stress|`|dumb|.|' The|movie|has|generic|virtues|,|and|despite|a|lot|of|involved|talent|,|seems|done|by|the|numbers|. When|your|subject|is|illusion|versus|reality|,|should|n't|the|reality|seem|at|least|passably|real|? It|'s|a|terrible|movie|in|every|regard|,|and|utterly|painful|to|watch|. This|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|?|' A|fan|film|that|for|the|uninitiated|plays|better|on|video|with|the|sound|turned|down|. Too|infuriatingly|quirky|and|taken|with|its|own|style|. There|'s|a|whole|heap|of|nothing|at|the|core|of|this|slight|coming-of-age\/coming-out|tale|. As|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|. The|type|of|dumbed-down|exercise|in|stereotypes|that|gives|the|(|teen|comedy|)|genre|a|bad|name|. Distinctly|sub-par|...|more|likely|to|drown|a|viewer|in|boredom|than|to|send|any|shivers|down|his|spine|. Plays|like|a|bad|blend|of|an|overripe|episode|of|TV|'s|Dawson|'s|Creek|and|a|recycled|and|dumbed-down|version|of|Love|Story|. Unless|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|. When|the|casting|call|for|this|movie|went|out|,|it|must|have|read|`|seeking|anyone|with|acting|ambition|but|no|sense|of|pride|or|shame|.|' Just|is|n't|as|weird|as|it|ought|to|be|. A|``|Home|Alone|''|film|that|is|staged|like|``|Rosemary|'s|Baby|,|''|but|is|not|as|well-conceived|as|either|of|those|films|. (|Siegel|)|and|co-writers|Lisa|Bazadona|and|Grace|Woodard|have|relied|too|much|on|convention|in|creating|the|characters|who|surround|Frankie|. No|film|could|possibly|be|more|contemptuous|of|the|single|female|population|. `|Hey|Arnold|!|' has|some|visual|wit|...|but|little|imagination|elsewhere|. They|'re|going|through|the|motions|,|but|the|zip|is|gone|. A|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|. A|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|. It|'s|mindless|junk|like|this|that|makes|you|appreciate|original|romantic|comedies|like|Punch-Drunk|Love|. The|movie|is|like|a|year|late|for|tapping|into|our|reality|tv|obsession|,|and|even|tardier|for|exploiting|the|novelty|of|the|``|webcast|.|'' tale|will|be|all|too|familiar|for|anyone|who|'s|seen|George|Roy|Hill|'s|1973|film|,|``|The|Sting|.|'' Gets|the|look|and|the|period|trappings|right|,|but|it|otherwise|drowns|in|a|sea|of|visual|and|verbal|clichés|. It|'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|. Anyone|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|. The|problem|with|The|Bread|,|My|Sweet|is|that|it|'s|far|too|sentimental|. A|late-night|cable|sexploitation|romp|masquerading|as|a|thriller|about|the|ruthless|social|order|that|governs|college|cliques|. Falls|short|in|explaining|the|music|and|its|roots|. Never|inspires|more|than|an|interested|detachment|. What|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|. Despite|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|. Pretty|much|sucks|,|but|has|a|funny|moment|or|two|. They|do|a|good|job|of|painting|this|family|dynamic|for|the|audience|but|they|tried|to|squeeze|too|many|elements|into|the|film|. A|supernatural|mystery|that|does|n'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|. Two|badly|interlocked|stories|drowned|by|all|too|clever|complexity|. It|is|so|earnest|,|so|overwrought|and|so|wildly|implausible|that|it|begs|to|be|parodied|. These|are|textbook|lives|of|quiet|desperation|. Swimfan|,|like|Fatal|Attraction|,|eventually|goes|overboard|with|a|loony|melodramatic|denouement|in|which|a|high|school|swimming|pool|substitutes|for|a|bathtub|. Claims|to|sort|the|bad|guys|from|the|good|,|which|is|its|essential|problem|. Purposefully|shocking|in|its|eroticized|gore|,|if|unintentionally|dull|in|its|lack|of|poetic|frissons|. Feels|like|pieces|a|bunch|of|other|,|better|movies|slapped|together|. Almost|everything|about|the|film|is|unsettling|,|from|the|preposterous|hairpiece|worn|by|Lai|'s|villainous|father|to|the|endless|action|sequences|. Writer-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|. It|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|. One|ca|n't|shake|the|feeling|that|Crossroads|is|nothing|more|than|an|hour-and-a-half-long|commercial|for|Britney|'s|latest|album|. Phoned-in|business|as|usual|. There|'s|an|epic|here|,|but|you|have|to|put|it|together|yourself|. What|little|atmosphere|is|generated|by|the|shadowy|lighting|,|macabre|sets|,|and|endless|rain|is|offset|by|the|sheer|ugliness|of|everything|else|. Director-chef|Gabriele|Muccino|keeps|it|fast|--|zippy|,|comin|'|at|ya|--|as|if|fearing|that|his|film|is|molto|superficiale|. Tartakovsky|'s|team|has|some|freakish|powers|of|visual|charm|,|but|the|five|writers|slip|into|the|modern|rut|of|narrative|banality|. The|most|horrific|movie|experience|I|'ve|had|since|``|Ca|n't|Stop|The|Music|.|'' It|may|as|well|be|called|``|Jar-Jar|Binks|:|The|Movie|.|'' It|'s|that|painful|. God|is|great|,|the|movie|'s|not|. Like|a|three-ring|circus|,|there|are|side|stories|aplenty|--|none|of|them|memorable|. When|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|. A|`|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|. As|original|and|insightful|as|last|week|'s|episode|of|Behind|the|Music|. Plays|like|John|Le|Carré|with|a|couple|of|burnt-out|cylinders|. You|may|be|galled|that|you|'ve|wasted|nearly|two|hours|of|your|own|precious|life|with|this|silly|little|puddle|of|a|movie|. It|'s|neither|as|sappy|as|Big|Daddy|nor|as|anarchic|as|Happy|Gilmore|or|The|Waterboy|,|but|it|has|its|moments|. Despite|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|. A|smug|and|convoluted|action-comedy|that|does|n't|allow|an|earnest|moment|to|pass|without|reminding|audiences|that|it|'s|only|a|movie|. (|Crystal|and|De|Niro|)|manage|to|squeeze|out|some|good|laughs|but|not|enough|to|make|this|silly|con|job|sing|. Worthless|,|from|its|pseudo-rock-video|opening|to|the|idiocy|of|its|last|frames|. The|Christ|allegory|does|n't|work|because|there|is|no|foundation|for|it Go|for|La|Salle|'s|performance|,|and|make|do|as|best|you|can|with|a|stuttering|script|. It|'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|. Tries|too|hard|to|be|funny|in|a|way|that|'s|too|loud|,|too|goofy|and|too|short|of|an|attention|span|. I|did|n'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|. The|acting|is|just|fine|,|but|there|'s|not|enough|substance|here|to|sustain|interest|for|the|full|90|minutes|,|especially|with|the|weak|payoff|. After|Collateral|Damage|,|you|might|imagine|that|most|every|aggrieved|father|cliché|has|been|unturned|. But|no.|. Ultimately|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|. Releasing|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|. Tedious|Norwegian|offering|which|somehow|snagged|an|Oscar|nomination|. It|was|a|dark|and|stormy|night|... A|dark-as-pitch|comedy|that|frequently|veers|into|corny|sentimentality|,|probably|would|not|improve|much|after|a|therapeutic|zap|of|shock|treatment|. This|sort|of|cute|and|cloying|material|is|far|from|Zhang|'s|forte|and|it|shows|. Bray|is|completely|at|sea|;|with|nothing|but|a|Savage|Garden|music|video|on|his|resume|,|he|has|no|clue|about|making|a|movie|. Freundlich|'s|made|(|Crudup|)|a|suburban|architect|,|and|a|cipher|. a|huge|disappointment|coming|,|as|it|does|,|from|filmmakers|and|performers|of|this|calibre Though|it|pretends|to|expose|the|life|of|male|hustlers|,|it|'s|exploitive|without|being|insightful|. Aimed|squarely|at|the|least|demanding|of|demographic|groups|:|very|small|children|who|will|be|delighted|simply|to|spend|more|time|with|familiar|cartoon|characters|. What|starts|off|as|a|satisfying|kids|flck|becomes|increasingly|implausible|as|it|races|through|contrived|plot|points|. Exhibits|the|shallow|sensationalism|characteristic|of|soap|opera|...|more|salacious|telenovela|than|serious|drama|. Seagal|is|painfully|foolish|in|trying|to|hold|onto|what|'s|left|of|his|passe|'|chopsocky|glory|. Even|with|Harris|'s|strong|effort|,|the|script|gives|him|little|to|effectively|probe|Lear|'s|soul-stripping|breakdown|. The|story|is|bogus|and|its|characters|tissue-thin|. Whereas|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|. While|American|Adobo|has|its|heart|(|and|its|palate|)|in|the|right|place|,|its|brain|is|a|little|scattered|--|ditsy|,|even|. Imagine|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|. Most|of|the|dialogue|made|me|want|to|pack|raw|dough|in|my|ears|. Costner|'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|. It|'s|coherent|,|well|shot|,|and|tartly|acted|,|but|it|wears|you|down|like|a|dinner|guest|showing|off|his|doctorate|. Directed|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|. turns|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 Robin|Williams|departs|from|his|fun|friendly|demeanor|in|exchange|for|a|darker|unnerving|role|. High|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|. Set|in|a|1986|Harlem|that|does|n't|look|much|like|anywhere|in|New|York|. The|chocolate|factory|without|Charlie|. Long|on|twinkly-eyed|close-ups|and|short|on|shame|. Hip-hop|rarely|comes|alive|as|its|own|fire-breathing|entity|in|this|picture|. A|dull|,|somnambulant|exercise|in|pretension|whose|pervasive|quiet|is|broken|by|frequent|outbursts|of|violence|and|noise|. Deserving|of|its|critical|backlash|and|more|. Neither|a|rousing|success|nor|a|blinding|embarrassment|. Still|,|it|just|sits|there|like|a|side|dish|no|one|ordered|. The|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|)|. The|movie|spends|more|time|with|Schneider|than|with|newcomer|McAdams|,|even|though|her|performance|is|more|interesting|(|and|funnier|)|than|his|. This|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|. It|recycles|every|cliché|about|gays|in|what|is|essentially|an|extended|soap|opera|. I|'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|. May|offend|viewers|not|amused|by|the|sick|sense|of|humor|. Many|of|Benjamins|'|elements|feel|like|they|'ve|been|patched|in|from|an|episode|of|Miami|Vice|. It|aimlessly|and|unsuccessfully|attempts|to|fuse|at|least|three|dull|plots|into|one|good|one|. Most|folks|with|a|real|stake|in|the|American|sexual|landscape|will|find|it|either|moderately|amusing|or|just|plain|irrelevant|. If|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|. Cherish|is|a|dud|--|a|romantic|comedy|that|'s|not|the|least|bit|romantic|and|only|mildly|funny|. Feels|as|if|the|inmates|have|actually|taken|over|the|asylum|. All|of|the|filmmakers|'|calculations|ca|n't|rescue|Brown|Sugar|from|the|curse|of|blandness|. The|movie|'s|gloomy|atmosphere|is|fascinating|,|though|,|even|if|the|movie|itself|does|n't|stand|a|ghost|of|a|chance|. ...|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|. The|exclamation|point|seems|to|be|the|only|bit|of|glee|you|'ll|find|in|this|dreary|mess|. No|matter|how|you|slice|it|,|Mark|Wahlberg|and|Thandie|Newton|are|not|Hepburn|and|Grant|,|two|cinematic|icons|with|chemistry|galore|. Godard|'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|. Humorless|,|self-conscious|art|drivel|,|made|without|a|glimmer|of|intelligence|or|invention|. The|movie|'s|progression|into|rambling|incoherence|gives|new|meaning|to|the|phrase|`|fatal|script|error|.|' Solondz|may|be|convinced|that|he|has|something|significant|to|say|,|but|he|is|n't|talking|a|talk|that|appeals|to|me|. More|tiring|than|anything|. Nelson|'s|intentions|are|good|,|but|the|end|result|does|no|justice|to|the|story|itself|. It|'s|horribly|depressing|and|not|very|well|done|. ...|the|efforts|of|its|star|,|Kline|,|to|lend|some|dignity|to|a|dumb|story|are|for|naught|. A|good-natured|ensemble|comedy|that|tries|hard|to|make|the|most|of|a|bumper|cast|,|but|never|quite|gets|off|the|ground|. Is|n'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|. Overly|long|and|worshipful|bio-doc|. I|'ll|go|out|on|a|limb|. It|is|n't|quite|one|of|the|worst|movies|of|the|year|. It|'s|just|merely|very|bad|. Writer-director|Ritchie|reduces|Wertmuller|'s|social|mores|and|politics|to|tiresome|jargon|. About|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|. Everything|about|Girls|Ca|n't|Swim|,|even|its|passages|of|sensitive|observation|,|feels|secondhand|,|familiar|--|and|not|in|a|good|way|. Feels|aimless|for|much|of|its|running|time|,|until|late|in|the|film|when|a|tidal|wave|of|plot|arrives|,|leaving|questions|in|its|wake|. In|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|. The|script|is|too|mainstream|and|the|psychology|too|textbook|to|intrigue|. Muddled|,|simplistic|and|more|than|a|little|pretentious|. Meandering|and|glacially|paced|,|and|often|just|plain|dull|. A|disaster|of|a|drama|,|saved|only|by|its|winged|assailants|. A|road|trip|that|will|get|you|thinking|,|`|Are|we|there|yet|?|' Director|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|? Dong|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|. If|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|. An|occasionally|interesting|but|mostly|repetitive|look|at|a|slice|of|counterculture|that|might|be|best|forgotten|. What|could|have|been|right|at|home|as|a|nifty|plot|line|in|Steven|Soderbergh|'s|Traffic|fails|to|arrive|at|any|satisfying|destination|. The|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|. This|pathetic|junk|is|barely|an|hour|long|. Nevertheless|,|it|still|seems|endless|. It|is|n'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|. Dolman|confines|himself|to|shtick|and|sentimentality|--|the|one|bald|and|the|other|sloppy|. Is|it|possible|for|a|documentary|to|be|utterly|entranced|by|its|subject|and|still|show|virtually|no|understanding|of|it|? It|'s|supposed|to|be|a|romantic|comedy|-|it|suffers|from|too|much|Norma|Rae|and|not|enough|Pretty|Woman|. The|leads|are|so|unmemorable|,|despite|several|attempts|at|lengthy|dialogue|scenes|,|that|one|eventually|resents|having|to|inhale|this|gutter|romancer|'s|secondhand|material|. Staggers|between|flaccid|satire|and|what|is|supposed|to|be|madcap|farce|. Not|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|. Brainy|,|artistic|and|muted|,|almost|to|the|point|of|suffocation|. Plays|like|the|old|disease-of-the-week|small-screen|melodramas|. Like|life|on|the|island|,|the|movie|grows|boring|despite|the|scenery|. The|truth|about|Charlie|is|that|it|'s|a|brazenly|misguided|project|. displays|the|potential|for|a|better|movie|than|what|Bailly|manages|to|deliver So|exaggerated|and|broad|that|it|comes|off|as|annoying|rather|than|charming|. An|awkward|hybrid|of|genres|that|just|does|n't|work|. The|latest|vapid|actor|'s|exercise|to|appropriate|the|structure|of|Arthur|Schnitzler|'s|Reigen|. Snipes|is|both|a|snore|and|utter|tripe|. Ritchie|'s|film|is|easier|to|swallow|than|Wertmuller|'s|polemical|allegory|,|but|it|'s|self-defeatingly|decorous|. Chalk|it|up|as|the|worst|kind|of|hubristic|folly|. It|'s|the|kind|of|under-inspired|,|overblown|enterprise|that|gives|Hollywood|sequels|a|bad|name|. Rosenthal|(|Halloween|II|)|seems|to|have|forgotten|everything|he|ever|knew|about|generating|suspense|. Even|Murphy|'s|expert|comic|timing|and|famed|charisma|ca|n't|rescue|this|effort|. Rodriguez|...|was|unable|to|reproduce|the|special|spark|between|the|characters|that|made|the|first|film|such|a|delight|. A|sleek|advert|for|youthful|anomie|that|never|quite|equals|the|sum|of|its|pretensions|. Some|Body|smacks|of|exhibitionism|more|than|it|does|cathartic|truth|telling|. This|is|n't|a|terrible|film|by|any|means|,|but|it|'s|also|far|from|being|a|realized|work|. Apparently|,|romantic|comedy|with|a|fresh|point|of|view|just|does|n't|figure|in|the|present|Hollywood|program|. Depressingly|thin|and|exhaustingly|contrived|. Only|masochistic|moviegoers|need|apply|. A|movie|that|'s|held|captive|by|mediocrity|. Not|bad|,|but|not|all|that|good|. Bacon|keeps|things|interesting|,|but|do|n't|go|out|of|your|way|to|pay|full|price|. What|'s|next|? Rob|Schneider|,|Dana|Carvey|and|Sarah|Michelle|Gellar|in|The|Philadelphia|Story|? David|Spade|as|Citizen|Kane|? Ca|n't|seem|to|get|anywhere|near|the|story|'s|center|. The|problem|,|amazingly|enough|,|is|the|screenplay|. It|'s|a|Frankenstein-monster|of|a|film|that|does|n't|know|what|it|wants|to|be|. Upper|West|Sidey|exercise|in|narcissism|and|self-congratulation|disguised|as|a|tribute|. On|its|icy|face|,|the|new|film|is|a|subzero|version|of|Monsters|,|Inc.|,|without|the|latter|'s|imagination|,|visual|charm|or|texture|. I|ca|n't|say|this|enough|:|This|movie|is|about|an|adult|male|dressed|in|pink|jammies|. It|'s|a|mindless|action|flick|with|a|twist|--|far|better|suited|to|video-viewing|than|the|multiplex|. After|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|. We|get|light|showers|of|emotion|a|couple|of|times|,|but|then|--|strangely|--|these|wane|to|an|inconsistent|and|ultimately|unsatisfying|drizzle|. Summer|'s|far|too|fleeting|to|squander|on|offal|like|this|. The|film|is|grossly|contradictory|in|conveying|its|social|message|,|if|indeed|there|is|one|. Often|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|? Too|bad|Kramer|could|n't|make|a|guest|appearance|to|liven|things|up|. Deuces|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|. It|'s|a|barely|tolerable|slog|over|well-trod|ground|. Epps|has|neither|the|charisma|nor|the|natural|affability|that|has|made|Tucker|a|star|. It|'s|sweet|...|but|just|a|little|bit|too|precious|at|the|start|and|a|little|too|familiar|at|the|end|. A|dull|,|dumb|and|derivative|horror|film|. An|awkwardly|contrived|exercise|in|magic|realism|. Demme|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|. This|is|a|heartfelt|story|...|it|just|is|n't|a|very|involving|one|. These|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|. The|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|. Richard|Pryor|mined|his|personal|horrors|and|came|up|with|a|treasure|chest|of|material|,|but|Lawrence|gives|us|mostly|fool|'s|gold|. The|band|performances|featured|in|Drumline|are|red|hot|...|(|but|)|from|a|mere|story|point|of|view|,|the|film|'s|ice|cold|. ...|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|. A|laughable|--|or|rather|,|unlaughable|--|excuse|for|a|film|. The|sequel|is|everything|the|original|was|not|:|contrived|,|overblown|and|tie-in|ready|. Like|a|grinning|Jack|O|'|Lantern|,|its|apparent|glee|is|derived|from|a|lobotomy|,|having|had|all|its|vital|essence|scooped|out|and|discarded|. A|sentimental|hybrid|that|could|benefit|from|the|spice|of|specificity|. ...|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|. Give|Shapiro|,|Goldman|,|and|Bolado|credit|for|good|intentions|,|but|there|'s|nothing|here|that|they|could|n't|have|done|in|half|an|hour|. It|'s|so|devoid|of|joy|and|energy|it|makes|even|Jason|X|...|look|positively|Shakesperean|by|comparison|. A|little|objectivity|could|have|gone|a|long|way|. One|of|the|worst|films|of|2002|. I|believe|Silberling|had|the|best|intentions|here|,|but|he|just|does|n't|have|the|restraint|to|fully|realize|them|. plays|like|an|unbalanced|mixture|of|graphic|combat|footage|and|almost|saccharine|domestic|interludes|that|are|pure|Hollywood|. McTiernan|'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|. High|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|. This|movie|is|about|the|worst|thing|Chan|has|done|in|the|United|States|. The|explosion|essentially|ruined|--|or|,|rather|,|overpowered|--|the|fiction|of|the|movie|for|me|. This|ludicrous|film|is|predictable|at|every|turn|. An|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|. The|film|desperately|sinks|further|and|further|into|comedy|futility|. Instead|of|a|balanced|film|that|explains|the|zeitgeist|that|is|the|X|Games|,|we|get|a|cinematic|postcard|that|'s|superficial|and|unrealized|. The|crassness|of|this|reactionary|thriller|is|matched|only|by|the|ridiculousness|of|its|premise|. I|wish|it|would|have|just|gone|more|over-the-top|instead|of|trying|to|have|it|both|ways|. The|superior|plotline|is|n't|quite|enough|to|drag|along|the|dead|(|water|)|weight|of|the|other|. The|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|. Adrift|,|Bentley|and|Hudson|stare|and|sniffle|,|respectively|,|as|Ledger|attempts|,|in|vain|,|to|prove|that|movie-star|intensity|can|overcome|bad|hair|design|. After|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|. `|Linklater|fans|,|or|pretentious|types|who|want|to|appear|avant-garde|will|suck|up|to|this|project|...|' A|woefully|dull|,|redundant|concept|that|bears|more|than|a|whiff|of|exploitation|,|despite|Iwai|'s|vaunted|empathy|. Screenwriter|Chris|ver|Weil|'s|directing|debut|is|good-natured|and|never|dull|,|but|its|virtues|are|small|and|easily|overshadowed|by|its|predictability|. If|you|really|want|to|understand|what|this|story|is|really|all|about|,|you|'re|far|better|served|by|the|source|material|. It|'s|mildly|sentimental|,|unabashedly|consumerist|...|studiously|inoffensive|and|completely|disposable|. Like|its|title|character|,|Esther|Kahn|is|unusual|but|unfortunately|also|irritating|. The|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|.|'' A|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|. Every|conceivable|mistake|a|director|could|make|in|filming|opera|has|been|perpetrated|here|. Snoots|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|. (|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|. Any|enjoyment|will|be|hinge|from|a|personal|threshold|of|watching|sad|but|endearing|characters|do|extremely|unconventional|things|. If|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|. Hardly|a|nuanced|portrait|of|a|young|woman|'s|breakdown|,|the|film|nevertheless|works|up|a|few|scares|. Interminably|bleak|,|to|say|nothing|of|boring|. Things|really|get|weird|,|though|not|particularly|scary|:|the|movie|is|all|portent|and|no|content|. It|'s|difficult|to|discern|if|this|is|a|crazy|work|of|disturbed|genius|or|merely|90|minutes|of|post-adolescent|Electra|rebellion|. Bogs|down|badly|as|we|absorb|Jia|'s|moody|,|bad-boy|behavior|which|he|portrays|himself|in|a|one-note|performance|. The|camera|whirls|! The|camera|twirls|! Oh|,|look|at|that|clever|angle|! Wow|,|a|jump|cut|! Demme|finally|succeeds|in|diminishing|his|stature|from|Oscar-winning|master|to|lowly|studio|hack|. The|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|. It|almost|feels|as|if|the|movie|is|more|interested|in|entertaining|itself|than|in|amusing|us|. It|puts|Washington|,|as|honest|working|man|John|Q.|Archibald|,|on|a|pedestal|,|then|keeps|lifting|the|pedestal|higher|. Ultimately|,|the|film|amounts|to|being|lectured|to|by|tech-geeks|,|if|you|'re|up|for|that|sort|of|thing|. Far|more|enjoyable|than|its|predecessor|. (|Gayton|'s|script|)|telegraphs|every|discovery|and|layers|on|the|gloss|of|convenience|. Full|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|. A|ragbag|of|cliches|. This|rough|trade|Punch-and-Judy|act|did|n't|play|well|then|and|it|plays|worse|now|. The|three|leads|produce|adequate|performances|,|but|what|'s|missing|from|this|material|is|any|depth|of|feeling|. It|'s|possible|that|something|hip|and|transgressive|was|being|attempted|here|that|stubbornly|refused|to|gel|,|but|the|result|is|more|puzzling|than|unsettling|. This|painfully|unfunny|farce|traffics|in|tired|stereotypes|and|encumbers|itself|with|complications|...|that|have|no|bearing|on|the|story|. Short|and|sweet|,|but|also|more|than|anything|else|slight|...|Tadpole|pulls|back|from|the|consequences|of|its|own|actions|and|revelations|. Has|its|moments|,|but|it|'s|pretty|far|from|a|treasure|. What|more|can|be|expected|from|a|college|comedy|that|'s|target|audience|has|n't|graduated|from|junior|high|school|? Collateral|Damage|offers|formula|payback|and|the|Big|Payoff|,|but|the|explosions|tend|to|simply|hit|their|marks|,|pyro-correctly|. The|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|. Instead|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|. You|know|that|ten|bucks|you|'d|spend|on|a|ticket|? Just|send|it|to|Cranky|. We|do|n't|get|paid|enough|to|sit|through|crap|like|this|. An|even|more|predictable|,|cliche-ridden|endeavor|than|its|predecessor|. The|whole|thing|plays|like|a|tired|Tyco|ad|. The|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|. The|soupy|end|result|has|the|odd|distinction|of|being|playful|without|being|fun|,|too|. No|,|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|. Even|by|the|intentionally|low|standards|of|frat-boy|humor|,|Sorority|Boys|is|a|bowser|. One|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|. Halfway|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|. Weighted|down|with|slow|,|uninvolving|storytelling|and|flat|acting|. We|ca|n'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|. There|is|n't|one|moment|in|the|film|that|surprises|or|delights|. `|Would|n't|it|be|nice|if|all|guys|got|a|taste|of|what|it|'s|like|on|the|other|side|of|the|bra|?|' The|movie|is|essentially|a|series|of|fleetingly|interesting|actors|'|moments|. Most|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|. This|movie|,|a|certain|scene|in|particular|,|brought|me|uncomfortably|close|to|losing|my|lunch|. The|secrets|of|time|travel|will|have|been|discovered|,|indulged|in|and|rejected|as|boring|before|I|see|this|piece|of|crap|again|. Smug|,|artificial|,|ill-constructed|and|fatally|overlong|...|it|never|finds|a|consistent|tone|and|lacks|bite|,|degenerating|into|a|pious|,|preachy|soap|opera|. Chelsea|Walls|is|a|case|of|too|many|chefs|fussing|over|too|weak|a|recipe|. Every|joke|is|repeated|at|least|four|times|. Every|joke|is|repeated|at|least|four|times|. Every|joke|is|repeated|at|least|--|annoying|,|is|n't|it|? Comes|across|as|a|fairly|weak|retooling|. The|lousy|lead|performances|...|keep|the|movie|from|ever|reaching|the|comic|heights|it|obviously|desired|. Its|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|. (|Creates|)|the|worst|kind|of|mythologizing|,|the|kind|that|sacrifices|real|heroism|and|abject|suffering|for|melodrama|. The|movie|resolutely|avoids|all|the|comic|possibilities|of|its|situation|,|and|becomes|one|more|dumb|high|school|comedy|about|sex|gags|and|prom|dates|. Earnest|and|heartfelt|but|undernourished|and|plodding|. A|sugar-coated|Rocky|whose|valuable|messages|are|forgotten|10|minutes|after|the|last|trombone|honks|. Romanek|keeps|adding|flourishes|--|artsy|fantasy|sequences|--|that|simply|feel|wrong|. They|cheapen|the|overall|effect|. Has|all|the|complexity|and|realistic|human|behavior|of|an|episode|of|General|Hospital|. An|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|. (|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|. An|exercise|in|cynicism|every|bit|as|ugly|as|the|shabby|digital|photography|and|muddy|sound|. Not|good|enough|to|pass|for|a|litmus|test|of|the|generation|gap|and|not|bad|enough|to|repulse|any|generation|of|its|fans|. The|movie|is|silly|beyond|comprehension|,|and|even|if|it|were|n't|silly|,|it|would|still|be|beyond|comprehension|. Watchable|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|. The|scriptwriters|are|no|less|a|menace|to|society|than|the|film|'s|characters|. Merchant|has|n't|directed|this|movie|so|much|as|produced|it|--|like|sausage|. The|film|has|a|nearly|terminal|case|of|the|cutes|,|and|it|'s|neither|as|funny|nor|as|charming|as|it|thinks|it|is|. More|a|gunfest|than|a|Rock|concert|. It|'s|a|frightful|vanity|film|that|,|no|doubt|,|pays|off|what|debt|Miramax|felt|they|owed|to|Benigni|. A|muddy|psychological|thriller|rife|with|miscalculations|. It|makes|me|say|the|obvious|:|Abandon|all|hope|of|a|good|movie|ye|who|enter|here|. It|'s|not|original|enough|. A|listless|sci-fi|comedy|in|which|Eddie|Murphy|deploys|two|guises|and|elaborate|futuristic|sets|to|no|particularly|memorable|effect|. Little|more|than|a|super-sized|infomercial|for|the|cable-sports|channel|and|its|Summer|X|Games|. A|generic|bloodbath|that|often|becomes|laughably|unbearable|when|it|is|n't|merely|offensive|. Julie|Davis|is|the|Kathie|Lee|Gifford|of|film|directors|,|sadly|proving|once|again|ego|does|n't|always|go|hand|in|hand|with|talent|. An|unholy|mess|,|driven|by|the|pathetic|idea|that|if|you|shoot|something|on|crummy-looking|videotape|,|it|must|be|labelled|`|hip|'|,|`|innovative|'|and|`|realistic|'|. The|story|'s|pathetic|and|the|gags|are|puerile|.|. Curiously|,|Super|Troopers|suffers|because|it|does|n't|have|enough|vices|to|merit|its|103-minute|length|. So|bland|and|utterly|forgettable|that|it|might|as|well|have|been|titled|Generic|Jennifer|Lopez|Romantic|Comedy|. I|was|sent|a|copyof|this|film|to|review|on|DVD|. For|free|. I|still|want|my|money|back|. It|plods|along|methodically|,|somehow|under|the|assumption|that|its|``|dead|wife|communicating|from|beyond|the|grave|''|framework|is|even|remotely|new|or|interesting|. It|'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|. All|too|familiar|...|basically|the|sort|of|cautionary|tale|that|was|old|when|`|Angels|With|Dirty|Faces|'|appeared|in|1938|. ...|passable|enough|for|a|shoot-out|in|the|o.k.|court|house|of|life|type|of|flick|. Strictly|middle|of|the|road|. Although|purportedly|a|study|in|modern|alienation|,|it|'s|really|little|more|than|a|particularly|slanted|,|gay|s\/m|fantasy|,|enervating|and|deadeningly|drawn-out|. After|the|first|10|minutes|,|which|is|worth|seeing|,|the|movie|sinks|into|an|abyss|of|clichés|,|depression|and|bad|alternative|music|. No|one|can|doubt|the|filmmakers|'|motives|,|but|The|Guys|still|feels|counterproductive|. A|very|slow|,|uneventful|ride|around|a|pretty|tattered|old|carousel|. With|little|visible|talent|and|no|energy|,|Colin|Hanks|is|in|bad|need|of|major|acting|lessons|and|maybe|a|little|coffee|. ``|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|. A|Meatballs|for|the|bare-midriff|generation|. Well-meaning|to|a|fault|,|Antwone|Fisher|manages|the|dubious|feat|of|turning|one|man|'s|triumph|of|will|into|everyman|'s|romance|comedy|. Seemingly|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|. Formula|51|promises|a|new|kind|of|high|but|delivers|the|same|old|bad|trip|. Everything|that|was|right|about|Blade|is|wrong|in|its|sequel|. A|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|. The|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|)|. Disney|again|ransacks|its|archives|for|a|quick-buck|sequel|. Coarse|,|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|. Anyone|who|suffers|through|this|film|deserves|,|at|the|very|least|,|a|big|box|of|consolation|candy|. How|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|. They|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|. Collapses|after|30|minutes|into|a|slap-happy|series|of|adolescent|violence|. The|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|. Attal|'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|. Obvious|,|obnoxious|and|didactic|burlesque|. The|most|surprising|thing|about|this|film|is|that|they|are|actually|releasing|it|into|theaters|. Michele|is|a|such|a|brainless|flibbertigibbet|that|it|'s|hard|to|take|her|spiritual|quest|at|all|seriously|. Ultimately|,|clarity|matters|,|both|in|breaking|codes|and|making|movies|. Enigma|lacks|it|. Potty-mouthed|enough|for|PG-13|,|yet|not|as|hilariously|raunchy|as|South|Park|,|this|strangely|schizo|cartoon|seems|suited|neither|to|kids|or|adults|. ...|has|its|moments|,|but|ultimately|,|its|curmudgeon|does|n't|quite|make|the|cut|of|being|placed|on|any|list|of|favorites|. A|distinctly|minor|effort|that|will|be|seen|to|better|advantage|on|cable|,|especially|considering|its|barely|feature-length|running|time|of|one|hour|. Most|of|the|movie|is|so|deadly|dull|that|watching|the|proverbial|paint|dry|would|be|a|welcome|improvement|. In|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|. Rather|less|than|the|sum|of|its|underventilated|père-fils|confrontations|. McKay|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|. Plays|like|a|series|of|vignettes|--|clips|of|a|film|that|are|still|looking|for|a|common|through-line|. New|Yorkers|always|seem|to|find|the|oddest|places|to|dwell|... Amid|the|shock|and|curiosity|factors|,|the|film|is|just|a|corny|examination|of|a|young|actress|trying|to|find|her|way|. Yes|,|Spirited|Away|is|a|triumph|of|imagination|,|but|it|'s|also|a|failure|of|storytelling|. A|characteristically|engorged|and|sloppy|coming-of-age|movie|. A|somewhat|disappointing|and|meandering|saga|. Whenever|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|. An|empty|,|ugly|exercise|in|druggy|trance-noir|and|trumped-up|street|credibility|. The|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|. The|milieu|is|wholly|unconvincing|...|and|the|histrionics|reach|a|truly|annoying|pitch|. Unfunny|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|. Each|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|. Except|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|. Will|no|doubt|delight|Plympton|'s|legion|of|fans|;|others|may|find|80|minutes|of|these|shenanigans|exhausting|. The|laughs|are|as|rare|as|snake|foo|yung|. For|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|. Knockaround|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|. Mattei|so|completely|loses|himself|to|the|film|'s|circular|structure|to|ever|offer|any|insightful|discourse|on|,|well|,|Love|in|the|Time|of|Money|. It|briefly|flirts|with|player|masochism|,|but|the|point|of|real|interest|-|--|audience|sadism|--|is|evaded|completely|. Holland|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|. For|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|. There|'s|not|a|fresh|idea|at|the|core|of|this|tale|. An|impenetrable|and|insufferable|ball|of|pseudo-philosophic|twaddle|. It|'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|. I|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|did|n't|. Dreary|tale|of|middle-class|angst For|a|movie|about|the|power|of|poetry|and|passion|,|there|is|precious|little|of|either|. (|Jackson|and|Bledel|)|seem|to|have|been|picked|not|for|their|acting|chops|,|but|for|their|looks|and|appeal|to|the|pre-teen|crowd|. Lillard|and|Cardellini|earn|their|Scooby|Snacks|,|but|not|anyone|else|. Like|Schindler|'s|List|,|The|Grey|Zone|attempts|to|be|grandiloquent|,|but|ends|up|merely|pretentious|--|in|a|grisly|sort|of|way|. An|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|. (|Screenwriter|)|Pimental|took|the|Farrelly|Brothers|comedy|and|feminized|it|,|but|it|is|a|rather|poor|imitation|. It|'s|kind|of|sad|that|so|many|people|put|so|much|time|and|energy|into|this|turkey|. Friday|After|Next|is|a|lot|more|bluster|than|bite|. Its|juxtaposition|of|overwrought|existentialism|and|stomach-churning|gore|will|have|you|forever|on|the|verge|of|either|cracking|up|or|throwing|up|. A|decidedly|mixed|bag|. There|are|cheesy|backdrops|,|ridiculous|action|sequences|,|and|many|tired|jokes|about|men|in|heels|. Ice|Cube|is|n't|quite|out|of|ripe|screwball|ideas|,|but|Friday|After|Next|spreads|them|pretty|thin|. Not|everything|in|the|film|works|,|including|its|somewhat|convenient|ending|. The|characters|,|cast|in|impossibly|contrived|situations|,|are|totally|estranged|from|reality|. Everything|else|about|High|Crimes|is|,|like|the|military|system|of|justice|it|portrays|,|tiresomely|regimented|. Just|dreadful|. I|do|n't|blame|Eddie|Murphy|but|should|n't|Owen|Wilson|know|a|movie|must|have|a|story|and|a|script|? Sweet|Home|Alabama|certainly|wo|n't|be|remembered|as|one|of|(|Witherspoon|'s|)|better|films|. hard|as|this|may|be|to|believe|,|Here|on|Earth|,|a|surprisingly|similar|teen|drama|,|was|a|better|film|. This|is|just|lazy|writing|. Even|kids|deserve|better|. The|pretensions|--|and|disposable|story|--|sink|the|movie|. And|Diesel|is|n't|the|actor|to|save|it|. Bravo|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|. ...|a|preachy|parable|stylized|with|a|touch|of|John|Woo|bullet|ballet|. Frank|Capra|played|this|story|straight|. But|the|2002|film|does|n't|really|believe|in|it|,|and|breaks|the|mood|with|absurdly|inappropriate|`|comedy|'|scenes|. How|about|starting|with|a|more|original|story|instead|of|just|slapping|extreme|humor|and|gross-out|gags|on|top|of|the|same|old|crap|? The|problem|is|that|for|the|most|part|,|the|film|is|deadly|dull|. Handled|correctly|,|Wilde|'s|play|is|a|masterpiece|of|elegant|wit|and|artifice|. Here|,|alas|,|it|collapses|like|an|overcooked|soufflé|. ``|Sorority|Boys|''|was|funnier|,|and|that|movie|was|pretty|bad|. A|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 Paul|Bettany|is|good|at|being|the|ultra-violent|gangster|wannabe|,|but|the|movie|is|certainly|not|number|1|. It|'s|a|gag|that|'s|worn|a|bit|thin|over|the|years|,|though|Do|n't|Ask|still|finds|a|few|chuckles|. An|uplifting|drama|...|What|Antwone|Fisher|is|n't|,|however|,|is|original|. Often|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|. Certain|to|be|distasteful|to|children|and|adults|alike|,|Eight|Crazy|Nights|is|a|total|misfire|. Elaborate|special|effects|take|centre|screen|,|so|that|the|human|story|is|pushed|to|one|side|. Showtime|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|. All|the|characters|are|clinically|depressed|and|have|abandoned|their|slim|hopes|and|dreams|. This|Tuxedo|...|should|have|been|sent|back|to|the|tailor|for|some|major|alterations|. I|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 Been|there|,|done|that|...|a|thousand|times|already|,|and|better|. What|'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|. Sunk|by|way|too|much|indulgence|of|scene-chewing|,|teeth-gnashing|actorliness|. Fans|of|Plympton|'s|shorts|may|marginally|enjoy|the|film|,|but|it|is|doubtful|this|listless|feature|will|win|him|any|new|viewers|. Barrels|along|at|the|start|before|becoming|mired|in|sentimentality|. None|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|. The|kind|of|movie|that|leaves|vague|impressions|and|a|nasty|aftertaste|but|little|clear|memory|of|its|operational|mechanics|. `|Punch-Drunk|Love|is|so|convinced|of|its|own|brilliance|that|,|if|it|were|a|person|,|you|'d|want|to|smash|its|face|in|.|' At|once|overly|old-fashioned|in|its|sudsy|plotting|and|heavy-handed|in|its|effort|to|modernize|it|with|encomia|to|diversity|and|tolerance|. The|trashy|teen-sleaze|equivalent|of|Showgirls|. While|the|production|details|are|lavish|,|film|has|little|insight|into|the|historical|period|and|its|artists|,|particularly|in|how|Sand|developed|a|notorious|reputation|. A|crass|and|insulting|homage|to|great|films|like|Some|Like|It|Hot|and|the|John|Wayne|classics|. What|'s|the|most|positive|thing|that|can|be|said|about|the|new|Rob|Schneider|vehicle|? Well|,|it|'s|not|as|pathetic|as|The|Animal|. With|all|the|sympathy|,|empathy|and|pity|fogging|up|the|screen|...|His|Secret|Life|enters|the|land|of|unintentional|melodrama|and|tiresome|love|triangles|. The|problematic|characters|and|overly|convenient|plot|twists|foul|up|Shum|'s|good|intentions|. What|`|Blade|Runner|'|would|'ve|looked|like|as|a|low-budget|series|on|a|UHF|channel|. Has|all|the|values|of|a|straight-to-video|movie|,|but|because|it|has|a|bigger-name|cast|,|it|gets|a|full|theatrical|release|. With|its|lackadaisical|plotting|and|mindless|action|,|All|About|the|Benjamins|evokes|the|bottom|tier|of|blaxploitation|flicks|from|the|1970s|. It|never|quite|makes|it|to|the|boiling|point|,|but|manages|to|sustain|a|good|simmer|for|most|of|its|running|time|. Loud|,|silly|,|stupid|and|pointless|. Mandel|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|. A|yawn-provoking|little|farm|melodrama|. Did|no|one|on|the|set|have|a|sense|of|humor|,|or|did|they|not|have|the|nerve|to|speak|up|? Seriously|,|rent|the|Disney|version|. As|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|. Like|its|parade|of|predecessors|,|this|Halloween|is|a|gory|slash-fest|. It|ca|n't|escape|its|past|,|and|it|does|n't|want|to|. ``|Abandon|''|will|leave|you|wanting|to|abandon|the|theater|. Problem|is|,|we|have|no|idea|what|in|creation|is|going|on|. A|live-action|cartoon|,|a|fast-moving|and|cheerfully|simplistic|88|minutes|of|exaggerated|action|put|together|with|the|preteen|boy|in|mind|. A|loquacious|and|dreary|piece|of|business|. What|the|audience|feels|is|exhaustion|,|from|watching|a|movie|that|is|dark|(|dark|green|,|to|be|exact|)|,|sour|,|bloody|and|mean|. director|Hoffman|,|his|writer|and|Kline|'s|agent|should|serve|detention Dodgy|mixture|of|cutesy|romance|,|dark|satire|and|murder|mystery|. Meticulously|mounted|,|exasperatingly|well-behaved|film|,|which|ticks|off|Kahlo|'s|lifetime|milestones|with|the|dutiful|precision|of|a|tax|accountant|. Time|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|. I|'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|. While|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|. I|'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|. The|only|reason|you|should|see|this|movie|is|if|you|have|a|case|of|masochism|and|an|hour|and|a|half|to|blow|. Whatever|about|warning|kids|about|the|dangers|of|ouija|boards|,|someone|should|dispense|the|same|advice|to|film|directors|. As|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|. The|Irwins|'|scenes|are|fascinating|;|the|movie|as|a|whole|is|cheap|junk|and|an|insult|to|their|death-defying|efforts|. If|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|. A|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|does|n't|beat|that|one|,|either|. May|puzzle|his|most|ardent|fans|. Starts|as|a|tart|little|lemon|drop|of|a|movie|and|ends|up|as|a|bitter|pill|. We|never|feel|anything|for|these|characters|,|and|as|a|result|the|film|is|basically|just|a|curiosity|. Those|unfamiliar|with|Mormon|traditions|may|find|The|Singles|Ward|occasionally|bewildering|. Ritchie|may|not|have|a|novel|thought|in|his|head|,|but|he|knows|how|to|pose|Madonna|. The|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|. Feels|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|. While|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|.|'' The|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|.|' ...|the|cast|portrays|their|cartoon|counterparts|well|...|but|quite|frankly|,|Scoob|and|Shag|do|n't|eat|enough|during|the|film|.|' More|of|the|same|old|garbage|Hollywood|has|been|trying|to|pass|off|as|acceptable|teen|entertainment|for|some|time|now|. TV|skit-com|material|fervently|deposited|on|the|big|screen|. (|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|. If|there|was|ever|a|movie|where|the|upbeat|ending|feels|like|a|copout|,|this|is|the|one|. It|'s|as|sorry|a|mess|as|its|director|'s|diabolical|debut|,|Mad|Cows|. Any|attempts|at|nuance|given|by|the|capable|cast|is|drowned|out|by|director|Jon|Purdy|'s|sledgehammer|sap|. Its|audacious|ambitions|sabotaged|by|pomposity|,|Steven|Soderbergh|'s|space|opera|emerges|as|a|numbingly|dull|experience|. Despite|some|strong|performances|,|never|rises|above|the|level|of|a|telanovela|. This|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|. Feels|slight|,|as|if|it|were|an|extended|short|,|albeit|one|made|by|the|smartest|kids|in|class|. Unspeakable|,|of|course|,|barely|begins|to|describe|the|plot|and|its|complications|. Vulgar|is|too|optimistic|a|title|. The|actors|pull|out|all|the|stops|in|nearly|every|scene|,|but|to|diminishing|effect|. The|characters|never|change|. If|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|. Welles|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|. Makes|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|. Even|as|I|valiantly|struggled|to|remain|interested|,|or|at|least|conscious|,|I|could|feel|my|eyelids|...|getting|...|very|...|heavy|... A|bad|movie|that|happened|to|good|actors|. Boasts|eye-catching|art|direction|but|has|a|forcefully|quirky|tone|that|quickly|wears|out|its|limited|welcome|. Screenwriter|Dan|Schneider|and|director|Shawn|Levy|substitute|volume|and|primary|colors|for|humor|and|bite|. Oversexed|,|at|times|overwrought|comedy\/drama|that|offers|little|insight|into|the|experience|of|being|forty|,|female|and|single|. That|such|a|horrible|movie|could|have|sprung|from|such|a|great|one|is|one|of|the|year|'s|worst|cinematic|tragedies|. It|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|. Rarely|has|a|film|'s|title|served|such|dire|warning|. If|you|saw|Benigni|'s|Pinocchio|at|a|public|park|,|you|'d|grab|your|kids|and|run|and|then|probably|call|the|police|. The|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|. The|pace|of|the|film|is|very|slow|(|for|obvious|reasons|)|and|that|too|becomes|off-putting|. Mr.|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|. Shafer|'s|feature|does|n't|offer|much|in|terms|of|plot|or|acting|. In|his|role|of|observer|of|the|scene|,|Lawrence|sounds|whiny|and|defensive|,|as|if|his|life-altering|experiences|made|him|bitter|and|less|mature|. (|T|)|he|ideas|of|Revolution|#|9|are|more|compelling|than|the|execution The|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|. What|happens|when|something|goes|bump|in|the|night|and|nobody|cares|? Despite|some|comic|sparks|,|Welcome|to|Collinwood|never|catches|fire|. Director|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|. Shows|moments|of|promise|but|ultimately|succumbs|to|cliches|and|pat|storytelling|. Even|accepting|this|in|the|right|frame|of|mind|can|only|provide|it|with|so|much|leniency|. Some|Body|is|a|shaky|,|uncertain|film|that|nevertheless|touches|a|few|raw|nerves|. All|the|small|moments|and|flashbacks|do|n't|add|up|to|much|more|than|trite|observations|on|the|human|condition|. (|A|)|stale|retread|of|the|'53|original|. One|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|. For|dance|completists|only|. Spreads|itself|too|thin|,|leaving|these|actors|,|as|well|as|the|members|of|the|commune|,|short|of|profound|characterizations It|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|. The|locale|...|remains|far|more|interesting|than|the|story|at|hand|. Yo|,|it|'s|The|Days|Of|Our|Lives|meets|Electric|Boogaloo|. I|liked|the|original|short|story|but|this|movie|,|even|at|an|hour|and|twenty-some|minutes|,|it|'s|too|long|and|it|goes|nowhere|. This|little|film|is|so|slovenly|done|,|so|primitive|in|technique|,|that|it|ca|n't|really|be|called|animation|. Makes|98|minutes|feel|like|three|hours|. Hawke|'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|. Aspires|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|. Real-life|strongman|Ahola|lacks|the|charisma|and|ability|to|carry|the|film|on|his|admittedly|broad|shoulders|. The|title|,|alone|,|should|scare|any|sane|person|away|. Low|comedy|does|n't|come|much|lower|. Appropriately|cynical|social|commentary|aside|,|#|9|never|quite|ignites|. It|'s|crap|on|a|leash|--|far|too|polite|to|scale|the|lunatic|heights|of|Joe|Dante|'s|similarly|styled|Gremlins|. One|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|. This|is|the|kind|of|movie|where|the|big|scene|is|a|man|shot|out|of|a|cannon|into|a|vat|of|ice|cream|. Let|'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|. A|loud|,|brash|and|mainly|unfunny|high|school|comedy|. An|exceptionally|dreary|and|overwrought|bit|of|work|,|every|bit|as|imperious|as|Katzenberg|'s|The|Prince|of|Egypt|from|1998|. The|movie|is|so|resolutely|cobbled|together|out|of|older|movies|that|it|even|uses|a|totally|unnecessary|prologue|,|just|because|it|seems|obligatory|. The|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|. Maid|in|Manhattan|proves|that|it|'s|easier|to|change|the|sheets|than|to|change|hackneyed|concepts|when|it|comes|to|dreaming|up|romantic|comedies|. A|fairly|harmless|but|ultimately|lifeless|feature-length|afterschool|special|. I|ca|n't|remember|the|last|time|I|saw|a|movie|where|I|wanted|so|badly|for|the|protagonist|to|fail|. ...|the|whole|thing|succeeded|only|in|making|me|groggy|. Like|most|of|Jaglom|'s|films|,|some|of|it|is|honestly|affecting|,|but|more|of|it|seems|contrived|and|secondhand|. One|long|,|numbing|action|sequence|made|up|mostly|of|routine|stuff|Yuen|has|given|us|before|. Forgettable|,|if|good-hearted|,|movie|. The|film|'s|most|improbable|feat|? It|did|n't|go|straight|to|video|. ...|about|as|exciting|to|watch|as|two|last-place|basketball|teams|playing|one|another|on|the|final|day|of|the|season|. The|Chateau|...|is|less|concerned|with|cultural|and|political|issues|than|doting|on|its|eccentric|characters|. Cruel|and|inhuman|cinematic|punishment|...|simultaneously|degrades|its|characters|,|its|stars|and|its|audience|. It|'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|. The|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|. About|as|original|as|a|gangster|sweating|bullets|while|worrying|about|a|contract|on|his|life|. An|empty|shell|of|an|epic|rather|than|the|real|deal|. We|could|have|expected|a|little|more|human|being|,|and|a|little|less|product|. Instead|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|. Whether|Quitting|will|prove|absorbing|to|American|audiences|is|debatable|. Becomes|a|bit|of|a|mishmash|:|a|tearjerker|that|does|n't|and|a|thriller|that|wo|n't|. Family|togetherness|takes|a|back|seat|to|inter-family|rivalry|and|workplace|ambition|...|whole|subplots|have|no|explanation|or|even|plot|relevance|. Grant|is|n't|Cary|and|Bullock|is|n't|Katherine|. Like|a|fish|that|'s|lived|too|long|,|Austin|Powers|in|Goldmember|has|some|unnecessary|parts|and|is|kinda|wrong|in|places|. Two|tedious|acts|light|on|great|scares|and|a|good|surprise|ending|. Shyamalan|should|stop|trying|to|please|his|mom|. The|entire|movie|is|in|need|of|a|scented|bath|. I|'m|sorry|to|say|that|this|should|seal|the|deal|-|Arnold|is|not|,|nor|will|he|be|,|back|. The|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|. A|Movie|to|Forget For|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|. Enough|is|not|a|bad|movie|,|just|mediocre|. The|performances|are|so|overstated|,|the|effect|comes|off|as|self-parody|. It|looks|good|,|but|it|is|essentially|empty|. The|film|never|finds|its|tone|and|several|scenes|run|too|long|. The|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|. Van|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|. It|'s|hard|to|believe|that|something|so|short|could|be|so|flabby|. Do|we|really|need|another|film|that|praises|female|self-sacrifice|? The|major|problem|with|Windtalkers|is|that|the|bulk|of|the|movie|centers|on|the|wrong|character|. Tennessee|Williams|by|way|of|Oprah|'s|Book|Club|. So|verbally|flatfooted|and|so|emotionally|predictable|or|bland|that|it|plays|like|the|standard|made-for-TV|movie|. The|entire|point|of|a|shaggy|dog|story|,|of|course|,|is|that|it|goes|nowhere|,|and|this|is|classic|nowheresville|in|every|sense|. Stale|and|clichéd|to|a|fault|. This|film|is|too|busy|hitting|all|of|its|assigned|marks|to|take|on|any|life|of|its|own|. Watching|junk|like|this|induces|a|kind|of|abstract|guilt|,|as|if|you|were|paying|dues|for|good|books|unread|,|fine|music|never|heard|. The|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|. Starts|off|witty|and|sophisticated|and|you|want|to|love|it|--|but|filmmaker|Yvan|Attal|quickly|writes|himself|into|a|corner|. Some|Like|It|Hot|on|the|Hardwood|proves|once|again|that|a|man|in|drag|is|not|in|and|of|himself|funny|. Unfortunately|,|contrived|plotting|,|stereotyped|characters|and|Woo|'s|over-the-top|instincts|as|a|director|undermine|the|moral|dilemma|at|the|movie|'s|heart|. Witless|and|utterly|pointless|. When|`|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|. Show|me|the|mugging|. Represents|something|very|close|to|the|nadir|of|the|thriller\/horror|genre|. Visually|sumptuous|but|intellectually|stultifying|. As|a|feature-length|film|,|it|wears|out|its|welcome|as|tryingly|as|the|title|character|. A|guilty|pleasure|at|best|,|and|not|worth|seeing|unless|you|want|to|laugh|at|it|. A|sleep-inducing|thriller|with|a|single|twist|that|everyone|except|the|characters|in|it|can|see|coming|a|mile|away|. With|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|? It|'s|just|rather|leaden|and|dull|. Lacks|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|. Statham|employs|an|accent|that|I|think|is|supposed|to|be|an|attempt|at|hardass|American|but|sometimes|just|lapses|into|unhidden|British|. Instead|of|trying|to|bust|some|blondes|,|(|Diggs|)|should|be|probing|why|a|guy|with|his|talent|ended|up|in|a|movie|this|bad|. Initial|strangeness|inexorably|gives|way|to|rote|sentimentality|and|mystical|tenderness|becomes|narrative|expedience|. De|Ayala|is|required|to|supply|too|much|of|the|energy|in|a|film|that|is|,|overall|,|far|too|staid|for|its|subject|matter|. Dismally|dull|sci-fi|comedy|. There|'s|surely|something|wrong|with|a|comedy|where|the|only|belly|laughs|come|from|the|selection|of|outtakes|tacked|onto|the|end|credits|. When|one|hears|Harry|Shearer|is|going|to|make|his|debut|as|a|film|director|,|one|would|hope|for|the|best The|leads|we|are|given|here|are|simply|too|bland|to|be|interesting|. (|Toback|'s|)|fondness|for|fancy|split-screen|,|stuttering|editing|and|pompous|references|to|Wittgenstein|and|Kirkegaard|...|blends|uneasily|with|the|titillating|material|. Adam|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|. essentially|``|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|... Even|a|hardened|voyeur|would|require|the|patience|of|Job|to|get|through|this|interminable|,|shapeless|documentary|about|the|swinging|subculture|. The|film|'s|hero|is|a|bore|and|his|innocence|soon|becomes|a|questionable|kind|of|inexcusable|dumb|innocence|. A|singularly|off-putting|romantic|comedy|. This|is|an|exercise|not|in|biography|but|in|hero|worship|. It|all|comes|down|to|whether|you|can|tolerate|Leon|Barlow|. I|ca|n't|. In|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|. Check|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|. The|movie|does|has|some|entertainment|value|-|how|much|depends|on|how|well|you|like|Chris|Rock|. A|movie|that|seems|motivated|more|by|a|desire|to|match|mortarboards|with|Dead|Poets|Society|and|Good|Will|Hunting|than|by|its|own|story|. A|culture|clash|comedy|only|half|as|clever|as|it|thinks|it|is|. The|logic|of|it|all|will|be|Greek|to|anyone|not|predisposed|to|the|movie|'s|rude|and|crude|humor|. As|self-aware|movies|go|,|Who|is|Cletis|Tout|? is|clever|enough|,|though|thin|writing|proves|its|undoing|. Starts|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|. ...|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|. Director|Jay|Russell|weighs|down|his|capricious|fairy-tale|with|heavy|sentiment|and|lightweight|meaning|. There|are|many|things|that|solid|acting|can|do|for|a|movie|,|but|crafting|something|promising|from|a|mediocre|screenplay|is|not|one|of|them|. Its|screenplay|serves|as|auto-critique|,|and|its|clumsiness|as|its|own|most|damning|censure|. At|times|,|it|actually|hurts|to|watch|. Nemesis|suffers|from|a|paunchy|midsection|,|several|plodding|action|sequences|and|a|wickedly|undramatic|central|theme|. The|jokes|are|telegraphed|so|far|in|advance|they|must|have|been|lost|in|the|mail|. (|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|. A|beyond-lame|satire|,|Teddy|Bears|'|Picnic|ranks|among|the|most|pitiful|directing|debuts|by|an|esteemed|writer-actor|. I|'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|... Hollywood|'s|answer|to|an|air|ball|. And|people|make|fun|of|me|for|liking|Showgirls|. Such|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|. A|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|does|n't|leave|you|with|much|. I|'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|. Like|Mike|is|a|slight|and|uninventive|movie|:|Like|the|exalted|Michael|Jordan|referred|to|in|the|title|,|many|can|aspire|but|none|can|equal|. There|is|nothing|funny|in|this|every-joke-has|-|been-told-a|-|thousand-times|-|before|movie|. Always|destined|to|be|measured|against|Anthony|Asquith|'s|acclaimed|1952|screen|adaptation|. This|is|standard|crime|drama|fare|...|instantly|forgettable|and|thoroughly|dull|. There|'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|. One|of|those|based-on-truth|stories|that|persuades|you|,|with|every|scene|,|that|it|could|never|really|have|happened|this|way|. From|its|nauseating|spinning|credits|sequence|to|a|very|talented|but|underutilized|supporting|cast|,|Bartleby|squanders|as|much|as|it|gives|out|. Yet|another|genre|exercise|,|Gangster|No.|1|is|as|generic|as|its|title|. Despite|the|holes|in|the|story|and|the|somewhat|predictable|plot|,|moments|of|the|movie|caused|me|to|jump|in|my|chair|... There|'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|. Once|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|. A|lightweight|,|uneven|action|comedy|that|freely|mingles|French|,|Japanese|and|Hollywood|cultures|. Such|a|fine|idea|for|a|film|,|and|such|a|stultifying|,|lifeless|execution|. (|Allen|'s|)|best|works|understand|why|snobbery|is|a|better|satiric|target|than|middle-America|diversions|could|ever|be|. This|overlong|infomercial|,|due|out|on|video|before|month|'s|end|,|is|tepid|and|tedious|. An|ambitious|,|guilt-suffused|melodrama|crippled|by|poor|casting|. Rarely|has|sex|on|screen|been|so|aggressively|anti-erotic|. A|dull|,|inconsistent|,|dishonest|female|bonding|picture|. So|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|. A|disappointment|for|a|movie|that|should|have|been|the|ultimate|IMAX|trip|. Does|little|to|elaborate|the|conceit|of|setting|this|blood-soaked|tragedy|of|murderous|ambition|in|the|era|of|Richard|Nixon|. This|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|. The|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|. It|'s|as|if|a|bored|Cage|spent|the|duration|of|the|film|'s|shooting|schedule|waiting|to|scream|:|``|Got|AIDS|yet|?|'' In|a|strange|way|,|Egoyan|has|done|too|much|. He|'s|worked|too|hard|on|this|movie|. The|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|. The|last|three|narcissists|left|on|earth|compete|for|each|others|'|affections|. A|clash|between|the|artificial|structure|of|the|story|and|the|more|contemporary|,|naturalistic|tone|of|the|film|... The|movie|'s|messages|are|quite|admirable|,|but|the|story|is|just|too|clichéd|and|too|often|strains|credulity|. What|we|have|here|is|n't|a|disaster|,|exactly|,|but|a|very|handsomely|produced|let-down|. The|script|was|reportedly|rewritten|a|dozen|times|--|either|11|times|too|many|or|else|too|few|. A|shoddy|male|hip|hop|fantasy|filled|with|guns|,|expensive|cars|,|lots|of|naked|women|and|Rocawear|clothing|. To|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|. This|is|a|movie|filled|with|unlikable|,|spiteful|idiots|;|whether|or|not|their|friendship|is|salvaged|makes|no|difference|in|the|least|. It|'s|as|if|Allen|,|at|66|,|has|stopped|challenging|himself|. Scotland|,|PA|is|entirely|too|straight-faced|to|transcend|its|clever|concept|. A|movie|that|the|less|charitable|might|describe|as|a|castrated|cross|between|Highlander|and|Lolita|. Not|only|does|LeBlanc|make|one|spectacularly|ugly-looking|broad|,|but|he|appears|miserable|throughout|as|he|swaggers|through|his|scenes|. There|'s|little|to|recommend|Snow|Dogs|,|unless|one|considers|cliched|dialogue|and|perverse|escapism|a|source|of|high|hilarity|. It|'s|deep-sixed|by|a|compulsion|to|catalog|every|bodily|fluids|gag|in|There|'s|Something|About|Mary|and|devise|a|parallel|clone-gag|. The|film|rehashes|several|old|themes|and|is|capped|with|pointless|extremes|--|it|'s|insanely|violent|and|very|graphic|. Sorority|Boys|,|which|is|as|bad|at|it|is|cruel|,|takes|every|potential|laugh|and|stiletto-stomps|the|life|out|of|it|. Here|the|love|scenes|all|end|in|someone|screaming|. Maybe|there|'s|a|metaphor|here|,|but|figuring|it|out|would|n't|make|Trouble|Every|Day|any|better|. This|is|the|first|film|I|'ve|ever|seen|that|had|no|obvious|directing|involved|. Fans|of|so-bad-they|'re|-|good|cinema|may|find|some|fun|in|this|jumbled|mess|. Weiss|and|Speck|never|make|a|convincing|case|for|the|relevance|of|these|two|20th-century|footnotes|. Sheridan|is|painfully|bad|,|a|fourth-rate|Jim|Carrey|who|does|n't|understand|the|difference|between|dumb|fun|and|just|plain|dumb|. Presents|nothing|special|and|,|until|the|final|act|,|nothing|overtly|disagreeable|. The|most|excruciating|86|minutes|one|might|sit|through|this|summer|that|do|not|involve|a|dentist|drill|. Was|that|movie|nothing|more|than|a|tepid|exercise|in|trotting|out|a|formula|that|worked|five|years|ago|but|has|since|lost|its|fizz|? It|goes|on|for|too|long|and|bogs|down|in|a|surfeit|of|characters|and|unnecessary|subplots|. It|'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|. You|...|get|a|sense|of|good|intentions|derailed|by|a|failure|to|seek|and|strike|just|the|right|tone|. `|In|this|poor|remake|of|such|a|well|loved|classic|,|Parker|exposes|the|limitations|of|his|skill|and|the|basic|flaws|in|his|vision|.|' It|'s|the|movie|equivalent|of|a|sweaty|old|guy|in|a|rain|coat|shopping|for|cheap|porn|. The|film|'s|final|hour|,|where|nearly|all|the|previous|unseen|material|resides|,|is|unconvincing|soap|opera|that|Tornatore|was|right|to|cut|. The|movie|does|such|an|excellent|job|of|critiquing|itself|at|every|faltering|half-step|of|its|development|that|criticizing|feels|more|like|commiserating|. I|found|it|slow|,|predictable|and|not|very|amusing|. Director|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|. Viewers|will|need|all|the|luck|they|can|muster|just|figuring|out|who|'s|who|in|this|pretentious|mess|. A|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|. Get|out|your|pooper-scoopers|. While|the|material|is|slight|,|the|movie|is|better|than|you|might|think|. It|'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|. Sheridan|seems|terrified|of|the|book|'s|irreverent|energy|,|and|scotches|most|of|its|élan|,|humor|,|bile|,|and|irony|. More|busy|than|exciting|,|more|frantic|than|involving|,|more|chaotic|than|entertaining|. There|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|. It|'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|. The|fourth|in|a|series|that|I|'ll|bet|most|parents|had|thought|--|hoped|! --|was|a|fad|that|had|long|since|vanished|. It|'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|. Its|premise|is|smart|,|but|the|execution|is|pretty|weary|. The|holiday|message|of|the|37-minute|Santa|vs.|the|Snowman|leaves|a|lot|to|be|desired|. more|precious|than|perspicacious If|you|saw|it|on|TV|,|you|'d|probably|turn|it|off|,|convinced|that|you|had|already|seen|that|movie|. (|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|. If|this|is|cinema|,|I|pledge|allegiance|to|Cagney|and|Lacey|. Enigma|looks|great|,|has|solid|acting|and|a|neat|premise|. Yet|why|it|fails|is|a|riddle|wrapped|in|a|mystery|inside|an|enigma|. Most|of|the|characters|come|off|as|pantomimesque|sterotypes|. Starts|promisingly|but|disintegrates|into|a|dreary|,|humorless|soap|opera|. While|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|. It|'s|actually|too|sincere|--|the|crime|movie|equivalent|of|a|chick|flick|. Most|of|the|film|feels|conceived|and|shot|on|the|fly|--|like|between|lunch|breaks|for|Shearer|'s|radio|show|and|his|Simpson|voice-overs|. Perry|'s|good|and|his|is|an|interesting|character|,|but|``|Serving|Sara|''|has|n't|much|more|to|serve|than|silly|fluff|. Nor|is|it|a|romantic|comedy|. Culkin|turns|his|character|into|what|is|basically|an|anti-Harry|Potter|--|right|down|to|the|Gryffindor|scarf|. Memorable|for|a|peculiar|malaise|that|renders|its|tension|flaccid|and|,|by|extension|,|its|surprises|limp|and|its|resolutions|ritual|. It|'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|. In|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|. The|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|. Like|most|movies|about|the|pitfalls|of|bad|behavior|...|Circuit|gets|drawn|into|the|party|. It|appears|as|if|even|the|filmmakers|did|n't|know|what|kind|of|movie|they|were|making|. Beneath|the|uncanny|,|inevitable|and|seemingly|shrewd|facade|of|movie-biz|farce|...|lies|a|plot|cobbled|together|from|largely|flat|and|uncreative|moments|. Snipes|relies|too|much|on|a|scorchingly|plotted|dramatic|scenario|for|its|own|good|. Piccoli|'s|performance|is|amazing|,|yes|,|but|the|symbols|of|loss|and|denial|and|life-at-arm|'s|-|length|in|the|film|seem|irritatingly|transparent|. Starts|out|mediocre|,|spirals|downward|,|and|thuds|to|the|bottom|of|the|pool|with|an|utterly|incompetent|conclusion|. Nicolas|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|. It|lacks|the|compassion|,|good-natured|humor|and|the|level|of|insight|that|made|(|Eyre|'s|)|first|film|something|of|a|sleeper|success|. The|result|is|good|gossip|,|entertainingly|delivered|,|yet|with|a|distinctly|musty|odour|,|its|expiry|date|long|gone|. A|sustained|fest|of|self-congratulation|between|actor|and|director|that|leaves|scant|place|for|the|viewer|. All|Analyze|That|proves|is|that|there|is|really|only|one|movie|'s|worth|of|decent|gags|to|be|gleaned|from|the|premise|. Green|ruins|every|single|scene|he|'s|in|,|and|the|film|,|while|it|'s|not|completely|wreaked|,|is|seriously|compromised|by|that|. There|'s|not|a|comedic|moment|in|this|romantic|comedy|. The|story|is|predictable|,|the|jokes|are|typical|Sandler|fare|,|and|the|romance|with|Ryder|is|puzzling|. Wallace|directs|with|such|patronising|reverence|,|it|turns|the|stomach|. Resurrection|has|the|dubious|distinction|of|being|a|really|bad|imitation|of|the|really|bad|Blair|Witch|Project|. Poor|Ben|Bratt|could|n't|find|stardom|if|MapQuest|emailed|him|point-to-point|driving|directions|. Pretend|like|your|SAT|scores|are|below|120|and|you|might|not|notice|the|flaws|. Unlike|Trey|Parker|,|Sandler|does|n't|understand|that|the|idea|of|exploiting|molestation|for|laughs|is|funny|,|not|actually|exploiting|it|yourself|. A|fake|street|drama|that|keeps|telling|you|things|instead|of|showing|them|. An|empty|,|purposeless|exercise|. Earnest|and|tentative|even|when|it|aims|to|shock|. Haneke|'s|script|(|from|Elfriede|Jelinek|'s|novel|)|is|contrived|,|unmotivated|,|and|psychologically|unpersuasive|,|with|an|inconclusive|ending|. A|sometimes|incisive|and|sensitive|portrait|that|is|undercut|by|its|awkward|structure|and|a|final|veering|toward|melodrama|. Those|24-and-unders|looking|for|their|own|Caddyshack|to|adopt|as|a|generational|signpost|may|have|to|keep|on|looking|. A|distinctly|mixed|bag|,|the|occasional|bursts|of|sharp|writing|alternating|with|lots|of|sloppiness|and|the|obligatory|moments|of|sentimental|ooze|. What|begins|brightly|gets|bogged|down|over|140|minutes|. Ultimately|,|Jane|learns|her|place|as|a|girl|,|softens|up|and|loses|some|of|the|intensity|that|made|her|an|interesting|character|to|begin|with|. Ah-nuld|'s|action|hero|days|might|be|over|. It|'s|clear|why|Deuces|Wild|,|which|was|shot|two|years|ago|,|has|been|gathering|dust|on|MGM|'s|shelf|. Feels|like|nothing|quite|so|much|as|a|middle-aged|moviemaker|'s|attempt|to|surround|himself|with|beautiful|,|half-naked|women|. When|the|precise|nature|of|Matthew|'s|predicament|finally|comes|into|sharp|focus|,|the|revelation|fails|to|justify|the|build-up|. This|picture|is|murder|by|numbers|,|and|as|easy|to|be|bored|by|as|your|ABC|'s|,|despite|a|few|whopping|shootouts|. Hilarious|musical|comedy|though|stymied|by|accents|thick|as|mud|. If|you|are|into|splatter|movies|,|then|you|will|probably|have|a|reasonably|good|time|with|The|Salton|Sea|. A|dull|,|simple-minded|and|stereotypical|tale|of|drugs|,|death|and|mind-numbing|indifference|on|the|inner-city|streets|. The|feature-length|stretch|...|strains|the|show|'s|concept|. This|slender|plot|feels|especially|thin|stretched|over|the|nearly|80-minute|running|time|. A|film|that|will|probably|please|people|already|fascinated|by|Behan|but|leave|everyone|else|yawning|with|admiration|. Davis|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|. The|densest|distillation|of|Roberts|'|movies|ever|made|. Ultimately|,|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|. A|handsome|but|unfulfilling|suspense|drama|more|suited|to|a|quiet|evening|on|PBS|than|a|night|out|at|an|AMC|. Tom|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|. (|It|)|highlights|not|so|much|the|crime|lord|'s|messianic|bent|,|but|Spacey|'s|. Master|of|Disguise|runs|for|only|71|minutes|and|feels|like|three|hours|. A|reworking|of|Die|Hard|and|Cliffhanger|but|it|'s|nowhere|near|as|exciting|as|either|. Suffers|from|unlikable|characters|and|a|self-conscious|sense|of|its|own|quirky|hipness|. A|film|without|surprise|geared|toward|maximum|comfort|and|familiarity|. Fessenden|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|,|is|n't|really|one|of|resources|. Spirit|is|a|visual|treat|,|and|it|takes|chances|that|are|bold|by|studio|standards|,|but|it|lacks|a|strong|narrative|. It|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|. This|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|is|n't|enough|clever|innuendo|to|fil The|niftiest|trick|perpetrated|by|The|Importance|of|Being|Earnest|is|the|alchemical|transmogrification|of|Wilde|into|Austen|--|and|a|Hollywood-ized|Austen|at|that|. Tykwer|'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|. Ice|Age|is|the|first|computer-generated|feature|cartoon|to|feel|like|other|movies|,|and|that|makes|for|some|glacial|pacing|early|on|. Too|slick|and|manufactured|to|claim|street|credibility|. Cherry|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|.|' What|ensues|are|much|blood-splattering|,|mass|drug-induced|bowel|evacuations|,|and|none-too-funny|commentary|on|the|cultural|distinctions|between|Americans|and|Brits|. A|dark|comedy|that|goes|for|sick|and|demented|humor|simply|to|do|so|. The|movie|is|without|intent|. Visually|exciting|sci-fi|film|which|suffers|from|a|lackluster|screenplay|. While|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|. If|The|Full|Monty|was|a|freshman|fluke|,|Lucky|Break|is|(|Cattaneo|)|sophomore|slump|. Sandra|Bullock|and|Hugh|Grant|make|a|great|team|,|but|this|predictable|romantic|comedy|should|get|a|pink|slip|. Allegiance|to|Chekhov|,|which|director|Michael|Cacoyannis|displays|with|somber|earnestness|in|the|new|adaptation|of|The|Cherry|Orchard|,|is|a|particularly|vexing|handicap|. You|expect|more|from|director|Michael|Apted|(|Enigma|)|and|screenwriter|Nicholas|Kazan|(|Reversal|of|Fortune|)|than|this|cliche|pileup|. The|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|? The|dramatic|scenes|are|frequently|unintentionally|funny|,|and|the|action|sequences|--|clearly|the|main|event|--|are|surprisingly|uninvolving|. Replacing|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|. It|has|the|requisite|faux-urban|vibe|and|hotter-two-years-ago|rap|and|R&B|names|and|references|. Despite|its|dry|wit|and|compassion|,|the|film|suffers|from|a|philosophical|emptiness|and|maddeningly|sedate|pacing|. ...|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|. Attal|pushes|too|hard|to|make|this|a|comedy|or|serious|drama|. He|seems|to|want|both|,|but|succeeds|in|making|neither|. I|could|have|used|my|two|hours|better|watching|Being|John|Malkovich|again|. It|'s|not|a|bad|plot|;|but|,|unfortunately|,|the|movie|is|nowhere|near|as|refined|as|all|the|classic|dramas|it|borrows|from|. Girlfriends|are|bad|,|wives|are|worse|and|babies|are|the|kiss|of|death|in|this|bitter|Italian|comedy|. The|only|young|people|who|possibly|will|enjoy|it|are|infants|...|who|might|be|distracted|by|the|movie|'s|quick|movements|and|sounds|. The|film|boasts|at|least|a|few|good|ideas|and|features|some|decent|performances|,|but|the|result|is|disappointing|. No|Such|Thing|breaks|no|new|ground|and|treads|old|turf|like|a|hippopotamus|ballerina|. Unfortunately|,|neither|Sendak|nor|the|directors|are|particularly|engaging|or|articulate|. A|wishy-washy|melodramatic|movie|that|shows|us|plenty|of|sturm|und|drung|,|but|explains|its|characters|'|decisions|only|unsatisfactorily|. Bang|! Zoom|! It|'s|actually|pretty|funny|,|but|in|all|the|wrong|places|. Lurid|and|less|than|lucid|work|. A|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|. At|a|brief|42|minutes|,|we|need|more|X|and|less|blab|. If|anything|,|see|it|for|Karen|Black|,|who|camps|up|a|storm|as|a|fringe|feminist|conspiracy|theorist|named|Dirty|Dick|. This|90-minute|dud|could|pass|for|Mike|Tyson|'s|E|! True|Hollywood|Story|. This|is|surely|one|of|the|most|frantic|,|virulent|and|foul-natured|Christmas|season|pics|ever|delivered|by|a|Hollywood|studio|. Once|the|expectation|of|laughter|has|been|quashed|by|whatever|obscenity|is|at|hand|,|even|the|funniest|idea|is|n't|funny|. A|porn|film|without|the|sex|scenes|. The|connected|stories|of|Breitbart|and|Hanussen|are|actually|fascinating|,|but|the|filmmaking|in|Invincible|is|such|that|the|movie|does|not|do|them|justice|. A|depressingly|retrograde|,|`|post-feminist|'|romantic|comedy|that|takes|an|astonishingly|condescending|attitude|toward|women|. Return|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|. By|the|end|,|you|just|do|n't|care|whether|that|cold-hearted|snake|Petrovich|(|that|would|be|Reno|)|gets|his|comeuppance|. Just|bring|on|the|Battle|Bots|,|please|! While|it|'s|all|quite|tasteful|to|look|at|,|the|attention|process|tends|to|do|a|little|fleeing|of|its|own|. Broder|'s|screenplay|is|shallow|,|offensive|and|redundant|,|with|pitifully|few|real|laughs|. Yes|they|can|swim|,|the|title|is|merely|Anne-Sophie|Birot|'s|off-handed|way|of|saying|girls|find|adolescence|difficult|to|wade|through|. Don|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|)|. Slow|,|silly|and|unintentionally|hilarious|. The|Sweetest|Thing|leaves|a|bitter|taste|. In|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|. For|something|as|splendid-looking|as|this|particular|film|,|the|viewer|expects|something|special|but|instead|gets|(|sci-fi|)|rehash|. A|thriller|without|a|lot|of|thrills|. This|stuck|pig|of|a|movie|flails|limply|between|bizarre|comedy|and|pallid|horror|. Ah|,|the|travails|of|metropolitan|life|! Alas|,|another|breathless|movie|about|same|! In|Moonlight|Mile|,|no|one|gets|shut|out|of|the|hug|cycle|. Though|uniformly|well|acted|,|especially|by|young|Ballesta|and|Galan|(|a|first-time|actor|)|,|writer\/director|Achero|Manas|'s|film|is|schematic|and|obvious|. Done|in|mostly|by|a|weak|script|that|ca|n't|support|the|epic|treatment|. Despite|its|visual|virtuosity|,|`|Naqoyqatsi|'|is|banal|in|its|message|and|the|choice|of|material|to|convey|it|. Slap|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|. Though|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|. ``|One|look|at|a|girl|in|tight|pants|and|big|tits|and|you|turn|stupid|?|'' Um|...|is|n't|that|the|basis|for|the|entire|plot|? ``|Not|really|as|bad|as|you|might|think|!|'' Strident|and|inelegant|in|its|`|message-movie|'|posturing|. One|regards|Reign|of|Fire|with|awe|. What|a|vast|enterprise|has|been|marshaled|in|the|service|of|such|a|minute|idea|. It|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|. Its|impressive|images|of|crematorium|chimney|fires|and|stacks|of|dead|bodies|are|undermined|by|the|movie|'s|presentation|,|which|is|way|too|stagy|. Seeing|as|the|film|lacks|momentum|and|its|position|remains|mostly|undeterminable|,|the|director|'s|experiment|is|a|successful|one|. The|plot|is|romantic|comedy|boilerplate|from|start|to|finish|. I|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|. An|unfortunate|title|for|a|film|that|has|nothing|endearing|about|it|. Ninety|minutes|of|Viva|Castro|! can|be|as|tiresome|as|9|seconds|of|Jesse|Helms|'|anti-|Castro|rhetoric|,|which|are|included Comes|off|as|a|long|,|laborious|whine|,|the|bellyaching|of|a|paranoid|and|unlikable|man|. It|just|goes|to|show|,|an|intelligent|person|is|n't|necessarily|an|admirable|storyteller|. In|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|.|'' Hopelessly|inane|,|humorless|and|under-inspired|. Kapur|fails|to|give|his|audience|a|single|character|worth|rooting|for|(|or|worth|rooting|against|,|for|that|matter|)|. It|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|. None|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|is|n't|very|effective|. A|great|script|brought|down|by|lousy|direction|. Same|guy|with|both|hats|. Big|mistake|. A|mediocre|exercise|in|target|demographics|,|unaware|that|it|'s|the|butt|of|its|own|joke|. Director|Kevin|Bray|excels|in|breaking|glass|and|marking|off|the|``|Miami|Vice|''|checklist|of|power|boats|,|Latin|music|and|dog|tracks|. He|does|n't|,|however|,|deliver|nearly|enough|of|the|show|'s|trademark|style|and|flash|. In|gleefully|,|thumpingly|hyperbolic|terms|,|it|covers|just|about|every|cliche|in|the|compendium|about|crass|,|jaded|movie|types|and|the|phony|baloney|movie|biz|. The|Spalding|Gray|equivalent|of|a|teen|gross-out|comedy|. Perhaps|even|the|SLC|high|command|found|writer-director|Mitch|Davis|'s|wall|of|kitsch|hard|going|. According|to|Wendigo|,|`|nature|'|loves|the|members|of|the|upper|class|almost|as|much|as|they|love|themselves|. An|encouraging|effort|from|McCrudden The|romance|between|the|leads|is|n't|as|compelling|or|as|believable|as|it|should|be|. If|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|. Supposedly|authentic|account|of|a|historical|event|that|'s|far|too|tragic|to|merit|such|superficial|treatment|. Adroit|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|. To|Blandly|Go|Where|We|Went|8|Movies|Ago|... A|slow-moving|police-procedural|thriller|that|takes|its|title|all|too|literally|. This|u-boat|does|n't|have|a|captain|. With|nary|a|glimmer|of|self-knowledge|,|(|Crane|)|becomes|more|specimen|than|character|--|and|Auto|Focus|remains|a|chilly|,|clinical|lab|report|. This|one|aims|for|the|toilet|and|scores|a|direct|hit|. Dull|,|a|road-trip|movie|that|'s|surprisingly|short|of|both|adventure|and|song|. I|walked|away|not|really|know|who|``|they|''|were|,|what|``|they|''|looked|like|. Why|``|they|''|were|here|and|what|``|they|''|wanted|and|quite|honestly|,|I|did|n't|care|. After|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|. A|relatively|effective|little|potboiler|until|its|absurd|,|contrived|,|overblown|,|and|entirely|implausible|finale|. The|Country|Bears|wastes|an|exceptionally|good|idea|. But|the|movie|that|does|n't|really|deliver|for|country|music|fans|or|for|family|audiences Adults|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|wo|n't|enjoy|the|movie|at|all|. ...|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|. Too|bad|writer-director|Adam|Rifkin|situates|it|all|in|a|plot|as|musty|as|one|of|the|Golden|Eagle|'s|carpets|. It|'s|lazy|for|a|movie|to|avoid|solving|one|problem|by|trying|to|distract|us|with|the|solution|to|another|. The|movie|is|genial|but|never|inspired|,|and|little|about|it|will|stay|with|you|. The|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|. Despite|the|opulent|lushness|of|every|scene|,|the|characters|never|seem|to|match|the|power|of|their|surroundings|. even|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|. A|bland|,|obnoxious|88-minute|infomercial|for|Universal|Studios|and|its|ancillary|products|.|.|. 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|. The|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|. The|Master|of|Disguise|is|awful|. It|'s|Pauly|Shore|awful|. Do|n't|say|you|were|n't|warned|. Disappointing|in|comparison|to|other|recent|war|movies|...|or|any|other|John|Woo|flick|for|that|matter|. The|entire|movie|is|filled|with|deja|vu|moments|. `|Opening|up|'|the|play|more|has|partly|closed|it|down|. What|(|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|. An|ugly|,|revolting|movie|. The|film|is|way|too|full|of|itself|;|it|'s|stuffy|and|pretentious|in|a|give-me-an-Oscar|kind|of|way|. The|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|. Watching|``|Ending|''|is|too|often|like|looking|over|the|outdated|clothes|and|plastic|knickknacks|at|your|neighbor|'s|garage|sale|. You|ca|n't|believe|anyone|would|really|buy|this|stuff|. Certainly|beautiful|to|look|at|,|but|its|not|very|informative|about|its|titular|character|and|no|more|challenging|than|your|average|television|biopic|. It|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|. The|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|? From|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 My|advice|is|to|skip|the|film|and|pick|up|the|soundtrack|. A|film|that|presents|an|interesting|,|even|sexy|premise|then|ruins|itself|with|too|many|contrivances|and|goofy|situations|. Filled|with|low-brow|humor|,|gratuitous|violence|and|a|disturbing|disregard|for|life|. directed|in|a|flashy|,|empty|sub-music|video|style|by|a|director|so|self-possessed|he|actually|adds|a|period|to|his|first|name The|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|. An|unsophisticated|sci-fi|drama|that|takes|itself|all|too|seriously|. Solondz|is|without|doubt|an|artist|of|uncompromising|vision|,|but|that|vision|is|beginning|to|feel|,|if|not|morally|bankrupt|,|at|least|terribly|monotonous|. Harvard|Man|is|a|semi-throwback|,|a|reminiscence|without|nostalgia|or|sentimentality|. Supposedly|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|. While|Hoffman|'s|performance|is|great|,|the|subject|matter|goes|nowhere|. The|smash|'em|-|up|,|crash|'em|-|up|,|shoot|'em|-|up|ending|comes|out|of|nowhere|substituting|mayhem|for|suspense|. Deuces|Wild|treads|heavily|into|Romeo|and|Juliet\/West|Side|Story|territory|,|where|it|plainly|has|no|business|going|. Hart|'s|War|seems|to|want|to|be|a|character|study|,|but|apparently|ca|n't|quite|decide|which|character|. Theological|matters|aside|,|the|movie|is|so|clumsily|sentimental|and|ineptly|directed|it|may|leave|you|speaking|in|tongues|. This|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|. Novak|contemplates|a|heartland|so|overwhelmed|by|its|lack|of|purpose|that|it|seeks|excitement|in|manufactured|high|drama|. Been|there|,|done|that|,|liked|it|much|better|the|first|time|around|-|when|it|was|called|The|Professional|. The|film|is|all|over|the|place|,|really|. It|dabbles|all|around|,|never|gaining|much|momentum|. The|beautiful|,|unusual|music|is|this|film|'s|chief|draw|,|but|its|dreaminess|may|lull|you|to|sleep|. The|action|quickly|sinks|into|by-the-numbers|territory|. Forages|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|. When|(|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|. Such|a|premise|is|ripe|for|all|manner|of|lunacy|,|but|Kaufman|and|Gondry|rarely|seem|sure|of|where|it|should|go|. Burns|'|fifth|beer-soaked|film|feels|in|almost|every|possible|way|--|from|the|writing|and|direction|to|the|soggy|performances|--|tossed|off|. While|this|one|gets|off|with|a|good|natured|warning|,|future|Lizard|endeavors|will|need|to|adhere|more|closely|to|the|laws|of|laughter Another|boorish|movie|from|the|I-heard-a-joke|-|at-a-frat-party|school|of|screenwriting|. Too|much|of|the|movie|feels|contrived|,|as|if|the|filmmakers|were|worried|the|story|would|n't|work|without|all|those|gimmicks|. It|'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|. The|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|. The|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|. Why|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|? The|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|. Exploring|value|choices|is|a|worthwhile|topic|for|a|film|--|but|here|the|choices|are|as|contrived|and|artificial|as|Kerrigan|'s|platinum-blonde|hair|. The|movie|'s|downfall|is|to|substitute|plot|for|personality|. It|does|n't|really|know|or|care|about|the|characters|,|and|uses|them|as|markers|for|a|series|of|preordained|events|. All|mood|and|no|movie|. Press|the|delete|key|. Simone|is|not|a|bad|film|. It|just|does|n't|have|anything|really|interesting|to|say|. Once|he|starts|learning|to|compromise|with|reality|enough|to|become|comparatively|sane|and|healthy|,|the|film|becomes|predictably|conventional|. ...|hopefully|it|'ll|be|at|the|dollar|theatres|by|the|time|Christmas|rolls|around|. Wait|to|see|it|then|. There|'s|no|disguising|this|as|one|of|the|worst|films|of|the|summer|. Or|for|the|year|,|for|that|matter|. Lacks|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|. This|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|. Death|to|Smoochy|tells|a|moldy-oldie|,|not-nearly|-|as-nasty|-|as-it|-|thinks-it-is|joke|. Over|and|over|again|. The|threat|implied|in|the|title|Pokémon|4ever|is|terrifying|--|like|locusts|in|a|horde|these|things|will|keep|coming|. The|film|never|gets|over|its|own|investment|in|conventional|arrangements|,|in|terms|of|love|,|age|,|gender|,|race|,|and|class|. To|call|this|film|a|lump|of|coal|would|only|be|to|flatter|it|. Entertainment|more|disposable|than|Hanna-Barbera|'s|half-hour|cartoons|ever|were|. The|film|falls|short|on|tension|,|eloquence|,|spiritual|challenge|--|things|that|have|made|the|original|New|Testament|stories|so|compelling|for|20|centuries|. By|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|. At|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|. The|whole|talking-animal|thing|is|grisly|. Never|Again|,|while|nothing|special|,|is|pleasant|,|diverting|and|modest|--|definitely|a|step|in|the|right|direction|. Would|n'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|. Has|not|so|much|been|written|as|assembled|,|Frankenstein-like|,|out|of|other|,|marginally|better|shoot-em-ups|. The|punch|lines|that|miss|,|unfortunately|,|outnumber|the|hits|by|three-to-one|. But|Death|to|Smoochy|keeps|firing|until|the|bitter|end|. Mushes|the|college-friends|genre|(|The|Big|Chill|)|together|with|the|contrivances|and|overwrought|emotion|of|soap|operas|. Showtime|'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|. A|determined|,|ennui-hobbled|slog|that|really|does|n't|have|much|to|say|beyond|the|news|flash|that|loneliness|can|make|people|act|weird|. Too|daft|by|half|...|but|supremely|good|natured|. Fails|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|. It|'s|a|shame|that|the|storyline|and|its|underlying|themes|...|finally|seem|so|impersonal|or|even|shallow|. Woody|,|what|happened|? Juliette|Binoche|'s|Sand|is|vivacious|,|but|it|'s|hard|to|sense|that|powerhouse|of|19th-century|prose|behind|her|childlike|smile|. It|'s|supposed|to|be|post-feminist|breezy|but|ends|up|as|tedious|as|the|chatter|of|parrots|raised|on|Oprah|. You|can|tell|almost|immediately|that|Welcome|to|Collinwood|is|n't|going|to|jell|. Throughout|all|the|tumult|,|a|question|comes|to|mind|:|So|why|is|this|so|boring|? Cattaneo|reworks|the|formula|that|made|The|Full|Monty|a|smashing|success|...|but|neglects|to|add|the|magic|that|made|it|all|work|. Routine|and|rather|silly|. A|rip-off|twice|removed|,|modeled|after|(|Seagal|'s|)|earlier|copycat|Under|Siege|,|sometimes|referred|to|as|Die|Hard|on|a|boat|. Totally|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|. You|can|practically|hear|George|Orwell|turning|over|. Behan|'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|. While|Holm|is|terrific|as|both|men|and|Hjejle|quite|appealing|,|the|film|fails|to|make|the|most|out|of|the|intriguing|premise|. Lazy|filmmaking|,|with|the|director|taking|a|hands-off|approach|when|he|should|have|shaped|the|story|to|show|us|why|it|'s|compelling|. If|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. A|movie|that|falls|victim|to|frazzled|wackiness|and|frayed|satire|. How|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|. The|film|'s|trailer|also|looked|like|crap|,|so|crap|is|what|I|was|expecting|. More|trifle|than|triumph|. The|movie|is|almost|completely|lacking|in|suspense|,|surprise|and|consistent|emotional|conviction|. Festers|in|just|such|a|dungpile|that|you|'d|swear|you|were|watching|monkeys|flinging|their|feces|at|you|. Lyne|'s|latest|,|the|erotic|thriller|Unfaithful|,|further|demonstrates|just|how|far|his|storytelling|skills|have|eroded|. It|sounds|like|another|clever|if|pointless|excursion|into|the|abyss|,|and|that|'s|more|or|less|how|it|plays|out|. Rumor|,|a|muddled|drama|about|coming|to|terms|with|death|,|feels|impersonal|,|almost|generic|. Report|card|:|Does|n't|live|up|to|the|exalted|tagline|-|there|'s|definite|room|for|improvement|. Does|n't|deserve|a|passing|grade|(|even|on|a|curve|)|. The|pacing|is|deadly|,|the|narration|helps|little|and|Naipaul|,|a|juicy|writer|,|is|negated|. As|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|. ...|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|. Bean|drops|the|ball|too|many|times|...|hoping|the|nifty|premise|will|create|enough|interest|to|make|up|for|an|unfocused|screenplay|. A|well-acted|,|but|one-note|film|. Blood|Work|is|laughable|in|the|solemnity|with|which|it|tries|to|pump|life|into|overworked|elements|from|Eastwood|'s|Dirty|Harry|period|. The|movie|is|too|amateurishly|square|to|make|the|most|of|its|own|ironic|implications|. (|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|. There|'s|not|one|decent|performance|from|the|cast|and|not|one|clever|line|of|dialogue|. No|amount|of|burning|,|blasting|,|stabbing|,|and|shooting|can|hide|a|weak|script|. It|'s|an|odd|show|,|pregnant|with|moods|,|stillborn|except|as|a|harsh|conceptual|exercise|. Nearly|all|the|fundamentals|you|take|for|granted|in|most|films|are|mishandled|here|. The|Armenian|genocide|deserves|a|more|engaged|and|honest|treatment|. Earnest|yet|curiously|tepid|and|choppy|recycling|in|which|predictability|is|the|only|winner|. Ultimately|this|is|a|frustrating|patchwork|:|an|uneasy|marriage|of|Louis|Begley|'s|source|novel|(|About|Schmidt|)|and|an|old|Payne|screenplay|. The|exploitative|,|clumsily|staged|violence|overshadows|everything|,|including|most|of|the|actors|. We|started|to|wonder|if|...|some|unpaid|intern|had|just|typed|`|Chris|Rock|,|'|`|Anthony|Hopkins|'|and|`|terrorists|'|into|some|Univac-like|script|machine|. Even|when|Crush|departs|from|the|4W|formula|...|it|feels|like|a|glossy|rehash|. More|likely|to|have|you|scratching|your|head|than|hiding|under|your|seat|. Bears|is|even|worse|than|I|imagined|a|movie|ever|could|be|. When|you|find|yourself|rooting|for|the|monsters|in|a|horror|movie|,|you|know|the|picture|is|in|trouble|. This|is|very|much|of|a|mixed|bag|,|with|enough|negatives|to|outweigh|the|positives|. Marinated|in|clichés|and|mawkish|dialogue|. Whether|it|'s|the|worst|movie|of|2002|,|I|ca|n'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|. (|A|)|boldly|stroked|,|luridly|coloured|,|uni-dimensional|nonsense|machine|that|strokes|the|eyeballs|while|it|evaporates|like|so|much|crypt|mist|in|the|brain|. Not|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|.|' Rollerball|IS|as|bad|as|you|think|,|and|worse|than|you|can|imagine|. The|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|. Not|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|. Shame|on|writer\/director|Vicente|Aranda|for|making|a|florid|biopic|about|mad|queens|,|obsessive|relationships|,|and|rampant|adultery|so|dull|. Suffers|from|a|decided|lack|of|creative|storytelling|. Violent|,|vulgar|and|forgettably|entertaining|. Nothing|happens|,|and|it|happens|to|flat|characters|. With|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|. Remember|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|. Blue|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|. This|movie|plays|like|an|extended|dialogue|exercise|in|Retard|101|. What|we|get|in|FearDotCom|is|more|like|something|from|a|bad|Clive|Barker|movie|. In|other|words|,|it|'s|badder|than|bad|. If|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|. A|sloppy|slapstick|throwback|to|long|gone|bottom-of-the-bill|fare|like|The|Ghost|and|Mr.|Chicken|. A|small|independent|film|suffering|from|a|severe|case|of|Hollywood-itis|. Where|the|film|falters|is|in|its|tone|. The|story|alone|could|force|you|to|scratch|a|hole|in|your|head|. Ultimately|,|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|. It|'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|. Feels|more|like|a|rejected|X-Files|episode|than|a|credible|account|of|a|puzzling|real-life|happening|. Some|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|. An|enigmatic|film|that|'s|too|clever|for|its|own|good|,|it|'s|a|conundrum|not|worth|solving|. A|zombie|movie|in|every|sense|of|the|word|--|mindless|,|lifeless|,|meandering|,|loud|,|painful|,|obnoxious|. A|film|that|clearly|means|to|preach|exclusively|to|the|converted|. It|does|n't|take|a|rocket|scientist|to|figure|out|that|this|is|a|Mormon|family|movie|,|and|a|sappy|,|preachy|one|at|that|. Definitely|a|crowd-pleaser|,|but|then|,|so|was|the|Roman|Colosseum|. Certainly|not|a|good|movie|,|but|it|was|n't|horrible|either|. Although|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|. The|result|is|so|tame|that|even|slightly|wised-up|kids|would|quickly|change|the|channel|. It|appears|to|have|been|modeled|on|the|worst|revenge-of-the-nerds|clichés|the|filmmakers|could|dredge|up|. Nothing|but|an|episode|of|Smackdown|! in|period|costume|and|with|a|bigger|budget|. It|takes|you|somewhere|you|'re|not|likely|to|have|seen|before|,|but|beneath|the|exotic|surface|(|and|exotic|dancing|)|it|'s|surprisingly|old-fashioned|. While|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|. It|should|be|interesting|,|it|should|be|poignant|,|it|turns|out|to|be|affected|and|boring|. A|good-looking|but|ultimately|pointless|political|thriller|with|plenty|of|action|and|almost|no|substance|. A|tired|,|predictable|,|bordering|on|offensive|,|waste|of|time|,|money|and|celluloid|. If|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é|. Stealing|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|. This|is|an|insultingly|inept|and|artificial|examination|of|grief|and|its|impacts|upon|the|relationships|of|the|survivors|. Does|anyone|much|think|the|central|story|of|Brendan|Behan|is|that|he|was|a|bisexual|sweetheart|before|he|took|to|drink|? `|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|. The|dialogue|is|cumbersome|,|the|simpering|soundtrack|and|editing|more|so|. Never|decides|whether|it|wants|to|be|a|black|comedy|,|drama|,|melodrama|or|some|combination|of|the|three|. It|has|become|apparent|that|the|franchise|'s|best|years|are|long|past|. Does|what|should|seem|impossible|:|it|makes|serial|killer|Jeffrey|Dahmer|boring|. Do|n't|hate|El|Crimen|del|Padre|Amaro|because|it|'s|anti-Catholic|. Hate|it|because|it|'s|lousy|. ...|better|described|as|a|ghost|story|gone|badly|awry|. Like|a|bad|improvisation|exercise|,|the|superficially|written|characters|ramble|on|tediously|about|their|lives|,|loves|and|the|art|they|'re|struggling|to|create|. The|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|. Competently|directed|but|terminally|cute|drama|. The|big|finish|is|a|bit|like|getting|all|excited|about|a|chocolate|eclair|and|then|biting|into|it|and|finding|the|filling|missing|. Not|just|unlikable|. Disturbing|. Disgusting|. Without|any|redeeming|value|whatsoever|. This|thing|is|virtually|unwatchable|. Those|eternally|devoted|to|the|insanity|of|Black|will|have|an|intermittently|good|time|. Feel|free|to|go|get|popcorn|whenever|he|'s|not|onscreen|. The|self-serious|Equilibrium|makes|its|point|too|well|;|a|movie|,|like|life|,|is|n't|much|fun|without|the|highs|and|lows|. The|work|of|an|exhausted|,|desiccated|talent|who|ca|n't|get|out|of|his|own|way|. The|main|characters|are|simply|named|The|Husband|,|The|Wife|and|The|Kidnapper|,|emphasizing|the|disappointingly|generic|nature|of|the|entire|effort|. In|terms|of|execution|this|movie|is|careless|and|unfocused|. Swims|in|mediocrity|,|sticking|its|head|up|for|a|breath|of|fresh|air|now|and|then|. The|only|type|of|lives|this|glossy|comedy-drama|resembles|are|ones|in|formulaic|mainstream|movies|. The|characters|...|are|paper-thin|,|and|their|personalities|undergo|radical|changes|when|it|suits|the|script|. A|Sha-Na-Na|sketch|punctuated|with|graphic|violence|. The|trouble|is|,|its|filmmakers|run|out|of|clever|ideas|and|visual|gags|about|halfway|through|. Spy-vs|. -|spy|action|flick|with|Antonio|Banderas|and|Lucy|Liu|never|comes|together|. A|so-so|,|made-for-TV|something|posing|as|a|real|movie|. The|only|upside|to|all|of|this|unpleasantness|is|,|given|its|Labor|Day|weekend|upload|,|FearDotCom|should|log|a|minimal|number|of|hits|. Whether|this|is|art|imitating|life|or|life|imitating|art|,|it|'s|an|unhappy|situation|all|around|. An|uneasy|mix|of|run-of-the-mill|raunchy|humor|and|seemingly|sincere|personal|reflection|. A|formula|family|tearjerker|told|with|a|heavy|Irish|brogue|...|accentuating|,|rather|than|muting|,|the|plot|'s|saccharine|thrust|. This|is|Sandler|running|on|empty|,|repeating|what|he|'s|already|done|way|too|often|. This|is|as|lax|and|limp|a|comedy|as|I|'ve|seen|in|a|while|,|a|meander|through|worn-out|material|. Time|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|. The|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|. Aptly|named|,|this|shimmering|,|beautifully|costumed|and|filmed|production|does|n't|work|for|me|. A|preposterously|melodramatic|paean|to|gang-member|teens|in|Brooklyn|circa|1958|. Has|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|''|. Everything|its|title|implies|,|a|standard-issue|crime|drama|spat|out|from|the|Tinseltown|assembly|line|. An|extraordinarily|silly|thriller|. A|rehash|of|every|gangster|movie|from|the|past|decade|. Gaping|plot|holes|sink|this|`|sub|'|-|standard|thriller|and|drag|audience|enthusiasm|to|crush|depth|. Talkiness|is|n't|necessarily|bad|,|but|the|dialogue|frequently|misses|the|mark|. The|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|. The|stunt|work|is|top-notch|;|the|dialogue|and|drama|often|food-spittingly|funny|. The|movie|is|n't|painfully|bad|,|something|to|be|`|fully|experienced|'|;|it|'s|just|tediously|bad|,|something|to|be|fully|forgotten|. Charly|comes|off|as|emotionally|manipulative|and|sadly|imitative|of|innumerable|past|Love|Story|derisions|. What|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|. No|amount|of|good|intentions|is|able|to|overcome|the|triviality|of|the|story|. The|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|. ...|for|all|its|social|and|political|potential|,|State|Property|does|n't|end|up|being|very|inspiring|or|insightful|. A|film|really|has|to|be|exceptional|to|justify|a|three|hour|running|time|,|and|this|is|n't|. Little|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|. The|nonstop|artifice|ultimately|proves|tiresome|,|with|the|surface|histrionics|failing|to|compensate|for|the|paper-thin|characterizations|and|facile|situations|. This|is|a|monumental|achievement|in|practically|every|facet|of|inept|filmmaking|:|joyless|,|idiotic|,|annoying|,|heavy-handed|,|visually|atrocious|,|and|often|downright|creepy|. This|off-putting|French|romantic|comedy|is|sure|to|test|severely|the|indulgence|of|fans|of|Amélie|. overburdened|with|complicated|plotting|and|banal|dialogue Ensemble|movies|,|like|soap|operas|,|depend|on|empathy|. If|there|ai|n't|none|,|you|have|a|problem|. The|Master|of|Disguise|falls|under|the|category|of|`|should|have|been|a|sketch|on|Saturday|Night|Live|.|' Yet|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|. Koepp|'s|screenplay|is|n't|nearly|surprising|or|clever|enough|to|sustain|a|reasonable|degree|of|suspense|on|its|own|. Is|it|really|an|advantage|to|invest|such|subtlety|and|warmth|in|an|animatronic|bear|when|the|humans|are|acting|like|puppets|? More|successful|at|relating|history|than|in|creating|an|emotionally|complex|,|dramatically|satisfying|heroine Clumsy|,|obvious|,|preposterous|,|the|movie|will|likely|set|the|cause|of|woman|warriors|back|decades|. It|'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|. A|banal|,|virulently|unpleasant|excuse|for|a|romantic|comedy|. The|drama|discloses|almost|nothing|. A|minor-league|soccer|remake|of|The|Longest|Yard|. Belongs|in|the|too-hot-for-TV|direct-to-video\/DVD|category|,|and|this|is|why|I|have|given|it|a|one-star|rating|. As|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|. A|dim-witted|and|lazy|spin-off|of|the|Animal|Planet|documentary|series|,|Crocodile|Hunter|is|entertainment|opportunism|at|its|most|glaring|. There|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|. Even|fans|of|Ismail|Merchant|'s|work|,|I|suspect|,|would|have|a|hard|time|sitting|through|this|one|. It|'s|really|just|another|silly|Hollywood|action|film|,|one|among|a|multitude|of|simple-minded|,|yahoo-ing|death|shows|. It|'s|not|a|particularly|good|film|,|but|neither|is|it|a|monsterous|one|. The|world|needs|more|filmmakers|with|passionate|enthusiasms|like|Martin|Scorsese|. But|it|does|n't|need|Gangs|of|New|York|. Enchanted|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|. Harry|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|. Sade|achieves|the|near-impossible|:|It|turns|the|Marquis|de|Sade|into|a|dullard|. (|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|. One|of|the|most|plain|,|unimaginative|romantic|comedies|I|'ve|ever|seen|. Though|there|'s|a|clarity|of|purpose|and|even-handedness|to|the|film|'s|direction|,|the|drama|feels|rigged|and|sluggish|. Unfortunately|,|the|experience|of|actually|watching|the|movie|is|less|compelling|than|the|circumstances|of|its|making|. Unless|there|are|zoning|ordinances|to|protect|your|community|from|the|dullest|science|fiction|,|Impostor|is|opening|today|at|a|theater|near|you|. It|should|be|doing|a|lot|of|things|,|but|does|n't|. Chen|films|the|resolutely|downbeat|Smokers|Only|with|every|indulgent|,|indie|trick|in|the|book|. ...|a|rather|bland|affair|. Far-fetched|premise|,|convoluted|plot|,|and|thematic|mumbo|jumbo|about|destiny|and|redemptive|love|. The|movie|tries|to|be|ethereal|,|but|ends|up|seeming|goofy|. I|was|hoping|that|it|would|be|sleazy|and|fun|,|but|it|was|neither|. Harris|is|supposed|to|be|the|star|of|the|story|,|but|comes|across|as|pretty|dull|and|wooden|. Soulless|and|--|even|more|damning|--|virtually|joyless|,|XXX|achieves|near|virtuosity|in|its|crapulence|. A|boring|masquerade|ball|where|normally|good|actors|,|even|Kingsley|,|are|made|to|look|bad|. All|the|Queen|'s|Men|is|a|throwback|war|movie|that|fails|on|so|many|levels|,|it|should|pay|reparations|to|viewers|. The|filmmakers|keep|pushing|the|jokes|at|the|expense|of|character|until|things|fall|apart|. Rather|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|. Mariah|Carey|gives|us|another|peek|at|some|of|the|magic|we|saw|in|Glitter|here|in|Wisegirls|. It|'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|. I|suspect|that|you|'ll|be|as|bored|watching|Morvern|Callar|as|the|characters|are|in|it|. If|you|go|,|pack|your|knitting|needles|. The|lead|actors|share|no|chemistry|or|engaging|charisma|. We|do|n't|even|like|their|characters|. Some|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|. The|movie|does|n't|generate|a|lot|of|energy|. It|is|dark|,|brooding|and|slow|,|and|takes|its|central|idea|way|too|seriously|. This|feature|is|about|as|necessary|as|a|hole|in|the|head Spectators|will|indeed|sit|open-mouthed|before|the|screen|,|not|screaming|but|yawning|. It|feels|like|very|light|Errol|Morris|,|focusing|on|eccentricity|but|failing|,|ultimately|,|to|make|something|bigger|out|of|its|scrapbook|of|oddballs|. A|period|story|about|a|Catholic|boy|who|tries|to|help|a|Jewish|friend|get|into|heaven|by|sending|the|audience|straight|to|hell|. The|premise|itself|is|just|SOOOOO|tired|. Pair|that|with|really|poor|comedic|writing|...|and|you|'ve|got|a|huge|mess|. Proves|a|lovely|trifle|that|,|unfortunately|,|is|a|little|too|in|love|with|its|own|cuteness|. Did|we|really|need|a|remake|of|``|Charade|?|'' Some|movies|can|get|by|without|being|funny|simply|by|structuring|the|scenes|as|if|they|were|jokes|:|a|setup|,|delivery|and|payoff|. Stealing|Harvard|ca|n't|even|do|that|much|. Each|scene|immediately|succumbs|to|gravity|and|plummets|to|earth|. The|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|. I|spied|with|my|little|eye|...|a|mediocre|collection|of|cookie-cutter|action|scenes|and|occasionally|inspired|dialogue|bits Entertains|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|. The|satire|is|just|too|easy|to|be|genuinely|satisfying|. Less|funny|than|it|should|be|and|less|funny|than|it|thinks|it|is|. an|``|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|. A|feeble|Tootsie|knockoff|. An|awful|movie|that|will|only|satisfy|the|most|emotionally|malleable|of|filmgoers|. ...|the|story|is|far-flung|,|illogical|,|and|plain|stupid|. The|very|simple|story|seems|too|simple|and|the|working|out|of|the|plot|almost|arbitrary|. An|allegory|concerning|the|chronically|mixed|signals|African|American|professionals|get|about|overachieving|could|be|intriguing|,|but|the|supernatural|trappings|only|obscure|the|message|. A|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|. One|key|problem|with|these|ardently|Christian|storylines|is|that|there|is|never|any|question|of|how|things|will|turn|out|. Essentially|,|the|film|is|weak|on|detail|and|strong|on|personality A|relentless|,|bombastic|and|ultimately|empty|World|War|II|action|flick|. (|Hell|is|)|looking|down|at|your|watch|and|realizing|Serving|Sara|is|n't|even|halfway|through|. Too|long|,|and|larded|with|exposition|,|this|somber|cop|drama|ultimately|feels|as|flat|as|the|scruffy|sands|of|its|titular|community|. Leaves|viewers|out|in|the|cold|and|undermines|some|phenomenal|performances|. ...|a|ho-hum|affair|,|always|watchable|yet|hardly|memorable|. Swiftly|deteriorates|into|a|terribly|obvious|melodrama|and|rough-hewn|vanity|project|for|lead|actress|Andie|MacDowell|. The|histrionic|muse|still|eludes|Madonna|and|,|playing|a|charmless|witch|,|she|is|merely|a|charmless|witch|. You|have|no|affinity|for|most|of|the|characters|. Nothing|about|them|is|attractive|. What|they|see|in|each|other|also|is|difficult|to|fathom|. Diaz|,|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|. A|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|. An|inept|,|tedious|spoof|of|'70s|kung|fu|pictures|,|it|contains|almost|enough|chuckles|for|a|three-minute|sketch|,|and|no|more|. It|'s|a|mystery|how|the|movie|could|be|released|in|this|condition|. Absolutely|(|and|unintentionally|)|terrifying|. Eckstraordinarily|lame|and|Severely|boring|. Eight|Legged|Freaks|falls|flat|as|a|spoof|. No|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|. You|'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|. `|Dragonfly|'|dwells|on|crossing-over|mumbo|jumbo|,|manipulative|sentimentality|,|and|sappy|dialogue|. In|his|determination|to|lighten|the|heavy|subject|matter|,|Silberling|also|,|to|a|certain|extent|,|trivializes|the|movie|with|too|many|nervous|gags|and|pratfalls|. Blade|II|has|a|brilliant|director|and|charismatic|star|,|but|it|suffers|from|rampant|vampire|devaluation|. Veers|uncomfortably|close|to|pro-Serb|propaganda|. Movies|like|High|Crimes|flog|the|dead|horse|of|surprise|as|if|it|were|an|obligation|. How|about|surprising|us|by|trying|something|new|? Final|verdict|:|You|'ve|seen|it|all|before|. Throwing|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|. If|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|.|'' Further|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|. You|'ll|trudge|out|of|the|theater|feeling|as|though|you|rode|the|Zipper|after|eating|a|corn|dog|and|an|extra-large|cotton|candy|. The|movie|is|a|little|tired|;|maybe|the|original|inspiration|has|run|its|course|. This|will|go|on|so|long|as|there|are|moviegoers|anxious|to|see|strange|young|guys|doing|strange|guy|things|. A|full-frontal|attack|on|audience|patience|. Any|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|. It|'s|a|big|idea|,|but|the|film|itself|is|small|and|shriveled|. Debut|effort|by|``|Project|Greenlight|''|winner|is|sappy|and|amateurish|. One|gets|the|impression|the|creators|of|Do|n't|Ask|Do|n't|Tell|laughed|a|hell|of|a|lot|at|their|own|jokes|. Too|bad|none|of|it|is|funny|. The|cast|has|a|high|time|,|but|de|Broca|has|little|enthusiasm|for|such|antique|pulp|. The|film|,|like|Jimmy|'s|routines|,|could|use|a|few|good|laughs|. The|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|. Purports|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|. ...|in|the|pile|of|useless|actioners|from|MTV|schmucks|who|do|n't|know|how|to|tell|a|story|for|more|than|four|minutes|. Though|it|was|made|with|careful|attention|to|detail|and|is|well-acted|by|James|Spader|and|Maggie|Gyllenhaal|,|I|felt|disrespected|. Humor|in|I|Spy|is|so|anemic|. The|film|is|strictly|routine|. Skillful|as|he|is|,|Mr.|Shyamalan|is|undone|by|his|pretensions|. While|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|. In|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|. It|shares|the|first|two|films|'|loose-jointed|structure|,|but|laugh-out-loud|bits|are|few|and|far|between|. The|Santa|Clause|2|is|a|barely|adequate|babysitter|for|older|kids|,|but|I|'ve|got|to|give|it|thumbs|down|. You|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|. Barney|throws|away|the|goodwill|the|first|half|of|his|movie|generates|by|orchestrating|a|finale|that|is|impenetrable|and|dull|. If|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|. We|get|the|comedy|we|settle|for|. The|uneven|movie|does|have|its|charms|and|its|funny|moments|but|not|quite|enough|of|them|. Two|hours|of|sepia-tinted|heavy|metal|images|and|surround|sound|effects|of|people|moaning|. A|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|. The|campy|results|make|Mel|Brooks|'|Borscht|Belt|schtick|look|sophisticated|. Its|appeal|will|probably|limited|to|LDS|Church|members|and|undemanding|armchair|tourists|. The|Hanukkah|spirit|seems|fried|in|pork|. Cherish|would|'ve|worked|a|lot|better|had|it|been|a|short|film|. Manipulative|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|. Hey|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|. True|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|. Does|n't|come|close|to|justifying|the|hype|that|surrounded|its|debut|at|the|Sundance|Film|Festival|two|years|ago|. The|plot|is|paper-thin|and|the|characters|are|n't|interesting|enough|to|watch|them|go|about|their|daily|activities|for|two|whole|hours|. Kaufman|'s|script|is|never|especially|clever|and|often|is|rather|pretentious|. The|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|. Queen|of|the|Damned|is|too|long|with|too|little|going|on|. It|collapses|when|Mr.|Taylor|tries|to|shift|the|tone|to|a|thriller|'s|rush|. Any|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|. ...|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|. The|Rules|of|Attraction|gets|us|too|drunk|on|the|party|favors|to|sober|us|up|with|the|transparent|attempts|at|moralizing|. Though|there|are|many|tense|scenes|in|Trapped|,|they|prove|more|distressing|than|suspenseful|. In|this|film|we|at|least|see|a|study|in|contrasts|;|the|wide|range|of|one|actor|,|and|the|limited|range|of|a|comedian|. Feels|strangely|hollow|at|its|emotional|core|. You|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|. The|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|. This|director|'s|cut|--|which|adds|51|minutes|--|takes|a|great|film|and|turns|it|into|a|mundane|soap|opera|. Characterisation|has|been|sacrificed|for|the|sake|of|spectacle|. the|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|.|'' It|'s|a|movie|that|ends|with|Truckzilla|,|for|cryin|'|out|loud|. If|that|does|n't|clue|you|in|that|something|'s|horribly|wrong|,|nothing|will|. Director|Tom|Shadyac|and|star|Kevin|Costner|glumly|mishandle|the|story|'s|promising|premise|of|a|physician|who|needs|to|heal|himself|. It|'s|difficult|to|imagine|that|a|more|confused|,|less|interesting|and|more|sloppily|made|film|could|possibly|come|down|the|road|in|2002|. Like|the|Tuck|family|themselves|,|this|movie|just|goes|on|and|on|and|on|and|on As|pedestrian|as|they|come|. A|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|. It|'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|. Put|it|somewhere|between|Sling|Blade|and|South|of|Heaven|,|West|of|Hell|in|the|pantheon|of|Billy|Bob|'s|body|of|work|. More|intellectually|scary|than|dramatically|involving|. An|inconsequential|,|barely|there|bit|of|piffle|. The|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|. As|saccharine|as|it|is|disposable|. You|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|. The|metaphors|are|provocative|,|but|too|often|,|the|viewer|is|left|puzzled|by|the|mechanics|of|the|delivery|. Very|much|a|home|video|,|and|so|devoid|of|artifice|and|purpose|that|it|appears|not|to|have|been|edited|at|all|. Too|much|power|,|not|enough|puff|. The|attempt|to|build|up|a|pressure|cooker|of|horrified|awe|emerges|from|the|simple|fact|that|the|movie|has|virtually|nothing|to|show|. It|'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|. A|cellophane-pop|remake|of|the|punk|classic|Ladies|and|Gentlemen|,|The|Fabulous|Stains|...|Crossroads|is|never|much|worse|than|bland|or|better|than|inconsequential|. Muddled|,|trashy|and|incompetent For|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|. Narc|is|all|menace|and|atmosphere|. Though|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|. Despite|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|. It|'s|tough|to|be|startled|when|you|'re|almost|dozing|. his|(|Nelson|'s|)|screenplay|needs|some|serious|re-working|to|show|more|of|the|dilemma|,|rather|than|have|his|characters|stage|shouting|matches|about|it|. It|'s|so|downbeat|and|nearly|humorless|that|it|becomes|a|chore|to|sit|through|--|despite|some|first-rate|performances|by|its|lead|. A|terrible|movie|that|some|people|will|nevertheless|find|moving|. There|are|many|definitions|of|`|time|waster|'|but|this|movie|must|surely|be|one|of|them|. As|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|. The|thing|looks|like|a|made-for-home-video|quickie|. Enigma|is|well-made|,|but|it|'s|just|too|dry|and|too|placid|. ``|Sweet|Home|Alabama|''|is|what|it|is|--|a|nice|,|harmless|date|film|... One|of|the|best|,|most|understated|performances|of|(|Jack|Nicholson|'s|)|career|. The|Dangerous|Lives|of|Altar|Boys|'|take|on|adolescence|feels|painfully|true|. It|'s|a|masterpiece|. It|may|not|be|``|Last|Tango|in|Paris|''|but|... They|crush|each|other|under|cars|,|throw|each|other|out|windows|,|electrocute|and|dismember|their|victims|in|full|consciousness|. And|we|do|n't|avert|our|eyes|for|a|moment|. Charming|and|funny|(|but|ultimately|silly|)|movie|. Third|time|'s|the|charm|...|yeah|,|baby|! A|pleasant|,|if|forgettable|,|romp|of|a|film|. By|the|end|of|the|movie|,|you|'re|definitely|convinced|that|these|women|are|spectacular|. Birot|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|. `|Stock|up|on|silver|bullets|for|director|Neil|Marshall|'s|intense|freight|train|of|a|film|.|' The|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|. As|a|film|director|,|LaBute|continues|to|improve|. Will|warm|your|heart|without|making|you|feel|guilty|about|it|. Catch|it|...|if|you|can|! Worse|than|`|Silence|of|the|Lambs|'|better|than|`|Hannibal|' American|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|. `|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 It|'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|. Alternates|between|deadpan|comedy|and|heartbreaking|loneliness|and|is|n't|afraid|to|provoke|introspection|in|both|its|characters|and|its|audience|. The|script|is|smart|,|not|cloying|. Visually|,|`|Santa|Clause|2|'|is|wondrously|creative|. A|bittersweet|contemporary|comedy|about|benevolent|deception|,|which|,|while|it|may|not|rival|the|filmmaker|'s|period|pieces|,|is|still|very|much|worth|seeing|. One|fantastic|(|and|educational|)|documentary|. An|ambitious|`|what|if|?|' that|works|. ``|The|Dangerous|Lives|of|Altar|Boys|''|has|flaws|,|but|it|also|has|humor|and|heart|and|very|talented|young|actors Nice|piece|of|work|. `|Stock|up|on|silver|bullets|for|director|Neil|Marshall|'s|intense|freight|train|of|a|film|.|' It|'s|funny|,|as|the|old|saying|goes|,|because|it|'s|true|. Though|the|film|is|static|,|its|writer-director|'s|heart|is|in|the|right|place|,|his|plea|for|democracy|and|civic|action|laudable|. The|filmmaker|'s|heart|is|in|the|right|place|... From|blushing|to|gushing|--|Imamura|squirts|the|screen|in|`|Warm|Water|Under|a|Red|Bridge|' Apart|from|anything|else|,|this|is|one|of|the|best-sustained|ideas|I|have|ever|seen|on|the|screen|. Not|a|schlocky|creature|feature|but|something|far|more|stylish|and|cerebral|--|and|,|hence|,|more|chillingly|effective|. Stupid|,|infantile|,|redundant|,|sloppy|,|over-the-top|,|and|amateurish|. Yep|,|it|'s|``|Waking|up|in|Reno|.|'' Go|back|to|sleep|. I|did|n't|laugh|. I|did|n't|smile|. I|survived|. The|worst|film|of|the|year|. In|the|book-on-tape|market|,|the|film|of|``|The|Kid|Stays|in|the|Picture|''|would|be|an|abridged|edition A|sour|attempt|at|making|a|Farrelly|Brothers-style|,|down-and-dirty|laugher|for|the|female|set|. Eisenstein|lacks|considerable|brio|for|a|film|about|one|of|cinema|'s|directorial|giants|. Taken|as|a|whole|,|The|Tuxedo|does|n't|add|up|to|a|whole|lot|. This|is|no|``|Waterboy|!|'' Something|has|been|lost|in|the|translation|...|another|routine|Hollywood|frightfest|in|which|the|slack|execution|italicizes|the|absurdity|of|the|premise|. The|result|is|an|`|action|film|'|mired|in|stasis|. ...|a|movie|that|,|quite|simply|,|should|n't|have|been|made|. By|turns|pretentious|,|fascinating|,|ludicrous|,|provocative|and|vainglorious|. I|ca|n't|recommend|it|. But|it|'s|surprisingly|harmless|. What|'s|next|? The|Porky|'s|Revenge|:|Ultimate|Edition|? The|script|is|a|dim-witted|pairing|of|teen-speak|and|animal|gibberish|. There|'s|no|real|reason|to|see|it|,|and|no|real|reason|not|to|. Is|``|Ballistic|''|worth|the|price|of|admission|? Absolutely|not|. It|sucked|. Would|I|see|it|again|? Please|see|previous|answer|. It|'s|exactly|what|you|'d|expect|. ``|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|. A|prison|comedy|that|never|really|busts|out|of|its|comfy|little|cell|. The|movie|is|obviously|a|labour|of|love|so|Howard|appears|to|have|had|free|rein|to|be|as|pretentious|as|he|wanted|. This|is|n't|a|movie|;|it|'s|a|symptom|. What|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|. If|only|it|were|,|well|,|funnier|. The|script|? Please|. Does|n't|add|up|to|much|. One|of|the|worst|movies|of|the|year|. A|complete|waste|of|time|. Long|before|it|'s|over|,|you|'ll|be|thinking|of|51|ways|to|leave|this|loser|. One|of|the|worst|movies|of|the|year|. ...|Watching|it|was|painful|. The|cinematic|equivalent|of|patronizing|a|bar|favored|by|pretentious|,|untalented|artistes|who|enjoy|moaning|about|their|cruel|fate|. Spiderman|ROCKS A|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|. An|imaginative|comedy\/thriller|. Thoroughly|enjoyable|. (|A|)|rare|,|beautiful|film|. Family|fare|. Boisterous|,|heartfelt|comedy|. (|An|)|hilarious|romantic|comedy|. An|exhilarating|experience|. Never|(|sinks|)|into|exploitation|. Compellingly|watchable|. Troubling|and|powerful|. Often|hilarious|. A|modest|masterpiece|. Never|once|predictable|. An|uplifting|,|near-masterpiece|. Warm|and|exotic|. ...|a|true|delight|. A|true|pleasure|. Polished|,|well-structured|film|. Sexy|and|romantic|. Psychologically|savvy|. delightfully|rendered Fun|and|nimble|. Funny|and|touching|. Serious|and|thoughtful|. It|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|. One-of-a-kind|near-masterpiece|. Lightweight|but|appealing|. Highly|engaging|. Feral|and|uncomfortable|. A|gripping|drama|. Beautifully|produced|. Smart|and|taut|. Highly|watchable|stuff|. Psychologically|revealing|. A|fast|paced|and|suspenseful|Argentinian|thriller|about|the|shadow|side|of|play|. ...|wise|and|elegiac|... Spare|yet|audacious|... Surprisingly|insightful An|intoxicating|experience|. Reassuring|,|retro|uplifter|. Visually|captivating|. Lavishly|,|exhilaratingly|tasteless|. Touché|! An|impressive|hybrid|. A|tasty|masala|. Refreshing|. Featherweight|romantic|comedy|has|a|few|nice|twists|in|a|standard|plot|and|the|charisma|of|Hugh|Grant|and|Sandra|Bullock|. Poignant|and|funny|. See|it|. Debate|it|. Remember|it|. Morvern|rocks|. Intelligent|and|moving|. Genuinely|unnerving|. A|compelling|film|. Deliciously|slow|. A|riveting|documentary|. An|enjoyable|experience|. A|good|thriller|. A|glorious|mess|. Neatly|constructed|thriller|. Intimate|and|panoramic|. Exciting|documentary|. Good|,|solid|storytelling|. Infidelity|drama|is|nicely|shot|,|well-edited|and|features|a|standout|performance|by|Diane|Lane|. Audacious-impossible|yet|compelling|... A|muted|freak-out Moving|and|vibrant|. ...|quite|endearing|. Harmless|fun|. Good-naturedly|cornball|sequel|. Oddly|compelling|. Witless|but|watchable|. Mr.|Deeds|is|sure|to|give|you|a|lot|of|laughs|in|this|simple|,|sweet|and|romantic|comedy|. Hard|to|resist|. A|true-blue|delight|. A|fun|ride|. Weird|. Rewarding|. Sleek|and|arty|. Fantastic|! A|thought-provoking|picture|. A|stylish|thriller|. Almost|peerlessly|unsettling|. Delirious|fun|. Exciting|and|well-paced|. Really|quite|funny|. A|well-executed|spy-thriller|. Idiotic|and|ugly|. A|funny|film|. (|A|)|satisfying|niblet|. Poetic|,|heartbreaking|. Formuliac|,|but|fun|. Feels|untidily|honest|. ``|Red|Dragon|''|never|cuts|corners|. Full|of|surprises|. Quietly|engaging|. Dense|,|exhilarating|documentary|. a|joyous|occasion (|An|)|absorbing|documentary|. A|genuine|mind-bender|. Great|character|interaction|. Intriguing|and|stylish|. Many|insightful|moments|. Everything|is|off|. Earnest|but|heavy-handed|. One|lousy|movie|. ...|hypnotically|dull|. Calculated|swill|. Thoroughly|awful|. Truly|terrible|. Fluffy|and|disposible|. By-the-numbers|yarn|. Aan|opportunity|wasted|. Storytelling|feels|slight|. Bad|company|. Bad|movie|. Just|plain|bad|. (|A|)|soulless|,|stupid|sequel|... A|high-minded|snoozer|. Execrable|. Amazingly|dopey|. Banal|and|predictable|. Crikey|indeed|. Brisk|hack|job|. ...|the|maudlin|way|its|story|unfolds|suggests|a|director|fighting|against|the|urge|to|sensationalize|his|material|. ...|bibbidy-bobbidi-bland|. Obvious|. Its|one-sidedness|...|flirts|with|propaganda|. ...|a|pretentious|mess|... (|A|)|rather|thinly-conceived|movie|. So-so|entertainment|. Punitively|affirmational|parable|. Decent|but|dull|. Thin|period|piece|. (|A|)|stuporously|solemn|film|. Well-meant|but|unoriginal|. Odd|and|weird|. Cinematic|poo|. ...|stale|and|uninspired|. A|dreary|movie|. Pompous|and|garbled|. Utter|mush|...|conceited|pap|. Well-meaning|but|inert|. ...|overly|melodramatic|... Extremely|bad|. Shrewd|but|pointless|. Sluggish|,|tonally|uneven|. Generic|thriller|junk|. Teens|only|. A|non-mystery|mystery|. What|an|embarrassment|. A|noble|failure|. Woefully|pretentious|. ...|irritating|soul-searching|garbage|. A|relative|letdown|. Warmed-over|hash|. A|puzzling|experience|. Stale|,|futile|scenario|. Aggravating|and|tedious|. Lacks|depth|. under-rehearsed|and|lifeless Laughably|,|irredeemably|awful|. Unwieldy|contraption|. Overwrought|,|melodramatic|bodice-ripper|. An|awful|snooze|. Just|plain|silly|. Feeble|comedy|. ...|salaciously|simplistic|. Shallow|. A|less-than-thrilling|thriller|. Disjointed|parody|. ...|silly|humbuggery|... Eh|. Black-and-white|and|unrealistic|. Two-bit|potboiler|. (|U|)|nrelentingly|stupid|. Painfully|padded|. Anemic|,|pretentious|. Grating|and|tedious|. It|bites|hard|. (|A|)|mess|. Dramatically|lackluster|. Stay|away|. Far|away|. ...|a|pretentious|mess|... Predictably|soulless|techno-tripe|. Arty|gay|film|. Incoherence|reigns|. A|half-assed|film|. Abysmally|pathetic ...|unbearably|lame|. Bland|but|harmless|. Dense|and|enigmatic|...|elusive|...|stagy|and|stilted (|L|)|ame|and|unnecessary|. A|dreary|indulgence|. (|A|)|crushing|disappointment|. Tends|to|plod|. A|major|waste|...|generic|. ...|a|confusing|drudgery|. A|well-crafted|letdown|. Boring|and|meandering|. Less|than|fresh|. A|lame|comedy|. A|reality-snubbing|hodgepodge|. Mildly|amusing|. Fairly|run-of-the-mill|. Mildly|entertaining|. Terrible|. Degenerates|into|hogwash|. Meandering|and|confusing|. Crummy|. An|opportunity|missed|. Wishy-washy|. Inconsequential|road-and-buddy|pic|. Insufferably|naive|. Ill-considered|,|unholy|hokum|. Amazingly|lame|. (|A|)|slummer|. (|A|)|poorly|executed|comedy|. ...|really|horrible|drek|. An|intriguing|near-miss|. Flat|,|misguided|comedy|. Predictably|melodramatic|. Rashomon-for-dipsticks|tale|. Bearable|. Barely|. Staggeringly|dreadful|romance|. Well-made|but|mush-hearted|. A|real|snooze|. No|surprises|. We|'ve|seen|the|hippie-turned-yuppie|plot|before|,|but|there|'s|an|enthusiastic|charm|in|Fire|that|makes|the|formula|fresh|again|. Her|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|. In|this|case|zero|. ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/STree.txt ================================================ 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 71|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 6|6|5|5|7|7|0 40|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 42|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 50|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 16|14|13|13|12|10|10|11|17|11|12|15|14|15|16|17|0 39|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 40|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 13|12|11|8|8|9|10|9|10|11|12|13|0 25|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 29|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 25|24|22|21|21|19|16|15|15|17|14|14|20|18|16|17|18|19|20|23|22|23|24|25|0 47|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 17|16|13|12|12|14|11|11|18|19|15|13|14|15|16|17|18|19|0 23|22|21|19|17|17|16|14|14|13|13|20|15|15|16|18|18|19|20|21|22|23|0 46|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 11|9|8|8|7|7|10|9|10|11|0 12|12|11|11|10|9|9|15|10|14|13|13|14|15|0 31|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 20|18|18|17|15|14|14|13|12|12|21|13|16|15|16|17|19|19|20|21|0 16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0 72|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 29|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 43|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 29|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 16|16|15|14|11|11|10|10|13|12|12|13|14|15|17|17|0 25|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 36|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 45|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 40|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 24|23|22|21|20|19|14|14|15|16|17|18|25|15|16|17|18|19|20|21|22|23|24|25|0 34|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 9|9|7|7|8|11|8|10|10|11|0 56|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 64|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 32|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 35|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 24|24|22|21|20|19|18|17|16|15|14|14|23|15|16|17|18|19|20|21|22|23|25|25|0 82|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 42|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 25|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 39|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 42|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 26|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 31|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 34|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 55|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 25|23|21|20|20|19|18|16|16|15|14|14|24|15|17|17|18|19|22|21|22|23|24|25|0 44|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 14|11|11|12|10|9|9|15|10|13|12|13|14|15|0 72|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 15|14|14|13|11|11|10|10|17|12|12|13|16|15|16|17|0 24|23|22|21|20|19|18|18|17|15|15|14|14|16|16|17|25|19|20|21|22|23|24|25|0 38|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 20|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0 42|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 46|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 40|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 29|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 72|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 36|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 15|13|13|10|9|9|11|12|10|11|12|14|14|15|0 62|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 20|19|18|18|21|16|16|15|14|13|13|23|14|15|17|17|22|19|20|21|22|23|0 27|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 42|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 41|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 38|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 22|21|20|20|19|17|16|14|14|15|13|13|18|15|16|17|18|19|23|21|22|23|0 45|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 34|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 44|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 47|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 10|10|11|9|8|8|13|9|12|11|12|13|0 46|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 31|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 38|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 43|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 7|5|5|6|6|7|0 13|13|12|11|11|9|9|10|10|15|12|14|14|15|0 16|15|15|14|13|10|10|11|12|11|12|13|14|17|16|17|0 43|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 21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0 39|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 47|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 49|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 47|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 31|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 36|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 29|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 36|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 56|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 44|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 36|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 75|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 15|15|14|13|13|10|10|11|12|11|12|17|14|16|16|17|0 72|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 40|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 66|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 30|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 42|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 35|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 42|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 13|11|11|10|9|8|8|9|10|12|12|13|0 43|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 27|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 23|22|22|24|20|18|18|17|16|14|14|15|21|15|16|17|19|19|20|21|25|23|24|25|0 49|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 64|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 45|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 34|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 25|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 44|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 42|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 61|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 18|17|17|16|15|14|14|13|12|12|21|13|20|15|16|19|18|19|20|21|0 68|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 18|12|12|13|14|15|11|11|17|19|16|13|14|15|16|17|18|19|0 57|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 25|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 42|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 65|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 10|8|8|7|7|11|9|9|10|11|0 48|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 17|16|15|14|14|13|11|11|12|19|12|13|18|15|16|17|18|19|0 49|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 27|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 54|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 76|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 13|11|11|10|8|8|9|9|10|12|12|13|0 34|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 47|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 12|11|11|9|8|8|10|9|10|13|12|13|0 48|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 29|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 47|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 34|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 49|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 11|9|8|7|7|10|8|9|10|11|0 40|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 34|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 67|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 28|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 37|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 23|21|19|18|18|17|14|14|13|13|16|22|15|15|16|17|20|19|20|21|22|23|0 13|11|10|9|8|8|12|9|10|11|12|13|0 17|15|14|14|12|12|10|10|11|11|13|13|16|15|16|17|0 14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0 31|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 19|18|14|14|15|16|12|12|11|11|13|13|17|15|16|17|18|19|0 32|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 52|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 47|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 37|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 60|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 18|18|15|15|13|12|12|11|11|17|14|13|14|16|16|17|19|19|0 57|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 67|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 30|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 28|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 37|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 62|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 37|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 30|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 35|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 45|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 13|11|10|9|8|8|12|9|10|11|12|13|0 51|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 60|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 38|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 34|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 28|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 37|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 106|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 37|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 8|6|6|7|9|7|8|9|0 80|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 73|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 22|21|21|20|19|18|18|17|16|15|14|14|25|15|16|17|24|19|20|23|22|23|24|25|0 37|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 55|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 45|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 32|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 32|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 29|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 42|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 37|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 14|13|11|11|10|10|9|9|15|12|12|13|14|15|0 23|21|16|16|17|15|15|19|14|13|13|22|14|20|18|17|18|19|20|21|22|23|0 25|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 49|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 64|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 22|21|20|19|18|17|17|16|15|15|14|14|25|24|16|23|18|19|20|21|22|23|24|25|0 27|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 8|6|6|7|9|7|8|9|0 27|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 31|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 17|16|16|15|14|13|13|11|11|12|12|19|14|15|18|17|18|19|0 53|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 36|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 31|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 58|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 53|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 10|7|7|8|9|11|8|9|10|11|0 29|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 57|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 13|11|9|9|8|8|12|10|10|11|12|13|0 42|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 31|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 37|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 15|13|12|11|9|9|10|14|10|11|12|13|14|15|0 16|15|14|12|12|13|10|10|11|11|17|13|14|15|16|17|0 42|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 30|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 27|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 44|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 31|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 56|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 49|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 47|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 41|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 52|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 36|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 28|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 16|12|12|13|10|10|11|15|17|11|14|13|14|15|16|17|0 24|24|22|21|19|18|18|17|15|15|14|14|23|16|16|17|20|19|20|21|22|23|25|25|0 47|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 28|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 76|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 42|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 43|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 32|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 13|13|14|15|12|12|10|10|11|11|17|16|14|15|16|17|0 31|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 67|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 20|20|21|18|18|17|16|13|13|14|15|23|14|15|16|17|19|19|22|21|22|23|0 56|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 16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0 26|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 52|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 17|15|14|13|11|11|10|10|16|12|12|13|14|15|16|17|0 51|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 32|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 5|5|6|7|6|7|0 62|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 37|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 14|14|11|11|12|10|9|9|10|13|12|13|15|15|0 51|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 23|19|19|20|18|17|15|15|14|13|13|22|14|16|16|17|18|21|20|21|22|23|0 73|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 8|6|6|7|9|7|8|9|0 29|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 27|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 22|22|21|20|20|19|19|18|16|14|14|15|17|15|16|17|18|25|24|21|23|23|24|25|0 52|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 13|12|12|14|10|9|9|11|10|11|15|13|14|15|0 27|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 44|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 59|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 42|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 23|19|18|17|17|20|16|15|14|13|13|22|14|15|16|21|18|19|20|21|22|23|0 84|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 13|10|10|9|8|8|12|9|11|11|12|13|0 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 25|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 63|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 31|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 13|13|12|11|11|10|9|9|10|15|12|14|14|15|0 25|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 19|18|17|16|15|15|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0 59|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 39|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 65|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 45|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 41|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 24|24|22|19|18|17|16|16|20|15|14|14|23|15|21|17|18|19|20|21|22|23|25|25|0 21|18|18|17|17|20|16|14|14|13|13|23|15|15|16|22|19|19|20|21|22|23|0 55|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 33|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 24|24|22|19|19|20|18|18|17|16|15|14|14|15|16|17|23|21|20|21|22|23|25|25|0 62|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 27|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 7|5|5|6|6|7|0 74|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 33|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 43|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 56|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 39|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 27|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 37|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 75|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 21|21|20|20|18|16|15|15|14|13|13|19|14|17|16|17|18|19|23|22|22|23|0 57|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 39|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 72|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 41|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 56|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 9|8|7|6|6|7|8|9|0 45|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 19|18|17|16|16|15|14|13|12|12|21|13|14|15|20|17|18|19|20|21|0 33|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 63|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 45|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 48|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 16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0 25|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 73|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 50|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 53|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 17|17|18|19|14|14|15|13|12|12|21|13|16|15|16|20|18|19|20|21|0 32|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 52|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 32|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0 23|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 37|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 33|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 34|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 43|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 15|13|11|9|9|10|12|14|10|11|12|13|14|15|0 36|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 53|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 49|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 45|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 33|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 79|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 45|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 31|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 35|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 23|21|20|19|19|22|18|17|16|15|15|14|14|25|16|17|18|24|20|21|22|23|24|25|0 6|5|5|7|6|7|0 37|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 33|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 83|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 41|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 35|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 13|12|11|10|9|8|8|9|10|11|12|13|0 34|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 31|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 53|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 36|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 13|10|10|11|8|8|9|9|12|11|12|13|0 41|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 32|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 23|22|22|21|19|19|18|16|16|15|14|14|25|15|17|17|18|20|20|21|24|23|24|25|0 13|13|11|11|10|9|9|15|10|12|12|14|14|15|0 11|9|8|7|7|10|8|9|10|11|0 15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0 27|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 16|15|14|14|13|12|12|11|11|19|18|13|17|15|16|17|18|19|0 42|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 49|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 15|15|13|12|12|11|10|10|17|11|14|13|14|16|16|17|0 21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0 26|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 51|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 24|23|23|22|21|19|18|17|16|15|14|14|20|15|16|17|18|19|20|21|22|25|24|25|0 33|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 16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0 33|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 59|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 51|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 33|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 48|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 26|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 37|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 54|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 36|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 13|10|10|11|12|9|9|15|14|11|12|13|14|15|0 52|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 19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0 86|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 19|18|16|16|13|13|12|11|11|15|12|14|14|15|17|17|18|19|0 6|6|7|8|9|7|8|9|0 21|20|19|19|18|16|15|15|14|13|13|23|14|17|16|17|18|22|20|21|22|23|0 36|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 45|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 21|19|18|16|16|15|13|13|12|12|20|14|14|15|17|17|18|19|20|21|0 77|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 66|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 12|12|10|9|8|8|11|9|10|11|13|13|0 46|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 18|18|19|17|17|15|14|13|12|12|16|13|14|15|16|21|20|19|20|21|0 48|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 28|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 11|8|8|7|7|10|9|9|10|11|0 74|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 8|7|6|6|9|7|8|9|0 16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0 28|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 67|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 47|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 68|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 11|11|12|9|8|8|10|9|10|13|12|13|0 40|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 66|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 33|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 14|13|12|11|11|9|9|10|10|15|12|13|14|15|0 47|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 29|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 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 29|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 50|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 50|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 11|7|7|8|9|10|8|9|10|11|0 34|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 49|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 23|21|18|18|17|16|16|15|14|13|13|22|14|15|20|17|19|19|20|21|22|23|0 36|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 58|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 20|18|17|17|19|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0 46|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 22|21|20|20|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0 39|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 12|12|13|11|10|9|9|15|10|11|14|13|14|15|0 44|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 52|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 56|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 40|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 25|22|21|20|20|19|18|17|16|15|14|14|24|15|16|17|18|19|23|21|22|23|24|25|0 19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0 11|9|8|7|7|10|8|9|10|11|0 18|17|17|16|14|14|12|12|13|20|21|13|15|15|16|19|18|19|20|21|0 9|8|6|6|7|7|8|9|0 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 33|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 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 51|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 44|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 51|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 88|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 27|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 21|18|18|19|20|17|16|16|14|13|13|15|14|15|23|17|22|19|20|21|22|23|0 39|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 29|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 41|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 53|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 12|12|13|14|15|11|10|10|17|11|16|13|14|15|16|17|0 18|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|19|19|0 38|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 13|10|10|9|8|8|12|9|11|11|12|13|0 42|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 37|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 37|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 19|16|13|13|12|12|15|11|11|18|17|14|14|15|16|17|18|19|0 61|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 70|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 33|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 55|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 50|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 43|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 39|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 46|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 41|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 48|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 43|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 44|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 62|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 43|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 35|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 35|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 48|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 45|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 48|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 49|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 50|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 36|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 30|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 44|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 8|8|6|6|7|7|9|9|0 23|21|20|18|18|17|15|15|14|13|13|22|14|16|16|17|19|19|20|21|22|23|0 44|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 57|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 14|12|12|11|9|9|10|15|10|11|13|13|14|15|0 58|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 59|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 26|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 31|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 40|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 55|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 59|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 42|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 56|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 13|10|10|9|8|8|12|9|11|11|12|13|0 29|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 18|16|15|15|14|14|12|11|11|13|12|13|19|17|16|17|18|19|0 26|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 34|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 6|6|7|8|9|7|8|9|0 43|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 68|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 47|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 50|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 14|14|12|11|9|9|10|13|10|11|12|13|15|15|0 46|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 20|20|16|16|17|15|14|12|12|13|19|13|14|15|18|17|18|19|21|21|0 46|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 24|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 7|7|6|6|9|8|8|9|0 38|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 9|7|6|6|8|7|8|9|0 32|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 45|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 45|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 44|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 42|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 58|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 24|23|22|21|20|18|18|19|16|15|14|14|17|15|16|17|25|19|20|21|22|23|24|25|0 37|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 64|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 76|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 32|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 13|11|10|8|8|9|12|9|10|11|12|13|0 50|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 32|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 13|11|10|9|8|8|12|9|10|11|12|13|0 16|15|13|13|14|12|10|10|11|11|12|17|14|15|16|17|0 35|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 23|22|20|18|18|17|16|15|14|13|13|21|14|15|16|17|19|19|20|21|22|23|0 18|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|19|19|0 73|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 16|16|15|13|13|14|12|12|11|11|19|18|14|15|17|17|18|19|0 54|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 34|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 27|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 39|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 24|24|22|22|20|18|17|17|16|15|14|14|21|15|16|19|18|19|20|21|23|23|25|25|0 54|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 24|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 21|19|18|16|16|14|14|13|12|12|20|13|15|15|17|17|18|19|20|21|0 34|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 36|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 50|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 30|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 27|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 40|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 28|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 66|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 47|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 27|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 55|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 26|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 42|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 33|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 52|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 24|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 43|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 60|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 80|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 34|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 41|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 37|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 13|12|11|10|10|9|9|15|14|11|12|13|14|15|0 60|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 60|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 43|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 65|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 9|8|7|6|6|7|8|9|0 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 37|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 55|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 44|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 23|21|18|17|17|19|15|15|14|13|13|22|14|16|16|20|18|19|20|21|22|23|0 31|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 32|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 50|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 31|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 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 41|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 45|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 32|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 29|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 3|3|0 28|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 62|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 21|19|18|17|14|14|15|13|12|12|20|13|16|15|16|17|18|19|20|21|0 23|21|20|17|16|15|15|18|14|13|13|22|14|19|16|17|18|19|20|21|22|23|0 9|9|8|7|7|11|8|10|10|11|0 46|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 21|20|20|19|18|17|16|16|14|13|13|15|14|15|23|17|18|19|22|21|22|23|0 25|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 25|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 45|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 40|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 24|24|22|20|19|19|18|15|15|16|14|14|23|17|16|17|18|21|20|21|22|23|25|25|0 45|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 40|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 29|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 3|3|0 31|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 21|17|16|15|15|18|14|13|12|12|20|13|14|19|16|17|18|19|20|21|0 47|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 49|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 42|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 11|9|8|7|7|10|8|9|10|11|0 15|11|10|10|12|13|9|9|14|11|12|13|14|15|0 30|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 49|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 41|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 48|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 59|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 60|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 40|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 7|7|6|6|9|8|8|9|0 25|23|23|22|20|18|17|16|15|15|14|14|21|19|16|17|18|19|20|21|22|24|24|25|0 23|18|18|17|16|16|20|15|13|13|14|22|14|15|21|17|19|19|20|21|22|23|0 26|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 52|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 18|16|16|15|14|13|13|12|11|11|12|19|14|15|17|17|18|19|0 25|23|21|20|19|19|18|16|16|15|14|14|24|15|17|17|18|22|20|21|22|23|24|25|0 48|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 19|17|16|15|12|12|13|11|11|18|14|13|14|15|16|17|18|19|0 27|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 28|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 18|17|16|15|15|14|13|11|11|12|12|13|14|19|16|17|18|19|0 17|14|14|12|11|11|10|10|16|13|12|13|15|15|16|17|0 45|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 47|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 37|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 64|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 40|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 55|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 70|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 32|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 36|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 32|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 33|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 30|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 15|14|13|11|10|9|9|12|10|11|12|13|14|15|0 17|15|14|14|13|11|11|10|10|12|12|13|16|15|16|17|0 51|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 24|23|23|20|20|19|18|17|16|15|14|14|22|15|16|17|18|19|21|21|22|25|24|25|0 38|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 31|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 11|9|9|10|8|8|13|12|10|11|12|13|0 57|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 30|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 35|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 58|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 19|18|17|16|16|15|15|14|13|12|12|13|14|21|20|17|18|19|20|21|0 42|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 75|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 47|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 21|20|19|19|18|17|16|15|14|14|13|13|23|15|16|17|18|22|20|21|22|23|0 41|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 50|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 40|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 28|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 37|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 71|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 22|21|21|18|18|17|16|15|14|13|13|20|14|15|16|17|19|19|20|23|22|23|0 19|17|16|14|14|13|12|11|11|18|12|13|15|15|16|17|18|19|0 41|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 28|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 44|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 11|10|9|7|7|8|8|9|10|11|0 28|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 24|24|20|19|19|21|18|17|16|15|14|14|23|15|16|17|18|22|20|21|22|23|25|25|0 11|10|8|8|9|12|13|9|10|11|12|13|0 52|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 70|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 44|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 41|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 32|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 21|20|17|15|15|14|14|13|12|12|19|13|18|16|16|17|18|19|20|21|0 5|4|4|5|0 28|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 40|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 34|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 23|22|21|18|18|17|16|15|13|13|14|20|14|15|16|17|19|19|20|21|22|23|0 53|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 55|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 50|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 35|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 41|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 21|21|19|18|18|17|15|15|14|13|13|23|14|16|16|17|20|19|20|22|22|23|0 65|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 38|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 48|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 23|23|22|20|19|18|18|17|17|15|14|14|16|15|16|25|21|19|20|21|22|24|24|25|0 47|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 46|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 11|9|8|7|7|10|8|9|10|11|0 27|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 29|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 25|23|22|21|19|17|17|18|16|15|14|14|24|15|16|20|18|19|20|21|22|23|24|25|0 78|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 36|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 28|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 35|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 4|4|5|5|0 4|4|5|5|0 31|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 27|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 33|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 48|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 71|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 30|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 59|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 30|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 12|11|11|9|8|8|10|9|10|13|12|13|0 63|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 43|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 20|20|21|22|19|18|17|16|13|13|14|15|14|15|16|17|18|19|23|21|22|23|0 57|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 54|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 55|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 31|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 15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0 52|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 38|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 26|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 23|20|19|18|16|14|14|15|13|13|21|22|17|15|16|17|18|19|20|21|22|23|0 7|5|5|6|6|7|0 34|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 31|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 37|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 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 19|18|17|15|15|16|14|13|13|12|12|21|14|20|16|17|18|19|20|21|0 6|5|5|7|6|7|0 24|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 50|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 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 46|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 56|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 63|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 26|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 53|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 21|20|20|22|17|16|16|15|13|13|14|19|14|15|18|17|18|19|23|21|22|23|0 37|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 22|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0 24|22|22|23|21|19|18|17|17|16|15|14|14|15|16|20|18|19|20|21|25|23|24|25|0 20|20|19|18|18|22|23|16|16|15|14|14|25|15|17|17|24|19|21|21|22|23|24|25|0 12|11|11|13|10|9|9|15|10|14|12|13|14|15|0 64|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 27|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 38|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 47|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 99|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 47|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 41|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 52|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 51|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 17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0 19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0 28|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 25|22|20|20|19|18|18|17|16|15|14|14|24|15|16|17|23|19|21|21|22|23|24|25|0 56|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 43|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 63|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 41|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 11|10|9|8|7|7|8|9|10|11|0 54|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 23|22|20|19|17|17|15|14|14|13|13|21|16|15|16|18|18|19|20|21|22|23|0 46|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 48|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 16|15|14|14|17|13|11|11|12|19|12|13|18|15|16|17|18|19|0 47|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 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 31|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 28|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 44|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 58|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 76|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 44|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 47|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 14|12|11|9|9|10|13|15|10|11|12|13|14|15|0 35|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 13|12|12|11|9|9|10|15|10|11|14|13|14|15|0 9|8|7|6|6|7|8|9|0 11|11|9|9|8|8|13|10|10|12|12|13|0 39|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 34|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 29|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 33|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 53|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 58|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 11|11|12|9|8|8|10|9|10|13|12|13|0 42|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 38|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 29|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 34|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 30|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 33|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 36|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 40|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 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 67|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 17|13|13|14|12|11|10|10|16|11|12|15|14|15|16|17|0 24|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 13|13|14|11|10|9|9|12|10|11|12|15|14|15|0 28|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 29|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 32|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 35|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 57|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 68|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 43|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 59|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 53|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 44|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 34|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 25|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 43|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 47|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 18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0 26|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 17|17|15|15|12|12|13|11|11|19|14|13|14|16|16|18|18|19|0 50|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 24|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 55|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 54|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 34|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 43|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 66|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 37|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 31|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 54|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 58|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 13|10|9|9|8|8|12|11|10|11|12|13|0 55|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 57|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 21|20|19|19|18|17|16|16|14|13|13|15|14|15|23|17|18|22|20|21|22|23|0 33|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 32|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 19|18|16|15|15|14|13|11|11|12|12|13|14|17|16|17|18|19|0 22|22|21|15|15|14|13|13|17|18|19|20|14|16|16|17|18|19|20|21|23|23|0 4|4|5|5|0 43|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 12|10|10|11|8|8|9|9|13|11|12|13|0 40|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 28|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 27|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 42|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 45|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 31|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 37|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 16|16|17|15|15|19|12|12|13|14|21|13|14|20|18|17|18|19|20|21|0 44|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 39|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 20|20|17|17|16|15|14|13|12|12|19|13|14|15|16|18|18|19|21|21|0 37|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 29|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 10|9|8|7|7|11|8|9|10|11|0 26|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 7|7|8|6|6|9|8|9|0 59|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 67|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 44|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 39|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 43|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 21|21|20|19|19|23|18|16|16|15|14|14|25|15|17|17|18|24|20|22|22|23|24|25|0 39|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 9|9|7|7|8|11|8|10|10|11|0 13|12|9|9|10|8|8|11|10|11|12|13|0 40|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 29|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 30|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 21|21|20|19|18|18|23|17|16|14|14|15|25|15|16|17|24|19|20|22|22|23|24|25|0 37|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 26|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 53|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 58|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 29|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 20|19|18|18|17|17|16|15|14|13|13|23|14|15|16|22|21|19|20|21|22|23|0 36|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 59|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 41|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 35|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 24|24|22|21|19|18|18|17|16|15|14|14|23|15|16|17|20|19|20|21|22|23|25|25|0 21|18|18|16|13|13|14|15|12|12|20|17|14|15|16|17|19|19|20|21|0 30|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 35|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 39|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 58|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 31|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 42|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 61|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 14|14|13|11|10|9|9|12|10|11|12|13|15|15|0 30|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 25|23|22|19|19|20|17|17|16|15|14|14|24|15|16|18|18|21|20|21|22|23|24|25|0 31|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 24|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 29|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 23|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 60|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 21|19|16|16|15|15|14|13|12|12|20|13|14|18|17|17|18|19|20|21|0 29|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 26|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 34|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 50|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 28|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 69|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 38|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 15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0 30|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 22|21|21|19|17|17|16|14|14|13|13|20|15|15|16|18|18|19|20|23|22|23|0 37|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 61|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 19|17|17|15|14|13|11|11|12|16|12|13|14|15|16|18|18|19|0 36|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 43|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 56|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 13|12|10|9|8|8|11|9|10|11|12|13|0 65|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 33|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 41|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 25|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 48|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 77|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 14|14|13|11|10|9|9|12|10|11|12|13|15|15|0 36|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 33|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 17|16|16|15|14|13|11|11|12|19|12|13|14|15|18|17|18|19|0 15|15|16|13|11|11|10|10|14|12|12|13|14|17|16|17|0 31|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 64|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 41|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 14|14|13|12|10|9|9|11|10|11|12|13|15|15|0 41|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 72|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 43|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 9|9|8|7|7|11|8|10|10|11|0 3|3|0 23|23|22|20|19|18|18|17|16|15|14|14|25|15|16|17|21|19|20|21|22|24|24|25|0 5|4|4|5|0 15|14|12|11|10|9|9|13|10|11|12|13|14|15|0 55|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 34|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 35|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 6|5|5|7|6|7|0 17|17|15|15|14|13|12|11|11|19|12|13|14|16|16|18|18|19|0 38|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 53|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 53|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 46|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 45|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 13|10|9|9|8|8|12|11|10|11|12|13|0 43|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 41|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 42|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 13|12|11|8|8|9|10|9|10|11|12|13|0 24|24|21|21|20|19|18|17|17|15|14|14|16|15|16|23|18|19|20|22|22|23|25|25|0 10|9|9|8|7|7|8|11|10|11|0 38|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 8|7|6|6|9|7|8|9|0 10|8|8|9|7|7|11|9|10|11|0 57|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 64|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 63|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 33|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 45|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 31|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 37|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 10|9|9|8|7|7|8|11|10|11|0 36|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 41|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 19|17|17|15|14|13|12|11|11|16|12|13|14|15|16|18|18|19|0 33|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 22|22|20|19|16|15|15|17|14|13|13|21|14|18|16|17|18|19|20|21|23|23|0 38|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 34|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 58|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 30|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 85|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 49|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 55|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 15|13|12|10|10|9|9|14|11|11|12|13|14|15|0 27|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 11|9|8|7|7|10|8|9|10|11|0 53|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 45|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 27|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 38|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 40|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 62|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 47|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 69|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 19|18|14|14|13|12|12|11|11|17|16|13|15|15|16|17|18|19|0 48|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 51|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 7|5|5|6|6|7|0 19|18|17|15|14|13|12|11|11|16|12|13|14|15|16|17|18|19|0 35|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 64|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 34|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 49|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 20|19|18|18|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0 15|14|11|11|12|9|9|10|10|13|12|13|14|15|0 14|13|11|11|10|9|9|15|10|12|12|13|14|15|0 46|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 82|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 22|20|19|17|17|18|16|14|13|13|15|23|14|15|16|21|18|19|20|21|22|23|0 35|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 27|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 35|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 15|12|12|11|9|9|10|14|10|11|13|13|14|15|0 39|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 69|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 27|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 13|11|10|9|8|8|12|9|10|11|12|13|0 28|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 7|7|6|6|9|8|8|9|0 56|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 53|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 49|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 30|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 21|19|19|18|16|14|14|13|12|12|17|13|15|15|16|17|18|20|20|21|0 34|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 65|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 25|23|22|21|19|19|18|17|16|15|14|14|24|15|16|17|18|20|20|21|22|23|24|25|0 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 58|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 42|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 36|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 26|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 57|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 36|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 78|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 57|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 32|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 52|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 44|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 36|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 22|21|20|19|18|17|16|14|14|13|13|23|15|15|16|17|18|19|20|21|22|23|0 59|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 25|23|22|21|20|19|18|17|16|14|14|15|24|15|16|17|18|19|20|21|22|23|24|25|0 26|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 28|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 35|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 47|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 24|23|22|20|20|21|19|18|15|15|14|14|17|16|16|17|18|19|25|21|22|23|24|25|0 18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0 22|22|20|19|18|17|14|14|15|13|13|21|16|15|16|17|18|19|20|21|23|23|0 46|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 33|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 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 83|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 22|21|21|20|17|17|14|14|15|13|13|19|16|15|16|18|18|19|20|23|22|23|0 34|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 43|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 30|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 47|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 14|14|10|9|9|11|12|13|10|11|12|13|15|15|0 46|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 28|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 86|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 49|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 33|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 42|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 37|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 68|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 10|9|9|7|7|8|8|11|10|11|0 33|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 41|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 46|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 11|10|9|9|8|8|13|12|10|11|12|13|0 43|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 18|18|14|14|15|13|12|11|11|17|12|13|16|15|16|17|19|19|0 49|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 53|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 53|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 29|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 31|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 44|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 19|17|15|12|12|13|14|11|11|18|16|13|14|15|16|17|18|19|0 35|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 45|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 34|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 25|24|23|21|17|17|18|19|16|15|14|14|22|15|16|20|18|19|20|21|22|23|24|25|0 45|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 57|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 33|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 49|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 94|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 26|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 43|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 15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0 44|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 15|12|11|11|10|9|9|14|10|13|12|13|14|15|0 21|21|22|19|18|15|15|16|14|13|13|20|14|17|16|17|18|19|20|23|22|23|0 25|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 44|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 43|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 22|21|20|19|19|18|17|15|14|13|13|16|14|15|16|17|18|23|20|21|22|23|0 55|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 24|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 7|5|5|6|6|7|0 11|9|8|7|7|10|8|9|10|11|0 46|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 21|16|16|15|14|14|18|13|12|12|20|13|19|15|17|17|18|19|20|21|0 53|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 42|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 50|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 27|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 54|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 32|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 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 21|18|17|16|16|15|14|12|12|13|20|13|14|15|19|17|18|19|20|21|0 13|12|10|10|9|8|8|9|11|11|12|13|0 22|21|21|19|18|16|16|15|13|13|14|20|14|15|17|17|18|19|20|23|22|23|0 56|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 20|19|19|17|16|15|14|13|12|12|18|13|14|15|16|17|18|21|20|21|0 10|9|8|7|7|11|8|9|10|11|0 65|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 66|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 33|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 42|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 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 42|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 19|19|20|17|16|15|14|13|12|12|18|13|14|15|16|17|18|21|20|21|0 25|23|21|20|20|19|17|17|16|14|14|15|24|15|16|18|18|19|22|21|22|23|24|25|0 24|24|22|19|19|20|18|16|16|15|14|14|23|15|17|17|18|21|20|21|22|23|25|25|0 47|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 14|12|12|13|11|9|9|10|10|11|15|13|14|15|0 46|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 26|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 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 52|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 54|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 50|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 56|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 56|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 42|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 56|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 21|20|20|19|17|16|15|14|14|13|13|23|18|15|16|17|18|19|22|21|22|23|0 44|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 65|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 40|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 56|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 66|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 35|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 37|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 37|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 63|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 10|7|7|8|9|11|8|9|10|11|0 48|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 23|21|19|17|15|15|16|14|14|13|13|22|20|18|16|17|18|19|20|21|22|23|0 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 16|16|15|14|11|11|10|10|13|12|12|13|14|15|17|17|0 47|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 71|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 44|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 46|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 23|21|19|18|17|17|16|15|13|13|14|22|14|15|16|20|18|19|20|21|22|23|0 71|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 48|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 37|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 38|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 57|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 62|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 60|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 41|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 41|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 21|19|19|18|18|22|23|17|15|15|14|14|25|16|16|17|24|20|20|21|22|23|24|25|0 27|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 64|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 33|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 20|17|17|18|19|16|15|15|14|13|13|23|14|22|16|21|18|19|20|21|22|23|0 16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0 45|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 51|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 8|8|9|7|7|11|10|9|10|11|0 36|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 26|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 44|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 31|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 28|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 56|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 29|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 22|21|20|19|18|17|17|23|15|14|14|16|25|15|16|24|18|19|20|21|22|23|24|25|0 27|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 38|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 53|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 31|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 17|15|14|13|12|12|10|10|11|11|16|13|14|15|16|17|0 49|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 50|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 39|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 28|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 37|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 28|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 35|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 47|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 41|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 22|21|20|20|17|17|15|14|14|13|13|19|16|15|16|18|18|19|23|21|22|23|0 24|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 16|15|15|17|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0 79|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 48|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 25|23|20|19|19|21|17|16|16|15|14|14|24|15|18|17|18|22|20|21|22|23|24|25|0 43|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 54|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 27|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 61|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 23|23|24|20|19|18|16|16|15|15|14|14|22|21|17|17|18|19|20|21|22|25|24|25|0 19|18|17|16|15|14|14|13|12|12|21|13|20|15|16|17|18|19|20|21|0 56|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 45|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 60|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 38|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 73|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 72|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 31|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 12|12|11|9|8|8|10|9|10|11|13|13|0 31|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 20|20|21|19|18|17|16|15|13|13|14|23|14|15|16|17|18|19|22|21|22|23|0 37|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 46|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 37|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 39|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 31|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 19|18|17|17|16|15|12|12|13|14|21|13|14|15|16|20|18|19|20|21|0 25|24|22|21|20|20|19|17|17|15|14|14|16|15|16|18|18|19|23|21|22|23|24|25|0 43|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 30|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 62|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 70|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 35|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 69|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 30|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 27|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 41|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 21|21|20|19|18|18|15|15|14|13|13|17|14|16|16|17|23|19|20|22|22|23|0 17|11|11|12|13|14|10|10|16|15|12|13|14|15|16|17|0 44|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 49|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 21|18|18|19|20|17|16|15|13|13|14|23|14|15|16|17|22|19|20|21|22|23|0 43|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 15|13|13|14|12|11|10|10|17|11|12|16|14|15|16|17|0 37|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 11|9|8|7|7|10|8|9|10|11|0 18|18|15|14|14|13|12|11|11|17|12|13|16|15|16|17|19|19|0 89|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 59|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 29|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 14|13|13|15|12|11|10|10|17|11|12|16|14|15|16|17|0 41|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 38|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 47|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 45|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 22|21|21|20|20|19|17|17|16|15|14|14|25|15|16|18|18|19|24|23|22|23|24|25|0 36|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 26|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 56|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 59|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 31|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 34|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 30|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 98|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 59|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 20|20|19|18|16|14|14|13|12|12|17|13|15|15|16|17|18|19|21|21|0 50|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 34|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 48|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 63|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 50|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 19|19|17|16|15|14|14|13|12|12|21|13|18|15|16|17|18|20|20|21|0 55|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 19|17|16|14|14|13|12|11|11|18|12|13|15|15|16|17|18|19|0 11|10|10|12|8|8|9|9|13|11|12|13|0 22|21|20|18|18|19|17|15|15|13|13|14|14|16|16|17|23|19|20|21|22|23|0 63|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 21|21|20|19|19|17|15|14|13|13|16|18|14|15|16|17|18|23|20|22|22|23|0 43|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 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 31|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 67|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 24|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 27|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 13|12|11|10|9|8|8|9|10|11|12|13|0 37|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 39|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 27|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 49|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 21|19|19|18|16|16|17|15|14|13|13|23|14|15|22|17|18|20|20|21|22|23|0 25|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 44|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 45|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 46|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 54|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 62|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 59|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 19|16|16|14|13|13|12|11|11|18|12|15|14|15|17|17|18|19|0 39|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 30|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 52|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 31|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 60|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 13|13|14|11|10|9|9|12|10|11|12|15|14|15|0 72|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 54|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 56|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 21|19|19|20|18|16|15|14|14|17|13|13|23|15|16|17|18|22|20|21|22|23|0 54|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 40|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 58|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 29|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 37|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 41|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 46|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 54|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 37|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 22|22|19|18|17|17|16|15|14|13|13|21|14|15|16|20|18|19|20|21|23|23|0 23|21|19|17|17|16|16|15|14|13|13|22|14|15|20|18|18|19|20|21|22|23|0 26|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 35|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 44|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 49|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 9|9|8|7|7|11|8|10|10|11|0 11|10|8|7|7|9|8|9|10|11|0 29|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 55|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 35|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 48|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 18|18|17|15|13|13|12|11|11|16|12|14|14|15|16|17|19|19|0 23|20|20|19|17|17|16|15|14|13|13|22|14|15|16|18|18|19|21|21|22|23|0 42|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 36|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 53|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 47|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 10|10|11|9|8|8|13|9|12|11|12|13|0 53|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 42|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 47|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 54|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 38|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 32|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 17|15|13|13|12|10|10|11|16|11|12|14|14|15|16|17|0 34|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 26|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 42|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 7|5|5|6|6|7|0 46|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 53|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 66|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 23|21|20|20|19|17|17|18|16|14|14|15|25|15|16|24|18|19|22|21|22|23|24|25|0 71|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 42|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 42|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 33|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 43|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 58|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 37|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 31|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 60|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 25|23|22|21|19|17|17|16|16|15|14|14|24|15|20|18|18|19|20|21|22|23|24|25|0 12|12|11|9|9|8|8|10|10|11|13|13|0 51|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 38|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 28|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 18|18|17|15|15|14|12|11|11|13|12|13|14|16|16|17|19|19|0 39|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 64|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 39|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 32|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 47|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 26|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 47|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 16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0 31|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 47|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 41|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 40|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 13|13|10|10|9|9|12|15|11|11|12|14|14|15|0 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 29|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 41|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 51|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 43|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 7|7|6|6|9|8|8|9|0 26|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 41|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 11|10|7|7|8|9|8|9|10|11|0 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 53|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 14|14|15|12|12|11|10|10|17|11|13|13|16|15|16|17|0 61|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 49|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 17|16|16|15|14|13|11|11|12|19|12|13|14|15|18|17|18|19|0 29|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 29|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 70|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 31|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 42|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 48|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 21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0 21|20|20|22|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0 18|15|14|14|12|12|13|11|11|19|17|13|16|15|16|17|18|19|0 38|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 31|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 58|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 85|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 64|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 12|10|10|11|8|8|9|9|13|11|12|13|0 53|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 45|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 9|8|7|6|6|7|8|9|0 20|19|18|17|16|15|14|13|12|12|21|13|14|15|16|17|18|19|20|21|0 36|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 67|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 51|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 42|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 23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0 29|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 47|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 52|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 42|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 30|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 31|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 60|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 34|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 15|14|14|13|10|10|11|12|17|11|12|13|16|15|16|17|0 10|9|9|7|7|8|8|11|10|11|0 11|11|10|9|9|8|8|13|10|12|12|13|0 52|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 59|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 45|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 38|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 47|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 33|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 34|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 11|9|7|7|8|10|8|9|10|11|0 17|15|14|11|11|10|10|13|16|12|12|13|14|15|16|17|0 29|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 43|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 22|22|21|19|17|16|16|15|13|13|14|20|14|15|18|17|18|19|20|21|23|23|0 36|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 44|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 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 41|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 32|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 14|14|12|12|11|9|9|10|10|11|13|13|15|15|0 50|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 30|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 26|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 20|19|19|17|15|14|13|13|12|12|18|16|14|15|16|17|18|21|20|21|0 11|9|8|7|7|10|8|9|10|11|0 27|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 26|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 26|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 51|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 32|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 43|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 82|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 37|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 10|10|7|7|8|9|8|9|11|11|0 5|5|6|7|6|7|0 52|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 66|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 52|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 22|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 28|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 7|5|5|6|6|7|0 29|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 11|11|10|10|13|9|9|15|14|12|12|13|14|15|0 29|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 36|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 27|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 65|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 49|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 38|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 57|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 43|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 19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 15|15|13|13|14|11|10|10|12|11|12|17|14|16|16|17|0 51|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 51|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 51|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 25|23|23|22|20|19|18|18|17|15|14|14|16|15|16|17|21|19|20|21|22|24|24|25|0 16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0 25|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 57|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 30|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 35|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 17|15|14|13|11|11|10|10|16|12|12|13|14|15|16|17|0 71|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 37|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 31|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 82|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 30|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 31|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 30|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 28|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 61|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 53|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 47|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 47|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 45|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 5|5|6|7|6|7|0 23|22|21|21|20|19|19|17|17|15|14|14|16|15|16|18|18|25|20|24|22|23|24|25|0 68|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 42|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 37|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 48|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 33|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 28|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 15|14|13|11|10|9|9|12|10|11|12|13|14|15|0 9|7|6|6|8|7|8|9|0 62|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 17|16|14|12|12|11|10|10|15|11|13|13|14|15|16|17|0 65|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 19|16|15|14|12|12|13|11|11|18|17|13|14|15|16|17|18|19|0 51|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 51|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 36|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 32|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 59|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 54|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 53|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 64|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 59|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 32|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 52|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 30|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 37|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 4|4|5|5|0 62|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 38|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 30|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 39|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 71|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 34|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 27|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 16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0 40|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 30|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 52|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 8|7|6|6|9|7|8|9|0 20|19|18|15|15|16|14|13|12|12|21|13|14|17|16|17|18|19|20|21|0 39|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 23|22|21|20|19|18|17|17|16|15|14|14|25|15|16|24|18|19|20|21|22|23|24|25|0 56|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 15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0 33|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 33|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 33|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 41|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 19|18|18|20|15|14|14|13|12|12|17|13|16|15|16|17|21|19|20|21|0 39|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 33|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 11|9|8|7|7|10|8|9|10|11|0 41|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 33|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 20|16|16|17|14|14|15|13|13|12|12|21|19|15|18|17|18|19|20|21|0 30|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 17|17|16|14|14|15|19|13|12|12|21|13|20|15|16|18|18|19|20|21|0 14|12|11|10|9|9|13|15|10|11|12|13|14|15|0 70|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 58|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 32|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 44|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 34|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 55|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 26|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 22|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 24|23|23|21|20|17|15|15|14|14|18|19|22|16|16|17|18|19|20|21|22|25|24|25|0 47|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 31|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 55|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 34|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 3|3|0 12|12|10|9|8|8|11|9|10|11|13|13|0 18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0 25|23|22|20|20|19|17|17|16|15|14|14|24|15|16|18|18|19|21|21|22|23|24|25|0 29|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 21|20|19|16|16|14|14|13|12|12|18|13|15|15|17|17|18|19|20|21|0 49|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 57|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 33|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 15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0 32|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 36|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 34|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 38|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 15|15|14|13|12|11|10|10|17|11|12|13|14|16|16|17|0 43|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 32|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 103|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 28|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 29|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 37|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 34|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 52|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 36|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 52|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 67|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 48|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 31|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 80|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 58|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 32|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 61|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 24|24|20|19|18|18|21|17|16|15|14|14|23|15|16|17|22|19|20|21|22|23|25|25|0 61|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 35|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 24|23|23|20|19|18|17|17|16|14|14|15|22|15|16|21|18|19|20|21|22|25|24|25|0 36|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 9|8|7|6|6|7|8|9|0 28|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 12|12|9|9|8|8|11|10|10|11|13|13|0 28|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 19|18|16|15|13|12|12|11|11|17|14|13|14|15|16|17|18|19|0 18|17|17|16|14|14|11|11|12|13|12|13|15|15|16|19|18|19|0 21|21|20|20|18|15|15|16|13|13|14|19|14|17|16|17|18|19|23|22|22|23|0 27|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 22|21|20|18|18|16|15|15|14|13|13|23|14|17|16|17|19|19|20|21|22|23|0 15|15|16|12|11|11|10|10|14|13|12|13|14|17|16|17|0 17|13|12|12|11|11|10|10|16|15|14|13|14|15|16|17|0 17|16|16|18|14|12|12|11|11|15|13|13|14|15|19|17|18|19|0 54|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 52|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 9|9|10|11|8|8|13|12|10|11|12|13|0 13|11|10|9|8|8|12|9|10|11|12|13|0 44|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 25|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 22|21|20|19|18|18|16|13|13|14|15|17|14|15|16|17|23|19|20|21|22|23|0 33|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 30|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 49|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 27|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 37|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 57|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 37|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 49|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 50|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 16|14|13|12|10|10|11|15|17|11|12|13|14|15|16|17|0 37|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 61|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 36|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 51|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 44|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 31|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 39|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 11|10|10|9|8|8|13|9|12|11|12|13|0 8|7|7|6|6|9|8|9|0 7|6|5|5|6|7|0 56|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 28|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 36|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 31|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 58|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 46|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 24|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 36|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 51|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 61|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 26|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 17|16|16|15|15|13|11|11|12|14|12|13|14|19|18|17|18|19|0 42|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 25|23|20|20|19|18|18|17|16|14|14|15|24|15|16|17|22|19|21|21|22|23|24|25|0 27|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 31|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 30|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 22|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 85|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 75|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 57|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 49|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 69|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 13|13|12|11|10|9|9|15|10|11|12|14|14|15|0 49|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 46|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 45|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 46|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 28|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 39|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 27|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 26|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 37|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 24|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 25|23|23|22|19|17|16|16|18|14|14|15|21|15|20|17|18|19|20|21|22|24|24|25|0 39|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 46|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 28|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 55|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 9|8|7|6|6|7|8|9|0 62|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 62|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 18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0 41|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 19|17|13|13|12|12|15|11|11|18|16|14|14|15|16|17|18|19|0 35|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 20|19|19|16|15|15|14|13|12|12|18|13|14|17|16|17|18|21|20|21|0 72|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 65|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 84|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 36|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 11|9|9|7|7|8|8|10|10|11|0 56|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 18|17|17|15|14|11|11|12|13|16|12|13|14|15|16|19|18|19|0 10|10|8|8|7|7|9|9|11|11|0 37|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 26|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 29|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 37|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 80|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 50|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 33|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 48|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 38|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 7|5|5|6|6|7|0 49|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 42|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 27|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 54|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 65|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 15|12|12|10|9|9|11|14|10|11|13|13|14|15|0 23|20|19|19|16|14|13|13|15|17|18|22|14|15|16|17|18|21|20|21|22|23|0 39|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 45|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 28|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 27|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 9|8|7|6|6|7|8|9|0 33|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 30|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 15|15|13|13|12|12|10|10|11|11|17|14|14|16|16|17|0 30|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 68|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 70|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 68|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 20|19|19|21|18|17|16|15|15|13|13|14|14|23|16|17|18|22|20|21|22|23|0 44|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 35|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 47|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 60|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 27|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 29|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 30|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 28|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 46|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 45|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 49|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 5|4|4|5|0 52|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 85|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 35|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 28|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 41|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 55|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 50|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 21|20|19|18|18|22|23|17|16|15|14|14|25|15|16|17|24|19|20|21|22|23|24|25|0 30|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 40|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 24|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 23|21|20|20|22|19|18|16|16|15|14|14|25|15|17|17|18|19|24|21|22|23|24|25|0 17|15|13|13|11|11|10|10|16|12|12|14|14|15|16|17|0 13|11|11|10|9|8|8|9|10|12|12|13|0 44|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 49|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 20|20|17|17|16|15|14|13|12|12|19|13|14|15|16|18|18|19|21|21|0 57|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 77|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 36|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 42|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 37|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 21|21|22|19|18|17|15|15|14|13|13|20|14|16|16|17|18|19|20|23|22|23|0 20|20|18|17|16|15|14|12|12|13|19|13|14|15|16|17|18|19|21|21|0 32|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 40|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 39|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 40|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 11|9|8|7|7|10|8|9|10|11|0 8|7|7|6|6|9|8|9|0 33|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 21|21|20|20|17|16|16|15|14|13|13|19|14|15|18|17|18|19|23|22|22|23|0 49|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 11|11|10|9|8|8|13|9|10|12|12|13|0 34|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 35|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 15|15|13|11|11|12|10|10|17|14|12|13|14|16|16|17|0 56|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 62|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 43|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 20|19|19|17|16|14|13|13|12|12|18|15|14|15|16|17|18|21|20|21|0 21|19|17|16|15|15|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 26|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 26|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 24|24|21|21|20|17|17|18|16|15|14|14|23|15|16|19|18|19|20|22|22|23|25|25|0 7|7|8|6|6|9|8|9|0 35|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 51|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 68|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 22|20|19|19|21|18|16|16|13|13|14|15|14|15|17|17|18|23|20|21|22|23|0 38|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 52|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 65|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 52|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 49|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 73|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 47|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 47|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 51|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 66|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 19|17|17|15|14|13|11|11|12|16|12|13|14|15|16|18|18|19|0 80|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 21|19|19|20|18|17|17|15|14|13|13|16|14|15|16|23|18|22|20|21|22|23|0 10|10|9|9|12|8|8|13|11|11|12|13|0 28|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 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 28|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 27|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 23|20|20|18|17|17|16|15|14|13|13|22|14|15|16|19|18|19|21|21|22|23|0 52|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 45|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 40|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 28|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 31|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 43|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 77|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 19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0 33|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 19|16|15|14|14|13|11|11|12|18|12|13|17|15|16|17|18|19|0 9|9|10|7|7|8|8|11|10|11|0 59|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 13|13|14|15|16|11|10|10|12|11|12|17|14|15|16|17|0 15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0 29|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 46|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 7|5|5|6|6|7|0 32|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 24|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 21|20|19|18|16|15|14|14|13|12|12|13|17|15|16|17|18|19|20|21|0 23|23|22|19|19|20|17|17|15|15|14|14|25|16|16|18|18|21|20|21|22|24|24|25|0 49|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 33|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 60|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 77|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 10|10|8|7|7|9|8|9|11|11|0 43|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 63|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 63|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 48|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 48|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 56|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 21|19|15|14|14|16|17|13|12|12|20|13|18|15|16|17|18|19|20|21|0 40|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 66|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 47|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 44|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 34|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 54|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 19|16|16|15|12|12|11|11|14|18|13|13|14|15|17|17|18|19|0 44|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 22|22|21|19|17|16|16|18|14|13|13|15|14|15|20|17|18|19|20|21|23|23|0 49|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 62|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 39|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 49|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 11|10|10|9|8|8|13|9|12|11|12|13|0 39|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 41|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 95|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 19|17|16|16|15|15|14|12|12|13|21|13|14|20|18|17|18|19|20|21|0 56|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 74|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 33|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 30|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 60|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 8|8|9|7|7|11|10|9|10|11|0 17|17|18|15|15|16|20|21|14|13|13|23|14|22|16|19|18|19|20|21|22|23|0 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 80|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 82|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 28|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 24|23|22|21|19|19|20|16|15|15|14|14|18|17|16|17|18|25|20|21|22|23|24|25|0 26|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 21|18|18|14|14|13|13|16|12|12|20|17|15|15|16|17|19|19|20|21|0 11|7|7|8|9|10|8|9|10|11|0 9|8|8|7|7|11|10|9|10|11|0 39|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 34|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 62|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 47|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 43|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 62|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 22|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 31|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 11|8|8|7|7|10|9|9|10|11|0 45|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 25|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 49|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 38|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 51|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 18|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|19|19|0 58|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 26|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 13|11|9|9|8|8|12|10|10|11|12|13|0 55|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 23|22|21|20|20|19|19|17|16|14|14|15|18|15|16|17|18|25|24|21|22|23|24|25|0 41|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 36|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 54|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 10|10|11|9|8|8|13|9|12|11|12|13|0 46|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 42|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 55|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 39|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 14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0 29|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 58|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 59|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 64|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 31|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 19|18|17|16|15|14|13|12|11|11|12|13|14|15|16|17|18|19|0 45|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 10|9|9|7|7|8|8|11|10|11|0 38|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 37|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 26|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 41|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 41|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 36|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 16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0 25|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 84|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 23|22|22|21|20|20|18|17|16|14|14|15|19|15|16|17|18|19|25|21|24|23|24|25|0 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 42|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 67|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 57|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 22|22|21|17|16|16|18|15|14|14|13|13|20|15|19|17|18|19|20|21|23|23|0 32|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 14|14|12|10|10|9|9|13|11|11|12|13|15|15|0 31|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 20|20|19|18|18|22|23|17|16|15|14|14|25|15|16|17|24|19|21|21|22|23|24|25|0 43|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 50|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 13|11|10|9|8|8|12|9|10|11|12|13|0 14|13|12|11|10|10|9|9|15|11|12|13|14|15|0 78|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 24|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 37|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 8|8|6|6|7|7|9|9|0 8|8|6|6|7|7|9|9|0 9|9|8|7|7|11|8|10|10|11|0 3|3|0 51|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 33|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 32|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 31|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 31|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 46|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 53|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 42|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 9|8|7|6|6|7|8|9|0 40|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 43|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 30|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 39|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 40|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 18|17|16|15|15|14|13|13|12|12|21|20|14|19|16|17|18|19|20|21|0 16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0 45|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 55|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 49|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 42|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 34|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 59|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 24|23|22|22|20|19|18|16|16|15|14|14|21|15|17|17|18|19|20|21|25|23|24|25|0 44|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 26|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 27|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 40|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 16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0 27|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 48|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 58|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 35|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 29|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 20|20|19|18|17|17|22|23|16|14|14|15|25|15|16|24|18|19|21|21|22|23|24|25|0 12|11|11|9|8|8|10|9|10|13|12|13|0 32|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 58|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 16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0 31|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 44|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 39|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 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 55|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 36|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 40|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 32|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 52|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 43|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 11|10|10|12|13|9|9|15|14|11|12|13|14|15|0 9|9|7|7|8|11|8|10|10|11|0 44|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 37|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 33|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 36|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 40|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 68|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 20|20|19|16|15|15|14|13|12|12|18|13|14|17|16|17|18|19|21|21|0 46|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 67|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 20|20|18|16|15|15|14|13|12|12|19|13|14|17|16|17|18|19|21|21|0 3|3|0 31|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 15|13|12|11|9|9|10|14|10|11|12|13|14|15|0 11|9|9|7|7|8|8|10|10|11|0 22|20|19|19|18|17|15|15|14|13|13|23|14|16|16|17|18|21|20|21|22|23|0 34|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 20|18|18|19|15|15|14|14|12|12|13|13|17|16|16|17|21|19|20|21|0 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 59|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 17|16|13|12|11|10|10|14|15|11|12|13|14|15|16|17|0 65|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 22|22|18|18|14|14|15|16|13|13|20|21|17|15|16|17|19|19|20|21|23|23|0 22|20|20|19|19|23|18|16|16|14|14|15|25|15|17|17|18|24|21|21|22|23|24|25|0 16|15|15|17|14|14|13|13|12|12|21|20|19|18|16|17|18|19|20|21|0 62|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 12|12|10|9|8|8|11|9|10|11|13|13|0 21|19|19|18|17|17|22|23|16|15|14|14|25|15|16|24|18|20|20|21|22|23|24|25|0 74|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 30|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 60|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 61|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 33|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 51|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 41|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 39|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 36|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 25|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 21|19|16|14|14|15|17|13|12|12|20|13|18|15|16|17|18|19|20|21|0 19|19|18|18|16|15|14|13|12|12|17|13|14|15|16|17|21|20|20|21|0 50|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 49|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 36|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 94|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 53|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 34|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 32|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 30|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 20|19|19|18|17|15|14|12|12|13|16|13|14|15|16|17|18|21|20|21|0 29|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 60|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 14|13|12|12|9|9|10|11|10|11|15|13|14|15|0 41|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 17|15|13|12|10|10|11|14|16|11|12|13|14|15|16|17|0 42|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 50|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 34|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 19|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|18|19|0 47|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 48|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 61|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 38|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 31|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 22|21|21|23|19|19|18|17|16|14|14|15|25|15|16|17|18|20|20|24|22|23|24|25|0 39|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 22|22|20|19|18|17|16|15|14|13|13|21|14|15|16|17|18|19|20|21|23|23|0 44|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 28|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 39|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 35|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 8|8|6|6|7|7|9|9|0 39|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 34|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 49|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 54|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 17|17|16|15|14|13|11|11|12|19|12|13|14|15|16|18|18|19|0 14|10|10|11|9|9|13|15|12|11|12|13|14|15|0 23|21|19|18|18|17|15|14|14|13|13|22|16|15|16|17|20|19|20|21|22|23|0 28|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 39|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 23|22|21|21|20|16|16|15|15|18|14|14|25|19|17|17|18|19|20|24|22|23|24|25|0 83|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 53|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 35|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 67|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 35|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 25|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 21|20|19|18|18|17|14|14|15|16|13|13|23|15|16|17|22|19|20|21|22|23|0 18|17|16|14|13|13|11|11|12|19|12|15|14|15|16|17|18|19|0 41|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 47|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 10|9|9|7|7|8|8|11|10|11|0 26|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 17|16|13|13|12|11|10|10|15|11|12|14|14|15|16|17|0 8|7|6|6|9|7|8|9|0 14|10|10|11|9|9|13|15|12|11|12|13|14|15|0 71|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 68|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 52|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 93|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 25|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 24|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 29|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 78|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 13|10|10|9|8|8|12|9|11|11|12|13|0 42|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 19|17|13|13|14|15|12|11|11|18|12|16|14|15|16|17|18|19|0 28|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 29|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 53|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 49|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 43|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 46|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 28|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 14|14|13|11|9|9|10|12|10|11|12|13|15|15|0 59|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 40|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 30|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 58|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 27|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 44|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 23|22|19|19|18|17|15|15|14|13|13|21|14|16|16|17|18|20|20|21|22|23|0 56|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 53|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 28|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 43|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 64|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 42|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 42|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 54|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 64|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 35|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 40|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 28|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 28|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 19|18|18|15|13|13|14|16|12|12|21|17|14|15|16|17|20|19|20|21|0 12|10|9|8|8|11|13|9|10|11|12|13|0 76|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 63|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 12|11|11|9|8|8|10|9|10|13|12|13|0 39|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 51|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 25|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 24|24|22|21|19|18|16|16|17|15|14|14|23|15|20|17|18|19|20|21|22|23|25|25|0 47|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 76|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 26|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 45|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 44|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 38|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 27|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 69|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 30|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 15|14|14|13|12|12|17|18|11|11|19|13|16|15|16|17|18|19|0 19|19|18|18|21|16|16|15|14|13|13|23|14|15|17|17|22|20|20|21|22|23|0 29|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 79|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 13|12|10|9|8|8|11|9|10|11|12|13|0 42|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 51|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 30|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 27|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 33|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 66|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 25|21|21|19|19|17|17|15|14|14|16|23|24|15|16|18|18|20|20|22|22|23|24|25|0 7|7|6|6|9|8|8|9|0 14|14|15|12|12|11|10|10|17|11|13|13|16|15|16|17|0 72|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 21|17|16|15|14|14|18|12|12|13|20|13|19|15|16|17|18|19|20|21|0 35|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 81|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 11|7|7|8|9|10|8|9|10|11|0 42|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 13|11|11|10|8|8|9|9|10|12|12|13|0 33|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 17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0 29|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 27|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 42|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 58|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 20|19|19|18|16|16|15|12|12|13|14|13|14|15|17|17|18|21|20|21|0 64|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 41|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 48|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 35|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 52|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 18|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|19|19|0 40|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 35|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 20|19|18|17|17|16|15|14|14|13|13|23|22|15|16|21|18|19|20|21|22|23|0 36|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 65|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 47|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 44|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 33|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 35|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 42|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 11|10|9|8|7|7|8|9|10|11|0 25|23|22|20|20|19|18|17|16|15|14|14|24|15|16|17|18|19|21|21|22|23|24|25|0 11|10|9|8|8|12|13|9|10|11|12|13|0 46|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 9|7|6|6|8|7|8|9|0 57|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 69|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 35|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 54|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 19|18|16|16|14|12|11|11|13|15|12|13|14|15|17|17|18|19|0 3|3|0 65|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 65|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 38|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 70|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 64|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 30|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 84|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 21|20|20|19|17|17|16|15|14|13|13|23|14|15|16|18|18|19|22|21|22|23|0 26|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 23|22|21|20|18|18|17|16|14|14|13|13|15|15|16|17|19|19|20|21|22|23|0 32|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 23|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 50|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 29|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 49|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 43|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 16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0 38|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 34|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 27|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 31|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 38|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 60|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 60|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 9|9|8|7|7|11|8|10|10|11|0 40|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 57|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 85|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 49|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 52|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 39|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 18|17|17|15|14|12|12|11|11|16|13|13|14|15|16|19|18|19|0 28|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 20|19|18|18|17|16|12|12|13|14|15|13|14|15|16|17|21|19|20|21|0 28|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 29|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 38|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 38|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 27|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 8|8|9|7|7|11|10|9|10|11|0 8|8|9|7|7|11|10|9|10|11|0 57|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 50|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 51|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 53|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 15|15|14|12|12|11|10|10|17|11|13|13|14|16|16|17|0 40|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 50|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 51|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 36|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 48|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 65|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 11|8|7|7|9|10|8|9|10|11|0 47|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 27|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 8|8|6|6|7|7|9|9|0 40|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 39|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 27|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 37|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 50|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 59|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 11|9|7|7|8|10|8|9|10|11|0 41|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 29|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 37|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 37|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 41|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 24|23|22|20|19|16|16|17|15|14|14|21|25|15|18|17|18|19|20|21|22|23|24|25|0 30|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 29|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 45|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 45|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 44|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 37|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 23|21|20|17|17|16|16|15|14|13|13|22|14|15|19|18|18|19|20|21|22|23|0 54|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 47|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 54|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 26|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 26|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 73|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 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 17|16|15|14|14|13|11|11|12|19|12|13|18|15|16|17|18|19|0 42|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 9|8|6|6|7|7|8|9|0 73|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 69|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 28|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 31|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 70|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 30|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 18|17|16|16|19|14|14|13|12|12|21|13|15|15|20|17|18|19|20|21|0 24|23|22|21|20|19|19|18|17|16|14|14|15|15|16|17|18|25|20|21|22|23|24|25|0 49|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 36|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 36|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 37|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 50|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 32|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 63|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 66|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 60|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 84|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 41|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 28|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 29|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 34|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 37|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 8|6|6|7|9|7|8|9|0 54|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 52|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 28|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 31|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 44|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 19|17|13|13|14|15|12|11|11|18|12|16|14|15|16|17|18|19|0 30|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 47|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 44|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 59|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 36|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 21|18|17|17|16|15|14|13|12|12|20|13|14|15|16|19|18|19|20|21|0 22|21|20|20|23|18|17|17|16|15|14|14|25|15|16|19|18|19|24|21|22|23|24|25|0 20|19|18|16|16|17|15|14|14|13|13|23|22|15|21|17|18|19|20|21|22|23|0 74|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 11|9|9|10|12|8|8|13|10|11|12|13|0 35|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 27|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 22|21|20|19|17|17|16|15|15|14|13|13|14|23|16|18|18|19|20|21|22|23|0 30|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 46|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 53|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 32|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 29|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 17|14|12|12|11|10|10|15|16|11|13|13|14|15|16|17|0 45|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 41|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 20|19|18|16|15|15|14|13|12|12|21|13|14|17|16|17|18|19|20|21|0 39|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 23|23|24|18|18|19|20|17|16|15|14|14|22|15|16|17|21|19|20|21|22|25|24|25|0 53|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 52|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 53|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 27|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 80|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 53|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 45|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 37|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 16|16|14|13|10|10|11|12|15|11|12|13|14|15|17|17|0 42|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 14|14|12|10|10|9|9|13|11|11|12|13|15|15|0 15|15|14|14|17|12|12|11|11|19|13|13|18|16|16|17|18|19|0 23|23|22|21|20|20|19|18|17|15|15|14|14|16|16|17|18|19|25|21|22|24|24|25|0 23|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 33|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 54|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 8|8|9|7|7|11|10|9|10|11|0 32|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 49|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 22|22|21|19|18|18|17|15|13|13|14|16|14|15|16|17|20|19|20|21|23|23|0 28|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 26|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 63|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 19|15|14|14|13|13|12|11|11|18|12|17|16|15|16|17|18|19|0 67|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 44|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 86|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 46|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 18|16|16|15|15|13|11|11|12|14|12|13|14|19|17|17|18|19|0 28|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 18|17|16|15|15|14|13|12|11|11|12|13|14|19|16|17|18|19|0 60|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 45|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 41|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 22|21|20|18|18|19|16|15|14|13|13|17|14|15|16|17|23|19|20|21|22|23|0 31|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 27|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 38|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 56|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 41|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 45|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 3|3|0 27|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 54|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 39|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 41|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 80|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 17|13|13|14|15|12|12|11|11|19|18|16|14|15|16|17|18|19|0 58|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 18|18|17|16|15|14|13|11|11|12|12|13|14|15|16|17|19|19|0 31|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 38|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 26|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 12|9|9|8|8|11|13|10|10|11|12|13|0 33|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 48|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 27|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 9|9|8|7|7|11|8|10|10|11|0 35|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 44|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 78|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 25|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 29|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 33|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 39|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 19|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|18|19|0 19|17|16|16|15|14|12|11|11|13|12|13|14|15|18|17|18|19|0 43|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 22|21|19|19|18|16|15|15|14|13|13|23|14|17|16|17|18|20|20|21|22|23|0 26|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 38|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 4|4|5|5|0 33|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 9|6|6|7|8|7|8|9|0 49|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 13|13|14|11|10|9|9|12|10|11|12|15|14|15|0 28|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 51|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 20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 28|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 95|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 61|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 29|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 31|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 72|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 30|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 44|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 71|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 42|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 49|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 59|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 55|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 62|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 54|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 22|20|20|21|19|17|16|15|14|13|13|18|14|15|16|17|18|19|23|21|22|23|0 27|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 57|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 55|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 10|8|8|7|7|11|9|9|10|11|0 63|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 42|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 64|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 48|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 55|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 29|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 36|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 31|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 29|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 22|21|21|20|19|16|16|15|13|13|14|18|14|15|17|17|18|19|20|23|22|23|0 45|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 60|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 44|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 43|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 35|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 21|19|16|15|14|13|13|17|12|12|20|18|14|15|16|17|18|19|20|21|0 25|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 49|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 52|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 45|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 23|20|20|19|18|17|16|14|14|13|13|22|15|15|16|17|18|19|21|21|22|23|0 46|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 29|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 44|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 35|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 34|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 9|7|6|6|8|7|8|9|0 23|21|18|17|15|14|14|16|19|13|13|22|20|15|16|17|18|19|20|21|22|23|0 58|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 15|15|16|14|12|11|10|10|13|11|12|13|14|17|16|17|0 39|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 54|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 18|17|15|14|13|12|12|11|11|19|16|13|14|15|16|17|18|19|0 52|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 23|21|18|17|16|16|19|15|14|13|13|22|14|15|20|17|18|19|20|21|22|23|0 20|19|18|18|16|15|15|14|13|12|12|13|14|17|16|17|21|19|20|21|0 55|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 13|9|9|10|8|8|12|11|10|11|12|13|0 42|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 79|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 37|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 38|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 13|13|11|11|10|10|9|9|15|12|12|14|14|15|0 58|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 50|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 33|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 40|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 19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0 37|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 14|12|11|10|9|9|13|15|10|11|12|13|14|15|0 20|20|18|17|15|15|13|13|12|12|19|14|14|16|16|17|18|19|21|21|0 51|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 12|12|11|11|10|9|9|15|10|14|13|13|14|15|0 28|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 44|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 50|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 54|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 13|13|14|15|11|11|10|10|17|12|12|16|14|15|16|17|0 22|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 48|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 8|8|9|7|7|11|10|9|10|11|0 52|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 29|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 41|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 24|23|22|17|17|18|16|16|20|15|14|14|25|15|21|19|18|19|20|21|22|23|24|25|0 24|23|21|20|20|19|19|18|15|14|14|16|17|15|16|17|18|25|22|21|22|23|24|25|0 37|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 35|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 29|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 47|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 67|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 20|19|18|18|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0 24|24|22|21|18|18|19|17|16|15|14|14|23|15|16|17|20|19|20|21|22|23|25|25|0 46|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 48|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 35|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 60|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 64|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 31|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 41|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 39|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 31|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 36|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 24|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 44|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 17|16|16|14|14|13|12|11|11|19|12|13|15|15|18|17|18|19|0 40|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 24|23|22|21|21|20|18|18|16|14|14|15|17|15|16|17|19|19|20|25|22|23|24|25|0 41|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 44|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 92|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 49|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 40|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 46|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 33|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 67|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 41|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 60|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 66|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 30|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 18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0 55|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 30|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 35|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 45|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 64|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 39|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 71|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 45|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 53|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 16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 46|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 64|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 24|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 56|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 39|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 25|21|20|20|22|18|17|16|16|15|14|14|24|15|19|17|18|19|23|21|22|23|24|25|0 27|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 42|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 16|16|15|12|10|10|11|13|14|11|12|13|14|15|17|17|0 53|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 17|13|13|14|12|12|16|11|11|19|18|15|14|15|16|17|18|19|0 8|8|9|7|7|11|10|9|10|11|0 75|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 21|21|20|19|18|17|17|15|14|13|13|16|14|15|16|23|18|19|20|22|22|23|0 57|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 81|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 70|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 11|11|10|9|8|8|13|9|10|12|12|13|0 19|19|20|16|16|15|13|13|12|12|18|14|14|15|17|17|18|21|20|21|0 17|16|13|13|14|15|18|11|11|12|12|19|14|15|16|17|18|19|0 12|12|11|10|10|14|9|9|15|11|13|13|14|15|0 4|4|5|5|0 71|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 39|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 64|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 38|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 31|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 34|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 51|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 49|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 13|12|11|10|10|9|9|15|14|11|12|13|14|15|0 19|18|15|15|16|13|12|12|11|11|14|13|14|17|16|17|18|19|0 41|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 36|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 14|12|11|11|10|9|9|15|10|13|12|13|14|15|0 14|12|11|10|9|9|13|15|10|11|12|13|14|15|0 78|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 38|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 13|12|11|10|9|8|8|9|10|11|12|13|0 85|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 84|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 20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 30|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 38|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 41|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 25|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 20|20|18|17|16|14|14|12|12|13|19|13|15|15|16|17|18|19|21|21|0 35|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 75|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 38|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 46|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 49|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 38|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 42|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 21|21|19|17|17|18|16|14|14|13|13|23|15|15|16|20|18|19|20|22|22|23|0 34|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 47|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 24|23|22|21|20|19|18|18|17|16|14|14|15|15|16|17|25|19|20|21|22|23|24|25|0 7|6|5|5|6|7|0 48|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 62|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 50|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 71|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 26|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 43|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 43|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 28|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 58|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 28|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 34|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 56|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 46|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 20|19|19|17|14|14|13|13|12|12|18|16|15|15|16|17|18|21|20|21|0 24|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 58|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 28|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 12|10|10|9|8|8|13|9|11|11|12|13|0 23|21|20|18|18|17|15|15|14|13|13|22|14|16|16|17|19|19|20|21|22|23|0 37|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 16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0 41|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 78|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 28|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 32|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 39|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 71|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 36|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 62|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 45|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 66|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 79|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 48|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 57|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 62|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 12|12|8|8|9|10|11|9|10|11|13|13|0 17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0 13|11|10|9|8|8|12|9|10|11|12|13|0 17|16|15|15|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0 21|20|19|19|18|16|14|14|15|13|13|23|17|15|16|17|18|22|20|21|22|23|0 17|16|15|14|13|13|12|11|11|19|12|18|14|15|16|17|18|19|0 31|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 29|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 15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0 30|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 37|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 44|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 42|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 42|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 35|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 40|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 15|11|11|12|10|9|9|14|10|13|12|13|14|15|0 68|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 41|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 28|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 55|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 17|17|18|14|14|13|12|11|11|16|12|13|15|15|16|19|18|19|0 41|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 17|16|13|13|12|11|10|10|15|11|12|14|14|15|16|17|0 33|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 36|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 37|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 8|8|9|7|7|11|10|9|10|11|0 21|20|19|19|18|15|14|14|16|13|13|23|17|15|16|17|18|22|20|21|22|23|0 36|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 21|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 48|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 46|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 51|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 38|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 49|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 64|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 28|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 25|22|18|18|19|20|17|17|16|15|14|14|24|15|16|23|21|19|20|21|22|23|24|25|0 22|19|19|20|21|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0 9|8|7|6|6|7|8|9|0 59|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 26|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 40|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 43|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 11|11|10|9|9|8|8|13|10|12|12|13|0 23|21|20|19|18|16|15|13|13|14|17|22|14|15|16|17|18|19|20|21|22|23|0 10|9|9|8|7|7|8|11|10|11|0 52|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 25|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 82|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 8|7|6|6|9|7|8|9|0 58|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 44|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 26|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 65|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 27|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 47|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 60|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 20|18|18|19|21|22|23|14|14|15|16|17|25|15|16|17|24|19|20|21|22|23|24|25|0 9|7|6|6|8|7|8|9|0 46|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 48|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 45|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 19|18|17|14|13|13|12|11|11|16|12|15|14|15|16|17|18|19|0 10|8|8|7|7|11|9|9|10|11|0 31|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 40|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 41|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 9|8|7|6|6|7|8|9|0 60|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 4|4|5|5|0 17|14|14|12|11|11|10|10|16|13|12|13|15|15|16|17|0 54|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 20|20|17|17|16|15|14|13|12|12|19|13|14|15|16|18|18|19|21|21|0 43|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 29|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 47|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 84|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 45|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 56|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 61|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 25|24|22|21|21|20|18|17|16|15|14|14|19|15|16|17|18|19|20|23|22|23|24|25|0 40|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 46|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 67|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 72|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 16|14|14|15|12|11|10|10|13|11|12|13|17|15|16|17|0 21|20|20|19|18|17|16|15|14|13|13|23|14|15|16|17|18|19|22|21|22|23|0 15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0 35|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 42|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 43|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 18|15|15|14|14|17|13|13|12|12|21|20|19|16|16|17|18|19|20|21|0 44|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 90|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 49|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 21|16|16|17|18|15|14|13|12|12|20|13|14|15|19|17|18|19|20|21|0 33|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 28|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 56|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 44|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 17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0 17|16|16|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0 67|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 63|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 43|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 30|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 60|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 36|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 10|10|11|12|8|8|9|9|13|11|12|13|0 18|16|15|14|13|12|11|11|17|19|12|13|14|15|16|17|18|19|0 32|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 26|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 52|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 45|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 37|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 15|14|12|11|10|9|9|13|10|11|12|13|14|15|0 23|23|22|21|19|19|20|17|15|14|14|16|18|15|16|17|18|25|20|21|22|24|24|25|0 37|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 24|23|22|22|21|19|18|18|16|15|14|14|17|15|16|17|20|19|20|21|25|23|24|25|0 50|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 38|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 37|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 18|17|16|15|14|13|11|11|12|19|12|13|14|15|16|17|18|19|0 11|8|8|7|7|10|9|9|10|11|0 13|13|11|11|10|9|9|15|10|12|12|14|14|15|0 28|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 19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0 37|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 26|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 66|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 26|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 35|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 37|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 7|6|5|5|6|7|0 34|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 33|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 22|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 27|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 74|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 46|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 53|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 27|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 24|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 39|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 29|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 13|11|10|9|8|8|12|9|10|11|12|13|0 9|6|6|7|8|7|8|9|0 25|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 41|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 13|12|12|11|9|9|10|15|10|11|14|13|14|15|0 27|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 26|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 89|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 14|13|12|11|11|9|9|10|10|15|12|13|14|15|0 39|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 14|14|13|12|11|10|9|9|10|11|12|13|15|15|0 32|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 11|10|8|7|7|9|8|9|10|11|0 21|20|20|15|15|16|14|14|18|13|13|23|19|17|16|17|18|19|22|21|22|23|0 9|9|8|7|7|11|8|10|10|11|0 26|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 66|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 9|8|8|7|7|11|10|9|10|11|0 19|17|16|15|14|14|18|13|12|12|21|13|20|15|16|17|18|19|20|21|0 38|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 36|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 6|5|5|7|6|7|0 39|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 45|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 33|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 57|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 43|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 41|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 47|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 25|22|21|21|20|19|18|16|16|15|14|14|24|15|17|17|18|19|20|23|22|23|24|25|0 21|19|18|17|16|15|13|12|12|14|20|13|14|15|16|17|18|19|20|21|0 50|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 39|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 10|9|9|8|7|7|8|11|10|11|0 38|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 52|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 49|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 51|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 49|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 23|22|22|21|20|19|18|17|16|14|14|15|25|15|16|17|18|19|20|21|24|23|24|25|0 27|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 19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 74|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 18|18|17|16|13|12|12|11|11|15|14|13|14|15|16|17|19|19|0 10|10|8|7|7|9|8|9|11|11|0 31|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 41|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 56|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 58|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 47|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 37|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 38|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 12|10|10|9|8|8|13|9|11|11|12|13|0 68|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 30|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 9|8|7|6|6|7|8|9|0 39|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 54|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 32|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 40|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 60|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 35|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 28|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 60|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 69|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 52|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 46|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 41|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 64|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 27|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 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 35|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 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 19|19|18|18|17|15|15|13|12|12|14|13|14|16|16|17|21|20|20|21|0 28|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 33|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 56|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 83|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 60|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 33|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 19|17|15|15|14|12|11|11|13|18|12|13|14|16|16|17|18|19|0 3|3|0 24|24|23|21|20|19|18|16|16|15|14|14|22|15|17|17|18|19|20|21|22|23|25|25|0 53|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 57|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 46|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 22|21|19|19|20|18|17|16|13|13|14|15|14|15|16|17|18|23|20|21|22|23|0 25|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 45|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 34|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 71|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 68|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 19|18|18|20|16|13|13|14|12|12|17|15|14|15|16|17|21|19|20|21|0 66|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 63|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 30|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 32|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 43|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 18|18|16|14|12|12|13|11|11|17|15|13|14|15|16|17|19|19|0 65|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 36|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 56|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 49|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 52|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 32|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 21|19|18|17|15|15|14|13|12|12|20|13|14|16|16|17|18|19|20|21|0 42|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 23|22|19|19|17|17|16|15|14|13|13|21|14|15|16|18|18|20|20|21|22|23|0 37|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 77|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 24|22|22|21|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|21|23|23|24|25|0 13|13|12|12|10|9|9|11|10|11|15|14|14|15|0 35|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 31|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 34|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 11|10|7|7|8|9|8|9|10|11|0 31|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 56|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 37|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 42|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 41|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 32|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 77|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 66|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 17|16|15|15|12|12|13|14|11|11|19|13|14|18|16|17|18|19|0 10|10|9|7|7|8|8|9|11|11|0 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 55|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 26|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 49|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 23|21|18|17|17|19|16|15|14|13|13|22|14|15|16|20|18|19|20|21|22|23|0 37|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 59|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 56|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 24|23|22|21|20|20|18|17|16|15|14|14|19|15|16|17|18|19|25|21|22|23|24|25|0 36|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 31|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 50|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 33|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 25|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 68|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 36|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 46|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 12|12|10|9|8|8|11|9|10|11|13|13|0 18|18|15|15|11|11|12|13|14|17|12|13|14|16|16|17|19|19|0 50|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 42|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 21|20|17|17|16|14|14|13|12|12|19|13|15|15|16|18|18|19|20|21|0 31|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 23|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 49|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 57|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 24|23|22|22|17|16|16|18|19|15|14|14|21|15|20|17|18|19|20|21|25|23|24|25|0 52|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 19|17|16|15|14|13|11|11|12|18|12|13|14|15|16|17|18|19|0 10|7|7|8|9|11|8|9|10|11|0 70|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 53|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 23|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 18|17|16|16|15|14|11|11|12|13|12|13|14|15|19|17|18|19|0 57|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 28|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 15|11|10|9|9|12|13|14|10|11|12|13|14|15|0 30|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 22|21|20|19|15|15|16|17|18|14|13|13|14|23|16|17|18|19|20|21|22|23|0 9|8|7|6|6|7|8|9|0 62|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 15|14|12|12|11|9|9|10|10|11|13|13|14|15|0 54|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 41|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 60|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 19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0 37|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 47|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 33|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 14|12|11|11|10|9|9|15|10|13|12|13|14|15|0 60|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 20|19|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|21|20|21|0 62|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 49|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 39|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 35|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 25|22|22|21|20|15|14|14|16|17|18|19|24|15|16|17|18|19|20|21|23|23|24|25|0 33|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 27|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 39|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 31|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 54|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 36|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 31|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 19|18|18|17|17|15|14|12|12|13|16|13|14|15|16|21|20|19|20|21|0 21|19|17|15|15|16|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0 98|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 70|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 8|8|9|7|7|11|10|9|10|11|0 34|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 28|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 26|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 8|8|9|7|7|11|10|9|10|11|0 52|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 26|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 40|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 63|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 10|10|8|7|7|9|8|9|11|11|0 23|22|22|21|21|18|18|17|15|15|14|14|20|16|16|17|19|19|20|25|24|23|24|25|0 11|9|8|7|7|10|8|9|10|11|0 78|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 33|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 45|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 32|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 32|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 28|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 17|17|15|14|14|13|12|11|11|19|12|13|16|15|16|18|18|19|0 7|7|6|6|9|8|8|9|0 26|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 37|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 61|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 17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0 22|21|21|20|19|17|16|15|14|13|13|18|14|15|16|17|18|19|20|23|22|23|0 64|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 26|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 22|21|20|19|19|15|15|16|14|13|13|18|14|17|16|17|18|23|20|21|22|23|0 31|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 40|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 37|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 41|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 47|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 18|18|17|16|16|15|15|21|14|13|13|23|14|22|20|17|19|19|20|21|22|23|0 37|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 73|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 61|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 7|6|5|5|6|7|0 11|11|12|9|8|8|10|9|10|13|12|13|0 36|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 17|15|14|14|12|11|10|10|13|11|12|13|16|15|16|17|0 37|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 50|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 36|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 38|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 26|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 42|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 47|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 48|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 48|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 45|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 20|20|21|22|19|17|17|15|14|13|13|16|14|15|16|18|18|19|23|21|22|23|0 79|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 46|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 21|18|15|14|14|16|13|13|12|12|20|19|17|15|16|17|18|19|20|21|0 35|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 21|20|17|16|16|18|14|12|12|13|15|13|14|15|19|17|18|19|20|21|0 25|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 43|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 57|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 31|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 17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0 29|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 22|21|20|19|19|18|15|15|14|13|13|17|14|16|16|17|18|23|20|21|22|23|0 50|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 56|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 40|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 35|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 13|13|11|11|10|9|9|15|10|12|12|14|14|15|0 47|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 18|18|16|13|13|14|12|11|11|17|12|15|14|15|16|17|19|19|0 42|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 54|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 12|12|10|9|8|8|11|9|10|11|13|13|0 35|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 27|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 67|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 19|19|20|18|17|14|14|13|12|12|16|13|15|15|16|17|18|21|20|21|0 64|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 23|20|19|19|18|17|16|15|14|13|13|22|14|15|16|17|18|21|20|21|22|23|0 29|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 34|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 42|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 76|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 80|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 21|19|18|17|15|15|14|12|12|13|20|13|14|16|16|17|18|19|20|21|0 18|18|17|17|20|21|16|15|14|13|13|23|14|15|16|22|19|19|20|21|22|23|0 28|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 24|23|23|21|20|18|15|15|16|17|14|14|22|19|16|17|18|19|20|21|22|25|24|25|0 21|21|20|19|19|16|16|15|13|13|14|18|14|15|17|17|18|23|20|22|22|23|0 29|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 15|15|14|11|11|12|10|10|17|13|12|13|14|16|16|17|0 51|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 29|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 64|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 9|8|7|7|10|11|8|9|10|11|0 37|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 33|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 34|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 35|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 32|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 26|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 19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0 12|9|9|10|11|8|8|13|10|11|12|13|0 50|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 34|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 29|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 24|21|21|22|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|23|22|23|24|25|0 10|10|8|7|7|9|8|9|11|11|0 25|20|19|19|21|22|18|17|16|15|14|14|24|15|16|17|18|23|20|21|22|23|24|25|0 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 45|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 46|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 60|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 58|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 31|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 26|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 47|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 55|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 52|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 35|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 33|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 21|21|20|18|18|19|17|16|14|13|13|15|14|15|16|17|23|19|20|22|22|23|0 20|19|18|17|15|15|16|12|12|13|14|13|14|21|16|17|18|19|20|21|0 21|19|18|17|12|12|13|14|15|16|20|13|14|15|16|17|18|19|20|21|0 60|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 36|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 12|10|10|9|8|8|13|9|11|11|12|13|0 29|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 59|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 22|22|18|17|17|16|14|14|15|13|13|21|20|15|16|19|18|19|20|21|23|23|0 55|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 34|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 40|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 39|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 20|19|18|17|16|16|21|22|23|14|14|15|25|15|24|17|18|19|20|21|22|23|24|25|0 50|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 30|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 78|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 51|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 16|16|14|12|11|11|10|10|15|13|12|13|14|15|17|17|0 18|18|17|15|14|14|11|11|12|13|12|13|16|15|16|17|19|19|0 29|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 29|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 67|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 22|22|20|18|18|17|15|14|14|13|13|21|16|15|16|17|19|19|20|21|23|23|0 16|16|15|14|13|13|18|12|11|11|12|19|14|15|17|17|18|19|0 79|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 9|7|6|6|8|7|8|9|0 25|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 43|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 55|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 25|22|21|21|20|17|17|16|15|15|14|14|24|19|16|18|18|19|20|23|22|23|24|25|0 18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0 39|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 33|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 8|6|6|7|9|7|8|9|0 51|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 42|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 37|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 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 13|11|10|9|8|8|12|9|10|11|12|13|0 38|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 32|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 17|13|13|12|12|11|10|10|16|11|15|14|14|15|16|17|0 35|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 21|21|22|19|19|17|17|18|16|15|14|14|25|15|16|24|18|20|20|23|22|23|24|25|0 34|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 29|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 39|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 19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 17|17|18|19|16|15|14|13|12|12|21|13|14|15|16|20|18|19|20|21|0 18|18|15|15|13|12|12|11|11|17|14|13|14|16|16|17|19|19|0 18|18|17|16|14|12|12|11|11|15|13|13|14|15|16|17|19|19|0 66|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 47|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 21|21|20|19|18|17|16|16|14|13|13|15|14|15|23|17|18|19|20|22|22|23|0 38|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 50|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 35|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 49|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 9|8|8|7|7|11|10|9|10|11|0 23|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 31|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 27|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 21|19|17|17|16|14|14|13|12|12|20|13|15|15|16|18|18|19|20|21|0 40|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 23|21|19|18|17|17|16|14|13|13|15|22|14|15|16|20|18|19|20|21|22|23|0 63|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 28|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 47|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 59|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 31|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 67|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 34|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 35|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 22|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0 46|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 15|13|11|10|9|9|12|14|10|11|12|13|14|15|0 37|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 53|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 26|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 82|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 10|7|7|8|9|11|8|9|10|11|0 18|16|15|15|14|13|12|11|11|19|12|13|14|17|16|17|18|19|0 52|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 35|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 53|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 35|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 34|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 43|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 64|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 10|10|8|7|7|9|8|9|11|11|0 5|4|4|5|0 55|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 43|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 52|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 34|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 25|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 26|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 42|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 64|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 62|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 15|14|14|13|11|11|12|10|10|17|12|13|16|15|16|17|0 33|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 58|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 51|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 33|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 40|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 38|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 22|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 33|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 43|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 53|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 37|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 77|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 13|11|9|9|8|8|12|10|10|11|12|13|0 41|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 49|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 19|18|17|15|14|14|13|12|11|11|12|13|16|15|16|17|18|19|0 37|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 33|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 77|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 30|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 40|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 74|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 17|16|16|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0 34|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 44|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 86|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 27|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 27|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 74|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 13|12|11|10|10|9|9|15|14|11|12|13|14|15|0 40|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 16|16|14|14|12|11|10|10|13|11|12|13|15|15|17|17|0 13|11|9|9|8|8|12|10|10|11|12|13|0 20|19|19|17|16|15|13|13|12|12|18|14|14|15|16|17|18|21|20|21|0 43|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 20|17|17|18|16|16|15|13|12|12|14|13|14|15|21|19|18|19|20|21|0 21|21|22|18|16|16|15|15|14|13|13|20|14|19|17|17|18|19|20|23|22|23|0 46|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 74|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 21|19|18|16|15|15|14|12|12|13|20|13|14|17|16|17|18|19|20|21|0 39|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 46|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 55|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 36|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 36|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 15|15|14|13|12|11|10|10|17|11|12|13|14|16|16|17|0 39|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 34|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 52|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 49|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 25|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 17|14|14|13|11|11|10|10|16|12|12|13|15|15|16|17|0 52|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 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 11|10|10|9|9|8|8|13|12|11|12|13|0 39|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 18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0 28|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 16|16|15|12|12|11|10|10|14|11|13|13|14|15|17|17|0 40|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 14|14|12|10|10|9|9|13|11|11|12|13|15|15|0 32|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 34|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 41|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 29|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 48|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 39|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 46|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 23|20|20|19|18|17|16|14|14|13|13|22|15|15|16|17|18|19|21|21|22|23|0 28|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 44|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 37|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 18|17|16|15|15|14|11|11|12|13|12|13|14|19|16|17|18|19|0 18|16|15|15|17|13|12|11|11|14|12|13|14|19|16|17|18|19|0 18|16|16|14|14|15|13|12|11|11|12|13|19|15|17|17|18|19|0 22|21|20|19|18|17|16|15|14|13|13|23|14|15|16|17|18|19|20|21|22|23|0 39|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 13|12|12|14|10|9|9|11|10|11|15|13|14|15|0 28|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 36|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 20|19|18|18|15|15|14|13|12|12|17|13|14|16|16|17|21|19|20|21|0 22|22|20|19|17|16|16|15|14|13|13|21|14|15|18|17|18|19|20|21|23|23|0 34|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 72|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 20|18|17|17|16|14|14|13|12|12|21|13|15|15|16|19|18|19|20|21|0 7|7|6|6|9|8|8|9|0 14|12|11|10|9|9|13|15|10|11|12|13|14|15|0 33|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 34|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 32|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 35|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 43|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 19|17|15|13|13|14|12|11|11|18|12|16|14|15|16|17|18|19|0 66|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 31|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 69|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 15|15|16|17|13|13|12|11|11|19|12|14|14|18|16|17|18|19|0 16|15|15|12|11|10|10|13|14|11|12|13|14|17|16|17|0 51|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 37|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 34|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 45|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 56|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 38|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 39|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 29|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 13|11|10|9|8|8|12|9|10|11|12|13|0 10|10|8|7|7|9|8|9|11|11|0 21|19|19|18|18|22|23|16|16|14|14|15|25|15|17|17|24|20|20|21|22|23|24|25|0 32|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 67|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 18|18|19|17|17|14|13|12|12|15|16|13|14|15|16|21|20|19|20|21|0 47|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 46|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 41|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 48|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 71|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 27|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 35|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 29|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 32|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 28|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 41|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 19|19|17|17|18|15|14|12|12|13|16|13|14|15|16|21|18|20|20|21|0 24|23|23|22|20|20|18|17|16|14|14|15|19|15|16|17|18|19|21|21|22|25|24|25|0 24|22|22|23|21|20|17|16|16|15|14|14|19|15|18|17|18|19|20|21|25|23|24|25|0 54|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 78|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 28|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 63|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 52|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 32|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 48|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 59|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 67|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 45|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 18|17|17|19|15|15|13|13|12|12|21|14|14|16|16|20|18|19|20|21|0 49|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 60|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 82|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 30|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 24|23|21|21|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|22|22|23|24|25|0 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 40|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 55|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 24|23|22|21|20|20|19|18|15|15|14|14|17|16|16|17|18|19|25|21|22|23|24|25|0 26|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 60|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 14|14|12|10|10|9|9|13|11|11|12|13|15|15|0 25|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 48|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 36|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 44|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 7|7|8|6|6|9|8|9|0 18|14|14|15|13|13|12|11|11|19|12|17|16|15|16|17|18|19|0 65|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 31|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 45|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 27|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 36|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 24|23|22|21|21|20|19|17|16|14|14|15|18|15|16|17|18|19|20|25|22|23|24|25|0 35|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 30|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 11|9|7|7|8|10|8|9|10|11|0 64|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 64|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 36|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 14|13|13|15|12|11|10|10|17|11|12|16|14|15|16|17|0 70|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 50|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 35|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 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 32|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 16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0 19|17|16|15|14|12|12|11|11|18|13|13|14|15|16|17|18|19|0 50|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 68|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 52|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 21|19|19|15|15|14|13|12|12|17|18|13|14|16|16|17|18|20|20|21|0 26|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 34|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 59|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 39|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 50|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 57|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 28|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 17|12|12|13|14|11|10|10|16|11|15|13|14|15|16|17|0 50|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 56|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 50|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 46|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 31|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 52|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 24|23|22|22|19|19|18|17|16|15|14|14|21|15|16|17|18|20|20|21|25|23|24|25|0 14|13|12|11|11|9|9|10|10|15|12|13|14|15|0 50|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 13|11|11|12|10|10|9|9|15|14|12|13|14|15|0 38|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 33|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 60|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 47|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 48|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 31|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 15|15|12|12|13|11|10|10|17|11|14|13|14|16|16|17|0 23|21|20|20|22|18|18|17|16|14|14|15|25|15|16|17|19|19|24|21|22|23|24|25|0 53|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 33|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 43|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 36|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 44|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 39|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 27|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 32|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 33|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 53|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 36|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 22|21|19|19|20|23|17|17|15|15|14|14|25|16|16|18|18|24|20|21|22|23|24|25|0 48|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 10|8|7|7|9|11|8|9|10|11|0 35|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 47|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 39|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 32|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 61|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 11|11|10|10|8|8|9|9|13|12|12|13|0 37|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 34|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 12|12|10|9|8|8|11|9|10|11|13|13|0 35|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 37|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 15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0 21|20|17|15|14|13|13|12|12|18|19|16|14|15|16|17|18|19|20|21|0 28|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 39|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 8|8|9|7|7|11|10|9|10|11|0 50|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 44|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 9|8|7|6|6|7|8|9|0 33|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 25|23|20|19|19|21|17|17|16|14|14|15|24|15|16|18|18|22|20|21|22|23|24|25|0 43|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 77|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 40|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 19|18|17|17|16|15|14|14|12|12|13|13|21|15|16|20|18|19|20|21|0 22|22|20|17|16|16|15|15|14|13|13|21|14|19|18|17|18|19|20|21|23|23|0 67|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 54|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 29|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 35|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 33|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 21|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|22|22|23|0 27|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 22|21|20|19|19|18|17|17|16|15|14|14|25|15|16|24|18|23|20|21|22|23|24|25|0 45|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 63|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 75|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 53|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 65|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 29|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 29|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 26|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 27|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 57|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 73|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 54|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 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 16|16|13|13|12|12|10|10|11|11|15|14|14|15|17|17|0 40|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 43|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 33|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 34|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 36|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 24|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 18|17|16|15|15|13|11|11|12|14|12|13|14|19|16|17|18|19|0 17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0 18|17|17|15|13|12|12|11|11|16|14|13|14|15|16|19|18|19|0 53|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 64|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 75|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 32|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 66|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 35|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 38|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 35|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 24|23|23|21|19|19|18|16|15|15|14|14|22|17|16|17|18|20|20|21|22|25|24|25|0 46|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 11|9|8|7|7|10|8|9|10|11|0 18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0 20|19|18|18|21|22|17|15|14|13|13|16|14|15|16|17|23|19|20|21|22|23|0 55|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 26|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 24|23|20|20|19|18|18|15|15|16|14|14|25|17|16|17|22|19|21|21|22|23|24|25|0 46|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 52|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 39|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 15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0 33|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 35|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 17|16|15|15|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0 17|17|18|15|15|16|20|21|14|13|13|23|14|22|16|19|18|19|20|21|22|23|0 57|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 29|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 41|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 17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0 46|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 61|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 39|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 56|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 35|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 35|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 9|6|6|7|8|7|8|9|0 21|20|20|18|18|19|16|15|14|13|13|17|14|15|16|17|23|19|22|21|22|23|0 80|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 40|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 33|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 53|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 62|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 44|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 37|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 46|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 17|15|15|14|14|18|19|12|12|13|21|13|20|16|16|17|18|19|20|21|0 52|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 5|4|4|5|0 49|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 71|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 24|24|21|21|20|19|17|16|16|15|14|14|23|15|18|17|18|19|20|22|22|23|25|25|0 26|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 41|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 62|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 27|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 80|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 56|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 29|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 42|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 45|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 19|17|16|15|13|12|12|11|11|18|14|13|14|15|16|17|18|19|0 14|11|11|10|10|13|9|9|15|12|12|13|14|15|0 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 23|22|20|19|17|17|15|15|14|13|13|21|14|16|16|18|18|19|20|21|22|23|0 51|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 27|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 32|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 37|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 31|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 23|21|20|20|19|18|16|15|14|13|13|17|14|15|16|17|18|19|22|21|22|23|0 17|16|13|12|12|11|10|10|15|11|14|13|14|15|16|17|0 33|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 74|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 49|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 35|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 59|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 26|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 25|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 49|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 67|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 24|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 25|23|23|21|20|18|17|17|16|15|14|14|22|15|16|19|18|19|20|21|22|24|24|25|0 45|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 70|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 13|10|10|9|8|8|12|9|11|11|12|13|0 29|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 26|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 13|9|9|10|8|8|12|11|10|11|12|13|0 33|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 66|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 52|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 44|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 38|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 36|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 61|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 60|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 38|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 17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0 52|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 54|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 29|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 56|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 51|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 53|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 33|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 76|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 10|7|7|8|9|11|8|9|10|11|0 35|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 34|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 26|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 53|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 12|10|8|8|9|11|13|9|10|11|12|13|0 15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0 41|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 38|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 15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0 69|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 15|12|12|10|10|9|9|14|11|11|13|13|14|15|0 13|11|9|9|8|8|12|10|10|11|12|13|0 78|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 56|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 49|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 61|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 20|19|19|17|15|14|14|13|12|12|18|13|16|15|16|17|18|21|20|21|0 35|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 47|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 56|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 29|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 25|23|22|21|20|19|17|17|15|15|14|14|24|16|16|18|18|19|20|21|22|23|24|25|0 14|14|15|16|11|11|10|10|13|12|12|13|17|15|16|17|0 23|22|22|24|21|19|18|17|16|14|14|15|20|15|16|17|18|19|20|21|25|23|24|25|0 57|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 59|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 52|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 47|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 45|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 41|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 29|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 50|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 57|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 101|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 32|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 48|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 39|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 28|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 65|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 40|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 9|6|6|7|8|7|8|9|0 12|11|11|10|8|8|9|9|10|13|12|13|0 21|20|19|17|16|15|13|13|12|12|18|14|14|15|16|17|18|19|20|21|0 19|18|18|17|15|15|14|13|12|12|21|13|14|16|16|17|20|19|20|21|0 25|22|21|20|20|18|17|16|16|15|14|14|24|15|19|17|18|19|23|21|22|23|24|25|0 19|19|17|17|16|14|14|13|12|12|21|13|15|15|16|18|18|20|20|21|0 4|4|5|5|0 29|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 22|22|20|18|16|16|15|15|14|13|13|21|14|19|17|17|18|19|20|21|23|23|0 48|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 11|10|10|9|8|8|13|9|12|11|12|13|0 28|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 11|11|12|9|8|8|10|9|10|13|12|13|0 18|18|16|12|12|13|14|11|11|17|15|13|14|15|16|17|19|19|0 25|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 48|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 42|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 31|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 36|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 75|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 41|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 33|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 8|8|9|7|7|11|10|9|10|11|0 18|17|16|15|15|13|12|11|11|14|12|13|14|19|16|17|18|19|0 41|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 46|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 31|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 13|11|11|9|8|8|10|9|10|12|12|13|0 52|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 60|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 75|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 21|20|20|19|19|16|16|15|14|13|13|18|14|15|17|17|18|23|22|21|22|23|0 43|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 26|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 24|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 13|11|10|8|8|9|12|9|10|11|12|13|0 57|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 9|9|8|7|7|11|8|10|10|11|0 42|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 44|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 8|7|6|6|9|7|8|9|0 10|10|11|9|8|8|13|9|12|11|12|13|0 22|21|20|20|18|15|15|16|14|13|13|19|14|17|16|17|18|19|23|21|22|23|0 50|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 39|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 29|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 52|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 27|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 22|21|21|20|19|16|16|15|14|13|13|18|14|15|17|17|18|19|20|23|22|23|0 29|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 23|22|20|19|18|18|17|15|14|13|13|16|14|15|16|17|21|19|20|21|22|23|0 3|3|0 45|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 68|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 12|11|11|13|10|9|9|15|10|14|12|13|14|15|0 69|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 41|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 13|11|10|9|8|8|12|9|10|11|12|13|0 33|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 40|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 64|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 40|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 29|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 18|17|15|13|13|14|12|11|11|19|12|16|14|15|16|17|18|19|0 49|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 77|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 57|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 34|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 86|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 34|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 26|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 23|21|20|17|17|16|16|15|14|13|13|22|14|15|19|18|18|19|20|21|22|23|0 26|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 20|19|19|17|15|14|14|13|12|12|18|13|16|15|16|17|18|21|20|21|0 21|19|18|16|14|14|15|13|12|12|20|13|17|15|16|17|18|19|20|21|0 82|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 47|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 17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0 49|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 49|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 47|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 50|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 52|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 60|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 58|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 25|23|22|20|20|18|18|17|16|15|14|14|24|15|16|17|19|19|21|21|22|23|24|25|0 59|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 53|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 55|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 26|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 49|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 44|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 12|9|9|8|8|11|13|10|10|11|12|13|0 29|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 20|19|18|16|16|13|13|14|12|12|21|15|14|15|17|17|18|19|20|21|0 52|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 39|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 59|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 17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0 66|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 33|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 21|19|17|16|15|14|14|13|12|12|20|13|18|15|16|17|18|19|20|21|0 12|12|10|9|8|8|11|9|10|11|13|13|0 27|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 42|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 40|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 99|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 68|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 54|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 16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0 19|19|18|17|17|21|16|15|14|13|13|23|14|15|16|22|18|20|20|21|22|23|0 29|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 65|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 61|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 33|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 62|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 27|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 45|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 48|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 23|20|19|17|17|16|16|14|14|13|13|22|15|15|21|18|18|19|20|21|22|23|0 52|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 68|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 64|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 44|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 23|23|22|21|20|20|18|17|16|15|14|14|19|15|16|17|18|19|25|21|22|24|24|25|0 33|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 59|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 21|20|19|18|17|17|22|15|13|13|14|16|14|15|16|23|18|19|20|21|22|23|0 82|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 31|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 21|19|17|17|15|14|14|13|12|12|20|13|16|15|16|18|18|19|20|21|0 41|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 55|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 47|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 12|11|11|10|9|8|8|9|10|13|12|13|0 53|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 24|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 42|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 19|17|16|14|13|13|12|12|11|11|18|15|14|15|16|17|18|19|0 39|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 29|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 62|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 68|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 61|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 21|17|17|18|15|15|14|13|12|12|20|13|14|16|16|19|18|19|20|21|0 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 64|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 39|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 40|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 11|9|7|7|8|10|8|9|10|11|0 44|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 36|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 58|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 3|3|0 27|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 15|15|14|12|12|11|10|10|17|11|13|13|14|16|16|17|0 27|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 39|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 56|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 49|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 23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0 27|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 16|15|14|12|11|11|10|10|17|13|12|13|14|15|16|17|0 60|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 30|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 41|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 65|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 47|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 10|9|8|7|7|11|8|9|10|11|0 19|17|16|15|13|13|12|11|11|18|12|14|14|15|16|17|18|19|0 64|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 33|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 20|18|16|14|14|15|17|13|12|12|21|13|19|15|16|17|18|19|20|21|0 20|19|18|16|15|14|14|12|12|13|21|13|17|15|16|17|18|19|20|21|0 34|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 59|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 7|5|5|6|6|7|0 35|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 58|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 76|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 69|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 51|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 36|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 50|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 44|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 35|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 22|22|21|20|17|17|16|16|19|15|14|14|25|15|24|18|18|19|20|21|23|23|24|25|0 32|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 24|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 42|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 62|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 65|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 42|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 47|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 55|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 32|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 43|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 41|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 39|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 54|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 13|10|10|11|12|9|9|15|14|11|12|13|14|15|0 45|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 43|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 29|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 58|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 16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0 38|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 20|19|18|18|21|16|16|15|13|13|14|23|14|15|17|17|22|19|20|21|22|23|0 31|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 80|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 58|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 73|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 58|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 8|7|6|6|9|7|8|9|0 8|6|6|7|9|7|8|9|0 78|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 37|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 50|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 36|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 69|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 35|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 14|12|12|11|11|9|9|10|10|15|13|13|14|15|0 30|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 11|9|8|7|7|10|8|9|10|11|0 55|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 45|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 25|23|21|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|22|22|23|24|25|0 62|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 72|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 45|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 34|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 36|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 21|20|19|19|18|16|15|15|14|13|13|23|14|17|16|17|18|22|20|21|22|23|0 31|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 30|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 68|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 27|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 33|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 29|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 35|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 66|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 30|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 46|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 11|10|10|9|8|8|13|9|12|11|12|13|0 29|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 63|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 31|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 88|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 29|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 49|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 25|23|21|20|20|18|18|17|15|15|14|14|24|16|16|17|19|19|22|21|22|23|24|25|0 42|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 38|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 58|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 27|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 15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0 54|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 20|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|21|21|0 12|12|9|9|8|8|11|10|10|11|13|13|0 30|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 70|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 17|14|14|13|12|10|10|11|16|11|12|13|15|15|16|17|0 26|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 54|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 26|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 45|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 58|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 18|17|16|16|19|14|14|13|12|12|21|13|15|15|20|17|18|19|20|21|0 54|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 38|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 37|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 21|21|22|23|20|19|18|17|16|14|14|15|25|15|16|17|18|19|20|24|22|23|24|25|0 37|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 28|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 12|12|10|9|8|8|11|9|10|11|13|13|0 33|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 34|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 59|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 43|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 54|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 38|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 19|19|18|17|16|15|14|13|12|12|21|13|14|15|16|17|18|20|20|21|0 48|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 44|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 28|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 25|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 40|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 44|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 36|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 54|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 35|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 42|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 56|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 10|8|8|9|7|7|11|9|10|11|0 61|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 21|20|20|19|18|16|15|15|14|14|23|24|25|17|16|17|18|19|22|21|22|23|24|25|0 21|19|17|16|15|14|13|13|12|12|20|18|14|15|16|17|18|19|20|21|0 20|18|18|17|16|16|15|13|13|12|12|14|14|15|21|17|19|19|20|21|0 30|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 44|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 44|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 41|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 15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0 62|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 56|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 59|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 60|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 66|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 67|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 31|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 37|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 28|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 19|17|15|15|14|12|12|11|11|18|13|13|14|16|16|17|18|19|0 15|12|12|10|9|9|11|14|10|11|13|13|14|15|0 34|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 39|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 15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0 13|10|9|9|8|8|12|11|10|11|12|13|0 27|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 22|22|20|19|18|16|15|15|14|13|13|21|14|17|16|17|18|19|20|21|23|23|0 31|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 38|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 27|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 58|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 21|21|20|18|17|17|16|14|14|13|13|23|15|15|16|19|18|19|20|22|22|23|0 16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0 21|21|18|18|17|15|14|14|16|13|13|23|20|15|16|17|19|19|20|22|22|23|0 49|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 61|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 28|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 33|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 18|18|19|15|15|16|14|13|12|12|21|13|14|17|16|17|20|19|20|21|0 7|6|5|5|6|7|0 34|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 16|15|13|13|14|11|10|10|12|11|12|17|14|15|16|17|0 28|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 8|6|6|7|9|7|8|9|0 41|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 28|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 68|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 67|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 93|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 39|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 23|22|22|21|19|19|18|16|16|15|14|14|25|15|17|17|18|20|20|21|24|23|24|25|0 32|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 13|13|14|10|10|9|9|12|11|11|12|15|14|15|0 37|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 70|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 10|10|8|7|7|9|8|9|11|11|0 4|4|5|5|0 45|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 22|22|20|16|16|17|18|15|14|13|13|21|14|15|19|17|18|19|20|21|23|23|0 61|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 67|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 40|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 27|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 21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0 30|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 16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0 35|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 62|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 26|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 11|9|8|7|7|10|8|9|10|11|0 31|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 67|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 15|15|14|14|17|12|12|11|11|19|13|13|18|16|16|17|18|19|0 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 28|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 48|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 22|22|20|18|18|16|15|15|14|13|13|21|14|17|16|17|19|19|20|21|23|23|0 45|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 64|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 34|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 62|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 89|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 42|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 43|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 45|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 46|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 45|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 36|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 28|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 25|22|21|21|20|20|19|17|16|15|14|14|18|15|16|17|18|19|24|23|22|23|24|25|0 38|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 17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0 37|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 45|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 17|15|15|16|14|12|12|11|11|19|13|13|14|18|16|17|18|19|0 18|18|19|16|15|15|14|13|12|12|21|13|14|17|16|17|20|19|20|21|0 40|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 16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0 40|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 43|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 23|22|21|20|20|19|17|17|16|15|14|14|25|15|16|18|18|19|24|21|22|23|24|25|0 48|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 35|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 23|21|19|16|16|17|15|15|14|13|13|22|14|20|18|17|18|19|20|21|22|23|0 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 27|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 40|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 42|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 59|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 51|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 29|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 41|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 20|19|17|17|18|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0 14|13|11|11|12|10|9|9|10|15|12|13|14|15|0 55|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 34|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 44|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 64|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 40|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 21|20|19|19|18|17|16|14|14|13|13|23|15|15|16|17|18|22|20|21|22|23|0 87|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 57|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 10|7|7|8|9|11|8|9|10|11|0 96|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 18|16|16|15|12|12|13|11|11|19|14|13|14|15|17|17|18|19|0 43|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 23|23|22|22|20|18|18|17|16|15|14|14|21|15|16|17|19|19|20|21|25|24|24|25|0 56|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 13|12|10|9|8|8|11|9|10|11|12|13|0 40|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 12|10|10|9|8|8|13|9|11|11|12|13|0 35|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 10|8|7|7|9|11|8|9|10|11|0 64|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 15|15|16|13|11|11|10|10|14|12|12|13|14|17|16|17|0 67|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 17|17|18|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 25|22|22|21|20|19|18|16|16|15|14|14|24|15|17|17|18|19|20|21|23|23|24|25|0 14|14|11|9|9|10|12|13|10|11|12|13|15|15|0 27|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 87|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 51|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 11|10|9|9|8|8|13|12|10|11|12|13|0 33|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 59|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 29|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 60|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 26|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 38|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 26|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 33|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 37|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 28|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 17|16|16|18|19|15|14|12|12|13|21|13|14|15|20|17|18|19|20|21|0 17|15|14|13|11|11|10|10|16|12|12|13|14|15|16|17|0 44|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 57|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 41|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 15|14|10|10|11|9|9|13|12|11|12|13|14|15|0 28|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 33|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 13|11|9|9|8|8|12|10|10|11|12|13|0 29|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 21|20|20|19|19|23|18|16|16|15|14|14|25|15|17|17|18|24|22|21|22|23|24|25|0 24|23|23|20|20|18|16|16|17|15|14|14|22|15|19|17|18|19|21|21|22|25|24|25|0 19|18|16|14|13|13|12|11|11|17|12|15|14|15|16|17|18|19|0 25|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 16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0 43|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 51|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 37|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 46|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 22|22|19|17|17|18|16|15|14|13|13|21|14|15|16|20|18|19|20|21|23|23|0 31|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 62|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 32|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 35|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 46|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 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 17|16|14|12|12|11|10|10|15|11|13|13|14|15|16|17|0 36|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 28|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 8|7|6|6|9|7|8|9|0 31|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 36|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 32|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 58|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 40|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 57|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 74|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 21|19|18|18|17|15|14|13|12|12|16|13|14|15|16|17|20|19|20|21|0 15|13|11|10|10|9|9|14|12|11|12|13|14|15|0 40|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 11|11|10|9|8|8|13|9|10|12|12|13|0 23|21|21|19|18|17|15|14|14|13|13|20|16|15|16|17|18|19|20|22|22|23|0 53|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 51|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 45|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 36|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 24|23|23|22|16|16|17|18|15|14|14|20|21|15|19|17|18|19|20|21|22|25|24|25|0 26|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 11|10|10|9|8|8|13|9|12|11|12|13|0 50|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 17|17|18|15|14|11|11|12|13|16|12|13|14|15|16|19|18|19|0 64|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 56|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 52|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 43|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 19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0 10|9|9|7|7|8|8|11|10|11|0 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 23|22|22|21|19|19|18|17|16|15|14|14|25|15|16|17|18|20|20|21|24|23|24|25|0 39|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 47|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 38|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 41|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 25|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 53|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 17|15|15|11|11|10|10|13|14|12|12|13|14|16|16|17|0 33|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 32|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 49|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 32|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 33|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 47|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 58|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 31|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 22|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 28|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 15|15|14|14|17|12|11|11|13|19|12|13|18|16|16|17|18|19|0 50|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 54|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 29|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 41|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 80|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 47|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 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 10|7|7|8|9|11|8|9|10|11|0 24|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 59|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 37|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 38|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 31|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 57|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 52|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 40|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 49|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 66|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 15|11|10|10|12|9|9|14|13|11|12|13|14|15|0 62|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 19|16|15|14|14|13|12|11|11|18|12|13|17|15|16|17|18|19|0 24|23|23|22|19|18|18|17|16|14|14|15|21|15|16|17|20|19|20|21|22|25|24|25|0 53|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 36|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 36|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 39|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 59|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 38|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 54|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 43|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 46|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 25|23|21|20|20|19|18|16|16|14|14|15|24|15|17|17|18|19|22|21|22|23|24|25|0 48|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 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 29|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 64|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 19|18|17|17|20|21|15|15|14|13|13|23|14|16|16|22|18|19|20|21|22|23|0 23|22|20|19|19|17|17|15|14|13|13|16|14|15|16|18|18|21|20|21|22|23|0 67|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 38|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 35|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 27|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 40|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 53|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 48|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 19|17|17|18|16|14|14|13|12|12|21|13|15|15|16|20|18|19|20|21|0 24|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 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 30|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 31|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 79|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 52|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 41|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 28|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 40|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 31|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 46|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 51|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 41|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 78|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 31|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 24|24|22|22|20|15|15|16|17|14|14|19|21|18|16|17|18|19|20|21|23|23|25|25|0 53|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 43|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 40|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 61|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 45|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 31|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 29|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 32|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 43|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 66|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 23|23|22|21|20|20|17|15|15|16|14|14|19|18|16|17|18|19|25|21|22|24|24|25|0 25|23|22|21|19|19|18|17|14|14|15|16|24|15|16|17|18|20|20|21|22|23|24|25|0 65|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 58|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 41|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 21|17|17|18|19|20|16|15|13|13|14|23|14|15|16|22|18|19|20|21|22|23|0 16|15|14|13|13|12|11|10|10|11|12|17|14|15|16|17|0 35|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 24|23|23|21|20|17|16|16|18|15|14|14|22|15|19|17|18|19|20|21|22|25|24|25|0 57|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 45|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 18|18|16|15|14|12|11|11|13|17|12|13|14|15|16|17|19|19|0 8|8|9|7|7|11|10|9|10|11|0 25|21|20|19|19|18|18|17|15|15|14|14|24|16|16|17|23|22|20|21|22|23|24|25|0 17|17|18|16|15|12|12|11|11|14|13|13|14|15|16|19|18|19|0 67|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 33|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 28|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 24|23|23|21|20|18|18|17|16|14|14|15|22|15|16|17|19|19|20|21|22|25|24|25|0 21|19|17|17|16|15|14|13|12|12|20|13|14|15|16|18|18|19|20|21|0 5|4|4|5|0 44|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 47|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 28|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 28|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 33|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 29|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 59|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 32|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 34|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 36|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 32|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 35|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 51|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 27|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 19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0 30|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 40|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 40|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 47|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 58|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 14|13|12|12|11|11|10|10|17|16|15|13|14|15|16|17|0 45|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 40|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 32|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 9|7|6|6|8|7|8|9|0 17|17|15|15|14|13|12|11|11|19|12|13|14|16|16|18|18|19|0 30|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 39|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 39|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 38|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 37|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 29|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 27|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 10|7|7|8|9|11|8|9|10|11|0 21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0 63|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 9|9|8|7|7|11|8|10|10|11|0 62|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 20|19|18|18|17|16|15|14|14|13|13|23|22|15|16|17|21|19|20|21|22|23|0 21|20|20|19|18|18|23|17|16|15|14|14|25|15|16|17|24|19|22|21|22|23|24|25|0 47|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 29|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 36|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 21|19|19|18|18|22|23|17|15|15|14|14|25|16|16|17|24|20|20|21|22|23|24|25|0 21|19|18|17|17|16|15|13|12|12|14|13|14|15|16|20|18|19|20|21|0 35|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 61|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 62|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 47|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 70|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 32|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 49|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 16|14|12|11|11|13|10|10|17|15|12|13|14|15|16|17|0 72|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 52|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 49|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 61|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 52|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 33|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 37|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 44|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 19|16|16|17|15|13|12|11|11|14|12|13|14|15|18|17|18|19|0 23|23|24|21|20|19|18|16|16|15|14|14|22|15|17|17|18|19|20|21|22|25|24|25|0 14|13|11|11|10|9|9|15|10|12|12|13|14|15|0 17|16|16|15|13|13|12|11|11|19|12|14|14|15|18|17|18|19|0 49|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 40|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 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 16|15|15|14|13|11|10|10|12|11|12|13|14|17|16|17|0 14|13|12|12|11|9|9|10|10|11|15|13|14|15|0 60|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 36|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 58|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 32|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 32|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 25|23|19|18|18|20|21|17|16|15|14|14|24|15|16|17|22|19|20|21|22|23|24|25|0 33|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 21|20|20|19|17|17|16|13|13|14|15|23|14|15|16|18|18|19|22|21|22|23|0 74|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 52|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 41|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 54|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 24|23|23|21|19|18|17|16|16|15|14|14|22|15|20|17|18|19|20|21|22|25|24|25|0 45|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 28|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 17|17|18|14|13|12|12|11|11|16|15|13|14|15|16|19|18|19|0 36|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 64|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 54|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 35|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 39|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 25|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 16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0 44|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 47|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 74|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 12|10|8|8|9|11|13|9|10|11|12|13|0 33|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 58|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 16|15|15|13|11|10|10|12|14|11|12|13|14|17|16|17|0 27|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 36|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 40|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 45|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 66|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 27|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 25|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 86|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 9|9|7|7|8|11|8|10|10|11|0 44|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 11|10|10|9|8|8|13|9|12|11|12|13|0 62|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 14|12|12|11|9|9|10|15|10|11|13|13|14|15|0 11|10|10|9|8|8|13|9|12|11|12|13|0 36|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 57|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 51|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 58|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 27|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 58|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 39|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 25|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 36|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 26|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 23|22|22|21|20|18|18|17|16|15|14|14|25|15|16|17|19|19|20|21|24|23|24|25|0 36|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 30|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 8|8|7|6|6|7|9|9|0 12|11|10|10|9|8|8|9|13|11|12|13|0 7|6|5|5|6|7|0 32|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 34|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 26|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 23|21|21|22|20|19|18|17|15|15|14|14|25|16|16|17|18|19|20|24|22|23|24|25|0 44|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 83|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 54|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 24|23|20|19|18|18|21|17|16|15|14|14|25|15|16|17|22|19|20|21|22|23|24|25|0 27|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 51|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 44|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 58|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 18|18|17|13|13|14|11|11|12|16|12|15|14|15|16|17|19|19|0 21|20|18|17|16|15|14|13|12|12|19|13|14|15|16|17|18|19|20|21|0 5|4|4|5|0 46|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 46|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 27|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 66|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 36|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 53|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 15|12|12|13|11|10|9|9|10|11|14|13|14|15|0 27|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 36|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 49|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 62|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 29|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 41|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 72|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 29|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 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 68|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 42|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 62|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 42|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 28|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 34|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 36|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 31|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 36|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 17|15|15|12|12|11|10|10|14|11|13|13|14|16|16|17|0 68|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 39|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 65|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 36|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 21|20|18|16|15|15|14|13|12|12|19|13|14|17|16|17|18|19|20|21|0 51|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 29|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 40|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 21|20|19|16|14|13|13|12|12|17|18|15|14|15|16|17|18|19|20|21|0 29|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 11|8|8|7|7|10|9|9|10|11|0 78|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 16|15|14|14|13|11|10|10|12|11|12|13|17|15|16|17|0 49|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 36|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 83|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 9|9|8|7|7|11|8|10|10|11|0 11|11|10|8|8|9|13|9|10|12|12|13|0 41|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 29|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 42|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 60|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 31|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 26|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 39|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 53|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 48|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 43|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 64|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 16|16|14|13|11|10|10|12|15|11|12|13|14|15|17|17|0 44|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 41|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 33|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 41|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 39|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 89|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 43|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 31|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 19|18|18|17|16|15|15|13|12|12|14|13|14|21|16|17|20|19|20|21|0 35|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 68|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 25|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 64|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 30|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 25|22|20|19|19|18|17|16|14|14|15|23|24|15|16|17|18|21|20|21|22|23|24|25|0 61|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 57|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 25|23|22|21|20|20|17|17|16|15|14|14|19|15|16|18|18|19|24|21|22|23|24|25|0 50|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 60|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 31|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 58|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 52|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 37|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 38|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 32|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 53|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 18|18|16|14|13|13|12|11|11|17|12|15|14|15|16|17|19|19|0 41|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 19|16|16|14|14|13|12|11|11|18|12|13|15|15|17|17|18|19|0 32|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 26|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 37|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 36|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 58|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 15|14|14|13|12|12|17|11|11|19|18|13|16|15|16|17|18|19|0 53|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 42|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 73|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 23|21|20|18|17|16|15|14|14|13|13|22|19|15|16|17|18|19|20|21|22|23|0 48|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 52|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 15|14|14|16|12|11|10|10|13|11|12|13|17|15|16|17|0 64|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 51|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 23|23|22|21|20|19|19|16|15|15|14|14|18|17|16|17|18|25|20|21|22|24|24|25|0 24|21|21|19|19|20|23|17|16|15|14|14|18|15|16|17|18|25|20|22|22|23|24|25|0 26|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 43|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 25|23|22|21|20|19|16|15|15|17|14|14|24|18|16|17|18|19|20|21|22|23|24|25|0 34|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 66|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 40|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 42|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 50|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 38|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 37|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 22|21|21|19|18|18|16|15|14|13|13|17|14|15|16|17|20|19|20|23|22|23|0 21|21|22|20|20|24|18|17|16|15|14|14|19|15|16|17|18|19|25|23|22|23|24|25|0 40|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 9|6|6|7|8|7|8|9|0 90|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 70|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 12|11|11|9|8|8|10|9|10|13|12|13|0 35|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 67|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 35|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 18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0 47|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 42|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 49|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 17|16|16|15|14|13|11|11|12|19|12|13|14|15|18|17|18|19|0 12|9|9|10|11|8|8|13|10|11|12|13|0 67|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 53|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 40|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 72|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 13|12|12|10|10|9|9|15|11|11|14|13|14|15|0 81|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 38|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 7|7|6|6|9|8|8|9|0 54|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 38|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 8|7|7|6|6|9|8|9|0 40|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 10|9|9|7|7|8|8|11|10|11|0 61|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 10|10|9|9|8|8|13|12|11|11|12|13|0 24|23|23|21|20|18|17|17|16|15|14|14|22|15|16|19|18|19|20|21|22|25|24|25|0 47|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 38|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 41|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 12|12|10|8|8|9|11|9|10|11|13|13|0 19|19|17|17|18|21|15|15|14|13|13|23|14|16|16|22|18|20|20|21|22|23|0 42|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 33|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 32|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 12|11|9|9|10|8|8|13|10|11|12|13|0 36|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 35|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 50|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 31|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 41|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 55|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 62|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 41|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 26|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 51|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 51|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 77|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 31|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 10|8|7|7|9|11|8|9|10|11|0 15|14|14|13|11|11|10|10|17|12|12|13|16|15|16|17|0 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 12|12|10|9|8|8|11|9|10|11|13|13|0 12|12|10|8|8|9|11|9|10|11|13|13|0 12|11|10|9|8|8|13|9|10|11|12|13|0 34|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 33|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 44|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 64|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 33|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 44|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 42|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 43|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 41|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 57|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 78|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 41|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 14|14|12|12|11|9|9|10|10|11|13|13|15|15|0 65|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 39|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 80|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 42|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 10|9|8|7|7|11|8|9|10|11|0 30|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 41|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 44|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 31|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 12|10|9|8|8|11|13|9|10|11|12|13|0 45|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 22|21|20|19|19|18|17|14|13|13|15|16|14|15|16|17|18|23|20|21|22|23|0 22|21|20|19|19|18|17|15|15|14|13|13|14|16|16|17|18|23|20|21|22|23|0 55|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 36|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 31|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 26|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 16|15|15|12|11|10|10|13|14|11|12|13|14|17|16|17|0 17|15|15|14|12|12|10|10|11|11|13|13|14|16|16|17|0 38|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 33|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 41|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 5|4|4|5|0 8|7|6|6|9|7|8|9|0 36|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 35|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 25|20|18|18|19|21|17|17|16|14|14|15|24|15|16|23|22|19|20|21|22|23|24|25|0 44|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 74|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 52|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 44|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 44|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 38|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 10|10|11|9|8|8|13|9|12|11|12|13|0 28|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 15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0 48|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 26|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 35|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 11|8|8|9|7|7|10|9|10|11|0 23|23|22|20|20|19|17|17|15|15|14|14|25|16|16|18|18|19|21|21|22|24|24|25|0 38|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 39|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 23|21|21|20|19|19|18|17|16|15|14|14|25|15|16|17|18|24|20|22|22|23|24|25|0 38|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 18|16|15|14|13|12|12|17|11|11|19|13|14|15|16|17|18|19|0 87|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 61|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 8|7|6|6|9|7|8|9|0 47|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 46|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 23|20|20|19|18|16|14|14|15|13|13|22|17|15|16|17|18|19|21|21|22|23|0 26|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 39|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 8|8|9|7|7|11|10|9|10|11|0 48|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 21|20|20|22|18|14|14|15|16|13|13|19|17|15|16|17|18|19|23|21|22|23|0 70|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 34|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 20|20|18|16|15|15|14|13|12|12|19|13|14|17|16|17|18|19|21|21|0 28|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 43|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 48|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 34|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 10|10|8|7|7|9|8|9|11|11|0 29|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 42|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 58|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 45|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 37|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 28|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 93|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 17|13|12|11|11|14|10|10|16|15|12|13|14|15|16|17|0 34|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 19|17|17|14|14|13|12|11|11|16|12|13|15|15|16|18|18|19|0 51|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 60|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 48|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 41|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 42|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 23|21|19|18|17|16|16|15|14|13|13|22|14|15|20|17|18|19|20|21|22|23|0 40|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 31|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 53|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 14|13|12|11|11|15|10|10|17|16|12|13|14|15|16|17|0 51|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 24|24|22|20|20|19|18|17|16|15|14|14|23|15|16|17|18|19|21|21|22|23|25|25|0 23|23|22|17|17|18|16|16|20|15|14|14|25|15|21|19|18|19|20|21|22|24|24|25|0 31|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 21|20|18|18|17|16|16|22|23|15|14|14|25|15|24|17|19|19|20|21|22|23|24|25|0 11|11|10|9|8|8|13|9|10|12|12|13|0 35|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 19|18|17|16|14|14|13|12|11|11|12|13|15|15|16|17|18|19|0 58|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 49|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 38|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 28|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 33|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 58|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 85|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 17|15|12|11|11|10|10|14|16|13|12|13|14|15|16|17|0 27|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 23|22|20|19|17|17|16|15|13|13|14|21|14|15|16|18|18|19|20|21|22|23|0 53|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 25|24|23|21|20|19|14|14|15|16|17|18|22|15|16|17|18|19|20|21|22|23|24|25|0 32|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 52|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 66|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 53|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 55|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 36|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 27|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 62|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 20|20|18|14|13|13|15|16|12|12|19|17|14|15|16|17|18|19|21|21|0 21|19|18|17|15|13|13|14|12|12|20|16|14|15|16|17|18|19|20|21|0 24|24|21|20|19|19|18|16|15|15|14|14|23|17|16|17|18|22|20|21|22|23|25|25|0 23|21|20|18|17|16|16|15|14|13|13|22|14|15|19|17|18|19|20|21|22|23|0 68|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 49|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 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 57|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 39|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 86|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 77|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 72|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 50|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 31|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 32|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 34|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 27|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 31|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 42|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 57|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 39|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 45|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 51|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 58|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 37|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 28|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 27|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 32|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 22|22|20|19|18|17|15|15|14|13|13|21|14|16|16|17|18|19|20|21|23|23|0 41|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 14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0 29|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 42|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 46|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 89|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 40|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 37|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 23|21|18|18|17|16|15|15|14|13|13|22|14|20|16|17|19|19|20|21|22|23|0 53|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 51|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 72|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 60|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 47|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 39|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 39|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 67|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 16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0 34|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 66|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 22|20|20|21|17|17|15|15|14|13|13|19|14|16|16|18|18|19|23|21|22|23|0 34|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 54|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 24|23|22|21|21|20|19|17|15|15|14|14|18|16|16|17|18|19|20|25|22|23|24|25|0 33|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 51|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 9|7|7|8|10|11|8|9|10|11|0 41|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 51|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 42|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 39|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 44|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 31|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 39|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 30|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 10|8|8|9|11|12|13|9|10|11|12|13|0 26|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 60|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 33|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 52|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 17|15|13|11|11|12|10|10|16|14|12|13|14|15|16|17|0 37|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 38|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 10|9|8|7|7|11|8|9|10|11|0 63|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 8|8|6|6|7|7|9|9|0 22|22|23|21|21|18|17|16|16|15|14|14|20|15|19|17|18|19|20|25|24|23|24|25|0 17|15|14|13|10|10|11|12|16|11|12|13|14|15|16|17|0 42|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 47|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 23|21|21|20|20|19|16|16|15|15|18|14|14|25|17|17|18|19|24|22|22|23|24|25|0 19|18|17|15|13|12|12|11|11|16|14|13|14|15|16|17|18|19|0 51|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 39|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 59|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 37|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 63|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 52|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 75|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 31|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 21|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|22|22|23|0 29|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 25|23|21|20|19|19|18|17|16|15|14|14|24|15|16|17|18|22|20|21|22|23|24|25|0 72|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 23|21|14|14|15|16|17|18|19|13|13|22|20|15|16|17|18|19|20|21|22|23|0 37|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 68|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 51|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 19|17|16|13|13|14|12|11|11|18|12|15|14|15|16|17|18|19|0 28|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 64|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 58|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 46|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 49|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 20|19|18|17|17|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0 7|5|5|6|6|7|0 46|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 7|7|8|6|6|9|8|9|0 36|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 42|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 36|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 17|15|12|12|13|11|10|10|16|11|14|13|14|15|16|17|0 41|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 41|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 43|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 71|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 14|12|12|13|10|9|9|11|10|11|15|13|14|15|0 20|19|18|17|16|16|14|14|12|12|13|13|15|15|21|17|18|19|20|21|0 57|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 61|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 62|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 19|18|18|20|17|16|14|14|13|12|12|13|15|15|16|17|21|19|20|21|0 46|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 64|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 64|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 22|21|21|19|17|17|16|15|14|13|13|20|14|15|16|18|18|19|20|23|22|23|0 11|9|7|7|8|10|8|9|10|11|0 12|12|13|14|15|11|11|10|10|17|16|13|14|15|16|17|0 63|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 45|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 49|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 40|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 50|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 12|10|8|8|9|11|13|9|10|11|12|13|0 33|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 43|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 13|12|10|8|8|9|11|9|10|11|12|13|0 46|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 50|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 41|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 38|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 35|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 18|18|19|17|17|21|16|13|13|14|15|23|14|15|16|22|20|19|20|21|22|23|0 45|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 60|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 38|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 25|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 56|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 12|10|10|11|8|8|9|9|13|11|12|13|0 30|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 51|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 36|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 42|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 20|19|18|16|15|15|14|14|13|12|12|13|21|17|16|17|18|19|20|21|0 38|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 13|12|10|9|8|8|11|9|10|11|12|13|0 47|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 36|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 30|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 55|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 64|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 91|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 37|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 33|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 32|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 43|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 34|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 45|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 27|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 49|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 31|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 13|11|10|9|8|8|12|9|10|11|12|13|0 19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0 51|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 37|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 47|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 39|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 41|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 44|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 63|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 40|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 14|9|9|10|11|12|13|15|10|11|12|13|14|15|0 93|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 7|5|5|6|6|7|0 7|5|5|6|6|7|0 25|22|21|21|20|18|18|17|16|15|14|14|24|15|16|17|19|19|20|23|22|23|24|25|0 31|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 19|17|17|16|16|20|21|15|13|13|14|23|14|15|22|18|18|19|20|21|22|23|0 22|21|21|23|18|17|17|19|16|15|14|14|25|15|16|20|18|19|20|24|22|23|24|25|0 52|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 24|23|22|22|20|19|17|16|15|14|14|18|21|15|16|17|18|19|20|21|25|23|24|25|0 45|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 27|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 28|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 42|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 52|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 16|16|14|11|11|12|10|10|15|13|12|13|14|15|17|17|0 9|9|8|7|7|11|8|10|10|11|0 61|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 49|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 36|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 35|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 56|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 30|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 25|24|22|20|20|19|18|17|15|14|14|16|23|15|16|17|18|19|21|21|22|23|24|25|0 37|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 19|19|18|16|15|14|14|13|12|12|21|13|17|15|16|17|18|20|20|21|0 69|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 19|18|17|13|13|14|12|11|11|16|12|15|14|15|16|17|18|19|0 26|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 24|23|21|20|20|19|19|17|16|15|14|14|18|15|16|17|18|25|22|21|22|23|24|25|0 36|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 53|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 31|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 45|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 11|9|8|7|7|10|8|9|10|11|0 14|12|11|10|9|9|13|15|10|11|12|13|14|15|0 40|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 53|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 61|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 68|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 24|21|20|20|22|18|17|17|16|15|14|14|25|15|16|19|18|19|23|21|22|23|24|25|0 33|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 42|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 49|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 24|18|18|19|17|17|21|16|16|15|15|14|14|25|23|22|20|19|20|21|22|23|24|25|0 23|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 40|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 9|9|7|7|8|11|8|10|10|11|0 36|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 15|12|12|10|9|9|11|14|10|11|13|13|14|15|0 28|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 79|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 30|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 11|9|8|7|7|10|8|9|10|11|0 30|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 70|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 51|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 57|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 33|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 25|23|21|20|20|19|17|17|15|15|14|14|24|16|16|18|18|19|22|21|22|23|24|25|0 41|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 15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0 34|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 34|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 62|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 26|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 60|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 43|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 9|9|7|7|8|11|8|10|10|11|0 12|11|10|8|8|9|13|9|10|11|12|13|0 28|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 46|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 69|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 9|8|6|6|7|7|8|9|0 89|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 52|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 21|18|17|17|16|14|14|13|12|12|20|13|15|15|16|19|18|19|20|21|0 54|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 48|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 44|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 18|17|16|15|15|14|13|12|11|11|12|13|14|19|16|17|18|19|0 13|9|9|10|8|8|12|11|10|11|12|13|0 21|20|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0 28|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 45|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 45|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 32|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 38|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 38|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 33|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 29|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 27|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 24|23|22|22|21|19|19|17|15|15|14|14|18|16|16|17|18|20|20|21|25|23|24|25|0 39|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 50|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 26|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 85|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 42|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 36|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 56|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 38|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 16|15|14|13|13|11|10|10|12|11|12|17|14|15|16|17|0 31|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 34|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 32|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 27|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 76|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 47|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 31|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 39|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 73|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 53|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 28|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 30|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 10|10|8|7|7|9|8|9|11|11|0 23|20|19|18|18|17|14|14|15|13|13|22|16|15|16|17|21|19|20|21|22|23|0 54|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 50|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 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 27|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 12|11|11|13|10|9|9|15|10|14|12|13|14|15|0 15|13|13|14|12|11|11|10|10|17|12|16|14|15|16|17|0 22|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 51|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 46|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 39|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 37|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 27|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 20|19|18|18|17|15|15|13|12|12|14|13|14|16|16|17|21|19|20|21|0 40|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 27|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 63|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 5|5|6|7|6|7|0 51|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 34|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 19|15|14|14|16|12|12|11|11|18|13|13|17|15|16|17|18|19|0 15|14|13|13|12|10|10|11|17|11|12|16|14|15|16|17|0 9|9|10|8|7|7|8|11|10|11|0 38|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 84|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 25|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 37|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 7|7|6|6|9|8|8|9|0 18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0 22|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 36|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 43|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 53|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 30|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 68|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 46|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 48|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 54|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 31|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 25|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 29|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 31|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 21|21|20|19|17|16|15|15|14|13|13|23|14|18|16|17|18|19|20|22|22|23|0 43|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 58|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 46|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 34|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 48|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 21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0 36|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 61|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 34|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 22|21|21|23|20|16|16|17|14|14|15|19|25|15|18|17|18|19|20|24|22|23|24|25|0 38|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 15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0 37|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 38|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 27|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 17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0 50|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 47|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 58|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 49|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 54|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 49|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 28|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 25|22|22|21|20|18|18|17|16|15|14|14|24|15|16|17|19|19|20|21|23|23|24|25|0 31|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 61|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 4|4|5|5|0 11|11|12|13|10|9|9|15|10|14|12|13|14|15|0 51|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 65|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 32|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 17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0 46|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 43|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 83|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 31|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 44|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 84|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 11|8|8|7|7|10|9|9|10|11|0 51|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 11|9|8|7|7|10|8|9|10|11|0 56|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 64|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 48|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 42|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 48|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 42|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 8|6|6|7|9|7|8|9|0 48|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 38|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 53|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 26|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 26|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 57|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 18|16|15|15|14|13|12|11|11|19|12|13|14|17|16|17|18|19|0 26|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 67|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 43|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 21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0 35|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 24|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 84|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 74|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 20|19|18|18|17|16|14|12|12|13|15|13|14|15|16|17|21|19|20|21|0 39|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 59|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 66|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 14|14|11|10|9|9|12|13|10|11|12|13|15|15|0 22|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 27|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 31|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 29|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 29|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 65|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 56|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 47|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 50|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 42|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 20|20|16|16|17|15|14|13|12|12|19|13|14|15|18|17|18|19|21|21|0 39|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 39|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 19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0 31|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 46|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 25|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 64|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 43|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 13|11|10|9|8|8|12|9|10|11|12|13|0 47|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 36|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 40|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 14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0 68|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 26|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 33|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 19|16|12|12|13|11|11|15|17|18|14|13|14|15|16|17|18|19|0 45|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 28|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 9|7|6|6|8|7|8|9|0 68|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 57|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 44|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 70|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 67|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 16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0 53|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 18|18|16|16|14|13|12|11|11|15|12|13|14|15|17|17|19|19|0 21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0 51|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 62|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 79|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 15|14|14|13|12|12|11|10|10|11|17|13|16|15|16|17|0 39|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 47|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 23|21|21|22|20|19|18|18|16|15|14|14|17|15|16|17|25|19|20|24|22|23|24|25|0 20|20|19|18|17|16|16|15|14|13|13|23|14|15|22|17|18|19|21|21|22|23|0 38|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 54|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 32|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 20|19|19|18|17|15|14|12|12|13|16|13|14|15|16|17|18|21|20|21|0 39|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 32|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 41|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 26|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 10|10|9|7|7|8|8|9|11|11|0 25|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 41|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 50|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 27|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 11|10|8|7|7|9|8|9|10|11|0 9|6|6|7|8|7|8|9|0 40|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 11|10|10|9|8|8|13|9|12|11|12|13|0 61|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 43|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 18|15|15|14|14|17|13|12|11|11|12|13|19|16|16|17|18|19|0 21|20|20|19|19|17|15|14|14|13|13|18|16|15|16|17|18|23|22|21|22|23|0 17|14|14|15|16|13|11|11|12|19|12|13|18|15|16|17|18|19|0 55|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 58|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 35|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 35|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 24|23|20|20|21|22|17|17|15|15|14|14|19|16|16|18|18|19|25|21|22|23|24|25|0 25|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 36|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 35|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 72|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 43|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 15|14|14|13|12|12|11|10|10|11|17|13|16|15|16|17|0 42|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 36|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 31|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 49|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 37|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 19|18|16|15|12|12|13|11|11|17|14|13|14|15|16|17|18|19|0 46|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 88|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 29|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 29|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 45|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 32|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 33|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 34|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 82|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 63|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 51|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 40|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 37|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 51|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 5|4|4|5|0 17|16|15|12|12|11|10|10|14|11|13|13|14|15|16|17|0 19|17|17|16|15|12|12|11|11|14|13|13|14|15|16|18|18|19|0 21|20|18|16|15|14|13|13|12|12|19|17|14|15|16|17|18|19|20|21|0 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 35|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 33|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 19|18|17|16|16|20|21|15|14|13|13|23|14|15|22|17|18|19|20|21|22|23|0 25|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 16|16|15|15|14|13|12|11|11|19|12|13|14|18|17|17|18|19|0 55|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 55|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 55|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 14|14|12|10|10|9|9|13|11|11|12|13|15|15|0 26|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 8|7|7|6|6|9|8|9|0 20|19|18|17|17|13|13|14|12|12|16|15|14|15|16|21|18|19|20|21|0 20|19|18|17|15|15|16|14|13|12|12|13|14|21|16|17|18|19|20|21|0 57|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 26|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 41|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 35|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 38|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 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 32|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 31|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 30|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 23|22|18|17|16|16|19|14|14|13|13|21|15|15|20|17|18|19|20|21|22|23|0 53|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 59|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 44|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 28|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 35|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 11|11|12|10|10|14|9|9|15|13|12|13|14|15|0 25|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 26|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 49|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 23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0 13|12|11|10|9|8|8|9|10|11|12|13|0 32|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 68|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 43|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 46|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 39|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 42|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 22|22|21|20|18|18|19|17|16|16|14|14|15|15|25|17|24|19|20|21|23|23|24|25|0 44|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 50|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 37|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 20|18|18|19|17|16|14|13|12|12|15|13|14|15|16|17|21|19|20|21|0 33|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 24|24|22|20|18|17|16|16|19|15|14|14|23|15|21|17|18|19|20|21|22|23|25|25|0 27|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 32|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 35|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 15|14|13|12|12|16|17|11|11|19|18|13|14|15|16|17|18|19|0 20|18|17|15|15|16|19|12|12|13|14|13|14|21|16|17|18|19|20|21|0 40|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 72|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 9|9|7|7|8|11|8|10|10|11|0 10|7|7|8|9|11|8|9|10|11|0 27|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 24|23|22|21|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|21|22|23|24|25|0 73|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 30|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 59|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 44|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 26|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 39|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 25|22|22|23|20|19|18|17|15|15|14|14|21|16|16|17|18|19|20|21|24|23|24|25|0 22|22|19|17|17|16|16|15|13|13|14|21|14|15|20|18|18|19|20|21|23|23|0 22|22|21|18|18|19|17|17|16|14|14|15|25|15|16|24|20|19|20|21|23|23|24|25|0 33|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 23|23|22|21|20|18|17|16|16|15|14|14|25|15|19|17|18|19|20|21|22|24|24|25|0 31|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 50|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 35|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 62|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 35|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 62|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 40|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 16|15|14|11|11|12|10|10|17|13|12|13|14|15|16|17|0 39|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 52|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 31|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 34|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 43|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 25|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 57|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 26|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 41|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 39|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 25|20|20|19|18|18|22|23|16|16|15|14|14|15|17|17|24|19|21|21|22|23|24|25|0 51|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 34|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 35|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 11|11|10|9|9|8|8|13|10|12|12|13|0 43|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 13|11|10|9|8|8|12|9|10|11|12|13|0 35|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 22|21|20|19|18|17|16|15|14|13|13|23|14|15|16|17|18|19|20|21|22|23|0 56|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 43|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 14|14|12|11|9|9|10|13|10|11|12|13|15|15|0 33|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 45|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 23|21|20|19|17|16|16|15|14|13|13|22|14|15|18|17|18|19|20|21|22|23|0 28|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 44|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 52|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 28|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 30|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 9|8|8|7|7|11|10|9|10|11|0 30|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 47|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 17|15|15|16|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0 45|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 31|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 36|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 54|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 59|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 42|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 31|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 23|21|20|19|18|16|15|14|14|13|13|22|17|15|16|17|18|19|20|21|22|23|0 27|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 22|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0 53|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 39|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 8|8|7|6|6|7|9|9|0 19|19|18|14|14|15|16|13|12|12|21|13|17|15|16|17|18|20|20|21|0 38|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 38|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 35|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 63|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 84|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 20|19|19|17|16|15|13|12|12|14|18|13|14|15|16|17|18|21|20|21|0 42|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 63|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 32|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 36|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 45|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 39|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 45|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 28|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 37|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 21|19|18|17|15|15|13|12|12|14|20|13|14|16|16|17|18|19|20|21|0 11|9|8|7|7|10|8|9|10|11|0 45|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 21|20|18|18|16|15|14|13|12|12|17|13|14|15|16|17|19|19|20|21|0 22|20|20|21|19|18|18|16|16|15|14|14|25|15|17|17|24|19|23|21|22|23|24|25|0 25|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 26|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 61|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 14|11|11|10|9|9|13|15|10|12|12|13|14|15|0 19|17|15|14|14|13|11|11|12|18|12|13|16|15|16|17|18|19|0 51|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 36|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 8|8|9|7|7|11|10|9|10|11|0 40|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 16|16|17|14|14|13|12|11|11|19|12|13|15|15|18|17|18|19|0 13|12|11|10|8|8|9|9|10|11|12|13|0 5|4|4|5|0 62|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 27|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 28|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 11|7|7|8|9|10|8|9|10|11|0 43|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 21|18|18|17|17|15|14|12|12|13|16|13|14|15|16|20|19|19|20|21|0 72|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 8|7|6|6|9|7|8|9|0 34|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 42|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 52|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 33|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 25|23|21|20|20|19|17|16|16|15|14|14|24|15|18|17|18|19|22|21|22|23|24|25|0 13|12|10|9|8|8|11|9|10|11|12|13|0 13|13|12|9|9|10|11|15|10|11|12|14|14|15|0 50|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 30|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 20|19|18|16|14|14|13|13|12|12|21|17|15|15|16|17|18|19|20|21|0 70|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 29|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 37|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 24|23|20|20|21|19|18|18|16|15|14|14|17|15|16|17|25|19|22|21|22|23|24|25|0 82|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 39|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 25|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 10|8|8|9|7|7|11|9|10|11|0 36|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 43|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 29|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 21|20|18|15|14|14|16|13|12|12|19|13|17|15|16|17|18|19|20|21|0 65|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 33|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 37|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 35|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 49|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 26|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 41|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 36|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 70|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 29|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 16|16|17|18|19|15|14|13|12|12|21|13|14|15|20|17|18|19|20|21|0 7|6|5|5|6|7|0 43|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 30|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 27|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 79|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 27|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 54|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 24|24|22|21|19|19|17|16|16|15|14|14|23|15|18|17|18|20|20|21|22|23|25|25|0 7|5|5|6|6|7|0 51|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 32|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 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 58|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 31|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 60|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 39|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 47|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 52|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 9|8|8|7|7|11|10|9|10|11|0 51|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 49|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 34|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 26|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 48|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 30|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 46|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 51|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 25|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 62|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 64|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 43|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 32|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 65|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 47|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 22|21|20|19|19|17|16|14|14|13|13|18|15|15|16|17|18|23|20|21|22|23|0 59|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 34|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 64|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 36|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 7|6|5|5|6|7|0 43|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 11|10|7|7|8|9|8|9|10|11|0 38|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 45|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 40|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 8|8|6|6|7|7|9|9|0 33|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 59|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 28|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 23|22|20|19|19|18|16|15|14|14|13|13|17|15|16|17|18|21|20|21|22|23|0 28|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 33|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 26|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 51|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 62|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 46|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 10|9|7|7|8|11|8|9|10|11|0 46|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 69|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 60|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 53|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 46|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 46|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 60|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 39|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 56|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 48|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 44|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 66|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 19|18|18|17|16|16|14|12|12|13|15|13|14|15|21|17|20|19|20|21|0 9|7|6|6|8|7|8|9|0 29|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 10|9|7|7|8|11|8|9|10|11|0 58|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 34|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 54|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 33|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 35|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 21|21|20|19|18|17|15|15|14|13|13|23|14|16|16|17|18|19|20|22|22|23|0 59|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 12|11|10|10|8|8|9|9|13|11|12|13|0 29|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 7|6|5|5|6|7|0 53|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 51|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 39|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 43|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 14|13|12|12|10|9|9|11|10|11|15|13|14|15|0 13|12|11|10|10|9|9|15|14|11|12|13|14|15|0 45|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 14|13|10|10|11|9|9|15|12|11|12|13|14|15|0 28|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 72|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 10|9|9|11|8|8|13|12|10|11|12|13|0 40|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 46|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 34|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 50|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 52|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 35|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 42|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 92|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 70|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 72|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 25|22|21|20|20|19|17|17|16|15|14|14|24|15|16|18|18|19|23|21|22|23|24|25|0 27|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 59|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 42|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 37|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 10|8|8|9|7|7|11|9|10|11|0 43|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 44|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 34|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 16|15|15|17|13|13|12|11|11|19|12|14|14|18|16|17|18|19|0 21|21|20|19|18|16|16|15|13|13|14|23|14|15|17|17|18|19|20|22|22|23|0 57|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 24|23|21|20|19|19|18|17|17|15|15|14|14|16|16|25|18|22|20|21|22|23|24|25|0 57|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 36|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 78|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 26|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 49|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 21|19|17|17|16|15|14|13|12|12|20|13|14|15|16|18|18|19|20|21|0 6|6|5|5|7|7|0 53|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 33|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 32|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 35|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 9|9|8|7|7|11|8|10|10|11|0 47|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 42|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 41|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 20|19|19|21|17|16|16|15|14|13|13|23|14|15|18|17|18|22|20|21|22|23|0 38|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 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 19|17|17|16|14|14|13|12|11|11|12|13|15|15|16|18|18|19|0 62|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 67|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 62|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 34|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 12|12|11|10|9|8|8|9|10|11|13|13|0 34|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 34|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 59|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 33|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 44|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 13|10|9|8|8|11|12|9|10|11|12|13|0 21|20|19|16|15|14|14|13|12|12|18|13|17|15|16|17|18|19|20|21|0 44|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 57|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 54|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 27|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 61|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 32|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 16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0 10|9|9|7|7|8|8|11|10|11|0 27|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 8|8|9|7|7|11|10|9|10|11|0 55|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 30|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 20|19|19|18|17|16|16|15|14|13|13|23|14|15|22|17|18|21|20|21|22|23|0 23|21|20|18|17|17|16|14|14|13|13|22|15|15|16|19|18|19|20|21|22|23|0 49|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 42|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 25|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 33|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 68|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 28|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 31|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 55|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 49|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 47|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 28|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 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 11|11|10|9|8|8|13|9|10|12|12|13|0 89|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 13|11|10|8|8|9|12|9|10|11|12|13|0 46|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 46|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 55|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 60|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 16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0 50|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 36|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 22|21|21|19|18|17|15|14|14|13|13|20|16|15|16|17|18|19|20|23|22|23|0 45|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 12|10|10|11|8|8|9|9|13|11|12|13|0 36|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 19|18|18|17|15|14|14|13|12|12|21|13|16|15|16|17|20|19|20|21|0 16|16|17|15|14|13|13|11|11|12|12|19|14|15|18|17|18|19|0 43|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 63|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 8|8|9|7|7|11|10|9|10|11|0 61|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 25|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 38|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 31|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 17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0 49|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 48|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 49|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 32|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 37|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 25|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 50|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 27|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 68|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 26|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 58|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 51|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 20|19|19|17|14|13|13|15|12|12|18|16|14|15|16|17|18|21|20|21|0 46|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 35|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 44|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 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 33|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 37|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 60|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 54|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 41|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 66|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 57|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 25|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 34|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 40|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 16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0 43|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 19|18|17|16|16|20|21|15|13|13|14|23|14|15|22|17|18|19|20|21|22|23|0 25|23|23|20|18|17|17|16|15|14|14|21|22|15|16|19|18|19|20|21|22|24|24|25|0 45|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 29|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 20|19|19|18|17|17|22|23|16|14|14|15|25|15|16|24|18|21|20|21|22|23|24|25|0 37|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 20|19|19|18|17|17|16|15|14|13|13|23|14|15|16|22|18|21|20|21|22|23|0 64|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 57|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 22|20|19|18|17|16|15|14|14|21|13|13|23|15|16|17|18|19|20|21|22|23|0 31|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 23|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 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 43|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 37|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 60|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 12|12|10|9|8|8|11|9|10|11|13|13|0 29|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 29|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 18|16|16|17|15|13|12|11|11|14|12|13|14|15|19|17|18|19|0 23|23|21|21|22|19|19|17|17|14|14|15|16|15|16|18|18|20|20|25|22|24|24|25|0 18|17|16|15|13|11|11|12|14|19|12|13|14|15|16|17|18|19|0 33|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 52|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 33|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 25|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 9|9|7|7|8|11|8|10|10|11|0 30|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 40|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 40|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 28|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 44|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 61|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 13|10|9|9|8|8|12|11|10|11|12|13|0 25|21|21|22|20|20|18|17|16|15|14|14|19|15|16|17|18|19|24|23|22|23|24|25|0 46|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 12|11|11|10|10|9|9|15|14|13|12|13|14|15|0 48|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 11|8|8|7|7|10|9|9|10|11|0 54|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 80|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 45|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 45|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 50|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 15|12|12|10|10|9|9|14|11|11|13|13|14|15|0 49|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 22|21|21|20|18|15|15|16|14|13|13|19|14|17|16|17|18|19|20|23|22|23|0 58|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 18|17|17|16|15|12|12|11|11|14|13|13|14|15|16|19|18|19|0 18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0 61|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 61|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 48|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 15|15|14|13|13|12|10|10|11|11|12|17|14|16|16|17|0 63|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 26|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 55|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 22|22|21|20|18|17|16|15|13|13|14|19|14|15|16|17|18|19|20|21|23|23|0 48|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 12|11|11|10|8|8|9|9|10|13|12|13|0 55|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 55|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 21|20|20|19|18|17|17|23|15|14|14|16|25|15|16|24|18|19|22|21|22|23|24|25|0 25|24|23|22|19|18|18|17|16|15|14|14|21|15|16|17|20|19|20|21|22|23|24|25|0 48|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 53|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 24|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 46|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 35|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 36|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 42|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 72|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 25|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 42|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 37|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 50|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 50|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 26|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 38|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 33|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 24|23|22|22|21|20|18|17|16|15|14|14|19|15|16|17|18|19|20|21|25|23|24|25|0 18|16|15|14|13|12|11|11|17|19|12|13|14|15|16|17|18|19|0 40|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 39|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 33|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 32|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 3|3|0 27|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 26|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 37|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 57|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 22|22|21|20|18|17|16|15|14|13|13|19|14|15|16|17|18|19|20|21|23|23|0 40|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 75|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 32|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 41|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 47|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 22|22|21|20|16|16|17|15|14|13|13|19|14|15|18|17|18|19|20|21|23|23|0 33|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 39|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 14|14|12|12|11|10|9|9|10|11|13|13|15|15|0 83|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 37|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 45|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 64|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 26|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 25|23|21|21|19|19|17|17|16|15|14|14|24|15|16|18|18|20|20|22|22|23|24|25|0 25|22|22|21|20|20|19|17|16|15|14|14|18|15|16|17|18|19|24|21|23|23|24|25|0 33|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 63|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 37|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 96|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 18|17|16|15|15|14|13|11|11|12|12|13|14|19|16|17|18|19|0 44|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 61|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 22|22|21|18|18|17|16|15|14|13|13|20|14|15|16|17|19|19|20|21|23|23|0 40|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 75|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 60|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 81|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 19|18|17|14|14|15|12|12|11|11|13|13|16|15|16|17|18|19|0 62|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 26|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 18|17|17|14|14|13|12|11|11|16|12|13|15|15|16|19|18|19|0 18|17|17|19|16|15|14|13|12|12|21|13|14|15|16|20|18|19|20|21|0 21|19|17|16|15|15|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0 26|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 9|9|8|7|7|11|8|10|10|11|0 17|17|18|19|20|16|15|13|13|12|12|14|14|15|16|21|18|19|20|21|0 71|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 8|7|6|6|9|7|8|9|0 29|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 16|15|15|17|13|13|12|11|11|19|12|14|14|18|16|17|18|19|0 18|18|19|20|17|17|22|15|14|13|13|16|14|15|16|23|21|19|20|21|22|23|0 29|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 19|18|16|15|15|13|12|11|11|14|12|13|14|17|16|17|18|19|0 39|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 69|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 38|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 63|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 48|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 11|8|7|7|9|10|8|9|10|11|0 33|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 18|18|16|13|13|12|12|11|11|17|15|14|14|15|16|17|19|19|0 65|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 55|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 38|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 93|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 7|7|6|6|9|8|8|9|0 13|13|14|12|11|9|9|10|10|11|12|15|14|15|0 26|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 65|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 67|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 64|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 3|3|0 27|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 38|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 47|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 68|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 51|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 35|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 36|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 30|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 15|12|11|10|9|9|13|14|10|11|12|13|14|15|0 26|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 10|9|9|7|7|8|8|11|10|11|0 68|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 40|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 26|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 25|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 50|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 42|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 40|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 56|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 37|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 23|22|22|21|21|17|17|18|16|15|14|14|20|15|16|19|18|19|20|25|24|23|24|25|0 52|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 63|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 22|21|21|19|18|15|15|16|14|13|13|20|14|17|16|17|18|19|20|23|22|23|0 69|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 13|12|9|9|8|8|11|10|10|11|12|13|0 48|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 64|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 86|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 9|9|7|7|8|11|8|10|10|11|0 44|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 11|9|8|7|7|10|8|9|10|11|0 37|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 35|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 42|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 11|9|8|7|7|10|8|9|10|11|0 27|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 82|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 43|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 63|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 36|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 35|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 43|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 12|12|13|14|15|11|10|10|17|11|16|13|14|15|16|17|0 52|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 24|23|23|22|21|19|17|16|16|15|14|14|20|15|18|17|18|19|20|21|22|25|24|25|0 20|19|19|18|17|15|13|13|12|12|16|14|14|15|16|17|18|21|20|21|0 20|19|18|17|16|15|14|14|12|12|13|13|21|15|16|17|18|19|20|21|0 32|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 26|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 46|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 27|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 53|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 43|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 19|18|18|17|16|16|12|12|13|14|15|13|14|15|21|17|20|19|20|21|0 25|22|22|20|19|18|17|17|16|15|14|14|24|15|16|21|18|19|20|21|23|23|24|25|0 35|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 21|20|17|17|18|16|15|15|14|13|13|23|14|22|16|19|18|19|20|21|22|23|0 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 9|6|6|7|8|7|8|9|0 9|7|6|6|8|7|8|9|0 21|19|18|17|16|13|13|14|12|12|20|15|14|15|16|17|18|19|20|21|0 35|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 33|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 53|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 38|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 18|17|17|19|20|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0 60|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 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 31|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 28|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 51|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 61|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 45|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 42|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 12|11|11|10|8|8|9|9|10|13|12|13|0 39|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 30|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 21|20|19|18|17|16|16|15|15|13|13|14|14|23|22|17|18|19|20|21|22|23|0 42|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 32|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 61|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 55|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 54|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 12|12|10|9|8|8|11|9|10|11|13|13|0 36|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 46|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 25|23|21|20|19|19|18|17|15|15|14|14|24|16|16|17|18|22|20|21|22|23|24|25|0 24|24|22|20|20|19|17|17|16|14|14|15|23|15|16|18|18|19|21|21|22|23|25|25|0 50|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 32|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 12|12|9|9|8|8|11|10|10|11|13|13|0 18|17|17|14|13|13|12|11|11|16|12|15|14|15|16|19|18|19|0 29|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 14|13|12|11|11|9|9|10|10|15|12|13|14|15|0 46|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 36|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 39|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 54|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 40|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 36|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 90|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 34|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 29|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 24|24|22|21|20|15|15|16|17|18|14|14|23|19|16|17|18|19|20|21|22|23|25|25|0 39|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 36|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 39|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 27|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 13|11|10|8|8|9|12|9|10|11|12|13|0 83|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 22|22|20|18|18|17|15|15|14|13|13|21|14|16|16|17|19|19|20|21|23|23|0 16|16|14|12|12|11|10|10|15|11|13|13|14|15|17|17|0 31|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 45|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 24|22|22|21|21|20|18|18|16|14|14|15|17|15|16|17|19|19|20|25|23|23|24|25|0 46|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 27|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 38|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 25|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 21|20|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0 37|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 22|20|20|19|19|16|15|14|14|13|13|18|17|15|16|17|18|23|21|21|22|23|0 16|16|14|12|12|11|10|10|15|11|13|13|14|15|17|17|0 59|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 39|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 50|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 36|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 49|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 22|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 13|11|8|8|9|10|12|9|10|11|12|13|0 18|16|15|15|14|13|12|11|11|19|12|13|14|17|16|17|18|19|0 30|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 21|20|20|19|17|17|18|15|14|13|13|16|14|15|16|23|18|19|22|21|22|23|0 17|16|15|11|11|12|10|10|14|13|12|13|14|15|16|17|0 20|19|18|16|15|15|14|13|12|12|21|13|14|17|16|17|18|19|20|21|0 62|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 12|11|10|9|8|8|13|9|10|11|12|13|0 71|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 43|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 30|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 9|8|7|6|6|7|8|9|0 19|18|18|17|16|16|14|12|12|13|15|13|14|15|21|17|20|19|20|21|0 41|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 48|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 48|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 48|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 50|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 11|10|8|7|7|9|8|9|10|11|0 36|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 50|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 30|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 28|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 39|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 33|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 66|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 59|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 40|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 31|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 49|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 48|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 44|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 9|9|7|7|8|11|8|10|10|11|0 53|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 56|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 24|23|23|19|19|20|18|17|15|15|14|14|22|16|16|17|18|21|20|21|22|25|24|25|0 12|12|9|9|8|8|11|10|10|11|13|13|0 23|20|19|18|17|17|16|14|14|13|13|22|15|15|16|21|18|19|20|21|22|23|0 47|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 51|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 26|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 36|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 68|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 66|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 53|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 49|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 13|10|9|8|8|11|12|9|10|11|12|13|0 17|15|15|14|11|11|10|10|13|12|12|13|14|16|16|17|0 49|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 55|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 25|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 42|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 58|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 78|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 35|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 87|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 38|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 37|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 17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0 70|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 45|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 39|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 53|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 15|13|12|11|9|9|10|14|10|11|12|13|14|15|0 44|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 67|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 75|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 52|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 47|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 43|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 66|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 56|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 53|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 51|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 48|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 39|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 61|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 49|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 37|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 50|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 33|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 59|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 25|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 64|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 33|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 31|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 24|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 44|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 12|11|11|9|8|8|10|9|10|13|12|13|0 27|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 33|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 31|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 30|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 61|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 23|21|20|19|18|17|16|15|13|13|14|22|14|15|16|17|18|19|20|21|22|23|0 23|21|20|19|17|17|15|15|14|13|13|22|14|16|16|18|18|19|20|21|22|23|0 39|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 29|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 61|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 24|23|22|21|20|19|19|18|17|16|15|14|14|15|16|17|18|25|20|21|22|23|24|25|0 59|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 19|17|14|12|12|13|15|11|11|18|16|13|14|15|16|17|18|19|0 19|17|14|14|13|12|11|11|16|18|12|13|15|15|16|17|18|19|0 70|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 7|6|5|5|6|7|0 40|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 40|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 40|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 34|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 39|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 32|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 43|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 27|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 55|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 7|7|6|6|9|8|8|9|0 5|4|4|5|0 13|13|12|11|10|9|9|15|10|11|12|14|14|15|0 48|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 48|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 60|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 65|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 39|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 9|9|8|7|7|11|8|10|10|11|0 61|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 49|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 38|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 29|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 44|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 70|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 67|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 8|6|6|7|9|7|8|9|0 18|18|19|17|16|16|15|14|12|12|13|13|14|15|21|17|20|19|20|21|0 36|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 16|16|14|14|12|11|10|10|13|11|12|13|15|15|17|17|0 12|11|10|9|8|8|13|9|10|11|12|13|0 41|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 52|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 28|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 45|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 29|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 21|21|20|20|19|17|16|16|15|13|13|14|14|15|18|17|18|19|23|22|22|23|0 17|15|15|16|18|13|12|11|11|14|12|13|14|19|16|17|18|19|0 31|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 82|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 52|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 38|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 49|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 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 25|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 28|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 56|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 17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0 20|20|18|17|16|15|13|13|12|12|19|14|14|15|16|17|18|19|21|21|0 44|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 27|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 47|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 17|15|14|13|12|11|11|10|10|16|12|13|14|15|16|17|0 12|12|11|10|8|8|9|9|10|11|13|13|0 20|19|18|17|16|14|13|13|12|12|21|15|14|15|16|17|18|19|20|21|0 29|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 26|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 21|20|17|15|15|14|14|13|12|12|19|13|18|16|16|17|18|19|20|21|0 26|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 85|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 27|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 29|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 59|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 31|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 21|18|17|17|16|15|15|14|12|12|13|13|14|20|16|19|18|19|20|21|0 51|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 24|24|20|20|21|18|18|17|16|15|14|14|23|15|16|17|19|19|22|21|22|23|25|25|0 36|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 34|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 46|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 81|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 8|6|6|7|9|7|8|9|0 25|23|22|21|20|19|18|17|16|14|14|15|24|15|16|17|18|19|20|21|22|23|24|25|0 48|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 37|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 5|4|4|5|0 98|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 25|23|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|22|23|24|25|0 28|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 19|17|14|14|13|12|12|11|11|18|16|13|15|15|16|17|18|19|0 30|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 57|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 23|22|21|19|17|16|16|14|14|13|13|20|15|15|18|17|18|19|20|21|22|23|0 23|21|20|19|19|16|16|15|14|13|13|18|14|15|17|17|18|22|20|21|22|23|0 9|8|7|7|10|11|8|9|10|11|0 19|18|18|17|16|16|14|12|12|13|15|13|14|15|21|17|20|19|20|21|0 22|22|23|21|20|19|18|18|15|15|14|14|17|16|16|17|25|19|20|21|24|23|24|25|0 33|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 9|6|6|7|8|7|8|9|0 47|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 53|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 21|21|22|19|18|17|16|15|14|13|13|20|14|15|16|17|18|19|20|23|22|23|0 29|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 32|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 31|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 31|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 57|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 43|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 26|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 44|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 29|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 31|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 63|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 66|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 33|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 47|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 56|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 46|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 19|18|17|17|16|15|14|13|12|12|21|13|14|15|16|20|18|19|20|21|0 51|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 49|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 41|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 23|23|24|21|20|19|18|16|15|14|14|17|22|15|16|17|18|19|20|21|22|25|24|25|0 50|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 49|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 21|18|18|17|15|15|12|12|13|14|20|13|14|16|16|17|19|19|20|21|0 22|21|20|19|19|23|16|16|17|18|14|14|15|15|25|17|18|24|20|21|22|23|24|25|0 83|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 3|3|0 3|3|0 22|21|19|18|17|17|16|15|14|13|13|23|14|15|16|20|18|19|20|21|22|23|0 8|8|6|6|7|7|9|9|0 43|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 53|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 33|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 22|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 11|9|8|8|7|7|10|9|10|11|0 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 36|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 34|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 31|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 68|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 88|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 31|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 15|12|12|10|10|9|9|14|11|11|13|13|14|15|0 10|8|8|7|7|11|9|9|10|11|0 72|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 50|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 39|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 22|22|19|18|18|17|15|15|14|13|13|21|14|16|16|17|20|19|20|21|23|23|0 43|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 32|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 48|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 56|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 55|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 23|22|21|19|19|17|17|16|14|14|13|13|15|15|16|18|18|20|20|21|22|23|0 33|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 33|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 18|17|16|15|15|13|12|11|11|14|12|13|14|19|16|17|18|19|0 11|9|8|7|7|10|8|9|10|11|0 7|5|5|6|6|7|0 9|8|7|6|6|7|8|9|0 58|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 19|19|17|16|16|15|14|12|12|13|21|13|14|15|18|17|18|20|20|21|0 23|22|22|21|18|18|19|17|17|15|14|14|16|15|16|25|20|19|20|21|24|23|24|25|0 11|9|9|7|7|8|8|10|10|11|0 64|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 52|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 48|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 19|17|15|14|13|13|12|11|11|18|12|16|14|15|16|17|18|19|0 43|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 64|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 55|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 24|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 16|16|15|15|18|19|13|13|12|12|21|14|14|20|17|17|18|19|20|21|0 44|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 59|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 11|10|9|8|7|7|8|9|10|11|0 27|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 46|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 45|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 35|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 57|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 47|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 49|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 46|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 13|10|9|9|8|8|12|11|10|11|12|13|0 62|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 41|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 18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0 20|19|18|18|17|15|14|13|13|12|12|16|14|15|16|17|21|19|20|21|0 50|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 16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0 26|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 47|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 55|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 13|11|10|8|8|9|12|9|10|11|12|13|0 35|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 45|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 56|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 31|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 11|10|9|9|8|8|13|12|10|11|12|13|0 62|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 11|8|8|7|7|10|9|9|10|11|0 86|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 23|20|20|19|18|18|16|15|13|13|14|17|14|15|16|17|22|19|21|21|22|23|0 39|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 13|10|10|9|8|8|12|9|11|11|12|13|0 52|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 21|19|18|16|16|15|14|13|12|12|20|13|14|15|17|17|18|19|20|21|0 23|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 27|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 42|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 39|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 50|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 61|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 35|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 15|13|12|12|10|10|9|9|11|11|14|13|14|15|0 44|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 35|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 31|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 28|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 72|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 38|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 60|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 43|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 44|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 70|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 33|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 75|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 17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0 21|18|18|15|15|16|13|13|12|12|20|14|14|17|16|17|19|19|20|21|0 49|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 17|15|15|14|13|11|10|10|12|11|12|13|14|16|16|17|0 31|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 16|16|15|13|11|11|10|10|14|12|12|13|14|15|17|17|0 19|17|13|13|14|15|11|11|12|18|12|16|14|15|16|17|18|19|0 34|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 22|21|20|20|18|17|15|15|14|13|13|19|14|16|16|17|18|19|23|21|22|23|0 28|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 63|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 17|14|13|12|10|10|11|15|16|11|12|13|14|15|16|17|0 47|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 46|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 60|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 44|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 28|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 20|19|17|17|18|14|13|13|12|12|16|15|14|15|16|21|18|19|20|21|0 32|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 18|18|15|15|13|12|12|11|11|17|14|13|14|16|16|17|19|19|0 36|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 34|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 45|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 70|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 38|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 49|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 47|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 31|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 46|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 24|22|22|23|20|18|18|15|15|16|14|14|21|17|16|17|19|19|20|21|25|23|24|25|0 21|19|18|16|16|17|20|15|14|14|13|13|23|15|22|17|18|19|20|21|22|23|0 41|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 21|21|20|17|16|16|15|15|14|13|13|23|14|19|18|17|18|19|20|22|22|23|0 42|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 31|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 19|13|13|14|15|12|11|11|17|18|12|16|14|15|16|17|18|19|0 45|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 47|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 20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 14|12|11|10|9|9|13|15|10|11|12|13|14|15|0 36|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 29|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 37|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 10|10|8|7|7|9|8|9|11|11|0 51|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 25|23|22|21|20|19|18|17|15|14|14|16|24|15|16|17|18|19|20|21|22|23|24|25|0 7|5|5|6|6|7|0 11|10|9|7|7|8|8|9|10|11|0 21|20|19|15|15|16|14|13|12|12|18|13|14|17|16|17|18|19|20|21|0 29|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 43|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 11|10|9|9|8|8|13|12|10|11|12|13|0 31|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 46|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 30|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 52|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 40|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 62|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 9|6|6|7|8|7|8|9|0 27|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 45|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 44|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 12|11|11|9|8|8|10|9|10|13|12|13|0 31|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 46|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 58|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 33|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 20|18|18|19|21|22|15|15|14|13|13|17|14|16|16|17|23|19|20|21|22|23|0 38|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 38|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 22|21|20|18|18|17|17|23|16|15|14|14|25|15|16|24|19|19|20|21|22|23|24|25|0 47|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 7|5|5|6|6|7|0 77|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 28|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 37|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 51|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 63|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 18|17|17|19|16|15|15|21|14|13|13|23|14|22|16|20|18|19|20|21|22|23|0 66|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 33|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 51|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 23|21|20|19|17|17|16|15|14|13|13|22|14|15|16|18|18|19|20|21|22|23|0 28|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 25|22|22|21|20|18|18|17|15|14|14|16|24|15|16|17|19|19|20|21|23|23|24|25|0 15|14|12|11|10|9|9|13|10|11|12|13|14|15|0 43|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 67|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 30|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 16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0 55|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 27|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 25|24|20|19|18|18|21|17|15|15|14|14|23|16|16|17|22|19|20|21|22|23|24|25|0 41|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 37|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 71|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 35|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 23|21|19|19|18|17|15|14|13|13|16|22|14|15|16|17|18|20|20|21|22|23|0 24|23|23|21|20|19|18|16|15|15|14|14|22|17|16|17|18|19|20|21|22|25|24|25|0 16|13|13|14|12|11|10|10|17|11|12|15|14|15|16|17|0 30|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 57|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 34|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 75|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 26|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 43|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 41|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 19|17|16|16|15|14|12|11|11|13|12|13|14|15|18|17|18|19|0 49|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 60|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 37|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 53|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 20|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|21|19|20|21|0 26|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 30|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 22|21|20|19|19|17|17|15|14|13|13|16|14|15|16|18|18|23|20|21|22|23|0 40|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 25|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 58|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 23|22|21|21|20|19|18|18|16|14|14|15|17|15|16|17|25|19|20|24|22|23|24|25|0 10|10|8|7|7|9|8|9|11|11|0 32|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 66|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 15|14|14|12|11|11|13|10|10|17|12|13|16|15|16|17|0 27|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 30|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 37|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 11|10|10|9|8|8|13|9|12|11|12|13|0 17|16|16|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0 56|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 32|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 61|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 28|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 30|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 39|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 58|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 42|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 29|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 39|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 58|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 15|14|14|16|13|11|10|10|12|11|12|13|17|15|16|17|0 46|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 44|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 36|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 52|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 26|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 68|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 29|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 35|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 31|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 20|19|19|18|17|16|14|12|12|13|15|13|14|15|16|17|18|21|20|21|0 25|24|21|20|20|19|18|16|16|15|14|14|23|15|17|17|18|19|22|21|22|23|24|25|0 9|7|6|6|8|7|8|9|0 21|21|20|19|19|17|15|14|14|13|13|18|16|15|16|17|18|23|20|22|22|23|0 20|18|18|19|16|14|14|13|12|12|17|13|15|15|16|17|21|19|20|21|0 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0 50|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 32|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 39|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 27|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 11|8|8|9|7|7|10|9|10|11|0 65|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 26|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 21|21|22|18|18|16|16|15|14|13|13|20|14|15|17|17|19|19|20|23|22|23|0 20|19|18|18|16|14|14|13|12|12|17|13|15|15|16|17|21|19|20|21|0 53|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 42|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 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 37|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 9|9|10|8|8|12|13|11|10|11|12|13|0 25|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 59|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 23|23|22|22|19|19|18|16|16|15|14|14|21|15|17|17|18|20|20|21|25|24|24|25|0 16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0 50|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 27|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 31|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 21|19|16|16|17|15|13|13|12|12|20|14|14|15|18|17|18|19|20|21|0 61|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 32|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 32|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 54|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 33|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 34|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 81|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 57|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 11|11|10|9|8|8|13|9|10|12|12|13|0 37|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 28|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 25|23|23|21|20|18|18|17|16|15|14|14|22|15|16|17|19|19|20|21|22|24|24|25|0 20|20|18|17|16|14|14|13|12|12|19|13|15|15|16|17|18|19|21|21|0 33|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 39|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 47|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 58|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 51|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 73|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 58|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 28|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 27|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 46|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 43|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 29|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 57|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 7|7|6|6|9|8|8|9|0 25|23|21|21|22|19|18|17|16|15|14|14|20|15|16|17|18|19|20|24|22|23|24|25|0 23|22|22|21|19|19|20|17|15|15|14|14|18|16|16|17|18|25|20|21|24|23|24|25|0 19|16|15|14|13|13|12|11|11|18|12|17|14|15|16|17|18|19|0 35|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 38|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 26|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 38|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 13|9|9|10|8|8|12|11|10|11|12|13|0 64|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 67|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 36|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 27|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 71|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 47|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 64|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 43|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 7|5|5|6|6|7|0 7|5|5|6|6|7|0 30|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 30|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 37|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 24|23|23|20|20|19|18|15|15|16|14|14|22|17|16|17|18|19|21|21|22|25|24|25|0 48|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 39|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 23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0 31|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 39|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 58|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 27|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 59|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 25|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 14|13|12|12|11|9|9|10|10|11|15|13|14|15|0 40|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 36|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 52|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 16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0 39|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 34|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 30|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 29|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 41|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 37|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 23|20|20|16|15|15|17|18|14|13|13|22|14|19|16|17|18|19|21|21|22|23|0 26|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 21|19|18|17|16|15|13|13|12|12|20|14|14|15|16|17|18|19|20|21|0 27|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 49|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 18|18|16|14|14|13|11|11|12|17|12|13|15|15|16|17|19|19|0 33|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 45|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 19|19|18|18|16|15|13|12|12|14|17|13|14|15|16|17|21|20|20|21|0 27|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 44|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 44|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 39|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 31|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 35|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 50|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 52|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 34|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 35|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 43|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 74|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 62|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 40|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 35|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 27|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 28|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 19|17|16|15|14|12|12|11|11|18|13|13|14|15|16|17|18|19|0 45|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 32|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 22|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 27|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 19|16|16|14|13|13|12|11|11|18|12|15|14|15|17|17|18|19|0 30|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 23|22|20|20|18|17|15|15|14|13|13|19|14|16|16|17|18|19|21|21|22|23|0 45|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 40|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 20|16|16|15|14|14|18|19|12|12|13|13|21|15|17|17|18|19|20|21|0 16|15|14|12|12|11|10|10|17|11|13|13|14|15|16|17|0 47|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 43|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 25|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 39|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 54|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 21|20|20|19|19|17|14|14|15|13|13|18|16|15|16|17|18|23|22|21|22|23|0 43|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 59|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 48|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 22|20|20|19|18|17|17|16|13|13|14|15|14|15|16|23|18|19|21|21|22|23|0 28|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 58|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 38|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 21|20|19|18|17|16|15|14|13|12|12|13|14|15|16|17|18|19|20|21|0 36|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 80|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 25|23|21|21|19|18|17|17|16|15|14|14|24|15|16|20|18|19|20|22|22|23|24|25|0 30|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 45|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 32|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 27|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 35|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 17|16|15|14|14|13|12|11|11|19|12|13|18|15|16|17|18|19|0 63|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 37|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 38|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 21|19|17|17|16|15|14|13|12|12|20|13|14|15|16|18|18|19|20|21|0 68|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 16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0 49|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 54|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 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 35|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 13|12|11|9|8|8|10|9|10|11|12|13|0 33|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 15|14|12|11|10|9|9|13|10|11|12|13|14|15|0 34|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 40|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 57|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 58|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 24|23|22|21|20|20|18|17|15|14|14|16|19|15|16|17|18|19|25|21|22|23|24|25|0 23|23|22|21|21|18|18|17|16|15|14|14|20|15|16|17|19|19|20|25|22|24|24|25|0 52|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 42|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 13|11|10|9|8|8|12|9|10|11|12|13|0 55|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 58|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 52|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 69|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 46|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 15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0 35|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 40|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 31|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 45|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 26|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 70|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 11|10|10|9|8|8|13|9|12|11|12|13|0 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 15|15|14|13|12|11|11|10|10|17|12|13|14|16|16|17|0 36|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 14|14|15|13|12|11|10|10|17|11|12|13|16|15|16|17|0 69|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 61|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 21|21|19|19|20|17|16|15|14|13|13|18|14|15|16|17|18|23|20|22|22|23|0 44|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 36|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 26|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 35|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 17|17|16|16|14|13|11|11|12|15|12|13|14|15|19|18|18|19|0 8|7|6|6|9|7|8|9|0 22|20|20|19|18|18|17|16|14|13|13|15|14|15|16|17|23|19|21|21|22|23|0 33|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 36|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 37|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 5|4|4|5|0 55|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 11|9|8|7|7|10|8|9|10|11|0 16|16|14|12|11|11|10|10|15|13|12|13|14|15|17|17|0 27|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 35|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 35|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 32|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 24|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 41|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 35|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 31|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 24|24|22|20|19|19|18|17|16|14|14|15|23|15|16|17|18|21|20|21|22|23|25|25|0 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 57|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 10|9|8|7|7|11|8|9|10|11|0 67|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 42|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 29|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 35|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 23|22|18|18|19|17|16|15|14|13|13|21|14|15|16|17|20|19|20|21|22|23|0 40|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 10|10|7|7|8|9|8|9|11|11|0 38|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 43|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 39|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 10|10|11|9|8|8|13|9|12|11|12|13|0 38|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 96|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 16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0 50|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 22|22|16|16|15|14|14|18|19|13|13|21|20|15|17|17|18|19|20|21|23|23|0 61|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 46|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 68|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 38|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 40|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 47|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 40|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 33|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 61|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 75|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 48|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 33|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 58|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 35|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 34|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 10|9|8|7|7|11|8|9|10|11|0 72|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 45|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 30|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 27|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 30|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 21|19|18|14|14|15|13|13|12|12|20|17|16|15|16|17|18|19|20|21|0 29|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 23|23|22|22|20|19|18|17|15|14|14|16|21|15|16|17|18|19|20|21|25|24|24|25|0 65|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 20|19|19|16|15|14|13|13|12|12|18|17|14|15|16|17|18|21|20|21|0 46|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 37|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 59|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 16|15|14|14|13|12|11|10|10|11|12|13|17|15|16|17|0 50|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 16|15|14|14|13|11|10|10|12|11|12|13|17|15|16|17|0 23|20|19|19|18|16|16|14|14|13|13|22|15|15|17|17|18|21|20|21|22|23|0 9|9|8|7|7|11|8|10|10|11|0 42|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 67|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 23|19|19|20|18|17|16|15|14|13|13|22|14|15|16|17|18|21|20|21|22|23|0 51|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 42|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 56|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 17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0 10|9|8|7|7|11|8|9|10|11|0 57|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 48|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 58|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 47|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 26|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 32|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 25|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 55|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 16|14|14|12|11|11|10|10|17|13|12|13|15|15|16|17|0 52|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 27|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 46|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 32|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 38|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 54|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 17|16|16|15|14|12|12|13|11|11|19|13|14|15|18|17|18|19|0 27|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 12|12|9|9|8|8|11|10|10|11|13|13|0 53|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 18|17|16|15|15|14|13|12|11|11|12|13|14|19|16|17|18|19|0 28|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 50|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 61|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 60|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 13|11|11|10|8|8|9|9|10|12|12|13|0 10|10|8|7|7|9|8|9|11|11|0 40|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 55|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 42|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 22|21|20|19|18|17|17|16|13|13|14|15|14|15|16|23|18|19|20|21|22|23|0 28|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 16|15|15|14|13|11|10|10|12|11|12|13|14|17|16|17|0 27|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 45|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 21|19|18|17|17|20|22|23|16|15|14|14|25|15|16|24|18|19|20|21|22|23|24|25|0 20|18|18|17|16|16|15|13|12|12|14|13|14|15|21|17|19|19|20|21|0 22|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 16|13|12|12|14|11|10|10|17|11|15|13|14|15|16|17|0 50|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 59|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 11|9|8|7|7|10|8|9|10|11|0 63|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 24|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 31|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 57|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 39|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 20|19|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|21|20|21|0 21|19|18|17|16|16|15|13|12|12|14|13|14|15|20|17|18|19|20|21|0 13|11|9|8|8|10|12|9|10|11|12|13|0 25|22|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|23|23|24|25|0 23|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 16|15|14|14|17|13|11|11|12|19|12|13|18|15|16|17|18|19|0 60|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 24|24|22|20|19|19|18|16|15|15|14|14|23|17|16|17|18|21|20|21|22|23|25|25|0 16|15|12|11|11|13|14|10|10|17|12|13|14|15|16|17|0 6|6|5|5|7|7|0 57|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 39|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 31|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 42|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 31|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 17|16|15|14|10|10|11|12|13|11|12|13|14|15|16|17|0 59|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 45|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 20|19|18|17|16|16|14|13|12|12|15|13|14|15|21|17|18|19|20|21|0 19|19|15|15|16|14|13|13|12|12|21|18|14|17|16|17|18|20|20|21|0 38|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 53|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 53|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 44|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 50|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 16|15|15|13|11|10|10|12|14|11|12|13|14|17|16|17|0 18|18|19|20|17|12|12|13|14|15|16|13|14|15|16|17|21|19|20|21|0 29|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 25|22|21|20|19|18|18|16|15|15|14|14|24|17|16|17|23|19|20|21|22|23|24|25|0 39|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 34|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 30|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 8|8|6|6|7|7|9|9|0 27|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 66|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 29|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 14|13|12|12|10|9|9|11|10|11|15|13|14|15|0 14|14|15|13|12|11|10|10|17|11|12|13|16|15|16|17|0 28|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 30|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 43|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 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 25|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 25|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 25|22|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|23|23|24|25|0 14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0 65|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 27|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 43|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 11|10|8|8|7|7|9|9|10|11|0 67|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 53|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 28|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 52|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 35|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 56|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 33|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 38|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 22|21|19|19|20|18|16|15|14|14|13|13|17|15|16|17|18|23|20|21|22|23|0 25|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 46|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 25|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 47|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 18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0 35|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 47|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 21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0 33|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 48|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 20|19|15|14|14|16|12|12|13|18|21|13|17|15|16|17|18|19|20|21|0 90|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 35|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 25|22|22|21|20|19|17|17|16|15|14|14|24|15|16|18|18|19|20|21|23|23|24|25|0 31|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 35|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 41|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 25|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 33|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 32|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 25|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 24|23|22|22|20|19|19|16|16|14|14|15|18|15|17|17|18|21|20|21|25|23|24|25|0 42|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 49|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 52|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 67|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 47|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 48|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 39|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 65|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 34|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 45|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 62|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 48|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 10|7|7|8|9|11|8|9|10|11|0 40|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 34|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 47|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 22|22|23|24|17|17|18|19|16|15|14|14|21|15|16|20|18|19|20|21|25|23|24|25|0 22|21|20|18|17|17|16|15|14|13|13|23|14|15|16|19|18|19|20|21|22|23|0 41|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 62|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 48|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 27|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 51|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 31|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 19|16|16|15|14|13|12|11|11|18|12|13|14|15|17|17|18|19|0 17|17|16|15|14|13|12|11|11|19|12|13|14|15|16|18|18|19|0 91|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 35|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 70|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 49|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 60|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 44|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 18|17|17|16|15|15|14|13|12|12|21|13|14|20|16|19|18|19|20|21|0 53|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 19|19|20|18|16|15|13|12|12|14|17|13|14|15|16|17|18|21|20|21|0 46|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 57|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 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 16|16|17|15|15|13|12|11|11|14|12|13|14|19|18|17|18|19|0 46|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 35|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 42|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 40|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 56|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 51|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 29|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 76|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 47|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 44|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 80|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 13|11|10|8|8|9|12|9|10|11|12|13|0 51|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 34|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 54|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 49|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 51|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 14|14|12|11|9|9|10|13|10|11|12|13|15|15|0 3|3|0 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 34|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 40|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 33|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 17|14|14|13|13|12|10|10|11|11|12|16|15|15|16|17|0 7|7|6|6|9|8|8|9|0 5|4|4|5|0 5|4|4|5|0 5|4|4|5|0 18|18|17|16|15|15|20|21|14|13|13|23|14|22|16|17|19|19|20|21|22|23|0 13|12|12|9|9|10|11|15|10|11|14|13|14|15|0 3|3|0 23|23|22|21|20|19|18|17|16|15|14|14|25|15|16|17|18|19|20|21|22|24|24|25|0 3|3|0 15|14|12|11|10|9|9|13|10|11|12|13|14|15|0 27|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 21|19|18|17|17|16|14|14|13|13|22|23|15|15|16|20|18|19|20|21|22|23|0 38|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 28|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 16|15|14|13|12|10|10|11|17|11|12|13|14|15|16|17|0 29|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 54|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 67|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 59|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 38|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 44|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 17|16|14|14|13|12|10|10|11|11|12|13|15|15|16|17|0 34|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 22|22|20|19|18|16|15|14|14|13|13|21|17|15|16|17|18|19|20|21|23|23|0 40|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 19|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|18|19|0 33|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 52|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 28|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 43|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 64|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 8|7|6|6|9|7|8|9|0 44|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 29|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 40|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 20|20|17|17|15|14|14|13|12|12|19|13|16|15|16|18|18|19|21|21|0 25|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 37|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 36|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 31|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 56|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 19|18|17|14|14|12|12|11|11|16|13|13|15|15|16|17|18|19|0 24|24|22|20|20|19|17|17|16|14|14|15|23|15|16|18|18|19|21|21|22|23|25|25|0 26|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 10|10|8|7|7|9|8|9|11|11|0 58|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 38|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 42|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 40|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 37|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 50|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 58|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 28|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 32|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 63|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 32|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 34|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 30|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 37|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 31|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 43|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 12|10|10|9|8|8|13|9|11|11|12|13|0 30|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 26|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 44|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 82|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 77|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 38|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 22|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 23|21|20|18|18|17|14|14|15|13|13|22|16|15|16|17|19|19|20|21|22|23|0 10|10|11|9|8|8|13|9|12|11|12|13|0 39|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 48|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 25|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 15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0 14|12|12|11|10|9|9|15|10|11|13|13|14|15|0 17|16|15|15|18|19|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0 37|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 20|17|16|16|18|15|14|14|12|12|13|13|21|15|19|17|18|19|20|21|0 25|21|19|19|18|17|17|22|16|14|14|15|24|15|16|23|18|20|20|21|22|23|24|25|0 27|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 40|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 35|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 40|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 5|5|6|7|6|7|0 18|17|15|15|14|12|12|11|11|19|13|13|14|16|16|17|18|19|0 33|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 49|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 61|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 30|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 7|6|5|5|6|7|0 71|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 30|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 21|19|19|15|15|16|13|13|12|12|18|14|14|17|16|17|18|20|20|21|0 9|9|10|8|7|7|8|11|10|11|0 9|6|6|7|8|7|8|9|0 35|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 17|16|14|14|15|18|19|13|12|12|21|13|20|15|16|17|18|19|20|21|0 39|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 22|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 12|12|10|9|8|8|11|9|10|11|13|13|0 51|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 25|24|20|20|21|18|17|17|16|15|14|14|23|15|16|19|18|19|22|21|22|23|24|25|0 26|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 37|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 23|23|21|21|20|19|18|18|16|15|14|14|17|15|16|17|25|19|20|22|22|24|24|25|0 37|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 55|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 29|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 8|6|6|7|9|7|8|9|0 19|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|21|20|20|21|0 40|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 56|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 25|23|22|21|20|18|18|16|16|15|14|14|24|15|17|17|19|19|20|21|22|23|24|25|0 23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0 47|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 38|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 50|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 65|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 3|3|0 26|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 61|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 23|17|17|18|19|16|16|21|22|15|15|14|14|25|24|20|18|19|20|21|22|23|24|25|0 40|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 62|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 64|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 35|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 47|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 37|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 63|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 35|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 41|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 32|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 25|24|22|20|19|18|17|17|16|15|14|14|23|15|16|21|18|19|20|21|22|23|24|25|0 37|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 22|16|16|17|18|15|15|20|21|13|13|14|14|23|19|17|18|19|20|21|22|23|0 49|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 61|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 3|3|0 35|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 21|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 19|17|11|11|12|13|14|15|16|18|12|13|14|15|16|17|18|19|0 47|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 31|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 13|11|10|9|8|8|12|9|10|11|12|13|0 40|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 19|17|16|15|13|12|12|11|11|18|14|13|14|15|16|17|18|19|0 10|9|7|7|8|11|8|9|10|11|0 54|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 36|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 35|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 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 33|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 15|14|10|10|11|9|9|13|12|11|12|13|14|15|0 45|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 40|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 14|14|13|10|10|9|9|12|11|11|12|13|15|15|0 26|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 12|11|11|13|10|10|9|9|15|14|12|13|14|15|0 23|20|20|19|16|16|17|15|14|13|13|22|14|15|18|17|18|19|21|21|22|23|0 48|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 7|7|6|6|9|8|8|9|0 74|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 21|21|15|15|16|17|18|19|14|13|13|23|14|20|16|17|18|19|20|22|22|23|0 24|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 40|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 24|23|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|25|24|25|0 72|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 67|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 47|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 73|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 25|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 53|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 76|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 39|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 35|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 72|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 42|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 19|17|17|16|14|13|12|11|11|15|12|13|14|15|16|18|18|19|0 25|22|21|21|20|18|17|17|15|15|14|14|24|16|16|19|18|19|20|23|22|23|24|25|0 22|22|18|18|19|16|16|13|13|14|15|21|14|15|17|17|20|19|20|21|23|23|0 26|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 26|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 44|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 23|20|20|19|16|14|14|15|17|13|13|22|18|15|16|17|18|19|21|21|22|23|0 71|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 50|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 37|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 20|19|19|21|18|17|16|15|14|13|13|23|14|15|16|17|18|22|20|21|22|23|0 33|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 11|11|9|9|10|8|8|13|10|12|12|13|0 47|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 26|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 20|19|19|16|16|15|13|13|12|12|18|14|14|15|17|17|18|21|20|21|0 48|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 51|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 32|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 58|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 19|18|18|17|17|14|14|12|12|13|16|13|15|15|16|21|20|19|20|21|0 39|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 33|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 42|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 30|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 66|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 41|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 30|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 44|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 16|14|14|13|12|11|10|10|17|11|12|13|15|15|16|17|0 42|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 5|4|4|5|0 41|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 15|13|13|14|12|12|10|10|11|11|17|16|14|15|16|17|0 18|15|15|16|14|12|12|11|11|19|13|13|14|17|16|17|18|19|0 15|13|12|9|9|10|11|14|10|11|12|13|14|15|0 20|20|17|15|15|16|13|13|12|12|19|14|14|18|16|17|18|19|21|21|0 44|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 8|8|6|6|7|7|9|9|0 13|11|11|10|8|8|9|9|10|12|12|13|0 35|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 19|18|17|17|20|16|14|13|12|12|15|13|14|15|16|21|18|19|20|21|0 46|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 20|18|18|16|16|15|15|14|12|12|13|13|14|21|17|17|19|19|20|21|0 19|18|17|15|14|13|12|11|11|16|12|13|14|15|16|17|18|19|0 57|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 32|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 24|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 58|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 41|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 15|15|13|13|14|11|10|10|12|11|12|17|14|16|16|17|0 28|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 31|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 31|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 34|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 60|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 51|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 32|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 72|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 21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0 42|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 44|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 30|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 21|20|18|18|17|14|14|13|12|12|16|13|15|15|16|17|19|19|20|21|0 26|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 56|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 38|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 33|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 47|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 41|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 39|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 20|20|17|16|16|15|14|12|12|13|19|13|14|15|18|17|18|19|21|21|0 17|16|15|13|13|11|10|10|12|11|12|14|14|15|16|17|0 30|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 32|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 59|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 31|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 17|15|14|12|11|10|10|13|16|11|12|13|14|15|16|17|0 24|23|22|21|21|20|19|17|16|15|14|14|18|15|16|17|18|19|20|25|22|23|24|25|0 22|21|20|19|19|17|16|15|13|13|14|18|14|15|16|17|18|23|20|21|22|23|0 28|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 19|16|16|15|14|12|11|11|13|18|12|13|14|15|17|17|18|19|0 34|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 41|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 48|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 14|13|13|15|11|11|10|10|17|12|12|16|14|15|16|17|0 35|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 19|18|16|16|17|15|15|12|12|13|14|13|14|21|20|17|18|19|20|21|0 58|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 52|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 30|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 13|11|9|9|8|8|12|10|10|11|12|13|0 33|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 21|21|20|20|18|17|16|15|13|13|14|19|14|15|16|17|18|19|23|22|22|23|0 9|8|7|6|6|7|8|9|0 49|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 32|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 24|24|22|17|17|16|16|19|15|15|14|14|23|21|20|18|18|19|20|21|22|23|25|25|0 17|17|16|15|14|13|12|11|11|19|12|13|14|15|16|18|18|19|0 45|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 20|19|18|18|17|15|14|14|12|12|13|13|16|15|16|17|21|19|20|21|0 27|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 46|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 29|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 13|10|10|9|8|8|12|9|11|11|12|13|0 31|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 61|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 26|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 62|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 20|20|17|16|14|14|13|12|12|18|19|13|15|15|16|17|18|19|21|21|0 19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0 33|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 19|17|16|15|13|12|12|11|11|18|14|13|14|15|16|17|18|19|0 31|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 41|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 25|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 23|23|22|21|21|20|19|18|16|15|14|14|17|15|16|17|18|19|20|25|22|24|24|25|0 30|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 33|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 13|12|12|14|15|11|10|10|17|11|16|13|14|15|16|17|0 60|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 55|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 33|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 62|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 44|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 64|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 18|17|13|13|14|12|11|11|16|19|12|15|14|15|16|17|18|19|0 37|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 39|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 49|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 64|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 68|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 48|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 40|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 25|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 17|16|16|15|15|12|12|11|11|14|13|13|14|19|18|17|18|19|0 19|19|20|18|16|15|13|13|12|12|17|14|14|15|16|17|18|21|20|21|0 52|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 34|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 20|19|19|18|17|14|14|13|12|12|16|13|15|15|16|17|18|21|20|21|0 38|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 29|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 31|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 15|14|14|16|17|12|12|11|11|19|13|13|18|15|16|17|18|19|0 29|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 37|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 27|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 39|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 10|8|7|7|9|11|8|9|10|11|0 54|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 57|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 31|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 69|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 38|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 25|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 49|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 24|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 34|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 15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0 20|20|21|16|16|17|18|14|14|13|13|23|15|15|19|17|18|19|22|21|22|23|0 24|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 19|18|17|16|16|15|14|12|12|13|21|13|14|15|20|17|18|19|20|21|0 68|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 33|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 13|9|9|10|8|8|12|11|10|11|12|13|0 27|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 23|19|19|18|18|17|16|14|14|13|13|22|15|15|16|17|21|20|20|21|22|23|0 35|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 51|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 53|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 39|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 35|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 16|15|14|13|12|12|10|10|11|11|17|13|14|15|16|17|0 41|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 32|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 11|8|8|7|7|10|9|9|10|11|0 15|14|13|10|10|9|9|12|11|11|12|13|14|15|0 43|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 23|19|18|17|17|15|15|14|13|13|21|22|14|16|16|20|18|19|20|21|22|23|0 15|14|13|11|10|9|9|12|10|11|12|13|14|15|0 13|12|11|8|8|9|10|9|10|11|12|13|0 49|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 73|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 32|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 37|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 20|19|18|17|16|16|21|15|14|13|13|23|14|15|22|17|18|19|20|21|22|23|0 46|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 16|15|15|14|11|11|10|10|13|12|12|13|14|17|16|17|0 25|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 16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0 22|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 19|17|16|15|13|13|12|11|11|18|12|14|14|15|16|17|18|19|0 27|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 15|14|13|11|10|9|9|12|10|11|12|13|14|15|0 25|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 38|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 19|17|17|16|16|20|21|15|13|13|14|23|14|15|22|18|18|19|20|21|22|23|0 5|4|4|5|0 68|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 41|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 72|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 64|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 26|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 62|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 41|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 4|4|5|5|0 57|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 39|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 32|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 23|20|20|18|18|19|14|14|15|13|13|17|16|15|16|17|22|19|21|21|22|23|0 9|8|6|6|7|7|8|9|0 31|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 27|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 26|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 24|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 58|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 43|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 10|10|9|7|7|8|8|9|11|11|0 24|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 18|18|16|15|13|12|12|11|11|17|14|13|14|15|16|17|19|19|0 28|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 8|6|6|7|9|7|8|9|0 38|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 31|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 11|10|8|7|7|9|8|9|10|11|0 41|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 57|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 31|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 74|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 47|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 33|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 52|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 56|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 43|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 24|24|22|21|19|19|18|15|15|16|14|14|23|17|16|17|18|20|20|21|22|23|25|25|0 25|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 41|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 40|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 74|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 24|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 11|9|8|7|7|10|8|9|10|11|0 35|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 52|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 10|9|8|8|7|7|11|9|10|11|0 29|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 21|20|19|19|22|23|18|17|15|15|14|14|25|16|16|17|18|24|20|21|22|23|24|25|0 36|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 4|4|5|5|0 28|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 22|21|18|18|19|15|14|14|16|13|13|23|17|15|16|17|20|19|20|21|22|23|0 30|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 43|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 37|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 11|8|7|7|9|10|8|9|10|11|0 21|20|19|18|18|17|16|16|14|13|13|15|14|15|23|17|22|19|20|21|22|23|0 26|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 55|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 64|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 60|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 47|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 38|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 50|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 31|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 60|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 26|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 33|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 31|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 20|20|18|16|14|14|15|13|12|12|19|13|17|15|16|17|18|19|21|21|0 22|22|23|21|19|19|18|17|16|15|14|14|25|15|16|17|18|20|20|21|24|23|24|25|0 36|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 12|12|13|11|10|9|9|15|10|11|14|13|14|15|0 78|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 48|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 23|22|22|21|20|19|17|17|18|15|14|14|16|15|16|25|18|19|20|21|24|23|24|25|0 74|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 13|11|10|9|8|8|12|9|10|11|12|13|0 27|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 21|21|22|19|17|16|15|15|14|13|13|20|14|18|16|17|18|19|20|23|22|23|0 39|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 51|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 28|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 7|7|6|6|9|8|8|9|0 37|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 57|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 35|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 49|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 68|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 47|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 78|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 17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0 40|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 13|13|12|11|11|9|9|10|10|15|12|14|14|15|0 13|10|10|9|8|8|12|9|11|11|12|13|0 58|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 20|19|19|17|14|14|15|13|12|12|18|13|16|15|16|17|18|21|20|21|0 60|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 64|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 18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0 29|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 23|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 19|17|15|15|14|13|11|11|12|18|12|13|14|16|16|17|18|19|0 14|14|15|12|11|11|10|10|17|13|12|13|16|15|16|17|0 29|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 27|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 54|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 25|24|22|20|20|19|17|17|16|15|14|14|23|15|16|18|18|19|21|21|22|23|24|25|0 41|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 42|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 42|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 37|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 21|21|20|19|19|23|18|17|16|15|14|14|25|15|16|17|18|24|20|22|22|23|24|25|0 65|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 8|8|6|6|7|7|9|9|0 27|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 11|9|8|7|7|10|8|9|10|11|0 51|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 19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0 35|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 21|21|20|20|19|17|17|16|14|13|13|15|14|15|16|18|18|19|23|22|22|23|0 17|14|14|13|12|10|10|11|16|11|12|13|15|15|16|17|0 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 18|17|16|15|15|19|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0 16|15|14|13|13|12|11|10|10|11|12|17|14|15|16|17|0 41|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 11|10|9|9|8|8|13|12|10|11|12|13|0 38|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 68|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 31|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 42|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 63|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 75|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 23|22|22|21|20|20|18|17|16|15|14|14|19|15|16|17|18|19|25|21|24|23|24|25|0 37|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 43|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 51|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 27|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 80|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 17|16|15|15|14|13|11|11|12|19|12|13|14|18|16|17|18|19|0 48|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 5|4|4|5|0 48|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 26|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 20|20|21|22|18|17|16|15|14|13|13|19|14|15|16|17|18|19|23|21|22|23|0 48|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 37|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 64|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 50|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 59|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 25|22|22|20|19|19|18|17|16|14|14|15|24|15|16|17|18|21|20|21|23|23|24|25|0 21|20|19|18|17|16|16|22|23|15|14|14|25|15|24|17|18|19|20|21|22|23|24|25|0 20|19|19|17|16|15|14|12|12|13|18|13|14|15|16|17|18|21|20|21|0 27|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 35|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 28|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 43|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 63|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 22|21|20|18|17|16|15|15|14|13|13|23|14|19|16|17|18|19|20|21|22|23|0 54|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 11|9|8|7|7|10|8|9|10|11|0 38|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 22|19|18|17|17|16|16|14|14|13|13|23|15|15|21|20|18|19|20|21|22|23|0 22|22|19|19|18|16|16|15|14|13|13|21|14|15|17|17|18|20|20|21|23|23|0 39|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 18|18|17|15|15|12|12|11|11|14|13|13|14|16|16|17|19|19|0 25|19|18|18|20|17|16|16|22|15|14|14|24|15|23|17|21|19|20|21|22|23|24|25|0 42|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 42|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 41|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 11|11|10|9|8|8|13|9|10|12|12|13|0 11|8|8|7|7|10|9|9|10|11|0 37|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 51|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 42|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 50|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 15|15|14|14|12|10|10|11|13|11|12|13|17|16|16|17|0 4|4|5|5|0 7|7|6|6|9|8|8|9|0 6|5|5|7|6|7|0 9|8|8|7|7|11|10|9|10|11|0 5|4|4|5|0 42|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 35|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 43|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 55|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 68|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 15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0 34|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 33|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 56|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 21|20|20|19|18|17|16|16|14|13|13|15|14|15|23|17|18|19|22|21|22|23|0 11|10|9|7|7|8|8|9|10|11|0 27|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 71|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 39|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 66|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 13|13|10|10|11|9|9|15|12|11|12|14|14|15|0 56|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 9|9|10|11|8|8|13|12|10|11|12|13|0 33|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 29|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 69|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 33|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 25|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 48|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 28|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 30|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 41|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 25|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 35|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 10|10|8|7|7|9|8|9|11|11|0 30|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 7|5|5|6|6|7|0 22|22|18|18|19|16|16|15|14|13|13|21|14|15|17|17|20|19|20|21|23|23|0 26|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 7|7|6|6|9|8|8|9|0 9|8|7|6|6|7|8|9|0 71|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 27|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 62|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 54|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 34|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 36|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 37|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 79|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 13|11|8|8|9|10|12|9|10|11|12|13|0 34|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 30|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 27|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 14|14|15|13|13|17|12|11|11|19|12|18|16|15|16|17|18|19|0 56|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 9|6|6|7|8|7|8|9|0 26|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 36|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 39|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 20|18|18|17|12|12|13|14|15|16|21|13|14|15|16|17|19|19|20|21|0 19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0 23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0 11|8|8|7|7|10|9|9|10|11|0 34|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 69|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 34|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 28|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 36|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 48|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 30|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 64|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 49|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 64|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 38|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 12|11|10|9|8|8|13|9|10|11|12|13|0 33|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 9|9|8|7|7|11|8|10|10|11|0 22|22|20|17|17|15|15|16|14|13|13|21|14|19|16|18|18|19|20|21|23|23|0 35|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 54|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 44|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 64|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 28|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 26|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 34|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 75|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 62|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 52|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 42|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 40|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 50|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 55|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 24|24|21|20|19|18|18|17|16|15|14|14|23|15|16|17|22|19|20|21|22|23|25|25|0 27|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 70|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 36|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 26|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 39|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 60|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 44|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 21|18|15|15|16|13|13|12|12|19|20|14|14|17|16|17|18|19|20|21|0 48|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 21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0 26|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 28|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 18|17|17|16|16|20|21|15|14|13|13|23|14|15|22|19|18|19|20|21|22|23|0 56|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 10|7|7|8|9|11|8|9|10|11|0 55|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 48|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 37|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 27|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 46|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 85|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 19|16|15|14|14|13|11|11|12|18|12|13|17|15|16|17|18|19|0 32|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 53|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 9|7|6|6|8|7|8|9|0 37|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 52|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 19|19|18|17|16|16|14|13|12|12|15|13|14|15|21|17|18|20|20|21|0 64|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 29|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 58|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 46|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 86|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 29|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 35|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 43|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 33|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 33|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 10|9|8|7|7|11|8|9|10|11|0 16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0 44|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 27|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 7|7|6|6|9|8|8|9|0 41|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 45|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 17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0 67|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 58|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 29|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 30|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 36|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 96|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 35|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 25|22|20|20|17|17|18|19|15|15|14|14|24|16|16|23|18|19|21|21|22|23|24|25|0 17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0 52|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 61|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 54|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 51|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 29|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 30|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 32|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 20|19|18|15|15|16|14|13|13|12|12|21|14|17|16|17|18|19|20|21|0 25|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 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 13|11|10|9|8|8|12|9|10|11|12|13|0 8|6|6|7|9|7|8|9|0 38|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 30|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 36|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 18|17|16|16|15|14|13|12|11|11|12|13|14|15|19|17|18|19|0 42|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 38|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 22|22|21|20|19|19|24|17|15|15|14|14|18|16|16|17|18|25|20|21|23|23|24|25|0 46|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 48|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 37|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 24|24|23|21|20|19|16|16|17|15|14|14|22|15|18|17|18|19|20|21|22|23|25|25|0 62|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 26|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 22|21|20|20|18|17|16|15|13|13|14|19|14|15|16|17|18|19|23|21|22|23|0 39|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 63|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 53|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 25|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 61|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 42|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 7|7|6|6|9|8|8|9|0 57|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 17|15|11|11|12|13|10|10|16|14|12|13|14|15|16|17|0 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 11|9|8|7|7|10|8|9|10|11|0 59|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 27|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 47|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 64|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 53|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 54|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 19|16|16|15|14|12|12|11|11|18|13|13|14|15|17|17|18|19|0 33|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 43|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 87|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 47|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 39|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 11|11|10|9|9|13|14|15|10|12|12|13|14|15|0 36|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 45|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 43|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 30|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 63|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 58|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 58|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 39|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 76|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 8|7|7|6|6|9|8|9|0 47|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 7|6|5|5|6|7|0 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 30|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 51|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 24|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 43|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 20|17|17|16|15|14|13|13|19|12|12|21|14|15|16|18|18|19|20|21|0 26|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 43|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 58|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 22|21|20|20|19|19|18|17|17|15|14|14|16|15|16|25|18|24|23|21|22|23|24|25|0 43|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 52|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 22|22|20|15|15|16|17|18|14|13|13|21|14|19|16|17|18|19|20|21|23|23|0 59|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 40|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 54|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 17|13|13|14|11|11|10|10|16|12|12|15|14|15|16|17|0 11|9|8|7|7|10|8|9|10|11|0 30|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 37|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 21|20|19|17|16|14|14|13|12|12|18|13|15|15|16|17|18|19|20|21|0 17|17|18|16|16|20|15|13|12|12|14|13|14|15|21|19|18|19|20|21|0 16|14|13|13|12|11|10|10|17|11|12|15|14|15|16|17|0 69|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 60|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 19|17|17|14|14|13|11|11|12|16|12|13|15|15|16|18|18|19|0 52|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 9|8|8|7|7|11|10|9|10|11|0 9|7|6|6|8|7|8|9|0 34|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 40|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 41|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 38|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 17|15|14|14|12|11|10|10|13|11|12|13|16|15|16|17|0 10|10|7|7|8|9|8|9|11|11|0 43|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 72|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 26|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 39|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 31|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 24|24|23|21|20|19|19|18|15|15|14|14|17|16|16|17|18|22|20|21|22|23|25|25|0 41|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 30|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 24|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 52|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 19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0 45|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 37|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 19|16|15|15|14|13|12|11|11|18|12|13|14|17|16|17|18|19|0 14|13|12|10|10|11|9|9|15|11|12|13|14|15|0 67|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 59|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 39|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 44|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 19|18|18|17|17|21|22|16|14|14|13|13|15|15|16|23|20|19|20|21|22|23|0 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 25|22|22|23|20|18|18|17|16|15|14|14|21|15|16|17|19|19|20|21|24|23|24|25|0 17|17|16|15|15|13|12|11|11|14|12|13|14|19|16|18|18|19|0 33|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 57|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 42|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 65|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 12|11|11|10|8|8|9|9|10|13|12|13|0 31|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 23|22|22|20|20|21|17|16|16|15|14|14|19|15|18|17|18|19|25|21|24|23|24|25|0 50|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 12|12|10|9|8|8|11|9|10|11|13|13|0 38|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 7|5|5|6|6|7|0 58|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 14|14|15|13|12|11|10|10|17|11|12|13|16|15|16|17|0 10|8|8|9|7|7|11|9|10|11|0 45|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 8|6|6|7|9|7|8|9|0 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 29|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 45|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 27|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 52|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 26|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 27|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 6|6|5|5|7|7|0 47|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 23|21|20|19|17|17|15|14|13|13|16|22|14|15|16|18|18|19|20|21|22|23|0 48|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 59|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 74|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 24|24|20|19|19|18|18|17|15|15|14|14|23|16|16|17|22|21|20|21|22|23|25|25|0 23|18|18|19|17|16|16|21|14|13|13|15|14|15|22|17|20|19|20|21|22|23|0 37|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 40|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 61|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 40|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 62|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 29|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 11|9|8|7|7|10|8|9|10|11|0 38|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 50|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 38|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 28|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 17|15|14|13|10|10|11|12|16|11|12|13|14|15|16|17|0 28|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 33|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 59|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 44|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 39|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 47|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 47|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 31|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 64|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 10|9|8|7|7|11|8|9|10|11|0 27|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 30|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 69|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 17|16|15|13|11|11|10|10|14|12|12|13|14|15|16|17|0 35|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 40|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 57|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 39|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 9|9|10|11|8|8|13|12|10|11|12|13|0 69|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 33|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 11|8|8|7|7|10|9|9|10|11|0 21|20|19|18|18|22|23|16|15|15|14|14|25|17|16|17|24|19|20|21|22|23|24|25|0 49|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 60|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 38|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 33|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 21|20|17|17|15|14|13|13|12|12|19|16|14|15|16|18|18|19|20|21|0 38|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 35|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 31|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 48|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 36|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 33|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 52|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 47|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 44|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 58|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 22|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 48|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 32|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 15|13|11|10|10|9|9|14|12|11|12|13|14|15|0 46|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 35|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 41|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 29|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 34|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 22|22|19|19|17|17|15|14|14|13|13|21|16|15|16|18|18|20|20|21|23|23|0 45|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 38|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 23|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 33|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 40|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 23|20|20|18|17|17|16|15|14|13|13|22|14|15|16|19|18|19|21|21|22|23|0 69|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 31|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 49|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 56|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 18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0 74|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 41|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 33|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 40|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 58|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 38|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 14|13|12|10|10|9|9|15|11|11|12|13|14|15|0 24|24|22|21|19|19|18|16|16|15|14|14|23|15|17|17|18|20|20|21|22|23|25|25|0 40|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 57|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 3|3|0 4|4|5|5|0 13|12|11|10|8|8|9|9|10|11|12|13|0 41|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 30|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 40|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 32|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 39|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 54|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 44|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 40|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 21|21|20|19|18|18|16|15|13|13|14|17|14|15|16|17|23|19|20|22|22|23|0 23|21|21|19|17|17|16|15|14|13|13|20|14|15|16|18|18|19|20|22|22|23|0 7|6|5|5|6|7|0 9|7|6|6|8|7|8|9|0 17|15|14|13|12|10|10|11|16|11|12|13|14|15|16|17|0 24|23|23|22|20|17|17|18|16|14|14|15|21|15|16|19|18|19|20|21|22|25|24|25|0 23|19|19|18|18|17|15|14|14|13|13|22|16|15|16|17|21|20|20|21|22|23|0 64|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 68|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 21|19|18|17|16|15|13|13|12|12|20|14|14|15|16|17|18|19|20|21|0 32|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 15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0 31|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 11|8|8|7|7|10|9|9|10|11|0 37|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 63|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 17|16|14|13|11|11|10|10|15|12|12|13|14|15|16|17|0 14|14|13|12|12|16|11|10|10|11|17|13|15|15|16|17|0 27|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 60|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 70|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 27|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 17|17|16|15|15|14|13|13|12|12|21|20|14|19|16|18|18|19|20|21|0 44|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 51|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 21|19|19|17|16|15|12|12|13|14|18|13|14|15|16|17|18|20|20|21|0 36|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 35|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 23|22|20|19|17|16|15|15|14|13|13|21|14|18|16|17|18|19|20|21|22|23|0 10|10|7|7|8|9|8|9|11|11|0 25|22|22|20|20|18|18|17|15|14|14|16|24|15|16|17|19|19|21|21|23|23|24|25|0 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 35|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 9|7|6|6|8|7|8|9|0 26|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 71|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 26|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 87|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 39|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 33|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 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 28|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 32|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 39|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 30|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 18|17|17|15|13|13|12|11|11|16|12|14|14|15|16|19|18|19|0 37|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 11|9|8|7|7|10|8|9|10|11|0 9|7|6|6|8|7|8|9|0 19|17|16|16|14|13|12|11|11|15|12|13|14|15|18|17|18|19|0 28|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 49|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 39|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 57|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 46|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 43|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 13|12|10|9|8|8|11|9|10|11|12|13|0 44|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 45|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 37|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 49|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 47|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 60|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 31|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 47|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 51|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 12|10|10|9|8|8|13|9|11|11|12|13|0 70|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 45|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 9|8|7|6|6|7|8|9|0 27|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 36|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 12|12|10|9|8|8|11|9|10|11|13|13|0 37|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 52|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 27|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 28|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 27|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 44|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 10|10|8|7|7|9|8|9|11|11|0 11|9|8|7|7|10|8|9|10|11|0 19|16|16|15|14|13|12|11|11|18|12|13|14|15|17|17|18|19|0 16|14|14|13|12|11|10|10|17|11|12|13|15|15|16|17|0 16|15|14|13|11|11|10|10|17|12|12|13|14|15|16|17|0 4|4|5|5|0 20|20|21|16|16|14|14|13|13|18|19|23|15|15|17|17|18|19|22|21|22|23|0 39|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 40|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 29|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 25|24|22|21|20|19|17|16|16|15|14|14|23|15|18|17|18|19|20|21|22|23|24|25|0 42|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 68|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 34|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 12|12|10|9|8|8|11|9|10|11|13|13|0 43|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 41|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 46|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 57|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 36|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 58|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 33|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 18|18|17|13|12|11|11|14|15|16|12|13|14|15|16|17|19|19|0 16|15|14|11|11|12|10|10|17|13|12|13|14|15|16|17|0 63|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 45|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 46|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 38|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 45|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 42|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 35|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 35|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 48|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 56|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 31|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 45|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 61|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 33|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 49|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 52|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 27|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 37|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 37|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 53|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 21|20|19|18|17|17|22|23|16|15|14|14|25|15|16|24|18|19|20|21|22|23|24|25|0 12|11|11|9|8|8|10|9|10|13|12|13|0 25|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 12|12|9|9|8|8|11|10|10|11|13|13|0 28|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 29|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 30|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 15|14|13|11|9|9|10|12|10|11|12|13|14|15|0 30|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 9|8|6|6|7|7|8|9|0 62|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 39|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 14|14|10|10|11|9|9|13|12|11|12|13|15|15|0 55|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 48|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 28|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 37|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 17|16|14|13|11|11|10|10|15|12|12|13|14|15|16|17|0 19|14|14|15|16|13|11|11|12|18|12|13|17|15|16|17|18|19|0 61|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 88|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 33|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 15|15|14|14|17|12|12|11|11|19|13|13|18|16|16|17|18|19|0 77|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 18|17|16|16|15|13|13|11|11|12|12|14|14|15|19|17|18|19|0 37|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 28|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 25|20|20|21|22|18|16|16|17|15|14|14|24|15|19|17|18|19|23|21|22|23|24|25|0 31|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 53|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 33|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 37|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 59|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 9|7|6|6|8|7|8|9|0 53|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 19|17|17|15|12|12|11|11|14|16|13|13|14|15|16|18|18|19|0 33|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 18|18|17|16|15|13|11|11|12|14|12|13|14|15|16|17|19|19|0 41|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 21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0 25|22|22|21|20|19|18|17|15|15|14|14|24|16|16|17|18|19|20|21|23|23|24|25|0 32|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 32|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 48|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 40|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 40|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 11|10|8|7|7|9|8|9|10|11|0 25|20|19|18|18|17|16|15|14|14|22|23|24|15|16|17|21|19|20|21|22|23|24|25|0 17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0 22|21|19|19|20|18|16|16|14|13|13|15|14|15|17|17|18|23|20|21|22|23|0 36|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 44|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 32|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 33|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 19|15|15|16|17|18|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0 13|12|10|10|8|8|9|9|11|11|12|13|0 15|12|12|13|14|11|11|10|10|17|16|13|14|15|16|17|0 36|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 42|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 42|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 42|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 42|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 21|20|19|18|18|17|16|14|13|13|15|23|14|15|16|17|22|19|20|21|22|23|0 40|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 48|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 29|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 15|15|14|13|11|11|12|10|10|17|12|13|14|16|16|17|0 20|20|17|17|16|15|14|12|12|13|19|13|14|15|16|18|18|19|21|21|0 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 51|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 9|9|8|7|7|11|8|10|10|11|0 87|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 33|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 38|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 51|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 39|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 11|9|8|7|7|10|8|9|10|11|0 53|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 22|21|21|19|18|17|14|14|15|13|13|20|16|15|16|17|18|19|20|23|22|23|0 32|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 19|16|15|15|14|13|12|11|11|18|12|13|14|17|16|17|18|19|0 32|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 9|6|6|7|8|7|8|9|0 46|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 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 35|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 52|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 29|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 13|11|9|9|8|8|12|10|10|11|12|13|0 48|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 26|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 18|18|16|15|13|12|11|11|14|17|12|13|14|15|16|17|19|19|0 53|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 65|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 43|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 77|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 5|4|4|5|0 5|4|4|5|0 41|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 39|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 64|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 31|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 52|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 33|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 11|8|8|7|7|10|9|9|10|11|0 61|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 26|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 42|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 25|24|21|20|20|19|18|17|16|15|14|14|23|15|16|17|18|19|22|21|22|23|24|25|0 47|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 45|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 50|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 53|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 19|17|15|14|13|13|12|11|11|18|12|16|14|15|16|17|18|19|0 49|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 44|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 39|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 7|5|5|6|6|7|0 17|14|13|12|11|11|10|10|16|15|12|13|14|15|16|17|0 38|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 24|24|22|21|20|18|17|16|15|15|14|14|23|19|16|17|18|19|20|21|22|23|25|25|0 33|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 40|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 43|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 37|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 23|23|22|22|20|18|17|17|16|14|14|15|21|15|16|19|18|19|20|21|25|24|24|25|0 46|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 51|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 55|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 49|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 27|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 21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0 64|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 60|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 18|18|17|16|15|14|14|13|12|12|21|13|20|15|16|17|19|19|20|21|0 13|13|12|11|10|9|9|15|10|11|12|14|14|15|0 38|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 17|16|16|15|15|14|12|11|11|13|12|13|14|19|18|17|18|19|0 46|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 47|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 41|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 44|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 56|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 37|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 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 56|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 74|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 52|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 11|11|10|9|8|8|13|9|10|12|12|13|0 66|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 70|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 49|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 56|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 39|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 29|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 25|23|21|19|19|20|18|17|16|14|14|15|24|15|16|17|18|22|20|21|22|23|24|25|0 45|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 52|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 9|7|6|6|8|7|8|9|0 81|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 25|22|21|19|19|20|18|17|16|15|14|14|24|15|16|17|18|23|20|21|22|23|24|25|0 71|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 53|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 49|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 40|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 28|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 44|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 66|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 58|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 18|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|19|19|0 68|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 38|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 45|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 61|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 38|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 45|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 59|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 38|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 29|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 55|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 55|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 29|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 42|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 3|3|0 38|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 47|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 14|14|12|11|11|10|9|9|10|13|12|13|15|15|0 59|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 47|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 10|8|7|7|9|11|8|9|10|11|0 49|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 36|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 13|11|10|9|8|8|12|9|10|11|12|13|0 39|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 52|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 14|12|12|11|9|9|10|15|10|11|13|13|14|15|0 61|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 44|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 37|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 8|8|9|7|7|11|10|9|10|11|0 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 59|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 23|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 70|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 13|10|10|11|12|9|9|15|14|11|12|13|14|15|0 44|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 56|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 52|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 31|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 9|9|8|7|7|11|8|10|10|11|0 59|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 30|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 9|8|6|6|7|7|8|9|0 72|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 62|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 69|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 42|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 73|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 56|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 53|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 51|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 33|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 22|17|17|18|19|16|14|13|13|15|21|23|14|15|16|20|18|19|20|21|22|23|0 46|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 18|18|19|17|17|21|16|15|14|13|13|23|14|15|16|22|20|19|20|21|22|23|0 69|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 14|13|10|10|11|9|9|15|12|11|12|13|14|15|0 12|11|11|8|8|9|10|9|10|13|12|13|0 68|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 28|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 85|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 57|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 16|16|13|13|14|11|10|10|12|11|12|15|14|15|17|17|0 14|10|10|11|9|9|13|15|12|11|12|13|14|15|0 13|11|10|9|8|8|12|9|10|11|12|13|0 47|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 23|22|21|18|17|15|15|16|14|13|13|20|14|19|16|17|18|19|20|21|22|23|0 4|4|5|5|0 9|9|8|7|7|11|8|10|10|11|0 32|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 58|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 16|13|13|14|12|11|11|10|10|17|12|15|14|15|16|17|0 32|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 23|21|17|16|15|15|18|19|14|13|13|22|14|20|16|17|18|19|20|21|22|23|0 27|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 43|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 45|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 14|14|12|10|9|9|11|13|10|11|12|13|15|15|0 33|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 72|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 11|10|10|9|8|8|13|9|12|11|12|13|0 63|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 27|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 23|20|18|17|16|15|14|14|19|21|13|13|22|15|16|17|18|19|20|21|22|23|0 45|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 19|13|13|14|12|12|16|11|11|18|17|15|14|15|16|17|18|19|0 43|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 23|23|24|21|19|18|17|17|16|15|14|14|22|15|16|20|18|19|20|21|22|25|24|25|0 18|17|17|14|13|13|12|11|11|16|12|15|14|15|16|19|18|19|0 38|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 33|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 79|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 40|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 23|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 26|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 51|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 46|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 29|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 10|9|9|7|7|8|8|11|10|11|0 50|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 14|14|15|12|12|11|10|10|17|11|13|13|16|15|16|17|0 52|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 53|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 36|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 23|21|21|20|19|16|15|14|13|13|17|18|14|15|16|17|18|19|20|22|22|23|0 12|11|10|10|13|9|9|15|14|11|12|13|14|15|0 9|8|7|6|6|7|8|9|0 10|10|9|7|7|8|8|9|11|11|0 37|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 40|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 12|11|10|10|8|8|9|9|13|11|12|13|0 34|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 54|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 60|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 47|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 61|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 24|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 36|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 25|23|20|20|21|18|18|17|15|15|14|14|24|16|16|17|19|19|22|21|22|23|24|25|0 44|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 30|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 40|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 24|23|23|21|19|19|18|15|15|16|14|14|22|17|16|17|18|20|20|21|22|25|24|25|0 27|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 22|21|20|20|18|17|16|15|14|13|13|19|14|15|16|17|18|19|23|21|22|23|0 19|14|14|13|11|11|12|16|17|18|12|13|15|15|16|17|18|19|0 55|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 23|22|21|20|20|19|18|17|16|15|15|14|14|25|16|17|18|19|24|21|22|23|24|25|0 54|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 36|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 74|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 33|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 80|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 21|19|19|18|16|13|13|14|12|12|17|15|14|15|16|17|18|20|20|21|0 30|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 10|10|9|8|7|7|8|9|11|11|0 43|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 49|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 12|11|11|9|8|8|10|9|10|13|12|13|0 56|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 41|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 70|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 46|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 23|20|20|19|18|18|15|15|14|13|13|17|14|16|16|17|22|19|21|21|22|23|0 20|20|16|16|15|15|14|13|12|12|19|13|14|18|17|17|18|19|21|21|0 46|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 21|18|18|19|17|16|16|14|14|13|13|23|15|15|22|17|20|19|20|21|22|23|0 19|17|16|15|13|13|12|11|11|18|12|14|14|15|16|17|18|19|0 45|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 36|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 59|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 30|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 15|15|16|13|11|11|10|10|14|12|12|13|14|17|16|17|0 35|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 36|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 50|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 20|19|18|17|16|15|14|13|12|12|21|13|14|15|16|17|18|19|20|21|0 29|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 67|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 35|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 20|18|18|17|17|16|14|14|12|12|13|13|15|15|16|21|19|19|20|21|0 15|13|12|10|10|9|9|14|11|11|12|13|14|15|0 32|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 54|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 13|13|12|11|10|9|9|15|10|11|12|14|14|15|0 20|20|19|19|18|16|16|17|15|14|13|13|14|15|23|17|18|22|21|21|22|23|0 32|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 22|22|20|19|17|16|15|15|14|13|13|21|14|18|16|17|18|19|20|21|23|23|0 9|9|8|7|7|11|8|10|10|11|0 42|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 29|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 43|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 16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0 41|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 87|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 40|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 21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0 17|15|14|11|11|12|10|10|16|13|12|13|14|15|16|17|0 74|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 8|6|6|7|9|7|8|9|0 73|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 29|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 17|16|14|14|12|10|10|11|13|11|12|13|15|15|16|17|0 10|10|8|7|7|9|8|9|11|11|0 10|10|9|7|7|8|8|9|11|11|0 39|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 35|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 20|19|19|18|16|15|14|13|12|12|17|13|14|15|16|17|18|21|20|21|0 28|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 73|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 62|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 18|18|19|17|16|15|14|14|21|13|13|23|22|15|16|17|20|19|20|21|22|23|0 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 43|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 30|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 35|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 14|13|12|12|10|9|9|11|10|11|15|13|14|15|0 33|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 41|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 39|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 17|11|11|12|13|14|10|10|16|15|12|13|14|15|16|17|0 85|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 9|8|6|6|7|7|8|9|0 5|4|4|5|0 7|7|8|9|10|11|8|9|10|11|0 29|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 27|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 40|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 8|8|6|6|7|7|9|9|0 16|16|15|12|12|11|10|10|14|11|13|13|14|15|17|17|0 44|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 37|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 27|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 42|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 32|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 68|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 69|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 55|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 52|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 40|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 93|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 17|16|15|11|11|12|10|10|14|13|12|13|14|15|16|17|0 4|4|5|5|0 4|4|5|5|0 4|4|5|5|0 41|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 24|21|21|20|19|19|23|18|17|15|14|14|16|15|16|17|18|25|20|22|22|23|24|25|0 65|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 11|9|8|7|7|10|8|9|10|11|0 13|9|9|10|8|8|12|11|10|11|12|13|0 29|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 65|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 20|20|18|13|13|14|15|16|12|12|19|17|14|15|16|17|18|19|21|21|0 48|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 20|19|19|18|18|17|16|14|14|13|13|23|15|15|16|17|22|21|20|21|22|23|0 34|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 40|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 48|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 90|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 49|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 12|9|9|10|11|8|8|13|10|11|12|13|0 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 41|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 25|23|21|20|20|19|18|17|16|15|14|14|24|15|16|17|18|19|22|21|22|23|24|25|0 51|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 47|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 58|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 33|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 9|6|6|7|8|7|8|9|0 34|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 32|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 54|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 23|23|22|21|21|19|16|16|15|15|14|14|20|18|17|17|18|19|20|25|22|24|24|25|0 88|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 50|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 16|15|15|14|14|18|19|13|12|12|21|13|20|17|16|17|18|19|20|21|0 27|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 16|15|14|12|11|11|10|10|17|13|12|13|14|15|16|17|0 26|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 13|13|12|12|10|9|9|11|10|11|15|14|14|15|0 38|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 18|17|17|16|15|15|14|12|12|13|21|13|14|20|16|19|18|19|20|21|0 44|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 12|11|10|9|8|8|13|9|10|11|12|13|0 16|15|14|13|13|17|11|11|12|19|12|18|14|15|16|17|18|19|0 49|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 46|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 28|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 41|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 38|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 34|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 12|10|10|9|8|8|13|9|11|11|12|13|0 26|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 36|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 21|19|16|16|17|13|13|14|12|12|20|15|14|15|18|17|18|19|20|21|0 54|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 15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 25|22|21|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|23|22|23|24|25|0 25|23|21|21|20|19|17|17|18|16|15|14|14|15|16|24|18|19|20|22|22|23|24|25|0 32|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 32|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 21|19|17|16|16|14|13|13|12|12|20|15|14|15|18|17|18|19|20|21|0 19|17|13|13|14|15|12|11|11|18|12|16|14|15|16|17|18|19|0 10|9|8|7|7|11|8|9|10|11|0 46|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 34|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 25|23|19|18|18|20|21|16|15|15|14|14|24|17|16|17|22|19|20|21|22|23|24|25|0 78|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 10|10|8|7|7|9|8|9|11|11|0 28|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 38|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 25|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 45|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 8|8|9|7|7|11|10|9|10|11|0 8|6|6|7|9|7|8|9|0 69|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 42|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 20|19|17|16|16|18|15|14|12|12|13|13|14|15|21|17|18|19|20|21|0 46|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 40|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 70|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 8|8|9|7|7|11|10|9|10|11|0 14|13|12|10|10|9|9|15|11|11|12|13|14|15|0 74|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 20|20|21|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0 28|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 29|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 11|10|8|7|7|9|8|9|10|11|0 22|22|20|19|18|18|15|15|13|13|14|17|14|16|16|17|21|19|20|21|23|23|0 18|16|16|15|14|12|11|11|13|19|12|13|14|15|17|17|18|19|0 7|6|5|5|6|7|0 21|20|19|18|17|16|16|22|23|14|14|15|25|15|24|17|18|19|20|21|22|23|24|25|0 33|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 43|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 74|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 43|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 17|16|16|15|12|12|13|11|11|19|14|13|14|15|18|17|18|19|0 13|10|10|9|8|8|12|9|11|11|12|13|0 64|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 31|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 32|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 33|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 57|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 56|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 28|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 39|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 16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0 38|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 44|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 26|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 16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0 24|23|22|22|20|19|18|17|16|15|14|14|21|15|16|17|18|19|20|21|25|23|24|25|0 61|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 26|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 17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0 25|23|22|21|15|15|16|17|18|19|20|14|14|24|16|17|18|19|20|21|22|23|24|25|0 53|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 38|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 16|15|15|17|18|19|13|13|12|12|21|14|14|20|16|17|18|19|20|21|0 24|24|20|20|21|19|18|16|16|15|14|14|23|15|17|17|18|19|22|21|22|23|25|25|0 31|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 49|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 44|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 14|12|11|10|9|9|13|15|10|11|12|13|14|15|0 63|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 51|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 48|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 77|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 33|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 25|23|22|22|21|20|18|17|16|15|14|14|19|15|16|17|18|19|20|21|24|23|24|25|0 40|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 40|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 64|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 68|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 60|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 40|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 35|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 44|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 44|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 41|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 33|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 49|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 24|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 19|18|16|15|12|12|13|11|11|17|14|13|14|15|16|17|18|19|0 22|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 48|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 67|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 26|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 12|11|10|9|8|8|13|9|10|11|12|13|0 12|10|10|8|8|9|13|9|11|11|12|13|0 25|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 28|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 22|22|19|17|16|16|18|15|14|13|13|21|14|15|20|17|18|19|20|21|23|23|0 20|19|19|18|18|22|23|16|16|15|14|14|25|15|17|17|24|21|20|21|22|23|24|25|0 16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0 58|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 61|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 35|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 29|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 20|19|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|21|20|21|0 45|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 39|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 37|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 60|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 62|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 56|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 80|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 11|10|10|9|8|8|13|9|12|11|12|13|0 33|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 21|21|20|17|17|18|15|14|14|13|13|23|16|15|16|19|18|19|20|22|22|23|0 3|3|0 7|5|5|6|6|7|0 9|9|8|7|7|11|8|10|10|11|0 13|10|10|9|8|8|12|9|11|11|12|13|0 25|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 32|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 29|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 34|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 22|21|21|19|18|17|16|15|13|13|14|20|14|15|16|17|18|19|20|23|22|23|0 59|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 52|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 38|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 55|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 45|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 48|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 67|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 63|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 25|24|22|22|19|18|17|17|16|15|14|14|21|15|16|20|18|19|20|21|23|23|24|25|0 27|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 40|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 60|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 50|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 25|23|21|21|20|19|17|17|16|15|14|14|24|15|16|18|18|19|20|22|22|23|24|25|0 22|22|20|15|14|14|16|17|13|13|19|21|18|15|16|17|18|19|20|21|23|23|0 31|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 31|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 53|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 54|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 19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 62|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 41|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 34|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 29|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 49|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 10|7|7|8|9|11|8|9|10|11|0 20|20|17|16|16|15|14|13|12|12|19|13|14|15|18|17|18|19|21|21|0 15|12|12|11|9|9|10|14|10|11|13|13|14|15|0 26|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 45|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 58|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 39|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 19|17|14|14|15|12|12|11|11|18|13|13|16|15|16|17|18|19|0 14|11|11|10|9|9|13|15|10|12|12|13|14|15|0 11|10|9|7|7|8|8|9|10|11|0 16|16|17|15|15|19|13|13|12|12|21|14|14|20|18|17|18|19|20|21|0 33|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 17|17|18|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0 11|10|8|7|7|9|8|9|10|11|0 13|11|10|9|8|8|12|9|10|11|12|13|0 46|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 35|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 53|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 28|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 34|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 25|23|21|20|19|19|18|16|16|14|14|15|24|15|17|17|18|22|20|21|22|23|24|25|0 27|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 25|24|22|21|20|19|17|17|16|15|14|14|23|15|16|18|18|19|20|21|22|23|24|25|0 64|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 54|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 70|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 43|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 63|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 67|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 56|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 27|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 15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0 72|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 32|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 26|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 23|22|21|20|20|19|18|16|16|15|14|14|25|15|17|17|18|19|24|21|22|23|24|25|0 13|13|14|10|10|9|9|12|11|11|12|15|14|15|0 19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0 24|23|21|21|22|19|18|16|16|15|14|14|20|15|17|17|18|19|20|25|22|23|24|25|0 35|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 26|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 50|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 33|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 7|6|5|5|6|7|0 9|8|6|6|7|7|8|9|0 70|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 24|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 48|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 15|11|10|9|9|12|13|14|10|11|12|13|14|15|0 68|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 15|14|12|11|11|9|9|10|10|13|12|13|14|15|0 5|4|4|5|0 32|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 22|21|21|20|17|17|16|16|14|13|13|15|14|15|19|18|18|19|20|23|22|23|0 34|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 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 74|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 54|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 24|23|23|20|19|19|18|16|16|15|14|14|22|15|17|17|18|21|20|21|22|25|24|25|0 27|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 55|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 29|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 17|17|16|14|13|13|12|11|11|19|12|15|14|15|16|18|18|19|0 59|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 35|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 38|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 12|11|10|8|8|9|13|9|10|11|12|13|0 77|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 35|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 51|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 31|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 36|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 15|13|13|12|10|10|9|9|11|11|12|14|14|15|0 21|21|20|19|18|18|16|14|14|13|13|17|15|15|16|17|23|19|20|22|22|23|0 35|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 28|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 42|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 54|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 20|20|17|17|16|14|14|13|12|12|19|13|15|15|16|18|18|19|21|21|0 18|17|17|15|15|13|12|11|11|14|12|13|14|16|16|19|18|19|0 29|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 46|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 37|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 63|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 27|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 42|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 23|21|19|19|18|17|16|15|14|13|13|22|14|15|16|17|18|20|20|21|22|23|0 35|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 56|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 24|23|22|21|21|20|18|18|16|15|14|14|17|15|16|17|19|19|20|25|22|23|24|25|0 48|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 19|18|16|15|15|12|12|11|11|14|13|13|14|17|16|17|18|19|0 51|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 20|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 42|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 28|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 44|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 54|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 25|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 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 48|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 12|12|10|8|8|9|11|9|10|11|13|13|0 15|15|14|14|12|12|11|10|10|11|13|13|17|16|16|17|0 97|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 42|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 61|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 31|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 53|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 32|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 19|16|16|15|14|13|12|11|11|18|12|13|14|15|17|17|18|19|0 28|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 28|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 18|16|16|17|14|13|12|11|11|15|12|13|14|15|19|17|18|19|0 13|11|10|9|8|8|12|9|10|11|12|13|0 20|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0 43|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 43|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 26|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 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 37|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 18|17|17|19|15|14|13|13|12|12|21|16|14|15|16|20|18|19|20|21|0 6|6|5|5|7|7|0 22|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|21|22|23|0 34|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 16|15|14|14|12|10|10|11|13|11|12|13|17|15|16|17|0 16|14|13|12|11|11|10|10|17|15|12|13|14|15|16|17|0 47|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 43|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 24|23|22|21|21|20|19|16|16|15|14|14|18|15|17|17|18|19|20|25|22|23|24|25|0 20|19|18|18|17|16|13|13|12|12|15|14|14|15|16|17|21|19|20|21|0 72|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 49|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 9|9|10|8|7|7|8|11|10|11|0 8|8|6|6|7|7|9|9|0 38|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 39|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 23|22|20|18|18|16|16|15|13|13|14|21|14|15|17|17|19|19|20|21|22|23|0 36|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 35|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 42|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 14|13|10|10|11|9|9|15|12|11|12|13|14|15|0 23|20|20|17|17|16|16|15|14|13|13|22|14|15|19|18|18|19|21|21|22|23|0 30|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 59|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 34|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 58|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 11|9|9|10|8|8|13|12|10|11|12|13|0 65|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 33|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 45|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 73|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 13|12|11|10|9|8|8|9|10|11|12|13|0 32|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 38|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 19|19|18|17|16|16|14|13|12|12|15|13|14|15|21|17|18|20|20|21|0 44|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 51|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 23|23|22|21|18|17|16|16|19|20|15|14|14|15|25|17|18|19|20|21|22|24|24|25|0 22|21|19|19|18|18|16|15|14|13|13|17|14|15|16|17|23|20|20|21|22|23|0 52|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 17|16|15|13|11|10|10|12|14|11|12|13|14|15|16|17|0 21|21|22|19|18|17|14|14|15|13|13|20|16|15|16|17|18|19|20|23|22|23|0 40|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 18|18|17|16|14|14|15|20|12|12|13|13|21|15|16|17|19|19|20|21|0 30|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 80|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 24|23|22|21|21|20|19|17|15|14|14|16|18|15|16|17|18|19|20|25|22|23|24|25|0 34|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 44|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 74|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 49|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 33|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 76|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 41|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 56|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 63|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 15|12|11|11|10|9|9|14|10|13|12|13|14|15|0 39|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 21|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|22|22|23|0 27|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 7|5|5|6|6|7|0 56|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 30|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 32|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 39|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 12|11|11|13|10|9|9|15|10|14|12|13|14|15|0 42|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 14|13|12|11|11|9|9|10|10|15|12|13|14|15|0 62|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 35|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 78|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 27|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 37|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 41|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 4|4|5|5|0 20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0 30|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 37|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 53|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 25|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 59|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 25|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 64|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 36|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 83|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 40|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 49|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 20|20|16|16|17|14|13|13|12|12|19|15|14|15|18|17|18|19|21|21|0 10|9|9|7|7|8|8|11|10|11|0 64|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 33|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 44|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 14|11|11|10|10|13|9|9|15|12|12|13|14|15|0 26|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 32|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 28|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 32|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 50|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 26|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 36|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 43|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 44|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 52|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 48|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 27|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 52|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 14|10|10|11|9|9|13|15|12|11|12|13|14|15|0 33|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 17|17|16|16|14|13|12|11|11|15|12|13|14|15|19|18|18|19|0 31|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 40|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 41|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 25|22|20|19|19|18|17|16|16|15|14|14|24|15|23|17|18|21|20|21|22|23|24|25|0 49|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 41|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 32|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 45|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 44|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 13|11|10|9|8|8|12|9|10|11|12|13|0 21|20|17|17|15|14|14|13|12|12|19|13|16|15|16|18|18|19|20|21|0 34|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 35|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 27|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 23|22|21|20|20|19|17|17|15|15|16|14|14|25|16|18|18|19|24|21|22|23|24|25|0 63|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 52|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 48|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 29|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 61|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 47|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 30|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 16|16|17|18|13|13|12|11|11|15|12|14|14|15|19|17|18|19|0 50|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 28|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 48|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 35|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 75|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 29|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 13|11|10|9|8|8|12|9|10|11|12|13|0 26|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 23|20|20|18|17|16|16|15|14|13|13|22|14|15|19|17|18|19|21|21|22|23|0 56|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 40|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 70|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 38|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 21|18|18|16|15|14|13|13|12|12|20|17|14|15|16|17|19|19|20|21|0 26|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 30|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 60|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 11|11|10|8|8|9|13|9|10|12|12|13|0 73|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 32|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 32|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 18|18|15|14|14|13|12|11|11|17|12|13|16|15|16|17|19|19|0 13|12|12|14|9|9|10|11|10|11|15|13|14|15|0 52|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 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 42|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 43|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 37|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 18|17|17|16|14|14|12|11|11|13|12|13|15|15|16|19|18|19|0 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 51|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 8|7|7|6|6|9|8|9|0 54|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 67|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 36|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 42|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 18|18|17|15|14|13|11|11|12|16|12|13|14|15|16|17|19|19|0 19|17|16|14|13|13|12|11|11|18|12|15|14|15|16|17|18|19|0 60|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 37|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 51|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 58|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 48|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 63|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 48|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 37|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 39|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 61|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 32|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 33|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 9|8|7|6|6|7|8|9|0 8|8|9|10|7|7|11|9|10|11|0 53|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 50|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 7|5|5|6|6|7|0 57|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 42|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 31|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 40|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 65|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 44|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 36|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 29|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 11|8|8|7|7|10|9|9|10|11|0 57|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 15|13|12|10|10|9|9|14|11|11|12|13|14|15|0 47|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 15|14|12|12|10|9|9|11|10|11|13|13|14|15|0 46|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 37|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 33|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 36|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 34|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 20|18|18|19|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0 19|19|16|16|17|15|15|13|12|12|14|13|14|21|18|17|18|20|20|21|0 9|8|6|6|7|7|8|9|0 37|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 36|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 47|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 27|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 41|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 51|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 40|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 41|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 29|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 40|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 34|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 25|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 46|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 24|23|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|25|24|25|0 32|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 40|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 17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0 55|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 51|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 63|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 11|9|8|7|7|10|8|9|10|11|0 33|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 35|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 27|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 48|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 28|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 39|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 13|11|10|9|8|8|12|9|10|11|12|13|0 33|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 35|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 31|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 24|23|22|22|21|19|18|17|16|15|14|14|20|15|16|17|18|19|20|21|25|23|24|25|0 47|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 49|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 44|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 14|12|12|13|9|9|10|11|10|11|15|13|14|15|0 33|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 19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0 21|20|18|16|16|14|13|13|12|12|19|15|14|15|17|17|18|19|20|21|0 32|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 61|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 43|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 9|8|7|6|6|7|8|9|0 37|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 28|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 54|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 35|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 30|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 42|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 49|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 55|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 53|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 62|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 35|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 30|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 44|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 14|14|13|13|12|11|10|10|17|11|12|16|15|15|16|17|0 22|20|20|19|19|17|17|15|14|13|13|16|14|15|16|18|18|23|21|21|22|23|0 73|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 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 9|9|8|7|7|11|8|10|10|11|0 42|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 39|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 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 60|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 51|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 21|18|17|17|14|14|15|13|12|12|20|13|16|15|16|19|18|19|20|21|0 55|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 61|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 53|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 44|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 12|12|10|9|8|8|11|9|10|11|13|13|0 3|3|0 21|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|20|19|20|21|0 57|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 47|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 43|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 31|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 20|19|18|18|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0 10|9|9|8|7|7|8|11|10|11|0 36|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 49|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 12|12|10|9|8|8|11|9|10|11|13|13|0 43|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 41|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 31|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 48|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 16|16|17|15|14|14|13|11|11|12|12|13|19|15|18|17|18|19|0 27|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 54|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 23|22|22|24|20|19|17|16|16|15|14|14|21|15|18|17|18|19|20|21|25|23|24|25|0 53|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 37|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 57|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 50|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 22|20|20|19|18|16|16|15|14|13|13|23|14|15|17|17|18|19|21|21|22|23|0 51|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 29|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 33|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 14|14|13|11|9|9|10|12|10|11|12|13|15|15|0 67|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 26|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 28|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 30|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 32|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 38|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 46|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 27|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 46|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 11|11|12|13|14|9|9|10|10|15|12|13|14|15|0 32|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 12|12|10|9|8|8|11|9|10|11|13|13|0 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 13|11|10|9|8|8|12|9|10|11|12|13|0 26|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 47|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 15|14|14|13|12|12|17|11|11|19|18|13|16|15|16|17|18|19|0 46|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 35|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 36|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 55|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 44|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 44|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 36|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 7|5|5|6|6|7|0 45|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 23|22|22|20|19|17|17|18|16|15|14|14|25|15|16|21|18|19|20|21|24|23|24|25|0 33|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 47|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 54|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 66|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 34|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 17|16|14|14|12|11|10|10|13|11|12|13|15|15|16|17|0 23|20|20|18|17|17|15|15|14|13|13|22|14|16|16|19|18|19|21|21|22|23|0 23|22|22|24|19|19|15|15|16|17|14|14|21|18|16|17|18|20|20|21|25|23|24|25|0 33|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 13|11|10|8|8|9|12|9|10|11|12|13|0 59|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 45|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 42|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 54|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 29|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 43|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 42|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 35|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 28|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 74|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 54|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 33|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 36|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 25|21|20|20|19|18|17|16|15|14|14|23|24|15|16|17|18|19|22|21|22|23|24|25|0 38|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 40|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 16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0 78|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 12|11|11|9|8|8|10|9|10|13|12|13|0 25|23|22|21|20|18|18|15|15|16|14|14|24|17|16|17|19|19|20|21|22|23|24|25|0 28|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 26|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 28|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 71|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 97|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 25|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 63|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 27|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 83|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 21|20|19|17|17|18|16|16|14|13|13|15|14|15|23|22|18|19|20|21|22|23|0 65|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 33|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 43|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 44|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 44|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 16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0 42|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 17|14|13|12|12|11|10|10|16|11|15|13|14|15|16|17|0 30|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 7|6|5|5|6|7|0 83|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 51|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 91|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 11|10|9|7|7|8|8|9|10|11|0 12|12|10|9|8|8|11|9|10|11|13|13|0 50|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 41|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 60|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 40|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 24|23|23|20|20|19|18|15|15|16|14|14|22|17|16|17|18|19|21|21|22|25|24|25|0 40|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 48|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 32|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 10|8|7|7|9|11|8|9|10|11|0 38|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 21|16|16|15|14|14|18|13|12|12|20|13|19|15|17|17|18|19|20|21|0 28|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 40|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 41|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 29|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 39|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 39|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 27|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 66|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 30|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 16|14|14|15|12|10|10|11|13|11|12|13|17|15|16|17|0 33|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 32|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 60|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 28|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 26|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 49|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 49|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 32|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 22|21|19|17|17|18|16|16|13|13|14|15|14|15|23|20|18|19|20|21|22|23|0 35|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 16|16|15|14|13|13|12|11|11|19|12|18|14|15|17|17|18|19|0 74|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 73|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 60|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 41|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 24|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 87|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 53|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 15|14|14|13|11|11|12|10|10|17|12|13|16|15|16|17|0 39|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 54|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 33|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 29|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 51|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 70|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 16|14|13|12|12|11|10|10|17|11|15|13|14|15|16|17|0 27|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 9|8|8|7|7|11|10|9|10|11|0 26|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 32|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 51|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 39|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 22|22|20|19|17|17|16|14|14|13|13|21|15|15|16|18|18|19|20|21|23|23|0 49|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 60|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 23|21|19|19|18|17|15|15|13|13|14|22|14|16|16|17|18|20|20|21|22|23|0 48|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 29|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 21|17|17|15|15|13|13|12|12|19|20|14|14|16|16|18|18|19|20|21|0 6|6|7|8|9|7|8|9|0 56|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 22|20|20|19|18|17|16|16|13|13|14|15|14|15|23|17|18|19|21|21|22|23|0 32|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 11|10|9|8|7|7|8|9|10|11|0 63|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 20|19|17|17|18|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0 32|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 50|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 24|23|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|25|24|25|0 19|18|17|14|14|13|12|11|11|16|12|13|15|15|16|17|18|19|0 11|9|7|7|8|10|8|9|10|11|0 20|20|21|19|18|18|16|14|14|13|13|17|15|15|16|17|23|19|22|21|22|23|0 38|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 38|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 55|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 17|16|16|14|14|15|11|11|12|13|12|13|19|15|18|17|18|19|0 68|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 37|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 19|19|17|16|16|15|14|13|12|12|21|13|14|15|18|17|18|20|20|21|0 16|16|17|18|15|13|12|11|11|14|12|13|14|15|19|17|18|19|0 46|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 60|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 40|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 34|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 9|6|6|7|8|7|8|9|0 41|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 33|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 58|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 42|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 26|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 50|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 35|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 25|22|21|20|19|18|18|16|16|15|14|14|24|15|17|17|23|19|20|21|22|23|24|25|0 33|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 35|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 54|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 61|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 21|21|20|19|18|18|17|15|15|13|13|14|14|16|16|17|23|19|20|22|22|23|0 49|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 31|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 8|8|9|7|7|11|10|9|10|11|0 24|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 43|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 44|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 34|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 51|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 8|8|6|6|7|7|9|9|0 66|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 17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0 8|6|6|7|9|7|8|9|0 25|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 24|23|23|21|19|18|17|16|16|15|14|14|22|15|20|17|18|19|20|21|22|25|24|25|0 28|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 46|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 14|13|12|11|10|10|9|9|15|11|12|13|14|15|0 65|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 19|19|18|17|17|21|16|14|14|13|13|23|15|15|16|22|18|20|20|21|22|23|0 15|13|12|11|9|9|10|14|10|11|12|13|14|15|0 57|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 38|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 10|10|11|9|9|8|8|13|12|11|12|13|0 11|10|10|9|8|8|13|9|12|11|12|13|0 19|18|17|16|15|14|11|11|12|13|12|13|14|15|16|17|18|19|0 29|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 40|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 27|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 59|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 13|12|12|10|10|9|9|15|11|11|14|13|14|15|0 40|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 44|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 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 39|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 48|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 44|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 41|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 71|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 9|7|6|6|8|7|8|9|0 51|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 74|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 29|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 33|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 60|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 24|23|23|20|19|19|18|17|16|15|14|14|22|15|16|17|18|21|20|21|22|25|24|25|0 41|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 33|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 30|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 36|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 41|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 25|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 42|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 43|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 45|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 15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0 20|20|21|19|19|18|16|14|14|13|13|17|15|15|16|17|18|23|22|21|22|23|0 55|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 33|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 11|8|8|7|7|10|9|9|10|11|0 33|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 51|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 15|14|12|11|10|10|9|9|13|11|12|13|14|15|0 33|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 29|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 74|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 20|19|18|17|16|15|14|13|13|12|12|21|14|15|16|17|18|19|20|21|0 62|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 29|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 11|10|10|9|8|8|13|9|12|11|12|13|0 42|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 38|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 23|21|21|19|18|16|16|15|14|13|13|20|14|15|17|17|18|19|20|22|22|23|0 71|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 85|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 17|16|16|15|14|12|12|11|11|19|13|13|14|15|18|17|18|19|0 48|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 53|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 41|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 57|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 58|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 49|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 48|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 37|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 56|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 48|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 18|17|14|13|13|15|12|11|11|19|12|16|14|15|16|17|18|19|0 67|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 54|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 36|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 22|21|21|20|18|16|15|15|14|13|13|19|14|17|16|17|18|19|20|23|22|23|0 18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0 6|6|5|5|7|7|0 48|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 36|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 66|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 16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0 30|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 44|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 52|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 34|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 44|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 49|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 18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0 23|22|21|20|19|19|18|17|17|15|14|14|16|15|16|25|18|24|20|21|22|23|24|25|0 14|13|13|11|9|9|10|12|10|11|12|15|14|15|0 38|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 15|13|12|11|10|10|9|9|14|11|12|13|14|15|0 48|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 31|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 48|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 28|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 26|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 40|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 8|7|7|6|6|9|8|9|0 44|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 74|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 13|11|10|9|8|8|12|9|10|11|12|13|0 39|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 51|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 45|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 21|20|20|19|18|18|17|14|13|13|15|16|14|15|16|17|23|19|22|21|22|23|0 31|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 24|22|22|23|21|19|17|17|18|16|14|14|15|15|16|20|18|19|20|21|25|23|24|25|0 44|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 36|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 21|18|17|16|15|15|14|13|12|12|20|13|14|19|16|17|18|19|20|21|0 19|16|14|14|15|13|12|11|11|18|12|13|17|15|16|17|18|19|0 32|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 38|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 10|9|7|7|8|11|8|9|10|11|0 49|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 27|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 29|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 14|13|12|12|15|11|10|10|17|11|16|13|14|15|16|17|0 41|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 42|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 71|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 52|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 44|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 59|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 25|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 34|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 32|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 38|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 62|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 39|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 55|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 79|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 22|20|19|19|18|18|16|15|14|13|13|17|14|15|16|17|23|21|20|21|22|23|0 38|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 33|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 25|24|21|20|20|19|19|17|16|15|14|14|18|15|16|17|18|23|22|21|22|23|24|25|0 23|22|21|19|15|14|14|16|17|13|13|20|18|15|16|17|18|19|20|21|22|23|0 47|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 31|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 16|15|14|14|13|11|11|10|10|12|12|13|17|15|16|17|0 59|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 50|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 49|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 9|9|8|8|7|7|11|10|10|11|0 46|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 70|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 22|22|16|16|17|15|15|19|14|13|13|21|14|20|18|17|18|19|20|21|23|23|0 27|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 18|18|19|17|16|14|14|13|12|12|21|13|15|15|16|17|20|19|20|21|0 29|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 27|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 45|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 41|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 16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0 27|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 26|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 19|14|14|15|16|13|12|11|11|18|12|13|17|15|16|17|18|19|0 42|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 41|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 41|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 55|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 30|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 30|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 27|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 76|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 15|13|11|11|9|9|10|14|10|12|12|13|14|15|0 33|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 32|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 31|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 59|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 54|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 33|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 24|23|22|22|21|19|19|17|17|16|14|14|15|15|16|18|18|20|20|21|25|23|24|25|0 16|15|15|17|18|12|12|11|11|14|13|13|14|19|16|17|18|19|0 28|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 45|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 39|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 48|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 32|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 40|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 20|20|21|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0 11|8|8|9|7|7|10|9|10|11|0 11|10|8|7|7|9|8|9|10|11|0 43|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 36|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 20|18|18|17|17|21|16|15|14|13|13|23|14|15|16|22|19|19|20|21|22|23|0 44|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 60|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 14|14|13|11|10|9|9|12|10|11|12|13|15|15|0 10|10|11|9|8|8|13|9|12|11|12|13|0 38|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 32|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 30|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 29|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 17|15|14|13|11|10|10|12|16|11|12|13|14|15|16|17|0 43|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 49|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 37|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 39|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 48|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 59|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 56|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 42|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 41|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 27|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 13|12|10|9|8|8|11|9|10|11|12|13|0 74|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 29|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 24|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 45|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 21|18|18|17|15|15|13|13|12|12|20|14|14|16|16|17|19|19|20|21|0 51|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 9|8|7|6|6|7|8|9|0 30|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 43|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 38|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 35|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 28|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 50|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 38|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 30|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 47|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 20|19|19|18|17|14|14|13|12|12|16|13|15|15|16|17|18|21|20|21|0 16|16|15|14|14|13|12|11|11|19|12|13|18|15|17|17|18|19|0 22|22|18|18|17|16|16|15|14|13|13|21|14|15|20|17|19|19|20|21|23|23|0 40|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 26|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 39|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 42|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 51|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 58|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 32|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 43|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 67|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 13|13|12|11|10|9|9|15|10|11|12|14|14|15|0 18|16|16|14|13|13|12|11|11|19|12|15|14|15|17|17|18|19|0 60|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 31|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 23|22|22|21|20|20|18|17|15|14|14|16|19|15|16|17|18|19|25|21|24|23|24|25|0 34|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 27|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 22|21|20|19|18|17|17|14|14|13|13|16|15|15|16|23|18|19|20|21|22|23|0 59|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 29|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 34|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 52|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 52|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 38|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 64|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 20|19|18|18|17|15|14|13|12|12|16|13|14|15|16|17|21|19|20|21|0 46|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 29|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 24|24|20|19|19|21|18|15|15|16|14|14|23|17|16|17|18|22|20|21|22|23|25|25|0 60|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 36|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 37|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 46|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 31|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 19|18|16|15|13|13|11|11|12|17|12|14|14|15|16|17|18|19|0 47|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 18|18|16|15|14|13|11|11|12|17|12|13|14|15|16|17|19|19|0 31|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 63|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 21|19|18|17|16|15|14|13|12|12|20|13|14|15|16|17|18|19|20|21|0 46|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 43|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 37|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 30|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 72|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 21|20|20|19|15|14|14|16|13|13|18|23|17|15|16|17|18|19|22|21|22|23|0 33|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 44|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 69|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 24|23|23|19|17|17|16|16|20|15|14|14|22|15|21|18|18|19|20|21|22|25|24|25|0 57|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 54|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 30|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 12|11|11|10|9|8|8|9|10|13|12|13|0 6|5|5|7|6|7|0 38|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 10|10|8|7|7|9|8|9|11|11|0 10|10|8|7|7|9|8|9|11|11|0 10|10|8|7|7|9|8|9|11|11|0 49|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 66|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 37|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 18|17|17|16|14|13|11|11|12|15|12|13|14|15|16|19|18|19|0 8|8|6|6|7|7|9|9|0 51|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 49|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 58|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 74|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 56|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 9|9|8|8|7|7|11|10|10|11|0 26|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 38|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 41|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 21|19|19|18|18|17|16|15|14|14|13|13|23|15|16|17|22|20|20|21|22|23|0 36|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 48|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 45|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 9|9|10|11|8|8|13|12|10|11|12|13|0 59|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 16|15|14|13|13|11|10|10|12|11|12|17|14|15|16|17|0 82|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 25|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 53|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 35|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 26|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 18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0 35|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 11|9|8|7|7|10|8|9|10|11|0 77|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 17|14|14|12|12|11|10|10|16|11|13|13|15|15|16|17|0 58|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 16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0 29|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 44|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 40|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 45|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 51|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 25|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 24|24|21|20|19|18|18|17|15|15|14|14|23|16|16|17|22|19|20|21|22|23|25|25|0 46|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 39|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 14|14|15|13|12|10|10|11|17|11|12|13|16|15|16|17|0 40|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 51|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 43|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 34|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 70|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 38|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 20|20|19|17|17|16|15|15|14|13|13|23|14|22|16|18|18|19|21|21|22|23|0 25|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 24|24|22|21|20|19|18|17|16|15|14|14|23|15|16|17|18|19|20|21|22|23|25|25|0 46|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 26|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 46|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 35|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 16|15|15|12|11|11|13|10|10|14|12|13|14|17|16|17|0 33|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 54|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 33|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 15|14|13|12|10|9|9|11|10|11|12|13|14|15|0 32|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 31|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 69|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 64|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 41|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 70|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 10|9|8|8|7|7|11|9|10|11|0 66|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 37|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 22|21|19|18|18|17|17|14|14|13|13|16|15|15|16|23|20|19|20|21|22|23|0 11|11|8|8|9|10|13|9|10|12|12|13|0 55|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 61|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 31|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 46|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 52|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 56|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 80|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 42|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 41|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 47|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 15|14|14|13|13|12|10|10|11|11|12|17|16|15|16|17|0 12|11|10|9|8|8|13|9|10|11|12|13|0 47|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 62|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 8|7|6|6|9|7|8|9|0 48|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 50|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 31|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 63|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 11|9|8|7|7|10|8|9|10|11|0 31|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 15|14|12|12|10|9|9|11|10|11|13|13|14|15|0 17|14|13|12|11|10|10|15|16|11|12|13|14|15|16|17|0 33|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 15|14|13|11|10|9|9|12|10|11|12|13|14|15|0 20|20|17|15|13|13|14|12|12|18|19|16|14|15|16|17|18|19|21|21|0 38|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 35|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 40|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 37|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 54|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 25|24|20|20|21|18|18|17|15|15|14|14|23|16|16|17|19|19|22|21|22|23|24|25|0 22|21|20|19|18|17|16|16|23|15|14|14|25|15|24|17|18|19|20|21|22|23|24|25|0 41|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 21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0 39|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 24|24|23|22|20|19|19|16|15|14|14|17|18|15|16|17|18|21|20|21|22|23|25|25|0 46|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 17|15|15|14|13|12|10|10|11|11|12|13|14|16|16|17|0 47|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 60|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 28|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 43|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 28|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 50|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 36|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 27|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 36|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 16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0 50|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 33|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 53|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 15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0 55|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 11|8|8|7|7|10|9|9|10|11|0 6|6|7|8|9|7|8|9|0 13|12|10|9|8|8|11|9|10|11|12|13|0 56|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 12|9|9|10|8|8|13|11|10|11|12|13|0 38|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 49|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 78|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 20|20|16|16|17|15|13|13|12|12|19|14|14|15|18|17|18|19|21|21|0 55|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 79|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 32|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 54|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 58|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 39|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 69|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 22|21|19|18|18|17|16|15|14|13|13|23|14|15|16|17|20|19|20|21|22|23|0 43|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 26|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 63|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 57|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 47|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 45|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 24|22|21|21|20|18|18|17|16|15|14|14|25|15|16|17|19|19|20|23|22|23|24|25|0 51|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 43|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 44|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 44|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 23|22|22|21|20|20|16|16|17|15|14|14|19|15|18|17|18|19|25|21|24|23|24|25|0 46|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 47|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 88|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 21|20|19|19|18|15|15|16|14|13|13|23|14|17|16|17|18|22|20|21|22|23|0 61|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 52|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 21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0 59|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 62|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 13|12|12|14|10|9|9|11|10|11|15|13|14|15|0 40|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 59|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 60|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 48|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 52|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 27|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 28|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 17|16|16|18|19|15|14|13|12|12|21|13|14|15|20|17|18|19|20|21|0 26|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 43|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 51|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 53|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 36|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 33|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 37|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 39|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 56|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 56|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 60|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 33|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 42|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 17|16|15|14|14|13|12|11|11|19|12|13|18|15|16|17|18|19|0 54|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 30|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 49|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 31|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 56|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 40|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 46|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 25|22|20|19|18|18|21|17|16|15|14|14|24|15|16|17|23|19|20|21|22|23|24|25|0 39|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 21|18|15|13|13|14|16|12|12|19|20|17|14|15|16|17|18|19|20|21|0 23|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 50|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 90|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 30|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 19|17|16|15|14|13|13|18|12|12|21|20|14|15|16|17|18|19|20|21|0 36|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 58|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 23|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 22|21|21|19|18|17|16|15|14|13|13|20|14|15|16|17|18|19|20|23|22|23|0 51|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 39|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 28|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 8|6|6|7|9|7|8|9|0 47|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 10|7|7|8|9|11|8|9|10|11|0 20|18|18|16|16|14|13|13|12|12|21|15|14|15|17|17|19|19|20|21|0 10|10|8|7|7|9|8|9|11|11|0 19|17|16|14|14|13|11|11|12|18|12|13|15|15|16|17|18|19|0 10|9|7|7|8|11|8|9|10|11|0 16|15|15|17|18|14|13|11|11|12|12|13|14|19|16|17|18|19|0 23|22|22|20|20|18|17|17|16|14|14|15|25|15|16|19|18|19|21|21|24|23|24|25|0 56|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 44|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 9|9|7|7|8|11|8|10|10|11|0 21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0 32|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 25|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 9|7|6|6|8|7|8|9|0 42|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 42|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 27|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 86|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 34|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 50|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 45|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 60|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 72|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 46|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 28|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 67|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 27|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 50|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 43|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 18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0 38|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 26|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 16|16|15|13|13|11|10|10|12|11|12|14|14|15|17|17|0 21|21|22|20|19|18|18|24|16|14|14|15|17|15|16|17|25|19|20|23|22|23|24|25|0 25|24|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|23|24|25|0 23|20|19|19|18|17|15|15|14|13|13|22|14|16|16|17|18|21|20|21|22|23|0 30|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 51|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 60|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 39|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 43|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 25|24|22|17|17|18|16|15|15|20|14|14|23|21|16|19|18|19|20|21|22|23|24|25|0 17|16|16|15|15|13|12|11|11|14|12|13|14|19|18|17|18|19|0 23|17|16|15|14|14|18|19|13|13|21|22|20|15|16|17|18|19|20|21|22|23|0 29|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 67|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 59|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 10|8|7|7|9|11|8|9|10|11|0 17|17|15|15|14|13|12|11|11|19|12|13|14|16|16|18|18|19|0 50|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 51|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 63|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 25|15|15|16|17|18|19|20|21|22|14|14|24|23|16|17|18|19|20|21|22|23|24|25|0 60|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 14|10|10|11|9|9|13|15|12|11|12|13|14|15|0 25|24|22|21|21|19|17|16|16|15|14|14|20|15|18|17|18|19|20|23|22|23|24|25|0 21|21|20|19|19|18|16|15|14|13|13|17|14|15|16|17|18|23|20|22|22|23|0 34|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 42|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 30|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 51|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 12|12|10|9|8|8|11|9|10|11|13|13|0 8|7|6|6|9|7|8|9|0 37|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 8|8|9|7|7|11|10|9|10|11|0 38|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 44|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 69|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 30|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 19|18|15|15|13|13|12|11|11|17|12|14|14|16|16|17|18|19|0 60|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 11|10|9|8|7|7|8|9|10|11|0 18|18|15|15|12|12|13|11|11|17|14|13|14|16|16|17|19|19|0 34|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 37|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 51|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 37|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 48|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 27|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 16|16|15|15|18|19|13|12|12|14|21|13|14|20|17|17|18|19|20|21|0 59|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 39|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 60|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 20|20|19|18|17|14|14|15|13|12|12|13|16|15|16|17|18|19|21|21|0 50|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 50|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 51|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 35|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 38|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 28|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 56|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 50|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 25|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 77|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 28|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 16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0 6|6|5|5|7|7|0 15|13|11|10|9|9|12|14|10|11|12|13|14|15|0 14|14|13|12|10|9|9|11|10|11|12|13|15|15|0 47|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 18|17|17|16|15|13|11|11|12|14|12|13|14|15|16|19|18|19|0 5|4|4|5|0 32|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 37|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 16|15|15|13|13|11|11|10|10|12|12|14|14|17|16|17|0 35|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 31|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 85|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 45|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 54|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 31|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 25|23|21|21|20|18|17|16|16|15|14|14|24|15|19|17|18|19|20|22|22|23|24|25|0 74|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 37|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 25|23|23|22|20|19|17|16|16|15|14|14|21|15|18|17|18|19|20|21|22|24|24|25|0 28|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 34|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 32|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 41|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 36|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 50|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 91|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 23|22|22|21|21|19|17|17|16|15|14|14|20|15|16|18|18|19|20|25|24|23|24|25|0 43|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 13|11|11|10|8|8|9|9|10|12|12|13|0 31|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 37|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 45|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 10|10|8|7|7|9|8|9|11|11|0 52|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 33|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 51|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 29|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 54|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 64|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 54|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 46|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 68|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 34|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 68|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 18|16|15|14|13|12|12|17|11|11|19|13|14|15|16|17|18|19|0 54|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 12|11|11|8|8|9|10|9|10|13|12|13|0 10|9|9|7|7|8|8|11|10|11|0 31|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 22|21|20|19|19|18|16|16|14|13|13|15|14|15|17|17|18|23|20|21|22|23|0 55|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 51|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 42|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 58|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 38|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 13|12|12|11|10|10|9|9|15|11|14|13|14|15|0 19|15|15|16|17|18|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0 18|17|17|15|14|13|11|11|12|16|12|13|14|15|16|19|18|19|0 23|22|22|21|20|19|17|17|16|16|14|14|15|15|25|18|18|19|20|21|24|23|24|25|0 16|16|14|11|11|12|10|10|15|13|12|13|14|15|17|17|0 60|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 40|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 43|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 11|8|8|7|7|10|9|9|10|11|0 34|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 51|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 49|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 35|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 13|12|12|14|9|9|10|11|10|11|15|13|14|15|0 16|15|10|10|11|12|13|14|17|11|12|13|14|15|16|17|0 21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0 22|21|21|18|18|16|16|15|14|13|13|20|14|15|17|17|19|19|20|23|22|23|0 56|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 35|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 47|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 45|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 35|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 21|19|18|17|16|13|13|12|12|15|20|14|14|15|16|17|18|19|20|21|0 17|16|16|15|14|14|12|11|11|13|12|13|19|15|18|17|18|19|0 41|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 8|8|9|7|7|11|10|9|10|11|0 48|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 25|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 20|18|18|17|17|21|16|16|13|13|14|15|14|15|23|22|19|19|20|21|22|23|0 18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0 9|8|6|6|7|7|8|9|0 23|19|19|20|14|14|15|16|17|13|13|22|18|15|16|17|18|21|20|21|22|23|0 24|23|22|22|19|19|17|17|16|15|14|14|21|15|16|18|18|20|20|21|25|23|24|25|0 8|7|6|6|9|7|8|9|0 23|21|19|18|17|16|16|15|14|13|13|22|14|15|20|17|18|19|20|21|22|23|0 25|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 51|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 42|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 13|13|12|11|10|9|9|15|10|11|12|14|14|15|0 33|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 41|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 47|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 5|4|4|5|0 47|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 4|4|5|5|0 13|11|9|9|8|8|12|10|10|11|12|13|0 21|18|17|17|16|15|13|13|12|12|20|14|14|15|16|19|18|19|20|21|0 49|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 15|14|13|11|9|9|10|12|10|11|12|13|14|15|0 31|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 36|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 53|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 43|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 23|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 60|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 29|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 46|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 73|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 30|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 17|17|16|14|13|13|12|11|11|19|12|15|14|15|16|18|18|19|0 36|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 18|17|17|19|16|15|15|13|12|12|14|13|14|21|16|20|18|19|20|21|0 14|12|10|10|11|13|9|9|15|11|12|13|14|15|0 30|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 63|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 63|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 60|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 32|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 23|20|20|18|17|16|16|15|14|13|13|22|14|15|19|17|18|19|21|21|22|23|0 13|13|12|11|10|9|9|15|10|11|12|14|14|15|0 35|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 12|11|10|10|8|8|9|9|13|11|12|13|0 42|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 36|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 37|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 59|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 56|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 34|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 49|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 56|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 41|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 20|19|19|16|15|15|14|13|12|12|18|13|14|17|16|17|18|21|20|21|0 57|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 50|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 54|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 29|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 35|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 52|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 38|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 36|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 41|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 55|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 47|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 47|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 25|24|23|21|19|19|16|15|15|14|14|18|22|17|16|17|18|20|20|21|22|23|24|25|0 30|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 58|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 42|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 56|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 47|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 9|9|8|8|7|7|11|10|10|11|0 13|12|11|9|8|8|10|9|10|11|12|13|0 5|5|6|7|6|7|0 41|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 21|20|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|19|20|21|0 56|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 66|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 33|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 35|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 38|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 31|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 46|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 34|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 33|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 33|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 20|19|19|18|16|14|14|13|12|12|17|13|15|15|16|17|18|21|20|21|0 32|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 59|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 57|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 34|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 37|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 35|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 23|23|22|20|19|19|18|17|17|15|14|14|16|15|16|25|18|21|20|21|22|24|24|25|0 62|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 29|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 61|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 67|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 58|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 45|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 42|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 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 26|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 54|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 60|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 29|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 23|21|19|19|18|17|15|15|14|13|13|22|14|16|16|17|18|20|20|21|22|23|0 33|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 55|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 56|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 21|19|18|16|15|14|14|13|12|12|20|13|17|15|16|17|18|19|20|21|0 42|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 29|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 25|22|21|20|19|19|18|17|16|14|14|15|24|15|16|17|18|23|20|21|22|23|24|25|0 40|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 37|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 30|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 23|23|22|21|20|20|19|17|15|15|14|14|18|16|16|17|18|19|25|21|22|24|24|25|0 38|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 59|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 46|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 17|17|16|16|14|12|12|11|11|15|13|13|14|15|19|18|18|19|0 35|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 21|21|22|20|18|18|17|16|15|14|14|24|25|15|16|17|19|19|20|23|22|23|24|25|0 36|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 37|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 23|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 29|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 26|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 48|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 74|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 12|12|10|9|8|8|11|9|10|11|13|13|0 55|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 21|20|18|17|17|14|14|13|12|12|16|13|15|15|16|19|18|19|20|21|0 44|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 17|16|14|14|15|13|11|11|12|19|12|13|18|15|16|17|18|19|0 42|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 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 50|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 25|24|22|21|20|20|19|17|16|16|15|14|14|15|18|17|18|19|23|21|22|23|24|25|0 53|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 29|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 57|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 19|18|14|14|12|12|11|11|16|17|13|13|15|15|16|17|18|19|0 43|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 59|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 17|14|13|12|11|10|10|15|16|11|12|13|14|15|16|17|0 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 14|14|13|10|10|9|9|12|11|11|12|13|15|15|0 73|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 28|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 33|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 24|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 49|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 29|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 46|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 47|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 46|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 19|17|15|14|13|13|12|11|11|18|12|16|14|15|16|17|18|19|0 50|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 35|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 43|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 52|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 23|21|21|20|18|17|17|16|15|14|13|13|14|15|16|19|18|19|20|22|22|23|0 23|21|20|18|18|17|14|14|15|13|13|22|16|15|16|17|19|19|20|21|22|23|0 44|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 49|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 30|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 80|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 23|19|19|18|17|16|15|14|14|13|13|22|21|15|16|17|18|20|20|21|22|23|0 34|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 23|21|20|19|18|15|15|16|14|13|13|22|14|17|16|17|18|19|20|21|22|23|0 10|8|8|9|7|7|11|9|10|11|0 10|10|8|7|7|9|8|9|11|11|0 10|9|9|7|7|8|8|11|10|11|0 68|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 21|19|17|16|16|15|13|13|12|12|20|14|14|15|18|17|18|19|20|21|0 36|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 59|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 37|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 18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0 19|14|13|13|15|16|12|11|11|18|12|17|14|15|16|17|18|19|0 27|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 66|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 20|19|18|18|17|16|13|13|12|12|15|14|14|15|16|17|21|19|20|21|0 17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0 28|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 21|19|18|17|16|16|15|13|12|12|14|13|14|15|20|17|18|19|20|21|0 60|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 9|8|6|6|7|7|8|9|0 44|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 57|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 61|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 50|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 20|18|18|19|21|17|17|14|14|13|13|16|15|15|16|23|22|19|20|21|22|23|0 24|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 31|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 74|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 12|12|13|10|10|9|9|15|11|11|14|13|14|15|0 65|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 48|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 11|10|10|9|8|8|13|9|12|11|12|13|0 26|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 27|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 48|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 38|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 53|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 11|9|8|7|7|10|8|9|10|11|0 43|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 22|21|18|18|17|16|15|15|20|13|13|14|14|23|16|17|19|19|20|21|22|23|0 35|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 7|6|6|8|9|7|8|9|0 38|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 34|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 29|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 76|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 31|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 19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0 31|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 86|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 35|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 36|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 49|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 54|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 56|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 21|17|17|16|16|15|14|13|12|12|20|13|14|15|19|18|18|19|20|21|0 51|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 44|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 24|24|21|21|20|19|18|17|16|15|14|14|23|15|16|17|18|19|20|22|22|23|25|25|0 9|6|6|7|8|7|8|9|0 18|14|13|13|15|12|11|11|17|19|12|16|14|15|16|17|18|19|0 21|20|19|18|17|17|22|23|15|15|14|14|25|16|16|24|18|19|20|21|22|23|24|25|0 51|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 44|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 27|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 33|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 54|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 45|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 42|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 43|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 68|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 29|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 36|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 18|17|16|15|12|12|13|11|11|19|14|13|14|15|16|17|18|19|0 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 68|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 54|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 23|22|18|18|19|17|14|13|13|15|16|21|14|15|16|17|20|19|20|21|22|23|0 46|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 39|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 23|17|17|16|16|19|20|15|14|13|13|22|14|15|21|18|18|19|20|21|22|23|0 21|20|18|17|16|15|14|12|12|13|19|13|14|15|16|17|18|19|20|21|0 35|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 48|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 31|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 32|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 25|23|23|20|20|19|18|17|16|16|14|14|15|15|22|17|18|19|21|21|22|24|24|25|0 45|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 48|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 65|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 41|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 8|8|6|6|7|7|9|9|0 25|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 46|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 46|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 41|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 32|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 27|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 9|7|6|6|8|7|8|9|0 16|15|15|14|12|12|10|10|11|11|13|13|14|17|16|17|0 30|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 46|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 11|10|8|7|7|9|8|9|10|11|0 61|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 26|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 23|21|19|18|18|17|15|15|14|13|13|22|14|16|16|17|20|19|20|21|22|23|0 49|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 43|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 58|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 46|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 46|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 24|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 24|23|23|21|21|20|19|18|17|15|15|14|14|16|16|17|18|19|20|22|22|25|24|25|0 33|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 81|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 46|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 19|16|16|14|13|13|12|11|11|18|12|15|14|15|17|17|18|19|0 40|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 17|15|14|13|13|12|10|10|11|11|12|16|14|15|16|17|0 50|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 32|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 5|4|4|5|0 61|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 57|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 18|16|16|15|14|13|12|11|11|19|12|13|14|15|17|17|18|19|0 15|13|12|9|9|10|11|14|10|11|12|13|14|15|0 43|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 28|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 50|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 26|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 27|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 34|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 51|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 37|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 28|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 37|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 38|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 13|13|12|12|15|10|10|11|17|11|16|14|14|15|16|17|0 56|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 22|20|19|18|17|17|16|15|14|13|13|23|14|15|16|21|18|19|20|21|22|23|0 52|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 64|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 28|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 49|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 45|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 68|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 63|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 30|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 59|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 30|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 9|8|8|7|7|11|10|9|10|11|0 15|14|11|11|12|13|10|10|17|16|12|13|14|15|16|17|0 25|24|22|21|20|18|17|16|16|15|14|14|23|15|19|17|18|19|20|21|22|23|24|25|0 37|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 14|13|10|9|9|11|12|15|10|11|12|13|14|15|0 16|13|12|12|14|11|11|10|10|17|15|13|14|15|16|17|0 27|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 63|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 50|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 53|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 29|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 63|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 23|21|20|19|18|17|15|14|14|13|13|22|16|15|16|17|18|19|20|21|22|23|0 36|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 33|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 41|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 46|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 23|22|21|18|18|16|16|15|14|13|13|20|14|15|17|17|19|19|20|21|22|23|0 39|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 23|21|20|18|18|16|16|15|14|13|13|22|14|15|17|17|19|19|20|21|22|23|0 32|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 45|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 67|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 35|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 48|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 70|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 26|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 34|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 43|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 8|7|6|6|9|7|8|9|0 29|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 19|17|13|13|14|15|11|11|12|18|12|16|14|15|16|17|18|19|0 41|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 45|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 35|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 17|16|14|12|11|11|10|10|15|13|12|13|14|15|16|17|0 8|8|9|7|7|11|10|9|10|11|0 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 25|22|22|20|20|19|17|16|16|15|14|14|24|15|18|17|18|19|21|21|23|23|24|25|0 13|10|10|9|8|8|12|9|11|11|12|13|0 24|24|22|18|18|17|17|20|16|15|14|14|23|15|16|21|19|19|20|21|22|23|25|25|0 68|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 45|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 55|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 54|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 21|21|20|19|19|23|17|17|16|15|14|14|25|15|16|18|18|24|20|22|22|23|24|25|0 17|17|15|15|13|11|11|12|14|19|12|13|14|16|16|18|18|19|0 19|19|18|16|14|14|15|13|12|12|21|13|17|15|16|17|18|20|20|21|0 23|23|22|21|21|20|17|17|16|15|14|14|19|15|16|18|18|19|20|25|22|24|24|25|0 28|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 63|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 51|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 50|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 34|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 49|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 62|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 16|15|15|12|12|10|10|11|14|11|13|13|14|17|16|17|0 13|12|11|10|8|8|9|9|10|11|12|13|0 39|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 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 29|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 31|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 40|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 40|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 54|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 24|23|20|20|21|22|18|17|16|15|14|14|19|15|16|17|18|19|25|21|22|23|24|25|0 53|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 25|24|18|18|19|20|21|17|15|15|14|14|23|16|16|17|22|19|20|21|22|23|24|25|0 15|13|12|11|10|9|9|14|10|11|12|13|14|15|0 26|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 23|23|22|22|20|19|18|17|16|15|14|14|21|15|16|17|18|19|20|21|25|24|24|25|0 25|23|23|22|20|19|19|18|17|16|15|14|14|15|16|17|18|21|20|21|22|24|24|25|0 26|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 19|18|18|17|16|15|14|12|12|13|21|13|14|15|16|17|20|19|20|21|0 30|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 17|15|14|11|11|12|10|10|16|13|12|13|14|15|16|17|0 31|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 19|19|18|17|15|14|14|13|12|12|21|13|16|15|16|17|18|20|20|21|0 33|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 32|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 26|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 41|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 29|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 24|24|21|20|20|19|18|17|16|14|14|15|23|15|16|17|18|19|22|21|22|23|25|25|0 37|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 39|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 8|8|9|7|7|11|10|9|10|11|0 10|9|9|7|7|8|8|11|10|11|0 15|15|14|13|13|11|10|10|12|11|12|17|14|16|16|17|0 16|16|13|13|12|10|10|11|15|11|12|14|14|15|17|17|0 35|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 7|5|5|6|6|7|0 24|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 9|9|8|7|7|11|8|10|10|11|0 21|21|20|19|17|17|16|14|13|13|15|23|14|15|16|18|18|19|20|22|22|23|0 15|15|16|14|14|18|12|11|11|13|12|13|19|17|16|17|18|19|0 33|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 24|23|23|21|20|17|17|18|16|15|14|14|22|15|16|19|18|19|20|21|22|25|24|25|0 54|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 34|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 37|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 76|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 47|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 23|20|19|18|18|17|16|15|14|13|13|22|14|15|16|17|21|19|20|21|22|23|0 32|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 43|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 12|11|11|9|8|8|10|9|10|13|12|13|0 25|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 52|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 19|17|15|13|13|14|12|11|11|18|12|16|14|15|16|17|18|19|0 31|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 41|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 15|14|13|12|11|10|10|16|17|11|12|13|14|15|16|17|0 13|12|11|11|10|9|9|15|10|14|12|13|14|15|0 59|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 26|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 59|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 63|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 44|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 48|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 59|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 18|18|19|17|17|21|22|23|16|15|14|14|25|15|16|24|20|19|20|21|22|23|24|25|0 27|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 54|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 21|20|20|19|18|17|16|14|14|13|13|23|15|15|16|17|18|19|22|21|22|23|0 49|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 7|7|8|6|6|9|8|9|0 46|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 39|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 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 14|13|11|10|10|9|9|15|12|11|12|13|14|15|0 39|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 37|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 55|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 70|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 28|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 33|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 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 53|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 20|20|19|16|14|14|15|13|12|12|18|13|17|15|16|17|18|19|21|21|0 50|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 29|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 35|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 38|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 61|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 56|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 74|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 39|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 38|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 43|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 46|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 27|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 26|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 80|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 53|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 27|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 87|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 56|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 38|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 68|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 37|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 16|16|15|14|12|11|10|10|13|11|12|13|14|15|17|17|0 34|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 45|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 41|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 6|6|5|5|7|7|0 6|6|5|5|7|7|0 15|14|12|11|10|9|9|13|10|11|12|13|14|15|0 11|10|8|8|7|7|9|9|10|11|0 29|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 70|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 35|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 45|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 43|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 13|11|10|9|8|8|12|9|10|11|12|13|0 30|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 61|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 7|7|6|6|9|8|8|9|0 27|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 34|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 49|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 39|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 47|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 21|20|20|22|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0 40|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 38|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 64|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 66|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 23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0 11|8|8|7|7|10|9|9|10|11|0 25|22|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|23|23|24|25|0 20|18|17|17|16|16|14|13|12|12|15|13|14|15|21|19|18|19|20|21|0 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 56|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 32|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 71|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 30|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 33|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 18|17|17|15|13|13|11|11|12|16|12|14|14|15|16|19|18|19|0 61|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 15|15|14|14|17|13|13|19|12|12|21|20|18|16|16|17|18|19|20|21|0 55|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 17|16|15|13|12|11|10|10|14|11|12|13|14|15|16|17|0 25|22|22|20|20|19|17|17|16|14|14|15|24|15|16|18|18|19|21|21|23|23|24|25|0 51|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 24|24|21|21|19|19|18|15|15|14|14|17|23|16|16|17|18|20|20|22|22|23|25|25|0 68|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 31|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 47|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 52|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 30|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 16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0 16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0 21|21|20|19|18|18|23|16|16|14|14|15|25|15|17|17|24|19|20|22|22|23|24|25|0 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 34|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 78|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 40|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 52|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 13|13|14|11|9|9|10|12|10|11|12|15|14|15|0 29|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 27|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 11|9|8|7|7|10|8|9|10|11|0 28|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 68|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 66|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 30|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 46|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 38|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 54|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 28|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 29|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 46|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 14|12|12|11|10|9|9|15|10|11|13|13|14|15|0 43|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 13|11|11|12|10|9|9|15|10|14|12|13|14|15|0 37|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 11|8|8|7|7|10|9|9|10|11|0 39|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 29|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 27|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 50|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 64|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 17|17|16|16|19|14|14|12|12|13|21|13|15|15|20|18|18|19|20|21|0 35|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 34|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 23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0 4|4|5|5|0 13|12|9|8|8|10|11|9|10|11|12|13|0 55|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 65|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 44|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 33|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 9|9|8|7|7|11|8|10|10|11|0 52|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 50|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 26|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 24|23|22|21|21|18|18|17|15|15|14|14|20|16|16|17|19|19|20|25|22|23|24|25|0 46|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 61|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 11|11|10|9|8|8|13|9|10|12|12|13|0 48|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 58|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 30|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 22|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|21|22|23|0 72|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 88|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 19|18|15|14|14|13|12|11|11|17|12|13|16|15|16|17|18|19|0 68|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 38|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 55|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 65|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 21|20|18|18|17|16|15|15|14|13|13|23|14|22|16|17|19|19|20|21|22|23|0 89|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 59|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 11|11|10|9|8|8|13|9|10|12|12|13|0 31|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 39|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 25|24|23|20|20|19|18|15|15|16|14|14|22|17|16|17|18|19|21|21|22|23|24|25|0 7|5|5|6|6|7|0 49|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 49|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 46|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 38|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 64|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 20|19|18|16|16|15|14|13|12|12|21|13|14|15|17|17|18|19|20|21|0 61|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 36|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 22|22|21|19|18|16|15|14|14|13|13|20|17|15|16|17|18|19|20|21|23|23|0 46|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 33|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 13|10|10|11|12|9|9|15|14|11|12|13|14|15|0 12|10|8|8|9|11|13|9|10|11|12|13|0 52|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 25|24|23|22|21|19|14|14|15|16|17|18|20|15|16|17|18|19|20|21|22|23|24|25|0 29|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 23|22|21|20|20|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0 59|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 24|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 57|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 60|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 54|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 36|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 18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0 34|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 25|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 42|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 23|22|20|17|16|16|14|14|15|13|13|21|19|15|18|17|18|19|20|21|22|23|0 55|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 39|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 65|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 88|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 25|21|21|20|19|19|18|16|16|15|14|14|24|15|17|17|18|23|20|22|22|23|24|25|0 15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0 59|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 43|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 19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0 8|8|7|6|6|7|9|9|0 34|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 52|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 19|19|20|18|17|16|16|22|23|15|14|14|25|15|24|17|18|21|20|21|22|23|24|25|0 50|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 71|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 36|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 37|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 21|19|19|17|14|14|13|13|12|12|18|16|15|15|16|17|18|20|20|21|0 43|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 8|6|6|7|9|7|8|9|0 35|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 34|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 23|23|22|21|21|18|18|17|16|14|14|15|20|15|16|17|19|19|20|25|22|24|24|25|0 25|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 35|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 4|4|5|5|0 42|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 34|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 44|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 11|8|7|7|9|10|8|9|10|11|0 8|8|6|6|7|7|9|9|0 19|19|16|16|15|15|18|13|12|12|14|13|14|21|17|17|18|20|20|21|0 19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0 61|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 27|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 12|12|9|8|8|10|11|9|10|11|13|13|0 45|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 49|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 28|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 28|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 21|20|19|18|17|15|14|13|12|12|16|13|14|15|16|17|18|19|20|21|0 23|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 56|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 34|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 47|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 28|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 65|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 34|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 34|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 51|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 28|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 30|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 63|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 35|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 26|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 52|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 22|21|18|18|19|17|16|15|14|13|13|23|14|15|16|17|20|19|20|21|22|23|0 44|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 18|18|17|16|16|15|14|13|12|12|21|13|14|15|20|17|19|19|20|21|0 58|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 39|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 55|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 42|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 11|10|9|9|8|8|13|12|10|11|12|13|0 54|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 35|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 33|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 21|20|19|16|16|15|14|13|12|12|18|13|14|15|17|17|18|19|20|21|0 52|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 26|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 34|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 44|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 44|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 47|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 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 36|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 27|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 11|10|9|8|7|7|8|9|10|11|0 40|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 13|12|10|9|8|8|11|9|10|11|12|13|0 60|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 24|22|22|21|21|20|18|18|16|15|14|14|17|15|16|17|19|19|20|25|23|23|24|25|0 23|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 23|22|21|19|18|17|16|15|14|13|13|20|14|15|16|17|18|19|20|21|22|23|0 27|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 42|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 13|12|11|10|10|9|9|15|14|11|12|13|14|15|0 56|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 18|18|19|17|17|21|15|15|16|14|13|13|14|23|16|22|20|19|20|21|22|23|0 21|21|20|15|15|16|14|14|18|13|13|23|19|17|16|17|18|19|20|22|22|23|0 45|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 76|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 55|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 74|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 61|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 47|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 40|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 92|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 40|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 50|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 11|9|8|7|7|10|8|9|10|11|0 27|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 23|21|20|18|16|16|17|14|13|13|15|22|14|15|19|17|18|19|20|21|22|23|0 19|18|15|15|12|11|11|13|14|17|12|13|14|16|16|17|18|19|0 13|11|10|8|8|9|12|9|10|11|12|13|0 32|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 35|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 23|23|22|21|21|19|18|16|15|15|14|14|20|17|16|17|18|19|20|25|22|24|24|25|0 33|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 61|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 69|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 87|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 56|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 49|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 42|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 19|16|16|17|14|13|12|11|11|15|12|13|14|15|18|17|18|19|0 67|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 38|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 31|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 37|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 35|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 26|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 62|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 40|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 26|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 13|11|9|9|8|8|12|10|10|11|12|13|0 32|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 8|8|7|6|6|7|9|9|0 70|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 48|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 52|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 50|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 15|14|14|16|12|11|10|10|13|11|12|13|17|15|16|17|0 35|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 32|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 37|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 44|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 55|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 21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0 48|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 60|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 32|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 60|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 25|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 52|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 26|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 52|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 25|23|22|21|20|18|17|16|14|14|15|19|24|15|16|17|18|19|20|21|22|23|24|25|0 22|21|20|20|19|17|16|16|15|13|13|14|14|15|18|17|18|19|23|21|22|23|0 84|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 22|21|20|20|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0 35|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 30|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 38|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 17|16|16|14|14|13|12|11|11|19|12|13|15|15|18|17|18|19|0 77|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 9|8|6|6|7|7|8|9|0 39|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 55|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 24|24|23|21|19|18|18|17|15|15|14|14|22|16|16|17|20|19|20|21|22|23|25|25|0 24|23|22|21|19|19|18|17|17|15|14|14|16|15|16|25|18|20|20|21|22|23|24|25|0 48|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 42|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 68|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 56|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 34|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 22|22|21|20|19|17|15|14|13|13|16|18|14|15|16|17|18|19|20|21|23|23|0 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 18|18|17|17|20|21|16|16|14|14|13|13|15|15|23|22|19|19|20|21|22|23|0 45|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 56|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 49|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 53|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 19|18|17|16|15|14|14|13|12|12|21|13|20|15|16|17|18|19|20|21|0 43|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 50|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 52|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 50|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 17|13|13|14|12|12|16|11|11|19|18|15|14|15|16|17|18|19|0 43|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 21|19|18|18|16|15|14|12|12|13|17|13|14|15|16|17|20|19|20|21|0 40|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 34|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 13|12|10|10|9|8|8|9|11|11|12|13|0 12|12|10|8|8|9|11|9|10|11|13|13|0 15|12|12|10|10|9|9|14|11|11|13|13|14|15|0 43|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 34|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 31|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 19|16|16|13|13|14|12|11|11|18|12|15|14|15|17|17|18|19|0 20|18|18|17|17|21|16|14|14|13|13|23|15|15|16|22|19|19|20|21|22|23|0 15|12|12|11|10|9|9|14|10|11|13|13|14|15|0 64|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 31|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 21|20|20|19|16|16|15|15|14|13|13|23|14|18|17|17|18|19|22|21|22|23|0 31|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 58|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 20|19|18|17|16|15|14|14|12|12|13|13|21|15|16|17|18|19|20|21|0 33|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 41|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 16|14|14|15|17|13|11|11|12|19|12|13|18|15|16|17|18|19|0 46|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 24|24|21|21|20|17|17|18|16|15|14|14|23|15|16|19|18|19|20|22|22|23|25|25|0 17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0 20|19|19|17|16|15|14|13|12|12|18|13|14|15|16|17|18|21|20|21|0 42|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 69|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 6|6|5|5|7|7|0 84|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 19|16|16|13|12|12|14|11|11|18|15|13|14|15|17|17|18|19|0 23|23|21|21|22|20|18|18|15|15|14|14|17|16|16|17|19|19|20|25|22|24|24|25|0 15|14|14|16|17|13|12|11|11|19|12|13|18|15|16|17|18|19|0 24|24|23|20|19|18|17|16|15|15|14|14|22|21|16|17|18|19|20|21|22|23|25|25|0 66|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 52|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 27|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 18|18|19|17|15|15|14|13|12|12|21|13|14|16|16|17|20|19|20|21|0 33|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 16|16|15|15|14|12|12|11|11|19|13|13|14|18|17|17|18|19|0 32|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 44|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 11|11|10|9|8|8|13|9|10|12|12|13|0 38|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 51|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 60|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 39|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 45|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 49|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 8|7|6|6|9|7|8|9|0 64|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 8|7|6|6|9|7|8|9|0 21|21|20|19|18|16|16|15|14|14|13|13|23|15|17|17|18|19|20|22|22|23|0 10|9|8|7|7|11|8|9|10|11|0 32|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 33|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 39|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 60|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 15|12|12|11|9|9|10|14|10|11|13|13|14|15|0 54|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 47|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 54|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 25|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 52|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 7|7|6|6|9|8|8|9|0 49|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 42|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 25|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 48|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 53|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 39|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 27|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 44|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 34|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 11|10|9|8|7|7|8|9|10|11|0 23|20|19|19|18|15|15|16|14|13|13|22|14|17|16|17|18|21|20|21|22|23|0 23|22|20|19|18|17|16|15|14|13|13|21|14|15|16|17|18|19|20|21|22|23|0 7|5|5|6|6|7|0 62|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 51|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 35|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 49|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 26|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 39|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 18|16|16|17|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0 18|17|17|19|16|14|14|13|12|12|21|13|15|15|16|20|18|19|20|21|0 53|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 31|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 32|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 28|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 49|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 30|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 16|16|15|14|13|11|10|10|12|11|12|13|14|15|17|17|0 35|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 31|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 31|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 36|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 36|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 59|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 19|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|18|19|0 44|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 55|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 17|16|13|13|11|11|10|10|15|12|12|14|14|15|16|17|0 61|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 51|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 29|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 27|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 25|23|20|19|18|18|21|15|15|16|14|14|24|17|16|17|22|19|20|21|22|23|24|25|0 68|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 44|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 46|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 29|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 46|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 85|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 60|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 30|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 29|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 40|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 31|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 18|17|16|15|15|13|12|11|11|14|12|13|14|19|16|17|18|19|0 19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0 18|16|15|14|13|13|12|12|11|11|19|17|14|15|16|17|18|19|0 63|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 25|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 40|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 38|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 35|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 53|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 51|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 20|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|21|19|20|21|0 17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0 54|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 25|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 35|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 35|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 34|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 33|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 40|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 84|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 48|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 27|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 24|23|23|20|19|18|18|17|16|15|14|14|22|15|16|17|21|19|20|21|22|25|24|25|0 31|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 42|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 43|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 47|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 37|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 43|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 19|17|17|15|13|13|12|11|11|16|12|14|14|15|16|18|18|19|0 35|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 31|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 27|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 31|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 45|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 25|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 36|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 49|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 35|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 43|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 11|10|10|12|8|8|9|9|13|11|12|13|0 41|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 55|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 37|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 46|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 46|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 21|19|18|14|14|15|16|13|12|12|20|13|17|15|16|17|18|19|20|21|0 52|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 39|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 61|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 7|7|6|6|9|8|8|9|0 28|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 55|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 47|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 28|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 45|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 16|16|13|12|11|11|10|10|15|14|12|13|14|15|17|17|0 59|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 27|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 19|17|15|15|14|12|11|11|13|18|12|13|14|16|16|17|18|19|0 61|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 18|18|17|17|20|21|15|15|14|13|13|23|14|16|16|22|19|19|20|21|22|23|0 31|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 7|6|5|5|6|7|0 44|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 75|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 24|23|22|22|21|20|17|17|16|14|14|15|19|15|16|18|18|19|20|21|25|23|24|25|0 23|21|20|19|18|15|15|16|14|13|13|22|14|17|16|17|18|19|20|21|22|23|0 29|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 18|17|16|16|13|13|12|11|11|15|12|14|14|15|19|17|18|19|0 23|22|20|19|18|17|16|15|14|13|13|21|14|15|16|17|18|19|20|21|22|23|0 84|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 26|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 50|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 43|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 13|10|10|8|8|9|12|9|11|11|12|13|0 37|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 38|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 55|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 36|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 30|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 73|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 32|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 35|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 48|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 29|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 47|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 39|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 58|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 51|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 42|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 33|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 45|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 47|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 21|18|18|16|15|15|14|13|12|12|20|13|14|17|16|17|19|19|20|21|0 34|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 22|21|20|19|18|18|17|16|14|13|13|15|14|15|16|17|23|19|20|21|22|23|0 37|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 28|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 27|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 48|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 24|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 10|9|8|8|7|7|11|9|10|11|0 17|17|18|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 44|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 37|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 37|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 42|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 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 55|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 15|15|14|13|13|11|10|10|12|11|12|17|14|16|16|17|0 45|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 41|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 42|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 48|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 20|19|19|18|16|15|14|13|12|12|17|13|14|15|16|17|18|21|20|21|0 40|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 33|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 16|15|15|17|14|12|11|11|13|19|12|13|14|18|16|17|18|19|0 26|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 35|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 56|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 17|16|16|15|13|13|14|12|11|11|12|19|14|15|18|17|18|19|0 63|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 41|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 72|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 31|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 26|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 30|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 25|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 19|19|18|18|16|15|14|12|12|13|17|13|14|15|16|17|21|20|20|21|0 41|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 37|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 40|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 35|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 25|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 21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0 33|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 48|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 49|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 58|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 42|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 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 64|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 44|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 27|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 10|10|8|7|7|9|8|9|11|11|0 20|20|18|17|16|15|14|13|12|12|19|13|14|15|16|17|18|19|21|21|0 58|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 34|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 36|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 49|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 47|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 59|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 38|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 29|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 24|23|22|21|21|20|19|16|15|15|14|14|18|17|16|17|18|19|20|25|22|23|24|25|0 29|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 36|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 67|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 25|22|21|21|20|19|18|15|15|16|14|14|24|17|16|17|18|19|20|23|22|23|24|25|0 23|18|17|16|16|19|20|15|14|13|13|22|14|15|21|17|18|19|20|21|22|23|0 27|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 48|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 34|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 47|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 36|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 30|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 25|24|22|20|20|19|19|17|14|14|15|16|18|15|16|17|18|23|21|21|22|23|24|25|0 41|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 3|3|0 3|3|0 25|19|19|18|18|21|22|17|16|15|14|14|24|15|16|17|23|20|20|21|22|23|24|25|0 11|10|10|9|8|8|13|9|12|11|12|13|0 51|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 26|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 46|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 20|19|19|17|16|15|13|12|12|14|18|13|14|15|16|17|18|21|20|21|0 7|6|5|5|6|7|0 43|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 44|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 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 47|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 32|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 54|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 46|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 17|13|12|11|10|10|14|15|16|11|12|13|14|15|16|17|0 44|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 29|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 46|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 62|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 10|10|8|8|9|12|13|9|11|11|12|13|0 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 70|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 42|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 12|12|11|10|10|9|9|15|14|11|13|13|14|15|0 27|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 15|14|11|11|10|9|9|13|10|12|12|13|14|15|0 13|13|11|10|10|9|9|15|12|11|12|14|14|15|0 26|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 52|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 27|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 42|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 12|12|13|11|9|9|10|15|10|11|14|13|14|15|0 54|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 60|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 35|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 23|22|19|19|18|16|16|15|14|13|13|21|14|15|17|17|18|20|20|21|22|23|0 21|18|17|15|15|14|13|12|12|19|20|13|14|16|16|17|18|19|20|21|0 16|16|17|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0 15|12|11|10|10|9|9|14|13|11|12|13|14|15|0 30|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 53|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 49|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 42|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 20|20|18|15|14|14|13|13|12|12|19|17|16|15|16|17|18|19|21|21|0 65|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 23|22|22|21|19|19|18|17|17|15|14|14|16|15|16|25|18|20|20|21|24|23|24|25|0 9|9|8|7|7|11|8|10|10|11|0 34|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 33|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 30|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 28|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 43|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 13|11|10|8|8|9|12|9|10|11|12|13|0 45|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 55|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 38|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 29|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 16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0 9|9|8|7|7|11|8|10|10|11|0 5|4|4|5|0 33|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 50|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 34|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 56|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 17|16|15|15|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0 32|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 42|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 8|7|7|6|6|9|8|9|0 31|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 50|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 15|14|13|12|10|9|9|11|10|11|12|13|14|15|0 35|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 56|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 18|17|16|15|14|13|12|11|11|19|12|13|14|15|16|17|18|19|0 21|20|19|19|22|16|15|15|14|13|13|18|14|17|16|17|18|23|20|21|22|23|0 14|14|11|11|10|9|9|13|10|12|12|13|15|15|0 48|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 22|22|20|19|16|16|17|15|14|13|13|21|14|15|18|17|18|19|20|21|23|23|0 27|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 37|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 38|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 68|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 34|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 16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0 31|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 55|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 24|23|23|22|21|18|18|16|15|15|14|14|20|17|16|17|19|19|20|21|22|25|24|25|0 55|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 41|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 43|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 32|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 74|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 21|17|16|16|18|15|15|12|12|13|14|13|14|20|19|17|18|19|20|21|0 38|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 42|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 26|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 30|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 43|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 70|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 11|11|10|10|8|8|9|9|13|12|12|13|0 11|9|7|7|8|10|8|9|10|11|0 13|13|12|11|9|9|10|15|10|11|12|14|14|15|0 32|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 18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0 25|23|23|22|19|19|20|16|16|14|14|15|18|15|17|17|18|21|20|21|22|24|24|25|0 72|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 10|8|7|7|9|11|8|9|10|11|0 37|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 60|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 44|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 21|18|18|17|16|14|14|13|12|12|20|13|15|15|16|17|19|19|20|21|0 48|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 55|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 49|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 64|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 24|24|22|21|18|17|17|19|15|15|14|14|23|16|16|20|18|19|20|21|22|23|25|25|0 39|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 25|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 44|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 86|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 20|20|18|17|16|15|14|13|12|12|19|13|14|15|16|17|18|19|21|21|0 55|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 24|24|22|19|19|20|17|17|16|14|14|15|23|15|16|18|18|21|20|21|22|23|25|25|0 40|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 21|20|18|18|14|14|15|13|12|12|17|13|16|15|16|17|19|19|20|21|0 24|21|21|22|20|20|19|17|16|16|14|14|15|15|18|17|18|19|25|23|22|23|24|25|0 48|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 38|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 39|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 39|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 81|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 39|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 40|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 18|18|14|13|12|11|11|15|16|17|12|13|14|15|16|17|19|19|0 19|15|14|14|16|13|12|11|11|18|12|13|17|15|16|17|18|19|0 36|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 14|14|13|11|10|9|9|12|10|11|12|13|15|15|0 66|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 66|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 42|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 47|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 48|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 19|18|18|17|16|16|21|14|14|13|13|23|15|15|22|17|20|19|20|21|22|23|0 45|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 41|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 39|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 57|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 59|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 67|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 62|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 47|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 19|18|18|20|16|15|13|13|12|12|17|14|14|15|16|17|21|19|20|21|0 45|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 10|8|8|7|7|11|9|9|10|11|0 8|7|6|6|9|7|8|9|0 13|10|10|9|8|8|12|9|11|11|12|13|0 21|20|17|17|16|15|13|13|12|12|19|14|14|15|16|18|18|19|20|21|0 42|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 31|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 10|9|7|7|8|11|8|9|10|11|0 29|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 17|15|14|14|13|11|10|10|12|11|12|13|16|15|16|17|0 51|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 61|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 30|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 8|8|7|6|6|7|9|9|0 39|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 50|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 28|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 20|18|18|17|15|15|14|14|13|12|12|13|21|16|16|17|19|19|20|21|0 52|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 42|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 21|19|19|17|16|15|14|13|12|12|18|13|14|15|16|17|18|20|20|21|0 17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0 20|20|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|19|21|21|0 21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0 11|8|7|7|9|10|8|9|10|11|0 12|11|10|10|8|8|9|9|13|11|12|13|0 42|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 44|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 5|5|6|7|6|7|0 17|16|13|11|11|10|10|14|15|12|12|13|14|15|16|17|0 35|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 25|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 21|19|18|18|15|15|14|13|12|12|17|13|14|16|16|17|20|19|20|21|0 38|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 23|23|22|22|20|19|18|15|15|16|14|14|21|17|16|17|18|19|20|21|25|24|24|25|0 30|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 29|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 47|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 19|14|13|13|15|16|11|11|12|18|12|17|14|15|16|17|18|19|0 76|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 39|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 9|8|6|6|7|7|8|9|0 39|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 41|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 29|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 34|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 49|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 8|7|6|6|9|7|8|9|0 46|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 54|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 17|14|14|13|11|11|10|10|16|12|12|13|15|15|16|17|0 53|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 48|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 49|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 32|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 62|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 23|21|20|18|18|17|14|14|15|13|13|22|16|15|16|17|19|19|20|21|22|23|0 29|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 44|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 31|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 7|7|6|6|9|8|8|9|0 28|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 38|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 34|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 41|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 32|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 33|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 23|23|21|20|19|19|18|16|15|14|14|17|25|15|16|17|18|22|20|21|22|24|24|25|0 31|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 58|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 19|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|18|19|0 57|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 44|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 12|8|8|9|10|11|13|9|10|11|12|13|0 46|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 30|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 50|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 25|24|22|20|19|19|18|17|16|15|14|14|23|15|16|17|18|21|20|21|22|23|24|25|0 33|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 31|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 35|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 28|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 20|19|19|17|16|12|12|13|14|15|18|13|14|15|16|17|18|21|20|21|0 28|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 51|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 28|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 58|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 30|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 26|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 25|22|21|21|20|19|18|16|16|15|14|14|24|15|17|17|18|19|20|23|22|23|24|25|0 40|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 33|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 12|11|10|9|8|8|13|9|10|11|12|13|0 51|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 37|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 54|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 60|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 29|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 30|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 65|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 36|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 23|22|20|19|17|16|16|15|14|13|13|21|14|15|18|17|18|19|20|21|22|23|0 43|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 15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0 11|10|8|8|9|12|13|9|10|11|12|13|0 15|15|16|17|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0 60|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 11|11|10|9|8|8|13|9|10|12|12|13|0 15|12|11|11|9|9|10|14|10|13|12|13|14|15|0 11|8|8|7|7|10|9|9|10|11|0 15|12|12|10|10|9|9|14|11|11|13|13|14|15|0 31|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 84|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 22|22|20|19|17|16|15|15|14|13|13|21|14|18|16|17|18|19|20|21|23|23|0 30|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 18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0 64|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 30|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 21|20|19|19|18|17|15|14|14|13|13|23|16|15|16|17|18|22|20|21|22|23|0 16|14|14|15|12|11|10|10|13|11|12|13|17|15|16|17|0 26|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 73|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 58|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 32|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 19|18|18|17|16|16|21|15|14|13|13|23|14|15|22|17|20|19|20|21|22|23|0 31|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 37|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 40|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 21|21|20|19|18|18|15|15|14|13|13|17|14|16|16|17|23|19|20|22|22|23|0 53|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 25|18|18|19|20|21|22|23|16|15|14|14|17|15|16|17|24|19|20|21|22|23|24|25|0 25|23|22|21|21|20|18|17|15|15|14|14|19|16|16|17|18|19|20|24|22|23|24|25|0 54|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 30|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 33|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 11|10|9|9|8|8|13|12|10|11|12|13|0 14|13|13|15|12|11|10|10|17|11|12|16|14|15|16|17|0 54|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 66|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 32|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 29|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 32|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 67|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 74|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 39|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 42|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 55|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 21|21|20|20|23|16|15|15|17|18|14|14|25|19|16|17|18|19|24|22|22|23|24|25|0 41|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 27|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 24|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 23|23|22|20|19|18|17|17|16|15|14|14|25|15|16|21|18|19|20|21|22|24|24|25|0 11|11|10|9|8|8|13|9|10|12|12|13|0 21|20|18|17|15|14|14|13|12|12|19|13|16|15|16|17|18|19|20|21|0 52|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 79|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 13|10|10|9|8|8|12|9|11|11|12|13|0 48|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 7|5|5|6|6|7|0 3|3|0 3|3|0 10|9|8|7|7|11|8|9|10|11|0 10|10|8|7|7|9|8|9|11|11|0 27|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 23|21|20|19|17|17|16|15|13|13|14|22|14|15|16|18|18|19|20|21|22|23|0 45|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 33|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 48|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 20|19|18|18|16|16|14|12|12|13|15|13|14|15|17|17|21|19|20|21|0 34|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 29|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 34|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 34|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 3|3|0 27|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 20|18|17|17|19|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0 49|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 36|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 23|22|22|21|18|17|17|19|15|15|14|14|25|16|16|20|18|19|20|21|24|23|24|25|0 41|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 33|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 43|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 60|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 55|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 32|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 21|19|19|20|18|16|16|15|14|14|13|13|23|15|17|17|18|22|20|21|22|23|0 70|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 31|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 8|6|6|7|9|7|8|9|0 18|18|17|16|15|15|14|13|12|12|21|13|14|20|16|17|19|19|20|21|0 34|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 23|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 78|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 23|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 49|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 31|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 54|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 27|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 29|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 49|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 41|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 34|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 55|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 42|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 57|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 32|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 13|12|9|9|10|8|8|11|10|11|12|13|0 17|17|18|16|15|15|20|13|12|12|14|13|14|21|16|19|18|19|20|21|0 20|19|17|17|18|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0 39|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 61|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 39|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 43|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 28|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 37|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 43|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 17|16|13|13|12|11|11|10|10|15|12|14|14|15|16|17|0 19|18|17|16|15|15|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0 10|10|8|7|7|9|8|9|11|11|0 15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0 36|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 56|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 41|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 25|22|19|18|18|20|21|16|15|14|14|17|24|15|16|17|23|19|20|21|22|23|24|25|0 33|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 39|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 41|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 27|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 22|22|19|18|18|17|15|15|14|13|13|21|14|16|16|17|20|19|20|21|23|23|0 19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0 64|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 46|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 47|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 26|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 79|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 26|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 42|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 37|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 48|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 25|23|22|21|19|19|18|16|16|15|14|14|24|15|17|17|18|20|20|21|22|23|24|25|0 31|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 11|9|8|8|7|7|10|9|10|11|0 25|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 24|24|19|18|17|17|20|21|15|15|14|14|23|16|16|22|18|19|20|21|22|23|25|25|0 27|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 39|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 30|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 34|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 45|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 30|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 54|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 36|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 72|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 35|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 16|15|15|14|12|11|10|10|13|11|12|13|14|17|16|17|0 18|17|17|15|12|12|13|11|11|16|14|13|14|15|16|19|18|19|0 15|11|11|12|10|9|9|14|10|13|12|13|14|15|0 85|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 18|18|15|15|14|12|12|11|11|17|13|13|14|16|16|17|19|19|0 33|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 22|22|20|19|18|18|17|15|15|14|13|13|14|16|16|17|21|19|20|21|23|23|0 27|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 53|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 47|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 14|14|13|10|10|9|9|12|11|11|12|13|15|15|0 27|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 36|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 18|18|17|16|14|14|12|12|13|20|21|13|15|15|16|17|19|19|20|21|0 50|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 16|16|12|12|13|11|10|10|15|11|14|13|14|15|17|17|0 20|20|19|16|15|13|13|14|12|12|18|17|14|15|16|17|18|19|21|21|0 23|22|21|21|20|19|19|17|16|15|14|14|18|15|16|17|18|25|20|24|22|23|24|25|0 33|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 37|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 54|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 20|20|16|16|15|15|14|13|12|12|19|13|14|18|17|17|18|19|21|21|0 25|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 15|14|13|13|16|12|11|11|18|19|12|17|14|15|16|17|18|19|0 46|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 9|8|7|6|6|7|8|9|0 25|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 23|21|21|19|14|14|15|16|17|13|13|20|18|15|16|17|18|19|20|22|22|23|0 32|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 45|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 84|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 41|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 23|22|20|20|19|16|15|15|17|14|13|13|14|18|16|17|18|19|21|21|22|23|0 24|23|22|19|19|18|18|17|15|15|16|14|14|25|16|17|21|20|20|21|22|23|24|25|0 37|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 47|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 23|18|18|17|16|16|20|15|14|13|13|22|14|15|21|17|19|19|20|21|22|23|0 21|17|16|16|18|19|14|13|12|12|15|13|14|15|20|17|18|19|20|21|0 33|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 37|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 19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0 10|9|9|7|7|8|8|11|10|11|0 22|21|20|19|18|18|17|15|14|13|13|16|14|15|16|17|23|19|20|21|22|23|0 58|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 52|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 46|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 27|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 13|9|9|10|11|8|8|12|10|11|12|13|0 10|8|8|9|7|7|11|9|10|11|0 16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0 56|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 55|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 31|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 56|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 30|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 13|12|10|9|8|8|11|9|10|11|12|13|0 33|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 17|13|13|14|12|11|10|10|16|11|12|15|14|15|16|17|0 16|16|17|15|14|12|12|11|11|19|13|13|14|15|18|17|18|19|0 60|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 74|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 61|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 49|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 27|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 41|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 11|10|10|9|8|8|13|9|12|11|12|13|0 76|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 25|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 23|23|22|21|19|19|18|18|16|14|14|15|17|15|16|17|25|20|20|21|22|24|24|25|0 47|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 12|12|13|11|11|9|9|10|10|15|14|13|14|15|0 30|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 25|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 60|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 50|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 15|14|12|9|9|10|11|13|10|11|12|13|14|15|0 49|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 44|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 14|13|12|12|10|9|9|11|10|11|15|13|14|15|0 10|10|7|7|8|9|8|9|11|11|0 24|23|22|22|21|19|19|17|16|15|14|14|18|15|16|17|18|20|20|21|25|23|24|25|0 54|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 82|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 33|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 40|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 57|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 43|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 60|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 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 34|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 27|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 36|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 27|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 24|23|23|21|18|17|17|16|15|15|14|14|22|20|16|19|18|19|20|21|22|25|24|25|0 26|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 14|13|13|11|10|9|9|12|10|11|12|15|14|15|0 27|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 23|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 30|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 5|4|4|5|0 33|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 29|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 54|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 39|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 43|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 23|23|24|17|17|16|16|19|20|15|14|14|22|15|21|18|18|19|20|21|22|25|24|25|0 60|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 24|23|22|22|19|17|17|16|15|15|14|14|21|20|16|18|18|19|20|21|25|23|24|25|0 31|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 81|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 69|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 43|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 30|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 52|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 14|13|12|11|10|9|9|15|10|11|12|13|14|15|0 59|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 47|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 40|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 19|17|16|15|14|12|12|11|11|18|13|13|14|15|16|17|18|19|0 46|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 37|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 29|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 30|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 44|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 51|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 32|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 10|9|9|8|7|7|8|11|10|11|0 51|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 65|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 46|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 11|10|10|9|8|8|13|9|12|11|12|13|0 16|16|15|14|13|11|10|10|12|11|12|13|14|15|17|17|0 61|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 12|11|11|10|8|8|9|9|10|13|12|13|0 79|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 36|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 47|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 12|11|11|13|10|9|9|15|10|14|12|13|14|15|0 48|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 65|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 48|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 6|6|7|8|9|7|8|9|0 58|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 13|11|10|8|8|9|12|9|10|11|12|13|0 66|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 60|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 23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0 53|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 47|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 19|18|18|17|16|16|13|13|12|12|15|14|14|15|21|17|20|19|20|21|0 34|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 80|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 23|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 33|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 30|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 25|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 9|7|6|6|8|7|8|9|0 23|20|20|19|17|14|14|13|13|16|18|22|15|15|16|17|18|19|21|21|22|23|0 43|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 21|20|17|17|15|14|14|13|12|12|19|13|16|15|16|18|18|19|20|21|0 17|17|16|12|12|11|11|14|15|19|13|13|14|15|16|18|18|19|0 15|14|14|13|13|17|11|11|12|19|12|18|16|15|16|17|18|19|0 17|17|18|16|16|20|14|13|12|12|15|13|14|15|21|19|18|19|20|21|0 32|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 77|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 37|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 74|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 18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0 23|20|19|19|18|17|16|15|14|13|13|22|14|15|16|17|18|21|20|21|22|23|0 10|10|11|9|8|8|13|9|12|11|12|13|0 25|24|22|20|19|18|18|21|16|16|15|14|14|15|17|17|23|19|20|21|22|23|24|25|0 51|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 62|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 63|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 42|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 14|14|12|11|10|9|9|13|10|11|12|13|15|15|0 21|20|19|17|16|16|15|13|12|12|14|13|14|15|18|17|18|19|20|21|0 53|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 13|13|10|10|11|12|9|9|15|11|12|14|14|15|0 13|8|8|9|10|11|12|9|10|11|12|13|0 5|4|4|5|0 41|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 7|7|6|6|9|8|8|9|0 37|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 29|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 48|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 17|16|16|18|14|13|12|11|11|15|12|13|14|15|19|17|18|19|0 35|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 38|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 40|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 22|22|21|20|19|18|18|24|14|14|15|16|17|15|16|17|25|19|20|21|23|23|24|25|0 21|20|19|15|15|13|13|12|12|17|18|14|14|16|16|17|18|19|20|21|0 7|7|6|6|9|8|8|9|0 9|6|6|7|8|7|8|9|0 9|6|6|7|8|7|8|9|0 5|4|4|5|0 11|10|10|9|8|8|13|9|12|11|12|13|0 40|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 29|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 29|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 30|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 13|10|9|8|8|11|12|9|10|11|12|13|0 47|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 22|22|20|18|17|16|15|15|14|13|13|21|14|19|16|17|18|19|20|21|23|23|0 27|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 23|21|19|19|18|17|16|15|13|13|14|22|14|15|16|17|18|20|20|21|22|23|0 11|8|8|7|7|10|9|9|10|11|0 11|10|8|7|7|9|8|9|10|11|0 7|5|5|6|6|7|0 11|10|10|12|13|9|9|15|14|11|12|13|14|15|0 22|22|20|18|17|17|16|13|13|14|15|21|14|15|16|19|18|19|20|21|23|23|0 27|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 17|16|15|14|14|12|12|11|11|19|13|13|18|15|16|17|18|19|0 5|4|4|5|0 5|4|4|5|0 9|9|7|7|8|11|8|10|10|11|0 9|7|6|6|8|7|8|9|0 15|13|11|11|10|9|9|14|10|12|12|13|14|15|0 59|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 25|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 46|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 18|16|16|15|15|19|14|13|12|12|21|13|14|20|17|17|18|19|20|21|0 70|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 15|15|14|14|13|12|11|10|10|11|12|13|17|16|16|17|0 5|4|4|5|0 3|3|0 11|11|9|9|8|8|13|10|10|12|12|13|0 16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0 9|8|8|7|7|11|10|9|10|11|0 34|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 16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0 11|8|8|7|7|10|9|9|10|11|0 39|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 3|3|0 71|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 7|6|5|5|6|7|0 4|4|5|5|0 13|12|12|11|10|9|9|15|10|11|14|13|14|15|0 5|4|4|5|0 7|7|6|6|9|8|8|9|0 12|11|11|9|8|8|10|9|10|13|12|13|0 6|6|5|5|7|7|0 11|10|9|9|8|8|13|12|10|11|12|13|0 5|4|4|5|0 5|5|6|7|6|7|0 4|4|5|5|0 7|6|5|5|6|7|0 5|5|6|7|6|7|0 6|6|7|8|9|7|8|9|0 5|5|6|7|6|7|0 9|7|7|6|6|8|8|9|0 7|6|5|5|6|7|0 7|7|6|6|9|8|8|9|0 5|5|6|7|6|7|0 4|4|5|5|0 3|3|0 5|5|6|7|6|7|0 5|5|6|7|6|7|0 5|5|6|7|6|7|0 27|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 55|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 5|4|4|5|0 5|5|6|7|6|7|0 5|4|4|5|0 5|5|6|7|6|7|0 7|6|5|5|6|7|0 5|4|4|5|0 5|5|6|7|6|7|0 7|5|5|6|6|7|0 4|4|5|5|0 24|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 9|8|7|6|6|7|8|9|0 6|5|5|7|6|7|0 3|3|0 6|6|5|5|7|7|0 9|8|7|6|6|7|8|9|0 5|4|4|5|0 9|8|6|6|7|7|8|9|0 3|3|0 7|6|5|5|6|7|0 7|6|5|5|6|7|0 3|3|0 42|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 5|5|6|7|6|7|0 4|4|5|5|0 4|4|5|5|0 4|4|5|5|0 5|4|4|5|0 5|5|6|7|6|7|0 4|4|5|5|0 7|6|5|5|6|7|0 5|4|4|5|0 7|6|5|5|6|7|0 6|6|5|5|7|7|0 7|6|5|5|6|7|0 7|6|5|5|6|7|0 6|5|5|7|6|7|0 5|5|6|7|6|7|0 4|4|5|5|0 9|8|7|6|6|7|8|9|0 30|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 6|5|5|7|6|7|0 5|4|4|5|0 5|5|6|7|6|7|0 7|6|5|5|6|7|0 5|4|4|5|0 7|5|5|6|6|7|0 4|4|5|5|0 7|6|5|5|6|7|0 38|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 7|5|5|6|6|7|0 7|6|5|5|6|7|0 6|6|5|5|7|7|0 3|3|0 3|3|0 5|5|6|7|6|7|0 3|3|0 7|6|5|5|6|7|0 7|6|5|5|6|7|0 6|6|5|5|7|7|0 5|4|4|5|0 5|5|6|7|6|7|0 6|5|5|7|6|7|0 7|6|5|5|6|7|0 5|5|6|7|6|7|0 7|6|5|5|6|7|0 9|8|8|7|7|11|10|9|10|11|0 5|5|6|7|6|7|0 9|8|6|6|7|7|8|9|0 7|5|5|6|6|7|0 15|13|13|12|10|9|9|11|10|11|12|14|14|15|0 6|5|5|7|6|7|0 5|4|4|5|0 7|7|6|6|9|8|8|9|0 5|4|4|5|0 9|8|8|7|7|11|10|9|10|11|0 7|6|5|5|6|7|0 6|6|5|5|7|7|0 5|5|6|7|6|7|0 7|5|5|6|6|7|0 7|5|5|6|6|7|0 5|5|6|7|6|7|0 6|5|5|7|6|7|0 7|6|5|5|6|7|0 5|4|4|5|0 4|4|5|5|0 4|4|5|5|0 5|5|6|7|6|7|0 5|4|4|5|0 6|6|5|5|7|7|0 7|5|5|6|6|7|0 5|4|4|5|0 5|4|4|5|0 7|5|5|6|6|7|0 12|11|10|10|13|9|9|15|14|11|12|13|14|15|0 7|6|5|5|6|7|0 3|3|0 4|4|5|5|0 5|5|6|7|6|7|0 4|4|5|5|0 5|5|6|7|6|7|0 37|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 5|4|4|5|0 3|3|0 10|10|11|9|8|8|13|9|12|11|12|13|0 9|7|7|6|6|8|8|9|0 12|11|11|10|8|8|9|9|10|13|12|13|0 5|4|4|5|0 6|6|5|5|7|7|0 5|5|6|7|6|7|0 5|5|6|7|6|7|0 12|11|11|10|8|8|9|9|10|13|12|13|0 5|5|6|7|6|7|0 5|5|6|7|6|7|0 5|4|4|5|0 9|8|7|6|6|7|8|9|0 7|6|5|5|6|7|0 5|5|6|7|6|7|0 8|8|9|7|7|11|10|9|10|11|0 5|5|6|7|6|7|0 7|6|5|5|6|7|0 4|4|5|5|0 5|5|6|7|6|7|0 7|7|6|6|9|8|8|9|0 7|5|5|6|6|7|0 4|4|5|5|0 7|6|5|5|6|7|0 7|6|5|5|6|7|0 7|6|5|5|6|7|0 5|4|4|5|0 9|8|7|6|6|7|8|9|0 7|6|5|5|6|7|0 5|4|4|5|0 6|6|5|5|7|7|0 7|7|6|6|9|8|8|9|0 5|5|6|7|6|7|0 5|4|4|5|0 4|4|5|5|0 9|8|6|6|7|7|8|9|0 5|4|4|5|0 7|7|6|6|9|8|8|9|0 7|6|5|5|6|7|0 7|5|5|6|6|7|0 4|4|5|5|0 7|6|5|5|6|7|0 3|3|0 7|6|5|5|6|7|0 5|4|4|5|0 7|6|5|5|6|7|0 3|3|0 5|5|6|7|6|7|0 5|4|4|5|0 10|9|9|7|7|8|8|11|10|11|0 5|4|4|5|0 5|5|6|7|6|7|0 5|5|6|7|6|7|0 7|5|5|6|6|7|0 7|6|6|8|9|7|8|9|0 4|4|5|5|0 4|4|5|5|0 4|4|5|5|0 9|7|7|6|6|8|8|9|0 7|5|5|6|6|7|0 7|5|5|6|6|7|0 5|4|4|5|0 7|6|5|5|6|7|0 3|3|0 7|6|5|5|6|7|0 5|5|6|7|6|7|0 14|14|15|16|12|12|10|10|11|11|13|13|17|15|16|17|0 12|11|11|8|8|9|10|9|10|13|12|13|0 7|6|5|5|6|7|0 9|8|8|7|7|11|10|9|10|11|0 6|5|5|7|6|7|0 8|7|7|9|10|11|8|9|10|11|0 9|7|7|6|6|8|8|9|0 7|6|5|5|6|7|0 5|5|6|7|6|7|0 6|5|5|7|6|7|0 7|6|5|5|6|7|0 7|6|5|5|6|7|0 4|4|5|5|0 5|4|4|5|0 4|4|5|5|0 3|3|0 6|5|5|7|6|7|0 5|5|6|7|6|7|0 3|3|0 6|6|5|5|7|7|0 3|3|0 6|5|5|7|6|7|0 4|4|5|5|0 9|8|6|6|7|7|8|9|0 5|4|4|5|0 8|7|7|6|6|9|8|9|0 12|11|11|10|8|8|9|9|10|13|12|13|0 9|7|7|6|6|8|8|9|0 7|6|5|5|6|7|0 7|7|6|6|9|8|8|9|0 5|4|4|5|0 5|4|4|5|0 3|3|0 3|3|0 7|5|5|6|6|7|0 7|5|5|6|6|7|0 7|6|5|5|6|7|0 5|4|4|5|0 41|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 62|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 8|8|7|6|6|7|9|9|0 ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/datasetSentences.txt ================================================ sentence_index sentence 1 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 . 2 The 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 . 3 Effective but too-tepid biopic 4 If you sometimes like to go to the movies to have fun , Wasabi is a good place to start . 5 Emerges as something rare , an issue movie that 's so honest and keenly observed that it does n't feel like one . 6 The film provides some great insight into the neurotic mindset of all comics -- even those who have reached the absolute top of the game . 7 Offers that rare combination of entertainment and education . 8 Perhaps no picture ever made has more literally showed that the road to hell is paved with good intentions . 9 Steers turns in a snappy screenplay that curls at the edges ; it 's so clever you want to hate it . 10 But he somehow pulls it off . 11 Take Care of My Cat offers a refreshingly different slice of Asian cinema . 12 This is a film well worth seeing , talking and singing heads and all . 13 What really surprises about Wisegirls is its low-key quality and genuine tenderness . 14 -LRB- Wendigo is -RRB- why we go to the cinema : to be fed through the eye , the heart , the mind . 15 One of the greatest family-oriented , fantasy-adventure movies ever . 16 Ultimately , it ponders the reasons we need stories so much . 17 An utterly compelling ` who wrote it ' in which the reputation of the most famous author who ever lived comes into question . 18 Illuminating if overly talky documentary . 19 A masterpiece four years in the making . 20 The movie 's ripe , enrapturing beauty will tempt those willing to probe its inscrutable mysteries . 21 Offers a breath of the fresh air of true sophistication . 22 A thoughtful , provocative , insistently humanizing film . 23 With 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 . 24 A disturbing and frighteningly evocative assembly of imagery and hypnotic music composed by Philip Glass . 25 Not for everyone , but for those with whom it will connect , it 's a nice departure from standard moviegoing fare . 26 Scores a few points for doing what it does with a dedicated and good-hearted professionalism . 27 Occasionally melodramatic , it 's also extremely effective . 28 An idealistic love story that brings out the latent 15-year-old romantic in everyone . 29 At about 95 minutes , Treasure Planet maintains a brisk pace as it races through the familiar story . 30 However , it lacks grandeur and that epic quality often associated with Stevenson 's tale as well as with earlier Disney efforts . 31 It helps that Lil Bow Wow ... tones down his pint-sized gangsta act to play someone who resembles a real kid . 32 Guaranteed to move anyone who ever shook , rattled , or rolled . 33 A masterful film from a master filmmaker , unique in its deceptive grimness , compelling in its fatalist worldview . 34 Light , cute and forgettable . 35 If 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 . 36 While 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 . 37 Though everything might be literate and smart , it never took off and always seemed static . 38 Cantet perfectly captures the hotel lobbies , two-lane highways , and roadside cafes that permeate Vincent 's days 39 Ms. Fulford-Wierzbicki is almost spooky in her sulky , calculating Lolita turn . 40 Though 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 . 41 Like most Bond outings in recent years , some of the stunts are so outlandish that they border on being cartoonlike . 42 A heavy reliance on CGI technology is beginning to creep into the series . 43 Newton draws our attention like a magnet , and acts circles around her better known co-star , Mark Wahlberg . 44 The story loses its bite in a last-minute happy ending that 's even less plausible than the rest of the picture . 45 Much of the way , though , this is a refreshingly novel ride . 46 Fuller would surely have called this gutsy and at times exhilarating movie a great yarn . 47 The film makes a strong case for the importance of the musicians in creating the Motown sound . 48 Karmen moves like rhythm itself , her lips chanting to the beat , her long , braided hair doing little to wipe away the jeweled beads of sweat . 49 Gosling provides an amazing performance that dwarfs everything else in the film . 50 A real movie , about real people , that gives us a rare glimpse into a culture most of us do n't know . 51 Tender yet lacerating and darkly funny fable . 52 May 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 . 53 An engaging overview of Johnson 's eccentric career . 54 In its ragged , cheap and unassuming way , the movie works . 55 Some actors have so much charisma that you 'd be happy to listen to them reading the phone book . 56 Hugh Grant and Sandra Bullock are two such likeable actors . 57 Sandra Nettelbeck beautifully orchestrates the transformation of the chilly , neurotic , and self-absorbed Martha as her heart begins to open . 58 Behind the snow games and lovable Siberian huskies -LRB- plus one sheep dog -RRB- , the picture hosts a parka-wrapped dose of heart . 59 Everytime you think Undercover Brother has run out of steam , it finds a new way to surprise and amuse . 60 Manages to be original , even though it rips off many of its ideas . 61 Singer\/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 . 62 You 'd think by now America would have had enough of plucky British eccentrics with hearts of gold . 63 Yet the act is still charming here . 64 Whether 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 . 65 A pleasant enough movie , held together by skilled ensemble actors . 66 This is the best American movie about troubled teens since 1998 's Whatever . 67 Disney has always been hit-or-miss when bringing beloved kids ' books to the screen ... Tuck Everlasting is a little of both . 68 Just the labour involved in creating the layered richness of the imagery in this chiaroscuro of madness and light is astonishing . 69 The animated subplot keenly depicts the inner struggles of our adolescent heroes - insecure , uncontrolled , and intense . 70 The invincible Werner Herzog is alive and well and living in LA 71 Morton is a great actress portraying a complex character , but Morvern Callar grows less compelling the farther it meanders from its shocking start . 72 Part of the charm of Satin Rouge is that it avoids the obvious with humour and lightness . 73 Son of the Bride may be a good half-hour too long but comes replete with a flattering sense of mystery and quietness . 74 A simmering psychological drama in which the bursts of sudden violence are all the more startling for the slow buildup that has preceded them . 75 A taut , intelligent psychological drama . 76 A truly moving experience , and a perfect example of how art -- when done right -- can help heal , clarify , and comfort . 77 This delicately observed story , deeply felt and masterfully stylized , is a triumph for its maverick director . 78 At heart the movie is a deftly wrought suspense yarn whose richer shadings work as coloring rather than substance . 79 The appearance of Treebeard and Gollum 's expanded role will either have you loving what you 're seeing , or rolling your eyes . 80 I loved it ! 81 Gollum 's ` performance ' is incredible ! 82 a screenplay more ingeniously constructed than `` Memento '' 83 If this movie were a book , it would be a page-turner , you ca n't wait to see what happens next . 84 Haneke challenges us to confront the reality of sexual aberration . 85 Absorbing and disturbing -- perhaps more disturbing than originally intended -- but a little clarity would have gone a long way . 86 It 's the best film of the year so far , the benchmark against which all other Best Picture contenders should be measured . 87 Painful to watch , but viewers willing to take a chance will be rewarded with two of the year 's most accomplished and riveting film performances . 88 This is a startling film that gives you a fascinating , albeit depressing view of Iranian rural life close to the Iraqi border . 89 A few artsy flourishes aside , Narc is as gritty as a movie gets these days . 90 While The Isle is both preposterous and thoroughly misogynistic , its vistas are incredibly beautiful to look at . 91 Together , Tok and O orchestrate a buoyant , darkly funny dance of death . 92 In the process , they demonstrate that there 's still a lot of life in Hong Kong cinema . 93 Director 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 . 94 The movie is a blast of educational energy , as bouncy animation and catchy songs escort you through the entire 85 minutes . 95 A sports movie with action that 's exciting on the field and a story you care about off it . 96 Doug 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 . 97 The tenderness of the piece is still intact . 98 Katz 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 99 Like the film 's almost anthropologically detailed realization of early - '80s suburbia , it 's significant without being overstated . 100 While 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 . 101 If nothing else , this movie introduces a promising , unusual kind of psychological horror . 102 In a normal screen process , these bromides would be barely enough to sustain an interstitial program on the Discovery Channel . 103 But in Imax 3-D , the clichés disappear into the vertiginous perspectives opened up by the photography . 104 Writer-director Burger imaginatively fans the embers of a dormant national grief and curiosity that has calcified into chronic cynicism and fear . 105 ... a roller-coaster ride of a movie 106 I enjoyed Time of Favor while I was watching it , but I was surprised at how quickly it faded from my memory . 107 Chicago is sophisticated , brash , sardonic , completely joyful in its execution . 108 Steve Irwin 's method is Ernest Hemmingway at accelerated speed and volume . 109 A refreshing Korean film about five female high school friends who face an uphill battle when they try to take their relationships into deeper waters . 110 On 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 . 111 The values that have held the Enterprise crew together through previous adventures and perils do so again-courage , self-sacrifice and patience under pressure . 112 If it 's possible for a sequel to outshine the original , then SL2 does just that . 113 A romantic comedy that operates by the rules of its own self-contained universe . 114 4 friends , 2 couples , 2000 miles , and all the Pabst Blue Ribbon beer they can drink - it 's the ultimate redneck road-trip . 115 The film is often filled with a sense of pure wonderment and excitement not often seen in today 's cinema du sarcasm 116 It 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 . 117 A feel-good picture in the best sense of the term . 118 Edited 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 . 119 A mostly intelligent , engrossing and psychologically resonant suspenser . 120 It '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 . 121 Hip-hop has a history , and it 's a metaphor for this love story . 122 In scope , ambition and accomplishment , Children of the Century ... takes Kurys ' career to a whole new level . 123 This 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 . 124 Between the drama of Cube ? 125 s personal revelations regarding what the shop means in the big picture , iconic characters gambol fluidly through the story , with charming results . 126 A gentle , compassionate drama about grief and healing . 127 Somewhere short of Tremors on the modern B-scene : neither as funny nor as clever , though an agreeably unpretentious way to spend ninety minutes . 128 Digital-video documentary about stand-up comedians is a great glimpse into a very different world . 129 Unlike most teen flicks , Swimming takes its time to tell its story , casts mostly little-known performers in key roles , and introduces some intriguing ambiguity . 130 An 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 . 131 `` Extreme Ops '' exceeds expectations . 132 Good fun , good action , good acting , good dialogue , good pace , good cinematography . 133 You Should Pay Nine Bucks for This : Because you can hear about suffering Afghan refugees on the news and still be unaffected . 134 Dramas like this make it human . 135 A thunderous ride at first , quiet cadences of pure finesse are few and far between ; their shortage dilutes the potency of otherwise respectable action . 136 Still , this flick is fun , and host to some truly excellent sequences . 137 It 's obviously struck a responsive chord with many South Koreans , and should work its magic in other parts of the world . 138 Run , do n't walk , to see this barbed and bracing comedy on the big screen . 139 A classy item by a legend who may have nothing left to prove but still has the chops and drive to show how its done . 140 It is nature against progress . 141 In Fessenden 's horror trilogy , this theme has proved important to him and is especially so in the finale . 142 It 's not exactly a gourmet meal but the fare is fair , even coming from the drive-thru . 143 This 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 . 144 Merely as a technical , logistical feat , Russian Ark marks a cinematic milestone . 145 -LRB- Schweiger is -RRB- talented and terribly charismatic , qualities essential to both movie stars and social anarchists . 146 It 's a great deal of sizzle and very little steak . 147 But what spectacular sizzle it is ! 148 ... In this incarnation its fizz is infectious . 149 An original gem about an obsession with time . 150 It will delight newcomers to the story and those who know it from bygone days . 151 Gloriously goofy -LRB- and gory -RRB- midnight movie stuff . 152 The film overcomes the regular minefield of coming-of-age cliches with potent doses of honesty and sensitivity . 153 If your senses have n't been dulled by slasher films and gorefests , if you 're a connoisseur of psychological horror , this is your ticket . 154 It 's a minor comedy that tries to balance sweetness with coarseness , while it paints a sad picture of the singles scene . 155 It is intensely personal and yet -- unlike Quills -- deftly shows us the temper of the times . 156 As 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 . 157 Like Mike does n't win any points for originality . 158 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 . 159 It '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 . 160 Far from perfect , but its heart is in the right place ... innocent and well-meaning . 161 A sad , superior human comedy played out on the back roads of life . 162 Waydowntown is by no means a perfect film , but its boasts a huge charm factor and smacks of originality . 163 Tim 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 . 164 More a load of enjoyable , Conan-esque claptrap than the punishing , special-effects soul assaults the Mummy pictures represent . 165 Enormously likable , partly because it is aware of its own grasp of the absurd . 166 Here 's a British flick gleefully unconcerned with plausibility , yet just as determined to entertain you . 167 It 's an old story , but a lively script , sharp acting and partially animated interludes make Just a Kiss seem minty fresh . 168 Must be seen to be believed . 169 Ray 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 . 170 Everything 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 . 171 The year 's happiest surprise , a movie that deals with a real subject in an always surprising way . 172 Fans of Behan 's work and of Irish movies in general will be rewarded by Borstal Boy . 173 Its mysteries are transparently obvious , and it 's too slowly paced to be a thriller . 174 -LRB- But it 's -RRB- worth recommending because of two marvelous performances by Michael Caine and Brendan Fraser . 175 The 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 . 176 Stephen Earnhart 's homespun documentary Mule Skinner Blues has nothing but love for its posse of trailer park denizens . 177 A solidly seaworthy chiller . 178 If 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 . 179 There 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 . 180 A well-made thriller with a certain level of intelligence and non-reactionary morality . 181 There 's enough science to make it count as educational , and enough beauty to make it unforgettable . 182 Remains a solid , if somewhat heavy-handed , account of the near-disaster ... done up by Howard with a steady , if not very imaginative , hand . 183 Makmalbaf follows a resolutely realistic path in this uncompromising insight into the harsh existence of the Kurdish refugees of Iran 's borderlands . 184 For a good chunk of its running time , Trapped is an effective and claustrophobic thriller . 185 Most of Crush is a clever and captivating romantic comedy with a welcome pinch of tartness . 186 Nair does capture the complexity of a big family and its trials and tribulations ... 187 The seaside splendor and shallow , beautiful people are nice to look at while you wait for the story to get going . 188 Rare is the ` urban comedy ' that even attempts the insight and honesty of this disarming indie . 189 Ranks among Willams ' best screen work . 190 Engagingly captures the maddening and magnetic ebb and flow of friendship . 191 An experience so engrossing it is like being buried in a new environment . 192 It 's traditional moviemaking all the way , but it 's done with a lot of careful period attention as well as some very welcome wit . 193 Maybe 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 . 194 A droll , well-acted , character-driven comedy with unexpected deposits of feeling . 195 This is simply the most fun you 'll ever have with a documentary ! 196 A very funny movie . 197 Watching Haneke 's film is , aptly enough , a challenge and a punishment . 198 But watching Huppert , a great actress tearing into a landmark role , is riveting . 199 A cop story that understands the medium amazingly well . 200 Britney 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 . 201 Those outside show business will enjoy a close look at people they do n't really want to know . 202 The kind of nervous film that will either give you a mild headache or exhilarate you . 203 Watching 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 . 204 Children may not understand everything that happens -- I 'm not sure even Miyazaki himself does -- but they will almost certainly be fascinated , and undoubtedly delighted . 205 A fascinating and fun film . 206 Tadpole is a sophisticated , funny and good-natured treat , slight but a pleasure . 207 This 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 . 208 I admired this work a lot . 209 Whether you 're moved and love it , or bored or frustrated by the film , you 'll still feel something . 210 ... there are enough moments of heartbreaking honesty to keep one glued to the screen . 211 My goodness , Queen Latifah has a lot to offer and she seemed to have no problem flaunting her natural gifts . 212 She must have a very strong back . 213 A smart , sweet and playful romantic comedy . 214 Australian actor\/director John Polson and award-winning English cinematographer Giles Nuttgens make a terrific effort at disguising the obvious with energy and innovation . 215 Without heavy-handedness , Dong provides perspective with his intelligent grasp of human foibles and contradictions . 216 Solid , lump-in-the-throat family entertainment that derives its power by sticking to the facts . 217 As an entertainment , the movie keeps you diverted and best of all , it lightens your wallet without leaving a sting . 218 It is interesting and fun to see Goodall and her chimpanzees on the bigger-than-life screen . 219 It 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 . 220 A somewhat crudely constructed but gripping , questing look at a person so racked with self-loathing , he becomes an enemy to his own race . 221 It extends the writings of Jean Genet and John Rechy , the films of Fassbinder , perhaps even the nocturnal works of Goya . 222 Narc may not get an ` A ' for originality , but it wears its B-movie heritage like a badge of honor . 223 With the film 's striking ending , one realizes that we have a long way to go before we fully understand all the sexual permutations involved . 224 -LRB- Drumline -RRB- is entertaining for what it does , and admirable for what it does n't do . 225 At its best early on as it plays the culture clashes between the brothers . 226 An unabashedly schmaltzy and thoroughly enjoyable true story . 227 A thoughtful look at a painful incident that made headlines in 1995 . 228 You walk out of The Good Girl with mixed emotions -- disapproval of Justine combined with a tinge of understanding for her actions . 229 Tsai Ming-liang has taken his trademark style and refined it to a crystalline point . 230 Purely 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 . 231 Now trimmed by about 20 minutes , this lavish three-year-old production has enough grandeur and scale to satisfy as grown-up escapism . 232 We get some truly unique character studies and a cross-section of Americana that Hollywood could n't possibly fictionalize and be believed . 233 Though this film can be clumsy , its ambitions are equally -- and admirably -- uncommercial . 234 Daring , mesmerizing and exceedingly hard to forget . 235 Moore 's performance impresses almost as much as her work with Haynes in 1995 's Safe . 236 Visits 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 . 237 An absorbing , slice-of-depression life that touches nerves and rings true . 238 Mr. 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 . 239 The result is something quite fresh and delightful . 240 All but the most persnickety preteens should enjoy this nonthreatening but thrilling adventure . 241 Despite its many infuriating flaws -- not the least of which is Amy 's self-absorbed personality -- Amy 's O 's honesty will win you over . 242 This is one of Polanski 's best films . 243 Day 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 . 244 Polished Korean political-action film is just as good -- and bad -- as Hollywood action epics . 245 Is this progress ? 246 Elling , 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 . 247 Denis and co-writer Michele Petin 's impeccable screenplay penetrates with a rawness that that is both unflinching and tantalizing . 248 Lead provocatuers Testud and Parmentier give superlative performances 249 An 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 . 250 I admired it , particularly that unexpected downer of an ending . 251 The 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 . 252 Remarkably accessible and affecting . 253 Never mind whether you buy the stuff about Barris being a CIA hit man . 254 The kooky yet shadowy vision Clooney sustains throughout is daring , inventive and impressive . 255 A triumph of art direction over narrative , but what art direction ! 256 Behan 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 . 257 Jirí Hubac 's script is a gem . 258 His characters are engaging , intimate and the dialogue is realistic and greatly moving . 259 The scope of the Silberstein family is large and we grow attached to their lives , full of strength , warmth and vitality . . 260 Moore '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 . 261 The additional storyline is interesting and entertaining , but it does n't have the same magical quality as the beginning of the story . 262 I like the new footage and still love the old stuff . 263 Though 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 . 264 You might not buy the ideas . 265 But you 'll definitely want the T-shirt . 266 Provides an intriguing window into the imagination and hermetic analysis of Todd Solondz . 267 Windtalkers 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 . 268 Presents an astute appraisal of Middle American musical torpor and the desperate struggle to escape it . 269 Just what makes us happy , anyway ? 270 A thoughtful , moving piece that faces difficult issues with honesty and beauty . 271 One of the greatest romantic comedies of the past decade . 272 You 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 . 273 Benefits from a strong performance from Zhao , but it 's Dong Jie 's face you remember at the end . 274 This 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 . 275 The director , Steven Shainberg , has succeeded by focusing intently on his characters , making them quirky individuals rather than figures of fun . 276 It ultimately stands forth as an important chronicle of the abuses of one of Latin America 's most oppressive regimes . 277 The movie has a soft , percolating magic , a deadpan suspense . 278 A well-made and often lovely depiction of the mysteries of friendship . 279 Using 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 . 280 ... understands that a generation defines its music as much as the music defines a generation . 281 The Transporter is as lively and as fun as it is unapologetically dumb 282 As 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 . 283 Has it ever been possible to say that Williams has truly inhabited a character ? 284 It is now . 285 By 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 . 286 An impressive debut for first-time writer-director Mark Romanek , especially considering his background is in music video . 287 An incendiary , deeply thought-provoking look at one of the most peculiar -LRB- and peculiarly venomous -RRB- bigotries in our increasingly frightening theocracy 288 All 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 . 289 `` its successes are also tempered with elements which prove the direct antithesis of what it gets right . '' 290 It 's solid and affecting and exactly as thought-provoking as it should be . 291 This is such a dazzlingly self-assured directorial debut that it 's hard to know what to praise first . 292 Parker 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 . 293 Münch 's genuine insight makes the film 's occasional overindulgence forgivable . 294 Thankfully , 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 . 295 Ultimately , the message of Trouble Every Day seems to be that all sexual desire disrupts life 's stasis . 296 If 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 . 297 The film has just enough of everything -- re-enactments , archival footage , talking-head interviews -- and the music is simply sublime . 298 There 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 . 299 A wonderful character-based comedy . 300 It would be interesting to hear from the other side , but in Talk to Her , the women are down for the count . 301 An endearingly offbeat romantic comedy with a great meet-cute gimmick . 302 The unique tug-of-war with viewer expectations is undeniable , if not a pleasure in its own right . 303 It 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 . 304 It 's almost impossible not to be moved by the movie 's depiction of sacrifice and its stirring epilogue in post-Soviet Russia . 305 Who 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 . 306 The tone is balanced , reflective and reasonable . 307 The principals in this cast are all fine , but Bishop and Stevenson are standouts . 308 It 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 . 309 What 's most striking about this largely celebratory film ... is the sense of isolation that permeates these bastions of individuality in an Ikea world . 310 ... if you 're in a mind set for goofy comedy , the troopers will entertain with their gross outs , bawdy comedy and head games . 311 Somewhat blurred , but Kinnear 's performance is razor sharp . 312 As a director , Mr. Ratliff wisely rejects the temptation to make fun of his subjects . 313 For anyone who remembers the '60s or is interested in one man 's response to stroke , Ram Dass : Fierce Grace is worth seeking out . 314 Intriguing and beautiful film , but those of you who read the book are likely to be disappointed . 315 The New Guy does have a heart . 316 Now , if it only had a brain . 317 A savvy exploration of paranoia and insecurity in America 's culture of fear . 318 Legendary Irish writer Brendan Behan 's memoir , Borstal Boy , has been given a loving screen transferral . 319 The film 's greatest asset is how much it 's not just another connect-the-dots , spy-on-the-run picture . 320 This clever caper movie has twists worthy of David Mamet and is enormous fun for thinking audiences . 321 It 's one of the saddest films I have ever seen that still manages to be uplifting but not overly sentimental . 322 Morton is , as usual , brilliant . 323 Even with all those rough edges safely sanded down , the American Insomnia is still pretty darned good . 324 I 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 . 325 The tug of war that ensues is as much a snapshot of modern China in microcosm as it is a crash course in movie mythology . 326 Nearly surreal , dabbling in French , this is no simple movie , and you 'll be taking a risk if you choose to see it . 327 I enjoyed the ride -LRB- bumps and all -RRB- , creamy depth , and ultimate theme . 328 You 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 . 329 Asia authors herself as Anna Battista , an Italian superstar and aspiring directress who just happens to be her own worst enemy . 330 Roman Coppola may never become the filmmaker his Dad was , but heck -- few filmmakers will . 331 But based on CQ , I 'll certainly be keeping an eye out for his next project . 332 An amusing , breezily apolitical documentary about life on the campaign trail . 333 High on melodrama . 334 But it 's emotionally engrossing , too , thanks to strong , credible performances from the whole cast . 335 Finally , a genre movie that delivers -- in a couple of genres , no less . 336 It '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 . 337 Spielberg is the rare director who does not want to invite viewers to gawk at or applaud his special effects . 338 He just wants them to be part of the action , the wallpaper of his chosen reality . 339 Here , thankfully , they are . 340 Post 9\/11 the philosophical message of `` Personal Freedom First '' might not be as palatable as intended . 341 Hu and Liu offer natural , matter-of-fact performances that glint with sorrow , longing and love . 342 This 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 . 343 Easier to respect than enthuse over , Andersson 's rigorous personal vision is not only distanced but distancing . 344 Girls gone wild and gone civil again 345 ... Tunney is allowed to build an uncommonly human character , an almost real-live girl complete with trouble and hope . 346 While this film is not in the least surprising , it is still ultimately very satisfying . 347 Think of it as a sort of comfort food for the mind . 348 Clever , brutal and strangely soulful movie . 349 ... always remains movingly genuine . 350 An intelligent fiction about learning through cultural clash . 351 Will grab your children by the imagination and amaze them and amuse them . 352 A remarkable 179-minute meditation on the nature of revolution . 353 Those who would follow Haneke on his creepy explorations ... are rewarded by brutal , committed performances from Huppert and Magimel . 354 An involving true story of a Chinese actor who takes up drugs and winds up in an institution -- acted mostly by the actual people involved . 355 Hands down the year 's most thought-provoking film . 356 But it pays a price for its intricate intellectual gamesmanship . 357 It 's a terrific American sports movie and Dennis Quaid is its athletic heart . 358 This is such a high-energy movie where the drumming and the marching are so excellent , who cares if the story 's a little weak . 359 Compelling revenge thriller , though somewhat weakened by a miscast leading lady . 360 It 's amazingly perceptive in its subtle , supportive but unsentimental look at the Marks family . 361 A whole lot foul , freaky and funny . 362 Attal mixes comedy with a serious exploration of ego and jealousy within a seemingly serene marriage . 363 The 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 . 364 The Pianist is a fine valedictory work for Polanski , made richer by his own experiences , making his other movies somehow richer in the bargain . 365 Foster nails the role , giving a tight , focused performance illuminated by shards of feeling . 366 Even if you ca n't pronounce `` gyro '' correctly , you 'll appreciate much of Vardalos ' humor , which transcends ethnic boundaries . 367 Is office work really as alienating as ` Bartleby ' so effectively makes it ? 368 Farrell ... thankfully manages to outshine the role and successfully plays the foil to Willis 's world-weary colonel . 369 Audiences 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 . 370 Bennett 's dramatization of her personal descent into post-breakup perdition has a morbid appeal that 's tough to shake . 371 An intriguing and entertaining introduction to Johnson . 372 As expected , Sayles ' smart wordplay and clever plot contrivances are as sharp as ever , though they may be overshadowed by some strong performances . 373 A model of what films like this should be like . 374 As 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 . 375 Yeah , these flicks are just that damn good . 376 Is n't it great ? 377 An unbelievably fun film just a leading man away from perfection . 378 Over-the-top and a bit ostentatious , this is a movie that 's got oodles of style and substance . 379 ... a poignant and powerful narrative that reveals that reading writing and arithmetic are not the only subjects to learn in life . 380 Nicely serves as an examination of a society in transition . 381 A 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 . 382 As 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 . 383 Absorbing character study by André Turpin . 384 Celebrated at Sundance , this slight comedy of manners has winning performances and a glossy , glib charm that 's hard to beat . 385 Renner 's performance as Dahmer is unforgettable , deeply absorbing . 386 If no one singles out any of these performances as award-worthy , it 's only because we would expect nothing less from this bunch . 387 If you love reading and\/or poetry , then by all means check it out . 388 You 'll probably love it . 389 Though 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 . 390 Energetic and boldly provocative . 391 Star Wars is back in a major way . 392 It 's a movie -- and an album -- you wo n't want to miss . 393 It '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 . 394 While not all transitions to adulthood are so fraught , there 's much truth and no small amount of poetry in Girls Ca n't Swim . 395 If 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 . 396 Jacquot 's Tosca is a treat . 397 By the end of No Such Thing the audience , like Beatrice , has a watchful affection for the monster . 398 If 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 . 399 ... the gentle melding of drama and comedy makes `` What Time Is It There ? '' 400 something the true film buff will enjoy . 401 Romanek keeps the film constantly taut ... reflecting the character 's instability with a metaphorical visual style and an unnerving , heartbeat-like score . 402 I whole-heartedly recommend that everyone see this movie -- for its historical significance alone . 403 Hey , who else needs a shower ? 404 Longley has constructed a remarkably coherent , horrifically vivid snapshot of those turbulent days . 405 Although it bangs a very cliched drum at times , this crowd-pleaser 's fresh dialogue , energetic music , and good-natured spunk are often infectious . 406 Often gruelling and heartbreaking to witness , but Seldahl and Wollter 's sterling performances raise this far above the level of the usual maudlin disease movie . 407 Go see it and enjoy . 408 The stunning , dreamlike visuals will impress even those viewers who have little patience for Euro-film pretension . 409 George 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 . 410 There 's a vastness implied in Metropolis that is just breathtaking . 411 Murderous Maids may well be the most comprehensive of these films and also strike closest to the truth . 412 The 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 . 413 As green-guts monster movies go , it 's a beaut . 414 As Bundy , Michael Reilly Burke -LRB- Octopus 2 : River of Fear -RRB- has just the right amount of charisma and menace . 415 A deceivingly simple film , one that grows in power in retrospect . 416 Ana is a vivid , vibrant individual and the movie 's focus upon her makes it successful and accessible . 417 A slick , skillful little horror film . 418 A very witty take on change , risk and romance , and the film uses humour to make its points about acceptance and growth . 419 -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 . 420 Bubba 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 . 421 despite the long running time , the pace never feels slack -- there 's no scene that screams `` bathroom break ! '' 422 Bullock does a good job here of working against her natural likability . 423 A film of precious increments artfully camouflaged as everyday activities . 424 Kinnear gives a tremendous performance . 425 The best movie of its kind since ` Brazil . ' 426 Lucas , take notes . 427 This is how you use special effects . 428 `` Frailty '' has been written so well , that even a simple `` Goddammit ! '' 429 near the end takes on a whole other meaning . 430 One 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 . 431 Kaufman creates an eerie sense of not only being there at the time of these events but the very night Matthew was killed . 432 Chalk 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 . 433 Its 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 . 434 It represents better-than-average movie-making that does n't demand a dumb , distracted audience . 435 A charming yet poignant tale of the irrevocable ties that bind . 436 An enchanting spectacular for Potter fans anxious to ride the Hogwarts Express toward a new year of magic and mischief . 437 The talents of the actors helps `` Moonlight Mile '' rise above its heart-on-its-sleeve writing . 438 It 's a humble effort , but spiced with wry humor and genuine pathos , especially between Morgan and Redgrave . 439 This 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 . 440 Dark and disturbing , but also surprisingly funny . 441 The movie has an avalanche of eye-popping visual effects . 442 Starts off with a bang , but then fizzles like a wet stick of dynamite at the very end . 443 It 's still worth a look . 444 Most impressive , though , is the film 's open-ended finale that refuses to entirely close its characters ' emotional wounds . 445 A hip ride into hyper-time , Clockstoppers is a lively and enjoyable adventure for all ages at any time . 446 Grenier is terrific , bringing an unforced , rapid-fire delivery to Toback 's Heidegger - and Nietzsche-referencing dialogue . 447 ... a polished and relatively sincere piece of escapism . 448 The 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 . 449 The 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 . 450 ... has freaky scenes where the crew wonder if they 're ghosts imagining themselves as alive . 451 It 's a sly wink to The Others without becoming a postmodern joke , made creepy by its `` men in a sardine can '' warped logic . 452 Long after you leave Justine , you 'll be wondering what will happen to her and wishing her the best -- whatever that might mean . 453 Still pretentious and filled with subtext , but entertaining enough at ` face value ' to recommend to anyone looking for something different . 454 Call me a wimp , but I cried , not once , but three times in this animated sweet film . 455 Notorious C.H.O. has oodles of vulgar highlights . 456 An 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 . 457 The level of maturity displayed by this 33-year-old first-time feature director is astonishing , considering her inexperience and her subject matter . 458 A splendid entertainment , young in spirit but accomplished in all aspects with the fullness of spirit and sense of ease that comes only with experience . 459 Disney 's live-action division has a history of releasing cinematic flotsam , but this is one occasion when they have unearthed a rare gem . 460 If the message seems more facile than the earlier films , the images have such a terrible beauty you may not care . 461 Whether 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 . 462 There are moments in this account of the life of artist Frida Kahlo that are among cinema 's finest this year . 463 Unfortunately , they 're sandwiched in between the most impossibly dry account of Kahlo 's life imaginable . 464 There are moments it can be heart-rending in an honest and unaffected -LRB- and gentle -RRB- way . 465 Stay clear of reminding yourself that it 's a `` true story '' and you 're likely to have one helluva time at the movies . 466 There are just enough twists in the tale to make it far more satisfying than almost any horror film in recent memory . 467 The Sundance Film Festival has become so buzz-obsessed that fans and producers descend upon Utah each January to ferret out The Next Great Thing . 468 ` Tadpole ' was one of the films so declared this year , but it 's really more of The Next Pretty Good Thing . 469 Working from Elliott 's memoir , Rohmer fashions the sort of delicate , articulate character - and - relationship study he 's favored for decades . 470 The story feels more like a serious read , filled with heavy doses of always enticing Sayles dialogue . 471 When it really counts ... Bloody Sunday connects on a visceral level that transcends language . 472 The crime matters less than the characters , although the filmmakers supply enough complications , close calls and double-crosses to satisfy us . 473 The actors are fantastic . 474 They are what makes it worth the trip to the theatre . 475 Ranging from funny to shattering and featuring some of the year 's best acting , Personal Velocity gathers plenty of dramatic momentum . 476 I 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 . 477 Recalls quiet freak-outs like L'Avventura and Repulsion . 478 Only 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 . 479 ... 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 . 480 A great comedy filmmaker knows great comedy need n't always make us laugh . 481 Tim Story 's not there yet - but ` Barbershop ' shows he 's on his way . 482 The movie is one of the best examples of artful Large Format filmmaking you are likely to see anytime soon . 483 Lends 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 . 484 Well-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 . 485 Jason X has cheesy effects and a hoary plot , but its macabre , self-deprecating sense of humor makes up for a lot . 486 -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 . 487 This is n't a new idea . 488 It 's been done before but never so vividly or with so much passion . 489 An impressive if flawed effort that indicates real talent . 490 Two generations within one family test boundaries in this intelligent and restrained coming-of-age drama . 491 it sounds sick and twisted , but the miracle of Shainberg 's film is that it truly is romance 492 Disturbing and brilliant documentary . 493 ... mesmerizing , an eye-opening tour of modern Beijing culture in a journey of rebellion , retreat into oblivion and return . 494 One 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 . 495 Not too far below the gloss you can still feel director Denis Villeneuve 's beating heart and the fondness he has for his characters . 496 As if to prove a female director can make a movie with no soft edges , Kathryn Bigelow offers no sugar-coating or interludes of lightness . 497 Her film is unrelentingly claustrophobic and unpleasant . 498 -LRB- Villeneuve -RRB- seems to realize intuitively that even morality is reduced to an option by the ultimate mysteries of life and death . 499 The result is mesmerizing -- filled with menace and squalor . 500 Fisher has bared his soul and confronted his own shortcomings here in a way ... that feels very human and very true to life . 501 It 's fun , but the code-talk will fly right over everyone 's head 502 Bourne , Jason Bourne . 503 He can scale a building like a super hero , he can out-stealth any agent , he 'll get the girl . 504 He 's Super Spy ! 505 What makes the movie a comedy is the way it avoids the more serious emotions involved . 506 This cuddly sequel to the 1999 hit is a little more visually polished , a little funnier , and a little more madcap . 507 The pleasures of Super Troopers may be fleeting , but they 'll register strongly with anybody who still retains a soft spot for precollegiate humor . 508 The film is exhilarating to watch because Sandler , liberated from the constraints of formula , reveals unexpected depths as an actor . 509 A distant , even sterile , yet compulsively watchable look at the sordid life of Hogan 's Heroes star Bob Crane . 510 The 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 . 511 What might have been a predictably heartwarming tale is suffused with complexity . 512 Sound the trumpets : For the first time since Desperately Seeking Susan , Madonna does n't suck as an actress . 513 Although 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 . 514 -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 . 515 As the story moves inexorably through its seven day timeframe , the picture becomes increasingly mesmerizing . 516 Maguire is a surprisingly effective Peter\/Spider-Man . 517 Not a cozy or ingratiating work , but it 's challenging , sometimes clever , and always interesting , and those are reasons enough to see it . 518 The film runs on equal parts of innocence and wisdom -- wisdom that comes with experience . 519 It has fun being grown up . 520 Like old myths and wonder tales spun afresh . 521 Rarely do films come along that are as intelligent , exuberant , and moving as Monsoon Wedding . 522 One scarcely needs the subtitles to enjoy this colorful action farce . 523 Quite funny for the type of movie it is ... 524 It '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 . 525 One of -LRB- Herzog 's -RRB- least inspired works . 526 This 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 . 527 Elling really is about a couple of crazy guys , and it 's therapeutic to laugh along with them . 528 An irresistible combination of a rousing good story set on a truly grand scale . 529 There 's no denying the physically spectacular qualities of the film ... or the emotional integrity of the performances . 530 Few films this year have been as resolute in their emotional nakedness . 531 Exquisitely acted and masterfully if preciously interwoven ... -LRB- the film -RRB- addresses in a fascinating , intelligent manner the intermingling of race , politics and local commerce . 532 Stevenson 's performance is at once clueless and fiercely committed , a volatile combination . 533 This is a very fine movie -- go see it . 534 As shaky as the plot is , Kaufman 's script is still memorable for some great one-liners . 535 Despite its flaws , Secretary stays in your head and makes you question your own firmly held positions . 536 One of those rare , exhilarating cinematic delights that gets even better in hindsight , as you mull over its every nuance in your mind . 537 Not everything works , but the average is higher than in Mary and most other recent comedies . 538 A byzantine melodrama that stimulates the higher brain functions as well as the libido . 539 A sensitive and expertly acted crowd-pleaser that is n't above a little broad comedy and a few unabashedly sentimental tears . 540 The film 's sharp , often mischievous sense of humor will catch some off guard ... 541 Does 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 . 542 Almost every scene in this film is a gem that could stand alone , a perfectly realized observation of mood , behavior and intent . 543 A psychologically rich and suspenseful moral thriller with a stellar performance by Al Pacino . 544 You 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 . 545 This version 's no classic like its predecessor , but its pleasures are still plentiful . 546 The Bourne Identity is what summer screen escapism used to be in the decades when it was geared more to grownups . 547 Provide -LRB- s -RRB- nail-biting suspense and credible characters without relying on technology-of-the-moment technique or pretentious dialogue . 548 If it tried to do anything more , it would fail and perhaps explode , but at this level of manic whimsy , it is just about right . 549 Too sincere to exploit its subjects and too honest to manipulate its audience . 550 The saturation bombing of Reggio 's images and Glass ' evocative music ... ultimately leaves viewers with the task of divining meaning . 551 For 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 . 552 A 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 . 553 This road movie gives you emotional whiplash , and you 'll be glad you went along for the ride . 554 Sure , it 's more of the same , but as the film proves , that 's not always a bad thing . 555 A lighthearted , feel-good film that embraces the time-honored truth that the most powerful thing in life is love . 556 A bowel-curdling , heart-stopping recipe for terror . 557 Daughter 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 . 558 Zhang 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 . 559 ... breathes surprising new life into the familiar by amalgamating genres and adding true human complexity to its not-so-stock characters . ' 560 ... 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 . ' 561 A pleasant romantic comedy . 562 It 's a Count for our times . 563 Greengrass has delivered an undoubted stylistic tour-de-force , and has managed elements such as sound and cinematography with skill 564 Smith '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 . 565 A romantic comedy , yes , but one with characters who think and talk about their goals , and are working on hard decisions . 566 Vividly conveys both the pitfalls and the pleasures of over-the-top love . 567 ... a weak , manipulative , pencil-thin story that is miraculously able to entertain anyway . 568 A pro-fat farce that overcomes much of its excessive moral baggage thanks to two appealing lead performances . 569 For the first two-thirds of this sparklingly inventive and artful , always fast and furious tale , kids will go happily along for the ride . 570 Majidi 's poetic love story is a ravishing consciousness-raiser , if a bit draggy at times . 571 The smartest bonehead comedy of the summer . 572 Effectively feeds our senses with the chilling sights and sounds from within the camp to create a completely numbing experience . 573 I love the way that it took chances and really asks you to take these great leaps of faith and pays off . 574 In his debut as a film director , Denzel Washington delivers a lean and engaging work . 575 Only two words will tell you what you know when deciding to see it : Anthony . 576 Hopkins . 577 The movie 's quiet affirmation of neighborhood values gives it an honest , lived-in glow . 578 A 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 . 579 Hayek is stunning as Frida and ... a star-making project . 580 It 's both a necessary political work and a fascinating documentary ... 581 Hilarious , acidic Brit comedy . 582 As a revenge thriller , the movie is serviceable , but it does n't really deliver the delicious guilty pleasure of the better film versions . 583 An ironic speculation on democracy in a culture unaccustomed to it . 584 It 's not life-affirming -- its vulgar and mean , but I liked it . 585 Several degrees shy of the gross-out contests one expects from current teen fare . 586 The inherent strength of the material as well as the integrity of the filmmakers gives this coming-of-age story restraint as well as warmth . 587 Led by Griffin 's smartly nuanced performance and enthusiasm , the cast has a lot of fun with the material . 588 Tuck Everlasting achieves a delicate balance of romantic innocence and philosophical depth . 589 A gentle blend of present day testimonials , surviving footage of Burstein and his family performing , historical archives , and telling stills . 590 A Generation X artifact , capturing a brief era of insanity in the sports arena that surely can not last . 591 Possession is Elizabeth Barrett Browning meets Nancy Drew , and it 's directed by ... Neil LaBute . 592 Hmm . 593 An uneven but intriguing drama that is part homage and part remake of the Italian masterpiece . 594 Windtalkers celebrates the human spirit and packs an emotional wallop . 595 Having never been a huge fan of Dickens ' 800-page novel , it surprised me how much pleasure I had watching McGrath 's version . 596 The best thing the film does is to show us not only what that mind looks like , but how the creative process itself operates . 597 For all its failed connections , Divine Secrets of the Ya-Ya Sisterhood is nurturing , in a gauzy , dithering way . 598 This is pretty dicey material . 599 But some unexpected zigs and zags help . 600 The filmmakers skillfully evoke the sense of menace that nature holds for many urban dwellers . 601 The laser-projected paintings provide a spell-casting beauty , while Russell and Dreyfus are a romantic pairing of hearts , preciously exposed as history corners them . 602 You do n't have to be an especially tough grader to give a charitable B-minus to The Emperor 's Club . 603 This romantic thriller is steeped in the atmosphere of wartime England , and ably captures the speech patterns , moral codes and ideals of the 1940s . 604 Divine 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 . 605 Viewed 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 . 606 A journey through memory , a celebration of living , and a sobering rumination on fatality , classism , and ignorance . 607 Resourceful and ingenious entertainment . 608 `` Antwone Fisher '' is an earnest , by-the-numbers effort by Washington . 609 It wo n't rock any boats but is solid meat-and-potatoes filmmaking . 610 A historical epic with the courage of its convictions about both scope and detail . 611 We need -LRB- Moore 's -RRB- noisy , cocky energy , his passion and class consciousness ; we need his shticks , we need his stones . 612 Although the editing might have been tighter , Hush ! 613 sympathetically captures the often futile lifestyle of young people in modern Japan . 614 -LRB- Gai -RRB- comes closer to any actress I can remember to personifying independence in its purest and , yes , most intimidating form . 615 These are lives worth watching , paths worth following . 616 It 's rather like a Lifetime special -- pleasant , sweet and forgettable . 617 A moody horror\/thriller elevated by deft staging and the director 's well-known narrative gamesmanship . 618 As a singular character study , it 's perfect . 619 It 's also the year 's sweetest movie . 620 A graceful , contemplative film that gradually and artfully draws us into a world where the personal and the political get fatally intertwined . 621 While not as aggressively impressive as its American counterpart , `` In the Bedroom , '' Moretti 's film makes its own , quieter observations 622 The experience of watching blobby old-school CGI animation in this superlarge format is just surreal enough to be diverting . 623 Time 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 624 `` The Emperor 's New Clothes '' begins with a simple plan ... Well , at least that 's the plan . 625 Haynes 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 . 626 -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 . 627 While the glass slipper does n't quite fit , Pumpkin is definitely a unique modern fairytale . 628 The drama is played out with such aching beauty and truth that it brings tears to your eyes . 629 An exciting and involving rock music doc , a smart and satisfying look inside that tumultuous world . 630 An offbeat , sometimes gross and surprisingly appealing animated film about the true meaning of the holidays . 631 This version incarnates the prophetic book in a way even its exacting author might admire . 632 Sometimes , nothing satisfies like old-fashioned swashbuckling . 633 And in this regard , On Guard delivers . 634 ... ambition is in short supply in the cinema , and Egoyan tackles his themes and explores his characters ' crises with seriousness and compassion . 635 An impossible romance , but we root for the patronized Iranian lad . 636 Like Dickens with his passages , McGrath crafts quite moving scenes throughout his resolutely dramatic variation on the novel . 637 There 's a disreputable air about the whole thing , and that 's what makes it irresistible . 638 an exceedingly clever piece of cinema . 639 another 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 640 A carefully structured scream of consciousness that is tortured and unsettling -- but unquestionably alive . 641 A quietly reflective and melancholy New Zealand film about an eventful summer in a 13-year-old girl 's life . 642 Cute , 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 . 643 very solid , very watchable first feature for director Peter Sheridan 644 a budget affair that exposes the generally sad existence of the Bedouins while providing a precious twinkle of insight into their lives . 645 It 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 . 646 Workmanlike , maybe , but still a film with all the elements that made the other three great , scary times at the movies . 647 A pleasant enough comedy that should have found a summer place . 648 Branagh , in his most forceful non-Shakespeare screen performance , grounds even the softest moments in the angry revolt of his wit . 649 Though the violence is far less sadistic than usual , the film is typical Miike : fast , furious and full of off-the-cuff imaginative flourishes . 650 Compelling as it is exotic , Fast Runner has a plot that rivals Shakespeare for intrigue , treachery and murder . 651 What it lacks in originality it makes up for in intelligence and B-grade stylishness . 652 The warm presence of Zhao Benshan makes the preposterous lying hero into something more than he reasonably should be . 653 This 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 . 654 Director Rob Marshall went out gunning to make a great one . 655 Skip work to see it at the first opportunity . 656 Bow 's best moments are when he 's getting busy on the basketball court because that 's when he really scores . 657 Offers enough playful fun to entertain the preschool set while embracing a wholesome attitude . 658 In the end , Punch-Drunk Love is one of those films that I wanted to like much more than I actually did . 659 Sometimes , that 's enough . 660 An intimate , good-humored ethnic comedy like numerous others but cuts deeper than expected . 661 Ice Cube holds the film together with an engaging and warm performance ... 662 Both deeply weird and charmingly dear . 663 As blunt as it is in depicting child abuse , El Bola is a movie steeped in an ambiguity that lends its conflicts a symbolic resonance . 664 Despite 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 . 665 An incredibly low-rent Danish film , it brings a group of people together in a sweet and charming way , if a little convenient 666 It 's the cinematic equivalent of a good page-turner , and even if it 's nonsense , its claws dig surprisingly deep . 667 Director Nalin Pan does n't do much to weigh any arguments one way or the other . 668 He simply presents his point of view that Ayurveda works . 669 No question . 670 What `` Empire '' lacks in depth it makes up for with its heart . 671 Claude Miller airs out a tight plot with an easy pace and a focus on character drama over crime-film complications . 672 What Full Frontal lacks in thematic coherence it largely makes up for as loosey-goosey , experimental entertainment . 673 Still , I 'm not quite sure what the point is ... 674 Rich in detail , gorgeously shot and beautifully acted , Les Destinees is , in its quiet , epic way , daring , inventive and refreshingly unusual . 675 -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 ... 676 Do 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 ? 677 Ford deserves to be remembered at Oscar time for crafting this wonderful portrait of a conflicted soldier . 678 The film 's 45-minute running time stops shy of overkill , though viewers may be more exhausted than the athletes onscreen . 679 Do n't expect any surprises in this checklist of teamwork cliches ... 680 As 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 681 The movie addresses a hungry need for PG-rated , nonthreatening family movies , but it does n't go too much further . 682 This 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 . 683 A yarn that respects the Marvel version without becoming ensnared by it . 684 This is a happy throwback to the time when cartoons were cinema 's most idiosyncratic form instead of one of its most predictable . 685 Complex , affecting and uniquely Almodóvar , the film evokes strong emotions and pushes viewers to question their deepest notions of moral right and wrong . 686 Good ol' urban legend stuff . 687 Not so much a movie as a picture book for the big screen . 688 This is n't my favorite in the series , still I enjoyed it enough to recommend . 689 It 's one of the most honest films ever made about Hollywood . 690 It 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 . 691 On its own cinematic terms , it successfully showcases the passions of both the director and novelist Byatt . 692 Light , silly , photographed with colour and depth , and rather a good time . 693 Pray 's film works well and will appeal even to those who are n't too familiar with turntablism . 694 Good movie . 695 Good actress . 696 But if you expect light romantic comedy , good gosh , will you be shocked . 697 It has the courage to wonder about big questions with sincerity and devotion . 698 It risks seeming slow and pretentious , because it thinks the gamble is worth the promise . 699 With youthful high spirits , Tautou remains captivating throughout Michele 's religious and romantic quests , and she is backed by a likable cast . 700 It '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 . 701 A very funny look at how another culture handles the process of courting and marriage . 702 But 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 ... 703 Much of the movie 's charm lies in the utter cuteness of Stuart and Margolo . 704 Their computer-animated faces are very expressive . 705 The 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 . 706 Anchored by a terrific performance by Abbass , Satin Rouge shows that the idea of women 's self-actualization knows few continental divides . 707 Awkward but sincere and , ultimately , it wins you over . 708 Smith 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 . 709 Though the plot is predictable , the movie never feels formulaic , because the attention is on the nuances of the emotional development of the delicate characters . 710 Sam 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 . 711 Goyer 's screenplay and direction are thankfully understated , and he has drawn excellent performances from his cast . 712 Binoche and Magimel are perfect in these roles . 713 When 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 . 714 While Undercover Brother is definitely one for the masses , it 's also full of sharp , smart satire . 715 Gets under the skin of a man who has just lost his wife . 716 No wonder they 're talking about `` Talk to Her . '' 717 It 's astonishing . 718 For its seriousness , high literary aspirations and stunning acting , the film can only be applauded . 719 Look , this is a terrific flick replete with dazzling camera-work , dancing and music . 720 It is inspirational in characterizing how people from such diverse cultures share the same human and spiritual needs . 721 It 's fairly self-aware in its dumbness . 722 A triumph , relentless and beautiful in its downbeat darkness . 723 Tailored to entertain ! 724 A compelling , moving film that respects its audience and its source material . 725 has a plot full of twists upon knots ... and a nonstop parade of mock-Tarantino scuzbag types that starts out clever but veers into overkill . 726 A work of astonishing delicacy and force . 727 The film benefits greatly from a less manic tone than its predecessor , as Cho appears to have settled comfortably into her skin . 728 For 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 . 729 Is 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 . 730 The film hinges on its performances , and both leads are up to the task . 731 An intelligent , earnest , intimate film that drops the ball only when it pauses for blunt exposition to make sure you 're getting its metaphysical point . 732 A modest pleasure that accomplishes its goals with ease and confidence . 733 A breezy , diverting , conventional , well-acted tale of two men locked in an ongoing game of cat-and-cat . 734 What Jackson has accomplished here is amazing on a technical level . 735 As teen movies go , `` Orange County '' is a refreshing change 736 Makes S&M seem very romantic , and Maggie Gyllenhaal is a delight . 737 A deliciously mordant , bitter black comedy . 738 Although 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 . 739 It is risky , intelligent , romantic and rapturous from start to finish . 740 The movie sticks much closer to Hornby 's drop-dead confessional tone than the film version of High Fidelity did . 741 A pleasant ramble through the sort of idoosyncratic terrain that Errol Morris has often dealt with ... it does possess a loose , lackadaisical charm . 742 ... 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- 743 This is a raw and disturbing tale that took five years to make , and the trio 's absorbing narrative is a heart-wrenching showcase indeed . 744 A beautiful and haunting examination of the stories we tell ourselves to make sense of the mundane horrors of the world . 745 Aside from being the funniest movie of the year , Simone , Andrew Niccol 's brilliant anti-Hollywood satire , has a wickedly eccentric enchantment to it . 746 Watstein handily directs and edits around his screenplay 's sappier elements ... and sustains Off the Hook 's buildup with remarkable assuredness for a first-timer . 747 Just another fish-out-of-water story that barely stays afloat . 748 There 's an energy to Y Tu Mamá También . 749 Much of it comes from the brave , uninhibited performances by its lead actors . 750 It 's the kind of pigeonhole-resisting romp that Hollywood too rarely provides . 751 Reinforces 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 . 752 You can feel the heat that ignites this gripping tale , and the humor and humanity that root it in feeling . 753 It '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 . 754 A movie for 11-year-old boys with sports dreams of their own and the preteen girls who worship Lil ' Bow Wow . 755 A refreshingly authentic coming-of-age tale . 756 If 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 . 757 But fans should have fun meeting a brand-new Pokemon called Celebi . 758 From the big giant titles of the opening credits to Elmer Bernstein 's perfectly melodic score , Haynes gets just about everything right . 759 Whether 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 . 760 Has a shambling charm ... a cheerfully inconsequential diversion . 761 Ferrara directs the entire film with the kind of detachment that makes any given frame look like a family 's custom-made Christmas card . 762 The movie has lots of dancing and fabulous music . 763 There are slow and repetitive parts , but it has just enough spice to keep it interesting . 764 An incredibly clever and superbly paced caper filled with scams within scams within scams . 765 There 's not much more to this adaptation of the Nick Hornby novel than charm -- effortless , pleasurable , featherweight charm . 766 As 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 . 767 Even 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 . 768 Not as distinctive or even as humorous as its needs to be to stand out , but it has clearly been made with affection and care . 769 This is Carion 's debut feature but his script and direction hums with a confidence that many spend entire careers trying to reach . 770 An intelligent , moving and invigorating film . 771 ... one of the most ingenious and entertaining thrillers I 've seen in quite a long time . 772 A clever blend of fact and fiction . 773 A vivid cinematic portrait . 774 Hilarious , touching and wonderfully dyspeptic . 775 Theirs is a simple and heart-warming story , full of mirth that should charm all but the most cynical . 776 The film is an enjoyable family film -- pretty much aimed at any youngster who loves horses . 777 A frisky and fresh romantic comedy exporing sexual politics and the challenges of friendships between women . 778 It 's a good film -- not a classic , but odd , entertaining and authentic . 779 Flavorful and romantic , you could call this How Martha Got Her Groove Back -- assuming , that is , she ever had one to begin with . 780 Happily 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 . 781 Thurman and Lewis are hilarious throughout . 782 the plot is so amusingly contrived and outlandish in its coincidences that no one could ever mistake it for anything resembling reality 783 Hits one out of the park for the ` they do n't make 'em like that anymore ' department . 784 It dares to be a little different , and that shading is what makes it worthwhile . 785 -LRB- Fessenden -RRB- is much more into ambiguity and creating mood than he is for on screen thrills 786 The comic performances are all spot on , especially Lee Ross 's turn as Ken . 787 a compelling journey ... and `` His Best Friend Remembers '' is up there with the finest of specials . 788 At nearly three hours , the whole of Safe Conduct is less than the sum of its parts . 789 The Hours makes you examine your own life in much the same way its characters do , and the experience is profound . 790 The Hours is what movies are supposed to be ... 791 A 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 . 792 Pretty darn good , despite its smarty-pants aura . 793 So young , so smart , such talent , such a wise \*\*\* . 794 Woo 's fights have a distinct flair . 795 His warriors collide in balletic explosion that implies an underlying order throughout the chaos . 796 Barney has created a tour de force that is weird , wacky and wonderful . 797 The ending does leave you unfulfilled , but these are performances to enjoy in a memorable ensemble piece . 798 ... an agreeable time-wasting device -- but George Pal 's low-tech 1960 version still rules the epochs . 799 It '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 . 800 Offers 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 . 801 I do n't think I 've been as entranced and appalled by an Asian film since Shinya Tsukamoto 's Iron Man . 802 It 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 . 803 Director 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 . 804 Lilia 's transformation from strict mother to sensual siren is superficially preposterous , but Abbas infuses the role with an unimpeachable core of emotional truth . 805 Frida 's artistic brilliance is undeniable -- it 's among the most breathtakingly designed films I 've ever seen . 806 The perfect film for those who like sick comedies that can be snide . 807 ` Charly ' will divide its audience in two separate groups , those reaching for more tissues and those begging for mercy ... 808 Nervy and sensitive , it taps into genuine artistic befuddlement , and at the same time presents a scathing indictment of what drives Hollywood . 809 A marvellous journey from childhood idealism to adolescent self-absorption . 810 The film is just a big , gorgeous , mind-blowing , breath-taking mess . 811 Sharp , lively , funny and ultimately sobering film . 812 Though the film 's scenario is certainly not earthshaking , this depiction of fluctuating female sexuality has two winning lead performances and charm to spare . 813 A worthy tribute to a great humanitarian and her vibrant ` co-stars . ' 814 A 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 . 815 The 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 . 816 Occasionally funny and consistently odd , and it works reasonably well as a star vehicle for Zhao . 817 Bright seems alternately amused and disgusted with this material , and he ca n't help throwing in a few of his own touches . 818 The 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 . 819 Andersson creates a world that 's at once surreal and disturbingly familiar ; absurd , yet tremendously sad . 820 It 's predictable , but it jumps through the expected hoops with style and even some depth . 821 Often hilarious , well-shot and , importantly , entertaining , Hell House is a fascinating document of an event that has to be seen to be believed . 822 De 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 . 823 ... an inviting piece of film . 824 The 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 . 825 The 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 . 826 A deviant topical comedy which is funny from start to finish . 827 A startling and fresh examination of how the bike still remains an ambiguous icon in Chinese society . 828 A highly intriguing thriller , coupled with some ingenious plot devices and some lavishly built settings . . 829 it 's a worthwhile tutorial in quantum physics and slash-dash 830 As Hugh Grant says repeatedly throughout the movie , ` Lovely ! 831 Brilliant ! ' 832 Cho 's fearless in picking apart human foibles , not afraid to lay her life bare in front of an audience . 833 Her delivery and timing are flawless . 834 Works because , for the most part , it avoids the stupid cliches and formulaic potholes that befall its brethren . 835 At its best , The Good Girl is a refreshingly adult take on adultery ... 836 An amazing and incendiary movie that dives straight into the rough waters of contradiction . 837 About nowhere kids who appropriated turfs as they found them and become self-made celebrity athletes -- a low-down version of the American dream . 838 Occasionally , in the course of reviewing art-house obscurities and slam-bam action flicks , a jaded critic smacks into something truly new . 839 A miniscule little bleep on the film radar , but one that many more people should check out 840 `` 13 Conversations '' holds its goodwill close , but is relatively slow to come to the point . 841 A slick , well-oiled machine , exquisitely polished and upholstered . 842 Do n't plan on the perfect ending , but Sweet Home Alabama hits the mark with critics who escaped from a small town life . 843 It has a subtle way of getting under your skin and sticking with you long after it 's over . 844 The movie stays afloat thanks to its hallucinatory production design . 845 It helps that the central performers are experienced actors , and that they know their roles so well . 846 A provocative movie about loss , anger , greed , jealousy , sickness and love . 847 Worth the effort to watch . 848 That rara avis : the intelligent romantic comedy with actual ideas on its mind . 849 Boisterous and daft documentary . 850 Hawke 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 . 851 A 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 . 852 Full Frontal is the antidote for Soderbergh fans who think he 's gone too commercial since his two Oscar nominated films in 2000 853 It turns out to be a cut above the norm , thanks to some clever writing and sprightly acting . 854 You might not want to hang out with Samantha , but you 'll probably see a bit of yourself in her unfinished story . 855 A work of intricate elegance , literary lyricism and profound common sense . 856 It 's as close as we 'll ever come to looking through a photographer 's viewfinder as he works . 857 Thoughtful , provocative and entertaining . 858 Witty , touching and well paced . 859 Lee Jeong-Hyang tells it so lovingly and films it so beautifully that I could n't help being captivated by it . 860 You have to pay attention to follow all the stories , but they 're each interesting . 861 The movie is well shot and very tragic , and one to ponder after the credits roll . 862 Enjoy it for what it is ; you can hate yourself later . 863 A map of the inner rhythms of love and jealousy and sacrifice drawn with a master 's steady stroke . 864 A psychological thriller with a smart script and an obsessive-compulsive 's attention to detail . 865 Grant 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 . 866 At 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 . 867 Westfeldt and Juergensen exude a chemistry and comfort level that 's both saucy and endearing . 868 Harsh , effective documentary on life in the Israeli-occupied Palestinian territories . 869 The film is all a little Lit Crit 101 , but it 's extremely well played and often very funny . 870 Earns 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 . 871 A real story about real people living their lives concerned about the future of an elderly , mentally handicapped family member . 872 It 's absolutely spooky how Lillard channels the Shagster right down to the original Casey Kasem-furnished voice . 873 A dream cast of solid female talent who build a seamless ensemble . 874 There is n't a weak or careless performance amongst them . 875 Smart science fiction for grown-ups , with only a few false steps along the way . 876 It 's a refreshing change from the self-interest and paranoia that shape most American representations of Castro . 877 Often moving and explores the discomfort inherent in the contacts between the American ` hosts ' and their ` guests . ' 878 Though 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 . 879 Lathan and Diggs have considerable personal charm , and their screen rapport makes the old story seem new . 880 The story may not be new , but Australian director John Polson , making his American feature debut , jazzes it up adroitly . 881 It '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 . 882 The film often achieves a mesmerizing poetry . 883 More than makes up for its mawkish posing by offering rousing spates of genuine feeling . 884 It 's neither as romantic nor as thrilling as it should be . 885 But it offers plenty to ponder and chew on as its unusual relationship slowly unfolds . 886 Occasionally funny , always very colorful and enjoyably overblown in the traditional Almodóvar style . 887 Merchant effectively translates Naipaul 's lively mix of characters from the page to screen . 888 Some movies are like a tasty hors-d'oeuvre ; this one is a feast . 889 What 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 . 890 Davis has filled out his cast with appealing fresh faces . 891 Achieves a sort of filmic epiphany that revels in the true potential of the medium . 892 Once you get into its rhythm ... the movie becomes a heady experience . 893 `` Auto Focus '' works as an unusual biopic and document of male swingers in the Playboy era 894 If Mr. Zhang 's subject matter is , to some degree at least , quintessentially American , his approach to storytelling might be called Iranian . 895 A fast-moving and remarkable film that appears destined to become a landmark in Japanese animation . 896 ... 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 ? '' 897 feeling to it , but like the 1920 's , the trip there is a great deal of fun . 898 A worthy entry into a very difficult genre . 899 -LRB- Broomfield -RRB- uncovers a story powerful enough to leave the screen sizzling with intrigue . 900 Eight Crazy Nights is a showcase for Sandler 's many talents . 901 A sweet-natured reconsideration of one of San Francisco 's most vital , if least widely recognized , creative fountainheads . 902 This 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 . 903 Everywhere the camera looks there is something worth seeing . 904 A richly imagined and admirably mature work from a gifted director who definitely has something on his mind . 905 It 's a nicely detailed world of pawns , bishops and kings , of wagers in dingy backrooms or pristine forests . 906 A 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 . 907 It never fails to engage us . 908 Its 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 . 909 A charming romantic comedy that is by far the lightest Dogme film and among the most enjoyable . 910 This is the kind of movie that used to be right at home at the Saturday matinee , and it still is . 911 The spark of special anime magic here is unmistakable and hard to resist . 912 Like its two predecessors , 1983 's Koyaanisqatsi and 1988 's Powaqqatsi , the cinematic collage Naqoyqatsi could be the most navel-gazing film ever . 913 Baran 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 . 914 The visuals alone make Metropolis worth seeing . 915 Dark , resonant , inventively detailed and packed with fleet turns of plot and a feast of visual amazement . 916 A picture that extols the virtues of comradeship and community in a spunky , spirited fashion . 917 A resonant tale of racism , revenge and retribution . 918 Noyce 's film is contemplative and mournfully reflective . 919 Here , Adrian Lyne comes as close to profundity as he is likely to get . 920 Evokes 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 . 921 Rain is a small treasure , enveloping the viewer in a literal and spiritual torpor that is anything but cathartic . 922 An elegant , exquisitely modulated psychological thriller . 923 This concoction , so bizarre to the adult mind , is actually a charming triumph where its intended under-12 audience is concerned . 924 Droll 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 . '' 925 It 's a beautifully accomplished lyrical meditation on a bunch of despondent and vulnerable characters living in the renown Chelsea Hotel ... 926 Is it a total success ? 927 No. . 928 Is it something any true film addict will want to check out ? 929 You bet . 930 Zany , exuberantly irreverent animated space adventure . 931 Dolgin 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 . 932 The disarming cornball atmosphere has a way of infecting the entire crowd as the film rolls on . 933 A refreshingly honest and ultimately touching tale of the sort of people usually ignored in contemporary American film . 934 Search it out . 935 Engrossing and affecting , if ultimately not quite satisfying . 936 The story , like life , refuses to be simple , and the result is a compelling slice of awkward emotions . 937 A 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 . 938 Funny and , at times , poignant , the film from director George Hickenlooper all takes place in Pasadena , `` a city where people still read . '' 939 This horror-comedy does n't go for the usual obvious laughs at the expense of cheap-looking monsters -- unless you count Elvira 's hooters . 940 The movie 's eventual success should be credited to Dennis Quaid , in fighting trim shape as an athlete as well as an actor 941 Not a bad journey at all . 942 Sits uneasily as a horror picture ... but finds surprising depth in its look at the binds of a small family . 943 Windtalkers blows this way and that , but there 's no mistaking the filmmaker in the tall grass , true to himself . 944 There is a refreshing absence of cynicism in Stuart Little 2 -- quite a rarity , even in the family film market . 945 Eventually , it wins you over . 946 Noyce films it more as a shocking history lesson than as drama . 947 Like a south-of-the-border Melrose Place . 948 Those with an interest in new or singular sorts of film experiences will find What Time Is It There ? 949 well worth the time . 950 A wildly funny prison caper . 951 Huppert 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 . 952 Despite 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 . 953 You '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 . 954 The actors are so terrific at conveying their young angst , we do indeed feel for them . 955 The reason this picture works better than its predecessors is that Myers is no longer simply spoofing the mini-mod-madness of '60s spy movies . 956 It is a kickass , dense sci-fi action thriller hybrid that delivers and then some . 957 I have n't seen one in so long , no wonder I did n't recognize it at first . 958 a compelling portrait of moral emptiness 959 In Adobo , ethnicity is not just the spice , but at the heart of more universal concerns . 960 It is ridiculous , of course ... but it is also refreshing , disarming , and just outright enjoyable despite its ridiculousness . 961 ... Blade II is more enjoyable than the original . 962 A film that takes you inside the rhythms of its subject : You experience it as you watch . 963 The movie exists for its soccer action and its fine acting . 964 The movie is saved from unbearable lightness by the simplicity of the storytelling and the authenticity of the performances . 965 The film starts out as competent but unremarkable ... and gradually grows into something of considerable power . 966 Nothing 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 . 967 Reinforces the talents of screenwriter Charlie Kaufman , creator of Adaptation and Being John Malkovich . 968 Greene 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 . 969 Finds a way to tell a simple story , perhaps the simplest story of all , in a way that seems compelling and even original . 970 A 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 . 971 This is art paying homage to art . 972 ... a joke at once flaky and resonant , lightweight and bizarrely original . 973 Invincible is a wonderful movie . 974 ... 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 . 975 Dazzling and sugar-sweet , a blast of shallow magnificence that only sex , scandal , and a chorus line of dangerous damsels can deliver . 976 Occasionally amateurishly made but a winsome cast and nice dialogue keeps it going . 977 Japan 's premier stylist of sex and blood hits audiences with what may be his most demented film to date . 978 Culkin , who 's in virtually every scene , shines as a young man who uses sarcastic lies like a shield . 979 Cuts 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 . 980 The AM-radio soundtrack and game cast -- Tierney and the inimitable Walken especially -- keep this unusual comedy from choking on its own conceit . 981 ... 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 . 982 Marvelous , merry and , yes , melancholy film . 983 From spiritual rebirth to bruising defeat , Vincent 's odyssey resonates in a profound way , comparable to the classic films of Jean Renoir . 984 Novak 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 . 985 Insomnia is involving . 986 Still , I thought it could have been more . 987 There was time on that second round to see the subtleties of Ramsay 's portrait of grief . 988 We 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 . 989 A comprehensive and provocative film -- one that pushes the boundaries of biography , and challenges its audience . 990 The way Coppola professes his love for movies -- both colorful pop junk and the classics that unequivocally qualify as art -- is giddily entertaining . 991 A worthwhile way to spend two hours . 992 Francophiles will snicker knowingly and you 'll want to slap them . 993 Sensitive , insightful and beautifully rendered film . 994 One of the best of the year . 995 A love for films shines through each frame and the era is recreated with obvious affection , scored to perfection with some tasty boogaloo beats . 996 Throwing 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 . 997 Makes an aborbing if arguable case for the man 's greatness . 998 An endlessly fascinating , landmark movie that is as bold as anything the cinema has seen in years . 999 ... a haunting vision , with images that seem more like disturbing hallucinations . 1000 It is not a mass-market entertainment but an uncompromising attempt by one artist to think about another . 1001 Frailty is n't as gory or explicit . 1002 But in its child-centered , claustrophobic context , it can be just as frightening and disturbing -- even punishing . 1003 Mixes 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 . 1004 The long-range appeal of `` Minority Report '' should transcend any awards it bags . 1005 This is one for the ages . 1006 -LRB- A -RRB- superbly controlled , passionate adaptation of Graham Greene 's 1955 novel . 1007 Much monkeyfun for all . 1008 An 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 . 1009 -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 . 1010 The heightened symmetry of this new\/old Cinema Paradiso makes the film a fuller experience , like an old friend haunted by the exigencies of time . 1011 The Powers team has fashioned a comedy with more laughs than many , no question . 1012 But this time there 's some mold on the gold . 1013 While surprisingly sincere , this average little story is adorned with some awesome action photography and surfing . 1014 It 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 . 1015 A film that is a portrait of grace in an imperfect world . 1016 A pleasurably jacked-up piece of action moviemaking . 1017 Nicolas 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 . 1018 A perverse little truffle , dainty psychological terror on the outside with a creamy filling of familial jealousy and unrepentant domestic psychopathy . 1019 This ecologically minded , wildlife friendly film teaches good ethics while entertaining with its unconventionally wacky but loving family 1020 An enjoyably half-wit remake of the venerable Italian comedy Big Deal on Madonna Street . 1021 It 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 . 1022 Reign of Fire may be little more than another platter of reheated Aliens , but it 's still pretty tasty . 1023 There 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 . 1024 Two 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 . 1025 This cheery , down-to-earth film is warm with the cozy feeling of relaxing around old friends . 1026 Thrilling , provocative and darkly funny , this timely sci-fi mystery works on so many different levels that it not only invites , it demands repeated viewings . 1027 A tale of horror and revenge that is nearly perfect in its relentless descent to the depths of one man 's tortured soul . 1028 An epic of grandeur and scale that 's been decades gone from the popcorn pushing sound stages of Hollywood . 1029 Genuinely touching because it 's realistic about all kinds of love . 1030 Lauren 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 . 1031 There has been much puzzlement among critics about what the election symbolizes . 1032 I believe the message is in the messenger : The agent is a woman . 1033 An enjoyable film for the family , amusing and cute for both adults and kids . 1034 `` The Mothman Prophecies '' is a difficult film to shake from your conscience when night falls . 1035 The second chapter of the Harry Potter series is even more magical than the first and simply the best family film of the year . 1036 More honest about Alzheimer 's disease , I think , than Iris . 1037 The acting alone is worth the price of admission . 1038 An excellent romp that boasts both a heart and a mind . 1039 Interacting eyeball-to-eyeball and toe-to-toe , Hopkins and Norton are a winning combination -- but Fiennes steals ` Red Dragon ' right from under their noses . 1040 This is a terrific character study , a probe into the life of a complex man . 1041 Impresses you with its open-endedness and surprises . 1042 This 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 . 1043 My oh my , is this an invigorating , electric movie . 1044 The two leads chomp considerably more scenery with their acting than fire-breathing monsters barbecue with their breath ... 1045 Cedar takes a very open-minded approach to this sensitive material , showing impressive control , both visually and in the writing . 1046 Biggie and Tupac is so single-mindedly daring , it puts far more polished documentaries to shame . 1047 So many documentaries like this presuppose religious bigotry or zealous nuttiness of its antagonists , but Family Fundamentals displays a rare gift for unflinching impartiality . 1048 The cast is uniformly excellent and relaxed . 1049 After making several adaptations of other writers ' work , Armenian-Canadian director Atom Egoyan broached an original treatment of a deeply personal subject . 1050 The film is painfully authentic , and the performances of the young players are utterly convincing . 1051 If 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 . 1052 A 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 . 1053 Fans of the animated wildlife adventure show will be in warthog heaven ; others need not necessarily apply . 1054 Without resorting to hyperbole , I can state that Kissing Jessica Stein may be the best same-sex romance I have seen . 1055 Nolan bravely treads where few American films dare to delve -- into the world of ambivalence and ambiguity ... 1056 Unlike 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 . 1057 A potent allegorical love story . 1058 Even those who would like to dismiss the film outright should find much to mull and debate . 1059 This is cool , slick stuff , ready to quench the thirst of an audience that misses the summer blockbusters . 1060 The movie is full of fine performances , led by Josef Bierbichler as Brecht and Monica Bleibtreu as Helene Weigel , his wife . 1061 A captivating cross-cultural comedy of manners . 1062 Andy Garcia enjoys one of his richest roles in years and Mick Jagger gives his best movie performance since , well , Performance . 1063 The movie is n't always easy to look at . 1064 But if it is indeed a duty of art to reflect life , than Leigh has created a masterful piece of artistry right here . 1065 It '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 . 1066 Highlights are the terrific performances by Christopher Plummer , as the prime villain , and Nathan Lane as Vincent Crummles , the eccentric theater company manager . 1067 -LRB- Howard -RRB- so good as Leon Barlow ... that he hardly seems to be acting . 1068 Superior genre storytelling , which gets under our skin simply by crossing the nuclear line . 1069 By taking Entertainment Tonight subject matter and giving it humor and poignancy , Auto Focus becomes both gut-bustingly funny and crushingly depressing . 1070 It 's a bittersweet and lyrical mix of elements . 1071 Subversive , meditative , clinical and poetic , The Piano Teacher is a daring work of genius . 1072 The weakest of the four Harry Potter books has been transformed into the stronger of the two films by the thinnest of margins . 1073 Its gross-out gags and colorful set pieces ... are of course stultifyingly contrived and too stylized by half . 1074 Still , it gets the job done -- a sleepy afternoon rental . 1075 It further declares its director , Zhang Yang of Shower , as a boldly experimental , contemporary stylist with a bright future . 1076 Smith '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 . 1077 Full of profound , real-life moments that anyone can relate to , it deserves a wide audience . 1078 A movie that will touch the hearts of both children and adults , as well as bring audiences to the edge of their seats . 1079 Leave 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 . 1080 Fine acting but there is no sense of connecting the dots , just dots . 1081 An extraordinary Swedish film about the soul adventure of marriage -- the kind of intimate and character-driven film that Bille August does best . 1082 A blessed gift to film geeks and historians . 1083 If the ' 70 's were your idea of a good time at the movies , this will make you very happy . 1084 It took 19 predecessors to get THIS ? 1085 Thoughtful , even stinging at times , and lots of fun . 1086 One of the most haunting , viciously honest coming-of-age films in recent memory . 1087 The WWII drama is well plotted , visually striking and filled with enjoyably complex characters who are never what they first appear . 1088 It 's a pleasure to see Seinfeld griping about the biz with buddies Chris Rock , Garry Shandling and Colin Quinn . 1089 If you love Motown music , you 'll love this documentary . 1090 This time out , -LRB- Sade -RRB- is an unsettlingly familiar figure -- in turns loyal and deceitful , responsible and reckless , idealistically selfless and coldly self-interested . 1091 Human Resources was a good , straightforward tale , but Time Out is better . 1092 It 's haunting . 1093 It 's like a poem . 1094 To the film 's credit , the acting is fresh and unselfconscious , and Munch is a marvel of reality versus sappy sentiment . 1095 Chicago is , in many ways , an admirable achievement . 1096 Shainberg weaves a carefully balanced scenario that is controlled by neither character , is weirdly sympathetic to both and manages to be tender and darkly comic . 1097 Even when foreign directors ... borrow stuff from Hollywood , they invariably shake up the formula and make it more interesting . 1098 A cockamamie tone poem pitched precipitously between swoony lyricism and violent catastrophe ... the most aggressively nerve-wracking and screamingly neurotic romantic comedy in cinema history . 1099 Sturdy , entertaining period drama ... both Caine and Fraser have their moments . 1100 Whether -LRB- Binoche and Magimel -RRB- are being charming or angst-ridden , they easily fill their scenes and , fine judges both , never overcook the hysteria . 1101 A spunky , original take on a theme that will resonate with singles of many ages . 1102 It 's a glorious groove that leaves you wanting more . 1103 Majidi gets uniformly engaging performances from his largely amateur cast . 1104 ... a well-observed and disturbing little movie 1105 Fans of Nijinsky will savor every minute of Cox 's work . 1106 Everything 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 . 1107 Jagger the actor is someone you want to see again . 1108 Escapism in its purest form . 1109 There 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 . 1110 A comic gem with some serious sparkles . 1111 U.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 . 1112 `` Cremaster 3 '' should come with the warning `` For serious film buffs only ! '' 1113 Once again , director Jackson strikes a rewarding balance between emotion on the human scale and action\/effects on the spectacular scale . 1114 A loving little film of considerable appeal . 1115 Although it 's a bit smug and repetitive , this documentary engages your brain in a way few current films do . 1116 Flawed but worthy look at life in U.S. relocation camps . 1117 It 's a lovely film with lovely performances by Buy and Accorsi . 1118 No one goes unindicted here , which is probably for the best . 1119 And if you 're not nearly moved to tears by a couple of scenes , you 've got ice water in your veins . 1120 A warm , funny , engaging film . 1121 Uses sharp humor and insight into human nature to examine class conflict , adolescent yearning , the roots of friendship and sexual identity . 1122 Half Submarine flick , Half Ghost Story , All in one criminally neglected film 1123 Entertains by providing good , lively company . 1124 Dazzles 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 . 1125 Visually 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 . 1126 Nothing 's at stake , just a twisty double-cross you can smell a mile away -- still , the derivative Nine Queens is lots of fun . 1127 Unlike the speedy wham-bam effect of most Hollywood offerings , character development -- and more importantly , character empathy -- is at the heart of Italian for Beginners . 1128 You '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 . 1129 The band 's courage in the face of official repression is inspiring , especially for aging hippies -LRB- this one included -RRB- . 1130 Although 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 . 1131 A beguiling splash of pastel colors and prankish comedy from Disney . 1132 As surreal as a dream and as detailed as a photograph , as visually dexterous as it is at times imaginatively overwhelming . 1133 -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 . 1134 The film serves as a valuable time capsule to remind us of the devastating horror suffered by an entire people . 1135 What '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 . 1136 Whether 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 . 1137 ... an otherwise intense , twist-and-turn thriller that certainly should n't hurt talented young Gaghan 's resume . 1138 It provides the grand , intelligent entertainment of a superior cast playing smart people amid a compelling plot . 1139 There 's ... tremendous energy from the cast , a sense of playfulness and excitement that seems appropriate . 1140 It 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 . 1141 A deep and meaningful film . 1142 The film 's welcome breeziness and some unbelievably hilarious moments -- most portraying the idiocy of the film industry -- make it mostly worth the trip . 1143 It 's a remarkably solid and subtly satirical tour de force . 1144 Enormously entertaining for moviegoers of any age . 1145 A poignant , artfully crafted meditation on mortality . 1146 A rarity among recent Iranian films : It 's a comedy full of gentle humor that chides the absurdity of its protagonist 's plight . 1147 Not 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 . 1148 In a way , the film feels like a breath of fresh air , but only to those that allow it in . 1149 Woody Allen 's latest is an ambling , broad comedy about all there is to love -- and hate -- about the movie biz . 1150 It 's a stunning lyrical work of considerable force and truth . 1151 The 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 . 1152 -LRB- Næs -RRB- directed the stage version of Elling , and gets fine performances from his two leads who originated the characters on stage . 1153 Made me unintentionally famous -- as the queasy-stomached critic who staggered from the theater and blacked out in the lobby . 1154 But believe it or not , it 's one of the most beautiful , evocative works I 've seen . 1155 A 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 . 1156 Like 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 . 1157 -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 . 1158 Here 's yet another studio horror franchise mucking up its storyline with glitches casual fans could correct in their sleep . 1159 But taken as a stylish and energetic one-shot , The Queen of the Damned can not be said to suck . 1160 You wo n't like Roger , but you will quickly recognize him . 1161 And that 's a big part of why we go to the movies . 1162 While 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 . 1163 We know the plot 's a little crazy , but it held my interest from start to finish . 1164 A sober and affecting chronicle of the leveling effect of loss . 1165 A fast , funny , highly enjoyable movie . 1166 A celebration of quirkiness , eccentricity , and certain individuals ' tendency to let it all hang out , and damn the consequences . 1167 Writer\/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 . 1168 A smart , witty follow-up . 1169 While the ideas about techno-saturation are far from novel , they 're presented with a wry dark humor . 1170 An infectious cultural fable with a tasty balance of family drama and frenetic comedy . 1171 Although occasionally static to the point of resembling a stage play , the film delivers a solid mixture of sweetness and laughs . 1172 It provides an honest look at a community striving to anchor itself in new grounds . 1173 Add yet another hat to a talented head , Clooney 's a good director . 1174 Building 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 . 1175 Ultimately feels empty and unsatisfying , like swallowing a Communion wafer without the wine . 1176 Chilling , well-acted , and finely directed : David Jacobson 's Dahmer . 1177 A swashbuckling tale of love , betrayal , revenge and above all , faith . 1178 Without ever becoming didactic , director Carlos Carrera expertly weaves this novelistic story of entangled interrelationships and complex morality . 1179 It '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 . 1180 A literate presentation that wonderfully weaves a murderous event in 1873 with murderous rage in 2002 . 1181 Makes even the claustrophobic on-board quarters seem fun . 1182 This is as respectful a film as Byatt fans could hope for , though lovers of the book may wonder why it 's necessary . 1183 One of the best films of the year with its exploration of the obstacles to happiness faced by five contemporary individuals ... a psychological masterpiece . 1184 Not far beneath the surface , this reconfigured tale asks disturbing questions about those things we expect from military epics . 1185 For the most part Stevens glides through on some solid performances and witty dialogue . 1186 Broomfield turns his distinctive ` blundering ' style into something that could really help clear up the case . 1187 Against all odds in heaven and hell , it creeped me out just fine . 1188 It 's refreshing to see a girl-power movie that does n't feel it has to prove anything . 1189 It 's worth seeing just on the basis of the wisdom , and at times , the startling optimism , of the children . 1190 A rigorously structured and exquisitely filmed drama about a father and son connection that is a brief shooting star of love . 1191 This surreal Gilliam-esque film is also a troubling interpretation of Ecclesiastes . 1192 A rewarding work of art for only the most patient and challenge-hungry moviegoers . 1193 A quiet treasure -- a film to be savored . 1194 May 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 . 1195 A 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 . 1196 Huston nails both the glad-handing and the choking sense of hollow despair . 1197 may not have generated many sparks , but with his affection for Astoria and its people he has given his tale a warm glow . 1198 A delirious celebration of the female orgasm . 1199 Exquisitely 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 . 1200 It 's fascinating to see how Bettany and McDowell play off each other . 1201 The 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 . 1202 Leigh 's film is full of memorable performances from top to bottom . 1203 One of the most significant moviegoing pleasures of the year . 1204 Jose 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 . 1205 Generally , Clockstoppers will fulfill your wildest fantasies about being a different kind of time traveler , while happily killing 94 minutes . 1206 The 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 . 1207 Neither Parker nor Donovan is a typical romantic lead , but they bring a fresh , quirky charm to the formula . 1208 It '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 . 1209 Not 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 . 1210 Jaglom ... put -LRB- s -RRB- the audience in the privileged position of eavesdropping on his characters 1211 Beautifully observed , miraculously unsentimental comedy-drama . 1212 A must-see for the David Mamet enthusiast and for anyone who appreciates intelligent , stylish moviemaking . 1213 Crackerjack entertainment -- nonstop romance , music , suspense and action . 1214 The acting , costumes , music , cinematography and sound are all astounding given the production 's austere locales . 1215 García Bernal and Talancón are an immensely appealing couple , and even though their story is predictable , you 'll want things to work out . 1216 Far more imaginative and ambitious than the trivial , cash-in features Nickelodeon has made from its other animated TV series . 1217 The very definition of the ` small ' movie , but it is a good stepping stone for director Sprecher . 1218 A gripping , searing portrait of a lost soul trying to find her way through life . 1219 Suffers from the lack of a compelling or comprehensible narrative . 1220 Still , as a visual treat , the film is almost unsurpassed . 1221 So unassuming and pure of heart , you ca n't help but warmly extend your arms and yell ` Safe ! ' 1222 An intriguing cinematic omnibus and round-robin that occasionally is more interesting in concept than in execution . 1223 So 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 . 1224 At 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 . 1225 The magic of the film lies not in the mysterious spring but in the richness of its performances . 1226 Hoffman 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 . 1227 What better message than ` love thyself ' could young women of any size receive ? 1228 The second coming of Harry Potter is a film far superior to its predecessor . 1229 A movie that successfully crushes a best selling novel into a timeframe that mandates that you avoid the Godzilla sized soda . 1230 84 minutes of rolling musical back beat and supercharged cartoon warfare . 1231 It 's also , clearly , great fun . 1232 ... takes the beauty of baseball and melds it with a story that could touch anyone regardless of their familiarity with the sport 1233 Seldahl 's Barbara is a precise and moving portrait of someone whose world is turned upside down , first by passion and then by illness . 1234 A warm but realistic meditation on friendship , family and affection . 1235 Byler reveals his characters in a way that intrigues and even fascinates us , and he never reduces the situation to simple melodrama . 1236 Turns potentially forgettable formula into something strangely diverting . 1237 Bogdanovich tantalizes by offering a peep show into the lives of the era 's creme de la celluloid . 1238 People cinema at its finest . 1239 The performances take the movie to a higher level . 1240 what 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 . 1241 ... a spoof comedy that carries its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh . 1242 Manages to transcend the sex , drugs and show-tunes plot into something far richer . 1243 Dense with characters and contains some thrilling moments . 1244 LaPaglia 's ability to convey grief and hope works with Weaver 's sensitive reactions to make this a two-actor master class . 1245 Reign of Fire looks as if it was made without much thought -- and is best watched that way . 1246 Altogether , this is successful as a film , while at the same time being a most touching reconsideration of the familiar masterpiece . 1247 We root for -LRB- Clara and Paul -RRB- , even like them , though perhaps it 's an emotion closer to pity . 1248 The best film about baseball to hit theaters since Field of Dreams . 1249 Instead of a hyperbolic beat-charged urban western , it 's an unpretentious , sociologically pointed slice of life . 1250 the film tunes into a grief that could lead a man across centuries . 1251 If 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 . 1252 -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 . 1253 As a tolerable diversion , the film suffices ; a Triumph , however , it is not . 1254 If director Michael Dowse only superficially understands his characters , he does n't hold them in contempt . 1255 If your taste runs to ` difficult ' films you absolutely ca n't miss it . 1256 -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 . 1257 ... 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 . 1258 Like Leon , it 's frustrating and still oddly likable . 1259 All in all , The Count of Monte Cristo is okay , but it is surely no classic , like the novel upon which it is based . 1260 If you can stomach the rough content , it 's worth checking out for the performances alone . 1261 Looking aristocratic , luminous yet careworn in Jane Hamilton 's exemplary costumes , Rampling gives a performance that could not be improved upon . ' 1262 ... 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 . ' 1263 On this tricky topic , Tadpole is very much a step in the right direction , with its blend of frankness , civility and compassion . 1264 Fun , flip and terribly hip bit of cinematic entertainment . 1265 Montias ... pumps a lot of energy into his nicely nuanced narrative and surrounds himself with a cast of quirky -- but not stereotyped -- street characters . 1266 Falls neatly into the category of Good Stupid Fun . 1267 The film 's performances are thrilling . 1268 Even in its most tedious scenes , Russian Ark is mesmerizing . 1269 The 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 . 1270 Reggio 's continual visual barrage is absorbing as well as thought-provoking . 1271 Unfortunately , it appears that -LRB- Jackie -RRB- Chan 's US influence is starting to show in his Hong Kong films . 1272 It all adds up to good fun . 1273 A big , gorgeous , sprawling swashbuckler that delivers its diversions in grand , uncomplicated fashion . 1274 The 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 . 1275 A stunning and overwhelmingly cogent case for Kissinger as a calculating war criminal . 1276 Sade is an engaging look at the controversial eponymous and fiercely atheistic hero . 1277 a quiet , pure , elliptical film 1278 Kinnear does n't aim for our sympathy , but rather delivers a performance of striking skill and depth . 1279 The subtle strength of `` Elling '' is that it never loses touch with the reality of the grim situation . 1280 A study in shades of gray , offering itself up in subtle plot maneuvers ... 1281 The format gets used best ... to capture the dizzying heights achieved by motocross and BMX riders , whose balletic hotdogging occasionally ends in bone-crushing screwups . 1282 Has a lot of the virtues of Eastwood at his best . 1283 Chilling but uncommercial look into the mind of Jeffrey Dahmer , serial killer . 1284 Though it 's become almost redundant to say so , major kudos go to Leigh for actually casting people who look working-class . 1285 It deserves to be seen by anyone with even a passing interest in the events shaping the world beyond their own horizons . 1286 A movie that reminds us of just how exciting and satisfying the fantasy cinema can be when it 's approached with imagination and flair . 1287 Thanks 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 . 1288 Nine 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 . 1289 It '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 . 1290 Will amuse and provoke adventurous adults in specialty venues . 1291 You do n't have to know about music to appreciate the film 's easygoing blend of comedy and romance . 1292 A film about a young man finding God that is accessible and touching to the marrow . 1293 For the first time in years , De Niro digs deep emotionally , perhaps because he 's been stirred by the powerful work of his co-stars . 1294 The film 's snags and stumblings are more than compensated for by its wryly subversive tone . 1295 Inside 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 . 1296 Affleck and Jackson are good sparring partners . 1297 The 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 . 1298 An 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 . 1299 Having 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 . 1300 A subtle and well-crafted -LRB- for the most part -RRB- chiller . 1301 Warm Water Under a Red Bridge is a quirky and poignant Japanese film that explores the fascinating connections between women , water , nature , and sexuality . 1302 Although laced with humor and a few fanciful touches , the film is a refreshingly serious look at young women . 1303 The 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 . 1304 A delectable and intriguing thriller filled with surprises , Read My Lips is an original . 1305 This is a story of two misfits who do n't stand a chance alone , but together they are magnificent . 1306 Highbrow self-appointed guardians of culture need not apply , but those who loved Cool as Ice have at last found a worthy follow-up . 1307 One of creepiest , scariest movies to come along in a long , long time , easily rivaling Blair Witch or The Others . 1308 Maud 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 . 1309 Pacino is brilliant as the sleep-deprived Dormer , his increasing weariness as much existential as it is physical . 1310 Rare Birds has more than enough charm to make it memorable . 1311 Manages to be sweet and wickedly satisfying at the same time . 1312 This Nickleby thing might have more homosexual undertones than an Eddie Murphy film . 1313 And just when you think it ca n't get any more gay , in pops Nathan Lane . 1314 No sophomore slump for director Sam Mendes , who segues from Oscar winner to Oscar-winning potential with a smooth sleight of hand . 1315 The movie is n't just hilarious : It 's witty and inventive , too , and in hindsight , it is n't even all that dumb . 1316 Old-form moviemaking at its best . 1317 Ahhhh ... revenge is sweet ! 1318 Yakusho and Shimizu ... create engaging characterizations in Imamura 's lively and enjoyable cultural mix . 1319 You 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 . 1320 Ruzowitzky has taken this mothball-y stuff and made a rather sturdy , old-fashioned entertainment out of it . 1321 In spite of Good Housekeeping 's unsavory characters and WWF mentality , this white trash War of the Roses is a surprisingly engaging film . 1322 Collateral Damage finally delivers the goods for Schwarzenegger fans . 1323 There has always been something likable about the Marquis de Sade . 1324 As a first-time director , Paxton has tapped something in himself as an actor that provides Frailty with its dark soul . 1325 For the most part , director Anne-Sophie Birot 's first feature is a sensitive , extraordinarily well-acted drama . 1326 By 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 . 1327 This riveting World War II moral suspense story deals with the shadow side of American culture : racial prejudice in its ugly and diverse forms . 1328 A tender , heartfelt family drama . 1329 A 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 . 1330 For the most part , it 's a work of incendiary genius , steering clear of knee-jerk reactions and quick solutions . 1331 It has the charm of the original American road movies , feasting on the gorgeous , ramshackle landscape of the filmmaker 's motherland . 1332 -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 . 1333 In all , this is a watchable movie that 's not quite the memorable experience it might have been . 1334 Huppert 's superbly controlled display of murderous vulnerability ensures that malice has a very human face . 1335 My thoughts were focused on the characters . 1336 That is a compliment to Kuras and Miller . 1337 If I had been thinking about the visual medium , they would have been doing something wrong . 1338 One of the more intelligent children 's movies to hit theaters this year . 1339 Remember the kind of movie we were hoping `` Ecks vs. Sever '' or `` xXx '' was going to be ? 1340 This is it . 1341 Not for the prurient or squeamish , it 's a daring if overlong examination of an idolized culture , self-loathing and sexual politics . 1342 A 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 . 1343 The 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 . 1344 Travels a fascinating arc from hope and euphoria to reality and disillusionment . 1345 There '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 . 1346 For anyone unfamiliar with pentacostal practices in general and theatrical phenomenon of Hell Houses in particular , it 's an eye-opener . 1347 It seems like I have been waiting my whole life for this movie and now I ca n't wait for the sequel . 1348 It 's a bit disappointing that it only manages to be decent instead of dead brilliant . 1349 An operatic , sprawling picture that 's entertainingly acted , magnificently shot and gripping enough to sustain most of its 170-minute length . 1350 The 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 . 1351 It inspires a continuing and deeply satisfying awareness of the best movies as monumental ` picture shows . ' 1352 Awesome creatures , breathtaking scenery , and epic battle scenes add up to another ` spectacular spectacle . ' 1353 By 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 . 1354 It 's unnerving to see Recoing 's bizzarre reaction to his unemployment . 1355 Good film , but very glum . 1356 Much as we might be interested in gratuitous sexualization , Haneke has a different objective in mind -- namely the implications of our craving for fake stimulation . 1357 Dazzling in its complexity , disturbing for its extraordinary themes , The Piano Teacher is a film that defies categorisation . 1358 It haunts , horrifies , startles and fascinates ; it is impossible to look away . 1359 Ah yes , and then there 's the music ... 1360 It has charm to spare , and unlike many romantic comedies , it does not alienate either gender in the audience . 1361 Although 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 . 1362 It is great summer fun to watch Arnold and his buddy Gerald bounce off a quirky cast of characters . 1363 Bleakly funny , its characters all the more touching for refusing to pity or memorialize themselves . 1364 It will not appeal to the impatient , but those who like long books and movies will admire the way it accumulates power and depth . 1365 This flick is about as cool and crowd-pleasing as a documentary can get . 1366 `` The Ring '' is pretty much an English-language copy of the film that inspired it , and it carries the same strengths and flaws . 1367 The Wild Thornberrys Movie is a jolly surprise . 1368 Griffiths proves she 's that rare luminary who continually raises the standard of her profession . 1369 Prancing his way through the tailor-made part of a male hooker approaching the end of his vitality , Jagger obviously relishes every self-mocking moment . 1370 Offers much to enjoy ... and a lot to mull over in terms of love , loyalty and the nature of staying friends . 1371 An important movie , a reminder of the power of film to move us and to make us examine our values . 1372 Is this love or is it masochism ? 1373 Binoche makes it interesting trying to find out . 1374 The mesmerizing performances of the leads keep the film grounded and keep the audience riveted . 1375 Worth watching for Dong Jie 's performance -- and for the way it documents a culture in the throes of rapid change . 1376 Two 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 . 1377 It 's one heck of a character study -- not of Hearst or Davies but of the unique relationship between them . 1378 Candid Camera on methamphetamines . 1379 A subject like this should inspire reaction in its audience ; The Pianist does not . 1380 Equilibrium is what George Orwell might have imagined had today 's mood-altering drug therapy been envisioned by chemists in 1949 . 1381 Creepy , authentic and dark . 1382 This disturbing bio-pic is hard to forget . 1383 Martin 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 . 1384 A twisty , moody slice of Southern Gothic ... 1385 It '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 . 1386 The weight of the piece , the unerring professionalism of the chilly production , and the fascination embedded in the lurid topic prove recommendation enough . 1387 An absurdist comedy about alienation , separation and loss . 1388 ` They ' begins and ends with scenes so terrifying I 'm still stunned . 1389 And I 've decided to leave a light on every night from now on . 1390 This 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 . 1391 ... with `` The Bourne Identity '' we return to the more traditional action genre . 1392 Beneath Clouds is a succinct low-budget film whose compelling characters and intelligent script are exactly what was missing from Rabbit-Proof Fence . 1393 The film is a contrivance , as artificial as the video games Japanese teens play in a nightclub sequence , but it 's an enjoyable one . 1394 Holm ... embodies the character with an effortlessly regal charisma . 1395 It is amusing , and that 's all it needs to be . 1396 Among the year 's most intriguing explorations of alientation . 1397 A full world has been presented onscreen , not some series of carefully structured plot points building to a pat resolution . 1398 Seldom has a movie so closely matched the spirit of a man and his work . 1399 Audrey 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 . 1400 The 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 . 1401 Even 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 . 1402 The story and structure are well-honed . 1403 Fresnadillo '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 . 1404 It 's made with deftly unsettling genre flair . 1405 It just may inspire a few younger moviegoers to read Stevenson 's book , which is a treasure in and of itself . 1406 Funny but perilously slight . 1407 Overall very good for what it 's trying to do . 1408 Forgettable horror -- more gory than psychological -- with a highly satisfying quotient of Friday-night excitement and Milla power . 1409 Ramsay , 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 . 1410 It may seem long at 110 minutes if you 're not a fan , because it includes segments of 12 songs at a reunion concert . 1411 A lean , deftly shot , well-acted , weirdly retro thriller that recalls a raft of '60s and '70s European-set spy pictures . 1412 It proves quite compelling as an intense , brooding character study . 1413 The Son 's Room is a triumph of gentility that earns its moments of pathos . 1414 Morton uses her face and her body language to bring us Morvern 's soul , even though the character is almost completely deadpan . 1415 The 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 1416 A superbly acted and funny\/gritty fable of the humanizing of one woman at the hands of the unseen forces of fate . 1417 One of the smartest takes on singles culture I 've seen in a long time . 1418 There is a fabric of complex ideas here , and feelings that profoundly deepen them . 1419 CQ '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 . 1420 The emotions are raw and will strike a nerve with anyone who 's ever had family trauma . 1421 Holy mad maniac in a mask , Splat-Man ! 1422 Good old-fashioned slash-and-hack is back ! 1423 As unseemly as its title suggests . 1424 The French are rather good at this kind of thing , unlike the Americans , who have a passion for Musketeers , only to spoof them . 1425 The 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 . 1426 It 's an offbeat treat that pokes fun at the democratic exercise while also examining its significance for those who take part . 1427 Allows us to hope that Nolan is poised to embark a major career as a commercial yet inventive filmmaker . 1428 Maneuvers skillfully through the plot 's hot brine -- until it 's undone by the sogginess of its contemporary characters , and actors . 1429 It has the ability to offend and put off everyone , but it holds you with its outrageousness . 1430 Anchored by Friel and Williams 's exceptional performances , the film 's power lies in its complexity . 1431 Nothing is black and white . 1432 It 's a charming and often affecting journey . 1433 No screen fantasy-adventure in recent memory has the showmanship of Clones ' last 45 minutes . 1434 A poignant and compelling story about relationships , Food of Love takes us on a bumpy but satisfying journey of the heart . 1435 The Chateau cleverly probes the cross-cultural differences between Gauls and Yanks . 1436 Not since Tom Cruise in Risky Business has an actor made such a strong impression in his underwear . 1437 Aside from minor tinkering , this is the same movie you probably loved in 1994 , except that it looks even better . 1438 Uses high comedy to evoke surprising poignance . 1439 It confirms Fincher 's status as a film maker who artfully bends technical know-how to the service of psychological insight . 1440 Vera 's three actors -- Mollà , Gil and Bardem -- excel in insightful , empathetic performances . 1441 A marvel like none you 've seen . 1442 With tightly organized efficiency , numerous flashbacks and a constant edge of tension , Miller 's film is one of 2002 's involvingly adult surprises . 1443 Mr. Tsai is a very original artist in his medium , and What Time Is It There ? 1444 should be seen at the very least for its spasms of absurdist humor . 1445 Writer\/director Mark Romanek spotlights the underlying caste system in America . 1446 It 's a scathing portrayal . 1447 This is a good script , good dialogue , funny even for adults . 1448 The characters are interesting and often very creatively constructed from figure to backstory . 1449 The film will play equally well on both the standard and giant screens . 1450 Moody , heartbreaking , and filmed in a natural , unforced style that makes its characters seem entirely convincing even when its script is not . 1451 Not a film to rival To Live , but a fine little amuse-bouche to keep your appetite whetted . 1452 True tale of courage -- and complicity -- at Auschwitz is a harrowing drama that tries to tell of the unspeakable . 1453 Gives 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 . 1454 MacDowell , whose wifty Southern charm has anchored lighter affairs ... brings an absolutely riveting conviction to her role . 1455 What Time Is It There ? 1456 is not easy . 1457 It 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 . 1458 if 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 . 1459 Although the level of the comedy declines as the movie proceeds , there 's no denying the fun of watching De Niro and Crystal having fun . 1460 Claude Chabrol has here a thriller without thrills , but that 's okay . 1461 For movie lovers as well as opera lovers , Tosca is a real treat . 1462 Unflinchingly bleak and desperate 1463 Moretti 's compelling anatomy of grief and the difficult process of adapting to loss . 1464 Challenging , intermittently engrossing and unflaggingly creative . 1465 But it 's too long and too convoluted and it ends in a muddle . 1466 The vivid lead performances sustain interest and empathy , but the journey is far more interesting than the final destination . 1467 A painfully funny ode to bad behavior . 1468 ` Easily my choice for one of the year 's best films . ' 1469 Charles ' 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 . 1470 That dogged good will of the parents and ` vain ' Jia 's defoliation of ego , make the film touching despite some doldrums . 1471 The movie is for fans who ca n't stop loving anime , and the fanatical excess built into it . 1472 The 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 . 1473 A densely constructed , highly referential film , and an audacious return to form that can comfortably sit among Jean-Luc Godard 's finest work . 1474 Michael Gerbosi 's script is economically packed with telling scenes . 1475 A strangely compelling and brilliantly acted psychological drama . 1476 Candid and comfortable ; a film that deftly balances action and reflection as it lets you grasp and feel the passion others have for their work . 1477 Open-minded kids -- kids who read , kids who dream -- will be comforted by the way it deals with big issues like death and destiny . 1478 Bennett 's naturalistic performance speaks volumes more truth than any ` reality ' show , and anybody contemplating their own drastic life changes should watch Some Body first . 1479 ... a good , if not entirely fresh , look at war . 1480 The film is powerful , accessible and funny . 1481 You wo n't miss its messages , but you 'll be entertained as well . 1482 `` 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 . 1483 If you dig on David Mamet 's mind tricks ... rent this movie and enjoy ! 1484 The primitive force of this film seems to bubble up from the vast collective memory of the combatants . 1485 It 's like watching a nightmare made flesh . 1486 It 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 . 1487 A gorgeous , high-spirited musical from India that exquisitely blends music , dance , song , and high drama . 1488 It 's hard to imagine Alan Arkin being better than he is in this performance . 1489 For 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 . 1490 Despite the 2-D animation , The Wild Thornberrys Movie makes for a surprisingly cinematic experience . 1491 ... a fun little timewaster , helped especially by the cool presence of Jean Reno . 1492 -LRB- Majidi -RRB- makes us think twice about immigrants we see around us every day . 1493 Though only 60 minutes long , the film is packed with information and impressions . 1494 I 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 . 1495 Immersing us in the endlessly inventive , fiercely competitive world of hip-hop DJs , the project is sensational and revelatory , even if scratching makes you itch . 1496 Further proof that the epicenter of cool , beautiful , thought-provoking foreign cinema is smack-dab in the middle of Dubya 's Axis of Evil . 1497 There 's really only one good idea in this movie , but the director runs with it and presents it with an unforgettable visual panache . 1498 A simple , but gritty and well-acted ensemble drama that encompasses a potent metaphor for a country still dealing with its fascist past . 1499 Lovely and poignant . 1500 Puts a human face on a land most Westerners are unfamiliar with . 1501 I 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 . 1502 Displaying about equal amounts of naiveté , passion and talent , Beneath Clouds establishes Sen as a filmmaker of considerable potential . 1503 The vitality of the actors keeps the intensity of the film high , even as the strafings blend together . 1504 Not since Japanese filmmaker Akira Kurosawa 's Ran have the savagery of combat and the specter of death been visualized with such operatic grandeur . 1505 We learn a lot about dying coral and see a lot of life on the reef . 1506 If the first Men in Black was money , the second is small change . 1507 But it still jingles in the pocket . 1508 It 's fun lite . 1509 Passable 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 . 1510 I just loved every minute of this film . 1511 This 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 . 1512 Just as moving , uplifting and funny as ever . 1513 My 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 . 1514 It will grip even viewers who are n't interested in rap , as it cuts to the heart of American society in an unnerving way . 1515 A muckraking job , the cinematic equivalent of a legal indictment , and a fairly effective one at that . 1516 A tender , witty , captivating film about friendship , love , memory , trust and loyalty . 1517 Belongs 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 . 1518 An 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 1519 A 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 . 1520 While 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 . 1521 Pumpkin 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 . 1522 If you 're hard up for raunchy college humor , this is your ticket right here . 1523 Few 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 . 1524 Corny , schmaltzy and predictable , but still manages to be kind of heartwarming , nonetheless . 1525 It 's the perfect kind of film to see when you do n't want to use your brain . 1526 At all . 1527 While 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 . 1528 Feature debuter D.J. Caruso directs a crack ensemble cast , bringing screenwriter Tony Gayton 's narcotics noir to life . 1529 Every dance becomes about seduction , where backstabbing and betrayals are celebrated , and sex is currency . 1530 Harris commands the screen , using his frailty to suggest the ravages of a life of corruption and ruthlessness . 1531 Stephen 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 . 1532 Director of photography Benoit Delhomme shot the movie in delicious colors , and the costumes and sets are grand . 1533 The movie 's relatively simple plot and uncomplicated morality play well with the affable cast . 1534 The film is quiet , threatening and unforgettable . 1535 This illuminating documentary transcends our preconceived vision of the Holy Land and its inhabitants , revealing the human complexities beneath . 1536 deliriously funny , fast and loose , accessible to the uninitiated , and full of surprises 1537 Trademark 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 . 1538 One from the heart . 1539 More concerned with Sade 's ideas than with his actions . 1540 The movie achieves as great an impact by keeping these thoughts hidden as ... -LRB- Quills -RRB- did by showing them . 1541 An entertaining , colorful , action-filled crime story with an intimate heart . 1542 While 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 . 1543 The most compelling Wiseman epic of recent years . 1544 The socio-histo-political treatise is told in earnest strides ... -LRB- and -RRB- personal illusion is deconstructed with poignancy . 1545 It 's great escapist fun that recreates a place and time that will never happen again . 1546 Good car chases , great fight scenes , and a distinctive blend of European , American and Asian influences . 1547 Liotta put on 30 pounds for the role , and has completely transformed himself from his smooth , Goodfellas image . 1548 A woman 's pic directed with resonance by Ilya Chaiken . 1549 -LRB- Grant 's -RRB- bumbling magic takes over the film , and it turns out to be another winning star vehicle . 1550 ... Brian De Palma is utterly mad : cinema mad , set-piece mad , style mad . 1551 It 's a beautiful madness . 1552 Generally provides its target audience of youngsters enough stimulating eye and ear candy to make its moral medicine go down . 1553 There are some wonderfully fresh moments that smooth the moral stiffness with human kindness and hopefulness . 1554 A grimly competent and stolid and earnest military courtroom drama . 1555 Escaping the studio , Piccoli is warmly affecting and so is this adroitly minimalist movie . 1556 Very psychoanalytical -- provocatively so -- and also refreshingly literary . 1557 A gorgeous , witty , seductive movie . 1558 The 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 . 1559 On 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 . 1560 With Rabbit-Proof Fence , Noyce has tailored an epic tale into a lean , economical movie . 1561 -LRB- A -RRB- n utterly charming and hilarious film that reminded me of the best of the Disney comedies from the 60s . 1562 Preaches to two completely different choirs at the same time , which is a pretty amazing accomplishment . 1563 Thanks 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 . 1564 Birthday Girl is an amusing joy ride , with some surprisingly violent moments . 1565 More romantic , more emotional and ultimately more satisfying than the teary-eyed original . 1566 An appealingly juvenile trifle that delivers its share of laughs and smiles . 1567 Writer-director 's Mehta 's effort has tons of charm and the whimsy is in the mixture , the intoxicating masala , of cultures and film genres . 1568 The draw -LRB- for `` Big Bad Love '' -RRB- is a solid performance by Arliss Howard . 1569 It 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 . 1570 The terrific and bewilderingly underrated Campbell Scott gives a star performance that is nothing short of mesmerizing . 1571 Cool ? 1572 This movie is a snow emergency . 1573 Like Mike is n't interested in recycling old cliches . 1574 It wants to tweak them with a taste of tangy new humor . 1575 Smith is careful not to make fun of these curious owners of architectural oddities . 1576 Instead , he shows them the respect they are due . 1577 A mess when it comes to the characters and writing ... but works its way underneath the skin like few movies have in recent memory . 1578 Drops 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 . 1579 Zhang ... has done an amazing job of getting realistic performances from his mainly nonprofessional cast . 1580 A solid examination of the male midlife crisis . 1581 If you 're in the mood for a Bollywood film , here 's one for you . 1582 As the two leads , Lathan and Diggs are charming and have chemistry both as friends and lovers . 1583 A beguiling , slow-moving parable about the collision of past and present on a remote seacoast in Iran . 1584 My Big Fat Greek Wedding uses stereotypes in a delightful blend of sweet romance and lovingly dished out humor . 1585 Kept aloft largely by a comically adept ensemble . 1586 The sort of film that makes me miss Hitchcock , but also feel optimistic that there 's hope for popular cinema yet . 1587 First-time writer-director Serry shows a remarkable gift for storytelling with this moving , effective little film . 1588 It 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 . 1589 Atom Egoyan has conjured up a multilayered work that tackles any number of fascinating issues 1590 essentially an exceptionally well-written , well-edited , well-directed , well-acted , bald rip-off of Aliens . 1591 ` De Niro ... is a veritable source of sincere passion that this Hollywood contrivance orbits around . ' 1592 The whole is quite entertaining , but despite its virtues , there is an unsettled feeling to the film . 1593 While its careful pace and seemingly opaque story may not satisfy every moviegoer 's appetite , the film 's final scene is soaringly , transparently moving . 1594 Hardly a masterpiece , but it introduces viewers to a good charitable enterprise and some interesting real people . 1595 Based on a devilishly witty script by Heather McGowan and Niels Mueller , the film gets great laughs , but never at the expense of its characters 1596 It '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 . 1597 If you 've ever wondered what an ending without the input of studio executives or test audiences would look like , here it is . 1598 Exciting and direct , with ghost imagery that shows just enough to keep us on our toes . 1599 Whether 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 . 1600 What 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 . 1601 If you enjoy more thoughtful comedies with interesting conflicted characters ; this one is for you . 1602 The 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 . 1603 This film seems thirsty for reflection , itself taking on adolescent qualities . 1604 Another 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 . 1605 A breezy romantic comedy that has the punch of a good sitcom , while offering exceptionally well-detailed characters . 1606 A romantic comedy enriched by a sharp eye for manners and mores . 1607 Viewers of `` The Ring '' are more likely to remember the haunting images than the plot holes . 1608 A delightful coming-of-age story . 1609 One of those energetic surprises , an original that pleases almost everyone who sees it . 1610 An exquisitely crafted and acted tale . 1611 A taut psychological thriller that does n't waste a moment of its two-hour running time . 1612 Jones ... does offer a brutal form of charisma . 1613 Despite its title , Punch-Drunk Love is never heavy-handed . 1614 The jabs it employs are short , carefully placed and dead-center . 1615 There 's a wickedly subversive bent to the best parts of Birthday Girl . 1616 Likely to expertly drum up repressed teenage memories in any viewer . 1617 Blanchett 's performance confirms her power once again . 1618 ... a magnificent drama well worth tracking down . 1619 A good piece of work more often than not . 1620 The 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 . 1621 What 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 . 1622 Smart , provocative and blisteringly funny . 1623 Nothing is sacred in this gut-buster . 1624 The movie occasionally threatens to become didactic , but it 's too grounded in the reality of its characters to go over the edge . 1625 A touch of humor or an unexpected plot twist always pulls it back . 1626 Filmmakers who can deftly change moods are treasures and even marvels . 1627 So , too , is this comedy about mild culture clashing in today 's New Delhi . 1628 If Steven Soderbergh 's ` Solaris ' is a failure it is a glorious failure . 1629 `` Mostly Martha '' is a bright , light modern day family parable that wears its heart on its sleeve for all to see . 1630 It 's a scattershot affair , but when it hits its mark it 's brilliant . 1631 A pleasant enough romance with intellectual underpinnings , the kind of movie that entertains even as it turns maddeningly predictable . 1632 Featuring a dangerously seductive performance from the great Daniel Auteuil , `` Sade '' covers the same period as Kaufmann 's `` Quills '' with more unsettlingly realistic results . 1633 A spellbinding African film about the modern condition of rootlessness , a state experienced by millions around the globe . 1634 It 's a work by an artist so in control of both his medium and his message that he can improvise like a jazzman . 1635 A 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 . 1636 A very well-made , funny and entertaining picture . 1637 A giggle-inducing comedy with snappy dialogue and winning performances by an unlikely team of Oscar-winners : Susan Sarandon and Goldie Hawn . 1638 Its 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 . 1639 Oscar Wilde 's masterpiece , The Importance of Being Earnest , may be the best play of the 19th century . 1640 It 's so good that its relentless , polished wit can withstand not only inept school productions , but even Oliver Parker 's movie adaptation . 1641 The movie does a good job of laying out some of the major issues that we encounter as we journey through life . 1642 Brilliantly explores the conflict between following one 's heart and following the demands of tradition . 1643 This remake gets all there is to get out of a peculiar premise with promise : Al Pacino loathing Robin Williams . 1644 The next generation of mob movie . 1645 Part low rent Godfather . 1646 Part Three Stooges . 1647 Lan 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 . 1648 A thinly veiled look at different aspects of Chinese life clashing with each other . 1649 Light years \/ several warp speeds \/ levels and levels of dilithium crystals better than the pitiful Insurrection . 1650 Which is n't to say that it 's the equal of some of its predecessors . 1651 If 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 . 1652 The Lion King was a roaring success when it was released eight years ago , but on Imax it seems better , not just bigger . 1653 A gripping movie , played with performances that are all understated and touching . 1654 The piece plays as well as it does thanks in large measure to Anspaugh 's three lead actresses . 1655 The inspirational screenplay by Mike Rich covers a lot of ground , perhaps too much , but ties things together , neatly , by the end . 1656 Not 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 . 1657 Director Andrew Niccol ... demonstrates a wry understanding of the quirks of fame . 1658 His healthy sense of satire is light and fun ... 1659 About a manga-like heroine who fights back at her abusers , it 's energetic and satisfying if not deep and psychological . 1660 This is human comedy at its most amusing , interesting and confirming . 1661 An artful , intelligent film that stays within the confines of a well-established genre . 1662 Majidi is an unconventional storyteller , capable of finding beauty in the most depressing places . 1663 Richard Gere and Diane Lane put in fine performances as does French actor Oliver Martinez . 1664 The minor figures surrounding -LRB- Bobby -RRB- ... form a gritty urban mosaic . 1665 This 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 . 1666 It '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 . 1667 There 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 . 1668 All-in-all , the film is an enjoyable and frankly told tale of a people who live among us , but not necessarily with us . 1669 An 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 . '' 1670 A movie with a real anarchic flair . 1671 A welcome relief from baseball movies that try too hard to be mythic , this one is a sweet and modest and ultimately winning story . 1672 A crisp psychological drama -LRB- and -RRB- a fascinating little thriller that would have been perfect for an old `` Twilight Zone '' episode . 1673 It has more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing . 1674 Opening with some contrived banter , cliches and some loose ends , the screenplay only comes into its own in the second half . 1675 An uncluttered , resonant gem that relays its universal points without lectures or confrontations . ' 1676 -LRB- The Cockettes -RRB- provides a window into a subculture hell-bent on expressing itself in every way imaginable . ' 1677 A smart , steamy mix of road movie , coming-of-age story and political satire . 1678 The modern-day royals have nothing on these guys when it comes to scandals . 1679 It 's only in fairy tales that princesses that are married for political reason live happily ever after . 1680 A terrific B movie -- in fact , the best in recent memory . 1681 `` Birthday Girl '' is an actor 's movie first and foremost . 1682 I walked away from this new version of E.T. just as I hoped I would -- with moist eyes . 1683 For devotees of French cinema , Safe Conduct is so rich with period minutiae it 's like dying and going to celluloid heaven . 1684 What 's really so appealing about the characters is their resemblance to everyday children . 1685 Shamelessly 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 1686 An absurdist spider web . 1687 If 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 . 1688 This 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 . 1689 Some movies blend together as they become distant memories . 1690 Mention `` Solaris '' five years from now and I 'm sure those who saw it will have an opinion to share . 1691 Allen 's funniest and most likeable movie in years . 1692 It 's a glorious spectacle like those D.W. Griffith made in the early days of silent film . 1693 This comic gem is as delightful as it is derivative . 1694 More 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 . 1695 The 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 . 1696 With 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 . 1697 The production has been made with an enormous amount of affection , so we believe these characters love each other . 1698 Certainly the performances are worthwhile . 1699 Winds 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 . 1700 Watching these eccentrics is both inspiring and pure joy . 1701 Steven Spielberg brings us another masterpiece 1702 Finally , the French-produced `` Read My Lips '' is a movie that understands characters must come first . 1703 Ms. Seigner and Mr. Serrault bring fresh , unforced naturalism to their characters . 1704 Allen shows he can outgag any of those young whippersnappers making moving pictures today . 1705 A good film with a solid pedigree both in front of and , more specifically , behind the camera . 1706 By 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 . 1707 I 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 ! 1708 A literary detective story is still a detective story and aficionados of the whodunit wo n't be disappointed . 1709 High Crimes steals so freely from other movies and combines enough disparate types of films that it ca n't help but engage an audience . 1710 If you 're a fan of the series you 'll love it and probably want to see it twice . 1711 I will be . 1712 It celebrates the group 's playful spark of nonconformity , glancing vividly back at what Hibiscus grandly called his ` angels of light . ' 1713 The story ... is inspiring , ironic , and revelatory of just how ridiculous and money-oriented the record industry really is . 1714 It is also a testament to the integrity and vision of the band . 1715 Laced with liberal doses of dark humor , gorgeous exterior photography , and a stable-full of solid performances , No Such Thing is a fascinating little tale . 1716 Huppert '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 . 1717 Nair does n't treat the issues lightly . 1718 She allows each character to confront their problems openly and honestly . 1719 One of the best silly horror movies of recent memory , with some real shocks in store for unwary viewers . 1720 The work of a filmmaker who has secrets buried at the heart of his story and knows how to take time revealing them . 1721 Strange occurrences build in the mind of the viewer and take on extreme urgency . 1722 Has a certain ghoulish fascination , and generates a fair amount of B-movie excitement . 1723 Familiar but utterly delightful . 1724 A fascinating , dark thriller that keeps you hooked on the delicious pulpiness of its lurid fiction . 1725 The film aims to be funny , uplifting and moving , sometimes all at once . 1726 The extent to which it succeeds is impressive . 1727 The film brilliantly shines on all the characters , as the direction is intelligently accomplished . 1728 While 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 . 1729 As 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 . 1730 In 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 . 1731 Jeffrey Tambor 's performance as the intelligent jazz-playing exterminator is Oscar-worthy . 1732 From the opening strains of the Average White Band 's `` Pick up the Pieces '' , you can feel the love . 1733 Stevens ' vibrant creative instincts are the difference between this and countless other flicks about guys and dolls . 1734 that it 'll probably be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture 1735 Old 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 . 1736 Meyjes ' provocative film might be called an example of the haphazardness of evil . 1737 Tian emphasizes the isolation of these characters by confining color to Liyan 's backyard . 1738 The movie is pretty funny now and then without in any way demeaning its subjects . 1739 imagine a scenario where Bergman approaches Swedish fatalism using Gary Larson 's Far Side humor 1740 Too damn weird to pass up , and for the blacklight crowd , way cheaper -LRB- and better -RRB- than Pink Floyd tickets . 1741 It is most remarkable not because of its epic scope , but because of the startling intimacy it achieves despite that breadth . 1742 It 's not a great monster movie . 1743 But if you 've paid a matinee price and bought a big tub of popcorn , there 's guilty fun to be had here . 1744 Chomp chomp ! 1745 The 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 . 1746 Others , 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 . 1747 Miller tells this very compelling tale with little fuss or noise , expertly plucking tension from quiet . 1748 Time Out is existential drama without any of the pretension associated with the term . 1749 It 's a sweet , laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth . 1750 Writer\/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 . 1751 A movie that at its best does n't just make the most out of its characters ' flaws but insists on the virtue of imperfection . 1752 It 's tough to watch , but it 's a fantastic movie . 1753 The best animated feature to hit theaters since Beauty and the Beast 11 years ago . 1754 What saves this deeply affecting film from being merely a collection of wrenching cases is Corcuera 's attention to detail . 1755 Pacino is the best he 's been in years and Keener is marvelous . 1756 A solid , spooky entertainment worthy of the price of a ticket . 1757 By turns fanciful , grisly and engagingly quixotic . 1758 ... very funny , very enjoyable ... 1759 Adaptation is intricately constructed and in a strange way nails all of Orlean 's themes without being a true adaptation of her book . 1760 So purely enjoyable that you might not even notice it 's a fairly straightforward remake of Hollywood comedies such as Father of the Bride . 1761 Moonlight Mile gives itself the freedom to feel contradictory things . 1762 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 . 1763 The 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 . 1764 Robin Williams has thankfully ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side . 1765 If you 're willing to have fun with it , you wo n't feel cheated by the high infidelity of Unfaithful . 1766 Australia : Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place . 1767 Hoffman 's performance is authentic to the core of his being . 1768 Told just proficiently enough to trounce its overly comfortable trappings . 1769 An enthralling aesthetic experience , one that 's steeped in mystery and a ravishing , baroque beauty . 1770 The quirky drama touches the heart and the funnybone thanks to the energetic and always surprising performance by Rachel Griffiths . 1771 A captivating coming-of-age story that may also be the first narrative film to be truly informed by the wireless age . 1772 What could have been a daytime soap opera is actually a compelling look at a young woman 's tragic odyssey . 1773 Duvall is strong as always . 1774 A no-holds-barred cinematic treat . 1775 You 'd have to be a most hard-hearted person not to be moved by this drama . 1776 Allen 's underestimated charm delivers more goodies than lumps of coal . 1777 Measured 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 . 1778 An exhilarating serving of movie fluff . 1779 Maelstrom is strange and compelling , engrossing and different , a moral tale with a twisted sense of humor . 1780 It makes you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film . 1781 Dark and disturbing , yet compelling to watch . 1782 Too often , Son of the Bride becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if . '' 1783 The 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 . 1784 A solid piece of journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy . 1785 A terrific insider look at the star-making machinery of tinseltown . 1786 It 's a diverting enough hour-and-a-half for the family audience . 1787 A party-hearty teen flick that scalds like acid . 1788 As giddy and whimsical and relevant today as it was 270 years ago . 1789 The film offers an intriguing what-if premise . 1790 The Pianist is the film Roman Polanski may have been born to make . 1791 This version does justice both to Stevenson and to the sci-fi genre . 1792 Poignant and delicately complex . 1793 Enough may pander to our basest desires for payback , but unlike many revenge fantasies , it ultimately delivers . 1794 Cho '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 . 1795 In 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 . 1796 Despite the film 's shortcomings , the stories are quietly moving . 1797 Those who love Cinema Paradiso will find the new scenes interesting , but few will find the movie improved . 1798 If you come from a family that eats , meddles , argues , laughs , kibbitzes and fights together , then go see this delightful comedy . 1799 This 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 . 1800 The reason to see `` Sade '' lay with the chemistry and complex relationship between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- . 1801 It '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 . 1802 The 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 . 1803 ... best seen as speculative history , as much an exploration of the paranoid impulse as a creative sequel to the Warren Report . 1804 It has its faults , but it is a kind , unapologetic , sweetheart of a movie , and Mandy Moore leaves a positive impression . 1805 The 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 . 1806 Despite 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 . 1807 Flawed , but worth seeing for Ambrose 's performance . 1808 With 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 . 1809 The humor and humanity of Monsoon Wedding are in perfect balance . 1810 Lookin ' for sin , American-style ? 1811 Try Hell House , which documents the cautionary Christian spook-a-rama of the same name . 1812 A compelling motion picture that illustrates an American tragedy . 1813 As comedic spotlights go , Notorious C.H.O. hits all the verbal marks it should . 1814 It 's a day at the beach -- with air conditioning and popcorn . 1815 Frida is n't that much different from many a Hollywood romance . 1816 What sets it apart is the vision that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings . 1817 Stevens has a flair for dialogue comedy , the film operates nicely off the element of surprise , and the large cast is solid . 1818 Extremely well acted by the four primary actors , this is a seriously intended movie that is not easily forgotten . 1819 The film exudes the urbane sweetness that Woody Allen seems to have bitterly forsaken . 1820 K-19 : The Widowmaker is derivative , overlong , and bombastic -- yet surprisingly entertaining . 1821 It 's good , hard-edged stuff , violent and a bit exploitative but also nicely done , morally alert and street-smart . 1822 Cineasts 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 . 1823 It 's a rare window on an artistic collaboration . 1824 ... begins with promise , but runs aground after being snared in its own tangled plot . 1825 Perhaps the best sports movie I 've ever seen . 1826 Cho 's timing is priceless . 1827 ... 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 . 1828 A sensitive , moving , brilliantly constructed work . 1829 An edgy thriller that delivers a surprising punch . 1830 A reasonably entertaining sequel to 1994 's surprise family hit that may strain adult credibility . 1831 -LRB- Reno -RRB- delivers a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion . 1832 there is truth here 1833 a confident , richly acted , emotionally devastating piece of work and 2002 's first great film 1834 A touching , small-scale story of family responsibility and care in the community . 1835 Arteta directs one of the best ensemble casts of the year 1836 The casting of von Sydow ... is itself Intacto 's luckiest stroke . 1837 No , it 's not as single-minded as John Carpenter 's original , but it 's sure a lot smarter and more unnerving than the sequels . 1838 A gem of a romantic crime comedy that turns out to be clever , amusing and unpredictable . 1839 Stands 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 . 1840 ... 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 ... 1841 This movie got me grinning . 1842 There 's a part of us that can not help be entertained by the sight of someone getting away with something . 1843 An 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 . 1844 What '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 ' ? 1845 This English-language version ... does full honor to Miyazaki 's teeming and often unsettling landscape , and to the conflicted complexity of his characters . 1846 The 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 . 1847 Not 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 . 1848 There are no special effects , and no Hollywood endings . 1849 Like the original , this version is raised a few notches above kiddie fantasy pablum by Allen 's astringent wit . 1850 Despite 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 . 1851 A brutally honest documentary about a much anticipated family reunion that goes wrong thanks to culture shock and a refusal to empathize with others . 1852 Filled with honest performances and exceptional detail , Baran is a gentle film with dramatic punch , a haunting ode to humanity . 1853 Sparkles in its deft portrait of Tinseltown 's seasoned veterans of gossip , wealth , paranoia , and celebrityhood . 1854 In 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 . 1855 ... a triumph of emotionally and narratively complex filmmaking . 1856 -LRB- Haynes ' -RRB- homage to such films as `` All That Heaven Allows '' and `` Imitation of Life '' transcends them . 1857 Simply put , `` Far From Heaven '' is a masterpiece . 1858 An intense and effective film about loneliness and the chilly anonymity of the environments where so many of us spend so much of our time . 1859 Although 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 . 1860 Proves mainly that South Korean filmmakers can make undemanding action movies with all the alacrity of their Hollywood counterparts . 1861 A 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 . 1862 Top-notch action powers this romantic drama . 1863 Beresford nicely mixes in as much humor as pathos to take us on his sentimental journey of the heart . 1864 It really is a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn . ' 1865 I 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 . 1866 Probably the best case for Christianity since Chesterton and Lewis . 1867 A 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 . 1868 Would 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 . 1869 Visually fascinating ... an often intense character study about fathers and sons , loyalty and duty . 1870 A lyrical metaphor for cultural and personal self-discovery and a picaresque view of a little-remembered world . 1871 Schü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 . 1872 A slick , engrossing melodrama . 1873 S1M0NE 's satire is not subtle , but it is effective . 1874 It 's a quirky , off-beat project . 1875 While 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 . 1876 Even 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 . 1877 The solid filmmaking and convincing characters makes this a high water mark for this genre . 1878 Films about loss , grief and recovery are pretty valuable these days . 1879 Seen in that light , Moonlight Mile should strike a nerve in many . 1880 It 's endlessly inventive , consistently intelligent and sickeningly savage . 1881 It is definitely worth seeing . 1882 An impeccable study in perversity . 1883 Far From Heaven is a dazzling conceptual feat , but more than that , it 's a work of enthralling drama . 1884 A movie that both thrills the eye and , in its over-the-top way , touches the heart . 1885 Stuffed 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 . 1886 Affectionately reminds us that , in any language , the huge stuff in life can usually be traced back to the little things . 1887 A drama of great power , yet some members of the audience will leave the theater believing they have seen a comedy . 1888 The 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 . 1889 The result is more depressing than liberating , but it 's never boring . 1890 A story about intelligent high school students that deals with first love sweetly but also seriously . 1891 It is also beautifully acted . 1892 It is n't that the picture is unfamiliar , but that it manages to find new avenues of discourse on old problems . 1893 Same song , second verse , coulda been better , but it coulda been worse . 1894 It 's a technically superb film , shining with all the usual Spielberg flair , expertly utilizing the talents of his top-notch creative team . 1895 Wilco fans will have a great time , and the movie should win the band a few new converts , too . 1896 Tsai 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 . 1897 The date movie that Franz Kafka would have made . 1898 The 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 . 1899 Leguizamo and Jones are both excellent and the rest of the cast is uniformly superb . 1900 I liked this film a lot ... 1901 ... 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 . 1902 A solid and refined piece of moviemaking imbued with passion and attitude . 1903 Nettelbeck has crafted an engaging fantasy of flavours and emotions , one part romance novel , one part recipe book . 1904 With or without the sex , a wonderful tale of love and destiny , told well by a master storyteller 1905 On 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 . 1906 A weird , arresting little ride . 1907 A fine film , but it would be a lot better if it stuck to Betty Fisher and left out the other stories . 1908 A first-class road movie that proves you can run away from home , but your ego and all your problems go with you . 1909 You might want to take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead . 1910 Well cast and well directed - a powerful drama with enough sardonic wit to keep it from being maudlin . 1911 A backstage must-see for true fans of comedy . 1912 There 's back-stabbing , inter-racial desire and , most importantly , singing and dancing . 1913 The 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 . 1914 Jones ... 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 . 1915 In 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 1916 Below may not mark Mr. Twohy 's emergence into the mainstream , but his promise remains undiminished . 1917 There 's no reason to miss Interview with the Assassin 1918 Happily stays close to the ground in a spare and simple manner and does n't pummel us with phony imagery or music . 1919 Its sheer dynamism is infectious . 1920 For his first attempt at film noir , Spielberg presents a fascinating but flawed look at the near future . 1921 it somehow managed to make its way past my crappola radar and find a small place in my heart 1922 Perhaps it 's cliche to call the film ` refreshing , ' but it is . 1923 ` Drumline ' shows a level of young , Black manhood that is funny , touching , smart and complicated . 1924 It does give a taste of the Burning Man ethos , an appealing blend of counter-cultural idealism and hedonistic creativity . 1925 The limited sets and small confined and dark spaces also are homages to a classic low-budget film noir movie . 1926 The movie is well done , but slow . 1927 -LRB- A -RRB- wonderfully loopy tale of love , longing , and voting . 1928 The 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 . 1929 The last scenes of the film are anguished , bitter and truthful . 1930 Mr. Koshashvili is a director to watch . 1931 Predictable storyline and by-the-book scripting is all but washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell . 1932 Antwone 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 . 1933 One 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 . 1934 It challenges , this nervy oddity , like modern art should . 1935 Whenever you think you 've figured out Late Marriage , it throws you for a loop . 1936 The Pianist is Polanski 's best film . 1937 It is a testament of quiet endurance , of common concern , of reconciled survival . 1938 This Orange has some juice , but it 's far from fresh-squeezed . 1939 A sensitive , modest comic tragedy that works as both character study and symbolic examination of the huge economic changes sweeping modern China . 1940 High Crimes knows the mistakes that bad movies make and is determined not to make them , and maybe that is nobility of a sort . 1941 Cusack 's just brilliant in this . 1942 Knows how to make our imagination wonder . 1943 Jae-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 . 1944 The overall fabric is hypnotic , and Mr. Mattei fosters moments of spontaneous intimacy . 1945 Evokes a palpable sense of disconnection , made all the more poignant by the incessant use of cell phones . 1946 Malcolm McDowell is cool . 1947 Paul Bettany is cool . 1948 Paul Bettany playing Malcolm McDowell ? 1949 Cool . 1950 A touching , sophisticated film that almost seems like a documentary in the way it captures an Italian immigrant family on the brink of major changes . 1951 ... a trashy little bit of fluff stuffed with enjoyable performances and a bewildering sense of self-importance 1952 An inventive , absorbing movie that 's as hard to classify as it is hard to resist . 1953 It made me want to get made-up and go see this movie with my sisters . 1954 I thought the relationships were wonderful , the comedy was funny , and the love ` real ' . 1955 -LRB- Caine -RRB- proves once again he has n't lost his touch , bringing off a superb performance in an admittedly middling film . 1956 Bogdanovich puts history in perspective and , via Kirsten Dunst 's remarkable performance , he showcases Davies as a young woman of great charm , generosity and diplomacy . 1957 This breezy caper movie becomes a soulful , incisive meditation on the way we were , and the way we are . 1958 A captivating new film . 1959 Those who are n't put off by the film 's austerity will find it more than capable of rewarding them . 1960 It 's a clear-eyed portrait of an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties . 1961 Reveals how important our special talents can be when put in service of of others . 1962 It also shows how deeply felt emotions can draw people together across the walls that might otherwise separate them . 1963 With the same sort of good-natured fun found in films like Tremors , Eight Legged Freaks is prime escapist fare . 1964 A sharp , amusing study of the cult of celebrity . 1965 The sentimental cliches mar an otherwise excellent film . 1966 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 . 1967 A 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 . 1968 A 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 . 1969 Made to be Jaglomized is the Cannes Film Festival , the annual Riviera spree of flesh , buzz , blab and money . 1970 The charming result is Festival in Cannes . 1971 If you 're looking for something new and hoping for something entertaining , you 're in luck . 1972 A 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 . 1973 A rip-roaring comedy action fest that 'll put hairs on your chest . 1974 If there 's no art here , it 's still a good yarn -- which is nothing to sneeze at these days . 1975 Simultaneously heart-breaking and very funny , The Last Kiss is really all about performances . 1976 There is a subversive element to this Disney cartoon , providing unexpected fizzability . 1977 An unforgettable look at morality , family , and social expectation through the prism of that omnibus tradition called marriage . 1978 An enjoyable , if occasionally flawed , experiment . 1979 Miyazaki is one of world cinema 's most wondrously gifted artists and storytellers . 1980 If Ayurveda can help us return to a sane regimen of eating , sleeping and stress-reducing contemplation , it is clearly a good thing . 1981 Meeting , 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 . 1982 Leigh is one of the rare directors who feels acting is the heart and soul of cinema . 1983 He allows his cast members to make creative contributions to the story and dialogue . 1984 This method almost never fails him , and it works superbly here . 1985 Poetry in motion captured on film . 1986 While it can be a bit repetitive , overall it 's an entertaining and informative documentary . 1987 Directing 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 . 1988 The entire movie establishes a wonderfully creepy mood . 1989 I found The Ring moderately absorbing , largely for its elegantly colorful look and sound . 1990 The filmmakers want nothing else than to show us a good time , and in their cheap , B movie way , they succeed . 1991 Amari has dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances . 1992 Rabbit-Proof Fence will probably make you angry . 1993 But 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 . 1994 Both heartbreaking and heartwarming ... just a simple fable done in an artless sytle , but it 's tremendously moving . 1995 This masterfully calibrated psychological thriller thrives on its taut performances and creepy atmosphere even if the screenplay falls somewhat short . 1996 The film 's sense of imagery gives it a terrible strength , but it 's propelled by the acting . 1997 The Pianist -LRB- is -RRB- a supremely hopeful cautionary tale of war 's madness remembered that we , today , can prevent its tragic waste of life . 1998 Here is a divine monument to a single man 's struggle to regain his life , his dignity and his music . 1999 Strange it is , but delightfully so . 2000 Elegant , mannered and teasing . 2001 An average coming-of-age tale elevated by the wholesome twist of a pesky mother interfering during her son 's discovery of his homosexuality . 2002 The ingenuity that Parker displays in freshening the play is almost in a class with that of Wilde himself . 2003 Decasia is what has happened already to so many silent movies , newsreels and the like . 2004 The unexpected thing is that its dying , in this shower of black-and-white psychedelia , is quite beautiful . 2005 A droll , bitchy frolic which pokes fun at the price of popularity and small-town pretension in the Lone Star State . 2006 With 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 . 2007 Ryan Gosling ... is at 22 a powerful young actor . 2008 A minor work yet there 's no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure . 2009 As 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 . 2010 The film is a verbal duel between two gifted performers . 2011 Imperfect ? 2012 Yes , but also intriguing and honorable , a worthwhile addition to a distinguished film legacy . 2013 You 'll get the enjoyable basic minimum . 2014 But not a whit more . 2015 What a great way to spend 4 units of your day . 2016 The movie is hardly a masterpiece , but it does mark Ms. Bullock 's best work in some time . 2017 As simple and innocent a movie as you can imagine . 2018 This is a movie you can trust . 2019 Passionate , 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 . 2020 `` It 's all about the image . '' 2021 Vividly 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 . 2022 Hollywood Ending is not show-stoppingly hilarious , but scathingly witty nonetheless . 2023 Maybe Thomas Wolfe was right : You ca n't go home again . 2024 A compelling yarn , but not quite a ripping one . 2025 On 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 . 2026 The film has several strong performances . 2027 I 've never bought from telemarketers , but I bought this movie . 2028 Perfectly 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 . 2029 The funny thing is , I did n't mind all this contrived nonsense a bit . 2030 -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 . 2031 A 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 . 2032 An entertaining documentary that freshly considers arguments the Bard 's immortal plays were written by somebody else . 2033 A 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 ? 2034 Call it magic realism or surrealism , but Miss Wonton floats beyond reality with a certain degree of wit and dignity . 2035 Raimi and his team could n't have done any better in bringing the story of Spider-Man to the big screen . 2036 The director explores all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut . 2037 Well-acted , well-directed and , for all its moodiness , not too pretentious . 2038 It 's a satisfying summer blockbuster and worth a look . 2039 Boomers and their kids will have a Barrie good time . 2040 Real 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 . 2041 Ultimately , `` MIB II '' succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless . 2042 Stage director Sam Mendes showcases Tom Hanks as a depression era hit-man in this dark tale of revenge . 2043 Sitting 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 2044 The 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 . 2045 What 's so fun about this silly , outrageous , ingenious thriller is the director 's talent . 2046 Watching a Brian DePalma movie is like watching an Alfred Hitchcock movie after drinking twelve beers . 2047 Strip it of all its excess debris , and you 'd have a 90-minute , four-star movie . 2048 As it is , it 's too long and unfocused . 2049 An immensely entertaining look at some of the unsung heroes of 20th century pop music . 2050 This 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 . 2051 This beautifully animated epic is never dull . 2052 Brian Tufano 's handsome widescreen photography and Paul Grabowsky 's excellent music turn this fairly parochial melodrama into something really rather special . 2053 It makes compelling , provocative and prescient viewing . 2054 A thoroughly entertaining comedy that uses Grant 's own twist of acidity to prevent itself from succumbing to its own bathos . 2055 Using a stock plot , About a Boy injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater . 2056 What Eric Schaeffer has accomplished with Never Again may not , strictly speaking , qualify as revolutionary . 2057 But it 's defiantly and delightfully against the grain . 2058 The 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 . 2059 A positively thrilling combination of ethnography and all the intrigue , betrayal , deceit and murder of a Shakespearean tragedy or a juicy soap opera . 2060 Mr. 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 . 2061 Definitely funny stuff , but it 's more of the ` laughing at ' variety than the ` laughing with . ' 2062 Easily the most thoughtful fictional examination of the root causes of anti-Semitism ever seen on screen . 2063 A real winner -- smart , funny , subtle , and resonant . 2064 Family portrait of need , neurosis and nervy negativity is a rare treat that shows the promise of digital filmmaking . 2065 The pitch must have read like a discarded House Beautiful spread . 2066 Uplifting as only a document of the worst possibilities of mankind can be , and among the best films of the year . 2067 Director David Jacobson gives Dahmer a consideration that the murderer never game his victims . 2068 The film has a terrific look and Salma Hayek has a feel for the character at all stages of her life . 2069 A decided lack of spontaneity in its execution and a dearth of real poignancy in its epiphanies . 2070 The performances are remarkable . 2071 It 's Burns ' visuals , characters and his punchy dialogue , not his plot , that carry waydowntown . 2072 As literary desecrations go , this makes for perfectly acceptable , occasionally very enjoyable children 's entertainment . 2073 You 'll forget about it by Monday , though , and if they 're old enough to have developed some taste , so will your kids . 2074 While 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 . 2075 Strange , funny , twisted , brilliant and macabre . 2076 A genuinely moving and wisely unsentimental drama . 2077 Heaven is a haunting dramatization of a couple 's moral ascension . 2078 The Mothman Prophecies is best when illustrating the demons bedevilling the modern masculine journey . 2079 Plays out with a dogged and eventually winning squareness that would make it the darling of many a kids-and-family-oriented cable channel . 2080 An entertaining British hybrid of comedy , caper thrills and quirky romance . 2081 Alain 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 . 2082 Mostly 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 . 2083 The only pain you 'll feel as the credits roll is your stomach grumbling for some tasty grub . 2084 Hardly 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 . 2085 The mark of a respectable summer blockbuster is one of two things : unadulterated thrills or genuine laughs . 2086 The film is visually dazzling , the depicted events dramatic , funny and poignant . 2087 A directorial tour de force by Bernard Rose , ivans xtc . 2088 is one of this year 's very best pictures . 2089 What makes the movie work -- to an admittedly limited extent -- is the commitment of two genuinely engaging performers . 2090 Weaver and LaPaglia are both excellent , in the kind of low-key way that allows us to forget that they are actually movie folk . 2091 Even the digressions are funny . 2092 Mr. Spielberg and his company just want you to enjoy yourselves without feeling conned . 2093 And they succeed merrily at their noble endeavor . 2094 Melodrama with a message . 2095 A perfectly pleasant if slightly pokey comedy . 2096 Coppola '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 . 2097 At 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 . 2098 Wang 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 . 2099 It '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 . 2100 Bogdanovich taps deep into the Hearst mystique , entertainingly reenacting a historic scandal . 2101 A moving tale of love and destruction in unexpected places , unexamined lives . 2102 Clooney directs this film always keeping the balance between the fantastic and the believable ... 2103 Even 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 . 2104 ... a lesson in prehistoric hilarity . 2105 A fantastically vital movie that manages to invest real humor , sensuality , and sympathy into a story about two adolescent boys . 2106 Lawrence plumbs personal tragedy and also the human comedy . 2107 Though a capable thriller , somewhere along the way K-19 jettisoned some crucial drama . 2108 Just about the surest bet for an all-around good time at the movies this summer . 2109 It 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 . 2110 This is a movie that is what it is : a pleasant distraction , a Friday night diversion , an excuse to eat popcorn . 2111 There is a certain sense of experimentation and improvisation to this film that may not always work , but it is nevertheless compelling . 2112 The Four Feathers has rewards , from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes . 2113 A delicious , quirky movie with a terrific screenplay and fanciful direction by Michael Gondry . 2114 This story still seems timely and important . 2115 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 . 2116 The bodily function jokes are about what you 'd expect , but there are rich veins of funny stuff in this movie . 2117 The performances are amiable and committed , and the comedy more often than not hits the bullseye . 2118 This 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 . 2119 There 's plenty to enjoy -- in no small part thanks to Lau . 2120 With a romantic comedy plotline straight from the ages , this Cinderella story does n't have a single surprise up its sleeve . 2121 But it does somehow manage to get you under its spell . 2122 Though 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 . 2123 `` Catch Me '' feels capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark . 2124 By no means a great movie , but it is a refreshingly forthright one . 2125 The casting of Raymond J. Barry as the ` assassin ' greatly enhances the quality of Neil Burger 's impressive fake documentary . 2126 Despite 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 . 2127 This documentary is a dazzling , remarkably unpretentious reminder of what -LRB- Evans -RRB- had , lost , and got back . 2128 A thoughtful movie , a movie that is concerned with souls and risk and schemes and the consequences of one 's actions . 2129 As satisfyingly odd and intriguing a tale as it was a century and a half ago ... has a delightfully dour , deadpan tone and stylistic consistency . 2130 Methodical , 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 . 2131 A witty , trenchant , wildly unsentimental but flawed look at the ins and outs of modern moviemaking . 2132 For most of the distance the picture provides a satisfyingly unsettling ride into the dark places of our national psyche . 2133 By the standards of knucklehead swill , The Hot Chick is pretty damned funny . 2134 One of the most gloriously unsubtle and adrenalized extreme shockers since The Evil Dead . 2135 -LRB- Reaches -RRB- wholly believable and heart-wrenching depths of despair . 2136 An absorbing and unsettling psychological drama . 2137 This 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 . 2138 Though 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 . 2139 The entire cast is extraordinarily good . 2140 Yakusho , as always , is wonderful as the long-faced sad sack ... and his chemistry with Shimizu is very believable . 2141 Young Hanks and Fisk , who vaguely resemble their celebrity parents , bring fresh good looks and an ease in front of the camera to the work . 2142 A captivatingly quirky hybrid of character portrait , romantic comedy and beat-the-clock thriller . 2143 The film sparkles with the the wisdom and humor of its subjects . 2144 If -LRB- Jaglom 's -RRB- latest effort is not the director at his most sparkling , some of its repartee is still worth hearing . 2145 Like 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 . 2146 Just about the best straight-up , old-school horror film of the last 15 years . 2147 A chilling tale of one of the great crimes of 20th Century France : the murder of two rich women by their servants in 1933 . 2148 An oddity , to be sure , but one that you might wind up remembering with a degree of affection rather than revulsion . 2149 While the film is not entirely successful , it still manages to string together enough charming moments to work . 2150 A winning piece of work filled with love for the movies of the 1960s . 2151 E.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 . 2152 Helps to remind the First World that HIV\/AIDS is far from being yesterday 's news . 2153 A heartening tale of small victories and enduring hope . 2154 The vistas are sweeping and the acting is far from painful . 2155 Jackson and co have brought back the value and respect for the term epic cinema . 2156 It 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 2157 Charlotte Sometimes is a brilliant movie . 2158 It is about irrational , unexplainable life and it seems so real because it does not attempt to filter out the complexity . 2159 A delightful stimulus for the optic nerves , so much that it 's forgivable that the plot feels like every other tale of a totalitarian tomorrow . 2160 Defies logic , the laws of physics and almost anyone 's willingness to believe in it . 2161 But darned if it does n't also keep us riveted to our seats . 2162 A complex psychological drama about a father who returns to his son 's home after decades away . 2163 Writer 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 . 2164 This is NOT a retread of `` Dead Poets ' Society . '' 2165 Sweet and memorable film . 2166 A smart , arch and rather cold-blooded comedy . 2167 Keenly 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 . 2168 ... begins on a high note and sustains it beautifully . 2169 Davis ... gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences . 2170 ` 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 . 2171 Cynics need not apply . ' 2172 Funny , somber , absurd , and , finally , achingly sad , Bartleby is a fine , understated piece of filmmaking . 2173 `` Red Dragon '' is entertaining . 2174 An obvious copy of one of the best films ever made , how could it not be ? 2175 But it is entertaining on an inferior level . 2176 It is a popcorn film , not a must-own , or even a must-see . 2177 Succeeds only because Bullock and Grant were made to share the silver screen . 2178 Both flawed and delayed , Martin Scorcese 's Gangs of New York still emerges as his most vital work since GoodFellas . 2179 As 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 . 2180 On that score , the film certainly does n't disappoint . 2181 As 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 . 2182 A moving and solidly entertaining comedy\/drama that should bolster director and co-writer Juan José Campanella 's reputation in the United States . 2183 Thanks to confident filmmaking and a pair of fascinating performances , the way to that destination is a really special walk in the woods . 2184 Beautifully shot , delicately scored and powered by a set of heartfelt performances , it 's a lyrical endeavour . 2185 A 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 . 2186 A stylistic romp that 's always fun to watch . 2187 Informative , intriguing , observant , often touching ... gives a human face to what 's often discussed in purely abstract terms . 2188 ... once the true impact of the day unfolds , the power of this movie is undeniable . 2189 An honest , sensitive story from a Vietnamese point of view . 2190 A buoyant romantic comedy about friendship , love , and the truth that we 're all in this together . 2191 The 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 . 2192 It 's the perfect star vehicle for Grant , allowing him to finally move away from his usual bumbling , tongue-tied screen persona . 2193 Gaunt , silver-haired and leonine , -LRB- Harris -RRB- brings a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman . 2194 A disturbing examination of what appears to be the definition of a ` bad ' police shooting . 2195 It 's been made with an innocent yet fervid conviction that our Hollywood has all but lost . 2196 Not only a reminder of how they used to make movies , but also how they sometimes still can be made . 2197 A three-hour cinema master class . 2198 Eyre is on his way to becoming the American Indian Spike Lee . 2199 A witty , whimsical feature debut . 2200 Warm in its loving yet unforgivingly inconsistent depiction of everyday people , relaxed in its perfect quiet pace and proud in its message . 2201 I loved this film . 2202 It 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 . 2203 Clint 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 . 2204 A movie that will surely be profane , politically charged music to the ears of Cho 's fans . 2205 Much 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 . 2206 Rarely , a movie is more than a movie . 2207 Go . 2208 Jacquot '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 . 2209 Quitting 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 . 2210 By not averting his eyes , Solondz forces us to consider the unthinkable , the unacceptable , the unmentionable . 2211 One 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 . 2212 While 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 . 2213 A fascinating documentary that provides a rounded and revealing overview of this ancient holistic healing system 2214 Birthday 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 . 2215 An interesting look behind the scenes of Chicago-based rock group Wilco ... 2216 Sharp edges and a deep vein of sadness run through its otherwise comic narrative . 2217 There 's lots of cool stuff packed into ESPN 's Ultimate X. 2218 Rock solid family fun out of the gates , extremely imaginative through out , but wanes in the middle 2219 The Ya-Ya 's have many secrets and one is - the books are better . 2220 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 . 2221 The touch is generally light enough and the performances , for the most part , credible . 2222 I liked About Schmidt a lot , but I have a feeling that I would have liked it much more if Harry & Tonto never existed . 2223 Steers has an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \*\* holes . 2224 That Storytelling has value can not be denied . 2225 Not even Solondz 's thirst for controversy , sketchy characters and immature provocations can fully succeed at cheapening it . 2226 Once the downward spiral comes to pass , Auto Focus bears out as your typical junkie opera ... 2227 A knowing sense of humor and a lot of warmth ignite Son of the Bride . 2228 A rich tale of our times , very well told with an appropriate minimum of means . 2229 The characters are complex and quirky , but entirely believable as the remarkable ensemble cast brings them to life . 2230 In 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 . 2231 As 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 . 2232 Efficient , suitably anonymous chiller . 2233 Gorgeous scenes , masterful performances , but the sickly sweet gender normative narrative left an acrid test in this gourmet 's mouth . 2234 The 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 . 2235 It '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 . 2236 A memorable experience that , like many of his works , presents weighty issues colorfully wrapped up in his own idiosyncratic strain of kitschy goodwill . 2237 Executed 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 . 2238 The gentle comic treatment of adolescent sturm und drang should please fans of Chris Fuhrman 's posthumously published cult novel . 2239 Director Claude Chabrol has become the master of innuendo . 2240 It is not what you see , it is what you think you see . 2241 A deftly entertaining film , smartly played and smartly directed . 2242 A documentary to make the stones weep -- as shameful as it is scary . 2243 I hope the movie is widely seen and debated with appropriate ferocity and thoughtfulness . 2244 A thought-provoking look at how Western foreign policy - however well intentioned - can wreak havoc in other cultures . 2245 Asks what truth can be discerned from non-firsthand experience , and specifically questions cinema 's capability for recording truth . 2246 The journey to the secret 's eventual discovery is a separate adventure , and thrill enough . 2247 A quiet , disquieting triumph . 2248 Darkly funny and frequently insightful . 2249 ... the tale of her passionate , tumultuous affair with Musset unfolds as Sand 's masculine persona , with its love of life and beauty , takes form . 2250 If you want to see a train wreck that you ca n't look away from , then look no further , because here it is . 2251 There 's so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles . 2252 The search for redemption makes for a touching love story , mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering . 2253 A film of ideas and wry comic mayhem . 2254 At its worst the screenplay is callow , but at its best it is a young artist 's thoughtful consideration of fatherhood . 2255 A worthwhile documentary , whether you 're into rap or not , even if it may still leave you wanting more answers as the credits roll . 2256 Fessenden '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 . 2257 That the film opens with maggots crawling on a dead dog is not an out of place metaphor . 2258 Stanley Kwan has directed not only one of the best gay love stories ever made , but one of the best love stories of any stripe . 2259 The 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 . 2260 Norton holds the film together . 2261 -LRB- There 's -RRB- quite a bit of heart , as you would expect from the directors of The Little Mermaid and Aladdin . 2262 You wo n't have any trouble getting kids to eat up these Veggies . 2263 A creaky staircase gothic . 2264 Enjoyably dumb , sweet , and intermittently hilarious -- if you 've a taste for the quirky , steal a glimpse . 2265 A movie that sends you out of the theater feeling like you 've actually spent time living in another community . 2266 Light-years ahead of paint-by-number American blockbusters like Pearl Harbor , at least artistically . 2267 A fascinating documentary about the long and eventful spiritual journey of the guru who helped launch the New Age . 2268 Isabelle Huppert excels as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol 's most intense psychological mysteries . 2269 Perhaps 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 . 2270 Wedding feels a bit anachronistic . 2271 Still , not every low-budget movie must be quirky or bleak , and a happy ending is no cinematic sin . 2272 It 's still a comic book , but Maguire makes it a comic book with soul . 2273 Brings to a spectacular completion one of the most complex , generous and subversive artworks of the last decade . 2274 An amusing and unexpectedly insightful examination of sexual jealousy , resentment and the fine line between passion and pretence . 2275 A fascinating , bombshell documentary that should shame Americans , regardless of whether or not ultimate blame finally lies with Kissinger . 2276 Should be required viewing for civics classes and would-be public servants alike . 2277 Adaptation 's success in engaging the audience in the travails of creating a screenplay is extraordinary . 2278 A polished and vastly entertaining caper film that puts the sting back into the con . 2279 It 's no surprise that as a director Washington demands and receives excellent performances , from himself and from newcomer Derek Luke . 2280 ... while each moment of this broken character study is rich in emotional texture , the journey does n't really go anywhere . 2281 The film gets close to the chimps the same way Goodall did , with a serious minded patience , respect and affection . 2282 It 's an often-cute film but either needs more substance to fill the time or some judicious editing . 2283 This may be Burns 's strongest film since The Brothers McMullen . 2284 What 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 . 2285 It 's Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer . 2286 It 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 . 2287 Though not for everyone , The Guys is a somber trip worth taking . 2288 A sly female empowerment movie , although not in a way anyone would expect . 2289 You 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 . 2290 It 's a wonderful , sobering , heart-felt drama . 2291 Runs on the pure adrenalin of Pacino 's performance . 2292 The Paradiso 's rusted-out ruin and ultimate collapse during the film 's final -LRB- restored -RRB- third ... emotionally belittle a cinema classic . 2293 Sometimes shorter is better . 2294 Phillip 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 . 2295 The 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 . 2296 As a vehicle to savour Binoche 's skill , the film is well worthwhile . 2297 The huskies are beautiful , the border collie is funny and the overall feeling is genial and decent . 2298 Whatever 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 . 2299 Mastering its formidable arithmetic of cameras and souls , Group articulates a flood of emotion . 2300 A pretty decent kid-pleasing , tolerable-to-adults lark of a movie . 2301 Even during the climactic hourlong cricket match , boredom never takes hold . 2302 Combine the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural -- why did n't Hollywood think of this sooner ? 2303 Like Kubrick , Soderbergh is n't afraid to try any genre and to do it his own way . 2304 Nothing can detract from the affection of that moral favorite : friends will be friends through thick and thin . 2305 If the film has a problem , its shortness disappoints : You want the story to go on and on . 2306 Unlike most anime , whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes , Metropolis never seems hopelessly juvenile . 2307 The plot twists give I Am Trying to Break Your Heart an attraction it desperately needed . 2308 The 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 . 2309 Like 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 . 2310 The 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 . 2311 Flamboyant 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 . 2312 ... is there a deeper , more direct connection between these women , one that spans time and reveals meaning ? 2313 You bet there is and it 's what makes this rather convoluted journey worth taking . 2314 The most amazing super-sized dosage of goofball stunts any `` Jackass '' fan could want . 2315 Real Women may have many agendas , but it also will win you over , in a big way . 2316 Young Everlyn Sampi , as the courageous Molly Craig , simply radiates star-power potential in this remarkable and memorable film . 2317 Surprisingly powerful and universal . 2318 Apart 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 . 2319 I 'll put it this way : If you 're in the mood for a melodrama narrated by talking fish , this is the movie for you . 2320 Morvern Callar confirms Lynne Ramsay as an important , original talent in international cinema . 2321 Well-done supernatural thriller with keen insights into parapsychological phenomena and the soulful nuances of the grieving process . 2322 A plethora of engaging diatribes on the meaning of ` home , ' delivered in grand passion by the members of the various households . 2323 It 's technically sumptuous but also almost wildly alive . 2324 This film puts Wang at the forefront of China 's Sixth Generation of film makers . 2325 it 's refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original . 2326 Wiseman is patient and uncompromising , letting his camera observe and record the lives of women torn apart by a legacy of abuse . 2327 There '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 . 2328 An ingenious and often harrowing look at damaged people and how families can offer either despair or consolation . 2329 Arguably the best script that Besson has written in years . 2330 It 's no lie -- Big Fat Liar is a real charmer . 2331 Invigorating , surreal , and resonant with a rainbow of emotion . 2332 Director 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 . 2333 Pray has really done his subject justice . 2334 An unexpectedly sweet story of sisterhood . 2335 Maintains your sympathy for this otherwise challenging soul by letting you share her one-room world for a while . 2336 A subtle , humorous , illuminating study of politics , power and social mobility . 2337 Even if you have no interest in the gang-infested , East-vs . 2338 - West Coast rap wars , this modern mob music drama never fails to fascinate . 2339 Nair 's attention to detail creates an impeccable sense of place , while Thurman and Lewis give what can easily be considered career-best performances . 2340 Berry '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 2341 Red Dragon is less baroque and showy than Hannibal , and less emotionally affecting than Silence . 2342 But , like Silence , it 's a movie that gets under your skin . 2343 Caviezel embodies the transformation of his character completely . 2344 A creepy , intermittently powerful study of a self-destructive man ... about as unsettling to watch as an exploratory medical procedure or an autopsy . 2345 Pacino and Williams seem to keep upping the ante on each other , just as their characters do in the film . 2346 What results is the best performance from either in years . 2347 The cast is top-notch and I predict there will be plenty of female audience members drooling over Michael Idemoto as Michael . 2348 Béart and Berling are both superb , while Huppert ... is magnificent . 2349 All the actors are good in Pauline & Paulette but van der Groen , described as ` Belgium 's national treasure , ' is especially terrific as Pauline . 2350 Miyazaki has created such a vibrant , colorful world , it 's almost impossible not to be swept away by the sheer beauty of his images . 2351 Muccino 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 . 2352 But even while his characters are acting horribly , he is always sympathetic . 2353 Whether 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 . 2354 Ozpetek 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 . 2355 ... an eerily suspenseful , deeply absorbing piece that works as a treatise on spirituality as well as a solid sci-fi thriller . 2356 I 've never seen or heard anything quite like this film , and I recommend it for its originality alone . 2357 Nicole Kidman makes it a party worth attending . 2358 The direction has a fluid , no-nonsense authority , and the performances by Harris , Phifer and Cam ` ron seal the deal . 2359 The Komediant is a tale worth catching . 2360 The writing is clever and the cast is appealing . 2361 The simplicity of The Way Home has few equals this side of Aesop 2362 Life on the rez is no picnic : this picture shows you why . 2363 Spielberg has managed to marry science fiction with film noir and action flicks with philosophical inquiry . 2364 It '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 . 2365 A taut , sobering film . 2366 Exudes the fizz of a Busby Berkeley musical and the visceral excitement of a sports extravaganza . 2367 It 's full of cheesy dialogue , but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s . 2368 The results , if not memorable , are at least interesting . 2369 A quietly moving look back at what it was to be Iranian-American in 1979 . 2370 Like a veteran head cutter , Barbershop is tuned in to its community . 2371 I '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 . 2372 You live the mood rather than savour the story . 2373 Angela 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 . 2374 While there are times when the film 's reach exceeds its grasp , the production works more often than it does n't . 2375 While 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 . 2376 Watching this gentle , mesmerizing portrait of a man coming to terms with time , you barely realize your mind is being blown . 2377 The beautifully choreographed kitchen ballet is simple but absorbing . 2378 There 's ... an underlying Old World sexism to Monday Morning that undercuts its charm . 2379 `` The best Disney movie since the Lion King '' 2380 Transcends 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 . 2381 Think of it as Gidget , only with muscles and a lot more smarts , but just as endearing and easy to watch . 2382 There is no solace here , no entertainment value , merely a fierce lesson in where filmmaking can take us . 2383 Giggling at the absurdities and inconsistencies is part of the fun . 2384 But the talented cast alone will keep you watching , as will the fight scenes . 2385 Arteta paints a picture of lives lived in a state of quiet desperation . 2386 Drug abuse , infidelity and death are n't usually comedy fare , but Turpin 's film allows us to chuckle through the angst . 2387 While 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 . 2388 Efteriades gives the neighborhood -- scenery , vibe and all -- the cinematic equivalent of a big , tender hug . 2389 This is a nicely handled affair , a film about human darkness but etched with a light -LRB- yet unsentimental -RRB- touch . 2390 Amazing ! 2391 A college story that works even without vulgarity , sex scenes , and cussing ! 2392 The 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 . 2393 A raunchy and frequently hilarious follow-up to the gifted Korean American stand-up 's I 'm the One That I Want . 2394 If you ever wanted to be an astronaut , this is the ultimate movie experience - it 's informative and breathtakingly spectacular . 2395 While 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 . 2396 A smart , sassy and exceptionally charming romantic comedy . 2397 There 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 . 2398 A gift to anyone who loves both dance and cinema 2399 It seems Grant does n't need the floppy hair and the self-deprecating stammers after all . 2400 A reminder that beyond all the hype and recent digital glitz , Spielberg knows how to tell us about people . 2401 One of the finest , most humane and important Holocaust movies ever made . 2402 An engrossing and infectiously enthusiastic documentary . 2403 A beautiful , timeless and universal tale of heated passions -- jealousy , betrayal , forgiveness and murder . 2404 A culture-clash comedy that , in addition to being very funny , captures some of the discomfort and embarrassment of being a bumbling American in Europe . 2405 Shattering , devastating documentary on two maladjusted teens in a downward narcotized spiral . 2406 Extraordinary debut from Josh Koury . 2407 The most compelling performance of the year adds substantial depth to this shocking testament to anti-Semitism and neo-fascism . 2408 For those who are intrigued by politics of the '70s , the film is every bit as fascinating as it is flawed . 2409 All 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 . 2410 Douglas McGrath 's Nicholas Nickleby does Dickens as it should be done cinematically . 2411 It 's a lovely , eerie film that casts an odd , rapt spell . 2412 The quirky and recessive charms of co-stars Martin Donovan and Mary-Louise Parker help overcome the problematic script . 2413 It 's good to see Michael Caine whipping out the dirty words and punching people in the stomach again . 2414 You just know something terrible is going to happen . 2415 But when it does , you 're entirely unprepared . 2416 It 's fun , wispy , wise and surprisingly inoffensive for a film about a teen in love with his stepmom . 2417 Able to provide insight into a fascinating part of theater history . 2418 An unflinching , complex portrait of a modern Israel that is rarely seen on-screen . 2419 A Jewish WW II doc that is n't trying simply to out-shock , out-outrage or out-depress its potential audience ! 2420 Who knew ... 2421 It 's a familiar story , but one that is presented with great sympathy and intelligence . 2422 Gently humorous and touching . 2423 It wo n't hold up over the long haul , but in the moment , Finch 's tale provides the forgettable pleasures of a Saturday matinee . 2424 Kinnear 's performance is a career-defining revelation . 2425 The film is predictable in the reassuring manner of a beautifully sung holiday carol . 2426 ... hits every cliche we 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny . 2427 The strong subject matter continues to shock throughout the film . 2428 Not everyone will play the dark , challenging tune taught by The Piano Teacher . 2429 A certain sexiness underlines even the dullest tangents . 2430 You 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 . 2431 There 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 . 2432 That old adage about women being unknowable gets an exhilarating new interpretation in Morvern Callar . 2433 A mix of gritty realism , crisp storytelling and radiant compassion that effortlessly draws you in . 2434 After 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 . 2435 In his U.S. debut , Mr. Schnitzler proves himself a deft pace master and stylist . 2436 Ultimate X is a ride , basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine . 2437 Rich 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 . 2438 Offers a clear-eyed chronicle of a female friendship that is more complex and honest than anything represented in a Hollywood film . 2439 A 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 . 2440 Its 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 . 2441 Lohman 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 2442 Although 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 . 2443 For a movie audience , The Hours does n't connect in a neat way , but introduces characters who illuminate mysteries of sex , duty and love . 2444 A bright , inventive , thoroughly winning flight of revisionist fancy . 2445 Ozpetek 's effort has the scope and shape of an especially well-executed television movie . 2446 Affirms 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 . 2447 A 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 . 2448 Makes one thing abundantly clear . 2449 American 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 . 2450 Deepa Mehta provides an accessible introduction as well as some intelligent observations on the success of Bollywood in the Western world . 2451 If 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 . 2452 In addition to gluing you to the edge of your seat , Changing Lanes is also a film of freshness , imagination and insight . 2453 Pan 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 . 2454 The mood , look and tone of the film fit the incredible storyline to a T. 2455 It 's crafty , energetic and smart -- the kid is sort of like a fourteen-year old Ferris Bueller . 2456 A work of extraordinary journalism , but it is also a work of deft and subtle poetry . 2457 It 's funny and human and really pretty damned wonderful , all at once . 2458 At 78 minutes it just zings along with vibrance and warmth . 2459 A strangely stirring experience that finds warmth in the coldest environment and makes each crumb of emotional comfort feel like a 10-course banquet . 2460 Sometimes 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 . 2461 The stripped-down dramatic constructs , austere imagery and abstract characters are equal parts poetry and politics , obvious at times but evocative and heartfelt . 2462 Dogtown and Z-Boys more than exposes the roots of the skateboarding boom that would become `` the punk kids ' revolution . '' 2463 ... plenty of warmth to go around , with music and laughter and the love of family . 2464 It 'll keep you wide awake and ... very tense . 2465 Could use a little more humanity , but it never lacks in eye-popping visuals . 2466 -LRB- Danny Huston gives -RRB- an astounding performance that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk . 2467 These three films form a remarkably cohesive whole , both visually and thematically , through their consistently sensitive and often exciting treatment of an ignored people . 2468 A funny and well-contructed black comedy where the old adage `` be careful what you wish for '' is given a full workout . 2469 It reaffirms life as it looks in the face of death . 2470 The film is reasonably entertaining , though it begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy . 2471 This is more fascinating -- being real -- than anything seen on Jerry Springer . 2472 A different movie -- sometimes tedious -- by a director many viewers would like to skip but film buffs should get to know . 2473 Williams plays Sy , another of his open-faced , smiling madmen , like the killer in Insomnia . 2474 He does this so well you do n't have the slightest difficulty accepting him in the role . 2475 Twist open the Ouzo ! 2476 It 's time to let your hair down -- Greek style . 2477 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 . 2478 Thought-provoking and stylish , if also somewhat hermetic . 2479 Broomfield is energized by Volletta Wallace 's maternal fury , her fearlessness , and because of that , his film crackles . 2480 While it has definite weaknesses -- like a rather unbelievable love interest and a meandering ending -- this '60s caper film is a riveting , brisk delight . 2481 Funny in a sick , twisted sort of way . 2482 If cinema had been around to capture the chaos of France in the 1790 's , one imagines the result would look like something like this . 2483 It 's a talking head documentary , but a great one . 2484 The Fast Runner ' transports the viewer into an unusual space 2485 Ultimately 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 . ' 2486 ... a solid , well-formed satire . 2487 As part of Mr. Dong 's continuing exploration of homosexuality in America , Family Fundamentals is an earnest study in despair . 2488 Most 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 . 2489 Hatosy ... portrays young Brendan with his usual intelligence and subtlety , not to mention a convincing brogue . 2490 The filmmakers ' eye for detail and the high standards of performance convey a strong sense of the girls ' environment . 2491 Uneven , self-conscious but often hilarious spoof . 2492 Even 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 . 2493 Thanks to The Château 's balance of whimsicality , narrative discipline and serious improvisation , almost every relationship and personality in the film yields surprises . 2494 Alan and his fellow survivors are idiosyncratic enough to lift the movie above its playwriting 101 premise . 2495 Fresh and raw like a blown-out vein , Narc takes a walking-dead , cop-flick subgenre and beats new life into it . 2496 The premise of Jason X is silly but strangely believable . 2497 It 's a wise and powerful tale of race and culture forcefully told , with superb performances throughout . 2498 An awfully good , achingly human picture . 2499 The cast comes through even when the movie does n't . 2500 You 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness , but the point is , you 'll laugh . 2501 Definitely worth 95 minutes of your time . 2502 The film jolts the laughs from the audience -- as if by cattle prod . 2503 A sexy , surprising romance ... Idemoto and Kim make a gorgeous pair ... their scenes brim with sexual possibility and emotional danger . 2504 Toes the fine line between cheese and earnestness remarkably well ; everything is delivered with such conviction that it 's hard not to be carried away . 2505 Whereas Oliver Stone 's conspiracy thriller JFK was long , intricate , star-studded and visually flashy , Interview with the Assassin draws its considerable power from simplicity . 2506 Funny , sexy , devastating and incurably romantic . 2507 Triple X is a double agent , and he 's one bad dude . 2508 When you 've got the wildly popular Vin Diesel in the equation , it adds up to big box office bucks all but guaranteed . 2509 Very well-written and very well-acted . 2510 A powerful and telling story that examines forbidden love , racial tension , and other issues that are as valid today as they were in the 1950s . 2511 You emerge dazed , confused as to whether you 've seen pornography or documentary . 2512 It ai n't art , by a long shot , but unlike last year 's lame Musketeer , this Dumas adaptation entertains . 2513 likeable thanks to its cast , its cuisine and its quirky tunes . 2514 Chilling in its objective portrait of dreary , lost twenty-first century America . 2515 Highly recommended as an engrossing story about a horrifying historical event and the elements which contributed to it . 2516 ... there 's enough cool fun here to warm the hearts of animation enthusiasts of all ages . 2517 It manages to squeeze by on Angelina Jolie 's surprising flair for self-deprecating comedy . 2518 Secretary manages a neat trick , bundling the flowers of perversity , comedy and romance into a strangely tempting bouquet of a movie . 2519 Judith 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 . 2520 Photographed with melancholy richness and eloquently performed yet also decidedly uncinematic . 2521 A knowing look at female friendship , spiked with raw urban humor . 2522 As I settled into my World War II memories , I found myself strangely moved by even the corniest and most hackneyed contrivances . 2523 The overall effect is awe and affection -- and a strange urge to get on a board and , uh , shred , dude . 2524 It 's that rare family movie -- genuine and sweet without relying on animation or dumb humor . 2525 The 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 . 2526 Confessions 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 . 2527 A special kind of movie , this melancholic film noir reminded me a lot of Memento ... 2528 Simple , poignant and leavened with humor , it 's a film that affirms the nourishing aspects of love and companionship . 2529 Together , Miller , Kuras and the actresses make Personal Velocity into an intricate , intimate and intelligent journey . 2530 The wonder of Mostly Martha is the performance of Gedeck , who makes Martha enormously endearing . 2531 With Notorious C.H.O. Cho proves she has the stuff to stand tall with Pryor , Carlin and Murphy . 2532 Less front-loaded and more shapely than the two-hour version released here in 1990 . 2533 Watching War Photographer , you come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals . 2534 -LRB- A -RRB- real pleasure in its laid-back way . 2535 Some may choose to interpret the film 's end as hopeful or optimistic but I think Payne is after something darker . 2536 Though it runs 163 minutes , Safe Conduct is anything but languorous . 2537 It 's packed to bursting with incident , and with scores of characters , some fictional , some from history . 2538 A much better documentary -- more revealing , more emotional and more surprising -- than its pedestrian English title would have you believe . 2539 Notwithstanding 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 - 2540 A 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 . 2541 The film has the uncanny ability to right itself precisely when you think it 's in danger of going wrong . 2542 My Big Fat Greek Wedding is that rare animal known as ' a perfect family film , ' because it 's about family . 2543 would make an excellent companion piece to the similarly themed ` The French Lieutenant 's Woman . ' 2544 ... 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 . 2545 A movie that 's just plain awful but still manages to entertain on a guilty-pleasure , so-bad-it 's - funny level . 2546 A 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 . 2547 Functions 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 . 2548 With a confrontational stance , Todd Solondz takes aim on political correctness and suburban families . 2549 A mess , but it 's a sincere mess . 2550 This 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 . 2551 For a debut film , Skin of Man , Heart of Beast feels unusually assured . 2552 A photographic marvel of sorts , and it 's certainly an invaluable record of that special fishy community . 2553 It 's soulful and unslick , and that 's apparently just what -LRB- Aniston -RRB- has always needed to grow into a movie career . 2554 Although 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 . 2555 A jaw-droppingly beautiful work that upends nearly every cliché of Japanese animation while delivering a more than satisfactory amount of carnage . 2556 Terry 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 . 2557 Parts seem like they were lifted from Terry Gilliam 's subconscious , pressed through Kafka 's meat grinder and into Buñuel 's casings 2558 ` Like a child with an important message to tell ... -LRB- Skins ' -RRB- faults are easy to forgive because the intentions are lofty . ' 2559 A delightful entree in the tradition of food movies . 2560 An escapist confection that 's pure entertainment . 2561 The Ring is worth a look , if you do n't demand much more than a few cheap thrills from your Halloween entertainment . 2562 The 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 . 2563 Throwing it all away for the fleeting joys of love 's brief moment . 2564 Armed 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 . 2565 A decent-enough nail-biter that stands a good chance of being the big hit Franklin needs to stay afloat in Hollywood . 2566 Begins like a docu-drama but builds its multi-character story with a flourish . 2567 One of the most genuinely sweet films to come along in quite some time . 2568 After an uncertain start , Murder hits and generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling . 2569 The story ultimately takes hold and grips hard . 2570 A 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 . 2571 An emotionally strong and politically potent piece of cinema . 2572 Enticing and often funny documentary . 2573 Going 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 . 2574 A portrait of hell so shattering it 's impossible to shake . 2575 Almodovar 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 . ' 2576 Better 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 . 2577 At 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 . 2578 Tense , terrific , sweaty-palmed fun . 2579 Majidi 's direction has never been smoother or more confident . 2580 What a bewilderingly brilliant and entertaining movie this is . 2581 Hard , endearing , caring , warm . 2582 Bring tissues . 2583 A 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 . 2584 `` Me Without You '' is a probing examination of a female friendship set against a few dynamic decades . 2585 Inherently 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 . 2586 Though Frodo 's quest remains unfulfilled , a hardy group of determined New Zealanders has proved its creative mettle . 2587 It 's a square , sentimental drama that satisfies , as comfort food often can . 2588 Pure cinematic intoxication , a wildly inventive mixture of comedy and melodrama , tastelessness and swooning elegance . 2589 Ramsay is clearly extraordinarily talented , and based on three short films and two features , here 's betting her third feature will be something to behold . 2590 I 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 . 2591 A classy , sprightly spin on film . 2592 fast , frantic and fun , but also soon forgotten 2593 A spiffy animated feature about an unruly adolescent boy who is yearning for adventure and a chance to prove his worth . 2594 Devos and Cassel have tremendous chemistry -- their sexual and romantic tension , while never really vocalized , is palpable . 2595 Fulfills the minimum requirement of Disney animation . 2596 A moving , if uneven , success . 2597 With 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 . 2598 Wickedly funny , visually engrossing , never boring , this movie challenges us to think about the ways we consume pop culture . 2599 There 's plenty to impress about E.T. 2600 A 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 . 2601 Until 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 . 2602 -LRB- Woo 's -RRB- most resonant film since The Killer . 2603 Collateral Damage is trash , but it earns extra points by acting as if it were n't . 2604 A whole lot of fun and funny in the middle , though somewhat less hard-hitting at the start and finish . 2605 Maybe it is formula filmmaking , but there 's nothing wrong with that if the film is well-crafted and this one is . 2606 -LRB- Fincher 's -RRB- camera sense and assured pacing make it an above-average thriller . 2607 The film is insightful about Kissinger 's background and history . 2608 An engrossing portrait of a man whose engaging manner and flamboyant style made him a truly larger-than-life character . 2609 A 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 . 2610 Exploits -LRB- headbanger -RRB- stereotypes in good fun , while adding a bit of heart and unsettling subject matter . 2611 A journey that is as difficult for the audience to take as it is for the protagonist -- yet it 's potentially just as rewarding . 2612 Ratliff '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 . 2613 From its invitingly upbeat overture to its pathos-filled but ultimately life-affirming finale , Martin is a masterfully conducted work . 2614 Passions , obsessions , and loneliest dark spots are pushed to their most virtuous limits , lending the narrative an unusually surreal tone . 2615 A comedy that swings and jostles to the rhythms of life . 2616 At times Auto Focus feels so distant you might as well be watching it through a telescope . 2617 Yet in its own aloof , unreachable way it 's so fascinating you wo n't be able to look away for a second . 2618 If you 're part of her targeted audience , you 'll cheer . 2619 Otherwise , maybe . 2620 As animation increasingly emphasizes the computer and the cool , this is a film that takes a stand in favor of tradition and warmth . 2621 Blade 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 . 2622 Instead of hitting the audience over the head with a moral , Schrader relies on subtle ironies and visual devices to convey point of view . 2623 K-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 . 2624 Contrived as this may sound , Mr. Rose 's updating works surprisingly well . 2625 A glib but bouncy bit of sixties-style slickness in which the hero might wind up caught but the audience gets pure escapism . 2626 You do n't need to be a hip-hop fan to appreciate Scratch , and that 's the mark of a documentary that works . 2627 Between bursts of automatic gunfire , the story offers a trenchant critique of capitalism . 2628 Combines 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 . 2629 While the story 's undeniably hard to follow , Iwai 's gorgeous visuals seduce . 2630 If you can get past the taboo subject matter , it will be well worth your time . 2631 A 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 . 2632 Scooby Doo is surely everything its fans are hoping it will be , and in that sense is a movie that deserves recommendation . 2633 -LRB- A -RRB- devastatingly powerful and astonishingly vivid Holocaust drama . 2634 A solid cast , assured direction and complete lack of modern day irony . 2635 These 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 . 2636 A sun-drenched masterpiece , part parlor game , part psychological case study , part droll social satire . 2637 Worth a look as a curiosity . 2638 You watch for that sense of openness , the little surprises . 2639 Director Peter Kosminsky gives these women a forum to demonstrate their acting ` chops ' and they take full advantage . 2640 Auto Focus is not your standard Hollywood bio-pic . 2641 Schrader aims to present an unflinching look at one man 's downfall , brought about by his lack of self-awareness . 2642 The 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 . 2643 For VeggieTales fans , this is more appetizing than a side dish of asparagus . 2644 If you 're not a fan , it might be like trying to eat Brussels sprouts . 2645 Remove Spider-Man the movie from its red herring surroundings and it 's apparent that this is one summer film that satisfies . 2646 The 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 . 2647 A gorgeously strange movie , Heaven is deeply concerned with morality , but it refuses to spell things out for viewers . 2648 The 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 . 2649 It 's truly awful and heartbreaking subject matter , but one whose lessons are well worth revisiting as many times as possible . 2650 Though 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 . 2651 There 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 . 2652 The message of such reflections -- intentional or not -- is that while no art grows from a vacuum , many artists exist in one . 2653 Gooding 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 . 2654 The 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 . 2655 The movie is brilliant , really . 2656 It is philosophy , illustrated through everyday events . 2657 It 's stylishly directed with verve ... 2658 Gives an intriguing twist to the French coming-of-age genre . 2659 Offers an interesting look at the rapidly changing face of Beijing . 2660 A solid , psychological action film from Hong Kong . 2661 See it now , before the inevitable Hollywood remake flattens out all its odd , intriguing wrinkles . 2662 Holm does his sly , intricate magic , and Iben Hjelje is entirely appealing as Pumpkin . 2663 An enjoyable feel-good family comedy regardless of race . 2664 Features what is surely the funniest and most accurate depiction of writer 's block ever . 2665 It would take a complete moron to foul up a screen adaptation of Oscar Wilde 's classic satire . 2666 It 's bright , pristine style and bold colors make it as much fun as reading an oversized picture book before bedtime . 2667 In the long , dishonorable history of quickie teen-pop exploitation , Like Mike stands out for its only partly synthetic decency . 2668 Bravo for history rewritten , and for the uncompromising knowledge that the highest power of all is the power of love . 2669 Lead actress Gaï , she of the impossibly long limbs and sweetly conspiratorial smile , is a towering siren . 2670 Even if you 've seen `` Stomp '' -LRB- the stage show -RRB- , you still have to see this ! 2671 ... a light , yet engrossing piece . 2672 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 . 2673 It 's a setup so easy it borders on facile , but keeping the film from cheap-shot mediocrity is its crack cast . 2674 Rife with the rueful , wry humor springing out of Yiddish culture and language . 2675 A 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 . 2676 Rubbo 's humorously tendentious intervention into the who-wrote-Shakespeare controversy . 2677 Cantet beautifully illuminates what it means sometimes to be inside looking out , and at other times outside looking in . 2678 K-19 : The Widowmaker is a great yarn . 2679 It 's as raw and action-packed an experience as a ringside seat at a tough-man contest . 2680 Evokes the frustration , the awkwardness and the euphoria of growing up , without relying on the usual tropes . 2681 A brilliant gag at the expense of those who paid for it and those who pay to see it . 2682 Visually striking and viscerally repellent . 2683 Overcomes its visual hideousness with a sharp script and strong performances . 2684 Astonishingly skillful and moving ... it could become a historically significant work as well as a masterfully made one . 2685 Beautifully crafted and cooly unsettling ... recreates the atmosphere of the crime expertly . 2686 The 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 . 2687 Although it does n't always hang together -- violence and whimsy do n't combine easily -- `` Cherish '' certainly is n't dull . 2688 The sight of the spaceship on the launching pad is duly impressive in IMAX dimensions , as are shots of the astronauts floating in their cabins . 2689 Time is a beautiful film to watch , an interesting and at times captivating take on loss and loneliness . 2690 An intriguing look at the French film industry during the German occupation ; its most delightful moments come when various characters express their quirky inner selves . 2691 A 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 . 2692 Judging by those standards , ` Scratch ' is a pretty decent little documentary . 2693 Fubar is very funny , but not always in a laugh-out-loud way . 2694 A diverse and astonishingly articulate cast of Palestinian and Israeli children . 2695 Slight but enjoyable documentary . 2696 ` The film is stark , straightforward and deadly ... an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy . ' 2697 Call this The Full Monty on ice , the underdog sports team formula redux . 2698 Unfolds in a low-key , organic way that encourages you to accept it as life and go with its flow . 2699 A beguiling evocation of the quality that keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions . 2700 The heat of the moment prevails . 2701 It cooks Conduct in a low , smoky and inviting sizzle . 2702 A riveting story well told . 2703 Denis 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 . 2704 A compelling pre-WWII drama with vivid characters and a warm , moving message . 2705 The 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 . 2706 Pretty good little movie . 2707 By turns touching , raucously amusing , uncomfortable , and , yes , even sexy , Never Again is a welcome and heartwarming addition to the romantic comedy genre . 2708 If you have n't seen the film lately , you may be surprised at the variety of tones in Spielberg 's work . 2709 Much of it is funny , but there are also some startling , surrealistic moments ... 2710 -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 . 2711 An entertaining mix of period drama and flat-out farce that should please history fans . 2712 Canada 's arctic light shines bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people . 2713 The 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 . 2714 Alternately hilarious and sad , aggravating and soulful , scathing and joyous . 2715 It 's a masterpeice . 2716 The 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 . 2717 Though it lacks the utter authority of a genre gem , there 's a certain robustness to this engaging mix of love and bloodletting . 2718 A conventional , but well-crafted film about a historic legal battle in Ireland over a man 's right to raise his own children . 2719 Yes , it 's as good as you remember . 2720 In fact , even better . 2721 Hartley adds enough quirky and satirical touches in the screenplay to keep the film entertaining . 2722 An uncomfortable movie , suffocating and sometimes almost senseless , The Grey Zone does have a center , though a morbid one . 2723 This is a harrowing movie about how parents know where all the buttons are , and how to push them . 2724 A stirring road movie . 2725 One 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 . 2726 Insanely hilarious ! 2727 I have n't laughed that hard in years ! 2728 Anyone 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 . 2729 These people are really going to love The Piano Teacher . 2730 It 's a tour de force , written and directed so quietly that it 's implosion rather than explosion you fear . 2731 It may not be history -- but then again , what if it is ? 2732 -- but it makes for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while . 2733 If `` 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 . 2734 This may be Dover Kosashvili 's feature directing debut , but it looks an awful lot like life -- gritty , awkward and ironic . 2735 This 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 . 2736 See 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 . 2737 ... `` Bowling for Columbine '' remains a disquieting and thought-provoking film ... 2738 Even though it is infused with the sensibility of a video director , it does n't make for completely empty entertainment 2739 But 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 . 2740 Talk 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 . 2741 Star\/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 . 2742 A truly wonderful tale combined with stunning animation . 2743 A low-key labor of love that strikes a very resonant chord . 2744 An average kid-empowerment fantasy with slightly above-average brains . 2745 Confessions is n't always coherent , but it 's sharply comic and surprisingly touching , so hold the gong . 2746 While Guzmán frustratingly refuses to give Pinochet 's crimes a political context , his distance from the material is mostly admirable . 2747 ... a story , an old and scary one , about the monsters we make , and the vengeance they take . 2748 A sentimental but entirely irresistible portrait of three aging sisters . 2749 White Oleander may leave you rolling your eyes in the dark , but that does n't mean you wo n't like looking at it . 2750 In 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 . 2751 The most brilliant work in this genre since the 1984 uncut version of Sergio Leone 's flawed but staggering Once Upon a Time in America . 2752 It looks closely , insightfully at fragile , complex relationships . 2753 Not a bad choice here , assuming that ... the air-conditioning in the theater is working properly . 2754 A fine effort , an interesting topic , some intriguing characters and a sad ending . 2755 Certainly 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 . 2756 It must be the end of the world : the best film so far this year is a franchise sequel starring Wesley Snipes . 2757 There are moments of hilarity to be had . 2758 A hypnotic portrait of this sad , compulsive life . 2759 -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 . 2760 One 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 . 2761 Return to Never Land is reliable , standard Disney animated fare , with enough creative energy and wit to entertain all ages . 2762 Michael Moore 's latest documentary about America 's thirst for violence is his best film yet ... 2763 Suffice 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 . 2764 Like a Tarantino movie with heart , Alias Betty is richly detailed , deftly executed and utterly absorbing . 2765 Marvelously entertaining and deliriously joyous documentary . 2766 A brisk , reverent , and subtly different sequel . 2767 A movie I loved on first sight and , even more important , love in remembrance . 2768 Deserves a place of honor next to Nanook as a landmark in film history . 2769 Murderous 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 ... 2770 This is an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground . 2771 The Sweetest Thing , a romantic comedy with outrageous tendencies , may be a mess in a lot of ways . 2772 But it does have one saving grace . 2773 A lot of its gags and observations reflect a woman 's point-of-view . 2774 This is lightweight filmmaking , to be sure , but it 's pleasant enough -- and oozing with attractive men . 2775 At its most basic , this cartoon adventure is that wind-in-the-hair exhilarating . 2776 Fans of critics ' darling band Wilco will marvel at the sometimes murky , always brooding look of I Am Trying to Break Your Heart . 2777 The film presents visceral and dangerously honest revelations about the men and machines behind the curtains of our planet . 2778 -LRB- Gosling 's -RRB- combination of explosive physical energy and convincing intelligence helps create a complex , unpredictable character . 2779 Confounding because it solemnly advances a daringly preposterous thesis . 2780 Acting can not be acted . 2781 Fulford-Wierzbicki ... deftly captures the wise-beyond-her-years teen . 2782 A wild ride juiced with enough energy and excitement for at least three films . 2783 It 's a cool event for the whole family . 2784 Maybe not a classic , but a movie the kids will want to see over and over again . 2785 The movie is not as terrible as the synergistic impulse that created it . 2786 A 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 . 2787 Less an examination of neo-Nazism than a probe into the nature of faith itself . 2788 A moving and weighty depiction of one family 's attempts to heal after the death of a child . 2789 I do n't think most of the people who loved the 1989 Paradiso will prefer this new version . 2790 But I do . 2791 A zinger-filled crowd-pleaser that open-minded Elvis fans -LRB- but by no means all -RRB- will have fun with . 2792 Diggs and Lathan are among the chief reasons Brown Sugar is such a sweet and sexy film . 2793 Entirely suspenseful , extremely well-paced and ultimately ... dare I say , entertaining ! 2794 The riveting performances by the incredibly flexible cast make Love a joy to behold . 2795 Terrific 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 . 2796 With an unflappable air of decadent urbanity , Everett remains a perfect Wildean actor , and a relaxed Firth displays impeccable comic skill . 2797 The 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 . 2798 Very well written and directed with brutal honesty and respect for its audience . 2799 Wonderful fencing scenes and an exciting plot make this an eminently engrossing film . 2800 It 's pretty linear and only makeup-deep , but Bogdanovich ties it together with efficiency and an affection for the period . 2801 A surprisingly charming and even witty match for the best of Hollywood 's comic-book adaptations . 2802 This is a superior horror flick . 2803 Adaptation is simply brilliant . 2804 Smart and alert , Thirteen Conversations About One Thing is a small gem . 2805 The pleasure of Read My Lips is like seeing a series of perfect black pearls clicking together to form a string . 2806 We 're drawn in by the dark luster . 2807 A haunting tale of murder and mayhem . 2808 I love the opening scenes of a wintry New York City in 1899 . 2809 Cinematic poetry showcases the city 's old-world charm before machines change nearly everything . 2810 It '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 . 2811 One of the best rock documentaries ever . 2812 Wilco is a phenomenal band with such an engrossing story that will capture the minds and hearts of many . 2813 Ian Holm conquers France as an earthy Napoleon 2814 Offers big , fat , dumb laughs that may make you hate yourself for giving in . 2815 Ah , what the hell . 2816 -LRB- Sports -RRB- admirable energy , full-bodied characterizations and narrative urgency . 2817 A portrait of an artist . 2818 Directors Brett Morgen and Nanette Burstein have put together a bold biographical fantasia . 2819 The 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 . 2820 A tremendous piece of work . 2821 A delightful , if minor , pastry of a movie . 2822 While obviously aimed at kids , The Country Bears ... should keep parents amused with its low groan-to-guffaw ratio . 2823 LaBute masterfully balances both Traditional or Modern stories together in a manner that one never overwhelms the other . 2824 Something for everyone . 2825 Irwin is so earnest that it 's hard to resist his pleas to spare wildlife and respect their environs . 2826 There are far worse messages to teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy . 2827 Leigh succeeds in delivering a dramatic slap in the face that 's simultaneously painful and refreshing . 2828 Not 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 . 2829 ` Film aficionados can not help but love Cinema Paradiso , whether the original version or new Director 's Cut . ' 2830 A fascinating glimpse into an insular world that gives the lie to many clichés and showcases a group of dedicated artists . 2831 It 's one thing to read about or rail against the ongoing - and unprecedented - construction project going on over our heads . 2832 It 's quite another to feel physically caught up in the process . 2833 Contradicts everything we 've come to expect from movies nowadays . 2834 Instead of simply handling conventional material in a conventional way , Secretary takes the most unexpected material and handles it in the most unexpected way . 2835 Could I have been more geeked when I heard that Apollo 13 was going to be released in IMAX format ? 2836 In a word : No. . 2837 Murderous Maids has a lot going for it , not least the brilliant performances by Testud ... and Parmentier . 2838 Filmmaker 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 . 2839 There are a couple of things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall . 2840 It '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 . 2841 -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 . 2842 A breezy blend of art , history , esoteric musings and philosophy . 2843 Kids will love its fantasy and adventure , and grownups should appreciate its whimsical humor . 2844 Tsai Ming-liang 's ghosts are painfully aware of their not-being . 2845 Leaping 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 . 2846 Sean Penn , you owe Nicolas Cage an apology . 2847 The performances are uniformly good . 2848 She 's all-powerful , a voice for a pop-cyber culture that feeds on her Bjorkness . 2849 It 's a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it . 2850 For 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 . 2851 The 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 . 2852 This in-depth study of important developments of the computer industry should make it required viewing in university computer science departments for years to come . 2853 It shows us a slice of life that 's very different from our own and yet instantly recognizable . 2854 A wonderfully speculative character study that made up for its rather slow beginning by drawing me into the picture . 2855 Has its share of arresting images . 2856 Leave 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 . 2857 Reign of Fire just might go down as one of the all-time great apocalypse movies . 2858 A smart little indie . 2859 Payne has created a beautiful canvas , and Nicholson proves once again that he 's the best brush in the business . 2860 Try as you might to resist , if you 've got a place in your heart for Smokey Robinson , this movie will worm its way there . 2861 A riveting profile of law enforcement , and a visceral , nasty journey into an urban Hades . 2862 Director Douglas McGrath takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving into required reading . 2863 Stands 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 . 2864 I am not generally a huge fan of cartoons derived from TV shows , but Hey Arnold ! 2865 The Movie is clever , offbeat and even gritty enough to overcome my resistance . 2866 With 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 . 2867 It '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 . 2868 Slow and ponderous , but Rohmer 's drama builds to an intense indoor drama about compassion , sacrifice , and Christian love in the face of political corruption . 2869 If you 're not totally weirded - out by the notion of cinema as community-therapy spectacle , Quitting hits home with disorienting force . 2870 Austin Powers for the most part is extremely funny , the first part making up for any flaws that come later . 2871 While 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 . 2872 Cho continues her exploration of the outer limits of raunch with considerable brio . 2873 Elvira fans could hardly ask for more . 2874 A canny , derivative , wildly gruesome portrait of a London sociopath who 's the scariest of sadists . 2875 The movie should be credited with remembering his victims . 2876 Fast-paced and wonderfully edited , the film is extremely thorough . 2877 A bracing , unblinking work that serves as a painful elegy and sobering cautionary tale . 2878 Hashiguchi uses the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation . 2879 As 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 . 2880 My 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 . 2881 Few 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 . 2882 Another love story in 2002 's remarkable procession of sweeping pictures that have reinvigorated the romance genre . 2883 It 's another retelling of Alexandre Dumas ' classic . 2884 Why ? 2885 Who knows , but it works under the direction of Kevin Reynolds . 2886 -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 . 2887 Shiri 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 . 2888 Provides the kind of ` laugh therapy ' I need from movie comedies -- offbeat humor , amusing characters , and a happy ending . 2889 After seeing ` Analyze That , ' I feel better already . 2890 A penetrating , potent exploration of sanctimony , self-awareness , self-hatred and self-determination . 2891 This is n't a retooled genre piece , the tale of a guy and his gun , but an amiably idiosyncratic work . 2892 Overall , it 's a very entertaining , thought-provoking film with a simple message : God is love . 2893 It 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 . 2894 Although 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 . 2895 Jeong-Hyang Lee 's film is deceptively simple , deeply satisfying . 2896 The 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 . 2897 George 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 . 2898 Even when it drags , we are forced to reflect that its visual imagination is breathtaking 2899 Although commentary on Nachtwey is provided ... it 's the image that really tells the tale . 2900 A life-size reenactment of those Jack Chick cartoon tracts that always ended with some hippie getting tossed into the lake of fire . 2901 Grainy photography mars an otherwise delightful comedy of errors . 2902 this 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 . 2903 The film is impressive for the sights and sounds of the wondrous beats the world has to offer . 2904 Daily 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 . 2905 ... in no way original , or even all that memorable , but as downtown Saturday matinee brain candy , it does n't disappoint . 2906 Clever 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 . 2907 Cremaster 3 is at once a tough pill to swallow and a minor miracle of self-expression . 2908 Sex is one of those films that aims to confuse . 2909 Compared to his series of spectacular belly flops both on and off the screen , RunTelDat is something of a triumph . 2910 -LRB- Moore 's -RRB- better at fingering problems than finding solutions . 2911 But though he only scratches the surface , at least he provides a strong itch to explore more . 2912 The 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 . 2913 In his debut as a director , Washington has a sure hand . 2914 His work with actors is particularly impressive . 2915 A generous , inspiring film that unfolds with grace and humor and gradually becomes a testament to faith . 2916 Delivers the sexy razzle-dazzle that everyone , especially movie musical fans , has been hoping for . 2917 Vincent Gallo is right at home in this French shocker playing his usual bad boy weirdo role . 2918 Fierce , glaring and unforgettable . 2919 Cletis is playful but highly studied and dependent for its success on a patient viewer . 2920 Like 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 . 2921 Campanella gets the tone just right -- funny in the middle of sad in the middle of hopeful . 2922 Either a fascinating study of the relationship between mothers and their children or a disturbing story about sociopaths and their marks . 2923 ... gripping and handsome execution , -LRB- but -RRB- there is n't much about K-19 that 's unique or memorable . 2924 Effective in all its aspects , Margarita Happy Hour represents an auspicious feature debut for Chaiken . 2925 The 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 . 2926 Standing 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 . 2927 Not the best Herzog perhaps , but unmistakably Herzog . 2928 Enjoyably fast-moving , hard-hitting documentary . 2929 Rehearsals are frequently more fascinating than the results . 2930 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 . 2931 The film 's constant mood of melancholy and its unhurried narrative are masterfully controlled . 2932 But ... in trying to capture the novel 's deeper intimate resonances , the film has -- ironically - distanced us from the characters . 2933 This is a stunning film , a one-of-a-kind tour de force . 2934 -LRB- Cho 's face is -RRB- an amazing slapstick instrument , creating a scrapbook of living mug shots . 2935 It '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 . 2936 While 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 . 2937 An extremely funny , ultimately heartbreaking look at life in contemporary China . 2938 Your response to its new sequel , Analyze That , may hinge on what you thought of the first film . 2939 Davis is funny , charming and quirky in her feature film acting debut as Amy . 2940 Bloody Sunday has the grace to call for prevention rather than to place blame , making it one of the best war movies ever made . 2941 It 's a movie that accomplishes so much that one viewing ca n't possibly be enough . 2942 A lively and engaging examination of how similar obsessions can dominate a family . 2943 In 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 . 2944 Faithful without being forceful , sad without being shrill , `` A Walk to Remember '' succeeds through sincerity . 2945 The film is a masterpiece of nuance and characterization , marred only by an inexplicable , utterly distracting blunder at the very end . 2946 The film is full of charm . 2947 The movie is well crafted , and well executed . 2948 If you 're paying attention , the `` big twists '' are pretty easy to guess - but that does n't make the movie any less entertaining . 2949 One of those unassuming films that sneaks up on you and stays with you long after you have left the theatre . 2950 ... Pray does n't have a passion for the material . 2951 He nonetheless appreciates the art and reveals a music scene that transcends culture and race . 2952 The one-liners are snappy , the situations volatile and the comic opportunities richly rewarded . 2953 It 's anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair . 2954 Fathers 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 . 2955 This sci-fi techno-sex thriller starts out bizarre and just keeps getting weirder . 2956 Last 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 . 2957 It 's affecting , amusing , sad and reflective . 2958 A slight but sweet film . 2959 Writer\/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 . 2960 It is a happy , heady jumble of thought and storytelling , an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film . 2961 This new Time Machine is hardly perfect ... yet it proves surprisingly serviceable . 2962 Even at its worst , it 's not half-bad . 2963 Almost 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 ... 2964 Once folks started hanging out at the barbershop , they never wanted to leave . 2965 Chances are you wo n't , either . 2966 George Lucas returns as a visionary with a tale full of nuance and character dimension . 2967 Can be viewed as pure composition and form -- film as music 2968 An extraordinary dramatic experience . 2969 Every 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 . 2970 That , in itself , is extraordinary . 2971 If 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 . 2972 It 's a treat watching Shaw , a British stage icon , melting under the heat of Phocion 's attentions . 2973 All 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 . 2974 Narc is a no-bull throwback to 1970s action films . 2975 It zips along with B-movie verve while adding the rich details and go-for-broke acting that heralds something special . 2976 Me Without You has a bracing truth that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood . 2977 It 's a strange film , one that was hard for me to warm up to . 2978 Goes a long way on hedonistic gusto . 2979 The 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 . 2980 The Scorpion King is more fun than Conan the Barbarian . 2981 If 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 . 2982 Unexpected moments of authentically impulsive humor are the hallmark of this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery . 2983 Jacquot has filmed the opera exactly as the libretto directs , ideally capturing the opera 's drama and lyricism . 2984 This is a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies . 2985 I liked it because it was so endlessly , grotesquely , inventive . 2986 Audiard successfully maintains suspense on different levels throughout a film that is both gripping and compelling . 2987 Credit director Ramsay for taking the sometimes improbable story and making it feel realistic . 2988 This is DiCaprio 's best performance in anything ever , and easily the most watchable film of the year . 2989 Witherspoon puts to rest her valley-girl image , but it 's Dench who really steals the show . 2990 Even 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 . 2991 While dutifully pulling on heartstrings , directors Dean Deblois and Chris Sanders valiantly keep punching up the mix . 2992 Ambitious , unsettling psychodrama that takes full , chilling advantage of its rough-around-the-edges , low-budget constraints . 2993 Eric Byler 's nuanced pic avoids easy sentiments and explanations ... 2994 Manages to be wholesome and subversive at the same time . 2995 When 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 . 2996 The 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 . 2997 Blithely anachronistic and slyly achronological . 2998 This starts off with a 1950 's Doris Day feel and it gets very ugly , very fast . 2999 The first five minutes will have you talking 'til the end of the year ! 3000 Triumph of Love is a very silly movie , but the silliness has a pedigree . 3001 Discursive but oddly riveting documentary . 3002 The movie has no respect for laws , political correctness or common decency , but it displays something more important : respect for its flawed , crazy people . 3003 On its own , Big Trouble could be considered a funny little film . 3004 An undeniably gorgeous , terminally smitten document of a troubadour , his acolytes , and the triumph of his band . 3005 This 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 . 3006 A beautifully observed character piece . 3007 A coming-of-age movie that Hollywood would n't have the guts to make . 3008 It is quite a vision . 3009 There 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 . 3010 A bittersweet drama about the limbo of grief and how truth-telling can open the door to liberation . 3011 A strong and confident work which works so well for the first 89 minutes , but ends so horrendously confusing in the final two 3012 Salma goes native and she 's never been better in this colorful bio-pic of a Mexican icon . 3013 Filled with Alexandre Desplat 's haunting and sublime music , the movie completely transfixes the audience . 3014 As chilling and fascinating as Philippe Mora 's modern Hitler-study , Snide and Prejudice . 3015 An hour and a half of joyful solo performance . 3016 Strange and beautiful film . 3017 No worse a film than Breaking Out , and Breaking Out was utterly charming . 3018 Parker can not sustain the buoyant energy level of the film 's city beginnings into its country conclusion ' 3019 ... 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 . ' 3020 ... a guiltless film for nice evening out . 3021 Deflated ending aside , there 's much to recommend the film . 3022 It '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 . 3023 Performances all around are tops , with the two leads delivering Oscar-caliber performances . 3024 Everything about The Quiet American is good , except its timing . 3025 A savage John Waters-like humor that dances on the edge of tastelessness without ever quite falling over . 3026 At once a testament to the divine calling of education and a demonstration of the painstaking process of imparting knowledge . 3027 May seriously impair your ability to ever again maintain a straight face while speaking to a highway patrolman . 3028 It 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- , and Barry 's cold-fish act makes the experience worthwhile . 3029 They 're just a couple of cops in Copmovieland , these two , but in Narc , they find new routes through a familiar neighborhood . 3030 Brings awareness to an issue often overlooked -- women 's depression . 3031 It 's a shame the marvelous first 101 minutes have to be combined with the misconceived final 5 . 3032 It 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 . 3033 You 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 . ' 3034 And it is . 3035 Foster and Whitaker are especially fine . 3036 She is a lioness , protecting her cub , and he a reluctant villain , incapable of controlling his crew . 3037 Undoubtedly the scariest movie ever made about tattoos . 3038 A movie that will wear you out and make you misty even when you do n't want to be . 3039 Not only better than its predecessor , it may rate as the most magical and most fun family fare of this or any recent holiday season . 3040 Though the story ... is hackneyed , the characters have a freshness and modesty that transcends their predicament . 3041 Although Frailty fits into a classic genre , in its script and execution it is a remarkably original work . 3042 If this movie leaves you cool , it also leaves you intriguingly contemplative . 3043 The climactic events are so well realized that you may forget all about the original conflict , just like the movie does 3044 A rude black comedy about the catalytic effect a holy fool has upon those around him in the cutthroat world of children 's television . 3045 All comedy is subversive , but this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work just becomes sad . 3046 If a horror movie 's primary goal is to frighten and disturb , then They works spectacularly well ... A shiver-inducing , nerve-rattling ride . 3047 A playful Iranian parable about openness , particularly the need for people of diverse political perspectives to get along despite their ideological differences . 3048 Brilliantly written and well-acted , Yellow Asphalt is an uncompromising film . 3049 That ` 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- ... 3050 Personal Velocity has a no-frills docu-Dogma plainness , yet Miller lingers on invisible , nearly psychic nuances , leaping into digressions of memory and desire . 3051 She boxes these women 's souls right open for us . 3052 A fascinating literary mystery story with multiple strands about the controversy of who really wrote Shakespeare 's plays . 3053 Throughout , Mr. Audiard 's direction is fluid and quick . 3054 A dashing and absorbing outing with one of France 's most inventive directors . 3055 It 's a fine , old-fashioned-movie movie , which is to say it 's unburdened by pretensions to great artistic significance . 3056 ... flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue and a wide supply of effective sight gags . 3057 The Trials of Henry Kissinger is a remarkable piece of filmmaking ... because you get it . 3058 Nachtwey clears the cynicism right out of you . 3059 He makes you realize that deep inside righteousness can be found a tough beauty . 3060 What it lacks in substance it makes up for in heart . 3061 Robert 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 . 3062 With 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 3063 In Auteil 's less dramatic but equally incisive performance , he 's a charismatic charmer likely to seduce and conquer . 3064 The heart of the film is a touching reflection on aging , suffering and the prospect of death . 3065 Will you go ape over this movie ? 3066 Well , it probably wo n't have you swinging from the trees hooting it 's praises , but it 's definitely worth taking a look . 3067 Its director 's most substantial feature for some time . 3068 Fontaine 's direction , especially her agreeably startling use of close-ups and her grace with a moving camera , creates sheerly cinematic appeal . 3069 The 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 . 3070 This movie is to be cherished . 3071 ... a visually seductive , unrepentantly trashy take on Rice 's second installment of her Vampire Chronicles . 3072 The story 's scope and pageantry are mesmerizing , and Mr. Day-Lewis roars with leonine power . 3073 P.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 . 3074 Twenty years later , E.T. is still a cinematic touchstone . 3075 This 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 . 3076 It 's virtually impossible to like any of these despicable characters . 3077 This is mostly well-constructed fluff , which is all it seems intended to be . 3078 Even through its flaws , Revolution # 9 proves to be a compelling , interestingly told film . 3079 The best way to describe it is as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 3080 Schepisi , 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 . 3081 Watching 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 . 3082 There is no denying the power of Polanski 's film ... 3083 The movie is amateurish , but it 's a minor treat . 3084 This charming but slight tale has warmth , wit and interesting characters compassionately portrayed . 3085 Offers a persuasive look at a defeated but defiant nation in flux . 3086 A return to pure Disney magic and is enjoyable family fare . 3087 Takes a fresh and absorbing look at a figure whose legacy had begun to bronze . 3088 A triumph of pure craft and passionate heart . 3089 Gosling creates a staggeringly compelling character , a young man whose sharp intellect is at the very root of his contradictory , self-hating , self-destructive ways . 3090 Witty and often surprising , a dark little morality tale disguised as a romantic comedy . 3091 Even 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 . 3092 Got a David Lynch jones ? 3093 Then you 'd do well to check this one out because it 's straight up Twin Peaks action ... 3094 Astonishing ... -LRB- frames -RRB- profound ethical and philosophical questions in the form of dazzling pop entertainment . 3095 Take Care is nicely performed by a quintet of actresses , but nonetheless it drags during its 112-minute length . 3096 It 's hard to fairly judge a film like RINGU when you 've seen the remake first . 3097 Many of the effective horror elements are dampened through familiarity , -LRB- yet -RRB- are worthwhile . 3098 One of the very best movies ever made about the life of moviemaking . 3099 Rarely does such high-profile talent serve such literate material . 3100 An elegant and sly deadpan comedy . 3101 The way the roundelay of partners functions , and the interplay within partnerships and among partnerships and the general air of Gator-bashing are consistently delightful . 3102 Land , people and narrative flow together in a stark portrait of motherhood deferred and desire explored . 3103 ` Blue Crush ' swims away with the Sleeper Movie of the Summer award . 3104 You 're not merely watching history , you 're engulfed by it . 3105 A chick flick for guys . 3106 It 's mildly entertaining , especially if you find comfort in familiarity . 3107 But it 's hardly a necessary enterprise . 3108 The Quiet American is n't a bad film , it 's just one that could easily wait for your pay per view dollar . 3109 As home movie gone haywire , it 's pretty enjoyable , but as sexual manifesto , I 'd rather listen to old Tori Amos records . 3110 In 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 . 3111 Like 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 . 3112 A sensitive , cultivated treatment of Greene 's work as well as a remarkably faithful one . 3113 It 's not just a feel-good movie , it 's a feel movie . 3114 You feel good , you feel sad , you feel pissed off , but in the end , you feel alive - which is what they did . 3115 It '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 . 3116 What makes Barbershop so likable , with all its flaws , is that it has none of the pushiness and decibel volume of most contemporary comedies . 3117 Watching these two actors play against each other so intensely , but with restraint , is a treat . 3118 An example of quiet , confident craftsmanship that tells a sweet , charming tale of intergalactic friendship . 3119 A meditation on faith and madness , Frailty is blood-curdling stuff . 3120 The production design , score and choreography are simply intoxicating . 3121 A comedy that is warm , inviting , and surprising . 3122 So 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 . 3123 Suspend your disbelief here and now , or you 'll be shaking your head all the way to the credits . 3124 Trades run-of-the-mill revulsion for extreme unease . 3125 ... one of the more influential works of the ` Korean New Wave ' . 3126 Implicitly 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 . 3127 A beautifully tooled action thriller about love and terrorism in Korea . 3128 Director-writer Bille August ... depicts this relationship with economical grace , letting his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally , anger . 3129 Victor Rosa is Leguizamo 's best movie work so far , a subtle and richly internalized performance . 3130 Birthday Girl does n't try to surprise us with plot twists , but rather seems to enjoy its own transparency . 3131 smart , funny and just honest enough to provide the pleasures of a slightly naughty , just-above-average off - Broadway play . 3132 Topics that could make a sailor blush - but lots of laughs . 3133 Michael 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 . 3134 A fine production with splendid singing by Angela Gheorghiu , Ruggero Raimondi , and Roberto Alagna . 3135 About 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 . 3136 None 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 ? 3137 The film is a fierce dance of destruction . 3138 Its flame-like , roiling black-and-white inspires trembling and gratitude . 3139 May lack the pungent bite of its title , but it 's an enjoyable trifle nonetheless . 3140 ... manages to fall closer in quality to Silence than to the abysmal Hannibal . 3141 You 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 . 3142 Diane Lane works nothing short of a minor miracle in Unfaithful . 3143 Takashi Miike keeps pushing the envelope : Ichi the Killer 3144 A 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 . 3145 Exhilarating but blatantly biased . 3146 Much of what we see is horrible but it 's also undeniably exceedingly clever . 3147 It understands , in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking . 3148 Ramsay succeeds primarily with her typical blend of unsettling atmospherics , delivering a series of abrasive , stylized sequences that burn themselves upon the viewer 's memory . 3149 ... a thoughtful what-if for the heart as well as the mind . 3150 Like its bizarre heroine , it irrigates our souls . 3151 Hawn and Sarandon form an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare . 3152 It 's a fun adventure movie for kids -LRB- of all ages -RRB- that like adventure . 3153 A very capable nailbiter . 3154 Because the genre is well established , what makes the movie fresh is smart writing , skewed characters , and the title performance by Kieran Culkin . 3155 `` White Oleander , '' the movie , is akin to a Reader 's Digest condensed version of the source material . 3156 It 's like going to a house party and watching the host defend himself against a frothing ex-girlfriend . 3157 You do n't want to call the cops . 3158 You want to call Domino 's . 3159 What 's most refreshing about Real Women Have Curves is its unforced comedy-drama and its relaxed , natural-seeming actors . 3160 The low-key direction is pleasingly emphatic in this properly intense , claustrophobic tale of obsessive love . 3161 Secretary is just too original to be ignored . 3162 That rare film whose real-life basis is , in fact , so interesting that no embellishment is needed . 3163 Smart and fun , but far more witty than it is wise . 3164 This is n't a stand up and cheer flick ; it 's a sit down and ponder affair . 3165 And thanks to Kline 's superbly nuanced performance , that pondering is highly pleasurable . 3166 Originality ai n't on the menu , but there 's never a dull moment in the giant spider invasion comic chiller . 3167 Walter Hill 's Undisputed is like a 1940s Warner Bros. . 3168 B picture , and I mean that as a compliment . 3169 This one is not nearly as dreadful as expected . 3170 In fact , it 's quite fun in places . 3171 With 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 . 3172 A biopic about Crane 's life in the classic tradition but evolves into what has become of us all in the era of video . 3173 The best of the Pierce Brosnan James Bond films to date . 3174 Thanks to a small star with big heart , this family film sequel is plenty of fun for all . 3175 While the now 72-year-old Robert Evans been slowed down by a stroke , he has at least one more story to tell : his own . 3176 It 's about individual moments of mood , and an aimlessness that 's actually sort of amazing . 3177 The people in Jessica are so recognizable and true that , as in real life , we 're never sure how things will work out . 3178 A tone poem of transgression . 3179 Creeps you out in high style , even if Nakata did it better . 3180 Rubbo runs through a remarkable amount of material in the film 's short 90 minutes . 3181 Visually engrossing , seldom hammy , honorably Mexican and burns its Kahlories with conviction . 3182 This is Christmas Future for a lot of baby boomers . 3183 Despite a quieter middle section , involving Aragorn 's dreams of Arwen , this is even better than The Fellowship . 3184 There are scenes of cinematic perfection that steal your heart away . 3185 Spider-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 . 3186 The obnoxious title character provides the drama that gives added clout to this doc . 3187 Anyone who welcomes a dash of the avant-garde fused with their humor should take pleasure in this crazed , joyous romp of a film . 3188 The 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 . 3189 Saddled with an unwieldy cast of characters and angles , but the payoff is powerful and revelatory . 3190 It '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 . 3191 Mr. Caine and Mr. Fraser are the whole show here , with their memorable and resourceful performances . 3192 A frustrating yet deeply watchable melodrama that makes you think it 's a tougher picture than it is . 3193 A giddy and provocative sexual romp that has something to say . 3194 -LRB- Russell -RRB- makes good B movies -LRB- The Mask , The Blob -RRB- , and The Scorpion King more than ably meets those standards . 3195 Otto-Sallies has a real filmmaker 's eye . 3196 This is a smart movie that knows its classical music , knows its Freud and knows its Sade . 3197 The 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 . 3198 Beautifully reclaiming the story of Carmen and recreating it an in an African idiom . 3199 The 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 . 3200 A flawed but engrossing thriller . 3201 Demonstrates the unusual power of thoughtful , subjective filmmaking . 3202 Expect no major discoveries , nor any stylish sizzle , but the film sits with square conviction and touching good sense on the experience of its women . 3203 The success of Undercover Brother is found in its ability to spoof both black and white stereotypes equally . 3204 This 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 . 3205 Cox creates a fluid and mesmerizing sequence of images to match the words of Nijinsky 's diaries . 3206 What Bloody Sunday lacks in clarity , it makes up for with a great , fiery passion . 3207 Its adult themes of familial separation and societal betrayal are head and shoulders above much of the director 's previous popcorn work . 3208 Director 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 . 3209 The film grows on you . 3210 And how . 3211 One 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 . 3212 Halloween : Resurrection is n't exactly quality cinema , but it is n't nearly as terrible as it cold have been . 3213 As banal as the telling may be -- and at times , All My Loved Ones more than flirts with kitsch -- the tale commands attention . 3214 Romantic comedy and Dogme 95 filmmaking may seem odd bedfellows , but they turn out to be delightfully compatible here . 3215 The most wondrous love story in years , it is a great film . 3216 Some movies suck you in despite their flaws , and Heaven is one such beast . 3217 My Wife Is an Actress works as well as it does because -LRB- the leads -RRB- are such a companionable couple . 3218 With 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 . 3219 Based 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 . 3220 Bouquet gives a performance that is masterly . 3221 A poignant comedy that offers food for thought . 3222 ... a series of tales told with the intricate preciseness of the best short story writing . 3223 If 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 . 3224 This filmed Tosca -- not the first , by the way -- is a pretty good job , if it 's filmed Tosca that you want . 3225 I 'll stay with the stage versions , however , which bite cleaner , and deeper . 3226 While the path may be familiar , first-time director Denzel Washington and a top-notch cast manage to keep things interesting . 3227 An engaging criminal romp that will have viewers guessing just who 's being conned right up to the finale . 3228 The picture runs a mere 84 minutes , but it 's no glance . 3229 It 's a head-turner -- thoughtfully written , beautifully read and , finally , deeply humanizing . 3230 It asks nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up . 3231 It is as uncompromising as it is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients . 3232 `` Barbershop '' is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story . 3233 Tully 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 . 3234 I like this movie a lot . 3235 I like that Smith , he 's not making fun of these people , he 's not laughing at them . 3236 ... the implication is Kissinger may have decided that -- when it comes to truncheoning -- it 's better to give than to receive . 3237 ` What 's the Russian word for Wow !? ' 3238 Kiarostami has crafted a deceptively casual ode to children and managed to convey a tiny sense of hope . 3239 I had more fun watching Spy than I had with most of the big summer movies . 3240 What 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 3241 Murder by Numbers ' is n't a great movie , but it 's a perfectly acceptable widget . 3242 For those of an indulgent , slightly sunbaked and summery mind , Sex and Lucia may well prove diverting enough . 3243 What -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 . 3244 A well-done film of a self-reflexive , philosophical nature . 3245 Texan director George Ratliff had unlimited access to families and church meetings , and he delivers fascinating psychological fare . 3246 The rich performances by Friel -- and especially Williams , an American actress who becomes fully English -- round out the square edges . 3247 The 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 . 3248 A film in a class with Spike Lee 's masterful Do The Right Thing . 3249 Jagger , Stoppard and director Michael Apted ... deliver a riveting and surprisingly romantic ride . 3250 Greengrass -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 . 3251 A thought-provoking and often-funny drama about isolation . 3252 Whatever one makes of its political edge , this is beautiful filmmaking from one of French cinema 's master craftsmen . 3253 Mama Africa pretty much delivers on that promise . 3254 It does give you a peek . 3255 The main problem being that it 's only a peek . 3256 Roman Polanski 's autobiographical gesture at redemption is better than ` Shindler 's List ' - it is more than merely a Holocaust movie . 3257 A perfectly respectable , perfectly inoffensive , easily forgettable film . 3258 Romanek 's themes are every bit as distinctive as his visuals . 3259 Beyond the cleverness , the weirdness and the pristine camerawork , One Hour Photo is a sobering meditation on why we take pictures . 3260 Seeing 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 . 3261 Speaks eloquently about the symbiotic relationship between art and life . 3262 The work of an artist tormented by his heritage , using his storytelling ability to honor the many faceless victims . 3263 The audacity to view one of Shakespeare 's better known tragedies as a dark comedy is , by itself , deserving of discussion . 3264 This is an exercise in chilling style , and Twohy films the sub , inside and out , with an eye on preserving a sense of mystery . 3265 An uncomfortable experience , but one as brave and challenging as you could possibly expect these days from American cinema . 3266 Hailed as a clever exercise in neo-Hitchcockianism , this clever and very satisfying picture is more accurately Chabrolian . 3267 Funny and also heartwarming without stooping to gooeyness . 3268 At the film 's centre is a precisely layered performance by an actor in his mid-seventies , Michel Piccoli . 3269 The viewer takes great pleasure in watching the resourceful Molly stay a step ahead of her pursuers . 3270 With amazing finesse , the film shadows Heidi 's trip back to Vietnam and the city where her mother , Mai Thi Kim , still lives . 3271 Director Charles Stone III applies more detail to the film 's music than to the story line ; what 's best about Drumline is its energy . 3272 A heroic tale of persistence that is sure to win viewers ' hearts . 3273 It 's all a rather shapeless good time ... 3274 has far more energy , wit and warmth than should be expected from any movie with a `` 2 '' at the end of its title . 3275 A little better than Sorcerer 's Stone . 3276 A chilling movie without oppressive gore . 3277 A uniquely sensual metaphorical dramatization of sexual obsession that spends a bit too much time on its fairly ludicrous plot . 3278 If you like peace , you 'll like Promises . 3279 Be prepared to cling to the edge of your seat , tense with suspense . 3280 The Ring never lets you off the hook . 3281 Thumbs up to Paxton for not falling into the Hollywood trap and making a vanity project with nothing new to offer . 3282 At once disarmingly straightforward and strikingly devious . 3283 If you like quirky , odd movies and\/or the ironic , here 's a fun one . 3284 Sensitive ensemble performances and good period reconstruction add up to a moving tragedy with some buoyant human moments . 3285 It 's not the least of Afghan tragedies that this noble warlord would be consigned to the dustbin of history . 3286 It 's a lovely , sad dance highlighted by Kwan 's unique directing style . 3287 The script by David Koepp is perfectly serviceable and because he gives the story some soul ... he elevates the experience to a more mythic level . 3288 This is a visually stunning rumination on love , memory , history and the war between art and commerce . 3289 Short-story quaint , touchingly mending a child 's pain for his dead mother via communication with an old woman straight out of Eudora Welty . 3290 It 's always fascinating to watch Marker the essayist at work . 3291 A quiet family drama with a little bit of romance and a dose of darkness . 3292 The tasteful little revision works wonders , enhancing the cultural and economic subtext , bringing richer meaning to the story 's morals . 3293 Kosminsky ... puts enough salt into the wounds of the tortured and self-conscious material to make it sting . 3294 One of the greatest films I 've ever seen . 3295 Its gentle , touching story creeps into your heart . 3296 About as big a crowdpleaser as they possibly come . 3297 Bound to appeal to women looking for a howlingly trashy time . 3298 Even these tales of just seven children seem at times too many , although in reality they are not enough . 3299 Every child 's story is what matters . 3300 This film can only point the way -- but thank goodness for this signpost . 3301 A poignant and gently humorous parable that loves its characters and communicates something rather beautiful about human nature . 3302 Real Women Have Curves does n't offer any easy answers . 3303 Vampire epic succeeds as spooky action-packed trash of the highest order . 3304 One of the funniest motion pictures of the year , but ... also one of the most curiously depressing . 3305 While 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 . 3306 Like the chilled breath of oral storytelling frozen onto film . 3307 A charmer from Belgium . 3308 A wild , endearing , masterful documentary . 3309 Jackie Chan movies are a guilty pleasure - he 's easy to like and always leaves us laughing . 3310 Brown Sugar signals director Rick Famuyiwa 's emergence as an articulate , grown-up voice in African-American cinema . 3311 With exquisite craftsmanship ... Olivier Assayas has fashioned an absorbing look at provincial bourgeois French society . 3312 It 's rare for any movie to be as subtle and touching as The Son 's Room . 3313 It has a way of seeping into your consciousness , with lingering questions about what the film is really getting at . 3314 Maelstrom is a deliberately unsteady mixture of stylistic elements . 3315 -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 . 3316 -LRB- D -RRB- espite its familiar subject matter , Ice Age is consistently amusing and engrossing ... 3317 The 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 3318 Assured , glossy and shot through with brittle desperation . 3319 The bottom line is the piece works brilliantly . 3320 It was only a matter of time before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo . 3321 It is Scott 's convincing portrayal of Roger the sad cad that really gives the film its oomph . 3322 While this movie , by necessity , lacks Fellowship 's heart , Two Towers outdoes its spectacle . 3323 Meyjes ... has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics . 3324 Aside 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 . 3325 What ` Dumb and Dumber ' would have been without the vulgarity and with an intelligent , life-affirming script . 3326 ... a vivid , thoughtful , unapologetically raw coming-of-age tale full of sex , drugs and rock 'n' roll . 3327 You would n't want to live waydowntown , but it is a hilarious place to visit . 3328 Films are made of little moments . 3329 Changing Lanes tries for more . 3330 It does n't reach them , but the effort is gratefully received . 3331 When the movie mixes the cornpone and the Cosa Nostra , it finds a nice rhythm . 3332 The 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 . 3333 Terrific casting and solid execution give all three stories life . 3334 A hard look at one man 's occupational angst and its subsequent reinvention , a terrifying study of bourgeois desperation worthy of Claude Chabrol . 3335 -LRB- Ramsay -RRB- visually transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art , music and metaphor . 3336 Frequent flurries of creative belly laughs and genuinely enthusiastic performances ... keep the movie slaloming through its hackneyed elements with enjoyable ease . 3337 At its best , this is grand-scale moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture . 3338 The 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 . 3339 10 minutes into the film you 'll be white-knuckled and unable to look away . 3340 It 's a beautiful film , full of elaborate and twisted characters - and it 's also pretty funny . 3341 Could this be the first major studio production shot on video tape instead of film ? 3342 Not since Ghostbusters has a film used Manhattan 's architecture in such a gloriously goofy way . 3343 As tricky and satisfying as any of David Mamet 's airless cinematic shell games . 3344 The universal theme of becoming a better person through love has never been filmed more irresistibly than in ` Baran . ' 3345 Cube 's charisma and chemistry compensate for corniness and cliche . 3346 With lesser talents , High Crimes would be entertaining , but forgettable . 3347 With Freeman and Judd , I 'll at least remember their characters . 3348 As 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 . 3349 The 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 . 3350 Daughter From Danang sticks with its subjects a little longer and tells a deeper story 3351 A 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 . 3352 The 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 . 3353 A distinguished and thoughtful film , marked by acute writing and a host of splendid performances . 3354 Barry convinces us he 's a dangerous , secretly unhinged guy who could easily have killed a president because it made him feel powerful . 3355 Takes 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 . 3356 I 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 . 3357 It 's a smart , solid , kinetically-charged spy flick worthy of a couple hours of summertime and a bucket of popcorn . 3358 Nothing overly original , mind you , but solidly entertaining . 3359 Changing 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 . 3360 borrows a bit from the classics `` Wait Until Dark '' and `` Extremities '' ... But in terms of its style , the movie is in a class by itself . 3361 Because 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 . 3362 Puts a refreshing and comical spin on the all-too-familiar saga of the contemporary single woman . 3363 If you grew up on Scooby -- you 'll love this movie . 3364 Matthew Lillard is born to play Shaggy ! 3365 Though filmed partly in Canada , Paid in Full has clever ways of capturing inner-city life during the Reagan years . 3366 `` 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 . 3367 If you 're a comic fan , you ca n't miss it . 3368 If you 're not , you 'll still have a good time . '' 3369 This 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 . 3370 The movie is a trove of delights . 3371 Excellent performances from Jacqueline Bisset and Martha Plimpton grace this deeply touching melodrama . 3372 In a summer of clones , Harvard Man is something rare and riveting : a wild ride that relies on more than special effects . 3373 While the humor is recognizably Plympton , he has actually bothered to construct a real story this time . 3374 Jolting into Charleston rhythms , the story has the sizzle of old news that has finally found the right vent -LRB- accurate ? 3375 Who cares ? -RRB- . 3376 An overly melodramatic but somewhat insightful French coming-of-age film ... 3377 Most 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 . 3378 Close enough in spirit to its freewheeling trash-cinema roots to be a breath of fresh air . 3379 Skillfully weaves both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise . 3380 Damon brings the proper conviction to his role as -LRB- Jason Bourne -RRB- . 3381 For the most part , it works beautifully as a movie without sacrificing the integrity of the opera . 3382 As played by Ryan Gosling , Danny is a frighteningly fascinating contradiction . 3383 This is not Chabrol 's best , but even his lesser works outshine the best some directors can offer . 3384 Despite its flaws , Crazy as Hell marks an encouraging new direction for La Salle . 3385 You 'll end up moved . 3386 If 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 . 3387 The 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 . 3388 I loved the look of this film . 3389 Those with a modicum of patience will find in these characters ' foibles a timeless and unique perspective . 3390 Beautiful to watch and holds a certain charm . 3391 13 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 . 3392 The movie is our story as much as it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale . 3393 Foster breathes life into a roll that could have otherwise been bland and run of the mill . 3394 Quitting offers piercing domestic drama with spikes of sly humor . 3395 Some people want the ol' ball-and-chain and then there are those who just want the Ball and Chain . 3396 -LRB- Barry -RRB- gives Assassin a disquieting authority . 3397 It 's refreshing to see a romance this smart . 3398 At its best -LRB- and it does have some very funny sequences -RRB- Looking for Leonard reminds you just how comically subversive silence can be . 3399 As 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 . 3400 Anyone 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 . 3401 `` The turntable is now outselling the electric guitar ... '' 3402 Transforms one of -LRB- Shakespeare 's -RRB- deepest tragedies into a smart new comedy . 3403 An intelligent and deeply felt work about impossible , irrevocable choices and the price of making them . 3404 It 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 . 3405 Sayles is making a statement about the inability of dreams and aspirations to carry forward into the next generation . 3406 As Antonia is assimilated into this newfangled community , the film settles in and becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion . 3407 every 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 3408 On its own staggeringly unoriginal terms , this gender-bending comedy is generally quite funny . 3409 It 's never dull and always looks good . 3410 The tonal shifts are jolting , and though Wen 's messages are profound and thoughtfully delivered , more thorough transitions would have made the film more cohesive . 3411 As 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 . 3412 With wit and empathy to spare , waydowntown acknowledges the silent screams of workaday inertia but stops short of indulging its characters ' striving solipsism . 3413 All of it works smoothly under the direction of Spielberg , who does a convincing impersonation here of a director enjoying himself immensely . 3414 The kind of sweet-and-sour insider movie that film buffs will eat up like so much gelati . 3415 With ` Bowling for Columbine , ' Michael Moore gives us the perfect starting point for a national conversation about guns , violence , and fear . 3416 One of the year 's most weirdly engaging and unpredictable character pieces . 3417 One of the best inside-show-biz yarns ever . 3418 None 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 . 3419 A terrifically entertaining specimen of Spielbergian sci-fi . 3420 A rare and lightly entertaining look behind the curtain that separates comics from the people laughing in the crowd . 3421 Solondz is so intent on hammering home his message that he forgets to make it entertaining . 3422 Whatever 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 . 3423 It establishes its ominous mood and tension swiftly , and if the suspense never rises to a higher level , it is nevertheless maintained throughout . 3424 Although What Time offers Tsai 's usual style and themes , it has a more colorful , more playful tone than his other films . 3425 A moving and stark reminder that the casualties of war reach much further than we imagine . 3426 A thoroughly engaging , surprisingly touching British comedy . 3427 A sloppy , amusing comedy that proceeds from a stunningly unoriginal premise . 3428 ... 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 . 3429 It is an unstinting look at a collaboration between damaged people that may or may not qual 3430 captures that perverse element of the Kafkaesque where identity , overnight , is robbed and replaced with a persecuted `` other . '' 3431 The actors are simply too good , and the story too intriguing , for technical flaws to get in the way . 3432 An estrogen opera so intensely feminine that it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon . 3433 Imamura has said that Warm Water Under a Red Bridge is a poem to the enduring strengths of women . 3434 It may also be the best sex comedy about environmental pollution ever made . 3435 It 's a ripper of a yarn and I for one enjoyed the thrill of the chill . 3436 Naomi Watts is terrific as Rachel ; her petite frame and vulnerable persona emphasising her plight and isolation . 3437 A family film that contains some hefty thematic material on time , death , eternity , and what is needed to live a rich and full life . 3438 With Dickens ' words and writer-director Douglas McGrath 's even-toned direction , a ripping good yarn is told . 3439 Exactly what its title implies : lusty , boisterous and utterly charming . 3440 The film is darkly funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work . 3441 A smart , compelling drama . 3442 A must-see for fans of thoughtful war films and those interested in the sights and sounds of battle . 3443 I found myself liking the film , though in this case one man 's treasure could prove to be another man 's garbage . 3444 ... Rogers 's mouth never stops shut about the war between the sexes and how to win the battle . 3445 Deliberately and skillfully uses ambiguity to suggest possibilities which imbue the theme with added depth and resonance . 3446 It '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 . 3447 Nicholson 's understated performance is wonderful . 3448 As Warren he stumbles in search of all the emotions and life experiences he 's neglected over the years . 3449 Despite its old-hat set-up and predictable plot , Empire still has enough moments to keep it entertaining . 3450 Another entertaining romp from Robert Rodriguez . 3451 It 's not a classic spy-action or buddy movie , but it 's entertaining enough and worth a look . 3452 I am more offended by his lack of faith in his audience than by anything on display here . 3453 A sharp satire of desperation and cinematic deception . 3454 Tsai convincingly paints a specifically urban sense of disassociation here . 3455 If you can swallow its absurdities and crudities Lagaan really is enormously good fun . 3456 An unorthodox little film noir organized crime story that includes one of the strangest love stories you will ever see . 3457 A pleasing , often-funny comedy . 3458 -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 . 3459 All three actresses are simply dazzling , particularly Balk , who 's finally been given a part worthy of her considerable talents . 3460 An Asian neo-realist treasure . 3461 Plummer steals the show without resorting to camp as Nicholas ' wounded and wounding Uncle Ralph . 3462 It 's a great performance and a reminder of Dickens ' grandeur . 3463 ... less a story than an inexplicable nightmare , right down to the population 's shrugging acceptance to each new horror . 3464 I 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 . 3465 A compassionate , moving portrait of an American -LRB- and an America -RRB- always reaching for something just outside his grasp . 3466 An original little film about one young woman 's education . 3467 The film is about the relationships rather than about the outcome . 3468 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 . 3469 One 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 . 3470 An instance of an old dog not only learning but inventing a remarkable new trick . 3471 Rodriguez has the chops of a smart-aleck film school brat and the imagination of a big kid ... 3472 Amy and Matthew have a bit of a phony relationship , but the film works in spite of it . 3473 Garcia and the other actors help make the wobbly premise work . 3474 It 's surprisingly decent , particularly for a tenth installment in a series . 3475 A fascinating , unnerving examination of the delusions of one unstable man . 3476 It 's no accident that The Accidental Spy is a solid action pic that returns the martial arts master to top form . 3477 Leave 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 . 3478 The 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 . 3479 Heartwarming here relies less on forced air than on Petter Næss ' delicate , clever direction ... and a wonderful , imaginative script by Axel Hellstenius . 3480 Makes 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 . 3481 Steers refreshingly clear of the usual cliches . 3482 `` Home Movie '' is a sweet treasure and something well worth your time . 3483 Highly recommended viewing for its courage , ideas , technical proficiency and great acting . 3484 The movie 's thesis -- elegant technology for the masses -- is surprisingly refreshing . 3485 Scott delivers a terrific performance in this fascinating portrait of a modern Lothario . 3486 ... 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 . 3487 Combines 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 . 3488 While 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 . 3489 Marshall puts a suspenseful spin on standard horror flick formula . 3490 As lively an account as Seinfeld is deadpan . 3491 Though Lan Yu lacks a sense of dramatic urgency , the film makes up for it with a pleasing verisimilitude . 3492 You may leave the theater with more questions than answers , but darned if your toes wo n't still be tapping . 3493 Take any 12-year-old boy to see this picture , and he 'll be your slave for a year . 3494 But this is not a movie about an inhuman monster ; it 's about a very human one . 3495 At times THE GUYS taps into some powerful emotions , but this kind of material is more effective on stage . 3496 It 's not a motion picture ; it 's an utterly static picture . 3497 What makes it worth watching is Quaid 's performance . 3498 Soderbergh skims the fat from the 1972 film . 3499 What 's left is a rich stew of longing . 3500 It '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 . 3501 More 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 . 3502 Hatfield 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 . 3503 Best of all is Garcia , who perfectly portrays the desperation of a very insecure man . 3504 The 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 . 3505 A sobering and powerful documentary about the most severe kind of personal loss : rejection by one 's mother . 3506 Often overwrought and at times positively irritating , the film turns into an engrossing thriller almost in spite of itself . 3507 Humorous and heartfelt , Douglas McGrath 's version of ` Nicholas Nickleby ' left me feeling refreshed and hopeful . 3508 Not many movies have that kind of impact on me these days . 3509 A poignant lyricism runs through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem . 3510 This is SO De Palma . 3511 If you love him , you 'll like it . 3512 If you do n't ... well , skip to another review . 3513 Rouge 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 . 3514 The moral shrapnel and mental shellshock will linger long after this film has ended . 3515 Unfolds in a series of achronological vignettes whose cumulative effect is chilling . 3516 The movie enters a realm where few non-porn films venture , and comes across as darkly funny , energetic , and surprisingly gentle . 3517 Although the subject matter may still be too close to recent national events , the film works - mostly due to its superior cast of characters . 3518 It 's not going to be everyone 's bag of popcorn , but it definitely gives you something to chew on . 3519 Huppert and Girardot give performances of exceptional honesty . 3520 It has that rare quality of being able to creep the living hell out of you ... 3521 A cautionary tale about the grandiosity of a college student who sees himself as impervious to a fall . 3522 An infinitely wittier version of the Home Alone formula . 3523 Feardotcom 's thrills are all cheap , but they mostly work . 3524 -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 . 3525 Mr. Deeds is , as comedy goes , very silly -- and in the best way . 3526 You could love Safe Conduct -LRB- Laissez Passer -RRB- for being a subtitled French movie that is 170 minutes long . 3527 You could hate it for the same reason . 3528 With We Were Soldiers , Hollywood makes a valiant attempt to tell a story about the Vietnam War before the pathology set in . 3529 ` 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 . ' 3530 Broomfield reveals an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force . 3531 At 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 . 3532 Stuart 's poor-me persona needs a whole bunch of Snowball 's cynicism to cut through the sugar coating . 3533 But once the falcon arrives in the skies above Manhattan , the adventure is on red alert . 3534 There is greatness here . 3535 Boasts enough funny dialogue and sharp characterizations to be mildly amusing . 3536 Director 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 . 3537 If you love the music , and I do , its hard to imagine having more fun watching a documentary ... 3538 Nakata 's technique is to imply terror by suggestion , rather than the overuse of special effects . 3539 `` 13 Conversations About One Thing '' is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling . 3540 Satin 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 . 3541 Though an important political documentary , this does not really make the case the Kissinger should be tried as a war criminal . 3542 Cannon 's confidence and laid-back good spirits are , with the drumming routines , among the film 's saving graces . 3543 In its understanding , often funny way , it tells a story whose restatement is validated by the changing composition of the nation . 3544 She may not be real , but the laughs are . 3545 A 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 . 3546 OK arthouse . 3547 The 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 . 3548 The 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 . 3549 About Schmidt is undoubtedly one of the finest films of the year . 3550 If you 're not deeply touched by this movie , check your pulse . 3551 The charm of Revolution OS is rather the way it introduces you to new , fervently held ideas and fanciful thinkers . 3552 Until 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 . 3553 Offers the flash of rock videos fused with solid performances and eerie atmosphere . 3554 Filmmakers 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 3555 For 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 . 3556 An edifying glimpse into the wit and revolutionary spirit of these performers and their era . 3557 Craig Bartlett and director Tuck Tucker should be commended for illustrating the merits of fighting hard for something that really matters . 3558 The film is saved from are n't - kids-cute sentimentality by a warmth that is n't faked and a stately sense of composition . 3559 This is one of the year 's best films . 3560 A fleet-footed and pleasingly upbeat family diversion . 3561 Sorvino is delightful in the central role . 3562 She nearly glows with enthusiasm , sensuality and a conniving wit . 3563 It 's immensely ambitious , different than anything that 's been done before and amazingly successful in terms of what it 's trying to do . 3564 The story , once it gets rolling , is nothing short of a great one . 3565 Great performances , stylish cinematography and a gritty feel help make Gangster No. 1 a worthwhile moviegoing experience . 3566 `` Mr. Deeds '' is suitable summer entertainment that offers escapism without requiring a great deal of thought . 3567 It 's an ambitious film , and as with all ambitious films , it has some problems . 3568 But on the whole , you 're gonna like this movie . 3569 Chaiken ably balances real-time rhythms with propulsive incident . 3570 This is an extraordinary film , not least because it is Japanese and yet feels universal . 3571 In 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 . 3572 There 's just something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance . 3573 A funny and touching film that is gorgeously acted by a British cast to rival Gosford Park 's . 3574 There '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 . 3575 I 'm not generally a fan of vegetables but this batch is pretty cute . 3576 Qutting may be a flawed film , but it is nothing if not sincere . 3577 Beautifully crafted , engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing . 3578 A 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 . 3579 A cultural wildcard experience : wacky , different , unusual , even nutty . 3580 Daughter From Danang reveals that efforts toward closure only open new wounds . 3581 It does n't flinch from its unsettling prognosis , namely , that the legacy of war is a kind of perpetual pain . 3582 For 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 . 3583 This is not an easy film . 3584 But it could be , by its art and heart , a necessary one . 3585 A very good film sits in the place where a masterpiece should be . 3586 ... spellbinding fun and deliciously exploitative . 3587 It 's Jagger 's bone-dry , mournfully brittle delivery that gives the film its bittersweet bite . 3588 Impossible 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 . 3589 Despite the predictable parent vs. child coming-of-age theme , first-class , natural acting and a look at `` the real Americans '' make this a charmer . 3590 One of the smarter offerings the horror genre has produced in recent memory , even if it 's far tamer than advertised . 3591 One of recent memory 's most thoughtful films about art , ethics , and the cost of moral compromise . 3592 the film does n't sustain its initial promise with a jarring , new-agey tone creeping into the second half 3593 Blade 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 . 3594 The 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 . 3595 Many a parent and their teen -LRB- or preteen -RRB- kid could bond while watching A Walk To Remember . 3596 So could young romantics out on a date . 3597 All leather pants & augmented boobs , Hawn is hilarious as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon . 3598 The 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 . 3599 It 's very Beavis and Butthead , yet always seems to elicit a chuckle . 3600 While 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 . 3601 Chicago offers much colorful eye candy , including the spectacle of Gere in his dancing shoes , hoofing and crooning with the best of them . 3602 A 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 . 3603 By and large this is Mr. Kilmer 's movie , and it 's his strongest performance since The Doors . 3604 Some 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 . 3605 A charming but slight comedy . 3606 Henry Bean 's thoughtful screenplay provides no easy answers , but offers a compelling investigation of faith versus intellect 3607 A great cast and a wonderful but sometimes confusing flashback movie about growing up in a dysfunctional family . 3608 Playing a role of almost Bergmanesque intensity ... Bisset is both convincing and radiant . 3609 A smart , provocative drama that does the nearly impossible : It gets under the skin of a man we only know as an evil , monstrous lunatic . 3610 An alternately fascinating and frustrating documentary . 3611 Griffin & Co. manage to be spectacularly outrageous . 3612 Nair 's cast is so large it 's Altman-esque , but she deftly spins the multiple stories in a vibrant and intoxicating fashion . 3613 The movie plays up the cartoon 's more obvious strength of snazziness while neglecting its less conspicuous writing strength . 3614 Poignant Japanese epic about adolescent anomie and heartbreak . 3615 We '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 . 3616 Secretary is not a movie about fetishism . 3617 It is a movie about passion . 3618 Even 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 . 3619 Although 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 . 3620 What could have easily become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking . 3621 A 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 . 3622 The IMAX screen enhances the personal touch of manual animation . 3623 Does an impressive job of relating the complicated history of the war and of filling in the background . 3624 It 's all about Anakin ... and the lustrous polished visuals rich in color and creativity and , of course , special effect . 3625 Lacks 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 . 3626 But it also has many of the things that made the first one charming . 3627 It 's funny , touching , dramatically forceful , and beautifully shot . 3628 Its rawness and vitality give it considerable punch . 3629 A live-wire film that never loses its ability to shock and amaze . 3630 The 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 . 3631 It '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 . 3632 Brims with passion : for words , for its eccentric , accident-prone characters , and for the crazy things that keep people going in this crazy life . 3633 It 's secondary to American Psycho but still has claws enough to get inside you and stay there for a couple of hours . 3634 The Hours , a delicately crafted film , is an impressive achievement in spite of a river of sadness that pours into every frame . 3635 Fudges fact and fancy with such confidence that we feel as if we 're seeing something purer than the real thing . 3636 This is unusual , food-for-thought cinema that 's as entertaining as it is instructive . 3637 With an expressive face reminiscent of Gong Li and a vivid personality like Zhang Ziyi 's , Dong stakes out the emotional heart of Happy . 3638 Nohe '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 . 3639 It 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 ? 3640 Secret Ballot is a funny , puzzling movie ambiguous enough to be engaging and oddly moving . 3641 Although devoid of objectivity and full of nostalgic comments from the now middle-aged participants , Dogtown and Z-Boys has a compelling story to tell . 3642 It 's got some pretentious eye-rolling moments and it did n't entirely grab me , but there 's stuff here to like . 3643 Birthday Girl walks a tricky tightrope between being wickedly funny and just plain wicked . 3644 The 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 . 3645 Brings an irresistible blend of warmth and humor and a consistent embracing humanity in the face of life 's harshness . 3646 Jackson is always watchable . 3647 To the degree that ivans xtc . 3648 works , it 's thanks to Huston 's revelatory performance . 3649 A wild ride of a movie that keeps throwing fastballs . 3650 Confessions is without a doubt a memorable directorial debut from King Hunk . 3651 Weird , vulgar comedy that 's definitely an acquired taste . 3652 A. . . 3653 cynical and serious look at teenage boys doing what they do best - being teenagers . 3654 The film is a very good viewing alternative for young women . 3655 Australian 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 . 3656 A dazzling dream of a documentary . 3657 A keep - 'em - guessing plot and an affectionate take on its screwed-up characters . 3658 Brave and sweetly rendered love story . 3659 The film proves unrelentingly grim -- and equally engrossing . 3660 A hallmark film in an increasingly important film industry and worth the look . 3661 The Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding , but its provocative central wedding sequence has far more impact . 3662 If you like blood , guts and crazy beasts stalking men with guns though ... you will likely enjoy this monster . 3663 The difference between Cho and most comics is that her confidence in her material is merited . 3664 Sad to say -- it accurately reflects the rage and alienation that fuels the self-destructiveness of many young people . 3665 There 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 . 3666 ` Anyone with a passion for cinema , and indeed sex , should see it as soon as possible . ' 3667 Seeks to transcend its genre with a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil . 3668 Mordantly funny and intimately knowing ... 3669 What makes the movie special is its utter sincerity . 3670 Fast and funny , an action cartoon that 's suspenseful enough for older kids but not too scary for the school-age crowd . 3671 One of those rare films that come by once in a while with flawless amounts of acting , direction , story and pace . 3672 The AAA of action , XXX is a blast of adrenalin , rated EEE for excitement . 3673 And Vin Diesel is the man . 3674 Earnest , unsubtle and Hollywood-predictable , Green Dragon is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese . 3675 An 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 . 3676 Nair 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 . 3677 The film 's unhurried pace is actually one of its strengths . 3678 Entirely appropriately , the tale unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn . 3679 Despite its floating narrative , this is a remarkably accessible and haunting film . 3680 Vibrantly colored and beautifully designed , Metropolis is a feast for the eyes . 3681 Sweetly sexy , funny and touching . 3682 ... 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 . 3683 Is truth stranger than fiction ? 3684 In -LRB- screenwriter -RRB- Charlie Kaufman 's world , truth and fiction are equally strange , and his for the taking . 3685 For decades we 've marveled at Disney 's rendering of water , snow , flames and shadows in a hand-drawn animated world . 3686 Prepare to marvel again . 3687 A witty , low-key romantic comedy . 3688 More good than great but Freeman and Judd make it work . 3689 If you 're looking for a smart , nuanced look at de Sade and what might have happened at Picpus , Sade is your film . 3690 Could have been crisper and punchier , but it 's likely to please audiences who like movies that demand four hankies . 3691 Together writer-director Danny Verete 's three tales comprise a powerful and reasonably fulfilling gestalt . 3692 Bursting through the constraints of its source , this is one adapted - from-television movie that actually looks as if it belongs on the big screen . 3693 Its almost too-spectacular coastal setting distracts slightly from an eccentric and good-naturedly aimless story . 3694 In other words , it 's just another sports drama\/character study . 3695 Yet this one makes up for in heart what it lacks in outright newness . 3696 Plus , like I already mentioned ... it 's Robert Duvall ! 3697 C'mon ! 3698 This story of a determined woman 's courage to find her husband in a war zone offers winning performances and some effecting moments . 3699 Like 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 . 3700 A modestly made but profoundly moving documentary . 3701 It 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 . 3702 Not everything in this ambitious comic escapade works , but Coppola , along with his sister , Sofia , is a real filmmaker . 3703 It must be in the genes . 3704 The performers are so spot on , it is hard to conceive anyone else in their roles . 3705 This slight premise ... works because of the ideal casting of the masterful British actor Ian Holm as the aged Napoleon . 3706 Hashiguchi 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 . 3707 Although the film boils down to a lightweight story about matchmaking , the characters make Italian for Beginners worth the journey 3708 The dragons are the real stars of Reign of Fire and you wo n't be disappointed . 3709 Kudos to the most enchanting film of the year . 3710 It works well enough , since the thrills pop up frequently , and the dispatching of the cast is as often imaginative as it is gory . 3711 Colorful 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 . 3712 It '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 . 3713 Director Paul Cox 's unorthodox , abstract approach to visualizing Nijinsky 's diaries is both stimulating and demanding . 3714 For 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 . 3715 Most of the things that made the original Men in Black such a pleasure are still there . 3716 Mostly honest , this somber picture reveals itself slowly , intelligently , artfully . 3717 Best enjoyed as a work of fiction inspired by real-life events . 3718 Those seeking a definitive account of Eisenstein 's life would do better elsewhere . 3719 -LRB- Westbrook -RRB- makes a wonderful subject for the camera . 3720 A film that 's flawed and brilliant in equal measure . 3721 Even 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 . 3722 Ultimately too repellent to fully endear itself to American art house audiences , but it is notable for its stylistic austerity and forcefulness . 3723 Hardly a film that comes along every day . 3724 A 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 . 3725 The film 's only missteps come from the script 's insistence on providing deep emotional motivation for each and every one of Abagnale 's antics . 3726 A sweet , tender sermon about a 12-year-old Welsh boy more curious about God than girls , who learns that believing in something does matter . 3727 the film belongs to the marvelous Verdu , a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public 3728 More intimate than spectacular , E.T. is carried less by wow factors than by its funny , moving yarn that holds up well after two decades . 3729 For 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 . 3730 If 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 . 3731 It depends on how well flatulence gags fit into your holiday concept . 3732 Moonlight 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 . 3733 It is an indelible epic American story about two families , one black and one white , facing change in both their inner and outer lives . 3734 Not 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 . 3735 Quite simply , a joy to watch and -- especially -- to listen to . 3736 A flawed film but an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly succeeds . 3737 The filmmakers wisely decided to let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him . 3738 A winning and wildly fascinating work . 3739 We do get the distinct impression that this franchise is drawing to a close . 3740 Worth catching for Griffiths ' warm and winning central performance . 3741 The tone errs on the shrill side , tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons . 3742 An interesting psychological game of cat-and-mouse , three-dimensional characters and believable performances all add up to a satisfying crime drama . 3743 A 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 + . '' 3744 I love the robust middle of this picture . 3745 The 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 . 3746 Maintains your interest until the end and even leaves you with a few lingering animated thoughts . 3747 There is a beautiful , aching sadness to it all . 3748 Paul Cox needed to show it . 3749 It is up to you to decide if you need to see it . 3750 If Divine Secrets of the Ya-Ya Sisterhood suffers from a ploddingly melodramatic structure , it comes to life in the performances . 3751 If you ignore the cliches and concentrate on City by the Sea 's interpersonal drama , it ai n't half-bad . 3752 There 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 . 3753 Reign 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 . 3754 An earnest , roughshod document , it serves as a workable primer for the region 's recent history , and would make a terrific 10th-grade learning tool . 3755 Samuel Beckett applied to the Iranian voting process . 3756 The Bard as black comedy -- Willie would have loved it . 3757 Another trumpet blast that there may be a New Mexican Cinema a-bornin ' . ' 3758 ... 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 . ' 3759 Tadpole 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 . 3760 This is a story that zings all the way through with originality , humour and pathos . 3761 As 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 . 3762 It is a challenging film , if not always a narratively cohesive one . 3763 Trapped wo n't score points for political correctness , but it may cause parents a few sleepless hours -- a sign of its effectiveness . 3764 A 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 . 3765 It 's incredible the number of stories the Holocaust has generated . 3766 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 . 3767 As 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 . 3768 There '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 . 3769 Like a skillful fisher , the director uses the last act to reel in the audience since its poignancy hooks us completely . 3770 A film with contemporary political resonance illustrated by a winning family story . 3771 Kids five and up will be delighted with the fast , funny , and even touching story . 3772 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 . 3773 An unsettling , memorable cinematic experience that does its predecessors proud . 3774 Maid 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 . 3775 Much of All About Lily Chou-Chou is mesmerizing : some of its plaintiveness could make you weep . 3776 Ferrara 's strongest and most touching movie of recent years . 3777 Spielberg 's first real masterpiece , it deserved all the hearts it won -- and wins still , 20 years later . 3778 The 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 ... 3779 More than simply a portrait of early extreme sports , this peek into the 1970s skateboard revolution is a skateboard film as social anthropology ... 3780 What I saw , I enjoyed . 3781 The 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 . 3782 A deft , delightful mix of sulky teen drama and overcoming-obstacles sports-movie triumph . 3783 Daringly perceptive , taut , piercing and feisty , Biggie and Tupac is undeniably subversive and involving in its bold presentation . 3784 Delivers more than its fair share of saucy hilarity . 3785 A fairly enjoyable mixture of Longest Yard ... and the 1999 Guy Ritchie caper Lock Stock and Two Smoking Barrels . 3786 Happily , some things are immune to the folly of changing taste and attitude . 3787 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 . 3788 Hugely 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 . 3789 It '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 . 3790 It 's probably worth catching solely on its visual merits . 3791 If only it had the story to match . 3792 Like 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 . 3793 ... only Bond can save us from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction . 3794 The first half bursts with a goofy energy previous Disney films only used for a few minutes here and there . 3795 It 's quite diverting nonsense . 3796 An old-fashioned scary movie , one that relies on lingering terror punctuated by sudden shocks and not constant bloodshed punctuated by flying guts . 3797 For all the wit and hoopla , Festival In Cannes offers rare insight into the structure of relationships . 3798 What 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 . 3799 Renner ? 3800 s face is chillingly unemotive , yet he communicates a great deal in his performance . 3801 See it for his performance if nothing else . 3802 ... the kind of entertainment that parents love to have their kids see . 3803 It 's a fine , focused piece of work that reopens an interesting controversy and never succumbs to sensationalism . 3804 Its engaging simplicity is driven by appealing leads . 3805 Swimming 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 . 3806 A respectable venture on its own terms , lacking the broader vision that has seen certain Trek films ... cross over to a more mainstream audience . 3807 It 's weird , wonderful , and not necessarily for kids . 3808 An elegant film with often surprising twists and an intermingling of naiveté and sophistication . 3809 Blessed with two fine , nuanced lead performances . 3810 While 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 . 3811 As a girl-meets-girl romantic comedy , Kissing Jessica Steinis quirky , charming and often hilarious . 3812 Yet it 's not quite the genre-busting film it 's been hyped to be because it plays everything too safe . 3813 You 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 . 3814 Turturro is fabulously funny and over the top as a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 3815 Meant for Star Wars fans . 3816 It is there to give them a good time . 3817 From 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 . 3818 Simply and eloquently articulates the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy . 3819 Provides a very moving and revelatory footnote to the Holocaust . 3820 Terrific performances , great to look at , and funny . 3821 A little uneven to be the cat 's meow , but it 's good enough to be the purr . 3822 It '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 . 3823 I like it . 3824 There is a freedom to watching stunts that are this crude , this fast-paced and this insane . 3825 That 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 . 3826 That 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 . 3827 It '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 . 3828 A sharp and quick documentary that is funny and pithy , while illuminating an era of theatrical comedy that , while past , really is n't . 3829 The film does a solid job of slowly , steadily building up to the climactic burst of violence . 3830 Fred 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 . 3831 The directive to protect the code at all costs also begins to blur as the importance of the man and the code merge 3832 Overall , Cletis Tout is a winning comedy that excites the imagination and tickles the funny bone . 3833 Easily one of the best and most exciting movies of the year . 3834 The script manages the rare trick of seeming at once both refreshingly different and reassuringly familiar . 3835 An engaging , formulaic sports drama that carries a charge of genuine excitement . 3836 Insomnia is one of the year 's best films and Pacino gives one of his most daring , and complicated , performances . 3837 Like 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 . 3838 I 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 . 3839 Despite its flaws ... Belinsky is still able to create an engaging story that keeps you guessing at almost every turn . 3840 Each punch seen through prison bars , the fights become not so much a struggle of man vs. man as Brother-Man vs. The Man . 3841 The 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 . 3842 Like the best of Godard 's movies ... it is visually ravishing , penetrating , impenetrable . 3843 Horns and Halos benefits from serendipity but also reminds us of our own responsibility to question what is told as the truth . 3844 -LRB- Has -RRB- an immediacy and an intimacy that sucks you in and dares you not to believe it 's all true . 3845 It treats Ana 's journey with honesty that is tragically rare in the depiction of young women in film . 3846 Captivates as it shows excess in business and pleasure , allowing us to find the small , human moments , and leaving off with a grand whimper . 3847 A refreshingly realistic , affectation-free coming-of-age tale . 3848 How good this film might be , depends if you believe that the shocking conclusion is too much of a plunge or not . 3849 Great fun both for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex . 3850 Features one of the most affecting depictions of a love affair ever committed to film . 3851 To 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 . 3852 One of the best movies of the year . 3853 The usual movie rah-rah , pleasantly and predictably delivered in low-key style by director Michael Apted and writer Tom Stoppard . 3854 A superlative B movie -- funny , sexy , and rousing . 3855 Those prone to indignation need not apply ; those susceptible to blue hilarity , step right up . 3856 Like 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 . 3857 -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 . 3858 The 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 . 3859 At its best , which occurs often , Michael Moore 's Bowling for Columbine rekindles the muckraking , soul-searching spirit of the ` Are we a sick society ? ' 3860 journalism of the 1960s . 3861 A modestly surprising movie . 3862 A 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 . 3863 There 's a spontaneity to The Chateau , a sense of light-heartedness , that makes it attractive throughout . 3864 The 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 . 3865 Like any good romance , Son of the Bride , proves it 's never too late to learn . 3866 -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 . 3867 The film , while not exactly assured in its execution , is notable for its sheer audacity and openness . 3868 A thoroughly enjoyable , heartfelt coming-of-age comedy . 3869 Feeling like a dope has rarely been more fun than it is in Nine Queens . 3870 Leigh makes these lives count . 3871 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 . 3872 A lot of fun , with an undeniable energy sparked by two actresses in their 50s working at the peak of their powers . 3873 Promises is one film that 's truly deserving of its Oscar nomination . 3874 What 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 . 3875 If 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 . 3876 Beautiful , angry and sad , with a curious sick poetry , as if the Marquis de Sade had gone in for pastel landscapes . 3877 Ms. Hutchins is talented enough and charismatic enough to make us care about Zelda 's ultimate fate . 3878 Monte Cristo smartly emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds . 3879 A mesmerizing cinematic poem from the first frame to the last . 3880 -LRB- It 's -RRB- a clever thriller with enough unexpected twists to keep our interest . 3881 An undeniably moving film to experience , and ultimately that 's what makes it worth a recommendation . 3882 Nicole 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 . 3883 Vividly conveys the shadow side of the 30-year friendship between two English women . 3884 The story has some nice twists but the ending and some of the back-story is a little tired . 3885 The performances are all solid ; it merely lacks originality to make it a great movie . 3886 Manages to please its intended audience -- children -- without placing their parents in a coma-like state . 3887 When 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 . 3888 A strong first act and absolutely , inescapably gorgeous , skyscraper-trapeze motion of the amazing Spider-Man . 3889 Driven by a fantastic dual performance from Ian Holm ... the film is funny , insightfully human and a delightful lark for history buffs . 3890 A well-put-together piece of urban satire . 3891 It 's the sweet Cinderella story that `` Pretty Woman '' wanted to be . 3892 It 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 . 3893 What does n't this film have that an impressionable kid could n't stand to hear ? 3894 What 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 . 3895 A deeply felt and vividly detailed story about newcomers in a strange new world . 3896 It 's a visual delight and a decent popcorn adventure , as long as you do n't try to look too deep into the story 3897 It 's a feel-good movie about which you can actually feel good . 3898 A full experience , a love story and a murder mystery that expands into a meditation on the deep deceptions of innocence . 3899 The Powerpuff Girls arrive on the big screen with their super-powers , their super-simple animation and their super-dooper-adorability intact . 3900 -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 . 3901 A new film from Bill Plympton , the animation master , is always welcome . 3902 A devastating indictment of unbridled greed and materalism . 3903 What makes the film special is the refreshingly unhibited enthusiasm that the people , in spite of clearly evident poverty and hardship , bring to their music . 3904 The film has a kind of hard , cold effect . 3905 The gags are often a stitch . 3906 The asylum material is gripping , as are the scenes of Jia with his family . 3907 A 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 . 3908 One ca n't deny its seriousness and quality . 3909 Good performances and a realistic , non-exploitive approach make Paid in Full worth seeing . 3910 This 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 . 3911 Ryan Gosling is , in a word , brilliant as the conflicted Daniel . 3912 ... somehow manages to escape the shackles of its own clichés to be the best espionage picture to come out in weeks . 3913 Much 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 . 3914 Takes a simple premise and carries it to unexpected heights . 3915 With few respites , Marshall keeps the energy humming , and his edits , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it . 3916 Its metaphors are opaque enough to avoid didacticism , and the film succeeds as an emotionally accessible , almost mystical work . 3917 Provides a satisfactory overview of the bizarre world of extreme athletes as several daredevils express their own views . 3918 Inventive , fun , intoxicatingly sexy , violent , self-indulgent and maddening . 3919 Comedian , like its subjects , delivers the goods and audiences will have a fun , no-frills ride . 3920 A naturally funny film , Home Movie makes you crave Chris Smith 's next movie . 3921 Pipe Dream does have its charms . 3922 The leads are natural and lovely , the pace is serene , the humor wry and sprightly . 3923 Those who want to be jolted out of their gourd should drop everything and run to Ichi . 3924 ... 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 . 3925 Sheds light on a subject few are familiar with , and makes you care about music you may not have heard before . 3926 Despite the film 's bizarre developments , Hoffman keeps us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity . 3927 To get at the root psychology of this film would require many sessions on the couch of Dr. Freud . 3928 Great over-the-top moviemaking if you 're in a slap-happy mood . 3929 Viveka Seldahl and Sven Wollter will touch you to the core in a film you will never forget -- that you should never forget . 3930 The magic -LRB- and original running time -RRB- of ace Japanimator Hayao Miyazaki 's Spirited Away survives intact in BV 's re-voiced version . 3931 From the dull , surreal ache of mortal awareness emerges a radiant character portrait . 3932 Captures the raw comic energy of one of our most flamboyant female comics . 3933 It 's not particularly subtle ... However , it still manages to build to a terrifying , if obvious , conclusion . 3934 The auteur 's ear for the way fears and slights are telegraphed in the most blithe exchanges gives the film its lingering tug . 3935 Bolstered by exceptional performances and a clear-eyed take on the economics of dealing and the pathology of ghetto fabulousness . 3936 This 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 . 3937 Some remarkable achival film about how Shanghai -LRB- of all places -RRB- served Jews who escaped the Holocaust . 3938 In a movie full of surprises , the biggest is that Secret Ballot is a comedy , both gentle and biting . 3939 The 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 . 3940 A manically generous Christmas vaudeville . 3941 Tony 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 . 3942 A psychic journey deep into the very fabric of Iranian ... life . 3943 It 's a smartly directed , grown-up film of ideas . 3944 While puerile men dominate the story , the women shine . 3945 Unlike lots of Hollywood fluff , this has layered , well-developed characters and some surprises . 3946 For a film that 's being advertised as a comedy , Sweet Home Alabama is n't as funny as you 'd hoped . 3947 For a film that 's being advertised as a comedy , Sweet Home Alabama is n't as funny as you 'd hoped . 3948 Vera has created a provocative , absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores . 3949 A French film with a more down-home flavor . 3950 Depending 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 . 3951 While 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 . 3952 There 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 . 3953 Fontaine 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 . 3954 As 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 . 3955 Sure , 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 . 3956 Dong shows how intolerance has the power to deform families , then tear them apart . 3957 The Chateau belongs to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms ... is a nonstop hoot . 3958 The cast , collectively a successful example of the lovable-loser protagonist , shows deft comic timing . 3959 It trusts the story it sets out to tell . 3960 I could n't recommend this film more . 3961 As a good old-fashioned adventure for kids , Spirit : Stallion of the Cimarron is a winner . 3962 An effective portrait of a life in stasis -- of the power of inertia to arrest development in a dead-end existence . 3963 Succeeds as a well-made evocation of a subculture . 3964 ... an interesting slice of history . 3965 Me no lika da accents so good , but I thoroughly enjoyed the love story . 3966 Scott Baio is turning in some delightful work on indie projects . 3967 It 's an experience in understanding a unique culture that is presented with universal appeal . 3968 What 's surprising is how well it holds up in an era in which computer-generated images are the norm . 3969 Brings together some of the biggest names in Japanese anime , with impressive results . 3970 Wonder , 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 3971 A flick about our infantilized culture that is n't entirely infantile . 3972 An exceptionally acted , quietly affecting cop drama . 3973 Sensual , funny and , in the end , very touching . 3974 Angel presents events partly from the perspective of Aurelie and Christelle , and infuses the film with the sensibility of a particularly nightmarish fairytale . 3975 Who 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 ? 3976 -LRB- A -RRB- smarter and much funnier version of the old Police Academy flicks . 3977 Proof once again that if the filmmakers just follow the books , they ca n't go wrong . 3978 Better effects , better acting and a hilarious Kenneth Branagh . 3979 An excellent sequel . 3980 Both a grand tour through 300 hundred years of Russian cultural identity and a stunning technical achievement . 3981 Just how these families interact may surprise you . 3982 Proves that some movie formulas do n't need messing with -- like the big-bug movie . 3983 A surprisingly funny movie . 3984 This new movie version of the Alexandre Dumas classic is the stuff of high romance , brought off with considerable wit . 3985 Like all of Egoyan 's work , Ararat is fiercely intelligent and uncommonly ambitious . 3986 If 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 . 3987 ... 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 . 3988 -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 . 3989 Although made on a shoestring and unevenly acted , conjures a Lynch-like vision of the rotting underbelly of Middle America . 3990 A piquant meditation on the things that prevent people from reaching happiness . 3991 A timely look back at civil disobedience , anti-war movements and the power of strong voices . 3992 Rifkin 's references are ... impeccable throughout . 3993 I 'd be lying if I said my ribcage did n't ache by the end of Kung Pow . 3994 More 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 . 3995 The movie is ingenious fun . 3996 See it . 3997 The combination of lightness and strictness in this instance gives Italian for Beginners an amiable aimlessness that keeps it from seeming predictably formulaic . 3998 The script is smart and dark - hallelujah for small favors . 3999 An 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 . 4000 Mr. 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 . 4001 Spectacular in every sense of the word , even if you don ' t know an Orc from a Uruk-Hai . 4002 This is n't exactly profound cinema , but it 's good-natured and sometimes quite funny . 4003 This is a finely written , superbly acted offbeat thriller . 4004 Tres Greek writer and star Nia Vardalos has crafted here a worldly-wise and very funny script . 4005 A tasty appetizer that leaves you wanting more . 4006 It gives devastating testimony to both people 's capacity for evil and their heroic capacity for good . 4007 The 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 . 4008 The difference is that I truly enjoyed most of Mostly Martha while I ne 4009 Morton deserves an Oscar nomination . 4010 A colorful , vibrant introduction to a universal human impulse , lushly photographed and beautifully recorded . 4011 The 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 '' . 4012 The history is fascinating ; the action is dazzling . 4013 They just do n't work in concert . 4014 For those in search of something different , Wendigo is a genuinely bone-chilling tale . 4015 A lovely film for the holiday season . 4016 It remains to be seen whether Statham can move beyond the crime-land action genre , but then again , who says he has to ? 4017 A hypnotic cyber hymn and a cruel story of youth culture . 4018 It 's a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor . 4019 At 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 . 4020 The performances of the children , untrained in acting , have an honesty and dignity that breaks your heart . 4021 Despite 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 . 4022 This 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 . 4023 Adams , with four scriptwriters , takes care with the characters , who are so believable that you feel what they feel . 4024 A completely spooky piece of business that gets under your skin and , some plot blips aside , stays there for the duration . 4025 Superbly photographed and staged by Mendes with a series of riveting set pieces the likes of which mainstream audiences have rarely seen . 4026 The ensemble cast turns in a collectively stellar performance , and the writing is tight and truthful , full of funny situations and honest observations . 4027 Not quite as miraculous as its DreamWorks makers would have you believe , but it more than adequately fills the eyes and stirs the emotions . 4028 A properly spooky film about the power of spirits to influence us whether we believe in them or not . 4029 The lightest , most breezy movie Steven Spielberg has made in more than a decade . 4030 And the positive change in tone here seems to have recharged him . 4031 Like Edward Norton in American History X , Ryan Gosling -LRB- Murder By Numbers -RRB- delivers a magnetic performance . 4032 This is a very funny , heartwarming film . 4033 It has fun with the quirks of family life , but it also treats the subject with fondness and respect . 4034 Rarely , indeed almost never , is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema . 4035 The leanest and meanest of Solondz 's misanthropic comedies . 4036 A dark , quirky road movie that constantly defies expectation . 4037 There are some movies that hit you from the first scene and you know it 's going to be a trip . 4038 Igby Goes Down is one of those movies . 4039 Often messy and frustrating , but very pleasing at its best moments , it 's very much like life itself . 4040 A burst of color , music , and dance that only the most practiced curmudgeon could fail to crack a smile at . 4041 An energetic , violent movie with a momentum that never lets up . 4042 Lasker 's canny , meditative script distances sex and love , as Byron and Luther ... realize they ca n't get no satisfaction without the latter . 4043 It turns out to be smarter and more diabolical than you could have guessed at the beginning . 4044 Cage makes an unusual but pleasantly haunting debut behind the camera . 4045 Noyce has worked wonders with the material . 4046 It 's mostly a pleasure to watch . 4047 And the reason for that is a self-aware , often self-mocking , intelligence . 4048 The Chateau is a risky venture that never quite goes where you expect and often surprises you with unexpected comedy . 4049 A very well-meaning movie , and it will stand in future years as an eloquent memorial to the World Trade Center tragedy . 4050 There 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 . 4051 Vividly demonstrates that the director of such Hollywood blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop . 4052 A four star performance from Kevin Kline who unfortunately works with a two star script . 4053 Dogtown & Z-Boys evokes the blithe rebel fantasy with the kind of insouciance embedded in the sexy demise of James Dean . 4054 If you do n't flee , you might be seduced . 4055 If you do n't laugh , flee . 4056 Payne constructs a hilarious ode to middle America and middle age with this unlikely odyssey , featuring a pathetic , endearing hero who is all too human . 4057 Koury frighteningly and honestly exposes one teenager 's uncomfortable class resentment and , in turn , his self-inflicted retaliation . 4058 The Santa Clause 2 proves itself a more streamlined and thought out encounter than the original could ever have hoped to be . 4059 Now 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 . 4060 Succeeds where its recent predecessor miserably fails because it demands that you suffer the dreadfulness of war from both sides . 4061 The first Bond movie in ages that is n't fake fun . 4062 This 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 . 4063 A 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 . 4064 A weird and wonderful comedy . 4065 The 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 . 4066 Has the capability of effecting change and inspiring hope . 4067 A first-class , thoroughly involving B movie that effectively combines two surefire , beloved genres -- the prison flick and the fight film . 4068 LaBute 's careful handling makes the material seem genuine rather than pandering . 4069 In 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 . 4070 But they fascinate in their recklessness . 4071 Death to Smoochy is often very funny , but what 's even more remarkable is the integrity of DeVito 's misanthropic vision . 4072 A beautiful , entertaining two hours . 4073 You get the idea , though , that Kapur intended the film to be more than that . 4074 A wonderful , ghastly film . 4075 Amid 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 . 4076 Parris ' performance is credible and remarkably mature . 4077 ` 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 . ' 4078 Munch 's screenplay is tenderly observant of his characters . 4079 He watches them as they float within the seas of their personalities . 4080 His scenes are short and often unexpected . 4081 It grabs you in the dark and shakes you vigorously for its duration . 4082 Leigh '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 . 4083 Hashiguchi vividly captures the way young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse . 4084 Uneven but a lot of fun . 4085 I know that I 'll never listen to Marvin Gaye or the Supremes the same way again 4086 The 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 . 4087 Not as good as The Full Monty , but a really strong second effort . 4088 Whenever 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 . 4089 If horses could fly , this is surely what they 'd look like . 4090 Unfolds as one of the most politically audacious films of recent decades from any country , but especially from France . 4091 This real-life Hollywood fairy-tale is more engaging than the usual fantasies Hollywood produces . 4092 The graphic carnage and re-creation of war-torn Croatia is uncomfortably timely , relevant , and sickeningly real . 4093 Left me with the visceral sensation of longing , lasting traces of Charlotte 's web of desire and desperation . 4094 The characters are more deeply thought through than in most ` right-thinking ' films . 4095 Crammed with incident , and bristles with passion and energy . 4096 It 's fun , splashy and entertainingly nasty . 4097 A simple tale of an unlikely friendship , but thanks to the gorgeous locales and exceptional lead performances , it has considerable charm . 4098 It 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 . 4099 There 's very little sense to what 's going on here , but the makers serve up the cliches with considerable dash . 4100 Witty , contemplative , and sublimely beautiful . 4101 A surprisingly ` solid ' achievement by director Malcolm D. Lee and writer John Ridley . 4102 Woven together handsomely , recalling sixties ' rockumentary milestones from Lonely Boy to Do n't Look Back . 4103 This is pure , exciting moviemaking . 4104 You wo n't exactly know what 's happening but you 'll be blissfully exhausted . 4105 The 1960s rebellion was misdirected : you ca n't fight your culture . 4106 Works because Reno does n't become smug or sanctimonious towards the audience . 4107 Nettelbeck ... has a pleasing way with a metaphor . 4108 A pure participatory event that malnourished intellectuals will gulp down in a frenzy . 4109 The cast delivers without sham the raw-nerved story . 4110 Steven Soderbergh 's digital video experiment is a clever and cutting , quick and dirty look at modern living and movie life . 4111 The film 's highlight is definitely its screenplay , both for the rhapsodic dialogue that jumps off the page , and for the memorable character creations . 4112 It lets you brush up against the humanity of a psycho , without making him any less psycho . 4113 Sillier , cuter , and shorter than the first -LRB- as best I remember -RRB- , but still a very good time at the cinema . 4114 The film is bright and flashy in all the right ways . 4115 Elegant and eloquent -LRB- meditation -RRB- on death and that most elusive of passions , love . 4116 Cut 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 . 4117 Filmmaker Tian Zhuangzhuang triumphantly returns to narrative filmmaking with a visually masterful work of quiet power . 4118 It excels because , unlike so many other Hollywood movies of its ilk , it offers hope . 4119 Shot in rich , shadowy black-and-white , Devils chronicles , with increasingly amused irony , the relationship between reluctant captors and befuddled captives . 4120 There 's no clear picture of who killed Bob Crane . 4121 But here 's a glimpse at his life . 4122 Spectacularly beautiful , not to mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing . 4123 A summer entertainment adults can see without feeling embarrassed , but it could have been more . 4124 Sparse but oddly compelling . 4125 A stirring , funny and finally transporting re-imagining of Beauty and the Beast and 1930s horror films 4126 The Pinochet Case is a searing album of remembrance from those who , having survived , suffered most . 4127 A sweet-tempered comedy that forgoes the knee-jerk misogyny that passes for humor in so many teenage comedies . 4128 Argento , 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 . 4129 With so many bad romances out there , this is the kind of movie that deserves a chance to shine . 4130 Brash , 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 . 4131 Though 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 . 4132 `` The Quiet American '' begins in Saigon in 1952 . 4133 That 's its first sign of trouble . 4134 A dazzling thing to behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater provides . 4135 Be patient with the lovely Hush ! 4136 and your reward will be a thoughtful , emotional movie experience . 4137 The 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 . 4138 Godard has never made a more sheerly beautiful film than this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence . 4139 The kind of movie that comes along only occasionally , one so unconventional , gutsy and perfectly executed it takes your breath away . 4140 Unlike most surf movies , Blue Crush thrillingly uses modern technology to take the viewer inside the wave . 4141 By the end you ca n't help but feel ` stoked . ' 4142 The off-center humor is a constant , and the ensemble gives it a buoyant delivery . 4143 A tasty slice of droll whimsy . 4144 Mike 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 4145 Awesome work : ineffable , elusive , yet inexplicably powerful 4146 Sparkling , 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 ' . 4147 Even 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 . 4148 Where 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 . 4149 The result is somewhat satisfying -- it still comes from Spielberg , who has never made anything that was n't at least watchable . 4150 But it 's also disappointing to a certain degree . 4151 The all-French cast is marveilleux . 4152 There 's a lot to recommend Read My Lips . 4153 A minor film with major pleasures from Portuguese master Manoel de Oliviera ... 4154 Brosnan gives a portrayal as solid and as perfect as his outstanding performance as Bond in Die Another Day . 4155 Audiences 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 . 4156 The movie is ... very funny as you peek at it through the fingers in front of your eyes . 4157 Nicks sustains the level of exaggerated , stylized humor throughout by taking your expectations and twisting them just a bit . 4158 A refreshing change from the usual whoopee-cushion effort aimed at the youth market . 4159 It 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 . 4160 ... an enjoyably frothy ` date movie ' ... 4161 The genius of the work speaks volumes , offering up a hallucinatory dreamscape that frustrates and captivates . 4162 Two Weeks Notice has appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy . 4163 The movie 's seams may show ... but Pellington gives `` Mothman '' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling . 4164 If Mostly Martha is mostly unsurprising , it 's still a sweet , even delectable diversion . 4165 A wild comedy that could only spring from the demented mind of the writer of Being John Malkovich . 4166 Schnitzler does a fine job contrasting the sleekness of the film 's present with the playful paranoia of the film 's past . ' 4167 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 . ' 4168 Mana gives us compelling , damaged characters who we want to help -- or hurt . 4169 The sentimental script has problems , but the actors pick up the slack . 4170 A good documentary can make interesting a subject you thought would leave you cold . 4171 A case in point : Doug Pray 's Scratch . 4172 Abderrahmane 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 . 4173 In XXX , Diesel is that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep . 4174 An engrossing and grim portrait of hookers : what they think of themselves and their clients . 4175 It all plays out ... like a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out . 4176 The 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 . 4177 This is one of the rarest kinds of films : a family-oriented non-Disney film that is actually funny without hitting below the belt . 4178 It is refreshingly undogmatic about its characters . 4179 A moving and important film . 4180 Deep intelligence and a warm , enveloping affection breathe out of every frame . 4181 Famuyiwa '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 . 4182 Showtime is a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation . 4183 Sweet Home Alabama is n't going to win any Academy Awards , but this date-night diversion will definitely win some hearts . 4184 a cruelly funny twist on teen comedy packed with inventive cinematic tricks and an ironically killer soundtrack 4185 A 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 . 4186 Even 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 . 4187 A tour de force drama about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers . 4188 It is a strength of a documentary to disregard available bias , especially as temptingly easy as it would have been with this premise . 4189 When 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 . 4190 Maryam is more timely now than ever . 4191 An 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 . 4192 Piccoli gives a superb performance full of deep feeling . 4193 What a concept , what an idea , what a thrill ride . 4194 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 . 4195 The rare movie that 's as crisp and to the point as the novel on which it 's based . 4196 A film of epic scale with an intimate feeling , a saga of the ups and downs of friendships . 4197 Sayles has an eye for the ways people of different ethnicities talk to and about others outside the group . 4198 `` 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 . 4199 Charlie Hunnam has the twinkling eyes , repressed smile and determined face needed to carry out a Dickensian hero . 4200 Niccol the filmmaker merges his collaborators ' symbolic images with his words , insinuating , for example , that in Hollywood , only God speaks to the press 4201 Khouri manages , with terrific flair , to keep the extremes of screwball farce and blood-curdling family intensity on one continuum . 4202 Impresses as a skillfully assembled , highly polished and professional adaptation ... just about as chilling and unsettling as ` Manhunter ' was . 4203 It 's a solid movie about people whose lives are anything but . 4204 Though a touch too Arthouse 101 in its poetic symbolism , Heaven proves to be a good match of the sensibilities of two directors . 4205 I simply ca n't recommend it enough . 4206 Wiseman reveals the victims of domestic abuse in all of their pity and terror . 4207 Muccino , 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 . 4208 We want the funk - and this movie 's got it . 4209 Wow , so who knew Charles Dickens could be so light-hearted ? 4210 Many 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 . 4211 The storylines are woven together skilfully , the magnificent swooping aerial shots are breathtaking , and the overall experience is awesome . 4212 A miraculous movie , I 'm Going Home is so slight , yet overflows with wisdom and emotion . 4213 Baran is shockingly devoid of your typical Majid Majidi shoe-loving , crippled children . 4214 Every moment crackles with tension , and by the end of the flick , you 're on the edge of your seat . 4215 A 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 . 4216 The series ' message about making the right choice in the face of tempting alternatives remains prominent , as do the girls ' amusing personalities . 4217 Richly entertaining and suggestive of any number of metaphorical readings . 4218 A compelling allegory about the last days of Germany 's democratic Weimar Republic . 4219 Offers a guilt-free trip into feel-good territory . 4220 A B-movie you can sit through , enjoy on a certain level and then forget . 4221 Devos delivers a perfect performance that captures the innocence and budding demons within a wallflower . 4222 Disappointingly , 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 . 4223 Director Todd Solondz has made a movie about critical reaction to his two previous movies , and about his responsibility to the characters that he creates . 4224 The word that comes to mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady , is painterly . 4225 A fascinating case study of flower-power liberation -- and the price that was paid for it . 4226 Bluer than the Atlantic and more biologically detailed than an autopsy , the movie ... is , also , frequently hilarious . 4227 Really is a pan-American movie , with moments of genuine insight into the urban heart . 4228 An overly familiar scenario is made fresh by an intelligent screenplay and gripping performances in this low-budget , video-shot , debut indie effort . 4229 Peppering this urban study with references to Norwegian folktales , Villeneuve creates in Maelstrom a world where the bizarre is credible and the real turns magical . 4230 Ong 's promising debut is a warm and well-told tale of one recent Chinese immigrant 's experiences in New York City . 4231 That 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 . 4232 There 's not much to Fatale , outside of its stylish surprises ... but that 's OK . 4233 What redeems the film is the cast , particularly the Ya-Yas themselves . 4234 Beautiful , cold , oddly colorful and just plain otherworldly , a freaky bit of art that 's there to scare while we delight in the images . 4235 It 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario , and her presence succeeds in making us believe . 4236 The film is darkly atmospheric , with Herrmann quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles . 4237 Shyamalan 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 . 4238 ... the story , like Ravel 's Bolero , builds to a crescendo that encompasses many more paths than we started with . 4239 It 's plotless , shapeless -- and yet , it must be admitted , not entirely humorless . 4240 Indeed , the more outrageous bits achieve a shock-you-into-laughter intensity of almost Dadaist proportions . 4241 Gondry 's direction is adequate ... but what gives Human Nature its unique feel is Kaufman 's script . 4242 The film 's plot may be shallow , but you 've never seen the deep like you see it in these harrowing surf shots . 4243 With 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 . 4244 The observations of this social\/economic\/urban environment are canny and spiced with irony . 4245 Renner carries much of the film with a creepy and dead-on performance . 4246 Jarecki 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 . 4247 The 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 . 4248 Aniston has at last decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil . 4249 A mildly enjoyable if toothless adaptation of a much better book . 4250 Unexpected , and often contradictory , truths emerge . 4251 300 years of Russian history and culture compressed into an evanescent , seamless and sumptuous stream of consciousness . 4252 Intelligent , caustic take on a great writer and dubious human being . 4253 May 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 . 4254 Less the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling -LRB- though no less horrifying for it -RRB- . 4255 The film is one of the year 's best . 4256 Eerily accurate depiction of depression . 4257 ... a delicious crime drama on par with the slickest of Mamet . 4258 Charming and witty , it 's also somewhat clumsy . 4259 Directed 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 . 4260 Escapes the precious trappings of most romantic comedies , infusing into the story very real , complicated emotions . 4261 This big screen caper has a good bark , far from being a bow-wow . 4262 -LRB- Allen -RRB- manages to breathe life into this somewhat tired premise . 4263 I have two words to say about Reign of Fire . 4264 Great dragons ! 4265 By surrounding us with hyper-artificiality , Haynes makes us see familiar issues , like racism and homophobia , in a fresh way . 4266 A deliberative account of a lifestyle characterized by its surface-obsession -- one that typifies the delirium of post , pre , and extant stardom . 4267 Superb production values & Christian Bale 's charisma make up for a derivative plot . 4268 The film has the courage of its convictions and excellent performances on its side . 4269 I know I should n't have laughed , but hey , those farts got to my inner nine-year-old . 4270 A movie that will thrill you , touch you and make you laugh as well . 4271 It '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 . 4272 More vaudeville show than well-constructed narrative , but on those terms it 's inoffensive and actually rather sweet . 4273 The case is a convincing one , and should give anyone with a conscience reason to pause . 4274 The actresses find their own rhythm and protect each other from the script 's bad ideas and awkwardness . 4275 Diverting French comedy in which a husband has to cope with the pesky moods of jealousy . 4276 Captivates and shows how a skillful filmmaker can impart a message without bludgeoning the audience over the head . 4277 There is a welcome lack of pretension about the film , which very simply sets out to entertain and ends up delivering in good measure . 4278 Coy but exhilarating , with really solid performances by Ving Rhames and Wesley Snipes . 4279 It is a likable story , told with competence . 4280 Not only does Spider-Man deliver , but I suspect it might deliver again and again . 4281 Tackles the difficult subject of grief and loss with such life-embracing spirit that the theme does n't drag an audience down . 4282 A small movie with a big impact . 4283 The movie , despite its rough edges and a tendency to sag in certain places , is wry and engrossing . 4284 I admire the closing scenes of the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint . 4285 Like 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 . 4286 a delightful romantic comedy with plenty of bite . 4287 It 's far from a frothy piece , and the characters are complex , laden with plenty of baggage and tinged with tragic undertones . 4288 Using an endearing cast , writer\/director Dover Kosashvili takes a slightly dark look at relationships , both sexual and kindred . 4289 When a movie has stuck around for this long , you know there 's something there . 4290 It 's that good . 4291 Smart , sassy interpretation of the Oscar Wilde play . 4292 Forget about one Oscar nomination for Julianne Moore this year - she should get all five . 4293 Japanese director Shohei Imamura 's latest film is an odd but ultimately satisfying blend of the sophomoric and the sublime . 4294 Kwan is a master of shadow , quietude , and room noise , and Lan Yu is a disarmingly lived-in movie . 4295 While the plot follows a predictable connect-the-dots course ... director John Schultz colors the picture in some evocative shades . 4296 Katz 's documentary does n't have much panache , but with material this rich it does n't need it . 4297 We get an image of Big Papa spanning history , rather than suspending it . 4298 Evelyn 's strong cast and surehanded direction make for a winning , heartwarming yarn . 4299 A conventional but heartwarming tale . 4300 This is one of the outstanding thrillers of recent years . 4301 Skins 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 . 4302 A film of quiet power . 4303 More 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 . 4304 An intelligent romantic thriller of a very old-school kind of quality . 4305 The sword fighting is well done and Auteuil is a goofy pleasure . 4306 Yes , MIBII is rote work and predictable , but with a philosophical visual coming right at the end that extravagantly redeems it . 4307 Film ca n't quite maintain its initial momentum , but remains sporadically funny throughout . 4308 O Fantasma is boldly , confidently orchestrated , aesthetically and sexually , and its impact is deeply and rightly disturbing . 4309 It 's still Adam Sandler , and it 's not Little Nicky . 4310 And for many of us , that 's good enough . 4311 Here 's yet another cool crime movie that actually manages to bring something new into the mix . 4312 Lee '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 . 4313 Kaufman 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 . 4314 It tends to remind one of a really solid Woody Allen film , with its excellent use of New York locales and sharp writing 4315 While 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 . 4316 The film , despite the gratuitous cinematic distractions impressed upon it , is still good fun . 4317 The 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 . 4318 Has an unmistakable , easy joie de vivre . 4319 More 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 . 4320 This 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 . 4321 Mostly works because of the universal themes , earnest performances ... and excellent use of music by India 's popular Gulzar and Jagjit Singh . 4322 ... 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 . 4323 That 's fun for kids of any age . 4324 Writer\/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 . 4325 Rarely have I seen a film so willing to champion the fallibility of the human heart . 4326 Holofcener rejects patent solutions to dramatize life 's messiness from inside out , in all its strange quirks . 4327 Like The Full Monty , this is sure to raise audience 's spirits and leave them singing long after the credits roll . 4328 ... a gleefully grungy , hilariously wicked black comedy ... 4329 Kinnear and Dafoe give what may be the performances of their careers . 4330 All in all , a great party . 4331 A moving story of determination and the human spirit . 4332 `` Brown Sugar '' admirably aspires to be more than another `` Best Man '' clone by weaving a theme throughout this funny film . 4333 -LRB- Gulpilil -RRB- is a commanding screen presence , and his character 's abundant humanism makes him the film 's moral compass . 4334 An effortlessly accomplished and richly resonant work . 4335 In some ways , Lagaan is quintessential Bollywood . 4336 Except it 's much , much better . 4337 Though 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 . 4338 Scotland looks wonderful , the fans are often funny fanatics , the showdown sure beats a bad day of golf . 4339 What 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 . 4340 The emotion is impressively true for being so hot-blooded , and both leads are up to the task . 4341 Although it lacks the detail of the book , the film does pack some serious suspense . 4342 I 'd watch these two together again in a New York minute . 4343 There 's nothing like love to give a movie a B-12 shot , and CQ shimmers with it . 4344 A moving essay about the specter of death , especially suicide . 4345 This 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 . 4346 Like a less dizzily gorgeous companion to Mr. Wong 's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting . 4347 ... a somber film , almost completely unrelieved by any comedy beyond the wistful everyday ironies of the working poor . 4348 Coral 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 . 4349 The overall result is an intelligent , realistic portrayal of testing boundaries . 4350 Poignant and moving , A Walk to Remember is an inspirational love story , capturing the innocence and idealism of that first encounter . 4351 Worth a salute just for trying to be more complex than your average film . 4352 Handsome and sophisticated approach to the workplace romantic comedy . 4353 A shimmeringly lovely coming-of-age portrait , shot in artful , watery tones of blue , green and brown . 4354 While 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 . 4355 In 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 . 4356 We admire this film for its harsh objectivity and refusal to seek our tears , our sympathies . 4357 An often watchable , though goofy and lurid , blast of a costume drama set in the late 15th century . 4358 The entire cast is first-rate , especially Sorvino . 4359 The Cat 's Meow marks a return to form for director Peter Bogdanovich ... 4360 This one is strictly a lightweight escapist film . 4361 This sensitive , smart , savvy , compelling coming-of-age drama delves into the passive-aggressive psychology of co-dependence and the struggle for self-esteem . 4362 The culmination of everyone 's efforts is given life when A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- . 4363 In 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 . 4364 A very charming and funny movie . 4365 This is a film that manages to find greatness in the hue of its drastic iconography . 4366 Streamlined to a tight , brisk 85-minute screwball thriller , `` Big Trouble '' is funny , harmless and as substantial as a tub of popcorn with extra butter . 4367 Consummate actor Barry has done excellent work here . 4368 The biggest problem with this movie is that it 's not nearly long enough . 4369 While not all that bad of a movie , it 's nowhere near as good as the original . 4370 Ali 's graduation from little screen to big is far less painful than his opening scene encounter with an over-amorous terrier . 4371 I have always appreciated a smartly written motion picture , and , whatever flaws Igby Goes Down may possess , it is undeniably that . 4372 You 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 . 4373 May be the most undeserving victim of critical overkill since Town and Country . 4374 A chilly , brooding but quietly resonant psychological study of domestic tension and unhappiness . 4375 The 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 . 4376 Cold , nervy and memorable . 4377 Becomes a fascinating study of isolation and frustration that successfully recreates both the physical setting and emotional tensions of the Papin sisters . 4378 Spend your Benjamins on a matinee . 4379 All 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 . 4380 Worth seeing just for Weaver and LaPaglia . 4381 A pleasant piece of escapist entertainment . 4382 Among the many pleasures are the lively intelligence of the artists and their perceptiveness about their own situations . 4383 It '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 . 4384 It 's the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking , but humming . 4385 The 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 . 4386 There 's something about a marching band that gets me where I live . 4387 Cuaron 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 . 4388 It 's definitely an improvement on the first Blade , since it does n't take itself so deadly seriously . 4389 A slam-bang extravaganza that is all about a wild-and-woolly , wall-to-wall good time . 4390 What 's infuriating about Full Frontal is that it 's too close to real life to make sense . 4391 What 's invigorating about it is that it does n't give a damn . 4392 Is Red Dragon worthy of a place alongside the other Hannibal movies ? 4393 As Hannibal would say , yes , ` It 's like having an old friend for dinner ' . 4394 Writer-director Juan Carlos Fresnadillo makes a feature debut that is fully formed and remarkably assured . 4395 insightfully written , delicately performed 4396 Perhaps the grossest movie ever made . 4397 Funny , though . 4398 This 90-minute postmodern voyage was more diverting and thought-provoking than I 'd expected it to be . 4399 One of those exceedingly rare films in which the talk alone is enough to keep us involved . 4400 A heartbreakingly thoughtful minor classic , the work of a genuine and singular artist . 4401 An affectionately goofy satire that 's unafraid to throw elbows when necessary ... 4402 Between them , De Niro and Murphy make Showtime the most savory and hilarious guilty pleasure of many a recent movie season . 4403 Jackson 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 . 4404 Filmmakers 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 . 4405 Interesting both as a historical study and as a tragic love story . 4406 A stylish but steady , and ultimately very satisfying , piece of character-driven storytelling . 4407 It picked me up , swung me around , and dropped me back in my seat with more emotional force than any other recent film . 4408 Graham Greene 's novel of colonialism and empire is elevated by Michael Caine 's performance as a weary journalist in a changing world . 4409 Though 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 . 4410 Compulsively watchable , no matter how degraded things get . 4411 Delivers roughly equal amounts of beautiful movement and inside information . 4412 Bon appétit ! 4413 Just like a splendid meal , Red Dragon satisfies -- from its ripe recipe , inspiring ingredients , certified cuisine and palatable presentation . 4414 The structure is simple , but in its own way , Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings . 4415 This charming , thought-provoking New York fest of life and love has its rewards . 4416 Some 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 . 4417 Playfully profound ... and crazier than Michael Jackson on the top floor of a skyscraper nursery surrounded by open windows . 4418 A film that will enthrall the whole family . 4419 The 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 . 4420 K 19 stays afloat as decent drama\/action flick 4421 It sends you away a believer again and quite cheered at just that . 4422 Like the best 60 Minutes exposé , the film -LRB- at 80 minutes -RRB- is actually quite entertaining . 4423 an 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 4424 An 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 . 4425 Nair does n't use -LRB- Monsoon Wedding -RRB- to lament the loss of culture . 4426 Instead , she sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions . 4427 Both 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 . 4428 Leading a double life in an American film only comes to no good , but not here . 4429 Matters play out realistically if not always fairly . 4430 In 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 . 4431 Like Mike is a harmlessly naïve slice of b-ball fantasy , fit for filling in during the real NBA 's off-season . 4432 Though 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 . 4433 What the movie lacks in action it more than makes up for in drama , suspense , revenge , and romance . 4434 Just offbeat enough to keep you interested without coming close to bowling you over . 4435 Probes in a light-hearted way the romantic problems of individuals for whom the yearning for passion spells discontent . 4436 What elevates the movie above the run-of-the-mill singles blender is its surreal sense of humor and technological finish . 4437 A film about female friendship that men can embrace and women will talk about for hours . 4438 The directing and story are disjointed , flaws that have to be laid squarely on Taylor 's doorstep . 4439 But the actors make this worth a peek . 4440 Light 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 . 4441 It may be about drug dealers , kidnapping , and unsavory folks , but the tone and pacing are shockingly intimate . 4442 Massoud '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 . 4443 If villainous vampires are your cup of blood , Blade 2 is definitely a cut above the rest . 4444 Drumline ably captures the complicated relationships in a marching band . 4445 Because the film deliberately lacks irony , it has a genuine dramatic impact ; it plays like a powerful 1957 drama we 've somehow never seen before . 4446 Does point the way for adventurous Indian filmmakers toward a crossover into nonethnic markets . 4447 Seems based on ugly ideas instead of ugly behavior , as Happiness was ... Hence , Storytelling is far more appealing . 4448 `` Sum '' is Jack Ryan 's `` do-over . '' 4449 Give credit to everyone from Robinson down to the key grip that this bold move works . 4450 Especially give credit to Affleck . 4451 An 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 . 4452 A terrific date movie , whatever your orientation . 4453 Not 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 . 4454 What it lacks in originality it makes up for in effective if cheap moments of fright and dread . 4455 The 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 . 4456 A gem of a movie . 4457 Witty , vibrant , and intelligent . 4458 It 's all stitched together with energy , intelligence and verve , enhanced by a surplus of vintage archive footage . 4459 Miller comes at film with bracing intelligence and a vision both painterly and literary . 4460 The film is moody , oozing , chilling and heart-warming all at once ... a twisting , unpredictable , cat-and-mouse thriller . 4461 Eight 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 . 4462 This is historical filmmaking without the balm of right-thinking ideology , either liberal or conservative . 4463 Mr. Scorsese 's bravery and integrity in advancing this vision can hardly be underestimated . 4464 A thriller whose style , structure and rhythms are so integrated with the story , you can not separate them . 4465 It 's a hoot watching The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire ! 4466 Returning director Rob Minkoff ... and screenwriter Bruce Joel Rubin ... have done a fine job of updating White 's dry wit to a new age . 4467 Unfolds with such a wallop of you-are-there immediacy that when the bullets start to fly , your first instinct is to duck . 4468 A 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 . 4469 An unflinching look at the world 's dispossessed . 4470 If the film fails to fulfill its own ambitious goals , it nonetheless sustains interest during the long build-up of expository material . 4471 Polanski has found the perfect material with which to address his own World War II experience in his signature style . 4472 It is life affirming and heartbreaking , sweet without the decay factor , funny and sad . 4473 An off-beat and fanciful film about the human need for monsters to blame for all that is amiss in the world . 4474 A colorful , joyous celebration of life ; a tapestry woven of romance , dancing , singing , and unforgettable characters . 4475 Frei 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 . 4476 Nicely combines the enigmatic features of ` Memento ' with the hallucinatory drug culture of ` Requiem for a Dream . ' 4477 A well paced and satisfying little drama that deserved better than a ` direct-to-video ' release . 4478 The best part about `` Gangs '' was Daniel Day-Lewis . 4479 A treat for its depiction on not giving up on dreams when you 're a struggling nobody . 4480 One 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 . 4481 A gripping documentary that reveals how deep the antagonism lies in war-torn Jerusalem . 4482 Director 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 . 4483 One of the film 's most effective aspects is its Tchaikovsky soundtrack of neurasthenic regret . 4484 Solondz creates some effective moments of discomfort for character and viewer alike . 4485 The 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 . 4486 I 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 . 4487 Somehow Ms. Griffiths and Mr. Pryce bring off this wild Welsh whimsy . 4488 More 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 . 4489 For 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 . 4490 A fanciful drama about Napoleon 's last years and his surprising discovery of love and humility . 4491 A 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 . 4492 Eric 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 . 4493 Lovely and Amazing is Holofcener 's deep , uncompromising curtsy to women she knows , and very likely is . 4494 When all is said and done , she loves them to pieces -- and so , I trust , will you . 4495 Campbell Scott finds the ideal outlet for his flick-knife diction in the role of Roger Swanson . 4496 -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 . 4497 Russian Ark is a new treasure of the Hermitage . 4498 The animated sequences are well done and perfectly constructed to convey a sense of childhood imagination and creating adventure out of angst . 4499 It 's definitely a step in the right direction . 4500 As the princess , Sorvino glides gracefully from male persona to female without missing a beat . 4501 Ben Kingsley is truly funny , playing a kind of Ghandi gone bad . 4502 Ourside the theatre Roger might be intolerable company , but inside it he 's well worth spending some time with . 4503 A gem , captured in the unhurried , low-key style favored by many directors of the Iranian new wave . 4504 In 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 . 4505 Ranges from laugh-out-loud hilarious to wonder-what - time-it-is tedious . 4506 The 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 . 4507 Talk To Her is not the perfect movie many have made it out to be , but it 's still quite worth seeing . 4508 Beating 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 . 4509 This is a dark , gritty , sometimes funny little gem . 4510 For all its visual panache and compelling supporting characters , the heart of the film rests in the relationship between Sullivan and his son . 4511 What 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 . 4512 A hidden-agenda drama that shouts classic French nuance . 4513 With 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 . 4514 An invaluable historical document thanks to the filmmaker 's extraordinary access to Massoud , whose charm , cultivation and devotion to his people are readily apparent . 4515 The performances of the four main actresses bring their characters to life . 4516 A little melodramatic , but with enough hope to keep you engaged . 4517 Lan Yu seems altogether too slight to be called any kind of masterpiece . 4518 It is , however , a completely honest , open-hearted film that should appeal to anyone willing to succumb to it . 4519 Everyone should be able to appreciate the wonderful cinematography and naturalistic acting . 4520 This often-hilarious farce manages to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal . 4521 Expands 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 . 4522 The farcical elements seemed too pat and familiar to hold my interest , yet its diverting grim message is a good one . 4523 Shanghai Ghetto may not be as dramatic as Roman Polanski 's The Pianist , but its compassionate spirit soars every bit as high . 4524 Despite these annoyances , the capable Clayburgh and Tambor really do a great job of anchoring the characters in the emotional realities of middle age . 4525 The underworld urban angst is derivative of Martin Scorsese 's Taxi Driver and Goodfellas , but this film speaks for itself . 4526 The film 's heady yet far from impenetrable theory suggests that Russians take comfort in their closed-off nationalist reality . 4527 Despite modest aspirations its occasional charms are not to be dismissed . 4528 Constantly touching , surprisingly funny , semi-surrealist exploration of the creative act . 4529 The journey is worth your time , especially if you have Ellen Pompeo sitting next to you for the ride . 4530 Merci pour le movie . 4531 For 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 . 4532 What 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 . 4533 All three women deliver remarkable performances . 4534 Claire is a terrific role for someone like Judd , who really ought to be playing villains . 4535 It '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 . 4536 Compassionately explores the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children . 4537 The soundtrack alone is worth the price of admission . 4538 Rodriguez does a splendid job of racial profiling Hollywood style -- casting excellent Latin actors of all ages -- a trend long overdue . 4539 Beneath the film 's obvious determination to shock at any cost lies considerable skill and determination , backed by sheer nerve . 4540 Bielinsky is a filmmaker of impressive talent . 4541 So beautifully acted and directed , it 's clear that Washington most certainly has a new career ahead of him if he so chooses . 4542 A visual spectacle full of stunning images and effects . 4543 A gentle and engrossing character study . 4544 It '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 . 4545 An 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 . 4546 A mischievous visual style and oodles of charm make ` Cherish ' a very good -LRB- but not great -RRB- movie . 4547 Just 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 . 4548 -LRB- A -RRB- strong piece of work . 4549 A 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 . 4550 The Importance of Being Earnest , so thick with wit it plays like a reading from Bartlett 's Familiar Quotations 4551 Daring and beautifully made . 4552 Made 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 . 4553 Imagine O. Henry 's The Gift of the Magi relocated to the scuzzy underbelly of NYC 's drug scene . 4554 Merry friggin ' Christmas ! 4555 The film does give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard . 4556 Both lead performances are Oscar-size . 4557 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 . 4558 Ferrara 's best film in years . 4559 A remarkably insightful look at the backstage angst of the stand-up comic . 4560 Nothing short of wonderful with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil . 4561 Davis ' candid , archly funny and deeply authentic take on intimate relationships comes to fruition in her sophomore effort . 4562 It 's more enjoyable than I expected , though , and that 's because the laughs come from fairly basic comedic constructs . 4563 Cinematic pratfalls given a working over . 4564 The cast is spot on and the mood is laid back . 4565 Matches neorealism 's impact by showing the humanity of a war-torn land filled with people who just want to live their lives . 4566 Those moviegoers who would automatically bypass a hip-hop documentary should give `` Scratch '' a second look . 4567 Baby-faced Renner is eerily convincing as this bland blank of a man with unimaginable demons within . 4568 Romantic , riveting and handsomely animated . 4569 A competent , unpretentious entertainment destined to fill the after-school slot at shopping mall theaters across the country . 4570 Shot largely in small rooms , the film has a gentle , unforced intimacy that never becomes claustrophobic . 4571 Where Janice Beard falters in its recycled aspects , implausibility , and sags in pace , it rises in its courageousness , and comedic employment . 4572 Byler is too savvy a filmmaker to let this morph into a typical romantic triangle . 4573 Instead , he focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground . 4574 McGrath has deftly trimmed Dickens ' wonderfully sprawling soap opera , the better to focus on the hero 's odyssey from cowering poverty to courage and happiness . 4575 A 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 . 4576 Metaphors abound , but it is easy to take this film at face value and enjoy its slightly humorous and tender story . 4577 As directed by Dani Kouyate of Burkina Faso , Sia lacks visual flair . 4578 But Kouyate elicits strong performances from his cast , and he delivers a powerful commentary on how governments lie , no matter who runs them . 4579 The best comedy concert movie I 've seen since Cho 's previous concert comedy film , I 'm the One That I Want , in 2000 . 4580 Broomfield 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 . 4581 Offers laughs and insight into one of the toughest ages a kid can go through . 4582 A perceptive , good-natured movie . 4583 An amused indictment of Jaglom 's own profession . 4584 A small movie with a big heart . 4585 Hugely accomplished slice of Hitchcockian suspense . 4586 The formula is familiar but enjoyable . 4587 Tells a fascinating , compelling story . 4588 A triumph , a film that hews out a world and carries us effortlessly from darkness to light . 4589 What begins as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters . 4590 The Lady and the Duke is a smart , romantic drama that dares to depict the French Revolution from the aristocrats ' perspective . 4591 Most 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 . 4592 Noyce 's greatest mistake is thinking that we needed sweeping , dramatic , Hollywood moments to keep us 4593 World Traveler might not go anywhere new , or arrive anyplace special , but it 's certainly an honest attempt to get at something . 4594 There 's much tongue in cheek in the film and there 's no doubt the filmmaker is having fun with it all . 4595 There 's absolutely no reason why Blue Crush , a late-summer surfer girl entry , should be as entertaining as it is 4596 An action\/thriller of the finest kind , evoking memories of Day of the Jackal , The French Connection , and Heat . 4597 The 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 . 4598 In 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 . 4599 Insomnia does not become one of those rare remakes to eclipse the original , but it does n't disgrace it , either . 4600 classic cinema served up with heart and humor 4601 -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 . 4602 The events of the film are just so WEIRD that I honestly never knew what the hell was coming next . 4603 Nicole 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 . 4604 That Jack Nicholson makes this man so watchable is a tribute not only to his craft , but to his legend . 4605 Has a solid emotional impact . 4606 Successfully blended satire , high camp and yet another sexual taboo into a really funny movie . 4607 Mark Pellington 's latest pop thriller is as kooky and overeager as it is spooky and subtly in love with myth . 4608 While maintaining the appearance of clinical objectivity , this sad , occasionally horrifying but often inspiring film is among Wiseman 's warmest . 4609 Raimi crafted a complicated hero who is a welcome relief from the usual two-dimensional offerings . 4610 An enjoyable above average summer diversion . 4611 There is simply no doubt that this film asks the right questions at the right time in the history of our country . 4612 If you 've the patience , there are great rewards here . 4613 As a science fiction movie , `` Minority Report '' astounds . 4614 Watching 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 . 4615 Visually breathtaking , viscerally exciting , and dramatically moving , it 's the very definition of epic adventure . 4616 Chris Columbus ' sequel is faster , livelier and a good deal funnier than his original . 4617 Watching this film , what we feel is n't mainly suspense or excitement . 4618 The dominant feeling is something like nostalgia . ' 4619 ... a great , participatory spectator sport . ' 4620 A rather brilliant little cult item : a pastiche of children 's entertainment , superhero comics , and Japanese animation . 4621 Believes so fervently in humanity that it feels almost anachronistic , and it is too cute by half . 4622 But arriving at a particularly dark moment in history , it offers flickering reminders of the ties that bind us . 4623 Adam SANDLER ! 4624 In an ART FILM ! 4625 As averse as I usually am to feel-good , follow-your-dream Hollywood fantasies , this one got to me . 4626 Stone seems to have a knack for wrapping the theater in a cold blanket of urban desperation . 4627 ... a funny yet dark and seedy clash of cultures and generations . 4628 The hook is the drama within the drama , as an unsolved murder and an unresolved moral conflict jockey for the spotlight . 4629 Over 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 . 4630 Like 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 4631 One of those movies that make us pause and think of what we have given up to acquire the fast-paced contemporary society . 4632 One of the most original American productions this year , you 'll find yourself remembering this refreshing visit to a Sunshine State . 4633 Melds derivative elements into something that is often quite rich and exciting , and always a beauty to behold . 4634 Gives everyone something to shout about . 4635 The entire movie has a truncated feeling , but what 's available is lovely and lovable . 4636 -LRB- A -RRB- thoughtful , visually graceful work . 4637 Admirers of director Abel Ferrara may be relieved that his latest feature , R Xmas , marks a modest if encouraging return to form . 4638 The slam-bang superheroics are kinetic enough to engross even the most antsy youngsters . 4639 A worthy addition to the cinematic canon , which , at last count , numbered 52 different versions . 4640 Deliciously mean-spirited and wryly observant . 4641 The kind of primal storytelling that George Lucas can only dream of . 4642 Even if The Ring has a familiar ring , it 's still unusually crafty and intelligent for Hollywood horror . 4643 The sheer joy and pride they took in their work -- and in each other -- shines through every frame . 4644 A solidly constructed , entertaining thriller that stops short of true inspiration . 4645 The cast ... keeps this pretty watchable , and casting Mick Jagger as director of the escort service was inspired . 4646 An entertaining , if somewhat standardized , action movie . 4647 It 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 . 4648 An 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 . 4649 Intriguing and downright intoxicating . 4650 An incredibly thoughtful , deeply meditative picture that neatly and effectively captures the debilitating grief felt in the immediate aftermath of the terrorist attacks . 4651 With an obvious rapport with her actors and a striking style behind the camera , Hélène Angel is definitely a director to watch . 4652 ... could easily be called the best Korean film of 2002 . 4653 Full of detail about the man and his country , and is well worth seeing . 4654 The banter between Calvin and his fellow barbers feels like a streetwise McLaughlin Group ... and never fails to entertain . 4655 Thoroughly engrossing and ultimately tragic . 4656 Peter 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 . 4657 Bill Morrison 's Decasia is uncompromising , difficult and unbearably beautiful . 4658 Full 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 . 4659 Even with all its botches , Enigma offers all the pleasure of a handsome and well-made entertainment . 4660 His work transcends the boy-meets-girl posturing of typical love stories . 4661 If the real-life story is genuinely inspirational , the movie stirs us as well . 4662 An ebullient Tunisian film about the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing . 4663 The 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 . 4664 Highly irritating at first , Mr. Koury 's passive technique eventually begins to yield some interesting results . 4665 About Schmidt belongs to Nicholson . 4666 Gone are the flamboyant mannerisms that are the trademark of several of his performances . 4667 As Schmidt , Nicholson walks with a slow , deliberate gait , chooses his words carefully and subdues his natural exuberance . 4668 The 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 . 4669 It does n't make for great cinema , but it is interesting to see where one 's imagination will lead when given the opportunity . 4670 It 's sobering , particularly if anyone still thinks this conflict can be resolved easily , or soon . 4671 If it 's not entirely memorable , the movie is certainly easy to watch . 4672 ... 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 . 4673 Best indie of the year , so far . 4674 -LRB- Ferrera -RRB- has the charisma of a young woman who knows how to hold the screen . 4675 ... the plot weaves us into a complex web . 4676 Do 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 . 4677 In 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 . 4678 A serviceable Euro-trash action extravaganza , with a decent sense of humor and plenty of things that go boom -- handguns , BMWs and seaside chateaus . 4679 Fortunately , Elling never gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry . 4680 If you 've grown tired of going where no man has gone before , but several movies have - take heart . 4681 This is the best Star Trek movie in a long time . 4682 Greg Kinnear gives a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior . 4683 Not only a coming-of-age story and cautionary parable , but also a perfectly rendered period piece . 4684 ou 've got to love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane . 4685 A funny , triumphant , and moving documentary . 4686 Lathan 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 . 4687 About Schmidt is Nicholson 's goofy , heartfelt , mesmerizing King Lear . 4688 A confluence of kiddie entertainment , sophisticated wit and symbolic graphic design . 4689 Gay or straight , Kissing Jessica Stein is one of the greatest date movies in years . 4690 This is a movie full of grace and , ultimately , hope . 4691 Even better than the first one ! 4692 Its compelling mix of trial movie , escape movie and unexpected fable ensures the film never feels draggy . 4693 A must see for all sides of the political spectrum 4694 -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 . 4695 There 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 . 4696 Rich in atmosphere of the post-war art world , it manages to instruct without reeking of research library dust . 4697 Has the rare capability to soothe and break your heart with a single stroke . 4698 It rapidly develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide . 4699 Though 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 . 4700 This 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 . ' 4701 It will break your heart many times over . 4702 A straight-shooting family film which awards animals the respect they 've rarely been given . 4703 Overall , interesting as a documentary -- but not very Imaxy . 4704 This 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 . 4705 `` Secretary '' is owned by its costars , Spader and Gyllenhaal . 4706 Maggie G. makes an amazing breakthrough in her first starring role and eats up the screen . 4707 The film fits into a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , vibrant with originality . 4708 Not 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 . 4709 The 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 . 4710 Too 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 . 4711 The story is virtually impossible to follow here , but there 's a certain style and wit to the dialogue . 4712 The music makes a nice album , the food is enticing and Italy beckons us all . 4713 The 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 . 4714 The film is small in scope , yet perfectly formed . 4715 Jones has delivered a solidly entertaining and moving family drama . 4716 Happy Times maintains an appealing veneer without becoming too cute about it . 4717 Oliveira seems to pursue silent film representation with every mournful composition . 4718 One 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 . 4719 Captures all the longing , anguish and ache , the confusing sexual messages and the wish to be a part of that elusive adult world . 4720 He 's the scariest guy you 'll see all summer . 4721 `` 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 . 4722 And , there 's no way you wo n't be talking about the film once you exit the theater . 4723 If 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 . 4724 Quiet , 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 . 4725 In 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 . 4726 Some 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 . 4727 It is hard not to be especially grateful for freedom after a film like this . 4728 The dirty jokes provide the funniest moments in this oddly sweet comedy about jokester highway patrolmen . 4729 Y Tu Mamá También is hilariously , gloriously alive , and quite often hotter than Georgia asphalt . 4730 ... works on some levels and is certainly worth seeing at least once . 4731 You come away from his film overwhelmed , hopeful and , perhaps paradoxically , illuminated . 4732 If the material is slight and admittedly manipulative , Jacquot preserves Tosca 's intoxicating ardor through his use of the camera . 4733 Thirteen 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 . 4734 Overall , it 's a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs . 4735 A must for fans of British cinema , if only because so many titans of the industry are along for the ride . 4736 Tsai has managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu . 4737 Until -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 . 4738 It 's a good film , but it falls short of its aspiration to be a true ` epic ' . 4739 All the pieces fall together without much surprise , but little moments give it a boost . 4740 The beauty of Alexander Payne 's ode to the Everyman is in the details . 4741 A touching drama about old age and grief with a tour de force performance by Michel Piccoli . 4742 The ending feels at odds with the rest of the film . 4743 A tone of rueful compassion ... reverberates throughout this film , whose meaning and impact is sadly heightened by current world events . 4744 A beautiful paean to a time long past . 4745 Dense and thoughtful and brimming with ideas that are too complex to be rapidly absorbed . 4746 If you thought Tom Hanks was just an ordinary big-screen star , wait until you 've seen him eight stories tall . 4747 With this masterful , flawless film , -LRB- Wang -RRB- emerges in the front ranks of China 's now numerous , world-renowned filmmakers . 4748 Shyamalan 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 . 4749 This film is an act of spiritual faith -- an eloquent , deeply felt meditation on the nature of compassion . 4750 A different kind of love story - one that is dark , disturbing , painful to watch , yet compelling . 4751 Splendidly illustrates the ability of the human spirit to overcome adversity . 4752 A 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 . 4753 She 's as rude and profane as ever , always hilarious and , most of the time , absolutely right in her stinging social observations . 4754 To 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 . 4755 Even 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 . 4756 A thoughtful , reverent portrait of what is essentially a subculture , with its own rules regarding love and family , governance and hierarchy . 4757 It seems impossible that an epic four-hour Indian musical about a cricket game could be this good , but it is . 4758 Will certainly appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about . 4759 Touches 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 . 4760 A wildly entertaining scan of Evans ' career . 4761 A mature , deeply felt fantasy of a director 's travel through 300 years of Russian history . 4762 Boldly 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 . 4763 A finely tuned mood piece , a model of menacing atmosphere . 4764 The Salton Sea has moments of inspired humour , though every scrap is of the darkest variety . 4765 Both 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 . 4766 Although shot with little style , Skins is heartfelt and achingly real . 4767 Harks back to a time when movies had more to do with imagination than market research . 4768 Upsetting 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 . 4769 A very pretty after-school special . 4770 It 's an effort to watch this movie , but it eventually pays off and is effective if you stick with it . 4771 A harrowing account of a psychological breakdown . 4772 Continually challenges perceptions of guilt and innocence , of good guys and bad , and asks us whether a noble end can justify evil means . 4773 It certainly wo n't win any awards in the plot department but it sets out with no pretensions and delivers big time . 4774 Dog Soldiers does n't transcend genre -- it embraces it , energizes it and takes big bloody chomps out of it . 4775 At once emotional and richly analytical , the Cosby-Seinfeld encounter alone confirms the serious weight behind this superficially loose , larky documentary . 4776 It may scream low budget , but this charmer has a spirit that can not be denied . 4777 ` Alice 's adventure through the looking glass and into zombie-land ' is filled with strange and wonderful creatures . 4778 Without -LRB- De Niro -RRB- , City By The Sea would slip under the waves . 4779 He drags it back , single-handed . 4780 A good music documentary , probably one of the best since The Last Waltz . 4781 If 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 . 4782 ... -LRB- the film -RRB- works , due mostly to the tongue-in-cheek attitude of the screenplay . 4783 The 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 . 4784 Broomfield has a rather unique approach to documentary . 4785 He thinks the film is just as much a document about him as it is about the subject . 4786 At its best when the guarded , resentful Betty and the manipulative yet needy Margot are front and center . 4787 Gloriously straight from the vagina . 4788 It '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 . 4789 The film oozes craft . 4790 Robinson 's web of suspense matches the page-turning frenzy that Clancy creates . 4791 Manages to be both hugely entertaining and uplifting . 4792 A classic fairy tale that perfectly captures the wonders and worries of childhood in a way that few movies have ever approached . 4793 It 's the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison . 4794 a wonderfully warm human drama that remains vividly in memory long after viewing 4795 Jaunty fun , with its celeb-strewn backdrop well used . 4796 Recoing '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 . 4797 Washington overcomes the script 's flaws and envelops the audience in his character 's anguish , anger and frustration . 4798 The 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 . 4799 A searing , epic treatment of a nationwide blight that seems to be , horrifyingly , ever on the rise . 4800 Not 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 . 4801 Read 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 . 4802 The 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 . 4803 while -LRB- Roman Coppola -RRB- scores points for style , he staggers in terms of story . 4804 Any movie that makes hard work seem heroic deserves a look . 4805 It may not be a huge cut of above the rest , but I enjoyed Barbershop . 4806 It 's a funny little movie with clever dialogue and likeable characters . 4807 A 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 . 4808 It 's sweet , funny , charming , and completely delightful . 4809 A perfectly competent and often imaginative film that lacks what little Lilo & Stitch had in spades -- charisma . 4810 Beautifully 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 . 4811 Medem may have disrobed most of the cast , leaving their bodies exposed , but the plot remains as guarded as a virgin with a chastity belt . 4812 That 's why Sex and Lucia is so alluring . 4813 An elegant work , Food of Love is as consistently engaging as it is revealing . 4814 Although 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 . 4815 A 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 . 4816 A brain twister , less a movie-movie than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy . 4817 A powerful , inflammatory film about religion that dares to question an ancient faith , and about hatred that offers no easy , comfortable resolution . 4818 In its own floundering way , it gets to you . 4819 Just like Igby . 4820 Return to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families , but it 's not half-bad . 4821 Wise and deadpan humorous . 4822 God bless Crudup and his aversion to taking the easy Hollywood road and cashing in on his movie-star gorgeousness . 4823 If Signs is a good film , and it is , the essence of a great one is in there somewhere . 4824 Veterans of the dating wars will smirk uneasily at the film 's nightmare versions of everyday sex-in-the-city misadventures . 4825 Schrader examines Crane 's decline with unblinking candor . 4826 You can watch , giggle and get an adrenaline boost without feeling like you 've completely lowered your entertainment standards . 4827 It thankfully goes easy on the reel\/real world dichotomy that -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\/Venice . 4828 This rich , bittersweet Israeli documentary , about the life of song-and-dance-man Pasach ` ke Burstein and his family , transcends ethnic lines . 4829 Sensitively 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 . 4830 Cool gadgets and creatures keep this fresh . 4831 Not as good as the original , but what is ... 4832 Presents 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 . 4833 -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 . 4834 Engages 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 . 4835 a bilingual charmer , just like the woman who inspired it 4836 Blisteringly rude , scarily funny , sorrowfully sympathetic to the damage it surveys , the film has in Kieran Culkin a pitch-perfect Holden . 4837 The 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 . 4838 What 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 . 4839 -LRB- It -RRB- has the feel of a summer popcorn movie . 4840 Nothing too deep or substantial . 4841 Explosions , jokes , and sexual innuendoes abound . 4842 Miyazaki '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 . 4843 ... a delightfully unpredictable , hilarious comedy with wonderful performances that tug at your heart in ways that utterly transcend gender labels . 4844 Assured , vital and well wrought , the film is , arguably , the most accomplished work to date from Hong Kong 's versatile Stanley Kwan . 4845 Delia , Greta , and Paula rank as three of the most multilayered and sympathetic female characters of the year . 4846 As each of them searches for their place in the world , Miller digs into their very minds to find an unblinking , flawed humanity . 4847 A surprisingly sweet and gentle comedy . 4848 Shanghai Ghetto , much stranger than any fiction , brings this unknown slice of history affectingly to life . 4849 It 's not particularly well made , but since I found myself howling more than cringing , I 'd say the film works . 4850 But this is Lohman 's film . 4851 Her performance moves between heartbreak and rebellion as she continually tries to accommodate to fit in and gain the unconditional love she seeks . 4852 Though its story is only surface deep , the visuals and enveloping sounds of Blue Crush make this surprisingly decent flick worth a summertime look-see . 4853 Ryosuke has created a wry , winning , if languidly paced , meditation on the meaning and value of family . 4854 Sometimes charming , sometimes infuriating , this Argentinean ` dramedy ' succeeds mainly on the shoulders of its actors . 4855 You may feel compelled to watch the film twice or pick up a book on the subject . 4856 Often shocking but ultimately worthwhile exploration of motherhood and desperate mothers . 4857 A venturesome , beautifully realized psychological mood piece that reveals its first-time feature director 's understanding of the expressive power of the camera . 4858 Like 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 . 4859 Taken outside the context of the current political climate -LRB- see : terrorists are more evil than ever ! -RRB- 4860 , The Sum of All Fears is simply a well-made and satisfying thriller . 4861 The setting is so cool that it chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game . 4862 A lovely and beautifully photographed romance . 4863 One of the most splendid entertainments to emerge from the French film industry in years . 4864 Its 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 . 4865 For almost the first two-thirds of Martin Scorsese 's 168-minute Gangs of New York , I was entranced . 4866 Open-ended and composed of layer upon layer , Talk to Her is a cinephile 's feast , an invitation to countless interpretations . 4867 One of the most slyly exquisite anti-adult movies ever made . 4868 What makes Esther Kahn so demanding is that it progresses in such a low-key manner that it risks monotony . 4869 But it 's worth the concentration . 4870 Neither the funniest film that Eddie Murphy nor Robert De Niro has ever made , Showtime is nevertheless efficiently amusing for a good while . 4871 Before it collapses into exactly the kind of buddy cop comedy it set out to lampoon , anyway . 4872 A clever script and skilled actors bring new energy to the familiar topic of office politics . 4873 The 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 . 4874 Disney 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 . 4875 It '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 . 4876 Dark and unrepentant , this excursion into the epicenter of percolating mental instability is not easily dismissed or forgotten . 4877 It 's a rollicking adventure for you and all your mateys , regardless of their ages . 4878 Boasts a handful of virtuosic set pieces and offers a fair amount of trashy , kinky fun . 4879 ... Myers has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs ... 4880 If you 're down for a silly hack-and-slash flick , you can do no wrong with Jason X. 4881 This is a very ambitious project for a fairly inexperienced filmmaker , but good actors , good poetry and good music help sustain it . 4882 The modern master of the chase sequence returns with a chase to end all chases 4883 The messy emotions raging throughout this three-hour effort are instantly recognizable , allowing the film to paradoxically feel familiar and foreign at the same time . 4884 ... either you 're willing to go with this claustrophobic concept or you 're not . 4885 Just watch Bettany strut his stuff . 4886 You 'll know a star when you see one . 4887 Austin Powers in Goldmember is a cinematic car wreck , a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride . 4888 You can fire a torpedo through some of Clancy 's holes , and the scripters do n't deserve any Oscars . 4889 But the nerve-raked acting , the crackle of lines , the impressive stagings of hardware , make for some robust and scary entertainment . 4890 contrasting the original Ringu with the current Americanized adaptation is akin to comparing The Evil Dead with Evil Dead II 4891 A small gem of a movie that defies classification and is as thought-provoking as it is funny , scary and sad . 4892 For a long time the film succeeds with its dark , delicate treatment of these characters and its unerring respect for them . 4893 It '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 . 4894 Late Marriage is an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love . 4895 An ambitious and moving but bleak film . 4896 It '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 . 4897 It 's sweet . 4898 It 's funny . 4899 It wears its heart on the sleeve of its gaudy Hawaiian shirt . 4900 And , thanks to the presence of ` the King , ' it also rocks . 4901 It 's never laugh-out-loud funny , but it is frequently amusing . 4902 A bittersweet film , simple in form but rich with human events . 4903 The 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 . 4904 `` Punch-Drunk Love '' is a little like a chocolate milk moustache ... 4905 ... digs beyond the usual portrayals of good kids and bad seeds to reveal a more ambivalent set of characters and motivations . 4906 The beauty of the piece is that it counts heart as important as humor . 4907 Piercingly affecting ... while clearly a manipulative film , emerges as powerful rather than cloying . 4908 Very amusing , not the usual route in a thriller , and the performances are odd and pixilated and sometimes both . 4909 While 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 . 4910 The cast is phenomenal , especially the women . 4911 A marvel of production design . 4912 The 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 . 4913 Good actors have a radar for juicy roles -- there 's a plethora of characters in this picture , and not one of them is flat . 4914 Though in some ways similar to Catherine Breillat 's Fat Girl , Rain is the far superior film . 4915 Is not so much a work of entertainment as it is a unique , well-crafted psychological study of grief . 4916 Remarkable for its excellent storytelling , its economical , compressed characterisations and for its profound humanity , it 's an adventure story and history lesson all in one . 4917 Colorful , energetic and sweetly whimsical ... the rare sequel that 's better than its predecessor . 4918 Reno himself can take credit for most of the movie 's success . 4919 He 's one of the few ` cool ' actors who never seems aware of his own coolness . 4920 Significantly better than its 2002 children 's - movie competition . 4921 UB 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 . 4922 A lot smarter than your average Bond . 4923 ... bright , intelligent , and humanly funny film . 4924 Painful , horrifying and oppressively tragic , this film should not be missed . 4925 Part of the film 's cheeky charm comes from its vintage schmaltz . 4926 So unique and stubborn and charismatic that you want it to be better and more successful than it is . 4927 I wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish ... but I laughed so much that I did n't mind . 4928 It arrives with an impeccable pedigree , mongrel pep , and almost indecipherable plot complications . 4929 So fiendishly cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated . 4930 Not to mention absolutely refreshed . 4931 A vibrant , colorful , semimusical rendition . 4932 The film sometimes flags ... but there is enough secondary action to keep things moving along at a brisk , amusing pace . 4933 It 's a drawling , slobbering , lovable run-on sentence of a film , a Southern Gothic with the emotional arc of its raw blues soundtrack . 4934 Nolan 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 . 4935 It 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 . 4936 Both a successful adaptation and an enjoyable film in its own right . 4937 All the filmmakers are asking of us , is to believe in something that is improbable . 4938 If the very concept makes you nervous ... you 'll have an idea of the film 's creepy , scary effectiveness . 4939 Worth a look by those on both sides of the issues , if only for the perspective it offers , one the public rarely sees . 4940 A mostly believable , refreshingly low-key and quietly inspirational little sports drama . 4941 May be more genial than ingenious , but it gets the job done . 4942 A stylish cast and some clever scripting solutions help Chicago make the transition from stage to screen with considerable appeal intact . 4943 Exhilarating , funny and fun . 4944 While not quite `` Shrek '' or `` Monsters , Inc. '' , it 's not too bad . 4945 It 's worth taking the kids to . 4946 In the end there is one word that best describes this film : honest . 4947 Writer-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 . 4948 The action sequences are fun and reminiscent of combat scenes from the Star Wars series . 4949 Norton is magnetic as Graham . 4950 Savvy director Robert J. Siegel and his co-writers keep the story subtle and us in suspense . 4951 It 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 . 4952 Twenty years after its first release , E.T. remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career . 4953 It 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 . 4954 Gives us a lot to chew on , but not all of it has been properly digested . 4955 It 's an exhilarating place to visit , this laboratory of laughter . 4956 `` Simone '' is a fun and funky look into an artificial creation in a world that thrives on artificiality . 4957 A great companion piece to other Napoleon films . 4958 To some eyes this will seem like a recycling of clichés , an assassin 's greatest hits . 4959 To others , it will remind them that Hong Kong action cinema is still alive and kicking . 4960 At 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 . '' 4961 Congrats Disney on a job well done , I enjoyed it just as much ! 4962 A 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 . 4963 Berling and Béart ... continue to impress , and Isabelle Huppert ... again shows uncanny skill in getting under the skin of her characters . 4964 Uplifting , funny and wise . 4965 Remarkable for its intelligence and intensity . 4966 The hypnotic imagery and fragmentary tale explore the connections between place and personal identity . 4967 Brosnan is more feral in this film than I 've seen him before and Halle Berry does her best to keep up with him . 4968 A 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 . 4969 `` On Guard ! '' 4970 wo 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 . 4971 The 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 . 4972 This is the stuff that Disney movies are made of . 4973 Like 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 . 4974 That the e-graveyard holds as many good ideas as bad is the cold comfort that Chin 's film serves up with style and empathy . 4975 While we no longer possess the lack-of-attention span that we did at seventeen , we had no trouble sitting for Blade II . 4976 like a poor man 's You Can Count On Me 4977 ... a solid , unassuming drama . 4978 A seriocomic debut of extravagant promise by Georgian-Israeli director Dover Kosashvili . 4979 Thanks to Ice Cube , Benjamins feels an awful lot like Friday in Miami . 4980 The real star of this movie is the score , as in the songs translate well to film , and it 's really well directed . 4981 It 's rare to find a film to which the adjective ` gentle ' applies , but the word perfectly describes Pauline & Paulette . 4982 My Wife is an Actress has its moments in looking at the comic effects of jealousy . 4983 In the end , though , it is only mildly amusing when it could have been so much more . 4984 Both Garcia and Jagger turn in perfectly executed and wonderfully sympathetic characters , who are alternately touching and funny . 4985 Humorous , artsy , and even cute , in an off-kilter , dark , vaguely disturbing way . 4986 The more you think about the movie , the more you will probably like it . 4987 ... a powerful sequel and one of the best films of the year . 4988 For the most part , the film does hold up pretty well . 4989 Together -LRB- Time Out and Human Resources -RRB- establish Mr. Cantet as France 's foremost cinematic poet of the workplace . 4990 You can take the grandkids or the grandparents and never worry about anyone being bored ... audience is a sea of constant smiles and frequent laughter . 4991 Like these Russo guys lookin ' for their Mamet instead found their Sturges . 4992 There 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 . 4993 By applying definition to both sides of the man , the picture realizes a fullness that does not negate the subject . 4994 Who is the audience for Cletis Tout ? 4995 Anybody who enjoys quirky , fun , popcorn movies with a touch of silliness and a little bloodshed . 4996 -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 . 4997 Puts to rest any thought that the German film industry can not make a delightful comedy centering on food . 4998 Witty dialog between realistic characters showing honest emotions . 4999 It 's touching and tender and proves that even in sorrow you can find humor . 5000 Like blended shades of lipstick , these components combine into one terrific story with lots of laughs . 5001 Ash Wednesday is not Edward Burns ' best film , but it is a good and ambitious film . 5002 And it marks him as one of the most interesting writer\/directors working today . 5003 After 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 . 5004 The footage of the rappers at play and the prison interview with Suge Knight are just two of the elements that will grab you . 5005 ... it 's as comprehensible as any Dummies guide , something even non-techies can enjoy . 5006 Do n't wait to see this terrific film with your kids -- if you do n't have kids borrow some . 5007 Moretti ... 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 . 5008 The 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 . 5009 Features Fincher 's characteristically startling visual style and an almost palpable sense of intensity . 5010 Precocious smarter-than-thou wayward teen struggles to rebel against his oppressive , right-wing , propriety-obsessed family . 5011 Anyone else seen this before ? 5012 Moore provides an invaluable service by sparking debate and encouraging thought . 5013 Better still , he does all of this , and more , while remaining one of the most savagely hilarious social critics this side of Jonathan Swift . 5014 Alternating between facetious comic parody and pulp melodrama , this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life . 5015 A cutesy romantic tale with a twist . 5016 This is a gorgeous film - vivid with color , music and life . 5017 Delight your senses and crash this wedding ! 5018 A brutally dry satire of Middle American numbness . 5019 More sophisticated and literate than such pictures usually are ... an amusing little catch . 5020 Smith examines the intimate , unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country . 5021 With an admirably dark first script by Brent Hanley , Paxton , making his directorial feature debut , does strong , measured work . 5022 A compelling French psychological drama examining the encounter of an aloof father and his chilly son after 20 years apart . 5023 ... even if you 've never heard of Chaplin , you 'll still be glued to the screen . 5024 You have enough finely tuned acting to compensate for the movie 's failings . 5025 As the dominant Christine , Sylvie Testud is icily brilliant . 5026 Although tender and touching , the movie would have benefited from a little more dramatic tension and some more editing . 5027 The story that emerges has elements of romance , tragedy and even silent-movie comedy . 5028 -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 . 5029 Viva le Resistance ! 5030 It offers a glimpse of the Solomonic decision facing Jewish parents in those turbulent times : to save their children and yet to lose them . 5031 The film is delicately narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann . 5032 Martyr gets royally screwed and comes back for more . 5033 A virtual roller-coaster ride of glamour and sleaze . 5034 an admirable , sometimes exceptional film 5035 If you like an extreme action-packed film with a hint of humor , then Triple X marks the spot . 5036 If 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 5037 May not be a breakthrough in filmmaking , but it is unwavering and arresting . 5038 The film 's images give a backbone to the company and provide an emotional edge to its ultimate demise . 5039 A bodice-ripper for intellectuals . 5040 The locations go from stark desert to gorgeous beaches . 5041 The story plays out slowly , but the characters are intriguing and realistic . 5042 Count on his movie to work at the back of your neck long after you leave the theater . 5043 Neil Burger here succeeded in ... making the mystery of four decades back the springboard for a more immediate mystery in the present . 5044 The 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 . 5045 A thriller made from a completist 's checklist rather than with a cultist 's passion . 5046 Try 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 . 5047 As quiet , patient and tenacious as Mr. Lopez himself , who approaches his difficult , endless work with remarkable serenity and discipline . 5048 Though the film never veers from its comic course , its unintentional parallels might inadvertently evoke memories and emotions which are anything but humorous . 5049 Evokes the style and flash of the double-cross that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun . 5050 So original in its base concept that you can not help but get caught up . 5051 It may be a no-brainer , but at least it 's a funny no-brainer . 5052 A lot more dimensional and complex than its sunny disposition would lead you to believe . 5053 Jeffs has created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness . 5054 Underachieves only in not taking the Shakespeare parallels quite far enough . 5055 The most audacious , outrageous , sexually explicit , psychologically probing , pure libido film of the year has arrived from Portugal . 5056 The 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 . 5057 Art-house to the core , Read My Lips is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema . 5058 Grant is certainly amusing , but the very hollowness of the character he plays keeps him at arms length 5059 Conceptually brilliant ... Plays like a living-room War Of The Worlds , gaining most of its unsettling force from the suggested and the unknown . 5060 ... manages to deliver a fair bit of vampire fun . 5061 Drama of temptation , salvation and good intentions is a thoughtful examination of faith , love and power . 5062 The 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 . 5063 The performances are strong , though the subject matter demands acting that borders on hammy at times . 5064 A damn fine and a truly distinctive and a deeply pertinent film . 5065 Still rapturous after all these years , Cinema Paradiso stands as one of the great films about movie love . 5066 Reggio and Glass put on an intoxicating show . 5067 MacDowell ... gives give a solid , anguished performance that eclipses nearly everything else she 's ever done . 5068 The thing about guys like Evans is this : You 're never quite sure where self-promotion ends and the truth begins . 5069 But as you watch the movie , you 're too interested to care . 5070 I liked a lot of the smaller scenes . 5071 The 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 . 5072 An eye-boggling blend of psychedelic devices , special effects and backgrounds , ` Spy Kids 2 ' is a visual treat for all audiences . 5073 Straightforward 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 . 5074 It may ... work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns . 5075 One of those movies that catches you up in something bigger than yourself , namely , an archetypal desire to enjoy good trash every now and then . 5076 This harrowing journey into combat hell vividly captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked . 5077 Far more successful , if considerably less ambitious , than last year 's Kubrick-meets-Spielberg exercise . 5078 Elling builds gradually until you feel fully embraced by this gentle comedy . 5079 A fascinating examination of the joyous , turbulent self-discovery made by a proper , middle-aged woman . 5080 Here 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 . 5081 Buy popcorn . 5082 Take nothing seriously and enjoy the ride . 5083 Carrying 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 . 5084 The 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 . 5085 Some Body will take you places you have n't been , and also places you have . 5086 Vereté has a whip-smart sense of narrative bluffs . 5087 Parts of the film feel a bit too much like an infomercial for Ram Dass 's latest book aimed at the boomer demographic . 5088 But mostly it 's a work that , with humor , warmth , and intelligence , captures a life interestingly lived . 5089 Were 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 . 5090 `` Home Movie '' is the film equivalent of a lovingly rendered coffee table book . 5091 Graphic sex may be what 's attracting audiences to Unfaithful , but gripping performances by Lane and Gere are what will keep them awake . 5092 When 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 . 5093 Both damning and damned compelling . 5094 Much 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 . 5095 You have to see it . 5096 Even 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 . 5097 What 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 . 5098 Both an admirable reconstruction of terrible events , and a fitting memorial to the dead of that day , and of the thousands thereafter . 5099 A sly dissection of the inanities of the contemporary music business and a rather sad story of the difficulties of artistic collaboration . 5100 The 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 . 5101 Lovingly photographed in the manner of a Golden Book sprung to life , Stuart Little 2 manages sweetness largely without stickiness . 5102 Consistently clever and suspenseful . 5103 It 's like a `` Big Chill '' reunion of the Baader-Meinhof Gang , only these guys are more harmless pranksters than political activists . 5104 The story gives ample opportunity for large-scale action and suspense , which director Shekhar Kapur supplies with tremendous skill . 5105 Fresnadillo 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 . 5106 Throws in enough clever and unexpected twists to make the formula feel fresh . 5107 Weighty and ponderous but every bit as filling as the treat of the title . 5108 A 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 . 5109 Generates an enormous feeling of empathy for its characters . 5110 Exposing the ways we fool ourselves is One Hour Photo 's real strength . 5111 It '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 . 5112 Mostly , -LRB- Goldbacher -RRB- just lets her complicated characters be unruly , confusing and , through it all , human . 5113 ... quite good at providing some good old fashioned spooks . 5114 At its worst , the movie is pretty diverting ; the pity is that it rarely achieves its best . 5115 Scherfig 's light-hearted profile of emotional desperation is achingly honest and delightfully cheeky . 5116 A 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 . 5117 The 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 . 5118 As it turns out , you can go home again . 5119 You 've already seen City by the Sea under a variety of titles , but it 's worth yet another visit . 5120 This 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 . 5121 Making 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 . 5122 Grown-up quibbles are beside the point here . 5123 The little girls understand , and McCracken knows that 's all that matters . 5124 A powerful , chilling , and affecting study of one man 's dying fall . 5125 This is a fascinating film because there is no clear-cut hero and no all-out villain . 5126 A dreadful day in Irish history is given passionate , if somewhat flawed , treatment . 5127 ... a good film that must have baffled the folks in the marketing department . 5128 ... 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 . 5129 Devotees 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 . 5130 A 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 . 5131 What 's so striking about Jolie 's performance is that she never lets her character become a caricature -- not even with that radioactive hair . 5132 The main story ... is compelling enough , but it 's difficult to shrug off the annoyance of that chatty fish . 5133 The performances are immaculate , with Roussillon providing comic relief . 5134 Kinnear ... gives his best screen performance with an oddly winning portrayal of one of life 's ultimate losers . 5135 Hugh Grant , who has a good line in charm , has never been more charming than in About a Boy . 5136 There 's a lot of tooth in Roger Dodger . 5137 But what 's nice is that there 's a casual intelligence that permeates the script . 5138 Reminiscent of Alfred Hitchcock 's thrillers , most of the scary parts in ` Signs ' occur while waiting for things to happen . 5139 One of the best looking and stylish animated movies in quite a while ... 5140 Its 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 . 5141 Denver should not get the first and last look at one of the most triumphant performances of Vanessa Redgrave 's career . 5142 It deserves to be seen everywhere . 5143 You need n't be steeped in '50s sociology , pop culture or movie lore to appreciate the emotional depth of Haynes ' work . 5144 Though Haynes ' style apes films from the period ... its message is not rooted in that decade . 5145 Waiting for Godard can be fruitful : ` In Praise of Love ' is the director 's epitaph for himself . 5146 A gangster movie with the capacity to surprise . 5147 The 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 . 5148 If not a home run , then at least a solid base hit . 5149 Goldmember is funny enough to justify the embarrassment of bringing a barf bag to the moviehouse . 5150 ... a fairly disposable yet still entertaining B picture . 5151 It may not be particularly innovative , but the film 's crisp , unaffected style and air of gentle longing make it unexpectedly rewarding . 5152 The film truly does rescue -LRB- the Funk Brothers -RRB- from Motown 's shadows . 5153 It 's about time . 5154 Drawing 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 . 5155 Works 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 . 5156 -LRB- Scherfig -RRB- has made a movie that will leave you wondering about the characters ' lives after the clever credits roll . 5157 A 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 . 5158 Skin 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 . 5159 The Piano Teacher is not an easy film . 5160 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 . 5161 As refreshing as a drink from a woodland stream . 5162 Williams absolutely nails Sy 's queasy infatuation and overall strangeness . 5163 Can 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 ? 5164 While 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 . 5165 By 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 . 5166 An intimate contemplation of two marvelously messy lives . 5167 Rarely has skin looked as beautiful , desirable , even delectable , as it does in Trouble Every Day . 5168 This is one of those rare docs that paints a grand picture of an era and makes the journey feel like a party . 5169 Poignant if familiar story of a young person suspended between two cultures . 5170 A metaphor for a modern-day urban China searching for its identity . 5171 For all its brooding quality , Ash Wednesday is suspenseful and ultimately unpredictable , with a sterling ensemble cast . 5172 An 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 . 5173 The film feels uncomfortably real , its language and locations bearing the unmistakable stamp of authority . 5174 Despite its faults , Gangs excels in spectacle and pacing . 5175 Entertaining despite its one-joke premise with the thesis that women from Venus and men from Mars can indeed get together . 5176 A tightly directed , highly professional film that 's old-fashioned in all the best possible ways . 5177 It 's dark but has wonderfully funny moments ; you care about the characters ; and the action and special effects are first-rate . 5178 In visual fertility Treasure Planet rivals the top Japanese animations of recent vintage . 5179 Enormously enjoyable , high-adrenaline documentary . 5180 Buy is an accomplished actress , and this is a big , juicy role . 5181 It works its magic with such exuberance and passion that the film 's length becomes a part of its fun . 5182 Beautifully crafted and brutally honest , Promises offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people . 5183 An old-fashioned but emotionally stirring adventure tale of the kind they rarely make anymore . 5184 Charlotte Sometimes is a gem . 5185 It 's always enthralling . 5186 In my opinion , Analyze That is not as funny or entertaining as Analyze This , but it is a respectable sequel . 5187 A remarkable film by Bernard Rose . 5188 Zhuangzhuang 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 . 5189 A much more successful translation than its most famous previous film adaptation , writer-director Anthony Friedman 's similarly updated 1970 British production . 5190 an original and highly cerebral examination of the psychopathic mind 5191 Michel Piccoli 's moving performance is this films reason for being . 5192 A captivating and intimate study about dying and loving ... 5193 This 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 . 5194 -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 . 5195 A high-spirited buddy movie about the reunion of Berlin anarchists who face arrest 15 years after their crime . 5196 About the best thing you could say about Narc is that it 's a rock-solid little genre picture . 5197 Whether you like it or not is basically a matter of taste . 5198 An involving , inspirational drama that sometimes falls prey to its sob-story trappings . 5199 Some of the most inventive silliness you are likely to witness in a movie theatre for some time . 5200 Canadian filmmaker Gary Burns ' inventive and mordantly humorous take on the soullessness of work in the city . 5201 A 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 . 5202 Everyone 's insecure in Lovely and Amazing , a poignant and wryly amusing film about mothers , daughters and their relationships . 5203 The closest thing to the experience of space travel 5204 Connoisseurs of Chinese film will be pleased to discover that Tian 's meticulous talent has not withered during his enforced hiatus . 5205 If you can push on through the slow spots , you 'll be rewarded with some fine acting . 5206 An unusually dry-eyed , even analytical approach to material that is generally played for maximum moisture . 5207 Symbolically , Warm Water Under a Red Bridge is a celebration of feminine energy , a tribute to the power of women to heal . 5208 Spy Kids 2 also happens to be that rarity among sequels : It actually improves upon the original hit movie . 5209 Exceptionally well acted by Diane Lane and Richard Gere . 5210 Like a precious and finely cut diamond , magnificent to behold in its sparkling beauty yet in reality it 's one tough rock . 5211 In 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 . 5212 Miller has crafted an intriguing story of maternal instincts and misguided acts of affection . 5213 One of the most exciting action films to come out of China in recent years . 5214 This is a nervy , risky film , and Villeneuve has inspired Croze to give herself over completely to the tormented persona of Bibi . 5215 MY LITTLE EYE is the best little `` horror '' movie I 've seen in years . 5216 Tunney , brimming with coltish , neurotic energy , holds the screen like a true star . 5217 Even if the Naipaul original remains the real masterpiece , the movie possesses its own languorous charm . 5218 -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 . 5219 Sometimes 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 . 5220 The 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 . 5221 Like the series , the movie is funny , smart , visually inventive , and most of all , alive . 5222 It was filled with shootings , beatings , and more cussing than you could shake a stick at . 5223 You 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 . 5224 Or both . 5225 Sure , I hated myself in the morning . 5226 But then again , I hate myself most mornings . 5227 I still like Moonlight Mile , better judgment be damned . 5228 Time Out is as serious as a pink slip . 5229 And more than that , it 's an observant , unfussily poetic meditation about identity and alienation . 5230 Will assuredly rank as one of the cleverest , most deceptively amusing comedies of the year . 5231 Maryam is a small film , but it offers large rewards . 5232 A highly watchable , giggly little story with a sweet edge to it . 5233 The most consistently funny of the Austin Powers films . 5234 Ana '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 ... 5235 Cockettes has the glorious , gaudy benefit of much stock footage of Those Days , featuring all manner of drag queen , bearded lady and lactating hippie . 5236 There '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 . 5237 The comedy makes social commentary more palatable . 5238 An ideal love story for those intolerant of the more common saccharine genre . 5239 One funny popcorn flick . 5240 This New Zealand coming-of-age movie is n't really about anything . 5241 When it 's this rich and luscious , who cares ? 5242 Tully 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 . 5243 This gorgeous epic is guaranteed to lift the spirits of the whole family . 5244 The Wild Thornberrys Movie is pleasant enough and the message of our close ties with animals can certainly not be emphasized enough . 5245 Williams creates a stunning , Taxi Driver-esque portrayal of a man teetering on the edge of sanity . 5246 If you 're in the right B-movie frame of mind , it may just scare the pants off you . 5247 A movie of riveting power and sadness . 5248 Both a detective story and a romance spiced with the intrigue of academic skullduggery and politics . 5249 Ludicrous , but director Carl Franklin adds enough flourishes and freak-outs to make it entertaining . 5250 Director Roger Kumble offers just enough sweet and traditional romantic comedy to counter the crudity . 5251 And there 's the inimitable Diaz , holding it all together . 5252 Spielberg '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 . 5253 It '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 . 5254 A grittily beautiful film that looks , sounds , and feels more like an extended , open-ended poem than a traditionally structured story . 5255 The production values are of the highest and the performances attractive without being memorable . 5256 A well-rounded tribute to a man whose achievements -- and complexities -- reached far beyond the end zone . 5257 finely crafted , finely written , exquisitely performed 5258 Ramsay and Morton fill this character study with poetic force and buoyant feeling . 5259 This submarine drama earns the right to be favorably compared to Das Boot . 5260 Claude Chabrol 's camera has a way of gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements . 5261 There 's a great deal of corny dialogue and preposterous moments . 5262 And yet , it still works . 5263 The film was immensely enjoyable thanks to great performances by both Steve Buscemi and Rosario Dawson ... 5264 Like 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 . 5265 Special P.O.V. camera mounts on bikes , skateboards , and motorcycles provide an intense experience when splashed across the immense IMAX screen . 5266 Mike White 's deft combination of serious subject matter and dark , funny humor make `` The Good Girl '' a film worth watching . 5267 This is a shrewd and effective film from a director who understands how to create and sustain a mood . 5268 Meant to reduce Blake 's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia . 5269 Assayas ' ambitious , sometimes beautiful adaptation of Jacques Chardonne 's novel . 5270 As ex-Marine Walter , who may or may not have shot Kennedy , actor Raymond J. Barry is perfectly creepy and believable . 5271 Those who do n't entirely ` get ' Godard 's distinctive discourse will still come away with a sense of his reserved but existential poignancy . 5272 Pete 's screenplay manages to find that real natural , even-flowing tone that few movies are able to accomplish . 5273 Like Brosnan 's performance , Evelyn comes from the heart . 5274 It uses some of the figures from the real-life story to portray themselves in the film . 5275 The result is a powerful , naturally dramatic piece of low-budget filmmaking . 5276 Its spirit of iconoclastic abandon -- however canned -- makes for unexpectedly giddy viewing . 5277 The early and middle passages are surprising in how much they engage and even touch us . 5278 This is not a classical dramatic animated feature , nor a hip , contemporary , in-jokey one . 5279 It 's sort of in-between , and it works . 5280 This quiet , introspective and entertaining independent is worth seeking . 5281 Whether our action-and-popcorn obsessed culture will embrace this engaging and literate psychodrama is n't much of a mystery , unfortunately . 5282 Whether 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 . 5283 Sly , sophisticated and surprising . 5284 Spare but quietly effective retelling . 5285 Demonstrates a vivid imagination and an impressive style that result in some terrific setpieces . 5286 By its modest , straight-ahead standards , Undisputed scores a direct hit . 5287 Its 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 . 5288 For those who like quirky , slightly strange French films , this is a must ! 5289 There 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 . 5290 -LRB- Shyamalan -RRB- continues to cut a swathe through mainstream Hollywood , while retaining an integrity and refusing to compromise his vision . 5291 A whale of a good time for both children and parents seeking Christian-themed fun . 5292 What begins as a film in the tradition of The Graduate quickly switches into something more recyclable than significant . 5293 Much smarter and more attentive than it first sets out to be . 5294 The story is smart and entirely charming in intent and execution . 5295 A movie of technical skill and rare depth of intellect and feeling . 5296 Represents a worthy departure from the culture clash comedies that have marked an emerging Indian American cinema . 5297 Does n't do more than expand a TV show to movie length . 5298 However , it 's pleasant enough and its ecological , pro-wildlife sentiments are certainly welcome . 5299 If you 're looking for an intelligent movie in which you can release your pent up anger , ENOUGH is just the ticket you need . 5300 A pointed , often tender , examination of the pros and cons of unconditional love and familial duties . 5301 As 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 . 5302 A comedy-drama of nearly epic proportions rooted in a sincere performance by the title character undergoing midlife crisis . 5303 It '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 . 5304 Elegantly produced and expressively performed , the six musical numbers crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy . 5305 Enriched by a strong and unforced supporting cast . 5306 Writer \/ director M. Night Shyamalan 's ability to pull together easily accessible stories that resonate with profundity is undeniable . 5307 If you can keep your eyes open amid all the blood and gore , you 'll see Del Toro has brought unexpected gravity to Blade II . 5308 Not a strike against Yang 's similarly themed Yi Yi , but I found What Time ? 5309 to be more engaging on an emotional level , funnier , and on the whole less detached . 5310 A breathtaking adventure for all ages , Spirit tells its poignant and uplifting story in a stunning fusion of music and images . 5311 A charming and funny story of clashing cultures and a clashing mother\/daughter relationship . 5312 Never lets go your emotions , taking them to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving . 5313 `` ... something appears to have been lost in the translation this time . 5314 The Importance of Being Earnest movie seems to be missing a great deal of the acerbic repartee of the play . '' 5315 -LRB- Washington 's -RRB- strong hand , keen eye , sweet spirit and good taste are reflected in almost every scene . 5316 Shiner can certainly go the distance , but is n't world championship material 5317 The 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 . 5318 ... a quietly introspective portrait of the self-esteem of employment and the shame of losing a job ... 5319 Affable if not timeless , Like Mike raises some worthwhile themes while delivering a wholesome fantasy for kids . 5320 A film of delicate interpersonal dances . 5321 Caine makes us watch as his character awakens to the notion that to be human is eventually to have to choose . 5322 It 's a sight to behold . 5323 It 's an unusual , thoughtful bio-drama with a rich subject and some fantastic moments and scenes . 5324 Saved from being merely way-cool by a basic , credible compassion . 5325 The 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 . 5326 Gangs , despite the gravity of its subject matter , is often as fun to watch as a good spaghetti western . 5327 Peter Jackson has done the nearly impossible . 5328 He has improved upon the first and taken it a step further , richer and deeper . 5329 What Jackson has done is proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 5330 There has to be a few advantages to never growing old . 5331 Like being able to hit on a 15-year old when you 're over 100 . 5332 Ice Age wo n't drop your jaw , but it will warm your heart , and I 'm giving it a strong thumbs up . 5333 Like Kissing Jessica Stein , Amy 's Orgasm has a key strength in its willingness to explore its principal characters with honesty , insight and humor . 5334 The Lady and the Duke is Eric Rohmer 's economical antidote to the bloated costume drama 5335 One of the year 's best films , featuring an Oscar-worthy performance by Julianne Moore . 5336 A small gem from Belgium . 5337 Combines a comically dismal social realism with a farcically bawdy fantasy of redemption and regeneration . 5338 A soap-opera quality twist in the last 20 minutes ... almost puts the kibosh on what is otherwise a sumptuous work of B-movie imagination . 5339 The most ingenious film comedy since Being John Malkovich . 5340 There 's something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers . 5341 A movie where story is almost an afterthought amidst a swirl of colors and inexplicable events . 5342 Manages to accomplish what few sequels can -- it equals the original and in some ways even betters it . 5343 To 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 . 5344 Jolie 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 . 5345 Although melodramatic and predictable , this romantic comedy explores the friendship between five Filipino-Americans and their frantic efforts to find love . 5346 I have a new favorite musical -- and I 'm not even a fan of the genre 5347 It 's unlikely we 'll see a better thriller this year . 5348 There is a real subject here , and it is handled with intelligence and care . 5349 Jason Patric and Ray Liotta make for one splendidly cast pair . 5350 Noyce 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 . 5351 Starts slowly , but Adrien Brody -- in the title role -- helps make the film 's conclusion powerful and satisfying . 5352 Very predictable but still entertaining 5353 Nothing short of a masterpiece -- and a challenging one . 5354 Pratfalls aside , Barbershop gets its greatest play from the timeless spectacle of people really talking to each other . 5355 This amiable picture talks tough , but it 's all bluster -- in the end it 's as sweet as Greenfingers ... 5356 This is one of Mr. Chabrol 's subtlest works , but also one of his most uncanny . 5357 An 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 . 5358 Even 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 . 5359 Watching Spirited Away is like watching an Eastern imagination explode . 5360 As relationships shift , director Robert J. Siegel allows the characters to inhabit their world without cleaving to a narrative arc . 5361 Twohy 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 . 5362 While the story does seem pretty unbelievable at times , it 's awfully entertaining to watch . 5363 A smart and funny , albeit sometimes superficial , cautionary tale of a technology in search of an artist . 5364 Examines its explosive subject matter as nonjudgmentally as Wiseman 's previous studies of inner-city high schools , hospitals , courts and welfare centers . 5365 I prefer Soderbergh 's concentration on his two lovers over Tarkovsky 's mostly male , mostly patriarchal debating societies . 5366 ` If you are in the mood for an intelligent weepy , it can easily worm its way into your heart . ' 5367 In IMAX in short , it 's just as wonderful on the big screen . 5368 Does a good job of establishing a time and place , and of telling a fascinating character 's story . 5369 I 'm going to give it a marginal thumbs up . 5370 I liked it just enough . 5371 Those of you who do n't believe in Santa Claus probably also think that sequels can never capture the magic of the original . 5372 Well , this movie proves you wrong on both counts . 5373 A deliciously nonsensical comedy about a city coming apart at its seams . 5374 The rare Imax movie that you 'll wish was longer than an hour . 5375 My Wife 's plotting is nothing special ; it 's the delivery that matters here . 5376 I '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 . 5377 A moving and not infrequently breathtaking film . 5378 It 's a sharp movie about otherwise dull subjects . 5379 It 's like Rocky and Bullwinkle on Speed , but that 's neither completely enlightening , nor does it catch the intensity of the movie 's strangeness . 5380 As action-adventure , this space-based homage to Robert Louis Stevenson 's Treasure Island fires on all plasma conduits . 5381 A melancholy , emotional film . 5382 While the filmmaking may be a bit disjointed , the subject matter is so fascinating that you wo n't care . 5383 Intensely romantic , thought-provoking and even an engaging mystery . 5384 Goofy , nutty , consistently funny . 5385 And educational ! 5386 Another 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 . 5387 It leaves little doubt that Kidman has become one of our best actors . 5388 The film boasts dry humor and jarring shocks , plus moments of breathtaking mystery . 5389 Beautifully directed and convincingly acted . 5390 Gambling and throwing a basketball game for money is n't a new plot -- in fact Toback himself used it in Black and White . 5391 But Toback 's deranged immediacy makes it seem fresh again . 5392 In 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 . 5393 Bring on the sequel . 5394 Graced with the kind of social texture and realism that would be foreign in American teen comedies . 5395 If we sometimes need comforting fantasies about mental illness , we also need movies like Tim McCann 's Revolution No. 9 . 5396 The 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 . 5397 A big-budget\/all-star movie as unblinkingly pure as The Hours is a distinct rarity , and an event . 5398 ... certainly an entertaining ride , despite many talky , slow scenes . 5399 But something seems to be missing . 5400 A sense of real magic , perhaps . 5401 That Haynes can both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace . 5402 The movie worked for me right up to the final scene , and then it caved in . 5403 ... one of the most entertaining monster movies in ages ... 5404 Plunges 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 . 5405 Would you laugh if a tuba-playing dwarf rolled down a hill in a trash can ? 5406 Do you chuckle at the thought of an ancient librarian whacking a certain part of a man 's body ? 5407 If you answered yes , by all means enjoy The New Guy . 5408 The 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 . 5409 Missteps take what was otherwise a fascinating , riveting story and send it down the path of the mundane . 5410 An indispensable peek at the art and the agony of making people laugh . 5411 Steadfastly uncinematic but powerfully dramatic . 5412 The engagingly primitive animated special effects contribute to a mood that 's sustained through the surprisingly somber conclusion . 5413 Made-Up lampoons the moviemaking process itself , while shining a not particularly flattering spotlight on America 's skin-deep notions of pulchritude . 5414 Evokes the 19th century with a subtlety that is an object lesson in period filmmaking . 5415 Ya-Yas everywhere will forgive the flaws and love the film . 5416 The 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 . 5417 The artwork is spectacular and unlike most animaton from Japan , the characters move with grace and panache . 5418 The picture 's fascinating byways are littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed . 5419 The modern remake of Dumas 's story is long on narrative and -LRB- too -RRB- short on action . 5420 Fred Schepisi 's film is paced at a speed that is slow to those of us in middle age and deathly slow to any teen . 5421 With a cast of A-list Brit actors , it is worth searching out . 5422 Suffers from its timid parsing of the barn-side target of sons trying to breach gaps in their relationships with their fathers . 5423 Nonchalantly freaky and uncommonly pleasurable , Warm Water may well be the year 's best and most unpredictable comedy . 5424 It '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 . 5425 It 's a great American adventure and a wonderful film to bring to IMAX . 5426 Satisfyingly scarifying , fresh and old-fashioned at the same time . 5427 Oh , James ! 5428 Your 20th outing shows off a lot of stamina and vitality , and get this , Madonna 's cameo does n't suck ! 5429 That death is merely a transition is a common tenet in the world 's religions . 5430 This deeply spiritual film taps into the meaning and consolation in afterlife communications . 5431 There 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 5432 A huge box-office hit in Korea , Shiri is a must for genre fans . 5433 I 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy , ' but Real Women Have Curves truly is life affirming . 5434 The symbols float like butterflies and the spinning styx sting like bees . 5435 I wanted more . 5436 If it 's unnerving suspense you 're after -- you 'll find it with Ring , an indisputably spooky film ; with a screenplay to die for . 5437 The art direction and costumes are gorgeous and finely detailed , and Kurys ' direction is clever and insightful . 5438 Red Dragon makes one appreciate Silence of the Lambs . 5439 Proves 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 . 5440 Leigh is n't breaking new ground , but he knows how a daily grind can kill love . 5441 While 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 . 5442 ... strips Bible stores of the potential for sanctimoniousness , making them meaningful for both kids and church-wary adults . 5443 Laugh-out-loud lines , adorably ditsy but heartfelt performances , and sparkling , bittersweet dialogue that cuts to the chase of the modern girl 's dilemma . 5444 Tends to pile too many `` serious issues '' on its plate at times , yet remains fairly light , always entertaining , and smartly written . 5445 A solidly entertaining little film . 5446 It 's an entertaining movie , and the effects , boosted to the size of a downtown hotel , will all but take you to outer space . 5447 Sayles has a knack for casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors . 5448 Despite an overwrought ending , the film works as well as it does because of the performances . 5449 A passionately inquisitive film determined to uncover the truth and hopefully inspire action . 5450 Though Nijinsky 's words grow increasingly disturbed , the film maintains a beguiling serenity and poise that make it accessible for a non-narrative feature . 5451 A muddle splashed with bloody beauty as vivid as any Scorsese has ever given us . 5452 From both a great and a terrible story , Mr. Nelson has made a film that is an undeniably worthy and devastating experience . 5453 Spider-Man is about growing strange hairs , getting a more mature body , and finding it necessary to hide new secretions from the parental units . 5454 The first shocking thing about Sorority Boys is that it 's actually watchable . 5455 Even more baffling is that it 's funny . 5456 Highlighted 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 . 5457 Neither 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 . 5458 First and foremost ... the reason to go see `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings . 5459 A visionary marvel , but it 's lacking a depth in storytelling usually found in anime like this . 5460 The 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 . 5461 In his latest effort , Storytelling , Solondz has finally made a movie that is n't just offensive -- it also happens to be good . 5462 How I Killed My Father would be a rarity in Hollywood . 5463 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 . 5464 I just saw this movie ... well , it 's probably not accurate to call it a movie . 5465 What '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 . 5466 Scherfig , the writer-director , has made a film so unabashedly hopeful that it actually makes the heart soar . 5467 Yes , soar . 5468 A delicious and delicately funny look at the residents of a Copenhagen neighborhood coping with the befuddling complications life tosses at them . 5469 `` What really happened ? '' 5470 is a question for philosophers , not filmmakers ; all the filmmakers need to do is engage an audience . 5471 Soderbergh , like Kubrick before him , may not touch the planet 's skin , but understands the workings of its spirit . 5472 Much credit must be given to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart . 5473 Their work is fantastic . 5474 Crush is so warm and fuzzy you might be able to forgive its mean-spirited second half . 5475 Franco 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 . 5476 Tsai Ming-liang 's witty , wistful new film , What Time Is It There ? 5477 , is a temporal inquiry that shoulders its philosophical burden lightly . 5478 The Pianist lacks the quick emotional connections of Steven Spielberg 's Schindler 's List . 5479 But Mr. Polanski creates images even more haunting than those in Mr. Spielberg 's 1993 classic . 5480 Steers , in his feature film debut , has created a brilliant motion picture . 5481 A brilliant , absurd collection of vignettes that , in their own idiosyncratic way , sum up the strange horror of life in the new millennium . 5482 As 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 . 5483 The film may not hit as hard as some of the better drug-related pictures , but it still manages to get a few punches in . 5484 Old-fashioned but thoroughly satisfying entertainment . 5485 An energizing , intoxicating documentary charting the rise of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular . 5486 A 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 . ' 5487 If 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 . 5488 I 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 . 5489 Even though the film does n't manage to hit all of its marks , it 's still entertaining to watch the target practice . 5490 Where This was lazy but enjoyable , a formula comedy redeemed by its stars , That is even lazier and far less enjoyable . 5491 The 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 . 5492 The attraction between these two marginal characters is complex from the start -- and , refreshingly , stays that way . 5493 Fans 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 . 5494 Even when he 's not at his most critically insightful , Godard can still be smarter than any 50 other filmmakers still at work . 5495 What sets this romantic comedy apart from most Hollywood romantic comedies is its low-key way of tackling what seems like done-to-death material . 5496 Has 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 . 5497 This seductive tease of a thriller gets the job done . 5498 It 's a scorcher . 5499 Bittersweet comedy\/drama full of life , hand gestures , and some really adorable Italian guys . 5500 Works as pretty contagious fun . 5501 The 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 . 5502 A realistically terrifying movie that puts another notch in the belt of the long list of renegade-cop tales . 5503 A charming , banter-filled comedy ... one of those airy cinematic bon bons whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface . 5504 A film with almost as many delights for adults as there are for children and dog lovers . 5505 Serious movie-goers embarking upon this journey will find that The Road to Perdition leads to a satisfying destination . 5506 Heartwarming and gently comic even as the film breaks your heart . 5507 Caruso 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 . 5508 A `` black Austin Powers ? '' 5509 I prefer to think of it as `` Pootie Tang with a budget . '' 5510 Sa da TAY ! 5511 Oddly , the film is n't nearly as downbeat as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny . 5512 I would be shocked if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable . 5513 Chouraqui brings documentary-like credibility to the horrors of the killing field and the barbarism of ` ethnic cleansing . ' 5514 The best thing I can say about this film is that I ca n't wait to see what the director does next . 5515 Smarter than its commercials make it seem . 5516 One of the funnier movies in town . 5517 Campanella 's competent direction and his excellent cast overcome the obstacles of a predictable outcome and a screenplay that glosses over Rafael 's evolution . 5518 By turns very dark and very funny . 5519 Steven Soderbergh does n't remake Andrei Tarkovsky 's Solaris so much as distill it . 5520 For 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 . 5521 Simultaneously heartbreakingly beautiful and exquisitely sad . 5522 Though overall an overwhelmingly positive portrayal , the film does n't ignore the more problematic aspects of Brown 's life . 5523 The philosophical musings of the dialogue jar against the tawdry soap opera antics of the film 's action in a way that is surprisingly enjoyable . 5524 Not too fancy , not too filling , not too fluffy , but definitely tasty and sweet . 5525 Director Lee has a true cinematic knack , but it 's also nice to see a movie with its heart so thoroughly , unabashedly on its sleeve . 5526 As Allen 's execution date closes in , the documentary gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson . 5527 Jones has tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers . 5528 A vivid , spicy footnote to history , and a movie that grips and holds you in rapt attention from start to finish . 5529 If 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 . 5530 If 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 . 5531 One 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 . 5532 ... an adorably whimsical comedy that deserves more than a passing twinkle . 5533 An engrossing story that combines psychological drama , sociological reflection , and high-octane thriller . 5534 It '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 . 5535 Mel Gibson fights the good fight in Vietnam in director Randall Wallace 's flag-waving war flick with a core of decency . 5536 There 's real visual charge to the filmmaking , and a strong erotic spark to the most crucial lip-reading sequence . 5537 A brutal and funny work . 5538 Nicole Holofcenter , the insightful writer\/director responsible for this illuminating comedy does n't wrap the proceedings up neatly but the ideas tie together beautifully . 5539 The film is a blunt indictment , part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity . 5540 One of the most important and exhilarating forms of animated filmmaking since old Walt doodled Steamboat Willie . 5541 Move over Bond ; this girl deserves a sequel . 5542 The kind of trifle that date nights were invented for . . 5543 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 . 5544 There 's a sheer unbridled delight in the way the story unfurls ... 5545 Tells -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 . 5546 The film is hard to dismiss -- moody , thoughtful , and lit by flashes of mordant humor . 5547 If 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 . 5548 What emerges is an unsettling picture of childhood innocence combined with indoctrinated prejudice . 5549 Promises is a compelling piece that demonstrates just how well children can be trained to live out and carry on their parents ' anguish . 5550 Meticulously uncovers a trail of outrageous force and craven concealment . 5551 Hey , Happy ! 5552 is many things -- stoner midnight flick , sci-fi deconstruction , gay fantasia -- but above all it 's a love story as sanguine as its title . 5553 You wo n't look at religious fanatics -- or backyard sheds -- the same way again . 5554 At its best ... Festival in Cannes bubbles with the excitement of the festival in Cannes . 5555 There is a general air of exuberance in All About The Benjamins that 's hard to resist . 5556 A lovably old-school Hollywood confection . 5557 I 'm happy to have seen it -- not as an alternate version , but as the ultimate exercise in viewing deleted scenes . 5558 By turns gripping , amusing , tender and heart-wrenching , Laissez-passer has all the earmarks of French cinema at its best . 5559 The warnings to resist temptation in this film ... are blunt and challenging and offer no easy rewards for staying clean . 5560 Wonder of wonders -- a teen movie with a humanistic message . 5561 A quirky comedy set in Newfoundland that cleverly captures the dry wit that 's so prevalent on The Rock . 5562 Peppered with witty dialogue and inventive moments . 5563 I 'd rather watch a rerun of The Powerpuff Girls 5564 With 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 . 5565 The 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 . 5566 Like 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 . 5567 As a thoughtful and unflinching examination of an alternative lifestyle , Sex with Strangers is a success . 5568 unpretentious , charming , quirky , original 5569 Spinning a web of dazzling entertainment may be overstating it , but `` Spider-Man '' certainly delivers the goods . 5570 Other than the slightly flawed -LRB- and fairly unbelievable -RRB- finale , everything else is top shelf . 5571 This 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 . 5572 Manages to delight without much of a story . 5573 There 's no denying that Burns is a filmmaker with a bright future ahead of him . 5574 I have a confession to make : I did n't particularly like E.T. the first time I saw it as a young boy . 5575 That is because - damn it ! 5576 - I also wanted a little alien as a friend ! 5577 Fairy-tale formula , serves as a paper skeleton for some very good acting , dialogue , comedy , direction and especially charm . 5578 A 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 . 5579 Though 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 . 5580 An energetic and engaging film that never pretends to be something it is n't . 5581 A 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 . 5582 An animation landmark as monumental as Disney 's 1937 breakthrough Snow White and the Seven Dwarfs . 5583 An entertaining , if ultimately minor , thriller . 5584 Sex With Strangers is fascinating ... 5585 A subtle , poignant picture of goodness that is flawed , compromised and sad . 5586 A wry , affectionate delight . 5587 The 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 . 5588 One of those joyous films that leaps over national boundaries and celebrates universal human nature . 5589 A penetrating glimpse into the tissue-thin ego of the stand-up comic . 5590 Kids should have a stirring time at this beautifully drawn movie . 5591 And adults will at least have a dream image of the West to savor whenever the film 's lamer instincts are in the saddle . 5592 Paid in Full is remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks . 5593 Less cinematically powerful than quietly and deeply moving , which is powerful in itself . 5594 waydowntown manages to nail the spirit-crushing ennui of denuded urban living without giving in to it . 5595 Each 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 . 5596 If Borstal Boy is n't especially realistic , it is an engaging nostalgia piece . 5597 Often demented in a good way , but it is an uneven film for the most part . 5598 The 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 . 5599 Maggie Smith as the Ya-Ya member with the O2-tank will absolutely crack you up with her crass , then gasp for gas , verbal deportment . 5600 This is a movie that refreshes the mind and spirit along with the body , so original is its content , look , and style . 5601 Although I did n't hate this one , it 's not very good either . 5602 It can be safely recommended as a video\/DVD babysitter . 5603 Another Best of the Year selection . 5604 The 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 . 5605 It 's a very valuable film ... 5606 Max pokes , provokes , takes expressionistic license and hits a nerve ... as far as art is concerned , it 's mission accomplished . 5607 Literary purists may not be pleased , but as far as mainstream matinee-style entertainment goes , it does a bang-up job of pleasing the crowds . 5608 Here Polanski looks back on those places he saw at childhood , and captures them by freeing them from artefact , and by showing them heartbreakingly drably . 5609 The 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 . 5610 A compelling story of musical passion against governmental odds . 5611 With `` Ichi the Killer '' , Takashi Miike , Japan 's wildest filmmaker gives us a crime fighter carrying more emotional baggage than Batman ... 5612 You never know where Changing Lanes is going to take you but it 's a heck of a ride . 5613 Samuel L. Jackson is one of the best actors there is . 5614 -LRB- Breheny 's -RRB- lensing of the New Zealand and Cook Island locations captures both the beauty of the land and the people . 5615 An almost unbearably morbid love story . 5616 The Wild Thornberrys Movie has all the sibling rivalry and general family chaos to which anyone can relate . 5617 A forceful drama of an alienated executive who re-invents himself . 5618 Spielberg 's realization of a near-future America is masterful . 5619 This makes Minority Report necessary viewing for sci-fi fans , as the film has some of the best special effects ever . 5620 The 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 . 5621 The best film of the year 2002 . 5622 An enthralling , entertaining feature . 5623 Stripped 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 . 5624 A remarkable movie with an unsatisfying ending , which is just the point . 5625 All in all , Brown Sugar is a satisfying well-made romantic comedy that 's both charming and well acted . 5626 It will guarantee to have you leaving the theater with a smile on your face . 5627 Smith finds amusing juxtapositions that justify his exercise . 5628 Working 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 . 5629 An older cad instructs a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy . 5630 `` Austin Powers in Goldmember '' has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end . 5631 One of -LRB- Jaglom 's -RRB- better efforts -- a wry and sometime bitter movie about love . 5632 Schaeffer is n't in this film , which may be why it works as well as it does . 5633 A fresh , entertaining comedy that looks at relationships minus traditional gender roles . 5634 Although Estela Bravo 's documentary is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro , it 's still a guilty pleasure to watch . 5635 Surprisingly , the film is a hilarious adventure and I shamelessly enjoyed it . 5636 The 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 . 5637 Brutally honest and told with humor and poignancy , which makes its message resonate . 5638 If 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 . 5639 A pretty funny movie , with most of the humor coming , as before , from the incongruous but chemically perfect teaming of Crystal and De Niro . 5640 Gangster No. 1 is solid , satisfying fare for adults . 5641 This Chicago has hugely imaginative and successful casting to its great credit , as well as one terrific score and attitude to spare . 5642 Has enough gun battles and throwaway humor to cover up the yawning chasm where the plot should be . 5643 With its jerky hand-held camera and documentary feel , Bloody Sunday is a sobering recount of a very bleak day in Derry . 5644 You will likely prefer to keep on watching . 5645 Insomnia loses points when it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion . 5646 But the performances of Pacino , Williams , and Swank keep the viewer wide-awake all the way through . 5647 What 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 . 5648 At 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 . 5649 An Inuit masterpiece that will give you goosebumps as its uncanny tale of love , communal discord , and justice unfolds . 5650 This 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 5651 It '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 . 5652 Performances are potent , and the women 's stories are ably intercut and involving . 5653 An enormously entertaining movie , like nothing we 've ever seen before , and yet completely familiar . 5654 Lan Yu is a genuine love story , full of traditional layers of awakening and ripening and separation and recovery . 5655 Your children will be occupied for 72 minutes . 5656 Pull -LRB- s -RRB- off the rare trick of recreating not only the look of a certain era , but also the feel . 5657 Twohy 's a good yarn-spinner , and ultimately the story compels . 5658 ` Tobey Maguire is a poster boy for the geek generation . ' 5659 ... a sweetly affecting story about four sisters who are coping , in one way or another , with life 's endgame . 5660 Passion , melodrama , sorrow , laugther , and tears cascade over the screen effortlessly ... 5661 Road to Perdition does display greatness , and it 's worth seeing . 5662 But it also comes with the laziness and arrogance of a thing that already knows it 's won . 5663 A marvelous performance by Allison Lohman as an identity-seeking foster child . 5664 Arliss 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 . 5665 Critics 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 . 5666 What a dumb , fun , curiously adolescent movie this is . 5667 The charms of the lead performances allow us to forget most of the film 's problems . 5668 A vivid , sometimes surreal , glimpse into the mysteries of human behavior . 5669 A tour de force of modern cinema . 5670 Peralta captures , in luminous interviews and amazingly evocative film from three decades ago , the essence of the Dogtown experience . 5671 The lively appeal of The Last Kiss lies in the ease with which it integrates thoughtfulness and pasta-fagioli comedy . 5672 Without 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 . 5673 The performances are an absolute joy . 5674 A quasi-documentary by French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music . 5675 Grant carries the day with impeccable comic timing , raffish charm and piercing intellect . 5676 A sensitive and astute first feature by Anne-Sophie Birot . 5677 Both exuberantly romantic and serenely melancholy , What Time Is It There ? 5678 may prove to be -LRB- Tsai 's -RRB- masterpiece . 5679 Mazel tov to a film about a family 's joyous life acting on the Yiddish stage . 5680 Standing 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 . 5681 It 's nice to see Piscopo again after all these years , and Chaykin and Headly are priceless . 5682 Provides a porthole into that noble , trembling incoherence that defines us all . 5683 Simplistic , silly and tedious . 5684 It 's so laddish and juvenile , only teenage boys could possibly find it funny . 5685 Exploitative and largely devoid of the depth or sophistication that would make watching such a graphic treatment of the crimes bearable . 5686 -LRB- Garbus -RRB- discards the potential for pathological study , exhuming instead , the skewed melodrama of the circumstantial situation . 5687 A visually flashy but narratively opaque and emotionally vapid exercise in style and mystification . 5688 The story is also as unoriginal as they come , already having been recycled more times than I 'd care to count . 5689 About 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 . 5690 Not so much farcical as sour . 5691 Unfortunately the story and the actors are served with a hack script . 5692 All the more disquieting for its relatively gore-free allusions to the serial murders , but it falls down in its attempts to humanize its subject . 5693 A sentimental mess that never rings true . 5694 While the performances are often engaging , this loose collection of largely improvised numbers would probably have worked better as a one-hour TV documentary . 5695 Interesting , but not compelling . 5696 On a cutting room floor somewhere lies ... footage that might have made No Such Thing a trenchant , ironic cultural satire instead of a frustrating misfire . 5697 While 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 . 5698 There is a difference between movies with the courage to go over the top and movies that do n't care about being stupid 5699 Nothing here seems as funny as it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah . 5700 Such master screenwriting comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' and last year 's `` Rollerball . '' 5701 Enough said , except : Film overboard ! 5702 Here , common sense flies out the window , along with the hail of bullets , none of which ever seem to hit Sascha . 5703 This 100-minute movie only has about 25 minutes of decent material . 5704 The 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 . 5705 On its own , it 's not very interesting . 5706 As a remake , it 's a pale imitation . 5707 It 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 . 5708 A 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 . 5709 As exciting as all this exoticism might sound to the typical Pax viewer , the rest of us will be lulled into a coma . 5710 The party scenes deliver some tawdry kicks . 5711 The rest of the film ... is dudsville . 5712 Our 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 . ' 5713 The criticism never rises above easy , cynical potshots at morally bankrupt characters ... 5714 The 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 . 5715 Killing time , that 's all that 's going on here . 5716 Somewhere in the middle , the film compels , as Demme experiments he harvests a few movie moment gems , but the field of roughage dominates . 5717 The action clichés just pile up . 5718 Payami 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 . 5719 The 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 . 5720 Another useless recycling of a brutal mid - '70s American sports movie . 5721 Please , someone , stop Eric Schaeffer before he makes another film . 5722 Most of the problems with the film do n't derive from the screenplay , but rather the mediocre performances by most of the actors involved 5723 ... if you 're just in the mood for a fun -- but bad -- movie , you might want to catch Freaks as a matinee . 5724 Curling may be a unique sport but Men with Brooms is distinctly ordinary . 5725 Though the opera itself takes place mostly indoors , Jacquot seems unsure of how to evoke any sort of naturalism on the set . 5726 There 's no getting around the fact that this is Revenge Of The Nerds Revisited -- again . 5727 The effort is sincere and the results are honest , but the film is so bleak that it 's hardly watchable . 5728 Analyze That regurgitates and waters down many of the previous film 's successes , with a few new swings thrown in . 5729 With 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 . 5730 Stinks from start to finish , like a wet burlap sack of gloom . 5731 To the civilized mind , a movie like Ballistic : Ecks Vs. Sever is more of an ordeal than an amusement . 5732 Equlibrium could pass for a thirteen-year-old 's book report on the totalitarian themes of 1984 and Farenheit 451 . 5733 The 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 . 5734 When Seagal appeared in an orange prison jumpsuit , I wanted to stand up in the theater and shout , ` Hey , Kool-Aid ! ' 5735 An easy watch , except for the annoying demeanour of its lead character . 5736 Imagine the CleanFlicks version of ` Love Story , ' with Ali MacGraw 's profanities replaced by romance-novel platitudes . 5737 PC stability notwithstanding , the film suffers from a simplistic narrative and a pat , fairy-tale conclusion . 5738 Forget the misleading title , what 's with the unexplained baboon cameo ? 5739 An odd , haphazard , and inconsequential romantic comedy . 5740 Though her fans will assuredly have their funny bones tickled , others will find their humor-seeking dollars best spent elsewhere . 5741 Pascale Bailly 's rom-com provides Amélie 's Audrey Tautou with another fabuleux destin -- i.e. , a banal spiritual quest . 5742 A static and sugary little half-hour , after-school special about interfaith understanding , stretched out to 90 minutes . 5743 Watching the chemistry between Freeman and Judd , however , almost makes this movie worth seeing . 5744 Almost . 5745 ... a pretentious and ultimately empty examination of a sick and evil woman . 5746 The Country Bears has no scenes that will upset or frighten young viewers . 5747 Unfortunately , there is almost nothing in this flat effort that will amuse or entertain them , either . 5748 The 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 . 5749 Before long , you 're desperate for the evening to end . 5750 The characters are never more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach . 5751 Mattei '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 . 5752 Only in its final surprising shots does Rabbit-Proof Fence find the authority it 's looking for . 5753 Is n't as sharp as the original ... Despite some visual virtues , ` Blade II ' just does n't cut it . 5754 ... plays like a badly edited , 91-minute trailer -LRB- and -RRB- the director ca n't seem to get a coherent rhythm going . 5755 In fact , it does n't even seem like she tried . 5756 Maybe LeBlanc thought , `` Hey , the movie about the baseball-playing monkey was worse . '' 5757 What you expect is just what you get ... assuming the bar of expectations has n't been raised above sixth-grade height . 5758 Barry Sonnenfeld owes Frank the Pug big time 5759 The 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 . 5760 So riddled with unanswered questions that it requires gargantuan leaps of faith just to watch it plod along . 5761 I approached the usher and said that if she had to sit through it again , she should ask for a raise . 5762 If 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 . 5763 Too slow for a younger crowd , too shallow for an older one . 5764 There 's a reason the studio did n't offer an advance screening . 5765 `` The Adventures of Pluto Nash '' is a big time stinker . 5766 A punch line without a premise , a joke built entirely from musty memories of half-dimensional characters . 5767 Takes 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 . 5768 The things this movie tries to get the audience to buy just wo n't fly with most intelligent viewers . 5769 Even 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 . 5770 Sitting through the last reel -LRB- spoiler alert ! -RRB- 5771 is significantly less charming than listening to a four-year-old with a taste for exaggeration recount his Halloween trip to the Haunted House . 5772 Confuses 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 . 5773 Deadly dull , pointless meditation on losers in a gone-to-seed hotel . 5774 With this new Rollerball , sense and sensibility have been overrun by what can only be characterized as robotic sentiment . 5775 One 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 5776 A 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 . 5777 Sex 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 . 5778 But never mind all that ; the boobs are fantasti 5779 The 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 . 5780 A portrait of alienation so perfect , it will certainly succeed in alienating most viewers . 5781 The code talkers deserved better than a hollow tribute . 5782 Skip the film and buy the Philip Glass soundtrack CD . 5783 Feels like a cold old man going through the motions . 5784 Dignified CEO 's meet at a rustic retreat and pee against a tree . 5785 Can you bear the laughter ? 5786 Dull and mechanical , kinda like a very goofy museum exhibit 5787 There '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 . 5788 Beware the quirky Brit-com . 5789 They can and will turn on a dime from oddly humorous to tediously sentimental . 5790 Has its moments -- and almost as many subplots . 5791 The gags , and the script , are a mixed bag . 5792 Completely awful Iranian drama ... as much fun as a grouchy ayatollah in a cold mosque . 5793 Narratively , Trouble Every Day is a plodding mess . 5794 There 's no point in extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance . 5795 Directors 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 . 5796 Adam Sandler 's heart may be in the right place , but he needs to pull his head out of his butt 5797 There '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 . 5798 Despite 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 . 5799 It 's all pretty tame . 5800 The most offensive thing about the movie is that Hollywood expects people to pay to see it . 5801 The movie is a mess from start to finish . 5802 The 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 . 5803 I '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 . 5804 In the telling of a story largely untold , Bui chooses to produce something that is ultimately suspiciously familiar . 5805 The 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 5806 Terminally brain dead production . 5807 Some episodes work , some do n't . 5808 Beautifully filmed and well acted ... but admittedly problematic in its narrative specifics . 5809 J. 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 . 5810 Rymer 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 . 5811 Not 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 . 5812 Wow . 5813 I have not been this disappointed by a movie in a long time . 5814 Off the Hook is overlong and not well-acted , but credit writer-producer-director Adam Watstein with finishing it at all . 5815 It 's a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding . 5816 Watching 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 . 5817 It 's also curious to note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget . 5818 Will probably be one of those movies barely registering a blip on the radar screen of 2002 . 5819 The problem is not that it 's all derivative , because plenty of funny movies recycle old tropes . 5820 The problem is that Van Wilder does little that is actually funny with the material . 5821 There 's nothing interesting in Unfaithful whatsoever . 5822 None of this is half as moving as the filmmakers seem to think . 5823 A processed comedy chop suey . 5824 As 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 . 5825 Fails as a dystopian movie , as a retooling of Fahrenheit 451 , and even as a rip-off of The Matrix . 5826 Full of the kind of obnoxious chitchat that only self-aware neurotics engage in . 5827 An erotic thriller that 's neither too erotic nor very thrilling , either . 5828 The movie , like Bartleby , is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes . 5829 With its parade of almost perpetually wasted characters ... Margarita feels like a hazy high that takes too long to shake . 5830 If you value your time and money , find an escape clause and avoid seeing this trite , predictable rehash . 5831 The 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 . 5832 Everything is pegged into the groove of a New York dating comedy with ` issues ' to simplify . 5833 A dramatic comedy as pleasantly dishonest and pat as any Hollywood fluff . 5834 The 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 . 5835 It 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 . 5836 The 50-something lovebirds are too immature and unappealing to care about . 5837 So 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 . 5838 It never is , not fully . 5839 Even in the summertime , the most restless young audience deserves the dignity of an action hero motivated by something more than franchise possibilities . 5840 What 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 . 5841 As 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 . 5842 Plodding , peevish and gimmicky . 5843 The Four Feathers is definitely horse feathers , but if you go in knowing that , you might have fun in this cinematic sandbox . 5844 Oozes condescension from every pore . 5845 `` Solaris '' is a shapeless inconsequential move relying on the viewer to do most of the work . 5846 The direction , by George Hickenlooper , has no snap to it , no wiseacre crackle or hard-bitten cynicism . 5847 Though this saga would be terrific to read about , it is dicey screen material that only a genius should touch . 5848 It has plenty of laughs . 5849 It just does n't have much else ... especially in a moral sense . 5850 An 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 . 5851 Confusion is one of my least favourite emotions , especially when I have to put up with 146 minutes of it . 5852 -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 . 5853 Occasionally loud and offensive , but more often , it simply lulls you into a gentle waking coma . 5854 it may play well as a double feature with mainstream foreign mush like My Big Fat Greek Wedding 5855 By the time you reach the finale , you 're likely wondering why you 've been watching all this strutting and posturing . 5856 Journalistically dubious , inept and often lethally dull . 5857 Putting 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 . 5858 At its best , it 's Black Hawk Down with more heart . 5859 At its worst , it 's Rambo - meets-John Ford . 5860 Exactly what you 'd expect from a guy named Kaos . 5861 This movie ... does n't deserve the energy it takes to describe how bad it is . 5862 With or without ballast tanks , K-19 sinks to a Harrison Ford low . 5863 Director Oliver Parker labors so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two . 5864 You might be shocked to discover that Seinfeld 's real life is boring . 5865 It '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 . 5866 Walsh ca n't quite negotiate the many inconsistencies in Janice 's behavior or compensate for them by sheer force of charm . 5867 This 10th film in the series looks and feels tired . 5868 It leers , offering next to little insight into its intriguing subject . 5869 I found myself growing more and more frustrated and detached as Vincent became more and more abhorrent . 5870 One of the oddest and most inexplicable sequels in movie history . 5871 There 's nothing to gain from watching They . 5872 It is n't scary . 5873 It hates its characters . 5874 It finds no way to entertain or inspire its viewers . 5875 Fear permeates the whole of Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique . 5876 The skirmishes for power waged among victims and predators settle into an undistinguished rhythm of artificial suspense . 5877 ... 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 . 5878 Though the film is well-intentioned , one could rent the original and get the same love story and parable . 5879 Just too silly and sophomoric to ensnare its target audience . 5880 The 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 . 5881 A cleverly crafted but ultimately hollow mockumentary . 5882 It gets bogged down by hit-and-miss topical humour before getting to the truly good stuff . 5883 An achingly enthralling premise , the film is hindered by uneven dialogue and plot lapses . 5884 It 's Tommy 's job to clean the peep booths surrounding her , and after viewing this one , you 'll feel like mopping up , too . 5885 Rifkin 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 . 5886 Such a bad movie that its luckiest viewers will be seated next to one of those ignorant pinheads who talk throughout the show . 5887 If you go into the theater expecting a scary , action-packed chiller , you might soon be looking for a sign . 5888 An EXIT sign , that is . 5889 Holds limited appeal to those who like explosions , sadism and seeing people beat each other to a pulp . 5890 The dialogue is very choppy and monosyllabic despite the fact that it is being dubbed . 5891 A feature-length , R-rated , road-trip version of Mama 's Family . 5892 What you end up getting is the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between . 5893 Stealing Harvard does n't care about cleverness , wit or any other kind of intelligent humor . 5894 Bigelow 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 . 5895 There '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 . 5896 Imagine 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 . 5897 The result might look like Vulgar . 5898 Suffers from a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer demands . 5899 What soured me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard , it 's icky . 5900 It 's an 88-minute highlight reel that 's 86 minutes too long . 5901 The film favors the scientific over the spectacular -LRB- visually speaking -RRB- . 5902 Such an incomprehensible mess that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema . 5903 With the exception of McCoist , the players do n't have a clue on the park . 5904 The acting is n't much better . 5905 The whole affair is as predictable as can be . 5906 A not-so-Divine Secrets of the Ya-Ya Sisterhood with a hefty helping of Re-Fried Green Tomatoes . 5907 This cloying , voices-from-the-other-side story is hell . 5908 A suffocating rape-payback horror show that hinges on the subgenre 's most enabling victim ... and an ebullient affection for industrial-model meat freezers . 5909 Star Trek was kind of terrific once , but now it is a copy of a copy of a copy . 5910 -LRB- N -RRB- o matter how much good will the actors generate , Showtime eventually folds under its own thinness . 5911 Every potential twist is telegraphed well in advance , every performance respectably muted ; the movie itself seems to have been made under the influence of Rohypnol . 5912 Puts on airs of a Hal Hartley wannabe film -- without the vital comic ingredient of the hilarious writer-director himself . 5913 Ver Wiel 's desperate attempt at wit is lost , leaving the character of Critical Jim two-dimensional and pointless . 5914 Despite 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 5915 Although Disney follows its standard formula in this animated adventure , it feels more forced than usual . 5916 Gaghan ... has thrown every suspenseful cliché in the book at this nonsensical story . 5917 A sham construct based on theory , sleight-of-hand , and ill-wrought hypothesis . 5918 -LRB- P -RRB- artnering Murphy with Robert De Niro for the TV-cops comedy Showtime would seem to be surefire casting . 5919 The catch is that they 're stuck with a script that prevents them from firing on all cylinders . 5920 ` You 'll laugh for not quite and hour and a half , but come out feeling strangely unsatisfied . 5921 You 'll feel like you ate a Reeses without the peanut butter ... ' 5922 Gooding offers a desperately ingratiating performance . 5923 Parker 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 . 5924 The director has injected self-consciousness into the proceedings at every turn . 5925 The results are far more alienating than involving . 5926 Bogdanich is unashamedly pro-Serbian and makes little attempt to give voice to the other side . 5927 A lack of thesis makes Maryam , in the end , play out with the intellectual and emotional impact of an after-school special . 5928 Without Shakespeare 's eloquent language , the update is dreary and sluggish . 5929 If H.G. Wells had a time machine and could take a look at his kin 's reworked version , what would he say ? 5930 ` It looks good , Sonny , but you missed the point . ' 5931 During The Tuxedo 's 90 minutes of screen time , there is n't one true ` Chan moment ' . 5932 Bisset delivers a game performance , but she is unable to save the movie . 5933 Watching Austin Powers in Goldmember is like binging on cotton candy . 5934 It 's sweet and fluffy at the time , but it may leave you feeling a little sticky and unsatisfied . 5935 The most anti-human big studio picture since 3000 Miles to Graceland . 5936 The film can depress you about life itself . 5937 I '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é . 5938 The acting is fine but the script is about as interesting as a recording of conversations at the Wal-Mart checkout line . 5939 Its 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 . 5940 The plot plummets into a comedy graveyard before Janice comes racing to the rescue in the final reel . 5941 Sometimes there are very , very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely . 5942 At 90 minutes this movie is short , but it feels much longer . 5943 Here 's my advice , Kev . 5944 Start reading your scripts before signing that dotted line . 5945 An alternately raucous and sappy ethnic sitcom ... you 'd be wise to send your regrets . 5946 An ugly-duckling tale so hideously and clumsily told it feels accidental . 5947 Unfortunately , it 's also not very good . 5948 Especially compared with the television series that inspired the movie . 5949 It 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 . 5950 Glazed with a tawdry B-movie scum . 5951 This 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 . 5952 It winds up moving in many directions as it searches -LRB- vainly , I think -RRB- for something fresh to say . 5953 All in all , Road to Perdition is more in love with strangeness than excellence . 5954 A big fat pain . 5955 A mimetic approximation of better films like Contempt and 8 1\/2 . 5956 Unintelligible , poorly acted , brain-slappingly bad , Harvard Man is ludicrous enough that it could become a cult classic . 5957 Watching The Powerpuff Girls Movie , my mind kept returning to one anecdote for comparison : the cartoon in Japan that gave people seizures . 5958 An 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 . 5959 To build a feel-good fantasy around a vain dictator-madman is off-putting , to say the least , not to mention inappropriate and wildly undeserved . 5960 With the cheesiest monsters this side of a horror spoof , which They is n't , it is more likely to induce sleep than fright . 5961 Mild , meandering teen flick . 5962 Though its atmosphere is intriguing ... the drama is finally too predictable to leave much of an impression . 5963 Though this rude and crude film does deliver a few gut-busting laughs , its digs at modern society are all things we 've seen before . 5964 Although it tries to be much more , it 's really just another Major League . 5965 Astonishing is n't the word -- neither is incompetent , incoherent or just plain crap . 5966 Indeed , none of these words really gets at the very special type of badness that is Deuces Wild . 5967 One thing is for sure : This movie does not tell you a whole lot about Lily Chou-Chou . 5968 With 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 . 5969 To 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 . 5970 Cuba Gooding Jr. valiantly mugs his way through Snow Dogs , but even his boisterous energy fails to spark this leaden comedy . 5971 Diane Lane 's sophisticated performance ca n't rescue Adrian Lyne 's Unfaithful from its sleazy moralizing . 5972 Not at all clear what it 's trying to say and even if it were -- I doubt it would be all that interesting . 5973 -LRB- Swimfan -RRB- falls victim to sloppy plotting , an insultingly unbelievable final act and a villainess who is too crazy to be interesting . 5974 This 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 . 5975 Silly , loud and goofy . 5976 Why spend $ 9 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby ? 5977 The 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 . 5978 The basic premise is intriguing but quickly becomes distasteful and downright creepy . 5979 The Pool drowned me in boredom . 5980 It 's like an all-star salute to Disney 's cheesy commercialism . 5981 It 's hard to imagine any recent film , independent or otherwise , that makes as much of a mess as this one . 5982 Some 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 . 5983 There 's an excellent 90-minute film here ; unfortunately , it runs for 170 . 5984 As saccharine movies go , this is likely to cause massive cardiac arrest if taken in large doses . 5985 Die 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 . 5986 As 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 . 5987 The mystery of Enigma is how a rich historical subject , combined with so much first-rate talent ... could have yielded such a flat , plodding picture . 5988 It throws quirky characters , odd situations , and off-kilter dialogue at us , all as if to say , `` Look at this ! 5989 This is an interesting movie ! '' 5990 But the film itself is ultimately quite unengaging . 5991 The 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 . 5992 It '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 . 5993 Avary 's film never quite emerges from the shadow of Ellis ' book . 5994 A poorly scripted , preachy fable that forgets about unfolding a coherent , believable story in its zeal to spread propaganda . 5995 While 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 . 5996 Woo 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 ? 5997 It 's sincere to a fault , but , unfortunately , not very compelling or much fun . 5998 ... 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 . 5999 This follow-up seems so similar to the 1953 Disney classic that it makes one long for a geriatric Peter . 6000 Why , you may ask , why should you buy the movie milk when the TV cow is free ? 6001 There 's no good answer to that one . 6002 This 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 . 6003 A muddled limp biscuit of a movie , a vampire soap opera that does n't make much sense even on its own terms . 6004 There 's the plot , and a maddeningly insistent and repetitive piano score that made me want to scream . 6005 This 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 . 6006 This is amusing for about three minutes . 6007 Klein , charming in comedies like American Pie and dead-on in Election , delivers one of the saddest action hero performances ever witnessed . 6008 It 's rare to see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' . 6009 This 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 . 6010 The 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 . 6011 There are few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending . 6012 It wo n't harm anyone , but neither can I think of a very good reason to rush right out and see it . 6013 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 . 6014 Looks 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 . 6015 Given too much time to consider the looseness of the piece , the picture begins to resemble the shapeless , grasping actors ' workshop that it is . 6016 They 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 . 6017 Just because A Walk to Remember is shrewd enough to activate girlish tear ducts does n't mean it 's good enough for our girls . 6018 -LRB- Carvey 's -RRB- characters are both overplayed and exaggerated , but then again , subtlety has never been his trademark . 6019 It '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 . 6020 This 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 . 6021 Brown 's saga , like many before his , makes for snappy prose but a stumblebum of a movie . 6022 The boys ' sparring , like the succession of blows dumped on Guei , wears down the story 's more cerebral , and likable , plot elements . 6023 The script by Vincent R. Nebrida ... tries to cram too many ingredients into one small pot . 6024 The 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 . 6025 Oedekerk mugs mercilessly , and the genuinely funny jokes are few and far between . 6026 Since 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 . 6027 Only those most addicted to film violence in all its forms will find anything here to appreciate . 6028 Cold and scattered , Minority Report commands interest almost solely as an exercise in gorgeous visuals . 6029 That 's not vintage Spielberg and that , finally , is minimally satisfying . 6030 Every now and again , a movie comes along to remind us of how very bad a motion picture can truly be . 6031 Frank McKlusky C.I. is that movie ! 6032 It 's not difficult to spot the culprit early-on in this predictable thriller . 6033 ... a mostly boring affair with a confusing sudden finale that 's likely to irk viewers . 6034 The trappings of I Spy are so familiar you might as well be watching a rerun . 6035 What starts off as a potentially incredibly twisting mystery becomes simply a monster chase film . 6036 In 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 . 6037 It is messy , uncouth , incomprehensible , vicious and absurd . 6038 Really does feel like a short stretched out to feature length . 6039 Hampered -- no , paralyzed -- by a self-indulgent script ... that aims for poetry and ends up sounding like satire . 6040 Cheap , vulgar dialogue and a plot that crawls along at a snail 's pace . 6041 And 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 . 6042 If you are willing to do this , then you so crazy ! 6043 Directed 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 . 6044 It 's a very tasteful rock and roll movie . 6045 You could put it on a coffee table anywhere . 6046 The 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 . 6047 An infuriating film . 6048 Just when you think you are making sense of it , something happens that tells you there is no sense . 6049 The entire movie is so formulaic and forgettable that it 's hardly over before it begins to fade from memory . 6050 The setting turns out to be more interesting than any of the character dramas , which never reach satisfying conclusions . 6051 As an entertainment destination for the general public , Kung Pow sets a new benchmark for lameness . 6052 This misty-eyed Southern nostalgia piece , in treading the line between sappy and sanguine , winds up mired in tear-drenched quicksand . 6053 As pure over-the-top trash , any John Waters movie has it beat by a country mile . 6054 Wendigo wants to be a monster movie for the art-house crowd , but it falls into the trap of pretention almost every time . 6055 Bigelow offers some flashy twists and turns that occasionally fortify this turgid fable . 6056 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 . 6057 This film biggest problem ? 6058 No laughs . 6059 Less-than-compelling documentary of a Yiddish theater clan . 6060 That the Chuck Norris `` grenade gag '' occurs about 7 times during Windtalkers is a good indication of how serious-minded the film is . 6061 Viewers are asked so often to suspend belief that were it not for Holm 's performance , the film would be a total washout . 6062 It '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 . 6063 I 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 ... 6064 Everybody loves a David and Goliath story , and this one is told almost entirely from David 's point of view . 6065 Throw Smoochy from the train ! 6066 Eventually , 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 . 6067 Irwin and his director never come up with an adequate reason why we should pay money for what we can get on television for free . 6068 A light , engaging comedy that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation . 6069 Cedar somewhat defuses this provocative theme by submerging it in a hoary love triangle . 6070 To paraphrase a line from another Dickens ' novel , Nicholas Nickleby is too much like a fragment of an underdone potato . 6071 The 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 . 6072 The 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 . 6073 An extremely unpleasant film . 6074 A movie just for Friday fans , critics be damned . 6075 If you already like this sort of thing , this is that sort of thing all over again . 6076 A sincere but dramatically conflicted gay coming-of-age tale . 6077 Wait for it to hit cable . 6078 Ultimately feels like just one more in the long line of films this year about the business of making movies . 6079 Nothing 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 . 6080 77 minutes of Pokemon may not last 4ever , it just seems like it does . 6081 My only wish is that Celebi could take me back to a time before I saw this movie and I could just skip it . 6082 The one not-so-small problem with Expecting is that the entire exercise has no real point . 6083 A movie you observe , rather than one you enter into . 6084 -LRB- At least -RRB- Moore is a real charmer . 6085 John Carlen 's script is full of unhappy , two-dimensional characters who are anything but compelling . 6086 LaBute 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 . 6087 The 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 . 6088 Stale first act , Scrooge story , blatant product placement , some very good comedic songs , strong finish , dumb fart jokes . 6089 Unsurprisingly , the way this all works out makes the women look more like stereotypical caretakers and moral teachers , instead of serious athletes . 6090 A film that loses sight of its own story . 6091 Adam Sandler 's Eight Crazy Nights grows on you -- like a rash . 6092 The big-screen Scooby makes the silly original cartoon seem smart and well-crafted in comparison . 6093 Few 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 . 6094 Gets better after Foster leaves that little room . 6095 The movie is as padded as Allen 's jelly belly . 6096 Resident Evil is n't a product of its cinematic predecessors so much as an MTV , sugar hysteria , and PlayStation cocktail . 6097 A rather average action film that benefits from several funny moments supplied by Epps . 6098 ... unspeakably , unbearably dull , featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted . 6099 Resembles a soft porn Brian De Palma pastiche . 6100 Bluto Blutarsky , we miss you . 6101 Innocuous enough to make even Jean-Claude Van Damme look good . 6102 It 's a glorified sitcom , and a long , unfunny one at that . 6103 Woody Allen can write and deliver a one liner as well as anybody . 6104 But I had a lot of problems with this movie . 6105 Devoid of any of the qualities that made the first film so special . 6106 All 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 . 6107 Plotless collection of moronic stunts is by far the worst movie of the year . 6108 However sincere it may be , The Rising Place never quite justifies its own existence . 6109 Parker 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 . 6110 It 's sort of a 21st century morality play with a Latino hip hop beat . 6111 But the second half of the movie really goes downhill . 6112 Paxton '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 . 6113 The script becomes lifeless and falls apart like a cheap lawn chair . 6114 The script falls back on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy . 6115 The film starts promisingly , but the ending is all too predictable and far too cliched to really work . 6116 Let 's issue a moratorium , effective immediately , on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate . 6117 It '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 . 6118 Alternately frustrating and rewarding . 6119 It 's impossible to even categorize this as a smutty guilty pleasure . 6120 Despite suffering a sense-of-humour failure , The Man Who Wrote Rocky does not deserve to go down with a ship as leaky as this . 6121 Swinging , the film makes it seem , is not a hobby that attracts the young and fit . 6122 Or intelligent . 6123 The 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 . 6124 See Clockstoppers if you have nothing better to do with 94 minutes . 6125 But be warned , you too may feel time has decided to stand still . 6126 Or that the battery on your watch has died . 6127 Suffers from over-familiarity since hit-hungry British filmmakers have strip-mined the Monty formula mercilessly since 1997 . 6128 There 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 . 6129 Yes , I have given this movie a rating of zero . 6130 But fans of the show should not consider this a diss . 6131 Consider it ` perfection . ' 6132 The cumulative effect of the movie is repulsive and depressing . 6133 Children and adults enamored of all things Pokemon wo n't be disappointed . 6134 I do n't even care that there 's no plot in this Antonio Banderas-Lucy Liu faceoff . 6135 It 's still terrible ! 6136 Children of the Century , though well dressed and well made , ultimately falls prey to the contradiction that afflicts so many movies about writers . 6137 It '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 . 6138 Peralta 's mythmaking could have used some informed , adult hindsight . 6139 A close-to-solid espionage thriller with the misfortune of being released a few decades too late . 6140 Cloaks a familiar anti-feminist equation -LRB- career - kids = misery -RRB- in tiresome romantic-comedy duds . 6141 The Good Girl is a film in which the talent is undeniable but the results are underwhelming . 6142 Just a collection of this and that -- whatever fills time -- with no unified whole . 6143 The 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 . 6144 Only about as sexy and dangerous as an actress in a role that reminds at every turn of Elizabeth Berkley 's flopping dolphin-gasm . 6145 Kids who are into this Thornberry stuff will probably be in wedgie heaven . 6146 Anyone else who may , for whatever reason , be thinking about going to see this movie is hereby given fair warning . 6147 Mr. Soderbergh 's direction and visual style struck me as unusually and unimpressively fussy and pretentious . 6148 Do you say `` hi '' to your lover when you wake up in the morning ? 6149 It 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 6150 Director 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 . 6151 ` Yes , that 's right : it 's Forrest Gump , Angel Of Death . ' 6152 A wildly erratic drama with sequences that make you wince in embarrassment and others , thanks to the actors , that are quite touching . 6153 While 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 . 6154 About as enjoyable , I would imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful . 6155 A generic international version of a typical American horror film . 6156 ... while certainly clever in spots , this too-long , spoofy update of Shakespeare 's Macbeth does n't sustain a high enough level of invention . 6157 Lucas has in fact come closer than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s . 6158 There 's a lot of good material here , but there 's also a lot of redundancy and unsuccessful crudeness accompanying it . 6159 Absurdities and clichés accumulate like lint in a fat man 's navel . 6160 If you think it 's a riot to see Rob Schneider in a young woman 's clothes , then you 'll enjoy The Hot Chick . 6161 The sheer dumbness of the plot -LRB- other than its one good idea -RRB- and the movie 's inescapable air of sleaziness get you down . 6162 Strangely comes off as a kingdom more mild than wild . 6163 The next big thing 's not-so-big -LRB- and not-so-hot -RRB- directorial debut . 6164 Yet 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 ... 6165 Bond-inspired ? 6166 Certainly . 6167 Likely to have decades of life as a classic movie franchise ? 6168 Let 's hope not . 6169 This flat run at a hip-hop Tootsie is so poorly paced you could fit all of Pootie Tang in between its punchlines . 6170 Davis 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 . 6171 Surprisingly , considering that Baird is a former film editor , the movie is rather choppy . 6172 None of this is very original , and it is n't particularly funny . 6173 ... a bland murder-on-campus yawner . 6174 A humorless journey into a philosophical void . 6175 These two are generating about as much chemistry as an Iraqi factory poised to receive a UN inspector . 6176 Just as the lousy Tarantino imitations have subsided , here comes the first lousy Guy Ritchie imitation . 6177 A passable romantic comedy , in need of another couple of passes through the word processor . 6178 The 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 . 6179 shows 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 . 6180 Ultimately ... the movie is too heady for children , and too preachy for adults . 6181 It 's just a little too self-satisfied . 6182 Clever but not especially compelling . 6183 McKay 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 . 6184 A 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 . 6185 LaBute was more fun when his characters were torturing each other psychologically and talking about their genitals in public . 6186 The movie weighs no more than a glass of flat champagne . 6187 The problem with ANTWONE FISHER is that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher . 6188 Alarms for Duvall 's throbbing sincerity and his elderly propensity for patting people while he talks . 6189 What little grace -LRB- Rifkin 's -RRB- tale of precarious skid-row dignity achieves is pushed into the margins by predictable plotting and tiresome histrionics . 6190 Tries 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 . 6191 Unfortunately , Kapur modernizes A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare . 6192 ... what a banal bore the preachy Circuit turns out to be 6193 Falsehoods pile up , undermining the movie 's reality and stifling its creator 's comic voice . 6194 A mechanical action-comedy whose seeming purpose is to market the charismatic Jackie Chan to even younger audiences . 6195 One of the most incoherent features in recent memory . 6196 Low rent from frame one . 6197 Eight Legged Freaks ? 6198 No big hairy deal . 6199 The 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 . 6200 Laggard drama wending its way to an uninspired philosophical epiphany . 6201 The respective charms of Sandra Bullock and Hugh Grant have worn threadbare . 6202 ` This movie sucks . ' 6203 None 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 . 6204 A 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 . 6205 Bad in such a bizarre way that it 's almost worth seeing , if only to witness the crazy confluence of purpose and taste . 6206 There 's more repetition than creativity throughout the movie . 6207 Hugh Grant 's act is so consuming that sometimes it 's difficult to tell who the other actors in the movie are . 6208 Although 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 . 6209 I '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 . 6210 What we get ... is Caddyshack crossed with the Loyal Order of Raccoons . 6211 The jokes are flat , and the action looks fake . 6212 When a movie asks you to feel sorry for Mick Jagger 's sex life , it already has one strike against it . 6213 There 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 . 6214 ... hokey art house pretension . 6215 ... a weak and ineffective ghost story without a conclusion or pay off . 6216 Gussied up with so many distracting special effects and visual party tricks that it 's not clear whether we 're supposed to shriek or laugh . 6217 Plodding , poorly written , murky and weakly acted , the picture feels as if everyone making it lost their movie mojo . 6218 This is a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life . 6219 A 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 . 6220 Soderbergh seems capable only of delivering artfully lighted , earnest inquiries that lack the kind of genuine depth that would make them redeemable . 6221 The only thing that distinguishes a Randall Wallace film from any other is the fact that there is nothing distinguishing in a Randall Wallace film . 6222 Silly stuff , all mixed up together like a term paper from a kid who ca n't quite distinguish one sci-fi work from another . 6223 There is so much plodding sensitivity . 6224 The 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 . 6225 ... too sappy for its own good . 6226 Circuit queens wo n't learn a thing , they 'll be too busy cursing the film 's strategically placed white sheets . 6227 As an actress , Madonna is one helluva singer . 6228 As the Mediterranean sparkles , ` Swept Away ' sinks . 6229 Every so often a film comes along that is so insanely stupid , so awful in so many ways that watching it leaves you giddy . 6230 Half Past Dead is just such an achievement . 6231 Expanded to 65 minutes for theatrical release , it still feels somewhat unfinished . 6232 It all looks and plays like a $ 40 million version of a game you 're more likely to enjoy on a computer . 6233 -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 . 6234 Feels shrill , simple and soapy . 6235 Adults , other than the parents ... will be hard pressed to succumb to the call of the wild . 6236 Brady achieves the remarkable feat of squandering a topnotch foursome of actors ... by shoving them into every clichéd white-trash situation imaginable . 6237 In 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 . 6238 No amount of blood and disintegrating vampire cadavers can obscure this movie 's lack of ideas . 6239 A direct-to-void release , heading nowhere . 6240 Typical 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 . 6241 Below is well below expectations . 6242 At 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 . 6243 ... standard guns versus martial arts cliche with little new added . 6244 Empire ca n't make up its mind whether it wants to be a gangster flick or an art film . 6245 It does n't work as either . 6246 Given the fact that virtually no one is bound to show up at theatres for it , the project should have been made for the tube . 6247 Possession is in the end an honorable , interesting failure . 6248 It falls far short of poetry , but it 's not bad prose . 6249 Jonathan Parker 's Bartleby should have been the be-all-end-all of the modern-office anomie films . 6250 There may have been a good film in `` Trouble Every Day , '' but it is not what is on the screen . 6251 Unfortunately , Carvey 's rubber-face routine is no match for the insipid script he has crafted with Harris Goldberg . 6252 Viewed as a comedy , a romance , a fairy tale , or a drama , there 's nothing remotely triumphant about this motion picture . 6253 There '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 . 6254 The Master of Disguise is funny -- not `` ha ha '' funny , `` dead circus performer '' funny . 6255 And for all the wrong reasons besides . 6256 A zippy 96 minutes of mediocre special effects , hoary dialogue , fluxing accents , and -- worst of all -- silly-looking Morlocks . 6257 A 75-minute sample of puerile rubbish that is listless , witless , and devoid of anything resembling humor . 6258 You leave feeling like you 've endured a long workout without your pulse ever racing . 6259 The waterlogged script plumbs uncharted depths of stupidity , incoherence and sub-sophomoric sexual banter . 6260 With 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 . 6261 It 's the type of stunt the Academy loves : a powerful political message stuffed into an otherwise mediocre film . 6262 In 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 . 6263 So mind-numbingly awful that you hope Britney wo n't do it one more time , as far as movies are concerned . 6264 The images are usually abbreviated in favor of mushy obviousness and telegraphed pathos , particularly where Whitaker 's misfit artist is concerned . 6265 If 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 . 6266 Sets animation back 30 years , musicals back 40 years and Judaism back at least 50 . 6267 Weirdly , 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 . 6268 Might best be enjoyed as a daytime soaper . 6269 eventually arrives at its heart , as simple self-reflection meditation . 6270 A showcase for both the scenic splendor of the mountains and for legendary actor Michel Serrault , the film is less successful on other levels . 6271 Boy oh boy , it 's a howler . 6272 A few pieces of the film buzz and whir ; very little of it actually clicks . 6273 The thing just never gets off the ground . 6274 ... contains very few laughs and even less surprises . 6275 The actors must indeed be good to recite some of this laughable dialogue with a straight face . 6276 Most of the storylines feel like time fillers between surf shots . 6277 The movie is n't horrible , but you can see mediocre cresting on the next wave . 6278 However 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 . 6279 There 's nothing remotely topical or sexy here . 6280 The Tuxedo was n't just bad ; it was , as my friend David Cross would call it , ` Hungry-Man portions of bad ' . 6281 Blue Crush is so prolonged and boring it is n't even close to being the barn-burningly bad movie it promised it would be . 6282 The 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 . 6283 While Van Wilder may not be the worst National Lampoon film , it 's far from being this generation 's Animal House . 6284 So devoid of pleasure or sensuality that it can not even be dubbed hedonistic . 6285 Reeks of rot and hack work from start to finish . 6286 An exhausting family drama about a porcelain empire and just as hard a flick as its subject matter . 6287 Woody Allen has really found his groove these days . 6288 The problem is that it is one that allows him to churn out one mediocre movie after another . 6289 The bland outweighs the nifty , and Cletis Tout never becomes the clever crime comedy it thinks it is . 6290 It 's such a mechanical endeavor -LRB- that -RRB- it never bothers to question why somebody might devote time to see it . 6291 The 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 . 6292 If the predictability of bland comfort food appeals to you , then the film is a pleasant enough dish . 6293 Ultimately , in the history of the Academy , people may be wondering what all that jazz was about `` Chicago '' in 2002 . 6294 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 6295 A seriously bad film with seriously warped logic by writer-director Kurt Wimmer at the screenplay level . 6296 A pleasant and engaging enough sit , but in trying to have the best of both worlds it ends up falling short as a whole . 6297 Its plot and animation offer daytime TV serviceability , but little more . 6298 A tired , unimaginative and derivative variation of that already-shallow genre . 6299 Human Nature , in short , is n't nearly as funny as it thinks it is ; neither is it as smart . 6300 A film with a great premise but only a great premise . 6301 Instead of building to a laugh riot we are left with a handful of disparate funny moments of no real consequence . 6302 Kirshner and Monroe seem to be in a contest to see who can out-bad-act the other . 6303 -LRB- Kirshner wins , but it 's close . -RRB- 6304 A lame romantic comedy about an unsympathetic character and someone who would not likely be so stupid as to get involved with her . 6305 What started out as a taut contest of wills between Bacon and Theron , deteriorates into a protracted and borderline silly chase sequence . 6306 -LRB- Sam 's -RRB- self-flagellation is more depressing than entertaining . 6307 An ugly , pointless , stupid movie . 6308 Simply put , there should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn . 6309 The Master of Disguise represents Adam Sandler 's latest attempt to dumb down the universe . 6310 This is an ungainly movie , ill-fitting , with its elbows sticking out where the knees should be . 6311 Too silly to take seriously . 6312 The 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 . 6313 Everything 's serious , poetic , earnest and -- sadly -- dull . 6314 I like it . 6315 No , I hate it . 6316 No , I love it ... hell , I dunno . 6317 This mess of a movie is nothing short of a travesty of a transvestite comedy . 6318 It 's clotted with heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long . 6319 A fifty car pileup of cliches . 6320 It 's a stale , overused cocktail using the same olives since 1962 as garnish . 6321 Not only is entry number twenty the worst of the Brosnan bunch , it 's one of the worst of the entire franchise . 6322 What ultimately makes Windtalkers a disappointment is the superficial way it deals with its story . 6323 As an actor 's showcase , Hart 's War has much to recommend it , even if the top-billed Willis is not the most impressive player . 6324 As a story of dramatic enlightenment , the screenplay by Billy Ray and Terry George leaves something to be desired . 6325 A 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 . 6326 It 's not hateful . 6327 It 's simply stupid , irrelevant and deeply , truly , bottomlessly cynical . 6328 Possibly not since Grumpy Old Men have I heard a film so solidly connect with one demographic while striking out with another . 6329 The drama was so uninspiring that even a story immersed in love , lust , and sin could n't keep my attention . 6330 A rather tired exercise in nostalgia . 6331 The misery of these people becomes just another voyeuristic spectacle , to be consumed and forgotten . 6332 Some Body often looks like an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments . 6333 Bad 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 . 6334 Predecessors The Mummy and The Mummy Returns stand as intellectual masterpieces next to The Scorpion King . 6335 A markedly inactive film , City is conversational bordering on confessional . 6336 While kids will probably eat the whole thing up , most adults will be way ahead of the plot . 6337 Despite an impressive roster of stars and direction from Kathryn Bigelow , The Weight of Water is oppressively heavy . 6338 We 've liked Klein 's other work but Rollerball left us cold . 6339 They were afraid to show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn . 6340 They were right . 6341 It 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 . 6342 Offers no new insight on the matter , nor do its characters exactly spring to life . 6343 Nohe has made a decent ` intro ' documentary , but he feels like a spectator and not a participant . 6344 Apparently designed as a reverie about memory and regret , but the only thing you 'll regret is remembering the experience of sitting through it . 6345 A 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 . 6346 Guy gets girl , guy loses girl , audience falls asleep . 6347 Too 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 . 6348 Stirs potentially enticing ingredients into an uneasy blend of Ghost and Close Encounters of the Third Kind . 6349 The weird thing about The Santa Clause 2 , purportedly a children 's movie , is that there is nothing in it to engage children emotionally . 6350 It 's pretentious in a way that verges on the amateurish . 6351 Contains the humor , characterization , poignancy , and intelligence of a bad sitcom . 6352 It does n't matter that the film is less than 90 minutes . 6353 It still feels like a prison stretch . 6354 Partly a schmaltzy , by-the-numbers romantic comedy , partly a shallow rumination on the emptiness of success -- and entirely soulless . 6355 Ong 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 . 6356 The overall feel is not unlike watching a glorified episode of `` 7th Heaven . '' 6357 Just a Kiss is a just a waste . 6358 ... 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 . 6359 Frankly , it 's kind of insulting , both to men and women . 6360 And it 's not that funny -- which is just generally insulting . 6361 As if Drop Dead Gorgeous was n't enough , this equally derisive clunker is fixated on the spectacle of small-town competition . 6362 A wretched movie that reduces the Second World War to one man 's quest to find an old flame . 6363 This 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 . 6364 It 's better than mid-range Steven Seagal , but not as sharp as Jet Li on rollerblades . 6365 There 's a reason why halftime is only fifteen minutes long . 6366 The talk-heavy film plays like one of Robert Altman 's lesser works . 6367 As happily glib and vicious as its characters . 6368 One of those films that started with a great premise and then just fell apart . 6369 No 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 . 6370 -LRB- MacDowell -RRB- ventures beyond her abilities several times here and reveals how bad an actress she is . 6371 I 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 . 6372 Talky , artificial and opaque ... an interesting technical exercise , but a tedious picture . 6373 Kurys never shows why , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention . 6374 Almost nothing else -- raunchy and graphic as it may be in presentation -- is one-sided , outwardly sexist or mean-spirited . 6375 And in a sense , that 's a liability . 6376 It 's easy to love Robin Tunney -- she 's pretty and she can act -- but it gets harder and harder to understand her choices . 6377 If 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 . 6378 The new film of Anton Chekhov 's The Cherry Orchard puts the ` ick ' in ` classic . ' 6379 Has 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 . 6380 If I want music , I 'll buy the soundtrack . 6381 If I want a real movie , I 'll buy the Criterion DVD . 6382 An unremarkable , modern action\/comedy buddy movie whose only nod to nostalgia is in the title . 6383 Has all the right elements but completely fails to gel together . 6384 Writer-director Stephen Gaghan has made the near-fatal mistake of being what the English call ` too clever by half . ' 6385 Seagal ran out of movies years ago , and this is just the proof . 6386 The 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 . 6387 An awkwardly garish showcase that diverges from anything remotely probing or penetrating . 6388 The name says it all . 6389 Jackass is a vulgar and cheap-looking version of Candid Camera staged for the Marquis de Sade set . 6390 Children , 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 . 6391 Pleasant but not more than recycled jock piffle . 6392 ... the kind of movie you see because the theater has air conditioning . 6393 With Zoe Clarke-Williams 's lackluster thriller `` New Best Friend '' , who needs enemies ? 6394 Just another generic drama that has nothing going for it other than its exploitive array of obligatory cheap thrills . 6395 Hip-hop prison thriller of stupefying absurdity . 6396 An uneven mix of dark satire and childhood awakening . 6397 aside 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 ' 6398 A perfectly acceptable , perfectly bland , competently acted but by no means scary horror movie . 6399 The 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 . 6400 The problem is the needlessly poor quality of its archival prints and film footage . 6401 The images lack contrast , are murky and are frequently too dark to be decipherable . 6402 Like a soft drink that 's been sitting open too long : it 's too much syrup and not enough fizz . 6403 As 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 . 6404 I have returned from the beyond to warn you : this movie is 90 minutes long , and life is too short . 6405 There are some fairly unsettling scenes , but they never succeed in really rattling the viewer . 6406 The Emperor 's Club is one of those films that possesses all the good intentions in the world , but ... 6407 In 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 . ' 6408 A straight-ahead thriller that never rises above superficiality . 6409 Glizty but formulaic and silly ... Cagney 's ` top of the world ' has been replaced by the bottom of the barrel . 6410 The re - enactments , however fascinating they may be as history , are too crude to serve the work especially well . 6411 Is anyone else out there getting tired of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic ? 6412 Once 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 . 6413 Serving Sara is little more than a mall movie designed to kill time . 6414 Too 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 . 6415 A well-made but emotionally scattered film whose hero gives his heart only to the dog . 6416 The most repugnant adaptation of a classic text since Roland Joffé and Demi Moore 's The Scarlet Letter . 6417 The isolated moments of creative insanity finally are lost in the thin soup of canned humor . 6418 As a movie , it never seems fresh and vital . 6419 It never plays as dramatic even when dramatic things happen to people . 6420 It labours as storytelling . 6421 The Adventures of Pluto Nash is a whole lot of nada . 6422 A really good premise is frittered away in middle-of-the-road blandness . 6423 Lawrence should stick to his day job . 6424 He 's a better actor than a standup comedian . 6425 Despite 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 6426 A well made indieflick in need of some trims and a more chemistry between its stars . 6427 I never thought I 'd say this , but I 'd much rather watch teens poking their genitals into fruit pies ! 6428 A film neither bitter nor sweet , neither romantic nor comedic , neither warm nor fuzzy . 6429 Tiresomely derivative and hammily acted . 6430 We 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 . 6431 The plot grows thin soon , and you find yourself praying for a quick resolution . 6432 Too bad Maggio could n't come up with a better script . 6433 Much of the cast is stiff or just plain bad . 6434 Rice 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 . 6435 At best , Cletis Tout might inspire a trip to the video store -- in search of a better movie experience . 6436 Witless , pointless , tasteless and idiotic . 6437 Not really a thriller so much as a movie for teens to laugh , groan and hiss at . 6438 As plain and pedestrian as catsup -- 6439 An improvement on the feeble examples of big-screen Poke-mania that have preceded it . 6440 I 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 . 6441 Your stomach for Heaven depends largely on your appetite for canned corn . 6442 A picture as erratic as its central character . 6443 Whatever 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 . 6444 It 's petty thievery like this that puts flimsy flicks like this behind bars 6445 The package in which this fascinating -- and timely -- content comes wrapped is disappointingly generic . 6446 Guys say mean things and shoot a lot of bullets . 6447 Some 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 . 6448 Wildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists : Totally Past His Prime . 6449 Just another combination of bad animation and mindless violence ... lacking the slightest bit of wit or charm . 6450 All 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 . 6451 Much like its easily dismissive take on the upscale lifestyle , there is n't much there here . 6452 The film ultimately offers nothing more than people in an urban jungle needing other people to survive ... 6453 For 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 . 6454 This 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 . 6455 A bit too eager to please . 6456 You 'd be hard put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- . 6457 Kapur 's contradictory feelings about his material result in a movie that works against itself . 6458 `` the road paved with good intentions leads to the video store '' 6459 Animated drivel meant to enhance the self-image of drooling idiots . 6460 One scene after another in this supposedly funny movie falls to the floor with a sickening thud . 6461 ` The Château is never quite able to overcome the cultural moat surrounding its ludicrous and contrived plot . ' 6462 Meyjes focuses too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the - making . 6463 Jacobi , 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 . 6464 Crudup 's screen presence is the one thing that holds interest in the midst of a mushy , existential exploration of why men leave their families . 6465 There 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 . 6466 Despite 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 . 6467 An incredibly narrow in-joke targeted to the tiniest segment of an already obscure demographic . 6468 The only thing I laughed at were the people who paid to see it . 6469 All of the elements are in place for a great film noir , but director George Hickenlooper 's approach to the material is too upbeat . 6470 The hackneyed story about an affluent damsel in distress who decides to fight her bully of a husband is simply too overdone . 6471 the phone rings and a voice tells you you 've got seven days left to live . 6472 Then 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 . 6473 O.K. , not really . 6474 Possibly the most irresponsible picture ever released by a major film studio . 6475 The film 's overall mood and focus is interesting but constantly unfulfilling . 6476 ... a cheap , ludicrous attempt at serious horror . 6477 Those of you who are not an eighth grade girl will most likely doze off during this one . 6478 Befuddled in its characterizations as it begins to seem as long as the two year affair which is its subject 6479 From beginning to end , this overheated melodrama plays like a student film . 6480 The movie would seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine . 6481 It 's just not very smart . 6482 Like 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 . 6483 Imagine -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 . 6484 In trying to be daring and original , it comes off as only occasionally satirical and never fresh . 6485 90 punitive minutes of eardrum-dicing gunplay , screeching-metal smashups , and flaccid odd-couple sniping . 6486 Sadly , 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 . 6487 Never capitalizes on this concept and opts for the breezy and amateurish feel of an after school special on the subject of tolerance . 6488 After 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 . 6489 This wretchedly unfunny wannabe comedy is inane and awful - no doubt , it 's the worst movie I 've seen this summer . 6490 It 's drab . 6491 It 's uninteresting . 6492 It squanders Chan 's uniqueness ; it could even be said to squander Jennifer Love Hewitt ! 6493 The movie keeps coming back to the achingly unfunny Phonce and his several silly subplots . 6494 This tale has been told and retold ; the races and rackets change , but the song remains the same . 6495 A surprisingly flat retread , hobbled by half-baked setups and sluggish pacing . 6496 Forget 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 . 6497 A film that should be relegated to a dark video store corner is somehow making its way instead to theaters . 6498 It 's hard to imagine acting that could be any flatter . 6499 New ways of describing badness need to be invented to describe exactly how bad it is . 6500 Lots of effort and intelligence are on display but in execution it is all awkward , static , and lifeless rumblings . 6501 When 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 . 6502 I suspect that there are more interesting ways of dealing with the subject . 6503 The 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 . 6504 An unintentional parody of every teen movie made in the last five years . 6505 Only for young children , if them . 6506 Their parents would do well to cram earplugs in their ears and put pillowcases over their heads for 87 minutes . 6507 For all its violence , the movie is remarkably dull with only Caine making much of an impression . 6508 No matter how firmly director John Stainton has his tongue in his cheek , the fact remains that a wacky concept does not a movie make . 6509 A sub-formulaic slap in the face to seasonal cheer . 6510 The action is reasonably well-done ... yet story , character and comedy bits are too ragged to ever fit smoothly together . 6511 Several uninteresting , unlikeable people do bad things to and with each other in `` Unfaithful . '' 6512 Why anyone who is not a character in this movie should care is beyond me . 6513 Hill looks to be going through the motions , beginning with the pale script . 6514 Howard conjures the past via surrealist flourishes so overwrought you 'd swear he just stepped out of a Buñuel retrospective . 6515 The best thing that can be said of the picture is that it does have a few cute moments . 6516 It 's not a bad premise , just a bad movie . 6517 An already thin story boils down to surviving invaders seeking an existent anti-virus . 6518 If only there were one for this kind of movie . 6519 By the time the surprise ending is revealed , interest can not be revived . 6520 The 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 . 6521 A peculiar misfire that even Tunney ca n't save . 6522 Watching Queen of the Damned is like reading a research paper , with special effects tossed in . 6523 I ca n't remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops . 6524 Too much of Nemesis has a tired , talky feel . 6525 I felt trapped and with no obvious escape for the entire 100 minutes . 6526 When Mr. Hundert tells us in his narration that ` this is a story without surprises , ' we nod in agreement . 6527 Leaves us wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion . 6528 It is that rare combination of bad writing , bad direction and bad acting -- the trifecta of badness . 6529 Each scene wreaks of routine ; the film never manages to generate a single threat of suspense . 6530 A soulless jumble of ineptly assembled cliches and pabulum that plays like a 95-minute commercial for NBA properties . 6531 Borstal Boy represents the worst kind of filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy . 6532 The 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 . 6533 works on the whodunit level as its larger themes get lost in the murk of its own making 6534 Crush could be the worst film a man has made about women since Valley of the Dolls . 6535 4Ever has the same sledgehammer appeal as Pokemon videos , but it breathes more on the big screen and induces headaches more slowly . 6536 Feels 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 . 6537 Trailer 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 . 6538 Viewers of Barney 's crushingly self-indulgent spectacle will see nothing in it to match the ordeal of sitting through it . 6539 ... its stupidities wind up sticking in one 's mind a lot more than the cool bits . 6540 Sayles ... once again strands his superb performers in the same old story . 6541 The Piano Teacher , like its title character , is repellantly out of control . 6542 I have to admit I walked out of Runteldat . 6543 I did go back and check out the last 10 minutes , but these were more repulsive than the first 30 or 40 minutes . 6544 The filmmakers lack the nerve ... to fully exploit the script 's potential for sick humor . 6545 The film was n't preachy , but it was feminism by the book . 6546 ... the same tired old gags , modernized for the extreme sports generation . 6547 There 's already been too many of these films ... 6548 Several of Steven Soderbergh 's earlier films were hailed as the works of an artist . 6549 Sadly , Full Frontal plays like the work of a dilettante . 6550 Clockstoppers is one of those crazy , mixed-up films that does n't know what it wants to be when it grows up . 6551 Although bright , well-acted and thought-provoking , Tuck Everlasting suffers from a laconic pace and a lack of traditional action . 6552 ` The War of the Roses , ' trailer-trash style . 6553 Entertaining but like shooting fish in a barrel . 6554 Supposedly , Pokemon ca n't be killed , but Pokemon 4Ever practically assures that the pocket monster movie franchise is nearly ready to keel over . 6555 White has n't developed characters so much as caricatures , one-dimensional buffoons that get him a few laughs but nothing else . 6556 When you resurrect a dead man , Hard Copy should come a-knocking , no ? 6557 Cattaneo should have followed the runaway success of his first film , The Full Monty , with something different . 6558 The 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 . 6559 This overproduced piece of dreck is shockingly bad and absolutely unnecessary . 6560 Hmmm ... might I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener ? 6561 The 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 . 6562 Mr. Deeds is not really a film as much as it is a loose collection of not-so-funny gags , scattered moments of lazy humor . 6563 How this one escaped the Lifetime network I 'll never know . 6564 Could n't someone take Rob Schneider and have him switch bodies with a funny person ? 6565 One 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 . 6566 For all its brilliant touches , Dragon loses its fire midway , nearly flickering out by its perfunctory conclusion . 6567 I have to admit that I am baffled by Jason X. 6568 A mean-spirited film made by someone who surely read The Catcher in the Rye but clearly suffers from dyslexia 6569 Instead 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 . 6570 This is a film living far too much in its own head . 6571 The umpteenth summer skinny dip in Jerry Bruckheimer 's putrid pond of retread action twaddle . 6572 National Lampoon 's Van Wilder may aim to be the next Animal House , but it more closely resembles this year 's version of Tomcats . 6573 The film thrusts the inchoate but already eldritch Christian Right propaganda machine into national media circles . 6574 Dogtown is hollow , self-indulgent , and - worst of all - boring . 6575 A movie so bad that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls . 6576 More of a career curio than a major work . 6577 It '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 . 6578 Cox is far more concerned with aggrandizing madness , not the man , and the results might drive you crazy . 6579 To be influenced chiefly by humanity 's greatest shame , reality shows -- reality shows for God 's sake ! 6580 -- is a crime that should be punishable by chainsaw . 6581 As 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 . ' 6582 The filmmakers might want to look it up . 6583 A frustrating ` tweener ' -- too slick , contrived and exploitative for the art houses and too cynical , small and decadent for the malls . 6584 What 's surprising about this traditional thriller , moderately successful but not completely satisfying , is exactly how genteel and unsurprising the execution turns out to be . 6585 Drowning 's too good for this sucker . 6586 An instantly forgettable snow-and-stuntwork extravaganza that likely will be upstaged by an avalanche of more appealing holiday-season product . 6587 Frankly , it 's pretty stupid . 6588 I had more fun with Ben Stiller 's Zoolander , which I thought was rather clever . 6589 But there 's plenty to offend everyone ... 6590 Love Liza is a festival film that would have been better off staying on the festival circuit . 6591 There are things to like about Murder By Numbers -- but , in the end , the disparate elements do n't gel . 6592 ... 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 . 6593 Quite 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 . 6594 My precious new Star Wars movie is a lumbering , wheezy drag ... 6595 The innocence of holiday cheer ai n't what it used to be . 6596 Too 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 . 6597 Horrid little propaganda film with fascinating connections not only to the Serbs themselves but also to a network of American right-wing extremists . 6598 Should have gone straight to video . 6599 It 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 . 6600 It 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 . 6601 Consider 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 . 6602 A 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 . 6603 Sheridan had a wonderful account to work from , but , curiously , he waters it down , turning grit and vulnerability into light reading . 6604 Heavy with flabby rolls of typical Toback machinations . 6605 It is very difficult to care about the character , and that is the central flaw of the film . 6606 Snow Dogs finds its humour in a black man getting humiliated by a pack of dogs who are smarter than him 6607 Whole stretches of the film may be incomprehensible to moviegoers not already clad in basic black . 6608 Reggio and Glass so rhapsodize cynicism , with repetition and languorous slo-mo sequences , that Glass 's dirgelike score becomes a fang-baring lullaby . 6609 Ends up offering nothing more than the latest Schwarzenegger or Stallone flick would . 6610 The 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 . 6611 Charlize CHASES Kevin with a GUN . 6612 Courtney CHASES Stuart with a CELL PHONE . 6613 The sound of GUNFIRE and cell phones RINGING . 6614 If The Tuxedo actually were a suit , it would fit Chan like a $ 99 bargain-basement special . 6615 Parents beware ; this is downright movie penance . 6616 ... 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 . 6617 Has 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 . 6618 A pathetically inane and unimaginative cross between XXX and Vertical Limit . 6619 Impeccably filmed , sexually charged , but ultimately lacking in substance , not to mention dragged down by a leaden closing act . 6620 Feels at times like a giant commercial for Universal Studios , where much of the action takes place . 6621 While the mystery unravels , the characters respond by hitting on each other . 6622 Britney Spears ' phoniness is nothing compared to the movie 's contrived , lame screenplay and listless direction . 6623 Every sequel you skip will be two hours gained . 6624 Consider this review life-affirming . 6625 If the movie were all comedy , it might work better . 6626 But it has an ambition to say something about its subjects , but not a willingness . 6627 The movie , while beautiful , feels labored , with a hint of the writing exercise about it . 6628 Twenty-three movies into a mostly magnificent directorial career , Clint Eastwood 's efficiently minimalist style finally has failed him . 6629 Big time . 6630 This 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 . 6631 It should have stayed there . 6632 The film has a childlike quality about it . 6633 But the feelings evoked in the film are lukewarm and quick to pass . 6634 The most opaque , self-indulgent and just plain goofy an excuse for a movie as you can imagine . 6635 It 's not a film to be taken literally on any level , but its focus always appears questionable . 6636 Big Fat Liar is little more than Home Alone raised to a new , self-deprecating level . 6637 The movie is gorgeously made , but it is also somewhat shallow and art-conscious . 6638 The only time 8 Crazy Nights comes close to hitting a comedic or satirical target is during the offbeat musical numbers . 6639 Loses its sense of humor in a vat of failed jokes , twitchy acting , and general boorishness . 6640 There 's a delightfully quirky movie to be made from curling , but Brooms is n't it . 6641 The story suffers a severe case of oversimplification , superficiality and silliness . 6642 Chamber of Secrets will find millions of eager fans . 6643 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 . 6644 Too clever by about nine-tenths . 6645 Has 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 . 6646 Bears about as much resemblance to the experiences of most battered women as Spider-Man does to the experiences of most teenagers . 6647 Toward the end Sum of All Fears morphs into a mundane '70s disaster flick . 6648 Director Carl Franklin , so crisp and economical in One False Move , bogs down in genre cliches here . 6649 Mendes still does n't quite know how to fill a frame . 6650 Like the Hanks character , he 's a slow study : The action is stilted and the tabloid energy embalmed . 6651 This thing is just garbage . 6652 As crimes go , writer-director Michael Kalesniko 's How to Kill Your Neighbor 's Dog is slight but unendurable . 6653 There must be an audience that enjoys the Friday series , but I would n't be interested in knowing any of them personally . 6654 A bold -LRB- and lovely -RRB- experiment that will almost certainly bore most audiences into their own brightly colored dreams . 6655 An uplifting , largely bogus story . 6656 An empty exercise , a florid but ultimately vapid crime melodrama with lots of surface flash but little emotional resonance . 6657 If 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 . 6658 My own minority report is that it stinks . 6659 Trying 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 . 6660 The script is high on squaddie banter , low on shocks . 6661 ... 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 . 6662 While Solondz tries and tries hard , Storytelling fails to provide much more insight than the inside column of a torn book jacket . 6663 With 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 . 6664 -LRB- Davis -RRB- wants to cause his audience an epiphany , yet he refuses to give us real situations and characters . 6665 Without a fresh infusion of creativity , 4Ever is neither a promise nor a threat so much as wishful thinking . 6666 ... unlike -LRB- Scorsese 's Mean Streets -RRB- , Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot . 6667 Being unique does n't necessarily equate to being good , no matter how admirably the filmmakers have gone for broke . 6668 A few hours after you 've seen it , you forget you 've been to the movies . 6669 waydowntown 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 . 6670 Yes , 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 . 6671 Shadyac , who belongs with the damned for perpetrating Patch Adams , trots out every ghost trick from The Sixth Sense to The Mothman Prophecies . 6672 The photographer 's show-don ` t-tell stance is admirable , but it can make him a problematic documentary subject . 6673 It 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 . 6674 I 'd be hard pressed to think of a film more cloyingly sappy than Evelyn this year . 6675 Nothing more than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises . 6676 meanders between its powerful moments . 6677 What 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 . 6678 A backhanded ode to female camaraderie penned by a man who has little clue about either the nature of women or of friendship . 6679 Pure of intention and passably diverting , His Secret Life is light , innocuous and unremarkable . 6680 ... delivers few moments of inspiration amid the bland animation and simplistic story . 6681 Take away the controversy , and it 's not much more watchable than a Mexican soap opera . 6682 It 's got the brawn , but not the brains . 6683 Mindless and boring martial arts and gunplay with too little excitement and zero compelling storyline . 6684 A lot of talent is wasted in this crass , low-wattage endeavor . 6685 To 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 . 6686 -LRB- T -RRB- oo many of these gross out scenes ... 6687 About one in three gags in White 's intermittently wise script hits its mark ; the rest are padding unashamedly appropriated from the teen-exploitation playbook . 6688 Little is done to support the premise other than fling gags at it to see which ones shtick . 6689 Reno 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 . 6690 If Jews were Catholics , this would be Catechism 6691 One of those films that seems tailor made to air on pay cable to offer some modest amusements when one has nothing else to watch . 6692 The big ending surprise almost saves the movie . 6693 It 's too bad that the rest is n't more compelling . 6694 Charming , if overly complicated ... 6695 Schneider 's mugging is relentless and his constant need to suddenly transpose himself into another character undermines the story 's continuity and progression . 6696 All 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 . 6697 It 's probably not easy to make such a worthless film ... 6698 Hope 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 . 6699 Has no reason to exist , other than to employ Hollywood kids and people who owe favors to their famous parents . 6700 For 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 . 6701 Constantly slips from the grasp of its maker . 6702 Smothered by its own solemnity . 6703 ` 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 . ' 6704 Might be one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people . 6705 After 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 . 6706 Not one moment in the enterprise did n't make me want to lie down in a dark room with something cool to my brow . 6707 In the era of The Sopranos , it feels painfully redundant and inauthentic . 6708 The overall vibe is druggy and self-indulgent , like a spring-break orgy for pretentious arts majors . 6709 Breen 's script is sketchy with actorish notations on the margin of acting . 6710 There '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 . 6711 If only Merchant paid more attention the story . 6712 At 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 . 6713 ... too contrived to be as naturally charming as it needs to be . 6714 A simpler , leaner treatment would have been preferable ; after all , being about nothing is sometimes funnier than being about something . 6715 The characters are based on stock clichés , and the attempt to complicate the story only defies credibility . 6716 Everything about it from the bland songs to the colorful but flat drawings is completely serviceable and quickly forgettable . 6717 Not the Great American Comedy , but if you liked the previous movies in the series , you 'll have a good time with this one too . 6718 A domestic melodrama with weak dialogue and biopic cliches . 6719 Mr. Goyer 's loose , unaccountable direction is technically sophisticated in the worst way . 6720 The movie is so thoughtlessly assembled . 6721 Benigni presents himself as the boy puppet Pinocchio , complete with receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice . 6722 plays like some corny television production from a bygone era 6723 The end result is like cold porridge with only the odd enjoyably chewy lump . 6724 For all the charm of Kevin Kline and a story that puts old-fashioned values under the microscope , there 's something creepy about this movie . 6725 I 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 . 6726 Producer 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 . '' 6727 Ignoring that , he made Swimfan anyway 6728 Naipaul fans may be disappointed . 6729 Those who are not acquainted with the author 's work , on the other hand , may fall fast asleep . 6730 Hoffman 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 . 6731 If you 're a Crocodile Hunter fan , you 'll enjoy at least the `` real '' portions of the film . 6732 If you 're looking for a story , do n't bother . 6733 Full Frontal had no effect and elicited no sympathies for any of the characters . 6734 By that measure , it is a failure . 6735 A baffling mixed platter of gritty realism and magic realism with a hard-to-swallow premise . 6736 An affable but undernourished romantic comedy that fails to match the freshness of the actress-producer and writer 's previous collaboration , Miss Congeniality . 6737 Sometimes this modest little number clicks , and sometimes it does n't . 6738 Like a pack of dynamite sticks , built for controversy . 6739 The film is explosive , but a few of those sticks are wet . 6740 Has its charming quirks and its dull spots . 6741 An admitted egomaniac , Evans is no Hollywood villain , and yet this grating showcase almost makes you wish he 'd gone the way of Don Simpson . 6742 The 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 . 6743 Everyone 's to blame here . 6744 You 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 . 6745 Less a study in madness or love than a study in schoolgirl obsession . 6746 Rice never clearly defines his characters or gives us a reason to care about them . 6747 It '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 . 6748 A slight and obvious effort , even for one whose target demographic is likely still in the single digits , age-wise . 6749 Sex With Strangers will shock many with its unblinking frankness . 6750 But what is missing from it all is a moral . 6751 What is the filmmakers ' point ? 6752 Why did they deem it necessary to document all this emotional misery ? 6753 You see Robin Williams and psycho killer , and you think , hmmmmm . 6754 You see the movie and you think , zzzzzzzzz . 6755 Downright 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 . 6756 The movie slides downhill as soon as macho action conventions assert themselves . 6757 Formulaic to the 51st power , more like . 6758 Draggin ' about dragons 6759 Howard 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 . 6760 A respectable but uninspired thriller that 's intelligent and considered in its details , but ultimately weak in its impact . 6761 Jones helps breathe some life into the insubstantial plot , but even he is overwhelmed by predictability . 6762 The movie just has too much on its plate to really stay afloat for its just under ninety minute running time . 6763 Comes off more like a misdemeanor , a flat , unconvincing drama that never catches fire . 6764 Offers absolutely nothing I had n't already seen . 6765 `` 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 . 6766 You might say Tykwer has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible . 6767 Suffice to say its total promise is left slightly unfulfilled . 6768 Complex , sinuously plotted and , somehow , off-puttingly cold . 6769 First-time writer-director Dylan Kidd also has a good ear for dialogue , and the characters sound like real people . 6770 ... 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 . 6771 Goldmember 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 . 6772 Could as easily have been called ` Under Siege 3 : In Alcatraz ' ... a cinematic corpse that never springs to life . 6773 In comparison to his earlier films it seems a disappointingly thin slice of lower-class London life ; despite the title ... amounts to surprisingly little . 6774 Lame Sweet Home leaves no Southern stereotype unturned . 6775 Slow , dry , poorly cast , but beautifully shot . 6776 The jokes are sophomoric , stereotypes are sprinkled everywhere and the acting ranges from bad to bodacious . 6777 Will give many ministers and Bible-study groups hours of material to discuss . 6778 But mainstream audiences will find little of interest in this film , which is often preachy and poorly acted . 6779 In its chicken heart , Crush goes to absurd lengths to duck the very issues it raises . 6780 This long and relentlessly saccharine film is a clear case of preaching to the converted . 6781 The film is flat . 6782 The movie is a lumbering load of hokum but ... it 's at least watchable . 6783 It '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 . 6784 An unbelievably stupid film , though occasionally fun enough to make you forget its absurdity . 6785 The first Fatal Attraction was vile enough . 6786 Do we really need the Tiger Beat version ? 6787 This Bond film goes off the beaten path , not necessarily for the better . 6788 The problem is that the movie has no idea of it is serious or not . 6789 When the fire burns out , we 've only come face-to-face with a couple dragons and that 's where the film ultimately fails . 6790 It would work much better as a one-hour TV documentary . 6791 The elements were all there but lack of a pyschological center knocks it flat . 6792 Anemic chronicle of money grubbing New Yorkers and their serial loveless hook ups . 6793 Simply does n't have sufficient heft to justify its two-hour running time . 6794 An unsuccessful attempt at a movie of ideas . 6795 Queen 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 . 6796 This toothless Dog , already on cable , loses all bite on the big screen . 6797 It made me feel unclean , and I 'm the guy who liked There 's Something About Mary and both American Pie movies . 6798 Oh , and Booty Call . 6799 Not 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 . 6800 It 's so crammed with scenes and vistas and pretty moments that it 's left a few crucial things out , like character development and coherence . 6801 Serving Sara should be served an eviction notice at every theater stuck with it . 6802 Director 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 . 6803 A loud , low-budget and tired formula film that arrives cloaked in the euphemism ` urban drama . ' 6804 The 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 . 6805 A pathetic exploitation film that tries to seem sincere , and just seems worse for the effort . 6806 At some point , all this visual trickery stops being clever and devolves into flashy , vaguely silly overkill . 6807 Despite some charm and heart , this quirky soccer import is forgettable 6808 Meyjes 's movie , like Max Rothman 's future , does not work . 6809 What 's needed so badly but what is virtually absent here is either a saving dark humor or the feel of poetic tragedy . 6810 Schneidermeister ... Makin ' a fool of himself ... Losin ' his fan base ... 6811 An ambitious , serious film that manages to do virtually everything wrong ; sitting through it is something akin to an act of cinematic penance . 6812 Not once does it come close to being exciting . 6813 A Frankenstein mishmash that careens from dark satire to cartoonish slapstick , Bartleby performs neither one very well . 6814 It plays like a big-budget , after-school special with a generous cast , who at times lift the material from its well-meaning clunkiness . 6815 There 's something not entirely convincing about The Quiet American . 6816 And that holds true for both the movie and the title character played by Brendan Fraser . 6817 One of those strained caper movies that 's hardly any fun to watch and begins to vaporize from your memory minutes after it ends . 6818 Needed a little less bling-bling and a lot more romance . 6819 The 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 . 6820 It 's hard to believe these jokers are supposed to have pulled off four similar kidnappings before . 6821 I 'm not exactly sure what this movie thinks it is about . 6822 Cal is an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes . 6823 So brisk is Wang 's pacing that none of the excellent cast are given air to breathe . 6824 The bottom line , at least in my opinion , is Imposter makes a better short story than it does a film . 6825 Some elements of it really blow the big one , but other parts are decent . 6826 It is just too bad the film 's story does not live up to its style . 6827 Unless you 're a fanatic , the best advice is : ` Scooby ' do n't . 6828 A cautionary tale about the folly of superficiality that is itself endlessly superficial . 6829 For single digits kidlets Stuart Little 2 is still a no brainer . 6830 If you 're looking to rekindle the magic of the first film , you 'll need a stronger stomach than us . 6831 Shreve '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 . 6832 Contains 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 . 6833 Nothing 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 . 6834 This 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 . 6835 The movie is undone by a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads . 6836 A jumbled fantasy comedy that did not figure out a coherent game plan at scripting , shooting or post-production stages . 6837 A 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 . 6838 Personal Velocity ought to be exploring these women 's inner lives , but it never moves beyond their surfaces . 6839 We hate -LRB- Madonna -RRB- within the film 's first five minutes , and she lacks the skill or presence to regain any ground . 6840 Sounding 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 . 6841 Two big things are missing -- anything approaching a visceral kick , and anything approaching even a vague reason to sit through it all . 6842 A fascinating but choppy documentary . 6843 Scarcely worth a mention apart from reporting on the number of tumbleweeds blowing through the empty theatres graced with its company . 6844 The doofus-on - the-loose banter of Welcome to Collinwood has a cocky , after-hours loopiness to it . 6845 And as with most late-night bull sessions , eventually the content is n't nearly as captivating as the rowdy participants think it is . 6846 Too stagey , talky -- and long -- for its own good . 6847 Apparently reassembled from the cutting-room floor of any given daytime soap . 6848 The sinister inspiration that fuelled DeVito 's early work is confused in Death to Smoochy into something both ugly and mindless . 6849 Despite 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 . 6850 Director Boris von Sychowski instead opts for a routine slasher film that was probably more fun to make than it is to sit through . 6851 ... little more than a well-acted television melodrama shot for the big screen . 6852 Never comes together as a coherent whole . 6853 An 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 . 6854 First , for a movie that tries to be smart , it 's kinda dumb . 6855 And second , what 's with all the shooting ? 6856 Do n't even bother to rent this on video . 6857 There 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 . 6858 This is the kind of movie that gets a quick release before real contenders arrive in September . 6859 Not 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 . 6860 Plays like one long , meandering sketch inspired by the works of John Waters and Todd Solondz , rather than a fully developed story . 6861 The 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 . 6862 A mawkish self-parody that plays like some weird Masterpiece Theater sketch with neither a point of view nor a compelling reason for being . 6863 An average B-movie with no aspirations to be anything more . 6864 Bartlett '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 . 6865 Gibney and Jarecki just want to string the bastard up . 6866 The plot is plastered with one Hollywood cliche after another , most of which involve precocious kids getting the better of obnoxious adults . 6867 Less 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 . 6868 A film that suffers because of its many excesses . 6869 Too bland and fustily tasteful to be truly prurient . 6870 In any case , I would recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris . 6871 But even then , I 'd recommend waiting for DVD and just skipping straight to her scenes . 6872 Depicts the sorriest and most sordid of human behavior on the screen , then laughs at how clever it 's being . 6873 Nijinsky says , ' I know how to suffer ' and if you see this film you 'll know too . 6874 ` 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 6875 The 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 . 6876 ... the story simply putters along looking for astute observations and coming up blank . 6877 Instead 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 ? 6878 It just did n't mean much to me and played too skewed to ever get a hold on -LRB- or be entertained by -RRB- . 6879 This action-thriller\/dark comedy is one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage . 6880 MIB 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 . 6881 That 's because relatively nothing happens . 6882 No amount of arty theorizing -- the special effects are ` German-Expressionist , ' according to the press notes -- can render it anything but laughable . 6883 Blue Crush follows the formula , but throws in too many conflicts to keep the story compelling . 6884 Boyd '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 . 6885 There 's not a spark of new inspiration in it , just more of the same , done with noticeably less energy and imagination . 6886 Jackson shamefully strolls through this mess with a smug grin , inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder . 6887 A moving picture that does not move . 6888 Ruh-roh ! 6889 Romething 's really wrong with this ricture ! 6890 Its salient points are simultaneously buried , drowned and smothered in the excesses of writer-director Roger Avary . 6891 I 'm not sure these words have ever been together in the same sentence : This erotic cannibal movie is boring . 6892 ` God help us , but Capra and Cooper are rolling over in their graves . ' 6893 ... an hour-and-a-half of inoffensive , unmemorable filler . 6894 Is it a comedy ? 6895 A drama ? 6896 A romance ? 6897 A cartoon ? 6898 Ze movie starts out so funny , then she is nothing . 6899 Did the film inform and educate me ? 6900 Yes . 6901 Did it move me to care about what happened in 1915 Armenia ? 6902 No. . 6903 And that is where Ararat went astray . 6904 It 's a bad sign in a thriller when you instantly know whodunit . 6905 Has a customarily jovial air but a deficit of flim-flam inventiveness . 6906 Eight Legged Freaks wo n't join the pantheon of great monster\/science fiction flicks that we have come to love ... 6907 It gets the details of its time frame right but it completely misses its emotions . 6908 Who , exactly , is fighting whom here ? 6909 Ah , yes , that would be me : fighting off the urge to doze . 6910 A 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 . 6911 Contrived , 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 . 6912 Starts 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 . 6913 The film lapses too often into sugary sentiment and withholds delivery on the pell-mell pyrotechnics its punchy style promises . 6914 The only question ... is to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering . 6915 Average , at best , I 'm afraid . 6916 This movie is so bad , that it 's almost worth seeing because it 's so bad . 6917 A crisply made movie that is no more than mildly amusing . 6918 This movie feel more like a non-stop cry for attention , than an attempt at any kind of satisfying entertainment . 6919 Overall , it 's a pretty mediocre family film . 6920 Love may have been in the air onscreen , but I certainly was n't feeling any of it . 6921 In addition to the overcooked , ham-fisted direction , which has all the actors reaching for the back row , the dialogue sounds like horrible poetry . 6922 The very definition of what critics have come to term an `` ambitious failure . '' 6923 It 's as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese . 6924 The 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 . 6925 Worthy of the gong . 6926 While certainly more naturalistic than its Australian counterpart , Amari 's film falls short in building the drama of Lilia 's journey . 6927 I found the movie as divided against itself as the dysfunctional family it portrays . 6928 The soul-searching deliberateness of the film , although leavened nicely with dry absurdist wit , eventually becomes too heavy for the plot . 6929 The movie does n't add anything fresh to the myth . 6930 As inept as big-screen remakes of The Avengers and The Wild Wild West . 6931 Comes across as a relic from a bygone era , and its convolutions ... feel silly rather than plausible . 6932 Moves in such odd plot directions and descends into such message-mongering moralism that its good qualities are obscured . 6933 It 's a very sincere work , but it would be better as a diary or documentary . 6934 Once 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 . 6935 Oops , she 's really done it this time . 6936 That chirpy songbird Britney Spears has popped up with more mindless drivel . 6937 It 's a loathsome movie , it really is and it makes absolutely no sense . 6938 A chiller resolutely without chills . 6939 For 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 . 6940 The director mostly plays it straight , turning Leys ' fable into a listless climb down the social ladder . 6941 `` Bad '' is the operative word for `` Bad Company , '' and I do n't mean that in a good way . 6942 Though Frida is easier to swallow than Julie Taymor 's preposterous Titus , the eye candy here lacks considerable brio . 6943 Drumline is -- the mere suggestion , albeit a visually compelling one , of a fully realized story . 6944 The whole movie is simply a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well . 6945 The 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 . 6946 Billy Crystal and Robert De Niro sleepwalk through vulgarities in a sequel you can refuse . 6947 It 's loud and boring ; watching it is like being trapped at a bad rock concert . 6948 Merely -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 . 6949 If you want a movie time trip , the 1960 version is a far smoother ride . 6950 Traffics in the kind of prechewed racial clichés that have already been through the corporate stand-up-comedy mill . 6951 The story is -- forgive me -- a little thin , and the filmmaking clumsy and rushed . 6952 ... grows decidedly flimsier with its many out-sized , out of character and logically porous action set pieces . 6953 I wish Windtalkers had had more faith in the dramatic potential of this true story . 6954 This would have been better than the fiction it has concocted , and there still could have been room for the war scenes . 6955 Aggressive self-glorification and a manipulative whitewash . 6956 Stay for the credits and see a devastating comic impersonation by Dustin Hoffman that is revelatory . 6957 None of the characters or plot-lines are fleshed-out enough to build any interest . 6958 As social exposé , Skins has its heart in the right place , but that 's not much to hang a soap opera on . 6959 The 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 . 6960 There '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 . 6961 The only way to tolerate this insipid , brutally clueless film might be with a large dose of painkillers . 6962 This one is certainly well-meaning , but it 's also simple-minded and contrived . 6963 Coppola has made a film of intoxicating atmosphere and little else . 6964 Bad and baffling from the get-go . 6965 A series of immaculately composed shots of Patch Adams quietly freaking out does not make for much of a movie . 6966 At a time when we 've learned the hard way just how complex international terrorism is , Collateral Damage paints an absurdly simplistic picture . 6967 The impulses that produced this project ... are commendable , but the results are uneven . 6968 A well-acted movie that simply does n't gel . 6969 Like a can of 2-day old Coke . 6970 You can taste it , but there 's no fizz . 6971 There 's no excuse for following up a delightful , well-crafted family film with a computer-generated cold fish . 6972 Both the crime story and the love story are unusual . 6973 But they do n't fit well together and neither is well told . 6974 It 's both sitcomishly predictable and cloying in its attempts to be poignant . 6975 Other than a mildly engaging central romance , Hospital is sickly entertainment at best and mind-destroying cinematic pollution at worst . 6976 Jaglom offers the none-too-original premise that everyone involved with moviemaking is a con artist and a liar . 6977 Outside of Burger 's desire to make some kind of film , it 's really unclear why this project was undertaken 6978 Was I scared ? 6979 Only at the prospect of Beck 's next project . 6980 Let 's see , a haunted house , a haunted ship , what 's next ... Ghost Blimp ? 6981 A fragile framework upon which to hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming . 6982 By 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 . 6983 Since Lee is a sentimentalist , the film is more worshipful than your random E ! 6984 True Hollywood Story . 6985 Wes 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 . ' 6986 Sunshine State surveys the landscape and assesses the issues with a clear passion for sociology . 6987 But the cinematography is cloudy , the picture making becalmed . 6988 It 's one long bore . 6989 It gets old quickly . 6990 Watch Barbershop again if you 're in need of a Cube fix -- this is n't worth sitting through . 6991 It 's leaden and predictable , and laughs are lacking . 6992 ... a cinematic disaster so inadvertently sidesplitting it 's worth the price of admission for the ridicule factor alone . 6993 Skip this dreck , rent Animal House and go back to the source . 6994 The movie is a desperate miscalculation . 6995 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 . 6996 We just do n't really care too much about this love story . 6997 In that setting , their struggle is simply too ludicrous and borderline insulting . 6998 The Transporter bombards the viewer with so many explosions and side snap kicks that it ends up being surprisingly dull . 6999 Uzumaki 's interesting social parallel and defiant aesthetic seems a prostituted muse ... 7000 ` Men in Black II creates a new threat for the MIB , but recycles the same premise . 7001 Large 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 . 7002 But this time , the old MIB label stands for Milder Is n't Better . 7003 Feels familiar and tired . 7004 A retread of material already thoroughly plumbed by Martin Scorsese . 7005 Instead of making his own style , director Marcus Adams just copies from various sources -- good sources , bad mixture 7006 Criminal 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 . 7007 A bore that tends to hammer home every one of its points . 7008 A story which fails to rise above its disgusting source material . 7009 It 's fitting that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland . 7010 Starts as an intense political and psychological thriller but is sabotaged by ticking time bombs and other Hollywood-action cliches . 7011 Completely creatively stillborn and executed in a manner that I 'm not sure could be a single iota worse ... a soulless hunk of exploitative garbage . 7012 An 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 . 7013 Horrible . 7014 The disjointed mess flows as naturally as Jolie 's hideous yellow ` do . 7015 Bolstered 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 . 7016 An authentically vague , but ultimately purposeless , study in total pandemonium . 7017 Makes a joke out of car chases for an hour and then gives us half an hour of car chases . 7018 As 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 . 7019 The 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 . 7020 It 's too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience . 7021 ` Synthetic ' is the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree . 7022 It concentrates far too much on the awkward interplay and utter lack of chemistry between Chan and Hewitt . 7023 Impostor 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 . 7024 Judd 's characters ought to pick up the durable best seller Smart Women , Foolish Choices for advice . 7025 The script has less spice than a rat burger and The Rock 's fighting skills are more in line with Steven Seagal . 7026 This ill-conceived and expensive project winds up looking like a bunch of talented thesps slumming it . 7027 ... there 's a choppy , surface-effect feeling to the whole enterprise . 7028 Does n't get the job done , running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez . 7029 A particularly joyless , and exceedingly dull , period coming-of-age tale . 7030 It 's impossible to indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant . 7031 ... it was n't the subject matter that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second , did I miss something ? '' 7032 ending . 7033 This is a movie where the most notable observation is how long you 've been sitting still . 7034 Poor editing , bad bluescreen , and ultra-cheesy dialogue highlight the radical action . 7035 It 's super - violent , super-serious and super-stupid . 7036 So earnest and well-meaning , and so stocked with talent , that you almost forget the sheer , ponderous awfulness of its script . 7037 Just a string of stale gags , with no good inside dope , and no particular bite . 7038 It 's Splash without the jokes . 7039 The Château would have been benefited from a sharper , cleaner script before it went in front of the camera . 7040 Not to mention a sharper , cleaner camera lens . 7041 Shallow , noisy and pretentious . 7042 Morrissette has performed a difficult task indeed - he 's taken one of the world 's most fascinating stories and made it dull , lifeless , and irritating . 7043 Granddad of Le Nouvelle Vague , Jean-Luc Godard continues to baffle the faithful with his games of hide-and-seek . 7044 This loud and thoroughly obnoxious comedy about a pair of squabbling working-class spouses is a deeply unpleasant experience . 7045 It 's better than The Phantom Menace . 7046 But unless you 're an absolute raving Star Wars junkie , it is n't much fun . 7047 Philosophically , intellectually and logistically a mess . 7048 A standard police-oriented drama that , were it not for De Niro 's participation , would have likely wound up a TNT Original . 7049 Coupling disgracefully written dialogue with flailing bodily movements that substitute for acting , Circuit is the awkwardly paced soap opera-ish story . 7050 Hollywood Ending just is n't very funny . 7051 Though clearly well-intentioned , this cross-cultural soap opera is painfully formulaic and stilted . 7052 A technical triumph and an extraordinary bore . 7053 I can easily imagine Benigni 's Pinocchio becoming a Christmas perennial . 7054 Coal 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 . 7055 Two hours of junk . 7056 Ends 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 . 7057 Self-congratulatory , misguided , and ill-informed , if nonetheless compulsively watchable . 7058 A clumsily manufactured exploitation flick , a style-free exercise in manipulation and mayhem . 7059 The whole affair , true story or not , feels incredibly hokey ... -LRB- it -RRB- comes off like a Hallmark commercial . 7060 What 's missing is what we call the ` wow ' factor . 7061 The 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 . 7062 ... 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 ... 7063 The young stars are too cute ; the story and ensuing complications are too manipulative ; the message is too blatant ; the resolutions are too convenient . 7064 Normally , 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 . 7065 I highly recommend Irwin , but not in the way this film showcases him . 7066 It '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 . 7067 This 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 . 7068 Malone does have a gift for generating nightmarish images that will be hard to burn out of your brain . 7069 But the movie 's narrative hook is way too muddled to be an effectively chilling guilty pleasure . 7070 Though 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 . 7071 A Blair Witch - style adventure that plays like a bad soap opera , with passable performances from everyone in the cast . 7072 Diaz wears out her welcome in her most charmless performance 7073 It is too bad that this likable movie is n't more accomplished . 7074 The actors try hard but come off too amateurish and awkward . 7075 The plot has a number of holes , and at times it 's simply baffling . 7076 An ill-conceived jumble that 's not scary , not smart and not engaging . 7077 Brainless , 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 . 7078 Gets bogged down by an overly sillified plot and stop-and-start pacing . 7079 `` 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 . 7080 Like 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 . 7081 Its generic villains lack any intrigue -LRB- other than their funny accents -RRB- and the action scenes are poorly delivered . 7082 Dripping with cliche and bypassing no opportunity to trivialize the material . 7083 Hard-core slasher aficionados will find things to like ... but overall the Halloween series has lost its edge . 7084 Stiff and schmaltzy and clumsily directed . 7085 The story the movie tells is of Brian De Palma 's addiction to the junk-calorie suspense tropes that have all but ruined his career . 7086 Too many improbabilities and rose-colored situations temper what could 've been an impacting film . 7087 Generic slasher-movie nonsense , but it 's not without style . 7088 With tiny little jokes and nary an original idea , this sappy ethnic sleeper proves that not only blockbusters pollute the summer movie pool . 7089 It sticks rigidly to the paradigm , rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived , well-worn situations . 7090 Ever see one of those comedies that just seem like a bad idea from frame one ? 7091 Once 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 . 7092 The best drug addition movies are usually depressing but rewarding . 7093 Quitting , however , manages just to be depressing , as the lead actor phones in his autobiographical performance . 7094 It would be great to see this turd squashed under a truck , preferably a semi . 7095 In the end , all you can do is admire the ensemble players and wonder what the point of it is . 7096 For most movies , 84 minutes is short , but this one feels like a life sentence . 7097 While 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 . 7098 Shatner is probably the funniest person in the film , which gives you an idea just how bad it was . 7099 Tries so hard to be quirky and funny that the strain is all too evident . 7100 As immaculate as Stuart Little 2 is , it could be a lot better if it were , well , more adventurous . 7101 Simply a re-hash of the other seven films . 7102 With jump cuts , fast editing and lots of pyrotechnics , Yu clearly hopes to camouflage how bad his movie is . 7103 He fails . 7104 I found myself more appreciative of what the director was trying to do than of what he had actually done . 7105 A very depressing movie of many missed opportunities . 7106 Goes on and on to the point of nausea . 7107 By turns numbingly dull-witted and disquietingly creepy . 7108 Boy , has this franchise ever run out of gas . 7109 One problem with the movie , directed by Joel Schumacher , is that it jams too many prefabricated story elements into the running time . 7110 The comedy is nonexistent . 7111 ... a bland , pretentious mess . 7112 It 's a pedestrian , flat drama that screams out ` amateur ' in almost every frame . 7113 A bland animated sequel that hardly seems worth the effort . 7114 It 's not just the vampires that are damned in Queen of the Damned -- the viewers will feel they suffer the same fate . 7115 If religious films are n't your bailiwick , stay away . 7116 Otherwise , this could be a passable date film . 7117 This 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 . 7118 The pace and the visuals are so hyped up that a curious sense of menace informs everything . 7119 Stuffy , full of itself , morally ambiguous and nothing to shout about . 7120 It 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 . 7121 Do n't let the subtitles fool you ; the movie only proves that Hollywood no longer has a monopoly on mindless action . 7122 Chai 's structure and pacing are disconcertingly slack . 7123 To be oblivious to the existence of this film would be very sweet indeed . 7124 The director , with his fake backdrops and stately pacing , never settles on a consistent tone . 7125 One just waits grimly for the next shock without developing much attachment to the characters . 7126 Instead of panoramic sweep , Kapur gives us episodic choppiness , undermining the story 's emotional thrust . 7127 The 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 . 7128 This 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 . 7129 The movie does n't think much of its characters , its protagonist , or of us . 7130 Super 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 . 7131 ... will always be remembered for the 9-11 terrorist attacks . 7132 After seeing the film , I can tell you that there 's no other reason why anyone should bother remembering it . 7133 Made me feel uneasy , even queasy , because -LRB- Solondz 's -RRB- cool compassion is on the border of bemused contempt . 7134 As a kind of colorful , dramatized PBS program , Frida gets the job done . 7135 But , for that , why not watch a documentary ? 7136 With minimal imagination , you could restage the whole thing in your bathtub . 7137 Nights 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 . 7138 Although ... visually striking and slickly staged , it 's also cold , grey , antiseptic and emotionally desiccated . 7139 You can see where Big Bad Love is trying to go , but it never quite gets there . 7140 Friday After Next is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans . 7141 It 's not as awful as some of the recent Hollywood trip tripe ... but it 's far from a groundbreaking endeavor . 7142 The only thing `` swept away '' is the one hour and thirty-three minutes spent watching this waste of time . 7143 One-sided documentary offers simplistic explanations to a very complex situation . 7144 ... Stylistically , the movie is a disaster . 7145 The corpse count ultimately overrides what little we learn along the way about vicarious redemption . 7146 As violent , profane and exploitative as the most offensive action flick you 've ever seen . 7147 Egoyan '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 . 7148 Life or Something Like It has its share of high points , but it misses too many opportunities . 7149 This is a truly , truly bad movie . 7150 Despite bearing the Paramount imprint , it 's a bargain-basement European pickup . 7151 What 's hard to understand is why anybody picked it up . 7152 Wiser souls would have tactfully pretended not to see it and left it lying there 7153 Believability was n't one of the film 's virtues . 7154 Sewer rats could watch this movie and be so skeeved out that they 'd need a shower . 7155 The Santa Clause 2 's plot may sound like it was co-written by Mattel executives and lobbyists for the tinsel industry . 7156 His best film remains his shortest , The Hole , which makes many of the points that this film does but feels less repetitive . 7157 Just another disjointed , fairly predictable psychological thriller . 7158 ... stumbles over every cheap trick in the book trying to make the outrage come even easier . 7159 Even the hastily and amateurishly drawn animation can not engage . 7160 Kung 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 . 7161 Busy urban comedy is clearly not Zhang 's forte , his directorial touch is neither light nor magical enough to bring off this kind of whimsy . 7162 Not completely loveable -- but what underdog movie since The Bad News Bears has been ? 7163 -- but certainly hard to hate . 7164 A movie that ca n't get sufficient distance from Leroy 's delusions to escape their maudlin influence . 7165 It 's Young Guns meets Goodfellas in this easily skippable hayseeds-vs . 7166 - greaseballs mob action-comedy . 7167 Louiso 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 . 7168 The movie straddles the fence between escapism and social commentary , and on both sides it falls short . 7169 The film is old-fashioned , occasionally charming and as subtle as boldface . 7170 Ca n't get enough of libidinous young city dwellers ? 7171 Try this obscenely bad dark comedy , so crass that it makes Edward Burns ' Sidewalks of New York look like Oscar Wilde . 7172 In The New Guy , even the bull gets recycled . 7173 Largely , this is a movie that also does it by the numbers . 7174 On top of a foundering performance , -LRB- Madonna 's -RRB- denied her own athleticism by lighting that emphasizes every line and sag . 7175 This is the first full scale WWII flick from Hong Kong 's John Woo . 7176 He 's not good with people . 7177 Patchy combination of soap opera , low-tech magic realism and , at times , ploddingly sociological commentary . 7178 -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 . 7179 So boring that even its target audience talked all the way through it . 7180 One 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 . 7181 Hollywood Ending is the most disappointing Woody Allen movie ever . 7182 He has a great cast and a great idea . 7183 But the execution is a flop with the exception of about six gags that really work . 7184 ... generically , forgettably pleasant from start to finish . 7185 It 's just hard to believe that a life like this can sound so dull . 7186 When not wallowing in its characters ' frustrations , the movie is busy contriving false , sitcom-worthy solutions to their problems . 7187 An overstylized , puréed mélange of sex , psychology , drugs and philosophy . 7188 Sometimes entertaining , sometimes indulgent -- but never less than pure wankery . 7189 ` Lovely and Amazing , ' unhappily , is neither ... excessively strained and contrived . 7190 Ringu is a disaster of a story , full of holes and completely lacking in chills . 7191 Ignore the reputation , and ignore the film . 7192 This 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 . 7193 ` It 's painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama . ' 7194 A plodding teen remake that 's so mechanical you can smell the grease on the plot twists . 7195 Trying 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 . 7196 Even in terms of the low-grade cheese standards on which it operates , it never quite makes the grade as tawdry trash . 7197 Amidst 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 . '' 7198 Rife with nutty cliches and far too much dialogue . 7199 It 's a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit . 7200 ... one big laugh , three or four mild giggles , and a whole lot of not much else . 7201 Too intensely focused on the travails of being Hal Hartley to function as pastiche , No Such Thing is Hartley 's least accessible screed yet . 7202 Kenneth 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 . 7203 Director 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 . 7204 Ms. Phoenix is completely lacking in charm and charisma , and is unable to project either Esther 's initial anomie or her eventual awakening . 7205 The movie fails to portray its literarily talented and notorious subject as anything much more than a dirty old man . 7206 A clichéd and shallow cautionary tale about the hard-partying lives of gay men . 7207 The fetid underbelly of fame has never looked uglier . 7208 A little weak -- and it is n't that funny . 7209 While it is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion , Lan Yu never catches dramatic fire . 7210 The script boasts some tart TV-insider humor , but the film has not a trace of humanity or empathy . 7211 Despite the pyrotechnics , Narc is strictly by the book . 7212 In both the writing and cutting , it does not achieve the kind of dramatic unity that transports you . 7213 You end up simply admiring this bit or that , this performance or that . 7214 Cacoyannis is perhaps too effective in creating an atmosphere of dust-caked stagnation and labored gentility . 7215 Worth seeing once , but its charm quickly fades . 7216 The original was n't a good movie but this remake makes it look like a masterpiece ! 7217 One suspects that Craven endorses They simply because this movie makes his own look much better by comparison . 7218 Gere gives a good performance in a film that does n't merit it . 7219 Your appreciation of it will depend on what experiences you bring to it and what associations you choose to make . 7220 Includes too much obvious padding . 7221 There '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 . 7222 I '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 . 7223 Do n't expect any subtlety from this latest entry in the increasingly threadbare gross-out comedy cycle . 7224 The 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 . 7225 Shot like a postcard and overacted with all the boozy self-indulgence that brings out the worst in otherwise talented actors ... 7226 Spain 's greatest star wattage does n't overcome the tumult of maudlin tragedy . 7227 Conforms itself with creating a game of ` who 's who ' ... where the characters ' moves are often more predictable than their consequences . 7228 Looks and feels like a low-budget hybrid of Scarface or Carlito 's Way . 7229 The script is a tired one , with few moments of joy rising above the stale material . 7230 Suffers from all the excesses of the genre . 7231 The verdict : Two bodies and hardly a laugh between them . 7232 The latest Adam Sandler assault and possibly the worst film of the year . 7233 Downbeat , period-perfect biopic hammers home a heavy-handed moralistic message . 7234 While 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 . 7235 They ought to be a whole lot scarier than they are in this tepid genre offering . 7236 It 's harmless , diverting fluff . 7237 But it 's hard to imagine a more generic effort in the genre . 7238 It 's just plain lurid when it is n't downright silly . 7239 Comedy troupe Broken Lizard 's first movie is very funny but too concerned with giving us a plot . 7240 Pap invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God in the fifth Trek flick . 7241 A 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 . 7242 It 's a film with an idea buried somewhere inside its fabric , but never clearly seen or felt . 7243 ` All in all , Reign of Fire will be a good -LRB- successful -RRB- rental . ' 7244 Occasionally funny , sometimes inspiring , often boring . 7245 A movie in which two not very absorbing characters are engaged in a romance you ca n't wait to see end . 7246 The predominantly amateur cast is painful to watch , so stilted and unconvincing are the performances . 7247 Who are ` they ' ? 7248 Well , they 're ` they ' . 7249 They 're the unnamed , easily substitutable forces that serve as whatever terror the heroes of horror movies try to avoid . 7250 They exist for hushed lines like `` They 're back ! '' 7251 , `` They 're out there ! '' 7252 and `` They 're coming ! '' 7253 Elegantly crafted but emotionally cold , a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level . 7254 Were 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 . ' 7255 The story has its redundancies , and the young actors , not very experienced , are sometimes inexpressive . 7256 I 'm sure the filmmaker would disagree , but , honestly , I do n't see the point . 7257 It 's a visual Rorschach test and I must have failed . 7258 The film is really closer to porn than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture . 7259 Murder by Numbers just does n't add up . 7260 Clare Peploe 's airless movie adaptation could use a little American Pie-like irreverence . 7261 Video games are more involving than this mess . 7262 Clayburgh and Tambor are charming performers ; neither of them deserves Eric Schaeffer . 7263 A pale Xerox of other , better crime movies . 7264 ... a hokey piece of nonsense that tries too hard to be emotional . 7265 Illiterate , often inert sci-fi action thriller . 7266 A perfect example of rancid , well-intentioned , but shamelessly manipulative movie making . 7267 The adventure does n't contain half the excitement of Balto , or quarter the fun of Toy Story 2 . 7268 Essentially a collection of bits -- and they 're all naughty . 7269 A mess . 7270 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 . 7271 The screenplay by James Eric , James Horton and director Peter O'Fallon ... is so pat it makes your teeth hurt . 7272 Before 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 . 7273 Solaris is rigid and evasive in ways that Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and `` Ocean 's Eleven , '' never were . 7274 Seems like something American and European gay movies were doing 20 years ago . 7275 In 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 . 7276 You can see the would-be surprises coming a mile away , and the execution of these twists is delivered with a hammer . 7277 Thumbs down . 7278 The 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 . 7279 ... del Toro maintains a dark mood that makes the film seem like something to endure instead of enjoy . 7280 The movie eventually snaps under the strain of its plot contrivances and its need to reassure . 7281 The real question this movie poses is not ` Who ? ' 7282 but ` Why ? ' 7283 Now here 's a sadistic bike flick that would have made Vittorio De Sica proud . 7284 A movie that 's about as overbearing and over-the-top as the family it depicts . 7285 A movie in which laughter and self-exploitation merge into jolly soft-porn 'em powerment . ' 7286 Occasionally interesting but essentially unpersuasive , a footnote to a still evolving story . 7287 If 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 ? 7288 Moretti plays Giovanni , a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy . 7289 Too predictably , in fact . 7290 Alternative medicine obviously has its merits ... but Ayurveda does the field no favors . 7291 This thing works on no level whatsoever for me . 7292 It follows the basic plot trajectory of nearly every Schwarzenegger film : Someone crosses Arnie . 7293 Arnie blows things up . 7294 Ice Age posits a heretofore unfathomable question : Is it possible for computer-generated characters to go through the motions ? 7295 An incoherent jumble of a film that 's rarely as entertaining as it could have been . 7296 ... they missed the boat . 7297 More dutiful than enchanting ... terribly episodic and lacking the spark of imagination that might have made it an exhilarating treat . 7298 Laconic 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 . 7299 The comedy Death to Smoochy is a rancorous curiosity : a movie without an apparent audience . 7300 Barney '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 . 7301 Affleck merely creates an outline for a role he still needs to grow into , a role that Ford effortlessly filled with authority . 7302 Cinematic pyrotechnics aside , the only thing Avary seems to care about are mean giggles and pulchritude . 7303 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 . 7304 The 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 . 7305 Nothing more or less than an outright bodice-ripper -- it should have ditched the artsy pretensions and revelled in the entertaining shallows . 7306 A living testament to the power of the eccentric and the strange . 7307 The fact that it is n't very good is almost beside the point . 7308 Feels less like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series . 7309 What might have been acceptable on the printed page of Iles ' book does not translate well to the screen . 7310 If 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 . 7311 A poky and pseudo-serious exercise in sham actor workshops and an affected malaise . 7312 Mediocre fable from Burkina Faso . 7313 Fessenden has nurtured his metaphors at the expense of his narrative , but he does display an original talent . 7314 Since the movie is based on a Nicholas Sparks best seller , you know death is lurking around the corner , just waiting to spoil things . 7315 Bottom-rung New Jack City wannabe . 7316 Fincher takes no apparent joy in making movies , and he gives none to the audience . 7317 It 's mildly amusing , but I certainly ca n't recommend it . 7318 Nicholas Nickleby celebrates the human spirit with such unrelenting Dickensian decency that it turned me -LRB- horrors ! -RRB- 7319 into Scrooge . 7320 Fear Dot Com is more frustrating than a modem that disconnects every 10 seconds . 7321 Full of flatulence jokes and mild sexual references , Kung Pow ! 7322 is the kind of movie that 's critic-proof , simply because it aims so low . 7323 May cause you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists . 7324 There are just too many characters saying too many clever things and getting into too many pointless situations . 7325 Where 's the movie here ? 7326 A dark , dull thriller with a parting shot that misfires . 7327 Lacking substance and soul , Crossroads comes up shorter than Britney 's cutoffs . 7328 Cassavetes 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 . 7329 Buries 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 . 7330 Although 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 . 7331 It 's so badly made on every level that I 'm actually having a hard time believing people were paid to make it . 7332 Without non-stop techno or the existential overtones of a Kieslowski morality tale , Maelström is just another Winter Sleepers . 7333 Nicks , seemingly uncertain what 's going to make people laugh , runs the gamut from stale parody to raunchy sex gags to formula romantic comedy . 7334 ` A ' for creativity but comes across more as a sketch for a full-length comedy . 7335 If 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 . 7336 The script kicks in , and Mr. Hartley 's distended pace and foot-dragging rhythms follow . 7337 -LRB- E -RRB- ventually , every idea in this film is flushed down the latrine of heroism . 7338 I am sorry that I was unable to get the full brunt of the comedy . 7339 No telegraphing is too obvious or simplistic for this movie . 7340 Looks and feels like a project better suited for the small screen . 7341 In its best moments , resembles a bad high school production of Grease , without benefit of song . 7342 Indifferently implausible popcorn programmer of a movie . 7343 It '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 . 7344 His comedy premises are often hackneyed or just plain crude , calculated to provoke shocked laughter , without following up on a deeper level . 7345 Christina Ricci comedy about sympathy , hypocrisy and love is a misfire . 7346 At 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 . 7347 They should have called it Gutterball . 7348 Thekids will probably stay amused at the kaleidoscope of big , colorful characters . 7349 Mom and Dad can catch some quality naptime along the way . 7350 It 's too self-important and plodding to be funny , and too clipped and abbreviated to be an epic . 7351 The 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 . 7352 Less dizzying than just dizzy , the jaunt is practically over before it begins . 7353 Slick piece of cross-promotion . 7354 Taylor appears to have blown his entire budget on soundtrack rights and had nothing left over for jokes . 7355 It believes it 's revealing some great human truths , when , in reality , it 's churning ground that has long passed the point of being fertile . 7356 It all drags on so interminably it 's like watching a miserable relationship unfold in real time . 7357 Villeneuve spends too much time wallowing in Bibi 's generic angst -LRB- there are a lot of shots of her gazing out windows -RRB- . 7358 -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 . 7359 It 's another video movie photographed like a film , with the bad lighting that 's often written off as indie film naturalism . 7360 The 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 . 7361 I got a headache watching this meaningless downer . 7362 Apart from dazzling cinematography , we 've seen just about everything in Blue Crush in one form or the other . 7363 Too much of the humor falls flat . 7364 Detox is ultimately a pointless endeavor . 7365 Van 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 . 7366 The piquant story needs more dramatic meat on its bones . 7367 Very 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 . 7368 The 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 . 7369 No way I can believe this load of junk . 7370 `` Roger Michell -LRB- '' Notting Hill `` -RRB- directs a morality thriller . '' 7371 It 's dumb , but more importantly , it 's just not scary . 7372 There is no pleasure in watching a child suffer . 7373 Just embarrassment and a vague sense of shame . 7374 The movie 's accumulated force still feels like an ugly knot tightening in your stomach . 7375 But is that knot from dramatic tension or a symptom of artistic malnutrition ? 7376 Even with a green Mohawk and a sheet of fire-red flame tattoos covering his shoulder , however , Kilmer seems to be posing , rather than acting . 7377 And that leaves a hole in the center of The Salton Sea . 7378 There 's just no currency in deriding James Bond for being a clichéd , doddering , misogynistic boy 's club . 7379 When the film ended , I felt tired and drained and wanted to lie on my own deathbed for a while . 7380 Full of witless jokes , dealing in broad stereotypes and outrageously unbelievable scenarios , and saddled with a general air of misogyny 7381 The film 's hackneyed message is not helped by the thin characterizations , nonexistent plot and pretentious visual style . 7382 The Iditarod lasts for days - this just felt like it did . 7383 It 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 . 7384 This movie is maddening . 7385 It conveys a simple message in a visual style that is willfully overwrought . 7386 Should have been someone else - 7387 The 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 . 7388 Why make a documentary about these marginal historical figures ? 7389 Would n't one about their famous dad , author of Death in Venice , etc. , be more valuable ? 7390 The lower your expectations , the more you 'll enjoy it . 7391 Rarely has leukemia looked so shimmering and benign . 7392 ... is an arthritic attempt at directing by Callie Khouri . 7393 I had to look away - this was god awful . 7394 Even in this less-than-magic kingdom , Reese rules . 7395 Velocity represents everything wrong with '' independent film '' as a commodified , sold-out concept on the American filmmaking scene . 7396 Just one bad idea after another . 7397 Because of an unnecessary and clumsy last scene , ` Swimfan ' left me with a very bad feeling . 7398 Though 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 . 7399 A movie that hovers somewhere between an acute character study and a trite power struggle . 7400 Corpus Collosum -- while undeniably interesting -- wore out its welcome well before the end credits rolled about 45 minutes in . 7401 The 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 7402 It '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 . 7403 A by-the-numbers effort that wo n't do much to enhance the franchise . 7404 Involves two mysteries -- one it gives away and the other featuring such badly drawn characters that its outcome hardly matters . 7405 Overall the film feels like a low-budget TV pilot that could not find a buyer to play it on the tube . 7406 It 's of the quality of a lesser Harrison Ford movie - Six Days , Seven Nights , maybe , or that dreadful Sabrina remake . 7407 It appears that something has been lost in the translation to the screen . 7408 Despite 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 . 7409 An unclassifiably awful study in self - and audience-abuse . 7410 This movie is something of an impostor itself , stretching and padding its material in a blur of dead ends and distracting camera work . 7411 Hey Arnold ! 7412 The Movie could have been made 40 years ago , and parents ' appreciation of it may depend on whether they consider that a good thing . 7413 This one is definitely one to skip , even for horror movie fanatics . 7414 Excessive , profane , packed with cartoonish violence and comic-strip characters . 7415 Once the 50 year old Benigni appears as the title character , we find ourselves longing for the block of wood to come back . 7416 A working class `` us vs. them '' opera that leaves no heartstring untugged and no liberal cause unplundered . 7417 If 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 . 7418 There are simply too many ideas floating around -- part farce , part Sliding Doors , part pop video -- and yet failing to exploit them . 7419 It 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 . 7420 We have n't seen such hilarity since Say It Is n't So ! 7421 Expect the same-old , lame-old slasher nonsense , just with different scenery . 7422 The Cold Turkey would 've been a far better title . 7423 The idea of 49-year-old Roberto Benigni playing the wooden boy Pinocchio is scary enough . 7424 The reality of the new live-action Pinocchio he directed , cowrote and starred in borders on the grotesque . 7425 The ga-zillionth airhead movie about a wife in distress who resorts to desperate measures . 7426 Zaidan 's script has barely enough plot to string the stunts together and not quite enough characterization to keep the faces straight . 7427 Try 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 ! ' 7428 when Leguizamo finally plugged an irritating character late in the movie . 7429 While 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 . 7430 It treats women like idiots . 7431 Though Catch Me If You Can is n't badly made , the fun slowly leaks out of the movie . 7432 Just an average comedic dateflick but not a waste of time . 7433 A valueless kiddie paean to pro basketball underwritten by the NBA . 7434 Impostor has a handful of thrilling moments and a couple of good performances , but the movie does n't quite fly . 7435 For starters , the story is just too slim . 7436 So much facile technique , such cute ideas , so little movie . 7437 The experience of going to a film festival is a rewarding one ; the experiencing of sampling one through this movie is not . 7438 The film takes the materials of human tragedy and dresses them in lovely costumes , Southern California locations and star power . 7439 It has its moments of swaggering camaraderie , but more often just feels generic , derivative and done to death . 7440 Almost gags on its own gore . 7441 How do you spell cliché ? 7442 It 's sweet , harmless , dumb , occasionally funny and about as compelling as a fishing show . 7443 The 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 . 7444 While -LRB- Hill -RRB- has learned new tricks , the tricks alone are not enough to salvage this lifeless boxing film . 7445 In the real world , an actor this uncharismatically beautiful would have a résumé loaded with credits like `` Girl in Bar # 3 . '' 7446 Too much of it feels unfocused and underdeveloped . 7447 Under 15 ? 7448 A giggle a minute . 7449 Over age 15 ? 7450 Big Fat Waste of Time . 7451 Hey Arnold ! 7452 The Movie is what happens when you blow up small potatoes to 10 times their natural size , and it ai n't pretty . 7453 Sometimes seems less like storytelling than something the otherwise compelling director needed to get off his chest . 7454 This is not the undisputed worst boxing movie ever , but it 's certainly not a champion - the big loser is the audience . 7455 You 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 . 7456 In 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 . 7457 Chokes on its own depiction of upper-crust decorum . 7458 Well-nigh unendurable ... though the picture strains to become cinematic poetry , it remains depressingly prosaic and dull . 7459 I thought my own watch had stopped keeping time as I slogged my way through Clockstoppers . 7460 While 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 . 7461 This directorial debut from music video show-off Higuchinsky is all flash . 7462 Yes , Ballistic is silly . 7463 Unfortunately , it 's not silly fun unless you enjoy really bad movies . 7464 The 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 . 7465 The longer the movie goes , the worse it gets , but it 's actually pretty good in the first few minutes . 7466 While 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 . 7467 Not only unfunny , but downright repellent . 7468 Care 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 . 7469 Forced , familiar and thoroughly condescending . 7470 Does little more than play an innocuous game of fill-in - the-blanks with a tragic past . 7471 K-19 exploits our substantial collective fear of nuclear holocaust to generate cheap Hollywood tension . 7472 Has 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 7473 A ragbag of promising ideas and failed narrative , of good acting and plain old bad filmmaking . 7474 Whaley 's determination to immerse you in sheer , unrelenting wretchedness is exhausting . 7475 Uncommonly stylish but equally silly ... the picture fails to generate much suspense , nor does it ask searching enough questions to justify its pretensions . 7476 The entire movie is about a boring , sad man being boring and sad . 7477 The plot convolutions ultimately add up to nothing more than jerking the audience 's chain . 7478 Confirms the nagging suspicion that Ethan Hawke would be even worse behind the camera than he is in front of it . 7479 Made with no discernible craft and monstrously sanctimonious in dealing with childhood loss . 7480 It 's a trifle of a movie , with a few laughs surrounding an unremarkable soft center . 7481 Holden Caulfield did it better . 7482 A synthesis of cliches and absurdities that seems positively decadent in its cinematic flash and emptiness . 7483 Oh come on . 7484 Like you could n't smell this turkey rotting from miles away . 7485 If it 's seldom boring , well , it 's also rarely coherent . 7486 Simplistic fluff-ball of whimsy . 7487 Not exactly the Bees Knees 7488 It 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 . 7489 The kind of spectacularly misconceived enterprise that only a sophisticated cinephile could have perpetrated . 7490 Makes 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 . 7491 The 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 . 7492 Jacquot 's rendering of Puccini 's tale of devotion and double-cross is more than just a filmed opera . 7493 In his first stab at the form , Jacquot takes a slightly anarchic approach that works only sporadically . 7494 Chabrol has taken promising material for a black comedy and turned it instead into a somber chamber drama . 7495 It '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 . 7496 This is nothing but familiar territory . 7497 In execution , this clever idea is far less funny than the original , Killers From Space . 7498 One of the more irritating cartoons you will see this , or any , year . 7499 A broad , melodramatic estrogen opera that 's pretty toxic in its own right . 7500 Too slow , too long and too little happens . 7501 The 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 . 7502 It 's just filler . 7503 Sacrifices the value of its wealth of archival foot-age with its less-than-objective stance . 7504 Utterly lacking in charm , wit and invention , Roberto Benigni 's Pinocchio is an astonishingly bad film . 7505 A hamfisted romantic comedy that makes our girl the hapless facilitator of an extended cheap shot across the Mason-Dixon line . 7506 Scores no points for originality , wit , or intelligence . 7507 It 's a cookie-cutter movie , a cut-and-paste job . 7508 They takes a long time to get to its gasp-inducing ending . 7509 Barely gets off the ground . 7510 Even on those rare occasions when the narrator stops yammering , Miller 's hand often feels unsure . 7511 Pumpkin 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 . 7512 At its best , Queen is campy fun like the Vincent Price horror classics of the '60s . 7513 At its worst , it implodes in a series of very bad special effects . 7514 From the opening scenes , it 's clear that All About the Benjamins is a totally formulaic movie . 7515 It takes a certain kind of horror movie to qualify as ` worse than expected , ' but Ghost Ship somehow manages to do exactly that . 7516 On the bright side , it contains Jesse Ventura 's best work since the XFL . 7517 Despite 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 . 7518 A TV style murder mystery with a few big screen moments -LRB- including one that seems to be made for a different film altogether -RRB- . 7519 By 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 . 7520 Too often , the viewer is n't reacting to humor so much as they are wincing back in repugnance . 7521 Dilbert without the right-on satiric humor . 7522 Manages to show life in all of its banality when the intention is quite the opposite . 7523 Do not see this film . 7524 Minority Report is exactly what the title indicates , a report . 7525 Delivers the same old same old , tarted up with Latin flava and turned out by Hollywood playas . 7526 If 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 . 7527 To call The Other Side of Heaven `` appalling '' would be to underestimate just how dangerous entertainments like it can be . 7528 In 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 . 7529 If only the story about a multi-million dollar con bothered to include the con . 7530 I 'd have to say the star and director are the big problems here . 7531 Without the dark spookiness of Crystal Lake Camp , the horror concept completely loses its creepy menace . 7532 It '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- . 7533 While 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 . 7534 For close to two hours the audience is forced to endure three terminally depressed , mostly inarticulate , hyper dysfunctional families for the price of one . 7535 To my taste , the film 's comic characters come perilously close to being Amoses and Andys for a new generation . 7536 What the director ca n't do is make either of Val Kilmer 's two personas interesting or worth caring about . 7537 In an effort , I suspect , not to offend by appearing either too serious or too lighthearted , it offends by just being wishy-washy . 7538 It '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 . 7539 Harland Williams is so funny in drag he should consider permanent sex-reassignment . 7540 ... nothing scary here except for some awful acting and lame special effects . 7541 It '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 . 7542 A very long movie , dull in stretches , with entirely too much focus on meal preparation and igloo construction . 7543 Not an objectionable or dull film ; it merely lacks everything except good intentions . 7544 A science-fiction pastiche so lacking in originality that if you stripped away its inspirations there would be precious little left . 7545 Once -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 . 7546 The words , ` Frankly , my dear , I do n't give a damn , ' have never been more appropriate . 7547 What 's next : `` My Mother the Car ? '' 7548 All 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 . 7549 A sequel that 's much too big for its britches . 7550 So unremittingly awful that labeling it a dog probably constitutes cruelty to canines . 7551 What was once original has been co-opted so frequently that it now seems pedestrian . 7552 A perplexing example of promise unfulfilled , despite many charming moments . 7553 For all the writhing and wailing , tears , rage and opium overdoses , there 's no sense of actual passion being washed away in love 's dissolution . 7554 A coarse and stupid gross-out . 7555 a 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 . 7556 Does n't offer much besides glib soullessness , raunchy language and a series of brutal set pieces ... that raise the bar on stylized screen violence . 7557 There 's something with potential here , but the movie decides , like Lavinia , to go the conservative route . 7558 It 's one pussy-ass world when even killer-thrillers revolve around group therapy sessions . 7559 The stripped-down approach does give the film a certain timeless quality , but the measured pace and lack of dramatic inflection can also seem tedious . 7560 But 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 . 7561 Rarely has so much money delivered so little entertainment . 7562 Tries to add some spice to its quirky sentiments but the taste is all too familiar . 7563 Paid In Full is so stale , in fact , that its most vibrant scene is one that uses clips from Brian De Palma 's Scarface . 7564 That 's a cheat . 7565 Harrison 's Flowers puts its heart in the right place , but its brains are in no particular place at all . 7566 This re-do is so dumb and so exploitative in its violence that , ironically , it becomes everything that the rather clumsy original was railing against . 7567 A string of rehashed sight gags based in insipid vulgarity . 7568 The 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 . 7569 Basically a static series of semi-improvised -LRB- and semi-coherent -RRB- raps between the stars . 7570 Too 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 . 7571 An unpredictable blend of gal-pal smart talk , romantic comedy and dark tragedy that bites off considerably more than writer\/director John McKay can swallow . 7572 It '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 . 7573 `` The Time Machine '' is a movie that has no interest in itself . 7574 It does n't believe in itself , it has no sense of humor ... it 's just plain bored . 7575 ... a hollow joke told by a cinematic gymnast having too much fun embellishing the misanthropic tale to actually engage it . 7576 A morose little soap opera about three vapid , insensitive people who take turns hurting each other . 7577 It 's a feature-length adaptation of one of those `` Can This Marriage Be Saved ? '' 7578 columns from Ladies Home Journal ... 7579 The film 's essentially over by the meet-cute . 7580 I 'm sure if you 're a Hartley fan , you might enjoy yourself ... Me , I did n't care for it . 7581 It 's about following your dreams , no matter what your parents think . 7582 Socrates motions for hemlock . 7583 The script is n't very good ; not even someone as gifted as Hoffman -LRB- the actor -RRB- can make it work . 7584 Walter Hill 's pulpy , stylized boxing melodrama Undisputed nearly overcomes its questionable in-the-ring match-up with solid fight choreography and gritty prison authenticity . 7585 It has all the excitement of eating oatmeal . 7586 It '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 . 7587 Although 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 . 7588 I 'll bet the video game is a lot more fun than the film . 7589 Star Trek : Nemesis meekly goes where nearly every Star Trek movie has gone before . 7590 Wince-inducing dialogue , thrift-shop costumes , prosthetic makeup by Silly Putty and Kmart blue-light-special effects all conspire to test Trekkie loyalty . 7591 Like 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 . 7592 I do n't mind having my heartstrings pulled , but do n't treat me like a fool . 7593 ... although this idea is `` new '' the results are tired . 7594 I 'm guessing the director is a magician . 7595 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 . 7596 An 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. . 7597 Its 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 . 7598 For 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 . 7599 Do n't be fooled by the impressive cast list - Eye See You is pure junk . 7600 Not since Freddy Got Fingered has a major release been so painful to sit through . 7601 The documentary does little , apart from raising the topic , to further stoke the conversation . 7602 Plays like a volatile and overlong W magazine fashion spread . 7603 A better title , for all concerned , might be Swept Under the Rug . 7604 This movie seems to have been written using Mad-libs . 7605 There can be no other explanation . 7606 Hilariously inept and ridiculous . 7607 Vera 's technical prowess ends up selling his film short ; he smoothes over hard truths even as he uncovers them . 7608 -LRB- A -RRB- shapeless blob of desperate entertainment . 7609 Feels too formulaic and too familiar to produce the transgressive thrills of early underground work . 7610 Given how heavy-handed and portent-heavy it is , this could be the worst thing Soderbergh has ever done . 7611 a by-the-numbers patient\/doctor pic that covers all the usual ground 7612 A dumb movie with dumb characters doing dumb things and you have to be really dumb not to see where this is going . 7613 Stealing Harvard aspires to comedic grand larceny but stands convicted of nothing more than petty theft of your time . 7614 Pretension , in its own way , is a form of bravery . 7615 For this reason and this reason only -- the power of its own steadfast , hoity-toity convictions -- Chelsea Walls deserves a medal . 7616 With the exception of some fleetingly amusing improvisations by Cedric the Entertainer as Perry 's boss , there is n't a redeeming moment here . 7617 It 's a grab bag of genres that do n't add up to a whole lot of sense . 7618 Movie fans , get ready to take off ... the other direction . 7619 -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 . 7620 The intent is almost exactly the same -LRB- as The Full Monty -RRB- . 7621 All that 's missing is the spontaneity , originality and delight . 7622 No one but a convict guilty of some truly heinous crime should have to sit through The Master of Disguise . 7623 Even 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 . 7624 There '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 . 7625 It 's not without its pleasures , but I 'll stick with The Tune . 7626 Miller 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 . 7627 Despite the evocative aesthetics evincing the hollow state of modern love life , the film never percolates beyond a monotonous whine . 7628 More maudlin than sharp . 7629 This 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 . 7630 It 's slow -- very , very slow . 7631 It 's not the ultimate Depression-era gangster movie . 7632 That 's pure PR hype . 7633 Characters 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 . 7634 Comes ... uncomfortably close to coasting in the treads of The Bicycle Thief . 7635 Visually rather stunning , but ultimately a handsome-looking bore , the true creativity would have been to hide Treasure Planet entirely and completely reimagine it . 7636 Stealing 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 . 7637 There seems to be no clear path as to where the story 's going , or how long it 's going to take to get there . 7638 If 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 . 7639 I do n't think I laughed out loud once . 7640 And when you 're talking about a slapstick comedy , that 's a pretty big problem . 7641 It 's so mediocre , despite the dynamic duo on the marquee , that we just ca n't get no satisfaction . 7642 Slapstick 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 ? 7643 ... turns so unforgivably trite in its last 10 minutes that anyone without a fortified sweet tooth will likely go into sugar shock . 7644 The notion that bombing buildings is the funniest thing in the world goes entirely unexamined in this startlingly unfunny comedy . 7645 My reaction in a word : disappointment . 7646 His last movie was poetically romantic and full of indelible images , but his latest has nothing going for it . 7647 It kinda works and qualifies as cool at times , but is just too lame to work or be cool at others . 7648 Sustains its dreamlike glide through a succession of cheesy coincidences and voluptuous cheap effects , not the least of which is Rebecca Romijn-Stamos . 7649 Intriguing documentary which is emotionally diluted by focusing on the story 's least interesting subject . 7650 Feels 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 . 7651 For 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 . 7652 In 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 . 7653 I 've always dreamed of attending Cannes , but after seeing this film , it 's not that big a deal . 7654 The 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 . 7655 A workshop mentality prevails . 7656 It can not be enjoyed , even on the level that one enjoys a bad slasher flick , primarily because it is dull . 7657 Yes , dull . 7658 Pumpkin wants to have it both ways . 7659 Director Uwe Boll and the actors provide scant reason to care in this crude '70s throwback . 7660 -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 . 7661 Outer-space buffs might love this film , but others will find its pleasures intermittent . 7662 This piece of Channel 5 grade trash is , quite frankly , an insult to the intelligence of the true genre enthusiast . 7663 An occasionally funny , but overall limp , fish-out-of-water story . 7664 A bloated gasbag thesis grotesquely impressed by its own gargantuan aura of self-importance ... 7665 It 's mighty tedious for the viewer who has to contend with unpleasant characters , hit-and-miss performances and awkwardly staged scenes . 7666 As 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 . 7667 New Best Friend 's Playboy-mansion presentation of college life is laugh-out-loud ludicrous . 7668 an appalling ` Ace Ventura ' rip-off that somehow manages to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton . 7669 If any of them list this ` credit ' on their resumes in the future , that 'll be much funnier than anything in the film ... 7670 The humor is forced and heavy-handed , and occasionally simply unpleasant . 7671 Scorsese 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 . 7672 While the script starts promisingly , it loses steam towards the middle and never really develops beyond attacking obvious target . 7673 As 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 . 7674 This is n't even Madonna 's Swept Away . 7675 This is her Blue Lagoon . 7676 The director knows how to apply textural gloss , but his portrait of sex-as-war is strictly sitcom . 7677 ... the film suffers from a lack of humor -LRB- something needed to balance out the violence -RRB- ... 7678 Burns never really harnesses to full effect the energetic cast . 7679 An overemphatic , would-be wacky , ultimately tedious sex farce . 7680 Has all the depth of a wading pool . 7681 This 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 . 7682 The 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 . 7683 ... the movie is just a plain old monster . 7684 If this disposable tissue has one wild card , it 's John Turturro , who 's simply fab as a Spanish butler with a foot fetish . 7685 One long string of cliches . 7686 Fancy a real downer ? 7687 -LRB- Leigh -RRB- lays it on so thick this time that it feels like a suicide race . 7688 Professionally speaking , it 's tempting to jump ship in January to avoid ridiculous schlock like this shoddy suspense thriller . 7689 Nelson 's brutally unsentimental approach ... sucks the humanity from the film , leaving behind an horrific but weirdly unemotional spectacle . 7690 Weaves a spell over you , with its disturbingly close-up look at damaged psyches and its subtle undercurrents of danger . 7691 But its awkward structure keeps breaking the spell . 7692 At once half-baked and overheated . 7693 There 's a solid woman - finding-herself story somewhere in here , but you 'd have to dig pretty deep to uncover it . 7694 I 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 . 7695 -LRB- Serry -RRB- wants to blend politics and drama , an admirable ambition . 7696 It 's too bad that the helping hand he uses to stir his ingredients is also a heavy one . 7697 By the miserable standards to which the slasher genre has sunk , ... actually pretty good . 7698 Of course , by more objective measurements it 's still quite bad . 7699 The only entertainment you 'll derive from this choppy and sloppy affair will be from unintentional giggles -- several of them . 7700 Sam Mendes has become valedictorian at the School for Soft Landings and Easy Ways Out . 7701 Exactly what it claims to be -- a simple diversion for the kids . 7702 Its story may be a thousand years old , but why did it have to seem like it took another thousand to tell it to us ? 7703 The problem with this film is that it lacks focus . 7704 I sympathize with the plight of these families , but the movie does n't do a very good job conveying the issue at hand . 7705 A momentary escape from the summer heat and the sedentary doldrums that set in at this time of year . 7706 ... think of it as American Pie On Valium . 7707 Dull , lifeless , and amateurishly assembled . 7708 Puportedly `` 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 . 7709 ... 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 ! 7710 It 's a bad thing when a movie has about as much substance as its end credits blooper reel . 7711 With its dogged Hollywood naturalism and the inexorable passage of its characters toward sainthood , Windtalkers is nothing but a sticky-sweet soap . 7712 Some of it is clever , but it is never melodic \/ 7713 Better to just call it ABC Kiarostami . 7714 For AIDS and Africa are nothing more than part of the scenery . 7715 No aspirations to social import inform the movie version . 7716 This is a shameless sham , calculated to cash in on the popularity of its stars . 7717 Manages 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 . 7718 This rather superficial arthouse middle-brow film knows how to please a crowd , and that 's about all it does well . 7719 It '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 . 7720 As vulgar as it is banal . 7721 You wonder why Enough was n't just a music video rather than a full-length movie . 7722 The film 's tone and pacing are off almost from the get-go . 7723 The 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 . 7724 More whiny downer than corruscating commentary . 7725 Tambor and Clayburgh make an appealing couple -- he 's understated and sardonic , she 's appealingly manic and energetic . 7726 Both deserve better . 7727 Suffocated 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 . 7728 Coughs and sputters on its own postmodern conceit . 7729 A wildly inconsistent emotional experience . 7730 Sit through this one , and you wo n't need a magic watch to stop time ; your DVD player will do it for you . 7731 A sometimes tedious film . 7732 Teen movies have really hit the skids . 7733 There are plot holes big enough for Shamu the killer whale to swim through . 7734 ... plays like somebody spliced random moments of a Chris Rock routine into what is otherwise a cliche-riddled but self-serious spy thriller . 7735 Nasty , ugly , pointless and depressing , even if you hate clowns . 7736 What is 100 % missing here is a script of even the most elemental literacy , an inkling of genuine wit , and anything resembling acting . 7737 does paint some memorable images ... , but Makhmalbaf keeps her distance from the characters 7738 It uses the pain and violence of war as background material for color . 7739 just not campy enough 7740 The movie , directed by Mick Jackson , leaves no cliche unturned , from the predictable plot to the characters straight out of central casting . 7741 It 's everything you do n't go to the movies for . 7742 Like watching a dress rehearsal the week before the show goes up : everything 's in place but something 's just a little off-kilter . 7743 The 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 . 7744 For 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 . 7745 American Chai encourages rueful laughter at stereotypes only an Indian-American would recognize . 7746 And the lesson , in the end , is nothing new . 7747 It made me want to wrench my eyes out of my head and toss them at the screen . 7748 Due to some script weaknesses and the casting of the director 's brother , the film trails off into inconsequentiality . 7749 ... 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 . 7750 So devoid of any kind of intelligible story that it makes films like XXX and Collateral Damage seem like thoughtful treatises 7751 Combining 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 . 7752 Dragonfly has no atmosphere , no tension -- nothing but Costner , flailing away . 7753 It 's a buggy drag . 7754 Works hard to establish rounded characters , but then has nothing fresh or particularly interesting to say about them . 7755 The 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 . 7756 Nonsensical , dull `` cyber-horror '' flick is a grim , hollow exercise in flat scares and bad acting . 7757 Instead of hiding Pinocchio from critics , Miramax should have hidden it from everyone . 7758 Manages to be both repulsively sadistic and mundane . 7759 A great ensemble cast ca n't lift this heartfelt enterprise out of the familiar . 7760 There ought to be a directing license , so that Ed Burns can have his revoked . 7761 The 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 . 7762 Whereas last year 's exemplary Sexy Beast seemed to revitalize the British gangster movie , this equally brutal outing merely sustains it . 7763 ... a boring parade of talking heads and technical gibberish that will do little to advance the Linux cause . 7764 Green might want to hang onto that ski mask , as robbery may be the only way to pay for his next project . 7765 I can take infantile humor ... but this is the sort of infantile that makes you wonder about changing the director and writer 's diapers . 7766 There is n't nearly enough fun here , despite the presence of some appealing ingredients . 7767 The 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 . 7768 Directed in a paint-by-numbers manner . 7769 A cheerful enough but imminently forgettable rip-off of -LRB- Besson 's -RRB- earlier work . 7770 A lackluster , unessential sequel to the classic Disney adaptation of J.M. Barrie 's Peter Pan . 7771 Samira 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 7772 ... routine , harmless diversion and little else . 7773 Late Marriage 's stiffness is unlikely to demonstrate the emotional clout to sweep U.S. viewers off their feet . 7774 This time Mr. Burns is trying something in the Martin Scorsese street-realist mode , but his self-regarding sentimentality trips him up again . 7775 While there 's something intrinsically funny about Sir Anthony Hopkins saying ` Get in the car , bitch , ' this Jerry Bruckheimer production has little else to offer 7776 It 's hampered by a Lifetime-channel kind of plot and a lead actress who is out of her depth . 7777 Let 's hope -- shall we ? 7778 -- 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 . 7779 Is there a group of more self-absorbed women than the mother and daughters featured in this film ? 7780 I do n't think so . 7781 Nothing wrong with performances here , but the whiney characters bugged me . 7782 There is very little dread or apprehension , and though I like the creepy ideas , they are not executed with anything more than perfunctory skill . 7783 If 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 . 7784 In the end , the movie collapses on its shaky foundation despite the best efforts of director Joe Carnahan . 7785 Adults will wish the movie were less simplistic , obvious , clumsily plotted and shallowly characterized . 7786 But what are adults doing in the theater at all ? 7787 Sticky sweet sentimentality , clumsy plotting and a rosily myopic view of life in the WWII-era Mississippi Delta undermine this adaptation . 7788 It 's another stale , kill-by-numbers flick , complete with blade-thin characters and terrible , pun-laden dialogue . 7789 Every time you look , Sweet Home Alabama is taking another bummer of a wrong turn . 7790 Partway through watching this saccharine , Easter-egg-colored concoction , you realize that it is made up of three episodes of a rejected TV show . 7791 The overall effect is less like a children 's movie than a recruitment film for future Hollywood sellouts . 7792 Portentous and pretentious , The Weight of Water is appropriately titled , given the heavy-handedness of it drama . 7793 A fitfully amusing romp that , if nothing else , will appeal to fans of Malcolm in the Middle and its pubescent star , Frankie Muniz . 7794 Jason X is positively anti-Darwinian : nine sequels and 400 years later , the teens are none the wiser and Jason still kills on auto-pilot . 7795 To say this was done better in Wilder 's Some Like It Hot is like saying the sun rises in the east . 7796 At 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 . 7797 The actors are appealing , but Elysian Fields is idiotic and absurdly sentimental . 7798 As ` chick flicks ' go , this one is pretty miserable , resorting to string-pulling rather than legitimate character development and intelligent plotting . 7799 The only excitement comes when the credits finally roll and you get to leave the theater . 7800 There 's no emotional pulse to Solaris . 7801 With an emotional sterility to match its outer space setting , Soderbergh 's spectacular swing for the fence yields only a spectacular whiff . 7802 It ca n't decide if it wants to be a mystery\/thriller , a romance or a comedy . 7803 Denis O'Neill 's script avoids the prime sports cliche , a last-second goal to win the championship , but it neglects few others . 7804 The character of ZigZag is not sufficiently developed to support a film constructed around him . 7805 One of those pictures whose promising , if rather precious , premise is undercut by amateurish execution . 7806 Serving Sara does n't serve up a whole lot of laughs . 7807 The most hopelessly monotonous film of the year , noteworthy only for the gimmick of being filmed as a single unbroken 87-minute take . 7808 With virtually no interesting elements for an audience to focus on , Chelsea Walls is a triple-espresso endurance challenge . 7809 Deadeningly dull , mired in convoluted melodrama , nonsensical jargon and stiff-upper-lip laboriousness . 7810 A misogynistic piece of filth that attempts to pass itself off as hip , young adult entertainment . 7811 Like the Chelsea 's denizens ... Burdette 's collage-form scenario tends to over-romanticize the spiritual desolation of the struggling artiste . 7812 It 's basically an overlong episode of Tales from the Crypt . 7813 The 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 . 7814 Another in-your-face wallow in the lower depths made by people who have never sung those blues . 7815 Shaky close-ups of turkey-on-rolls , stubbly chins , liver spots , red noses and the filmmakers new bobbed do draw easy chuckles but lead nowhere . 7816 I 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 . 7817 Complete lack of originality , cleverness or even visible effort 7818 Though 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 . 7819 Something akin to a Japanese Alice Through the Looking Glass , except that it seems to take itself far more seriously . 7820 It takes talent to make a lifeless movie about the most heinous man who ever lived . 7821 On the whole , the movie lacks wit , feeling and believability to compensate for its incessant coarseness and banality . 7822 The 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 . 7823 Offers very little genuine romance and even fewer laughs ... a sad sitcom of a movie , largely devoid of charm . 7824 Makes for a pretty unpleasant viewing experience . 7825 The movie fails to live up to the sum of its parts . 7826 Although Huppert 's intensity and focus has a raw exhilaration about it , The Piano Teacher is anything but fun . 7827 It 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 . 7828 Bad . 7829 Very bad . 7830 Stultifyingly , dumbfoundingly , mind-numbingly bad . 7831 May reawaken discussion of the Kennedy assassination but this fictional film looks made for cable rather than for the big screen . 7832 If looking for a thrilling sci-fi cinematic ride , do n't settle for this Imposter . 7833 Not really bad so much as distasteful : We need kidnapping suspense dramas right now like we need doomsday thrillers . 7834 The result is a gaudy bag of stale candy , something from a Halloween that died . 7835 Davis ... is so enamored of her own creation that she ca n't see how insufferable the character is . 7836 The 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 . 7837 The messages of compassion and mercy are clearly , squarely and specifically expounded via computer animated Old Testament tale of Jonah and the Whale . 7838 Determined to be fun , and bouncy , with energetic musicals , the humor did n't quite engage this adult . 7839 Historical dramas fused with love triangle is a well worn conceit . 7840 But this films lacks the passion required to sell the material . 7841 Long Time Dead ? 7842 Not nearly long enough . 7843 Nothing more substantial than a fitfully clever doodle . 7844 A solid film ... but more conscientious than it is truly stirring . 7845 There 's not enough here to justify the almost two hours . 7846 The 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 . 7847 Perceptive 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 . 7848 Verbinski implements every hack-artist trick to give us the ooky-spookies . 7849 McConaughey 's fun to watch , the dragons are okay , not much fire in the script . 7850 An unwise amalgam of Broadcast News and Vibes . 7851 Skins has a right to yawp , and we have a right to our grains of salt . 7852 Who needs love like this ? 7853 Hit and miss as far as the comedy goes and a big ole ' miss in the way of story . 7854 Returning 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 . 7855 Exists then as an occasionally insightful acting exercise . 7856 Trite , banal , cliched , mostly inoffensive . 7857 Mattei is tiresomely grave and long-winded , as if circularity itself indicated profundity . 7858 It '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 . 7859 Whenever 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 . 7860 It offers little beyond the momentary joys of pretty and weightless intellectual entertainment . 7861 A sequence of ridiculous shoot - 'em - up scenes . 7862 Nothing in Waking Up in Reno ever inspired me to think of its inhabitants as anything more than markers in a screenplay . 7863 I 'm just too bored to care . 7864 Irwin 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 . 7865 Not a stereotype is omitted nor a cliché left unsaid . 7866 As befits its title , this PG-13-rated piffle is ultimately as threatening as the Snuggle Fabric Softener bear . 7867 Attempts by this ensemble film to impart a message are so heavy-handed that they instead pummel the audience . 7868 It all feels like a Monty Python sketch gone horribly wrong . 7869 Nervous breakdowns are not entertaining . 7870 Scorsese does n't give us a character worth giving a damn about . 7871 A beautifully made piece of unwatchable drivel . 7872 Like being trapped at a perpetual frat party ... How can something so gross be so boring ? 7873 This is so bad . 7874 Even film silliness needs a little gravity , beyond good hair and humping . 7875 I 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 . 7876 Prurient playthings aside , there 's little to love about this English trifle . 7877 This 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 . 7878 The film flat lines when it should peak and is more missed opportunity and trifle than dark , decadent truffle . 7879 It 's played in the most straight-faced fashion , with little humor to lighten things up . 7880 The heavy-handed film is almost laughable as a consequence . 7881 Van Wilder brings a whole new meaning to the phrase ` comedy gag . ' 7882 At least one scene is so disgusting that viewers may be hard pressed to retain their lunch . 7883 A disappointment for those who love alternate versions of the Bard , particularly ones that involve deep fryers and hamburgers . 7884 The film tries too hard to be funny and tries too hard to be hip . 7885 The end result is a film that 's neither . 7886 Every nanosecond of the The New Guy reminds you that you could be doing something else far more pleasurable . 7887 Something like scrubbing the toilet . 7888 Or emptying rat traps . 7889 Or doing last year 's taxes with your ex-wife . 7890 Scooby Dooby Doo \/ And Shaggy too \/ You both look and sound great . 7891 \/ But Daphne , you 're too Buff \/ Fred thinks he 's tough \/ And Velma - wow , you 've lost weight ! 7892 Is the time really ripe for a warmed-over James Bond adventure , with a village idiot as the 007 clone ? 7893 There '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 . 7894 However it may please those who love movies that blare with pop songs , young science fiction fans will stomp away in disgust . 7895 The humor is n't as sharp , the effects not as innovative , nor the story as imaginative as in the original . 7896 But it could have been worse . 7897 Some of their jokes work , but most fail miserably and in the end , Pumpkin is far more offensive than it is funny . 7898 Even horror fans will most likely not find what they 're seeking with Trouble Every Day ; the movie lacks both thrills and humor . 7899 comes off like a rejected ABC Afterschool Special , freshened up by the dunce of a Screenwriting 101 class . 7900 ... Designed to provide a mix of smiles and tears , `` Crossroads '' instead provokes a handful of unintentional howlers and numerous yawns . 7901 it seems to me the film is about the art of ripping people off without ever letting them consciously know you have done so 7902 It '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 . 7903 The title not only describes its main characters , but the lazy people behind the camera as well . 7904 Sometimes it feels as if it might have been made in the '70s or '80s , and starred Chevy Chase and Goldie Hawn . 7905 Schaeffer 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 . 7906 Demands too much of most viewers . 7907 The 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 . 7908 It should be mentioned that the set design and interiors of the haunted vessel are more than effectively creepy and moodily lit . 7909 So I just did . 7910 Shamelessly sappy and , worse , runs away from its own provocative theme . 7911 The Ring just left me cold and wet like I was out in the Seattle drizzle without rainwear . 7912 The film seems a dead weight . 7913 The lack of pace kills it , although , in a movie about cancer , this might be apt . 7914 For anyone who grew up on Disney 's 1950 Treasure Island , or remembers the 1934 Victor Fleming classic , this one feels like an impostor . 7915 A clutchy , indulgent and pretentious travelogue and diatribe against ... well , just stuff . 7916 Watching Scarlet Diva , one is poised for titillation , raw insight or both . 7917 Instead , we just get messy anger , a movie as personal therapy . 7918 Meandering , sub-aquatic mess : It 's so bad it 's good , but only if you slide in on a freebie . 7919 The ending is a cop-out . 7920 What happens to John Q ? 7921 I do n't have an I Am Sam clue . 7922 Has the feel of an unedited personal journal . 7923 Remember when Bond had more glamour than clamor ? 7924 No more . 7925 Cry havoc and let slip the dogs of cheese , indeed . 7926 This charmless nonsense ensues amid clanging film references that make Jay and Silent Bob 's Excellent Adventure seem understated . 7927 It does n't quite deserve the gong , but there are more fascinating acts than `` Confessions of a Dangerous Mind . '' 7928 The subject of swinging still seems ripe for a documentary -- just not this one . 7929 ... Hudlin is stuck trying to light a fire with soggy leaves . 7930 Unlike his directorial efforts , La Femme Nikita and The Professional , The Transporter lacks Besson 's perspective as a storyteller . 7931 The 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 . 7932 Most of the supporting characters in Eastwood films are weak , as are most of the subplots . 7933 This one 's weaker than most . 7934 Audiences will find no mention of political prisoners or persecutions that might paint the Castro regime in less than saintly tones . 7935 The film takes too long getting to the good stuff , then takes too long figuring out what to do next . 7936 You can practically smell the patchouli oil . 7937 To say Analyze That is De Niro 's best film since Meet the Parents sums up the sad state of his recent career . 7938 The 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 . 7939 An often-deadly boring , strange reading of a classic whose witty dialogue is treated with a baffling casual approach 7940 This 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 . 7941 Consists of a plot and jokes done too often by people far more talented than Ali G 7942 Another week , another gross-out college comedy -- ugh . 7943 Moderately involving despite bargain-basement photography and hackneyed romance . 7944 There 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 . 7945 The editing is chaotic , the photography grainy and badly focused , the writing unintentionally hilarious , the direction unfocused , the performances as wooden . 7946 When -LRB- De Palma 's -RRB- bad , he 's really bad , and Femme Fatale ranks with the worst he has done . 7947 Tadpole is emblematic of the witless ageism afflicting films : Young is cool , and too young is too cool . 7948 I doubt anyone will remember the picture by the time Christmas really rolls around , but maybe it 'll be on video by then . 7949 Uncertain in tone ... a garbled exercise in sexual politics , a junior varsity Short Cuts by way of Very Bad Things . 7950 All 's well that ends well , and rest assured , the consciousness-raising lessons are cloaked in gross-out gags . 7951 The only thing worse than your substandard , run-of-the-mill Hollywood picture is an angst-ridden attempt to be profound . 7952 If you think that Jennifer Lopez has shown poor judgment in planning to marry Ben Affleck , wait till you see Maid in Manhattan . 7953 Stars 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 . 7954 It 's best to avoid imprisonment with the dull , nerdy folks that inhabit Cherish . 7955 Culkin exudes none of the charm or charisma that might keep a more general audience even vaguely interested in his bratty character . 7956 In 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 . 7957 ... -LRB- like -RRB- channel surfing between the Discovery Channel and a late-night made-for-cable action movie . 7958 A movie that , rather than skip along the Seine , more or less slogs its way through soggy Paris , tongue uncomfortably in cheek . 7959 Shot perhaps ` artistically ' with handheld cameras and apparently no movie lights by Joaquin Baca-Asay , the low-budget production swings annoyingly between vertigo and opacity . 7960 Imagine a really bad community theater production of West Side Story without the songs . 7961 Soul is what 's lacking in every character in this movie and , subsequently , the movie itself . 7962 A one-trick pony whose few T&A bits still ca n't save itself from being unoriginal , unfunny and unrecommendable . 7963 The 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 7964 It may be a prize winner , but Teacher is a bomb . 7965 The production values are up there . 7966 The use of CGI and digital ink-and-paint make the thing look really slick . 7967 The voices are fine as well . 7968 The problem , it is with most of these things , is the script . 7969 It 's got its heart in the right place , but it also wilts after awhile . 7970 Proves that a movie about goodness is not the same thing as a good movie . 7971 Well , it does go on forever . 7972 This overproduced and generally disappointing effort is n't likely to rouse the Rush Hour crowd . 7973 Topkapi this is not . 7974 If 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 ? 7975 Ethan Hawke has always fancied himself the bastard child of the Beatnik generation and it 's all over his Chelsea Walls . 7976 Equal parts bodice-ripper and plodding costume drama . 7977 I '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 . 7978 While the film misfires at every level , the biggest downside is the paucity of laughter in what 's supposed to be a comedy . 7979 If you liked the 1982 film then , you 'll still like it now . 7980 A 93-minute condensation of a 26-episode TV series , with all of the pitfalls of such you 'd expect . 7981 Guillen rarely gets beneath the surface of things . 7982 She lists ingredients , but never mixes and stirs . 7983 Audiences 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 . 7984 To 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 . 7985 It delivers some chills and sustained unease , but flounders in its quest for Deeper Meaning . 7986 Credibility levels are low and character development a non-starter . 7987 I 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 . 7988 For the most part , the ingredients are there . 7989 But an unwillingness to explore beyond the surfaces of her characters prevents Nettelbeck 's film from coming together . 7990 An earnest , heartrending look at the divide between religious fundamentalists and their gay relatives . 7991 It 's also heavy-handed and devotes too much time to bigoted views . 7992 A mawkish , implausible platonic romance that makes Chaplin 's City Lights seem dispassionate by comparison . 7993 Yes , one enjoys seeing Joan grow from awkward young woman to strong , determined monarch , but her love for the philandering Philip only diminishes her stature . 7994 It 's a film that hinges on its casting , and Glover really does n't fit the part . 7995 This is a throwaway , junk-food movie whose rap soundtrack was better tended to than the film itself . 7996 ... 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 . 7997 It 's a trifle . 7998 Literally 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 . 7999 Arguably the year 's silliest and most incoherent movie . 8000 Anyway , for one reason or another , Crush turns into a dire drama partway through . 8001 After that , it just gets stupid and maudlin . 8002 Too bad , but thanks to some lovely comedic moments and several fine performances , it 's not a total loss . 8003 Chao was Chen Kaige 's assistant for years in China . 8004 He has not learnt that storytelling is what the movies are about . 8005 A mixed bag of a comedy that ca n't really be described as out of this world . 8006 The film is a travesty of the genre and even as spoof takes itself too seriously . 8007 Marries the amateurishness of The Blair Witch Project with the illogic of Series 7 : The Contenders to create a completely crass and forgettable movie . 8008 The Piano Teacher is the sort of movie that discourages American audiences from ever wanting to see another foreign film . 8009 If it 's another regurgitated action movie you 're after , there 's no better film than Half Past Dead . 8010 So what is the point ? 8011 Lovingly choreographed bloodshed taking place in a pristine movie neverland , basically . 8012 This is junk food cinema at its greasiest . 8013 When it 's all wet , Blue Crush is highly enjoyable . 8014 When it 's on dry land , though , this surfer-girl melodrama starts gasping like a beached grouper . 8015 Most new movies have a bright sheen . 8016 Some , like Ballistic , arrive stillborn ... looking like the beaten , well-worn video box cover of seven years into the future . 8017 The story is naturally poignant , but first-time screenwriter Paul Pender overloads it with sugary bits of business . 8018 You see Robert De Niro singing - and dancing to - West Side Story show tunes . 8019 Choose your reaction : A. -RRB- That sure is funny ! 8020 B. -RRB- That sure is pathetic ! 8021 A sermonizing and lifeless paean to teenage dullards . 8022 This dramatically shaky contest of wills only reiterates the old Hollywood saw : Evil is interesting and good is boring . 8023 Before long , the film starts playing like General Hospital crossed with a Saturday Night Live spoof of Dog Day Afternoon . 8024 The charms of willful eccentricity , at least as evidenced by this latest cinematic essay , are beginning to wear a bit thin . 8025 Instead of accurately accounting a terrible true story , the film 's more determined to become the next Texas Chainsaw Massacre . 8026 But what about the countless other people who 'd merely like to watch a solid tale about a universally interesting soul ? 8027 A silly , self-indulgent film about a silly , self-indulgent filmmaker . 8028 Scarlet Diva has a voyeuristic tug , but all in all it 's a lot less sensational than it wants to be . 8029 The 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 . 8030 Flashy , pretentious and as impenetrable as Morvern 's thick , working-class Scottish accent . 8031 A battle between bug-eye theatre and dead-eye matinee . 8032 The movie is virtually without context -- journalistic or historical . 8033 What 's worse is that Pelosi knows it . 8034 ... instead go rent `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance . 8035 Lame , haphazard teen comedy . 8036 It '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 . 8037 This miserable excuse of a movie runs on empty , believing Flatbush machismo will get it through . 8038 Expect to be reminded of other , better films , especially Seven , which director William Malone slavishly copies . 8039 Nair stuffs the film with dancing , henna , ornamentation , and group song , but her narrative clichés and telegraphed episodes smell of old soap opera . 8040 It 's getting harder and harder to ignore the fact that Hollywood is n't laughing with us , folks . 8041 It 's laughing at us . 8042 Might have been better off as a documentary , with less of Mr. Eyre 's uninspired dramatics and more of his sense of observation and outrage . 8043 Every good actor needs to do his or her own Hamlet . 8044 For Benigni it was n't Shakespeare whom he wanted to define his career with but Pinocchio . 8045 It might as well have been Problem Child IV . 8046 Arnold 's jump from little screen to big will leave frowns on more than a few faces . 8047 Both awful and appealing . 8048 The lack of opposing viewpoints soon grows tiresome -- the film feels more like a series of toasts at a testimonial dinner than a documentary . 8049 Nothing plot-wise is worth e-mailing home about . 8050 We are left with a superficial snapshot that , however engaging , is insufficiently enlightening and inviting . 8051 Helmer DeVito ... attempts to do too many things in this story about ethics , payola , vice , murder , kids ' TV and revenge . 8052 It would n't be my preferred way of spending 100 minutes or $ 7.00 . 8053 I hated every minute of it . 8054 -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 . 8055 Obvious politics and rudimentary animation reduce the chances that the appeal of Hey Arnold ! 8056 The Movie will reach far beyond its core demographic . 8057 There 's no mistaking the fact that this hybrid misses the impact of the Disney classic , and even that of the excellent 1934 MGM version . 8058 A 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 . 8059 Roger Michell , who did an appealing job directing Persuasion and Notting Hill in England , gets too artsy in his American debut . 8060 There 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 . 8061 Anthony Hopkins ? 8062 Big deal ! 8063 We 've already seen the prequel to The Silence of the Lambs and Hannibal -- and it was better the first time . 8064 Ostensibly celebrates middle-aged girl power , even as it presents friendship between women as pathetic , dysfunctional and destructive . 8065 If 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 . 8066 Pumpkin sits in a patch somewhere between mirthless Todd Solondzian satire and callow student film . 8067 Not 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 . 8068 It 's not that Waiting For Happiness is a bad film , because it is n't . 8069 It 's just incredibly dull . 8070 The 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 . 8071 A cumbersome and cliche-ridden movie greased with every emotional device known to man . 8072 Director Ferzan Ozpetek creates an interesting dynamic with the members of this group , who live in the same apartment building . 8073 But he loses his focus when he concentrates on any single person . 8074 Egoyan 's movie is too complicated to sustain involvement , and , if you 'll excuse a little critical heresy , too intellectually ambitious . 8075 It wants to be thought of as a subversive little indie film , but it has all the qualities of a modern situation comedy . 8076 Despite apparent motives to the contrary , it ends up being , like -LRB- Seinfeld 's -RRB- revered TV show , about pretty much nothing . 8077 Shadyac 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 . 8078 Plays less like a coming-of-age romance than an infomercial . 8079 There are a few laughs and clever sight gags scattered about , but not enough to make this anything more than another big-budget bust . 8080 The story 's so preposterous that I did n't believe it for a second , despite the best efforts of everyone involved . 8081 I 've heard that the fans of the first Men in Black have come away hating the second one . 8082 I wonder why . 8083 They felt like the same movie to me . 8084 Despite her relentless vim and winsome facial symmetry , Witherspoon is just too dialed-up to be America 's Sweetheart . 8085 An ultra-low-budget indie debut that smacks more of good intentions than talent . 8086 Birot is a competent enough filmmaker , but her story has nothing fresh or very exciting about it . 8087 De Niro and McDormand give solid performances , but their screen time is sabotaged by the story 's inability to create interest . 8088 Even those of a single digit age will be able to recognize that this story is too goofy ... even for Disney . 8089 That is essentially what 's missing from Blackboards -- the sense of something bigger , some ultimate point . 8090 A compendium of Solondz 's own worst instincts in under 90 minutes . 8091 If the title is a Jeopardy question , then the answer might be `` How does Steven Seagal come across these days ? '' 8092 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 ? '' 8093 It 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- . 8094 The story is familiar from its many predecessors ; like them , it eventually culminates in the not-exactly - stunning insight that crime does n't pay . 8095 You 'll have more fun setting fire to yourself in the parking lot . 8096 You 'll be more entertained getting hit by a bus . 8097 Dissing 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 . 8098 Ritchie '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 . 8099 Flat , but with a revelatory performance by Michelle Williams . 8100 Little more than a frothy vanity project . 8101 The film goes from being an unusual sci-fi character study to a chase flick that detracts from its ending . 8102 Verbinski substitutes atmosphere for action , tedium for thrills . 8103 For all its surface frenzy , High Crimes should be charged with loitering -- so much on view , so little to offer . 8104 The 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 . 8105 Alex Nohe 's documentary plays like a travelogue for what mostly resembles a real-life , big-budget NC-17 version of Tank Girl . 8106 The title Trapped turns out to be a pretty fair description of how you feel while you 're watching this ultra-manipulative thriller . 8107 The 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 . 8108 The story really has no place to go since Simone is not real -- she ca n't provide any conflict . 8109 IHOPs do n't pile on this much syrup . 8110 For 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 . 8111 focuses 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 . 8112 This 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 . 8113 A bit of an unwieldy mess . 8114 With 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 . 8115 The 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 . 8116 The 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 . 8117 A 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 . 8118 ... the last time I saw a theater full of people constantly checking their watches was during my SATs . 8119 ... fifty minutes of tedious adolescent melodramatics followed by thirty-five minutes of inflated nonsense . 8120 ... lacks the punch and verve needed to make this genre soar . 8121 It 's often faintly amusing , but the problems of the characters never become important to us , and the story never takes hold . 8122 It 's tough , astringent , darkly funny and ... well , it 's also generic , untidy , condescending and mild of impact rather than stunning . 8123 Largely a for-fans artifact . 8124 There '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 . 8125 Characters wander into predictably treacherous situations even though they should know better . 8126 There '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 . 8127 -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 . 8128 First-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 . 8129 No reason for anyone to invest their hard-earned bucks into a movie which obviously did n't invest much into itself either . 8130 A strong first quarter , slightly less so second quarter , and average second half . 8131 A boring , wincingly cute and nauseatingly politically correct cartoon guaranteed to drive anyone much over age 4 screaming from the theater . 8132 The 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 . 8133 When the first few villians are introduced as `` Spider '' and `` Snake '' you know you 're in for a real winner , creativity at its peak . 8134 An Afterschool Special without the courage of its convictions . 8135 The 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 . 8136 -LRB- Director -RRB- Byler may yet have a great movie in him , but Charlotte Sometimes is only half of one . 8137 So few movies explore religion that it 's disappointing to see one reduce it to an idea that fits in a sampler . 8138 It '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 . 8139 Watching it is rather like viewing a long soap opera in which only the first episode was any good . 8140 It 's fun , but a psychological mess , with Austin Powers bumping his head on the way out of the closet . 8141 There 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 . 8142 Could the whole plan here have been to produce something that makes Fatal Attraction look like a classic by comparison ? 8143 That 's the only sane rationale I can think of for Swimfan 's existence . 8144 I 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 . 8145 The 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 . 8146 I wonder what the reaction of Israelis will be to this supposedly evenhanded presentation . 8147 The film would work much better as a video installation in a museum , where viewers would be free to leave . 8148 Immediately . 8149 Human Nature initially succeeds by allowing itself to go crazy , but ultimately fails by spinning out of control . 8150 -LRB- It 's -RRB- a prison soccer movie starring charismatic tough guy Vinnie Jones , but it had too much spitting for me to enjoy . 8151 Not even the Hanson Brothers can save it 8152 The 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 . 8153 ... -LRB- a -RRB- strained comedy that jettisons all opportunities for Rock to make his mark by serving up the usual chaotic nonsense . 8154 A sour , nasty offering . 8155 Feels like one of those contrived , only-in - Hollywood productions where name actors deliver big performances created for the sole purpose of generating Oscar talk . 8156 Obstacles are too easily overcome and there is n't much in the way of character development in the script . 8157 It tells more than it shows . 8158 Earnest falls short of its Ideal predecessor largely due to Parker 's ill-advised meddling with the timeless source material . 8159 The film might have been more satisfying if it had , in fact , been fleshed out a little more instead of going for easy smiles . 8160 Pretentious editing ruins a potentially terrific flick . 8161 Not 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 '' . 8162 Do not , under any circumstances , consider taking a child younger than middle school age to this wallow in crude humor . 8163 Nothing debases a concept comedy quite like the grinding of bad ideas , and Showtime is crammed full of them . 8164 Much-anticipated and ultimately lackluster movie . 8165 This is really just another genre picture . 8166 Each 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 . 8167 William Shatner , as a pompous professor , is the sole bright spot ... 8168 A 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 . 8169 Neither funny nor suspenseful nor particularly well-drawn . 8170 Acting , particularly by Tambor , almost makes `` Never Again '' worthwhile , but -LRB- writer\/director -RRB- Schaeffer should follow his titular advice 8171 Both 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 . 8172 `` Collateral Damage '' goes by the numbers and reps decent action entertainment -- until the silly showdown ending that forces the viewer to totally suspend disbelief 8173 ` Enigma ' is a good name for a movie this delibrately obtuse and unapproachable . 8174 A waste of good performances . 8175 A 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 . 8176 I kept thinking over and over again , ' I should be enjoying this . ' 8177 But I was n't . 8178 As 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 . 8179 Like 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 . 8180 The 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 . 8181 Just like Hearst 's enormous yacht , it 's slow and unwieldy and takes a long time to reach its destination . 8182 There 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 . 8183 Where 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 . 8184 Why come up with something even quasi-original , when you can pillage from Shirley Jackson , Richard Matheson ... and puke up something like ROSE RED ? 8185 A broadly played , lowbrow comedy in which the cast delivers mildly amusing performances and no farm animals were injured by any of the gags . 8186 ... too gory to be a comedy and too silly to be an effective horror film . 8187 Lacks heart , depth and , most of all , purpose . 8188 Though a bit of a patchwork in script and production , a glossy , rich green , environment almost makes the picture work . 8189 perfectly enjoyable , instantly forgettable , nothing to write home about . 8190 Wasabi 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 . 8191 Somehow both wildly implausible and strangely conventional . 8192 This ill-fitting Tuxedo is strictly off-the-rack . 8193 The 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 . 8194 Sets up a nice concept for its fiftysomething leading ladies , but fails loudly in execution . 8195 Kidman 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 . 8196 Imagine 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 . 8197 This time Kaufman 's imagination has failed him . 8198 An intermittently pleasing but mostly routine effort . 8199 It becomes gimmicky instead of compelling . 8200 `` Interview '' loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into . 8201 ` Unfaithful ' cheats on itself and retreats to comfortable territory . 8202 Too bad . 8203 Frenetic but not really funny . 8204 Taken individually or collectively , the stories never add up to as much as they promise . 8205 If 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 . 8206 A didactic and dull documentary glorifying software anarchy . 8207 Sluggishly directed by episodic TV veteran Joe Zwick , it 's a sitcom without the snap-crackle . 8208 You could nap for an hour and not miss a thing . 8209 Director Clare Kilner 's debut is never as daft as it should have been . 8210 New Best Friend should n't have gone straight to video ; it should have gone straight to a Mystery Science Theater 3000 video . 8211 Wallace seems less like he 's been burning to tell a war story than he 's been itching to somehow tack one together 8212 The thrill is -LRB- long -RRB- gone . 8213 Began life as a computer game , then morphed into a movie -- a bad one , of course . 8214 Part 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 . 8215 Godawful boring slug of a movie . 8216 Dull , 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 . 8217 Scene-by-scene , things happen , but you 'd be hard-pressed to say what or why . 8218 ... an unimaginative , nasty , glibly cynical piece of work . 8219 It is , by conventional standards , a fairly terrible movie ... but it is also weirdly fascinating , a ready-made Eurotrash cult object . 8220 It is also , at times , curiously moving . 8221 The tug-of-war at the core of Beijing Bicycle becomes weighed down with agonizing contrivances , overheated pathos and long , wistful gazes . 8222 Vile and tacky are the two best adjectives to describe Ghost Ship . 8223 Some decent actors inflict big damage upon their reputations . 8224 Being author Wells ' great-grandson , you 'd think filmmaker Simon Wells would have more reverence for the material . 8225 But this costly dud is a far cry from either the book or the beloved film . 8226 Offensive 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 . 8227 Mark me down as a non-believer in werewolf films that are not serious and rely on stupidity as a substitute for humor . 8228 Thoughtless , random , superficial humour and a lot of very bad Scouse accents 8229 Aspires for the piquant but only really achieves a sort of ridiculous sourness . 8230 Accuracy 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 . 8231 For all its highfalutin title and corkscrew narrative , the movie turns out to be not much more than a shaggy human tale . 8232 A soggy , cliche-bound epic-horror yarn that ends up being even dumber than its title . 8233 One groan-inducing familiarity begets another . 8234 Although based on a real-life person , John , in the movie , is a rather dull person to be stuck with for two hours . 8235 Great story , bad idea for a movie . 8236 With 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 . 8237 There is no entry portal in The Rules of Attraction , and I spent most of the movie feeling depressed by the shallow , selfish , greedy characters . 8238 It 's hard to tell with all the crashing and banging where the salesmanship ends and the movie begins . 8239 `` My god , I 'm behaving like an idiot ! '' 8240 Yes , you are , Ben Kingsley . 8241 A dreadful live-action movie . 8242 Divertingly ridiculous , headbangingly noisy . 8243 An earnest racial-issues picture that might have gotten respectful critical praise in a different era -- say , the '60s . 8244 A hideous , confusing spectacle , one that may well put the nail in the coffin of any future Rice adaptations . 8245 All I can say is fuhgeddaboutit . 8246 Between bedroom scenes , viewers may find themselves wishing they could roll over and take a nap . 8247 If 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 . 8248 Despite 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 . 8249 Every bit as bogus as most Disney live action family movies are -- no real plot , no real conflict , no real point . 8250 A 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 . 8251 Never engaging , utterly predictable and completely void of anything remotely interesting or suspenseful . 8252 Spousal abuse is a major problem in contemporary society , but the film reduces this domestic tragedy to florid melodrama . 8253 Oedekerk wrote Patch Adams , for which he should not be forgiven . 8254 Why he was given free reign over this project -- he wrote , directed , starred and produced -- is beyond me . 8255 The creaking , rusty ship makes a fine backdrop , but the ghosts ' haunting is routine . 8256 Whatever Eyre 's failings as a dramatist , he deserves credit for bringing audiences into this hard and bitter place . 8257 Scotland , PA. blurs the line between black comedy and black hole . 8258 It tries too hard , and overreaches the logic of its own world . 8259 The whole damn thing is ripe for the Jerry Springer crowd . 8260 It 's all pretty cynical and condescending , too . 8261 I 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 . 8262 A boring , formulaic mix of serial killers and stalk 'n' slash . 8263 What you would end up with if you took Orwell , Bradbury , Kafka , George Lucas and the Wachowski Brothers and threw them into a blender . 8264 But that 's just the problem with it - the director has n't added enough of his own ingredients . 8265 With 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 . 8266 Flaunts its quirky excesses like a New Year 's Eve drunk sporting a paper party hat . 8267 Writhing 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 . 8268 ... too slow , too boring , and occasionally annoying . 8269 Is there enough material to merit a documentary on the making of Wilco 's last album ? 8270 Faultlessly professional but finally slight . 8271 Schmaltzy and unfunny , Adam Sandler 's cartoon about Hanukkah is numbingly bad , Little Nicky bad , 10 Worst List bad . 8272 It 's really yet another anemic and formulaic Lethal Weapon-derived buddy-cop movie , trying to pass off its lack of imagination as hip knowingness . 8273 Scotland , Pa. is a strangely drab romp . 8274 Some studio pizazz might have helped . 8275 When 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 . 8276 There 's more scatological action in 8 Crazy Nights than a proctologist is apt to encounter in an entire career . 8277 Too 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 . 8278 The cartoon is about as true to the spirit of the Festival of Lights as Mr. Deeds was to that of Frank Capra . 8279 ... the sum of the parts equals largely a confused mediocrity . 8280 The tone shifts abruptly from tense to celebratory to soppy . 8281 If we do n't demand a standard of quality for the art that we choose , we deserve the trash that we get . 8282 A modest and messy metaphysical thriller offering more questions than answers . 8283 Julia is played with exasperating blandness by Laura Regan . 8284 Morrissette 's script and direction show a fair amount of intelligence and wit -- but it does n't signify a whole lot either . 8285 There 's suspension of disbelief and then there 's bad screenwriting ... this film packs a wallop of the latter . 8286 All 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 . 8287 Mocking kung fu pictures when they were a staple of exploitation theater programming was witty . 8288 Mocking them now is an exercise in pointlessness . 8289 This is a particularly toxic little bonbon , palatable to only a chosen and very jaundiced few . 8290 This is n't just the CliffsNotes version of Nicholas Nickleby , it 's the CliffsNotes with pages missing . 8291 Considering the harsh locations and demanding stunts , this must have been a difficult shoot , but the movie proves rough going for the audience as well . 8292 Better at putting you to sleep than a sound machine . 8293 So clichéd that , at one point , they literally upset an apple cart . 8294 It '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 . 8295 It might be the first sci-fi comedy that could benefit from a Three 's Company-style laugh track . 8296 When the plot kicks in , the film loses credibility . 8297 Credibility sinks into a mire of sentiment . 8298 The movie takes itself too seriously and , as a result , it makes for only intermittent fun . 8299 -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 . 8300 Does n't amount to much of anything . 8301 Bullock 's complete lack of focus and ability quickly derails the film 8302 So stupid , so ill-conceived , so badly drawn , it created whole new levels of ugly . 8303 The truth is that The Truth About Charlie gets increasingly tiresome . 8304 Enduring love but exhausting cinema . 8305 Some of Seagal 's action pictures are guilty pleasures , but this one is so formulaic that it seems to be on auto-pilot . 8306 A ponderous meditation on love that feels significantly longer than its relatively scant 97 minutes . 8307 A long-winded and stagy session of romantic contrivances that never really gels like the shrewd feminist fairy tale it could have been . 8308 A little too pat for its own good . 8309 There are films that try the patience of even the most cinema-besotted critic -- and this was one of them . 8310 Watching 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 . 8311 Well-intentioned though it may be , its soap-opera morality tales have the antiseptic , preprogrammed feel of an after-school special . 8312 What would Jesus do if He was a film director ? 8313 He 'd create a movie better than this . 8314 When 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 . 8315 A very bad sign . 8316 It '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 . 8317 Ca n't kick about the assembled talent and the Russos show genuine promise as comic filmmakers . 8318 Still , this thing feels flimsy and ephemeral . 8319 Diane Lane shines in Unfaithful . 8320 Almost everything else is wan . 8321 I 'm afraid you wo n't get through this frankly fantastical by-the-numbers B-flick with just a suspension of disbelief . 8322 Rather , you 'll have to wrestle disbelief to the ground and then apply the chloroform-soaked handkerchief . 8323 So relentlessly wholesome it made me want to swipe something . 8324 The title helpfully offers the most succinct review of it you 'll read anywhere . 8325 The 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 . 8326 God 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 . 8327 Let 's cut to the consumer-advice bottom line : Stay home . 8328 Undercover Brother does n't go far enough . 8329 It 's just a silly black genre spoof . 8330 The film 's implicit premise is that the faith of the Tonga people is in every way inferior to that of John . 8331 Rates an ` E ' for effort -- and a ` B ' for boring . 8332 You 've already seen Heartbreak if you 've watched the far superior Nurse Betty or Sunset Boulevard . 8333 Even the unwatchable Soapdish is more original . 8334 Plays like one of those conversations that Comic Book Guy on `` The Simpsons '' has . 8335 A journey that 's too random and inconclusive to be compelling , but which Hoffman 's brilliance almost makes worth taking . 8336 The movie bounces all over the map . 8337 But buying into sham truths and routine `` indie '' filmmaking , Freundlich has made just another safe movie . 8338 It 's not horrible , just horribly mediocre . 8339 Not 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 . 8340 `` Juwanna Mann ? '' 8341 No thanks . 8342 Wewannour money back , actually . 8343 It 's a sometimes interesting remake that does n't compare to the brilliant original . 8344 You 're too conscious of the effort it takes to be this spontaneous . 8345 Feel bad for King , who 's honestly trying , and Schwartzman , who 's shot himself in the foot . 8346 Some actors steal scenes . 8347 Tom Green just gives them a bad odor . 8348 This self-infatuated goofball is far from the only thing wrong with the clumsy comedy Stealing Harvard , but he 's the most obvious one . 8349 Sometimes , fond memories should stay in the past : a lesson this film teaches all too well . 8350 The enormous comic potential of an oafish idiot impersonating an aristocrat remains sadly unrealized . 8351 Begins as a promising meditation on one of America 's most durable obsessions but winds up as a slender cinematic stunt . 8352 A monster combat thriller as impersonal in its relentlessness as the videogame series that inspired it . 8353 Proof 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 . 8354 The 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 . 8355 There '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 . 8356 In 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 . 8357 Director Barry Skolnick and his screenwriters glibly tick off every point of `` The Longest Yard '' playbook like a checklist . 8358 The 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 . 8359 Oh , it 's extreme , all right . 8360 Extremely dumb . 8361 Extremely confusing . 8362 Extremely boring . 8363 We never really feel involved with the story , as all of its ideas remain just that : abstract ideas . 8364 For a shoot - 'em - up , Ballistic is oddly lifeless . 8365 One 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 . 8366 What happened with Pluto Nash ? 8367 How did it ever get made ? 8368 We may never think of band camp as a geeky or nerdy thing again . 8369 Opens 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 . '' 8370 The result is solemn and horrifying , yet strangely detached . 8371 These spiders can outrun a motorcycle and wrap a person in a sticky cocoon in seconds , but they fall short of being interesting or entertaining . 8372 A long slog for anyone but the most committed Pokemon fan . 8373 Matthew McConaughey tries , and fails , to control the screen with swaggering machismo and over-the-top lunacy . 8374 How on earth , or anywhere else , did director Ron Underwood manage to blow $ 100 million on this ? 8375 Everyone connected to this movie seems to be part of an insider clique , which tends to breed formulaic films rather than fresh ones . 8376 With 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 . 8377 Its lack of quality earns it a place alongside those other two recent Dumas botch-jobs , The Man in the Iron Mask and The Musketeer . 8378 A benign but forgettable sci-fi diversion . 8379 The plot grinds on with yawn-provoking dullness . 8380 It 's never a good sign when a film 's star spends the entirety of the film in a coma . 8381 It 's a worse sign when you begin to envy her condition . 8382 It does n't help that the director and cinematographer Stephen Kazmierski shoot on grungy video , giving the whole thing a dirty , tasteless feel . 8383 Desperately unfunny when it tries to makes us laugh and desperately unsuspenseful when it tries to make us jump out of our seats . 8384 This 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 . 8385 John McTiernan 's botched remake may be subtler than Norman Jewison 's 1975 ultraviolent futuristic corporate-sports saga . 8386 It 's also stupider . 8387 Director Dirk Shafer and co-writer Greg Hinton ride the dubious divide where gay porn reaches for serious drama . 8388 Borrows from so many literary and cinematic sources that this future world feels absolutely deja vu . 8389 As -LRB- the characters -RRB- get more depressed , the story gets more tiresome , especially as it continues to mount a conspicuous effort to be profound . 8390 The acting by the over-25s lacks spark , with Csokas particularly unconnected . 8391 Though 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 . 8392 Falters 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 . 8393 The fight scenes are fun , but it grows tedious . 8394 Anyone who can count to five -LRB- the film 's target market ? -RRB- 8395 can see where this dumbed-down concoction is going . 8396 All this turns out to be neither funny nor provocative - only dull . 8397 Demme 's loose approach kills the suspense . 8398 This idea has lost its originality ... and neither star appears very excited at rehashing what was basically a one-joke picture . 8399 -LRB- Plays -RRB- in broad outline as pandering middle-age buddy-comedy . 8400 The film is itself a sort of cinematic high crime , one that brings military courtroom dramas down very , very low . 8401 Nothing more than a mediocre trifle . 8402 A turgid little history lesson , humourless and dull . 8403 Too silly to be frightening , too stolid to be funny , it projects the same lazy affability as its nominal star , David Arquette . 8404 If Kaufman kept Cameron Diaz a prisoner in a cage with her ape , in his latest , he 'd have them mate . 8405 Trivial where it should be profound , and hyper-cliched where it should be sincere . 8406 It would be hard to think of a recent movie that has worked this hard to achieve this little fun . 8407 Theology aside , why put someone who ultimately does n't learn at the center of a kids ' story ? 8408 All that -LRB- Powerpuff Girls -RRB- charm is present in the movie , but it 's spread too thin . 8409 Sometimes smart but more often sophomoric . 8410 The ill-conceived modern-day ending falls flat where it should deliver a moral punch . 8411 Collateral Damage is , despite its alleged provocation post-9 \/ 11 , an antique , in the end . 8412 As are its star , its attitude and its obliviousness . 8413 Dawdles 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 . 8414 Its save-the-planet message clashes with its crass marketing . 8415 A great idea becomes a not-great movie . 8416 ... watching this film nearly provoked me to take my own life . 8417 And if The Hours wins ` Best Picture ' I just might . 8418 By the end , I was looking for something hard with which to bludgeon myself unconscious . 8419 Not a movie but a live-action agitprop cartoon so shameless and coarse , it 's almost funny . 8420 Feels like six different movies fighting each other for attention . 8421 Life is a crock -- or something like it . 8422 Made by jackasses for jackasses . 8423 Despite a powerful portrayal by Binoche , it 's a period romance that suffers from an overly deliberate pace and uneven narrative momentum . 8424 The picture is a primer on what happens when lack of know-how mixes with lack of give-a-damn . 8425 Bartleby is a one-joke movie , and a bad joke at that . 8426 Given 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 . 8427 A bravura exercise in emptiness . 8428 Philip K. Dick must be turning in his grave , along with my stomach . 8429 Despite the premise of a good story ... it wastes all its star power on cliched or meaningless roles . 8430 All prints of this film should be sent to and buried on Pluto . 8431 Not only does the movie fail to make us part of its reality , it fails the most basic relevancy test as well . 8432 First good , then bothersome . 8433 Excellent acting and direction . 8434 This 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 8435 It 's difficult to say whether The Tuxedo is more boring or embarrassing -- I 'm prepared to call it a draw . 8436 Even as lame horror flicks go , this is lame . 8437 So routine , familiar and predictable , it raises the possibility that it wrote itself as a newly automated Final Draft computer program . 8438 Sunshine State lacks the kind of dynamic that Limbo offers , and in some ways is a rather indulgent piece . 8439 Even 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 . 8440 A long-winded , predictable scenario . 8441 Too close to Phantom Menace for comfort . 8442 Although 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 . 8443 Too clunky and too busy ribbing itself to be truly entertaining . 8444 This movie is about lying , cheating , but loving the friends you betray . 8445 It smacks of purely commercial motivation , with no great love for the original . 8446 Melanie eventually slugs the Yankee . 8447 Too bad the former Murphy Brown does n't pop Reese back . 8448 At the bottom rung of the series ' entries . 8449 A real clunker . 8450 A well-made , thoughtful , well-acted clunker , but a clunker nonetheless . 8451 A dreary rip-off of Goodfellas that serves as a muddled and offensive cautionary tale for Hispanic Americans . 8452 The picture , scored by a perversely cheerful Marcus Miller accordion\/harmonica\/banjo abomination , is a monument to bad in all its florid variety . 8453 Good 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 . 8454 ... a big , baggy , sprawling carnival of a movie , stretching out before us with little rhyme or reason . 8455 A frustrating combination of strained humor and heavy-handed sentimentality . 8456 Lawrence preaches strictly to the converted . 8457 As 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 . 8458 Will probably stay in the shadow of its two older , more accessible Qatsi siblings . 8459 Just when the movie seems confident enough to handle subtlety , it dives into soapy bathos . 8460 Choppy editing and too many repetitive scenes spoil what could have been an important documentary about stand-up comedy . 8461 ... 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 . 8462 The 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 . 8463 If you 're looking for comedy to be served up , better look elsewhere . 8464 It virtually defines a comedy that 's strongly mediocre , with funny bits surfacing every once in a while . 8465 An instant candidate for worst movie of the year . 8466 Despite its title , Amy 's Orgasm is not a porno , though it is as tedious as one . 8467 Like a tone-deaf singer at a benefit concert , John Q. is a bad movie appearing on behalf of a good cause . 8468 Adam Sandler is to Gary Cooper what a gnat is to a racehorse . 8469 What kids will discover is a new collectible . 8470 What parents will suspect is that they 're watching a 76-minute commercial . 8471 Beers , 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 . 8472 Without September 11 , Collateral Damage would have been just another bad movie . 8473 Now it 's a bad , embarrassing movie . 8474 Drags along in a dazed and enervated , drenched-in-the - past numbness . 8475 There 's a disturbing ` Great White Hope ' undertone to The Other Side of Heaven that subtly undermines its message of Christian love and compassion . 8476 Unless you are in dire need of a Diesel fix , there is no real reason to see it . 8477 Wait for video -- and then do n't rent it . 8478 The attempt is courageous , even if the result is wildly uneven . 8479 There 's something fundamental missing from this story : something or someone to care about . 8480 Too much of this well-acted but dangerously slow thriller feels like a preamble to a bigger , more complicated story , one that never materializes . 8481 When a film is created SOLELY because it 's a marketable product , soulless and ugly movies like this are the result . 8482 Let your silly childhood nostalgia slumber unmolested . 8483 Unfortunately , 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 . 8484 The more Kevin Costner rests on his pretty-boy laurels , the public is , regrettably , going to have tepid films like Dragonfly tossed at them . 8485 -LRB- It 's -RRB- difficult to get beyond the overall blandness of American Chai , despite its likable performances and refreshingly naive point of view . 8486 The 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 . 8487 Taken purely as an exercise in style , this oppressively gloomy techno-horror clambake is impossible to ignore . 8488 But as a movie , it 's a humorless , disjointed mess . 8489 If Myers decides to make another Austin Powers movie , maybe he should just stick with Austin and Dr Evil . 8490 The backyard battles you staged with your green plastic army men were more exciting and almost certainly made more sense . 8491 Too 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 . 8492 Overly 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 . 8493 What 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 . 8494 If this is satire , it 's the smug and self-congratulatory kind that lets the audience completely off the hook . 8495 Had the film boasted a clearer , more memorable , the creepiness would have gotten under the skin . 8496 These people would n't know subtle characterization if it put on a giant furry monster costume and then gave them a lapdance . 8497 Imagine if you will a Tony Hawk skating video interspliced with footage from Behind Enemy Lines and set to Jersey shore techno . 8498 It does n't quite work , but there 's enough here to make us look forward to the Russos ' next offering . 8499 Any film featuring young children threatened by a terrorist bomb can no longer pass as mere entertainment . 8500 The director 's twitchy sketchbook style and adroit perspective shifts grow wearisome amid leaden pacing and indifferent craftsmanship -LRB- most notably wretched sound design -RRB- . 8501 About as satisfying and predictable as the fare at your local drive through . 8502 Apparently kissing leads to suicide attempts and tragic deaths . 8503 Marisa Tomei is good , but Just A Kiss is just a mess . 8504 Opens at a funeral , ends on the protagonist 's death bed and does n't get much livelier in the three hours in between . 8505 The 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 . 8506 To portray modern women the way director Davis has done is just unthinkable . 8507 Too simple for its own good . 8508 Flaccid drama and exasperatingly slow journey . 8509 A chaotic panorama that 's too busy flying a lot of metaphoric flags . 8510 Suffers from rambling , repetitive dialogue and the visual drabness endemic to digital video . 8511 The screenplay sabotages the movie 's strengths at almost every juncture . 8512 All the characters are stereotypes , and their interaction is numbingly predictable . 8513 A trashy , exploitative , thoroughly unpleasant experience . 8514 Newcomer 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 . 8515 Should 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 . 8516 Often silly -- and gross -- but it 's rarely as moronic as some campus gross-out films . 8517 The advantage of a postapocalyptic setting is that it can be made on the cheap . 8518 Any rock pile will do for a set . 8519 Reign of Fire has the disadvantage of also looking cheap . 8520 The performances are so leaden , Michael Rymer 's direction is so bloodless and the dialogue is so corny that the audience laughs out loud . 8521 A subtle variation on I Spit On Your Grave in which our purported heroine pathologically avenges a hatred for men . 8522 Reggio 's trippy , ambitious downer can also sometimes come across like nothing more than a glorified Nike ad . 8523 As 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 . 8524 If 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 . 8525 The 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 . 8526 A 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 . 8527 An overstuffed compendium of teen-Catholic-movie dogma . 8528 Too leisurely paced and visually drab for its own good , it succeeds in being only sporadically amusing . 8529 Ben Affleck as Jack Ryan , Tom Clancy 's intrepid hero ? 8530 Ridiculous . 8531 What 's next ? 8532 D.J. Qualls as Indiana Jones ? 8533 Or Tom Green as Han Solo ? 8534 The movie 's biggest offense is its complete and utter lack of tension . 8535 The film is directed by Wally Wolodarsky from a script by Joe Jarvis and Greg Coolidge . 8536 These are names to remember , in order to avoid them in the future . 8537 If this is the resurrection of the Halloween franchise , it would have been better off dead . 8538 This formulaic chiller will do little to boost Stallone 's career . 8539 I 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 . 8540 Though Avary has done his best to make something out of Ellis ' nothing novel , in the end , his Rules is barely worth following . 8541 The average local news columnist has a bigger rant on the war between modern landscape architecture and small-town America . 8542 No 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 . 8543 The plot is so predictable and sentimental that viewers are likely to lose interest before Sandrine and her goats walk off into the sunset . 8544 At first , the sight of a blind man directing a film is hilarious , but as the film goes on , the joke wears thin . 8545 Never 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 . 8546 the 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 . 8547 Technically , the film is about as interesting as an insurance commercial . 8548 The title 's lameness should clue you in on how bad the movie is . 8549 The parts are better than the whole -LRB- bizarre , funny , tragic - like love in New York -RRB- . 8550 While 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 . 8551 The humor is hinged on the belief that knees in the crotch , elbows in the face and spit in the eye are inherently funny . 8552 It 's a movie forged in the fires of Chick Flick Hell . 8553 Its characters are thinner than cardboard -- or even comic-book paper . 8554 Any one episode of The Sopranos would send this ill-conceived folly to sleep with the fishes . 8555 Feels like the grittiest movie that was ever made for the Lifetime cable television network . 8556 Lanie '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 . 8557 Credit 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 8558 Denzel Washington 's efforts are sunk by all the sanctimony . 8559 If 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- . 8560 So faithful to the doldrums of the not-quite-urban , not-quite-suburban milieu as to have viewers recoiling from the reality check . 8561 Rambles on in a disjointed , substandard fashion from one poorly executed action sequence to the next . 8562 There 's an audience for it , but it could have been funnier and more innocent . 8563 I can only imagine one thing worse than Kevin Spacey trying on an Irish accent , and that 's sultry Linda Fiorentino doing the same thing . 8564 An awkward and indigestible movie . 8565 The movie has very little to offer besides unintentional laughs . 8566 Haneke keeps us at arm 's length . 8567 Guided more by intellect than heart , his story flattens instead of sharpens . 8568 All 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 . 8569 Like most sequels , it takes what worked last time , repeats it and adds more characters , more stunts , more stuff in attempt to camouflage its sameness . 8570 There 's no way to sort out the mess in our heads and deconstruct where it all went wrong . 8571 This is an hour and a half of daydreaming . 8572 Message movie or an action-packed submarine spectacular ? 8573 Alas , it 's neither . 8574 No movement , no yuks , not much of anything . 8575 ` Dragonfly ' is a movie about a bus wreck that turns into a film wreck . 8576 Thirty years ago , it would have been groundbreaking . 8577 Now it 's just tired . 8578 Heavy-handed exercise in time-vaulting literary pretension . 8579 The movie is too cute to take itself too seriously , but it still feels like it was made by some very stoned college students . 8580 A thinly veiled excuse for Wilson to play his self-deprecating act against Murphy 's well-honed prima donna shtick . 8581 A 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 . 8582 The movie succumbs to being nothing more than a formulaic chase in the dark . 8583 Plays as hollow catharsis , with lots of tears but very little in the way of insights . 8584 It will come as no surprise that the movie is n't scary . 8585 But here 's the real damn : It is n't funny , either . 8586 Quick : who wants to see a comedy about shoddy airport security ? 8587 The 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 . 8588 What 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 . 8589 Cho '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 . 8590 Looks awfully like one long tourist spot for a Mississippi that may never have existed outside of a scriptwriter 's imagination . 8591 The 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 . 8592 High Crimes miscasts nearly every leading character . 8593 The 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 . 8594 De 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 . 8595 I did n't believe for a moment in these villains or their plot . 8596 Another rent installment for the Ian Fleming estate . 8597 With 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 . 8598 So lazy and slipshod it confuses the mere flashing of kinky soft-core imagery with naughty fun . 8599 Though it draws several decent laughs , it 's low-cal Woody at best . 8600 Has little on its mind aside from scoring points with drag gags . 8601 Britney 's performance can not be faulted . 8602 Lucy 's a dull girl , that 's all . 8603 Well-shot but badly written tale set in a future ravaged by dragons . 8604 Sadly , Hewitt 's forte is leaning forward while wearing low-cut gowns , not making snappy comebacks . 8605 If Melville is creatively a great whale , this film is canned tuna . 8606 This film is so slick , superficial and trend-hoppy , that it 's easy to imagine that a new software program spit out the screenplay . 8607 Just one more collection of penis , breast and flatulence gags in search of a story . 8608 Or a profit . 8609 Or some damn thing . 8610 The 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 . 8611 Enough trivializes an important crisis , reduces it to an almost comic embarrassment . 8612 The makers have forsaken the entertaining elements of the original and , instead , rehash old jokes and leave any life at the doorstep . 8613 I like Frank the Pug , though . 8614 A 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 . 8615 Gee , a second assassin shot Kennedy ? 8616 Moot point . 8617 A hysterical yet humorless disquisition on the thin line between sucking face and literally sucking face . 8618 Needless to say , the dramatics that follow are utter hooey . 8619 The problem is that rather than dramatizing this premise , Mr. Desplechin is content to state it . 8620 Madonna still ca n't act a lick . 8621 Even 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 . 8622 If you pitch your expectations at an all time low , you could do worse than this oddly cheerful -- but not particularly funny -- body-switching farce . 8623 The episodic film makes valid points about the depersonalization of modern life . 8624 But the characters tend to be cliches whose lives are never fully explored . 8625 Serry does a fine job of capturing the climate of the times and , perhaps unwittingly , relating it to what is happening in America in 2002 . 8626 But hard-to-believe plot twists force the movie off track in its final half hour . 8627 Do n't let your festive spirit go this far . 8628 Though 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 . 8629 Hey , at least the title of this film lets you know exactly where it 's heading . 8630 Intended to be a comedy about relationships , this wretched work falls flat in just about every conceivable area . 8631 Sensitive though not quite revelatory documentary . 8632 Director 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 . 8633 ... perhaps the heaviest , most joyless movie ever made about giant dragons taking over the world . 8634 Suggests 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 . 8635 I 'd give real money to see the perpetrators of Chicago torn apart by dingoes . 8636 Movies like this are selling the old European candor , the old wink of ` bold ' revelation . 8637 But in 2002 , such revelations wilt . 8638 The timing in nearly every scene seems a half beat off . 8639 I admire it and yet can not recommend it , because it overstays its natural running time . 8640 A fairly by-the-books blend of action and romance with sprinklings of intentional and unintentional comedy . 8641 Flounders due to the general sense that no two people working on the production had exactly the same thing in mind . 8642 Even 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 . 8643 The story bogs down in a mess of purposeless violence . 8644 Despite some gulps the film is a fuzzy huggy . 8645 McKay deflates his piece of puffery with a sour cliche and heavy doses of mean-spiritedness 8646 A recipe for cinematic disaster ... part Quentin Tarantino , part Guy Ritchie , and part 1960s spy spoof , it 's all bad . 8647 The cumulative effect of the relentless horror on parade numbs the movie 's power as a work of drama . 8648 Another 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 . 8649 Aaliyah rarely dampens her diva persona enough to spark genuine chemistry with Townsend . 8650 When she speaks , her creepy Egyptian demigod voice is as computer processed and overproduced as it was in her music . 8651 Outrageousness is all Plympton seemed to be going for this time . 8652 We miss the quirky amazement that used to come along for an integral part of the ride . 8653 Much of what is meant to be ` inspirational ' and ` uplifting ' is simply distasteful to audiences not already sharing -LRB- the movie 's -RRB- mindset . 8654 Well before it 's over , Beijing Bicycle begins spinning its wheels . 8655 Home Alone goes Hollywood , a funny premise until the kids start pulling off stunts not even Steven Spielberg would know how to do . 8656 Besides , real movie producers are n't this nice . 8657 -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 . 8658 Passion , lip-synching , tragedy , and lots of really really high notes . 8659 For me , this opera is n't a favorite , so it 's a long time before the fat lady sings . 8660 Looks like a high school film project completed the day before it was due . 8661 Truth to tell , if you 've seen more than half-a-dozen horror films , there 's nothing here you have n't seen before . 8662 Abandons 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 . 8663 Even die-hard fans of Japanese animation ... will find this one a challenge . 8664 Filmmakers have to dig deep to sink this low . 8665 Fortunately for all involved , this movie is likely to disappear as quickly as an ice cube thrown into a pot of boiling water . 8666 The movie gets muted and routine . 8667 The issue of faith is not explored very deeply 8668 It '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 . 8669 The situations and jokes are as predictable and as lowbrow as the endless pratfalls the boys take in their high heels . 8670 It '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 . 8671 I was perplexed to watch it unfold with an astonishing lack of passion or uniqueness . 8672 K-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 . 8673 A very stylish but ultimately extremely silly tale ... a slick piece of nonsense but nothing more . 8674 Automatically pegs itself for the straight-to-video sci-fi rental shelf . 8675 The film is like a series of beginnings and middles that never take off . 8676 Feels less like it 's about teenagers , than it was written by teenagers . 8677 Ja Rule and Kurupt should have gotten to rap . 8678 It would have benefitted the dialogue . 8679 A standard haunted house tale transplanted to the high seas . 8680 Elicits more groans from the audience than Jar Jar Binks , Scrappy Doo and Scooby Dumb , all wrapped up into one . 8681 It 's badly acted , blandly directed , and could have been scripted by someone who just graduated from elementary school . 8682 In the end , White Oleander is n't an adaptation of a novel . 8683 It 's a flashy , star-splashed reduction . 8684 This film , starring Anthony Hopkins and Chris Rock , is your typical ` fish out of water ' story . 8685 You 've seen them a million times . 8686 Just one problem : Fish out of water usually die . 8687 This one does . 8688 The angst-ridden , affluent slacker characters are more grating than engaging . 8689 A soggy , shapeless mess ... just a dumb excuse for a waterlogged equivalent of a haunted-house movie . 8690 Men in Black II has sequel-itis something fierce . 8691 An ungainly , comedy-deficient , B-movie rush job ... 8692 A combination of standard , stiff TV-style animation and snazzy-looking digital effects that do little to disguise the fact that the characters barely move . 8693 An unsatisfying hybrid of Blair Witch and typical stalk-and-slash fare , where the most conservative protagonist is always the last one living . 8694 Say this for the soundtrack , it drowns out the lousy dialogue . 8695 After seeing SWEPT AWAY , I feel sorry for Madonna . 8696 Instead 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 . 8697 A 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 . 8698 Maudlin and melodramatic we expected . 8699 Boring we did n't . 8700 Never quite transcends jokester status ... and the punchline does n't live up to Barry 's dead-eyed , perfectly chilled delivery . 8701 The film 's bathos often overwhelms what could have been a more multifaceted look at this interesting time and place . 8702 It almost plays like Solaris , but with guns and jokes . 8703 A baffling misfire , and possibly the weakest movie -LRB- Woody Allen -RRB- has made in the last twenty years . 8704 It wo n't be long before you 'll spy I Spy at a video store near you . 8705 This film looks like it was produced in 1954 , shelved for 48 years , and repackaged for a 2002 audience . 8706 Propelled not by characters but by caricatures . 8707 There is not an ounce of honesty in the entire production . 8708 This extremely unfunny film clocks in at 80 minutes , but feels twice as long . 8709 Earnest 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 . 8710 The pivotal narrative point is so ripe the film ca n't help but go soft and stinky . 8711 For 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 . 8712 A predictable and stereotypical little B-movie . 8713 If 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 . 8714 Frustratingly , Dridi tells us nothing about El Gallo other than what emerges through his music . 8715 Places a slightly believable love triangle in a difficult-to-swallow setting , and then disappointingly moves the story into the realm of an improbable thriller . 8716 Stephen 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 . 8717 A very average science fiction film . 8718 Undone by its overly complicated and derivative screenplay , the glacier-paced direction and the stereotypical characters . 8719 How anyone over the age of 2 can stomach the touchy-feely message this preachy produce promotes is beyond us . 8720 The sort of movie that gives tastelessness a bad rap . 8721 The cold and dreary weather is a perfect metaphor for the movie itself , which contains few laughs and not much drama . 8722 The plot is straight off the shelf , the performances are television - caliber and the message of providing solace through deception is a little creepy . 8723 ordinary melodrama that is heavy on religious symbols but wafer-thin on dramatic substance 8724 A whimsical if predictable time-travel fable marred by a willful single-mindedness . 8725 Those 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 . 8726 Or , you can do something fun tonight . 8727 Jolie 's performance vanishes somewhere between her hair and her lips . 8728 As with too many studio pics , plot mechanics get in the way of what should be the lighter-than-air adventure . 8729 Static , repetitive , muddy and blurry , Hey Arnold ! 8730 would seem to have a lock on the title of ugliest movie of the year . 8731 For 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 . 8732 When it comes to entertainment , children deserve better than Pokemon 4Ever . 8733 What The Four Feathers lacks is genuine sweep or feeling or even a character worth caring about . 8734 While Benigni -LRB- who stars and co-wrote -RRB- seems to be having a wonderful time , he might be alone in that . 8735 Yes , 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 ? 8736 Preposterous and tedious , Sonny is spiked with unintentional laughter that , unfortunately , occurs too infrequently to make the film even a guilty pleasure . 8737 Calling this movie brainless would be paying it a compliment : it 's more like entertainment for trolls . 8738 None 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 . 8739 ... just a big mess of a movie , full of images and events , but no tension or surprise . 8740 As 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 . 8741 Splashes 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 . 8742 ... has virtually no script at all ... 8743 Will only satisfy those who ca n't tell the difference between the good , the bad and the ugly . 8744 This kind of dark comedy requires a delicate , surgical touch . 8745 But director Danny DeVito and screenwriter Adam Resnick -LRB- remember Cabin Boy ? -RRB- 8746 just pound away . 8747 At 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 . 8748 Rather quickly , the film falls into a soothing formula of brotherly conflict and reconciliation . 8749 Screenwriters Scott Abbott and Michael Petroni have turned Rice 's complex Akasha into a cartoon monster . 8750 The writers , director Wally Wolodarsky , and all the actors should start their own coeducational fraternity : Kappa Rho Alpha Phi . 8751 Bad beyond belief and ridiculous beyond description . 8752 The new faces are interesting , but the old story is n't , especially when it starts to seem more improvised than scripted . 8753 Most of the action setups are incoherent . 8754 Liman , 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 . 8755 ... surprisingly inert for a movie in which the main character travels back and forth between epochs . 8756 The 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 . 8757 Dreary , highly annoying ... ` Some Body ' will appeal to No One . 8758 There 's something deeply creepy about Never Again , a new arrow in Schaeffer 's quiver of ineptitudes . 8759 The problem with concept films is that if the concept is a poor one , there 's no saving the movie . 8760 Sorry , Charlie 8761 A painfully leaden film destined for pre-dawn cable television slots . 8762 Blessed with immense physical prowess he may well be , but Ahola is simply not an actor . 8763 And in truth , cruel as it may sound , he makes Arnold Schwarzenegger look like Spencer Tracy . 8764 The 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 . 8765 Shocking only in that it reveals the filmmaker 's bottomless pit of self-absorption . 8766 This 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 . 8767 All ends well , sort of , but the frenzied comic moments never click . 8768 If 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 . 8769 Formula 51 is so trite that even Yu 's high-energy action stylings ca n't break through the stupor . 8770 Only 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 . 8771 When the painted backdrops in a movie are more alive than its characters , you know you 're in trouble . 8772 -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 . 8773 The film is really not so much bad as bland . 8774 The central story lacks punch . 8775 Though 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 . 8776 This may be the dumbest , sketchiest movie on record about an aspiring writer 's coming-of-age . 8777 Succumbs to the same kind of maudlin , sentimental mysticism that mars the Touched by an Angel school of non-God spiritual-uplift movies . 8778 A harmless and mildly amusing family comedy . 8779 What was subtle and mystifying in the novella is now broad and farcical . 8780 The kids often appear to be reading the lines and are incapable of conveying any emotion . 8781 `` Men in Black II , '' has all the earmarks of a sequel . 8782 The story is less vibrant , the jokes are a little lukewarm , but will anyone really care ? 8783 Sucking 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 ... 8784 This 72-minute film does have some exciting scenes , but it 's a tad slow . 8785 While Super Troopers is above Academy standards , its quintet of writers could still use some more schooling . 8786 A mix of velocity and idiocy , this ruinous remake lacks the brawn -- and the brains -- of the 1970s original . 8787 The low-budget Full Frontal was one of the year 's murkiest , intentionally obscure and self-indulgent pictures , and Solaris is its big-budget brother . 8788 The 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 . 8789 The film seems all but destined to pop up on a television screen in the background of a scene in a future Quentin Tarantino picture 8790 A free-for-all of half-baked thoughts , clumsily used visual tricks and self-indulgent actor moments . 8791 Apallingly absurd ... the chemistry or lack thereof between Newton and Wahlberg could turn an Imax theater into a 9 '' black and white portable TV . 8792 A well acted and well intentioned snoozer . 8793 The smug , oily demeanor that Donovan adopts throughout the stupidly named Pipe Dream is just repulsive . 8794 Must-see viewing for anyone involved in the high-tech industry . 8795 Others may find it migraine-inducing , despite Moore 's attempts at whimsy and spoon feeding . 8796 Despite its good nature and some genuinely funny moments , Super Troopers suffers from a bad case of arrested development . 8797 It 's hard not to feel you 've just watched a feature-length video game with some really heavy back story . 8798 I watched the brainless insanity of No Such Thing with mounting disbelief . 8799 This 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 . 8800 Kwan makes the mix-and - match metaphors intriguing , while lulling us into torpor with his cultivated allergy to action . 8801 While obviously an extremely personal work , it remains inextricably stuck in an emotionally unavailable rut . 8802 Any movie this boring should be required to have ushers in the theater that hand you a cup of coffee every few minutes . 8803 Like a marathon runner trying to finish a race , you need a constant influx of liquid just to get through it . 8804 I loved looking at this movie . 8805 I just did n't care as much for the story . 8806 Has all the poignancy of a Hallmark card and all the comedy of a Gallagher stand-up act . 8807 It does n't do the original any particular dishonor , but neither does it exude any charm or personality . 8808 fear dot com is so rambling and disconnected it never builds any suspense . 8809 A gorgeous , somnolent show that is splendidly mummified and thoroughly unsurprising . 8810 A 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 . 8811 It feels like a community theater production of a great Broadway play : Even at its best , it will never hold a candle to the original . 8812 The film apparently takes place in a fantasy world where people in hotel hallways recite poetry in voice-over instead of speaking to each other . 8813 The element of surprise might be the only thing Femme Fatale has going for it . 8814 It '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 . 8815 Maybe it 's asking too much , but if a movie is truly going to inspire me , I want a little more than this . 8816 A graceless , witless attempt at mating Some Like It Hot with the WWII espionage thriller . 8817 The story and characters are nowhere near gripping enough . 8818 Based on a David Leavitt story , the film shares that writer 's usual blend of observant cleverness , too-facile coincidence and slightly noxious preciousness . 8819 Just like every other Seagal movie , only louder and without that silly ponytail . 8820 To enjoy this movie 's sharp dialogue and delightful performance by Jolie and Burns , you have to gloss over the no sense ending . 8821 National Lampoon 's Van Wilder could be the worst thing to come out of National Lampoon since Class Reunion 8822 This 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 . 8823 Ecks this one off your must-see list . 8824 Overall , the film misses the brilliance of Jelinek 's novel by some way . 8825 It settles for being merely grim . 8826 The Irwins emerge unscathed , but the fictional footage is unconvincing and criminally badly acted . 8827 It 's not thirsty , consuming passion which drives this movie . 8828 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 . 8829 Just because it really happened to you , honey , does n't mean that it 's interesting to anyone else . 8830 Just 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 . 8831 Every so often a movie comes along that confirms one 's worse fears about civilization as we know it . 8832 The New Guy is one of them . 8833 This is n't a `` Friday '' worth waiting for . 8834 Everything that 's worthwhile about Collision Course can already be seen on television . 8835 If this movie belonged to a sorority , it would be called Beta Alpha Delta . 8836 Not 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 . 8837 Uneasy mishmash of styles and genres . 8838 Herzog 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 . 8839 All in all , there 's only one thing to root for : expulsion for everyone . 8840 Beyond a handful of mildly amusing lines ... there just is n't much to laugh at . 8841 Secret Ballot is too contemplative to be really funny . 8842 The film 's center will not hold . 8843 Myers 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 . 8844 Too lazy to take advantage of its semi-humorous premise . 8845 A great ending does n't make up for a weak movie , and Crazy as Hell does n't even have a great ending . 8846 Dialogue-heavy and too cerebral for its own good -- or , at any rate , too cerebral for its racy subject matter . 8847 Its over-reliance on genre conventions , character types and formulaic conflict resolutions crushes all the goodwill it otherwise develops . 8848 As an actor , The Rock is aptly named . 8849 A mostly tired retread of several other mob tales . 8850 I wish I could say `` Thank God It 's Friday '' , but the truth of the matter is I was glad when it was over . 8851 Nothing about it fits . 8852 As it abruptly crosscuts among the five friends , it fails to lend the characters ' individual stories enough dramatic resonance to make us care about them . 8853 Somehow 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 . 8854 The cast is so low-wattage that none of the characters comes off as big ... and the setting remains indistinct . 8855 Consider the title 's clunk-on-the-head that suggests the overtime someone put in to come up with an irritatingly unimaginative retread concept . 8856 The movie quickly drags on becoming boring and predictable . 8857 I tried to read the time on my watch . 8858 The film makes a tragic error by going on for too long , trying to mirror every subsequent event in Chinese history : war , revolution , Communism , etc. . 8859 Johnson has , in his first film , set himself a task he is not nearly up to . 8860 Ultimately the project comes across as clinical , detached , uninvolving , possibly prompting audience members to wonder , ` What 's the point ? ' 8861 The 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 . 8862 The film meant well in its horse tale about freedom , but was n't able to reach the heart because it was too overbearing . 8863 The 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 . 8864 Once the audience figure out what 's being said , the filmmaker 's relative passivity will make it tough for them to really care . 8865 There 's nothing provocative about this film save for the ways in which it studiously avoids provoking thought . 8866 It seems just a long , convoluted ploy to get men into drag -- period drag , no less . 8867 The 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 . 8868 Even by dumb action-movie standards , Ballistic : Ecks vs. Sever is a dumb action movie . 8869 The film equivalent of a toy chest whose contents get scattered over the course of 80 minutes . 8870 Just a bloody mess . 8871 Creepy but ultimately unsatisfying thriller . 8872 You 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 . 8873 Has 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 . 8874 Bears is bad . 8875 Not ` terrible filmmaking ' bad , but more like , ' I once had a nightmare like this , and it 's now coming true ' bad . 8876 As is most commonly case with projects such noble and lofty ambitions , the film is less poetic than simply pretentious . 8877 George , hire a real director and good writers for the next installment , please . 8878 For a film about two mismatched buddies , Crystal and De Niro share little screen time and even less chemistry . 8879 However 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 . 8880 Extreme Oops - oops , ops , no matter how you spell it , it 's still a mistake to go see it . 8881 What could and should have been biting and droll is instead a tepid waste of time and talent . 8882 What will , most likely , turn out to be the most repellent movie of 2002 . 8883 ... too dull to enjoy . 8884 A 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 . 8885 Here 's a self-congratulatory 3D IMAX rah-rah . 8886 Eastwood is an icon of moviemaking , one of the best actors , directors and producers around , responsible for some excellent work . 8887 But even a hero can stumble sometimes . 8888 A sophomoric exploration of ` life problems ' most people solved long ago -- or at least got tired of hearing people kvetch about . 8889 It 's all very cute , though not terribly funny if you 're more than six years old . 8890 The impact of the Armenian genocide is diluted by too much stage business in the modern day . 8891 Going to the website may be just as fun -LRB- and scary -RRB- as going to the film . 8892 Lacking gravitas , MacDowell is a placeholder for grief , and ergo this sloppy drama is an empty vessel . 8893 Leave these Flowers unpicked -- they 're dead on the vine . 8894 Admirable , certainly , but not much fun to watch . 8895 For Caine Lovers only . 8896 A shambles of a movie -- visually unattractive , unbearably loud and utterly silly ... its hilarity is completely unintentional . 8897 De Niro may enjoy the same free ride from critics afforded to Clint Eastwood in the lazy Bloodwork . 8898 But like Bruce Springsteen 's gone-to-pot Asbury Park , New Jersey , this sad-sack waste of a movie is a City of ruins . 8899 No , it 's not nearly as good as any of its influences . 8900 A reasonably efficient mechanism , but it offers few surprises and finds its stars slumming in territory they should have avoided . 8901 The rest of the plot is impossible to explain without blowing whatever tension there is , although it 's more comedy than suspense De Palma creates . 8902 Human Nature talks the talk , but it fails to walk the silly walk that distinguishes the merely quirky from the surreal . 8903 City by the Sea is the cinematic equivalent of defensive driving : It 's careful , conscientious and makes no major mistakes . 8904 But what saves lives on the freeway does not necessarily make for persuasive viewing . 8905 The Marquis de Sade could n't have been as dull a person as this film makes him out to be . 8906 What could have been a neat little story about believing in yourself is swamped by heavy-handed melodrama . 8907 The cast is uniformly excellent ... but the film itself is merely mildly charming . 8908 Drives for the same kind of bittersweet , conciliatory tone that Three Seasons achieved but loses its way in rhetorical excess and blatant sentimentality . 8909 A bigger holiday downer than your end-of-year 401 -LRB- k -RRB- statement . 8910 The whole thing plays out with the drowsy heaviness of synchronized swimmer wearing a wool wetsuit . 8911 Fairly successful at faking some pretty cool stunts but a complete failure at trying to create some pretty cool characters . 8912 And forget about any attempt at a plot ! 8913 It 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 . 8914 Take 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 . 8915 It '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 . 8916 Showtime is closer to Slowtime . 8917 It may be an easy swipe to take , but this Barbershop just does n't make the cut . 8918 The Weight of Water uses water as a metaphor for subconscious desire , but this leaky script barely stays afloat . 8919 ` How many more voyages can this limping but dearly-loved franchise survive ? ' 8920 Despite 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 . 8921 Fans of the TV series will be disappointed , and everyone else will be slightly bored . 8922 The only element of suspense is whether the movie will change titles or distributors again before the closing credits roll . 8923 Barely goes beyond comic book status . 8924 It 's disappointing when filmmakers throw a few big-name actors and cameos at a hokey script . 8925 I Spy is an embarrassment , a monotonous , disjointed jumble of borrowed plot points and situations . 8926 It 's as flat as an open can of pop left sitting in the sun . 8927 An eccentric little comic\/thriller deeply in love with its own quirky personality . 8928 Afraid to pitch into farce , yet only half-hearted in its spy mechanics , All the Queen 's Men is finally just one long drag . 8929 Maybe it 's the star power of the cast or the redundant messages , but something aboul `` Full Frontal '' seems , well , contrived . 8930 -LRB- Morgan -RRB- , Judd and Franklin ca n't save the script , rooted in a novel by Joseph Finder , from some opportunism . 8931 Passably entertaining but also mechanical and joyless . 8932 Safe Conduct , however ambitious and well-intentioned , fails to hit the entertainment bull 's - eye . 8933 My response to the film is best described as lukewarm . 8934 Maybe I found the proceedings a little bit too conventional . 8935 Too timid to bring a sense of closure to an ugly chapter of the twentieth century . 8936 It '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 . 8937 It 's too long , too repetitive , and takes way too many years to resolve to be a total winner . 8938 A sudsy cautionary tale . 8939 A movie that tries to fuse the two ` woods ' but winds up a Bolly-Holly masala mess . 8940 Mr. Wedge and Mr. Saldanha handle the mix of verbal jokes and slapstick well . 8941 Their film falters , however , in its adherence to the Disney philosophy of required poignancy , a salute that I 'd hoped the movie would avoid . 8942 Leaves you with a knot in your stomach , its power is undercut by its own head-banging obviousness . 8943 Watching it is rather like an overlong visit from a large group of your relatives . 8944 As your relatives swap one mundane story after another , you begin to wonder if they are ever going to depart . 8945 Unfortunately , as a writer , Mr. Montias is n't nearly as good to his crew as he is as a director or actor . 8946 On 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 . 8947 The 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 . 8948 One 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 . 8949 ... this movie has a glossy coat of action movie excess while remaining heartless at its core . 8950 Murder By Numbers is like a couple of mediocre TV-movie - of-the-week films clumsily stuck together . 8951 The film is surprisingly well-directed by Brett Ratner , who keeps things moving well -- at least until the problematic third act . 8952 Warmed-over Tarantino by way of wannabe Elmore Leonard . 8953 -LRB- Sen 's -RRB- soap opera-ish approach undermines his good intentions . 8954 Showtime 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 . 8955 Sushi for the connoisseurs of the macabre . 8956 Do n't waste your money . 8957 Though certainly original in form , Altar Boys requires a taste for Swamp Thing-type animation , doubled with a deafening score . 8958 There are n't many laughs in this interesting study of the cultural mores of Georgian Jews in Tel Aviv . 8959 There 's not enough to sustain the comedy . 8960 Like 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 . 8961 We may get the full visceral impact of a ruthless army on the warpath but no sense of the devilish complexity of the Balkans conflict . 8962 You 're better off staying home and watching The X-Files . 8963 Chaotic , 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 . 8964 Bears 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 . 8965 This 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 . 8966 Friday After Next has the same problem that Next Friday did -- it 's called Where 's Chris Tucker When You Need Him ? 8967 This film is full of rabbits . 8968 Brimful . 8969 But like most rabbits , it seems to lack substance . 8970 I 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 . 8971 I kept wishing I was watching a documentary about the wartime Navajos and what they accomplished instead of all this specious Hollywood hoo-ha . 8972 No number of fantastic sets , extras , costumes and spectacular locales can disguise the emptiness at the center of the story . 8973 A movie far more cynical and lazy than anything a fictitious Charlie Kaufman might object to . 8974 Could The Country Bears really be as bad as its trailers ? 8975 In a word -- yes . 8976 If High Crimes were any more generic it would have a universal product code instead of a title . 8977 Reggio falls victim to relying on the very digital technology that he fervently scorns , creating a meandering , inarticulate and ultimately disappointing film . 8978 The movie makes absolutely no sense . 8979 Its underlying mythology is a hodgepodge of inconsistencies that pose the question : Since when did dumb entertainment have to be this dumb ? 8980 The problem with this film is that it 's forced to make its characters idiots in order to advance the plot . 8981 Had anyone here done anything remotely intelligent , we all could have stopped watching long ago . 8982 Despite the authenticity of the trappings , the film is overblown in its plotting , hackneyed in its dialogue and anachronistic in its style . 8983 Murder and mayhem of this sort quickly becomes monotonous . 8984 The journey toward redemption feels more like a cinematic experiment than a full-blown movie . 8985 That Zhang would make such a strainingly cute film -- with a blind orphan at its center , no less -- indicates where his ambitions have wandered . 8986 The Gantzes ' interviews tend to let the guys off the hook . 8987 The 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 . 8988 This is a good movie in spurts , but when it does n't work , it 's at important times . 8989 Parker 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 . 8990 Flotsam in the sea of moviemaking , not big enough for us to worry about it causing significant harm and not smelly enough to bother despising . 8991 A TV episode inflated past its natural length . 8992 Involving at times , but lapses quite casually into the absurd . 8993 All 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 . 8994 There are weird resonances between actor and role here , and they 're not exactly flattering . 8995 The unceasing sadism is so graphically excessive , the director just ends up exposing his own obsession . 8996 The story ... is moldy and obvious . 8997 It '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 . 8998 Suffocated at conception by its Munchausen-by-proxy mum . 8999 Punish the vehicle to adore the star . 9000 Even if Britney Spears is really cute , her movie is really bad . 9001 Big Fat Liar is just futile silliness looking to tap into the kiddie sensibilities . 9002 Usually when I get this much syrup , I like pancakes to go with it . 9003 All the necessary exposition prevents the picture from rising above your generic sand 'n' sandal adventure . 9004 Glib , satirical documentary that fudges facts , makes facile points and engages in the cinematic equivalent of tabloid journalism . 9005 Gangs of New York is an unapologetic mess , whose only saving grace is that it ends by blowing just about everything up . 9006 An overblown clunker full of bad jokes , howling cliches and by-the-numbers action sequences . 9007 Without a strong script and energetic acting , Dogma films can produce the same sleep-inducing effects as watching your neighbor 's home videos . 9008 A mild , reluctant , thumbs down . 9009 Strong setup and ambitious goals fade as the film descends into unsophisticated scare tactics and B-film thuggery . 9010 Schindler 's List it ai n't . 9011 A cinematic sleeping pill of impressive potency . 9012 It 's an awfully derivative story . 9013 The movie barely makes sense , with its unbelievable naïveté and arbitrary flashbacks . 9014 It 's an earnest debut full of heartfelt performances , but is ultimately let down by a story that is all too predictable . 9015 About as cutting-edge as Pet Rock : The Movie . 9016 With generic sets and B-grade special effects , Jason is about as convincing on the sci-fi front as TV 's defunct Cleopatra 2525 . 9017 Not sweet enough to liven up its predictable story and will leave even fans of hip-hop sorely disappointed . 9018 Winds up feeling like lots of other quirky movies that try to score hipness points with young adults . 9019 Oft-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 9020 The pacing is glacial , the screenplay is stiff as a board , and things heat up only in the movie 's final scenes . 9021 The premise is overshadowed by the uberviolence of the Clericks as this becomes just another kung-fu sci-fi movie with silly action sequences . 9022 With its hints of a greater intelligence lurking somewhere , The Ring makes its stupidity more than obvious . 9023 It 's painful . 9024 Pumpkin struts about with `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back . 9025 An uneven film dealing with too many problems to be taken seriously . 9026 Sheridan ... smoothes over sources of conflict that could have lent the film a bit more depth . 9027 An atonal estrogen opera that demonizes feminism while gifting the most sympathetic male of the piece with a nice vomit bath at his wedding . 9028 Half 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 . 9029 Writer\/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 . 9030 -LRB- Newton -RRB- wanders through CHARLIE completely unaware she needs to show some presence and star quality . 9031 Unfortunately , the picture failed to capture me . 9032 I found it slow , drab , and bordering on melodramatic . 9033 A lousy movie that 's not merely unwatchable , but also unlistenable . 9034 The best way to hope for any chance of enjoying this film is by lowering your expectations . 9035 Then lower them a bit more . 9036 When 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 . 9037 Cliches are as thick as the cigarette smoke . 9038 A woozy , roisterous , exhausting mess , and the off-beat casting of its two leads turns out to be as ill-starred as you might expect . 9039 ` Abandon all hope , ye who enter here ' ... you should definitely let Dante 's gloomy words be your guide . 9040 What 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 . 9041 A grim , flat and boring werewolf movie that refuses to develop an energy level . 9042 Birot 's directorial debut -LRB- she co-wrote the script with Christophe Honoré -RRB- is n't so much bad as it is bland . 9043 Watching the film is like reading a Times Portrait of Grief that keeps shifting focus to the journalist who wrote it . 9044 Enough similarities to Gymkata and Howie Long 's Firestorm that my fingernails instinctively crawled towards my long-suffering eyeballs . 9045 Succeeds in providing a disquiet world the long-dreaded completion of the Police Academy series . 9046 Christians 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 . 9047 If 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 . 9048 A frantic search for laughs , with a hit-to-miss ratio that does n't exactly favour the audience . 9049 Like a documentary version of Fight Club , shorn of social insight , intellectual pretension and cinematic interest . 9050 `` An entire film about researchers quietly reading dusty old letters . '' 9051 Pryor Lite , with half the demons , half the daring , much less talent , many fewer laughs . 9052 What 's at stake in this film is nothing more than an obsolete , if irritating , notion of class . 9053 The stories here suffer from the chosen format . 9054 While 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 . 9055 Just how extreme are these ops ? 9056 I regret to report that these ops are just not extreme enough . 9057 The actors are forced to grapple with hazy motivations that never come into focus . 9058 John Leguizamo may be a dramatic actor -- just not in this movie . 9059 The sequel has turned completely and irrevocably bizarre to the point of utter nonsense . 9060 Hardly 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 . 9061 Build 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 . 9062 Rainy days and movies about the disintegration of families always get me down . 9063 ... 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 . 9064 The Master Of Disaster - it 's a piece of dreck disguised as comedy . 9065 The 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 . 9066 The stupidest , most insulting movie of 2002 's first quarter . 9067 It '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 . 9068 A film so tedious that it is impossible to care whether that boast is true or not . 9069 None of this violates the letter of Behan 's book , but missing is its spirit , its ribald , full-throated humor . 9070 Bad Company leaves a bad taste , not only because of its bad-luck timing , but also the staleness of its script . 9071 Even if it ultimately disappoints , the picture does have about a matinee admission 's worth of funny to keep it afloat . 9072 Fails to bring as much to the table . 9073 A film made with as little wit , interest , and professionalism as artistically possible for a slummy Hollywood caper flick . 9074 Disturbingly superficial in its approach to the material . 9075 If you 're not the target demographic ... this movie is one long chick-flick slog . 9076 I hate this movie 9077 It '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 . 9078 Gooding and Coburn are both Oscar winners , a fact which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable . 9079 At 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 9080 ... pitiful , slapdash disaster . 9081 A DOA dud from frame one . 9082 Jaw-droppingly superficial , straining to get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company . 9083 There are plenty of scenes in Frida that do work , but rarely do they involve the title character herself . 9084 Although 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 . 9085 The dark and bittersweet twist feels strange as things turn nasty and tragic during the final third of the film . 9086 First-timer John McKay is never able to pull it back on course . 9087 Distances you by throwing out so many red herrings , so many false scares , that the genuine ones barely register . 9088 Godard uses his characters -- if that 's not too glorified a term -- as art things , mouthpieces , visual motifs , blanks . 9089 The movie generates plot points with a degree of randomness usually achieved only by lottery drawing . 9090 A predictable , manipulative stinker . 9091 The story passes time until it 's time for an absurd finale of twisted metal , fireballs and revenge . 9092 Eastwood winces , clutches his chest and gasps for breath . 9093 It 's a spectacular performance - ahem , we hope it 's only acting . 9094 The movie suffers from two fatal ailments -- a dearth of vitality and a story that 's shapeless and uninflected . 9095 It 's just weirdness for the sake of weirdness , and where Human Nature should be ingratiating , it 's just grating . 9096 An ambitiously naturalistic , albeit half-baked , drama about an abused , inner-city autistic teen . 9097 once she lets her love depraved leads meet , -LRB- Denis ' -RRB- story becomes a hopeless , unsatisfying muddle 9098 The dose is strong and funny , for the first 15 minutes anyway ; after that , the potency wanes dramatically . 9099 The people in ABC Africa are treated as docile , mostly wordless ethnographic extras . 9100 What '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 . 9101 No doubt the star and everyone else involved had their hearts in the right place . 9102 Where their heads were is anyone 's guess . 9103 Call me a cynic , but there 's something awfully deadly about any movie with a life-affirming message . 9104 A gratingly unfunny groaner littered with zero-dimensional , unlikable characters and hackneyed , threadbare comic setups . 9105 Got 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 . 9106 A painfully slow cliche-ridden film filled with more holes than Clyde Barrow 's car . 9107 Like leafing through an album of photos accompanied by the sketchiest of captions . 9108 I guess it just goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen . 9109 Gaghan captures the half-lit , sometimes creepy intimacy of college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing . 9110 Feels less like a change in -LRB- Herzog 's -RRB- personal policy than a half-hearted fluke . 9111 One of the most unpleasant things the studio has ever produced . 9112 Will anyone who is n't a Fangoria subscriber be excited that it has n't gone straight to video ? 9113 A selection of scenes in search of a movie . 9114 -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 . 9115 Will 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 . 9116 True to its animatronic roots : ... as stiff , ponderous and charmless as a mechanical apparatus ... ` The Country Bears ' should never have been brought out of hibernation . 9117 -LRB- Evans is -RRB- a fascinating character , and deserves a better vehicle than this facetious smirk of a movie . 9118 The script 's judgment and sense of weight is way , way off . 9119 You 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 . 9120 Evelyn 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 . 9121 A derivative collection of horror and sci-fi cliches . 9122 Loosely speaking , we 're in All of Me territory again , and , strictly speaking , Schneider is no Steve Martin . 9123 As 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 . 9124 Limps along on a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very , very slowly . 9125 Just the sort of lazy tearjerker that gives movies about ordinary folk a bad name . 9126 The redeeming feature of Chan 's films has always been the action , but the stunts in The Tuxedo seem tired and , what 's worse , routine . 9127 While 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 . 9128 Has all the scenic appeal of a cesspool . 9129 A rambling ensemble piece with loosely connected characters and plots that never quite gel . 9130 A Lifetime movie about men . 9131 The Balkans provide the obstacle course for the love of a good woman . 9132 It 's hard to say who might enjoy this , are there Tolstoy groupies out there ? 9133 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 9134 This is a movie that starts out like Heathers , then becomes Bring it On , then becomes unwatchable . 9135 The screenplay flounders under the weight of too many story lines . 9136 I think it was Plato who said , ' I think , therefore I know better than to rush to the theatre for this one . ' 9137 If 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 . 9138 This is rote drivel aimed at Mom and Dad 's wallet . 9139 Contrived , maudlin and cliche-ridden ... if this sappy script was the best the contest received , those rejected must have been astronomically bad . 9140 I hate the feeling of having been slimed in the name of High Art . 9141 This is more a case of ` Sacre bleu ! ' 9142 than ` Magnifique ' . 9143 The 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 . 9144 Whether Jason X is this bad on purpose is never clear . 9145 But one thing 's for sure : It never comes close to being either funny or scary . 9146 Yet another weepy Southern bore-athon . 9147 I 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 . 9148 Perhaps the most annoying thing about Who Is Cletis Tout ? 9149 is that it 's a crime movie made by someone who obviously knows nothing about crime . 9150 Except as an acting exercise or an exceptionally dark joke , you wonder what anyone saw in this film that allowed it to get made . 9151 This insufferable movie is meant to make you think about existential suffering . 9152 Instead , it 'll only put you to sleep . 9153 Who is this movie for ? 9154 Not kids , who do n't need the lesson in repugnance . 9155 It 's also not smart or barbed enough for older viewers -- not everyone thinks poo-poo jokes are ` edgy . ' 9156 A sleep-inducingly slow-paced crime drama with clumsy dialogue , heavy-handed phoney-feeling sentiment , and an overly-familiar set of plot devices . 9157 It 's so tedious that it makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary . 9158 Almost as offensive as `` Freddy Got Fingered . '' 9159 The 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 . 9160 It is depressing , ruthlessly pained and depraved , the movie equivalent of staring into an open wound . 9161 Ponderous , plodding soap opera disguised as a feature film . 9162 Cold , pretentious , thoroughly dislikable study in sociopathy . 9163 For the future , one hopes Mr. Plympton will find room for one more member of his little band , a professional screenwriter . 9164 A 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 . 9165 Reign of Fire never comes close to recovering from its demented premise , but it does sustain an enjoyable level of ridiculousness . 9166 Human Nature is a goofball movie , in the way that Malkovich was , but it tries too hard . 9167 Originality is sorely lacking . 9168 The plot 's clearly mythic structure may owe more to Disney 's strong sense of formula than to the original story . 9169 But while the highly predictable narrative falls short , Treasure Planet is truly gorgeous to behold . 9170 Though 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 . 9171 Ram Dass Fierce Grace moulds itself as an example to up-and-coming documentarians , of the overlooked pitfalls of such an endeavour . 9172 Lucky Break is perfectly inoffensive and harmless , but it 's also drab and inert . 9173 For a story set at sea , Ghost Ship is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises . ' 9174 There might be some sort of credible gender-provoking philosophy submerged here , but who the hell cares ? 9175 Nothing more than a stifling morality tale dressed up in peekaboo clothing . 9176 I like my Christmas movies with more elves and snow and less pimps and ho 's . 9177 It all seemed wasted like DeNiro 's once promising career and the once grand Long Beach boardwalk . 9178 -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 . 9179 Unfortunately , 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 . 9180 Just entertaining enough not to hate , too mediocre to love . 9181 ` Sophisticated ' viewers who refuse to admit that they do n't like it will likely call it ` challenging ' to their fellow sophisticates . 9182 Equilibrium the movie , as opposed to the manifesto , is really , really stupid . 9183 Excruciatingly unfunny and pitifully unromantic . 9184 The film 's thoroughly recycled plot and tiresome jokes ... drag the movie down . 9185 It does n't offer audiences any way of gripping what its point is , or even its attitude toward its subject . 9186 This kiddie-oriented stinker is so bad that I even caught the gum stuck under my seat trying to sneak out of the theater 9187 Though Impostor deviously adopts the guise of a modern motion picture , it too is a bomb . 9188 Cox offers plenty of glimpses at existing photos , but there are no movies of Nijinsky , so instead the director treats us to an aimless hodgepodge . 9189 Every note rings false . 9190 When 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 . 9191 It never rises to its clever what-if concept . 9192 Admirably ambitious but self-indulgent . 9193 This story of unrequited love does n't sustain interest beyond the first half-hour . 9194 This angst-ridden territory was covered earlier and much better in Ordinary People . 9195 The entire film is one big excuse to play one lewd scene after another . 9196 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 . 9197 A big , loud , bang-the-drum bore . 9198 -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 . 9199 The concept behind Kung Pow : Enter the Fist is hilarious . 9200 It 's too bad nothing else is . 9201 Hardman 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 . 9202 El Crimen Del Padre Amaro would likely be most effective if used as a tool to rally anti-Catholic protestors . 9203 Interesting and thoroughly unfaithful version of Carmen 9204 A serious movie with serious ideas . 9205 But seriously , folks , it does n't work . 9206 There 's nothing exactly wrong here , but there 's not nearly enough that 's right . 9207 The action here is unusually tame , the characters are too simplistic to maintain interest , and the plot offers few surprises . 9208 I could n't help but feel the wasted potential of this slapstick comedy . 9209 What 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 . 9210 -LRB- A -RRB- painfully flat gross-out comedy ... 9211 Even if you 're an Elvis person , you wo n't find anything to get excited about on this DVD . 9212 The movie certainly has its share of clever moments and biting dialogue , but there 's just not much lurking below its abstract surface . 9213 It 's bedeviled by labored writing and slack direction . 9214 I 'm sure there 's a teenage boy out there somewhere who 's dying for this kind of entertainment . 9215 The Tuxedo miscalculates badly by forcing the star to play second fiddle to the dull effects that allow the suit to come to life . 9216 The film is a confusing melange of tones and styles , one moment a romantic trifle and the next a turgid drama . 9217 Obviously , a lot of people wasted a lot of their time -LRB- including mine -RRB- on something very inconsequential . 9218 There '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 . 9219 It drowns in sap . 9220 Deliberately and devotedly constructed , Far from Heaven is too picture postcard perfect , too neat and new pin-like , too obviously a recreation to resonate . 9221 It '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 . 9222 I 'm giving it thumbs down due to the endlessly repetitive scenes of embarrassment . 9223 There 's got to be a more graceful way of portraying the devastation of this disease . 9224 The 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 . 9225 The modern-day characters are nowhere near as vivid as the 19th-century ones . 9226 Blessed with a searing lead performance by Ryan Gosling -LRB- Murder by Numbers -RRB- , the movie is powerful and provocative . 9227 It 's also built on a faulty premise , one it follows into melodrama and silliness . 9228 Uneven performances and a spotty script add up to a biting satire that has no teeth . 9229 Director Jay Russell stomps in hobnail boots over Natalie Babbitt 's gentle , endearing 1975 children 's novel . 9230 Benigni 's Pinocchio is extremely straight and mind-numbingly stilted , its episodic pacing keeping the film from developing any storytelling flow . 9231 The troubling thing about Clockstoppers is that it does n't make any sense . 9232 With its paint fights , motorized scooter chases and dewy-eyed sentiment , it 's a pretty listless collection of kid-movie clichés . 9233 Mostly the film is just hectic and homiletic : two parts exhausting Men in Black mayhem to one part family values . 9234 Kicks off with an inauspicious premise , mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper . 9235 A rote exercise in both animation and storytelling . 9236 The material and the production itself are little more than routine . 9237 The 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 . 9238 Not even Steven Spielberg has dreamed up such blatant and sickening product placement in a movie . 9239 It 's all surface psychodramatics . 9240 The Mothman Prophecies , which is mostly a bore , seems to exist only for its climactic setpiece . 9241 That 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 . 9242 Kitschy , flashy , overlong soap opera . 9243 For all the time we spend with these people , we never really get inside of them . 9244 Yet another Arnold vehicle that fails to make adequate use of his particular talents . 9245 Sandra 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 . 9246 An undistinguished attempt to make a classic theater piece cinematic . 9247 too 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 . 9248 There is simply not enough of interest onscreen to sustain its seventy-minute running time . 9249 A wordy wisp of a comedy . 9250 Broomfield 's style of journalism is hardly journalism at all , and even those with an avid interest in the subject will grow impatient . 9251 -LRB- Seagal 's -RRB- strenuous attempt at a change in expression could very well clinch him this year 's Razzie . 9252 Has the disjointed feel of a bunch of strung-together TV episodes . 9253 A 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 . 9254 Ozpetek 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 . 9255 A dopey movie clothed in excess layers of hipness . 9256 The Sweetest Thing is expressly for idiots who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance . 9257 Sinks 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 . 9258 I realized that no matter how fantastic Reign of Fire looked , its story was making no sense at all . 9259 It 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 . 9260 Some 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 . 9261 SC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit , yet it 's geared toward an audience full of masters of both . 9262 After all the big build-up , the payoff for the audience , as well as the characters , is messy , murky , unsatisfying . 9263 Seems content to dog-paddle in the mediocre end of the pool , and it 's a sad , sick sight . 9264 It 's refreshing that someone understands the need for the bad boy ; Diesel , with his brawny frame and cool , composed delivery , fits the bill perfectly . 9265 If all of Eight Legged Freaks was as entertaining as the final hour , I would have no problem giving it an unqualified recommendation . 9266 Suffers from a flat script and a low budget . 9267 There 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 . 9268 The same should go for movie theaters . 9269 Seemingly 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 . 9270 The film tries to touch on spousal abuse but veers off course and becomes just another revenge film . 9271 As it stands it 's an opera movie for the buffs . 9272 This franchise has not spawned a single good film . 9273 The crap continues . 9274 Its inescapable absurdities are tantamount to insulting the intelligence of anyone who has n't been living under a rock -LRB- since Sept. 11 -RRB- . 9275 High drama , Disney-style - a wing and a prayer and a hunky has-been pursuing his castle in the sky . 9276 Like 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 . 9277 One big blustery movie where nothing really happens . 9278 When it comes out on video , then it 's the perfect cure for insomnia . 9279 Like a comedian who starts off promisingly but then proceeds to flop , Comedian runs out of steam after a half hour . 9280 The 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 . 9281 Director Chris Eyre is going through the paces again with his usual high melodramatic style of filmmaking . 9282 As it stands , there 's some fine sex onscreen , and some tense arguing , but not a whole lot more . 9283 I could just feel the screenwriter at every moment ` Tap , tap , tap , tap , tapping away ' on this screenplay . 9284 The picture does n't know it 's a comedy . 9285 A stupid , derivative horror film that substitutes extreme gore for suspense . 9286 The rollerball sequences feel sanitised and stagey . 9287 Roman Polanski directs The Pianist like a surgeon mends a broken heart ; very meticulously but without any passion . 9288 Nothing more than a run-of-the-mill action flick . 9289 Lan 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- . 9290 This is an action movie with an action icon who 's been all but decommissioned . 9291 Even if it is generally amusing from time to time , I Spy has all the same problems the majority of action comedies have . 9292 Much like Robin Williams , Death to Smoochy has already reached its expiration date . 9293 An annoying orgy of excess and exploitation that has no point and goes nowhere . 9294 A tired , unnecessary retread ... a stale copy of a picture that was n't all that great to begin with . 9295 An often unfunny romp . 9296 A worthy idea , but the uninspired scripts , acting and direction never rise above the level of an after-school TV special . 9297 Twenty 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 . 9298 Ear-splitting exercise in formula crash-and-bash action . 9299 We have an actor who is great fun to watch performing in a film that is only mildly diverting . 9300 Despite Hoffman 's best efforts , Wilson remains a silent , lumpish cipher ; his encounters reveal nothing about who he is or who he was before . 9301 There 's a thin line between likably old-fashioned and fuddy-duddy , and The Count of Monte Cristo ... never quite settles on either side . 9302 The emotional overload of female angst irreparably drags the film down . 9303 Schaefer 's ... determination to inject farcical raunch ... drowns out the promise of the romantic angle . 9304 Like Showgirls and Glitter , the most entertaining moments here are unintentional . 9305 While some of the camera work is interesting , the film 's mid-to-low budget is betrayed by the surprisingly shoddy makeup work . 9306 The origin story is well told , and the characters will not disappoint anyone who values the original comic books . 9307 It 's in the action scenes that things fall apart . 9308 Impostor is a step down for director Gary Fleder . 9309 Seagal , who looks more like Danny Aiello these days , mumbles his way through the movie . 9310 The movie is a negligible work of manipulation , an exploitation piece doing its usual worst to guilt-trip parents . 9311 Lacks dramatic punch and depth . 9312 There are moments of real pleasure to be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film . 9313 I can analyze this movie in three words : Thumbs Friggin ' Down . 9314 Sadly , ` Garth ' has n't progressed as nicely as ` Wayne . ' 9315 Make like the title and dodge this one . 9316 This is not one of the movies you 'd want to watch if you only had a week to live . 9317 The first hour is tedious though Ford and Neeson capably hold our interest , but its just not a thrilling movie . 9318 Here '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 . 9319 It '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 . 9320 Sweet Home Alabama is one dumb movie , but its stupidity is so relentlessly harmless that it almost wins you over in the end . 9321 -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 . 9322 No amount of good acting is enough to save Oleander 's uninspired story . 9323 A vile , incoherent mess ... a scummy ripoff of David Cronenberg 's brilliant ` Videodrome . ' 9324 Murphy and Wilson actually make a pretty good team ... but the project surrounding them is distressingly rote . 9325 Despite its raucous intent , XXX is as conventional as a Nike ad and as rebellious as spring break . 9326 Think 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 . 9327 It is one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective . 9328 It '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 . 9329 A 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- . 9330 An amateurish , quasi-improvised acting exercise shot on ugly digital video . 9331 The holes in this film remain agape -- holes punched through by an inconsistent , meandering , and sometimes dry plot . 9332 Would Benigni 's Italian Pinocchio have been any easier to sit through than this hastily dubbed disaster ? 9333 Unofficially , National Lampoon 's Van Wilder is Son of Animal House . 9334 Officially , it is twice as bestial but half as funny . 9335 This is a fragmented film , once a good idea that was followed by the bad idea to turn it into a movie . 9336 Mindless yet impressively lean spinoff of last summer 's bloated effects fest The Mummy Returns . 9337 Halfway through the movie , the humor dwindles . 9338 It '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 . 9339 will be far more interesting to the Soderbergh faithful than it will be to the casual moviegoer who might be lured in by Julia Roberts ... 9340 Authentic , and at times endearing , humorous , spooky , educational , but at other times as bland as a block of snow . 9341 Control-Alt-Delete Simone as quickly as possible 9342 Follows the original film virtually scene for scene and yet manages to bleed it almost completely dry of humor , verve and fun . 9343 The 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 . 9344 The screenplay comes across , rather unintentionally , as Hip-Hop Scooby-Doo . 9345 Has lost some of the dramatic conviction that underlies the best of comedies ... 9346 Vaguely interesting , but it 's just too too much . 9347 ... no charm , no laughs , no fun , no reason to watch . 9348 A generic family comedy unlikely to be appreciated by anyone outside the under-10 set . 9349 Kung Pow seems like some futile concoction that was developed hastily after Oedekerk and his fellow moviemakers got through crashing a college keg party . 9350 Kurys seems intimidated by both her subject matter and the period trappings of this debut venture into the heritage business . 9351 The film virtually chokes on its own self-consciousness . 9352 A manipulative feminist empowerment tale thinly posing as a serious drama about spousal abuse . 9353 Everything in Maid in Manhattan is exceedingly pleasant , designed not to offend . 9354 It goes down easy , leaving virtually no aftertaste . 9355 A profoundly stupid affair , populating its hackneyed and meanspirited storyline with cardboard characters and performers who value cash above credibility . 9356 ... pays tribute to heroes the way Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism . 9357 Time stands still in more ways that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable . 9358 As a director , Eastwood is off his game -- there 's no real sense of suspense , and none of the plot ` surprises ' are really surprising . 9359 Eccentric enough to stave off doldrums , Caruso 's self-conscious debut is also eminently forgettable . 9360 To work , love stories require the full emotional involvement and support of a viewer . 9361 That is made almost impossible by events that set the plot in motion . 9362 Although 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 . 9363 A puzzle whose pieces do not fit . 9364 Some are fascinating and others are not , and in the end , it is almost a good movie . 9365 Would that Greengrass had gone a tad less for grit and a lot more for intelligibility . 9366 The good is very , very good ... The rest runs from mildly unimpressive to despairingly awful . 9367 ` 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 . 9368 Be forewarned , if you 're depressed about anything before watching this film , you may just end up trying to drown yourself in a lake afterwards . 9369 a terrible adaptation of a play that only ever walked the delicate tightrope between farcical and loathsome . 9370 In the wrong hands , i.e. Peploe 's , it 's simply unbearable 9371 An inexperienced director , Mehta has much to learn . 9372 A limp Eddie Murphy vehicle that even he seems embarrassed to be part of . 9373 So muddled , repetitive and ragged that it says far less about the horrifying historical reality than about the filmmaker 's characteristic style . 9374 A gushy episode of `` M \* A \* S \* H '' only this time from an Asian perspective . 9375 `` Looking For Leonard '' just seems to kinda sit in neutral , hoping for a stiff wind to blow it uphill or something . 9376 Nothing more than four or five mild chuckles surrounded by 86 minutes of overly-familiar and poorly-constructed comedy . 9377 Definitely in the guilty pleasure B-movie category , Reign of Fire is so incredibly inane that it is laughingly enjoyable . 9378 Good-looking but relentlessly lowbrow outing plays like Clueless Does South Fork . 9379 entertaining enough , but nothing new 9380 ... one resurrection too many . 9381 This is a film about the irksome , tiresome nature of complacency that remains utterly satisfied to remain the same throughout . 9382 Even as the hero of the story rediscovers his passion in life , the mood remains oddly detached . 9383 DeMeo is not without talent ; he just needs better material . 9384 In spite of featuring a script credited to no fewer than five writers , apparently nobody here bothered to check it twice . 9385 No 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 . 9386 Initially gripping , eventually cloying POW drama . 9387 A timid , soggy near miss . 9388 Works better in the conception than it does in the execution ... winds up seeming just a little too clever . 9389 To the vast majority of more casual filmgoers , it will probably be a talky bore . 9390 Observant intelligence constantly vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom . 9391 This version of H.G. Wells ' Time Machine was directed by H.G. Wells ' great-grandson . 9392 They should have found Orson Welles ' great-grandson . 9393 Shunji Iwai 's All About Lily Chou Chou is a beautifully shot , but ultimately flawed film about growing up in Japan . 9394 With more character development this might have been an eerie thriller ; with better payoffs , it could have been a thinking man 's monster movie . 9395 Thriller directorial debut for Traffic scribe Gaghan has all the right parts , but the pieces do n't quite fit together . 9396 ... would be a total loss if not for two supporting performances taking place at the movie 's edges . 9397 There '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 . 9398 Goldbacher 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 . 9399 Though 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 . 9400 The documentary is much too conventional -- lots of boring talking heads , etc. -- to do the subject matter justice . 9401 The movie itself appears to be running on hypertime in reverse as the truly funny bits get further and further apart . 9402 This is not a Jackie Chan movie . 9403 It 's just a movie that happens to have Jackie Chan in it . 9404 And that makes all the difference . 9405 Far 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 . 9406 The problem with movies about angels is they have a tendency to slip into hokum . 9407 A Rumor of Angels does n't just slip -- it avalanches into forced fuzziness . 9408 No big whoop , nothing new to see , zero thrills , too many flashbacks and a choppy ending make for a bad film . 9409 I do n't think this movie loves women at all . 9410 Shankman ... and screenwriter Karen Janszen bungle their way through the narrative as if it were a series of Bible parables and not an actual story . 9411 A negligible British comedy . 9412 Fails to convince the audience that these brats will ever be anything more than losers . 9413 Slack and uninspired , and peopled mainly by characters so unsympathetic that you 're left with a sour taste in your mouth . 9414 Skip this turd and pick your nose instead because you 're sure to get more out of the latter experience . 9415 What can one say about a balding 50-year-old actor playing an innocent boy carved from a log ? 9416 Trailer trash cinema so uncool the only thing missing is the `` Gadzooks ! '' 9417 Her 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 . 9418 Like the world of his film , Hartley created a monster but did n't know how to handle it . 9419 No new plot conceptions or environmental changes , just different bodies for sharp objects to rip through . 9420 Needs 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 . 9421 In the end , there is n't much to it . 9422 A waste of fearless purity in the acting craft . 9423 The film is ultimately about as inspiring as a Hallmark card . 9424 Anyone not into high-tech splatterfests is advised to take the warning literally , and log on to something more user-friendly . 9425 Disreputable doings and exquisite trappings are dampened by a lackluster script and substandard performances . 9426 You could easily mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time . 9427 Directors Harry Gantz and Joe Gantz have chosen a fascinating subject matter , but the couples exposing themselves are n't all that interesting . 9428 Yet 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 . 9429 for 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 9430 Femme Fatale offers nothing more than a bait-and-switch that is beyond playing fair with the audience . 9431 Are we dealing with dreams , visions or being told what actually happened as if it were the third ending of Clue ? 9432 It 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 . 9433 Fluffy neo-noir hiding behind cutesy film references . 9434 Imagine Susan Sontag falling in love with Howard Stern . 9435 Like 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 . 9436 Should have been worth cheering as a breakthrough but is devoid of wit and humor . 9437 The best thing about the movie is its personable , amusing cast . 9438 These guys seem great to knock back a beer with but they 're simply not funny performers . 9439 Everything was as superficial as the forced New Jersey lowbrow accent Uma had . 9440 Director David Fincher and writer David Koepp ca n't sustain it . 9441 Finally 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 . 9442 A movie that feels like the pilot episode of a new teen-targeted action TV series . 9443 One of the most highly-praised disappointments I 've had the misfortune to watch in quite some time . 9444 The 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 . 9445 Director 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 . 9446 Strong filmmaking requires a clear sense of purpose , and in that oh-so-important category , The Four Feathers comes up short . 9447 The 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 . 9448 Devolves into the derivative , leaning on badly-rendered CGI effects . 9449 Anyone who gets chills from movies with giant plot holes will find plenty to shake and shiver about in ` The Ring . ' 9450 A grand fart coming from a director beginning to resemble someone 's crazy French grandfather . 9451 The script is a disaster , with cloying messages and irksome characters . 9452 both 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 . 9453 Plods along , minus the twisted humor and eye-popping visuals that have made Miike ... a cult hero . 9454 Hollywood has taken quite a nosedive from Alfred Hitchcock 's imaginative flight to Shyamalan 's self-important summer fluff . 9455 The film 's maudlin focus on the young woman 's infirmity and her naive dreams play like the worst kind of Hollywood heart-string plucking . 9456 I firmly believe that a good video game movie is going to show up soon . 9457 I also believe that Resident Evil is not it . 9458 It has the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent and wear thin with repetition . 9459 The plot meanders from gripping to plodding and back . 9460 This is cruel , misanthropic stuff with only weak claims to surrealism and black comedy . 9461 No 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 . 9462 Best described as I Know What You Did Last Winter . 9463 -LRB- Taylor -RRB- takes us on a ride that 's consistently surprising , easy to watch -- but , oh , so dumb . 9464 It 's difficult for a longtime admirer of his work to not be swept up in Invincible and overlook its drawbacks . 9465 Lazily directed by Charles Stone III ... from a leaden script by Matthew Cirulnick and novelist Thulani Davis . 9466 Though Jones and Snipes are enthralling , the movie bogs down in rhetoric and cliché . 9467 The 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 . 9468 An artsploitation movie with too much exploitation and too little art . 9469 The pacing is often way off and there are too many bona fide groaners among too few laughs . 9470 With lines that feel like long soliloquies -- even as they are being framed in conversation -- Max is static , stilted . 9471 Barely 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 . 9472 Writer\/director Burr Steers emphasizes the Q in Quirky , with mixed results . 9473 One 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 . 9474 In between the icy stunts , the actors spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do . ' 9475 The obligatory break-ups and hook-ups do n't seem to have much emotional impact on the characters . 9476 Make no mistake , ivans xtc . 9477 is a mess . 9478 Hypnotically dull , relentlessly downbeat , laughably predictable wail pitched to the cadence of a depressed fifteen-year-old 's suicidal poetry . 9479 The concept is a hoot . 9480 The trailer is a riot . 9481 The movie is a dud . 9482 It 's a boring movie about a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring . 9483 Because 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 . 9484 It 's hard to imagine another director ever making his wife look so bad in a major movie . 9485 Some stunning visuals -- and some staggeringly boring cinema . 9486 These characters become wearisome . 9487 A 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 . 9488 This may be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar . 9489 Kim 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 . 9490 A 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 . 9491 After 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 . 9492 Contrived pastiche of caper clichés . 9493 Many shallower movies these days seem too long , but this one is egregiously short . 9494 Just a Kiss wants desperately to come off as a fanciful film about the typical problems of average people . 9495 But it is set in a world that is very , very far from the one most of us inhabit . 9496 The most ill-conceived animated comedy since the 1991 dog Rover Dangerfield . 9497 Like shave ice without the topping , this cinematic snow cone is as innocuous as it is flavorless . 9498 Despite its sincere acting , Signs is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype . 9499 Yet another movie which presumes that high school social groups are at war , let alone conscious of each other 's existence . 9500 Loud , chaotic and largely unfunny . 9501 I 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 . 9502 Qualities that were once amusing are becoming irritating . 9503 Well , 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- . 9504 Donovan ... squanders his main asset , Jackie Chan , and fumbles the vital action sequences . 9505 There is no psychology here , and no real narrative logic -- just a series of carefully choreographed atrocities , which become strangely impersonal and abstract . 9506 Bread , My Sweet has so many flaws it would be easy for critics to shred it . 9507 It may even fall into the category of Films You Love to Hate . 9508 I admit it , I hate to like it . 9509 Frida is certainly no disaster , but neither is it the Kahlo movie Frida fans have been looking for . 9510 Leaks treacle from every pore . 9511 The 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 . 9512 Kapur weighs down the tale with bogus profundities . 9513 While 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 . 9514 Blue Crush is as predictable as the tides . 9515 ... The movie feels stitched together from stock situations and characters from other movies . 9516 If you enjoy being rewarded by a script that assumes you are n't very bright , then Blood Work is for you . 9517 Trouble Every Day is a success in some sense , but it 's hard to like a film so cold and dead . 9518 The film 's stagecrafts are intimate and therefore bolder than the otherwise calculated artifice that defines and overwhelms the film 's production design . 9519 A 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 . 9520 A family-friendly fantasy that ends up doing very little with its imaginative premise . 9521 A plodding look at the French Revolution through the eyes of aristocrats . 9522 Tom Shadyac has learned a bit more craft since directing Adams , but he still lingers over every point until the slowest viewer grasps it . 9523 Unspools like a highbrow , low-key , 102-minute infomercial , blending entrepreneurial zeal with the testimony of satisfied customers . 9524 A fast-paced , glitzy but extremely silly piece . 9525 Any reasonably creative eighth-grader could have written a more credible script , though with the same number of continuity errors . 9526 ... while the humor aspects of ` Jason X ' were far more entertaining than I had expected , everything else about the film tanks . 9527 Your taste for Jonah - A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit . 9528 Like an Afterschool Special with costumes by Gianni Versace , Mad Love looks better than it feels . 9529 While 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 . 9530 The script , the gags , the characters are all direct-to-video stuff , and that 's where this film should have remained . 9531 A thriller without thrills and a mystery devoid of urgent questions . 9532 A collage of clichés and a dim echo of allusions to other films . 9533 The film is hampered by its predictable plot and paper-thin supporting characters . 9534 Jonah is only so-so ... the addition of a biblical message will either improve the film for you , or it will lessen it . 9535 An excruciating demonstration of the unsalvageability of a movie saddled with an amateurish screenplay . 9536 How many more times will indie filmmakers subject us to boring , self-important stories of how horrible we are to ourselves and each other ? 9537 There are some laughs in this movie , but Williams ' anarchy gets tiresome , the satire is weak . 9538 As steamy as last week 's pork dumplings . 9539 The somber pacing and lack of dramatic fireworks make Green Dragon seem more like medicine than entertainment . 9540 The 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 . 9541 Another wholly unnecessary addition to the growing , moldering pile of , well , extreme stunt pictures . 9542 This strenuously unfunny Showtime deserves the hook . 9543 The whole thing 's fairly lame , making it par for the course for Disney sequels . 9544 ... its solemn pretension prevents us from sharing the awe in which it holds itself . 9545 ... 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 . '' 9546 If 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 . 9547 Features nonsensical and laughable plotting , wooden performances , ineptly directed action sequences and some of the worst dialogue in recent memory . 9548 With 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 . 9549 Nothing about this movie works . 9550 If 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 . 9551 A spooky yarn of demonic doings on the high seas that works better the less the brain is engaged . 9552 None of Birthday Girl 's calculated events take us by surprise ... 9553 Are monsters born , or made ? 9554 Lisa 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 . 9555 The 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 . 9556 It 's exactly the kind of movie Toback 's detractors always accuse him of making . 9557 With the dog days of August upon us , think of this dog of a movie as the cinematic equivalent of high humidity . 9558 Less 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 . 9559 The 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 . 9560 This 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 . 9561 Takes a clunky TV-movie approach to detailing a chapter in the life of the celebrated Irish playwright , poet and drinker . 9562 Not only does the thoroughly formulaic film represent totally exemplify middle-of-the-road mainstream , it also represents glossy Hollywood at its laziest . 9563 A shame that Stealing Harvard is too busy getting in its own way to be anything but frustrating , boring , and forgettable . 9564 Nearly every attempt at humor here is DOA . 9565 Collapses under its own meager weight . 9566 This is mild-mannered , been-there material given a pedestrian spin by a director who needed a touch of the flamboyant , the outrageous . 9567 If 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 . 9568 Technically and artistically inept . 9569 Those who are only mildly curious , I fear , will be put to sleep or bewildered by the artsy and often pointless visuals . 9570 Though Tom Shadyac 's film kicks off spookily enough , around the halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance . 9571 A long , dull procession of despair , set to cello music culled from a minimalist funeral . 9572 Call 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 . 9573 Death might be a release . 9574 `` -LRB- Hopkins -RRB- does n't so much phone in his performance as fax it . 9575 No , even that 's too committed . 9576 He gets his secretary to fax it . '' 9577 Sodden and glum , even in those moments where it 's supposed to feel funny and light . 9578 Priggish , lethargically paced parable of renewal . 9579 A beautifully shot but dull and ankle-deep ` epic . ' 9580 Even with its $ 50-million US budget , Pinocchio never quite achieves the feel of a fanciful motion picture . 9581 This is a third-person story now , told by Hollywood , and much more ordinary for it . 9582 The filmmakers know how to please the eye , but it is not always the prettiest pictures that tell the best story . 9583 Written , flatly , by David Kendall and directed , barely , by There 's Something About Mary co-writer Ed Decter . 9584 The 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 . 9585 Very well made , but does n't generate a lot of tension . 9586 Like being invited to a classy dinner soiree and not knowing anyone . 9587 You leave the same way you came -- a few tasty morsels under your belt , but no new friends . 9588 It 's depressing to see how far Herzog has fallen . 9589 The question hanging over The Time Machine is not , as the main character suggests , ` what if ? ' 9590 but rather , ` How can you charge money for this ? ' 9591 Millions of dollars heaped upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry . 9592 `` Freaky Friday , '' it 's not . 9593 Perhaps a better celebration of these unfairly dismissed heroes would be a film that is n't this painfully forced , false and fabricated . 9594 Although 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 . 9595 In this film , Aussie David Caesar channels the not-quite-dead career of Guy Ritchie . 9596 Maybe you 'll be lucky , and there 'll be a power outage during your screening so you can get your money back . 9597 The characterizations and dialogue lack depth or complexity , with the ironic exception of Scooter . 9598 This film was made by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers . 9599 For the rest of us , sitting through Dahmer 's two hours amounts to little more than punishment . 9600 Narc can only remind us of brilliant crime dramas without becoming one itself . 9601 Somewhere inside the mess that is World Traveler , there is a mediocre movie trying to get out . 9602 A tedious parable about honesty and good sportsmanship . 9603 Its 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 . 9604 An artful yet depressing film that makes a melodramatic mountain out of the molehill of a missing bike . 9605 The 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 . 9606 A glossy knock-off of a B-movie revenge flick . 9607 ... expands the horizons of boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape . 9608 It 's just plain boring . 9609 Sad nonsense , this . 9610 But not without cheesy fun factor . 9611 One 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 . 9612 Really dumb but occasionally really funny . 9613 The movie wavers between Hallmark card sentimentality and goofy , life-affirming moments straight out of a cellular phone commercial . 9614 The director 's many dodges and turns add up to little more than a screenful of gamesmanship that 's low on both suspense and payoff . 9615 While 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 . 9616 The satire is unfocused , while the story goes nowhere . 9617 They 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 . 9618 It '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 . 9619 Reyes ' directorial debut has good things to offer , but ultimately it 's undone by a sloppy script 9620 If you 're over 25 , have an IQ over 90 , and have a driver 's license , you should be able to find better entertainment . 9621 The 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 . 9622 ... the picture 's cleverness is ironically muted by the very people who are intended to make it shine . 9623 Never 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 . '' 9624 One of those so-so films that could have been much better . 9625 Crossroads feels like a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and the high-strung but flaccid drama . 9626 Fails to satisfactorily exploit its gender politics , genre thrills or inherent humor . 9627 Interview 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 . 9628 Cacoyannis ' 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 . 9629 It has more in common with a fireworks display than a movie , which normally is expected to have characters and a storyline . 9630 It appears to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept . 9631 Less a heartfelt appeal for the handicapped than a nice Belgian waffle . 9632 It '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 . 9633 Abandon spends 90 minutes trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed . 9634 The only problem is that , by the end , no one in the audience or the film seems to really care . 9635 No Such Thing is sort of a minimalist Beauty and the Beast , but in this case the Beast should definitely get top billing . 9636 Robert John Burke as The Monster horns in and steals the show . 9637 Due to stodgy , soap opera-ish dialogue , the rest of the cast comes across as stick figures reading lines from a TelePrompTer . 9638 -LRB- T -RRB- he film is never sure to make a clear point -- even if it seeks to rely on an ambiguous presentation . 9639 While 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 . 9640 An overwrought Taiwanese soaper about three people and their mixed-up relationship . 9641 Nobody 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 . 9642 A thoroughly awful movie -- dumb , narratively chaotic , visually sloppy ... a weird amalgam of ` The Thing ' and a geriatric ` Scream . ' 9643 ... another example of how Sandler is losing his touch . 9644 Nothing sticks , really , except a lingering creepiness one feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams . 9645 What 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 . 9646 The plot 's contrivances are uncomfortably strained . 9647 Guilty of the worst sin of attributable to a movie like this : it 's not scary in the slightest . 9648 Schnieder 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 ... 9649 Its 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 . 9650 By the final whistle you 're convinced that this Mean Machine was a decent TV outing that just does n't have big screen magic . 9651 To 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 . 9652 A film of empty , fetishistic violence in which murder is casual and fun . 9653 Pretend it 's a werewolf itself by avoiding eye contact and walking slowly away . 9654 It 's fun , but it 's a real howler . 9655 Some fine acting , but ultimately a movie with no reason for being . 9656 It 's difficult to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting . 9657 A waterlogged version of ` Fatal Attraction ' for the teeny-bopper set ... a sad , soggy potboiler that wastes the talents of its attractive young leads . 9658 It 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 . 9659 Sweet gentle Jesus , did the screenwriters just do a cut-and-paste of every bad action-movie line in history ? 9660 It 's not the worst comedy of the year , but it certainly wo n't win any honors . 9661 This is for the most part a useless movie , even with a great director at the helm . 9662 A loud , witless mess that has none of the charm and little of the intrigue from the TV series . 9663 Even 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 . 9664 Though 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 . 9665 As 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 . 9666 Sinks into the usual cafeteria goulash of fart jokes , masturbation jokes , and racist Japanese jokes . 9667 Where Tom Green stages his gags as assaults on America 's knee-jerk moral sanctimony , Jackass lacks aspirations of social upheaval . 9668 More of an intriguing curiosity than a gripping thriller . 9669 The 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 . 9670 Contains all the substance of a Twinkie -- easy to swallow , but scarcely nourishing . 9671 Return 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 . 9672 Rarely does a film so graceless and devoid of merit as this one come along . 9673 It 's a thin notion , repetitively stretched out to feature length , awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue . 9674 On a certain base level , Blue Crush delivers what it promises , just not well enough to recommend it . 9675 The colorful Masseur wastes its time on mood rather than riding with the inherent absurdity of Ganesh 's rise up the social ladder . 9676 ... an incredibly heavy-handed , manipulative dud that feels all too familiar . 9677 Wimps out by going for that PG-13 rating , so the more graphic violence is mostly off-screen and the sexuality is muted . 9678 Trapped presents a frightening and compelling ` What if ? ' 9679 scenario that will give most parents pause ... Then , something terrible happens . 9680 Madonna has made herself over so often now , there 's apparently nothing left to work with , sort of like Michael Jackson 's nose . 9681 Never 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 . 9682 The story is lacking any real emotional impact , and the plot is both contrived and cliched . 9683 A depraved , incoherent , instantly disposable piece of hackery . 9684 It 's a bad action movie because there 's no rooting interest and the spectacle is grotesque and boring . 9685 -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 . 9686 Handsome and sincere but slightly awkward in its combination of entertainment and evangelical boosterism . 9687 So aggressively cheery that Pollyana would reach for a barf bag . 9688 Scooby-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 . 9689 Russell lacks the visual panache , the comic touch , and perhaps the budget of Sommers 's title-bout features . 9690 Highly uneven and inconsistent ... Margarita Happy Hour kinda resembles the el cheapo margaritas served within . 9691 Very stupid and annoying . 9692 The 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 . 9693 A listless and desultory affair . 9694 Represents the depths to which the girls-behaving-badly film has fallen . 9695 How inept is Serving Sara ? 9696 It makes even Elizabeth Hurley seem graceless and ugly . 9697 Jam-packed with literally bruising jokes . 9698 Every five minutes or so , someone gets clocked . 9699 Wins my vote for ` The 2002 Enemy of Cinema ' Award . 9700 Any 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 . 9701 Helmer Hudlin tries to make a hip comedy , but his dependence on slapstick defeats the possibility of creating a more darkly edged tome . 9702 Lazy , miserable and smug . 9703 This is one of the biggest disappointments of the year . 9704 Formula 51 has dulled your senses faster and deeper than any recreational drug on the market . 9705 Every visual joke is milked , every set-up obvious and lengthy , every punchline predictable . 9706 There 's no energy . 9707 Apparently writer-director Attal thought he need only cast himself and his movie-star wife sitting around in their drawers to justify a film . 9708 After the setup , the air leaks out of the movie , flattening its momentum with about an hour to go . 9709 This is a poster movie , a mediocre tribute to films like Them ! 9710 At 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 . 9711 A bit too derivative to stand on its own as the psychological thriller it purports to be . 9712 A 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 . 9713 The film 's darker moments become smoothed over by an overwhelming need to tender inspirational tidings , especially in the last few cloying moments . 9714 If 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 . 9715 This 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 . ' 9716 Shanghai Ghetto should be applauded for finding a new angle on a tireless story , but you might want to think twice before booking passage . 9717 Plays like a checklist of everything Rob Reiner and his cast were sending up . 9718 There '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 . 9719 It 's at once laughable and compulsively watchable , in its committed dumbness . 9720 All the sensuality , all the eroticism of a good vampire tale has been , pardon the pun , sucked out and replaced by goth goofiness . 9721 A cross between Blow and Boyz N The Hood , this movie strives to be more , but does n't quite get there . 9722 Good performances keep it from being a total rehash . 9723 The screenplay is hugely overwritten , with tons and tons of dialogue -- most of it given to children . 9724 Troll the cult section of your local video store for the real deal . 9725 At times , the movie looks genuinely pretty . 9726 Your nightmares , on the other hand , will be anything but . 9727 Not even Felinni would know what to make of this Italian freakshow . 9728 Elmo touts his drug as being 51 times stronger than coke . 9729 If you 're looking for a tale of Brits behaving badly , watch Snatch again . 9730 It 's 51 times better than this . 9731 It 's difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny . 9732 Despite 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 . ' 9733 Both shrill and soporific , and because everything is repeated five or six times , it can seem tiresomely simpleminded . 9734 Does not go far enough in its humor or stock ideas to stand out as particularly memorable or even all that funny . 9735 Neither revelatory nor truly edgy -- merely crassly flamboyant and comedically labored . 9736 Just about everyone involved here seems to be coasting . 9737 There are a few modest laughs , but certainly no thrills . 9738 Fails so fundamentally on every conventional level that it achieves some kind of goofy grandeur . 9739 There '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 . 9740 While 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 . 9741 A preposterous , prurient whodunit . 9742 Go , girls , right down the reality drain . 9743 Boasting some of the most poorly staged and lit action in memory , Impostor is as close as you can get to an imitation movie . 9744 Can be classified as one of those ` alternate reality ' movies ... except that it would have worked so much better dealing in only one reality . 9745 Predictable 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 . 9746 ... unlikable , uninteresting , unfunny , and completely , utterly inept . 9747 The 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 . 9748 An imponderably stilted and self-consciously arty movie . 9749 Muddled , melodramatic paranormal romance is an all-time low for Kevin Costner . 9750 Too clumsy in key moments ... to make a big splash . 9751 Just a bunch of good actors flailing around in a caper that 's neither original nor terribly funny . 9752 ` Matrix ' - style massacres erupt throughout ... but the movie has a tougher time balancing its violence with Kafka-inspired philosophy . 9753 At least it 's a fairly impressive debut from the director , Charles Stone III . 9754 It all unfolds predictably , and the adventures that happen along the way seem repetitive and designed to fill time , providing no real sense of suspense . 9755 Wanker Goths are on the loose ! 9756 Run for your lives ! 9757 Why would anyone cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects ? 9758 A grating , emaciated flick . 9759 Unambitious writing emerges in the movie , using a plot that could have come from an animated-movie screenwriting textbook . 9760 Presents a good case while failing to provide a reason for us to care beyond the very basic dictums of human decency . 9761 We 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 . 9762 According to the script , Grant and Bullock 's characters are made for each other . 9763 But you 'd never guess that from the performances . 9764 The 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 . 9765 Ararat feels like a book report 9766 Steve Oedekerk is , alas , no Woody Allen . 9767 A lot like the imaginary sport it projects onto the screen -- loud , violent and mindless . 9768 An amalgam of The Fugitive , Blade Runner , and Total Recall , only without much energy or tension . 9769 The 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 . 9770 Shows that Jackie Chan is getting older , and that 's something I would rather live in denial about 9771 With miscast leads , banal dialogue and an absurdly overblown climax , Killing Me Softly belongs firmly in the so-bad-it 's - good camp . 9772 Alas , the black-and-white archival footage of their act showcases pretty mediocre shtick . 9773 The slapstick is labored , and the bigger setpieces flat . 9774 This 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 . 9775 The problem with the mayhem in Formula 51 is not that it 's offensive , but that it 's boring . 9776 Much 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é . 9777 the film never rises above a conventional , two dimension tale 9778 Mark Wahlberg ... may look classy in a '60s - homage pokepie hat , but as a character he 's dry , dry , dry . 9779 Told in scattered fashion , the movie only intermittently lives up to the stories and faces and music of the men who are its subject . 9780 The irony is that this film 's cast is uniformly superb ; their performances could have -- should have -- been allowed to stand on their own . 9781 Now I can see why people thought I was too hard on `` The Mothman Prophecies '' . 9782 If ever a concept came handed down from the movie gods on a silver platter , this is it . 9783 If ever such a dependable concept was botched in execution , this is it . 9784 With 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 . 9785 Sandra 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 . 9786 A feel-good movie that does n't give you enough to feel good about . 9787 Adolescents 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 . ' 9788 This mistaken-identity picture is so film-culture referential that the final product is a ghost . 9789 The picture emerges as a surprisingly anemic disappointment . 9790 De Niro cries . 9791 You 'll cry for your money back . 9792 Slap me , I saw this movie . 9793 -LRB- The kid 's -RRB- just too bratty for sympathy , and as the film grows to its finale , his little changes ring hollow . 9794 Behind the glitz , Hollywood is sordid and disgusting . 9795 Quelle surprise ! 9796 Scherfig , who has had a successful career in TV , tackles more than she can handle . 9797 Just consider what New Best Friend does not have , beginning with the minor omission of a screenplay . 9798 Oscar caliber cast does n't live up to material 9799 The problems of the people in Love in the Time of Money are hardly specific to their era . 9800 They just have problems , which are neither original nor are presented in convincing way . 9801 Carrying 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 . ' 9802 So putrid it is not worth the price of the match that should be used to burn every print of the film . 9803 In the end , the movie bogs down in insignificance , saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate . 9804 Starts out ballsy and stylish but fails to keep it up and settles into clichés . 9805 Sometimes makes less sense than the Bruckheimeresque American action flicks it emulates . 9806 One 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 . 9807 There 's only one way to kill Michael Myers for good : stop buying tickets to these movies . 9808 ` Rare Birds ' tries to force its quirkiness upon the audience . 9809 The movie is about as humorous as watching your favorite pet get buried alive . 9810 Resident Evil is what comes from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings . 9811 In other words , about as bad a film you 're likely to see all year . 9812 Five screenwriters are credited with the cliché-laden screenplay ; it seems as if each watered down the version of the one before . 9813 The whole thing comes off like a particularly amateurish episode of Bewitched that takes place during Spring Break . 9814 Well made but uninvolving , Bloodwork is n't a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery . 9815 So 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 . 9816 The movie 's blatant derivativeness is one reason it 's so lackluster . 9817 Kids do n't mind crappy movies as much as adults , provided there 's lots of cute animals and clumsy people . 9818 ` Snow Dogs ' has both . 9819 It 's almost as if it 's an elaborate dare more than a full-blooded film . 9820 Wobbly Senegalese updating of `` Carmen '' which is best for the stunning star turn by Djeinaba Diop Gai 9821 It 's the humanizing stuff that will probably sink the film for anyone who does n't think about percentages all day long . 9822 Ken Russell would love this . 9823 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 . 9824 Bella is the picture of health with boundless energy until a few days before she dies . 9825 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 . 9826 The premise of `` Abandon '' holds promise , ... but its delivery is a complete mess . 9827 What 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 . 9828 A 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 . 9829 Unless 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 . 9830 The Rock has a great presence but one battle after another is not the same as one battle followed by killer CGI effects . 9831 The 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 . 9832 The lousy John Q all but spits out Denzel Washington 's fine performance in the title role . 9833 The 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 . 9834 What a stiflingly unfunny and unoriginal mess this is ! 9835 The 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 . 9836 Opera on film is never satisfactory . 9837 The art demands live viewing . 9838 The innate theatrics that provide its thrills and extreme emotions lose their luster when flattened onscreen . 9839 Despite all the closed-door hanky-panky , the film is essentially juiceless . 9840 It is parochial , accessible to a chosen few , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 9841 The Sweetest Thing leaves an awful sour taste . 9842 It 's lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay . 9843 Terminally bland , painfully slow and needlessly confusing ... The movie , shot on digital videotape rather than film , is frequently indecipherable . 9844 As 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 . 9845 Aloof and lacks any real raw emotion , which is fatal for a film that relies on personal relationships . 9846 A low-rent retread of the Alien pictures . 9847 Serviceable at best , slightly less than serviceable at worst . 9848 Its initial excitement settles into a warmed over pastiche . 9849 A big meal of cliches that the talented cast generally chokes on . 9850 The story has little wit and no surprises . 9851 The 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 . 9852 What should have been a cutting Hollywood satire is instead about as fresh as last week 's issue of Variety . 9853 Hey everybody , wanna watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped ? 9854 I did n't think so . 9855 A little more intensity and a little less charm would have saved this film a world of hurt . 9856 -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 . 9857 The movie 's plot is almost entirely witless and inane , carrying every gag two or three times beyond its limit to sustain a laugh . 9858 ... may work as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence . 9859 This Scarlet 's letter is A. . . 9860 as in aimless , arduous , and arbitrary . 9861 Plays like a glossy melodrama that occasionally verges on camp . 9862 The central character is n't complex enough to hold our interest . 9863 A 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 . 9864 A puppy dog so desperate for attention it nearly breaks its little neck trying to perform entertaining tricks . 9865 Just about all of the film is confusing on one level or another , making Ararat far more demanding than it needs to be . 9866 A little less extreme than in the past , with longer exposition sequences between them , and with fewer gags to break the tedium . 9867 There 's a heavy stench of ` been there , done that ' hanging over the film . 9868 It 's everything you 'd expect -- but nothing more . 9869 The biggest problem with Satin Rouge is Lilia herself . 9870 She 's a cipher , played by an actress who smiles and frowns but does n't reveal an inner life . 9871 A quaint , romanticized rendering . 9872 What with the incessant lounge music playing in the film 's background , you may mistake Love Liza for an Adam Sandler Chanukah song . 9873 The movie 's heavy-handed screenplay navigates a fast fade into pomposity and pretentiousness . 9874 A potentially good comic premise and excellent cast are terribly wasted . 9875 Woody Allen used to ridicule movies like Hollywood Ending . 9876 Now he makes them . 9877 She 's not yet an actress , not quite a singer ... 9878 Not a bad premise , but the execution is lackluster at best . 9879 Been there done that . 9880 There is only so much baked cardboard I need to chew . 9881 A movie like The Guys is why film criticism can be considered work . 9882 Schnitzler 's film has a great hook , some clever bits and well-drawn , if standard issue , characters , but is still only partly satisfying . 9883 Even if it made its original release date last fall , it would 've reeked of a been-there , done-that sameness . 9884 Only two-fifths of a satisfying movie experience . 9885 A loud , ugly , irritating movie without any of its satirical salvos hitting a discernible target . 9886 A movie version of a paint-by-numbers picture . 9887 We can tell what it is supposed to be , but ca n't really call it a work of art . 9888 It 's a brilliant , honest performance by Nicholson , but the film is an agonizing bore except when the fantastic Kathy Bates turns up . 9889 Bravado Kathy ! 9890 ... Liotta is put in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario . 9891 Too bad . 9892 You can thank me for this . 9893 I saw Juwanna Mann so you do n't have to . 9894 Unfunny and lacking any sense of commitment to or affection for its characters , the Reginald Hudlin comedy relies on toilet humor , ethnic slurs . 9895 Basically , it 's pretty but dumb . 9896 This romantic\/comedy asks the question how much souvlaki can you take before indigestion sets in . 9897 Squandering his opportunity to make absurdist observations , Burns gets caught up in the rush of slapstick thoroughfare . 9898 There 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes , but Kang tacks on three or four more endings . 9899 Reeboir varies between a sweet smile and an angry bark , while Said attempts to wear down possible pupils through repetition . 9900 It has no affect on the Kurds , but it wore me down . 9901 The 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 . 9902 Co-writer\/director Jonathan Parker 's attempts to fashion a Brazil-like , hyper-real satire fall dreadfully short . 9903 If this silly little cartoon can inspire a few kids not to grow up to be greedy bastards , more power to it . 9904 A 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 . 9905 If there 's a heaven for bad movies , Deuces Wild is on its way . 9906 Comes off like a bad imitation of the Bard . 9907 What 's missing in Murder by Numbers is any real psychological grounding for the teens ' deviant behaviour . 9908 Being latently gay and liking to read are hardly enough . 9909 An uninspired preachy and clichéd war film . 9910 Horrendously amateurish filmmaking that is plainly dull and visually ugly when it is n't incomprehensible . 9911 A 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 . 9912 Slackers ' 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 . 9913 If 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 . 9914 The movie is too impressed with its own solemn insights to work up much entertainment value . 9915 I have n't seen such self-amused trash since Freddy Got Fingered . 9916 Little more than a well-mounted history lesson . 9917 Rob Schneider 's infantile cross-dressing routines fill The Hot Chick , the latest gimmick from this unimaginative comedian . 9918 A horrible , 99-minute stink bomb . 9919 The film is weighed down by supporting characters who are either too goodly , wise and knowing or downright comically evil . 9920 The film is so bad it does n't improve upon the experience of staring at a blank screen . 9921 Sheridan 's take on the author 's schoolboy memoir ... is a rather toothless take on a hard young life . 9922 It 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 . 9923 How 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 . 9924 When it comes to the battle of Hollywood vs. Woo , it looks like Woo 's a P.O.W. 9925 There are a few chuckles , but not a single gag sequence that really scores , and the stars seem to be in two different movies . 9926 The 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 . 9927 It 's dull , spiritless , silly and monotonous : an ultra-loud blast of pointless mayhem , going nowhere fast . 9928 The mushy finale turns John Q into a movie-of-the-week tearjerker . 9929 Content 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 . 9930 The movie turns out to be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' in all its fusty squareness . 9931 Its message has merit and , in the hands of a brutally honest individual like Prophet Jack , might have made a point or two regarding life . 9932 -LRB- Seems -RRB- even more uselessly redundant and shamelessly money-grubbing than most third-rate horror sequels . 9933 It 's hard to imagine that even very small children will be impressed by this tired retread . 9934 Neither 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 . 9935 If swimfan does catch on , it may be because teens are looking for something to make them laugh . 9936 What might 've been an exhilarating exploration of an odd love triangle becomes a sprawl of uncoordinated vectors . 9937 The Master of Disguise may have made a great Saturday Night Live sketch , but a great movie it is not . 9938 It '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 . 9939 Boll uses a lot of quick cutting and blurry step-printing to goose things up , but dopey dialogue and sometimes inadequate performances kill the effect . 9940 It 's always disappointing when a documentary fails to live up to -- or offer any new insight into -- its chosen topic . 9941 Unfortunately , that 's precisely what Arthur Dong 's Family Fundamentals does . 9942 Has the marks of a septuagenarian ; it 's a crusty treatment of a clever gimmick . 9943 Like 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 . 9944 Something must have been lost in the translation . 9945 Becomes the last thing you would expect from a film with this title or indeed from any Plympton film : boring . 9946 In 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 . 9947 Chan 's stunts are limited and so embellished by editing that there 's really not much of a sense of action or even action-comedy . 9948 Rock 's stand-up magic wanes . 9949 Hopkins , squarely fills the screen . 9950 Action - mechanical . 9951 `` The Tuxedo '' should have been the vehicle for Chan that `` The Mask '' was for Jim Carrey . 9952 Alas , it 's the man that makes the clothes . 9953 For 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 . 9954 The 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 . 9955 What puzzles me is the lack of emphasis on music in Britney Spears ' first movie . 9956 Plot , characters , drama , emotions , ideas -- all are irrelevant to the experience of seeing The Scorpion King . 9957 City by the Sea is a gritty police thriller with all the dysfunctional family dynamics one could wish for . 9958 But how it washed out despite all of that is the project 's prime mystery . 9959 Whatever the movie 's sentimental , hypocritical lessons about sexism , its true colors come out in various wet T-shirt and shower scenes . 9960 As a hybrid teen thriller and murder mystery , Murder by Numbers fits the profile too closely . 9961 There ai n't a lot more painful than an unfunny movie that thinks it 's hilarious . 9962 I enjoyed the movie in a superficial way , while never sure what its purpose was . 9963 What a pity ... that the material is so second-rate . 9964 Does n't deliver a great story , nor is the action as gripping as in past Seagal films . 9965 The 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 . 9966 Nicks 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 . 9967 Nothing about the film -- with the possible exception of Elizabeth Hurley 's breasts -- is authentic . 9968 Amid the cliché and foreshadowing , Cage manages a degree of casual realism ... that is routinely dynamited by Blethyn . 9969 Mostly , Shafer and co-writer Gregory Hinton lack a strong-minded viewpoint , or a sense of humor . 9970 No cliche escapes the perfervid treatment of gang warfare called ces Wild . 9971 Eddie 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 . 9972 Strictly a ` guy 's film ' in the worst sense of the expression . 9973 There '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 . 9974 It '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 . 9975 There '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 . 9976 We 're left with a story that tries to grab us , only to keep letting go at all the wrong moments . 9977 Like many such biographical melodramas , it suffers from the awkwardness that results from adhering to the messiness of true stories . 9978 There is nothing redeeming about this movie . 9979 The film has -LRB- its -RRB- moments , but they are few and far between . 9980 I 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 . 9981 Derailed 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 . 9982 Deserves high marks for political courage but barely gets by on its artistic merits . 9983 ... comes alive only when it switches gears to the sentimental . 9984 Brosnan 's finest non-Bondish performance yet fails to overcome the film 's manipulative sentimentality and annoying stereotypes . 9985 A 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 . 9986 To 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 . 9987 Tsai may be ploughing the same furrow once too often . 9988 Flashy gadgets and whirling fight sequences may look cool , but they ca n't distract from the flawed support structure holding Equilibrium up . 9989 ZigZag might have been richer and more observant if it were less densely plotted . 9990 How can such a cold movie claim to express warmth and longing ? 9991 In truth , it has all the heart of a porno flick -LRB- but none of the sheer lust -RRB- . 9992 Nicks and Steinberg match their own creations for pure venality -- that 's giving it the old college try . 9993 Episode II -- Attack of the Clones is a technological exercise that lacks juice and delight . 9994 The problem with all of this : It 's not really funny . 9995 -LRB- Denis ' -RRB- bare-bones narrative more closely resembles an outline for a '70s exploitation picture than the finished product . 9996 Wanders 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 . 9997 Viewing this underdramatized but overstated film is like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet . 9998 Overall tomfoolery like this is a matter of taste . 9999 The mantra behind the project seems to have been ` it 's just a kids ' flick . ' 10000 Translation : ` We do n't need to try very hard . ' 10001 In all the annals of the movies , few films have been this odd , inexplicable and unpleasant . 10002 It takes a really long , slow and dreary time to dope out what TUCK EVERLASTING is about . 10003 So here it is : It 's about a family of sour immortals . 10004 an essentially awkward version of the lightweight female empowerment picture we 've been watching for decades 10005 The author 's devotees will probably find it fascinating ; others may find it baffling . 10006 Writer-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 . 10007 There '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 . 10008 A cockeyed shot all the way . 10009 Lush 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 . 10010 Unfortunately , One Hour Photo lives down to its title . 10011 Thanks largely to Williams , all the interesting developments are processed in 60 minutes -- the rest is just an overexposed waste of film . 10012 Cold , Sterile And Lacking Any Color Or Warmth . 10013 The film is undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold . 10014 Seems like someone going through the motions . 10015 For a film about explosions and death and spies , `` Ballistic : Ecks vs. Sever '' seems as safe as a children 's film . 10016 Well , in some of those , the mother deer even dies . 10017 Wallace gets a bit heavy handed with his message at times , and has a visual flair that waxes poetic far too much for our taste . 10018 Impostor does n't do much with its template , despite a remarkably strong cast . 10019 Wraps 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 . 10020 Choppy , overlong documentary about ` The Lifestyle . ' 10021 One sloughs one 's way through the mire of this alleged psychological thriller in search of purpose or even a plot . 10022 A 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 . 10023 It 's a fanboy ` what if ? ' 10024 brought to life on the big screen . 10025 The story itself is actually quite vapid . 10026 It '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 . 10027 Wait for pay per view or rental but do n't dismiss BarberShop out of hand . 10028 A few zingers aside , the writing is indifferent , and Jordan Brady 's direction is prosaic . 10029 Each scene drags , underscoring the obvious , and sentiment is slathered on top . 10030 Would 've been nice if the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement . 10031 Then Nadia 's birthday might not have been such a bad day after all . 10032 One of those staggeringly well-produced , joylessly extravagant pictures that keep whooshing you from one visual marvel to the next , hastily , emptily . 10033 Nair just does n't have the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy . 10034 Enthusiastically taking up the current teen movie concern with bodily functions , Walt Becker 's film pushes all the demographically appropriate comic buttons . 10035 It 's the funniest American comedy since Graffiti Bridge . 10036 That neither protagonist has a distinguishable condition hardly matters because both are just actory concoctions , defined by childlike dimness and a handful of quirks . 10037 What starts off as a possible Argentine American Beauty reeks like a room stacked with pungent flowers . 10038 The project 's filmmakers forgot to include anything even halfway scary as they poorly rejigger Fatal Attraction into a high school setting . 10039 In old-fashioned screenwriting parlance , Ms. Shreve 's novel proved too difficult a text to ` lick , ' despite the efforts of a first-rate cast . 10040 Solondz may well be the only one laughing at his own joke 10041 Stitch is a bad mannered , ugly and destructive little \*\*\*\* . 10042 No cute factor here ... Not that I mind ugly ; the problem is he has no character , loveable or otherwise . 10043 Deep down , I realized the harsh reality of my situation : I would leave the theater with a lower I.Q. than when I had entered . 10044 A really funny fifteen-minute short stretched beyond its limits to fill an almost feature-length film . 10045 Aside 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 . 10046 It is bad , but certainly not without merit as entertainment . 10047 For its 100 minutes running time , you 'll wait in vain for a movie to happen . 10048 A work that lacks both a purpose and a strong pulse . 10049 A faster paced family flick . 10050 Upper Teens may get cynical . 10051 Smaller numbered kidlets will enjoy . 10052 While 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 . 10053 It 's a road-trip drama with too many wrong turns . 10054 Most fish stories are a little peculiar , but this is one that should be thrown back in the river . 10055 It '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 . 10056 `` I blame all men for war , '' -LRB- the warden 's daughter -RRB- tells her father . 10057 The movie is about as deep as that sentiment . 10058 It 's fitfully funny but never really takes off . 10059 I 've seen some bad singer-turned actors , but Lil Bow Wow takes the cake . 10060 By 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 . 10061 For all the complications , it 's all surprisingly predictable . 10062 It 's been 20 years since 48 Hrs . 10063 made Eddie Murphy a movie star and the man has n't aged a day . 10064 But his showboating wise-cracker stock persona sure is getting old . 10065 If 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 . 10066 But it was n't . 10067 For a film about action , Ultimate X is the gabbiest giant-screen movie ever , bogging down in a barrage of hype . 10068 ... 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 . 10069 It 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 . 10070 The picture seems uncertain whether it wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain . 10071 A nearly 21\/2 hours , the film is way too indulgent . 10072 Gorgeous to look at but insufferably tedious and turgid ... a curiously constricted epic . 10073 It looks much more like a cartoon in the end than The Simpsons ever has . 10074 With 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 . 10075 Does n't really add up to much . 10076 It '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 . 10077 An entertainment so in love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots . 10078 A prolonged extrusion of psychopathic pulp . 10079 Borrows from other movies like it in the most ordinary and obvious fashion . 10080 It 's surprisingly bland despite the heavy doses of weird performances and direction . 10081 A chilly , remote , emotionally distant piece ... so dull that its tagline should be : ` In space , no one can hear you snore . ' 10082 The characters seem one-dimensional , and the film is superficial and will probably be of interest primarily to its target audience . 10083 Sorvino 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 . 10084 It 's like a drive-by . 10085 You can drive right by it without noticing anything special , save for a few comic turns , intended and otherwise . 10086 Everything -- even life on an aircraft carrier -- is sentimentalized . 10087 This would-be ` James Bond for the Extreme Generation ' pic is one big , dumb action movie . 10088 Stress ` dumb . ' 10089 The movie has generic virtues , and despite a lot of involved talent , seems done by the numbers . 10090 When your subject is illusion versus reality , should n't the reality seem at least passably real ? 10091 It 's a terrible movie in every regard , and utterly painful to watch . 10092 This 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 ? ' 10093 A fan film that for the uninitiated plays better on video with the sound turned down . 10094 Too infuriatingly quirky and taken with its own style . 10095 There 's a whole heap of nothing at the core of this slight coming-of-age\/coming-out tale . 10096 As 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 . 10097 The type of dumbed-down exercise in stereotypes that gives the -LRB- teen comedy -RRB- genre a bad name . 10098 Distinctly sub-par ... more likely to drown a viewer in boredom than to send any shivers down his spine . 10099 Plays like a bad blend of an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story . 10100 Unless 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 . 10101 When the casting call for this movie went out , it must have read ` seeking anyone with acting ambition but no sense of pride or shame . ' 10102 Just is n't as weird as it ought to be . 10103 A `` Home Alone '' film that is staged like `` Rosemary 's Baby , '' but is not as well-conceived as either of those films . 10104 -LRB- Siegel -RRB- and co-writers Lisa Bazadona and Grace Woodard have relied too much on convention in creating the characters who surround Frankie . 10105 No film could possibly be more contemptuous of the single female population . 10106 ` Hey Arnold ! ' 10107 has some visual wit ... but little imagination elsewhere . 10108 They 're going through the motions , but the zip is gone . 10109 A 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 . 10110 A low-budget affair , Tadpole was shot on digital video , and the images often look smeary and blurry , to the point of distraction . 10111 Then again , in a better movie , you might not have noticed . 10112 It 's mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love . 10113 The movie is like a year late for tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast . '' 10114 tale will be all too familiar for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting . '' 10115 Gets the look and the period trappings right , but it otherwise drowns in a sea of visual and verbal clichés . 10116 It '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 . 10117 Anyone 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 . 10118 The problem with The Bread , My Sweet is that it 's far too sentimental . 10119 A late-night cable sexploitation romp masquerading as a thriller about the ruthless social order that governs college cliques . 10120 Falls short in explaining the music and its roots . 10121 Never inspires more than an interested detachment . 10122 What 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 . 10123 Despite 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 . 10124 Pretty much sucks , but has a funny moment or two . 10125 They do a good job of painting this family dynamic for the audience but they tried to squeeze too many elements into the film . 10126 A supernatural mystery that does n't know whether it wants to be a suspenseful horror movie or a weepy melodrama . 10127 It ends up being neither , and fails at both endeavors . 10128 Two badly interlocked stories drowned by all too clever complexity . 10129 It is so earnest , so overwrought and so wildly implausible that it begs to be parodied . 10130 These are textbook lives of quiet desperation . 10131 Swimfan , like Fatal Attraction , eventually goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub . 10132 Claims to sort the bad guys from the good , which is its essential problem . 10133 Purposefully shocking in its eroticized gore , if unintentionally dull in its lack of poetic frissons . 10134 Feels like pieces a bunch of other , better movies slapped together . 10135 Almost everything about the film is unsettling , from the preposterous hairpiece worn by Lai 's villainous father to the endless action sequences . 10136 Writer-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 . 10137 It 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 . 10138 One ca n't shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album . 10139 Phoned-in business as usual . 10140 There 's an epic here , but you have to put it together yourself . 10141 What little atmosphere is generated by the shadowy lighting , macabre sets , and endless rain is offset by the sheer ugliness of everything else . 10142 Director-chef Gabriele Muccino keeps it fast -- zippy , comin ' at ya -- as if fearing that his film is molto superficiale . 10143 Tartakovsky 's team has some freakish powers of visual charm , but the five writers slip into the modern rut of narrative banality . 10144 The most horrific movie experience I 've had since `` Ca n't Stop The Music . '' 10145 It may as well be called `` Jar-Jar Binks : The Movie . '' 10146 It 's that painful . 10147 God is great , the movie 's not . 10148 Like a three-ring circus , there are side stories aplenty -- none of them memorable . 10149 When in doubt , the film ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and lets the cliched dialogue rip . 10150 Or else a doggie winks . 10151 A ` 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 . 10152 As original and insightful as last week 's episode of Behind the Music . 10153 Plays like John Le Carré with a couple of burnt-out cylinders . 10154 You may be galled that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie . 10155 It 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy , but it has its moments . 10156 Despite 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 . 10157 A smug and convoluted action-comedy that does n't allow an earnest moment to pass without reminding audiences that it 's only a movie . 10158 -LRB- Crystal and De Niro -RRB- manage to squeeze out some good laughs but not enough to make this silly con job sing . 10159 Worthless , from its pseudo-rock-video opening to the idiocy of its last frames . 10160 The Christ allegory does n't work because there is no foundation for it 10161 Go for La Salle 's performance , and make do as best you can with a stuttering script . 10162 It '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 . 10163 Tries too hard to be funny in a way that 's too loud , too goofy and too short of an attention span . 10164 I did n't find much fascination in the swinging . 10165 What they 're doing is a matter of plumbing arrangements and mind games , of no erotic or sensuous charge . 10166 But that they are doing it is thought-provoking . 10167 The acting is just fine , but there 's not enough substance here to sustain interest for the full 90 minutes , especially with the weak payoff . 10168 After Collateral Damage , you might imagine that most every aggrieved father cliché has been unturned . 10169 But no. . 10170 Ultimately 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 . 10171 Releasing 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 . 10172 Tedious Norwegian offering which somehow snagged an Oscar nomination . 10173 It was a dark and stormy night ... 10174 A dark-as-pitch comedy that frequently veers into corny sentimentality , probably would not improve much after a therapeutic zap of shock treatment . 10175 This sort of cute and cloying material is far from Zhang 's forte and it shows . 10176 Bray is completely at sea ; with nothing but a Savage Garden music video on his resume , he has no clue about making a movie . 10177 Freundlich 's made -LRB- Crudup -RRB- a suburban architect , and a cipher . 10178 a huge disappointment coming , as it does , from filmmakers and performers of this calibre 10179 Though it pretends to expose the life of male hustlers , it 's exploitive without being insightful . 10180 Aimed squarely at the least demanding of demographic groups : very small children who will be delighted simply to spend more time with familiar cartoon characters . 10181 What starts off as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points . 10182 Exhibits the shallow sensationalism characteristic of soap opera ... more salacious telenovela than serious drama . 10183 Seagal is painfully foolish in trying to hold onto what 's left of his passe ' chopsocky glory . 10184 Even with Harris 's strong effort , the script gives him little to effectively probe Lear 's soul-stripping breakdown . 10185 The story is bogus and its characters tissue-thin . 10186 Whereas 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 ? 10187 is an inexpressible and drab wannabe looking for that exact niche . 10188 While American Adobo has its heart -LRB- and its palate -RRB- in the right place , its brain is a little scattered -- ditsy , even . 10189 Imagine 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 . 10190 Most of the dialogue made me want to pack raw dough in my ears . 10191 Costner '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 . 10192 It 's coherent , well shot , and tartly acted , but it wears you down like a dinner guest showing off his doctorate . 10193 Directed 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 . 10194 turns 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 10195 Robin Williams departs from his fun friendly demeanor in exchange for a darker unnerving role . 10196 High 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 . 10197 Set in a 1986 Harlem that does n't look much like anywhere in New York . 10198 The chocolate factory without Charlie . 10199 Long on twinkly-eyed close-ups and short on shame . 10200 Hip-hop rarely comes alive as its own fire-breathing entity in this picture . 10201 A dull , somnambulant exercise in pretension whose pervasive quiet is broken by frequent outbursts of violence and noise . 10202 Deserving of its critical backlash and more . 10203 Neither a rousing success nor a blinding embarrassment . 10204 Still , it just sits there like a side dish no one ordered . 10205 The 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- . 10206 The movie spends more time with Schneider than with newcomer McAdams , even though her performance is more interesting -LRB- and funnier -RRB- than his . 10207 This 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 . 10208 It recycles every cliché about gays in what is essentially an extended soap opera . 10209 I '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 . 10210 May offend viewers not amused by the sick sense of humor . 10211 Many of Benjamins ' elements feel like they 've been patched in from an episode of Miami Vice . 10212 It aimlessly and unsuccessfully attempts to fuse at least three dull plots into one good one . 10213 Most folks with a real stake in the American sexual landscape will find it either moderately amusing or just plain irrelevant . 10214 If you 're not fans of the adventues of Steve and Terri , you should avoid this like the dreaded King Brown snake . 10215 Personally , I 'd rather watch them on the Animal Planet . 10216 Cherish is a dud -- a romantic comedy that 's not the least bit romantic and only mildly funny . 10217 Feels as if the inmates have actually taken over the asylum . 10218 All of the filmmakers ' calculations ca n't rescue Brown Sugar from the curse of blandness . 10219 The movie 's gloomy atmosphere is fascinating , though , even if the movie itself does n't stand a ghost of a chance . 10220 ... 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 . 10221 The exclamation point seems to be the only bit of glee you 'll find in this dreary mess . 10222 No matter how you slice it , Mark Wahlberg and Thandie Newton are not Hepburn and Grant , two cinematic icons with chemistry galore . 10223 Godard '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 . 10224 Humorless , self-conscious art drivel , made without a glimmer of intelligence or invention . 10225 The movie 's progression into rambling incoherence gives new meaning to the phrase ` fatal script error . ' 10226 Solondz may be convinced that he has something significant to say , but he is n't talking a talk that appeals to me . 10227 More tiring than anything . 10228 Nelson 's intentions are good , but the end result does no justice to the story itself . 10229 It 's horribly depressing and not very well done . 10230 ... the efforts of its star , Kline , to lend some dignity to a dumb story are for naught . 10231 A good-natured ensemble comedy that tries hard to make the most of a bumper cast , but never quite gets off the ground . 10232 Is n't it a bit early in his career for director Barry Sonnenfeld to do a homage to himself ? 10233 And it 's a lousy one at that . 10234 Overly long and worshipful bio-doc . 10235 I 'll go out on a limb . 10236 It is n't quite one of the worst movies of the year . 10237 It 's just merely very bad . 10238 Writer-director Ritchie reduces Wertmuller 's social mores and politics to tiresome jargon . 10239 About 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 . 10240 Everything about Girls Ca n't Swim , even its passages of sensitive observation , feels secondhand , familiar -- and not in a good way . 10241 Feels aimless for much of its running time , until late in the film when a tidal wave of plot arrives , leaving questions in its wake . 10242 In 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 . 10243 The script is too mainstream and the psychology too textbook to intrigue . 10244 Muddled , simplistic and more than a little pretentious . 10245 Meandering and glacially paced , and often just plain dull . 10246 A disaster of a drama , saved only by its winged assailants . 10247 A road trip that will get you thinking , ` Are we there yet ? ' 10248 Director 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 ? 10249 Dong 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 . 10250 If 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 . 10251 An occasionally interesting but mostly repetitive look at a slice of counterculture that might be best forgotten . 10252 What could have been right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination . 10253 The 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 . 10254 This pathetic junk is barely an hour long . 10255 Nevertheless , it still seems endless . 10256 It is n't that Stealing Harvard is a horrible movie -- if only it were that grand a failure ! 10257 It 's just that it 's so not-at-all-good . 10258 And I expect much more from a talent as outstanding as director Bruce McCulloch . 10259 Dolman confines himself to shtick and sentimentality -- the one bald and the other sloppy . 10260 Is it possible for a documentary to be utterly entranced by its subject and still show virtually no understanding of it ? 10261 It 's supposed to be a romantic comedy - it suffers from too much Norma Rae and not enough Pretty Woman . 10262 The leads are so unmemorable , despite several attempts at lengthy dialogue scenes , that one eventually resents having to inhale this gutter romancer 's secondhand material . 10263 Staggers between flaccid satire and what is supposed to be madcap farce . 10264 Not 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 . 10265 Brainy , artistic and muted , almost to the point of suffocation . 10266 Plays like the old disease-of-the-week small-screen melodramas . 10267 Like life on the island , the movie grows boring despite the scenery . 10268 The truth about Charlie is that it 's a brazenly misguided project . 10269 displays the potential for a better movie than what Bailly manages to deliver 10270 So exaggerated and broad that it comes off as annoying rather than charming . 10271 An awkward hybrid of genres that just does n't work . 10272 The latest vapid actor 's exercise to appropriate the structure of Arthur Schnitzler 's Reigen . 10273 Snipes is both a snore and utter tripe . 10274 Ritchie 's film is easier to swallow than Wertmuller 's polemical allegory , but it 's self-defeatingly decorous . 10275 Chalk it up as the worst kind of hubristic folly . 10276 It 's the kind of under-inspired , overblown enterprise that gives Hollywood sequels a bad name . 10277 Rosenthal -LRB- Halloween II -RRB- seems to have forgotten everything he ever knew about generating suspense . 10278 Even Murphy 's expert comic timing and famed charisma ca n't rescue this effort . 10279 Rodriguez ... was unable to reproduce the special spark between the characters that made the first film such a delight . 10280 A sleek advert for youthful anomie that never quite equals the sum of its pretensions . 10281 Some Body smacks of exhibitionism more than it does cathartic truth telling . 10282 This is n't a terrible film by any means , but it 's also far from being a realized work . 10283 Apparently , romantic comedy with a fresh point of view just does n't figure in the present Hollywood program . 10284 Depressingly thin and exhaustingly contrived . 10285 Only masochistic moviegoers need apply . 10286 A movie that 's held captive by mediocrity . 10287 Not bad , but not all that good . 10288 Bacon keeps things interesting , but do n't go out of your way to pay full price . 10289 What 's next ? 10290 Rob Schneider , Dana Carvey and Sarah Michelle Gellar in The Philadelphia Story ? 10291 David Spade as Citizen Kane ? 10292 Ca n't seem to get anywhere near the story 's center . 10293 The problem , amazingly enough , is the screenplay . 10294 It 's a Frankenstein-monster of a film that does n't know what it wants to be . 10295 Upper West Sidey exercise in narcissism and self-congratulation disguised as a tribute . 10296 On its icy face , the new film is a subzero version of Monsters , Inc. , without the latter 's imagination , visual charm or texture . 10297 I ca n't say this enough : This movie is about an adult male dressed in pink jammies . 10298 It 's a mindless action flick with a twist -- far better suited to video-viewing than the multiplex . 10299 After 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 . 10300 We get light showers of emotion a couple of times , but then -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle . 10301 Summer 's far too fleeting to squander on offal like this . 10302 The film is grossly contradictory in conveying its social message , if indeed there is one . 10303 Often lingers just as long on the irrelevant as on the engaging , which gradually turns What Time Is It There ? 10304 into How Long Is This Movie ? 10305 Too bad Kramer could n't make a guest appearance to liven things up . 10306 Deuces 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 . 10307 It 's a barely tolerable slog over well-trod ground . 10308 Epps has neither the charisma nor the natural affability that has made Tucker a star . 10309 It 's sweet ... but just a little bit too precious at the start and a little too familiar at the end . 10310 A dull , dumb and derivative horror film . 10311 An awkwardly contrived exercise in magic realism . 10312 Demme 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 . 10313 This is a heartfelt story ... it just is n't a very involving one . 10314 These 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 . 10315 The 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 . 10316 Richard Pryor mined his personal horrors and came up with a treasure chest of material , but Lawrence gives us mostly fool 's gold . 10317 The band performances featured in Drumline are red hot ... -LRB- but -RRB- from a mere story point of view , the film 's ice cold . 10318 ... 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 . 10319 A laughable -- or rather , unlaughable -- excuse for a film . 10320 The sequel is everything the original was not : contrived , overblown and tie-in ready . 10321 Like a grinning Jack O ' Lantern , its apparent glee is derived from a lobotomy , having had all its vital essence scooped out and discarded . 10322 A sentimental hybrid that could benefit from the spice of specificity . 10323 ... familiar and predictable , and 4\/5ths of it might as well have come from a Xerox machine rather than -LRB- writer-director -RRB- Franc . 10324 Reyes ' word processor . 10325 Give Shapiro , Goldman , and Bolado credit for good intentions , but there 's nothing here that they could n't have done in half an hour . 10326 It 's so devoid of joy and energy it makes even Jason X ... look positively Shakesperean by comparison . 10327 A little objectivity could have gone a long way . 10328 One of the worst films of 2002 . 10329 I believe Silberling had the best intentions here , but he just does n't have the restraint to fully realize them . 10330 plays like an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood . 10331 McTiernan '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 . 10332 High 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 . 10333 This movie is about the worst thing Chan has done in the United States . 10334 The explosion essentially ruined -- or , rather , overpowered -- the fiction of the movie for me . 10335 This ludicrous film is predictable at every turn . 10336 An 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 . 10337 The film desperately sinks further and further into comedy futility . 10338 Instead of a balanced film that explains the zeitgeist that is the X Games , we get a cinematic postcard that 's superficial and unrealized . 10339 The crassness of this reactionary thriller is matched only by the ridiculousness of its premise . 10340 I wish it would have just gone more over-the-top instead of trying to have it both ways . 10341 The superior plotline is n't quite enough to drag along the dead -LRB- water -RRB- weight of the other . 10342 The 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 . 10343 Adrift , Bentley and Hudson stare and sniffle , respectively , as Ledger attempts , in vain , to prove that movie-star intensity can overcome bad hair design . 10344 After 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 . 10345 ` Linklater fans , or pretentious types who want to appear avant-garde will suck up to this project ... ' 10346 A woefully dull , redundant concept that bears more than a whiff of exploitation , despite Iwai 's vaunted empathy . 10347 Screenwriter Chris ver Weil 's directing debut is good-natured and never dull , but its virtues are small and easily overshadowed by its predictability . 10348 If you really want to understand what this story is really all about , you 're far better served by the source material . 10349 It 's mildly sentimental , unabashedly consumerist ... studiously inoffensive and completely disposable . 10350 Like its title character , Esther Kahn is unusual but unfortunately also irritating . 10351 The 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 . '' 10352 A 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 . 10353 Every conceivable mistake a director could make in filming opera has been perpetrated here . 10354 Snoots 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 . 10355 -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 . 10356 Any enjoyment will be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things . 10357 If 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 . 10358 Hardly a nuanced portrait of a young woman 's breakdown , the film nevertheless works up a few scares . 10359 Interminably bleak , to say nothing of boring . 10360 Things really get weird , though not particularly scary : the movie is all portent and no content . 10361 It 's difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion . 10362 Bogs down badly as we absorb Jia 's moody , bad-boy behavior which he portrays himself in a one-note performance . 10363 The camera whirls ! 10364 The camera twirls ! 10365 Oh , look at that clever angle ! 10366 Wow , a jump cut ! 10367 Demme finally succeeds in diminishing his stature from Oscar-winning master to lowly studio hack . 10368 The 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 . 10369 It almost feels as if the movie is more interested in entertaining itself than in amusing us . 10370 It puts Washington , as honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher . 10371 Ultimately , the film amounts to being lectured to by tech-geeks , if you 're up for that sort of thing . 10372 Far more enjoyable than its predecessor . 10373 -LRB- Gayton 's script -RRB- telegraphs every discovery and layers on the gloss of convenience . 10374 Full 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 . 10375 A ragbag of cliches . 10376 This rough trade Punch-and-Judy act did n't play well then and it plays worse now . 10377 The three leads produce adequate performances , but what 's missing from this material is any depth of feeling . 10378 It 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel , but the result is more puzzling than unsettling . 10379 This painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications ... that have no bearing on the story . 10380 Short and sweet , but also more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations . 10381 Has its moments , but it 's pretty far from a treasure . 10382 What more can be expected from a college comedy that 's target audience has n't graduated from junior high school ? 10383 Collateral Damage offers formula payback and the Big Payoff , but the explosions tend to simply hit their marks , pyro-correctly . 10384 The 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 . 10385 Instead 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 . 10386 You know that ten bucks you 'd spend on a ticket ? 10387 Just send it to Cranky . 10388 We do n't get paid enough to sit through crap like this . 10389 An even more predictable , cliche-ridden endeavor than its predecessor . 10390 The whole thing plays like a tired Tyco ad . 10391 The 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 . 10392 The soupy end result has the odd distinction of being playful without being fun , too . 10393 No , 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 . 10394 Even by the intentionally low standards of frat-boy humor , Sorority Boys is a bowser . 10395 One well-timed explosion in a movie can be a knockout , but a hundred of them can be numbing . 10396 Proof of this is Ballistic : Ecks vs. Sever . 10397 Halfway 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 . 10398 Weighted down with slow , uninvolving storytelling and flat acting . 10399 We ca n't accuse Kung Pow for misfiring , since it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie . 10400 Unfortunately , we 'd prefer a simple misfire . 10401 There is n't one moment in the film that surprises or delights . 10402 ` Would n't it be nice if all guys got a taste of what it 's like on the other side of the bra ? ' 10403 The movie is essentially a series of fleetingly interesting actors ' moments . 10404 Most 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 . 10405 This movie , a certain scene in particular , brought me uncomfortably close to losing my lunch . 10406 The secrets of time travel will have been discovered , indulged in and rejected as boring before I see this piece of crap again . 10407 Smug , artificial , ill-constructed and fatally overlong ... it never finds a consistent tone and lacks bite , degenerating into a pious , preachy soap opera . 10408 Chelsea Walls is a case of too many chefs fussing over too weak a recipe . 10409 Every joke is repeated at least four times . 10410 Every joke is repeated at least four times . 10411 Every joke is repeated at least -- annoying , is n't it ? 10412 Comes across as a fairly weak retooling . 10413 The lousy lead performances ... keep the movie from ever reaching the comic heights it obviously desired . 10414 Its 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 . 10415 -LRB- Creates -RRB- the worst kind of mythologizing , the kind that sacrifices real heroism and abject suffering for melodrama . 10416 The movie resolutely avoids all the comic possibilities of its situation , and becomes one more dumb high school comedy about sex gags and prom dates . 10417 Earnest and heartfelt but undernourished and plodding . 10418 A sugar-coated Rocky whose valuable messages are forgotten 10 minutes after the last trombone honks . 10419 Romanek keeps adding flourishes -- artsy fantasy sequences -- that simply feel wrong . 10420 They cheapen the overall effect . 10421 Has all the complexity and realistic human behavior of an episode of General Hospital . 10422 An 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 . 10423 -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 . 10424 An exercise in cynicism every bit as ugly as the shabby digital photography and muddy sound . 10425 Not good enough to pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans . 10426 The movie is silly beyond comprehension , and even if it were n't silly , it would still be beyond comprehension . 10427 Watchable 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 . 10428 The scriptwriters are no less a menace to society than the film 's characters . 10429 Merchant has n't directed this movie so much as produced it -- like sausage . 10430 The film has a nearly terminal case of the cutes , and it 's neither as funny nor as charming as it thinks it is . 10431 More a gunfest than a Rock concert . 10432 It 's a frightful vanity film that , no doubt , pays off what debt Miramax felt they owed to Benigni . 10433 A muddy psychological thriller rife with miscalculations . 10434 It makes me say the obvious : Abandon all hope of a good movie ye who enter here . 10435 It 's not original enough . 10436 A listless sci-fi comedy in which Eddie Murphy deploys two guises and elaborate futuristic sets to no particularly memorable effect . 10437 Little more than a super-sized infomercial for the cable-sports channel and its Summer X Games . 10438 A generic bloodbath that often becomes laughably unbearable when it is n't merely offensive . 10439 Julie Davis is the Kathie Lee Gifford of film directors , sadly proving once again ego does n't always go hand in hand with talent . 10440 An unholy mess , driven by the pathetic idea that if you shoot something on crummy-looking videotape , it must be labelled ` hip ' , ` innovative ' and ` realistic ' . 10441 The story 's pathetic and the gags are puerile . . 10442 Curiously , Super Troopers suffers because it does n't have enough vices to merit its 103-minute length . 10443 So bland and utterly forgettable that it might as well have been titled Generic Jennifer Lopez Romantic Comedy . 10444 I was sent a copyof this film to review on DVD . 10445 For free . 10446 I still want my money back . 10447 It plods along methodically , somehow under the assumption that its `` dead wife communicating from beyond the grave '' framework is even remotely new or interesting . 10448 It '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 . 10449 All too familiar ... basically the sort of cautionary tale that was old when ` Angels With Dirty Faces ' appeared in 1938 . 10450 ... passable enough for a shoot-out in the o.k. court house of life type of flick . 10451 Strictly middle of the road . 10452 Although purportedly a study in modern alienation , it 's really little more than a particularly slanted , gay s\/m fantasy , enervating and deadeningly drawn-out . 10453 After the first 10 minutes , which is worth seeing , the movie sinks into an abyss of clichés , depression and bad alternative music . 10454 No one can doubt the filmmakers ' motives , but The Guys still feels counterproductive . 10455 A very slow , uneventful ride around a pretty tattered old carousel . 10456 With little visible talent and no energy , Colin Hanks is in bad need of major acting lessons and maybe a little coffee . 10457 `` 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 . 10458 A Meatballs for the bare-midriff generation . 10459 Well-meaning to a fault , Antwone Fisher manages the dubious feat of turning one man 's triumph of will into everyman 's romance comedy . 10460 Seemingly 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 . 10461 Formula 51 promises a new kind of high but delivers the same old bad trip . 10462 Everything that was right about Blade is wrong in its sequel . 10463 A 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 . 10464 The 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- . 10465 Disney again ransacks its archives for a quick-buck sequel . 10466 Coarse , 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 . 10467 Anyone who suffers through this film deserves , at the very least , a big box of consolation candy . 10468 How 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 . 10469 They 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 . 10470 Collapses after 30 minutes into a slap-happy series of adolescent violence . 10471 The 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 . 10472 Attal '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 . 10473 Obvious , obnoxious and didactic burlesque . 10474 The most surprising thing about this film is that they are actually releasing it into theaters . 10475 Michele is a such a brainless flibbertigibbet that it 's hard to take her spiritual quest at all seriously . 10476 Ultimately , clarity matters , both in breaking codes and making movies . 10477 Enigma lacks it . 10478 Potty-mouthed enough for PG-13 , yet not as hilariously raunchy as South Park , this strangely schizo cartoon seems suited neither to kids or adults . 10479 ... has its moments , but ultimately , its curmudgeon does n't quite make the cut of being placed on any list of favorites . 10480 A distinctly minor effort that will be seen to better advantage on cable , especially considering its barely feature-length running time of one hour . 10481 Most of the movie is so deadly dull that watching the proverbial paint dry would be a welcome improvement . 10482 In 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 . 10483 Rather less than the sum of its underventilated père-fils confrontations . 10484 McKay 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 . 10485 Plays like a series of vignettes -- clips of a film that are still looking for a common through-line . 10486 New Yorkers always seem to find the oddest places to dwell ... 10487 Amid the shock and curiosity factors , the film is just a corny examination of a young actress trying to find her way . 10488 Yes , Spirited Away is a triumph of imagination , but it 's also a failure of storytelling . 10489 A characteristically engorged and sloppy coming-of-age movie . 10490 A somewhat disappointing and meandering saga . 10491 Whenever you think you 've seen the end of the movie , we cut to a new scene , which also appears to be the end . 10492 But , no , we get another scene , and then another . 10493 You begin to long for the end credits as the desert does for rain . 10494 An empty , ugly exercise in druggy trance-noir and trumped-up street credibility . 10495 The 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 . 10496 The milieu is wholly unconvincing ... and the histrionics reach a truly annoying pitch . 10497 Unfunny 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 . 10498 Each 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 . 10499 Except 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 . 10500 Will no doubt delight Plympton 's legion of fans ; others may find 80 minutes of these shenanigans exhausting . 10501 The laughs are as rare as snake foo yung . 10502 For a film that celebrates radical , nonconformist values , What to Do in Case of Fire ? 10503 lazily and glumly settles into a most traditional , reserved kind of filmmaking . 10504 Knockaround Guys plays like a student film by two guys who desperately want to be Quentin Tarantino when they grow up . 10505 But they lack their idol 's energy and passion for detail . 10506 Mattei so completely loses himself to the film 's circular structure to ever offer any insightful discourse on , well , Love in the Time of Money . 10507 It briefly flirts with player masochism , but the point of real interest - -- audience sadism -- is evaded completely . 10508 Holland 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 . 10509 For 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 . 10510 There 's not a fresh idea at the core of this tale . 10511 An impenetrable and insufferable ball of pseudo-philosophic twaddle . 10512 It '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 . 10513 I liked the movie , but I know I would have liked it more if it had just gone that one step further . 10514 I 'm left slightly disappointed that it did n't . 10515 Dreary tale of middle-class angst 10516 For a movie about the power of poetry and passion , there is precious little of either . 10517 -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 . 10518 Lillard and Cardellini earn their Scooby Snacks , but not anyone else . 10519 Like Schindler 's List , The Grey Zone attempts to be grandiloquent , but ends up merely pretentious -- in a grisly sort of way . 10520 An 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 . 10521 -LRB- Screenwriter -RRB- Pimental took the Farrelly Brothers comedy and feminized it , but it is a rather poor imitation . 10522 It 's kind of sad that so many people put so much time and energy into this turkey . 10523 Friday After Next is a lot more bluster than bite . 10524 Its juxtaposition of overwrought existentialism and stomach-churning gore will have you forever on the verge of either cracking up or throwing up . 10525 A decidedly mixed bag . 10526 There are cheesy backdrops , ridiculous action sequences , and many tired jokes about men in heels . 10527 Ice Cube is n't quite out of ripe screwball ideas , but Friday After Next spreads them pretty thin . 10528 Not everything in the film works , including its somewhat convenient ending . 10529 The characters , cast in impossibly contrived situations , are totally estranged from reality . 10530 Everything else about High Crimes is , like the military system of justice it portrays , tiresomely regimented . 10531 Just dreadful . 10532 I do n't blame Eddie Murphy but should n't Owen Wilson know a movie must have a story and a script ? 10533 Sweet Home Alabama certainly wo n't be remembered as one of -LRB- Witherspoon 's -RRB- better films . 10534 hard as this may be to believe , Here on Earth , a surprisingly similar teen drama , was a better film . 10535 This is just lazy writing . 10536 Even kids deserve better . 10537 The pretensions -- and disposable story -- sink the movie . 10538 And Diesel is n't the actor to save it . 10539 Bravo 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 . 10540 ... a preachy parable stylized with a touch of John Woo bullet ballet . 10541 Frank Capra played this story straight . 10542 But the 2002 film does n't really believe in it , and breaks the mood with absurdly inappropriate ` comedy ' scenes . 10543 How about starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap ? 10544 The problem is that for the most part , the film is deadly dull . 10545 Handled correctly , Wilde 's play is a masterpiece of elegant wit and artifice . 10546 Here , alas , it collapses like an overcooked soufflé . 10547 `` Sorority Boys '' was funnier , and that movie was pretty bad . 10548 A 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 10549 Paul Bettany is good at being the ultra-violent gangster wannabe , but the movie is certainly not number 1 . 10550 It 's a gag that 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles . 10551 An uplifting drama ... What Antwone Fisher is n't , however , is original . 10552 Often 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 . 10553 Certain to be distasteful to children and adults alike , Eight Crazy Nights is a total misfire . 10554 Elaborate special effects take centre screen , so that the human story is pushed to one side . 10555 Showtime 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 . 10556 All the characters are clinically depressed and have abandoned their slim hopes and dreams . 10557 This Tuxedo ... should have been sent back to the tailor for some major alterations . 10558 I 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 . 10559 But first , you have to give the audience a reason to want to put for that effort 10560 Been there , done that ... a thousand times already , and better . 10561 What '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 . 10562 Sunk by way too much indulgence of scene-chewing , teeth-gnashing actorliness . 10563 Fans of Plympton 's shorts may marginally enjoy the film , but it is doubtful this listless feature will win him any new viewers . 10564 Barrels along at the start before becoming mired in sentimentality . 10565 None 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 . 10566 The kind of movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics . 10567 ` Punch-Drunk Love is so convinced of its own brilliance that , if it were a person , you 'd want to smash its face in . ' 10568 At once overly old-fashioned in its sudsy plotting and heavy-handed in its effort to modernize it with encomia to diversity and tolerance . 10569 The trashy teen-sleaze equivalent of Showgirls . 10570 While the production details are lavish , film has little insight into the historical period and its artists , particularly in how Sand developed a notorious reputation . 10571 A crass and insulting homage to great films like Some Like It Hot and the John Wayne classics . 10572 What 's the most positive thing that can be said about the new Rob Schneider vehicle ? 10573 Well , it 's not as pathetic as The Animal . 10574 With all the sympathy , empathy and pity fogging up the screen ... His Secret Life enters the land of unintentional melodrama and tiresome love triangles . 10575 The problematic characters and overly convenient plot twists foul up Shum 's good intentions . 10576 What ` Blade Runner ' would 've looked like as a low-budget series on a UHF channel . 10577 Has all the values of a straight-to-video movie , but because it has a bigger-name cast , it gets a full theatrical release . 10578 With its lackadaisical plotting and mindless action , All About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s . 10579 It never quite makes it to the boiling point , but manages to sustain a good simmer for most of its running time . 10580 Loud , silly , stupid and pointless . 10581 Mandel Holland 's direction is uninspired , and his scripting unsurprising , but the performances by Phifer and Black are ultimately winning . 10582 You 'll find yourself wishing that you and they were in another movie . 10583 A yawn-provoking little farm melodrama . 10584 Did no one on the set have a sense of humor , or did they not have the nerve to speak up ? 10585 Seriously , rent the Disney version . 10586 As 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 . 10587 Like its parade of predecessors , this Halloween is a gory slash-fest . 10588 It ca n't escape its past , and it does n't want to . 10589 `` Abandon '' will leave you wanting to abandon the theater . 10590 Problem is , we have no idea what in creation is going on . 10591 A live-action cartoon , a fast-moving and cheerfully simplistic 88 minutes of exaggerated action put together with the preteen boy in mind . 10592 A loquacious and dreary piece of business . 10593 What the audience feels is exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- , sour , bloody and mean . 10594 director Hoffman , his writer and Kline 's agent should serve detention 10595 Dodgy mixture of cutesy romance , dark satire and murder mystery . 10596 Meticulously mounted , exasperatingly well-behaved film , which ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant . 10597 Time 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 . 10598 I '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 . 10599 While 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 . 10600 I '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 . 10601 The only reason you should see this movie is if you have a case of masochism and an hour and a half to blow . 10602 Whatever about warning kids about the dangers of ouija boards , someone should dispense the same advice to film directors . 10603 As 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 . 10604 The Irwins ' scenes are fascinating ; the movie as a whole is cheap junk and an insult to their death-defying efforts . 10605 If routine action and jokes like this are your cup of tea , then pay your $ 8 and get ready for the big shear . 10606 This is one baaaaaaaaad movie . 10607 A man leaving the screening said the film was better than Saving Private Ryan . 10608 He may have meant the Internet short Saving Ryan 's Privates . 10609 But Windtalkers does n't beat that one , either . 10610 May puzzle his most ardent fans . 10611 Starts as a tart little lemon drop of a movie and ends up as a bitter pill . 10612 We never feel anything for these characters , and as a result the film is basically just a curiosity . 10613 Those unfamiliar with Mormon traditions may find The Singles Ward occasionally bewildering . 10614 Ritchie may not have a novel thought in his head , but he knows how to pose Madonna . 10615 The 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 . 10616 Feels 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 . 10617 While 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 . '' 10618 The 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 . ' 10619 ... the cast portrays their cartoon counterparts well ... but quite frankly , Scoob and Shag do n't eat enough during the film . ' 10620 More of the same old garbage Hollywood has been trying to pass off as acceptable teen entertainment for some time now . 10621 TV skit-com material fervently deposited on the big screen . 10622 -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 . 10623 If there was ever a movie where the upbeat ending feels like a copout , this is the one . 10624 It 's as sorry a mess as its director 's diabolical debut , Mad Cows . 10625 Any attempts at nuance given by the capable cast is drowned out by director Jon Purdy 's sledgehammer sap . 10626 Its audacious ambitions sabotaged by pomposity , Steven Soderbergh 's space opera emerges as a numbingly dull experience . 10627 Despite some strong performances , never rises above the level of a telanovela . 10628 This 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 . 10629 Feels slight , as if it were an extended short , albeit one made by the smartest kids in class . 10630 Unspeakable , of course , barely begins to describe the plot and its complications . 10631 Vulgar is too optimistic a title . 10632 The actors pull out all the stops in nearly every scene , but to diminishing effect . 10633 The characters never change . 10634 If 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 . 10635 Welles 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 . 10636 Makes 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 . 10637 Even as I valiantly struggled to remain interested , or at least conscious , I could feel my eyelids ... getting ... very ... heavy ... 10638 A bad movie that happened to good actors . 10639 Boasts eye-catching art direction but has a forcefully quirky tone that quickly wears out its limited welcome . 10640 Screenwriter Dan Schneider and director Shawn Levy substitute volume and primary colors for humor and bite . 10641 Oversexed , at times overwrought comedy\/drama that offers little insight into the experience of being forty , female and single . 10642 That such a horrible movie could have sprung from such a great one is one of the year 's worst cinematic tragedies . 10643 It 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 . 10644 Rarely has a film 's title served such dire warning . 10645 If you saw Benigni 's Pinocchio at a public park , you 'd grab your kids and run and then probably call the police . 10646 The 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 . 10647 The pace of the film is very slow -LRB- for obvious reasons -RRB- and that too becomes off-putting . 10648 Mr. 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 . 10649 Shafer 's feature does n't offer much in terms of plot or acting . 10650 In his role of observer of the scene , Lawrence sounds whiny and defensive , as if his life-altering experiences made him bitter and less mature . 10651 -LRB- T -RRB- he ideas of Revolution # 9 are more compelling than the execution 10652 The 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 . 10653 What happens when something goes bump in the night and nobody cares ? 10654 Despite some comic sparks , Welcome to Collinwood never catches fire . 10655 Director 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 . 10656 Shows moments of promise but ultimately succumbs to cliches and pat storytelling . 10657 Even accepting this in the right frame of mind can only provide it with so much leniency . 10658 Some Body is a shaky , uncertain film that nevertheless touches a few raw nerves . 10659 All the small moments and flashbacks do n't add up to much more than trite observations on the human condition . 10660 -LRB- A -RRB- stale retread of the '53 original . 10661 One 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 . 10662 For dance completists only . 10663 Spreads itself too thin , leaving these actors , as well as the members of the commune , short of profound characterizations 10664 It 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 . 10665 The locale ... remains far more interesting than the story at hand . 10666 Yo , it 's The Days Of Our Lives meets Electric Boogaloo . 10667 I liked the original short story but this movie , even at an hour and twenty-some minutes , it 's too long and it goes nowhere . 10668 This little film is so slovenly done , so primitive in technique , that it ca n't really be called animation . 10669 Makes 98 minutes feel like three hours . 10670 Hawke '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 . 10671 Aspires 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 . 10672 Real-life strongman Ahola lacks the charisma and ability to carry the film on his admittedly broad shoulders . 10673 The title , alone , should scare any sane person away . 10674 Low comedy does n't come much lower . 10675 Appropriately cynical social commentary aside , # 9 never quite ignites . 10676 It 's crap on a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins . 10677 One 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 . 10678 This is the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream . 10679 Let '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 . 10680 A loud , brash and mainly unfunny high school comedy . 10681 An exceptionally dreary and overwrought bit of work , every bit as imperious as Katzenberg 's The Prince of Egypt from 1998 . 10682 The movie is so resolutely cobbled together out of older movies that it even uses a totally unnecessary prologue , just because it seems obligatory . 10683 The 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 . 10684 Maid in Manhattan proves that it 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies . 10685 A fairly harmless but ultimately lifeless feature-length afterschool special . 10686 I ca n't remember the last time I saw a movie where I wanted so badly for the protagonist to fail . 10687 ... the whole thing succeeded only in making me groggy . 10688 Like most of Jaglom 's films , some of it is honestly affecting , but more of it seems contrived and secondhand . 10689 One long , numbing action sequence made up mostly of routine stuff Yuen has given us before . 10690 Forgettable , if good-hearted , movie . 10691 The film 's most improbable feat ? 10692 It did n't go straight to video . 10693 ... about as exciting to watch as two last-place basketball teams playing one another on the final day of the season . 10694 The Chateau ... is less concerned with cultural and political issues than doting on its eccentric characters . 10695 Cruel and inhuman cinematic punishment ... simultaneously degrades its characters , its stars and its audience . 10696 It 's not too fast and not too slow . 10697 It 's not too racy and it 's not too offensive . 10698 It 's not too much of anything . 10699 The 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 . 10700 About as original as a gangster sweating bullets while worrying about a contract on his life . 10701 An empty shell of an epic rather than the real deal . 10702 We could have expected a little more human being , and a little less product . 10703 Instead 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 . 10704 Whether Quitting will prove absorbing to American audiences is debatable . 10705 Becomes a bit of a mishmash : a tearjerker that does n't and a thriller that wo n't . 10706 Family togetherness takes a back seat to inter-family rivalry and workplace ambition ... whole subplots have no explanation or even plot relevance . 10707 Grant is n't Cary and Bullock is n't Katherine . 10708 Like a fish that 's lived too long , Austin Powers in Goldmember has some unnecessary parts and is kinda wrong in places . 10709 Two tedious acts light on great scares and a good surprise ending . 10710 Shyamalan should stop trying to please his mom . 10711 The entire movie is in need of a scented bath . 10712 I 'm sorry to say that this should seal the deal - Arnold is not , nor will he be , back . 10713 The 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 . 10714 A Movie to Forget 10715 For 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 . 10716 Enough is not a bad movie , just mediocre . 10717 The performances are so overstated , the effect comes off as self-parody . 10718 It looks good , but it is essentially empty . 10719 The film never finds its tone and several scenes run too long . 10720 The 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 . 10721 Van 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 . 10722 It 's hard to believe that something so short could be so flabby . 10723 Do we really need another film that praises female self-sacrifice ? 10724 The major problem with Windtalkers is that the bulk of the movie centers on the wrong character . 10725 Tennessee Williams by way of Oprah 's Book Club . 10726 So verbally flatfooted and so emotionally predictable or bland that it plays like the standard made-for-TV movie . 10727 The entire point of a shaggy dog story , of course , is that it goes nowhere , and this is classic nowheresville in every sense . 10728 Stale and clichéd to a fault . 10729 This film is too busy hitting all of its assigned marks to take on any life of its own . 10730 Watching junk like this induces a kind of abstract guilt , as if you were paying dues for good books unread , fine music never heard . 10731 The 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 . 10732 Starts off witty and sophisticated and you want to love it -- but filmmaker Yvan Attal quickly writes himself into a corner . 10733 Some Like It Hot on the Hardwood proves once again that a man in drag is not in and of himself funny . 10734 Unfortunately , contrived plotting , stereotyped characters and Woo 's over-the-top instincts as a director undermine the moral dilemma at the movie 's heart . 10735 Witless and utterly pointless . 10736 When ` 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 . 10737 Show me the mugging . 10738 Represents something very close to the nadir of the thriller\/horror genre . 10739 Visually sumptuous but intellectually stultifying . 10740 As a feature-length film , it wears out its welcome as tryingly as the title character . 10741 A guilty pleasure at best , and not worth seeing unless you want to laugh at it . 10742 A sleep-inducing thriller with a single twist that everyone except the characters in it can see coming a mile away . 10743 With 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 ? 10744 It 's just rather leaden and dull . 10745 Lacks 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 . 10746 Statham employs an accent that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British . 10747 Instead 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 . 10748 Initial strangeness inexorably gives way to rote sentimentality and mystical tenderness becomes narrative expedience . 10749 De Ayala is required to supply too much of the energy in a film that is , overall , far too staid for its subject matter . 10750 Dismally dull sci-fi comedy . 10751 There 's surely something wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits . 10752 When one hears Harry Shearer is going to make his debut as a film director , one would hope for the best 10753 The leads we are given here are simply too bland to be interesting . 10754 -LRB- Toback 's -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard ... blends uneasily with the titillating material . 10755 Adam 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 . 10756 essentially `` Fatal Attraction '' remade for viewers who were in diapers when the original was released in 1987 . 10757 ... this story gets sillier , not scarier , as it goes along ... 10758 Even a hardened voyeur would require the patience of Job to get through this interminable , shapeless documentary about the swinging subculture . 10759 The film 's hero is a bore and his innocence soon becomes a questionable kind of inexcusable dumb innocence . 10760 A singularly off-putting romantic comedy . 10761 This is an exercise not in biography but in hero worship . 10762 It all comes down to whether you can tolerate Leon Barlow . 10763 I ca n't . 10764 In 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 . 10765 Check 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 . 10766 The movie does has some entertainment value - how much depends on how well you like Chris Rock . 10767 A movie that seems motivated more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story . 10768 A culture clash comedy only half as clever as it thinks it is . 10769 The logic of it all will be Greek to anyone not predisposed to the movie 's rude and crude humor . 10770 As self-aware movies go , Who is Cletis Tout ? 10771 is clever enough , though thin writing proves its undoing . 10772 Starts 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 . 10773 ... a fascinating curiosity piece -- fascinating , that is , for about ten minutes . 10774 After that it becomes long and tedious like a classroom play in a college history course . 10775 Director Jay Russell weighs down his capricious fairy-tale with heavy sentiment and lightweight meaning . 10776 There are many things that solid acting can do for a movie , but crafting something promising from a mediocre screenplay is not one of them . 10777 Its screenplay serves as auto-critique , and its clumsiness as its own most damning censure . 10778 At times , it actually hurts to watch . 10779 Nemesis suffers from a paunchy midsection , several plodding action sequences and a wickedly undramatic central theme . 10780 The jokes are telegraphed so far in advance they must have been lost in the mail . 10781 -LRB- Tries -RRB- to parody a genre that 's already a joke in the United States . 10782 The movie is the equivalent of French hip-hop , which also seems to play on a 10-year delay . 10783 A beyond-lame satire , Teddy Bears ' Picnic ranks among the most pitiful directing debuts by an esteemed writer-actor . 10784 I '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 ... 10785 Hollywood 's answer to an air ball . 10786 And people make fun of me for liking Showgirls . 10787 Such 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 . 10788 A 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 . 10789 But it does n't leave you with much . 10790 I '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 . 10791 Like Mike is a slight and uninventive movie : Like the exalted Michael Jordan referred to in the title , many can aspire but none can equal . 10792 There is nothing funny in this every-joke-has - been-told-a - thousand-times - before movie . 10793 Always destined to be measured against Anthony Asquith 's acclaimed 1952 screen adaptation . 10794 This is standard crime drama fare ... instantly forgettable and thoroughly dull . 10795 There '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 . 10796 One of those based-on-truth stories that persuades you , with every scene , that it could never really have happened this way . 10797 From its nauseating spinning credits sequence to a very talented but underutilized supporting cast , Bartleby squanders as much as it gives out . 10798 Yet another genre exercise , Gangster No. 1 is as generic as its title . 10799 Despite the holes in the story and the somewhat predictable plot , moments of the movie caused me to jump in my chair ... 10800 There '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 . 10801 Once 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 . 10802 A lightweight , uneven action comedy that freely mingles French , Japanese and Hollywood cultures . 10803 Such a fine idea for a film , and such a stultifying , lifeless execution . 10804 -LRB- Allen 's -RRB- best works understand why snobbery is a better satiric target than middle-America diversions could ever be . 10805 This overlong infomercial , due out on video before month 's end , is tepid and tedious . 10806 An ambitious , guilt-suffused melodrama crippled by poor casting . 10807 Rarely has sex on screen been so aggressively anti-erotic . 10808 A dull , inconsistent , dishonest female bonding picture . 10809 So 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 . 10810 A disappointment for a movie that should have been the ultimate IMAX trip . 10811 Does little to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon . 10812 This Sade is hardly a perverse , dangerous libertine and agitator -- which would have made for better drama . 10813 He 's just a sad aristocrat in tattered finery , and the film seems as deflated as he does . 10814 The 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 . 10815 It 's as if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet ? '' 10816 In a strange way , Egoyan has done too much . 10817 He 's worked too hard on this movie . 10818 The 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 . 10819 The last three narcissists left on earth compete for each others ' affections . 10820 A clash between the artificial structure of the story and the more contemporary , naturalistic tone of the film ... 10821 The movie 's messages are quite admirable , but the story is just too clichéd and too often strains credulity . 10822 What we have here is n't a disaster , exactly , but a very handsomely produced let-down . 10823 The script was reportedly rewritten a dozen times -- either 11 times too many or else too few . 10824 A shoddy male hip hop fantasy filled with guns , expensive cars , lots of naked women and Rocawear clothing . 10825 To 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 . 10826 This is a movie filled with unlikable , spiteful idiots ; whether or not their friendship is salvaged makes no difference in the least . 10827 It 's as if Allen , at 66 , has stopped challenging himself . 10828 Scotland , PA is entirely too straight-faced to transcend its clever concept . 10829 A movie that the less charitable might describe as a castrated cross between Highlander and Lolita . 10830 Not only does LeBlanc make one spectacularly ugly-looking broad , but he appears miserable throughout as he swaggers through his scenes . 10831 There 's little to recommend Snow Dogs , unless one considers cliched dialogue and perverse escapism a source of high hilarity . 10832 It 's deep-sixed by a compulsion to catalog every bodily fluids gag in There 's Something About Mary and devise a parallel clone-gag . 10833 The film rehashes several old themes and is capped with pointless extremes -- it 's insanely violent and very graphic . 10834 Sorority Boys , which is as bad at it is cruel , takes every potential laugh and stiletto-stomps the life out of it . 10835 Here the love scenes all end in someone screaming . 10836 Maybe there 's a metaphor here , but figuring it out would n't make Trouble Every Day any better . 10837 This is the first film I 've ever seen that had no obvious directing involved . 10838 Fans of so-bad-they 're - good cinema may find some fun in this jumbled mess . 10839 Weiss and Speck never make a convincing case for the relevance of these two 20th-century footnotes . 10840 Sheridan is painfully bad , a fourth-rate Jim Carrey who does n't understand the difference between dumb fun and just plain dumb . 10841 Presents nothing special and , until the final act , nothing overtly disagreeable . 10842 The most excruciating 86 minutes one might sit through this summer that do not involve a dentist drill . 10843 Was that movie nothing more than a tepid exercise in trotting out a formula that worked five years ago but has since lost its fizz ? 10844 It goes on for too long and bogs down in a surfeit of characters and unnecessary subplots . 10845 It 's absolutely amazing how first-time director Kevin Donovan managed to find something new to add to the canon of Chan . 10846 Make Chan 's action sequences boring . 10847 You ... get a sense of good intentions derailed by a failure to seek and strike just the right tone . 10848 ` In this poor remake of such a well loved classic , Parker exposes the limitations of his skill and the basic flaws in his vision . ' 10849 It 's the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn . 10850 The film 's final hour , where nearly all the previous unseen material resides , is unconvincing soap opera that Tornatore was right to cut . 10851 The movie does such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating . 10852 I found it slow , predictable and not very amusing . 10853 Director 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 . 10854 Viewers will need all the luck they can muster just figuring out who 's who in this pretentious mess . 10855 A 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 . 10856 Get out your pooper-scoopers . 10857 While the material is slight , the movie is better than you might think . 10858 It '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 . 10859 Sheridan seems terrified of the book 's irreverent energy , and scotches most of its élan , humor , bile , and irony . 10860 More busy than exciting , more frantic than involving , more chaotic than entertaining . 10861 There are more shots of children smiling for the camera than typical documentary footage which hurts the overall impact of the film . 10862 It 's makes a better travelogue than movie . 10863 It '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 . 10864 The fourth in a series that I 'll bet most parents had thought -- hoped ! 10865 -- was a fad that had long since vanished . 10866 It '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 . 10867 Its premise is smart , but the execution is pretty weary . 10868 The holiday message of the 37-minute Santa vs. the Snowman leaves a lot to be desired . 10869 more precious than perspicacious 10870 If you saw it on TV , you 'd probably turn it off , convinced that you had already seen that movie . 10871 -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 . 10872 If this is cinema , I pledge allegiance to Cagney and Lacey . 10873 Enigma looks great , has solid acting and a neat premise . 10874 Yet why it fails is a riddle wrapped in a mystery inside an enigma . 10875 Most of the characters come off as pantomimesque sterotypes . 10876 Starts promisingly but disintegrates into a dreary , humorless soap opera . 10877 While 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 . 10878 It 's actually too sincere -- the crime movie equivalent of a chick flick . 10879 Most of the film feels conceived and shot on the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs . 10880 Perry 's good and his is an interesting character , but `` Serving Sara '' has n't much more to serve than silly fluff . 10881 Nor is it a romantic comedy . 10882 Culkin turns his character into what is basically an anti-Harry Potter -- right down to the Gryffindor scarf . 10883 Memorable for a peculiar malaise that renders its tension flaccid and , by extension , its surprises limp and its resolutions ritual . 10884 It '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 . 10885 In the not-too-distant future , movies like Ghost Ship will be used as analgesic balm for overstimulated minds . 10886 Right now , they 're merely signposts marking the slow , lingering death of imagination . 10887 The 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 . 10888 Like most movies about the pitfalls of bad behavior ... Circuit gets drawn into the party . 10889 It appears as if even the filmmakers did n't know what kind of movie they were making . 10890 Beneath the uncanny , inevitable and seemingly shrewd facade of movie-biz farce ... lies a plot cobbled together from largely flat and uncreative moments . 10891 Snipes relies too much on a scorchingly plotted dramatic scenario for its own good . 10892 Piccoli 's performance is amazing , yes , but the symbols of loss and denial and life-at-arm 's - length in the film seem irritatingly transparent . 10893 Starts out mediocre , spirals downward , and thuds to the bottom of the pool with an utterly incompetent conclusion . 10894 Nicolas 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 . 10895 It lacks the compassion , good-natured humor and the level of insight that made -LRB- Eyre 's -RRB- first film something of a sleeper success . 10896 The result is good gossip , entertainingly delivered , yet with a distinctly musty odour , its expiry date long gone . 10897 A sustained fest of self-congratulation between actor and director that leaves scant place for the viewer . 10898 All Analyze That proves is that there is really only one movie 's worth of decent gags to be gleaned from the premise . 10899 Green ruins every single scene he 's in , and the film , while it 's not completely wreaked , is seriously compromised by that . 10900 There 's not a comedic moment in this romantic comedy . 10901 The story is predictable , the jokes are typical Sandler fare , and the romance with Ryder is puzzling . 10902 Wallace directs with such patronising reverence , it turns the stomach . 10903 Resurrection has the dubious distinction of being a really bad imitation of the really bad Blair Witch Project . 10904 Poor Ben Bratt could n't find stardom if MapQuest emailed him point-to-point driving directions . 10905 Pretend like your SAT scores are below 120 and you might not notice the flaws . 10906 Unlike Trey Parker , Sandler does n't understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself . 10907 A fake street drama that keeps telling you things instead of showing them . 10908 An empty , purposeless exercise . 10909 Earnest and tentative even when it aims to shock . 10910 Haneke 's script -LRB- from Elfriede Jelinek 's novel -RRB- is contrived , unmotivated , and psychologically unpersuasive , with an inconclusive ending . 10911 A sometimes incisive and sensitive portrait that is undercut by its awkward structure and a final veering toward melodrama . 10912 Those 24-and-unders looking for their own Caddyshack to adopt as a generational signpost may have to keep on looking . 10913 A distinctly mixed bag , the occasional bursts of sharp writing alternating with lots of sloppiness and the obligatory moments of sentimental ooze . 10914 What begins brightly gets bogged down over 140 minutes . 10915 Ultimately , Jane learns her place as a girl , softens up and loses some of the intensity that made her an interesting character to begin with . 10916 Ah-nuld 's action hero days might be over . 10917 It 's clear why Deuces Wild , which was shot two years ago , has been gathering dust on MGM 's shelf . 10918 Feels like nothing quite so much as a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women . 10919 When the precise nature of Matthew 's predicament finally comes into sharp focus , the revelation fails to justify the build-up . 10920 This picture is murder by numbers , and as easy to be bored by as your ABC 's , despite a few whopping shootouts . 10921 Hilarious musical comedy though stymied by accents thick as mud . 10922 If you are into splatter movies , then you will probably have a reasonably good time with The Salton Sea . 10923 A dull , simple-minded and stereotypical tale of drugs , death and mind-numbing indifference on the inner-city streets . 10924 The feature-length stretch ... strains the show 's concept . 10925 This slender plot feels especially thin stretched over the nearly 80-minute running time . 10926 A film that will probably please people already fascinated by Behan but leave everyone else yawning with admiration . 10927 Davis 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 . 10928 The densest distillation of Roberts ' movies ever made . 10929 Ultimately , 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 . 10930 A handsome but unfulfilling suspense drama more suited to a quiet evening on PBS than a night out at an AMC . 10931 Tom 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 . 10932 -LRB- It -RRB- highlights not so much the crime lord 's messianic bent , but Spacey 's . 10933 Master of Disguise runs for only 71 minutes and feels like three hours . 10934 A reworking of Die Hard and Cliffhanger but it 's nowhere near as exciting as either . 10935 Suffers from unlikable characters and a self-conscious sense of its own quirky hipness . 10936 A film without surprise geared toward maximum comfort and familiarity . 10937 Fessenden continues to do interesting work , and it would be nice to see what he could make with a decent budget . 10938 But the problem with Wendigo , for all its effective moments , is n't really one of resources . 10939 Spirit is a visual treat , and it takes chances that are bold by studio standards , but it lacks a strong narrative . 10940 It stars schticky Chris Rock and stolid Anthony Hopkins , who seem barely in the same movie . 10941 Their contrast is neither dramatic nor comic -- it 's just a weird fizzle . 10942 This is a children 's film in the truest sense . 10943 It 's packed with adventure and a worthwhile environmental message , so it 's great for the kids . 10944 Parents , on the other hand , will be ahead of the plot at all times , and there is n't enough clever innuendo to fil 10945 The niftiest trick perpetrated by The Importance of Being Earnest is the alchemical transmogrification of Wilde into Austen -- and a Hollywood-ized Austen at that . 10946 Tykwer '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 . 10947 Ice Age is the first computer-generated feature cartoon to feel like other movies , and that makes for some glacial pacing early on . 10948 Too slick and manufactured to claim street credibility . 10949 Cherry 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 . ' 10950 What ensues are much blood-splattering , mass drug-induced bowel evacuations , and none-too-funny commentary on the cultural distinctions between Americans and Brits . 10951 A dark comedy that goes for sick and demented humor simply to do so . 10952 The movie is without intent . 10953 Visually exciting sci-fi film which suffers from a lackluster screenplay . 10954 While 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 . 10955 If The Full Monty was a freshman fluke , Lucky Break is -LRB- Cattaneo -RRB- sophomore slump . 10956 Sandra Bullock and Hugh Grant make a great team , but this predictable romantic comedy should get a pink slip . 10957 Allegiance to Chekhov , which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard , is a particularly vexing handicap . 10958 You expect more from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- than this cliche pileup . 10959 The 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 ? 10960 The dramatic scenes are frequently unintentionally funny , and the action sequences -- clearly the main event -- are surprisingly uninvolving . 10961 Replacing John Carpenter 's stylish tracking shots is degraded , handheld Blair Witch video-cam footage . 10962 Of all the Halloween 's , this is the most visually unappealing . 10963 It has the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references . 10964 Despite its dry wit and compassion , the film suffers from a philosophical emptiness and maddeningly sedate pacing . 10965 ... 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 . 10966 Attal pushes too hard to make this a comedy or serious drama . 10967 He seems to want both , but succeeds in making neither . 10968 I could have used my two hours better watching Being John Malkovich again . 10969 It 's not a bad plot ; but , unfortunately , the movie is nowhere near as refined as all the classic dramas it borrows from . 10970 Girlfriends are bad , wives are worse and babies are the kiss of death in this bitter Italian comedy . 10971 The only young people who possibly will enjoy it are infants ... who might be distracted by the movie 's quick movements and sounds . 10972 The film boasts at least a few good ideas and features some decent performances , but the result is disappointing . 10973 No Such Thing breaks no new ground and treads old turf like a hippopotamus ballerina . 10974 Unfortunately , neither Sendak nor the directors are particularly engaging or articulate . 10975 A wishy-washy melodramatic movie that shows us plenty of sturm und drung , but explains its characters ' decisions only unsatisfactorily . 10976 Bang ! 10977 Zoom ! 10978 It 's actually pretty funny , but in all the wrong places . 10979 Lurid and less than lucid work . 10980 A 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 . 10981 At a brief 42 minutes , we need more X and less blab . 10982 If anything , see it for Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick . 10983 This 90-minute dud could pass for Mike Tyson 's E ! 10984 True Hollywood Story . 10985 This is surely one of the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio . 10986 Once the expectation of laughter has been quashed by whatever obscenity is at hand , even the funniest idea is n't funny . 10987 A porn film without the sex scenes . 10988 The connected stories of Breitbart and Hanussen are actually fascinating , but the filmmaking in Invincible is such that the movie does not do them justice . 10989 A depressingly retrograde , ` post-feminist ' romantic comedy that takes an astonishingly condescending attitude toward women . 10990 Return 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 . 10991 By the end , you just do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance . 10992 Just bring on the Battle Bots , please ! 10993 While it 's all quite tasteful to look at , the attention process tends to do a little fleeing of its own . 10994 Broder 's screenplay is shallow , offensive and redundant , with pitifully few real laughs . 10995 Yes they can swim , the title is merely Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through . 10996 Don 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- . 10997 Slow , silly and unintentionally hilarious . 10998 The Sweetest Thing leaves a bitter taste . 10999 In 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 . 11000 For something as splendid-looking as this particular film , the viewer expects something special but instead gets -LRB- sci-fi -RRB- rehash . 11001 A thriller without a lot of thrills . 11002 This stuck pig of a movie flails limply between bizarre comedy and pallid horror . 11003 Ah , the travails of metropolitan life ! 11004 Alas , another breathless movie about same ! 11005 In Moonlight Mile , no one gets shut out of the hug cycle . 11006 Though 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 . 11007 Done in mostly by a weak script that ca n't support the epic treatment . 11008 Despite its visual virtuosity , ` Naqoyqatsi ' is banal in its message and the choice of material to convey it . 11009 Slap her - she 's not funny ! 11010 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 . 11011 Though 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 . 11012 `` One look at a girl in tight pants and big tits and you turn stupid ? '' 11013 Um ... is n't that the basis for the entire plot ? 11014 `` Not really as bad as you might think ! '' 11015 Strident and inelegant in its ` message-movie ' posturing . 11016 One regards Reign of Fire with awe . 11017 What a vast enterprise has been marshaled in the service of such a minute idea . 11018 It 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 . 11019 Its impressive images of crematorium chimney fires and stacks of dead bodies are undermined by the movie 's presentation , which is way too stagy . 11020 Seeing as the film lacks momentum and its position remains mostly undeterminable , the director 's experiment is a successful one . 11021 The plot is romantic comedy boilerplate from start to finish . 11022 I 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 . 11023 An unfortunate title for a film that has nothing endearing about it . 11024 Ninety minutes of Viva Castro ! 11025 can be as tiresome as 9 seconds of Jesse Helms ' anti- Castro rhetoric , which are included 11026 Comes off as a long , laborious whine , the bellyaching of a paranoid and unlikable man . 11027 It just goes to show , an intelligent person is n't necessarily an admirable storyteller . 11028 In a 102-minute film , Aaliyah gets at most 20 minutes of screen time . 11029 ... most viewers will wish there had been more of the `` Queen '' and less of the `` Damned . '' 11030 Hopelessly inane , humorless and under-inspired . 11031 Kapur fails to give his audience a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- . 11032 It 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 . 11033 None of this has the suavity or classical familiarity of Bond , but much of it is good for a laugh . 11034 The problem with `` XXX '' is that its own action is n't very effective . 11035 A great script brought down by lousy direction . 11036 Same guy with both hats . 11037 Big mistake . 11038 A mediocre exercise in target demographics , unaware that it 's the butt of its own joke . 11039 Director Kevin Bray excels in breaking glass and marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks . 11040 He does n't , however , deliver nearly enough of the show 's trademark style and flash . 11041 In gleefully , thumpingly hyperbolic terms , it covers just about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz . 11042 The Spalding Gray equivalent of a teen gross-out comedy . 11043 Perhaps even the SLC high command found writer-director Mitch Davis 's wall of kitsch hard going . 11044 According to Wendigo , ` nature ' loves the members of the upper class almost as much as they love themselves . 11045 An encouraging effort from McCrudden 11046 The romance between the leads is n't as compelling or as believable as it should be . 11047 If I could have looked into my future and saw how bad this movie was , I would go back and choose to skip it . 11048 Fortunately , you still have that option . 11049 Supposedly authentic account of a historical event that 's far too tragic to merit such superficial treatment . 11050 Adroit 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 . 11051 To Blandly Go Where We Went 8 Movies Ago ... 11052 A slow-moving police-procedural thriller that takes its title all too literally . 11053 This u-boat does n't have a captain . 11054 With nary a glimmer of self-knowledge , -LRB- Crane -RRB- becomes more specimen than character -- and Auto Focus remains a chilly , clinical lab report . 11055 This one aims for the toilet and scores a direct hit . 11056 Dull , a road-trip movie that 's surprisingly short of both adventure and song . 11057 I walked away not really know who `` they '' were , what `` they '' looked like . 11058 Why `` they '' were here and what `` they '' wanted and quite honestly , I did n't care . 11059 After 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 . 11060 A relatively effective little potboiler until its absurd , contrived , overblown , and entirely implausible finale . 11061 The Country Bears wastes an exceptionally good idea . 11062 But the movie that does n't really deliver for country music fans or for family audiences 11063 Adults 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 . 11064 As for children , they wo n't enjoy the movie at all . 11065 ... 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 . 11066 Too bad writer-director Adam Rifkin situates it all in a plot as musty as one of the Golden Eagle 's carpets . 11067 It 's lazy for a movie to avoid solving one problem by trying to distract us with the solution to another . 11068 The movie is genial but never inspired , and little about it will stay with you . 11069 The 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 . ' 11070 But its storytelling prowess and special effects are both listless . 11071 Despite the opulent lushness of every scene , the characters never seem to match the power of their surroundings . 11072 even after 90 minutes of playing opposite each other Bullock and Grant still look ill at ease sharing the same scene . 11073 What should have been a painless time-killer becomes instead a grating endurance test . 11074 A bland , obnoxious 88-minute infomercial for Universal Studios and its ancillary products . . . 11075 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 . 11076 The 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 . 11077 The Master of Disguise is awful . 11078 It 's Pauly Shore awful . 11079 Do n't say you were n't warned . 11080 Disappointing in comparison to other recent war movies ... or any other John Woo flick for that matter . 11081 The entire movie is filled with deja vu moments . 11082 ` Opening up ' the play more has partly closed it down . 11083 What -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 . 11084 An ugly , revolting movie . 11085 The film is way too full of itself ; it 's stuffy and pretentious in a give-me-an-Oscar kind of way . 11086 The 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 . 11087 Watching `` Ending '' is too often like looking over the outdated clothes and plastic knickknacks at your neighbor 's garage sale . 11088 You ca n't believe anyone would really buy this stuff . 11089 Certainly beautiful to look at , but its not very informative about its titular character and no more challenging than your average television biopic . 11090 It 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 . 11091 The 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 ? 11092 From 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 11093 My advice is to skip the film and pick up the soundtrack . 11094 A film that presents an interesting , even sexy premise then ruins itself with too many contrivances and goofy situations . 11095 Filled with low-brow humor , gratuitous violence and a disturbing disregard for life . 11096 directed in a flashy , empty sub-music video style by a director so self-possessed he actually adds a period to his first name 11097 The 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 . 11098 An unsophisticated sci-fi drama that takes itself all too seriously . 11099 Solondz is without doubt an artist of uncompromising vision , but that vision is beginning to feel , if not morally bankrupt , at least terribly monotonous . 11100 Harvard Man is a semi-throwback , a reminiscence without nostalgia or sentimentality . 11101 Supposedly based upon real , or at least soberly reported incidents , the film ends with a large human tragedy . 11102 Alas , getting there is not even half the interest . 11103 While Hoffman 's performance is great , the subject matter goes nowhere . 11104 The smash 'em - up , crash 'em - up , shoot 'em - up ending comes out of nowhere substituting mayhem for suspense . 11105 Deuces Wild treads heavily into Romeo and Juliet\/West Side Story territory , where it plainly has no business going . 11106 Hart 's War seems to want to be a character study , but apparently ca n't quite decide which character . 11107 Theological matters aside , the movie is so clumsily sentimental and ineptly directed it may leave you speaking in tongues . 11108 This 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 . 11109 Novak contemplates a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama . 11110 Been there , done that , liked it much better the first time around - when it was called The Professional . 11111 The film is all over the place , really . 11112 It dabbles all around , never gaining much momentum . 11113 The beautiful , unusual music is this film 's chief draw , but its dreaminess may lull you to sleep . 11114 The action quickly sinks into by-the-numbers territory . 11115 Forages 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 . 11116 When -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 . 11117 Such a premise is ripe for all manner of lunacy , but Kaufman and Gondry rarely seem sure of where it should go . 11118 Burns ' fifth beer-soaked film feels in almost every possible way -- from the writing and direction to the soggy performances -- tossed off . 11119 While this one gets off with a good natured warning , future Lizard endeavors will need to adhere more closely to the laws of laughter 11120 Another boorish movie from the I-heard-a-joke - at-a-frat-party school of screenwriting . 11121 Too much of the movie feels contrived , as if the filmmakers were worried the story would n't work without all those gimmicks . 11122 It 's hard to understand why anyone in his right mind would even think to make the attraction a movie . 11123 And it 's harder still to believe that anyone in his right mind would want to see the it . 11124 The 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 . 11125 The 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 . 11126 Why 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 ? 11127 The 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 . 11128 Exploring value choices is a worthwhile topic for a film -- but here the choices are as contrived and artificial as Kerrigan 's platinum-blonde hair . 11129 The movie 's downfall is to substitute plot for personality . 11130 It does n't really know or care about the characters , and uses them as markers for a series of preordained events . 11131 All mood and no movie . 11132 Press the delete key . 11133 Simone is not a bad film . 11134 It just does n't have anything really interesting to say . 11135 Once he starts learning to compromise with reality enough to become comparatively sane and healthy , the film becomes predictably conventional . 11136 ... hopefully it 'll be at the dollar theatres by the time Christmas rolls around . 11137 Wait to see it then . 11138 There 's no disguising this as one of the worst films of the summer . 11139 Or for the year , for that matter . 11140 Lacks 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 . 11141 This 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 . 11142 Death to Smoochy tells a moldy-oldie , not-nearly - as-nasty - as-it - thinks-it-is joke . 11143 Over and over again . 11144 The threat implied in the title Pokémon 4ever is terrifying -- like locusts in a horde these things will keep coming . 11145 The film never gets over its own investment in conventional arrangements , in terms of love , age , gender , race , and class . 11146 To call this film a lump of coal would only be to flatter it . 11147 Entertainment more disposable than Hanna-Barbera 's half-hour cartoons ever were . 11148 The film falls short on tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries . 11149 By the end of it all I sort of loved the people onscreen , even though I could not stand them . 11150 Perhaps the film should be seen as a conversation starter . 11151 It 's not an easy one to review . 11152 At best this is a film for the under-7 crowd . 11153 But it would be better to wait for the video . 11154 And a very rainy day . 11155 The whole talking-animal thing is grisly . 11156 Never Again , while nothing special , is pleasant , diverting and modest -- definitely a step in the right direction . 11157 Would n't it be funny if a bunch of Allied soldiers went undercover as women in a German factory during World War II ? 11158 Um , no. . 11159 But here 's a movie about it anyway . 11160 Has not so much been written as assembled , Frankenstein-like , out of other , marginally better shoot-em-ups . 11161 The punch lines that miss , unfortunately , outnumber the hits by three-to-one . 11162 But Death to Smoochy keeps firing until the bitter end . 11163 Mushes the college-friends genre -LRB- The Big Chill -RRB- together with the contrivances and overwrought emotion of soap operas . 11164 Showtime 's starry cast could be both an asset and a detriment . 11165 Those who trek to the ` plex predisposed to like it probably will enjoy themselves . 11166 But ticket-buyers with great expectations will wind up as glum as Mr. De Niro . 11167 A determined , ennui-hobbled slog that really does n't have much to say beyond the news flash that loneliness can make people act weird . 11168 Too daft by half ... but supremely good natured . 11169 Fails 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 . 11170 It 's a shame that the storyline and its underlying themes ... finally seem so impersonal or even shallow . 11171 Woody , what happened ? 11172 Juliette Binoche 's Sand is vivacious , but it 's hard to sense that powerhouse of 19th-century prose behind her childlike smile . 11173 It 's supposed to be post-feminist breezy but ends up as tedious as the chatter of parrots raised on Oprah . 11174 You can tell almost immediately that Welcome to Collinwood is n't going to jell . 11175 Throughout all the tumult , a question comes to mind : So why is this so boring ? 11176 Cattaneo reworks the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work . 11177 Routine and rather silly . 11178 A rip-off twice removed , modeled after -LRB- Seagal 's -RRB- earlier copycat Under Siege , sometimes referred to as Die Hard on a boat . 11179 Totally 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 . 11180 You can practically hear George Orwell turning over . 11181 Behan '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 . 11182 While Holm is terrific as both men and Hjejle quite appealing , the film fails to make the most out of the intriguing premise . 11183 Lazy filmmaking , with the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling . 11184 If it were any more of a turkey , it would gobble in Dolby Digital stereo . 11185 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. 11186 A movie that falls victim to frazzled wackiness and frayed satire . 11187 How do you make a movie with depth about a man who lacked any ? 11188 On the evidence before us , the answer is clear : Not easily and , in the end , not well enough . 11189 The film 's trailer also looked like crap , so crap is what I was expecting . 11190 More trifle than triumph . 11191 The movie is almost completely lacking in suspense , surprise and consistent emotional conviction . 11192 Festers in just such a dungpile that you 'd swear you were watching monkeys flinging their feces at you . 11193 Lyne 's latest , the erotic thriller Unfaithful , further demonstrates just how far his storytelling skills have eroded . 11194 It sounds like another clever if pointless excursion into the abyss , and that 's more or less how it plays out . 11195 Rumor , a muddled drama about coming to terms with death , feels impersonal , almost generic . 11196 Report card : Does n't live up to the exalted tagline - there 's definite room for improvement . 11197 Does n't deserve a passing grade -LRB- even on a curve -RRB- . 11198 The pacing is deadly , the narration helps little and Naipaul , a juicy writer , is negated . 11199 As his circle of friends keeps getting smaller one of the characters in Long Time Dead says ` I 'm telling you , this is f \*\*\* ed ' . 11200 Maybe he was reading the minds of the audience . 11201 ... 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 . 11202 Bean drops the ball too many times ... hoping the nifty premise will create enough interest to make up for an unfocused screenplay . 11203 A well-acted , but one-note film . 11204 Blood Work is laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period . 11205 The movie is too amateurishly square to make the most of its own ironic implications . 11206 -LRB- Lee -RRB- treats his audience the same way that Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects . 11207 And Lee seems just as expectant of an adoring , wide-smiling reception . 11208 There 's not one decent performance from the cast and not one clever line of dialogue . 11209 No amount of burning , blasting , stabbing , and shooting can hide a weak script . 11210 It 's an odd show , pregnant with moods , stillborn except as a harsh conceptual exercise . 11211 Nearly all the fundamentals you take for granted in most films are mishandled here . 11212 The Armenian genocide deserves a more engaged and honest treatment . 11213 Earnest yet curiously tepid and choppy recycling in which predictability is the only winner . 11214 Ultimately this is a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and an old Payne screenplay . 11215 The exploitative , clumsily staged violence overshadows everything , including most of the actors . 11216 We started to wonder if ... some unpaid intern had just typed ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine . 11217 Even when Crush departs from the 4W formula ... it feels like a glossy rehash . 11218 More likely to have you scratching your head than hiding under your seat . 11219 Bears is even worse than I imagined a movie ever could be . 11220 When you find yourself rooting for the monsters in a horror movie , you know the picture is in trouble . 11221 This is very much of a mixed bag , with enough negatives to outweigh the positives . 11222 Marinated in clichés and mawkish dialogue . 11223 Whether it 's the worst movie of 2002 , I ca n't say for sure : Memories of Rollerball have faded , and I skipped Country Bears . 11224 But this new jangle of noise , mayhem and stupidity must be a serious contender for the title . 11225 -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 . 11226 Not 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 . ' 11227 Rollerball IS as bad as you think , and worse than you can imagine . 11228 The first question to ask about Bad Company is why Anthony Hopkins is in it . 11229 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 . 11230 Not exaggerated enough to be a parody of gross-out flicks , college flicks , or even flicks in general . 11231 It merely indulges in the worst elements of all of them . 11232 Shame on writer\/director Vicente Aranda for making a florid biopic about mad queens , obsessive relationships , and rampant adultery so dull . 11233 Suffers from a decided lack of creative storytelling . 11234 Violent , vulgar and forgettably entertaining . 11235 Nothing happens , and it happens to flat characters . 11236 With 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 . 11237 Remember back when thrillers actually thrilled ? 11238 When the twist endings were actually surprising ? 11239 When the violence actually shocked ? 11240 When the heroes were actually under 40 ? 11241 Sadly , as Blood Work proves , that was a long , long time ago . 11242 Blue 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 . 11243 This movie plays like an extended dialogue exercise in Retard 101 . 11244 What we get in FearDotCom is more like something from a bad Clive Barker movie . 11245 In other words , it 's badder than bad . 11246 If 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 . 11247 A sloppy slapstick throwback to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken . 11248 A small independent film suffering from a severe case of Hollywood-itis . 11249 Where the film falters is in its tone . 11250 The story alone could force you to scratch a hole in your head . 11251 Ultimately , 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 . 11252 It '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 . 11253 Feels more like a rejected X-Files episode than a credible account of a puzzling real-life happening . 11254 Some motion pictures portray ultimate passion ; others create ultimate thrills . 11255 Men in Black II achieves ultimate insignificance -- it 's the sci-fi comedy spectacle as Whiffle-Ball epic . 11256 An enigmatic film that 's too clever for its own good , it 's a conundrum not worth solving . 11257 A zombie movie in every sense of the word -- mindless , lifeless , meandering , loud , painful , obnoxious . 11258 A film that clearly means to preach exclusively to the converted . 11259 It does n't take a rocket scientist to figure out that this is a Mormon family movie , and a sappy , preachy one at that . 11260 Definitely a crowd-pleaser , but then , so was the Roman Colosseum . 11261 Certainly not a good movie , but it was n't horrible either . 11262 Although 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 . 11263 The result is so tame that even slightly wised-up kids would quickly change the channel . 11264 It appears to have been modeled on the worst revenge-of-the-nerds clichés the filmmakers could dredge up . 11265 Nothing but an episode of Smackdown ! 11266 in period costume and with a bigger budget . 11267 It 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 . 11268 While 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 . 11269 It should be interesting , it should be poignant , it turns out to be affected and boring . 11270 A good-looking but ultimately pointless political thriller with plenty of action and almost no substance . 11271 A tired , predictable , bordering on offensive , waste of time , money and celluloid . 11272 If 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é . 11273 Stealing 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 . 11274 This is an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors . 11275 Does anyone much think the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink ? 11276 ` 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 . 11277 The dialogue is cumbersome , the simpering soundtrack and editing more so . 11278 Never decides whether it wants to be a black comedy , drama , melodrama or some combination of the three . 11279 It has become apparent that the franchise 's best years are long past . 11280 Does what should seem impossible : it makes serial killer Jeffrey Dahmer boring . 11281 Do n't hate El Crimen del Padre Amaro because it 's anti-Catholic . 11282 Hate it because it 's lousy . 11283 ... better described as a ghost story gone badly awry . 11284 Like a bad improvisation exercise , the superficially written characters ramble on tediously about their lives , loves and the art they 're struggling to create . 11285 The 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 . 11286 Competently directed but terminally cute drama . 11287 The big finish is a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing . 11288 Not just unlikable . 11289 Disturbing . 11290 Disgusting . 11291 Without any redeeming value whatsoever . 11292 This thing is virtually unwatchable . 11293 Those eternally devoted to the insanity of Black will have an intermittently good time . 11294 Feel free to go get popcorn whenever he 's not onscreen . 11295 The self-serious Equilibrium makes its point too well ; a movie , like life , is n't much fun without the highs and lows . 11296 The work of an exhausted , desiccated talent who ca n't get out of his own way . 11297 The main characters are simply named The Husband , The Wife and The Kidnapper , emphasizing the disappointingly generic nature of the entire effort . 11298 In terms of execution this movie is careless and unfocused . 11299 Swims in mediocrity , sticking its head up for a breath of fresh air now and then . 11300 The only type of lives this glossy comedy-drama resembles are ones in formulaic mainstream movies . 11301 The characters ... are paper-thin , and their personalities undergo radical changes when it suits the script . 11302 A Sha-Na-Na sketch punctuated with graphic violence . 11303 The trouble is , its filmmakers run out of clever ideas and visual gags about halfway through . 11304 Spy-vs . 11305 - spy action flick with Antonio Banderas and Lucy Liu never comes together . 11306 A so-so , made-for-TV something posing as a real movie . 11307 The only upside to all of this unpleasantness is , given its Labor Day weekend upload , FearDotCom should log a minimal number of hits . 11308 Whether this is art imitating life or life imitating art , it 's an unhappy situation all around . 11309 An uneasy mix of run-of-the-mill raunchy humor and seemingly sincere personal reflection . 11310 A formula family tearjerker told with a heavy Irish brogue ... accentuating , rather than muting , the plot 's saccharine thrust . 11311 This is Sandler running on empty , repeating what he 's already done way too often . 11312 This is as lax and limp a comedy as I 've seen in a while , a meander through worn-out material . 11313 Time 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 . 11314 The 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 . 11315 Aptly named , this shimmering , beautifully costumed and filmed production does n't work for me . 11316 A preposterously melodramatic paean to gang-member teens in Brooklyn circa 1958 . 11317 Has 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 '' . 11318 Everything its title implies , a standard-issue crime drama spat out from the Tinseltown assembly line . 11319 An extraordinarily silly thriller . 11320 A rehash of every gangster movie from the past decade . 11321 Gaping plot holes sink this ` sub ' - standard thriller and drag audience enthusiasm to crush depth . 11322 Talkiness is n't necessarily bad , but the dialogue frequently misses the mark . 11323 The 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 . 11324 The stunt work is top-notch ; the dialogue and drama often food-spittingly funny . 11325 The movie is n't painfully bad , something to be ` fully experienced ' ; it 's just tediously bad , something to be fully forgotten . 11326 Charly comes off as emotionally manipulative and sadly imitative of innumerable past Love Story derisions . 11327 What 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 . 11328 No amount of good intentions is able to overcome the triviality of the story . 11329 The film ... presents classic moral-condundrum drama : What would you have done to survive ? 11330 The problem with the film is whether these ambitions , laudable in themselves , justify a theatrical simulation of the death camp of Auschwitz II-Birkenau . 11331 ... for all its social and political potential , State Property does n't end up being very inspiring or insightful . 11332 A film really has to be exceptional to justify a three hour running time , and this is n't . 11333 Little 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 . 11334 The nonstop artifice ultimately proves tiresome , with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations . 11335 This is a monumental achievement in practically every facet of inept filmmaking : joyless , idiotic , annoying , heavy-handed , visually atrocious , and often downright creepy . 11336 This off-putting French romantic comedy is sure to test severely the indulgence of fans of Amélie . 11337 overburdened with complicated plotting and banal dialogue 11338 Ensemble movies , like soap operas , depend on empathy . 11339 If there ai n't none , you have a problem . 11340 The Master of Disguise falls under the category of ` should have been a sketch on Saturday Night Live . ' 11341 Yet 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 . 11342 Koepp 's screenplay is n't nearly surprising or clever enough to sustain a reasonable degree of suspense on its own . 11343 Is it really an advantage to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets ? 11344 More successful at relating history than in creating an emotionally complex , dramatically satisfying heroine 11345 Clumsy , obvious , preposterous , the movie will likely set the cause of woman warriors back decades . 11346 It 's hard to pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss . 11347 Rather , pity anyone who sees this mishmash . 11348 A banal , virulently unpleasant excuse for a romantic comedy . 11349 The drama discloses almost nothing . 11350 A minor-league soccer remake of The Longest Yard . 11351 Belongs in the too-hot-for-TV direct-to-video\/DVD category , and this is why I have given it a one-star rating . 11352 As 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 . 11353 A dim-witted and lazy spin-off of the Animal Planet documentary series , Crocodile Hunter is entertainment opportunism at its most glaring . 11354 There is more than one joke about putting the toilet seat down . 11355 And that should tell you everything you need to know about All the Queen 's Men . 11356 Even fans of Ismail Merchant 's work , I suspect , would have a hard time sitting through this one . 11357 It 's really just another silly Hollywood action film , one among a multitude of simple-minded , yahoo-ing death shows . 11358 It 's not a particularly good film , but neither is it a monsterous one . 11359 The world needs more filmmakers with passionate enthusiasms like Martin Scorsese . 11360 But it does n't need Gangs of New York . 11361 Enchanted 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 . 11362 Harry Potter and the Chamber of Secrets is deja vu all over again , and while that is a cliche , nothing could be more appropriate . 11363 It 's likely that whatever you thought of the first production -- pro or con -- you 'll likely think of this one . 11364 Sade achieves the near-impossible : It turns the Marquis de Sade into a dullard . 11365 -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 . 11366 One of the most plain , unimaginative romantic comedies I 've ever seen . 11367 Though there 's a clarity of purpose and even-handedness to the film 's direction , the drama feels rigged and sluggish . 11368 Unfortunately , the experience of actually watching the movie is less compelling than the circumstances of its making . 11369 Unless there are zoning ordinances to protect your community from the dullest science fiction , Impostor is opening today at a theater near you . 11370 It should be doing a lot of things , but does n't . 11371 Chen films the resolutely downbeat Smokers Only with every indulgent , indie trick in the book . 11372 ... a rather bland affair . 11373 Far-fetched premise , convoluted plot , and thematic mumbo jumbo about destiny and redemptive love . 11374 The movie tries to be ethereal , but ends up seeming goofy . 11375 I was hoping that it would be sleazy and fun , but it was neither . 11376 Harris is supposed to be the star of the story , but comes across as pretty dull and wooden . 11377 Soulless and -- even more damning -- virtually joyless , XXX achieves near virtuosity in its crapulence . 11378 A boring masquerade ball where normally good actors , even Kingsley , are made to look bad . 11379 All the Queen 's Men is a throwback war movie that fails on so many levels , it should pay reparations to viewers . 11380 The filmmakers keep pushing the jokes at the expense of character until things fall apart . 11381 Rather 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 . 11382 Mariah Carey gives us another peek at some of the magic we saw in Glitter here in Wisegirls . 11383 It '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 . 11384 I suspect that you 'll be as bored watching Morvern Callar as the characters are in it . 11385 If you go , pack your knitting needles . 11386 The lead actors share no chemistry or engaging charisma . 11387 We do n't even like their characters . 11388 Some 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 . 11389 The movie does n't generate a lot of energy . 11390 It is dark , brooding and slow , and takes its central idea way too seriously . 11391 This feature is about as necessary as a hole in the head 11392 Spectators will indeed sit open-mouthed before the screen , not screaming but yawning . 11393 It feels like very light Errol Morris , focusing on eccentricity but failing , ultimately , to make something bigger out of its scrapbook of oddballs . 11394 A period story about a Catholic boy who tries to help a Jewish friend get into heaven by sending the audience straight to hell . 11395 The premise itself is just SOOOOO tired . 11396 Pair that with really poor comedic writing ... and you 've got a huge mess . 11397 Proves a lovely trifle that , unfortunately , is a little too in love with its own cuteness . 11398 Did we really need a remake of `` Charade ? '' 11399 Some movies can get by without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff . 11400 Stealing Harvard ca n't even do that much . 11401 Each scene immediately succumbs to gravity and plummets to earth . 11402 The only fun part of the movie is playing the obvious game . 11403 You try to guess the order in which the kids in the house will be gored . 11404 I spied with my little eye ... a mediocre collection of cookie-cutter action scenes and occasionally inspired dialogue bits 11405 Entertains 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 . 11406 The satire is just too easy to be genuinely satisfying . 11407 Less funny than it should be and less funny than it thinks it is . 11408 an `` O Bruin , Where Art Thou ? '' 11409 - style cross-country adventure ... it has sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack . 11410 A feeble Tootsie knockoff . 11411 An awful movie that will only satisfy the most emotionally malleable of filmgoers . 11412 ... the story is far-flung , illogical , and plain stupid . 11413 The very simple story seems too simple and the working out of the plot almost arbitrary . 11414 An allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing , but the supernatural trappings only obscure the message . 11415 A 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 . 11416 One key problem with these ardently Christian storylines is that there is never any question of how things will turn out . 11417 Essentially , the film is weak on detail and strong on personality 11418 A relentless , bombastic and ultimately empty World War II action flick . 11419 -LRB- Hell is -RRB- looking down at your watch and realizing Serving Sara is n't even halfway through . 11420 Too long , and larded with exposition , this somber cop drama ultimately feels as flat as the scruffy sands of its titular community . 11421 Leaves viewers out in the cold and undermines some phenomenal performances . 11422 ... a ho-hum affair , always watchable yet hardly memorable . 11423 Swiftly deteriorates into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell . 11424 The histrionic muse still eludes Madonna and , playing a charmless witch , she is merely a charmless witch . 11425 You have no affinity for most of the characters . 11426 Nothing about them is attractive . 11427 What they see in each other also is difficult to fathom . 11428 Diaz , 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 . 11429 A 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 . 11430 An inept , tedious spoof of '70s kung fu pictures , it contains almost enough chuckles for a three-minute sketch , and no more . 11431 It 's a mystery how the movie could be released in this condition . 11432 Absolutely -LRB- and unintentionally -RRB- terrifying . 11433 Eckstraordinarily lame and Severely boring . 11434 Eight Legged Freaks falls flat as a spoof . 11435 No 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 . 11436 You '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 . 11437 ` Dragonfly ' dwells on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue . 11438 In his determination to lighten the heavy subject matter , Silberling also , to a certain extent , trivializes the movie with too many nervous gags and pratfalls . 11439 Blade II has a brilliant director and charismatic star , but it suffers from rampant vampire devaluation . 11440 Veers uncomfortably close to pro-Serb propaganda . 11441 Movies like High Crimes flog the dead horse of surprise as if it were an obligation . 11442 How about surprising us by trying something new ? 11443 Final verdict : You 've seen it all before . 11444 Throwing 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 . 11445 If 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 . '' 11446 Further 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 . 11447 You 'll trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy . 11448 The movie is a little tired ; maybe the original inspiration has run its course . 11449 This will go on so long as there are moviegoers anxious to see strange young guys doing strange guy things . 11450 A full-frontal attack on audience patience . 11451 Any 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 . 11452 It 's a big idea , but the film itself is small and shriveled . 11453 Debut effort by `` Project Greenlight '' winner is sappy and amateurish . 11454 One gets the impression the creators of Do n't Ask Do n't Tell laughed a hell of a lot at their own jokes . 11455 Too bad none of it is funny . 11456 The cast has a high time , but de Broca has little enthusiasm for such antique pulp . 11457 The film , like Jimmy 's routines , could use a few good laughs . 11458 The 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 . 11459 Purports to be a Hollywood satire but winds up as the kind of film that should be the target of something deeper and more engaging . 11460 Oh , and more entertaining , too . 11461 ... in the pile of useless actioners from MTV schmucks who do n't know how to tell a story for more than four minutes . 11462 Though it was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal , I felt disrespected . 11463 Humor in I Spy is so anemic . 11464 The film is strictly routine . 11465 Skillful as he is , Mr. Shyamalan is undone by his pretensions . 11466 While 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 . 11467 In 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 . 11468 It shares the first two films ' loose-jointed structure , but laugh-out-loud bits are few and far between . 11469 The Santa Clause 2 is a barely adequate babysitter for older kids , but I 've got to give it thumbs down . 11470 You 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 . 11471 Barney throws away the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull . 11472 If 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 . 11473 We get the comedy we settle for . 11474 The uneven movie does have its charms and its funny moments but not quite enough of them . 11475 Two hours of sepia-tinted heavy metal images and surround sound effects of people moaning . 11476 A word of advice to the makers of The Singles Ward : Celebrity cameos do not automatically equal laughs . 11477 And neither do cliches , no matter how ` inside ' they are . 11478 The campy results make Mel Brooks ' Borscht Belt schtick look sophisticated . 11479 Its appeal will probably limited to LDS Church members and undemanding armchair tourists . 11480 The Hanukkah spirit seems fried in pork . 11481 Cherish would 've worked a lot better had it been a short film . 11482 Manipulative claptrap , a period-piece movie-of-the-week , plain old blarney ... take your pick . 11483 All three descriptions suit Evelyn , a besotted and obvious drama that tells us nothing new . 11484 Hey Arnold ! 11485 is now stretched to barely feature length , with a little more attention paid to the animation . 11486 Still , the updated Dickensian sensibility of writer Craig Bartlett 's story is appealing . 11487 True 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 . 11488 Does n't come close to justifying the hype that surrounded its debut at the Sundance Film Festival two years ago . 11489 The plot is paper-thin and the characters are n't interesting enough to watch them go about their daily activities for two whole hours . 11490 Kaufman 's script is never especially clever and often is rather pretentious . 11491 The 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 . 11492 Queen of the Damned is too long with too little going on . 11493 It collapses when Mr. Taylor tries to shift the tone to a thriller 's rush . 11494 Any 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 . 11495 ... 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 . 11496 The Rules of Attraction gets us too drunk on the party favors to sober us up with the transparent attempts at moralizing . 11497 Though there are many tense scenes in Trapped , they prove more distressing than suspenseful . 11498 In this film we at least see a study in contrasts ; the wide range of one actor , and the limited range of a comedian . 11499 Feels strangely hollow at its emotional core . 11500 You 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 . 11501 The 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 . 11502 This director 's cut -- which adds 51 minutes -- takes a great film and turns it into a mundane soap opera . 11503 Characterisation has been sacrificed for the sake of spectacle . 11504 the Venezuelans say things like `` si , pretty much '' and `` por favor , go home '' when talking to Americans . 11505 That 's muy loco , but no more ridiculous than most of the rest of `` Dragonfly . '' 11506 It 's a movie that ends with Truckzilla , for cryin ' out loud . 11507 If that does n't clue you in that something 's horribly wrong , nothing will . 11508 Director Tom Shadyac and star Kevin Costner glumly mishandle the story 's promising premise of a physician who needs to heal himself . 11509 It 's difficult to imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 . 11510 Like the Tuck family themselves , this movie just goes on and on and on and on 11511 As pedestrian as they come . 11512 A 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 . 11513 It '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 . 11514 Put it somewhere between Sling Blade and South of Heaven , West of Hell in the pantheon of Billy Bob 's body of work . 11515 More intellectually scary than dramatically involving . 11516 An inconsequential , barely there bit of piffle . 11517 The 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 . 11518 As saccharine as it is disposable . 11519 You 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 . 11520 The metaphors are provocative , but too often , the viewer is left puzzled by the mechanics of the delivery . 11521 Very much a home video , and so devoid of artifice and purpose that it appears not to have been edited at all . 11522 Too much power , not enough puff . 11523 The attempt to build up a pressure cooker of horrified awe emerges from the simple fact that the movie has virtually nothing to show . 11524 It '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 . 11525 A cellophane-pop remake of the punk classic Ladies and Gentlemen , The Fabulous Stains ... Crossroads is never much worse than bland or better than inconsequential . 11526 Muddled , trashy and incompetent 11527 For 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 . 11528 Narc is all menace and atmosphere . 11529 Though 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 . 11530 Despite 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 . 11531 It 's tough to be startled when you 're almost dozing . 11532 his -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 . 11533 It 's so downbeat and nearly humorless that it becomes a chore to sit through -- despite some first-rate performances by its lead . 11534 A terrible movie that some people will nevertheless find moving . 11535 There are many definitions of ` time waster ' but this movie must surely be one of them . 11536 As 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 . 11537 The thing looks like a made-for-home-video quickie . 11538 Enigma is well-made , but it 's just too dry and too placid . 11539 `` Sweet Home Alabama '' is what it is -- a nice , harmless date film ... 11540 One of the best , most understated performances of -LRB- Jack Nicholson 's -RRB- career . 11541 The Dangerous Lives of Altar Boys ' take on adolescence feels painfully true . 11542 It 's a masterpiece . 11543 It may not be `` Last Tango in Paris '' but ... 11544 They crush each other under cars , throw each other out windows , electrocute and dismember their victims in full consciousness . 11545 And we do n't avert our eyes for a moment . 11546 Charming and funny -LRB- but ultimately silly -RRB- movie . 11547 Third time 's the charm ... yeah , baby ! 11548 A pleasant , if forgettable , romp of a film . 11549 By the end of the movie , you 're definitely convinced that these women are spectacular . 11550 Birot 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 . 11551 ` Stock up on silver bullets for director Neil Marshall 's intense freight train of a film . ' 11552 The 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 . 11553 As a film director , LaBute continues to improve . 11554 Will warm your heart without making you feel guilty about it . 11555 Catch it ... if you can ! 11556 Worse than ` Silence of the Lambs ' better than ` Hannibal ' 11557 American 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 . 11558 ` 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 11559 It '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 . 11560 Alternates between deadpan comedy and heartbreaking loneliness and is n't afraid to provoke introspection in both its characters and its audience . 11561 The script is smart , not cloying . 11562 Visually , ` Santa Clause 2 ' is wondrously creative . 11563 A bittersweet contemporary comedy about benevolent deception , which , while it may not rival the filmmaker 's period pieces , is still very much worth seeing . 11564 One fantastic -LRB- and educational -RRB- documentary . 11565 An ambitious ` what if ? ' 11566 that works . 11567 `` The Dangerous Lives of Altar Boys '' has flaws , but it also has humor and heart and very talented young actors 11568 Nice piece of work . 11569 ` Stock up on silver bullets for director Neil Marshall 's intense freight train of a film . ' 11570 It 's funny , as the old saying goes , because it 's true . 11571 Though the film is static , its writer-director 's heart is in the right place , his plea for democracy and civic action laudable . 11572 The filmmaker 's heart is in the right place ... 11573 From blushing to gushing -- Imamura squirts the screen in ` Warm Water Under a Red Bridge ' 11574 Apart from anything else , this is one of the best-sustained ideas I have ever seen on the screen . 11575 Not a schlocky creature feature but something far more stylish and cerebral -- and , hence , more chillingly effective . 11576 Stupid , infantile , redundant , sloppy , over-the-top , and amateurish . 11577 Yep , it 's `` Waking up in Reno . '' 11578 Go back to sleep . 11579 I did n't laugh . 11580 I did n't smile . 11581 I survived . 11582 The worst film of the year . 11583 In the book-on-tape market , the film of `` The Kid Stays in the Picture '' would be an abridged edition 11584 A sour attempt at making a Farrelly Brothers-style , down-and-dirty laugher for the female set . 11585 Eisenstein lacks considerable brio for a film about one of cinema 's directorial giants . 11586 Taken as a whole , The Tuxedo does n't add up to a whole lot . 11587 This is no `` Waterboy ! '' 11588 Something has been lost in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise . 11589 The result is an ` action film ' mired in stasis . 11590 ... a movie that , quite simply , should n't have been made . 11591 By turns pretentious , fascinating , ludicrous , provocative and vainglorious . 11592 I ca n't recommend it . 11593 But it 's surprisingly harmless . 11594 What 's next ? 11595 The Porky 's Revenge : Ultimate Edition ? 11596 The script is a dim-witted pairing of teen-speak and animal gibberish . 11597 There 's no real reason to see it , and no real reason not to . 11598 Is `` Ballistic '' worth the price of admission ? 11599 Absolutely not . 11600 It sucked . 11601 Would I see it again ? 11602 Please see previous answer . 11603 It 's exactly what you 'd expect . 11604 `` 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 . 11605 A prison comedy that never really busts out of its comfy little cell . 11606 The movie is obviously a labour of love so Howard appears to have had free rein to be as pretentious as he wanted . 11607 This is n't a movie ; it 's a symptom . 11608 What 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 . 11609 If only it were , well , funnier . 11610 The script ? 11611 Please . 11612 Does n't add up to much . 11613 One of the worst movies of the year . 11614 A complete waste of time . 11615 Long before it 's over , you 'll be thinking of 51 ways to leave this loser . 11616 One of the worst movies of the year . 11617 ... Watching it was painful . 11618 The cinematic equivalent of patronizing a bar favored by pretentious , untalented artistes who enjoy moaning about their cruel fate . 11619 Spiderman ROCKS 11620 A 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 . 11621 An imaginative comedy\/thriller . 11622 Thoroughly enjoyable . 11623 -LRB- A -RRB- rare , beautiful film . 11624 Family fare . 11625 Boisterous , heartfelt comedy . 11626 -LRB- An -RRB- hilarious romantic comedy . 11627 An exhilarating experience . 11628 Never -LRB- sinks -RRB- into exploitation . 11629 Compellingly watchable . 11630 Troubling and powerful . 11631 Often hilarious . 11632 A modest masterpiece . 11633 Never once predictable . 11634 An uplifting , near-masterpiece . 11635 Warm and exotic . 11636 ... a true delight . 11637 A true pleasure . 11638 Polished , well-structured film . 11639 Sexy and romantic . 11640 Psychologically savvy . 11641 delightfully rendered 11642 Fun and nimble . 11643 Funny and touching . 11644 Serious and thoughtful . 11645 It strikes hardest ... when it reminds you how pertinent its dynamics remain . 11646 Fifty 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 . 11647 One-of-a-kind near-masterpiece . 11648 Lightweight but appealing . 11649 Highly engaging . 11650 Feral and uncomfortable . 11651 A gripping drama . 11652 Beautifully produced . 11653 Smart and taut . 11654 Highly watchable stuff . 11655 Psychologically revealing . 11656 A fast paced and suspenseful Argentinian thriller about the shadow side of play . 11657 ... wise and elegiac ... 11658 Spare yet audacious ... 11659 Surprisingly insightful 11660 An intoxicating experience . 11661 Reassuring , retro uplifter . 11662 Visually captivating . 11663 Lavishly , exhilaratingly tasteless . 11664 Touché ! 11665 An impressive hybrid . 11666 A tasty masala . 11667 Refreshing . 11668 Featherweight romantic comedy has a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock . 11669 Poignant and funny . 11670 See it . 11671 Debate it . 11672 Remember it . 11673 Morvern rocks . 11674 Intelligent and moving . 11675 Genuinely unnerving . 11676 A compelling film . 11677 Deliciously slow . 11678 A riveting documentary . 11679 An enjoyable experience . 11680 A good thriller . 11681 A glorious mess . 11682 Neatly constructed thriller . 11683 Intimate and panoramic . 11684 Exciting documentary . 11685 Good , solid storytelling . 11686 Infidelity drama is nicely shot , well-edited and features a standout performance by Diane Lane . 11687 Audacious-impossible yet compelling ... 11688 A muted freak-out 11689 Moving and vibrant . 11690 ... quite endearing . 11691 Harmless fun . 11692 Good-naturedly cornball sequel . 11693 Oddly compelling . 11694 Witless but watchable . 11695 Mr. Deeds is sure to give you a lot of laughs in this simple , sweet and romantic comedy . 11696 Hard to resist . 11697 A true-blue delight . 11698 A fun ride . 11699 Weird . 11700 Rewarding . 11701 Sleek and arty . 11702 Fantastic ! 11703 A thought-provoking picture . 11704 A stylish thriller . 11705 Almost peerlessly unsettling . 11706 Delirious fun . 11707 Exciting and well-paced . 11708 Really quite funny . 11709 A well-executed spy-thriller . 11710 Idiotic and ugly . 11711 A funny film . 11712 -LRB- A -RRB- satisfying niblet . 11713 Poetic , heartbreaking . 11714 Formuliac , but fun . 11715 Feels untidily honest . 11716 `` Red Dragon '' never cuts corners . 11717 Full of surprises . 11718 Quietly engaging . 11719 Dense , exhilarating documentary . 11720 a joyous occasion 11721 -LRB- An -RRB- absorbing documentary . 11722 A genuine mind-bender . 11723 Great character interaction . 11724 Intriguing and stylish . 11725 Many insightful moments . 11726 Everything is off . 11727 Earnest but heavy-handed . 11728 One lousy movie . 11729 ... hypnotically dull . 11730 Calculated swill . 11731 Thoroughly awful . 11732 Truly terrible . 11733 Fluffy and disposible . 11734 By-the-numbers yarn . 11735 Aan opportunity wasted . 11736 Storytelling feels slight . 11737 Bad company . 11738 Bad movie . 11739 Just plain bad . 11740 -LRB- A -RRB- soulless , stupid sequel ... 11741 A high-minded snoozer . 11742 Execrable . 11743 Amazingly dopey . 11744 Banal and predictable . 11745 Crikey indeed . 11746 Brisk hack job . 11747 ... the maudlin way its story unfolds suggests a director fighting against the urge to sensationalize his material . 11748 ... bibbidy-bobbidi-bland . 11749 Obvious . 11750 Its one-sidedness ... flirts with propaganda . 11751 ... a pretentious mess ... 11752 -LRB- A -RRB- rather thinly-conceived movie . 11753 So-so entertainment . 11754 Punitively affirmational parable . 11755 Decent but dull . 11756 Thin period piece . 11757 -LRB- A -RRB- stuporously solemn film . 11758 Well-meant but unoriginal . 11759 Odd and weird . 11760 Cinematic poo . 11761 ... stale and uninspired . 11762 A dreary movie . 11763 Pompous and garbled . 11764 Utter mush ... conceited pap . 11765 Well-meaning but inert . 11766 ... overly melodramatic ... 11767 Extremely bad . 11768 Shrewd but pointless . 11769 Sluggish , tonally uneven . 11770 Generic thriller junk . 11771 Teens only . 11772 A non-mystery mystery . 11773 What an embarrassment . 11774 A noble failure . 11775 Woefully pretentious . 11776 ... irritating soul-searching garbage . 11777 A relative letdown . 11778 Warmed-over hash . 11779 A puzzling experience . 11780 Stale , futile scenario . 11781 Aggravating and tedious . 11782 Lacks depth . 11783 under-rehearsed and lifeless 11784 Laughably , irredeemably awful . 11785 Unwieldy contraption . 11786 Overwrought , melodramatic bodice-ripper . 11787 An awful snooze . 11788 Just plain silly . 11789 Feeble comedy . 11790 ... salaciously simplistic . 11791 Shallow . 11792 A less-than-thrilling thriller . 11793 Disjointed parody . 11794 ... silly humbuggery ... 11795 Eh . 11796 Black-and-white and unrealistic . 11797 Two-bit potboiler . 11798 -LRB- U -RRB- nrelentingly stupid . 11799 Painfully padded . 11800 Anemic , pretentious . 11801 Grating and tedious . 11802 It bites hard . 11803 -LRB- A -RRB- mess . 11804 Dramatically lackluster . 11805 Stay away . 11806 Far away . 11807 ... a pretentious mess ... 11808 Predictably soulless techno-tripe . 11809 Arty gay film . 11810 Incoherence reigns . 11811 A half-assed film . 11812 Abysmally pathetic 11813 ... unbearably lame . 11814 Bland but harmless . 11815 Dense and enigmatic ... elusive ... stagy and stilted 11816 -LRB- L -RRB- ame and unnecessary . 11817 A dreary indulgence . 11818 -LRB- A -RRB- crushing disappointment . 11819 Tends to plod . 11820 A major waste ... generic . 11821 ... a confusing drudgery . 11822 A well-crafted letdown . 11823 Boring and meandering . 11824 Less than fresh . 11825 A lame comedy . 11826 A reality-snubbing hodgepodge . 11827 Mildly amusing . 11828 Fairly run-of-the-mill . 11829 Mildly entertaining . 11830 Terrible . 11831 Degenerates into hogwash . 11832 Meandering and confusing . 11833 Crummy . 11834 An opportunity missed . 11835 Wishy-washy . 11836 Inconsequential road-and-buddy pic . 11837 Insufferably naive . 11838 Ill-considered , unholy hokum . 11839 Amazingly lame . 11840 -LRB- A -RRB- slummer . 11841 -LRB- A -RRB- poorly executed comedy . 11842 ... really horrible drek . 11843 An intriguing near-miss . 11844 Flat , misguided comedy . 11845 Predictably melodramatic . 11846 Rashomon-for-dipsticks tale . 11847 Bearable . 11848 Barely . 11849 Staggeringly dreadful romance . 11850 Well-made but mush-hearted . 11851 A real snooze . 11852 No surprises . 11853 We 've seen the hippie-turned-yuppie plot before , but there 's an enthusiastic charm in Fire that makes the formula fresh again . 11854 Her 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 . 11855 In this case zero . ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/datasetSplit.txt ================================================ sentence_index,splitset_label 1,1 2,1 3,2 4,2 5,2 6,2 7,2 8,2 9,2 10,2 11,2 12,2 13,2 14,2 15,2 16,2 17,2 18,2 19,2 20,2 21,2 22,2 23,2 24,2 25,2 26,2 27,2 28,2 29,2 30,2 31,2 32,2 33,2 34,2 35,2 36,2 37,2 38,2 39,2 40,2 41,2 42,2 43,2 44,2 45,2 46,2 47,2 48,2 49,2 50,2 51,2 52,2 53,2 54,2 55,2 56,2 57,2 58,2 59,2 60,2 61,1 62,1 63,1 64,1 65,2 66,2 67,2 68,1 69,2 70,2 71,2 72,1 73,2 74,2 75,2 76,2 77,2 78,2 79,2 80,2 81,2 82,1 83,2 84,2 85,2 86,2 87,2 88,2 89,2 90,2 91,2 92,2 93,2 94,2 95,2 96,2 97,2 98,2 99,2 100,2 101,2 102,2 103,2 104,2 105,2 106,2 107,2 108,2 109,2 110,2 111,2 112,2 113,2 114,2 115,2 116,2 117,2 118,2 119,2 120,2 121,2 122,2 123,2 124,2 125,2 126,2 127,2 128,2 129,2 130,2 131,1 132,1 133,1 134,1 135,1 136,1 137,2 138,2 139,2 140,2 141,2 142,2 143,2 144,2 145,2 146,2 147,2 148,2 149,2 150,2 151,2 152,2 153,2 154,2 155,2 156,2 157,2 158,2 159,2 160,2 161,2 162,2 163,2 164,2 165,2 166,2 167,2 168,2 169,2 170,2 171,2 172,2 173,2 174,2 175,2 176,2 177,2 178,2 179,2 180,2 181,2 182,2 183,2 184,2 185,2 186,2 187,2 188,2 189,2 190,2 191,2 192,2 193,2 194,2 195,2 196,2 197,2 198,2 199,2 200,2 201,2 202,2 203,2 204,2 205,2 206,2 207,2 208,2 209,2 210,2 211,2 212,2 213,2 214,1 215,2 216,2 217,2 218,2 219,2 220,2 221,2 222,2 223,2 224,2 225,2 226,2 227,2 228,1 229,2 230,2 231,2 232,2 233,2 234,2 235,2 236,2 237,2 238,2 239,2 240,2 241,2 242,2 243,2 244,2 245,2 246,2 247,2 248,2 249,2 250,2 251,2 252,2 253,2 254,2 255,2 256,2 257,2 258,2 259,2 260,2 261,2 262,2 263,2 264,2 265,2 266,2 267,2 268,2 269,2 270,2 271,2 272,2 273,2 274,2 275,2 276,2 277,2 278,2 279,2 280,2 281,2 282,2 283,2 284,2 285,2 286,2 287,2 288,2 289,2 290,2 291,2 292,2 293,2 294,2 295,2 296,2 297,2 298,2 299,2 300,2 301,2 302,2 303,2 304,2 305,2 306,2 307,2 308,2 309,2 310,2 311,2 312,2 313,2 314,2 315,2 316,2 317,2 318,2 319,2 320,2 321,2 322,2 323,2 324,2 325,2 326,2 327,2 328,2 329,2 330,2 331,2 332,2 333,2 334,2 335,2 336,2 337,2 338,2 339,2 340,1 341,2 342,2 343,2 344,2 345,2 346,2 347,2 348,2 349,2 350,2 351,2 352,2 353,2 354,2 355,2 356,2 357,2 358,2 359,2 360,2 361,2 362,2 363,2 364,2 365,2 366,2 367,2 368,2 369,2 370,2 371,2 372,2 373,2 374,2 375,2 376,2 377,2 378,2 379,2 380,2 381,2 382,2 383,1 384,2 385,2 386,2 387,1 388,1 389,2 390,2 391,2 392,2 393,2 394,2 395,2 396,2 397,2 398,2 399,2 400,2 401,2 402,2 403,2 404,2 405,2 406,2 407,2 408,2 409,2 410,2 411,2 412,2 413,2 414,2 415,2 416,2 417,2 418,2 419,2 420,2 421,2 422,2 423,2 424,2 425,2 426,2 427,2 428,1 429,1 430,2 431,2 432,2 433,2 434,2 435,2 436,2 437,2 438,2 439,2 440,2 441,2 442,2 443,2 444,2 445,2 446,1 447,2 448,2 449,2 450,2 451,2 452,2 453,2 454,2 455,2 456,2 457,2 458,2 459,2 460,2 461,2 462,2 463,2 464,2 465,2 466,2 467,1 468,1 469,2 470,2 471,2 472,2 473,1 474,1 475,2 476,2 477,2 478,2 479,2 480,2 481,2 482,2 483,2 484,2 485,2 486,1 487,1 488,1 489,2 490,2 491,2 492,2 493,2 494,2 495,2 496,2 497,2 498,2 499,2 500,2 501,2 502,2 503,2 504,2 505,2 506,2 507,2 508,2 509,2 510,2 511,2 512,2 513,2 514,1 515,2 516,2 517,2 518,2 519,2 520,2 521,2 522,2 523,2 524,2 525,2 526,2 527,2 528,2 529,2 530,2 531,2 532,2 533,2 534,2 535,2 536,2 537,2 538,2 539,2 540,2 541,2 542,2 543,2 544,2 545,2 546,2 547,2 548,2 549,2 550,2 551,2 552,2 553,2 554,2 555,2 556,2 557,2 558,2 559,2 560,2 561,2 562,2 563,2 564,2 565,2 566,2 567,2 568,2 569,2 570,2 571,2 572,2 573,2 574,2 575,2 576,2 577,2 578,2 579,2 580,2 581,2 582,2 583,2 584,1 585,2 586,2 587,2 588,2 589,2 590,2 591,2 592,2 593,2 594,2 595,2 596,2 597,2 598,2 599,2 600,2 601,2 602,2 603,2 604,2 605,2 606,2 607,2 608,2 609,2 610,2 611,2 612,2 613,2 614,2 615,2 616,2 617,2 618,2 619,2 620,2 621,2 622,2 623,2 624,2 625,2 626,2 627,2 628,2 629,2 630,2 631,2 632,2 633,2 634,2 635,2 636,2 637,2 638,2 639,2 640,2 641,2 642,2 643,2 644,2 645,2 646,2 647,2 648,2 649,2 650,2 651,2 652,2 653,2 654,2 655,2 656,2 657,2 658,2 659,2 660,2 661,2 662,2 663,2 664,2 665,2 666,2 667,2 668,2 669,2 670,1 671,2 672,2 673,2 674,2 675,2 676,2 677,2 678,2 679,2 680,2 681,2 682,2 683,2 684,2 685,2 686,2 687,2 688,2 689,2 690,2 691,2 692,1 693,2 694,2 695,2 696,2 697,2 698,2 699,2 700,2 701,2 702,1 703,1 704,1 705,1 706,2 707,2 708,2 709,2 710,2 711,2 712,2 713,2 714,2 715,2 716,2 717,2 718,2 719,2 720,2 721,2 722,2 723,2 724,2 725,2 726,2 727,2 728,2 729,2 730,2 731,2 732,2 733,2 734,2 735,2 736,2 737,2 738,2 739,2 740,2 741,2 742,1 743,2 744,2 745,2 746,2 747,2 748,1 749,1 750,2 751,2 752,2 753,2 754,2 755,2 756,2 757,2 758,2 759,2 760,2 761,2 762,2 763,2 764,2 765,2 766,2 767,2 768,2 769,2 770,2 771,2 772,2 773,2 774,2 775,2 776,2 777,2 778,2 779,2 780,2 781,2 782,2 783,2 784,2 785,2 786,2 787,2 788,2 789,2 790,2 791,2 792,2 793,2 794,2 795,2 796,2 797,2 798,2 799,2 800,2 801,2 802,2 803,2 804,2 805,2 806,2 807,2 808,2 809,2 810,2 811,2 812,2 813,2 814,2 815,2 816,2 817,2 818,2 819,2 820,2 821,2 822,2 823,2 824,2 825,2 826,2 827,2 828,2 829,2 830,2 831,2 832,2 833,2 834,2 835,2 836,2 837,2 838,2 839,2 840,1 841,2 842,2 843,2 844,2 845,2 846,2 847,2 848,2 849,2 850,2 851,2 852,2 853,2 854,2 855,2 856,2 857,2 858,2 859,2 860,2 861,2 862,2 863,2 864,2 865,2 866,2 867,2 868,2 869,2 870,2 871,2 872,2 873,2 874,2 875,2 876,2 877,2 878,2 879,2 880,2 881,2 882,2 883,2 884,2 885,2 886,2 887,2 888,2 889,2 890,2 891,2 892,2 893,1 894,1 895,2 896,1 897,1 898,2 899,2 900,2 901,2 902,2 903,2 904,2 905,2 906,2 907,2 908,2 909,2 910,2 911,2 912,2 913,2 914,2 915,2 916,2 917,2 918,2 919,2 920,2 921,2 922,2 923,2 924,2 925,2 926,2 927,2 928,2 929,2 930,2 931,2 932,2 933,2 934,2 935,2 936,2 937,2 938,2 939,2 940,2 941,2 942,2 943,2 944,2 945,2 946,2 947,2 948,2 949,2 950,2 951,2 952,2 953,2 954,2 955,2 956,2 957,2 958,2 959,2 960,2 961,2 962,2 963,2 964,2 965,2 966,2 967,2 968,2 969,2 970,2 971,2 972,2 973,2 974,2 975,2 976,2 977,2 978,2 979,2 980,2 981,2 982,2 983,2 984,2 985,2 986,2 987,2 988,2 989,2 990,2 991,2 992,2 993,2 994,2 995,2 996,2 997,2 998,2 999,2 1000,2 1001,2 1002,2 1003,2 1004,2 1005,2 1006,2 1007,2 1008,2 1009,2 1010,2 1011,2 1012,2 1013,2 1014,2 1015,2 1016,2 1017,2 1018,2 1019,2 1020,2 1021,2 1022,2 1023,2 1024,2 1025,2 1026,2 1027,2 1028,2 1029,2 1030,2 1031,2 1032,2 1033,2 1034,2 1035,2 1036,2 1037,2 1038,2 1039,2 1040,2 1041,2 1042,2 1043,2 1044,2 1045,2 1046,2 1047,2 1048,2 1049,2 1050,2 1051,2 1052,2 1053,2 1054,2 1055,2 1056,2 1057,2 1058,2 1059,2 1060,2 1061,2 1062,2 1063,2 1064,2 1065,2 1066,2 1067,2 1068,2 1069,2 1070,2 1071,2 1072,2 1073,2 1074,2 1075,2 1076,2 1077,2 1078,2 1079,2 1080,2 1081,2 1082,2 1083,2 1084,2 1085,2 1086,2 1087,2 1088,2 1089,2 1090,2 1091,2 1092,2 1093,2 1094,2 1095,2 1096,2 1097,2 1098,2 1099,2 1100,2 1101,2 1102,2 1103,2 1104,2 1105,2 1106,2 1107,2 1108,2 1109,2 1110,2 1111,2 1112,1 1113,2 1114,2 1115,2 1116,2 1117,3 1118,3 1119,3 1120,3 1121,3 1122,3 1123,3 1124,3 1125,3 1126,3 1127,3 1128,3 1129,3 1130,3 1131,3 1132,3 1133,3 1134,3 1135,3 1136,3 1137,3 1138,3 1139,3 1140,3 1141,3 1142,3 1143,3 1144,3 1145,3 1146,3 1147,3 1148,3 1149,3 1150,3 1151,3 1152,3 1153,1 1154,1 1155,3 1156,3 1157,3 1158,3 1159,3 1160,3 1161,3 1162,3 1163,3 1164,3 1165,3 1166,3 1167,3 1168,3 1169,3 1170,3 1171,3 1172,3 1173,3 1174,3 1175,3 1176,3 1177,3 1178,3 1179,3 1180,3 1181,3 1182,3 1183,3 1184,3 1185,3 1186,3 1187,3 1188,3 1189,3 1190,3 1191,3 1192,3 1193,3 1194,3 1195,3 1196,3 1197,3 1198,3 1199,3 1200,3 1201,3 1202,3 1203,3 1204,3 1205,3 1206,3 1207,3 1208,3 1209,3 1210,3 1211,3 1212,3 1213,3 1214,3 1215,1 1216,3 1217,3 1218,3 1219,3 1220,3 1221,3 1222,3 1223,3 1224,3 1225,3 1226,3 1227,3 1228,3 1229,3 1230,3 1231,3 1232,3 1233,3 1234,3 1235,3 1236,3 1237,3 1238,3 1239,3 1240,3 1241,1 1242,3 1243,3 1244,3 1245,3 1246,3 1247,3 1248,3 1249,3 1250,3 1251,3 1252,3 1253,3 1254,3 1255,3 1256,1 1257,3 1258,3 1259,3 1260,3 1261,3 1262,3 1263,3 1264,3 1265,3 1266,3 1267,3 1268,3 1269,3 1270,3 1271,3 1272,3 1273,3 1274,1 1275,3 1276,3 1277,3 1278,3 1279,3 1280,3 1281,3 1282,3 1283,3 1284,3 1285,3 1286,3 1287,3 1288,3 1289,3 1290,3 1291,3 1292,3 1293,3 1294,3 1295,3 1296,3 1297,3 1298,3 1299,3 1300,3 1301,3 1302,3 1303,3 1304,3 1305,3 1306,3 1307,3 1308,3 1309,3 1310,3 1311,3 1312,3 1313,3 1314,3 1315,3 1316,3 1317,3 1318,3 1319,3 1320,3 1321,3 1322,3 1323,3 1324,3 1325,3 1326,3 1327,3 1328,3 1329,3 1330,3 1331,3 1332,3 1333,3 1334,3 1335,3 1336,3 1337,3 1338,3 1339,3 1340,3 1341,3 1342,3 1343,3 1344,3 1345,3 1346,3 1347,3 1348,3 1349,3 1350,3 1351,3 1352,3 1353,3 1354,3 1355,3 1356,3 1357,3 1358,3 1359,3 1360,3 1361,3 1362,3 1363,3 1364,3 1365,3 1366,3 1367,3 1368,3 1369,3 1370,3 1371,3 1372,3 1373,3 1374,3 1375,3 1376,3 1377,3 1378,3 1379,3 1380,3 1381,3 1382,3 1383,3 1384,3 1385,3 1386,3 1387,3 1388,3 1389,3 1390,3 1391,3 1392,3 1393,3 1394,3 1395,3 1396,3 1397,3 1398,3 1399,3 1400,3 1401,3 1402,3 1403,3 1404,3 1405,3 1406,3 1407,3 1408,3 1409,3 1410,3 1411,3 1412,3 1413,3 1414,3 1415,3 1416,3 1417,3 1418,3 1419,3 1420,3 1421,3 1422,3 1423,3 1424,3 1425,3 1426,3 1427,3 1428,3 1429,3 1430,3 1431,3 1432,3 1433,3 1434,3 1435,3 1436,3 1437,3 1438,3 1439,3 1440,3 1441,3 1442,3 1443,3 1444,3 1445,3 1446,3 1447,3 1448,3 1449,3 1450,3 1451,3 1452,3 1453,3 1454,3 1455,3 1456,3 1457,3 1458,3 1459,3 1460,3 1461,3 1462,3 1463,3 1464,3 1465,3 1466,3 1467,3 1468,3 1469,3 1470,3 1471,3 1472,3 1473,3 1474,3 1475,3 1476,3 1477,3 1478,3 1479,3 1480,3 1481,3 1482,1 1483,3 1484,3 1485,3 1486,3 1487,3 1488,3 1489,1 1490,3 1491,3 1492,3 1493,3 1494,3 1495,3 1496,3 1497,3 1498,3 1499,3 1500,3 1501,3 1502,3 1503,3 1504,3 1505,3 1506,3 1507,3 1508,3 1509,3 1510,3 1511,3 1512,3 1513,3 1514,3 1515,3 1516,3 1517,3 1518,3 1519,3 1520,3 1521,3 1522,3 1523,3 1524,3 1525,3 1526,3 1527,3 1528,3 1529,3 1530,3 1531,3 1532,3 1533,3 1534,3 1535,3 1536,3 1537,3 1538,3 1539,3 1540,3 1541,3 1542,3 1543,3 1544,3 1545,3 1546,3 1547,3 1548,3 1549,3 1550,3 1551,3 1552,3 1553,3 1554,3 1555,3 1556,3 1557,3 1558,3 1559,3 1560,3 1561,3 1562,3 1563,3 1564,3 1565,3 1566,3 1567,3 1568,3 1569,3 1570,3 1571,3 1572,3 1573,3 1574,3 1575,3 1576,3 1577,3 1578,3 1579,3 1580,3 1581,3 1582,3 1583,3 1584,3 1585,3 1586,3 1587,3 1588,1 1589,3 1590,3 1591,3 1592,3 1593,3 1594,3 1595,3 1596,3 1597,3 1598,3 1599,3 1600,3 1601,3 1602,3 1603,3 1604,3 1605,3 1606,3 1607,3 1608,3 1609,3 1610,3 1611,3 1612,3 1613,3 1614,3 1615,3 1616,3 1617,3 1618,3 1619,3 1620,3 1621,3 1622,3 1623,3 1624,3 1625,3 1626,3 1627,3 1628,3 1629,3 1630,3 1631,3 1632,3 1633,3 1634,3 1635,3 1636,3 1637,3 1638,3 1639,3 1640,3 1641,3 1642,3 1643,3 1644,3 1645,3 1646,3 1647,3 1648,3 1649,3 1650,3 1651,3 1652,3 1653,3 1654,3 1655,3 1656,3 1657,3 1658,3 1659,3 1660,3 1661,3 1662,3 1663,3 1664,3 1665,3 1666,3 1667,3 1668,3 1669,3 1670,3 1671,1 1672,1 1673,1 1674,1 1675,1 1676,1 1677,1 1678,1 1679,1 1680,1 1681,1 1682,1 1683,1 1684,1 1685,1 1686,1 1687,1 1688,1 1689,1 1690,1 1691,1 1692,1 1693,1 1694,1 1695,1 1696,1 1697,1 1698,1 1699,1 1700,1 1701,1 1702,1 1703,1 1704,1 1705,1 1706,1 1707,1 1708,1 1709,1 1710,1 1711,1 1712,1 1713,1 1714,1 1715,1 1716,1 1717,1 1718,1 1719,1 1720,1 1721,1 1722,1 1723,1 1724,1 1725,1 1726,1 1727,1 1728,1 1729,1 1730,1 1731,1 1732,1 1733,1 1734,1 1735,1 1736,1 1737,1 1738,1 1739,1 1740,1 1741,1 1742,1 1743,1 1744,1 1745,1 1746,1 1747,1 1748,1 1749,1 1750,1 1751,1 1752,1 1753,1 1754,1 1755,1 1756,1 1757,1 1758,1 1759,1 1760,1 1761,1 1762,1 1763,1 1764,1 1765,1 1766,1 1767,1 1768,1 1769,1 1770,1 1771,1 1772,1 1773,1 1774,1 1775,1 1776,1 1777,1 1778,1 1779,1 1780,1 1781,1 1782,1 1783,1 1784,1 1785,1 1786,1 1787,1 1788,1 1789,1 1790,1 1791,1 1792,1 1793,1 1794,1 1795,1 1796,1 1797,1 1798,1 1799,1 1800,1 1801,1 1802,1 1803,1 1804,1 1805,1 1806,1 1807,1 1808,1 1809,1 1810,1 1811,1 1812,1 1813,1 1814,1 1815,1 1816,1 1817,1 1818,1 1819,1 1820,1 1821,1 1822,1 1823,1 1824,1 1825,1 1826,1 1827,1 1828,1 1829,1 1830,1 1831,1 1832,1 1833,1 1834,1 1835,1 1836,1 1837,1 1838,1 1839,1 1840,1 1841,1 1842,1 1843,1 1844,1 1845,1 1846,1 1847,1 1848,1 1849,1 1850,1 1851,1 1852,1 1853,1 1854,1 1855,1 1856,1 1857,1 1858,1 1859,1 1860,1 1861,1 1862,1 1863,1 1864,1 1865,1 1866,1 1867,1 1868,1 1869,1 1870,1 1871,1 1872,1 1873,1 1874,1 1875,1 1876,1 1877,1 1878,1 1879,1 1880,1 1881,1 1882,1 1883,1 1884,1 1885,1 1886,1 1887,1 1888,1 1889,1 1890,1 1891,1 1892,1 1893,1 1894,1 1895,1 1896,1 1897,1 1898,1 1899,1 1900,1 1901,1 1902,1 1903,1 1904,1 1905,1 1906,1 1907,1 1908,1 1909,1 1910,1 1911,1 1912,1 1913,1 1914,1 1915,1 1916,1 1917,1 1918,1 1919,1 1920,1 1921,1 1922,1 1923,1 1924,1 1925,1 1926,1 1927,1 1928,1 1929,1 1930,1 1931,1 1932,1 1933,1 1934,1 1935,1 1936,1 1937,1 1938,1 1939,1 1940,1 1941,1 1942,1 1943,1 1944,1 1945,1 1946,1 1947,1 1948,1 1949,1 1950,1 1951,1 1952,1 1953,1 1954,1 1955,1 1956,1 1957,1 1958,1 1959,1 1960,1 1961,1 1962,1 1963,1 1964,1 1965,1 1966,1 1967,1 1968,1 1969,1 1970,1 1971,1 1972,1 1973,1 1974,1 1975,1 1976,1 1977,1 1978,1 1979,1 1980,1 1981,1 1982,1 1983,1 1984,1 1985,1 1986,1 1987,1 1988,1 1989,1 1990,1 1991,1 1992,1 1993,1 1994,1 1995,1 1996,1 1997,1 1998,1 1999,1 2000,1 2001,1 2002,1 2003,1 2004,1 2005,1 2006,1 2007,1 2008,1 2009,1 2010,1 2011,1 2012,1 2013,1 2014,1 2015,1 2016,1 2017,1 2018,1 2019,1 2020,1 2021,1 2022,1 2023,1 2024,1 2025,1 2026,1 2027,1 2028,1 2029,1 2030,1 2031,1 2032,1 2033,1 2034,1 2035,1 2036,1 2037,1 2038,1 2039,1 2040,1 2041,1 2042,1 2043,1 2044,1 2045,1 2046,1 2047,1 2048,1 2049,1 2050,1 2051,1 2052,1 2053,1 2054,1 2055,1 2056,1 2057,1 2058,1 2059,1 2060,1 2061,1 2062,1 2063,1 2064,1 2065,1 2066,1 2067,1 2068,1 2069,1 2070,1 2071,1 2072,1 2073,1 2074,1 2075,1 2076,1 2077,1 2078,1 2079,1 2080,1 2081,1 2082,1 2083,1 2084,1 2085,1 2086,1 2087,1 2088,1 2089,1 2090,1 2091,1 2092,1 2093,1 2094,1 2095,1 2096,1 2097,1 2098,1 2099,1 2100,1 2101,1 2102,1 2103,1 2104,1 2105,1 2106,1 2107,1 2108,1 2109,1 2110,1 2111,1 2112,1 2113,1 2114,1 2115,1 2116,1 2117,1 2118,1 2119,1 2120,1 2121,1 2122,1 2123,1 2124,1 2125,1 2126,1 2127,1 2128,1 2129,1 2130,1 2131,1 2132,1 2133,1 2134,1 2135,1 2136,1 2137,1 2138,1 2139,1 2140,1 2141,1 2142,1 2143,1 2144,1 2145,1 2146,1 2147,1 2148,1 2149,1 2150,1 2151,1 2152,1 2153,1 2154,1 2155,1 2156,1 2157,1 2158,1 2159,1 2160,1 2161,1 2162,1 2163,1 2164,1 2165,1 2166,1 2167,1 2168,1 2169,1 2170,1 2171,1 2172,1 2173,1 2174,1 2175,1 2176,1 2177,1 2178,1 2179,1 2180,1 2181,1 2182,1 2183,1 2184,1 2185,1 2186,1 2187,1 2188,1 2189,1 2190,1 2191,1 2192,1 2193,1 2194,1 2195,1 2196,1 2197,1 2198,1 2199,1 2200,1 2201,1 2202,1 2203,1 2204,1 2205,1 2206,1 2207,1 2208,1 2209,1 2210,1 2211,1 2212,1 2213,1 2214,1 2215,1 2216,1 2217,1 2218,1 2219,1 2220,1 2221,1 2222,1 2223,1 2224,1 2225,1 2226,1 2227,1 2228,1 2229,1 2230,1 2231,1 2232,1 2233,1 2234,1 2235,1 2236,1 2237,1 2238,1 2239,1 2240,1 2241,1 2242,1 2243,1 2244,1 2245,1 2246,1 2247,1 2248,1 2249,1 2250,1 2251,1 2252,1 2253,1 2254,1 2255,1 2256,1 2257,1 2258,1 2259,1 2260,1 2261,1 2262,1 2263,1 2264,1 2265,1 2266,1 2267,1 2268,1 2269,1 2270,1 2271,1 2272,1 2273,1 2274,1 2275,1 2276,1 2277,1 2278,1 2279,1 2280,1 2281,1 2282,1 2283,1 2284,1 2285,1 2286,1 2287,1 2288,1 2289,1 2290,1 2291,1 2292,1 2293,1 2294,1 2295,1 2296,1 2297,1 2298,1 2299,1 2300,1 2301,1 2302,1 2303,1 2304,1 2305,1 2306,1 2307,1 2308,1 2309,1 2310,1 2311,1 2312,1 2313,1 2314,1 2315,1 2316,1 2317,1 2318,1 2319,1 2320,1 2321,1 2322,1 2323,1 2324,1 2325,1 2326,1 2327,1 2328,1 2329,1 2330,1 2331,1 2332,1 2333,1 2334,1 2335,1 2336,1 2337,1 2338,1 2339,1 2340,1 2341,1 2342,1 2343,1 2344,1 2345,1 2346,1 2347,1 2348,1 2349,1 2350,1 2351,1 2352,1 2353,1 2354,1 2355,1 2356,1 2357,1 2358,1 2359,1 2360,1 2361,1 2362,1 2363,1 2364,1 2365,1 2366,1 2367,1 2368,1 2369,1 2370,1 2371,1 2372,1 2373,1 2374,1 2375,1 2376,1 2377,1 2378,1 2379,1 2380,1 2381,1 2382,1 2383,1 2384,1 2385,1 2386,1 2387,1 2388,1 2389,1 2390,1 2391,1 2392,1 2393,1 2394,1 2395,1 2396,1 2397,1 2398,1 2399,1 2400,1 2401,1 2402,1 2403,1 2404,1 2405,1 2406,1 2407,1 2408,1 2409,1 2410,1 2411,1 2412,1 2413,1 2414,1 2415,1 2416,1 2417,1 2418,1 2419,1 2420,1 2421,1 2422,1 2423,1 2424,1 2425,1 2426,1 2427,1 2428,1 2429,1 2430,1 2431,1 2432,1 2433,1 2434,1 2435,1 2436,1 2437,1 2438,1 2439,1 2440,1 2441,1 2442,1 2443,1 2444,1 2445,1 2446,1 2447,1 2448,1 2449,1 2450,1 2451,1 2452,1 2453,1 2454,1 2455,1 2456,1 2457,1 2458,1 2459,1 2460,1 2461,1 2462,1 2463,1 2464,1 2465,1 2466,1 2467,1 2468,1 2469,1 2470,1 2471,1 2472,1 2473,1 2474,1 2475,1 2476,1 2477,1 2478,1 2479,1 2480,1 2481,1 2482,1 2483,1 2484,1 2485,1 2486,1 2487,1 2488,1 2489,1 2490,1 2491,1 2492,1 2493,1 2494,1 2495,1 2496,1 2497,1 2498,1 2499,1 2500,1 2501,1 2502,1 2503,1 2504,1 2505,1 2506,1 2507,1 2508,1 2509,1 2510,1 2511,1 2512,1 2513,1 2514,1 2515,1 2516,1 2517,1 2518,1 2519,1 2520,1 2521,1 2522,1 2523,1 2524,1 2525,1 2526,1 2527,1 2528,1 2529,1 2530,1 2531,1 2532,1 2533,1 2534,1 2535,1 2536,1 2537,1 2538,1 2539,1 2540,1 2541,1 2542,1 2543,1 2544,1 2545,1 2546,1 2547,1 2548,1 2549,1 2550,1 2551,1 2552,1 2553,1 2554,1 2555,1 2556,1 2557,1 2558,1 2559,1 2560,1 2561,1 2562,1 2563,1 2564,1 2565,1 2566,1 2567,1 2568,1 2569,1 2570,1 2571,1 2572,1 2573,1 2574,1 2575,1 2576,1 2577,1 2578,1 2579,1 2580,1 2581,1 2582,1 2583,1 2584,1 2585,1 2586,1 2587,1 2588,1 2589,1 2590,1 2591,1 2592,1 2593,1 2594,1 2595,1 2596,1 2597,1 2598,1 2599,1 2600,1 2601,1 2602,1 2603,1 2604,1 2605,1 2606,1 2607,1 2608,1 2609,1 2610,1 2611,1 2612,1 2613,1 2614,1 2615,1 2616,1 2617,1 2618,1 2619,1 2620,1 2621,1 2622,1 2623,1 2624,1 2625,1 2626,1 2627,1 2628,1 2629,1 2630,1 2631,1 2632,1 2633,1 2634,1 2635,1 2636,1 2637,1 2638,1 2639,1 2640,1 2641,1 2642,1 2643,1 2644,1 2645,1 2646,1 2647,1 2648,1 2649,1 2650,1 2651,1 2652,1 2653,1 2654,1 2655,1 2656,1 2657,1 2658,1 2659,1 2660,1 2661,1 2662,1 2663,1 2664,1 2665,1 2666,1 2667,1 2668,1 2669,1 2670,1 2671,1 2672,1 2673,1 2674,1 2675,1 2676,1 2677,1 2678,1 2679,1 2680,1 2681,1 2682,1 2683,1 2684,1 2685,1 2686,1 2687,1 2688,1 2689,1 2690,1 2691,1 2692,1 2693,1 2694,1 2695,1 2696,1 2697,1 2698,1 2699,1 2700,1 2701,1 2702,1 2703,1 2704,1 2705,1 2706,1 2707,1 2708,1 2709,1 2710,1 2711,1 2712,1 2713,1 2714,1 2715,1 2716,1 2717,1 2718,1 2719,1 2720,1 2721,1 2722,1 2723,1 2724,1 2725,1 2726,1 2727,1 2728,1 2729,1 2730,1 2731,1 2732,1 2733,1 2734,1 2735,1 2736,1 2737,1 2738,1 2739,1 2740,1 2741,1 2742,1 2743,1 2744,1 2745,1 2746,1 2747,1 2748,1 2749,1 2750,1 2751,1 2752,1 2753,1 2754,1 2755,1 2756,1 2757,1 2758,1 2759,1 2760,1 2761,1 2762,1 2763,1 2764,1 2765,1 2766,1 2767,1 2768,1 2769,1 2770,1 2771,1 2772,1 2773,1 2774,1 2775,1 2776,1 2777,1 2778,1 2779,1 2780,1 2781,1 2782,1 2783,1 2784,1 2785,1 2786,1 2787,1 2788,1 2789,1 2790,1 2791,1 2792,1 2793,1 2794,1 2795,1 2796,1 2797,1 2798,1 2799,1 2800,1 2801,1 2802,1 2803,1 2804,1 2805,1 2806,1 2807,1 2808,1 2809,1 2810,1 2811,1 2812,1 2813,1 2814,1 2815,1 2816,1 2817,1 2818,1 2819,1 2820,1 2821,1 2822,1 2823,1 2824,1 2825,1 2826,1 2827,1 2828,1 2829,1 2830,1 2831,1 2832,1 2833,1 2834,1 2835,1 2836,1 2837,1 2838,1 2839,1 2840,1 2841,1 2842,1 2843,1 2844,1 2845,1 2846,1 2847,1 2848,1 2849,1 2850,1 2851,1 2852,1 2853,1 2854,1 2855,1 2856,1 2857,1 2858,1 2859,1 2860,1 2861,1 2862,1 2863,1 2864,1 2865,1 2866,1 2867,1 2868,1 2869,1 2870,1 2871,1 2872,1 2873,1 2874,1 2875,1 2876,1 2877,1 2878,1 2879,1 2880,1 2881,1 2882,1 2883,1 2884,1 2885,1 2886,1 2887,1 2888,1 2889,1 2890,1 2891,1 2892,1 2893,1 2894,1 2895,1 2896,1 2897,1 2898,1 2899,1 2900,1 2901,1 2902,1 2903,1 2904,1 2905,1 2906,1 2907,1 2908,1 2909,1 2910,1 2911,1 2912,1 2913,1 2914,1 2915,1 2916,1 2917,1 2918,1 2919,1 2920,1 2921,1 2922,1 2923,1 2924,1 2925,1 2926,1 2927,1 2928,1 2929,1 2930,1 2931,1 2932,1 2933,1 2934,1 2935,1 2936,1 2937,1 2938,1 2939,1 2940,1 2941,1 2942,1 2943,1 2944,1 2945,1 2946,1 2947,1 2948,1 2949,1 2950,1 2951,1 2952,1 2953,1 2954,1 2955,1 2956,1 2957,1 2958,1 2959,1 2960,1 2961,1 2962,1 2963,1 2964,1 2965,1 2966,1 2967,1 2968,1 2969,1 2970,1 2971,1 2972,1 2973,1 2974,1 2975,1 2976,1 2977,1 2978,1 2979,1 2980,1 2981,1 2982,1 2983,1 2984,1 2985,1 2986,1 2987,1 2988,1 2989,1 2990,1 2991,1 2992,1 2993,1 2994,1 2995,1 2996,1 2997,1 2998,1 2999,1 3000,1 3001,1 3002,1 3003,1 3004,1 3005,1 3006,1 3007,1 3008,1 3009,1 3010,1 3011,1 3012,1 3013,1 3014,1 3015,1 3016,1 3017,1 3018,1 3019,1 3020,1 3021,1 3022,1 3023,1 3024,1 3025,1 3026,1 3027,1 3028,1 3029,1 3030,1 3031,1 3032,1 3033,1 3034,1 3035,1 3036,1 3037,1 3038,1 3039,1 3040,1 3041,1 3042,1 3043,1 3044,1 3045,1 3046,1 3047,1 3048,1 3049,1 3050,1 3051,1 3052,1 3053,1 3054,1 3055,1 3056,1 3057,1 3058,1 3059,1 3060,1 3061,1 3062,1 3063,1 3064,1 3065,1 3066,1 3067,1 3068,1 3069,1 3070,1 3071,1 3072,1 3073,1 3074,1 3075,1 3076,1 3077,1 3078,1 3079,1 3080,1 3081,1 3082,1 3083,1 3084,1 3085,1 3086,1 3087,1 3088,1 3089,1 3090,1 3091,1 3092,1 3093,1 3094,1 3095,1 3096,1 3097,1 3098,1 3099,1 3100,1 3101,1 3102,1 3103,1 3104,1 3105,1 3106,1 3107,1 3108,1 3109,1 3110,1 3111,1 3112,1 3113,1 3114,1 3115,1 3116,1 3117,1 3118,1 3119,1 3120,1 3121,1 3122,1 3123,1 3124,1 3125,1 3126,1 3127,1 3128,1 3129,1 3130,1 3131,1 3132,1 3133,1 3134,1 3135,1 3136,1 3137,1 3138,1 3139,1 3140,1 3141,1 3142,1 3143,1 3144,1 3145,1 3146,1 3147,1 3148,1 3149,1 3150,1 3151,1 3152,1 3153,1 3154,1 3155,1 3156,1 3157,1 3158,1 3159,1 3160,1 3161,1 3162,1 3163,1 3164,1 3165,1 3166,1 3167,1 3168,1 3169,1 3170,1 3171,1 3172,1 3173,1 3174,1 3175,1 3176,1 3177,1 3178,1 3179,1 3180,1 3181,1 3182,1 3183,1 3184,1 3185,1 3186,1 3187,1 3188,1 3189,1 3190,1 3191,1 3192,1 3193,1 3194,1 3195,1 3196,1 3197,1 3198,1 3199,1 3200,1 3201,1 3202,1 3203,1 3204,1 3205,1 3206,1 3207,1 3208,1 3209,1 3210,1 3211,1 3212,1 3213,1 3214,1 3215,1 3216,1 3217,1 3218,1 3219,1 3220,1 3221,1 3222,1 3223,1 3224,1 3225,1 3226,1 3227,1 3228,1 3229,1 3230,1 3231,1 3232,1 3233,1 3234,1 3235,1 3236,1 3237,1 3238,1 3239,1 3240,1 3241,1 3242,1 3243,1 3244,1 3245,1 3246,1 3247,1 3248,1 3249,1 3250,1 3251,1 3252,1 3253,1 3254,1 3255,1 3256,1 3257,1 3258,1 3259,1 3260,1 3261,1 3262,1 3263,1 3264,1 3265,1 3266,1 3267,1 3268,1 3269,1 3270,1 3271,1 3272,1 3273,1 3274,1 3275,1 3276,1 3277,1 3278,1 3279,1 3280,1 3281,1 3282,1 3283,1 3284,1 3285,1 3286,1 3287,1 3288,1 3289,1 3290,1 3291,1 3292,1 3293,1 3294,1 3295,1 3296,1 3297,1 3298,1 3299,1 3300,1 3301,1 3302,1 3303,1 3304,1 3305,1 3306,1 3307,1 3308,1 3309,1 3310,1 3311,1 3312,1 3313,1 3314,1 3315,1 3316,1 3317,1 3318,1 3319,1 3320,1 3321,1 3322,1 3323,1 3324,1 3325,1 3326,1 3327,1 3328,1 3329,1 3330,1 3331,1 3332,1 3333,1 3334,1 3335,1 3336,1 3337,1 3338,1 3339,1 3340,1 3341,1 3342,1 3343,1 3344,1 3345,1 3346,1 3347,1 3348,1 3349,1 3350,1 3351,1 3352,1 3353,1 3354,1 3355,1 3356,1 3357,1 3358,1 3359,1 3360,1 3361,1 3362,1 3363,1 3364,1 3365,1 3366,1 3367,1 3368,1 3369,1 3370,1 3371,1 3372,1 3373,1 3374,1 3375,1 3376,1 3377,1 3378,1 3379,1 3380,1 3381,1 3382,1 3383,1 3384,1 3385,1 3386,1 3387,1 3388,1 3389,1 3390,1 3391,1 3392,1 3393,1 3394,1 3395,1 3396,1 3397,1 3398,1 3399,1 3400,1 3401,1 3402,1 3403,1 3404,1 3405,1 3406,1 3407,1 3408,1 3409,1 3410,1 3411,1 3412,1 3413,1 3414,1 3415,1 3416,1 3417,1 3418,1 3419,1 3420,1 3421,1 3422,1 3423,1 3424,1 3425,1 3426,1 3427,1 3428,1 3429,1 3430,1 3431,1 3432,1 3433,1 3434,1 3435,1 3436,1 3437,1 3438,1 3439,1 3440,1 3441,1 3442,1 3443,1 3444,1 3445,1 3446,1 3447,1 3448,1 3449,1 3450,1 3451,1 3452,1 3453,1 3454,1 3455,1 3456,1 3457,1 3458,1 3459,1 3460,1 3461,1 3462,1 3463,1 3464,1 3465,1 3466,1 3467,1 3468,1 3469,1 3470,1 3471,1 3472,1 3473,1 3474,1 3475,1 3476,1 3477,1 3478,1 3479,1 3480,1 3481,1 3482,1 3483,1 3484,1 3485,1 3486,1 3487,1 3488,1 3489,1 3490,1 3491,1 3492,1 3493,1 3494,1 3495,1 3496,1 3497,1 3498,1 3499,1 3500,1 3501,1 3502,1 3503,1 3504,1 3505,1 3506,1 3507,1 3508,1 3509,1 3510,1 3511,1 3512,1 3513,1 3514,1 3515,1 3516,1 3517,1 3518,1 3519,1 3520,1 3521,1 3522,1 3523,1 3524,1 3525,1 3526,1 3527,1 3528,1 3529,1 3530,1 3531,1 3532,1 3533,1 3534,1 3535,1 3536,1 3537,1 3538,1 3539,1 3540,1 3541,1 3542,1 3543,1 3544,1 3545,1 3546,1 3547,1 3548,1 3549,1 3550,1 3551,1 3552,1 3553,1 3554,1 3555,1 3556,1 3557,1 3558,1 3559,1 3560,1 3561,1 3562,1 3563,1 3564,1 3565,1 3566,1 3567,1 3568,1 3569,1 3570,1 3571,1 3572,1 3573,1 3574,1 3575,1 3576,1 3577,1 3578,1 3579,1 3580,1 3581,1 3582,1 3583,1 3584,1 3585,1 3586,1 3587,1 3588,1 3589,1 3590,1 3591,1 3592,1 3593,1 3594,1 3595,1 3596,1 3597,1 3598,1 3599,1 3600,1 3601,1 3602,1 3603,1 3604,1 3605,1 3606,1 3607,1 3608,1 3609,1 3610,1 3611,1 3612,1 3613,1 3614,1 3615,1 3616,1 3617,1 3618,1 3619,1 3620,1 3621,1 3622,1 3623,1 3624,1 3625,1 3626,1 3627,1 3628,1 3629,1 3630,1 3631,1 3632,1 3633,1 3634,1 3635,1 3636,1 3637,1 3638,1 3639,1 3640,1 3641,1 3642,1 3643,1 3644,1 3645,1 3646,1 3647,1 3648,1 3649,1 3650,1 3651,1 3652,1 3653,1 3654,1 3655,1 3656,1 3657,1 3658,1 3659,1 3660,1 3661,1 3662,1 3663,1 3664,1 3665,1 3666,1 3667,1 3668,1 3669,1 3670,1 3671,1 3672,1 3673,1 3674,1 3675,1 3676,1 3677,1 3678,1 3679,1 3680,1 3681,1 3682,1 3683,1 3684,1 3685,1 3686,1 3687,1 3688,1 3689,1 3690,1 3691,1 3692,1 3693,1 3694,1 3695,1 3696,1 3697,1 3698,1 3699,1 3700,1 3701,1 3702,1 3703,1 3704,1 3705,1 3706,1 3707,1 3708,1 3709,1 3710,1 3711,1 3712,1 3713,1 3714,1 3715,1 3716,1 3717,1 3718,1 3719,1 3720,1 3721,1 3722,1 3723,1 3724,1 3725,1 3726,1 3727,1 3728,1 3729,1 3730,1 3731,1 3732,1 3733,1 3734,1 3735,1 3736,1 3737,1 3738,1 3739,1 3740,1 3741,1 3742,1 3743,1 3744,1 3745,1 3746,1 3747,1 3748,1 3749,1 3750,1 3751,1 3752,1 3753,1 3754,1 3755,1 3756,1 3757,1 3758,1 3759,1 3760,1 3761,1 3762,1 3763,1 3764,1 3765,1 3766,1 3767,1 3768,1 3769,1 3770,1 3771,1 3772,1 3773,1 3774,1 3775,1 3776,1 3777,1 3778,1 3779,1 3780,1 3781,1 3782,1 3783,1 3784,1 3785,1 3786,1 3787,1 3788,1 3789,1 3790,1 3791,1 3792,1 3793,1 3794,1 3795,1 3796,1 3797,1 3798,1 3799,1 3800,1 3801,1 3802,1 3803,1 3804,1 3805,1 3806,1 3807,1 3808,1 3809,1 3810,1 3811,1 3812,1 3813,1 3814,1 3815,1 3816,1 3817,1 3818,1 3819,1 3820,1 3821,1 3822,1 3823,1 3824,1 3825,1 3826,1 3827,1 3828,1 3829,1 3830,1 3831,1 3832,1 3833,1 3834,1 3835,1 3836,1 3837,1 3838,1 3839,1 3840,1 3841,1 3842,1 3843,1 3844,1 3845,1 3846,1 3847,1 3848,1 3849,1 3850,1 3851,1 3852,1 3853,1 3854,1 3855,1 3856,1 3857,1 3858,1 3859,1 3860,1 3861,1 3862,1 3863,1 3864,1 3865,1 3866,1 3867,1 3868,1 3869,1 3870,1 3871,1 3872,1 3873,1 3874,1 3875,1 3876,1 3877,1 3878,1 3879,1 3880,1 3881,1 3882,1 3883,1 3884,1 3885,1 3886,1 3887,1 3888,1 3889,1 3890,1 3891,1 3892,1 3893,1 3894,1 3895,1 3896,1 3897,1 3898,1 3899,1 3900,1 3901,1 3902,1 3903,1 3904,1 3905,1 3906,1 3907,1 3908,1 3909,1 3910,1 3911,1 3912,1 3913,1 3914,1 3915,1 3916,1 3917,1 3918,1 3919,1 3920,1 3921,1 3922,1 3923,1 3924,1 3925,1 3926,1 3927,1 3928,1 3929,1 3930,1 3931,1 3932,1 3933,1 3934,1 3935,1 3936,1 3937,1 3938,1 3939,1 3940,1 3941,1 3942,1 3943,1 3944,1 3945,1 3946,1 3947,1 3948,1 3949,1 3950,1 3951,1 3952,1 3953,1 3954,1 3955,1 3956,1 3957,1 3958,1 3959,1 3960,1 3961,1 3962,1 3963,1 3964,1 3965,1 3966,1 3967,1 3968,1 3969,1 3970,1 3971,1 3972,1 3973,1 3974,1 3975,1 3976,1 3977,1 3978,1 3979,1 3980,1 3981,1 3982,1 3983,1 3984,1 3985,1 3986,1 3987,1 3988,1 3989,1 3990,1 3991,1 3992,1 3993,1 3994,1 3995,1 3996,1 3997,1 3998,1 3999,1 4000,1 4001,1 4002,1 4003,1 4004,1 4005,1 4006,1 4007,1 4008,1 4009,1 4010,1 4011,1 4012,1 4013,1 4014,1 4015,1 4016,1 4017,1 4018,1 4019,1 4020,1 4021,1 4022,1 4023,1 4024,1 4025,1 4026,1 4027,1 4028,1 4029,1 4030,1 4031,1 4032,1 4033,1 4034,1 4035,1 4036,1 4037,1 4038,1 4039,1 4040,1 4041,1 4042,1 4043,1 4044,1 4045,1 4046,1 4047,1 4048,1 4049,1 4050,1 4051,1 4052,1 4053,1 4054,1 4055,1 4056,1 4057,1 4058,1 4059,1 4060,1 4061,1 4062,1 4063,1 4064,1 4065,1 4066,1 4067,1 4068,1 4069,1 4070,1 4071,1 4072,1 4073,1 4074,1 4075,1 4076,1 4077,1 4078,1 4079,1 4080,1 4081,1 4082,1 4083,1 4084,1 4085,1 4086,1 4087,1 4088,1 4089,1 4090,1 4091,1 4092,1 4093,1 4094,1 4095,1 4096,1 4097,1 4098,1 4099,1 4100,1 4101,1 4102,1 4103,1 4104,1 4105,1 4106,1 4107,1 4108,1 4109,1 4110,1 4111,1 4112,1 4113,1 4114,1 4115,1 4116,1 4117,1 4118,1 4119,1 4120,1 4121,1 4122,1 4123,1 4124,1 4125,1 4126,1 4127,1 4128,1 4129,1 4130,1 4131,1 4132,1 4133,1 4134,1 4135,1 4136,1 4137,1 4138,1 4139,1 4140,1 4141,1 4142,1 4143,1 4144,1 4145,1 4146,1 4147,1 4148,1 4149,1 4150,1 4151,1 4152,1 4153,1 4154,1 4155,1 4156,1 4157,1 4158,1 4159,1 4160,1 4161,1 4162,1 4163,1 4164,1 4165,1 4166,1 4167,1 4168,1 4169,1 4170,1 4171,1 4172,1 4173,1 4174,1 4175,1 4176,1 4177,1 4178,1 4179,1 4180,1 4181,1 4182,1 4183,1 4184,1 4185,1 4186,1 4187,1 4188,1 4189,1 4190,1 4191,1 4192,1 4193,1 4194,1 4195,1 4196,1 4197,1 4198,1 4199,1 4200,1 4201,1 4202,1 4203,1 4204,1 4205,1 4206,1 4207,1 4208,1 4209,1 4210,1 4211,1 4212,1 4213,1 4214,1 4215,1 4216,1 4217,1 4218,1 4219,1 4220,1 4221,1 4222,1 4223,1 4224,1 4225,1 4226,1 4227,1 4228,1 4229,1 4230,1 4231,1 4232,1 4233,1 4234,1 4235,1 4236,1 4237,1 4238,1 4239,1 4240,1 4241,1 4242,1 4243,1 4244,1 4245,1 4246,1 4247,1 4248,1 4249,1 4250,1 4251,1 4252,1 4253,1 4254,1 4255,1 4256,1 4257,1 4258,1 4259,1 4260,1 4261,1 4262,1 4263,1 4264,1 4265,1 4266,1 4267,1 4268,1 4269,1 4270,1 4271,1 4272,1 4273,1 4274,1 4275,1 4276,1 4277,1 4278,1 4279,1 4280,1 4281,1 4282,1 4283,1 4284,1 4285,1 4286,1 4287,1 4288,1 4289,1 4290,1 4291,1 4292,1 4293,1 4294,1 4295,1 4296,1 4297,1 4298,1 4299,1 4300,1 4301,1 4302,1 4303,1 4304,1 4305,1 4306,1 4307,1 4308,1 4309,1 4310,1 4311,1 4312,1 4313,1 4314,1 4315,1 4316,1 4317,1 4318,1 4319,1 4320,1 4321,1 4322,1 4323,1 4324,1 4325,1 4326,1 4327,1 4328,1 4329,1 4330,1 4331,1 4332,1 4333,1 4334,1 4335,1 4336,1 4337,1 4338,1 4339,1 4340,1 4341,1 4342,1 4343,1 4344,1 4345,1 4346,1 4347,1 4348,1 4349,1 4350,1 4351,1 4352,1 4353,1 4354,1 4355,1 4356,1 4357,1 4358,1 4359,1 4360,1 4361,1 4362,1 4363,1 4364,1 4365,1 4366,1 4367,1 4368,1 4369,1 4370,1 4371,1 4372,1 4373,1 4374,1 4375,1 4376,1 4377,1 4378,1 4379,1 4380,1 4381,1 4382,1 4383,1 4384,1 4385,1 4386,1 4387,1 4388,1 4389,1 4390,1 4391,1 4392,1 4393,1 4394,1 4395,1 4396,1 4397,1 4398,1 4399,1 4400,1 4401,1 4402,1 4403,1 4404,1 4405,1 4406,1 4407,1 4408,1 4409,1 4410,1 4411,1 4412,1 4413,1 4414,1 4415,1 4416,1 4417,1 4418,1 4419,1 4420,1 4421,1 4422,1 4423,1 4424,1 4425,1 4426,1 4427,1 4428,1 4429,1 4430,1 4431,1 4432,1 4433,1 4434,1 4435,1 4436,1 4437,1 4438,1 4439,1 4440,1 4441,1 4442,1 4443,1 4444,1 4445,1 4446,1 4447,1 4448,1 4449,1 4450,1 4451,1 4452,1 4453,1 4454,1 4455,1 4456,1 4457,1 4458,1 4459,1 4460,1 4461,1 4462,1 4463,1 4464,1 4465,1 4466,1 4467,1 4468,1 4469,1 4470,1 4471,1 4472,1 4473,1 4474,1 4475,1 4476,1 4477,1 4478,1 4479,1 4480,1 4481,1 4482,1 4483,1 4484,1 4485,1 4486,1 4487,1 4488,1 4489,1 4490,1 4491,1 4492,1 4493,1 4494,1 4495,1 4496,1 4497,1 4498,1 4499,1 4500,1 4501,1 4502,1 4503,1 4504,1 4505,1 4506,1 4507,1 4508,1 4509,1 4510,1 4511,1 4512,1 4513,1 4514,1 4515,1 4516,1 4517,1 4518,1 4519,1 4520,1 4521,1 4522,1 4523,1 4524,1 4525,1 4526,1 4527,1 4528,1 4529,1 4530,1 4531,1 4532,1 4533,1 4534,1 4535,1 4536,1 4537,1 4538,1 4539,1 4540,1 4541,1 4542,1 4543,1 4544,1 4545,1 4546,1 4547,1 4548,1 4549,1 4550,1 4551,1 4552,1 4553,1 4554,1 4555,1 4556,1 4557,1 4558,1 4559,1 4560,1 4561,1 4562,1 4563,1 4564,1 4565,1 4566,1 4567,1 4568,1 4569,1 4570,1 4571,1 4572,1 4573,1 4574,1 4575,1 4576,1 4577,1 4578,1 4579,1 4580,1 4581,1 4582,1 4583,1 4584,1 4585,1 4586,1 4587,1 4588,1 4589,1 4590,1 4591,1 4592,1 4593,1 4594,1 4595,1 4596,1 4597,1 4598,1 4599,1 4600,1 4601,1 4602,1 4603,1 4604,1 4605,1 4606,1 4607,1 4608,1 4609,1 4610,1 4611,1 4612,1 4613,1 4614,1 4615,1 4616,1 4617,1 4618,1 4619,1 4620,1 4621,1 4622,1 4623,1 4624,1 4625,1 4626,1 4627,1 4628,1 4629,1 4630,1 4631,1 4632,1 4633,1 4634,1 4635,1 4636,1 4637,1 4638,1 4639,1 4640,1 4641,1 4642,1 4643,1 4644,1 4645,1 4646,1 4647,1 4648,1 4649,1 4650,1 4651,1 4652,1 4653,1 4654,1 4655,1 4656,1 4657,1 4658,1 4659,1 4660,1 4661,1 4662,1 4663,1 4664,1 4665,1 4666,1 4667,1 4668,1 4669,1 4670,1 4671,1 4672,1 4673,1 4674,1 4675,1 4676,1 4677,1 4678,1 4679,1 4680,1 4681,1 4682,1 4683,1 4684,1 4685,1 4686,1 4687,1 4688,1 4689,1 4690,1 4691,1 4692,1 4693,1 4694,1 4695,1 4696,1 4697,1 4698,1 4699,1 4700,1 4701,1 4702,1 4703,1 4704,1 4705,1 4706,1 4707,1 4708,1 4709,1 4710,1 4711,1 4712,1 4713,1 4714,1 4715,1 4716,1 4717,1 4718,1 4719,1 4720,1 4721,1 4722,1 4723,1 4724,1 4725,1 4726,1 4727,1 4728,1 4729,1 4730,1 4731,1 4732,1 4733,1 4734,1 4735,1 4736,1 4737,1 4738,1 4739,1 4740,1 4741,1 4742,1 4743,1 4744,1 4745,1 4746,1 4747,1 4748,1 4749,1 4750,1 4751,1 4752,1 4753,1 4754,1 4755,1 4756,1 4757,1 4758,1 4759,1 4760,1 4761,1 4762,1 4763,1 4764,1 4765,1 4766,1 4767,1 4768,1 4769,1 4770,1 4771,1 4772,1 4773,1 4774,1 4775,1 4776,1 4777,1 4778,1 4779,1 4780,1 4781,1 4782,1 4783,1 4784,1 4785,1 4786,1 4787,1 4788,1 4789,1 4790,1 4791,1 4792,1 4793,1 4794,1 4795,1 4796,1 4797,1 4798,1 4799,1 4800,1 4801,1 4802,1 4803,1 4804,1 4805,1 4806,1 4807,1 4808,1 4809,1 4810,1 4811,1 4812,1 4813,1 4814,1 4815,1 4816,1 4817,1 4818,1 4819,1 4820,1 4821,1 4822,1 4823,1 4824,1 4825,1 4826,1 4827,1 4828,1 4829,1 4830,1 4831,1 4832,1 4833,1 4834,1 4835,1 4836,1 4837,1 4838,1 4839,1 4840,1 4841,1 4842,1 4843,1 4844,1 4845,1 4846,1 4847,1 4848,1 4849,1 4850,1 4851,1 4852,1 4853,1 4854,1 4855,1 4856,1 4857,1 4858,1 4859,1 4860,1 4861,1 4862,1 4863,1 4864,1 4865,1 4866,1 4867,1 4868,1 4869,1 4870,1 4871,1 4872,1 4873,1 4874,1 4875,1 4876,1 4877,1 4878,1 4879,1 4880,1 4881,1 4882,1 4883,1 4884,1 4885,1 4886,1 4887,1 4888,1 4889,1 4890,1 4891,1 4892,1 4893,1 4894,1 4895,1 4896,1 4897,1 4898,1 4899,1 4900,1 4901,1 4902,1 4903,1 4904,1 4905,1 4906,1 4907,1 4908,1 4909,1 4910,1 4911,1 4912,1 4913,1 4914,1 4915,1 4916,1 4917,1 4918,1 4919,1 4920,1 4921,1 4922,1 4923,1 4924,1 4925,1 4926,1 4927,1 4928,1 4929,1 4930,1 4931,1 4932,1 4933,1 4934,1 4935,1 4936,1 4937,1 4938,1 4939,1 4940,1 4941,1 4942,1 4943,1 4944,1 4945,1 4946,1 4947,1 4948,1 4949,1 4950,1 4951,1 4952,1 4953,1 4954,1 4955,1 4956,1 4957,1 4958,1 4959,1 4960,1 4961,1 4962,1 4963,1 4964,1 4965,1 4966,1 4967,1 4968,1 4969,1 4970,1 4971,1 4972,1 4973,1 4974,1 4975,1 4976,1 4977,1 4978,1 4979,1 4980,1 4981,1 4982,1 4983,1 4984,1 4985,1 4986,1 4987,1 4988,1 4989,1 4990,1 4991,1 4992,1 4993,1 4994,1 4995,1 4996,1 4997,1 4998,1 4999,1 5000,1 5001,1 5002,1 5003,1 5004,1 5005,1 5006,1 5007,1 5008,1 5009,1 5010,1 5011,1 5012,1 5013,1 5014,1 5015,1 5016,1 5017,1 5018,1 5019,1 5020,1 5021,1 5022,1 5023,1 5024,1 5025,1 5026,1 5027,1 5028,1 5029,1 5030,1 5031,1 5032,1 5033,1 5034,1 5035,1 5036,1 5037,1 5038,1 5039,1 5040,1 5041,1 5042,1 5043,1 5044,1 5045,1 5046,1 5047,1 5048,1 5049,1 5050,1 5051,1 5052,1 5053,1 5054,1 5055,1 5056,1 5057,1 5058,1 5059,1 5060,1 5061,1 5062,1 5063,1 5064,1 5065,1 5066,1 5067,1 5068,1 5069,1 5070,1 5071,1 5072,1 5073,1 5074,1 5075,1 5076,1 5077,1 5078,1 5079,1 5080,1 5081,1 5082,1 5083,1 5084,1 5085,1 5086,1 5087,1 5088,1 5089,1 5090,1 5091,1 5092,1 5093,1 5094,1 5095,1 5096,1 5097,1 5098,1 5099,1 5100,1 5101,1 5102,1 5103,1 5104,1 5105,1 5106,1 5107,1 5108,1 5109,1 5110,1 5111,1 5112,1 5113,1 5114,1 5115,1 5116,1 5117,1 5118,1 5119,1 5120,1 5121,1 5122,1 5123,1 5124,1 5125,1 5126,1 5127,1 5128,1 5129,1 5130,1 5131,1 5132,1 5133,1 5134,1 5135,1 5136,1 5137,1 5138,1 5139,1 5140,1 5141,1 5142,1 5143,1 5144,1 5145,1 5146,1 5147,1 5148,1 5149,1 5150,1 5151,1 5152,1 5153,1 5154,1 5155,1 5156,1 5157,1 5158,1 5159,1 5160,1 5161,1 5162,1 5163,1 5164,1 5165,1 5166,1 5167,1 5168,1 5169,1 5170,1 5171,1 5172,1 5173,1 5174,1 5175,1 5176,1 5177,1 5178,1 5179,1 5180,1 5181,1 5182,1 5183,1 5184,1 5185,1 5186,1 5187,1 5188,1 5189,1 5190,1 5191,1 5192,1 5193,1 5194,1 5195,1 5196,1 5197,1 5198,1 5199,1 5200,1 5201,1 5202,1 5203,1 5204,1 5205,1 5206,1 5207,1 5208,1 5209,1 5210,1 5211,1 5212,1 5213,1 5214,1 5215,1 5216,1 5217,1 5218,1 5219,1 5220,1 5221,1 5222,1 5223,1 5224,1 5225,1 5226,1 5227,1 5228,1 5229,1 5230,1 5231,1 5232,1 5233,1 5234,1 5235,1 5236,1 5237,1 5238,1 5239,1 5240,1 5241,1 5242,1 5243,1 5244,1 5245,1 5246,1 5247,1 5248,1 5249,1 5250,1 5251,1 5252,1 5253,1 5254,1 5255,1 5256,1 5257,1 5258,1 5259,1 5260,1 5261,1 5262,1 5263,1 5264,1 5265,1 5266,1 5267,1 5268,1 5269,1 5270,1 5271,1 5272,1 5273,1 5274,1 5275,1 5276,1 5277,1 5278,1 5279,1 5280,1 5281,1 5282,1 5283,1 5284,1 5285,1 5286,1 5287,1 5288,1 5289,1 5290,1 5291,1 5292,1 5293,1 5294,1 5295,1 5296,1 5297,1 5298,1 5299,1 5300,1 5301,1 5302,1 5303,1 5304,1 5305,1 5306,1 5307,1 5308,1 5309,1 5310,1 5311,1 5312,1 5313,1 5314,1 5315,1 5316,1 5317,1 5318,1 5319,1 5320,1 5321,1 5322,1 5323,1 5324,1 5325,1 5326,1 5327,1 5328,1 5329,1 5330,1 5331,1 5332,1 5333,1 5334,1 5335,1 5336,1 5337,1 5338,1 5339,1 5340,1 5341,1 5342,1 5343,1 5344,1 5345,1 5346,1 5347,1 5348,1 5349,1 5350,1 5351,1 5352,1 5353,1 5354,1 5355,1 5356,1 5357,1 5358,1 5359,1 5360,1 5361,1 5362,1 5363,1 5364,1 5365,1 5366,1 5367,1 5368,1 5369,1 5370,1 5371,1 5372,1 5373,1 5374,1 5375,1 5376,1 5377,1 5378,1 5379,1 5380,1 5381,1 5382,1 5383,1 5384,1 5385,1 5386,1 5387,1 5388,1 5389,1 5390,1 5391,1 5392,1 5393,1 5394,1 5395,1 5396,1 5397,1 5398,1 5399,1 5400,1 5401,1 5402,1 5403,1 5404,1 5405,1 5406,1 5407,1 5408,1 5409,1 5410,1 5411,1 5412,1 5413,1 5414,1 5415,1 5416,1 5417,1 5418,1 5419,1 5420,1 5421,1 5422,1 5423,1 5424,1 5425,1 5426,1 5427,1 5428,1 5429,1 5430,1 5431,1 5432,1 5433,1 5434,1 5435,1 5436,1 5437,1 5438,1 5439,1 5440,1 5441,1 5442,1 5443,1 5444,1 5445,1 5446,1 5447,1 5448,1 5449,1 5450,1 5451,1 5452,1 5453,1 5454,1 5455,1 5456,1 5457,1 5458,1 5459,1 5460,1 5461,1 5462,1 5463,1 5464,1 5465,1 5466,1 5467,1 5468,1 5469,1 5470,1 5471,1 5472,1 5473,1 5474,1 5475,1 5476,1 5477,1 5478,1 5479,1 5480,1 5481,1 5482,1 5483,1 5484,1 5485,1 5486,1 5487,1 5488,1 5489,1 5490,1 5491,1 5492,1 5493,1 5494,1 5495,1 5496,1 5497,1 5498,1 5499,1 5500,1 5501,1 5502,1 5503,1 5504,1 5505,1 5506,1 5507,1 5508,1 5509,1 5510,1 5511,1 5512,1 5513,1 5514,1 5515,1 5516,1 5517,1 5518,1 5519,1 5520,1 5521,1 5522,1 5523,1 5524,1 5525,1 5526,1 5527,1 5528,1 5529,1 5530,1 5531,1 5532,1 5533,1 5534,1 5535,1 5536,1 5537,1 5538,1 5539,1 5540,1 5541,1 5542,1 5543,1 5544,1 5545,1 5546,1 5547,1 5548,1 5549,1 5550,1 5551,1 5552,1 5553,1 5554,1 5555,1 5556,1 5557,1 5558,1 5559,1 5560,1 5561,1 5562,1 5563,1 5564,1 5565,1 5566,1 5567,1 5568,1 5569,1 5570,1 5571,1 5572,1 5573,1 5574,1 5575,1 5576,1 5577,1 5578,1 5579,1 5580,1 5581,1 5582,1 5583,1 5584,1 5585,1 5586,1 5587,1 5588,1 5589,1 5590,1 5591,1 5592,1 5593,1 5594,1 5595,1 5596,1 5597,1 5598,1 5599,1 5600,1 5601,1 5602,1 5603,1 5604,1 5605,1 5606,1 5607,1 5608,1 5609,1 5610,1 5611,1 5612,1 5613,1 5614,1 5615,1 5616,1 5617,1 5618,1 5619,1 5620,1 5621,1 5622,1 5623,1 5624,1 5625,1 5626,1 5627,1 5628,1 5629,1 5630,1 5631,1 5632,1 5633,1 5634,1 5635,1 5636,1 5637,1 5638,1 5639,1 5640,1 5641,1 5642,1 5643,1 5644,1 5645,1 5646,1 5647,1 5648,1 5649,1 5650,1 5651,1 5652,1 5653,1 5654,1 5655,1 5656,1 5657,1 5658,1 5659,1 5660,1 5661,1 5662,1 5663,1 5664,1 5665,1 5666,1 5667,1 5668,1 5669,1 5670,1 5671,1 5672,1 5673,1 5674,1 5675,1 5676,1 5677,1 5678,1 5679,1 5680,1 5681,1 5682,1 5683,1 5684,1 5685,1 5686,1 5687,1 5688,1 5689,1 5690,1 5691,1 5692,1 5693,1 5694,1 5695,1 5696,1 5697,1 5698,1 5699,1 5700,1 5701,1 5702,1 5703,1 5704,1 5705,1 5706,1 5707,1 5708,1 5709,1 5710,1 5711,1 5712,1 5713,1 5714,1 5715,1 5716,1 5717,1 5718,1 5719,1 5720,1 5721,1 5722,1 5723,1 5724,1 5725,1 5726,1 5727,1 5728,1 5729,1 5730,1 5731,1 5732,1 5733,1 5734,1 5735,1 5736,1 5737,1 5738,1 5739,1 5740,1 5741,1 5742,1 5743,1 5744,1 5745,1 5746,1 5747,1 5748,1 5749,1 5750,1 5751,1 5752,1 5753,1 5754,1 5755,1 5756,1 5757,1 5758,1 5759,1 5760,1 5761,1 5762,1 5763,1 5764,1 5765,1 5766,1 5767,1 5768,1 5769,1 5770,1 5771,1 5772,1 5773,1 5774,1 5775,1 5776,1 5777,1 5778,1 5779,1 5780,1 5781,1 5782,1 5783,1 5784,1 5785,1 5786,1 5787,1 5788,1 5789,1 5790,1 5791,1 5792,1 5793,1 5794,1 5795,1 5796,1 5797,1 5798,1 5799,1 5800,1 5801,1 5802,1 5803,1 5804,1 5805,1 5806,1 5807,1 5808,1 5809,1 5810,1 5811,1 5812,1 5813,1 5814,1 5815,1 5816,1 5817,1 5818,1 5819,1 5820,1 5821,1 5822,1 5823,1 5824,1 5825,1 5826,1 5827,1 5828,1 5829,1 5830,1 5831,1 5832,1 5833,1 5834,1 5835,1 5836,1 5837,1 5838,1 5839,1 5840,1 5841,1 5842,1 5843,1 5844,1 5845,1 5846,1 5847,1 5848,1 5849,1 5850,1 5851,1 5852,1 5853,1 5854,1 5855,1 5856,1 5857,1 5858,1 5859,1 5860,1 5861,1 5862,1 5863,1 5864,1 5865,1 5866,1 5867,1 5868,1 5869,1 5870,1 5871,1 5872,1 5873,1 5874,1 5875,1 5876,1 5877,1 5878,1 5879,1 5880,1 5881,1 5882,1 5883,1 5884,1 5885,1 5886,1 5887,1 5888,1 5889,1 5890,1 5891,1 5892,1 5893,1 5894,1 5895,1 5896,1 5897,1 5898,1 5899,1 5900,1 5901,1 5902,1 5903,1 5904,1 5905,1 5906,1 5907,1 5908,1 5909,1 5910,1 5911,1 5912,1 5913,1 5914,1 5915,1 5916,1 5917,1 5918,1 5919,1 5920,1 5921,1 5922,1 5923,1 5924,1 5925,1 5926,1 5927,1 5928,1 5929,1 5930,1 5931,1 5932,1 5933,1 5934,1 5935,1 5936,1 5937,1 5938,1 5939,1 5940,1 5941,1 5942,1 5943,1 5944,1 5945,1 5946,1 5947,1 5948,1 5949,1 5950,1 5951,1 5952,1 5953,1 5954,1 5955,1 5956,1 5957,1 5958,1 5959,1 5960,1 5961,1 5962,1 5963,1 5964,1 5965,1 5966,1 5967,1 5968,1 5969,1 5970,1 5971,1 5972,1 5973,1 5974,1 5975,1 5976,1 5977,1 5978,1 5979,1 5980,1 5981,1 5982,1 5983,1 5984,1 5985,1 5986,1 5987,1 5988,1 5989,1 5990,1 5991,1 5992,1 5993,1 5994,1 5995,1 5996,1 5997,1 5998,1 5999,1 6000,1 6001,1 6002,1 6003,1 6004,1 6005,1 6006,1 6007,1 6008,1 6009,1 6010,1 6011,1 6012,1 6013,1 6014,1 6015,1 6016,1 6017,1 6018,1 6019,1 6020,1 6021,1 6022,1 6023,1 6024,1 6025,1 6026,1 6027,1 6028,1 6029,1 6030,1 6031,1 6032,1 6033,1 6034,1 6035,1 6036,1 6037,1 6038,1 6039,1 6040,1 6041,1 6042,1 6043,1 6044,1 6045,1 6046,1 6047,1 6048,1 6049,1 6050,1 6051,1 6052,1 6053,1 6054,1 6055,1 6056,1 6057,1 6058,1 6059,1 6060,1 6061,1 6062,1 6063,1 6064,1 6065,1 6066,1 6067,1 6068,1 6069,1 6070,1 6071,1 6072,1 6073,1 6074,1 6075,1 6076,1 6077,1 6078,1 6079,1 6080,1 6081,1 6082,1 6083,1 6084,1 6085,1 6086,1 6087,1 6088,1 6089,1 6090,1 6091,1 6092,1 6093,1 6094,1 6095,1 6096,1 6097,1 6098,1 6099,1 6100,1 6101,1 6102,1 6103,1 6104,1 6105,1 6106,1 6107,1 6108,1 6109,1 6110,1 6111,1 6112,1 6113,1 6114,1 6115,1 6116,1 6117,1 6118,1 6119,1 6120,1 6121,1 6122,1 6123,1 6124,1 6125,1 6126,1 6127,1 6128,1 6129,1 6130,1 6131,1 6132,1 6133,1 6134,1 6135,1 6136,1 6137,1 6138,1 6139,1 6140,1 6141,1 6142,1 6143,1 6144,1 6145,1 6146,1 6147,1 6148,1 6149,1 6150,1 6151,1 6152,1 6153,1 6154,1 6155,1 6156,1 6157,1 6158,1 6159,1 6160,1 6161,1 6162,1 6163,1 6164,1 6165,1 6166,1 6167,1 6168,1 6169,1 6170,1 6171,1 6172,1 6173,1 6174,1 6175,1 6176,1 6177,1 6178,1 6179,1 6180,1 6181,1 6182,1 6183,1 6184,1 6185,1 6186,1 6187,1 6188,1 6189,1 6190,1 6191,1 6192,1 6193,1 6194,1 6195,1 6196,1 6197,1 6198,1 6199,1 6200,1 6201,1 6202,1 6203,1 6204,1 6205,1 6206,1 6207,1 6208,1 6209,1 6210,1 6211,1 6212,1 6213,1 6214,1 6215,1 6216,1 6217,1 6218,1 6219,1 6220,1 6221,1 6222,1 6223,1 6224,1 6225,1 6226,1 6227,1 6228,1 6229,1 6230,1 6231,1 6232,1 6233,1 6234,1 6235,1 6236,1 6237,1 6238,1 6239,1 6240,1 6241,1 6242,1 6243,1 6244,1 6245,1 6246,1 6247,1 6248,1 6249,1 6250,1 6251,1 6252,1 6253,1 6254,1 6255,1 6256,1 6257,1 6258,1 6259,1 6260,1 6261,1 6262,1 6263,1 6264,1 6265,1 6266,1 6267,1 6268,1 6269,1 6270,1 6271,1 6272,1 6273,1 6274,1 6275,1 6276,1 6277,1 6278,1 6279,1 6280,1 6281,1 6282,1 6283,1 6284,1 6285,1 6286,1 6287,1 6288,1 6289,1 6290,1 6291,1 6292,1 6293,1 6294,1 6295,1 6296,1 6297,1 6298,1 6299,1 6300,1 6301,1 6302,1 6303,1 6304,1 6305,1 6306,1 6307,1 6308,1 6309,1 6310,1 6311,1 6312,1 6313,1 6314,1 6315,1 6316,1 6317,1 6318,1 6319,1 6320,1 6321,1 6322,1 6323,1 6324,1 6325,1 6326,1 6327,1 6328,1 6329,1 6330,1 6331,1 6332,1 6333,1 6334,1 6335,1 6336,1 6337,1 6338,1 6339,1 6340,1 6341,1 6342,1 6343,1 6344,1 6345,1 6346,1 6347,1 6348,1 6349,1 6350,1 6351,1 6352,1 6353,1 6354,1 6355,1 6356,1 6357,1 6358,1 6359,1 6360,1 6361,1 6362,1 6363,1 6364,1 6365,1 6366,1 6367,1 6368,1 6369,1 6370,1 6371,1 6372,1 6373,1 6374,1 6375,1 6376,1 6377,1 6378,1 6379,1 6380,1 6381,1 6382,1 6383,1 6384,1 6385,1 6386,1 6387,1 6388,1 6389,1 6390,1 6391,1 6392,1 6393,1 6394,1 6395,1 6396,1 6397,1 6398,1 6399,1 6400,1 6401,1 6402,1 6403,1 6404,1 6405,1 6406,1 6407,1 6408,1 6409,1 6410,1 6411,1 6412,1 6413,1 6414,1 6415,1 6416,1 6417,1 6418,1 6419,1 6420,1 6421,1 6422,1 6423,1 6424,1 6425,1 6426,1 6427,1 6428,1 6429,1 6430,1 6431,1 6432,1 6433,1 6434,1 6435,1 6436,1 6437,1 6438,1 6439,1 6440,1 6441,1 6442,1 6443,1 6444,1 6445,1 6446,1 6447,1 6448,1 6449,1 6450,1 6451,1 6452,1 6453,1 6454,1 6455,1 6456,1 6457,1 6458,1 6459,1 6460,1 6461,1 6462,1 6463,1 6464,1 6465,1 6466,1 6467,1 6468,1 6469,1 6470,1 6471,1 6472,1 6473,1 6474,1 6475,1 6476,1 6477,1 6478,1 6479,1 6480,1 6481,1 6482,1 6483,1 6484,1 6485,1 6486,1 6487,1 6488,1 6489,1 6490,1 6491,1 6492,1 6493,1 6494,1 6495,1 6496,1 6497,1 6498,1 6499,1 6500,1 6501,1 6502,1 6503,1 6504,1 6505,1 6506,1 6507,1 6508,1 6509,1 6510,1 6511,1 6512,1 6513,1 6514,1 6515,1 6516,1 6517,1 6518,1 6519,1 6520,1 6521,1 6522,1 6523,1 6524,1 6525,1 6526,1 6527,1 6528,1 6529,1 6530,1 6531,1 6532,1 6533,1 6534,1 6535,1 6536,1 6537,1 6538,1 6539,1 6540,1 6541,1 6542,1 6543,1 6544,1 6545,1 6546,1 6547,1 6548,1 6549,1 6550,1 6551,1 6552,1 6553,1 6554,1 6555,1 6556,1 6557,1 6558,1 6559,1 6560,1 6561,1 6562,1 6563,1 6564,1 6565,1 6566,1 6567,1 6568,1 6569,1 6570,1 6571,1 6572,1 6573,1 6574,1 6575,1 6576,1 6577,1 6578,1 6579,1 6580,1 6581,1 6582,1 6583,1 6584,1 6585,1 6586,1 6587,1 6588,1 6589,1 6590,1 6591,1 6592,1 6593,1 6594,1 6595,1 6596,1 6597,1 6598,1 6599,1 6600,1 6601,1 6602,1 6603,1 6604,1 6605,1 6606,1 6607,1 6608,1 6609,1 6610,1 6611,1 6612,1 6613,1 6614,1 6615,1 6616,1 6617,1 6618,1 6619,1 6620,1 6621,1 6622,1 6623,1 6624,1 6625,1 6626,1 6627,1 6628,1 6629,1 6630,1 6631,1 6632,1 6633,1 6634,1 6635,1 6636,1 6637,1 6638,1 6639,1 6640,1 6641,1 6642,1 6643,1 6644,1 6645,1 6646,1 6647,1 6648,1 6649,1 6650,1 6651,1 6652,1 6653,1 6654,1 6655,1 6656,1 6657,1 6658,1 6659,1 6660,1 6661,1 6662,1 6663,1 6664,1 6665,1 6666,1 6667,1 6668,1 6669,1 6670,1 6671,1 6672,1 6673,1 6674,1 6675,1 6676,1 6677,1 6678,1 6679,1 6680,1 6681,1 6682,1 6683,1 6684,1 6685,1 6686,1 6687,1 6688,1 6689,1 6690,1 6691,1 6692,1 6693,1 6694,1 6695,1 6696,1 6697,1 6698,1 6699,1 6700,1 6701,1 6702,1 6703,1 6704,1 6705,1 6706,1 6707,1 6708,1 6709,1 6710,1 6711,1 6712,1 6713,1 6714,1 6715,1 6716,1 6717,1 6718,1 6719,1 6720,1 6721,1 6722,1 6723,1 6724,1 6725,1 6726,1 6727,1 6728,1 6729,1 6730,1 6731,1 6732,1 6733,1 6734,1 6735,1 6736,1 6737,1 6738,1 6739,1 6740,1 6741,1 6742,1 6743,1 6744,1 6745,1 6746,1 6747,1 6748,1 6749,1 6750,1 6751,1 6752,1 6753,1 6754,1 6755,1 6756,1 6757,1 6758,1 6759,1 6760,1 6761,1 6762,1 6763,1 6764,1 6765,1 6766,1 6767,1 6768,1 6769,1 6770,1 6771,1 6772,1 6773,1 6774,1 6775,1 6776,1 6777,1 6778,1 6779,1 6780,1 6781,1 6782,1 6783,1 6784,1 6785,1 6786,1 6787,1 6788,1 6789,1 6790,1 6791,1 6792,1 6793,1 6794,1 6795,1 6796,1 6797,1 6798,1 6799,1 6800,1 6801,1 6802,1 6803,1 6804,1 6805,1 6806,1 6807,1 6808,1 6809,1 6810,1 6811,1 6812,1 6813,1 6814,1 6815,1 6816,1 6817,1 6818,1 6819,1 6820,1 6821,1 6822,1 6823,1 6824,1 6825,1 6826,1 6827,1 6828,1 6829,1 6830,1 6831,1 6832,1 6833,1 6834,1 6835,1 6836,1 6837,1 6838,1 6839,1 6840,1 6841,1 6842,1 6843,1 6844,1 6845,1 6846,1 6847,1 6848,1 6849,1 6850,1 6851,1 6852,1 6853,1 6854,1 6855,1 6856,1 6857,1 6858,1 6859,1 6860,1 6861,1 6862,1 6863,1 6864,1 6865,1 6866,1 6867,1 6868,1 6869,1 6870,1 6871,1 6872,1 6873,1 6874,1 6875,1 6876,1 6877,1 6878,1 6879,1 6880,1 6881,1 6882,1 6883,1 6884,1 6885,1 6886,1 6887,1 6888,1 6889,1 6890,1 6891,1 6892,1 6893,1 6894,1 6895,1 6896,1 6897,1 6898,1 6899,1 6900,1 6901,1 6902,1 6903,1 6904,1 6905,1 6906,1 6907,1 6908,1 6909,1 6910,1 6911,1 6912,1 6913,1 6914,1 6915,1 6916,1 6917,1 6918,1 6919,1 6920,1 6921,1 6922,1 6923,1 6924,1 6925,1 6926,1 6927,1 6928,1 6929,1 6930,1 6931,1 6932,1 6933,1 6934,1 6935,1 6936,1 6937,1 6938,1 6939,1 6940,1 6941,1 6942,1 6943,1 6944,1 6945,1 6946,1 6947,1 6948,1 6949,1 6950,1 6951,1 6952,1 6953,1 6954,1 6955,1 6956,1 6957,1 6958,1 6959,1 6960,1 6961,1 6962,1 6963,1 6964,1 6965,1 6966,1 6967,1 6968,1 6969,1 6970,1 6971,1 6972,1 6973,1 6974,1 6975,1 6976,1 6977,1 6978,1 6979,1 6980,1 6981,1 6982,1 6983,1 6984,1 6985,1 6986,1 6987,1 6988,1 6989,1 6990,1 6991,1 6992,1 6993,1 6994,1 6995,1 6996,1 6997,1 6998,1 6999,1 7000,1 7001,1 7002,1 7003,1 7004,1 7005,1 7006,1 7007,1 7008,1 7009,1 7010,1 7011,1 7012,1 7013,1 7014,1 7015,1 7016,1 7017,1 7018,1 7019,1 7020,1 7021,1 7022,1 7023,1 7024,1 7025,1 7026,1 7027,1 7028,1 7029,1 7030,1 7031,1 7032,1 7033,1 7034,1 7035,1 7036,1 7037,1 7038,1 7039,1 7040,1 7041,1 7042,1 7043,1 7044,1 7045,1 7046,1 7047,1 7048,1 7049,1 7050,1 7051,1 7052,1 7053,1 7054,1 7055,1 7056,1 7057,1 7058,1 7059,1 7060,1 7061,1 7062,1 7063,1 7064,1 7065,1 7066,1 7067,1 7068,1 7069,1 7070,1 7071,1 7072,1 7073,1 7074,1 7075,1 7076,1 7077,1 7078,1 7079,1 7080,1 7081,1 7082,1 7083,1 7084,1 7085,1 7086,1 7087,1 7088,1 7089,1 7090,1 7091,1 7092,1 7093,1 7094,1 7095,1 7096,1 7097,1 7098,1 7099,1 7100,1 7101,1 7102,1 7103,1 7104,1 7105,1 7106,1 7107,1 7108,1 7109,1 7110,1 7111,1 7112,1 7113,1 7114,1 7115,1 7116,1 7117,1 7118,1 7119,1 7120,1 7121,1 7122,1 7123,1 7124,1 7125,1 7126,1 7127,1 7128,1 7129,1 7130,1 7131,1 7132,1 7133,1 7134,1 7135,1 7136,1 7137,1 7138,1 7139,1 7140,1 7141,1 7142,1 7143,1 7144,1 7145,1 7146,1 7147,1 7148,1 7149,1 7150,1 7151,1 7152,1 7153,1 7154,1 7155,1 7156,1 7157,1 7158,1 7159,1 7160,1 7161,1 7162,1 7163,1 7164,1 7165,1 7166,1 7167,1 7168,1 7169,1 7170,1 7171,1 7172,1 7173,1 7174,1 7175,1 7176,1 7177,1 7178,1 7179,1 7180,1 7181,1 7182,1 7183,1 7184,1 7185,1 7186,1 7187,1 7188,1 7189,1 7190,1 7191,1 7192,1 7193,1 7194,1 7195,1 7196,1 7197,1 7198,1 7199,1 7200,1 7201,1 7202,1 7203,1 7204,1 7205,1 7206,1 7207,1 7208,1 7209,1 7210,1 7211,1 7212,1 7213,1 7214,1 7215,1 7216,1 7217,1 7218,1 7219,1 7220,1 7221,1 7222,1 7223,1 7224,1 7225,1 7226,1 7227,1 7228,1 7229,1 7230,1 7231,1 7232,1 7233,1 7234,1 7235,1 7236,1 7237,1 7238,1 7239,1 7240,1 7241,1 7242,1 7243,1 7244,1 7245,1 7246,1 7247,1 7248,1 7249,1 7250,1 7251,1 7252,1 7253,1 7254,1 7255,1 7256,1 7257,1 7258,1 7259,1 7260,1 7261,1 7262,1 7263,1 7264,1 7265,1 7266,1 7267,1 7268,1 7269,1 7270,1 7271,1 7272,1 7273,1 7274,1 7275,1 7276,1 7277,1 7278,1 7279,1 7280,1 7281,1 7282,1 7283,1 7284,1 7285,1 7286,1 7287,1 7288,1 7289,1 7290,1 7291,1 7292,1 7293,1 7294,1 7295,1 7296,1 7297,1 7298,1 7299,1 7300,1 7301,1 7302,1 7303,1 7304,1 7305,1 7306,1 7307,1 7308,1 7309,1 7310,1 7311,1 7312,1 7313,1 7314,1 7315,1 7316,1 7317,1 7318,1 7319,1 7320,1 7321,1 7322,1 7323,1 7324,1 7325,1 7326,1 7327,1 7328,1 7329,1 7330,1 7331,1 7332,3 7333,3 7334,3 7335,3 7336,3 7337,3 7338,3 7339,3 7340,3 7341,3 7342,3 7343,3 7344,3 7345,3 7346,3 7347,3 7348,3 7349,3 7350,3 7351,3 7352,3 7353,3 7354,3 7355,3 7356,3 7357,3 7358,3 7359,3 7360,3 7361,3 7362,3 7363,3 7364,3 7365,3 7366,3 7367,3 7368,3 7369,3 7370,3 7371,3 7372,3 7373,3 7374,3 7375,3 7376,3 7377,3 7378,3 7379,3 7380,3 7381,3 7382,3 7383,3 7384,3 7385,3 7386,3 7387,3 7388,3 7389,3 7390,3 7391,3 7392,3 7393,3 7394,3 7395,3 7396,3 7397,3 7398,3 7399,3 7400,3 7401,3 7402,3 7403,3 7404,3 7405,3 7406,3 7407,3 7408,3 7409,3 7410,3 7411,3 7412,3 7413,3 7414,3 7415,3 7416,3 7417,3 7418,3 7419,3 7420,3 7421,3 7422,3 7423,3 7424,3 7425,3 7426,3 7427,3 7428,3 7429,3 7430,3 7431,3 7432,3 7433,3 7434,3 7435,3 7436,3 7437,3 7438,3 7439,3 7440,3 7441,3 7442,3 7443,3 7444,3 7445,1 7446,3 7447,3 7448,3 7449,3 7450,3 7451,3 7452,3 7453,3 7454,3 7455,3 7456,3 7457,3 7458,3 7459,3 7460,3 7461,3 7462,3 7463,3 7464,3 7465,3 7466,3 7467,3 7468,3 7469,3 7470,3 7471,3 7472,3 7473,3 7474,3 7475,3 7476,3 7477,3 7478,3 7479,3 7480,3 7481,3 7482,3 7483,3 7484,3 7485,3 7486,3 7487,3 7488,3 7489,3 7490,3 7491,3 7492,3 7493,3 7494,3 7495,3 7496,3 7497,3 7498,3 7499,3 7500,3 7501,3 7502,3 7503,3 7504,3 7505,3 7506,3 7507,3 7508,3 7509,3 7510,3 7511,3 7512,3 7513,3 7514,3 7515,3 7516,3 7517,3 7518,3 7519,3 7520,3 7521,3 7522,3 7523,3 7524,3 7525,3 7526,3 7527,3 7528,3 7529,3 7530,3 7531,3 7532,3 7533,3 7534,3 7535,3 7536,3 7537,3 7538,3 7539,3 7540,3 7541,3 7542,3 7543,3 7544,3 7545,3 7546,3 7547,3 7548,3 7549,3 7550,3 7551,3 7552,3 7553,3 7554,3 7555,3 7556,3 7557,3 7558,3 7559,3 7560,3 7561,3 7562,3 7563,3 7564,3 7565,3 7566,3 7567,3 7568,3 7569,3 7570,3 7571,3 7572,3 7573,3 7574,3 7575,3 7576,3 7577,3 7578,3 7579,3 7580,3 7581,3 7582,3 7583,3 7584,3 7585,3 7586,3 7587,3 7588,3 7589,3 7590,3 7591,3 7592,3 7593,1 7594,1 7595,1 7596,1 7597,3 7598,3 7599,3 7600,3 7601,3 7602,3 7603,3 7604,3 7605,3 7606,3 7607,3 7608,3 7609,3 7610,3 7611,3 7612,3 7613,3 7614,3 7615,3 7616,3 7617,3 7618,3 7619,3 7620,3 7621,3 7622,3 7623,3 7624,3 7625,3 7626,3 7627,3 7628,3 7629,3 7630,3 7631,3 7632,3 7633,3 7634,3 7635,3 7636,3 7637,3 7638,3 7639,3 7640,3 7641,3 7642,3 7643,3 7644,3 7645,3 7646,3 7647,3 7648,3 7649,3 7650,3 7651,3 7652,1 7653,3 7654,3 7655,3 7656,3 7657,3 7658,3 7659,3 7660,3 7661,3 7662,3 7663,3 7664,3 7665,3 7666,3 7667,3 7668,1 7669,1 7670,3 7671,3 7672,3 7673,3 7674,3 7675,3 7676,3 7677,3 7678,3 7679,3 7680,3 7681,3 7682,3 7683,3 7684,3 7685,3 7686,3 7687,3 7688,3 7689,3 7690,3 7691,3 7692,3 7693,3 7694,3 7695,3 7696,3 7697,3 7698,3 7699,1 7700,3 7701,3 7702,3 7703,3 7704,3 7705,3 7706,3 7707,3 7708,1 7709,1 7710,3 7711,3 7712,3 7713,3 7714,3 7715,3 7716,3 7717,3 7718,3 7719,3 7720,3 7721,3 7722,3 7723,3 7724,3 7725,1 7726,1 7727,3 7728,3 7729,3 7730,3 7731,3 7732,3 7733,3 7734,3 7735,3 7736,3 7737,3 7738,3 7739,3 7740,3 7741,3 7742,3 7743,3 7744,3 7745,3 7746,3 7747,3 7748,3 7749,3 7750,3 7751,3 7752,3 7753,3 7754,3 7755,3 7756,3 7757,3 7758,3 7759,3 7760,3 7761,3 7762,3 7763,3 7764,3 7765,3 7766,3 7767,3 7768,3 7769,3 7770,3 7771,3 7772,3 7773,3 7774,3 7775,3 7776,3 7777,3 7778,1 7779,1 7780,1 7781,1 7782,3 7783,3 7784,3 7785,3 7786,3 7787,3 7788,3 7789,3 7790,3 7791,3 7792,3 7793,3 7794,3 7795,3 7796,3 7797,3 7798,3 7799,3 7800,3 7801,3 7802,3 7803,3 7804,3 7805,3 7806,3 7807,3 7808,3 7809,3 7810,3 7811,3 7812,3 7813,3 7814,3 7815,3 7816,3 7817,3 7818,3 7819,3 7820,3 7821,3 7822,3 7823,3 7824,3 7825,3 7826,3 7827,3 7828,3 7829,3 7830,3 7831,3 7832,3 7833,3 7834,3 7835,3 7836,3 7837,3 7838,3 7839,3 7840,3 7841,3 7842,3 7843,3 7844,3 7845,3 7846,3 7847,3 7848,3 7849,3 7850,3 7851,3 7852,3 7853,3 7854,3 7855,3 7856,3 7857,3 7858,3 7859,3 7860,3 7861,3 7862,3 7863,3 7864,3 7865,1 7866,3 7867,3 7868,3 7869,3 7870,3 7871,3 7872,3 7873,3 7874,3 7875,3 7876,3 7877,3 7878,3 7879,3 7880,3 7881,3 7882,3 7883,3 7884,3 7885,3 7886,3 7887,3 7888,3 7889,3 7890,3 7891,3 7892,3 7893,3 7894,3 7895,3 7896,3 7897,3 7898,3 7899,3 7900,3 7901,3 7902,3 7903,3 7904,3 7905,3 7906,2 7907,2 7908,2 7909,2 7910,2 7911,2 7912,2 7913,2 7914,2 7915,2 7916,2 7917,2 7918,2 7919,2 7920,2 7921,2 7922,2 7923,2 7924,2 7925,2 7926,2 7927,2 7928,2 7929,2 7930,2 7931,2 7932,2 7933,2 7934,2 7935,2 7936,2 7937,2 7938,2 7939,2 7940,2 7941,2 7942,1 7943,2 7944,2 7945,2 7946,2 7947,2 7948,2 7949,2 7950,2 7951,2 7952,2 7953,2 7954,2 7955,2 7956,2 7957,2 7958,2 7959,2 7960,2 7961,2 7962,2 7963,2 7964,2 7965,2 7966,2 7967,2 7968,2 7969,2 7970,2 7971,2 7972,2 7973,2 7974,2 7975,2 7976,2 7977,2 7978,2 7979,2 7980,2 7981,2 7982,2 7983,2 7984,2 7985,2 7986,2 7987,2 7988,2 7989,2 7990,2 7991,2 7992,2 7993,2 7994,2 7995,2 7996,2 7997,2 7998,2 7999,2 8000,2 8001,2 8002,2 8003,2 8004,2 8005,2 8006,2 8007,2 8008,2 8009,2 8010,2 8011,2 8012,2 8013,2 8014,2 8015,2 8016,2 8017,2 8018,2 8019,2 8020,2 8021,2 8022,2 8023,2 8024,2 8025,2 8026,2 8027,2 8028,2 8029,2 8030,2 8031,1 8032,1 8033,1 8034,1 8035,2 8036,2 8037,2 8038,2 8039,2 8040,2 8041,2 8042,2 8043,2 8044,2 8045,2 8046,2 8047,2 8048,2 8049,2 8050,2 8051,2 8052,2 8053,2 8054,2 8055,2 8056,2 8057,2 8058,2 8059,2 8060,2 8061,2 8062,2 8063,2 8064,2 8065,2 8066,2 8067,2 8068,2 8069,2 8070,2 8071,2 8072,2 8073,2 8074,2 8075,2 8076,2 8077,2 8078,2 8079,2 8080,2 8081,2 8082,2 8083,2 8084,2 8085,2 8086,2 8087,2 8088,2 8089,2 8090,2 8091,1 8092,1 8093,2 8094,2 8095,2 8096,2 8097,2 8098,2 8099,2 8100,2 8101,2 8102,2 8103,2 8104,2 8105,2 8106,2 8107,1 8108,1 8109,2 8110,2 8111,2 8112,2 8113,2 8114,2 8115,2 8116,2 8117,2 8118,2 8119,2 8120,2 8121,2 8122,2 8123,2 8124,2 8125,2 8126,2 8127,2 8128,1 8129,2 8130,2 8131,2 8132,2 8133,2 8134,2 8135,2 8136,2 8137,2 8138,2 8139,2 8140,2 8141,2 8142,2 8143,2 8144,2 8145,2 8146,2 8147,2 8148,2 8149,2 8150,2 8151,2 8152,2 8153,2 8154,2 8155,2 8156,2 8157,2 8158,2 8159,2 8160,2 8161,2 8162,2 8163,2 8164,2 8165,2 8166,2 8167,2 8168,2 8169,2 8170,2 8171,2 8172,2 8173,2 8174,2 8175,2 8176,2 8177,2 8178,2 8179,2 8180,2 8181,2 8182,2 8183,2 8184,2 8185,2 8186,2 8187,2 8188,2 8189,2 8190,2 8191,2 8192,2 8193,2 8194,2 8195,2 8196,2 8197,2 8198,2 8199,2 8200,1 8201,1 8202,1 8203,2 8204,2 8205,2 8206,2 8207,2 8208,2 8209,2 8210,2 8211,2 8212,2 8213,2 8214,2 8215,2 8216,2 8217,2 8218,2 8219,2 8220,2 8221,2 8222,2 8223,2 8224,2 8225,2 8226,2 8227,2 8228,1 8229,2 8230,2 8231,2 8232,2 8233,2 8234,2 8235,2 8236,2 8237,2 8238,2 8239,2 8240,2 8241,2 8242,2 8243,2 8244,2 8245,2 8246,2 8247,2 8248,2 8249,2 8250,2 8251,2 8252,2 8253,2 8254,2 8255,2 8256,2 8257,2 8258,2 8259,2 8260,2 8261,2 8262,2 8263,2 8264,2 8265,2 8266,2 8267,2 8268,2 8269,2 8270,2 8271,2 8272,2 8273,2 8274,2 8275,2 8276,2 8277,2 8278,2 8279,2 8280,2 8281,2 8282,2 8283,2 8284,2 8285,2 8286,2 8287,2 8288,2 8289,2 8290,2 8291,2 8292,2 8293,2 8294,2 8295,2 8296,2 8297,2 8298,2 8299,2 8300,2 8301,2 8302,2 8303,2 8304,2 8305,2 8306,2 8307,2 8308,2 8309,2 8310,2 8311,2 8312,2 8313,2 8314,2 8315,2 8316,2 8317,2 8318,2 8319,2 8320,2 8321,2 8322,2 8323,2 8324,2 8325,2 8326,2 8327,2 8328,2 8329,2 8330,2 8331,2 8332,2 8333,2 8334,1 8335,2 8336,2 8337,2 8338,2 8339,2 8340,1 8341,1 8342,1 8343,2 8344,2 8345,2 8346,2 8347,2 8348,2 8349,2 8350,2 8351,2 8352,2 8353,2 8354,2 8355,2 8356,2 8357,2 8358,2 8359,2 8360,2 8361,2 8362,2 8363,2 8364,2 8365,2 8366,2 8367,2 8368,2 8369,2 8370,2 8371,2 8372,2 8373,2 8374,2 8375,2 8376,2 8377,2 8378,2 8379,2 8380,2 8381,2 8382,2 8383,2 8384,2 8385,2 8386,2 8387,2 8388,2 8389,2 8390,2 8391,2 8392,2 8393,2 8394,2 8395,2 8396,2 8397,2 8398,2 8399,2 8400,2 8401,2 8402,2 8403,2 8404,2 8405,2 8406,2 8407,2 8408,2 8409,2 8410,2 8411,2 8412,2 8413,2 8414,2 8415,2 8416,2 8417,2 8418,2 8419,2 8420,2 8421,2 8422,2 8423,2 8424,2 8425,2 8426,2 8427,2 8428,2 8429,2 8430,2 8431,2 8432,2 8433,2 8434,2 8435,2 8436,2 8437,2 8438,2 8439,2 8440,2 8441,2 8442,2 8443,2 8444,2 8445,2 8446,2 8447,2 8448,2 8449,2 8450,2 8451,2 8452,2 8453,2 8454,2 8455,2 8456,2 8457,2 8458,2 8459,2 8460,2 8461,2 8462,2 8463,2 8464,2 8465,2 8466,2 8467,2 8468,2 8469,2 8470,2 8471,2 8472,2 8473,2 8474,2 8475,2 8476,2 8477,2 8478,2 8479,2 8480,2 8481,2 8482,2 8483,2 8484,2 8485,2 8486,2 8487,2 8488,2 8489,2 8490,2 8491,2 8492,2 8493,2 8494,2 8495,2 8496,2 8497,2 8498,2 8499,2 8500,2 8501,2 8502,2 8503,2 8504,2 8505,2 8506,2 8507,2 8508,2 8509,2 8510,2 8511,2 8512,2 8513,2 8514,1 8515,1 8516,1 8517,1 8518,1 8519,1 8520,2 8521,2 8522,2 8523,2 8524,2 8525,2 8526,2 8527,2 8528,2 8529,2 8530,2 8531,2 8532,2 8533,2 8534,2 8535,2 8536,2 8537,2 8538,2 8539,2 8540,2 8541,2 8542,2 8543,2 8544,2 8545,2 8546,2 8547,2 8548,2 8549,2 8550,2 8551,2 8552,2 8553,2 8554,2 8555,2 8556,2 8557,2 8558,2 8559,2 8560,2 8561,2 8562,2 8563,2 8564,2 8565,2 8566,2 8567,2 8568,2 8569,2 8570,2 8571,2 8572,2 8573,2 8574,2 8575,2 8576,2 8577,2 8578,2 8579,2 8580,2 8581,2 8582,2 8583,2 8584,2 8585,2 8586,2 8587,2 8588,2 8589,2 8590,2 8591,2 8592,2 8593,2 8594,2 8595,2 8596,2 8597,2 8598,2 8599,2 8600,2 8601,1 8602,1 8603,2 8604,2 8605,2 8606,2 8607,2 8608,2 8609,2 8610,2 8611,2 8612,2 8613,2 8614,2 8615,2 8616,2 8617,2 8618,2 8619,2 8620,2 8621,2 8622,2 8623,2 8624,2 8625,2 8626,2 8627,2 8628,2 8629,2 8630,2 8631,2 8632,2 8633,2 8634,2 8635,2 8636,2 8637,2 8638,2 8639,1 8640,2 8641,2 8642,2 8643,2 8644,2 8645,2 8646,2 8647,2 8648,2 8649,2 8650,2 8651,2 8652,2 8653,2 8654,2 8655,2 8656,2 8657,2 8658,2 8659,2 8660,2 8661,2 8662,2 8663,2 8664,2 8665,2 8666,2 8667,2 8668,1 8669,2 8670,2 8671,2 8672,2 8673,2 8674,2 8675,2 8676,2 8677,2 8678,2 8679,2 8680,2 8681,2 8682,2 8683,2 8684,2 8685,2 8686,2 8687,2 8688,2 8689,2 8690,2 8691,2 8692,2 8693,2 8694,2 8695,2 8696,2 8697,2 8698,2 8699,2 8700,2 8701,2 8702,2 8703,2 8704,2 8705,2 8706,2 8707,2 8708,2 8709,2 8710,2 8711,2 8712,2 8713,2 8714,2 8715,2 8716,1 8717,2 8718,2 8719,2 8720,2 8721,2 8722,2 8723,2 8724,2 8725,2 8726,2 8727,2 8728,2 8729,2 8730,2 8731,2 8732,2 8733,2 8734,2 8735,2 8736,2 8737,2 8738,2 8739,2 8740,2 8741,2 8742,2 8743,2 8744,2 8745,2 8746,2 8747,2 8748,2 8749,2 8750,2 8751,2 8752,2 8753,2 8754,2 8755,2 8756,2 8757,2 8758,2 8759,2 8760,2 8761,2 8762,2 8763,2 8764,2 8765,2 8766,2 8767,2 8768,2 8769,2 8770,2 8771,2 8772,2 8773,2 8774,2 8775,2 8776,2 8777,2 8778,2 8779,2 8780,2 8781,2 8782,2 8783,2 8784,2 8785,2 8786,2 8787,2 8788,2 8789,2 8790,2 8791,2 8792,2 8793,2 8794,2 8795,2 8796,2 8797,2 8798,2 8799,2 8800,2 8801,2 8802,2 8803,2 8804,2 8805,2 8806,2 8807,2 8808,2 8809,2 8810,1 8811,2 8812,2 8813,2 8814,2 8815,2 8816,2 8817,2 8818,2 8819,2 8820,2 8821,2 8822,2 8823,2 8824,2 8825,2 8826,2 8827,2 8828,2 8829,2 8830,2 8831,2 8832,2 8833,2 8834,2 8835,2 8836,2 8837,2 8838,2 8839,2 8840,2 8841,2 8842,2 8843,2 8844,2 8845,2 8846,2 8847,2 8848,2 8849,2 8850,2 8851,2 8852,2 8853,2 8854,2 8855,2 8856,2 8857,2 8858,2 8859,2 8860,2 8861,2 8862,2 8863,2 8864,2 8865,2 8866,2 8867,2 8868,2 8869,2 8870,2 8871,2 8872,2 8873,2 8874,2 8875,2 8876,2 8877,2 8878,2 8879,2 8880,2 8881,2 8882,2 8883,2 8884,2 8885,2 8886,2 8887,2 8888,2 8889,2 8890,2 8891,2 8892,2 8893,2 8894,2 8895,2 8896,2 8897,2 8898,2 8899,2 8900,2 8901,2 8902,2 8903,2 8904,2 8905,2 8906,2 8907,2 8908,2 8909,2 8910,2 8911,2 8912,2 8913,2 8914,2 8915,2 8916,2 8917,2 8918,2 8919,2 8920,2 8921,2 8922,2 8923,2 8924,2 8925,2 8926,2 8927,2 8928,2 8929,2 8930,2 8931,2 8932,2 8933,2 8934,2 8935,2 8936,2 8937,2 8938,2 8939,2 8940,2 8941,2 8942,2 8943,2 8944,2 8945,2 8946,2 8947,2 8948,2 8949,2 8950,2 8951,2 8952,2 8953,2 8954,2 8955,2 8956,2 8957,2 8958,2 8959,2 8960,2 8961,2 8962,2 8963,2 8964,2 8965,2 8966,2 8967,2 8968,2 8969,2 8970,2 8971,2 8972,2 8973,2 8974,2 8975,2 8976,2 8977,2 8978,2 8979,2 8980,2 8981,2 8982,2 8983,2 8984,2 8985,2 8986,2 8987,2 8988,2 8989,2 8990,2 8991,2 8992,2 8993,2 8994,2 8995,2 8996,2 8997,2 8998,2 8999,2 9000,2 9001,2 9002,2 9003,2 9004,2 9005,2 9006,2 9007,2 9008,2 9009,2 9010,2 9011,2 9012,2 9013,1 9014,2 9015,2 9016,2 9017,2 9018,2 9019,2 9020,2 9021,2 9022,2 9023,2 9024,1 9025,2 9026,2 9027,2 9028,2 9029,2 9030,2 9031,2 9032,2 9033,2 9034,2 9035,2 9036,2 9037,2 9038,2 9039,2 9040,2 9041,2 9042,2 9043,2 9044,2 9045,2 9046,2 9047,2 9048,2 9049,2 9050,2 9051,2 9052,2 9053,2 9054,2 9055,2 9056,2 9057,2 9058,2 9059,2 9060,2 9061,1 9062,2 9063,1 9064,2 9065,2 9066,2 9067,2 9068,2 9069,2 9070,2 9071,2 9072,2 9073,2 9074,2 9075,2 9076,2 9077,1 9078,1 9079,1 9080,1 9081,1 9082,1 9083,1 9084,1 9085,1 9086,1 9087,1 9088,1 9089,1 9090,1 9091,1 9092,1 9093,1 9094,1 9095,1 9096,1 9097,1 9098,1 9099,1 9100,1 9101,1 9102,1 9103,1 9104,1 9105,1 9106,1 9107,1 9108,1 9109,1 9110,1 9111,1 9112,1 9113,1 9114,1 9115,1 9116,1 9117,1 9118,1 9119,1 9120,1 9121,1 9122,1 9123,1 9124,1 9125,1 9126,1 9127,1 9128,1 9129,1 9130,1 9131,1 9132,1 9133,1 9134,1 9135,1 9136,1 9137,1 9138,1 9139,1 9140,1 9141,1 9142,1 9143,1 9144,1 9145,1 9146,1 9147,1 9148,1 9149,1 9150,1 9151,1 9152,1 9153,1 9154,1 9155,1 9156,1 9157,1 9158,1 9159,1 9160,1 9161,1 9162,1 9163,1 9164,1 9165,1 9166,1 9167,1 9168,1 9169,1 9170,1 9171,1 9172,1 9173,1 9174,1 9175,1 9176,1 9177,1 9178,1 9179,1 9180,1 9181,1 9182,1 9183,1 9184,1 9185,1 9186,1 9187,1 9188,1 9189,1 9190,1 9191,1 9192,1 9193,1 9194,1 9195,1 9196,1 9197,1 9198,1 9199,1 9200,1 9201,1 9202,1 9203,1 9204,1 9205,1 9206,1 9207,1 9208,1 9209,1 9210,1 9211,1 9212,1 9213,1 9214,1 9215,1 9216,1 9217,1 9218,1 9219,1 9220,1 9221,1 9222,1 9223,1 9224,1 9225,1 9226,1 9227,1 9228,1 9229,1 9230,1 9231,1 9232,1 9233,1 9234,1 9235,1 9236,1 9237,1 9238,1 9239,1 9240,1 9241,1 9242,1 9243,1 9244,1 9245,1 9246,1 9247,1 9248,1 9249,1 9250,1 9251,1 9252,1 9253,1 9254,1 9255,1 9256,1 9257,1 9258,1 9259,1 9260,1 9261,1 9262,1 9263,1 9264,1 9265,1 9266,1 9267,1 9268,1 9269,1 9270,1 9271,1 9272,1 9273,1 9274,1 9275,1 9276,1 9277,1 9278,1 9279,1 9280,1 9281,1 9282,1 9283,1 9284,1 9285,1 9286,1 9287,1 9288,1 9289,1 9290,1 9291,1 9292,1 9293,1 9294,1 9295,1 9296,1 9297,1 9298,1 9299,1 9300,1 9301,1 9302,1 9303,1 9304,1 9305,1 9306,1 9307,1 9308,1 9309,1 9310,1 9311,1 9312,1 9313,1 9314,1 9315,1 9316,1 9317,1 9318,1 9319,1 9320,1 9321,1 9322,1 9323,1 9324,1 9325,1 9326,1 9327,1 9328,1 9329,1 9330,1 9331,1 9332,1 9333,1 9334,1 9335,1 9336,1 9337,1 9338,1 9339,1 9340,1 9341,1 9342,1 9343,1 9344,1 9345,1 9346,1 9347,1 9348,1 9349,1 9350,1 9351,1 9352,1 9353,1 9354,1 9355,1 9356,1 9357,1 9358,1 9359,1 9360,1 9361,1 9362,1 9363,1 9364,1 9365,1 9366,1 9367,1 9368,1 9369,1 9370,1 9371,1 9372,1 9373,1 9374,1 9375,1 9376,1 9377,1 9378,1 9379,1 9380,1 9381,1 9382,1 9383,1 9384,1 9385,1 9386,1 9387,1 9388,1 9389,1 9390,1 9391,1 9392,1 9393,1 9394,1 9395,1 9396,1 9397,1 9398,1 9399,1 9400,1 9401,1 9402,1 9403,1 9404,1 9405,1 9406,1 9407,1 9408,1 9409,1 9410,1 9411,1 9412,1 9413,1 9414,1 9415,1 9416,1 9417,1 9418,1 9419,1 9420,1 9421,1 9422,1 9423,1 9424,1 9425,1 9426,1 9427,1 9428,1 9429,1 9430,1 9431,1 9432,1 9433,1 9434,1 9435,1 9436,1 9437,1 9438,1 9439,1 9440,1 9441,1 9442,1 9443,1 9444,1 9445,1 9446,1 9447,1 9448,1 9449,1 9450,1 9451,1 9452,1 9453,1 9454,1 9455,1 9456,1 9457,1 9458,1 9459,1 9460,1 9461,1 9462,1 9463,1 9464,1 9465,1 9466,1 9467,1 9468,1 9469,1 9470,1 9471,1 9472,1 9473,1 9474,1 9475,1 9476,1 9477,1 9478,1 9479,1 9480,1 9481,1 9482,1 9483,1 9484,1 9485,1 9486,1 9487,1 9488,1 9489,1 9490,1 9491,1 9492,1 9493,1 9494,1 9495,1 9496,1 9497,1 9498,1 9499,1 9500,1 9501,1 9502,1 9503,1 9504,1 9505,1 9506,1 9507,1 9508,1 9509,1 9510,1 9511,1 9512,1 9513,1 9514,1 9515,1 9516,1 9517,1 9518,1 9519,1 9520,1 9521,1 9522,1 9523,1 9524,1 9525,1 9526,1 9527,1 9528,1 9529,1 9530,1 9531,1 9532,1 9533,1 9534,1 9535,1 9536,1 9537,1 9538,1 9539,1 9540,1 9541,1 9542,1 9543,1 9544,1 9545,1 9546,1 9547,1 9548,1 9549,1 9550,1 9551,1 9552,1 9553,1 9554,1 9555,1 9556,1 9557,1 9558,1 9559,1 9560,1 9561,1 9562,1 9563,1 9564,1 9565,1 9566,1 9567,1 9568,1 9569,1 9570,1 9571,1 9572,1 9573,1 9574,1 9575,1 9576,1 9577,1 9578,1 9579,1 9580,1 9581,1 9582,1 9583,1 9584,1 9585,1 9586,1 9587,1 9588,1 9589,1 9590,1 9591,1 9592,1 9593,1 9594,1 9595,1 9596,1 9597,1 9598,1 9599,1 9600,1 9601,1 9602,1 9603,1 9604,1 9605,1 9606,1 9607,1 9608,1 9609,1 9610,1 9611,1 9612,1 9613,1 9614,1 9615,1 9616,1 9617,1 9618,1 9619,1 9620,1 9621,1 9622,1 9623,1 9624,1 9625,1 9626,1 9627,1 9628,1 9629,1 9630,1 9631,1 9632,1 9633,1 9634,1 9635,1 9636,1 9637,1 9638,1 9639,1 9640,1 9641,1 9642,1 9643,1 9644,1 9645,1 9646,1 9647,1 9648,1 9649,1 9650,1 9651,1 9652,1 9653,1 9654,1 9655,1 9656,1 9657,1 9658,1 9659,1 9660,1 9661,1 9662,1 9663,1 9664,1 9665,1 9666,1 9667,1 9668,1 9669,1 9670,1 9671,1 9672,1 9673,1 9674,1 9675,1 9676,1 9677,1 9678,1 9679,1 9680,1 9681,1 9682,1 9683,1 9684,1 9685,1 9686,1 9687,1 9688,1 9689,1 9690,1 9691,1 9692,1 9693,1 9694,1 9695,1 9696,1 9697,1 9698,1 9699,1 9700,1 9701,1 9702,1 9703,1 9704,1 9705,1 9706,1 9707,1 9708,1 9709,1 9710,1 9711,1 9712,1 9713,1 9714,1 9715,1 9716,1 9717,1 9718,1 9719,1 9720,1 9721,1 9722,1 9723,1 9724,1 9725,1 9726,1 9727,1 9728,1 9729,1 9730,1 9731,1 9732,1 9733,1 9734,1 9735,1 9736,1 9737,1 9738,1 9739,1 9740,1 9741,1 9742,1 9743,1 9744,1 9745,1 9746,1 9747,1 9748,1 9749,1 9750,1 9751,1 9752,1 9753,1 9754,1 9755,1 9756,1 9757,1 9758,1 9759,1 9760,1 9761,1 9762,1 9763,1 9764,1 9765,1 9766,1 9767,1 9768,1 9769,1 9770,1 9771,1 9772,1 9773,1 9774,1 9775,1 9776,1 9777,1 9778,1 9779,1 9780,1 9781,1 9782,1 9783,1 9784,1 9785,1 9786,1 9787,1 9788,1 9789,1 9790,1 9791,1 9792,1 9793,1 9794,1 9795,1 9796,1 9797,1 9798,1 9799,1 9800,1 9801,1 9802,1 9803,1 9804,1 9805,1 9806,1 9807,1 9808,1 9809,1 9810,1 9811,1 9812,1 9813,1 9814,1 9815,1 9816,1 9817,1 9818,1 9819,1 9820,1 9821,1 9822,1 9823,1 9824,1 9825,1 9826,1 9827,1 9828,1 9829,1 9830,1 9831,1 9832,1 9833,1 9834,1 9835,1 9836,1 9837,1 9838,1 9839,1 9840,1 9841,1 9842,1 9843,1 9844,1 9845,1 9846,1 9847,1 9848,1 9849,1 9850,1 9851,1 9852,1 9853,1 9854,1 9855,1 9856,1 9857,1 9858,1 9859,1 9860,1 9861,1 9862,1 9863,1 9864,1 9865,1 9866,1 9867,1 9868,1 9869,1 9870,1 9871,1 9872,1 9873,1 9874,1 9875,1 9876,1 9877,1 9878,1 9879,1 9880,1 9881,1 9882,1 9883,1 9884,1 9885,1 9886,1 9887,1 9888,1 9889,1 9890,1 9891,1 9892,1 9893,1 9894,1 9895,1 9896,1 9897,1 9898,1 9899,1 9900,1 9901,1 9902,1 9903,1 9904,1 9905,1 9906,1 9907,1 9908,1 9909,1 9910,1 9911,1 9912,1 9913,1 9914,1 9915,1 9916,1 9917,1 9918,1 9919,1 9920,1 9921,1 9922,1 9923,1 9924,1 9925,1 9926,1 9927,1 9928,1 9929,1 9930,1 9931,1 9932,1 9933,1 9934,1 9935,1 9936,1 9937,1 9938,1 9939,1 9940,1 9941,1 9942,1 9943,1 9944,1 9945,1 9946,1 9947,1 9948,1 9949,1 9950,1 9951,1 9952,1 9953,1 9954,1 9955,1 9956,1 9957,1 9958,1 9959,1 9960,1 9961,1 9962,1 9963,1 9964,1 9965,1 9966,1 9967,1 9968,1 9969,1 9970,1 9971,1 9972,1 9973,1 9974,1 9975,1 9976,1 9977,1 9978,1 9979,1 9980,1 9981,1 9982,1 9983,1 9984,1 9985,1 9986,1 9987,1 9988,1 9989,1 9990,1 9991,1 9992,1 9993,1 9994,1 9995,1 9996,1 9997,1 9998,1 9999,1 10000,1 10001,1 10002,1 10003,1 10004,1 10005,1 10006,1 10007,1 10008,1 10009,1 10010,1 10011,1 10012,1 10013,1 10014,1 10015,1 10016,1 10017,1 10018,1 10019,1 10020,1 10021,1 10022,1 10023,1 10024,1 10025,1 10026,1 10027,1 10028,1 10029,1 10030,1 10031,1 10032,1 10033,1 10034,1 10035,1 10036,1 10037,1 10038,1 10039,1 10040,1 10041,1 10042,1 10043,1 10044,1 10045,1 10046,1 10047,1 10048,1 10049,1 10050,1 10051,1 10052,1 10053,1 10054,1 10055,1 10056,1 10057,1 10058,1 10059,1 10060,1 10061,1 10062,1 10063,1 10064,1 10065,1 10066,1 10067,1 10068,1 10069,1 10070,1 10071,1 10072,1 10073,1 10074,1 10075,1 10076,1 10077,1 10078,1 10079,1 10080,1 10081,1 10082,1 10083,1 10084,1 10085,1 10086,1 10087,1 10088,1 10089,1 10090,1 10091,1 10092,1 10093,1 10094,1 10095,1 10096,1 10097,1 10098,1 10099,1 10100,1 10101,1 10102,1 10103,1 10104,1 10105,1 10106,1 10107,1 10108,1 10109,1 10110,1 10111,1 10112,1 10113,1 10114,1 10115,1 10116,1 10117,1 10118,1 10119,1 10120,1 10121,1 10122,1 10123,1 10124,1 10125,1 10126,1 10127,1 10128,1 10129,1 10130,1 10131,1 10132,1 10133,1 10134,1 10135,1 10136,1 10137,1 10138,1 10139,1 10140,1 10141,1 10142,1 10143,1 10144,1 10145,1 10146,1 10147,1 10148,1 10149,1 10150,1 10151,1 10152,1 10153,1 10154,1 10155,1 10156,1 10157,1 10158,1 10159,1 10160,1 10161,1 10162,1 10163,1 10164,1 10165,1 10166,1 10167,1 10168,1 10169,1 10170,1 10171,1 10172,1 10173,1 10174,1 10175,1 10176,1 10177,1 10178,1 10179,1 10180,1 10181,1 10182,1 10183,1 10184,1 10185,1 10186,1 10187,1 10188,1 10189,1 10190,1 10191,1 10192,1 10193,1 10194,1 10195,1 10196,1 10197,1 10198,1 10199,1 10200,1 10201,1 10202,1 10203,1 10204,1 10205,1 10206,1 10207,1 10208,1 10209,1 10210,1 10211,1 10212,1 10213,1 10214,1 10215,1 10216,1 10217,1 10218,1 10219,1 10220,1 10221,1 10222,1 10223,1 10224,1 10225,1 10226,1 10227,1 10228,1 10229,1 10230,1 10231,1 10232,1 10233,1 10234,1 10235,1 10236,1 10237,1 10238,1 10239,1 10240,1 10241,1 10242,1 10243,1 10244,1 10245,1 10246,1 10247,1 10248,1 10249,1 10250,1 10251,1 10252,1 10253,1 10254,1 10255,1 10256,1 10257,1 10258,1 10259,1 10260,1 10261,1 10262,1 10263,1 10264,1 10265,1 10266,1 10267,1 10268,1 10269,1 10270,1 10271,1 10272,1 10273,1 10274,1 10275,1 10276,1 10277,1 10278,1 10279,1 10280,1 10281,1 10282,1 10283,1 10284,1 10285,1 10286,1 10287,1 10288,1 10289,1 10290,1 10291,1 10292,1 10293,1 10294,1 10295,1 10296,1 10297,1 10298,1 10299,1 10300,1 10301,1 10302,1 10303,1 10304,1 10305,1 10306,1 10307,1 10308,1 10309,1 10310,1 10311,1 10312,1 10313,1 10314,1 10315,1 10316,1 10317,1 10318,1 10319,1 10320,1 10321,1 10322,1 10323,1 10324,1 10325,1 10326,1 10327,1 10328,1 10329,1 10330,1 10331,1 10332,1 10333,1 10334,1 10335,1 10336,1 10337,1 10338,1 10339,1 10340,1 10341,1 10342,1 10343,1 10344,1 10345,1 10346,1 10347,1 10348,1 10349,1 10350,1 10351,1 10352,1 10353,1 10354,1 10355,1 10356,1 10357,1 10358,1 10359,1 10360,1 10361,1 10362,1 10363,1 10364,1 10365,1 10366,1 10367,1 10368,1 10369,1 10370,1 10371,1 10372,1 10373,1 10374,1 10375,1 10376,1 10377,1 10378,1 10379,1 10380,1 10381,1 10382,1 10383,1 10384,1 10385,1 10386,1 10387,1 10388,1 10389,1 10390,1 10391,1 10392,1 10393,1 10394,1 10395,1 10396,1 10397,1 10398,1 10399,1 10400,1 10401,1 10402,1 10403,1 10404,1 10405,1 10406,1 10407,1 10408,1 10409,1 10410,1 10411,1 10412,1 10413,1 10414,1 10415,1 10416,1 10417,1 10418,1 10419,1 10420,1 10421,1 10422,1 10423,1 10424,1 10425,1 10426,1 10427,1 10428,1 10429,1 10430,1 10431,1 10432,1 10433,1 10434,1 10435,1 10436,1 10437,1 10438,1 10439,1 10440,1 10441,1 10442,1 10443,1 10444,1 10445,1 10446,1 10447,1 10448,1 10449,1 10450,1 10451,1 10452,1 10453,1 10454,1 10455,1 10456,1 10457,1 10458,1 10459,1 10460,1 10461,1 10462,1 10463,1 10464,1 10465,1 10466,1 10467,1 10468,1 10469,1 10470,1 10471,1 10472,1 10473,1 10474,1 10475,1 10476,1 10477,1 10478,1 10479,1 10480,1 10481,1 10482,1 10483,1 10484,1 10485,1 10486,1 10487,1 10488,1 10489,1 10490,1 10491,1 10492,1 10493,1 10494,1 10495,1 10496,1 10497,1 10498,1 10499,1 10500,1 10501,1 10502,1 10503,1 10504,1 10505,1 10506,1 10507,1 10508,1 10509,1 10510,1 10511,1 10512,1 10513,1 10514,1 10515,1 10516,1 10517,1 10518,1 10519,1 10520,1 10521,1 10522,1 10523,1 10524,1 10525,1 10526,1 10527,1 10528,1 10529,1 10530,1 10531,1 10532,1 10533,1 10534,1 10535,1 10536,1 10537,1 10538,1 10539,1 10540,1 10541,1 10542,1 10543,1 10544,1 10545,1 10546,1 10547,1 10548,1 10549,1 10550,1 10551,1 10552,1 10553,1 10554,1 10555,1 10556,1 10557,1 10558,1 10559,1 10560,1 10561,1 10562,1 10563,1 10564,1 10565,1 10566,1 10567,1 10568,1 10569,1 10570,1 10571,1 10572,1 10573,1 10574,1 10575,1 10576,1 10577,1 10578,1 10579,1 10580,1 10581,1 10582,1 10583,1 10584,1 10585,1 10586,1 10587,1 10588,1 10589,1 10590,1 10591,1 10592,1 10593,1 10594,1 10595,1 10596,1 10597,1 10598,1 10599,1 10600,1 10601,1 10602,1 10603,1 10604,1 10605,1 10606,1 10607,1 10608,1 10609,1 10610,1 10611,1 10612,1 10613,1 10614,1 10615,1 10616,1 10617,1 10618,1 10619,1 10620,1 10621,1 10622,1 10623,1 10624,1 10625,1 10626,1 10627,1 10628,1 10629,1 10630,1 10631,1 10632,1 10633,1 10634,1 10635,1 10636,1 10637,1 10638,1 10639,1 10640,1 10641,1 10642,1 10643,1 10644,1 10645,1 10646,1 10647,1 10648,1 10649,1 10650,1 10651,1 10652,1 10653,1 10654,1 10655,1 10656,1 10657,1 10658,1 10659,1 10660,1 10661,1 10662,1 10663,1 10664,1 10665,1 10666,1 10667,1 10668,1 10669,1 10670,1 10671,1 10672,1 10673,1 10674,1 10675,1 10676,1 10677,1 10678,1 10679,1 10680,1 10681,1 10682,1 10683,1 10684,1 10685,1 10686,1 10687,1 10688,1 10689,1 10690,1 10691,1 10692,1 10693,1 10694,1 10695,1 10696,1 10697,1 10698,1 10699,1 10700,1 10701,1 10702,1 10703,1 10704,1 10705,1 10706,1 10707,1 10708,1 10709,1 10710,1 10711,1 10712,1 10713,1 10714,1 10715,1 10716,1 10717,1 10718,1 10719,1 10720,1 10721,1 10722,1 10723,1 10724,1 10725,1 10726,1 10727,1 10728,1 10729,1 10730,1 10731,1 10732,1 10733,1 10734,1 10735,1 10736,1 10737,1 10738,1 10739,1 10740,1 10741,1 10742,1 10743,1 10744,1 10745,1 10746,1 10747,1 10748,1 10749,1 10750,1 10751,1 10752,1 10753,1 10754,1 10755,1 10756,1 10757,1 10758,1 10759,1 10760,1 10761,1 10762,1 10763,1 10764,1 10765,1 10766,1 10767,1 10768,1 10769,1 10770,1 10771,1 10772,1 10773,1 10774,1 10775,1 10776,1 10777,1 10778,1 10779,1 10780,1 10781,1 10782,1 10783,1 10784,1 10785,1 10786,1 10787,1 10788,1 10789,1 10790,1 10791,1 10792,1 10793,1 10794,1 10795,1 10796,1 10797,1 10798,1 10799,1 10800,1 10801,1 10802,1 10803,1 10804,1 10805,1 10806,1 10807,1 10808,1 10809,1 10810,1 10811,1 10812,1 10813,1 10814,1 10815,1 10816,1 10817,1 10818,1 10819,1 10820,1 10821,1 10822,1 10823,1 10824,1 10825,1 10826,1 10827,1 10828,1 10829,1 10830,1 10831,1 10832,1 10833,1 10834,1 10835,1 10836,1 10837,1 10838,1 10839,1 10840,1 10841,1 10842,1 10843,1 10844,1 10845,1 10846,1 10847,1 10848,1 10849,1 10850,1 10851,1 10852,1 10853,1 10854,1 10855,1 10856,1 10857,1 10858,1 10859,1 10860,1 10861,1 10862,1 10863,1 10864,1 10865,1 10866,1 10867,1 10868,1 10869,1 10870,1 10871,1 10872,1 10873,1 10874,1 10875,1 10876,1 10877,1 10878,1 10879,1 10880,1 10881,1 10882,1 10883,1 10884,1 10885,1 10886,1 10887,1 10888,1 10889,1 10890,1 10891,1 10892,1 10893,1 10894,1 10895,1 10896,1 10897,1 10898,1 10899,1 10900,1 10901,1 10902,1 10903,1 10904,1 10905,1 10906,1 10907,1 10908,1 10909,1 10910,1 10911,1 10912,1 10913,1 10914,1 10915,1 10916,1 10917,1 10918,1 10919,1 10920,1 10921,1 10922,1 10923,1 10924,1 10925,1 10926,1 10927,1 10928,1 10929,1 10930,1 10931,1 10932,1 10933,1 10934,1 10935,1 10936,1 10937,1 10938,1 10939,1 10940,1 10941,1 10942,1 10943,1 10944,1 10945,1 10946,1 10947,1 10948,1 10949,1 10950,1 10951,1 10952,1 10953,1 10954,1 10955,1 10956,1 10957,1 10958,1 10959,1 10960,1 10961,1 10962,1 10963,1 10964,1 10965,1 10966,1 10967,1 10968,1 10969,1 10970,1 10971,1 10972,1 10973,1 10974,1 10975,1 10976,1 10977,1 10978,1 10979,1 10980,1 10981,1 10982,1 10983,1 10984,1 10985,1 10986,1 10987,1 10988,1 10989,1 10990,1 10991,1 10992,1 10993,1 10994,1 10995,1 10996,1 10997,1 10998,1 10999,1 11000,1 11001,1 11002,1 11003,1 11004,1 11005,1 11006,1 11007,1 11008,1 11009,1 11010,1 11011,1 11012,1 11013,1 11014,1 11015,1 11016,1 11017,1 11018,1 11019,1 11020,1 11021,1 11022,1 11023,1 11024,1 11025,1 11026,1 11027,1 11028,1 11029,1 11030,1 11031,1 11032,1 11033,1 11034,1 11035,1 11036,1 11037,1 11038,1 11039,1 11040,1 11041,1 11042,1 11043,1 11044,1 11045,1 11046,1 11047,1 11048,1 11049,1 11050,1 11051,1 11052,1 11053,1 11054,1 11055,1 11056,1 11057,1 11058,1 11059,1 11060,1 11061,1 11062,1 11063,1 11064,1 11065,1 11066,1 11067,1 11068,1 11069,1 11070,1 11071,1 11072,1 11073,1 11074,1 11075,1 11076,1 11077,1 11078,1 11079,1 11080,1 11081,1 11082,1 11083,1 11084,1 11085,1 11086,1 11087,1 11088,1 11089,1 11090,1 11091,1 11092,1 11093,1 11094,1 11095,1 11096,1 11097,1 11098,1 11099,1 11100,1 11101,1 11102,1 11103,1 11104,1 11105,1 11106,1 11107,1 11108,1 11109,1 11110,1 11111,1 11112,1 11113,1 11114,1 11115,1 11116,1 11117,1 11118,1 11119,1 11120,1 11121,1 11122,1 11123,1 11124,1 11125,1 11126,1 11127,1 11128,1 11129,1 11130,1 11131,1 11132,1 11133,1 11134,1 11135,1 11136,1 11137,1 11138,1 11139,1 11140,1 11141,1 11142,1 11143,1 11144,1 11145,1 11146,1 11147,1 11148,1 11149,1 11150,1 11151,1 11152,1 11153,1 11154,1 11155,1 11156,1 11157,1 11158,1 11159,1 11160,1 11161,1 11162,1 11163,1 11164,1 11165,1 11166,1 11167,1 11168,1 11169,1 11170,1 11171,1 11172,1 11173,1 11174,1 11175,1 11176,1 11177,1 11178,1 11179,1 11180,1 11181,1 11182,1 11183,1 11184,1 11185,1 11186,1 11187,1 11188,1 11189,1 11190,1 11191,1 11192,1 11193,1 11194,1 11195,1 11196,1 11197,1 11198,1 11199,1 11200,1 11201,1 11202,1 11203,1 11204,1 11205,1 11206,1 11207,1 11208,1 11209,1 11210,1 11211,1 11212,1 11213,1 11214,1 11215,1 11216,1 11217,1 11218,1 11219,1 11220,1 11221,1 11222,1 11223,1 11224,1 11225,1 11226,1 11227,1 11228,1 11229,1 11230,1 11231,1 11232,1 11233,1 11234,1 11235,1 11236,1 11237,1 11238,1 11239,1 11240,1 11241,1 11242,1 11243,1 11244,1 11245,1 11246,1 11247,1 11248,1 11249,1 11250,1 11251,1 11252,1 11253,1 11254,1 11255,1 11256,1 11257,1 11258,1 11259,1 11260,1 11261,1 11262,1 11263,1 11264,1 11265,1 11266,1 11267,1 11268,1 11269,1 11270,1 11271,1 11272,1 11273,1 11274,1 11275,1 11276,1 11277,1 11278,1 11279,1 11280,1 11281,1 11282,1 11283,1 11284,1 11285,1 11286,1 11287,1 11288,1 11289,1 11290,1 11291,1 11292,1 11293,1 11294,1 11295,1 11296,1 11297,1 11298,1 11299,1 11300,1 11301,1 11302,1 11303,1 11304,1 11305,1 11306,1 11307,1 11308,1 11309,1 11310,1 11311,1 11312,1 11313,1 11314,1 11315,1 11316,1 11317,1 11318,1 11319,1 11320,1 11321,1 11322,1 11323,1 11324,1 11325,1 11326,1 11327,1 11328,1 11329,1 11330,1 11331,1 11332,1 11333,1 11334,1 11335,1 11336,1 11337,1 11338,1 11339,1 11340,1 11341,1 11342,1 11343,1 11344,1 11345,1 11346,1 11347,1 11348,1 11349,1 11350,1 11351,1 11352,1 11353,1 11354,1 11355,1 11356,1 11357,1 11358,1 11359,1 11360,1 11361,1 11362,1 11363,1 11364,1 11365,1 11366,1 11367,1 11368,1 11369,1 11370,1 11371,1 11372,1 11373,1 11374,1 11375,1 11376,1 11377,1 11378,1 11379,1 11380,1 11381,1 11382,1 11383,1 11384,1 11385,1 11386,1 11387,1 11388,1 11389,1 11390,1 11391,1 11392,1 11393,1 11394,1 11395,1 11396,1 11397,1 11398,1 11399,1 11400,1 11401,1 11402,1 11403,1 11404,1 11405,1 11406,1 11407,1 11408,1 11409,1 11410,1 11411,1 11412,1 11413,1 11414,1 11415,1 11416,1 11417,1 11418,1 11419,1 11420,1 11421,1 11422,1 11423,1 11424,1 11425,1 11426,1 11427,1 11428,1 11429,1 11430,1 11431,1 11432,1 11433,1 11434,1 11435,1 11436,1 11437,1 11438,1 11439,1 11440,1 11441,1 11442,1 11443,1 11444,1 11445,1 11446,1 11447,1 11448,1 11449,1 11450,1 11451,1 11452,1 11453,1 11454,1 11455,1 11456,1 11457,1 11458,1 11459,1 11460,1 11461,1 11462,1 11463,1 11464,1 11465,1 11466,1 11467,1 11468,1 11469,1 11470,1 11471,1 11472,1 11473,1 11474,1 11475,1 11476,1 11477,1 11478,1 11479,1 11480,1 11481,1 11482,1 11483,1 11484,1 11485,1 11486,1 11487,1 11488,1 11489,1 11490,1 11491,1 11492,1 11493,1 11494,1 11495,1 11496,1 11497,1 11498,1 11499,1 11500,1 11501,1 11502,1 11503,1 11504,1 11505,1 11506,1 11507,1 11508,1 11509,1 11510,1 11511,1 11512,1 11513,1 11514,1 11515,1 11516,1 11517,1 11518,1 11519,1 11520,1 11521,1 11522,1 11523,1 11524,1 11525,1 11526,1 11527,1 11528,1 11529,1 11530,1 11531,1 11532,1 11533,1 11534,1 11535,1 11536,1 11537,1 11538,1 11539,1 11540,1 11541,1 11542,1 11543,1 11544,1 11545,1 11546,1 11547,1 11548,1 11549,1 11550,1 11551,1 11552,1 11553,1 11554,1 11555,1 11556,1 11557,1 11558,1 11559,1 11560,1 11561,1 11562,1 11563,1 11564,1 11565,1 11566,1 11567,1 11568,1 11569,1 11570,1 11571,1 11572,1 11573,1 11574,1 11575,1 11576,1 11577,1 11578,1 11579,1 11580,1 11581,1 11582,1 11583,1 11584,1 11585,1 11586,1 11587,1 11588,1 11589,1 11590,1 11591,1 11592,1 11593,1 11594,1 11595,1 11596,1 11597,1 11598,1 11599,1 11600,1 11601,1 11602,1 11603,1 11604,1 11605,1 11606,1 11607,1 11608,1 11609,1 11610,1 11611,1 11612,1 11613,1 11614,1 11615,1 11616,1 11617,1 11618,1 11619,1 11620,1 11621,2 11622,1 11623,2 11624,1 11625,1 11626,2 11627,1 11628,2 11629,1 11630,1 11631,1 11632,1 11633,1 11634,1 11635,1 11636,1 11637,1 11638,1 11639,1 11640,1 11641,1 11642,1 11643,1 11644,1 11645,1 11646,1 11647,1 11648,1 11649,1 11650,1 11651,1 11652,1 11653,1 11654,1 11655,1 11656,1 11657,1 11658,1 11659,1 11660,1 11661,1 11662,1 11663,1 11664,1 11665,1 11666,1 11667,1 11668,1 11669,1 11670,1 11671,1 11672,1 11673,1 11674,1 11675,1 11676,1 11677,1 11678,1 11679,1 11680,1 11681,1 11682,1 11683,1 11684,1 11685,1 11686,1 11687,1 11688,1 11689,1 11690,1 11691,1 11692,1 11693,1 11694,1 11695,1 11696,1 11697,1 11698,1 11699,1 11700,1 11701,1 11702,1 11703,1 11704,1 11705,1 11706,1 11707,1 11708,1 11709,1 11710,1 11711,1 11712,1 11713,1 11714,1 11715,1 11716,1 11717,1 11718,1 11719,1 11720,1 11721,1 11722,1 11723,1 11724,1 11725,1 11726,1 11727,1 11728,1 11729,1 11730,1 11731,1 11732,1 11733,1 11734,1 11735,1 11736,1 11737,1 11738,1 11739,1 11740,1 11741,1 11742,1 11743,1 11744,1 11745,1 11746,1 11747,1 11748,1 11749,1 11750,1 11751,1 11752,1 11753,1 11754,1 11755,1 11756,1 11757,1 11758,1 11759,1 11760,1 11761,1 11762,1 11763,1 11764,1 11765,1 11766,1 11767,1 11768,1 11769,1 11770,1 11771,1 11772,1 11773,1 11774,1 11775,1 11776,1 11777,1 11778,1 11779,1 11780,1 11781,1 11782,1 11783,1 11784,1 11785,1 11786,1 11787,1 11788,1 11789,1 11790,1 11791,1 11792,1 11793,1 11794,1 11795,1 11796,1 11797,1 11798,2 11799,1 11800,1 11801,1 11802,1 11803,1 11804,1 11805,1 11806,1 11807,1 11808,1 11809,1 11810,1 11811,1 11812,1 11813,1 11814,1 11815,1 11816,1 11817,1 11818,1 11819,1 11820,1 11821,1 11822,1 11823,1 11824,1 11825,1 11826,1 11827,1 11828,1 11829,1 11830,1 11831,1 11832,1 11833,1 11834,1 11835,1 11836,1 11837,1 11838,1 11839,1 11840,1 11841,1 11842,1 11843,1 11844,1 11845,1 11846,1 11847,1 11848,1 11849,1 11850,1 11851,1 11852,1 11853,1 11854,1 11855,1 ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/dictionary.txt ================================================ [File too large to display: 11.5 MB] ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/original_rt_snippets.txt ================================================ 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. The 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. Effective but too-tepid biopic If you sometimes like to go to the movies to have fun, Wasabi is a good place to start. Emerges as something rare, an issue movie that's so honest and keenly observed that it doesn't feel like one. The film provides some great insight into the neurotic mindset of all comics -- even those who have reached the absolute top of the game. Offers that rare combination of entertainment and education. Perhaps no picture ever made has more literally showed that the road to hell is paved with good intentions. Steers 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. Take Care of My Cat offers a refreshingly different slice of Asian cinema. This is a film well worth seeing, talking and singing heads and all. What really surprises about Wisegirls is its low-key quality and genuine tenderness. (Wendigo is) why we go to the cinema: to be fed through the eye, the heart, the mind. One of the greatest family-oriented, fantasy-adventure movies ever. Ultimately, it ponders the reasons we need stories so much. An utterly compelling 'who wrote it' in which the reputation of the most famous author who ever lived comes into question. Illuminating if overly talky documentary. A masterpiece four years in the making. The movie's ripe, enrapturing beauty will tempt those willing to probe its inscrutable mysteries. Offers a breath of the fresh air of true sophistication. A thoughtful, provocative, insistently humanizing film. With 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. A disturbing and frighteningly evocative assembly of imagery and hypnotic music composed by Philip Glass. Not for everyone, but for those with whom it will connect, it's a nice departure from standard moviegoing fare. Scores a few points for doing what it does with a dedicated and good-hearted professionalism. Occasionally melodramatic, it's also extremely effective. An idealistic love story that brings out the latent 15-year-old romantic in everyone. At 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. It helps that Lil Bow Wow ... tones down his pint-sized gangsta act to play someone who resembles a real kid. Guaranteed to move anyone who ever shook, rattled, or rolled. A masterful film from a master filmmaker, unique in its deceptive grimness, compelling in its fatalist worldview. Light, cute and forgettable. If 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. While 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. Though everything might be literate and smart, it never took off and always seemed static. Cantet perfectly captures the hotel lobbies, two-lane highways, and roadside cafes that permeate Vincent's days Ms. Fulford-Wierzbicki is almost spooky in her sulky, calculating Lolita turn. Though 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. Like 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. Newton draws our attention like a magnet, and acts circles around her better known co-star, Mark Wahlberg. The 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. Fuller would surely have called this gutsy and at times exhilarating movie a great yarn. The film makes a strong case for the importance of the musicians in creating the Motown sound. Karmen moves like rhythm itself, her lips chanting to the beat, her long, braided hair doing little to wipe away the jeweled beads of sweat. Gosling provides an amazing performance that dwarfs everything else in the film. A real movie, about real people, that gives us a rare glimpse into a culture most of us don't know. Tender yet lacerating and darkly funny fable. May 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. An engaging overview of Johnson's eccentric career. In its ragged, cheap and unassuming way, the movie works. Some 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. Sandra Nettelbeck beautifully orchestrates the transformation of the chilly, neurotic, and self-absorbed Martha as her heart begins to open. Behind the snow games and lovable Siberian huskies (plus one sheep dog), the picture hosts a parka-wrapped dose of heart. Everytime you think Undercover Brother has run out of steam, it finds a new way to surprise and amuse. Manages to be original, even though it rips off many of its ideas. Singer/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. You'd think by now America would have had enough of plucky British eccentrics with hearts of gold. Yet the act is still charming here. Whether 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. A pleasant enough movie, held together by skilled ensemble actors. This is the best American movie about troubled teens since 1998's Whatever. Disney has always been hit-or-miss when bringing beloved kids' books to the screen...Tuck Everlasting is a little of both. Just the labour involved in creating the layered richness of the imagery in this chiaroscuro of madness and light is astonishing. The animated subplot keenly depicts the inner struggles of our adolescent heroes - insecure, uncontrolled, and intense. The invincible Werner Herzog is alive and well and living in LA Morton is a great actress portraying a complex character, but Morvern Callar grows less compelling the farther it meanders from its shocking start. Part of the charm of Satin Rouge is that it avoids the obvious with humour and lightness. Son of the Bride may be a good half-hour too long but comes replete with a flattering sense of mystery and quietness. A simmering psychological drama in which the bursts of sudden violence are all the more startling for the slow buildup that has preceded them. A taut, intelligent psychological drama. A truly moving experience, and a perfect example of how art -- when done right -- can help heal, clarify, and comfort. This delicately observed story, deeply felt and masterfully stylized, is a triumph for its maverick director. At heart the movie is a deftly wrought suspense yarn whose richer shadings work as coloring rather than substance. The 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! a screenplay more ingeniously constructed than ``Memento'' If this movie were a book, it would be a page-turner, you can't wait to see what happens next. Haneke challenges us to confront the reality of sexual aberration. Absorbing and disturbing -- perhaps more disturbing than originally intended -- but a little clarity would have gone a long way. It's the best film of the year so far, the benchmark against which all other Best Picture contenders should be measured. Painful to watch, but viewers willing to take a chance will be rewarded with two of the year's most accomplished and riveting film performances. This is a startling film that gives you a fascinating, albeit depressing view of Iranian rural life close to the Iraqi border. A few artsy flourishes aside, Narc is as gritty as a movie gets these days. While The Isle is both preposterous and thoroughly misogynistic, its vistas are incredibly beautiful to look at. Together, 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. Director 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. The movie is a blast of educational energy, as bouncy animation and catchy songs escort you through the entire 85 minutes. A sports movie with action that's exciting on the field and a story you care about off it. Doug 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. The tenderness of the piece is still intact. Katz 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 Like the film's almost anthropologically detailed realization of early-'80s suburbia, it's significant without being overstated. While 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. If nothing else, this movie introduces a promising, unusual kind of psychological horror. In 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. Writer-director Burger imaginatively fans the embers of a dormant national grief and curiosity that has calcified into chronic cynicism and fear. ...a roller-coaster ride of a movie I enjoyed Time of Favor while I was watching it, but I was surprised at how quickly it faded from my memory. Chicago is sophisticated, brash, sardonic, completely joyful in its execution. Steve Irwin's method is Ernest Hemmingway at accelerated speed and volume. A refreshing Korean film about five female high school friends who face an uphill battle when they try to take their relationships into deeper waters. On 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. The values that have held the Enterprise crew together through previous adventures and perils do so again-courage, self-sacrifice and patience under pressure. If it's possible for a sequel to outshine the original, then SL2 does just that. A romantic comedy that operates by the rules of its own self-contained universe. 4 friends, 2 couples, 2000 miles, and all the Pabst Blue Ribbon beer they can drink - it's the ultimate redneck road-trip. The film is often filled with a sense of pure wonderment and excitement not often seen in today's cinema du sarcasm It 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. A feel-good picture in the best sense of the term. Edited 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. A mostly intelligent, engrossing and psychologically resonant suspenser. It'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. Hip-hop has a history, and it's a metaphor for this love story. In scope, ambition and accomplishment, Children of the Century ... takes Kurys' career to a whole new level. This 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. Between 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. A gentle, compassionate drama about grief and healing. Somewhere short of Tremors on the modern B-scene: neither as funny nor as clever, though an agreeably unpretentious way to spend ninety minutes. Digital-video documentary about stand-up comedians is a great glimpse into a very different world. Unlike most teen flicks, Swimming takes its time to tell its story, casts mostly little-known performers in key roles, and introduces some intriguing ambiguity. An 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. ``Extreme Ops'' exceeds expectations. Good fun, good action, good acting, good dialogue, good pace, good cinematography. You 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. A 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. It's obviously struck a responsive chord with many South Koreans, and should work its magic in other parts of the world. Run, don't walk, to see this barbed and bracing comedy on the big screen. A classy item by a legend who may have nothing left to prove but still has the chops and drive to show how its done. It is nature against progress. In Fessenden's horror trilogy, this theme has proved important to him and is especially so in the finale. It's not exactly a gourmet meal but the fare is fair, even coming from the drive-thru. This 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. Merely as a technical, logistical feat, Russian Ark marks a cinematic milestone. (Schweiger is) talented and terribly charismatic, qualities essential to both movie stars and social anarchists. It's a great deal of sizzle and very little steak. But what spectacular sizzle it is!...In this incarnation its fizz is infectious. An original gem about an obsession with time. It will delight newcomers to the story and those who know it from bygone days. Gloriously goofy (and gory) midnight movie stuff. The film overcomes the regular minefield of coming-of-age cliches with potent doses of honesty and sensitivity. If your senses haven't been dulled by slasher films and gorefests, if you're a connoisseur of psychological horror, this is your ticket. It's a minor comedy that tries to balance sweetness with coarseness, while it paints a sad picture of the singles scene. It is intensely personal and yet -- unlike Quills -- deftly shows us the temper of the times. As 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. Like 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. It'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. Far from perfect, but its heart is in the right place...innocent and well-meaning. A sad, superior human comedy played out on the back roads of life. Waydowntown is by no means a perfect film, but its boasts a huge charm factor and smacks of originality. Tim 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. More a load of enjoyable, Conan-esque claptrap than the punishing, special-effects soul assaults the Mummy pictures represent. Enormously likable, partly because it is aware of its own grasp of the absurd. Here's a British flick gleefully unconcerned with plausibility, yet just as determined to entertain you. It's an old story, but a lively script, sharp acting and partially animated interludes make Just a Kiss seem minty fresh. Must be seen to be believed. Ray Liotta and Jason Patric do some of their best work in their underwritten roles, but don't be fooled: Nobody deserves any prizes here. Everything 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. The year's happiest surprise, a movie that deals with a real subject in an always surprising way. Fans of Behan's work and of Irish movies in general will be rewarded by Borstal Boy. Its 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. The 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. Stephen Earnhart's homespun documentary Mule Skinner Blues has nothing but love for its posse of trailer park denizens. A solidly seaworthy chiller. If 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. There 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. A well-made thriller with a certain level of intelligence and non-reactionary morality. There's enough science to make it count as educational, and enough beauty to make it unforgettable. Remains a solid, if somewhat heavy-handed, account of the near-disaster...done up by Howard with a steady, if not very imaginative, hand. Makmalbaf follows a resolutely realistic path in this uncompromising insight into the harsh existence of the Kurdish refugees of Iran's borderlands. For a good chunk of its running time, Trapped is an effective and claustrophobic thriller. Most of Crush is a clever and captivating romantic comedy with a welcome pinch of tartness. Nair does capture the complexity of a big family and its trials and tribulations... The seaside splendor and shallow, beautiful people are nice to look at while you wait for the story to get going. Rare is the 'urban comedy' that even attempts the insight and honesty of this disarming indie. Ranks among Willams' best screen work. Engagingly captures the maddening and magnetic ebb and flow of friendship. An experience so engrossing it is like being buried in a new environment. It's traditional moviemaking all the way, but it's done with a lot of careful period attention as well as some very welcome wit. Maybe 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. A droll, well-acted, character-driven comedy with unexpected deposits of feeling. This is simply the most fun you'll ever have with a documentary! A very funny movie. Watching Haneke's film is, aptly enough, a challenge and a punishment. But watching Huppert, a great actress tearing into a landmark role, is riveting. A cop story that understands the medium amazingly well. Britney 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. Those outside show business will enjoy a close look at people they don't really want to know. The kind of nervous film that will either give you a mild headache or exhilarate you. Watching 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. Children may not understand everything that happens -- I'm not sure even Miyazaki himself does -- but they will almost certainly be fascinated, and undoubtedly delighted. A fascinating and fun film. Tadpole is a sophisticated, funny and good-natured treat, slight but a pleasure. This 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. I admired this work a lot. Whether you're moved and love it, or bored or frustrated by the film, you'll still feel something. ...there are enough moments of heartbreaking honesty to keep one glued to the screen. My 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. A smart, sweet and playful romantic comedy. Australian actor/director John Polson and award-winning English cinematographer Giles Nuttgens make a terrific effort at disguising the obvious with energy and innovation. Without heavy-handedness, Dong provides perspective with his intelligent grasp of human foibles and contradictions. Solid, lump-in-the-throat family entertainment that derives its power by sticking to the facts. As an entertainment, the movie keeps you diverted and best of all, it lightens your wallet without leaving a sting. It is interesting and fun to see Goodall and her chimpanzees on the bigger-than-life screen. It 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. A somewhat crudely constructed but gripping, questing look at a person so racked with self-loathing, he becomes an enemy to his own race. It extends the writings of Jean Genet and John Rechy, the films of Fassbinder, perhaps even the nocturnal works of Goya. Narc may not get an 'A' for originality, but it wears its B-movie heritage like a badge of honor. With the film's striking ending, one realizes that we have a long way to go before we fully understand all the sexual permutations involved. (Drumline) is entertaining for what it does, and admirable for what it doesn't do. At its best early on as it plays the culture clashes between the brothers. An unabashedly schmaltzy and thoroughly enjoyable true story. A thoughtful look at a painful incident that made headlines in 1995. You walk out of The Good Girl with mixed emotions -- disapproval of Justine combined with a tinge of understanding for her actions. Tsai Ming-liang has taken his trademark style and refined it to a crystalline point. Purely 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. Now trimmed by about 20 minutes, this lavish three-year-old production has enough grandeur and scale to satisfy as grown-up escapism. We get some truly unique character studies and a cross-section of Americana that Hollywood couldn't possibly fictionalize and be believed. Though this film can be clumsy, its ambitions are equally -- and admirably -- uncommercial. Daring, mesmerizing and exceedingly hard to forget. Moore's performance impresses almost as much as her work with Haynes in 1995's Safe. Visits 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. An absorbing, slice-of-depression life that touches nerves and rings true. Mr. 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. The result is something quite fresh and delightful. All but the most persnickety preteens should enjoy this nonthreatening but thrilling adventure. Despite its many infuriating flaws -- not the least of which is Amy's self-absorbed personality -- Amy's O's honesty will win you over. This is one of Polanski's best films. Day 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. Polished Korean political-action film is just as good -- and bad -- as Hollywood action epics. Is this progress? Elling, 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. Denis 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 An 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. I admired it, particularly that unexpected downer of an ending. The 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. Remarkably accessible and affecting. Never 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. A triumph of art direction over narrative, but what art direction! Behan 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. Jirí 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.. Moore'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. The 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. Though 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. You might not buy the ideas. But you'll definitely want the T-shirt. Provides an intriguing window into the imagination and hermetic analysis of Todd Solondz. Windtalkers 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. Presents an astute appraisal of Middle American musical torpor and the desperate struggle to escape it. Just what makes us happy, anyway? A thoughtful, moving piece that faces difficult issues with honesty and beauty. One of the greatest romantic comedies of the past decade. You 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. Benefits from a strong performance from Zhao, but it's Dong Jie's face you remember at the end. This 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. The director, Steven Shainberg, has succeeded by focusing intently on his characters, making them quirky individuals rather than figures of fun. It ultimately stands forth as an important chronicle of the abuses of one of Latin America's most oppressive regimes. The movie has a soft, percolating magic, a deadpan suspense. A well-made and often lovely depiction of the mysteries of friendship. Using 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. ... understands that a generation defines its music as much as the music defines a generation. The Transporter is as lively and as fun as it is unapologetically dumb As 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. Has it ever been possible to say that Williams has truly inhabited a character? It is now. By 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. An impressive debut for first-time writer-director Mark Romanek, especially considering his background is in music video. An incendiary, deeply thought-provoking look at one of the most peculiar (and peculiarly venomous) bigotries in our increasingly frightening theocracy All 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. ``its successes are also tempered with elements which prove the direct antithesis of what it gets right.'' It's solid and affecting and exactly as thought-provoking as it should be. This is such a dazzlingly self-assured directorial debut that it's hard to know what to praise first. Parker 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. Münch's genuine insight makes the film's occasional overindulgence forgivable. Thankfully, 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. Ultimately, the message of Trouble Every Day seems to be that all sexual desire disrupts life's stasis. If 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. The film has just enough of everything -- re-enactments, archival footage, talking-head interviews -- and the music is simply sublime. There 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. A wonderful character-based comedy. It would be interesting to hear from the other side, but in Talk to Her, the women are down for the count. An endearingly offbeat romantic comedy with a great meet-cute gimmick. The unique tug-of-war with viewer expectations is undeniable, if not a pleasure in its own right. It 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. It's almost impossible not to be moved by the movie's depiction of sacrifice and its stirring epilogue in post-Soviet Russia. Who knows what exactly Godard is on about in this film, but his words and images don't have to add up to mesmerize you. The tone is balanced, reflective and reasonable. The principals in this cast are all fine, but Bishop and Stevenson are standouts. It 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. What's most striking about this largely celebratory film ... is the sense of isolation that permeates these bastions of individuality in an Ikea world. ...if you're in a mind set for goofy comedy, the troopers will entertain with their gross outs, bawdy comedy and head games. Somewhat blurred, but Kinnear's performance is razor sharp. As a director, Mr. Ratliff wisely rejects the temptation to make fun of his subjects. For anyone who remembers the '60s or is interested in one man's response to stroke, Ram Dass: Fierce Grace is worth seeking out. Intriguing and beautiful film, but those of you who read the book are likely to be disappointed. The New Guy does have a heart. Now, if it only had a brain. A savvy exploration of paranoia and insecurity in America's culture of fear. Legendary Irish writer Brendan Behan's memoir, Borstal Boy, has been given a loving screen transferral. The film's greatest asset is how much it's not just another connect-the-dots, spy-on-the-run picture. This clever caper movie has twists worthy of David Mamet and is enormous fun for thinking audiences. It's one of the saddest films I have ever seen that still manages to be uplifting but not overly sentimental. Morton is, as usual, brilliant. Even with all those rough edges safely sanded down, the American Insomnia is still pretty darned good. I don't know precisely what to make of Steven Soderbergh's Full Frontal, though that didn't stop me from enjoying much of it. The tug of war that ensues is as much a snapshot of modern China in microcosm as it is a crash course in movie mythology. Nearly 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. You 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. Asia authors herself as Anna Battista, an Italian superstar and aspiring directress who just happens to be her own worst enemy. Roman 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. An amusing, breezily apolitical documentary about life on the campaign trail. High on melodrama. But it's emotionally engrossing, too, thanks to strong, credible performances from the whole cast. Finally, a genre movie that delivers -- in a couple of genres, no less. It'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. Spielberg 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. Post 9/11 the philosophical message of ``Personal Freedom First'' might not be as palatable as intended. Hu and Liu offer natural, matter-of-fact performances that glint with sorrow, longing and love. This 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. Easier to respect than enthuse over, Andersson's rigorous personal vision is not only distanced but distancing. Girls gone wild and gone civil again ...Tunney is allowed to build an uncommonly human character, an almost real-live girl complete with trouble and hope. While 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. Clever, brutal and strangely soulful movie. ... always remains movingly genuine. An intelligent fiction about learning through cultural clash. Will grab your children by the imagination and amaze them and amuse them. A remarkable 179-minute meditation on the nature of revolution. Those who would follow Haneke on his creepy explorations ... are rewarded by brutal, committed performances from Huppert and Magimel. An involving true story of a Chinese actor who takes up drugs and winds up in an institution--acted mostly by the actual people involved. Hands down the year's most thought-provoking film. But it pays a price for its intricate intellectual gamesmanship. It's a terrific American sports movie and Dennis Quaid is its athletic heart. This is such a high-energy movie where the drumming and the marching are so excellent, who cares if the story's a little weak. Compelling revenge thriller, though somewhat weakened by a miscast leading lady. It's amazingly perceptive in its subtle, supportive but unsentimental look at the Marks family. A whole lot foul, freaky and funny. Attal mixes comedy with a serious exploration of ego and jealousy within a seemingly serene marriage. The 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. The Pianist is a fine valedictory work for Polanski, made richer by his own experiences, making his other movies somehow richer in the bargain. Foster nails the role, giving a tight, focused performance illuminated by shards of feeling. Even if you can't pronounce ``gyro'' correctly, you'll appreciate much of Vardalos' humor, which transcends ethnic boundaries. Is office work really as alienating as 'Bartleby' so effectively makes it? Farrell ... thankfully manages to outshine the role and successfully plays the foil to Willis's world-weary colonel. Audiences 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. Bennett's dramatization of her personal descent into post-breakup perdition has a morbid appeal that's tough to shake. An intriguing and entertaining introduction to Johnson. As expected, Sayles' smart wordplay and clever plot contrivances are as sharp as ever, though they may be overshadowed by some strong performances. A model of what films like this should be like. As 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. Yeah, these flicks are just that damn good. Isn't it great? An unbelievably fun film just a leading man away from perfection. Over-the-top and a bit ostentatious, this is a movie that's got oodles of style and substance. ...a poignant and powerful narrative that reveals that reading writing and arithmetic are not the only subjects to learn in life. Nicely serves as an examination of a society in transition. A 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. As 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. Absorbing character study by André Turpin. Celebrated at Sundance, this slight comedy of manners has winning performances and a glossy, glib charm that's hard to beat. Renner's performance as Dahmer is unforgettable, deeply absorbing. If no one singles out any of these performances as award-worthy, it's only because we would expect nothing less from this bunch. If you love reading and/or poetry, then by all means check it out. You'll probably love it. Though 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. Energetic and boldly provocative. Star Wars is back in a major way. It's a movie -- and an album -- you won't want to miss. It'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. While not all transitions to adulthood are so fraught, there's much truth and no small amount of poetry in Girls Can't Swim. If 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. Jacquot's Tosca is a treat. By the end of No Such Thing the audience, like Beatrice, has a watchful affection for the monster. If 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. ...the gentle melding of drama and comedy makes ``What Time Is It There?'' something the true film buff will enjoy. Romanek keeps the film constantly taut...reflecting the character's instability with a metaphorical visual style and an unnerving, heartbeat-like score. I whole-heartedly recommend that everyone see this movie-- for its historical significance alone. Hey, who else needs a shower? Longley has constructed a remarkably coherent, horrifically vivid snapshot of those turbulent days. Although it bangs a very cliched drum at times, this crowd-pleaser's fresh dialogue, energetic music, and good-natured spunk are often infectious. Often gruelling and heartbreaking to witness, but Seldahl and Wollter's sterling performances raise this far above the level of the usual maudlin disease movie. Go see it and enjoy. The stunning, dreamlike visuals will impress even those viewers who have little patience for Euro-film pretension. George 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. There's a vastness implied in Metropolis that is just breathtaking. Murderous Maids may well be the most comprehensive of these films and also strike closest to the truth. The 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. As green-guts monster movies go, it's a beaut. As Bundy, Michael Reilly Burke (Octopus 2: River of Fear) has just the right amount of charisma and menace. A deceivingly simple film, one that grows in power in retrospect. Ana is a vivid, vibrant individual and the movie's focus upon her makes it successful and accessible. A slick, skillful little horror film. A very witty take on change, risk and romance, and the film uses humour to make its points about acceptance and growth. (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. Bubba 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. despite the long running time, the pace never feels slack -- there's no scene that screams ``bathroom break!'' Bullock does a good job here of working against her natural likability. A film of precious increments artfully camouflaged as everyday activities. Kinnear gives a tremendous performance. The best movie of its kind since 'Brazil.' Lucas, take notes. This is how you use special effects. ``Frailty'' has been written so well, that even a simple ``Goddammit!'' near the end takes on a whole other meaning. One 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. Kaufman creates an eerie sense of not only being there at the time of these events but the very night Matthew was killed. Chalk 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. Its 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. It represents better-than-average movie-making that doesn't demand a dumb, distracted audience. A charming yet poignant tale of the irrevocable ties that bind. An enchanting spectacular for Potter fans anxious to ride the Hogwarts Express toward a new year of magic and mischief. The talents of the actors helps ``Moonlight Mile'' rise above its heart-on-its-sleeve writing. It's a humble effort, but spiced with wry humor and genuine pathos, especially between Morgan and Redgrave. This 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. Dark and disturbing, but also surprisingly funny. The movie has an avalanche of eye-popping visual effects. Starts off with a bang, but then fizzles like a wet stick of dynamite at the very end. It's still worth a look. Most impressive, though, is the film's open-ended finale that refuses to entirely close its characters' emotional wounds. A hip ride into hyper-time, Clockstoppers is a lively and enjoyable adventure for all ages at any time. Grenier is terrific, bringing an unforced, rapid-fire delivery to Toback's Heidegger- and Nietzsche-referencing dialogue. ... a polished and relatively sincere piece of escapism. The 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. The 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. ...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. Long after you leave Justine, you'll be wondering what will happen to her and wishing her the best -- whatever that might mean. Still pretentious and filled with subtext, but entertaining enough at 'face value' to recommend to anyone looking for something different. Call me a wimp, but I cried, not once, but three times in this animated sweet film. Notorious C.H.O. has oodles of vulgar highlights. An 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. The level of maturity displayed by this 33-year-old first-time feature director is astonishing, considering her inexperience and her subject matter. A splendid entertainment, young in spirit but accomplished in all aspects with the fullness of spirit and sense of ease that comes only with experience. Disney's live-action division has a history of releasing cinematic flotsam, but this is one occasion when they have unearthed a rare gem. If the message seems more facile than the earlier films, the images have such a terrible beauty you may not care. Whether 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. There 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. There are moments it can be heart-rending in an honest and unaffected (and gentle) way. Stay clear of reminding yourself that it's a ``true story'' and you're likely to have one helluva time at the movies. There are just enough twists in the tale to make it far more satisfying than almost any horror film in recent memory. The 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. Working from Elliott's memoir, Rohmer fashions the sort of delicate, articulate character- and- relationship study he's favored for decades. The story feels more like a serious read, filled with heavy doses of always enticing Sayles dialogue. When it really counts ... Bloody Sunday connects on a visceral level that transcends language. The crime matters less than the characters, although the filmmakers supply enough complications, close calls and double-crosses to satisfy us. The actors are fantastic. They are what makes it worth the trip to the theatre. Ranging from funny to shattering and featuring some of the year's best acting, Personal Velocity gathers plenty of dramatic momentum. I 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. Recalls quiet freak-outs like L'Avventura and Repulsion. Only 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. ...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. A 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. The movie is one of the best examples of artful Large Format filmmaking you are likely to see anytime soon. Lends itself to the narcotizing bland (sinister, though not nearly so sinister as the biennial Disney girl movie) machinations of the biennial Disney boy movie. Well-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. Jason X has cheesy effects and a hoary plot, but its macabre, self-deprecating sense of humor makes up for a lot. (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. An impressive if flawed effort that indicates real talent. Two generations within one family test boundaries in this intelligent and restrained coming-of-age drama. it sounds sick and twisted, but the miracle of Shainberg's film is that it truly is romance Disturbing and brilliant documentary. ... mesmerizing, an eye-opening tour of modern Beijing culture in a journey of rebellion, retreat into oblivion and return. One 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. Not too far below the gloss you can still feel director Denis Villeneuve's beating heart and the fondness he has for his characters. As 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. (Villeneuve) seems to realize intuitively that even morality is reduced to an option by the ultimate mysteries of life and death. The result is mesmerizing -- filled with menace and squalor. Fisher has bared his soul and confronted his own shortcomings here in a way...that feels very human and very true to life. It's fun, but the code-talk will fly right over everyone's head Bourne, 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! What makes the movie a comedy is the way it avoids the more serious emotions involved. This cuddly sequel to the 1999 hit is a little more visually polished, a little funnier, and a little more madcap. The pleasures of Super Troopers may be fleeting, but they'll register strongly with anybody who still retains a soft spot for precollegiate humor. The film is exhilarating to watch because Sandler, liberated from the constraints of formula, reveals unexpected depths as an actor. A distant, even sterile, yet compulsively watchable look at the sordid life of Hogan's Heroes star Bob Crane. The 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. What might have been a predictably heartwarming tale is suffused with complexity. Sound the trumpets: For the first time since Desperately Seeking Susan, Madonna doesn't suck as an actress. Although 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. (``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. As the story moves inexorably through its seven day timeframe, the picture becomes increasingly mesmerizing. Maguire is a surprisingly effective Peter/Spider-Man. Not a cozy or ingratiating work, but it's challenging, sometimes clever, and always interesting, and those are reasons enough to see it. The film runs on equal parts of innocence and wisdom -- wisdom that comes with experience. It has fun being grown up. Like old myths and wonder tales spun afresh. Rarely do films come along that are as intelligent, exuberant, and moving as Monsoon Wedding. One scarcely needs the subtitles to enjoy this colorful action farce. Quite funny for the type of movie it is... It'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. One of (Herzog's) least inspired works. This 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. Elling really is about a couple of crazy guys, and it's therapeutic to laugh along with them. An irresistible combination of a rousing good story set on a truly grand scale. There's no denying the physically spectacular qualities of the film ... or the emotional integrity of the performances. Few films this year have been as resolute in their emotional nakedness. Exquisitely acted and masterfully if preciously interwoven... (the film) addresses in a fascinating, intelligent manner the intermingling of race, politics and local commerce. Stevenson's performance is at once clueless and fiercely committed, a volatile combination. This is a very fine movie -- go see it. As shaky as the plot is, Kaufman's script is still memorable for some great one-liners. Despite its flaws, Secretary stays in your head and makes you question your own firmly held positions. One of those rare, exhilarating cinematic delights that gets even better in hindsight, as you mull over its every nuance in your mind. Not everything works, but the average is higher than in Mary and most other recent comedies. A byzantine melodrama that stimulates the higher brain functions as well as the libido. A sensitive and expertly acted crowd-pleaser that isn't above a little broad comedy and a few unabashedly sentimental tears. The film's sharp, often mischievous sense of humor will catch some off guard... Does 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. Almost every scene in this film is a gem that could stand alone, a perfectly realized observation of mood, behavior and intent. A psychologically rich and suspenseful moral thriller with a stellar performance by Al Pacino. You 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. This version's no classic like its predecessor, but its pleasures are still plentiful. The Bourne Identity is what summer screen escapism used to be in the decades when it was geared more to grownups. Provide(s) nail-biting suspense and credible characters without relying on technology-of-the-moment technique or pretentious dialogue. If it tried to do anything more, it would fail and perhaps explode, but at this level of manic whimsy, it is just about right. Too sincere to exploit its subjects and too honest to manipulate its audience. The saturation bombing of Reggio's images and Glass' evocative music ... ultimately leaves viewers with the task of divining meaning. For 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. A 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. This road movie gives you emotional whiplash, and you'll be glad you went along for the ride. Sure, it's more of the same, but as the film proves, that's not always a bad thing. A lighthearted, feel-good film that embraces the time-honored truth that the most powerful thing in life is love. A bowel-curdling, heart-stopping recipe for terror. Daughter 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. Zhang 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. ...breathes surprising new life into the familiar by amalgamating genres and adding true human complexity to its not-so-stock characters. '...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.' A pleasant romantic comedy. It's a Count for our times. Greengrass has delivered an undoubted stylistic tour-de-force, and has managed elements such as sound and cinematography with skill Smith'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. A romantic comedy, yes, but one with characters who think and talk about their goals, and are working on hard decisions. Vividly conveys both the pitfalls and the pleasures of over-the-top love. ...a weak, manipulative, pencil-thin story that is miraculously able to entertain anyway. A pro-fat farce that overcomes much of its excessive moral baggage thanks to two appealing lead performances. For the first two-thirds of this sparklingly inventive and artful, always fast and furious tale, kids will go happily along for the ride. Majidi's poetic love story is a ravishing consciousness-raiser, if a bit draggy at times. The smartest bonehead comedy of the summer. Effectively feeds our senses with the chilling sights and sounds from within the camp to create a completely numbing experience. I love the way that it took chances and really asks you to take these great leaps of faith and pays off. In his debut as a film director, Denzel Washington delivers a lean and engaging work. Only two words will tell you what you know when deciding to see it: Anthony. Hopkins. The movie's quiet affirmation of neighborhood values gives it an honest, lived-in glow. A 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. Hayek is stunning as Frida and...a star-making project. It's both a necessary political work and a fascinating documentary... Hilarious, acidic Brit comedy. As a revenge thriller, the movie is serviceable, but it doesn't really deliver the delicious guilty pleasure of the better film versions. An ironic speculation on democracy in a culture unaccustomed to it. It's not life-affirming -- its vulgar and mean, but I liked it. Several degrees shy of the gross-out contests one expects from current teen fare. The inherent strength of the material as well as the integrity of the filmmakers gives this coming-of-age story restraint as well as warmth. Led by Griffin's smartly nuanced performance and enthusiasm, the cast has a lot of fun with the material. Tuck Everlasting achieves a delicate balance of romantic innocence and philosophical depth. A gentle blend of present day testimonials, surviving footage of Burstein and his family performing, historical archives, and telling stills. A Generation X artifact, capturing a brief era of insanity in the sports arena that surely cannot last. Possession is Elizabeth Barrett Browning meets Nancy Drew, and it's directed by... Neil LaBute. Hmm. An uneven but intriguing drama that is part homage and part remake of the Italian masterpiece. Windtalkers celebrates the human spirit and packs an emotional wallop. Having never been a huge fan of Dickens' 800-page novel, it surprised me how much pleasure I had watching McGrath's version. The best thing the film does is to show us not only what that mind looks like, but how the creative process itself operates. For all its failed connections, Divine Secrets of the Ya-Ya Sisterhood is nurturing, in a gauzy, dithering way. This is pretty dicey material. But some unexpected zigs and zags help. The filmmakers skillfully evoke the sense of menace that nature holds for many urban dwellers. The laser-projected paintings provide a spell-casting beauty, while Russell and Dreyfus are a romantic pairing of hearts, preciously exposed as history corners them. You don't have to be an especially tough grader to give a charitable B-minus to The Emperor's Club. This romantic thriller is steeped in the atmosphere of wartime England, and ably captures the speech patterns, moral codes and ideals of the 1940s. Divine 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. Viewed 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. A journey through memory, a celebration of living, and a sobering rumination on fatality, classism, and ignorance. Resourceful and ingenious entertainment. ``Antwone Fisher'' is an earnest, by-the-numbers effort by Washington. It won't rock any boats but is solid meat-and-potatoes filmmaking. A historical epic with the courage of its convictions about both scope and detail. We need (Moore's) noisy, cocky energy, his passion and class consciousness; we need his shticks, we need his stones. Although the editing might have been tighter, Hush! sympathetically captures the often futile lifestyle of young people in modern Japan. (Gai) comes closer to any actress I can remember to personifying independence in its purest and, yes, most intimidating form. These are lives worth watching, paths worth following. It's rather like a Lifetime special -- pleasant, sweet and forgettable. A moody horror/thriller elevated by deft staging and the director's well-known narrative gamesmanship. As a singular character study, it's perfect. It's also the year's sweetest movie. A graceful, contemplative film that gradually and artfully draws us into a world where the personal and the political get fatally intertwined. While not as aggressively impressive as its American counterpart, ``In the Bedroom,'' Moretti's film makes its own, quieter observations The experience of watching blobby old-school CGI animation in this superlarge format is just surreal enough to be diverting. Time 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 ``The Emperor's New Clothes'' begins with a simple plan....Well, at least that's the plan. Haynes 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. (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. While the glass slipper doesn't quite fit, Pumpkin is definitely a unique modern fairytale. The drama is played out with such aching beauty and truth that it brings tears to your eyes. An exciting and involving rock music doc, a smart and satisfying look inside that tumultuous world. An offbeat, sometimes gross and surprisingly appealing animated film about the true meaning of the holidays. This version incarnates the prophetic book in a way even its exacting author might admire. Sometimes, nothing satisfies like old-fashioned swashbuckling. And in this regard, On Guard delivers. ... ambition is in short supply in the cinema, and Egoyan tackles his themes and explores his characters' crises with seriousness and compassion. An impossible romance, but we root for the patronized Iranian lad. Like Dickens with his passages, McGrath crafts quite moving scenes throughout his resolutely dramatic variation on the novel. There's a disreputable air about the whole thing, and that's what makes it irresistible. an 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 A carefully structured scream of consciousness that is tortured and unsettling--but unquestionably alive. A quietly reflective and melancholy New Zealand film about an eventful summer in a 13-year-old girl's life. Cute, 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. very solid, very watchable first feature for director Peter Sheridan a budget affair that exposes the generally sad existence of the Bedouins while providing a precious twinkle of insight into their lives. It 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. Workmanlike, maybe, but still a film with all the elements that made the other three great, scary times at the movies. A pleasant enough comedy that should have found a summer place. Branagh, in his most forceful non-Shakespeare screen performance, grounds even the softest moments in the angry revolt of his wit. Though the violence is far less sadistic than usual, the film is typical Miike: fast, furious and full of off-the-cuff imaginative flourishes. Compelling as it is exotic, Fast Runner has a plot that rivals Shakespeare for intrigue, treachery and murder. What it lacks in originality it makes up for in intelligence and B-grade stylishness. The warm presence of Zhao Benshan makes the preposterous lying hero into something more than he reasonably should be. This 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. Director Rob Marshall went out gunning to make a great one. Skip work to see it at the first opportunity. Bow's best moments are when he's getting busy on the basketball court because that's when he really scores. Offers enough playful fun to entertain the preschool set while embracing a wholesome attitude. In 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. An intimate, good-humored ethnic comedy like numerous others but cuts deeper than expected. Ice Cube holds the film together with an engaging and warm performance... Both deeply weird and charmingly dear. As blunt as it is in depicting child abuse, El Bola is a movie steeped in an ambiguity that lends its conflicts a symbolic resonance. Despite 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. An incredibly low-rent Danish film, it brings a group of people together in a sweet and charming way, if a little convenient It's the cinematic equivalent of a good page-turner, and even if it's nonsense, its claws dig surprisingly deep. Director 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. What ``Empire'' lacks in depth it makes up for with its heart. Claude Miller airs out a tight plot with an easy pace and a focus on character drama over crime-film complications. What 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... Rich in detail, gorgeously shot and beautifully acted, Les Destinees is, in its quiet, epic way, daring, inventive and refreshingly unusual. (A) Hollywood sheen bedevils the film from the very beginning...(but) Lohman's moist, deeply emotional eyes shine through this bogus veneer... Do 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? Ford deserves to be remembered at Oscar time for crafting this wonderful portrait of a conflicted soldier. The film's 45-minute running time stops shy of overkill, though viewers may be more exhausted than the athletes onscreen. Don't expect any surprises in this checklist of teamwork cliches... As 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 The movie addresses a hungry need for PG-rated, nonthreatening family movies, but it doesn't go too much further. This 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. A yarn that respects the Marvel version without becoming ensnared by it. This is a happy throwback to the time when cartoons were cinema's most idiosyncratic form instead of one of its most predictable. Complex, affecting and uniquely Almodóvar, the film evokes strong emotions and pushes viewers to question their deepest notions of moral right and wrong. Good ol' urban legend stuff. Not 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. It's one of the most honest films ever made about Hollywood. It 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. On its own cinematic terms, it successfully showcases the passions of both the director and novelist Byatt. Light, silly, photographed with colour and depth, and rather a good time. Pray's film works well and will appeal even to those who aren't too familiar with turntablism. Good movie. Good actress. But if you expect light romantic comedy, good gosh, will you be shocked. It 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. With youthful high spirits, Tautou remains captivating throughout Michele's religious and romantic quests, and she is backed by a likable cast. It'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. A very funny look at how another culture handles the process of courting and marriage. But 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... Much of the movie's charm lies in the utter cuteness of Stuart and Margolo. Their computer-animated faces are very expressive. The 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. Anchored by a terrific performance by Abbass, Satin Rouge shows that the idea of women's self-actualization knows few continental divides. Awkward but sincere and, ultimately, it wins you over. Smith 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. Though the plot is predictable, the movie never feels formulaic, because the attention is on the nuances of the emotional development of the delicate characters. Sam 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. Goyer's screenplay and direction are thankfully understated, and he has drawn excellent performances from his cast. Binoche and Magimel are perfect in these roles. When 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. While Undercover Brother is definitely one for the masses, it's also full of sharp, smart satire. Gets under the skin of a man who has just lost his wife. No wonder they're talking about ``Talk to Her.'' It's astonishing. For its seriousness, high literary aspirations and stunning acting, the film can only be applauded. Look, this is a terrific flick replete with dazzling camera-work, dancing and music. It is inspirational in characterizing how people from such diverse cultures share the same human and spiritual needs. It's fairly self-aware in its dumbness. A triumph, relentless and beautiful in its downbeat darkness. Tailored to entertain! A compelling, moving film that respects its audience and its source material. has a plot full of twists upon knots...and a nonstop parade of mock-Tarantino scuzbag types that starts out clever but veers into overkill. A work of astonishing delicacy and force. The film benefits greatly from a less manic tone than its predecessor, as Cho appears to have settled comfortably into her skin. For 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. Isn'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. The film hinges on its performances, and both leads are up to the task. An intelligent, earnest, intimate film that drops the ball only when it pauses for blunt exposition to make sure you're getting its metaphysical point. A modest pleasure that accomplishes its goals with ease and confidence. A breezy, diverting, conventional, well-acted tale of two men locked in an ongoing game of cat-and-cat. What Jackson has accomplished here is amazing on a technical level. As teen movies go, ``Orange County'' is a refreshing change Makes S&M seem very romantic, and Maggie Gyllenhaal is a delight. A deliciously mordant, bitter black comedy. Although 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. It is risky, intelligent, romantic and rapturous from start to finish. The movie sticks much closer to Hornby's drop-dead confessional tone than the film version of High Fidelity did. A pleasant ramble through the sort of idoosyncratic terrain that Errol Morris has often dealt with...it does possess a loose, lackadaisical charm. ...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) This is a raw and disturbing tale that took five years to make, and the trio's absorbing narrative is a heart-wrenching showcase indeed. A beautiful and haunting examination of the stories we tell ourselves to make sense of the mundane horrors of the world. Aside from being the funniest movie of the year, Simone, Andrew Niccol's brilliant anti-Hollywood satire, has a wickedly eccentric enchantment to it. Watstein handily directs and edits around his screenplay's sappier elements ... and sustains Off the Hook's buildup with remarkable assuredness for a first-timer. Just another fish-out-of-water story that barely stays afloat. There's an energy to Y Tu Mamá También. Much of it comes from the brave, uninhibited performances by its lead actors. It's the kind of pigeonhole-resisting romp that Hollywood too rarely provides. Reinforces 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. You can feel the heat that ignites this gripping tale, and the humor and humanity that root it in feeling. It'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. A movie for 11-year-old boys with sports dreams of their own and the preteen girls who worship Lil' Bow Wow. A refreshingly authentic coming-of-age tale. If 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. From the big giant titles of the opening credits to Elmer Bernstein's perfectly melodic score, Haynes gets just about everything right. Whether 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. Has a shambling charm...a cheerfully inconsequential diversion. Ferrara directs the entire film with the kind of detachment that makes any given frame look like a family's custom-made Christmas card. The movie has lots of dancing and fabulous music. There are slow and repetitive parts, but it has just enough spice to keep it interesting. An incredibly clever and superbly paced caper filled with scams within scams within scams. There's not much more to this adaptation of the Nick Hornby novel than charm -- effortless, pleasurable, featherweight charm. As 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. Even 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. Not as distinctive or even as humorous as its needs to be to stand out, but it has clearly been made with affection and care. This is Carion's debut feature but his script and direction hums with a confidence that many spend entire careers trying to reach. An intelligent, moving and invigorating film. ... one of the most ingenious and entertaining thrillers I've seen in quite a long time. A clever blend of fact and fiction. A vivid cinematic portrait. Hilarious, touching and wonderfully dyspeptic. Theirs is a simple and heart-warming story, full of mirth that should charm all but the most cynical. The film is an enjoyable family film -- pretty much aimed at any youngster who loves horses. A frisky and fresh romantic comedy exporing sexual politics and the challenges of friendships between women. It's a good film -- not a classic, but odd, entertaining and authentic. Flavorful and romantic, you could call this How Martha Got Her Groove Back -- assuming, that is, she ever had one to begin with. Happily 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. Thurman and Lewis are hilarious throughout. the plot is so amusingly contrived and outlandish in its coincidences that no one could ever mistake it for anything resembling reality Hits one out of the park for the 'they don't make 'em like that anymore' department. It dares to be a little different, and that shading is what makes it worthwhile. (Fessenden) is much more into ambiguity and creating mood than he is for on screen thrills The comic performances are all spot on, especially Lee Ross's turn as Ken. a compelling journey...and ``His Best Friend Remembers'' is up there with the finest of specials. At nearly three hours, the whole of Safe Conduct is less than the sum of its parts. The 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... A 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. Pretty darn good, despite its smarty-pants aura. So young, so smart, such talent, such a wise ***. Woo's fights have a distinct flair. His warriors collide in balletic explosion that implies an underlying order throughout the chaos. Barney has created a tour de force that is weird, wacky and wonderful. The ending does leave you unfulfilled, but these are performances to enjoy in a memorable ensemble piece. ... an agreeable time-wasting device -- but George Pal's low-tech 1960 version still rules the epochs. It'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. Offers 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. I don't think I've been as entranced and appalled by an Asian film since Shinya Tsukamoto's Iron Man. It 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. Director 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. Lilia's transformation from strict mother to sensual siren is superficially preposterous, but Abbas infuses the role with an unimpeachable core of emotional truth. Frida's artistic brilliance is undeniable -- it's among the most breathtakingly designed films I've ever seen. The perfect film for those who like sick comedies that can be snide. 'Charly' will divide its audience in two separate groups, those reaching for more tissues and those begging for mercy... Nervy and sensitive, it taps into genuine artistic befuddlement, and at the same time presents a scathing indictment of what drives Hollywood. A marvellous journey from childhood idealism to adolescent self-absorption. The film is just a big, gorgeous, mind-blowing, breath-taking mess. Sharp, lively, funny and ultimately sobering film. Though the film's scenario is certainly not earthshaking, this depiction of fluctuating female sexuality has two winning lead performances and charm to spare. A worthy tribute to a great humanitarian and her vibrant 'co-stars.' A 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. The 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. Occasionally funny and consistently odd, and it works reasonably well as a star vehicle for Zhao. Bright seems alternately amused and disgusted with this material, and he can't help throwing in a few of his own touches. The 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. Andersson creates a world that's at once surreal and disturbingly familiar; absurd, yet tremendously sad. It's predictable, but it jumps through the expected hoops with style and even some depth. Often hilarious, well-shot and, importantly, entertaining, Hell House is a fascinating document of an event that has to be seen to be believed. De 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. ...an inviting piece of film. The 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. The 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. A deviant topical comedy which is funny from start to finish. A startling and fresh examination of how the bike still remains an ambiguous icon in Chinese society. A 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 As Hugh Grant says repeatedly throughout the movie, 'Lovely! Brilliant!' Cho'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. Works because, for the most part, it avoids the stupid cliches and formulaic potholes that befall its brethren. At its best, The Good Girl is a refreshingly adult take on adultery... An amazing and incendiary movie that dives straight into the rough waters of contradiction. About nowhere kids who appropriated turfs as they found them and become self-made celebrity athletes -- a low-down version of the American dream. Occasionally, in the course of reviewing art-house obscurities and slam-bam action flicks, a jaded critic smacks into something truly new. A miniscule little bleep on the film radar, but one that many more people should check out ``13 Conversations'' holds its goodwill close, but is relatively slow to come to the point. A slick, well-oiled machine, exquisitely polished and upholstered. Don't plan on the perfect ending, but Sweet Home Alabama hits the mark with critics who escaped from a small town life. It has a subtle way of getting under your skin and sticking with you long after it's over. The movie stays afloat thanks to its hallucinatory production design. It helps that the central performers are experienced actors, and that they know their roles so well. A provocative movie about loss, anger, greed, jealousy, sickness and love. Worth the effort to watch. That rara avis: the intelligent romantic comedy with actual ideas on its mind. Boisterous and daft documentary. Hawke 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. A 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. Full Frontal is the antidote for Soderbergh fans who think he's gone too commercial since his two Oscar nominated films in 2000 It turns out to be a cut above the norm, thanks to some clever writing and sprightly acting. You might not want to hang out with Samantha, but you'll probably see a bit of yourself in her unfinished story. A work of intricate elegance, literary lyricism and profound common sense. It's as close as we'll ever come to looking through a photographer's viewfinder as he works. Thoughtful, provocative and entertaining. Witty, touching and well paced. Lee Jeong-Hyang tells it so lovingly and films it so beautifully that I couldn't help being captivated by it. You 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. Enjoy it for what it is; you can hate yourself later. A map of the inner rhythms of love and jealousy and sacrifice drawn with a master's steady stroke. A psychological thriller with a smart script and an obsessive-compulsive's attention to detail. Grant 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. At 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. Westfeldt and Juergensen exude a chemistry and comfort level that's both saucy and endearing. Harsh, effective documentary on life in the Israeli-occupied Palestinian territories. The film is all a little Lit Crit 101, but it's extremely well played and often very funny. Earns 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. A real story about real people living their lives concerned about the future of an elderly, mentally handicapped family member. It's absolutely spooky how Lillard channels the Shagster right down to the original Casey Kasem-furnished voice. A dream cast of solid female talent who build a seamless ensemble. There isn't a weak or careless performance amongst them. Smart science fiction for grown-ups, with only a few false steps along the way. It's a refreshing change from the self-interest and paranoia that shape most American representations of Castro. Often moving and explores the discomfort inherent in the contacts between the American 'hosts' and their 'guests.' Though 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. Lathan and Diggs have considerable personal charm, and their screen rapport makes the old story seem new. The story may not be new, but Australian director John Polson, making his American feature debut, jazzes it up adroitly. It'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. The film often achieves a mesmerizing poetry. More than makes up for its mawkish posing by offering rousing spates of genuine feeling. It'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. Occasionally funny, always very colorful and enjoyably overblown in the traditional Almodóvar style. Merchant effectively translates Naipaul's lively mix of characters from the page to screen. Some movies are like a tasty hors-d'oeuvre; this one is a feast. What 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. Davis has filled out his cast with appealing fresh faces. Achieves a sort of filmic epiphany that revels in the true potential of the medium. Once you get into its rhythm ... the movie becomes a heady experience. ``Auto Focus'' works as an unusual biopic and document of male swingers in the Playboy era If Mr. Zhang's subject matter is, to some degree at least, quintessentially American, his approach to storytelling might be called Iranian. A fast-moving and remarkable film that appears destined to become a landmark in Japanese animation. ...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. A worthy entry into a very difficult genre. (Broomfield) uncovers a story powerful enough to leave the screen sizzling with intrigue. Eight Crazy Nights is a showcase for Sandler's many talents. A sweet-natured reconsideration of one of San Francisco's most vital, if least widely recognized, creative fountainheads. This 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. Everywhere the camera looks there is something worth seeing. A richly imagined and admirably mature work from a gifted director who definitely has something on his mind. It's a nicely detailed world of pawns, bishops and kings, of wagers in dingy backrooms or pristine forests. A 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. It never fails to engage us. Its 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. A charming romantic comedy that is by far the lightest Dogme film and among the most enjoyable. This is the kind of movie that used to be right at home at the Saturday matinee, and it still is. The spark of special anime magic here is unmistakable and hard to resist. Like its two predecessors, 1983's Koyaanisqatsi and 1988's Powaqqatsi, the cinematic collage Naqoyqatsi could be the most navel-gazing film ever. Baran 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. The visuals alone make Metropolis worth seeing. Dark, resonant, inventively detailed and packed with fleet turns of plot and a feast of visual amazement. A picture that extols the virtues of comradeship and community in a spunky, spirited fashion. A resonant tale of racism, revenge and retribution. Noyce's film is contemplative and mournfully reflective. Here, Adrian Lyne comes as close to profundity as he is likely to get. Evokes 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. Rain is a small treasure, enveloping the viewer in a literal and spiritual torpor that is anything but cathartic. An elegant, exquisitely modulated psychological thriller. This concoction, so bizarre to the adult mind, is actually a charming triumph where its intended under-12 audience is concerned. Droll 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.'' It's a beautifully accomplished lyrical meditation on a bunch of despondent and vulnerable characters living in the renown Chelsea Hotel ... Is it a total success? No. Is it something any true film addict will want to check out? You bet. Zany, exuberantly irreverent animated space adventure. Dolgin 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. The disarming cornball atmosphere has a way of infecting the entire crowd as the film rolls on. A refreshingly honest and ultimately touching tale of the sort of people usually ignored in contemporary American film. Search it out. Engrossing and affecting, if ultimately not quite satisfying. The story, like life, refuses to be simple, and the result is a compelling slice of awkward emotions. A 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. Funny and, at times, poignant, the film from director George Hickenlooper all takes place in Pasadena, ``a city where people still read.'' This horror-comedy doesn't go for the usual obvious laughs at the expense of cheap-looking monsters -- unless you count Elvira's hooters. The movie's eventual success should be credited to Dennis Quaid, in fighting trim shape as an athlete as well as an actor Not a bad journey at all. Sits uneasily as a horror picture ... but finds surprising depth in its look at the binds of a small family. Windtalkers blows this way and that, but there's no mistaking the filmmaker in the tall grass, true to himself. There is a refreshing absence of cynicism in Stuart Little 2--quite a rarity, even in the family film market. Eventually, it wins you over. Noyce films it more as a shocking history lesson than as drama. Like a south-of-the-border Melrose Place. Those with an interest in new or singular sorts of film experiences will find What Time Is It There? well worth the time. A wildly funny prison caper. Huppert 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. Despite 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. You'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. The actors are so terrific at conveying their young angst, we do indeed feel for them. The reason this picture works better than its predecessors is that Myers is no longer simply spoofing the mini-mod-madness of '60s spy movies. It 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. a compelling portrait of moral emptiness In Adobo, ethnicity is not just the spice, but at the heart of more universal concerns. It is ridiculous, of course... but it is also refreshing, disarming, and just outright enjoyable despite its ridiculousness. ... Blade II is more enjoyable than the original. A film that takes you inside the rhythms of its subject: You experience it as you watch. The movie exists for its soccer action and its fine acting. The movie is saved from unbearable lightness by the simplicity of the storytelling and the authenticity of the performances. The film starts out as competent but unremarkable ... and gradually grows into something of considerable power. Nothing 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. Reinforces the talents of screenwriter Charlie Kaufman, creator of Adaptation and Being John Malkovich. Greene 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. Finds a way to tell a simple story, perhaps the simplest story of all, in a way that seems compelling and even original. A 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. This is art paying homage to art. ... a joke at once flaky and resonant, lightweight and bizarrely original. Invincible is a wonderful movie. ... 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. Dazzling and sugar-sweet, a blast of shallow magnificence that only sex, scandal, and a chorus line of dangerous damsels can deliver. Occasionally amateurishly made but a winsome cast and nice dialogue keeps it going. Japan's premier stylist of sex and blood hits audiences with what may be his most demented film to date. Culkin, who's in virtually every scene, shines as a young man who uses sarcastic lies like a shield. Cuts 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. The AM-radio soundtrack and game cast -- Tierney and the inimitable Walken especially -- keep this unusual comedy from choking on its own conceit. ...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. Marvelous, merry and, yes, melancholy film. From spiritual rebirth to bruising defeat, Vincent's odyssey resonates in a profound way, comparable to the classic films of Jean Renoir. Novak 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. Insomnia is involving. Still, I thought it could have been more. There was time on that second round to see the subtleties of Ramsay's portrait of grief. We 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. A comprehensive and provocative film -- one that pushes the boundaries of biography, and challenges its audience. The way Coppola professes his love for movies -- both colorful pop junk and the classics that unequivocally qualify as art -- is giddily entertaining. A worthwhile way to spend two hours. Francophiles will snicker knowingly and you'll want to slap them. Sensitive, insightful and beautifully rendered film. One of the best of the year. A love for films shines through each frame and the era is recreated with obvious affection, scored to perfection with some tasty boogaloo beats. Throwing 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. Makes an aborbing if arguable case for the man's greatness. An endlessly fascinating, landmark movie that is as bold as anything the cinema has seen in years. ...a haunting vision, with images that seem more like disturbing hallucinations. It is not a mass-market entertainment but an uncompromising attempt by one artist to think about another. Frailty isn't as gory or explicit. But in its child-centered, claustrophobic context, it can be just as frightening and disturbing -- even punishing. Mixes 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. The long-range appeal of ``Minority Report'' should transcend any awards it bags. This is one for the ages. (A) superbly controlled, passionate adaptation of Graham Greene's 1955 novel. Much monkeyfun for all. An 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. (Hawn's character)is so bluntly written, without a trace of sentimentality, and so blisteringly defined, that every other character seems overlooked and underwritten. The heightened symmetry of this new/old Cinema Paradiso makes the film a fuller experience, like an old friend haunted by the exigencies of time. The Powers team has fashioned a comedy with more laughs than many, no question. But this time there's some mold on the gold. While surprisingly sincere, this average little story is adorned with some awesome action photography and surfing. It 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. A film that is a portrait of grace in an imperfect world. A pleasurably jacked-up piece of action moviemaking. Nicolas 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. A perverse little truffle, dainty psychological terror on the outside with a creamy filling of familial jealousy and unrepentant domestic psychopathy. This ecologically minded, wildlife friendly film teaches good ethics while entertaining with its unconventionally wacky but loving family An enjoyably half-wit remake of the venerable Italian comedy Big Deal on Madonna Street. It 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. Reign of Fire may be little more than another platter of reheated Aliens, but it's still pretty tasty. There 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. Two 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. This cheery, down-to-earth film is warm with the cozy feeling of relaxing around old friends. Thrilling, provocative and darkly funny, this timely sci-fi mystery works on so many different levels that it not only invites, it demands repeated viewings. A tale of horror and revenge that is nearly perfect in its relentless descent to the depths of one man's tortured soul. An epic of grandeur and scale that's been decades gone from the popcorn pushing sound stages of Hollywood. Genuinely touching because it's realistic about all kinds of love. Lauren 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. There has been much puzzlement among critics about what the election symbolizes. I believe the message is in the messenger: The agent is a woman. An enjoyable film for the family, amusing and cute for both adults and kids. ``The Mothman Prophecies'' is a difficult film to shake from your conscience when night falls. The second chapter of the Harry Potter series is even more magical than the first and simply the best family film of the year. More honest about Alzheimer's disease, I think, than Iris. The acting alone is worth the price of admission. An excellent romp that boasts both a heart and a mind. Interacting eyeball-to-eyeball and toe-to-toe, Hopkins and Norton are a winning combination -- but Fiennes steals 'Red Dragon' right from under their noses. This is a terrific character study, a probe into the life of a complex man. Impresses you with its open-endedness and surprises. This 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. My oh my, is this an invigorating, electric movie. The two leads chomp considerably more scenery with their acting than fire-breathing monsters barbecue with their breath... Cedar takes a very open-minded approach to this sensitive material, showing impressive control, both visually and in the writing. Biggie and Tupac is so single-mindedly daring, it puts far more polished documentaries to shame. So many documentaries like this presuppose religious bigotry or zealous nuttiness of its antagonists, but Family Fundamentals displays a rare gift for unflinching impartiality. The cast is uniformly excellent and relaxed. After making several adaptations of other writers' work, Armenian-Canadian director Atom Egoyan broached an original treatment of a deeply personal subject. The film is painfully authentic, and the performances of the young players are utterly convincing. If 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. A 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. Fans of the animated wildlife adventure show will be in warthog heaven; others need not necessarily apply. Without resorting to hyperbole, I can state that Kissing Jessica Stein may be the best same-sex romance I have seen. Nolan bravely treads where few American films dare to delve -- into the world of ambivalence and ambiguity... Unlike 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. A potent allegorical love story. Even those who would like to dismiss the film outright should find much to mull and debate. This is cool, slick stuff, ready to quench the thirst of an audience that misses the summer blockbusters. The movie is full of fine performances, led by Josef Bierbichler as Brecht and Monica Bleibtreu as Helene Weigel, his wife. A captivating cross-cultural comedy of manners. Andy Garcia enjoys one of his richest roles in years and Mick Jagger gives his best movie performance since, well, Performance. The 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. It's (Ricci's) best work yet, this girl-woman who sincerely believes she can thwart the world's misery with blind good will. Highlights are the terrific performances by Christopher Plummer, as the prime villain, and Nathan Lane as Vincent Crummles, the eccentric theater company manager. (Howard) so good as Leon Barlow ... that he hardly seems to be acting. Superior genre storytelling, which gets under our skin simply by crossing the nuclear line. By taking Entertainment Tonight subject matter and giving it humor and poignancy, Auto Focus becomes both gut-bustingly funny and crushingly depressing. It's a bittersweet and lyrical mix of elements. Subversive, meditative, clinical and poetic, The Piano Teacher is a daring work of genius. The weakest of the four Harry Potter books has been transformed into the stronger of the two films by the thinnest of margins. Its 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. It further declares its director, Zhang Yang of Shower, as a boldly experimental, contemporary stylist with a bright future. Smith'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. Full of profound, real-life moments that anyone can relate to, it deserves a wide audience. A movie that will touch the hearts of both children and adults, as well as bring audiences to the edge of their seats. Leave 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. Fine acting but there is no sense of connecting the dots, just dots. An extraordinary Swedish film about the soul adventure of marriage -- the kind of intimate and character-driven film that Bille August does best. A 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. It took 19 predecessors to get THIS? Thoughtful, even stinging at times, and lots of fun. One of the most haunting, viciously honest coming-of-age films in recent memory. The WWII drama is well plotted, visually striking and filled with enjoyably complex characters who are never what they first appear. It's a pleasure to see Seinfeld griping about the biz with buddies Chris Rock, Garry Shandling and Colin Quinn. If you love Motown music, you'll love this documentary. This time out, (Sade) is an unsettlingly familiar figure -- in turns loyal and deceitful, responsible and reckless, idealistically selfless and coldly self-interested. Human Resources was a good, straightforward tale, but Time Out is better. It's haunting. It's like a poem. To the film's credit, the acting is fresh and unselfconscious, and Munch is a marvel of reality versus sappy sentiment. Chicago is, in many ways, an admirable achievement. Shainberg weaves a carefully balanced scenario that is controlled by neither character, is weirdly sympathetic to both and manages to be tender and darkly comic. Even when foreign directors ... borrow stuff from Hollywood, they invariably shake up the formula and make it more interesting. A cockamamie tone poem pitched precipitously between swoony lyricism and violent catastrophe... the most aggressively nerve-wracking and screamingly neurotic romantic comedy in cinema history. Sturdy, entertaining period drama ... both Caine and Fraser have their moments. Whether (Binoche and Magimel) are being charming or angst-ridden, they easily fill their scenes and, fine judges both, never overcook the hysteria. A spunky, original take on a theme that will resonate with singles of many ages. It's a glorious groove that leaves you wanting more. Majidi gets uniformly engaging performances from his largely amateur cast. ...a well-observed and disturbing little movie Fans of Nijinsky will savor every minute of Cox's work. Everything 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. Jagger the actor is someone you want to see again. Escapism in its purest form. There 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. A comic gem with some serious sparkles. U.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. ``Cremaster 3'' should come with the warning ``For serious film buffs only!'' Once again, director Jackson strikes a rewarding balance between emotion on the human scale and action/effects on the spectacular scale. A loving little film of considerable appeal. Although it's a bit smug and repetitive, this documentary engages your brain in a way few current films do. Flawed but worthy look at life in U.S. relocation camps. It's a lovely film with lovely performances by Buy and Accorsi. No 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. A warm, funny, engaging film. Uses sharp humor and insight into human nature to examine class conflict, adolescent yearning, the roots of friendship and sexual identity. Half Submarine flick, Half Ghost Story, All in one criminally neglected film Entertains by providing good, lively company. Dazzles with its fully-written characters, its determined stylishness (which always relates to characters and story) and Johnny Dankworth's best soundtrack in years. Visually 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. Nothing's at stake, just a twisty double-cross you can smell a mile away--still, the derivative Nine Queens is lots of fun. Unlike the speedy wham-bam effect of most Hollywood offerings, character development -- and more importantly, character empathy -- is at the heart of Italian for Beginners. You'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. The band's courage in the face of official repression is inspiring, especially for aging hippies (this one included). Although 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. A beguiling splash of pastel colors and prankish comedy from Disney. As surreal as a dream and as detailed as a photograph, as visually dexterous as it is at times imaginatively overwhelming. (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. The film serves as a valuable time capsule to remind us of the devastating horror suffered by an entire people. What'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. Whether 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. ... an otherwise intense, twist-and-turn thriller that certainly shouldn't hurt talented young Gaghan's resume. It provides the grand, intelligent entertainment of a superior cast playing smart people amid a compelling plot. There's ... tremendous energy from the cast, a sense of playfulness and excitement that seems appropriate. It 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. A deep and meaningful film. The film's welcome breeziness and some unbelievably hilarious moments -- most portraying the idiocy of the film industry -- make it mostly worth the trip. It's a remarkably solid and subtly satirical tour de force. Enormously entertaining for moviegoers of any age. A poignant, artfully crafted meditation on mortality. A rarity among recent Iranian films: It's a comedy full of gentle humor that chides the absurdity of its protagonist's plight. Not 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. In a way, the film feels like a breath of fresh air, but only to those that allow it in. Woody Allen's latest is an ambling, broad comedy about all there is to love -- and hate -- about the movie biz. It's a stunning lyrical work of considerable force and truth. The 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æs) directed the stage version of Elling, and gets fine performances from his two leads who originated the characters on stage. Made 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. A 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. Like 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. (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. Here'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. You won't like Roger, but you will quickly recognize him. And that's a big part of why we go to the movies. While 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. We know the plot's a little crazy, but it held my interest from start to finish. A sober and affecting chronicle of the leveling effect of loss. A fast, funny, highly enjoyable movie. A celebration of quirkiness, eccentricity, and certain individuals' tendency to let it all hang out, and damn the consequences. Writer/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. A smart, witty follow-up. While the ideas about techno-saturation are far from novel, they're presented with a wry dark humor. An infectious cultural fable with a tasty balance of family drama and frenetic comedy. Although occasionally static to the point of resembling a stage play, the film delivers a solid mixture of sweetness and laughs. It provides an honest look at a community striving to anchor itself in new grounds. Add yet another hat to a talented head, Clooney's a good director. Building 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. Ultimately feels empty and unsatisfying, like swallowing a Communion wafer without the wine. Chilling, well-acted, and finely directed: David Jacobson's Dahmer. A swashbuckling tale of love, betrayal, revenge and above all, faith. Without ever becoming didactic, director Carlos Carrera expertly weaves this novelistic story of entangled interrelationships and complex morality. It'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. A literate presentation that wonderfully weaves a murderous event in 1873 with murderous rage in 2002. Makes even the claustrophobic on-board quarters seem fun. This is as respectful a film as Byatt fans could hope for, though lovers of the book may wonder why it's necessary. One of the best films of the year with its exploration of the obstacles to happiness faced by five contemporary individuals...a psychological masterpiece. Not far beneath the surface, this reconfigured tale asks disturbing questions about those things we expect from military epics. For the most part Stevens glides through on some solid performances and witty dialogue. Broomfield turns his distinctive 'blundering' style into something that could really help clear up the case. Against all odds in heaven and hell, it creeped me out just fine. It's refreshing to see a girl-power movie that doesn't feel it has to prove anything. It's worth seeing just on the basis of the wisdom, and at times, the startling optimism, of the children. A rigorously structured and exquisitely filmed drama about a father and son connection that is a brief shooting star of love. This 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. A quiet treasure -- a film to be savored. May 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. A 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. Huston nails both the glad-handing and the choking sense of hollow despair. may not have generated many sparks, but with his affection for Astoria and its people he has given his tale a warm glow. A delirious celebration of the female orgasm. Exquisitely 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. It's fascinating to see how Bettany and McDowell play off each other. The 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. Leigh's film is full of memorable performances from top to bottom. One of the most significant moviegoing pleasures of the year. Jose 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. Generally, Clockstoppers will fulfill your wildest fantasies about being a different kind of time traveler, while happily killing 94 minutes. The 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. Neither Parker nor Donovan is a typical romantic lead, but they bring a fresh, quirky charm to the formula. It'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. Not 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. Jaglom ... put(s) the audience in the privileged position of eavesdropping on his characters Beautifully observed, miraculously unsentimental comedy-drama. A must-see for the David Mamet enthusiast and for anyone who appreciates intelligent, stylish moviemaking. Crackerjack entertainment -- nonstop romance, music, suspense and action. The acting, costumes, music, cinematography and sound are all astounding given the production's austere locales. García Bernal and Talancón are an immensely appealing couple, and even though their story is predictable, you'll want things to work out. Far more imaginative and ambitious than the trivial, cash-in features Nickelodeon has made from its other animated TV series. The very definition of the 'small' movie, but it is a good stepping stone for director Sprecher. A gripping, searing portrait of a lost soul trying to find her way through life. Suffers from the lack of a compelling or comprehensible narrative. Still, as a visual treat, the film is almost unsurpassed. So unassuming and pure of heart, you can't help but warmly extend your arms and yell 'Safe!' An intriguing cinematic omnibus and round-robin that occasionally is more interesting in concept than in execution. So 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. At 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. The magic of the film lies not in the mysterious spring but in the richness of its performances. Hoffman 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. What better message than 'love thyself' could young women of any size receive? The 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. 84 minutes of rolling musical back beat and supercharged cartoon warfare. It's also, clearly, great fun. ...takes the beauty of baseball and melds it with a story that could touch anyone regardless of their familiarity with the sport Seldahl's Barbara is a precise and moving portrait of someone whose world is turned upside down, first by passion and then by illness. A warm but realistic meditation on friendship, family and affection. Byler reveals his characters in a way that intrigues and even fascinates us, and he never reduces the situation to simple melodrama. Turns potentially forgettable formula into something strangely diverting. Bogdanovich tantalizes by offering a peep show into the lives of the era's creme de la celluloid. People cinema at its finest. The performances take the movie to a higher level. what 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. ...a spoof comedy that carries its share of laughs – sometimes a chuckle, sometimes a guffaw and, to my great pleasure, the occasional belly laugh. Manages to transcend the sex, drugs and show-tunes plot into something far richer. Dense with characters and contains some thrilling moments. LaPaglia's ability to convey grief and hope works with Weaver's sensitive reactions to make this a two-actor master class. Reign of Fire looks as if it was made without much thought -- and is best watched that way. Altogether, this is successful as a film, while at the same time being a most touching reconsideration of the familiar masterpiece. We root for (Clara and Paul), even like them, though perhaps it's an emotion closer to pity. The best film about baseball to hit theaters since Field of Dreams. Instead of a hyperbolic beat-charged urban western, it's an unpretentious, sociologically pointed slice of life. the film tunes into a grief that could lead a man across centuries. If 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. (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. As a tolerable diversion, the film suffices; a Triumph, however, it is not. If director Michael Dowse only superficially understands his characters, he doesn't hold them in contempt. If your taste runs to 'difficult' films you absolutely can't miss it. (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. ... 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. Like Leon, it's frustrating and still oddly likable. All in all, The Count of Monte Cristo is okay, but it is surely no classic, like the novel upon which it is based. If you can stomach the rough content, it's worth checking out for the performances alone. Looking aristocratic, luminous yet careworn in Jane Hamilton's exemplary costumes, Rampling gives a performance that could not be improved upon. '...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.' On this tricky topic, Tadpole is very much a step in the right direction, with its blend of frankness, civility and compassion. Fun, flip and terribly hip bit of cinematic entertainment. Montias ... pumps a lot of energy into his nicely nuanced narrative and surrounds himself with a cast of quirky -- but not stereotyped -- street characters. Falls neatly into the category of Good Stupid Fun. The film's performances are thrilling. Even in its most tedious scenes, Russian Ark is mesmerizing. The 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. Reggio's continual visual barrage is absorbing as well as thought-provoking. Unfortunately, it appears that (Jackie) Chan's US influence is starting to show in his Hong Kong films. It all adds up to good fun. A big, gorgeous, sprawling swashbuckler that delivers its diversions in grand, uncomplicated fashion. The 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. A stunning and overwhelmingly cogent case for Kissinger as a calculating war criminal. Sade is an engaging look at the controversial eponymous and fiercely atheistic hero. a quiet, pure, elliptical film Kinnear doesn't aim for our sympathy, but rather delivers a performance of striking skill and depth. The subtle strength of ``Elling'' is that it never loses touch with the reality of the grim situation. A study in shades of gray, offering itself up in subtle plot maneuvers... The format gets used best ... to capture the dizzying heights achieved by motocross and BMX riders, whose balletic hotdogging occasionally ends in bone-crushing screwups. Has a lot of the virtues of Eastwood at his best. Chilling but uncommercial look into the mind of Jeffrey Dahmer, serial killer. Though it's become almost redundant to say so, major kudos go to Leigh for actually casting people who look working-class. It deserves to be seen by anyone with even a passing interest in the events shaping the world beyond their own horizons. A movie that reminds us of just how exciting and satisfying the fantasy cinema can be when it's approached with imagination and flair. Thanks 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. Nine 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. It'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. Will amuse and provoke adventurous adults in specialty venues. You don't have to know about music to appreciate the film's easygoing blend of comedy and romance. A film about a young man finding God that is accessible and touching to the marrow. For the first time in years, De Niro digs deep emotionally, perhaps because he's been stirred by the powerful work of his co-stars. The film's snags and stumblings are more than compensated for by its wryly subversive tone. Inside 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. The 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. An 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. Having 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. A subtle and well-crafted (for the most part) chiller. Warm Water Under a Red Bridge is a quirky and poignant Japanese film that explores the fascinating connections between women, water, nature, and sexuality. Although laced with humor and a few fanciful touches, the film is a refreshingly serious look at young women. The 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. A 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. Highbrow self-appointed guardians of culture need not apply, but those who loved Cool as Ice have at last found a worthy follow-up. One of creepiest, scariest movies to come along in a long, long time, easily rivaling Blair Witch or The Others. Maud 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. Pacino is brilliant as the sleep-deprived Dormer, his increasing weariness as much existential as it is physical. Rare Birds has more than enough charm to make it memorable. Manages to be sweet and wickedly satisfying at the same time. This 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. No sophomore slump for director Sam Mendes, who segues from Oscar winner to Oscar-winning potential with a smooth sleight of hand. The movie isn't just hilarious: It's witty and inventive, too, and in hindsight, it isn't even all that dumb. Old-form moviemaking at its best. Ahhhh ... revenge is sweet! Yakusho and Shimizu ... create engaging characterizations in Imamura's lively and enjoyable cultural mix. You 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. Ruzowitzky has taken this mothball-y stuff and made a rather sturdy, old-fashioned entertainment out of it. In spite of Good Housekeeping's unsavory characters and WWF mentality, this white trash War of the Roses is a surprisingly engaging film. Collateral Damage finally delivers the goods for Schwarzenegger fans. There has always been something likable about the Marquis de Sade. As a first-time director, Paxton has tapped something in himself as an actor that provides Frailty with its dark soul. For the most part, director Anne-Sophie Birot's first feature is a sensitive, extraordinarily well-acted drama. By 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. This riveting World War II moral suspense story deals with the shadow side of American culture: racial prejudice in its ugly and diverse forms. A tender, heartfelt family drama. A 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. For the most part, it's a work of incendiary genius, steering clear of knee-jerk reactions and quick solutions. It has the charm of the original American road movies, feasting on the gorgeous, ramshackle landscape of the filmmaker's motherland. (Chaiken's) talent lies in an evocative, accurate observation of a distinctive milieu and in the lively, convincing dialogue she creates for her characters. In all, this is a watchable movie that's not quite the memorable experience it might have been. Huppert's superbly controlled display of murderous vulnerability ensures that malice has a very human face. My 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. One of the more intelligent children's movies to hit theaters this year. Remember the kind of movie we were hoping ``Ecks vs. Sever'' or ``xXx'' was going to be? This is it. Not for the prurient or squeamish, it's a daring if overlong examination of an idolized culture, self-loathing and sexual politics. A 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. The 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. Travels a fascinating arc from hope and euphoria to reality and disillusionment. There'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. For anyone unfamiliar with pentacostal practices in general and theatrical phenomenon of Hell Houses in particular, it's an eye-opener. It seems like I have been waiting my whole life for this movie and now I can't wait for the sequel. It's a bit disappointing that it only manages to be decent instead of dead brilliant. An operatic, sprawling picture that's entertainingly acted, magnificently shot and gripping enough to sustain most of its 170-minute length. The 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. It inspires a continuing and deeply satisfying awareness of the best movies as monumental 'picture shows.' Awesome creatures, breathtaking scenery, and epic battle scenes add up to another 'spectacular spectacle.' By 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. It's unnerving to see Recoing's bizzarre reaction to his unemployment. Good film, but very glum. Much as we might be interested in gratuitous sexualization, Haneke has a different objective in mind--namely the implications of our craving for fake stimulation. Dazzling 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... It has charm to spare, and unlike many romantic comedies, it does not alienate either gender in the audience. Although 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. It is great summer fun to watch Arnold and his buddy Gerald bounce off a quirky cast of characters. Bleakly funny, its characters all the more touching for refusing to pity or memorialize themselves. It will not appeal to the impatient, but those who like long books and movies will admire the way it accumulates power and depth. This flick is about as cool and crowd-pleasing as a documentary can get. ``The Ring'' is pretty much an English-language copy of the film that inspired it, and it carries the same strengths and flaws. The Wild Thornberrys Movie is a jolly surprise. Griffiths proves she's that rare luminary who continually raises the standard of her profession. Prancing his way through the tailor-made part of a male hooker approaching the end of his vitality, Jagger obviously relishes every self-mocking moment. Offers much to enjoy ... and a lot to mull over in terms of love, loyalty and the nature of staying friends. An important movie, a reminder of the power of film to move us and to make us examine our values. Is this love or is it masochism? Binoche makes it interesting trying to find out. The mesmerizing performances of the leads keep the film grounded and keep the audience riveted. Worth watching for Dong Jie's performance -- and for the way it documents a culture in the throes of rapid change. Two 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. It's one heck of a character study -- not of Hearst or Davies but of the unique relationship between them. Candid Camera on methamphetamines. A subject like this should inspire reaction in its audience; The Pianist does not. Equilibrium is what George Orwell might have imagined had today's mood-altering drug therapy been envisioned by chemists in 1949. Creepy, authentic and dark.This disturbing bio-pic is hard to forget. Martin 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. A twisty, moody slice of Southern Gothic... It'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. The weight of the piece, the unerring professionalism of the chilly production, and the fascination embedded in the lurid topic prove recommendation enough. An absurdist comedy about alienation, separation and loss. '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. This 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. ...with ``The Bourne Identity'' we return to the more traditional action genre. Beneath Clouds is a succinct low-budget film whose compelling characters and intelligent script are exactly what was missing from Rabbit-Proof Fence. The film is a contrivance, as artificial as the video games Japanese teens play in a nightclub sequence, but it's an enjoyable one. Holm ... embodies the character with an effortlessly regal charisma. It is amusing, and that's all it needs to be. Among the year's most intriguing explorations of alientation. A full world has been presented onscreen, not some series of carefully structured plot points building to a pat resolution. Seldom has a movie so closely matched the spirit of a man and his work. Audrey 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. The 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. Even 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. The 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. It's made with deftly unsettling genre flair. It just may inspire a few younger moviegoers to read Stevenson's book, which is a treasure in and of itself. Funny but perilously slight. Overall very good for what it's trying to do. Forgettable horror -- more gory than psychological -- with a highly satisfying quotient of Friday-night excitement and Milla power. Ramsay, 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. It may seem long at 110 minutes if you're not a fan, because it includes segments of 12 songs at a reunion concert. A lean, deftly shot, well-acted, weirdly retro thriller that recalls a raft of '60s and '70s European-set spy pictures. It proves quite compelling as an intense, brooding character study. The Son's Room is a triumph of gentility that earns its moments of pathos. Morton uses her face and her body language to bring us Morvern's soul, even though the character is almost completely deadpan. The 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 A superbly acted and funny/gritty fable of the humanizing of one woman at the hands of the unseen forces of fate. One of the smartest takes on singles culture I've seen in a long time. There is a fabric of complex ideas here, and feelings that profoundly deepen them. CQ'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. The emotions are raw and will strike a nerve with anyone who's ever had family trauma. Holy mad maniac in a mask, Splat-Man! Good old-fashioned slash-and-hack is back! As unseemly as its title suggests. The French are rather good at this kind of thing, unlike the Americans, who have a passion for Musketeers, only to spoof them. The 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. It's an offbeat treat that pokes fun at the democratic exercise while also examining its significance for those who take part. Allows us to hope that Nolan is poised to embark a major career as a commercial yet inventive filmmaker. Maneuvers skillfully through the plot's hot brine -- until it's undone by the sogginess of its contemporary characters, and actors. It has the ability to offend and put off everyone, but it holds you with its outrageousness. Anchored by Friel and Williams's exceptional performances, the film's power lies in its complexity. Nothing is black and white. It's a charming and often affecting journey. No screen fantasy-adventure in recent memory has the showmanship of Clones' last 45 minutes. A poignant and compelling story about relationships, Food of Love takes us on a bumpy but satisfying journey of the heart. The Chateau cleverly probes the cross-cultural differences between Gauls and Yanks. Not since Tom Cruise in Risky Business has an actor made such a strong impression in his underwear. Aside from minor tinkering, this is the same movie you probably loved in 1994, except that it looks even better. Uses high comedy to evoke surprising poignance. It confirms Fincher's status as a film maker who artfully bends technical know-how to the service of psychological insight. Vera's three actors -- Mollà, Gil and Bardem -- excel in insightful, empathetic performances. A marvel like none you've seen. With tightly organized efficiency, numerous flashbacks and a constant edge of tension, Miller's film is one of 2002's involvingly adult surprises. Mr. 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. Writer/director Mark Romanek spotlights the underlying caste system in America. It's a scathing portrayal. This 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. Moody, heartbreaking, and filmed in a natural, unforced style that makes its characters seem entirely convincing even when its script is not. Not a film to rival To Live, but a fine little amuse-bouche to keep your appetite whetted. True tale of courage -- and complicity -- at Auschwitz is a harrowing drama that tries to tell of the unspeakable. Gives 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. MacDowell, whose wifty Southern charm has anchored lighter affairs ... brings an absolutely riveting conviction to her role. What 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. if 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. Although the level of the comedy declines as the movie proceeds, there's no denying the fun of watching De Niro and Crystal having fun. Claude Chabrol has here a thriller without thrills, but that's okay. For movie lovers as well as opera lovers, Tosca is a real treat. Unflinchingly bleak and desperate Moretti's compelling anatomy of grief and the difficult process of adapting to loss. Challenging, intermittently engrossing and unflaggingly creative. But it's too long and too convoluted and it ends in a muddle. The vivid lead performances sustain interest and empathy, but the journey is far more interesting than the final destination. A painfully funny ode to bad behavior. 'Easily my choice for one of the year's best films.' Charles' 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. That dogged good will of the parents and `vain' Jia's defoliation of ego, make the film touching despite some doldrums. The movie is for fans who can't stop loving anime, and the fanatical excess built into it. The 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. A densely constructed, highly referential film, and an audacious return to form that can comfortably sit among Jean-Luc Godard's finest work. Michael Gerbosi's script is economically packed with telling scenes. A strangely compelling and brilliantly acted psychological drama. Candid and comfortable; a film that deftly balances action and reflection as it lets you grasp and feel the passion others have for their work. Open-minded kids -- kids who read, kids who dream -- will be comforted by the way it deals with big issues like death and destiny. Bennett's naturalistic performance speaks volumes more truth than any 'reality' show, and anybody contemplating their own drastic life changes should watch Some Body first. ... a good, if not entirely fresh, look at war. The film is powerful, accessible and funny. You won't miss its messages, but you'll be entertained as well. ``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. If you dig on David Mamet's mind tricks...rent this movie and enjoy! The 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. It 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. A gorgeous, high-spirited musical from India that exquisitely blends music, dance, song, and high drama. It's hard to imagine Alan Arkin being better than he is in this performance. For 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. Despite the 2-D animation, The Wild Thornberrys Movie makes for a surprisingly cinematic experience. ... a fun little timewaster, helped especially by the cool presence of Jean Reno. (Majidi) makes us think twice about immigrants we see around us every day. Though only 60 minutes long, the film is packed with information and impressions. I 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. Immersing us in the endlessly inventive, fiercely competitive world of hip-hop DJs, the project is sensational and revelatory, even if scratching makes you itch. Further proof that the epicenter of cool, beautiful, thought-provoking foreign cinema is smack-dab in the middle of Dubya's Axis of Evil. There's really only one good idea in this movie, but the director runs with it and presents it with an unforgettable visual panache. A simple, but gritty and well-acted ensemble drama that encompasses a potent metaphor for a country still dealing with its fascist past. Lovely and poignant. Puts a human face on a land most Westerners are unfamiliar with. I 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. Displaying about equal amounts of naiveté, passion and talent, Beneath Clouds establishes Sen as a filmmaker of considerable potential. The vitality of the actors keeps the intensity of the film high, even as the strafings blend together. Not since Japanese filmmaker Akira Kurosawa's Ran have the savagery of combat and the specter of death been visualized with such operatic grandeur. We learn a lot about dying coral and see a lot of life on the reef. If the first Men in Black was money, the second is small change. But it still jingles in the pocket. It's fun lite. Passable 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. I just loved every minute of this film. This 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. Just as moving, uplifting and funny as ever. My 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. It will grip even viewers who aren't interested in rap, as it cuts to the heart of American society in an unnerving way. A muckraking job, the cinematic equivalent of a legal indictment, and a fairly effective one at that. A tender, witty, captivating film about friendship, love, memory, trust and loyalty. Belongs 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. An 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 A 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. While 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. Pumpkin 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. If you're hard up for raunchy college humor, this is your ticket right here. Few 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. Corny, 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. While 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. Feature debuter D.J. Caruso directs a crack ensemble cast, bringing screenwriter Tony Gayton's narcotics noir to life. Every dance becomes about seduction, where backstabbing and betrayals are celebrated, and sex is currency. Harris commands the screen, using his frailty to suggest the ravages of a life of corruption and ruthlessness. Stephen 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. Director of photography Benoit Delhomme shot the movie in delicious colors, and the costumes and sets are grand. The movie's relatively simple plot and uncomplicated morality play well with the affable cast. The film is quiet, threatening and unforgettable. This illuminating documentary transcends our preconceived vision of the Holy Land and its inhabitants, revealing the human complexities beneath. deliriously funny, fast and loose, accessible to the uninitiated, and full of surprises Trademark 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. One from the heart. More 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. An entertaining, colorful, action-filled crime story with an intimate heart. While 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. The most compelling Wiseman epic of recent years. The socio-histo-political treatise is told in earnest strides... (and) personal illusion is deconstructed with poignancy. It's great escapist fun that recreates a place and time that will never happen again. Good car chases, great fight scenes, and a distinctive blend of European, American and Asian influences. Liotta put on 30 pounds for the role, and has completely transformed himself from his smooth, Goodfellas image. A woman's pic directed with resonance by Ilya Chaiken. (Grant's) bumbling magic takes over the film, and it turns out to be another winning star vehicle. ...Brian De Palma is utterly mad: cinema mad, set-piece mad, style mad. It's a beautiful madness. Generally provides its target audience of youngsters enough stimulating eye and ear candy to make its moral medicine go down. There are some wonderfully fresh moments that smooth the moral stiffness with human kindness and hopefulness. A grimly competent and stolid and earnest military courtroom drama. Escaping the studio, Piccoli is warmly affecting and so is this adroitly minimalist movie. Very psychoanalytical -- provocatively so -- and also refreshingly literary. A gorgeous, witty, seductive movie. The 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. On 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. With Rabbit-Proof Fence, Noyce has tailored an epic tale into a lean, economical movie. (A)n utterly charming and hilarious film that reminded me of the best of the Disney comedies from the 60s. Preaches to two completely different choirs at the same time, which is a pretty amazing accomplishment. Thanks 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. Birthday Girl is an amusing joy ride, with some surprisingly violent moments. More romantic, more emotional and ultimately more satisfying than the teary-eyed original. An appealingly juvenile trifle that delivers its share of laughs and smiles. Writer-director's Mehta's effort has tons of charm and the whimsy is in the mixture, the intoxicating masala, of cultures and film genres. The draw (for ``Big Bad Love'') is a solid performance by Arliss Howard. It 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. The terrific and bewilderingly underrated Campbell Scott gives a star performance that is nothing short of mesmerizing. Cool? This movie is a snow emergency. Like Mike isn't interested in recycling old cliches. It wants to tweak them with a taste of tangy new humor. Smith is careful not to make fun of these curious owners of architectural oddities. Instead, he shows them the respect they are due. A mess when it comes to the characters and writing...but works its way underneath the skin like few movies have in recent memory. Drops 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. Zhang ... has done an amazing job of getting realistic performances from his mainly nonprofessional cast. A solid examination of the male midlife crisis. If you're in the mood for a Bollywood film, here's one for you. As the two leads, Lathan and Diggs are charming and have chemistry both as friends and lovers. A beguiling, slow-moving parable about the collision of past and present on a remote seacoast in Iran. My Big Fat Greek Wedding uses stereotypes in a delightful blend of sweet romance and lovingly dished out humor. Kept aloft largely by a comically adept ensemble. The sort of film that makes me miss Hitchcock, but also feel optimistic that there's hope for popular cinema yet. First-time writer-director Serry shows a remarkable gift for storytelling with this moving, effective little film. It 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. Atom Egoyan has conjured up a multilayered work that tackles any number of fascinating issues essentially an exceptionally well-written, well-edited, well-directed, well-acted, bald rip-off of Aliens. 'De Niro...is a veritable source of sincere passion that this Hollywood contrivance orbits around.' The whole is quite entertaining, but despite its virtues, there is an unsettled feeling to the film. While its careful pace and seemingly opaque story may not satisfy every moviegoer's appetite, the film's final scene is soaringly, transparently moving. Hardly a masterpiece, but it introduces viewers to a good charitable enterprise and some interesting real people. Based on a devilishly witty script by Heather McGowan and Niels Mueller, the film gets great laughs, but never at the expense of its characters It'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. If you've ever wondered what an ending without the input of studio executives or test audiences would look like, here it is. Exciting and direct, with ghost imagery that shows just enough to keep us on our toes. Whether 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. What 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. If you enjoy more thoughtful comedies with interesting conflicted characters; this one is for you. The 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. This film seems thirsty for reflection, itself taking on adolescent qualities. Another 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. A breezy romantic comedy that has the punch of a good sitcom, while offering exceptionally well-detailed characters. A romantic comedy enriched by a sharp eye for manners and mores. Viewers of ``The Ring'' are more likely to remember the haunting images than the plot holes. A delightful coming-of-age story. One of those energetic surprises, an original that pleases almost everyone who sees it. An exquisitely crafted and acted tale. A taut psychological thriller that doesn't waste a moment of its two-hour running time. Jones ... does offer a brutal form of charisma. Despite its title, Punch-Drunk Love is never heavy-handed. The jabs it employs are short, carefully placed and dead-center. There's a wickedly subversive bent to the best parts of Birthday Girl. Likely to expertly drum up repressed teenage memories in any viewer. Blanchett's performance confirms her power once again. ...a magnificent drama well worth tracking down. A good piece of work more often than not. The 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. What 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. Smart, provocative and blisteringly funny. Nothing is sacred in this gut-buster. The 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. Filmmakers who can deftly change moods are treasures and even marvels. So, too, is this comedy about mild culture clashing in today's New Delhi. If Steven Soderbergh's 'Solaris' is a failure it is a glorious failure. ``Mostly Martha'' is a bright, light modern day family parable that wears its heart on its sleeve for all to see. It's a scattershot affair, but when it hits its mark it's brilliant. A pleasant enough romance with intellectual underpinnings, the kind of movie that entertains even as it turns maddeningly predictable. Featuring a dangerously seductive performance from the great Daniel Auteuil, ``Sade'' covers the same period as Kaufmann's ``Quills'' with more unsettlingly realistic results. A spellbinding African film about the modern condition of rootlessness, a state experienced by millions around the globe. It's a work by an artist so in control of both his medium and his message that he can improvise like a jazzman. A 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. A very well-made, funny and entertaining picture. A giggle-inducing comedy with snappy dialogue and winning performances by an unlikely team of Oscar-winners: Susan Sarandon and Goldie Hawn. Its 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. Oscar 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. The movie does a good job of laying out some of the major issues that we encounter as we journey through life. Brilliantly explores the conflict between following one's heart and following the demands of tradition. This remake gets all there is to get out of a peculiar premise with promise: Al Pacino loathing Robin Williams. The next generation of mob movie. Part low rent Godfather. Part Three Stooges. Lan 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. A thinly veiled look at different aspects of Chinese life clashing with each other. Light 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. If 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. The Lion King was a roaring success when it was released eight years ago, but on Imax it seems better, not just bigger. A gripping movie, played with performances that are all understated and touching. The piece plays as well as it does thanks in large measure to Anspaugh's three lead actresses. The inspirational screenplay by Mike Rich covers a lot of ground, perhaps too much, but ties things together, neatly, by the end. Not 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. Director Andrew Niccol...demonstrates a wry understanding of the quirks of fame. His healthy sense of satire is light and fun.... About a manga-like heroine who fights back at her abusers, it's energetic and satisfying if not deep and psychological. This is human comedy at its most amusing, interesting and confirming. An artful, intelligent film that stays within the confines of a well-established genre. Majidi is an unconventional storyteller, capable of finding beauty in the most depressing places. Richard Gere and Diane Lane put in fine performances as does French actor Oliver Martinez. The minor figures surrounding (Bobby) ... form a gritty urban mosaic. This 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. It'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. There 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. All-in-all, the film is an enjoyable and frankly told tale of a people who live among us, but not necessarily with us. An 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.'' A movie with a real anarchic flair. A welcome relief from baseball movies that try too hard to be mythic, this one is a sweet and modest and ultimately winning story. A crisp psychological drama (and) a fascinating little thriller that would have been perfect for an old ``Twilight Zone'' episode. It has more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing. Opening with some contrived banter, cliches and some loose ends, the screenplay only comes into its own in the second half. An uncluttered, resonant gem that relays its universal points without lectures or confrontations. '(The Cockettes) provides a window into a subculture hell-bent on expressing itself in every way imaginable.' A smart, steamy mix of road movie, coming-of-age story and political satire. The 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. A terrific B movie -- in fact, the best in recent memory. ``Birthday Girl'' is an actor's movie first and foremost. I walked away from this new version of E.T. just as I hoped I would -- with moist eyes. For devotees of French cinema, Safe Conduct is so rich with period minutiae it's like dying and going to celluloid heaven. What's really so appealing about the characters is their resemblance to everyday children. Shamelessly 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 An absurdist spider web. If 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. This 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. Some 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. Allen's funniest and most likeable movie in years. It's a glorious spectacle like those D.W. Griffith made in the early days of silent film. This comic gem is as delightful as it is derivative. More 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. The 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. With 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. The production has been made with an enormous amount of affection, so we believe these characters love each other. Certainly the performances are worthwhile. Winds 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. Watching these eccentrics is both inspiring and pure joy. Steven Spielberg brings us another masterpiece Finally, the French-produced ``Read My Lips'' is a movie that understands characters must come first. Ms. Seigner and Mr. Serrault bring fresh, unforced naturalism to their characters. Allen shows he can outgag any of those young whippersnappers making moving pictures today. A good film with a solid pedigree both in front of and, more specifically, behind the camera. By 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. I encourage young and old alike to go see this unique and entertaining twist on the classic whale's tale -- you won't be sorry! A literary detective story is still a detective story and aficionados of the whodunit won't be disappointed. High Crimes steals so freely from other movies and combines enough disparate types of films that it can't help but engage an audience. If you're a fan of the series you'll love it and probably want to see it twice. I will be. It celebrates the group's playful spark of nonconformity, glancing vividly back at what Hibiscus grandly called his 'angels of light.' The 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. Laced with liberal doses of dark humor, gorgeous exterior photography, and a stable-full of solid performances, No Such Thing is a fascinating little tale. Huppert'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. Nair doesn't treat the issues lightly. She allows each character to confront their problems openly and honestly. One of the best silly horror movies of recent memory, with some real shocks in store for unwary viewers. The 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. Has a certain ghoulish fascination, and generates a fair amount of B-movie excitement. Familiar but utterly delightful. A fascinating, dark thriller that keeps you hooked on the delicious pulpiness of its lurid fiction. The film aims to be funny, uplifting and moving, sometimes all at once. The extent to which it succeeds is impressive. The film brilliantly shines on all the characters, as the direction is intelligently accomplished. While 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. As 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. In 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. Jeffrey Tambor's performance as the intelligent jazz-playing exterminator is Oscar-worthy. From the opening strains of the Average White Band's ``Pick up the Pieces'', you can feel the love. Stevens' vibrant creative instincts are the difference between this and countless other flicks about guys and dolls. that it'll probably be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture Old 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. Meyjes' provocative film might be called an example of the haphazardness of evil. Tian emphasizes the isolation of these characters by confining color to Liyan's backyard. The movie is pretty funny now and then without in any way demeaning its subjects. imagine a scenario where Bergman approaches Swedish fatalism using Gary Larson's Far Side humor Too damn weird to pass up, and for the blacklight crowd, way cheaper (and better) than Pink Floyd tickets. It is most remarkable not because of its epic scope, but because of the startling intimacy it achieves despite that breadth. It'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! The 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. Others, 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. Miller tells this very compelling tale with little fuss or noise, expertly plucking tension from quiet. Time Out is existential drama without any of the pretension associated with the term. It's a sweet, laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth. Writer/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. A movie that at its best doesn't just make the most out of its characters' flaws but insists on the virtue of imperfection. It's tough to watch, but it's a fantastic movie. The best animated feature to hit theaters since Beauty and the Beast 11 years ago. What saves this deeply affecting film from being merely a collection of wrenching cases is Corcuera's attention to detail. Pacino is the best he's been in years and Keener is marvelous. A solid, spooky entertainment worthy of the price of a ticket. By turns fanciful, grisly and engagingly quixotic. ... very funny, very enjoyable ... Adaptation is intricately constructed and in a strange way nails all of Orlean's themes without being a true adaptation of her book. So purely enjoyable that you might not even notice it's a fairly straightforward remake of Hollywood comedies such as Father of the Bride. Moonlight 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. The 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. Robin Williams has thankfully ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side. If you're willing to have fun with it, you won't feel cheated by the high infidelity of Unfaithful. Australia: Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place. Hoffman's performance is authentic to the core of his being. Told just proficiently enough to trounce its overly comfortable trappings. An enthralling aesthetic experience, one that's steeped in mystery and a ravishing, baroque beauty. The quirky drama touches the heart and the funnybone thanks to the energetic and always surprising performance by Rachel Griffiths. A captivating coming-of-age story that may also be the first narrative film to be truly informed by the wireless age. What could have been a daytime soap opera is actually a compelling look at a young woman's tragic odyssey. Duvall is strong as always. A no-holds-barred cinematic treat. You'd have to be a most hard-hearted person not to be moved by this drama. Allen's underestimated charm delivers more goodies than lumps of coal. Measured 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. An exhilarating serving of movie fluff. Maelstrom is strange and compelling, engrossing and different, a moral tale with a twisted sense of humor. It makes you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film. Dark and disturbing, yet compelling to watch. Too often, Son of the Bride becomes an exercise in trying to predict when a preordained ``big moment'' will occur and not ``if.'' The 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. A solid piece of journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy. A terrific insider look at the star-making machinery of tinseltown. It's a diverting enough hour-and-a-half for the family audience. A party-hearty teen flick that scalds like acid. As giddy and whimsical and relevant today as it was 270 years ago. The film offers an intriguing what-if premise. The Pianist is the film Roman Polanski may have been born to make. This version does justice both to Stevenson and to the sci-fi genre. Poignant and delicately complex. Enough may pander to our basest desires for payback, but unlike many revenge fantasies, it ultimately delivers. Cho'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. In 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. Despite the film's shortcomings, the stories are quietly moving. Those who love Cinema Paradiso will find the new scenes interesting, but few will find the movie improved. If you come from a family that eats, meddles, argues, laughs, kibbitzes and fights together, then go see this delightful comedy. This 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. The reason to see ``Sade'' lay with the chemistry and complex relationship between the marquis (Auteil) and Emilie (Le Besco). It'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. The 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. ...best seen as speculative history, as much an exploration of the paranoid impulse as a creative sequel to the Warren Report. It has its faults, but it is a kind, unapologetic, sweetheart of a movie, and Mandy Moore leaves a positive impression. The 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. Despite 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. Flawed, but worth seeing for Ambrose's performance. With 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. The humor and humanity of Monsoon Wedding are in perfect balance. Lookin' for sin, American-style? Try Hell House, which documents the cautionary Christian spook-a-rama of the same name. A compelling motion picture that illustrates an American tragedy. As comedic spotlights go, Notorious C.H.O. hits all the verbal marks it should. It's a day at the beach -- with air conditioning and popcorn. Frida 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. Stevens has a flair for dialogue comedy, the film operates nicely off the element of surprise, and the large cast is solid. Extremely well acted by the four primary actors, this is a seriously intended movie that is not easily forgotten. The film exudes the urbane sweetness that Woody Allen seems to have bitterly forsaken. K-19: The Widowmaker is derivative, overlong, and bombastic -- yet surprisingly entertaining. It's good, hard-edged stuff, violent and a bit exploitative but also nicely done, morally alert and street-smart. Cineasts 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. It's a rare window on an artistic collaboration. ...begins with promise, but runs aground after being snared in its own tangled plot. Perhaps the best sports movie I've ever seen. Cho's timing is priceless. ...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. A sensitive, moving, brilliantly constructed work. An edgy thriller that delivers a surprising punch. A reasonably entertaining sequel to 1994's surprise family hit that may strain adult credibility. (Reno) delivers a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion. there is truth here a confident, richly acted, emotionally devastating piece of work and 2002's first great film A touching, small-scale story of family responsibility and care in the community. Arteta directs one of the best ensemble casts of the year The casting of von Sydow ... is itself Intacto's luckiest stroke. No, it's not as single-minded as John Carpenter's original, but it's sure a lot smarter and more unnerving than the sequels. A gem of a romantic crime comedy that turns out to be clever, amusing and unpredictable. Stands 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. ...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... This movie got me grinning. There's a part of us that cannot help be entertained by the sight of someone getting away with something. An 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. What'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'? This English-language version ... does full honor to Miyazaki's teeming and often unsettling landscape, and to the conflicted complexity of his characters. The 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. Not 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. There are no special effects, and no Hollywood endings. Like the original, this version is raised a few notches above kiddie fantasy pablum by Allen's astringent wit. Despite 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. A brutally honest documentary about a much anticipated family reunion that goes wrong thanks to culture shock and a refusal to empathize with others. Filled with honest performances and exceptional detail, Baran is a gentle film with dramatic punch, a haunting ode to humanity. Sparkles in its deft portrait of Tinseltown's seasoned veterans of gossip, wealth, paranoia, and celebrityhood. In 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. ...a triumph of emotionally and narratively complex filmmaking. (Haynes') homage to such films as ``All That Heaven Allows'' and ``Imitation of Life'' transcends them. Simply put, ``Far From Heaven'' is a masterpiece. An intense and effective film about loneliness and the chilly anonymity of the environments where so many of us spend so much of our time. Although 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. Proves mainly that South Korean filmmakers can make undemanding action movies with all the alacrity of their Hollywood counterparts. A 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. Top-notch action powers this romantic drama. Beresford 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.' I 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. Probably the best case for Christianity since Chesterton and Lewis. A 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. Would 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. Visually fascinating ... an often intense character study about fathers and sons, loyalty and duty. A lyrical metaphor for cultural and personal self-discovery and a picaresque view of a little-remembered world. Schü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. A slick, engrossing melodrama. S1M0NE's satire is not subtle, but it is effective. It's a quirky, off-beat project. While 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. Even 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. The solid filmmaking and convincing characters makes this a high water mark for this genre. Films about loss, grief and recovery are pretty valuable these days. Seen in that light, Moonlight Mile should strike a nerve in many. It's endlessly inventive, consistently intelligent and sickeningly savage. It is definitely worth seeing. An impeccable study in perversity. Far From Heaven is a dazzling conceptual feat, but more than that, it's a work of enthralling drama. A movie that both thrills the eye and, in its over-the-top way, touches the heart. Stuffed 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. Affectionately reminds us that, in any language, the huge stuff in life can usually be traced back to the little things. A drama of great power, yet some members of the audience will leave the theater believing they have seen a comedy. The 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. The result is more depressing than liberating, but it's never boring. A story about intelligent high school students that deals with first love sweetly but also seriously. It is also beautifully acted. It isn't that the picture is unfamiliar, but that it manages to find new avenues of discourse on old problems. Same song, second verse, coulda been better, but it coulda been worse. It's a technically superb film, shining with all the usual Spielberg flair, expertly utilizing the talents of his top-notch creative team. Wilco fans will have a great time, and the movie should win the band a few new converts, too. Tsai 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. The date movie that Franz Kafka would have made. The 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. Leguizamo and Jones are both excellent and the rest of the cast is uniformly superb. I liked this film a lot... ...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. A solid and refined piece of moviemaking imbued with passion and attitude. Nettelbeck has crafted an engaging fantasy of flavours and emotions, one part romance novel, one part recipe book. With or without the sex, a wonderful tale of love and destiny, told well by a master storyteller On the surface a silly comedy, Scotland, PA would be forgettable if it weren't such a clever adaptation of the bard's tragic play. A weird, arresting little ride. A fine film, but it would be a lot better if it stuck to Betty Fisher and left out the other stories. A first-class road movie that proves you can run away from home, but your ego and all your problems go with you. You might want to take a reality check before you pay the full ticket price to see ``Simone,'' and consider a DVD rental instead. Well cast and well directed - a powerful drama with enough sardonic wit to keep it from being maudlin. A backstage must-see for true fans of comedy. There's back-stabbing, inter-racial desire and, most importantly, singing and dancing. The 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. Jones ... 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. In 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 Below may not mark Mr. Twohy's emergence into the mainstream, but his promise remains undiminished. There's no reason to miss Interview with the Assassin Happily stays close to the ground in a spare and simple manner and doesn't pummel us with phony imagery or music. Its sheer dynamism is infectious. For his first attempt at film noir, Spielberg presents a fascinating but flawed look at the near future. it somehow managed to make its way past my crappola radar and find a small place in my heart Perhaps 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. It does give a taste of the Burning Man ethos, an appealing blend of counter-cultural idealism and hedonistic creativity. The limited sets and small confined and dark spaces also are homages to a classic low-budget film noir movie. The movie is well done, but slow. (A) wonderfully loopy tale of love, longing, and voting. The 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. The last scenes of the film are anguished, bitter and truthful. Mr. Koshashvili is a director to watch. Predictable storyline and by-the-book scripting is all but washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell. Antwone 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. One 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. It challenges, this nervy oddity, like modern art should. Whenever you think you've figured out Late Marriage, it throws you for a loop. The Pianist is Polanski's best film. It is a testament of quiet endurance, of common concern, of reconciled survival. This Orange has some juice, but it's far from fresh-squeezed. A sensitive, modest comic tragedy that works as both character study and symbolic examination of the huge economic changes sweeping modern China. High Crimes knows the mistakes that bad movies make and is determined not to make them, and maybe that is nobility of a sort. Cusack's just brilliant in this. Knows how to make our imagination wonder. Jae-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. The overall fabric is hypnotic, and Mr. Mattei fosters moments of spontaneous intimacy. Evokes a palpable sense of disconnection, made all the more poignant by the incessant use of cell phones. Malcolm McDowell is cool. Paul Bettany is cool. Paul Bettany playing Malcolm McDowell? Cool. A touching, sophisticated film that almost seems like a documentary in the way it captures an Italian immigrant family on the brink of major changes. ...a trashy little bit of fluff stuffed with enjoyable performances and a bewildering sense of self-importance An inventive, absorbing movie that's as hard to classify as it is hard to resist. It 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'. (Caine) proves once again he hasn't lost his touch, bringing off a superb performance in an admittedly middling film. Bogdanovich puts history in perspective and, via Kirsten Dunst's remarkable performance, he showcases Davies as a young woman of great charm, generosity and diplomacy. This breezy caper movie becomes a soulful, incisive meditation on the way we were, and the way we are. A captivating new film. Those who aren't put off by the film's austerity will find it more than capable of rewarding them. It's a clear-eyed portrait of an intensely lived time, filled with nervous energy, moral ambiguity and great uncertainties. Reveals 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. With the same sort of good-natured fun found in films like Tremors, Eight Legged Freaks is prime escapist fare. A sharp, amusing study of the cult of celebrity. The 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. A 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. A 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. Made 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. If you're looking for something new and hoping for something entertaining, you're in luck. A 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. A rip-roaring comedy action fest that'll put hairs on your chest. If there's no art here, it's still a good yarn -- which is nothing to sneeze at these days. Simultaneously heart-breaking and very funny, The Last Kiss is really all about performances. There is a subversive element to this Disney cartoon, providing unexpected fizzability. An unforgettable look at morality, family, and social expectation through the prism of that omnibus tradition called marriage. An enjoyable, if occasionally flawed, experiment. Miyazaki is one of world cinema's most wondrously gifted artists and storytellers. If Ayurveda can help us return to a sane regimen of eating, sleeping and stress-reducing contemplation, it is clearly a good thing. Meeting, 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. Leigh 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. Poetry in motion captured on film. While it can be a bit repetitive, overall it's an entertaining and informative documentary. Directing 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. The entire movie establishes a wonderfully creepy mood. I found The Ring moderately absorbing, largely for its elegantly colorful look and sound. The filmmakers want nothing else than to show us a good time, and in their cheap, B movie way, they succeed. Amari has dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances. Rabbit-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. Both heartbreaking and heartwarming...just a simple fable done in an artless sytle, but it's tremendously moving. This masterfully calibrated psychological thriller thrives on its taut performances and creepy atmosphere even if the screenplay falls somewhat short. The film's sense of imagery gives it a terrible strength, but it's propelled by the acting. The 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. Strange it is, but delightfully so. Elegant, mannered and teasing. An average coming-of-age tale elevated by the wholesome twist of a pesky mother interfering during her son's discovery of his homosexuality. The ingenuity that Parker displays in freshening the play is almost in a class with that of Wilde himself. Decasia 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. A droll, bitchy frolic which pokes fun at the price of popularity and small-town pretension in the Lone Star State. With 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. Ryan Gosling ... is at 22 a powerful young actor. A minor work yet there's no denying the potency of Miller's strange, fleeting brew of hopeful perseverance and hopeless closure. As 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. The film is a verbal duel between two gifted performers. Imperfect? Yes, but also intriguing and honorable, a worthwhile addition to a distinguished film legacy. You'll get the enjoyable basic minimum. But not a whit more. What a great way to spend 4 units of your day. The movie is hardly a masterpiece, but it does mark Ms. Bullock's best work in some time. As simple and innocent a movie as you can imagine. This is a movie you can trust. Passionate, 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. ``It's all about the image.'' Vividly 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. Hollywood Ending is not show-stoppingly hilarious, but scathingly witty nonetheless. Maybe Thomas Wolfe was right: You can't go home again. A compelling yarn, but not quite a ripping one. On 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. The film has several strong performances. I've never bought from telemarketers, but I bought this movie. Perfectly 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. The funny thing is, I didn't mind all this contrived nonsense a bit. (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. A 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. An entertaining documentary that freshly considers arguments the Bard's immortal plays were written by somebody else. A 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? Call it magic realism or surrealism, but Miss Wonton floats beyond reality with a certain degree of wit and dignity. Raimi and his team couldn't have done any better in bringing the story of Spider-Man to the big screen. The director explores all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut. Well-acted, well-directed and, for all its moodiness, not too pretentious. It's a satisfying summer blockbuster and worth a look. Boomers and their kids will have a Barrie good time. Real 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. Ultimately, ``MIB II'' succeeds due to its rapid-fire delivery and enough inspired levity that it can't be dismissed as mindless. Stage director Sam Mendes showcases Tom Hanks as a depression era hit-man in this dark tale of revenge. Sitting 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 The 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. What'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. Strip 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. An immensely entertaining look at some of the unsung heroes of 20th century pop music. This 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. This beautifully animated epic is never dull. Brian Tufano's handsome widescreen photography and Paul Grabowsky's excellent music turn this fairly parochial melodrama into something really rather special. It makes compelling, provocative and prescient viewing. A thoroughly entertaining comedy that uses Grant's own twist of acidity to prevent itself from succumbing to its own bathos. Using a stock plot, About a Boy injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater. What Eric Schaeffer has accomplished with Never Again may not, strictly speaking, qualify as revolutionary. But it's defiantly and delightfully against the grain. The 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. A positively thrilling combination of ethnography and all the intrigue, betrayal, deceit and murder of a Shakespearean tragedy or a juicy soap opera. Mr. 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. Definitely funny stuff, but it's more of the 'laughing at' variety than the 'laughing with.' Easily the most thoughtful fictional examination of the root causes of anti-Semitism ever seen on screen. A real winner -- smart, funny, subtle, and resonant. Family portrait of need, neurosis and nervy negativity is a rare treat that shows the promise of digital filmmaking. The pitch must have read like a discarded House Beautiful spread. Uplifting as only a document of the worst possibilities of mankind can be, and among the best films of the year. Director David Jacobson gives Dahmer a consideration that the murderer never game his victims. The film has a terrific look and Salma Hayek has a feel for the character at all stages of her life. A decided lack of spontaneity in its execution and a dearth of real poignancy in its epiphanies. The performances are remarkable. It's Burns' visuals, characters and his punchy dialogue, not his plot, that carry waydowntown. As 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. While I can't say it's on par with the first one, Stuart Little 2 is a light, fun cheese puff of a movie. Strange, funny, twisted, brilliant and macabre. A genuinely moving and wisely unsentimental drama. Heaven is a haunting dramatization of a couple's moral ascension. The Mothman Prophecies is best when illustrating the demons bedevilling the modern masculine journey. Plays out with a dogged and eventually winning squareness that would make it the darling of many a kids-and-family-oriented cable channel. An entertaining British hybrid of comedy, caper thrills and quirky romance. Alain 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. Mostly 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. Hardly 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. The mark of a respectable summer blockbuster is one of two things: unadulterated thrills or genuine laughs. The film is visually dazzling, the depicted events dramatic, funny and poignant. A directorial tour de force by Bernard Rose, ivans xtc. is one of this year's very best pictures. What 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. Even the digressions are funny. Mr. Spielberg and his company just want you to enjoy yourselves without feeling conned. And they succeed merrily at their noble endeavor. Melodrama with a message. A perfectly pleasant if slightly pokey comedy. Coppola'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. At 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. Wang 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. It'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. Bogdanovich taps deep into the Hearst mystique, entertainingly reenacting a historic scandal. A moving tale of love and destruction in unexpected places, unexamined lives. Clooney directs this film always keeping the balance between the fantastic and the believable... Even 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. ... a lesson in prehistoric hilarity. A fantastically vital movie that manages to invest real humor, sensuality, and sympathy into a story about two adolescent boys. Lawrence plumbs personal tragedy and also the human comedy. Though a capable thriller, somewhere along the way K-19 jettisoned some crucial drama. Just about the surest bet for an all-around good time at the movies this summer. It 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. There is a certain sense of experimentation and improvisation to this film that may not always work, but it is nevertheless compelling. The Four Feathers has rewards, from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes. A delicious, quirky movie with a terrific screenplay and fanciful direction by Michael Gondry. This 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. The bodily function jokes are about what you'd expect, but there are rich veins of funny stuff in this movie. The performances are amiable and committed, and the comedy more often than not hits the bullseye. This 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. There's plenty to enjoy -- in no small part thanks to Lau. With 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. Though 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. ``Catch Me'' feels capable of charming the masses with star power, a pop-induced score and sentimental moments that have become a Spielberg trademark. By no means a great movie, but it is a refreshingly forthright one. The casting of Raymond J. Barry as the 'assassin' greatly enhances the quality of Neil Burger's impressive fake documentary. Despite 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. This documentary is a dazzling, remarkably unpretentious reminder of what (Evans) had, lost, and got back. A thoughtful movie, a movie that is concerned with souls and risk and schemes and the consequences of one's actions. As satisfyingly odd and intriguing a tale as it was a century and a half ago...has a delightfully dour, deadpan tone and stylistic consistency. Methodical, 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. A witty, trenchant, wildly unsentimental but flawed look at the ins and outs of modern moviemaking. For most of the distance the picture provides a satisfyingly unsettling ride into the dark places of our national psyche. By the standards of knucklehead swill, The Hot Chick is pretty damned funny. One of the most gloriously unsubtle and adrenalized extreme shockers since The Evil Dead. (Reaches) wholly believable and heart-wrenching depths of despair. An absorbing and unsettling psychological drama. This 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. Though 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. The entire cast is extraordinarily good. Yakusho, as always, is wonderful as the long-faced sad sack ... and his chemistry with Shimizu is very believable. Young Hanks and Fisk, who vaguely resemble their celebrity parents, bring fresh good looks and an ease in front of the camera to the work. A captivatingly quirky hybrid of character portrait, romantic comedy and beat-the-clock thriller. The film sparkles with the the wisdom and humor of its subjects. If (Jaglom's) latest effort is not the director at his most sparkling, some of its repartee is still worth hearing. Like 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. Just about the best straight-up, old-school horror film of the last 15 years. A chilling tale of one of the great crimes of 20th Century France: the murder of two rich women by their servants in 1933. An oddity, to be sure, but one that you might wind up remembering with a degree of affection rather than revulsion. While the film is not entirely successful, it still manages to string together enough charming moments to work. A winning piece of work filled with love for the movies of the 1960s. E.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. Helps to remind the First World that HIV/AIDS is far from being yesterday's news. A heartening tale of small victories and enduring hope. The vistas are sweeping and the acting is far from painful. Jackson and co have brought back the value and respect for the term epic cinema. It 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 Charlotte 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. A delightful stimulus for the optic nerves, so much that it's forgivable that the plot feels like every other tale of a totalitarian tomorrow. Defies 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. A complex psychological drama about a father who returns to his son's home after decades away. Writer 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. This is NOT a retread of ``Dead Poets' Society.'' Sweet and memorable film. A smart, arch and rather cold-blooded comedy. Keenly 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. ...begins on a high note and sustains it beautifully. Davis ... gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences. '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.' Funny, somber, absurd, and, finally, achingly sad, Bartleby is a fine, understated piece of filmmaking. ``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. Succeeds only because Bullock and Grant were made to share the silver screen. Both flawed and delayed, Martin Scorcese's Gangs of New York still emerges as his most vital work since GoodFellas. As 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. As 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. A moving and solidly entertaining comedy/drama that should bolster director and co-writer Juan José Campanella's reputation in the United States. Thanks to confident filmmaking and a pair of fascinating performances, the way to that destination is a really special walk in the woods. Beautifully shot, delicately scored and powered by a set of heartfelt performances, it's a lyrical endeavour. A 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. A stylistic romp that's always fun to watch. Informative, intriguing, observant, often touching...gives a human face to what's often discussed in purely abstract terms. ...once the true impact of the day unfolds, the power of this movie is undeniable. An honest, sensitive story from a Vietnamese point of view. A buoyant romantic comedy about friendship, love, and the truth that we're all in this together. The 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. It's the perfect star vehicle for Grant, allowing him to finally move away from his usual bumbling, tongue-tied screen persona. Gaunt, silver-haired and leonine, (Harris) brings a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman. A disturbing examination of what appears to be the definition of a 'bad' police shooting. It's been made with an innocent yet fervid conviction that our Hollywood has all but lost. Not only a reminder of how they used to make movies, but also how they sometimes still can be made. A three-hour cinema master class. Eyre is on his way to becoming the American Indian Spike Lee. A witty, whimsical feature debut. Warm 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. It 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. Clint 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. A movie that will surely be profane, politically charged music to the ears of Cho's fans. Much 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. Rarely, a movie is more than a movie. Go. Jacquot'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. Quitting 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. By not averting his eyes, Solondz forces us to consider the unthinkable, the unacceptable, the unmentionable. One 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. While 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. A fascinating documentary that provides a rounded and revealing overview of this ancient holistic healing system Birthday 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. An interesting look behind the scenes of Chicago-based rock group Wilco... Sharp edges and a deep vein of sadness run through its otherwise comic narrative. There's lots of cool stuff packed into ESPN's Ultimate X. Rock solid family fun out of the gates, extremely imaginative through out, but wanes in the middle The 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. The touch is generally light enough and the performances, for the most part, credible. I liked About Schmidt a lot, but I have a feeling that I would have liked it much more if Harry & Tonto never existed. Steers has an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens--especially the a**holes. That Storytelling has value cannot be denied. Not even Solondz's thirst for controversy, sketchy characters and immature provocations can fully succeed at cheapening it. Once the downward spiral comes to pass, Auto Focus bears out as your typical junkie opera... A knowing sense of humor and a lot of warmth ignite Son of the Bride. A rich tale of our times, very well told with an appropriate minimum of means. The characters are complex and quirky, but entirely believable as the remarkable ensemble cast brings them to life. In 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. As 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. Efficient, suitably anonymous chiller. Gorgeous scenes, masterful performances, but the sickly sweet gender normative narrative left an acrid test in this gourmet's mouth. The 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. It'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. A memorable experience that, like many of his works, presents weighty issues colorfully wrapped up in his own idiosyncratic strain of kitschy goodwill. Executed 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. The gentle comic treatment of adolescent sturm und drang should please fans of Chris Fuhrman's posthumously published cult novel. Director Claude Chabrol has become the master of innuendo. It is not what you see, it is what you think you see. A deftly entertaining film, smartly played and smartly directed. A documentary to make the stones weep -- as shameful as it is scary. I hope the movie is widely seen and debated with appropriate ferocity and thoughtfulness. A thought-provoking look at how Western foreign policy - however well intentioned - can wreak havoc in other cultures. Asks what truth can be discerned from non-firsthand experience, and specifically questions cinema's capability for recording truth. The journey to the secret's eventual discovery is a separate adventure, and thrill enough. A quiet, disquieting triumph. Darkly funny and frequently insightful. ...the tale of her passionate, tumultuous affair with Musset unfolds as Sand's masculine persona, with its love of life and beauty, takes form. If you want to see a train wreck that you can't look away from, then look no further, because here it is. There's so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles. The search for redemption makes for a touching love story, mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters' suffering. A film of ideas and wry comic mayhem. At its worst the screenplay is callow, but at its best it is a young artist's thoughtful consideration of fatherhood. A worthwhile documentary, whether you're into rap or not, even if it may still leave you wanting more answers as the credits roll. Fessenden'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. That the film opens with maggots crawling on a dead dog is not an out of place metaphor. Stanley Kwan has directed not only one of the best gay love stories ever made, but one of the best love stories of any stripe. The 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. Norton holds the film together. (There's) quite a bit of heart, as you would expect from the directors of The Little Mermaid and Aladdin. You won't have any trouble getting kids to eat up these Veggies. A creaky staircase gothic. Enjoyably dumb, sweet, and intermittently hilarious -- if you've a taste for the quirky, steal a glimpse. A movie that sends you out of the theater feeling like you've actually spent time living in another community. Light-years ahead of paint-by-number American blockbusters like Pearl Harbor, at least artistically. A fascinating documentary about the long and eventful spiritual journey of the guru who helped launch the New Age. Isabelle Huppert excels as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol's most intense psychological mysteries. Perhaps 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. Wedding feels a bit anachronistic. Still, not every low-budget movie must be quirky or bleak, and a happy ending is no cinematic sin. It's still a comic book, but Maguire makes it a comic book with soul. Brings to a spectacular completion one of the most complex, generous and subversive artworks of the last decade. An amusing and unexpectedly insightful examination of sexual jealousy, resentment and the fine line between passion and pretence. A 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. Adaptation's success in engaging the audience in the travails of creating a screenplay is extraordinary. A polished and vastly entertaining caper film that puts the sting back into the con. It's no surprise that as a director Washington demands and receives excellent performances, from himself and from newcomer Derek Luke. ... while each moment of this broken character study is rich in emotional texture, the journey doesn't really go anywhere. The film gets close to the chimps the same way Goodall did, with a serious minded patience, respect and affection. It's an often-cute film but either needs more substance to fill the time or some judicious editing. This may be Burns's strongest film since The Brothers McMullen. What 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. It's Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer. It 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. Though not for everyone, The Guys is a somber trip worth taking. A sly female empowerment movie, although not in a way anyone would expect. You 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. It's a wonderful, sobering, heart-felt drama. Runs on the pure adrenalin of Pacino's performance. The Paradiso's rusted-out ruin and ultimate collapse during the film's final (restored) third...emotionally belittle a cinema classic. Sometimes shorter is better. Phillip 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. The 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. As a vehicle to savour Binoche's skill, the film is well worthwhile. The huskies are beautiful, the border collie is funny and the overall feeling is genial and decent. Whatever 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. Mastering its formidable arithmetic of cameras and souls, Group articulates a flood of emotion. A pretty decent kid-pleasing, tolerable-to-adults lark of a movie. Even during the climactic hourlong cricket match, boredom never takes hold. Combine the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural -- why didn't Hollywood think of this sooner? Like Kubrick, Soderbergh isn't afraid to try any genre and to do it his own way. Nothing can detract from the affection of that moral favorite: friends will be friends through thick and thin. If the film has a problem, its shortness disappoints: You want the story to go on and on. Unlike most anime, whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes, Metropolis never seems hopelessly juvenile. The plot twists give I Am Trying to Break Your Heart an attraction it desperately needed. The 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. Like 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. The 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. Flamboyant 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. ...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. The most amazing super-sized dosage of goofball stunts any ``Jackass'' fan could want. Real Women may have many agendas, but it also will win you over, in a big way. Young Everlyn Sampi, as the courageous Molly Craig, simply radiates star-power potential in this remarkable and memorable film. Surprisingly powerful and universal. Apart 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. I'll put it this way: If you're in the mood for a melodrama narrated by talking fish, this is the movie for you. Morvern Callar confirms Lynne Ramsay as an important, original talent in international cinema. Well-done supernatural thriller with keen insights into parapsychological phenomena and the soulful nuances of the grieving process. A plethora of engaging diatribes on the meaning of 'home,' delivered in grand passion by the members of the various households. It's technically sumptuous but also almost wildly alive. This film puts Wang at the forefront of China's Sixth Generation of film makers. it's refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original. Wiseman is patient and uncompromising, letting his camera observe and record the lives of women torn apart by a legacy of abuse. There'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. An ingenious and often harrowing look at damaged people and how families can offer either despair or consolation. Arguably the best script that Besson has written in years. It's no lie -- Big Fat Liar is a real charmer. Invigorating, surreal, and resonant with a rainbow of emotion. Director 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. Pray has really done his subject justice. An unexpectedly sweet story of sisterhood. Maintains your sympathy for this otherwise challenging soul by letting you share her one-room world for a while. A subtle, humorous, illuminating study of politics, power and social mobility. Even if you have no interest in the gang-infested, East-vs.-West Coast rap wars, this modern mob music drama never fails to fascinate. Nair's attention to detail creates an impeccable sense of place, while Thurman and Lewis give what can easily be considered career-best performances. Berry'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 Red 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. Caviezel embodies the transformation of his character completely. A creepy, intermittently powerful study of a self-destructive man...about as unsettling to watch as an exploratory medical procedure or an autopsy. Pacino 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. The cast is top-notch and I predict there will be plenty of female audience members drooling over Michael Idemoto as Michael. Béart and Berling are both superb, while Huppert ... is magnificent. All the actors are good in Pauline & Paulette but van der Groen, described as 'Belgium's national treasure,' is especially terrific as Pauline. Miyazaki has created such a vibrant, colorful world, it's almost impossible not to be swept away by the sheer beauty of his images. Muccino 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. Whether 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. Ozpetek 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. ...an eerily suspenseful, deeply absorbing piece that works as a treatise on spirituality as well as a solid sci-fi thriller. I've never seen or heard anything quite like this film, and I recommend it for its originality alone. Nicole Kidman makes it a party worth attending. The direction has a fluid, no-nonsense authority, and the performances by Harris, Phifer and Cam'ron seal the deal. The Komediant is a tale worth catching. The writing is clever and the cast is appealing. The simplicity of The Way Home has few equals this side of Aesop Life on the rez is no picnic: this picture shows you why. Spielberg has managed to marry science fiction with film noir and action flicks with philosophical inquiry. It'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. A taut, sobering film. Exudes the fizz of a Busby Berkeley musical and the visceral excitement of a sports extravaganza. It's full of cheesy dialogue, but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s. The results, if not memorable, are at least interesting. A quietly moving look back at what it was to be Iranian-American in 1979. Like a veteran head cutter, Barbershop is tuned in to its community. I'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. You live the mood rather than savour the story. Angela 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. While there are times when the film's reach exceeds its grasp, the production works more often than it doesn't. While 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. Watching this gentle, mesmerizing portrait of a man coming to terms with time, you barely realize your mind is being blown. The beautifully choreographed kitchen ballet is simple but absorbing. There's...an underlying Old World sexism to Monday Morning that undercuts its charm. ``The best Disney movie since the Lion King'' Transcends 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. Think of it as Gidget, only with muscles and a lot more smarts, but just as endearing and easy to watch. There is no solace here, no entertainment value, merely a fierce lesson in where filmmaking can take us. Giggling at the absurdities and inconsistencies is part of the fun. But the talented cast alone will keep you watching, as will the fight scenes. Arteta paints a picture of lives lived in a state of quiet desperation. Drug abuse, infidelity and death aren't usually comedy fare, but Turpin's film allows us to chuckle through the angst. While Insomnia is in many ways a conventional, even predictable remake, Nolan's penetrating undercurrent of cerebral and cinemantic flair lends (it) stimulating depth. Efteriades gives the neighborhood -- scenery, vibe and all -- the cinematic equivalent of a big, tender hug. This is a nicely handled affair, a film about human darkness but etched with a light (yet unsentimental) touch. Amazing! A college story that works even without vulgarity, sex scenes, and cussing! The 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. A raunchy and frequently hilarious follow-up to the gifted Korean American stand-up's I'm the One That I Want. If you ever wanted to be an astronaut, this is the ultimate movie experience - it's informative and breathtakingly spectacular. While 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. A smart, sassy and exceptionally charming romantic comedy. There 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. A gift to anyone who loves both dance and cinema It seems Grant doesn't need the floppy hair and the self-deprecating stammers after all. A reminder that beyond all the hype and recent digital glitz, Spielberg knows how to tell us about people. One of the finest, most humane and important Holocaust movies ever made. An engrossing and infectiously enthusiastic documentary. A beautiful, timeless and universal tale of heated passions -- jealousy, betrayal, forgiveness and murder. A culture-clash comedy that, in addition to being very funny, captures some of the discomfort and embarrassment of being a bumbling American in Europe. Shattering, devastating documentary on two maladjusted teens in a downward narcotized spiral. Extraordinary debut from Josh Koury. The most compelling performance of the year adds substantial depth to this shocking testament to anti-Semitism and neo-fascism. For those who are intrigued by politics of the '70s, the film is every bit as fascinating as it is flawed. All 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. Douglas McGrath's Nicholas Nickleby does Dickens as it should be done cinematically. It's a lovely, eerie film that casts an odd, rapt spell. The quirky and recessive charms of co-stars Martin Donovan and Mary-Louise Parker help overcome the problematic script. It's good to see Michael Caine whipping out the dirty words and punching people in the stomach again. You just know something terrible is going to happen. But when it does, you're entirely unprepared. It's fun, wispy, wise and surprisingly inoffensive for a film about a teen in love with his stepmom. Able to provide insight into a fascinating part of theater history. An unflinching, complex portrait of a modern Israel that is rarely seen on-screen. A Jewish WW II doc that isn't trying simply to out-shock, out-outrage or out-depress its potential audience! Who knew... It's a familiar story, but one that is presented with great sympathy and intelligence. Gently humorous and touching. It won't hold up over the long haul, but in the moment, Finch's tale provides the forgettable pleasures of a Saturday matinee. Kinnear's performance is a career-defining revelation. The film is predictable in the reassuring manner of a beautifully sung holiday carol. ...hits every cliche we've come to expect, including the assumption that ``crazy'' people are innocent, childlike and inherently funny. The strong subject matter continues to shock throughout the film. Not everyone will play the dark, challenging tune taught by The Piano Teacher. A certain sexiness underlines even the dullest tangents. You 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. There 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. That old adage about women being unknowable gets an exhilarating new interpretation in Morvern Callar. A mix of gritty realism, crisp storytelling and radiant compassion that effortlessly draws you in. After 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. In his U.S. debut, Mr. Schnitzler proves himself a deft pace master and stylist. Ultimate X is a ride, basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine. Rich 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. Offers a clear-eyed chronicle of a female friendship that is more complex and honest than anything represented in a Hollywood film. A 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. Its 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. Lohman 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 Although 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. For a movie audience, The Hours doesn't connect in a neat way, but introduces characters who illuminate mysteries of sex, duty and love. A bright, inventive, thoroughly winning flight of revisionist fancy. Ozpetek's effort has the scope and shape of an especially well-executed television movie. Affirms 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. A 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. Makes 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. Deepa Mehta provides an accessible introduction as well as some intelligent observations on the success of Bollywood in the Western world. If 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. In addition to gluing you to the edge of your seat, Changing Lanes is also a film of freshness, imagination and insight. Pan 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. The mood, look and tone of the film fit the incredible storyline to a T. It's crafty, energetic and smart -- the kid is sort of like a fourteen-year old Ferris Bueller. A work of extraordinary journalism, but it is also a work of deft and subtle poetry. It's funny and human and really pretty damned wonderful, all at once. At 78 minutes it just zings along with vibrance and warmth. A strangely stirring experience that finds warmth in the coldest environment and makes each crumb of emotional comfort feel like a 10-course banquet. Sometimes 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. The stripped-down dramatic constructs, austere imagery and abstract characters are equal parts poetry and politics, obvious at times but evocative and heartfelt. Dogtown and Z-Boys more than exposes the roots of the skateboarding boom that would become ``the punk kids' revolution.'' ...plenty of warmth to go around, with music and laughter and the love of family. It'll keep you wide awake and ... very tense. Could use a little more humanity, but it never lacks in eye-popping visuals. (Danny Huston gives) an astounding performance that deftly, gradually reveals a real human soul buried beneath a spellbinding serpent's smirk. These three films form a remarkably cohesive whole, both visually and thematically, through their consistently sensitive and often exciting treatment of an ignored people. A funny and well-contructed black comedy where the old adage ``be careful what you wish for'' is given a full workout. It reaffirms life as it looks in the face of death. The film is reasonably entertaining, though it begins to drag two-thirds through, when the melodramatic aspects start to overtake the comedy. This is more fascinating -- being real -- than anything seen on Jerry Springer. A different movie -- sometimes tedious -- by a director many viewers would like to skip but film buffs should get to know. Williams 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. Twist 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. Thought-provoking and stylish, if also somewhat hermetic. Broomfield is energized by Volletta Wallace's maternal fury, her fearlessness, and because of that, his film crackles. While it has definite weaknesses -- like a rather unbelievable love interest and a meandering ending -- this '60s caper film is a riveting, brisk delight. Funny in a sick, twisted sort of way. If cinema had been around to capture the chaos of France in the 1790's, one imagines the result would look like something like this. It's a talking head documentary, but a great one. The Fast Runner' transports the viewer into an unusual space Ultimately 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.' ...a solid, well-formed satire. As part of Mr. Dong's continuing exploration of homosexuality in America, Family Fundamentals is an earnest study in despair. Most 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. Hatosy ... portrays young Brendan with his usual intelligence and subtlety, not to mention a convincing brogue. The filmmakers' eye for detail and the high standards of performance convey a strong sense of the girls' environment. Uneven, self-conscious but often hilarious spoof. Even 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. Thanks to The Château's balance of whimsicality, narrative discipline and serious improvisation, almost every relationship and personality in the film yields surprises. Alan and his fellow survivors are idiosyncratic enough to lift the movie above its playwriting 101 premise. Fresh and raw like a blown-out vein, Narc takes a walking-dead, cop-flick subgenre and beats new life into it. The premise of Jason X is silly but strangely believable. It's a wise and powerful tale of race and culture forcefully told, with superb performances throughout. An awfully good, achingly human picture. The cast comes through even when the movie doesn't. You'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness, but the point is, you'll laugh. Definitely worth 95 minutes of your time. The film jolts the laughs from the audience--as if by cattle prod. A sexy, surprising romance... Idemoto and Kim make a gorgeous pair... their scenes brim with sexual possibility and emotional danger. Toes the fine line between cheese and earnestness remarkably well; everything is delivered with such conviction that it's hard not to be carried away. Whereas Oliver Stone's conspiracy thriller JFK was long, intricate, star-studded and visually flashy, Interview with the Assassin draws its considerable power from simplicity. Funny, sexy, devastating and incurably romantic. Triple 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. Very well-written and very well-acted. A powerful and telling story that examines forbidden love, racial tension, and other issues that are as valid today as they were in the 1950s. You emerge dazed, confused as to whether you've seen pornography or documentary. It ain't art, by a long shot, but unlike last year's lame Musketeer, this Dumas adaptation entertains. likeable thanks to its cast, its cuisine and its quirky tunes. Chilling in its objective portrait of dreary, lost twenty-first century America. Highly recommended as an engrossing story about a horrifying historical event and the elements which contributed to it. ... there's enough cool fun here to warm the hearts of animation enthusiasts of all ages. It manages to squeeze by on Angelina Jolie's surprising flair for self-deprecating comedy. Secretary manages a neat trick, bundling the flowers of perversity, comedy and romance into a strangely tempting bouquet of a movie. Judith 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. Photographed with melancholy richness and eloquently performed yet also decidedly uncinematic. A knowing look at female friendship, spiked with raw urban humor. As I settled into my World War II memories, I found myself strangely moved by even the corniest and most hackneyed contrivances. The overall effect is awe and affection -- and a strange urge to get on a board and, uh, shred, dude. It's that rare family movie -- genuine and sweet without relying on animation or dumb humor. The 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. Confessions 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. A special kind of movie, this melancholic film noir reminded me a lot of Memento... Simple, poignant and leavened with humor, it's a film that affirms the nourishing aspects of love and companionship. Together, Miller, Kuras and the actresses make Personal Velocity into an intricate, intimate and intelligent journey. The wonder of Mostly Martha is the performance of Gedeck, who makes Martha enormously endearing. With Notorious C.H.O. Cho proves she has the stuff to stand tall with Pryor, Carlin and Murphy. Less front-loaded and more shapely than the two-hour version released here in 1990. Watching War Photographer, you come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals. (A) real pleasure in its laid-back way. Some may choose to interpret the film's end as hopeful or optimistic but I think Payne is after something darker. Though 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. A much better documentary -- more revealing, more emotional and more surprising -- than its pedestrian English title would have you believe. Notwithstanding 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- A 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. The film has the uncanny ability to right itself precisely when you think it's in danger of going wrong. My Big Fat Greek Wedding is that rare animal known as 'a perfect family film,' because it's about family. would make an excellent companion piece to the similarly themed 'The French Lieutenant's Woman.' ... 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. A movie that's just plain awful but still manages to entertain on a guilty-pleasure, so-bad-it's-funny level. A 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. Functions 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. With a confrontational stance, Todd Solondz takes aim on political correctness and suburban families. A mess, but it's a sincere mess. This 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. For a debut film, Skin of Man, Heart of Beast feels unusually assured. A photographic marvel of sorts, and it's certainly an invaluable record of that special fishy community. It's soulful and unslick, and that's apparently just what (Aniston) has always needed to grow into a movie career. Although 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. A jaw-droppingly beautiful work that upends nearly every cliché of Japanese animation while delivering a more than satisfactory amount of carnage. Terry 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. Parts seem like they were lifted from Terry Gilliam's subconscious, pressed through Kafka's meat grinder and into Buñuel's casings 'Like a child with an important message to tell...(Skins') faults are easy to forgive because the intentions are lofty.' A delightful entree in the tradition of food movies. An escapist confection that's pure entertainment. The Ring is worth a look, if you don't demand much more than a few cheap thrills from your Halloween entertainment. The 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. Throwing it all away for the fleeting joys of love's brief moment. Armed 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. A decent-enough nail-biter that stands a good chance of being the big hit Franklin needs to stay afloat in Hollywood. Begins like a docu-drama but builds its multi-character story with a flourish. One of the most genuinely sweet films to come along in quite some time. After an uncertain start, Murder hits and generally sustains a higher plateau with Bullock's memorable first interrogation of Gosling. The story ultimately takes hold and grips hard. A 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. An emotionally strong and politically potent piece of cinema. Enticing and often funny documentary. Going 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. A portrait of hell so shattering it's impossible to shake. Almodovar 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.' Better 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. At 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. Tense, terrific, sweaty-palmed fun. Majidi's direction has never been smoother or more confident. What a bewilderingly brilliant and entertaining movie this is. Hard, endearing, caring, warm. Bring tissues. A 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. ``Me Without You'' is a probing examination of a female friendship set against a few dynamic decades. Inherently 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. Though Frodo's quest remains unfulfilled, a hardy group of determined New Zealanders has proved its creative mettle. It's a square, sentimental drama that satisfies, as comfort food often can. Pure cinematic intoxication, a wildly inventive mixture of comedy and melodrama, tastelessness and swooning elegance. Ramsay is clearly extraordinarily talented, and based on three short films and two features, here's betting her third feature will be something to behold. I 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. A classy, sprightly spin on film. fast, frantic and fun, but also soon forgotten A spiffy animated feature about an unruly adolescent boy who is yearning for adventure and a chance to prove his worth. Devos and Cassel have tremendous chemistry -- their sexual and romantic tension, while never really vocalized, is palpable. Fulfills the minimum requirement of Disney animation. A moving, if uneven, success. With 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. Wickedly funny, visually engrossing, never boring, this movie challenges us to think about the ways we consume pop culture. There's plenty to impress about E.T. A 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. Until 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. (Woo's) most resonant film since The Killer. Collateral Damage is trash, but it earns extra points by acting as if it weren't. A whole lot of fun and funny in the middle, though somewhat less hard-hitting at the start and finish. Maybe it is formula filmmaking, but there's nothing wrong with that if the film is well-crafted and this one is. (Fincher's) camera sense and assured pacing make it an above-average thriller. The film is insightful about Kissinger's background and history. An engrossing portrait of a man whose engaging manner and flamboyant style made him a truly larger-than-life character. A 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. Exploits (headbanger) stereotypes in good fun, while adding a bit of heart and unsettling subject matter. A journey that is as difficult for the audience to take as it is for the protagonist -- yet it's potentially just as rewarding. Ratliff'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. From its invitingly upbeat overture to its pathos-filled but ultimately life-affirming finale, Martin is a masterfully conducted work. Passions, obsessions, and loneliest dark spots are pushed to their most virtuous limits, lending the narrative an unusually surreal tone. A comedy that swings and jostles to the rhythms of life. At 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. If you're part of her targeted audience, you'll cheer. Otherwise, maybe. As animation increasingly emphasizes the computer and the cool, this is a film that takes a stand in favor of tradition and warmth. Blade 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. Instead of hitting the audience over the head with a moral, Schrader relies on subtle ironies and visual devices to convey point of view. K-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. Contrived as this may sound, Mr. Rose's updating works surprisingly well. A glib but bouncy bit of sixties-style slickness in which the hero might wind up caught but the audience gets pure escapism. You don't need to be a hip-hop fan to appreciate Scratch, and that's the mark of a documentary that works. Between bursts of automatic gunfire, the story offers a trenchant critique of capitalism. Combines improbable melodrama (gored bullfighters, comatose ballerinas) with subtly kinky bedside vigils and sensational denouements, and yet at the end, we are undeniably touched. While the story's undeniably hard to follow, Iwai's gorgeous visuals seduce. If you can get past the taboo subject matter, it will be well worth your time. A 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. Scooby Doo is surely everything its fans are hoping it will be, and in that sense is a movie that deserves recommendation. (A) devastatingly powerful and astonishingly vivid Holocaust drama. A solid cast, assured direction and complete lack of modern day irony. These 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. A sun-drenched masterpiece, part parlor game, part psychological case study, part droll social satire. Worth a look as a curiosity. You watch for that sense of openness, the little surprises. Director Peter Kosminsky gives these women a forum to demonstrate their acting 'chops' and they take full advantage. Auto 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. The 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. For 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. Remove Spider-Man the movie from its red herring surroundings and it's apparent that this is one summer film that satisfies. The 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. A gorgeously strange movie, Heaven is deeply concerned with morality, but it refuses to spell things out for viewers. The 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. It's truly awful and heartbreaking subject matter, but one whose lessons are well worth revisiting as many times as possible. Though 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. There 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. The message of such reflections--intentional or not--is that while no art grows from a vacuum, many artists exist in one. Gooding 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. The 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. The movie is brilliant, really. It is philosophy, illustrated through everyday events. It's stylishly directed with verve... Gives an intriguing twist to the French coming-of-age genre. Offers an interesting look at the rapidly changing face of Beijing. A solid, psychological action film from Hong Kong. See it now, before the inevitable Hollywood remake flattens out all its odd, intriguing wrinkles. Holm does his sly, intricate magic, and Iben Hjelje is entirely appealing as Pumpkin. An enjoyable feel-good family comedy regardless of race. Features what is surely the funniest and most accurate depiction of writer's block ever. It would take a complete moron to foul up a screen adaptation of Oscar Wilde's classic satire. It's bright, pristine style and bold colors make it as much fun as reading an oversized picture book before bedtime. In the long, dishonorable history of quickie teen-pop exploitation, Like Mike stands out for its only partly synthetic decency. Bravo for history rewritten, and for the uncompromising knowledge that the highest power of all is the power of love. Lead actress Gaï, she of the impossibly long limbs and sweetly conspiratorial smile, is a towering siren. Even if you've seen ``Stomp'' (the stage show), you still have to see this! ... 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. It's a setup so easy it borders on facile, but keeping the film from cheap-shot mediocrity is its crack cast. Rife with the rueful, wry humor springing out of Yiddish culture and language. A 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. Rubbo's humorously tendentious intervention into the who-wrote-Shakespeare controversy. Cantet beautifully illuminates what it means sometimes to be inside looking out, and at other times outside looking in. K-19: The Widowmaker is a great yarn. It's as raw and action-packed an experience as a ringside seat at a tough-man contest. Evokes the frustration, the awkwardness and the euphoria of growing up, without relying on the usual tropes. A brilliant gag at the expense of those who paid for it and those who pay to see it. Visually striking and viscerally repellent. Overcomes its visual hideousness with a sharp script and strong performances. Astonishingly skillful and moving...it could become a historically significant work as well as a masterfully made one. Beautifully crafted and cooly unsettling...recreates the atmosphere of the crime expertly. The 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. Although it doesn't always hang together -- violence and whimsy don't combine easily -- ``Cherish'' certainly isn't dull. The sight of the spaceship on the launching pad is duly impressive in IMAX dimensions, as are shots of the astronauts floating in their cabins. Time is a beautiful film to watch, an interesting and at times captivating take on loss and loneliness. An intriguing look at the French film industry during the German occupation; its most delightful moments come when various characters express their quirky inner selves. A 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. Fubar is very funny, but not always in a laugh-out-loud way. A diverse and astonishingly articulate cast of Palestinian and Israeli children. Slight but enjoyable documentary. 'The film is stark, straightforward and deadly... an unnatural calm that's occasionally shaken by...blasts of rage, and later, violent jealousy.' Call this The Full Monty on ice, the underdog sports team formula redux. Unfolds in a low-key, organic way that encourages you to accept it as life and go with its flow. A beguiling evocation of the quality that keeps Dickens evergreen: the exuberant openness with which he expresses our most basic emotions. The heat of the moment prevails. It cooks Conduct in a low, smoky and inviting sizzle. A riveting story well told. Denis 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. A compelling pre-WWII drama with vivid characters and a warm, moving message. The 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. Pretty good little movie. By turns touching, raucously amusing, uncomfortable, and, yes, even sexy, Never Again is a welcome and heartwarming addition to the romantic comedy genre. If 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... (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. An entertaining mix of period drama and flat-out farce that should please history fans. Canada's arctic light shines bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people. The 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. Alternately hilarious and sad, aggravating and soulful, scathing and joyous. It's a masterpeice. The film's messages of tolerance and diversity aren't particularly original, but one can't help but be drawn in by the sympathetic characters. Though it lacks the utter authority of a genre gem, there's a certain robustness to this engaging mix of love and bloodletting. A conventional, but well-crafted film about a historic legal battle in Ireland over a man's right to raise his own children. Yes, it's as good as you remember. In fact, even better. Hartley adds enough quirky and satirical touches in the screenplay to keep the film entertaining. An uncomfortable movie, suffocating and sometimes almost senseless, The Grey Zone does have a center, though a morbid one. This is a harrowing movie about how parents know where all the buttons are, and how to push them. A stirring road movie. One 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. Insanely hilarious! I haven't laughed that hard in years! Anyone 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. It's a tour de force, written and directed so quietly that it's implosion rather than explosion you fear. It 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. If ``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. This may be Dover Kosashvili's feature directing debut, but it looks an awful lot like life -- gritty, awkward and ironic. This 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. See 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. ...``Bowling for Columbine'' remains a disquieting and thought-provoking film... Even though it is infused with the sensibility of a video director, it doesn't make for completely empty entertainment But 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. Talk 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. Star/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. A truly wonderful tale combined with stunning animation. A low-key labor of love that strikes a very resonant chord. An average kid-empowerment fantasy with slightly above-average brains. Confessions isn't always coherent, but it's sharply comic and surprisingly touching, so hold the gong. While Guzmán frustratingly refuses to give Pinochet's crimes a political context, his distance from the material is mostly admirable. ... a story, an old and scary one, about the monsters we make, and the vengeance they take. A sentimental but entirely irresistible portrait of three aging sisters. White Oleander may leave you rolling your eyes in the dark, but that doesn't mean you won't like looking at it. In 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. The most brilliant work in this genre since the 1984 uncut version of Sergio Leone's flawed but staggering Once Upon a Time in America. It looks closely, insightfully at fragile, complex relationships. Not a bad choice here, assuming that... the air-conditioning in the theater is working properly. A 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. It must be the end of the world: the best film so far this year is a franchise sequel starring Wesley Snipes. There are moments of hilarity to be had. A hypnotic portrait of this sad, compulsive life. (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. One 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. Return to Never Land is reliable, standard Disney animated fare, with enough creative energy and wit to entertain all ages. Michael Moore's latest documentary about America's thirst for violence is his best film yet... Suffice 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. Like a Tarantino movie with heart, Alias Betty is richly detailed, deftly executed and utterly absorbing. Marvelously entertaining and deliriously joyous documentary. A brisk, reverent, and subtly different sequel. A movie I loved on first sight and, even more important, love in remembrance. Deserves a place of honor next to Nanook as a landmark in film history. Murderous 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... This is an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground. The 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. This is lightweight filmmaking, to be sure, but it's pleasant enough -- and oozing with attractive men. At its most basic, this cartoon adventure is that wind-in-the-hair exhilarating. Fans of critics' darling band Wilco will marvel at the sometimes murky, always brooding look of I Am Trying to Break Your Heart. The film presents visceral and dangerously honest revelations about the men and machines behind the curtains of our planet. (Gosling's) combination of explosive physical energy and convincing intelligence helps create a complex, unpredictable character. Confounding because it solemnly advances a daringly preposterous thesis. Acting cannot be acted. Fulford-Wierzbicki ... deftly captures the wise-beyond-her-years teen. A wild ride juiced with enough energy and excitement for at least three films. It'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. The movie is not as terrible as the synergistic impulse that created it. A 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. Less an examination of neo-Nazism than a probe into the nature of faith itself. A moving and weighty depiction of one family's attempts to heal after the death of a child. I don't think most of the people who loved the 1989 Paradiso will prefer this new version. But I do. A zinger-filled crowd-pleaser that open-minded Elvis fans (but by no means all) will have fun with. Diggs and Lathan are among the chief reasons Brown Sugar is such a sweet and sexy film. Entirely suspenseful, extremely well-paced and ultimately... dare I say, entertaining! The riveting performances by the incredibly flexible cast make Love a joy to behold. Terrific 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. With an unflappable air of decadent urbanity, Everett remains a perfect Wildean actor, and a relaxed Firth displays impeccable comic skill. The 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. Very well written and directed with brutal honesty and respect for its audience. Wonderful fencing scenes and an exciting plot make this an eminently engrossing film. It's pretty linear and only makeup-deep, but Bogdanovich ties it together with efficiency and an affection for the period. A surprisingly charming and even witty match for the best of Hollywood's comic-book adaptations. This is a superior horror flick. Adaptation is simply brilliant. Smart and alert, Thirteen Conversations About One Thing is a small gem. The 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. A haunting tale of murder and mayhem. I 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. It'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. One 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. Ian Holm conquers France as an earthy Napoleon Offers big, fat, dumb laughs that may make you hate yourself for giving in. Ah, what the hell. (Sports) admirable energy, full-bodied characterizations and narrative urgency. A portrait of an artist. Directors Brett Morgen and Nanette Burstein have put together a bold biographical fantasia. The 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. A tremendous piece of work. A delightful, if minor, pastry of a movie. While obviously aimed at kids, The Country Bears ... should keep parents amused with its low groan-to-guffaw ratio. LaBute masterfully balances both Traditional or Modern stories together in a manner that one never overwhelms the other. Something for everyone. Irwin 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. Leigh succeeds in delivering a dramatic slap in the face that's simultaneously painful and refreshing. Not 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. 'Film aficionados cannot help but love Cinema Paradiso, whether the original version or new Director's Cut.' A fascinating glimpse into an insular world that gives the lie to many clichés and showcases a group of dedicated artists. It'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. Contradicts 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. Could I have been more geeked when I heard that Apollo 13 was going to be released in IMAX format? In a word: No. Murderous Maids has a lot going for it, not least the brilliant performances by Testud ... and Parmentier. Filmmaker 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. There are a couple of things that elevate ``Glory'' above most of its ilk, most notably the mere presence of Duvall. It'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. (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. A breezy blend of art, history, esoteric musings and philosophy. Kids will love its fantasy and adventure, and grownups should appreciate its whimsical humor. Tsai Ming-liang's ghosts are painfully aware of their not-being. Leaping 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. Sean Penn, you owe Nicolas Cage an apology. The performances are uniformly good. She's all-powerful, a voice for a pop-cyber culture that feeds on her Bjorkness. It's a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it. For 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. The 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. This in-depth study of important developments of the computer industry should make it required viewing in university computer science departments for years to come. It shows us a slice of life that's very different from our own and yet instantly recognizable. A wonderfully speculative character study that made up for its rather slow beginning by drawing me into the picture. Has its share of arresting images. Leave 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. Reign of Fire just might go down as one of the all-time great apocalypse movies. A smart little indie. Payne has created a beautiful canvas, and Nicholson proves once again that he's the best brush in the business. Try as you might to resist, if you've got a place in your heart for Smokey Robinson, this movie will worm its way there. A riveting profile of law enforcement, and a visceral, nasty journey into an urban Hades. Director Douglas McGrath takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving into required reading. Stands 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. I 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. With not a lot of help from the screenplay (proficient, but singularly cursory), (Testud) acts with the feral intensity of the young Bette Davis. It'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. Slow and ponderous, but Rohmer's drama builds to an intense indoor drama about compassion, sacrifice, and Christian love in the face of political corruption. If you're not totally weirded- out by the notion of cinema as community-therapy spectacle, Quitting hits home with disorienting force. Austin Powers for the most part is extremely funny, the first part making up for any flaws that come later. While 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. Cho continues her exploration of the outer limits of raunch with considerable brio. Elvira fans could hardly ask for more. A canny, derivative, wildly gruesome portrait of a London sociopath who's the scariest of sadists. The movie should be credited with remembering his victims. Fast-paced and wonderfully edited, the film is extremely thorough. A bracing, unblinking work that serves as a painful elegy and sobering cautionary tale. Hashiguchi uses the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation. As 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. My 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. Few 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. Another love story in 2002's remarkable procession of sweeping pictures that have reinvigorated the romance genre. It's another retelling of Alexandre Dumas' classic. Why? Who knows, but it works under the direction of Kevin Reynolds. (F)rom the performances and the cinematography to the outstanding soundtrack and unconventional narrative, the film is blazingly alive and admirable on many levels. Shiri 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. Provides 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. A penetrating, potent exploration of sanctimony, self-awareness, self-hatred and self-determination. This isn't a retooled genre piece, the tale of a guy and his gun, but an amiably idiosyncratic work. Overall, it's a very entertaining, thought-provoking film with a simple message: God is love. It 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. Although 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. Jeong-Hyang Lee's film is deceptively simple, deeply satisfying. The 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. George 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. Even when it drags, we are forced to reflect that its visual imagination is breathtaking Although commentary on Nachtwey is provided ... it's the image that really tells the tale. A life-size reenactment of those Jack Chick cartoon tracts that always ended with some hippie getting tossed into the lake of fire. Grainy photography mars an otherwise delightful comedy of errors. this 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. The film is impressive for the sights and sounds of the wondrous beats the world has to offer. Daily 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. ...in no way original, or even all that memorable, but as downtown Saturday matinee brain candy, it doesn't disappoint. Clever 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. Cremaster 3 is at once a tough pill to swallow and a minor miracle of self-expression. Sex is one of those films that aims to confuse. Compared to his series of spectacular belly flops both on and off the screen, RunTelDat is something of a triumph. (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. The 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. In his debut as a director, Washington has a sure hand. His work with actors is particularly impressive. A generous, inspiring film that unfolds with grace and humor and gradually becomes a testament to faith. Delivers the sexy razzle-dazzle that everyone, especially movie musical fans, has been hoping for. Vincent Gallo is right at home in this French shocker playing his usual bad boy weirdo role. Fierce, glaring and unforgettable. Cletis is playful but highly studied and dependent for its success on a patient viewer. Like 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. Campanella gets the tone just right -- funny in the middle of sad in the middle of hopeful. Either a fascinating study of the relationship between mothers and their children or a disturbing story about sociopaths and their marks. ...gripping and handsome execution, (but) there isn't much about K-19 that's unique or memorable. Effective in all its aspects, Margarita Happy Hour represents an auspicious feature debut for Chaiken. The 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. Standing 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. Not the best Herzog perhaps, but unmistakably Herzog. Enjoyably fast-moving, hard-hitting documentary. Rehearsals 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. The 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. This is a stunning film, a one-of-a-kind tour de force. (Cho's face is) an amazing slapstick instrument, creating a scrapbook of living mug shots. It'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. While 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. An extremely funny, ultimately heartbreaking look at life in contemporary China. Your response to its new sequel, Analyze That, may hinge on what you thought of the first film. Davis is funny, charming and quirky in her feature film acting debut as Amy. Bloody 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. A lively and engaging examination of how similar obsessions can dominate a family. In 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. Faithful without being forceful, sad without being shrill, ``A Walk to Remember'' succeeds through sincerity. The film is a masterpiece of nuance and characterization, marred only by an inexplicable, utterly distracting blunder at the very end. The film is full of charm. The 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. One of those unassuming films that sneaks up on you and stays with you long after you have left the theatre. ...Pray doesn't have a passion for the material. He nonetheless appreciates the art and reveals a music scene that transcends culture and race. The one-liners are snappy, the situations volatile and the comic opportunities richly rewarded. It's anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother/daughter pair. Fathers 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. This sci-fi techno-sex thriller starts out bizarre and just keeps getting weirder. Last 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. A slight but sweet film. Writer/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. It is a happy, heady jumble of thought and storytelling, an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film. This new Time Machine is hardly perfect... yet it proves surprisingly serviceable. Even at its worst, it's not half-bad. Almost 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... Once folks started hanging out at the barbershop, they never wanted to leave. Chances are you won't, either. George Lucas returns as a visionary with a tale full of nuance and character dimension. Can be viewed as pure composition and form -- film as music An extraordinary dramatic experience. Every 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. If 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. It's a treat watching Shaw, a British stage icon, melting under the heat of Phocion's attentions. All 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. Narc 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. Me Without You has a bracing truth that's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood. It's a strange film, one that was hard for me to warm up to. Goes a long way on hedonistic gusto. The 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. The Scorpion King is more fun than Conan the Barbarian. If 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. Unexpected moments of authentically impulsive humor are the hallmark of this bittersweet, uncommonly sincere movie that portrays the frank humanity of...emotional recovery. Jacquot has filmed the opera exactly as the libretto directs, ideally capturing the opera's drama and lyricism. This is a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies. I liked it because it was so endlessly, grotesquely, inventive. Audiard successfully maintains suspense on different levels throughout a film that is both gripping and compelling. Credit director Ramsay for taking the sometimes improbable story and making it feel realistic. This is DiCaprio's best performance in anything ever, and easily the most watchable film of the year. Witherspoon puts to rest her valley-girl image, but it's Dench who really steals the show. Even 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. While dutifully pulling on heartstrings, directors Dean Deblois and Chris Sanders valiantly keep punching up the mix. Ambitious, unsettling psychodrama that takes full, chilling advantage of its rough-around-the-edges, low-budget constraints. Eric Byler's nuanced pic avoids easy sentiments and explanations ... Manages to be wholesome and subversive at the same time. When 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. The 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. Blithely anachronistic and slyly achronological. This 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! Triumph of Love is a very silly movie, but the silliness has a pedigree. Discursive but oddly riveting documentary. The movie has no respect for laws, political correctness or common decency, but it displays something more important: respect for its flawed, crazy people. On its own, Big Trouble could be considered a funny little film. An undeniably gorgeous, terminally smitten document of a troubadour, his acolytes, and the triumph of his band. This 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. A beautifully observed character piece. A coming-of-age movie that Hollywood wouldn't have the guts to make. It is quite a vision. There 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. A bittersweet drama about the limbo of grief and how truth-telling can open the door to liberation. A strong and confident work which works so well for the first 89 minutes, but ends so horrendously confusing in the final two Salma goes native and she's never been better in this colorful bio-pic of a Mexican icon. Filled with Alexandre Desplat's haunting and sublime music, the movie completely transfixes the audience. As chilling and fascinating as Philippe Mora's modern Hitler-study, Snide and Prejudice. An hour and a half of joyful solo performance. Strange and beautiful film. No worse a film than Breaking Out, and Breaking Out was utterly charming. Parker cannot sustain the buoyant energy level of the film's city beginnings into its country conclusion '... 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.' ...a guiltless film for nice evening out. Deflated ending aside, there's much to recommend the film. It'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. Performances all around are tops, with the two leads delivering Oscar-caliber performances. Everything about The Quiet American is good, except its timing. A savage John Waters-like humor that dances on the edge of tastelessness without ever quite falling over. At once a testament to the divine calling of education and a demonstration of the painstaking process of imparting knowledge. May seriously impair your ability to ever again maintain a straight face while speaking to a highway patrolman. It's an interesting effort (particularly for JFK conspiracy nuts), and Barry's cold-fish act makes the experience worthwhile. They're just a couple of cops in Copmovieland, these two, but in Narc, they find new routes through a familiar neighborhood. Brings awareness to an issue often overlooked -- women's depression. It's a shame the marvelous first 101 minutes have to be combined with the misconceived final 5. It 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. You 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. Foster and Whitaker are especially fine. She is a lioness, protecting her cub, and he a reluctant villain, incapable of controlling his crew. Undoubtedly the scariest movie ever made about tattoos. A movie that will wear you out and make you misty even when you don't want to be. Not only better than its predecessor, it may rate as the most magical and most fun family fare of this or any recent holiday season. Though the story ... is hackneyed, the characters have a freshness and modesty that transcends their predicament. Although Frailty fits into a classic genre, in its script and execution it is a remarkably original work. If this movie leaves you cool, it also leaves you intriguingly contemplative. The climactic events are so well realized that you may forget all about the original conflict, just like the movie does A rude black comedy about the catalytic effect a holy fool has upon those around him in the cutthroat world of children's television. All comedy is subversive, but this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work just becomes sad. If a horror movie's primary goal is to frighten and disturb, then They works spectacularly well...A shiver-inducing, nerve-rattling ride. A playful Iranian parable about openness, particularly the need for people of diverse political perspectives to get along despite their ideological differences. Brilliantly written and well-acted, Yellow Asphalt is an uncompromising film. That '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)... Personal 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. A fascinating literary mystery story with multiple strands about the controversy of who really wrote Shakespeare's plays. Throughout, Mr. Audiard's direction is fluid and quick. A dashing and absorbing outing with one of France's most inventive directors. It's a fine, old-fashioned-movie movie, which is to say it's unburdened by pretensions to great artistic significance. ...flat-out amusing, sometimes endearing and often fabulous, with a solid cast, noteworthy characters, delicious dialogue and a wide supply of effective sight gags. The Trials of Henry Kissinger is a remarkable piece of filmmaking ... because you get it. Nachtwey clears the cynicism right out of you. He makes you realize that deep inside righteousness can be found a tough beauty. What it lacks in substance it makes up for in heart. Robert 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. With 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 In Auteil's less dramatic but equally incisive performance, he's a charismatic charmer likely to seduce and conquer. The heart of the film is a touching reflection on aging, suffering and the prospect of death. Will 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. Its director's most substantial feature for some time. Fontaine's direction, especially her agreeably startling use of close-ups and her grace with a moving camera, creates sheerly cinematic appeal. The 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. ... a visually seductive, unrepentantly trashy take on Rice's second installment of her Vampire Chronicles. The story's scope and pageantry are mesmerizing, and Mr. Day-Lewis roars with leonine power. P.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. Twenty years later, E.T. is still a cinematic touchstone. This 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. It's virtually impossible to like any of these despicable characters. This is mostly well-constructed fluff, which is all it seems intended to be. Even through its flaws, Revolution #9 proves to be a compelling, interestingly told film. The best way to describe it is as a cross between Paul Thomas Anderson's Magnolia and David Lynch's Mulholland Dr. Schepisi, 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. Watching 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. There is no denying the power of Polanski's film... The movie is amateurish, but it's a minor treat. This charming but slight tale has warmth, wit and interesting characters compassionately portrayed. Offers a persuasive look at a defeated but defiant nation in flux. A return to pure Disney magic and is enjoyable family fare. Takes a fresh and absorbing look at a figure whose legacy had begun to bronze. A triumph of pure craft and passionate heart. Gosling creates a staggeringly compelling character, a young man whose sharp intellect is at the very root of his contradictory, self-hating, self-destructive ways. Witty and often surprising, a dark little morality tale disguised as a romantic comedy. Even 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. Got a David Lynch jones? Then you'd do well to check this one out because it's straight up Twin Peaks action... Astonishing...(frames) profound ethical and philosophical questions in the form of dazzling pop entertainment. Take Care is nicely performed by a quintet of actresses, but nonetheless it drags during its 112-minute length. It'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. One of the very best movies ever made about the life of moviemaking. Rarely does such high-profile talent serve such literate material. An elegant and sly deadpan comedy. The way the roundelay of partners functions, and the interplay within partnerships and among partnerships and the general air of Gator-bashing are consistently delightful. Land, people and narrative flow together in a stark portrait of motherhood deferred and desire explored. 'Blue Crush' swims away with the Sleeper Movie of the Summer award. You're not merely watching history, you're engulfed by it. A chick flick for guys. It's mildly entertaining, especially if you find comfort in familiarity. But it's hardly a necessary enterprise. The Quiet American isn't a bad film, it's just one that could easily wait for your pay per view dollar. As home movie gone haywire, it's pretty enjoyable, but as sexual manifesto, I'd rather listen to old Tori Amos records. In 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. Like 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. A sensitive, cultivated treatment of Greene's work as well as a remarkably faithful one. It'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. It'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. What makes Barbershop so likable, with all its flaws, is that it has none of the pushiness and decibel volume of most contemporary comedies. Watching these two actors play against each other so intensely, but with restraint, is a treat. An example of quiet, confident craftsmanship that tells a sweet, charming tale of intergalactic friendship. A meditation on faith and madness, Frailty is blood-curdling stuff. The production design, score and choreography are simply intoxicating. A comedy that is warm, inviting, and surprising. So 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. Suspend your disbelief here and now, or you'll be shaking your head all the way to the credits. Trades run-of-the-mill revulsion for extreme unease. ...one of the more influential works of the 'Korean New Wave'. Implicitly 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. A beautifully tooled action thriller about love and terrorism in Korea. Director-writer Bille August ... depicts this relationship with economical grace, letting his superb actors convey Martin's deterioration and Barbara's sadness -- and, occasionally, anger. Victor Rosa is Leguizamo's best movie work so far, a subtle and richly internalized performance. Birthday Girl doesn't try to surprise us with plot twists, but rather seems to enjoy its own transparency. smart, funny and just honest enough to provide the pleasures of a slightly naughty, just-above-average off- Broadway play. Topics that could make a sailor blush - but lots of laughs. Michael 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. A fine production with splendid singing by Angela Gheorghiu, Ruggero Raimondi, and Roberto Alagna. About 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. None of this is meaningful or memorable, but frosting isn't, either, and you wouldn't turn down a big bowl of that, would you? The film is a fierce dance of destruction. Its flame-like, roiling black-and-white inspires trembling and gratitude. May lack the pungent bite of its title, but it's an enjoyable trifle nonetheless. ... manages to fall closer in quality to Silence than to the abysmal Hannibal. You 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. Diane Lane works nothing short of a minor miracle in Unfaithful. Takashi Miike keeps pushing the envelope: Ichi the Killer A 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. Exhilarating but blatantly biased. Much of what we see is horrible but it's also undeniably exceedingly clever. It understands, in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking. Ramsay succeeds primarily with her typical blend of unsettling atmospherics, delivering a series of abrasive, stylized sequences that burn themselves upon the viewer's memory. ... a thoughtful what-if for the heart as well as the mind. Like its bizarre heroine, it irrigates our souls. Hawn and Sarandon form an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare. It's a fun adventure movie for kids (of all ages) that like adventure. A very capable nailbiter. Because the genre is well established, what makes the movie fresh is smart writing, skewed characters, and the title performance by Kieran Culkin. ``White Oleander,'' the movie, is akin to a Reader's Digest condensed version of the source material. It'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. What's most refreshing about Real Women Have Curves is its unforced comedy-drama and its relaxed, natural-seeming actors. The low-key direction is pleasingly emphatic in this properly intense, claustrophobic tale of obsessive love. Secretary is just too original to be ignored. That rare film whose real-life basis is, in fact, so interesting that no embellishment is needed. Smart and fun, but far more witty than it is wise. This 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. Originality ain't on the menu, but there's never a dull moment in the giant spider invasion comic chiller. Walter Hill's Undisputed is like a 1940s Warner Bros. B picture, and I mean that as a compliment. This one is not nearly as dreadful as expected. In fact, it's quite fun in places. With 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. A biopic about Crane's life in the classic tradition but evolves into what has become of us all in the era of video. The best of the Pierce Brosnan James Bond films to date. Thanks to a small star with big heart, this family film sequel is plenty of fun for all. While the now 72-year-old Robert Evans been slowed down by a stroke, he has at least one more story to tell: his own. It's about individual moments of mood, and an aimlessness that's actually sort of amazing. The people in Jessica are so recognizable and true that, as in real life, we're never sure how things will work out. A tone poem of transgression. Creeps you out in high style, even if Nakata did it better. Rubbo runs through a remarkable amount of material in the film's short 90 minutes. Visually engrossing, seldom hammy, honorably Mexican and burns its Kahlories with conviction. This is Christmas Future for a lot of baby boomers. Despite 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. Spider-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. The obnoxious title character provides the drama that gives added clout to this doc. Anyone who welcomes a dash of the avant-garde fused with their humor should take pleasure in this crazed, joyous romp of a film. The 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. Saddled with an unwieldy cast of characters and angles, but the payoff is powerful and revelatory. It'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. Mr. Caine and Mr. Fraser are the whole show here, with their memorable and resourceful performances. A frustrating yet deeply watchable melodrama that makes you think it's a tougher picture than it is. A giddy and provocative sexual romp that has something to say. (Russell) makes good B movies (The Mask, The Blob), and The Scorpion King more than ably meets those standards. Otto-Sallies has a real filmmaker's eye. This is a smart movie that knows its classical music, knows its Freud and knows its Sade. The 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. Beautifully reclaiming the story of Carmen and recreating it an in an African idiom. The 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. A flawed but engrossing thriller. Demonstrates the unusual power of thoughtful, subjective filmmaking. Expect no major discoveries, nor any stylish sizzle, but the film sits with square conviction and touching good sense on the experience of its women. The success of Undercover Brother is found in its ability to spoof both black and white stereotypes equally. This 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. Cox creates a fluid and mesmerizing sequence of images to match the words of Nijinsky's diaries. What Bloody Sunday lacks in clarity, it makes up for with a great, fiery passion. Its adult themes of familial separation and societal betrayal are head and shoulders above much of the director's previous popcorn work. Director 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. The film grows on you. And how. One 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. Halloween: Resurrection isn't exactly quality cinema, but it isn't nearly as terrible as it cold have been. As banal as the telling may be -- and at times, All My Loved Ones more than flirts with kitsch -- the tale commands attention. Romantic comedy and Dogme 95 filmmaking may seem odd bedfellows, but they turn out to be delightfully compatible here. The most wondrous love story in years, it is a great film. Some movies suck you in despite their flaws, and Heaven is one such beast. My Wife Is an Actress works as well as it does because (the leads) are such a companionable couple. With 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. Based 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. Bouquet gives a performance that is masterly. A poignant comedy that offers food for thought. ...a series of tales told with the intricate preciseness of the best short story writing. If 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. This 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. While the path may be familiar, first-time director Denzel Washington and a top-notch cast manage to keep things interesting. An engaging criminal romp that will have viewers guessing just who's being conned right up to the finale. The picture runs a mere 84 minutes, but it's no glance. It's a head-turner -- thoughtfully written, beautifully read and, finally, deeply humanizing. It asks nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up. It is as uncompromising as it is nonjudgmental, and makes clear that a prostitute can be as lonely and needy as any of the clients. ``Barbershop'' is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story. Tully 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. I like this movie a lot. I like that Smith, he's not making fun of these people, he's not laughing at them. ...the implication is Kissinger may have decided that -- when it comes to truncheoning -- it's better to give than to receive. 'What's the Russian word for Wow!?' Kiarostami has crafted a deceptively casual ode to children and managed to convey a tiny sense of hope. I had more fun watching Spy than I had with most of the big summer movies. What 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 Murder by Numbers' isn't a great movie, but it's a perfectly acceptable widget. For those of an indulgent, slightly sunbaked and summery mind, Sex and Lucia may well prove diverting enough. What (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. A well-done film of a self-reflexive, philosophical nature. Texan director George Ratliff had unlimited access to families and church meetings, and he delivers fascinating psychological fare. The rich performances by Friel -- and especially Williams, an American actress who becomes fully English -- round out the square edges. The 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. A film in a class with Spike Lee's masterful Do The Right Thing. Jagger, Stoppard and director Michael Apted ... deliver a riveting and surprisingly romantic ride. Greengrass (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. A thought-provoking and often-funny drama about isolation. Whatever one makes of its political edge, this is beautiful filmmaking from one of French cinema's master craftsmen. Mama Africa pretty much delivers on that promise. It does give you a peek. The main problem being that it's only a peek. Roman Polanski's autobiographical gesture at redemption is better than 'Shindler's List' - it is more than merely a Holocaust movie. A perfectly respectable, perfectly inoffensive, easily forgettable film. Romanek'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. Seeing 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. Speaks eloquently about the symbiotic relationship between art and life. The work of an artist tormented by his heritage, using his storytelling ability to honor the many faceless victims. The audacity to view one of Shakespeare's better known tragedies as a dark comedy is, by itself, deserving of discussion. This is an exercise in chilling style, and Twohy films the sub, inside and out, with an eye on preserving a sense of mystery. An uncomfortable experience, but one as brave and challenging as you could possibly expect these days from American cinema. Hailed as a clever exercise in neo-Hitchcockianism, this clever and very satisfying picture is more accurately Chabrolian. Funny and also heartwarming without stooping to gooeyness. At the film's centre is a precisely layered performance by an actor in his mid-seventies, Michel Piccoli. The viewer takes great pleasure in watching the resourceful Molly stay a step ahead of her pursuers. With amazing finesse, the film shadows Heidi's trip back to Vietnam and the city where her mother, Mai Thi Kim, still lives. Director Charles Stone III applies more detail to the film's music than to the story line; what's best about Drumline is its energy. A heroic tale of persistence that is sure to win viewers' hearts. It's all a rather shapeless good time... has far more energy, wit and warmth than should be expected from any movie with a ``2'' at the end of its title. A little better than Sorcerer's Stone. A chilling movie without oppressive gore. A uniquely sensual metaphorical dramatization of sexual obsession that spends a bit too much time on its fairly ludicrous plot. If you like peace, you'll like Promises. Be prepared to cling to the edge of your seat, tense with suspense. The Ring never lets you off the hook. Thumbs up to Paxton for not falling into the Hollywood trap and making a vanity project with nothing new to offer. At once disarmingly straightforward and strikingly devious. If you like quirky, odd movies and/or the ironic, here's a fun one. Sensitive ensemble performances and good period reconstruction add up to a moving tragedy with some buoyant human moments. It's not the least of Afghan tragedies that this noble warlord would be consigned to the dustbin of history. It's a lovely, sad dance highlighted by Kwan's unique directing style. The script by David Koepp is perfectly serviceable and because he gives the story some soul ... he elevates the experience to a more mythic level. This is a visually stunning rumination on love, memory, history and the war between art and commerce. Short-story quaint, touchingly mending a child's pain for his dead mother via communication with an old woman straight out of Eudora Welty. It's always fascinating to watch Marker the essayist at work. A quiet family drama with a little bit of romance and a dose of darkness. The tasteful little revision works wonders, enhancing the cultural and economic subtext, bringing richer meaning to the story's morals. Kosminsky ... puts enough salt into the wounds of the tortured and self-conscious material to make it sting. One of the greatest films I've ever seen. Its gentle, touching story creeps into your heart. About as big a crowdpleaser as they possibly come. Bound to appeal to women looking for a howlingly trashy time. Even 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. A poignant and gently humorous parable that loves its characters and communicates something rather beautiful about human nature. Real Women Have Curves doesn't offer any easy answers. Vampire epic succeeds as spooky action-packed trash of the highest order. One of the funniest motion pictures of the year, but...also one of the most curiously depressing. While 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. Like the chilled breath of oral storytelling frozen onto film. A charmer from Belgium. A wild, endearing, masterful documentary. Jackie Chan movies are a guilty pleasure - he's easy to like and always leaves us laughing. Brown Sugar signals director Rick Famuyiwa's emergence as an articulate, grown-up voice in African-American cinema. With exquisite craftsmanship ... Olivier Assayas has fashioned an absorbing look at provincial bourgeois French society. It's rare for any movie to be as subtle and touching as The Son's Room. It has a way of seeping into your consciousness, with lingering questions about what the film is really getting at. Maelstrom is a deliberately unsteady mixture of stylistic elements. (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. (D)espite its familiar subject matter, Ice Age is consistently amusing and engrossing ... The 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 Assured, glossy and shot through with brittle desperation. The bottom line is the piece works brilliantly. It was only a matter of time before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo. It is Scott's convincing portrayal of Roger the sad cad that really gives the film its oomph. While this movie, by necessity, lacks Fellowship's heart, Two Towers outdoes its spectacle. Meyjes ... has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics. Aside 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. What 'Dumb and Dumber' would have been without the vulgarity and with an intelligent, life-affirming script. ...a vivid, thoughtful, unapologetically raw coming-of-age tale full of sex, drugs and rock 'n' roll. You wouldn't want to live waydowntown, but it is a hilarious place to visit. Films are made of little moments. Changing Lanes tries for more. It doesn't reach them, but the effort is gratefully received. When the movie mixes the cornpone and the Cosa Nostra, it finds a nice rhythm. The 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. Terrific casting and solid execution give all three stories life. A hard look at one man's occupational angst and its subsequent reinvention, a terrifying study of bourgeois desperation worthy of Claude Chabrol. (Ramsay) visually transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art, music and metaphor. Frequent flurries of creative belly laughs and genuinely enthusiastic performances...keep the movie slaloming through its hackneyed elements with enjoyable ease. At its best, this is grand-scale moviemaking for a larger-than-life figure, an artist who has been awarded mythic status in contemporary culture. The 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. 10 minutes into the film you'll be white-knuckled and unable to look away. It's a beautiful film, full of elaborate and twisted characters - and it's also pretty funny. Could this be the first major studio production shot on video tape instead of film? Not since Ghostbusters has a film used Manhattan's architecture in such a gloriously goofy way. As tricky and satisfying as any of David Mamet's airless cinematic shell games. The universal theme of becoming a better person through love has never been filmed more irresistibly than in 'Baran.' Cube's charisma and chemistry compensate for corniness and cliche. With lesser talents, High Crimes would be entertaining, but forgettable. With Freeman and Judd, I'll at least remember their characters. As 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. The 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. Daughter From Danang sticks with its subjects a little longer and tells a deeper story A 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. The 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. A distinguished and thoughtful film, marked by acute writing and a host of splendid performances. Barry convinces us he's a dangerous, secretly unhinged guy who could easily have killed a president because it made him feel powerful. Takes 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. I 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. It'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. Changing 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. borrows a bit from the classics ``Wait Until Dark'' and ``Extremities'' ... But in terms of its style, the movie is in a class by itself. Because 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. Puts a refreshing and comical spin on the all-too-familiar saga of the contemporary single woman. If you grew up on Scooby -- you'll love this movie. Matthew Lillard is born to play Shaggy! Though filmed partly in Canada, Paid in Full has clever ways of capturing inner-city life during the Reagan years. ``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.'' This 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. The movie is a trove of delights. Excellent performances from Jacqueline Bisset and Martha Plimpton grace this deeply touching melodrama. In a summer of clones, Harvard Man is something rare and riveting: a wild ride that relies on more than special effects. While the humor is recognizably Plympton, he has actually bothered to construct a real story this time. Jolting into Charleston rhythms, the story has the sizzle of old news that has finally found the right vent (accurate? Who cares?). An overly melodramatic but somewhat insightful French coming-of-age film ... Most 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. Close enough in spirit to its freewheeling trash-cinema roots to be a breath of fresh air. Skillfully weaves both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise. Damon brings the proper conviction to his role as (Jason Bourne). For the most part, it works beautifully as a movie without sacrificing the integrity of the opera. As played by Ryan Gosling, Danny is a frighteningly fascinating contradiction. This is not Chabrol's best, but even his lesser works outshine the best some directors can offer. Despite its flaws, Crazy as Hell marks an encouraging new direction for La Salle. You'll end up moved. If 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. The 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. I loved the look of this film. Those with a modicum of patience will find in these characters' foibles a timeless and unique perspective. Beautiful to watch and holds a certain charm. 13 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. The movie is our story as much as it is Schmidt's, no matter if it's viewed as a self-reflection or cautionary tale. Foster breathes life into a roll that could have otherwise been bland and run of the mill. Quitting offers piercing domestic drama with spikes of sly humor. Some people want the ol' ball-and-chain and then there are those who just want the Ball and Chain. (Barry) gives Assassin a disquieting authority. It's refreshing to see a romance this smart. At its best (and it does have some very funny sequences) Looking for Leonard reminds you just how comically subversive silence can be. As 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. Anyone who ever fantasized about space travel but can't afford the $20 million ticket to ride a Russian rocket should catch this IMAX offering. ``The turntable is now outselling the electric guitar...'' Transforms one of (Shakespeare's) deepest tragedies into a smart new comedy. An intelligent and deeply felt work about impossible, irrevocable choices and the price of making them. It 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. Sayles is making a statement about the inability of dreams and aspirations to carry forward into the next generation. As Antonia is assimilated into this newfangled community, the film settles in and becomes compulsively watchable in a guilty-pleasure, daytime-drama sort of fashion. every 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 On its own staggeringly unoriginal terms, this gender-bending comedy is generally quite funny. It's never dull and always looks good. The tonal shifts are jolting, and though Wen's messages are profound and thoughtfully delivered, more thorough transitions would have made the film more cohesive. As 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. With wit and empathy to spare, waydowntown acknowledges the silent screams of workaday inertia but stops short of indulging its characters' striving solipsism. All of it works smoothly under the direction of Spielberg, who does a convincing impersonation here of a director enjoying himself immensely. The kind of sweet-and-sour insider movie that film buffs will eat up like so much gelati. With 'Bowling for Columbine,' Michael Moore gives us the perfect starting point for a national conversation about guns, violence, and fear. One of the year's most weirdly engaging and unpredictable character pieces. One of the best inside-show-biz yarns ever. None 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. A terrifically entertaining specimen of Spielbergian sci-fi. A rare and lightly entertaining look behind the curtain that separates comics from the people laughing in the crowd. Solondz is so intent on hammering home his message that he forgets to make it entertaining. Whatever 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. It establishes its ominous mood and tension swiftly, and if the suspense never rises to a higher level, it is nevertheless maintained throughout. Although What Time offers Tsai's usual style and themes, it has a more colorful, more playful tone than his other films. A moving and stark reminder that the casualties of war reach much further than we imagine. A thoroughly engaging, surprisingly touching British comedy. A sloppy, amusing comedy that proceeds from a stunningly unoriginal premise. ...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 captures that perverse element of the Kafkaesque where identity, overnight, is robbed and replaced with a persecuted ``other.'' The actors are simply too good, and the story too intriguing, for technical flaws to get in the way. An estrogen opera so intensely feminine that it serves as the antidote (and cannier doppelganger) to Diesel's XXX flex-a-thon. Imamura 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. It'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. A family film that contains some hefty thematic material on time, death, eternity, and what is needed to live a rich and full life. With Dickens' words and writer-director Douglas McGrath's even-toned direction, a ripping good yarn is told. Exactly what its title implies: lusty, boisterous and utterly charming. The film is darkly funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work. A smart, compelling drama. A must-see for fans of thoughtful war films and those interested in the sights and sounds of battle. I found myself liking the film, though in this case one man's treasure could prove to be another man's garbage. ...Rogers's mouth never stops shut about the war between the sexes and how to win the battle. Deliberately and skillfully uses ambiguity to suggest possibilities which imbue the theme with added depth and resonance. It'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. Nicholson's understated performance is wonderful. As Warren he stumbles in search of all the emotions and life experiences he's neglected over the years. Despite its old-hat set-up and predictable plot, Empire still has enough moments to keep it entertaining. Another entertaining romp from Robert Rodriguez. It's not a classic spy-action or buddy movie, but it's entertaining enough and worth a look. I am more offended by his lack of faith in his audience than by anything on display here. A sharp satire of desperation and cinematic deception. Tsai convincingly paints a specifically urban sense of disassociation here. If you can swallow its absurdities and crudities Lagaan really is enormously good fun. An unorthodox little film noir organized crime story that includes one of the strangest love stories you will ever see. A pleasing, often-funny comedy. (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. All three actresses are simply dazzling, particularly Balk, who's finally been given a part worthy of her considerable talents. An Asian neo-realist treasure. Plummer 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. ... less a story than an inexplicable nightmare, right down to the population's shrugging acceptance to each new horror. I 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. A compassionate, moving portrait of an American (and an America) always reaching for something just outside his grasp. An original little film about one young woman's education. The 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. One 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. An instance of an old dog not only learning but inventing a remarkable new trick. Rodriguez has the chops of a smart-aleck film school brat and the imagination of a big kid... Amy and Matthew have a bit of a phony relationship, but the film works in spite of it. Garcia and the other actors help make the wobbly premise work. It's surprisingly decent, particularly for a tenth installment in a series. A fascinating, unnerving examination of the delusions of one unstable man. It's no accident that The Accidental Spy is a solid action pic that returns the martial arts master to top form. Leave 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. The 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. Heartwarming here relies less on forced air than on Petter Næss' delicate, clever direction ... and a wonderful, imaginative script by Axel Hellstenius. Makes 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. Steers refreshingly clear of the usual cliches. ``Home Movie'' is a sweet treasure and something well worth your time. Highly recommended viewing for its courage, ideas, technical proficiency and great acting. The movie's thesis -- elegant technology for the masses -- is surprisingly refreshing. Scott delivers a terrific performance in this fascinating portrait of a modern Lothario. ... 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. Combines 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. While 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. Marshall puts a suspenseful spin on standard horror flick formula. As lively an account as Seinfeld is deadpan. Though Lan Yu lacks a sense of dramatic urgency, the film makes up for it with a pleasing verisimilitude. You may leave the theater with more questions than answers, but darned if your toes won't still be tapping. Take any 12-year-old boy to see this picture, and he'll be your slave for a year. But this is not a movie about an inhuman monster; it's about a very human one. At 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. What makes it worth watching is Quaid's performance. Soderbergh skims the fat from the 1972 film. What's left is a rich stew of longing. It'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. More 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. Hatfield 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. Best of all is Garcia, who perfectly portrays the desperation of a very insecure man. The 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. A sobering and powerful documentary about the most severe kind of personal loss: rejection by one's mother. Often overwrought and at times positively irritating, the film turns into an engrossing thriller almost in spite of itself. Humorous 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. A poignant lyricism runs through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem. This is SO De Palma. If you love him, you'll like it. If you don't...well, skip to another review. Rouge 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. The moral shrapnel and mental shellshock will linger long after this film has ended. Unfolds in a series of achronological vignettes whose cumulative effect is chilling. The movie enters a realm where few non-porn films venture, and comes across as darkly funny, energetic, and surprisingly gentle. Although the subject matter may still be too close to recent national events, the film works - mostly due to its superior cast of characters. It's not going to be everyone's bag of popcorn, but it definitely gives you something to chew on. Huppert and Girardot give performances of exceptional honesty. It has that rare quality of being able to creep the living hell out of you... A cautionary tale about the grandiosity of a college student who sees himself as impervious to a fall. An infinitely wittier version of the Home Alone formula. Feardotcom's thrills are all cheap, but they mostly work. (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. Mr. Deeds is, as comedy goes, very silly -- and in the best way. You 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. With We Were Soldiers, Hollywood makes a valiant attempt to tell a story about the Vietnam War before the pathology set in. '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.' Broomfield reveals an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force. At 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. Stuart'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. There is greatness here. Boasts enough funny dialogue and sharp characterizations to be mildly amusing. Director 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. If you love the music, and I do, its hard to imagine having more fun watching a documentary ... Nakata's technique is to imply terror by suggestion, rather than the overuse of special effects. ``13 Conversations About One Thing'' is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling. Satin 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. Though an important political documentary, this does not really make the case the Kissinger should be tried as a war criminal. Cannon's confidence and laid-back good spirits are, with the drumming routines, among the film's saving graces. In its understanding, often funny way, it tells a story whose restatement is validated by the changing composition of the nation. She may not be real, but the laughs are. A 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. OK 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. The 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. About Schmidt is undoubtedly one of the finest films of the year. If you're not deeply touched by this movie, check your pulse. The charm of Revolution OS is rather the way it introduces you to new, fervently held ideas and fanciful thinkers. Until 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. Offers the flash of rock videos fused with solid performances and eerie atmosphere. Filmmakers 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 For 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. An edifying glimpse into the wit and revolutionary spirit of these performers and their era. Craig Bartlett and director Tuck Tucker should be commended for illustrating the merits of fighting hard for something that really matters. The film is saved from aren't-kids-cute sentimentality by a warmth that isn't faked and a stately sense of composition. This is one of the year's best films. A fleet-footed and pleasingly upbeat family diversion. Sorvino is delightful in the central role. She nearly glows with enthusiasm, sensuality and a conniving wit. It's immensely ambitious, different than anything that's been done before and amazingly successful in terms of what it's trying to do. The story, once it gets rolling, is nothing short of a great one. Great performances, stylish cinematography and a gritty feel help make Gangster No. 1 a worthwhile moviegoing experience. ``Mr. Deeds'' is suitable summer entertainment that offers escapism without requiring a great deal of thought. It's an ambitious film, and as with all ambitious films, it has some problems. But on the whole, you're gonna like this movie. Chaiken ably balances real-time rhythms with propulsive incident. This is an extraordinary film, not least because it is Japanese and yet feels universal. In 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. There's just something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance. A funny and touching film that is gorgeously acted by a British cast to rival Gosford Park's. There'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. I'm not generally a fan of vegetables but this batch is pretty cute. Qutting may be a flawed film, but it is nothing if not sincere. Beautifully crafted, engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic, twisty yarn that will keep them guessing. A 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. A cultural wildcard experience: wacky, different, unusual, even nutty. Daughter 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. For 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. This is not an easy film. But it could be, by its art and heart, a necessary one. A very good film sits in the place where a masterpiece should be. ...spellbinding fun and deliciously exploitative. It's Jagger's bone-dry, mournfully brittle delivery that gives the film its bittersweet bite. Impossible 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. Despite the predictable parent vs. child coming-of-age theme, first-class, natural acting and a look at ``the real Americans'' make this a charmer. One of the smarter offerings the horror genre has produced in recent memory, even if it's far tamer than advertised. One of recent memory's most thoughtful films about art, ethics, and the cost of moral compromise. the film doesn't sustain its initial promise with a jarring, new-agey tone creeping into the second half Blade 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. The 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. Many a parent and their teen (or preteen) kid could bond while watching A Walk To Remember. So could young romantics out on a date. All leather pants & augmented boobs, Hawn is hilarious as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative, handbag-clutching Sarandon. The 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. While 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. Chicago offers much colorful eye candy, including the spectacle of Gere in his dancing shoes, hoofing and crooning with the best of them. A 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. By and large this is Mr. Kilmer's movie, and it's his strongest performance since The Doors. Some 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. A charming but slight comedy. Henry Bean's thoughtful screenplay provides no easy answers, but offers a compelling investigation of faith versus intellect A great cast and a wonderful but sometimes confusing flashback movie about growing up in a dysfunctional family. Playing a role of almost Bergmanesque intensity ... Bisset is both convincing and radiant. A smart, provocative drama that does the nearly impossible: It gets under the skin of a man we only know as an evil, monstrous lunatic. An alternately fascinating and frustrating documentary. Griffin & Co. manage to be spectacularly outrageous. Nair's cast is so large it's Altman-esque, but she deftly spins the multiple stories in a vibrant and intoxicating fashion. The movie plays up the cartoon's more obvious strength of snazziness while neglecting its less conspicuous writing strength. Poignant Japanese epic about adolescent anomie and heartbreak. We'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. Secretary is not a movie about fetishism. It is a movie about passion. Even 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. Although 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. What could have easily become a cold, calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking. A 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. The IMAX screen enhances the personal touch of manual animation. Does an impressive job of relating the complicated history of the war and of filling in the background. It's all about Anakin ... and the lustrous polished visuals rich in color and creativity and, of course, special effect. Lacks 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. It's funny, touching, dramatically forceful, and beautifully shot. Its rawness and vitality give it considerable punch. A live-wire film that never loses its ability to shock and amaze. The 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. It'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. Brims with passion: for words, for its eccentric, accident-prone characters, and for the crazy things that keep people going in this crazy life. It's secondary to American Psycho but still has claws enough to get inside you and stay there for a couple of hours. The Hours, a delicately crafted film, is an impressive achievement in spite of a river of sadness that pours into every frame. Fudges fact and fancy with such confidence that we feel as if we're seeing something purer than the real thing. This is unusual, food-for-thought cinema that's as entertaining as it is instructive. With an expressive face reminiscent of Gong Li and a vivid personality like Zhang Ziyi's, Dong stakes out the emotional heart of Happy. Nohe'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. It 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? Secret Ballot is a funny, puzzling movie ambiguous enough to be engaging and oddly moving. Although devoid of objectivity and full of nostalgic comments from the now middle-aged participants, Dogtown and Z-Boys has a compelling story to tell. It's got some pretentious eye-rolling moments and it didn't entirely grab me, but there's stuff here to like. Birthday Girl walks a tricky tightrope between being wickedly funny and just plain wicked. The 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. Brings an irresistible blend of warmth and humor and a consistent embracing humanity in the face of life's harshness. Jackson is always watchable. To the degree that ivans xtc. works, it's thanks to Huston's revelatory performance. A wild ride of a movie that keeps throwing fastballs. Confessions is without a doubt a memorable directorial debut from King Hunk. Weird, vulgar comedy that's definitely an acquired taste. A...cynical and serious look at teenage boys doing what they do best - being teenagers. The film is a very good viewing alternative for young women. Australian 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. A dazzling dream of a documentary. A keep-'em-guessing plot and an affectionate take on its screwed-up characters. Brave and sweetly rendered love story. The film proves unrelentingly grim -- and equally engrossing. A hallmark film in an increasingly important film industry and worth the look. The Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding, but its provocative central wedding sequence has far more impact. If you like blood, guts and crazy beasts stalking men with guns though... you will likely enjoy this monster. The difference between Cho and most comics is that her confidence in her material is merited. Sad to say -- it accurately reflects the rage and alienation that fuels the self-destructiveness of many young people. There 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. 'Anyone with a passion for cinema, and indeed sex, should see it as soon as possible.' Seeks to transcend its genre with a curiously stylized, quasi-Shakespearean portrait of pure misogynist evil. Mordantly funny and intimately knowing ... What makes the movie special is its utter sincerity. Fast and funny, an action cartoon that's suspenseful enough for older kids but not too scary for the school-age crowd. One of those rare films that come by once in a while with flawless amounts of acting, direction, story and pace. The AAA of action, XXX is a blast of adrenalin, rated EEE for excitement. And Vin Diesel is the man. Earnest, unsubtle and Hollywood-predictable, Green Dragon is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese. An 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. Nair 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. The 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. Despite its floating narrative, this is a remarkably accessible and haunting film. Vibrantly colored and beautifully designed, Metropolis is a feast for the eyes. Sweetly sexy, funny and touching. ...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. Is truth stranger than fiction? In (screenwriter) Charlie Kaufman's world, truth and fiction are equally strange, and his for the taking. For decades we've marveled at Disney's rendering of water, snow, flames and shadows in a hand-drawn animated world. Prepare to marvel again. A witty, low-key romantic comedy. More good than great but Freeman and Judd make it work. If you're looking for a smart, nuanced look at de Sade and what might have happened at Picpus, Sade is your film. Could have been crisper and punchier, but it's likely to please audiences who like movies that demand four hankies. Together writer-director Danny Verete's three tales comprise a powerful and reasonably fulfilling gestalt. Bursting through the constraints of its source, this is one adapted- from-television movie that actually looks as if it belongs on the big screen. Its almost too-spectacular coastal setting distracts slightly from an eccentric and good-naturedly aimless story. In 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! This story of a determined woman's courage to find her husband in a war zone offers winning performances and some effecting moments. Like 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. A modestly made but profoundly moving documentary. It 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. Not everything in this ambitious comic escapade works, but Coppola, along with his sister, Sofia, is a real filmmaker. It must be in the genes. The performers are so spot on, it is hard to conceive anyone else in their roles. This slight premise ... works because of the ideal casting of the masterful British actor Ian Holm as the aged Napoleon. Hashiguchi 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. Although the film boils down to a lightweight story about matchmaking, the characters make Italian for Beginners worth the journey The dragons are the real stars of Reign of Fire and you won't be disappointed. Kudos to the most enchanting film of the year. It works well enough, since the thrills pop up frequently, and the dispatching of the cast is as often imaginative as it is gory. Colorful 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. It'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. Director Paul Cox's unorthodox, abstract approach to visualizing Nijinsky's diaries is both stimulating and demanding. For 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. Most of the things that made the original Men in Black such a pleasure are still there. Mostly honest, this somber picture reveals itself slowly, intelligently, artfully. Best enjoyed as a work of fiction inspired by real-life events. Those seeking a definitive account of Eisenstein's life would do better elsewhere. (Westbrook) makes a wonderful subject for the camera. A film that's flawed and brilliant in equal measure. Even 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. Ultimately too repellent to fully endear itself to American art house audiences, but it is notable for its stylistic austerity and forcefulness. Hardly a film that comes along every day. A 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. The film's only missteps come from the script's insistence on providing deep emotional motivation for each and every one of Abagnale's antics. A sweet, tender sermon about a 12-year-old Welsh boy more curious about God than girls, who learns that believing in something does matter. the film belongs to the marvelous Verdu, a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public More intimate than spectacular, E.T. is carried less by wow factors than by its funny, moving yarn that holds up well after two decades. For 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. If 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. Moonlight 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. It is an indelible epic American story about two families, one black and one white, facing change in both their inner and outer lives. Not 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. Quite simply, a joy to watch and--especially--to listen to. A flawed film but an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly succeeds. The filmmakers wisely decided to let Crocodile Hunter Steve Irwin do what he does best, and fashion a story around him. A winning and wildly fascinating work. We do get the distinct impression that this franchise is drawing to a close. Worth catching for Griffiths' warm and winning central performance. The tone errs on the shrill side, tempered by a soft southern gentility that speaks of beauty, grace and a closet full of skeletons. An interesting psychological game of cat-and-mouse, three-dimensional characters and believable performances all add up to a satisfying crime drama. A 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. The 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. Maintains your interest until the end and even leaves you with a few lingering animated thoughts. There 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. If Divine Secrets of the Ya-Ya Sisterhood suffers from a ploddingly melodramatic structure, it comes to life in the performances. If you ignore the cliches and concentrate on City by the Sea's interpersonal drama, it ain't half-bad. There 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. Reign 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. An earnest, roughshod document, it serves as a workable primer for the region's recent history, and would make a terrific 10th-grade learning tool. Samuel Beckett applied to the Iranian voting process. The Bard as black comedy -- Willie would have loved it. Another trumpet blast that there may be a New Mexican Cinema a-bornin'. '...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.' Tadpole 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. This is a story that zings all the way through with originality, humour and pathos. As 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. It is a challenging film, if not always a narratively cohesive one. Trapped won't score points for political correctness, but it may cause parents a few sleepless hours -- a sign of its effectiveness. A 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. It'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. As 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. There'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. Like a skillful fisher, the director uses the last act to reel in the audience since its poignancy hooks us completely. A film with contemporary political resonance illustrated by a winning family story. Kids 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. An unsettling, memorable cinematic experience that does its predecessors proud. Maid 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. Much of All About Lily Chou-Chou is mesmerizing: some of its plaintiveness could make you weep. Ferrara's strongest and most touching movie of recent years. Spielberg's first real masterpiece, it deserved all the hearts it won -- and wins still, 20 years later. The 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... More than simply a portrait of early extreme sports, this peek into the 1970s skateboard revolution is a skateboard film as social anthropology... What I saw, I enjoyed. The 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. A deft, delightful mix of sulky teen drama and overcoming-obstacles sports-movie triumph. Daringly perceptive, taut, piercing and feisty, Biggie and Tupac is undeniably subversive and involving in its bold presentation. Delivers more than its fair share of saucy hilarity. A fairly enjoyable mixture of Longest Yard ... and the 1999 Guy Ritchie caper Lock Stock and Two Smoking Barrels. Happily, 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. Hugely 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. It'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. It's probably worth catching solely on its visual merits. If only it had the story to match. Like 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. ...only Bond can save us from the latest eccentric, super-wealthy megalomaniac bent on world domination and destruction. The first half bursts with a goofy energy previous Disney films only used for a few minutes here and there. It's quite diverting nonsense. An old-fashioned scary movie, one that relies on lingering terror punctuated by sudden shocks and not constant bloodshed punctuated by flying guts. For all the wit and hoopla, Festival In Cannes offers rare insight into the structure of relationships. What 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. Renner?s face is chillingly unemotive, yet he communicates a great deal in his performance. See it for his performance if nothing else. ...the kind of entertainment that parents love to have their kids see. It's a fine, focused piece of work that reopens an interesting controversy and never succumbs to sensationalism. Its engaging simplicity is driven by appealing leads. Swimming 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. A respectable venture on its own terms, lacking the broader vision that has seen certain Trek films ... cross over to a more mainstream audience. It's weird, wonderful, and not necessarily for kids. An elegant film with often surprising twists and an intermingling of naiveté and sophistication. Blessed with two fine, nuanced lead performances. While 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. As 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. You 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. Turturro is fabulously funny and over the top as a 'very sneaky' butler who excels in the art of impossible disappearing/reappearing acts Meant for Star Wars fans. It is there to give them a good time. From 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. Simply and eloquently articulates the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy. Provides a very moving and revelatory footnote to the Holocaust. Terrific 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. It'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. I like it. There is a freedom to watching stunts that are this crude, this fast-paced and this insane. That 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. That 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. It'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. A sharp and quick documentary that is funny and pithy, while illuminating an era of theatrical comedy that, while past, really isn't. The film does a solid job of slowly, steadily building up to the climactic burst of violence. Fred 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. The directive to protect the code at all costs also begins to blur as the importance of the man and the code merge Overall, Cletis Tout is a winning comedy that excites the imagination and tickles the funny bone. Easily one of the best and most exciting movies of the year. The script manages the rare trick of seeming at once both refreshingly different and reassuringly familiar. An engaging, formulaic sports drama that carries a charge of genuine excitement. Insomnia is one of the year's best films and Pacino gives one of his most daring, and complicated, performances. Like 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. I 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. Despite its flaws ... Belinsky is still able to create an engaging story that keeps you guessing at almost every turn. Each punch seen through prison bars, the fights become not so much a struggle of man vs. man as Brother-Man vs. The Man. The 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. Like the best of Godard's movies ... it is visually ravishing, penetrating, impenetrable. Horns and Halos benefits from serendipity but also reminds us of our own responsibility to question what is told as the truth. (Has) an immediacy and an intimacy that sucks you in and dares you not to believe it's all true. It treats Ana's journey with honesty that is tragically rare in the depiction of young women in film. Captivates as it shows excess in business and pleasure, allowing us to find the small, human moments, and leaving off with a grand whimper. A refreshingly realistic, affectation-free coming-of-age tale. How good this film might be, depends if you believe that the shocking conclusion is too much of a plunge or not. Great fun both for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex. Features one of the most affecting depictions of a love affair ever committed to film. To 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. One of the best movies of the year. The usual movie rah-rah, pleasantly and predictably delivered in low-key style by director Michael Apted and writer Tom Stoppard. A superlative B movie -- funny, sexy, and rousing. Those prone to indignation need not apply; those susceptible to blue hilarity, step right up. Like 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. (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. The 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. At 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. A modestly surprising movie. A 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. There's a spontaneity to The Chateau, a sense of light-heartedness, that makes it attractive throughout. The 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. Like any good romance, Son of the Bride, proves it's never too late to learn. (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. The film, while not exactly assured in its execution, is notable for its sheer audacity and openness. A thoroughly enjoyable, heartfelt coming-of-age comedy. Feeling like a dope has rarely been more fun than it is in Nine Queens. Leigh 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. A lot of fun, with an undeniable energy sparked by two actresses in their 50s working at the peak of their powers. Promises is one film that's truly deserving of its Oscar nomination. What 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. If 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. Beautiful, angry and sad, with a curious sick poetry, as if the Marquis de Sade had gone in for pastel landscapes. Ms. Hutchins is talented enough and charismatic enough to make us care about Zelda's ultimate fate. Monte Cristo smartly emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds. A mesmerizing cinematic poem from the first frame to the last. (It's) a clever thriller with enough unexpected twists to keep our interest. An undeniably moving film to experience, and ultimately that's what makes it worth a recommendation. Nicole 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. Vividly conveys the shadow side of the 30-year friendship between two English women. The 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. Manages to please its intended audience -- children -- without placing their parents in a coma-like state. When 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. A strong first act and absolutely, inescapably gorgeous, skyscraper-trapeze motion of the amazing Spider-Man. Driven by a fantastic dual performance from Ian Holm...the film is funny, insightfully human and a delightful lark for history buffs. A well-put-together piece of urban satire. It's the sweet Cinderella story that ``Pretty Woman'' wanted to be. It 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. What doesn't this film have that an impressionable kid couldn't stand to hear? What 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. A deeply felt and vividly detailed story about newcomers in a strange new world. It's a visual delight and a decent popcorn adventure, as long as you don't try to look too deep into the story It's a feel-good movie about which you can actually feel good. A full experience, a love story and a murder mystery that expands into a meditation on the deep deceptions of innocence. The Powerpuff Girls arrive on the big screen with their super-powers, their super-simple animation and their super-dooper-adorability intact. (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. A new film from Bill Plympton, the animation master, is always welcome. A devastating indictment of unbridled greed and materalism. What makes the film special is the refreshingly unhibited enthusiasm that the people, in spite of clearly evident poverty and hardship, bring to their music. The film has a kind of hard, cold effect. The gags are often a stitch. The asylum material is gripping, as are the scenes of Jia with his family. A 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. One can't deny its seriousness and quality. Good performances and a realistic, non-exploitive approach make Paid in Full worth seeing. This 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. Ryan Gosling is, in a word, brilliant as the conflicted Daniel. ...somehow manages to escape the shackles of its own clichés to be the best espionage picture to come out in weeks. Much 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. Takes a simple premise and carries it to unexpected heights. With few respites, Marshall keeps the energy humming, and his edits, unlike those in Moulin Rouge, are crisp and purposeful without overdoing it. Its metaphors are opaque enough to avoid didacticism, and the film succeeds as an emotionally accessible, almost mystical work. Provides a satisfactory overview of the bizarre world of extreme athletes as several daredevils express their own views. Inventive, fun, intoxicatingly sexy, violent, self-indulgent and maddening. Comedian, like its subjects, delivers the goods and audiences will have a fun, no-frills ride. A naturally funny film, Home Movie makes you crave Chris Smith's next movie. Pipe Dream does have its charms. The leads are natural and lovely, the pace is serene, the humor wry and sprightly. Those who want to be jolted out of their gourd should drop everything and run to Ichi. ...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. Sheds light on a subject few are familiar with, and makes you care about music you may not have heard before. Despite the film's bizarre developments, Hoffman keeps us riveted with every painful nuance, unexpected flashes of dark comedy and the character's gripping humanity. To get at the root psychology of this film would require many sessions on the couch of Dr. Freud. Great over-the-top moviemaking if you're in a slap-happy mood. Viveka Seldahl and Sven Wollter will touch you to the core in a film you will never forget -- that you should never forget. The magic (and original running time) of ace Japanimator Hayao Miyazaki's Spirited Away survives intact in BV's re-voiced version. From the dull, surreal ache of mortal awareness emerges a radiant character portrait. Captures the raw comic energy of one of our most flamboyant female comics. It's not particularly subtle ... However, it still manages to build to a terrifying, if obvious, conclusion. The auteur's ear for the way fears and slights are telegraphed in the most blithe exchanges gives the film its lingering tug. Bolstered by exceptional performances and a clear-eyed take on the economics of dealing and the pathology of ghetto fabulousness. This 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. Some remarkable achival film about how Shanghai (of all places) served Jews who escaped the Holocaust. In a movie full of surprises, the biggest is that Secret Ballot is a comedy, both gentle and biting. The 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. A manically generous Christmas vaudeville. Tony 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. A psychic journey deep into the very fabric of Iranian ... life. It's a smartly directed, grown-up film of ideas. While puerile men dominate the story, the women shine. Unlike lots of Hollywood fluff, this has layered, well-developed characters and some surprises. For 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. Vera has created a provocative, absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores. A French film with a more down-home flavor. Depending 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. While 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. There 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. Fontaine 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. As 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. Sure, 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. Dong shows how intolerance has the power to deform families, then tear them apart. The Chateau belongs to Rudd, whose portrait of a therapy-dependent flakeball spouting French malapropisms ... is a nonstop hoot. The cast, collectively a successful example of the lovable-loser protagonist, shows deft comic timing. It trusts the story it sets out to tell. I couldn't recommend this film more. As a good old-fashioned adventure for kids, Spirit: Stallion of the Cimarron is a winner. An effective portrait of a life in stasis -- of the power of inertia to arrest development in a dead-end existence. Succeeds as a well-made evocation of a subculture. ...an interesting slice of history. Me no lika da accents so good, but I thoroughly enjoyed the love story. Scott Baio is turning in some delightful work on indie projects. It's an experience in understanding a unique culture that is presented with universal appeal. What's surprising is how well it holds up in an era in which computer-generated images are the norm. Brings together some of the biggest names in Japanese anime, with impressive results. Wonder, 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 A flick about our infantilized culture that isn't entirely infantile. An exceptionally acted, quietly affecting cop drama. Sensual, funny and, in the end, very touching. Angel presents events partly from the perspective of Aurelie and Christelle, and infuses the film with the sensibility of a particularly nightmarish fairytale. Who 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? (A) smarter and much funnier version of the old Police Academy flicks. Proof 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. Both a grand tour through 300 hundred years of Russian cultural identity and a stunning technical achievement. Just how these families interact may surprise you. Proves that some movie formulas don't need messing with -- like the big-bug movie. A surprisingly funny movie. This new movie version of the Alexandre Dumas classic is the stuff of high romance, brought off with considerable wit. Like all of Egoyan's work, Ararat is fiercely intelligent and uncommonly ambitious. If 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. ...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. (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. Although made on a shoestring and unevenly acted, conjures a Lynch-like vision of the rotting underbelly of Middle America. A piquant meditation on the things that prevent people from reaching happiness. A timely look back at civil disobedience, anti-war movements and the power of strong voices. Rifkin's references are ... impeccable throughout. I'd be lying if I said my ribcage didn't ache by the end of Kung Pow. More 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. The movie is ingenious fun. See it. The combination of lightness and strictness in this instance gives Italian for Beginners an amiable aimlessness that keeps it from seeming predictably formulaic. The script is smart and dark - hallelujah for small favors. An 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. Mr. 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. Spectacular in every sense of the word, even if you don' t know an Orc from a Uruk-Hai. This isn't exactly profound cinema, but it's good-natured and sometimes quite funny. This is a finely written, superbly acted offbeat thriller. Tres Greek writer and star Nia Vardalos has crafted here a worldly-wise and very funny script. A tasty appetizer that leaves you wanting more. It gives devastating testimony to both people's capacity for evil and their heroic capacity for good. The 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 Morton deserves an Oscar nomination. A colorful, vibrant introduction to a universal human impulse, lushly photographed and beautifully recorded. The 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''. The history is fascinating; the action is dazzling. They just don't work in concert. For those in search of something different, Wendigo is a genuinely bone-chilling tale. A lovely film for the holiday season. It remains to be seen whether Statham can move beyond the crime-land action genre, but then again, who says he has to? A hypnotic cyber hymn and a cruel story of youth culture. It's a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor. At 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. The performances of the children, untrained in acting, have an honesty and dignity that breaks your heart. Despite 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. This 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. Adams, with four scriptwriters, takes care with the characters, who are so believable that you feel what they feel. A completely spooky piece of business that gets under your skin and, some plot blips aside, stays there for the duration. Superbly photographed and staged by Mendes with a series of riveting set pieces the likes of which mainstream audiences have rarely seen. The ensemble cast turns in a collectively stellar performance, and the writing is tight and truthful, full of funny situations and honest observations. Not quite as miraculous as its DreamWorks makers would have you believe, but it more than adequately fills the eyes and stirs the emotions. A properly spooky film about the power of spirits to influence us whether we believe in them or not. The 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. Like Edward Norton in American History X, Ryan Gosling (Murder By Numbers) delivers a magnetic performance. This 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. Rarely, indeed almost never, is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite, unfakable sense of cinema. The leanest and meanest of Solondz's misanthropic comedies. A dark, quirky road movie that constantly defies expectation. There 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. Often messy and frustrating, but very pleasing at its best moments, it's very much like life itself. A burst of color, music, and dance that only the most practiced curmudgeon could fail to crack a smile at. An energetic, violent movie with a momentum that never lets up. Lasker's canny, meditative script distances sex and love, as Byron and Luther ... realize they can't get no satisfaction without the latter. It turns out to be smarter and more diabolical than you could have guessed at the beginning. Cage makes an unusual but pleasantly haunting debut behind the camera. Noyce has worked wonders with the material. It's mostly a pleasure to watch. And the reason for that is a self-aware, often self-mocking, intelligence. The Chateau is a risky venture that never quite goes where you expect and often surprises you with unexpected comedy. A very well-meaning movie, and it will stand in future years as an eloquent memorial to the World Trade Center tragedy. There 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. Vividly demonstrates that the director of such Hollywood blockbusters as Patriot Games can still turn out a small, personal film with an emotional wallop. A four star performance from Kevin Kline who unfortunately works with a two star script. Dogtown & Z-Boys evokes the blithe rebel fantasy with the kind of insouciance embedded in the sexy demise of James Dean. If you don't flee, you might be seduced. If you don't laugh, flee. Payne constructs a hilarious ode to middle America and middle age with this unlikely odyssey, featuring a pathetic, endearing hero who is all too human. Koury frighteningly and honestly exposes one teenager's uncomfortable class resentment and, in turn, his self-inflicted retaliation. The Santa Clause 2 proves itself a more streamlined and thought out encounter than the original could ever have hoped to be. Now 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. Succeeds where its recent predecessor miserably fails because it demands that you suffer the dreadfulness of war from both sides. The first Bond movie in ages that isn't fake fun. This 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. A 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. A weird and wonderful comedy. The 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. Has the capability of effecting change and inspiring hope. A first-class, thoroughly involving B movie that effectively combines two surefire, beloved genres -- the prison flick and the fight film. LaBute's careful handling makes the material seem genuine rather than pandering. In 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. Death to Smoochy is often very funny, but what's even more remarkable is the integrity of DeVito's misanthropic vision. A beautiful, entertaining two hours. You get the idea, though, that Kapur intended the film to be more than that. A wonderful, ghastly film. Amid 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. Parris' performance is credible and remarkably mature. '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.' Munch'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. It grabs you in the dark and shakes you vigorously for its duration. Leigh'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. Hashiguchi vividly captures the way young Japanese live now, chafing against their culture's manic mix of millennial brusqueness and undying, traditional politesse. Uneven but a lot of fun. I know that I'll never listen to Marvin Gaye or the Supremes the same way again The 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. Not as good as The Full Monty, but a really strong second effort. Whenever 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. Unfolds as one of the most politically audacious films of recent decades from any country, but especially from France. This real-life Hollywood fairy-tale is more engaging than the usual fantasies Hollywood produces. The graphic carnage and re-creation of war-torn Croatia is uncomfortably timely, relevant, and sickeningly real. Left me with the visceral sensation of longing, lasting traces of Charlotte's web of desire and desperation. The characters are more deeply thought through than in most 'right-thinking' films. Crammed with incident, and bristles with passion and energy. It's fun, splashy and entertainingly nasty. A simple tale of an unlikely friendship, but thanks to the gorgeous locales and exceptional lead performances, it has considerable charm. It 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. There's very little sense to what's going on here, but the makers serve up the cliches with considerable dash. Witty, contemplative, and sublimely beautiful. A surprisingly 'solid' achievement by director Malcolm D. Lee and writer John Ridley. Woven together handsomely, recalling sixties' rockumentary milestones from Lonely Boy to Don't Look Back. This is pure, exciting moviemaking. You won't exactly know what's happening but you'll be blissfully exhausted. The 1960s rebellion was misdirected: you can't fight your culture. Works because Reno doesn't become smug or sanctimonious towards the audience. Nettelbeck ... has a pleasing way with a metaphor. A pure participatory event that malnourished intellectuals will gulp down in a frenzy. The cast delivers without sham the raw-nerved story. Steven Soderbergh's digital video experiment is a clever and cutting, quick and dirty look at modern living and movie life. The film's highlight is definitely its screenplay, both for the rhapsodic dialogue that jumps off the page, and for the memorable character creations. It lets you brush up against the humanity of a psycho, without making him any less psycho. Sillier, cuter, and shorter than the first (as best I remember), but still a very good time at the cinema. The film is bright and flashy in all the right ways. Elegant and eloquent (meditation) on death and that most elusive of passions, love. Cut 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. Filmmaker Tian Zhuangzhuang triumphantly returns to narrative filmmaking with a visually masterful work of quiet power. It excels because, unlike so many other Hollywood movies of its ilk, it offers hope. Shot in rich, shadowy black-and-white, Devils chronicles, with increasingly amused irony, the relationship between reluctant captors and befuddled captives. There's no clear picture of who killed Bob Crane. But here's a glimpse at his life. Spectacularly beautiful, not to mention mysterious, sensual, emotionally intense, and replete with virtuoso throat-singing. A summer entertainment adults can see without feeling embarrassed, but it could have been more. Sparse but oddly compelling. A stirring, funny and finally transporting re-imagining of Beauty and the Beast and 1930s horror films The Pinochet Case is a searing album of remembrance from those who, having survived, suffered most. A sweet-tempered comedy that forgoes the knee-jerk misogyny that passes for humor in so many teenage comedies. Argento, 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. With so many bad romances out there, this is the kind of movie that deserves a chance to shine. Brash, 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. Though 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. ``The Quiet American'' begins in Saigon in 1952. That's its first sign of trouble. A dazzling thing to behold -- as long as you're wearing the somewhat cumbersome 3D goggles the theater provides. Be patient with the lovely Hush! and your reward will be a thoughtful, emotional movie experience. The 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. Godard has never made a more sheerly beautiful film than this unexpectedly moving meditation on love, history, memory, resistance and artistic transcendence. The kind of movie that comes along only occasionally, one so unconventional, gutsy and perfectly executed it takes your breath away. Unlike 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.' The off-center humor is a constant, and the ensemble gives it a buoyant delivery. A tasty slice of droll whimsy. Mike 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 Awesome work: ineffable, elusive, yet inexplicably powerful Sparkling, 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'. Even 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. Where 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. The 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. The all-French cast is marveilleux. There's a lot to recommend Read My Lips. A minor film with major pleasures from Portuguese master Manoel de Oliviera... Brosnan gives a portrayal as solid and as perfect as his outstanding performance as Bond in Die Another Day. Audiences 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. The movie is ... very funny as you peek at it through the fingers in front of your eyes. Nicks sustains the level of exaggerated, stylized humor throughout by taking your expectations and twisting them just a bit. A refreshing change from the usual whoopee-cushion effort aimed at the youth market. It 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. ... an enjoyably frothy 'date movie'... The genius of the work speaks volumes, offering up a hallucinatory dreamscape that frustrates and captivates. Two Weeks Notice has appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy. The movie's seams may show...but Pellington gives ``Mothman'' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling. If Mostly Martha is mostly unsurprising, it's still a sweet, even delectable diversion. A wild comedy that could only spring from the demented mind of the writer of Being John Malkovich. Schnitzler does a fine job contrasting the sleekness of the film's present with the playful paranoia of the film's past. '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.' Mana gives us compelling, damaged characters who we want to help -- or hurt. The sentimental script has problems, but the actors pick up the slack. A good documentary can make interesting a subject you thought would leave you cold. A case in point: Doug Pray's Scratch. Abderrahmane Sissako's Heremakono (Waiting for Happiness) is an elegiac portrait of a transit city on the West African coast struggling against foreign influences. In XXX, Diesel is that rare creature -- an action hero with table manners, and one who proves that elegance is more than tattoo deep. An engrossing and grim portrait of hookers: what they think of themselves and their clients. It all plays out ... like a high-end John Hughes comedy, a kind of Elder Bueller's Time Out. The 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. This is one of the rarest kinds of films: a family-oriented non-Disney film that is actually funny without hitting below the belt. It is refreshingly undogmatic about its characters. A moving and important film. Deep intelligence and a warm, enveloping affection breathe out of every frame. Famuyiwa'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. Showtime is a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation. Sweet Home Alabama isn't going to win any Academy Awards, but this date-night diversion will definitely win some hearts. a cruelly funny twist on teen comedy packed with inventive cinematic tricks and an ironically killer soundtrack A 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. Even though many of these guys are less than adorable (their lamentations are pretty much self-centered), there's something vital about the movie. A tour de force drama about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers. It is a strength of a documentary to disregard available bias, especially as temptingly easy as it would have been with this premise. When 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. Maryam is more timely now than ever. An 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. Piccoli gives a superb performance full of deep feeling. What 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. The rare movie that's as crisp and to the point as the novel on which it's based. A film of epic scale with an intimate feeling, a saga of the ups and downs of friendships. Sayles has an eye for the ways people of different ethnicities talk to and about others outside the group. ``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. Niccol the filmmaker merges his collaborators' symbolic images with his words, insinuating, for example, that in Hollywood, only God speaks to the press Khouri manages, with terrific flair, to keep the extremes of screwball farce and blood-curdling family intensity on one continuum. Impresses as a skillfully assembled, highly polished and professional adaptation...just about as chilling and unsettling as 'Manhunter' was. It's a solid movie about people whose lives are anything but. Though a touch too Arthouse 101 in its poetic symbolism, Heaven proves to be a good match of the sensibilities of two directors. I simply can't recommend it enough. Wiseman reveals the victims of domestic abuse in all of their pity and terror. Muccino, 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. We want the funk - and this movie's got it. Wow, so who knew Charles Dickens could be so light-hearted? Many 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. The storylines are woven together skilfully, the magnificent swooping aerial shots are breathtaking, and the overall experience is awesome. A miraculous movie, I'm Going Home is so slight, yet overflows with wisdom and emotion. Baran is shockingly devoid of your typical Majid Majidi shoe-loving, crippled children. Every moment crackles with tension, and by the end of the flick, you're on the edge of your seat. A 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. The series' message about making the right choice in the face of tempting alternatives remains prominent, as do the girls' amusing personalities. Richly entertaining and suggestive of any number of metaphorical readings. A compelling allegory about the last days of Germany's democratic Weimar Republic. Offers a guilt-free trip into feel-good territory. A B-movie you can sit through, enjoy on a certain level and then forget. Devos delivers a perfect performance that captures the innocence and budding demons within a wallflower. Disappointingly, 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. Director Todd Solondz has made a movie about critical reaction to his two previous movies, and about his responsibility to the characters that he creates. The word that comes to mind, while watching Eric Rohmer's tribute to a courageous Scottish lady, is painterly. A fascinating case study of flower-power liberation -- and the price that was paid for it. Bluer than the Atlantic and more biologically detailed than an autopsy, the movie ... is, also, frequently hilarious. Really is a pan-American movie, with moments of genuine insight into the urban heart. An overly familiar scenario is made fresh by an intelligent screenplay and gripping performances in this low-budget, video-shot, debut indie effort. Peppering this urban study with references to Norwegian folktales, Villeneuve creates in Maelstrom a world where the bizarre is credible and the real turns magical. Ong's promising debut is a warm and well-told tale of one recent Chinese immigrant's experiences in New York City. That 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. There's not much to Fatale, outside of its stylish surprises... but that's OK. What redeems the film is the cast, particularly the Ya-Yas themselves. Beautiful, cold, oddly colorful and just plain otherworldly, a freaky bit of art that's there to scare while we delight in the images. It's up to (Watts) to lend credibility to this strange scenario, and her presence succeeds in making us believe. The film is darkly atmospheric, with Herrmann quietly suggesting the sadness and obsession beneath Hearst's forced avuncular chortles. Shyamalan 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. ...the story, like Ravel's Bolero, builds to a crescendo that encompasses many more paths than we started with. It'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. Gondry's direction is adequate ... but what gives Human Nature its unique feel is Kaufman's script. The film's plot may be shallow, but you've never seen the deep like you see it in these harrowing surf shots. With 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. The observations of this social/economic/urban environment are canny and spiced with irony. Renner carries much of the film with a creepy and dead-on performance. Jarecki 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. The 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. Aniston has at last decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil. A mildly enjoyable if toothless adaptation of a much better book. Unexpected, and often contradictory, truths emerge. 300 years of Russian history and culture compressed into an evanescent, seamless and sumptuous stream of consciousness. Intelligent, caustic take on a great writer and dubious human being. May 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. Less the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling (though no less horrifying for it). The film is one of the year's best. Eerily accurate depiction of depression. ...a delicious crime drama on par with the slickest of Mamet. Charming and witty, it's also somewhat clumsy. Directed 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. Escapes the precious trappings of most romantic comedies, infusing into the story very real, complicated emotions. This big screen caper has a good bark, far from being a bow-wow. (Allen) manages to breathe life into this somewhat tired premise. I have two words to say about Reign of Fire. Great dragons! By surrounding us with hyper-artificiality, Haynes makes us see familiar issues, like racism and homophobia, in a fresh way. A deliberative account of a lifestyle characterized by its surface-obsession – one that typifies the delirium of post, pre, and extant stardom. Superb production values & Christian Bale's charisma make up for a derivative plot. The film has the courage of its convictions and excellent performances on its side. I know I shouldn't have laughed, but hey, those farts got to my inner nine-year-old. A movie that will thrill you, touch you and make you laugh as well. It'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. More vaudeville show than well-constructed narrative, but on those terms it's inoffensive and actually rather sweet. The case is a convincing one, and should give anyone with a conscience reason to pause. The actresses find their own rhythm and protect each other from the script's bad ideas and awkwardness. Diverting French comedy in which a husband has to cope with the pesky moods of jealousy. Captivates and shows how a skillful filmmaker can impart a message without bludgeoning the audience over the head. There is a welcome lack of pretension about the film, which very simply sets out to entertain and ends up delivering in good measure. Coy but exhilarating, with really solid performances by Ving Rhames and Wesley Snipes. It is a likable story, told with competence. Not only does Spider-Man deliver, but I suspect it might deliver again and again. Tackles the difficult subject of grief and loss with such life-embracing spirit that the theme doesn't drag an audience down. A small movie with a big impact. The movie, despite its rough edges and a tendency to sag in certain places, is wry and engrossing. I admire the closing scenes of the film, which seem to ask whether our civilization offers a cure for Vincent's complaint. Like 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. a 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. Using an endearing cast, writer/director Dover Kosashvili takes a slightly dark look at relationships, both sexual and kindred. When a movie has stuck around for this long, you know there's something there. It's that good. Smart, sassy interpretation of the Oscar Wilde play. Forget about one Oscar nomination for Julianne Moore this year - she should get all five. Japanese director Shohei Imamura's latest film is an odd but ultimately satisfying blend of the sophomoric and the sublime. Kwan is a master of shadow, quietude, and room noise, and Lan Yu is a disarmingly lived-in movie. While the plot follows a predictable connect-the-dots course... director John Schultz colors the picture in some evocative shades. Katz's documentary doesn't have much panache, but with material this rich it doesn't need it. We get an image of Big Papa spanning history, rather than suspending it. Evelyn's strong cast and surehanded direction make for a winning, heartwarming yarn. A conventional but heartwarming tale. This is one of the outstanding thrillers of recent years. Skins 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. A film of quiet power. More 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. An intelligent romantic thriller of a very old-school kind of quality. The sword fighting is well done and Auteuil is a goofy pleasure. Yes, MIBII is rote work and predictable, but with a philosophical visual coming right at the end that extravagantly redeems it. Film can't quite maintain its initial momentum, but remains sporadically funny throughout. O Fantasma is boldly, confidently orchestrated, aesthetically and sexually, and its impact is deeply and rightly disturbing. It's still Adam Sandler, and it's not Little Nicky. And for many of us, that's good enough. Here's yet another cool crime movie that actually manages to bring something new into the mix. Lee'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. Kaufman 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. It tends to remind one of a really solid Woody Allen film, with its excellent use of New York locales and sharp writing While 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. The film, despite the gratuitous cinematic distractions impressed upon it, is still good fun. The 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. Has an unmistakable, easy joie de vivre. More 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. This 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. Mostly works because of the universal themes, earnest performances ... and excellent use of music by India's popular Gulzar and Jagjit Singh. ...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. Writer/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. Rarely have I seen a film so willing to champion the fallibility of the human heart. Holofcener rejects patent solutions to dramatize life's messiness from inside out, in all its strange quirks. Like The Full Monty, this is sure to raise audience's spirits and leave them singing long after the credits roll. ... a gleefully grungy, hilariously wicked black comedy ... Kinnear and Dafoe give what may be the performances of their careers. All in all, a great party. A moving story of determination and the human spirit. ``Brown Sugar'' admirably aspires to be more than another ``Best Man'' clone by weaving a theme throughout this funny film. (Gulpilil) is a commanding screen presence, and his character's abundant humanism makes him the film's moral compass. An effortlessly accomplished and richly resonant work. In some ways, Lagaan is quintessential Bollywood. Except it's much, much better. Though 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. Scotland looks wonderful, the fans are often funny fanatics, the showdown sure beats a bad day of golf. What 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. The emotion is impressively true for being so hot-blooded, and both leads are up to the task. Although it lacks the detail of the book, the film does pack some serious suspense. I'd watch these two together again in a New York minute. There's nothing like love to give a movie a B-12 shot, and CQ shimmers with it. A moving essay about the specter of death, especially suicide. This 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. Like a less dizzily gorgeous companion to Mr. Wong's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting. ...a somber film, almost completely unrelieved by any comedy beyond the wistful everyday ironies of the working poor. Coral 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. The overall result is an intelligent, realistic portrayal of testing boundaries. Poignant and moving, A Walk to Remember is an inspirational love story, capturing the innocence and idealism of that first encounter. Worth a salute just for trying to be more complex than your average film. Handsome and sophisticated approach to the workplace romantic comedy. A shimmeringly lovely coming-of-age portrait, shot in artful, watery tones of blue, green and brown. While 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. In 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. We admire this film for its harsh objectivity and refusal to seek our tears, our sympathies. An often watchable, though goofy and lurid, blast of a costume drama set in the late 15th century. The entire cast is first-rate, especially Sorvino. The Cat's Meow marks a return to form for director Peter Bogdanovich ... This one is strictly a lightweight escapist film. This sensitive, smart, savvy, compelling coming-of-age drama delves into the passive-aggressive psychology of co-dependence and the struggle for self-esteem. The culmination of everyone's efforts is given life when A Selection appears in its final form (in ``Last Dance''). In 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. A very charming and funny movie. This is a film that manages to find greatness in the hue of its drastic iconography. Streamlined to a tight, brisk 85-minute screwball thriller, ``Big Trouble'' is funny, harmless and as substantial as a tub of popcorn with extra butter. Consummate actor Barry has done excellent work here. The biggest problem with this movie is that it's not nearly long enough. While not all that bad of a movie, it's nowhere near as good as the original. Ali's graduation from little screen to big is far less painful than his opening scene encounter with an over-amorous terrier. I have always appreciated a smartly written motion picture, and, whatever flaws Igby Goes Down may possess, it is undeniably that. You 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. May be the most undeserving victim of critical overkill since Town and Country. A chilly, brooding but quietly resonant psychological study of domestic tension and unhappiness. The 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. Cold, nervy and memorable. Becomes a fascinating study of isolation and frustration that successfully recreates both the physical setting and emotional tensions of the Papin sisters. Spend your Benjamins on a matinee. All 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. Worth seeing just for Weaver and LaPaglia. A pleasant piece of escapist entertainment. Among the many pleasures are the lively intelligence of the artists and their perceptiveness about their own situations. It'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. It's the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking, but humming. The 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. There's something about a marching band that gets me where I live. Cuaron 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. It's definitely an improvement on the first Blade, since it doesn't take itself so deadly seriously. A slam-bang extravaganza that is all about a wild-and-woolly, wall-to-wall good time. What'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. Is 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'. Writer-director Juan Carlos Fresnadillo makes a feature debut that is fully formed and remarkably assured. insightfully written, delicately performed Perhaps the grossest movie ever made. Funny, though. This 90-minute postmodern voyage was more diverting and thought-provoking than I'd expected it to be. One of those exceedingly rare films in which the talk alone is enough to keep us involved. A heartbreakingly thoughtful minor classic, the work of a genuine and singular artist. An affectionately goofy satire that's unafraid to throw elbows when necessary... Between them, De Niro and Murphy make Showtime the most savory and hilarious guilty pleasure of many a recent movie season. Jackson 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. Filmmakers 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. Interesting both as a historical study and as a tragic love story. A stylish but steady, and ultimately very satisfying, piece of character-driven storytelling. It picked me up, swung me around, and dropped me back in my seat with more emotional force than any other recent film. Graham Greene's novel of colonialism and empire is elevated by Michael Caine's performance as a weary journalist in a changing world. Though 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. Compulsively watchable, no matter how degraded things get. Delivers roughly equal amounts of beautiful movement and inside information. Bon appétit! Just like a splendid meal, Red Dragon satisfies – from its ripe recipe, inspiring ingredients, certified cuisine and palatable presentation. The structure is simple, but in its own way, Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings. This charming, thought-provoking New York fest of life and love has its rewards. Some 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. Playfully profound... and crazier than Michael Jackson on the top floor of a skyscraper nursery surrounded by open windows. A film that will enthrall the whole family. The 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. K 19 stays afloat as decent drama/action flick It sends you away a believer again and quite cheered at just that. Like the best 60 Minutes exposé, the film (at 80 minutes) is actually quite entertaining. an 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 An 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. Nair 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. Both 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. Leading a double life in an American film only comes to no good, but not here. Matters play out realistically if not always fairly. In 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. Like Mike is a harmlessly naïve slice of b-ball fantasy, fit for filling in during the real NBA's off-season. Though 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. What the movie lacks in action it more than makes up for in drama, suspense, revenge, and romance. Just offbeat enough to keep you interested without coming close to bowling you over. Probes in a light-hearted way the romantic problems of individuals for whom the yearning for passion spells discontent. What elevates the movie above the run-of-the-mill singles blender is its surreal sense of humor and technological finish. A film about female friendship that men can embrace and women will talk about for hours. The directing and story are disjointed, flaws that have to be laid squarely on Taylor's doorstep. But the actors make this worth a peek. Light 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. It may be about drug dealers, kidnapping, and unsavory folks, but the tone and pacing are shockingly intimate. Massoud'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. If villainous vampires are your cup of blood, Blade 2 is definitely a cut above the rest. Drumline ably captures the complicated relationships in a marching band. Because the film deliberately lacks irony, it has a genuine dramatic impact; it plays like a powerful 1957 drama we've somehow never seen before. Does point the way for adventurous Indian filmmakers toward a crossover into nonethnic markets. Seems based on ugly ideas instead of ugly behavior, as Happiness was... Hence, Storytelling is far more appealing. ``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. An 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. A terrific date movie, whatever your orientation. Not 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. What it lacks in originality it makes up for in effective if cheap moments of fright and dread. The 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. A gem of a movie. Witty, vibrant, and intelligent. It's all stitched together with energy, intelligence and verve, enhanced by a surplus of vintage archive footage. Miller comes at film with bracing intelligence and a vision both painterly and literary. The film is moody, oozing, chilling and heart-warming all at once...a twisting, unpredictable, cat-and-mouse thriller. Eight 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. This 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. A thriller whose style, structure and rhythms are so integrated with the story, you cannot separate them. It's a hoot watching The Rock chomp on jumbo ants, pull an arrow out of his back, and leap unscathed through raging fire! Returning director Rob Minkoff ... and screenwriter Bruce Joel Rubin ... have done a fine job of updating White's dry wit to a new age. Unfolds with such a wallop of you-are-there immediacy that when the bullets start to fly, your first instinct is to duck. A 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. An unflinching look at the world's dispossessed. If the film fails to fulfill its own ambitious goals, it nonetheless sustains interest during the long build-up of expository material. Polanski has found the perfect material with which to address his own World War II experience in his signature style. It is life affirming and heartbreaking, sweet without the decay factor, funny and sad. An off-beat and fanciful film about the human need for monsters to blame for all that is amiss in the world. A colorful, joyous celebration of life; a tapestry woven of romance, dancing, singing, and unforgettable characters. Frei 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. Nicely combines the enigmatic features of `Memento' with the hallucinatory drug culture of `Requiem for a Dream.' A well paced and satisfying little drama that deserved better than a `direct-to-video' release. The best part about ``Gangs'' was Daniel Day-Lewis. A treat for its depiction on not giving up on dreams when you're a struggling nobody. One 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. A gripping documentary that reveals how deep the antagonism lies in war-torn Jerusalem. Director 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. One of the film's most effective aspects is its Tchaikovsky soundtrack of neurasthenic regret. Solondz creates some effective moments of discomfort for character and viewer alike. The 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. I 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. Somehow Ms. Griffiths and Mr. Pryce bring off this wild Welsh whimsy. More mature than Fatal Attraction, more complete than Indecent Proposal and more relevant than 9 ½ Weeks, Unfaithful is at once intimate and universal cinema. For 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. A fanciful drama about Napoleon's last years and his surprising discovery of love and humility. A 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. Eric 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. Lovely 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. Campbell Scott finds the ideal outlet for his flick-knife diction in the role of Roger Swanson. (Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall) show us the world they love and make us love it, too. Russian Ark is a new treasure of the Hermitage. The animated sequences are well done and perfectly constructed to convey a sense of childhood imagination and creating adventure out of angst. It's definitely a step in the right direction. As 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. Ourside the theatre Roger might be intolerable company, but inside it he's well worth spending some time with. A gem, captured in the unhurried, low-key style favored by many directors of the Iranian new wave. In 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. Ranges from laugh-out-loud hilarious to wonder-what- time-it-is tedious. The 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. Talk To Her is not the perfect movie many have made it out to be, but it's still quite worth seeing. Beating 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. This is a dark, gritty, sometimes funny little gem. For all its visual panache and compelling supporting characters, the heart of the film rests in the relationship between Sullivan and his son. What 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. A hidden-agenda drama that shouts classic French nuance. With 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. An invaluable historical document thanks to the filmmaker's extraordinary access to Massoud, whose charm, cultivation and devotion to his people are readily apparent. The performances of the four main actresses bring their characters to life. A little melodramatic, but with enough hope to keep you engaged. Lan 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. Everyone should be able to appreciate the wonderful cinematography and naturalistic acting. This often-hilarious farce manages to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal. Expands 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. The farcical elements seemed too pat and familiar to hold my interest, yet its diverting grim message is a good one. Shanghai Ghetto may not be as dramatic as Roman Polanski's The Pianist, but its compassionate spirit soars every bit as high. Despite these annoyances, the capable Clayburgh and Tambor really do a great job of anchoring the characters in the emotional realities of middle age. The underworld urban angst is derivative of Martin Scorsese's Taxi Driver and Goodfellas, but this film speaks for itself. The film's heady yet far from impenetrable theory suggests that Russians take comfort in their closed-off nationalist reality. Despite modest aspirations its occasional charms are not to be dismissed. Constantly touching, surprisingly funny, semi-surrealist exploration of the creative act. The journey is worth your time, especially if you have Ellen Pompeo sitting next to you for the ride. Merci pour le movie. For 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. What 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. All three women deliver remarkable performances. Claire is a terrific role for someone like Judd, who really ought to be playing villains. It'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. Compassionately explores the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children. The soundtrack alone is worth the price of admission. Rodriguez does a splendid job of racial profiling Hollywood style--casting excellent Latin actors of all ages--a trend long overdue. Beneath the film's obvious determination to shock at any cost lies considerable skill and determination, backed by sheer nerve. Bielinsky is a filmmaker of impressive talent. So beautifully acted and directed, it's clear that Washington most certainly has a new career ahead of him if he so chooses. A visual spectacle full of stunning images and effects. A gentle and engrossing character study. It'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. An 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. A mischievous visual style and oodles of charm make 'Cherish' a very good (but not great) movie. Just 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. (A) strong piece of work. A 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. The Importance of Being Earnest, so thick with wit it plays like a reading from Bartlett's Familiar Quotations Daring and beautifully made. Made 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. Imagine O. Henry's The Gift of the Magi relocated to the scuzzy underbelly of NYC's drug scene. Merry friggin' Christmas! The film does give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard. Both 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. Ferrara's best film in years. A remarkably insightful look at the backstage angst of the stand-up comic. Nothing short of wonderful with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil. Davis' candid, archly funny and deeply authentic take on intimate relationships comes to fruition in her sophomore effort. It'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. Matches neorealism's impact by showing the humanity of a war-torn land filled with people who just want to live their lives. Those moviegoers who would automatically bypass a hip-hop documentary should give ``Scratch'' a second look. Baby-faced Renner is eerily convincing as this bland blank of a man with unimaginable demons within. Romantic, riveting and handsomely animated. A competent, unpretentious entertainment destined to fill the after-school slot at shopping mall theaters across the country. Shot largely in small rooms, the film has a gentle, unforced intimacy that never becomes claustrophobic. Where Janice Beard falters in its recycled aspects, implausibility, and sags in pace, it rises in its courageousness, and comedic employment. Byler 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. McGrath has deftly trimmed Dickens' wonderfully sprawling soap opera, the better to focus on the hero's odyssey from cowering poverty to courage and happiness. A 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. Metaphors abound, but it is easy to take this film at face value and enjoy its slightly humorous and tender story. As 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. The best comedy concert movie I've seen since Cho's previous concert comedy film, I'm the One That I Want, in 2000. Broomfield 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. Offers laughs and insight into one of the toughest ages a kid can go through. A perceptive, good-natured movie. An amused indictment of Jaglom's own profession. A small movie with a big heart. Hugely accomplished slice of Hitchcockian suspense. The formula is familiar but enjoyable. Tells a fascinating, compelling story. A triumph, a film that hews out a world and carries us effortlessly from darkness to light. What begins as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters. The Lady and the Duke is a smart, romantic drama that dares to depict the French Revolution from the aristocrats' perspective. Most 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 World Traveler might not go anywhere new, or arrive anyplace special, but it's certainly an honest attempt to get at something. There's much tongue in cheek in the film and there's no doubt the filmmaker is having fun with it all. There's absolutely no reason why Blue Crush, a late-summer surfer girl entry, should be as entertaining as it is An action/thriller of the finest kind, evoking memories of Day of the Jackal, The French Connection, and Heat. The 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. In 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. Insomnia does not become one of those rare remakes to eclipse the original, but it doesn't disgrace it, either. classic cinema served up with heart and humor (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. The events of the film are just so WEIRD that I honestly never knew what the hell was coming next. Nicole 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. That Jack Nicholson makes this man so watchable is a tribute not only to his craft, but to his legend. Has a solid emotional impact. Successfully blended satire, high camp and yet another sexual taboo into a really funny movie. Mark Pellington's latest pop thriller is as kooky and overeager as it is spooky and subtly in love with myth. While maintaining the appearance of clinical objectivity, this sad, occasionally horrifying but often inspiring film is among Wiseman's warmest. Raimi crafted a complicated hero who is a welcome relief from the usual two-dimensional offerings. An enjoyable above average summer diversion. There is simply no doubt that this film asks the right questions at the right time in the history of our country. If you've the patience, there are great rewards here. As a science fiction movie, ``Minority Report'' astounds. Watching 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. Visually breathtaking, viscerally exciting, and dramatically moving, it's the very definition of epic adventure. Chris Columbus' sequel is faster, livelier and a good deal funnier than his original. Watching this film, what we feel isn't mainly suspense or excitement. The dominant feeling is something like nostalgia. '...a great, participatory spectator sport.' A rather brilliant little cult item: a pastiche of children's entertainment, superhero comics, and Japanese animation. Believes 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. Adam SANDLER! In an ART FILM! As averse as I usually am to feel-good, follow-your-dream Hollywood fantasies, this one got to me. Stone seems to have a knack for wrapping the theater in a cold blanket of urban desperation. ...a funny yet dark and seedy clash of cultures and generations. The hook is the drama within the drama, as an unsolved murder and an unresolved moral conflict jockey for the spotlight. Over 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. Like 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 One of those movies that make us pause and think of what we have given up to acquire the fast-paced contemporary society. One of the most original American productions this year, you'll find yourself remembering this refreshing visit to a Sunshine State. Melds derivative elements into something that is often quite rich and exciting, and always a beauty to behold. Gives everyone something to shout about. The entire movie has a truncated feeling, but what's available is lovely and lovable. (A) thoughtful, visually graceful work. Admirers of director Abel Ferrara may be relieved that his latest feature, R Xmas, marks a modest if encouraging return to form. The slam-bang superheroics are kinetic enough to engross even the most antsy youngsters. A worthy addition to the cinematic canon, which, at last count, numbered 52 different versions. Deliciously mean-spirited and wryly observant. The kind of primal storytelling that George Lucas can only dream of. Even if The Ring has a familiar ring, it's still unusually crafty and intelligent for Hollywood horror. The sheer joy and pride they took in their work -- and in each other -- shines through every frame. A solidly constructed, entertaining thriller that stops short of true inspiration. The cast ... keeps this pretty watchable, and casting Mick Jagger as director of the escort service was inspired. An entertaining, if somewhat standardized, action movie. It 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. An 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. Intriguing and downright intoxicating. An incredibly thoughtful, deeply meditative picture that neatly and effectively captures the debilitating grief felt in the immediate aftermath of the terrorist attacks. With an obvious rapport with her actors and a striking style behind the camera, Hélène Angel is definitely a director to watch. ...could easily be called the best Korean film of 2002. Full of detail about the man and his country, and is well worth seeing. The banter between Calvin and his fellow barbers feels like a streetwise McLaughlin Group ... and never fails to entertain. Thoroughly engrossing and ultimately tragic. Peter 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. Bill Morrison's Decasia is uncompromising, difficult and unbearably beautiful. Full 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. Even with all its botches, Enigma offers all the pleasure of a handsome and well-made entertainment. His work transcends the boy-meets-girl posturing of typical love stories. If the real-life story is genuinely inspirational, the movie stirs us as well. An ebullient Tunisian film about the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing. The dramatic crisis doesn't always succeed in its quest to be taken seriously, but Huppert's volatile performance makes for a riveting movie experience. Highly irritating at first, Mr. Koury's passive technique eventually begins to yield some interesting results. About 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. The 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. It doesn't make for great cinema, but it is interesting to see where one's imagination will lead when given the opportunity. It's sobering, particularly if anyone still thinks this conflict can be resolved easily, or soon. If it's not entirely memorable, the movie is certainly easy to watch. ... 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. Best indie of the year, so far. (Ferrera) has the charisma of a young woman who knows how to hold the screen. ...the plot weaves us into a complex web. Don't judge this one too soon - it's a dark, gritty story but it takes off in totally unexpected directions and keeps on going. In 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. A serviceable Euro-trash action extravaganza, with a decent sense of humor and plenty of things that go boom -- handguns, BMWs and seaside chateaus. Fortunately, Elling never gets too cloying thanks to the actors' perfect comic timing and sweet, genuine chemistry. If 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. Greg Kinnear gives a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior. Not only a coming-of-age story and cautionary parable, but also a perfectly rendered period piece. ou've got to love a Disney pic with as little cleavage as this one has, and a heroine as feisty and principled as Jane. A funny, triumphant, and moving documentary. Lathan 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. About Schmidt is Nicholson's goofy, heartfelt, mesmerizing King Lear. A confluence of kiddie entertainment, sophisticated wit and symbolic graphic design. Gay or straight, Kissing Jessica Stein is one of the greatest date movies in years. This is a movie full of grace and, ultimately, hope. Even better than the first one! Its compelling mix of trial movie, escape movie and unexpected fable ensures the film never feels draggy. A must see for all sides of the political spectrum (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. There 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. Rich in atmosphere of the post-war art world, it manages to instruct without reeking of research library dust. Has the rare capability to soothe and break your heart with a single stroke. It rapidly develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide. Though 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. This 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.' It will break your heart many times over. A straight-shooting family film which awards animals the respect they've rarely been given. Overall, interesting as a documentary -- but not very Imaxy. This 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. ``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. The film fits into a genre that has been overexposed, redolent of a thousand cliches, and yet remains uniquely itself, vibrant with originality. Not 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. The 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. Too 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. The story is virtually impossible to follow here, but there's a certain style and wit to the dialogue. The music makes a nice album, the food is enticing and Italy beckons us all. The 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. The film is small in scope, yet perfectly formed. Jones has delivered a solidly entertaining and moving family drama. Happy Times maintains an appealing veneer without becoming too cute about it. Oliveira seems to pursue silent film representation with every mournful composition. One 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. Captures all the longing, anguish and ache, the confusing sexual messages and the wish to be a part of that elusive adult world. He's the scariest guy you'll see all summer. ``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. If 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. Quiet, 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. In 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. Some 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. It is hard not to be especially grateful for freedom after a film like this. The dirty jokes provide the funniest moments in this oddly sweet comedy about jokester highway patrolmen. Y Tu Mamá También is hilariously, gloriously alive, and quite often hotter than Georgia asphalt. ... works on some levels and is certainly worth seeing at least once. You come away from his film overwhelmed, hopeful and, perhaps paradoxically, illuminated. If the material is slight and admittedly manipulative, Jacquot preserves Tosca's intoxicating ardor through his use of the camera. Thirteen 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. Overall, it's a wacky and inspired little film that works effortlessly at delivering genuine, acerbic laughs. A must for fans of British cinema, if only because so many titans of the industry are along for the ride. Tsai has managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare, unchecked heartache of Yasujiro Ozu. Until (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. It's a good film, but it falls short of its aspiration to be a true 'epic'. All the pieces fall together without much surprise, but little moments give it a boost. The beauty of Alexander Payne's ode to the Everyman is in the details. A touching drama about old age and grief with a tour de force performance by Michel Piccoli. The ending feels at odds with the rest of the film. A tone of rueful compassion ... reverberates throughout this film, whose meaning and impact is sadly heightened by current world events. A beautiful paean to a time long past. Dense and thoughtful and brimming with ideas that are too complex to be rapidly absorbed. If you thought Tom Hanks was just an ordinary big-screen star, wait until you've seen him eight stories tall. With this masterful, flawless film, (Wang) emerges in the front ranks of China's now numerous, world-renowned filmmakers. Shyamalan 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. This film is an act of spiritual faith -- an eloquent, deeply felt meditation on the nature of compassion. A different kind of love story - one that is dark, disturbing, painful to watch, yet compelling. Splendidly illustrates the ability of the human spirit to overcome adversity. A 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. She's as rude and profane as ever, always hilarious and, most of the time, absolutely right in her stinging social observations. To 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. Even 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. A thoughtful, reverent portrait of what is essentially a subculture, with its own rules regarding love and family, governance and hierarchy. It seems impossible that an epic four-hour Indian musical about a cricket game could be this good, but it is. Will certainly appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about. Touches 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. A wildly entertaining scan of Evans' career. A mature, deeply felt fantasy of a director's travel through 300 years of Russian history. Boldly 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. A finely tuned mood piece, a model of menacing atmosphere. The Salton Sea has moments of inspired humour, though every scrap is of the darkest variety. Both 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. Although shot with little style, Skins is heartfelt and achingly real. Harks back to a time when movies had more to do with imagination than market research. Upsetting 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. A 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. A harrowing account of a psychological breakdown. Continually challenges perceptions of guilt and innocence, of good guys and bad, and asks us whether a noble end can justify evil means. It certainly won't win any awards in the plot department but it sets out with no pretensions and delivers big time. Dog Soldiers doesn't transcend genre -- it embraces it, energizes it and takes big bloody chomps out of it. At once emotional and richly analytical, the Cosby-Seinfeld encounter alone confirms the serious weight behind this superficially loose, larky documentary. It may scream low budget, but this charmer has a spirit that cannot be denied. 'Alice's adventure through the looking glass and into zombie-land' is filled with strange and wonderful creatures. Without (De Niro), City By The Sea would slip under the waves. He drags it back, single-handed. A good music documentary, probably one of the best since The Last Waltz. If 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. ...(the film) works, due mostly to the tongue-in-cheek attitude of the screenplay. The 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. Broomfield 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. At its best when the guarded, resentful Betty and the manipulative yet needy Margot are front and center. Gloriously straight from the vagina. It'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. The film oozes craft. Robinson's web of suspense matches the page-turning frenzy that Clancy creates. Manages to be both hugely entertaining and uplifting. A classic fairy tale that perfectly captures the wonders and worries of childhood in a way that few movies have ever approached. It's the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison. a wonderfully warm human drama that remains vividly in memory long after viewing Jaunty fun, with its celeb-strewn backdrop well used. Recoing's fantastic performance doesn't exactly reveal what makes Vincent tick, but perhaps any definitive explanation for it would have felt like a cheat. Washington overcomes the script's flaws and envelops the audience in his character's anguish, anger and frustration. The 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. A searing, epic treatment of a nationwide blight that seems to be, horrifyingly, ever on the rise. Not 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. Read 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. The 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. while (Roman Coppola) scores points for style, he staggers in terms of story. Any movie that makes hard work seem heroic deserves a look. It 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. A 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. It's sweet, funny, charming, and completely delightful. A perfectly competent and often imaginative film that lacks what little Lilo & Stitch had in spades -- charisma. Beautifully 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. Medem 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. An elegant work, Food of Love is as consistently engaging as it is revealing. Although 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. A 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. A brain twister, less a movie-movie than a funny and weird meditation on Hollywood, success, artistic integrity and intellectual bankruptcy. A powerful, inflammatory film about religion that dares to question an ancient faith, and about hatred that offers no easy, comfortable resolution. In its own floundering way, it gets to you. Just like Igby. Return to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families, but it's not half-bad. Wise and deadpan humorous. God bless Crudup and his aversion to taking the easy Hollywood road and cashing in on his movie-star gorgeousness. If Signs is a good film, and it is, the essence of a great one is in there somewhere. Veterans of the dating wars will smirk uneasily at the film's nightmare versions of everyday sex-in-the-city misadventures. Schrader examines Crane's decline with unblinking candor. You can watch, giggle and get an adrenaline boost without feeling like you've completely lowered your entertainment standards. It thankfully goes easy on the reel/real world dichotomy that (Jaglom) pursued with such enervating determination in Venice/Venice. This rich, bittersweet Israeli documentary, about the life of song-and-dance-man Pasach'ke Burstein and his family, transcends ethnic lines. Sensitively 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. Cool gadgets and creatures keep this fresh. Not as good as the original, but what is... Presents 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. (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. Engages 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. a bilingual charmer, just like the woman who inspired it Blisteringly rude, scarily funny, sorrowfully sympathetic to the damage it surveys, the film has in Kieran Culkin a pitch-perfect Holden. The 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. What 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. (It) has the feel of a summer popcorn movie. Nothing too deep or substantial. Explosions, jokes, and sexual innuendoes abound. Miyazaki'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. ... a delightfully unpredictable, hilarious comedy with wonderful performances that tug at your heart in ways that utterly transcend gender labels. Assured, vital and well wrought, the film is, arguably, the most accomplished work to date from Hong Kong's versatile Stanley Kwan. Delia, 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. A surprisingly sweet and gentle comedy. Shanghai Ghetto, much stranger than any fiction, brings this unknown slice of history affectingly to life. It's not particularly well made, but since I found myself howling more than cringing, I'd say the film works. But 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. Though its story is only surface deep, the visuals and enveloping sounds of Blue Crush make this surprisingly decent flick worth a summertime look-see. Ryosuke has created a wry, winning, if languidly paced, meditation on the meaning and value of family. Sometimes charming, sometimes infuriating, this Argentinean 'dramedy' succeeds mainly on the shoulders of its actors. You may feel compelled to watch the film twice or pick up a book on the subject. Often shocking but ultimately worthwhile exploration of motherhood and desperate mothers. A venturesome, beautifully realized psychological mood piece that reveals its first-time feature director's understanding of the expressive power of the camera. Like 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. Taken 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. The setting is so cool that it chills the characters, reducing our emotional stake in the outcome of ``Intacto's'' dangerous and seductively stylish game. A lovely and beautifully photographed romance. One of the most splendid entertainments to emerge from the French film industry in years. Its 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. For almost the first two-thirds of Martin Scorsese's 168-minute Gangs of New York, I was entranced. Open-ended and composed of layer upon layer, Talk to Her is a cinephile's feast, an invitation to countless interpretations. One of the most slyly exquisite anti-adult movies ever made. What 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. Neither 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. A clever script and skilled actors bring new energy to the familiar topic of office politics. The 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. Disney 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. It'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. Dark and unrepentant, this excursion into the epicenter of percolating mental instability is not easily dismissed or forgotten. It's a rollicking adventure for you and all your mateys, regardless of their ages. Boasts a handful of virtuosic set pieces and offers a fair amount of trashy, kinky fun. ...Myers has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs... If you're down for a silly hack-and-slash flick, you can do no wrong with Jason X. This is a very ambitious project for a fairly inexperienced filmmaker, but good actors, good poetry and good music help sustain it. The modern master of the chase sequence returns with a chase to end all chases The messy emotions raging throughout this three-hour effort are instantly recognizable, allowing the film to paradoxically feel familiar and foreign at the same time. ...either you're willing to go with this claustrophobic concept or you're not. Just watch Bettany strut his stuff. You'll know a star when you see one. Austin Powers in Goldmember is a cinematic car wreck, a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride. You 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. contrasting the original Ringu with the current Americanized adaptation is akin to comparing The Evil Dead with Evil Dead II A small gem of a movie that defies classification and is as thought-provoking as it is funny, scary and sad. For a long time the film succeeds with its dark, delicate treatment of these characters and its unerring respect for them. It'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. Late Marriage is an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love. An ambitious and moving but bleak film. It'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. It'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. It's never laugh-out-loud funny, but it is frequently amusing. A bittersweet film, simple in form but rich with human events. The 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. ``Punch-Drunk Love'' is a little like a chocolate milk moustache... ... digs beyond the usual portrayals of good kids and bad seeds to reveal a more ambivalent set of characters and motivations. The beauty of the piece is that it counts heart as important as humor. Piercingly affecting...while clearly a manipulative film, emerges as powerful rather than cloying. Very amusing, not the usual route in a thriller, and the performances are odd and pixilated and sometimes both. While 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. The cast is phenomenal, especially the women. A marvel of production design. The 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. Good actors have a radar for juicy roles -- there's a plethora of characters in this picture, and not one of them is flat. Though in some ways similar to Catherine Breillat's Fat Girl, Rain is the far superior film. Is not so much a work of entertainment as it is a unique, well-crafted psychological study of grief. Remarkable for its excellent storytelling, its economical, compressed characterisations and for its profound humanity, it's an adventure story and history lesson all in one. Colorful, energetic and sweetly whimsical...the rare sequel that's better than its predecessor. Reno 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. Significantly better than its 2002 children's-movie competition. UB 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. A lot smarter than your average Bond. ...bright, intelligent, and humanly funny film. Painful, horrifying and oppressively tragic, this film should not be missed. Part of the film's cheeky charm comes from its vintage schmaltz. So unique and stubborn and charismatic that you want it to be better and more successful than it is. I won't argue with anyone who calls 'Slackers' dumb, insulting, or childish... but I laughed so much that I didn't mind. It arrives with an impeccable pedigree, mongrel pep, and almost indecipherable plot complications. So fiendishly cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy, confused, and totally disorientated. Not to mention absolutely refreshed. A vibrant, colorful, semimusical rendition. The film sometimes flags...but there is enough secondary action to keep things moving along at a brisk, amusing pace. It's a drawling, slobbering, lovable run-on sentence of a film, a Southern Gothic with the emotional arc of its raw blues soundtrack. Nolan 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. It 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. Both a successful adaptation and an enjoyable film in its own right. All the filmmakers are asking of us, is to believe in something that is improbable. If the very concept makes you nervous ... you'll have an idea of the film's creepy, scary effectiveness. Worth a look by those on both sides of the issues, if only for the perspective it offers, one the public rarely sees. A mostly believable, refreshingly low-key and quietly inspirational little sports drama. May be more genial than ingenious, but it gets the job done. A stylish cast and some clever scripting solutions help Chicago make the transition from stage to screen with considerable appeal intact. Exhilarating, funny and fun. While not quite ``Shrek'' or ``Monsters, Inc.'', it's not too bad. It's worth taking the kids to. In the end there is one word that best describes this film: honest. Writer-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. The action sequences are fun and reminiscent of combat scenes from the Star Wars series. Norton is magnetic as Graham. Savvy director Robert J. Siegel and his co-writers keep the story subtle and us in suspense. It 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. Twenty years after its first release, E.T. remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg's misunderstood career. It 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. Gives us a lot to chew on, but not all of it has been properly digested. It's an exhilarating place to visit, this laboratory of laughter. ``Simone'' is a fun and funky look into an artificial creation in a world that thrives on artificiality. A great companion piece to other Napoleon films. To 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. At 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! A 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. Berling and Béart ... continue to impress, and Isabelle Huppert ... again shows uncanny skill in getting under the skin of her characters. Uplifting, funny and wise. Remarkable for its intelligence and intensity. The hypnotic imagery and fragmentary tale explore the connections between place and personal identity. Brosnan is more feral in this film than I've seen him before and Halle Berry does her best to keep up with him. A 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. ``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. The 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. Like 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. That the e-graveyard holds as many good ideas as bad is the cold comfort that Chin's film serves up with style and empathy. While we no longer possess the lack-of-attention span that we did at seventeen, we had no trouble sitting for Blade II. like a poor man's You Can Count On Me ...a solid, unassuming drama. A seriocomic debut of extravagant promise by Georgian-Israeli director Dover Kosashvili. Thanks to Ice Cube, Benjamins feels an awful lot like Friday in Miami. The real star of this movie is the score, as in the songs translate well to film, and it's really well directed. It's rare to find a film to which the adjective 'gentle' applies, but the word perfectly describes Pauline & Paulette. My 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. Both Garcia and Jagger turn in perfectly executed and wonderfully sympathetic characters, who are alternately touching and funny. Humorous, artsy, and even cute, in an off-kilter, dark, vaguely disturbing way. The more you think about the movie, the more you will probably like it. ...a powerful sequel and one of the best films of the year. For the most part, the film does hold up pretty well. Together (Time Out and Human Resources) establish Mr. Cantet as France's foremost cinematic poet of the workplace. You can take the grandkids or the grandparents and never worry about anyone being bored ... audience is a sea of constant smiles and frequent laughter. Like these Russo guys lookin' for their Mamet instead found their Sturges. There 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. By applying definition to both sides of the man, the picture realizes a fullness that does not negate the subject. Who is the audience for Cletis Tout? Anybody who enjoys quirky, fun, popcorn movies with a touch of silliness and a little bloodshed. (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. Puts to rest any thought that the German film industry cannot make a delightful comedy centering on food. Witty 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. Ash 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. After 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. The footage of the rappers at play and the prison interview with Suge Knight are just two of the elements that will grab you. ... it's as comprehensible as any Dummies guide, something even non-techies can enjoy. Don't wait to see this terrific film with your kids -- if you don't have kids borrow some. Moretti ... 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. The 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. Features Fincher's characteristically startling visual style and an almost palpable sense of intensity. Precocious smarter-than-thou wayward teen struggles to rebel against his oppressive, right-wing, propriety-obsessed family. Anyone else seen this before? Moore 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. Alternating between facetious comic parody and pulp melodrama, this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life. A cutesy romantic tale with a twist. This is a gorgeous film - vivid with color, music and life. Delight your senses and crash this wedding! A brutally dry satire of Middle American numbness. More sophisticated and literate than such pictures usually are...an amusing little catch. Smith examines the intimate, unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country. With an admirably dark first script by Brent Hanley, Paxton, making his directorial feature debut, does strong, measured work. A compelling French psychological drama examining the encounter of an aloof father and his chilly son after 20 years apart. ...even if you've never heard of Chaplin, you'll still be glued to the screen. You have enough finely tuned acting to compensate for the movie's failings. As the dominant Christine, Sylvie Testud is icily brilliant. Although tender and touching, the movie would have benefited from a little more dramatic tension and some more editing. The story that emerges has elements of romance, tragedy and even silent-movie comedy. (``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! It offers a glimpse of the Solomonic decision facing Jewish parents in those turbulent times: to save their children and yet to lose them. The film is delicately narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann. Martyr gets royally screwed and comes back for more. A virtual roller-coaster ride of glamour and sleaze. an admirable, sometimes exceptional film If you like an extreme action-packed film with a hint of humor, then Triple X marks the spot. If 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 May not be a breakthrough in filmmaking, but it is unwavering and arresting. The film's images give a backbone to the company and provide an emotional edge to its ultimate demise. A bodice-ripper for intellectuals. The locations go from stark desert to gorgeous beaches. The story plays out slowly, but the characters are intriguing and realistic. Count on his movie to work at the back of your neck long after you leave the theater. Neil Burger here succeeded in ... making the mystery of four decades back the springboard for a more immediate mystery in the present. The 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. A thriller made from a completist's checklist rather than with a cultist's passion. Try 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. As quiet, patient and tenacious as Mr. Lopez himself, who approaches his difficult, endless work with remarkable serenity and discipline. Though the film never veers from its comic course, its unintentional parallels might inadvertently evoke memories and emotions which are anything but humorous. Evokes the style and flash of the double-cross that made Mamet's ``House of Games'' and last fall's ``Heist'' so much fun. So original in its base concept that you cannot help but get caught up. It may be a no-brainer, but at least it's a funny no-brainer. A lot more dimensional and complex than its sunny disposition would lead you to believe. Jeffs has created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness. Underachieves only in not taking the Shakespeare parallels quite far enough. The most audacious, outrageous, sexually explicit, psychologically probing, pure libido film of the year has arrived from Portugal. The 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. Art-house to the core, Read My Lips is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema. Grant is certainly amusing, but the very hollowness of the character he plays keeps him at arms length Conceptually brilliant...Plays like a living-room War Of The Worlds, gaining most of its unsettling force from the suggested and the unknown. ... manages to deliver a fair bit of vampire fun. Drama of temptation, salvation and good intentions is a thoughtful examination of faith, love and power. The 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. The performances are strong, though the subject matter demands acting that borders on hammy at times. A damn fine and a truly distinctive and a deeply pertinent film. Still rapturous after all these years, Cinema Paradiso stands as one of the great films about movie love. Reggio and Glass put on an intoxicating show. MacDowell ... gives give a solid, anguished performance that eclipses nearly everything else she's ever done. The 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. I liked a lot of the smaller scenes. The 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. An eye-boggling blend of psychedelic devices, special effects and backgrounds, 'Spy Kids 2' is a visual treat for all audiences. Straightforward 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. It may ... work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns. One of those movies that catches you up in something bigger than yourself, namely, an archetypal desire to enjoy good trash every now and then. This harrowing journey into combat hell vividly captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked. Far more successful, if considerably less ambitious, than last year's Kubrick-meets-Spielberg exercise. Elling builds gradually until you feel fully embraced by this gentle comedy. A fascinating examination of the joyous, turbulent self-discovery made by a proper, middle-aged woman. Here 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. Buy popcorn. Take nothing seriously and enjoy the ride. Carrying off a spot-on Scottish burr, Duvall (also a producer) peels layers from this character that may well not have existed on paper. The 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. Some Body will take you places you haven't been, and also places you have. Vereté has a whip-smart sense of narrative bluffs. Parts 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. Were 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. ``Home Movie'' is the film equivalent of a lovingly rendered coffee table book. Graphic sex may be what's attracting audiences to Unfaithful, but gripping performances by Lane and Gere are what will keep them awake. When 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. Both damning and damned compelling. Much 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. Even 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. What 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. Both an admirable reconstruction of terrible events, and a fitting memorial to the dead of that day, and of the thousands thereafter. A sly dissection of the inanities of the contemporary music business and a rather sad story of the difficulties of artistic collaboration. The 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. Lovingly photographed in the manner of a Golden Book sprung to life, Stuart Little 2 manages sweetness largely without stickiness. Consistently clever and suspenseful. It's like a ``Big Chill'' reunion of the Baader-Meinhof Gang, only these guys are more harmless pranksters than political activists. The story gives ample opportunity for large-scale action and suspense, which director Shekhar Kapur supplies with tremendous skill. Fresnadillo 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. Throws in enough clever and unexpected twists to make the formula feel fresh. Weighty and ponderous but every bit as filling as the treat of the title. A 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. Generates an enormous feeling of empathy for its characters. Exposing the ways we fool ourselves is One Hour Photo's real strength. It'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. Mostly, (Goldbacher) just lets her complicated characters be unruly, confusing and, through it all, human. ...quite good at providing some good old fashioned spooks. At its worst, the movie is pretty diverting; the pity is that it rarely achieves its best. Scherfig's light-hearted profile of emotional desperation is achingly honest and delightfully cheeky. A 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. The 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. As it turns out, you can go home again. You've already seen City by the Sea under a variety of titles, but it's worth yet another visit. This 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. Making 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. Grown-up quibbles are beside the point here. The little girls understand, and McCracken knows that's all that matters. A powerful, chilling, and affecting study of one man's dying fall. This is a fascinating film because there is no clear-cut hero and no all-out villain. A dreadful day in Irish history is given passionate, if somewhat flawed, treatment. ...a good film that must have baffled the folks in the marketing department. ...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. Devotees 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. A 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. What's so striking about Jolie's performance is that she never lets her character become a caricature -- not even with that radioactive hair. The main story ... is compelling enough, but it's difficult to shrug off the annoyance of that chatty fish. The performances are immaculate, with Roussillon providing comic relief. Kinnear ... gives his best screen performance with an oddly winning portrayal of one of life's ultimate losers. Hugh Grant, who has a good line in charm, has never been more charming than in About a Boy. There's a lot of tooth in Roger Dodger. But what's nice is that there's a casual intelligence that permeates the script. Reminiscent of Alfred Hitchcock's thrillers, most of the scary parts in 'Signs' occur while waiting for things to happen. One of the best looking and stylish animated movies in quite a while ... Its 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. Denver 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. You 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. Waiting for Godard can be fruitful: 'In Praise of Love' is the director's epitaph for himself. A gangster movie with the capacity to surprise. The 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. If not a home run, then at least a solid base hit. Goldmember is funny enough to justify the embarrassment of bringing a barf bag to the moviehouse. ...a fairly disposable yet still entertaining B picture. It may not be particularly innovative, but the film's crisp, unaffected style and air of gentle longing make it unexpectedly rewarding. The film truly does rescue (the Funk Brothers) from Motown's shadows. It's about time. Drawing 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. Works 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. (Scherfig) has made a movie that will leave you wondering about the characters' lives after the clever credits roll. A 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. Skin 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. The 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. As refreshing as a drink from a woodland stream. Williams absolutely nails Sy's queasy infatuation and overall strangeness. Can 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? While 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. By 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. An intimate contemplation of two marvelously messy lives. Rarely has skin looked as beautiful, desirable, even delectable, as it does in Trouble Every Day. This is one of those rare docs that paints a grand picture of an era and makes the journey feel like a party. Poignant if familiar story of a young person suspended between two cultures. A metaphor for a modern-day urban China searching for its identity. For all its brooding quality, Ash Wednesday is suspenseful and ultimately unpredictable, with a sterling ensemble cast. An 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. The film feels uncomfortably real, its language and locations bearing the unmistakable stamp of authority. Despite its faults, Gangs excels in spectacle and pacing. Entertaining despite its one-joke premise with the thesis that women from Venus and men from Mars can indeed get together. A tightly directed, highly professional film that's old-fashioned in all the best possible ways. It's dark but has wonderfully funny moments; you care about the characters; and the action and special effects are first-rate. In visual fertility Treasure Planet rivals the top Japanese animations of recent vintage. Enormously enjoyable, high-adrenaline documentary. Buy is an accomplished actress, and this is a big, juicy role. It works its magic with such exuberance and passion that the film's length becomes a part of its fun. Beautifully crafted and brutally honest, Promises offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people. An old-fashioned but emotionally stirring adventure tale of the kind they rarely make anymore. Charlotte Sometimes is a gem. It's always enthralling. In my opinion, Analyze That is not as funny or entertaining as Analyze This, but it is a respectable sequel. A remarkable film by Bernard Rose. Zhuangzhuang 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. A much more successful translation than its most famous previous film adaptation, writer-director Anthony Friedman's similarly updated 1970 British production. an original and highly cerebral examination of the psychopathic mind Michel Piccoli's moving performance is this films reason for being. A captivating and intimate study about dying and loving... This is an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- that doesn't reveal even a hint of artifice. (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. A high-spirited buddy movie about the reunion of Berlin anarchists who face arrest 15 years after their crime. About 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. An involving, inspirational drama that sometimes falls prey to its sob-story trappings. Some of the most inventive silliness you are likely to witness in a movie theatre for some time. Canadian filmmaker Gary Burns' inventive and mordantly humorous take on the soullessness of work in the city. A 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. Everyone's insecure in Lovely and Amazing, a poignant and wryly amusing film about mothers, daughters and their relationships. The closest thing to the experience of space travel Connoisseurs of Chinese film will be pleased to discover that Tian's meticulous talent has not withered during his enforced hiatus. If you can push on through the slow spots, you'll be rewarded with some fine acting. An unusually dry-eyed, even analytical approach to material that is generally played for maximum moisture. Symbolically, Warm Water Under a Red Bridge is a celebration of feminine energy, a tribute to the power of women to heal. Spy Kids 2 also happens to be that rarity among sequels: It actually improves upon the original hit movie. Exceptionally well acted by Diane Lane and Richard Gere. Like a precious and finely cut diamond, magnificent to behold in its sparkling beauty yet in reality it's one tough rock. In 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. Miller has crafted an intriguing story of maternal instincts and misguided acts of affection. One of the most exciting action films to come out of China in recent years. This is a nervy, risky film, and Villeneuve has inspired Croze to give herself over completely to the tormented persona of Bibi. MY LITTLE EYE is the best little ``horror'' movie I've seen in years. Tunney, brimming with coltish, neurotic energy, holds the screen like a true star. Even if the Naipaul original remains the real masterpiece, the movie possesses its own languorous charm. (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. Sometimes 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. The 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. Like the series, the movie is funny, smart, visually inventive, and most of all, alive. It was filled with shootings, beatings, and more cussing than you could shake a stick at. You 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. Sure, I hated myself in the morning. But then again, I hate myself most mornings. I still like Moonlight Mile, better judgment be damned. Time Out is as serious as a pink slip. And more than that, it's an observant, unfussily poetic meditation about identity and alienation. Will assuredly rank as one of the cleverest, most deceptively amusing comedies of the year. Maryam is a small film, but it offers large rewards. A highly watchable, giggly little story with a sweet edge to it. The most consistently funny of the Austin Powers films. Ana'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... Cockettes has the glorious, gaudy benefit of much stock footage of Those Days, featuring all manner of drag queen, bearded lady and lactating hippie. There'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. The comedy makes social commentary more palatable. An ideal love story for those intolerant of the more common saccharine genre. One funny popcorn flick. This New Zealand coming-of-age movie isn't really about anything. When it's this rich and luscious, who cares? Tully 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. This gorgeous epic is guaranteed to lift the spirits of the whole family. The Wild Thornberrys Movie is pleasant enough and the message of our close ties with animals can certainly not be emphasized enough. Williams creates a stunning, Taxi Driver-esque portrayal of a man teetering on the edge of sanity. If you're in the right B-movie frame of mind, it may just scare the pants off you. A movie of riveting power and sadness. Both a detective story and a romance spiced with the intrigue of academic skullduggery and politics. Ludicrous, but director Carl Franklin adds enough flourishes and freak-outs to make it entertaining. Director Roger Kumble offers just enough sweet and traditional romantic comedy to counter the crudity. And there's the inimitable Diaz, holding it all together. Spielberg's picture is smarter and subtler than (Total Recall and Blade Runner), although its plot may prove too convoluted for fun-seeking summer audiences. It'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. A grittily beautiful film that looks, sounds, and feels more like an extended, open-ended poem than a traditionally structured story. The production values are of the highest and the performances attractive without being memorable. A well-rounded tribute to a man whose achievements -- and complexities -- reached far beyond the end zone. finely crafted, finely written, exquisitely performed Ramsay and Morton fill this character study with poetic force and buoyant feeling. This submarine drama earns the right to be favorably compared to Das Boot. Claude Chabrol's camera has a way of gently swaying back and forth as it cradles its characters, veiling tension beneath otherwise tender movements. There's a great deal of corny dialogue and preposterous moments. And yet, it still works. The film was immensely enjoyable thanks to great performances by both Steve Buscemi and Rosario Dawson... Like 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. Special P.O.V. camera mounts on bikes, skateboards, and motorcycles provide an intense experience when splashed across the immense IMAX screen. Mike White's deft combination of serious subject matter and dark, funny humor make ``The Good Girl'' a film worth watching. This is a shrewd and effective film from a director who understands how to create and sustain a mood. Meant to reduce Blake's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane's superhero dystopia. Assayas' ambitious, sometimes beautiful adaptation of Jacques Chardonne's novel. As ex-Marine Walter, who may or may not have shot Kennedy, actor Raymond J. Barry is perfectly creepy and believable. Those who don't entirely 'get' Godard's distinctive discourse will still come away with a sense of his reserved but existential poignancy. Pete's screenplay manages to find that real natural, even-flowing tone that few movies are able to accomplish. Like Brosnan's performance, Evelyn comes from the heart. It 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. Its spirit of iconoclastic abandon -- however canned -- makes for unexpectedly giddy viewing. The 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. This quiet, introspective and entertaining independent is worth seeking. Whether our action-and-popcorn obsessed culture will embrace this engaging and literate psychodrama isn't much of a mystery, unfortunately. Whether 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. Sly, sophisticated and surprising. Spare but quietly effective retelling. Demonstrates a vivid imagination and an impressive style that result in some terrific setpieces. By its modest, straight-ahead standards, Undisputed scores a direct hit. Its 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. For those who like quirky, slightly strange French films, this is a must! There 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. (Shyamalan) continues to cut a swathe through mainstream Hollywood, while retaining an integrity and refusing to compromise his vision. A whale of a good time for both children and parents seeking Christian-themed fun. What begins as a film in the tradition of The Graduate quickly switches into something more recyclable than significant. Much smarter and more attentive than it first sets out to be. The story is smart and entirely charming in intent and execution. A movie of technical skill and rare depth of intellect and feeling. Represents a worthy departure from the culture clash comedies that have marked an emerging Indian American cinema. Doesn'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. If you're looking for an intelligent movie in which you can release your pent up anger, ENOUGH is just the ticket you need. A pointed, often tender, examination of the pros and cons of unconditional love and familial duties. As 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. A comedy-drama of nearly epic proportions rooted in a sincere performance by the title character undergoing midlife crisis. It'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. Elegantly produced and expressively performed, the six musical numbers crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy. Enriched by a strong and unforced supporting cast. Writer/ director M. Night Shyamalan's ability to pull together easily accessible stories that resonate with profundity is undeniable. If you can keep your eyes open amid all the blood and gore, you'll see Del Toro has brought unexpected gravity to Blade II. Not 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. A breathtaking adventure for all ages, Spirit tells its poignant and uplifting story in a stunning fusion of music and images. A charming and funny story of clashing cultures and a clashing mother/daughter relationship. Never lets go your emotions, taking them to surprising highs, sorrowful lows and hidden impulsive niches...gorgeous, passionate, and at times uncommonly moving. ``...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.'' (Washington's) strong hand, keen eye, sweet spirit and good taste are reflected in almost every scene. Shiner can certainly go the distance, but isn't world championship material The 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. ...a quietly introspective portrait of the self-esteem of employment and the shame of losing a job... Affable if not timeless, Like Mike raises some worthwhile themes while delivering a wholesome fantasy for kids. A 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. It's an unusual, thoughtful bio-drama with a rich subject and some fantastic moments and scenes. Saved from being merely way-cool by a basic, credible compassion. The 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. Gangs, despite the gravity of its subject matter, is often as fun to watch as a good spaghetti western. Peter 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 There 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. Ice Age won't drop your jaw, but it will warm your heart, and I'm giving it a strong thumbs up. Like Kissing Jessica Stein, Amy's Orgasm has a key strength in its willingness to explore its principal characters with honesty, insight and humor. The Lady and the Duke is Eric Rohmer's economical antidote to the bloated costume drama One of the year's best films, featuring an Oscar-worthy performance by Julianne Moore. A small gem from Belgium. Combines a comically dismal social realism with a farcically bawdy fantasy of redemption and regeneration. A soap-opera quality twist in the last 20 minutes...almost puts the kibosh on what is otherwise a sumptuous work of B-movie imagination. The most ingenious film comedy since Being John Malkovich. There's something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers. A movie where story is almost an afterthought amidst a swirl of colors and inexplicable events. Manages to accomplish what few sequels can -- it equals the original and in some ways even betters it. To 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. Jolie 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. Although melodramatic and predictable, this romantic comedy explores the friendship between five Filipino-Americans and their frantic efforts to find love. I have a new favorite musical -- and I'm not even a fan of the genre It's unlikely we'll see a better thriller this year. There is a real subject here, and it is handled with intelligence and care. Jason Patric and Ray Liotta make for one splendidly cast pair. Noyce 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. Starts slowly, but Adrien Brody – in the title role – helps make the film's conclusion powerful and satisfying. Very predictable but still entertaining Nothing short of a masterpiece -- and a challenging one. Pratfalls aside, Barbershop gets its greatest play from the timeless spectacle of people really talking to each other. This amiable picture talks tough, but it's all bluster -- in the end it's as sweet as Greenfingers ... This is one of Mr. Chabrol's subtlest works, but also one of his most uncanny. An 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. Even 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. Watching Spirited Away is like watching an Eastern imagination explode. As relationships shift, director Robert J. Siegel allows the characters to inhabit their world without cleaving to a narrative arc. Twohy 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. While the story does seem pretty unbelievable at times, it's awfully entertaining to watch. A smart and funny, albeit sometimes superficial, cautionary tale of a technology in search of an artist. Examines its explosive subject matter as nonjudgmentally as Wiseman's previous studies of inner-city high schools, hospitals, courts and welfare centers. I prefer Soderbergh's concentration on his two lovers over Tarkovsky's mostly male, mostly patriarchal debating societies. 'If you are in the mood for an intelligent weepy, it can easily worm its way into your heart.' In IMAX in short, it's just as wonderful on the big screen. Does a good job of establishing a time and place, and of telling a fascinating character's story. I'm going to give it a marginal thumbs up. I liked it just enough. Those 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. A deliciously nonsensical comedy about a city coming apart at its seams. The rare Imax movie that you'll wish was longer than an hour. My Wife's plotting is nothing special; it's the delivery that matters here. I'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. A moving and not infrequently breathtaking film. It's a sharp movie about otherwise dull subjects. It's like Rocky and Bullwinkle on Speed, but that's neither completely enlightening, nor does it catch the intensity of the movie's strangeness. As action-adventure, this space-based homage to Robert Louis Stevenson's Treasure Island fires on all plasma conduits. A melancholy, emotional film. While the filmmaking may be a bit disjointed, the subject matter is so fascinating that you won't care. Intensely romantic, thought-provoking and even an engaging mystery. Goofy, nutty, consistently funny. And educational! Another 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. It leaves little doubt that Kidman has become one of our best actors. The film boasts dry humor and jarring shocks, plus moments of breathtaking mystery. Beautifully directed and convincingly acted. Gambling 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. In 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. Bring on the sequel. Graced with the kind of social texture and realism that would be foreign in American teen comedies. If we sometimes need comforting fantasies about mental illness, we also need movies like Tim McCann's Revolution No. 9. The 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. A big-budget/all-star movie as unblinkingly pure as The Hours is a distinct rarity, and an event. ... certainly an entertaining ride, despite many talky, slow scenes. But something seems to be missing. A sense of real magic, perhaps. That Haynes can both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace. The movie worked for me right up to the final scene, and then it caved in. ...one of the most entertaining monster movies in ages... Plunges 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. Would 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. The 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. Missteps take what was otherwise a fascinating, riveting story and send it down the path of the mundane. An indispensable peek at the art and the agony of making people laugh. Steadfastly uncinematic but powerfully dramatic. The engagingly primitive animated special effects contribute to a mood that's sustained through the surprisingly somber conclusion. Made-Up lampoons the moviemaking process itself, while shining a not particularly flattering spotlight on America's skin-deep notions of pulchritude. Evokes the 19th century with a subtlety that is an object lesson in period filmmaking. Ya-Yas everywhere will forgive the flaws and love the film. The 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. The artwork is spectacular and unlike most animaton from Japan, the characters move with grace and panache. The picture's fascinating byways are littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed. The modern remake of Dumas's story is long on narrative and (too) short on action. Fred 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. Suffers from its timid parsing of the barn-side target of sons trying to breach gaps in their relationships with their fathers. Nonchalantly freaky and uncommonly pleasurable, Warm Water may well be the year's best and most unpredictable comedy. It'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. It's a great American adventure and a wonderful film to bring to IMAX. Satisfyingly scarifying, fresh and old-fashioned at the same time. Oh, James! Your 20th outing shows off a lot of stamina and vitality, and get this, Madonna's cameo doesn't suck! That 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. There 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 A huge box-office hit in Korea, Shiri is a must for genre fans. I'm not a fan of the phrase 'life affirming' because it usually means 'schmaltzy,' but Real Women Have Curves truly is life affirming. The symbols float like butterflies and the spinning styx sting like bees. I wanted more. If it's unnerving suspense you're after -- you'll find it with Ring, an indisputably spooky film; with a screenplay to die for. The art direction and costumes are gorgeous and finely detailed, and Kurys' direction is clever and insightful. Red Dragon makes one appreciate Silence of the Lambs. Proves 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. Leigh isn't breaking new ground, but he knows how a daily grind can kill love. While 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. ...strips Bible stores of the potential for sanctimoniousness, making them meaningful for both kids and church-wary adults. Laugh-out-loud lines, adorably ditsy but heartfelt performances, and sparkling, bittersweet dialogue that cuts to the chase of the modern girl's dilemma. Tends to pile too many ``serious issues'' on its plate at times, yet remains fairly light, always entertaining, and smartly written. A solidly entertaining little film. It's an entertaining movie, and the effects, boosted to the size of a downtown hotel, will all but take you to outer space. Sayles has a knack for casting, often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors. Despite an overwrought ending, the film works as well as it does because of the performances. A passionately inquisitive film determined to uncover the truth and hopefully inspire action. Though Nijinsky's words grow increasingly disturbed, the film maintains a beguiling serenity and poise that make it accessible for a non-narrative feature. A muddle splashed with bloody beauty as vivid as any Scorsese has ever given us. From both a great and a terrible story, Mr. Nelson has made a film that is an undeniably worthy and devastating experience. Spider-Man is about growing strange hairs, getting a more mature body, and finding it necessary to hide new secretions from the parental units. The first shocking thing about Sorority Boys is that it's actually watchable. Even more baffling is that it's funny. Highlighted 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. Neither 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. First and foremost...the reason to go see ``Blue Crush'' is the phenomenal, water-born cinematography by David Hennings. A visionary marvel, but it's lacking a depth in storytelling usually found in anime like this. The 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. In his latest effort, Storytelling, Solondz has finally made a movie that isn't just offensive -- it also happens to be good. How 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. I just saw this movie... well, it's probably not accurate to call it a movie. What'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. Scherfig, the writer-director, has made a film so unabashedly hopeful that it actually makes the heart soar. Yes, soar. A delicious and delicately funny look at the residents of a Copenhagen neighborhood coping with the befuddling complications life tosses at them. ``What really happened?'' is a question for philosophers, not filmmakers; all the filmmakers need to do is engage an audience. Soderbergh, like Kubrick before him, may not touch the planet's skin, but understands the workings of its spirit. Much credit must be given to the water-camera operating team of Don King, Sonny Miller, and Michael Stewart. Their work is fantastic. Crush is so warm and fuzzy you might be able to forgive its mean-spirited second half. Franco 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. Tsai Ming-liang's witty, wistful new film, What Time Is It There?, is a temporal inquiry that shoulders its philosophical burden lightly. The 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. Steers, in his feature film debut, has created a brilliant motion picture. A brilliant, absurd collection of vignettes that, in their own idiosyncratic way, sum up the strange horror of life in the new millennium. As 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. The film may not hit as hard as some of the better drug-related pictures, but it still manages to get a few punches in. Old-fashioned but thoroughly satisfying entertainment. An energizing, intoxicating documentary charting the rise of hip-hop culture in general and the art of scratching (or turntablism) in particular. A 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.' If 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. I 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. Even though the film doesn't manage to hit all of its marks, it's still entertaining to watch the target practice. Where This was lazy but enjoyable, a formula comedy redeemed by its stars, That is even lazier and far less enjoyable. The 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. The attraction between these two marginal characters is complex from the start -- and, refreshingly, stays that way. Fans 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. Even when he's not at his most critically insightful, Godard can still be smarter than any 50 other filmmakers still at work. What sets this romantic comedy apart from most Hollywood romantic comedies is its low-key way of tackling what seems like done-to-death material. Has 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. This seductive tease of a thriller gets the job done. It's a scorcher. Bittersweet comedy/drama full of life, hand gestures, and some really adorable Italian guys. Works as pretty contagious fun. The 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. A realistically terrifying movie that puts another notch in the belt of the long list of renegade-cop tales. A charming, banter-filled comedy... one of those airy cinematic bon bons whose aims -- and by extension, accomplishments -- seem deceptively slight on the surface. A film with almost as many delights for adults as there are for children and dog lovers. Serious movie-goers embarking upon this journey will find that The Road to Perdition leads to a satisfying destination. Heartwarming and gently comic even as the film breaks your heart. Caruso 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. A ``black Austin Powers?'' I prefer to think of it as ``Pootie Tang with a budget.'' Sa da TAY! Oddly, the film isn't nearly as downbeat as it sounds, but strikes a tone that's alternately melancholic, hopeful and strangely funny. I would be shocked if there was actually one correct interpretation, but that shouldn't make the movie or the discussion any less enjoyable. Chouraqui brings documentary-like credibility to the horrors of the killing field and the barbarism of 'ethnic cleansing.' The best thing I can say about this film is that I can't wait to see what the director does next. Smarter than its commercials make it seem. One of the funnier movies in town. Campanella's competent direction and his excellent cast overcome the obstacles of a predictable outcome and a screenplay that glosses over Rafael's evolution. By turns very dark and very funny. Steven Soderbergh doesn't remake Andrei Tarkovsky's Solaris so much as distill it. For 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. Simultaneously heartbreakingly beautiful and exquisitely sad. Though overall an overwhelmingly positive portrayal, the film doesn't ignore the more problematic aspects of Brown's life. The philosophical musings of the dialogue jar against the tawdry soap opera antics of the film's action in a way that is surprisingly enjoyable. Not too fancy, not too filling, not too fluffy, but definitely tasty and sweet. Director Lee has a true cinematic knack, but it's also nice to see a movie with its heart so thoroughly, unabashedly on its sleeve. As Allen's execution date closes in, the documentary gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson. Jones has tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers. A vivid, spicy footnote to history, and a movie that grips and holds you in rapt attention from start to finish. If 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. If 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. One 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. ...an adorably whimsical comedy that deserves more than a passing twinkle. An engrossing story that combines psychological drama, sociological reflection, and high-octane thriller. It'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. Mel Gibson fights the good fight in Vietnam in director Randall Wallace's flag-waving war flick with a core of decency. There's real visual charge to the filmmaking, and a strong erotic spark to the most crucial lip-reading sequence. A 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. The film is a blunt indictment, part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity. One of the most important and exhilarating forms of animated filmmaking since old Walt doodled Steamboat Willie. Move over Bond; this girl deserves a sequel. The kind of trifle that date nights were invented for. . 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... Tells (the story) with such atmospheric ballast that shrugging off the plot's persnickety problems is simply a matter of (being) in a shrugging mood. The film is hard to dismiss -- moody, thoughtful, and lit by flashes of mordant humor. If 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. What 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. Meticulously uncovers a trail of outrageous force and craven concealment. Hey, 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. You won't look at religious fanatics -- or backyard sheds -- the same way again. At its best ... Festival in Cannes bubbles with the excitement of the festival in Cannes. There is a general air of exuberance in All About The Benjamins that's hard to resist. A lovably old-school Hollywood confection. I'm happy to have seen it -- not as an alternate version, but as the ultimate exercise in viewing deleted scenes. By turns gripping, amusing, tender and heart-wrenching, Laissez-passer has all the earmarks of French cinema at its best. The warnings to resist temptation in this film ... are blunt and challenging and offer no easy rewards for staying clean. Wonder of wonders -- a teen movie with a humanistic message. A quirky comedy set in Newfoundland that cleverly captures the dry wit that's so prevalent on The Rock. Peppered with witty dialogue and inventive moments. I'd rather watch a rerun of The Powerpuff Girls With 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. The 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. Like 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. As a thoughtful and unflinching examination of an alternative lifestyle, Sex with Strangers is a success. unpretentious, charming, quirky, original Spinning a web of dazzling entertainment may be overstating it, but ``Spider-Man'' certainly delivers the goods. Other than the slightly flawed (and fairly unbelievable) finale, everything else is top shelf. This 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. Manages to delight without much of a story. There's no denying that Burns is a filmmaker with a bright future ahead of him. I 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! Fairy-tale formula, serves as a paper skeleton for some very good acting, dialogue, comedy, direction and especially charm. A 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. Though 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. An energetic and engaging film that never pretends to be something it isn't. A 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. An animation landmark as monumental as Disney's 1937 breakthrough Snow White and the Seven Dwarfs. An entertaining, if ultimately minor, thriller. Sex With Strangers is fascinating ... A subtle, poignant picture of goodness that is flawed, compromised and sad. A wry, affectionate delight. The 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. One of those joyous films that leaps over national boundaries and celebrates universal human nature. A penetrating glimpse into the tissue-thin ego of the stand-up comic. Kids 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. Paid in Full is remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks. Less cinematically powerful than quietly and deeply moving, which is powerful in itself. waydowntown manages to nail the spirit-crushing ennui of denuded urban living without giving in to it. Each 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. If Borstal Boy isn't especially realistic, it is an engaging nostalgia piece. Often demented in a good way, but it is an uneven film for the most part. The 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. Maggie Smith as the Ya-Ya member with the O2-tank will absolutely crack you up with her crass, then gasp for gas, verbal deportment. This is a movie that refreshes the mind and spirit along with the body, so original is its content, look, and style. Although I didn't hate this one, it's not very good either. It can be safely recommended as a video/DVD babysitter. Another Best of the Year selection. The 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. It's a very valuable film... Max pokes, provokes, takes expressionistic license and hits a nerve...as far as art is concerned, it's mission accomplished. Literary purists may not be pleased, but as far as mainstream matinee-style entertainment goes, it does a bang-up job of pleasing the crowds. Here Polanski looks back on those places he saw at childhood, and captures them by freeing them from artefact, and by showing them heartbreakingly drably. The 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. A compelling story of musical passion against governmental odds. With ``Ichi the Killer'', Takashi Miike, Japan's wildest filmmaker gives us a crime fighter carrying more emotional baggage than Batman... You 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. (Breheny's) lensing of the New Zealand and Cook Island locations captures both the beauty of the land and the people. An almost unbearably morbid love story. The Wild Thornberrys Movie has all the sibling rivalry and general family chaos to which anyone can relate. A forceful drama of an alienated executive who re-invents himself. Spielberg'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. The 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. The best film of the year 2002. An enthralling, entertaining feature. Stripped 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. A remarkable movie with an unsatisfying ending, which is just the point. All 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. Smith finds amusing juxtapositions that justify his exercise. Working 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. An older cad instructs a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy. ``Austin Powers in Goldmember'' has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end. One of (Jaglom's) better efforts -- a wry and sometime bitter movie about love. Schaeffer isn't in this film, which may be why it works as well as it does. A fresh, entertaining comedy that looks at relationships minus traditional gender roles. Although Estela Bravo's documentary is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro, it's still a guilty pleasure to watch. Surprisingly, the film is a hilarious adventure and I shamelessly enjoyed it. The 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. Brutally honest and told with humor and poignancy, which makes its message resonate. If you can read the subtitles (the opera is sung in Italian) and you like 'Masterpiece Theatre' type costumes, you'll enjoy this movie. A pretty funny movie, with most of the humor coming, as before, from the incongruous but chemically perfect teaming of Crystal and De Niro. Gangster No. 1 is solid, satisfying fare for adults. This Chicago has hugely imaginative and successful casting to its great credit, as well as one terrific score and attitude to spare. Has enough gun battles and throwaway humor to cover up the yawning chasm where the plot should be. With its jerky hand-held camera and documentary feel, Bloody Sunday is a sobering recount of a very bleak day in Derry. You will likely prefer to keep on watching. Insomnia 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. What 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. At 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. An Inuit masterpiece that will give you goosebumps as its uncanny tale of love, communal discord, and justice unfolds. This 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 It'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. Performances are potent, and the women's stories are ably intercut and involving. An enormously entertaining movie, like nothing we've ever seen before, and yet completely familiar. Lan Yu is a genuine love story, full of traditional layers of awakening and ripening and separation and recovery. Your children will be occupied for 72 minutes. Pull(s) off the rare trick of recreating not only the look of a certain era, but also the feel. Twohy's a good yarn-spinner, and ultimately the story compels. 'Tobey Maguire is a poster boy for the geek generation.' ... a sweetly affecting story about four sisters who are coping, in one way or another, with life's endgame. Passion, melodrama, sorrow, laugther, and tears cascade over the screen effortlessly... Road 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. A marvelous performance by Allison Lohman as an identity-seeking foster child. Arliss 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. Critics 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. What a dumb, fun, curiously adolescent movie this is. The charms of the lead performances allow us to forget most of the film's problems. A vivid, sometimes surreal, glimpse into the mysteries of human behavior. A tour de force of modern cinema. Peralta captures, in luminous interviews and amazingly evocative film from three decades ago, the essence of the Dogtown experience. The lively appeal of The Last Kiss lies in the ease with which it integrates thoughtfulness and pasta-fagioli comedy. Without resorting to camp or parody, Haynes (like Sirk, but differently) has transformed the rhetoric of Hollywood melodrama into something provocative, rich, and strange. The performances are an absolute joy. A quasi-documentary by French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music. Grant carries the day with impeccable comic timing, raffish charm and piercing intellect. A sensitive and astute first feature by Anne-Sophie Birot. Both exuberantly romantic and serenely melancholy, What Time Is It There? may prove to be (Tsai's) masterpiece. Mazel tov to a film about a family's joyous life acting on the Yiddish stage. Standing 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. It's nice to see Piscopo again after all these years, and Chaykin and Headly are priceless. Provides a porthole into that noble, trembling incoherence that defines us all. Simplistic, silly and tedious. It's so laddish and juvenile, only teenage boys could possibly find it funny. Exploitative and largely devoid of the depth or sophistication that would make watching such a graphic treatment of the crimes bearable. (Garbus) discards the potential for pathological study, exhuming instead, the skewed melodrama of the circumstantial situation. A visually flashy but narratively opaque and emotionally vapid exercise in style and mystification. The story is also as unoriginal as they come, already having been recycled more times than I'd care to count. About 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. Not so much farcical as sour. Unfortunately the story and the actors are served with a hack script. All the more disquieting for its relatively gore-free allusions to the serial murders, but it falls down in its attempts to humanize its subject. A sentimental mess that never rings true. While the performances are often engaging, this loose collection of largely improvised numbers would probably have worked better as a one-hour TV documentary. Interesting, but not compelling. On a cutting room floor somewhere lies...footage that might have made No Such Thing a trenchant, ironic cultural satire instead of a frustrating misfire. While 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. There is a difference between movies with the courage to go over the top and movies that don't care about being stupid Nothing here seems as funny as it did in Analyze This, not even Joe Viterelli as De Niro's right-hand goombah. Such 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! Here, common sense flies out the window, along with the hail of bullets, none of which ever seem to hit Sascha. This 100-minute movie only has about 25 minutes of decent material. The 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. On its own, it's not very interesting. As a remake, it's a pale imitation. It 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. A 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. As exciting as all this exoticism might sound to the typical Pax viewer, the rest of us will be lulled into a coma. The party scenes deliver some tawdry kicks. The rest of the film ... is dudsville. Our 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.' The criticism never rises above easy, cynical potshots at morally bankrupt characters... The 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. Somewhere in the middle, the film compels, as Demme experiments he harvests a few movie moment gems, but the field of roughage dominates. The action clichés just pile up. Payami 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. The 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. Another useless recycling of a brutal mid-'70s American sports movie. Please, someone, stop Eric Schaeffer before he makes another film. Most of the problems with the film don't derive from the screenplay, but rather the mediocre performances by most of the actors involved ...if you're just in the mood for a fun -- but bad -- movie, you might want to catch Freaks as a matinee. Curling may be a unique sport but Men with Brooms is distinctly ordinary. Though the opera itself takes place mostly indoors, Jacquot seems unsure of how to evoke any sort of naturalism on the set. There's no getting around the fact that this is Revenge Of The Nerds Revisited -- again. The effort is sincere and the results are honest, but the film is so bleak that it's hardly watchable. Analyze That regurgitates and waters down many of the previous film's successes, with a few new swings thrown in. With 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. Stinks from start to finish, like a wet burlap sack of gloom. To the civilized mind, a movie like Ballistic: Ecks Vs. Sever is more of an ordeal than an amusement. Equlibrium could pass for a thirteen-year-old's book report on the totalitarian themes of 1984 and Farenheit 451. The lack of naturalness makes everything seem self-consciously poetic and forced...It's a pity that (Nelson's) achievement doesn't match his ambition. When Seagal appeared in an orange prison jumpsuit, I wanted to stand up in the theater and shout, 'Hey, Kool-Aid!' An easy watch, except for the annoying demeanour of its lead character. Imagine the CleanFlicks version of 'Love Story,' with Ali MacGraw's profanities replaced by romance-novel platitudes. PC stability notwithstanding, the film suffers from a simplistic narrative and a pat, fairy-tale conclusion. Forget the misleading title, what's with the unexplained baboon cameo? An odd, haphazard, and inconsequential romantic comedy. Though her fans will assuredly have their funny bones tickled, others will find their humor-seeking dollars best spent elsewhere. Pascale Bailly's rom-com provides Amélie's Audrey Tautou with another fabuleux destin -- i.e., a banal spiritual quest. A static and sugary little half-hour, after-school special about interfaith understanding, stretched out to 90 minutes. Watching the chemistry between Freeman and Judd, however, almost makes this movie worth seeing. Almost. ... a pretentious and ultimately empty examination of a sick and evil woman. The 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. The 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. The characters are never more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach. Mattei'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. Only in its final surprising shots does Rabbit-Proof Fence find the authority it's looking for. Isn't as sharp as the original...Despite some visual virtues, 'Blade II' just doesn't cut it. ...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. Maybe LeBlanc thought, ``Hey, the movie about the baseball-playing monkey was worse.'' What you expect is just what you get...assuming the bar of expectations hasn't been raised above sixth-grade height. Barry Sonnenfeld owes Frank the Pug big time The 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. So riddled with unanswered questions that it requires gargantuan leaps of faith just to watch it plod along. I approached the usher and said that if she had to sit through it again, she should ask for a raise. If 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. Too slow for a younger crowd, too shallow for an older one. There's a reason the studio didn't offer an advance screening. ``The Adventures of Pluto Nash'' is a big time stinker. A punch line without a premise, a joke built entirely from musty memories of half-dimensional characters. Takes 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. The things this movie tries to get the audience to buy just won't fly with most intelligent viewers. Even 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. Sitting 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. Confuses 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. Deadly dull, pointless meditation on losers in a gone-to-seed hotel. With this new Rollerball, sense and sensibility have been overrun by what can only be characterized as robotic sentiment. One 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 A 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. Sex 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 The 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. A portrait of alienation so perfect, it will certainly succeed in alienating most viewers. The code talkers deserved better than a hollow tribute. Skip the film and buy the Philip Glass soundtrack CD. Feels like a cold old man going through the motions. Dignified CEO's meet at a rustic retreat and pee against a tree. Can you bear the laughter? Dull and mechanical, kinda like a very goofy museum exhibit There'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. Beware the quirky Brit-com. They can and will turn on a dime from oddly humorous to tediously sentimental. Has its moments -- and almost as many subplots. The gags, and the script, are a mixed bag. Completely awful Iranian drama...as much fun as a grouchy ayatollah in a cold mosque. Narratively, Trouble Every Day is a plodding mess. There's no point in extracting the bare bones of Byatt's plot for purposes of bland Hollywood romance. Directors 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. Adam Sandler's heart may be in the right place, but he needs to pull his head out of his butt There'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. Despite 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. It's all pretty tame. The most offensive thing about the movie is that Hollywood expects people to pay to see it. The movie is a mess from start to finish. The 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. I'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. In the telling of a story largely untold, Bui chooses to produce something that is ultimately suspiciously familiar. The 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 Terminally brain dead production. Some episodes work, some don't. Beautifully filmed and well acted... but admittedly problematic in its narrative specifics. J. 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. Rymer 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. Not 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. Wow. I have not been this disappointed by a movie in a long time. Off the Hook is overlong and not well-acted, but credit writer-producer-director Adam Watstein with finishing it at all. It's a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding. Watching 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. It's also curious to note that this film, like the similarly ill-timed Antitrust, is easily as bad at a fraction the budget. Will probably be one of those movies barely registering a blip on the radar screen of 2002. The 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. There's nothing interesting in Unfaithful whatsoever. None of this is half as moving as the filmmakers seem to think. A processed comedy chop suey. As 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. Fails as a dystopian movie, as a retooling of Fahrenheit 451, and even as a rip-off of The Matrix. Full of the kind of obnoxious chitchat that only self-aware neurotics engage in. An erotic thriller that's neither too erotic nor very thrilling, either. The movie, like Bartleby, is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes. With its parade of almost perpetually wasted characters ... Margarita feels like a hazy high that takes too long to shake. If you value your time and money, find an escape clause and avoid seeing this trite, predictable rehash. The 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. Everything is pegged into the groove of a New York dating comedy with 'issues' to simplify. A dramatic comedy as pleasantly dishonest and pat as any Hollywood fluff. The 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. It 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. The 50-something lovebirds are too immature and unappealing to care about. So 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. Even in the summertime, the most restless young audience deserves the dignity of an action hero motivated by something more than franchise possibilities. What 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. As 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. Plodding, peevish and gimmicky. The Four Feathers is definitely horse feathers, but if you go in knowing that, you might have fun in this cinematic sandbox. Oozes condescension from every pore. ``Solaris'' is a shapeless inconsequential move relying on the viewer to do most of the work. The direction, by George Hickenlooper, has no snap to it, no wiseacre crackle or hard-bitten cynicism. Though this saga would be terrific to read about, it is dicey screen material that only a genius should touch. It has plenty of laughs. It just doesn't have much else... especially in a moral sense. An 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. Confusion is one of my least favourite emotions, especially when I have to put up with 146 minutes of it. (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. Occasionally loud and offensive, but more often, it simply lulls you into a gentle waking coma. it may play well as a double feature with mainstream foreign mush like My Big Fat Greek Wedding By the time you reach the finale, you're likely wondering why you've been watching all this strutting and posturing. Journalistically dubious, inept and often lethally dull. Putting 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. At its best, it's Black Hawk Down with more heart. At its worst, it's Rambo- meets-John Ford. Exactly what you'd expect from a guy named Kaos. This movie ... doesn't deserve the energy it takes to describe how bad it is. With or without ballast tanks, K-19 sinks to a Harrison Ford low. Director Oliver Parker labors so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two. You might be shocked to discover that Seinfeld's real life is boring. It'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. Walsh can't quite negotiate the many inconsistencies in Janice's behavior or compensate for them by sheer force of charm. This 10th film in the series looks and feels tired. It leers, offering next to little insight into its intriguing subject. I found myself growing more and more frustrated and detached as Vincent became more and more abhorrent. One of the oddest and most inexplicable sequels in movie history. There'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. Fear permeates the whole of Stortelling, Todd Solondz' oftentimes funny, yet ultimately cowardly autocritique. The skirmishes for power waged among victims and predators settle into an undistinguished rhythm of artificial suspense. ... Ice Age treads predictably along familiar territory, making it a passable family film that won't win many fans over the age of 12. Though the film is well-intentioned, one could rent the original and get the same love story and parable. Just too silly and sophomoric to ensnare its target audience. The 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. A cleverly crafted but ultimately hollow mockumentary. It gets bogged down by hit-and-miss topical humour before getting to the truly good stuff. An achingly enthralling premise, the film is hindered by uneven dialogue and plot lapses. It's Tommy's job to clean the peep booths surrounding her, and after viewing this one, you'll feel like mopping up, too. Rifkin 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. Such a bad movie that its luckiest viewers will be seated next to one of those ignorant pinheads who talk throughout the show. If you go into the theater expecting a scary, action-packed chiller, you might soon be looking for a sign. An EXIT sign, that is. Holds limited appeal to those who like explosions, sadism and seeing people beat each other to a pulp. The dialogue is very choppy and monosyllabic despite the fact that it is being dubbed. A feature-length, R-rated, road-trip version of Mama's Family. What you end up getting is the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between. Stealing Harvard doesn't care about cleverness, wit or any other kind of intelligent humor. Bigelow 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. There'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. Imagine 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. Suffers from a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer demands. What soured me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard, it's icky. It's an 88-minute highlight reel that's 86 minutes too long. The film favors the scientific over the spectacular (visually speaking). Such an incomprehensible mess that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema. With the exception of McCoist, the players don't have a clue on the park. The acting isn't much better. The whole affair is as predictable as can be. A not-so-Divine Secrets of the Ya-Ya Sisterhood with a hefty helping of Re-Fried Green Tomatoes. This cloying, voices-from-the-other-side story is hell. A suffocating rape-payback horror show that hinges on the subgenre's most enabling victim ... and an ebullient affection for industrial-model meat freezers. Star Trek was kind of terrific once, but now it is a copy of a copy of a copy. (N)o matter how much good will the actors generate, Showtime eventually folds under its own thinness. Every potential twist is telegraphed well in advance, every performance respectably muted; the movie itself seems to have been made under the influence of Rohypnol. Puts on airs of a Hal Hartley wannabe film -- without the vital comic ingredient of the hilarious writer-director himself. Ver Wiel's desperate attempt at wit is lost, leaving the character of Critical Jim two-dimensional and pointless. Despite 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 Although Disney follows its standard formula in this animated adventure, it feels more forced than usual. Gaghan ... has thrown every suspenseful cliché in the book at this nonsensical story. A sham construct based on theory, sleight-of-hand, and ill-wrought hypothesis. (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. '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...' Gooding offers a desperately ingratiating performance. Parker 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. The director has injected self-consciousness into the proceedings at every turn. The results are far more alienating than involving. Bogdanich is unashamedly pro-Serbian and makes little attempt to give voice to the other side. A lack of thesis makes Maryam, in the end, play out with the intellectual and emotional impact of an after-school special. Without Shakespeare's eloquent language, the update is dreary and sluggish. If 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.' During The Tuxedo's 90 minutes of screen time, there isn't one true 'Chan moment'. Bisset delivers a game performance, but she is unable to save the movie. Watching 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. The most anti-human big studio picture since 3000 Miles to Graceland. The film can depress you about life itself. I'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é. The acting is fine but the script is about as interesting as a recording of conversations at the Wal-Mart checkout line. Its 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. The plot plummets into a comedy graveyard before Janice comes racing to the rescue in the final reel. Sometimes there are very, very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely. At 90 minutes this movie is short, but it feels much longer. Here's my advice, Kev. Start reading your scripts before signing that dotted line. An alternately raucous and sappy ethnic sitcom...you'd be wise to send your regrets. An ugly-duckling tale so hideously and clumsily told it feels accidental. Unfortunately, it's also not very good. Especially compared with the television series that inspired the movie. It 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. Glazed with a tawdry B-movie scum. This 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. It winds up moving in many directions as it searches (vainly, I think) for something fresh to say. All in all, Road to Perdition is more in love with strangeness than excellence. A big fat pain. A mimetic approximation of better films like Contempt and 8 1/2. Unintelligible, poorly acted, brain-slappingly bad, Harvard Man is ludicrous enough that it could become a cult classic. Watching The Powerpuff Girls Movie, my mind kept returning to one anecdote for comparison: the cartoon in Japan that gave people seizures. An 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. To build a feel-good fantasy around a vain dictator-madman is off-putting, to say the least, not to mention inappropriate and wildly undeserved. With the cheesiest monsters this side of a horror spoof, which They isn't, it is more likely to induce sleep than fright. Mild, meandering teen flick. Though its atmosphere is intriguing ... the drama is finally too predictable to leave much of an impression. Though this rude and crude film does deliver a few gut-busting laughs, its digs at modern society are all things we've seen before. Although it tries to be much more, it's really just another Major League. Astonishing 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. One thing is for sure: This movie does not tell you a whole lot about Lily Chou-Chou. With 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. To 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. Cuba Gooding Jr. valiantly mugs his way through Snow Dogs, but even his boisterous energy fails to spark this leaden comedy. Diane Lane's sophisticated performance can't rescue Adrian Lyne's Unfaithful from its sleazy moralizing. Not at all clear what it's trying to say and even if it were – I doubt it would be all that interesting. (Swimfan) falls victim to sloppy plotting, an insultingly unbelievable final act and a villainess who is too crazy to be interesting. This 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. Silly, loud and goofy. Why spend $9 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby? The 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. The basic premise is intriguing but quickly becomes distasteful and downright creepy. The Pool drowned me in boredom. It's like an all-star salute to Disney's cheesy commercialism. It's hard to imagine any recent film, independent or otherwise, that makes as much of a mess as this one. Some 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. There's an excellent 90-minute film here; unfortunately, it runs for 170. As saccharine movies go, this is likely to cause massive cardiac arrest if taken in large doses. Die 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. As 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. The mystery of Enigma is how a rich historical subject, combined with so much first-rate talent ... could have yielded such a flat, plodding picture. It 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. The 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. It's not only dull because we've seen (Eddie) Murphy do the genial-rogue shtick to death, but because the plot is equally hackneyed. Avary's film never quite emerges from the shadow of Ellis' book. A poorly scripted, preachy fable that forgets about unfolding a coherent, believable story in its zeal to spread propaganda. While 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. Woo 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? It's sincere to a fault, but, unfortunately, not very compelling or much fun. ... 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. This follow-up seems so similar to the 1953 Disney classic that it makes one long for a geriatric Peter. Why, you may ask, why should you buy the movie milk when the TV cow is free? There's no good answer to that one. This 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. A muddled limp biscuit of a movie, a vampire soap opera that doesn't make much sense even on its own terms. There's the plot, and a maddeningly insistent and repetitive piano score that made me want to scream. This 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. This is amusing for about three minutes. Klein, charming in comedies like American Pie and dead-on in Election, delivers one of the saddest action hero performances ever witnessed. It's rare to see a movie that takes such a speedy swan dive from ``promising'' to ``interesting'' to ``familiar'' before landing squarely on ``stupid''. This 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. The 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. There are few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending. It 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. Looks 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. Given too much time to consider the looseness of the piece, the picture begins to resemble the shapeless, grasping actors' workshop that it is. They kept much of the plot but jettisoned the stuff that would make this a moving experience for people who haven't read the book. Just because A Walk to Remember is shrewd enough to activate girlish tear ducts doesn't mean it's good enough for our girls. (Carvey's) characters are both overplayed and exaggerated, but then again, subtlety has never been his trademark. It'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. This 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. Brown's saga, like many before his, makes for snappy prose but a stumblebum of a movie. The boys' sparring, like the succession of blows dumped on Guei, wears down the story's more cerebral, and likable, plot elements. The script by Vincent R. Nebrida ... tries to cram too many ingredients into one small pot. The 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. Oedekerk mugs mercilessly, and the genuinely funny jokes are few and far between. Since 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. Only those most addicted to film violence in all its forms will find anything here to appreciate. Cold 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. Every 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! It's not difficult to spot the culprit early-on in this predictable thriller. ...a mostly boring affair with a confusing sudden finale that's likely to irk viewers. The trappings of I Spy are so familiar you might as well be watching a rerun. What starts off as a potentially incredibly twisting mystery becomes simply a monster chase film. In 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. It is messy, uncouth, incomprehensible, vicious and absurd. Really does feel like a short stretched out to feature length. Hampered -- no, paralyzed -- by a self-indulgent script ... that aims for poetry and ends up sounding like satire. Cheap, vulgar dialogue and a plot that crawls along at a snail's pace. And 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! Directed 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. It's a very tasteful rock and roll movie. You could put it on a coffee table anywhere. The 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. An infuriating film. Just when you think you are making sense of it, something happens that tells you there is no sense. The entire movie is so formulaic and forgettable that it's hardly over before it begins to fade from memory. The setting turns out to be more interesting than any of the character dramas, which never reach satisfying conclusions. As an entertainment destination for the general public, Kung Pow sets a new benchmark for lameness. This misty-eyed Southern nostalgia piece, in treading the line between sappy and sanguine, winds up mired in tear-drenched quicksand. As pure over-the-top trash, any John Waters movie has it beat by a country mile. Wendigo wants to be a monster movie for the art-house crowd, but it falls into the trap of pretention almost every time. Bigelow 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. This film biggest problem? No laughs. Less-than-compelling documentary of a Yiddish theater clan. That the Chuck Norris ``grenade gag'' occurs about 7 times during Windtalkers is a good indication of how serious-minded the film is. Viewers are asked so often to suspend belief that were it not for Holm's performance, the film would be a total washout. It'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. I 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... Everybody loves a David and Goliath story, and this one is told almost entirely from David's point of view. Throw Smoochy from the train! Eventually, 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. Irwin and his director never come up with an adequate reason why we should pay money for what we can get on television for free. A light, engaging comedy that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation. Cedar somewhat defuses this provocative theme by submerging it in a hoary love triangle. To paraphrase a line from another Dickens' novel, Nicholas Nickleby is too much like a fragment of an underdone potato. The 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. The 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. An extremely unpleasant film. A 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. A sincere but dramatically conflicted gay coming-of-age tale. Wait for it to hit cable. Ultimately feels like just one more in the long line of films this year about the business of making movies. Nothing 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. 77 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. The one not-so-small problem with Expecting is that the entire exercise has no real point. A movie you observe, rather than one you enter into. (At least) Moore is a real charmer. John Carlen's script is full of unhappy, two-dimensional characters who are anything but compelling. LaBute 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. The 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. Stale first act, Scrooge story, blatant product placement, some very good comedic songs, strong finish, dumb fart jokes. Unsurprisingly, the way this all works out makes the women look more like stereotypical caretakers and moral teachers, instead of serious athletes. A film that loses sight of its own story. Adam Sandler's Eight Crazy Nights grows on you -- like a rash. The big-screen Scooby makes the silly original cartoon seem smart and well-crafted in comparison. Few 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. Gets better after Foster leaves that little room. The movie is as padded as Allen's jelly belly. Resident Evil isn't a product of its cinematic predecessors so much as an MTV, sugar hysteria, and PlayStation cocktail. A rather average action film that benefits from several funny moments supplied by Epps. ...unspeakably, unbearably dull, featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted. Resembles a soft porn Brian De Palma pastiche. Bluto Blutarsky, we miss you. Innocuous enough to make even Jean-Claude Van Damme look good. It's a glorified sitcom, and a long, unfunny one at that. Woody Allen can write and deliver a one liner as well as anybody. But I had a lot of problems with this movie. Devoid of any of the qualities that made the first film so special. All 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. Plotless collection of moronic stunts is by far the worst movie of the year. However sincere it may be, The Rising Place never quite justifies its own existence. Parker 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. It's sort of a 21st century morality play with a Latino hip hop beat. But the second half of the movie really goes downhill. Paxton'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. The script becomes lifeless and falls apart like a cheap lawn chair. The script falls back on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy. The film starts promisingly, but the ending is all too predictable and far too cliched to really work. Let's issue a moratorium, effective immediately, on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate. It'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. Alternately frustrating and rewarding. It's impossible to even categorize this as a smutty guilty pleasure. Despite suffering a sense-of-humour failure, The Man Who Wrote Rocky does not deserve to go down with a ship as leaky as this. Swinging, the film makes it seem, is not a hobby that attracts the young and fit. Or intelligent. The 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. See 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. Suffers from over-familiarity since hit-hungry British filmmakers have strip-mined the Monty formula mercilessly since 1997. There 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. Yes, I have given this movie a rating of zero. But fans of the show should not consider this a diss. Consider it 'perfection.' The cumulative effect of the movie is repulsive and depressing. Children and adults enamored of all things Pokemon won't be disappointed. I don't even care that there's no plot in this Antonio Banderas-Lucy Liu faceoff. It's still terrible! Children of the Century, though well dressed and well made, ultimately falls prey to the contradiction that afflicts so many movies about writers. It'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. Peralta's mythmaking could have used some informed, adult hindsight. A close-to-solid espionage thriller with the misfortune of being released a few decades too late. Cloaks a familiar anti-feminist equation (career - kids = misery) in tiresome romantic-comedy duds. The Good Girl is a film in which the talent is undeniable but the results are underwhelming. Just a collection of this and that -- whatever fills time -- with no unified whole. The 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. Only about as sexy and dangerous as an actress in a role that reminds at every turn of Elizabeth Berkley's flopping dolphin-gasm. Kids 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. Mr. Soderbergh's direction and visual style struck me as unusually and unimpressively fussy and pretentious. Do you say ``hi'' to your lover when you wake up in the morning? It 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 Director 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. 'Yes, that's right: it's Forrest Gump, Angel Of Death.' A wildly erratic drama with sequences that make you wince in embarrassment and others, thanks to the actors, that are quite touching. While 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. About as enjoyable, I would imagine, as searching for a quarter in a giant pile of elephant feces...positively dreadful. A generic international version of a typical American horror film. ... while certainly clever in spots, this too-long, spoofy update of Shakespeare's Macbeth doesn't sustain a high enough level of invention. Lucas has in fact come closer than anyone could desire to the cheap, graceless, hackneyed sci-fi serials of the '30s and '40s. There's a lot of good material here, but there's also a lot of redundancy and unsuccessful crudeness accompanying it. Absurdities and clichés accumulate like lint in a fat man's navel. If you think it's a riot to see Rob Schneider in a young woman's clothes, then you'll enjoy The Hot Chick. The sheer dumbness of the plot (other than its one good idea) and the movie's inescapable air of sleaziness get you down. Strangely comes off as a kingdom more mild than wild. The next big thing's not-so-big (and not-so-hot) directorial debut. Yet 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... Bond-inspired? Certainly. Likely to have decades of life as a classic movie franchise? Let's hope not. This flat run at a hip-hop Tootsie is so poorly paced you could fit all of Pootie Tang in between its punchlines. Davis 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. Surprisingly, considering that Baird is a former film editor, the movie is rather choppy. None of this is very original, and it isn't particularly funny. ...a bland murder-on-campus yawner. A humorless journey into a philosophical void. These two are generating about as much chemistry as an Iraqi factory poised to receive a UN inspector. Just as the lousy Tarantino imitations have subsided, here comes the first lousy Guy Ritchie imitation. A passable romantic comedy, in need of another couple of passes through the word processor. The 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. shows 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. Ultimately ... the movie is too heady for children, and too preachy for adults. It's just a little too self-satisfied. Clever but not especially compelling. McKay 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. A 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. LaBute was more fun when his characters were torturing each other psychologically and talking about their genitals in public. The movie weighs no more than a glass of flat champagne. The problem with ANTWONE FISHER is that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher. Alarms for Duvall's throbbing sincerity and his elderly propensity for patting people while he talks. What little grace (Rifkin's) tale of precarious skid-row dignity achieves is pushed into the margins by predictable plotting and tiresome histrionics. Tries 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. Unfortunately, Kapur modernizes A.E.W. Mason's story to suit the sensibilities of a young American, a decision that plucks ``The Four Feathers'' bare. ...what a banal bore the preachy Circuit turns out to be Falsehoods pile up, undermining the movie's reality and stifling its creator's comic voice. A mechanical action-comedy whose seeming purpose is to market the charismatic Jackie Chan to even younger audiences. One of the most incoherent features in recent memory. Low rent from frame one. Eight Legged Freaks? No big hairy deal. The issues are presented in such a lousy way, complete with some of the year's (unintentionally) funniest moments, that it's impossible to care. Laggard drama wending its way to an uninspired philosophical epiphany. The respective charms of Sandra Bullock and Hugh Grant have worn threadbare. 'This movie sucks.' None 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. A 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. Bad in such a bizarre way that it's almost worth seeing, if only to witness the crazy confluence of purpose and taste. There's more repetition than creativity throughout the movie. Hugh Grant's act is so consuming that sometimes it's difficult to tell who the other actors in the movie are. Although 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. I'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. What we get ... is Caddyshack crossed with the Loyal Order of Raccoons. The jokes are flat, and the action looks fake. When a movie asks you to feel sorry for Mick Jagger's sex life, it already has one strike against it. There 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. ...hokey art house pretension. ... a weak and ineffective ghost story without a conclusion or pay off. Gussied up with so many distracting special effects and visual party tricks that it's not clear whether we're supposed to shriek or laugh. Plodding, poorly written, murky and weakly acted, the picture feels as if everyone making it lost their movie mojo. This is a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life. A 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. Soderbergh seems capable only of delivering artfully lighted, earnest inquiries that lack the kind of genuine depth that would make them redeemable. The only thing that distinguishes a Randall Wallace film from any other is the fact that there is nothing distinguishing in a Randall Wallace film. Silly stuff, all mixed up together like a term paper from a kid who can't quite distinguish one sci-fi work from another. There is so much plodding sensitivity. The 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. ...too sappy for its own good. Circuit queens won't learn a thing, they'll be too busy cursing the film's strategically placed white sheets. As an actress, Madonna is one helluva singer. As the Mediterranean sparkles, 'Swept Away' sinks. Every 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. Expanded to 65 minutes for theatrical release, it still feels somewhat unfinished. It all looks and plays like a $40 million version of a game you're more likely to enjoy on a computer. (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. Feels shrill, simple and soapy. Adults, other than the parents...will be hard pressed to succumb to the call of the wild. Brady achieves the remarkable feat of squandering a topnotch foursome of actors ... by shoving them into every clichéd white-trash situation imaginable. In 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. No amount of blood and disintegrating vampire cadavers can obscure this movie's lack of ideas. A direct-to-void release, heading nowhere. Typical 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. Below is well below expectations. At 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. ...standard guns versus martial arts cliche with little new added. Empire can't make up its mind whether it wants to be a gangster flick or an art film. It doesn't work as either. Given the fact that virtually no one is bound to show up at theatres for it, the project should have been made for the tube. Possession is in the end an honorable, interesting failure. It falls far short of poetry, but it's not bad prose. Jonathan Parker's Bartleby should have been the be-all-end-all of the modern-office anomie films. There may have been a good film in ``Trouble Every Day,'' but it is not what is on the screen. Unfortunately, Carvey's rubber-face routine is no match for the insipid script he has crafted with Harris Goldberg. Viewed as a comedy, a romance, a fairy tale, or a drama, there's nothing remotely triumphant about this motion picture. There'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. The Master of Disguise is funny--not ``ha ha'' funny, ``dead circus performer'' funny. And for all the wrong reasons besides. A zippy 96 minutes of mediocre special effects, hoary dialogue, fluxing accents, and -- worst of all -- silly-looking Morlocks. A 75-minute sample of puerile rubbish that is listless, witless, and devoid of anything resembling humor. You leave feeling like you've endured a long workout without your pulse ever racing. The waterlogged script plumbs uncharted depths of stupidity, incoherence and sub-sophomoric sexual banter. With 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. It's the type of stunt the Academy loves: a powerful political message stuffed into an otherwise mediocre film. In 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. So mind-numbingly awful that you hope Britney won't do it one more time, as far as movies are concerned. The images are usually abbreviated in favor of mushy obviousness and telegraphed pathos, particularly where Whitaker's misfit artist is concerned. If 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. Sets animation back 30 years, musicals back 40 years and Judaism back at least 50. Weirdly, 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. Might best be enjoyed as a daytime soaper. eventually arrives at its heart, as simple self-reflection meditation. A showcase for both the scenic splendor of the mountains and for legendary actor Michel Serrault, the film is less successful on other levels. Boy oh boy, it's a howler. A few pieces of the film buzz and whir; very little of it actually clicks. The thing just never gets off the ground. ...contains very few laughs and even less surprises. The actors must indeed be good to recite some of this laughable dialogue with a straight face. Most 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. However 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. There's nothing remotely topical or sexy here. The Tuxedo wasn't just bad; it was, as my friend David Cross would call it, 'Hungry-Man portions of bad'. Blue Crush is so prolonged and boring it isn't even close to being the barn-burningly bad movie it promised it would be. The 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. While Van Wilder may not be the worst National Lampoon film, it's far from being this generation's Animal House. So devoid of pleasure or sensuality that it cannot even be dubbed hedonistic. Reeks of rot and hack work from start to finish. An exhausting family drama about a porcelain empire and just as hard a flick as its subject matter. Woody 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. The bland outweighs the nifty, and Cletis Tout never becomes the clever crime comedy it thinks it is. It's such a mechanical endeavor (that) it never bothers to question why somebody might devote time to see it. The 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. If the predictability of bland comfort food appeals to you, then the film is a pleasant enough dish. Ultimately, 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 A seriously bad film with seriously warped logic by writer-director Kurt Wimmer at the screenplay level. A pleasant and engaging enough sit, but in trying to have the best of both worlds it ends up falling short as a whole. Its plot and animation offer daytime TV serviceability, but little more. A tired, unimaginative and derivative variation of that already-shallow genre. Human Nature, in short, isn't nearly as funny as it thinks it is; neither is it as smart. A film with a great premise but only a great premise. Instead of building to a laugh riot we are left with a handful of disparate funny moments of no real consequence. Kirshner and Monroe seem to be in a contest to see who can out-bad-act the other. (Kirshner wins, but it's close.) A lame romantic comedy about an unsympathetic character and someone who would not likely be so stupid as to get involved with her. What started out as a taut contest of wills between Bacon and Theron, deteriorates into a protracted and borderline silly chase sequence. (Sam's) self-flagellation is more depressing than entertaining. An ugly, pointless, stupid movie. Simply put, there should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn. The Master of Disguise represents Adam Sandler's latest attempt to dumb down the universe. This is an ungainly movie, ill-fitting, with its elbows sticking out where the knees should be. Too silly to take seriously. The 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. Everything's serious, poetic, earnest and -- sadly -- dull. I like it. No, I hate it. No, I love it...hell, I dunno. This mess of a movie is nothing short of a travesty of a transvestite comedy. It's clotted with heavy-handed symbolism, dime-store psychology and endless scenic shots that make 105 minutes seem twice as long. A fifty car pileup of cliches. It'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. What ultimately makes Windtalkers a disappointment is the superficial way it deals with its story. As 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. A 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. It's not hateful. It's simply stupid, irrelevant and deeply, truly, bottomlessly cynical. Possibly not since Grumpy Old Men have I heard a film so solidly connect with one demographic while striking out with another. The drama was so uninspiring that even a story immersed in love, lust, and sin couldn't keep my attention. A rather tired exercise in nostalgia. The misery of these people becomes just another voyeuristic spectacle, to be consumed and forgotten. Some Body often looks like an episode of the TV show Blind Date, only less technically proficient and without the pop-up comments. Bad 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. Predecessors The Mummy and The Mummy Returns stand as intellectual masterpieces next to The Scorpion King. A markedly inactive film, City is conversational bordering on confessional. While kids will probably eat the whole thing up, most adults will be way ahead of the plot. Despite an impressive roster of stars and direction from Kathryn Bigelow, The Weight of Water is oppressively heavy. We've liked Klein's other work but Rollerball left us cold. They were afraid to show this movie to reviewers before its opening, afraid of the bad reviews they thought they'd earn. They were right. It 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. Offers no new insight on the matter, nor do its characters exactly spring to life. Nohe has made a decent 'intro' documentary, but he feels like a spectator and not a participant. Apparently designed as a reverie about memory and regret, but the only thing you'll regret is remembering the experience of sitting through it. A 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. Guy gets girl, guy loses girl, audience falls asleep. Too 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. Stirs potentially enticing ingredients into an uneasy blend of Ghost and Close Encounters of the Third Kind. The weird thing about The Santa Clause 2, purportedly a children's movie, is that there is nothing in it to engage children emotionally. It's pretentious in a way that verges on the amateurish. Contains the humor, characterization, poignancy, and intelligence of a bad sitcom. It doesn't matter that the film is less than 90 minutes. It still feels like a prison stretch. Partly a schmaltzy, by-the-numbers romantic comedy, partly a shallow rumination on the emptiness of success -- and entirely soulless. Ong 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. The overall feel is not unlike watching a glorified episode of ``7th Heaven.'' Just a Kiss is a just a waste. ...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. Frankly, it's kind of insulting, both to men and women. And it's not that funny -- which is just generally insulting. As if Drop Dead Gorgeous wasn't enough, this equally derisive clunker is fixated on the spectacle of small-town competition. A wretched movie that reduces the Second World War to one man's quest to find an old flame. This 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. It's better than mid-range Steven Seagal, but not as sharp as Jet Li on rollerblades. There's a reason why halftime is only fifteen minutes long. The talk-heavy film plays like one of Robert Altman's lesser works. As happily glib and vicious as its characters. One of those films that started with a great premise and then just fell apart. No 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. (MacDowell) ventures beyond her abilities several times here and reveals how bad an actress she is. I 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. Talky, artificial and opaque...an interesting technical exercise, but a tedious picture. Kurys never shows why, of all the period's volatile romantic lives, Sand and Musset are worth particular attention. Almost 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. It's easy to love Robin Tunney -- she's pretty and she can act -- but it gets harder and harder to understand her choices. If 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. The new film of Anton Chekhov's The Cherry Orchard puts the 'ick' in 'classic.' Has 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. An unremarkable, modern action/comedy buddy movie whose only nod to nostalgia is in the title. Has all the right elements but completely fails to gel together. Writer-director Stephen Gaghan has made the near-fatal mistake of being what the English call 'too clever by half.' Seagal ran out of movies years ago, and this is just the proof. The 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. An awkwardly garish showcase that diverges from anything remotely probing or penetrating. The name says it all. Jackass is a vulgar and cheap-looking version of Candid Camera staged for the Marquis de Sade set. Children, 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. Pleasant but not more than recycled jock piffle. ...the kind of movie you see because the theater has air conditioning. With 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. Hip-hop prison thriller of stupefying absurdity. An uneven mix of dark satire and childhood awakening. aside 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' A perfectly acceptable, perfectly bland, competently acted but by no means scary horror movie. The 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. The 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. Like a soft drink that's been sitting open too long: it's too much syrup and not enough fizz. As 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. There are some fairly unsettling scenes, but they never succeed in really rattling the viewer. The Emperor's Club is one of those films that possesses all the good intentions in the world, but ... In 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.' A straight-ahead thriller that never rises above superficiality. Glizty but formulaic and silly...Cagney's 'top of the world' has been replaced by the bottom of the barrel. The re- enactments, however fascinating they may be as history, are too crude to serve the work especially well. Is anyone else out there getting tired of the whole slo-mo, double-pistoled, ballistic-pyrotechnic Hong Kong action aesthetic? Once 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. Serving Sara is little more than a mall movie designed to kill time. Too 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. A well-made but emotionally scattered film whose hero gives his heart only to the dog. The most repugnant adaptation of a classic text since Roland Joffé and Demi Moore's The Scarlet Letter. The isolated moments of creative insanity finally are lost in the thin soup of canned humor. As a movie, it never seems fresh and vital. It never plays as dramatic even when dramatic things happen to people. It labours as storytelling. The Adventures of Pluto Nash is a whole lot of nada. A really good premise is frittered away in middle-of-the-road blandness. Lawrence should stick to his day job. He's a better actor than a standup comedian. Despite the fact that this film wasn't as bad as I thought it was going to be, it's still not a good movie A well made indieflick in need of some trims and a more chemistry between its stars. I never thought I'd say this, but I'd much rather watch teens poking their genitals into fruit pies! A film neither bitter nor sweet, neither romantic nor comedic, neither warm nor fuzzy. Tiresomely derivative and hammily acted. We 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. The plot grows thin soon, and you find yourself praying for a quick resolution. Too bad Maggio couldn't come up with a better script. Much of the cast is stiff or just plain bad. Rice 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. At best, Cletis Tout might inspire a trip to the video store -- in search of a better movie experience. Witless, pointless, tasteless and idiotic. Not really a thriller so much as a movie for teens to laugh, groan and hiss at. As plain and pedestrian as catsup-- An improvement on the feeble examples of big-screen Poke-mania that have preceded it. I 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. Your stomach for Heaven depends largely on your appetite for canned corn. A picture as erratic as its central character. Whatever 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 The package in which this fascinating -- and timely -- content comes wrapped is disappointingly generic. Guys 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. Wildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists: Totally Past His Prime. Just another combination of bad animation and mindless violence...lacking the slightest bit of wit or charm. All 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. Much like its easily dismissive take on the upscale lifestyle, there isn't much there here. The film ultimately offers nothing more than people in an urban jungle needing other people to survive... For 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. This 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. A bit too eager to please. You'd be hard put to find a movie character more unattractive or odorous (than Leon). Kapur's contradictory feelings about his material result in a movie that works against itself. ``the road paved with good intentions leads to the video store'' Animated drivel meant to enhance the self-image of drooling idiots. One scene after another in this supposedly funny movie falls to the floor with a sickening thud. 'The Château is never quite able to overcome the cultural moat surrounding its ludicrous and contrived plot.' Meyjes focuses too much on Max when he should be filling the screen with this tortured, dull artist and monster-in-the- making. Jacobi, 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. Crudup's screen presence is the one thing that holds interest in the midst of a mushy, existential exploration of why men leave their families. There 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. Despite 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. An incredibly narrow in-joke targeted to the tiniest segment of an already obscure demographic. The only thing I laughed at were the people who paid to see it. All of the elements are in place for a great film noir, but director George Hickenlooper's approach to the material is too upbeat. The hackneyed story about an affluent damsel in distress who decides to fight her bully of a husband is simply too overdone. the 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. Possibly the most irresponsible picture ever released by a major film studio. The film's overall mood and focus is interesting but constantly unfulfilling. ...a cheap, ludicrous attempt at serious horror. Those of you who are not an eighth grade girl will most likely doze off during this one. Befuddled in its characterizations as it begins to seem as long as the two year affair which is its subject From beginning to end, this overheated melodrama plays like a student film. The movie would seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine. It's just not very smart. Like 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. Imagine (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. In trying to be daring and original, it comes off as only occasionally satirical and never fresh. 90 punitive minutes of eardrum-dicing gunplay, screeching-metal smashups, and flaccid odd-couple sniping. Sadly, 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. Never capitalizes on this concept and opts for the breezy and amateurish feel of an after school special on the subject of tolerance. After 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. This wretchedly unfunny wannabe comedy is inane and awful - no doubt, it's the worst movie I've seen this summer. It's drab. It's uninteresting. It squanders Chan's uniqueness; it could even be said to squander Jennifer Love Hewitt! The movie keeps coming back to the achingly unfunny Phonce and his several silly subplots. This tale has been told and retold; the races and rackets change, but the song remains the same. A surprisingly flat retread, hobbled by half-baked setups and sluggish pacing. Forget 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. A 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. New ways of describing badness need to be invented to describe exactly how bad it is. Lots of effort and intelligence are on display but in execution it is all awkward, static, and lifeless rumblings. When 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. I suspect that there are more interesting ways of dealing with the subject. The 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. An unintentional parody of every teen movie made in the last five years. Only 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. For all its violence, the movie is remarkably dull with only Caine making much of an impression. No matter how firmly director John Stainton has his tongue in his cheek, the fact remains that a wacky concept does not a movie make. A sub-formulaic slap in the face to seasonal cheer. The action is reasonably well-done ... yet story, character and comedy bits are too ragged to ever fit smoothly together. Several 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. Hill looks to be going through the motions, beginning with the pale script. Howard conjures the past via surrealist flourishes so overwrought you'd swear he just stepped out of a Buñuel retrospective. The best thing that can be said of the picture is that it does have a few cute moments. It's not a bad premise, just a bad movie. An already thin story boils down to surviving invaders seeking an existent anti-virus. If only there were one for this kind of movie. By the time the surprise ending is revealed, interest cannot be revived. The 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. A peculiar misfire that even Tunney can't save. Watching Queen of the Damned is like reading a research paper, with special effects tossed in. I can't remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops. Too much of Nemesis has a tired, talky feel. I felt trapped and with no obvious escape for the entire 100 minutes. When Mr. Hundert tells us in his narration that 'this is a story without surprises,' we nod in agreement. Leaves us wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion. It is that rare combination of bad writing, bad direction and bad acting -- the trifecta of badness. Each scene wreaks of routine; the film never manages to generate a single threat of suspense. A soulless jumble of ineptly assembled cliches and pabulum that plays like a 95-minute commercial for NBA properties. Borstal Boy represents the worst kind of filmmaking, the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy. The 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. works on the whodunit level as its larger themes get lost in the murk of its own making Crush could be the worst film a man has made about women since Valley of the Dolls. 4Ever has the same sledgehammer appeal as Pokemon videos, but it breathes more on the big screen and induces headaches more slowly. Feels 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. Trailer 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. Viewers of Barney's crushingly self-indulgent spectacle will see nothing in it to match the ordeal of sitting through it. ...its stupidities wind up sticking in one's mind a lot more than the cool bits. Sayles ... once again strands his superb performers in the same old story. The Piano Teacher, like its title character, is repellantly out of control. I 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. The filmmakers lack the nerve ... to fully exploit the script's potential for sick humor. The film wasn't preachy, but it was feminism by the book. ... the same tired old gags, modernized for the extreme sports generation. There's already been too many of these films... Several of Steven Soderbergh's earlier films were hailed as the works of an artist. Sadly, Full Frontal plays like the work of a dilettante. Clockstoppers is one of those crazy, mixed-up films that doesn't know what it wants to be when it grows up. Although bright, well-acted and thought-provoking, Tuck Everlasting suffers from a laconic pace and a lack of traditional action. 'The War of the Roses,' trailer-trash style. Entertaining but like shooting fish in a barrel. Supposedly, Pokemon can't be killed, but Pokemon 4Ever practically assures that the pocket monster movie franchise is nearly ready to keel over. White hasn't developed characters so much as caricatures, one-dimensional buffoons that get him a few laughs but nothing else. When you resurrect a dead man, Hard Copy should come a-knocking, no? Cattaneo should have followed the runaway success of his first film, The Full Monty, with something different. The 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. This 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? The 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. Mr. Deeds is not really a film as much as it is a loose collection of not-so-funny gags, scattered moments of lazy humor. How this one escaped the Lifetime network I'll never know. Couldn't someone take Rob Schneider and have him switch bodies with a funny person? One 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. For all its brilliant touches, Dragon loses its fire midway, nearly flickering out by its perfunctory conclusion. I have to admit that I am baffled by Jason X. A mean-spirited film made by someone who surely read The Catcher in the Rye but clearly suffers from dyslexia Instead 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. This is a film living far too much in its own head. The umpteenth summer skinny dip in Jerry Bruckheimer's putrid pond of retread action twaddle. National Lampoon's Van Wilder may aim to be the next Animal House, but it more closely resembles this year's version of Tomcats. The film thrusts the inchoate but already eldritch Christian Right propaganda machine into national media circles. Dogtown is hollow, self-indulgent, and - worst of all - boring. A movie so bad that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls. More of a career curio than a major work. It'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. Cox is far more concerned with aggrandizing madness, not the man, and the results might drive you crazy. To 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. As 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. A frustrating 'tweener' -- too slick, contrived and exploitative for the art houses and too cynical, small and decadent for the malls. What's surprising about this traditional thriller, moderately successful but not completely satisfying, is exactly how genteel and unsurprising the execution turns out to be. Drowning's too good for this sucker. An instantly forgettable snow-and-stuntwork extravaganza that likely will be upstaged by an avalanche of more appealing holiday-season product. Frankly, 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... Love Liza is a festival film that would have been better off staying on the festival circuit. There are things to like about Murder By Numbers -- but, in the end, the disparate elements don't gel. ...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. Quite 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. My precious new Star Wars movie is a lumbering, wheezy drag... The innocence of holiday cheer ain't what it used to be. Too 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. Horrid little propaganda film with fascinating connections not only to the Serbs themselves but also to a network of American right-wing extremists. Should 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. It 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. Consider 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. A 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. Sheridan had a wonderful account to work from, but, curiously, he waters it down, turning grit and vulnerability into light reading. Heavy with flabby rolls of typical Toback machinations. It is very difficult to care about the character, and that is the central flaw of the film. Snow Dogs finds its humour in a black man getting humiliated by a pack of dogs who are smarter than him Whole stretches of the film may be incomprehensible to moviegoers not already clad in basic black. Reggio and Glass so rhapsodize cynicism, with repetition and languorous slo-mo sequences, that Glass's dirgelike score becomes a fang-baring lullaby. Ends up offering nothing more than the latest Schwarzenegger or Stallone flick would. The 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. Charlize CHASES Kevin with a GUN. Courtney CHASES Stuart with a CELL PHONE. The sound of GUNFIRE and cell phones RINGING. If The Tuxedo actually were a suit, it would fit Chan like a $99 bargain-basement special. Parents beware; this is downright movie penance. ...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. Has 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. A pathetically inane and unimaginative cross between XXX and Vertical Limit. Impeccably filmed, sexually charged, but ultimately lacking in substance, not to mention dragged down by a leaden closing act. Feels at times like a giant commercial for Universal Studios, where much of the action takes place. While the mystery unravels, the characters respond by hitting on each other. Britney Spears' phoniness is nothing compared to the movie's contrived, lame screenplay and listless direction. Every sequel you skip will be two hours gained. Consider this review life-affirming. If the movie were all comedy, it might work better. But it has an ambition to say something about its subjects, but not a willingness. The movie, while beautiful, feels labored, with a hint of the writing exercise about it. Twenty-three movies into a mostly magnificent directorial career, Clint Eastwood's efficiently minimalist style finally has failed him. Big time. This 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. The film has a childlike quality about it. But the feelings evoked in the film are lukewarm and quick to pass. The most opaque, self-indulgent and just plain goofy an excuse for a movie as you can imagine. It's not a film to be taken literally on any level, but its focus always appears questionable. Big Fat Liar is little more than Home Alone raised to a new, self-deprecating level. The movie is gorgeously made, but it is also somewhat shallow and art-conscious. The only time 8 Crazy Nights comes close to hitting a comedic or satirical target is during the offbeat musical numbers. Loses its sense of humor in a vat of failed jokes, twitchy acting, and general boorishness. There's a delightfully quirky movie to be made from curling, but Brooms isn't it. The story suffers a severe case of oversimplification, superficiality and silliness. Chamber 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. Too clever by about nine-tenths. Has 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. Bears about as much resemblance to the experiences of most battered women as Spider-Man does to the experiences of most teenagers. Toward the end Sum of All Fears morphs into a mundane '70s disaster flick. Director Carl Franklin, so crisp and economical in One False Move, bogs down in genre cliches here. Mendes 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. This thing is just garbage. As crimes go, writer-director Michael Kalesniko's How to Kill Your Neighbor's Dog is slight but unendurable. There must be an audience that enjoys the Friday series, but I wouldn't be interested in knowing any of them personally. A bold (and lovely) experiment that will almost certainly bore most audiences into their own brightly colored dreams. An uplifting, largely bogus story. An empty exercise, a florid but ultimately vapid crime melodrama with lots of surface flash but little emotional resonance. If 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. My own minority report is that it stinks. Trying 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. The script is high on squaddie banter, low on shocks. ...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. While Solondz tries and tries hard, Storytelling fails to provide much more insight than the inside column of a torn book jacket. With 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. (Davis) wants to cause his audience an epiphany, yet he refuses to give us real situations and characters. Without a fresh infusion of creativity, 4Ever is neither a promise nor a threat so much as wishful thinking. ...unlike (Scorsese's Mean Streets), Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot. Being unique doesn't necessarily equate to being good, no matter how admirably the filmmakers have gone for broke. A few hours after you've seen it, you forget you've been to the movies. waydowntown 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. Yes, 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. Shadyac, who belongs with the damned for perpetrating Patch Adams, trots out every ghost trick from The Sixth Sense to The Mothman Prophecies. The photographer's show-don't-tell stance is admirable, but it can make him a problematic documentary subject. It 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. I'd be hard pressed to think of a film more cloyingly sappy than Evelyn this year. Nothing more than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises. meanders between its powerful moments. What 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. A backhanded ode to female camaraderie penned by a man who has little clue about either the nature of women or of friendship. Pure of intention and passably diverting, His Secret Life is light, innocuous and unremarkable. ...delivers few moments of inspiration amid the bland animation and simplistic story. Take away the controversy, and it's not much more watchable than a Mexican soap opera. It's got the brawn, but not the brains. Mindless and boring martial arts and gunplay with too little excitement and zero compelling storyline. A lot of talent is wasted in this crass, low-wattage endeavor. To 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. (T)oo many of these gross out scenes... About one in three gags in White's intermittently wise script hits its mark; the rest are padding unashamedly appropriated from the teen-exploitation playbook. Little is done to support the premise other than fling gags at it to see which ones shtick. Reno 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. If Jews were Catholics, this would be Catechism One of those films that seems tailor made to air on pay cable to offer some modest amusements when one has nothing else to watch. The big ending surprise almost saves the movie. It's too bad that the rest isn't more compelling. Charming, if overly complicated... Schneider's mugging is relentless and his constant need to suddenly transpose himself into another character undermines the story's continuity and progression. All 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. It's probably not easy to make such a worthless film ... Hope 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. Has no reason to exist, other than to employ Hollywood kids and people who owe favors to their famous parents. For 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. Constantly slips from the grasp of its maker. Smothered by its own solemnity. '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.' Might be one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people. After 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. Not one moment in the enterprise didn't make me want to lie down in a dark room with something cool to my brow. In the era of The Sopranos, it feels painfully redundant and inauthentic. The overall vibe is druggy and self-indulgent, like a spring-break orgy for pretentious arts majors. Breen's script is sketchy with actorish notations on the margin of acting. There'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. If only Merchant paid more attention the story. At 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. ...too contrived to be as naturally charming as it needs to be. A simpler, leaner treatment would have been preferable; after all, being about nothing is sometimes funnier than being about something. The characters are based on stock clichés, and the attempt to complicate the story only defies credibility. Everything about it from the bland songs to the colorful but flat drawings is completely serviceable and quickly forgettable. Not the Great American Comedy, but if you liked the previous movies in the series, you'll have a good time with this one too. A domestic melodrama with weak dialogue and biopic cliches. Mr. Goyer's loose, unaccountable direction is technically sophisticated in the worst way. The movie is so thoughtlessly assembled. Benigni presents himself as the boy puppet Pinocchio, complete with receding hairline, weathered countenance and American Breckin Meyer's ridiculously inappropriate Valley Boy voice. plays like some corny television production from a bygone era The end result is like cold porridge with only the odd enjoyably chewy lump. For all the charm of Kevin Kline and a story that puts old-fashioned values under the microscope, there's something creepy about this movie. I 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. Producer 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 Naipaul fans may be disappointed. Those who are not acquainted with the author's work, on the other hand, may fall fast asleep. Hoffman 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. If 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. Full Frontal had no effect and elicited no sympathies for any of the characters. By that measure, it is a failure. A baffling mixed platter of gritty realism and magic realism with a hard-to-swallow premise. An affable but undernourished romantic comedy that fails to match the freshness of the actress-producer and writer's previous collaboration, Miss Congeniality. Sometimes this modest little number clicks, and sometimes it doesn't. Like a pack of dynamite sticks, built for controversy. The film is explosive, but a few of those sticks are wet. Has its charming quirks and its dull spots. An admitted egomaniac, Evans is no Hollywood villain, and yet this grating showcase almost makes you wish he'd gone the way of Don Simpson. The 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. Everyone's to blame here. You 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. Less a study in madness or love than a study in schoolgirl obsession. Rice never clearly defines his characters or gives us a reason to care about them. It'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. A slight and obvious effort, even for one whose target demographic is likely still in the single digits, age-wise. Sex 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? You see Robin Williams and psycho killer, and you think, hmmmmm. You see the movie and you think, zzzzzzzzz. Downright 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. The movie slides downhill as soon as macho action conventions assert themselves. Formulaic to the 51st power, more like. Draggin' about dragons Howard 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. A respectable but uninspired thriller that's intelligent and considered in its details, but ultimately weak in its impact. Jones helps breathe some life into the insubstantial plot, but even he is overwhelmed by predictability. The movie just has too much on its plate to really stay afloat for its just under ninety minute running time. Comes off more like a misdemeanor, a flat, unconvincing drama that never catches fire. Offers absolutely nothing I hadn't already seen. ``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. You 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. Complex, sinuously plotted and, somehow, off-puttingly cold. First-time writer-director Dylan Kidd also has a good ear for dialogue, and the characters sound like real people. ...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. Goldmember 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. Could as easily have been called 'Under Siege 3: In Alcatraz'...a cinematic corpse that never springs to life. In comparison to his earlier films it seems a disappointingly thin slice of lower-class London life; despite the title...amounts to surprisingly little. Lame Sweet Home leaves no Southern stereotype unturned. Slow, dry, poorly cast, but beautifully shot. The jokes are sophomoric, stereotypes are sprinkled everywhere and the acting ranges from bad to bodacious. Will 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. In its chicken heart, Crush goes to absurd lengths to duck the very issues it raises. This long and relentlessly saccharine film is a clear case of preaching to the converted. The film is flat. The movie is a lumbering load of hokum but ... it's at least watchable. It'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. An unbelievably stupid film, though occasionally fun enough to make you forget its absurdity. The first Fatal Attraction was vile enough. Do we really need the Tiger Beat version? This Bond film goes off the beaten path, not necessarily for the better. The problem is that the movie has no idea of it is serious or not. When the fire burns out, we've only come face-to-face with a couple dragons and that's where the film ultimately fails. It would work much better as a one-hour TV documentary. The elements were all there but lack of a pyschological center knocks it flat. Anemic chronicle of money grubbing New Yorkers and their serial loveless hook ups. Simply doesn't have sufficient heft to justify its two-hour running time. An unsuccessful attempt at a movie of ideas. Queen 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. This toothless Dog, already on cable, loses all bite on the big screen. It 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. Not 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. It's so crammed with scenes and vistas and pretty moments that it's left a few crucial things out, like character development and coherence. Serving Sara should be served an eviction notice at every theater stuck with it. Director 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. A loud, low-budget and tired formula film that arrives cloaked in the euphemism 'urban drama.' The 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. A pathetic exploitation film that tries to seem sincere, and just seems worse for the effort. At some point, all this visual trickery stops being clever and devolves into flashy, vaguely silly overkill. Despite some charm and heart, this quirky soccer import is forgettable Meyjes's movie, like Max Rothman's future, does not work. What's needed so badly but what is virtually absent here is either a saving dark humor or the feel of poetic tragedy. Schneidermeister... Makin' a fool of himself... Losin' his fan base... An ambitious, serious film that manages to do virtually everything wrong; sitting through it is something akin to an act of cinematic penance. Not once does it come close to being exciting. A Frankenstein mishmash that careens from dark satire to cartoonish slapstick, Bartleby performs neither one very well. It plays like a big-budget, after-school special with a generous cast, who at times lift the material from its well-meaning clunkiness. There'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. One of those strained caper movies that's hardly any fun to watch and begins to vaporize from your memory minutes after it ends. Needed a little less bling-bling and a lot more romance. The 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. It's hard to believe these jokers are supposed to have pulled off four similar kidnappings before. I'm not exactly sure what this movie thinks it is about. Cal is an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes. So brisk is Wang's pacing that none of the excellent cast are given air to breathe. The bottom line, at least in my opinion, is Imposter makes a better short story than it does a film. Some elements of it really blow the big one, but other parts are decent. It is just too bad the film's story does not live up to its style. Unless you're a fanatic, the best advice is: 'Scooby' don't. A cautionary tale about the folly of superficiality that is itself endlessly superficial. For 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. Shreve'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. Contains 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. Nothing 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. This 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. The movie is undone by a filmmaking methodology that's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads. A jumbled fantasy comedy that did not figure out a coherent game plan at scripting, shooting or post-production stages. A 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. Personal Velocity ought to be exploring these women's inner lives, but it never moves beyond their surfaces. We hate (Madonna) within the film's first five minutes, and she lacks the skill or presence to regain any ground. Sounding 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. Two big things are missing -- anything approaching a visceral kick, and anything approaching even a vague reason to sit through it all. A fascinating but choppy documentary. Scarcely worth a mention apart from reporting on the number of tumbleweeds blowing through the empty theatres graced with its company. The 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. Too stagey, talky -- and long -- for its own good. Apparently reassembled from the cutting-room floor of any given daytime soap. The sinister inspiration that fuelled DeVito's early work is confused in Death to Smoochy into something both ugly and mindless. Despite 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. Director Boris von Sychowski instead opts for a routine slasher film that was probably more fun to make than it is to sit through. ...little more than a well-acted television melodrama shot for the big screen. Never comes together as a coherent whole. An 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. First, for a movie that tries to be smart, it's kinda dumb. And second, what's with all the shooting? Don't even bother to rent this on video. There 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. This is the kind of movie that gets a quick release before real contenders arrive in September. Not 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. Plays like one long, meandering sketch inspired by the works of John Waters and Todd Solondz, rather than a fully developed story. The 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. A mawkish self-parody that plays like some weird Masterpiece Theater sketch with neither a point of view nor a compelling reason for being. An average B-movie with no aspirations to be anything more. Bartlett'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. Gibney and Jarecki just want to string the bastard up. The plot is plastered with one Hollywood cliche after another, most of which involve precocious kids getting the better of obnoxious adults. Less 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. A film that suffers because of its many excesses. Too bland and fustily tasteful to be truly prurient. In 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. Depicts the sorriest and most sordid of human behavior on the screen, then laughs at how clever it's being. Nijinsky says, 'I know how to suffer' and if you see this film you'll know too. '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 The 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. ...the story simply putters along looking for astute observations and coming up blank. Instead 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? It just didn't mean much to me and played too skewed to ever get a hold on (or be entertained by). This action-thriller/dark comedy is one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage. MIB 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. No amount of arty theorizing -- the special effects are 'German-Expressionist,' according to the press notes -- can render it anything but laughable. Blue Crush follows the formula, but throws in too many conflicts to keep the story compelling. Boyd'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. There's not a spark of new inspiration in it, just more of the same, done with noticeably less energy and imagination. Jackson shamefully strolls through this mess with a smug grin, inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder. A moving picture that does not move. Ruh-roh! Romething's really wrong with this ricture! Its salient points are simultaneously buried, drowned and smothered in the excesses of writer-director Roger Avary. I'm not sure these words have ever been together in the same sentence: This erotic cannibal movie is boring. 'God help us, but Capra and Cooper are rolling over in their graves.' ...an hour-and-a-half of inoffensive, unmemorable filler. Is it a comedy? A drama? A romance? A cartoon? Ze movie starts out so funny, then she is nothing. Did 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. It's a bad sign in a thriller when you instantly know whodunit. Has a customarily jovial air but a deficit of flim-flam inventiveness. Eight Legged Freaks won't join the pantheon of great monster/science fiction flicks that we have come to love... It gets the details of its time frame right but it completely misses its emotions. Who, exactly, is fighting whom here? Ah, yes, that would be me: fighting off the urge to doze. A 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. Contrived, 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. Starts 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. The film lapses too often into sugary sentiment and withholds delivery on the pell-mell pyrotechnics its punchy style promises. The 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. This movie is so bad, that it's almost worth seeing because it's so bad. A crisply made movie that is no more than mildly amusing. This movie feel more like a non-stop cry for attention, than an attempt at any kind of satisfying entertainment. Overall, it's a pretty mediocre family film. Love may have been in the air onscreen, but I certainly wasn't feeling any of it. In addition to the overcooked, ham-fisted direction, which has all the actors reaching for the back row, the dialogue sounds like horrible poetry. The very definition of what critics have come to term an ``ambitious failure.'' It's as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese. The 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. Worthy of the gong. While certainly more naturalistic than its Australian counterpart, Amari's film falls short in building the drama of Lilia's journey. I found the movie as divided against itself as the dysfunctional family it portrays. The soul-searching deliberateness of the film, although leavened nicely with dry absurdist wit, eventually becomes too heavy for the plot. The movie doesn't add anything fresh to the myth. As inept as big-screen remakes of The Avengers and The Wild Wild West. Comes across as a relic from a bygone era, and its convolutions...feel silly rather than plausible. Moves in such odd plot directions and descends into such message-mongering moralism that its good qualities are obscured. It's a very sincere work, but it would be better as a diary or documentary. Once 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. Oops, she's really done it this time. That chirpy songbird Britney Spears has popped up with more mindless drivel. It's a loathsome movie, it really is and it makes absolutely no sense. A chiller resolutely without chills. For 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. The director mostly plays it straight, turning Leys' fable into a listless climb down the social ladder. ``Bad'' is the operative word for ``Bad Company,'' and I don't mean that in a good way. Though Frida is easier to swallow than Julie Taymor's preposterous Titus, the eye candy here lacks considerable brio. Drumline is -- the mere suggestion, albeit a visually compelling one, of a fully realized story. The whole movie is simply a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well. The 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. Billy Crystal and Robert De Niro sleepwalk through vulgarities in a sequel you can refuse. It's loud and boring; watching it is like being trapped at a bad rock concert. Merely (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. If you want a movie time trip, the 1960 version is a far smoother ride. Traffics in the kind of prechewed racial clichés that have already been through the corporate stand-up-comedy mill. The story is -- forgive me -- a little thin, and the filmmaking clumsy and rushed. ...grows decidedly flimsier with its many out-sized, out of character and logically porous action set pieces. I 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. Aggressive self-glorification and a manipulative whitewash. Stay for the credits and see a devastating comic impersonation by Dustin Hoffman that is revelatory. None of the characters or plot-lines are fleshed-out enough to build any interest. As social exposé, Skins has its heart in the right place, but that's not much to hang a soap opera on. The 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. There'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. The only way to tolerate this insipid, brutally clueless film might be with a large dose of painkillers. This one is certainly well-meaning, but it's also simple-minded and contrived. Coppola has made a film of intoxicating atmosphere and little else. Bad and baffling from the get-go. A series of immaculately composed shots of Patch Adams quietly freaking out does not make for much of a movie. At a time when we've learned the hard way just how complex international terrorism is, Collateral Damage paints an absurdly simplistic picture. The impulses that produced this project ... are commendable, but the results are uneven. A well-acted movie that simply doesn't gel. Like a can of 2-day old Coke. You can taste it, but there's no fizz. There's no excuse for following up a delightful, well-crafted family film with a computer-generated cold fish. Both the crime story and the love story are unusual. But they don't fit well together and neither is well told. It's both sitcomishly predictable and cloying in its attempts to be poignant. Other than a mildly engaging central romance, Hospital is sickly entertainment at best and mind-destroying cinematic pollution at worst. Jaglom offers the none-too-original premise that everyone involved with moviemaking is a con artist and a liar. Outside of Burger's desire to make some kind of film, it's really unclear why this project was undertaken Was 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? A fragile framework upon which to hang broad, mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming. By 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. Since Lee is a sentimentalist, the film is more worshipful than your random E! True Hollywood Story. Wes 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.' Sunshine State surveys the landscape and assesses the issues with a clear passion for sociology. But the cinematography is cloudy, the picture making becalmed. It's one long bore. It gets old quickly. Watch Barbershop again if you're in need of a Cube fix--this isn't worth sitting through. It's leaden and predictable, and laughs are lacking. ...a cinematic disaster so inadvertently sidesplitting it's worth the price of admission for the ridicule factor alone. Skip this dreck, rent Animal House and go back to the source. The 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. We just don't really care too much about this love story. In that setting, their struggle is simply too ludicrous and borderline insulting. The Transporter bombards the viewer with so many explosions and side snap kicks that it ends up being surprisingly dull. Uzumaki's interesting social parallel and defiant aesthetic seems a prostituted muse... 'Men in Black II creates a new threat for the MIB, but recycles the same premise. Large 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. Feels familiar and tired. A retread of material already thoroughly plumbed by Martin Scorsese. Instead of making his own style, director Marcus Adams just copies from various sources – good sources, bad mixture Criminal 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. A bore that tends to hammer home every one of its points. A story which fails to rise above its disgusting source material. It's fitting that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland. Starts as an intense political and psychological thriller but is sabotaged by ticking time bombs and other Hollywood-action cliches. Completely creatively stillborn and executed in a manner that I'm not sure could be a single iota worse... a soulless hunk of exploitative garbage. An 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. Horrible. The disjointed mess flows as naturally as Jolie's hideous yellow 'do. Bolstered 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. An authentically vague, but ultimately purposeless, study in total pandemonium. Makes a joke out of car chases for an hour and then gives us half an hour of car chases. As 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. The 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. It's too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience. 'Synthetic' is the best description of this well-meaning, beautifully produced film that sacrifices its promise for a high-powered star pedigree. It concentrates far too much on the awkward interplay and utter lack of chemistry between Chan and Hewitt. Impostor 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. Judd's characters ought to pick up the durable best seller Smart Women, Foolish Choices for advice. The script has less spice than a rat burger and The Rock's fighting skills are more in line with Steven Seagal. This ill-conceived and expensive project winds up looking like a bunch of talented thesps slumming it. ... there's a choppy, surface-effect feeling to the whole enterprise. Doesn't get the job done, running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez. A particularly joyless, and exceedingly dull, period coming-of-age tale. It's impossible to indulge the fanciful daydreams of Janice Beard (Eileen Walsh) when her real-life persona is so charmless and vacant. ...it wasn't the subject matter that ultimately defeated the film...It was the unfulfilling, incongruous, ``wait a second, did I miss something?'' ending. This is a movie where the most notable observation is how long you've been sitting still. Poor editing, bad bluescreen, and ultra-cheesy dialogue highlight the radical action. It's super- violent, super-serious and super-stupid. So earnest and well-meaning, and so stocked with talent, that you almost forget the sheer, ponderous awfulness of its script. Just a string of stale gags, with no good inside dope, and no particular bite. It's Splash without the jokes. The 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. Shallow, noisy and pretentious. Morrissette has performed a difficult task indeed - he's taken one of the world's most fascinating stories and made it dull, lifeless, and irritating. Granddad of Le Nouvelle Vague, Jean-Luc Godard continues to baffle the faithful with his games of hide-and-seek. This loud and thoroughly obnoxious comedy about a pair of squabbling working-class spouses is a deeply unpleasant experience. It's better than The Phantom Menace. But unless you're an absolute raving Star Wars junkie, it isn't much fun. Philosophically, intellectually and logistically a mess. A standard police-oriented drama that, were it not for De Niro's participation, would have likely wound up a TNT Original. Coupling disgracefully written dialogue with flailing bodily movements that substitute for acting, Circuit is the awkwardly paced soap opera-ish story. Hollywood Ending just isn't very funny. Though clearly well-intentioned, this cross-cultural soap opera is painfully formulaic and stilted. A technical triumph and an extraordinary bore. I 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. Two hours of junk. Ends 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. Self-congratulatory, misguided, and ill-informed, if nonetheless compulsively watchable. A clumsily manufactured exploitation flick, a style-free exercise in manipulation and mayhem. The whole affair, true story or not, feels incredibly hokey... (it) comes off like a Hallmark commercial. What's missing is what we call the 'wow' factor. The 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. ... 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 ... The young stars are too cute; the story and ensuing complications are too manipulative; the message is too blatant; the resolutions are too convenient. Normally, 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. I highly recommend Irwin, but not in the way this film showcases him. It'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. This 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. Malone 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. Though 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. A Blair Witch- style adventure that plays like a bad soap opera, with passable performances from everyone in the cast. Diaz wears out her welcome in her most charmless performance It is too bad that this likable movie isn't more accomplished. The actors try hard but come off too amateurish and awkward. The plot has a number of holes, and at times it's simply baffling. An ill-conceived jumble that's not scary, not smart and not engaging. Brainless, 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. Gets bogged down by an overly sillified plot and stop-and-start pacing. ``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. Like 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. Its generic villains lack any intrigue (other than their funny accents) and the action scenes are poorly delivered. Dripping with cliche and bypassing no opportunity to trivialize the material. Hard-core slasher aficionados will find things to like ... but overall the Halloween series has lost its edge. Stiff and schmaltzy and clumsily directed. The story the movie tells is of Brian De Palma's addiction to the junk-calorie suspense tropes that have all but ruined his career. Too many improbabilities and rose-colored situations temper what could've been an impacting film. Generic slasher-movie nonsense, but it's not without style. With tiny little jokes and nary an original idea, this sappy ethnic sleeper proves that not only blockbusters pollute the summer movie pool. It sticks rigidly to the paradigm, rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived, well-worn situations. Ever see one of those comedies that just seem like a bad idea from frame one? Once 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. The 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. It would be great to see this turd squashed under a truck, preferably a semi. In the end, all you can do is admire the ensemble players and wonder what the point of it is. For most movies, 84 minutes is short, but this one feels like a life sentence. While 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. Shatner is probably the funniest person in the film, which gives you an idea just how bad it was. Tries so hard to be quirky and funny that the strain is all too evident. As immaculate as Stuart Little 2 is, it could be a lot better if it were, well, more adventurous. Simply a re-hash of the other seven films. With jump cuts, fast editing and lots of pyrotechnics, Yu clearly hopes to camouflage how bad his movie is. He fails. I found myself more appreciative of what the director was trying to do than of what he had actually done. A very depressing movie of many missed opportunities. Goes on and on to the point of nausea. By turns numbingly dull-witted and disquietingly creepy. Boy, has this franchise ever run out of gas. One problem with the movie, directed by Joel Schumacher, is that it jams too many prefabricated story elements into the running time. The comedy is nonexistent. ...a bland, pretentious mess. It's a pedestrian, flat drama that screams out 'amateur' in almost every frame. A bland animated sequel that hardly seems worth the effort. It's not just the vampires that are damned in Queen of the Damned -- the viewers will feel they suffer the same fate. If religious films aren't your bailiwick, stay away. Otherwise, this could be a passable date film. This 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. The pace and the visuals are so hyped up that a curious sense of menace informs everything. Stuffy, full of itself, morally ambiguous and nothing to shout about. It 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. Don't let the subtitles fool you; the movie only proves that Hollywood no longer has a monopoly on mindless action. Chai's structure and pacing are disconcertingly slack. To be oblivious to the existence of this film would be very sweet indeed. The director, with his fake backdrops and stately pacing, never settles on a consistent tone. One just waits grimly for the next shock without developing much attachment to the characters. Instead of panoramic sweep, Kapur gives us episodic choppiness, undermining the story's emotional thrust. The 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. This dubious product of a college-spawned (Colgate U.) comedy ensemble known as Broken Lizard plays like a mix of Cheech and Chong and CHiPs. The movie doesn't think much of its characters, its protagonist, or of us. Super 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. ...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. Made me feel uneasy, even queasy, because (Solondz's) cool compassion is on the border of bemused contempt. As a kind of colorful, dramatized PBS program, Frida gets the job done. But, for that, why not watch a documentary? With minimal imagination, you could restage the whole thing in your bathtub. Nights 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. Although...visually striking and slickly staged, it's also cold,grey, antiseptic and emotionally desiccated. You can see where Big Bad Love is trying to go, but it never quite gets there. Friday After Next is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans. It's not as awful as some of the recent Hollywood trip tripe ... but it's far from a groundbreaking endeavor. The only thing ``swept away'' is the one hour and thirty-three minutes spent watching this waste of time. One-sided documentary offers simplistic explanations to a very complex situation. ... Stylistically, the movie is a disaster. The corpse count ultimately overrides what little we learn along the way about vicarious redemption. As violent, profane and exploitative as the most offensive action flick you've ever seen. Egoyan'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. Life or Something Like It has its share of high points, but it misses too many opportunities. This is a truly, truly bad movie. Despite 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 Believability wasn't one of the film's virtues. Sewer rats could watch this movie and be so skeeved out that they'd need a shower. The Santa Clause 2's plot may sound like it was co-written by Mattel executives and lobbyists for the tinsel industry. His best film remains his shortest, The Hole, which makes many of the points that this film does but feels less repetitive. Just another disjointed, fairly predictable psychological thriller. ...stumbles over every cheap trick in the book trying to make the outrage come even easier. Even the hastily and amateurishly drawn animation cannot engage. Kung 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. Busy urban comedy is clearly not Zhang's forte, his directorial touch is neither light nor magical enough to bring off this kind of whimsy. Not completely loveable -- but what underdog movie since The Bad News Bears has been? -- but certainly hard to hate. A movie that can't get sufficient distance from Leroy's delusions to escape their maudlin influence. It's Young Guns meets Goodfellas in this easily skippable hayseeds-vs.-greaseballs mob action-comedy. Louiso 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. The movie straddles the fence between escapism and social commentary, and on both sides it falls short. The film is old-fashioned, occasionally charming and as subtle as boldface. Can'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. In The New Guy, even the bull gets recycled. Largely, this is a movie that also does it by the numbers. On top of a foundering performance, (Madonna's) denied her own athleticism by lighting that emphasizes every line and sag. This is the first full scale WWII flick from Hong Kong's John Woo. He's not good with people. Patchy combination of soap opera, low-tech magic realism and, at times, ploddingly sociological commentary. (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. So boring that even its target audience talked all the way through it. One 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. Hollywood 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. ... generically, forgettably pleasant from start to finish. It's just hard to believe that a life like this can sound so dull. When not wallowing in its characters' frustrations, the movie is busy contriving false, sitcom-worthy solutions to their problems. An overstylized, puréed mélange of sex, psychology, drugs and philosophy. Sometimes entertaining, sometimes indulgent -- but never less than pure wankery. 'Lovely and Amazing,' unhappily, is neither...excessively strained and contrived. Ringu is a disaster of a story, full of holes and completely lacking in chills. Ignore the reputation, and ignore the film. This 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. 'It's painful to watch Witherspoon's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination, I mean, Alabama.' A plodding teen remake that's so mechanical you can smell the grease on the plot twists. Trying 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. Even in terms of the low-grade cheese standards on which it operates, it never quite makes the grade as tawdry trash. Amidst 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.'' Rife with nutty cliches and far too much dialogue. It's a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit. ...one big laugh, three or four mild giggles, and a whole lot of not much else. Too intensely focused on the travails of being Hal Hartley to function as pastiche, No Such Thing is Hartley's least accessible screed yet. Kenneth 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. Director 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. Ms. Phoenix is completely lacking in charm and charisma, and is unable to project either Esther's initial anomie or her eventual awakening. The movie fails to portray its literarily talented and notorious subject as anything much more than a dirty old man. A clichéd and shallow cautionary tale about the hard-partying lives of gay men. The fetid underbelly of fame has never looked uglier. A little weak -- and it isn't that funny. While it is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion, Lan Yu never catches dramatic fire. The script boasts some tart TV-insider humor, but the film has not a trace of humanity or empathy. Despite the pyrotechnics, Narc is strictly by the book. In 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. Cacoyannis is perhaps too effective in creating an atmosphere of dust-caked stagnation and labored gentility. Worth seeing once, but its charm quickly fades. The original wasn't a good movie but this remake makes it look like a masterpiece! One suspects that Craven endorses They simply because this movie makes his own look much better by comparison. Gere gives a good performance in a film that doesn't merit it. Your appreciation of it will depend on what experiences you bring to it and what associations you choose to make. Includes too much obvious padding. There'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. I'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. Don't expect any subtlety from this latest entry in the increasingly threadbare gross-out comedy cycle. The 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. Shot like a postcard and overacted with all the boozy self-indulgence that brings out the worst in otherwise talented actors... Spain's greatest star wattage doesn't overcome the tumult of maudlin tragedy. Conforms itself with creating a game of 'who's who' ... where the characters' moves are often more predictable than their consequences. Looks and feels like a low-budget hybrid of Scarface or Carlito's Way. The script is a tired one, with few moments of joy rising above the stale material. Suffers from all the excesses of the genre. The verdict: Two bodies and hardly a laugh between them. The latest Adam Sandler assault and possibly the worst film of the year. Downbeat, period-perfect biopic hammers home a heavy-handed moralistic message. While 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. They ought to be a whole lot scarier than they are in this tepid genre offering. It's harmless, diverting fluff. But it's hard to imagine a more generic effort in the genre. It's just plain lurid when it isn't downright silly. Comedy troupe Broken Lizard's first movie is very funny but too concerned with giving us a plot. Pap invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God in the fifth Trek flick. A 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. It's a film with an idea buried somewhere inside its fabric, but never clearly seen or felt. 'All in all, Reign of Fire will be a good (successful) rental.' Occasionally funny, sometimes inspiring, often boring. A movie in which two not very absorbing characters are engaged in a romance you can't wait to see end. The predominantly amateur cast is painful to watch, so stilted and unconvincing are the performances. Who 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!'' Elegantly crafted but emotionally cold, a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level. Were 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.' The story has its redundancies, and the young actors, not very experienced, are sometimes inexpressive. I'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. The film is really closer to porn than a serious critique of what's wrong with this increasingly pervasive aspect of gay culture. Murder by Numbers just doesn't add up. Clare Peploe's airless movie adaptation could use a little American Pie-like irreverence. Video games are more involving than this mess. Clayburgh and Tambor are charming performers; neither of them deserves Eric Schaeffer. A pale Xerox of other, better crime movies. ...a hokey piece of nonsense that tries too hard to be emotional. Illiterate, often inert sci-fi action thriller. A perfect example of rancid, well-intentioned, but shamelessly manipulative movie making. The adventure doesn't contain half the excitement of Balto, or quarter the fun of Toy Story 2. Essentially a collection of bits -- and they're all naughty. A 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. The screenplay by James Eric, James Horton and director Peter O'Fallon ... is so pat it makes your teeth hurt. Before 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. Solaris is rigid and evasive in ways that Soderbergh's best films, ``Erin Brockovich,'' ``Out of Sight'' and ``Ocean's Eleven,'' never were. Seems like something American and European gay movies were doing 20 years ago. In 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. You can see the would-be surprises coming a mile away, and the execution of these twists is delivered with a hammer. Thumbs down. The 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. ... del Toro maintains a dark mood that makes the film seem like something to endure instead of enjoy. The movie eventually snaps under the strain of its plot contrivances and its need to reassure. The real question this movie poses is not 'Who?' but 'Why?' Now here's a sadistic bike flick that would have made Vittorio De Sica proud. A movie that's about as overbearing and over-the-top as the family it depicts. A movie in which laughter and self-exploitation merge into jolly soft-porn 'empowerment.' Occasionally interesting but essentially unpersuasive, a footnote to a still evolving story. If 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? Moretti plays Giovanni, a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy. Too predictably, in fact. Alternative medicine obviously has its merits ... but Ayurveda does the field no favors. This thing works on no level whatsoever for me. It follows the basic plot trajectory of nearly every Schwarzenegger film: Someone crosses Arnie. Arnie blows things up. Ice Age posits a heretofore unfathomable question: Is it possible for computer-generated characters to go through the motions? An incoherent jumble of a film that's rarely as entertaining as it could have been. ...they missed the boat. More dutiful than enchanting...terribly episodic and lacking the spark of imagination that might have made it an exhilarating treat. Laconic 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. The comedy Death to Smoochy is a rancorous curiosity: a movie without an apparent audience. Barney'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. Affleck merely creates an outline for a role he still needs to grow into, a role that Ford effortlessly filled with authority. Cinematic 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. The 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. Nothing more or less than an outright bodice-ripper -- it should have ditched the artsy pretensions and revelled in the entertaining shallows. A living testament to the power of the eccentric and the strange. The fact that it isn't very good is almost beside the point. Feels less like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series. What might have been acceptable on the printed page of Iles' book does not translate well to the screen. If 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. A poky and pseudo-serious exercise in sham actor workshops and an affected malaise. Mediocre fable from Burkina Faso. Fessenden has nurtured his metaphors at the expense of his narrative, but he does display an original talent. Since the movie is based on a Nicholas Sparks best seller, you know death is lurking around the corner, just waiting to spoil things. Bottom-rung New Jack City wannabe. Fincher takes no apparent joy in making movies, and he gives none to the audience. It's mildly amusing, but I certainly can't recommend it. Nicholas Nickleby celebrates the human spirit with such unrelenting Dickensian decency that it turned me (horrors!) into Scrooge. Fear Dot Com is more frustrating than a modem that disconnects every 10 seconds. Full of flatulence jokes and mild sexual references, Kung Pow! is the kind of movie that's critic-proof, simply because it aims so low. May cause you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists. There are just too many characters saying too many clever things and getting into too many pointless situations. Where's the movie here? A dark, dull thriller with a parting shot that misfires. Lacking substance and soul, Crossroads comes up shorter than Britney's cutoffs. Cassavetes 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. Buries 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. Although 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. It's so badly made on every level that I'm actually having a hard time believing people were paid to make it. Without non-stop techno or the existential overtones of a Kieslowski morality tale, Maelström is just another Winter Sleepers. Nicks, seemingly uncertain what's going to make people laugh, runs the gamut from stale parody to raunchy sex gags to formula romantic comedy. 'A' for creativity but comes across more as a sketch for a full-length comedy. If 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. The script kicks in, and Mr. Hartley's distended pace and foot-dragging rhythms follow. (E)ventually, every idea in this film is flushed down the latrine of heroism. I am sorry that I was unable to get the full brunt of the comedy. No telegraphing is too obvious or simplistic for this movie. Looks and feels like a project better suited for the small screen. In its best moments, resembles a bad high school production of Grease, without benefit of song. Indifferently implausible popcorn programmer of a movie. It'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. His comedy premises are often hackneyed or just plain crude, calculated to provoke shocked laughter, without following up on a deeper level. Christina Ricci comedy about sympathy, hypocrisy and love is a misfire. At 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. They should have called it Gutterball. Thekids will probably stay amused at the kaleidoscope of big, colorful characters. Mom and Dad can catch some quality naptime along the way. It's too self-important and plodding to be funny, and too clipped and abbreviated to be an epic. The best that can be said about the work here of Scottish director Ritchie ... is that he obviously doesn't have his heart in it. Less dizzying than just dizzy, the jaunt is practically over before it begins. Slick piece of cross-promotion. Taylor appears to have blown his entire budget on soundtrack rights and had nothing left over for jokes. It believes it's revealing some great human truths, when, in reality, it's churning ground that has long passed the point of being fertile. It all drags on so interminably it's like watching a miserable relationship unfold in real time. Villeneuve spends too much time wallowing in Bibi's generic angst (there are a lot of shots of her gazing out windows). (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. It's another video movie photographed like a film, with the bad lighting that's often written off as indie film naturalism. The 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. I got a headache watching this meaningless downer. Apart from dazzling cinematography, we've seen just about everything in Blue Crush in one form or the other. Too much of the humor falls flat. Detox is ultimately a pointless endeavor. Van 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. The piquant story needs more dramatic meat on its bones. Very 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. The 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. No way I can believe this load of junk. ``Roger Michell (''Notting Hill``) directs a morality thriller.'' It's dumb, but more importantly, it's just not scary. There is no pleasure in watching a child suffer. Just embarrassment and a vague sense of shame. The 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? Even 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. There's just no currency in deriding James Bond for being a clichéd, doddering, misogynistic boy's club. When the film ended, I felt tired and drained and wanted to lie on my own deathbed for a while. Full of witless jokes, dealing in broad stereotypes and outrageously unbelievable scenarios, and saddled with a general air of misogyny The film's hackneyed message is not helped by the thin characterizations, nonexistent plot and pretentious visual style. The Iditarod lasts for days - this just felt like it did. It 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. This movie is maddening. It conveys a simple message in a visual style that is willfully overwrought. Should have been someone else- The 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. Why make a documentary about these marginal historical figures? Wouldn't one about their famous dad, author of Death in Venice, etc., be more valuable? The lower your expectations, the more you'll enjoy it. Rarely has leukemia looked so shimmering and benign. ... is an arthritic attempt at directing by Callie Khouri. I had to look away - this was god awful. Even in this less-than-magic kingdom, Reese rules. Velocity represents everything wrong with ''independent film'' as a commodified, sold-out concept on the American filmmaking scene. Just one bad idea after another. Because of an unnecessary and clumsy last scene, 'Swimfan' left me with a very bad feeling. Though 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. A movie that hovers somewhere between an acute character study and a trite power struggle. Corpus Collosum -- while undeniably interesting -- wore out its welcome well before the end credits rolled about 45 minutes in. The 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 It'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. A by-the-numbers effort that won't do much to enhance the franchise. Involves two mysteries -- one it gives away and the other featuring such badly drawn characters that its outcome hardly matters. Overall the film feels like a low-budget TV pilot that could not find a buyer to play it on the tube. It's of the quality of a lesser Harrison Ford movie - Six Days, Seven Nights, maybe, or that dreadful Sabrina remake. It appears that something has been lost in the translation to the screen. Despite 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. An unclassifiably awful study in self- and audience-abuse. This movie is something of an impostor itself, stretching and padding its material in a blur of dead ends and distracting camera work. Hey 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. This one is definitely one to skip, even for horror movie fanatics. Excessive, profane, packed with cartoonish violence and comic-strip characters. Once the 50 year old Benigni appears as the title character, we find ourselves longing for the block of wood to come back. A working class ``us vs. them'' opera that leaves no heartstring untugged and no liberal cause unplundered. If 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. There are simply too many ideas floating around -- part farce, part Sliding Doors, part pop video -- and yet failing to exploit them. It 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. We haven't seen such hilarity since Say It Isn't So! Expect the same-old, lame-old slasher nonsense, just with different scenery. The Cold Turkey would've been a far better title. The 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. The ga-zillionth airhead movie about a wife in distress who resorts to desperate measures. Zaidan's script has barely enough plot to string the stunts together and not quite enough characterization to keep the faces straight. Try 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. While 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. It treats women like idiots. Though Catch Me If You Can isn't badly made, the fun slowly leaks out of the movie. Just an average comedic dateflick but not a waste of time. A valueless kiddie paean to pro basketball underwritten by the NBA. Impostor 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. So much facile technique, such cute ideas, so little movie. The experience of going to a film festival is a rewarding one; the experiencing of sampling one through this movie is not. The film takes the materials of human tragedy and dresses them in lovely costumes, Southern California locations and star power. It has its moments of swaggering camaraderie, but more often just feels generic, derivative and done to death. Almost gags on its own gore. How do you spell cliché? It's sweet, harmless, dumb, occasionally funny and about as compelling as a fishing show. The 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. While (Hill) has learned new tricks, the tricks alone are not enough to salvage this lifeless boxing film. In the real world, an actor this uncharismatically beautiful would have a résumé loaded with credits like ``Girl in Bar #3.'' Too much of it feels unfocused and underdeveloped. Under 15? A giggle a minute. Over age 15? Big Fat Waste of Time. Hey Arnold! The Movie is what happens when you blow up small potatoes to 10 times their natural size, and it ain't pretty. Sometimes seems less like storytelling than something the otherwise compelling director needed to get off his chest. This is not the undisputed worst boxing movie ever, but it's certainly not a champion - the big loser is the audience. You 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. In 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. Chokes on its own depiction of upper-crust decorum. Well-nigh unendurable...though the picture strains to become cinematic poetry, it remains depressingly prosaic and dull. I thought my own watch had stopped keeping time as I slogged my way through Clockstoppers. While 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. This directorial debut from music video show-off Higuchinsky is all flash. Yes, Ballistic is silly. Unfortunately, it's not silly fun unless you enjoy really bad movies. The 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. The longer the movie goes, the worse it gets, but it's actually pretty good in the first few minutes. While 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. Not only unfunny, but downright repellent. Care 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. Forced, familiar and thoroughly condescending. Does little more than play an innocuous game of fill-in- the-blanks with a tragic past. K-19 exploits our substantial collective fear of nuclear holocaust to generate cheap Hollywood tension. Has 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 A ragbag of promising ideas and failed narrative, of good acting and plain old bad filmmaking. Whaley's determination to immerse you in sheer, unrelenting wretchedness is exhausting. Uncommonly stylish but equally silly...the picture fails to generate much suspense, nor does it ask searching enough questions to justify its pretensions. The entire movie is about a boring, sad man being boring and sad. The plot convolutions ultimately add up to nothing more than jerking the audience's chain. Confirms the nagging suspicion that Ethan Hawke would be even worse behind the camera than he is in front of it. Made with no discernible craft and monstrously sanctimonious in dealing with childhood loss. It's a trifle of a movie, with a few laughs surrounding an unremarkable soft center. Holden Caulfield did it better. A synthesis of cliches and absurdities that seems positively decadent in its cinematic flash and emptiness. Oh come on. Like you couldn't smell this turkey rotting from miles away. If it's seldom boring, well, it's also rarely coherent. Simplistic fluff-ball of whimsy. Not exactly the Bees Knees It 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. The kind of spectacularly misconceived enterprise that only a sophisticated cinephile could have perpetrated. Makes 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. The 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. Jacquot'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. Chabrol has taken promising material for a black comedy and turned it instead into a somber chamber drama. It'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. This is nothing but familiar territory. In execution, this clever idea is far less funny than the original, Killers From Space. One of the more irritating cartoons you will see this, or any, year. A broad, melodramatic estrogen opera that's pretty toxic in its own right. Too slow, too long and too little happens. The 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. Sacrifices the value of its wealth of archival foot-age with its less-than-objective stance. Utterly lacking in charm, wit and invention, Roberto Benigni's Pinocchio is an astonishingly bad film. A hamfisted romantic comedy that makes our girl the hapless facilitator of an extended cheap shot across the Mason-Dixon line. Scores no points for originality, wit, or intelligence. It's a cookie-cutter movie, a cut-and-paste job. They takes a long time to get to its gasp-inducing ending. Barely gets off the ground. Even on those rare occasions when the narrator stops yammering, Miller's hand often feels unsure. Pumpkin 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. At 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. From the opening scenes, it's clear that All About the Benjamins is a totally formulaic movie. It takes a certain kind of horror movie to qualify as 'worse than expected,' but Ghost Ship somehow manages to do exactly that. On the bright side, it contains Jesse Ventura's best work since the XFL. Despite impeccable acting ... and a script that takes some rather unexpected (even, at times, preposterous) turns, Love is just too, too precious in the end. A TV style murder mystery with a few big screen moments (including one that seems to be made for a different film altogether). By 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. Too often, the viewer isn't reacting to humor so much as they are wincing back in repugnance. Dilbert without the right-on satiric humor. Manages to show life in all of its banality when the intention is quite the opposite. Do not see this film. Minority Report is exactly what the title indicates, a report. Delivers the same old same old, tarted up with Latin flava and turned out by Hollywood playas. If 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. To call The Other Side of Heaven ``appalling'' would be to underestimate just how dangerous entertainments like it can be. In 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. If only the story about a multi-million dollar con bothered to include the con. I'd have to say the star and director are the big problems here. Without the dark spookiness of Crystal Lake Camp, the horror concept completely loses its creepy menace. It'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?). While 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. For close to two hours the audience is forced to endure three terminally depressed, mostly inarticulate, hyper dysfunctional families for the price of one. To my taste, the film's comic characters come perilously close to being Amoses and Andys for a new generation. What the director can't do is make either of Val Kilmer's two personas interesting or worth caring about. In an effort, I suspect, not to offend by appearing either too serious or too lighthearted, it offends by just being wishy-washy. It'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. Harland Williams is so funny in drag he should consider permanent sex-reassignment. ...nothing scary here except for some awful acting and lame special effects. It'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. A very long movie, dull in stretches, with entirely too much focus on meal preparation and igloo construction. Not an objectionable or dull film; it merely lacks everything except good intentions. A science-fiction pastiche so lacking in originality that if you stripped away its inspirations there would be precious little left. Once (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. The words, 'Frankly, my dear, I don't give a damn,' have never been more appropriate. What's next: ``My Mother the Car?'' All the amped-up Tony Hawk-style stunts and thrashing rap-metal can't disguise the fact that, really, we've been here, done that. A sequel that's much too big for its britches. So unremittingly awful that labeling it a dog probably constitutes cruelty to canines. What was once original has been co-opted so frequently that it now seems pedestrian. A perplexing example of promise unfulfilled, despite many charming moments. For all the writhing and wailing, tears, rage and opium overdoses, there's no sense of actual passion being washed away in love's dissolution. A coarse and stupid gross-out. a 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. Doesn't offer much besides glib soullessness, raunchy language and a series of brutal set pieces ... that raise the bar on stylized screen violence. There's something with potential here, but the movie decides, like Lavinia, to go the conservative route. It's one pussy-ass world when even killer-thrillers revolve around group therapy sessions. The stripped-down approach does give the film a certain timeless quality, but the measured pace and lack of dramatic inflection can also seem tedious. But 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. Rarely has so much money delivered so little entertainment. Tries to add some spice to its quirky sentiments but the taste is all too familiar. Paid 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. Harrison's Flowers puts its heart in the right place, but its brains are in no particular place at all. This re-do is so dumb and so exploitative in its violence that, ironically, it becomes everything that the rather clumsy original was railing against. A string of rehashed sight gags based in insipid vulgarity. The 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. Basically a static series of semi-improvised (and semi-coherent) raps between the stars. Too 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. An unpredictable blend of gal-pal smart talk, romantic comedy and dark tragedy that bites off considerably more than writer/director John McKay can swallow. It'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. ``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. ... a hollow joke told by a cinematic gymnast having too much fun embellishing the misanthropic tale to actually engage it. A 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... The film's essentially over by the meet-cute. I'm sure if you're a Hartley fan, you might enjoy yourself... Me, I didn't care for it. It's about following your dreams, no matter what your parents think. Socrates motions for hemlock. The script isn't very good; not even someone as gifted as Hoffman (the actor) can make it work. Walter Hill's pulpy, stylized boxing melodrama Undisputed nearly overcomes its questionable in-the-ring match-up with solid fight choreography and gritty prison authenticity. It has all the excitement of eating oatmeal. It'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. Although 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. I'll bet the video game is a lot more fun than the film. Star 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. Like 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. I don't mind having my heartstrings pulled, but don't treat me like a fool. ...although this idea is ``new'' the results are tired. I'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. An 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. Its 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. For 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. Don't be fooled by the impressive cast list - Eye See You is pure junk. Not since Freddy Got Fingered has a major release been so painful to sit through. The documentary does little, apart from raising the topic, to further stoke the conversation. Plays like a volatile and overlong W magazine fashion spread. A better title, for all concerned, might be Swept Under the Rug. This movie seems to have been written using Mad-libs. There can be no other explanation. Hilariously inept and ridiculous. Vera's technical prowess ends up selling his film short; he smoothes over hard truths even as he uncovers them. (A) shapeless blob of desperate entertainment. Feels too formulaic and too familiar to produce the transgressive thrills of early underground work. Given how heavy-handed and portent-heavy it is, this could be the worst thing Soderbergh has ever done. a by-the-numbers patient/doctor pic that covers all the usual ground A dumb movie with dumb characters doing dumb things and you have to be really dumb not to see where this is going. Stealing Harvard aspires to comedic grand larceny but stands convicted of nothing more than petty theft of your time. Pretension, 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. With the exception of some fleetingly amusing improvisations by Cedric the Entertainer as Perry's boss, there isn't a redeeming moment here. It's a grab bag of genres that don't add up to a whole lot of sense. Movie fans, get ready to take off...the other direction. (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. The intent is almost exactly the same (as The Full Monty). All that's missing is the spontaneity, originality and delight. No one but a convict guilty of some truly heinous crime should have to sit through The Master of Disguise. Even 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. There'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. It's not without its pleasures, but I'll stick with The Tune. Miller 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. Despite the evocative aesthetics evincing the hollow state of modern love life, the film never percolates beyond a monotonous whine. More maudlin than sharp. This 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. It's slow -- very, very slow. It's not the ultimate Depression-era gangster movie. That's pure PR hype. Characters 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. Comes ... uncomfortably close to coasting in the treads of The Bicycle Thief. Visually rather stunning, but ultimately a handsome-looking bore, the true creativity would have been to hide Treasure Planet entirely and completely reimagine it. Stealing 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. There seems to be no clear path as to where the story's going, or how long it's going to take to get there. If 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. I don't think I laughed out loud once. And when you're talking about a slapstick comedy, that's a pretty big problem. It's so mediocre, despite the dynamic duo on the marquee, that we just can't get no satisfaction. Slapstick 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? ...turns so unforgivably trite in its last 10 minutes that anyone without a fortified sweet tooth will likely go into sugar shock. The notion that bombing buildings is the funniest thing in the world goes entirely unexamined in this startlingly unfunny comedy. My reaction in a word: disappointment. His last movie was poetically romantic and full of indelible images, but his latest has nothing going for it. It kinda works and qualifies as cool at times, but is just too lame to work or be cool at others. Sustains its dreamlike glide through a succession of cheesy coincidences and voluptuous cheap effects, not the least of which is Rebecca Romijn-Stamos. Intriguing documentary which is emotionally diluted by focusing on the story's least interesting subject. Feels 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. For 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. In 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. I've always dreamed of attending Cannes, but after seeing this film, it's not that big a deal. The 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. A workshop mentality prevails. It cannot be enjoyed, even on the level that one enjoys a bad slasher flick, primarily because it is dull. Yes, dull. Pumpkin wants to have it both ways. Director Uwe Boll and the actors provide scant reason to care in this crude '70s throwback. (W)hile long on amiable monkeys and worthy environmentalism, Jane Goodall's Wild Chimpanzees is short on the thrills the oversize medium demands. Outer-space buffs might love this film, but others will find its pleasures intermittent. This piece of Channel 5 grade trash is, quite frankly, an insult to the intelligence of the true genre enthusiast. An occasionally funny, but overall limp, fish-out-of-water story. A bloated gasbag thesis grotesquely impressed by its own gargantuan aura of self-importance... It's mighty tedious for the viewer who has to contend with unpleasant characters, hit-and-miss performances and awkwardly staged scenes. As 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. New Best Friend's Playboy-mansion presentation of college life is laugh-out-loud ludicrous. an 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... The humor is forced and heavy-handed, and occasionally simply unpleasant. Scorsese 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. While the script starts promisingly, it loses steam towards the middle and never really develops beyond attacking obvious target. As 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. This isn't even Madonna's Swept Away. This is her Blue Lagoon. The director knows how to apply textural gloss, but his portrait of sex-as-war is strictly sitcom. ...the film suffers from a lack of humor (something needed to balance out the violence)... Burns never really harnesses to full effect the energetic cast. An overemphatic, would-be wacky, ultimately tedious sex farce. Has all the depth of a wading pool. This 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. The 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. ... the movie is just a plain old monster. If this disposable tissue has one wild card, it's John Turturro, who's simply fab as a Spanish butler with a foot fetish. One long string of cliches. Fancy a real downer? (Leigh) lays it on so thick this time that it feels like a suicide race. Professionally speaking, it's tempting to jump ship in January to avoid ridiculous schlock like this shoddy suspense thriller. Nelson's brutally unsentimental approach ... sucks the humanity from the film, leaving behind an horrific but weirdly unemotional spectacle. Weaves 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. At once half-baked and overheated. There's a solid woman- finding-herself story somewhere in here, but you'd have to dig pretty deep to uncover it. I 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. (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. By the miserable standards to which the slasher genre has sunk,...actually pretty good. Of course, by more objective measurements it's still quite bad. The only entertainment you'll derive from this choppy and sloppy affair will be from unintentional giggles – several of them. Sam Mendes has become valedictorian at the School for Soft Landings and Easy Ways Out. Exactly what it claims to be -- a simple diversion for the kids. Its story may be a thousand years old, but why did it have to seem like it took another thousand to tell it to us? The 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. A momentary escape from the summer heat and the sedentary doldrums that set in at this time of year. ... think of it as American Pie On Valium. Dull, lifeless, and amateurishly assembled. Puportedly ``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. ...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! It's a bad thing when a movie has about as much substance as its end credits blooper reel. With its dogged Hollywood naturalism and the inexorable passage of its characters toward sainthood, Windtalkers is nothing but a sticky-sweet soap. Some of it is clever, but it is never melodic/ Better to just call it ABC Kiarostami. For AIDS and Africa are nothing more than part of the scenery. No aspirations to social import inform the movie version. This is a shameless sham, calculated to cash in on the popularity of its stars. Manages 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. This rather superficial arthouse middle-brow film knows how to please a crowd, and that's about all it does well. It'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. As vulgar as it is banal. You wonder why Enough wasn't just a music video rather than a full-length movie. The film's tone and pacing are off almost from the get-go. The talented and clever Robert Rodriguez perhaps put a little too much heart into his first film and didn't reserve enough for his second. More whiny downer than corruscating commentary. Tambor and Clayburgh make an appealing couple -- he's understated and sardonic, she's appealingly manic and energetic. Both deserve better. Suffocated 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. Coughs and sputters on its own postmodern conceit. A wildly inconsistent emotional experience. Sit through this one, and you won't need a magic watch to stop time; your DVD player will do it for you. A sometimes tedious film. Teen movies have really hit the skids. There are plot holes big enough for Shamu the killer whale to swim through. ...plays like somebody spliced random moments of a Chris Rock routine into what is otherwise a cliche-riddled but self-serious spy thriller. Nasty, ugly, pointless and depressing, even if you hate clowns. What is 100% missing here is a script of even the most elemental literacy, an inkling of genuine wit, and anything resembling acting. does paint some memorable images ..., but Makhmalbaf keeps her distance from the characters It uses the pain and violence of war as background material for color. just not campy enough The movie, directed by Mick Jackson, leaves no cliche unturned, from the predictable plot to the characters straight out of central casting. It's everything you don't go to the movies for. Like watching a dress rehearsal the week before the show goes up: everything's in place but something's just a little off-kilter. The 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. For 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. American Chai encourages rueful laughter at stereotypes only an Indian-American would recognize. And the lesson, in the end, is nothing new. It made me want to wrench my eyes out of my head and toss them at the screen. Due to some script weaknesses and the casting of the director's brother, the film trails off into inconsequentiality. ...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. So devoid of any kind of intelligible story that it makes films like XXX and Collateral Damage seem like thoughtful treatises Combining 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. Dragonfly has no atmosphere, no tension -- nothing but Costner, flailing away. It's a buggy drag. Works hard to establish rounded characters, but then has nothing fresh or particularly interesting to say about them. The 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. Nonsensical, dull ``cyber-horror'' flick is a grim, hollow exercise in flat scares and bad acting. Instead of hiding Pinocchio from critics, Miramax should have hidden it from everyone. Manages to be both repulsively sadistic and mundane. A great ensemble cast can't lift this heartfelt enterprise out of the familiar. There ought to be a directing license, so that Ed Burns can have his revoked. The 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. Whereas last year's exemplary Sexy Beast seemed to revitalize the British gangster movie, this equally brutal outing merely sustains it. ... a boring parade of talking heads and technical gibberish that will do little to advance the Linux cause. Green might want to hang onto that ski mask, as robbery may be the only way to pay for his next project. I can take infantile humor ... but this is the sort of infantile that makes you wonder about changing the director and writer's diapers. There isn't nearly enough fun here, despite the presence of some appealing ingredients. The 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. Directed in a paint-by-numbers manner. A cheerful enough but imminently forgettable rip-off of (Besson's) earlier work. A lackluster, unessential sequel to the classic Disney adaptation of J.M. Barrie's Peter Pan. Samira 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 ...routine, harmless diversion and little else. Late Marriage's stiffness is unlikely to demonstrate the emotional clout to sweep U.S. viewers off their feet. This time Mr. Burns is trying something in the Martin Scorsese street-realist mode, but his self-regarding sentimentality trips him up again. While there's something intrinsically funny about Sir Anthony Hopkins saying 'Get in the car, bitch,' this Jerry Bruckheimer production has little else to offer It's hampered by a Lifetime-channel kind of plot and a lead actress who is out of her depth. Let'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. Is 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. There is very little dread or apprehension, and though I like the creepy ideas, they are not executed with anything more than perfunctory skill. If 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. In the end, the movie collapses on its shaky foundation despite the best efforts of director Joe Carnahan. Adults will wish the movie were less simplistic, obvious, clumsily plotted and shallowly characterized. But what are adults doing in the theater at all? Sticky sweet sentimentality, clumsy plotting and a rosily myopic view of life in the WWII-era Mississippi Delta undermine this adaptation. It's another stale, kill-by-numbers flick, complete with blade-thin characters and terrible, pun-laden dialogue. Every time you look, Sweet Home Alabama is taking another bummer of a wrong turn. Partway through watching this saccharine, Easter-egg-colored concoction, you realize that it is made up of three episodes of a rejected TV show. The overall effect is less like a children's movie than a recruitment film for future Hollywood sellouts. Portentous and pretentious, The Weight of Water is appropriately titled, given the heavy-handedness of it drama. A fitfully amusing romp that, if nothing else, will appeal to fans of Malcolm in the Middle and its pubescent star, Frankie Muniz. Jason X is positively anti-Darwinian: nine sequels and 400 years later, the teens are none the wiser and Jason still kills on auto-pilot. To say this was done better in Wilder's Some Like It Hot is like saying the sun rises in the east. At 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. The actors are appealing, but Elysian Fields is idiotic and absurdly sentimental. As 'chick flicks' go, this one is pretty miserable, resorting to string-pulling rather than legitimate character development and intelligent plotting. The only excitement comes when the credits finally roll and you get to leave the theater. There'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. It can't decide if it wants to be a mystery/thriller, a romance or a comedy. Denis O'Neill's script avoids the prime sports cliche, a last-second goal to win the championship, but it neglects few others. The character of ZigZag is not sufficiently developed to support a film constructed around him. One of those pictures whose promising, if rather precious, premise is undercut by amateurish execution. Serving Sara doesn't serve up a whole lot of laughs. The most hopelessly monotonous film of the year, noteworthy only for the gimmick of being filmed as a single unbroken 87-minute take. With virtually no interesting elements for an audience to focus on, Chelsea Walls is a triple-espresso endurance challenge. Deadeningly dull, mired in convoluted melodrama, nonsensical jargon and stiff-upper-lip laboriousness. A misogynistic piece of filth that attempts to pass itself off as hip, young adult entertainment. Like the Chelsea's denizens ... Burdette's collage-form scenario tends to over-romanticize the spiritual desolation of the struggling artiste. It's basically an overlong episode of Tales from the Crypt. The 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. Another in-your-face wallow in the lower depths made by people who have never sung those blues. Shaky close-ups of turkey-on-rolls, stubbly chins, liver spots, red noses and the filmmakers new bobbed do draw easy chuckles but lead nowhere. I 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. Complete lack of originality, cleverness or even visible effort Though 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. Something akin to a Japanese Alice Through the Looking Glass, except that it seems to take itself far more seriously. It takes talent to make a lifeless movie about the most heinous man who ever lived. On the whole, the movie lacks wit, feeling and believability to compensate for its incessant coarseness and banality. The 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. Offers very little genuine romance and even fewer laughs...a sad sitcom of a movie, largely devoid of charm. Makes for a pretty unpleasant viewing experience. The movie fails to live up to the sum of its parts. Although Huppert's intensity and focus has a raw exhilaration about it, The Piano Teacher is anything but fun. It 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. Bad. Very bad. Stultifyingly, dumbfoundingly, mind-numbingly bad. May reawaken discussion of the Kennedy assassination but this fictional film looks made for cable rather than for the big screen. If looking for a thrilling sci-fi cinematic ride, don't settle for this Imposter. Not really bad so much as distasteful: We need kidnapping suspense dramas right now like we need doomsday thrillers. The result is a gaudy bag of stale candy, something from a Halloween that died. Davis ... is so enamored of her own creation that she can't see how insufferable the character is. The 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. The 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. Historical dramas fused with love triangle is a well worn conceit. But this films lacks the passion required to sell the material. Long Time Dead? Not nearly long enough. Nothing more substantial than a fitfully clever doodle. A solid film...but more conscientious than it is truly stirring. There's not enough here to justify the almost two hours. The 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. Perceptive 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. Verbinski implements every hack-artist trick to give us the ooky-spookies. McConaughey's fun to watch, the dragons are okay, not much fire in the script. An unwise amalgam of Broadcast News and Vibes. Skins has a right to yawp, and we have a right to our grains of salt. Who needs love like this? Hit and miss as far as the comedy goes and a big ole' miss in the way of story. Returning 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. Exists then as an occasionally insightful acting exercise. Trite, banal, cliched, mostly inoffensive. Mattei is tiresomely grave and long-winded, as if circularity itself indicated profundity. It'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. Whenever 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. It offers little beyond the momentary joys of pretty and weightless intellectual entertainment. A sequence of ridiculous shoot-'em-up scenes. Nothing in Waking Up in Reno ever inspired me to think of its inhabitants as anything more than markers in a screenplay. I'm just too bored to care. Irwin 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. Not a stereotype is omitted nor a cliché left unsaid. As befits its title, this PG-13-rated piffle is ultimately as threatening as the Snuggle Fabric Softener bear. Attempts by this ensemble film to impart a message are so heavy-handed that they instead pummel the audience. It all feels like a Monty Python sketch gone horribly wrong. Nervous breakdowns are not entertaining. Scorsese doesn't give us a character worth giving a damn about. A beautifully made piece of unwatchable drivel. Like being trapped at a perpetual frat party...How can something so gross be so boring? This is so bad. Even film silliness needs a little gravity, beyond good hair and humping. I 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. Prurient playthings aside, there's little to love about this English trifle. This 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. The film flat lines when it should peak and is more missed opportunity and trifle than dark, decadent truffle. It'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. Van 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. A disappointment for those who love alternate versions of the Bard, particularly ones that involve deep fryers and hamburgers. The film tries too hard to be funny and tries too hard to be hip. The end result is a film that's neither. Every 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. Scooby 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! Is the time really ripe for a warmed-over James Bond adventure, with a village idiot as the 007 clone? There'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. However it may please those who love movies that blare with pop songs, young science fiction fans will stomp away in disgust. The 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. Some of their jokes work, but most fail miserably and in the end, Pumpkin is far more offensive than it is funny. Even horror fans will most likely not find what they're seeking with Trouble Every Day; the movie lacks both thrills and humor. comes 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. it seems to me the film is about the art of ripping people off without ever letting them consciously know you have done so It'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. The title not only describes its main characters, but the lazy people behind the camera as well. Sometimes it feels as if it might have been made in the '70s or '80s, and starred Chevy Chase and Goldie Hawn. Schaeffer 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. Demands too much of most viewers. The 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. It 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. Shamelessly sappy and, worse, runs away from its own provocative theme. The Ring just left me cold and wet like I was out in the Seattle drizzle without rainwear. The film seems a dead weight. The lack of pace kills it, although, in a movie about cancer, this might be apt. For anyone who grew up on Disney's 1950 Treasure Island, or remembers the 1934 Victor Fleming classic, this one feels like an impostor. A 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. Meandering, sub-aquatic mess: It's so bad it's good, but only if you slide in on a freebie. The ending is a cop-out. What happens to John Q? I don't have an I Am Sam clue. Has the feel of an unedited personal journal. Remember when Bond had more glamour than clamor? No more. Cry havoc and let slip the dogs of cheese, indeed. This charmless nonsense ensues amid clanging film references that make Jay and Silent Bob's Excellent Adventure seem understated. It doesn't quite deserve the gong, but there are more fascinating acts than ``Confessions of a Dangerous Mind.'' The subject of swinging still seems ripe for a documentary -- just not this one. ... Hudlin is stuck trying to light a fire with soggy leaves. Unlike his directorial efforts, La Femme Nikita and The Professional, The Transporter lacks Besson's perspective as a storyteller. The 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. Most of the supporting characters in Eastwood films are weak, as are most of the subplots. This one's weaker than most. Audiences will find no mention of political prisoners or persecutions that might paint the Castro regime in less than saintly tones. The film takes too long getting to the good stuff, then takes too long figuring out what to do next. You can practically smell the patchouli oil. To say Analyze That is De Niro's best film since Meet the Parents sums up the sad state of his recent career. The 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. An often-deadly boring, strange reading of a classic whose witty dialogue is treated with a baffling casual approach This 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. Consists of a plot and jokes done too often by people far more talented than Ali G Another week, another gross-out college comedy--ugh. Moderately involving despite bargain-basement photography and hackneyed romance. There 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. The editing is chaotic, the photography grainy and badly focused, the writing unintentionally hilarious, the direction unfocused, the performances as wooden. When (De Palma's) bad, he's really bad, and Femme Fatale ranks with the worst he has done. Tadpole is emblematic of the witless ageism afflicting films: Young is cool, and too young is too cool. I doubt anyone will remember the picture by the time Christmas really rolls around, but maybe it'll be on video by then. Uncertain in tone... a garbled exercise in sexual politics, a junior varsity Short Cuts by way of Very Bad Things. All's well that ends well, and rest assured, the consciousness-raising lessons are cloaked in gross-out gags. The only thing worse than your substandard, run-of-the-mill Hollywood picture is an angst-ridden attempt to be profound. If you think that Jennifer Lopez has shown poor judgment in planning to marry Ben Affleck, wait till you see Maid in Manhattan. Stars 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. It's best to avoid imprisonment with the dull, nerdy folks that inhabit Cherish. Culkin exudes none of the charm or charisma that might keep a more general audience even vaguely interested in his bratty character. In 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. ... (like)channel surfing between the Discovery Channel and a late-night made-for-cable action movie. A movie that, rather than skip along the Seine, more or less slogs its way through soggy Paris, tongue uncomfortably in cheek. Shot perhaps 'artistically' with handheld cameras and apparently no movie lights by Joaquin Baca-Asay, the low-budget production swings annoyingly between vertigo and opacity. Imagine a really bad community theater production of West Side Story without the songs. Soul is what's lacking in every character in this movie and, subsequently, the movie itself. A one-trick pony whose few T&A bits still can't save itself from being unoriginal, unfunny and unrecommendable. The 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 It may be a prize winner, but Teacher is a bomb. The 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. It's got its heart in the right place, but it also wilts after awhile. Proves that a movie about goodness is not the same thing as a good movie. Well, it does go on forever. This overproduced and generally disappointing effort isn't likely to rouse the Rush Hour crowd. Topkapi this is not. If 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? Ethan Hawke has always fancied himself the bastard child of the Beatnik generation and it's all over his Chelsea Walls. Equal parts bodice-ripper and plodding costume drama. I'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. While the film misfires at every level, the biggest downside is the paucity of laughter in what's supposed to be a comedy. If you liked the 1982 film then, you'll still like it now. A 93-minute condensation of a 26-episode TV series, with all of the pitfalls of such you'd expect. Guillen rarely gets beneath the surface of things. She lists ingredients, but never mixes and stirs. Audiences 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. To 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. It delivers some chills and sustained unease, but flounders in its quest for Deeper Meaning. Credibility levels are low and character development a non-starter. I 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. For 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. An 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. A mawkish, implausible platonic romance that makes Chaplin's City Lights seem dispassionate by comparison. Yes, one enjoys seeing Joan grow from awkward young woman to strong, determined monarch, but her love for the philandering Philip only diminishes her stature. It's a film that hinges on its casting, and Glover really doesn't fit the part. This is a throwaway, junk-food movie whose rap soundtrack was better tended to than the film itself. ...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. Literally 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. Arguably the year's silliest and most incoherent movie. Anyway, 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. Chao was Chen Kaige's assistant for years in China. He has not learnt that storytelling is what the movies are about. A mixed bag of a comedy that can't really be described as out of this world. The film is a travesty of the genre and even as spoof takes itself too seriously. Marries the amateurishness of The Blair Witch Project with the illogic of Series 7: The Contenders to create a completely crass and forgettable movie. The Piano Teacher is the sort of movie that discourages American audiences from ever wanting to see another foreign film. If it's another regurgitated action movie you're after, there's no better film than Half Past Dead. So what is the point? Lovingly choreographed bloodshed taking place in a pristine movie neverland, basically. This is junk food cinema at its greasiest. When 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. Most 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. The story is naturally poignant, but first-time screenwriter Paul Pender overloads it with sugary bits of business. You 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! A sermonizing and lifeless paean to teenage dullards. This dramatically shaky contest of wills only reiterates the old Hollywood saw: Evil is interesting and good is boring. Before long, the film starts playing like General Hospital crossed with a Saturday Night Live spoof of Dog Day Afternoon. The charms of willful eccentricity, at least as evidenced by this latest cinematic essay, are beginning to wear a bit thin. Instead 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? A silly, self-indulgent film about a silly, self-indulgent filmmaker. Scarlet Diva has a voyeuristic tug, but all in all it's a lot less sensational than it wants to be. The 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. Flashy, pretentious and as impenetrable as Morvern's thick, working-class Scottish accent. A battle between bug-eye theatre and dead-eye matinee. The movie is virtually without context -- journalistic or historical. What's worse is that Pelosi knows it. ... instead go rent ``Shakes The Clown'', a much funnier film with a similar theme and an equally great Robin Williams performance. Lame, haphazard teen comedy. It'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. This miserable excuse of a movie runs on empty, believing Flatbush machismo will get it through. Expect to be reminded of other, better films, especially Seven, which director William Malone slavishly copies. Nair stuffs the film with dancing, henna, ornamentation, and group song, but her narrative clichés and telegraphed episodes smell of old soap opera. It's getting harder and harder to ignore the fact that Hollywood isn't laughing with us, folks. It's laughing at us. Might have been better off as a documentary, with less of Mr. Eyre's uninspired dramatics and more of his sense of observation and outrage. Every 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. Arnold's jump from little screen to big will leave frowns on more than a few faces. Both awful and appealing. The lack of opposing viewpoints soon grows tiresome -- the film feels more like a series of toasts at a testimonial dinner than a documentary. Nothing plot-wise is worth e-mailing home about. We are left with a superficial snapshot that, however engaging, is insufficiently enlightening and inviting. Helmer DeVito...attempts to do too many things in this story about ethics, payola, vice, murder, kids' TV and revenge. It wouldn't be my preferred way of spending 100 minutes or $7.00. I hated every minute of it. (T)hose same extremes prevent us from taking its message seriously, and the Stepford Wives mentality doesn't work in a modern context. Obvious politics and rudimentary animation reduce the chances that the appeal of Hey Arnold! The Movie will reach far beyond its core demographic. There's no mistaking the fact that this hybrid misses the impact of the Disney classic, and even that of the excellent 1934 MGM version. A 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. Roger Michell, who did an appealing job directing Persuasion and Notting Hill in England, gets too artsy in his American debut. There 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. Anthony Hopkins? Big deal! We've already seen the prequel to The Silence of the Lambs and Hannibal -- and it was better the first time. Ostensibly celebrates middle-aged girl power, even as it presents friendship between women as pathetic, dysfunctional and destructive. If 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. Pumpkin sits in a patch somewhere between mirthless Todd Solondzian satire and callow student film. Not 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. It's not that Waiting For Happiness is a bad film, because it isn't. It's just incredibly dull. The 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. A cumbersome and cliche-ridden movie greased with every emotional device known to man. Director 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. Egoyan's movie is too complicated to sustain involvement, and, if you'll excuse a little critical heresy, too intellectually ambitious. It wants to be thought of as a subversive little indie film, but it has all the qualities of a modern situation comedy. Despite apparent motives to the contrary, it ends up being, like (Seinfeld's) revered TV show, about pretty much nothing. Shadyac 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. Plays less like a coming-of-age romance than an infomercial. There are a few laughs and clever sight gags scattered about, but not enough to make this anything more than another big-budget bust. The story's so preposterous that I didn't believe it for a second, despite the best efforts of everyone involved. I'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. Despite her relentless vim and winsome facial symmetry, Witherspoon is just too dialed-up to be America's Sweetheart. An ultra-low-budget indie debut that smacks more of good intentions than talent. Birot is a competent enough filmmaker, but her story has nothing fresh or very exciting about it. De Niro and McDormand give solid performances, but their screen time is sabotaged by the story's inability to create interest. Even those of a single digit age will be able to recognize that this story is too goofy... even for Disney. That is essentially what's missing from Blackboards -- the sense of something bigger, some ultimate point. A compendium of Solondz's own worst instincts in under 90 minutes. If 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?'' It is a comedy that's not very funny and an action movie that is not very thrilling (and an uneasy alliance, at that). The story is familiar from its many predecessors; like them, it eventually culminates in the not-exactly -stunning insight that crime doesn't pay. You'll have more fun setting fire to yourself in the parking lot. You'll be more entertained getting hit by a bus. Dissing 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. Ritchie'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. Flat, but with a revelatory performance by Michelle Williams. Little more than a frothy vanity project. The film goes from being an unusual sci-fi character study to a chase flick that detracts from its ending. Verbinski substitutes atmosphere for action, tedium for thrills. For all its surface frenzy, High Crimes should be charged with loitering -- so much on view, so little to offer. The 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. Alex Nohe's documentary plays like a travelogue for what mostly resembles a real-life, big-budget NC-17 version of Tank Girl. The title Trapped turns out to be a pretty fair description of how you feel while you're watching this ultra-manipulative thriller. The 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. The story really has no place to go since Simone is not real--she can't provide any conflict. IHOPs don't pile on this much syrup. For 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. focuses 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. This 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. A bit of an unwieldy mess. With 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. The 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. The 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. A 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. ...the last time I saw a theater full of people constantly checking their watches was during my SATs. ...fifty minutes of tedious adolescent melodramatics followed by thirty-five minutes of inflated nonsense. ...lacks the punch and verve needed to make this genre soar. It's often faintly amusing, but the problems of the characters never become important to us, and the story never takes hold. It's tough, astringent, darkly funny and... well, it's also generic, untidy, condescending and mild of impact rather than stunning. Largely a for-fans artifact. There'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. Characters wander into predictably treacherous situations even though they should know better. There'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. (I)f you've been to more than one indie flick in your life, chances are you've already seen this kind of thing. First-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. No reason for anyone to invest their hard-earned bucks into a movie which obviously didn't invest much into itself either. A strong first quarter, slightly less so second quarter, and average second half. A boring, wincingly cute and nauseatingly politically correct cartoon guaranteed to drive anyone much over age 4 screaming from the theater. The 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. When the first few villians are introduced as ``Spider'' and ``Snake'' you know you're in for a real winner, creativity at its peak. An Afterschool Special without the courage of its convictions. The 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. (Director) Byler may yet have a great movie in him, but Charlotte Sometimes is only half of one. So few movies explore religion that it's disappointing to see one reduce it to an idea that fits in a sampler. It'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. Watching it is rather like viewing a long soap opera in which only the first episode was any good. It's fun, but a psychological mess, with Austin Powers bumping his head on the way out of the closet. There 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. Could 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. I didn't laugh at the ongoing efforts of Cube, and his skinny buddy Mike Epps, to make like Laurel and Hardy 'n the hood. The 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. I wonder what the reaction of Israelis will be to this supposedly evenhanded presentation. The film would work much better as a video installation in a museum, where viewers would be free to leave. Immediately. Human Nature initially succeeds by allowing itself to go crazy, but ultimately fails by spinning out of control. (It's) a prison soccer movie starring charismatic tough guy Vinnie Jones, but it had too much spitting for me to enjoy. Not even the Hanson Brothers can save it The 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. ...(a) strained comedy that jettisons all opportunities for Rock to make his mark by serving up the usual chaotic nonsense. A sour, nasty offering. Feels like one of those contrived, only-in -Hollywood productions where name actors deliver big performances created for the sole purpose of generating Oscar talk. Obstacles are too easily overcome and there isn't much in the way of character development in the script. It tells more than it shows. Earnest falls short of its Ideal predecessor largely due to Parker's ill-advised meddling with the timeless source material. The film might have been more satisfying if it had, in fact, been fleshed out a little more instead of going for easy smiles. Pretentious editing ruins a potentially terrific flick. Not 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''. Do not, under any circumstances, consider taking a child younger than middle school age to this wallow in crude humor. Nothing debases a concept comedy quite like the grinding of bad ideas, and Showtime is crammed full of them. Much-anticipated and ultimately lackluster movie. This is really just another genre picture. Each 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. William Shatner, as a pompous professor, is the sole bright spot... A 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. Neither funny nor suspenseful nor particularly well-drawn. Acting, particularly by Tambor, almost makes ``Never Again'' worthwhile, but (writer/director) Schaeffer should follow his titular advice Both 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. ``Collateral Damage'' goes by the numbers and reps decent action entertainment – until the silly showdown ending that forces the viewer to totally suspend disbelief 'Enigma' is a good name for a movie this delibrately obtuse and unapproachable. A waste of good performances. A 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. I kept thinking over and over again, 'I should be enjoying this.' But I wasn't. As 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. Like 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. The 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. Just like Hearst's enormous yacht, it's slow and unwieldy and takes a long time to reach its destination. There 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. Where 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. Why come up with something even quasi-original, when you can pillage from Shirley Jackson, Richard Matheson ... and puke up something like ROSE RED? A broadly played, lowbrow comedy in which the cast delivers mildly amusing performances and no farm animals were injured by any of the gags. ... too gory to be a comedy and too silly to be an effective horror film. Lacks heart, depth and, most of all, purpose. Though a bit of a patchwork in script and production, a glossy, rich green, environment almost makes the picture work. perfectly enjoyable, instantly forgettable, nothing to write home about. Wasabi 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. Somehow both wildly implausible and strangely conventional. This ill-fitting Tuxedo is strictly off-the-rack. The 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. Sets up a nice concept for its fiftysomething leading ladies, but fails loudly in execution. Kidman 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. Imagine 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. This time Kaufman's imagination has failed him. An intermittently pleasing but mostly routine effort. It 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. 'Unfaithful' cheats on itself and retreats to comfortable territory. Too bad. Frenetic but not really funny. Taken individually or collectively, the stories never add up to as much as they promise. If 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. A didactic and dull documentary glorifying software anarchy. Sluggishly directed by episodic TV veteran Joe Zwick, it's a sitcom without the snap-crackle. You could nap for an hour and not miss a thing. Director Clare Kilner's debut is never as daft as it should have been. New Best Friend shouldn't have gone straight to video; it should have gone straight to a Mystery Science Theater 3000 video. Wallace seems less like he's been burning to tell a war story than he's been itching to somehow tack one together The thrill is (long) gone. Began life as a computer game, then morphed into a movie -- a bad one, of course. Part 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. Godawful boring slug of a movie. Dull, 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. Scene-by-scene, things happen, but you'd be hard-pressed to say what or why. ... an unimaginative, nasty, glibly cynical piece of work. It 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. The tug-of-war at the core of Beijing Bicycle becomes weighed down with agonizing contrivances, overheated pathos and long, wistful gazes. Vile and tacky are the two best adjectives to describe Ghost Ship. Some decent actors inflict big damage upon their reputations. Being 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. Offensive 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. Mark me down as a non-believer in werewolf films that are not serious and rely on stupidity as a substitute for humor. Thoughtless, random, superficial humour and a lot of very bad Scouse accents Aspires for the piquant but only really achieves a sort of ridiculous sourness. Accuracy and realism are terrific, but if your film becomes boring, and your dialogue isn't smart, then you need to use more poetic license. For all its highfalutin title and corkscrew narrative, the movie turns out to be not much more than a shaggy human tale. A soggy, cliche-bound epic-horror yarn that ends up being even dumber than its title. One groan-inducing familiarity begets another. Although based on a real-life person, John, in the movie, is a rather dull person to be stuck with for two hours. Great story, bad idea for a movie. With 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. There is no entry portal in The Rules of Attraction, and I spent most of the movie feeling depressed by the shallow, selfish, greedy characters. It's hard to tell with all the crashing and banging where the salesmanship ends and the movie begins. ``My god, I'm behaving like an idiot!'' Yes, you are, Ben Kingsley. A dreadful live-action movie. Divertingly ridiculous, headbangingly noisy. An earnest racial-issues picture that might have gotten respectful critical praise in a different era -- say, the '60s. A hideous, confusing spectacle, one that may well put the nail in the coffin of any future Rice adaptations. All I can say is fuhgeddaboutit. Between bedroom scenes, viewers may find themselves wishing they could roll over and take a nap. If you collected all the moments of coherent dialogue, they still wouldn't add up to the time required to boil a four- minute egg. Despite 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. Every bit as bogus as most Disney live action family movies are -- no real plot, no real conflict, no real point. A 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. Never engaging, utterly predictable and completely void of anything remotely interesting or suspenseful. Spousal abuse is a major problem in contemporary society, but the film reduces this domestic tragedy to florid melodrama. Oedekerk 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. The creaking, rusty ship makes a fine backdrop, but the ghosts' haunting is routine. Whatever Eyre's failings as a dramatist, he deserves credit for bringing audiences into this hard and bitter place. Scotland, PA. blurs the line between black comedy and black hole. It tries too hard, and overreaches the logic of its own world. The whole damn thing is ripe for the Jerry Springer crowd. It's all pretty cynical and condescending, too. I 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. A boring, formulaic mix of serial killers and stalk'n'slash. What 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. With 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. Flaunts its quirky excesses like a New Year's Eve drunk sporting a paper party hat. Writhing 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. ...too slow, too boring, and occasionally annoying. Is there enough material to merit a documentary on the making of Wilco's last album? Faultlessly professional but finally slight. Schmaltzy and unfunny, Adam Sandler's cartoon about Hanukkah is numbingly bad, Little Nicky bad, 10 Worst List bad. It's really yet another anemic and formulaic Lethal Weapon-derived buddy-cop movie, trying to pass off its lack of imagination as hip knowingness. Scotland, Pa. is a strangely drab romp. Some studio pizazz might have helped. When 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. There's more scatological action in 8 Crazy Nights than a proctologist is apt to encounter in an entire career. Too 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. The cartoon is about as true to the spirit of the Festival of Lights as Mr. Deeds was to that of Frank Capra. ...the sum of the parts equals largely a confused mediocrity. The tone shifts abruptly from tense to celebratory to soppy. If we don't demand a standard of quality for the art that we choose, we deserve the trash that we get. A modest and messy metaphysical thriller offering more questions than answers. Julia is played with exasperating blandness by Laura Regan. Morrissette's script and direction show a fair amount of intelligence and wit -- but it doesn't signify a whole lot either. There's suspension of disbelief and then there's bad screenwriting...this film packs a wallop of the latter. All 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. Mocking kung fu pictures when they were a staple of exploitation theater programming was witty. Mocking them now is an exercise in pointlessness. This is a particularly toxic little bonbon, palatable to only a chosen and very jaundiced few. This isn't just the CliffsNotes version of Nicholas Nickleby, it's the CliffsNotes with pages missing. Considering the harsh locations and demanding stunts, this must have been a difficult shoot, but the movie proves rough going for the audience as well. Better at putting you to sleep than a sound machine. So clichéd that, at one point, they literally upset an apple cart. It'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. It might be the first sci-fi comedy that could benefit from a Three's Company-style laugh track. When the plot kicks in, the film loses credibility. Credibility sinks into a mire of sentiment. The movie takes itself too seriously and, as a result, it makes for only intermittent fun. (Davis) has a bright, chipper style that keeps things moving, while never quite managing to connect her wish-fulfilling characters to the human race. Doesn't amount to much of anything. Bullock's complete lack of focus and ability quickly derails the film So stupid, so ill-conceived, so badly drawn, it created whole new levels of ugly. The truth is that The Truth About Charlie gets increasingly tiresome. Enduring love but exhausting cinema. Some of Seagal's action pictures are guilty pleasures, but this one is so formulaic that it seems to be on auto-pilot. A ponderous meditation on love that feels significantly longer than its relatively scant 97 minutes. A long-winded and stagy session of romantic contrivances that never really gels like the shrewd feminist fairy tale it could have been. A little too pat for its own good. There are films that try the patience of even the most cinema-besotted critic -- and this was one of them. Watching 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. Well-intentioned though it may be, its soap-opera morality tales have the antiseptic, preprogrammed feel of an after-school special. What would Jesus do if He was a film director? He'd create a movie better than this. When 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. It'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. Can't kick about the assembled talent and the Russos show genuine promise as comic filmmakers. Still, this thing feels flimsy and ephemeral. Diane Lane shines in Unfaithful. Almost everything else is wan. I'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. So relentlessly wholesome it made me want to swipe something. The title helpfully offers the most succinct review of it you'll read anywhere. The 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. God 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. Let's cut to the consumer-advice bottom line: Stay home. Undercover Brother doesn't go far enough. It's just a silly black genre spoof. The film's implicit premise is that the faith of the Tonga people is in every way inferior to that of John. Rates an 'E' for effort -- and a 'B' for boring. You've already seen Heartbreak if you've watched the far superior Nurse Betty or Sunset Boulevard. Even the unwatchable Soapdish is more original. Plays like one of those conversations that Comic Book Guy on ``The Simpsons'' has. A journey that's too random and inconclusive to be compelling, but which Hoffman's brilliance almost makes worth taking. The movie bounces all over the map. But buying into sham truths and routine ``indie'' filmmaking, Freundlich has made just another safe movie. It's not horrible, just horribly mediocre. Not 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. ``Juwanna Mann?'' No thanks. Wewannour money back, actually. It's a sometimes interesting remake that doesn't compare to the brilliant original. You're too conscious of the effort it takes to be this spontaneous. Feel bad for King, who's honestly trying, and Schwartzman, who's shot himself in the foot. Some 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. Sometimes, fond memories should stay in the past: a lesson this film teaches all too well. The enormous comic potential of an oafish idiot impersonating an aristocrat remains sadly unrealized. Begins as a promising meditation on one of America's most durable obsessions but winds up as a slender cinematic stunt. A monster combat thriller as impersonal in its relentlessness as the videogame series that inspired it. Proof 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. The 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. There'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. In 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. Director Barry Skolnick and his screenwriters glibly tick off every point of ``The Longest Yard'' playbook like a checklist. The 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. Oh, it's extreme, all right. Extremely dumb. Extremely confusing. Extremely boring. We never really feel involved with the story, as all of its ideas remain just that: abstract ideas. For a shoot-'em-up, Ballistic is oddly lifeless. One 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. What happened with Pluto Nash? How did it ever get made? We may never think of band camp as a geeky or nerdy thing again. Opens 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.'' The result is solemn and horrifying, yet strangely detached. These spiders can outrun a motorcycle and wrap a person in a sticky cocoon in seconds, but they fall short of being interesting or entertaining. A long slog for anyone but the most committed Pokemon fan. Matthew McConaughey tries, and fails, to control the screen with swaggering machismo and over-the-top lunacy. How on earth, or anywhere else, did director Ron Underwood manage to blow $100 million on this? Everyone connected to this movie seems to be part of an insider clique, which tends to breed formulaic films rather than fresh ones. With 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. Its lack of quality earns it a place alongside those other two recent Dumas botch-jobs, The Man in the Iron Mask and The Musketeer. A benign but forgettable sci-fi diversion. The plot grinds on with yawn-provoking dullness. It'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. It doesn't help that the director and cinematographer Stephen Kazmierski shoot on grungy video, giving the whole thing a dirty, tasteless feel. Desperately unfunny when it tries to makes us laugh and desperately unsuspenseful when it tries to make us jump out of our seats. This 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. John McTiernan's botched remake may be subtler than Norman Jewison's 1975 ultraviolent futuristic corporate-sports saga. It's also stupider. Director Dirk Shafer and co-writer Greg Hinton ride the dubious divide where gay porn reaches for serious drama. Borrows from so many literary and cinematic sources that this future world feels absolutely deja vu. As (the characters) get more depressed, the story gets more tiresome, especially as it continues to mount a conspicuous effort to be profound. The acting by the over-25s lacks spark, with Csokas particularly unconnected. Though 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. Falters 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. The fight scenes are fun, but it grows tedious. Anyone who can count to five (the film's target market?) can see where this dumbed-down concoction is going. All this turns out to be neither funny nor provocative - only dull. Demme's loose approach kills the suspense. This idea has lost its originality ... and neither star appears very excited at rehashing what was basically a one-joke picture. (Plays) in broad outline as pandering middle-age buddy-comedy. The film is itself a sort of cinematic high crime, one that brings military courtroom dramas down very, very low. Nothing more than a mediocre trifle. A turgid little history lesson, humourless and dull. Too silly to be frightening, too stolid to be funny, it projects the same lazy affability as its nominal star, David Arquette. If Kaufman kept Cameron Diaz a prisoner in a cage with her ape, in his latest, he'd have them mate. Trivial where it should be profound, and hyper-cliched where it should be sincere. It would be hard to think of a recent movie that has worked this hard to achieve this little fun. Theology aside, why put someone who ultimately doesn't learn at the center of a kids' story? All that (Powerpuff Girls) charm is present in the movie, but it's spread too thin. Sometimes smart but more often sophomoric. The ill-conceived modern-day ending falls flat where it should deliver a moral punch. Collateral Damage is, despite its alleged provocation post-9/11, an antique, in the end. As are its star, its attitude and its obliviousness. Dawdles 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. Its save-the-planet message clashes with its crass marketing. A great idea becomes a not-great movie. ...watching this film nearly provoked me to take my own life. And if The Hours wins 'Best Picture' I just might. By the end, I was looking for something hard with which to bludgeon myself unconscious. Not a movie but a live-action agitprop cartoon so shameless and coarse, it's almost funny. Feels like six different movies fighting each other for attention. Life is a crock -- or something like it. Made by jackasses for jackasses. Despite a powerful portrayal by Binoche, it's a period romance that suffers from an overly deliberate pace and uneven narrative momentum. The picture is a primer on what happens when lack of know-how mixes with lack of give-a-damn. Bartleby is a one-joke movie, and a bad joke at that. Given 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. A bravura exercise in emptiness. Philip K. Dick must be turning in his grave, along with my stomach. Despite the premise of a good story ... it wastes all its star power on cliched or meaningless roles. All prints of this film should be sent to and buried on Pluto. Not only does the movie fail to make us part of its reality, it fails the most basic relevancy test as well. First good, then bothersome. Excellent acting and direction. This 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 It's difficult to say whether The Tuxedo is more boring or embarrassing--I'm prepared to call it a draw. Even as lame horror flicks go, this is lame. So routine, familiar and predictable, it raises the possibility that it wrote itself as a newly automated Final Draft computer program. Sunshine State lacks the kind of dynamic that Limbo offers, and in some ways is a rather indulgent piece. Even 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. A long-winded, predictable scenario. Too close to Phantom Menace for comfort. Although 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. Too clunky and too busy ribbing itself to be truly entertaining. This movie is about lying, cheating, but loving the friends you betray. It smacks of purely commercial motivation, with no great love for the original. Melanie eventually slugs the Yankee. Too bad the former Murphy Brown doesn't pop Reese back. At the bottom rung of the series' entries. A real clunker. A well-made, thoughtful, well-acted clunker, but a clunker nonetheless. A dreary rip-off of Goodfellas that serves as a muddled and offensive cautionary tale for Hispanic Americans. The picture, scored by a perversely cheerful Marcus Miller accordion/harmonica/banjo abomination, is a monument to bad in all its florid variety. Good 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. ...a big, baggy, sprawling carnival of a movie, stretching out before us with little rhyme or reason. A frustrating combination of strained humor and heavy-handed sentimentality. Lawrence preaches strictly to the converted. As 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. Will probably stay in the shadow of its two older, more accessible Qatsi siblings. Just when the movie seems confident enough to handle subtlety, it dives into soapy bathos. Choppy editing and too many repetitive scenes spoil what could have been an important documentary about stand-up comedy. ...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. The 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. If you're looking for comedy to be served up, better look elsewhere. It virtually defines a comedy that's strongly mediocre, with funny bits surfacing every once in a while. An instant candidate for worst movie of the year. Despite its title, Amy's Orgasm is not a porno, though it is as tedious as one. Like a tone-deaf singer at a benefit concert, John Q. is a bad movie appearing on behalf of a good cause. Adam Sandler is to Gary Cooper what a gnat is to a racehorse. What kids will discover is a new collectible. What parents will suspect is that they're watching a 76-minute commercial. Beers, who, when she's given the right lines, can charm the paint off the wall ... (but) the script goes wrong at several key junctures. Without September 11, Collateral Damage would have been just another bad movie. Now it's a bad, embarrassing movie. Drags along in a dazed and enervated, drenched-in-the- past numbness. There's a disturbing 'Great White Hope' undertone to The Other Side of Heaven that subtly undermines its message of Christian love and compassion. Unless 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. The attempt is courageous, even if the result is wildly uneven. There's something fundamental missing from this story: something or someone to care about. Too much of this well-acted but dangerously slow thriller feels like a preamble to a bigger, more complicated story, one that never materializes. When 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. Unfortunately, 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. The more Kevin Costner rests on his pretty-boy laurels, the public is, regrettably, going to have tepid films like Dragonfly tossed at them. (It's) difficult to get beyond the overall blandness of American Chai, despite its likable performances and refreshingly naive point of view. The 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. Taken 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. If Myers decides to make another Austin Powers movie, maybe he should just stick with Austin and Dr Evil. The backyard battles you staged with your green plastic army men were more exciting and almost certainly made more sense. Too 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. Overly 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. What 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. If this is satire, it's the smug and self-congratulatory kind that lets the audience completely off the hook. Had the film boasted a clearer, more memorable, the creepiness would have gotten under the skin. These people wouldn't know subtle characterization if it put on a giant furry monster costume and then gave them a lapdance. Imagine if you will a Tony Hawk skating video interspliced with footage from Behind Enemy Lines and set to Jersey shore techno. It doesn't quite work, but there's enough here to make us look forward to the Russos' next offering. Any film featuring young children threatened by a terrorist bomb can no longer pass as mere entertainment. The director's twitchy sketchbook style and adroit perspective shifts grow wearisome amid leaden pacing and indifferent craftsmanship (most notably wretched sound design). About as satisfying and predictable as the fare at your local drive through. Apparently kissing leads to suicide attempts and tragic deaths. Marisa Tomei is good, but Just A Kiss is just a mess. Opens at a funeral, ends on the protagonist's death bed and doesn't get much livelier in the three hours in between. The 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. To portray modern women the way director Davis has done is just unthinkable. Too simple for its own good. Flaccid drama and exasperatingly slow journey. A chaotic panorama that's too busy flying a lot of metaphoric flags. Suffers from rambling, repetitive dialogue and the visual drabness endemic to digital video. The screenplay sabotages the movie's strengths at almost every juncture. All the characters are stereotypes, and their interaction is numbingly predictable. A trashy, exploitative, thoroughly unpleasant experience. Newcomer 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. Shouldn'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. Often silly – and gross – but it's rarely as moronic as some campus gross-out films. The 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. The performances are so leaden, Michael Rymer's direction is so bloodless and the dialogue is so corny that the audience laughs out loud. A subtle variation on I Spit On Your Grave in which our purported heroine pathologically avenges a hatred for men. Reggio's trippy, ambitious downer can also sometimes come across like nothing more than a glorified Nike ad. As 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. If 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. The 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. A 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. An overstuffed compendium of teen-Catholic-movie dogma. Too leisurely paced and visually drab for its own good, it succeeds in being only sporadically amusing. Ben 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? The movie's biggest offense is its complete and utter lack of tension. The 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. If this is the resurrection of the Halloween franchise, it would have been better off dead. This formulaic chiller will do little to boost Stallone's career. I 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. Though Avary has done his best to make something out of Ellis' nothing novel, in the end, his Rules is barely worth following. The average local news columnist has a bigger rant on the war between modern landscape architecture and small-town America. No 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. The plot is so predictable and sentimental that viewers are likely to lose interest before Sandrine and her goats walk off into the sunset. At first, the sight of a blind man directing a film is hilarious, but as the film goes on, the joke wears thin. Never 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. the 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. Technically, the film is about as interesting as an insurance commercial. The title's lameness should clue you in on how bad the movie is. The parts are better than the whole (bizarre, funny, tragic - like love in New York). While 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. The humor is hinged on the belief that knees in the crotch, elbows in the face and spit in the eye are inherently funny. It's a movie forged in the fires of Chick Flick Hell. Its characters are thinner than cardboard -- or even comic-book paper. Any one episode of The Sopranos would send this ill-conceived folly to sleep with the fishes. Feels like the grittiest movie that was ever made for the Lifetime cable television network. Lanie'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. Credit 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 Denzel Washington's efforts are sunk by all the sanctimony. If 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). So faithful to the doldrums of the not-quite-urban, not-quite-suburban milieu as to have viewers recoiling from the reality check. Rambles on in a disjointed, substandard fashion from one poorly executed action sequence to the next. There's an audience for it, but it could have been funnier and more innocent. I can only imagine one thing worse than Kevin Spacey trying on an Irish accent, and that's sultry Linda Fiorentino doing the same thing. An awkward and indigestible movie. The movie has very little to offer besides unintentional laughs. Haneke keeps us at arm's length. Guided more by intellect than heart, his story flattens instead of sharpens. All the well-meaningness in the world can't erase the fact that The Believer feels like a 12-Step Program for the Jewish Nazi. Like most sequels, it takes what worked last time, repeats it and adds more characters, more stunts, more stuff in attempt to camouflage its sameness. There'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. Message movie or an action-packed submarine spectacular? Alas, it's neither. No movement, no yuks, not much of anything. 'Dragonfly' is a movie about a bus wreck that turns into a film wreck. Thirty years ago, it would have been groundbreaking. Now it's just tired. Heavy-handed exercise in time-vaulting literary pretension. The movie is too cute to take itself too seriously, but it still feels like it was made by some very stoned college students. A thinly veiled excuse for Wilson to play his self-deprecating act against Murphy's well-honed prima donna shtick. A 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. The movie succumbs to being nothing more than a formulaic chase in the dark. Plays as hollow catharsis, with lots of tears but very little in the way of insights. It will come as no surprise that the movie isn't scary. But here's the real damn: It isn't funny, either. Quick: who wants to see a comedy about shoddy airport security? The 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. What 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. Cho'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. Looks awfully like one long tourist spot for a Mississippi that may never have existed outside of a scriptwriter's imagination. The 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. High Crimes miscasts nearly every leading character. The 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. De 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. I didn't believe for a moment in these villains or their plot. Another rent installment for the Ian Fleming estate. With 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. So lazy and slipshod it confuses the mere flashing of kinky soft-core imagery with naughty fun. Though it draws several decent laughs, it's low-cal Woody at best. Has little on its mind aside from scoring points with drag gags. Britney's performance cannot be faulted. Lucy's a dull girl, that's all. Well-shot but badly written tale set in a future ravaged by dragons. Sadly, Hewitt's forte is leaning forward while wearing low-cut gowns, not making snappy comebacks. If Melville is creatively a great whale, this film is canned tuna. This film is so slick, superficial and trend-hoppy, that it's easy to imagine that a new software program spit out the screenplay. Just one more collection of penis, breast and flatulence gags in search of a story. Or a profit. Or some damn thing. The 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. Enough trivializes an important crisis, reduces it to an almost comic embarrassment. The 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. A 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. Gee, a second assassin shot Kennedy? Moot point. A hysterical yet humorless disquisition on the thin line between sucking face and literally sucking face. Needless to say, the dramatics that follow are utter hooey. The problem is that rather than dramatizing this premise, Mr. Desplechin is content to state it. Madonna still can't act a lick. Even 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. If you pitch your expectations at an all time low, you could do worse than this oddly cheerful -- but not particularly funny -- body-switching farce. The episodic film makes valid points about the depersonalization of modern life. But the characters tend to be cliches whose lives are never fully explored. Serry 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. Don't let your festive spirit go this far. Though 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. Hey, at least the title of this film lets you know exactly where it's heading. Intended to be a comedy about relationships, this wretched work falls flat in just about every conceivable area. Sensitive though not quite revelatory documentary. Director 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. ...perhaps the heaviest, most joyless movie ever made about giant dragons taking over the world. Suggests 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. I'd give real money to see the perpetrators of Chicago torn apart by dingoes. Movies like this are selling the old European candor, the old wink of 'bold' revelation. But in 2002, such revelations wilt. The timing in nearly every scene seems a half beat off. I admire it and yet cannot recommend it, because it overstays its natural running time. A fairly by-the-books blend of action and romance with sprinklings of intentional and unintentional comedy. Flounders due to the general sense that no two people working on the production had exactly the same thing in mind. Even 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. The story bogs down in a mess of purposeless violence. Despite some gulps the film is a fuzzy huggy. McKay deflates his piece of puffery with a sour cliche and heavy doses of mean-spiritedness A recipe for cinematic disaster...part Quentin Tarantino, part Guy Ritchie, and part 1960s spy spoof, it's all bad. The cumulative effect of the relentless horror on parade numbs the movie's power as a work of drama. Another 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. Aaliyah 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. Outrageousness 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. Much of what is meant to be 'inspirational' and 'uplifting' is simply distasteful to audiences not already sharing (the movie's) mindset. Well before it's over, Beijing Bicycle begins spinning its wheels. Home 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. (Nelson's) movie about morally compromised figures leaves viewers feeling compromised, unable to find their way out of the fog and the ashes. Passion, 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. Looks like a high school film project completed the day before it was due. Truth to tell, if you've seen more than half-a-dozen horror films, there's nothing here you haven't seen before. Abandons 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. Even die-hard fans of Japanese animation ... will find this one a challenge. Filmmakers 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. The movie gets muted and routine. The issue of faith is not explored very deeply It'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. The situations and jokes are as predictable and as lowbrow as the endless pratfalls the boys take in their high heels. It'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. I was perplexed to watch it unfold with an astonishing lack of passion or uniqueness. K-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. A very stylish but ultimately extremely silly tale...a slick piece of nonsense but nothing more. Automatically pegs itself for the straight-to-video sci-fi rental shelf. The film is like a series of beginnings and middles that never take off. Feels less like it's about teenagers, than it was written by teenagers. Ja Rule and Kurupt should have gotten to rap. It would have benefitted the dialogue. A standard haunted house tale transplanted to the high seas. Elicits more groans from the audience than Jar Jar Binks, Scrappy Doo and Scooby Dumb, all wrapped up into one. It's badly acted, blandly directed, and could have been scripted by someone who just graduated from elementary school. In the end, White Oleander isn't an adaptation of a novel. It's a flashy, star-splashed reduction. This 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. The angst-ridden, affluent slacker characters are more grating than engaging. A soggy, shapeless mess...just a dumb excuse for a waterlogged equivalent of a haunted-house movie. Men in Black II has sequel-itis something fierce. An ungainly, comedy-deficient, B-movie rush job... A combination of standard, stiff TV-style animation and snazzy-looking digital effects that do little to disguise the fact that the characters barely move. An unsatisfying hybrid of Blair Witch and typical stalk-and-slash fare, where the most conservative protagonist is always the last one living. Say this for the soundtrack, it drowns out the lousy dialogue. After seeing SWEPT AWAY, I feel sorry for Madonna. Instead 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. A 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. Maudlin and melodramatic we expected. Boring we didn't. Never quite transcends jokester status ... and the punchline doesn't live up to Barry's dead-eyed, perfectly chilled delivery. The film's bathos often overwhelms what could have been a more multifaceted look at this interesting time and place. It almost plays like Solaris, but with guns and jokes. A baffling misfire, and possibly the weakest movie (Woody Allen) has made in the last twenty years. It won't be long before you'll spy I Spy at a video store near you. This film looks like it was produced in 1954, shelved for 48 years, and repackaged for a 2002 audience. Propelled not by characters but by caricatures. There is not an ounce of honesty in the entire production. This extremely unfunny film clocks in at 80 minutes, but feels twice as long. Earnest 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. The pivotal narrative point is so ripe the film can't help but go soft and stinky. For 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. A predictable and stereotypical little B-movie. If 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. Frustratingly, Dridi tells us nothing about El Gallo other than what emerges through his music. Places a slightly believable love triangle in a difficult-to-swallow setting, and then disappointingly moves the story into the realm of an improbable thriller. Stephen 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. A very average science fiction film. Undone by its overly complicated and derivative screenplay, the glacier-paced direction and the stereotypical characters. How anyone over the age of 2 can stomach the touchy-feely message this preachy produce promotes is beyond us. The sort of movie that gives tastelessness a bad rap. The cold and dreary weather is a perfect metaphor for the movie itself, which contains few laughs and not much drama. The plot is straight off the shelf, the performances are television- caliber and the message of providing solace through deception is a little creepy. ordinary melodrama that is heavy on religious symbols but wafer-thin on dramatic substance A whimsical if predictable time-travel fable marred by a willful single-mindedness. Those 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. Jolie's performance vanishes somewhere between her hair and her lips. As with too many studio pics, plot mechanics get in the way of what should be the lighter-than-air adventure. Static, repetitive, muddy and blurry, Hey Arnold! would seem to have a lock on the title of ugliest movie of the year. For 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. When it comes to entertainment, children deserve better than Pokemon 4Ever. What The Four Feathers lacks is genuine sweep or feeling or even a character worth caring about. While Benigni (who stars and co-wrote) seems to be having a wonderful time, he might be alone in that. Yes, 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? Preposterous and tedious, Sonny is spiked with unintentional laughter that, unfortunately, occurs too infrequently to make the film even a guilty pleasure. Calling this movie brainless would be paying it a compliment: it's more like entertainment for trolls. None 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. ... just a big mess of a movie, full of images and events, but no tension or surprise. As 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. Splashes 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. ... has virtually no script at all ... Will only satisfy those who can't tell the difference between the good, the bad and the ugly. This kind of dark comedy requires a delicate, surgical touch. But director Danny DeVito and screenwriter Adam Resnick (remember Cabin Boy?) just pound away. At 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. Rather quickly, the film falls into a soothing formula of brotherly conflict and reconciliation. Screenwriters Scott Abbott and Michael Petroni have turned Rice's complex Akasha into a cartoon monster. The writers, director Wally Wolodarsky, and all the actors should start their own coeducational fraternity: Kappa Rho Alpha Phi. Bad beyond belief and ridiculous beyond description. The new faces are interesting, but the old story isn't, especially when it starts to seem more improvised than scripted. Most of the action setups are incoherent. Liman, 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. ... surprisingly inert for a movie in which the main character travels back and forth between epochs. The 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. Dreary, highly annoying...'Some Body' will appeal to No One. There's something deeply creepy about Never Again, a new arrow in Schaeffer's quiver of ineptitudes. The problem with concept films is that if the concept is a poor one, there's no saving the movie. Sorry, Charlie A painfully leaden film destined for pre-dawn cable television slots. Blessed 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. The 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. Shocking only in that it reveals the filmmaker's bottomless pit of self-absorption. This 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. All ends well, sort of, but the frenzied comic moments never click. If 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. Formula 51 is so trite that even Yu's high-energy action stylings can't break through the stupor. Only 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. When the painted backdrops in a movie are more alive than its characters, you know you're in trouble. (Two) fairly dull -- contrasting and interlocking stories about miserable Scandinavian settlers in 18th-century Canada, and yuppie sailboaters in the here and now. The film is really not so much bad as bland. The central story lacks punch. Though 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. This may be the dumbest, sketchiest movie on record about an aspiring writer's coming-of-age. Succumbs to the same kind of maudlin, sentimental mysticism that mars the Touched by an Angel school of non-God spiritual-uplift movies. A harmless and mildly amusing family comedy. What was subtle and mystifying in the novella is now broad and farcical. The kids often appear to be reading the lines and are incapable of conveying any emotion. ``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? Sucking 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... This 72-minute film does have some exciting scenes, but it's a tad slow. While Super Troopers is above Academy standards, its quintet of writers could still use some more schooling. A mix of velocity and idiocy, this ruinous remake lacks the brawn -- and the brains -- of the 1970s original. The low-budget Full Frontal was one of the year's murkiest, intentionally obscure and self-indulgent pictures, and Solaris is its big-budget brother. The 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. The film seems all but destined to pop up on a television screen in the background of a scene in a future Quentin Tarantino picture A free-for-all of half-baked thoughts, clumsily used visual tricks and self-indulgent actor moments. Apallingly absurd...the chemistry or lack thereof between Newton and Wahlberg could turn an Imax theater into a 9" black and white portable TV. A well acted and well intentioned snoozer. The smug, oily demeanor that Donovan adopts throughout the stupidly named Pipe Dream is just repulsive. Must-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. Despite its good nature and some genuinely funny moments, Super Troopers suffers from a bad case of arrested development. It's hard not to feel you've just watched a feature-length video game with some really heavy back story. I watched the brainless insanity of No Such Thing with mounting disbelief. This 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. Kwan makes the mix-and- match metaphors intriguing, while lulling us into torpor with his cultivated allergy to action. While obviously an extremely personal work, it remains inextricably stuck in an emotionally unavailable rut. Any 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. I loved looking at this movie. I just didn't care as much for the story. Has all the poignancy of a Hallmark card and all the comedy of a Gallagher stand-up act. It doesn't do the original any particular dishonor, but neither does it exude any charm or personality. fear dot com is so rambling and disconnected it never builds any suspense. A gorgeous, somnolent show that is splendidly mummified and thoroughly unsurprising. A 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. It feels like a community theater production of a great Broadway play: Even at its best, it will never hold a candle to the original. The film apparently takes place in a fantasy world where people in hotel hallways recite poetry in voice-over instead of speaking to each other. The element of surprise might be the only thing Femme Fatale has going for it. It'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. Maybe it's asking too much, but if a movie is truly going to inspire me, I want a little more than this. A graceless, witless attempt at mating Some Like It Hot with the WWII espionage thriller. The story and characters are nowhere near gripping enough. Based on a David Leavitt story, the film shares that writer's usual blend of observant cleverness, too-facile coincidence and slightly noxious preciousness. Just like every other Seagal movie, only louder and without that silly ponytail. To enjoy this movie's sharp dialogue and delightful performance by Jolie and Burns, you have to gloss over the no sense ending. National Lampoon's Van Wilder could be the worst thing to come out of National Lampoon since Class Reunion This 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. Ecks this one off your must-see list. Overall, the film misses the brilliance of Jelinek's novel by some way. It settles for being merely grim. The Irwins emerge unscathed, but the fictional footage is unconvincing and criminally badly acted. It'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. Just because it really happened to you, honey, doesn't mean that it's interesting to anyone else. Just 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. Every 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. This isn't a ``Friday'' worth waiting for. Everything that's worthwhile about Collision Course can already be seen on television. If this movie belonged to a sorority, it would be called Beta Alpha Delta. Not 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. Uneasy mishmash of styles and genres. Herzog 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. All in all, there's only one thing to root for: expulsion for everyone. Beyond a handful of mildly amusing lines ... there just isn't much to laugh at. Secret Ballot is too contemplative to be really funny. The film's center will not hold. Myers 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. Too lazy to take advantage of its semi-humorous premise. A great ending doesn't make up for a weak movie, and Crazy as Hell doesn't even have a great ending. Dialogue-heavy and too cerebral for its own good -- or, at any rate, too cerebral for its racy subject matter. Its over-reliance on genre conventions, character types and formulaic conflict resolutions crushes all the goodwill it otherwise develops. As an actor, The Rock is aptly named. A mostly tired retread of several other mob tales. I wish I could say ``Thank God It's Friday'', but the truth of the matter is I was glad when it was over. Nothing about it fits. As it abruptly crosscuts among the five friends, it fails to lend the characters' individual stories enough dramatic resonance to make us care about them. Somehow 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. The cast is so low-wattage that none of the characters comes off as big ... and the setting remains indistinct. Consider the title's clunk-on-the-head that suggests the overtime someone put in to come up with an irritatingly unimaginative retread concept. The movie quickly drags on becoming boring and predictable. I tried to read the time on my watch. The film makes a tragic error by going on for too long, trying to mirror every subsequent event in Chinese history: war, revolution, Communism, etc. Johnson has, in his first film, set himself a task he is not nearly up to. Ultimately the project comes across as clinical, detached, uninvolving, possibly prompting audience members to wonder, 'What's the point?' The 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. The film meant well in its horse tale about freedom, but wasn't able to reach the heart because it was too overbearing. The 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. Once the audience figure out what's being said, the filmmaker's relative passivity will make it tough for them to really care. There's nothing provocative about this film save for the ways in which it studiously avoids provoking thought. It seems just a long, convoluted ploy to get men into drag -- period drag, no less. The 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. Even by dumb action-movie standards, Ballistic: Ecks vs. Sever is a dumb action movie. The film equivalent of a toy chest whose contents get scattered over the course of 80 minutes. Just a bloody mess. Creepy but ultimately unsatisfying thriller. You 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. Has 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. Bears is bad. Not 'terrible filmmaking' bad, but more like, 'I once had a nightmare like this, and it's now coming true' bad. As is most commonly case with projects such noble and lofty ambitions, the film is less poetic than simply pretentious. George, hire a real director and good writers for the next installment, please. For a film about two mismatched buddies, Crystal and De Niro share little screen time and even less chemistry. However 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. Extreme Oops - oops, ops, no matter how you spell it, it's still a mistake to go see it. What could and should have been biting and droll is instead a tepid waste of time and talent. What will, most likely, turn out to be the most repellent movie of 2002. ...too dull to enjoy. A 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. Here's a self-congratulatory 3D IMAX rah-rah. Eastwood 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. A sophomoric exploration of 'life problems' most people solved long ago -- or at least got tired of hearing people kvetch about. It's all very cute, though not terribly funny if you're more than six years old. The impact of the Armenian genocide is diluted by too much stage business in the modern day. Going to the website may be just as fun (and scary) as going to the film. Lacking 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. Admirable, certainly, but not much fun to watch. For Caine Lovers only. A shambles of a movie--visually unattractive, unbearably loud and utterly silly...its hilarity is completely unintentional. De 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. No, it's not nearly as good as any of its influences. A reasonably efficient mechanism, but it offers few surprises and finds its stars slumming in territory they should have avoided. The rest of the plot is impossible to explain without blowing whatever tension there is, although it's more comedy than suspense De Palma creates. Human Nature talks the talk, but it fails to walk the silly walk that distinguishes the merely quirky from the surreal. City 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. The Marquis de Sade couldn't have been as dull a person as this film makes him out to be. What could have been a neat little story about believing in yourself is swamped by heavy-handed melodrama. The cast is uniformly excellent ... but the film itself is merely mildly charming. Drives for the same kind of bittersweet, conciliatory tone that Three Seasons achieved but loses its way in rhetorical excess and blatant sentimentality. A bigger holiday downer than your end-of-year 401(k) statement. The whole thing plays out with the drowsy heaviness of synchronized swimmer wearing a wool wetsuit. Fairly 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! It 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. Take 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. It'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. Showtime is closer to Slowtime. It may be an easy swipe to take, but this Barbershop just doesn't make the cut. The Weight of Water uses water as a metaphor for subconscious desire, but this leaky script barely stays afloat. 'How many more voyages can this limping but dearly-loved franchise survive?' Despite 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. Fans of the TV series will be disappointed, and everyone else will be slightly bored. The only element of suspense is whether the movie will change titles or distributors again before the closing credits roll. Barely goes beyond comic book status. It's disappointing when filmmakers throw a few big-name actors and cameos at a hokey script. I 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. An eccentric little comic/thriller deeply in love with its own quirky personality. Afraid to pitch into farce, yet only half-hearted in its spy mechanics, All the Queen's Men is finally just one long drag. Maybe it's the star power of the cast or the redundant messages, but something aboul ``Full Frontal'' seems, well, contrived. (Morgan), Judd and Franklin can't save the script, rooted in a novel by Joseph Finder, from some opportunism. Passably entertaining but also mechanical and joyless. Safe Conduct, however ambitious and well-intentioned, fails to hit the entertainment bull's-eye. My response to the film is best described as lukewarm. Maybe I found the proceedings a little bit too conventional. Too timid to bring a sense of closure to an ugly chapter of the twentieth century. It'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. It's too long, too repetitive, and takes way too many years to resolve to be a total winner. A sudsy cautionary tale. A movie that tries to fuse the two 'woods' but winds up a Bolly-Holly masala mess. Mr. 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. Leaves you with a knot in your stomach, its power is undercut by its own head-banging obviousness. Watching 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. Unfortunately, as a writer, Mr. Montias isn't nearly as good to his crew as he is as a director or actor. On 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. The 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. One 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. ...this movie has a glossy coat of action movie excess while remaining heartless at its core. Murder By Numbers is like a couple of mediocre TV-movie -of-the-week films clumsily stuck together. The film is surprisingly well-directed by Brett Ratner, who keeps things moving well -- at least until the problematic third act. Warmed-over Tarantino by way of wannabe Elmore Leonard. (Sen's) soap opera-ish approach undermines his good intentions. Showtime 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. Sushi for the connoisseurs of the macabre. Don't waste your money. Though certainly original in form, Altar Boys requires a taste for Swamp Thing-type animation, doubled with a deafening score. There aren't many laughs in this interesting study of the cultural mores of Georgian Jews in Tel Aviv. There's not enough to sustain the comedy. Like 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. We may get the full visceral impact of a ruthless army on the warpath but no sense of the devilish complexity of the Balkans conflict. You're better off staying home and watching The X-Files. Chaotic, 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. Bears 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. This 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. Friday After Next has the same problem that Next Friday did -- it's called Where's Chris Tucker When You Need Him? This film is full of rabbits. Brimful. But like most rabbits, it seems to lack substance. I 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. I kept wishing I was watching a documentary about the wartime Navajos and what they accomplished instead of all this specious Hollywood hoo-ha. No number of fantastic sets, extras, costumes and spectacular locales can disguise the emptiness at the center of the story. A movie far more cynical and lazy than anything a fictitious Charlie Kaufman might object to. Could The Country Bears really be as bad as its trailers? In a word -- yes. If High Crimes were any more generic it would have a universal product code instead of a title. Reggio falls victim to relying on the very digital technology that he fervently scorns, creating a meandering, inarticulate and ultimately disappointing film. The 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? The 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. Despite the authenticity of the trappings, the film is overblown in its plotting, hackneyed in its dialogue and anachronistic in its style. Murder and mayhem of this sort quickly becomes monotonous. The journey toward redemption feels more like a cinematic experiment than a full-blown movie. That Zhang would make such a strainingly cute film -- with a blind orphan at its center, no less -- indicates where his ambitions have wandered. The Gantzes' interviews tend to let the guys off the hook. The 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. This is a good movie in spurts, but when it doesn't work, it's at important times. Parker 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. Flotsam in the sea of moviemaking, not big enough for us to worry about it causing significant harm and not smelly enough to bother despising. A TV episode inflated past its natural length. Involving at times, but lapses quite casually into the absurd. All 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. There are weird resonances between actor and role here, and they're not exactly flattering. The unceasing sadism is so graphically excessive, the director just ends up exposing his own obsession. The story ... is moldy and obvious. It'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. Suffocated at conception by its Munchausen-by-proxy mum. Punish the vehicle to adore the star. Even if Britney Spears is really cute, her movie is really bad. Big Fat Liar is just futile silliness looking to tap into the kiddie sensibilities. Usually when I get this much syrup, I like pancakes to go with it. All the necessary exposition prevents the picture from rising above your generic sand 'n' sandal adventure. Glib, satirical documentary that fudges facts, makes facile points and engages in the cinematic equivalent of tabloid journalism. Gangs of New York is an unapologetic mess, whose only saving grace is that it ends by blowing just about everything up. An overblown clunker full of bad jokes, howling cliches and by-the-numbers action sequences. Without a strong script and energetic acting, Dogma films can produce the same sleep-inducing effects as watching your neighbor's home videos. A mild, reluctant, thumbs down. Strong setup and ambitious goals fade as the film descends into unsophisticated scare tactics and B-film thuggery. Schindler's List it ain't. A cinematic sleeping pill of impressive potency. It's an awfully derivative story. The movie barely makes sense, with its unbelievable naïveté and arbitrary flashbacks. It's an earnest debut full of heartfelt performances, but is ultimately let down by a story that is all too predictable. About as cutting-edge as Pet Rock: The Movie. With generic sets and B-grade special effects, Jason is about as convincing on the sci-fi front as TV's defunct Cleopatra 2525. Not sweet enough to liven up its predictable story and will leave even fans of hip-hop sorely disappointed. Winds up feeling like lots of other quirky movies that try to score hipness points with young adults. Oft-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 The pacing is glacial, the screenplay is stiff as a board, and things heat up only in the movie's final scenes. The premise is overshadowed by the uberviolence of the Clericks as this becomes just another kung-fu sci-fi movie with silly action sequences. With its hints of a greater intelligence lurking somewhere, The Ring makes its stupidity more than obvious. It's painful. Pumpkin struts about with ``courage'' pinned to its huckster lapel while a yellow streak a mile wide decorates its back. An uneven film dealing with too many problems to be taken seriously. Sheridan ... smoothes over sources of conflict that could have lent the film a bit more depth. An atonal estrogen opera that demonizes feminism while gifting the most sympathetic male of the piece with a nice vomit bath at his wedding. Half 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. Writer/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. (Newton)wanders through CHARLIE completely unaware she needs to show some presence and star quality. Unfortunately, the picture failed to capture me. I found it slow, drab, and bordering on melodramatic. A lousy movie that's not merely unwatchable, but also unlistenable. The best way to hope for any chance of enjoying this film is by lowering your expectations. Then lower them a bit more. When 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. Cliches are as thick as the cigarette smoke. A woozy, roisterous, exhausting mess, and the off-beat casting of its two leads turns out to be as ill-starred as you might expect. 'Abandon all hope, ye who enter here'...you should definitely let Dante's gloomy words be your guide. What 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. A grim, flat and boring werewolf movie that refuses to develop an energy level. Birot's directorial debut (she co-wrote the script with Christophe Honoré) isn't so much bad as it is bland. Watching the film is like reading a Times Portrait of Grief that keeps shifting focus to the journalist who wrote it. Enough similarities to Gymkata and Howie Long's Firestorm that my fingernails instinctively crawled towards my long-suffering eyeballs. Succeeds in providing a disquiet world the long-dreaded completion of the Police Academy series. Christians 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. If 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. A frantic search for laughs, with a hit-to-miss ratio that doesn't exactly favour the audience. Like a documentary version of Fight Club, shorn of social insight, intellectual pretension and cinematic interest. ``An entire film about researchers quietly reading dusty old letters.'' Pryor Lite, with half the demons, half the daring, much less talent, many fewer laughs. What's at stake in this film is nothing more than an obsolete, if irritating, notion of class. The stories here suffer from the chosen format. While 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. Just how extreme are these ops? I regret to report that these ops are just not extreme enough. The actors are forced to grapple with hazy motivations that never come into focus. John Leguizamo may be a dramatic actor -- just not in this movie. The sequel has turned completely and irrevocably bizarre to the point of utter nonsense. Hardly 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. Build 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. Rainy days and movies about the disintegration of families always get me down. ...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. The Master Of Disaster - it's a piece of dreck disguised as comedy. The 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. The stupidest, most insulting movie of 2002's first quarter. It'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. A film so tedious that it is impossible to care whether that boast is true or not. None of this violates the letter of Behan's book, but missing is its spirit, its ribald, full-throated humor. Bad Company leaves a bad taste, not only because of its bad-luck timing, but also the staleness of its script. Even if it ultimately disappoints, the picture does have about a matinee admission's worth of funny to keep it afloat. Fails to bring as much to the table. A film made with as little wit, interest, and professionalism as artistically possible for a slummy Hollywood caper flick. Disturbingly superficial in its approach to the material. If you're not the target demographic ... this movie is one long chick-flick slog. I hate this movie It'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. Gooding and Coburn are both Oscar winners, a fact which, as you watch them clumsily mugging their way through Snow Dogs, seems inconceivable. At 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 ...pitiful, slapdash disaster. A DOA dud from frame one. Jaw-droppingly superficial, straining to get by on humor that is not even as daring as John Ritter's glory days on Three's Company. There are plenty of scenes in Frida that do work, but rarely do they involve the title character herself. Although 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. The 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. Distances you by throwing out so many red herrings, so many false scares, that the genuine ones barely register. Godard uses his characters -- if that's not too glorified a term -- as art things, mouthpieces, visual motifs, blanks. The movie generates plot points with a degree of randomness usually achieved only by lottery drawing. A predictable, manipulative stinker. The story passes time until it's time for an absurd finale of twisted metal, fireballs and revenge. Eastwood winces, clutches his chest and gasps for breath. It's a spectacular performance - ahem, we hope it's only acting. The movie suffers from two fatal ailments -- a dearth of vitality and a story that's shapeless and uninflected. It's just weirdness for the sake of weirdness, and where Human Nature should be ingratiating, it's just grating. An ambitiously naturalistic, albeit half-baked, drama about an abused, inner-city autistic teen. once she lets her love depraved leads meet, (Denis') story becomes a hopeless, unsatisfying muddle The dose is strong and funny, for the first 15 minutes anyway; after that, the potency wanes dramatically. The people in ABC Africa are treated as docile, mostly wordless ethnographic extras. What'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. No doubt the star and everyone else involved had their hearts in the right place. Where their heads were is anyone's guess. Call me a cynic, but there's something awfully deadly about any movie with a life-affirming message. A gratingly unfunny groaner littered with zero-dimensional, unlikable characters and hackneyed, threadbare comic setups. Got 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. A painfully slow cliche-ridden film filled with more holes than Clyde Barrow's car. Like leafing through an album of photos accompanied by the sketchiest of captions. I guess it just goes to show that if you give a filmmaker an unlimited amount of phony blood, nothing good can happen. Gaghan captures the half-lit, sometimes creepy intimacy of college dorm rooms, a subtlety that makes the silly, over-the-top coda especially disappointing. Feels less like a change in (Herzog's) personal policy than a half-hearted fluke. One of the most unpleasant things the studio has ever produced. Will anyone who isn't a Fangoria subscriber be excited that it hasn't gone straight to video? A selection of scenes in search of a movie. (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. Will 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. True to its animatronic roots:...as stiff, ponderous and charmless as a mechanical apparatus...'The Country Bears' should never have been brought out of hibernation. (Evans is) a fascinating character, and deserves a better vehicle than this facetious smirk of a movie. The script's judgment and sense of weight is way, way off. You 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. Evelyn 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. A derivative collection of horror and sci-fi cliches. Loosely speaking, we're in All of Me territory again, and, strictly speaking, Schneider is no Steve Martin. As 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. Limps along on a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very, very slowly. Just the sort of lazy tearjerker that gives movies about ordinary folk a bad name. The redeeming feature of Chan's films has always been the action, but the stunts in The Tuxedo seem tired and, what's worse, routine. While 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. Has all the scenic appeal of a cesspool. A rambling ensemble piece with loosely connected characters and plots that never quite gel. A Lifetime movie about men. The Balkans provide the obstacle course for the love of a good woman. It'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 This is a movie that starts out like Heathers, then becomes Bring it On, then becomes unwatchable. The screenplay flounders under the weight of too many story lines. I think it was Plato who said, 'I think, therefore I know better than to rush to the theatre for this one.' If 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. This is rote drivel aimed at Mom and Dad's wallet. Contrived, maudlin and cliche-ridden...if this sappy script was the best the contest received, those rejected must have been astronomically bad. I hate the feeling of having been slimed in the name of High Art. This is more a case of 'Sacre bleu!' than 'Magnifique'. The 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. Whether 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. Yet another weepy Southern bore-athon. I 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. Perhaps 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. Except as an acting exercise or an exceptionally dark joke, you wonder what anyone saw in this film that allowed it to get made. This insufferable movie is meant to make you think about existential suffering. Instead, it'll only put you to sleep. Who 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.' A sleep-inducingly slow-paced crime drama with clumsy dialogue, heavy-handed phoney-feeling sentiment, and an overly-familiar set of plot devices. It's so tedious that it makes you forgive every fake, dishonest, entertaining and, ultimately, more perceptive moment in Bridget Jones's Diary. Almost as offensive as ``Freddy Got Fingered.'' The 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. It is depressing, ruthlessly pained and depraved, the movie equivalent of staring into an open wound. Ponderous, plodding soap opera disguised as a feature film. Cold, pretentious, thoroughly dislikable study in sociopathy. For the future, one hopes Mr. Plympton will find room for one more member of his little band, a professional screenwriter. A 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. Reign of Fire never comes close to recovering from its demented premise, but it does sustain an enjoyable level of ridiculousness. Human Nature is a goofball movie, in the way that Malkovich was, but it tries too hard. Originality is sorely lacking. The 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. Though 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. Ram Dass Fierce Grace moulds itself as an example to up-and-coming documentarians, of the overlooked pitfalls of such an endeavour. Lucky Break is perfectly inoffensive and harmless, but it's also drab and inert. For a story set at sea, Ghost Ship is pretty landbound, with its leaden acting, dull exposition and telegraphed 'surprises.' There might be some sort of credible gender-provoking philosophy submerged here, but who the hell cares? Nothing more than a stifling morality tale dressed up in peekaboo clothing. I like my Christmas movies with more elves and snow and less pimps and ho's. It all seemed wasted like DeNiro's once promising career and the once grand Long Beach boardwalk. (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. Unfortunately, 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. Just entertaining enough not to hate, too mediocre to love. 'Sophisticated' viewers who refuse to admit that they don't like it will likely call it 'challenging' to their fellow sophisticates. Equilibrium the movie, as opposed to the manifesto, is really, really stupid. Excruciatingly unfunny and pitifully unromantic. The film's thoroughly recycled plot and tiresome jokes ... drag the movie down. It doesn't offer audiences any way of gripping what its point is, or even its attitude toward its subject. This kiddie-oriented stinker is so bad that I even caught the gum stuck under my seat trying to sneak out of the theater Though Impostor deviously adopts the guise of a modern motion picture, it too is a bomb. Cox offers plenty of glimpses at existing photos, but there are no movies of Nijinsky, so instead the director treats us to an aimless hodgepodge. Every note rings false. When 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. It never rises to its clever what-if concept. Admirably ambitious but self-indulgent. This story of unrequited love doesn't sustain interest beyond the first half-hour. This angst-ridden territory was covered earlier and much better in Ordinary People. The 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. A big, loud, bang-the-drum bore. (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. The concept behind Kung Pow: Enter the Fist is hilarious. It's too bad nothing else is. Hardman 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. El Crimen Del Padre Amaro would likely be most effective if used as a tool to rally anti-Catholic protestors. Interesting and thoroughly unfaithful version of Carmen A serious movie with serious ideas. But seriously, folks, it doesn't work. There's nothing exactly wrong here, but there's not nearly enough that's right. The action here is unusually tame, the characters are too simplistic to maintain interest, and the plot offers few surprises. I couldn't help but feel the wasted potential of this slapstick comedy. What 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. (A) painfully flat gross-out comedy ... Even if you're an Elvis person, you won't find anything to get excited about on this DVD. The movie certainly has its share of clever moments and biting dialogue, but there's just not much lurking below its abstract surface. It's bedeviled by labored writing and slack direction. I'm sure there's a teenage boy out there somewhere who's dying for this kind of entertainment. The Tuxedo miscalculates badly by forcing the star to play second fiddle to the dull effects that allow the suit to come to life. The film is a confusing melange of tones and styles, one moment a romantic trifle and the next a turgid drama. Obviously, a lot of people wasted a lot of their time (including mine) on something very inconsequential. There'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. It drowns in sap. Deliberately and devotedly constructed, Far from Heaven is too picture postcard perfect, too neat and new pin-like, too obviously a recreation to resonate. It'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. I'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. The 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. The modern-day characters are nowhere near as vivid as the 19th-century ones. Blessed 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. Uneven performances and a spotty script add up to a biting satire that has no teeth. Director Jay Russell stomps in hobnail boots over Natalie Babbitt's gentle, endearing 1975 children's novel. Benigni's Pinocchio is extremely straight and mind-numbingly stilted, its episodic pacing keeping the film from developing any storytelling flow. The troubling thing about Clockstoppers is that it doesn't make any sense. With its paint fights, motorized scooter chases and dewy-eyed sentiment, it's a pretty listless collection of kid-movie clichés. Mostly the film is just hectic and homiletic: two parts exhausting Men in Black mayhem to one part family values. Kicks off with an inauspicious premise, mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper. A rote exercise in both animation and storytelling. The material and the production itself are little more than routine. The 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. Not even Steven Spielberg has dreamed up such blatant and sickening product placement in a movie. It's all surface psychodramatics. The Mothman Prophecies, which is mostly a bore, seems to exist only for its climactic setpiece. That frenetic spectacle (on the TV show) has usually been leavened by a charm that's conspicuously missing from the Girls' big-screen blowout. Kitschy, flashy, overlong soap opera. For all the time we spend with these people, we never really get inside of them. Yet another Arnold vehicle that fails to make adequate use of his particular talents. Sandra 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. An undistinguished attempt to make a classic theater piece cinematic. too 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. There is simply not enough of interest onscreen to sustain its seventy-minute running time. A wordy wisp of a comedy. Broomfield's style of journalism is hardly journalism at all, and even those with an avid interest in the subject will grow impatient. (Seagal's) strenuous attempt at a change in expression could very well clinch him this year's Razzie. Has the disjointed feel of a bunch of strung-together TV episodes. A 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. Ozpetek 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. A dopey movie clothed in excess layers of hipness. The Sweetest Thing is expressly for idiots who don't care what kind of sewage they shovel into their mental gullets to simulate sustenance. Sinks so low in a poorly played game of absurd plot twists, idiotic court maneuvers and stupid characters that even Freeman can't save it. I realized that no matter how fantastic Reign of Fire looked, its story was making no sense at all. It 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. Some 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. SC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit, yet it's geared toward an audience full of masters of both. After all the big build-up, the payoff for the audience, as well as the characters, is messy, murky, unsatisfying. Seems content to dog-paddle in the mediocre end of the pool, and it's a sad, sick sight. It's refreshing that someone understands the need for the bad boy; Diesel, with his brawny frame and cool, composed delivery, fits the bill perfectly. If all of Eight Legged Freaks was as entertaining as the final hour, I would have no problem giving it an unqualified recommendation. Suffers from a flat script and a low budget. There 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. Seemingly 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. The film tries to touch on spousal abuse but veers off course and becomes just another revenge film. As it stands it's an opera movie for the buffs. This franchise has not spawned a single good film. The crap continues. Its inescapable absurdities are tantamount to insulting the intelligence of anyone who hasn't been living under a rock (since Sept. 11). High drama, Disney-style - a wing and a prayer and a hunky has-been pursuing his castle in the sky. Like 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. One big blustery movie where nothing really happens. When it comes out on video, then it's the perfect cure for insomnia. Like a comedian who starts off promisingly but then proceeds to flop, Comedian runs out of steam after a half hour. The 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. Director Chris Eyre is going through the paces again with his usual high melodramatic style of filmmaking. As it stands, there's some fine sex onscreen, and some tense arguing, but not a whole lot more. I could just feel the screenwriter at every moment 'Tap, tap, tap, tap, tapping away' on this screenplay. The picture doesn't know it's a comedy. A stupid, derivative horror film that substitutes extreme gore for suspense. The rollerball sequences feel sanitised and stagey. Roman Polanski directs The Pianist like a surgeon mends a broken heart; very meticulously but without any passion. Nothing more than a run-of-the-mill action flick. Lan Yu is certainly a serviceable melodrama, but it doesn't even try for the greatness that Happy Together shoots for (and misses). This is an action movie with an action icon who's been all but decommissioned. Even if it is generally amusing from time to time, I Spy has all the same problems the majority of action comedies have. Much like Robin Williams, Death to Smoochy has already reached its expiration date. An annoying orgy of excess and exploitation that has no point and goes nowhere. A tired, unnecessary retread...a stale copy of a picture that wasn't all that great to begin with. An often unfunny romp. A worthy idea, but the uninspired scripts, acting and direction never rise above the level of an after-school TV special. Twenty 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. Ear-splitting exercise in formula crash-and-bash action. We have an actor who is great fun to watch performing in a film that is only mildly diverting. Despite Hoffman's best efforts, Wilson remains a silent, lumpish cipher; his encounters reveal nothing about who he is or who he was before. There's a thin line between likably old-fashioned and fuddy-duddy, and The Count of Monte Cristo ... never quite settles on either side. The emotional overload of female angst irreparably drags the film down. Schaefer's...determination to inject farcical raunch...drowns out the promise of the romantic angle. Like Showgirls and Glitter, the most entertaining moments here are unintentional. While some of the camera work is interesting, the film's mid-to-low budget is betrayed by the surprisingly shoddy makeup work. The 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. Impostor is a step down for director Gary Fleder. Seagal, who looks more like Danny Aiello these days, mumbles his way through the movie. The movie is a negligible work of manipulation, an exploitation piece doing its usual worst to guilt-trip parents. Lacks dramatic punch and depth. There are moments of real pleasure to be found in Sara Sugarman's whimsical comedy Very Annie-Mary but not enough to sustain the film. I can analyze this movie in three words: Thumbs Friggin' Down. Sadly, 'Garth' hasn't progressed as nicely as 'Wayne.' Make like the title and dodge this one. This is not one of the movies you'd want to watch if you only had a week to live. The first hour is tedious though Ford and Neeson capably hold our interest, but its just not a thrilling movie. Here'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. It's obvious (Je-Gyu is) trying for poetry; what he gets instead has all the lyricism of a limerick scrawled in a public restroom. Sweet Home Alabama is one dumb movie, but its stupidity is so relentlessly harmless that it almost wins you over in the end. (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. No amount of good acting is enough to save Oleander's uninspired story. A vile, incoherent mess...a scummy ripoff of David Cronenberg's brilliant 'Videodrome.' Murphy and Wilson actually make a pretty good team... but the project surrounding them is distressingly rote. Despite its raucous intent, XXX is as conventional as a Nike ad and as rebellious as spring break. Think 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. It is one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective. It'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. A 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). An amateurish, quasi-improvised acting exercise shot on ugly digital video. The holes in this film remain agape -- holes punched through by an inconsistent, meandering, and sometimes dry plot. Would Benigni's Italian Pinocchio have been any easier to sit through than this hastily dubbed disaster? Unofficially, National Lampoon's Van Wilder is Son of Animal House. Officially, it is twice as bestial but half as funny. This is a fragmented film, once a good idea that was followed by the bad idea to turn it into a movie. Mindless yet impressively lean spinoff of last summer's bloated effects fest The Mummy Returns. Halfway 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. will be far more interesting to the Soderbergh faithful than it will be to the casual moviegoer who might be lured in by Julia Roberts... Authentic, and at times endearing, humorous, spooky, educational, but at other times as bland as a block of snow. Control-Alt-Delete Simone as quickly as possible Follows the original film virtually scene for scene and yet manages to bleed it almost completely dry of humor, verve and fun. The 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. The screenplay comes across, rather unintentionally, as Hip-Hop Scooby-Doo. Has lost some of the dramatic conviction that underlies the best of comedies... Vaguely interesting, but it's just too too much. ...no charm, no laughs, no fun, no reason to watch. A generic family comedy unlikely to be appreciated by anyone outside the under-10 set. Kung Pow seems like some futile concoction that was developed hastily after Oedekerk and his fellow moviemakers got through crashing a college keg party. Kurys seems intimidated by both her subject matter and the period trappings of this debut venture into the heritage business. The film virtually chokes on its own self-consciousness. A manipulative feminist empowerment tale thinly posing as a serious drama about spousal abuse. Everything in Maid in Manhattan is exceedingly pleasant, designed not to offend. It goes down easy, leaving virtually no aftertaste. A profoundly stupid affair, populating its hackneyed and meanspirited storyline with cardboard characters and performers who value cash above credibility. ...pays tribute to heroes the way Julia Roberts hands out awards--with phony humility barely camouflaging grotesque narcissism. Time stands still in more ways that one in Clockstoppers, a sci-fi thriller as lazy as it is interminable. As a director, Eastwood is off his game -- there's no real sense of suspense, and none of the plot 'surprises' are really surprising. Eccentric enough to stave off doldrums, Caruso's self-conscious debut is also eminently forgettable. To 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. Although 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. A puzzle whose pieces do not fit. Some are fascinating and others are not, and in the end, it is almost a good movie. Would that Greengrass had gone a tad less for grit and a lot more for intelligibility. The good is very, very good... The rest runs from mildly unimpressive to despairingly awful. '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. Be forewarned, if you're depressed about anything before watching this film, you may just end up trying to drown yourself in a lake afterwards. a 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 An inexperienced director, Mehta has much to learn. A limp Eddie Murphy vehicle that even he seems embarrassed to be part of. So muddled, repetitive and ragged that it says far less about the horrifying historical reality than about the filmmaker's characteristic style. A gushy episode of ``M*A*S*H'' only this time from an Asian perspective. ``Looking For Leonard'' just seems to kinda sit in neutral, hoping for a stiff wind to blow it uphill or something. Nothing more than four or five mild chuckles surrounded by 86 minutes of overly-familiar and poorly-constructed comedy. Definitely in the guilty pleasure B-movie category, Reign of Fire is so incredibly inane that it is laughingly enjoyable. Good-looking but relentlessly lowbrow outing plays like Clueless Does South Fork. entertaining enough, but nothing new ...one resurrection too many. This 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. DeMeo is not without talent; he just needs better material. In spite of featuring a script credited to no fewer than five writers, apparently nobody here bothered to check it twice. No 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. Initially gripping, eventually cloying POW drama. A timid, soggy near miss. Works better in the conception than it does in the execution...winds up seeming just a little too clever. To the vast majority of more casual filmgoers, it will probably be a talky bore. Observant intelligence constantly vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom. This version of H.G. Wells' Time Machine was directed by H.G. Wells' great-grandson. They should have found Orson Welles' great-grandson. Shunji Iwai's All About Lily Chou Chou is a beautifully shot, but ultimately flawed film about growing up in Japan. With more character development this might have been an eerie thriller; with better payoffs, it could have been a thinking man's monster movie. Thriller directorial debut for Traffic scribe Gaghan has all the right parts, but the pieces don't quite fit together. ...would be a total loss if not for two supporting performances taking place at the movie's edges. There'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. Goldbacher 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. Though 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. The documentary is much too conventional -- lots of boring talking heads, etc. -- to do the subject matter justice. The movie itself appears to be running on hypertime in reverse as the truly funny bits get further and further apart. This 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. Far 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. The 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. No big whoop, nothing new to see, zero thrills, too many flashbacks and a choppy ending make for a bad film. I don't think this movie loves women at all. Shankman ... and screenwriter Karen Janszen bungle their way through the narrative as if it were a series of Bible parables and not an actual story. A negligible British comedy. Fails to convince the audience that these brats will ever be anything more than losers. Slack and uninspired, and peopled mainly by characters so unsympathetic that you're left with a sour taste in your mouth. Skip this turd and pick your nose instead because you're sure to get more out of the latter experience. What can one say about a balding 50-year-old actor playing an innocent boy carved from a log? Trailer trash cinema so uncool the only thing missing is the ``Gadzooks!'' Her film is like a beautiful food entrée that isn't heated properly, so that it ends up a bit cold and relatively flavorless. Like the world of his film, Hartley created a monster but didn't know how to handle it. No new plot conceptions or environmental changes, just different bodies for sharp objects to rip through. Needs 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. In the end, there isn't much to it. A waste of fearless purity in the acting craft. The film is ultimately about as inspiring as a Hallmark card. Anyone not into high-tech splatterfests is advised to take the warning literally, and log on to something more user-friendly. Disreputable doings and exquisite trappings are dampened by a lackluster script and substandard performances. You could easily mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time. Directors Harry Gantz and Joe Gantz have chosen a fascinating subject matter, but the couples exposing themselves aren't all that interesting. Yet 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. for 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 Femme 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? It 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. Fluffy neo-noir hiding behind cutesy film references. Imagine Susan Sontag falling in love with Howard Stern. Like 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. Should have been worth cheering as a breakthrough but is devoid of wit and humor. The best thing about the movie is its personable, amusing cast. These guys seem great to knock back a beer with but they're simply not funny performers. Everything was as superficial as the forced New Jersey lowbrow accent Uma had. Director David Fincher and writer David Koepp can't sustain it. Finally 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. A movie that feels like the pilot episode of a new teen-targeted action TV series. One of the most highly-praised disappointments I've had the misfortune to watch in quite some time. The 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. Director 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. Strong filmmaking requires a clear sense of purpose, and in that oh-so-important category, The Four Feathers comes up short. The 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. Devolves into the derivative, leaning on badly-rendered CGI effects. Anyone who gets chills from movies with giant plot holes will find plenty to shake and shiver about in 'The Ring.' A grand fart coming from a director beginning to resemble someone's crazy French grandfather. The script is a disaster, with cloying messages and irksome characters. both 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. Plods along, minus the twisted humor and eye-popping visuals that have made Miike ... a cult hero. Hollywood has taken quite a nosedive from Alfred Hitchcock's imaginative flight to Shyamalan's self-important summer fluff. The film's maudlin focus on the young woman's infirmity and her naive dreams play like the worst kind of Hollywood heart-string plucking. I firmly believe that a good video game movie is going to show up soon. I also believe that Resident Evil is not it. It has the air of a surprisingly juvenile lark, a pop-influenced prank whose charms are immediately apparent and wear thin with repetition. The plot meanders from gripping to plodding and back. This is cruel, misanthropic stuff with only weak claims to surrealism and black comedy. No 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. Best described as I Know What You Did Last Winter. (Taylor) takes us on a ride that's consistently surprising, easy to watch -- but, oh, so dumb. It's difficult for a longtime admirer of his work to not be swept up in Invincible and overlook its drawbacks. Lazily directed by Charles Stone III ... from a leaden script by Matthew Cirulnick and novelist Thulani Davis. Though Jones and Snipes are enthralling, the movie bogs down in rhetoric and cliché. The 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. An artsploitation movie with too much exploitation and too little art. The pacing is often way off and there are too many bona fide groaners among too few laughs. With lines that feel like long soliloquies -- even as they are being framed in conversation -- Max is static, stilted. Barely 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. Writer/director Burr Steers emphasizes the Q in Quirky, with mixed results. One 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. In between the icy stunts, the actors spout hilarious dialogue about following your dream and 'just letting the mountain tell you what to do.' The obligatory break-ups and hook-ups don't seem to have much emotional impact on the characters. Make no mistake, ivans xtc. is a mess. Hypnotically dull, relentlessly downbeat, laughably predictable wail pitched to the cadence of a depressed fifteen-year-old's suicidal poetry. The concept is a hoot. The trailer is a riot. The movie is a dud. It's a boring movie about a boring man, made watchable by a bravura performance from a consummate actor incapable of being boring. Because 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. It's hard to imagine another director ever making his wife look so bad in a major movie. Some stunning visuals -- and some staggeringly boring cinema. These characters become wearisome. A 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. This may be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar. Kim 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. A 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. After 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. Contrived pastiche of caper clichés. Many shallower movies these days seem too long, but this one is egregiously short. Just 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. The most ill-conceived animated comedy since the 1991 dog Rover Dangerfield. Like shave ice without the topping, this cinematic snow cone is as innocuous as it is flavorless. Despite its sincere acting, Signs is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype. Yet another movie which presumes that high school social groups are at war, let alone conscious of each other's existence. Loud, chaotic and largely unfunny. I 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. Qualities that were once amusing are becoming irritating. Well, 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). Donovan ... squanders his main asset, Jackie Chan, and fumbles the vital action sequences. There is no psychology here, and no real narrative logic -- just a series of carefully choreographed atrocities, which become strangely impersonal and abstract. Bread, 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. Frida is certainly no disaster, but neither is it the Kahlo movie Frida fans have been looking for. Leaks treacle from every pore. The 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. Kapur weighs down the tale with bogus profundities. While 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. Blue Crush is as predictable as the tides. ... The movie feels stitched together from stock situations and characters from other movies. If you enjoy being rewarded by a script that assumes you aren't very bright, then Blood Work is for you. Trouble Every Day is a success in some sense, but it's hard to like a film so cold and dead. The film's stagecrafts are intimate and therefore bolder than the otherwise calculated artifice that defines and overwhelms the film's production design. A 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. A family-friendly fantasy that ends up doing very little with its imaginative premise. A plodding look at the French Revolution through the eyes of aristocrats. Tom Shadyac has learned a bit more craft since directing Adams, but he still lingers over every point until the slowest viewer grasps it. Unspools like a highbrow, low-key, 102-minute infomercial, blending entrepreneurial zeal with the testimony of satisfied customers. A fast-paced, glitzy but extremely silly piece. Any reasonably creative eighth-grader could have written a more credible script, though with the same number of continuity errors. ...while the humor aspects of 'Jason X' were far more entertaining than I had expected, everything else about the film tanks. Your taste for Jonah - A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit. Like an Afterschool Special with costumes by Gianni Versace, Mad Love looks better than it feels. While 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. The script, the gags, the characters are all direct-to-video stuff, and that's where this film should have remained. A thriller without thrills and a mystery devoid of urgent questions. A collage of clichés and a dim echo of allusions to other films. The film is hampered by its predictable plot and paper-thin supporting characters. Jonah is only so-so... the addition of a biblical message will either improve the film for you, or it will lessen it. An excruciating demonstration of the unsalvageability of a movie saddled with an amateurish screenplay. How many more times will indie filmmakers subject us to boring, self-important stories of how horrible we are to ourselves and each other? There are some laughs in this movie, but Williams' anarchy gets tiresome, the satire is weak. As steamy as last week's pork dumplings. The somber pacing and lack of dramatic fireworks make Green Dragon seem more like medicine than entertainment. The 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. Another wholly unnecessary addition to the growing, moldering pile of, well, extreme stunt pictures. This strenuously unfunny Showtime deserves the hook. The whole thing's fairly lame, making it par for the course for Disney sequels. ...its solemn pretension prevents us from sharing the awe in which it holds itself. ...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.'' If 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. Features nonsensical and laughable plotting, wooden performances, ineptly directed action sequences and some of the worst dialogue in recent memory. With 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. Nothing about this movie works. If 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. A spooky yarn of demonic doings on the high seas that works better the less the brain is engaged. None of Birthday Girl's calculated events take us by surprise... Are monsters born, or made? Lisa 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. The 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. It's exactly the kind of movie Toback's detractors always accuse him of making. With the dog days of August upon us, think of this dog of a movie as the cinematic equivalent of high humidity. Less 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. The 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. This 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. Takes a clunky TV-movie approach to detailing a chapter in the life of the celebrated Irish playwright, poet and drinker. Not only does the thoroughly formulaic film represent totally exemplify middle-of-the-road mainstream, it also represents glossy Hollywood at its laziest. A shame that Stealing Harvard is too busy getting in its own way to be anything but frustrating, boring, and forgettable. Nearly every attempt at humor here is DOA. Collapses under its own meager weight. This is mild-mannered, been-there material given a pedestrian spin by a director who needed a touch of the flamboyant, the outrageous. If 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. Technically and artistically inept. Those who are only mildly curious, I fear, will be put to sleep or bewildered by the artsy and often pointless visuals. Though Tom Shadyac's film kicks off spookily enough, around the halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance. A long, dull procession of despair, set to cello music culled from a minimalist funeral. Call 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. Death might be a release. ``(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.'' Sodden and glum, even in those moments where it's supposed to feel funny and light. Priggish, lethargically paced parable of renewal. A beautifully shot but dull and ankle-deep 'epic.' Even with its $50-million US budget, Pinocchio never quite achieves the feel of a fanciful motion picture. This is a third-person story now, told by Hollywood, and much more ordinary for it. The filmmakers know how to please the eye, but it is not always the prettiest pictures that tell the best story. Written, flatly, by David Kendall and directed, barely, by There's Something About Mary co-writer Ed Decter. The 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. Very well made, but doesn't generate a lot of tension. Like 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. It's depressing to see how far Herzog has fallen. The question hanging over The Time Machine is not, as the main character suggests, 'what if?' but rather, 'How can you charge money for this?' Millions of dollars heaped upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry. ``Freaky Friday,'' it's not. Perhaps a better celebration of these unfairly dismissed heroes would be a film that isn't this painfully forced, false and fabricated. Although 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. In this film, Aussie David Caesar channels the not-quite-dead career of Guy Ritchie. Maybe you'll be lucky, and there'll be a power outage during your screening so you can get your money back. The characterizations and dialogue lack depth or complexity, with the ironic exception of Scooter. This 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. Narc can only remind us of brilliant crime dramas without becoming one itself. Somewhere inside the mess that is World Traveler, there is a mediocre movie trying to get out. A tedious parable about honesty and good sportsmanship. Its 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. An artful yet depressing film that makes a melodramatic mountain out of the molehill of a missing bike. The 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. A glossy knock-off of a B-movie revenge flick. ... expands the horizons of boredom to the point of collapse, turning into a black hole of dullness, from which no interesting concept can escape. It's just plain boring. Sad nonsense, this. But not without cheesy fun factor. One 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. Really dumb but occasionally really funny. The movie wavers between Hallmark card sentimentality and goofy, life-affirming moments straight out of a cellular phone commercial. The director's many dodges and turns add up to little more than a screenful of gamesmanship that's low on both suspense and payoff. While 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. The satire is unfocused, while the story goes nowhere. They 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. It'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. Reyes' directorial debut has good things to offer, but ultimately it's undone by a sloppy script If you're over 25, have an IQ over 90, and have a driver's license, you should be able to find better entertainment. The 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. ...the picture's cleverness is ironically muted by the very people who are intended to make it shine. Never 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.'' One of those so-so films that could have been much better. Crossroads feels like a teenybopper Ed Wood film, replete with the pubescent scandalous innuendo and the high-strung but flaccid drama. Fails to satisfactorily exploit its gender politics, genre thrills or inherent humor. Interview 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. Cacoyannis' 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. It has more in common with a fireworks display than a movie, which normally is expected to have characters and a storyline. It appears to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept. Less a heartfelt appeal for the handicapped than a nice Belgian waffle. It'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. Abandon 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. No 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. Due to stodgy, soap opera-ish dialogue, the rest of the cast comes across as stick figures reading lines from a TelePrompTer. (T)he film is never sure to make a clear point – even if it seeks to rely on an ambiguous presentation. While 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. An overwrought Taiwanese soaper about three people and their mixed-up relationship. Nobody 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. A thoroughly awful movie--dumb, narratively chaotic, visually sloppy...a weird amalgam of 'The Thing' and a geriatric 'Scream.' ...another example of how Sandler is losing his touch. Nothing sticks, really, except a lingering creepiness one feels from being dragged through a sad, sordid universe of guns, drugs, avarice and damaged dreams. What 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. The plot's contrivances are uncomfortably strained. Guilty of the worst sin of attributable to a movie like this: it's not scary in the slightest. Schnieder 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... Its 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. By the final whistle you're convinced that this Mean Machine was a decent TV outing that just doesn't have big screen magic. To 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. A film of empty, fetishistic violence in which murder is casual and fun. Pretend it's a werewolf itself by avoiding eye contact and walking slowly away. It's fun, but it's a real howler. Some fine acting, but ultimately a movie with no reason for being. It's difficult to feel anything much while watching this movie, beyond mild disturbance or detached pleasure at the acting. A waterlogged version of 'Fatal Attraction' for the teeny-bopper set...a sad, soggy potboiler that wastes the talents of its attractive young leads. It 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. Sweet gentle Jesus, did the screenwriters just do a cut-and-paste of every bad action-movie line in history? It's not the worst comedy of the year, but it certainly won't win any honors. This is for the most part a useless movie, even with a great director at the helm. A loud, witless mess that has none of the charm and little of the intrigue from the TV series. Even 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. Though it inspires some (out-of-field) creative thought, the film is -- to its own detriment -- much more a cinematic collage than a polemical tract. As 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. Sinks into the usual cafeteria goulash of fart jokes, masturbation jokes, and racist Japanese jokes. Where Tom Green stages his gags as assaults on America's knee-jerk moral sanctimony, Jackass lacks aspirations of social upheaval. More of an intriguing curiosity than a gripping thriller. The 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. Contains all the substance of a Twinkie -- easy to swallow, but scarcely nourishing. Return 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. Rarely does a film so graceless and devoid of merit as this one come along. It's a thin notion, repetitively stretched out to feature length, awash in self-consciously flashy camera effects, droning house music and flat, flat dialogue. On a certain base level, Blue Crush delivers what it promises, just not well enough to recommend it. The colorful Masseur wastes its time on mood rather than riding with the inherent absurdity of Ganesh's rise up the social ladder. ... an incredibly heavy-handed, manipulative dud that feels all too familiar. Wimps out by going for that PG-13 rating, so the more graphic violence is mostly off-screen and the sexuality is muted. Trapped presents a frightening and compelling 'What if?' scenario that will give most parents pause... Then, something terrible happens. Madonna has made herself over so often now, there's apparently nothing left to work with, sort of like Michael Jackson's nose. Never 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. The story is lacking any real emotional impact, and the plot is both contrived and cliched. A depraved, incoherent, instantly disposable piece of hackery. It's a bad action movie because there's no rooting interest and the spectacle is grotesque and boring. (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. Handsome and sincere but slightly awkward in its combination of entertainment and evangelical boosterism. So aggressively cheery that Pollyana would reach for a barf bag. Scooby-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. Russell lacks the visual panache, the comic touch, and perhaps the budget of Sommers's title-bout features. Highly uneven and inconsistent ... Margarita Happy Hour kinda resembles the el cheapo margaritas served within. Very stupid and annoying. The 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. A listless and desultory affair. Represents the depths to which the girls-behaving-badly film has fallen. How inept is Serving Sara? It makes even Elizabeth Hurley seem graceless and ugly. Jam-packed with literally bruising jokes. Every five minutes or so, someone gets clocked. Wins my vote for 'The 2002 Enemy of Cinema' Award. Any 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. Helmer Hudlin tries to make a hip comedy, but his dependence on slapstick defeats the possibility of creating a more darkly edged tome. Lazy, miserable and smug. This is one of the biggest disappointments of the year. Formula 51 has dulled your senses faster and deeper than any recreational drug on the market. Every visual joke is milked, every set-up obvious and lengthy, every punchline predictable. There's no energy. Apparently writer-director Attal thought he need only cast himself and his movie-star wife sitting around in their drawers to justify a film. After the setup, the air leaks out of the movie, flattening its momentum with about an hour to go. This is a poster movie, a mediocre tribute to films like Them! At 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. A bit too derivative to stand on its own as the psychological thriller it purports to be. A 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. The film's darker moments become smoothed over by an overwhelming need to tender inspirational tidings, especially in the last few cloying moments. If 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. This 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.' Shanghai Ghetto should be applauded for finding a new angle on a tireless story, but you might want to think twice before booking passage. Plays like a checklist of everything Rob Reiner and his cast were sending up. There'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. It's at once laughable and compulsively watchable, in its committed dumbness. All the sensuality, all the eroticism of a good vampire tale has been, pardon the pun, sucked out and replaced by goth goofiness. A 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. The screenplay is hugely overwritten, with tons and tons of dialogue -- most of it given to children. Troll the cult section of your local video store for the real deal. At 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. Elmo 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. It's difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing, let alone funny. Despite its promising cast of characters, Big Trouble remains a loosely tied series of vignettes which only prove that 'zany' doesn't necessarily mean 'funny.' Both shrill and soporific, and because everything is repeated five or six times, it can seem tiresomely simpleminded. Does not go far enough in its humor or stock ideas to stand out as particularly memorable or even all that funny. Neither revelatory nor truly edgy--merely crassly flamboyant and comedically labored. Just about everyone involved here seems to be coasting. There are a few modest laughs, but certainly no thrills. Fails so fundamentally on every conventional level that it achieves some kind of goofy grandeur. There'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. While 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. A preposterous, prurient whodunit. Go, girls, right down the reality drain. Boasting some of the most poorly staged and lit action in memory, Impostor is as close as you can get to an imitation movie. Can be classified as one of those 'alternate reality' movies... except that it would have worked so much better dealing in only one reality. Predictable 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. ...unlikable, uninteresting, unfunny, and completely, utterly inept. The 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. An imponderably stilted and self-consciously arty movie. Muddled, melodramatic paranormal romance is an all-time low for Kevin Costner. Too clumsy in key moments ... to make a big splash. Just a bunch of good actors flailing around in a caper that's neither original nor terribly funny. `Matrix'-style massacres erupt throughout...but the movie has a tougher time balancing its violence with Kafka-inspired philosophy. At least it's a fairly impressive debut from the director, Charles Stone III. It all unfolds predictably, and the adventures that happen along the way seem repetitive and designed to fill time, providing no real sense of suspense. Wanker Goths are on the loose! Run for your lives! Why would anyone cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects? A grating, emaciated flick. Unambitious writing emerges in the movie, using a plot that could have come from an animated-movie screenwriting textbook. Presents a good case while failing to provide a reason for us to care beyond the very basic dictums of human decency. We 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. According to the script, Grant and Bullock's characters are made for each other. But you'd never guess that from the performances. The 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. Ararat feels like a book report Steve Oedekerk is, alas, no Woody Allen. A lot like the imaginary sport it projects onto the screen -- loud, violent and mindless. An amalgam of The Fugitive, Blade Runner, and Total Recall, only without much energy or tension. The 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. Shows that Jackie Chan is getting older, and that's something I would rather live in denial about With miscast leads, banal dialogue and an absurdly overblown climax, Killing Me Softly belongs firmly in the so-bad-it's-good camp. Alas, the black-and-white archival footage of their act showcases pretty mediocre shtick. The slapstick is labored, and the bigger setpieces flat. This 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. The problem with the mayhem in Formula 51 is not that it's offensive, but that it's boring. Much 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é. the film never rises above a conventional, two dimension tale Mark Wahlberg...may look classy in a '60s-homage pokepie hat, but as a character he's dry, dry, dry. Told in scattered fashion, the movie only intermittently lives up to the stories and faces and music of the men who are its subject. The irony is that this film's cast is uniformly superb; their performances could have -- should have -- been allowed to stand on their own. Now I can see why people thought I was too hard on ``The Mothman Prophecies''. If 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. With an unusual protagonist (a kilt-wearing Jackson) and subject matter, the improbable ``Formula 51'' is somewhat entertaining, but it could have been much stronger. Sandra Bullock's best dramatic performance to date (is) almost enough to lift (this) thrill-kill cat-and-mouser...above its paint-by-numbers plot. A feel-good movie that doesn't give you enough to feel good about. Adolescents 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.' This mistaken-identity picture is so film-culture referential that the final product is a ghost. The picture emerges as a surprisingly anemic disappointment. De Niro cries. You'll cry for your money back. Slap me, I saw this movie. (The kid's) just too bratty for sympathy, and as the film grows to its finale, his little changes ring hollow. Behind the glitz, Hollywood is sordid and disgusting. Quelle surprise! Scherfig, who has had a successful career in TV, tackles more than she can handle. Just consider what New Best Friend does not have, beginning with the minor omission of a screenplay. Oscar caliber cast doesn't live up to material The 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. Carrying 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.' So putrid it is not worth the price of the match that should be used to burn every print of the film. In the end, the movie bogs down in insignificance, saying nothing about Kennedy's assassination and revealing nothing about the pathology it pretends to investigate. Starts out ballsy and stylish but fails to keep it up and settles into clichés. Sometimes makes less sense than the Bruckheimeresque American action flicks it emulates. One 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. There's only one way to kill Michael Myers for good: stop buying tickets to these movies. 'Rare Birds' tries to force its quirkiness upon the audience. The movie is about as humorous as watching your favorite pet get buried alive. Resident 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. Five screenwriters are credited with the cliché-laden screenplay; it seems as if each watered down the version of the one before. The whole thing comes off like a particularly amateurish episode of Bewitched that takes place during Spring Break. Well made but uninvolving, Bloodwork isn't a terrible movie, just a stultifyingly obvious one -- an unrewarding collar for a murder mystery. So 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. The movie's blatant derivativeness is one reason it's so lackluster. Kids don't mind crappy movies as much as adults, provided there's lots of cute animals and clumsy people. 'Snow Dogs' has both. It's almost as if it's an elaborate dare more than a full-blooded film. Wobbly Senegalese updating of ``Carmen'' which is best for the stunning star turn by Djeinaba Diop Gai It's the humanizing stuff that will probably sink the film for anyone who doesn't think about percentages all day long. Ken 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. Bella 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. The premise of ``Abandon'' holds promise,... but its delivery is a complete mess. What 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. A 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. Unless 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. The Rock has a great presence but one battle after another is not the same as one battle followed by killer CGI effects. The 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. The lousy John Q all but spits out Denzel Washington's fine performance in the title role. The 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. What a stiflingly unfunny and unoriginal mess this is! The 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. Opera 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. Despite all the closed-door hanky-panky, the film is essentially juiceless. It is parochial, accessible to a chosen few, standoffish to everyone else, and smugly suggests a superior moral tone is more important than filmmaking skill The Sweetest Thing leaves an awful sour taste. It's lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay. Terminally bland, painfully slow and needlessly confusing ... The movie, shot on digital videotape rather than film, is frequently indecipherable. As 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. Aloof and lacks any real raw emotion, which is fatal for a film that relies on personal relationships. A low-rent retread of the Alien pictures. Serviceable at best, slightly less than serviceable at worst. Its initial excitement settles into a warmed over pastiche. A big meal of cliches that the talented cast generally chokes on. The story has little wit and no surprises. The 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. What should have been a cutting Hollywood satire is instead about as fresh as last week's issue of Variety. Hey 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. A little more intensity and a little less charm would have saved this film a world of hurt. (T)his slop doesn't even have potential as a cult film, as it's too loud to shout insults at the screen. The movie's plot is almost entirely witless and inane, carrying every gag two or three times beyond its limit to sustain a laugh. ...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. Plays like a glossy melodrama that occasionally verges on camp. The central character isn't complex enough to hold our interest. A 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. A puppy dog so desperate for attention it nearly breaks its little neck trying to perform entertaining tricks. Just about all of the film is confusing on one level or another, making Ararat far more demanding than it needs to be. A little less extreme than in the past, with longer exposition sequences between them, and with fewer gags to break the tedium. There's a heavy stench of 'been there, done that' hanging over the film. It's everything you'd expect -- but nothing more. The 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. A quaint, romanticized rendering. What with the incessant lounge music playing in the film's background, you may mistake Love Liza for an Adam Sandler Chanukah song. The movie's heavy-handed screenplay navigates a fast fade into pomposity and pretentiousness. A potentially good comic premise and excellent cast are terribly wasted. Woody Allen used to ridicule movies like Hollywood Ending. Now he makes them. She's not yet an actress, not quite a singer... Not a bad premise, but the execution is lackluster at best. Been there done that. There is only so much baked cardboard I need to chew. A movie like The Guys is why film criticism can be considered work. Schnitzler's film has a great hook, some clever bits and well-drawn, if standard issue, characters, but is still only partly satisfying. Even if it made its original release date last fall, it would've reeked of a been-there, done-that sameness. Only two-fifths of a satisfying movie experience. A loud, ugly, irritating movie without any of its satirical salvos hitting a discernible target. A 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. It's a brilliant, honest performance by Nicholson, but the film is an agonizing bore except when the fantastic Kathy Bates turns up. Bravado Kathy! ...Liotta is put in an impossible spot because his character's deceptions ultimately undo him and the believability of the entire scenario. Too bad. You can thank me for this. I saw Juwanna Mann so you don't have to. Unfunny and lacking any sense of commitment to or affection for its characters, the Reginald Hudlin comedy relies on toilet humor, ethnic slurs. Basically, it's pretty but dumb. This romantic/comedy asks the question how much souvlaki can you take before indigestion sets in. Squandering his opportunity to make absurdist observations, Burns gets caught up in the rush of slapstick thoroughfare. There's a neat twist, subtly rendered, that could have wrapped things up at 80 minutes, but Kang tacks on three or four more endings. Reeboir 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. The 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. Co-writer/director Jonathan Parker's attempts to fashion a Brazil-like, hyper-real satire fall dreadfully short. If this silly little cartoon can inspire a few kids not to grow up to be greedy bastards, more power to it. A 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. If there's a heaven for bad movies, Deuces Wild is on its way. Comes off like a bad imitation of the Bard. What'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. An uninspired preachy and clichéd war film. Horrendously amateurish filmmaking that is plainly dull and visually ugly when it isn't incomprehensible. A 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. Slackers' 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. If 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. The movie is too impressed with its own solemn insights to work up much entertainment value. I haven't seen such self-amused trash since Freddy Got Fingered. Little more than a well-mounted history lesson. Rob Schneider's infantile cross-dressing routines fill The Hot Chick, the latest gimmick from this unimaginative comedian. A horrible, 99-minute stink bomb. The film is weighed down by supporting characters who are either too goodly, wise and knowing or downright comically evil. The film is so bad it doesn't improve upon the experience of staring at a blank screen. Sheridan's take on the author's schoolboy memoir ... is a rather toothless take on a hard young life. It 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. How 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. When it comes to the battle of Hollywood vs. Woo, it looks like Woo's a P.O.W. There are a few chuckles, but not a single gag sequence that really scores, and the stars seem to be in two different movies. The 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. It's dull, spiritless, silly and monotonous: an ultra-loud blast of pointless mayhem, going nowhere fast. The mushy finale turns John Q into a movie-of-the-week tearjerker. Content 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. The movie turns out to be (Assayas') homage to the Gallic 'tradition of quality,' in all its fusty squareness. Its message has merit and, in the hands of a brutally honest individual like Prophet Jack, might have made a point or two regarding life. (Seems) even more uselessly redundant and shamelessly money-grubbing than most third-rate horror sequels. It's hard to imagine that even very small children will be impressed by this tired retread. Neither 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. If swimfan does catch on, it may be because teens are looking for something to make them laugh. What might've been an exhilarating exploration of an odd love triangle becomes a sprawl of uncoordinated vectors. The Master of Disguise may have made a great Saturday Night Live sketch, but a great movie it is not. It'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. Boll uses a lot of quick cutting and blurry step-printing to goose things up, but dopey dialogue and sometimes inadequate performances kill the effect. It'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. Has the marks of a septuagenarian; it's a crusty treatment of a clever gimmick. Like 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. Something must have been lost in the translation. Becomes the last thing you would expect from a film with this title or indeed from any Plympton film: boring. In 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. Chan's stunts are limited and so embellished by editing that there's really not much of a sense of action or even action-comedy. Rock's stand-up magic wanes. Hopkins, squarely fills the screen. Action - mechanical. ``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. For 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. The 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. What puzzles me is the lack of emphasis on music in Britney Spears' first movie. Plot, characters, drama, emotions, ideas -- all are irrelevant to the experience of seeing The Scorpion King. City 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. Whatever the movie's sentimental, hypocritical lessons about sexism, its true colors come out in various wet T-shirt and shower scenes. As a hybrid teen thriller and murder mystery, Murder by Numbers fits the profile too closely. There ain't a lot more painful than an unfunny movie that thinks it's hilarious. I enjoyed the movie in a superficial way, while never sure what its purpose was. What a pity ... that the material is so second-rate. Doesn't deliver a great story, nor is the action as gripping as in past Seagal films. The 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. Nicks 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. Nothing about the film -- with the possible exception of Elizabeth Hurley's breasts -- is authentic. Amid the cliché and foreshadowing, Cage manages a degree of casual realism ... that is routinely dynamited by Blethyn. Mostly, Shafer and co-writer Gregory Hinton lack a strong-minded viewpoint, or a sense of humor. No cliche escapes the perfervid treatment of gang warfare called ces Wild. Eddie 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. Strictly a 'guy's film' in the worst sense of the expression. There'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. It'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. There'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. We're left with a story that tries to grab us, only to keep letting go at all the wrong moments. Like many such biographical melodramas, it suffers from the awkwardness that results from adhering to the messiness of true stories. There is nothing redeeming about this movie. The film has (its) moments, but they are few and far between. I 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. Derailed 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. Deserves high marks for political courage but barely gets by on its artistic merits. ... comes alive only when it switches gears to the sentimental. Brosnan's finest non-Bondish performance yet fails to overcome the film's manipulative sentimentality and annoying stereotypes. A 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. To 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. Tsai may be ploughing the same furrow once too often. Flashy gadgets and whirling fight sequences may look cool, but they can't distract from the flawed support structure holding Equilibrium up. ZigZag might have been richer and more observant if it were less densely plotted. How 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). Nicks and Steinberg match their own creations for pure venality -- that's giving it the old college try. Episode II-- Attack of the Clones is a technological exercise that lacks juice and delight. The problem with all of this: It's not really funny. (Denis') bare-bones narrative more closely resembles an outline for a '70s exploitation picture than the finished product. Wanders 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. Viewing this underdramatized but overstated film is like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet. Overall tomfoolery like this is a matter of taste. The mantra behind the project seems to have been 'it's just a kids' flick.' Translation: 'We don't need to try very hard.' In all the annals of the movies, few films have been this odd, inexplicable and unpleasant. It 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. an essentially awkward version of the lightweight female empowerment picture we've been watching for decades The author's devotees will probably find it fascinating; others may find it baffling. Writer-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. There'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. A cockeyed shot all the way. Lush 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. Unfortunately, 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. Cold, Sterile And Lacking Any Color Or Warmth. The film is undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold. Seems like someone going through the motions. For 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. Wallace gets a bit heavy handed with his message at times, and has a visual flair that waxes poetic far too much for our taste. Impostor doesn't do much with its template, despite a remarkably strong cast. Wraps 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. Choppy, overlong documentary about 'The Lifestyle.' One sloughs one's way through the mire of this alleged psychological thriller in search of purpose or even a plot. A 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. It's a fanboy 'what if?' brought to life on the big screen. The story itself is actually quite vapid. It'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. Wait for pay per view or rental but don't dismiss BarberShop out of hand. A few zingers aside, the writing is indifferent, and Jordan Brady's direction is prosaic. Each scene drags, underscoring the obvious, and sentiment is slathered on top. Would'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. One of those staggeringly well-produced, joylessly extravagant pictures that keep whooshing you from one visual marvel to the next, hastily, emptily. Nair just doesn't have the necessary self-control to guide a loose, poorly structured film through the pitfalls of incoherence and redundancy. Enthusiastically taking up the current teen movie concern with bodily functions, Walt Becker's film pushes all the demographically appropriate comic buttons. It's the funniest American comedy since Graffiti Bridge. That neither protagonist has a distinguishable condition hardly matters because both are just actory concoctions, defined by childlike dimness and a handful of quirks. What starts off as a possible Argentine American Beauty reeks like a room stacked with pungent flowers. The project's filmmakers forgot to include anything even halfway scary as they poorly rejigger Fatal Attraction into a high school setting. In old-fashioned screenwriting parlance, Ms. Shreve's novel proved too difficult a text to 'lick,' despite the efforts of a first-rate cast. Solondz may well be the only one laughing at his own joke Stitch 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. Deep down, I realized the harsh reality of my situation: I would leave the theater with a lower I.Q. than when I had entered. A really funny fifteen-minute short stretched beyond its limits to fill an almost feature-length film. Aside 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. It is bad, but certainly not without merit as entertainment. For its 100 minutes running time, you'll wait in vain for a movie to happen. A work that lacks both a purpose and a strong pulse. A faster paced family flick. Upper Teens may get cynical. Smaller numbered kidlets will enjoy. While 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. It's a road-trip drama with too many wrong turns. Most fish stories are a little peculiar, but this is one that should be thrown back in the river. It'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. ``I blame all men for war,'' (the warden's daughter) tells her father. The movie is about as deep as that sentiment. It's fitfully funny but never really takes off. I've seen some bad singer-turned actors, but Lil Bow Wow takes the cake. By 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. For all the complications, it's all surprisingly predictable. It'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. If 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. For a film about action, Ultimate X is the gabbiest giant-screen movie ever, bogging down in a barrage of hype. ...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. It 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. The picture seems uncertain whether it wants to be an acidic all-male All About Eve or a lush, swooning melodrama in the Intermezzo strain. A nearly 21/2 hours, the film is way too indulgent. Gorgeous to look at but insufferably tedious and turgid...a curiously constricted epic. It looks much more like a cartoon in the end than The Simpsons ever has. With 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. Doesn't really add up to much. It'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. An entertainment so in love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots. A prolonged extrusion of psychopathic pulp. Borrows from other movies like it in the most ordinary and obvious fashion. It's surprisingly bland despite the heavy doses of weird performances and direction. A chilly, remote, emotionally distant piece...so dull that its tagline should be: 'In space, no one can hear you snore.' The characters seem one-dimensional, and the film is superficial and will probably be of interest primarily to its target audience. Sorvino 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. It's like a drive-by. You can drive right by it without noticing anything special, save for a few comic turns, intended and otherwise. Everything -- even life on an aircraft carrier -- is sentimentalized. This would-be 'James Bond for the Extreme Generation' pic is one big, dumb action movie. Stress 'dumb.' The movie has generic virtues, and despite a lot of involved talent, seems done by the numbers. When your subject is illusion versus reality, shouldn't the reality seem at least passably real? It's a terrible movie in every regard, and utterly painful to watch. This 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?' A fan film that for the uninitiated plays better on video with the sound turned down. Too infuriatingly quirky and taken with its own style. There's a whole heap of nothing at the core of this slight coming-of-age/coming-out tale. As 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. The type of dumbed-down exercise in stereotypes that gives the (teen comedy) genre a bad name. Distinctly sub-par...more likely to drown a viewer in boredom than to send any shivers down his spine. Plays like a bad blend of an overripe episode of TV's Dawson's Creek and a recycled and dumbed-down version of Love Story. Unless 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. When the casting call for this movie went out, it must have read 'seeking anyone with acting ambition but no sense of pride or shame.' Just isn't as weird as it ought to be. A ``Home Alone'' film that is staged like ``Rosemary's Baby,'' but is not as well-conceived as either of those films. (Siegel) and co-writers Lisa Bazadona and Grace Woodard have relied too much on convention in creating the characters who surround Frankie. No film could possibly be more contemptuous of the single female population. `Hey Arnold!' has some visual wit ... but little imagination elsewhere. They're going through the motions, but the zip is gone. A 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. A 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. It's mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love. The movie is like a year late for tapping into our reality tv obsession, and even tardier for exploiting the novelty of the ``webcast.'' tale will be all too familiar for anyone who's seen George Roy Hill's 1973 film, ``The Sting.'' Gets the look and the period trappings right, but it otherwise drowns in a sea of visual and verbal clichés. It'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. Anyone 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. The problem with The Bread, My Sweet is that it's far too sentimental. A late-night cable sexploitation romp masquerading as a thriller about the ruthless social order that governs college cliques. Falls short in explaining the music and its roots. Never inspires more than an interested detachment. What 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. Despite 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. Pretty much sucks, but has a funny moment or two. They do a good job of painting this family dynamic for the audience but they tried to squeeze too many elements into the film. A 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. Two badly interlocked stories drowned by all too clever complexity. It is so earnest, so overwrought and so wildly implausible that it begs to be parodied. These are textbook lives of quiet desperation. Swimfan, like Fatal Attraction, eventually goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub. Claims to sort the bad guys from the good, which is its essential problem. Purposefully shocking in its eroticized gore, if unintentionally dull in its lack of poetic frissons. Feels like pieces a bunch of other, better movies slapped together. Almost everything about the film is unsettling, from the preposterous hairpiece worn by Lai's villainous father to the endless action sequences. Writer-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. It 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. One can't shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney's latest album. Phoned-in business as usual. There's an epic here, but you have to put it together yourself. What little atmosphere is generated by the shadowy lighting, macabre sets, and endless rain is offset by the sheer ugliness of everything else. Director-chef Gabriele Muccino keeps it fast -- zippy, comin' at ya -- as if fearing that his film is molto superficiale. Tartakovsky's team has some freakish powers of visual charm, but the five writers slip into the modern rut of narrative banality. The 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. God is great, the movie's not. Like a three-ring circus, there are side stories aplenty -- none of them memorable. When 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. A '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. As original and insightful as last week's episode of Behind the Music. Plays like John Le Carré with a couple of burnt-out cylinders. You may be galled that you've wasted nearly two hours of your own precious life with this silly little puddle of a movie. It's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy, but it has its moments. Despite 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. A smug and convoluted action-comedy that doesn't allow an earnest moment to pass without reminding audiences that it's only a movie. (Crystal and De Niro) manage to squeeze out some good laughs but not enough to make this silly con job sing. Worthless, from its pseudo-rock-video opening to the idiocy of its last frames. The Christ allegory doesn't work because there is no foundation for it Go for La Salle's performance, and make do as best you can with a stuttering script. It'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. Tries too hard to be funny in a way that's too loud, too goofy and too short of an attention span. I 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. The acting is just fine, but there's not enough substance here to sustain interest for the full 90 minutes, especially with the weak payoff. After Collateral Damage, you might imagine that most every aggrieved father cliché has been unturned. But no. Ultimately 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. Releasing 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. Tedious Norwegian offering which somehow snagged an Oscar nomination. It was a dark and stormy night... A dark-as-pitch comedy that frequently veers into corny sentimentality, probably would not improve much after a therapeutic zap of shock treatment. This sort of cute and cloying material is far from Zhang's forte and it shows. Bray is completely at sea; with nothing but a Savage Garden music video on his resume, he has no clue about making a movie. Freundlich's made (Crudup) a suburban architect, and a cipher. a huge disappointment coming, as it does, from filmmakers and performers of this calibre Though it pretends to expose the life of male hustlers, it's exploitive without being insightful. Aimed squarely at the least demanding of demographic groups: very small children who will be delighted simply to spend more time with familiar cartoon characters. What starts off as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points. Exhibits the shallow sensationalism characteristic of soap opera...more salacious telenovela than serious drama. Seagal is painfully foolish in trying to hold onto what's left of his passe' chopsocky glory. Even with Harris's strong effort, the script gives him little to effectively probe Lear's soul-stripping breakdown. The story is bogus and its characters tissue-thin. Whereas 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. While American Adobo has its heart (and its palate) in the right place, its brain is a little scattered -- ditsy, even. Imagine 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. Most of the dialogue made me want to pack raw dough in my ears. Costner'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. It's coherent, well shot, and tartly acted, but it wears you down like a dinner guest showing off his doctorate. Directed 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. turns 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 Robin Williams departs from his fun friendly demeanor in exchange for a darker unnerving role. High 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. Set in a 1986 Harlem that doesn't look much like anywhere in New York. The chocolate factory without Charlie. Long on twinkly-eyed close-ups and short on shame. Hip-hop rarely comes alive as its own fire-breathing entity in this picture. A dull, somnambulant exercise in pretension whose pervasive quiet is broken by frequent outbursts of violence and noise. Deserving of its critical backlash and more. Neither a rousing success nor a blinding embarrassment. Still, it just sits there like a side dish no one ordered. The 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). The movie spends more time with Schneider than with newcomer McAdams, even though her performance is more interesting (and funnier) than his. This 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. It recycles every cliché about gays in what is essentially an extended soap opera. I'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. May offend viewers not amused by the sick sense of humor. Many of Benjamins' elements feel like they've been patched in from an episode of Miami Vice. It aimlessly and unsuccessfully attempts to fuse at least three dull plots into one good one. Most folks with a real stake in the American sexual landscape will find it either moderately amusing or just plain irrelevant. If 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. Cherish is a dud -- a romantic comedy that's not the least bit romantic and only mildly funny. Feels as if the inmates have actually taken over the asylum. All of the filmmakers' calculations can't rescue Brown Sugar from the curse of blandness. The movie's gloomy atmosphere is fascinating, though, even if the movie itself doesn't stand a ghost of a chance. ...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. The exclamation point seems to be the only bit of glee you'll find in this dreary mess. No matter how you slice it, Mark Wahlberg and Thandie Newton are not Hepburn and Grant, two cinematic icons with chemistry galore. Godard'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. Humorless, self-conscious art drivel, made without a glimmer of intelligence or invention. The movie's progression into rambling incoherence gives new meaning to the phrase 'fatal script error.' Solondz may be convinced that he has something significant to say, but he isn't talking a talk that appeals to me. More tiring than anything. Nelson's intentions are good, but the end result does no justice to the story itself. It's horribly depressing and not very well done. ...the efforts of its star, Kline, to lend some dignity to a dumb story are for naught. A good-natured ensemble comedy that tries hard to make the most of a bumper cast, but never quite gets off the ground. Isn'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. Overly long and worshipful bio-doc. I'll go out on a limb. It isn't quite one of the worst movies of the year. It's just merely very bad. Writer-director Ritchie reduces Wertmuller's social mores and politics to tiresome jargon. About 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. Everything about Girls Can't Swim, even its passages of sensitive observation, feels secondhand, familiar -- and not in a good way. Feels aimless for much of its running time, until late in the film when a tidal wave of plot arrives, leaving questions in its wake. In 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. The script is too mainstream and the psychology too textbook to intrigue. Muddled, simplistic and more than a little pretentious. Meandering and glacially paced, and often just plain dull. A disaster of a drama, saved only by its winged assailants. A road trip that will get you thinking, 'Are we there yet?' Director 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? Dong 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. If there was any doubt that Peter O'Fallon didn't have an original bone in his body, A Rumor of Angels should dispel it. An occasionally interesting but mostly repetitive look at a slice of counterculture that might be best forgotten. What could have been right at home as a nifty plot line in Steven Soderbergh's Traffic fails to arrive at any satisfying destination. The 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. This pathetic junk is barely an hour long. Nevertheless, it still seems endless. It 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. Dolman confines himself to shtick and sentimentality -- the one bald and the other sloppy. Is it possible for a documentary to be utterly entranced by its subject and still show virtually no understanding of it? It's supposed to be a romantic comedy - it suffers from too much Norma Rae and not enough Pretty Woman. The leads are so unmemorable, despite several attempts at lengthy dialogue scenes, that one eventually resents having to inhale this gutter romancer's secondhand material. Staggers between flaccid satire and what is supposed to be madcap farce. Not 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. Brainy, artistic and muted, almost to the point of suffocation. Plays like the old disease-of-the-week small-screen melodramas. Like life on the island, the movie grows boring despite the scenery. The truth about Charlie is that it's a brazenly misguided project. displays the potential for a better movie than what Bailly manages to deliver So exaggerated and broad that it comes off as annoying rather than charming. An awkward hybrid of genres that just doesn't work. The latest vapid actor's exercise to appropriate the structure of Arthur Schnitzler's Reigen. Snipes is both a snore and utter tripe. Ritchie's film is easier to swallow than Wertmuller's polemical allegory, but it's self-defeatingly decorous. Chalk it up as the worst kind of hubristic folly. It's the kind of under-inspired, overblown enterprise that gives Hollywood sequels a bad name. Rosenthal (Halloween II) seems to have forgotten everything he ever knew about generating suspense. Even Murphy's expert comic timing and famed charisma can't rescue this effort. Rodriguez...was unable to reproduce the special spark between the characters that made the first film such a delight. A sleek advert for youthful anomie that never quite equals the sum of its pretensions. Some Body smacks of exhibitionism more than it does cathartic truth telling. This isn't a terrible film by any means, but it's also far from being a realized work. Apparently, romantic comedy with a fresh point of view just doesn't figure in the present Hollywood program. Depressingly thin and exhaustingly contrived. Only masochistic moviegoers need apply. A 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. What's next? Rob Schneider, Dana Carvey and Sarah Michelle Gellar in The Philadelphia Story? David Spade as Citizen Kane? Can't seem to get anywhere near the story's center. The problem, amazingly enough, is the screenplay. It's a Frankenstein-monster of a film that doesn't know what it wants to be. Upper West Sidey exercise in narcissism and self-congratulation disguised as a tribute. On its icy face, the new film is a subzero version of Monsters, Inc., without the latter's imagination, visual charm or texture. I can't say this enough: This movie is about an adult male dressed in pink jammies. It's a mindless action flick with a twist -- far better suited to video-viewing than the multiplex. After 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. We get light showers of emotion a couple of times, but then -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle. Summer's far too fleeting to squander on offal like this. The film is grossly contradictory in conveying its social message, if indeed there is one. Often 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? Too bad Kramer couldn't make a guest appearance to liven things up. Deuces 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. It's a barely tolerable slog over well-trod ground. Epps has neither the charisma nor the natural affability that has made Tucker a star. It's sweet... but just a little bit too precious at the start and a little too familiar at the end. A dull, dumb and derivative horror film. An awkwardly contrived exercise in magic realism. Demme 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. This is a heartfelt story ... it just isn't a very involving one. These 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. The 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. Richard Pryor mined his personal horrors and came up with a treasure chest of material, but Lawrence gives us mostly fool's gold. The band performances featured in Drumline are red hot... (but) from a mere story point of view, the film's ice cold. ... 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. A laughable -- or rather, unlaughable -- excuse for a film. The sequel is everything the original was not: contrived, overblown and tie-in ready. Like a grinning Jack O' Lantern, its apparent glee is derived from a lobotomy, having had all its vital essence scooped out and discarded. A sentimental hybrid that could benefit from the spice of specificity. ...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. Give Shapiro, Goldman, and Bolado credit for good intentions, but there's nothing here that they couldn't have done in half an hour. It's so devoid of joy and energy it makes even Jason X ... look positively Shakesperean by comparison. A little objectivity could have gone a long way. One of the worst films of 2002. I believe Silberling had the best intentions here, but he just doesn't have the restraint to fully realize them. plays like an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood. McTiernan'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. High 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. This movie is about the worst thing Chan has done in the United States. The explosion essentially ruined -- or, rather, overpowered -- the fiction of the movie for me. This ludicrous film is predictable at every turn. An 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. The film desperately sinks further and further into comedy futility. Instead of a balanced film that explains the zeitgeist that is the X Games, we get a cinematic postcard that's superficial and unrealized. The crassness of this reactionary thriller is matched only by the ridiculousness of its premise. I wish it would have just gone more over-the-top instead of trying to have it both ways. The superior plotline isn't quite enough to drag along the dead (water) weight of the other. The 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. Adrift, Bentley and Hudson stare and sniffle, respectively, as Ledger attempts, in vain, to prove that movie-star intensity can overcome bad hair design. After 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. 'Linklater fans, or pretentious types who want to appear avant-garde will suck up to this project...' A woefully dull, redundant concept that bears more than a whiff of exploitation, despite Iwai's vaunted empathy. Screenwriter Chris ver Weil's directing debut is good-natured and never dull, but its virtues are small and easily overshadowed by its predictability. If you really want to understand what this story is really all about, you're far better served by the source material. It's mildly sentimental, unabashedly consumerist ... studiously inoffensive and completely disposable. Like its title character, Esther Kahn is unusual but unfortunately also irritating. The 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.'' A 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. Every conceivable mistake a director could make in filming opera has been perpetrated here. Snoots 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. (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. Any enjoyment will be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things. If 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. Hardly a nuanced portrait of a young woman's breakdown, the film nevertheless works up a few scares. Interminably bleak, to say nothing of boring. Things really get weird, though not particularly scary: the movie is all portent and no content. It's difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion. Bogs down badly as we absorb Jia's moody, bad-boy behavior which he portrays himself in a one-note performance. The camera whirls! The camera twirls! Oh, look at that clever angle! Wow, a jump cut! Demme finally succeeds in diminishing his stature from Oscar-winning master to lowly studio hack. The 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. It almost feels as if the movie is more interested in entertaining itself than in amusing us. It puts Washington, as honest working man John Q. Archibald, on a pedestal, then keeps lifting the pedestal higher. Ultimately, the film amounts to being lectured to by tech-geeks, if you're up for that sort of thing. Far more enjoyable than its predecessor. (Gayton's script) telegraphs every discovery and layers on the gloss of convenience. Full 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. A ragbag of cliches. This rough trade Punch-and-Judy act didn't play well then and it plays worse now. The three leads produce adequate performances, but what's missing from this material is any depth of feeling. It's possible that something hip and transgressive was being attempted here that stubbornly refused to gel, but the result is more puzzling than unsettling. This painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications ... that have no bearing on the story. Short and sweet, but also more than anything else slight... Tadpole pulls back from the consequences of its own actions and revelations. Has its moments, but it's pretty far from a treasure. What more can be expected from a college comedy that's target audience hasn't graduated from junior high school? Collateral Damage offers formula payback and the Big Payoff, but the explosions tend to simply hit their marks, pyro-correctly. The 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. Instead 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. You 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. An even more predictable, cliche-ridden endeavor than its predecessor. The whole thing plays like a tired Tyco ad. The 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. The soupy end result has the odd distinction of being playful without being fun, too. No, 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. Even by the intentionally low standards of frat-boy humor, Sorority Boys is a bowser. One 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. Halfway 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. Weighted down with slow, uninvolving storytelling and flat acting. We 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. There isn't one moment in the film that surprises or delights. 'Wouldn't it be nice if all guys got a taste of what it's like on the other side of the bra?' The movie is essentially a series of fleetingly interesting actors' moments. Most 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. This movie, a certain scene in particular, brought me uncomfortably close to losing my lunch. The secrets of time travel will have been discovered, indulged in and rejected as boring before I see this piece of crap again. Smug, artificial, ill-constructed and fatally overlong...it never finds a consistent tone and lacks bite, degenerating into a pious, preachy soap opera. Chelsea Walls is a case of too many chefs fussing over too weak a recipe. Every 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? Comes across as a fairly weak retooling. The lousy lead performances... keep the movie from ever reaching the comic heights it obviously desired. Its 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. (Creates) the worst kind of mythologizing, the kind that sacrifices real heroism and abject suffering for melodrama. The movie resolutely avoids all the comic possibilities of its situation, and becomes one more dumb high school comedy about sex gags and prom dates. Earnest and heartfelt but undernourished and plodding. A sugar-coated Rocky whose valuable messages are forgotten 10 minutes after the last trombone honks. Romanek keeps adding flourishes -- artsy fantasy sequences -- that simply feel wrong. They cheapen the overall effect. Has all the complexity and realistic human behavior of an episode of General Hospital. An 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. (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. An exercise in cynicism every bit as ugly as the shabby digital photography and muddy sound. Not good enough to pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans. The movie is silly beyond comprehension, and even if it weren't silly, it would still be beyond comprehension. Watchable 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. The scriptwriters are no less a menace to society than the film's characters. Merchant hasn't directed this movie so much as produced it -- like sausage. The film has a nearly terminal case of the cutes, and it's neither as funny nor as charming as it thinks it is. More a gunfest than a Rock concert. It's a frightful vanity film that, no doubt, pays off what debt Miramax felt they owed to Benigni. A muddy psychological thriller rife with miscalculations. It makes me say the obvious: Abandon all hope of a good movie ye who enter here. It's not original enough. A listless sci-fi comedy in which Eddie Murphy deploys two guises and elaborate futuristic sets to no particularly memorable effect. Little more than a super-sized infomercial for the cable-sports channel and its Summer X Games. A generic bloodbath that often becomes laughably unbearable when it isn't merely offensive. Julie Davis is the Kathie Lee Gifford of film directors, sadly proving once again ego doesn't always go hand in hand with talent. An unholy mess, driven by the pathetic idea that if you shoot something on crummy-looking videotape, it must be labelled 'hip', 'innovative' and 'realistic'. The story's pathetic and the gags are puerile. . Curiously, Super Troopers suffers because it doesn't have enough vices to merit its 103-minute length. So bland and utterly forgettable that it might as well have been titled Generic Jennifer Lopez Romantic Comedy. I was sent a copyof this film to review on DVD. For free. I still want my money back. It plods along methodically, somehow under the assumption that its ``dead wife communicating from beyond the grave'' framework is even remotely new or interesting. It'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. All too familiar...basically the sort of cautionary tale that was old when 'Angels With Dirty Faces' appeared in 1938. ...passable enough for a shoot-out in the o.k. court house of life type of flick. Strictly middle of the road. Although purportedly a study in modern alienation, it's really little more than a particularly slanted, gay s/m fantasy, enervating and deadeningly drawn-out. After the first 10 minutes, which is worth seeing, the movie sinks into an abyss of clichés, depression and bad alternative music. No one can doubt the filmmakers' motives, but The Guys still feels counterproductive. A very slow, uneventful ride around a pretty tattered old carousel. With little visible talent and no energy, Colin Hanks is in bad need of major acting lessons and maybe a little coffee. ``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. A Meatballs for the bare-midriff generation. Well-meaning to a fault, Antwone Fisher manages the dubious feat of turning one man's triumph of will into everyman's romance comedy. Seemingly 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. Formula 51 promises a new kind of high but delivers the same old bad trip. Everything that was right about Blade is wrong in its sequel. A 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. The 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). Disney again ransacks its archives for a quick-buck sequel. Coarse, 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. Anyone who suffers through this film deserves, at the very least, a big box of consolation candy. How 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. They 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. Collapses after 30 minutes into a slap-happy series of adolescent violence. The 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. Attal'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. Obvious, obnoxious and didactic burlesque. The most surprising thing about this film is that they are actually releasing it into theaters. Michele is a such a brainless flibbertigibbet that it's hard to take her spiritual quest at all seriously. Ultimately, clarity matters, both in breaking codes and making movies. Enigma lacks it. Potty-mouthed enough for PG-13, yet not as hilariously raunchy as South Park, this strangely schizo cartoon seems suited neither to kids or adults. ... has its moments, but ultimately, its curmudgeon doesn't quite make the cut of being placed on any list of favorites. A distinctly minor effort that will be seen to better advantage on cable, especially considering its barely feature-length running time of one hour. Most of the movie is so deadly dull that watching the proverbial paint dry would be a welcome improvement. In 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. Rather less than the sum of its underventilated père-fils confrontations. McKay 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. Plays like a series of vignettes -- clips of a film that are still looking for a common through-line. New Yorkers always seem to find the oddest places to dwell... Amid the shock and curiosity factors, the film is just a corny examination of a young actress trying to find her way. Yes, Spirited Away is a triumph of imagination, but it's also a failure of storytelling. A characteristically engorged and sloppy coming-of-age movie. A somewhat disappointing and meandering saga. Whenever 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. An empty, ugly exercise in druggy trance-noir and trumped-up street credibility. The 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. The milieu is wholly unconvincing ... and the histrionics reach a truly annoying pitch. Unfunny 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. Each 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. Except 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. Will no doubt delight Plympton's legion of fans; others may find 80 minutes of these shenanigans exhausting. The laughs are as rare as snake foo yung. For 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. Knockaround 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. Mattei so completely loses himself to the film's circular structure to ever offer any insightful discourse on, well, Love in the Time of Money. It briefly flirts with player masochism, but the point of real interest -– audience sadism -- is evaded completely. Holland 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. For 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. There's not a fresh idea at the core of this tale. An impenetrable and insufferable ball of pseudo-philosophic twaddle. It'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. I 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. Dreary tale of middle-class angst For a movie about the power of poetry and passion, there is precious little of either. (Jackson and Bledel) seem to have been picked not for their acting chops, but for their looks and appeal to the pre-teen crowd. Lillard and Cardellini earn their Scooby Snacks, but not anyone else. Like Schindler's List, The Grey Zone attempts to be grandiloquent, but ends up merely pretentious -- in a grisly sort of way. An 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. (Screenwriter) Pimental took the Farrelly Brothers comedy and feminized it, but it is a rather poor imitation. It's kind of sad that so many people put so much time and energy into this turkey. Friday After Next is a lot more bluster than bite. Its juxtaposition of overwrought existentialism and stomach-churning gore will have you forever on the verge of either cracking up or throwing up. A decidedly mixed bag. There are cheesy backdrops, ridiculous action sequences, and many tired jokes about men in heels. Ice Cube isn't quite out of ripe screwball ideas, but Friday After Next spreads them pretty thin. Not everything in the film works, including its somewhat convenient ending. The characters, cast in impossibly contrived situations, are totally estranged from reality. Everything else about High Crimes is, like the military system of justice it portrays, tiresomely regimented. Just dreadful. I don't blame Eddie Murphy but shouldn't Owen Wilson know a movie must have a story and a script? Sweet Home Alabama certainly won't be remembered as one of (Witherspoon's) better films. hard as this may be to believe, Here on Earth, a surprisingly similar teen drama, was a better film. This is just lazy writing. Even kids deserve better. The pretensions -- and disposable story -- sink the movie. And Diesel isn't the actor to save it. Bravo 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. ... a preachy parable stylized with a touch of John Woo bullet ballet. Frank Capra played this story straight. But the 2002 film doesn't really believe in it, and breaks the mood with absurdly inappropriate 'comedy' scenes. How about starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap? The problem is that for the most part, the film is deadly dull. Handled correctly, Wilde's play is a masterpiece of elegant wit and artifice. Here, alas, it collapses like an overcooked soufflé. ``Sorority Boys'' was funnier, and that movie was pretty bad. A 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 Paul Bettany is good at being the ultra-violent gangster wannabe, but the movie is certainly not number 1. It's a gag that's worn a bit thin over the years, though Don't Ask still finds a few chuckles. An uplifting drama ... What Antwone Fisher isn't, however, is original. Often 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. Certain to be distasteful to children and adults alike, Eight Crazy Nights is a total misfire. Elaborate special effects take centre screen, so that the human story is pushed to one side. Showtime isn't particularly assaultive, but it can still make you feel that you never want to see another car chase, explosion or gunfight again. All the characters are clinically depressed and have abandoned their slim hopes and dreams. This Tuxedo ... should have been sent back to the tailor for some major alterations. I 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 Been there, done that... a thousand times already, and better. What'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. Sunk by way too much indulgence of scene-chewing, teeth-gnashing actorliness. Fans of Plympton's shorts may marginally enjoy the film, but it is doubtful this listless feature will win him any new viewers. Barrels along at the start before becoming mired in sentimentality. None 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. The kind of movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics. 'Punch-Drunk Love is so convinced of its own brilliance that, if it were a person, you'd want to smash its face in.' At once overly old-fashioned in its sudsy plotting and heavy-handed in its effort to modernize it with encomia to diversity and tolerance. The trashy teen-sleaze equivalent of Showgirls. While the production details are lavish, film has little insight into the historical period and its artists, particularly in how Sand developed a notorious reputation. A crass and insulting homage to great films like Some Like It Hot and the John Wayne classics. What's the most positive thing that can be said about the new Rob Schneider vehicle? Well, it's not as pathetic as The Animal. With all the sympathy, empathy and pity fogging up the screen...His Secret Life enters the land of unintentional melodrama and tiresome love triangles. The problematic characters and overly convenient plot twists foul up Shum's good intentions. What 'Blade Runner' would've looked like as a low-budget series on a UHF channel. Has all the values of a straight-to-video movie, but because it has a bigger-name cast, it gets a full theatrical release. With its lackadaisical plotting and mindless action, All About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s. It never quite makes it to the boiling point, but manages to sustain a good simmer for most of its running time. Loud, silly, stupid and pointless. Mandel 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. A yawn-provoking little farm melodrama. Did no one on the set have a sense of humor, or did they not have the nerve to speak up? Seriously, rent the Disney version. As 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. Like its parade of predecessors, this Halloween is a gory slash-fest. It can't escape its past, and it doesn't want to. ``Abandon'' will leave you wanting to abandon the theater. Problem is, we have no idea what in creation is going on. A live-action cartoon, a fast-moving and cheerfully simplistic 88 minutes of exaggerated action put together with the preteen boy in mind. A loquacious and dreary piece of business. What the audience feels is exhaustion, from watching a movie that is dark (dark green, to be exact), sour, bloody and mean. director Hoffman, his writer and Kline's agent should serve detention Dodgy mixture of cutesy romance, dark satire and murder mystery. Meticulously mounted, exasperatingly well-behaved film, which ticks off Kahlo's lifetime milestones with the dutiful precision of a tax accountant. Time 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. I'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. While 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. I'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. The only reason you should see this movie is if you have a case of masochism and an hour and a half to blow. Whatever about warning kids about the dangers of ouija boards, someone should dispense the same advice to film directors. As 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. The Irwins' scenes are fascinating; the movie as a whole is cheap junk and an insult to their death-defying efforts. If 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. A 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. May puzzle his most ardent fans. Starts as a tart little lemon drop of a movie and ends up as a bitter pill. We never feel anything for these characters, and as a result the film is basically just a curiosity. Those unfamiliar with Mormon traditions may find The Singles Ward occasionally bewildering. Ritchie may not have a novel thought in his head, but he knows how to pose Madonna. The 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. Feels 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. While 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.'' The 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. '...the cast portrays their cartoon counterparts well...but quite frankly, Scoob and Shag don't eat enough during the film.' More of the same old garbage Hollywood has been trying to pass off as acceptable teen entertainment for some time now. TV skit-com material fervently deposited on the big screen. (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. If there was ever a movie where the upbeat ending feels like a copout, this is the one. It's as sorry a mess as its director's diabolical debut, Mad Cows. Any attempts at nuance given by the capable cast is drowned out by director Jon Purdy's sledgehammer sap. Its audacious ambitions sabotaged by pomposity, Steven Soderbergh's space opera emerges as a numbingly dull experience. Despite some strong performances, never rises above the level of a telanovela. This 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. Feels slight, as if it were an extended short, albeit one made by the smartest kids in class. Unspeakable, of course, barely begins to describe the plot and its complications. Vulgar is too optimistic a title. The actors pull out all the stops in nearly every scene, but to diminishing effect. The characters never change. If 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. Welles 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. Makes 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. Even as I valiantly struggled to remain interested, or at least conscious, I could feel my eyelids ... getting ... very ... heavy ... A bad movie that happened to good actors. Boasts eye-catching art direction but has a forcefully quirky tone that quickly wears out its limited welcome. Screenwriter Dan Schneider and director Shawn Levy substitute volume and primary colors for humor and bite. Oversexed, at times overwrought comedy/drama that offers little insight into the experience of being forty, female and single. That such a horrible movie could have sprung from such a great one is one of the year's worst cinematic tragedies. It 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. Rarely has a film's title served such dire warning. If you saw Benigni's Pinocchio at a public park, you'd grab your kids and run and then probably call the police. The 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. The pace of the film is very slow (for obvious reasons) and that too becomes off-putting. Mr. 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. Shafer's feature doesn't offer much in terms of plot or acting. In his role of observer of the scene, Lawrence sounds whiny and defensive, as if his life-altering experiences made him bitter and less mature. (T)he ideas of Revolution #9 are more compelling than the execution The 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. What happens when something goes bump in the night and nobody cares? Despite some comic sparks, Welcome to Collinwood never catches fire. Director 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. Shows moments of promise but ultimately succumbs to cliches and pat storytelling. Even accepting this in the right frame of mind can only provide it with so much leniency. Some Body is a shaky, uncertain film that nevertheless touches a few raw nerves. All the small moments and flashbacks don't add up to much more than trite observations on the human condition. (A) stale retread of the '53 original. One 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. For dance completists only. Spreads itself too thin, leaving these actors, as well as the members of the commune, short of profound characterizations It 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. The locale ... remains far more interesting than the story at hand. Yo, it's The Days Of Our Lives meets Electric Boogaloo. I liked the original short story but this movie, even at an hour and twenty-some minutes, it's too long and it goes nowhere. This little film is so slovenly done, so primitive in technique, that it can't really be called animation. Makes 98 minutes feel like three hours. Hawke'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. Aspires 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. Real-life strongman Ahola lacks the charisma and ability to carry the film on his admittedly broad shoulders. The title, alone, should scare any sane person away. Low comedy doesn't come much lower. Appropriately cynical social commentary aside, #9 never quite ignites. It's crap on a leash--far too polite to scale the lunatic heights of Joe Dante's similarly styled Gremlins. One 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. This is the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream. Let'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. A loud, brash and mainly unfunny high school comedy. An exceptionally dreary and overwrought bit of work, every bit as imperious as Katzenberg's The Prince of Egypt from 1998. The movie is so resolutely cobbled together out of older movies that it even uses a totally unnecessary prologue, just because it seems obligatory. The 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. Maid in Manhattan proves that it's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies. A fairly harmless but ultimately lifeless feature-length afterschool special. I can't remember the last time I saw a movie where I wanted so badly for the protagonist to fail. ...the whole thing succeeded only in making me groggy. Like most of Jaglom's films, some of it is honestly affecting, but more of it seems contrived and secondhand. One long, numbing action sequence made up mostly of routine stuff Yuen has given us before. Forgettable, if good-hearted, movie. The film's most improbable feat? It didn't go straight to video. ...about as exciting to watch as two last-place basketball teams playing one another on the final day of the season. The Chateau... is less concerned with cultural and political issues than doting on its eccentric characters. Cruel and inhuman cinematic punishment... simultaneously degrades its characters, its stars and its audience. It'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. The 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. About as original as a gangster sweating bullets while worrying about a contract on his life. An empty shell of an epic rather than the real deal. We could have expected a little more human being, and a little less product. Instead 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. Whether Quitting will prove absorbing to American audiences is debatable. Becomes a bit of a mishmash: a tearjerker that doesn't and a thriller that won't. Family togetherness takes a back seat to inter-family rivalry and workplace ambition... whole subplots have no explanation or even plot relevance. Grant isn't Cary and Bullock isn't Katherine. Like a fish that's lived too long, Austin Powers in Goldmember has some unnecessary parts and is kinda wrong in places. Two tedious acts light on great scares and a good surprise ending. Shyamalan should stop trying to please his mom. The entire movie is in need of a scented bath. I'm sorry to say that this should seal the deal - Arnold is not, nor will he be, back. The 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. A Movie to Forget For 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. Enough is not a bad movie, just mediocre. The performances are so overstated, the effect comes off as self-parody. It looks good, but it is essentially empty. The film never finds its tone and several scenes run too long. The 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. Van 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. It's hard to believe that something so short could be so flabby. Do we really need another film that praises female self-sacrifice? The major problem with Windtalkers is that the bulk of the movie centers on the wrong character. Tennessee Williams by way of Oprah's Book Club. So verbally flatfooted and so emotionally predictable or bland that it plays like the standard made-for-TV movie. The entire point of a shaggy dog story, of course, is that it goes nowhere, and this is classic nowheresville in every sense. Stale and clichéd to a fault. This film is too busy hitting all of its assigned marks to take on any life of its own. Watching junk like this induces a kind of abstract guilt, as if you were paying dues for good books unread, fine music never heard. The 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. Starts off witty and sophisticated and you want to love it -- but filmmaker Yvan Attal quickly writes himself into a corner. Some Like It Hot on the Hardwood proves once again that a man in drag is not in and of himself funny. Unfortunately, contrived plotting, stereotyped characters and Woo's over-the-top instincts as a director undermine the moral dilemma at the movie's heart. Witless and utterly pointless. When '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. Show me the mugging. Represents something very close to the nadir of the thriller/horror genre. Visually sumptuous but intellectually stultifying. As a feature-length film, it wears out its welcome as tryingly as the title character. A guilty pleasure at best, and not worth seeing unless you want to laugh at it. A sleep-inducing thriller with a single twist that everyone except the characters in it can see coming a mile away. With 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? It's just rather leaden and dull. Lacks 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. Statham employs an accent that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British. Instead of trying to bust some blondes, (Diggs) should be probing why a guy with his talent ended up in a movie this bad. Initial strangeness inexorably gives way to rote sentimentality and mystical tenderness becomes narrative expedience. De Ayala is required to supply too much of the energy in a film that is, overall, far too staid for its subject matter. Dismally dull sci-fi comedy. There's surely something wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits. When one hears Harry Shearer is going to make his debut as a film director, one would hope for the best The leads we are given here are simply too bland to be interesting. (Toback's) fondness for fancy split-screen, stuttering editing and pompous references to Wittgenstein and Kirkegaard ... blends uneasily with the titillating material. Adam 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. essentially ``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... Even a hardened voyeur would require the patience of Job to get through this interminable, shapeless documentary about the swinging subculture. The film's hero is a bore and his innocence soon becomes a questionable kind of inexcusable dumb innocence. A singularly off-putting romantic comedy. This is an exercise not in biography but in hero worship. It all comes down to whether you can tolerate Leon Barlow. I can't. In 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. Check 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. A movie that seems motivated more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story. A culture clash comedy only half as clever as it thinks it is. The logic of it all will be Greek to anyone not predisposed to the movie's rude and crude humor. As self-aware movies go, Who is Cletis Tout? is clever enough, though thin writing proves its undoing. Starts 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. ... 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. Director Jay Russell weighs down his capricious fairy-tale with heavy sentiment and lightweight meaning. There are many things that solid acting can do for a movie, but crafting something promising from a mediocre screenplay is not one of them. Its screenplay serves as auto-critique, and its clumsiness as its own most damning censure. At times, it actually hurts to watch. Nemesis suffers from a paunchy midsection, several plodding action sequences and a wickedly undramatic central theme. The jokes are telegraphed so far in advance they must have been lost in the mail. (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. A beyond-lame satire, Teddy Bears' Picnic ranks among the most pitiful directing debuts by an esteemed writer-actor. I'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... Hollywood's answer to an air ball. And people make fun of me for liking Showgirls. Such a wildly uneven hit-and-miss enterprise, you can't help suspecting that it was improvised on a day-to-day basis during production. A 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. I'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. Like Mike is a slight and uninventive movie: Like the exalted Michael Jordan referred to in the title, many can aspire but none can equal. There is nothing funny in this every-joke-has- been-told-a- thousand-times- before movie. Always destined to be measured against Anthony Asquith's acclaimed 1952 screen adaptation. This is standard crime drama fare... instantly forgettable and thoroughly dull. There'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. One of those based-on-truth stories that persuades you, with every scene, that it could never really have happened this way. From its nauseating spinning credits sequence to a very talented but underutilized supporting cast, Bartleby squanders as much as it gives out. Yet another genre exercise, Gangster No. 1 is as generic as its title. Despite the holes in the story and the somewhat predictable plot, moments of the movie caused me to jump in my chair... There'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. Once 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. A lightweight, uneven action comedy that freely mingles French, Japanese and Hollywood cultures. Such a fine idea for a film, and such a stultifying, lifeless execution. (Allen's) best works understand why snobbery is a better satiric target than middle-America diversions could ever be. This overlong infomercial, due out on video before month's end, is tepid and tedious. An ambitious, guilt-suffused melodrama crippled by poor casting. Rarely has sex on screen been so aggressively anti-erotic. A dull, inconsistent, dishonest female bonding picture. So 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. A disappointment for a movie that should have been the ultimate IMAX trip. Does little to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon. This 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. The 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. It's as if a bored Cage spent the duration of the film's shooting schedule waiting to scream: ``Got AIDS yet?'' In a strange way, Egoyan has done too much. He's worked too hard on this movie. The 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. The last three narcissists left on earth compete for each others' affections. A clash between the artificial structure of the story and the more contemporary, naturalistic tone of the film ... The movie's messages are quite admirable, but the story is just too clichéd and too often strains credulity. What we have here isn't a disaster, exactly, but a very handsomely produced let-down. The script was reportedly rewritten a dozen times -- either 11 times too many or else too few. A shoddy male hip hop fantasy filled with guns, expensive cars, lots of naked women and Rocawear clothing. To 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. This is a movie filled with unlikable, spiteful idiots; whether or not their friendship is salvaged makes no difference in the least. It's as if Allen, at 66, has stopped challenging himself. Scotland, PA is entirely too straight-faced to transcend its clever concept. A movie that the less charitable might describe as a castrated cross between Highlander and Lolita. Not only does LeBlanc make one spectacularly ugly-looking broad, but he appears miserable throughout as he swaggers through his scenes. There's little to recommend Snow Dogs, unless one considers cliched dialogue and perverse escapism a source of high hilarity. It's deep-sixed by a compulsion to catalog every bodily fluids gag in There's Something About Mary and devise a parallel clone-gag. The film rehashes several old themes and is capped with pointless extremes -- it's insanely violent and very graphic. Sorority Boys, which is as bad at it is cruel, takes every potential laugh and stiletto-stomps the life out of it. Here 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. This is the first film I've ever seen that had no obvious directing involved. Fans of so-bad-they're-good cinema may find some fun in this jumbled mess. Weiss and Speck never make a convincing case for the relevance of these two 20th-century footnotes. Sheridan is painfully bad, a fourth-rate Jim Carrey who doesn't understand the difference between dumb fun and just plain dumb. Presents nothing special and, until the final act, nothing overtly disagreeable. The most excruciating 86 minutes one might sit through this summer that do not involve a dentist drill. Was that movie nothing more than a tepid exercise in trotting out a formula that worked five years ago but has since lost its fizz? It goes on for too long and bogs down in a surfeit of characters and unnecessary subplots. It'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. You ... get a sense of good intentions derailed by a failure to seek and strike just the right tone. 'In this poor remake of such a well loved classic, Parker exposes the limitations of his skill and the basic flaws in his vision.' It's the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn. The film's final hour, where nearly all the previous unseen material resides, is unconvincing soap opera that Tornatore was right to cut. The movie does such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating. I found it slow, predictable and not very amusing. Director 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. Viewers will need all the luck they can muster just figuring out who's who in this pretentious mess. A 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. Get out your pooper-scoopers. While the material is slight, the movie is better than you might think. It'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. Sheridan seems terrified of the book's irreverent energy, and scotches most of its élan, humor, bile, and irony. More busy than exciting, more frantic than involving, more chaotic than entertaining. There 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. It'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. The fourth in a series that I'll bet most parents had thought --hoped! -- was a fad that had long since vanished. It'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. Its premise is smart, but the execution is pretty weary. The holiday message of the 37-minute Santa vs. the Snowman leaves a lot to be desired. more precious than perspicacious If you saw it on TV, you'd probably turn it off, convinced that you had already seen that movie. (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. If this is cinema, I pledge allegiance to Cagney and Lacey. Enigma looks great, has solid acting and a neat premise. Yet why it fails is a riddle wrapped in a mystery inside an enigma. Most of the characters come off as pantomimesque sterotypes. Starts promisingly but disintegrates into a dreary, humorless soap opera. While 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. It's actually too sincere -- the crime movie equivalent of a chick flick. Most of the film feels conceived and shot on the fly -- like between lunch breaks for Shearer's radio show and his Simpson voice-overs. Perry'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. Culkin turns his character into what is basically an anti-Harry Potter -- right down to the Gryffindor scarf. Memorable for a peculiar malaise that renders its tension flaccid and, by extension, its surprises limp and its resolutions ritual. It'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. In 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. The 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. Like most movies about the pitfalls of bad behavior ... Circuit gets drawn into the party. It appears as if even the filmmakers didn't know what kind of movie they were making. Beneath the uncanny, inevitable and seemingly shrewd facade of movie-biz farce...lies a plot cobbled together from largely flat and uncreative moments. Snipes relies too much on a scorchingly plotted dramatic scenario for its own good. Piccoli's performance is amazing, yes, but the symbols of loss and denial and life-at-arm's-length in the film seem irritatingly transparent. Starts out mediocre, spirals downward, and thuds to the bottom of the pool with an utterly incompetent conclusion. Nicolas 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. It lacks the compassion, good-natured humor and the level of insight that made (Eyre's) first film something of a sleeper success. The result is good gossip, entertainingly delivered, yet with a distinctly musty odour, its expiry date long gone. A sustained fest of self-congratulation between actor and director that leaves scant place for the viewer. All Analyze That proves is that there is really only one movie's worth of decent gags to be gleaned from the premise. Green ruins every single scene he's in, and the film, while it's not completely wreaked, is seriously compromised by that. There's not a comedic moment in this romantic comedy. The story is predictable, the jokes are typical Sandler fare, and the romance with Ryder is puzzling. Wallace directs with such patronising reverence, it turns the stomach. Resurrection has the dubious distinction of being a really bad imitation of the really bad Blair Witch Project. Poor Ben Bratt couldn't find stardom if MapQuest emailed him point-to-point driving directions. Pretend like your SAT scores are below 120 and you might not notice the flaws. Unlike Trey Parker, Sandler doesn't understand that the idea of exploiting molestation for laughs is funny, not actually exploiting it yourself. A fake street drama that keeps telling you things instead of showing them. An empty, purposeless exercise. Earnest and tentative even when it aims to shock. Haneke's script (from Elfriede Jelinek's novel) is contrived, unmotivated, and psychologically unpersuasive, with an inconclusive ending. A sometimes incisive and sensitive portrait that is undercut by its awkward structure and a final veering toward melodrama. Those 24-and-unders looking for their own Caddyshack to adopt as a generational signpost may have to keep on looking. A distinctly mixed bag, the occasional bursts of sharp writing alternating with lots of sloppiness and the obligatory moments of sentimental ooze. What begins brightly gets bogged down over 140 minutes. Ultimately, Jane learns her place as a girl, softens up and loses some of the intensity that made her an interesting character to begin with. Ah-nuld's action hero days might be over. It's clear why Deuces Wild, which was shot two years ago, has been gathering dust on MGM's shelf. Feels like nothing quite so much as a middle-aged moviemaker's attempt to surround himself with beautiful, half-naked women. When the precise nature of Matthew's predicament finally comes into sharp focus, the revelation fails to justify the build-up. This picture is murder by numbers, and as easy to be bored by as your ABC's, despite a few whopping shootouts. Hilarious musical comedy though stymied by accents thick as mud. If you are into splatter movies, then you will probably have a reasonably good time with The Salton Sea. A dull, simple-minded and stereotypical tale of drugs, death and mind-numbing indifference on the inner-city streets. The feature-length stretch ... strains the show's concept. This slender plot feels especially thin stretched over the nearly 80-minute running time. A film that will probably please people already fascinated by Behan but leave everyone else yawning with admiration. Davis 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. The densest distillation of Roberts' movies ever made. Ultimately, 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. A handsome but unfulfilling suspense drama more suited to a quiet evening on PBS than a night out at an AMC. Tom 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. (It) highlights not so much the crime lord's messianic bent, but Spacey's. Master of Disguise runs for only 71 minutes and feels like three hours. A reworking of Die Hard and Cliffhanger but it's nowhere near as exciting as either. Suffers from unlikable characters and a self-conscious sense of its own quirky hipness. A film without surprise geared toward maximum comfort and familiarity. Fessenden 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. Spirit is a visual treat, and it takes chances that are bold by studio standards, but it lacks a strong narrative. It 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. This 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 The niftiest trick perpetrated by The Importance of Being Earnest is the alchemical transmogrification of Wilde into Austen--and a Hollywood-ized Austen at that. Tykwer'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. Ice Age is the first computer-generated feature cartoon to feel like other movies, and that makes for some glacial pacing early on. Too slick and manufactured to claim street credibility. Cherry 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.' What ensues are much blood-splattering, mass drug-induced bowel evacuations, and none-too-funny commentary on the cultural distinctions between Americans and Brits. A dark comedy that goes for sick and demented humor simply to do so. The movie is without intent. Visually exciting sci-fi film which suffers from a lackluster screenplay. While 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. If The Full Monty was a freshman fluke, Lucky Break is (Cattaneo) sophomore slump. Sandra Bullock and Hugh Grant make a great team, but this predictable romantic comedy should get a pink slip. Allegiance to Chekhov, which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard, is a particularly vexing handicap. You expect more from director Michael Apted (Enigma) and screenwriter Nicholas Kazan (Reversal of Fortune) than this cliche pileup. The 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? The dramatic scenes are frequently unintentionally funny, and the action sequences -- clearly the main event -- are surprisingly uninvolving. Replacing 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. It has the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references. Despite its dry wit and compassion, the film suffers from a philosophical emptiness and maddeningly sedate pacing. ...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. Attal pushes too hard to make this a comedy or serious drama. He seems to want both, but succeeds in making neither. I could have used my two hours better watching Being John Malkovich again. It's not a bad plot; but, unfortunately, the movie is nowhere near as refined as all the classic dramas it borrows from. Girlfriends are bad, wives are worse and babies are the kiss of death in this bitter Italian comedy. The only young people who possibly will enjoy it are infants... who might be distracted by the movie's quick movements and sounds. The film boasts at least a few good ideas and features some decent performances, but the result is disappointing. No Such Thing breaks no new ground and treads old turf like a hippopotamus ballerina. Unfortunately, neither Sendak nor the directors are particularly engaging or articulate. A wishy-washy melodramatic movie that shows us plenty of sturm und drung, but explains its characters' decisions only unsatisfactorily. Bang! Zoom! It's actually pretty funny, but in all the wrong places. Lurid and less than lucid work. A 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. At a brief 42 minutes, we need more X and less blab. If anything, see it for Karen Black, who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick. This 90-minute dud could pass for Mike Tyson's E! True Hollywood Story. This is surely one of the most frantic, virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio. Once the expectation of laughter has been quashed by whatever obscenity is at hand, even the funniest idea isn't funny. A porn film without the sex scenes. The connected stories of Breitbart and Hanussen are actually fascinating, but the filmmaking in Invincible is such that the movie does not do them justice. A depressingly retrograde, 'post-feminist' romantic comedy that takes an astonishingly condescending attitude toward women. Return 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. By 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! While it's all quite tasteful to look at, the attention process tends to do a little fleeing of its own. Broder's screenplay is shallow, offensive and redundant, with pitifully few real laughs. Yes they can swim, the title is merely Anne-Sophie Birot's off-handed way of saying girls find adolescence difficult to wade through. Don 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). Slow, silly and unintentionally hilarious. The Sweetest Thing leaves a bitter taste. In 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. For something as splendid-looking as this particular film, the viewer expects something special but instead gets (sci-fi) rehash. A thriller without a lot of thrills. This stuck pig of a movie flails limply between bizarre comedy and pallid horror. Ah, the travails of metropolitan life! Alas, another breathless movie about same! In Moonlight Mile, no one gets shut out of the hug cycle. Though uniformly well acted, especially by young Ballesta and Galan (a first-time actor), writer/director Achero Manas's film is schematic and obvious. Done in mostly by a weak script that can't support the epic treatment. Despite its visual virtuosity, 'Naqoyqatsi' is banal in its message and the choice of material to convey it. Slap 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. Though 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. ``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? ``Not really as bad as you might think!'' Strident and inelegant in its 'message-movie' posturing. One regards Reign of Fire with awe. What a vast enterprise has been marshaled in the service of such a minute idea. It 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. Its impressive images of crematorium chimney fires and stacks of dead bodies are undermined by the movie's presentation, which is way too stagy. Seeing as the film lacks momentum and its position remains mostly undeterminable, the director's experiment is a successful one. The plot is romantic comedy boilerplate from start to finish. I 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. An unfortunate title for a film that has nothing endearing about it. Ninety minutes of Viva Castro! can be as tiresome as 9 seconds of Jesse Helms' anti- Castro rhetoric, which are included Comes off as a long, laborious whine, the bellyaching of a paranoid and unlikable man. It just goes to show, an intelligent person isn't necessarily an admirable storyteller. In 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.'' Hopelessly inane, humorless and under-inspired. Kapur fails to give his audience a single character worth rooting for (or worth rooting against, for that matter). It 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. None 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. A great script brought down by lousy direction. Same guy with both hats. Big mistake. A mediocre exercise in target demographics, unaware that it's the butt of its own joke. Director 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. In gleefully, thumpingly hyperbolic terms, it covers just about every cliche in the compendium about crass, jaded movie types and the phony baloney movie biz. The Spalding Gray equivalent of a teen gross-out comedy. Perhaps even the SLC high command found writer-director Mitch Davis's wall of kitsch hard going. According to Wendigo, 'nature' loves the members of the upper class almost as much as they love themselves. An encouraging effort from McCrudden The romance between the leads isn't as compelling or as believable as it should be. If 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. Supposedly authentic account of a historical event that's far too tragic to merit such superficial treatment. Adroit 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. To Blandly Go Where We Went 8 Movies Ago ... A slow-moving police-procedural thriller that takes its title all too literally. This u-boat doesn't have a captain. With nary a glimmer of self-knowledge, (Crane) becomes more specimen than character -- and Auto Focus remains a chilly, clinical lab report. This one aims for the toilet and scores a direct hit. Dull, a road-trip movie that's surprisingly short of both adventure and song. I 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. After 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. A relatively effective little potboiler until its absurd, contrived, overblown, and entirely implausible finale. The Country Bears wastes an exceptionally good idea. But the movie that doesn't really deliver for country music fans or for family audiences Adults 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. ...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. Too bad writer-director Adam Rifkin situates it all in a plot as musty as one of the Golden Eagle's carpets. It's lazy for a movie to avoid solving one problem by trying to distract us with the solution to another. The movie is genial but never inspired, and little about it will stay with you. The 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. Despite the opulent lushness of every scene, the characters never seem to match the power of their surroundings. even 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. A bland, obnoxious 88-minute infomercial for Universal Studios and its ancillary products. ..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. The 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. The Master of Disguise is awful. It's Pauly Shore awful. Don't say you weren't warned. Disappointing in comparison to other recent war movies...or any other John Woo flick for that matter. The entire movie is filled with deja vu moments. 'Opening up' the play more has partly closed it down. What (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. An ugly, revolting movie. The film is way too full of itself; it's stuffy and pretentious in a give-me-an-Oscar kind of way. The 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. Watching ``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. Certainly beautiful to look at, but its not very informative about its titular character and no more challenging than your average television biopic. It 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. The 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? From 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 My advice is to skip the film and pick up the soundtrack. A film that presents an interesting, even sexy premise then ruins itself with too many contrivances and goofy situations. Filled with low-brow humor, gratuitous violence and a disturbing disregard for life. directed in a flashy, empty sub-music video style by a director so self-possessed he actually adds a period to his first name The 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. An unsophisticated sci-fi drama that takes itself all too seriously. Solondz is without doubt an artist of uncompromising vision, but that vision is beginning to feel, if not morally bankrupt, at least terribly monotonous. Harvard Man is a semi-throwback, a reminiscence without nostalgia or sentimentality. Supposedly 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. While Hoffman's performance is great, the subject matter goes nowhere. The smash 'em-up, crash 'em-up, shoot 'em-up ending comes out of nowhere substituting mayhem for suspense. Deuces Wild treads heavily into Romeo and Juliet/West Side Story territory, where it plainly has no business going. Hart's War seems to want to be a character study, but apparently can't quite decide which character. Theological matters aside, the movie is so clumsily sentimental and ineptly directed it may leave you speaking in tongues. This 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. Novak contemplates a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama. Been there, done that, liked it much better the first time around - when it was called The Professional. The film is all over the place, really. It dabbles all around, never gaining much momentum. The beautiful, unusual music is this film's chief draw, but its dreaminess may lull you to sleep. The action quickly sinks into by-the-numbers territory. Forages 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. When (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. Such a premise is ripe for all manner of lunacy, but Kaufman and Gondry rarely seem sure of where it should go. Burns' fifth beer-soaked film feels in almost every possible way -- from the writing and direction to the soggy performances -- tossed off. While this one gets off with a good natured warning, future Lizard endeavors will need to adhere more closely to the laws of laughter Another boorish movie from the I-heard-a-joke- at-a-frat-party school of screenwriting. Too much of the movie feels contrived, as if the filmmakers were worried the story wouldn't work without all those gimmicks. It'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. The 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. The 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. Why 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? The 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. Exploring value choices is a worthwhile topic for a film -- but here the choices are as contrived and artificial as Kerrigan's platinum-blonde hair. The 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. All mood and no movie. Press the delete key. Simone is not a bad film. It just doesn't have anything really interesting to say. Once he starts learning to compromise with reality enough to become comparatively sane and healthy, the film becomes predictably conventional. ...hopefully it'll be at the dollar theatres by the time Christmas rolls around. Wait to see it then. There's no disguising this as one of the worst films of the summer. Or for the year, for that matter. Lacks 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. This 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. Death to Smoochy tells a moldy-oldie, not-nearly -as-nasty -as-it- thinks-it-is joke. Over and over again. The threat implied in the title Pokémon 4ever is terrifying – like locusts in a horde these things will keep coming. The film never gets over its own investment in conventional arrangements, in terms of love, age, gender, race, and class. To call this film a lump of coal would only be to flatter it. Entertainment more disposable than Hanna-Barbera's half-hour cartoons ever were. The film falls short on tension, eloquence, spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries. By 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. At 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. The whole talking-animal thing is grisly. Never Again, while nothing special, is pleasant, diverting and modest -- definitely a step in the right direction. Wouldn'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. Has not so much been written as assembled, Frankenstein-like, out of other, marginally better shoot-em-ups. The punch lines that miss, unfortunately, outnumber the hits by three-to-one. But Death to Smoochy keeps firing until the bitter end. Mushes the college-friends genre (The Big Chill) together with the contrivances and overwrought emotion of soap operas. Showtime'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. A determined, ennui-hobbled slog that really doesn't have much to say beyond the news flash that loneliness can make people act weird. Too daft by half ... but supremely good natured. Fails 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. It's a shame that the storyline and its underlying themes ... finally seem so impersonal or even shallow. Woody, what happened? Juliette Binoche's Sand is vivacious, but it's hard to sense that powerhouse of 19th-century prose behind her childlike smile. It's supposed to be post-feminist breezy but ends up as tedious as the chatter of parrots raised on Oprah. You can tell almost immediately that Welcome to Collinwood isn't going to jell. Throughout all the tumult, a question comes to mind: So why is this so boring? Cattaneo reworks the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work. Routine and rather silly. A rip-off twice removed, modeled after (Seagal's) earlier copycat Under Siege, sometimes referred to as Die Hard on a boat. Totally 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. You can practically hear George Orwell turning over. Behan'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. While Holm is terrific as both men and Hjejle quite appealing, the film fails to make the most out of the intriguing premise. Lazy filmmaking, with the director taking a hands-off approach when he should have shaped the story to show us why it's compelling. If 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. A movie that falls victim to frazzled wackiness and frayed satire. How 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. The film's trailer also looked like crap, so crap is what I was expecting. More trifle than triumph. The movie is almost completely lacking in suspense, surprise and consistent emotional conviction. Festers in just such a dungpile that you'd swear you were watching monkeys flinging their feces at you. Lyne's latest, the erotic thriller Unfaithful, further demonstrates just how far his storytelling skills have eroded. It sounds like another clever if pointless excursion into the abyss, and that's more or less how it plays out. Rumor, a muddled drama about coming to terms with death, feels impersonal, almost generic. Report 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). The pacing is deadly, the narration helps little and Naipaul, a juicy writer, is negated. As 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. ...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. Bean drops the ball too many times... hoping the nifty premise will create enough interest to make up for an unfocused screenplay. A well-acted, but one-note film. Blood Work is laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood's Dirty Harry period. The movie is too amateurishly square to make the most of its own ironic implications. (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. There's not one decent performance from the cast and not one clever line of dialogue. No amount of burning, blasting, stabbing, and shooting can hide a weak script. It's an odd show, pregnant with moods, stillborn except as a harsh conceptual exercise. Nearly all the fundamentals you take for granted in most films are mishandled here. The Armenian genocide deserves a more engaged and honest treatment. Earnest yet curiously tepid and choppy recycling in which predictability is the only winner. Ultimately this is a frustrating patchwork: an uneasy marriage of Louis Begley's source novel (About Schmidt) and an old Payne screenplay. The exploitative, clumsily staged violence overshadows everything, including most of the actors. We started to wonder if ... some unpaid intern had just typed 'Chris Rock,' 'Anthony Hopkins' and 'terrorists' into some Univac-like script machine. Even when Crush departs from the 4W formula ... it feels like a glossy rehash. More likely to have you scratching your head than hiding under your seat. Bears is even worse than I imagined a movie ever could be. When you find yourself rooting for the monsters in a horror movie, you know the picture is in trouble. This is very much of a mixed bag, with enough negatives to outweigh the positives. Marinated in clichés and mawkish dialogue. Whether 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. (A) boldly stroked, luridly coloured, uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain. Not 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.' Rollerball IS as bad as you think, and worse than you can imagine. The 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. Not 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. Shame on writer/director Vicente Aranda for making a florid biopic about mad queens, obsessive relationships, and rampant adultery so dull. Suffers from a decided lack of creative storytelling. Violent, vulgar and forgettably entertaining. Nothing happens, and it happens to flat characters. With 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. Remember 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. Blue 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. This movie plays like an extended dialogue exercise in Retard 101. What we get in FearDotCom is more like something from a bad Clive Barker movie. In other words, it's badder than bad. If 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. A sloppy slapstick throwback to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken. A small independent film suffering from a severe case of Hollywood-itis. Where the film falters is in its tone. The story alone could force you to scratch a hole in your head. Ultimately, 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. It'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. Feels more like a rejected X-Files episode than a credible account of a puzzling real-life happening. Some 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. An enigmatic film that's too clever for its own good, it's a conundrum not worth solving. A zombie movie in every sense of the word--mindless, lifeless, meandering, loud, painful, obnoxious. A film that clearly means to preach exclusively to the converted. It doesn't take a rocket scientist to figure out that this is a Mormon family movie, and a sappy, preachy one at that. Definitely a crowd-pleaser, but then, so was the Roman Colosseum. Certainly not a good movie, but it wasn't horrible either. Although 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. The result is so tame that even slightly wised-up kids would quickly change the channel. It appears to have been modeled on the worst revenge-of-the-nerds clichés the filmmakers could dredge up. Nothing but an episode of Smackdown! in period costume and with a bigger budget. It takes you somewhere you're not likely to have seen before, but beneath the exotic surface (and exotic dancing) it's surprisingly old-fashioned. While 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. It should be interesting, it should be poignant, it turns out to be affected and boring. A good-looking but ultimately pointless political thriller with plenty of action and almost no substance. A tired, predictable, bordering on offensive, waste of time, money and celluloid. If 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é. Stealing 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. This is an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors. Does anyone much think the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink? `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. The dialogue is cumbersome, the simpering soundtrack and editing more so. Never decides whether it wants to be a black comedy, drama, melodrama or some combination of the three. It has become apparent that the franchise's best years are long past. Does what should seem impossible: it makes serial killer Jeffrey Dahmer boring. Don't hate El Crimen del Padre Amaro because it's anti-Catholic. Hate it because it's lousy. ... better described as a ghost story gone badly awry. Like a bad improvisation exercise, the superficially written characters ramble on tediously about their lives, loves and the art they're struggling to create. The 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. Competently directed but terminally cute drama. The big finish is a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing. Not just unlikable. Disturbing. Disgusting. Without any redeeming value whatsoever. This thing is virtually unwatchable. Those eternally devoted to the insanity of Black will have an intermittently good time. Feel free to go get popcorn whenever he's not onscreen. The self-serious Equilibrium makes its point too well; a movie, like life, isn't much fun without the highs and lows. The work of an exhausted, desiccated talent who can't get out of his own way. The main characters are simply named The Husband, The Wife and The Kidnapper, emphasizing the disappointingly generic nature of the entire effort. In terms of execution this movie is careless and unfocused. Swims in mediocrity, sticking its head up for a breath of fresh air now and then. The only type of lives this glossy comedy-drama resembles are ones in formulaic mainstream movies. The characters ... are paper-thin, and their personalities undergo radical changes when it suits the script. A Sha-Na-Na sketch punctuated with graphic violence. The trouble is, its filmmakers run out of clever ideas and visual gags about halfway through. Spy-vs.-spy action flick with Antonio Banderas and Lucy Liu never comes together. A so-so, made-for-TV something posing as a real movie. The only upside to all of this unpleasantness is, given its Labor Day weekend upload, FearDotCom should log a minimal number of hits. Whether this is art imitating life or life imitating art, it's an unhappy situation all around. An uneasy mix of run-of-the-mill raunchy humor and seemingly sincere personal reflection. A formula family tearjerker told with a heavy Irish brogue...accentuating, rather than muting, the plot's saccharine thrust. This is Sandler running on empty, repeating what he's already done way too often. This is as lax and limp a comedy as I've seen in a while, a meander through worn-out material. Time 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. The 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. Aptly named, this shimmering, beautifully costumed and filmed production doesn't work for me. A preposterously melodramatic paean to gang-member teens in Brooklyn circa 1958. Has none of the crackle of ``Fatal Attraction'', ``9 ½ Weeks'', or even ``Indecent Proposal'', and feels more like Lyne's stolid remake of ``Lolita''. Everything its title implies, a standard-issue crime drama spat out from the Tinseltown assembly line. An extraordinarily silly thriller. A rehash of every gangster movie from the past decade. Gaping plot holes sink this 'sub'-standard thriller and drag audience enthusiasm to crush depth. Talkiness isn't necessarily bad, but the dialogue frequently misses the mark. The 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. The stunt work is top-notch; the dialogue and drama often food-spittingly funny. The movie isn't painfully bad, something to be 'fully experienced'; it's just tediously bad, something to be fully forgotten. Charly comes off as emotionally manipulative and sadly imitative of innumerable past Love Story derisions. What 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. No amount of good intentions is able to overcome the triviality of the story. The 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. ... for all its social and political potential, State Property doesn't end up being very inspiring or insightful. A film really has to be exceptional to justify a three hour running time, and this isn't. Little 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. The nonstop artifice ultimately proves tiresome, with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations. This is a monumental achievement in practically every facet of inept filmmaking: joyless, idiotic, annoying, heavy-handed, visually atrocious, and often downright creepy. This off-putting French romantic comedy is sure to test severely the indulgence of fans of Amélie. overburdened with complicated plotting and banal dialogue Ensemble movies, like soap operas, depend on empathy. If there ain't none, you have a problem. The Master of Disguise falls under the category of 'should have been a sketch on Saturday Night Live.' Yet 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. Koepp's screenplay isn't nearly surprising or clever enough to sustain a reasonable degree of suspense on its own. Is it really an advantage to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets? More successful at relating history than in creating an emotionally complex, dramatically satisfying heroine Clumsy, obvious, preposterous, the movie will likely set the cause of woman warriors back decades. It'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. A banal, virulently unpleasant excuse for a romantic comedy. The drama discloses almost nothing. A minor-league soccer remake of The Longest Yard. Belongs in the too-hot-for-TV direct-to-video/DVD category, and this is why I have given it a one-star rating. As 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. A dim-witted and lazy spin-off of the Animal Planet documentary series, Crocodile Hunter is entertainment opportunism at its most glaring. There 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. Even fans of Ismail Merchant's work, I suspect, would have a hard time sitting through this one. It's really just another silly Hollywood action film, one among a multitude of simple-minded, yahoo-ing death shows. It's not a particularly good film, but neither is it a monsterous one. The world needs more filmmakers with passionate enthusiasms like Martin Scorsese. But it doesn't need Gangs of New York. Enchanted 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. Harry 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. Sade achieves the near-impossible: It turns the Marquis de Sade into a dullard. (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. One of the most plain, unimaginative romantic comedies I've ever seen. Though there's a clarity of purpose and even-handedness to the film's direction, the drama feels rigged and sluggish. Unfortunately, the experience of actually watching the movie is less compelling than the circumstances of its making. Unless there are zoning ordinances to protect your community from the dullest science fiction, Impostor is opening today at a theater near you. It should be doing a lot of things, but doesn't. Chen films the resolutely downbeat Smokers Only with every indulgent, indie trick in the book. ...a rather bland affair. Far-fetched premise, convoluted plot, and thematic mumbo jumbo about destiny and redemptive love. The movie tries to be ethereal, but ends up seeming goofy. I was hoping that it would be sleazy and fun, but it was neither. Harris is supposed to be the star of the story, but comes across as pretty dull and wooden. Soulless and -- even more damning -- virtually joyless, XXX achieves near virtuosity in its crapulence. A boring masquerade ball where normally good actors, even Kingsley, are made to look bad. All the Queen's Men is a throwback war movie that fails on so many levels, it should pay reparations to viewers. The filmmakers keep pushing the jokes at the expense of character until things fall apart. Rather 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. Mariah Carey gives us another peek at some of the magic we saw in Glitter here in Wisegirls. It'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. I suspect that you'll be as bored watching Morvern Callar as the characters are in it. If you go, pack your knitting needles. The lead actors share no chemistry or engaging charisma. We don't even like their characters. Some 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. The movie doesn't generate a lot of energy. It is dark, brooding and slow, and takes its central idea way too seriously. This feature is about as necessary as a hole in the head Spectators will indeed sit open-mouthed before the screen, not screaming but yawning. It feels like very light Errol Morris, focusing on eccentricity but failing, ultimately, to make something bigger out of its scrapbook of oddballs. A period story about a Catholic boy who tries to help a Jewish friend get into heaven by sending the audience straight to hell. The premise itself is just SOOOOO tired. Pair that with really poor comedic writing...and you've got a huge mess. Proves a lovely trifle that, unfortunately, is a little too in love with its own cuteness. Did we really need a remake of ``Charade?'' Some 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. The 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. I spied with my little eye...a mediocre collection of cookie-cutter action scenes and occasionally inspired dialogue bits Entertains 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. The satire is just too easy to be genuinely satisfying. Less funny than it should be and less funny than it thinks it is. an ``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. A feeble Tootsie knockoff. An awful movie that will only satisfy the most emotionally malleable of filmgoers. ...the story is far-flung, illogical, and plain stupid. The very simple story seems too simple and the working out of the plot almost arbitrary. An allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing, but the supernatural trappings only obscure the message. A 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. One key problem with these ardently Christian storylines is that there is never any question of how things will turn out. Essentially, the film is weak on detail and strong on personality A relentless, bombastic and ultimately empty World War II action flick. (Hell is) looking down at your watch and realizing Serving Sara isn't even halfway through. Too long, and larded with exposition, this somber cop drama ultimately feels as flat as the scruffy sands of its titular community. Leaves viewers out in the cold and undermines some phenomenal performances. ...a ho-hum affair, always watchable yet hardly memorable. Swiftly deteriorates into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell. The histrionic muse still eludes Madonna and, playing a charmless witch, she is merely a charmless witch. You have no affinity for most of the characters. Nothing about them is attractive. What they see in each other also is difficult to fathom. Diaz, 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. A 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. An inept, tedious spoof of '70s kung fu pictures, it contains almost enough chuckles for a three-minute sketch, and no more. It's a mystery how the movie could be released in this condition. Absolutely (and unintentionally) terrifying. Eckstraordinarily lame and Severely boring. Eight Legged Freaks falls flat as a spoof. No 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. You'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. 'Dragonfly' dwells on crossing-over mumbo jumbo, manipulative sentimentality, and sappy dialogue. In his determination to lighten the heavy subject matter, Silberling also, to a certain extent, trivializes the movie with too many nervous gags and pratfalls. Blade II has a brilliant director and charismatic star, but it suffers from rampant vampire devaluation. Veers uncomfortably close to pro-Serb propaganda. Movies like High Crimes flog the dead horse of surprise as if it were an obligation. How about surprising us by trying something new? Final verdict: You've seen it all before. Throwing 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. If 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.'' Further 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. You'll trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy. The movie is a little tired; maybe the original inspiration has run its course. This will go on so long as there are moviegoers anxious to see strange young guys doing strange guy things. A full-frontal attack on audience patience. Any 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. It's a big idea, but the film itself is small and shriveled. Debut effort by ``Project Greenlight'' winner is sappy and amateurish. One 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. The cast has a high time, but de Broca has little enthusiasm for such antique pulp. The film, like Jimmy's routines, could use a few good laughs. The 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. Purports 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. ...in the pile of useless actioners from MTV schmucks who don't know how to tell a story for more than four minutes. Though it was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal, I felt disrespected. Humor in I Spy is so anemic. The film is strictly routine. Skillful as he is, Mr. Shyamalan is undone by his pretensions. While 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. In 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. It shares the first two films' loose-jointed structure, but laugh-out-loud bits are few and far between. The Santa Clause 2 is a barely adequate babysitter for older kids, but I've got to give it thumbs down. You 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. Barney throws away the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull. If 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. We get the comedy we settle for. The uneven movie does have its charms and its funny moments but not quite enough of them. Two hours of sepia-tinted heavy metal images and surround sound effects of people moaning. A 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. The campy results make Mel Brooks' Borscht Belt schtick look sophisticated. Its appeal will probably limited to LDS Church members and undemanding armchair tourists. The Hanukkah spirit seems fried in pork. Cherish would've worked a lot better had it been a short film. Manipulative 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. Hey 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. True 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. Doesn't come close to justifying the hype that surrounded its debut at the Sundance Film Festival two years ago. The plot is paper-thin and the characters aren't interesting enough to watch them go about their daily activities for two whole hours. Kaufman's script is never especially clever and often is rather pretentious. The 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. Queen of the Damned is too long with too little going on. It collapses when Mr. Taylor tries to shift the tone to a thriller's rush. Any 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. ... 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. The Rules of Attraction gets us too drunk on the party favors to sober us up with the transparent attempts at moralizing. Though there are many tense scenes in Trapped, they prove more distressing than suspenseful. In this film we at least see a study in contrasts; the wide range of one actor, and the limited range of a comedian. Feels strangely hollow at its emotional core. You 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. The 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. This director's cut -- which adds 51 minutes -- takes a great film and turns it into a mundane soap opera. Characterisation has been sacrificed for the sake of spectacle. the 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.'' It'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. Director Tom Shadyac and star Kevin Costner glumly mishandle the story's promising premise of a physician who needs to heal himself. It's difficult to imagine that a more confused, less interesting and more sloppily made film could possibly come down the road in 2002. Like the Tuck family themselves, this movie just goes on and on and on and on As pedestrian as they come. A 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. It'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. Put it somewhere between Sling Blade and South of Heaven, West of Hell in the pantheon of Billy Bob's body of work. More intellectually scary than dramatically involving. An inconsequential, barely there bit of piffle. The 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. As saccharine as it is disposable. You 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. The metaphors are provocative, but too often, the viewer is left puzzled by the mechanics of the delivery. Very much a home video, and so devoid of artifice and purpose that it appears not to have been edited at all. Too much power, not enough puff. The attempt to build up a pressure cooker of horrified awe emerges from the simple fact that the movie has virtually nothing to show. It'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. A cellophane-pop remake of the punk classic Ladies and Gentlemen, The Fabulous Stains...Crossroads is never much worse than bland or better than inconsequential. Muddled, trashy and incompetent For 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. Narc is all menace and atmosphere. Though 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. Despite 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. It's tough to be startled when you're almost dozing. his (Nelson's) screenplay needs some serious re-working to show more of the dilemma, rather than have his characters stage shouting matches about it. It's so downbeat and nearly humorless that it becomes a chore to sit through -- despite some first-rate performances by its lead. A terrible movie that some people will nevertheless find moving. There are many definitions of 'time waster' but this movie must surely be one of them. As 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. The thing looks like a made-for-home-video quickie. Enigma is well-made, but it's just too dry and too placid. ``Sweet Home Alabama'' is what it is – a nice, harmless date film... One of the best, most understated performances of (Jack Nicholson's) career. The Dangerous Lives of Altar Boys' take on adolescence feels painfully true. It's a masterpiece. It may not be ``Last Tango in Paris'' but... They 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. Charming and funny (but ultimately silly) movie. Third time's the charm...yeah, baby! A pleasant, if forgettable, romp of a film. By the end of the movie, you're definitely convinced that these women are spectacular. Birot 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. 'Stock up on silver bullets for director Neil Marshall's intense freight train of a film.' The 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. As a film director, LaBute continues to improve. Will warm your heart without making you feel guilty about it. Catch it... if you can! Worse than 'Silence of the Lambs' better than 'Hannibal' American 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. '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 It'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. Alternates between deadpan comedy and heartbreaking loneliness and isn't afraid to provoke introspection in both its characters and its audience. The script is smart, not cloying. Visually, 'Santa Clause 2' is wondrously creative. A bittersweet contemporary comedy about benevolent deception, which, while it may not rival the filmmaker's period pieces, is still very much worth seeing. One fantastic (and educational) documentary. An ambitious 'what if?' that works. ``The Dangerous Lives of Altar Boys'' has flaws, but it also has humor and heart and very talented young actors Nice piece of work. 'Stock up on silver bullets for director Neil Marshall's intense freight train of a film.' It's funny, as the old saying goes, because it's true. Though the film is static, its writer-director's heart is in the right place, his plea for democracy and civic action laudable. The filmmaker's heart is in the right place... From blushing to gushing---Imamura squirts the screen in `Warm Water Under a Red Bridge' Apart from anything else, this is one of the best-sustained ideas I have ever seen on the screen. Not a schlocky creature feature but something far more stylish and cerebral--and, hence, more chillingly effective. Stupid, infantile, redundant, sloppy, over-the-top, and amateurish. Yep, it's ``Waking up in Reno.'' Go back to sleep. I didn't laugh. I didn't smile. I survived. The worst film of the year. In the book-on-tape market, the film of ``The Kid Stays in the Picture'' would be an abridged edition A sour attempt at making a Farrelly Brothers-style, down-and-dirty laugher for the female set. Eisenstein lacks considerable brio for a film about one of cinema's directorial giants. Taken as a whole, The Tuxedo doesn't add up to a whole lot. This is no ``Waterboy!'' Something has been lost in the translation...another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise. The result is an 'action film' mired in stasis. ...a movie that, quite simply, shouldn't have been made. By turns pretentious, fascinating, ludicrous, provocative and vainglorious. I can't recommend it. But it's surprisingly harmless. What's next? The Porky's Revenge: Ultimate Edition? The script is a dim-witted pairing of teen-speak and animal gibberish. There's no real reason to see it, and no real reason not to. Is ``Ballistic'' worth the price of admission? Absolutely not. It sucked. Would I see it again? Please see previous answer. It's exactly what you'd expect. ``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. A prison comedy that never really busts out of its comfy little cell. The movie is obviously a labour of love so Howard appears to have had free rein to be as pretentious as he wanted. This isn't a movie; it's a symptom. What 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. If only it were, well, funnier. The script? Please. Doesn't add up to much. One of the worst movies of the year. A complete waste of time. Long before it's over, you'll be thinking of 51 ways to leave this loser. One of the worst movies of the year. ... Watching it was painful. The cinematic equivalent of patronizing a bar favored by pretentious, untalented artistes who enjoy moaning about their cruel fate. Spiderman ROCKS A 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. An imaginative comedy/thriller. Thoroughly enjoyable. (A) rare, beautiful film. Family fare. Boisterous, heartfelt comedy. (An) hilarious romantic comedy. An exhilarating experience. Never (sinks) into exploitation. Compellingly watchable. Troubling and powerful. Often hilarious. A modest masterpiece. Never once predictable. An uplifting, near-masterpiece. Warm and exotic. ...a true delight. A true pleasure. Polished, well-structured film. Sexy and romantic. Psychologically savvy. delightfully rendered Fun and nimble. Funny and touching. Serious and thoughtful. It 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. One-of-a-kind near-masterpiece. Lightweight but appealing. Highly engaging. Feral and uncomfortable. A gripping drama. Beautifully produced. Smart and taut. Highly watchable stuff. Psychologically revealing. A fast paced and suspenseful Argentinian thriller about the shadow side of play. ... wise and elegiac ... Spare yet audacious... Surprisingly insightful An intoxicating experience. Reassuring, retro uplifter. Visually captivating. Lavishly, exhilaratingly tasteless. Touché! An impressive hybrid. A tasty masala. Refreshing. Featherweight romantic comedy has a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock. Poignant and funny. See it. Debate it. Remember it. Morvern rocks. Intelligent and moving. Genuinely unnerving. A compelling film. Deliciously slow. A riveting documentary. An enjoyable experience. A good thriller. A glorious mess. Neatly constructed thriller. Intimate and panoramic. Exciting documentary. Good, solid storytelling. Infidelity drama is nicely shot, well-edited and features a standout performance by Diane Lane. Audacious-impossible yet compelling... A muted freak-out Moving and vibrant. ...quite endearing. Harmless fun. Good-naturedly cornball sequel. Oddly compelling. Witless but watchable. Mr. Deeds is sure to give you a lot of laughs in this simple, sweet and romantic comedy. Hard to resist. A true-blue delight. A fun ride. Weird. Rewarding. Sleek and arty. Fantastic! A thought-provoking picture. A stylish thriller. Almost peerlessly unsettling. Delirious fun. Exciting and well-paced. Really quite funny. A well-executed spy-thriller. Idiotic and ugly. A funny film. (A) satisfying niblet. Poetic, heartbreaking. Formuliac, but fun. Feels untidily honest. ``Red Dragon'' never cuts corners. Full of surprises. Quietly engaging. Dense, exhilarating documentary. a joyous occasion (An) absorbing documentary. A genuine mind-bender. Great character interaction. Intriguing and stylish. Many insightful moments. Everything is off. Earnest but heavy-handed. One lousy movie. ...hypnotically dull. Calculated swill. Thoroughly awful. Truly terrible. Fluffy and disposible. By-the-numbers yarn. Aan opportunity wasted. Storytelling feels slight. Bad company. Bad movie. Just plain bad. (A) soulless, stupid sequel ... A high-minded snoozer. Execrable. Amazingly dopey. Banal and predictable. Crikey indeed. Brisk hack job. ...the maudlin way its story unfolds suggests a director fighting against the urge to sensationalize his material. ...bibbidy-bobbidi-bland. Obvious. Its one-sidedness ... flirts with propaganda. ...a pretentious mess... (A) rather thinly-conceived movie. So-so entertainment. Punitively affirmational parable. Decent but dull. Thin period piece. (A) stuporously solemn film. Well-meant but unoriginal. Odd and weird. Cinematic poo. ...stale and uninspired. A dreary movie. Pompous and garbled. Utter mush... conceited pap. Well-meaning but inert. ...overly melodramatic... Extremely bad. Shrewd but pointless. Sluggish, tonally uneven. Generic thriller junk. Teens only. A non-mystery mystery. What an embarrassment. A noble failure. Woefully pretentious. ...irritating soul-searching garbage. A relative letdown. Warmed-over hash. A puzzling experience. Stale, futile scenario. Aggravating and tedious. Lacks depth. under-rehearsed and lifeless Laughably, irredeemably awful. Unwieldy contraption. Overwrought, melodramatic bodice-ripper. An awful snooze. Just plain silly. Feeble comedy. ...salaciously simplistic. Shallow. A less-than-thrilling thriller. Disjointed parody. ...silly humbuggery... Eh. Black-and-white and unrealistic. Two-bit potboiler. (U)nrelentingly stupid. Painfully padded. Anemic, pretentious. Grating and tedious. It bites hard. (A) mess. Dramatically lackluster. Stay away. Far away. ...a pretentious mess... Predictably soulless techno-tripe. Arty gay film. Incoherence reigns. A half-assed film. Abysmally pathetic ...unbearably lame. Bland but harmless. Dense and enigmatic...elusive...stagy and stilted (L)ame and unnecessary. A dreary indulgence. (A) crushing disappointment. Tends to plod. A major waste...generic. ... a confusing drudgery. A well-crafted letdown. Boring and meandering. Less than fresh. A lame comedy. A reality-snubbing hodgepodge. Mildly amusing. Fairly run-of-the-mill. Mildly entertaining. Terrible. Degenerates into hogwash. Meandering and confusing. Crummy. An opportunity missed. Wishy-washy. Inconsequential road-and-buddy pic. Insufferably naive. Ill-considered, unholy hokum. Amazingly lame. (A) slummer. (A) poorly executed comedy. ...really horrible drek. An intriguing near-miss. Flat, misguided comedy. Predictably melodramatic. Rashomon-for-dipsticks tale. Bearable. Barely. Staggeringly dreadful romance. Well-made but mush-hearted. A real snooze. No surprises. We’ve seen the hippie-turned-yuppie plot before, but there’s an enthusiastic charm in Fire that makes the formula fresh again. Her 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. ================================================ FILE: a2/utils/datasets/stanfordSentimentTreebank/sentiment_labels.txt ================================================ phrase ids|sentiment values 0|0.5 1|0.5 2|0.44444 3|0.5 4|0.42708 5|0.375 6|0.41667 7|0.54167 8|0.33333 9|0.45833 10|0.47222 11|0.59722 12|0.33333 13|0.93056 14|0.80556 15|0.81944 16|0.76389 17|0.5 18|0.5 19|0.69444 20|0.5 21|0.75 22|0.29167 23|0.31944 24|0.73611 25|0.77778 26|0.59722 27|0.58333 28|0.68056 29|0.48611 30|0.52778 31|0.23611 32|0.29167 33|0.56944 34|0.375 35|0.47222 36|0.29167 37|0.375 38|0.30556 39|0.52778 40|0.18056 41|0.61111 42|0.59722 43|0.72222 44|0.33333 45|0.52778 46|0.40278 47|0.22222 48|0.31944 49|0.29167 50|0.66667 51|0.61111 52|0.43056 53|0.77778 54|0.40278 55|0.55556 56|0.55556 57|0.76389 58|0.18056 59|0.43056 60|0.36111 61|0.47222 62|0.33333 63|0.31944 64|0.5 65|0.48611 66|0.33333 67|0.25 68|0.30556 69|0.5 70|0.5 71|0.69444 72|0.52778 73|0.66667 74|0.5 75|0.51389 76|0.44444 77|0.55556 78|0.5 79|0.34722 80|0.30556 81|0.5 82|0.26389 83|0.29167 84|0.5 85|0.5 86|0.72222 87|0.61111 88|0.76389 89|0.77778 90|0.5 91|0.5 92|0.5 93|0.44444 94|0.54167 95|0.5 96|0.45833 97|0.5 98|0.5 99|0.5 100|0.65278 101|0.54167 102|0.69444 103|0.77778 104|0.13889 105|0.055556 106|0.22222 107|0.19444 108|0.5 109|0.54167 110|0.66667 111|0.69444 112|0.77778 113|0.84722 114|0.58333 115|0.069444 116|0.54167 117|0.63889 118|0.38889 119|0.93056 120|0.77778 121|0.77778 122|0.88889 123|0.83333 124|0.875 125|0.52778 126|0.52778 127|0.5 128|0.55556 129|0.55556 130|0.77778 131|0.63889 132|0.30556 133|0.47222 134|0.45833 135|0.44444 136|0.55556 137|0.61111 138|0.55556 139|0.5 140|0.45833 141|0.72222 142|0.61111 143|0.72222 144|0.625 145|0.65278 146|0.63889 147|0.77778 148|0.75 149|0.30556 150|0.33333 151|0.19444 152|0.29167 153|0.66667 154|0.69444 155|0.31944 156|0.29167 157|0.19444 158|0.38889 159|0.25 160|0.16667 161|0.5 162|0.5 163|0.55556 164|0.875 165|0.63889 166|0.65278 167|0.70833 168|0.59722 169|0.56944 170|0.61111 171|0.77778 172|0.66667 173|0.69444 174|0.63889 175|0.80556 176|0.83333 177|0.77778 178|0.66667 179|0.69444 180|0.83333 181|0.93056 182|0.76389 183|0.77778 184|0.5 185|0.5 186|0.5 187|0.56944 188|0.52778 189|0.55556 190|0.5 191|0.52778 192|0.47222 193|0.625 194|0.54167 195|0.5 196|0.19444 197|0.44444 198|0.375 199|0.61111 200|0.70833 201|0.65278 202|0.77778 203|0.80556 204|0.5 205|0.27778 206|0.33333 207|0.34722 208|0.55556 209|0.66667 210|0.5 211|0.5 212|0.29167 213|0.20833 214|0.5 215|0.5 216|0.38889 217|0.29167 218|0.52778 219|0.29167 220|0.38889 221|0.18056 222|0.20833 223|0.41667 224|0.27778 225|0.43056 226|0.72222 227|0.94444 228|0.86111 229|0.81944 230|0.88889 231|0.77778 232|0.68056 233|0.77778 234|0.66667 235|0.80556 236|0.52778 237|0.69444 238|0.51389 239|0.27778 240|0.375 241|0.36111 242|0.56944 243|0.33333 244|0.47222 245|0.41667 246|0.23611 247|0.25 248|0.33333 249|0.48611 250|0.55556 251|0.56944 252|0.54167 253|0.45833 254|0.5 255|0.40278 256|0.41667 257|0.26389 258|0.56944 259|0.15278 260|0.44444 261|0.58333 262|0.43056 263|0.55556 264|0.375 265|0.66667 266|0.80556 267|0.76389 268|0.79167 269|0.70833 270|0.63889 271|0.40278 272|0.375 273|0.625 274|0.59722 275|0.5 276|0.40278 277|0.65278 278|0.80556 279|0.81944 280|0.68056 281|0.44444 282|0.47222 283|0.70833 284|0.73611 285|0.83333 286|0.81944 287|0.59722 288|0.73611 289|0.73611 290|0.73611 291|0.52778 292|0.875 293|0.93056 294|0.76389 295|0.36111 296|0.55556 297|0.61111 298|0.5 299|0.5 300|0.5 301|0.55556 302|0.34722 303|0.63889 304|0.90278 305|0.5 306|0.56944 307|0.5 308|0.44444 309|0.55556 310|0.56944 311|0.69444 312|0.54167 313|0.43056 314|0.5 315|0.52778 316|0.375 317|0.36111 318|0.72222 319|0.20833 320|0.22222 321|0.55556 322|0.51389 323|0.5 324|0.55556 325|0.56944 326|0.5 327|0.61111 328|0.54167 329|0.30556 330|0.33333 331|0.38889 332|0.5 333|0.59722 334|0.77778 335|0.81944 336|0.63889 337|0.69444 338|0.47222 339|0.54167 340|0.44444 341|0.19444 342|0.11111 343|0.61111 344|0.47222 345|0.5 346|0.40278 347|0.66667 348|0.30556 349|0.47222 350|0.5 351|0.5 352|0.5 353|0.44444 354|0.31944 355|0.52778 356|0.56944 357|0.5 358|0.52778 359|0.5 360|0.77778 361|0.44444 362|0.625 363|0.5 364|0.55556 365|0.66667 366|0.5 367|0.5 368|0.33333 369|0.5 370|0.47222 371|0.54167 372|0.79167 373|0.61111 374|0.51389 375|0.54167 376|0.54167 377|0.72222 378|0.47222 379|0.48611 380|0.33333 381|0.73611 382|0.55556 383|0.70833 384|0.5 385|0.31944 386|0.38889 387|0.72222 388|0.625 389|0.65278 390|0.625 391|0.54167 392|0.72222 393|0.73611 394|0.81944 395|0.5 396|0.27778 397|0.73611 398|0.69444 399|0.51389 400|0.41667 401|0.58333 402|0.52778 403|0.51389 404|0.19444 405|0.19444 406|0.27778 407|0.44444 408|0.5 409|0.5 410|0.81944 411|0.55556 412|0.56944 413|0.66667 414|0.5 415|0.44444 416|0.54167 417|0.55556 418|0.48611 419|0.5 420|0.48611 421|0.5 422|0.5 423|0.52778 424|0.5 425|0.55556 426|0.38889 427|0.51389 428|0.5 429|0.77778 430|0.5 431|0.77778 432|0.5 433|0.65278 434|0.75 435|0.5 436|0.5 437|0.23611 438|0.375 439|0.55556 440|0.63889 441|0.70833 442|0.70833 443|0.34722 444|0.33333 445|0.18056 446|0.44444 447|0.69444 448|0.47222 449|0.55556 450|0.43056 451|0.80556 452|0.83333 453|0.66667 454|0.83333 455|0.76389 456|0.73611 457|0.48611 458|0.38889 459|0.79167 460|0.59722 461|0.54167 462|0.5 463|0.97222 464|0.625 465|0.54167 466|0.5 467|0.51389 468|0.5 469|0.5 470|0.34722 471|0.48611 472|0.5 473|0.54167 474|0.72222 475|0.44444 476|0.44444 477|0.44444 478|0.55556 479|0.40278 480|0.5 481|0.38889 482|0.5 483|0.52778 484|0.79167 485|0.16667 486|0.68056 487|0.77778 488|0.56944 489|0.5 490|0.45833 491|0.40278 492|0.52778 493|0.51389 494|0.51389 495|0.51389 496|0.47222 497|0.33333 498|0.77778 499|0.79167 500|0.66667 501|0.48611 502|0.63889 503|0.54167 504|0.55556 505|0.72222 506|0.56944 507|0.56944 508|0.75 509|0.44444 510|0.25 511|0.5 512|0.51389 513|0.58333 514|0.52778 515|0.52778 516|0.52778 517|0.5 518|0.86111 519|0.55556 520|0.55556 521|0.51389 522|0.5 523|0.5 524|0.5 525|0.51389 526|0.61111 527|0.44444 528|0.41667 529|0.48611 530|0.45833 531|0.29167 532|0.25 533|0.19444 534|0.30556 535|0.43056 536|0.43056 537|0.125 538|0.77778 539|0.44444 540|0.36111 541|0.26389 542|0.27778 543|0.44444 544|0.30556 545|0.43056 546|0.54167 547|0.5 548|0.16667 549|0.51389 550|0.097222 551|0.47222 552|0.61111 553|0.77778 554|0.13889 555|0.5 556|0.55556 557|0.69444 558|0.34722 559|0.18056 560|0.5 561|0.52778 562|0.56944 563|0.58333 564|0.5 565|0.55556 566|0.76389 567|0.77778 568|0.5 569|0.58333 570|0.47222 571|0.40278 572|0.58333 573|0.5 574|0.63889 575|0.5 576|0.5 577|0.22222 578|0.5 579|0.51389 580|0.47222 581|0.5 582|0.56944 583|0.51389 584|0.30556 585|0.33333 586|0.5 587|0.5 588|0.51389 589|0.22222 590|0.52778 591|0.5 592|0.69444 593|0.72222 594|0.55556 595|0.625 596|0.56944 597|0.80556 598|0.83333 599|0.5 600|0.375 601|0.5 602|0.11111 603|0.5 604|0.16667 605|0.51389 606|0.5 607|0.5 608|0.31944 609|0.29167 610|0.31944 611|0.25 612|0.47222 613|0.29167 614|0.40278 615|0.26389 616|0.43056 617|0.5 618|0.44444 619|0.55556 620|0.51389 621|0.5 622|0.5 623|0.43056 624|0.43056 625|0.61111 626|0.5 627|0.59722 628|0.54167 629|0.5 630|0.69444 631|0.76389 632|0.75 633|0.75 634|0.97222 635|0.5 636|0.52778 637|0.44444 638|0.5 639|0.13889 640|0.5 641|0.48611 642|0.5 643|0.5 644|0.16667 645|0.69444 646|0.69444 647|0.68056 648|0.44444 649|0.5 650|0.44444 651|0.38889 652|0.44444 653|0.72222 654|0.45833 655|0.11111 656|0.44444 657|0.59722 658|0.5 659|0.18056 660|0.5 661|0.56944 662|0.16667 663|0.5 664|0.55556 665|0.5 666|0.43056 667|0.69444 668|0.5 669|0.56944 670|0.58333 671|0.30556 672|0.30556 673|0.36111 674|0.75 675|0.5 676|0.5 677|0.44444 678|0.36111 679|0.5 680|0.55556 681|0.5 682|0.47222 683|0.5 684|0.77778 685|0.66667 686|0.22222 687|0.45833 688|0.41667 689|0.38889 690|0.90278 691|0.54167 692|0.5 693|0.58333 694|0.83333 695|0.83333 696|0.5 697|0.61111 698|0.5 699|0.63889 700|0.55556 701|0.5 702|0.75 703|0.44444 704|0.68056 705|0.55556 706|0.63889 707|0.73611 708|0.73611 709|0.5 710|0.5 711|0.80556 712|0.5 713|0.5 714|0.58333 715|0.5 716|0.47222 717|0.56944 718|0.54167 719|0.51389 720|0.70833 721|0.65278 722|0.5 723|0.73611 724|0.63889 725|0.875 726|0.38889 727|0.44444 728|0.61111 729|0.48611 730|0.5 731|0.26389 732|0.48611 733|0.25 734|0.56944 735|0.59722 736|0.5 737|0.30556 738|0.5 739|0.40278 740|0.33333 741|0.73611 742|0.83333 743|0.11111 744|0.18056 745|0.43056 746|0.55556 747|0.5 748|0.44444 749|0.38889 750|0.69444 751|0.625 752|0.70833 753|0.5 754|0.44444 755|0.51389 756|0.375 757|0.48611 758|0.38889 759|0.38889 760|0.52778 761|0.625 762|0.51389 763|0.83333 764|0.79167 765|0.875 766|0.73611 767|0.81944 768|0.76389 769|0.93056 770|0.5 771|0.45833 772|0.41667 773|0.72222 774|0.52778 775|0.5 776|0.61111 777|0.59722 778|0.76389 779|0.66667 780|0.65278 781|0.77778 782|0.625 783|0.91667 784|0.54167 785|0.56944 786|0.59722 787|0.90278 788|0.83333 789|0.27778 790|0.38889 791|0.5 792|0.51389 793|0.58333 794|0.5 795|0.52778 796|0.52778 797|0.44444 798|0.76389 799|0.76389 800|0.375 801|0.38889 802|0.44444 803|0.44444 804|0.5 805|0.33333 806|0.61111 807|0.44444 808|0.13889 809|0.30556 810|0.43056 811|0.5 812|0.38889 813|0.5 814|0.54167 815|0.5 816|0.5 817|0.5 818|0.31944 819|0.31944 820|0.43056 821|0.40278 822|0.33333 823|0.43056 824|0.43056 825|0.44444 826|0.40278 827|0.47222 828|0.5 829|0.42361 830|0.56944 831|0.44444 832|0.5 833|0.55556 834|0.76389 835|0.81944 836|0.63889 837|0.51389 838|0.30556 839|0.40278 840|0.68056 841|0.43056 842|0.44444 843|0.5 844|0.45833 845|0.18056 846|0.375 847|0.29167 848|0.38889 849|0.66667 850|0.48611 851|0.5 852|0.55556 853|0.69444 854|0.77778 855|0.36111 856|0.5 857|0.36111 858|0.26389 859|0.055556 860|0.51389 861|0.66667 862|0.5 863|0.5 864|0.55556 865|0.61111 866|0.52778 867|0.55556 868|0.52778 869|0.55556 870|0.52778 871|0.5 872|0.52778 873|0.5 874|0.5 875|0.5 876|0.13889 877|0.27778 878|0.36111 879|0.51389 880|0.51389 881|0.38889 882|0.73611 883|0.48611 884|0.44444 885|0.27778 886|0.61111 887|0.65278 888|0.81944 889|0.76389 890|0.65278 891|0.86111 892|0.75 893|0.86111 894|0.16667 895|0.80556 896|0.52778 897|0.77778 898|0.52778 899|0.52778 900|0.43056 901|0.48611 902|0.375 903|0.29167 904|0.25 905|0.73611 906|0.69444 907|0.52778 908|0.5 909|0.61111 910|0.5 911|0.5 912|0.5 913|0.30556 914|0.5 915|0.55556 916|0.5 917|0.5 918|0.52778 919|0.54167 920|0.5 921|0.5 922|0.22222 923|0.56944 924|0.5 925|0.5 926|0.55556 927|0.54167 928|0.16667 929|0.5 930|0.5 931|0.56944 932|0.55556 933|0.625 934|0.5 935|0.81944 936|0.5 937|0.55556 938|0.52778 939|0.5 940|0.43056 941|0.375 942|0.52778 943|0.66667 944|0.75 945|0.52778 946|0.44444 947|0.51389 948|0.34722 949|0.23611 950|0.55556 951|0.55556 952|0.66667 953|0.65278 954|0.63889 955|0.5 956|0.36111 957|0.76389 958|0.56944 959|0.76389 960|0.79167 961|0.625 962|0.20833 963|0.63889 964|0.77778 965|0.22222 966|0.51389 967|0.5 968|0.52778 969|0.44444 970|0.5 971|0.5 972|0.63889 973|0.5 974|0.54167 975|0.66667 976|0.5 977|0.5 978|0.5 979|0.43056 980|0.31944 981|0.51389 982|0.54167 983|0.76389 984|0.5 985|0.44444 986|0.41667 987|0.77778 988|0.19444 989|0.27778 990|0.22222 991|0.55556 992|0.72222 993|0.55556 994|0.5 995|0.5 996|0.34722 997|0.5 998|0.5 999|0.5 1000|0.5 1001|0.5 1002|0.54167 1003|0.63889 1004|0.47222 1005|0.30556 1006|0.43056 1007|0.38889 1008|0.56944 1009|0.41667 1010|0.54167 1011|0.43056 1012|0.125 1013|0.5 1014|0.55556 1015|0.66667 1016|0.52778 1017|0.54167 1018|0.22222 1019|0.72222 1020|0.27778 1021|0.51389 1022|0.58333 1023|0.66667 1024|0.5 1025|0.65278 1026|0.52778 1027|0.55556 1028|0.33333 1029|0.20833 1030|0.5 1031|0.48611 1032|0.5 1033|0.51389 1034|0.51389 1035|0.66667 1036|0.5 1037|0.81944 1038|0.65278 1039|0.52778 1040|0.40278 1041|0.51389 1042|0.19444 1043|0.375 1044|0.54167 1045|0.26389 1046|0.81944 1047|0.88889 1048|0.77778 1049|0.34722 1050|0.27778 1051|0.45833 1052|0.27778 1053|0.58333 1054|0.5 1055|0.30556 1056|0.30556 1057|0.38889 1058|0.41667 1059|0.61111 1060|0.83333 1061|0.5 1062|0.5 1063|0.5 1064|0.54167 1065|0.61111 1066|0.5 1067|0.875 1068|0.84722 1069|0.61111 1070|0.48611 1071|0.5 1072|0.27778 1073|0.40278 1074|0.52778 1075|0.51389 1076|0.33333 1077|0.43056 1078|0.5 1079|0.5 1080|0.51389 1081|0.72222 1082|0.81944 1083|0.43056 1084|0.45833 1085|0.5 1086|0.43056 1087|0.5 1088|0.63889 1089|0.5 1090|0.5 1091|0.54167 1092|0.73611 1093|0.73611 1094|0.77778 1095|0.72222 1096|0.52778 1097|0.70833 1098|0.56944 1099|0.77778 1100|0.63889 1101|0.44444 1102|0.69444 1103|0.91667 1104|0.81944 1105|0.94444 1106|0.75 1107|0.625 1108|0.61111 1109|0.23611 1110|0.41667 1111|0.52778 1112|0.80556 1113|0.73611 1114|0.48611 1115|0.68056 1116|0.65278 1117|0.66667 1118|0.5 1119|0.66667 1120|0.58333 1121|0.5 1122|0.5 1123|0.5 1124|0.45833 1125|0.5 1126|0.47222 1127|0.43056 1128|0.61111 1129|0.26389 1130|0.63889 1131|0.5 1132|0.5 1133|0.48611 1134|0.43056 1135|0.52778 1136|0.48611 1137|0.38889 1138|0.5 1139|0.44444 1140|0.55556 1141|0.52778 1142|0.61111 1143|0.86111 1144|0.55556 1145|0.81944 1146|0.43056 1147|0.65278 1148|0.58333 1149|0.47222 1150|0.5 1151|0.52083 1152|0.34722 1153|0.33333 1154|0.76389 1155|0.38889 1156|0.77778 1157|0.36111 1158|0.40278 1159|0.80556 1160|0.5 1161|0.52778 1162|0.40278 1163|0.61111 1164|0.88889 1165|0.30556 1166|0.34722 1167|0.625 1168|0.5 1169|0.5 1170|0.40278 1171|0.375 1172|0.76389 1173|0.5 1174|0.30556 1175|0.54167 1176|0.52778 1177|0.61111 1178|0.69444 1179|0.5 1180|0.5 1181|0.61111 1182|0.73611 1183|0.52778 1184|0.56944 1185|0.84722 1186|0.63889 1187|0.5 1188|0.5 1189|0.59722 1190|0.80556 1191|0.61111 1192|0.25 1193|0.54167 1194|0.55556 1195|0.58333 1196|0.51389 1197|0.5 1198|0.5 1199|0.51389 1200|0.5 1201|0.54167 1202|0.38889 1203|0.5 1204|0.69444 1205|0.41667 1206|0.68056 1207|0.51389 1208|0.5 1209|0.51389 1210|0.44444 1211|0.44444 1212|0.34722 1213|0.38889 1214|0.61111 1215|0.70833 1216|0.59722 1217|0.40278 1218|0.055556 1219|0.83333 1220|0.58333 1221|0.5 1222|0.055556 1223|0.5 1224|0.38889 1225|0.55556 1226|0.5 1227|0.5 1228|0.48611 1229|0.55556 1230|0.55556 1231|0.5 1232|0.5 1233|0.58333 1234|0.68056 1235|0.61111 1236|0.5 1237|0.5 1238|0.70833 1239|0.875 1240|0.625 1241|0.58333 1242|0.58333 1243|0.61111 1244|0.61111 1245|0.625 1246|0.81944 1247|0.44444 1248|0.58333 1249|0.5 1250|0.55556 1251|0.56944 1252|0.44444 1253|0.44444 1254|0.31944 1255|0.31944 1256|0.22222 1257|0.22222 1258|0.19444 1259|0.19444 1260|0.77778 1261|0.55556 1262|0.65278 1263|0.72222 1264|0.36111 1265|0.23611 1266|0.55556 1267|0.45833 1268|0.36111 1269|0.5 1270|0.75 1271|0.63889 1272|0.80556 1273|0.36111 1274|0.58333 1275|0.16667 1276|0.11111 1277|0.5 1278|0.55556 1279|0.5 1280|0.55556 1281|0.29167 1282|0.58333 1283|0.36111 1284|0.22222 1285|0.5 1286|0.47222 1287|0.47222 1288|0.11111 1289|0.55556 1290|0.55556 1291|0.083333 1292|0.47222 1293|0.5 1294|0.5 1295|0.61111 1296|0.75 1297|0.54167 1298|0.66667 1299|0.56944 1300|0.20833 1301|0.58333 1302|0.27778 1303|0.56944 1304|0.52778 1305|0.52778 1306|0.31944 1307|0.38889 1308|0.51389 1309|0.68056 1310|0.52778 1311|0.38889 1312|0.5 1313|0.66667 1314|0.61111 1315|0.55556 1316|0.61111 1317|0.63889 1318|0.54167 1319|0.54167 1320|0.5625 1321|0.55556 1322|0.59722 1323|0.44444 1324|0.44444 1325|0.5 1326|0.52778 1327|0.5 1328|0.58333 1329|0.5 1330|0.5 1331|0.52778 1332|0.5 1333|0.72222 1334|0.69444 1335|0.22222 1336|0.51389 1337|0.48611 1338|0.40278 1339|0.36111 1340|0.5 1341|0.55556 1342|0.5 1343|0.72222 1344|0.41667 1345|0.55556 1346|0.5 1347|0.51389 1348|0.52778 1349|0.73611 1350|0.38889 1351|0.47222 1352|0.5 1353|0.72222 1354|0.69444 1355|0.76389 1356|0.54167 1357|0.65278 1358|0.5 1359|0.23611 1360|0.52778 1361|0.375 1362|0.38889 1363|0.40278 1364|0.27778 1365|0.33333 1366|0.40278 1367|0.58333 1368|0.72222 1369|0.30556 1370|0.45833 1371|0.45833 1372|0.77778 1373|0.76389 1374|0.45833 1375|0.88889 1376|0.56944 1377|0.72222 1378|0.76389 1379|0.5 1380|0.80556 1381|0.5 1382|0.52778 1383|0.48611 1384|0.33333 1385|0.83333 1386|0.625 1387|0.68056 1388|0.11111 1389|0.51389 1390|0.83333 1391|0.86111 1392|0.97222 1393|0.56944 1394|0.40278 1395|0.38889 1396|0.22222 1397|0.40278 1398|0.51389 1399|0.72222 1400|0.59722 1401|0.51389 1402|0.70833 1403|0.30556 1404|0.59722 1405|0.19444 1406|0.45833 1407|0.83333 1408|0.34722 1409|0.70833 1410|0.90278 1411|0.43056 1412|0.69444 1413|0.63889 1414|0.58333 1415|0.55556 1416|0.47222 1417|0.66667 1418|0.30556 1419|0.23611 1420|0.5 1421|0.52778 1422|0.19444 1423|0.18056 1424|0.33333 1425|0.625 1426|0.68056 1427|0.625 1428|0.66667 1429|0.54167 1430|0.38889 1431|0.15278 1432|0.30556 1433|0.43056 1434|0.66667 1435|0.15278 1436|0.15278 1437|0.33333 1438|0.54167 1439|0.45833 1440|0.73611 1441|0.77778 1442|0.5 1443|0.36111 1444|0.80556 1445|0.93056 1446|0.83333 1447|0.83333 1448|0.86111 1449|0.90278 1450|0.30556 1451|0.19444 1452|0.625 1453|0.15278 1454|0.19444 1455|0.26389 1456|0.20833 1457|0.56944 1458|0.68056 1459|0.36111 1460|0.41667 1461|0.36111 1462|0.65278 1463|0.73611 1464|0.59722 1465|0.375 1466|0.38889 1467|0.81944 1468|0.41667 1469|0.72222 1470|0.69444 1471|0.625 1472|0.56944 1473|0.76389 1474|0.69444 1475|0.75 1476|0.59722 1477|0.43056 1478|0.52778 1479|0.45833 1480|0.34722 1481|0.72222 1482|0.80556 1483|0.65278 1484|0.125 1485|0.625 1486|0.80556 1487|0.23611 1488|0.36111 1489|0.44444 1490|0.79167 1491|0.55556 1492|0.75 1493|0.25 1494|0.55556 1495|0.5 1496|0.48611 1497|0.375 1498|0.33333 1499|0.34722 1500|0.27778 1501|0.375 1502|0.52778 1503|0.51389 1504|0.56944 1505|0.5 1506|0.44444 1507|0.45833 1508|0.56944 1509|0.58333 1510|0.5 1511|0.625 1512|0.51389 1513|0.22222 1514|0.44444 1515|0.5 1516|0.51389 1517|0.5 1518|0.51389 1519|0.52778 1520|0.31944 1521|0.5 1522|0.5 1523|0.52778 1524|0.38889 1525|0.59722 1526|0.55556 1527|0.5 1528|0.27778 1529|0.47222 1530|0.097222 1531|0.5 1532|0.5 1533|0.45833 1534|0.33333 1535|0.5 1536|0.56944 1537|0.52778 1538|0.76389 1539|0.5 1540|0.5 1541|0.47222 1542|0.54167 1543|0.54167 1544|0.5 1545|0.20833 1546|0.19444 1547|0.44444 1548|0.19444 1549|0.54167 1550|0.73611 1551|0.94444 1552|0.86111 1553|0.70833 1554|0.75 1555|0.72222 1556|0.51389 1557|0.5 1558|0.69444 1559|0.55556 1560|0.44444 1561|0.23611 1562|0.47222 1563|0.5 1564|0.25 1565|0.33333 1566|0.30556 1567|0.18056 1568|0.30556 1569|0.18056 1570|0.33333 1571|0.5 1572|0.5 1573|0.59722 1574|0.56944 1575|0.5 1576|0.76389 1577|0.75 1578|0.83333 1579|0.58333 1580|0.38889 1581|0.38889 1582|0.5 1583|0.45833 1584|0.51389 1585|0.29167 1586|0.19444 1587|0.51389 1588|0.5 1589|0.625 1590|0.33333 1591|0.47222 1592|0.5 1593|0.54167 1594|0.18056 1595|0.56944 1596|0.77778 1597|0.56944 1598|0.69444 1599|0.54167 1600|0.66667 1601|0.55556 1602|0.68056 1603|0.79167 1604|0.45833 1605|0.5 1606|0.51389 1607|0.5 1608|0.59722 1609|0.30556 1610|0.34722 1611|0.5 1612|0.77778 1613|0.76389 1614|0.52778 1615|0.5 1616|0.38889 1617|0.30556 1618|0.375 1619|0.5 1620|0.5 1621|0.47222 1622|0.68056 1623|0.72222 1624|0.38889 1625|0.55556 1626|0.72222 1627|0.48611 1628|0.5 1629|0.5 1630|0.47222 1631|0.34722 1632|0.5 1633|0.51389 1634|0.33333 1635|0.13889 1636|0.5 1637|0.56944 1638|0.66667 1639|0.52778 1640|0.88889 1641|0.90278 1642|0.55556 1643|0.65278 1644|0.47222 1645|0.83333 1646|0.84722 1647|0.88889 1648|0.73611 1649|0.72222 1650|0.86111 1651|0.69444 1652|0.58333 1653|0.44444 1654|0.58333 1655|0.55556 1656|0.43056 1657|0.40278 1658|0.61111 1659|0.375 1660|0.375 1661|0.5 1662|0.36111 1663|0.5 1664|0.54167 1665|0.61111 1666|0.63889 1667|0.51389 1668|0.52778 1669|0.54167 1670|0.5 1671|0.51389 1672|0.68056 1673|0.83333 1674|0.5 1675|0.26389 1676|0.34722 1677|0.58333 1678|0.52778 1679|0.52778 1680|0.44444 1681|0.27778 1682|0.36111 1683|0.33333 1684|0.29167 1685|0.26389 1686|0.72222 1687|0.5 1688|0.55556 1689|0.63889 1690|0.55556 1691|0.65278 1692|0.30556 1693|0.54167 1694|0.5 1695|0.5 1696|0.5 1697|0.55556 1698|0.55556 1699|0.56944 1700|0.58333 1701|0.38889 1702|0.26389 1703|0.51389 1704|0.90278 1705|0.88889 1706|0.56944 1707|0.16667 1708|0.5 1709|0.47222 1710|0.5 1711|0.5 1712|0.26389 1713|0.16667 1714|0.33333 1715|0.23611 1716|0.29167 1717|0.66667 1718|0.26389 1719|0.52778 1720|0.43056 1721|0.26389 1722|0.5 1723|0.30556 1724|0.51389 1725|0.38889 1726|0.34722 1727|0.54167 1728|0.5 1729|0.5 1730|0.5 1731|0.27778 1732|0.55556 1733|0.44444 1734|0.59722 1735|0.38889 1736|0.23611 1737|0.5 1738|0.38889 1739|0.41667 1740|0.36111 1741|0.81944 1742|0.66667 1743|0.47222 1744|0.59722 1745|0.41667 1746|0.5 1747|0.45833 1748|0.44444 1749|0.375 1750|0.33333 1751|0.125 1752|0.5 1753|0.69444 1754|0.61111 1755|0.5 1756|0.59722 1757|0.69444 1758|0.59722 1759|0.70833 1760|0.55556 1761|0.55556 1762|0.63889 1763|0.72222 1764|0.55556 1765|0.43056 1766|0.63889 1767|0.625 1768|0.16667 1769|0.5 1770|0.55556 1771|0.52778 1772|0.51389 1773|0.52778 1774|0.70833 1775|0.48611 1776|0.5 1777|0.5 1778|0.5 1779|0.5 1780|0.5 1781|0.56944 1782|0.51389 1783|0.5 1784|0.5 1785|0.29167 1786|0.51389 1787|0.30556 1788|0.79167 1789|0.625 1790|0.70833 1791|0.77778 1792|0.79167 1793|0.72222 1794|0.5 1795|0.94444 1796|0.83333 1797|0.83333 1798|0.72222 1799|0.81944 1800|0.65278 1801|0.27778 1802|0.5 1803|0.55556 1804|0.41667 1805|0.41667 1806|0.45833 1807|0.88889 1808|0.81944 1809|0.52778 1810|0.44444 1811|0.41667 1812|0.55556 1813|0.5 1814|0.54167 1815|0.625 1816|0.30556 1817|0.43056 1818|0.52778 1819|0.48611 1820|0.5 1821|0.44444 1822|0.44444 1823|0.55556 1824|0.5 1825|0.33333 1826|0.5 1827|0.43056 1828|0.70833 1829|0.52778 1830|0.58333 1831|0.5 1832|0.19444 1833|0.30556 1834|0.5 1835|0.29167 1836|0.55556 1837|0.625 1838|0.22222 1839|0.375 1840|0.44444 1841|0.36111 1842|0.5 1843|0.31944 1844|0.54167 1845|0.5 1846|0.31944 1847|0.68056 1848|0.625 1849|0.68056 1850|0.20833 1851|0.20833 1852|0.40278 1853|0.26389 1854|0.47222 1855|0.5 1856|0.23611 1857|0.52778 1858|0.59722 1859|0.72222 1860|0.77778 1861|0.68056 1862|0.38889 1863|0.40278 1864|0.31944 1865|0.30556 1866|0.30556 1867|0.22222 1868|0.38889 1869|0.375 1870|0.61111 1871|0.5 1872|0.44444 1873|0.63889 1874|0.48611 1875|0.72222 1876|0.375 1877|0.5 1878|0.5 1879|0.44444 1880|0.5 1881|0.33333 1882|0.79167 1883|0.27778 1884|0.625 1885|0.47222 1886|0.65278 1887|0.50694 1888|0.68056 1889|0.5 1890|0.45833 1891|0.52778 1892|0.41667 1893|0.5 1894|0.45833 1895|0.5 1896|0.51389 1897|0.52778 1898|0.5 1899|0.36111 1900|0.5 1901|0.58333 1902|0.5 1903|0.51389 1904|0.5 1905|0.5 1906|0.5 1907|0.45833 1908|0.5 1909|0.52778 1910|0.5 1911|0.59722 1912|0.58333 1913|0.5 1914|0.61111 1915|0.5 1916|0.47222 1917|0.55556 1918|0.54167 1919|0.47222 1920|0.51389 1921|0.58333 1922|0.65278 1923|0.41667 1924|0.58333 1925|0.61111 1926|0.34722 1927|0.52778 1928|0.51389 1929|0.51389 1930|0.15278 1931|0.25 1932|0.5 1933|0.40278 1934|0.38889 1935|0.33333 1936|0.5 1937|0.55556 1938|0.47222 1939|0.5 1940|0.27778 1941|0.52778 1942|0.66667 1943|0.31944 1944|0.51389 1945|0.61111 1946|0.375 1947|0.43056 1948|0.23611 1949|0.33333 1950|0.52778 1951|0.59722 1952|0.5 1953|0.34722 1954|0.38889 1955|0.5 1956|0.5 1957|0.40278 1958|0.5 1959|0.25 1960|0.68056 1961|0.80556 1962|0.47222 1963|0.44444 1964|0.55556 1965|0.5 1966|0.44444 1967|0.56944 1968|0.38889 1969|0.43056 1970|0.30556 1971|0.40278 1972|0.44444 1973|0.61111 1974|0.61111 1975|0.51389 1976|0.66667 1977|0.5 1978|0.61111 1979|0.5 1980|0.5 1981|0.5 1982|0.59722 1983|0.61111 1984|0.38889 1985|0.375 1986|0.5 1987|0.47222 1988|0.5 1989|0.5 1990|0.51389 1991|0.5 1992|0.5 1993|0.59722 1994|0.26389 1995|0.38889 1996|0.36111 1997|0.34722 1998|0.5 1999|0.5 2000|0.80556 2001|0.83333 2002|0.44444 2003|0.55556 2004|0.48611 2005|0.58333 2006|0.54167 2007|0.41667 2008|0.40278 2009|0.5 2010|0.5 2011|0.5 2012|0.52778 2013|0.66667 2014|0.51389 2015|0.5 2016|0.5 2017|0.55556 2018|0.25 2019|0.52778 2020|0.5 2021|0.54167 2022|0.86111 2023|0.875 2024|0.94444 2025|0.69444 2026|0.52778 2027|0.5 2028|0.26389 2029|0.5 2030|0.34722 2031|0.51389 2032|0.51389 2033|0.5 2034|0.61111 2035|0.79167 2036|0.52778 2037|0.5 2038|0.51389 2039|0.5 2040|0.88889 2041|0.44444 2042|0.66667 2043|0.5 2044|0.5 2045|0.55556 2046|0.40278 2047|0.91667 2048|0.93056 2049|0.52778 2050|0.44444 2051|0.40278 2052|0.80556 2053|0.80556 2054|0.86111 2055|0.65278 2056|0.88889 2057|0.31944 2058|0.48611 2059|0.5 2060|0.55556 2061|0.5 2062|0.54167 2063|0.63889 2064|0.5 2065|0.55556 2066|0.51389 2067|0.58333 2068|0.48611 2069|0.51389 2070|0.5 2071|0.47222 2072|0.61111 2073|0.54167 2074|0.56944 2075|0.55556 2076|0.51389 2077|0.5 2078|0.55556 2079|0.5 2080|0.68056 2081|0.875 2082|0.77778 2083|0.5 2084|0.55556 2085|0.5 2086|0.63889 2087|0.76389 2088|0.75 2089|0.58333 2090|0.43056 2091|0.34722 2092|0.54167 2093|0.81944 2094|0.58333 2095|0.16667 2096|0.61111 2097|0.76389 2098|0.81944 2099|0.52778 2100|0.72222 2101|0.48611 2102|0.55556 2103|0.375 2104|0.38889 2105|0.43056 2106|0.23611 2107|0.54167 2108|0.44444 2109|0.40278 2110|0.55556 2111|0.63889 2112|0.47222 2113|0.5 2114|0.33333 2115|0.45833 2116|0.34722 2117|0.5 2118|0.63889 2119|0.77778 2120|0.31944 2121|0.47222 2122|0.375 2123|0.5 2124|0.51389 2125|0.069444 2126|0.36111 2127|0.58333 2128|0.48611 2129|0.33333 2130|0.5 2131|0.66667 2132|0.55556 2133|0.5 2134|0.77778 2135|0.5 2136|0.48611 2137|0.625 2138|0.54167 2139|0.47222 2140|0.5 2141|0.5 2142|0.5 2143|0.66667 2144|0.51389 2145|0.5 2146|0.44444 2147|0.48611 2148|0.5 2149|0.31944 2150|0.38889 2151|0.54167 2152|0.375 2153|0.625 2154|0.48611 2155|0.56944 2156|0.79167 2157|0.56944 2158|0.68056 2159|0.38889 2160|0.43056 2161|0.55556 2162|0.45833 2163|0.72222 2164|0.5 2165|0.55556 2166|0.45833 2167|0.61111 2168|0.70833 2169|0.27778 2170|0.63889 2171|0.5 2172|0.44444 2173|0.68056 2174|0.5 2175|0.38889 2176|0.65278 2177|0.5 2178|0.58333 2179|0.79167 2180|0.54167 2181|0.5 2182|0.36111 2183|0.33333 2184|0.31944 2185|0.26389 2186|0.23611 2187|0.31944 2188|0.22222 2189|0.45833 2190|0.51389 2191|0.43056 2192|0.55556 2193|0.84722 2194|0.72222 2195|0.75 2196|0.83333 2197|0.72222 2198|0.33333 2199|0.73611 2200|0.61111 2201|0.5 2202|0.5 2203|0.055556 2204|0.5 2205|0.5 2206|0.41667 2207|0.5 2208|0.5 2209|0.5 2210|0.54167 2211|0.58333 2212|0.5 2213|0.5 2214|0.5 2215|0.31944 2216|0.22222 2217|0.29167 2218|0.63889 2219|0.5 2220|0.5 2221|0.41667 2222|0.56944 2223|0.54167 2224|0.5 2225|0.5 2226|0.47222 2227|0.19444 2228|0.22222 2229|0.16667 2230|0.36111 2231|0.40278 2232|0.625 2233|0.65278 2234|0.33333 2235|0.15278 2236|0.5 2237|0.38889 2238|0.19444 2239|0.375 2240|0.51389 2241|0.54167 2242|0.52778 2243|0.54167 2244|0.54167 2245|0.5 2246|0.5 2247|0.72222 2248|0.65278 2249|0.5 2250|0.61111 2251|0.73611 2252|0.36111 2253|0.5 2254|0.45833 2255|0.56944 2256|0.5 2257|0.52778 2258|0.26389 2259|0.25 2260|0.40278 2261|0.26389 2262|0.29167 2263|0.5 2264|0.38889 2265|0.34722 2266|0.33333 2267|0.5 2268|0.44444 2269|0.30556 2270|0.48611 2271|0.83333 2272|0.56944 2273|0.5 2274|0.44444 2275|0.33333 2276|0.31944 2277|0.30556 2278|0.20833 2279|0.19444 2280|0.54167 2281|0.52778 2282|0.40278 2283|0.23611 2284|0.5 2285|0.54167 2286|0.51389 2287|0.65278 2288|0.44444 2289|0.5 2290|0.70833 2291|0.55556 2292|0.58333 2293|0.59722 2294|0.55556 2295|0.5 2296|0.59722 2297|0.16667 2298|0.51389 2299|0.55556 2300|0.34722 2301|0.51389 2302|0.38889 2303|0.34722 2304|0.45833 2305|0.22222 2306|0.20833 2307|0.16667 2308|0.63889 2309|0.625 2310|0.47222 2311|0.125 2312|0.44444 2313|0.81944 2314|0.34722 2315|0.65278 2316|0.5 2317|0.66667 2318|0.375 2319|0.5 2320|0.30556 2321|0.30556 2322|0.5 2323|0.51389 2324|0.70833 2325|0.52778 2326|0.41667 2327|0.48611 2328|0.16667 2329|0.72222 2330|0.083333 2331|0.25 2332|0.41667 2333|0.47222 2334|0.38889 2335|0.22222 2336|0.5 2337|0.38889 2338|0.31944 2339|0.5 2340|0.56944 2341|0.55556 2342|0.51389 2343|0.72222 2344|0.65278 2345|0.72222 2346|0.80556 2347|0.75 2348|0.77778 2349|0.76389 2350|0.77778 2351|0.65278 2352|0.44444 2353|0.52778 2354|0.5 2355|0.27778 2356|0.45833 2357|0.73611 2358|0.55556 2359|0.5 2360|0.52778 2361|0.5 2362|0.58333 2363|0.69444 2364|0.51389 2365|0.30556 2366|0.61111 2367|0.55556 2368|0.72222 2369|0.59722 2370|0.5 2371|0.55556 2372|0.30556 2373|0.61111 2374|0.54167 2375|0.66667 2376|0.63889 2377|0.59722 2378|0.48611 2379|0.43056 2380|0.52778 2381|0.375 2382|0.59722 2383|0.5 2384|0.5 2385|0.72222 2386|0.55556 2387|0.45833 2388|0.72222 2389|0.52778 2390|0.5 2391|0.73611 2392|0.55556 2393|0.56944 2394|0.5 2395|0.55556 2396|0.33333 2397|0.5 2398|0.625 2399|0.43056 2400|0.11111 2401|0.54167 2402|0.30556 2403|0.34722 2404|0.31944 2405|0.43056 2406|0.43056 2407|0.5 2408|0.77778 2409|0.52778 2410|0.5 2411|0.72222 2412|0.36111 2413|0.5 2414|0.52778 2415|0.5 2416|0.5 2417|0.19444 2418|0.55556 2419|0.54167 2420|0.5 2421|0.5 2422|0.5 2423|0.5 2424|0.5 2425|0.72222 2426|0.52778 2427|0.30556 2428|0.83333 2429|0.76389 2430|0.875 2431|0.5 2432|0.55556 2433|0.5 2434|0.38889 2435|0.55556 2436|0.5 2437|0.44444 2438|0.56944 2439|0.54167 2440|0.47222 2441|0.72222 2442|0.63889 2443|0.63889 2444|0.30556 2445|0.45833 2446|0.5 2447|0.56944 2448|0.84722 2449|0.80556 2450|0.76389 2451|0.69444 2452|0.5 2453|0.58333 2454|0.56944 2455|0.625 2456|0.56944 2457|0.77778 2458|0.5 2459|0.5 2460|0.66667 2461|0.5 2462|0.63889 2463|0.22222 2464|0.5 2465|0.70833 2466|0.61111 2467|0.5 2468|0.5 2469|0.47222 2470|0.30556 2471|0.5 2472|0.63889 2473|0.77778 2474|0.58333 2475|0.5 2476|0.52778 2477|0.5 2478|0.5 2479|0.59722 2480|0.58333 2481|0.38889 2482|0.5 2483|0.27778 2484|0.36111 2485|0.44444 2486|0.52778 2487|0.5 2488|0.75 2489|0.48611 2490|0.5 2491|0.5 2492|0.41667 2493|0.5 2494|0.5 2495|0.625 2496|0.52778 2497|0.81944 2498|0.22222 2499|0.77778 2500|0.34722 2501|0.625 2502|0.55556 2503|0.58333 2504|0.375 2505|0.29167 2506|0.20833 2507|0.26389 2508|0.61111 2509|0.77778 2510|0.77778 2511|0.79167 2512|0.77778 2513|0.76389 2514|0.34722 2515|0.56944 2516|0.63889 2517|0.70833 2518|0.44444 2519|0.55556 2520|0.72222 2521|0.5 2522|0.5 2523|0.55556 2524|0.61111 2525|0.55556 2526|0.36111 2527|0.375 2528|0.30556 2529|0.38889 2530|0.38889 2531|0.36111 2532|0.5 2533|0.80556 2534|0.5 2535|0.5 2536|0.5 2537|0.58333 2538|0.65278 2539|0.625 2540|0.5 2541|0.5 2542|0.41667 2543|0.66667 2544|0.75 2545|0.59722 2546|0.38889 2547|0.61111 2548|0.5 2549|0.51389 2550|0.5 2551|0.31944 2552|0.375 2553|0.52778 2554|0.5 2555|0.44444 2556|0.16667 2557|0.54167 2558|0.48611 2559|0.47222 2560|0.5 2561|0.31944 2562|0.58333 2563|0.51389 2564|0.61111 2565|0.5 2566|0.5 2567|0.5 2568|0.44444 2569|0.375 2570|0.5 2571|0.5 2572|0.29167 2573|0.45833 2574|0.5 2575|0.27778 2576|0.38889 2577|0.5 2578|0.5 2579|0.5 2580|0.81944 2581|0.875 2582|0.13889 2583|0.22222 2584|0.013889 2585|0.15278 2586|0.083333 2587|0.73611 2588|0.66667 2589|0.56944 2590|0.45833 2591|0.54167 2592|0.5 2593|0.69444 2594|0.5 2595|0.5 2596|0.5 2597|0.30556 2598|0.29167 2599|0.20833 2600|0.66667 2601|0.70833 2602|0.44444 2603|0.5 2604|0.77778 2605|0.54167 2606|0.55556 2607|0.5 2608|0.5 2609|0.58333 2610|0.5 2611|0.38889 2612|0.69444 2613|0.66667 2614|0.56944 2615|0.45833 2616|0.5 2617|0.5 2618|0.55556 2619|0.51389 2620|0.61111 2621|0.16667 2622|0.58333 2623|0.58333 2624|0.34722 2625|0.66667 2626|0.65278 2627|0.63889 2628|0.63889 2629|0.52778 2630|0.36111 2631|0.44444 2632|0.27778 2633|0.5 2634|0.55556 2635|0.48611 2636|0.48611 2637|0.625 2638|0.55556 2639|0.5 2640|0.77778 2641|0.27778 2642|0.30556 2643|0.30556 2644|0.625 2645|0.38889 2646|0.80556 2647|0.88889 2648|0.93056 2649|0.56944 2650|0.65278 2651|0.61111 2652|0.59722 2653|0.5 2654|0.58333 2655|0.59722 2656|0.19444 2657|0.25 2658|0.20833 2659|0.20833 2660|0.52778 2661|0.5 2662|0.44444 2663|0.58333 2664|0.51389 2665|0.83333 2666|0.69444 2667|0.58333 2668|0.5 2669|0.61111 2670|0.73611 2671|0.61111 2672|0.5 2673|0.45833 2674|0.375 2675|0.25 2676|0.16667 2677|0.59722 2678|0.56944 2679|0.52778 2680|0.55556 2681|0.56944 2682|0.59722 2683|0.52778 2684|0.51389 2685|0.34722 2686|0.34722 2687|0.30556 2688|0.13889 2689|0.41667 2690|0.31944 2691|0.51389 2692|0.54167 2693|0.375 2694|0.34722 2695|0.41667 2696|0.34722 2697|0.59722 2698|0.68056 2699|0.38889 2700|0.40278 2701|0.38889 2702|0.375 2703|0.19444 2704|0.5 2705|0.5 2706|0.5 2707|0.5 2708|0.5 2709|0.625 2710|0.22222 2711|0.22222 2712|0.51389 2713|0.56944 2714|0.59722 2715|0.33333 2716|0.375 2717|0.25 2718|0.58333 2719|0.625 2720|0.55556 2721|0.18056 2722|0.43056 2723|0.5 2724|0.27778 2725|0.23611 2726|0.33333 2727|0.23611 2728|0.5 2729|0.61111 2730|0.52778 2731|0.5 2732|0.58333 2733|0.56944 2734|0.5 2735|0.41667 2736|0.51389 2737|0.5 2738|0.59722 2739|0.5 2740|0.56944 2741|0.51389 2742|0.5 2743|0.5 2744|0.61111 2745|0.19444 2746|0.30556 2747|0.26389 2748|0.5 2749|0.59722 2750|0.52778 2751|0.27778 2752|0.16667 2753|0.5 2754|0.70833 2755|0.55556 2756|0.52778 2757|0.54167 2758|0.47222 2759|0.54167 2760|0.55556 2761|0.22222 2762|0.5 2763|0.5 2764|0.5 2765|0.54167 2766|0.5 2767|0.51389 2768|0.55556 2769|0.47222 2770|0.61111 2771|0.5 2772|0.59722 2773|0.5 2774|0.52778 2775|0.36111 2776|0.47222 2777|0.44444 2778|0.5 2779|0.5 2780|0.34722 2781|0.5 2782|0.70833 2783|0.70833 2784|0.38889 2785|0.58333 2786|0.75 2787|0.69444 2788|0.51389 2789|0.55556 2790|0.56944 2791|0.65278 2792|0.55556 2793|0.52778 2794|0.51389 2795|0.48611 2796|0.52778 2797|0.48611 2798|0.43056 2799|0.55556 2800|0.5 2801|0.5 2802|0.52778 2803|0.5 2804|0.51389 2805|0.33333 2806|0.36111 2807|0.5 2808|0.77778 2809|0.5 2810|0.66667 2811|0.51389 2812|0.54167 2813|0.13889 2814|0.34722 2815|0.41667 2816|0.5 2817|0.23611 2818|0.20833 2819|0.5 2820|0.5 2821|0.44444 2822|0.5 2823|0.13889 2824|0.31944 2825|0.27778 2826|0.29167 2827|0.51389 2828|0.45833 2829|0.5 2830|0.73611 2831|0.54167 2832|0.5 2833|0.5 2834|0.5 2835|0.5 2836|0.54167 2837|0.375 2838|0.5 2839|0.80556 2840|0.94444 2841|0.47222 2842|0.16667 2843|0.22222 2844|0.63889 2845|0.61111 2846|0.45833 2847|0.27778 2848|0.41667 2849|0.27778 2850|0.055556 2851|0.25 2852|0.36111 2853|0.56944 2854|0.55556 2855|0.5 2856|0.26389 2857|0.25 2858|0.45833 2859|0.59722 2860|0.625 2861|0.69444 2862|0.45833 2863|0.41667 2864|0.5 2865|0.52778 2866|0.75 2867|0.5 2868|0.5 2869|0.013889 2870|0.041667 2871|0.5 2872|0.5 2873|0.5 2874|0.5 2875|0.125 2876|0.125 2877|0.5 2878|0.5 2879|0.5 2880|0.43056 2881|0.52778 2882|0.58333 2883|0.51389 2884|0.5 2885|0.69444 2886|0.55556 2887|0.61111 2888|0.31944 2889|0.58333 2890|0.34722 2891|0.5 2892|0.83333 2893|0.72222 2894|0.55556 2895|0.54167 2896|0.47222 2897|0.5 2898|0.5 2899|0.30556 2900|0.54167 2901|0.55556 2902|0.5 2903|0.5 2904|0.40278 2905|0.48611 2906|0.5 2907|0.5 2908|0.5 2909|0.16667 2910|0.26389 2911|0.81944 2912|0.47222 2913|0.5 2914|0.55556 2915|0.70833 2916|0.52778 2917|0.77778 2918|0.59722 2919|0.66667 2920|0.77778 2921|0.61111 2922|0.81944 2923|0.5 2924|0.48611 2925|0.5 2926|0.94444 2927|0.51389 2928|0.54167 2929|0.48611 2930|0.76389 2931|0.41667 2932|0.55556 2933|0.55556 2934|0.52778 2935|0.61111 2936|0.63889 2937|0.5 2938|0.097222 2939|0.18056 2940|0.40278 2941|0.48611 2942|0.5 2943|0.47222 2944|0.55556 2945|0.43056 2946|0.56944 2947|0.43056 2948|0.55556 2949|0.40278 2950|0.40278 2951|0.65278 2952|0.55556 2953|0.58333 2954|0.11111 2955|0.5 2956|0.63889 2957|0.5 2958|0.40278 2959|0.72222 2960|0.43056 2961|0.34722 2962|0.55556 2963|0.79167 2964|0.59722 2965|0.52778 2966|0.52778 2967|0.66667 2968|0.34722 2969|0.55556 2970|0.73611 2971|0.54167 2972|0.51389 2973|0.58333 2974|0.31944 2975|0.33333 2976|0.63889 2977|0.44444 2978|0.375 2979|0.36111 2980|0.30556 2981|0.41667 2982|0.18056 2983|0.33333 2984|0.25 2985|0.61111 2986|0.26389 2987|0.5 2988|0.43056 2989|0.43056 2990|0.66667 2991|0.66667 2992|0.055556 2993|0.23611 2994|0.30556 2995|0.61111 2996|0.52778 2997|0.40278 2998|0.59722 2999|0.48611 3000|0.5 3001|0.5 3002|0.40278 3003|0.48611 3004|0.44444 3005|0.47222 3006|0.63889 3007|0.375 3008|0.51389 3009|0.38889 3010|0.5 3011|0.33333 3012|0.125 3013|0.29167 3014|0.22222 3015|0.40278 3016|0.34722 3017|0.23611 3018|0.47222 3019|0.5 3020|0.41667 3021|0.38889 3022|0.29167 3023|0.20833 3024|0.29167 3025|0.19444 3026|0.375 3027|0.25 3028|0.5 3029|0.55556 3030|0.61111 3031|0.72222 3032|0.55556 3033|0.5 3034|0.84722 3035|0.79167 3036|0.22222 3037|0.38889 3038|0.80556 3039|0.76389 3040|0.77778 3041|0.5 3042|0.56944 3043|0.55556 3044|0.55556 3045|0.52778 3046|0.5 3047|0.52778 3048|0.19444 3049|0.51389 3050|0.33333 3051|0.29167 3052|0.41667 3053|0.69444 3054|0.54167 3055|0.52778 3056|0.56944 3057|0.27778 3058|0.58333 3059|0.55556 3060|0.52778 3061|0.44444 3062|0.44444 3063|0.77778 3064|0.79167 3065|0.5 3066|0.33333 3067|0.5 3068|0.25 3069|0.25 3070|0.5 3071|0.75 3072|0.47222 3073|0.56944 3074|0.27778 3075|0.055556 3076|0.125 3077|0.30556 3078|0.27778 3079|0.5 3080|0.72222 3081|0.51389 3082|0.5 3083|0.55556 3084|0.30556 3085|0.43056 3086|0.34722 3087|0.48611 3088|0.66667 3089|0.56944 3090|0.375 3091|0.69444 3092|0.72222 3093|0.80556 3094|0.94444 3095|0.5 3096|0.73611 3097|0.52778 3098|0.43056 3099|0.52778 3100|0.5 3101|0.5 3102|0.52778 3103|0.625 3104|0.70833 3105|0.43056 3106|0.36111 3107|0.33333 3108|0.35417 3109|0.52778 3110|0.56944 3111|0.5 3112|0.52778 3113|0.44444 3114|0.27778 3115|0.36111 3116|0.5 3117|0.33333 3118|0.48611 3119|0.625 3120|0.5 3121|0.54167 3122|0.36111 3123|0.5 3124|0.30556 3125|0.5 3126|0.38889 3127|0.23611 3128|0.38889 3129|0.55556 3130|0.47222 3131|0.625 3132|0.51389 3133|0.52778 3134|0.52778 3135|0.55556 3136|0.29167 3137|0.51389 3138|0.34722 3139|0.45833 3140|0.33333 3141|0.33333 3142|0.27778 3143|0.68056 3144|0.54167 3145|0.66667 3146|0.375 3147|0.5 3148|0.52778 3149|0.79167 3150|0.68056 3151|0.5 3152|0.44444 3153|0.44444 3154|0.68056 3155|0.55556 3156|0.63889 3157|0.51389 3158|0.55556 3159|0.5 3160|0.51389 3161|0.72222 3162|0.5 3163|0.44444 3164|0.61111 3165|0.55556 3166|0.79167 3167|0.51389 3168|0.45833 3169|0.43056 3170|0.59722 3171|0.63889 3172|0.66667 3173|0.5 3174|0.11111 3175|0.41667 3176|0.55556 3177|0.66667 3178|0.625 3179|0.52778 3180|0.58333 3181|0.54167 3182|0.5 3183|0.5 3184|0.33333 3185|0.69444 3186|0.54167 3187|0.76389 3188|0.54167 3189|0.61111 3190|0.81944 3191|0.5 3192|0.80556 3193|0.19444 3194|0.43056 3195|0.61111 3196|0.5 3197|0.43056 3198|0.13889 3199|0.36111 3200|0.56944 3201|0.51389 3202|0.625 3203|0.38889 3204|0.51389 3205|0.45833 3206|0.44444 3207|0.41667 3208|0.55556 3209|0.54167 3210|0.25 3211|0.68056 3212|0.58333 3213|0.88889 3214|0.44444 3215|0.5 3216|0.30556 3217|0.52778 3218|0.5 3219|0.52778 3220|0.5 3221|0.51389 3222|0.51389 3223|0.5 3224|0.5 3225|0.48611 3226|0.5 3227|0.18056 3228|0.43056 3229|0.36111 3230|0.36111 3231|0.55556 3232|0.55556 3233|0.73611 3234|0.5 3235|0.5 3236|0.51389 3237|0.5 3238|0.5 3239|0.48611 3240|0.45833 3241|0.52778 3242|0.48611 3243|0.5 3244|0.5 3245|0.54167 3246|0.55556 3247|0.63889 3248|0.30556 3249|0.375 3250|0.65278 3251|0.5 3252|0.5 3253|0.5 3254|0.5 3255|0.5 3256|0.055556 3257|0.5 3258|0.5 3259|0.33333 3260|0.31944 3261|0.5 3262|0.51389 3263|0.55556 3264|0.33333 3265|0.45833 3266|0.51389 3267|0.93056 3268|0.76389 3269|0.36111 3270|0.30556 3271|0.5 3272|0.5 3273|0.18056 3274|0.38542 3275|0.5 3276|0.72222 3277|0.22222 3278|0.5 3279|0.18056 3280|0.5 3281|0.5 3282|0.47222 3283|0.5 3284|0.25 3285|0.22222 3286|0.5 3287|0.5 3288|0.51389 3289|0.83333 3290|0.58333 3291|0.40278 3292|0.5 3293|0.44444 3294|0.375 3295|0.5 3296|0.19444 3297|0.5 3298|0.48611 3299|0.27778 3300|0.44444 3301|0.5 3302|0.5 3303|0.20833 3304|0.30556 3305|0.22222 3306|0.875 3307|0.80556 3308|0.72222 3309|0.69444 3310|0.26389 3311|0.40278 3312|0.5 3313|0.20833 3314|0.055556 3315|0.36111 3316|0.72222 3317|0.69444 3318|0.51389 3319|0.79167 3320|0.29167 3321|0.66667 3322|0.33333 3323|0.52778 3324|0.47222 3325|0.73611 3326|0.55556 3327|0.36111 3328|0.23611 3329|0.66667 3330|0.76389 3331|0.52778 3332|0.36111 3333|0.125 3334|0.22222 3335|0.19444 3336|0.5 3337|0.30556 3338|0.30556 3339|0.55556 3340|0.5 3341|0.48611 3342|0.38889 3343|0.40278 3344|0.5 3345|0.125 3346|0.5 3347|0.94444 3348|0.25 3349|0.43056 3350|0.29167 3351|0.19444 3352|0.16667 3353|0.34722 3354|0.27778 3355|0.36111 3356|0.43056 3357|0.38889 3358|0.51389 3359|0.44444 3360|0.61111 3361|0.70833 3362|0.18056 3363|0.18056 3364|0.66667 3365|0.65278 3366|0.61111 3367|0.5 3368|0.5 3369|0.5 3370|0.22222 3371|0.51389 3372|0.44444 3373|0.5 3374|0.625 3375|0.58333 3376|0.22222 3377|0.5 3378|0.43056 3379|0.61111 3380|0.5 3381|0.52778 3382|0.16667 3383|0.5 3384|0.5 3385|0.5 3386|0.125 3387|0.47222 3388|0.5 3389|0.80556 3390|0.70833 3391|0.5 3392|0.5 3393|0.5 3394|0.61111 3395|0.54167 3396|0.5 3397|0.52778 3398|0.75 3399|0.66667 3400|0.65278 3401|0.79167 3402|0.84722 3403|0.48611 3404|0.52778 3405|0.5 3406|0.47222 3407|0.52778 3408|0.44444 3409|0.58333 3410|0.47222 3411|0.5 3412|0.43056 3413|0.47222 3414|0.5 3415|0.5 3416|0.47222 3417|0.52778 3418|0.5 3419|0.5 3420|0.54167 3421|0.5 3422|0.61111 3423|0.54167 3424|0.625 3425|0.48611 3426|0.34722 3427|0.375 3428|0.51389 3429|0.5 3430|1 3431|0.80556 3432|0.5 3433|0.5 3434|0.54167 3435|0.61111 3436|0.19444 3437|0.27778 3438|0.25 3439|0.25 3440|0.18056 3441|0.5 3442|0.59722 3443|0.5 3444|0.5 3445|0.33333 3446|0.29167 3447|0.38889 3448|0.40278 3449|0.5 3450|0.5 3451|0.40278 3452|0.55556 3453|0.20833 3454|0.29167 3455|0.5 3456|0.52778 3457|0.55556 3458|0.43056 3459|0.45833 3460|0.5 3461|0.59722 3462|0.44444 3463|0.5 3464|0.5 3465|0.16667 3466|0.125 3467|0.013889 3468|0.54167 3469|0.59722 3470|0.23611 3471|0.23611 3472|0.26389 3473|0.55556 3474|0.76389 3475|0.59722 3476|0.93056 3477|0.95833 3478|1 3479|0.25 3480|0.47222 3481|0.76389 3482|0.69444 3483|0.69444 3484|0.66667 3485|0.52778 3486|0.27778 3487|0.055556 3488|0.72222 3489|0.5 3490|0.5 3491|0.59722 3492|0.55556 3493|0.45833 3494|0.5 3495|0.5 3496|0.59722 3497|0.5 3498|0.5 3499|0.5 3500|0.5 3501|0.5 3502|0.55556 3503|0.5 3504|0.5 3505|0.5 3506|0.5 3507|0.52778 3508|0.45833 3509|0.27778 3510|0.30556 3511|0.33333 3512|0.125 3513|0.31944 3514|0.29167 3515|0.19444 3516|0.013889 3517|0.47222 3518|0.5 3519|0.48611 3520|0.11111 3521|0.5 3522|0.5 3523|0.5 3524|0.5 3525|0.5 3526|0.069444 3527|0.5 3528|0.5 3529|0.375 3530|0.5 3531|0.51389 3532|0.5 3533|0.83333 3534|0.84722 3535|0.30556 3536|0.34722 3537|0.41667 3538|0.5 3539|0.23611 3540|0.097222 3541|0.25 3542|0.5 3543|0.5 3544|0.5 3545|0.5 3546|0.70833 3547|0.75 3548|0.77778 3549|0.5 3550|0.52778 3551|0.5 3552|0.44444 3553|0.45833 3554|0.5 3555|0.47222 3556|0.59722 3557|0.54167 3558|0.27778 3559|0.52778 3560|0.66667 3561|0.5 3562|0.5 3563|0.5 3564|0.5 3565|0.84722 3566|0.81944 3567|0.84722 3568|0.51389 3569|0.5 3570|0.51389 3571|0.097222 3572|0.61111 3573|0.25 3574|0.097222 3575|0.73611 3576|0.51389 3577|0.44444 3578|0.83333 3579|0.76389 3580|0.70833 3581|0.58333 3582|0.61111 3583|0.45833 3584|0.31944 3585|0.56944 3586|0.5 3587|0.22222 3588|0.20833 3589|0.5 3590|0.5 3591|0.5 3592|0.29167 3593|0.20833 3594|0.38889 3595|0.20833 3596|0.16667 3597|0.56944 3598|0.41667 3599|0.20833 3600|0.22222 3601|0.5 3602|0.41667 3603|0.19444 3604|0.055556 3605|0.27778 3606|0.47222 3607|0.54167 3608|0.66667 3609|0.65278 3610|0.93056 3611|0.93056 3612|0.86111 3613|0.77778 3614|0.69444 3615|0.5 3616|0.55556 3617|0.375 3618|0.43056 3619|0.5 3620|0.33333 3621|0.29167 3622|0.48611 3623|0.25 3624|0.47222 3625|0.52778 3626|0.40278 3627|0.48611 3628|0.5 3629|0.083333 3630|0.56944 3631|0.5 3632|0.61111 3633|0.5 3634|0.88889 3635|0.75 3636|0.51389 3637|0.55556 3638|0.30556 3639|0.027778 3640|0.055556 3641|0.055556 3642|0.5 3643|0.51389 3644|0.55556 3645|0.61111 3646|0.34722 3647|0.5 3648|0.61111 3649|0.27778 3650|0.83333 3651|0.73611 3652|0.33333 3653|0.51389 3654|0.34722 3655|0.27778 3656|0.36111 3657|0.5 3658|0.70833 3659|0.45833 3660|0.19444 3661|0.36111 3662|0.27778 3663|0.27778 3664|0.26389 3665|0.33333 3666|0.34722 3667|0.375 3668|0.25 3669|0.36111 3670|0.47222 3671|0.55556 3672|0.77778 3673|0.5 3674|0.44444 3675|0.38889 3676|0.52778 3677|0.81944 3678|0.83333 3679|0.45833 3680|0.47222 3681|0.47222 3682|0.38889 3683|0.30556 3684|0.72222 3685|0.58333 3686|0.75 3687|0.81944 3688|0.73611 3689|0.52778 3690|0.72222 3691|0.79167 3692|0.61111 3693|0.52778 3694|0.5 3695|0.5 3696|0.41667 3697|0.43056 3698|0.48611 3699|0.61111 3700|0.59722 3701|0.59722 3702|0.68056 3703|0.70833 3704|0.625 3705|0.72222 3706|0.5 3707|0.40278 3708|0.5 3709|0.65278 3710|0.72222 3711|0.73611 3712|0.81944 3713|0.61111 3714|0.94444 3715|0.45833 3716|0.47222 3717|0.48611 3718|0.33333 3719|0.54167 3720|0.20833 3721|0.22222 3722|0.20833 3723|0.27778 3724|0.27778 3725|0.25 3726|0.45833 3727|0.33333 3728|0.36111 3729|0.23611 3730|0.26389 3731|0.26389 3732|0.51389 3733|0.69444 3734|0.47222 3735|0.52778 3736|0.5 3737|0.55556 3738|0.375 3739|0.11111 3740|0.11111 3741|0.13889 3742|0.25 3743|0.18056 3744|0.56944 3745|0.66667 3746|0.54167 3747|0.63889 3748|0.88889 3749|0.83333 3750|0.72222 3751|0.79167 3752|0.81944 3753|0.375 3754|0.36111 3755|0.23611 3756|0.30556 3757|0.15278 3758|0.59722 3759|0.59722 3760|0.90278 3761|0.5 3762|0.5 3763|0.5 3764|0.55556 3765|0.55556 3766|0.45833 3767|0.52778 3768|0.47222 3769|0.55556 3770|0.5 3771|0.5 3772|0.65278 3773|0.73611 3774|0.72222 3775|0.69444 3776|0.65278 3777|0.5 3778|0.52778 3779|0.5 3780|0.52778 3781|0.33333 3782|0.5 3783|0.15278 3784|0.15278 3785|0.72222 3786|0.65278 3787|0.625 3788|0.55556 3789|0.5 3790|0.20833 3791|0.68056 3792|0.93056 3793|0.81944 3794|0.76389 3795|0.88889 3796|0.36111 3797|0.19444 3798|0.58333 3799|0.51389 3800|0.84722 3801|0.81944 3802|0.5 3803|0.58333 3804|0.69444 3805|0.59722 3806|0.5 3807|0.61111 3808|0.52778 3809|0.52778 3810|0.44444 3811|0.38889 3812|0.66667 3813|0.45833 3814|0.52778 3815|0.5 3816|0.59722 3817|0.38889 3818|0.59722 3819|0.76389 3820|0.68056 3821|0.44444 3822|0.69444 3823|0.625 3824|0.94444 3825|0.80556 3826|0.84722 3827|0.31944 3828|0.81944 3829|0.76389 3830|0.81944 3831|0.75 3832|0.66667 3833|0.77778 3834|0.81944 3835|0.68056 3836|0.5 3837|0.34722 3838|0.77778 3839|0.80556 3840|0.58333 3841|0.77778 3842|0.66667 3843|0.76389 3844|0.72222 3845|0.70833 3846|0.47222 3847|0.34722 3848|0.36111 3849|0.63889 3850|0.58333 3851|0.79167 3852|0.88889 3853|0.80556 3854|0.69444 3855|0.68056 3856|0.79167 3857|0.79167 3858|0.66667 3859|0.75 3860|0.66667 3861|0.58333 3862|0.55556 3863|0.44444 3864|0.52778 3865|0.73611 3866|0.80556 3867|0.5 3868|0.55556 3869|0.25 3870|0.22222 3871|0.55556 3872|0.66667 3873|0.80556 3874|0.51389 3875|0.41667 3876|0.375 3877|0.55556 3878|0.49306 3879|0.34722 3880|0.55556 3881|0.81944 3882|0.76389 3883|0.72222 3884|0.25 3885|0.34722 3886|0.33333 3887|0.5 3888|0.51389 3889|0.5 3890|0.44444 3891|0.5 3892|0.16667 3893|0.73611 3894|0.80556 3895|0.84722 3896|0.625 3897|0.66667 3898|0.63889 3899|0.72222 3900|0.66667 3901|0.44444 3902|0.34722 3903|0.36111 3904|0.54167 3905|0.61111 3906|0.81944 3907|0.77778 3908|0.66667 3909|0.58333 3910|0.36111 3911|0.43056 3912|0.55556 3913|0.5 3914|0.63889 3915|0.86111 3916|0.63889 3917|0.86111 3918|0.43056 3919|0.47222 3920|0.38889 3921|0.25 3922|0.41667 3923|0.31944 3924|0.5 3925|0.48611 3926|0.43056 3927|0.5 3928|0.47222 3929|0.65278 3930|0.72222 3931|0.51389 3932|0.5 3933|0.47222 3934|0.5 3935|0.18056 3936|0.13889 3937|0.027778 3938|0.097222 3939|0.055556 3940|0.34722 3941|0.48611 3942|0.25 3943|0.16667 3944|0.93056 3945|0.80556 3946|0.875 3947|0.54167 3948|0.43056 3949|0.43056 3950|0.5 3951|0.72222 3952|0.40278 3953|0.76389 3954|0.90278 3955|0.94444 3956|0.41667 3957|0.31944 3958|0.125 3959|0.29167 3960|0.125 3961|0.31944 3962|0.22222 3963|0.069444 3964|0.25 3965|0.23611 3966|0.48611 3967|0.38889 3968|0.47222 3969|0.54167 3970|0.70833 3971|0.76389 3972|0.81944 3973|0.66667 3974|0.16667 3975|0.20833 3976|0.59722 3977|0.61111 3978|0.83333 3979|0.77778 3980|0.5 3981|0.58333 3982|0.625 3983|0.58333 3984|0.83333 3985|0.70833 3986|0.66667 3987|0.77778 3988|0.29167 3989|0.38889 3990|0.38889 3991|0.41667 3992|0.86111 3993|0.59722 3994|0.77778 3995|0.63889 3996|0.61111 3997|0.66667 3998|0.59722 3999|0.36111 4000|0.77778 4001|0.16667 4002|0.18056 4003|0.5 4004|0.56944 4005|0.5 4006|0.27778 4007|0.43056 4008|0.51389 4009|0.5 4010|0.26389 4011|0.18056 4012|0.25 4013|0.73611 4014|0.88889 4015|0.47222 4016|0.5 4017|0.68056 4018|0.73611 4019|0.59722 4020|0.15278 4021|0.59722 4022|0.52778 4023|0.5 4024|0.48611 4025|0.38889 4026|0.27778 4027|0.31944 4028|0.5 4029|0.5 4030|0.40278 4031|0.63889 4032|0.77778 4033|0.72222 4034|0.5 4035|0.5 4036|0.41667 4037|0.55556 4038|0.5 4039|0.94444 4040|0.5 4041|0.5 4042|0.44444 4043|0.16667 4044|0.16667 4045|0.15278 4046|0.73611 4047|0.73611 4048|0.75 4049|0.69444 4050|0.81944 4051|0.83333 4052|0.79167 4053|0.875 4054|0.93056 4055|0.875 4056|0.90278 4057|0.52778 4058|0.625 4059|0.61111 4060|0.44444 4061|0.55556 4062|0.33333 4063|0.38889 4064|0.36111 4065|0.31944 4066|0.55556 4067|0.63889 4068|0.5 4069|0.5 4070|0.59722 4071|0.84722 4072|0.875 4073|0.875 4074|0.52778 4075|0.86111 4076|0.94444 4077|0.97222 4078|0.77778 4079|0.5 4080|0.61111 4081|0.65278 4082|0.75 4083|0.44444 4084|0.29167 4085|0.61111 4086|0.72222 4087|0.77778 4088|0.54167 4089|0.5 4090|0.5 4091|0.29167 4092|0.52778 4093|0.875 4094|0.45833 4095|0.70833 4096|0.91667 4097|0.54167 4098|0.44444 4099|0.47222 4100|0.5 4101|0.41667 4102|0.38889 4103|0.41667 4104|0.38889 4105|0.36111 4106|0.58333 4107|0.63889 4108|0.52778 4109|0.44444 4110|0.43056 4111|0.48611 4112|0.77778 4113|0.79167 4114|0.77778 4115|0.5 4116|0.69444 4117|0.75 4118|0.83333 4119|0.79167 4120|0.84722 4121|0.59722 4122|0.40278 4123|0.47222 4124|0.52778 4125|0.63889 4126|0.56944 4127|0.66667 4128|0.65278 4129|0.79167 4130|0.72222 4131|0.58333 4132|0.625 4133|0.55556 4134|0.61111 4135|0.30556 4136|0.5 4137|0.48611 4138|0.5 4139|0.94444 4140|0.65278 4141|0.75 4142|0.61111 4143|0.47222 4144|0.84722 4145|0.91667 4146|0.38889 4147|0.56944 4148|0.5 4149|0.59722 4150|0.72222 4151|0.84722 4152|0.66667 4153|0.66667 4154|0.875 4155|0.77778 4156|0.91667 4157|0.81944 4158|0.93056 4159|0.81944 4160|0.94444 4161|0.5 4162|0.5 4163|0.73611 4164|0.72222 4165|0.5 4166|0.19444 4167|0.625 4168|0.65278 4169|0.56944 4170|0.29167 4171|0.11111 4172|0.27778 4173|0.52778 4174|0.20833 4175|0.72222 4176|0.90278 4177|0.51389 4178|0.30556 4179|0.15278 4180|0.66667 4181|0.77778 4182|0.81944 4183|0.81944 4184|0.5 4185|0.22222 4186|0.41667 4187|0.20833 4188|0.51389 4189|0.77778 4190|0.69444 4191|0.58333 4192|0.63889 4193|0.55556 4194|0.55556 4195|0.16667 4196|0.5 4197|0.16667 4198|0.19444 4199|0.097222 4200|0.56944 4201|0.73611 4202|0.5 4203|0.75 4204|0.66667 4205|0.77778 4206|0.83333 4207|0.94444 4208|0.69444 4209|0.80556 4210|0.80556 4211|0.88889 4212|0.76389 4213|0.72222 4214|0.79167 4215|0.66667 4216|0.83333 4217|0.84722 4218|0.63889 4219|0.43056 4220|0.34722 4221|0.13889 4222|0.51389 4223|0.5 4224|0.5 4225|0.41667 4226|0.5 4227|0.43056 4228|0.61111 4229|0.52778 4230|0.61111 4231|0.25 4232|0.15278 4233|0.125 4234|0.11111 4235|0.20833 4236|0.041667 4237|0.069444 4238|0.76389 4239|0.61111 4240|0.94444 4241|0.80556 4242|0.59722 4243|0.73611 4244|0.72222 4245|0.30556 4246|0.61111 4247|0.81944 4248|0.84722 4249|1 4250|0.88889 4251|0.83333 4252|0.65278 4253|0.5 4254|0.5 4255|0.41667 4256|0.52778 4257|0.125 4258|0.625 4259|0.63889 4260|0.41667 4261|0.34722 4262|0.48611 4263|0.33333 4264|0.59722 4265|0.77778 4266|0.5 4267|0.55556 4268|0.23611 4269|0.47222 4270|0.22222 4271|0.48611 4272|0.38889 4273|0.76389 4274|0.97222 4275|0.86111 4276|0.88889 4277|0.5 4278|0.44444 4279|0.5 4280|0.65278 4281|0.45833 4282|0.5 4283|0.5 4284|0.33333 4285|0.51389 4286|0.58333 4287|0.36111 4288|0.84722 4289|0.86111 4290|0.80556 4291|0.86111 4292|0.375 4293|0.65278 4294|0.41667 4295|0.5 4296|0.56944 4297|0.5 4298|0.83333 4299|0.83333 4300|0.65278 4301|0.83333 4302|0.80556 4303|0.77778 4304|0.88889 4305|0.86111 4306|0.44444 4307|0.41667 4308|0.38889 4309|0.5 4310|0.61111 4311|0.52778 4312|0.5 4313|0.61111 4314|0.54167 4315|0.70833 4316|0.30556 4317|0.27778 4318|0.26389 4319|0.73611 4320|0.73611 4321|0.83333 4322|0.91667 4323|0.68056 4324|0.56944 4325|0.52778 4326|0.38889 4327|0.5 4328|0.51389 4329|0.51389 4330|0.5 4331|0.41667 4332|0.55556 4333|0.54167 4334|0.72222 4335|0.125 4336|0.5 4337|0.5 4338|0.44444 4339|0.66667 4340|0.30556 4341|0.51389 4342|0.5 4343|0.48611 4344|0.43056 4345|0.52778 4346|0.58333 4347|0.375 4348|0.29167 4349|0.5 4350|0.55556 4351|0.5 4352|0.51389 4353|0.25 4354|0.43056 4355|0.61111 4356|0.56944 4357|0.55556 4358|0.61111 4359|0.51389 4360|0.66667 4361|0.5 4362|0.48611 4363|0.13889 4364|0.44444 4365|0.61111 4366|0.19444 4367|0 4368|0.5 4369|0.56944 4370|0.61111 4371|0.625 4372|0.68056 4373|0.65278 4374|0.66667 4375|0.83333 4376|0.5 4377|0.76389 4378|0.5 4379|0.5 4380|0.5 4381|0.58333 4382|0.70833 4383|0.51389 4384|0.5 4385|0.68056 4386|0.40278 4387|0.5 4388|0.65278 4389|0.58333 4390|0.5 4391|0.56944 4392|0.5 4393|0.68056 4394|0.5 4395|0.48611 4396|0.44444 4397|0.069444 4398|0.54167 4399|0.55556 4400|0.58333 4401|0.5 4402|0.5 4403|0.5 4404|0.52778 4405|0.65278 4406|0.30556 4407|0.48611 4408|0.5 4409|0.66667 4410|0.52778 4411|0.48611 4412|0.5 4413|0.5 4414|0.5 4415|0.45833 4416|0.48611 4417|0.55556 4418|0.56944 4419|0.51389 4420|0.84722 4421|0.69444 4422|0.5 4423|0.5 4424|0.52778 4425|0.51389 4426|0.5 4427|0.63889 4428|0.58333 4429|0.625 4430|0.43056 4431|0.40278 4432|0.43056 4433|0.25 4434|0.34722 4435|0.26389 4436|0.31944 4437|0.069444 4438|0.20833 4439|0.51389 4440|0.5 4441|0.47222 4442|0.38889 4443|0.5 4444|0.38889 4445|0.5 4446|0.47222 4447|0.43056 4448|0.23611 4449|0.5 4450|0.51389 4451|0.375 4452|0.34722 4453|0.26389 4454|0.44444 4455|0.41667 4456|0.43056 4457|0.11111 4458|0.61111 4459|0.5 4460|0.45833 4461|0.5 4462|0.5 4463|0.5 4464|0.22222 4465|0.5 4466|0.5 4467|0.61111 4468|0.5 4469|0.66667 4470|0.5 4471|0.5 4472|0.44444 4473|0.51389 4474|0.33333 4475|0.33333 4476|0.25 4477|0.26389 4478|0.5 4479|0.56944 4480|0.43056 4481|0.5 4482|0.27778 4483|0.51389 4484|0.5 4485|0.65278 4486|0.44444 4487|0.52778 4488|0.56944 4489|0.5 4490|0.5 4491|0.36111 4492|0.30556 4493|0.55556 4494|0.5 4495|0.55556 4496|0.55556 4497|0.43056 4498|0.33333 4499|0.23611 4500|0.36111 4501|0.48611 4502|0.36111 4503|0.43056 4504|0.51389 4505|0.5 4506|0.27778 4507|0.51389 4508|0.59722 4509|0.63889 4510|0.54167 4511|0.45833 4512|0.44444 4513|0.5 4514|0.44444 4515|0.51389 4516|0.5 4517|0.58333 4518|0.80556 4519|0.83333 4520|0.5 4521|0.48611 4522|0.5 4523|0.52778 4524|0.5 4525|0.44444 4526|0.5 4527|0.55556 4528|0.13889 4529|0.11111 4530|0.375 4531|0.27778 4532|0.36111 4533|0.5 4534|0.25 4535|0.5 4536|0.5 4537|0.31944 4538|0.40278 4539|0.44444 4540|0.79167 4541|0.41667 4542|0.58333 4543|0.81944 4544|0.88889 4545|0.79167 4546|0.90278 4547|0.84722 4548|0.58333 4549|0.5 4550|0.375 4551|0.5 4552|0.5 4553|0.54167 4554|0.77778 4555|0.083333 4556|0.16667 4557|0.43056 4558|0.22222 4559|0.44444 4560|0.375 4561|0.5 4562|0.5 4563|0.77778 4564|0.40278 4565|0.5 4566|0.65278 4567|0.63889 4568|0.61111 4569|0.44444 4570|0.63889 4571|0.20833 4572|0.68056 4573|0.5 4574|0.5 4575|0.5 4576|0.31944 4577|0.5 4578|0.27778 4579|0.16667 4580|0.38889 4581|0.875 4582|0.5 4583|0.56944 4584|0.66667 4585|0.083333 4586|0.5 4587|0.48611 4588|0.5 4589|0.58333 4590|0.48611 4591|0.47222 4592|0.23611 4593|0.30556 4594|0.18056 4595|0.16667 4596|0.5 4597|0.69444 4598|0.90278 4599|0.66667 4600|0.625 4601|0.45833 4602|0.625 4603|0.5 4604|0.5 4605|0.47222 4606|0.52778 4607|0.41667 4608|0.45833 4609|0.29167 4610|0 4611|0.31944 4612|0.375 4613|0.43056 4614|0.36111 4615|0.5 4616|0.52778 4617|0.5 4618|0.5 4619|0.41667 4620|0.625 4621|0.63889 4622|0.5 4623|0.75 4624|0.69444 4625|0.13889 4626|0.5 4627|0.5 4628|0.30556 4629|0.55556 4630|0.43056 4631|0.55556 4632|0.31944 4633|0.58333 4634|0.66667 4635|0.59722 4636|0.26389 4637|0.44444 4638|0.51389 4639|0.26389 4640|0.77778 4641|0.83333 4642|0.77778 4643|0.79167 4644|0.77778 4645|0.44444 4646|0.44444 4647|0.77778 4648|0.70833 4649|0.72222 4650|0.55556 4651|0.58333 4652|0.76389 4653|0.54167 4654|0.38889 4655|0.80556 4656|0.94444 4657|0.61111 4658|0.80556 4659|0.375 4660|0.40278 4661|0.5 4662|0.5 4663|0.63889 4664|0.75 4665|0.93056 4666|0.44444 4667|0.66667 4668|0.65278 4669|0.80556 4670|0.875 4671|0.75 4672|0.44444 4673|0.55556 4674|0.44444 4675|0.30556 4676|0.25 4677|0.52778 4678|0.29167 4679|0.22222 4680|0.29167 4681|0.30556 4682|0.33333 4683|0.41667 4684|0.41667 4685|0.51389 4686|0.083333 4687|0.79167 4688|0.45833 4689|0.55556 4690|0.68056 4691|0.55556 4692|0.75 4693|0.30556 4694|0.16667 4695|0.25 4696|0.27778 4697|0.15278 4698|0.13889 4699|0.36111 4700|0.27778 4701|0.29167 4702|0.11111 4703|0.40278 4704|0.33333 4705|0.36111 4706|0.625 4707|0.26389 4708|0.41667 4709|0.5 4710|0.51389 4711|0.52778 4712|0.375 4713|0.5 4714|0.54167 4715|0.5 4716|0.34722 4717|0.5 4718|0.27778 4719|0.44444 4720|0.31944 4721|0.5 4722|0.16667 4723|0.5 4724|0.40278 4725|0.43056 4726|0.5 4727|0.27778 4728|0.47222 4729|0.40278 4730|0.69444 4731|0.5 4732|0.18056 4733|0.25 4734|0.26389 4735|0.22222 4736|0.26389 4737|0.13889 4738|0.5 4739|0.5 4740|0.5 4741|0.65278 4742|0.51389 4743|0.52778 4744|0.45833 4745|0.5 4746|0.44444 4747|0.5 4748|0.48611 4749|0.58333 4750|0.45833 4751|0.48611 4752|0.41667 4753|0.51389 4754|0.5 4755|0.20833 4756|0.5 4757|0.5 4758|0.47222 4759|0.47222 4760|0.65278 4761|0.5 4762|0.30556 4763|0.25 4764|0.25 4765|0.5 4766|0.5 4767|0.30556 4768|0.5 4769|0.69444 4770|0.52778 4771|0.56944 4772|0.79167 4773|0.36111 4774|0.36111 4775|0.48611 4776|0.5 4777|0.41667 4778|0.5 4779|0.44444 4780|0.44444 4781|0.30556 4782|0.25 4783|0.84722 4784|0.5 4785|0.29167 4786|0.34722 4787|0.70833 4788|0.70833 4789|0.63889 4790|0.5 4791|0.45833 4792|0.5 4793|0.61111 4794|0.40278 4795|0.5 4796|0.81944 4797|0.41667 4798|0.51389 4799|0.375 4800|0.48611 4801|0.48611 4802|0.38889 4803|0.13889 4804|0.68056 4805|0.76389 4806|0.875 4807|0.44444 4808|0.45833 4809|0.055556 4810|0.61111 4811|0.41667 4812|0.5 4813|0.52778 4814|0.61111 4815|0.25 4816|0.51389 4817|0.5 4818|0.20833 4819|0.11111 4820|0.33333 4821|0.51389 4822|0.65278 4823|0.68056 4824|0.13889 4825|0.5 4826|0.52778 4827|0.5 4828|0.125 4829|0.27778 4830|0.5 4831|0.5 4832|0.45833 4833|0.11111 4834|0.44444 4835|0.43056 4836|0.52778 4837|0.43056 4838|0.45833 4839|0.375 4840|0.33333 4841|0.61111 4842|0.31944 4843|0.75 4844|0.61111 4845|0.58333 4846|0.47222 4847|0.70833 4848|0.51389 4849|0.54167 4850|0.54167 4851|0.51389 4852|0.5 4853|0.72222 4854|0.55556 4855|0.52778 4856|0.41667 4857|0.11111 4858|0.29167 4859|0.18056 4860|0.27778 4861|0.41667 4862|0.59722 4863|0.20833 4864|0.26389 4865|0.34722 4866|0.69444 4867|0.013889 4868|0.31944 4869|0.58333 4870|0.61111 4871|0.5 4872|0.5 4873|0.43056 4874|0.52778 4875|0.72222 4876|0.47222 4877|0.48611 4878|0.125 4879|0.48611 4880|0.47222 4881|0.11111 4882|0.61111 4883|0.51389 4884|0.5 4885|0.77778 4886|0.38889 4887|0.36111 4888|0.51389 4889|0.5 4890|0.5 4891|0.69444 4892|0.69444 4893|0.51389 4894|0.30556 4895|0.51389 4896|0.22222 4897|0.51389 4898|0.48611 4899|0.58333 4900|0.29167 4901|0.58333 4902|0.55556 4903|0.5 4904|0.59722 4905|0.5 4906|0.22222 4907|0.5 4908|0.5 4909|0.5 4910|0.52778 4911|0.48611 4912|0.18056 4913|0.11111 4914|0.5 4915|0.5 4916|0.5 4917|0.5 4918|0.625 4919|0.47222 4920|0.55556 4921|0.34722 4922|0.5 4923|0.61111 4924|0.43056 4925|0.23611 4926|0.25 4927|0.76389 4928|0.5 4929|0.27778 4930|0.33333 4931|0.47222 4932|0.51389 4933|0.5 4934|0.55556 4935|0.5 4936|0.55556 4937|0.5 4938|0.47222 4939|0.55556 4940|0.5 4941|0.48611 4942|0.5 4943|0.5 4944|0.22222 4945|0.61111 4946|0.5 4947|0.51389 4948|0.44444 4949|0.33333 4950|0.36111 4951|0.083333 4952|0.54167 4953|0.47222 4954|0.73611 4955|0.72222 4956|0.88889 4957|0.875 4958|0.88889 4959|0.5 4960|0.5 4961|0.55556 4962|0.5 4963|0.5 4964|0.54167 4965|0.16667 4966|0.25 4967|0.33333 4968|0.5 4969|0.43056 4970|0.5 4971|0.40278 4972|0.43056 4973|0.5 4974|0.5 4975|0.43056 4976|0.44444 4977|0.48611 4978|0.47222 4979|0.31944 4980|0.52778 4981|0.59722 4982|0.625 4983|0.125 4984|0.19444 4985|0.40278 4986|0.54167 4987|0.80556 4988|0.23611 4989|0.25 4990|0.5 4991|0.52778 4992|0.58333 4993|0.47222 4994|0.5 4995|0.25 4996|0.45833 4997|0.5 4998|0.55556 4999|0.72222 5000|0.65278 5001|0.5 5002|0.5 5003|0.61111 5004|0.5 5005|0.51389 5006|0.5 5007|0.5 5008|0.55556 5009|0.55556 5010|0.52778 5011|0.52778 5012|0.51389 5013|0.58333 5014|0.68056 5015|0.5 5016|0.54167 5017|0.52778 5018|0.40278 5019|0.375 5020|0.27778 5021|0.29167 5022|0.40278 5023|0.5 5024|0.27778 5025|0.86111 5026|0.56944 5027|0.29167 5028|0.66667 5029|0.29167 5030|0.68056 5031|0.51389 5032|0.44444 5033|0.66667 5034|0.61111 5035|0.625 5036|0.52778 5037|0.055556 5038|0.069444 5039|0.5 5040|0.45833 5041|0.38889 5042|0.5 5043|0.47222 5044|0.61111 5045|0.80556 5046|0.80556 5047|0.19444 5048|0.72222 5049|0.5 5050|0.5 5051|0.54167 5052|0.69444 5053|0.65278 5054|0.44444 5055|0.58333 5056|0.44444 5057|0.56944 5058|0.069444 5059|0.069444 5060|0.083333 5061|0.94444 5062|0.51389 5063|0.77778 5064|0.65278 5065|0.58333 5066|0.5 5067|0.88889 5068|0.59722 5069|0.66667 5070|0.51389 5071|0.48611 5072|0.34722 5073|0.5 5074|0.5 5075|0.5 5076|0.5 5077|0.5 5078|0.54167 5079|0.45833 5080|0.40278 5081|0.5 5082|0.25 5083|0.72222 5084|0.20833 5085|0.27778 5086|0.25 5087|0.56944 5088|0.34722 5089|0.34722 5090|0.40278 5091|0.375 5092|0.38889 5093|0.36111 5094|0.5 5095|0.40278 5096|0.5 5097|0.45833 5098|0.58333 5099|0.055556 5100|0.41667 5101|0.72222 5102|0.5 5103|0.43056 5104|0.26389 5105|0.45833 5106|0.52778 5107|0.59722 5108|0.55556 5109|0.51389 5110|0.63889 5111|0.5 5112|0.5 5113|0.54167 5114|0.51389 5115|0.84722 5116|0.79167 5117|0.55556 5118|0.55556 5119|0.55556 5120|0.47222 5121|0.31944 5122|0.51389 5123|0.58333 5124|0.77778 5125|0.76389 5126|0.875 5127|0.97222 5128|0.63889 5129|0.77778 5130|0.83333 5131|0.47222 5132|0.5 5133|0.45833 5134|0.19444 5135|0.47222 5136|0.52778 5137|0.5 5138|0.31944 5139|0.40278 5140|0.5 5141|0.55556 5142|0.27778 5143|0.29167 5144|0.56944 5145|0.44444 5146|0.27778 5147|0.22222 5148|0.45833 5149|0.31944 5150|0.58333 5151|0.52778 5152|0.38889 5153|0.63889 5154|0.52778 5155|0.34722 5156|0.23611 5157|0.63889 5158|0.73611 5159|0.5 5160|0.41667 5161|0.38889 5162|0.5 5163|0.45833 5164|0.55556 5165|0.56944 5166|0.27778 5167|0.625 5168|0.59722 5169|0.22222 5170|0.5 5171|0.41667 5172|0.45833 5173|0.51389 5174|0.55556 5175|0.51389 5176|0.31944 5177|0.45833 5178|0.45833 5179|0.20833 5180|0.51389 5181|0.375 5182|0.43056 5183|0.79167 5184|0.77778 5185|0.80556 5186|0.88889 5187|0.93056 5188|0.79167 5189|0.80556 5190|0.65278 5191|0.58333 5192|0.5 5193|0.29167 5194|0.27778 5195|0.22222 5196|0.5 5197|0.22222 5198|0.52778 5199|0.54167 5200|0.375 5201|0.43056 5202|0.45833 5203|0.5 5204|0.5 5205|0.36111 5206|0.34722 5207|0.19444 5208|0.5 5209|0.5 5210|0.5 5211|0.51389 5212|0.55556 5213|0.16667 5214|0.56944 5215|0.56944 5216|0.5 5217|0.5 5218|0.44444 5219|0.25 5220|0.18056 5221|0.30556 5222|0.23611 5223|0.16667 5224|0.13889 5225|0.19444 5226|0.18056 5227|0.45833 5228|0.5 5229|0.51389 5230|0.43056 5231|0.22222 5232|0.16667 5233|0.27778 5234|0.16667 5235|0.72222 5236|0.61111 5237|0.63889 5238|0.77778 5239|0.83333 5240|0.875 5241|0.86111 5242|0.94444 5243|0.5 5244|0.5 5245|0.56944 5246|0.61111 5247|0.5 5248|0.58333 5249|0.61111 5250|0.88889 5251|0.43056 5252|0.30556 5253|0.51389 5254|0.44444 5255|0.22222 5256|0.54167 5257|0.54167 5258|0.63889 5259|0.5 5260|0.70833 5261|0.5 5262|0.5 5263|0.5 5264|0.5 5265|0.22222 5266|0.38889 5267|0.23611 5268|0.47222 5269|0.34722 5270|0.36111 5271|0.66667 5272|0.69444 5273|0.77778 5274|0.69444 5275|0.55556 5276|0.875 5277|0.41667 5278|0.66667 5279|0.81944 5280|0.61111 5281|0.68056 5282|0.63889 5283|0.5 5284|0.5 5285|0.75 5286|0.77778 5287|0.41667 5288|0.65278 5289|0.63889 5290|0.84722 5291|0.5 5292|0.5 5293|0.45833 5294|0.47222 5295|0.44444 5296|0.52778 5297|0.58333 5298|0.59722 5299|0.55556 5300|0.5 5301|0.61111 5302|0.51389 5303|0.55556 5304|0.63889 5305|0.51389 5306|0.55556 5307|0.5 5308|0.66667 5309|0.55556 5310|0.45833 5311|0.5 5312|0.5 5313|0.31944 5314|0.5 5315|0.66667 5316|0.65278 5317|0.66667 5318|0.51389 5319|0.40278 5320|0.52778 5321|0.54167 5322|0.55556 5323|0.52778 5324|0.54167 5325|0.91667 5326|0.72222 5327|0.5 5328|0.36111 5329|0.33333 5330|0.51389 5331|0.5 5332|0.5 5333|0.47222 5334|0.5 5335|0.33333 5336|0.26389 5337|0.88889 5338|0.5 5339|0.61111 5340|0.5 5341|0.5 5342|0.80556 5343|0.44444 5344|0.5 5345|0.5 5346|0.20833 5347|0.47222 5348|0.625 5349|0.5 5350|0.51389 5351|0.5 5352|0.54167 5353|0.65278 5354|0.51389 5355|0.66667 5356|0.81944 5357|0.51389 5358|0.5 5359|0.55556 5360|0.5 5361|0.77778 5362|0.29167 5363|0.47222 5364|0.51389 5365|0.5 5366|0.5 5367|0.5 5368|0.5 5369|0.5 5370|0.5 5371|0.55556 5372|0.5 5373|0.44444 5374|0.29167 5375|0.52778 5376|0.36111 5377|0.47222 5378|0.5 5379|0.55556 5380|0.5 5381|0.5 5382|0.29167 5383|0.5 5384|0.63889 5385|0.5 5386|0.5 5387|0.48611 5388|0.58333 5389|0.65278 5390|0.375 5391|0.43056 5392|0.43056 5393|0.5 5394|0.47222 5395|0.70833 5396|0.77778 5397|0.52778 5398|0.25 5399|0.33333 5400|0.40278 5401|0.5 5402|0.5 5403|0.45833 5404|0.52778 5405|0.33333 5406|0.34722 5407|0.19444 5408|0.63889 5409|0.5 5410|0.5 5411|0.5 5412|0.27778 5413|0.40278 5414|0.84722 5415|0.55556 5416|0.47222 5417|0.52778 5418|0.45833 5419|0.47222 5420|0.52778 5421|0.5 5422|0.20833 5423|0.75 5424|0.69444 5425|0.80556 5426|0.58333 5427|0.58333 5428|0.5 5429|0.34722 5430|0.47222 5431|0.5 5432|0.875 5433|0.52778 5434|0.44444 5435|0.5 5436|0.83333 5437|0.66667 5438|0.63889 5439|0.5 5440|0.55556 5441|0.69444 5442|0.61111 5443|0.56944 5444|0.66667 5445|0.5 5446|0.25 5447|0.52778 5448|0.20833 5449|0.61111 5450|0.625 5451|0.5 5452|0.30556 5453|0.5 5454|0.31944 5455|0.45833 5456|0.5 5457|0.5 5458|0.5 5459|0.41667 5460|0.29167 5461|0.5 5462|0.54167 5463|0.5 5464|0.63889 5465|0.30556 5466|0.51389 5467|0.52778 5468|0.69444 5469|0.52778 5470|0.875 5471|0.51389 5472|0.25 5473|0.73611 5474|0.5 5475|0.5 5476|0.76389 5477|0.5 5478|0.72222 5479|0.76389 5480|0.5 5481|0.44444 5482|0.48611 5483|0.54167 5484|0.56944 5485|0.59722 5486|0.65278 5487|0.52778 5488|0.59722 5489|0.72222 5490|0.69444 5491|0.75 5492|0.80556 5493|0.5 5494|0.5 5495|0.36111 5496|0.52778 5497|0.5 5498|0.5 5499|0.56944 5500|0.5 5501|0.5 5502|0.5 5503|0.69444 5504|0.33333 5505|0.36111 5506|0.25 5507|0.73611 5508|0.51389 5509|0.54167 5510|0.625 5511|0.5 5512|0.68056 5513|0.70833 5514|0.77778 5515|0.52778 5516|0.51389 5517|0.5 5518|0.18056 5519|0.5 5520|0.48611 5521|0.47222 5522|0.5 5523|0.44444 5524|0.25 5525|0.27778 5526|0.30556 5527|0.33333 5528|0.18056 5529|0.52778 5530|0.5 5531|0.5 5532|0.11111 5533|0.25 5534|0.55556 5535|0.55556 5536|0.52778 5537|0.5 5538|0.5 5539|0.51389 5540|0.61111 5541|0.48611 5542|0.54167 5543|0.5 5544|0.47222 5545|0.76389 5546|0.33333 5547|0.5 5548|0.5 5549|0.5 5550|0.5 5551|0.44444 5552|0.18056 5553|0.5 5554|0.59722 5555|0.65278 5556|0.44444 5557|0.54167 5558|0.5 5559|0.59722 5560|0.5 5561|0.5 5562|0.51389 5563|0.51389 5564|0.5 5565|0.5 5566|0.33333 5567|0.26389 5568|0.47222 5569|0.44444 5570|0.5 5571|0.23611 5572|0.27778 5573|0.5 5574|0.5 5575|0.5 5576|0.69444 5577|0.52778 5578|0.5 5579|0.76389 5580|0.875 5581|0.23611 5582|0.68056 5583|0.54167 5584|0.68056 5585|0.73611 5586|0.70833 5587|0.88889 5588|0.61111 5589|0.72222 5590|0.77778 5591|0.79167 5592|0.31944 5593|0.34722 5594|0.40278 5595|0.36111 5596|0.33333 5597|0.16667 5598|0.34722 5599|0.625 5600|0.43056 5601|0.27778 5602|0.31944 5603|0.20833 5604|0.23611 5605|0.5 5606|0.44444 5607|0.19444 5608|0.5 5609|0.48611 5610|0.33333 5611|0.22222 5612|0.29167 5613|0.16667 5614|0.51389 5615|0.48611 5616|0.45833 5617|0.26389 5618|0.47222 5619|0.54167 5620|0.61111 5621|0.5 5622|0.20833 5623|0.25 5624|0.41667 5625|0.29167 5626|0.125 5627|0.47222 5628|0.18056 5629|0.44444 5630|0.33333 5631|0.5 5632|0.23611 5633|0.88889 5634|0.5 5635|0.5 5636|0.44444 5637|0.5 5638|0.44444 5639|0.48611 5640|0.5 5641|0.51389 5642|0.44444 5643|0.70833 5644|0.72222 5645|0.75 5646|0.29167 5647|0.61111 5648|0.52778 5649|0.33333 5650|0.19444 5651|0.29167 5652|0.83333 5653|0.52778 5654|0.18056 5655|0.16667 5656|0.48611 5657|0.73611 5658|0.73611 5659|0.55556 5660|0.76389 5661|0.5 5662|0.5 5663|0.55556 5664|0.5 5665|0.5 5666|0.61111 5667|0.5 5668|0.63889 5669|0.72222 5670|0.5 5671|0.83333 5672|0.65278 5673|0.91667 5674|0.83333 5675|0.72222 5676|0.77778 5677|0.90278 5678|0.72222 5679|0.68056 5680|0.38889 5681|0.58333 5682|0.54167 5683|0.5 5684|0.51389 5685|0.33333 5686|0.5 5687|0.5 5688|0.55556 5689|0.45833 5690|0.5 5691|0.5 5692|0.5 5693|0.41667 5694|0.79167 5695|0.81944 5696|0.65278 5697|0.30556 5698|0.47222 5699|0.58333 5700|0.47222 5701|0.5 5702|0.52778 5703|0.055556 5704|0.55556 5705|0.5 5706|0.5 5707|0.44444 5708|0.47222 5709|0.5 5710|0.66667 5711|0.625 5712|0.51389 5713|0.81944 5714|0.41667 5715|0.52778 5716|0.84722 5717|0.65278 5718|0.86111 5719|0.54167 5720|0.41667 5721|0.55556 5722|0.61111 5723|0.72222 5724|0.44444 5725|0.625 5726|0.70833 5727|0.72222 5728|0.44444 5729|0.5 5730|0.43056 5731|0.48611 5732|0.43056 5733|0.30556 5734|0.25 5735|0.44444 5736|0.52778 5737|0.52778 5738|0.33333 5739|0.5 5740|0.5 5741|0.54167 5742|0.59722 5743|0.625 5744|0.43056 5745|0.38889 5746|0.44444 5747|0.61111 5748|0.51389 5749|0.63889 5750|0.16667 5751|0.76389 5752|0.68056 5753|0.69444 5754|0.5 5755|0.61111 5756|0.58333 5757|0.54167 5758|0.86111 5759|0.5 5760|0.45833 5761|0.041667 5762|0.34722 5763|0.5 5764|0.66667 5765|0.55556 5766|0.38889 5767|0.375 5768|0.27778 5769|0.375 5770|0.13889 5771|0.15278 5772|0.61111 5773|0.52778 5774|0.55556 5775|0.5 5776|0.72222 5777|0.5 5778|0.5 5779|0.5 5780|0.45833 5781|0.5 5782|0.58333 5783|0.51389 5784|0.44444 5785|0.66667 5786|0.47222 5787|0.36111 5788|0.83333 5789|0.56944 5790|0.33333 5791|0.48611 5792|0.33333 5793|0.54167 5794|0.61111 5795|0.95833 5796|0.55556 5797|0.58333 5798|0.56944 5799|0.56944 5800|0.375 5801|0.34722 5802|0.5 5803|0.45833 5804|0.59722 5805|0.45833 5806|0.44444 5807|0.38889 5808|0.55556 5809|0.5 5810|0.25 5811|0.44444 5812|0.041667 5813|0.11111 5814|0.61111 5815|0.47222 5816|0.58333 5817|0.55556 5818|0.55556 5819|0.52778 5820|0.5 5821|0.5 5822|0.55556 5823|0.55556 5824|0.41667 5825|0.47222 5826|0.5 5827|0.52778 5828|0.5 5829|0.34722 5830|0.52778 5831|0.5 5832|0.55556 5833|0.59722 5834|0.63889 5835|0.54167 5836|0.59722 5837|0.81944 5838|0.44444 5839|0.44444 5840|0.5 5841|0.56944 5842|0.5 5843|0.79167 5844|0.70833 5845|0.66667 5846|0.61111 5847|0.75 5848|0.5 5849|0.77778 5850|0.66667 5851|0.56944 5852|0.34722 5853|0.31944 5854|0.5 5855|0.5 5856|0.55556 5857|0.15278 5858|0.51389 5859|0.45833 5860|0.27778 5861|0.15278 5862|0.45833 5863|0.47222 5864|0.55556 5865|0.55556 5866|0.26389 5867|0.47222 5868|0.5 5869|0.66667 5870|0.55556 5871|0.59722 5872|0.43056 5873|0.72222 5874|0.66667 5875|0.61111 5876|0.5 5877|0.5 5878|0.54167 5879|0.90278 5880|0.55556 5881|0.5 5882|0.86111 5883|0.84722 5884|0.77778 5885|0.52778 5886|0.72222 5887|0.45833 5888|0.40278 5889|0.48611 5890|0.41667 5891|0.58333 5892|0.33333 5893|0.52778 5894|0.41667 5895|0.38889 5896|0.59722 5897|0.5 5898|0.5 5899|0.61111 5900|0.55556 5901|0.15278 5902|0.54167 5903|0.61111 5904|0.41667 5905|0.083333 5906|0.5 5907|0.18056 5908|0.22222 5909|0.18056 5910|0.5 5911|0.15278 5912|0.5 5913|0.5 5914|0.51389 5915|0.31944 5916|0.55556 5917|0.83333 5918|0.5 5919|0.61111 5920|0.65278 5921|0.55556 5922|0.47222 5923|0.18056 5924|0.22222 5925|0.31944 5926|0.38889 5927|0.58333 5928|0.52778 5929|0.30556 5930|0.63889 5931|0.52778 5932|0.65278 5933|0.5 5934|0.52778 5935|0.51389 5936|0.55556 5937|0.55556 5938|0.31944 5939|0.11111 5940|0.36111 5941|0.33333 5942|0.45833 5943|0.26389 5944|0.54167 5945|0.5 5946|0.5 5947|0.44444 5948|0.41667 5949|0.5 5950|0.23611 5951|0.47222 5952|0.27778 5953|0.55556 5954|0.45833 5955|0.43056 5956|0.5 5957|0.27778 5958|0.16667 5959|0.16667 5960|0.51389 5961|0.59722 5962|0.375 5963|0.38889 5964|0.23611 5965|0.55556 5966|0.58333 5967|0.52778 5968|0.5 5969|0.5 5970|0.875 5971|0.5 5972|0.5 5973|0.80556 5974|0.94444 5975|0.5 5976|0.5 5977|0.15278 5978|0.18056 5979|0.083333 5980|0.34722 5981|0.38889 5982|0.5 5983|0.45833 5984|0.22222 5985|0.5 5986|0.44444 5987|0.34722 5988|0.38889 5989|0.5 5990|0.5 5991|0.33333 5992|0.40278 5993|0.027778 5994|0.29167 5995|0.34722 5996|0.27778 5997|0.26389 5998|0.27778 5999|0.43056 6000|0.41667 6001|0.375 6002|0.33333 6003|0.22222 6004|0.38889 6005|0 6006|0.20833 6007|0.055556 6008|0.51389 6009|0.41667 6010|0.45833 6011|0.25 6012|0.41667 6013|0.52778 6014|0.41667 6015|0.33333 6016|0.63889 6017|0.45833 6018|0.5 6019|0.15278 6020|0.5 6021|0.625 6022|0.5 6023|0.5 6024|0.54167 6025|0.5 6026|0.66667 6027|0.31944 6028|0.40278 6029|0.40278 6030|0.055556 6031|0.22222 6032|0.31944 6033|0.30556 6034|0.19444 6035|0.26389 6036|0.69444 6037|0.33333 6038|0.44444 6039|0.30556 6040|0.20833 6041|0.15278 6042|0.16667 6043|0.23611 6044|0.36111 6045|0.375 6046|0.055556 6047|0.51389 6048|0.86111 6049|0.41667 6050|0.23611 6051|0.41667 6052|0.70833 6053|0.72222 6054|0.5 6055|0.5 6056|0.63889 6057|0.5 6058|0.47222 6059|0.48611 6060|0.36111 6061|0.29167 6062|0.27778 6063|0.41667 6064|0.45833 6065|0.25 6066|0.29167 6067|0.40278 6068|0.26389 6069|0.31944 6070|0.40278 6071|0.34722 6072|0.25 6073|0.33333 6074|0.36111 6075|0.72222 6076|0.61111 6077|0.19444 6078|0.027778 6079|0.27778 6080|0.68056 6081|0.5 6082|0.5 6083|0.55556 6084|0.44444 6085|0.29167 6086|0.40278 6087|0.30556 6088|0.44444 6089|0.27778 6090|0.38889 6091|0.40278 6092|0.43056 6093|0.18056 6094|0.013889 6095|0.51389 6096|0.5 6097|0.31944 6098|0.5 6099|0.27778 6100|0.5 6101|0.5 6102|0.013889 6103|0.5 6104|0.16667 6105|0.31944 6106|0.48611 6107|0.5 6108|0.5 6109|0.61111 6110|0.58333 6111|0.66667 6112|0.5 6113|0.5 6114|0.51389 6115|0.59722 6116|0.29167 6117|0.26389 6118|0.36111 6119|0.29167 6120|0.375 6121|0.55556 6122|0.5 6123|0.65278 6124|0.65278 6125|0.59722 6126|0.65278 6127|0.77778 6128|0.66667 6129|0.36111 6130|0.65278 6131|0.58333 6132|0.5 6133|0.45833 6134|0.36111 6135|0.375 6136|0.5 6137|0.69444 6138|0.58333 6139|0.52778 6140|0.48611 6141|0.48611 6142|0.5 6143|0.61111 6144|0.625 6145|0.59722 6146|0.73611 6147|0.68056 6148|0.5 6149|0.44444 6150|0.5 6151|0.63889 6152|0.55556 6153|0.5 6154|0.47222 6155|0.33333 6156|0.38889 6157|0.5 6158|0.54167 6159|0.83333 6160|0.75 6161|0.80556 6162|0.77778 6163|0.55556 6164|0.5 6165|0.5 6166|0.68056 6167|0.77778 6168|0.80556 6169|0.34722 6170|0.43056 6171|0.63889 6172|0.33333 6173|0.54167 6174|0.54167 6175|0.31944 6176|0.72222 6177|0.80556 6178|0.55556 6179|0.59722 6180|0.52778 6181|0.66667 6182|0.79167 6183|0.77778 6184|0.5 6185|0.125 6186|0.55556 6187|0.55556 6188|0.25 6189|0.61111 6190|0.52778 6191|0.58333 6192|0.65278 6193|0.55556 6194|0.51389 6195|0.52778 6196|0.5 6197|0.79167 6198|0.58333 6199|0.5 6200|0.5 6201|0.72222 6202|0.56944 6203|0.5 6204|0.33333 6205|0.38889 6206|0.69444 6207|0.79167 6208|0.81944 6209|0.55556 6210|0.625 6211|0.40278 6212|0.59722 6213|0.59722 6214|0.5 6215|0.29167 6216|0.375 6217|0.52778 6218|0.69444 6219|0.63889 6220|0.76389 6221|0.51389 6222|0.81944 6223|0.76389 6224|0.90278 6225|0.70833 6226|0.84722 6227|0.59722 6228|0.65278 6229|0.5 6230|0.31944 6231|0.59722 6232|0.54167 6233|0.5 6234|0.83333 6235|0.61111 6236|0.5 6237|0.55556 6238|0.55556 6239|0.79167 6240|0.52778 6241|0.51389 6242|0.5 6243|0.5 6244|0.19444 6245|0.26389 6246|0.5 6247|0.5 6248|0.47222 6249|0.58333 6250|0.77778 6251|0.77778 6252|0.81944 6253|0.5 6254|0.5 6255|0.58333 6256|0.5 6257|0.625 6258|0.5 6259|0.44444 6260|0.58333 6261|0.55556 6262|0.54167 6263|0.625 6264|0.5 6265|0.56944 6266|0.65278 6267|0.52778 6268|0.34722 6269|0.625 6270|0.34722 6271|0.51389 6272|0.55556 6273|0.5 6274|0.59722 6275|0.44444 6276|0.34722 6277|0.36111 6278|0.5 6279|0.47222 6280|0.63889 6281|0.61111 6282|0.61111 6283|0.52778 6284|0.47222 6285|0.52778 6286|0.40278 6287|0.77778 6288|0.77778 6289|0.63889 6290|0.5 6291|0.55556 6292|0.41667 6293|0.5 6294|0.30556 6295|0.5 6296|0.22222 6297|0.47222 6298|0.44444 6299|0.54167 6300|0.54167 6301|0.55556 6302|0.5 6303|0.63889 6304|0.75 6305|0.5 6306|0.44444 6307|0.58333 6308|0.58333 6309|0.40278 6310|0.52778 6311|0.5 6312|0.36111 6313|0.16667 6314|0.91667 6315|0.44444 6316|0.68056 6317|0.48611 6318|0.86111 6319|0.84722 6320|0.86111 6321|0.875 6322|0.70833 6323|0.55556 6324|0.51389 6325|0.48611 6326|0.5 6327|0.5 6328|0.44444 6329|0.54167 6330|0.58333 6331|0.5 6332|0.69444 6333|0.33333 6334|0.5 6335|0.83333 6336|0.5 6337|0.5 6338|0.26389 6339|0.54167 6340|0.27778 6341|0.16667 6342|0.5 6343|0.55556 6344|0.15278 6345|0.5 6346|0.45833 6347|0.54167 6348|0.51389 6349|0.5 6350|0.54167 6351|0.52778 6352|0.68056 6353|0.5 6354|0.5 6355|0.5 6356|0.43056 6357|0.44444 6358|0.61111 6359|0.70833 6360|0.69444 6361|0.76389 6362|0.66667 6363|0.72222 6364|0.84722 6365|0.5 6366|0.88889 6367|0.5 6368|0.38889 6369|0.59722 6370|0.68056 6371|0.59722 6372|0.375 6373|0.33333 6374|0.5 6375|0.55556 6376|0.5 6377|0.5 6378|0.30556 6379|0.22222 6380|0.5 6381|0.55556 6382|0.18056 6383|0.31944 6384|0.61111 6385|0.55556 6386|0.5 6387|0.55556 6388|0.23611 6389|0.375 6390|0.69444 6391|0.27778 6392|0.25 6393|0.22222 6394|0.25 6395|0.5 6396|0.55556 6397|0.5 6398|0.5 6399|0.59722 6400|0.63889 6401|0.47222 6402|0.56944 6403|0.76389 6404|0.66667 6405|0.70833 6406|0.055556 6407|0.31944 6408|0.90278 6409|0.73611 6410|0.31944 6411|0.34722 6412|0.375 6413|0.31944 6414|0.43056 6415|0.51389 6416|0.55556 6417|0.34722 6418|0.5 6419|0.45833 6420|0.31944 6421|0.47222 6422|0.5 6423|0.72222 6424|0.56944 6425|0.55556 6426|0.66667 6427|0.5 6428|0.40278 6429|0.34722 6430|0.43056 6431|0.33333 6432|0.59722 6433|0.33333 6434|0.54167 6435|0.68056 6436|0.63889 6437|0.63889 6438|0.5 6439|0.61111 6440|0.68056 6441|0.86111 6442|0.63889 6443|0.65278 6444|0.66667 6445|0.63889 6446|0.36111 6447|0.34722 6448|0.56944 6449|0.22222 6450|0.61111 6451|0.26389 6452|0.5 6453|0.375 6454|0.30556 6455|0.27778 6456|0.25 6457|0.13889 6458|0.125 6459|0.25 6460|0.31944 6461|0.22222 6462|0.88889 6463|0.45833 6464|0.43056 6465|0.5 6466|0.5 6467|0.38889 6468|0.44444 6469|0.38889 6470|0.47222 6471|0.61111 6472|0.56944 6473|0.51389 6474|0.5 6475|0.5 6476|0.36111 6477|0.5 6478|0.5 6479|0.38889 6480|0.38889 6481|0.63889 6482|0.5 6483|0.5 6484|0.54167 6485|0.52778 6486|0.5 6487|0.5 6488|0.5 6489|0.72222 6490|0.61111 6491|0.91667 6492|0.81944 6493|0.66667 6494|0.5 6495|0.5 6496|0.59722 6497|0.63889 6498|0.5 6499|0.13889 6500|0.51389 6501|0.73611 6502|0.76389 6503|0.73611 6504|0.65278 6505|0.81944 6506|0.83333 6507|0.69444 6508|0.45833 6509|0.81944 6510|0.72222 6511|0.55556 6512|0.38889 6513|0.5 6514|0.51389 6515|0.55556 6516|0.66667 6517|0.875 6518|0.83333 6519|0.5 6520|0.47222 6521|0.65278 6522|0.75 6523|0.77778 6524|0.61111 6525|0.54167 6526|0.5 6527|0.5 6528|0.5 6529|0.33333 6530|0.16667 6531|0.72222 6532|0.22222 6533|0.375 6534|0.125 6535|0.19444 6536|0.27778 6537|0.68056 6538|0.5 6539|0.18056 6540|0.48611 6541|0.29167 6542|0.5 6543|0.5 6544|0.52778 6545|0.43056 6546|0.54167 6547|0.52778 6548|0.5 6549|0.18056 6550|0.75 6551|0.54167 6552|0.48611 6553|0.33333 6554|0.55556 6555|0.625 6556|0.36111 6557|0.48611 6558|0.5 6559|0.5 6560|0.5 6561|0.76389 6562|0.5 6563|0.5 6564|0.20833 6565|0.45833 6566|0.5 6567|0.5 6568|0.51389 6569|0.47222 6570|0.45833 6571|0.47222 6572|0.23611 6573|0.19444 6574|0.58333 6575|0.63889 6576|0.56944 6577|0.29167 6578|0.22222 6579|0.41667 6580|0.27778 6581|0.34722 6582|0.13889 6583|0.083333 6584|0.5 6585|0.34722 6586|0.52778 6587|0.625 6588|0.58333 6589|0.66667 6590|0.51389 6591|0.66667 6592|0.47222 6593|0.65278 6594|0.5 6595|0.38889 6596|0.38889 6597|0.54167 6598|0.86111 6599|0.77778 6600|0.52778 6601|0.70833 6602|0.5 6603|0.5 6604|0.34722 6605|0.52778 6606|0.51389 6607|0.36111 6608|0.5 6609|0.61111 6610|0.5 6611|0.44444 6612|0.59028 6613|0.5 6614|0.56944 6615|0.5 6616|0.55556 6617|0.069444 6618|0.5 6619|0.26389 6620|0.5 6621|0.40278 6622|0.44444 6623|0.52778 6624|0.51389 6625|0.55556 6626|0.5 6627|0.68056 6628|0.91667 6629|0.44444 6630|0.45833 6631|0.25 6632|0.52778 6633|0.44444 6634|0.40278 6635|0.5 6636|0.5 6637|0.18056 6638|0.55556 6639|0.79167 6640|0.5 6641|0.55556 6642|0.5 6643|0.51389 6644|0.27778 6645|0.5 6646|0.44444 6647|0.58333 6648|0.26389 6649|0.51389 6650|0.44444 6651|0.86111 6652|0.47222 6653|0.52778 6654|0.72222 6655|0.33333 6656|0.5 6657|0.61111 6658|0.73611 6659|0.70833 6660|0.5 6661|0.5 6662|0.43056 6663|0.5 6664|0.76389 6665|0.83333 6666|0.91667 6667|0.73611 6668|0.80556 6669|0.70833 6670|0.66667 6671|0.54167 6672|0.5 6673|0.72222 6674|0.68056 6675|0.5 6676|0.48611 6677|0.38889 6678|0.30556 6679|0.5 6680|0.375 6681|0.72222 6682|0.41667 6683|0.79167 6684|0.5 6685|0.59722 6686|0.5 6687|0.61111 6688|0.79167 6689|0.59722 6690|0.61111 6691|0.55556 6692|0.65278 6693|0.65278 6694|0.36111 6695|0.38889 6696|0.54167 6697|0.48611 6698|0.34722 6699|0.5 6700|0.5 6701|0.5 6702|0.51389 6703|0.45833 6704|0.5 6705|0.48611 6706|0.47222 6707|0.5 6708|0.65278 6709|0.20833 6710|0.5 6711|0.18056 6712|0.70833 6713|0.5 6714|0.5 6715|0.625 6716|0.72222 6717|0.83333 6718|0.76389 6719|0.84722 6720|0.73611 6721|0.5 6722|0.5 6723|0.5 6724|0.47222 6725|0.27778 6726|0.38889 6727|0.55556 6728|0.55556 6729|0.5 6730|0.38889 6731|0.36111 6732|0.375 6733|0.31944 6734|0.48611 6735|0.55556 6736|0.055556 6737|0.44444 6738|0.5 6739|0.5 6740|0.44444 6741|0.44444 6742|0.5 6743|0.26389 6744|0.25 6745|0.055556 6746|0.63889 6747|0.63889 6748|0.75 6749|0.75 6750|0.72222 6751|0.625 6752|0.72222 6753|0.69444 6754|0.5 6755|0.5 6756|0.52778 6757|0.43056 6758|0.63889 6759|0.5 6760|0.40278 6761|0.40278 6762|0.83333 6763|0.63889 6764|0.44444 6765|0.625 6766|0.59722 6767|0.41667 6768|0.5 6769|0.5 6770|0.45833 6771|0.59722 6772|0.55556 6773|0.59722 6774|0.52778 6775|0.63889 6776|0.625 6777|0.51389 6778|0.43056 6779|0.47222 6780|0.33333 6781|0.5 6782|0.55556 6783|0.5 6784|0.5 6785|0.5 6786|0.68056 6787|0.51389 6788|0.72222 6789|0.51389 6790|0.36111 6791|0.54167 6792|0.70833 6793|0.5 6794|0.44444 6795|0.875 6796|0.375 6797|0.59722 6798|0.72222 6799|0.59722 6800|0.79167 6801|0.79167 6802|0.72222 6803|0.083333 6804|0.59722 6805|0.5 6806|0.11111 6807|0.13889 6808|0.79167 6809|0.52778 6810|0.70833 6811|0.375 6812|0.31944 6813|0.26389 6814|0.61111 6815|0.72222 6816|0.5 6817|0.47222 6818|0.38889 6819|0.68056 6820|0.52778 6821|0.33333 6822|0.19444 6823|0.51389 6824|0.80556 6825|0.63889 6826|0.5 6827|0.70833 6828|0.76389 6829|0.51389 6830|0.625 6831|0.70833 6832|0.55556 6833|0.79167 6834|0.84722 6835|0.91667 6836|0.84722 6837|0.36111 6838|0.83333 6839|0.65278 6840|0.63889 6841|0.77778 6842|0.77778 6843|0.84722 6844|0.80556 6845|0.69444 6846|0.5 6847|0.59722 6848|0.76389 6849|0.33333 6850|0.79167 6851|0.54167 6852|0.5 6853|0.43056 6854|0.44444 6855|0.44444 6856|0.51389 6857|0.47222 6858|0.48611 6859|0.45833 6860|0.55556 6861|0.58333 6862|0.20833 6863|0.44444 6864|0.5 6865|0.79167 6866|0.55556 6867|0.31944 6868|0.77778 6869|0.56944 6870|0.88889 6871|0.63889 6872|0.51389 6873|0.5 6874|0.88889 6875|0.90278 6876|0.66667 6877|0.875 6878|0.80556 6879|0.88889 6880|0.79167 6881|0.5 6882|0.55556 6883|0.5 6884|0.25 6885|0.27778 6886|0.36111 6887|0.5 6888|0.23611 6889|0.625 6890|0.72222 6891|0.66667 6892|0.5 6893|0.58333 6894|0.61111 6895|0.55556 6896|0.34722 6897|0.52778 6898|0.55556 6899|0.40278 6900|0.33333 6901|0.41667 6902|0.72222 6903|0.40278 6904|0.44444 6905|0.45833 6906|0.58333 6907|0.54167 6908|0.5 6909|0.61111 6910|0.5 6911|0.23611 6912|0.26389 6913|0.31944 6914|0.36111 6915|0.5 6916|0.48611 6917|0.45833 6918|0.5 6919|0.31944 6920|0.5 6921|0.34722 6922|0.5 6923|0.5 6924|0.33333 6925|0.51389 6926|0.5 6927|0.55556 6928|0.48611 6929|0.52778 6930|0.44444 6931|0.65278 6932|0.5 6933|0.5 6934|0.51389 6935|0.79167 6936|0.76389 6937|0.86111 6938|0.75 6939|0.84722 6940|0.875 6941|0.59722 6942|0.40278 6943|0.56944 6944|0.47222 6945|0.45833 6946|0.36111 6947|0.15278 6948|0.5 6949|0.23611 6950|0.55556 6951|0.55556 6952|0.51389 6953|0.52778 6954|0.54167 6955|0.61111 6956|0.5 6957|0.44444 6958|0.75 6959|0.22222 6960|0.30556 6961|0.54167 6962|0.36111 6963|0.40278 6964|0.30556 6965|0.54167 6966|0.5 6967|0.51389 6968|0.59722 6969|0.5 6970|0.5 6971|0.30556 6972|0.5 6973|0.5 6974|0.48611 6975|0.5 6976|0.5 6977|0.55556 6978|0.47222 6979|0.5 6980|0.63889 6981|0.30556 6982|0.34722 6983|0.55556 6984|0.30556 6985|0.77778 6986|0.83333 6987|0.54167 6988|0.43056 6989|0.69444 6990|0.45833 6991|0.375 6992|0.68056 6993|0.65278 6994|0.77778 6995|0.69444 6996|0.43056 6997|0.58333 6998|0.27778 6999|0.76389 7000|0.5 7001|0.79167 7002|0.47222 7003|0.63889 7004|0.56944 7005|0.55556 7006|0.5 7007|0.73611 7008|0.16667 7009|0.55556 7010|0.15278 7011|0.11111 7012|0.25 7013|0.16667 7014|0.29167 7015|0.375 7016|0.44444 7017|0.47222 7018|0.45833 7019|0.72222 7020|0.43056 7021|0.38889 7022|0.45833 7023|0.80556 7024|0.20833 7025|0.40278 7026|0.5 7027|0.20833 7028|0.51389 7029|0.34722 7030|0.20833 7031|0.34722 7032|0.5 7033|0.70833 7034|0.23611 7035|0.36111 7036|0.88889 7037|0.30556 7038|0.51389 7039|0.47222 7040|0.15278 7041|0.31944 7042|0.375 7043|0.48611 7044|0.38889 7045|0.45833 7046|0.66667 7047|0.5 7048|0.61111 7049|0.125 7050|0.38889 7051|0.11111 7052|0.5 7053|0.36111 7054|0.55556 7055|0.30556 7056|0.5 7057|0.44444 7058|0.44444 7059|0.83333 7060|0.72222 7061|0.5 7062|0.5 7063|0.5 7064|0.79167 7065|0.11111 7066|0.5 7067|0.59722 7068|0.77778 7069|0.80556 7070|0.66667 7071|0.625 7072|0.44444 7073|0.51389 7074|0.63889 7075|0.75 7076|0.47222 7077|0.41667 7078|0.55556 7079|0.31944 7080|0.34722 7081|0.34722 7082|0.5 7083|0.11111 7084|0.75 7085|0.40278 7086|0.56944 7087|0.36111 7088|0.83333 7089|0.5 7090|0.5 7091|0.47222 7092|0.55556 7093|0.77778 7094|0.80556 7095|0.63889 7096|0.22222 7097|0.5 7098|0.5 7099|0.54167 7100|0.55556 7101|0.59722 7102|0.69444 7103|0.58333 7104|0.79167 7105|0.72222 7106|0.63889 7107|0.625 7108|0.52778 7109|0.5 7110|0.61111 7111|0.51389 7112|0.63889 7113|0.5 7114|0.55556 7115|0.25 7116|0.31944 7117|0.31944 7118|0.69444 7119|0.5 7120|0.5 7121|0.5 7122|0.52778 7123|0.52778 7124|0.5 7125|0.55556 7126|0.5 7127|0.38889 7128|0.13889 7129|0.33333 7130|0.19444 7131|0.20833 7132|0.48611 7133|0.19444 7134|0.70833 7135|0.72222 7136|0.65278 7137|0.59722 7138|0.56944 7139|0.93056 7140|0.79167 7141|0.90278 7142|0.93056 7143|0.5 7144|0.94444 7145|0.52778 7146|0.5 7147|0.375 7148|0.69444 7149|0.69444 7150|0.56944 7151|0.76389 7152|0.625 7153|0.59722 7154|0.63889 7155|0.52778 7156|0.52778 7157|0.5 7158|0.5 7159|0.69444 7160|0.48611 7161|0.5 7162|0.48611 7163|0.5 7164|0.5 7165|0.51389 7166|0.61111 7167|0.5 7168|0.5 7169|0.5 7170|0.44444 7171|0.51389 7172|0.5 7173|0.76389 7174|0.59722 7175|0.54167 7176|0.43056 7177|0.40278 7178|0.61111 7179|0.18056 7180|0.55556 7181|0.47222 7182|0.22222 7183|0.13889 7184|0.25 7185|0.40278 7186|0.45833 7187|0.44444 7188|0.51389 7189|0.52778 7190|0.40278 7191|0.375 7192|0.5 7193|0.59722 7194|0.5 7195|0.5 7196|0.5 7197|0.33333 7198|0.40278 7199|0.30556 7200|0.52778 7201|0.73611 7202|0.5 7203|0.52778 7204|0.18056 7205|0.375 7206|0.55556 7207|0.25 7208|0.68056 7209|0.56944 7210|0.5 7211|0.52778 7212|0.5 7213|0.80556 7214|0.68056 7215|0.875 7216|0.43056 7217|0.5 7218|0.58333 7219|0.36111 7220|0.5 7221|0.5 7222|0.33333 7223|0.5 7224|0.5 7225|0.5 7226|0.5 7227|0.47222 7228|0.29167 7229|0.5 7230|0.13889 7231|0.55556 7232|0.51389 7233|0.51389 7234|0.44444 7235|0.5 7236|0.5 7237|0.5 7238|0.55556 7239|0.52778 7240|0.55556 7241|0.54167 7242|0.54167 7243|0.33333 7244|0.19444 7245|0.5 7246|0.29167 7247|0.68056 7248|0.90278 7249|0.26389 7250|0.5 7251|0.5 7252|0.25 7253|0.26389 7254|0.18056 7255|0.055556 7256|0.38889 7257|0.48611 7258|0.27778 7259|0.29167 7260|0.15278 7261|0.22222 7262|0.083333 7263|0.13889 7264|0.097222 7265|0.16667 7266|0.097222 7267|0.44444 7268|0.45833 7269|0.68056 7270|0.5 7271|0.33333 7272|0.27778 7273|0.29167 7274|0.29167 7275|0.25 7276|0.19444 7277|0.41667 7278|0.61111 7279|0.79167 7280|0.875 7281|0.81944 7282|0.55556 7283|0.55556 7284|0.88889 7285|0.80556 7286|0.73611 7287|0.80556 7288|0.72222 7289|0.5 7290|0.5 7291|0.5 7292|0.51389 7293|0.125 7294|0.52778 7295|0.45833 7296|0.75 7297|0.66667 7298|0.19444 7299|0.15278 7300|0.16667 7301|0.45833 7302|0.13889 7303|0.30556 7304|0.20833 7305|0.27778 7306|0.45833 7307|0.5 7308|0.5 7309|0.63889 7310|0.625 7311|0.70833 7312|0.5 7313|0.43056 7314|0.44444 7315|0.44444 7316|0.38889 7317|0.22222 7318|0.77778 7319|0.72222 7320|0.84722 7321|0.79167 7322|0.81944 7323|0.055556 7324|0.18056 7325|0.19444 7326|0.20833 7327|0.11111 7328|0.5 7329|0.375 7330|0.375 7331|0.48611 7332|0.31944 7333|0.44444 7334|0.5 7335|0.44444 7336|0.61111 7337|0.36111 7338|0.38889 7339|0.56944 7340|0.5 7341|0.70833 7342|0.65278 7343|0.30556 7344|0.34722 7345|0.43056 7346|0.16667 7347|0.27778 7348|0.61111 7349|0.375 7350|0.63889 7351|0.81944 7352|0.84722 7353|0.27778 7354|0.27778 7355|0.41667 7356|0.27778 7357|0.45833 7358|0.66667 7359|0.5 7360|0.26389 7361|0.5 7362|0.5 7363|0.44444 7364|0.23611 7365|0.22222 7366|0.19444 7367|0.22222 7368|0.16667 7369|0.5 7370|0.069444 7371|0.51389 7372|0.5 7373|0.58333 7374|0.11111 7375|0.375 7376|0.72222 7377|0.61111 7378|0.61111 7379|0.94444 7380|0.41667 7381|0.45833 7382|0.33333 7383|0.36111 7384|0.27778 7385|0.66667 7386|0.5 7387|0.56944 7388|0.59722 7389|0.65278 7390|0.40278 7391|0.33333 7392|0.41667 7393|0.86111 7394|0.61111 7395|0.58333 7396|0.84722 7397|0.56944 7398|0.5 7399|0.5 7400|0.5 7401|0.27778 7402|0.27778 7403|0.5 7404|0.5 7405|0.5 7406|0.51389 7407|0.40278 7408|0.56944 7409|0.36111 7410|0.625 7411|0.81944 7412|0.5 7413|0.375 7414|0.41667 7415|0.34722 7416|0.59722 7417|0.47222 7418|0.59722 7419|0.31944 7420|0.5 7421|0.5 7422|0.52778 7423|0.5 7424|0.5 7425|0.83333 7426|0.5 7427|0.30556 7428|0.5 7429|0.52778 7430|0.51389 7431|0.47222 7432|0.47222 7433|0.30556 7434|0.41667 7435|0.19444 7436|0.22222 7437|0.54167 7438|0.79167 7439|0.83333 7440|0.52778 7441|0.48611 7442|0.11111 7443|0.52778 7444|0.52778 7445|0.55556 7446|0.68056 7447|0.59722 7448|0.125 7449|0.75 7450|0.54167 7451|0.41667 7452|0.40278 7453|0.5 7454|0.5 7455|0.38889 7456|0.25 7457|0.59722 7458|0.44444 7459|0.52778 7460|0.5 7461|0.59722 7462|0.51389 7463|0.58333 7464|0.59722 7465|0.44444 7466|0.52778 7467|0.40278 7468|0.55556 7469|0.56944 7470|0.55556 7471|0.5 7472|0.44444 7473|0.5 7474|0.5 7475|0.51389 7476|0.5 7477|0.5 7478|0.27778 7479|0.5 7480|0.5 7481|0.65278 7482|0.61111 7483|0.26389 7484|0.20833 7485|0.26389 7486|0.41667 7487|0.61111 7488|0.47222 7489|0.47222 7490|0.55556 7491|0.41667 7492|0.58333 7493|0.5 7494|0.5 7495|0.72222 7496|0.56944 7497|0.5 7498|0.54167 7499|0.52778 7500|0.75 7501|0.51389 7502|0.5 7503|0.5 7504|0.56944 7505|0.5 7506|0.56944 7507|0.29167 7508|0.25 7509|0.27778 7510|0.45833 7511|0.44444 7512|0.54167 7513|0.33333 7514|0.68056 7515|0.56944 7516|0.63889 7517|0.5 7518|0.55556 7519|0.5 7520|0.41667 7521|0.41667 7522|0.26389 7523|0.44444 7524|0.33333 7525|0.44444 7526|0.47222 7527|0.44444 7528|0.16667 7529|0.41667 7530|0.83333 7531|0.72222 7532|0.72222 7533|0.94444 7534|0.84722 7535|0.91667 7536|0.77778 7537|0.84722 7538|0.38889 7539|0.56944 7540|0.31944 7541|0.43056 7542|0.55556 7543|0.29167 7544|0.47222 7545|0.81944 7546|0.80556 7547|0.875 7548|0.77778 7549|0.84722 7550|0.34722 7551|0.83333 7552|0.76389 7553|0.83333 7554|0.81944 7555|0.80556 7556|0.77778 7557|0.76389 7558|0.69444 7559|0.5 7560|0.097222 7561|0.055556 7562|0.13889 7563|0.38889 7564|0.36111 7565|0.34722 7566|0.45833 7567|0.41667 7568|0.40278 7569|0.5 7570|0.38889 7571|0.25 7572|0.63889 7573|0.36111 7574|0.40278 7575|0.29167 7576|0.26389 7577|0.22222 7578|0.66667 7579|0.68056 7580|0.72222 7581|0.66667 7582|0.77778 7583|0.52778 7584|0.72222 7585|0.5 7586|0.58333 7587|0.51389 7588|0.69444 7589|0.26389 7590|0.51389 7591|0.52778 7592|0.54167 7593|0.55556 7594|0.52778 7595|0.38889 7596|0.77778 7597|0.55556 7598|0.40278 7599|0.47222 7600|0.52778 7601|0.45833 7602|0.59722 7603|0.52778 7604|0.23611 7605|0.65278 7606|0.40278 7607|0.40278 7608|0.51389 7609|0.59722 7610|0.47222 7611|0.65278 7612|0.5 7613|0.20833 7614|0.61111 7615|0.58333 7616|0.70833 7617|0.48611 7618|0.38889 7619|0.75 7620|0.5 7621|0.5 7622|0.61111 7623|0.70833 7624|0.61111 7625|0.15278 7626|0.5 7627|0.70833 7628|0.65278 7629|0.61111 7630|0.5 7631|0.5 7632|0.5 7633|0.22222 7634|0.22222 7635|0.041667 7636|0.5 7637|0.20833 7638|0.19444 7639|0.18056 7640|0.70833 7641|0.44444 7642|0.36111 7643|0.11111 7644|0.76389 7645|0.16667 7646|0.48611 7647|0.83333 7648|0.19444 7649|0.79167 7650|0.48611 7651|0.51389 7652|0.83333 7653|0.80556 7654|0.27778 7655|0.66667 7656|0.83333 7657|0.29167 7658|0.77778 7659|0.33333 7660|0.26389 7661|0.93056 7662|0.81944 7663|0.73611 7664|0.84722 7665|0.75 7666|0.79167 7667|0.59722 7668|0.77778 7669|0.36111 7670|0.81944 7671|0.76389 7672|0.25 7673|0.81944 7674|0.25 7675|0.76389 7676|0.5 7677|0.125 7678|0.63889 7679|0.61111 7680|0.44444 7681|0.38889 7682|0.31944 7683|0.5 7684|0.65278 7685|0.27778 7686|0.63889 7687|0.29167 7688|0.38889 7689|0.041667 7690|0.45833 7691|0.41667 7692|0.43056 7693|0.625 7694|0.88889 7695|0.55556 7696|0.48611 7697|0.26389 7698|0.59722 7699|0.33333 7700|0.16667 7701|0.625 7702|0.13889 7703|0.15278 7704|0.72222 7705|0.65278 7706|0.73611 7707|0.875 7708|0.5 7709|0.5 7710|0.61111 7711|0.5 7712|0.15278 7713|0.76389 7714|0.45833 7715|0.18056 7716|0.44444 7717|0.5 7718|0.77778 7719|0.25 7720|0.375 7721|0.55556 7722|0.33333 7723|0.52778 7724|0.63889 7725|0.45833 7726|0.77778 7727|0.54167 7728|0.16667 7729|0.375 7730|0.47222 7731|0.54167 7732|0.375 7733|0.27778 7734|0.34722 7735|0.65278 7736|0.59722 7737|0.48611 7738|0.30556 7739|0.625 7740|0.44444 7741|0.27083 7742|0.20833 7743|0.29167 7744|0.5 7745|0.38889 7746|0.5 7747|0.44444 7748|0.44444 7749|0.375 7750|0.41667 7751|0.31944 7752|0.47222 7753|0.56944 7754|0.38889 7755|0.375 7756|0.34722 7757|0.36111 7758|0.80556 7759|0.73611 7760|0.44444 7761|0.38889 7762|0.76389 7763|0.097222 7764|0.34722 7765|0.5 7766|0.18056 7767|0.95833 7768|0.125 7769|0.80556 7770|0.91667 7771|0.98611 7772|0.5 7773|0.33333 7774|0.55556 7775|0.16667 7776|0.69444 7777|0.77778 7778|0.65278 7779|0.80556 7780|0.58333 7781|0.55556 7782|0.63889 7783|0.90278 7784|0.75 7785|0.20833 7786|0.055556 7787|0.66667 7788|0.90278 7789|0.83333 7790|0.16667 7791|0.44444 7792|0.33333 7793|0.625 7794|0.70833 7795|0.83333 7796|0.30556 7797|0.13889 7798|0.63889 7799|0.5 7800|0.16667 7801|0.43056 7802|0.27778 7803|0.375 7804|0.16667 7805|0.22222 7806|0.25 7807|0.13889 7808|0.86111 7809|0.5 7810|0.69444 7811|0.52778 7812|0.51389 7813|0.43056 7814|0.30556 7815|0.80556 7816|0.31944 7817|0.38889 7818|0.31944 7819|0.27778 7820|0.91667 7821|0.33333 7822|0.33333 7823|0.48611 7824|0.27778 7825|0.61111 7826|0.125 7827|0.25 7828|0.41667 7829|0.26389 7830|0.52778 7831|0.5 7832|0.83333 7833|0.79167 7834|0.5 7835|0.83333 7836|0.76389 7837|0.58333 7838|0.5 7839|0.43056 7840|0.16667 7841|0.38889 7842|0.25 7843|0.20833 7844|0.94444 7845|0.90278 7846|0.75 7847|0.58333 7848|0.54167 7849|0.81944 7850|0.70833 7851|0.68056 7852|0.69444 7853|0.44444 7854|0.80556 7855|0.52778 7856|0.66667 7857|0.72222 7858|0.027778 7859|0.027778 7860|0.80556 7861|0.5 7862|0.19444 7863|0.20833 7864|0.72222 7865|0.097222 7866|0.26389 7867|0.16667 7868|0.22222 7869|0.16667 7870|0.29167 7871|0.11111 7872|0.13889 7873|0.375 7874|0.41667 7875|0.43056 7876|0.47222 7877|0.33333 7878|0.41667 7879|0.38889 7880|0.26389 7881|0.625 7882|0.65278 7883|0.80556 7884|0.54167 7885|0.51389 7886|0.55556 7887|0.26389 7888|0.26389 7889|0.70833 7890|0.66667 7891|0.73611 7892|0.69444 7893|0.76389 7894|0.125 7895|0.68056 7896|0.83333 7897|0.75 7898|0.66667 7899|0.40278 7900|0.36111 7901|0.20833 7902|0.40278 7903|0.11111 7904|0.16667 7905|0.5 7906|0.23611 7907|0.5 7908|0.125 7909|0.38889 7910|0.69444 7911|0.44444 7912|0.083333 7913|0.38889 7914|0.58333 7915|0.26389 7916|0.33333 7917|0.36111 7918|0.375 7919|0.33333 7920|0.44444 7921|0.30556 7922|0.30556 7923|0.45833 7924|0.61111 7925|0.33333 7926|0.5 7927|0.51389 7928|0.625 7929|0.63889 7930|0.80556 7931|0.40278 7932|0.75 7933|0.84722 7934|0.77778 7935|0.36111 7936|0.26389 7937|0.26389 7938|0.11111 7939|0.22222 7940|0.41667 7941|0.40278 7942|0.5 7943|0.25 7944|0.20833 7945|0.61111 7946|0.11111 7947|0.63889 7948|0.76389 7949|0.72222 7950|0.76389 7951|0.77778 7952|0.34722 7953|0.59722 7954|0.5 7955|0.44444 7956|0.65278 7957|0.625 7958|0.70833 7959|0.56944 7960|0.18056 7961|0.73611 7962|0.38889 7963|0.48611 7964|0.38889 7965|0.51389 7966|0.52778 7967|0.48611 7968|0.54167 7969|0.63889 7970|0.65278 7971|0.55556 7972|0.40278 7973|0.73611 7974|0.013889 7975|0.75 7976|0.79167 7977|0.33333 7978|0.25 7979|0.25 7980|0.36111 7981|0.48611 7982|0.34722 7983|0.22222 7984|0.56944 7985|0.77778 7986|0.5 7987|0.56944 7988|0.72222 7989|0.58333 7990|0.44444 7991|0.5 7992|0.73611 7993|0.48611 7994|0.44444 7995|0.5 7996|0.52778 7997|0.5 7998|0.52778 7999|0.52778 8000|0.5 8001|0.43056 8002|0.51389 8003|0.36111 8004|0.38889 8005|0.58333 8006|0.40278 8007|0.36111 8008|0.5 8009|0.54167 8010|0.81944 8011|0.84722 8012|0.66667 8013|0.47222 8014|0.51389 8015|0.38889 8016|0.66667 8017|0.59722 8018|0.5 8019|0.75 8020|0.70833 8021|0.75 8022|0.68056 8023|0.76389 8024|0.88889 8025|0.80556 8026|0.86111 8027|0.73611 8028|0.79167 8029|0.5 8030|0.18056 8031|0.30556 8032|0.69444 8033|0.38889 8034|0.65278 8035|0.5 8036|0.65278 8037|0.70833 8038|0.22222 8039|0.25 8040|0.45833 8041|0.25 8042|0.5 8043|0.5 8044|0.61111 8045|0.52778 8046|0.51389 8047|0.31944 8048|0.51389 8049|0.52778 8050|0.58333 8051|0.5 8052|0.33333 8053|0.44444 8054|0.38889 8055|0.625 8056|0.63889 8057|0.5 8058|0.65278 8059|0.625 8060|0.5 8061|0.66667 8062|0.55556 8063|0.55556 8064|0.61111 8065|0.63889 8066|0.76389 8067|0.76389 8068|0.54167 8069|0.22222 8070|0.68056 8071|0.26389 8072|0.23611 8073|0.26389 8074|0.097222 8075|0.45833 8076|0.5 8077|0.51389 8078|0.70833 8079|0.25 8080|0.36111 8081|0.54167 8082|0.43056 8083|0.51389 8084|0.58333 8085|0.5 8086|0.15278 8087|0.125 8088|0.27778 8089|0.31944 8090|0.43056 8091|0.55556 8092|0.55556 8093|0.70833 8094|0.44444 8095|0.5 8096|0.59722 8097|0.58333 8098|0.51389 8099|0.36111 8100|0.55556 8101|0.5 8102|0.47222 8103|0.5 8104|0.61111 8105|0.5 8106|0.41667 8107|0.44444 8108|0.29167 8109|0.5 8110|0.61111 8111|0.72222 8112|0.69444 8113|0.75 8114|0.80556 8115|0.84722 8116|0.30556 8117|0.26389 8118|0.26389 8119|0.23611 8120|0.22222 8121|0.097222 8122|0.30556 8123|0.47222 8124|0.29167 8125|0.36111 8126|0.33333 8127|0.34722 8128|0.43056 8129|0.29167 8130|0.5 8131|0.47222 8132|0.61111 8133|0.54167 8134|0.44444 8135|0.36111 8136|0.75 8137|0.625 8138|0.5 8139|0.5 8140|0.61111 8141|0.5 8142|0.33333 8143|0.56944 8144|0.31944 8145|0.40278 8146|0.83333 8147|0.44444 8148|0.5 8149|0.65278 8150|0.65278 8151|0.79167 8152|0.55556 8153|0.5 8154|0.43056 8155|0.72222 8156|0.31944 8157|0.63889 8158|0.43056 8159|0.5 8160|0.5 8161|0.5 8162|0.25 8163|0.30556 8164|0.5 8165|0.5 8166|0.5 8167|0.44444 8168|0.66667 8169|0.80556 8170|0.66667 8171|0.625 8172|0.66667 8173|0.72222 8174|0.69444 8175|0.73611 8176|0.5 8177|0.51389 8178|0.51389 8179|0.51389 8180|0.5 8181|0.55556 8182|0.5 8183|0.5 8184|0.5 8185|0.51389 8186|0.5 8187|0.11111 8188|0.5 8189|0.5 8190|0.5 8191|0.5 8192|0.5 8193|0.51389 8194|0.5 8195|0.51389 8196|0.52778 8197|0.66667 8198|0.52778 8199|0.5 8200|0.5 8201|0.51389 8202|0.55556 8203|0.55556 8204|0.75 8205|0.70833 8206|0.68056 8207|0.5 8208|0.52778 8209|0.66667 8210|0.73611 8211|0.48611 8212|0.5 8213|0.5 8214|0.33333 8215|0.20833 8216|0.33333 8217|0.18056 8218|0.83333 8219|0.5 8220|0.52778 8221|0.70833 8222|0.63889 8223|0.5 8224|0.5 8225|0.125 8226|0.5 8227|0.51389 8228|0.5 8229|0.54167 8230|0.26389 8231|0.5 8232|0.44444 8233|0.38889 8234|0.45833 8235|0.70833 8236|0.63889 8237|0.52778 8238|0.5 8239|0.18056 8240|0.51389 8241|0.15278 8242|0.55556 8243|0.63889 8244|0.5 8245|0.5 8246|0.22222 8247|0.43056 8248|0.61111 8249|0.54167 8250|0.5 8251|0.52778 8252|0.55556 8253|0.20833 8254|0.20833 8255|0.5 8256|0.36111 8257|0.069444 8258|0.26389 8259|0.22222 8260|0.34722 8261|0.23611 8262|0.51389 8263|0.5 8264|0.52778 8265|0.47222 8266|0.23611 8267|0.25 8268|0.13889 8269|0.44444 8270|0.5 8271|0.55556 8272|0.44444 8273|0.5 8274|0.5 8275|0.47222 8276|0.5 8277|0.5 8278|0.58333 8279|0.5 8280|0.61111 8281|0.5 8282|0.5 8283|0.54167 8284|0.52778 8285|0.25 8286|0.083333 8287|0.18056 8288|0.30556 8289|0.77778 8290|0.70833 8291|0.5 8292|0.5 8293|0.5 8294|0.44444 8295|0.5 8296|0.77778 8297|0.5 8298|0.65278 8299|0.44444 8300|0.5 8301|0.34722 8302|0.44444 8303|0.30556 8304|0.66667 8305|0.51389 8306|0.5 8307|0.5 8308|0.41667 8309|0.44444 8310|0.52778 8311|0.65278 8312|0.48611 8313|0.5 8314|0.29167 8315|0.52778 8316|0.5 8317|0.51389 8318|0.5 8319|0.38889 8320|0.98611 8321|0.5 8322|0.5 8323|0.5 8324|0.77778 8325|0.88889 8326|0.93056 8327|0.29167 8328|0.31944 8329|0.11111 8330|0.15278 8331|0.25 8332|0.20833 8333|0.20833 8334|0.34722 8335|0.16667 8336|0.20833 8337|0.23611 8338|0.23611 8339|0.055556 8340|0.25 8341|0.41667 8342|0.61111 8343|0.5 8344|0.5 8345|0.48611 8346|0.41667 8347|0.5 8348|0.16667 8349|0.55556 8350|0.5 8351|0.5 8352|0.5 8353|0.5 8354|0.29167 8355|0.58333 8356|0.5 8357|0.5 8358|0.52778 8359|0.48611 8360|0.34722 8361|0.66667 8362|0.625 8363|0.33333 8364|0.84722 8365|0.33333 8366|0.16667 8367|0.66667 8368|0.80556 8369|0.52778 8370|0.5 8371|0.48611 8372|0.5 8373|0.375 8374|0.31944 8375|0.097222 8376|0.5 8377|0.55556 8378|0.26389 8379|0.29167 8380|0.22222 8381|0.65278 8382|0.5 8383|0.33333 8384|0.47222 8385|0.48611 8386|0.48611 8387|0.38889 8388|0.25 8389|0.27778 8390|0.38889 8391|0.44444 8392|0.54167 8393|0.45833 8394|0.44444 8395|0.73611 8396|0.63889 8397|0.30556 8398|0.22222 8399|0.375 8400|0.27778 8401|0.125 8402|0.5 8403|0.5 8404|0.44444 8405|0.54167 8406|0.48611 8407|0.66667 8408|0.33333 8409|0.45833 8410|0.20833 8411|0.59722 8412|0.5 8413|0.56944 8414|0.5 8415|0.38889 8416|0.55556 8417|0.56944 8418|0.55556 8419|0.43056 8420|0.52778 8421|0.63889 8422|0.52778 8423|0.63889 8424|0.65278 8425|0.52778 8426|0.34722 8427|0.5 8428|0.55556 8429|0.61111 8430|0.66667 8431|0.75 8432|0.61111 8433|0.63889 8434|0.5 8435|0.55556 8436|0.66667 8437|0.58333 8438|0.55556 8439|0.40278 8440|0.44444 8441|0.44444 8442|0.68056 8443|0.27778 8444|0.45833 8445|0.43056 8446|0.77778 8447|0.83333 8448|0.027778 8449|0.30556 8450|0.18056 8451|0.48611 8452|0.30556 8453|0.22222 8454|0.19444 8455|0.5 8456|0.30556 8457|0.5 8458|0.36111 8459|0.5 8460|0.55556 8461|0.38889 8462|0.38889 8463|0.51389 8464|0.47222 8465|0.69444 8466|0.55556 8467|0.47222 8468|0.27778 8469|0.5 8470|0.29167 8471|0.5 8472|0.48611 8473|0.56944 8474|0.375 8475|0.56944 8476|0.65278 8477|0.5 8478|0.58333 8479|0.625 8480|0.375 8481|0.47222 8482|0.5 8483|0.51389 8484|0.54167 8485|0.54167 8486|0.66667 8487|0.375 8488|0.30556 8489|0.27778 8490|0.5 8491|0.58333 8492|0.59722 8493|0.63889 8494|0.55556 8495|0.5 8496|0.5 8497|0.5 8498|0.27778 8499|0.38889 8500|0.15278 8501|0.48611 8502|0.47222 8503|0.5 8504|0.5 8505|0.55556 8506|0.26389 8507|0.36111 8508|0.29167 8509|0.625 8510|0.34722 8511|0.30556 8512|0.27778 8513|0.29167 8514|0.26389 8515|0.83333 8516|0.44444 8517|0.47222 8518|0.45833 8519|0.34722 8520|0.44444 8521|0.61111 8522|0.44444 8523|0.51389 8524|0.55556 8525|0.41667 8526|0.75 8527|0.79167 8528|0.69444 8529|0.56944 8530|0.58333 8531|0.58333 8532|0.51389 8533|0.38889 8534|0.16667 8535|0.48611 8536|0.5 8537|0.25 8538|0.33333 8539|0.58333 8540|0.55556 8541|0.65278 8542|0.13889 8543|0.18056 8544|0.38889 8545|0.5 8546|0.5 8547|0.56944 8548|0.22222 8549|0.66667 8550|0.40278 8551|0.5 8552|0.52778 8553|0.43056 8554|0.31944 8555|0.20833 8556|0.38889 8557|0.43056 8558|0.20833 8559|0.38889 8560|0.375 8561|0.34722 8562|0.40278 8563|0.45833 8564|0.45833 8565|0.23611 8566|0.5 8567|0.13889 8568|0.79167 8569|0.55556 8570|0.66667 8571|0.84722 8572|0.625 8573|0.55556 8574|0.5 8575|0.70833 8576|0.18056 8577|0.375 8578|0.44444 8579|0.44444 8580|0.44444 8581|0.5 8582|0.51389 8583|0.5 8584|0.5 8585|0.5 8586|0.40278 8587|0.5 8588|0.63889 8589|0.5 8590|0.5 8591|0.77778 8592|0.94444 8593|0.56944 8594|0.47222 8595|0.29167 8596|0.33333 8597|0.013889 8598|0.63889 8599|0.44444 8600|0.5 8601|0.51389 8602|0.81944 8603|0.5 8604|0.94444 8605|0.5 8606|0.5 8607|0.22222 8608|0.54167 8609|0.59722 8610|0.68056 8611|0.59722 8612|0.55556 8613|0.54167 8614|0.54167 8615|0.70833 8616|0.55556 8617|0.69444 8618|0.93056 8619|0.72222 8620|0.5 8621|0.73611 8622|0.41667 8623|0.81944 8624|0.43056 8625|0.069444 8626|0.19444 8627|0.45833 8628|0.75 8629|0.5 8630|0.61111 8631|0.18056 8632|0.16667 8633|0.63889 8634|0.5 8635|0.5 8636|0.44444 8637|0.58333 8638|0.55556 8639|0.77778 8640|0.5 8641|0.5 8642|0.5 8643|0.65278 8644|0.43056 8645|0.48611 8646|0.75 8647|0.73611 8648|0.54167 8649|0.55556 8650|0.76389 8651|0.84722 8652|0.5 8653|0.58333 8654|0.097222 8655|0.54167 8656|0.52778 8657|0.5 8658|0.51389 8659|0.5 8660|0.30556 8661|0.51389 8662|0.55556 8663|0.5 8664|0.5 8665|0.52778 8666|0.55556 8667|0.75 8668|0.69444 8669|0.68056 8670|0.625 8671|0.5 8672|0.5 8673|0.33333 8674|0.51389 8675|0.36111 8676|0.56944 8677|0.5 8678|0.5 8679|0.5 8680|0.58333 8681|0.52778 8682|0.48611 8683|0.52778 8684|0.5 8685|0.73611 8686|0.79167 8687|0.81944 8688|0.80556 8689|0.83333 8690|0.5 8691|0.51389 8692|0.48611 8693|0.33333 8694|0.22222 8695|0.65278 8696|0.5 8697|0.47222 8698|0.51389 8699|0.47222 8700|0.5 8701|0.52778 8702|0.94444 8703|0.98611 8704|0.88889 8705|0.86111 8706|0.76389 8707|0.5 8708|0.875 8709|1 8710|0.5 8711|0.88889 8712|0.33333 8713|0.27778 8714|0.11111 8715|0.11111 8716|0.34722 8717|0.63889 8718|0.55556 8719|0.25 8720|0.31944 8721|0.5 8722|0.51389 8723|0.25 8724|0.41667 8725|0.41667 8726|0.33333 8727|0.55556 8728|0.54167 8729|0.68056 8730|0.97222 8731|0.43056 8732|0.48611 8733|0.5 8734|0.5 8735|0.375 8736|0.43056 8737|0.27778 8738|0.51389 8739|0.5 8740|0.5 8741|0.44444 8742|0.56944 8743|0.55556 8744|0.33333 8745|0.40278 8746|0.33333 8747|0.5 8748|0.625 8749|0.52778 8750|0.51389 8751|0.36111 8752|0.38889 8753|0.41667 8754|0.51389 8755|0.33333 8756|0.5 8757|0.81944 8758|0.56944 8759|0.55556 8760|0.55556 8761|0.5 8762|0.44444 8763|0.5 8764|0.5 8765|0.55556 8766|0.48611 8767|0.5 8768|0.16667 8769|0.55556 8770|0.69444 8771|0.59722 8772|0.69444 8773|0.625 8774|0.72222 8775|0.56944 8776|0.44444 8777|0.52778 8778|0.5 8779|0.54167 8780|0.5 8781|0.5 8782|0.5 8783|0.44444 8784|0.5 8785|0.41667 8786|0.5 8787|0.55556 8788|0.125 8789|0.51389 8790|0.48611 8791|0.5 8792|0.59722 8793|0.54167 8794|0.48611 8795|0.5 8796|0.54167 8797|0.375 8798|0.44444 8799|0.375 8800|0.45833 8801|0.16667 8802|0.34722 8803|0.30556 8804|0.40278 8805|0.20833 8806|0.38889 8807|0.11111 8808|0.13889 8809|0.13889 8810|0.16667 8811|0.25 8812|0.36111 8813|0.22222 8814|0.5 8815|0.5 8816|0.5 8817|0.36111 8818|0.30556 8819|0.29167 8820|0.41667 8821|0.22222 8822|0.19444 8823|0.22222 8824|0.5 8825|0.47222 8826|0.375 8827|0.66667 8828|0.51389 8829|0.52778 8830|0.55556 8831|0.61111 8832|0.66667 8833|0.5 8834|0.54167 8835|0.45833 8836|0.5 8837|0.75 8838|0.34722 8839|0.20833 8840|0.45833 8841|0.33333 8842|0.5 8843|0.5 8844|0.5 8845|0.18056 8846|0.34722 8847|0.22222 8848|0.33333 8849|0.48611 8850|0.44444 8851|0.45833 8852|0.52778 8853|0.5 8854|0.55556 8855|0.61111 8856|0.47222 8857|0.77778 8858|0.75 8859|0.48611 8860|0.5 8861|0.43056 8862|0.59722 8863|0.66667 8864|0.5 8865|0.63889 8866|0.5 8867|0.52778 8868|0.48611 8869|0.54167 8870|0.44444 8871|0.34722 8872|0.55556 8873|0.45833 8874|0.41667 8875|0.44444 8876|0.055556 8877|0.55556 8878|0.81944 8879|0.70833 8880|0.91667 8881|0.5 8882|0.38889 8883|0.375 8884|0.41667 8885|0.26389 8886|0.54167 8887|0.23611 8888|0.55556 8889|0.5 8890|0.5 8891|0.5 8892|0.5 8893|0.16667 8894|0.54167 8895|0.86111 8896|0.79167 8897|0.20833 8898|0.5 8899|0.5 8900|0.375 8901|0.77778 8902|0.5 8903|0.41667 8904|0.5 8905|0.5 8906|0.5 8907|0.5 8908|1 8909|0.84722 8910|0.65278 8911|0.61111 8912|0.5 8913|0.77778 8914|0.58333 8915|0.72222 8916|0.69444 8917|0.81944 8918|0.75 8919|0.59722 8920|0.625 8921|0.56944 8922|0.26389 8923|0.55556 8924|0.52778 8925|0.65278 8926|0.79167 8927|0.56944 8928|0.27778 8929|0.47222 8930|0.43056 8931|0.52778 8932|0.55556 8933|0.625 8934|0.51389 8935|0.41667 8936|0.38889 8937|0.5 8938|0.31944 8939|0.5 8940|0.5 8941|0.19444 8942|0.16667 8943|0.44444 8944|0.34722 8945|0.54167 8946|0.34722 8947|0.44444 8948|0.36111 8949|0.38889 8950|0.34722 8951|0.36111 8952|0.27778 8953|0.5 8954|0.47222 8955|0.52778 8956|0.5 8957|0.27778 8958|0.16667 8959|0.375 8960|0.29167 8961|0.5 8962|0.36111 8963|0.61111 8964|0.58333 8965|0.72222 8966|0.80556 8967|0.69444 8968|0.70833 8969|0.15278 8970|0.27778 8971|0.31944 8972|0.5 8973|0.5 8974|0.5 8975|0.65278 8976|0.61111 8977|0.33333 8978|0.31944 8979|0.5 8980|0.5 8981|0.52778 8982|0.18056 8983|0.27778 8984|0.40278 8985|0.375 8986|0.5 8987|0.5 8988|0.5 8989|0.26389 8990|0.36111 8991|0.26389 8992|0.5 8993|0.16667 8994|0.20833 8995|0.083333 8996|0.055556 8997|0 8998|0.013889 8999|0.22222 9000|0.27778 9001|0.40278 9002|0.5 9003|0.54167 9004|0.56944 9005|0.51389 9006|0.56944 9007|0.27778 9008|0.625 9009|0.55556 9010|0.5 9011|0.55556 9012|0.5 9013|0.44444 9014|0.44444 9015|0.47222 9016|0.55556 9017|0.51389 9018|0.5 9019|0.5 9020|0.625 9021|0.40278 9022|0.65278 9023|0.069444 9024|0.38889 9025|0.083333 9026|0.40278 9027|0.44444 9028|0.5 9029|0.5 9030|0.70833 9031|0.43056 9032|0.54167 9033|0.5 9034|0.41667 9035|0.5 9036|0.41667 9037|0.5 9038|0.15278 9039|0.34722 9040|0.83333 9041|0.38889 9042|0.77778 9043|0.69444 9044|0.13889 9045|0.5 9046|0.11111 9047|0.069444 9048|0.055556 9049|0.5 9050|0.5 9051|0.52778 9052|0.44444 9053|0.375 9054|0.73611 9055|0.5 9056|0.5 9057|0.55556 9058|0.52778 9059|0.73611 9060|0.80556 9061|0.5 9062|0.38889 9063|0.5 9064|0.34722 9065|0.31944 9066|0.375 9067|0.80556 9068|0.80556 9069|0.75 9070|0.875 9071|0.34722 9072|0.38889 9073|0.375 9074|0.26389 9075|0.29167 9076|0.16667 9077|0.22222 9078|0.43056 9079|0.25 9080|0.58333 9081|0.5 9082|0.38889 9083|0.45833 9084|0.48611 9085|0.48611 9086|0.56944 9087|0.48611 9088|0.55556 9089|0.65278 9090|0.69444 9091|0.5 9092|0.58333 9093|0.47222 9094|0.80556 9095|0.44444 9096|0.44444 9097|0.44444 9098|0.56944 9099|0.47222 9100|0.68056 9101|0.54167 9102|0.65278 9103|0.80556 9104|1 9105|0.5 9106|0.20833 9107|0.44444 9108|0.5 9109|0.625 9110|0.72222 9111|0.83333 9112|0.34722 9113|0.38889 9114|0.68056 9115|0.66667 9116|0.68056 9117|0.73611 9118|0.75 9119|0.55556 9120|0.40278 9121|0.18056 9122|0.38889 9123|0.48611 9124|0.45833 9125|0.44444 9126|0.33333 9127|0.47222 9128|0.11111 9129|0.43056 9130|0.43056 9131|0.43056 9132|0.27778 9133|0.5 9134|0.58333 9135|0.36111 9136|0.625 9137|0.65278 9138|0.22222 9139|0.055556 9140|0.069444 9141|0.055556 9142|0.5 9143|0.51389 9144|0.55556 9145|0.61111 9146|0.83333 9147|0.5 9148|0.38889 9149|0.44444 9150|0.43056 9151|0.70833 9152|0.75 9153|0.083333 9154|0.25 9155|0.48611 9156|0.48611 9157|0.16667 9158|0.19444 9159|0.40278 9160|0.5 9161|0.5 9162|0.47222 9163|0.44444 9164|0.36111 9165|0.5 9166|0.47222 9167|0.26389 9168|0.65278 9169|0.5 9170|0.52778 9171|0.5 9172|0.5 9173|0.5 9174|0.44444 9175|0.5 9176|0.52778 9177|0.51389 9178|0.45833 9179|0.47222 9180|0.66667 9181|0.38889 9182|0.41667 9183|0.23611 9184|0.45833 9185|0.38889 9186|0.22222 9187|0.5 9188|0.48611 9189|0.36111 9190|0.27778 9191|0.26389 9192|0.5 9193|0.5 9194|0.36111 9195|0.44444 9196|0.5 9197|0.58333 9198|0.5 9199|0.55556 9200|0.59722 9201|0.59722 9202|0.76389 9203|0.75 9204|0.5 9205|0.5 9206|0.68056 9207|0.27778 9208|0.44444 9209|0.52778 9210|0.61111 9211|0.58333 9212|0.40278 9213|0.83333 9214|0.54167 9215|0.5 9216|0.20833 9217|0.41667 9218|0.5 9219|0.55556 9220|0.41667 9221|0.5 9222|0.5 9223|0.5 9224|0.70833 9225|0.56944 9226|0.55556 9227|0.5 9228|0.44444 9229|0.55556 9230|0.36111 9231|0.48611 9232|0.59722 9233|0.5 9234|0.34722 9235|0.5 9236|0.56944 9237|0.5 9238|0.63889 9239|0.54167 9240|0.55556 9241|0.5 9242|0.5 9243|0.5 9244|0.30556 9245|0.23611 9246|0.59722 9247|0.36111 9248|0.29167 9249|0.84722 9250|0.5 9251|0.5 9252|0.5 9253|0.125 9254|0.41667 9255|0.51389 9256|0.5 9257|0.69444 9258|0.19444 9259|0.79167 9260|0.30556 9261|0.27778 9262|0.75 9263|0.51389 9264|0.51389 9265|0.58333 9266|0.27778 9267|0.58333 9268|0.70833 9269|0.51389 9270|0.55556 9271|0.5 9272|0.5 9273|0.5 9274|0.5 9275|0.45833 9276|0.36111 9277|0.44444 9278|0.5 9279|0.55556 9280|0.70833 9281|0.5 9282|0.55556 9283|0.56944 9284|0.33333 9285|0.61111 9286|0.5 9287|0.5 9288|0.52778 9289|0.54167 9290|0.36111 9291|0.5 9292|0.41667 9293|0.54167 9294|0.5 9295|0.375 9296|0.54167 9297|0.5 9298|0.5 9299|0.41667 9300|0.47222 9301|0.5 9302|0.59722 9303|0.52778 9304|0.5 9305|0.56944 9306|0.51389 9307|0.5 9308|0.55556 9309|0.63889 9310|0.5 9311|0.5 9312|0.51389 9313|0.18056 9314|0.097222 9315|0.5 9316|0.54167 9317|0.48611 9318|0.34722 9319|0.63889 9320|0.45833 9321|0.76389 9322|0.48611 9323|0.5 9324|0.23611 9325|0.34722 9326|0.5 9327|0.44444 9328|0.52778 9329|0.5 9330|0.45833 9331|0.30556 9332|0.5 9333|0.48611 9334|0.61111 9335|0.44444 9336|0.69444 9337|0.26389 9338|0.93056 9339|0.52778 9340|0.5 9341|0.45833 9342|0.81944 9343|0.55556 9344|0.55556 9345|0.55556 9346|0.56944 9347|0.40278 9348|0.36111 9349|0.54167 9350|0.72222 9351|0.47222 9352|0.33333 9353|0.30556 9354|0.61111 9355|0.51389 9356|0.52778 9357|0.44444 9358|0.5 9359|0.5 9360|0.18056 9361|0.31944 9362|0.16667 9363|0.43056 9364|0.33333 9365|0.47222 9366|0.5 9367|0.63889 9368|0.84722 9369|0.54167 9370|0.27778 9371|0.48611 9372|0.52778 9373|0.61111 9374|0.45833 9375|0.16667 9376|0.5 9377|0.56944 9378|0.73611 9379|0.51389 9380|0.54167 9381|0.5 9382|0.41667 9383|0.52778 9384|0.26389 9385|0.69444 9386|0.56944 9387|0.48611 9388|0.51389 9389|0.41667 9390|0.5 9391|0.125 9392|0.72222 9393|0.54167 9394|0.16667 9395|0.63889 9396|0.23611 9397|0.27778 9398|0.18056 9399|0.48611 9400|0.33333 9401|0.20833 9402|0.34722 9403|0.5 9404|0.5 9405|0.5 9406|0.55556 9407|0.5 9408|0.5 9409|0.5 9410|0.47222 9411|0.5 9412|0.52778 9413|0.75 9414|0.31944 9415|0.5 9416|0.51389 9417|0.43056 9418|0.45833 9419|0.33333 9420|0.47222 9421|0.56944 9422|0.63889 9423|0.72222 9424|0.34722 9425|0.75 9426|0.66667 9427|0.33333 9428|0.75 9429|0.68056 9430|0.76389 9431|0.51389 9432|0.61111 9433|0.80556 9434|0.26389 9435|0.5 9436|0.375 9437|0.55556 9438|0.45833 9439|0.48611 9440|0.40278 9441|0.44444 9442|0.52778 9443|0.34722 9444|0.72222 9445|0.625 9446|0.48611 9447|0.5 9448|0.55556 9449|0.68056 9450|0.61111 9451|0.41667 9452|0.48611 9453|0.5 9454|0.54167 9455|0.5 9456|0.55556 9457|0.36111 9458|0.55556 9459|0.5 9460|0.5 9461|0.40278 9462|0.51389 9463|0.36111 9464|0.27778 9465|0.5 9466|0.38889 9467|0.041667 9468|0.54167 9469|0.5 9470|0.5 9471|0.5 9472|0.23611 9473|0.69444 9474|0.73611 9475|0.38889 9476|0.47222 9477|0.43056 9478|0.36111 9479|0.5 9480|0.5 9481|0.83333 9482|0.84722 9483|0.38889 9484|0.63889 9485|0.44444 9486|0.25 9487|0.81944 9488|0.83333 9489|0.72222 9490|0.80556 9491|0.66667 9492|0.83333 9493|1 9494|0.20833 9495|0.26389 9496|0.88889 9497|0.76389 9498|0.80556 9499|0.79167 9500|0.77778 9501|0.65278 9502|0.77778 9503|0.47222 9504|0.52778 9505|0.61111 9506|0.44444 9507|0.5 9508|0.55556 9509|0.44444 9510|0.47222 9511|0.30556 9512|0.18056 9513|0.45833 9514|0.56944 9515|0.51389 9516|0.55556 9517|0.56944 9518|0.33333 9519|0.44444 9520|0.5 9521|0.375 9522|0.29167 9523|0.51389 9524|0.56944 9525|0.61111 9526|0.13889 9527|0.40278 9528|0.51389 9529|0.59722 9530|0.36111 9531|0.54167 9532|0.68056 9533|0.5 9534|0.55556 9535|0.36111 9536|0.52778 9537|0.5 9538|0.5 9539|0.58333 9540|0.375 9541|0.22222 9542|0.15278 9543|0.65278 9544|0.65278 9545|0.55556 9546|0.5 9547|0.36111 9548|0.5 9549|0.5 9550|0.44444 9551|0.48611 9552|0.19444 9553|0.5 9554|0.34722 9555|0.5 9556|0.5 9557|0.20833 9558|0.25 9559|0.30556 9560|0.61111 9561|0.43056 9562|0.27778 9563|0.29167 9564|0.23611 9565|0.38889 9566|0.375 9567|0.11111 9568|0.5 9569|0.48611 9570|0.25 9571|0.22222 9572|0.30556 9573|0.33333 9574|0.23611 9575|0.27778 9576|0.16667 9577|0.31944 9578|0.5 9579|0.52778 9580|0.51389 9581|0.29167 9582|0.18056 9583|0.11111 9584|0.48611 9585|0.30556 9586|0.18056 9587|0.22222 9588|0.125 9589|0.5 9590|0.5 9591|0.375 9592|0.61111 9593|0.59722 9594|0.5 9595|0.27778 9596|0.22222 9597|0.36111 9598|0.5 9599|0.45833 9600|0.61111 9601|0.52778 9602|0.31944 9603|0.5 9604|0.5 9605|0.51389 9606|0.52778 9607|0.5 9608|0.41667 9609|0.5 9610|0.44444 9611|0.33333 9612|0.5 9613|0.5 9614|0.5 9615|0.55556 9616|0.5 9617|0.5 9618|0.41667 9619|0.58333 9620|0.48611 9621|0.40278 9622|0.5 9623|0.58333 9624|0.52778 9625|0.61111 9626|0.55556 9627|0.47222 9628|0.30556 9629|0.54167 9630|0.56944 9631|0.27778 9632|0.30556 9633|0.58333 9634|0.52778 9635|0.51389 9636|0.51389 9637|0.33333 9638|0.5 9639|0.5 9640|0.38889 9641|0.54167 9642|0.48611 9643|0.44444 9644|0.5 9645|0.41667 9646|0.41667 9647|0.083333 9648|0.44444 9649|0.5 9650|0.55556 9651|0.63889 9652|0.5 9653|0.65278 9654|0.75 9655|0.61111 9656|0.625 9657|0.5 9658|0.54167 9659|0.5 9660|0.5 9661|0.55556 9662|0.5 9663|0.625 9664|0.48611 9665|0.79167 9666|0.77778 9667|0.5 9668|0.5 9669|0.52778 9670|0.44444 9671|0.52778 9672|0.80556 9673|0.86111 9674|0.69444 9675|0.88889 9676|0.81944 9677|0.72222 9678|0.68056 9679|0.52778 9680|0.5 9681|0.51389 9682|0.5 9683|0.36111 9684|0.5 9685|0.5 9686|0.43056 9687|0.41667 9688|0.65278 9689|0.30556 9690|0.5 9691|0.5 9692|0.63889 9693|0.30556 9694|0.61111 9695|0.5 9696|0.5 9697|0.5 9698|0.5 9699|0.5 9700|0.23611 9701|0.97222 9702|0.66667 9703|0.55556 9704|0.51389 9705|0.91667 9706|0.5 9707|0.5 9708|0.65278 9709|0.5 9710|0.055556 9711|0.38889 9712|0.5 9713|0.27778 9714|0.34722 9715|0.26389 9716|0.54167 9717|0.41667 9718|0.41667 9719|0.29167 9720|0.38889 9721|0.5 9722|0.375 9723|0.29167 9724|0.30556 9725|0.56944 9726|0.5 9727|0.5 9728|0.5 9729|0.55556 9730|0.5 9731|0.52778 9732|0.52778 9733|0.70833 9734|0.61111 9735|0.59722 9736|0.61111 9737|0.66667 9738|0.79167 9739|0.52778 9740|0.61111 9741|0.55556 9742|0.38889 9743|0.55556 9744|0.54167 9745|0.47222 9746|0.43056 9747|0.19444 9748|0.47222 9749|0.5 9750|0.55556 9751|0.77778 9752|0.72222 9753|0.48611 9754|0.5 9755|0.47222 9756|0.40278 9757|0.66667 9758|0.45833 9759|0.5 9760|0.61111 9761|0.61111 9762|0.75 9763|0.86111 9764|0.84722 9765|0.68056 9766|0.63889 9767|0.75 9768|0.625 9769|0.77778 9770|0.83333 9771|0.36111 9772|0.55556 9773|0.54167 9774|0.11111 9775|0.5 9776|0.27778 9777|0.54167 9778|0.44444 9779|0.43056 9780|0.45833 9781|0.33333 9782|0.27778 9783|0.38889 9784|0.16667 9785|0.44444 9786|0.27778 9787|0.5 9788|0.51389 9789|0.43056 9790|0.22222 9791|0.5 9792|0.5 9793|0.45833 9794|0.5 9795|0.5 9796|0.5 9797|0.875 9798|0.81944 9799|0.91667 9800|0.77778 9801|0.91667 9802|0.69444 9803|0.875 9804|0.79167 9805|0.94444 9806|0.70833 9807|0.5 9808|0.69444 9809|0.61111 9810|0.40278 9811|0.41667 9812|0.58333 9813|0.47222 9814|0.19444 9815|0.47222 9816|0.5 9817|0.5 9818|0.44444 9819|0.5 9820|0.40278 9821|0.36111 9822|0.375 9823|0.38889 9824|0.59722 9825|0.51389 9826|0.69444 9827|0.61111 9828|0.36111 9829|0.55556 9830|0.83333 9831|0.76389 9832|0.11111 9833|0.36111 9834|0.54167 9835|0.34722 9836|0.5 9837|0.61111 9838|0.29167 9839|0.23611 9840|0.34722 9841|0.5 9842|0.5 9843|0.43056 9844|0.65278 9845|0.79167 9846|0.875 9847|0.65278 9848|0.76389 9849|0.5 9850|0.5 9851|0.5 9852|0.5 9853|0.45833 9854|0.5 9855|0.625 9856|0.52778 9857|0.52778 9858|0.5 9859|0.11111 9860|0.5 9861|0.75 9862|0.84722 9863|0.33333 9864|0.52778 9865|0.5 9866|0.51389 9867|0.58333 9868|0.63889 9869|0.54167 9870|0.54167 9871|0.30556 9872|0.33333 9873|0.54167 9874|0.58333 9875|0.79167 9876|0.5 9877|0.70833 9878|0.51389 9879|0.65278 9880|0.55556 9881|0.80556 9882|0.54167 9883|0.31944 9884|0.72222 9885|0.61111 9886|0.55556 9887|0.38889 9888|0.68056 9889|0.48611 9890|0.61111 9891|0.77778 9892|0.66667 9893|0.76389 9894|0.55556 9895|0.34722 9896|0.43056 9897|0.45833 9898|0.55556 9899|0.73611 9900|0.44444 9901|0.41667 9902|0.11111 9903|0.55556 9904|0.77778 9905|0.5 9906|0.56944 9907|0.22222 9908|0.23611 9909|0.45833 9910|0.5 9911|0.40278 9912|0.375 9913|0.55556 9914|0.61111 9915|0.5 9916|0.5 9917|0.52778 9918|0.44444 9919|0.5 9920|0.5 9921|0.11111 9922|0.51389 9923|0.5 9924|0.61111 9925|0.48611 9926|0.16667 9927|0.19444 9928|0.13889 9929|0.36111 9930|0.11111 9931|0.22222 9932|0.55556 9933|0.5 9934|0.65278 9935|0.76389 9936|0.26389 9937|0.5 9938|0.63889 9939|0.34722 9940|0.27778 9941|0.23611 9942|0.75 9943|0.88889 9944|0.5 9945|0.5 9946|0.5 9947|0.5 9948|0.45833 9949|0.51389 9950|0.41667 9951|0.36111 9952|0.56944 9953|0.38889 9954|0.47222 9955|0.48611 9956|0.56944 9957|0.58333 9958|0.56944 9959|0.86111 9960|0.51389 9961|0.5 9962|0.51389 9963|0.5 9964|0.61111 9965|0.375 9966|0.54167 9967|0.43056 9968|0.38889 9969|0.40278 9970|0.41667 9971|0.58333 9972|0.625 9973|0.48611 9974|0.51389 9975|0.5 9976|0.51389 9977|0.5 9978|0.45833 9979|0.52778 9980|0.56944 9981|0.44444 9982|0.33333 9983|0.51389 9984|0.5 9985|0.5 9986|0.5 9987|0.55556 9988|0.41667 9989|0.5 9990|0.38889 9991|0.22222 9992|0.23611 9993|0.5 9994|0.20833 9995|0.63889 9996|0.70833 9997|0.47222 9998|0.625 9999|0.44444 10000|0.16667 10001|0.013889 10002|0.33333 10003|0.5 10004|0.097222 10005|0.30556 10006|0.51389 10007|0.52778 10008|0.52778 10009|0.63889 10010|0.45833 10011|0.44444 10012|0.54167 10013|0.54167 10014|0.55556 10015|0.5 10016|0.5 10017|0.51389 10018|0.5 10019|0.54167 10020|0.72222 10021|0.5 10022|0.5 10023|0.52778 10024|0.63889 10025|0.80556 10026|0.5 10027|0.55556 10028|0.5 10029|0.55556 10030|0.52778 10031|0.5 10032|0.58333 10033|0.625 10034|0.5 10035|0.5 10036|0.63889 10037|0.5 10038|0.54167 10039|0.5 10040|0.83333 10041|0.59722 10042|0.31944 10043|0.68056 10044|0.22222 10045|0.55556 10046|0.47222 10047|0.36111 10048|0.41667 10049|0.52778 10050|0.54167 10051|0.625 10052|0.58333 10053|0.44444 10054|0.38889 10055|0.34722 10056|0.54167 10057|0.51389 10058|0.5 10059|0.38889 10060|0.54167 10061|0.31944 10062|0.22222 10063|0.23611 10064|0.47222 10065|0.72222 10066|0.66667 10067|0.55556 10068|0.70833 10069|0.77778 10070|0.80556 10071|0.77778 10072|0.41667 10073|0.30556 10074|0.20833 10075|0.5 10076|0.55556 10077|0.55556 10078|0.44444 10079|0.55556 10080|0.51389 10081|0.5 10082|0.58333 10083|0.52778 10084|0.40278 10085|0.44444 10086|0.38889 10087|0.56944 10088|0.61111 10089|0.79167 10090|0.26389 10091|0.83333 10092|0.875 10093|0.84722 10094|0.48611 10095|0.5 10096|0.58333 10097|0.76389 10098|0.5 10099|0.5 10100|0.5 10101|0.45833 10102|0.84722 10103|0.81944 10104|0.5 10105|0.5 10106|0.5 10107|0.55556 10108|0.79167 10109|0.72222 10110|0.72222 10111|0.625 10112|0.33333 10113|0.23611 10114|0.58333 10115|0.56944 10116|0 10117|0.5 10118|0.31944 10119|0.5 10120|0.44444 10121|0.54167 10122|0.41667 10123|0.58333 10124|0.70833 10125|0.63889 10126|0.90278 10127|0.84722 10128|0.83333 10129|0.44444 10130|0.5 10131|0.5 10132|0.56944 10133|0.31944 10134|0.18056 10135|0.33333 10136|0.38889 10137|0.5 10138|0.47222 10139|0.56944 10140|0.66667 10141|0.55556 10142|0.44444 10143|0.5 10144|0.76389 10145|0.61111 10146|0.52778 10147|0.5 10148|0.73611 10149|0.73611 10150|0.5 10151|0.5 10152|0.5 10153|0.5 10154|0.38889 10155|0.51389 10156|0.52778 10157|0.66667 10158|0.43056 10159|0.5 10160|0.34722 10161|0.26389 10162|0.13889 10163|0.625 10164|0.51389 10165|0.34722 10166|0.5 10167|0.47222 10168|0.58333 10169|0.58333 10170|0.59722 10171|0.66667 10172|0.77778 10173|0.55556 10174|0.84722 10175|0.84722 10176|0.77778 10177|0.97222 10178|0.38889 10179|0.55556 10180|0.5 10181|0.5 10182|0.5 10183|0.5 10184|0.5 10185|0.44444 10186|0.5 10187|0.63889 10188|0.52778 10189|0.5 10190|0.58333 10191|0.54167 10192|0.61111 10193|0.52778 10194|0.5 10195|0.5 10196|0.63889 10197|0.55556 10198|0.77778 10199|0.69444 10200|0.63889 10201|0.5 10202|0.5 10203|0.5 10204|0.5 10205|0.5 10206|0.5 10207|0.31944 10208|0.22222 10209|0.5 10210|0.55556 10211|0.70833 10212|0.45833 10213|0.5 10214|0.41667 10215|0.375 10216|0.22222 10217|0.52778 10218|0.75 10219|0.5 10220|0.52778 10221|0.36111 10222|0.5 10223|0.52778 10224|0.38889 10225|0.23611 10226|0.51389 10227|0.5 10228|0.38889 10229|0.54167 10230|0.5 10231|0.5 10232|0.45833 10233|0.51389 10234|0.5 10235|0.13889 10236|0.38889 10237|0.26389 10238|0.41667 10239|0.61111 10240|0.75 10241|0.5 10242|0.31944 10243|0.22222 10244|0.58333 10245|0.59722 10246|0.625 10247|0.41667 10248|0.27778 10249|0.29167 10250|0.5 10251|0.5 10252|0.55556 10253|0.5 10254|0.5 10255|0.5 10256|0.5 10257|0.5 10258|0.58333 10259|0.5 10260|0.5 10261|0.63889 10262|0.77778 10263|0.69444 10264|0.59722 10265|0.77778 10266|0.79167 10267|0.69444 10268|0.77778 10269|0.83333 10270|0.5 10271|0.43056 10272|0.36111 10273|0.5 10274|0.5 10275|0.48611 10276|0.75 10277|0.69444 10278|0.27778 10279|0.30556 10280|0.61111 10281|0.72222 10282|0.45833 10283|0.45833 10284|0.29167 10285|0.5 10286|0.11111 10287|0.22222 10288|0.15278 10289|0.27778 10290|0.19444 10291|0.27778 10292|0.31944 10293|0.43056 10294|0.18056 10295|0.5 10296|0.5 10297|0.52778 10298|0.63889 10299|0.43056 10300|0.30556 10301|0.5 10302|0.54167 10303|0.5 10304|0.5 10305|0.5 10306|0.5 10307|0.5 10308|0.51389 10309|0.097222 10310|0.5 10311|0.55556 10312|0.54167 10313|0.51389 10314|0.52778 10315|0.47222 10316|0.30556 10317|0.58333 10318|0.5 10319|0.61111 10320|0.61111 10321|0.5 10322|0.34722 10323|0.41667 10324|0.44444 10325|0.55556 10326|0.375 10327|0.55556 10328|0.33333 10329|0.5 10330|0.34722 10331|0.29167 10332|0.68056 10333|0.63889 10334|0.5 10335|0.45833 10336|0.25 10337|0.375 10338|0.16667 10339|0.29167 10340|0.5 10341|0.59722 10342|0.25 10343|0.5 10344|0.45833 10345|0.55556 10346|0.76389 10347|0.5 10348|0.5 10349|0.5 10350|0.55556 10351|0.45833 10352|0.33333 10353|0.45833 10354|0.22222 10355|0.18056 10356|0.25 10357|0.56944 10358|0.52778 10359|0.375 10360|0.44444 10361|0.61111 10362|0.44444 10363|0.58333 10364|0.56944 10365|0.48611 10366|0.66667 10367|0.55556 10368|0.22222 10369|0.5 10370|0.5 10371|0.55556 10372|0.55556 10373|0.45833 10374|0.54167 10375|0.70833 10376|0.52778 10377|0.81944 10378|0.47222 10379|0.5 10380|0.47222 10381|0.59722 10382|0.5 10383|0.61111 10384|0.52778 10385|0.5 10386|0.52778 10387|0.56944 10388|0.48611 10389|0.48611 10390|0.54167 10391|0.55556 10392|0.61111 10393|0.88889 10394|0.5 10395|0.56944 10396|0.43056 10397|0.36111 10398|0.47222 10399|0.51389 10400|0.45833 10401|0.5 10402|0.19444 10403|0.56944 10404|0.90278 10405|0.5 10406|0.48611 10407|0.33333 10408|0.43056 10409|0.041667 10410|0.52778 10411|0.30556 10412|0.26389 10413|0.33333 10414|0.27778 10415|0.5 10416|0.52778 10417|0.48611 10418|0.5 10419|0.45833 10420|0.48611 10421|0.30556 10422|0.41667 10423|0.5 10424|0.55556 10425|0.5 10426|0.18056 10427|0.47222 10428|0.36111 10429|0.41667 10430|0.34722 10431|0.51389 10432|0.5 10433|0.48611 10434|0.5 10435|0.59722 10436|0.56944 10437|0.375 10438|0.375 10439|0.55556 10440|0.5 10441|0.55556 10442|0.69444 10443|0.69444 10444|0.16667 10445|0.16667 10446|0.54167 10447|0.45833 10448|0.44444 10449|0.069444 10450|0.34722 10451|0.26389 10452|0.22222 10453|0.38889 10454|0.45833 10455|0.51389 10456|0.61111 10457|0.56944 10458|0.5 10459|0.73611 10460|0.80556 10461|0.81944 10462|0.75 10463|0.68056 10464|0.38889 10465|0.5 10466|0.47222 10467|0.5 10468|0.5 10469|0.51389 10470|0.5 10471|0.66667 10472|0.5 10473|0.43056 10474|0.55556 10475|0.52778 10476|0.5 10477|0.45833 10478|0.52778 10479|0.5 10480|0.45833 10481|0.15278 10482|0.25 10483|0.33333 10484|0.27778 10485|0.33333 10486|0.59722 10487|0.625 10488|0.72222 10489|0.5 10490|0.5 10491|0.55556 10492|0.55556 10493|0.5 10494|0.44444 10495|0.5 10496|0.375 10497|0.25 10498|0.29167 10499|0.40278 10500|0.41667 10501|0.27778 10502|0.54167 10503|0.33333 10504|0.5 10505|0.51389 10506|0.5 10507|0.55556 10508|0.56944 10509|0.5 10510|0.20833 10511|0.41667 10512|0.5 10513|0.54167 10514|0.5 10515|0.22222 10516|0.41667 10517|0.43056 10518|0.51389 10519|0.52778 10520|0.38889 10521|0.41667 10522|0.5 10523|0.70833 10524|0.47222 10525|0.375 10526|0.58333 10527|0.73611 10528|0.31944 10529|0.76389 10530|0.88889 10531|0.93056 10532|0.73611 10533|0.79167 10534|0.33333 10535|0.79167 10536|0.58333 10537|0.77778 10538|0.70833 10539|0.65278 10540|0.80556 10541|0.5 10542|0.76389 10543|0.55556 10544|0.5 10545|0.5 10546|0.52778 10547|0.48611 10548|0.55556 10549|0.31944 10550|0.77778 10551|0.44444 10552|0.26389 10553|0.23611 10554|0.33333 10555|0.69444 10556|0.45833 10557|0.38889 10558|0.125 10559|0.055556 10560|0.56944 10561|0.55556 10562|0.38889 10563|0.22222 10564|0.54167 10565|0.5 10566|0.56944 10567|0.58333 10568|0.16667 10569|0.51389 10570|0.34722 10571|0.47222 10572|0.61111 10573|0.34722 10574|0.5 10575|0.125 10576|0.41667 10577|0.43056 10578|0.375 10579|0.5 10580|0.54167 10581|0.52778 10582|0.5 10583|0.54167 10584|0.52778 10585|0.5 10586|0.56944 10587|0.5 10588|0.5 10589|0.66667 10590|0.5 10591|0.40278 10592|0.5 10593|0.41667 10594|0.5 10595|0.61111 10596|0.56944 10597|0.55556 10598|0.51389 10599|0.52778 10600|0.63889 10601|0.43056 10602|0.26389 10603|0.34722 10604|0.52778 10605|0.5 10606|0.77778 10607|0.66667 10608|0.65278 10609|0.56944 10610|0.48611 10611|0.5 10612|0.069444 10613|0.70833 10614|0.58333 10615|0.625 10616|0.40278 10617|0.47222 10618|0.75 10619|0.56944 10620|0.45833 10621|0.54167 10622|0.16667 10623|0.5 10624|0.69444 10625|0.88889 10626|0.52778 10627|0.26389 10628|0.27778 10629|0.5 10630|0.59722 10631|0.5 10632|0.70833 10633|0.54167 10634|0.54167 10635|0.36111 10636|0.5 10637|0.52778 10638|0.55556 10639|0.40278 10640|0.38889 10641|0.5 10642|0.51389 10643|0.5 10644|0.48611 10645|0.5 10646|0.5 10647|0.34722 10648|0.5 10649|0.5 10650|0.41667 10651|0.59722 10652|0.80556 10653|0.59722 10654|0.81944 10655|0.625 10656|0.43056 10657|0.72222 10658|0.72222 10659|0.5 10660|0.5 10661|0.45833 10662|0.375 10663|0.44444 10664|0.27778 10665|0.33333 10666|0.16667 10667|0.16667 10668|0.44444 10669|0.15278 10670|0.45833 10671|0.51389 10672|0.52778 10673|0.56944 10674|0.66667 10675|0.51389 10676|0.5 10677|0.54167 10678|0.30556 10679|0.44444 10680|0.61111 10681|0.875 10682|0.84722 10683|0.88889 10684|0.73611 10685|0.5 10686|0.44444 10687|0.55556 10688|0.44444 10689|0.5 10690|0.5 10691|0.27778 10692|0.5 10693|0.41667 10694|0.19444 10695|0.5 10696|0.5 10697|0.47222 10698|0.16667 10699|0.15278 10700|0.30556 10701|0.25 10702|0.5 10703|0.51389 10704|0.38889 10705|0.47222 10706|0.30556 10707|0.44444 10708|0.52778 10709|0.20833 10710|0.77778 10711|0.56944 10712|0.55556 10713|0.55556 10714|0.69444 10715|0.55556 10716|0.30556 10717|0.69444 10718|0.72222 10719|0.77778 10720|0.5 10721|0.69444 10722|0.40278 10723|0.5 10724|0.65278 10725|0.38889 10726|0.625 10727|0.45833 10728|0.25 10729|0.19444 10730|0.15278 10731|0.30556 10732|0.11111 10733|0.083333 10734|0.5 10735|0.77778 10736|0.5 10737|0.40278 10738|0.30556 10739|0.5 10740|0.5 10741|0.44444 10742|0.44444 10743|0.54167 10744|0.45833 10745|0.55556 10746|0.45833 10747|0.38889 10748|0.45833 10749|0.069444 10750|0.055556 10751|0.11111 10752|0.73611 10753|0.47222 10754|0.5 10755|0.76389 10756|0.22222 10757|0.36111 10758|0.73611 10759|0.33333 10760|0.5 10761|0.27778 10762|0.5 10763|0.48611 10764|0.5 10765|0.5 10766|0.375 10767|0.61111 10768|0.40278 10769|0.27778 10770|0.5 10771|0.43056 10772|0.5 10773|0.5 10774|0.51389 10775|0.375 10776|0.36111 10777|0.11111 10778|0.29167 10779|0.5 10780|0.36111 10781|0.625 10782|0.47222 10783|0.44444 10784|0.63889 10785|0.47222 10786|0.66667 10787|0.56944 10788|0.63889 10789|0.34722 10790|0.41667 10791|0.19444 10792|0.5 10793|0.5 10794|0.5 10795|0.80556 10796|0.88889 10797|0.5 10798|0.54167 10799|0.56944 10800|0.44444 10801|0.27778 10802|0.31944 10803|0.79167 10804|0.61111 10805|0.5 10806|0.54167 10807|0.5 10808|0.34722 10809|0.70833 10810|0.51389 10811|0.72222 10812|0.93056 10813|0.81944 10814|0.875 10815|0.79167 10816|0.52778 10817|0.59722 10818|0.40278 10819|0.80556 10820|0.70833 10821|0.875 10822|0.83333 10823|0.80556 10824|0.75 10825|0.5 10826|0.5 10827|0.43056 10828|0.29167 10829|0.38889 10830|0.63889 10831|0.22222 10832|0.25 10833|0.29167 10834|0.38889 10835|0.26389 10836|0.38889 10837|0.25 10838|0.40278 10839|0.56944 10840|0.44444 10841|0.88889 10842|0.83333 10843|0.70833 10844|0.55556 10845|0.5 10846|0.5 10847|0.66667 10848|0.47222 10849|0.55556 10850|0.52778 10851|0.59722 10852|0.84722 10853|0.55556 10854|0.58333 10855|0.15278 10856|0.48611 10857|0.52778 10858|0.59722 10859|0.75 10860|0.5 10861|0.80556 10862|0.58333 10863|0.55556 10864|0.66667 10865|0.54167 10866|0.52778 10867|0.54167 10868|0.77778 10869|0.54167 10870|0.58333 10871|0.625 10872|0.59722 10873|0.31944 10874|0.38889 10875|0.68056 10876|0.26389 10877|0.27778 10878|0.61111 10879|0.69444 10880|0.625 10881|0.69444 10882|0.26389 10883|0.38889 10884|0.48611 10885|0.59722 10886|0.72222 10887|0.75 10888|0.81944 10889|0.5 10890|0.5 10891|0.5 10892|0.47222 10893|0.5 10894|0.55556 10895|0.59722 10896|0.16667 10897|0.069444 10898|0.19444 10899|0.38889 10900|0.58333 10901|0.5 10902|0.66667 10903|0.72222 10904|0.5 10905|0.54167 10906|0.375 10907|0.45833 10908|0.45833 10909|0.38889 10910|0.22222 10911|0.5 10912|0.5 10913|0.47222 10914|0.5 10915|0.45833 10916|0.5 10917|0.61111 10918|0.55556 10919|0.44444 10920|0.48611 10921|0.48611 10922|0.5 10923|0.5 10924|0.5 10925|0.65278 10926|0.5 10927|0.45833 10928|0.20833 10929|0.29167 10930|0.27778 10931|0.5 10932|0.48611 10933|0.25 10934|0.33333 10935|0.54167 10936|0.65278 10937|0.13889 10938|0.75 10939|0.48611 10940|0.38889 10941|0.625 10942|0.19444 10943|0.25 10944|0.625 10945|0.59722 10946|0.80556 10947|0.73611 10948|0.93056 10949|0.375 10950|0.41667 10951|0.375 10952|0.5 10953|0.44444 10954|0.5 10955|0.44444 10956|0.45833 10957|0.36111 10958|0.36111 10959|0.30556 10960|0.54167 10961|0.77778 10962|0.65278 10963|0.43056 10964|0.625 10965|0.77778 10966|0.70833 10967|0.33333 10968|0.33333 10969|0.58333 10970|0.69444 10971|0.375 10972|0.5 10973|0.22222 10974|0.16667 10975|0.5 10976|0.5 10977|0.5 10978|0.56944 10979|0.52778 10980|0.61111 10981|0.5 10982|0.65278 10983|0.52778 10984|0.33333 10985|0.52778 10986|0.5 10987|0.61111 10988|0.45833 10989|0.52778 10990|0.52778 10991|0.30556 10992|0.5 10993|0.56944 10994|0.59722 10995|0.51389 10996|0.43056 10997|0.61111 10998|0.38889 10999|0.33333 11000|0.40278 11001|0.5 11002|0.22222 11003|0.16667 11004|0.41667 11005|0.69444 11006|0.73611 11007|0.43056 11008|0.48611 11009|0.22222 11010|0.52778 11011|0.22222 11012|0.52778 11013|0.45833 11014|0.61111 11015|0.5 11016|0.5 11017|0.55556 11018|0.27778 11019|0.5 11020|0.30556 11021|0.54167 11022|0.58333 11023|0.5 11024|0.47222 11025|0.5 11026|0.30556 11027|0.44444 11028|0.45833 11029|0.68056 11030|0.5 11031|0.61111 11032|0.68056 11033|0.84722 11034|0.13889 11035|0.68056 11036|0.27778 11037|0.30556 11038|0.29167 11039|0.81944 11040|0.19444 11041|0.34722 11042|0.72222 11043|0.70833 11044|0.23611 11045|0.29167 11046|0.375 11047|0.45833 11048|0.5 11049|0.47222 11050|0.33333 11051|0.77778 11052|0.30556 11053|0.38889 11054|0.54167 11055|0.59722 11056|0.29167 11057|0.65278 11058|0.65278 11059|0.65278 11060|0.56944 11061|0.70833 11062|0.75 11063|0.77778 11064|0.73611 11065|0.5 11066|0.19444 11067|0.19444 11068|0.56944 11069|0.44444 11070|0.55556 11071|0.36111 11072|0.51389 11073|0.61111 11074|0.66667 11075|0.43056 11076|0.43056 11077|0.98611 11078|0.72222 11079|0.38889 11080|0.61111 11081|0.81944 11082|0.5 11083|0.59722 11084|0.86111 11085|0.47222 11086|0.22222 11087|0.56944 11088|0.5 11089|0.65278 11090|0.36111 11091|0.5 11092|0.54167 11093|0.58333 11094|0.33333 11095|0.27778 11096|0.25 11097|0.61111 11098|0.58333 11099|0.55556 11100|0.84722 11101|0.79167 11102|0.34722 11103|0.58333 11104|0.20833 11105|0.47222 11106|0.52778 11107|0.51389 11108|0.51389 11109|0.19444 11110|0.31944 11111|0.63889 11112|0.47222 11113|0.30556 11114|0.61111 11115|0.68056 11116|0.54167 11117|0.5 11118|0.125 11119|0.47222 11120|0.5 11121|0.16667 11122|0.26389 11123|0.70833 11124|0.31944 11125|0.45833 11126|0.73611 11127|0.51389 11128|0.58333 11129|0.55556 11130|0.5 11131|0.45833 11132|0.44444 11133|0.15278 11134|0.22222 11135|0.375 11136|0.30556 11137|0.51389 11138|0.45833 11139|0.40278 11140|0.22222 11141|0.44444 11142|0.375 11143|0.22222 11144|0.51389 11145|0.51389 11146|0.38889 11147|0.70833 11148|0.41667 11149|0.31944 11150|0.20833 11151|0.5 11152|0.44444 11153|0.40278 11154|0.51389 11155|0.36111 11156|0.58333 11157|0.56944 11158|0.52778 11159|0.41667 11160|0.59722 11161|0.125 11162|0.27778 11163|0.18056 11164|0.30556 11165|0.5 11166|0.56944 11167|0.31944 11168|0.5 11169|0.72222 11170|0.55556 11171|0.54167 11172|0.51389 11173|0.22222 11174|0.31944 11175|0.5 11176|0.5 11177|0.63889 11178|0.69444 11179|0.66667 11180|0.52778 11181|0.51389 11182|0.5 11183|0.5 11184|0.5 11185|0.34722 11186|0.47222 11187|0.5 11188|0.48611 11189|0.34722 11190|0.44444 11191|0.5 11192|0.30556 11193|0.26389 11194|0.47222 11195|0.5 11196|0.48611 11197|0.5 11198|0.61111 11199|0.23611 11200|0.33333 11201|0.5 11202|0.58333 11203|0.47222 11204|0.40278 11205|0.15278 11206|0.52778 11207|0.48611 11208|0.38889 11209|0.54167 11210|0.5 11211|0.875 11212|0.76389 11213|0.69444 11214|0.72222 11215|0.5 11216|0.5 11217|0.55556 11218|0.5 11219|0.40278 11220|0.16667 11221|0.5 11222|0.54167 11223|0.5 11224|0.72222 11225|0.66667 11226|0.5 11227|0.65278 11228|0.59722 11229|0.65278 11230|0.68056 11231|0.58333 11232|0.73611 11233|0.625 11234|0.34722 11235|0.40278 11236|0.34722 11237|0.29167 11238|0.55556 11239|0.70833 11240|0.77778 11241|0.47222 11242|0.48611 11243|0.5 11244|0.45833 11245|0.56944 11246|0.5 11247|0.55556 11248|0.27778 11249|0.38889 11250|0.44444 11251|0.40278 11252|0.43056 11253|0.5 11254|0.79167 11255|0.73611 11256|0.55556 11257|0.5 11258|0.69444 11259|0.5 11260|0.47222 11261|0.51389 11262|0.55556 11263|0.5 11264|0.55556 11265|0.5 11266|0.22222 11267|0.55556 11268|0.5 11269|0.56944 11270|0.52778 11271|0.55556 11272|0.33333 11273|0.27778 11274|0.30556 11275|0.34722 11276|0.51389 11277|0.47222 11278|0.38889 11279|0.5 11280|0.5 11281|0.5 11282|0.45833 11283|0.59722 11284|0.23611 11285|0.31944 11286|0.43056 11287|0.43056 11288|0.86111 11289|0.5 11290|0.5 11291|0.5 11292|0.77778 11293|0.73611 11294|0.5 11295|0.54167 11296|0.375 11297|0.40278 11298|0.52778 11299|0.58333 11300|0.45833 11301|0.27778 11302|0.52778 11303|0.5 11304|0.56944 11305|0.61111 11306|0.55556 11307|0.52778 11308|0.59722 11309|0.44444 11310|0.5 11311|0.5 11312|0.84722 11313|0.33333 11314|0.55556 11315|0.66667 11316|0.5 11317|0.61111 11318|0.5 11319|0.54167 11320|0.55556 11321|0.51389 11322|0.65278 11323|0.52778 11324|0.44444 11325|0.30556 11326|0.79167 11327|0.16667 11328|0.34722 11329|0.15278 11330|0.11111 11331|0.23611 11332|0.61111 11333|0.27778 11334|0.55556 11335|0.56944 11336|0.54167 11337|0.79167 11338|0.54167 11339|0.40278 11340|0.58333 11341|0.54167 11342|0.5 11343|0.38889 11344|0.55556 11345|0.5 11346|0.55556 11347|0.51389 11348|0.69444 11349|0.76389 11350|0.63889 11351|0.65278 11352|0.66667 11353|0.68056 11354|0.59722 11355|0.5 11356|0.47222 11357|0.5 11358|0.55556 11359|0.13889 11360|0.5 11361|0.5 11362|0.5 11363|0.5 11364|0.625 11365|0.68056 11366|0.63889 11367|0.72222 11368|0.63889 11369|0.5 11370|0.94444 11371|0.5 11372|0.58333 11373|0.68056 11374|0.45833 11375|0.54167 11376|0.38889 11377|0.47222 11378|0.63889 11379|0.54167 11380|0.625 11381|0.40278 11382|0.45833 11383|0.79167 11384|0.88889 11385|0.625 11386|0.18056 11387|0.16667 11388|0.15278 11389|0.30556 11390|0.25 11391|0.36111 11392|0.16667 11393|0.36111 11394|0.44444 11395|0.48611 11396|0.61111 11397|0.23611 11398|0.94444 11399|0.97222 11400|0.90278 11401|0.84722 11402|0.94444 11403|0.93056 11404|0.73611 11405|0.86111 11406|0.5 11407|0.375 11408|0.34722 11409|0.45833 11410|0.65278 11411|0.55556 11412|0.069444 11413|0.5 11414|0.91667 11415|0.91667 11416|0.5 11417|0.38889 11418|0.5 11419|0.33333 11420|0.51389 11421|0.5 11422|0.52778 11423|0.5 11424|0.59722 11425|0.54167 11426|0.63889 11427|0.58333 11428|0.34722 11429|0.625 11430|0.55556 11431|0.34722 11432|0.34722 11433|0.55556 11434|0.56944 11435|0.52778 11436|0.47222 11437|0.51389 11438|0.5 11439|0.69444 11440|0.56944 11441|0.58333 11442|0.52778 11443|0.51389 11444|0.47222 11445|0.45833 11446|0.59722 11447|0.38889 11448|0.76389 11449|0.63889 11450|0.59722 11451|0.625 11452|0.34722 11453|0.51389 11454|0.51389 11455|0.65278 11456|0.69444 11457|0.31944 11458|0.5 11459|0.48611 11460|0.54167 11461|0.5 11462|0.51389 11463|0.55556 11464|0.41667 11465|0.41667 11466|0.25 11467|0.40278 11468|0.26389 11469|0.23611 11470|0.16667 11471|0.26389 11472|0.13889 11473|0.13889 11474|0.45833 11475|0.43056 11476|0.55556 11477|0.68056 11478|0.33333 11479|0.5 11480|0.55556 11481|0.61111 11482|0.55556 11483|0.5 11484|0.33333 11485|0.44444 11486|0.43056 11487|0.48611 11488|0.43056 11489|0.33333 11490|0.20833 11491|0.5 11492|0.43056 11493|0.38889 11494|0.34722 11495|0.47222 11496|0.45833 11497|0.33333 11498|0.31944 11499|0.54167 11500|0.5 11501|0.51389 11502|0.52778 11503|0.5 11504|0.5 11505|0.5 11506|0.58333 11507|0.5 11508|0.55556 11509|0.77778 11510|0.5 11511|0.5 11512|0.80556 11513|0.73611 11514|0.70833 11515|0.68056 11516|0.68056 11517|0.72222 11518|0.69444 11519|0.55556 11520|0.75 11521|0.58333 11522|0.55556 11523|0.52778 11524|0.48611 11525|0.625 11526|0.52778 11527|0.54167 11528|0.76389 11529|0.625 11530|0.68056 11531|0.31944 11532|0.41667 11533|0.5 11534|0.51389 11535|0.65278 11536|0.54167 11537|0.52778 11538|0.5 11539|0.43056 11540|0.45833 11541|0.38889 11542|0.5 11543|0.52778 11544|0.45833 11545|0.5 11546|0.40278 11547|0.44444 11548|0.34722 11549|0.31944 11550|0.18056 11551|0.15278 11552|0.16667 11553|0.48611 11554|0.47222 11555|0.13889 11556|0.5 11557|0.55556 11558|0.5 11559|0.875 11560|0.80556 11561|0.47222 11562|0.55556 11563|0.59722 11564|0.54167 11565|0.51389 11566|0.75 11567|0.51389 11568|0.66667 11569|0.70833 11570|0.44444 11571|0.20833 11572|0.43056 11573|0.5 11574|0.66667 11575|0.5 11576|0.54167 11577|0.48611 11578|0.47222 11579|0.43056 11580|0.15278 11581|0.16667 11582|0.52778 11583|0.52778 11584|0.52778 11585|0.45833 11586|0.44444 11587|0.33333 11588|0.61111 11589|0.61111 11590|0.52778 11591|0.5 11592|0.40278 11593|0.5 11594|0.54167 11595|0.48611 11596|0.5 11597|0.59722 11598|0.5 11599|0.59722 11600|0.5 11601|0.5 11602|0.5 11603|0.48611 11604|0.13889 11605|0.26389 11606|0.5 11607|0.5 11608|0.29167 11609|0.5 11610|0.5 11611|0.48611 11612|0.44444 11613|0.44444 11614|0.55556 11615|0.36111 11616|0.56944 11617|0.5 11618|0.5 11619|0.56944 11620|0.55556 11621|0.5 11622|0.5 11623|0.5 11624|0.34722 11625|0.47222 11626|0.43056 11627|0.45833 11628|0.625 11629|0.70833 11630|0.72222 11631|0.83333 11632|0.84722 11633|0.875 11634|0.88889 11635|0.51389 11636|0.41667 11637|0.30556 11638|0.20833 11639|0.11111 11640|0.27778 11641|0.15278 11642|0.41667 11643|0.30556 11644|0.5 11645|0.52778 11646|0.61111 11647|0.5 11648|0.55556 11649|0.59722 11650|0.65278 11651|0.48611 11652|0.27778 11653|0.29167 11654|0.30556 11655|0.38889 11656|0.25 11657|0.18056 11658|0.25 11659|0.59722 11660|0.5 11661|0.5 11662|0.34722 11663|0.52778 11664|0.68056 11665|0.5 11666|0.20833 11667|0.34722 11668|0.25 11669|0.34722 11670|0.33333 11671|0.43056 11672|0.30556 11673|0.44444 11674|0.5 11675|0.40278 11676|0.31944 11677|0.36111 11678|0.73611 11679|0.73611 11680|0.65278 11681|0.55556 11682|0.76389 11683|0.72222 11684|0.72222 11685|0.75 11686|0.72222 11687|0.5 11688|0.36111 11689|0.40278 11690|0.38889 11691|0.16667 11692|0.29167 11693|0.51389 11694|0.73611 11695|0.5 11696|0.54167 11697|0.51389 11698|0.20833 11699|0.38889 11700|0.15278 11701|0.5 11702|0.47222 11703|0.58333 11704|0.45833 11705|0.5 11706|0.72222 11707|0.61111 11708|0.47222 11709|0.5 11710|0.27778 11711|0.27778 11712|0.26389 11713|0.22222 11714|0.52778 11715|0.16667 11716|0.47222 11717|0.36111 11718|0.34722 11719|0.5 11720|0.61111 11721|0.73611 11722|0.83333 11723|0.75 11724|0.83333 11725|0.69444 11726|0.69444 11727|0.94444 11728|0.55556 11729|0.65278 11730|0.54167 11731|0.38889 11732|0.47222 11733|0.69444 11734|0.66667 11735|0.81944 11736|0.80556 11737|0.69444 11738|0.5 11739|0.5 11740|0.80556 11741|0.51389 11742|0.16667 11743|0.30556 11744|0.5 11745|0.27778 11746|0.59722 11747|0.61111 11748|0.34722 11749|0.56944 11750|0.5 11751|0.5 11752|0.5 11753|0.055556 11754|0.069444 11755|0.77778 11756|0.45833 11757|0.375 11758|0.30556 11759|0.30556 11760|0.30556 11761|0.097222 11762|0.11111 11763|0.25 11764|0.15278 11765|0.23611 11766|0.125 11767|0.16667 11768|0.29167 11769|0.36111 11770|0.26389 11771|0.5 11772|0.23611 11773|0.55556 11774|0.59722 11775|0.5 11776|0.51389 11777|0.55556 11778|0.5 11779|0.5 11780|0.5 11781|0.56944 11782|0.5 11783|0.52778 11784|0.5 11785|0.5 11786|0.5 11787|0.41667 11788|0.52778 11789|0.52778 11790|0.72222 11791|0.40278 11792|0.56944 11793|0.44444 11794|0.36111 11795|0.55556 11796|0.73611 11797|0.5 11798|0.63889 11799|0.44444 11800|0.66667 11801|0.63889 11802|0.68056 11803|0.5 11804|0.56944 11805|0.55556 11806|0.5 11807|0.5 11808|0.40278 11809|0.41667 11810|0.5 11811|0.54167 11812|0.5 11813|0.5 11814|0.47222 11815|0.66667 11816|0.48611 11817|0.40278 11818|0.36111 11819|0.5 11820|0.5 11821|0.5 11822|0.5 11823|0.56944 11824|0.5 11825|0.51389 11826|0.5 11827|0.44444 11828|0.68056 11829|0.68056 11830|0.58333 11831|0.68056 11832|0.73611 11833|0.79167 11834|0.90278 11835|0.83333 11836|0.98611 11837|0.5 11838|0.5 11839|0.51389 11840|0.58333 11841|0.44444 11842|0.47222 11843|0.44444 11844|0.5 11845|0.47222 11846|0.5 11847|0.18056 11848|0.15278 11849|0.5 11850|0.44444 11851|0.19444 11852|0.61111 11853|0.72222 11854|0.5 11855|0.52778 11856|0.5 11857|0.5 11858|0.13889 11859|0.16667 11860|0.5 11861|0.16667 11862|0.097222 11863|0.34722 11864|0.34722 11865|0.19444 11866|0.5 11867|0.5 11868|0.65278 11869|0.55556 11870|1 11871|0.94444 11872|0.84722 11873|0.77778 11874|0.31944 11875|0.375 11876|0.44444 11877|0.41667 11878|0.375 11879|0.52778 11880|0.51389 11881|0.5 11882|0.43056 11883|0.38889 11884|0.75 11885|0.36111 11886|0.22222 11887|0.18056 11888|0.61111 11889|0.55556 11890|0.55556 11891|0.5 11892|0.5 11893|0.5 11894|0.5 11895|0.56944 11896|0.5 11897|0.5 11898|0.375 11899|0.27778 11900|0.22222 11901|0.20833 11902|0.16667 11903|0.125 11904|0.19444 11905|0.16667 11906|0.52778 11907|0.61111 11908|0.34722 11909|0.76389 11910|0.52778 11911|0.73611 11912|0.56944 11913|0.80556 11914|0.56944 11915|0.44444 11916|0.5 11917|0.77778 11918|0.59722 11919|0.59722 11920|0.59722 11921|0.75 11922|0.5 11923|0.5 11924|0.88889 11925|0.83333 11926|0.84722 11927|0.84722 11928|0.5 11929|0.52778 11930|0.55556 11931|0.72222 11932|0.26389 11933|0.5 11934|0.45833 11935|0.44444 11936|0.22222 11937|0.055556 11938|0.52778 11939|0.52778 11940|0.83333 11941|0.75 11942|0.59722 11943|0.55556 11944|0.83333 11945|0.63889 11946|0.59722 11947|0.51389 11948|0.52778 11949|0.59722 11950|0.61111 11951|0.61111 11952|0.5 11953|0.91667 11954|0.55556 11955|0.72222 11956|0.36111 11957|0.48611 11958|0.375 11959|0.43056 11960|0.61111 11961|0.51389 11962|0.5 11963|0.27778 11964|0.44444 11965|0.38889 11966|0.40278 11967|0.54167 11968|0.47222 11969|0.45833 11970|0.31944 11971|0.70833 11972|0.58333 11973|0.5 11974|0.66667 11975|0.54167 11976|0.27778 11977|0.80556 11978|0.66667 11979|0.5 11980|0.51389 11981|0.5 11982|0.52778 11983|0.55556 11984|0.52778 11985|0.47222 11986|0.54167 11987|0.52778 11988|0.5 11989|0.5 11990|0.47222 11991|0.40278 11992|0.29167 11993|0.58333 11994|0.5 11995|0.55556 11996|0.44444 11997|0.65278 11998|0.5 11999|0.47222 12000|0.5 12001|0.5 12002|0.52778 12003|0.56944 12004|0.375 12005|0.5 12006|0.5 12007|0.5 12008|0.54167 12009|0.5 12010|0.45833 12011|0.5 12012|0.54167 12013|0.45833 12014|0.52778 12015|0.5 12016|0.52778 12017|0.5 12018|0.5 12019|0.5 12020|0.5 12021|0.5 12022|0.80556 12023|0.86111 12024|0.40278 12025|0.40278 12026|0.5 12027|0.5 12028|0.5 12029|0.54167 12030|0.44444 12031|0.55556 12032|0.5 12033|0.5 12034|0.54167 12035|0.5 12036|0.875 12037|0.83333 12038|0.27778 12039|0.22222 12040|0.125 12041|0.5 12042|0.66667 12043|0.55556 12044|0.5 12045|0.5 12046|0.54167 12047|0.055556 12048|0 12049|0.013889 12050|0.11111 12051|0.5 12052|0.5 12053|0.97222 12054|0.66667 12055|0.86111 12056|0.94444 12057|0.95833 12058|0.48611 12059|0.45833 12060|0.44444 12061|0.52778 12062|0.5 12063|0.27778 12064|0.5 12065|0.52778 12066|0.55556 12067|0.33333 12068|0.40278 12069|0.36111 12070|0.5 12071|0.5 12072|0.55556 12073|0.66667 12074|0.45833 12075|0.51389 12076|0.5 12077|0.33333 12078|0.59722 12079|0.5 12080|0.5 12081|0.61111 12082|0.5 12083|0.44444 12084|0.375 12085|0.19444 12086|0.30556 12087|0.91667 12088|0.75 12089|0.15278 12090|0.47222 12091|0.875 12092|0.80556 12093|0.79167 12094|0.5 12095|0.5 12096|0.31944 12097|0.45833 12098|0.20833 12099|0.45833 12100|0.5 12101|0.11111 12102|0.36111 12103|0.34722 12104|0.5 12105|0.41667 12106|0.66667 12107|0.5 12108|0.41667 12109|0.26389 12110|0.5 12111|0.26389 12112|0.52778 12113|0.22222 12114|0.63889 12115|0.58333 12116|0.47917 12117|0.19444 12118|0.18056 12119|0.51389 12120|0.45833 12121|0.31944 12122|0.5 12123|0.33333 12124|0.81944 12125|0.41667 12126|0.68056 12127|0.52778 12128|0.54167 12129|0.48611 12130|0.55556 12131|0.29167 12132|0.22222 12133|0.59722 12134|0.88889 12135|0.40278 12136|0.625 12137|0.56944 12138|0.58333 12139|0.69444 12140|0.38889 12141|0.45833 12142|0.48611 12143|0.63889 12144|0.30556 12145|0.66667 12146|0.52778 12147|0.66667 12148|0.36111 12149|0.375 12150|0.30556 12151|0.56944 12152|0.61111 12153|0.19444 12154|0.27778 12155|0.26389 12156|0.375 12157|0.44444 12158|0.65278 12159|0.70833 12160|0.40278 12161|1 12162|0.97222 12163|0.097222 12164|0.125 12165|0.77778 12166|0.70833 12167|0.55556 12168|0.26389 12169|0.43056 12170|0.52778 12171|0.55556 12172|0.69444 12173|0.45833 12174|0.23611 12175|0.48611 12176|0.5 12177|0.44444 12178|0.44444 12179|0.51389 12180|0.30556 12181|0.41667 12182|0.15278 12183|0.25 12184|0.31944 12185|0.36111 12186|0.625 12187|0.51389 12188|0.5 12189|0.55556 12190|0.61111 12191|0.61111 12192|0.22222 12193|0.31944 12194|0.38889 12195|0.34722 12196|0.375 12197|0.625 12198|0.51389 12199|0.80556 12200|0.72222 12201|0.88889 12202|0.77778 12203|0.5 12204|0.33333 12205|0.56944 12206|0.5 12207|0.51389 12208|0.5 12209|0.52778 12210|0.26389 12211|0.23611 12212|0.097222 12213|0.20833 12214|0.56944 12215|0.5 12216|0.5 12217|0.29167 12218|0.33333 12219|0.5 12220|0.5 12221|0.055556 12222|0.125 12223|0.77778 12224|0.5 12225|0.11111 12226|0.34722 12227|0.5 12228|0.76389 12229|0.36111 12230|0.47222 12231|0.44444 12232|0.51389 12233|0.41667 12234|0.5 12235|0.125 12236|0.38889 12237|0.31944 12238|0.52778 12239|0.61111 12240|0.29167 12241|0.25 12242|0.26389 12243|0.26389 12244|0.30556 12245|0.52778 12246|0.5 12247|0.11111 12248|0.22222 12249|0.29167 12250|0.80556 12251|0.72222 12252|0.76389 12253|0.73611 12254|0.52778 12255|0.5 12256|0.38889 12257|0.29167 12258|0.63889 12259|0.61111 12260|0.51389 12261|0.52778 12262|0.88889 12263|0.83333 12264|0.55556 12265|0.79167 12266|0.41667 12267|0.51389 12268|0.5 12269|0.61111 12270|0.5 12271|0.22222 12272|0.5 12273|0.26389 12274|0.18056 12275|0.5 12276|0.44444 12277|0.5 12278|0.44444 12279|0.5 12280|0.5 12281|0.5 12282|0.375 12283|0.5 12284|0.25 12285|0.80556 12286|0.5 12287|0.52778 12288|0.5 12289|0.36111 12290|0.41667 12291|0.5 12292|0.51389 12293|0.38889 12294|0.76389 12295|0.40278 12296|0.5 12297|0.59722 12298|0.52778 12299|0.11111 12300|0.5 12301|0.58333 12302|0.5 12303|0.18056 12304|0.5 12305|0.20833 12306|0.5 12307|0.625 12308|0.5 12309|0.5 12310|0.375 12311|0.5 12312|0.51389 12313|0.625 12314|0.38889 12315|0.66667 12316|0.58333 12317|0.61111 12318|0.54167 12319|0.20833 12320|0.58333 12321|0.77778 12322|0.73611 12323|0.61111 12324|0.33333 12325|0.54167 12326|0.25 12327|0.5 12328|0.59722 12329|0.47222 12330|0.54167 12331|0.38889 12332|0.5 12333|0.56944 12334|0.5 12335|0.27778 12336|0.94444 12337|0.375 12338|0.58333 12339|0.56944 12340|0.44444 12341|0.48611 12342|0.069444 12343|0.63889 12344|0.5 12345|0.20833 12346|0.25 12347|0.43056 12348|0.34722 12349|0.375 12350|0.61111 12351|0.52778 12352|0.40278 12353|0.51389 12354|0.29167 12355|0.43056 12356|0.55556 12357|0.77778 12358|0.61111 12359|0.55556 12360|0.069444 12361|0.51389 12362|0.45833 12363|0.55556 12364|0.73611 12365|0.5 12366|0.44444 12367|0.83333 12368|0.55556 12369|0.34722 12370|0.31944 12371|0.41667 12372|0.25 12373|0.31944 12374|0.55556 12375|0.5 12376|0.51389 12377|0.72222 12378|0.5 12379|0.18056 12380|0.25 12381|0.73611 12382|0.5 12383|0.33333 12384|0.625 12385|0.33333 12386|0.36111 12387|0.68056 12388|0.47222 12389|0.34722 12390|0.25 12391|0.54167 12392|0.66667 12393|0.66667 12394|0.51389 12395|0.875 12396|0.72222 12397|0.54167 12398|0.59722 12399|0.22222 12400|0.40278 12401|0.36111 12402|0.33333 12403|0.19444 12404|0.52778 12405|0.75 12406|0.66667 12407|0.59722 12408|0.26389 12409|0.76389 12410|0.47222 12411|0.5 12412|0.55556 12413|0.52778 12414|0.23611 12415|0.63889 12416|0.33333 12417|0.38889 12418|0.68056 12419|0.61111 12420|0.27778 12421|0.23611 12422|0.33333 12423|0.52778 12424|0.55556 12425|0.47222 12426|0.45833 12427|0.5 12428|0.45833 12429|0.5 12430|0.5 12431|0.55556 12432|0.27778 12433|0.45833 12434|0.30556 12435|0.66667 12436|0.55556 12437|0.56944 12438|0.56944 12439|0.36111 12440|0.5 12441|0.5 12442|0.58333 12443|0.41667 12444|0.25 12445|0.56944 12446|0.27778 12447|0.625 12448|0.5 12449|0.5 12450|0.23611 12451|0.56944 12452|0.54167 12453|0.54167 12454|0.5 12455|0.56944 12456|0.56944 12457|0.5 12458|0.25 12459|0.5 12460|0.54167 12461|0.51389 12462|0.26389 12463|0.125 12464|0.52778 12465|0.19444 12466|0.47222 12467|0.5 12468|0.51389 12469|0.5 12470|0.625 12471|0.5 12472|0.27778 12473|0.5 12474|0.91667 12475|0.48611 12476|0.51389 12477|0.5 12478|0.52778 12479|0.38889 12480|0.29167 12481|0.34722 12482|0.40278 12483|0.29167 12484|0.22222 12485|0.23611 12486|0.86111 12487|0.29167 12488|0.18056 12489|0.27778 12490|0.31944 12491|0.33333 12492|0.23611 12493|0.79167 12494|0.40278 12495|0.5 12496|0.5 12497|0.36111 12498|0.22222 12499|0.15278 12500|0.11111 12501|0.36111 12502|0.069444 12503|0.36111 12504|0.43056 12505|0.375 12506|0.31944 12507|0.41667 12508|0.23611 12509|0.31944 12510|0.375 12511|0.38889 12512|0.75 12513|0.29167 12514|0.51389 12515|0.27778 12516|0.26389 12517|0.36111 12518|0.31944 12519|0.5 12520|0.54167 12521|0.5 12522|0.93056 12523|0.5 12524|0.45833 12525|0.625 12526|0.5 12527|0.5 12528|0.44444 12529|0.5 12530|0.5 12531|0.68056 12532|0.63889 12533|0.66667 12534|0.51389 12535|0.61111 12536|0.38889 12537|0.38889 12538|0.36111 12539|0.55556 12540|0.23611 12541|0.65278 12542|0.61111 12543|0.76389 12544|0.65278 12545|0.5 12546|0.5 12547|0.51389 12548|0.66667 12549|0.18056 12550|0.25 12551|0.55556 12552|0.5 12553|0.26389 12554|0.52778 12555|0.69444 12556|0.80556 12557|0.48611 12558|0.68056 12559|0.63889 12560|0.59722 12561|0.5 12562|0.58333 12563|0.56944 12564|0.33333 12565|0.11111 12566|0.625 12567|0.45833 12568|0.47222 12569|0.55556 12570|0.41667 12571|0.45833 12572|0.41667 12573|0.16667 12574|0.31944 12575|0.51389 12576|0.54167 12577|0.30556 12578|0.69444 12579|0.625 12580|0.83333 12581|0.90278 12582|0.56944 12583|0.29167 12584|0.5 12585|0.5 12586|0.5 12587|0.5 12588|0.38889 12589|0.36111 12590|0.38889 12591|0.5 12592|0.66667 12593|0.65278 12594|0.61111 12595|0.52778 12596|0.48611 12597|0.56944 12598|0.41667 12599|0.41667 12600|0.5 12601|0.44444 12602|0.70833 12603|0.56944 12604|0.59722 12605|0.5 12606|0.52778 12607|0.40278 12608|0.5 12609|0.69444 12610|0.5 12611|0.5 12612|0.61111 12613|0.5 12614|0.11111 12615|0.18056 12616|0.15278 12617|0.055556 12618|0.75 12619|0.54167 12620|0.5 12621|0.66667 12622|0.27778 12623|0.30556 12624|0.34722 12625|0.34722 12626|0.375 12627|0.34722 12628|0.22222 12629|0.069444 12630|0.48611 12631|0.22222 12632|0.16667 12633|0.31944 12634|0.40278 12635|0.54167 12636|0.55556 12637|0.34722 12638|0.375 12639|0.43056 12640|0.77778 12641|0.51389 12642|0.58333 12643|0.875 12644|0.68056 12645|0.86111 12646|0.44444 12647|0.5 12648|0.5 12649|0.52778 12650|0.63889 12651|0.44444 12652|0.45833 12653|0.27778 12654|0.55556 12655|0.30556 12656|0.29167 12657|0.31944 12658|0.18056 12659|0.375 12660|0.31944 12661|0.55556 12662|0.56944 12663|0.5 12664|0.16667 12665|0.66667 12666|0.48611 12667|0.34722 12668|0.27778 12669|0.23611 12670|0.26389 12671|0.54167 12672|0.61111 12673|0.40278 12674|0.055556 12675|0.15278 12676|0.36111 12677|0.44444 12678|0.23611 12679|0.44444 12680|0.33333 12681|0.18056 12682|0.33333 12683|0.15278 12684|0.20833 12685|0.51389 12686|0.88889 12687|0.19444 12688|0.36111 12689|0.56944 12690|0.20833 12691|0.33333 12692|0.097222 12693|0.38889 12694|0.083333 12695|0.45833 12696|0.41667 12697|0.5 12698|0.5 12699|0.40278 12700|0.29167 12701|0.5 12702|0.70833 12703|0.5 12704|0.125 12705|0.083333 12706|0.43056 12707|0.51389 12708|0.79167 12709|0.68056 12710|0.61111 12711|0.75 12712|0.47222 12713|0.5 12714|0.51389 12715|0.51389 12716|0.19444 12717|0.25 12718|0.027778 12719|0.48611 12720|0.45833 12721|0.58333 12722|0.73611 12723|0.23611 12724|0.5 12725|0.875 12726|0.44444 12727|0.5 12728|0.5 12729|0.27778 12730|0.20833 12731|0.44444 12732|0.41667 12733|0.45833 12734|0.48611 12735|0.20833 12736|0.5 12737|0.5 12738|0.52778 12739|0.375 12740|0.43056 12741|0.5 12742|0.5 12743|0.5 12744|0.55556 12745|0.52778 12746|0.58333 12747|0.375 12748|0.55556 12749|0.41667 12750|0.30556 12751|0.27778 12752|0.18056 12753|0.31944 12754|0.11111 12755|0.38889 12756|0.33333 12757|0.19444 12758|0.27778 12759|0.52778 12760|0.5 12761|0.16667 12762|0.27778 12763|0.48611 12764|0.5 12765|0.47222 12766|0.56944 12767|0.77778 12768|0.84722 12769|0.77778 12770|0.52778 12771|0.83333 12772|0.91667 12773|0.625 12774|0.83333 12775|0.86111 12776|0.83333 12777|0.86111 12778|0.94444 12779|0.61111 12780|0.41667 12781|0.375 12782|0.34722 12783|0.5 12784|0.5 12785|0.30556 12786|0.5 12787|0.5 12788|0.23611 12789|0.29167 12790|0.5 12791|0.11111 12792|0.31944 12793|0.40278 12794|0.5 12795|0.5 12796|0.23611 12797|0.56944 12798|0.61111 12799|0.76389 12800|0.73611 12801|0.5 12802|0.65278 12803|0.58333 12804|0.63889 12805|0.5 12806|0.38889 12807|0.48611 12808|0.56944 12809|0.41667 12810|0.33333 12811|0.51389 12812|0.055556 12813|0.25 12814|0.23611 12815|0.41667 12816|0.34722 12817|0.5 12818|0.23611 12819|0.5 12820|0.5 12821|0.29167 12822|0.73611 12823|0.5 12824|0.34722 12825|0.5 12826|0.44444 12827|0.38889 12828|0.45833 12829|0.20833 12830|0.52778 12831|0.25 12832|0.44444 12833|0.52778 12834|0.375 12835|0.52778 12836|0.56944 12837|0.44444 12838|0.45833 12839|0.31944 12840|0.63889 12841|0.69444 12842|0.38889 12843|0.77778 12844|0.61111 12845|0.81944 12846|0.77778 12847|0.41667 12848|0.38889 12849|0.44444 12850|0.13889 12851|0.19444 12852|0.5 12853|0.16667 12854|0.22222 12855|0.77778 12856|0.95833 12857|0.91667 12858|0.40278 12859|0.375 12860|0.44444 12861|0.29167 12862|0.29167 12863|0.19444 12864|0.20833 12865|0.52778 12866|0.76389 12867|0.72222 12868|0.055556 12869|0.5 12870|0.16667 12871|0.5 12872|0.55556 12873|0.5 12874|0.5 12875|0.58333 12876|0.61111 12877|0.72222 12878|0.30556 12879|0.29167 12880|0.29167 12881|0.097222 12882|0.59722 12883|0.5 12884|0.5 12885|0.79167 12886|0.88889 12887|0.5 12888|0.5 12889|0.5 12890|0.5 12891|0.36111 12892|0.44444 12893|0.31944 12894|0.36111 12895|0.47222 12896|0.31944 12897|0.29167 12898|0.13889 12899|0.19444 12900|0.11111 12901|0.5 12902|0.5 12903|0.15278 12904|0.18056 12905|0.59722 12906|0.54167 12907|0.68056 12908|0.5 12909|0.22222 12910|0.61111 12911|0.5 12912|0.40278 12913|0.44444 12914|0.5 12915|0.5 12916|0.54167 12917|0.5 12918|0.5 12919|0.5 12920|0.5 12921|0.51389 12922|0.66667 12923|0.5 12924|0.55556 12925|0.66667 12926|0.65278 12927|0.68056 12928|0.66667 12929|0.79167 12930|0.68056 12931|0.73611 12932|0.5 12933|0.5 12934|0.77778 12935|0.47222 12936|0.41667 12937|0.44444 12938|0.47222 12939|0.69444 12940|0.38889 12941|0.19444 12942|0.22222 12943|0.25 12944|0.38889 12945|0.55556 12946|0.33333 12947|0.19444 12948|0.76389 12949|0.52778 12950|0.58333 12951|0.86111 12952|0.94444 12953|0.94444 12954|0.55556 12955|0.43056 12956|0.44444 12957|0.38889 12958|0.61111 12959|0.76389 12960|0.5 12961|0.45833 12962|0.56944 12963|0.29167 12964|0.34722 12965|0.41667 12966|0.18056 12967|0.52778 12968|0.56944 12969|0.51389 12970|0.25 12971|0.375 12972|0.22222 12973|0.38889 12974|0.27778 12975|0.52778 12976|0.55556 12977|0.375 12978|0.52778 12979|0.36111 12980|0.18056 12981|0.34722 12982|0.27778 12983|0.16667 12984|0.20833 12985|0.70833 12986|0.44444 12987|0.47222 12988|0.38889 12989|0.5 12990|0.51389 12991|0.41667 12992|0.56944 12993|0.41667 12994|0.40278 12995|0.5 12996|0.56944 12997|0.5 12998|0.47222 12999|0.77778 13000|0.30556 13001|0.22222 13002|0.19444 13003|0.63889 13004|0.65278 13005|0.44444 13006|0.875 13007|0.40278 13008|0.5 13009|0.44444 13010|0.29167 13011|0.48611 13012|0.5 13013|0.58333 13014|0.5 13015|0.48611 13016|0.375 13017|0.44444 13018|0.43056 13019|0.20833 13020|0.56944 13021|0.63889 13022|0.54167 13023|0.33333 13024|0.34722 13025|0.36111 13026|0.52778 13027|0.30556 13028|0.375 13029|0.73611 13030|0.66667 13031|0.30556 13032|0.38889 13033|0.47222 13034|0.5 13035|0.65278 13036|0.54167 13037|0.54167 13038|0.29167 13039|0.23611 13040|0.76389 13041|0.72222 13042|0.69444 13043|0.68056 13044|0.70833 13045|0.625 13046|0.5 13047|0.36111 13048|0.31944 13049|0.375 13050|0.56944 13051|0.55556 13052|0.5 13053|0.52778 13054|0.47222 13055|0.5 13056|0.47222 13057|0.61111 13058|0.26389 13059|0.54167 13060|0.5 13061|0.70833 13062|0.69444 13063|0.30556 13064|0.70833 13065|0.5 13066|0.52778 13067|0.70833 13068|0.5 13069|0.56944 13070|0.77778 13071|0.5 13072|0.52778 13073|0.84722 13074|0.5 13075|0.55556 13076|0.54167 13077|0.51389 13078|0.52778 13079|0.51389 13080|0.80556 13081|0.69444 13082|0.083333 13083|0.58333 13084|0.61111 13085|0.44444 13086|0.13889 13087|0.61111 13088|0.47222 13089|0.44444 13090|0.22222 13091|0.25 13092|0.5 13093|0.48611 13094|0.61111 13095|0.69444 13096|0.54167 13097|0.77778 13098|0.65278 13099|0.66667 13100|0.625 13101|0.5 13102|0.5 13103|0.31944 13104|0.5 13105|0.55556 13106|0.55556 13107|0.16667 13108|0.94444 13109|0.58333 13110|0.48611 13111|0.51389 13112|0.55556 13113|0.5 13114|0.625 13115|0.5 13116|0.69444 13117|0.66667 13118|0.30556 13119|0.86111 13120|0.25 13121|0.77778 13122|0.77778 13123|0.58333 13124|0.80556 13125|0.31944 13126|0.75 13127|0.45833 13128|0.52778 13129|0.72222 13130|0.80556 13131|0.36111 13132|0.69444 13133|0.80556 13134|0.73611 13135|0.375 13136|0.36111 13137|0.55556 13138|0.61111 13139|0.5 13140|0.34722 13141|0.72222 13142|0.59722 13143|0.56944 13144|0.5 13145|0.013889 13146|0.25 13147|0.125 13148|0.069444 13149|0.52778 13150|0.055556 13151|0.47222 13152|0.54167 13153|0.66667 13154|0.44444 13155|0.5 13156|0.58333 13157|0.61111 13158|0.15278 13159|0.52778 13160|0.36111 13161|0.58333 13162|0.41667 13163|0.66667 13164|0.69444 13165|0.54167 13166|0.76389 13167|0.69444 13168|0.5 13169|0.875 13170|0.70833 13171|0.66667 13172|0.44444 13173|0.66667 13174|0.51389 13175|0.72222 13176|0.61111 13177|0.5 13178|0.43056 13179|0.79167 13180|0.5 13181|0.72222 13182|0.88889 13183|0.5 13184|0.5 13185|0.65278 13186|0.5 13187|0.52778 13188|0.5 13189|0.55556 13190|0.47222 13191|0.5 13192|0.54167 13193|0.44444 13194|0.33333 13195|0.48611 13196|0.52778 13197|0.34722 13198|0.125 13199|0.5 13200|0.33333 13201|0.19444 13202|0.27778 13203|0.45833 13204|0.40278 13205|0.40278 13206|0.33333 13207|0.47222 13208|0.27778 13209|0.30556 13210|0.22222 13211|0.5 13212|0.33333 13213|0.5 13214|0.61111 13215|0.77778 13216|0.80556 13217|0.75 13218|0.81944 13219|0.83333 13220|0.5 13221|0.5 13222|0.5 13223|0.72222 13224|0.43056 13225|0.25 13226|0.20833 13227|0.52778 13228|0.16667 13229|0.55556 13230|0.5 13231|0.18056 13232|0.44444 13233|0.55556 13234|0.61111 13235|0.25 13236|0.26389 13237|0.72222 13238|0.79167 13239|0.5 13240|0.5 13241|0.5 13242|0.52778 13243|0.61111 13244|0.77778 13245|0.58333 13246|0.5 13247|0.31944 13248|0.5 13249|0.30556 13250|0.33333 13251|0.15278 13252|0.75 13253|0.63889 13254|0.58333 13255|0.5 13256|0.38889 13257|0.58333 13258|0.47222 13259|0.15278 13260|0.66667 13261|0.44444 13262|0.5 13263|0.38889 13264|0.77778 13265|0.63889 13266|0.47222 13267|0.63889 13268|0.44444 13269|0.33333 13270|0.44444 13271|0.48611 13272|0.43056 13273|0.54167 13274|0.43056 13275|0.16667 13276|0.5 13277|0.80556 13278|0.79167 13279|0.5 13280|0.5 13281|0.52778 13282|0.5 13283|0.52778 13284|0.5 13285|0.73611 13286|0.52778 13287|0.59722 13288|0.77778 13289|0.56944 13290|0.5 13291|0.44444 13292|0.51389 13293|0.58333 13294|0.26389 13295|0.41667 13296|0.33333 13297|0.20833 13298|0.33333 13299|0.31944 13300|0.33333 13301|0.45833 13302|0.5 13303|0.013889 13304|0.23611 13305|0.61111 13306|0.61111 13307|0.26389 13308|0.40278 13309|0.44444 13310|0.19444 13311|0.51389 13312|0.44444 13313|0.65278 13314|0.44444 13315|0.52778 13316|0.22222 13317|0.51389 13318|0.51389 13319|0.52778 13320|0.13889 13321|0.27778 13322|0.125 13323|0.44444 13324|0.45833 13325|0.33333 13326|0.5 13327|0.16667 13328|0.25 13329|0.5 13330|0.43056 13331|0.59722 13332|0.65278 13333|0.875 13334|0.875 13335|0.33333 13336|0.5 13337|1 13338|0.52778 13339|0.375 13340|0.44444 13341|0.26389 13342|0.22222 13343|0.29167 13344|0.44444 13345|0.47222 13346|0.52778 13347|0.36111 13348|0.45833 13349|0.38889 13350|0.63889 13351|0.55556 13352|0.84722 13353|0.76389 13354|0.97222 13355|0.97222 13356|0.63889 13357|0.45833 13358|0.55556 13359|0.11111 13360|0.125 13361|0.5 13362|0.083333 13363|0.76389 13364|0.5 13365|0.41667 13366|0.63889 13367|0.16667 13368|0.33333 13369|0.5 13370|0.40278 13371|0.15278 13372|0.22222 13373|0.18056 13374|0.27778 13375|0.54167 13376|0.5 13377|0.22222 13378|0.40278 13379|0.48611 13380|0.72222 13381|0.54167 13382|0.83333 13383|0.48611 13384|0.52778 13385|0.58333 13386|0.55556 13387|0.5 13388|0.5 13389|0.5 13390|0.52778 13391|0.75 13392|0.5 13393|0.5 13394|0.36111 13395|0.56944 13396|0.41667 13397|0.5 13398|0.5 13399|0.52778 13400|0.40278 13401|0.5 13402|0.76389 13403|0.72222 13404|0.59722 13405|0.5 13406|0.77778 13407|0.88889 13408|0.61111 13409|0.84722 13410|0.5 13411|0.75 13412|0.95833 13413|0.44444 13414|0.5 13415|0.88889 13416|0.5 13417|0.5 13418|0.5 13419|0.5 13420|0.54167 13421|0.27778 13422|0.43056 13423|0.55556 13424|0.63889 13425|0.61111 13426|0.48611 13427|0.66667 13428|0.55556 13429|0.52778 13430|0.5 13431|0.55556 13432|0.69444 13433|0.80556 13434|0.56944 13435|0.80556 13436|0.34722 13437|0.23611 13438|0.84722 13439|0.88889 13440|0.65278 13441|0.69444 13442|0.77778 13443|0.68056 13444|0.75 13445|0.75 13446|0.63889 13447|0.84722 13448|0.77778 13449|0.72222 13450|0.36111 13451|0.38889 13452|0.59722 13453|0.68056 13454|0.83333 13455|0.79167 13456|0.13889 13457|0.75 13458|0.72222 13459|0.81944 13460|0.69444 13461|0.36111 13462|0.47222 13463|0.29167 13464|0.26389 13465|0.43056 13466|0.55556 13467|0.5 13468|0.73611 13469|0.59722 13470|0.83333 13471|0.75 13472|0.61111 13473|0.73611 13474|0.625 13475|0.65278 13476|0.68056 13477|0.80556 13478|1 13479|0.875 13480|0.63889 13481|0.58333 13482|0.44444 13483|0.48611 13484|0.55556 13485|0.73611 13486|0.61111 13487|0.65278 13488|0.625 13489|0.5 13490|0.59722 13491|0.75 13492|0.52778 13493|0.84722 13494|0.51389 13495|0.5 13496|0.45833 13497|0.81944 13498|0.72222 13499|0.40278 13500|0.68056 13501|0.77778 13502|0.81944 13503|0.65278 13504|0.76389 13505|0.73611 13506|0.81944 13507|0.63889 13508|0.36111 13509|0.59722 13510|0.36111 13511|0.875 13512|0.875 13513|0.66667 13514|0.66667 13515|0.76389 13516|0.43056 13517|0.70833 13518|0.86111 13519|0.66667 13520|0.83333 13521|0.58333 13522|0.59722 13523|0.33333 13524|0.59722 13525|0.72222 13526|0.76389 13527|0.55556 13528|0.65278 13529|0.81944 13530|0.55556 13531|0.59722 13532|0.52778 13533|0.38889 13534|0.66667 13535|0.65278 13536|0.66667 13537|0.81944 13538|0.70833 13539|0.38889 13540|0.5 13541|0.80556 13542|0.76389 13543|0.84722 13544|0.68056 13545|0.5 13546|0.77778 13547|0.33333 13548|0.18056 13549|0.52778 13550|0.76389 13551|0.44444 13552|0.55556 13553|0.75 13554|0.76389 13555|0.5 13556|0.61111 13557|0.76389 13558|0.55556 13559|0.52778 13560|0.5 13561|0.79167 13562|0.5 13563|0.61111 13564|0.69444 13565|0.66667 13566|0.45833 13567|0.68056 13568|0.93056 13569|0.45833 13570|0.63889 13571|0.875 13572|0.61111 13573|0.75 13574|0.56944 13575|0.25 13576|0.5 13577|0.5 13578|0.5 13579|0.81944 13580|0.81944 13581|0.73611 13582|0.83333 13583|0.72222 13584|0.72222 13585|0.5 13586|0.88889 13587|0.54167 13588|0.43056 13589|0.76389 13590|0.84722 13591|0.375 13592|0.38889 13593|0.72222 13594|0.45833 13595|0.76389 13596|0.72222 13597|0.79167 13598|0.72222 13599|0.55556 13600|0.81944 13601|0.90278 13602|0.69444 13603|0.75 13604|0.73611 13605|0.83333 13606|0.22222 13607|0.125 13608|0.55556 13609|0.625 13610|0.65278 13611|0.58333 13612|0.81944 13613|0.58333 13614|0.84722 13615|0.63889 13616|0.45833 13617|0.33333 13618|0.5 13619|0.40278 13620|0.45833 13621|0.75 13622|0.68056 13623|0.45833 13624|0.5 13625|0.54167 13626|0.44444 13627|0.65278 13628|0.86111 13629|0.58333 13630|0.83333 13631|0.70833 13632|0.72222 13633|0.66667 13634|0.375 13635|0.30556 13636|0.72222 13637|0.61111 13638|0.79167 13639|0.625 13640|0.69444 13641|0.66667 13642|0.65278 13643|0.5 13644|0.5 13645|0.51389 13646|0.55556 13647|0.58333 13648|0.76389 13649|0.70833 13650|0.72222 13651|0.29167 13652|0.76389 13653|0.61111 13654|0.5 13655|0.625 13656|0.77778 13657|0.77778 13658|0.80556 13659|0.75 13660|0.58333 13661|0.83333 13662|0.68056 13663|0.43056 13664|0.84722 13665|0.61111 13666|0.5 13667|0.59722 13668|0.65278 13669|0.45833 13670|0.83333 13671|0.5 13672|0.72222 13673|0.29167 13674|0.83333 13675|0.625 13676|0.58333 13677|0.65278 13678|0.5 13679|0.4375 13680|0.5 13681|0.73611 13682|0.5 13683|0.40278 13684|0.47222 13685|0.30556 13686|0.48611 13687|0.5 13688|0.33333 13689|0.5 13690|0.5 13691|0.95833 13692|0.5 13693|0.73611 13694|0.5 13695|0.73611 13696|0.77778 13697|0.65278 13698|0.5 13699|0.48611 13700|0.5 13701|0.44444 13702|0.40278 13703|0.79167 13704|0.80556 13705|0.55556 13706|0.5 13707|0.5 13708|0.5 13709|0.76389 13710|0.5 13711|0.51389 13712|0.77778 13713|0.5 13714|0.81944 13715|0.52778 13716|0.66667 13717|0.31944 13718|0.65278 13719|0.79167 13720|0.90278 13721|0.75 13722|0.5 13723|0.38889 13724|0.56944 13725|0.5 13726|0.5 13727|0.5 13728|0.55556 13729|0.54167 13730|0.5 13731|0.5 13732|0.5 13733|0.54167 13734|0.40278 13735|0.5 13736|0.5 13737|0.33333 13738|0.43056 13739|0.5 13740|0.61111 13741|0.58333 13742|0.77778 13743|0.5 13744|0.5 13745|0.5 13746|0.66667 13747|0.16667 13748|0.80556 13749|0.58333 13750|0.23611 13751|0.80556 13752|0.73611 13753|0.76389 13754|0.48611 13755|0.5 13756|0.5 13757|0.70833 13758|0.77778 13759|0.83333 13760|0.5 13761|0.66667 13762|0.75 13763|0.66667 13764|0.59722 13765|0.58333 13766|0.83333 13767|0.76389 13768|0.90278 13769|0.86111 13770|0.75 13771|0.94444 13772|0.44444 13773|0.61111 13774|0.52778 13775|0.79167 13776|0.73611 13777|0.51389 13778|0.25 13779|0.40278 13780|0.95833 13781|0.84722 13782|0.90278 13783|0.94444 13784|0.97222 13785|0.83333 13786|0.76389 13787|0.66667 13788|0.66667 13789|0.55556 13790|0.77778 13791|0.75 13792|0.875 13793|0.58333 13794|0.48611 13795|0.625 13796|0.5 13797|0.72222 13798|0.81944 13799|0.75 13800|0.80556 13801|0.83333 13802|0.76389 13803|0.68056 13804|0.77778 13805|0.65278 13806|0.70833 13807|0.54167 13808|0.80556 13809|0.86111 13810|0.5 13811|0.80556 13812|0.65278 13813|0.81944 13814|0.72222 13815|0.76389 13816|0.58333 13817|0.80556 13818|0.94444 13819|0.90278 13820|0.875 13821|0.84722 13822|0.88889 13823|0.68056 13824|0.83333 13825|0.65278 13826|0.51389 13827|0.47222 13828|0.66667 13829|0.36111 13830|0.5 13831|0.5 13832|0.44444 13833|0.5 13834|0.93056 13835|0.58333 13836|0.5 13837|0.5 13838|0.5 13839|0.5 13840|0.5 13841|0.63889 13842|0.77778 13843|0.77778 13844|0.63889 13845|0.54167 13846|0.77778 13847|0.79167 13848|0.77778 13849|0.625 13850|0.68056 13851|0.77778 13852|0.83333 13853|0.72222 13854|0.45833 13855|0.77778 13856|0.55556 13857|0.5 13858|0.65278 13859|0.5 13860|0.5 13861|0.5 13862|0.33333 13863|0.5 13864|0.5 13865|0.54167 13866|0.83333 13867|0.33333 13868|0.66667 13869|0.5 13870|0.5 13871|0.51389 13872|0.5 13873|0.43056 13874|0.5 13875|0.83333 13876|0.65278 13877|0.72222 13878|0.375 13879|0.58333 13880|0.47222 13881|0.5 13882|0.5 13883|0.44444 13884|0.72222 13885|0.63889 13886|0.5 13887|0.55556 13888|0.5 13889|0.5 13890|0.44444 13891|0.56944 13892|0.63889 13893|0.88889 13894|0.88889 13895|0.5 13896|0.5 13897|0.69444 13898|0.45833 13899|0.5 13900|0.48611 13901|0.55556 13902|0.41667 13903|0.5 13904|0.44444 13905|0.5 13906|0.51389 13907|0.5 13908|0.44444 13909|0.44444 13910|0.55556 13911|0.55556 13912|0.44444 13913|0.5 13914|0.5 13915|0.76389 13916|0.5 13917|0.5 13918|0.5 13919|0.5 13920|0.5 13921|0.70833 13922|0.54167 13923|0.52778 13924|0.68056 13925|0.43056 13926|0.5 13927|0.84722 13928|0.86111 13929|0.47222 13930|0.55556 13931|0.5 13932|0.5 13933|0.5 13934|0.69444 13935|0.61111 13936|0.5 13937|0.5 13938|0.5 13939|0.5 13940|0.5 13941|0.5 13942|0.45833 13943|0.90278 13944|0.55556 13945|0.41667 13946|0.80556 13947|0.52778 13948|0.73611 13949|0.47222 13950|0.55556 13951|0.54167 13952|0.5 13953|0.5 13954|0.5 13955|0.58333 13956|0.5 13957|0.5 13958|0.5 13959|0.72222 13960|0.5 13961|0.5 13962|0.77778 13963|0.73611 13964|0.5 13965|0.54167 13966|0.5 13967|0.79167 13968|0.5 13969|0.5 13970|0.61111 13971|0.68056 13972|0.5 13973|0.5 13974|0.61111 13975|0.56944 13976|0.51389 13977|0.54167 13978|0.5 13979|0.80556 13980|0.5 13981|0.5 13982|0.5 13983|0.5 13984|0.5 13985|0.84722 13986|0.5 13987|0.5 13988|0.5 13989|0.51389 13990|0.5 13991|0.40278 13992|0.63889 13993|0.63889 13994|0.65278 13995|0.51389 13996|0.5 13997|0.45833 13998|0.76389 13999|0.86111 14000|0.70833 14001|0.83333 14002|0.5 14003|0.5 14004|0.59722 14005|0.95833 14006|0.72222 14007|0.5 14008|0.5 14009|0.5 14010|0.51389 14011|0.77778 14012|0.70833 14013|0.45833 14014|0.5 14015|0.55556 14016|0.84722 14017|0.5 14018|0.65278 14019|0.73611 14020|0.5 14021|0.5 14022|0.83333 14023|0.94444 14024|0.52778 14025|0.5 14026|0.80556 14027|0.5 14028|0.5 14029|0.69444 14030|0.5 14031|0.65278 14032|0.48611 14033|0.47222 14034|0.41667 14035|0.5 14036|0.44444 14037|0.76389 14038|0.5 14039|0.5 14040|0.5 14041|0.97222 14042|0.48611 14043|0.5 14044|0.5 14045|0.5 14046|0.52778 14047|0.33333 14048|0.5 14049|0.70833 14050|0.61111 14051|0.5 14052|0.51389 14053|0.47222 14054|0.94444 14055|0.58333 14056|0.48611 14057|0.58333 14058|0.77778 14059|0.77778 14060|0.80556 14061|0.5 14062|0.51389 14063|0.70833 14064|0.5 14065|0.98611 14066|0.5 14067|0.5 14068|0.5 14069|0.55556 14070|0.61111 14071|0.80556 14072|0.83333 14073|0.5 14074|0.45833 14075|0.61111 14076|0.5 14077|0.5 14078|0.68056 14079|0.5 14080|0.5 14081|0.5 14082|0.59722 14083|0.41667 14084|0.38889 14085|0.5 14086|0.5 14087|0.5 14088|0.38889 14089|0.22222 14090|0.5 14091|0.59722 14092|0.875 14093|0.625 14094|0.47222 14095|0.91667 14096|0.83333 14097|0.5 14098|0.40278 14099|0.45833 14100|0.83333 14101|0.72222 14102|0.44444 14103|0.66667 14104|0.47222 14105|0.18056 14106|0.29167 14107|0.48611 14108|0.51389 14109|0.86111 14110|0.5 14111|0.52778 14112|0.83333 14113|0.5 14114|0.75 14115|0.48611 14116|0.54167 14117|0.56944 14118|0.80556 14119|0.90625 14120|0.91667 14121|0.88889 14122|0.63889 14123|0.73611 14124|0.43056 14125|0.79167 14126|0.63889 14127|0.47222 14128|0.44444 14129|0.66667 14130|0.45833 14131|0.52778 14132|0.65278 14133|0.52778 14134|0.59722 14135|0.38889 14136|0.65278 14137|0.66667 14138|0.86111 14139|0.5 14140|0.5 14141|0.625 14142|0.5 14143|0.55556 14144|0.38889 14145|0.5 14146|0.5 14147|0.5 14148|0.5 14149|0.40278 14150|0.5 14151|0.51389 14152|0.47222 14153|0.5 14154|0.5 14155|0.5 14156|0.25 14157|0.44444 14158|0.79167 14159|0.61111 14160|0.5 14161|0.77778 14162|0.30556 14163|0.70833 14164|0.88889 14165|1 14166|0.58333 14167|0.75 14168|0.83333 14169|0.77778 14170|0.76389 14171|0.5 14172|0.76389 14173|0.81944 14174|0.77778 14175|0.65278 14176|0.45833 14177|0.625 14178|0.69444 14179|0.90278 14180|0.51389 14181|0.45833 14182|0.5 14183|0.52778 14184|0.33333 14185|0.73611 14186|0.41667 14187|0.5 14188|0.5 14189|0.5 14190|0.56944 14191|0.5 14192|0.5 14193|0.5 14194|0.5 14195|0.47222 14196|0.5 14197|0.5 14198|0.55556 14199|0.5 14200|0.41667 14201|0.5 14202|0.65278 14203|0.5 14204|0.5 14205|0.5 14206|0.63889 14207|0.58333 14208|0.5 14209|0.66667 14210|0.76389 14211|0.5 14212|0.5 14213|0.52778 14214|0.43056 14215|0.5 14216|0.5 14217|0.5 14218|0.5 14219|0.5 14220|0.45833 14221|0.5 14222|0.5 14223|0.88889 14224|0.5 14225|0.5 14226|0.81944 14227|0.5 14228|0.61111 14229|0.54167 14230|0.51389 14231|0.59722 14232|0.66667 14233|0.5 14234|0.73611 14235|0.31944 14236|0.31944 14237|0.69444 14238|0.73611 14239|0.5 14240|0.5 14241|0.54167 14242|0.5 14243|0.5 14244|0.5 14245|0.41667 14246|0.54167 14247|0.76389 14248|0.77778 14249|0.75 14250|0.5 14251|0.5 14252|0.44444 14253|0.5 14254|0.61111 14255|0.44444 14256|0.54167 14257|0.5 14258|0.52778 14259|0.5 14260|0.55556 14261|0.5 14262|0.61111 14263|0.80556 14264|0.5 14265|0.125 14266|0.5 14267|0.5 14268|0.5 14269|0.5 14270|0.76389 14271|0.5 14272|0.55556 14273|0.56944 14274|0.44444 14275|0.69444 14276|0.77778 14277|0.5 14278|0.55556 14279|0.45833 14280|0.56944 14281|0.5 14282|0.5 14283|0.56944 14284|0.52778 14285|0.48611 14286|0.79167 14287|0.625 14288|0.5 14289|0.84722 14290|0.52778 14291|0.5 14292|0.5 14293|0.125 14294|0.15278 14295|0.5 14296|0.5 14297|0.72222 14298|0.5 14299|0.55556 14300|0.5 14301|0.5 14302|0.5 14303|0.52778 14304|0.5 14305|0.5 14306|0.73611 14307|0.5 14308|0.47222 14309|0.5 14310|0.5 14311|0.45833 14312|0.5 14313|0.56944 14314|0.70833 14315|0.5 14316|0.5 14317|0.5 14318|0.5 14319|0.61111 14320|0.77778 14321|0.77778 14322|0.5 14323|0.77778 14324|0.38889 14325|0.70833 14326|0.31944 14327|0.69444 14328|0.33333 14329|0.56944 14330|0.65278 14331|0.5 14332|0.5 14333|0.90278 14334|0.5 14335|0.5 14336|0.41667 14337|0.44444 14338|0.11111 14339|0.13889 14340|0.40278 14341|0.36111 14342|0.61111 14343|0.73611 14344|0.43056 14345|0.41667 14346|0.58333 14347|0.40278 14348|0.77778 14349|0.5 14350|0.88889 14351|0.83333 14352|0.55556 14353|0.45833 14354|0.72222 14355|0.61111 14356|0.5 14357|0.93056 14358|0.5 14359|0.86111 14360|0.88889 14361|0.5 14362|0.5 14363|0.55556 14364|0.19444 14365|0.13889 14366|0.66667 14367|0.5 14368|0.5 14369|0.36111 14370|0.47222 14371|0.69444 14372|0.5 14373|0.41667 14374|0.5 14375|0.55556 14376|0.5 14377|0.5 14378|0.5 14379|0.5 14380|0.55556 14381|0.79167 14382|0.5 14383|0.47222 14384|0.43056 14385|0.5 14386|0.5 14387|0.5 14388|0.98611 14389|0.93056 14390|0.54167 14391|0.875 14392|0.5 14393|0.48611 14394|0.66667 14395|0.25 14396|0.45833 14397|0.5 14398|0.55556 14399|0.5 14400|0.5 14401|0.5 14402|0.5 14403|0.5 14404|0.90278 14405|0.5 14406|0.5 14407|0.66667 14408|0.5 14409|0.56944 14410|0.5 14411|0.5 14412|0.5 14413|0.79167 14414|0.5 14415|0.5 14416|0.75 14417|0.5 14418|0.58333 14419|0.72222 14420|0.5 14421|0.45833 14422|0.55556 14423|0.5 14424|0.52778 14425|0.625 14426|0.5 14427|0.66667 14428|0.5 14429|0.5 14430|0.5 14431|0.55556 14432|0.65278 14433|0.76389 14434|0.5 14435|0.5 14436|0.76389 14437|0.91667 14438|0.5 14439|0.44444 14440|0.33333 14441|0.26389 14442|0.5 14443|0.5 14444|0.34722 14445|0.5 14446|0.5 14447|0.5 14448|0.65278 14449|0.77778 14450|0.5 14451|0.5 14452|0.51389 14453|0.77778 14454|0.54167 14455|0.45833 14456|0.5 14457|0.66667 14458|0.5 14459|0.5 14460|0.5 14461|0.5 14462|0.5 14463|0.5 14464|0.43056 14465|0.5 14466|0.81944 14467|0.80556 14468|0.5 14469|0.66667 14470|0.5 14471|0.81944 14472|0.5 14473|0.5 14474|0.5 14475|0.76389 14476|0.63889 14477|0.72222 14478|0.80556 14479|0.5 14480|0.5 14481|0.5 14482|0.5 14483|0.5 14484|0.86111 14485|0.23611 14486|0.5 14487|0.83333 14488|0.77778 14489|0.66667 14490|0.5 14491|0.5 14492|0.51389 14493|0.93056 14494|0.5 14495|0.97222 14496|0.70833 14497|0.80556 14498|0.59722 14499|0.72222 14500|0.70833 14501|0.56944 14502|0.40278 14503|0.5 14504|0.5 14505|0.90278 14506|0.76389 14507|0.93056 14508|0.70833 14509|0.73611 14510|0.43056 14511|0.45833 14512|0.52778 14513|0.625 14514|0.72222 14515|0.80556 14516|0.5 14517|0.75 14518|0.70833 14519|0.5 14520|0.90278 14521|0.5 14522|0.79167 14523|0.33333 14524|0.77778 14525|0.5 14526|0.61111 14527|0.54167 14528|0.72222 14529|0.72222 14530|0.91667 14531|0.77778 14532|0.59722 14533|0.69444 14534|0.90278 14535|0.76389 14536|0.95833 14537|0.77778 14538|0.88889 14539|0.27778 14540|0.76389 14541|0.5 14542|0.47222 14543|0.625 14544|0.5 14545|0.47222 14546|0.33333 14547|0.45833 14548|0.65278 14549|0.5 14550|0.5 14551|0.86111 14552|0.5 14553|0.47222 14554|0.51389 14555|0.5 14556|0.84722 14557|0.70833 14558|0.86111 14559|0.5 14560|0.5 14561|0.80556 14562|0.72222 14563|0.375 14564|0.84722 14565|0.66667 14566|0.56944 14567|0.27778 14568|0.5 14569|0.5 14570|0.38889 14571|0.31944 14572|0.5 14573|0.5 14574|0.55556 14575|0.47222 14576|0.47222 14577|0.56944 14578|0.5 14579|0.56944 14580|0.45833 14581|0.5 14582|0.44444 14583|0.11111 14584|0.36111 14585|0.63889 14586|0.54167 14587|0.43056 14588|0.5 14589|0.5 14590|0.48611 14591|0.47222 14592|0.5 14593|0.56944 14594|0.5 14595|0.54167 14596|0.5 14597|0.5 14598|0.5 14599|0.70833 14600|0.5 14601|0.5 14602|0.083333 14603|0.80556 14604|0.5 14605|0.34722 14606|0.81944 14607|0.5 14608|0.5 14609|0.81944 14610|0.5 14611|0.5 14612|0.5 14613|0.625 14614|0.5 14615|0.5 14616|0.48611 14617|0.80556 14618|0.47222 14619|0.66667 14620|0.5 14621|0.54167 14622|0.375 14623|0.30556 14624|0.61111 14625|0.52778 14626|0.75 14627|0.5 14628|0.5 14629|0.66667 14630|0.5 14631|0.5 14632|0.76389 14633|0.86111 14634|0.68056 14635|0.88889 14636|0.5 14637|0.68056 14638|0.75 14639|0.81944 14640|0.54167 14641|0.5 14642|0.73611 14643|0.5 14644|0.72222 14645|0.5 14646|0.5 14647|0.73611 14648|0.83333 14649|0.72222 14650|0.5 14651|0.5 14652|0.5 14653|0.38889 14654|0.5 14655|0.56944 14656|0.5 14657|0.52778 14658|0.625 14659|0.5 14660|0.5 14661|0.63889 14662|0.33333 14663|0.625 14664|0.63889 14665|0.5 14666|0.72222 14667|0.88889 14668|0.75 14669|0.52778 14670|0.45833 14671|0.083333 14672|0.375 14673|0.72222 14674|0.76389 14675|0.75 14676|0.86111 14677|0.94444 14678|0.5 14679|0.875 14680|0.84722 14681|0.52778 14682|0.55556 14683|0.56944 14684|0.375 14685|0.25 14686|0.83333 14687|0.56944 14688|0.54167 14689|0.44444 14690|0.5 14691|0.90278 14692|0.5 14693|0.47222 14694|0.5 14695|0.5 14696|0.84722 14697|0.77778 14698|0.83333 14699|0.5 14700|0.625 14701|0.75 14702|0.58333 14703|0.5 14704|0.5 14705|0.72222 14706|0.55556 14707|0.79167 14708|0.69792 14709|0.5 14710|0.86111 14711|0.80556 14712|0.41667 14713|0.52778 14714|0.65278 14715|0.79167 14716|0.63889 14717|0.66667 14718|0.93056 14719|0.79167 14720|0.75 14721|0.81944 14722|0.75 14723|0.73611 14724|0.84722 14725|0.51389 14726|0.88889 14727|0.81944 14728|0.73611 14729|0.5 14730|0.5 14731|0.5 14732|0.51389 14733|0.79167 14734|0.22222 14735|0.59722 14736|0.66667 14737|0.86111 14738|0.84722 14739|0.86111 14740|0.54167 14741|0.75 14742|0.51389 14743|0.68056 14744|0.86111 14745|0.86111 14746|0.63889 14747|0.70833 14748|0.5 14749|0.5 14750|0.73611 14751|0.81944 14752|0.79167 14753|0.80556 14754|0.76389 14755|0.52778 14756|0.70833 14757|0.56944 14758|0.84722 14759|0.66667 14760|0.31944 14761|0.40278 14762|0.75 14763|0.72222 14764|0.625 14765|0.52778 14766|0.54167 14767|0.76389 14768|0.65278 14769|0.84722 14770|0.86111 14771|0.47222 14772|0.48611 14773|0.52778 14774|0.56944 14775|0.76389 14776|0.73611 14777|0.79167 14778|0.54167 14779|0.55556 14780|0.90278 14781|0.5 14782|0.56944 14783|0.38889 14784|0.56944 14785|0.58333 14786|0.5 14787|0.73611 14788|0.55556 14789|0.59722 14790|0.86111 14791|0.69444 14792|0.625 14793|0.79167 14794|0.61111 14795|0.5 14796|0.85417 14797|0.5 14798|0.5 14799|0.5 14800|0.66667 14801|0.83333 14802|0.83333 14803|0.86111 14804|0.95833 14805|0.69444 14806|0.33333 14807|0.63889 14808|0.68056 14809|0.84722 14810|0.86111 14811|0.5 14812|0.55556 14813|0.68056 14814|0.70833 14815|0.75 14816|0.76389 14817|0.625 14818|0.66667 14819|0.81944 14820|0.59722 14821|0.63889 14822|0.41667 14823|0.61111 14824|0.33333 14825|0.375 14826|0.75 14827|0.86111 14828|0.43056 14829|0.80556 14830|0.44444 14831|0.56944 14832|0.54167 14833|0.65278 14834|0.69444 14835|0.48611 14836|0.77778 14837|0.75 14838|0.73611 14839|0.76389 14840|0.58333 14841|0.76389 14842|0.56944 14843|0.44444 14844|0.66667 14845|0.625 14846|0.76389 14847|0.72222 14848|0.58333 14849|0.58333 14850|0.73611 14851|0.55556 14852|0.94444 14853|0.56944 14854|0.68056 14855|0.59722 14856|0.66667 14857|0.54167 14858|0.65278 14859|0.76389 14860|0.88889 14861|0.75 14862|0.65278 14863|0.81944 14864|0.51042 14865|0.625 14866|0.5 14867|0.5 14868|0.5 14869|0.5 14870|0.59722 14871|0.48611 14872|0.5 14873|0.44444 14874|0.51389 14875|0.55556 14876|0.56944 14877|0.55556 14878|0.44444 14879|0.43056 14880|0.70833 14881|0.51389 14882|0.80556 14883|0.58333 14884|0.5 14885|0.40278 14886|0.5 14887|0.5 14888|0.77778 14889|0.59722 14890|0.79167 14891|0.5 14892|0.73611 14893|0.81944 14894|0.56944 14895|0.45833 14896|0.625 14897|0.625 14898|0.5 14899|0.51389 14900|0.86111 14901|0.5 14902|0.76389 14903|0.81944 14904|0.51389 14905|0.72222 14906|0.81944 14907|0.79167 14908|0.63889 14909|0.83333 14910|0.83333 14911|0.44444 14912|0.63889 14913|0.55556 14914|0.5 14915|0.68056 14916|0.93056 14917|0.61111 14918|0.5 14919|0.27778 14920|0.25 14921|0.66667 14922|0.47222 14923|0.75 14924|0.5 14925|0.47222 14926|0.65278 14927|0.61111 14928|0.5 14929|0.5 14930|0.51389 14931|0.39583 14932|0.5 14933|0.41667 14934|0.65278 14935|0.58333 14936|0.66667 14937|0.66667 14938|0.55556 14939|0.77778 14940|0.65278 14941|0.75 14942|0.27778 14943|0.5 14944|0.38889 14945|0.75 14946|0.83333 14947|0.91667 14948|0.94444 14949|0.77778 14950|0.80556 14951|0.68056 14952|0.80556 14953|0.83333 14954|0.58333 14955|0.68056 14956|0.83333 14957|0.88889 14958|0.5 14959|0.63889 14960|0.61111 14961|0.91667 14962|0.81944 14963|0.52778 14964|0.625 14965|0.44444 14966|0.70833 14967|0.36111 14968|0.31944 14969|0.52778 14970|0.5 14971|0.51389 14972|0.5 14973|0.81944 14974|0.77778 14975|0.40278 14976|0.30556 14977|0.86111 14978|0.43056 14979|0.51389 14980|0.5 14981|0.5 14982|0.5 14983|0.5 14984|0.56944 14985|0.5 14986|0.5 14987|0.5 14988|0.5 14989|0.5 14990|0.45833 14991|0.59722 14992|0.5 14993|0.88889 14994|0.44444 14995|0.45833 14996|0.72222 14997|0.58333 14998|0.76389 14999|0.73611 15000|0.59722 15001|0.5 15002|0.47222 15003|0.40278 15004|0.55556 15005|0.84722 15006|0.77778 15007|0.80556 15008|0.63889 15009|0.5 15010|0.77778 15011|0.68056 15012|0.73611 15013|0.70833 15014|0.33333 15015|0.5 15016|0.38889 15017|0.63542 15018|0.72222 15019|0.66667 15020|0.375 15021|0.47222 15022|0.5 15023|0.69444 15024|0.5 15025|0.63889 15026|0.47222 15027|0.33333 15028|0.59722 15029|0.27778 15030|0.52778 15031|0.72222 15032|0.83333 15033|0.77778 15034|0.68056 15035|0.72222 15036|0.72222 15037|0.5 15038|0.47222 15039|0.38889 15040|0.625 15041|0.5 15042|0.5 15043|0.5 15044|0.5 15045|0.56944 15046|0.83333 15047|0.56944 15048|0.56944 15049|0.69444 15050|0.58333 15051|0.56944 15052|0.73611 15053|0.45833 15054|0.45833 15055|0.45833 15056|0.65278 15057|0.55556 15058|0.75 15059|0.72222 15060|0.45833 15061|0.73611 15062|0.52778 15063|0.5 15064|0.55556 15065|0.53125 15066|0.5 15067|0.41667 15068|0.66667 15069|0.72222 15070|0.5 15071|0.73611 15072|0.5 15073|0.16667 15074|0.65278 15075|0.45833 15076|0.47222 15077|0.66667 15078|0.47222 15079|0.70833 15080|0.75 15081|0.70833 15082|0.66667 15083|0.44444 15084|0.5 15085|0.55556 15086|0.61111 15087|0.66667 15088|0.52083 15089|0.51389 15090|0.73611 15091|0.66667 15092|0.31944 15093|0.56944 15094|0.54167 15095|0.5 15096|0.52778 15097|0.79167 15098|0.81944 15099|0.5 15100|0.5 15101|0.63889 15102|0.625 15103|0.75 15104|0.58333 15105|0.5 15106|0.66667 15107|0.63889 15108|0.5 15109|0.52778 15110|0.68056 15111|0.45833 15112|0.29167 15113|0.5 15114|0.5 15115|0.68056 15116|0.5 15117|0.52778 15118|0.5 15119|0.55556 15120|0.66667 15121|0.58333 15122|0.34722 15123|0.54167 15124|0.59722 15125|0.54167 15126|0.47222 15127|0.81944 15128|0.88889 15129|0.48611 15130|0.91667 15131|0.97222 15132|0.51389 15133|0.66667 15134|0.54167 15135|0.83333 15136|0.16667 15137|0.38889 15138|0.77778 15139|0.80556 15140|0.58333 15141|0.55556 15142|0.70833 15143|0.5 15144|0.68056 15145|0.625 15146|0.70833 15147|0.55556 15148|0.5 15149|0.55556 15150|0.65278 15151|0.58333 15152|0.55556 15153|0.55556 15154|0.5 15155|0.5 15156|0.41667 15157|0.34722 15158|0.80556 15159|0.63889 15160|0.79167 15161|0.5 15162|0.81944 15163|0.79167 15164|0.54167 15165|0.47222 15166|0.56944 15167|0.5 15168|0.5 15169|0.5 15170|0.68056 15171|0.69444 15172|0.26389 15173|0.56944 15174|0.5 15175|0.76389 15176|0.68056 15177|0.33333 15178|0.55556 15179|0.5 15180|0.5 15181|0.5 15182|0.58333 15183|0.5 15184|0.5 15185|0.5 15186|0.45833 15187|0.56944 15188|0.80556 15189|0.5 15190|0.58333 15191|0.66667 15192|0.44444 15193|0.19444 15194|0.33333 15195|0.70833 15196|0.55556 15197|0.36111 15198|0.56944 15199|0.52778 15200|0.70833 15201|0.58333 15202|0.47222 15203|0.44444 15204|0.63889 15205|0.66667 15206|0.47222 15207|0.45833 15208|0.58333 15209|0.61111 15210|0.97222 15211|0.55556 15212|0.58333 15213|0.52778 15214|0.40278 15215|0.51389 15216|0.36111 15217|0.5 15218|0.5 15219|0.44444 15220|0.93056 15221|0.77778 15222|0.84722 15223|0.69444 15224|0.79167 15225|0.76389 15226|0.68056 15227|0.68056 15228|0.86111 15229|0.083333 15230|0.33333 15231|0.31944 15232|0.69444 15233|0.27778 15234|0.45833 15235|0.5 15236|0.5 15237|0.5 15238|0.5 15239|0.59722 15240|0.44444 15241|0.59722 15242|0.38889 15243|0.5 15244|0.72222 15245|0.61111 15246|0.79167 15247|0.80556 15248|0.5 15249|0.79167 15250|0.86111 15251|0.79167 15252|0.72222 15253|0.68056 15254|0.875 15255|0.69444 15256|0.52778 15257|0.55556 15258|0.5 15259|0.61111 15260|0.5 15261|0.52778 15262|0.68056 15263|0.66667 15264|0.5 15265|0.5 15266|0.34722 15267|0.43056 15268|0.375 15269|0.65278 15270|0.30556 15271|0.70833 15272|0.77778 15273|0.5 15274|0.84722 15275|0.88889 15276|0.5 15277|0.83333 15278|0.5 15279|0.41667 15280|0.5 15281|0.29167 15282|0.097222 15283|0.5 15284|0.19444 15285|0.40278 15286|0.44444 15287|0.77778 15288|0.79167 15289|0.5 15290|0.61111 15291|0.5 15292|0.5 15293|0.52778 15294|0.84722 15295|0.75 15296|0.875 15297|0.69444 15298|0.625 15299|0.5 15300|0.5 15301|0.5 15302|0.69444 15303|0.5 15304|0.52778 15305|0.58333 15306|0.31944 15307|0.66667 15308|0.41667 15309|0.23611 15310|0.54167 15311|0.54167 15312|0.81944 15313|0.72222 15314|0.59722 15315|0.40278 15316|0.56944 15317|0.70833 15318|0.78125 15319|0.81944 15320|0.51389 15321|0.59722 15322|0.81944 15323|0.70833 15324|0.72222 15325|0.65278 15326|0.68056 15327|0.79167 15328|0.73611 15329|0.72222 15330|0.58333 15331|0.88889 15332|0.29167 15333|0.45833 15334|0.84722 15335|0.5 15336|0.51389 15337|0.54167 15338|0.52778 15339|0.54167 15340|0.88889 15341|0.48611 15342|0.38889 15343|0.5 15344|0.80556 15345|0.31944 15346|0.26389 15347|0.45833 15348|0.51389 15349|0.80556 15350|0.44444 15351|0.66667 15352|0.5 15353|0.5 15354|0.55556 15355|0.63889 15356|0.48611 15357|0.51389 15358|0.83333 15359|0.66667 15360|0.52778 15361|0.47222 15362|0.29167 15363|0.52778 15364|0.5 15365|0.91667 15366|0.5 15367|0.72222 15368|0.45833 15369|0.73611 15370|0.5 15371|0.5 15372|0.69444 15373|0.65278 15374|0.75 15375|0.79167 15376|0.5 15377|0.44444 15378|0.63889 15379|0.79167 15380|0.51389 15381|0.375 15382|0.72222 15383|0.70833 15384|0.73611 15385|0.77778 15386|0.72222 15387|0.5 15388|0.58333 15389|0.58333 15390|0.66667 15391|0.44444 15392|0.56944 15393|0.55556 15394|0.59722 15395|0.63889 15396|0.72222 15397|0.72222 15398|0.75 15399|0.61111 15400|0.83333 15401|0.76389 15402|0.77778 15403|0.75 15404|0.40278 15405|0.33333 15406|0.5 15407|0.54167 15408|0.5 15409|0.52778 15410|0.5 15411|0.5 15412|0.5 15413|0.44444 15414|0.5 15415|0.5 15416|0.44444 15417|0.91667 15418|0.44444 15419|0.5 15420|0.5 15421|0.61111 15422|0.48611 15423|0.55556 15424|0.65278 15425|0.63889 15426|0.38889 15427|0.65278 15428|0.69444 15429|0.83333 15430|0.81944 15431|0.5 15432|0.25 15433|0.61111 15434|0.5 15435|0.41667 15436|0.44444 15437|0.56944 15438|0.44444 15439|0.5 15440|0.5 15441|0.5 15442|0.5 15443|0.5 15444|0.61111 15445|0.41667 15446|0.72222 15447|0.52778 15448|0.375 15449|0.51389 15450|0.44444 15451|0.5 15452|0.5 15453|0.5 15454|0.61111 15455|0.73611 15456|0.63889 15457|0.66667 15458|0.61111 15459|0.69444 15460|0.72222 15461|0.92708 15462|0.625 15463|0.47222 15464|0.66667 15465|0.58333 15466|0.5 15467|0.55556 15468|0.44444 15469|0.48611 15470|0.52778 15471|0.52778 15472|0.61111 15473|0.44444 15474|0.66667 15475|0.22222 15476|0.5 15477|0.56944 15478|0.55556 15479|0.5 15480|0.47222 15481|0.54167 15482|0.55556 15483|0.5 15484|0.51389 15485|0.375 15486|0.47222 15487|0.5 15488|0.5 15489|0.26389 15490|0.27778 15491|0.5 15492|0.55556 15493|0.5 15494|0.5 15495|0.63889 15496|0.38889 15497|0.29167 15498|0.33333 15499|0.34722 15500|0.44444 15501|0.77778 15502|0.79167 15503|0.55556 15504|0.70833 15505|0.5 15506|0.51389 15507|0.45833 15508|0.44444 15509|0.45833 15510|0.63889 15511|0.79167 15512|0.86111 15513|0.56944 15514|0.875 15515|0.93056 15516|0.875 15517|0.52778 15518|0.63889 15519|0.72222 15520|0.72222 15521|0.68056 15522|0.51389 15523|0.77778 15524|0.77778 15525|0.5 15526|0.5 15527|0.5 15528|0.36111 15529|0.5 15530|0.54167 15531|0.58333 15532|0.51389 15533|0.41667 15534|0.68056 15535|0.66667 15536|0.70833 15537|0.88889 15538|0.61111 15539|0.55556 15540|0.44444 15541|0.33333 15542|0.72222 15543|0.5 15544|0.66667 15545|0.86111 15546|0.80556 15547|0.44444 15548|0.55556 15549|0.52778 15550|0.5 15551|0.63889 15552|0.625 15553|0.79167 15554|0.83333 15555|0.54167 15556|0.47222 15557|0.45833 15558|0.44444 15559|0.70833 15560|0.36111 15561|0.5 15562|0.38889 15563|0.88889 15564|0.52778 15565|0.66667 15566|0.52778 15567|0.77778 15568|0.34722 15569|0.5 15570|0.5 15571|0.52778 15572|0.55556 15573|0.54167 15574|0.61111 15575|0.68056 15576|0.52778 15577|0.59722 15578|0.30556 15579|0.48611 15580|0.66667 15581|0.63889 15582|0.65278 15583|0.69444 15584|0.5 15585|0.48611 15586|0.63889 15587|0.70833 15588|0.52778 15589|0.83333 15590|0.41667 15591|0.38889 15592|0.44444 15593|0.51389 15594|0.51389 15595|0.34722 15596|0.75 15597|0.91667 15598|0.86111 15599|0.73611 15600|0.5 15601|0.55556 15602|0.61111 15603|0.5 15604|0.86111 15605|0.5 15606|0.41667 15607|0.45833 15608|0.25 15609|0.26389 15610|0.48611 15611|0.73611 15612|0.45833 15613|0.5 15614|0.5 15615|0.5 15616|0.5 15617|0.48611 15618|0.5 15619|0.52778 15620|0.38889 15621|0.51389 15622|0.47222 15623|0.44444 15624|0.58333 15625|0.5 15626|0.58333 15627|0.56944 15628|0.30556 15629|0.84722 15630|0.54167 15631|0.55556 15632|0.52778 15633|0.54167 15634|0.48611 15635|0.5 15636|0.43056 15637|0.63889 15638|0.68056 15639|0.55556 15640|0.65278 15641|0.59722 15642|0.69444 15643|0.73611 15644|0.75 15645|0.86111 15646|0.76389 15647|0.69444 15648|0.86111 15649|0.5 15650|0.65278 15651|0.45833 15652|0.27778 15653|0.44444 15654|0.72222 15655|0.84722 15656|0.58333 15657|0.97222 15658|0.55556 15659|0.79167 15660|0.65278 15661|0.70833 15662|0.80556 15663|0.61111 15664|0.80556 15665|0.61111 15666|0.81944 15667|0.5 15668|0.84722 15669|0.86111 15670|0.75 15671|0.90278 15672|0.33333 15673|0.47222 15674|0.63889 15675|0.52778 15676|0.5 15677|0.58333 15678|0.5 15679|0.56944 15680|0.48611 15681|0.54167 15682|0.34722 15683|0.16667 15684|0.51389 15685|0.56944 15686|0.30556 15687|0.52778 15688|0.55556 15689|0.5 15690|0.55556 15691|0.52778 15692|0.51389 15693|0.55556 15694|0.5 15695|0.5 15696|0.5 15697|0.66667 15698|0.5 15699|0.5 15700|0.44444 15701|0.68056 15702|0.65278 15703|0.5 15704|0.51389 15705|0.68056 15706|0.98611 15707|0.63889 15708|0.83333 15709|0.40278 15710|0.81944 15711|0.84722 15712|0.81944 15713|0.5 15714|0.56944 15715|0.5 15716|0.51389 15717|0.79167 15718|0.90278 15719|0.5 15720|0.65278 15721|0.68056 15722|0.93056 15723|0.48611 15724|0.56944 15725|0.5 15726|0.45833 15727|0.51389 15728|0.68056 15729|0.55556 15730|0.5 15731|0.59722 15732|0.63889 15733|0.69444 15734|0.5 15735|0.375 15736|0.73611 15737|0.52778 15738|0.55556 15739|0.5 15740|0.72222 15741|0.70833 15742|0.45833 15743|0.77778 15744|0.59722 15745|0.875 15746|0.88889 15747|0.77778 15748|0.80556 15749|0.40278 15750|0.45833 15751|0.5 15752|0.5 15753|0.55556 15754|0.51389 15755|0.58333 15756|0.76389 15757|0.84722 15758|0.80556 15759|0.72222 15760|0.80556 15761|0.5 15762|0.5 15763|0.80556 15764|0.5 15765|0.30556 15766|0.41667 15767|0.38889 15768|0.5 15769|0.88889 15770|0.5 15771|0.55556 15772|0.5 15773|0.52778 15774|0.5 15775|0.45833 15776|0.66667 15777|0.77778 15778|0.77778 15779|0.54167 15780|0.66667 15781|0.83333 15782|0.68056 15783|0.63889 15784|0.43056 15785|0.59722 15786|0.70833 15787|0.54167 15788|0.41667 15789|0.75 15790|0.5 15791|0.72222 15792|0.5 15793|0.56944 15794|0.66667 15795|0.56944 15796|0.86111 15797|0.54167 15798|0.72222 15799|0.5 15800|0.43056 15801|0.5 15802|0.5 15803|0.80556 15804|0.81944 15805|0.70833 15806|0.30556 15807|0.80556 15808|0.5 15809|0.44444 15810|0.80556 15811|0.88889 15812|0.48611 15813|0.58333 15814|0.38889 15815|0.54167 15816|0.63889 15817|0.72222 15818|0.5 15819|0.54167 15820|0.44444 15821|0.45833 15822|0.58333 15823|0.5 15824|0.61111 15825|0.5 15826|0.47222 15827|0.43056 15828|0.5 15829|0.56944 15830|0.5 15831|0.54167 15832|0.72222 15833|0.56944 15834|0.44444 15835|0.80556 15836|0.83333 15837|0.58333 15838|0.56944 15839|0.83333 15840|0.5 15841|0.54167 15842|0.5 15843|0.625 15844|0.52778 15845|0.47222 15846|0.5 15847|0.52778 15848|0.25 15849|0.23611 15850|0.54167 15851|0.61111 15852|0.70833 15853|0.90278 15854|0.81944 15855|0.68056 15856|0.69444 15857|0.77778 15858|0.51389 15859|0.875 15860|0.76389 15861|0.5 15862|0.61111 15863|0.79167 15864|0.72222 15865|0.72222 15866|0.83333 15867|0.5 15868|0.5 15869|0.70833 15870|0.58333 15871|0.51389 15872|0.43056 15873|0.5 15874|0.5 15875|0.5 15876|0.43056 15877|0.55556 15878|0.11111 15879|0.54167 15880|0.72222 15881|0.72222 15882|0.56944 15883|0.63889 15884|0.625 15885|0.44444 15886|0.80556 15887|0.66667 15888|0.58333 15889|0.66667 15890|0.80556 15891|0.55556 15892|0.54167 15893|0.75 15894|0.70833 15895|0.5 15896|0.72222 15897|0.625 15898|0.875 15899|0.625 15900|0.80556 15901|0.54167 15902|0.61111 15903|0.72222 15904|0.81944 15905|0.73611 15906|0.83333 15907|0.81944 15908|0.58333 15909|0.72222 15910|0.58333 15911|0.41667 15912|0.41667 15913|0.56944 15914|0.56944 15915|0.5 15916|0.875 15917|0.77083 15918|0.77778 15919|0.63889 15920|0.77778 15921|0.70833 15922|0.76389 15923|0.61111 15924|0.65278 15925|0.79167 15926|0.43056 15927|0.55556 15928|0.40278 15929|0.75 15930|0.56944 15931|0.80556 15932|0.69444 15933|0.27778 15934|0.41667 15935|0.61111 15936|0.76389 15937|0.69444 15938|0.58333 15939|0.44444 15940|0.5 15941|0.5 15942|0.59722 15943|0.65278 15944|0.83333 15945|0.73611 15946|0.72222 15947|0.73611 15948|0.23611 15949|0.54167 15950|0.5 15951|0.45833 15952|0.52778 15953|0.69444 15954|0.61111 15955|0.54167 15956|0.61111 15957|0.73611 15958|0.27778 15959|0.45833 15960|0.66667 15961|0.69444 15962|0.38889 15963|0.72222 15964|0.625 15965|0.48611 15966|0.22222 15967|0.083333 15968|0.68056 15969|0.5 15970|0.5 15971|0 15972|0.43056 15973|0.72222 15974|0.77778 15975|0.75 15976|0.65278 15977|0.375 15978|0.55556 15979|0.59722 15980|0.75 15981|0.52778 15982|0.86111 15983|0.88889 15984|0.95833 15985|0.56944 15986|0.47222 15987|0.5 15988|0.68056 15989|0.70833 15990|0.44444 15991|0.20833 15992|0.68056 15993|0.25 15994|0.5 15995|0.54167 15996|0.61111 15997|0.5 15998|0.45833 15999|0.47222 16000|0.66667 16001|0.44444 16002|0.38889 16003|0.38889 16004|0.5 16005|0.51389 16006|0.73611 16007|0.84722 16008|0.61111 16009|0.55556 16010|0.55556 16011|0.44444 16012|0.5 16013|0.54167 16014|0.58333 16015|0.40278 16016|0.5 16017|0.55556 16018|0.43056 16019|0.625 16020|0.5 16021|0.58333 16022|0.5 16023|0.61111 16024|0.5 16025|0.93056 16026|0.55556 16027|0.66667 16028|0.5 16029|0.79167 16030|0.5 16031|0.51389 16032|0.5 16033|0.88889 16034|0.73611 16035|0.75 16036|0.5 16037|0.5 16038|0.45833 16039|0.5 16040|0.36111 16041|0.5 16042|0.5 16043|0.5 16044|0.41667 16045|0.5 16046|0.84722 16047|0.63889 16048|0.5 16049|0.66667 16050|0.58333 16051|0.63889 16052|0.79167 16053|0.52778 16054|0.54167 16055|0.375 16056|0.38889 16057|0.75 16058|0.5 16059|0.5 16060|0.76389 16061|0.5 16062|0.69444 16063|0.63889 16064|0.5 16065|0.86111 16066|0.5 16067|0.5 16068|0.22222 16069|0.41667 16070|0.5 16071|0.76389 16072|0.55556 16073|0.61111 16074|0.52778 16075|0.5 16076|0.625 16077|0.63889 16078|0.5 16079|0.5 16080|0.55556 16081|0.88889 16082|0.61111 16083|0.79167 16084|0.59722 16085|0.59722 16086|0.26389 16087|0.36111 16088|0.36111 16089|0.47222 16090|0.58333 16091|0.86111 16092|0.45833 16093|0.55556 16094|0.75 16095|0.5 16096|0.75 16097|0.72222 16098|0.68056 16099|0.76389 16100|0.51389 16101|0.5 16102|0.54167 16103|0.63889 16104|0.80556 16105|0.5 16106|0.55556 16107|0.5 16108|0.55556 16109|0.69444 16110|0.54167 16111|0.5 16112|0.43056 16113|0.41667 16114|0.5 16115|0.51389 16116|0.36111 16117|0.45833 16118|0.5 16119|0.5 16120|0.5 16121|0.44444 16122|0.45833 16123|0.5 16124|0.44444 16125|0.5 16126|0.63889 16127|0.70833 16128|0.55556 16129|0.5 16130|0.51389 16131|0.56944 16132|0.59722 16133|0.65278 16134|0.40278 16135|0.5 16136|0.61111 16137|0.38889 16138|0.58333 16139|0.625 16140|0.58333 16141|0.5 16142|0.44444 16143|0.5 16144|0.51389 16145|0.5 16146|0.70833 16147|0.77778 16148|0.84722 16149|0.5 16150|0.59722 16151|0.5 16152|0.5 16153|0.61111 16154|0.66667 16155|0.86111 16156|0.83333 16157|0.5 16158|0.5 16159|0.625 16160|0.63889 16161|0.45833 16162|0.47222 16163|0.26389 16164|0.34722 16165|0.70833 16166|0.75 16167|0.84722 16168|0.5 16169|0.77778 16170|0.55556 16171|0.75 16172|0.81944 16173|0.76389 16174|0.54167 16175|0.72222 16176|0.61111 16177|0.88889 16178|0.5 16179|0.38889 16180|0.5 16181|0.5 16182|0.51389 16183|0.72222 16184|0.52778 16185|0.44444 16186|0.47222 16187|0.55556 16188|0.56944 16189|0.52778 16190|0.70833 16191|0.5 16192|0.61111 16193|0.66667 16194|0.72222 16195|0.79167 16196|0.84722 16197|0.75 16198|0.59722 16199|0.59722 16200|0.52778 16201|0.76389 16202|0.80556 16203|0.5 16204|0.31944 16205|0.80556 16206|0.75 16207|0.875 16208|0.81944 16209|0.65278 16210|0.45833 16211|0.69444 16212|0.76389 16213|0.93056 16214|0.79167 16215|0.84722 16216|0.73611 16217|0.70833 16218|0.84722 16219|0.88889 16220|0.81944 16221|0.77778 16222|0.84722 16223|0.69444 16224|0.73611 16225|0.84722 16226|0.875 16227|0.69444 16228|0.54167 16229|0.81944 16230|0.81944 16231|0.88889 16232|0.54167 16233|0.77778 16234|0.86111 16235|0.83333 16236|0.69444 16237|0.59722 16238|0.61111 16239|0.81944 16240|0.69444 16241|0.77778 16242|0.77778 16243|0.30556 16244|0.63889 16245|0.44444 16246|0.45833 16247|0.38889 16248|0.26389 16249|0.27778 16250|0.25 16251|0.84722 16252|0.88889 16253|0.75 16254|0.73611 16255|0.56944 16256|0.69444 16257|0.90278 16258|0.875 16259|0.81944 16260|0.66667 16261|0.84722 16262|0.63889 16263|0.73611 16264|0.76389 16265|0.70833 16266|0.73611 16267|0.83333 16268|0.76389 16269|0.86111 16270|0.55556 16271|0.61111 16272|0.36111 16273|0.625 16274|0.75 16275|0.80556 16276|0.76389 16277|0.61111 16278|0.76389 16279|0.93056 16280|0.98611 16281|0.73611 16282|0.88889 16283|0.88889 16284|0.52778 16285|0.51389 16286|0.625 16287|0.68056 16288|0.91667 16289|0.86111 16290|0.5 16291|0.5 16292|0.79167 16293|0.875 16294|0.61111 16295|0.5 16296|0.44444 16297|0.5 16298|0.84722 16299|0.52778 16300|0.5 16301|0.72222 16302|0.84722 16303|0.76389 16304|0.66667 16305|0.63889 16306|0.47222 16307|0.73611 16308|0.875 16309|0.63889 16310|0.68056 16311|0.36111 16312|0.77778 16313|0.77778 16314|0.41667 16315|0.45833 16316|0.23611 16317|0.20833 16318|0.36111 16319|0.38889 16320|0.48611 16321|0.77778 16322|0.58333 16323|0.59722 16324|0.72222 16325|0.73611 16326|0.63889 16327|0.55556 16328|0.72222 16329|0.51389 16330|0.63889 16331|0.77778 16332|0.58333 16333|0.44444 16334|0.55556 16335|0.79167 16336|0.22222 16337|0.84722 16338|0.66667 16339|0.72222 16340|0.5 16341|0.61111 16342|0.625 16343|0.54167 16344|0.55556 16345|0.41667 16346|0.31944 16347|0.65278 16348|0.16667 16349|0.68056 16350|0.51389 16351|0.15278 16352|0.59722 16353|0.23611 16354|0.51389 16355|0.66667 16356|0.23611 16357|0.84722 16358|0.68056 16359|0.61111 16360|0.61111 16361|0.66667 16362|0.72222 16363|0.5 16364|0.5 16365|0.36111 16366|0.58333 16367|0.79167 16368|0.625 16369|0.41667 16370|0.54167 16371|0.86111 16372|0.875 16373|0.31944 16374|0.47222 16375|0.55556 16376|0.41667 16377|0.55556 16378|0.75 16379|0.65278 16380|0.65278 16381|0.44444 16382|0.63889 16383|0.55556 16384|0.61111 16385|0.77778 16386|0.65278 16387|0.59722 16388|0.5 16389|0.43056 16390|0.5 16391|0.54167 16392|0.38889 16393|0.58333 16394|0.68056 16395|0.375 16396|0.55556 16397|0.65278 16398|0.5 16399|0.55556 16400|0.5 16401|0.48611 16402|0.5 16403|0.66667 16404|0.48611 16405|0.44444 16406|0.5 16407|0.41667 16408|0.875 16409|0.55556 16410|0.041667 16411|0.59722 16412|0.70833 16413|0.80556 16414|0.76389 16415|0.58333 16416|0.5 16417|0.5 16418|0.5 16419|0.44444 16420|0.56944 16421|0.80208 16422|0.44444 16423|0.375 16424|0.44444 16425|0.40278 16426|0.61111 16427|0.72222 16428|0.43056 16429|0.38889 16430|0.55556 16431|0.5 16432|0.43056 16433|0.38889 16434|0.45833 16435|0.5 16436|0.5 16437|0.5 16438|0.36111 16439|0.5 16440|0.5 16441|0.29167 16442|0.23611 16443|0.31944 16444|0.51389 16445|0.44444 16446|0.56944 16447|0.81944 16448|0.56944 16449|0.69444 16450|0.56944 16451|0.65278 16452|0.45833 16453|0.63889 16454|0.61111 16455|0.41667 16456|0.5 16457|0.5 16458|0.52778 16459|0.43056 16460|0.66667 16461|0.59722 16462|0.31944 16463|0.72222 16464|0.76389 16465|0.55556 16466|0.5 16467|0.5 16468|0.44444 16469|0.72222 16470|0.375 16471|0.38889 16472|0.47222 16473|0.59722 16474|0.81944 16475|0.5 16476|0.38889 16477|0.27778 16478|0.51389 16479|0.5 16480|0.55556 16481|0.375 16482|0.5 16483|0.45833 16484|0.5 16485|0.47222 16486|0.55556 16487|0.5 16488|0.61111 16489|0.5 16490|0.47222 16491|0.34722 16492|0.69444 16493|0.75 16494|0.72222 16495|0.76389 16496|0.68056 16497|0.63889 16498|0.90278 16499|0.59722 16500|0.88889 16501|0.93056 16502|0.83333 16503|0.59722 16504|0.45833 16505|0.59722 16506|0.88889 16507|0.56944 16508|0.47222 16509|0.31944 16510|0.61111 16511|0.65278 16512|0.625 16513|0.88889 16514|0.055556 16515|0.25 16516|0.77778 16517|0.59722 16518|0.5 16519|0.5 16520|0.48611 16521|0.5 16522|0.625 16523|0.5 16524|0.38889 16525|0.47222 16526|0.66667 16527|0.81944 16528|0.59722 16529|0.61111 16530|0.68056 16531|0.59722 16532|0.66667 16533|0.70833 16534|0.79167 16535|0.83333 16536|0.5 16537|0.30556 16538|0.5 16539|0.5 16540|0.81944 16541|0.80556 16542|0.98611 16543|0.55556 16544|1 16545|0.94444 16546|0.65278 16547|0.54167 16548|0.23611 16549|0.625 16550|0.55556 16551|0.41667 16552|0.5 16553|0.38889 16554|0.44444 16555|0.61111 16556|0.41667 16557|0.38889 16558|0.41667 16559|0.56944 16560|0.5 16561|0.56944 16562|0.5 16563|0.20833 16564|0.625 16565|0.54167 16566|0.43056 16567|0.51389 16568|0.77778 16569|0.55556 16570|0.29167 16571|0.5 16572|0.58333 16573|0.47222 16574|0.45833 16575|0.43056 16576|0.44444 16577|0.41667 16578|0.5 16579|0.55556 16580|0.65278 16581|0.30556 16582|0.38889 16583|0.45833 16584|0.5 16585|0.48611 16586|0.29167 16587|0.27778 16588|0.83333 16589|0.55556 16590|0.55556 16591|0.58333 16592|0.44444 16593|0.5 16594|0.20833 16595|0.81944 16596|0.61111 16597|0.72222 16598|0.875 16599|0.5 16600|0.55556 16601|0.875 16602|0.44444 16603|0.72222 16604|0.76389 16605|0.75 16606|0.44444 16607|0.40278 16608|0.38889 16609|0.5 16610|0.77778 16611|0.66667 16612|0.95833 16613|0.45833 16614|0.5 16615|0.5 16616|0.52778 16617|0.47222 16618|0.69444 16619|0.48611 16620|0.45833 16621|0.52778 16622|0.5 16623|0.5 16624|0.58333 16625|0.625 16626|0.52778 16627|0.38889 16628|0.59722 16629|0.43056 16630|0.51389 16631|0.44444 16632|0.47222 16633|0.63889 16634|0.72222 16635|0.68056 16636|0.31944 16637|0.61111 16638|0.56944 16639|0.27778 16640|0.625 16641|0.23611 16642|0.18056 16643|0.36111 16644|0.25 16645|0.38889 16646|0.13889 16647|0.36111 16648|0.52778 16649|0.625 16650|0.23611 16651|0.11111 16652|0.25 16653|0.5 16654|0.5 16655|0.5 16656|0.55556 16657|0.54167 16658|0.5 16659|0.5 16660|0.5 16661|0.65278 16662|0.5 16663|0.69444 16664|0.5 16665|0.5 16666|0.55556 16667|0.30556 16668|0.27778 16669|0.38889 16670|0.43056 16671|0.81944 16672|0.38889 16673|0.63889 16674|0.48611 16675|0.56944 16676|0.5 16677|0.43056 16678|0.31944 16679|0.47917 16680|0.5 16681|0.38889 16682|0.44444 16683|0.5 16684|0.25 16685|0.5 16686|0.68056 16687|0.33333 16688|0.22222 16689|0.22222 16690|0.52778 16691|0.54167 16692|0.5 16693|0.41667 16694|0.5 16695|0.68056 16696|0.65278 16697|0.5 16698|0.5 16699|0.5 16700|0.5 16701|0.5 16702|0.5 16703|0.5 16704|0.43056 16705|0.5 16706|0.44444 16707|0.48611 16708|0.5 16709|0.56944 16710|0.5 16711|0.5 16712|0.41667 16713|0.54167 16714|0.51389 16715|0.5 16716|0.80556 16717|0.5 16718|0.5 16719|0.23611 16720|0.5 16721|0.5 16722|0.54167 16723|0.43056 16724|0.27778 16725|0.43056 16726|0.5 16727|0.66667 16728|0.5 16729|0.77778 16730|0.45833 16731|0.23611 16732|0.48611 16733|0.5 16734|0.61111 16735|0.65278 16736|0.55556 16737|0.58333 16738|0.55556 16739|0.5 16740|0.61111 16741|0.91667 16742|0.5 16743|0.55556 16744|0.54167 16745|0.81944 16746|0.44444 16747|0.54167 16748|0.47222 16749|0.61111 16750|0.66667 16751|0.36111 16752|0.625 16753|0.47222 16754|0.66667 16755|0.5 16756|0.41667 16757|0.51389 16758|0.55556 16759|0.5 16760|0.625 16761|0.5 16762|0.5 16763|0.56944 16764|0.55556 16765|0.5 16766|0.63889 16767|0.80556 16768|0.44444 16769|0.30556 16770|0.013889 16771|0.5 16772|0.27778 16773|0.44444 16774|0.40278 16775|0.5 16776|0.52778 16777|0.5 16778|0.44444 16779|0.56944 16780|0.59722 16781|0.5 16782|0.5 16783|0.81944 16784|0.52778 16785|0.83333 16786|0.79167 16787|0.80556 16788|0.55556 16789|0.38889 16790|0.4375 16791|0.5 16792|0.47222 16793|0.5 16794|0.54167 16795|0.58333 16796|0.52778 16797|0.81944 16798|0.45833 16799|0.5 16800|0.5 16801|0.041667 16802|0.88889 16803|0.51389 16804|0.72222 16805|0.48611 16806|0.33333 16807|0.68056 16808|0.72222 16809|0.5 16810|0.5 16811|0.5 16812|0.5 16813|0.44444 16814|0.52778 16815|0.52778 16816|0.68056 16817|0.81944 16818|0.55556 16819|0.875 16820|0.40278 16821|0.5 16822|0.5 16823|0.31944 16824|0.5 16825|0.5 16826|0.44444 16827|0.5 16828|0.44444 16829|0.45833 16830|0.44444 16831|0.61111 16832|0.5 16833|0.5 16834|0.65278 16835|0.69444 16836|0.51389 16837|0.26389 16838|0.5 16839|0.61111 16840|0.52778 16841|0.5 16842|0.5 16843|0.59722 16844|0.5 16845|0.52778 16846|0.59722 16847|0.625 16848|0.5 16849|0.375 16850|0.72222 16851|0.44444 16852|0.5 16853|0.58333 16854|0.5 16855|0.5 16856|0.36111 16857|0.51389 16858|0.58333 16859|0.63889 16860|0.59722 16861|0.40278 16862|0.81944 16863|0.65278 16864|0.88889 16865|0.5 16866|0.51389 16867|0.625 16868|0.5 16869|0.5 16870|0.54167 16871|0.5 16872|0.5 16873|0.58333 16874|0.55556 16875|0.55556 16876|0.55556 16877|0.55556 16878|0.59722 16879|0.81944 16880|0.55556 16881|0.36111 16882|0.5 16883|0.5 16884|0.79167 16885|0.54167 16886|0.55556 16887|0.33333 16888|0.16667 16889|0.625 16890|0.66667 16891|0.5 16892|0.5 16893|0.44444 16894|0.45833 16895|0.61111 16896|0.75 16897|0.84722 16898|0.22222 16899|0.22222 16900|0.375 16901|0.33333 16902|0.5 16903|0.52778 16904|0.5 16905|0.55556 16906|0.5 16907|0.73611 16908|0.875 16909|0.29167 16910|0.5 16911|0.51389 16912|0.5 16913|0.5 16914|0.5 16915|0.5 16916|0.48611 16917|0.5 16918|0.55556 16919|0.625 16920|0.59722 16921|0.81944 16922|0.5 16923|0.47222 16924|0.52778 16925|0.625 16926|0.5 16927|0.75 16928|0.625 16929|0.47222 16930|0.73611 16931|0.80556 16932|0.875 16933|0.54167 16934|0.5 16935|0.5 16936|0.30556 16937|0.44444 16938|0.5 16939|0.5 16940|0.5 16941|0.5 16942|0.43056 16943|0.45833 16944|0.69444 16945|0.5 16946|0.5 16947|0.54167 16948|0.5 16949|0.55556 16950|0.5 16951|0.44444 16952|0.47222 16953|0.5 16954|0.5 16955|0.55556 16956|0.55556 16957|0.5 16958|0.51389 16959|0.83333 16960|0.79167 16961|0.77778 16962|0.75 16963|0.52778 16964|0.52778 16965|0.69444 16966|0.55556 16967|0.73611 16968|0.84722 16969|0.5 16970|0.61111 16971|0.5 16972|0.55556 16973|0.59722 16974|0.44444 16975|0.44444 16976|0.66667 16977|0.5 16978|0.61111 16979|0.875 16980|0.5 16981|0.65278 16982|0.58333 16983|0.70833 16984|0.66667 16985|0.5 16986|0.5 16987|0.22222 16988|0.51389 16989|0.5 16990|0.65278 16991|0.5 16992|0.5 16993|0.54167 16994|0.66667 16995|0.5 16996|0.61111 16997|0.83333 16998|0.43056 16999|0.72222 17000|0.88889 17001|0.88889 17002|0.80556 17003|0.77778 17004|0.76389 17005|0.75 17006|0.69444 17007|0.52778 17008|0.48611 17009|0.38889 17010|0.70833 17011|0.26389 17012|0.40278 17013|0.90278 17014|0.80556 17015|0.875 17016|0.5 17017|0.72222 17018|0.45833 17019|0.55556 17020|0.5 17021|0.59722 17022|0.55556 17023|0.5 17024|0.45833 17025|0.51389 17026|0.5 17027|0.41667 17028|0.47222 17029|0.29167 17030|0.44444 17031|0.55556 17032|0.93056 17033|0.91667 17034|0.63889 17035|0.69444 17036|0.36111 17037|0.44444 17038|0.5 17039|0.5 17040|0.91667 17041|0.45833 17042|0.54167 17043|0.5 17044|0.61111 17045|0.52778 17046|0.59722 17047|0.55556 17048|0.5 17049|0.5 17050|0.59722 17051|0.51389 17052|0.5 17053|0.56944 17054|0.55556 17055|0.58333 17056|0.84722 17057|0.5 17058|0.48611 17059|0.5 17060|0.5 17061|0.5 17062|0.5 17063|0.68056 17064|0.75 17065|0.5 17066|0.34722 17067|0.44444 17068|0.5 17069|0.5 17070|0.77778 17071|0.58333 17072|0.73611 17073|0.72222 17074|0.55556 17075|0.72222 17076|0.625 17077|0.77778 17078|0.5 17079|0.55556 17080|0.5 17081|0.55556 17082|0.45833 17083|0.5 17084|0.45833 17085|0.44444 17086|0.76389 17087|0.75 17088|0.5 17089|0.47222 17090|0.5 17091|0.56944 17092|0.5 17093|0.45833 17094|0.75 17095|0.63889 17096|0.72222 17097|0.73611 17098|0.66667 17099|0.61111 17100|0.58333 17101|0.58333 17102|0.5 17103|0.5 17104|0.41667 17105|0.91667 17106|0.66667 17107|0.65278 17108|0.5 17109|0.51389 17110|0.625 17111|0.59722 17112|0.70833 17113|0.61111 17114|0.47222 17115|0.70833 17116|0.83333 17117|0.5 17118|0.013889 17119|0.91667 17120|0.56944 17121|0.56944 17122|0.5 17123|0.5 17124|0.52778 17125|0.5 17126|0.22222 17127|0.51389 17128|0.45833 17129|0.625 17130|0.625 17131|0.22222 17132|0.47222 17133|0.5 17134|0.51389 17135|0.70833 17136|0.22222 17137|0.63889 17138|0.68056 17139|0.40278 17140|0.44444 17141|0.83333 17142|0.5 17143|0.66667 17144|0.5 17145|0.51389 17146|0.73611 17147|0.44444 17148|0.58333 17149|0.61111 17150|0.58333 17151|0.55556 17152|0.79167 17153|0.52778 17154|0.56944 17155|0.5 17156|0.58333 17157|0.72222 17158|0.5 17159|0.30556 17160|0.58333 17161|0.69444 17162|0.45833 17163|0.11111 17164|0.68056 17165|0.5 17166|0.38889 17167|0.58333 17168|0.5 17169|0.31944 17170|0.40278 17171|0.65278 17172|0.5 17173|0.58333 17174|0.55556 17175|0.44444 17176|0.44444 17177|0.44444 17178|0.44444 17179|0.48611 17180|0.66667 17181|0.68056 17182|0.75 17183|0.76389 17184|0.38889 17185|0.5 17186|0.47222 17187|0.59722 17188|0.5 17189|0.5 17190|0.55556 17191|0.39583 17192|0.56944 17193|0.5 17194|0.5 17195|0.73611 17196|0.5 17197|0.73611 17198|0.5 17199|0.61111 17200|0.56944 17201|0.5 17202|0.66667 17203|0.65278 17204|0.5 17205|0.76389 17206|0.55556 17207|0.58333 17208|0.90278 17209|0.43056 17210|0.5 17211|0.45833 17212|0.5 17213|0.54167 17214|0.33333 17215|0.22222 17216|0.70833 17217|0.70833 17218|0.83333 17219|0.56944 17220|0.5 17221|0.47222 17222|0.70833 17223|0.33333 17224|0.44444 17225|0.77778 17226|0.80556 17227|0.68056 17228|0.80556 17229|0.5 17230|0.5 17231|0.5 17232|0.72222 17233|0.68056 17234|0.61111 17235|0.625 17236|0.73611 17237|0.44444 17238|0.72222 17239|0.80556 17240|0.63889 17241|0.5 17242|0.55556 17243|0.875 17244|0.43056 17245|0.20833 17246|0.72222 17247|0.31944 17248|0.30556 17249|0.45833 17250|0.70833 17251|0.77778 17252|0.66667 17253|0.52778 17254|0.59722 17255|0.77778 17256|0.66667 17257|0.73611 17258|0.59722 17259|0.83333 17260|0.72222 17261|0.45833 17262|0.34722 17263|0.22222 17264|0.63889 17265|0.29167 17266|0.83333 17267|0.75 17268|0.84722 17269|0.76389 17270|0.66667 17271|0.81944 17272|0.5 17273|0.77778 17274|0.51389 17275|0.63889 17276|0.69444 17277|0.5 17278|0.45833 17279|0.75 17280|0.30556 17281|0.5 17282|0.58333 17283|0.73611 17284|0.875 17285|0.94444 17286|0.75 17287|0.81944 17288|0.55556 17289|0.44444 17290|0.5 17291|0.54167 17292|0.5 17293|0.47222 17294|0.27778 17295|0.66667 17296|0.5 17297|0.5 17298|0.52778 17299|0.44444 17300|0.51389 17301|0.52778 17302|0.45833 17303|0.40278 17304|0.5 17305|0.5 17306|0.5 17307|0.5 17308|0.44444 17309|0.52778 17310|0.45833 17311|0.48611 17312|0.61111 17313|0.52778 17314|0.38889 17315|0.55556 17316|0.61111 17317|0.34722 17318|0.5 17319|0.5 17320|0.63889 17321|0.83333 17322|0.47222 17323|0.59722 17324|0.59722 17325|0.61111 17326|0.72222 17327|0.54167 17328|0.5 17329|0.73611 17330|0.5 17331|0.5 17332|0.5 17333|0.70833 17334|0.76389 17335|0.66667 17336|0.5 17337|0.83333 17338|0.29167 17339|0.5 17340|0.5 17341|0.5 17342|0.5 17343|0.55556 17344|0.5 17345|0.5 17346|0.52778 17347|0.5 17348|0.76389 17349|0.86111 17350|0.77778 17351|0.5 17352|0.36111 17353|0.36111 17354|0.38889 17355|0.25 17356|0.44444 17357|0.72222 17358|0.56944 17359|0.5 17360|0.81944 17361|0.48611 17362|0.54167 17363|0.61111 17364|0.27778 17365|0.66667 17366|0.55556 17367|0.69444 17368|0.5 17369|0.5 17370|0.52778 17371|0.5 17372|0.76389 17373|0.61111 17374|0.5 17375|0.61111 17376|0.55556 17377|0.58333 17378|0.625 17379|0.80556 17380|0.76389 17381|0.48611 17382|0.625 17383|0.66667 17384|0.80556 17385|0.51389 17386|0.5 17387|0.54167 17388|0.47222 17389|0.51389 17390|0.56944 17391|0.45833 17392|0.84722 17393|0.75 17394|0.5 17395|0.45833 17396|0.63889 17397|0.55556 17398|0.5 17399|0.70833 17400|0.44444 17401|0.40278 17402|0.72222 17403|0.5 17404|0.19444 17405|0.61111 17406|0.47222 17407|0.55556 17408|0.5 17409|0.36111 17410|0.44444 17411|0.5 17412|0.38889 17413|0.5 17414|0.34722 17415|0.76389 17416|0.68056 17417|0.61111 17418|0.22222 17419|0.5 17420|0.59722 17421|0.44444 17422|0.77778 17423|0.54167 17424|0.48611 17425|0.70833 17426|0.47222 17427|0.56944 17428|0.625 17429|0.79167 17430|0.63889 17431|0.5 17432|0.29167 17433|0.56944 17434|0.5 17435|0.5 17436|0.51389 17437|0.70833 17438|0.77778 17439|0.38889 17440|0.47222 17441|0.58333 17442|0.5 17443|0.55556 17444|0.76389 17445|0.72222 17446|0.86111 17447|0.55556 17448|0.41667 17449|0.77778 17450|0.30556 17451|0.59722 17452|0.54167 17453|0.44444 17454|0.44444 17455|0.61111 17456|0.38889 17457|0.30556 17458|0.47222 17459|0.54167 17460|0.5 17461|0.56944 17462|0.55556 17463|0.55556 17464|0.5 17465|0.58333 17466|0.41667 17467|0.44444 17468|0.5 17469|0.5 17470|0.5 17471|0.5 17472|0.55556 17473|0.47222 17474|0.54167 17475|0.54167 17476|0.61111 17477|0.97222 17478|0.94444 17479|0.27778 17480|0.70833 17481|0.44444 17482|0.43056 17483|0.72222 17484|0.97222 17485|0.84722 17486|0.97222 17487|0.88889 17488|0.98611 17489|1 17490|0.58333 17491|0.5 17492|0.5 17493|0.55556 17494|0.65278 17495|0.5 17496|0.54167 17497|0.5 17498|0.5 17499|0.5 17500|0.5 17501|0.375 17502|0.56944 17503|0.56944 17504|0.52778 17505|0.5 17506|0.77778 17507|0.33333 17508|0.54167 17509|0.55556 17510|0.61111 17511|0.51389 17512|0.52778 17513|0.38889 17514|0.33333 17515|0.5 17516|0.5 17517|0.51389 17518|0.5 17519|0.55556 17520|0.65278 17521|0.76389 17522|0.66667 17523|0.5 17524|0.5 17525|0.5 17526|0.5 17527|0.51389 17528|0.5 17529|0.375 17530|0.55556 17531|0.54167 17532|0.5 17533|0.5 17534|0.63889 17535|0.52778 17536|0.625 17537|0.48611 17538|0.5 17539|0.27778 17540|0.72222 17541|0.625 17542|0.77778 17543|0.77778 17544|0.41667 17545|0.5 17546|0.54167 17547|0.45833 17548|0.40278 17549|0.54167 17550|0.44444 17551|0.43056 17552|0.44444 17553|0.47222 17554|0.61111 17555|0.68056 17556|0.84722 17557|0.5 17558|0.81944 17559|0.88889 17560|0.38889 17561|0.41667 17562|0.5 17563|0.61111 17564|0.59722 17565|0.51389 17566|0.52778 17567|0.83333 17568|0.625 17569|0.5 17570|0.51389 17571|0.625 17572|0.72222 17573|0.72222 17574|0.52778 17575|0.5 17576|0.5 17577|0.47222 17578|0.58333 17579|0.5 17580|0.58333 17581|0.41667 17582|0.5 17583|0.65278 17584|0.5 17585|0.5 17586|0.5 17587|0.45833 17588|0.27778 17589|0.5 17590|0.66667 17591|0.81944 17592|0.81944 17593|0.83333 17594|0.5 17595|0.55556 17596|0.76389 17597|0.80556 17598|0.66667 17599|0.5 17600|0.58333 17601|0.38889 17602|0.55556 17603|0.69444 17604|0.5 17605|0.5 17606|0.5 17607|0.5 17608|0.5 17609|0.36111 17610|0.5 17611|0.52778 17612|0.5 17613|0.5 17614|0.70833 17615|0.5 17616|0.58333 17617|0.66667 17618|0.56944 17619|0.56944 17620|0.375 17621|0.44444 17622|0.54167 17623|0.41667 17624|0.59722 17625|0.5 17626|0.72222 17627|0.41667 17628|0.48611 17629|0.61111 17630|0.5 17631|0.11111 17632|0.5 17633|0.61111 17634|0.38889 17635|0.5 17636|0.5 17637|0.72222 17638|0.31944 17639|0.43056 17640|0.41667 17641|0.54167 17642|0.5 17643|0.51389 17644|0.27778 17645|0.47222 17646|0.66667 17647|0.5 17648|0.5 17649|0.52778 17650|0.5 17651|0.51389 17652|0.44444 17653|0.44444 17654|0.43056 17655|0.5 17656|0.48611 17657|0.5 17658|0.51389 17659|0.5 17660|0.54167 17661|0.52778 17662|0.5 17663|0.5 17664|0.47222 17665|0.44444 17666|0.5 17667|0.5 17668|0.70833 17669|0.73611 17670|0.5 17671|0.47222 17672|0.5 17673|0.63889 17674|0.70833 17675|0.55556 17676|0.69444 17677|0.5 17678|0.51389 17679|0.70833 17680|0.5 17681|0.5 17682|0.125 17683|0 17684|0.5 17685|0.5 17686|0.51389 17687|0.83333 17688|0.91667 17689|0.5 17690|0.84722 17691|0.77778 17692|0.41667 17693|0.72222 17694|0.56944 17695|0.44444 17696|0.5 17697|0.44444 17698|0.47222 17699|0.68056 17700|0.56944 17701|0.375 17702|0.59722 17703|0.5 17704|0.54167 17705|0.5 17706|0.60417 17707|0.75 17708|0.79167 17709|0.88889 17710|0.38889 17711|0.52778 17712|0.72222 17713|0.5 17714|0.33333 17715|0.5 17716|0.47222 17717|0.5 17718|0.77778 17719|0.33333 17720|0.51389 17721|0.83333 17722|0.875 17723|0.20833 17724|0.51389 17725|0.56944 17726|0.38889 17727|0.66667 17728|0.875 17729|0.5 17730|0.66667 17731|0.5 17732|0.80556 17733|0.83333 17734|0.52778 17735|0.81944 17736|0.5 17737|0.61111 17738|0.55556 17739|0.76389 17740|0.59722 17741|0.55556 17742|0.52778 17743|0.5 17744|0.48611 17745|0.76389 17746|0.5 17747|0.5 17748|0.125 17749|0.59722 17750|0.80556 17751|0.5 17752|0.5 17753|0.47222 17754|0.5 17755|0.54167 17756|0.625 17757|0.70833 17758|0.45833 17759|0.55556 17760|0.5 17761|0.75 17762|0.41667 17763|0.77778 17764|0.81944 17765|0.59722 17766|0.48611 17767|0.48611 17768|0.72222 17769|0.52778 17770|0.5 17771|0.83333 17772|0.625 17773|0.76389 17774|0.61111 17775|0.72222 17776|0.76389 17777|0.65278 17778|0.59722 17779|0.59722 17780|0.55556 17781|0.66667 17782|0.5 17783|0.70833 17784|0.625 17785|0.58333 17786|0.48611 17787|0.375 17788|0.61111 17789|0.73611 17790|0.47222 17791|0.5 17792|0.58333 17793|0.44444 17794|0.5 17795|0.5 17796|0.72222 17797|0.58333 17798|0.5 17799|0.55556 17800|0.5 17801|0.5 17802|0.73611 17803|0.26389 17804|0.68056 17805|0.73611 17806|0.33333 17807|0.55556 17808|0.80556 17809|0.5 17810|0.68056 17811|0.375 17812|0.54167 17813|0.27778 17814|0.68056 17815|0.5 17816|0.88889 17817|0.43056 17818|0.72222 17819|0.5 17820|0.80556 17821|0.41667 17822|0.58333 17823|0.47222 17824|0.58333 17825|0.5 17826|0.58333 17827|0.58333 17828|0.43056 17829|0.56944 17830|0.63889 17831|0.73611 17832|0.5 17833|0.5 17834|0.55556 17835|0.54167 17836|0.54167 17837|0.54167 17838|0.5 17839|0.5 17840|0.5 17841|0.69444 17842|0.55556 17843|0.5 17844|0.55556 17845|0.5 17846|0.72222 17847|0.5 17848|0.54167 17849|0.5 17850|0.5 17851|0.48611 17852|0.56944 17853|0.5 17854|0.5 17855|0.47222 17856|0.72222 17857|0.34722 17858|0.625 17859|0.61111 17860|0.5 17861|0.52778 17862|0.55556 17863|0.58333 17864|0.55556 17865|0.33333 17866|0.59722 17867|0.36111 17868|0.375 17869|0.5 17870|0.65278 17871|0.52778 17872|0.76389 17873|0.63889 17874|0.48611 17875|0.5 17876|0.48611 17877|0.55556 17878|0.625 17879|0.40278 17880|0.59722 17881|0.47222 17882|0.55556 17883|0.5 17884|0.73611 17885|0.27778 17886|0.33333 17887|0.5 17888|0.73611 17889|0.95833 17890|0.93056 17891|0.875 17892|0.88889 17893|0.5 17894|0.5 17895|0.625 17896|0.73611 17897|0.875 17898|0.88889 17899|0.88889 17900|0.90278 17901|0.83333 17902|0.5 17903|0.55556 17904|0.5 17905|0.33333 17906|0.55556 17907|0.76389 17908|0.66667 17909|0.26389 17910|0.29167 17911|0.73611 17912|0.52778 17913|0.36111 17914|0.44444 17915|0.88889 17916|0.84722 17917|0.47222 17918|0.56944 17919|0.59722 17920|0.55556 17921|0.54167 17922|0.77778 17923|0.43056 17924|0.26389 17925|0.51389 17926|0.80556 17927|0.5 17928|0.86111 17929|0.31944 17930|0.40278 17931|0.73611 17932|0.58333 17933|0.66667 17934|0.5 17935|0.44444 17936|0.44444 17937|0.80556 17938|0.69444 17939|0.56944 17940|0.61111 17941|0.58333 17942|0.54167 17943|0.54167 17944|0.625 17945|0.5 17946|0.73611 17947|0.65278 17948|0.56944 17949|0.61111 17950|0.48611 17951|0.61111 17952|0.75 17953|0.5 17954|0.5625 17955|0.45833 17956|0.55556 17957|0.58333 17958|0.54167 17959|0.44444 17960|0.88889 17961|0.84722 17962|0.86111 17963|0.44444 17964|0.72222 17965|0.59722 17966|0.81944 17967|0.51389 17968|0.70833 17969|0.65278 17970|0.94444 17971|0.81944 17972|0.51389 17973|0.83333 17974|0.44444 17975|0.5 17976|0.44444 17977|0.65278 17978|0.73611 17979|0.51389 17980|0.30556 17981|0.52778 17982|0.65278 17983|0.29167 17984|0.5 17985|0.61111 17986|0.48611 17987|0.91667 17988|0.83333 17989|0.5 17990|0.54167 17991|0.52778 17992|0.77778 17993|0.5 17994|0.66667 17995|0.625 17996|0.55556 17997|0.625 17998|0.45833 17999|0.55556 18000|0.625 18001|0.38889 18002|0.58333 18003|0.63889 18004|0.59722 18005|0.72222 18006|0.79167 18007|0.66667 18008|0.44444 18009|0.79167 18010|0.83333 18011|0.81944 18012|0.5 18013|0.58333 18014|0.88889 18015|0.5 18016|0.5 18017|0.5 18018|0.44444 18019|0.79167 18020|0.54167 18021|0.84722 18022|0.70833 18023|0.875 18024|0.47222 18025|0.5 18026|0.59722 18027|0.52778 18028|0.51389 18029|0.38889 18030|0.5 18031|0.77778 18032|0.625 18033|0.54167 18034|0.5 18035|0.38889 18036|0.55556 18037|0.38889 18038|0.5 18039|0.55556 18040|0.48611 18041|0.48611 18042|0.88889 18043|0.51389 18044|0.44444 18045|0.5 18046|0.54167 18047|0.51389 18048|0.73611 18049|0.5 18050|0.43056 18051|0.69444 18052|0.79167 18053|0.73611 18054|0.77778 18055|0.72222 18056|0.45833 18057|0.73611 18058|0.55556 18059|0.86111 18060|0.81944 18061|0.51389 18062|0.44444 18063|0.625 18064|0.44444 18065|0.52778 18066|0.77778 18067|0.72222 18068|0.55556 18069|0.63889 18070|0.70833 18071|0.65278 18072|0.52778 18073|0.77778 18074|0.80556 18075|0.5 18076|0.41667 18077|0.5 18078|0.47222 18079|0.5 18080|0.5 18081|0.5 18082|0.5 18083|0.5 18084|0.68056 18085|0.81944 18086|0.5 18087|0.70833 18088|0.73611 18089|0.84722 18090|0.625 18091|0.77778 18092|0.80556 18093|0.56944 18094|0.63889 18095|0.80556 18096|0.83333 18097|0.58333 18098|0.79167 18099|0.86111 18100|0.38889 18101|0.56944 18102|0.80556 18103|0.5 18104|0.625 18105|0.70833 18106|0.75 18107|0.38889 18108|0.5 18109|0.55556 18110|0.47222 18111|0.91667 18112|0.55556 18113|0.51389 18114|0.5 18115|0.61111 18116|0.54167 18117|0.5 18118|0.54167 18119|0.81944 18120|0.44444 18121|0.51389 18122|0.48611 18123|0.5 18124|0.58333 18125|0.5 18126|0.20833 18127|0.76389 18128|0.875 18129|0.69444 18130|0.375 18131|0.56944 18132|0.52778 18133|0.47222 18134|0.44444 18135|0.41667 18136|0.75 18137|0.81944 18138|0.5 18139|0.5 18140|0.5 18141|0.47222 18142|0.61111 18143|0.5 18144|0.5 18145|0.5 18146|0.44444 18147|0.65278 18148|0.61111 18149|0.63889 18150|0.38889 18151|0.68056 18152|0.79167 18153|0.56944 18154|0.72222 18155|0.75 18156|0.76389 18157|0.5 18158|0.5 18159|0.77778 18160|0.375 18161|0.81944 18162|0.77778 18163|0.5 18164|0.52778 18165|0.61111 18166|0.54167 18167|0.79167 18168|0.44444 18169|0.5 18170|0.20833 18171|0.31944 18172|0.56944 18173|0.41667 18174|0.5 18175|0.51389 18176|0.55556 18177|0.5 18178|0.66667 18179|0.55556 18180|0.45833 18181|0.5 18182|0.91667 18183|0.5 18184|0.72222 18185|0.5 18186|0.72222 18187|0.70833 18188|0.77778 18189|0.45833 18190|0.54167 18191|0.52778 18192|0.27778 18193|0.88889 18194|0.625 18195|0.38889 18196|0.56944 18197|0.5 18198|0.59722 18199|0.75 18200|0.55556 18201|0.5 18202|0.73611 18203|0.41667 18204|0.69444 18205|0.77778 18206|0.66667 18207|0.90278 18208|0.72222 18209|0.47222 18210|0.54167 18211|0.68056 18212|0.55556 18213|0.41667 18214|0.44444 18215|0.69444 18216|0.72222 18217|0.76389 18218|0.72222 18219|0.5 18220|0.36111 18221|0.72222 18222|0.38889 18223|0.65278 18224|0.86111 18225|0.51389 18226|0.44444 18227|0.33333 18228|0.41667 18229|0.73611 18230|0.56944 18231|0.41667 18232|0.66667 18233|0.29167 18234|0.38889 18235|0.5 18236|0.5 18237|0.5 18238|0.5 18239|0.95833 18240|0.34722 18241|0.5 18242|0.625 18243|0.5 18244|0.5 18245|0.5 18246|0.5 18247|0.52778 18248|0.44444 18249|0.31944 18250|0.5 18251|0.58333 18252|0.75 18253|0.68056 18254|0.22222 18255|0.40278 18256|0.61111 18257|0.51389 18258|0.94444 18259|0.875 18260|0.55556 18261|0.43056 18262|0.72222 18263|0.5 18264|0.5 18265|0.84722 18266|0.72222 18267|0.45833 18268|0.65278 18269|0.68056 18270|0.5 18271|0.29167 18272|0.69444 18273|0.95833 18274|0.84722 18275|0.79167 18276|0.83333 18277|0.875 18278|0.875 18279|0.76389 18280|0.93056 18281|0.72222 18282|0.73611 18283|0.73611 18284|0.5 18285|0.94444 18286|0.61111 18287|0.76389 18288|0.23611 18289|0.625 18290|0.81944 18291|0.77778 18292|0.48611 18293|0.70833 18294|0.54167 18295|0.51389 18296|0.22222 18297|0.31944 18298|0.93056 18299|0.81944 18300|0.56944 18301|0.61111 18302|0.52778 18303|0.86111 18304|0.55556 18305|0.84722 18306|0.375 18307|0.34722 18308|0.80556 18309|0.88889 18310|0.65278 18311|0.61111 18312|0.61111 18313|0.51389 18314|0.5 18315|0.63889 18316|0.48611 18317|0.47222 18318|0.81944 18319|0.83333 18320|0.11111 18321|0.36111 18322|0.44444 18323|0.51389 18324|0.55556 18325|0.55556 18326|0.81944 18327|0.875 18328|0.66667 18329|0.18056 18330|0.5 18331|0.52778 18332|0.90278 18333|0.59722 18334|0.5 18335|0.625 18336|0.80556 18337|0.61111 18338|0.625 18339|0.86111 18340|0.83333 18341|0.5 18342|0.69444 18343|0.65278 18344|0.77778 18345|0.79167 18346|0.56944 18347|0.69444 18348|0.29167 18349|0.63889 18350|0.63889 18351|0.375 18352|0.79167 18353|0.625 18354|0.55556 18355|0.20833 18356|0.5 18357|0.5 18358|0.66667 18359|0.38889 18360|0.90278 18361|0.5 18362|0.72222 18363|0.51389 18364|0.58333 18365|0.44444 18366|0.5 18367|0.84722 18368|0.72222 18369|0.56944 18370|0.75 18371|0.625 18372|0.65278 18373|0.77778 18374|0.66667 18375|0.72222 18376|0.45833 18377|0.90278 18378|0.72222 18379|0.44444 18380|0.61111 18381|0.47222 18382|0.5 18383|0.29167 18384|0.69444 18385|0.77778 18386|0.79167 18387|0.13889 18388|0.5 18389|0.69444 18390|0.66667 18391|0.69444 18392|0.66667 18393|0.77778 18394|0.55556 18395|0.66667 18396|0.69444 18397|0.66667 18398|0.47222 18399|0.73611 18400|0.80556 18401|0.27778 18402|0.5 18403|0.70833 18404|0.625 18405|0.72222 18406|0.5 18407|0.51389 18408|0.5 18409|0.79167 18410|0.93056 18411|0.68056 18412|0.83333 18413|0.69444 18414|0.875 18415|0.61111 18416|0.73611 18417|0.56944 18418|0.61111 18419|0.51389 18420|0.19444 18421|0.55556 18422|0.81944 18423|0.86111 18424|0.43056 18425|0.84722 18426|0.56944 18427|0.54167 18428|0.72222 18429|0.86111 18430|0.77778 18431|0.875 18432|0.65278 18433|0.61111 18434|0.27778 18435|0.70833 18436|0.5 18437|0.41667 18438|0.56944 18439|0.73611 18440|0.61111 18441|0.5 18442|0.5 18443|0.90278 18444|0.75 18445|0.68056 18446|0.5 18447|0.41667 18448|0.22222 18449|0.72222 18450|0.63194 18451|0.66667 18452|0.76389 18453|0.65278 18454|0.40278 18455|0.76389 18456|0.70833 18457|0.83333 18458|0.84722 18459|0.55556 18460|0.73611 18461|0.58333 18462|0.56944 18463|0.44444 18464|0.41667 18465|0.61111 18466|0.84722 18467|0.5 18468|0.81944 18469|0.75 18470|0.83333 18471|0.59722 18472|0.54167 18473|0.77778 18474|0.55556 18475|0.79167 18476|0.81944 18477|0.58333 18478|0.39583 18479|0.5 18480|0.81944 18481|0.79167 18482|0.93056 18483|0.51389 18484|0.86111 18485|0.91667 18486|0.93056 18487|0.90278 18488|0.43056 18489|0.25 18490|0.69444 18491|0.72222 18492|0.51389 18493|0.81944 18494|0.75 18495|0.55556 18496|0.83333 18497|0.75 18498|0.54167 18499|0.77778 18500|0.68056 18501|0.5 18502|0.45833 18503|0.47222 18504|0.5 18505|0.83333 18506|0.72222 18507|0.38889 18508|0.65278 18509|0.72222 18510|0.43056 18511|0.61111 18512|0.69444 18513|0.80556 18514|0.5 18515|0.22222 18516|0.55556 18517|0.68056 18518|0.79167 18519|0.55556 18520|0.66667 18521|0.5 18522|0.25 18523|0.33333 18524|0.66667 18525|0.31944 18526|0.72222 18527|0.77778 18528|0.5 18529|0.5 18530|0.5 18531|0.5 18532|0.59722 18533|0.40278 18534|0.5 18535|0.5 18536|0.5 18537|0.5 18538|0.84722 18539|0.59722 18540|0.70833 18541|0.83333 18542|0.94444 18543|0.63889 18544|0.66667 18545|0.66667 18546|0.86111 18547|0.47222 18548|0.70833 18549|0.68056 18550|0.72222 18551|0.94444 18552|0.55556 18553|0.47222 18554|0.44444 18555|0.5 18556|0.51389 18557|0.54167 18558|0.5 18559|0.5 18560|0.5 18561|0.5 18562|0.55556 18563|0.25 18564|0.5 18565|0.23611 18566|0.40278 18567|0.5 18568|0.5 18569|0.5 18570|0.31944 18571|0.75 18572|0.77778 18573|0.80556 18574|0.73611 18575|0.63889 18576|0.5 18577|0.68056 18578|0.70833 18579|0.625 18580|0.72222 18581|0.90278 18582|0.61111 18583|0.77778 18584|0.94444 18585|0.88889 18586|0.875 18587|0.75 18588|0.84722 18589|0.58333 18590|0.72222 18591|0.79167 18592|0.86111 18593|0.88889 18594|0.80556 18595|0.84722 18596|0.70833 18597|0.77778 18598|0.72222 18599|0.86111 18600|0.875 18601|0.90278 18602|0.79167 18603|0.86111 18604|0.93056 18605|0.86111 18606|0.79167 18607|0.77778 18608|0.5 18609|0.79167 18610|0.83333 18611|0.5 18612|0.83333 18613|0.86111 18614|0.5 18615|0.5 18616|0.5 18617|0.5 18618|0.5 18619|0.5 18620|0.5 18621|0.30556 18622|0.5 18623|0.5 18624|0.73611 18625|0.5 18626|0.83333 18627|0.5 18628|0.95833 18629|0.80556 18630|0.51389 18631|0.31944 18632|0.75 18633|0.5 18634|0.5 18635|0.5 18636|0.86111 18637|0.47222 18638|0.44444 18639|0.5 18640|0.5 18641|0.5 18642|0.5 18643|0.54167 18644|0.63889 18645|0.79167 18646|0.30556 18647|0.72222 18648|0.77778 18649|0.69444 18650|0.70833 18651|0.76389 18652|0.84722 18653|0.84722 18654|0.73611 18655|0.81944 18656|0.95833 18657|0.91667 18658|0.86111 18659|0.84722 18660|0.94444 18661|0.72222 18662|0.83333 18663|0.88889 18664|0.80556 18665|0.88889 18666|0.90278 18667|0.77778 18668|0.79167 18669|0.79167 18670|0.88889 18671|0.80556 18672|0.51389 18673|0.77778 18674|0.79167 18675|0.76389 18676|0.86111 18677|0.72222 18678|0.5 18679|0.86111 18680|0.5 18681|0.5 18682|0.5 18683|0.5 18684|0.5 18685|0.5 18686|0.58333 18687|0.31944 18688|0.5 18689|0.5 18690|0.375 18691|0.5 18692|0.77778 18693|0.81944 18694|0.86111 18695|0.5 18696|0.65278 18697|0.79167 18698|0.77778 18699|0.66667 18700|0.54167 18701|0.5 18702|0.77778 18703|0.52778 18704|0.63889 18705|0.5 18706|0.55556 18707|0.5 18708|0.69444 18709|0.5 18710|0.375 18711|0.33333 18712|0.5 18713|0.5 18714|0.5 18715|0.5 18716|0.5 18717|0.5 18718|0.5 18719|0.61111 18720|0.59722 18721|0.5 18722|0.5 18723|0.61111 18724|0.72222 18725|0.72222 18726|0.68056 18727|0.5 18728|0.5 18729|0.51389 18730|0.58333 18731|0.52778 18732|0.5 18733|0.54167 18734|0.41667 18735|0.5 18736|0.5 18737|0.66667 18738|0.77778 18739|0.31944 18740|0.54167 18741|0.5 18742|0.5 18743|0.5 18744|0.5 18745|0.5 18746|0.5 18747|0.5 18748|0.5 18749|0.5 18750|0.51389 18751|0.5 18752|0.5 18753|0.94444 18754|0.69444 18755|0.5 18756|0.5 18757|0.73611 18758|0.86111 18759|0.81944 18760|0.34722 18761|0.58333 18762|0.5 18763|0.55556 18764|0.76389 18765|0.48611 18766|0.66667 18767|0.5 18768|0.47222 18769|0.5 18770|0.5 18771|0.41667 18772|0.5 18773|0.5 18774|0.5 18775|0.375 18776|0.63889 18777|0.61111 18778|0.88889 18779|0.5 18780|0.76389 18781|0.51389 18782|0.5 18783|0.5 18784|0.51389 18785|0.48611 18786|0.5 18787|0.5 18788|0.61111 18789|0.5 18790|0.81944 18791|0.73611 18792|0.5 18793|1 18794|0.5 18795|0.5 18796|0.88889 18797|0.83333 18798|0.65278 18799|0.5 18800|0.5 18801|0.5 18802|0.5 18803|0.5 18804|0.54167 18805|0.33333 18806|0.31944 18807|0.44444 18808|0.68056 18809|0.80556 18810|0.91667 18811|0.41667 18812|0.44444 18813|0.75 18814|0.73611 18815|0.5 18816|0.5 18817|0.5 18818|0.5 18819|0.5 18820|0.125 18821|0.72222 18822|0.5 18823|0.5 18824|0.5 18825|0.5 18826|0.5 18827|0.84722 18828|0.94444 18829|0.5 18830|0.55556 18831|0.75 18832|0.79167 18833|0.45833 18834|0.19444 18835|0.52778 18836|0.5 18837|0.45833 18838|0.5 18839|0.5 18840|0.5 18841|0.38889 18842|0.5 18843|0.59722 18844|0.45833 18845|0.5 18846|0.5 18847|0.72222 18848|0.75 18849|0.69444 18850|0.77778 18851|0.80556 18852|0.5 18853|0.375 18854|0.5 18855|0.47222 18856|0.73611 18857|0.48611 18858|0.80556 18859|0.5 18860|0.55556 18861|0.48611 18862|0.5 18863|0.73611 18864|0.33333 18865|0.5 18866|0.5 18867|0.55556 18868|0.54167 18869|0.72222 18870|0.5 18871|0.79167 18872|0.66667 18873|0.55556 18874|0.83333 18875|0.5 18876|0.66667 18877|0.5 18878|0.51389 18879|0.55556 18880|0.45833 18881|0.5 18882|0.875 18883|0.88889 18884|0.55556 18885|0.45833 18886|0.5 18887|0.625 18888|0.45833 18889|0.58333 18890|0.90278 18891|0.75 18892|0.5 18893|0.55556 18894|0.5 18895|0.55556 18896|0.81944 18897|0.5 18898|0.65278 18899|0.11111 18900|0.5 18901|0.55556 18902|0.59722 18903|0.5 18904|0.5 18905|0.5 18906|0.5 18907|0.5 18908|0.5 18909|0.54167 18910|0.75 18911|0.47222 18912|0.5 18913|0.63889 18914|0.81944 18915|0.5 18916|0.5 18917|0.5 18918|0.58333 18919|0.55556 18920|0.68056 18921|0.5 18922|0.27778 18923|0.56944 18924|0.66667 18925|0.80556 18926|0.5 18927|0.5 18928|0.5 18929|0.72222 18930|0.5 18931|0.44444 18932|0.5 18933|0.51389 18934|0.63889 18935|0.70833 18936|0.22222 18937|0.5 18938|0.5 18939|0.44444 18940|0.5 18941|0.83333 18942|0.5 18943|0.5 18944|0.5 18945|0.5 18946|0.5 18947|0.52778 18948|0.70833 18949|0.66667 18950|0.69444 18951|0.875 18952|0.68056 18953|0.45833 18954|0.79167 18955|0.81944 18956|0.88889 18957|0.5 18958|0.51389 18959|0.94444 18960|0.33333 18961|0.56944 18962|0.5 18963|0.93056 18964|0.55556 18965|0.83333 18966|0.5 18967|0.5 18968|0.33333 18969|0.69444 18970|0.88889 18971|0.83333 18972|0.75 18973|0.51389 18974|0.5 18975|0.5 18976|0.5 18977|0.77778 18978|0.5 18979|0.5 18980|0.5 18981|0.76389 18982|0.75 18983|0.44444 18984|0.5 18985|0.65278 18986|0.55556 18987|0.88889 18988|0.18056 18989|0.15278 18990|0.77778 18991|0.83333 18992|0.84722 18993|0.83333 18994|0.83333 18995|0.72222 18996|0.81944 18997|0.625 18998|0.97222 18999|0.86111 19000|0.69444 19001|0.5 19002|0.875 19003|0.5 19004|0.88889 19005|0.59722 19006|0.48611 19007|0.77778 19008|0.45833 19009|0.45833 19010|0.51389 19011|0.76389 19012|0.5 19013|0.58333 19014|0.47222 19015|0.61111 19016|0.5 19017|0.5 19018|0.5 19019|0.79167 19020|0.5 19021|0.5 19022|0.5 19023|0.5 19024|0.5 19025|0.5 19026|0.97222 19027|0.5 19028|0.5 19029|0.5 19030|0.5 19031|0.38889 19032|0.61111 19033|0.5 19034|0.5 19035|0.51389 19036|0.77778 19037|0.66667 19038|0.5 19039|0.5 19040|0.5 19041|0.88889 19042|0.95833 19043|0.94444 19044|0.5 19045|0.5 19046|0.5 19047|0.41667 19048|0.5 19049|0.94444 19050|0.875 19051|0.75 19052|0.5 19053|0.34722 19054|0.5 19055|0.59722 19056|0.5 19057|0.76389 19058|0.5 19059|0.5 19060|0.5 19061|0.5 19062|0.31944 19063|0.25 19064|0.5 19065|0.5 19066|0.5 19067|0.5 19068|0.5 19069|0.33333 19070|0.5 19071|0.5 19072|0.5 19073|0.5 19074|0.75 19075|0.51389 19076|0.5 19077|0.98611 19078|0.83333 19079|0.98611 19080|0.5 19081|0.38889 19082|0.47222 19083|0.5 19084|0.5 19085|0.5 19086|0.5 19087|0.5 19088|0.5 19089|0.5 19090|0.72222 19091|0.72222 19092|0.55556 19093|0.5 19094|0.5 19095|0.5 19096|0.5 19097|0.76389 19098|0.84722 19099|0.5 19100|0.68056 19101|0.5 19102|0.5 19103|0.94444 19104|0.88889 19105|0.80556 19106|0.5 19107|0.5 19108|0.5 19109|0.5 19110|0.94444 19111|0.5 19112|0.61111 19113|0.5 19114|0.5 19115|0.5 19116|0.27778 19117|0.44444 19118|0.90278 19119|0.5 19120|0.40278 19121|0.5 19122|0.5 19123|0.5 19124|0.70833 19125|0.5 19126|0.58333 19127|0.58333 19128|0.72222 19129|0.22222 19130|0.77778 19131|0.38889 19132|0.29167 19133|0.88889 19134|0.65278 19135|0.5 19136|0.75 19137|0.70833 19138|0.52778 19139|0.38889 19140|0.40278 19141|0.41667 19142|0.5 19143|0.5 19144|0.44444 19145|0.5 19146|0.40278 19147|0.52083 19148|0.77778 19149|0.5 19150|0.44444 19151|0.47222 19152|0.38889 19153|0.41667 19154|0.5 19155|0.36111 19156|0.48611 19157|0.875 19158|0.58333 19159|0.80556 19160|0.30556 19161|0.97222 19162|0.5 19163|0.48611 19164|0.23611 19165|0.58333 19166|0.5 19167|0.90278 19168|0.5 19169|0.5 19170|0.5 19171|0.5 19172|0.51389 19173|0.5 19174|0.5 19175|0.5 19176|0.5 19177|0.5 19178|0.44444 19179|0.88889 19180|0.68056 19181|0.66667 19182|0.5 19183|0.5 19184|0.44444 19185|0.54167 19186|0.55556 19187|0.29167 19188|0.5 19189|0.5 19190|0.55556 19191|0.73611 19192|0.77778 19193|0.55556 19194|0.68056 19195|0.83333 19196|0.51389 19197|0.81944 19198|0.52778 19199|0.34722 19200|0.16667 19201|0.22222 19202|0.5 19203|0.5 19204|0.5 19205|0.5 19206|0.5 19207|0.5 19208|0.72222 19209|0.5 19210|0.5 19211|0.5 19212|0.5 19213|0.66667 19214|0.90278 19215|0.80556 19216|0.5 19217|0.5 19218|0.5 19219|0.55556 19220|0.91667 19221|0.44444 19222|0.5 19223|0.44444 19224|0.5 19225|0.5 19226|0.5 19227|0.63889 19228|0.80556 19229|0.5 19230|0.83333 19231|0.5 19232|0.5 19233|0.5 19234|0.51389 19235|0.5 19236|0.5 19237|0.56944 19238|0.48611 19239|0.5 19240|0.77778 19241|0.86111 19242|0.5 19243|0.91667 19244|0.61111 19245|0.5 19246|0.54167 19247|0.5 19248|0.5 19249|0.51389 19250|0.5 19251|0.5 19252|0.48611 19253|0.47222 19254|0.29167 19255|0.84722 19256|0.5 19257|0.54167 19258|0.83333 19259|0.84722 19260|0.73611 19261|0.55556 19262|0.76389 19263|0.5 19264|0.22222 19265|0.44444 19266|0.5 19267|0.5 19268|0.5 19269|0.5 19270|0.31944 19271|0.68056 19272|0.5 19273|0.5 19274|0.55556 19275|0.5 19276|0.5 19277|0.5 19278|0.5 19279|0.5 19280|0.5 19281|0.94444 19282|0.55556 19283|0.52778 19284|0.5 19285|0.29167 19286|0.51389 19287|0.41667 19288|0.5 19289|0.5 19290|0.77778 19291|0.70833 19292|0.5 19293|0.69444 19294|0.5 19295|0.83333 19296|0.48611 19297|0.54167 19298|0.94444 19299|0.77778 19300|0.90278 19301|0.5 19302|0.5 19303|0.81944 19304|0.52778 19305|0.5 19306|0.69444 19307|0.5 19308|0.72222 19309|0.81944 19310|0.77778 19311|0.86111 19312|0.56944 19313|0.88889 19314|0.86111 19315|0.86111 19316|0.56944 19317|0.61111 19318|0.88889 19319|0.5 19320|0.5 19321|0.88889 19322|0.86111 19323|0.5 19324|0.51389 19325|0.68056 19326|0.81944 19327|0.5 19328|0.875 19329|0.5 19330|0.5 19331|0.75 19332|0.41667 19333|0.83333 19334|0.83333 19335|0.55556 19336|0.73611 19337|0.69444 19338|0.5 19339|0.61111 19340|0.5 19341|0.58333 19342|0.66667 19343|0.56944 19344|0.52778 19345|0.875 19346|0.5 19347|0.77778 19348|0.94444 19349|0.43056 19350|0.70833 19351|0.5 19352|0.5 19353|0.90278 19354|0.83333 19355|0.75 19356|0.61111 19357|0.88889 19358|0.73611 19359|0.90278 19360|0.5 19361|0.43056 19362|0.75 19363|0.77778 19364|0.91667 19365|0.79167 19366|0.69444 19367|0.48611 19368|0.80556 19369|0.25 19370|0.69444 19371|0.63889 19372|0.83333 19373|0.38889 19374|0.48611 19375|0.5 19376|0.5 19377|0.5 19378|0.5 19379|0.5 19380|0.38889 19381|0.41667 19382|0.5 19383|0.5 19384|0.77778 19385|0.5 19386|0.63889 19387|0.5 19388|0.5 19389|0.51389 19390|0.44444 19391|0.48611 19392|0.51389 19393|0.5 19394|0.5 19395|0.56944 19396|0.68056 19397|0.5 19398|0.5 19399|0.55556 19400|0.70833 19401|0.91667 19402|0.36111 19403|0.5 19404|0.45833 19405|0.5 19406|0.625 19407|0.5 19408|0.5 19409|0.75 19410|0.66667 19411|0.5 19412|0.5 19413|0.76389 19414|0.73611 19415|0.51389 19416|0.34722 19417|0.66667 19418|0.80556 19419|0.45833 19420|0.77778 19421|0.5 19422|0.52778 19423|0.22222 19424|0.70833 19425|0.5 19426|0.5 19427|0.5 19428|0.25 19429|0.52778 19430|0.93056 19431|0.5 19432|0.86111 19433|0.5 19434|0.5 19435|0.5 19436|0.5 19437|0.69444 19438|0.5 19439|0.5 19440|0.79167 19441|0.5 19442|0.92708 19443|0.33333 19444|0.55556 19445|0.38889 19446|0.66667 19447|0.29167 19448|0.48611 19449|0.5 19450|0.5 19451|0.5 19452|0.61111 19453|0.5 19454|0.45833 19455|0.5 19456|0.5 19457|0.5 19458|0.65278 19459|0.625 19460|0.5 19461|0.59722 19462|0.77778 19463|0.33333 19464|0.29167 19465|0.52778 19466|0.72222 19467|0.66667 19468|0.5 19469|0.58333 19470|0.5 19471|0.36111 19472|0.625 19473|0.5 19474|0.51389 19475|0.63889 19476|0.69444 19477|0.29167 19478|0.83333 19479|0.76389 19480|0.5 19481|0.29167 19482|0.5 19483|0.40278 19484|0.47222 19485|0.51389 19486|0.61111 19487|0.88889 19488|0.88889 19489|0.83333 19490|0.80556 19491|0.77778 19492|0.5 19493|0.77778 19494|0.86111 19495|0.90278 19496|0.86111 19497|0.94444 19498|0.59722 19499|0.66667 19500|0.48611 19501|0.48611 19502|0.83333 19503|0.63889 19504|0.80556 19505|0.83333 19506|0.77778 19507|0.72222 19508|0.76389 19509|0.77778 19510|0.90278 19511|0.76389 19512|0.5 19513|0.43056 19514|0.81944 19515|0.43056 19516|0.61111 19517|0.58333 19518|0.77778 19519|0.55556 19520|0.65278 19521|0.5 19522|0.63889 19523|0.5 19524|0.36111 19525|0.91667 19526|0.94444 19527|0.55556 19528|0.76389 19529|0.55556 19530|0.63889 19531|0.63889 19532|0.5 19533|0.65278 19534|0.19792 19535|0.48611 19536|0.73611 19537|0.5 19538|0.81944 19539|0.5 19540|0.69444 19541|0.5 19542|0.33333 19543|0.41667 19544|0.86111 19545|0.93056 19546|0.875 19547|0.86111 19548|0.98611 19549|0.83333 19550|0.79167 19551|0.83333 19552|0.77778 19553|0.68056 19554|0.72222 19555|0.66667 19556|0.5 19557|0.5 19558|0.63889 19559|0.86111 19560|0.38889 19561|0.54167 19562|0.83333 19563|0.63889 19564|0.75 19565|0.83333 19566|0.47222 19567|0.18056 19568|0.56944 19569|0.88889 19570|0.40278 19571|0.65278 19572|0.72222 19573|0.5 19574|0.5 19575|0.30556 19576|0.5 19577|0.22222 19578|0.60417 19579|0.70833 19580|0.5 19581|0.55556 19582|0.63889 19583|0.5 19584|0.5 19585|0.75 19586|0.69444 19587|0.65278 19588|0.625 19589|0.5 19590|0.81944 19591|0.94444 19592|0.86111 19593|0.375 19594|0.86111 19595|0.90278 19596|0.55556 19597|0.55556 19598|0.84722 19599|0.95833 19600|0.5 19601|0.30556 19602|0.79167 19603|0.81944 19604|0.56944 19605|0.80556 19606|0.68056 19607|0.48611 19608|0.84722 19609|0.90278 19610|0.5 19611|0.38889 19612|0.75 19613|0.77778 19614|0.55556 19615|0.875 19616|0.33333 19617|0.22222 19618|0.83333 19619|0.83333 19620|0.90278 19621|0.73611 19622|0.66667 19623|0.5 19624|0.23611 19625|0.5 19626|0.54167 19627|1 19628|0.95833 19629|0.58333 19630|0.40278 19631|0.77778 19632|0.75 19633|0.72222 19634|0.5 19635|0.5 19636|0.5 19637|0.5 19638|0.65278 19639|0.44444 19640|0.375 19641|0.47222 19642|0.5 19643|0.51389 19644|0.58333 19645|0.5 19646|0.83333 19647|0.72222 19648|0.625 19649|0.72222 19650|0.65278 19651|0.48611 19652|0.013889 19653|0.11111 19654|0.69444 19655|0.625 19656|0.33333 19657|0.5 19658|0.41667 19659|0.22222 19660|0.5 19661|0.58333 19662|0.61111 19663|0.84722 19664|0.26389 19665|0.5 19666|0.51389 19667|0.76389 19668|0.5 19669|0.5 19670|0.52083 19671|0.77778 19672|0.51389 19673|0.5 19674|0.93056 19675|0.81944 19676|0.54167 19677|0.5 19678|0.72222 19679|0.55556 19680|0.44444 19681|0.59722 19682|0.84722 19683|0.5 19684|0.5 19685|0.5 19686|0.80556 19687|0.51389 19688|0.44444 19689|0.23611 19690|0.68056 19691|0.5 19692|0.55556 19693|0.61111 19694|0.55556 19695|0.55556 19696|0.55556 19697|0.5 19698|0.56944 19699|0.41667 19700|0.63889 19701|0.80556 19702|0.91667 19703|0.56944 19704|0.52778 19705|0.77778 19706|0.5 19707|0.5 19708|0.55556 19709|0.875 19710|0.65278 19711|0.52778 19712|0.38889 19713|0.48611 19714|0.81944 19715|0.59722 19716|0.80556 19717|0.34722 19718|0.77778 19719|0.93056 19720|0.80556 19721|0.76389 19722|0.79167 19723|0.90278 19724|0.55556 19725|0.625 19726|0.80556 19727|0.86111 19728|0.33333 19729|0.72222 19730|0.75 19731|0.36111 19732|0.29167 19733|0.5 19734|0.59722 19735|0.22222 19736|0.125 19737|0.375 19738|0.86111 19739|0.72222 19740|0.54167 19741|0.61111 19742|0.44444 19743|0.84722 19744|0.44444 19745|0.55556 19746|0.75 19747|0.69444 19748|0.44444 19749|0.70833 19750|0.5 19751|0.5 19752|0.5 19753|0.38889 19754|0.59722 19755|0.55556 19756|0.875 19757|0.65278 19758|0.5 19759|0.44444 19760|0.45833 19761|0.47222 19762|0.5 19763|0.83333 19764|0.61458 19765|0.73611 19766|0.84722 19767|0.55556 19768|0.55556 19769|0.77778 19770|0.75 19771|0.44444 19772|0.5 19773|0.77778 19774|0.66667 19775|0.65278 19776|0.5 19777|0.5 19778|0.5 19779|0.5 19780|0.5 19781|0.5 19782|0.5 19783|0.5 19784|0.55556 19785|0.5 19786|0.5 19787|0.5 19788|0.77778 19789|0.5 19790|0.5 19791|0.38889 19792|0.5 19793|0.88889 19794|0.27778 19795|0.5 19796|0.70833 19797|0.65278 19798|0.61111 19799|0.72222 19800|0.55556 19801|0.76389 19802|0.55556 19803|0.5 19804|0.72222 19805|0.55556 19806|0.76389 19807|0.19444 19808|0.22222 19809|0.55556 19810|0.86111 19811|0.73611 19812|0.55556 19813|0.68056 19814|0.70833 19815|0.5 19816|0.51389 19817|0.51389 19818|0.5 19819|0.80556 19820|0.5 19821|0.66667 19822|0.77778 19823|0.77778 19824|0.55556 19825|0.5 19826|0.70833 19827|0.5 19828|0.5 19829|0.5 19830|0.68056 19831|0.80556 19832|0.55556 19833|0.5 19834|0.84722 19835|0.61111 19836|0.83333 19837|0.5 19838|0.44444 19839|0.48611 19840|0.5 19841|0.88889 19842|0.45833 19843|0.68056 19844|0.055556 19845|0.5 19846|0.56944 19847|0.75 19848|0.33333 19849|0.65278 19850|0.70833 19851|0.88889 19852|0.72222 19853|0.77778 19854|0.38889 19855|0.77778 19856|0.5 19857|0.70833 19858|0.5 19859|0.5 19860|0.5 19861|0.55556 19862|0.56944 19863|0.36111 19864|0.5 19865|0.52778 19866|0.38889 19867|0.84722 19868|0.5 19869|0.73611 19870|0.45833 19871|0.72222 19872|0.76389 19873|0.63889 19874|0.5 19875|0.52778 19876|0.80556 19877|0.73611 19878|0.61111 19879|0.5 19880|0.56944 19881|0.73611 19882|0.55556 19883|0.41667 19884|0.5 19885|0.72222 19886|0.77778 19887|0.61111 19888|0.70833 19889|0.73611 19890|0.38889 19891|0.83333 19892|0.75 19893|0.5 19894|0.5 19895|0.83333 19896|0.55556 19897|0.81944 19898|0.68056 19899|0.75 19900|0.69444 19901|0.55556 19902|0.55556 19903|0.65278 19904|0.55556 19905|0.5 19906|0.625 19907|0.52778 19908|0.18056 19909|0.47222 19910|0.30556 19911|0.30556 19912|0.33333 19913|0.41667 19914|0.63889 19915|0.77778 19916|0.5 19917|0.93056 19918|0.5 19919|0.72222 19920|0.5 19921|0.5 19922|0.56944 19923|0.5 19924|0.5 19925|0.54167 19926|0.53125 19927|0.66667 19928|0.79167 19929|0.5 19930|0.66667 19931|0.54167 19932|0.51389 19933|0.58333 19934|0.65278 19935|0.5 19936|0.5 19937|0.54167 19938|0.5 19939|0.5 19940|0.52778 19941|0.66667 19942|0.66667 19943|0.43056 19944|0.70833 19945|0.58333 19946|0.44444 19947|0.76389 19948|0.72222 19949|0.81944 19950|0.93056 19951|0.11111 19952|0.16667 19953|0.5 19954|0.5 19955|0.72222 19956|0.58333 19957|0.27778 19958|0.63889 19959|0.73611 19960|0.81944 19961|0.90278 19962|0.83333 19963|0.66667 19964|0.75 19965|0.875 19966|0.83333 19967|0.5 19968|0.47222 19969|0.80556 19970|0.72222 19971|0.83333 19972|0.77778 19973|0.875 19974|0.5 19975|0.72222 19976|0.61111 19977|0.38889 19978|0.33333 19979|0.58333 19980|0.68056 19981|0.5 19982|0.65278 19983|0.61111 19984|0.77778 19985|0.52778 19986|0.5 19987|0.52778 19988|0.72222 19989|0.54167 19990|0.5 19991|0.5 19992|0.5 19993|0.54167 19994|0.61111 19995|0.5 19996|0.5 19997|0.52778 19998|0.70833 19999|0.25 20000|0.5 20001|0.68056 20002|0.61111 20003|0.83333 20004|0.625 20005|0.52778 20006|0.79167 20007|0.45833 20008|0.84722 20009|0.52778 20010|0.54167 20011|0.73611 20012|0.75 20013|0.52778 20014|0.55556 20015|0.77778 20016|0.70833 20017|0.5 20018|0.48611 20019|0.66667 20020|0.69444 20021|0.44444 20022|0.30556 20023|0.77778 20024|0.59722 20025|0.73611 20026|0.5 20027|0.5 20028|0.625 20029|0.44444 20030|0.41667 20031|0.5 20032|0.5 20033|0.48611 20034|0.5 20035|0.51389 20036|0.51389 20037|0.56944 20038|0.52778 20039|0.68056 20040|0.5 20041|0.86111 20042|0.5 20043|0.54167 20044|0.51389 20045|0.72222 20046|0.5 20047|0.54167 20048|0.5 20049|0.38889 20050|0.91667 20051|0.51389 20052|0.36111 20053|0.88889 20054|0.59722 20055|0.5 20056|0.5 20057|0.083333 20058|0.25 20059|0.5 20060|0.86111 20061|0.47222 20062|0.5 20063|0.30556 20064|0.55556 20065|0.5 20066|0.79167 20067|0.94444 20068|0.51389 20069|0.5 20070|0.5 20071|0.5 20072|0.5 20073|0.38889 20074|0.63889 20075|0.55556 20076|0.5 20077|0.45833 20078|0.16667 20079|0.79167 20080|0.36111 20081|0.56944 20082|0.75 20083|0.94444 20084|0.72222 20085|0.43056 20086|0.23611 20087|0.44444 20088|0.72222 20089|0.66667 20090|0.23611 20091|0.55556 20092|0.76389 20093|0.61111 20094|0.75 20095|0.66667 20096|0.84722 20097|0.52778 20098|0.51389 20099|0.70833 20100|0.26389 20101|0.73611 20102|0.63889 20103|0.51389 20104|0.5 20105|0.5 20106|0.44444 20107|0.54167 20108|0.79167 20109|0.55556 20110|0.51389 20111|0.44444 20112|0.5 20113|0.90278 20114|0.73611 20115|0.70833 20116|0.80556 20117|0.83333 20118|0.5 20119|0.55556 20120|0.5 20121|0.66667 20122|0.66667 20123|0.33333 20124|0.51389 20125|0.34722 20126|0.63889 20127|0.76389 20128|0.84722 20129|0.58333 20130|0.86111 20131|0.5 20132|0.5 20133|0.66667 20134|0.73611 20135|0.44444 20136|0.66667 20137|0.83333 20138|0.5 20139|0.41667 20140|0.55556 20141|0.69444 20142|0.45833 20143|0.875 20144|0.77778 20145|0.84722 20146|0.61111 20147|0.44444 20148|0.91667 20149|0.84722 20150|0.54167 20151|0.5 20152|0.55556 20153|0.75 20154|0.5 20155|0.47222 20156|0.59722 20157|0.61111 20158|0.81944 20159|0.55556 20160|0.875 20161|0.80556 20162|0.88889 20163|0.70833 20164|0.72222 20165|0.875 20166|0.34722 20167|0.80556 20168|0.38889 20169|0.75 20170|0.66667 20171|0.38889 20172|0.66667 20173|0.33333 20174|0.5 20175|0.45833 20176|0.91667 20177|0.76389 20178|0.76389 20179|0.77778 20180|0.69444 20181|0.59722 20182|0.75 20183|0.5 20184|0.11111 20185|0.59722 20186|0.5 20187|0.70833 20188|0.48611 20189|0.45833 20190|0.66667 20191|0.625 20192|0.72222 20193|0.51389 20194|0.44444 20195|0.34722 20196|0.5 20197|0.5 20198|0.5 20199|0.16667 20200|0.47222 20201|0.70833 20202|0.83333 20203|0.52778 20204|0.59722 20205|0.56944 20206|0.5 20207|0.5 20208|0.47222 20209|0.56944 20210|0.79167 20211|0.5 20212|0.5 20213|0.45833 20214|0.5 20215|0.75 20216|0.47222 20217|0.625 20218|0.58333 20219|0.375 20220|0.75 20221|0.72222 20222|0.25 20223|0.5 20224|0.52778 20225|0.5 20226|0.5 20227|0.52778 20228|0.27778 20229|0.69444 20230|0.70833 20231|0.52778 20232|0.5 20233|0.73611 20234|0.72222 20235|0.86111 20236|0.72222 20237|0.84722 20238|0.5 20239|0.58333 20240|0.52778 20241|0.58333 20242|0.5 20243|0.66667 20244|0.75 20245|0.81944 20246|0.33333 20247|0.72222 20248|0.51389 20249|0.5 20250|0.51389 20251|0.55556 20252|0.59722 20253|0.80556 20254|0.68056 20255|0.76389 20256|0.5 20257|0.5 20258|0.5 20259|0.34722 20260|0.5 20261|0.69444 20262|0.5 20263|0.56944 20264|0.59722 20265|0.55556 20266|0.5 20267|0.70833 20268|0.56944 20269|0.77778 20270|0.68056 20271|0.63889 20272|0.83333 20273|0.5 20274|0.55556 20275|0.63889 20276|0.69444 20277|0.66667 20278|0.73611 20279|0.75 20280|0.5 20281|0.61111 20282|0.55556 20283|0.58333 20284|0.56944 20285|0.5 20286|0.43056 20287|0.66667 20288|0.59722 20289|0.5 20290|0.51389 20291|0.5 20292|0.5 20293|0.55556 20294|0.75 20295|0.80556 20296|0.5 20297|0.5 20298|0.41667 20299|0.80556 20300|0.81944 20301|0.41667 20302|0.19444 20303|0.5 20304|0.43056 20305|0.33333 20306|0.54167 20307|0.48611 20308|0.52778 20309|0.56944 20310|0.63889 20311|0.68056 20312|0.52778 20313|0.66667 20314|0.65278 20315|0.78125 20316|0.25 20317|0.41667 20318|0.5 20319|0.86111 20320|0.76389 20321|0.27778 20322|0.5 20323|0.5 20324|0.61111 20325|0.5 20326|0.52778 20327|0.68056 20328|0.44444 20329|0.5 20330|0.41667 20331|0.5 20332|0.5 20333|0.33333 20334|0.94444 20335|0.90278 20336|0.54167 20337|0.73611 20338|0.70833 20339|0.88889 20340|0.86111 20341|0.54167 20342|0.76389 20343|0.88889 20344|0.41667 20345|0.73611 20346|0.5 20347|0.44444 20348|0.58333 20349|0.65278 20350|0.79167 20351|0.80556 20352|0.5 20353|0.69444 20354|0.52778 20355|0.72222 20356|0.79167 20357|0.69444 20358|0.38889 20359|0.5 20360|0.055556 20361|0.77778 20362|0.77778 20363|0.55556 20364|0.38889 20365|0.5 20366|0.55556 20367|0.38889 20368|0.44792 20369|0.5 20370|0.72222 20371|0.23611 20372|0.45833 20373|0.45833 20374|0.375 20375|0.83333 20376|0.54167 20377|0.66667 20378|0.69444 20379|0.31944 20380|0.55556 20381|0.68056 20382|0.55556 20383|0.33333 20384|0.5 20385|0.5 20386|0.51389 20387|0.22222 20388|0.22222 20389|0.48611 20390|0.5 20391|0.19444 20392|0.41667 20393|0.54167 20394|0.40278 20395|0.48611 20396|0.38889 20397|0.41667 20398|0.56944 20399|0.69444 20400|0.70833 20401|0.77778 20402|0.5 20403|0.5 20404|0.5 20405|0.61111 20406|0.36458 20407|0.29167 20408|0.61111 20409|0.61111 20410|0.30556 20411|0.27778 20412|0.33333 20413|0.58333 20414|0.45833 20415|0.40278 20416|0.19444 20417|0.44444 20418|0.5 20419|0.51389 20420|0.58333 20421|0.58333 20422|0.72222 20423|0.44444 20424|0.38889 20425|0.38889 20426|0.47222 20427|0.16667 20428|0.58333 20429|0.51389 20430|0.61111 20431|0.15278 20432|0.5 20433|0.5 20434|0.44444 20435|0.33333 20436|0.59722 20437|0.44444 20438|0.44444 20439|0.66667 20440|0.56944 20441|0.66667 20442|0.72222 20443|0.44444 20444|0.29167 20445|0.34722 20446|0.76389 20447|0.68056 20448|0.72222 20449|0.77778 20450|0.79167 20451|0.61111 20452|0.83333 20453|0.77778 20454|0.80556 20455|0.70833 20456|0.79167 20457|0.65278 20458|0.73611 20459|0.88889 20460|0.875 20461|0.80556 20462|0.77778 20463|0.83333 20464|0.69444 20465|0.80556 20466|0.61111 20467|0.94444 20468|0.875 20469|0.66667 20470|0.72222 20471|0.5 20472|0.69444 20473|0.63889 20474|0.80556 20475|0.70833 20476|0.72222 20477|0.58333 20478|0.625 20479|0.625 20480|0.66667 20481|0.5 20482|0.76389 20483|0.42708 20484|0.59722 20485|0.51389 20486|0.5 20487|0.5 20488|0.5 20489|0.41667 20490|0.33333 20491|0.52778 20492|0.61111 20493|0.27778 20494|0.44444 20495|0.51389 20496|0.51389 20497|0.5 20498|0.31944 20499|0.625 20500|0.69444 20501|0.5 20502|0.5 20503|0.51389 20504|0.83333 20505|0.58333 20506|0.73611 20507|0.45833 20508|0.58333 20509|0.84722 20510|0.79167 20511|0.61111 20512|0.23611 20513|0.5 20514|0.58333 20515|0.68056 20516|0.5 20517|0.5 20518|0.55556 20519|0.61111 20520|0.55556 20521|0.875 20522|0.875 20523|0.48611 20524|0.55556 20525|0.5 20526|0.5 20527|0.55556 20528|0.61111 20529|0.59375 20530|0.66667 20531|0.72222 20532|0.55556 20533|0.54167 20534|0.40278 20535|0.36111 20536|0.29167 20537|0.72222 20538|0.77778 20539|0.44444 20540|0.55556 20541|0.54167 20542|0.56944 20543|0.44444 20544|0.44444 20545|0.61111 20546|0.55556 20547|0.55556 20548|0.5 20549|0.44444 20550|0.66667 20551|0.70833 20552|0.55556 20553|0.66667 20554|0.88889 20555|0.58333 20556|0.51389 20557|0.70833 20558|0.55556 20559|0.5 20560|0.5 20561|0.5 20562|0.48611 20563|0.22222 20564|0.15278 20565|0.5 20566|0.54167 20567|0.66667 20568|0.625 20569|0.47222 20570|0.51389 20571|0.45833 20572|0.52778 20573|0.5 20574|0.83333 20575|0.5 20576|0.69444 20577|0.86111 20578|0.5 20579|0.55556 20580|0.51389 20581|0.5 20582|0.58333 20583|0.625 20584|0.84722 20585|0.5 20586|0.5 20587|0.65278 20588|0.5 20589|0.55556 20590|0.65278 20591|0.5 20592|0.44444 20593|0.48611 20594|0.625 20595|0.5 20596|0.44444 20597|0.38889 20598|0.52778 20599|0.65278 20600|0.33333 20601|0.66667 20602|0.73611 20603|0.38889 20604|0.75 20605|0.43056 20606|0.66667 20607|0.58333 20608|0.84722 20609|0.72222 20610|0.47222 20611|0.5 20612|0.5 20613|0.5 20614|0.72222 20615|0.75 20616|0.44444 20617|0.58333 20618|0.55556 20619|0.75 20620|0.5 20621|0.5 20622|0.44444 20623|0.68056 20624|0.88889 20625|0.91667 20626|0.86111 20627|0.66667 20628|0.5 20629|0.55556 20630|0.45833 20631|0.47222 20632|0.61111 20633|0.45833 20634|0.5 20635|0.5 20636|0.66667 20637|0.58333 20638|0.69444 20639|0.80556 20640|0.61111 20641|0.72222 20642|0.77778 20643|0.55556 20644|0.41667 20645|0.5 20646|0.61111 20647|0.58333 20648|0.40278 20649|0.52778 20650|0.33333 20651|0.97222 20652|0.5 20653|0.77778 20654|0.95833 20655|0.94444 20656|0.68056 20657|0.38889 20658|0.59722 20659|0.5 20660|0.47222 20661|0.52778 20662|0.51389 20663|0.55556 20664|0.5 20665|0.52778 20666|0.5 20667|0.83333 20668|0.5 20669|0.84722 20670|0.77778 20671|0.75 20672|0.73611 20673|0.66667 20674|0.77778 20675|0.81944 20676|0.54167 20677|0.73611 20678|0.93056 20679|0.86111 20680|0.81944 20681|0.5 20682|0.79167 20683|0.79167 20684|0.84722 20685|0.66667 20686|0.66667 20687|0.95833 20688|0.88889 20689|0.5 20690|0.44444 20691|0.5 20692|0.18056 20693|0.375 20694|0.5 20695|0.76389 20696|0.56944 20697|0.63889 20698|0.625 20699|0.65278 20700|0.22222 20701|0.66667 20702|0.5 20703|0.5 20704|0.5 20705|0.55556 20706|0.48611 20707|0.5 20708|0.22222 20709|0.76389 20710|0.86111 20711|0.83333 20712|0.70833 20713|0.69444 20714|0.72222 20715|0.72222 20716|0.66667 20717|0.72222 20718|0.81944 20719|0.84722 20720|0.54167 20721|0.72222 20722|0.80556 20723|0.47222 20724|0.79167 20725|0.83333 20726|0.83333 20727|0.76389 20728|0.81944 20729|0.79167 20730|0.66667 20731|0.55556 20732|0.75 20733|0.76389 20734|0.80556 20735|0.5 20736|0.5 20737|0.56944 20738|0.68056 20739|0.83333 20740|0.81944 20741|0.79167 20742|0.76389 20743|0.94444 20744|0.93056 20745|1 20746|0.83333 20747|0.56944 20748|0.73611 20749|0.66667 20750|0.16667 20751|0.54167 20752|0.94444 20753|0.65278 20754|0.66667 20755|0.88889 20756|0.88889 20757|0.83333 20758|0.80556 20759|0.69444 20760|0.77778 20761|0.86111 20762|0.81944 20763|0.58333 20764|0.45833 20765|0.51389 20766|0.5 20767|0.5 20768|0.63889 20769|0.68056 20770|0.65278 20771|0.48611 20772|0.5 20773|0.55556 20774|0.83333 20775|0.34722 20776|0.38889 20777|0.38889 20778|0.5 20779|0.54167 20780|0.45833 20781|0.61111 20782|0.55556 20783|0.5 20784|0.54167 20785|0.88889 20786|0.55556 20787|0.66667 20788|0.5 20789|0.5 20790|0.5 20791|0.5 20792|0.5 20793|0.5 20794|0.5 20795|0.5 20796|0.45833 20797|0.47222 20798|0.61111 20799|0.5 20800|0.5 20801|0.5 20802|0.5 20803|0.5 20804|0.48611 20805|0.5 20806|0.5 20807|0.5 20808|0.51389 20809|0.5 20810|0.5 20811|0.5 20812|0.53125 20813|0.5 20814|0.73611 20815|0.69444 20816|0.54167 20817|0.61111 20818|0.625 20819|0.44444 20820|0.38889 20821|0.38889 20822|0.59722 20823|0.75 20824|0.90278 20825|0.88889 20826|0.15278 20827|0.29167 20828|0.625 20829|0.33333 20830|0.5 20831|0.68056 20832|0.55556 20833|0.5 20834|0.55556 20835|0.58333 20836|0.58333 20837|0.66667 20838|0.63889 20839|0.83333 20840|0.65278 20841|0.68056 20842|0.52778 20843|0.61111 20844|0.51389 20845|0.27778 20846|0.27778 20847|0.44444 20848|0.72222 20849|0.38889 20850|0.58333 20851|0.68056 20852|0.66667 20853|0.5 20854|0.5 20855|0.65278 20856|0.66667 20857|0.51389 20858|0.5 20859|0.55556 20860|0.91667 20861|0.83333 20862|0.91667 20863|0.5 20864|0.5 20865|0.5 20866|0.80556 20867|0.55556 20868|0.38889 20869|0.40278 20870|0.69444 20871|0.61111 20872|0.76389 20873|0.77083 20874|0.81944 20875|0.875 20876|0.45833 20877|0.5 20878|0.55556 20879|0.43056 20880|0.5 20881|0.5 20882|0.5 20883|0.5 20884|0.5 20885|0.29167 20886|0.45833 20887|0.47222 20888|0.54167 20889|0.55556 20890|0.56944 20891|0.36111 20892|0.44444 20893|0.47222 20894|0.5 20895|0.38889 20896|0.77778 20897|0.59722 20898|0.5 20899|0.68056 20900|0.48611 20901|0.5 20902|0.5 20903|0.5 20904|0.69444 20905|0.58333 20906|0.36111 20907|0.5 20908|0.63889 20909|0.5 20910|0.55556 20911|0.55556 20912|0.68056 20913|0.5 20914|0.88889 20915|0.44444 20916|0.52778 20917|0.5 20918|0.5 20919|0.5 20920|0.5 20921|0.5 20922|0.48611 20923|0.5 20924|0.51389 20925|0.43056 20926|0.88889 20927|0.5 20928|0.51389 20929|0.31944 20930|0.41667 20931|0.5 20932|0.54167 20933|0.5 20934|0.63889 20935|0.65278 20936|0.11111 20937|0.19444 20938|0.5 20939|0.5 20940|0.68056 20941|0.45833 20942|0.69444 20943|0.44444 20944|0.5 20945|0.72222 20946|0.81944 20947|0.51389 20948|0.51389 20949|0.54167 20950|0.54167 20951|0.84722 20952|0.55556 20953|0.51389 20954|0.55556 20955|0.58333 20956|0.88889 20957|0.79167 20958|0.93056 20959|0.75 20960|0.5 20961|0.5 20962|0.44444 20963|0.55556 20964|0.47222 20965|0.59722 20966|0.75 20967|0.83333 20968|0.83333 20969|0.81944 20970|0.70833 20971|0.5 20972|0.59722 20973|0.77778 20974|0.61111 20975|0.63889 20976|0.52778 20977|0.68056 20978|0.5 20979|0.58333 20980|0.61111 20981|0.48611 20982|0.91667 20983|0.94444 20984|0.40278 20985|0.625 20986|0.84722 20987|0.88889 20988|0.83333 20989|0.90278 20990|0.97222 20991|0.81944 20992|0.875 20993|0.93056 20994|0.76389 20995|0.88889 20996|0.83333 20997|0.5 20998|0.55556 20999|0.94444 21000|0.875 21001|0.88889 21002|0.90278 21003|0.61111 21004|0.61111 21005|0.875 21006|0.86111 21007|0.66667 21008|0.83333 21009|0.61111 21010|0.55556 21011|0.5 21012|0.81944 21013|0.75 21014|0.84722 21015|0.72222 21016|0.91667 21017|0.94444 21018|0.63889 21019|0.72222 21020|0.95833 21021|0.63889 21022|0.72222 21023|0.69444 21024|0.55556 21025|0.55556 21026|0.375 21027|0.41667 21028|0.5 21029|0.5 21030|0.5 21031|0.83333 21032|0.55556 21033|0.48611 21034|0.48611 21035|0.94444 21036|0.5 21037|0.61111 21038|0.59722 21039|0.5 21040|0.23611 21041|0.375 21042|0.31944 21043|0.27778 21044|0.5 21045|0.5 21046|0.69444 21047|0.54167 21048|0.88889 21049|0.94444 21050|0.33333 21051|0.625 21052|0.91667 21053|0.80556 21054|0.84722 21055|0.77778 21056|0.83333 21057|0.79167 21058|0.88889 21059|0.36111 21060|0.79167 21061|0.81944 21062|0.80556 21063|0.97222 21064|1 21065|0.79167 21066|0.41667 21067|0.58333 21068|0.47222 21069|0.75 21070|0.44444 21071|0.5 21072|0.23611 21073|0.79167 21074|0.76389 21075|0.79167 21076|0.95833 21077|0.80556 21078|0.63889 21079|0.375 21080|0.44444 21081|0.33333 21082|0.5 21083|0.75 21084|0.75 21085|0.80556 21086|0.52778 21087|0.875 21088|0.38889 21089|0.48611 21090|0.625 21091|0.30556 21092|0.94444 21093|0.72222 21094|0.22222 21095|0.76389 21096|0.34722 21097|0.23611 21098|0.29167 21099|0.33333 21100|0.29167 21101|0.73611 21102|0.80556 21103|0.5 21104|0.59722 21105|0.73611 21106|0.61111 21107|0.55556 21108|0.86111 21109|0.76389 21110|0.77778 21111|0.61458 21112|0.68056 21113|0.48611 21114|0.84722 21115|0.79167 21116|0.88889 21117|0.013889 21118|0.81944 21119|0.77778 21120|0.47222 21121|0.5 21122|0.34722 21123|0.36111 21124|0.36111 21125|0.5 21126|0.5 21127|0.72222 21128|0.63889 21129|0.59722 21130|0.72222 21131|0.81944 21132|0.61111 21133|0.5 21134|0.5 21135|0.625 21136|0.86111 21137|0.38889 21138|0.61111 21139|0.66667 21140|0.66667 21141|0.75 21142|0.55556 21143|0.55556 21144|0.5 21145|0.11111 21146|0.22222 21147|0.55556 21148|0.61111 21149|0.16667 21150|0.58333 21151|0.5 21152|0.52778 21153|0.5 21154|0.75 21155|0.875 21156|0.81944 21157|0.88889 21158|0.56944 21159|0.70833 21160|0.76389 21161|0.47222 21162|0.5 21163|0.26389 21164|0.63889 21165|0.68056 21166|0.19444 21167|0.51389 21168|1 21169|0.59722 21170|0.76389 21171|0.36111 21172|0.83333 21173|0.98611 21174|0.66667 21175|0.79167 21176|0.375 21177|0.5 21178|0.63889 21179|0.70833 21180|0.66667 21181|0.63889 21182|0.51389 21183|0.69444 21184|0.77778 21185|0.76389 21186|0.84722 21187|0.5 21188|0.5 21189|0.69444 21190|0.36111 21191|0.68056 21192|0.75 21193|0.5 21194|0.55556 21195|0.29167 21196|0.51389 21197|0.5 21198|0.55556 21199|0.72222 21200|0.66667 21201|0.70833 21202|0.66667 21203|0.51389 21204|0.5 21205|0.5 21206|0.55556 21207|0.5 21208|0.52778 21209|0.52778 21210|0.54167 21211|0.33333 21212|0.44444 21213|0.33333 21214|0.5 21215|0.5 21216|0.47222 21217|0.5 21218|0.61111 21219|0.5 21220|0.66667 21221|0.5 21222|0.5 21223|0.16667 21224|0.097222 21225|0.5 21226|0.63889 21227|0.83333 21228|0.84722 21229|0.44444 21230|0.75 21231|0.66667 21232|0.38889 21233|0.16667 21234|0.51389 21235|0.52778 21236|0.63889 21237|0.5 21238|0.34722 21239|0.20833 21240|0.86111 21241|0.90278 21242|0.56944 21243|0.36111 21244|0.34722 21245|0.5 21246|0.5 21247|0.61111 21248|0.38889 21249|0.38889 21250|0.375 21251|0.48611 21252|0.76389 21253|0.90278 21254|0.80556 21255|0.80556 21256|0.76389 21257|0.73611 21258|0.44444 21259|0.63889 21260|0.5 21261|0.22222 21262|0.38889 21263|0.59722 21264|0.66667 21265|0.63889 21266|0.55556 21267|0.75 21268|0.86111 21269|0.52778 21270|0.375 21271|0.55556 21272|0.61111 21273|0.66667 21274|0.41667 21275|0.5 21276|0.75 21277|0.75 21278|0.5 21279|0.33333 21280|0.84722 21281|0.90278 21282|0.5 21283|0.69444 21284|0.80556 21285|0.61111 21286|0.68056 21287|0.90278 21288|0.5 21289|0.51389 21290|0.5 21291|0.81944 21292|0.75 21293|0.69444 21294|0.5 21295|0.041667 21296|0.5 21297|0.56944 21298|0.43056 21299|0.5 21300|0.51389 21301|0.54167 21302|0.76389 21303|0.88889 21304|0.375 21305|0.5 21306|0.54167 21307|0.44444 21308|0.5 21309|0.5 21310|0.84722 21311|0.54167 21312|0.38889 21313|0.70833 21314|0.86111 21315|0.91667 21316|0.72222 21317|0.5 21318|0.5 21319|0.83333 21320|0.5 21321|0.5 21322|0.5 21323|0.63889 21324|0.55556 21325|0.51389 21326|0.34722 21327|0.23611 21328|0.48611 21329|0.38889 21330|0.31944 21331|0.5 21332|0.5 21333|0.20833 21334|0.38889 21335|0.375 21336|0.5 21337|0.61111 21338|0.68056 21339|0.5 21340|0.43056 21341|0.44444 21342|0.125 21343|0.45833 21344|0.52778 21345|0.76389 21346|0.63889 21347|0.88889 21348|0.77778 21349|0.25 21350|0.34722 21351|0.45833 21352|0.27778 21353|0.33333 21354|0.80556 21355|0.77778 21356|0.81944 21357|0.72222 21358|0.5 21359|0.76389 21360|0.61111 21361|0.51389 21362|0.83333 21363|0.5 21364|0.5 21365|0.72222 21366|0.80556 21367|0.5 21368|0.76389 21369|0.66667 21370|0.83333 21371|0.73611 21372|0.5 21373|0.5 21374|0.5 21375|0.5 21376|0.45833 21377|0.76389 21378|0.55556 21379|0.19444 21380|0.5 21381|0.5 21382|0.72222 21383|0.33333 21384|0.19444 21385|0.61111 21386|0.58333 21387|0.27778 21388|0.63889 21389|0.5 21390|0.69444 21391|0.69444 21392|0.40278 21393|0.47222 21394|0.61111 21395|0.5 21396|0.625 21397|0.77778 21398|0.61111 21399|0.55556 21400|0.51389 21401|0.84722 21402|0.94444 21403|0.65278 21404|0.81944 21405|0.77778 21406|0.5 21407|0.5 21408|0.54167 21409|0.41667 21410|0.5 21411|0.5 21412|0.68056 21413|0.56944 21414|0.70833 21415|0.5 21416|0.51389 21417|0.5 21418|0.5 21419|0.61111 21420|0.5 21421|0.5 21422|0.33333 21423|0.5 21424|0.30556 21425|0.5 21426|0.45833 21427|0.5 21428|0.66667 21429|0.65278 21430|0.5 21431|0.44444 21432|0.58333 21433|0.41667 21434|0.13889 21435|0.44444 21436|0.5 21437|0.61111 21438|0.83333 21439|0.70833 21440|0.5 21441|0.19444 21442|0.34722 21443|0.34722 21444|0.5 21445|0.59722 21446|0.81944 21447|0.55556 21448|0.26389 21449|0.65278 21450|0.375 21451|0.25 21452|0.43056 21453|0.19444 21454|0.47222 21455|0.55556 21456|0.45833 21457|0.55556 21458|0.45833 21459|0.25 21460|0.30556 21461|0.31944 21462|0.43056 21463|0.66667 21464|0.5 21465|0.58333 21466|0.44444 21467|0.44444 21468|0.47222 21469|0.5 21470|0.51389 21471|0.375 21472|0.5 21473|0.55556 21474|0.55556 21475|0.5 21476|0.5 21477|0.38889 21478|0.22222 21479|0.5 21480|0.38889 21481|0.5 21482|0.51389 21483|0.86111 21484|0.5 21485|0.75 21486|0.5 21487|0.38889 21488|0.77778 21489|0.5 21490|0.5 21491|0.5 21492|0.5 21493|0.5 21494|0.68056 21495|0.5 21496|0.5 21497|0.5 21498|0.61111 21499|0.5 21500|0.55556 21501|0.5 21502|0.5 21503|0.625 21504|0.63889 21505|0.5 21506|0.68056 21507|0.44444 21508|0.69444 21509|0.88889 21510|0.5 21511|0.55556 21512|0.86111 21513|0.44444 21514|0.5 21515|0.72222 21516|0.5 21517|0.48611 21518|0.44444 21519|0.56944 21520|0.58333 21521|0.51389 21522|0.5 21523|0.58333 21524|0.84722 21525|0.72222 21526|0.54167 21527|0.55556 21528|0.55556 21529|0.5 21530|0.5 21531|0.66667 21532|0.66667 21533|0.51389 21534|0.44444 21535|0.19444 21536|0.27778 21537|0.40278 21538|0.68056 21539|0.61111 21540|0.5 21541|0.5 21542|0.63889 21543|0.44444 21544|0.5 21545|0.41667 21546|0.51389 21547|0.55556 21548|0.77778 21549|0.54167 21550|0.77778 21551|0.5 21552|0.5 21553|0.5 21554|0.5 21555|0.38889 21556|0.41667 21557|0.51389 21558|0.52778 21559|0.93056 21560|0.95833 21561|0.55556 21562|0.54167 21563|0.56944 21564|0.5 21565|0.41667 21566|0.5 21567|0.36111 21568|0.5 21569|0.5 21570|0.56944 21571|0.5 21572|0.79167 21573|0.5 21574|0.73611 21575|0.5 21576|0.38889 21577|0.5 21578|0.5 21579|0.5 21580|0.44444 21581|0.61111 21582|0.43056 21583|0.55556 21584|0.40278 21585|0.51389 21586|0.5 21587|0.5 21588|0.5 21589|0.22222 21590|0.55556 21591|0.75 21592|0.875 21593|0.80556 21594|0.73958 21595|0.88889 21596|0.52778 21597|0.84722 21598|0.5 21599|0.5 21600|0.58333 21601|0.51389 21602|0.54167 21603|0.66667 21604|0.77778 21605|0.52778 21606|0.63889 21607|0.30556 21608|0.51389 21609|0.44444 21610|0.5 21611|0.51389 21612|0.5 21613|0.56944 21614|0.5 21615|0.29167 21616|0.5 21617|0.94444 21618|0.76389 21619|0.77778 21620|0.5 21621|0.58333 21622|0.44444 21623|0.5 21624|0.55556 21625|0.5 21626|0.45833 21627|0.76389 21628|0.33333 21629|0.5 21630|0.38889 21631|0.29167 21632|0.90278 21633|0.80556 21634|0.70833 21635|0.625 21636|0.65278 21637|0.5 21638|0.58333 21639|0.625 21640|0.45833 21641|0.41667 21642|0.5 21643|0.55556 21644|0.83333 21645|0.52778 21646|0.5 21647|0.45833 21648|0.5 21649|0.5 21650|0.44444 21651|0.5 21652|0.81944 21653|0.51389 21654|0.69444 21655|0.22222 21656|0.54167 21657|0.40278 21658|0.38889 21659|0.63889 21660|0.5 21661|0.56944 21662|0.51389 21663|0.61111 21664|0.5 21665|0.44444 21666|0.55556 21667|0.70833 21668|0.45833 21669|0.61111 21670|0.48611 21671|0.41667 21672|0.54167 21673|0.55556 21674|0.5 21675|0.36111 21676|0.44444 21677|0.63889 21678|0.34722 21679|0.84722 21680|0.58333 21681|0.5 21682|0.5 21683|0.55556 21684|0.34722 21685|0.27778 21686|0.47222 21687|0.38889 21688|0.61111 21689|0.625 21690|0.59722 21691|0.069444 21692|0.54167 21693|0.5 21694|0.51389 21695|0.44444 21696|0.43056 21697|0.36111 21698|0.47222 21699|0.38889 21700|0.29167 21701|0.29167 21702|0.51389 21703|0.76389 21704|0.5 21705|0.33333 21706|0.75 21707|0.45833 21708|0.55556 21709|0.73611 21710|0.61111 21711|0.70833 21712|0.43056 21713|0.86111 21714|0.98611 21715|0.54167 21716|0.51389 21717|0.36111 21718|0.34722 21719|0.47222 21720|0.54167 21721|0.55556 21722|0.54167 21723|0.44444 21724|0.5 21725|0.55556 21726|0.72222 21727|0.36111 21728|0.61111 21729|0.5 21730|0.81944 21731|0.88889 21732|0.80556 21733|0.83333 21734|0.81944 21735|0.81944 21736|0.44444 21737|0.55556 21738|0.45833 21739|0.5 21740|0.5 21741|0.72222 21742|0.75 21743|0.75 21744|0.77778 21745|0.75 21746|0.45833 21747|0.55556 21748|0.5 21749|0.5 21750|0.40278 21751|0.5 21752|0.44444 21753|0.53125 21754|0.86111 21755|0.83333 21756|0.69444 21757|0.69444 21758|0.5 21759|0.65278 21760|0.5 21761|0.5 21762|0.72222 21763|0.5 21764|0.30556 21765|0.76389 21766|0.80556 21767|0.625 21768|0.72222 21769|0.5 21770|0.5 21771|0.5 21772|0.22222 21773|0.5 21774|0.5 21775|0.5 21776|0.5 21777|0.5 21778|0.44444 21779|0.81944 21780|0.55556 21781|0.81944 21782|0.5 21783|0.76389 21784|0.51389 21785|0.5 21786|0.88889 21787|0.5 21788|0.5 21789|0.45833 21790|0.38889 21791|0.51389 21792|0.65278 21793|0.51389 21794|0.58333 21795|0.88889 21796|0.88889 21797|0.5 21798|0.76389 21799|0.76389 21800|0.56944 21801|0.61111 21802|0.5 21803|0.19444 21804|0.33333 21805|0.76389 21806|0.79167 21807|0.69444 21808|0.83333 21809|0.22222 21810|0.51389 21811|0.54167 21812|0.5 21813|0.58333 21814|0.52778 21815|0.44444 21816|0.5 21817|0.55556 21818|0.41667 21819|0.39583 21820|0.55556 21821|0.84722 21822|0.51389 21823|0.41667 21824|0.625 21825|0.44444 21826|0.56944 21827|0.63889 21828|0.91667 21829|0.88889 21830|0.83333 21831|0.61111 21832|0.72222 21833|0.75 21834|0.77778 21835|0.58333 21836|0.72222 21837|0.45833 21838|0.5 21839|0.25 21840|0.55556 21841|0.61111 21842|0.61111 21843|0.73611 21844|0.76389 21845|0.75 21846|0.56944 21847|0.81944 21848|0.5 21849|0.5 21850|0.5 21851|0.47222 21852|0.45833 21853|0.5 21854|0.26389 21855|0.5 21856|0.72222 21857|0.75 21858|0.52778 21859|0.81944 21860|0.66667 21861|0.5 21862|0.56944 21863|0.56944 21864|0.61111 21865|0.83333 21866|0.44444 21867|0.61111 21868|0.79167 21869|0.68056 21870|0.5 21871|0.5 21872|0.875 21873|0.70833 21874|0.625 21875|0.75 21876|0.52778 21877|0.77778 21878|0.77778 21879|0.44444 21880|0.55556 21881|0.5 21882|0.5 21883|0.61111 21884|0.55556 21885|0.44444 21886|0.58333 21887|0.63889 21888|0.54167 21889|0.29167 21890|0.55556 21891|0.5 21892|0.30556 21893|0.68056 21894|0.51389 21895|0.33333 21896|0.5 21897|0.48611 21898|0.80556 21899|0.81944 21900|0.72222 21901|0.55556 21902|0.38889 21903|0.5 21904|0.66667 21905|0.52778 21906|0.38889 21907|0.31944 21908|0.41667 21909|0.5 21910|0.66667 21911|0.29167 21912|0.27778 21913|0.5 21914|0.5 21915|0.5 21916|0.81944 21917|0.80556 21918|0.79167 21919|0.54167 21920|0.5 21921|0.56944 21922|0.51389 21923|0.45139 21924|0.38889 21925|0.5 21926|0.55556 21927|0.40278 21928|0.56944 21929|0.625 21930|0.65278 21931|0.72222 21932|0.72222 21933|0.52778 21934|0.52778 21935|0.66667 21936|0.61111 21937|0.94444 21938|0.54167 21939|0.5 21940|0.5 21941|0.5 21942|0.44444 21943|0.84722 21944|0.75 21945|0.76389 21946|0.38889 21947|0.5 21948|0.51389 21949|0.29167 21950|0.75 21951|0.56944 21952|0.5 21953|0.5 21954|0.72222 21955|0.5 21956|0.68056 21957|0.75 21958|0.5 21959|0.5 21960|0.5 21961|0.5 21962|0.625 21963|0.375 21964|0.55556 21965|0.38889 21966|0.5 21967|0.5 21968|0.76389 21969|0.83333 21970|0.5 21971|0.55556 21972|0.83333 21973|0.5 21974|0.52778 21975|0.72222 21976|0.72222 21977|0.68056 21978|0.5 21979|0.5 21980|0.65278 21981|0.44444 21982|0.65278 21983|0.45833 21984|0.5 21985|0.625 21986|0.56944 21987|0.625 21988|0.70833 21989|0.27778 21990|0.29167 21991|0.375 21992|0.18056 21993|0.61111 21994|0.36111 21995|0.88889 21996|0.5 21997|0.63889 21998|0.72222 21999|0.91667 22000|0.93056 22001|0.84722 22002|0.68056 22003|0.90278 22004|0.90278 22005|0.77778 22006|0.61111 22007|0.5 22008|0.76389 22009|0.55556 22010|0.38889 22011|0.83333 22012|0.83333 22013|0.84722 22014|0.63889 22015|0.83333 22016|0.65278 22017|0.72222 22018|0.77778 22019|0.66667 22020|0.80556 22021|0.81944 22022|0.88889 22023|0.26389 22024|0.25 22025|0.31944 22026|0.77778 22027|0.22222 22028|0.58333 22029|0.52778 22030|0.73611 22031|0.73611 22032|0.73611 22033|0.65278 22034|0.5 22035|0.5 22036|0.83333 22037|0.56944 22038|0.97222 22039|0.61111 22040|0.79167 22041|0.5 22042|0.5 22043|0.54167 22044|0.70833 22045|0.5 22046|0.5 22047|0.54167 22048|0.33333 22049|0.61111 22050|0.45833 22051|0.34722 22052|0.5 22053|0.86111 22054|0.5 22055|0.70833 22056|0.86111 22057|0.5 22058|0.77778 22059|0.80556 22060|0.88889 22061|0.79167 22062|0.83333 22063|0.5 22064|0.66667 22065|0.77778 22066|0.5 22067|0.55556 22068|0.54167 22069|0.5 22070|0.72222 22071|0.68056 22072|0.5 22073|0.75 22074|0.25 22075|0.5 22076|0.79167 22077|0.38889 22078|0.94444 22079|0.83333 22080|0.72222 22081|0.5 22082|0.59722 22083|0.5 22084|0.73611 22085|0.63889 22086|0.76389 22087|0.51389 22088|0.65278 22089|0.5 22090|0.79167 22091|0.65278 22092|0.76389 22093|0.66667 22094|0.77778 22095|0.77778 22096|0.88889 22097|0.86111 22098|0.83333 22099|0.5 22100|0.51389 22101|0.11111 22102|0.48611 22103|0.58333 22104|0.64583 22105|0.79167 22106|0.66667 22107|0.52778 22108|0.61111 22109|0.77083 22110|0.76389 22111|0.875 22112|0.875 22113|0.56944 22114|0.5 22115|0.5 22116|0.625 22117|0.55556 22118|0.75 22119|0.20833 22120|0.58333 22121|0.73611 22122|0.61111 22123|0.38889 22124|0.5 22125|0.27778 22126|0.80556 22127|0.44444 22128|0.40278 22129|0.83333 22130|0.61111 22131|0.66667 22132|0.44444 22133|0.52778 22134|0.41667 22135|0.47222 22136|0.44444 22137|0.54167 22138|0.88889 22139|0.55556 22140|0.77778 22141|0.5 22142|0.51389 22143|0.80556 22144|0.79167 22145|0.51389 22146|0.5 22147|0.52778 22148|0.51389 22149|0.56944 22150|0.44444 22151|0.80556 22152|0.875 22153|0.90278 22154|0.94444 22155|0.66667 22156|0.72222 22157|0.5 22158|0.44444 22159|0.44444 22160|0.44444 22161|0.5 22162|0.75 22163|0.27778 22164|0.58333 22165|0.5 22166|0.55556 22167|0.5 22168|0.27778 22169|0.77778 22170|0.84722 22171|0.79167 22172|0.375 22173|0.625 22174|0.5 22175|0.38889 22176|0.93056 22177|0.5 22178|0.43056 22179|0.73611 22180|0.55556 22181|0.63889 22182|0.5 22183|0.81944 22184|0.38889 22185|0.90278 22186|0.88889 22187|0.33333 22188|0.77778 22189|0.5 22190|0.51389 22191|0.5 22192|0.44444 22193|0.38889 22194|0.61111 22195|0.51389 22196|0.44444 22197|0.55556 22198|0.5 22199|0.25 22200|0.63889 22201|0.68056 22202|0.77778 22203|0.65278 22204|0.63889 22205|0.16667 22206|0.34722 22207|0.68056 22208|0.44444 22209|0.44444 22210|0.79167 22211|0.5 22212|0.5 22213|0.51389 22214|0.58333 22215|0.5 22216|0.44444 22217|0.56944 22218|0.5 22219|0.5 22220|0.5 22221|0.5 22222|0.5 22223|0.5 22224|0.59722 22225|0.45833 22226|0.38889 22227|0.55556 22228|0.77778 22229|0.5 22230|0.61111 22231|0.5 22232|0.5 22233|0.625 22234|0.5 22235|0.72222 22236|0.5 22237|0.5 22238|0.5 22239|0.86111 22240|0.72222 22241|0.72222 22242|0.75 22243|0.5 22244|0.55556 22245|0.5 22246|0.5 22247|0.44444 22248|0.625 22249|0.5 22250|0.75 22251|0.55556 22252|0.5 22253|0.5 22254|0.63889 22255|0.43056 22256|0.44444 22257|0.83333 22258|0.875 22259|0.51389 22260|0.31944 22261|0.375 22262|0.56944 22263|0.5 22264|0.72222 22265|0.5 22266|0.43056 22267|0.56944 22268|0.54167 22269|0.375 22270|0.54167 22271|0.56944 22272|0.72222 22273|0.75 22274|0.56944 22275|0.61111 22276|0.66667 22277|0.73611 22278|0.5 22279|0.5 22280|0.38889 22281|0.5 22282|0.55556 22283|0.69444 22284|0.79167 22285|0.95833 22286|0.55556 22287|0.84722 22288|0.51389 22289|0.61111 22290|0.66667 22291|0.63889 22292|0.5 22293|0.81944 22294|0.55556 22295|0.44444 22296|0.47222 22297|0.48611 22298|0.45833 22299|0.5 22300|0.5 22301|0.51389 22302|0.58333 22303|0.44444 22304|0.66667 22305|0.80556 22306|0.16667 22307|0.36111 22308|0.44444 22309|0.88889 22310|0.5 22311|0.5 22312|0.59722 22313|0.5 22314|0.70833 22315|0.69444 22316|0.86111 22317|0.93056 22318|0.5 22319|0.55556 22320|0.5 22321|0.51389 22322|0.33333 22323|0.5 22324|0.5 22325|0.51389 22326|0.5 22327|0.66667 22328|0.5 22329|0.5 22330|0.55556 22331|0.55556 22332|0.875 22333|0.5 22334|0.5 22335|0.65278 22336|0.72222 22337|0.66667 22338|0.5 22339|0.61111 22340|0.72222 22341|0.66667 22342|0.5 22343|0.51389 22344|0.72222 22345|0.5 22346|0.68056 22347|0.72222 22348|0.76389 22349|0.5 22350|0.5 22351|0.5 22352|0.5 22353|0.5 22354|0.54167 22355|0.72222 22356|0.73611 22357|0.81944 22358|0.5 22359|0.5 22360|0.48611 22361|0.79167 22362|0.59722 22363|0.5 22364|0.44444 22365|0.5 22366|0.5 22367|0.5 22368|0.5 22369|0.76389 22370|0.55556 22371|0.86111 22372|0.55556 22373|0.5 22374|0.31944 22375|0.48611 22376|0.51389 22377|0.22222 22378|0.33333 22379|0.55556 22380|0.70833 22381|0.5 22382|0.51389 22383|0.52778 22384|0.51389 22385|0.41667 22386|0.94444 22387|0.83333 22388|0.5 22389|0.58333 22390|0.5 22391|0.5 22392|0.55556 22393|0.33333 22394|0.5 22395|0.80556 22396|0.55556 22397|0.55556 22398|0.5 22399|0.5 22400|0.11111 22401|0.75 22402|0.44444 22403|0.61111 22404|0.55556 22405|0.88889 22406|0.16667 22407|0.5 22408|0.47222 22409|0.5 22410|0.5 22411|0.5 22412|0.44444 22413|0.95833 22414|0.84722 22415|0.5 22416|0.44444 22417|0.5 22418|0.5 22419|0.58333 22420|0.73611 22421|0.66667 22422|0.51389 22423|0.5 22424|0.5 22425|0.56944 22426|0.5 22427|0.5 22428|0.84722 22429|0.83333 22430|0.83333 22431|0.94444 22432|0.85417 22433|0.68056 22434|0.25 22435|0.23611 22436|0.91667 22437|0.69444 22438|0.86111 22439|0.61111 22440|0.84722 22441|0.79167 22442|0.70833 22443|0.5 22444|0.40278 22445|0.61111 22446|0.94444 22447|0.86111 22448|0.73611 22449|0.5 22450|0.31944 22451|0.47222 22452|0.5 22453|0.44444 22454|0.33333 22455|0.63889 22456|0.69444 22457|0.65278 22458|0.83333 22459|0.83333 22460|0.5 22461|0.44444 22462|0.19444 22463|0.5 22464|0.44444 22465|0.84722 22466|0.5 22467|0.5 22468|0.63889 22469|0.68056 22470|0.73611 22471|0.58333 22472|0.75 22473|0.59722 22474|0.5 22475|0.5 22476|0.5 22477|0.56944 22478|0.16667 22479|0.48611 22480|0.68056 22481|0.81944 22482|0.65278 22483|0.61111 22484|0.66667 22485|0.51389 22486|0.27778 22487|0.72222 22488|0.83333 22489|0.43056 22490|0.61111 22491|0.65278 22492|0.54167 22493|0.5 22494|0.66667 22495|0.51389 22496|0.5 22497|0.625 22498|0.5 22499|0.5 22500|0.44444 22501|0.83333 22502|0.55556 22503|0.61111 22504|0.5 22505|0.51389 22506|0.81944 22507|0.5 22508|0.59722 22509|0.65278 22510|0.55556 22511|0.5 22512|0.70833 22513|0.45833 22514|0.54167 22515|0.63889 22516|0.5 22517|0.58333 22518|0.5 22519|0.63889 22520|0.59722 22521|0.61111 22522|0.77778 22523|0.65278 22524|0.45833 22525|0.5 22526|0.48611 22527|0.70833 22528|0.51389 22529|0.76389 22530|0.5 22531|0.44444 22532|0.72222 22533|0.65278 22534|0.55556 22535|0.61111 22536|0.65278 22537|0.69444 22538|0.69444 22539|0.56944 22540|0.70833 22541|0.54167 22542|0.73611 22543|0.61111 22544|0.63889 22545|0.625 22546|0.61111 22547|0.5 22548|0.44444 22549|0.51389 22550|0.5 22551|0.51389 22552|0.80556 22553|0.76389 22554|0.55556 22555|0.63889 22556|0.5 22557|0.56944 22558|0.5 22559|0.5 22560|0.44444 22561|0.5 22562|0.72222 22563|0.5 22564|0.31944 22565|0.59722 22566|0.77778 22567|0.75 22568|0.5 22569|0.52778 22570|0.66667 22571|0.52778 22572|0.94444 22573|0.20833 22574|0.98611 22575|0.5 22576|0.5 22577|0.36111 22578|0.55556 22579|0.5 22580|0.73611 22581|0.73611 22582|0.76389 22583|0.44444 22584|0.47222 22585|0.5 22586|0.61111 22587|0.61111 22588|0.5 22589|0.5 22590|0.76389 22591|0.5 22592|0.5 22593|0.48611 22594|0.55556 22595|0.83333 22596|0.91667 22597|0.375 22598|0.45833 22599|0.52778 22600|0.45833 22601|0.55556 22602|0.48611 22603|0.68056 22604|0.55556 22605|0.54167 22606|0.77778 22607|0.79167 22608|0.59722 22609|0.56944 22610|0.89583 22611|0.73611 22612|0.48611 22613|0.48611 22614|0.58333 22615|0.47222 22616|0.77778 22617|0.77778 22618|0.38889 22619|0.61111 22620|0.61111 22621|0.91667 22622|0.52778 22623|0.52778 22624|0.52778 22625|0.5 22626|0.80556 22627|0.73611 22628|0.5 22629|0.30556 22630|0.51389 22631|0.97222 22632|0.55556 22633|0.75 22634|0.77778 22635|0.41667 22636|0.61111 22637|0.33333 22638|0.68056 22639|0.63889 22640|0.61111 22641|0.18056 22642|0.13889 22643|0.72222 22644|0.94444 22645|0.61111 22646|0.38889 22647|0.40278 22648|0.59722 22649|0.76389 22650|0.38889 22651|0.47222 22652|0.44444 22653|0.51389 22654|0.80556 22655|0.63889 22656|0.56944 22657|0.56944 22658|0.5 22659|0.75 22660|0.5 22661|0.77778 22662|0.83333 22663|0.5 22664|0.52778 22665|0.5 22666|0.5 22667|0.68056 22668|0.54167 22669|0.5 22670|0.68056 22671|0.52778 22672|0.16667 22673|0.63889 22674|0.61111 22675|0.5 22676|0.55556 22677|0.68056 22678|0.31944 22679|0.44444 22680|0.44444 22681|0.26389 22682|0.36111 22683|0.5 22684|0.51389 22685|0.44444 22686|0.5 22687|0.91667 22688|0.84722 22689|0.5 22690|0.30556 22691|0.79167 22692|0.54167 22693|0.38889 22694|0.56944 22695|0.79167 22696|0.55556 22697|0.55556 22698|0.5 22699|0.61111 22700|0.5 22701|0.69444 22702|0.75 22703|0.81944 22704|0.65278 22705|0.5 22706|0.66667 22707|0.55556 22708|0.5 22709|0.55556 22710|0.75 22711|0.75 22712|0.86111 22713|0.51389 22714|0.33333 22715|0.38889 22716|0.63889 22717|0.27778 22718|0.95833 22719|0.38889 22720|0.31944 22721|0.36111 22722|0.44444 22723|0.44444 22724|0.5 22725|0.66667 22726|0.69444 22727|0.52778 22728|0.68056 22729|0.61111 22730|0.83333 22731|0.5 22732|0.66667 22733|0.33333 22734|0.11111 22735|0.38889 22736|0.58333 22737|0.27778 22738|0.38889 22739|0.38889 22740|0.43056 22741|0.91667 22742|0.81944 22743|0.88889 22744|0.77778 22745|0.66667 22746|0.70833 22747|0.875 22748|0.5 22749|0.38889 22750|0.52778 22751|0.58333 22752|0.56944 22753|0.5 22754|0.52778 22755|0.5 22756|0.77778 22757|0.5 22758|0.44444 22759|0.38889 22760|0.45833 22761|0.66667 22762|0.61111 22763|0.76389 22764|0.66667 22765|0.73611 22766|0.5 22767|0.44444 22768|0.5 22769|0.56944 22770|0.27778 22771|0.43056 22772|0.44444 22773|0.73611 22774|0.83333 22775|0.5 22776|0.66667 22777|0.5 22778|0.44444 22779|0.33333 22780|0.375 22781|0.26389 22782|0.5 22783|0.5 22784|0.41667 22785|0.54167 22786|0.375 22787|0.5 22788|0.61111 22789|0.45833 22790|0.5 22791|0.45833 22792|0.5 22793|0.61111 22794|1 22795|0.43056 22796|0.44444 22797|0.66667 22798|0.81944 22799|0.73611 22800|0.80556 22801|0.5 22802|0.69444 22803|0.84722 22804|0.23611 22805|0.16667 22806|0.88889 22807|0.83333 22808|0.75 22809|0.69444 22810|0.84722 22811|0.91667 22812|0.70833 22813|0.66667 22814|0.52778 22815|0.5 22816|0.63889 22817|0.5 22818|0.5 22819|0.5 22820|0.55556 22821|0.29167 22822|0.94444 22823|0.79167 22824|0.79167 22825|0.77778 22826|0.54167 22827|0.79167 22828|0.65278 22829|0.18056 22830|0.55556 22831|0.69444 22832|0.375 22833|0.51389 22834|0.76389 22835|0.75 22836|0.51389 22837|0.55556 22838|0.52778 22839|0.61111 22840|0.47222 22841|0.75 22842|0.55556 22843|0.43056 22844|0.5 22845|0.34722 22846|0.59722 22847|0.54167 22848|0.80556 22849|0.625 22850|0.55556 22851|0.48611 22852|0.47222 22853|0.75 22854|0.72222 22855|0.73611 22856|0.56944 22857|0.88889 22858|0.91667 22859|0.5 22860|0.5 22861|0.69444 22862|0.56944 22863|0.79167 22864|0.5 22865|0.5 22866|0.52778 22867|0.63889 22868|0.72222 22869|0.91667 22870|0.44444 22871|0.47222 22872|0.55556 22873|0.29167 22874|0.70833 22875|0.72222 22876|0.75 22877|0.52778 22878|0.72222 22879|0.52778 22880|0.27778 22881|0.48611 22882|0.5 22883|0.90278 22884|0.70833 22885|0.5 22886|0.51389 22887|0.5 22888|0.5 22889|0.5 22890|0.66667 22891|0.79167 22892|0.72222 22893|0.48611 22894|0.68056 22895|0.41667 22896|0.77778 22897|0.23611 22898|0.80556 22899|0.75 22900|0.79167 22901|0.72222 22902|0.51389 22903|0.5 22904|0.47222 22905|0.33333 22906|0.66667 22907|0.59722 22908|0.88889 22909|0.73611 22910|0.58333 22911|0.56944 22912|0.5 22913|0.36111 22914|0.31944 22915|0.5 22916|0.76389 22917|0.83333 22918|0.86111 22919|0.90278 22920|0.875 22921|0.40278 22922|0.51389 22923|0.55556 22924|0.5 22925|0.52778 22926|0.68056 22927|0.55556 22928|0.5 22929|0.90278 22930|0.88889 22931|0.84722 22932|0.5 22933|0.5 22934|0.40278 22935|0.52778 22936|0.86111 22937|1 22938|0.48611 22939|0.83333 22940|0.5 22941|0.5 22942|0.56944 22943|0.5 22944|0.5 22945|0.55556 22946|0.40278 22947|0.65278 22948|0.61111 22949|0.61111 22950|0.5 22951|0.75 22952|0.38889 22953|0.33333 22954|0.5 22955|0.48611 22956|0.625 22957|0.43056 22958|0.52778 22959|0.34722 22960|0.66667 22961|0.79167 22962|0.5 22963|0.5 22964|0.33333 22965|0.5 22966|0.625 22967|0.59722 22968|0.75 22969|0.54167 22970|0.58333 22971|0.5 22972|0.52778 22973|0.66667 22974|0.69444 22975|0.5 22976|0.70833 22977|0.71875 22978|0.70833 22979|0.72222 22980|0.29167 22981|0.27778 22982|0.81944 22983|0.19444 22984|0.83333 22985|0.38889 22986|0.55556 22987|0.5 22988|0.5 22989|0.5 22990|0.61111 22991|0.76389 22992|0.90278 22993|0.94444 22994|0.5 22995|0.55556 22996|0.55556 22997|0.55556 22998|0.5 22999|0.83333 23000|0.83333 23001|0.56944 23002|0.625 23003|0.55556 23004|0.25 23005|0.18056 23006|0.38889 23007|0.5 23008|0.5 23009|0.66667 23010|0.55556 23011|0.54167 23012|0.51389 23013|0.5 23014|0.80556 23015|0.44444 23016|0.27778 23017|0.33333 23018|0.29167 23019|0.72222 23020|0.83333 23021|0.45833 23022|0.33333 23023|0.33333 23024|0.55556 23025|0.76389 23026|0.91667 23027|0.83333 23028|0.88889 23029|0.5 23030|0.51389 23031|0.77778 23032|0.54167 23033|0.5 23034|0.52778 23035|0.77778 23036|0.55556 23037|0.5 23038|0.55556 23039|0.72222 23040|0.79167 23041|0.20833 23042|0.68056 23043|0.41667 23044|0.72222 23045|0.76389 23046|0.68056 23047|0.44444 23048|0.29167 23049|0.94444 23050|1 23051|0.69444 23052|0.80556 23053|0.65278 23054|0.68056 23055|0.38889 23056|0.45833 23057|0.86111 23058|0.82292 23059|0.84722 23060|0.65278 23061|0.69444 23062|0.69444 23063|0.77778 23064|0.67708 23065|0.63889 23066|0.75 23067|0.79167 23068|0.75 23069|0.66667 23070|0.68056 23071|0.875 23072|0.80556 23073|0.81944 23074|0.86111 23075|0.55556 23076|0.72222 23077|0.65278 23078|0.55556 23079|0.5 23080|0.43056 23081|0.77778 23082|0.91667 23083|0.79167 23084|0.83333 23085|0.88889 23086|0.88889 23087|0.98611 23088|0.66667 23089|0.63889 23090|0.77778 23091|0.75 23092|0.81944 23093|0.54167 23094|0.83333 23095|0.73611 23096|0.79167 23097|0.68056 23098|0.73611 23099|0.81944 23100|0.59722 23101|0.63889 23102|0.36111 23103|0.58333 23104|0.5 23105|0.5 23106|0.77778 23107|0.90278 23108|0.5 23109|0.83333 23110|0.79167 23111|0.83333 23112|0.94444 23113|0.47222 23114|0.88889 23115|0.875 23116|0.55556 23117|0.5 23118|0.88889 23119|0.54167 23120|0.44444 23121|0.61111 23122|0.625 23123|0.58333 23124|0.79167 23125|0.5 23126|0.73611 23127|0.69444 23128|0.68056 23129|0.58333 23130|0.31944 23131|0.77778 23132|0.73611 23133|0.5 23134|0.81944 23135|0.5 23136|0.5 23137|0.69444 23138|0.5 23139|0.47222 23140|0.33333 23141|0.375 23142|0.875 23143|0.86111 23144|0.75 23145|0.34722 23146|0.61111 23147|0.59722 23148|0.66667 23149|0.79167 23150|0.36111 23151|0.33333 23152|0.61111 23153|0.88889 23154|0.75 23155|0.5 23156|0.875 23157|0.90278 23158|0.38889 23159|0.45833 23160|0.73611 23161|0.59722 23162|0.56944 23163|0.56944 23164|0.73611 23165|0.59722 23166|0.77778 23167|0.70833 23168|0.48611 23169|0.54167 23170|0.76389 23171|0.81944 23172|0.52778 23173|0.38889 23174|0.73611 23175|0.73958 23176|0.88889 23177|0.66667 23178|0.69444 23179|0.58333 23180|0.5 23181|0.31944 23182|0.5 23183|0.80556 23184|0.66667 23185|0.5 23186|0.33333 23187|0.77778 23188|0.65278 23189|0.59722 23190|0.43056 23191|0.69444 23192|0.76389 23193|0.70833 23194|0.66667 23195|0.70833 23196|0.33333 23197|0.125 23198|0.43056 23199|0.66667 23200|0.48611 23201|0.48611 23202|0.5 23203|0.94444 23204|0.55556 23205|0.66667 23206|0.75 23207|0.47222 23208|0.625 23209|0.81944 23210|0.5 23211|0.88889 23212|0.5 23213|0.80556 23214|0.69444 23215|0.66667 23216|0.91667 23217|0.5 23218|0.45833 23219|0.68056 23220|0.79167 23221|0.65278 23222|0.5 23223|0.88889 23224|0.5 23225|0.625 23226|0.5 23227|0.73611 23228|0.5 23229|0.47222 23230|0.40278 23231|0.5 23232|0.5 23233|0.70833 23234|0.81944 23235|0.5 23236|0.51389 23237|0.77778 23238|0.38889 23239|0.75 23240|0.34722 23241|0.875 23242|0.5 23243|0.5 23244|0.65278 23245|0.5 23246|0.75 23247|0.63889 23248|0.72222 23249|0.5 23250|0.625 23251|0.5 23252|0.63889 23253|0.55556 23254|0.5 23255|0.5 23256|0.5 23257|0.5 23258|0.52778 23259|0.5 23260|0.75 23261|0.44444 23262|0.43056 23263|0.5 23264|0.55556 23265|0.80556 23266|0.86111 23267|0.5 23268|0.45833 23269|0.38889 23270|0.19444 23271|0.83333 23272|0.88889 23273|0.5 23274|0.5 23275|0.625 23276|0.80556 23277|0.72222 23278|0.59722 23279|0.30556 23280|0.45833 23281|0.66667 23282|0.76389 23283|0.5 23284|0.5 23285|0.40278 23286|0.65278 23287|0.5 23288|0.72222 23289|0.66667 23290|0.77778 23291|0.80556 23292|0.75 23293|0.63889 23294|0.84722 23295|0.76389 23296|0.72222 23297|0.75 23298|0.51389 23299|0.5 23300|0.44444 23301|0.83333 23302|0.75 23303|0.94444 23304|0.69444 23305|0.375 23306|0.86111 23307|0.5 23308|0.36111 23309|0.63889 23310|0.59722 23311|0.33333 23312|0.66667 23313|0.94444 23314|0.83333 23315|0.65278 23316|0.88889 23317|0.65278 23318|0.69792 23319|0.72222 23320|0.70833 23321|0.77778 23322|0.81944 23323|0.72222 23324|0.70833 23325|0.43056 23326|0.90278 23327|0.80556 23328|0.80556 23329|0.73611 23330|0.79167 23331|0.625 23332|0.91667 23333|0.60417 23334|0.77778 23335|0.94444 23336|0.72222 23337|0.80556 23338|0.5 23339|0.68056 23340|0.625 23341|0.86111 23342|0.63889 23343|0.68056 23344|0.84722 23345|0.65278 23346|0.5 23347|0.90278 23348|0.73611 23349|0.84722 23350|0.5 23351|0.38889 23352|0.65278 23353|0.90278 23354|0.69444 23355|0.76389 23356|0.57292 23357|0.75 23358|0.875 23359|0.68056 23360|0.33333 23361|0.76389 23362|0.40278 23363|0.56944 23364|0.66667 23365|0.56944 23366|0.625 23367|0.59722 23368|0.77778 23369|0.86111 23370|0.70833 23371|0.80556 23372|0.73611 23373|0.73611 23374|0.70833 23375|0.73611 23376|0.88889 23377|0.58333 23378|0.83333 23379|0.5 23380|0.52778 23381|0.51389 23382|0.52778 23383|0.63889 23384|0.77778 23385|0.34722 23386|0.5 23387|0.5 23388|0.58333 23389|0.86111 23390|0.66667 23391|0.65278 23392|0.69444 23393|0.34722 23394|0.5 23395|0.66667 23396|0.69444 23397|0.73611 23398|0.80556 23399|0.61111 23400|0.84722 23401|0.77778 23402|0.55556 23403|0.77778 23404|0.5 23405|0.27778 23406|0.56944 23407|0.84722 23408|0.5 23409|0.63889 23410|0.38889 23411|0.72222 23412|0.5 23413|0.77778 23414|0.69444 23415|0.875 23416|0.52778 23417|0.86111 23418|0.61111 23419|0.55556 23420|0.5 23421|0.51389 23422|0.65278 23423|0.55556 23424|0.36111 23425|0.68056 23426|0.47222 23427|0.5 23428|0.76389 23429|0.41667 23430|0.625 23431|0.73611 23432|0.66667 23433|0.79167 23434|0.875 23435|0.79167 23436|0.73611 23437|0.69444 23438|0.79167 23439|0.79167 23440|0.66667 23441|0.59722 23442|0.33333 23443|0.72222 23444|0.5 23445|0.68056 23446|0.83333 23447|0.65278 23448|0.70833 23449|0.54167 23450|0.77778 23451|0.91667 23452|0.55208 23453|0.54167 23454|0.5 23455|0.61111 23456|0.83333 23457|0.56944 23458|0.5 23459|0.43056 23460|0.5 23461|0.52778 23462|0.91667 23463|0.625 23464|0.58333 23465|0.55556 23466|0.5 23467|0.29167 23468|0.52778 23469|0.59722 23470|0.38889 23471|0.75 23472|0.54167 23473|0.38889 23474|0.63889 23475|0.72222 23476|0.77778 23477|0.63889 23478|0.77778 23479|0.83333 23480|0.75 23481|0.84722 23482|0.75 23483|0.63889 23484|0.48611 23485|0.54167 23486|0.79167 23487|0.70833 23488|0.5 23489|0.77778 23490|0.52778 23491|0.69444 23492|0.56944 23493|0.27778 23494|0.77778 23495|1 23496|0.84722 23497|0.81944 23498|0.93056 23499|0.76389 23500|0.61111 23501|0.73611 23502|0.36458 23503|0.31944 23504|0.77778 23505|0.66667 23506|0.76389 23507|0.59722 23508|0.34722 23509|0.70833 23510|0.33333 23511|0.66667 23512|0.75 23513|0.51389 23514|0.61111 23515|0.43056 23516|0.69444 23517|0.54167 23518|0.56944 23519|0.86111 23520|0.5 23521|0.76389 23522|0.33333 23523|0.52778 23524|0.93056 23525|0.40278 23526|0.61111 23527|0.80556 23528|0.79167 23529|0.65278 23530|0.69444 23531|0.80556 23532|0.72222 23533|0.61111 23534|0.65278 23535|0.66667 23536|0.79167 23537|0.55556 23538|0.54167 23539|0.63889 23540|0.56944 23541|0.86111 23542|0.75 23543|0.5 23544|0.83333 23545|0.61111 23546|0.55556 23547|0.53125 23548|0.75 23549|0.55556 23550|0.80556 23551|0.5 23552|0.73611 23553|0.43056 23554|0.41667 23555|0.84722 23556|0.47222 23557|0.54167 23558|0.73611 23559|0.63889 23560|0.38889 23561|0.72222 23562|0.56944 23563|0.72222 23564|0.59722 23565|0.40278 23566|0.88889 23567|0.77778 23568|0.56944 23569|0.63889 23570|0.625 23571|0.65278 23572|0.77778 23573|0.52778 23574|0.84722 23575|0.68056 23576|0.51389 23577|0.40278 23578|0.43056 23579|0.84722 23580|0.61111 23581|0.90278 23582|0.91667 23583|0.47222 23584|0.61111 23585|0.66667 23586|0.52778 23587|0.625 23588|0.77778 23589|0.97222 23590|0.72917 23591|0.5 23592|0.79167 23593|0.5 23594|0.59722 23595|0.66667 23596|0.55556 23597|0.68056 23598|0.76389 23599|0.69444 23600|0.55556 23601|0.83333 23602|0.5 23603|0.38889 23604|0.5 23605|0.55556 23606|0.5 23607|0.5 23608|0.45833 23609|0.5 23610|0.45833 23611|0.48611 23612|0.75 23613|0.72222 23614|0.84722 23615|0.55556 23616|0.75 23617|0.80556 23618|0.66667 23619|0.68056 23620|0.51389 23621|0.38889 23622|0.55556 23623|0.83333 23624|0.61111 23625|0.70833 23626|0.55556 23627|0.54167 23628|0.59722 23629|0.61111 23630|0.38889 23631|0.54167 23632|0.80556 23633|0.79167 23634|0.63889 23635|1 23636|0.80556 23637|0.86111 23638|0.83333 23639|0.48611 23640|0.88889 23641|0.65278 23642|0.83333 23643|0.43056 23644|0.58333 23645|0.66667 23646|0.86111 23647|0.81944 23648|0.94444 23649|0.91667 23650|0.83333 23651|0.47222 23652|0.5 23653|0.55556 23654|0.84722 23655|0.48611 23656|0.56944 23657|0.5 23658|0.66667 23659|0.72222 23660|0.88889 23661|0.88889 23662|0.86111 23663|0.375 23664|0.65278 23665|0.59722 23666|0.5 23667|0.5 23668|0.83333 23669|0.84722 23670|0.5 23671|0.44444 23672|0.31944 23673|0.41667 23674|0.61111 23675|0.5 23676|0.45833 23677|0.30556 23678|0.25 23679|0.58333 23680|0.81944 23681|0.30556 23682|0.55556 23683|0.79167 23684|0.83333 23685|0.75 23686|0.5 23687|0.77778 23688|0.61111 23689|0.72222 23690|0.5 23691|0.93056 23692|0.68056 23693|0.75 23694|0.55556 23695|0.68056 23696|0.81944 23697|0.93056 23698|0.61111 23699|0.61111 23700|0.77778 23701|0.69444 23702|0.5 23703|0.75 23704|0.83333 23705|0.79167 23706|0.88889 23707|0.61111 23708|0.58333 23709|0.44444 23710|0.95833 23711|0.83333 23712|0.72222 23713|0.68056 23714|0.86111 23715|0.59722 23716|0.55556 23717|0.27778 23718|0.54167 23719|0.81944 23720|0.70833 23721|0.61111 23722|0.66667 23723|0.51389 23724|0.5 23725|0.79167 23726|0.81944 23727|0.76389 23728|0.81944 23729|0.73611 23730|0.73611 23731|0.76389 23732|0.77778 23733|0.65278 23734|0.375 23735|0.47917 23736|0.63889 23737|0.55556 23738|0.59722 23739|0.5 23740|0.45833 23741|0.47222 23742|0.72222 23743|0.65278 23744|0.88889 23745|0.875 23746|0.70833 23747|0.36111 23748|0.48611 23749|0.51389 23750|0.75 23751|0.81944 23752|0.625 23753|0.41667 23754|0.52778 23755|0.51389 23756|0.56944 23757|0.77778 23758|0.5 23759|0.90278 23760|0.66667 23761|0.5 23762|0.88889 23763|0.65278 23764|0.80556 23765|0.86111 23766|0.58333 23767|0.61111 23768|0.66667 23769|0.26389 23770|0.55556 23771|0.79167 23772|0.91667 23773|0.44444 23774|0.68056 23775|0.72222 23776|0.80556 23777|0.875 23778|0.5 23779|0.5 23780|0.86458 23781|0.625 23782|0.88889 23783|0.77778 23784|0.55556 23785|0.66667 23786|0.61111 23787|0.65278 23788|0.83333 23789|0.5 23790|0.5 23791|0.63889 23792|0.76389 23793|0.66667 23794|0.5 23795|0.41667 23796|0.72222 23797|0.77778 23798|0.68056 23799|0.5 23800|0.44444 23801|0.73611 23802|0.55556 23803|0.79167 23804|0.33333 23805|0.75 23806|0.41667 23807|0.5 23808|0.68056 23809|0.40278 23810|0.5 23811|0.77778 23812|0.68056 23813|0.41667 23814|0.20833 23815|0.5 23816|0.66667 23817|0.625 23818|0.55556 23819|0.81944 23820|0.36111 23821|0.77778 23822|0.83333 23823|0.5 23824|0.48611 23825|0.63889 23826|0.66667 23827|0.72222 23828|0.56944 23829|0.45833 23830|0.625 23831|0.5 23832|0.66667 23833|0.72222 23834|0.61111 23835|0.5 23836|0.76389 23837|0.52778 23838|0.61111 23839|0.90278 23840|0.34722 23841|0.23611 23842|0.90278 23843|0.63889 23844|0.51389 23845|0.5 23846|0.59722 23847|0.55556 23848|0.55208 23849|0.69444 23850|0.45833 23851|0.69444 23852|0.59722 23853|0.33333 23854|0.83333 23855|0.34722 23856|0.55556 23857|0.51389 23858|0.75 23859|0.51389 23860|0.79167 23861|0.5 23862|0.61111 23863|0.48611 23864|0.38889 23865|0.54167 23866|0.80556 23867|0.86111 23868|0.84722 23869|0.61111 23870|0.83333 23871|0.72222 23872|0.73611 23873|0.51389 23874|0.5 23875|0.5 23876|0.44444 23877|0.625 23878|0.80556 23879|0.69444 23880|0.69444 23881|0.72222 23882|0.54167 23883|0.52778 23884|0.86111 23885|0.72222 23886|0.76389 23887|0.44444 23888|0.68056 23889|0.5 23890|0.61111 23891|0.41667 23892|0.55556 23893|0.79167 23894|0.88889 23895|0.76389 23896|0.375 23897|0.80556 23898|0.61111 23899|0.91667 23900|0.5 23901|0.68056 23902|0.86111 23903|0.83333 23904|0.77778 23905|0.90278 23906|0.77778 23907|0.91667 23908|0.93056 23909|0.5 23910|0.79167 23911|0.55556 23912|0.54167 23913|0.68056 23914|0.47222 23915|0.5 23916|0.83333 23917|0.5 23918|0.54167 23919|0.5 23920|0.72222 23921|0.29167 23922|0.86111 23923|0.77778 23924|0.29167 23925|0.75 23926|0.22222 23927|0.81944 23928|0.77778 23929|0.41667 23930|0.59722 23931|0.83333 23932|0.75 23933|0.22222 23934|0.375 23935|0.66667 23936|0.83333 23937|0.80556 23938|0.34722 23939|0.61111 23940|0.70833 23941|0.76389 23942|0.375 23943|0.80556 23944|0.36111 23945|0.44444 23946|0.5 23947|0.375 23948|0.43056 23949|0.15278 23950|0.34722 23951|0.875 23952|0.51389 23953|0.5 23954|0.83333 23955|0.79167 23956|0.33333 23957|0.625 23958|0.45833 23959|0.69444 23960|0.80556 23961|0.25 23962|0.51389 23963|0.61111 23964|0.77778 23965|0.63889 23966|0.80556 23967|0.73958 23968|0.76389 23969|0.5 23970|0.66667 23971|0.58333 23972|0.52778 23973|0.66667 23974|0.52778 23975|0.5 23976|0.65278 23977|0.76389 23978|0.90278 23979|0.84722 23980|0.70833 23981|0.81944 23982|0.83333 23983|0.59722 23984|0.33333 23985|0.75 23986|0.70833 23987|0.79167 23988|0.875 23989|0.47222 23990|0.77778 23991|0.80556 23992|0.47222 23993|0.68056 23994|0.63889 23995|0.55556 23996|0.40278 23997|0.5 23998|0.86111 23999|0.41667 24000|0.36111 24001|0.83333 24002|0.27778 24003|0.63889 24004|0.47222 24005|0.43056 24006|0.77778 24007|0.81944 24008|0.69444 24009|0.45833 24010|0.5 24011|0.56944 24012|0.19444 24013|0.93056 24014|0.51389 24015|0.55556 24016|0.47222 24017|0.79167 24018|0.72222 24019|0.34722 24020|0.55556 24021|0.72222 24022|0.55556 24023|0.75 24024|0.83333 24025|0.70833 24026|0.625 24027|0.91667 24028|0.47222 24029|0.58333 24030|0.58333 24031|0.66667 24032|0.68056 24033|0.31944 24034|0.68056 24035|0.54167 24036|0.5 24037|0.84722 24038|0.43056 24039|0.58333 24040|0.43056 24041|0.5 24042|0.58333 24043|0.44444 24044|0.36111 24045|0.88889 24046|0.38889 24047|0.83333 24048|0.72222 24049|0.55556 24050|0.5 24051|0.70833 24052|0.72222 24053|0.77778 24054|0.56944 24055|0.63889 24056|0.55556 24057|0.77778 24058|0.43056 24059|0.375 24060|0.63889 24061|0.69444 24062|0.63889 24063|0.5 24064|0.61111 24065|0.55556 24066|0.875 24067|0.56944 24068|0.56944 24069|0.68056 24070|0.625 24071|0.77778 24072|0.41667 24073|0.33333 24074|0.70833 24075|0.54167 24076|0.5 24077|0.65278 24078|0.94444 24079|0.80556 24080|0.79167 24081|0.38889 24082|0.77778 24083|0.5 24084|0.73611 24085|0.5 24086|0.84722 24087|0.5 24088|0.83333 24089|0.38889 24090|0.65278 24091|0.5 24092|0.83333 24093|0.5 24094|0.73958 24095|0.5 24096|0.5 24097|0.5 24098|0.5 24099|0.91667 24100|0.33333 24101|0.5 24102|0.5 24103|0.5 24104|0.5 24105|0.55556 24106|0.76389 24107|0.72222 24108|0.5 24109|0.5 24110|0.5 24111|0.33333 24112|0.63889 24113|0.76389 24114|0.91667 24115|0.59722 24116|0.16667 24117|0.16667 24118|0.56944 24119|0.125 24120|0.56944 24121|0.65278 24122|0.48611 24123|0.45833 24124|0.68056 24125|0.84722 24126|0.19444 24127|0.56944 24128|0.95833 24129|0.72222 24130|0.76389 24131|0.33333 24132|0.43056 24133|0.63889 24134|0.40278 24135|0.81944 24136|0.625 24137|0.5 24138|0.34722 24139|0.77778 24140|0.79167 24141|0.43056 24142|0.84722 24143|0.47222 24144|0.5 24145|0.63889 24146|0.75 24147|0.58333 24148|0.75 24149|0.79167 24150|0.76389 24151|0.73611 24152|0.81944 24153|0.84722 24154|0.75 24155|0.59722 24156|0.68056 24157|0.94444 24158|0.97222 24159|0.55556 24160|0.52778 24161|0.5 24162|0.83333 24163|0.68056 24164|0.84722 24165|0.61111 24166|0.77778 24167|0.52778 24168|0.45833 24169|0.63889 24170|0.5 24171|0.51389 24172|0.83333 24173|0.875 24174|0.5 24175|0.5 24176|0.55556 24177|0.48611 24178|0.5 24179|0.72222 24180|0.55556 24181|0.5 24182|0.5 24183|0.58333 24184|0.48611 24185|0.5 24186|0.63889 24187|0.5 24188|0.5 24189|0.48611 24190|0.43056 24191|0.48611 24192|0.5 24193|0.38889 24194|0.5 24195|0.5 24196|0.72222 24197|0.5 24198|0.5 24199|0.5 24200|0.5 24201|0.5 24202|0.5 24203|0.48611 24204|0.5 24205|0.5 24206|0.5 24207|0.5 24208|0.5 24209|0.51389 24210|0.5 24211|0.58333 24212|0.55556 24213|0.75 24214|0.43056 24215|0.52778 24216|0.5 24217|0.5 24218|0.56944 24219|0.55556 24220|0.5 24221|0.5 24222|0.5 24223|0.5 24224|0.55556 24225|0.45833 24226|0.625 24227|0.5 24228|0.5 24229|0.55556 24230|0.5 24231|0.54167 24232|0.88889 24233|0.5 24234|0.45833 24235|0.75 24236|0.5 24237|0.5 24238|0.72222 24239|0.34722 24240|0.79167 24241|0.83333 24242|0.63889 24243|0.75 24244|0.5 24245|0.58333 24246|0.875 24247|0.79167 24248|0.51389 24249|0.88889 24250|0.16667 24251|0.31944 24252|0.48611 24253|0.77778 24254|0.56944 24255|0.375 24256|0.5 24257|0.45833 24258|0.5 24259|0.45833 24260|0.77778 24261|0.77778 24262|0.875 24263|0.65278 24264|0.80556 24265|0.91667 24266|0.84722 24267|0.90278 24268|0.91667 24269|0.91667 24270|0.88889 24271|0.875 24272|0.77778 24273|0.69444 24274|0.80556 24275|0.88889 24276|0.5 24277|0.76389 24278|0.94444 24279|0.80556 24280|0.83333 24281|0.61111 24282|0.55556 24283|0.70833 24284|0.77778 24285|0.875 24286|0.81944 24287|0.84722 24288|0.76389 24289|0.61111 24290|0.68056 24291|0.73611 24292|0.79167 24293|0.84722 24294|0.80556 24295|0.83333 24296|0.77778 24297|0.875 24298|0.84722 24299|0.77778 24300|0.40278 24301|0.625 24302|0.55556 24303|0.45833 24304|0.86111 24305|0.88889 24306|0.88889 24307|0.69444 24308|0.86111 24309|0.70833 24310|0.75 24311|0.79167 24312|0.83333 24313|0.76389 24314|0.875 24315|0.88889 24316|0.77778 24317|0.72917 24318|0.875 24319|0.73611 24320|0.72222 24321|0.625 24322|0.56944 24323|0.27778 24324|0.41667 24325|0.43056 24326|0.69444 24327|0.77778 24328|0.90278 24329|0.375 24330|0.66667 24331|0.73611 24332|0.70833 24333|0.61458 24334|0.5 24335|0.93056 24336|0.88889 24337|0.88889 24338|0.86111 24339|0.88889 24340|0.98611 24341|0.65625 24342|0.70833 24343|0.88889 24344|0.70833 24345|0.76389 24346|0.59722 24347|0.73611 24348|0.83333 24349|0.69444 24350|0.56944 24351|0.77778 24352|0.76389 24353|0.80556 24354|0.83333 24355|0.84722 24356|0.83333 24357|0.75 24358|0.77778 24359|0.55556 24360|0.61111 24361|0.80556 24362|0.81944 24363|0.70833 24364|0.875 24365|0.73611 24366|0.72222 24367|0.83333 24368|0.84722 24369|0.83333 24370|0.625 24371|0.88889 24372|0.86111 24373|0.73611 24374|0.77778 24375|0.93056 24376|0.83333 24377|0.875 24378|0.80556 24379|0.5 24380|0.83333 24381|0.83333 24382|0.83333 24383|0.94444 24384|0.44444 24385|0.41667 24386|0.76389 24387|0.69444 24388|0.68056 24389|0.73611 24390|0.55556 24391|0.79167 24392|0.5 24393|0.72222 24394|0.59722 24395|0.75 24396|0.81944 24397|1 24398|0.88889 24399|0.45833 24400|0.77778 24401|0.65278 24402|0.63889 24403|0.72222 24404|0.75 24405|0.70833 24406|0.65278 24407|0.77778 24408|0.73611 24409|0.70833 24410|0.65278 24411|0.69444 24412|0.95833 24413|0.66667 24414|0.70833 24415|0.43056 24416|0.58333 24417|0.65278 24418|0.77778 24419|0.625 24420|0.72222 24421|0.875 24422|0.83333 24423|0.94444 24424|0.79167 24425|0.83333 24426|0.93056 24427|0.63889 24428|0.65278 24429|0.79167 24430|0.75 24431|0.66667 24432|0.875 24433|0.66667 24434|0.69792 24435|0.69444 24436|0.84722 24437|0.72222 24438|0.76389 24439|0.77778 24440|0.88889 24441|0.88889 24442|0.94444 24443|0.80556 24444|0.61111 24445|0.79167 24446|0.93056 24447|0.76389 24448|0.875 24449|0.58333 24450|0.79167 24451|0.72222 24452|0.72222 24453|0.83333 24454|0.83333 24455|0.94444 24456|0.81944 24457|0.52778 24458|0.73611 24459|0.79167 24460|0.55556 24461|0.80556 24462|0.88889 24463|0.76389 24464|0.61111 24465|0.55556 24466|0.91667 24467|0.79167 24468|0.81944 24469|0.83333 24470|0.75 24471|0.86111 24472|0.69444 24473|0.5 24474|0.66667 24475|0.625 24476|0.875 24477|0.81944 24478|0.44444 24479|0.875 24480|1 24481|0.69444 24482|0.70833 24483|0.76389 24484|0.59722 24485|0.65278 24486|0.76389 24487|0.77778 24488|0.5 24489|0.88889 24490|0.66667 24491|0.68056 24492|0.70833 24493|0.56944 24494|0.79167 24495|0.98611 24496|0.77778 24497|0.94444 24498|0.875 24499|0.72222 24500|0.69444 24501|0.86111 24502|0.88889 24503|0.81944 24504|0.70833 24505|0.83333 24506|0.875 24507|0.84722 24508|0.5 24509|0.88889 24510|0.80208 24511|0.79167 24512|0.72222 24513|0.625 24514|0.625 24515|0.80556 24516|0.70833 24517|0.83333 24518|0.76389 24519|0.77778 24520|0.58333 24521|0.76389 24522|0.68056 24523|0.5 24524|0.54167 24525|0.5 24526|0.84722 24527|0.86111 24528|0.5 24529|0.5 24530|0.5 24531|0.5 24532|0.70833 24533|0.5 24534|0.59722 24535|0.69444 24536|0.5 24537|0.5 24538|0.81944 24539|0.83333 24540|0.65278 24541|0.5 24542|0.5 24543|0.66667 24544|0.44444 24545|0.5 24546|0.77778 24547|0.5 24548|0.48611 24549|0.69444 24550|0.44444 24551|0.59722 24552|0.75 24553|0.5 24554|0.51389 24555|0.75 24556|0.5 24557|0.66667 24558|0.5 24559|0.5 24560|0.5 24561|0.45833 24562|0.68056 24563|0.83333 24564|0.5 24565|0.54167 24566|0.51389 24567|0.41667 24568|0.5 24569|0.5 24570|0.5 24571|0.5 24572|0.5 24573|0.83333 24574|0.38889 24575|0.68056 24576|0.63889 24577|0.77778 24578|0.43056 24579|0.63889 24580|0.55556 24581|0.77778 24582|0.38889 24583|0.55556 24584|0.38889 24585|0.66667 24586|0.52778 24587|0.83333 24588|0.56944 24589|0.84722 24590|0.5 24591|0.5 24592|0.22222 24593|0.5 24594|0.5 24595|0.5 24596|0.5 24597|0.61111 24598|0.54167 24599|0.58333 24600|0.55556 24601|0.5 24602|0.61111 24603|0.61111 24604|0.56944 24605|0.65278 24606|0.94444 24607|0.90278 24608|0.88889 24609|0.38889 24610|0.88889 24611|0.81944 24612|0.97222 24613|0.84722 24614|0.88889 24615|0.83333 24616|0.98611 24617|0.80556 24618|0.75 24619|0.77778 24620|0.63889 24621|0.83333 24622|0.875 24623|0.90278 24624|0.81944 24625|0.69444 24626|0.94444 24627|0.90278 24628|0.84722 24629|0.83333 24630|0.79167 24631|0.81944 24632|0.58333 24633|0.34722 24634|0.76389 24635|0.75 24636|0.69444 24637|0.94444 24638|0.76389 24639|0.13889 24640|0.41667 24641|0.66667 24642|0.79167 24643|0.65278 24644|0.80556 24645|0.875 24646|0.91667 24647|0.83333 24648|0.83333 24649|0.72222 24650|0.65278 24651|0.77778 24652|0.83333 24653|0.75 24654|0.77778 24655|0.90278 24656|0.73611 24657|0.73611 24658|0.34722 24659|0.68056 24660|0.55556 24661|0.875 24662|0.72222 24663|0.83333 24664|0.68056 24665|0.70833 24666|0.80556 24667|0.77778 24668|0.58333 24669|0.61111 24670|0.61111 24671|0.80556 24672|0.76389 24673|0.69444 24674|0.73611 24675|0.45833 24676|0.77778 24677|0.58333 24678|0.5 24679|0.70833 24680|0 24681|0.5 24682|0.75 24683|0.63889 24684|0.5 24685|0.5 24686|0.86111 24687|0.80556 24688|0.66667 24689|0.5 24690|0.5 24691|0.75 24692|0.5 24693|0.5 24694|0.5 24695|0.61111 24696|0.5 24697|0.5 24698|0.5 24699|0.61111 24700|0.63889 24701|0.5 24702|0.5 24703|0.5 24704|0.65278 24705|0.61111 24706|0.58333 24707|0.44444 24708|0.94444 24709|0.625 24710|0.81944 24711|0.55556 24712|0.76389 24713|0.57292 24714|0.65278 24715|0.26389 24716|0.5 24717|0.875 24718|0.44444 24719|0.38889 24720|0.44444 24721|0.43056 24722|0.33333 24723|0.66667 24724|0.56944 24725|0.33333 24726|0.33333 24727|0.63889 24728|0.81944 24729|0.81944 24730|0.81944 24731|0.59722 24732|0.88889 24733|0.48611 24734|0.5 24735|0.97222 24736|1 24737|0.48611 24738|0.5 24739|0.44444 24740|0.875 24741|0.72222 24742|0.73611 24743|0.5 24744|0.23611 24745|0.75 24746|0.83333 24747|0.65278 24748|0.5 24749|0.5 24750|0.5 24751|0.65278 24752|0.5 24753|0.375 24754|0.5 24755|0.66667 24756|0.5 24757|0.5 24758|0.5 24759|0.5 24760|0.5 24761|0.625 24762|0.65278 24763|0.68056 24764|0.5 24765|0.5 24766|0.63889 24767|0.63889 24768|0.55556 24769|0.30556 24770|0.58333 24771|0.59722 24772|0.83333 24773|0.5 24774|0.54167 24775|0.66667 24776|0.5 24777|0.45833 24778|0.66667 24779|0.54167 24780|0.5 24781|0.5 24782|0.5 24783|0.44444 24784|0.27778 24785|0.59722 24786|0.5 24787|0.5 24788|0.65278 24789|0.68056 24790|0.61111 24791|0.375 24792|0.5 24793|0.81944 24794|0.5 24795|0.43056 24796|0.5 24797|0.51389 24798|0.51389 24799|0.5 24800|0.81944 24801|0.81944 24802|0.875 24803|0.97222 24804|0.34722 24805|0.375 24806|0.55556 24807|0.75 24808|0.61111 24809|0.5 24810|0.5 24811|0.56944 24812|0.5 24813|0.5 24814|0.5 24815|0.66667 24816|0.5 24817|0.5 24818|0.52778 24819|0.5 24820|0.65278 24821|0.5 24822|0.5 24823|0.55556 24824|0.5 24825|0.58333 24826|0.86111 24827|0.5 24828|0.5 24829|0.44444 24830|0.625 24831|0.84722 24832|0.5 24833|0.5 24834|0.80556 24835|0.5 24836|0.5 24837|0.52778 24838|0.93056 24839|0.5 24840|0.5 24841|0.36111 24842|0.54167 24843|0.44444 24844|0.79167 24845|0.5 24846|0.5 24847|0.45833 24848|0.5 24849|0.5 24850|0.29167 24851|0.5 24852|0.68056 24853|0.5 24854|0.58333 24855|0.5 24856|0.69444 24857|0.63889 24858|0.5 24859|0.48611 24860|0.38889 24861|0.52778 24862|0.5 24863|0.5 24864|0.5 24865|0.5 24866|0.5 24867|0.72222 24868|0.76389 24869|0.5 24870|0.55556 24871|0.63889 24872|0.81944 24873|0.5 24874|0.5 24875|0.5 24876|0.58333 24877|0.86111 24878|0.5 24879|0.5 24880|0.70833 24881|0.66667 24882|0.5 24883|0.5 24884|0.56944 24885|0.61111 24886|0.55556 24887|0.56944 24888|0.79167 24889|0.5 24890|0.5 24891|0.5 24892|0.5 24893|0.5 24894|0.68056 24895|0.5 24896|0.5 24897|0.5 24898|0.5 24899|0.5 24900|0.5 24901|0.40278 24902|0.72222 24903|0.5 24904|0.5 24905|0.5 24906|0.5 24907|0.5 24908|0.73611 24909|0.90278 24910|0.18056 24911|0.73611 24912|0.6875 24913|0.72222 24914|0.29167 24915|0.73611 24916|0.5 24917|0.5 24918|0.77778 24919|0.56944 24920|0.44444 24921|0.16667 24922|0.55556 24923|0.5 24924|0.55556 24925|0.5 24926|0.88889 24927|0.77778 24928|0.5 24929|0.68056 24930|0.52778 24931|0.5 24932|0.5 24933|0.375 24934|0.83333 24935|0.5 24936|0.5 24937|0.5 24938|0.5 24939|0.625 24940|0.75 24941|0.63889 24942|0.5 24943|0.5 24944|0.5 24945|0.5 24946|0.5 24947|0.36111 24948|0.5 24949|0.44444 24950|0.625 24951|0.5 24952|0.51389 24953|0.72222 24954|0.5 24955|0.875 24956|0.5 24957|0.5 24958|0.5 24959|0.55556 24960|0.90278 24961|0.55556 24962|0.5 24963|0.5 24964|0.5 24965|0.5 24966|0.5 24967|0.59722 24968|0.66667 24969|0.80556 24970|0.625 24971|0.88889 24972|0.69444 24973|0.63889 24974|0.56944 24975|0.5 24976|0.34722 24977|0.5 24978|0.5 24979|0.81944 24980|0.91667 24981|0.70833 24982|0.65278 24983|0.5 24984|0.5 24985|0.5 24986|0.61111 24987|0.5 24988|0.5 24989|0.45833 24990|0.56944 24991|0.5 24992|0.5 24993|0.44444 24994|0.5 24995|0.5 24996|0.5 24997|0.61111 24998|0.43056 24999|0.66667 25000|0.79167 25001|0.83333 25002|0.73611 25003|0.5 25004|0.5 25005|0.38889 25006|0.41667 25007|0.5 25008|0.44444 25009|0.61111 25010|0.55556 25011|0.69444 25012|0.5 25013|0.58333 25014|0.5 25015|0.5 25016|0.5 25017|0.5 25018|0.83333 25019|0.83333 25020|0.61111 25021|0.73611 25022|0.81944 25023|0.5 25024|0.5 25025|0.66667 25026|0.51389 25027|0.5 25028|0.5 25029|0.5 25030|0.5 25031|0.5 25032|0.5 25033|0.66667 25034|0.375 25035|0.45833 25036|1 25037|0.5 25038|0.45833 25039|0.5 25040|0.5 25041|0.40278 25042|0.5 25043|0.5 25044|0.5 25045|0.5 25046|0.5 25047|0.44444 25048|0.73611 25049|0.63889 25050|0.83333 25051|0.90278 25052|0.5 25053|0.43056 25054|0.5 25055|0.63889 25056|0.5 25057|0.5 25058|0.43056 25059|0.375 25060|0.5 25061|0.5 25062|0.5 25063|0.75 25064|0.5 25065|0.5 25066|0.5 25067|0.5 25068|0.33333 25069|0.90278 25070|0.61458 25071|0.47222 25072|0.77778 25073|0.5 25074|0.5 25075|0.5 25076|0.59722 25077|0.625 25078|0.88889 25079|0.80556 25080|0.97222 25081|0.84722 25082|0.80556 25083|0.80556 25084|0.77778 25085|0.5 25086|0.94444 25087|0.16667 25088|0.66667 25089|0.5 25090|0.38889 25091|0.56944 25092|0.5 25093|0.5 25094|0.5 25095|0.27083 25096|0.30556 25097|0.83333 25098|0.79167 25099|0.77778 25100|0.58333 25101|0.91667 25102|0.41667 25103|0.54167 25104|0.45833 25105|0.61111 25106|0.54167 25107|0.70833 25108|0.5 25109|0.72222 25110|0.98611 25111|0.5 25112|0.5 25113|0.44444 25114|0.5 25115|0.65278 25116|0.61111 25117|0.5 25118|0.5 25119|0.54167 25120|0.54167 25121|0.5 25122|0.60417 25123|0.5 25124|0.90625 25125|0.5 25126|0.54167 25127|0.5 25128|0.5 25129|0.76389 25130|0.5 25131|0.5 25132|0.47222 25133|0.88889 25134|0.73611 25135|0.5 25136|0.58333 25137|0.23958 25138|0.69444 25139|0.875 25140|0.63889 25141|0.5 25142|0.5 25143|0.66667 25144|0.27778 25145|0.83333 25146|0.5 25147|0.33333 25148|0.33333 25149|0.19444 25150|0.27778 25151|0.65278 25152|0.13889 25153|0.5 25154|0.66667 25155|0.88889 25156|0.88889 25157|0.61111 25158|0.5 25159|0.5 25160|0.5 25161|0.81944 25162|0.58333 25163|0.5 25164|0.5 25165|0.66667 25166|0.65278 25167|0.5 25168|0.5 25169|0.5 25170|0.55556 25171|0.66667 25172|0.875 25173|0.38889 25174|0.86111 25175|0.48611 25176|0.5 25177|0.61111 25178|0.61111 25179|0.83333 25180|0.65278 25181|0.5 25182|1 25183|0.94444 25184|0.51389 25185|0.5 25186|0.54167 25187|0.77778 25188|0.80556 25189|0.5 25190|0.77778 25191|0.80556 25192|0.5 25193|0.59722 25194|0.83333 25195|0.69444 25196|0.5 25197|0.54167 25198|0.5 25199|0.5 25200|0.70833 25201|0.56944 25202|0.55208 25203|0.5 25204|0.5 25205|0.5 25206|0.40278 25207|0.5 25208|0.61111 25209|0.68056 25210|0.5 25211|0.5 25212|0.61111 25213|0.65278 25214|0.5 25215|0.63889 25216|0.5 25217|0.5 25218|0.5 25219|0.5 25220|0.5 25221|0.5 25222|0.5 25223|0.72222 25224|0.38889 25225|0.59722 25226|0.70833 25227|0.61111 25228|0.55556 25229|0.98611 25230|0.86111 25231|0.68056 25232|0.5 25233|0.48611 25234|0.70833 25235|0.72222 25236|0.63889 25237|0.5 25238|0.5 25239|0.80556 25240|0.5 25241|0.5 25242|0.55556 25243|0.5 25244|0.66667 25245|0.5 25246|0.5 25247|0.72222 25248|0.69444 25249|0.43056 25250|0.51389 25251|0.43056 25252|0.68056 25253|0.66667 25254|0.5 25255|0.55556 25256|0.5 25257|0.69444 25258|0.5 25259|0.73611 25260|0.55556 25261|0.93056 25262|0.51389 25263|0.84722 25264|0.61111 25265|0.5 25266|0.55556 25267|0.27778 25268|0.65278 25269|0.875 25270|0.90278 25271|0.95833 25272|0.83333 25273|0.98611 25274|0.55556 25275|0.54167 25276|0.5 25277|0.73611 25278|0.65278 25279|0.58333 25280|0.84722 25281|0.75 25282|0.65278 25283|0.79167 25284|0.66667 25285|0.73611 25286|0.75 25287|0.5 25288|0.77778 25289|0.81944 25290|0.86111 25291|0.80556 25292|0.56944 25293|0.48611 25294|0.77778 25295|0.5 25296|0.58333 25297|0.45833 25298|0.5 25299|0.52778 25300|0.88889 25301|0.5 25302|0.84722 25303|0.48611 25304|0.44444 25305|0.5 25306|0.5 25307|0.55556 25308|0.80556 25309|0.61111 25310|0.80556 25311|0.34722 25312|0.33333 25313|0.5 25314|0.68056 25315|0.71875 25316|0.77778 25317|0.76389 25318|0.69444 25319|0.14583 25320|0.66667 25321|0.47222 25322|0.625 25323|0.66667 25324|0.29167 25325|0.73611 25326|0.44444 25327|0.76389 25328|0.70833 25329|0.875 25330|0.69444 25331|0.61111 25332|0.84722 25333|0.55556 25334|0.65278 25335|0.55556 25336|0.70833 25337|0.65278 25338|0.77778 25339|0.75 25340|0.5 25341|0.84722 25342|0.93056 25343|0.73611 25344|0.34722 25345|0.5 25346|0.83333 25347|0.5 25348|0.56944 25349|0.43056 25350|0.41667 25351|0.5 25352|0.5 25353|0.5 25354|0.5 25355|0.66667 25356|0.63889 25357|0.27778 25358|0.5 25359|0.5 25360|0.88889 25361|0.875 25362|0.97222 25363|0.5 25364|0.5 25365|0.59722 25366|0.5 25367|0.5 25368|0.34722 25369|0.56944 25370|0.75 25371|0.69444 25372|0.79167 25373|0.80556 25374|0.55556 25375|0.84722 25376|0.84722 25377|0.76389 25378|0.65278 25379|0.5 25380|0.76389 25381|0.79167 25382|0.81944 25383|0.70833 25384|0.76389 25385|0.5 25386|0.36111 25387|0.5 25388|0.5 25389|0.5 25390|0.5 25391|0.5 25392|0.5 25393|0.5 25394|0.5 25395|0.77778 25396|0.52778 25397|0.88889 25398|0.86111 25399|0.5 25400|0.5 25401|0.5 25402|0.58333 25403|0.5 25404|0.5 25405|0.31944 25406|0.5 25407|0.22222 25408|0.61111 25409|0.5 25410|0.44444 25411|0.5 25412|0.5 25413|0.80556 25414|0.91667 25415|0.61111 25416|0.5 25417|0.5 25418|0.63889 25419|0.70833 25420|0.5 25421|0.65278 25422|0.55556 25423|0.40278 25424|0.59722 25425|0.61111 25426|0.5 25427|0.29167 25428|0.84722 25429|0.81944 25430|0.81944 25431|0.68056 25432|0.81944 25433|0.55556 25434|0.77778 25435|0.625 25436|0.80556 25437|0.61111 25438|0.65278 25439|0.5 25440|0.5 25441|0.5 25442|0.65278 25443|0.83333 25444|0.5 25445|0.55556 25446|0.5 25447|0.75 25448|0.77778 25449|0.5 25450|0.5 25451|0.81944 25452|0.84722 25453|0.66667 25454|0.90278 25455|0.44444 25456|0.31944 25457|0.5 25458|0.5 25459|0.76389 25460|0.81944 25461|0.58333 25462|0.5 25463|0.5 25464|0.5 25465|0.5 25466|0.5 25467|0.5 25468|0.41667 25469|0.44444 25470|0.47222 25471|0.44444 25472|0.5 25473|0.625 25474|0.61111 25475|0.70833 25476|0.75 25477|0.5 25478|0.5 25479|0.5 25480|0.54167 25481|0.22222 25482|0.73611 25483|0.70833 25484|0.5 25485|0.5 25486|0.5 25487|0.77778 25488|0.70833 25489|0.75 25490|0.5 25491|0.48611 25492|0.5 25493|0.33333 25494|0.51389 25495|0.5 25496|0.66667 25497|0.94444 25498|0.38889 25499|0.80556 25500|0.5 25501|0.95833 25502|0.5 25503|0.63889 25504|0.5 25505|0.5 25506|0.43056 25507|0.79167 25508|0.875 25509|0.44444 25510|0.69444 25511|0.63889 25512|0.81944 25513|0.80208 25514|0.66667 25515|0.5 25516|0.5 25517|0.5 25518|0.20833 25519|0.38889 25520|0.81944 25521|0.55556 25522|0.58333 25523|0.5 25524|0.98611 25525|0.65278 25526|0.055556 25527|0.19444 25528|0.55556 25529|0.61111 25530|0.54167 25531|0.5 25532|0.5 25533|0.65278 25534|0.625 25535|0.5 25536|0.5 25537|0.5 25538|0.5 25539|0.5 25540|0.5 25541|0.5 25542|0.77778 25543|0.5 25544|0.45833 25545|0.15278 25546|0.625 25547|0.5 25548|0.72222 25549|0.75 25550|0.80556 25551|0.88889 25552|0.70833 25553|0.66667 25554|0.5 25555|0.55556 25556|0.69444 25557|0.58333 25558|0.54167 25559|0.5 25560|0.5 25561|0.61111 25562|0.44444 25563|0.58333 25564|0.5 25565|0.5 25566|0.72222 25567|0.5 25568|0.375 25569|0.44444 25570|0.5 25571|0.48611 25572|0.40278 25573|0.72222 25574|0.43056 25575|0.65278 25576|0.81944 25577|0.66667 25578|0.5 25579|0.5 25580|0.625 25581|0.59722 25582|0.94444 25583|0.4375 25584|0.5 25585|0.52778 25586|0.44444 25587|0.5 25588|0.5 25589|0.5 25590|0.5 25591|0.5 25592|0.60417 25593|0.58333 25594|0.25 25595|0.5 25596|0.5 25597|0.47222 25598|0.55556 25599|0.55556 25600|0.47222 25601|0.63889 25602|0.51389 25603|0.88889 25604|0.5 25605|0.5 25606|0.75 25607|0.55556 25608|0.70833 25609|0.097222 25610|0.5 25611|0.23611 25612|0.5 25613|0.5 25614|0.5 25615|0.59722 25616|0.59722 25617|0.58333 25618|0.91667 25619|0.23611 25620|0.81944 25621|0.84722 25622|0.94444 25623|0.86111 25624|0.43056 25625|0.44444 25626|0.52778 25627|0.72222 25628|0.75 25629|0.5 25630|0.56944 25631|0.5 25632|0.77778 25633|0.76389 25634|0.84722 25635|0.5 25636|0.38889 25637|0.52778 25638|0.5 25639|0.5 25640|0.5 25641|0.5 25642|0.55556 25643|0.81944 25644|0.48611 25645|0.54167 25646|0.58333 25647|0.68056 25648|0.58333 25649|0.18056 25650|0.38889 25651|0.625 25652|0.86111 25653|0.375 25654|0.44444 25655|0.72917 25656|0.5 25657|0.61111 25658|0.5 25659|0.55556 25660|0.68056 25661|0.33333 25662|0.29167 25663|0.70833 25664|0.66667 25665|0.84722 25666|0.41667 25667|0.75 25668|0.5 25669|0.5 25670|0.80556 25671|0.69444 25672|0.83333 25673|0.88542 25674|0.61111 25675|0.65278 25676|0.5 25677|0.80556 25678|0.55556 25679|0.875 25680|0.26389 25681|0.55556 25682|0.65278 25683|0.5 25684|0.47222 25685|0.72222 25686|0.65278 25687|0.51389 25688|0.61111 25689|0.75 25690|0.70833 25691|0.5 25692|0.31944 25693|0.5 25694|0.59722 25695|0.72222 25696|0.55556 25697|0.73611 25698|0.875 25699|0.70833 25700|0.63889 25701|1 25702|0.43056 25703|0.5 25704|0.5 25705|0.55556 25706|0.5 25707|0.84722 25708|0.55556 25709|0.5 25710|0.58333 25711|0.63889 25712|0.66667 25713|0.75 25714|0.48611 25715|0.25 25716|0.76042 25717|0.5 25718|0.44444 25719|0.88889 25720|0.51389 25721|0.80556 25722|0.61111 25723|0.81944 25724|0.72222 25725|0.81944 25726|0.27778 25727|0.54167 25728|0.875 25729|0.80556 25730|0.79167 25731|0.72222 25732|0.75 25733|0.73611 25734|0.80556 25735|0.77778 25736|0.83333 25737|0.76389 25738|0.77778 25739|0.81944 25740|0.84722 25741|0.70833 25742|0.81944 25743|0.76389 25744|0.68056 25745|0.5 25746|0.65278 25747|0.31944 25748|0.69444 25749|0.80556 25750|0.5 25751|0.79167 25752|0.55556 25753|0.48611 25754|0.68056 25755|0.19444 25756|0.58333 25757|0.20833 25758|0.48611 25759|0.86111 25760|0.48611 25761|0.77778 25762|0.79167 25763|0.84722 25764|0.77778 25765|0.90278 25766|0.69444 25767|0.72222 25768|0.88889 25769|0.73611 25770|0.81944 25771|0.69444 25772|0.5 25773|0.76389 25774|0.73611 25775|0.76389 25776|0.76389 25777|0.81944 25778|0.81944 25779|0.94444 25780|0.56944 25781|0.79167 25782|0.77778 25783|0.84722 25784|0.77778 25785|0.68056 25786|0.041667 25787|0.61111 25788|0.76389 25789|0.83333 25790|0.70833 25791|0.88889 25792|0.65278 25793|0.31944 25794|0.72222 25795|0.93056 25796|0.73611 25797|0.63889 25798|0.81944 25799|0.73611 25800|0.90278 25801|0.375 25802|0.61111 25803|0.66667 25804|0.19444 25805|0.83333 25806|0.25 25807|0.58333 25808|0.5 25809|0.94444 25810|0.5 25811|0.55556 25812|0.63889 25813|0.33333 25814|0.55556 25815|0.56944 25816|0.5 25817|0.5 25818|0.5 25819|0.65278 25820|0.5 25821|0.5 25822|0.5 25823|0.5 25824|0.57292 25825|0.55556 25826|0.51389 25827|0.5 25828|0.5 25829|0.72222 25830|0.5 25831|0.5 25832|0.72222 25833|0.5 25834|0.44444 25835|0.5 25836|0.5 25837|0.80556 25838|0.5 25839|0.5 25840|0.65278 25841|0.61111 25842|0.68056 25843|0.5 25844|0.5 25845|0.5 25846|0.63889 25847|0.63889 25848|0.625 25849|0.48611 25850|0.18056 25851|0.68056 25852|0.52778 25853|0.5 25854|0.5 25855|0.44444 25856|0.5 25857|0.59722 25858|0.5 25859|0.63889 25860|0.77778 25861|0.5 25862|0.5 25863|0.5 25864|0.5 25865|0.5 25866|0.5 25867|0.5 25868|0.5 25869|0.5 25870|0.61111 25871|0.875 25872|0.5 25873|0.5 25874|0.84722 25875|0.5 25876|0.5 25877|0.5 25878|0.5 25879|0.5 25880|0.19444 25881|0.5 25882|0.55556 25883|0.5 25884|0.5 25885|0.5 25886|0.44444 25887|0.5 25888|0.5 25889|0.5 25890|0.5 25891|0.55556 25892|0.5 25893|0.5 25894|0.76389 25895|0.5 25896|0.5 25897|0.5 25898|0.47222 25899|0.5 25900|0.77778 25901|0.73611 25902|0.47222 25903|0.75 25904|0.5 25905|0.79167 25906|0.5 25907|0.51389 25908|0.56944 25909|0.5 25910|0.65278 25911|0.5 25912|0.52778 25913|0.36111 25914|0.5 25915|0.5 25916|0.79167 25917|0.59722 25918|0.70833 25919|0.61111 25920|0.79167 25921|0.5 25922|0.55556 25923|0.59722 25924|0.5 25925|0.5 25926|0.61111 25927|0.83333 25928|0.5 25929|0.5 25930|0.73611 25931|0.83333 25932|0.5 25933|0.79167 25934|0.34722 25935|0.65278 25936|0.91667 25937|0.5 25938|0.80556 25939|0.79167 25940|0.5 25941|0.5 25942|0.79167 25943|0.5 25944|0.5 25945|0.5 25946|0.52778 25947|0.55556 25948|0.5 25949|0.5 25950|0.55556 25951|0.95833 25952|0.72222 25953|0.5 25954|0.27778 25955|0.55556 25956|0.63889 25957|0.5 25958|0.72222 25959|0.5 25960|0.5 25961|0.65278 25962|0.5 25963|0.70833 25964|0.66667 25965|0.5 25966|0.5 25967|0.33333 25968|0.52778 25969|0.5 25970|0.5 25971|0.72917 25972|0.5 25973|0.48611 25974|0.625 25975|0.90278 25976|0.81944 25977|0.875 25978|0.56944 25979|0.625 25980|0.90278 25981|0.5 25982|0.38889 25983|0.5 25984|0.375 25985|0.54167 25986|0.72222 25987|0.5 25988|0.5 25989|0.5 25990|0.5 25991|0.5 25992|0.72222 25993|0.22222 25994|0.43056 25995|0.5 25996|0.76389 25997|0.5 25998|0.5 25999|0.46875 26000|0.5 26001|0.5 26002|0.5 26003|0.73611 26004|0.5 26005|0.80556 26006|0.97222 26007|0.80556 26008|0.72222 26009|0.5 26010|0.5 26011|0.5 26012|0.5 26013|0.5 26014|0.5 26015|0.44444 26016|0.76389 26017|0.58333 26018|0.44444 26019|0.5 26020|0.34722 26021|0.5 26022|0.625 26023|0.84722 26024|0.77778 26025|0.5 26026|0.75 26027|0.41667 26028|0.5 26029|0.70833 26030|0.65278 26031|0.76389 26032|0.625 26033|0.43056 26034|0.52778 26035|0.84722 26036|0.61111 26037|0.56944 26038|0.5 26039|0.625 26040|0.5 26041|0.93056 26042|0.86111 26043|0.5 26044|0.5 26045|0.69444 26046|0.61111 26047|0.5 26048|0.5 26049|0.51389 26050|0.5 26051|0.66667 26052|0.88542 26053|0.79167 26054|0.5 26055|0.5 26056|0.55556 26057|0.5 26058|0.52778 26059|0.70833 26060|0.69444 26061|0.83333 26062|0.48611 26063|0.72222 26064|0.5 26065|0.33333 26066|0.5 26067|0.5 26068|0.68056 26069|0.5 26070|0.5 26071|0.5 26072|0.65278 26073|0.5 26074|0.5 26075|0.76042 26076|0.80556 26077|0.55556 26078|0.63889 26079|0.5 26080|0.55556 26081|0.5 26082|0.5 26083|0.5 26084|0.51389 26085|0.72222 26086|0.70833 26087|0.70833 26088|0.5 26089|0.61111 26090|0.90278 26091|0.5 26092|0.5 26093|0.5 26094|0.5 26095|0.61111 26096|0.5 26097|0.5 26098|0.5 26099|0.84722 26100|0.58333 26101|0.66667 26102|0.43056 26103|0.5 26104|0.38889 26105|0.625 26106|0.66667 26107|0.5 26108|0.66667 26109|0.5 26110|0.5 26111|0.5 26112|0.59722 26113|0.5 26114|0.72222 26115|0.5 26116|0.5 26117|0.51389 26118|0.5 26119|0.66667 26120|0.5 26121|0.65278 26122|0.55556 26123|0.625 26124|0.69444 26125|0.84722 26126|0.83333 26127|0.81944 26128|0.5 26129|0.55556 26130|0.73611 26131|0.5 26132|0.55556 26133|0.5 26134|0.5 26135|0.5 26136|0.5 26137|0.66667 26138|0.58333 26139|0.83333 26140|0.66667 26141|0.72222 26142|0.625 26143|0.38889 26144|0.5 26145|0.5 26146|0.5 26147|0.56944 26148|0.61111 26149|0.72222 26150|0.58333 26151|0.88889 26152|0.5 26153|0.66667 26154|0.5 26155|0.5 26156|0.61111 26157|0.5 26158|0.5 26159|0.5 26160|0.83333 26161|0.5 26162|0.5 26163|0.5 26164|0.54167 26165|0.5 26166|0.5 26167|0.43056 26168|0.48611 26169|0.48611 26170|0.61111 26171|0.72222 26172|0.5 26173|0.5 26174|0.48611 26175|0.59722 26176|0.65278 26177|0.625 26178|0.80556 26179|0.52778 26180|0.66667 26181|0.5 26182|0.54167 26183|0.5 26184|0.5 26185|0.5 26186|0.5 26187|0.47222 26188|0.5 26189|0.5 26190|0.88889 26191|0.5 26192|0.65278 26193|0.63889 26194|0.83333 26195|0.27778 26196|0.45833 26197|0.55556 26198|0.44444 26199|0.61111 26200|0.91667 26201|0.625 26202|0.5 26203|0.90278 26204|0.80556 26205|0.83333 26206|0.5 26207|0.5 26208|0.75 26209|0.5 26210|0.73611 26211|0.23611 26212|0.69444 26213|0.72222 26214|0.33333 26215|0.31944 26216|0.38889 26217|0.38889 26218|0.22222 26219|0.41667 26220|0.33333 26221|0.41667 26222|0.76389 26223|0.44444 26224|0.55556 26225|0.61111 26226|0.5 26227|0.77778 26228|0.77778 26229|0.81944 26230|0.30556 26231|0.16667 26232|0.66667 26233|0.51389 26234|0.5 26235|0.77778 26236|0.43056 26237|0.69444 26238|0.5 26239|0.29167 26240|0.59722 26241|0.5 26242|0.5 26243|0.5 26244|0.625 26245|0.5 26246|0.84722 26247|0.5 26248|0.5 26249|0.63889 26250|0.61111 26251|0.5 26252|0.52778 26253|0.5 26254|0.5 26255|0.5 26256|0.75 26257|0.55556 26258|0.77778 26259|0.77778 26260|0.5 26261|0.79167 26262|0.80556 26263|0.44444 26264|0.69444 26265|0.875 26266|0.5 26267|0.55556 26268|0.55556 26269|1 26270|0.90278 26271|0.66667 26272|0.56944 26273|0.5 26274|0.55556 26275|0.88889 26276|0.5 26277|0.47222 26278|0.58333 26279|0.77778 26280|0.83333 26281|0.44444 26282|0.875 26283|0.51389 26284|0.5 26285|0.75 26286|0.55556 26287|0.63889 26288|0.5 26289|0.20833 26290|0.47222 26291|0.375 26292|0.66667 26293|0.81944 26294|0.84722 26295|0.96875 26296|0.91667 26297|0.88889 26298|0.75 26299|0.97222 26300|0.84722 26301|0.81944 26302|0.78125 26303|0.5 26304|0.68056 26305|0.68056 26306|0.94444 26307|0.5 26308|0.625 26309|0.5 26310|0.5 26311|0.72222 26312|0.61111 26313|0.84722 26314|0.77778 26315|0.77778 26316|0.83333 26317|0.90278 26318|0.91667 26319|0.48611 26320|0.5 26321|0.65278 26322|0.5 26323|0.83333 26324|0.5 26325|0.5 26326|0.44444 26327|0.5 26328|0.5 26329|0.5 26330|0.5 26331|0.5 26332|0.5 26333|0.5 26334|0.5 26335|0.77778 26336|0.5 26337|0.5 26338|0.5 26339|0.5 26340|0.66667 26341|0.5 26342|0.5 26343|0.5 26344|0.875 26345|0.5 26346|0.5 26347|0.61111 26348|0.83333 26349|0.5 26350|0.5 26351|0.5 26352|0.51389 26353|0.5 26354|0.5 26355|0.5 26356|0.5 26357|0.38889 26358|0.38889 26359|0.5 26360|0.5 26361|0.51389 26362|0.36111 26363|0.58333 26364|0.5 26365|0.5 26366|0.55556 26367|0.5 26368|0.59722 26369|0.5 26370|0.63889 26371|0.5 26372|0.5 26373|0.52778 26374|0.48611 26375|0.5 26376|0.5 26377|0.5 26378|0.5 26379|0.55556 26380|0.44444 26381|0.5 26382|0.76389 26383|0.77778 26384|0.72222 26385|0.77778 26386|0.5 26387|0.59722 26388|0.5 26389|0.5 26390|0.5 26391|0.88889 26392|0.81944 26393|0.5 26394|0.5 26395|0.66667 26396|0.79167 26397|0.44444 26398|0.55556 26399|0.41667 26400|0.63889 26401|0.65278 26402|0.51389 26403|0.5 26404|0.5 26405|0.5 26406|0.80556 26407|0.70833 26408|0.5 26409|0.5 26410|0.86111 26411|0.5 26412|0.84722 26413|0.5 26414|0.5 26415|0.56944 26416|0.55556 26417|0.5 26418|0.76389 26419|0.91667 26420|0.5 26421|0.75 26422|0.44444 26423|0.91667 26424|0.51389 26425|0.72222 26426|0.47222 26427|0.5 26428|0.59722 26429|0.5 26430|0.5 26431|0.5 26432|0.5 26433|0.51389 26434|0.5 26435|0.625 26436|0.69444 26437|0.79167 26438|0.5 26439|0.76389 26440|0.66667 26441|0.5 26442|0.72222 26443|0.38889 26444|0.69444 26445|0.55556 26446|0.72222 26447|0.65278 26448|0.70833 26449|0.55556 26450|0.5 26451|0.5 26452|0.86111 26453|0.5 26454|0.097222 26455|0.72222 26456|0.72222 26457|0.83333 26458|0.58333 26459|0.5 26460|0.5 26461|0.5 26462|0.625 26463|0.875 26464|0.93056 26465|0.88889 26466|0.5 26467|0.5 26468|0.5 26469|0.52778 26470|0.48611 26471|0.5 26472|0.5 26473|0.80556 26474|0.5 26475|0.61111 26476|0.42708 26477|0.5 26478|0.61111 26479|0.61111 26480|0.5 26481|0.65278 26482|0.5 26483|0.5 26484|0.5 26485|0.36111 26486|0.5 26487|0.5 26488|0.5 26489|0.88542 26490|0.81944 26491|0.75 26492|0.88889 26493|0.38889 26494|0.5 26495|0.5 26496|0.5 26497|0.76389 26498|0.80556 26499|0.5 26500|0.58333 26501|0.5 26502|0.51389 26503|0.5 26504|0.66667 26505|0.5 26506|0.48611 26507|0.69444 26508|0.55556 26509|0.5 26510|0.63889 26511|0.66667 26512|0.65278 26513|0.5 26514|0.5 26515|0.5 26516|0.72222 26517|0.66667 26518|0.5 26519|0.69444 26520|0.61111 26521|0.73611 26522|0.5 26523|0.54167 26524|0.5 26525|0.44444 26526|0.5 26527|0.5 26528|0.51389 26529|0.5 26530|0.66667 26531|0.58333 26532|0.90278 26533|0.5 26534|0.5 26535|0.58333 26536|0.55556 26537|0.5 26538|0.63889 26539|0.38889 26540|0.61111 26541|0.5 26542|0.66667 26543|0.65278 26544|0.5 26545|0.5 26546|0.5 26547|0.5 26548|0.44444 26549|0.5 26550|0.5 26551|0.66667 26552|0.54167 26553|0.97222 26554|0.55556 26555|0.5 26556|0.5 26557|0.625 26558|0.29167 26559|0.5 26560|0.5 26561|0.55556 26562|0.5 26563|0.54167 26564|0.70833 26565|0.36111 26566|0.52778 26567|0.5 26568|0.70833 26569|0.81944 26570|0.5 26571|0.5 26572|0.5 26573|0.5 26574|0.61111 26575|0.55556 26576|0.5 26577|0.5 26578|0.5 26579|0.5 26580|0.47222 26581|0.5 26582|0.94444 26583|0.93056 26584|0.45833 26585|0.5 26586|0.55556 26587|0.5 26588|0.38542 26589|0.72222 26590|0.40278 26591|0.66667 26592|0.625 26593|0.81944 26594|0.63889 26595|0.5 26596|0.5 26597|0.36111 26598|0.61111 26599|0.63889 26600|0.44444 26601|0.84722 26602|0.70833 26603|0.73958 26604|0.5 26605|0.30208 26606|0.79167 26607|0.79167 26608|0.66667 26609|0.73611 26610|0.52778 26611|0.5 26612|0.75 26613|0.79167 26614|0.5 26615|0.5 26616|0.91667 26617|0.5 26618|0.5 26619|0.65278 26620|0.75 26621|0.52778 26622|0.5 26623|0.65278 26624|0.5 26625|0.5 26626|0.61111 26627|0.80556 26628|0.5 26629|0.5 26630|0.5 26631|0.5 26632|0.5 26633|0.59722 26634|0.86111 26635|0.52778 26636|0.625 26637|0.65278 26638|0.5 26639|0.59722 26640|0.45833 26641|0.5 26642|0.81944 26643|0.48611 26644|0.58333 26645|0.5 26646|0.5 26647|0.54167 26648|0.27778 26649|0.81944 26650|0.38889 26651|0.5 26652|0.5 26653|0.5 26654|0.51389 26655|0.81944 26656|0.11111 26657|0.66667 26658|0.59722 26659|0.76389 26660|0.5 26661|0.5 26662|0.22222 26663|0.5 26664|0.72222 26665|0.43056 26666|0.13889 26667|0.48611 26668|0.41667 26669|0.5 26670|0.72222 26671|0.61111 26672|0.5 26673|0.875 26674|0.68056 26675|0.5 26676|0.19444 26677|0.52778 26678|0.66667 26679|0.65278 26680|0.41667 26681|0.65278 26682|0.45833 26683|0.73611 26684|0.5 26685|0.86111 26686|0.68056 26687|0.5 26688|0.45833 26689|0.5 26690|0.63889 26691|0.5 26692|0.75 26693|0.47222 26694|0.72222 26695|0.5 26696|0.56944 26697|0.76389 26698|0.5 26699|0.5 26700|0.44444 26701|0.55556 26702|0.70833 26703|0.90278 26704|0.5 26705|0.84722 26706|0.5 26707|0.90278 26708|0.38889 26709|0.55556 26710|0.56944 26711|0.5 26712|0.79167 26713|0.84722 26714|0.76389 26715|0.5 26716|0.5 26717|0.51389 26718|0.47222 26719|0.5 26720|0.5 26721|0.5 26722|0.5 26723|0.52778 26724|0.56944 26725|0.83333 26726|0.5 26727|0.52778 26728|0.5 26729|0.80556 26730|0.70833 26731|0.93056 26732|0.5 26733|0.68056 26734|0.65278 26735|0.77778 26736|0.44444 26737|0.5 26738|0.84722 26739|0.73611 26740|0.5 26741|0.41667 26742|0.55556 26743|0.44444 26744|0.95833 26745|0.5 26746|0.5 26747|0.73611 26748|0.61111 26749|0.86111 26750|0.5 26751|0.51389 26752|0.90278 26753|0.90278 26754|0.91667 26755|0.5 26756|0.83333 26757|0.55556 26758|0.5 26759|0.5 26760|0.5 26761|0.5 26762|0.625 26763|0.65278 26764|0.66667 26765|0.94792 26766|0.83333 26767|0.84722 26768|0.73611 26769|0.63889 26770|0.52778 26771|0.76389 26772|0.5 26773|0.94444 26774|0.52778 26775|0.88889 26776|0.80556 26777|0.72222 26778|0.77778 26779|0.45833 26780|0.55556 26781|0.52778 26782|0.55556 26783|0.5 26784|0.80556 26785|0.5 26786|0.375 26787|0.55556 26788|0.55556 26789|0.375 26790|0.66667 26791|0.5 26792|0.875 26793|0.83333 26794|0.55556 26795|0.27778 26796|0.5 26797|1 26798|0.56944 26799|0.70833 26800|0.84722 26801|0.76389 26802|0.63889 26803|0.33333 26804|0.59722 26805|0.59722 26806|0.875 26807|0.70833 26808|0.86111 26809|0.80556 26810|0.77778 26811|0.91667 26812|0.59722 26813|0.79167 26814|0.36111 26815|0.80556 26816|0.73611 26817|0.81944 26818|0.76389 26819|0.97222 26820|0.70833 26821|0.55556 26822|0.77778 26823|0.91667 26824|0.72222 26825|0.79167 26826|0.88889 26827|0.44444 26828|0.79167 26829|0.5 26830|0.79167 26831|0.5 26832|0.76389 26833|0.68056 26834|0.68056 26835|0.52778 26836|0.55556 26837|0.65278 26838|0.625 26839|0.88889 26840|0.40278 26841|0.38889 26842|0.56944 26843|0.53125 26844|0.68056 26845|0.76389 26846|0.5 26847|0.66667 26848|0.875 26849|0.80556 26850|0.68056 26851|0.95833 26852|0.66667 26853|0.84722 26854|0.77778 26855|0.73611 26856|0.75 26857|0.69444 26858|0.56944 26859|0.81944 26860|0.59722 26861|0.55556 26862|0.77778 26863|0.55556 26864|0.80556 26865|1 26866|0.83333 26867|0.44444 26868|0.76389 26869|0.55556 26870|0.90278 26871|0.875 26872|0.58333 26873|0.66667 26874|0.77778 26875|0.55556 26876|0.5 26877|0.97222 26878|0.5 26879|0.5 26880|0.45833 26881|0.97222 26882|0.63889 26883|0.54167 26884|0.875 26885|0.56944 26886|0.66667 26887|0.48611 26888|0.69444 26889|0.5 26890|0.58333 26891|0.75 26892|0.44792 26893|0.55556 26894|0.69444 26895|0.26389 26896|0.61111 26897|0.25 26898|0.5 26899|0.5 26900|0.875 26901|0.66667 26902|0.61111 26903|0.90278 26904|0.72222 26905|0.83333 26906|0.5 26907|0.77778 26908|0.68056 26909|0.59722 26910|0.58333 26911|0.61111 26912|0.44444 26913|0.84722 26914|0.55556 26915|0.55556 26916|0.61111 26917|0.48611 26918|0.33333 26919|0.59722 26920|0.51389 26921|0.61111 26922|0.55556 26923|0.68056 26924|0.69444 26925|0.76389 26926|0.52778 26927|0.68056 26928|0.80556 26929|0.875 26930|0.125 26931|0.30556 26932|0.52778 26933|0.5 26934|0.33333 26935|0.69444 26936|0.5 26937|0.80556 26938|0.75 26939|0.48611 26940|0.76389 26941|0.88889 26942|0.33333 26943|0.73611 26944|0.5 26945|0.93056 26946|0.58333 26947|0.5 26948|0.79167 26949|0.20833 26950|0.19444 26951|0.70833 26952|0.75 26953|0.38889 26954|0.44444 26955|0.5 26956|0.66667 26957|0.70833 26958|0.83333 26959|0.75 26960|0.52778 26961|0.5 26962|0.86111 26963|0.5 26964|0.38889 26965|0.27778 26966|0.73611 26967|0.40278 26968|0.86111 26969|0.88889 26970|0.55556 26971|0.44444 26972|0.73611 26973|0.68056 26974|0.77778 26975|0.68056 26976|0.66667 26977|0.90278 26978|0.5 26979|0.58333 26980|0.90278 26981|0.81944 26982|0.66667 26983|0.75 26984|0.63889 26985|0.81944 26986|0.84722 26987|0.77778 26988|0.86111 26989|0.55556 26990|0.88542 26991|0.48611 26992|0.75 26993|0.33333 26994|0.88889 26995|0.94444 26996|0.90278 26997|0.34722 26998|0.55556 26999|0.76389 27000|0.66667 27001|0.55556 27002|0.75 27003|0.36111 27004|0.55556 27005|0.66667 27006|0.86111 27007|0.68056 27008|0.66667 27009|0.72222 27010|0.51389 27011|0.68056 27012|0.5 27013|0.5 27014|0.34722 27015|0.5 27016|0.27778 27017|0.625 27018|0.66667 27019|0.95833 27020|0.79167 27021|0.88889 27022|0.76389 27023|0.63889 27024|0.38889 27025|0.70833 27026|0.30556 27027|0.61111 27028|0.44444 27029|0.75 27030|0.41667 27031|0.45833 27032|0.55556 27033|0.84722 27034|0.75 27035|0.77778 27036|0.875 27037|0.83333 27038|0.88889 27039|0.77778 27040|0.65278 27041|0.81944 27042|0.83333 27043|0.88889 27044|0.5 27045|0.72222 27046|0.88889 27047|0.65278 27048|0.5 27049|0.875 27050|0.5 27051|0.65278 27052|0.65278 27053|0.5 27054|0.30556 27055|0.36111 27056|0.65278 27057|0.5 27058|0.73611 27059|0.33333 27060|0.41667 27061|0.5 27062|0.5 27063|0.5 27064|0.54167 27065|0.5 27066|0.79167 27067|0.5 27068|0.5 27069|0.51389 27070|0.5 27071|0.5 27072|0.68056 27073|0.72222 27074|0.59722 27075|0.76389 27076|0.75 27077|0.5 27078|0.83333 27079|0.81944 27080|0.5 27081|0.51389 27082|0.5 27083|0.77778 27084|0.5 27085|0.5 27086|0.54167 27087|0.5 27088|0.69444 27089|0.75 27090|0.83333 27091|0.5 27092|0.83333 27093|0.5 27094|0.55556 27095|0.45833 27096|0.51389 27097|0.5 27098|0.88889 27099|0.75 27100|0.5 27101|0.11111 27102|0.5 27103|0.5 27104|0.73611 27105|0.76389 27106|0.72222 27107|0.26389 27108|0.41667 27109|0.65278 27110|0.70833 27111|0.61111 27112|0.81944 27113|0.5 27114|0.69444 27115|0.80556 27116|0.5 27117|0.5 27118|0.44444 27119|0.5 27120|0.5 27121|0.5 27122|0.51389 27123|0.76389 27124|0.48611 27125|0.5 27126|0.5 27127|0.5 27128|0.5 27129|0.79167 27130|0.5 27131|0.5 27132|0.61111 27133|0.73611 27134|0.84722 27135|0.90278 27136|0.66667 27137|0.79167 27138|0.33333 27139|0.625 27140|0.5 27141|0.44444 27142|0.5 27143|0.5 27144|0.5 27145|0.625 27146|0.36111 27147|0.5 27148|0.68056 27149|0.5 27150|0.83333 27151|0.5 27152|0.5 27153|0.33333 27154|0.40278 27155|0.5 27156|0.55556 27157|0.22222 27158|0.5 27159|0.5 27160|0.75 27161|0.44444 27162|0.44444 27163|0.73611 27164|0.51389 27165|0.75 27166|0.51389 27167|0.61111 27168|0.625 27169|0.5 27170|0.5 27171|0.5 27172|0.5 27173|0.55556 27174|0.5 27175|0.56944 27176|0.48611 27177|0.55556 27178|0.44444 27179|1 27180|0.81944 27181|0.5 27182|0.5 27183|0.72222 27184|0.5 27185|0.68056 27186|0.5 27187|0.65278 27188|0.54167 27189|0.375 27190|0.75 27191|0.69444 27192|0.5 27193|0.5 27194|0.72222 27195|0.66667 27196|0.70833 27197|0.45833 27198|0.79167 27199|0.23611 27200|0.66667 27201|0.52778 27202|0.65278 27203|0.33333 27204|0.75 27205|0.5 27206|0.52778 27207|0.68056 27208|0.77778 27209|0.77778 27210|0.36111 27211|0.54167 27212|0.38889 27213|0.47222 27214|0.55556 27215|0.51389 27216|0.875 27217|0.56944 27218|0.79167 27219|0.45833 27220|0.625 27221|0.69444 27222|0.77778 27223|0.77778 27224|0.33333 27225|0.59722 27226|0.5 27227|0.90278 27228|0.54167 27229|0.59722 27230|0.5 27231|0.68056 27232|0.65278 27233|0.77778 27234|0.63889 27235|0.86111 27236|0.5 27237|0.5 27238|0.5 27239|0.43056 27240|0.63889 27241|0.80556 27242|0.5 27243|0.79167 27244|0.75 27245|0.5 27246|0.5 27247|0.5 27248|0.58333 27249|0.75 27250|0.625 27251|0.93056 27252|0.625 27253|0.73611 27254|0.61111 27255|0.5 27256|0.54167 27257|0.5 27258|0.83333 27259|0.41667 27260|0.5 27261|0.5 27262|0.59722 27263|0.73611 27264|0.5 27265|0.5 27266|0.65278 27267|0.44444 27268|0.80556 27269|0.5 27270|0.75 27271|0.77778 27272|0.5 27273|0.76389 27274|0.61111 27275|0.81944 27276|0.79167 27277|0.5625 27278|0.5 27279|0.38889 27280|0.27778 27281|0.66667 27282|0.5 27283|0.59722 27284|0.5 27285|0.5 27286|0.5 27287|0.81944 27288|0.5 27289|0.5 27290|0.83333 27291|0.83333 27292|0.66667 27293|0.55556 27294|0.86111 27295|0.5 27296|0.83333 27297|0.59722 27298|0.625 27299|0.5 27300|0.73611 27301|0.65278 27302|0.36111 27303|0.63889 27304|0.61111 27305|0.20833 27306|0.51389 27307|0.26389 27308|0.66667 27309|0.66667 27310|0.75 27311|0.5 27312|0.5 27313|0.5 27314|0.5 27315|0.5 27316|0.5 27317|0.5 27318|0.79167 27319|0.55556 27320|0.5 27321|0.76389 27322|0.5 27323|0.52778 27324|0.5 27325|0.30556 27326|0.5 27327|0.88889 27328|0.45833 27329|0.55556 27330|0.27778 27331|0.5 27332|0.5 27333|0.51389 27334|0.65278 27335|0.44444 27336|0.75 27337|0.5 27338|0.38889 27339|0.48611 27340|0.69444 27341|0.5 27342|0.5 27343|0.61111 27344|0.68056 27345|0.5 27346|0.5 27347|0.43056 27348|0.625 27349|0.33333 27350|0.51389 27351|0.54167 27352|0.65278 27353|0.51389 27354|0.79167 27355|0.5 27356|0.48958 27357|0.93056 27358|0.27778 27359|0.20833 27360|0.5 27361|0.625 27362|0.22222 27363|0.25 27364|0.19444 27365|0.17708 27366|0.81944 27367|0.68056 27368|0.5 27369|0.47222 27370|0.73611 27371|0.70833 27372|0.22222 27373|0.68056 27374|0.44444 27375|0.61111 27376|0.75 27377|0.29167 27378|0.44444 27379|0.75 27380|0.63889 27381|0.26389 27382|0.25 27383|0.70833 27384|0.70833 27385|0.73611 27386|0.55556 27387|0.63889 27388|0.73611 27389|0.55556 27390|0.5 27391|0.55556 27392|0.5 27393|0.66667 27394|0.61111 27395|0.59722 27396|0.58333 27397|0.65278 27398|0.80556 27399|0.44444 27400|0.56944 27401|0.80556 27402|0.5 27403|0.5 27404|0.52778 27405|0.5 27406|0.72222 27407|0.58333 27408|0.5 27409|0.52778 27410|0.61111 27411|0.44444 27412|0.69444 27413|0.72222 27414|0.83333 27415|0.68056 27416|0.5 27417|0.44444 27418|0.52778 27419|0.55556 27420|0.75 27421|0.69444 27422|0.68056 27423|0.69444 27424|0.73611 27425|0.65278 27426|0.58333 27427|0.5 27428|0.55556 27429|0.63889 27430|0.70833 27431|0.76389 27432|0.73611 27433|0.56944 27434|0.75 27435|0.80556 27436|0.56944 27437|0.41667 27438|0.63889 27439|0.5 27440|0.72222 27441|0.84722 27442|0.70833 27443|0.91667 27444|0.77778 27445|0.73611 27446|0.77778 27447|0.625 27448|0.75 27449|0.72222 27450|0.29167 27451|0.59722 27452|0.66667 27453|0.38889 27454|0.5 27455|0.45833 27456|0.625 27457|0.56944 27458|0.58333 27459|0.16667 27460|0.38889 27461|0.66667 27462|0.875 27463|0.75 27464|0.5 27465|0.72222 27466|0.77778 27467|0.94444 27468|0.76042 27469|0.88889 27470|0.5 27471|0.47222 27472|0.81944 27473|0.88889 27474|0.61111 27475|0.48611 27476|0.66667 27477|0.55556 27478|0.625 27479|0.73611 27480|0.5 27481|0.65278 27482|0.52778 27483|0.69444 27484|0.66667 27485|0.38889 27486|0.34722 27487|0.63889 27488|0.55556 27489|0.5 27490|0.51389 27491|0.66667 27492|0.5 27493|0.54167 27494|0.5 27495|0.61111 27496|0.54167 27497|0.83333 27498|0.76389 27499|0.86111 27500|0.83333 27501|0.77778 27502|0.83333 27503|0.72222 27504|0.72222 27505|0.61111 27506|0.98611 27507|0.58333 27508|0.5 27509|0.61111 27510|0.70833 27511|0.61111 27512|0.5 27513|0.26389 27514|0.55556 27515|0.75 27516|0.5 27517|0.625 27518|0.5 27519|0.80556 27520|0.86111 27521|0 27522|0.84722 27523|0.84722 27524|0.5 27525|0.26389 27526|0.83333 27527|0.72222 27528|0.77778 27529|0.75 27530|0.55556 27531|0.55556 27532|0.39583 27533|0.5 27534|0.55556 27535|0.75 27536|0.69444 27537|0.63889 27538|0.54167 27539|0.69444 27540|0.65278 27541|0.76389 27542|0.63889 27543|0.88889 27544|0.625 27545|0.40278 27546|0.54167 27547|0.88889 27548|0.91667 27549|0.72222 27550|0.93056 27551|0.54167 27552|0.72222 27553|0.77778 27554|0.85417 27555|0.72222 27556|0.75 27557|0.90278 27558|0.79167 27559|0.83333 27560|0.80556 27561|0.73611 27562|0.72222 27563|0.77778 27564|0.83333 27565|0.77778 27566|0.81944 27567|0.70833 27568|0.73611 27569|0.38889 27570|0.38889 27571|0.41667 27572|0.5 27573|0.66667 27574|0.77778 27575|0.69444 27576|0.75 27577|0.73611 27578|0.55556 27579|0.36111 27580|0.5 27581|0.65278 27582|0.52778 27583|0.69444 27584|0.66667 27585|0.84722 27586|0.63889 27587|0.58333 27588|0.66667 27589|0.44444 27590|0.52778 27591|0.66667 27592|0.69444 27593|0.70833 27594|0.76389 27595|0.5 27596|0.66667 27597|0.31944 27598|0.61111 27599|0.79167 27600|0.69444 27601|0.55556 27602|0.47222 27603|0.81944 27604|0.93056 27605|0.91667 27606|0.77778 27607|0.5 27608|0.65278 27609|0.75 27610|0.76042 27611|0.65278 27612|0.90278 27613|0.81944 27614|0.45833 27615|0.72222 27616|0.61111 27617|0.58333 27618|0.5 27619|0.63889 27620|0.73611 27621|0.40278 27622|0.41667 27623|0.5 27624|0.69444 27625|0.375 27626|0.40278 27627|0.65278 27628|0.63889 27629|0.70833 27630|0.56944 27631|0.77778 27632|0.69444 27633|0.375 27634|0.19444 27635|0.5 27636|0.29167 27637|0.41667 27638|0.55556 27639|0.80556 27640|0.47222 27641|0.58333 27642|0.76389 27643|0.65278 27644|0.80556 27645|0.81944 27646|0.66667 27647|0.90625 27648|0.73611 27649|0.81944 27650|0.5 27651|0.33333 27652|0.31944 27653|0.5 27654|0.33333 27655|0.5 27656|0.40278 27657|0.88889 27658|0.72222 27659|0.54167 27660|0.59722 27661|0.72222 27662|0.76389 27663|0.94444 27664|0.94444 27665|0.86111 27666|0.54167 27667|0.5 27668|0.5 27669|0.26389 27670|0.47222 27671|0.875 27672|0.86111 27673|0.66667 27674|0.65278 27675|0.5 27676|0.5 27677|0.5 27678|0.66667 27679|0.51389 27680|0.58333 27681|0.72222 27682|0.83333 27683|0.75 27684|0.83333 27685|0.5 27686|0.61111 27687|0.31944 27688|0.69444 27689|0.75 27690|0.65278 27691|0.70833 27692|0.77778 27693|0.73611 27694|0.69444 27695|0.5 27696|0.81944 27697|0.72222 27698|0.625 27699|0.47222 27700|0.95833 27701|0.97222 27702|0.76389 27703|0.58333 27704|0.51389 27705|0.81944 27706|0.63889 27707|0.66667 27708|0.69444 27709|0.86111 27710|0.79167 27711|0.65278 27712|0.43056 27713|0.5 27714|0.5 27715|0.5 27716|0.5 27717|0.41667 27718|0.73611 27719|0.88889 27720|0.59722 27721|0.80556 27722|0.83333 27723|0.61111 27724|0.75 27725|0.5 27726|0.56944 27727|0.5 27728|0.5 27729|0.59722 27730|0.5 27731|0.875 27732|0.80556 27733|0.77778 27734|0.66667 27735|0.29167 27736|0.84375 27737|0.66667 27738|0.72222 27739|0.55556 27740|0.70833 27741|0.68056 27742|0.72917 27743|0.77778 27744|0.80556 27745|0.76389 27746|0.68056 27747|0.58333 27748|0.56944 27749|0.63889 27750|0.75 27751|0.88889 27752|0.51389 27753|0.95833 27754|0.77778 27755|0.77778 27756|0.875 27757|0.65278 27758|0.83333 27759|0.83333 27760|0.66667 27761|0.63889 27762|0.76389 27763|0.68056 27764|0.69444 27765|0.76389 27766|0.38889 27767|0.60417 27768|0.66667 27769|0.63542 27770|0.79167 27771|0.79167 27772|0.86111 27773|0.68056 27774|0.80556 27775|0.86111 27776|0.44444 27777|0.27778 27778|0.29167 27779|0.83333 27780|0.88889 27781|0.55556 27782|0.77778 27783|0.83333 27784|0.68056 27785|0.5 27786|0.51389 27787|0.76389 27788|0.65278 27789|0.625 27790|0.68056 27791|0.61111 27792|0.43056 27793|0.31944 27794|0.81944 27795|0.65278 27796|0.875 27797|0.79167 27798|0.16667 27799|0.5 27800|0.86111 27801|0.76389 27802|0.81944 27803|0.61111 27804|0.65278 27805|0.81944 27806|0.88889 27807|0.5 27808|0.73611 27809|0.5 27810|0.5 27811|0.66667 27812|0.69444 27813|0.73611 27814|0.52778 27815|0.69444 27816|0.79167 27817|0.66667 27818|0.80556 27819|0.875 27820|0.79167 27821|0.65278 27822|0.45833 27823|0.44444 27824|0.86111 27825|0.48611 27826|0.29167 27827|0.36111 27828|0.83333 27829|0.86111 27830|0.63889 27831|0.88889 27832|0.48611 27833|0.72222 27834|0.69444 27835|0.51389 27836|0.63889 27837|0.59722 27838|0.65278 27839|0.47222 27840|0.55556 27841|0.66667 27842|0.72222 27843|0.77778 27844|0.55556 27845|0.65278 27846|0.45833 27847|1 27848|0.84722 27849|0.63542 27850|0.59722 27851|0.5 27852|0.61111 27853|0.79167 27854|0.77778 27855|0.94444 27856|0.5 27857|0.77083 27858|0.68056 27859|0.61111 27860|0.91667 27861|0.40278 27862|0.73611 27863|0.66667 27864|0.69444 27865|0.88889 27866|0.40278 27867|0.56944 27868|0.70833 27869|0.91667 27870|0.86111 27871|0.81944 27872|0.81944 27873|0.5 27874|0.5 27875|0.54167 27876|0.84722 27877|0.66667 27878|0.70833 27879|0.73611 27880|0.84722 27881|0.73611 27882|0.88889 27883|0.66667 27884|0.66667 27885|0.72222 27886|0.77778 27887|0.66667 27888|0.5 27889|0.61111 27890|0.25 27891|0.83333 27892|0.90278 27893|0.91667 27894|0.86111 27895|0.91667 27896|0.5 27897|0.70833 27898|0.59722 27899|0.625 27900|0.625 27901|0.69444 27902|0.61111 27903|0.36111 27904|0.375 27905|0.86111 27906|0.75 27907|0.70833 27908|0.75 27909|0.5 27910|0.58333 27911|0.80556 27912|0.51389 27913|0.19444 27914|0.30556 27915|0.70833 27916|0.375 27917|0.76389 27918|0.66667 27919|0.72222 27920|0.44444 27921|0.84722 27922|0.72222 27923|0.68056 27924|0.41667 27925|0.51389 27926|0.61111 27927|0.875 27928|0.40278 27929|0.93056 27930|0.73611 27931|0.75 27932|0.52778 27933|0.55556 27934|0.61111 27935|0.75 27936|0.77778 27937|0.76389 27938|0.83333 27939|0.36111 27940|0.58333 27941|0.66667 27942|0.84722 27943|0.81944 27944|0.59722 27945|0.65278 27946|0.77778 27947|0.84722 27948|0.79167 27949|0.72222 27950|0.83333 27951|0.16667 27952|0.26389 27953|0 27954|0.54167 27955|0.61111 27956|0.77778 27957|0.83333 27958|0.65278 27959|0.27778 27960|0.90278 27961|0.83333 27962|0.81944 27963|0.77778 27964|0.91667 27965|0.78125 27966|0.81944 27967|0.84722 27968|1 27969|0.83333 27970|0.83333 27971|0.97222 27972|0.5 27973|0.58333 27974|0.5 27975|0.81944 27976|0.68056 27977|0.80556 27978|0.84722 27979|0.65278 27980|0.84722 27981|0.76389 27982|0.65278 27983|0.5 27984|0.5 27985|0.23611 27986|0.5 27987|0.51389 27988|0.72222 27989|0.68056 27990|0.56944 27991|0.5 27992|0.61111 27993|0.70833 27994|0.66667 27995|0.59722 27996|0.5 27997|0.5 27998|0.5 27999|0.63889 28000|0.65278 28001|0.70833 28002|0.5 28003|0.63889 28004|0.51389 28005|0.59722 28006|0.88889 28007|0.5 28008|0.5 28009|0.63889 28010|0.5 28011|0.5 28012|0.5 28013|0.77778 28014|0.5 28015|0.63889 28016|0.5 28017|0.55556 28018|0.52778 28019|0.51389 28020|0.55556 28021|0.76389 28022|0.69444 28023|0.5 28024|0.5 28025|0.55556 28026|0.41667 28027|0.5 28028|0.59722 28029|0.75 28030|0.72222 28031|0.375 28032|0.51389 28033|0.5 28034|0.55556 28035|0.52778 28036|0.41667 28037|0.5 28038|0.51389 28039|0.84722 28040|0.5 28041|0.56944 28042|0.625 28043|0.5 28044|0.5 28045|0.45833 28046|0.68056 28047|0.5 28048|0.63889 28049|0.65278 28050|0.5 28051|0.66667 28052|0.625 28053|0.75 28054|0.54167 28055|0.83333 28056|0.73611 28057|0.72222 28058|0.76389 28059|0.77778 28060|0.875 28061|0.56944 28062|0.34722 28063|0.625 28064|0.5 28065|0.41667 28066|0.26389 28067|0.5 28068|0.55208 28069|0.69444 28070|0.73611 28071|0.69444 28072|0.77778 28073|0.69444 28074|0.875 28075|0.75 28076|0.5 28077|0.86111 28078|0.84722 28079|0.83333 28080|0.76389 28081|0.66667 28082|0.40278 28083|0.5 28084|0.45833 28085|0.5 28086|0.5 28087|0.79167 28088|0.80556 28089|0.68056 28090|0.72222 28091|0.5 28092|0.5 28093|0.76389 28094|0.27778 28095|0.52778 28096|0.48611 28097|0.5 28098|0.65278 28099|0.5 28100|0.84722 28101|0.5 28102|0.5 28103|0.5 28104|0.5 28105|0.75 28106|0.55556 28107|0.54167 28108|0.81944 28109|0.56944 28110|0.69444 28111|0.59722 28112|0.55556 28113|0.5 28114|0.5 28115|0.88889 28116|0.65278 28117|0.625 28118|0.5 28119|0.61111 28120|0.86111 28121|0.5 28122|0.79167 28123|0.83333 28124|0.5 28125|0.79167 28126|0.80556 28127|0.76389 28128|0.5 28129|0.18056 28130|0.55556 28131|0.81944 28132|0.73611 28133|0.55556 28134|0.80556 28135|0.5 28136|0.73611 28137|0.55556 28138|0.52778 28139|0.52083 28140|0.48611 28141|0.083333 28142|0.5 28143|0.61111 28144|0.625 28145|0.70833 28146|0.625 28147|0.61111 28148|0.38889 28149|0.58333 28150|0.77778 28151|0.41667 28152|0.72222 28153|0.55556 28154|0.52778 28155|0.77778 28156|0.40278 28157|0.5 28158|0.59722 28159|0.45833 28160|0.59722 28161|0.22222 28162|0.44444 28163|0.5 28164|0.27778 28165|0.44444 28166|0.375 28167|0.38889 28168|0.5 28169|0.65278 28170|0.19444 28171|0.47222 28172|0.48958 28173|0.52778 28174|0.5 28175|0.63889 28176|0.61111 28177|0.5 28178|0.5 28179|0.5 28180|0.73611 28181|0.5 28182|0.5 28183|0.63889 28184|0.5 28185|0.55556 28186|0.86111 28187|0.5 28188|0.5 28189|0.63889 28190|0.77778 28191|0.5 28192|0.44444 28193|0.61111 28194|0.5 28195|0.26389 28196|0.58333 28197|0.52778 28198|0.66667 28199|0.58333 28200|0.90278 28201|0.56944 28202|0.76389 28203|0.375 28204|0.5 28205|0.58333 28206|0.51389 28207|0.58333 28208|0.625 28209|0.5 28210|0.5 28211|0.33333 28212|0.5 28213|0.44444 28214|0.5 28215|0.61111 28216|0.61111 28217|0.58333 28218|0.65278 28219|0.68056 28220|0.68056 28221|0.5 28222|0.55556 28223|0.875 28224|0.56944 28225|0.5 28226|0.73611 28227|0.375 28228|0.875 28229|0.86111 28230|0.76389 28231|0.63889 28232|0.61111 28233|0.5 28234|0.85417 28235|0.5 28236|0.5 28237|0.5 28238|0.5 28239|0.81944 28240|0.76389 28241|0.79167 28242|0.66667 28243|0.69444 28244|0.80556 28245|0.26389 28246|0.84722 28247|0.5 28248|0.61111 28249|0.55556 28250|0.58333 28251|0.52778 28252|0.75 28253|0.75 28254|0.75 28255|0.88889 28256|0.55556 28257|0.69444 28258|0.76389 28259|0.59722 28260|0.56944 28261|0.65278 28262|0.5 28263|0.52778 28264|0.58333 28265|0.43056 28266|0.25 28267|0.72222 28268|0.72222 28269|0.81944 28270|0.83333 28271|0.65625 28272|0.72222 28273|0.68056 28274|0.22222 28275|0.5 28276|0.5 28277|0.75 28278|0.5 28279|0.83333 28280|0.5 28281|0.80556 28282|0.58333 28283|0.48611 28284|0.66667 28285|0.55556 28286|0.98611 28287|0.86111 28288|0.5 28289|0.5 28290|0.70833 28291|0.86111 28292|0.69444 28293|0.69444 28294|0.69444 28295|0.875 28296|0.80556 28297|0.83333 28298|0.66667 28299|0.63889 28300|0.5 28301|0.5 28302|0.55208 28303|0.63889 28304|0.70833 28305|0.75 28306|0.36111 28307|0.66667 28308|0.5 28309|0.77778 28310|0.73611 28311|0.5 28312|0.16667 28313|0.55556 28314|0.66667 28315|0.55556 28316|0.54167 28317|0.48611 28318|0.69444 28319|0.63889 28320|0.54167 28321|0.73611 28322|0.93056 28323|0.5 28324|0.65278 28325|0.61111 28326|0.72222 28327|0.68056 28328|0.5 28329|0.63889 28330|0.65278 28331|0.65278 28332|0.55556 28333|0.38889 28334|0.66667 28335|0.84722 28336|0.84722 28337|0.76389 28338|0.76389 28339|0.83333 28340|0.81944 28341|0.73611 28342|0.5 28343|0.86111 28344|0.5 28345|0.44444 28346|0.59722 28347|0.66667 28348|0.5 28349|0.66667 28350|0.625 28351|0.5 28352|0.58333 28353|0.5 28354|0.73611 28355|0.72222 28356|0.84722 28357|0.93056 28358|0.5 28359|0.59722 28360|0.79167 28361|0.59722 28362|0.84722 28363|0.61111 28364|0.73611 28365|0.65278 28366|0.72222 28367|0.77778 28368|0.77778 28369|0.5 28370|0.33333 28371|0.44444 28372|0.36111 28373|0.375 28374|0.61111 28375|0.58333 28376|0.65278 28377|0.75 28378|0.69444 28379|0.73611 28380|0.66667 28381|0.83333 28382|0.80556 28383|0.5 28384|0.83333 28385|0.75 28386|0.38889 28387|0.55556 28388|0.58333 28389|0.44444 28390|0.5 28391|0.59722 28392|0.5 28393|0.80556 28394|0.58333 28395|0.70833 28396|0.75 28397|0.61111 28398|0.875 28399|0.38889 28400|0.23611 28401|0.51389 28402|0.73611 28403|0.63889 28404|0.61111 28405|0.76389 28406|0.63889 28407|0.72222 28408|0.69444 28409|0.51389 28410|0.72222 28411|0.66667 28412|0.80556 28413|0.34722 28414|0.22222 28415|0.55556 28416|0.59722 28417|0.47222 28418|0.625 28419|0.44444 28420|0.48611 28421|0.48611 28422|0.61111 28423|0.45833 28424|0.84722 28425|0.44444 28426|0.45833 28427|0.51389 28428|0.61111 28429|0.5 28430|0.5 28431|0.48611 28432|0.65278 28433|0.5 28434|0.5 28435|0.81944 28436|0.5 28437|0.38889 28438|0.68056 28439|0.84722 28440|0.63889 28441|0.5 28442|0.56944 28443|0.5 28444|0.79167 28445|0.54167 28446|0.5 28447|0.5 28448|0.5 28449|0.54167 28450|0.88889 28451|0.5 28452|0.5 28453|0.5 28454|0.90278 28455|0.75 28456|0.5 28457|0.77778 28458|0.5 28459|0.54167 28460|0.55556 28461|0.5 28462|0.5 28463|0.63889 28464|0.5 28465|0.25 28466|0.5 28467|0.5 28468|0.80556 28469|0.5 28470|0.5 28471|0.48611 28472|0.58333 28473|0.5 28474|0.55556 28475|0.52778 28476|0.84722 28477|0.94444 28478|0.75 28479|0.625 28480|0.58333 28481|0.36111 28482|0.47222 28483|0.63889 28484|0.44444 28485|0.5 28486|0.26389 28487|0.61111 28488|0.80556 28489|0.625 28490|0.72222 28491|0.51389 28492|0.47222 28493|0.55556 28494|0.70833 28495|0.55556 28496|0.51389 28497|0.79167 28498|0.5 28499|0.61111 28500|0.63889 28501|0.58333 28502|0.63889 28503|0.70833 28504|0.72222 28505|0.66667 28506|0.70833 28507|0.875 28508|0.48611 28509|0.59722 28510|0.5 28511|0.30556 28512|0.77778 28513|0.54167 28514|0.73611 28515|0.68056 28516|0.81944 28517|0.72222 28518|0.5 28519|0.52778 28520|0.69444 28521|0.77778 28522|0.81944 28523|0.86458 28524|0.83333 28525|0.625 28526|0.69444 28527|0.38889 28528|0.79167 28529|0.8125 28530|0.93056 28531|0.5 28532|0.52778 28533|0.56944 28534|0.77778 28535|0.66667 28536|0.76389 28537|0.69444 28538|0.86111 28539|0.54167 28540|0.52778 28541|0.45833 28542|0.55556 28543|0.26389 28544|0.59722 28545|0.58333 28546|0.61111 28547|0.5 28548|0.79167 28549|0.54167 28550|0.55556 28551|0.44444 28552|0.34722 28553|0.75 28554|0.65278 28555|0.77778 28556|0.25 28557|0.5 28558|0.66667 28559|0.5 28560|0.5 28561|0.47222 28562|0.72222 28563|0.72222 28564|0.25 28565|0.55556 28566|0.27778 28567|0.55556 28568|0.59722 28569|0.56944 28570|0.52778 28571|0.56944 28572|0.5 28573|0.16667 28574|0.55556 28575|0.44444 28576|0.5 28577|0.5 28578|0.29167 28579|0.36111 28580|0.375 28581|0.70833 28582|0.5 28583|0.33333 28584|0.59722 28585|0.51389 28586|0.73611 28587|0.76389 28588|0.77778 28589|0.69444 28590|0.76389 28591|0.73611 28592|0.77778 28593|0.65278 28594|0.65278 28595|0.66667 28596|0.63889 28597|0.65278 28598|0.625 28599|0.5 28600|0.83333 28601|0.94444 28602|0.5 28603|0.875 28604|0.5 28605|0.66667 28606|0.63889 28607|0.84722 28608|0.66667 28609|0.76389 28610|0.61111 28611|0.73611 28612|0.54167 28613|0.5 28614|0.40278 28615|0.54167 28616|0.73611 28617|0.83333 28618|0.76389 28619|0.72222 28620|0.5 28621|0.45833 28622|0.5 28623|0.65278 28624|0.625 28625|0.61111 28626|0.55556 28627|0.80556 28628|0.68056 28629|0.75 28630|0.70833 28631|0.73611 28632|0.125 28633|0.30556 28634|0.5 28635|0.77778 28636|0.52778 28637|0.76389 28638|0.79167 28639|0.73611 28640|0.72222 28641|0.86111 28642|0.72222 28643|0.83333 28644|0.23611 28645|0.80556 28646|0.51389 28647|0.58333 28648|0.55556 28649|0.55556 28650|0.65278 28651|0.38889 28652|0.58333 28653|0.75 28654|0.5 28655|0.5 28656|0.55556 28657|0.52778 28658|0.5 28659|0.52778 28660|0.45833 28661|0.625 28662|0.81944 28663|0.61111 28664|0.5 28665|0.44444 28666|0.27778 28667|0.81944 28668|0.5 28669|0.5 28670|0.81944 28671|0.63889 28672|0.90278 28673|0.55556 28674|0.5 28675|0.5 28676|0.63889 28677|0.36111 28678|0.66667 28679|0.55556 28680|0.81944 28681|0.56944 28682|0.81944 28683|0.51389 28684|0.5 28685|0.5 28686|0.40278 28687|0.88889 28688|0.5 28689|0.5 28690|0.54167 28691|0.51389 28692|0.66667 28693|0.52778 28694|0.5 28695|0.51389 28696|0.875 28697|0.86111 28698|0.875 28699|0.73611 28700|0.68056 28701|0.75 28702|0.72222 28703|0.55556 28704|0.76389 28705|0.80556 28706|0.72222 28707|0.47222 28708|0.56944 28709|0.56944 28710|0.5 28711|0.66667 28712|0.5 28713|0.51389 28714|0.5 28715|0.65278 28716|0.68056 28717|0.39583 28718|0.5 28719|0.63889 28720|0.72222 28721|0.5 28722|0.33333 28723|0.65278 28724|0.5 28725|0.79167 28726|0.73611 28727|0.73611 28728|0.5 28729|0.51389 28730|0.59722 28731|0.61111 28732|0.80556 28733|0.76389 28734|0.45833 28735|0.48611 28736|0.44444 28737|0.61111 28738|0.56944 28739|0.61111 28740|0.5 28741|0.72222 28742|0.61111 28743|0.55556 28744|0.48611 28745|0.68056 28746|0.44444 28747|0.65278 28748|0.52778 28749|0.56944 28750|0.77778 28751|0.625 28752|0.69444 28753|0.5 28754|0.77778 28755|0.84722 28756|0.54167 28757|0.41667 28758|0.5 28759|0.55556 28760|0.56944 28761|0.76389 28762|0.72222 28763|0.5 28764|0.80556 28765|0.55556 28766|0.36111 28767|0.72222 28768|0.23611 28769|0.68056 28770|0.5 28771|0.5 28772|0.5 28773|0.38889 28774|0.80556 28775|0.58333 28776|0.5 28777|0.56944 28778|0.33333 28779|0.84722 28780|0.5 28781|0.55556 28782|0.34722 28783|0.44444 28784|0.5 28785|0.61111 28786|0.45833 28787|0.56944 28788|0.5 28789|0.77778 28790|0.69444 28791|0.90278 28792|0.68056 28793|0.47222 28794|0.5 28795|0.77778 28796|0.75 28797|0.83333 28798|0.68056 28799|0.5 28800|0.40278 28801|0.72222 28802|0.47222 28803|0.59722 28804|0.77778 28805|0.5 28806|0.72222 28807|0.70833 28808|0.5 28809|0.5 28810|0.93056 28811|0.91667 28812|0.51389 28813|0.88889 28814|0.5 28815|0.77778 28816|0.83333 28817|0.83333 28818|0.72222 28819|0.5 28820|0.75 28821|0.77778 28822|0.86111 28823|0.625 28824|0.80556 28825|0.58333 28826|0.5 28827|0.61111 28828|0.66667 28829|0.5 28830|0.81944 28831|0.70833 28832|0.59722 28833|0.77778 28834|0.75 28835|0.5 28836|0.47222 28837|0.54167 28838|0.36111 28839|0.44444 28840|0.33333 28841|0.5 28842|0.45833 28843|0.61111 28844|0.80556 28845|0.69444 28846|0.94444 28847|0.875 28848|0.56944 28849|0.61111 28850|0.66667 28851|0.65278 28852|0.73611 28853|0.51389 28854|0.73611 28855|0.45833 28856|0.59722 28857|0.45833 28858|0.19444 28859|0.69444 28860|0.55556 28861|0.5 28862|0.72222 28863|0.77778 28864|0.44444 28865|0.65278 28866|0.83333 28867|0.90278 28868|0.79167 28869|0.5 28870|0.73611 28871|0.81944 28872|0.81944 28873|0.25 28874|0.5 28875|0.61111 28876|0.5 28877|0.59722 28878|0.38889 28879|0.69444 28880|0.65278 28881|0.5 28882|0.375 28883|0.5 28884|0.75 28885|0.27778 28886|0.47222 28887|0.31944 28888|0.63889 28889|0.27778 28890|0.52778 28891|0.22222 28892|0.65278 28893|0.48611 28894|0.51389 28895|0.56944 28896|0.5 28897|0.375 28898|0.68056 28899|0.36111 28900|0.5 28901|0.69444 28902|0.77778 28903|0.43056 28904|0.5625 28905|0.72917 28906|0.52778 28907|0.83333 28908|0.66667 28909|0.72222 28910|0.73611 28911|0.875 28912|0.81944 28913|0.72222 28914|0.47222 28915|0.65278 28916|0.83333 28917|0.75 28918|0.38889 28919|0.48611 28920|0.36111 28921|0.79167 28922|0.5 28923|0.83333 28924|0.125 28925|0.54167 28926|0.26389 28927|0.44444 28928|0.47222 28929|0.375 28930|0.5 28931|0.54167 28932|0.56944 28933|0.5 28934|0.63889 28935|0.83333 28936|0.59722 28937|0.55556 28938|0.77778 28939|0.61111 28940|0.47222 28941|0.83333 28942|0.5 28943|0.52778 28944|0.41667 28945|0.34722 28946|0.125 28947|0.66667 28948|0.61111 28949|0.66667 28950|0.65278 28951|0.36111 28952|0.47222 28953|0.13889 28954|0.36111 28955|0.41667 28956|0.55556 28957|0.58333 28958|0.51389 28959|0.5 28960|0.63889 28961|0.76389 28962|0.5 28963|0.63889 28964|0.5 28965|0.5 28966|0.58333 28967|0.63889 28968|0.94444 28969|0.5 28970|0.5 28971|0.66667 28972|0.5 28973|0.27778 28974|0.5 28975|0.5 28976|0.58333 28977|0.41667 28978|0.66667 28979|0.70833 28980|0.5 28981|0.81944 28982|0.5 28983|0.69444 28984|0.5 28985|0.83333 28986|0.40278 28987|0.5 28988|0.52778 28989|0.83333 28990|0.47222 28991|0.5 28992|0.70833 28993|0.47222 28994|0.5 28995|0.44444 28996|0.68056 28997|0.18056 28998|0.33333 28999|0.81944 29000|0.54167 29001|0.83333 29002|0.70833 29003|0.5 29004|0.61111 29005|0.76389 29006|0.625 29007|0.55556 29008|0.54167 29009|0.77778 29010|0.66667 29011|0.65278 29012|0.66667 29013|0.72222 29014|0.55556 29015|0.48611 29016|0.86111 29017|0.73611 29018|0.55556 29019|0.5 29020|0.5 29021|0.5 29022|0.55556 29023|0.5 29024|0.79167 29025|0.55556 29026|0.84722 29027|0.69444 29028|0.81944 29029|0.625 29030|0.66667 29031|0.97222 29032|0.55556 29033|0.72222 29034|0.81944 29035|0.5 29036|0.55556 29037|0.58333 29038|0.70833 29039|0.68056 29040|0.97222 29041|0.86111 29042|0.63889 29043|0.69444 29044|0.83333 29045|0.84722 29046|0.90625 29047|0.66667 29048|0.73611 29049|0.44444 29050|0.5 29051|0.61111 29052|0.63889 29053|0.93056 29054|0.51389 29055|0.86111 29056|0.70833 29057|0.75 29058|0.66667 29059|0.33333 29060|0.48611 29061|0.54167 29062|0.40278 29063|0.44444 29064|0.5 29065|0.51389 29066|0.81944 29067|0.86458 29068|0.83333 29069|0.90278 29070|0.84722 29071|0.55556 29072|0.375 29073|0.29167 29074|0.88889 29075|0.58333 29076|0.61111 29077|0.58333 29078|0.48611 29079|0.72222 29080|0.58333 29081|0.79167 29082|0.875 29083|0.61111 29084|0.875 29085|0.83333 29086|0.55556 29087|0.73611 29088|0.27778 29089|0.65278 29090|0.69444 29091|0.76389 29092|0.59722 29093|0.70833 29094|0.44444 29095|0.44444 29096|0.47222 29097|0.68056 29098|0.54167 29099|0.77778 29100|0.51389 29101|0.27778 29102|0.68056 29103|0.58333 29104|0.54167 29105|0.66667 29106|0.84722 29107|0.56944 29108|0.72222 29109|0.55556 29110|0.38889 29111|0.55556 29112|0.61111 29113|0.58333 29114|0.69444 29115|0.83333 29116|0.55556 29117|0.76389 29118|0.55556 29119|0.5 29120|0.5 29121|0.55556 29122|0.36111 29123|0.79167 29124|0.68056 29125|0.5 29126|0.5 29127|0.5 29128|0.54167 29129|0.5 29130|0.63889 29131|0.70833 29132|0.5 29133|0.5 29134|0.5 29135|0.34722 29136|0.5 29137|0.5 29138|0.5 29139|0.5 29140|0.5 29141|0.73611 29142|0.5625 29143|0.72222 29144|0.84722 29145|0.59722 29146|0.66667 29147|0.5 29148|0.5 29149|0.5 29150|0.55556 29151|0.625 29152|0.55556 29153|0.75 29154|0.33333 29155|0.44444 29156|0.58333 29157|0.61111 29158|0.69444 29159|0.38889 29160|0.45833 29161|0.77778 29162|0.5 29163|0.56944 29164|0.47917 29165|0.45833 29166|0.68056 29167|0.61111 29168|0.55556 29169|0.5 29170|0.61111 29171|0.48611 29172|0.72222 29173|0.43056 29174|0.54167 29175|0.61111 29176|0.56944 29177|0.61111 29178|0.66667 29179|0.51389 29180|0.27778 29181|0.31944 29182|0.40278 29183|0.66667 29184|0.58333 29185|0.33333 29186|0.54167 29187|0.56944 29188|0.30556 29189|0.41667 29190|0.75 29191|0.90278 29192|0.33333 29193|0.56944 29194|0.5 29195|0.5 29196|0.5 29197|0.16667 29198|0.80556 29199|0.61111 29200|0.80556 29201|0.30556 29202|0.38889 29203|0.55556 29204|0.52778 29205|0.5 29206|0.44444 29207|0.5 29208|0.58333 29209|0.38889 29210|0.625 29211|0.5 29212|0.80556 29213|0.88889 29214|0.625 29215|0.68056 29216|0.54167 29217|0.56944 29218|0.54167 29219|0.60417 29220|0.86111 29221|0.58333 29222|0.54167 29223|0.20833 29224|0.59722 29225|0.5 29226|0.52778 29227|0.58333 29228|0.61111 29229|0.5 29230|0.5 29231|0.55556 29232|0.48611 29233|0.58333 29234|0.5 29235|0.91667 29236|0.51389 29237|0.68056 29238|0.73611 29239|0.5 29240|0.77778 29241|0.61111 29242|0.5 29243|0.80556 29244|0.625 29245|0.65278 29246|0.70833 29247|0.66667 29248|0.73611 29249|0.72222 29250|0.5 29251|0.47222 29252|0.52778 29253|0.56944 29254|0.83333 29255|0.52778 29256|0.5 29257|0.66667 29258|0.68056 29259|0.5 29260|0.625 29261|0.51389 29262|0.48611 29263|0.58333 29264|0.73611 29265|0.72222 29266|0.81944 29267|0.90278 29268|0.79167 29269|0.75 29270|0.63889 29271|0.84722 29272|0.38889 29273|0.61111 29274|0.55556 29275|0.5 29276|0.5 29277|0.5 29278|0.81944 29279|0.51389 29280|0.5 29281|0.81944 29282|0.76389 29283|0.66667 29284|0.61111 29285|0.75 29286|0.58333 29287|0.59722 29288|0.5 29289|0.55556 29290|0.84722 29291|0.5 29292|0.33333 29293|0.51389 29294|0.58333 29295|0.875 29296|0.45833 29297|0.72222 29298|0.59722 29299|0.625 29300|0.5 29301|0.61458 29302|0.27778 29303|0.52778 29304|0.625 29305|0.43056 29306|0.31944 29307|0.18056 29308|0.5 29309|0.55556 29310|0.61111 29311|0.5 29312|0.80556 29313|0.44444 29314|0.23611 29315|0.5 29316|0.52778 29317|0.72222 29318|0.68056 29319|0.5 29320|0.72222 29321|0.59722 29322|0.84722 29323|0.80556 29324|0.5 29325|0.5 29326|0.5 29327|0.66667 29328|0.22222 29329|0.5 29330|0.5 29331|0.55556 29332|0.69444 29333|0.5 29334|0.5 29335|0.5 29336|0.70833 29337|0.63889 29338|0.54167 29339|0.59722 29340|0.33333 29341|0.79167 29342|0.41667 29343|0.5 29344|0.5 29345|0.65278 29346|0.65278 29347|0.5 29348|0.44444 29349|0.77778 29350|0.52778 29351|0.45833 29352|0.48611 29353|0.5 29354|0.38889 29355|0.45833 29356|0.36111 29357|0.66667 29358|0.875 29359|0.5 29360|0.5 29361|0.90278 29362|0.90278 29363|0.27778 29364|0.38889 29365|0.5 29366|0.5 29367|0.79167 29368|0.5 29369|0.13889 29370|0.055556 29371|0.40278 29372|0.375 29373|0.5 29374|0.77778 29375|0.5 29376|0.5 29377|0.72222 29378|0.59722 29379|0.47222 29380|0.5 29381|0.5 29382|0.44444 29383|0.43056 29384|0.45833 29385|0.70833 29386|0.22222 29387|0.5 29388|0.5 29389|0.5 29390|0.5 29391|0.5 29392|0.54167 29393|0.70833 29394|0.58333 29395|0.61111 29396|0.61111 29397|0.52778 29398|0.5 29399|0.44444 29400|0.65278 29401|0.77778 29402|0.5 29403|0.27778 29404|0.72222 29405|0.68056 29406|0.41667 29407|0.48611 29408|0.80556 29409|0.83333 29410|0.77778 29411|0.375 29412|0.40278 29413|0.54167 29414|0.56944 29415|0.38889 29416|0.77778 29417|0.66667 29418|0.34722 29419|0.73611 29420|0.43056 29421|0.55556 29422|0.875 29423|0.88889 29424|0.66667 29425|0.26389 29426|0.70833 29427|0.65278 29428|0.68056 29429|0.80556 29430|0.70833 29431|0.5 29432|0.27778 29433|0.70833 29434|0.52778 29435|0.90278 29436|0.84722 29437|0.51389 29438|0.59722 29439|0.77778 29440|0.56944 29441|0.61111 29442|0.81944 29443|0.61111 29444|0.72222 29445|0.55556 29446|0.63889 29447|0.11111 29448|0.63889 29449|0.44444 29450|0.5 29451|0.80556 29452|0.75 29453|0.76389 29454|0.93056 29455|0.86111 29456|0.83333 29457|0.77778 29458|0.91667 29459|0.90278 29460|0.52778 29461|0.80556 29462|0.70833 29463|0.66667 29464|0.65278 29465|0.61111 29466|0.72222 29467|0.55556 29468|0.79167 29469|0.68056 29470|0.58333 29471|0.69444 29472|0.72222 29473|0.72222 29474|0.51389 29475|0.29167 29476|0.5 29477|0.43056 29478|0.625 29479|0.77778 29480|0.72222 29481|0.70833 29482|0.69444 29483|0.83333 29484|0.77778 29485|0.5 29486|0.44444 29487|0.29167 29488|0.33333 29489|0.80556 29490|0.75 29491|0.40278 29492|0.48611 29493|0.68056 29494|0.56944 29495|0.5 29496|0.45833 29497|0.72222 29498|0.83333 29499|0.61111 29500|0.5 29501|0.36111 29502|0.61111 29503|0.52778 29504|0.69444 29505|0.45833 29506|0.86111 29507|0.66667 29508|0.44444 29509|0.45833 29510|0.45833 29511|0.5 29512|0.34722 29513|0.44444 29514|0.33333 29515|0.65278 29516|0.69444 29517|0.45833 29518|0.625 29519|0.5 29520|0.63889 29521|0.5 29522|0.5 29523|0.5 29524|0.79167 29525|0.81944 29526|0.30556 29527|0.70833 29528|0.58333 29529|0.5 29530|0.55556 29531|0.5 29532|0.94444 29533|0.56944 29534|0.47222 29535|0.55556 29536|0.61111 29537|0.61111 29538|0.65278 29539|0.63889 29540|0.5 29541|0.5 29542|0.81944 29543|0.52778 29544|0.375 29545|0.44444 29546|0.5 29547|0.66667 29548|0.5 29549|0.5 29550|0.68056 29551|0.76389 29552|0.5 29553|0.79167 29554|0.58333 29555|0.75 29556|0.65278 29557|0.90278 29558|0.91667 29559|0.88889 29560|0.55556 29561|0.625 29562|0.55556 29563|0.79167 29564|0.72222 29565|0.625 29566|0.81944 29567|0.88889 29568|0.55556 29569|0.5 29570|0.70833 29571|0.45833 29572|0.61458 29573|0.63889 29574|0.66667 29575|0.56944 29576|0.69444 29577|0.72222 29578|0.5 29579|0.54167 29580|0.63889 29581|0.5 29582|0.25 29583|0.5 29584|0.5 29585|0.41667 29586|0.5 29587|0.5 29588|0.48611 29589|0.5 29590|0.5 29591|0.5 29592|0.5 29593|0.61111 29594|0.55556 29595|0.5 29596|0.5 29597|0.51389 29598|0.5 29599|0.66667 29600|0.73611 29601|0.5 29602|0.31944 29603|0.5 29604|0.5 29605|0.44444 29606|0.5 29607|0.5 29608|0.5 29609|0.5 29610|0.5 29611|0.5 29612|0.5 29613|0.19792 29614|0.44444 29615|0.56944 29616|0.77778 29617|0.66667 29618|0.72222 29619|0.56944 29620|0.54167 29621|0.5 29622|0.51389 29623|0.375 29624|0.5 29625|0.72222 29626|0.5 29627|0.54167 29628|0.51389 29629|0.68056 29630|0.65278 29631|0.56944 29632|0.63889 29633|0.43056 29634|0.68056 29635|0.40278 29636|0.34722 29637|0.31944 29638|0.30556 29639|0.23611 29640|0.41667 29641|0.66667 29642|0.38889 29643|0.34722 29644|0.29167 29645|0.44444 29646|0.54167 29647|0.5 29648|0.44444 29649|0.5 29650|0.43056 29651|0.84722 29652|0.5 29653|0.22222 29654|0.25 29655|0.47222 29656|0.84722 29657|0.76389 29658|0.63889 29659|0.68056 29660|0.58333 29661|0.59722 29662|0.52778 29663|0.55556 29664|0.11111 29665|0.5 29666|0.11111 29667|0.33333 29668|0.33333 29669|0.5 29670|0.5 29671|0.5 29672|0.55556 29673|0.5 29674|0.47222 29675|0.5 29676|0.5 29677|0.5 29678|0.5 29679|0.73611 29680|0.625 29681|0.58333 29682|0.66667 29683|0.48611 29684|0.43056 29685|0.51389 29686|0.40278 29687|0.66667 29688|0.625 29689|0.5 29690|0.56944 29691|0.36111 29692|0.77778 29693|0.5 29694|0.65278 29695|0.55556 29696|0.72222 29697|0.83333 29698|0.84722 29699|0.75 29700|0.59722 29701|0.5 29702|0.5 29703|0.56944 29704|0.27778 29705|0.38889 29706|0.52778 29707|0.77778 29708|0.38889 29709|0.5 29710|0.36111 29711|0.61111 29712|0.81944 29713|0.66667 29714|0.52778 29715|0.27778 29716|0.66667 29717|0.5 29718|0.5 29719|0.5 29720|0.55556 29721|0.5 29722|0.55556 29723|0.76389 29724|0.79167 29725|0.83333 29726|0.5 29727|0.72222 29728|0.69444 29729|0.94444 29730|0.55556 29731|0.5 29732|0.77778 29733|0.86111 29734|0.84722 29735|0.90278 29736|0.55556 29737|0.55556 29738|0.73611 29739|0.66667 29740|0.5 29741|0.72222 29742|0.875 29743|0.73611 29744|0.72222 29745|0.77778 29746|0.70833 29747|0.58333 29748|1 29749|0.88889 29750|0.79167 29751|0.86111 29752|0.80556 29753|0.75 29754|0.75 29755|0.73611 29756|0.45833 29757|0.72222 29758|0.44444 29759|0.56944 29760|0.70833 29761|0.69444 29762|0.27778 29763|0.66667 29764|0.68056 29765|0.30556 29766|0.65278 29767|0.66667 29768|0.56944 29769|0.61111 29770|0.44444 29771|0.5 29772|0.5 29773|0.70833 29774|0.88889 29775|0.34722 29776|0.38889 29777|0.5 29778|0.83333 29779|0.5 29780|0.66667 29781|0.75 29782|0.59722 29783|0.72222 29784|0.51389 29785|0.44444 29786|0.84722 29787|0.80556 29788|0.61111 29789|0.625 29790|0.81944 29791|0.56944 29792|0.66667 29793|0.58333 29794|0.75 29795|0.73611 29796|0.76389 29797|0.5 29798|0.56944 29799|0.48611 29800|0.69444 29801|0.44444 29802|0.54167 29803|0.33333 29804|0.65278 29805|0.61111 29806|0.81944 29807|0.51389 29808|0.38889 29809|0.90278 29810|0.47222 29811|0.70833 29812|0.68056 29813|0.63889 29814|0.73611 29815|0.59722 29816|0.72222 29817|0.61111 29818|0.5 29819|0.5 29820|0.79167 29821|0.79167 29822|0.59722 29823|0.72222 29824|0.75 29825|0.875 29826|0.83333 29827|0.72222 29828|0.80556 29829|0.75 29830|0.41667 29831|0.5 29832|0.875 29833|0.63889 29834|0.80556 29835|0.70833 29836|0.79167 29837|0.31944 29838|0.80556 29839|0.44444 29840|0.63889 29841|0.84722 29842|0.70833 29843|0.63889 29844|0.51389 29845|0.52778 29846|0.55556 29847|0.25 29848|0.55556 29849|0.41667 29850|0.5 29851|0.77778 29852|0.51389 29853|0.58333 29854|0.56944 29855|0.5 29856|0.90278 29857|0.625 29858|0.625 29859|0.5 29860|0.58333 29861|0.34722 29862|0.80556 29863|0.79167 29864|0.5 29865|0.66667 29866|0.26389 29867|0.77778 29868|0.65278 29869|0.72222 29870|0.69444 29871|0.90278 29872|0.83333 29873|0.88889 29874|0.70833 29875|0.51389 29876|0.83333 29877|0.33333 29878|0.41667 29879|0.75 29880|0.30556 29881|0.22222 29882|0.59722 29883|0.58333 29884|0.77778 29885|0.63889 29886|0.54167 29887|0.79167 29888|0.80556 29889|0.18056 29890|0.55556 29891|0.79167 29892|0.45833 29893|0.5 29894|0.5 29895|0.5 29896|0.59722 29897|0.44444 29898|0.5 29899|0.5 29900|0.77778 29901|0.5 29902|0.5 29903|0.5 29904|0.51389 29905|0.5 29906|0.69444 29907|0.5 29908|0.36458 29909|0.5 29910|0.69444 29911|0.86111 29912|0.93056 29913|0.43056 29914|0.66667 29915|0.55556 29916|0.5 29917|0.55556 29918|0.5 29919|0.66667 29920|0.63889 29921|0.65278 29922|0.5 29923|0.69444 29924|0.54167 29925|0.81944 29926|0.95833 29927|0.51389 29928|0.48611 29929|0.5 29930|0.5 29931|0.63889 29932|0.51389 29933|0.44444 29934|0.5 29935|0.52778 29936|0.5 29937|0.55556 29938|0.55556 29939|0.76389 29940|0.80556 29941|0.33333 29942|0.40278 29943|0.65278 29944|0.5 29945|0.95833 29946|0.54167 29947|0.54167 29948|0.72222 29949|0.61111 29950|0.48611 29951|0.375 29952|0.58333 29953|0.65278 29954|0.5 29955|0.22222 29956|0.56944 29957|0.66667 29958|0.47222 29959|0.5 29960|0.79167 29961|0.79167 29962|0.38889 29963|0.70833 29964|0.59722 29965|0.48611 29966|0.79167 29967|0.44444 29968|0.55556 29969|0.47222 29970|0.5 29971|0.36111 29972|0.5 29973|0.5 29974|0.33333 29975|0.5 29976|0.61111 29977|0.43056 29978|0.5 29979|0.52778 29980|0.5 29981|0.80556 29982|0.56944 29983|0.33333 29984|0.65278 29985|0.625 29986|0.82292 29987|0.625 29988|0.75 29989|0.81944 29990|0.23611 29991|0.57292 29992|0.77778 29993|0.83333 29994|0.72222 29995|0.38889 29996|0.625 29997|0.63889 29998|0.59722 29999|0.52778 30000|0.58333 30001|0.55556 30002|0.5 30003|0.51389 30004|0.38889 30005|0.875 30006|0.83333 30007|0.86111 30008|0.83333 30009|0.45833 30010|0.61111 30011|0.59722 30012|0.56944 30013|0.81944 30014|0.88889 30015|0.55556 30016|0.64583 30017|0.25 30018|0.5 30019|0.65278 30020|0.75 30021|0.51389 30022|0.51389 30023|0.72222 30024|0.88889 30025|0.81944 30026|0.76389 30027|0.73611 30028|0.72222 30029|0.56944 30030|0.61111 30031|0.5 30032|0.66667 30033|0.5 30034|0.61111 30035|0.5 30036|0.5 30037|0.52778 30038|0.76042 30039|0.77778 30040|0.69444 30041|0.31944 30042|0.5 30043|0.80556 30044|0.44444 30045|0.72222 30046|0.5 30047|0.5 30048|0.44444 30049|0.47222 30050|0.58333 30051|0.5 30052|0.81944 30053|0.56944 30054|0.68056 30055|0.93056 30056|0.5 30057|0.5 30058|0.26389 30059|0.56944 30060|0.5 30061|0.5 30062|0.5 30063|0.36111 30064|0.45833 30065|0.69444 30066|0.40278 30067|0.5 30068|0.625 30069|0.93056 30070|0.875 30071|0.76389 30072|0.5 30073|0.44444 30074|0.5 30075|0.38889 30076|0.5 30077|0.5 30078|0.5 30079|0.55556 30080|0.27778 30081|0.63889 30082|0.5 30083|0.51389 30084|0.56944 30085|0.70833 30086|0.72222 30087|0.33333 30088|0.5 30089|0.5 30090|0.5 30091|0.5 30092|0.30556 30093|0.55556 30094|0.625 30095|0.88889 30096|0.54167 30097|0.43056 30098|0.59722 30099|0.54167 30100|0.5 30101|0.51389 30102|0.55556 30103|0.75 30104|0.375 30105|0.5 30106|0.5 30107|0.80556 30108|0.69444 30109|0.75 30110|0.45833 30111|0.72222 30112|0.70833 30113|0.625 30114|0.625 30115|0.75 30116|0.76389 30117|0.61111 30118|0.76389 30119|0.72222 30120|0.75 30121|0.77778 30122|0.77778 30123|0.26389 30124|0.31944 30125|0.65278 30126|0.875 30127|0.61111 30128|0.5 30129|0.65278 30130|0.5 30131|0.5 30132|0.70833 30133|0.68056 30134|0.51389 30135|0.81944 30136|0.84722 30137|0.76389 30138|0.15278 30139|0.069444 30140|0.5 30141|0.5 30142|0.45833 30143|0.55556 30144|0.45833 30145|0.40278 30146|0.26389 30147|0.055556 30148|0.5 30149|0.36111 30150|0.59722 30151|0.43056 30152|0.58333 30153|0.61111 30154|0.81944 30155|0.77778 30156|0.52778 30157|0.54167 30158|0.43056 30159|0.27778 30160|0.30556 30161|0.51389 30162|0.59722 30163|0.54167 30164|0.5 30165|0.5 30166|0.36111 30167|0.61111 30168|0.5 30169|0.95833 30170|0.86111 30171|1 30172|0.625 30173|0.61111 30174|0.5 30175|0.55556 30176|0.5 30177|0.56944 30178|0.95833 30179|0.83333 30180|0.5 30181|0.5 30182|0.52778 30183|0.5 30184|0.65278 30185|0.38889 30186|0.77778 30187|0.52778 30188|0.56944 30189|0.5 30190|0.43056 30191|0.5 30192|0.5 30193|0.59722 30194|0.5 30195|0.52778 30196|0.61111 30197|0.56944 30198|0.38889 30199|0.22222 30200|0.11111 30201|0.30556 30202|0.48611 30203|0.5 30204|0.69444 30205|0.80556 30206|0.875 30207|0.5 30208|0.52778 30209|0.84722 30210|0.55556 30211|0.59722 30212|0.81944 30213|0.80556 30214|0.75 30215|0.72222 30216|0.33333 30217|0.70833 30218|0.68056 30219|0.56944 30220|0.56944 30221|0.65278 30222|0.55556 30223|0.56944 30224|0.79167 30225|0.31944 30226|0.30556 30227|0.58333 30228|0.66667 30229|0.47222 30230|0.70833 30231|0.65278 30232|0.55556 30233|0.48611 30234|0.5 30235|0.5 30236|0.58333 30237|0.5 30238|0.375 30239|0.33333 30240|0.5 30241|0.5 30242|0.5 30243|0.52778 30244|0.75 30245|0.61111 30246|0.40278 30247|0.63889 30248|0.51389 30249|0.625 30250|0.55556 30251|0.58333 30252|0.5 30253|0.5 30254|0.59722 30255|0.5 30256|0.94444 30257|0.55556 30258|0.61111 30259|0.38889 30260|0.59722 30261|0.54167 30262|0.51389 30263|0.5 30264|0.77778 30265|0.56944 30266|0.58333 30267|0.86111 30268|0.75 30269|0.77778 30270|0.5 30271|0.44444 30272|0.55556 30273|0.56944 30274|0.83333 30275|0.76389 30276|0.55556 30277|0.5 30278|0.69444 30279|0.52778 30280|0.55556 30281|0.66667 30282|0.5 30283|0.5 30284|0.5 30285|0.44444 30286|0.63889 30287|0.5 30288|0.66667 30289|0.5 30290|0.5 30291|0.63889 30292|0.59722 30293|0.77778 30294|0.81944 30295|0.76389 30296|0.56944 30297|0.66667 30298|0.79167 30299|0.73611 30300|0.56944 30301|0.76389 30302|0.5 30303|0.56944 30304|0.61111 30305|0.30556 30306|0.31944 30307|0.63889 30308|0.27778 30309|0.19444 30310|0.41667 30311|0.55556 30312|0.5 30313|0.30556 30314|0.625 30315|0.61111 30316|0.75 30317|0.77778 30318|0.45833 30319|0.5 30320|0.58333 30321|0.61111 30322|0.625 30323|0.26389 30324|0.40278 30325|0.5 30326|0.61111 30327|0.44444 30328|0.5 30329|0.47222 30330|0.5 30331|0.51389 30332|0.5 30333|0.66667 30334|0.51389 30335|0.56944 30336|0.5 30337|0.5 30338|0.30556 30339|0.41667 30340|0.33333 30341|0.5 30342|0.54167 30343|0.63889 30344|0.63889 30345|0.48611 30346|0.63889 30347|0.80556 30348|0.72222 30349|0.5 30350|0.55556 30351|0.66667 30352|0.52778 30353|0.5 30354|0.55556 30355|0.77778 30356|0.72222 30357|0.76042 30358|0.72222 30359|0.55556 30360|0.63889 30361|0.63889 30362|0.65278 30363|0.52778 30364|0.65278 30365|0.4375 30366|0.41667 30367|0.77778 30368|0.52778 30369|0.5 30370|0.76389 30371|0.66667 30372|0.56944 30373|0.38889 30374|0.55556 30375|0.43056 30376|0.5 30377|0.29167 30378|0.5 30379|0.5 30380|0.5 30381|0.5 30382|0.5 30383|0.45833 30384|0.5 30385|0.75 30386|0.27778 30387|0.23611 30388|0.55556 30389|0.76389 30390|0.72222 30391|0.59722 30392|0.38889 30393|0.44444 30394|0.45833 30395|0.65278 30396|0.61111 30397|0.66667 30398|0.76389 30399|0.5 30400|0.5 30401|0.5 30402|0.73611 30403|0.76389 30404|0.51389 30405|0.45833 30406|0.5 30407|0.77778 30408|0.75 30409|0.61111 30410|0.80556 30411|0.52778 30412|0.83333 30413|0.83333 30414|0.5 30415|0.51389 30416|0.5 30417|0.58333 30418|0.52778 30419|0.5 30420|0.55556 30421|0.81944 30422|0.72222 30423|0.54167 30424|0.66667 30425|0.45833 30426|0.41667 30427|0.52778 30428|0.41667 30429|0.5 30430|0.5 30431|0.20833 30432|0.41667 30433|0.44444 30434|0.65278 30435|0.63889 30436|0.65278 30437|0.81944 30438|0.83333 30439|0.5 30440|0.72222 30441|0.77778 30442|0.5 30443|0.5 30444|0.52778 30445|0.5 30446|0.5 30447|0.72222 30448|0.88889 30449|0.80556 30450|0.27778 30451|0.52778 30452|0.5 30453|0.54167 30454|0.5 30455|0.54167 30456|0.72222 30457|0.61111 30458|0.59722 30459|0.40278 30460|0.61111 30461|0.44444 30462|0.61111 30463|0.66667 30464|0.69444 30465|0.5 30466|0.79167 30467|0.72222 30468|0.44444 30469|0.47222 30470|0.63889 30471|0.18056 30472|0.91667 30473|0.84722 30474|0.88889 30475|0.86111 30476|0.66667 30477|0.66667 30478|0.84722 30479|0.83333 30480|0.94444 30481|0.5 30482|0.55556 30483|0.81944 30484|0.81944 30485|0.69792 30486|0.72222 30487|0.73611 30488|0.5 30489|0.5 30490|0.5 30491|0.68056 30492|0.51042 30493|0.66667 30494|0.51389 30495|0.72917 30496|0.51389 30497|0.27778 30498|0.65278 30499|0.45833 30500|0.54167 30501|0.51389 30502|0.31944 30503|0.875 30504|0.36111 30505|0.55556 30506|0.625 30507|0.55556 30508|0.40278 30509|0.41667 30510|0.51389 30511|0.44444 30512|0.5 30513|0.45833 30514|0.5 30515|0.59722 30516|0.5 30517|0.45833 30518|0.47222 30519|0.5 30520|0.72222 30521|0.27778 30522|0.48611 30523|0.19792 30524|0.70833 30525|0.70833 30526|0.5 30527|0.44792 30528|0.15278 30529|0.69444 30530|0.72222 30531|0.5 30532|0.84722 30533|0.52778 30534|0.5 30535|0.55556 30536|0.69444 30537|0.5 30538|0.88889 30539|0.58333 30540|0.52778 30541|0.5 30542|0.5 30543|0.5 30544|0.51389 30545|0.65278 30546|0.33333 30547|0.38889 30548|0.56944 30549|0.5 30550|0.5 30551|0.45833 30552|0.70833 30553|0.75 30554|0.75 30555|0.5 30556|0.51389 30557|0.68056 30558|0.44444 30559|0.86111 30560|0.40278 30561|0.27778 30562|0.52778 30563|0.63889 30564|0.55556 30565|0.72222 30566|0.625 30567|0.5 30568|0.45833 30569|0.5 30570|0.73611 30571|0.79167 30572|0.52778 30573|0.83333 30574|0.40278 30575|0.40278 30576|0.40625 30577|0.73611 30578|0.58333 30579|0.59722 30580|0.72222 30581|0.79167 30582|0.56944 30583|0.38889 30584|0.72222 30585|0.72222 30586|0.38889 30587|0.47222 30588|0.47222 30589|0.72222 30590|0.73611 30591|0.5 30592|0.5 30593|0.5 30594|0.86111 30595|0.875 30596|0.56944 30597|0.5 30598|0.5 30599|0.54167 30600|0.61111 30601|0.33333 30602|0.5 30603|0.5 30604|0.65278 30605|0.66667 30606|0.5 30607|0.5 30608|0.31944 30609|0.23611 30610|0.5 30611|0.5 30612|0.51389 30613|0.54167 30614|0.26389 30615|0.38889 30616|0.5 30617|0.5 30618|0.16667 30619|0.69444 30620|0.63889 30621|0.5 30622|0.55556 30623|0.5 30624|0.44444 30625|0.75 30626|0.83333 30627|0.80556 30628|0.81944 30629|0.81944 30630|0.72222 30631|0.63889 30632|0.54167 30633|0.84722 30634|0.61111 30635|0.76389 30636|0.63889 30637|0.5 30638|0.54167 30639|0.58333 30640|0.83333 30641|0.47222 30642|0.45833 30643|0.5 30644|0.73611 30645|0.33333 30646|0.66667 30647|0.76389 30648|0.73611 30649|0.66667 30650|0.54167 30651|0.80556 30652|0.5 30653|0.5 30654|0.72222 30655|0.5 30656|0.5 30657|0.90278 30658|0.83333 30659|0.56944 30660|0.61111 30661|0.68056 30662|0.81944 30663|0.65278 30664|0.55556 30665|0.875 30666|0.73611 30667|0.59722 30668|0.83333 30669|0.75 30670|0.66667 30671|0.72222 30672|0.84722 30673|0.86111 30674|0.76389 30675|0.86111 30676|0.72222 30677|0.41667 30678|0.48611 30679|0.91667 30680|0.61111 30681|0.88889 30682|0.51389 30683|0.81944 30684|0.29167 30685|0.65278 30686|0.70833 30687|0.83333 30688|1 30689|0.68056 30690|0.81944 30691|0.86111 30692|0.75 30693|0.47222 30694|0.82292 30695|0.68056 30696|0.72222 30697|0.69444 30698|0.81944 30699|0.72222 30700|0.5 30701|0.44444 30702|0.52778 30703|0.79167 30704|0.88889 30705|0.44444 30706|0.5 30707|0.5 30708|0.5 30709|0.29167 30710|0.625 30711|0.48611 30712|0.43056 30713|0.41667 30714|0.69444 30715|0.36111 30716|0.5 30717|0.5 30718|0.45833 30719|0.63889 30720|0.48611 30721|0.38889 30722|0.69444 30723|0.5 30724|0.5 30725|0.79167 30726|0.77778 30727|0.73611 30728|0.875 30729|0.86111 30730|0.93056 30731|0.375 30732|0.22222 30733|0.29167 30734|0.44444 30735|0.34722 30736|0.44444 30737|0.44444 30738|0.66667 30739|0.44444 30740|0.73611 30741|0.47222 30742|0.45833 30743|0.40278 30744|0.33333 30745|0.44444 30746|0.52778 30747|0.5 30748|0.097222 30749|0.69444 30750|0.97222 30751|0.45833 30752|0.86111 30753|0.83333 30754|0.54167 30755|0.44444 30756|0.65278 30757|0.58333 30758|0.31944 30759|0.5 30760|0.80556 30761|0.63889 30762|0.48611 30763|0.5 30764|0.51389 30765|0.52778 30766|0.5 30767|0.66667 30768|0.34722 30769|0.30556 30770|0.38889 30771|0.375 30772|0.44444 30773|0.36111 30774|0.33333 30775|0.55556 30776|0.5 30777|0.36111 30778|0.55556 30779|0.58333 30780|0.5 30781|0.44444 30782|0.72222 30783|0.5 30784|0.58333 30785|0.79167 30786|0.5 30787|0.81944 30788|0.88889 30789|0.30556 30790|0.5 30791|0.52778 30792|0.43056 30793|0.30556 30794|0.5 30795|0.83333 30796|0.70833 30797|0.5 30798|0.51389 30799|0.51389 30800|0.5 30801|0.86111 30802|0.5 30803|0.5 30804|0.76389 30805|0.48611 30806|0.51389 30807|0.73611 30808|0.5 30809|0.5 30810|0.5 30811|0.83333 30812|0.61111 30813|0.5 30814|0.38889 30815|0.65278 30816|0.59722 30817|0.5 30818|0.875 30819|0.5 30820|0.51389 30821|0.76389 30822|0.93056 30823|0.40278 30824|0.65278 30825|0.72222 30826|0.38889 30827|0.5 30828|0.47222 30829|0.93056 30830|0.34722 30831|0.26389 30832|0.41667 30833|0.097222 30834|0.013889 30835|0.26389 30836|0.11111 30837|0.375 30838|0.43056 30839|0.5 30840|0.73611 30841|0.5 30842|0.5 30843|0.5 30844|0.79167 30845|0.5 30846|0.83333 30847|0.48611 30848|0.38889 30849|0.38889 30850|0.70833 30851|0.45833 30852|0.63889 30853|0.63889 30854|0.19444 30855|0.36111 30856|0.30208 30857|0.68056 30858|0.33333 30859|0.36111 30860|0.30556 30861|0.44444 30862|0.72222 30863|0.66667 30864|0.5 30865|0.51389 30866|0.5 30867|0.54167 30868|0.5 30869|0.5 30870|0.40278 30871|0.33333 30872|0.59722 30873|0.59375 30874|0.52778 30875|0.56944 30876|0.69444 30877|0.51042 30878|0.61111 30879|0.5 30880|0.5 30881|0.5 30882|0.5 30883|0.5 30884|0.77778 30885|0.86111 30886|0.65278 30887|0.61111 30888|0.5 30889|0.5 30890|0.54167 30891|0.40278 30892|0.66667 30893|0.84722 30894|0.48611 30895|0.5 30896|0.5 30897|0.31944 30898|0.27778 30899|0.59722 30900|0.43056 30901|0.5 30902|0.66667 30903|0.5 30904|0.58333 30905|0.72222 30906|0.44444 30907|0.76389 30908|0.47222 30909|0.83333 30910|0.66667 30911|0.5 30912|0.33333 30913|0.65278 30914|0.26389 30915|0.57292 30916|0.61111 30917|0.39583 30918|0.40278 30919|0.26389 30920|0.26389 30921|0.58333 30922|0.43056 30923|0.25 30924|0.36111 30925|0.66667 30926|0.77778 30927|0.88889 30928|0.69444 30929|0.625 30930|0.5 30931|0.38889 30932|0.44444 30933|0.22222 30934|0.36111 30935|0.5 30936|0.40278 30937|0.58333 30938|0.5 30939|0.63889 30940|0.43056 30941|0.61111 30942|0.22222 30943|0.68056 30944|0.27778 30945|0.40278 30946|0.61458 30947|0.58333 30948|0.61111 30949|0.44444 30950|0.81944 30951|0.81944 30952|0.73611 30953|0.93056 30954|0.91667 30955|0.55556 30956|0.5 30957|0.45833 30958|0.59722 30959|0.5 30960|0.55556 30961|0.51389 30962|0.5 30963|0.48611 30964|0.66667 30965|0.61111 30966|0.44444 30967|0.44444 30968|0.34722 30969|0.26389 30970|0.5 30971|0.5 30972|0.63889 30973|0.5 30974|0.5 30975|0.51389 30976|0.5 30977|0.68056 30978|0.5 30979|0.5 30980|0.61111 30981|0.75 30982|0.55556 30983|0.52778 30984|0.80556 30985|0.72222 30986|0.54167 30987|0.69444 30988|0.72222 30989|0.97222 30990|0.81944 30991|0.55556 30992|0.68056 30993|0.72222 30994|0.77778 30995|0.75 30996|0.43056 30997|0.5 30998|0.5625 30999|0.52778 31000|0.56944 31001|0.5 31002|0.55556 31003|0.83333 31004|0.5 31005|0.69444 31006|0.72222 31007|0.55556 31008|0.65278 31009|0.375 31010|0.77778 31011|0.66667 31012|0.375 31013|0.5 31014|0.76389 31015|0.75 31016|0.75 31017|0.68056 31018|0.625 31019|0.80556 31020|0.47222 31021|0.38889 31022|0.55556 31023|0.23611 31024|0.84722 31025|0.81944 31026|0.61111 31027|0.48611 31028|0.51389 31029|0.5 31030|0.5 31031|0.51389 31032|0.69444 31033|0.5 31034|0.59722 31035|0.5 31036|0.73611 31037|0.80556 31038|0.75 31039|0.55556 31040|0.75 31041|0.58333 31042|0.47222 31043|0.76389 31044|0.75 31045|0.44444 31046|0.61111 31047|0.5 31048|0.5 31049|0.5 31050|0.55556 31051|0.61458 31052|0.88889 31053|0.86111 31054|0.55556 31055|0.52778 31056|0.58333 31057|0.55556 31058|0.68056 31059|0.70833 31060|0.375 31061|0.5 31062|0.52083 31063|0.55556 31064|0.61111 31065|0.55556 31066|0.52778 31067|0.79167 31068|0.72222 31069|0.72222 31070|0.84722 31071|0.875 31072|0.61111 31073|0.66667 31074|0.55556 31075|0.5 31076|0.72222 31077|0.86111 31078|0.77778 31079|0.70833 31080|0.31944 31081|0.22222 31082|0.11111 31083|0.94444 31084|0.61111 31085|0.80556 31086|0.72222 31087|0.54167 31088|0.93056 31089|0.34722 31090|0.59722 31091|0.73611 31092|0.66667 31093|0.38889 31094|0.68056 31095|0.81944 31096|0.77778 31097|0.875 31098|0.77778 31099|0.73611 31100|0.61111 31101|0.83333 31102|0.76389 31103|0.73611 31104|0.79167 31105|0.52778 31106|0.84722 31107|0.66667 31108|0.68056 31109|0.77778 31110|0.69444 31111|0.73611 31112|0.55556 31113|0.66667 31114|0.68056 31115|0.77778 31116|0.76389 31117|0.88889 31118|0.56944 31119|0.83333 31120|0.83333 31121|0.76389 31122|0.83333 31123|0.5 31124|0.77778 31125|0.81944 31126|0.72222 31127|0.875 31128|0.72222 31129|0.66667 31130|0.65278 31131|0.44444 31132|0.47222 31133|0.72222 31134|0.64583 31135|0.63889 31136|0.88889 31137|0.61111 31138|0.61111 31139|0.59722 31140|0.48611 31141|0.81944 31142|0.25 31143|0.44444 31144|0.875 31145|0.65278 31146|0.61111 31147|0.5 31148|0.5 31149|0.54167 31150|0.75 31151|0.58333 31152|0.44444 31153|0.84722 31154|0.5 31155|0.375 31156|0.75 31157|0.72222 31158|0.72222 31159|0.88889 31160|0.73611 31161|0.79167 31162|0.72222 31163|0.81944 31164|0.76389 31165|0.88889 31166|0.77778 31167|0.59722 31168|0.5 31169|0.44444 31170|0.5 31171|0.55556 31172|0.5 31173|0.56944 31174|0.77778 31175|0.83333 31176|0.5 31177|0.61111 31178|0.5 31179|0.5 31180|0.55556 31181|0.77778 31182|0.83333 31183|0.81944 31184|0.83333 31185|0.83333 31186|0.875 31187|0.61111 31188|0.625 31189|0.55556 31190|0.5 31191|0.5 31192|0.68056 31193|0.5 31194|0.52778 31195|0.61111 31196|0.5 31197|0.5 31198|0.55556 31199|0.23958 31200|0.5 31201|0.5 31202|0.61111 31203|0.5 31204|0.5 31205|0.5 31206|0.5 31207|0.61111 31208|0.54167 31209|0.66667 31210|0.61111 31211|0.43056 31212|0.69444 31213|0.77778 31214|0.61111 31215|0.72222 31216|0.55556 31217|0.5 31218|0.5 31219|0.51389 31220|0.5 31221|0.63889 31222|0.61111 31223|0.58333 31224|0.5 31225|0.51389 31226|0.63889 31227|0.5 31228|0.59722 31229|0.43056 31230|0.52778 31231|0.5 31232|0.5 31233|0.26389 31234|0.76389 31235|0.83333 31236|0.83333 31237|0.76389 31238|0.54167 31239|0.59722 31240|0.43056 31241|0.63889 31242|0.58333 31243|0.5 31244|0.75 31245|0.5 31246|0.45833 31247|0.51389 31248|0.5 31249|0.69444 31250|0.59722 31251|0.72222 31252|0.91667 31253|0.41667 31254|0.42708 31255|0.55556 31256|0.69444 31257|0.44444 31258|0.65278 31259|0.44444 31260|0.73611 31261|0.625 31262|0.5 31263|0.65278 31264|0.5 31265|0.33333 31266|0.30556 31267|0.76389 31268|0.52778 31269|0.48611 31270|0.66667 31271|0.5 31272|0.58333 31273|0.59722 31274|0.54167 31275|0.76389 31276|0.56944 31277|0.66667 31278|0.47222 31279|0.54167 31280|0.73611 31281|0.47222 31282|0.5 31283|0.48611 31284|0.5 31285|0.5 31286|0.16667 31287|0.083333 31288|0.44444 31289|0.34722 31290|0.5 31291|0.97222 31292|0.5 31293|0.5 31294|0.41667 31295|0.52778 31296|0.5 31297|0.52778 31298|0.54167 31299|0.5 31300|0.4375 31301|0.5 31302|0.72222 31303|0.66667 31304|0.5 31305|0.69444 31306|0.41667 31307|0.55556 31308|0.66667 31309|0.5 31310|0.56944 31311|0.58333 31312|0.51389 31313|0.34722 31314|0.625 31315|0.72222 31316|0.875 31317|0.5 31318|0.5 31319|0.58333 31320|0.86111 31321|0.5 31322|0.29167 31323|0.5 31324|0.5 31325|0.70833 31326|0.5 31327|0.5 31328|0.875 31329|0.94444 31330|0.90278 31331|0.90278 31332|0.84722 31333|0.59722 31334|0.65278 31335|0.3125 31336|0.36111 31337|0.36111 31338|0.33333 31339|0.91667 31340|0.69444 31341|0.88889 31342|0.80556 31343|0.76389 31344|0.375 31345|0.33333 31346|0.98611 31347|0.625 31348|0.5 31349|0.5 31350|0.83333 31351|0.72222 31352|0.38889 31353|0.52778 31354|0.44444 31355|0.47222 31356|0.72222 31357|0.44444 31358|0.51389 31359|0.51389 31360|0.5 31361|0.625 31362|0.54167 31363|0.63889 31364|0.55556 31365|0.66667 31366|0.5 31367|0.52778 31368|0.47222 31369|0.77778 31370|0.83333 31371|0.61111 31372|0.625 31373|0.44444 31374|0.29167 31375|0.83333 31376|0.61111 31377|0.44444 31378|0.86111 31379|0.5 31380|0.68056 31381|0.68056 31382|0.41667 31383|0.5 31384|0.47222 31385|0.44444 31386|0.48611 31387|0.44444 31388|0.5 31389|0.5 31390|0.70833 31391|0.59722 31392|0.80556 31393|0.88889 31394|0.95833 31395|0.77778 31396|0.79167 31397|0.5 31398|0.61111 31399|0.55556 31400|0.5 31401|0.80556 31402|0.83333 31403|0.48611 31404|0.61111 31405|0.46875 31406|0.77778 31407|0.5 31408|0.5 31409|0.82292 31410|0.93056 31411|0.91667 31412|0.72222 31413|0.91667 31414|0.875 31415|0.97222 31416|0.95833 31417|0.625 31418|0.73611 31419|0.69444 31420|0.47222 31421|0.76389 31422|0.76389 31423|0.72222 31424|0.77778 31425|0.5 31426|0.43056 31427|0.95833 31428|0.97222 31429|0.88889 31430|0.65278 31431|0.83333 31432|0.90278 31433|0.55556 31434|0.68056 31435|0.55556 31436|0.26389 31437|0.47222 31438|0.18056 31439|0.30556 31440|0.11111 31441|0.13889 31442|0.5 31443|0.36111 31444|0.75 31445|0.68056 31446|0.63889 31447|0.83333 31448|0.38889 31449|0.45833 31450|0.54167 31451|0.66667 31452|0.34722 31453|0.30556 31454|0.55556 31455|0.77778 31456|0.93056 31457|0.5 31458|0.5 31459|0.5 31460|0.54167 31461|0.69444 31462|0.59722 31463|0.54167 31464|0.5 31465|0.5 31466|0.47222 31467|0.5 31468|0.44444 31469|0.68056 31470|0.5 31471|0.81944 31472|0.69444 31473|0.76389 31474|0.75 31475|0.38889 31476|0.55556 31477|0.79167 31478|0.625 31479|0.58333 31480|0.44444 31481|0.20833 31482|0.26389 31483|0.73611 31484|0.65278 31485|0.51389 31486|0.44444 31487|0.80556 31488|0.5 31489|0.72222 31490|0.75 31491|0.55556 31492|0.69444 31493|0.66667 31494|0.51389 31495|0.5 31496|0.54167 31497|0.73611 31498|0.72917 31499|0.80556 31500|0.88889 31501|0.75 31502|0.70833 31503|0.93056 31504|0.80556 31505|0.68056 31506|0.66667 31507|0.69444 31508|0.55556 31509|0.83333 31510|0.5 31511|0.83333 31512|0.69444 31513|0.97222 31514|0.95833 31515|0.72222 31516|0.70833 31517|0.22222 31518|0.69444 31519|0.86111 31520|0.95833 31521|0.22222 31522|0.30556 31523|0.41667 31524|0.5 31525|0.44444 31526|0.69444 31527|0.54167 31528|0.5 31529|0.52778 31530|0.72222 31531|0.77778 31532|0.83333 31533|0.90278 31534|0.55556 31535|0.63889 31536|0.66667 31537|0.72222 31538|0.58333 31539|0.77778 31540|0.73611 31541|0.625 31542|0.55556 31543|0.66667 31544|0.72222 31545|0.59722 31546|0.5 31547|0.5 31548|0.5 31549|0.81944 31550|0.5 31551|0.63889 31552|0.75 31553|0.68056 31554|0.83333 31555|0.61111 31556|0.61111 31557|0.80556 31558|0.80208 31559|0.88889 31560|0.81944 31561|0.79167 31562|0.36111 31563|0.083333 31564|0.33333 31565|0.41667 31566|0.59722 31567|0.72222 31568|0.44444 31569|0.4375 31570|0.5 31571|0.5 31572|0.5 31573|0.61111 31574|0.61111 31575|0.55556 31576|0.56944 31577|0.51389 31578|0.5 31579|0.61111 31580|0.45833 31581|0.44444 31582|0.44444 31583|0.5 31584|0.63889 31585|0.47222 31586|0.56944 31587|0.52778 31588|0.59722 31589|0.63889 31590|0.33333 31591|0.47222 31592|0.52778 31593|0.52778 31594|0.5 31595|0.63889 31596|0.81944 31597|0.43056 31598|0.75 31599|0.34722 31600|0.5 31601|0.56944 31602|0.65278 31603|0.66667 31604|0.61111 31605|0.83333 31606|0.83333 31607|0.80556 31608|0.43056 31609|0.22222 31610|0.25 31611|0.76389 31612|0.69444 31613|0.5 31614|0.5 31615|0.5 31616|0.65278 31617|0.5 31618|0.5 31619|0.66667 31620|0.75 31621|0.66667 31622|0.81944 31623|0.61111 31624|0.5 31625|0.5 31626|0.75 31627|0.73611 31628|0.5 31629|0.73611 31630|0.5 31631|0.47222 31632|1 31633|0.69444 31634|0.88889 31635|0.5 31636|0.68056 31637|0.81944 31638|0.73611 31639|0.70833 31640|0.56944 31641|0.76389 31642|0.61111 31643|0.56944 31644|0.61111 31645|0.5 31646|0.61111 31647|0.83333 31648|0.63889 31649|0.90278 31650|0.80556 31651|0.70833 31652|0.88889 31653|0.81944 31654|0.77778 31655|0.66667 31656|0.625 31657|0.5 31658|0.875 31659|0.84722 31660|0.73611 31661|0.65278 31662|0.83333 31663|0.68056 31664|0.93056 31665|0.68056 31666|0.61111 31667|0.55556 31668|0.54167 31669|0.58333 31670|0.5 31671|0.56944 31672|0.51389 31673|0.54167 31674|0.5 31675|0.65278 31676|0.54167 31677|0.5 31678|0.45833 31679|0.5 31680|0.63889 31681|0.45833 31682|0.48611 31683|0.69444 31684|0.65278 31685|0.94444 31686|0.59722 31687|0.5 31688|0.5 31689|0.59722 31690|0.73611 31691|0.33333 31692|0.48611 31693|0.84722 31694|0.43056 31695|0.55556 31696|0.52778 31697|0.70833 31698|0.43056 31699|0.5 31700|0.5 31701|0.48611 31702|0.5 31703|0.52778 31704|0.54167 31705|0.51389 31706|0.45833 31707|0.38889 31708|0.73611 31709|0.5 31710|0.5 31711|0.52778 31712|0.5 31713|0.5 31714|0.5 31715|0.33333 31716|0.54167 31717|0.52778 31718|0.5 31719|0.38889 31720|0.55556 31721|0.38889 31722|0.5 31723|0.77778 31724|0.51389 31725|0.55556 31726|0.66667 31727|0.56944 31728|0.52778 31729|0.69444 31730|0.5 31731|0.5 31732|0.58333 31733|0.5 31734|0.56944 31735|0.63889 31736|0.61111 31737|0.5 31738|0.5 31739|0.5 31740|0.55556 31741|0.55556 31742|0.61111 31743|0.5 31744|0.80556 31745|0.5 31746|0.59722 31747|0.51042 31748|0.61111 31749|0.41667 31750|0.56944 31751|0.76389 31752|0.59722 31753|0.59722 31754|0.55556 31755|0.5 31756|0.76389 31757|0.61111 31758|0.63889 31759|0.58333 31760|0.5 31761|0.44444 31762|0.55556 31763|0.56944 31764|0.66667 31765|0.5 31766|0.5 31767|0.68056 31768|0.38889 31769|0.69444 31770|0.5 31771|0.59722 31772|0.38889 31773|0.66667 31774|0.45833 31775|0.83333 31776|0.56944 31777|0.69444 31778|0.40278 31779|0.5 31780|0.5 31781|0.58333 31782|0.77778 31783|0.48611 31784|0.375 31785|0.625 31786|0.68056 31787|0.80556 31788|0.5 31789|0.51389 31790|0.5 31791|0.83333 31792|0.625 31793|0.55556 31794|0.77778 31795|0.80556 31796|0.61111 31797|0.66667 31798|0.5 31799|0.69444 31800|0.43056 31801|0.63889 31802|0.54167 31803|0.61111 31804|0.65278 31805|0.55556 31806|0.54167 31807|0.38889 31808|0.5 31809|0.34722 31810|0.40278 31811|0.5 31812|0.5 31813|0.63889 31814|0.61111 31815|0.61111 31816|0.70833 31817|0.47222 31818|0.83333 31819|0.44444 31820|0.58333 31821|0.5 31822|0.5 31823|0.41667 31824|0.5 31825|0.48611 31826|0.5 31827|0.5 31828|0.47222 31829|0.40278 31830|0.26389 31831|0.5 31832|0.56944 31833|0.5 31834|0.80556 31835|0.52778 31836|0.55556 31837|0.625 31838|0.5 31839|0.5 31840|0.5 31841|0.5 31842|0.44444 31843|0.44444 31844|0.5 31845|0.5 31846|0.5 31847|0.63889 31848|0.48611 31849|0.44444 31850|0.5 31851|0.56944 31852|0.65278 31853|0.77778 31854|0.76389 31855|0.625 31856|0.52778 31857|0.84722 31858|0.76389 31859|0.72222 31860|0.84722 31861|0.44444 31862|0.79167 31863|0.55556 31864|0.5 31865|0.5 31866|0.33333 31867|0.72222 31868|0.75 31869|0.61111 31870|0.5 31871|0.61111 31872|0.5 31873|0.38889 31874|0.5 31875|0.58333 31876|0.5 31877|0.66667 31878|0.76389 31879|0.5 31880|0.88889 31881|0.77778 31882|0.5 31883|0.5 31884|0.76389 31885|0.55556 31886|0.45833 31887|0.44444 31888|0.5 31889|0.5 31890|0.44444 31891|0.88889 31892|0.5 31893|0.75 31894|0.69444 31895|0.33333 31896|0.5 31897|0.48611 31898|0.5 31899|0.63889 31900|0.5 31901|0.5 31902|0.5 31903|0.625 31904|0.44444 31905|0.52778 31906|0.54167 31907|0.59722 31908|0.90278 31909|0.45833 31910|0.55556 31911|0.55556 31912|0.22222 31913|0.55556 31914|0.56944 31915|0.66667 31916|0.54167 31917|0.55556 31918|0.38889 31919|0.5 31920|0.33333 31921|0.51389 31922|0.625 31923|0.5 31924|0.51389 31925|0.48611 31926|0.5 31927|0.38889 31928|0.55556 31929|0.51389 31930|0.55556 31931|0.54167 31932|0.5 31933|0.66667 31934|0.58333 31935|0.63889 31936|0.54167 31937|0.47222 31938|0.625 31939|0.65278 31940|0.83333 31941|0.93056 31942|0.68056 31943|0.83333 31944|0.58333 31945|0.68056 31946|0.75 31947|0.5 31948|0.63889 31949|0.58333 31950|0.51389 31951|0.52778 31952|0.61111 31953|0.59722 31954|0.75 31955|0.56944 31956|0.66667 31957|0.70833 31958|0.72222 31959|0.73958 31960|0.80556 31961|0.63889 31962|0.91667 31963|0.94444 31964|0.66667 31965|0.80556 31966|0.80556 31967|0.77778 31968|0.81944 31969|0.70833 31970|0.70833 31971|0.94444 31972|0.29167 31973|0.83333 31974|0.58333 31975|0.80556 31976|0.83333 31977|0.41667 31978|0.44444 31979|0.38889 31980|0.31944 31981|0.83333 31982|0.5 31983|0.65278 31984|0.52778 31985|0.55556 31986|0.52778 31987|0.61111 31988|0.38889 31989|0.69444 31990|0.5 31991|0.76389 31992|0.54167 31993|0.44444 31994|0.61111 31995|0.44444 31996|0.5 31997|0.38889 31998|0.51389 31999|0.5 32000|0.55556 32001|0.33333 32002|0.36111 32003|0.79167 32004|0.5 32005|0.55556 32006|0.5 32007|0.83333 32008|0.5 32009|0.55556 32010|0.61111 32011|0.875 32012|0.65278 32013|0.54167 32014|0.55556 32015|0.48611 32016|0.75 32017|0.77778 32018|0.73611 32019|0.58333 32020|0.61111 32021|0.80556 32022|0.5 32023|0.80556 32024|0.5 32025|0.55556 32026|0.69444 32027|0.31944 32028|0.22222 32029|0.5 32030|0.625 32031|0.77778 32032|0.80556 32033|0.86458 32034|0.94444 32035|0.94444 32036|0.69444 32037|0.55556 32038|0.80556 32039|0.90278 32040|0.45833 32041|0.79167 32042|0.86111 32043|0.61111 32044|0.69444 32045|0.59722 32046|0.38889 32047|0.59722 32048|0.66667 32049|0.43056 32050|0.47222 32051|0.65278 32052|0.73611 32053|0.625 32054|0.83333 32055|0.5 32056|0.55556 32057|0.65278 32058|0.5 32059|0.55556 32060|0.68056 32061|0.69444 32062|0.70833 32063|0.54167 32064|0.5 32065|0.58333 32066|0.80556 32067|0.5 32068|0.5 32069|0.5 32070|0.86111 32071|0.70833 32072|0.55556 32073|0.88889 32074|0.61111 32075|0.86111 32076|0.73611 32077|0.79167 32078|0.88889 32079|0.83333 32080|0.73611 32081|0.68056 32082|0.80556 32083|0.51389 32084|0.11111 32085|0.48611 32086|0.77778 32087|0.51389 32088|0.69444 32089|0.77778 32090|0.59722 32091|0.58333 32092|0.5 32093|0.40278 32094|0.61111 32095|0.69444 32096|0.77778 32097|0.33333 32098|0.29167 32099|0.61111 32100|0.80556 32101|0.72917 32102|0.51389 32103|0.65278 32104|0.76389 32105|0.55556 32106|0.68056 32107|0.72222 32108|0.48611 32109|0.51389 32110|0.68056 32111|0.55556 32112|0.66667 32113|0.77778 32114|0.63889 32115|0.625 32116|0.76042 32117|0.55556 32118|0.70833 32119|0.19444 32120|0.45833 32121|0.79167 32122|0.75 32123|0.54167 32124|0.72222 32125|0.75 32126|0.83333 32127|0.69444 32128|0.80556 32129|0.84722 32130|0.84722 32131|0.88889 32132|0.84722 32133|0.72222 32134|0.79167 32135|0.72222 32136|0.70833 32137|0.70833 32138|0.73611 32139|0.63889 32140|0.5 32141|0.5 32142|0.72222 32143|0.77778 32144|0.75 32145|0.56944 32146|0.5 32147|0.69792 32148|0.93056 32149|0.72222 32150|0.80556 32151|0.88889 32152|0.88889 32153|0.13889 32154|0.29167 32155|0.55556 32156|0.63889 32157|0.33333 32158|0.61111 32159|0.375 32160|0.5 32161|0.66667 32162|0.48611 32163|0.75 32164|0.66667 32165|0.5 32166|0.77778 32167|0.81944 32168|0.72222 32169|0.5 32170|0.875 32171|0.73611 32172|0.55556 32173|0.70833 32174|0.52778 32175|0.5 32176|0.81944 32177|0.81944 32178|0.86111 32179|0.95833 32180|0.84722 32181|0.93056 32182|0.58333 32183|0.76389 32184|0.75 32185|0.83333 32186|0.76389 32187|0.63889 32188|0.75 32189|0.79167 32190|0.88889 32191|0.75 32192|0.65278 32193|0.72222 32194|0.44444 32195|0.54167 32196|0.5 32197|0.51389 32198|0.29167 32199|0.41667 32200|0.52778 32201|0.45833 32202|0.68056 32203|0.48611 32204|0.47222 32205|0.69444 32206|0.94444 32207|0.79167 32208|0.52778 32209|0.5 32210|0.41667 32211|0.375 32212|0.20833 32213|0.5 32214|0.44444 32215|0.5 32216|0.5 32217|0.55556 32218|0.61111 32219|0.51389 32220|0.63889 32221|0.5 32222|0.625 32223|0.77778 32224|0.5 32225|0.5 32226|0.5 32227|0.5 32228|0.61111 32229|0.86111 32230|0.70833 32231|0.5 32232|0.5 32233|0.76389 32234|0.58333 32235|0.38889 32236|0.48611 32237|0.36111 32238|0.16667 32239|0.5 32240|0.5 32241|0.5 32242|0.48611 32243|0.625 32244|0.5 32245|0.5 32246|0.5 32247|0.40278 32248|0.61111 32249|0.68056 32250|0.5 32251|0.55556 32252|0.59722 32253|0.63889 32254|0.5 32255|0.5 32256|0.43056 32257|0.30556 32258|0.88889 32259|0.625 32260|0.79167 32261|0.75 32262|0.5 32263|0.79167 32264|0.77778 32265|0.41667 32266|0.56944 32267|0.65278 32268|0.79167 32269|0.63889 32270|0.45833 32271|0.29167 32272|0.84722 32273|0.79167 32274|0.72222 32275|0.875 32276|0.83333 32277|0.76389 32278|0.80556 32279|0.77778 32280|0.63542 32281|0.76389 32282|0.5 32283|0.55556 32284|0.72222 32285|0.52778 32286|0.80556 32287|0.88889 32288|0.44444 32289|0.38889 32290|0.72917 32291|0.76389 32292|0.20833 32293|0.80556 32294|0.72222 32295|0.97222 32296|0.93056 32297|0.90278 32298|0.75 32299|0.54167 32300|0.875 32301|0.79167 32302|0.77778 32303|0.79167 32304|0.66667 32305|0.66667 32306|0.80556 32307|0.5 32308|0.63889 32309|0.77778 32310|0.79167 32311|0.5 32312|0.77778 32313|0.36111 32314|0.58333 32315|0.44444 32316|0.29167 32317|0.54167 32318|0.48611 32319|0.84722 32320|0.79167 32321|0.77778 32322|0.54167 32323|0.72222 32324|0.33333 32325|0.5 32326|0.63889 32327|0.5 32328|0.66667 32329|0.58333 32330|0.80556 32331|0.66667 32332|0.5 32333|0.66667 32334|0.79167 32335|0.66667 32336|0.70833 32337|0.79167 32338|0.75 32339|0.83333 32340|0.76389 32341|0.80556 32342|0.61111 32343|0.66667 32344|0.51389 32345|0.91667 32346|0.91667 32347|0.48611 32348|0.31944 32349|0.61111 32350|0.16667 32351|0.31944 32352|0.52778 32353|0.5 32354|0.61111 32355|0.44444 32356|0.76389 32357|0.69792 32358|0.73611 32359|0.79167 32360|0.51389 32361|0.59722 32362|0.22222 32363|0.56944 32364|0.55556 32365|0.48611 32366|0.375 32367|0.77778 32368|0.55556 32369|0.44444 32370|0.54167 32371|0.69444 32372|0.52083 32373|0.55556 32374|0.30556 32375|0.61111 32376|0.5 32377|0.79167 32378|0.5 32379|0.11111 32380|0.40278 32381|0.95833 32382|0.81944 32383|0.52778 32384|0.54167 32385|0.47222 32386|0.59722 32387|0.54167 32388|0.38889 32389|0.68056 32390|0.5 32391|0.69444 32392|0.5 32393|0.83333 32394|0.52778 32395|0.58333 32396|0.66667 32397|0.75 32398|0.48611 32399|0.58333 32400|0.19444 32401|0.5 32402|0.5 32403|0.56944 32404|0.52778 32405|0.51389 32406|0.76389 32407|0.76389 32408|0.66667 32409|0.52778 32410|0.63889 32411|0.59722 32412|0.5 32413|0.84722 32414|0.83333 32415|0.5 32416|0.77778 32417|0.5 32418|0.66667 32419|0.5 32420|0.69444 32421|0.88889 32422|0.81944 32423|0.81944 32424|0.81944 32425|0.66667 32426|0.54167 32427|0.66667 32428|0.54167 32429|0.5 32430|0.61111 32431|0.72222 32432|0.5 32433|0.58333 32434|0.77778 32435|0.76389 32436|0.72222 32437|0.80556 32438|0.51389 32439|0.75 32440|0.80556 32441|0.55556 32442|0.54167 32443|0.51389 32444|0.83333 32445|0.73611 32446|0.79167 32447|0.83333 32448|0.63889 32449|0.76042 32450|0.90278 32451|0.95833 32452|0.51389 32453|0.5 32454|0.44444 32455|0.61111 32456|0.41667 32457|0.52778 32458|0.30556 32459|0.52778 32460|0.55556 32461|0.52778 32462|0.5 32463|0.83333 32464|0.5 32465|0.51389 32466|0.76389 32467|0.72222 32468|0.68056 32469|0.61111 32470|0.59722 32471|0.55556 32472|0.80556 32473|0.72222 32474|0.69444 32475|0.51389 32476|0.69444 32477|0.5 32478|0.36111 32479|0.41667 32480|0.5 32481|0.58333 32482|0.65278 32483|0.5 32484|0.63889 32485|0.54167 32486|0.5 32487|0.63889 32488|0.5 32489|0.63889 32490|0.73611 32491|0.77778 32492|0.55556 32493|0.5 32494|0.61111 32495|0.52778 32496|0.79167 32497|0.75 32498|0.52778 32499|0.81944 32500|0.86111 32501|0.875 32502|0.93056 32503|0.83333 32504|0.5 32505|0.5 32506|0.72222 32507|0.5 32508|0.70833 32509|0.72222 32510|0.72222 32511|0.5 32512|0.55556 32513|0.63889 32514|0.5 32515|0.5 32516|0.52778 32517|0.5 32518|0.5 32519|0.31944 32520|0.5 32521|0.55556 32522|0.5 32523|0.59722 32524|0.44444 32525|0.55556 32526|0.76389 32527|0.86111 32528|0.86111 32529|0.77778 32530|0.52778 32531|0.72222 32532|0.5 32533|0.54167 32534|0.75 32535|0.5 32536|0.52778 32537|0.54167 32538|0.86111 32539|0.5 32540|0.5 32541|0.54167 32542|0.58333 32543|0.33333 32544|0.38889 32545|0.5 32546|0.94444 32547|0.5 32548|0.5 32549|0.51389 32550|0.80556 32551|0.55556 32552|0.5 32553|0.52778 32554|0.5 32555|0.43056 32556|0.55556 32557|0.90278 32558|0.38889 32559|0.5 32560|0.68056 32561|0.5 32562|0.61111 32563|0.48611 32564|0.83333 32565|0.76389 32566|0.36111 32567|0.58333 32568|0.625 32569|0.63889 32570|0.77778 32571|0.5 32572|0.52083 32573|0.36111 32574|0.5 32575|0.51389 32576|0.63889 32577|0.58333 32578|0.73611 32579|0.70833 32580|0.5 32581|0.27778 32582|0.48611 32583|0.5 32584|0.76389 32585|0.61111 32586|0.70833 32587|0.77778 32588|0.65278 32589|0.5 32590|0.69444 32591|0.70833 32592|0.5 32593|0.80556 32594|0.5 32595|0.5 32596|0.875 32597|0.72222 32598|0.5 32599|0.5 32600|0.5 32601|0.55556 32602|0.59722 32603|0.5 32604|0.5 32605|0.66667 32606|0.51042 32607|0.5 32608|0.5 32609|0.36111 32610|0.41667 32611|0.625 32612|0.26389 32613|0.36111 32614|0.33333 32615|0.44444 32616|0.38889 32617|0.16667 32618|0.5 32619|0.45833 32620|0.63889 32621|0.61111 32622|0.875 32623|0.84722 32624|0.5 32625|0.375 32626|0.55556 32627|0.70833 32628|0.56944 32629|0.5 32630|0.72222 32631|0.68056 32632|0.75 32633|0.81944 32634|0.70833 32635|0.55556 32636|0.70833 32637|0.81944 32638|0.86111 32639|0.5 32640|0.80556 32641|0.79167 32642|0.23611 32643|0.29167 32644|0.5 32645|0.58333 32646|0.52778 32647|0.5 32648|0.73611 32649|0.5 32650|0.77778 32651|0.5 32652|0.65278 32653|0.38889 32654|0.5 32655|0.48611 32656|0.47222 32657|0.5 32658|0.5 32659|0.5 32660|0.5 32661|0.44444 32662|0.44444 32663|0.61111 32664|0.61111 32665|0.54167 32666|0.625 32667|0.80556 32668|0.68056 32669|0.56944 32670|0.76389 32671|0.75 32672|0.70833 32673|0.70833 32674|0.58333 32675|0.52778 32676|0.55556 32677|0.5 32678|0.66667 32679|0.41667 32680|0.625 32681|0.875 32682|0.5 32683|0.5 32684|0.52778 32685|0.5 32686|0.47222 32687|0.66667 32688|0.65278 32689|0.5 32690|0.5 32691|0.5 32692|0.5 32693|0.72222 32694|0.83333 32695|0.86111 32696|0.73611 32697|0.77778 32698|0.52778 32699|0.5 32700|0.5 32701|0.43056 32702|0.5 32703|0.5 32704|0.5 32705|0.5 32706|0.44444 32707|0.52778 32708|0.76389 32709|0.5 32710|0.55556 32711|0.5 32712|0.54167 32713|0.625 32714|0.43056 32715|0.5 32716|0.66667 32717|0.55556 32718|0.58333 32719|0.56944 32720|0.58333 32721|0.5 32722|0.27778 32723|0.5 32724|0.56944 32725|0.58333 32726|0.19444 32727|0.5 32728|0.45833 32729|0.5 32730|0.40278 32731|0.5 32732|0.44444 32733|0.38889 32734|0.58333 32735|0.86111 32736|0.94444 32737|0.27778 32738|0.63889 32739|0.5 32740|0.52778 32741|0.61111 32742|0.47222 32743|0.33333 32744|0.34722 32745|0.54167 32746|0.63889 32747|0.52778 32748|0.45833 32749|0.25 32750|0.77778 32751|0.80556 32752|0.27778 32753|0.45833 32754|0.625 32755|0.90278 32756|0.38889 32757|0.43056 32758|0.48611 32759|0.48611 32760|0.19444 32761|0.70833 32762|0.61111 32763|0.43056 32764|0.90278 32765|0.88542 32766|0.84722 32767|0.79167 32768|0.55556 32769|0.81944 32770|0.25 32771|0.5 32772|0.36111 32773|0.38542 32774|0.44444 32775|0.5 32776|0.40278 32777|0.61111 32778|0.65278 32779|0.38889 32780|0.54167 32781|0.875 32782|0.66667 32783|0.79167 32784|0.55556 32785|0.54167 32786|0.69444 32787|0.69444 32788|0.5 32789|0.5 32790|0.5 32791|0.5 32792|0.5 32793|0.5 32794|0.5 32795|0.5 32796|0.625 32797|0.41667 32798|0.79167 32799|0.76389 32800|0.5 32801|0.5 32802|0.5 32803|0.5 32804|0.5 32805|0.33333 32806|0.78125 32807|0.5 32808|0.5 32809|0.55556 32810|0.5 32811|0.63889 32812|0.81944 32813|0.76389 32814|0.36111 32815|0.5 32816|0.51389 32817|0.47222 32818|0.54167 32819|0.55556 32820|0.38889 32821|0.48611 32822|0.65278 32823|0.84722 32824|0.38889 32825|0.76389 32826|0.31944 32827|0.55556 32828|0.77778 32829|0.77778 32830|0.68056 32831|0.79167 32832|0.66667 32833|0.81944 32834|0.79167 32835|0.86111 32836|0.54167 32837|0.55556 32838|0.55556 32839|0.80556 32840|0.5 32841|0.40278 32842|0.86111 32843|0.80556 32844|0.31944 32845|0.22222 32846|0.56944 32847|0.5 32848|0.54167 32849|0.5 32850|0.44444 32851|0.5 32852|0.65278 32853|0.90278 32854|0.5 32855|0.5 32856|0.5 32857|0.33333 32858|0.54167 32859|0.76389 32860|0.63889 32861|0.27778 32862|0.5 32863|0.63889 32864|0.58333 32865|0.80556 32866|0.5 32867|0.65278 32868|0.61111 32869|0.45833 32870|0.36111 32871|0.5 32872|0.95833 32873|0.73611 32874|0.76389 32875|0.43056 32876|0.58333 32877|0.45833 32878|0.27778 32879|0.30556 32880|0.61111 32881|0.54167 32882|0.22222 32883|0.48611 32884|0.66667 32885|0.70833 32886|0.55556 32887|0.70833 32888|0.47222 32889|0.23611 32890|0.5 32891|0.55556 32892|0.5 32893|0.70833 32894|0.5 32895|0.5 32896|0.5 32897|0.5 32898|0.55556 32899|0.5 32900|0.5 32901|0.5 32902|0.5 32903|0.66667 32904|0.5 32905|0.5 32906|0.47222 32907|0.5 32908|0.5 32909|0.40278 32910|0.5 32911|0.5 32912|0.5 32913|0.5 32914|0.48611 32915|0.625 32916|0.75 32917|0.88889 32918|0.72222 32919|0.5 32920|0.65278 32921|0.625 32922|0.5 32923|0.5 32924|0.5 32925|0.45833 32926|0.44444 32927|0.5 32928|0.5 32929|0.55556 32930|0.52778 32931|0.61111 32932|0.5 32933|0.34722 32934|0.51389 32935|0.47222 32936|0.5 32937|0.54167 32938|0.5 32939|0.5 32940|0.625 32941|0.55556 32942|0.5 32943|0.86111 32944|0.88889 32945|0.5 32946|0.55556 32947|0.59722 32948|0.56944 32949|1 32950|0.5 32951|0.68056 32952|0.38889 32953|0.5 32954|0.76389 32955|0.63889 32956|0.58333 32957|0.5 32958|0.76389 32959|0.70833 32960|0.54167 32961|0.625 32962|0.47222 32963|0.5 32964|0.5 32965|0.625 32966|0.69444 32967|0.5 32968|0.44444 32969|0.5 32970|0.55556 32971|0.5 32972|0.5 32973|0.52778 32974|0.79167 32975|0.375 32976|0.625 32977|0.75 32978|0.73611 32979|0.79167 32980|0.5 32981|0.69444 32982|0.77778 32983|0.38889 32984|0.5 32985|0.65278 32986|0.5 32987|0.55556 32988|0.65278 32989|0.65278 32990|0.5 32991|0.5 32992|0.58333 32993|0.36111 32994|0.55556 32995|0.52778 32996|0.59722 32997|0.5 32998|0.52083 32999|0.5 33000|0.5 33001|0.5 33002|0.48611 33003|0.43056 33004|0.55556 33005|0.61111 33006|0.5 33007|0.55556 33008|0.90278 33009|0.55556 33010|0.98611 33011|0.47222 33012|0.84722 33013|0.76389 33014|0.73611 33015|0.75 33016|0.5 33017|0.29167 33018|0.22222 33019|0.5 33020|0.45833 33021|0.91667 33022|0.51389 33023|0.51389 33024|0.79167 33025|0.88889 33026|0.84722 33027|0.33333 33028|0.43056 33029|0.41667 33030|0.54167 33031|0.77778 33032|0.59722 33033|0.41667 33034|0.63889 33035|0.76389 33036|0.77778 33037|0.59722 33038|0.5 33039|0.68056 33040|0.20833 33041|0.54167 33042|0.5 33043|0.5 33044|0.27778 33045|0.66667 33046|0.63889 33047|0.61111 33048|0.61111 33049|0.88889 33050|0.41667 33051|0.20833 33052|0.77778 33053|0.86111 33054|0.875 33055|0.66667 33056|0.44444 33057|0.55556 33058|0.5 33059|0.63889 33060|0.18056 33061|0.63889 33062|0.66667 33063|0.5 33064|0.5 33065|0.72222 33066|0.625 33067|0.44444 33068|0.69444 33069|0.5 33070|0.5 33071|0.5 33072|0.44444 33073|0.54167 33074|0.81944 33075|0.91667 33076|0.83333 33077|0.88889 33078|0.84722 33079|0.81944 33080|0.70833 33081|0.69444 33082|0.75 33083|0.63889 33084|0.77778 33085|0.80556 33086|0.52778 33087|0.41667 33088|0.625 33089|0.38889 33090|0.22222 33091|0.5625 33092|0.97222 33093|1 33094|0.86111 33095|0.79167 33096|0.75 33097|0.86111 33098|0.80556 33099|0.81944 33100|0.83333 33101|0.75 33102|0.83333 33103|0.5 33104|0.875 33105|0.83333 33106|0.52778 33107|0.76389 33108|0.68056 33109|0.70833 33110|0.55556 33111|0.44444 33112|0.5 33113|0.5 33114|0.5 33115|0.5 33116|0.5 33117|0.69444 33118|0.81944 33119|0.72222 33120|0.79167 33121|0.80556 33122|0.69444 33123|0.55556 33124|0.58333 33125|0.68056 33126|0.38889 33127|0.5 33128|0.51389 33129|0.77778 33130|0.29167 33131|0.59722 33132|0.5 33133|0.5 33134|0.63889 33135|0.51389 33136|0.5 33137|0.44444 33138|0.54167 33139|0.61111 33140|0.45833 33141|0.44444 33142|0.70833 33143|0.5 33144|0.5 33145|0.55556 33146|0.55556 33147|0.31944 33148|0.5 33149|0.83333 33150|0.44444 33151|0.58333 33152|0.63889 33153|0.65278 33154|0.55556 33155|0.69444 33156|0.5 33157|0.82292 33158|0.79167 33159|0.77778 33160|0.53125 33161|0.55556 33162|0.38889 33163|0.44444 33164|0.73611 33165|0.59722 33166|0.58333 33167|0.75 33168|0.55556 33169|1 33170|0.69444 33171|0.73611 33172|0.79167 33173|0.5 33174|0.61111 33175|0.41667 33176|0.80556 33177|0.52778 33178|0.73611 33179|0.83333 33180|0.73611 33181|0.79167 33182|0.88889 33183|0.80556 33184|0.83333 33185|1 33186|0.84722 33187|0.45833 33188|0.5 33189|0.54167 33190|0.75 33191|0.875 33192|0.55556 33193|0.77778 33194|0.73611 33195|0.625 33196|0.54167 33197|0.80208 33198|0.84722 33199|0.75 33200|0.81944 33201|0.70833 33202|0.88889 33203|0.75 33204|0.5 33205|0.58333 33206|0.80556 33207|0.56944 33208|0.77778 33209|0.66667 33210|0.79167 33211|0.93056 33212|0.95833 33213|0.69444 33214|0.54167 33215|0.38889 33216|0.6875 33217|0.69444 33218|0.61111 33219|0.65278 33220|0.83333 33221|0.80556 33222|0.79167 33223|0.027778 33224|0.83333 33225|0.41667 33226|0.79167 33227|0.93056 33228|0.69444 33229|0.73611 33230|0.90278 33231|0.83333 33232|0.66667 33233|0.90278 33234|0.72222 33235|0.66667 33236|0.71875 33237|0.56944 33238|0.31944 33239|0.72222 33240|0.68056 33241|0.72222 33242|0.65278 33243|0.55556 33244|0.80556 33245|0.90278 33246|0.68056 33247|0.61111 33248|0.75 33249|0.72917 33250|0.44444 33251|0.61111 33252|0.55556 33253|0.80556 33254|0.80556 33255|0.75 33256|0.79167 33257|0.61458 33258|0.76389 33259|0.79167 33260|0.90278 33261|0.84722 33262|0.83333 33263|0.83333 33264|0.80556 33265|0.83333 33266|0.68056 33267|0.76389 33268|0.5 33269|0.69444 33270|0.75 33271|0.77778 33272|0.84722 33273|0.77778 33274|0.77778 33275|0.90278 33276|0.84722 33277|0.38889 33278|0.81944 33279|0.81944 33280|0.81944 33281|0.93056 33282|0.48611 33283|0.91667 33284|0.95833 33285|0.5 33286|0.83333 33287|0.76389 33288|0.55556 33289|0.77778 33290|0.86111 33291|0.84722 33292|0.93056 33293|0.31944 33294|0.88889 33295|0.69444 33296|0.65278 33297|0.83333 33298|0.66667 33299|0.81944 33300|0.54167 33301|0.70833 33302|0.94444 33303|0.84722 33304|0.59722 33305|0.58333 33306|0.81944 33307|0.84722 33308|0.73611 33309|0.875 33310|0.86111 33311|0.65278 33312|0.44444 33313|0.27778 33314|0.875 33315|0.55556 33316|0.44444 33317|0.47222 33318|0.55556 33319|0.73611 33320|0.72222 33321|0.76389 33322|0.76389 33323|0.94444 33324|0.68056 33325|0.69444 33326|0.83333 33327|0.77778 33328|0.52778 33329|0.72222 33330|0.58333 33331|0.61111 33332|0.75 33333|0.72222 33334|0.5 33335|0.77778 33336|0.88889 33337|0.86111 33338|0.97222 33339|0.55556 33340|0.48611 33341|0.63889 33342|0.76389 33343|0.68056 33344|0.84722 33345|0.55556 33346|0.90278 33347|0.79167 33348|0.33333 33349|0.45833 33350|0.61111 33351|0.58333 33352|0.41667 33353|0.98611 33354|0.79167 33355|0.875 33356|0.91667 33357|0.72222 33358|0.76389 33359|0.83333 33360|0.5 33361|0.22222 33362|0.81944 33363|1 33364|0.79167 33365|0.33333 33366|0.33333 33367|0.48611 33368|0.83333 33369|0.97222 33370|0.79167 33371|0.38889 33372|0.56944 33373|0.44444 33374|0.40278 33375|0.56944 33376|0.75 33377|0.63889 33378|0.875 33379|0.84722 33380|0.80556 33381|0.69444 33382|0.88889 33383|0.79167 33384|0.69444 33385|0.68056 33386|0.55556 33387|0.61111 33388|0.44792 33389|0.54167 33390|0.5 33391|0.77778 33392|0.77778 33393|0.81944 33394|0.79167 33395|0.79167 33396|0.72222 33397|0.77778 33398|0.875 33399|0.40278 33400|0.66667 33401|0.59722 33402|0.33333 33403|0.33333 33404|0.5 33405|0.77778 33406|0.79167 33407|0.97222 33408|0.48611 33409|0.55556 33410|0.80556 33411|0.84722 33412|0.75 33413|0.72222 33414|0.54167 33415|0.45833 33416|0.52778 33417|0.25 33418|0.44444 33419|0.68056 33420|0.55556 33421|0.34722 33422|0.38889 33423|0.5 33424|0.61111 33425|0.625 33426|0.68056 33427|0.33333 33428|0.38889 33429|0.81944 33430|0.11111 33431|0.625 33432|0.79167 33433|0.55556 33434|0.44444 33435|0.63889 33436|0.80556 33437|0.29167 33438|0.47222 33439|0.56944 33440|0.59722 33441|0.75 33442|0.86111 33443|0.29167 33444|0.44444 33445|0.44444 33446|0.58333 33447|0.52778 33448|0.83333 33449|0.88889 33450|0.88889 33451|0.95833 33452|0.68056 33453|0.81944 33454|0.94444 33455|0.52778 33456|0.5 33457|0.41667 33458|0.5 33459|0.68056 33460|0.5 33461|0.80556 33462|0.97222 33463|0.79167 33464|0.48611 33465|0.20833 33466|0.72222 33467|0.59722 33468|0.88889 33469|0.81944 33470|0.54167 33471|0.26389 33472|0.30556 33473|0.88889 33474|0.91667 33475|0.72222 33476|0.71875 33477|0.61111 33478|0.27778 33479|0.5 33480|0.18056 33481|0.72222 33482|0.69444 33483|0.52778 33484|0.54167 33485|0.81944 33486|0.73611 33487|0.68056 33488|0.79167 33489|0.88889 33490|0.55556 33491|0.75 33492|0.95833 33493|0.73611 33494|0.69444 33495|0.75 33496|0.76389 33497|0.72222 33498|0.875 33499|0.95833 33500|0.83333 33501|0.65625 33502|0.65278 33503|0.93056 33504|0.84722 33505|0.375 33506|0.29167 33507|0.68056 33508|0.57292 33509|0.69444 33510|0.69792 33511|0.69444 33512|0.56944 33513|0.88889 33514|0.45833 33515|0.65278 33516|0.5 33517|0.55556 33518|0.34722 33519|0.38889 33520|0.68056 33521|0.47222 33522|0.38889 33523|0.51389 33524|0.73611 33525|0.5 33526|0.5 33527|0.55556 33528|0.72222 33529|0.72222 33530|0.23611 33531|0.73611 33532|0.75 33533|0.73611 33534|0.98611 33535|0.94444 33536|0.86111 33537|0.69444 33538|0.86111 33539|0.23611 33540|0.86111 33541|0.98611 33542|0.8125 33543|0.69792 33544|0.66667 33545|0.76389 33546|0.81944 33547|0.76389 33548|0.625 33549|0.76389 33550|0.89583 33551|0.90278 33552|0.68056 33553|0.68056 33554|0.80556 33555|0.61111 33556|0.33333 33557|0.75 33558|0.93056 33559|0.65278 33560|0.625 33561|0.66667 33562|0.80556 33563|0.76389 33564|0.69444 33565|0.97222 33566|0.30556 33567|0.76389 33568|0.65278 33569|0.98958 33570|0.72222 33571|0.72222 33572|0.80556 33573|0.84722 33574|0.76389 33575|0.88889 33576|0.97222 33577|0.59722 33578|0.47222 33579|0.73611 33580|0.73611 33581|0.79167 33582|0.58333 33583|0.68056 33584|0.93056 33585|0.84722 33586|0.27778 33587|0.77778 33588|0.80556 33589|0.79167 33590|0.44444 33591|0.44444 33592|0.94444 33593|0.84722 33594|0.76389 33595|0.88889 33596|0.76389 33597|0.63889 33598|0.22222 33599|0.79167 33600|0.45833 33601|0.95833 33602|0.5 33603|0.79167 33604|0.93056 33605|0.80556 33606|0.80556 33607|0.76389 33608|0.76389 33609|0.63889 33610|0.58333 33611|0.72222 33612|0.81944 33613|0.81944 33614|0.5 33615|0.65278 33616|0.38889 33617|0.61111 33618|0.81944 33619|0.375 33620|0.5 33621|0.66667 33622|0.5 33623|0.63889 33624|0.5 33625|0.5 33626|0.5 33627|0.40278 33628|0.73611 33629|0.72222 33630|0.33333 33631|0.77778 33632|0.36111 33633|0.66667 33634|0.4375 33635|0.54167 33636|0.76389 33637|0.70833 33638|0.34722 33639|0.33333 33640|0.30208 33641|0.27778 33642|0.72222 33643|0.69444 33644|0.65278 33645|0.84722 33646|0.44444 33647|0.63889 33648|0.56944 33649|0.59722 33650|0.51389 33651|0.84375 33652|0.76389 33653|0.83333 33654|0.72222 33655|0.72222 33656|0.5 33657|0.83333 33658|0.70833 33659|0.66667 33660|0.5 33661|0.5 33662|0.84722 33663|0.52778 33664|0.65278 33665|0.875 33666|0.83333 33667|0.44444 33668|0.47222 33669|0.52778 33670|0.33333 33671|0.56944 33672|0.66667 33673|0.44444 33674|0.43056 33675|0.5 33676|0.19444 33677|0.27778 33678|0.38889 33679|0.73611 33680|0.77778 33681|0.68056 33682|0.47222 33683|0.69444 33684|0.68056 33685|0.75 33686|0.5 33687|0.70833 33688|0.51389 33689|0.59722 33690|0.56944 33691|0.48611 33692|0.33333 33693|0.625 33694|0.63889 33695|0.91667 33696|0.81944 33697|0.625 33698|0.5 33699|0.38889 33700|0.65278 33701|0.77778 33702|0.61111 33703|0.69444 33704|0.38889 33705|0.5 33706|0.72222 33707|0.86111 33708|0.97222 33709|0.95833 33710|0.5 33711|0.75 33712|0.5 33713|0.72222 33714|0.61111 33715|0.48611 33716|0.52778 33717|0.77778 33718|0.63542 33719|0.70833 33720|0.61111 33721|0.68056 33722|0.59722 33723|0.55556 33724|0.55556 33725|0.88889 33726|0.5 33727|0.55556 33728|0.54167 33729|0.43056 33730|0.51389 33731|0.65278 33732|0.65278 33733|0.81944 33734|0.68056 33735|0.48611 33736|0.5 33737|0.5 33738|0.77778 33739|0.88889 33740|0.80556 33741|0.5 33742|0.5 33743|0.58333 33744|0.38889 33745|0.55556 33746|0.69444 33747|0.52778 33748|0.72222 33749|0.56944 33750|0.69444 33751|0.59722 33752|0.31944 33753|0.5 33754|0.44444 33755|0.27778 33756|0.16667 33757|0.47222 33758|0.47222 33759|0.625 33760|0.5 33761|0.45833 33762|0.59722 33763|0.5 33764|0.5 33765|0.83333 33766|0.5 33767|0.72222 33768|0.40278 33769|0.23611 33770|0.65278 33771|0.58333 33772|0.59722 33773|0.70833 33774|0.27778 33775|0.68056 33776|0.5 33777|0.70833 33778|0.26389 33779|0.79167 33780|0.79167 33781|0.75 33782|0.90278 33783|0.80556 33784|0.91667 33785|0.81944 33786|0.56944 33787|0.61111 33788|0.77778 33789|0.54167 33790|0.36111 33791|0.72222 33792|0.45833 33793|0.44444 33794|0.36111 33795|0.56944 33796|0.70833 33797|0.79167 33798|0.5 33799|0.5 33800|0.43056 33801|0.41667 33802|0.52778 33803|0.65278 33804|0.30556 33805|0.5 33806|0.55556 33807|0.23611 33808|0.16667 33809|0.72222 33810|0.5 33811|0.51389 33812|0.59722 33813|0.5 33814|0.38889 33815|0.48611 33816|0.55556 33817|0.5 33818|0.47222 33819|0.5 33820|0.65278 33821|0.68056 33822|0.75 33823|0.83333 33824|0.5 33825|0.5 33826|0.61111 33827|0.5 33828|0.61111 33829|0.65278 33830|0.63889 33831|0.59722 33832|0.5 33833|0.58333 33834|0.66667 33835|0.72222 33836|0.5 33837|0.33333 33838|0.29167 33839|0.22222 33840|0.5 33841|0.55556 33842|0.68056 33843|0.5 33844|0.69444 33845|0.55556 33846|0.55556 33847|0.5 33848|0.83333 33849|0.5 33850|0.73611 33851|0.5 33852|0.34722 33853|0.73611 33854|0.43056 33855|0.5 33856|0.81944 33857|0.5 33858|0.5 33859|0.5 33860|0.30556 33861|0.77778 33862|0.5 33863|0.55556 33864|0.94444 33865|0.68056 33866|0.5 33867|0.23611 33868|0.55556 33869|0.63889 33870|0.65278 33871|0.625 33872|0.28125 33873|0.31944 33874|0.5 33875|0.65278 33876|0.56944 33877|0.55556 33878|0.5 33879|0.33333 33880|0.63889 33881|0.52778 33882|0.20833 33883|0.375 33884|0.47222 33885|0.56944 33886|0.38889 33887|0.55556 33888|0.75 33889|0.5 33890|0.52778 33891|0.48611 33892|0.68056 33893|0.73611 33894|0.73611 33895|0.41667 33896|0.5 33897|0.80556 33898|0.43056 33899|0.61111 33900|0.38889 33901|0.38889 33902|0.83333 33903|0.76389 33904|0.45833 33905|0.22222 33906|0.51389 33907|0.44444 33908|0.58333 33909|0.80556 33910|0.61111 33911|0.83333 33912|0.84722 33913|0.83333 33914|0.47222 33915|0.38889 33916|0.69444 33917|0.90278 33918|0.52778 33919|0.33333 33920|0.66667 33921|0.55556 33922|0.34722 33923|0.88889 33924|0.52778 33925|0.83333 33926|0.70833 33927|0.63889 33928|0.70833 33929|0.63889 33930|0.61111 33931|0.59722 33932|0.56944 33933|0.55556 33934|0.97222 33935|0.91667 33936|0.44444 33937|0.33333 33938|0.5 33939|0.5 33940|0.73611 33941|0.47222 33942|0.5 33943|0.5 33944|0.47222 33945|0.45833 33946|0.48611 33947|0.5 33948|0.5 33949|0.70833 33950|0.68056 33951|0.44444 33952|0.70833 33953|0.52778 33954|0.5 33955|0.51389 33956|0.5 33957|0.73611 33958|0.61111 33959|0.75 33960|0.61111 33961|0.72222 33962|0.41667 33963|0.55556 33964|0.5 33965|0.54167 33966|0.68056 33967|0.30556 33968|0.625 33969|0.61111 33970|0.69444 33971|0.36111 33972|0.5 33973|0.51389 33974|0.5 33975|0.88889 33976|0.5 33977|0.55556 33978|0.52778 33979|0.44444 33980|0.61111 33981|0.51389 33982|0.59722 33983|0.48611 33984|0.5 33985|0.5 33986|0.5 33987|0.5 33988|0.44444 33989|0.5 33990|0.58333 33991|0.63889 33992|0.61111 33993|0.55556 33994|0.80556 33995|0.83333 33996|0.63889 33997|0.68056 33998|0.70833 33999|0.51389 34000|0.68056 34001|0.72222 34002|0.56944 34003|0.70833 34004|0.59722 34005|0.44444 34006|0.83333 34007|0.48611 34008|0.75 34009|0.73611 34010|0.51389 34011|0.20833 34012|0.5 34013|0.33333 34014|0.61111 34015|0.88889 34016|0.16667 34017|0.44444 34018|0.65278 34019|0.66667 34020|0.5 34021|0.5 34022|0.91667 34023|0.66667 34024|0.63889 34025|0.58333 34026|0.66667 34027|0.54167 34028|0.33333 34029|0.48611 34030|0.51389 34031|0.51389 34032|0.45833 34033|0.43056 34034|0.55556 34035|0.51389 34036|0.69444 34037|0.26042 34038|0.55556 34039|0.51389 34040|0.5 34041|0.55556 34042|0.5 34043|0.55556 34044|0.80556 34045|0.83333 34046|0.66667 34047|0.5 34048|0.72222 34049|0.44444 34050|0.79167 34051|0.81944 34052|0.31944 34053|0.59722 34054|0.70833 34055|0.5 34056|0.63889 34057|0.55556 34058|0.5 34059|0.5 34060|0.5 34061|0.875 34062|0.5 34063|0.67708 34064|0.625 34065|0.55556 34066|0.52778 34067|0.75 34068|0.66667 34069|0.72222 34070|0.75 34071|0.80556 34072|0.58333 34073|0.54167 34074|0.69444 34075|0.5 34076|0.52778 34077|0.5 34078|0.44444 34079|0.66667 34080|0.5 34081|0.5 34082|0.5 34083|0.73611 34084|0.86111 34085|0.66667 34086|0.58333 34087|0.76389 34088|0.625 34089|0.73611 34090|0.52778 34091|0.83333 34092|0.51389 34093|0.61111 34094|0.625 34095|0.58333 34096|0.75 34097|0.77778 34098|0.25 34099|0.5 34100|0.40278 34101|0.5 34102|0.66667 34103|0.52778 34104|0.27778 34105|0.33333 34106|0.47222 34107|0.45833 34108|0.61111 34109|0.48611 34110|0.52778 34111|0.5 34112|0.5 34113|0.22222 34114|0.38889 34115|0.54167 34116|0.55556 34117|0.54167 34118|0.63889 34119|0.55556 34120|0.61111 34121|0.33333 34122|0.43056 34123|0.375 34124|0.80556 34125|0.83333 34126|0.72222 34127|0.44444 34128|0.43056 34129|0.5 34130|0.72222 34131|0.52778 34132|0.52778 34133|0.56944 34134|0.47222 34135|0.34722 34136|0.70833 34137|0.72222 34138|0.54167 34139|0.65278 34140|0.76389 34141|0.75 34142|0.73611 34143|0.5 34144|0.44444 34145|0.48611 34146|0.52778 34147|0.44444 34148|0.86111 34149|0.15278 34150|0.33333 34151|0.48611 34152|0.5 34153|0.47222 34154|0.55556 34155|0.55556 34156|0.68056 34157|0.52778 34158|0.5 34159|0.55556 34160|0.93056 34161|0.5 34162|0.51389 34163|0.83333 34164|0.86111 34165|0.80556 34166|0.54167 34167|0.72222 34168|0.80556 34169|0.61111 34170|0.5 34171|0.66667 34172|0.5 34173|0.5 34174|0.6875 34175|0.5 34176|0.5 34177|0.5 34178|0.33333 34179|0.22222 34180|0.73611 34181|0.625 34182|0.5 34183|0.34722 34184|0.5 34185|0.36111 34186|0.38889 34187|0.5 34188|0.58333 34189|0.63889 34190|0.51389 34191|0.5 34192|0.73611 34193|0.69444 34194|0.59722 34195|0.5 34196|0.38889 34197|0.44444 34198|0.5 34199|0.58333 34200|0.56944 34201|0.26389 34202|0.55556 34203|0.5 34204|0.40278 34205|0.5 34206|0.58333 34207|0.16667 34208|0.27778 34209|0.27778 34210|0.5 34211|0.63889 34212|0.79167 34213|0.30556 34214|0.56944 34215|0.5 34216|0.375 34217|0.40278 34218|0.27778 34219|0.34722 34220|0.33333 34221|0.41667 34222|0.33333 34223|0.58333 34224|0.69444 34225|0.77778 34226|0.68056 34227|0.76389 34228|0.5 34229|0.77778 34230|0.76389 34231|0.59722 34232|0.55556 34233|0.88889 34234|0.75 34235|0.77778 34236|0.69444 34237|0.93056 34238|0.59722 34239|0.77778 34240|0.63889 34241|0.66667 34242|0.81944 34243|0.75 34244|0.80556 34245|0.70833 34246|0.93056 34247|0.83333 34248|0.41667 34249|0.33333 34250|0.43056 34251|0.27778 34252|0.41667 34253|0.70833 34254|0.47222 34255|0.54167 34256|0.55556 34257|0.80556 34258|0.76389 34259|0.33333 34260|0.40278 34261|0.72222 34262|0.625 34263|0.625 34264|0.61111 34265|0.55556 34266|0.33333 34267|0.38889 34268|0.5 34269|0.5 34270|0.55556 34271|0.68056 34272|0.5 34273|0.25 34274|0.70833 34275|0.77778 34276|0.90278 34277|0.5 34278|0.77778 34279|0.79167 34280|0.75 34281|0.23611 34282|0.5 34283|0.875 34284|0.68056 34285|0.80556 34286|0.70833 34287|0.52778 34288|0.59722 34289|0.625 34290|0.45833 34291|0.65278 34292|0.5 34293|0.55556 34294|0.68056 34295|0.69444 34296|0.81944 34297|0.61111 34298|0.69444 34299|0.77778 34300|0.76389 34301|0.5 34302|0.66667 34303|0.63889 34304|0.70833 34305|0.5 34306|0.73611 34307|0.80556 34308|0.88889 34309|0.5 34310|0.55556 34311|0.73611 34312|0.77778 34313|0.75 34314|0.69444 34315|0.61111 34316|0.55556 34317|0.69444 34318|0.79167 34319|0.52778 34320|0.83333 34321|0.58333 34322|0.375 34323|0.90278 34324|0.58333 34325|0.58333 34326|0.69444 34327|0.65278 34328|0.44444 34329|0.625 34330|0.625 34331|0.55556 34332|0.80556 34333|0.5 34334|0.91667 34335|0.5 34336|0.5 34337|0.5 34338|0.56944 34339|0.5 34340|0.5 34341|0.5 34342|0.44444 34343|0.5 34344|0.68056 34345|0.5 34346|0.77778 34347|0.5 34348|0.81944 34349|0.66667 34350|0.76389 34351|0.72222 34352|0.75 34353|0.5 34354|0.61111 34355|0.51389 34356|0.5 34357|0.41667 34358|0.79167 34359|0.44444 34360|0.375 34361|0.40278 34362|0.41667 34363|0.41667 34364|0.38889 34365|0.56944 34366|0.5 34367|0.5 34368|0.5 34369|0.375 34370|0.75 34371|0.51389 34372|0.5 34373|0.55556 34374|0.51042 34375|0.5 34376|0.38889 34377|0.5 34378|0.5 34379|0.5 34380|0.5 34381|0.79167 34382|0.95833 34383|0.54167 34384|0.54167 34385|0.55556 34386|0.5 34387|0.66667 34388|0.88889 34389|0.52778 34390|0.66667 34391|0.5 34392|0.61111 34393|0.65278 34394|1 34395|0.43056 34396|0.54167 34397|0.77778 34398|0.5 34399|0.48611 34400|0.5 34401|0.625 34402|0.56944 34403|0.63889 34404|0.76389 34405|0.68056 34406|0.58333 34407|0.40278 34408|0.5 34409|0.52778 34410|0.47222 34411|0.27778 34412|0.36111 34413|0.43056 34414|0.95833 34415|0.72222 34416|0.66667 34417|0.61111 34418|0.65278 34419|0.33333 34420|0.44444 34421|0.63889 34422|0.43056 34423|0.375 34424|0.31944 34425|0.59722 34426|0.61111 34427|0.58333 34428|0.52778 34429|0.73611 34430|0.72222 34431|0.44444 34432|0.44444 34433|0.66667 34434|0.5 34435|0.36111 34436|0.22222 34437|0.625 34438|0.38889 34439|0.5 34440|0.36458 34441|0.55556 34442|0.70833 34443|0.72222 34444|0.81944 34445|0.5 34446|0.5 34447|0.5 34448|0.66667 34449|0.88889 34450|0.88889 34451|0.52778 34452|0.5 34453|0.55556 34454|0.80556 34455|0.54167 34456|0.41667 34457|0.65278 34458|0.77778 34459|0.81944 34460|0.76389 34461|0.86111 34462|0.625 34463|0.44444 34464|0.5 34465|0.5 34466|0.51389 34467|0.75 34468|0.80556 34469|0.5 34470|0.79167 34471|0.88889 34472|0.875 34473|0.875 34474|0.61111 34475|0.61111 34476|0.47222 34477|0.22222 34478|0.63889 34479|0.5 34480|0.5 34481|0.58333 34482|0.625 34483|0.41667 34484|0.38889 34485|0.34722 34486|0.30556 34487|0.66667 34488|0.5 34489|0.5 34490|0.58333 34491|0.5 34492|0.69444 34493|0.79167 34494|0.56944 34495|0.5 34496|0.54167 34497|0.625 34498|0.5 34499|0.33333 34500|0.33333 34501|0.36111 34502|0.31944 34503|0.66667 34504|0.5 34505|0.5 34506|0.52778 34507|0.55556 34508|0.58333 34509|0.76389 34510|0.61111 34511|0.58333 34512|0.61111 34513|0.61111 34514|0.56944 34515|0.22222 34516|0.44444 34517|0.26389 34518|0.56944 34519|0.45833 34520|0.40278 34521|0.36111 34522|0.68056 34523|0.5 34524|0.5 34525|0.44444 34526|0.35417 34527|0.61111 34528|0.33333 34529|0.55556 34530|0.59722 34531|0.5 34532|0.625 34533|0.72222 34534|0.40278 34535|0.55556 34536|0.72222 34537|0.5 34538|0.5 34539|0.43056 34540|0.56944 34541|0.66667 34542|0.5 34543|0.44444 34544|0.5 34545|0.5 34546|0.5 34547|0.44444 34548|0.47222 34549|0.66667 34550|0.5 34551|0.68056 34552|0.51389 34553|0.31944 34554|0.5 34555|0.56944 34556|0.5 34557|0.44444 34558|0.625 34559|0.77778 34560|0.77778 34561|0.77778 34562|0.41667 34563|0.48611 34564|0.72222 34565|0.77778 34566|0.38889 34567|0.41667 34568|0.44444 34569|0.34722 34570|0.5 34571|0.69444 34572|0.81944 34573|0.66667 34574|0.625 34575|0.31944 34576|0.58333 34577|0.58333 34578|0.61111 34579|0.30556 34580|0.58333 34581|0.41667 34582|0.5 34583|0.55556 34584|0.65278 34585|0.43056 34586|0.77778 34587|0.52778 34588|0.56944 34589|0.52778 34590|0.58333 34591|0.55556 34592|0.56944 34593|0.625 34594|0.5 34595|0.70833 34596|0.61111 34597|0.76389 34598|0.47222 34599|0.47222 34600|0.5 34601|0.51389 34602|0.5 34603|0.48611 34604|0.61111 34605|0.55556 34606|0.63889 34607|0.48611 34608|0.5 34609|0.66667 34610|0.65278 34611|0.45833 34612|0.5 34613|0.51389 34614|0.55556 34615|0.5 34616|0.55556 34617|0.5 34618|0.29167 34619|0.94444 34620|0.83333 34621|0.625 34622|0.66667 34623|0.75 34624|0.5 34625|0.18056 34626|0.33333 34627|0.23611 34628|0.81944 34629|0.5 34630|0.5 34631|0.59722 34632|0.63889 34633|0.41667 34634|0.36111 34635|0.80556 34636|0.66667 34637|0.75 34638|0.54167 34639|0.40278 34640|0.69444 34641|0.52778 34642|0.23611 34643|0.27778 34644|0.5 34645|0.84722 34646|0.93056 34647|0.38889 34648|0.5 34649|0.23611 34650|0.40278 34651|0.5 34652|0.55556 34653|0.44444 34654|0.15278 34655|0.80556 34656|0.68056 34657|0.36111 34658|0.69444 34659|0.5 34660|0.26389 34661|0.15278 34662|0.77778 34663|0.94444 34664|0.875 34665|0.77778 34666|0.72222 34667|0.54167 34668|0.65278 34669|0.79167 34670|0.65278 34671|0.29167 34672|0.26389 34673|0.5 34674|0.5 34675|0.65278 34676|0.5 34677|0.5 34678|0.5 34679|0.44444 34680|0.5 34681|0.34722 34682|0.52778 34683|0.5 34684|0.80556 34685|0.23611 34686|0.58333 34687|0.33333 34688|0.44444 34689|0.66667 34690|0.5 34691|0.73611 34692|0.75 34693|0.625 34694|0.56944 34695|0.86111 34696|0.77778 34697|0.59722 34698|0.5 34699|0.5 34700|0.61111 34701|0.63889 34702|0.79167 34703|0.70833 34704|0.5 34705|0.61111 34706|0.86111 34707|0.66667 34708|0.79167 34709|0.70833 34710|0.63889 34711|0.88889 34712|0.70833 34713|0.75 34714|0.55556 34715|0.5 34716|0.52778 34717|0.60417 34718|0.63889 34719|0.70833 34720|0.69444 34721|0.47222 34722|0.5 34723|0.66667 34724|0.63889 34725|0.56944 34726|0.58333 34727|0.70833 34728|0.44444 34729|0.48611 34730|0.55556 34731|0.44444 34732|0.65278 34733|0.44444 34734|0.63889 34735|0.5 34736|0.55556 34737|0.47222 34738|0.625 34739|0.70833 34740|0.45833 34741|0.083333 34742|0.61111 34743|0.55556 34744|0.40278 34745|0.5 34746|0.29167 34747|0.43056 34748|0.19444 34749|0.45833 34750|0.63889 34751|0.5 34752|0.5 34753|0.59722 34754|0.5 34755|0.76389 34756|0.66667 34757|0.88889 34758|0.73611 34759|0.54167 34760|0.5 34761|0.77778 34762|0.86111 34763|0.72222 34764|0.83333 34765|0.5 34766|0.83333 34767|0.5 34768|0.83333 34769|0.63889 34770|0.5 34771|0.5 34772|0.56944 34773|0.5 34774|0.52778 34775|0.72222 34776|0.52778 34777|0.38889 34778|0.41667 34779|0.55556 34780|0.5 34781|0.61111 34782|0.44444 34783|0.52778 34784|0.5 34785|0.76389 34786|0.5 34787|0.55556 34788|0.54167 34789|0.51389 34790|0.38889 34791|0.5 34792|0.52778 34793|0.41667 34794|0.59722 34795|0.93056 34796|0.70833 34797|0.69444 34798|0.5 34799|0.47222 34800|0.5 34801|0.48611 34802|0.36111 34803|0.5 34804|0.61111 34805|0.55556 34806|0.55556 34807|0.43056 34808|0.33333 34809|0.34722 34810|0.43056 34811|0.36111 34812|0.40278 34813|0.5 34814|0.5 34815|0.51389 34816|0.33333 34817|0.70833 34818|0.59722 34819|0.48611 34820|0.61111 34821|0.65278 34822|0.63889 34823|0.91667 34824|0.73611 34825|0.52778 34826|0.41667 34827|0.51389 34828|0.5 34829|0.5 34830|0.125 34831|0.29167 34832|0.34722 34833|0.5 34834|0.5 34835|0.55556 34836|0.5 34837|0.51389 34838|0.55556 34839|0.52778 34840|0.5 34841|0.5 34842|0.055556 34843|0.40278 34844|0.55556 34845|0.47222 34846|0.98611 34847|0.88889 34848|0.72222 34849|0.81944 34850|0.93056 34851|0.25 34852|0.54167 34853|0.33333 34854|0.5 34855|0.44444 34856|0.56944 34857|0.55556 34858|0.61111 34859|0.84722 34860|0.61458 34861|0.52778 34862|0.61111 34863|0.54167 34864|0.45833 34865|0.36111 34866|0.34722 34867|0.26389 34868|0.5 34869|0.5 34870|0.52778 34871|0.33333 34872|0.5 34873|0.68056 34874|0.54167 34875|0.29167 34876|0.47222 34877|0.29167 34878|0.65278 34879|0.52778 34880|0.30556 34881|0.5 34882|0.5 34883|0.27778 34884|0.75 34885|0.77778 34886|0.13889 34887|0.66667 34888|0.47222 34889|0.45833 34890|0.56944 34891|0.5 34892|0.77778 34893|0.59722 34894|0.44444 34895|0.31944 34896|0.5 34897|0.63889 34898|0.71875 34899|0.5 34900|0.55556 34901|0.5 34902|0.61111 34903|0.5 34904|0.54167 34905|0.73611 34906|0.75 34907|0.68056 34908|0.77778 34909|0.81944 34910|0.84722 34911|0.77778 34912|0.73611 34913|0.5 34914|0.47222 34915|0.22222 34916|0.43056 34917|0.75 34918|0.44444 34919|0.47222 34920|0.66667 34921|0.70833 34922|0.76389 34923|0.125 34924|0.5 34925|0.5 34926|0.31944 34927|0.54167 34928|0.56944 34929|0.27778 34930|0.44444 34931|0.875 34932|0.55556 34933|0.31944 34934|0.59722 34935|0.69444 34936|0.5 34937|0.45833 34938|0.5 34939|0.27778 34940|0.5 34941|0.53125 34942|0.56944 34943|0.66667 34944|0.79167 34945|0.66667 34946|0.44444 34947|0.44444 34948|0.23611 34949|0.44444 34950|0.5 34951|0.5 34952|0.5 34953|0.23611 34954|0.51389 34955|0.72222 34956|0.625 34957|0.61111 34958|0.72222 34959|0.40278 34960|0.38889 34961|0.36111 34962|0.36111 34963|0.375 34964|0.65278 34965|0.55556 34966|0.41667 34967|0.48611 34968|0.41667 34969|0.38889 34970|0.26042 34971|0.5 34972|0.375 34973|0.25 34974|0.38889 34975|0.48611 34976|0.44444 34977|0.56944 34978|0.43056 34979|0.58333 34980|0.13542 34981|0.66667 34982|0.44444 34983|0.5 34984|0.48611 34985|0.48611 34986|0.44444 34987|0.47222 34988|0.58333 34989|0.5 34990|0.48611 34991|0.75 34992|0.5 34993|0.5 34994|0.66667 34995|0.72222 34996|0.34722 34997|0.13889 34998|0.61111 34999|0.61111 35000|0.61111 35001|0.76389 35002|0.33333 35003|0.58333 35004|0.58333 35005|0.77778 35006|0.34722 35007|0.625 35008|0.61111 35009|0.40278 35010|0.43056 35011|0.44444 35012|0.77778 35013|0.66667 35014|0.52778 35015|0.23611 35016|0.5 35017|0.5 35018|0.5 35019|0.66667 35020|0.51389 35021|0.66667 35022|0.5 35023|0.75 35024|0.83333 35025|0.54167 35026|0.66667 35027|0.42708 35028|0.52778 35029|0.625 35030|0.61111 35031|0.61111 35032|0.5 35033|0.43056 35034|0.27778 35035|0.5 35036|0.27778 35037|0.5 35038|0.59722 35039|0.625 35040|0.52778 35041|0.58333 35042|0.5 35043|0.5 35044|0.5 35045|0.35417 35046|0.5 35047|0.59722 35048|0.5 35049|0.5 35050|0.65278 35051|0.55556 35052|0.84722 35053|0.90278 35054|0.40278 35055|0.5 35056|0.38889 35057|0.72222 35058|0.68056 35059|0.58333 35060|0.5 35061|0.38889 35062|0.36111 35063|0.26389 35064|0.36111 35065|0.31944 35066|0.47222 35067|0.5 35068|0.44444 35069|0.63889 35070|0.58333 35071|0.5 35072|0.54167 35073|0.79167 35074|0.5 35075|0.61111 35076|0.5 35077|0.66667 35078|0.5 35079|0.5 35080|0.5 35081|0.56944 35082|0.70833 35083|0.5 35084|0.25 35085|0.68056 35086|0.5 35087|0.5 35088|0.66667 35089|0.5 35090|0.5 35091|0.5 35092|0.47222 35093|0.61111 35094|0.84722 35095|0.55556 35096|0.5 35097|0.5 35098|0.5 35099|0.5 35100|0.5 35101|0.56944 35102|0.5 35103|0.47222 35104|0.33333 35105|0.5 35106|0.5 35107|0.5 35108|0.5 35109|0.44444 35110|0.5 35111|0.5 35112|0.5 35113|0.5 35114|0.5 35115|0.5 35116|0.54167 35117|0.61111 35118|0.5 35119|0.44444 35120|0.36111 35121|0.79167 35122|0.48611 35123|0.55556 35124|0.625 35125|0.5 35126|0.5 35127|0.5 35128|0.5 35129|0.5 35130|0.5 35131|0.5 35132|0.66667 35133|0.5 35134|0.45833 35135|0.58333 35136|0.5 35137|0.69444 35138|0.61111 35139|0.5 35140|0.44444 35141|0.5 35142|0.54167 35143|0.61111 35144|0.56944 35145|0.80556 35146|0.72222 35147|0.61111 35148|0.60417 35149|0.52778 35150|0.61111 35151|0.86111 35152|0.91667 35153|0.79167 35154|0.81944 35155|0.45833 35156|0.5 35157|0.5 35158|0.5 35159|0.5 35160|0.65278 35161|0.5 35162|0.5 35163|0.33333 35164|0.77778 35165|0.5 35166|0.5 35167|0.5 35168|0.68056 35169|0.5 35170|0.55556 35171|0.83333 35172|0.86111 35173|0.47222 35174|0.5 35175|0.52778 35176|0.44444 35177|0.5 35178|0.5 35179|0.47222 35180|0.5 35181|0.5 35182|0.51389 35183|0.5 35184|0.5 35185|0.5 35186|0.55556 35187|0.75 35188|0.65278 35189|0.45833 35190|0.625 35191|0.5 35192|0.66667 35193|0.54167 35194|0.45833 35195|0.61111 35196|0.77778 35197|0.63889 35198|0.66667 35199|0.73611 35200|0.5 35201|0.5 35202|0.26389 35203|0.26389 35204|0.55556 35205|0.5 35206|0.45833 35207|0.5 35208|0.5 35209|0.75 35210|0.51389 35211|0.45833 35212|0.73611 35213|0.5 35214|0.5 35215|0.29167 35216|0.625 35217|0.54167 35218|0.80556 35219|0.68056 35220|0.61111 35221|0.77778 35222|0.48611 35223|0.5 35224|0.45833 35225|0.65278 35226|0.58333 35227|0.83333 35228|0.66667 35229|0.75 35230|0.5 35231|0.61111 35232|0.59722 35233|0.5 35234|0.52778 35235|0.61111 35236|0.51389 35237|0.25 35238|0.51389 35239|0.70833 35240|0.56944 35241|0.52778 35242|0.5 35243|0.5 35244|0.54167 35245|0.63889 35246|0.66667 35247|0.61111 35248|0.40278 35249|0.58333 35250|0.625 35251|0.73611 35252|0.75 35253|0.61111 35254|0.69444 35255|0.76389 35256|0.55556 35257|0.63889 35258|0.81944 35259|0.72222 35260|0.625 35261|0.65278 35262|0.73611 35263|0.5 35264|0.5 35265|0.83333 35266|0.5 35267|0.45833 35268|0.40278 35269|0.5 35270|0.68056 35271|0.63889 35272|0.56944 35273|0.27778 35274|0.375 35275|0.83333 35276|0.55556 35277|0.65278 35278|0.51389 35279|0.55556 35280|0.66667 35281|0.59722 35282|0.45833 35283|0.5 35284|0.59722 35285|1 35286|0.70833 35287|0.43056 35288|0.63889 35289|0.36111 35290|0.63889 35291|0.83333 35292|0.66667 35293|0.5 35294|0.5 35295|0.38889 35296|0.5 35297|0.63889 35298|0.72222 35299|0.51389 35300|0.33333 35301|0.48611 35302|0.54167 35303|0.5 35304|0.5 35305|0.5 35306|0.84722 35307|0.5 35308|0.5 35309|0.55556 35310|0.93056 35311|0.875 35312|0.63889 35313|0.43056 35314|0.5 35315|0.5 35316|0.38889 35317|0.55556 35318|0.55556 35319|0.56944 35320|0.55556 35321|0.59722 35322|0.5 35323|0.56944 35324|0.5 35325|0.5 35326|0.77778 35327|0.55556 35328|0.31944 35329|0.34722 35330|0.77778 35331|0.5 35332|0.63889 35333|0.375 35334|0.23611 35335|0.52778 35336|0.55556 35337|0.54167 35338|0.22222 35339|0.55556 35340|0.48611 35341|0.5 35342|0.55556 35343|0.625 35344|0.5 35345|0.61111 35346|0.66667 35347|0.30556 35348|0.68056 35349|0.375 35350|0.51389 35351|0.54167 35352|0.66667 35353|0.77778 35354|0.5 35355|0.69444 35356|0.38889 35357|0.34722 35358|0.65278 35359|0.5 35360|0.54167 35361|0.38889 35362|0.72222 35363|0.52778 35364|0.55556 35365|0.84722 35366|0.5 35367|0.63889 35368|0.38889 35369|0.5 35370|0.61111 35371|0.75 35372|0.80556 35373|0.625 35374|0.70833 35375|0.73611 35376|0.5 35377|0.44444 35378|0.27778 35379|0.5 35380|0.5 35381|0.47222 35382|0.65278 35383|0.44444 35384|0.86111 35385|0.5 35386|0.61111 35387|0.44444 35388|0.51389 35389|0.69444 35390|0.55556 35391|0.5 35392|0.70833 35393|0.59722 35394|0.65278 35395|0.5 35396|0.625 35397|0.86111 35398|0.88889 35399|0.56944 35400|0.91667 35401|0.77778 35402|0.79167 35403|0.5 35404|0.625 35405|0.77778 35406|0.31944 35407|0.52778 35408|0.66667 35409|0.51389 35410|0.52778 35411|0.77778 35412|0.68056 35413|0.83333 35414|0.55556 35415|0.79167 35416|0.36111 35417|0.51389 35418|0.5 35419|0.68056 35420|0.5 35421|0.48611 35422|0.44444 35423|0.5 35424|0.83333 35425|0.5 35426|0.5 35427|0.59722 35428|0.5 35429|0.65278 35430|0.40278 35431|0.52778 35432|0.83333 35433|0.625 35434|0.83333 35435|0.80556 35436|0.88889 35437|0.84722 35438|0.58333 35439|0.65278 35440|0.52778 35441|0.5 35442|0.5 35443|0.61111 35444|0.73611 35445|0.47222 35446|0.63889 35447|0.66667 35448|0.5 35449|0.65278 35450|0.375 35451|0.44444 35452|0.5 35453|0.5 35454|0.5 35455|0.5 35456|0.5 35457|0.5 35458|0.5 35459|0.48958 35460|0.47222 35461|0.45833 35462|0.5 35463|0.5 35464|0.56944 35465|0.81944 35466|0.65278 35467|0.5 35468|0.65278 35469|0.58333 35470|0.66667 35471|0.45833 35472|0.73611 35473|0.67708 35474|0.76389 35475|0.88889 35476|0.80556 35477|0.98611 35478|0.84722 35479|0.88542 35480|1 35481|0.5 35482|0.63889 35483|0.5 35484|0.38889 35485|0.5 35486|0.65278 35487|0.68056 35488|0.55556 35489|0.72222 35490|0.61111 35491|0.5 35492|0.61111 35493|0.48611 35494|0.5 35495|0.55556 35496|0.875 35497|0.41667 35498|0.5 35499|0.5 35500|0.5 35501|0.55556 35502|0.65278 35503|0.625 35504|0.5 35505|0.5 35506|0.79167 35507|0.54167 35508|0.80556 35509|0.61111 35510|0.5 35511|0.5 35512|0.79167 35513|0.52778 35514|0.875 35515|0.5 35516|0.72222 35517|0.5 35518|0.5 35519|0.58333 35520|0.58333 35521|0.5 35522|0.5 35523|0.58333 35524|0.5 35525|0.70833 35526|0.5 35527|0.56944 35528|0.5 35529|0.88889 35530|0.5 35531|0.83333 35532|0.94444 35533|0.51389 35534|0.56944 35535|0.5 35536|0.5 35537|0.5 35538|0.44444 35539|0.73611 35540|0.59722 35541|0.43056 35542|0.5 35543|0.73611 35544|0.90278 35545|0.76389 35546|0.55556 35547|0.44444 35548|0.375 35549|0.83333 35550|0.47222 35551|0.33333 35552|0.63889 35553|0.5 35554|0.63889 35555|0.75 35556|0.5 35557|0.77083 35558|0.55556 35559|0.5 35560|0.68056 35561|0.66667 35562|0.5 35563|0.51389 35564|0.5 35565|0.44444 35566|0.65278 35567|0.77778 35568|0.72222 35569|0.61111 35570|0.65278 35571|0.69444 35572|0.5 35573|0.88889 35574|0.88889 35575|0.58333 35576|0.63889 35577|0.58333 35578|0.33333 35579|0.97222 35580|0.47222 35581|0.80556 35582|0.40278 35583|0.48611 35584|0.33333 35585|0.23611 35586|0.55556 35587|0.51389 35588|0.75 35589|0.5 35590|0.65278 35591|0.55556 35592|0.66667 35593|0.61111 35594|0.72222 35595|0.5 35596|0.55556 35597|0.5 35598|0.59722 35599|0.875 35600|0.66667 35601|0.41667 35602|0.38889 35603|0.43056 35604|0.54167 35605|0.5 35606|0.54167 35607|0.40278 35608|0.5 35609|0.5 35610|0.68056 35611|0.5 35612|0.38889 35613|0.5 35614|0.45833 35615|0.63889 35616|0.73611 35617|0.5 35618|0.83333 35619|0.61111 35620|0.66667 35621|0.36111 35622|0.5 35623|0.55556 35624|0.55556 35625|0.5 35626|0.44444 35627|0.52778 35628|0.72222 35629|0.25 35630|0.36111 35631|0.52778 35632|0.5 35633|0.68056 35634|0.5 35635|0.51389 35636|0.61111 35637|0.5 35638|0.58333 35639|0.54167 35640|0.5 35641|0.5 35642|0.5 35643|0.5 35644|0.5 35645|0.43056 35646|0.60417 35647|0.52778 35648|0.79167 35649|0.55556 35650|0.58333 35651|0.88889 35652|0.29167 35653|0.55556 35654|0.59722 35655|0.68056 35656|0.5 35657|0.5 35658|0.55556 35659|0.5 35660|0.66667 35661|0.5 35662|0.19444 35663|0.5 35664|0.61111 35665|0.54167 35666|0.86111 35667|0.70833 35668|0.5 35669|0.59722 35670|0.66667 35671|0.55556 35672|0.55556 35673|0.54167 35674|0.86111 35675|0.5 35676|0.5 35677|0.5 35678|0.59722 35679|0.93056 35680|0.68056 35681|0.88889 35682|0.93056 35683|0.59722 35684|0.55556 35685|0.48611 35686|0.63889 35687|0.5 35688|0.72222 35689|0.61111 35690|0.68056 35691|0.75 35692|0.79167 35693|0.98611 35694|0.83333 35695|0.875 35696|0.77778 35697|0.94444 35698|0.94444 35699|1 35700|0.875 35701|0.47222 35702|0.56944 35703|0.5 35704|0.72222 35705|0.80556 35706|0.80556 35707|0.72222 35708|0.73611 35709|0.65278 35710|0.5 35711|0.5 35712|0.5 35713|0.5 35714|0.36111 35715|0.5 35716|0.55556 35717|0.41667 35718|0.5 35719|0.5 35720|0.56944 35721|0.51389 35722|0.43056 35723|0.81944 35724|0.69444 35725|0.5 35726|0.27778 35727|0.5 35728|0.48611 35729|0.72222 35730|0.19444 35731|0.5 35732|0.625 35733|0.375 35734|0.5 35735|0.5 35736|0.44444 35737|0.45833 35738|0.5 35739|0.25 35740|0.5 35741|0.47222 35742|0.44444 35743|0.75 35744|0.55556 35745|0.5 35746|0.5 35747|0.5 35748|0.77778 35749|0.5 35750|0.5 35751|0.5 35752|0.5 35753|0.68056 35754|0.5 35755|0.58333 35756|0.75 35757|0.5 35758|0.5 35759|0.5 35760|0.61111 35761|0.55556 35762|0.5 35763|0.5 35764|0.5 35765|0.41667 35766|0.375 35767|0.33333 35768|0.5 35769|0.33333 35770|0.30556 35771|0.5 35772|0.52778 35773|0.65278 35774|0.5 35775|0.45833 35776|0.5 35777|0.25 35778|0.54167 35779|0.26389 35780|0.5 35781|0.61111 35782|0.69444 35783|0.5 35784|0.625 35785|0.5 35786|0.45833 35787|0.48611 35788|0.63889 35789|0.5 35790|0.5 35791|0.625 35792|0.65278 35793|0.5 35794|0.5 35795|0.5 35796|0.5 35797|0.5 35798|0.53125 35799|0.54167 35800|0.73611 35801|0.5 35802|0.5 35803|0.40278 35804|0.44444 35805|0.86111 35806|0.63889 35807|0.66667 35808|0.61111 35809|0.70833 35810|0.5 35811|0.5 35812|0.52778 35813|0.5 35814|0.61111 35815|0.5 35816|0.44444 35817|0.58333 35818|0.41667 35819|0.54167 35820|0.76389 35821|0.84722 35822|0.5 35823|0.33333 35824|0.5 35825|0.65278 35826|0.5 35827|0.77778 35828|0.5 35829|0.41667 35830|0.5 35831|0.5 35832|0.75 35833|0.66667 35834|0.83333 35835|0.625 35836|0.84722 35837|0.5 35838|0.58333 35839|0.5 35840|0.27778 35841|0.34722 35842|0.5 35843|0.94444 35844|0.55556 35845|0.94444 35846|0.94792 35847|0.36111 35848|0.41667 35849|0.5 35850|0.65278 35851|0.27778 35852|0.52778 35853|0.55556 35854|0.58333 35855|0.55556 35856|0.625 35857|0.5 35858|0.55556 35859|0.65278 35860|0.44444 35861|0.375 35862|0.45833 35863|0.44444 35864|0.51389 35865|0.45833 35866|0.5 35867|0.63889 35868|0.65278 35869|0.69444 35870|0.5 35871|0.55556 35872|0.47222 35873|0.5 35874|0.73611 35875|0.58333 35876|0.5 35877|0.5 35878|0.61111 35879|0.55556 35880|0.38889 35881|0.5 35882|0.61111 35883|0.5 35884|0.5 35885|0.56944 35886|0.5 35887|0.47222 35888|0.59722 35889|0.59722 35890|0.93056 35891|0.5 35892|0.77778 35893|0.5 35894|0.5 35895|0.76389 35896|0.36111 35897|0.5 35898|0.88889 35899|0.5 35900|0.5 35901|0.5 35902|0.5 35903|0.51389 35904|0.63889 35905|0.55556 35906|0.76389 35907|0.5 35908|0.66667 35909|0.5 35910|0.59722 35911|0.52778 35912|0.5 35913|0.69444 35914|0.52778 35915|0.54167 35916|0.5 35917|0.5 35918|0.38889 35919|0.56944 35920|0.77778 35921|0.66667 35922|0.76389 35923|0.45833 35924|0.51389 35925|0.5 35926|0.55556 35927|0.41667 35928|0.63889 35929|0.36111 35930|0.48611 35931|0.5 35932|0.61111 35933|0.36111 35934|0.5 35935|0.55556 35936|0.5 35937|0.5 35938|0.61111 35939|0.65278 35940|0.5 35941|0.44444 35942|0.5 35943|0.47222 35944|0.30556 35945|0.5 35946|0.5 35947|0.5 35948|0.5 35949|0.125 35950|0.5 35951|0.65278 35952|0.51389 35953|0.83333 35954|0.75 35955|0.59722 35956|0.5 35957|0.77778 35958|0.83333 35959|0.38889 35960|0.16667 35961|0.66667 35962|0.56944 35963|0.77778 35964|0.88889 35965|0.69444 35966|0.81944 35967|0.69444 35968|0.76389 35969|0.875 35970|0.84722 35971|0.77778 35972|0.70833 35973|0.5 35974|0.55556 35975|0.77083 35976|0.5 35977|0.5 35978|0.625 35979|0.66667 35980|0.45833 35981|0.54167 35982|0.69444 35983|0.44444 35984|0.5 35985|0.59722 35986|0.5 35987|0.68056 35988|0.52778 35989|0.5 35990|0.68056 35991|0.5 35992|0.55556 35993|0.75 35994|0.33333 35995|0.72222 35996|0.45833 35997|0.15278 35998|0.34722 35999|0.625 36000|0.70833 36001|0.63889 36002|0.5 36003|0.5 36004|0.5 36005|0.51389 36006|0.5 36007|0.81944 36008|0.5 36009|0.44444 36010|0.5 36011|0.63889 36012|0.77778 36013|0.5 36014|0.61111 36015|0.72222 36016|0.55556 36017|0.66667 36018|0.5 36019|0.31944 36020|0.44444 36021|0.5 36022|0.65278 36023|0.33333 36024|0.5 36025|0.8125 36026|0.65278 36027|0.80556 36028|0.55556 36029|0.5 36030|0.59722 36031|0.76389 36032|0.72222 36033|0.22222 36034|0.48611 36035|0.72222 36036|0.81944 36037|0.75 36038|0.63889 36039|0.80556 36040|0.72222 36041|0.86111 36042|0.72222 36043|0.77778 36044|0.63889 36045|0.68056 36046|0.81944 36047|0.65278 36048|0.5 36049|0.56944 36050|0.47222 36051|0.83333 36052|0.5 36053|0.72222 36054|0.58333 36055|0.72222 36056|0.66667 36057|0.80556 36058|0.55556 36059|0.61111 36060|0.76389 36061|0.5 36062|0.80556 36063|0.47222 36064|0.44444 36065|0.5 36066|0.5 36067|0.5 36068|0.5 36069|0.66667 36070|0.73611 36071|0.5 36072|0.25 36073|0.63889 36074|0.625 36075|0.63889 36076|0.91667 36077|0.77778 36078|0.5 36079|0.65278 36080|0.51389 36081|0.54167 36082|0.38889 36083|0.22222 36084|0.59722 36085|0.5 36086|0.51389 36087|0.45833 36088|0.5 36089|0.5 36090|0.55556 36091|0.58333 36092|0.83333 36093|0.84722 36094|0.5 36095|0.55556 36096|0.5 36097|0.5 36098|0.54167 36099|0.55556 36100|0.5 36101|0.66667 36102|0.875 36103|0.55556 36104|0.61111 36105|0.625 36106|0.5 36107|0.22222 36108|0.29167 36109|0.69444 36110|0.5 36111|0.75 36112|0.68056 36113|0.91667 36114|0.76389 36115|0.5 36116|0.61111 36117|0.5 36118|0.375 36119|0.33333 36120|0.5 36121|0.41667 36122|0.66667 36123|0.51389 36124|0.5 36125|0.70833 36126|0.45833 36127|0.70833 36128|0.77778 36129|0.94444 36130|0.77778 36131|0.5 36132|0.66667 36133|0.5 36134|0.55556 36135|0.29167 36136|0.26389 36137|0.33333 36138|0.65278 36139|0.75 36140|0.55556 36141|0.25 36142|0.58333 36143|0.79167 36144|0.45833 36145|0.30556 36146|0.63889 36147|0.5 36148|0.5 36149|0.5 36150|0.76389 36151|0.58333 36152|0.52778 36153|0.75 36154|0.63889 36155|0.5 36156|0.30556 36157|0.5 36158|0.26389 36159|0.58333 36160|0.55556 36161|0.5 36162|0.86111 36163|0.93056 36164|0.68056 36165|0.5 36166|0.5 36167|0.625 36168|0.56944 36169|0.5 36170|0.5 36171|0.45833 36172|0.68056 36173|0.63889 36174|0.5 36175|0.38889 36176|0.5 36177|0.61111 36178|0.5 36179|0.70833 36180|0.5 36181|0.5 36182|0.5 36183|0.59722 36184|0.56944 36185|0.5 36186|0.51389 36187|0.72222 36188|0.76389 36189|0.77778 36190|0.77778 36191|0.625 36192|0.66667 36193|0.69444 36194|0.66667 36195|0.625 36196|0.55556 36197|0.70833 36198|0.69444 36199|0.52778 36200|0.5 36201|0.38889 36202|0.5 36203|0.5 36204|0.75 36205|0.88889 36206|0.54167 36207|0.70833 36208|0.77778 36209|0.90278 36210|0.88889 36211|0.70833 36212|0.73611 36213|0.54167 36214|0.75 36215|0.625 36216|0.59722 36217|0.69444 36218|0.95833 36219|0.65625 36220|0.88889 36221|0.55556 36222|0.5 36223|0.38889 36224|0.44444 36225|0.5 36226|0.54167 36227|0.65278 36228|0.86111 36229|0.5 36230|0.80556 36231|0.68056 36232|0.81944 36233|0.72222 36234|0.72222 36235|0.72222 36236|0.68056 36237|0.73611 36238|0.5 36239|0.5 36240|0.66667 36241|0.72222 36242|0.70833 36243|0.44444 36244|0.76389 36245|0.5 36246|0.72222 36247|0.68056 36248|0.72222 36249|0.875 36250|0.79167 36251|0.44444 36252|0.33333 36253|0.58333 36254|0.5 36255|0.30556 36256|0.65278 36257|0.5 36258|0.5 36259|0.51389 36260|0.5 36261|0.5 36262|0.5 36263|0.5 36264|0.56944 36265|0.77778 36266|0.58333 36267|0.44444 36268|0.52778 36269|0.77778 36270|0.52778 36271|0.54167 36272|0.5 36273|0.73611 36274|0.56944 36275|0.56944 36276|0.63889 36277|0.73611 36278|0.38889 36279|0.44444 36280|0.45833 36281|0.88889 36282|0.5 36283|0.51389 36284|0.5 36285|0.68056 36286|0.73611 36287|0.61111 36288|0.58333 36289|0.66667 36290|0.55556 36291|0.69444 36292|0.65278 36293|0.5 36294|0.73611 36295|0.68056 36296|0.88889 36297|0.77778 36298|0.65278 36299|0.77778 36300|0.72222 36301|0.54167 36302|0.61111 36303|0.79167 36304|0.66667 36305|0.73611 36306|0.77778 36307|0.88889 36308|0.80556 36309|0.27778 36310|0.61111 36311|0.73611 36312|0.61111 36313|0.5 36314|0.41667 36315|0.34722 36316|0.33333 36317|0.19444 36318|0.41667 36319|0.5 36320|0.56944 36321|0.36111 36322|0.47222 36323|0.43056 36324|0.43056 36325|0.55556 36326|0.5 36327|0.47222 36328|0.5 36329|0.38889 36330|0.5 36331|0.5 36332|0.88889 36333|0.875 36334|0.75 36335|0.76389 36336|0.69444 36337|0.79167 36338|0.33333 36339|0.69444 36340|0.72222 36341|0.45833 36342|0.77778 36343|0.72222 36344|0.5 36345|0.48611 36346|0.77778 36347|0.73611 36348|0.51389 36349|0.25 36350|0.33333 36351|0.5 36352|0.5 36353|0.44444 36354|0.61111 36355|0.58333 36356|0.59722 36357|0.58333 36358|0.76389 36359|0.43056 36360|0.72222 36361|0.64583 36362|0.70833 36363|0.5 36364|0.83333 36365|0.5 36366|0.55556 36367|0.75 36368|0.70833 36369|0.75 36370|0.66667 36371|0.63889 36372|0.5 36373|0.5 36374|0.68056 36375|0.5 36376|0.80556 36377|0.51389 36378|0.86111 36379|0.66667 36380|0.77778 36381|0.19444 36382|0.11111 36383|0.055556 36384|0.73611 36385|0.5 36386|0.55556 36387|0.59722 36388|0.5 36389|0.31944 36390|0.52778 36391|0.70833 36392|0.84722 36393|0.66667 36394|0.5 36395|0.66667 36396|0.69444 36397|0.5 36398|0.44444 36399|0.51389 36400|0.65278 36401|0.58333 36402|0.5 36403|0.65278 36404|0.55556 36405|0.48611 36406|0.5 36407|0.5 36408|0.51389 36409|0.63889 36410|0.5 36411|0.58333 36412|0.91667 36413|0.41667 36414|0.59722 36415|0.48611 36416|0.45833 36417|0.38889 36418|0.375 36419|0.5 36420|0.55556 36421|0.43056 36422|0.88889 36423|0.80556 36424|0.55556 36425|0.66667 36426|0.81944 36427|0.81944 36428|0.77778 36429|0.68056 36430|0.88889 36431|0.79167 36432|0.79167 36433|0.77778 36434|0.83333 36435|0.76389 36436|0.81944 36437|0.72222 36438|0.69444 36439|0.44444 36440|0.5 36441|0.54167 36442|0.5 36443|0.5 36444|0.79167 36445|0.38889 36446|0.33333 36447|0.59722 36448|0.68056 36449|0.77778 36450|0.33333 36451|0.5 36452|0.5 36453|0.5 36454|0.68056 36455|0.5 36456|0.5 36457|0.73611 36458|0.76389 36459|0.83333 36460|0.59722 36461|0.83333 36462|0.77778 36463|0.63889 36464|0.44444 36465|0.86111 36466|0.33333 36467|0.5 36468|0.31944 36469|0.55556 36470|0.625 36471|0.36111 36472|0.5 36473|0.38889 36474|0.52778 36475|0.5 36476|0.33333 36477|0.51389 36478|0.79167 36479|0.93056 36480|0.80556 36481|0.73611 36482|0.83333 36483|0.75 36484|0.81944 36485|0.73611 36486|0.59722 36487|0.625 36488|0.76389 36489|0.875 36490|0.45833 36491|0.5 36492|0.30556 36493|0.76389 36494|0.5 36495|0.55556 36496|0.5 36497|0.66667 36498|0.72222 36499|0.38889 36500|0.36111 36501|0.56944 36502|0.44444 36503|0.38889 36504|0.31944 36505|0.18056 36506|0.80556 36507|0.5 36508|0.38889 36509|0.5 36510|0.84722 36511|0.29167 36512|0.47222 36513|0.55556 36514|0.45833 36515|0.40278 36516|0.5 36517|0.80556 36518|0.68056 36519|0.61111 36520|0.56944 36521|0.66667 36522|0.63889 36523|0.66667 36524|0.66667 36525|0.81944 36526|0.81944 36527|0.5 36528|0.38889 36529|0.72222 36530|0.69444 36531|0.72222 36532|0.875 36533|0.65278 36534|0.66667 36535|0.58333 36536|0.51389 36537|0.45833 36538|0.69444 36539|0.5 36540|0.5 36541|0.69444 36542|0.45833 36543|0.41667 36544|0.21875 36545|0.5 36546|0.56944 36547|0.83333 36548|0.83333 36549|0.77778 36550|0.76389 36551|0.61111 36552|0.55556 36553|0.56944 36554|0.44444 36555|0.41667 36556|0.44444 36557|0.45833 36558|0.5 36559|0.53125 36560|0.44444 36561|0.77778 36562|0.61111 36563|0.77778 36564|0.58333 36565|0.56944 36566|0.66667 36567|0.875 36568|0.76389 36569|0.77778 36570|0.56944 36571|0.5 36572|0.26389 36573|0.29167 36574|0.44444 36575|0.5 36576|0.69444 36577|0.63889 36578|0.61111 36579|0.5 36580|0.5 36581|0.48611 36582|0.31944 36583|0.22222 36584|0.47222 36585|0.36111 36586|0.5 36587|0.55556 36588|0.33333 36589|0.41667 36590|0.38889 36591|0.83333 36592|0.84722 36593|0.61111 36594|0.63889 36595|0.94444 36596|0.65278 36597|0.83333 36598|0.5 36599|0.56944 36600|0.5 36601|0.61111 36602|0.61111 36603|0.77778 36604|0.70833 36605|0.5 36606|0.44444 36607|0.75 36608|0.79167 36609|0.5 36610|0.73611 36611|0.55556 36612|0.54167 36613|0.63889 36614|0.72222 36615|0.58333 36616|0.72222 36617|0.86111 36618|0.48611 36619|0.5 36620|0.73611 36621|0.56944 36622|0.34722 36623|0.34722 36624|0.5 36625|0.625 36626|0.55556 36627|0.73611 36628|0.55556 36629|0.6875 36630|0.59722 36631|0.29167 36632|0.51389 36633|0.44444 36634|0.29167 36635|0.34722 36636|0.75 36637|0.69444 36638|0.5 36639|0.22222 36640|0.58333 36641|0.5 36642|0.22222 36643|0.5 36644|0.51389 36645|0.5 36646|0.47222 36647|0.5 36648|0.45833 36649|0.5 36650|0.5 36651|0.5 36652|0.13889 36653|0.44444 36654|0.40278 36655|0.25 36656|0.27778 36657|0.43056 36658|0.41667 36659|0.44444 36660|0.625 36661|0.86111 36662|0.77778 36663|0.59722 36664|0.5 36665|0.22222 36666|0.79167 36667|0.63889 36668|0.5 36669|0.55556 36670|0.66667 36671|0.76389 36672|0.59375 36673|0.72222 36674|0.69444 36675|0.5 36676|0.61111 36677|0.63889 36678|0.5 36679|0.5 36680|0.33333 36681|0.61111 36682|0.22222 36683|0.36111 36684|0.47222 36685|0.44444 36686|0.88889 36687|0.44444 36688|0.84722 36689|0.88889 36690|0.44444 36691|0.38889 36692|0.40278 36693|0.5 36694|0.54167 36695|0.86111 36696|0.5625 36697|0.5 36698|0.76389 36699|0.5 36700|0.61111 36701|0.5 36702|0.72222 36703|0.5 36704|0.375 36705|0.55556 36706|0.66667 36707|0.5 36708|0.5 36709|0.55556 36710|0.90278 36711|0.63889 36712|0.44444 36713|0.38889 36714|0.36111 36715|0.58333 36716|0.54167 36717|0.53125 36718|0.49306 36719|0.5 36720|0.30556 36721|0.56944 36722|0.38889 36723|0.40278 36724|0.65278 36725|0.66667 36726|0.80556 36727|0.54167 36728|0.63889 36729|0.5 36730|0.61111 36731|0.5 36732|0.5 36733|0.61111 36734|0.66667 36735|0.77778 36736|0.65278 36737|0.61111 36738|0.68056 36739|0.68056 36740|0.69444 36741|0.72917 36742|0.52778 36743|0.54167 36744|0.875 36745|0.52778 36746|0.56944 36747|0.81944 36748|0.625 36749|0.30556 36750|0.61111 36751|0.79167 36752|0.79167 36753|0.22222 36754|0.55556 36755|0.5 36756|0.18056 36757|0.27778 36758|0.43056 36759|0.44444 36760|0.54167 36761|0.61111 36762|0.73611 36763|0.73611 36764|0.5 36765|0.61111 36766|0.38889 36767|0.55556 36768|0.61111 36769|0.47222 36770|0.5 36771|0.54167 36772|0.625 36773|0.38889 36774|0.36111 36775|0.5 36776|0.61111 36777|0.66667 36778|0.43056 36779|0.64583 36780|0.44444 36781|0.43056 36782|0.55556 36783|0.29167 36784|0.44444 36785|0.5 36786|0.52778 36787|0.38542 36788|0.43056 36789|0.54167 36790|0.5 36791|0.5 36792|0.51389 36793|0.625 36794|0.44444 36795|0.30556 36796|0.55556 36797|0.58333 36798|0.47222 36799|0.61111 36800|0.56944 36801|0.5 36802|0.5 36803|0.59722 36804|0.5 36805|0.55556 36806|0.66667 36807|0.44444 36808|0.52778 36809|0.90278 36810|0.88889 36811|0.75 36812|0.55556 36813|0.55556 36814|0.61111 36815|0.5 36816|0.84722 36817|0.5 36818|0.5 36819|0.5 36820|0.44444 36821|0.58333 36822|0.68056 36823|0.5 36824|0.38889 36825|0.5 36826|0.61111 36827|0.63889 36828|0.625 36829|0.5 36830|0.84722 36831|0.73611 36832|0.81944 36833|0.40278 36834|0.22222 36835|0.5 36836|0.54167 36837|0.63889 36838|0.5 36839|0.76389 36840|0.73611 36841|0.51389 36842|0.5 36843|0.5 36844|0.5 36845|0.43056 36846|0.63889 36847|0.5 36848|0.5 36849|0.5 36850|0.77778 36851|0.48611 36852|0.55556 36853|0.5 36854|0.65278 36855|0.51389 36856|0.5 36857|0.52778 36858|0.55556 36859|0.48611 36860|0.5 36861|0.5 36862|0.5 36863|0.5 36864|0.625 36865|0.58333 36866|0.73611 36867|0.65278 36868|0.29167 36869|0.25 36870|0.30556 36871|0.59722 36872|0.43056 36873|0.61111 36874|0.31944 36875|0.45833 36876|0.5 36877|0.5 36878|0.5 36879|0.56944 36880|0.63889 36881|0.56944 36882|0.56944 36883|0.5 36884|0.70833 36885|0.55556 36886|0.20833 36887|0.66667 36888|0.83333 36889|0.81944 36890|0.70833 36891|0.66667 36892|0.5 36893|0.90278 36894|0.54167 36895|0.625 36896|0.5 36897|0.81944 36898|0.69444 36899|0.47222 36900|0.61111 36901|0.5 36902|0.55556 36903|0.38889 36904|0.66667 36905|0.53125 36906|0.19444 36907|0.86111 36908|0.54167 36909|0.58333 36910|0.88889 36911|0.56944 36912|0.61111 36913|0.40278 36914|0.625 36915|0.71875 36916|0.48611 36917|0.66667 36918|0.80556 36919|0.81944 36920|0.81944 36921|0.5 36922|0.61111 36923|0.31944 36924|0.52083 36925|0.5 36926|0.5 36927|0.77778 36928|0.55556 36929|0.55556 36930|0.95833 36931|0.83333 36932|0.77778 36933|0.5 36934|0.66667 36935|0.5 36936|0.66667 36937|0.65278 36938|0.5 36939|0.51389 36940|0.38889 36941|0.66667 36942|0.75 36943|0.5 36944|0.86111 36945|0.72222 36946|0.625 36947|0.66667 36948|0.36111 36949|0.5 36950|0.70833 36951|0.33333 36952|0.5 36953|0.375 36954|0.26389 36955|0.5 36956|0.375 36957|0.47222 36958|0.31944 36959|0.55556 36960|0.80208 36961|0.375 36962|0.66667 36963|0.77778 36964|0.84722 36965|0.75 36966|0.79167 36967|0.44444 36968|0.52778 36969|0.5 36970|0.375 36971|0.5 36972|0.52778 36973|0.52083 36974|0.40278 36975|0.625 36976|0.56944 36977|0.93056 36978|1 36979|0.22222 36980|0.66667 36981|0.78125 36982|0.40278 36983|0.5 36984|0.5 36985|0.5 36986|0.54167 36987|0.54167 36988|0.68056 36989|0.56944 36990|0.72222 36991|0.68056 36992|0.44444 36993|0.44444 36994|0.5 36995|0.51389 36996|0.38889 36997|0.16667 36998|0.45833 36999|0.47917 37000|0.41667 37001|0.44444 37002|0.31944 37003|0.375 37004|0.5 37005|0.54167 37006|0.51389 37007|0.75 37008|0.70833 37009|0.54167 37010|0.29167 37011|0.625 37012|0.40278 37013|0.58333 37014|0.81944 37015|0.73611 37016|0.5 37017|0.23611 37018|0.375 37019|0.5 37020|0.70833 37021|0.58333 37022|0.75 37023|0.26389 37024|0.43056 37025|0.5 37026|0.5 37027|0.15278 37028|0.22222 37029|0.5 37030|0.30556 37031|0.5 37032|0.61111 37033|0.80556 37034|0.47222 37035|0.71875 37036|0.625 37037|0.38889 37038|0.69444 37039|0.59722 37040|0.70833 37041|0.72222 37042|0.77778 37043|0.80556 37044|0.76389 37045|0.80556 37046|0.69444 37047|0.72222 37048|0.75 37049|0.65278 37050|0.73611 37051|0.36111 37052|0.38889 37053|0.5 37054|0.48611 37055|0.625 37056|0.59722 37057|0.63889 37058|0.36111 37059|0.44444 37060|0.30556 37061|0.5 37062|0.54167 37063|0.41667 37064|0.625 37065|0.77778 37066|0.59722 37067|0.79167 37068|0.38889 37069|0.40278 37070|0.61111 37071|0.38889 37072|0.75 37073|0.65278 37074|0.61111 37075|0.80556 37076|0.77778 37077|0.20833 37078|0.45833 37079|0.55556 37080|0.66667 37081|0.58333 37082|0.83333 37083|0.66667 37084|0.66667 37085|0.66667 37086|0.43056 37087|0.68056 37088|0.84722 37089|0.44444 37090|0.33333 37091|0.5 37092|0.73611 37093|0.5 37094|0.68056 37095|0.52778 37096|0.45833 37097|0.5 37098|0.5 37099|0.5 37100|0.61111 37101|0.5 37102|0.73611 37103|0.5 37104|0.70833 37105|0.55556 37106|0.55556 37107|0.56944 37108|0.56944 37109|0.5 37110|0.68056 37111|0.69444 37112|0.66667 37113|0.91667 37114|0.625 37115|0.63889 37116|0.61111 37117|0.66667 37118|0.77778 37119|0.61111 37120|0.5 37121|0.81944 37122|0.84722 37123|0.77778 37124|0.72222 37125|0.77778 37126|0.5 37127|0.59722 37128|0.65278 37129|0.86111 37130|0.81944 37131|0.91667 37132|0.61111 37133|0.44444 37134|0.30556 37135|0.40278 37136|0.93056 37137|0.5 37138|0.76389 37139|0.68056 37140|0.77778 37141|0.68056 37142|0.68056 37143|0.48611 37144|0.75 37145|0.80556 37146|0.40278 37147|0.41667 37148|0.70833 37149|0.65278 37150|0.625 37151|0.65278 37152|0.75 37153|0.66667 37154|0.54167 37155|0.45833 37156|0.79167 37157|0.66667 37158|0.77778 37159|0.5 37160|0.68056 37161|0.55556 37162|0.79167 37163|0.70833 37164|0.81944 37165|0.30556 37166|0.31944 37167|0.83333 37168|0.27778 37169|0.69444 37170|0.625 37171|0.875 37172|0.58333 37173|0.5 37174|0.61111 37175|0.73611 37176|0.5 37177|0.44444 37178|0.5 37179|0.5 37180|0.5 37181|0.61111 37182|0.5 37183|0.5 37184|0.5 37185|0.44444 37186|0.40278 37187|0.5 37188|0.5 37189|0.48611 37190|0.5 37191|0.65278 37192|0.40278 37193|0.63889 37194|0.52778 37195|0.86111 37196|0.86111 37197|0.83333 37198|0.83333 37199|0.55556 37200|0.52778 37201|0.47222 37202|0.5 37203|0.5 37204|0.68056 37205|0.83333 37206|0.61111 37207|0.56944 37208|0.5 37209|0.5 37210|0.5 37211|0.69444 37212|0.875 37213|0.875 37214|0.5 37215|0.5 37216|0.59722 37217|0.61111 37218|0.77778 37219|0.86111 37220|0.80556 37221|0.76389 37222|0.48611 37223|0.5 37224|0.61111 37225|0.69444 37226|0.69444 37227|0.80556 37228|0.81944 37229|0.77778 37230|0.81944 37231|0.5 37232|0.70833 37233|0.45833 37234|0.55556 37235|0.45833 37236|0.47222 37237|0.59722 37238|0.30556 37239|0.44444 37240|0.80556 37241|0.5 37242|0.5 37243|0.55556 37244|0.5 37245|0.58333 37246|0.625 37247|0.52778 37248|0.45833 37249|0.55556 37250|0.68056 37251|0.70833 37252|0.66667 37253|0.47222 37254|0.58333 37255|0.65278 37256|0.47222 37257|0.72222 37258|0.63889 37259|0.68056 37260|0.5 37261|0.70833 37262|0.61111 37263|0.51389 37264|0.56944 37265|0.70833 37266|0.72222 37267|0.5 37268|0.33333 37269|0.5 37270|0.5 37271|0.59722 37272|0.54167 37273|0.56944 37274|0.33333 37275|0.54167 37276|0.55556 37277|0.65278 37278|0.52778 37279|0.94444 37280|0.38889 37281|0.56944 37282|0.55556 37283|0.77778 37284|0.69444 37285|0.61111 37286|0.5 37287|0.73611 37288|0.5 37289|0.5 37290|0.86111 37291|0.5 37292|0.52778 37293|0.625 37294|0.5 37295|0.77778 37296|0.69444 37297|0.40278 37298|0.79167 37299|0.66667 37300|0.36111 37301|0.5 37302|0.80556 37303|0.33333 37304|0.5 37305|0.66667 37306|0.72222 37307|0.68056 37308|0.5 37309|0.72222 37310|0.70833 37311|0.54167 37312|0.58333 37313|0.48611 37314|0.66667 37315|0.625 37316|0.625 37317|0.5 37318|0.59722 37319|0.93056 37320|0.5 37321|0.5 37322|0.55556 37323|0.5 37324|0.51389 37325|0.5 37326|0.51389 37327|0.5 37328|0.65278 37329|0.5 37330|0.65278 37331|0.66667 37332|0.77778 37333|0.70833 37334|0.77778 37335|0.81944 37336|0.66667 37337|0.75 37338|0.73611 37339|0.59722 37340|0.73958 37341|0.72222 37342|0.65278 37343|0.73611 37344|0.69444 37345|0.5 37346|0.51389 37347|0.75 37348|0.625 37349|0.83333 37350|0.5 37351|0.55556 37352|0.79167 37353|0.73611 37354|0.5 37355|0.79167 37356|0.79167 37357|0.51389 37358|0.76389 37359|0.43056 37360|0.63889 37361|0.44444 37362|0.5 37363|0.44444 37364|0.43056 37365|0.5 37366|0.5 37367|0.26389 37368|0.45833 37369|0.51389 37370|0.5 37371|0.55556 37372|0.5 37373|0.23611 37374|0.52778 37375|0.52778 37376|0.5 37377|0.44444 37378|0.45833 37379|0.625 37380|0.5 37381|0.45833 37382|0.48611 37383|0.56944 37384|0.875 37385|0.84722 37386|0.79167 37387|0.84722 37388|0.625 37389|0.66667 37390|0.66667 37391|0.65278 37392|0.72222 37393|0.66667 37394|0.65278 37395|0.83333 37396|0.55556 37397|0.44444 37398|0.43056 37399|0.45833 37400|0.56944 37401|0.38889 37402|0.91667 37403|0.90278 37404|0.66667 37405|0.69444 37406|0.94444 37407|0.91667 37408|0.875 37409|0.94444 37410|0.125 37411|0.51389 37412|0.63889 37413|0.72222 37414|0.81944 37415|0.84375 37416|0.72222 37417|0.5 37418|0.75 37419|0.59722 37420|0.36111 37421|0.5 37422|0.52778 37423|0.5 37424|0.72222 37425|0.76389 37426|0.66667 37427|0.66667 37428|0.54167 37429|0.68056 37430|0.51389 37431|0.66667 37432|0.55556 37433|0.88889 37434|0.88889 37435|0.59722 37436|0.36111 37437|0.40278 37438|0.77778 37439|0.88889 37440|0.79167 37441|0.84722 37442|0.20833 37443|0.69444 37444|0.76389 37445|0.77778 37446|0.58333 37447|0.5 37448|0.84722 37449|0.79167 37450|0.625 37451|0.65278 37452|0.69444 37453|0.65278 37454|0.29167 37455|0.125 37456|0.33333 37457|0.34722 37458|0.70833 37459|0.36111 37460|0.63889 37461|0.47222 37462|0.54167 37463|0.5 37464|0.65278 37465|0.52778 37466|0.73611 37467|0.77778 37468|0.51389 37469|0.55556 37470|0.80556 37471|0.70833 37472|0.65278 37473|0.73611 37474|0.90278 37475|0.75 37476|0.75 37477|0.43056 37478|0.51389 37479|0.63889 37480|0.5 37481|0.27778 37482|0.95833 37483|0.75 37484|0.72222 37485|0.5 37486|0.5 37487|0.36111 37488|0.5 37489|0.68056 37490|0.5 37491|0.5 37492|0.5 37493|0.40278 37494|0.48611 37495|0.33333 37496|0.41667 37497|0.5 37498|0.5 37499|0.22222 37500|0.5 37501|0.625 37502|0.72222 37503|0.61111 37504|0.76389 37505|0.80556 37506|0.625 37507|0.75 37508|0.5 37509|0.66667 37510|0.76389 37511|0.79167 37512|0.76389 37513|0.80556 37514|0.70833 37515|0.76389 37516|0.80556 37517|0.63889 37518|0.61111 37519|0.66667 37520|0.5 37521|0.66667 37522|0.77778 37523|0.66667 37524|0.5 37525|0.5 37526|0.625 37527|0.65278 37528|0.47222 37529|0.48611 37530|0.55556 37531|0.625 37532|0.38889 37533|0.65278 37534|0.65278 37535|0.79167 37536|0.5 37537|0.31944 37538|0.61111 37539|0.61111 37540|0.79167 37541|0.66667 37542|0.43056 37543|0.76389 37544|0.73611 37545|0.80556 37546|0.52778 37547|0.86111 37548|0.79167 37549|0.70833 37550|0.55556 37551|0.72222 37552|0.66667 37553|0.77778 37554|0.45833 37555|0.72222 37556|0.73611 37557|0.66667 37558|0.5 37559|0.5 37560|0.52778 37561|0.45833 37562|0.61111 37563|0.55556 37564|0.51389 37565|0.54167 37566|0.63889 37567|0.88889 37568|0.69444 37569|0.41667 37570|0.55556 37571|0.75 37572|0.73611 37573|0.79167 37574|0.5 37575|0.76389 37576|0.625 37577|0.63889 37578|0.43056 37579|0.54167 37580|0.75 37581|0.88889 37582|0.5 37583|0.625 37584|0.72222 37585|0.44444 37586|0.44444 37587|0.31944 37588|0.59722 37589|0.86111 37590|0.61111 37591|0.81944 37592|0.61111 37593|0.76389 37594|0.80556 37595|0.68056 37596|0.5 37597|0.76389 37598|0.5 37599|0.84722 37600|0.66667 37601|0.81944 37602|0.63542 37603|0.5 37604|0.68056 37605|0.45833 37606|0.5 37607|0.52778 37608|0.51389 37609|0.38889 37610|0.5 37611|0.51389 37612|0.5 37613|0.5 37614|0.75 37615|0.77778 37616|0.65278 37617|0.5 37618|0.79167 37619|0.48611 37620|0.77778 37621|0.5 37622|0.79167 37623|0.56944 37624|0.75 37625|0.5 37626|0.5 37627|0.61111 37628|0.52778 37629|0.58333 37630|0.5 37631|0.5 37632|0.55556 37633|0.83333 37634|0.61111 37635|0.38889 37636|0.44444 37637|0.59722 37638|0.51389 37639|0.27778 37640|0.59722 37641|0.55556 37642|0.5 37643|0.375 37644|0.5 37645|0.55556 37646|0.36111 37647|0.72222 37648|0.40278 37649|0.86111 37650|0.5 37651|0.41667 37652|0.5 37653|0.65278 37654|0.72222 37655|0.54167 37656|0.47917 37657|0.51389 37658|0.52778 37659|0.61111 37660|0.58333 37661|0.5 37662|0.72222 37663|0.98611 37664|0.5 37665|0.52778 37666|0.65278 37667|0.5 37668|0.65278 37669|0.27778 37670|0.41667 37671|0.73611 37672|0.86111 37673|0.93056 37674|0.91667 37675|0.72222 37676|0.95833 37677|0.84722 37678|0.51389 37679|0.5 37680|0.27778 37681|0.48611 37682|0.5 37683|0.5 37684|0.5 37685|0.5 37686|0.76389 37687|0.51389 37688|0.5 37689|0.43056 37690|0.59722 37691|0.26389 37692|0.41667 37693|0.5 37694|0.55556 37695|0.5 37696|0.56944 37697|0.625 37698|0.5 37699|0.45833 37700|0.5 37701|0.34722 37702|0.65278 37703|0.47222 37704|0.5 37705|0.66667 37706|0.63889 37707|0.5 37708|0.54167 37709|0.54167 37710|0.5 37711|0.52778 37712|0.90278 37713|0.5 37714|0.5 37715|0.34722 37716|0.40278 37717|0.5 37718|0.5 37719|0.58333 37720|0.76389 37721|0.52778 37722|0.66667 37723|0.61111 37724|0.81944 37725|0.55556 37726|0.5 37727|0.875 37728|0.69444 37729|0.66667 37730|0.54167 37731|0.40278 37732|0.63889 37733|0.54167 37734|0.56944 37735|0.77778 37736|0.38889 37737|0.72222 37738|0.75 37739|0.63889 37740|0.56944 37741|0.80556 37742|0.55556 37743|0.5 37744|0.72222 37745|0.65278 37746|0.83333 37747|0.66667 37748|0.54167 37749|0.55556 37750|0.56944 37751|0.56944 37752|0.52778 37753|0.47222 37754|0.81944 37755|0.47222 37756|0.94444 37757|0.625 37758|0.90278 37759|0.73611 37760|0.58333 37761|0.76389 37762|0.5 37763|0.63889 37764|0.70833 37765|0.80556 37766|0.79167 37767|0.55556 37768|0.25 37769|0.5 37770|0.70833 37771|0.56944 37772|0.38889 37773|0.5 37774|0.38889 37775|0.51389 37776|0.56944 37777|0.25 37778|0.66667 37779|0.84722 37780|0.55556 37781|0.55556 37782|0.625 37783|0.52778 37784|0.72222 37785|0.69444 37786|0.58333 37787|0.38889 37788|0.44444 37789|0.77778 37790|0.80556 37791|0.59722 37792|0.72222 37793|0.79167 37794|0.77778 37795|0.29167 37796|0.66667 37797|0.38889 37798|0.84722 37799|0.76389 37800|0.83333 37801|0.69444 37802|0.55556 37803|0.66667 37804|0.88889 37805|0.5 37806|0.65278 37807|0.5 37808|0.75 37809|0.77778 37810|0.65278 37811|0.83333 37812|0.5 37813|0.5 37814|0.48611 37815|0.76389 37816|0.66667 37817|0.68056 37818|0.69444 37819|0.59722 37820|0.38889 37821|0.75 37822|0.80556 37823|0.83333 37824|0.47222 37825|0.61111 37826|0.72222 37827|0.66667 37828|0.68056 37829|0.68056 37830|0.67708 37831|0.5 37832|0.91667 37833|0.73611 37834|0.79167 37835|0.25 37836|0.54167 37837|0.81944 37838|0.83333 37839|0.58333 37840|0.51389 37841|0.79167 37842|0.79167 37843|0.45833 37844|0.59722 37845|0.72222 37846|0.72222 37847|0.79167 37848|0.5 37849|0.63889 37850|0.68056 37851|0.69444 37852|0.70833 37853|0.86111 37854|0.625 37855|0.5 37856|0.5 37857|0.5 37858|0.66667 37859|0.45833 37860|0.5 37861|0.5 37862|0.5 37863|0.61111 37864|0.61111 37865|0.65278 37866|0.51389 37867|0.80556 37868|0.34722 37869|0.5 37870|0.5 37871|0.48611 37872|0.70833 37873|0.72222 37874|0.5 37875|0.77778 37876|0.5 37877|0.86111 37878|0.51389 37879|0.77778 37880|0.58333 37881|0.61111 37882|0.76389 37883|0.76389 37884|0.68056 37885|0.5 37886|0.52778 37887|0.56944 37888|0.51389 37889|0.51389 37890|0.79167 37891|0.5 37892|0.75 37893|0.79167 37894|0.48611 37895|0.65278 37896|0.77778 37897|0.58333 37898|0.70833 37899|0.26389 37900|0.55556 37901|0.48611 37902|0.68056 37903|0.84722 37904|0.79167 37905|0.44444 37906|0.44444 37907|0.63889 37908|0.65278 37909|0.84722 37910|0.5 37911|0.61111 37912|0.38889 37913|0.58333 37914|0.77778 37915|0.68056 37916|0.52778 37917|0.5 37918|0.61111 37919|0.61111 37920|0.83333 37921|0.20833 37922|0.68056 37923|0.88889 37924|0.77778 37925|0.5 37926|0.63889 37927|0.5 37928|0.5 37929|0.5 37930|0.625 37931|0.5 37932|0.34722 37933|0.72222 37934|0.5 37935|0.5 37936|0.125 37937|0.5 37938|0.61111 37939|0.44444 37940|0.5 37941|0.5 37942|0.41667 37943|0.5 37944|0.48611 37945|0.45833 37946|0.43056 37947|0.44444 37948|0.54167 37949|0.36111 37950|0.55556 37951|0.5 37952|0.33333 37953|0.51389 37954|0.5 37955|0.5 37956|0.5 37957|0.55556 37958|0.75 37959|0.5 37960|0.5 37961|0.88889 37962|0.48611 37963|0.41667 37964|0.5 37965|0.5 37966|0.5 37967|0.5 37968|0.58333 37969|0.44444 37970|0.5 37971|0.66667 37972|0.55556 37973|0.54167 37974|0.45833 37975|0.5 37976|0.5 37977|0.76389 37978|0.45833 37979|0.625 37980|0.5 37981|0.34722 37982|0.25 37983|0.33333 37984|0.5 37985|0.79167 37986|0.76389 37987|0.54167 37988|0.625 37989|0.5 37990|0.58333 37991|0.63889 37992|0.5 37993|0.48611 37994|0.55556 37995|0.61111 37996|0.48611 37997|0.5 37998|0.5 37999|0.65278 38000|0.55556 38001|0.59722 38002|0.5 38003|0.72222 38004|0.58333 38005|0.58333 38006|0.66667 38007|0.5 38008|0.625 38009|0.5 38010|0.59722 38011|0.75 38012|0.5 38013|0.5 38014|0.5 38015|0.61111 38016|0.5 38017|0.625 38018|0.81944 38019|0.5 38020|0.5 38021|0.79167 38022|0.84722 38023|0.64583 38024|0.91667 38025|0.76389 38026|0.97222 38027|0.94444 38028|0.79167 38029|0.86111 38030|0.90278 38031|0.84722 38032|0.91667 38033|0.76389 38034|0.84722 38035|0.54167 38036|0.59722 38037|0.5 38038|0.44444 38039|0.80556 38040|0.5 38041|0.56944 38042|0.5 38043|0.55556 38044|0.5 38045|0.5 38046|0.5 38047|0.56944 38048|0.5 38049|0.61111 38050|0.56944 38051|0.88889 38052|0.5 38053|0.68056 38054|0.27778 38055|0.48611 38056|0.5 38057|0.5 38058|0.80556 38059|0.75 38060|0.83333 38061|0.5 38062|0.59722 38063|0.52778 38064|0.72222 38065|0.44444 38066|0.58333 38067|0.55556 38068|0.5 38069|0.56944 38070|0.66667 38071|0.5 38072|0.58333 38073|0.80556 38074|0.5 38075|0.56944 38076|0.40278 38077|0.375 38078|0.51389 38079|0.5 38080|1 38081|0.51389 38082|0.88889 38083|0.51389 38084|0.58333 38085|0.75 38086|0.625 38087|0.55556 38088|0.70833 38089|0.73611 38090|0.5 38091|0.34722 38092|0.5 38093|0.34722 38094|0.55556 38095|0.5 38096|0.5 38097|0.47222 38098|0.45833 38099|0.72222 38100|0.66667 38101|0.65278 38102|0.77778 38103|0.5 38104|0.5 38105|0.75 38106|0.79167 38107|0.5625 38108|0.59722 38109|0.5 38110|0.5 38111|0.29167 38112|0.65278 38113|0.33333 38114|0.625 38115|0.5 38116|0.72222 38117|0.68056 38118|0.83333 38119|0.76389 38120|0.52778 38121|0.61111 38122|0.625 38123|0.58333 38124|0.73611 38125|0.5 38126|0.48611 38127|0.38889 38128|0.5 38129|0.625 38130|0.5 38131|0.63889 38132|0.5 38133|0.59722 38134|0.25 38135|0.5 38136|0.44444 38137|0.56944 38138|0.44444 38139|0.625 38140|0.5 38141|0.56944 38142|0.76389 38143|0.5 38144|0.44444 38145|0.83333 38146|0.66667 38147|0.83333 38148|0.94444 38149|0.58333 38150|0.30556 38151|0.48611 38152|0.5 38153|0.5 38154|0.40278 38155|0.59722 38156|0.66667 38157|0.5 38158|0.5 38159|0.55556 38160|0.5 38161|0.33333 38162|0.77778 38163|0.73611 38164|0.5 38165|0.5 38166|0.5 38167|0.55556 38168|0.66667 38169|0.5 38170|0.79167 38171|0.69444 38172|0.5 38173|0.5 38174|0.5 38175|0.43056 38176|0.73611 38177|0.44444 38178|0.27778 38179|0.80556 38180|0.91667 38181|0.34722 38182|0.63889 38183|0.61111 38184|0.77778 38185|0.70833 38186|0.5 38187|0.77778 38188|0.61111 38189|0.54167 38190|0.81944 38191|0.5 38192|0.75 38193|0.63889 38194|0.5 38195|0.25 38196|0.5 38197|0.38889 38198|0.44444 38199|0.77778 38200|0.65278 38201|0.59722 38202|0.65278 38203|0.86111 38204|0.76389 38205|0.66667 38206|0.5 38207|0.54167 38208|0.88889 38209|0.68056 38210|0.88889 38211|0.77778 38212|0.77778 38213|0.79167 38214|0.80556 38215|0.875 38216|0.88889 38217|0.83333 38218|0.55556 38219|0.84722 38220|0.80556 38221|0.66667 38222|0.5 38223|0.81944 38224|0.94444 38225|0.77778 38226|0.80556 38227|0.63889 38228|0.56944 38229|0.5 38230|0.55556 38231|0.54167 38232|0.75 38233|0.65278 38234|0.63889 38235|0.61111 38236|0.5 38237|0.72222 38238|0.5 38239|0.5 38240|0.73611 38241|0.61111 38242|0.72222 38243|0.875 38244|0.86111 38245|0.90278 38246|0.625 38247|0.5 38248|0.76389 38249|0.65278 38250|0.55556 38251|0.72222 38252|0.59722 38253|0.52778 38254|0.72222 38255|0.5 38256|0.5 38257|0.65278 38258|0.5 38259|0.5 38260|0.43056 38261|0.5 38262|0.81944 38263|0.55556 38264|0.88889 38265|1 38266|0.5 38267|0.53125 38268|0.73611 38269|0.23611 38270|0.5 38271|0.65278 38272|0.5 38273|0.55556 38274|0.33333 38275|0.38889 38276|0.5 38277|0.59722 38278|0.5 38279|0.33333 38280|0.66667 38281|0.63889 38282|0.625 38283|0.56944 38284|0.875 38285|0.61111 38286|0.70833 38287|0.83333 38288|0.81944 38289|0.5 38290|0.48611 38291|0.77778 38292|0.80556 38293|0.77778 38294|0.38889 38295|0.58333 38296|0.5 38297|0.61111 38298|0.36111 38299|0.55556 38300|0.30556 38301|0.79167 38302|0.56944 38303|0.51389 38304|0.58333 38305|0.90278 38306|0.55556 38307|0.66667 38308|0.52778 38309|0.75 38310|0.5 38311|0.73611 38312|0.83333 38313|0.54167 38314|0.70833 38315|0.875 38316|0.5 38317|0.55556 38318|0.44444 38319|0.55556 38320|0.55556 38321|0.52778 38322|0.5 38323|0.66667 38324|0.73611 38325|0.59722 38326|0.63889 38327|0.51389 38328|0.5 38329|0.625 38330|0.41667 38331|0.30556 38332|0.18056 38333|0.55556 38334|0.5 38335|0.33333 38336|0.34722 38337|0.45833 38338|0.27778 38339|0.5 38340|0.47222 38341|0.52778 38342|0.5 38343|0.5 38344|0.55556 38345|0.75 38346|0.51389 38347|0.79167 38348|0.91667 38349|0.81944 38350|0.5 38351|0.61111 38352|0.5 38353|0.47222 38354|0.34722 38355|0.5 38356|0.5 38357|0.5 38358|0.77778 38359|0.5 38360|0.75 38361|0.44444 38362|0.56944 38363|0.5 38364|0.44444 38365|0.93056 38366|0.70833 38367|0.54167 38368|0.55556 38369|0.83333 38370|0.375 38371|0.44444 38372|0.22222 38373|0.63889 38374|0.5 38375|0.5 38376|0.52778 38377|0.5 38378|0.5 38379|0.5 38380|0.5 38381|0.55556 38382|0.5 38383|0.5 38384|0.59722 38385|0.5 38386|0.61111 38387|0.5 38388|0.58333 38389|0.5 38390|0.52778 38391|0.55556 38392|0.77778 38393|0.86111 38394|0.63889 38395|0.61111 38396|0.625 38397|0.5 38398|0.88889 38399|0.5 38400|0.75 38401|0.5 38402|0.61111 38403|0.70833 38404|0.88889 38405|0.61458 38406|0.54167 38407|0.5 38408|0.52778 38409|0.5 38410|0.59722 38411|0.56944 38412|0.54167 38413|0.5 38414|0.5 38415|0.5 38416|0.52778 38417|0.55556 38418|0.81944 38419|0.75 38420|0.5 38421|0.81944 38422|0.47222 38423|0.52778 38424|0.77778 38425|0.94444 38426|0.76389 38427|0.80208 38428|0.40278 38429|0.61111 38430|0.97222 38431|0.48611 38432|0.47222 38433|0.83333 38434|0.81944 38435|0.84722 38436|0.72222 38437|0.23611 38438|0.25 38439|0.90278 38440|0.73611 38441|0.65278 38442|0.33333 38443|0.22222 38444|0.55556 38445|0.66667 38446|0.76389 38447|0.83333 38448|0.75 38449|0.83333 38450|0.75 38451|0.91667 38452|0.66667 38453|0.88889 38454|0.97222 38455|0.73611 38456|0.5 38457|0.5 38458|0.80556 38459|0.61111 38460|0.5 38461|0.61111 38462|0.80556 38463|0.5 38464|0.77778 38465|0.5 38466|0.38889 38467|0.58333 38468|0.47222 38469|0.23611 38470|0.22222 38471|0.5 38472|0.29167 38473|0.31944 38474|0.625 38475|0.72222 38476|0.47222 38477|0.51389 38478|0.78125 38479|0.5 38480|0.65278 38481|0.5 38482|0.5 38483|0.33333 38484|0.61111 38485|0.5 38486|0.44444 38487|0.61111 38488|0.65278 38489|0.47222 38490|0.5 38491|0.38889 38492|0.43056 38493|0.70833 38494|0.5 38495|0.59722 38496|0.5 38497|0.5 38498|0.27778 38499|0.61111 38500|0.5 38501|0.47222 38502|0.58333 38503|0.5 38504|0.5 38505|0.59722 38506|0.65278 38507|0.5 38508|0.34722 38509|0.93056 38510|0.75 38511|0.56944 38512|0.51389 38513|0.5 38514|0.61111 38515|0.47222 38516|0.55556 38517|0.59722 38518|0.5 38519|0.625 38520|0.45833 38521|0.95833 38522|0.80556 38523|0.625 38524|0.5 38525|0.5 38526|0.81944 38527|0.59722 38528|0.5 38529|0.61111 38530|0.51389 38531|0.66667 38532|0.54167 38533|0.47222 38534|0.5 38535|0.5 38536|0.875 38537|0.63889 38538|0.38889 38539|0.5 38540|0.5 38541|0.45833 38542|0.77778 38543|0.59722 38544|0.23611 38545|0.47222 38546|0.59722 38547|0.55556 38548|0.5 38549|0.55556 38550|0.5 38551|0.5 38552|0.44444 38553|0.54167 38554|0.72222 38555|0.70833 38556|0.5 38557|0.5 38558|0.55556 38559|0.72222 38560|0.75 38561|0.86111 38562|0.75 38563|0.44444 38564|0.55556 38565|0.41667 38566|0.5 38567|0.86111 38568|0.69444 38569|0.38889 38570|0.63889 38571|0.5 38572|0.65278 38573|0.56944 38574|0.38889 38575|0.44444 38576|0.52778 38577|0.5 38578|0.5 38579|0.5 38580|0.5 38581|0.59722 38582|0.77778 38583|0.55556 38584|0.54167 38585|0.5 38586|0.61111 38587|0.5 38588|0.5 38589|0.625 38590|0.70833 38591|0.52778 38592|0.66667 38593|0.79167 38594|0.36111 38595|0.69444 38596|0.59722 38597|0.41667 38598|0.5 38599|0.65278 38600|0.65278 38601|0.73611 38602|0.77778 38603|0.47222 38604|0.44444 38605|0.31944 38606|0.52778 38607|0.65278 38608|0.5 38609|0.31944 38610|0.77778 38611|0.81944 38612|0.59722 38613|0.58333 38614|0.5 38615|0.30556 38616|0.53125 38617|0.88889 38618|0.45833 38619|0.55556 38620|0.5 38621|0.69444 38622|0.5 38623|0.41667 38624|0.66667 38625|0.44444 38626|0.51389 38627|0.52778 38628|0.36111 38629|0.38889 38630|0.61111 38631|0.52778 38632|0.72222 38633|0.5 38634|0.58333 38635|0.44444 38636|0.5 38637|0.38542 38638|0.48611 38639|0.44444 38640|0.65278 38641|0.77778 38642|0.43056 38643|0.5 38644|0.58333 38645|0.33333 38646|0.5 38647|0.52778 38648|0.72222 38649|0.69444 38650|0.45833 38651|0.33333 38652|0.58333 38653|0.63889 38654|0.55556 38655|0.61111 38656|0.65278 38657|0.73611 38658|0.75 38659|0.63889 38660|0.81944 38661|0.72222 38662|0.5 38663|0.55556 38664|0.54167 38665|0.5 38666|0.55556 38667|0.5 38668|0.5 38669|0.5 38670|0.5 38671|0.59375 38672|0.61111 38673|0.5 38674|0.27778 38675|0.5 38676|0.38889 38677|0.55556 38678|0.5 38679|0.5 38680|0.5 38681|0.29167 38682|0.58333 38683|0.72222 38684|0.38889 38685|0.44444 38686|0.5 38687|0.66667 38688|0.55556 38689|0.52778 38690|0.65278 38691|0.5 38692|0.66667 38693|0.55556 38694|0.55556 38695|0.46875 38696|0.52778 38697|0.56944 38698|0.63889 38699|0.83333 38700|0.61111 38701|0.5 38702|0.5 38703|0.5 38704|0.41667 38705|0.72222 38706|0.84722 38707|0.77778 38708|0.83333 38709|0.5 38710|0.47222 38711|0.375 38712|0.5 38713|0.51389 38714|0.72222 38715|0.65278 38716|0.61111 38717|0.5 38718|0.51389 38719|0.47222 38720|0.69444 38721|0.33333 38722|0.45833 38723|0.47222 38724|0.5 38725|0.69444 38726|0.65278 38727|0.75 38728|0.52778 38729|0.375 38730|0.65278 38731|0.88889 38732|0.51389 38733|0.77778 38734|0.5 38735|0.5 38736|0.5 38737|0.5 38738|0.59722 38739|0.61111 38740|0.61111 38741|0.75 38742|0.5 38743|0.61111 38744|0.375 38745|0.45833 38746|0.66667 38747|0.5 38748|0.44444 38749|0.54167 38750|0.47222 38751|0.84722 38752|0.80556 38753|0.76389 38754|0.80556 38755|0.51389 38756|0.61111 38757|0.5 38758|0.5 38759|0.33333 38760|0.22222 38761|0.44444 38762|0.55556 38763|0.68056 38764|0.75 38765|0.625 38766|0.625 38767|0.77778 38768|0.44444 38769|0.67708 38770|0.61111 38771|0.38889 38772|0.5 38773|0.33333 38774|0.5 38775|0.55556 38776|0.63889 38777|0.27778 38778|0.66667 38779|0.66667 38780|0.55556 38781|0.5 38782|0.54167 38783|0.5 38784|0.54167 38785|0.625 38786|0.38889 38787|0.5 38788|0.95833 38789|0.25 38790|0.44444 38791|0.63889 38792|0.55556 38793|0.33333 38794|0.5 38795|0.98611 38796|0.90278 38797|0.61111 38798|0.52778 38799|0.45833 38800|0.61111 38801|0.51389 38802|0.5 38803|0.5 38804|0.5 38805|0.61111 38806|0.5 38807|0.59722 38808|0.625 38809|0.30556 38810|0.625 38811|0.5 38812|0.5 38813|0.34722 38814|0.52778 38815|0.51389 38816|0.54167 38817|0.625 38818|0.54167 38819|0.47222 38820|0.56944 38821|0.5 38822|0.41667 38823|0.48611 38824|0.61111 38825|0.5 38826|0.69444 38827|0.5 38828|0.55556 38829|0.77778 38830|0.80556 38831|0.65278 38832|0.5 38833|0.33333 38834|0.5 38835|0.22222 38836|0.5 38837|0.5 38838|0.56944 38839|0.66667 38840|0.55556 38841|0.5 38842|0.45833 38843|0.59722 38844|0.5 38845|0.63889 38846|0.69444 38847|1 38848|0.72222 38849|0.51389 38850|0.73611 38851|0.66667 38852|0.91667 38853|0.61111 38854|0.76389 38855|0.5 38856|0.44444 38857|0.51389 38858|0.38889 38859|0.59722 38860|0.83333 38861|0.875 38862|0.76389 38863|0.55556 38864|0.69444 38865|0.26389 38866|0.76389 38867|0.66667 38868|0.16667 38869|0.34722 38870|0.83333 38871|0.54167 38872|0.5 38873|0.77778 38874|0.77083 38875|0.625 38876|0.63889 38877|0.5 38878|0.66667 38879|0.70833 38880|0.77778 38881|0.69444 38882|0.38889 38883|0.5 38884|0.52778 38885|0.98611 38886|0.83333 38887|0.83333 38888|0.63889 38889|0.65278 38890|0.75 38891|0.77778 38892|0.69444 38893|0.48611 38894|0.625 38895|0.47222 38896|0.91667 38897|0.88889 38898|0.94444 38899|0.83333 38900|0.61111 38901|0.63889 38902|0.5 38903|0.5 38904|0.5 38905|0.63889 38906|0.5 38907|0.55556 38908|0.41667 38909|0.29167 38910|0.63889 38911|0.5 38912|0.55208 38913|0.45833 38914|0.66667 38915|0.77778 38916|0.52778 38917|0.375 38918|0.61111 38919|0.47222 38920|0.5 38921|0.5 38922|0.55208 38923|0.79167 38924|0.4375 38925|0.625 38926|0.44444 38927|0.5 38928|0.95833 38929|0.5 38930|0.48611 38931|0.56944 38932|0.77778 38933|0.72222 38934|0.5 38935|0.44444 38936|0.77778 38937|0.5 38938|0.83333 38939|0.88889 38940|0.5 38941|0.61111 38942|0.48611 38943|0.63889 38944|0.69444 38945|0.5 38946|0.5 38947|0.73611 38948|0.52778 38949|0.70833 38950|0.625 38951|0.88889 38952|0.81944 38953|0.88889 38954|0.77778 38955|0.68056 38956|0.9375 38957|0.70833 38958|0.47222 38959|0.5 38960|0.27778 38961|0.59722 38962|0.55556 38963|0.83333 38964|0.5 38965|0.94444 38966|0.93056 38967|0.30556 38968|0.55556 38969|0.5 38970|0.59722 38971|0.5 38972|0.34722 38973|0.65278 38974|0.88889 38975|0.51389 38976|0.56944 38977|0.59722 38978|0.5 38979|0.34722 38980|0.47222 38981|0.48611 38982|0.31944 38983|0.625 38984|0.875 38985|0.5 38986|0.5 38987|0.5 38988|0.47222 38989|0.33333 38990|0.59722 38991|0.65278 38992|0.44444 38993|0.58333 38994|0.34722 38995|0.5 38996|0.5 38997|0.45833 38998|0.45833 38999|0.86111 39000|0.25 39001|0.57292 39002|0.84722 39003|0.86111 39004|0.55556 39005|0.83333 39006|0.68056 39007|0.69444 39008|0.30556 39009|0.83333 39010|0.69444 39011|0.61111 39012|0.86111 39013|0.45833 39014|0.58333 39015|0.52778 39016|0.58333 39017|0.5 39018|0.5 39019|0.72222 39020|0.5 39021|0.875 39022|0.55556 39023|0.40278 39024|0.44444 39025|0.41667 39026|0.52778 39027|0.43056 39028|0.5 39029|0.44444 39030|0.26389 39031|0.36111 39032|0.3125 39033|0.31944 39034|0.51389 39035|0.66667 39036|0.5 39037|0.66667 39038|0.83333 39039|0.84722 39040|0.5 39041|0.66667 39042|0.5 39043|0.81944 39044|0.90278 39045|0.52778 39046|0.5 39047|0.26389 39048|0.61111 39049|0.54167 39050|0.5 39051|0.5 39052|0.625 39053|0.75 39054|0.80556 39055|0.51389 39056|0.19444 39057|0.65278 39058|0.56944 39059|0.5 39060|0.45833 39061|0.30556 39062|0.40278 39063|0.65278 39064|0.625 39065|0.38889 39066|0.5 39067|0.5 39068|0.51389 39069|0.5 39070|0.5 39071|0.70833 39072|0.5 39073|0.36111 39074|0.38889 39075|0.5 39076|0.72222 39077|0.51389 39078|0.47222 39079|0.625 39080|0.52778 39081|0.5 39082|0.77778 39083|0.69444 39084|0.13889 39085|0.61111 39086|0.83333 39087|0.66667 39088|0.69444 39089|0.70833 39090|0.29167 39091|0.5 39092|0.63889 39093|0.52778 39094|0.5 39095|0.625 39096|0.52778 39097|0.5 39098|0.69444 39099|0.79167 39100|0.63889 39101|0.68056 39102|0.52778 39103|0.91667 39104|0.63889 39105|0.58333 39106|0.5 39107|0.75 39108|0.83333 39109|0.55556 39110|0.63889 39111|0.625 39112|0.65278 39113|0.44444 39114|0.5 39115|0.5 39116|0.75 39117|0.56944 39118|0.66667 39119|0.80556 39120|0.69444 39121|0.5 39122|0.83333 39123|0.54167 39124|0.55556 39125|0.54167 39126|0.44444 39127|0.5 39128|0.31944 39129|0.45833 39130|0.875 39131|0.48611 39132|0.61111 39133|0.61111 39134|0.63889 39135|0.55556 39136|0.45833 39137|0.77778 39138|0.80556 39139|0.75 39140|0.58333 39141|0.56944 39142|0.5 39143|0.90278 39144|0.5 39145|0.51389 39146|0.5 39147|0.70833 39148|0.59722 39149|0.68056 39150|0.73611 39151|0.43056 39152|0.66667 39153|0.61111 39154|0.56944 39155|0.72222 39156|0.5 39157|0.51389 39158|0.5 39159|0.5 39160|0.5 39161|0.59722 39162|0.54167 39163|0.19444 39164|0.34722 39165|0.55556 39166|0.69444 39167|0.5 39168|0.5 39169|0.5 39170|0.31944 39171|0.55556 39172|0.79167 39173|0.5 39174|0.59722 39175|0.63889 39176|0.72222 39177|0.68056 39178|0.65278 39179|0.77778 39180|0.73611 39181|0.69444 39182|0.61111 39183|0.5 39184|0.58333 39185|0.41667 39186|0.55556 39187|0.56944 39188|0.5 39189|0.55556 39190|0.55556 39191|0.5 39192|0.61111 39193|0.55556 39194|0.40278 39195|0.55556 39196|0.5 39197|0.75 39198|0.5 39199|0.51389 39200|0.47222 39201|0.5 39202|0.83333 39203|0.70833 39204|0.68056 39205|0.47222 39206|0.5 39207|0.51389 39208|0.5 39209|0.55556 39210|0.625 39211|0.55556 39212|0.51389 39213|0.55556 39214|0.48611 39215|0.51389 39216|0.55556 39217|0.44444 39218|0.5 39219|0.72222 39220|0.70833 39221|0.76389 39222|0.5 39223|0.77778 39224|0.75 39225|0.77778 39226|0.59722 39227|0.77778 39228|0.5 39229|0.54167 39230|0.56944 39231|0.51389 39232|0.59722 39233|0.59722 39234|0.5 39235|0.44444 39236|0.5 39237|0.38889 39238|0.55556 39239|0.70833 39240|0.5 39241|0.5 39242|0.58333 39243|0.36111 39244|0.5 39245|0.5 39246|0.77778 39247|0.44444 39248|0.5 39249|0.83333 39250|0.5 39251|0.66667 39252|0.75 39253|0.75 39254|0.48611 39255|0.80556 39256|0.5 39257|0.625 39258|0.55556 39259|0.5 39260|0.875 39261|0.5 39262|0.59722 39263|0.5 39264|0.44444 39265|0.88889 39266|0.625 39267|0.54167 39268|0.58333 39269|0.52778 39270|0.48611 39271|0.5 39272|0.65278 39273|0.625 39274|0.44444 39275|0.51389 39276|0.625 39277|0.55556 39278|0.75 39279|0.55556 39280|0.61111 39281|0.69444 39282|0.5 39283|0.72222 39284|0.63889 39285|0.66667 39286|0.70833 39287|0.43056 39288|0.5 39289|0.88889 39290|0.66667 39291|0.51389 39292|0.72222 39293|0.43056 39294|0.34722 39295|0.33333 39296|0.81944 39297|0.5 39298|0.56944 39299|0.52778 39300|0.45833 39301|0.5 39302|0.61111 39303|0.81944 39304|0.55556 39305|0.30556 39306|0.5 39307|0.5 39308|0.66667 39309|0.44444 39310|0.625 39311|0.5 39312|0.72917 39313|0.75 39314|0.77778 39315|0.38889 39316|0.625 39317|0.5 39318|0.5 39319|0.54167 39320|0.38889 39321|0.68056 39322|0.48611 39323|0.63889 39324|0.66667 39325|0.56944 39326|0.36111 39327|0.40278 39328|0.63889 39329|0.83333 39330|0.51389 39331|0.61111 39332|0.19444 39333|0.23611 39334|0.61111 39335|0.27778 39336|0.5 39337|0.77778 39338|0.55556 39339|0.5 39340|0.59722 39341|0.625 39342|0.75 39343|0.66667 39344|0.44444 39345|0.52778 39346|0.55556 39347|0.55556 39348|0.5 39349|0.5 39350|0.5 39351|0.56944 39352|0.61111 39353|0.59722 39354|0.55556 39355|0.38889 39356|0.30556 39357|0.72222 39358|0.83333 39359|0.625 39360|0.5 39361|0.5 39362|0.5 39363|0.52778 39364|0.73611 39365|0.61111 39366|0.66667 39367|0.65278 39368|0.75 39369|0.5 39370|0.625 39371|0.81944 39372|0.94444 39373|0.75 39374|0.5 39375|0.77778 39376|0.61111 39377|0.84722 39378|0.48611 39379|0.51389 39380|0.33333 39381|0.30556 39382|0.47222 39383|0.44444 39384|0.54167 39385|0.38889 39386|0.25 39387|0.58333 39388|0.51389 39389|0.38889 39390|0.45833 39391|0.65278 39392|0.44444 39393|0.22222 39394|0.59722 39395|0.81944 39396|0.5 39397|0.61111 39398|0.52778 39399|0.55556 39400|0.44444 39401|0.19444 39402|0.34375 39403|0.41667 39404|0.98611 39405|0.77778 39406|0.94444 39407|0.84722 39408|0.375 39409|0.72222 39410|0.80556 39411|0.81944 39412|0.93056 39413|0.69444 39414|0.69444 39415|0.75 39416|0.68056 39417|0.5 39418|0.5 39419|0.5 39420|0.66667 39421|0.5 39422|0.5 39423|0.41667 39424|0.38889 39425|0.90278 39426|0.65278 39427|0.70833 39428|0.59722 39429|0.68056 39430|0.55556 39431|0.66667 39432|0.61458 39433|0.80556 39434|0.70833 39435|0.5 39436|0.83333 39437|0.44444 39438|0.56944 39439|0.44444 39440|0.44444 39441|0.13889 39442|0.56944 39443|0.66667 39444|0.54167 39445|0.68056 39446|0.79167 39447|0.77778 39448|0.55556 39449|0.22222 39450|0.51389 39451|0.47222 39452|0.54167 39453|0.5 39454|0.5 39455|0.55556 39456|0.63889 39457|0.5 39458|0.55556 39459|0.81944 39460|0.70833 39461|0.47222 39462|0.43056 39463|0.33333 39464|0.27778 39465|0.75 39466|0.625 39467|0.54167 39468|0.47222 39469|0.66667 39470|0.5 39471|0.76389 39472|0.53125 39473|0.88889 39474|0.66667 39475|0.5 39476|0.83333 39477|0.81944 39478|0.81944 39479|0.61111 39480|0.68056 39481|0.65278 39482|0.65278 39483|0.54167 39484|0.47222 39485|0.54167 39486|0.51389 39487|0.45833 39488|0.5 39489|0.5 39490|0.66667 39491|0.52778 39492|0.55556 39493|0.52778 39494|0.47222 39495|0.45833 39496|0.63889 39497|0.65278 39498|0.23611 39499|0.86111 39500|0.83333 39501|0.66667 39502|0.5 39503|0.58333 39504|0.63889 39505|0.65278 39506|0.5 39507|0.55556 39508|0.41667 39509|0.58333 39510|0.51389 39511|0.5 39512|0.5 39513|0.5 39514|0.375 39515|0.55208 39516|0.5 39517|0.5 39518|0.44444 39519|0.54167 39520|0.5 39521|0.79167 39522|0.5 39523|0.5 39524|0.5 39525|0.63889 39526|0.66667 39527|0.75 39528|0.88889 39529|0.5 39530|0.73611 39531|0.5 39532|0.79167 39533|0.5 39534|0.5 39535|0.47222 39536|0.73611 39537|0.61111 39538|0.30556 39539|0.36111 39540|0.5 39541|0.52778 39542|0.6875 39543|0.68056 39544|0.51389 39545|0.375 39546|0.23611 39547|0.625 39548|0.5 39549|0.52778 39550|0.47222 39551|0.44444 39552|0.76389 39553|0.30556 39554|0.43056 39555|0.5 39556|0.55556 39557|0.5 39558|0.61111 39559|0.72222 39560|0.5 39561|0.61111 39562|0.65278 39563|0.55556 39564|0.5 39565|0.5 39566|0.48611 39567|0.68056 39568|0.70833 39569|0.77778 39570|0.11111 39571|0.48611 39572|0.80556 39573|1 39574|0.41667 39575|0.23611 39576|0.61111 39577|0.5 39578|0.40278 39579|0.61111 39580|0.61111 39581|0.5 39582|0.98611 39583|0.91667 39584|0.36111 39585|0.65278 39586|0.5 39587|0.38889 39588|0.44444 39589|0.55556 39590|0.5 39591|0.54167 39592|0.5 39593|0.5 39594|0.53125 39595|0.5 39596|0.61111 39597|0.55556 39598|0.58333 39599|0.76389 39600|0.52778 39601|0.5 39602|0.5 39603|0.70833 39604|0.61111 39605|0.55556 39606|0.81944 39607|0.20833 39608|0.77778 39609|0.68056 39610|0.31944 39611|0.45833 39612|0.45833 39613|0.61111 39614|0.74306 39615|0.61111 39616|0.65278 39617|0.54167 39618|0.83333 39619|0.58333 39620|0.375 39621|0.33333 39622|0.76389 39623|0.45833 39624|0.27778 39625|0.26389 39626|0.56944 39627|0.56944 39628|0.45833 39629|0.20833 39630|0.27778 39631|0.44444 39632|0.5 39633|0.76389 39634|0.69444 39635|0.91667 39636|0.38889 39637|0.52778 39638|0.47222 39639|0.65278 39640|0.79167 39641|0.61111 39642|0.5 39643|0.31944 39644|0.58333 39645|0.34722 39646|0.5 39647|0.5 39648|0.5 39649|0.5 39650|0.45833 39651|0.61111 39652|0.72222 39653|0.56944 39654|0.61111 39655|0.56944 39656|0.20833 39657|0.44444 39658|0.5 39659|0.375 39660|0.5 39661|0.81944 39662|0.44444 39663|0.70833 39664|0.61111 39665|0.41667 39666|0.83333 39667|0.43056 39668|0.44444 39669|0.44444 39670|0.22222 39671|0.13889 39672|0.22222 39673|0.13889 39674|0.47222 39675|0.375 39676|0.44444 39677|0.44444 39678|0.25 39679|0.61111 39680|0.61111 39681|0.63889 39682|0.54167 39683|0.44444 39684|0.30556 39685|0.375 39686|0.5 39687|0.43056 39688|0.61111 39689|0.70833 39690|0.44444 39691|0.58333 39692|0.55556 39693|0.22222 39694|0.5 39695|0.54167 39696|0.65278 39697|0.59722 39698|0.81944 39699|0.58333 39700|0.63889 39701|0.22222 39702|0.5 39703|0.5 39704|0.5 39705|0.56944 39706|0.44444 39707|0.56944 39708|0.5 39709|0.45833 39710|0.66667 39711|0.5 39712|0.70833 39713|0.5 39714|0.52778 39715|0.79167 39716|0.66667 39717|0.47222 39718|0.5 39719|0.38889 39720|0.36111 39721|0.5 39722|0.48611 39723|0.5 39724|0.72222 39725|0.52778 39726|0.52778 39727|0.69444 39728|0.73611 39729|0.5 39730|0.43056 39731|0.5 39732|0.56944 39733|0.5 39734|0.60417 39735|0.29167 39736|0.5 39737|0.79167 39738|0.65278 39739|0.5 39740|0.61111 39741|0.55556 39742|0.75 39743|0.44444 39744|0.77083 39745|0.75 39746|0.47222 39747|0.36111 39748|0.5 39749|0.69444 39750|0.55556 39751|0.5 39752|0.44444 39753|0.22222 39754|0.63889 39755|0.5 39756|0.63889 39757|0.55556 39758|0.65278 39759|0.5 39760|0.52778 39761|0.51389 39762|0.45833 39763|0.29167 39764|0.5 39765|0.63889 39766|0.81944 39767|0.79167 39768|0.77778 39769|0.55556 39770|0.77083 39771|0.68056 39772|0.75 39773|0.55556 39774|0.59722 39775|0.61111 39776|0.68056 39777|0.80556 39778|0.83333 39779|0.88889 39780|0.77778 39781|0.31944 39782|0.70833 39783|0.63889 39784|0.5 39785|0.5 39786|0.56944 39787|0.38889 39788|0.66667 39789|0.86111 39790|0.33333 39791|0.80556 39792|0.44444 39793|0.5 39794|0.5 39795|0.26389 39796|0.5 39797|0.58333 39798|0.5 39799|0.73611 39800|0.5 39801|0.69444 39802|0.94444 39803|0.75 39804|0.61111 39805|0.58333 39806|0.76389 39807|0.73611 39808|0.875 39809|0.93056 39810|0.5 39811|0.61111 39812|0.76042 39813|0.31944 39814|0.44444 39815|0.45833 39816|0.77778 39817|0.61111 39818|0.45833 39819|0.44444 39820|0.5 39821|0.5 39822|0.5 39823|0.48611 39824|0.52778 39825|0.5 39826|0.125 39827|0.66667 39828|0.55556 39829|0.93056 39830|0.5 39831|0.5 39832|0.66667 39833|0.94444 39834|0.16667 39835|0.54167 39836|0.77778 39837|0.625 39838|0.40278 39839|0.80556 39840|0.875 39841|0.81944 39842|0.77778 39843|0.77778 39844|0.86111 39845|0.73611 39846|0.73611 39847|0.69444 39848|0.84722 39849|0.73611 39850|0.77778 39851|0.61111 39852|0.72222 39853|0.70833 39854|0.70833 39855|0.5 39856|0.5 39857|0.55556 39858|0.38889 39859|0.5 39860|0.66667 39861|0.5 39862|0.5 39863|0.54167 39864|0.63889 39865|0.22222 39866|0.5 39867|0.68056 39868|0.66667 39869|0.51389 39870|0.76389 39871|0.625 39872|0.5 39873|0.54167 39874|0.5 39875|0.48611 39876|0.44444 39877|0.33333 39878|0.5 39879|0.75 39880|0.66667 39881|0.73611 39882|0.66667 39883|0.33333 39884|0.70833 39885|0.54167 39886|0.69444 39887|0.5 39888|0.72222 39889|0.66667 39890|0.5 39891|0.66667 39892|0.63889 39893|0.22222 39894|0.5 39895|0.5 39896|0.52778 39897|0.18056 39898|0.63889 39899|0.77778 39900|0.69444 39901|0.47222 39902|0.23611 39903|0.11111 39904|0.26389 39905|0.13889 39906|0.27778 39907|0.27778 39908|0.65278 39909|0.73611 39910|0.76389 39911|0.56944 39912|0.66667 39913|0.61111 39914|0.5 39915|0.25 39916|0.47222 39917|0.58333 39918|0.79167 39919|0.77778 39920|0.38889 39921|0.59722 39922|0.65278 39923|0.70833 39924|0.52778 39925|0.61111 39926|0.76389 39927|0.84722 39928|0.72222 39929|0.76389 39930|0.68056 39931|0.80556 39932|0.76389 39933|0.70833 39934|0.72222 39935|0.61111 39936|0.69444 39937|0.77778 39938|0.69444 39939|0.56944 39940|0.75 39941|0.71875 39942|0.68056 39943|0.79167 39944|0.52778 39945|0.76389 39946|0.55556 39947|0.73611 39948|0.66667 39949|0.5 39950|0.54167 39951|0.5 39952|0.55556 39953|0.77778 39954|0.48611 39955|0.54167 39956|0.55556 39957|0.38889 39958|0.5 39959|0.55556 39960|0.80556 39961|0.77778 39962|0.69444 39963|0.34722 39964|0.875 39965|0.72222 39966|0.61111 39967|1 39968|0.61111 39969|0.5 39970|0.69444 39971|0.66667 39972|0.5 39973|0.5 39974|0.5 39975|0.88889 39976|0.625 39977|0.52778 39978|0.38889 39979|0.48611 39980|0.58333 39981|0.55556 39982|0.5 39983|0.41667 39984|0.375 39985|0.52778 39986|0.58333 39987|0.43056 39988|0.33333 39989|0.5 39990|0.47222 39991|0.72222 39992|0.54167 39993|0.5 39994|0.5 39995|0.80208 39996|0.55556 39997|0.52778 39998|0.81944 39999|0.65278 40000|0.38889 40001|0.5 40002|0.5 40003|0.5 40004|0.55556 40005|0.61111 40006|0.20833 40007|0.45833 40008|0.625 40009|0.58333 40010|0.65278 40011|0.5 40012|0.58333 40013|0.68056 40014|0.77778 40015|0.61111 40016|0.84722 40017|0.76042 40018|0.72222 40019|0.79167 40020|0.73611 40021|0.63889 40022|0.375 40023|0.40278 40024|0.069444 40025|0.45833 40026|0.61111 40027|0.63889 40028|0.51389 40029|0.83333 40030|0.65278 40031|0.5 40032|0.5 40033|0.44444 40034|0.44444 40035|0.5 40036|0.76389 40037|0.875 40038|0.58333 40039|0.5 40040|0.47222 40041|0.5 40042|0.34722 40043|0.36111 40044|0.44444 40045|0.375 40046|0.75 40047|0.65278 40048|0.45833 40049|0.5 40050|0.72222 40051|0.52778 40052|0.45833 40053|0.38889 40054|0.65278 40055|0.5 40056|0.55556 40057|0.69444 40058|0.80556 40059|0.55556 40060|0.75 40061|0.56944 40062|0.44444 40063|0.66667 40064|0.58333 40065|0.45833 40066|0.47222 40067|0.41667 40068|0.59722 40069|0.70833 40070|0.36111 40071|0.65278 40072|0.73611 40073|0.5 40074|0.38889 40075|0.65278 40076|0.45833 40077|0.47222 40078|0.63542 40079|0.5 40080|0.5 40081|0.61111 40082|0.63889 40083|0.5 40084|0.5 40085|0.5 40086|0.66667 40087|0.72222 40088|0.65278 40089|0.88889 40090|0.88889 40091|0.5 40092|0.51389 40093|0.56944 40094|0.55556 40095|0.5 40096|0.55556 40097|0.55556 40098|0.72222 40099|0.5 40100|0.5 40101|0.79167 40102|0.83333 40103|0.94444 40104|0.48611 40105|0.625 40106|0.70833 40107|0.66667 40108|0.75 40109|0.63889 40110|0.52778 40111|0.77778 40112|0.65278 40113|0.92708 40114|0.80556 40115|0.625 40116|0.875 40117|0.40278 40118|0.65278 40119|0.88889 40120|0.63889 40121|0.66667 40122|0.027778 40123|0.76389 40124|0.76389 40125|0.66667 40126|0.44444 40127|0.90278 40128|0.75 40129|0.68056 40130|0.55556 40131|0.79167 40132|0.66667 40133|0.83333 40134|0.56944 40135|0.66667 40136|0.5 40137|0.84722 40138|0.5 40139|0.61111 40140|0.30556 40141|0.88542 40142|0.61111 40143|0.54167 40144|0.69444 40145|0.875 40146|0.58333 40147|0.81944 40148|0.76389 40149|0.70833 40150|0.69444 40151|0.72222 40152|0.66667 40153|0.61111 40154|0.77083 40155|0.5 40156|0.5 40157|0.5 40158|0.625 40159|0.69792 40160|0.72917 40161|0.80556 40162|0.61111 40163|0.5 40164|0.5 40165|0.52778 40166|0.63889 40167|0.86111 40168|0.66667 40169|0.75 40170|0.59722 40171|0.55556 40172|0.73611 40173|0.84722 40174|0.75 40175|0.94444 40176|0.97222 40177|0.76389 40178|0.65278 40179|0.63889 40180|0.55556 40181|0.66667 40182|0.93056 40183|0.69444 40184|0.54167 40185|0.86111 40186|0.63542 40187|0.5 40188|0.51389 40189|0.83333 40190|0.5 40191|0.68056 40192|0.5 40193|0.65278 40194|0.5 40195|0.58333 40196|0.66667 40197|0.5 40198|0.90278 40199|0.75 40200|0.77778 40201|0.81944 40202|0.44444 40203|0.5 40204|0.84722 40205|0.70833 40206|0.30556 40207|0.77778 40208|0.76389 40209|0.72222 40210|0.69444 40211|0.90278 40212|0.81944 40213|0.38889 40214|0.5 40215|0.80556 40216|0.86111 40217|0.77778 40218|0.69444 40219|0.15278 40220|0.76389 40221|0.69444 40222|0.66667 40223|0.69444 40224|0.72222 40225|0.72222 40226|0.45833 40227|0.61111 40228|0.56944 40229|0.84722 40230|0.88542 40231|0.51389 40232|0.70833 40233|0.59722 40234|0.77778 40235|0.58333 40236|0.83333 40237|0.40278 40238|0.77778 40239|0.44444 40240|0.84722 40241|0.5 40242|0.5 40243|0.76389 40244|0.80556 40245|0.44444 40246|0.097222 40247|0.72222 40248|0.83333 40249|0.65278 40250|0.65278 40251|0.68056 40252|0.88889 40253|0.79167 40254|0.68056 40255|0.73611 40256|0.73611 40257|0.66667 40258|0.77778 40259|0.5 40260|0.75 40261|0.88889 40262|0.83333 40263|0.44444 40264|0.58333 40265|0.54167 40266|0.66667 40267|0.56944 40268|0.55556 40269|0.81944 40270|0.33333 40271|0.875 40272|0.5 40273|0.66667 40274|0.66667 40275|0.5 40276|0.56944 40277|0.80556 40278|0.83333 40279|0.5 40280|0.63889 40281|0.48611 40282|0.65278 40283|0.5 40284|0.55556 40285|0.5 40286|0.5 40287|0.63889 40288|0.5 40289|0.56944 40290|0.5 40291|0.63889 40292|0.5 40293|0.61111 40294|0.33333 40295|0.5 40296|0.76389 40297|0.58333 40298|0.70833 40299|0.38889 40300|0.33333 40301|0.59722 40302|0.36111 40303|0.5 40304|0.66667 40305|0.5 40306|0.41667 40307|0.79167 40308|0.5 40309|0.5 40310|0.5 40311|0.84722 40312|0.75 40313|0.84722 40314|0.72222 40315|0.69444 40316|0.68056 40317|0.61111 40318|0.26389 40319|0.34722 40320|0.30556 40321|0.38889 40322|0.44444 40323|0.23611 40324|0.5 40325|0.66667 40326|0.61111 40327|0.72222 40328|0.5 40329|0.91667 40330|1 40331|0.63889 40332|0.66667 40333|0.91667 40334|0.69444 40335|0.44444 40336|0.75 40337|0.81944 40338|0.72222 40339|0.77778 40340|0.5 40341|0.51389 40342|0.33333 40343|0.59722 40344|0.55556 40345|0.75 40346|0.72222 40347|0.73611 40348|0.81944 40349|0.81944 40350|0.69444 40351|0.66667 40352|0.68056 40353|0.69444 40354|0.77778 40355|0.61111 40356|0.84722 40357|0.5 40358|0.59722 40359|0.88889 40360|0.69444 40361|0.75 40362|0.63889 40363|0.81944 40364|0.63889 40365|0.79167 40366|0.68056 40367|0.76389 40368|0.81944 40369|0.76389 40370|0.73611 40371|0.88889 40372|0.80556 40373|0.83333 40374|0.83333 40375|0.26389 40376|0.26389 40377|0.5 40378|0.75 40379|0.5 40380|0.43056 40381|0.72222 40382|0.81944 40383|0.58333 40384|0.65278 40385|0.625 40386|0.5 40387|0.5 40388|0.66667 40389|0.5 40390|0.5 40391|0.81944 40392|0.66667 40393|0.59722 40394|0.625 40395|0.38889 40396|0.375 40397|0.55556 40398|0.69444 40399|0.85417 40400|0.16667 40401|0.69444 40402|0.5 40403|0.875 40404|0.80556 40405|0.51389 40406|0.76389 40407|0.84722 40408|0.72222 40409|1 40410|0.63889 40411|0.80556 40412|0.19444 40413|0.29167 40414|0.69444 40415|0.5 40416|0.5 40417|0.44444 40418|0.66667 40419|0.44444 40420|0.58333 40421|0.375 40422|0.63889 40423|0.44444 40424|0.90278 40425|0.58333 40426|0.51389 40427|0.5 40428|0.65278 40429|0.59722 40430|0.76389 40431|0.23611 40432|0.22222 40433|0.34722 40434|0.77778 40435|0.43056 40436|0.40278 40437|0.45833 40438|0.625 40439|0.5 40440|0.5 40441|0.45833 40442|0.61111 40443|0.38889 40444|0.94444 40445|0.69444 40446|0.75 40447|0.61111 40448|0.55556 40449|0.51389 40450|0.5 40451|0.44444 40452|0.47222 40453|0.66667 40454|0.68056 40455|0.29167 40456|0.43056 40457|0.52778 40458|0.625 40459|0.38889 40460|0.66667 40461|0.625 40462|0.34722 40463|0.73611 40464|0.81944 40465|0.61111 40466|0.5 40467|0.54167 40468|0.76389 40469|0.66667 40470|0.875 40471|0.56944 40472|0.77778 40473|0.56944 40474|0.58333 40475|0.72222 40476|0.5 40477|0.51389 40478|0.5 40479|0.5 40480|0.51389 40481|0.66667 40482|0.44444 40483|0.83333 40484|0.58333 40485|0.79167 40486|0.5 40487|0.5 40488|0.51389 40489|0.5 40490|0.5 40491|0.5 40492|0.5 40493|0.51389 40494|0.66667 40495|0.5 40496|0.66667 40497|0.5 40498|0.65278 40499|0.5 40500|0.58333 40501|0.5 40502|0.5 40503|0.52778 40504|0.65278 40505|0.5 40506|0.54167 40507|0.5 40508|0.61111 40509|0.5 40510|0.5 40511|0.625 40512|0.5 40513|0.65278 40514|0.5 40515|0.5 40516|0.69444 40517|0.77778 40518|0.5 40519|0.61111 40520|0.77778 40521|0.5 40522|0.52778 40523|0.75 40524|0.56944 40525|0.72222 40526|0.5 40527|0.54167 40528|0.77778 40529|0.56944 40530|0.55556 40531|0.59722 40532|0.93056 40533|0.5 40534|0.61111 40535|0.5 40536|0.59722 40537|0.5 40538|0.61111 40539|0.5 40540|0.5 40541|0.58333 40542|0.38889 40543|0.55556 40544|0.66667 40545|0.48611 40546|0.80556 40547|0.68056 40548|0.77778 40549|0.83333 40550|0.83333 40551|0.54167 40552|0.38889 40553|0.33333 40554|0.44444 40555|0.55556 40556|0.55556 40557|0.66667 40558|0.59722 40559|0.43056 40560|0.48611 40561|0.5 40562|0.61111 40563|0.5 40564|0.70833 40565|0.84722 40566|0.44444 40567|0.72222 40568|0.55556 40569|0.56944 40570|0.83333 40571|0.63889 40572|0.5 40573|0.48611 40574|0.47222 40575|0.33333 40576|0.19444 40577|0.31944 40578|0.59722 40579|0.72222 40580|0.66667 40581|0.36111 40582|0.54167 40583|0.59722 40584|0.44444 40585|0.65278 40586|0.68056 40587|0.70833 40588|0.5 40589|0.55556 40590|0.5 40591|0.52778 40592|0.58333 40593|0.94444 40594|0.61111 40595|0.34722 40596|0.48611 40597|0.47222 40598|0.16667 40599|0.83333 40600|0.75 40601|0.5 40602|0.5 40603|0.43056 40604|0.47222 40605|0.66667 40606|0.5 40607|0.48611 40608|0.5 40609|0.77778 40610|0.61111 40611|0.5 40612|0.76389 40613|0.81944 40614|0.36111 40615|0.69444 40616|0.83333 40617|0.83333 40618|0.33333 40619|0.5 40620|0.51389 40621|0.44444 40622|0.73611 40623|0.79167 40624|0.65278 40625|0.58333 40626|0.43056 40627|0.61111 40628|0.63889 40629|0.48611 40630|0.55556 40631|0.5 40632|0.63889 40633|0.52778 40634|0.58333 40635|0.72222 40636|0.77778 40637|0.90278 40638|0.81944 40639|0.66667 40640|0.81944 40641|0.73611 40642|0.66667 40643|0.79167 40644|0.86111 40645|0.84722 40646|0.69444 40647|0.70833 40648|0.79167 40649|0.75 40650|0.69444 40651|0.69444 40652|0.83333 40653|0.83333 40654|0.91667 40655|0.76389 40656|0.76389 40657|0.52778 40658|0.80556 40659|0.83333 40660|0.375 40661|0.59722 40662|0.66667 40663|0.63889 40664|0.81944 40665|0.79167 40666|0.75 40667|0.69444 40668|0.90278 40669|0.88889 40670|0.83333 40671|0.91667 40672|0.77778 40673|0.875 40674|0.84722 40675|0.77778 40676|0.52778 40677|0.33333 40678|0.72222 40679|0.59722 40680|0.68056 40681|0.79167 40682|0.73611 40683|0.76389 40684|0.58333 40685|0.84722 40686|0.83333 40687|0.76389 40688|0.84722 40689|0.83333 40690|0.625 40691|0.81944 40692|0.81944 40693|0.83333 40694|0.81944 40695|0.56944 40696|0.625 40697|0.58333 40698|0.61111 40699|0.70833 40700|0.73611 40701|0.79167 40702|0.81944 40703|0.875 40704|0.63889 40705|0.65278 40706|0.77778 40707|0.875 40708|0.73611 40709|0.97222 40710|0.83333 40711|0.91667 40712|0.81944 40713|0.80556 40714|0.91667 40715|0.77778 40716|0.56944 40717|0.43056 40718|0.83333 40719|0.80556 40720|0.875 40721|0.77778 40722|0.75 40723|0.90278 40724|0.88889 40725|0.83333 40726|0.86111 40727|0.79167 40728|0.81944 40729|0.88889 40730|0.84722 40731|0.84722 40732|0.83333 40733|0.84722 40734|0.94444 40735|0.76389 40736|0.875 40737|0.93056 40738|0.5 40739|0.75 40740|0.80556 40741|0.61111 40742|0.77778 40743|0.5 40744|0.93056 40745|0.86111 40746|0.83333 40747|0.72222 40748|0.44444 40749|0.68056 40750|0.66667 40751|0.83333 40752|0.75 40753|0.83333 40754|0.83333 40755|0.69444 40756|0.59722 40757|0.77778 40758|0.77778 40759|0.84722 40760|0.81944 40761|0.875 40762|0.90278 40763|0.47222 40764|0.80556 40765|0.59722 40766|0.625 40767|0.80556 40768|0.84722 40769|0.875 40770|0.90278 40771|0.83333 40772|0.77778 40773|0.5 40774|0.80556 40775|0.66667 40776|0.5 40777|0.58333 40778|0.51389 40779|0.56944 40780|0.625 40781|0.375 40782|0.5 40783|0.5 40784|0.61111 40785|0.38889 40786|0.33333 40787|0.36111 40788|0.77778 40789|0.59722 40790|0.58333 40791|0.61111 40792|0.5 40793|0.55556 40794|0.5 40795|0.55556 40796|0.43056 40797|0.68056 40798|0.5 40799|0.80556 40800|0.70833 40801|0.51389 40802|0.54167 40803|0.73611 40804|0.77778 40805|0.45833 40806|0.59722 40807|0.58333 40808|0.51389 40809|0.88889 40810|0.68056 40811|0.61111 40812|0.69444 40813|0.5 40814|0.45833 40815|0.55556 40816|0.84722 40817|0.5 40818|0.5 40819|0.5 40820|0.77778 40821|0.66667 40822|0.56944 40823|0.72222 40824|0.77778 40825|0.77778 40826|0.5 40827|0.38889 40828|0.375 40829|0.77778 40830|0.84722 40831|0.84722 40832|0.61111 40833|0.27778 40834|0.52778 40835|0.33333 40836|0.45833 40837|0.625 40838|0.41667 40839|0.51389 40840|0.68056 40841|0.75 40842|0.88889 40843|0.77778 40844|0.52778 40845|0.73611 40846|0.72222 40847|0.77778 40848|0.84722 40849|0.5 40850|0.61111 40851|0.5 40852|0.5 40853|0.79167 40854|0.84722 40855|0.77778 40856|0.48611 40857|0.61111 40858|0.83333 40859|0.56944 40860|0.65278 40861|0.34722 40862|0.83333 40863|0.45833 40864|0.33333 40865|0.76389 40866|0.30556 40867|0.33333 40868|0.75 40869|0.5 40870|0.58333 40871|0.27778 40872|0.83333 40873|0.875 40874|0.5 40875|0.5 40876|0.5 40877|0.5 40878|0.77778 40879|0.5 40880|0.5 40881|0.63889 40882|0.66667 40883|0.80556 40884|0.5 40885|0.625 40886|0.79167 40887|0.84722 40888|0.81944 40889|0.77778 40890|0.80556 40891|0.66667 40892|0.55556 40893|0.5 40894|0.5 40895|0.55556 40896|1 40897|0.875 40898|0.83333 40899|0.63889 40900|0.36111 40901|0.69444 40902|0.84722 40903|0.55556 40904|0.55556 40905|0.75 40906|0.90278 40907|0.75 40908|0.38889 40909|0.59722 40910|0.88889 40911|0.48611 40912|0.68056 40913|0.40278 40914|0.41667 40915|0.75 40916|0.84722 40917|0.5 40918|0.72222 40919|0.76389 40920|0.75 40921|0.90278 40922|0.88889 40923|0.5 40924|0.66667 40925|0.73611 40926|0.81944 40927|0.84722 40928|0.81944 40929|0.77778 40930|0.83333 40931|0.86111 40932|0.625 40933|0.77778 40934|0.63889 40935|0.77778 40936|0.56944 40937|0.5 40938|0.44444 40939|0.5 40940|0.5 40941|0.80556 40942|0.875 40943|0.93056 40944|0.86111 40945|0.5 40946|0.5 40947|0.61111 40948|0.88889 40949|0.5 40950|0.5 40951|0.5 40952|0.81944 40953|0.5 40954|0.20833 40955|0.33333 40956|0.81944 40957|0.75 40958|0.76389 40959|0.44444 40960|0.44444 40961|0.55556 40962|0.875 40963|0.77778 40964|0.84722 40965|0.83333 40966|0.80556 40967|0.59722 40968|0.95833 40969|0.75 40970|0.5 40971|0.55556 40972|0.5 40973|0.59722 40974|0.97222 40975|0.44444 40976|0.5 40977|0.59722 40978|0.625 40979|0.36111 40980|0.43056 40981|0.5 40982|0.94444 40983|0.90278 40984|0.65278 40985|0.44444 40986|0.56944 40987|0.80556 40988|0.625 40989|0.75 40990|0.66667 40991|0.73611 40992|0.59722 40993|0.44444 40994|0.55556 40995|0.65278 40996|0.68056 40997|0.23611 40998|0.38889 40999|0.77778 41000|0.38889 41001|0.45833 41002|0.68056 41003|0.97222 41004|0.88889 41005|0.90278 41006|0.875 41007|0.80556 41008|0.72222 41009|0.66667 41010|0.61111 41011|0.83333 41012|0.66667 41013|0.66667 41014|0.72222 41015|0.625 41016|0.63889 41017|0.90278 41018|0.93056 41019|0.11111 41020|0.22222 41021|0.70833 41022|0.47222 41023|0.54167 41024|0.59722 41025|0.30556 41026|0.31944 41027|0.38889 41028|0.375 41029|0.40278 41030|0.56944 41031|0.68056 41032|0.76389 41033|0.54167 41034|0.5 41035|0.51389 41036|0.5 41037|0.625 41038|0.5 41039|0.5 41040|0.22222 41041|0.31944 41042|0.36111 41043|0.70833 41044|0.5 41045|0.38889 41046|0.55556 41047|0.79167 41048|0.26389 41049|0.34722 41050|0.68056 41051|0.5 41052|0.61111 41053|0.55556 41054|0.625 41055|0.77778 41056|0.68056 41057|0.56944 41058|0.59722 41059|0.80556 41060|0.76389 41061|0.81944 41062|0.70833 41063|0.86111 41064|0.5 41065|0.5 41066|0.63889 41067|0.5 41068|0.5 41069|0.15278 41070|0.38889 41071|0.58333 41072|0.83333 41073|0.51389 41074|0.52778 41075|0.63889 41076|0.81944 41077|0.80556 41078|0.30556 41079|0.43056 41080|0.68056 41081|0.375 41082|0.72222 41083|0.5 41084|0.58333 41085|0.58333 41086|0.83333 41087|0.73611 41088|0.68056 41089|0.77778 41090|0.66667 41091|0.80556 41092|0.43056 41093|0.5 41094|0.52778 41095|0.41667 41096|0.68056 41097|0.625 41098|0.72222 41099|0.68056 41100|0.75 41101|0.5 41102|0.55556 41103|0.66667 41104|0.45833 41105|0.54167 41106|0.5 41107|0.47222 41108|0.56944 41109|0.70833 41110|0.81944 41111|0.41667 41112|0.40278 41113|0.34722 41114|0.66667 41115|0.33333 41116|0.40278 41117|0.65278 41118|0.5 41119|0.5 41120|0.5 41121|0.51389 41122|0.5 41123|0.5 41124|0.5 41125|0.59722 41126|0.61111 41127|0.5 41128|0.76389 41129|0.80556 41130|0.36111 41131|0.61111 41132|0.68056 41133|0.63889 41134|0.5 41135|0.66667 41136|0.55556 41137|0.80556 41138|0.70833 41139|0.5 41140|0.97222 41141|1 41142|0.95833 41143|0.94444 41144|0.875 41145|0.95833 41146|0.80556 41147|0.84722 41148|0.80556 41149|0.40278 41150|0.25 41151|0.81944 41152|0.5 41153|0.5 41154|0.5 41155|0.51389 41156|0.5 41157|0.66667 41158|0.93056 41159|0.73611 41160|0.19444 41161|0.19444 41162|0.5 41163|0.70833 41164|0.51389 41165|0.59722 41166|0.55556 41167|0.77778 41168|0.26389 41169|0.30556 41170|0.59722 41171|0.83333 41172|0.72222 41173|0.5 41174|0.56944 41175|0.5 41176|0.5 41177|0.33333 41178|0.65278 41179|0.83333 41180|0.5 41181|0.55556 41182|0.65278 41183|0.5 41184|0.70833 41185|0.51389 41186|0.58333 41187|0.61111 41188|0.88889 41189|0.5 41190|0.72222 41191|0.875 41192|0.59722 41193|0.68056 41194|0.45833 41195|0.59722 41196|0.625 41197|0.45833 41198|0.66667 41199|0.65278 41200|0.61111 41201|0.80556 41202|0.5 41203|0.77778 41204|0.81944 41205|0.72222 41206|0.83333 41207|0.59722 41208|0.95833 41209|0.375 41210|0.45833 41211|0.66667 41212|0.55556 41213|0.77778 41214|0.5 41215|0.70833 41216|0.48611 41217|0.80556 41218|0.77778 41219|0.52778 41220|0.40278 41221|0.5 41222|0.45833 41223|0.51389 41224|0.65278 41225|0.63889 41226|0.70833 41227|0.80556 41228|0.51389 41229|0.5 41230|0.31944 41231|0.5 41232|0.73611 41233|0.81944 41234|0.79167 41235|0.77778 41236|0.80556 41237|0.55556 41238|0.58333 41239|0.86111 41240|0.65278 41241|0.47222 41242|0.61111 41243|0.63889 41244|0.81944 41245|0.58333 41246|0.79167 41247|0.72222 41248|0.75 41249|0.61111 41250|0.55556 41251|0.55556 41252|0.5 41253|0.5 41254|0.27778 41255|0.40278 41256|0.77778 41257|0.76389 41258|0.83333 41259|0.55556 41260|0.58333 41261|0.73611 41262|0.70833 41263|0.56944 41264|0.83333 41265|0.44444 41266|0.38889 41267|0.81944 41268|0.56944 41269|0.76389 41270|0.79167 41271|0.47222 41272|0.51389 41273|0.54167 41274|0.54167 41275|0.51389 41276|0.61111 41277|0.73611 41278|0.75 41279|0.44444 41280|0.76389 41281|0.80556 41282|0.66667 41283|0.38889 41284|0.75 41285|0.76389 41286|0.75 41287|0.70833 41288|0.73611 41289|0.68056 41290|0.61111 41291|0.625 41292|0.55556 41293|0.55556 41294|0.55556 41295|0.75 41296|0.80556 41297|0.68056 41298|0.36111 41299|0.30556 41300|0.83333 41301|0.63889 41302|0.75 41303|0.66667 41304|0.79167 41305|0.59722 41306|0.38889 41307|0.66667 41308|0.52778 41309|0.61111 41310|0.73611 41311|0.81944 41312|0.76389 41313|0.5 41314|0.625 41315|0.38889 41316|0.72222 41317|0.90278 41318|0.84722 41319|0.76389 41320|0.66667 41321|0.80556 41322|0.94444 41323|0.43056 41324|0.41667 41325|0.63889 41326|0.93056 41327|0.86111 41328|0.94444 41329|0.31944 41330|0.58333 41331|0.70833 41332|0.75 41333|0.77778 41334|0.44444 41335|0.58333 41336|0.79167 41337|0.70833 41338|0.59722 41339|0.86111 41340|0.65278 41341|0.68056 41342|0.81944 41343|0.27778 41344|0.33333 41345|0.76389 41346|0.84722 41347|0.68056 41348|0.77778 41349|0.69444 41350|0.5 41351|0.5 41352|0.5 41353|0.5 41354|0.47222 41355|0.5 41356|0.55556 41357|0.5 41358|0.58333 41359|0.72222 41360|0.55556 41361|0.66667 41362|0.77778 41363|0.76389 41364|0.70833 41365|0.5 41366|0.33333 41367|0.5 41368|0.36111 41369|0.77778 41370|0.47222 41371|0.52778 41372|0.625 41373|0.55556 41374|0.625 41375|0.625 41376|0.5 41377|0.81944 41378|0.5 41379|0.58333 41380|0.5 41381|0.5 41382|0.61111 41383|0.72222 41384|0.73611 41385|0.54167 41386|0.38889 41387|0.68056 41388|0.55556 41389|0.58333 41390|0.68056 41391|0.55556 41392|0.75 41393|0.59722 41394|0.56944 41395|0.69444 41396|0.80556 41397|0.27778 41398|0.44444 41399|0.56944 41400|0.51389 41401|0.58333 41402|0.51389 41403|0.70833 41404|0.33333 41405|0.625 41406|0.55556 41407|0.48611 41408|0.40278 41409|0.72222 41410|0.33333 41411|0.34722 41412|0.70833 41413|0.54861 41414|0.5 41415|0.5 41416|0.59722 41417|0.52778 41418|0.44444 41419|0.27778 41420|0.61111 41421|0.875 41422|0.38889 41423|0.68056 41424|0.55556 41425|0.84722 41426|0.81944 41427|0.80556 41428|0.76389 41429|0.5 41430|0.61111 41431|0.48611 41432|0.80556 41433|0.86111 41434|0.86111 41435|0.875 41436|0.81944 41437|0.83333 41438|0.91667 41439|0.55556 41440|0.56944 41441|0.59722 41442|0.5 41443|0.66667 41444|0.73611 41445|0.80556 41446|0.73611 41447|0.55556 41448|0.19444 41449|0.59722 41450|0.625 41451|0.48611 41452|0.77778 41453|0.81944 41454|0.93056 41455|0.79167 41456|0.40278 41457|0.61111 41458|0.5 41459|0.5 41460|0.69444 41461|0.80556 41462|0.79167 41463|0.84722 41464|0.31944 41465|0.55556 41466|0.88889 41467|0.69444 41468|0.52778 41469|0.73611 41470|0.73611 41471|0.61111 41472|0.47222 41473|0.65278 41474|0.61111 41475|0.56944 41476|0.84722 41477|0.83333 41478|0.72222 41479|0.79167 41480|0.61111 41481|0.5 41482|0.66667 41483|0.83333 41484|0.66667 41485|0.69444 41486|0.55556 41487|0.77778 41488|0.59722 41489|0.68056 41490|0.59722 41491|0.625 41492|0.56944 41493|0.61111 41494|0.66667 41495|0.47222 41496|0.5 41497|0.72222 41498|0.055556 41499|0.43056 41500|0.76389 41501|0.27778 41502|0.48611 41503|0.5 41504|0.70833 41505|0.54167 41506|0.75 41507|0.66667 41508|0.59722 41509|0.875 41510|0.58333 41511|0.72222 41512|0.58333 41513|0.59722 41514|0.5 41515|0.5 41516|0.5 41517|0.79167 41518|0.72222 41519|0.75 41520|0.5 41521|0.56944 41522|0.625 41523|0.59722 41524|0.43056 41525|0.5 41526|0.5 41527|0.61111 41528|0.5 41529|0.5 41530|0.65278 41531|0.61111 41532|0.73611 41533|0.66667 41534|0.69444 41535|0.58333 41536|0.36111 41537|0.61111 41538|0.65278 41539|0.125 41540|0.45833 41541|0.77778 41542|0.81944 41543|0.52778 41544|0.58333 41545|0.40278 41546|0.70833 41547|0.86111 41548|0.84722 41549|0.79167 41550|0.66667 41551|0.66667 41552|0.73611 41553|0.68056 41554|0.38889 41555|0.625 41556|0.47222 41557|0.58333 41558|0.44444 41559|0.72222 41560|0.625 41561|0.5 41562|0.55556 41563|0.5 41564|0.44444 41565|0.625 41566|0.44444 41567|0.59722 41568|0.63889 41569|0.80556 41570|0.81944 41571|0.61111 41572|0.51389 41573|0.90278 41574|0.65278 41575|0.75 41576|0.77778 41577|0.66667 41578|0.5 41579|0.5 41580|0.48611 41581|0.5 41582|0.5 41583|0.58333 41584|0.5 41585|0.77778 41586|0.88889 41587|0.5 41588|0.59722 41589|0.5 41590|0.625 41591|0.59722 41592|0.66667 41593|0.43056 41594|0.52778 41595|0.51389 41596|0.81944 41597|0.5 41598|0.43056 41599|0.55556 41600|0.55556 41601|0.54167 41602|0.51389 41603|0.55556 41604|0.33333 41605|0.66667 41606|0.72222 41607|0.875 41608|0.79167 41609|0.80556 41610|0.58333 41611|0.70833 41612|0.38889 41613|0.44444 41614|0.375 41615|0.65278 41616|0.5 41617|0.75 41618|0.38889 41619|0.72222 41620|0.81944 41621|0.5 41622|0.56944 41623|0.66667 41624|0.625 41625|0.84722 41626|0.83333 41627|0.56944 41628|0.61111 41629|0.69444 41630|0.52778 41631|0.70833 41632|0.5 41633|0.83333 41634|0.76389 41635|0.61111 41636|0.75 41637|0.5 41638|0.38889 41639|0.56944 41640|0.40278 41641|0.55556 41642|0.40278 41643|0.5 41644|0.56944 41645|0.70833 41646|0.88889 41647|0.63889 41648|0.65278 41649|0.5 41650|0.5 41651|0.45833 41652|0.5 41653|0.55556 41654|0.45833 41655|0.77778 41656|0.51389 41657|0.625 41658|0.22222 41659|0.47222 41660|0.55556 41661|0.83333 41662|0.41667 41663|0.73611 41664|0.54167 41665|0.5 41666|0.59722 41667|0.80556 41668|0.54167 41669|0.79167 41670|0.75 41671|0.56944 41672|0.59722 41673|0.75 41674|0.22222 41675|0.58333 41676|0.54167 41677|0.5 41678|0.625 41679|0.5 41680|0.66667 41681|0.5 41682|0.63889 41683|0.41667 41684|0.45833 41685|0.59722 41686|0.55556 41687|0.55556 41688|0.5 41689|0.5 41690|0.5 41691|0.625 41692|0.83333 41693|0.69444 41694|0.88889 41695|0.5 41696|0.66667 41697|0.61111 41698|0.83333 41699|0.5 41700|0.56944 41701|0.54167 41702|0.54167 41703|0.76389 41704|0.65278 41705|0.73611 41706|0.80556 41707|0.72222 41708|0.5 41709|0.55556 41710|0.375 41711|0.5 41712|0.5 41713|0.5 41714|0.52778 41715|0.59722 41716|0.41667 41717|0.52778 41718|0.5 41719|0.41667 41720|0.56944 41721|0.625 41722|0.54167 41723|0.45833 41724|0.44444 41725|0.61111 41726|0.55556 41727|0.61111 41728|0.77778 41729|0.61111 41730|0.38889 41731|0.55556 41732|0.58333 41733|0.61111 41734|0.34722 41735|0.5 41736|0.66667 41737|0.5 41738|0.47222 41739|0.5 41740|0.83333 41741|0.59722 41742|0.44444 41743|0.83333 41744|0.70833 41745|0.69444 41746|0.70833 41747|0.83333 41748|0.90278 41749|0.56944 41750|0.68056 41751|0.41667 41752|0.5 41753|0.52778 41754|0.80556 41755|0.45833 41756|0.30556 41757|0.5 41758|0.68056 41759|0.5 41760|0.5 41761|0.81944 41762|0.66667 41763|0.86111 41764|0.75 41765|0.83333 41766|0.84722 41767|0.73611 41768|0.63889 41769|0.625 41770|0.52778 41771|0.625 41772|0.68056 41773|0.66667 41774|0.58333 41775|0.70833 41776|0.66667 41777|0.52778 41778|0.38889 41779|0.66667 41780|0.63889 41781|0.54167 41782|0.83333 41783|0.80556 41784|0.44444 41785|0.59722 41786|0.23611 41787|0.59722 41788|0.59722 41789|0.68056 41790|0.40278 41791|0.59722 41792|0.61111 41793|0.5 41794|0.77778 41795|0.58333 41796|0.47222 41797|0.5 41798|0.63889 41799|0.66667 41800|0.70833 41801|0.80556 41802|0.80556 41803|0.83333 41804|0.56944 41805|0.79167 41806|0.68056 41807|0.44444 41808|0.56944 41809|0.375 41810|0.38889 41811|0.56944 41812|0.59722 41813|0.72222 41814|0.79167 41815|0.69444 41816|0.22222 41817|0.43056 41818|0.51389 41819|0.34722 41820|0.56944 41821|0.55556 41822|0.47222 41823|0.69444 41824|0.56944 41825|0.875 41826|0.73611 41827|0.73611 41828|0.84722 41829|0.55556 41830|0.45833 41831|0.5 41832|0.54167 41833|0.59722 41834|0.13889 41835|0.48611 41836|0.5 41837|0.63889 41838|0.56944 41839|0.5 41840|0.68056 41841|0.47222 41842|0.73611 41843|0.77778 41844|0.73611 41845|0.84722 41846|0.65278 41847|0.73611 41848|0.76389 41849|0.80556 41850|0.72222 41851|0.77778 41852|0.70833 41853|0.65278 41854|0.66667 41855|0.73611 41856|0.52778 41857|0.69444 41858|0.66667 41859|0.65278 41860|0.77778 41861|0.63889 41862|0.63889 41863|0.84722 41864|0.61111 41865|0.81944 41866|0.69444 41867|0.54167 41868|0.66667 41869|0.41667 41870|0.48611 41871|0.54167 41872|0.5 41873|0.31944 41874|0.75 41875|0.44444 41876|0.51389 41877|0.76389 41878|0.66667 41879|0.55556 41880|0.51389 41881|0.69444 41882|0.70833 41883|0.59722 41884|0.77778 41885|0.79167 41886|0.84722 41887|0.61111 41888|0.47222 41889|0.47222 41890|0.83333 41891|0.73611 41892|0.75 41893|0.79167 41894|0.77778 41895|0.86111 41896|0.88889 41897|0.5 41898|0.33333 41899|0.54167 41900|0.47222 41901|0.43056 41902|0.52778 41903|0.36111 41904|0.52778 41905|0.93056 41906|0.74306 41907|0.63889 41908|0.48611 41909|0.38889 41910|0.41667 41911|0.5 41912|0.84722 41913|0.66667 41914|0.16667 41915|0.40278 41916|0.40278 41917|0.5 41918|0.75 41919|0.55556 41920|0.61111 41921|0.66667 41922|0.61111 41923|0.58333 41924|0.68056 41925|0.51389 41926|0.63889 41927|0.52778 41928|0.58333 41929|0.93056 41930|0.22222 41931|0.38889 41932|0.83333 41933|0.58333 41934|0.5 41935|0.47222 41936|0.68056 41937|0.52778 41938|0.73611 41939|0.70833 41940|0.63889 41941|0.77778 41942|0.44444 41943|0.625 41944|0.52778 41945|0.61111 41946|0.69444 41947|0.66667 41948|0.61111 41949|0.70833 41950|0.80556 41951|0.55556 41952|0.81944 41953|0.5 41954|0.59722 41955|0.44444 41956|0.91667 41957|0.56944 41958|0.43056 41959|0.68056 41960|0.44444 41961|0.61111 41962|0.55556 41963|0.59722 41964|0.5 41965|0.5 41966|0.48611 41967|0.5 41968|0.41667 41969|0.44444 41970|0.68056 41971|0.59722 41972|0.75 41973|0.55556 41974|0.45833 41975|0.79167 41976|0.56944 41977|0.69444 41978|0.66667 41979|0.80556 41980|0.5 41981|0.58333 41982|0.79167 41983|0.59722 41984|0.5 41985|0.51389 41986|0.5 41987|0.5 41988|0.59722 41989|0.5 41990|0.5 41991|0.43056 41992|0.63889 41993|0.44444 41994|0.5 41995|0.61111 41996|0.48611 41997|0.54167 41998|0.5 41999|0.77778 42000|0.61111 42001|0.65278 42002|0.61111 42003|0.66667 42004|0.54167 42005|0.16667 42006|0.56944 42007|0.73611 42008|0.5 42009|0.48611 42010|0.38889 42011|0.43056 42012|0.72222 42013|0.51389 42014|0.30556 42015|0.56944 42016|0.61111 42017|0.84722 42018|0.77778 42019|0.93056 42020|0.94444 42021|0.43056 42022|0.52778 42023|0.5 42024|0.83333 42025|0.88889 42026|0.875 42027|0.70833 42028|0.66667 42029|0.63889 42030|0.65278 42031|0.58333 42032|0.56944 42033|0.58333 42034|0.51389 42035|0.63889 42036|0.51389 42037|0.75 42038|0.55556 42039|0.65278 42040|0.5 42041|0.76389 42042|0.73611 42043|0.56944 42044|0.79167 42045|0.86111 42046|0.5 42047|0.63889 42048|0.51389 42049|0.55556 42050|0.56944 42051|0.5 42052|0.58333 42053|0.5 42054|0.68056 42055|0.70833 42056|0.44444 42057|0.5 42058|0.61111 42059|0.58333 42060|0.58333 42061|0.56944 42062|0.58333 42063|0.77778 42064|0.81944 42065|0.56944 42066|0.5 42067|0.59722 42068|0.5 42069|0.48611 42070|0.58333 42071|0.52778 42072|0.69444 42073|0.59722 42074|0.80556 42075|0.59722 42076|0.52778 42077|0.63889 42078|0.5 42079|0.52778 42080|0.5 42081|0.61111 42082|0.625 42083|0.61111 42084|0.55556 42085|0.61111 42086|0.54167 42087|0.5 42088|0.58333 42089|0.48611 42090|0.72222 42091|0.63889 42092|0.80556 42093|0.23611 42094|0.63889 42095|0.55556 42096|0.61111 42097|0.70833 42098|0.84722 42099|0.70833 42100|0.65278 42101|0.5 42102|0.56944 42103|0.69444 42104|0.44444 42105|0.58333 42106|0.61111 42107|0.75 42108|0.73611 42109|0.5 42110|0.63889 42111|0.625 42112|0.88889 42113|0.63889 42114|0.63889 42115|0.54167 42116|0.83333 42117|0.75 42118|0.70833 42119|0.77778 42120|0.48611 42121|0.61111 42122|0.55556 42123|0.73611 42124|0.94444 42125|0.81944 42126|0.73611 42127|0.79167 42128|0.83333 42129|0.81944 42130|0.73611 42131|0.55556 42132|0.68056 42133|0.68056 42134|0.83333 42135|0.56944 42136|0.5 42137|0.58333 42138|0.54167 42139|0.65278 42140|0.59722 42141|0.55556 42142|0.59722 42143|0.5 42144|0.5 42145|0.55556 42146|0.83333 42147|0.79167 42148|0.77778 42149|0.61111 42150|0.72222 42151|0.72222 42152|0.73611 42153|0.625 42154|0.83333 42155|0.86111 42156|0.86111 42157|0.73611 42158|0.83333 42159|0.61111 42160|0.59722 42161|0.83333 42162|0.5 42163|0.68056 42164|0.81944 42165|0.5 42166|0.55556 42167|0.75 42168|0.66667 42169|0.83333 42170|0.5 42171|0.5 42172|0.56944 42173|0.54167 42174|0.63889 42175|0.69444 42176|0.70833 42177|0.63889 42178|0.59722 42179|0.61111 42180|0.70833 42181|0.63889 42182|0.58333 42183|0.5 42184|0.625 42185|0.70833 42186|0.61111 42187|0.55556 42188|0.33333 42189|0.44444 42190|0.38889 42191|0.22222 42192|0.68056 42193|0.44444 42194|0.55556 42195|0.51389 42196|0.52778 42197|0.47222 42198|0.76389 42199|0.5 42200|0.54167 42201|0.68056 42202|0.55556 42203|0.5 42204|0.76389 42205|0.77778 42206|0.80556 42207|0.33333 42208|0.13889 42209|0.29167 42210|0.84722 42211|0.79167 42212|0.76389 42213|0.56944 42214|0.69444 42215|0.73611 42216|0.83333 42217|0.83333 42218|0.58333 42219|0.5 42220|0.875 42221|0.44444 42222|0.44444 42223|0.44444 42224|0.84722 42225|0.79167 42226|0.73611 42227|0.66667 42228|0.88889 42229|0.55556 42230|0.75 42231|0.72222 42232|0.5 42233|0.61111 42234|0.5 42235|0.5 42236|0.5 42237|0.5 42238|0.55556 42239|0.40278 42240|0.51389 42241|0.5 42242|0.41667 42243|0.375 42244|0.59722 42245|0.77778 42246|0.625 42247|0.69444 42248|0.73611 42249|0.51389 42250|0.5 42251|0.27778 42252|0.73611 42253|0.5 42254|0.44444 42255|0.55556 42256|0.31944 42257|0.625 42258|0.61111 42259|0.63889 42260|0.5 42261|0.66667 42262|0.76389 42263|0.69444 42264|0.65278 42265|0.5 42266|0.5 42267|0.55556 42268|0.625 42269|0.65278 42270|0.72222 42271|0.68056 42272|0.56944 42273|0.375 42274|0.77778 42275|0.625 42276|0.5 42277|0.44444 42278|0.58333 42279|0.43056 42280|0.5 42281|0.5 42282|0.5 42283|0.54167 42284|0.73611 42285|0.44444 42286|0.69444 42287|0.51389 42288|0.54167 42289|0.61111 42290|0.44444 42291|0.61111 42292|0.5 42293|0.55556 42294|0.69444 42295|0.75 42296|0.375 42297|0.5 42298|0.52778 42299|0.61111 42300|0.5 42301|0.76389 42302|0.81944 42303|0.73611 42304|0.625 42305|0.29167 42306|0.79167 42307|0.83333 42308|0.72222 42309|0.76389 42310|0.66667 42311|0.625 42312|0.61111 42313|0.72222 42314|0.59722 42315|0.55556 42316|0.58333 42317|0.61111 42318|0.83333 42319|0.63889 42320|0.79167 42321|0.75 42322|0.76389 42323|0.70833 42324|0.55556 42325|0.59722 42326|0.38889 42327|0.5 42328|0.55556 42329|0.66667 42330|0.69444 42331|0.75 42332|0.66667 42333|0.54167 42334|0.59722 42335|0.81944 42336|0.69444 42337|0.75 42338|0.79167 42339|0.70833 42340|0.66667 42341|0.70833 42342|0.48611 42343|0.625 42344|0.72222 42345|0.80556 42346|0.58333 42347|0.58333 42348|0.44444 42349|0.52778 42350|0.48611 42351|0.5 42352|0.56944 42353|0.61111 42354|0.58333 42355|0.51389 42356|0.76389 42357|0.68056 42358|0.83333 42359|0.55556 42360|0.84722 42361|0.875 42362|0.44444 42363|0.5 42364|0.48611 42365|0.44444 42366|0.54167 42367|0.59722 42368|0.56944 42369|0.5 42370|0.66667 42371|0.69444 42372|0.70833 42373|0.59722 42374|0.56944 42375|0.31944 42376|0.88889 42377|0.73611 42378|0.76389 42379|0.81944 42380|0.5 42381|0.5 42382|0.81944 42383|0.76389 42384|0.47222 42385|0.5 42386|0.90278 42387|0.58333 42388|0.59722 42389|0.52778 42390|0.61111 42391|0.83333 42392|0.75 42393|0.5 42394|0.56944 42395|0.5 42396|0.44444 42397|0.58333 42398|0.40278 42399|0.375 42400|0.5 42401|0.5 42402|0.77778 42403|0.91667 42404|0.83333 42405|0.5 42406|0.48611 42407|0.79167 42408|0.83333 42409|0.5 42410|0.59722 42411|0.58333 42412|0.79167 42413|0.41667 42414|0.43056 42415|0.29167 42416|0.875 42417|0.52778 42418|0.5 42419|0.58333 42420|0.5 42421|0.5 42422|0.56944 42423|0.58333 42424|0.5 42425|0.23611 42426|0.5 42427|0.45833 42428|0.61111 42429|0.5 42430|0.52778 42431|0.65278 42432|0.5 42433|0.68056 42434|0.63889 42435|0.61111 42436|0.36111 42437|0.65278 42438|0.45833 42439|0.58333 42440|0.5 42441|0.44444 42442|0.77778 42443|0.55556 42444|0.5 42445|0.73611 42446|0.5 42447|0.59722 42448|0.69444 42449|0.66667 42450|0.63889 42451|0.56944 42452|0.58333 42453|0.5 42454|0.27778 42455|0.68056 42456|0.86111 42457|0.5 42458|0.63889 42459|0.40278 42460|0.76389 42461|0.76389 42462|0.77778 42463|0.65278 42464|0.54167 42465|0.5 42466|0.61111 42467|0.58333 42468|0.73611 42469|0.77778 42470|0.76389 42471|0.5 42472|0.63889 42473|0.5 42474|0.72222 42475|0.56944 42476|0.72222 42477|0.48611 42478|0.15278 42479|0.70833 42480|0.79167 42481|0.52778 42482|0.40278 42483|0.38889 42484|0.5 42485|0.66667 42486|0.56944 42487|0.61111 42488|0.75 42489|0.81944 42490|0.72222 42491|0.44444 42492|0.625 42493|0.58333 42494|0.61111 42495|0.59722 42496|0.54167 42497|0.63889 42498|0.69444 42499|0.63889 42500|0.41667 42501|0.5 42502|0.59722 42503|0.68056 42504|0.73611 42505|0.55556 42506|0.75 42507|0.52778 42508|0.58333 42509|0.58333 42510|0.5 42511|0.5 42512|0.59722 42513|0.34722 42514|0.58333 42515|0.61111 42516|0.5 42517|0.5 42518|0.66667 42519|0.66667 42520|0.61111 42521|0.44444 42522|0.5 42523|0.43056 42524|0.55556 42525|0.61111 42526|0.80556 42527|0.5 42528|0.52778 42529|0.61111 42530|0.76389 42531|0.83333 42532|0.73611 42533|0.75 42534|0.83333 42535|0.77778 42536|0.5 42537|0.68056 42538|0.61111 42539|0.81944 42540|0.54167 42541|0.5 42542|0.80556 42543|0.83333 42544|0.77778 42545|0.59722 42546|0.66667 42547|0.56944 42548|0.48611 42549|0.55556 42550|0.5 42551|0.22222 42552|0.625 42553|0.73611 42554|0.70833 42555|0.56944 42556|0.61111 42557|0.75 42558|0.56944 42559|0.38889 42560|0.72222 42561|0.76389 42562|0.76389 42563|0.65278 42564|0.66667 42565|0.20833 42566|0.5 42567|0.25 42568|0.19444 42569|0.56944 42570|0.61111 42571|0.61111 42572|0.5 42573|0.68056 42574|0.77778 42575|0.47222 42576|0.63889 42577|0.54167 42578|0.73611 42579|0.38889 42580|0.5 42581|0.61111 42582|0.97222 42583|0.59722 42584|0.55556 42585|0.48611 42586|0.41667 42587|0.61111 42588|0.58333 42589|0.5 42590|0.66667 42591|0.79167 42592|0.5 42593|0.65278 42594|0.54167 42595|0.81944 42596|0.77778 42597|0.81944 42598|0.58333 42599|0.58333 42600|0.625 42601|0.58333 42602|0.56944 42603|0.55556 42604|0.59722 42605|0.52778 42606|0.81944 42607|0.5 42608|0.5 42609|0.5 42610|0.72222 42611|0.51389 42612|0.5 42613|0.55556 42614|0.44444 42615|0.58333 42616|0.59722 42617|0.5 42618|0.45833 42619|0.51389 42620|0.66667 42621|0.55556 42622|0.52778 42623|0.52778 42624|0.59722 42625|0.5 42626|0.44444 42627|0.52778 42628|0.58333 42629|0.5 42630|0.5 42631|0.38889 42632|0.16667 42633|0.23611 42634|0.41667 42635|0.54167 42636|0.5 42637|0.58333 42638|0.625 42639|0.68056 42640|0.59722 42641|0.58333 42642|0.625 42643|0.70833 42644|0.77778 42645|0.77778 42646|0.30556 42647|0.76389 42648|0.72222 42649|0.69444 42650|0.56944 42651|0.40278 42652|0.77778 42653|0.73611 42654|0.72222 42655|0.83333 42656|0.77778 42657|0.625 42658|0.66667 42659|0.76389 42660|0.73611 42661|0.47222 42662|0.44444 42663|0.41667 42664|0.55556 42665|0.84722 42666|0.84722 42667|0.88889 42668|0.59722 42669|0.68056 42670|0.70833 42671|0.55556 42672|0.84722 42673|0.72222 42674|0.55556 42675|0.54167 42676|0.61111 42677|0.56944 42678|0.68056 42679|0.34722 42680|0.52778 42681|0.54167 42682|0.48611 42683|0.5 42684|0.625 42685|0.52778 42686|0.33333 42687|0.59722 42688|0.68056 42689|0.41667 42690|0.56944 42691|0.72222 42692|0.93056 42693|0.83333 42694|0.65278 42695|0.56944 42696|0.70833 42697|0.41667 42698|0.54167 42699|0.38889 42700|0.68056 42701|0.20833 42702|0.375 42703|0.44444 42704|0.81944 42705|0.75 42706|0.76389 42707|0.59722 42708|0.65278 42709|0.61111 42710|0.51389 42711|0.83333 42712|0.33333 42713|0.5 42714|0.47222 42715|0.43056 42716|0.81944 42717|0.875 42718|0.79167 42719|0.52778 42720|0.63889 42721|0.75 42722|0.625 42723|0.40278 42724|0.59722 42725|0.47222 42726|0.65278 42727|0.48611 42728|0.65278 42729|0.75 42730|0.5 42731|0.58333 42732|0.38889 42733|0.29167 42734|0.63889 42735|0.75 42736|0.80556 42737|0.81944 42738|0.48611 42739|0.80556 42740|0.75 42741|0.65278 42742|0.61111 42743|0.41667 42744|0.76389 42745|0.47222 42746|0.54167 42747|0.375 42748|0.5 42749|0.5 42750|0.52778 42751|0.56944 42752|0.5 42753|0.5 42754|0.69444 42755|0.69444 42756|0.58333 42757|0.59722 42758|0.66667 42759|0.55556 42760|0.61111 42761|0.48611 42762|0.59722 42763|0.5 42764|0.625 42765|0.91667 42766|0.66667 42767|0.5 42768|0.68056 42769|0.75 42770|0.54167 42771|0.83333 42772|0.56944 42773|0.5 42774|0.81944 42775|0.68056 42776|0.30556 42777|0.31944 42778|0.56944 42779|0.72222 42780|0.55556 42781|0.69444 42782|0.66667 42783|0.5 42784|0.5 42785|0.38889 42786|0.55556 42787|0.80556 42788|0.77778 42789|0.83333 42790|0.5 42791|0.56944 42792|0.38889 42793|0.61111 42794|0.63889 42795|0.75 42796|0.98611 42797|0.79167 42798|0.83333 42799|0.56944 42800|0.26389 42801|0.55556 42802|0.40278 42803|0.5 42804|0.38889 42805|0.43056 42806|0.91667 42807|0.55556 42808|0.58333 42809|0.55556 42810|0.51389 42811|0.55556 42812|0.55556 42813|0.5 42814|0.63889 42815|0.90278 42816|0.33333 42817|0.61111 42818|0.61111 42819|0.79167 42820|0.77778 42821|0.81944 42822|0.75 42823|0.54167 42824|0.5 42825|0.5 42826|0.54167 42827|0.58333 42828|0.58333 42829|0.38889 42830|0.77778 42831|0.79167 42832|0.38889 42833|0.40278 42834|0.55556 42835|0.58333 42836|0.55556 42837|0.70833 42838|0.70833 42839|0.79167 42840|0.875 42841|0.51389 42842|0.5 42843|0.59722 42844|0.47222 42845|0.45833 42846|0.58333 42847|0.81944 42848|0.81944 42849|0.68056 42850|0.44444 42851|0.59722 42852|0.66667 42853|0.59722 42854|0.73611 42855|0.61111 42856|0.59722 42857|0.54167 42858|0.45833 42859|0.68056 42860|0.59722 42861|0.65278 42862|0.70833 42863|0.5 42864|0.16667 42865|0.875 42866|0.70833 42867|0.30556 42868|0.55556 42869|0.22222 42870|0.61111 42871|0.5 42872|0.80556 42873|0.63889 42874|0.75 42875|0.125 42876|0.65278 42877|0.5 42878|0.5 42879|0.68056 42880|0.52778 42881|0.56944 42882|0.625 42883|0.56944 42884|0.54167 42885|0.83333 42886|0.77778 42887|0.70833 42888|0.625 42889|0.875 42890|0.56944 42891|0.56944 42892|0.5 42893|0.70833 42894|0.5 42895|0.84722 42896|0.5 42897|0.70833 42898|0.5 42899|0.5 42900|0.56944 42901|0.54167 42902|0.75 42903|0.70833 42904|0.61111 42905|0.5 42906|0.5 42907|0.625 42908|0.5 42909|0.23611 42910|0.5 42911|0.36111 42912|0.88889 42913|0.84722 42914|0.77778 42915|0.75 42916|0.81944 42917|0.45833 42918|0.77778 42919|0.58333 42920|0.66667 42921|0.44444 42922|0.5 42923|0.69444 42924|0.75 42925|0.38889 42926|0.66667 42927|0.52778 42928|0.5 42929|0.5 42930|0.54167 42931|0.73611 42932|0.66667 42933|0.63889 42934|0.5 42935|0.88889 42936|0.5 42937|0.43056 42938|0.44444 42939|0.34722 42940|0.65278 42941|0.51389 42942|0.58333 42943|0.375 42944|0.44444 42945|0.61111 42946|0.55556 42947|0.52778 42948|0.58333 42949|0.33333 42950|0.54167 42951|0.5 42952|0.5 42953|0.5 42954|0.625 42955|0.55556 42956|0.54167 42957|0.77778 42958|0.73611 42959|0.75 42960|0.73611 42961|0.625 42962|0.55556 42963|0.52778 42964|0.30556 42965|0.40278 42966|0.38889 42967|0.56944 42968|0.73611 42969|0.5 42970|0.5 42971|0.5 42972|0.56944 42973|0.5 42974|0.5 42975|0.36111 42976|0.38889 42977|0.65278 42978|0.66667 42979|0.68056 42980|0.45833 42981|0.5 42982|0.41667 42983|0.54167 42984|0.55556 42985|0.61111 42986|0.70833 42987|0.76389 42988|0.5 42989|0.43056 42990|0.63889 42991|0.61111 42992|0.5 42993|0.5 42994|0.55556 42995|0.61111 42996|0.48611 42997|0.5 42998|0.76389 42999|0.56944 43000|0.34722 43001|0.61111 43002|0.69444 43003|0.5 43004|0.51389 43005|0.5 43006|0.5 43007|0.59722 43008|0.5 43009|0.84722 43010|0.73611 43011|0.875 43012|0.5 43013|0.81944 43014|0.91667 43015|0.80556 43016|0.66667 43017|0.58333 43018|0.81944 43019|0.81944 43020|0.5 43021|0.58333 43022|0.61111 43023|0.83333 43024|0.77778 43025|0.65278 43026|0.625 43027|0.66667 43028|0.59722 43029|0.73611 43030|0.61111 43031|0.73611 43032|0.5 43033|0.75 43034|0.72222 43035|0.76389 43036|0.69444 43037|0.79167 43038|0.52778 43039|0.5 43040|0.52778 43041|0.61111 43042|0.52778 43043|0.70833 43044|0.83333 43045|0.59722 43046|0.59722 43047|0.66667 43048|0.5 43049|0.55556 43050|0.55556 43051|0.56944 43052|0.44444 43053|0.59722 43054|0.47222 43055|0.30556 43056|0.59722 43057|0.61111 43058|0.51389 43059|0.5 43060|0.625 43061|0.5 43062|0.5 43063|0.77778 43064|0.40278 43065|0.5 43066|0.5 43067|0.59722 43068|0.63889 43069|0.90278 43070|1 43071|0.27778 43072|0.5 43073|0.77778 43074|0.75 43075|0.5 43076|0.5 43077|0.44444 43078|0.58333 43079|0.45833 43080|0.59722 43081|0.5 43082|0.77778 43083|0.5 43084|0.5 43085|0.38889 43086|0.73611 43087|0.5 43088|0.61111 43089|0.52778 43090|0.5 43091|0.5 43092|0.65278 43093|0.5 43094|0.79167 43095|0.68056 43096|0.70833 43097|0.80556 43098|0.5 43099|0.61111 43100|0.80556 43101|0.75 43102|0.72222 43103|0.38889 43104|0.23611 43105|0.55556 43106|0.44444 43107|0.44444 43108|0.29167 43109|0.91667 43110|0.84722 43111|0.94444 43112|0.70833 43113|0.58333 43114|0.52778 43115|0.75 43116|0.70833 43117|0.5 43118|0.55556 43119|0.55556 43120|0.86111 43121|0.51389 43122|0.75 43123|0.5 43124|0.73611 43125|0.69444 43126|0.61111 43127|0.5 43128|0.5 43129|0.375 43130|0.66667 43131|0.63889 43132|0.45833 43133|0.66667 43134|0.5 43135|0.27778 43136|0.40278 43137|0.43056 43138|0.51389 43139|0.56944 43140|0.44444 43141|0.23611 43142|0.45833 43143|0.63889 43144|0.63889 43145|0.22222 43146|0.44444 43147|0.30556 43148|0.63889 43149|0.70833 43150|0.72222 43151|0.59722 43152|0.52778 43153|0.63889 43154|0.61111 43155|0.66667 43156|0.65278 43157|0.47222 43158|0.55556 43159|0.80556 43160|0.84722 43161|0.77778 43162|0.73611 43163|0.58333 43164|0.76389 43165|0.72222 43166|0.66667 43167|0.70833 43168|0.59722 43169|0.66667 43170|0.72222 43171|0.75 43172|0.69444 43173|0.76389 43174|0.58333 43175|0.43056 43176|0.51389 43177|0.86111 43178|0.86111 43179|0.90278 43180|0.93056 43181|0.63889 43182|0.625 43183|0.72222 43184|0.90278 43185|0.80556 43186|0.73611 43187|0.625 43188|0.83333 43189|0.43056 43190|0.61111 43191|0.52778 43192|0.5 43193|0.44444 43194|0.5 43195|0.44444 43196|0.5 43197|0.54167 43198|0.5 43199|0.5 43200|0.77778 43201|0.58333 43202|0.72222 43203|0.58333 43204|0.58333 43205|0.75 43206|0.75 43207|0.5 43208|0.81944 43209|0.61111 43210|0.83333 43211|0.52778 43212|0.5 43213|0.55556 43214|0.61111 43215|0.79167 43216|0.76389 43217|0.5 43218|0.5 43219|0.5 43220|0.68056 43221|0.5 43222|0.61111 43223|0.48611 43224|0.69444 43225|0.29167 43226|0.54167 43227|0.63889 43228|0.65278 43229|0.80556 43230|0.77778 43231|0.81944 43232|0.5 43233|0.80556 43234|0.58333 43235|0.66667 43236|0.68056 43237|0.30556 43238|0.29167 43239|0.66667 43240|0.44444 43241|0.83333 43242|0.93056 43243|0.5 43244|0.43056 43245|0.5 43246|0.84722 43247|0.34722 43248|0.5 43249|0.44444 43250|0.625 43251|0.68056 43252|0.97222 43253|0.88889 43254|0.55556 43255|0.84722 43256|0.72222 43257|0.75 43258|0.77778 43259|0.77778 43260|0.68056 43261|0.73611 43262|0.84722 43263|0.055556 43264|0.66667 43265|0.63889 43266|0.59722 43267|0.44444 43268|0.68056 43269|0.90278 43270|0.83333 43271|0.55556 43272|0.55556 43273|0.77778 43274|0.86111 43275|0.625 43276|0.61111 43277|0.36111 43278|0.56944 43279|0.44444 43280|0.72222 43281|0.44444 43282|0.27778 43283|0.80556 43284|0.77778 43285|0.72222 43286|0.69444 43287|0.66667 43288|0.29167 43289|0.23611 43290|0.33333 43291|0.52778 43292|0.29167 43293|0.68056 43294|0.66667 43295|0.16667 43296|0.52778 43297|0.65278 43298|0.55556 43299|0.75 43300|0.68056 43301|0.5 43302|0.31944 43303|0.33333 43304|0.45833 43305|0.5 43306|0.75 43307|0.66667 43308|0.59722 43309|0.79167 43310|0.70833 43311|0.5 43312|0.5 43313|0.23611 43314|0.68056 43315|0.38889 43316|0.41667 43317|0.63889 43318|0.70833 43319|0.70833 43320|0.81944 43321|0.56944 43322|0.61111 43323|0.76389 43324|0.69444 43325|0.72222 43326|0.70833 43327|0.72222 43328|0.26389 43329|0.5 43330|0.81944 43331|0.72222 43332|0.5 43333|0.81944 43334|0.63889 43335|0.5 43336|0.70833 43337|0.75 43338|0.88889 43339|0.94444 43340|0.58333 43341|0.72222 43342|0.59722 43343|0.36111 43344|0.5 43345|0.52778 43346|0.43056 43347|0.63889 43348|0.68056 43349|0.88889 43350|0.77778 43351|0.75 43352|0.51389 43353|0.70833 43354|0.52778 43355|0.70833 43356|0.22222 43357|0.34722 43358|0.93056 43359|0.72222 43360|0.5 43361|0.29167 43362|0.66667 43363|0.52778 43364|0.5 43365|0.29167 43366|0.5 43367|0.66667 43368|0.54167 43369|0.76389 43370|0.63889 43371|0.88889 43372|0.83333 43373|0.5 43374|0.5 43375|0.5 43376|0.55556 43377|0.48611 43378|0.5 43379|0.48611 43380|0.75 43381|0.48611 43382|0.5 43383|0.55556 43384|0.51389 43385|0.5 43386|0.5 43387|0.5 43388|0.94444 43389|0.73611 43390|0.80556 43391|0.51389 43392|0.5 43393|0.5 43394|0.77778 43395|0.79167 43396|0.69444 43397|0.80556 43398|0.75 43399|0.52778 43400|0.56944 43401|0.51389 43402|0.51389 43403|0.73611 43404|0.72222 43405|0.65278 43406|0.86111 43407|0.66667 43408|0.5 43409|0.66667 43410|0.5 43411|0.83333 43412|0.94444 43413|0.5 43414|0.5 43415|0.77778 43416|0.5 43417|0.54167 43418|0.5 43419|0.48611 43420|0.44444 43421|0.5 43422|0.5 43423|0.44444 43424|0.76389 43425|0.70833 43426|0.5 43427|0.79167 43428|0.51389 43429|0.68056 43430|0.55556 43431|0.69444 43432|0.77778 43433|0.5 43434|0.63889 43435|0.76389 43436|0.73611 43437|0.66667 43438|0.375 43439|0.44444 43440|0.76389 43441|0.68056 43442|0.59722 43443|0.76389 43444|0.52778 43445|0.63889 43446|0.98611 43447|0.83333 43448|0.625 43449|0.63889 43450|0.56944 43451|0.76389 43452|0.54167 43453|0.44444 43454|0.29167 43455|0.44444 43456|0.59722 43457|0.83333 43458|0.5 43459|0.77778 43460|0.125 43461|0.68056 43462|0.61111 43463|0.81944 43464|0.88889 43465|0.5 43466|0.5 43467|0.34722 43468|0.66667 43469|0.90278 43470|0.63889 43471|0.73611 43472|0.5 43473|0.84722 43474|0.73611 43475|0.77778 43476|0.5 43477|0.66667 43478|0.69444 43479|0.5 43480|0.75 43481|0.58333 43482|0.625 43483|0.75 43484|0.76389 43485|0.69444 43486|0.69444 43487|0.83333 43488|0.58333 43489|0.51389 43490|0.47222 43491|0.47222 43492|0.72222 43493|0.70833 43494|0.84722 43495|0.83333 43496|0.625 43497|0.83333 43498|0.86111 43499|0.88889 43500|0.77778 43501|0.59722 43502|0.33333 43503|0.83333 43504|0.69444 43505|0.55556 43506|0.55556 43507|0.43056 43508|0.65278 43509|0.79167 43510|0.69444 43511|0.95833 43512|0.48611 43513|0.58333 43514|0.58333 43515|0.65278 43516|0.65278 43517|0.58333 43518|0.63889 43519|0.48611 43520|0.5 43521|0.16667 43522|0.61111 43523|0.625 43524|0.34722 43525|0.52778 43526|0.72222 43527|0.83333 43528|0.54167 43529|0.54167 43530|0.44444 43531|0.77778 43532|0.625 43533|0.73611 43534|0.80556 43535|0.76389 43536|0.65278 43537|0.83333 43538|0.69444 43539|0.27778 43540|0.16667 43541|0.65278 43542|0.76389 43543|0.625 43544|0.72222 43545|0.29167 43546|0.30556 43547|0.43056 43548|0.375 43549|0.33333 43550|0.80556 43551|0.31944 43552|0.66667 43553|0.36111 43554|0.5 43555|0.76389 43556|0.61111 43557|0.75 43558|0.625 43559|0.81944 43560|0.69444 43561|0.48611 43562|0.59722 43563|0.34722 43564|0.56944 43565|0.48611 43566|0.66667 43567|0.61111 43568|0.59722 43569|0.73611 43570|0.70833 43571|0.54167 43572|0.54167 43573|0.88889 43574|0.51389 43575|0.58333 43576|0.41667 43577|0.5 43578|0.55556 43579|0.45833 43580|0.63889 43581|0.84722 43582|0.81944 43583|0.54167 43584|0.63889 43585|0.69444 43586|0.84722 43587|0.77778 43588|0.61111 43589|0.5 43590|0.52778 43591|0.625 43592|0.79167 43593|0.86111 43594|0.66667 43595|0.55556 43596|0.63889 43597|0.51389 43598|0.72222 43599|0.48611 43600|0.51389 43601|0.41667 43602|0.52778 43603|0.5 43604|0.65278 43605|0.52778 43606|0.52778 43607|0.47222 43608|0.51389 43609|0.48611 43610|0.84722 43611|0.77778 43612|0.84722 43613|0.48611 43614|0.81944 43615|0.13889 43616|0.70833 43617|0.52778 43618|0.625 43619|0.81944 43620|0.81944 43621|0.69444 43622|0.63889 43623|0.73611 43624|0.29167 43625|0.59722 43626|0.56944 43627|0.69444 43628|0.69444 43629|0.875 43630|0.11111 43631|0.61111 43632|0.54167 43633|0.80556 43634|0.73611 43635|0.80556 43636|0.72222 43637|0.56944 43638|0.45833 43639|0.80556 43640|0.65278 43641|0.66667 43642|0.84722 43643|0.73611 43644|0.72222 43645|0.55556 43646|0.65278 43647|0.66667 43648|0.72222 43649|0.48611 43650|0.58333 43651|0.19444 43652|0.5 43653|0.66667 43654|0.5 43655|0.51389 43656|0.63889 43657|0.58333 43658|0.56944 43659|0.5 43660|0.51389 43661|0.5 43662|0.625 43663|0.44444 43664|0.5 43665|0.5 43666|0.55556 43667|0.66667 43668|0.48611 43669|0.5 43670|0.47222 43671|0.75 43672|0.84722 43673|0.19444 43674|0.20833 43675|0.72222 43676|0.77778 43677|0.51389 43678|0.83333 43679|0.43056 43680|0.79167 43681|0.84722 43682|0.61111 43683|0.54167 43684|0.44444 43685|0.61111 43686|0.77778 43687|0.59722 43688|0.51389 43689|0.375 43690|0.56944 43691|0.44444 43692|0.58333 43693|0.5 43694|0.75 43695|0.55556 43696|0.33333 43697|0.44444 43698|0.79167 43699|0.47222 43700|0.51389 43701|0.51389 43702|0.45833 43703|0.68056 43704|0.45833 43705|0.58333 43706|0.55556 43707|0.625 43708|0.54167 43709|0.61111 43710|0.625 43711|0.30556 43712|0.72222 43713|0.72222 43714|0.91667 43715|0.75 43716|0.25 43717|0.80556 43718|0.73611 43719|0.77778 43720|0.72222 43721|0.75 43722|0.48611 43723|0.69444 43724|0.875 43725|0.875 43726|0.36111 43727|0.65278 43728|0.48611 43729|0.72222 43730|0.77778 43731|0.70833 43732|0.72222 43733|0.79167 43734|0.68056 43735|0.56944 43736|0.90278 43737|0.73611 43738|0.27778 43739|0.97222 43740|0.75 43741|0.84722 43742|0.625 43743|0.34722 43744|0.70833 43745|0.625 43746|0.58333 43747|0.94444 43748|0.52778 43749|0.83333 43750|0.75 43751|0.55556 43752|0.80556 43753|0.61111 43754|0.44444 43755|0.79167 43756|0.625 43757|0.72222 43758|0.72222 43759|0.72222 43760|0.63889 43761|0.56944 43762|0.72222 43763|0.80556 43764|0.68056 43765|0.48611 43766|0.51389 43767|0.84722 43768|0.55556 43769|0.69444 43770|0.5 43771|0.625 43772|0.84722 43773|0.58333 43774|0.41667 43775|0.70833 43776|0.66667 43777|0.77778 43778|0.91667 43779|0.41667 43780|0.84722 43781|0.69444 43782|0.75 43783|0.625 43784|0.625 43785|0.84722 43786|0.83333 43787|0.65278 43788|0.84722 43789|0.55556 43790|0.69444 43791|0.73611 43792|0.59722 43793|0.72222 43794|0.81944 43795|0.48611 43796|0.26389 43797|0.5 43798|0.66667 43799|0.68056 43800|0.72222 43801|0.59722 43802|0.75 43803|0.72222 43804|0.41667 43805|0.77778 43806|0.69444 43807|0.29167 43808|0.625 43809|0.5 43810|0.5 43811|0.5 43812|0.52778 43813|0.51389 43814|0.66667 43815|0.47222 43816|0.44444 43817|0.65278 43818|0.625 43819|0.80556 43820|0.625 43821|0.5 43822|0.61111 43823|0.5 43824|0.61111 43825|0.5 43826|0.5 43827|0.5 43828|0.5 43829|0.5 43830|0.5 43831|0.98611 43832|0.77778 43833|0.5 43834|0.5 43835|0.51389 43836|0.51389 43837|0.5 43838|0.5 43839|0.5 43840|0.5 43841|0.5 43842|0.61111 43843|0.72222 43844|0.5 43845|0.51389 43846|0.81944 43847|0.65278 43848|0.65278 43849|0.55556 43850|0.59722 43851|0.86111 43852|0.41667 43853|0.84722 43854|0.69444 43855|0.77778 43856|0.30556 43857|0.54167 43858|0.81944 43859|0.43056 43860|0.77778 43861|0.83333 43862|0.59722 43863|0.80556 43864|0.68056 43865|0.58333 43866|0.72222 43867|0.69444 43868|0.73611 43869|0.75 43870|0.84722 43871|0.73611 43872|0.91667 43873|0.61111 43874|0.5 43875|0.51389 43876|0.5 43877|0.5 43878|0.51389 43879|0.44444 43880|0.26389 43881|0.27778 43882|0.56944 43883|0.5 43884|0.54167 43885|0.5 43886|0.5 43887|0.5 43888|0.5 43889|0.5 43890|0.5 43891|0.5 43892|0.5 43893|0.5 43894|0.5 43895|0.5 43896|0.55556 43897|0.5 43898|0.56944 43899|0.51389 43900|0.5 43901|0.5 43902|0.44444 43903|0.51389 43904|0.5 43905|0.48611 43906|0.47222 43907|0.5 43908|0.5 43909|0.5 43910|0.58333 43911|0.5 43912|0.5 43913|0.61111 43914|0.44444 43915|0.5 43916|0.47222 43917|0.47222 43918|0.93056 43919|0.58333 43920|0.56944 43921|0.625 43922|0.5 43923|0.5 43924|0.5 43925|0.5 43926|0.55556 43927|0.5 43928|0.59722 43929|0.5 43930|0.5 43931|0.51389 43932|0.5 43933|0.44444 43934|0.5 43935|0.51389 43936|0.5 43937|0.5 43938|0.5 43939|0.58333 43940|0.75 43941|0.5 43942|0.5 43943|0.5 43944|0.44444 43945|0.5 43946|0.5 43947|0.5 43948|0.70833 43949|0.63889 43950|0.72222 43951|0.98611 43952|0.44444 43953|0.79167 43954|0.70833 43955|0.95833 43956|0.54167 43957|0.5 43958|0.58333 43959|0.55556 43960|0.51389 43961|0.5 43962|0.5 43963|0.55556 43964|0.83333 43965|0.73611 43966|0.81944 43967|0.84722 43968|0.52778 43969|0.33333 43970|0.625 43971|0.5 43972|0.80556 43973|0.83333 43974|0.68056 43975|0.88889 43976|0.68056 43977|0.61111 43978|0.44444 43979|0.75 43980|0.77778 43981|0.84722 43982|0.70833 43983|0.75 43984|0.81944 43985|0.81944 43986|0.875 43987|0.75 43988|0.76389 43989|0.72222 43990|0.44444 43991|0.875 43992|0.79167 43993|0.69444 43994|0.84722 43995|0.86111 43996|0.69444 43997|0.75 43998|0.73611 43999|0.625 44000|0.75 44001|0.69444 44002|0.66667 44003|0.72222 44004|0.63889 44005|0.63889 44006|0.79167 44007|0.79167 44008|0.69444 44009|0.61111 44010|0.72222 44011|0.80556 44012|0.76389 44013|0.81944 44014|0.75 44015|0.59722 44016|0.45833 44017|0.61111 44018|0.66667 44019|0.70833 44020|0.75 44021|0.58333 44022|0.66667 44023|0.69444 44024|0.75 44025|0.79167 44026|0.77778 44027|0.16667 44028|0.83333 44029|0.73611 44030|0.88889 44031|0.88889 44032|0.84722 44033|0.84722 44034|0.88889 44035|0.72222 44036|0.73611 44037|0.88889 44038|0.70833 44039|0.80556 44040|0.45833 44041|0.45833 44042|0.72222 44043|0.40278 44044|0.58333 44045|0.86111 44046|0.91667 44047|0.70833 44048|0.72222 44049|0.97222 44050|0.47222 44051|0.43056 44052|0.41667 44053|0.51389 44054|0.73611 44055|0.59722 44056|0.5 44057|0.38889 44058|0.22222 44059|0.38889 44060|0.81944 44061|0.76389 44062|0.94444 44063|0.875 44064|0.75 44065|0.90278 44066|0.76389 44067|0.84722 44068|0.83333 44069|0.76389 44070|0.79167 44071|0.43056 44072|0.81944 44073|0.77778 44074|0.69444 44075|0.75 44076|0.61111 44077|0.88889 44078|0.625 44079|0.59722 44080|0.61111 44081|0.38889 44082|0.88889 44083|0.77778 44084|0.66667 44085|0.93056 44086|0.80556 44087|0.86111 44088|0.93056 44089|0.86111 44090|0.84722 44091|0.83333 44092|0.77778 44093|0.73611 44094|0.86111 44095|0.76389 44096|0.80556 44097|0.76389 44098|0.97222 44099|0.80556 44100|0.90278 44101|0.77778 44102|0.83333 44103|0.65278 44104|0.79167 44105|0.77778 44106|0.77778 44107|0.66667 44108|0.88889 44109|0.91667 44110|0.86111 44111|0.93056 44112|0.79167 44113|0.83333 44114|0.80556 44115|0.86111 44116|0.52778 44117|0.61111 44118|0.80556 44119|0.70833 44120|0.70833 44121|0.79167 44122|0.88889 44123|0.79167 44124|0.73611 44125|0.79167 44126|0.72222 44127|0.79167 44128|0.84722 44129|0.72222 44130|0.81944 44131|0.90278 44132|0.93056 44133|0.93056 44134|0.93056 44135|0.88889 44136|0.51389 44137|0.69444 44138|0.56944 44139|0.86111 44140|0.875 44141|0.66667 44142|0.625 44143|0.69444 44144|0.83333 44145|0.51389 44146|0.33333 44147|0.48611 44148|0.76389 44149|0.69444 44150|0.59722 44151|0.73611 44152|0.75 44153|0.625 44154|0.48611 44155|0.69444 44156|0.625 44157|0.79167 44158|0.69444 44159|0.77778 44160|0.72222 44161|0.125 44162|0.52778 44163|0.52778 44164|0.44444 44165|0.52778 44166|0.5 44167|0.44444 44168|0.68056 44169|0.80556 44170|0.59722 44171|0.80556 44172|0.95833 44173|0.44444 44174|0.69444 44175|0.79167 44176|0.68056 44177|0.84722 44178|0.81944 44179|0.88889 44180|0.76389 44181|0.79167 44182|0.75 44183|0.76389 44184|0.38889 44185|0.51389 44186|0.54167 44187|0.59722 44188|0.84722 44189|0.625 44190|0.81944 44191|0.77778 44192|0.73611 44193|0.61111 44194|0.30556 44195|0.69444 44196|0.76389 44197|0.65278 44198|0.69444 44199|0.75 44200|0.81944 44201|0.70833 44202|0.77778 44203|0.80556 44204|0.94444 44205|0.79167 44206|0.875 44207|0.90278 44208|0.76389 44209|0.79167 44210|0.80556 44211|0.77778 44212|0.81944 44213|0.77778 44214|0.81944 44215|0.80556 44216|0.81944 44217|0.97222 44218|0.91667 44219|0.72222 44220|0.72222 44221|0.75 44222|0.83333 44223|0.72222 44224|0.77778 44225|0.73611 44226|0.79167 44227|0.81944 44228|0.56944 44229|0.55556 44230|0.73611 44231|0.75 44232|0.76389 44233|0.65278 44234|0.69444 44235|0.76389 44236|0.79167 44237|0.88889 44238|0.88889 44239|0.875 44240|0.875 44241|0.79167 44242|0.70833 44243|0.77778 44244|0.66667 44245|0.83333 44246|0.73611 44247|0.83333 44248|0.68056 44249|0.88889 44250|0.66667 44251|0.81944 44252|0.72222 44253|0.69444 44254|0.84722 44255|0.66667 44256|0.76389 44257|0.47222 44258|0.81944 44259|0.84722 44260|0.75 44261|0.79167 44262|0.75 44263|0.93056 44264|0.63889 44265|0.61111 44266|0.68056 44267|0.72222 44268|0.51389 44269|0.54167 44270|0.80556 44271|0.88889 44272|0.86111 44273|0.54167 44274|0.51389 44275|0.66667 44276|0.83333 44277|0.375 44278|0.73611 44279|0.91667 44280|0.58333 44281|0.61111 44282|0.88889 44283|0.5 44284|0.48611 44285|0.77778 44286|0.65278 44287|0.16667 44288|0.22222 44289|0.75 44290|0.72222 44291|0.72222 44292|0.61111 44293|0.83333 44294|0.80556 44295|0.79167 44296|0.66667 44297|0.75 44298|0.77778 44299|0.88889 44300|0.80556 44301|0.68056 44302|0.84722 44303|1 44304|0.59722 44305|0.76389 44306|0.43056 44307|0.41667 44308|0.81944 44309|0.80556 44310|0.75 44311|0.75 44312|0.43056 44313|0.81944 44314|0.75 44315|0.5 44316|0.625 44317|0.66667 44318|0.69444 44319|0.83333 44320|0.69444 44321|0.75 44322|0.875 44323|0.77778 44324|0.59722 44325|0.625 44326|0.61111 44327|0.58333 44328|0.72222 44329|0.75 44330|0.75 44331|0.84722 44332|0.97222 44333|0.40278 44334|0.48611 44335|0.34722 44336|0.72222 44337|0.70833 44338|0.73611 44339|0.66667 44340|0.79167 44341|0.86111 44342|0.79167 44343|0.73611 44344|0.27778 44345|0.51389 44346|0.79167 44347|0.88889 44348|0.79167 44349|0.5 44350|0.5 44351|0.79167 44352|0.5 44353|0.5 44354|0.54167 44355|0.51389 44356|0.68056 44357|0.63889 44358|0.70833 44359|0.5 44360|0.5 44361|0.5 44362|0.5 44363|0.79167 44364|0.61111 44365|0.75 44366|0.63889 44367|0.68056 44368|0.61111 44369|0.5 44370|0.44444 44371|0.5 44372|0.5 44373|0.5 44374|0.38889 44375|0.55556 44376|0.61111 44377|0.5 44378|0.5 44379|0.51389 44380|0.5 44381|0.5 44382|0.41667 44383|0.5 44384|0.51389 44385|0.5 44386|0.44444 44387|0.5 44388|0.61111 44389|0.55556 44390|0.5 44391|0.5 44392|0.5 44393|0.5 44394|0.61111 44395|0.73611 44396|0.58333 44397|0.56944 44398|0.36111 44399|0.44444 44400|0.59722 44401|0.68056 44402|0.55556 44403|0.875 44404|0.58333 44405|0.66667 44406|0.76389 44407|0.51389 44408|0.5 44409|0.79167 44410|0.75 44411|0.61111 44412|0.63889 44413|0.58333 44414|0.48611 44415|0.625 44416|0.29167 44417|0.31944 44418|0.56944 44419|0.90278 44420|0.5 44421|0.5 44422|0.5 44423|0.66667 44424|0.55556 44425|0.52778 44426|0.5 44427|0.41667 44428|0.52778 44429|0.59722 44430|0.52778 44431|0.52778 44432|0.65278 44433|0.51389 44434|0.44444 44435|0.38889 44436|0.65278 44437|0.5 44438|0.51389 44439|0.5 44440|0.40278 44441|0.41667 44442|0.5 44443|0.5 44444|0.5 44445|0.5 44446|0.5 44447|0.51389 44448|0.83333 44449|0.94444 44450|0.51389 44451|0.58333 44452|0.76389 44453|0.65278 44454|0.61111 44455|0.36111 44456|0.36111 44457|0.59722 44458|0.44444 44459|0.88889 44460|0.75 44461|0.83333 44462|0.48611 44463|0.52778 44464|0.81944 44465|0.75 44466|0.79167 44467|0.66667 44468|0.45833 44469|0.69444 44470|0.68056 44471|0.84722 44472|0.86111 44473|0.79167 44474|0.73611 44475|0.81944 44476|0.90278 44477|0.80556 44478|0.65278 44479|0.79167 44480|0.76389 44481|0.875 44482|0.91667 44483|0.81944 44484|0.66667 44485|0.76389 44486|0.90278 44487|0.77778 44488|0.94444 44489|0.70833 44490|0.5 44491|0.68056 44492|0.88889 44493|0.76389 44494|0.72222 44495|0.73611 44496|0.80556 44497|0.84722 44498|0.91667 44499|0.84722 44500|0.72222 44501|0.40278 44502|0.66667 44503|0.72222 44504|0.73611 44505|0.75 44506|0.84722 44507|0.69444 44508|0.84722 44509|0.91667 44510|0.75 44511|0.69444 44512|0.84722 44513|0.55556 44514|0.75 44515|0.73611 44516|0.77778 44517|0.625 44518|0.81944 44519|0.66667 44520|0.625 44521|0.84722 44522|0.88889 44523|0.51389 44524|0.55556 44525|0.63889 44526|0.69444 44527|0.69444 44528|0.73611 44529|0.68056 44530|0.55556 44531|0.72222 44532|0.70833 44533|0.66667 44534|0.5 44535|0.75 44536|0.65278 44537|0.66667 44538|0.77778 44539|0.84722 44540|0.79167 44541|0.5 44542|0.5 44543|0.5 44544|0.55556 44545|0.5 44546|0.5 44547|0.45833 44548|0.27778 44549|0.69444 44550|0.5 44551|0.5 44552|0.5 44553|0.72222 44554|0.70833 44555|0.77778 44556|0.69444 44557|0.5 44558|0.625 44559|0.5 44560|0.5 44561|0.5 44562|0.5 44563|0.5 44564|0.5 44565|0.55556 44566|0.72222 44567|0.5 44568|0.83333 44569|0.22222 44570|0.54167 44571|0.5 44572|0.38889 44573|0.27778 44574|0.61111 44575|0.70833 44576|0.55556 44577|0.73611 44578|0.5 44579|0.79167 44580|0.66667 44581|0.76389 44582|0.76389 44583|0.90278 44584|0.54167 44585|0.83333 44586|0.51389 44587|0.23611 44588|0.34722 44589|0.54167 44590|0.41667 44591|0.80556 44592|0.80556 44593|0.66667 44594|0.77778 44595|0.5 44596|0.77778 44597|0.58333 44598|0.875 44599|0.30556 44600|0.33333 44601|0.625 44602|0.58333 44603|0.52778 44604|0.43056 44605|0.68056 44606|0.5 44607|0.5 44608|0.48611 44609|0.51389 44610|0.66667 44611|0.83333 44612|0.51389 44613|0.5 44614|0.79167 44615|0.88889 44616|0.75 44617|0.84722 44618|0.72222 44619|0.5 44620|0.75 44621|0.70833 44622|0.54167 44623|0.51389 44624|0.5 44625|0.27778 44626|0.5 44627|0.41667 44628|0.94444 44629|0.91667 44630|0.83333 44631|0.81944 44632|0.84722 44633|0.83333 44634|0.84722 44635|0.93056 44636|0.5 44637|0.5 44638|0.55556 44639|0.36111 44640|0.40278 44641|0.38889 44642|0.55556 44643|0.11111 44644|0.38889 44645|0.5 44646|0.5 44647|0.61111 44648|0.55556 44649|0.5 44650|0.77778 44651|0.5 44652|0.5 44653|0.5 44654|0.5 44655|0.72222 44656|0.51389 44657|0.51389 44658|0.61111 44659|0.36111 44660|0.69444 44661|0.80556 44662|0.5 44663|0.5 44664|0.44444 44665|0.625 44666|0.86111 44667|0.88889 44668|0.86111 44669|0.84722 44670|0.88889 44671|0.72222 44672|0.66667 44673|0.5 44674|0.59722 44675|0.5 44676|0.58333 44677|0.72222 44678|0.88889 44679|0.83333 44680|0.44444 44681|0.38889 44682|0.38889 44683|0.56944 44684|0.625 44685|0.66667 44686|0.47222 44687|0.5 44688|0.75 44689|0.58333 44690|0.55556 44691|0.79167 44692|0.80556 44693|0.81944 44694|0.84722 44695|0.80556 44696|0.5 44697|0.5 44698|0.73611 44699|0.5 44700|0.75 44701|0.5 44702|0.5 44703|0.51389 44704|0.5 44705|0.5 44706|0.51389 44707|0.43056 44708|0.61111 44709|0.5 44710|0.5 44711|0.63889 44712|0.5 44713|0.5 44714|0.52778 44715|0.5 44716|0.52778 44717|0.5 44718|0.55556 44719|0.5 44720|0.5 44721|0.54167 44722|0.55556 44723|0.52778 44724|0.65278 44725|0.65278 44726|0.75 44727|0.45833 44728|0.48611 44729|0.51389 44730|0.5 44731|0.5 44732|0.5 44733|0.88889 44734|0.34722 44735|0.58333 44736|0.66667 44737|0.5 44738|0.45833 44739|0.5 44740|0.54167 44741|0.52778 44742|0.70833 44743|0.55556 44744|0.59722 44745|0.81944 44746|0.69444 44747|0.5 44748|0.73611 44749|0.83333 44750|0.5 44751|0.55556 44752|0.51389 44753|0.54167 44754|0.79167 44755|0.5 44756|0.5 44757|0.5 44758|0.23611 44759|0.51389 44760|0.34722 44761|0.63889 44762|0.69444 44763|0.73611 44764|0.63889 44765|0.90278 44766|0.56944 44767|0.5 44768|0.5 44769|0.5 44770|0.29167 44771|0.47222 44772|0.86111 44773|0.875 44774|0.5 44775|0.5 44776|0.75 44777|0.70833 44778|0.69444 44779|0.875 44780|0.51389 44781|0.72222 44782|0.875 44783|0.54167 44784|0.66667 44785|0.5 44786|0.5 44787|0.5 44788|0.5 44789|0.5 44790|0.44444 44791|0.51389 44792|0.5 44793|0.5 44794|0.48611 44795|0.88889 44796|0.5 44797|0.88889 44798|0.51389 44799|0.5 44800|0.5 44801|0.38889 44802|0.51389 44803|0.52778 44804|0.44444 44805|0.40278 44806|0.52778 44807|0.61111 44808|0.66667 44809|0.52778 44810|0.5 44811|0.54167 44812|0.5 44813|0.83333 44814|0.5 44815|0.69444 44816|0.79167 44817|0.5 44818|0.69444 44819|0.33333 44820|0.23611 44821|0.5 44822|0.73611 44823|0.16667 44824|0.83333 44825|0.69444 44826|0.80556 44827|0.76389 44828|0.81944 44829|0.48611 44830|0.54167 44831|0.5 44832|0.5 44833|0.76389 44834|0.73611 44835|0.73611 44836|0.5 44837|0.5 44838|0.70833 44839|0.55556 44840|0.80556 44841|0.5 44842|0.5 44843|0.51389 44844|0.94444 44845|0.5 44846|0.55556 44847|0.65278 44848|0.5 44849|0.70833 44850|0.55556 44851|0.55556 44852|0.79167 44853|0.875 44854|0.5 44855|0.5 44856|0.51389 44857|0.61111 44858|0.52778 44859|0.5 44860|0.5 44861|0.5 44862|0.69444 44863|0.5 44864|0.625 44865|0.5 44866|0.51389 44867|0.5 44868|0.48611 44869|0.63889 44870|0.72222 44871|0.5 44872|0.5 44873|0.5 44874|0.63889 44875|0.66667 44876|0.63889 44877|0.80556 44878|0.59722 44879|0.43056 44880|0.36111 44881|0.44444 44882|0.45833 44883|0.48611 44884|0.52778 44885|0.5 44886|0.5 44887|0.5 44888|0.5 44889|0.68056 44890|0.5 44891|0.65278 44892|0.68056 44893|0.94444 44894|0.5 44895|0.5 44896|0.5 44897|0.5 44898|0.56944 44899|0.55556 44900|0.5 44901|0.88889 44902|0.77778 44903|0.43056 44904|0.5 44905|0.5 44906|0.5 44907|0.5 44908|0.61111 44909|0.30556 44910|0.34722 44911|0.33333 44912|0.70833 44913|0.73611 44914|0.5 44915|0.86111 44916|0.44444 44917|0.5 44918|0.5 44919|0.5 44920|0.47222 44921|0.44444 44922|0.51389 44923|0.65278 44924|0.5 44925|0.5 44926|0.73611 44927|0.63889 44928|0.79167 44929|0.61111 44930|0.5 44931|0.5 44932|0.5 44933|0.125 44934|0.29167 44935|0.38889 44936|0.43056 44937|0.48611 44938|0.5 44939|0.44444 44940|0.5 44941|0.5 44942|0.5 44943|0.5 44944|0.55556 44945|0.66667 44946|0.5 44947|0.5 44948|0.47222 44949|0.5 44950|0.65278 44951|0.5 44952|0.58333 44953|0.5 44954|0.5 44955|0.51389 44956|0.58333 44957|0.5 44958|0.5 44959|0.66667 44960|0.66667 44961|0.45833 44962|0.61111 44963|0.5 44964|0.5 44965|0.66667 44966|0.5 44967|0.5 44968|0.5 44969|0.70833 44970|0.65278 44971|0.36111 44972|0.55556 44973|0.63889 44974|0.625 44975|0.68056 44976|0.52778 44977|0.41667 44978|0.5 44979|0.40278 44980|0.5 44981|0.5 44982|0.55556 44983|0.5 44984|0.69444 44985|0.5 44986|0.875 44987|0.41667 44988|0.61111 44989|0.55556 44990|0.44444 44991|0.5 44992|0.5 44993|0.5 44994|0.5 44995|0.58333 44996|0.72222 44997|0.625 44998|0.5 44999|0.45833 45000|0.55556 45001|0.41667 45002|0.51389 45003|0.80556 45004|0.5 45005|0.5 45006|0.47222 45007|0.5 45008|0.66667 45009|0.88889 45010|0.5 45011|0.91667 45012|0.90278 45013|0.83333 45014|0.79167 45015|0.84722 45016|0.76389 45017|0.5 45018|0.70833 45019|0.5 45020|0.51389 45021|0.5 45022|0.5 45023|0.5 45024|0.76389 45025|0.52778 45026|0.5 45027|0.52778 45028|0.44444 45029|0.69444 45030|0.5 45031|0.84722 45032|0.70833 45033|0.56944 45034|0.66667 45035|0.55556 45036|0.73611 45037|0.5 45038|0.5 45039|0.5 45040|0.5 45041|0.5 45042|0.55556 45043|0.31944 45044|0.5 45045|0.5 45046|0.55556 45047|0.43056 45048|0.72222 45049|0.52778 45050|0.25 45051|0.41667 45052|0.66667 45053|0.52778 45054|0.72222 45055|0.38889 45056|0.68056 45057|0.40278 45058|0.70833 45059|0.5 45060|0.5 45061|0.51389 45062|0.72222 45063|0.68056 45064|0.55556 45065|0.72222 45066|0.625 45067|0.83333 45068|0.66667 45069|0.51389 45070|0.55556 45071|0.5 45072|0.88889 45073|0.77778 45074|0.73611 45075|0.91667 45076|0.94444 45077|0.38889 45078|0.58333 45079|0.56944 45080|0.70833 45081|0.51389 45082|0.73611 45083|0.76389 45084|0.5 45085|0.5 45086|0.5 45087|0.44444 45088|0.48611 45089|0.51389 45090|0.5 45091|0.70833 45092|0.58333 45093|0.59722 45094|0.5 45095|0.55556 45096|0.56944 45097|0.72222 45098|0.5 45099|0.77778 45100|0.5 45101|0.51389 45102|0.5 45103|0.5 45104|0.81944 45105|0.5 45106|0.5 45107|0.5 45108|0.66667 45109|0.63889 45110|0.72222 45111|0.63889 45112|0.5 45113|0.52778 45114|0.55556 45115|0.70833 45116|0.93056 45117|0.91667 45118|0.98611 45119|0.84722 45120|0.70833 45121|1 45122|0.5 45123|0.5 45124|0.48611 45125|0.5 45126|0.625 45127|0.66667 45128|0.70833 45129|0.68056 45130|0.41667 45131|0.55556 45132|0.44444 45133|0.5 45134|0.79167 45135|0.75 45136|0.83333 45137|0.73611 45138|0.5 45139|0.5 45140|0.5 45141|0.5 45142|0.59722 45143|0.5 45144|0.40278 45145|0.52778 45146|0.45833 45147|0.52778 45148|0.83333 45149|0.79167 45150|0.75 45151|0.5 45152|0.59722 45153|0.5 45154|0.68056 45155|0.47222 45156|0.55556 45157|0.63889 45158|0.51389 45159|0.5 45160|0.51389 45161|0.79167 45162|0.55556 45163|0.59722 45164|0.5 45165|0.5 45166|0.44444 45167|0.5 45168|0.63889 45169|0.5 45170|0.5 45171|0.75 45172|0.72222 45173|0.69444 45174|0.77778 45175|0.73611 45176|0.45833 45177|0.66667 45178|0.44444 45179|0.76389 45180|0.44444 45181|0.76389 45182|0.52778 45183|0.55556 45184|0.625 45185|0.48611 45186|0.52778 45187|0.38889 45188|0.44444 45189|0.45833 45190|0.61111 45191|0.23611 45192|0.625 45193|0.79167 45194|0.73611 45195|0.80556 45196|0.81944 45197|0.76389 45198|0.68056 45199|0.5 45200|0.76389 45201|0.80556 45202|0.86111 45203|0.90278 45204|0.72222 45205|0.875 45206|0.5 45207|0.65278 45208|0.91667 45209|0.40278 45210|0.79167 45211|0.5 45212|0.63889 45213|0.56944 45214|0.5 45215|0.79167 45216|0.45833 45217|0.88889 45218|0.63889 45219|0.79167 45220|0.68056 45221|0.72222 45222|0.73611 45223|0.72222 45224|0.58333 45225|0.5 45226|0.5 45227|0.5 45228|0.54167 45229|0.5 45230|0.81944 45231|0.5 45232|0.83333 45233|0.94444 45234|0.76389 45235|0.44444 45236|0.5 45237|0.5 45238|0.51389 45239|0.61111 45240|0.58333 45241|1 45242|0.5 45243|0.875 45244|0.88889 45245|0.5 45246|0.61111 45247|0.5 45248|0.73611 45249|0.77778 45250|0.5 45251|0.55556 45252|0.77778 45253|0.77778 45254|0.68056 45255|0.63889 45256|0.72222 45257|0.625 45258|0.73611 45259|0.5 45260|0.5 45261|0.5 45262|0.61111 45263|0.5 45264|0.5 45265|0.79167 45266|0.5 45267|0.48611 45268|0.5 45269|0.5 45270|0.5 45271|0.5 45272|0.61111 45273|0.5 45274|0.44444 45275|0.625 45276|0.63889 45277|0.90278 45278|0.5 45279|0.63889 45280|0.55556 45281|0.73611 45282|0.69444 45283|0.83333 45284|0.27778 45285|0.23611 45286|0.26389 45287|0.23611 45288|0.5 45289|0.5 45290|0.41667 45291|0.5 45292|0.52778 45293|0.375 45294|0.43056 45295|0.5 45296|0.5 45297|0.5 45298|0.47222 45299|0.44444 45300|0.43056 45301|0.5 45302|0.5 45303|0.55556 45304|0.55556 45305|0.52778 45306|0.77778 45307|0.5 45308|0.56944 45309|0.48611 45310|0.44444 45311|0.5 45312|0.5 45313|0.5 45314|0.56944 45315|0.625 45316|0.76389 45317|0.5 45318|0.66667 45319|0.70833 45320|0.55556 45321|0.5 45322|0.5 45323|0.77778 45324|0.55556 45325|0.66667 45326|0.72222 45327|0.84722 45328|0.44444 45329|0.80556 45330|0.51389 45331|0.5 45332|0.77778 45333|0.66667 45334|0.5 45335|0.79167 45336|0.73611 45337|0.88889 45338|0.94444 45339|0.66667 45340|0.61111 45341|0.5 45342|0.81944 45343|0.625 45344|0.5 45345|0.5 45346|0.5 45347|0.69444 45348|0.5 45349|0.5 45350|0.5 45351|0.5 45352|0.33333 45353|0.51389 45354|0.69444 45355|0.5 45356|0.75 45357|0.5 45358|0.5 45359|0.5 45360|0.59722 45361|0.5 45362|0.66667 45363|0.5 45364|0.51389 45365|0.5 45366|0.51389 45367|0.51389 45368|0.54167 45369|0.5 45370|0.5 45371|0.5 45372|0.5 45373|0.51389 45374|0.76389 45375|0.84722 45376|0.72222 45377|0.72222 45378|0.81944 45379|0.55556 45380|0.5 45381|0.625 45382|0.83333 45383|0.75 45384|0.5 45385|0.5 45386|0.5 45387|0.73611 45388|0.69444 45389|0.81944 45390|0.93056 45391|0.91667 45392|0.80556 45393|0.73611 45394|0.81944 45395|0.68056 45396|0.5 45397|0.75 45398|0.55556 45399|0.86111 45400|0.875 45401|0.84722 45402|0.97222 45403|0.69444 45404|0.47222 45405|0.5 45406|0.5 45407|0.47222 45408|0.5 45409|0.5 45410|0.51389 45411|0.61111 45412|0.51389 45413|0.59722 45414|0.86111 45415|0.51389 45416|0.5 45417|0.5 45418|0.51389 45419|0.5 45420|0.83333 45421|0.38889 45422|0.54167 45423|0.5 45424|0.52778 45425|0.5 45426|0.51389 45427|0.51389 45428|0.80556 45429|0.5 45430|0.22222 45431|0.63889 45432|0.33333 45433|0.68056 45434|0.75 45435|0.80556 45436|0.84722 45437|0.5 45438|0.5 45439|0.75 45440|0.5 45441|0.5 45442|0.41667 45443|0.5 45444|0.5 45445|0.66667 45446|0.52778 45447|0.72222 45448|0.68056 45449|0.68056 45450|0.80556 45451|0.52778 45452|0.58333 45453|0.70833 45454|0.5 45455|0.76389 45456|0.55556 45457|0.625 45458|0.33333 45459|0.75 45460|0.45833 45461|0.59722 45462|0.5 45463|0.5 45464|0.5 45465|0.51389 45466|0.48611 45467|0.5 45468|0.625 45469|0.5 45470|0.48611 45471|0.5 45472|0.5 45473|0.38889 45474|0.52778 45475|0.5 45476|0.38889 45477|0.54167 45478|0.41667 45479|0.43056 45480|0.5 45481|0.51389 45482|0.51389 45483|0.36111 45484|0.47222 45485|0.5 45486|0.56944 45487|0.51389 45488|0.58333 45489|0.58333 45490|0.61111 45491|0.55556 45492|0.55556 45493|0.51389 45494|0.83333 45495|0.63889 45496|0.65278 45497|0.73611 45498|0.5 45499|0.54167 45500|0.58333 45501|0.52778 45502|0.73611 45503|0.625 45504|0.69444 45505|0.68056 45506|0.73611 45507|0.59722 45508|0.66667 45509|0.51389 45510|0.56944 45511|0.61111 45512|0.51389 45513|0.5 45514|0.44444 45515|0.81944 45516|0.44444 45517|0.38889 45518|0.5 45519|0.47222 45520|0.40278 45521|0.51389 45522|0.84722 45523|0.52778 45524|0.5 45525|0.30556 45526|0.80556 45527|0.59722 45528|0.51389 45529|0.5 45530|0.5 45531|0.72222 45532|0.5 45533|0.5 45534|0.5 45535|0.44444 45536|0.48611 45537|0.625 45538|0.47222 45539|0.79167 45540|0.61111 45541|0.58333 45542|0.72222 45543|0.61111 45544|0.54167 45545|0.72222 45546|0.5 45547|0.51389 45548|0.58333 45549|0.70833 45550|0.5 45551|0.5 45552|0.51389 45553|0.69444 45554|0.63889 45555|0.55556 45556|0.22222 45557|0.51389 45558|0.68056 45559|0.30556 45560|0.23611 45561|0.30556 45562|0.38889 45563|0.47222 45564|0.84722 45565|0.55556 45566|0.65278 45567|0.86111 45568|0.91667 45569|0.875 45570|0.68056 45571|0.73611 45572|0.40278 45573|0.52778 45574|0.36111 45575|0.88889 45576|0.5 45577|0.43056 45578|0.375 45579|0.66667 45580|0.56944 45581|0.5 45582|0.93056 45583|0.76389 45584|0.83333 45585|0.51389 45586|0.61111 45587|0.61111 45588|0.76389 45589|0.79167 45590|0.93056 45591|0.66667 45592|0.63889 45593|0.84722 45594|0.88889 45595|0.875 45596|0.55556 45597|0.625 45598|0.5 45599|0.15278 45600|0.5 45601|0.55556 45602|0.5 45603|0.47222 45604|0.72222 45605|0.5 45606|0.72222 45607|0.5 45608|0.33333 45609|0.18056 45610|0.83333 45611|0.54167 45612|0.61111 45613|0.47222 45614|0.33333 45615|0.65278 45616|0.5 45617|0.40278 45618|0.91667 45619|1 45620|0.68056 45621|0.63889 45622|0.66667 45623|0.69444 45624|0.59722 45625|0.56944 45626|0.65278 45627|0.81944 45628|0.63889 45629|0.65278 45630|0.40278 45631|0.48611 45632|0.47222 45633|0.79167 45634|0.68056 45635|0.84722 45636|0.63889 45637|0.91667 45638|0.5 45639|0.5 45640|0.51389 45641|0.38889 45642|0.75 45643|0.56944 45644|0.58333 45645|0.70833 45646|0.375 45647|0.27778 45648|0.76389 45649|0.66667 45650|0.63889 45651|0.72222 45652|0.69444 45653|0.88889 45654|0.61111 45655|0.27778 45656|0.61111 45657|0.70833 45658|0.41667 45659|0.68056 45660|0.5 45661|0.63889 45662|0.5 45663|0.5 45664|0.52778 45665|0.51389 45666|0.5 45667|0.65278 45668|0.69444 45669|0.63889 45670|0.79167 45671|0.72222 45672|0.86111 45673|0.79167 45674|0.84722 45675|0.70833 45676|0.56944 45677|0.56944 45678|0.5 45679|0.44444 45680|0.5 45681|0.5 45682|0.61111 45683|0.5 45684|0.44444 45685|0.86111 45686|0.61111 45687|0.5 45688|0.5 45689|0.65278 45690|0.41667 45691|0.33333 45692|0.45833 45693|0.66667 45694|0.59722 45695|0.59722 45696|0.5 45697|0.625 45698|0.625 45699|0.77778 45700|0.27778 45701|0.88889 45702|0.75 45703|0.55556 45704|0.58333 45705|0.70833 45706|0.63889 45707|0.44444 45708|0.069444 45709|0.11111 45710|0.63889 45711|0.63889 45712|0.63889 45713|0.80556 45714|0.80556 45715|0.77778 45716|0.79167 45717|0.625 45718|0.75 45719|0.69444 45720|0.27778 45721|0.375 45722|0.51389 45723|0.47222 45724|0.69444 45725|0.61111 45726|0.70833 45727|0.98611 45728|0.72222 45729|0.54167 45730|0.70833 45731|0.56944 45732|0.875 45733|0.65278 45734|0.61111 45735|0.66667 45736|0.79167 45737|0.23611 45738|0.31944 45739|0.31944 45740|0.48611 45741|0.47222 45742|0.18056 45743|0.63889 45744|0.23611 45745|0.36111 45746|0.66667 45747|0.51389 45748|0.73611 45749|0.36111 45750|0.84722 45751|0.55556 45752|0.22222 45753|0.33333 45754|0.36111 45755|0.38889 45756|0.34722 45757|0.66667 45758|0.43056 45759|0.66667 45760|0.16667 45761|0.36111 45762|0.44444 45763|0.83333 45764|0.80556 45765|0.58333 45766|0.34722 45767|0.19444 45768|0.47222 45769|0.68056 45770|0.66667 45771|0.83333 45772|0.77778 45773|0.72222 45774|0.72222 45775|0.54167 45776|0.72222 45777|0.83333 45778|0.66667 45779|0.72222 45780|0.83333 45781|0.79167 45782|0.73611 45783|0.79167 45784|0.72222 45785|0.34722 45786|0.19444 45787|0.36111 45788|0.72222 45789|0.66667 45790|0.65278 45791|0.33333 45792|0.16667 45793|0.30556 45794|0.55556 45795|0.56944 45796|0.80556 45797|0.83333 45798|0.76389 45799|0.88889 45800|0.73611 45801|0.80556 45802|0.65278 45803|0.625 45804|0.83333 45805|0.56944 45806|0.55556 45807|0.75 45808|0.83333 45809|0.79167 45810|0.65278 45811|0.72222 45812|0.76389 45813|0.90278 45814|0.91667 45815|0.79167 45816|0.91667 45817|0.59722 45818|0.44444 45819|0.80556 45820|0.54167 45821|0.75 45822|0.72222 45823|0.98611 45824|0.81944 45825|0.77778 45826|0.69444 45827|0.40278 45828|0.79167 45829|0.48611 45830|0.55556 45831|0.86111 45832|0.875 45833|0.93056 45834|0.75 45835|0.72222 45836|0.76389 45837|0.34722 45838|0.54167 45839|0.45833 45840|0.47222 45841|0.47222 45842|0.5 45843|0.43056 45844|0.5 45845|0.5 45846|0.5 45847|0.5 45848|0.52778 45849|0.875 45850|0.66667 45851|0.55556 45852|0.5 45853|0.5 45854|0.5 45855|0.45833 45856|0.5 45857|0.5 45858|0.70833 45859|0.56944 45860|0.5 45861|0.70833 45862|0.27778 45863|0.5 45864|0.5 45865|0.51389 45866|0.5 45867|0.66667 45868|0.54167 45869|0.5 45870|0.51389 45871|0.55556 45872|0.47222 45873|0.38889 45874|0.5 45875|0.5 45876|0.66667 45877|0.5 45878|0.5 45879|0.5 45880|0.5 45881|0.5 45882|0.5 45883|0.79167 45884|0.38889 45885|0.61111 45886|0.5 45887|0.58333 45888|1 45889|0.51389 45890|0.5 45891|0.5 45892|0.44444 45893|0.5 45894|0.5 45895|0.5 45896|0.52778 45897|0.5 45898|0.5 45899|0.47222 45900|0.5 45901|0.80556 45902|0.5 45903|0.51389 45904|0.5 45905|0.65278 45906|0.69444 45907|0.875 45908|0.65278 45909|0.5 45910|0.5 45911|0.5 45912|0.55556 45913|0.5 45914|0.51389 45915|0.5 45916|0.77778 45917|0.875 45918|0.79167 45919|0.90278 45920|0.875 45921|0.93056 45922|0.88889 45923|0.79167 45924|0.45833 45925|0.625 45926|0.63889 45927|0.5 45928|0.5 45929|0.27778 45930|0.55556 45931|0.5 45932|0.51389 45933|0.47222 45934|0.5 45935|0.5 45936|0.70833 45937|0.51389 45938|0.84722 45939|0.625 45940|0.45833 45941|0.625 45942|0.69444 45943|0.70833 45944|0.5 45945|0.55556 45946|0.72222 45947|0.45833 45948|0.61111 45949|0.5 45950|0.16667 45951|0.5 45952|0.51389 45953|0.51389 45954|0.77778 45955|0.5 45956|0.5 45957|0.5 45958|0.65278 45959|0.83333 45960|0.5 45961|0.5 45962|0.5 45963|0.86111 45964|0.5 45965|0.51389 45966|0.5 45967|0.5 45968|0.5 45969|0.5 45970|0.5 45971|0.61111 45972|0.38889 45973|0.83333 45974|0.86111 45975|0.5 45976|0.45833 45977|0.56944 45978|0.5 45979|0.55556 45980|0.20833 45981|0.27778 45982|0.51389 45983|0.55556 45984|0.52778 45985|0.5 45986|0.66667 45987|0.88889 45988|0.81944 45989|0.5 45990|0.5 45991|0.5 45992|0.5 45993|0.45833 45994|0.70833 45995|0.5 45996|0.5 45997|0.61111 45998|0.5 45999|0.73611 46000|0.5 46001|0.55556 46002|0.51389 46003|0.55556 46004|0.34722 46005|0.5 46006|0.51389 46007|0.5 46008|0.875 46009|0.875 46010|0.875 46011|0.875 46012|0.94444 46013|0.5 46014|0.55556 46015|0.5 46016|0.61111 46017|0.5 46018|0.38889 46019|0.55556 46020|0.55556 46021|0.73611 46022|0.625 46023|0.86111 46024|0.625 46025|0.72222 46026|0.52778 46027|0.56944 46028|0.55556 46029|0.5 46030|0.54167 46031|0.55556 46032|0.70833 46033|0.51389 46034|0.44444 46035|0.54167 46036|0.5 46037|0.5 46038|0.5 46039|0.51389 46040|0.5 46041|0.5 46042|0.5 46043|0.375 46044|0.63889 46045|0.81944 46046|0.76389 46047|0.88889 46048|0.80556 46049|0.72222 46050|0.83333 46051|0.5 46052|0.5 46053|0.5 46054|0.75 46055|0.83333 46056|0.79167 46057|0.75 46058|0.55556 46059|0.5 46060|0.72222 46061|0.75 46062|0.5 46063|0.5 46064|0.55556 46065|0.76389 46066|0.5 46067|0.77778 46068|0.66667 46069|0.83333 46070|0.86111 46071|0.73611 46072|0.83333 46073|0.44444 46074|0.44444 46075|0.52778 46076|0.72222 46077|0.5 46078|0.5 46079|0.65278 46080|0.69444 46081|0.66667 46082|0.5 46083|0.5 46084|0.5 46085|0.5 46086|0.5 46087|0.84722 46088|0.5 46089|0.44444 46090|0.5 46091|0.54167 46092|0.5 46093|0.5 46094|0.5 46095|0.48611 46096|0.68056 46097|0.44444 46098|0.5 46099|0.5 46100|0.55556 46101|0.5 46102|0.79167 46103|0.52778 46104|0.5 46105|0.51389 46106|0.69444 46107|0.61111 46108|0.5 46109|0.83333 46110|0.84722 46111|0.5 46112|0.5 46113|0.625 46114|0.61111 46115|0.73611 46116|0.86111 46117|0.30556 46118|0.34722 46119|0.75 46120|0.52778 46121|0.43056 46122|0.51389 46123|0.52778 46124|0.51389 46125|0.5 46126|0.66667 46127|0.55556 46128|0.5 46129|0.5 46130|0.83333 46131|0.73611 46132|0.51389 46133|0.72222 46134|0.51389 46135|0.86111 46136|0.54167 46137|0.5 46138|0.5 46139|0.72222 46140|1 46141|0.5 46142|0.5 46143|0.375 46144|0.52778 46145|0.5 46146|0.5 46147|0.5 46148|0.70833 46149|0.55556 46150|0.51389 46151|0.5 46152|0.5 46153|0.5 46154|0.5 46155|0.54167 46156|0.5 46157|0.44444 46158|0.51389 46159|0.58333 46160|0.55556 46161|0.83333 46162|0.5 46163|0.73611 46164|0.51389 46165|0.51389 46166|0.5 46167|0.5 46168|0.61111 46169|0.66667 46170|0.5 46171|0.5 46172|0.83333 46173|0.55556 46174|0.5 46175|0.5 46176|0.5 46177|0.5 46178|0.5 46179|0.63889 46180|0.59722 46181|0.56944 46182|0.5 46183|0.34722 46184|0.56944 46185|0.84722 46186|0.70833 46187|0.5 46188|0.5 46189|0.5 46190|0.5 46191|0.79167 46192|0.51389 46193|0.5 46194|0.5 46195|0.43056 46196|0.94444 46197|0.5 46198|0.5 46199|0.5 46200|0.61111 46201|0.5 46202|0.5 46203|0.69444 46204|0.79167 46205|0.79167 46206|0.375 46207|0.40278 46208|0.55556 46209|0.65278 46210|0.68056 46211|0.58333 46212|0.76389 46213|0.61111 46214|0.61111 46215|0.68056 46216|0.70833 46217|0.80556 46218|0.81944 46219|0.72222 46220|0.81944 46221|0.38889 46222|0.5 46223|0.5 46224|0.5 46225|0.52778 46226|0.70833 46227|0.5 46228|0.5 46229|0.81944 46230|0.79167 46231|0.77778 46232|0.84722 46233|0.52778 46234|0.5 46235|0.51389 46236|0.61111 46237|0.5 46238|0.5 46239|0.5 46240|0.52778 46241|0.5 46242|0.58333 46243|0.5 46244|0.51389 46245|0.5 46246|0.68056 46247|0.5 46248|0.5 46249|0.51389 46250|0.52778 46251|0.70833 46252|0.73611 46253|0.75 46254|0.81944 46255|0.5 46256|0.72917 46257|0.73611 46258|0.73611 46259|0.80556 46260|0.70833 46261|0.55556 46262|0.83333 46263|0.98611 46264|0.5 46265|0.69444 46266|0.63889 46267|0.625 46268|0.5 46269|0.66667 46270|0.44444 46271|0.55556 46272|0.69444 46273|0.69444 46274|0.5 46275|0.5 46276|0.80556 46277|0.5 46278|0.5 46279|0.61111 46280|0.48611 46281|0.72222 46282|0.83333 46283|0.5 46284|0.47222 46285|0.51389 46286|0.5 46287|0.5 46288|0.72222 46289|0.48611 46290|0.5 46291|0.5 46292|0.58333 46293|0.5 46294|0.5 46295|0.5 46296|0.61111 46297|0.38889 46298|0.61111 46299|0.66667 46300|0.5 46301|0.54167 46302|0.5 46303|0.75 46304|0.55556 46305|0.47222 46306|0.66667 46307|0.5 46308|0.5 46309|0.55556 46310|0.72222 46311|0.66667 46312|0.75 46313|0.47222 46314|0.5 46315|0.5 46316|0.69444 46317|0.48611 46318|0.5 46319|0.5 46320|0.5 46321|0.5 46322|0.5 46323|0.56944 46324|0.59722 46325|0.63889 46326|0.5 46327|0.51389 46328|0.55556 46329|0.55556 46330|0.48611 46331|0.77778 46332|0.79167 46333|0.51389 46334|0.44444 46335|0.59722 46336|0.5 46337|0.55556 46338|0.30556 46339|0.34722 46340|0.43056 46341|0.88889 46342|0.875 46343|0.41667 46344|0.41667 46345|0.375 46346|0.47222 46347|0.68056 46348|0.56944 46349|0.41667 46350|0.5 46351|0.38889 46352|0.36111 46353|0.45833 46354|0.65278 46355|0.5 46356|0.56944 46357|0.73611 46358|0.58333 46359|0.80556 46360|0.5 46361|0.76389 46362|0.45833 46363|0.38889 46364|0.31944 46365|0.36111 46366|0.38889 46367|0.69444 46368|0.80556 46369|0.375 46370|0.63889 46371|0.375 46372|0.61111 46373|0.77778 46374|0.73611 46375|0.75 46376|0.75 46377|0.875 46378|0.72222 46379|0.69444 46380|0.375 46381|0.5 46382|0.68056 46383|0.79167 46384|0.68056 46385|0.68056 46386|0.72222 46387|0.93056 46388|0.51389 46389|0.83333 46390|0.5 46391|0.5 46392|0.5 46393|0.5 46394|0.51389 46395|0.51389 46396|0.55556 46397|0.5 46398|0.5 46399|0.83333 46400|0.5 46401|0.59722 46402|0.5 46403|0.66667 46404|0.51389 46405|0.625 46406|0.61111 46407|0.63889 46408|0.54167 46409|0.31944 46410|0.29167 46411|0.25 46412|0.30556 46413|0.22222 46414|0.30556 46415|0.51389 46416|0.76389 46417|0.79167 46418|0.75 46419|0.81944 46420|0.77778 46421|0.88889 46422|0.55556 46423|0.90278 46424|0.70833 46425|0.75 46426|0.94444 46427|0.81944 46428|0.59722 46429|0.83333 46430|0.86111 46431|0.625 46432|0.79167 46433|0.97222 46434|0.51389 46435|0.625 46436|0.52778 46437|0.72222 46438|0.56944 46439|0.52778 46440|0.5 46441|0.45833 46442|0.45833 46443|0.5 46444|0.5 46445|0.5 46446|0.5 46447|0.5 46448|0.83333 46449|0.83333 46450|0.86111 46451|0.80556 46452|0.77778 46453|0.88889 46454|0.77778 46455|0.77778 46456|0.81944 46457|0.95833 46458|0.5 46459|0.51389 46460|0.83333 46461|0.5 46462|0.75 46463|0.77778 46464|0.5 46465|0.5 46466|0.59722 46467|0.84722 46468|0.80556 46469|0.73611 46470|0.88889 46471|0.44444 46472|0.45833 46473|0.5 46474|0.77778 46475|0.47222 46476|0.5 46477|0.59722 46478|0.5 46479|0.44444 46480|0.54167 46481|0.55556 46482|0.25 46483|0.77778 46484|0.55556 46485|0.51389 46486|0.77778 46487|0.54167 46488|0.5 46489|0.5 46490|0.5 46491|0.75 46492|0.84722 46493|0.5 46494|0.83333 46495|0.5 46496|0.5 46497|0.65278 46498|0.77778 46499|0.875 46500|0.58333 46501|1 46502|0.5 46503|0.5 46504|0.5 46505|0.5 46506|0.54167 46507|0.5 46508|0.5 46509|0.73611 46510|0.52778 46511|0.61111 46512|0.66667 46513|0.69444 46514|0.51389 46515|0.51389 46516|0.47222 46517|0.51389 46518|0.61111 46519|0.5 46520|0.44444 46521|0.45833 46522|0.51389 46523|0.59722 46524|0.76389 46525|0.63889 46526|0.83333 46527|0.61111 46528|0.5 46529|0.5 46530|0.56944 46531|0.75 46532|0.80556 46533|0.73611 46534|0.95833 46535|0.61111 46536|0.59722 46537|0.59722 46538|0.72222 46539|0.66667 46540|0.5 46541|0.5 46542|0.55556 46543|0.52778 46544|0.56944 46545|0.59722 46546|0.41667 46547|0.47222 46548|0.91667 46549|0.40278 46550|0.29167 46551|0.36111 46552|0.22222 46553|0.63889 46554|0.5 46555|0.66667 46556|0.76389 46557|0.66667 46558|0.5 46559|0.54167 46560|0.5 46561|0.73611 46562|0.70833 46563|0.625 46564|0.5 46565|0.31944 46566|0.66667 46567|0.5 46568|0.38889 46569|0.5 46570|0.5 46571|0.44444 46572|0.43056 46573|0.44444 46574|0.51389 46575|0.68056 46576|0.55556 46577|0.44444 46578|0.5 46579|0.40278 46580|0.29167 46581|0.69444 46582|0.69444 46583|0.5 46584|0.41667 46585|0.5 46586|0.5 46587|0.5 46588|0.88889 46589|0.75 46590|0.5 46591|0.5 46592|0.55556 46593|0.75 46594|0.5 46595|0.51389 46596|0.51389 46597|0.5 46598|0.5 46599|0.38889 46600|0.5 46601|0.5 46602|0.76389 46603|0.55556 46604|0.61111 46605|0.54167 46606|0.61111 46607|0.76389 46608|0.76389 46609|0.5 46610|0.5 46611|0.5 46612|0.51389 46613|0.77778 46614|0.59722 46615|0.75 46616|0.63889 46617|0.5 46618|0.875 46619|0.5 46620|0.5 46621|0.5 46622|0.47222 46623|0.77778 46624|0.51389 46625|0.55556 46626|0.5 46627|0.5 46628|0.5 46629|0.51389 46630|0.5 46631|0.5 46632|0.75 46633|0.91667 46634|0.5 46635|0.51389 46636|0.79167 46637|0.5 46638|0.51389 46639|0.40278 46640|0.45833 46641|0.5 46642|0.5 46643|0.51389 46644|0.5 46645|0.88889 46646|0.90278 46647|0.79167 46648|0.90278 46649|0.83333 46650|0.73611 46651|0.51389 46652|0.81944 46653|0.5 46654|0.5 46655|0.51389 46656|0.5 46657|0.81944 46658|0.5 46659|0.5 46660|0.5 46661|0.5 46662|0.38889 46663|0.27778 46664|0.33333 46665|0.66667 46666|0.68056 46667|0.5 46668|0.5 46669|0.5 46670|0.72222 46671|0.5 46672|0.56944 46673|0.40278 46674|0.5 46675|0.5 46676|0.70833 46677|0.5 46678|0.54167 46679|0.34722 46680|0.33333 46681|0.47222 46682|0.33333 46683|0.26389 46684|0.5 46685|0.5 46686|0.48611 46687|0.80556 46688|0.5 46689|0.5 46690|0.5 46691|0.51389 46692|0.68056 46693|0.55556 46694|0.63889 46695|0.5 46696|0.5 46697|0.5 46698|0.5 46699|0.75 46700|0.69444 46701|0.45833 46702|0.51389 46703|0.52778 46704|0.51389 46705|0.625 46706|0.51389 46707|0.56944 46708|0.55556 46709|0.58333 46710|0.47222 46711|0.90278 46712|0.5 46713|0.83333 46714|0.5 46715|0.5 46716|0.41667 46717|0.5 46718|0.44444 46719|0.40278 46720|0.5 46721|0.44444 46722|0.375 46723|0.54167 46724|0.58333 46725|0.47222 46726|0.61111 46727|0.70833 46728|0.72222 46729|0.5 46730|0.54167 46731|0.5 46732|0.51389 46733|0.56944 46734|0.45833 46735|0.61111 46736|0.5 46737|0.55556 46738|0.52778 46739|0.41667 46740|0.80556 46741|0.75 46742|0.54167 46743|0.61111 46744|0.44444 46745|0.73611 46746|0.80556 46747|0.81944 46748|0.88889 46749|0.77778 46750|0.76389 46751|0.79167 46752|0.5 46753|0.5 46754|0.51389 46755|0.5 46756|0.68056 46757|0.55556 46758|0.5 46759|0.44444 46760|0.45833 46761|0.48611 46762|0.63889 46763|0.84722 46764|0.5 46765|0.55556 46766|0.5 46767|0.54167 46768|0.5 46769|0.5 46770|0.5 46771|0.70833 46772|0.625 46773|0.63889 46774|0.72222 46775|0.79167 46776|0.77778 46777|0.77778 46778|0.86111 46779|0.51389 46780|0.65278 46781|0.76389 46782|0.68056 46783|0.55556 46784|0.5 46785|0.5 46786|0.83333 46787|0.5 46788|0.5 46789|0.625 46790|0.5 46791|0.55556 46792|0.75 46793|0.86111 46794|0.55556 46795|0.5 46796|0.5 46797|0.5 46798|0.5 46799|0.5 46800|0.5 46801|0.5 46802|0.54167 46803|0.59722 46804|0.44444 46805|0.5 46806|0.5 46807|0.625 46808|0.81944 46809|0.52778 46810|0.069444 46811|0.5 46812|0.98611 46813|0.5 46814|0.76389 46815|0.73611 46816|0.75 46817|0.76389 46818|0.72222 46819|0.83333 46820|0.84722 46821|0.5 46822|0.5 46823|0.76389 46824|0.5 46825|0.44444 46826|0.43056 46827|0.45833 46828|0.77778 46829|0.875 46830|0.41667 46831|0.5 46832|0.59722 46833|0.76389 46834|0.77778 46835|0.45833 46836|0.55556 46837|0.55556 46838|0.55556 46839|0.77778 46840|0.65278 46841|0.5 46842|0.40278 46843|0.38889 46844|0.52778 46845|0.70833 46846|0.26389 46847|0.23611 46848|0.51389 46849|0.72222 46850|0.55556 46851|0.76389 46852|0.72222 46853|0.55556 46854|0.55556 46855|0.5 46856|0.73611 46857|0.5 46858|0.52778 46859|0.5 46860|0.51389 46861|0.5 46862|0.5 46863|0.5 46864|0.5 46865|0.73611 46866|0.5 46867|0.56944 46868|0.77778 46869|0.80556 46870|0.88889 46871|0.66667 46872|0.51389 46873|0.5 46874|0.55556 46875|0.5 46876|0.5 46877|0.5 46878|0.5 46879|0.5 46880|0.5 46881|0.5 46882|0.5 46883|0.5 46884|0.75 46885|0.51389 46886|0.52778 46887|0.61111 46888|0.77778 46889|0.63889 46890|0.77778 46891|0.77778 46892|0.90278 46893|0.83333 46894|0.58333 46895|0.54167 46896|0.75 46897|0.68056 46898|0.5 46899|0.51389 46900|0.66667 46901|0.5 46902|0.69444 46903|0.5 46904|0.77778 46905|0.5 46906|0.5 46907|0.47222 46908|0.5 46909|0.5 46910|0.79167 46911|0.51389 46912|0.55556 46913|0.55556 46914|0.77778 46915|0.90278 46916|0.58333 46917|0.63889 46918|0.66667 46919|0.69444 46920|0.63889 46921|0.55556 46922|0.5 46923|0.83333 46924|0.68056 46925|0.72222 46926|0.80556 46927|0.77778 46928|0.54167 46929|0.66667 46930|0.38889 46931|0.83333 46932|0.75 46933|0.88889 46934|0.5 46935|0.70833 46936|0.54167 46937|0.54167 46938|0.5 46939|0.5 46940|0.5 46941|0.5 46942|0.45833 46943|0.27778 46944|0.5 46945|0.51389 46946|0.375 46947|0.5 46948|0.72222 46949|0.5 46950|0.5 46951|0.40278 46952|0.51389 46953|0.54167 46954|0.66667 46955|0.70833 46956|0.40278 46957|0.5 46958|0.5 46959|0.5 46960|0.68056 46961|0.5 46962|0.5 46963|0.5 46964|0.5 46965|0.625 46966|0.5 46967|0.5 46968|0.51389 46969|0.63889 46970|0.63889 46971|0.77778 46972|0.83333 46973|0.5 46974|0.44444 46975|0.52778 46976|0.25 46977|0.45833 46978|0.54167 46979|0.63889 46980|0.80556 46981|0.83333 46982|0.80556 46983|0.70833 46984|0.5 46985|0.44444 46986|0.36111 46987|0.5 46988|0.68056 46989|0.76389 46990|0.5 46991|0.5 46992|0.81944 46993|0.54167 46994|0.68056 46995|0.5 46996|0.80556 46997|0.68056 46998|0.63889 46999|0.77778 47000|0.5 47001|0.47222 47002|0.70833 47003|0.5 47004|0.44444 47005|0.54167 47006|0.5 47007|0.77778 47008|0.5 47009|0.77778 47010|0.55556 47011|0.88889 47012|0.51389 47013|0.86111 47014|0.5 47015|0.63889 47016|0.83333 47017|0.69444 47018|0.5 47019|0.66667 47020|0.51389 47021|0.61111 47022|0.72222 47023|0.72222 47024|0.55556 47025|0.79167 47026|0.70833 47027|0.72222 47028|0.77778 47029|0.70833 47030|0.27778 47031|0.27778 47032|0.41667 47033|0.75 47034|0.68056 47035|0.84722 47036|0.83333 47037|0.55556 47038|0.58333 47039|0.84722 47040|0.59722 47041|0.73611 47042|0.72222 47043|0.79167 47044|0.54167 47045|0.48611 47046|0.44444 47047|0.55556 47048|0.56944 47049|0.72222 47050|0.69444 47051|0.84722 47052|0.91667 47053|0.625 47054|0.83333 47055|0.69444 47056|0.75 47057|0.80556 47058|0.77778 47059|0.097222 47060|0.22222 47061|0.30556 47062|0.54167 47063|0.59722 47064|0.83333 47065|0.80556 47066|0.69444 47067|0.51389 47068|0.81944 47069|0.79167 47070|0.81944 47071|0.83333 47072|0.80556 47073|0.69444 47074|0.88889 47075|0.80556 47076|0.83333 47077|0.83333 47078|0.80556 47079|0.83333 47080|0.97222 47081|0.38889 47082|0.40278 47083|0.79167 47084|0.83333 47085|0.25 47086|0.51389 47087|0.31944 47088|0.625 47089|0.66667 47090|0.88889 47091|0.70833 47092|0.77778 47093|0.625 47094|0.84722 47095|0.69444 47096|0.72222 47097|0.61111 47098|0.5 47099|0.61111 47100|0.56944 47101|0.54167 47102|0.70833 47103|0.58333 47104|0.625 47105|0.66667 47106|0.79167 47107|0.77778 47108|0.81944 47109|0.93056 47110|0.83333 47111|0.73611 47112|0.88889 47113|0.80556 47114|0.55556 47115|0.51389 47116|0.68056 47117|0.61111 47118|0.625 47119|0.65278 47120|0.66667 47121|0.75 47122|0.88889 47123|0.75 47124|0.83333 47125|0.70833 47126|0.47222 47127|0.76389 47128|0.55556 47129|0.93056 47130|0.5 47131|0.58333 47132|0.48611 47133|0.44444 47134|0.83333 47135|0.875 47136|0.5 47137|0.58333 47138|0.81944 47139|0.66667 47140|0.625 47141|0.48611 47142|0.36111 47143|0.47222 47144|0.54167 47145|0.5 47146|0.72222 47147|0.83333 47148|0.88889 47149|0.88889 47150|0.88889 47151|0.5 47152|0.45833 47153|0.44444 47154|0.5 47155|0.61111 47156|0.61111 47157|0.5 47158|0.38889 47159|0.44444 47160|0.77778 47161|0.81944 47162|0.88889 47163|0.5 47164|0.45833 47165|0.47222 47166|0.72222 47167|0.76389 47168|0.79167 47169|0.79167 47170|0.52778 47171|0.18056 47172|0.25 47173|0.41667 47174|0.65278 47175|0.72222 47176|0.70833 47177|0.88889 47178|0.76389 47179|0.38889 47180|0.31944 47181|0.29167 47182|0.36111 47183|0.69444 47184|0.59722 47185|0.88889 47186|0.5 47187|0.66667 47188|0.55556 47189|0.61111 47190|0.38889 47191|0.36111 47192|0.52778 47193|0.72222 47194|0.76389 47195|0.69444 47196|0.75 47197|0.81944 47198|0.83333 47199|0.65278 47200|0.73611 47201|0.66667 47202|0.72222 47203|1 47204|0.5 47205|0.81944 47206|0.875 47207|0.72222 47208|0.76389 47209|0.77778 47210|0.5 47211|0.79167 47212|0.5 47213|0.5 47214|0.59722 47215|0.72222 47216|0.69444 47217|0.5 47218|0.625 47219|0.72222 47220|0.66667 47221|0.5 47222|0.77778 47223|0.76389 47224|0.65278 47225|0.63889 47226|0.83333 47227|0.56944 47228|0.75 47229|0.77778 47230|0.66667 47231|0.83333 47232|0.79167 47233|0.58333 47234|0.55556 47235|0.66667 47236|0.61111 47237|0.77778 47238|0.66667 47239|0.68056 47240|0.22222 47241|0.26389 47242|0.36111 47243|0.58333 47244|0.43056 47245|0.38889 47246|0.83333 47247|0.5 47248|0.61111 47249|0.625 47250|0.88889 47251|0.66667 47252|0.80556 47253|0.69444 47254|0.66667 47255|1 47256|0.5 47257|0.44444 47258|0.69444 47259|0.55556 47260|0.55556 47261|0.69444 47262|0.77778 47263|0.66667 47264|0.5 47265|0.72222 47266|0.55556 47267|0.77778 47268|0.90278 47269|0.625 47270|0.625 47271|0.75 47272|0.70833 47273|0.73611 47274|0.55556 47275|0.80556 47276|0.5 47277|0.76389 47278|0.59722 47279|0.77778 47280|0.48611 47281|0.625 47282|0.61111 47283|0.75 47284|0.77778 47285|0.69444 47286|0.90278 47287|0.66667 47288|0.80556 47289|0.61111 47290|0.52778 47291|0.59722 47292|0.73611 47293|0.5 47294|0.76389 47295|0.75 47296|0.61111 47297|0.73611 47298|0.80556 47299|0.61111 47300|0.25 47301|0.47222 47302|0.55556 47303|0.69444 47304|0.90278 47305|0.61111 47306|0.66667 47307|0.83333 47308|0.80556 47309|0.75 47310|0.47222 47311|0.59722 47312|0.41667 47313|0.52778 47314|0.70833 47315|0.59722 47316|0.61111 47317|0.81944 47318|0.27778 47319|0.31944 47320|0.375 47321|0.625 47322|0.65278 47323|0.68056 47324|0.72222 47325|0.125 47326|0.19444 47327|0.31944 47328|0.625 47329|0.69444 47330|0.5 47331|0.55556 47332|0.5 47333|0.58333 47334|0.52778 47335|0.25 47336|0.5 47337|0.55556 47338|0.68056 47339|0.54167 47340|0.27778 47341|0.38889 47342|0.91667 47343|0.84722 47344|0.47222 47345|0.59722 47346|0.79167 47347|0.59722 47348|0.77778 47349|0.86111 47350|0.81944 47351|0.22222 47352|0.58333 47353|0.5 47354|0.86111 47355|0.54167 47356|0.61111 47357|0.5 47358|0.33333 47359|0.5 47360|0.81944 47361|0.68056 47362|0.76389 47363|0.52778 47364|0.77778 47365|0.83333 47366|0.86111 47367|0.88889 47368|0.77778 47369|0.45833 47370|0.61111 47371|0.76389 47372|0.625 47373|0.76389 47374|0.81944 47375|0.94444 47376|0.66667 47377|0.5 47378|0.63889 47379|0.5 47380|0.25 47381|0.22222 47382|0.38889 47383|0.63889 47384|0.84722 47385|0.5 47386|0.72222 47387|0.73611 47388|0.61111 47389|0.55556 47390|0.72222 47391|0.56944 47392|0.51389 47393|0.69444 47394|0.77778 47395|0.88889 47396|0.80556 47397|0.5 47398|0.79167 47399|0.5 47400|0.45833 47401|0.33333 47402|0.70833 47403|0.76389 47404|0.69444 47405|0.55556 47406|0.5 47407|0.5 47408|0.56944 47409|0.5 47410|0.61111 47411|0.56944 47412|0.84722 47413|0.68056 47414|0.5 47415|0.69444 47416|0.33333 47417|0.65278 47418|0.94444 47419|0.20833 47420|0.22222 47421|0.31944 47422|0.15278 47423|0.29167 47424|0.5 47425|0.75 47426|0.5 47427|0.5 47428|0.5 47429|0.55556 47430|0.69444 47431|0.44444 47432|0.5 47433|0.5 47434|0.5 47435|0.61111 47436|0.5 47437|0.56944 47438|0.69444 47439|0.51389 47440|0.5 47441|0.5 47442|0.22222 47443|0.5 47444|0.44444 47445|0.5 47446|0.5 47447|0.5 47448|0.5 47449|0.31944 47450|0.76389 47451|0.5 47452|0.22222 47453|0.81944 47454|0.61111 47455|0.95833 47456|0.90278 47457|0.81944 47458|0.5 47459|0.5 47460|0.55556 47461|0.55556 47462|0.66667 47463|0.51389 47464|0.5 47465|0.5 47466|0.65278 47467|0.5 47468|0.79167 47469|0.66667 47470|0.69444 47471|0.5 47472|0.5 47473|0.45833 47474|0.5 47475|0.68056 47476|0.51389 47477|0.5 47478|0.58333 47479|0.48611 47480|0.73611 47481|0.81944 47482|0.73611 47483|0.97222 47484|0.77778 47485|0.5 47486|0.5 47487|0.54167 47488|0.5 47489|0.48611 47490|0.61111 47491|0.68056 47492|0.75 47493|0.59722 47494|0.88889 47495|0.93056 47496|0.5 47497|0.48611 47498|0.5 47499|0.5 47500|0.5 47501|0.69444 47502|0.27778 47503|0.44444 47504|0.68056 47505|0.54167 47506|0.63889 47507|0.41667 47508|0.41667 47509|0.38889 47510|0.34722 47511|0.52778 47512|0.61111 47513|0.81944 47514|0.48611 47515|0.94444 47516|0.66667 47517|0.86111 47518|0.56944 47519|0.70833 47520|0.5 47521|0.5 47522|0.51389 47523|0.5 47524|0.52778 47525|0.45833 47526|0.81944 47527|0.61111 47528|0.58333 47529|0.76389 47530|0.66667 47531|0.83333 47532|0.77778 47533|0.5 47534|0.47222 47535|0.5 47536|0.52778 47537|0.5 47538|0.41667 47539|0.70833 47540|0.76389 47541|0.76389 47542|0.66667 47543|0.5 47544|0.5 47545|0.91667 47546|0.5 47547|0.5 47548|0.45833 47549|0.5 47550|0.5 47551|0.61111 47552|0.59722 47553|0.72222 47554|0.65278 47555|0.75 47556|0.88889 47557|0.5 47558|0.5 47559|0.5 47560|0.55556 47561|0.44444 47562|0.5 47563|0.56944 47564|0.29167 47565|0.38889 47566|0.59722 47567|0.84722 47568|0.44444 47569|0.55556 47570|0.68056 47571|0.56944 47572|0.5 47573|0.5 47574|0.88889 47575|0.72222 47576|0.80556 47577|0.72222 47578|0.80556 47579|0.5 47580|0.72222 47581|0.58333 47582|0.70833 47583|0.83333 47584|0.77778 47585|0.48611 47586|0.44444 47587|0.48611 47588|0.69444 47589|0.77778 47590|0.44444 47591|0.51389 47592|0.66667 47593|0.80556 47594|0.61111 47595|0.44444 47596|0.75 47597|0.77778 47598|0.72222 47599|0.59722 47600|0.69444 47601|0.56944 47602|0.26389 47603|0.72222 47604|0.45833 47605|0.61111 47606|0.63889 47607|0.375 47608|0.79167 47609|0.5 47610|0.44444 47611|0.36111 47612|0.72222 47613|0.41667 47614|0.70833 47615|0.43056 47616|0.88889 47617|0.27778 47618|0.66667 47619|0.55556 47620|0.43056 47621|0.44444 47622|0.70833 47623|0.66667 47624|0.75 47625|0.38889 47626|0.70833 47627|0.51389 47628|0.31944 47629|0.30556 47630|0.69444 47631|0.5 47632|0.51389 47633|0.44444 47634|0.5 47635|0.52778 47636|0.77778 47637|0.875 47638|0.70833 47639|0.80556 47640|0.76389 47641|0.61111 47642|0.5 47643|0.5 47644|0.51389 47645|0.80556 47646|0.68056 47647|0.5 47648|0.83333 47649|0.44444 47650|0.81944 47651|0.5 47652|0.72222 47653|0.65278 47654|0.75 47655|0.55556 47656|0.83333 47657|0.5 47658|0.5 47659|0.81944 47660|0.93056 47661|0.73611 47662|0.83333 47663|0.66667 47664|0.45833 47665|0.75 47666|0.79167 47667|0.55556 47668|0.5 47669|0.5 47670|0.5 47671|0.55556 47672|0.55556 47673|0.5 47674|0.34722 47675|0.5 47676|0.75 47677|0.68056 47678|0.86111 47679|0.75 47680|0.66667 47681|0.48611 47682|0.45833 47683|0.66667 47684|0.59722 47685|0.5 47686|0.69444 47687|0.81944 47688|0.81944 47689|0.5 47690|0.5 47691|0.59722 47692|0.88889 47693|0.65278 47694|1 47695|0.83333 47696|0.5 47697|0.5 47698|0.5 47699|0.5 47700|0.75 47701|0.43056 47702|0.33333 47703|0.59722 47704|0.5 47705|0.65278 47706|0.5 47707|0.5 47708|0.5 47709|0.5 47710|0.625 47711|0.73611 47712|0.66667 47713|0.68056 47714|0.75 47715|0.80556 47716|0.5 47717|0.5 47718|0.5 47719|0.72222 47720|0.875 47721|0.77778 47722|0.5 47723|0.5 47724|0.5 47725|0.5 47726|0.5 47727|0.61111 47728|0.30556 47729|0.27778 47730|0.27778 47731|0.34722 47732|0.83333 47733|0.81944 47734|0.23611 47735|0.41667 47736|0.16667 47737|0.30556 47738|0.38889 47739|0.47222 47740|0.70833 47741|0.48611 47742|0.51389 47743|0.55556 47744|0.5 47745|0.55556 47746|0.5 47747|0.875 47748|0.5 47749|0.5 47750|0.38889 47751|0.5 47752|0.5 47753|0.61111 47754|0.48611 47755|0.625 47756|0.625 47757|0.5 47758|0.51389 47759|0.58333 47760|0.43056 47761|0.5 47762|0.51389 47763|0.55556 47764|0.48611 47765|0.5 47766|0.55556 47767|0.83333 47768|0.94444 47769|0.51389 47770|0.5 47771|0.23611 47772|0.44444 47773|0.79167 47774|0.86111 47775|0.44444 47776|0.51389 47777|0.54167 47778|0.41667 47779|0.5 47780|0.5 47781|0.44444 47782|0.52778 47783|0.51389 47784|0.80556 47785|0.51389 47786|0.5 47787|0.5 47788|0.44444 47789|0.81944 47790|0.875 47791|0.5 47792|0.44444 47793|0.54167 47794|0.75 47795|0.5 47796|0.5 47797|0.55556 47798|0.52778 47799|0.45833 47800|0.5 47801|0.43056 47802|0.48611 47803|0.38889 47804|0.54167 47805|0.5 47806|0.65278 47807|0.54167 47808|0.5 47809|0.43056 47810|0.29167 47811|0.5 47812|0.29167 47813|0.069444 47814|0.63889 47815|0.84722 47816|0.76389 47817|0.66667 47818|0.38889 47819|0.51389 47820|0.84722 47821|0.52778 47822|0.5 47823|0.63889 47824|0.72222 47825|0.68056 47826|0.70833 47827|0.80556 47828|0.61111 47829|0.5 47830|0.30556 47831|0.33333 47832|0.625 47833|0.86111 47834|0.70833 47835|0.72222 47836|0.68056 47837|0.81944 47838|0.72222 47839|0.91667 47840|0.97222 47841|0.90278 47842|0.93056 47843|0.79167 47844|0.625 47845|0.68056 47846|0.5 47847|0.54167 47848|0.63889 47849|0.66667 47850|0.55556 47851|0.69444 47852|0.77778 47853|0.69444 47854|0.81944 47855|0.77778 47856|0.5 47857|0.61111 47858|0.65278 47859|0.69444 47860|0.77778 47861|0.5 47862|0.63889 47863|0.56944 47864|0.5 47865|0.65278 47866|0.26389 47867|0.36111 47868|0.51389 47869|0.5 47870|0.51389 47871|0.5 47872|0.73611 47873|0.5 47874|0.73611 47875|0.70833 47876|0.66667 47877|0.90278 47878|0.75 47879|0.5 47880|0.5 47881|0.625 47882|0.73611 47883|0.77778 47884|0.72222 47885|0.77778 47886|0.73611 47887|0.68056 47888|0.76389 47889|0.70833 47890|0.66667 47891|0.75 47892|0.59722 47893|0.88889 47894|0.86111 47895|0.51389 47896|0.55556 47897|0.56944 47898|0.51389 47899|0.51389 47900|0.51389 47901|0.68056 47902|0.22222 47903|0.26389 47904|0.5 47905|0.5 47906|0.5 47907|0.47222 47908|0.75 47909|0.63889 47910|0.83333 47911|0.72222 47912|0.63889 47913|0.38889 47914|0.5 47915|0.56944 47916|0.041667 47917|0.65278 47918|0.44444 47919|0.5 47920|0.73611 47921|0.61111 47922|0.58333 47923|0.5 47924|0.66667 47925|0.55556 47926|0.77778 47927|0.44444 47928|0.75 47929|0.66667 47930|0.63889 47931|0.44444 47932|0.625 47933|0.52778 47934|0.61111 47935|0.5 47936|0.61111 47937|0.52778 47938|0.38889 47939|0.55556 47940|0.56944 47941|0.5 47942|0.5 47943|0.58333 47944|0.61111 47945|0.625 47946|0.76389 47947|0.73611 47948|0.66667 47949|0.73611 47950|0.66667 47951|0.48611 47952|0.625 47953|0.44444 47954|0.41667 47955|0.5 47956|0.86111 47957|0.75 47958|0.5 47959|0.54167 47960|0.56944 47961|0.73611 47962|0.5 47963|0.66667 47964|0.66667 47965|0.59722 47966|0.63889 47967|0.51389 47968|0.77778 47969|0.77778 47970|0.5 47971|0.5 47972|0.44444 47973|0.5 47974|0.51389 47975|0.5 47976|0.40278 47977|0.55556 47978|0.72222 47979|0.5 47980|0.69444 47981|0.65278 47982|0.625 47983|0.45833 47984|0.5 47985|0.13889 47986|0.54167 47987|0.66667 47988|0.58333 47989|0.69444 47990|0.70833 47991|0.86111 47992|0.33333 47993|0.33333 47994|0.22222 47995|0.47222 47996|0.52778 47997|0.51389 47998|0.66667 47999|0.51389 48000|0.56944 48001|0.94444 48002|0.80556 48003|0.5 48004|0.80556 48005|0.79167 48006|0.55556 48007|0.54167 48008|0.70833 48009|0.79167 48010|0.86111 48011|0.80556 48012|0.73611 48013|0.75 48014|0.625 48015|0.84722 48016|0.80556 48017|0.69444 48018|0.61111 48019|0.5 48020|0.65278 48021|0.59722 48022|0.5 48023|0.51389 48024|0.5 48025|0.47222 48026|0.625 48027|0.59722 48028|0.51389 48029|0.55556 48030|0.5 48031|0.44444 48032|0.59722 48033|0.5 48034|0.5 48035|0.55556 48036|0.76389 48037|0.875 48038|0.81944 48039|0.83333 48040|0.34722 48041|0.63889 48042|0.77778 48043|0.52778 48044|0.83333 48045|0.73611 48046|0.80556 48047|0.55556 48048|0.75 48049|0.625 48050|0.55556 48051|0.66667 48052|0.77778 48053|0.59722 48054|0.75 48055|0.77778 48056|0.86111 48057|0.47222 48058|0.72222 48059|0.76389 48060|0.5 48061|0.54167 48062|0.5 48063|0.47222 48064|0.58333 48065|0.48611 48066|0.29167 48067|0.15278 48068|0.84722 48069|0.77778 48070|0.72222 48071|0.77778 48072|0.77778 48073|0.72222 48074|0.79167 48075|0.73611 48076|0.84722 48077|0.79167 48078|0.80556 48079|0.72222 48080|0.77778 48081|0.61111 48082|0.5 48083|0.80556 48084|0.84722 48085|0.88889 48086|0.90278 48087|0.76389 48088|0.61111 48089|0.5 48090|0.69444 48091|0.59722 48092|0.40278 48093|0.58333 48094|0.30556 48095|0.38889 48096|0.81944 48097|0.79167 48098|0.73611 48099|0.61111 48100|0.70833 48101|0.625 48102|0.61111 48103|0.79167 48104|0.55556 48105|0.61111 48106|0.66667 48107|0.55556 48108|0.80556 48109|0.72222 48110|0.875 48111|0.77778 48112|0.70833 48113|0.36111 48114|0.5 48115|0.5 48116|0.38889 48117|0.54167 48118|0.80556 48119|0.70833 48120|0.80556 48121|0.54167 48122|0.5 48123|0.66667 48124|0.65278 48125|0.77778 48126|0.79167 48127|0.55556 48128|0.72222 48129|0.44444 48130|0.94444 48131|0.5 48132|0.5 48133|0.44444 48134|0.625 48135|0.5 48136|0.56944 48137|0.5 48138|0.77778 48139|0.5 48140|0.84722 48141|0.5 48142|0.44444 48143|0.5 48144|0.43056 48145|0.61111 48146|0.5 48147|0.76389 48148|0.83333 48149|0.72222 48150|0.77778 48151|0.47222 48152|0.79167 48153|0.27778 48154|0.84722 48155|0.77778 48156|0.61111 48157|0.52778 48158|0.5 48159|0.43056 48160|0.65278 48161|0.5 48162|0.68056 48163|0.79167 48164|0.41667 48165|0.51389 48166|0.83333 48167|0.66667 48168|0.88889 48169|0.80556 48170|0.5 48171|0.94444 48172|0.875 48173|0.90278 48174|0.94444 48175|0.88889 48176|0.55556 48177|0.48611 48178|0.44444 48179|0.48611 48180|0.55556 48181|0.51389 48182|0.55556 48183|0.52778 48184|0.63889 48185|0.5 48186|0.51389 48187|0.72222 48188|0.38889 48189|0.70833 48190|0.84722 48191|0.61111 48192|0.5 48193|0.5 48194|0.41667 48195|0.83333 48196|0.90278 48197|0.5 48198|0.5 48199|0.55556 48200|0.5 48201|0.55556 48202|0.5 48203|0.69444 48204|0.77778 48205|0.61111 48206|0.22222 48207|0.5 48208|0.47222 48209|0.56944 48210|0.83333 48211|0.55556 48212|0.625 48213|0.73611 48214|0.70833 48215|0.5 48216|0.48611 48217|0.30556 48218|0.70833 48219|0.5 48220|0.38889 48221|0.69444 48222|0.83333 48223|0.76389 48224|0.56944 48225|0.54167 48226|0.58333 48227|0.66667 48228|0.51389 48229|0.875 48230|0.69444 48231|0.5 48232|0.44444 48233|0.43056 48234|0.27778 48235|0.55556 48236|0.45833 48237|0.58333 48238|0.43056 48239|0.70833 48240|0.84722 48241|0.84722 48242|0.69444 48243|0.625 48244|0.19444 48245|0.66667 48246|0.55556 48247|0.54167 48248|0.44444 48249|0.33333 48250|0.81944 48251|0.76389 48252|0.56944 48253|0.5 48254|0.63889 48255|0.55556 48256|0.51389 48257|0.5 48258|0.66667 48259|0.61111 48260|0.55556 48261|0.55556 48262|0.5 48263|0.5 48264|0.61111 48265|0.58333 48266|0.44444 48267|0.73611 48268|0.59722 48269|0.625 48270|0.70833 48271|0.33333 48272|0.61111 48273|0.52778 48274|0.5 48275|0.63889 48276|0.79167 48277|0.5 48278|0.77778 48279|0.66667 48280|0.61111 48281|0.625 48282|0.75 48283|0.55556 48284|0.56944 48285|0.56944 48286|0.81944 48287|0.58333 48288|0.68056 48289|0.77778 48290|0.61111 48291|0.79167 48292|0.79167 48293|0.88889 48294|0.79167 48295|0.61111 48296|0.68056 48297|0.88889 48298|0.47222 48299|0.66667 48300|0.47222 48301|0.48611 48302|0.61111 48303|0.44444 48304|0.5 48305|0.51389 48306|0.40278 48307|0.44444 48308|0.27778 48309|0.875 48310|0.75 48311|0.56944 48312|0.70833 48313|0.84722 48314|0.625 48315|0.80556 48316|0.70833 48317|0.625 48318|0.69444 48319|0.41667 48320|0.72222 48321|0.68056 48322|0.76389 48323|0.75 48324|0.81944 48325|0.26389 48326|0.5 48327|0.51389 48328|0.5 48329|0.88889 48330|0.83333 48331|0.55556 48332|0.72222 48333|0.79167 48334|0.76389 48335|0.73611 48336|0.5 48337|0.5 48338|0.69444 48339|0.43056 48340|0.77778 48341|0.79167 48342|0.84722 48343|0.77778 48344|0.86111 48345|0.77778 48346|0.75 48347|0.65278 48348|0.70833 48349|0.65278 48350|0.77778 48351|0.70833 48352|0.63889 48353|0.61111 48354|0.68056 48355|0.76389 48356|0.65278 48357|0.70833 48358|0.73611 48359|0.44444 48360|0.44444 48361|0.5 48362|0.5 48363|0.63889 48364|0.76389 48365|0.70833 48366|0.29167 48367|0.55556 48368|0.66667 48369|0.22222 48370|0.38889 48371|0.63889 48372|0.55556 48373|0.61111 48374|0.52778 48375|0.79167 48376|0.5 48377|0.5 48378|0.70833 48379|0.72222 48380|0.81944 48381|0.83333 48382|0.90278 48383|0.88889 48384|0.61111 48385|0.83333 48386|0.73611 48387|0.69444 48388|0.80556 48389|0.61111 48390|0.52778 48391|0.72222 48392|0.5 48393|0.83333 48394|0.55556 48395|0.5 48396|0.30556 48397|0.48611 48398|0.76389 48399|0.55556 48400|0.75 48401|0.5 48402|0.5 48403|0.52778 48404|0.56944 48405|0.44444 48406|0.27778 48407|0.625 48408|0.55556 48409|0.55556 48410|0.69444 48411|0.59722 48412|0.58333 48413|0.80556 48414|0.73611 48415|0.83333 48416|0.76389 48417|0.94444 48418|0.83333 48419|0.69444 48420|0.76389 48421|0.83333 48422|0.81944 48423|0.44444 48424|0.5 48425|0.5 48426|0.5 48427|0.51389 48428|0.72222 48429|0.93056 48430|0.88889 48431|0.80556 48432|0.66667 48433|0.91667 48434|0.79167 48435|0.81944 48436|0.88889 48437|0.86111 48438|0.72222 48439|0.72222 48440|0.76389 48441|0.55556 48442|0.5 48443|0.77778 48444|0.38889 48445|0.26389 48446|0.65278 48447|0.76389 48448|0.51389 48449|0.30556 48450|0.59722 48451|0.83333 48452|0.61111 48453|0.51389 48454|0.86111 48455|0.86111 48456|0.72222 48457|0.86111 48458|0.23611 48459|0.77778 48460|0.68056 48461|0.66667 48462|0.625 48463|0.27778 48464|0.375 48465|0.77778 48466|0.56944 48467|0.68056 48468|0.55556 48469|0.83333 48470|0.75 48471|0.47222 48472|0.77778 48473|0.56944 48474|0.66667 48475|0.55556 48476|0.54167 48477|0.54167 48478|0.43056 48479|0.43056 48480|0.58333 48481|0.55556 48482|0.5 48483|0.5 48484|0.51389 48485|0.73611 48486|0.66667 48487|0.83333 48488|0.77778 48489|0.66667 48490|0.86111 48491|0.63889 48492|0.625 48493|0.45833 48494|0.45833 48495|0.68056 48496|0.70833 48497|0.77778 48498|0.51389 48499|0.80556 48500|0.79167 48501|0.5 48502|0.52778 48503|0.5 48504|0.48611 48505|0.55556 48506|0.73611 48507|0.81944 48508|0.70833 48509|0.70833 48510|0.86111 48511|0.75 48512|0.84722 48513|0.66667 48514|0.76389 48515|0.77778 48516|0.83333 48517|0.38889 48518|0.77778 48519|0.44444 48520|0.83333 48521|0.73611 48522|0.68056 48523|0.83333 48524|0.44444 48525|0.40278 48526|0.44444 48527|0.33333 48528|0.5 48529|0.22222 48530|0.65278 48531|0.66667 48532|0.61111 48533|0.40278 48534|0.58333 48535|0.55556 48536|0.44444 48537|0.51389 48538|0.59722 48539|0.5 48540|0.63889 48541|0.51389 48542|0.44444 48543|0.5 48544|0.61111 48545|0.51389 48546|0.73611 48547|0.55556 48548|0.70833 48549|0.83333 48550|0.5 48551|0.55556 48552|0.61111 48553|0.83333 48554|0.55556 48555|0.44444 48556|0.5 48557|0.47222 48558|0.55556 48559|0.5 48560|0.5 48561|0.5 48562|0.44444 48563|0.66667 48564|0.73611 48565|0.5 48566|0.72222 48567|0.51389 48568|0.56944 48569|0.5 48570|0.55556 48571|0.5 48572|0.5 48573|0.72222 48574|0.5 48575|0.5 48576|0.47222 48577|0.44444 48578|0.54167 48579|0.55556 48580|0.61111 48581|0.75 48582|0.55556 48583|0.55556 48584|0.80556 48585|0.65278 48586|0.56944 48587|0.73611 48588|0.56944 48589|0.61111 48590|0.73611 48591|0.66667 48592|0.75 48593|0.27778 48594|0.22222 48595|0.5 48596|0.68056 48597|0.56944 48598|0.5 48599|0.55556 48600|0.5 48601|0.55556 48602|0.51389 48603|0.79167 48604|0.58333 48605|0.72222 48606|0.5 48607|0.59722 48608|0.51389 48609|0.45833 48610|0.61111 48611|0.66667 48612|0.54167 48613|0.73611 48614|0.54167 48615|0.51389 48616|0.68056 48617|0.66667 48618|0.63889 48619|0.66667 48620|0.54167 48621|0.68056 48622|0.69444 48623|0.77778 48624|0.5 48625|0.33333 48626|0.40278 48627|0.40278 48628|0.38889 48629|0.55556 48630|0.59722 48631|0.54167 48632|0.47222 48633|0.5 48634|0.5 48635|0.51389 48636|0.5 48637|0.73611 48638|0.83333 48639|0.75 48640|0.51389 48641|0.69444 48642|0.55556 48643|0.52778 48644|0.55556 48645|0.55556 48646|0.5 48647|0.5 48648|0.52778 48649|0.59722 48650|0.79167 48651|0.72222 48652|0.76389 48653|0.70833 48654|0.79167 48655|0.66667 48656|0.55556 48657|0.44444 48658|0.69444 48659|0.55556 48660|0.63889 48661|0.61111 48662|0.5 48663|0.5 48664|0.5 48665|0.5 48666|0.56944 48667|0.5 48668|0.55556 48669|0.54167 48670|0.58333 48671|0.65278 48672|0.72222 48673|0.5 48674|0.48611 48675|0.38889 48676|0.88889 48677|0.80556 48678|0.83333 48679|0.63889 48680|0.55556 48681|0.65278 48682|0.58333 48683|0.5 48684|0.75 48685|0.68056 48686|0.66667 48687|0.77778 48688|0.80556 48689|0.66667 48690|0.59722 48691|0.79167 48692|0.5 48693|0.5 48694|0.56944 48695|0.47222 48696|0.52778 48697|0.59722 48698|0.77778 48699|0.70833 48700|0.5 48701|0.65278 48702|0.58333 48703|0.61111 48704|0.5 48705|0.72222 48706|0.84722 48707|0.66667 48708|0.55556 48709|0.55556 48710|0.5 48711|0.51389 48712|0.44444 48713|0.5 48714|0.83333 48715|0.44444 48716|0.51389 48717|0.51389 48718|0.5 48719|0.29167 48720|0.625 48721|0.38889 48722|0.72222 48723|0.5 48724|0.51389 48725|0.40278 48726|0.77778 48727|0.54167 48728|0.5 48729|0.38889 48730|0.38889 48731|0.23611 48732|0.5 48733|0.44444 48734|0.5 48735|0.875 48736|0.80556 48737|0.61111 48738|0.5 48739|0.61111 48740|0.47222 48741|0.59722 48742|0.56944 48743|0.55556 48744|0.44444 48745|0.29167 48746|0.27778 48747|0.58333 48748|0.75 48749|0.56944 48750|0.5 48751|0.55556 48752|0.83333 48753|0.47222 48754|0.48611 48755|0.54167 48756|0.51389 48757|0.61111 48758|0.36111 48759|0.58333 48760|0.5 48761|0.5 48762|0.56944 48763|0.70833 48764|0.52778 48765|0.5 48766|0.43056 48767|0.59722 48768|0.5 48769|0.55556 48770|0.61111 48771|0.26389 48772|0.5 48773|0.52778 48774|0.55556 48775|0.51389 48776|0.55556 48777|0.86111 48778|0.63889 48779|0.5 48780|0.73611 48781|0.45833 48782|0.30556 48783|0.5 48784|0.20833 48785|0.19444 48786|0.55556 48787|0.68056 48788|0.52778 48789|0.73611 48790|0.5 48791|0.41667 48792|0.51389 48793|0.83333 48794|0.58333 48795|0.55556 48796|0.75 48797|0.66667 48798|0.47222 48799|0.55556 48800|0.77778 48801|0.77778 48802|0.52778 48803|0.5 48804|0.69444 48805|0.77778 48806|0.63889 48807|0.66667 48808|0.83333 48809|0.75 48810|0.33333 48811|0.55556 48812|0.52778 48813|0.61111 48814|0.27778 48815|0.5 48816|0.5 48817|0.36111 48818|0.38889 48819|0.61111 48820|0.625 48821|0.61111 48822|0.48611 48823|0.20833 48824|0.16667 48825|0.55556 48826|0.48611 48827|0.51389 48828|0.54167 48829|0.56944 48830|0.68056 48831|0.56944 48832|0.76389 48833|0.63889 48834|0.69444 48835|0.88889 48836|0.5 48837|0.625 48838|0.68056 48839|0.40278 48840|0.29167 48841|0.25 48842|0.76389 48843|0.90278 48844|0.51389 48845|0.69444 48846|0.55556 48847|0.81944 48848|0.54167 48849|0.875 48850|0.88889 48851|0.88889 48852|0.5 48853|0.40278 48854|0.70833 48855|0.68056 48856|0.77778 48857|0.875 48858|0.84722 48859|0.86111 48860|0.72222 48861|0.5 48862|0.70833 48863|0.68056 48864|0.38889 48865|0.63889 48866|0.47222 48867|0.61111 48868|0.59722 48869|0.5 48870|0.69444 48871|0.76389 48872|0.73611 48873|0.81944 48874|0.5 48875|0.61111 48876|0.65278 48877|0.66667 48878|0.38889 48879|0.44444 48880|0.54167 48881|0.5 48882|0.5 48883|0.80556 48884|0.72222 48885|0.95833 48886|0.79167 48887|0.80556 48888|0.61111 48889|0.51389 48890|0.93056 48891|0.69444 48892|0.79167 48893|0.69444 48894|0.66667 48895|0.59722 48896|0.54167 48897|0.55556 48898|0.5 48899|0.77778 48900|0.5 48901|0.43056 48902|0.61111 48903|0.75 48904|0.80556 48905|0.91667 48906|0.63889 48907|0.65278 48908|0.75 48909|0.55556 48910|0.55556 48911|0.59722 48912|0.47222 48913|0.51389 48914|0.41667 48915|0.44444 48916|0.40278 48917|0.56944 48918|0.69444 48919|0.83333 48920|0.75 48921|0.86111 48922|0.70833 48923|0.79167 48924|0.75 48925|0.51389 48926|0.73611 48927|0.70833 48928|0.79167 48929|0.73611 48930|0.72222 48931|0.79167 48932|0.52778 48933|0.84722 48934|0.69444 48935|0.5 48936|0.55556 48937|0.58333 48938|0.94444 48939|0.88889 48940|0.95833 48941|0.90278 48942|0.69444 48943|0.55556 48944|0.55556 48945|0.34722 48946|0.40278 48947|0.44444 48948|0.5 48949|0.88889 48950|0.88889 48951|0.93056 48952|0.65278 48953|0.66667 48954|0.81944 48955|0.47222 48956|0.58333 48957|0.72222 48958|0.80556 48959|0.63889 48960|0.75 48961|0.61111 48962|0.68056 48963|0.66667 48964|0.69444 48965|0.80556 48966|0.63889 48967|0.63889 48968|0.83333 48969|0.72222 48970|0.55556 48971|0.5 48972|0.5 48973|0.58333 48974|0.69444 48975|0.59722 48976|0.76389 48977|0.625 48978|0.625 48979|0.59722 48980|0.77778 48981|0.80556 48982|0.54167 48983|0.51389 48984|0.55556 48985|0.66667 48986|0.93056 48987|0.70833 48988|0.68056 48989|0.83333 48990|0.93056 48991|0.90278 48992|0.625 48993|0.41667 48994|0.86111 48995|0.59722 48996|0.27778 48997|0.65278 48998|0.19444 48999|0.48611 49000|0.36111 49001|0.61111 49002|0.55556 49003|0.76389 49004|0.5 49005|0.43056 49006|0.47222 49007|0.40278 49008|0.40278 49009|0.73611 49010|0.69444 49011|0.55556 49012|0.51389 49013|0.5 49014|0.47222 49015|0.375 49016|0.5 49017|0.5 49018|0.58333 49019|0.47222 49020|0.5 49021|0.38889 49022|0.5 49023|0.73611 49024|0.5 49025|0.5 49026|0.55556 49027|0.5 49028|0.56944 49029|0.5 49030|0.55556 49031|0.5 49032|0.61111 49033|0.51389 49034|0.75 49035|0.51389 49036|0.41667 49037|0.29167 49038|0.54167 49039|0.48611 49040|0.63889 49041|0.41667 49042|0.61111 49043|0.52778 49044|0.58333 49045|0.70833 49046|0.59722 49047|0.59722 49048|0.66667 49049|0.45833 49050|0.52778 49051|0.59722 49052|0.55556 49053|0.625 49054|0.45833 49055|0.55556 49056|0.5 49057|0.5 49058|0.33333 49059|0.77778 49060|0.51389 49061|0.5 49062|0.47222 49063|0.63889 49064|0.84722 49065|0.66667 49066|0.84722 49067|0.72222 49068|0.5 49069|0.55556 49070|0.63889 49071|0.51389 49072|0.44444 49073|0.44444 49074|0.63889 49075|0.56944 49076|0.33333 49077|0.51389 49078|0.63889 49079|0.5 49080|0.5 49081|0.54167 49082|0.41667 49083|0.33333 49084|0.5 49085|0.70833 49086|0.5 49087|0.5 49088|0.52778 49089|0.54167 49090|0.5 49091|0.29167 49092|0.5 49093|0.68056 49094|0.5 49095|0.5 49096|0.5 49097|0.5 49098|0.5 49099|0.69444 49100|0.58333 49101|0.55556 49102|0.66667 49103|0.48611 49104|0.63889 49105|0.72222 49106|0.72222 49107|0.63889 49108|0.58333 49109|0.5 49110|0.27778 49111|0.27778 49112|0.76389 49113|0.84722 49114|0.52778 49115|0.66667 49116|0.63889 49117|0.5 49118|0.63889 49119|0.5 49120|0.44444 49121|0.5 49122|0.5 49123|0.48611 49124|0.18056 49125|0.51389 49126|0.65278 49127|0.56944 49128|0.40278 49129|0.68056 49130|0.625 49131|0.72222 49132|0.5 49133|0.45833 49134|0.45833 49135|0.54167 49136|0.5 49137|0.80556 49138|0.73611 49139|0.72222 49140|0.66667 49141|0.69444 49142|0.72222 49143|0.86111 49144|0.81944 49145|0.70833 49146|0.90278 49147|0.83333 49148|0.70833 49149|0.5 49150|0.75 49151|0.76389 49152|0.44444 49153|0.33333 49154|0.45833 49155|0.68056 49156|0.625 49157|0.59722 49158|0.68056 49159|0.41667 49160|0.84722 49161|0.86111 49162|0.29167 49163|0.73611 49164|0.86111 49165|0.27778 49166|0.73611 49167|0.41667 49168|0.625 49169|0.56944 49170|0.34722 49171|0.43056 49172|0.16667 49173|0.58333 49174|0.43056 49175|0.36111 49176|0.88889 49177|0.83333 49178|0.65278 49179|0.63889 49180|0.5 49181|0.65278 49182|0.48611 49183|0.5 49184|0.59722 49185|0.5 49186|0.59722 49187|0.52778 49188|0.36111 49189|0.63889 49190|0.72222 49191|0.68056 49192|0.66667 49193|0.83333 49194|0.72222 49195|0.63889 49196|0.68056 49197|0.80556 49198|0.5 49199|0.63889 49200|0.66667 49201|0.55556 49202|0.70833 49203|0.77778 49204|0.56944 49205|0.65278 49206|0.44444 49207|0.5 49208|0.75 49209|0.69444 49210|0.625 49211|0.33333 49212|0.77778 49213|0.56944 49214|0.38889 49215|0.44444 49216|0.5 49217|0.70833 49218|0.5 49219|0.5 49220|0.5 49221|0.5 49222|0.66667 49223|0.81944 49224|0.73611 49225|0.5 49226|0.51389 49227|0.76389 49228|0.19444 49229|0.27778 49230|0.63889 49231|0.51389 49232|0.73611 49233|0.59722 49234|0.73611 49235|0.61111 49236|0.69444 49237|0.5 49238|0.51389 49239|0.5 49240|0.5 49241|0.55556 49242|0.55556 49243|0.72222 49244|0.55556 49245|0.5 49246|0.5 49247|0.77778 49248|0.73611 49249|0.56944 49250|0.77778 49251|0.63889 49252|0.38889 49253|0.66667 49254|0.69444 49255|0.5 49256|0.5 49257|0.5 49258|0.72222 49259|0.83333 49260|0.69444 49261|0.66667 49262|0.44444 49263|0.097222 49264|0.51389 49265|0.88889 49266|0.75 49267|0.5 49268|0.73611 49269|0.86111 49270|0.86111 49271|0.5 49272|0.66667 49273|0.66667 49274|0.79167 49275|0.63889 49276|0.61111 49277|0.75 49278|0.69444 49279|0.68056 49280|0.70833 49281|0.48611 49282|0.43056 49283|0.5 49284|0.81944 49285|0.51389 49286|0.66667 49287|0.5 49288|0.5 49289|0.55556 49290|0.70833 49291|0.51389 49292|0.5 49293|0.63889 49294|0.48611 49295|0.63889 49296|0.44444 49297|0.5 49298|0.5 49299|0.5 49300|0.51389 49301|0.29167 49302|0.625 49303|0.83333 49304|0.79167 49305|0.83333 49306|0.76389 49307|0.54167 49308|0.51389 49309|0.5 49310|0.66667 49311|0.5 49312|0.5 49313|0.77778 49314|0.27778 49315|0.51389 49316|0.59722 49317|0.56944 49318|0.59722 49319|0.61111 49320|0.59722 49321|0.66667 49322|0.44444 49323|0.34722 49324|0.59722 49325|0.5 49326|0.65278 49327|0.81944 49328|0.45833 49329|0.54167 49330|0.38889 49331|0.5 49332|0.38889 49333|0.79167 49334|0.5 49335|0.33333 49336|0.5 49337|0.47222 49338|0.5 49339|0.5 49340|0.55556 49341|0.5 49342|0.55556 49343|0.5 49344|0.625 49345|0.55556 49346|0.55556 49347|0.5 49348|0.72222 49349|0.41667 49350|0.55556 49351|0.86111 49352|0.81944 49353|0.61111 49354|0.5 49355|0.33333 49356|0.52778 49357|0.5 49358|0.61111 49359|0.61111 49360|0.80556 49361|0.72222 49362|0.86111 49363|0.80556 49364|0.48611 49365|0.66667 49366|0.5 49367|0.5 49368|0.5 49369|0.5 49370|0.34722 49371|0.5 49372|0.58333 49373|0.55556 49374|0.56944 49375|0.44444 49376|0.51389 49377|0.51389 49378|0.72222 49379|0.55556 49380|0.81944 49381|0.51389 49382|0.68056 49383|0.61111 49384|0.56944 49385|0.55556 49386|0.72222 49387|0.40278 49388|0.61111 49389|0.55556 49390|0.5 49391|0.58333 49392|0.44444 49393|0.52778 49394|0.55556 49395|0.56944 49396|0.5 49397|0.31944 49398|0.61111 49399|0.59722 49400|0.36111 49401|0.44444 49402|0.5 49403|0.52778 49404|0.34722 49405|0.55556 49406|0.55556 49407|0.61111 49408|0.73611 49409|0.54167 49410|0.40278 49411|0.61111 49412|0.5 49413|0.51389 49414|0.51389 49415|0.41667 49416|0.44444 49417|0.58333 49418|0.55556 49419|0.45833 49420|0.61111 49421|0.44444 49422|0.72222 49423|0.5 49424|0.5 49425|0.52778 49426|0.66667 49427|0.61111 49428|0.55556 49429|0.70833 49430|0.875 49431|0.52778 49432|0.51389 49433|0.61111 49434|0.47222 49435|0.5 49436|0.875 49437|0.75 49438|0.54167 49439|0.44444 49440|0.5 49441|0.81944 49442|0.43056 49443|0.70833 49444|0.77778 49445|0.73611 49446|0.52778 49447|0.40278 49448|0.43056 49449|0.45833 49450|0.27778 49451|0.22222 49452|0.19444 49453|0.52778 49454|0.44444 49455|0.69444 49456|0.5 49457|0.51389 49458|0.34722 49459|0.16667 49460|0.20833 49461|0.31944 49462|0.38889 49463|0.86111 49464|0.55556 49465|0.80556 49466|0.47222 49467|0.47222 49468|0.38889 49469|0.47222 49470|0.5 49471|0.43056 49472|0.47222 49473|0.44444 49474|0.68056 49475|0.52778 49476|0.625 49477|0.5 49478|0.55556 49479|0.16667 49480|0.80556 49481|0.5 49482|0.51389 49483|0.45833 49484|0.5 49485|0.45833 49486|0.5 49487|0.5 49488|0.56944 49489|0.52778 49490|0.5 49491|0.48611 49492|0.38889 49493|0.5 49494|0.40278 49495|0.375 49496|0.77778 49497|0.625 49498|0.375 49499|0.625 49500|0.75 49501|0.65278 49502|0.88889 49503|0.77778 49504|0.55556 49505|0.44444 49506|0.41667 49507|0.75 49508|0.61111 49509|0.65278 49510|0.77778 49511|0.44444 49512|0.79167 49513|0.45833 49514|0.20833 49515|0.55556 49516|0.75 49517|0.44444 49518|0.29167 49519|0.61111 49520|0.73611 49521|0.77778 49522|0.84722 49523|0.44444 49524|0.44444 49525|0.875 49526|0.70833 49527|0.68056 49528|0.81944 49529|0.61111 49530|0.5 49531|0.68056 49532|0.79167 49533|0.81944 49534|0.55556 49535|0.36111 49536|0.38889 49537|0.40278 49538|0.44444 49539|0.36111 49540|0.79167 49541|0.69444 49542|0.77778 49543|0.33333 49544|0.55556 49545|0.56944 49546|0.5 49547|0.83333 49548|0.65278 49549|0.73611 49550|0.375 49551|0.54167 49552|0.59722 49553|0.58333 49554|0.5 49555|0.5 49556|0.81944 49557|0.5 49558|0.52778 49559|0.625 49560|0.55556 49561|0.5 49562|0.5 49563|0.16667 49564|0.40278 49565|0.5 49566|0.44444 49567|0.65278 49568|0.5 49569|0.47222 49570|0.84722 49571|0.76389 49572|0.55556 49573|0.70833 49574|0.77778 49575|0.90278 49576|0.76389 49577|0.56944 49578|0.55556 49579|0.38889 49580|0.70833 49581|0.5 49582|0.51389 49583|0.58333 49584|0.61111 49585|0.61111 49586|0.69444 49587|0.51389 49588|0.48611 49589|0.66667 49590|0.44444 49591|0.5 49592|0.77778 49593|0.79167 49594|0.65278 49595|0.22222 49596|0.44444 49597|0.44444 49598|0.33333 49599|0.48611 49600|0.47222 49601|0.5 49602|0.44444 49603|0.47222 49604|0.36111 49605|0.5 49606|0.29167 49607|0.55556 49608|0.5 49609|0.5 49610|0.80556 49611|0.58333 49612|0.56944 49613|0.61111 49614|0.51389 49615|0.51389 49616|0.5 49617|0.83333 49618|0.93056 49619|0.27778 49620|0.5 49621|0.44444 49622|0.30556 49623|0.5 49624|0.65278 49625|0.61111 49626|0.69444 49627|0.65278 49628|0.84722 49629|0.94444 49630|0.51389 49631|0.66667 49632|0.5 49633|0.25 49634|0.22222 49635|0.23611 49636|0.48611 49637|0.76389 49638|0.51389 49639|0.61111 49640|0.5 49641|0.59722 49642|0.55556 49643|0.55556 49644|0.63889 49645|0.66667 49646|0.5 49647|0.75 49648|0.69444 49649|0.43056 49650|0.61111 49651|0.58333 49652|0.40278 49653|0.59722 49654|0.41667 49655|0.44444 49656|0.31944 49657|0.5 49658|0.40278 49659|0.66667 49660|0.63889 49661|0.76389 49662|0.5 49663|0.72222 49664|0.59722 49665|0.65278 49666|0.5 49667|0.54167 49668|0.47222 49669|0.44444 49670|0.61111 49671|0.66667 49672|0.63889 49673|0.5 49674|0.75 49675|0.80556 49676|0.79167 49677|0.70833 49678|0.63889 49679|0.66667 49680|0.77778 49681|0.70833 49682|0.88889 49683|0.58333 49684|0.83333 49685|0.68056 49686|0.93056 49687|0.69444 49688|0.56944 49689|0.52778 49690|0.72222 49691|0.38889 49692|0.34722 49693|0.69444 49694|0.66667 49695|0.63889 49696|0.55556 49697|0.77778 49698|0.52778 49699|0.83333 49700|0.54167 49701|0.52778 49702|0.59722 49703|0.58333 49704|0.63889 49705|0.5 49706|0.63889 49707|0.51389 49708|0.63889 49709|0.5 49710|0.5 49711|0.5 49712|0.79167 49713|0.375 49714|0.55556 49715|0.33333 49716|0.5 49717|0.61111 49718|0.55556 49719|0.5 49720|0.27778 49721|0.55556 49722|0.23611 49723|0.22222 49724|0.55556 49725|0.52778 49726|0.75 49727|0.83333 49728|0.55556 49729|0.375 49730|0.56944 49731|0.63889 49732|0.625 49733|0.625 49734|0.56944 49735|0.5 49736|0.65278 49737|0.72222 49738|0.58333 49739|0.16667 49740|0.33333 49741|0.625 49742|0.36111 49743|0.47222 49744|0.52778 49745|0.45833 49746|0.375 49747|0.27778 49748|0.51389 49749|0.5 49750|0.5 49751|0.5 49752|0.61111 49753|0.5 49754|0.5 49755|0.38889 49756|0.31944 49757|0.22222 49758|0.375 49759|0.55556 49760|0.52778 49761|0.55556 49762|0.79167 49763|0.47222 49764|0.79167 49765|0.43056 49766|0.38889 49767|0.43056 49768|0.5 49769|0.55556 49770|0.56944 49771|0.5 49772|0.5 49773|0.38889 49774|0.54167 49775|0.54167 49776|0.625 49777|0.44444 49778|0.45833 49779|0.5 49780|0.51389 49781|0.33333 49782|0.44444 49783|0.5 49784|0.5 49785|0.77778 49786|0.5 49787|0.5 49788|0.45833 49789|0.55556 49790|0.55556 49791|0.65278 49792|0.52778 49793|0.51389 49794|0.77778 49795|0.48611 49796|0.36111 49797|0.45833 49798|0.5 49799|0.40278 49800|0.45833 49801|0.5 49802|0.56944 49803|0.54167 49804|0.5 49805|0.55556 49806|0.61111 49807|0.41667 49808|0.55556 49809|0.5 49810|0.5 49811|0.77778 49812|0.72222 49813|0.51389 49814|0.55556 49815|0.38889 49816|0.51389 49817|0.94444 49818|0.51389 49819|0.68056 49820|0.5 49821|0.65278 49822|0.875 49823|0.81944 49824|0.88889 49825|0.73611 49826|0.75 49827|0.91667 49828|0.93056 49829|0.79167 49830|0.625 49831|0.80556 49832|0.875 49833|0.5 49834|0.5 49835|0.80556 49836|0.66667 49837|0.77778 49838|0.83333 49839|0.70833 49840|0.5 49841|0.55556 49842|0.5 49843|0.47222 49844|0.55556 49845|0.5 49846|0.58333 49847|0.77778 49848|0.91667 49849|0.80556 49850|0.77778 49851|0.625 49852|0.5 49853|0.73611 49854|0.88889 49855|0.79167 49856|0.5 49857|0.66667 49858|0.5 49859|0.90278 49860|0.72222 49861|0.5 49862|0.5 49863|0.5 49864|0.51389 49865|0.44444 49866|0.41667 49867|0.34722 49868|0.44444 49869|0.33333 49870|0.5 49871|0.80556 49872|0.5 49873|0.5 49874|0.38889 49875|0.38889 49876|0.5 49877|0.70833 49878|0.68056 49879|0.5 49880|0.54167 49881|0.55556 49882|0.48611 49883|0.66667 49884|0.56944 49885|0.59722 49886|0.54167 49887|0.52778 49888|0.65278 49889|0.5 49890|0.52778 49891|0.5 49892|0.52778 49893|0.33333 49894|0.5 49895|0.44444 49896|0.47222 49897|0.63889 49898|0.66667 49899|0.76389 49900|0.66667 49901|0.80556 49902|0.5 49903|0.73611 49904|0.61111 49905|0.70833 49906|0.72222 49907|0.5 49908|0.77778 49909|0.65278 49910|0.68056 49911|0.72222 49912|0.63889 49913|0.47222 49914|0.47222 49915|0.40278 49916|0.88889 49917|0.75 49918|0.70833 49919|0.51389 49920|0.375 49921|0.51389 49922|0.5 49923|0.5 49924|0.5 49925|0.5 49926|0.83333 49927|0.5 49928|0.5 49929|0.44444 49930|0.51389 49931|0.51389 49932|0.41667 49933|0.5 49934|0.5 49935|0.72222 49936|0.72222 49937|0.69444 49938|0.73611 49939|0.72222 49940|0.5 49941|0.77778 49942|0.51389 49943|0.55556 49944|0.51389 49945|0.5 49946|0.5 49947|0.58333 49948|0.38889 49949|0.5 49950|0.48611 49951|0.5 49952|0.5 49953|0.5 49954|0.44444 49955|0.59722 49956|0.5 49957|0.66667 49958|0.76389 49959|0.5 49960|0.55556 49961|0.47222 49962|0.33333 49963|0.5 49964|0.77778 49965|0.33333 49966|0.625 49967|0.5 49968|0.51389 49969|0.5 49970|0.5 49971|0.86111 49972|0.40278 49973|0.48611 49974|0.66667 49975|0.625 49976|0.375 49977|0.51389 49978|0.19444 49979|0.66667 49980|0.80556 49981|0.5 49982|0.5 49983|0.51389 49984|0.5 49985|0.38889 49986|0.5 49987|0.73611 49988|0.5 49989|0.55556 49990|0.5 49991|0.61111 49992|0.56944 49993|0.68056 49994|0.51389 49995|0.55556 49996|0.5 49997|0.5 49998|0.375 49999|0.66667 50000|0.5 50001|0.625 50002|0.5 50003|0.58333 50004|0.84722 50005|0.625 50006|0.83333 50007|0.61111 50008|0.77778 50009|0.5 50010|0.56944 50011|0.59722 50012|0.81944 50013|0.41667 50014|0.61111 50015|0.61111 50016|0.47222 50017|0.56944 50018|0.63889 50019|0.55556 50020|0.34722 50021|0.75 50022|0.70833 50023|0.45833 50024|0.625 50025|0.51389 50026|0.625 50027|0.34722 50028|0.61111 50029|0.55556 50030|0.5 50031|0.72222 50032|0.66667 50033|0.75 50034|0.69444 50035|0.68056 50036|0.77778 50037|0.83333 50038|0.90278 50039|0.80556 50040|0.70833 50041|0.77778 50042|0.72222 50043|0.79167 50044|0.91667 50045|0.51389 50046|0.58333 50047|0.5 50048|0.61111 50049|0.625 50050|0.76389 50051|0.55556 50052|0.73611 50053|0.63889 50054|0.61111 50055|0.56944 50056|0.47222 50057|0.76389 50058|0.59722 50059|0.69444 50060|0.81944 50061|0.51389 50062|0.51389 50063|0.5 50064|0.41667 50065|0.5 50066|0.72222 50067|0.5 50068|0.51389 50069|0.5 50070|0.83333 50071|0.55556 50072|0.5 50073|0.51389 50074|0.52778 50075|0.5 50076|0.61111 50077|0.91667 50078|0.51389 50079|0.36111 50080|0.40278 50081|0.27778 50082|0.5 50083|0.43056 50084|0.15278 50085|0.23611 50086|0.83333 50087|0.58333 50088|0.66667 50089|0.63889 50090|0.65278 50091|0.77778 50092|0.73611 50093|0.56944 50094|0.5 50095|0.51389 50096|0.75 50097|0.5 50098|0.58333 50099|0.5 50100|0.5 50101|0.5 50102|0.625 50103|0.61111 50104|0.5 50105|0.44444 50106|0.5 50107|0.79167 50108|0.68056 50109|0.41667 50110|0.5 50111|0.38889 50112|0.43056 50113|0.5 50114|0.41667 50115|0.65278 50116|0.5 50117|0.55556 50118|0.5 50119|0.33333 50120|0.59722 50121|0.48611 50122|0.66667 50123|0.5 50124|0.77778 50125|0.48611 50126|0.54167 50127|0.55556 50128|0.43056 50129|0.54167 50130|0.44444 50131|0.5 50132|0.76389 50133|0.76389 50134|0.68056 50135|0.72222 50136|0.66667 50137|0.83333 50138|0.73611 50139|0.83333 50140|0.72222 50141|0.86111 50142|0.5 50143|0.36111 50144|0.19444 50145|0.40278 50146|0.59722 50147|0.5 50148|0.5 50149|0.55556 50150|0.5 50151|0.38889 50152|0.5 50153|0.5 50154|0.5 50155|0.66667 50156|0.5 50157|0.36111 50158|0.41667 50159|0.66667 50160|0.52778 50161|0.5 50162|0.5 50163|0.77778 50164|0.80556 50165|0.41667 50166|0.55556 50167|0.75 50168|0.5 50169|0.61111 50170|0.66667 50171|0.30556 50172|0.5 50173|0.41667 50174|0.69444 50175|0.80556 50176|0.68056 50177|0.5 50178|0.5 50179|0.5 50180|0.65278 50181|0.55556 50182|0.5 50183|0.5 50184|0.5 50185|0.59722 50186|0.5 50187|0.5 50188|0.5 50189|0.51389 50190|0.51389 50191|0.5 50192|0.55556 50193|0.58333 50194|0.55556 50195|0.51389 50196|0.61111 50197|0.65278 50198|0.625 50199|0.44444 50200|0.44444 50201|0.38889 50202|0.55556 50203|0.33333 50204|0.69444 50205|0.5 50206|0.5 50207|0.75 50208|0.625 50209|0.76389 50210|0.84722 50211|0.72222 50212|0.69444 50213|0.36111 50214|0.44444 50215|0.5 50216|0.5 50217|0.44444 50218|0.41667 50219|0.61111 50220|0.58333 50221|0.63889 50222|0.68056 50223|0.47222 50224|0.44444 50225|0.5 50226|0.5 50227|0.44444 50228|0.41667 50229|0.5 50230|0.61111 50231|0.54167 50232|0.625 50233|0.63889 50234|0.47222 50235|0.5 50236|0.48611 50237|0.38889 50238|0.59722 50239|0.75 50240|0.63889 50241|0.72222 50242|0.69444 50243|0.61111 50244|0.61111 50245|0.36111 50246|0.76389 50247|0.47222 50248|0.625 50249|0.5 50250|0.81944 50251|0.5 50252|0.59722 50253|0.75 50254|0.45833 50255|0.61111 50256|0.68056 50257|0.56944 50258|0.44444 50259|0.5 50260|0.55556 50261|0.51389 50262|0.76389 50263|0.76389 50264|0.77778 50265|0.55556 50266|0.61111 50267|0.54167 50268|0.5 50269|0.55556 50270|0.65278 50271|0.5 50272|0.61111 50273|0.54167 50274|0.83333 50275|0.66667 50276|0.94444 50277|0.79167 50278|0.81944 50279|0.63889 50280|0.54167 50281|0.61111 50282|0.73611 50283|0.73611 50284|0.5 50285|0.41667 50286|0.56944 50287|0.5 50288|0.44444 50289|0.61111 50290|0.72222 50291|0.73611 50292|0.38889 50293|0.69444 50294|0.61111 50295|0.55556 50296|0.5 50297|0.72222 50298|0.69444 50299|0.55556 50300|0.55556 50301|0.55556 50302|0.61111 50303|0.61111 50304|0.75 50305|0.65278 50306|0.73611 50307|0.55556 50308|0.72222 50309|0.70833 50310|0.5 50311|0.58333 50312|0.5 50313|0.72222 50314|0.76389 50315|0.51389 50316|0.51389 50317|0.55556 50318|0.73611 50319|0.81944 50320|0.69444 50321|0.63889 50322|0.58333 50323|0.81944 50324|0.70833 50325|0.86111 50326|0.83333 50327|0.65278 50328|0.80556 50329|0.70833 50330|0.77778 50331|0.77778 50332|0.83333 50333|0.63889 50334|0.68056 50335|0.61111 50336|0.65278 50337|0.25 50338|0.5 50339|0.41667 50340|0.66667 50341|0.79167 50342|0.63889 50343|0.73611 50344|0.63889 50345|0.65278 50346|0.58333 50347|0.59722 50348|0.58333 50349|0.51389 50350|0.38889 50351|0.25 50352|0.56944 50353|0.5 50354|0.66667 50355|0.69444 50356|0.54167 50357|0.38889 50358|0.5 50359|0.61111 50360|0.5 50361|0.5 50362|0.44444 50363|0.38889 50364|0.5 50365|0.625 50366|0.47222 50367|0.43056 50368|0.5 50369|0.47222 50370|0.51389 50371|0.5 50372|0.52778 50373|0.69444 50374|0.80556 50375|0.73611 50376|0.77778 50377|0.83333 50378|0.36111 50379|0.33333 50380|0.40278 50381|0.38889 50382|0.5 50383|0.375 50384|0.5 50385|0.45833 50386|0.5 50387|0.5 50388|0.52778 50389|0.90278 50390|0.77778 50391|0.63889 50392|0.72222 50393|0.59722 50394|0.43056 50395|0.47222 50396|0.55556 50397|0.61111 50398|0.63889 50399|0.43056 50400|0.56944 50401|0.55556 50402|0.33333 50403|0.44444 50404|0.55556 50405|0.18056 50406|0.5 50407|0.51389 50408|0.5 50409|0.86111 50410|0.29167 50411|0.5 50412|0.45833 50413|0.5 50414|0.33333 50415|0.55556 50416|0.72222 50417|0.51389 50418|0.5 50419|0.625 50420|0.84722 50421|0.5 50422|0.54167 50423|0.73611 50424|0.76389 50425|0.625 50426|0.65278 50427|0.55556 50428|0.44444 50429|0.56944 50430|0.22222 50431|0.5 50432|0.54167 50433|0.61111 50434|0.44444 50435|0.44444 50436|0.83333 50437|0.52778 50438|0.30556 50439|0.375 50440|0.55556 50441|0.63889 50442|0.097222 50443|0.31944 50444|0.16667 50445|0.77778 50446|0.44444 50447|0.36111 50448|0.44444 50449|0.51389 50450|0.55556 50451|0.44444 50452|0.52778 50453|0.77778 50454|0.875 50455|0.52778 50456|0.56944 50457|0.51389 50458|0.55556 50459|0.72222 50460|0.66667 50461|0.875 50462|0.66667 50463|0.68056 50464|0.625 50465|0.77778 50466|0.83333 50467|0.69444 50468|0.61111 50469|0.77778 50470|0.43056 50471|0.5 50472|0.15278 50473|0.5 50474|0.22222 50475|0.36111 50476|0.16667 50477|0.5 50478|0.5 50479|0.5 50480|0.5 50481|0.51389 50482|0.45833 50483|0.43056 50484|0.43056 50485|0.41667 50486|0.44444 50487|0.44444 50488|0.59722 50489|0.25 50490|0.33333 50491|0.41667 50492|0.41667 50493|0.5 50494|0.625 50495|0.72222 50496|0.75 50497|0.81944 50498|0.84722 50499|0.44444 50500|0.5 50501|0.54167 50502|0.5 50503|0.5 50504|0.48611 50505|0.38889 50506|0.61111 50507|0.5 50508|0.5 50509|0.70833 50510|0.5 50511|0.5 50512|0.48611 50513|0.47222 50514|0.55556 50515|0.55556 50516|0.63889 50517|0.72222 50518|0.5 50519|0.68056 50520|0.18056 50521|0.54167 50522|0.47222 50523|0.5 50524|0.33333 50525|0.68056 50526|0.68056 50527|0.5 50528|0.625 50529|0.66667 50530|0.375 50531|0.61111 50532|0.81944 50533|0.55556 50534|0.625 50535|0.38889 50536|0.20833 50537|0.20833 50538|0.29167 50539|0.5 50540|0.73611 50541|0.72222 50542|0.5 50543|0.69444 50544|0.63889 50545|0.70833 50546|0.625 50547|0.61111 50548|0.625 50549|0.72222 50550|0.77778 50551|0.84722 50552|0.5 50553|0.52778 50554|0.5 50555|0.375 50556|0.22222 50557|0.22222 50558|0.25 50559|0.5 50560|0.52778 50561|0.33333 50562|0.5 50563|0.5 50564|0.33333 50565|0.44444 50566|0.5 50567|0.72222 50568|0.45833 50569|0.59722 50570|0.52778 50571|0.13889 50572|0.48611 50573|0.45833 50574|0.48611 50575|0.51389 50576|0.83333 50577|0.77778 50578|0.41667 50579|0.44444 50580|0.54167 50581|0.59722 50582|0.33333 50583|0.36111 50584|0.44444 50585|0.69444 50586|0.61111 50587|0.5 50588|0.55556 50589|0.51389 50590|0.5 50591|0.5 50592|0.66667 50593|0.73611 50594|0.63889 50595|0.40278 50596|0.45833 50597|0.33333 50598|0.5 50599|0.68056 50600|0.58333 50601|0.5 50602|0.52778 50603|0.47222 50604|0.5 50605|0.61111 50606|0.69444 50607|0.80556 50608|0.83333 50609|0.52778 50610|0.70833 50611|0.84722 50612|0.27778 50613|0.38889 50614|0.76389 50615|0.5 50616|0.51389 50617|0.5 50618|0.59722 50619|0.58333 50620|0.55556 50621|0.5 50622|0.45833 50623|0.72222 50624|0.76389 50625|0.51389 50626|0.61111 50627|0.51389 50628|0.5 50629|0.38889 50630|0.44444 50631|0.5 50632|0.72222 50633|0.84722 50634|0.75 50635|0.93056 50636|0.38889 50637|0.47222 50638|0.52778 50639|0.34722 50640|0.30556 50641|0.44444 50642|0.47222 50643|0.625 50644|0.65278 50645|0.77778 50646|0.55556 50647|0.51389 50648|0.70833 50649|0.77778 50650|0.81944 50651|0.5 50652|0.55556 50653|0.5 50654|0.5 50655|0.34722 50656|0.88889 50657|0.5 50658|0.44444 50659|0.68056 50660|0.27778 50661|0.47222 50662|0.47222 50663|0.59722 50664|0.77778 50665|0.66667 50666|0.48611 50667|0.36111 50668|0.70833 50669|0.5 50670|0.43056 50671|0.5 50672|0.5 50673|0.27778 50674|0.44444 50675|0.33333 50676|0.54167 50677|0.70833 50678|0.22222 50679|0.18056 50680|0.40278 50681|0.63889 50682|0.5 50683|0.44444 50684|0.44444 50685|0.27778 50686|0.22222 50687|0.33333 50688|0.59722 50689|0.47222 50690|0.52778 50691|0.68056 50692|0.63889 50693|0.59722 50694|0.44444 50695|0.23611 50696|0.36111 50697|0.58333 50698|0.68056 50699|0.61111 50700|0.5 50701|0.51389 50702|0.69444 50703|0.55556 50704|0.73611 50705|0.81944 50706|0.80556 50707|0.77778 50708|0.5 50709|0.70833 50710|0.55556 50711|0.80556 50712|0.59722 50713|0.68056 50714|0.44444 50715|0.54167 50716|0.65278 50717|0.5 50718|0.69444 50719|0.48611 50720|0.34722 50721|0.40278 50722|0.79167 50723|0.86111 50724|0.80556 50725|0.76389 50726|0.86111 50727|0.77778 50728|0.81944 50729|0.75 50730|0.77778 50731|0.73611 50732|0.77778 50733|0.76389 50734|0.73611 50735|0.86111 50736|0.58333 50737|0.875 50738|0.88889 50739|0.81944 50740|0.73611 50741|0.81944 50742|0.73611 50743|0.54167 50744|0.72222 50745|0.77778 50746|0.65278 50747|0.72222 50748|0.73611 50749|0.81944 50750|0.70833 50751|0.75 50752|0.72222 50753|0.45833 50754|0.5 50755|0.58333 50756|0.38889 50757|0.48611 50758|0.22222 50759|0.23611 50760|0.23611 50761|0.56944 50762|0.5 50763|0.79167 50764|0.73611 50765|0.52778 50766|0.73611 50767|0.88889 50768|0.5 50769|0.5 50770|0.45833 50771|0.55556 50772|0.5 50773|0.55556 50774|0.52778 50775|0.61111 50776|0.44444 50777|0.43056 50778|0.5 50779|0.5 50780|0.52778 50781|0.25 50782|0.19444 50783|0.69444 50784|0.44444 50785|0.875 50786|0.77778 50787|0.52778 50788|0.61111 50789|0.55556 50790|0.38889 50791|0.5 50792|0.31944 50793|0.69444 50794|0.41667 50795|0.38889 50796|0.33333 50797|0.41667 50798|0.51389 50799|0.54167 50800|0.27778 50801|0.41667 50802|0.38889 50803|0.36111 50804|0.38889 50805|0.56944 50806|0.66667 50807|0.52778 50808|0.61111 50809|0.59722 50810|0.55556 50811|0.73611 50812|0.5 50813|0.55556 50814|0.51389 50815|0.5 50816|0.5 50817|0.70833 50818|0.51389 50819|0.48611 50820|0.5 50821|0.65278 50822|0.56944 50823|0.52778 50824|0.52778 50825|0.5 50826|0.5 50827|0.44444 50828|0.47222 50829|0.61111 50830|0.94444 50831|0.65278 50832|0.76389 50833|0.55556 50834|0.5 50835|0.56944 50836|0.5 50837|0.55556 50838|0.77778 50839|0.5 50840|0.5 50841|0.55556 50842|0.36111 50843|0.5 50844|0.52778 50845|0.40278 50846|0.40278 50847|0.5 50848|0.625 50849|0.5 50850|0.51389 50851|0.75 50852|0.52778 50853|0.55556 50854|0.55556 50855|0.5 50856|0.61111 50857|0.5 50858|0.5 50859|0.55556 50860|0.5 50861|0.61111 50862|0.5 50863|0.5 50864|0.5 50865|0.63889 50866|0.73611 50867|0.66667 50868|0.80556 50869|0.75 50870|0.94444 50871|0.81944 50872|0.83333 50873|0.90278 50874|0.79167 50875|0.18056 50876|0.20833 50877|0.11111 50878|0.54167 50879|0.43056 50880|0.48611 50881|0.5 50882|0.55556 50883|0.61111 50884|0.55556 50885|0.16667 50886|0.54167 50887|0.44444 50888|0.51389 50889|0.72222 50890|0.38889 50891|0.43056 50892|0.069444 50893|0.44444 50894|0.58333 50895|0.69444 50896|0.68056 50897|0.38889 50898|0.38889 50899|0.51389 50900|0.44444 50901|0.65278 50902|0.5 50903|0.5 50904|0.5 50905|0.59722 50906|0.625 50907|0.84722 50908|0.66667 50909|0.54167 50910|0.65278 50911|0.38889 50912|0.69444 50913|0.68056 50914|0.36111 50915|0.66667 50916|0.51389 50917|0.66667 50918|0.43056 50919|0.58333 50920|0.66667 50921|0.55556 50922|0.48611 50923|0.58333 50924|0.52778 50925|0.5 50926|0.18056 50927|0.38889 50928|0.31944 50929|0.5 50930|0.55556 50931|0.44444 50932|0.5 50933|0.51389 50934|0.63889 50935|0.5 50936|0.51389 50937|0.72222 50938|0.66667 50939|0.5 50940|0.61111 50941|0.5 50942|0.44444 50943|0.72222 50944|0.75 50945|0.77778 50946|0.69444 50947|0.80556 50948|0.65278 50949|0.80556 50950|0.77778 50951|0.88889 50952|0.5 50953|0.55556 50954|0.44444 50955|0.47222 50956|0.72222 50957|0.44444 50958|0.23611 50959|0.36111 50960|0.26389 50961|0.5 50962|0.69444 50963|0.61111 50964|0.30556 50965|0.54167 50966|0.5 50967|0.73611 50968|0.54167 50969|0.55556 50970|0.83333 50971|0.66667 50972|0.5 50973|0.5 50974|0.63889 50975|0.38889 50976|0.45833 50977|0.52778 50978|0.70833 50979|0.63889 50980|0.54167 50981|0.68056 50982|0.43056 50983|0.38889 50984|0.54167 50985|0.45833 50986|0.72222 50987|0.63889 50988|0.5 50989|0.23611 50990|0.86111 50991|0.25 50992|0.375 50993|0.36111 50994|0.84722 50995|0.58333 50996|0.69444 50997|0.47222 50998|0.52778 50999|0.33333 51000|0.38889 51001|0.66667 51002|0.5 51003|0.27778 51004|0.375 51005|0.41667 51006|0.38889 51007|0.19444 51008|0.47222 51009|0.61111 51010|0.44444 51011|0.80556 51012|0.625 51013|0.59722 51014|0.58333 51015|0.63889 51016|0.5 51017|0.72222 51018|0.51389 51019|0.55556 51020|0.5 51021|0.44444 51022|0.40278 51023|0.5 51024|0.58333 51025|0.69444 51026|0.63889 51027|0.38889 51028|0.55556 51029|0.5 51030|0.5 51031|0.68056 51032|0.80556 51033|0.61111 51034|0.5 51035|0.52778 51036|0.58333 51037|0.68056 51038|0.375 51039|0.38889 51040|0.52778 51041|0.34722 51042|0.44444 51043|0.59722 51044|0.38889 51045|0.5 51046|0.58333 51047|0.5 51048|0.55556 51049|0.34722 51050|0.36111 51051|0.33333 51052|0.59722 51053|0.29167 51054|0.75 51055|0.80556 51056|0.5 51057|0.63889 51058|0.36111 51059|0.27778 51060|0.5 51061|0.5 51062|0.5 51063|0.5 51064|0.61111 51065|0.5 51066|0.44444 51067|0.54167 51068|0.55556 51069|0.65278 51070|0.625 51071|0.58333 51072|0.70833 51073|0.5 51074|0.51389 51075|0.5 51076|0.5 51077|0.5 51078|0.5 51079|0.27778 51080|0.75 51081|0.55556 51082|0.55556 51083|0.55556 51084|0.5 51085|0.66667 51086|0.59722 51087|0.54167 51088|0.5 51089|0.44444 51090|0.5 51091|0.44444 51092|0.44444 51093|0.5 51094|0.55556 51095|0.66667 51096|0.59722 51097|0.61111 51098|0.5 51099|0.54167 51100|0.68056 51101|0.43056 51102|0.5 51103|0.72222 51104|0.63889 51105|0.47222 51106|0.55556 51107|0.65278 51108|0.75 51109|0.5 51110|0.5 51111|0.5 51112|0.44444 51113|0.55556 51114|0.69444 51115|0.73611 51116|0.75 51117|0.51389 51118|0.625 51119|0.55556 51120|0.65278 51121|0.68056 51122|0.5 51123|0.36111 51124|0.38889 51125|0.5 51126|0.5 51127|0.51389 51128|0.61111 51129|0.55556 51130|0.61111 51131|0.68056 51132|0.5 51133|0.44444 51134|0.5 51135|0.73611 51136|0.84722 51137|0.70833 51138|0.5 51139|0.5 51140|0.90278 51141|0.58333 51142|0.40278 51143|0.68056 51144|0.83333 51145|0.90278 51146|0.84722 51147|0.40278 51148|0.625 51149|0.61111 51150|0.54167 51151|0.65278 51152|0.86111 51153|0.36111 51154|0.44444 51155|0.65278 51156|0.47222 51157|0.65278 51158|0.61111 51159|0.54167 51160|0.66667 51161|0.51389 51162|0.77778 51163|0.59722 51164|0.72222 51165|0.5 51166|0.68056 51167|0.79167 51168|0.5 51169|0.33333 51170|0.29167 51171|0.66667 51172|0.51389 51173|0.5 51174|0.83333 51175|0.5 51176|0.59722 51177|0.75 51178|0.52778 51179|0.5 51180|0.5 51181|0.61111 51182|0.56944 51183|0.54167 51184|0.52778 51185|0.77778 51186|0.55556 51187|0.44444 51188|0.27778 51189|0.29167 51190|0.5 51191|0.80556 51192|0.59722 51193|0.51389 51194|0.40278 51195|0.625 51196|0.73611 51197|0.79167 51198|0.83333 51199|0.72222 51200|0.66667 51201|0.69444 51202|0.76389 51203|0.54167 51204|0.61111 51205|0.70833 51206|0.68056 51207|0.80556 51208|0.86111 51209|0.63889 51210|0.51389 51211|0.58333 51212|0.70833 51213|0.73611 51214|0.94444 51215|0.81944 51216|0.72222 51217|0.84722 51218|0.72222 51219|0.72222 51220|0.77778 51221|0.88889 51222|0.70833 51223|0.63889 51224|0.80556 51225|0.76389 51226|0.81944 51227|0.65278 51228|0.61111 51229|0.75 51230|0.66667 51231|0.66667 51232|0.83333 51233|0.63889 51234|0.68056 51235|0.76389 51236|0.75 51237|0.61111 51238|0.77778 51239|0.83333 51240|0.70833 51241|0.86111 51242|0.55556 51243|0.52778 51244|0.59722 51245|0.66667 51246|0.83333 51247|0.56944 51248|0.55556 51249|0.76389 51250|0.79167 51251|0.56944 51252|0.31944 51253|0.52778 51254|0.52778 51255|0.58333 51256|0.58333 51257|0.38889 51258|0.55556 51259|0.73611 51260|0.63889 51261|0.72222 51262|0.63889 51263|0.61111 51264|0.55556 51265|0.59722 51266|0.61111 51267|0.5 51268|0.44444 51269|0.51389 51270|0.73611 51271|0.66667 51272|0.81944 51273|0.66667 51274|0.76389 51275|0.61111 51276|0.63889 51277|0.83333 51278|0.79167 51279|0.73611 51280|0.58333 51281|0.5 51282|0.76389 51283|0.65278 51284|0.76389 51285|0.97222 51286|0.40278 51287|0.44444 51288|0.47222 51289|0.5 51290|0.5 51291|0.54167 51292|0.5 51293|0.72222 51294|0.55556 51295|0.84722 51296|0.81944 51297|0.68056 51298|0.58333 51299|0.63889 51300|0.51389 51301|0.61111 51302|0.5 51303|0.88889 51304|0.61111 51305|0.61111 51306|0.72222 51307|0.5 51308|0.5 51309|0.5 51310|0.5 51311|0.54167 51312|0.52778 51313|0.55556 51314|0.51389 51315|0.56944 51316|0.52778 51317|0.73611 51318|0.5 51319|0.52778 51320|0.48611 51321|0.5 51322|0.61111 51323|0.80556 51324|0.52778 51325|0.54167 51326|0.88889 51327|0.80556 51328|0.84722 51329|0.69444 51330|0.5 51331|0.61111 51332|0.72222 51333|0.5 51334|0.5 51335|0.41667 51336|0.56944 51337|0.86111 51338|0.63889 51339|0.56944 51340|0.5 51341|0.66667 51342|0.79167 51343|0.5 51344|0.55556 51345|0.41667 51346|0.41667 51347|0.59722 51348|0.61111 51349|0.5 51350|0.43056 51351|0.5 51352|0.61111 51353|0.5 51354|0.61111 51355|0.77778 51356|0.63889 51357|0.45833 51358|0.5 51359|0.5 51360|0.5 51361|0.5 51362|0.625 51363|0.51389 51364|0.51389 51365|0.44444 51366|0.61111 51367|0.52778 51368|0.5 51369|0.94444 51370|0.5 51371|0.52778 51372|0.5 51373|0.55556 51374|0.84722 51375|0.68056 51376|0.72222 51377|0.59722 51378|0.75 51379|0.69444 51380|0.54167 51381|0.5 51382|0.38889 51383|0.55556 51384|0.72222 51385|0.43056 51386|0.5 51387|0.51389 51388|0.66667 51389|0.59722 51390|0.55556 51391|0.83333 51392|0.63889 51393|0.83333 51394|0.84722 51395|0.93056 51396|0.81944 51397|0.5 51398|0.76389 51399|0.70833 51400|0.72222 51401|0.84722 51402|0.88889 51403|0.83333 51404|0.75 51405|0.86111 51406|0.83333 51407|0.94444 51408|0.69444 51409|0.54167 51410|0.34722 51411|0.5 51412|0.48611 51413|0.68056 51414|0.83333 51415|0.5 51416|0.5 51417|0.72222 51418|0.61111 51419|0.59722 51420|0.5 51421|0.61111 51422|0.61111 51423|0.55556 51424|0.55556 51425|0.48611 51426|0.51389 51427|0.63889 51428|0.44444 51429|0.75 51430|0.43056 51431|0.75 51432|0.83333 51433|0.625 51434|0.79167 51435|0.48611 51436|0.59722 51437|0.58333 51438|0.52778 51439|0.58333 51440|0.38889 51441|0.88889 51442|0.73611 51443|0.93056 51444|0.5 51445|0.5 51446|0.51389 51447|0.48611 51448|0.55556 51449|0.44444 51450|0.95833 51451|0.95833 51452|0.66667 51453|0.52778 51454|0.47222 51455|0.76389 51456|0.61111 51457|0.625 51458|0.65278 51459|0.625 51460|0.72222 51461|0.68056 51462|0.61111 51463|0.5 51464|0.54167 51465|0.5 51466|0.61111 51467|0.44444 51468|0.625 51469|0.84722 51470|0.5 51471|0.5 51472|0.44444 51473|0.19444 51474|0.11111 51475|0.61111 51476|0.63889 51477|0.65278 51478|0.66667 51479|0.84722 51480|0.44444 51481|0.38889 51482|0.16667 51483|0.22222 51484|0.625 51485|0.5 51486|0.30556 51487|0.27778 51488|0.58333 51489|0.65278 51490|0.55556 51491|0.56944 51492|0.63889 51493|0.31944 51494|0.27778 51495|0.38889 51496|0.29167 51497|0.52778 51498|0.80556 51499|0.61111 51500|0.52778 51501|0.61111 51502|0.59722 51503|0.61111 51504|0.55556 51505|0.54167 51506|0.5 51507|0.77778 51508|0.625 51509|0.61111 51510|0.51389 51511|0.44444 51512|0.55556 51513|0.43056 51514|0.66667 51515|0.76389 51516|0.72222 51517|0.59722 51518|0.65278 51519|0.61111 51520|0.51389 51521|0.70833 51522|0.95833 51523|0.73611 51524|0.875 51525|0.88889 51526|0.5 51527|0.34722 51528|0.5 51529|0.54167 51530|0.70833 51531|0.69444 51532|0.41667 51533|0.59722 51534|0.5 51535|0.75 51536|0.61111 51537|0.5 51538|0.5 51539|0.77778 51540|0.80556 51541|0.66667 51542|0.54167 51543|0.43056 51544|0.63889 51545|0.76389 51546|0.81944 51547|0.69444 51548|0.76389 51549|0.58333 51550|0.70833 51551|0.61111 51552|0.61111 51553|0.70833 51554|0.44444 51555|0.33333 51556|0.55556 51557|0.58333 51558|0.625 51559|0.86111 51560|0.77778 51561|0.61111 51562|0.58333 51563|0.61111 51564|0.56944 51565|0.5 51566|0.51389 51567|0.61111 51568|0.5 51569|0.44444 51570|0.68056 51571|0.61111 51572|0.5 51573|0.27778 51574|0.27778 51575|0.36111 51576|0.77778 51577|0.41667 51578|0.26389 51579|0.75 51580|0.75 51581|0.5 51582|0.69444 51583|0.70833 51584|0.55556 51585|0.44444 51586|0.54167 51587|0.70833 51588|0.80556 51589|0.52778 51590|0.875 51591|0.13889 51592|0.20833 51593|0.38889 51594|0.56944 51595|0.38889 51596|0.47222 51597|0.5 51598|0.66667 51599|0.72222 51600|0.72222 51601|0.66667 51602|0.59722 51603|0.625 51604|0.51389 51605|0.68056 51606|0.54167 51607|0.59722 51608|0.65278 51609|0.63889 51610|0.51389 51611|0.47222 51612|0.47222 51613|0.29167 51614|0.44444 51615|0.47222 51616|0.41667 51617|0.73611 51618|0.34722 51619|0.56944 51620|0.5 51621|0.61111 51622|0.43056 51623|0.5 51624|0.51389 51625|0.51389 51626|0.68056 51627|0.63889 51628|0.69444 51629|0.43056 51630|0.5 51631|0.5 51632|0.58333 51633|0.5 51634|0.5 51635|0.52778 51636|0.5 51637|0.61111 51638|0.63889 51639|0.61111 51640|0.79167 51641|0.66667 51642|0.70833 51643|0.77778 51644|0.59722 51645|0.52778 51646|0.5 51647|0.5 51648|0.83333 51649|0.76389 51650|0.84722 51651|0.80556 51652|0.5 51653|0.5 51654|0.69444 51655|0.5 51656|0.5 51657|0.52778 51658|0.68056 51659|0.72222 51660|0.69444 51661|0.5 51662|0.61111 51663|0.5 51664|0.5 51665|0.51389 51666|0.70833 51667|0.5 51668|0.51389 51669|0.5 51670|0.63889 51671|0.61111 51672|0.55556 51673|0.83333 51674|0.56944 51675|0.81944 51676|0.72222 51677|0.5 51678|0.55556 51679|0.63889 51680|0.43056 51681|0.875 51682|0.47222 51683|0.5 51684|0.5 51685|0.55556 51686|0.61111 51687|0.5 51688|0.54167 51689|0.55556 51690|0.43056 51691|0.63889 51692|0.56944 51693|0.61111 51694|0.83333 51695|0.48611 51696|0.625 51697|0.5 51698|0.5 51699|0.625 51700|0.51389 51701|0.59722 51702|0.5 51703|0.65278 51704|0.625 51705|0.66667 51706|0.5 51707|0.75 51708|0.56944 51709|0.77778 51710|0.51389 51711|0.66667 51712|0.90278 51713|0.5 51714|0.56944 51715|0.51389 51716|0.52778 51717|0.83333 51718|0.68056 51719|0.43056 51720|0.5 51721|0.52778 51722|0.77778 51723|0.70833 51724|0.5 51725|0.58333 51726|0.55556 51727|0.5 51728|0.26389 51729|0.5 51730|0.36111 51731|0.44444 51732|0.20833 51733|0.20833 51734|0.125 51735|0.51389 51736|0.51389 51737|0.58333 51738|0.16667 51739|0.23611 51740|0.51389 51741|0.5 51742|0.70833 51743|0.68056 51744|0.48611 51745|0.36111 51746|0.79167 51747|0.41667 51748|0.5 51749|0.5 51750|0.5 51751|0.48611 51752|0.54167 51753|0.56944 51754|0.52778 51755|0.73611 51756|0.55556 51757|0.66667 51758|0.44444 51759|0.77778 51760|0.72222 51761|0.5 51762|0.56944 51763|0.54167 51764|0.5 51765|0.5 51766|0.5 51767|0.5 51768|0.55556 51769|0.52778 51770|0.36111 51771|0.11111 51772|0.36111 51773|0.55556 51774|0.63889 51775|0.5 51776|0.5 51777|0.83333 51778|0.72222 51779|0.45833 51780|0.44444 51781|0.75 51782|0.52778 51783|0.38889 51784|0.69444 51785|0.55556 51786|0.65278 51787|0.40278 51788|0.79167 51789|0.375 51790|0.72222 51791|0.41667 51792|0.61111 51793|0.5 51794|0.52778 51795|0.55556 51796|0.79167 51797|0.75 51798|0.36111 51799|0.73611 51800|0.54167 51801|0.55556 51802|0.90278 51803|0.44444 51804|0.69444 51805|0.83333 51806|0.51389 51807|0.54167 51808|0.45833 51809|0.5 51810|0.54167 51811|0.56944 51812|0.52778 51813|0.54167 51814|0.72222 51815|0.68056 51816|0.5 51817|0.61111 51818|0.61111 51819|0.55556 51820|0.69444 51821|0.54167 51822|0.625 51823|0.51389 51824|0.55556 51825|0.51389 51826|0.66667 51827|0.5 51828|0.5 51829|0.5 51830|0.54167 51831|0.5 51832|0.5 51833|0.55556 51834|0.5 51835|0.61111 51836|0.55556 51837|0.51389 51838|0.5 51839|0.5 51840|0.5 51841|0.58333 51842|0.63889 51843|0.59722 51844|0.44444 51845|0.59722 51846|0.44444 51847|0.5 51848|0.43056 51849|0.55556 51850|0.44444 51851|0.63889 51852|0.5 51853|0.72222 51854|0.56944 51855|0.25 51856|0.22222 51857|0.41667 51858|0.27778 51859|0.33333 51860|0.56944 51861|0.625 51862|0.88889 51863|0.41667 51864|0.55556 51865|0.56944 51866|0.44444 51867|0.52778 51868|0.5 51869|0.70833 51870|0.69444 51871|0.66667 51872|0.5 51873|0.77778 51874|0.72222 51875|0.5 51876|0.30556 51877|0.375 51878|0.36111 51879|0.5 51880|0.51389 51881|0.5 51882|0.48611 51883|0.94444 51884|0.41667 51885|0.66667 51886|0.61111 51887|0.44444 51888|0.55556 51889|0.41667 51890|0.66667 51891|0.80556 51892|0.59722 51893|0.72222 51894|0.73611 51895|0.33333 51896|0.58333 51897|0.76389 51898|0.55556 51899|0.66667 51900|0.59722 51901|0.69444 51902|0.5 51903|0.54167 51904|0.625 51905|0.68056 51906|0.54167 51907|0.83333 51908|0.66667 51909|0.72222 51910|0.59722 51911|0.5 51912|0.51389 51913|0.73611 51914|0.5 51915|0.75 51916|0.5 51917|0.5 51918|0.51389 51919|0.63889 51920|0.5 51921|0.36111 51922|0.47222 51923|0.47222 51924|0.44444 51925|0.55556 51926|0.38889 51927|0.5 51928|0.59722 51929|0.5 51930|0.40278 51931|0.51389 51932|0.30556 51933|0.52778 51934|0.51389 51935|0.72222 51936|0.55556 51937|0.66667 51938|0.5 51939|0.66667 51940|0.52778 51941|0.55556 51942|0.5 51943|0.48611 51944|0.44444 51945|0.52778 51946|0.59722 51947|0.55556 51948|0.51389 51949|0.40278 51950|0.44444 51951|0.45833 51952|0.5 51953|0.63889 51954|0.61111 51955|0.5 51956|0.55556 51957|0.59722 51958|0.5 51959|0.61111 51960|0.43056 51961|0.5 51962|0.63889 51963|0.55556 51964|0.48611 51965|0.61111 51966|0.5 51967|0.5 51968|0.5 51969|0.26389 51970|0.36111 51971|0.65278 51972|0.29167 51973|0.83333 51974|0.72222 51975|0.75 51976|0.55556 51977|0.84722 51978|0.55556 51979|0.51389 51980|0.73611 51981|0.44444 51982|0.5 51983|0.83333 51984|0.76389 51985|0.86111 51986|0.86111 51987|0.63889 51988|0.73611 51989|0.66667 51990|0.76389 51991|0.77778 51992|0.72222 51993|0.5 51994|0.45833 51995|0.5 51996|0.72222 51997|0.55556 51998|0.77778 51999|0.76389 52000|0.80556 52001|0.93056 52002|0.66667 52003|0.72222 52004|0.76389 52005|0.80556 52006|0.73611 52007|0.80556 52008|0.79167 52009|0.80556 52010|0.76389 52011|0.73611 52012|0.83333 52013|0.83333 52014|0.88889 52015|0.77778 52016|0.56944 52017|0.875 52018|0.76389 52019|0.81944 52020|0.72222 52021|0.69444 52022|0.63889 52023|0.69444 52024|0.75 52025|0.70833 52026|0.69444 52027|0.45833 52028|0.38889 52029|0.58333 52030|0.61111 52031|0.5 52032|0.51389 52033|0.27778 52034|0.52778 52035|0.73611 52036|0.61111 52037|0.44444 52038|0.5 52039|0.48611 52040|0.61111 52041|0.55556 52042|0.5 52043|0.33333 52044|0.5 52045|0.5 52046|0.63889 52047|0.5 52048|0.44444 52049|0.68056 52050|0.58333 52051|0.72222 52052|0.69444 52053|0.76389 52054|0.43056 52055|0.5 52056|0.625 52057|0.61111 52058|0.70833 52059|0.56944 52060|0.625 52061|0.73611 52062|0.66667 52063|0.68056 52064|0.75 52065|0.70833 52066|0.72222 52067|0.84722 52068|0.81944 52069|0.34722 52070|0.86111 52071|0.80556 52072|0.77778 52073|0.76389 52074|0.81944 52075|0.61111 52076|0.66667 52077|0.66667 52078|0.56944 52079|0.66667 52080|0.52778 52081|0.40278 52082|0.54167 52083|0.5 52084|0.15278 52085|0.5 52086|0.55556 52087|0.33333 52088|0.51389 52089|0.65278 52090|0.5 52091|0.55556 52092|0.625 52093|0.40278 52094|0.61111 52095|0.5 52096|0.61111 52097|0.66667 52098|0.84722 52099|0.69444 52100|0.70833 52101|0.54167 52102|0.61111 52103|0.69444 52104|0.69444 52105|0.58333 52106|0.65278 52107|0.83333 52108|0.52778 52109|0.66667 52110|0.73611 52111|0.80556 52112|0.80556 52113|0.83333 52114|0.76389 52115|0.77778 52116|0.58333 52117|0.58333 52118|0.45833 52119|0.72222 52120|0.5 52121|0.45833 52122|0.52778 52123|0.56944 52124|0.58333 52125|0.79167 52126|0.73611 52127|0.72222 52128|0.81944 52129|0.72222 52130|0.5 52131|0.44444 52132|0.52778 52133|0.63889 52134|0.61111 52135|0.51389 52136|0.66667 52137|0.55556 52138|0.5 52139|0.5 52140|0.38889 52141|0.5 52142|0.63889 52143|0.58333 52144|0.77778 52145|0.38889 52146|0.5 52147|0.52778 52148|0.55556 52149|0.68056 52150|0.56944 52151|0.45833 52152|0.66667 52153|0.5 52154|0.70833 52155|0.58333 52156|0.58333 52157|0.51389 52158|0.23611 52159|0.95833 52160|0.68056 52161|0.75 52162|0.27778 52163|0.5 52164|0.5 52165|0.41667 52166|0.44444 52167|0.72222 52168|0.86111 52169|0.5 52170|0.72222 52171|0.61111 52172|0.5 52173|0.59722 52174|0.63889 52175|0.625 52176|0.55556 52177|0.56944 52178|0.63889 52179|0.61111 52180|0.33333 52181|0.26389 52182|0.41667 52183|0.5 52184|0.72222 52185|0.5 52186|0.5 52187|0.5 52188|0.58333 52189|0.56944 52190|0.77778 52191|0.80556 52192|0.61111 52193|0.75 52194|0.68056 52195|0.73611 52196|0.80556 52197|0.63889 52198|0.72222 52199|0.80556 52200|0.77778 52201|0.69444 52202|0.76389 52203|0.66667 52204|0.68056 52205|0.52778 52206|0.65278 52207|0.55556 52208|0.72222 52209|0.5 52210|0.70833 52211|0.69444 52212|0.76389 52213|0.80556 52214|0.80556 52215|0.40278 52216|0.875 52217|0.875 52218|0.86111 52219|0.75 52220|0.86111 52221|0.33333 52222|0.27778 52223|0.40278 52224|0.77778 52225|0.51389 52226|0.80556 52227|0.5 52228|0.69444 52229|0.55556 52230|0.88889 52231|0.79167 52232|0.5 52233|0.34722 52234|0.69444 52235|0.73611 52236|0.51389 52237|0.66667 52238|0.70833 52239|0.56944 52240|0.44444 52241|0.51389 52242|0.68056 52243|0.54167 52244|0.44444 52245|0.45833 52246|0.22222 52247|0.66667 52248|0.77778 52249|0.75 52250|0.61111 52251|0.88889 52252|0.88889 52253|0.72222 52254|0.86111 52255|0.69444 52256|0.83333 52257|0.875 52258|0.81944 52259|0.69444 52260|0.65278 52261|0.72222 52262|0.68056 52263|0.66667 52264|0.75 52265|0.47222 52266|0.80556 52267|0.72222 52268|0.56944 52269|0.65278 52270|0.90278 52271|0.63889 52272|0.44444 52273|0.375 52274|0.33333 52275|0.33333 52276|0.29167 52277|0.58333 52278|0.59722 52279|0.66667 52280|0.76389 52281|0.625 52282|0.47222 52283|0.5 52284|0.76389 52285|0.76389 52286|0.52778 52287|0.79167 52288|0.75 52289|0.36111 52290|0.45833 52291|0.72222 52292|0.5 52293|0.76389 52294|0.72222 52295|0.44444 52296|0.61111 52297|0.72222 52298|0.5 52299|0.48611 52300|0.55556 52301|0.51389 52302|0.5 52303|0.5 52304|0.5 52305|0.5 52306|0.36111 52307|0.40278 52308|0.69444 52309|0.5 52310|0.44444 52311|0.61111 52312|0.38889 52313|0.75 52314|0.5 52315|0.52778 52316|0.5 52317|0.5 52318|0.47222 52319|0.41667 52320|0.61111 52321|0.38889 52322|0.55556 52323|0.375 52324|0.5 52325|0.47222 52326|0.80556 52327|0.83333 52328|0.45833 52329|0.81944 52330|0.68056 52331|0.30556 52332|0.43056 52333|0.51389 52334|0.54167 52335|0.44444 52336|0.47222 52337|0.38889 52338|0.5 52339|0.69444 52340|0.70833 52341|0.38889 52342|0.5 52343|0.51389 52344|0.38889 52345|0.20833 52346|0.77778 52347|0.76389 52348|0.5 52349|0.34722 52350|0.625 52351|0.72222 52352|0.083333 52353|0.52778 52354|0.55556 52355|0.625 52356|0.47222 52357|0.44444 52358|0.55556 52359|0.69444 52360|0.73611 52361|0.56944 52362|0.31944 52363|0.55556 52364|0.29167 52365|0.77778 52366|0.77778 52367|0.625 52368|0.48611 52369|0.84722 52370|0.69444 52371|0.76389 52372|0.69444 52373|0.5 52374|0.80556 52375|0.63889 52376|0.80556 52377|0.61111 52378|0.81944 52379|0.55556 52380|0.5 52381|0.38889 52382|0.51389 52383|0.54167 52384|0.70833 52385|0.76389 52386|0.94444 52387|0.5 52388|0.73611 52389|0.77778 52390|0.625 52391|0.625 52392|0.79167 52393|0.5 52394|0.77778 52395|0.69444 52396|0.83333 52397|0.77778 52398|0.70833 52399|0.91667 52400|0.5 52401|0.5 52402|0.55556 52403|0.55556 52404|0.55556 52405|0.61111 52406|0.16667 52407|0.33333 52408|0.55556 52409|0.69444 52410|0.69444 52411|0.72222 52412|0.66667 52413|0.69444 52414|0.5 52415|0.625 52416|0.63889 52417|0.81944 52418|0.65278 52419|0.5 52420|0.51389 52421|0.55556 52422|0.77778 52423|0.79167 52424|0.69444 52425|0.54167 52426|0.72222 52427|0.76389 52428|0.69444 52429|0.875 52430|1 52431|0.80556 52432|0.72222 52433|0.73611 52434|0.48611 52435|0.22222 52436|0.72222 52437|0.70833 52438|0.81944 52439|0.81944 52440|0.625 52441|0.70833 52442|0.77778 52443|0.43056 52444|0.47222 52445|0.375 52446|0.5 52447|0.45833 52448|0.56944 52449|0.23611 52450|0.31944 52451|0.38889 52452|0.70833 52453|0.73611 52454|0.68056 52455|0.73611 52456|0.81944 52457|0.33333 52458|0.68056 52459|0.5 52460|0.5 52461|0.54167 52462|0.30556 52463|0.40278 52464|0.5 52465|0.5 52466|0.5 52467|0.59722 52468|0.5 52469|0.5 52470|0.36111 52471|0.58333 52472|0.26389 52473|0.70833 52474|0.55556 52475|0.97222 52476|0.38889 52477|0.77778 52478|0.81944 52479|0.63889 52480|0.70833 52481|0.61111 52482|0.59722 52483|0.52778 52484|0.69444 52485|0.5 52486|0.77778 52487|0.54167 52488|0.55556 52489|0.52778 52490|0.47222 52491|0.5 52492|0.5 52493|0.38889 52494|0.43056 52495|0.48611 52496|0.44444 52497|0.41667 52498|0.66667 52499|0.80556 52500|0.47222 52501|0.61111 52502|0.70833 52503|0.84722 52504|0.38889 52505|0.52778 52506|0.43056 52507|0.86111 52508|0.73611 52509|0.80556 52510|0.86111 52511|0.63889 52512|0.30556 52513|0.36111 52514|0.625 52515|0.66667 52516|0.56944 52517|0.86111 52518|0.5 52519|0.77778 52520|0.5 52521|0.84722 52522|0.79167 52523|0.72222 52524|0.45833 52525|0.51389 52526|0.5 52527|0.66667 52528|0.52778 52529|0.58333 52530|0.58333 52531|0.38889 52532|0.38889 52533|0.70833 52534|0.5 52535|0.47222 52536|0.73611 52537|0.70833 52538|0.72222 52539|0.73611 52540|0.66667 52541|0.77778 52542|0.61111 52543|0.27778 52544|0.73611 52545|0.5 52546|0.56944 52547|0.47222 52548|0.75 52549|0.81944 52550|0.5 52551|0.61111 52552|0.72222 52553|0.63889 52554|0.72222 52555|0.66667 52556|0.80556 52557|0.41667 52558|0.58333 52559|0.5 52560|0.5 52561|0.51389 52562|0.5 52563|0.5 52564|0.65278 52565|0.58333 52566|0.55556 52567|0.5 52568|0.72222 52569|0.66667 52570|0.52778 52571|0.54167 52572|0.61111 52573|0.52778 52574|0.5 52575|0.5 52576|0.55556 52577|0.5 52578|0.5 52579|0.5 52580|0.5 52581|0.5 52582|0.5 52583|0.58333 52584|0.5 52585|0.5 52586|0.5 52587|0.54167 52588|0.5 52589|0.75 52590|0.51389 52591|0.51389 52592|0.72222 52593|0.51389 52594|0.80556 52595|0.77778 52596|0.65278 52597|0.69444 52598|0.77778 52599|0.73611 52600|0.68056 52601|0.51389 52602|0.94444 52603|0.88889 52604|0.5 52605|0.72222 52606|0.94444 52607|0.84722 52608|0.75 52609|0.86111 52610|0.75 52611|0.72222 52612|0.51389 52613|0.5 52614|0.5 52615|0.5 52616|0.5 52617|0.66667 52618|0.5 52619|0.5 52620|0.5 52621|0.55556 52622|0.5 52623|0.54167 52624|0.5 52625|0.75 52626|0.5 52627|0.48611 52628|0.375 52629|0.45833 52630|0.5 52631|0.41667 52632|0.51389 52633|0.5 52634|0.52778 52635|0.66667 52636|0.5 52637|0.44444 52638|0.79167 52639|0.38889 52640|0.19444 52641|0.625 52642|0.59722 52643|0.5 52644|0.56944 52645|0.5 52646|0.83333 52647|0.77778 52648|0.81944 52649|0.36111 52650|0.56944 52651|0.61111 52652|0.51389 52653|0.63889 52654|0.625 52655|0.44444 52656|0.69444 52657|0.73611 52658|0.51389 52659|0.77778 52660|0.77778 52661|0.77778 52662|0.75 52663|0.5 52664|0.5 52665|0.51389 52666|0.59722 52667|0.5 52668|0.73611 52669|0.5 52670|0.33333 52671|0.38889 52672|0.68056 52673|0.81944 52674|0.51389 52675|0.55556 52676|0.48611 52677|0.38889 52678|0.52778 52679|0.77778 52680|0.69444 52681|0.5 52682|0.5 52683|0.73611 52684|0.36111 52685|0.5 52686|0.5 52687|0.65278 52688|0.27778 52689|0.34722 52690|0.59722 52691|0.58333 52692|0.5 52693|0.38889 52694|0.625 52695|0.66667 52696|0.79167 52697|0.61111 52698|0.5 52699|0.69444 52700|0.61111 52701|0.45833 52702|0.5 52703|0.5 52704|0.41667 52705|0.76389 52706|0.52778 52707|0.66667 52708|0.5 52709|0.69444 52710|0.69444 52711|0.77778 52712|0.59722 52713|0.75 52714|0.63889 52715|0.66667 52716|0.38889 52717|0.55556 52718|0.56944 52719|0.48611 52720|0.59722 52721|0.61111 52722|0.73611 52723|0.48611 52724|0.65278 52725|0.63889 52726|0.23611 52727|0.55556 52728|0.66667 52729|0.45833 52730|0.5 52731|0.625 52732|0.33333 52733|0.5 52734|0.5 52735|0.51389 52736|0.29167 52737|0.55556 52738|0.51389 52739|0.81944 52740|0.5 52741|0.38889 52742|0.72222 52743|0.5 52744|0.45833 52745|0.66667 52746|0.47222 52747|0.66667 52748|0.75 52749|0.75 52750|0.66667 52751|0.81944 52752|0.54167 52753|0.68056 52754|0.86111 52755|0.38889 52756|0.625 52757|0.58333 52758|0.63889 52759|0.5 52760|0.55556 52761|0.77778 52762|0.63889 52763|0.51389 52764|0.47222 52765|0.79167 52766|0.59722 52767|0.55556 52768|0.88889 52769|0.95833 52770|0.68056 52771|0.81944 52772|0.47222 52773|0.5 52774|0.51389 52775|0.5 52776|0.65278 52777|0.5 52778|0.30556 52779|0.44444 52780|0.72222 52781|0.81944 52782|0.77778 52783|0.36111 52784|0.55556 52785|0.15278 52786|0.51389 52787|0.5 52788|0.55556 52789|0.61111 52790|0.40278 52791|0.58333 52792|0.52778 52793|0.40278 52794|0.47222 52795|0.61111 52796|0.27778 52797|0.77778 52798|0.5 52799|0.41667 52800|0.36111 52801|0.45833 52802|0.48611 52803|0.51389 52804|0.29167 52805|0.47222 52806|0.44444 52807|0.51389 52808|0.69444 52809|0.54167 52810|0.79167 52811|0.48611 52812|0.55556 52813|0.36111 52814|0.63889 52815|0.48611 52816|0.52778 52817|0.44444 52818|0.34722 52819|0.66667 52820|0.76389 52821|0.43056 52822|0.66667 52823|0.5 52824|0.5 52825|0.55556 52826|0.38889 52827|0.55556 52828|0.59722 52829|0.73611 52830|0.63889 52831|0.77778 52832|0.44444 52833|0.52778 52834|0.61111 52835|0.5 52836|0.65278 52837|0.5 52838|0.16667 52839|0.55556 52840|0.51389 52841|0.88889 52842|0.73611 52843|0.93056 52844|0.77778 52845|0.5 52846|0.44444 52847|0.5 52848|0.55556 52849|0.41667 52850|0.65278 52851|0.45833 52852|0.76389 52853|0.36111 52854|0.72222 52855|0.84722 52856|0.81944 52857|0.77778 52858|0.73611 52859|0.63889 52860|0.55556 52861|0.44444 52862|0.66667 52863|0.51389 52864|0.51389 52865|0.5 52866|0.5 52867|0.56944 52868|0.5 52869|0.44444 52870|0.55556 52871|0.77778 52872|0.5 52873|0.5 52874|0.48611 52875|0.5 52876|0.56944 52877|0.5 52878|0.72222 52879|0.61111 52880|0.5 52881|0.51389 52882|0.54167 52883|0.75 52884|0.81944 52885|0.59722 52886|0.91667 52887|0.88889 52888|0.36111 52889|0.625 52890|0.5 52891|0.41667 52892|0.76389 52893|0.52778 52894|0.52778 52895|0.59722 52896|0.66667 52897|0.55556 52898|0.66667 52899|0.5 52900|0.44444 52901|0.63889 52902|0.54167 52903|0.47222 52904|0.5 52905|0.5 52906|0.5 52907|0.58333 52908|0.55556 52909|0.52778 52910|0.38889 52911|0.68056 52912|0.59722 52913|0.59722 52914|0.44444 52915|0.68056 52916|0.83333 52917|0.52778 52918|0.91667 52919|0.51389 52920|0.55556 52921|0.65278 52922|0.625 52923|0.61111 52924|0.5 52925|0.54167 52926|0.5 52927|0.625 52928|0.5 52929|0.61111 52930|0.5 52931|0.5 52932|0.59722 52933|0.5 52934|0.69444 52935|0.5 52936|0.51389 52937|0.51389 52938|0.55556 52939|0.27778 52940|0.58333 52941|0.56944 52942|0.44444 52943|0.77778 52944|0.51389 52945|0.55556 52946|0.68056 52947|0.43056 52948|0.59722 52949|0.72222 52950|0.51389 52951|0.77778 52952|0.66667 52953|0.51389 52954|0.5 52955|0.5 52956|0.625 52957|0.5 52958|0.52778 52959|0.52778 52960|0.5 52961|0.5 52962|0.83333 52963|0.61111 52964|0.75 52965|0.5 52966|0.44444 52967|0.45833 52968|0.63889 52969|0.625 52970|0.5 52971|0.44444 52972|0.58333 52973|0.52778 52974|0.59722 52975|0.56944 52976|0.45833 52977|0.5 52978|0.33333 52979|0.5 52980|0.55556 52981|0.5 52982|0.55556 52983|0.5 52984|0.51389 52985|0.5 52986|0.5 52987|0.55556 52988|0.75 52989|0.5 52990|0.51389 52991|0.54167 52992|0.66667 52993|0.52778 52994|0.625 52995|0.58333 52996|0.59722 52997|0.5 52998|0.70833 52999|0.81944 53000|0.56944 53001|0.47222 53002|0.5 53003|0.5 53004|0.61111 53005|0.5 53006|0.38889 53007|0.5 53008|0.5 53009|0.72222 53010|0.47222 53011|0.5 53012|0.66667 53013|0.75 53014|0.5 53015|0.5 53016|0.5 53017|0.5 53018|0.56944 53019|0.44444 53020|0.375 53021|0.5 53022|0.72222 53023|0.5 53024|0.23611 53025|0.61111 53026|0.40278 53027|0.5 53028|0.59722 53029|0.83333 53030|0.91667 53031|0.73611 53032|0.58333 53033|0.76389 53034|0.5 53035|0.625 53036|0.51389 53037|0.40278 53038|0.5 53039|0.52778 53040|0.5 53041|0.5 53042|0.5 53043|0.44444 53044|0.40278 53045|0.31944 53046|0.33333 53047|0.30556 53048|0.52778 53049|0.5 53050|0.625 53051|0.54167 53052|0.5 53053|0.5 53054|0.5 53055|0.61111 53056|0.31944 53057|0.5 53058|0.56944 53059|0.33333 53060|0.76389 53061|0.77778 53062|0.58333 53063|0.52778 53064|0.27778 53065|0.22222 53066|0.18056 53067|0.29167 53068|0.30556 53069|0.5 53070|0.41667 53071|0.83333 53072|0.47222 53073|0.5 53074|0.5 53075|0.5 53076|0.54167 53077|0.51389 53078|0.5 53079|0.5 53080|0.72222 53081|0.5 53082|0.375 53083|0.51389 53084|0.84722 53085|0.5 53086|0.63889 53087|0.66667 53088|0.83333 53089|0.73611 53090|0.5 53091|0.44444 53092|0.55556 53093|0.54167 53094|0.72222 53095|0.52778 53096|0.38889 53097|0.5 53098|0.44444 53099|0.61111 53100|0.63889 53101|0.52778 53102|0.54167 53103|0.5 53104|0.5 53105|0.5 53106|0.51389 53107|0.81944 53108|0.84722 53109|0.63889 53110|0.77778 53111|0.59722 53112|0.56944 53113|0.41667 53114|0.51389 53115|0.65278 53116|0.83333 53117|0.70833 53118|0.61111 53119|0.66667 53120|0.5 53121|0.66667 53122|0.75 53123|0.625 53124|0.80556 53125|0.75 53126|0.77778 53127|0.84722 53128|0.73611 53129|0.70833 53130|0.77778 53131|0.63889 53132|0.625 53133|0.5 53134|0.44444 53135|0.59722 53136|0.59722 53137|0.70833 53138|0.80556 53139|0.5 53140|0.65278 53141|0.66667 53142|0.63889 53143|0.66667 53144|0.80556 53145|0.80556 53146|0.61111 53147|0.55556 53148|0.63889 53149|0.70833 53150|0.58333 53151|0.56944 53152|0.625 53153|0.59722 53154|0.51389 53155|0.75 53156|0.61111 53157|0.81944 53158|0.73611 53159|0.66667 53160|0.69444 53161|0.69444 53162|0.63889 53163|0.68056 53164|0.625 53165|0.25 53166|0.54167 53167|0.51389 53168|0.5 53169|0.63889 53170|0.69444 53171|0.73611 53172|0.76389 53173|0.5 53174|0.55556 53175|0.81944 53176|0.59722 53177|0.68056 53178|0.5 53179|0.54167 53180|0.625 53181|0.75 53182|0.52778 53183|0.5 53184|0.59722 53185|0.56944 53186|0.55556 53187|0.59722 53188|0.47222 53189|0.55556 53190|0.56944 53191|0.52778 53192|0.59722 53193|0.5 53194|0.83333 53195|0.5 53196|0.33333 53197|0.55556 53198|0.76389 53199|0.54167 53200|0.70833 53201|0.79167 53202|0.81944 53203|0.69444 53204|0.55556 53205|0.72222 53206|0.65278 53207|0.77778 53208|0.79167 53209|0.83333 53210|0.70833 53211|0.72222 53212|0.55556 53213|0.88889 53214|0.72222 53215|0.875 53216|0.76389 53217|0.65278 53218|0.76389 53219|0.69444 53220|0.5 53221|0.59722 53222|0.65278 53223|0.86111 53224|0.56944 53225|0.55556 53226|0.51389 53227|0.55556 53228|0.63889 53229|0.38889 53230|0.29167 53231|0.40278 53232|0.25 53233|0.72222 53234|0.66667 53235|0.44444 53236|0.5 53237|0.40278 53238|0.5 53239|0.56944 53240|0.61111 53241|0.55556 53242|0.5 53243|0.5 53244|0.47222 53245|0.38889 53246|0.52778 53247|0.58333 53248|0.27778 53249|0.94444 53250|0.83333 53251|0.88889 53252|0.77778 53253|0.5 53254|0.84722 53255|0.72222 53256|0.625 53257|0.97222 53258|0.84722 53259|0.77778 53260|0.33333 53261|0.77778 53262|0.76389 53263|0.56944 53264|0.625 53265|0.27778 53266|0.38889 53267|0.65278 53268|0.88889 53269|0.73611 53270|0.68056 53271|0.68056 53272|0.83333 53273|0.66667 53274|0.77778 53275|0.125 53276|0.79167 53277|0.79167 53278|0.83333 53279|0.77778 53280|0.79167 53281|0.86111 53282|0.66667 53283|0.47222 53284|0.77778 53285|0.77778 53286|0.91667 53287|0.33333 53288|0.125 53289|0.19444 53290|0.76389 53291|0.76389 53292|0.97222 53293|0.70833 53294|0.76389 53295|0.625 53296|0.77778 53297|0.76389 53298|0.77778 53299|0.76389 53300|0.83333 53301|0.83333 53302|0.65278 53303|0.69444 53304|0.93056 53305|0.76389 53306|0.54167 53307|0.70833 53308|0.93056 53309|0.75 53310|0.75 53311|0.56944 53312|0.56944 53313|0.73611 53314|0.80556 53315|0.625 53316|0.29167 53317|0.375 53318|0.88889 53319|0.80556 53320|0.79167 53321|0.79167 53322|0.73611 53323|0.72222 53324|0.72222 53325|0.79167 53326|0.75 53327|0.61111 53328|0.80556 53329|0.69444 53330|0.5 53331|0.31944 53332|0.72222 53333|0.79167 53334|0.45833 53335|0.44444 53336|0.54167 53337|0.47222 53338|0.76389 53339|0.76389 53340|0.69444 53341|0.81944 53342|0.61111 53343|0.76389 53344|0.625 53345|0.91667 53346|0.77778 53347|0.76389 53348|0.80556 53349|0.72222 53350|0.68056 53351|0.75 53352|0.47222 53353|0.59722 53354|0.73611 53355|0.72222 53356|0.86111 53357|0.83333 53358|0.83333 53359|0.79167 53360|0.38889 53361|0.56944 53362|0.61111 53363|0.47222 53364|0.76389 53365|0.5 53366|0.23611 53367|0.72222 53368|0.625 53369|0.625 53370|0.33333 53371|0.66667 53372|0.75 53373|0.66667 53374|0.61111 53375|0.55556 53376|0.76389 53377|0.79167 53378|0.70833 53379|0.69444 53380|0.73611 53381|0.5 53382|0.51389 53383|0.58333 53384|0.76389 53385|0.77778 53386|0.45833 53387|0.72222 53388|0.81944 53389|0.75 53390|0.70833 53391|0.81944 53392|0.72222 53393|0.36111 53394|0.54167 53395|0.81944 53396|0.84722 53397|0.66667 53398|0.56944 53399|0.44444 53400|0.83333 53401|0.66667 53402|0.75 53403|0.81944 53404|0.70833 53405|0.76389 53406|0.625 53407|0.65278 53408|0.61111 53409|0.75 53410|0.5 53411|0.68056 53412|0.75 53413|0.45833 53414|0.36111 53415|0.76389 53416|0.73611 53417|0.56944 53418|0.76389 53419|0.79167 53420|0.86111 53421|0.66667 53422|0.5 53423|0.51389 53424|0.59722 53425|0.75 53426|0.94444 53427|0.72222 53428|0.56944 53429|0.72222 53430|0.54167 53431|0.51389 53432|0.72222 53433|0.69444 53434|0.59722 53435|0.47222 53436|0.72222 53437|0.59722 53438|0.72222 53439|0.75 53440|0.66667 53441|0.5 53442|0.52778 53443|0.66667 53444|0.76389 53445|0.91667 53446|0.33333 53447|0.45833 53448|0.43056 53449|0.45833 53450|0.5 53451|0.55556 53452|0.76389 53453|0.625 53454|0.61111 53455|0.70833 53456|0.73611 53457|0.75 53458|0.30556 53459|0.29167 53460|0.43056 53461|0.5 53462|0.81944 53463|0.91667 53464|0.95833 53465|0.58333 53466|0.48611 53467|0.5 53468|0.68056 53469|0.61111 53470|0.72222 53471|0.56944 53472|0.51389 53473|0.20833 53474|0.75 53475|0.84722 53476|0.88889 53477|0.69444 53478|0.88889 53479|0.5 53480|0.625 53481|0.625 53482|0.68056 53483|0.80556 53484|0.76389 53485|0.81944 53486|0.76389 53487|0.68056 53488|0.5 53489|0.18056 53490|0.5 53491|0.88889 53492|0.77778 53493|0.69444 53494|0.94444 53495|0.875 53496|0.84722 53497|0.69444 53498|0.63889 53499|0.54167 53500|0.625 53501|0.88889 53502|0.68056 53503|0.72222 53504|0.75 53505|0.80556 53506|0.94444 53507|0.52778 53508|0.5 53509|0.43056 53510|0.44444 53511|0.56944 53512|0.63889 53513|0.81944 53514|0.48611 53515|0.44444 53516|0.36111 53517|0.56944 53518|0.5 53519|0.83333 53520|0.23611 53521|0.79167 53522|0.76389 53523|0.69444 53524|0.51389 53525|0.44444 53526|0.69444 53527|0.86111 53528|0.875 53529|0.61111 53530|0.27778 53531|0.47222 53532|0.40278 53533|0.58333 53534|0.69444 53535|0.68056 53536|0.73611 53537|0.72222 53538|0.33333 53539|0.68056 53540|0.56944 53541|0.52778 53542|0.625 53543|0.48611 53544|0.73611 53545|0.81944 53546|0.75 53547|0.5 53548|0.66667 53549|0.23611 53550|0.66667 53551|0.65278 53552|0.66667 53553|0.5 53554|0.27778 53555|0.47222 53556|0.23611 53557|0.86111 53558|0.625 53559|0.66667 53560|0.86111 53561|0.69444 53562|0.66667 53563|0.77778 53564|0.66667 53565|0.77778 53566|0.95833 53567|0.93056 53568|0.875 53569|0.76389 53570|0.72222 53571|0.75 53572|0.83333 53573|0.91667 53574|0.875 53575|0.93056 53576|0.88889 53577|0.79167 53578|0.66667 53579|0.73611 53580|0.875 53581|0.88889 53582|0.80556 53583|0.66667 53584|0.69444 53585|0.63889 53586|0.55556 53587|0.54167 53588|0.76389 53589|0.93056 53590|0.625 53591|0.66667 53592|0.52778 53593|0.73611 53594|0.84722 53595|0.55556 53596|0.86111 53597|0.86111 53598|0.65278 53599|0.66667 53600|0.5 53601|0.63889 53602|0.59722 53603|0.55556 53604|0.63889 53605|0.47222 53606|0.80556 53607|0.93056 53608|0.625 53609|0.66667 53610|0.61111 53611|0.44444 53612|0.55556 53613|0.51389 53614|0.55556 53615|0.56944 53616|0.375 53617|0.58333 53618|0.52778 53619|0.70833 53620|0.63889 53621|0.76389 53622|0.27778 53623|0.51389 53624|0.33333 53625|0.38889 53626|0.5 53627|0.73611 53628|0.625 53629|0.84722 53630|0.84722 53631|0.70833 53632|0.72222 53633|0.75 53634|0.48611 53635|0.61111 53636|0.625 53637|0.75 53638|0.65278 53639|0.66667 53640|0.73611 53641|0.63889 53642|0.72222 53643|0.65278 53644|0.66667 53645|0.72222 53646|0.70833 53647|0.79167 53648|0.79167 53649|0.68056 53650|0.59722 53651|0.5 53652|0.88889 53653|0.59722 53654|0.5 53655|0.66667 53656|0.66667 53657|0.58333 53658|0.55556 53659|0.76389 53660|0.77778 53661|0.93056 53662|0.97222 53663|0.91667 53664|0.79167 53665|0.72222 53666|0.77778 53667|0.59722 53668|0.41667 53669|0.55556 53670|0.5 53671|0.72222 53672|0.43056 53673|0.5 53674|0.5 53675|0.5 53676|0.54167 53677|0.875 53678|0.73611 53679|0.61111 53680|0.48611 53681|0.5 53682|0.58333 53683|0.30556 53684|0.625 53685|0.59722 53686|0.55556 53687|0.44444 53688|0.88889 53689|0.47222 53690|0.63889 53691|0.5 53692|0.83333 53693|0.77778 53694|0.83333 53695|0.66667 53696|0.66667 53697|0.73611 53698|0.83333 53699|0.80556 53700|0.52778 53701|0.56944 53702|0.51389 53703|0.54167 53704|0.61111 53705|0.77778 53706|0.83333 53707|0.55556 53708|0.45833 53709|0.69444 53710|0.65278 53711|0.51389 53712|0.51389 53713|0.61111 53714|0.38889 53715|0.73611 53716|0.54167 53717|0.43056 53718|0.97222 53719|0.75 53720|0.80556 53721|0.69444 53722|0.79167 53723|0.83333 53724|0.52778 53725|0.77778 53726|0.68056 53727|0.5 53728|0.55556 53729|0.56944 53730|0.5 53731|0.66667 53732|0.55556 53733|0.59722 53734|0.91667 53735|0.56944 53736|0.63889 53737|0.45833 53738|0.52778 53739|0.72222 53740|0.75 53741|0.77778 53742|0.68056 53743|0.76389 53744|0.73611 53745|0.84722 53746|0.23611 53747|0.98611 53748|0.33333 53749|0.51389 53750|0.91667 53751|0.56944 53752|0.66667 53753|0.26389 53754|0.88889 53755|0.54167 53756|0.20833 53757|0.69444 53758|0.51389 53759|0.83333 53760|0.56944 53761|0.77778 53762|0.83333 53763|0.75 53764|0.55556 53765|0.86111 53766|0.66667 53767|0.36111 53768|0.83333 53769|0.59722 53770|0.40278 53771|0.20833 53772|0.84722 53773|0.56944 53774|0.11111 53775|0.58333 53776|0.72222 53777|0.56944 53778|0.77778 53779|0.59722 53780|0.75 53781|0.72222 53782|0.77778 53783|0.66667 53784|0.65278 53785|0.69444 53786|0.5 53787|0.625 53788|0.31944 53789|0.54167 53790|0.73611 53791|0.51389 53792|0.38889 53793|0.55556 53794|0.5 53795|0.55556 53796|0.54167 53797|0.70833 53798|0.48611 53799|0.65278 53800|0.625 53801|0.5 53802|0.63889 53803|0.59722 53804|0.61111 53805|0.55556 53806|0.70833 53807|0.26389 53808|0.30556 53809|0.65278 53810|0.84722 53811|0.44444 53812|0.59722 53813|0.66667 53814|0.69444 53815|0.5 53816|0.63889 53817|0.73611 53818|0.72222 53819|0.63889 53820|0.72222 53821|0.77778 53822|0.5 53823|0.22222 53824|0.77778 53825|0.77778 53826|0.83333 53827|0.70833 53828|0.81944 53829|0.88889 53830|0.81944 53831|0.81944 53832|0.33333 53833|0.76389 53834|0.66667 53835|0.69444 53836|0.51389 53837|0.84722 53838|0.75 53839|0.70833 53840|0.61111 53841|0.5 53842|0.51389 53843|0.69444 53844|0.77778 53845|0.61111 53846|0.59722 53847|0.70833 53848|0.38889 53849|0.5 53850|0.61111 53851|0.44444 53852|0.52778 53853|0.5 53854|0.88889 53855|0.61111 53856|0.55556 53857|0.66667 53858|0.30556 53859|0.66667 53860|0.75 53861|0.5 53862|0.59722 53863|0.52778 53864|0.86111 53865|0.56944 53866|0.56944 53867|0.38889 53868|0.76389 53869|0.83333 53870|0.625 53871|0.52778 53872|0.80556 53873|0.875 53874|0.73611 53875|0.56944 53876|0.44444 53877|0.56944 53878|0.61111 53879|0.5 53880|0.51389 53881|0.625 53882|0.52778 53883|0.76389 53884|0.875 53885|0.15278 53886|0.44444 53887|0.44444 53888|0.56944 53889|0.55556 53890|0.56944 53891|0.63889 53892|0.70833 53893|0.88889 53894|0.5 53895|0.52778 53896|0.59722 53897|0.59722 53898|0.375 53899|0.5 53900|0.40278 53901|0.55556 53902|0.52778 53903|0.66667 53904|0.59722 53905|0.55556 53906|0.38889 53907|0.5 53908|0.54167 53909|0.72222 53910|0.63889 53911|0.48611 53912|0.055556 53913|0.30556 53914|0.5 53915|0.36111 53916|0.75 53917|0.66667 53918|0.76389 53919|0.77778 53920|0.65278 53921|0.75 53922|0.54167 53923|0.40278 53924|0.72222 53925|0.44444 53926|0.45833 53927|0.5 53928|0.5 53929|0.45833 53930|0.61111 53931|0.70833 53932|0.68056 53933|0.52778 53934|0.65278 53935|0.44444 53936|0.48611 53937|0.69444 53938|0.5 53939|0.65278 53940|0.70833 53941|0.5 53942|0.58333 53943|0.55556 53944|0.45833 53945|0.52778 53946|0.52778 53947|0.55556 53948|0.5 53949|0.51389 53950|0.40278 53951|0.75 53952|0.38889 53953|0.51389 53954|0.51389 53955|0.63889 53956|0.52778 53957|0.45833 53958|0.51389 53959|0.48611 53960|0.5 53961|0.30556 53962|0.45833 53963|0.38889 53964|0.73611 53965|0.5 53966|0.69444 53967|0.5 53968|0.59722 53969|0.55556 53970|0.84722 53971|0.73611 53972|0.83333 53973|0.51389 53974|0.66667 53975|0.36111 53976|0.5 53977|0.76389 53978|0.5 53979|0.63889 53980|0.5 53981|0.5 53982|0.55556 53983|0.52778 53984|0.51389 53985|0.5 53986|0.5 53987|0.68056 53988|0.5 53989|0.51389 53990|0.55556 53991|0.375 53992|0.5 53993|0.72222 53994|0.61111 53995|0.70833 53996|0.61111 53997|0.44444 53998|0.5 53999|0.51389 54000|0.40278 54001|0.44444 54002|0.59722 54003|0.5 54004|0.77778 54005|0.5 54006|0.27778 54007|0.72222 54008|0.875 54009|0.47222 54010|0.48611 54011|0.5 54012|0.38889 54013|0.52778 54014|0.5 54015|0.5 54016|0.44444 54017|0.5 54018|0.51389 54019|0.5 54020|0.5 54021|0.55556 54022|0.5 54023|0.5 54024|0.81944 54025|0.5 54026|0.625 54027|0.5 54028|0.52778 54029|0.72222 54030|0.58333 54031|0.66667 54032|0.52778 54033|0.48611 54034|0.63889 54035|0.5 54036|0.5 54037|0.27778 54038|0.47222 54039|0.45833 54040|0.31944 54041|0.19444 54042|0.5 54043|0.81944 54044|0.55556 54045|0.56944 54046|0.5 54047|0.56944 54048|0.5 54049|0.51389 54050|0.69444 54051|0.56944 54052|0.73611 54053|0.5 54054|0.33333 54055|0.33333 54056|0.27778 54057|0.93056 54058|0.86111 54059|0.70833 54060|0.5 54061|0.58333 54062|0.55556 54063|0.5 54064|0.79167 54065|0.40278 54066|0.73611 54067|0.63889 54068|0.77778 54069|0.72222 54070|0.52778 54071|0.59722 54072|0.80556 54073|0.79167 54074|0.5 54075|0.66667 54076|0.80556 54077|0.72222 54078|0.70833 54079|0.80556 54080|0.52778 54081|0.55556 54082|0.51389 54083|0.5 54084|0.55556 54085|0.45833 54086|0.18056 54087|0.5 54088|0.5 54089|0.55556 54090|0.55556 54091|0.61111 54092|0.59722 54093|0.90278 54094|0.625 54095|0.59722 54096|0.63889 54097|0.63889 54098|0.79167 54099|0.69444 54100|0.5 54101|0.65278 54102|0.72222 54103|0.625 54104|0.79167 54105|0.5 54106|0.54167 54107|0.083333 54108|0.5 54109|0.69444 54110|0.5 54111|0.38889 54112|0.5 54113|0.625 54114|0.5 54115|0.55556 54116|0.47222 54117|0.47222 54118|0.61111 54119|0.5 54120|0.41667 54121|0.5 54122|0.55556 54123|0.51389 54124|0.58333 54125|0.56944 54126|0.68056 54127|0.45833 54128|0.66667 54129|0.55556 54130|0.22222 54131|0.33333 54132|0.61111 54133|0.56944 54134|0.55556 54135|0.33333 54136|0.26389 54137|0.5 54138|0.5 54139|0.61111 54140|0.5 54141|0.5 54142|0.55556 54143|0.51389 54144|0.68056 54145|0.54167 54146|0.45833 54147|0.55556 54148|0.69444 54149|0.65278 54150|0.44444 54151|0.5 54152|0.5 54153|0.58333 54154|0.23611 54155|0.72222 54156|0.79167 54157|0.65278 54158|0.91667 54159|0.47222 54160|0.76389 54161|0.5 54162|0.625 54163|0.59722 54164|0.65278 54165|0.55556 54166|0.79167 54167|0.5 54168|0.51389 54169|0.33333 54170|0.66667 54171|0.5 54172|0.5 54173|0.51389 54174|0.52778 54175|0.52778 54176|0.51389 54177|0.76389 54178|0.55556 54179|0.66667 54180|0.5 54181|0.68056 54182|0.69444 54183|0.5 54184|0.65278 54185|0.5 54186|0.5 54187|0.90278 54188|0.44444 54189|0.44444 54190|0.19444 54191|0.5 54192|0.52778 54193|0.44444 54194|0.5 54195|0.34722 54196|0.41667 54197|0.56944 54198|0.5 54199|0.51389 54200|0.5 54201|0.70833 54202|0.81944 54203|0.86111 54204|0.94444 54205|0.54167 54206|0.72222 54207|0.5 54208|0.29167 54209|0.73611 54210|0.72222 54211|0.30556 54212|0.30556 54213|0.73611 54214|0.27778 54215|0.48611 54216|0.66667 54217|0.5 54218|0.51389 54219|0.61111 54220|0.47222 54221|0.38889 54222|0.79167 54223|0.61111 54224|0.80556 54225|0.61111 54226|0.76389 54227|0.76389 54228|0.5 54229|0.76389 54230|0.61111 54231|0.68056 54232|0.61111 54233|0.51389 54234|0.5 54235|0.5 54236|0.58333 54237|0.76389 54238|0.93056 54239|0.51389 54240|0.58333 54241|0.44444 54242|0.36111 54243|0.38889 54244|0.51389 54245|0.27778 54246|0.20833 54247|0.70833 54248|0.54167 54249|0.33333 54250|0.56944 54251|0.45833 54252|0.33333 54253|0.43056 54254|0.5 54255|0.61111 54256|0.5 54257|0.61111 54258|0.58333 54259|0.55556 54260|0.51389 54261|0.75 54262|0.45833 54263|0.31944 54264|0.11111 54265|0.55556 54266|0.58333 54267|0.58333 54268|0.16667 54269|0.36111 54270|0.38889 54271|0.55556 54272|0.66667 54273|0.77778 54274|0.5 54275|0.31944 54276|0.81944 54277|0.81944 54278|0.44444 54279|0.625 54280|0.375 54281|0.5 54282|0.44444 54283|0.5 54284|0.36111 54285|0.44444 54286|0.625 54287|0.44444 54288|0.69444 54289|0.5 54290|0.51389 54291|0.59722 54292|0.55556 54293|0.33333 54294|0.47222 54295|0.52778 54296|0.52778 54297|0.52778 54298|0.51389 54299|0.59722 54300|0.375 54301|0.34722 54302|0.47222 54303|0.40278 54304|0.77778 54305|0.81944 54306|0.625 54307|0.5 54308|0.5 54309|0.81944 54310|0.5 54311|0.5 54312|0.51389 54313|0.27778 54314|0.36111 54315|0.33333 54316|0.55556 54317|0.59722 54318|0.5 54319|0.54167 54320|0.58333 54321|0.5 54322|0.5 54323|0.55556 54324|0.58333 54325|0.33333 54326|0.40278 54327|0.30556 54328|0.375 54329|0.44444 54330|0.18056 54331|0.48611 54332|0.43056 54333|0.44444 54334|0.40278 54335|0.38889 54336|0.5 54337|0.61111 54338|0.51389 54339|0.44444 54340|0.44444 54341|0.27778 54342|0.33333 54343|0.44444 54344|0.51389 54345|0.5 54346|0.43056 54347|0.5 54348|0.69444 54349|0.875 54350|0.79167 54351|0.77778 54352|0.73611 54353|0.54167 54354|0.52778 54355|0.625 54356|0.63889 54357|0.5 54358|0.54167 54359|0.55556 54360|0.55556 54361|0.61111 54362|0.5 54363|0.38889 54364|0.44444 54365|0.44444 54366|0.44444 54367|0.30556 54368|0.51389 54369|0.33333 54370|0.5 54371|0.61111 54372|0.26389 54373|0.375 54374|0.72222 54375|0.47222 54376|0.33333 54377|0.40278 54378|0.43056 54379|0.41667 54380|0.47222 54381|0.65278 54382|0.55556 54383|0.41667 54384|0.61111 54385|0.5 54386|0.5 54387|0.61111 54388|0.59722 54389|0.75 54390|0.625 54391|0.69444 54392|0.55556 54393|0.61111 54394|0.66667 54395|0.5 54396|0.73611 54397|0.63889 54398|0.59722 54399|0.51389 54400|0.55556 54401|0.44444 54402|0.55556 54403|0.61111 54404|0.5 54405|0.66667 54406|0.55556 54407|0.55556 54408|0.59722 54409|0.68056 54410|0.72222 54411|0.76389 54412|0.73611 54413|0.66667 54414|0.93056 54415|0.94444 54416|0.69444 54417|0.5 54418|0.81944 54419|0.93056 54420|0.97222 54421|0.75 54422|0.72222 54423|0.34722 54424|0.75 54425|0.40278 54426|0.20833 54427|0.30556 54428|0.22222 54429|0.43056 54430|0.38889 54431|0.47222 54432|0.66667 54433|0.5 54434|0.61111 54435|0.66667 54436|0.625 54437|0.68056 54438|0.45833 54439|0.68056 54440|0.54167 54441|0.625 54442|0.44444 54443|0.36111 54444|0.47222 54445|0.47222 54446|0.41667 54447|0.5 54448|0.375 54449|0.48611 54450|0.59722 54451|0.55556 54452|0.61111 54453|0.61111 54454|0.38889 54455|0.48611 54456|0.52778 54457|0.34722 54458|0.38889 54459|0.44444 54460|0.56944 54461|0.38889 54462|0.23611 54463|0.48611 54464|0.38889 54465|0.41667 54466|0.55556 54467|0.5 54468|0.72222 54469|0.59722 54470|0.55556 54471|0.80556 54472|0.66667 54473|0.76389 54474|0.75 54475|0.47222 54476|0.55556 54477|0.55556 54478|0.44444 54479|0.77778 54480|0.77778 54481|0.83333 54482|0.86111 54483|0.84722 54484|0.70833 54485|0.91667 54486|0.5 54487|0.72222 54488|0.5 54489|0.5 54490|0.45833 54491|0.22222 54492|0.79167 54493|0.51389 54494|0.52778 54495|0.81944 54496|0.88889 54497|0.48611 54498|0.5 54499|0.11111 54500|0.47222 54501|0.5 54502|0.76389 54503|0.72222 54504|0.5 54505|0.5 54506|0.40278 54507|0.5 54508|0.54167 54509|0.59722 54510|0.72222 54511|0.58333 54512|0.38889 54513|0.45833 54514|0.48611 54515|0.66667 54516|0.63889 54517|0.5 54518|0.66667 54519|0.44444 54520|0.5 54521|0.59722 54522|0.65278 54523|0.59722 54524|0.5 54525|0.47222 54526|0.5 54527|0.55556 54528|0.86111 54529|0.69444 54530|0.56944 54531|0.59722 54532|0.55556 54533|0.68056 54534|0.59722 54535|0.45833 54536|0.66667 54537|0.63889 54538|0.38889 54539|0.30556 54540|0.54167 54541|0.36111 54542|0.5 54543|0.44444 54544|0.77778 54545|0.69444 54546|0.625 54547|0.84722 54548|0.63889 54549|0.63889 54550|0.61111 54551|0.5 54552|0.51389 54553|0.66667 54554|0.79167 54555|0.90278 54556|0.68056 54557|0.72222 54558|0.69444 54559|0.73611 54560|0.73611 54561|0.84722 54562|0.73611 54563|0.54167 54564|0.58333 54565|0.61111 54566|0.875 54567|0.875 54568|0.75 54569|0.59722 54570|0.77778 54571|0.77778 54572|0.68056 54573|0.72222 54574|0.66667 54575|0.77778 54576|0.55556 54577|0.77778 54578|0.44444 54579|0.63889 54580|0.75 54581|0.875 54582|0.81944 54583|0.38889 54584|0.66667 54585|0.73611 54586|0.55556 54587|0.30556 54588|0.51389 54589|0.44444 54590|0.52778 54591|0.44444 54592|0.54167 54593|0.68056 54594|0.75 54595|0.66667 54596|0.66667 54597|0.68056 54598|0.75 54599|0.73611 54600|0.70833 54601|0.66667 54602|0.73611 54603|0.72222 54604|0.66667 54605|0.44444 54606|0.51389 54607|0.5 54608|0.5 54609|0.36111 54610|0.5 54611|0.65278 54612|0.5 54613|0.54167 54614|0.5 54615|0.58333 54616|0.48611 54617|0.72222 54618|0.61111 54619|0.625 54620|0.54167 54621|0.5 54622|0.51389 54623|0.44444 54624|0.52778 54625|0.5 54626|0.41667 54627|0.5 54628|0.5 54629|0.80556 54630|0.77778 54631|0.55556 54632|0.54167 54633|0.75 54634|0.41667 54635|0.55556 54636|0.58333 54637|0.70833 54638|0.63889 54639|0.5 54640|0.5 54641|0.5 54642|0.58333 54643|0.5 54644|0.55556 54645|0.68056 54646|0.88889 54647|0.70833 54648|0.72222 54649|0.61111 54650|0.5 54651|0.5 54652|0.51389 54653|0.51389 54654|0.65278 54655|0.43056 54656|0.54167 54657|0.52778 54658|0.76389 54659|0.59722 54660|0.41667 54661|0.83333 54662|0.66667 54663|0.63889 54664|0.73611 54665|0.68056 54666|0.40278 54667|0.5 54668|0.48611 54669|0.61111 54670|0.5 54671|0.33333 54672|0.36111 54673|0.52778 54674|0.83333 54675|0.47222 54676|0.41667 54677|0.54167 54678|0.30556 54679|0.34722 54680|0.34722 54681|0.61111 54682|0.55556 54683|0.33333 54684|0.375 54685|0.34722 54686|0.33333 54687|0.5 54688|0.5 54689|0.65278 54690|0.48611 54691|0.51389 54692|0.69444 54693|0.56944 54694|0.80556 54695|0.77778 54696|0.79167 54697|0.5 54698|0.44444 54699|0.65278 54700|0.54167 54701|0.5 54702|0.5 54703|0.5 54704|0.5 54705|0.38889 54706|0.76389 54707|0.875 54708|0.70833 54709|0.55556 54710|0.61111 54711|0.5 54712|0.61111 54713|0.5 54714|0.58333 54715|0.61111 54716|0.58333 54717|0.72222 54718|0.91667 54719|0.33333 54720|0.5 54721|0.5 54722|0.33333 54723|0.40278 54724|0.45833 54725|0.54167 54726|0.48611 54727|0.41667 54728|0.47222 54729|0.58333 54730|0.76389 54731|0.41667 54732|0.44444 54733|0.51389 54734|0.44444 54735|0.44444 54736|0.5 54737|0.16667 54738|0.16667 54739|0.55556 54740|0.52778 54741|0.33333 54742|0.45833 54743|0.5 54744|0.5 54745|0.41667 54746|0.55556 54747|0.30556 54748|0.5 54749|0.5 54750|0.5 54751|0.36111 54752|0.38889 54753|0.5 54754|0.48611 54755|0.45833 54756|0.5 54757|0.5 54758|0.5 54759|0.51389 54760|0.44444 54761|0.44444 54762|0.36111 54763|0.61111 54764|0.66667 54765|0.84722 54766|0.75 54767|0.38889 54768|0.43056 54769|0.45833 54770|0.65278 54771|0.58333 54772|0.55556 54773|0.63889 54774|0.61111 54775|0.625 54776|0.44444 54777|0.5 54778|0.61111 54779|0.56944 54780|0.625 54781|0.47222 54782|0.61111 54783|0.81944 54784|0.55556 54785|0.40278 54786|0.5 54787|0.52778 54788|0.83333 54789|0.76389 54790|0.58333 54791|0.52778 54792|0.38889 54793|0.5 54794|0.48611 54795|0.625 54796|0.47222 54797|0.72222 54798|0.55556 54799|0.44444 54800|0.58333 54801|0.51389 54802|0.43056 54803|0.61111 54804|0.58333 54805|0.55556 54806|0.66667 54807|0.61111 54808|0.66667 54809|0.81944 54810|0.63889 54811|0.51389 54812|0.47222 54813|0.41667 54814|0.68056 54815|0.77778 54816|0.26389 54817|0.68056 54818|0.48611 54819|0.38889 54820|0.875 54821|0.56944 54822|0.5 54823|0.34722 54824|0.69444 54825|0.59722 54826|0.22222 54827|0.75 54828|0.44444 54829|0.5 54830|0.80556 54831|0.5 54832|0.65278 54833|0.51389 54834|0.41667 54835|0.55556 54836|0.55556 54837|0.5 54838|0.5 54839|0.80556 54840|0.69444 54841|0.72222 54842|0.66667 54843|0.5 54844|0.79167 54845|0.61111 54846|0.63889 54847|0.625 54848|0.69444 54849|0.45833 54850|0.45833 54851|0.52778 54852|0.58333 54853|0.66667 54854|0.875 54855|0.51389 54856|0.47222 54857|0.25 54858|0.56944 54859|0.66667 54860|0.48611 54861|0.51389 54862|0.5 54863|0.875 54864|0.63889 54865|0.55556 54866|0.70833 54867|0.625 54868|0.83333 54869|0.5 54870|0.26389 54871|0.375 54872|0.41667 54873|0.51389 54874|0.55556 54875|0.69444 54876|0.40278 54877|0.48611 54878|0.5 54879|0.77778 54880|0.61111 54881|0.66667 54882|0.72222 54883|0.80556 54884|0.81944 54885|0.54167 54886|0.44444 54887|0.54167 54888|0.5 54889|0.69444 54890|0.31944 54891|0.80556 54892|0.75 54893|0.41667 54894|0.47222 54895|0.86111 54896|0.66667 54897|0.80556 54898|0.66667 54899|0.84722 54900|0.88889 54901|0.61111 54902|0.51389 54903|0.44444 54904|0.61111 54905|0.55556 54906|0.79167 54907|0.66667 54908|0.72222 54909|0.70833 54910|0.5 54911|0.69444 54912|0.59722 54913|0.90278 54914|0.73611 54915|0.43056 54916|0.5 54917|0.44444 54918|0.56944 54919|0.41667 54920|0.5 54921|0.625 54922|0.70833 54923|0.76389 54924|0.54167 54925|0.55556 54926|0.59722 54927|0.5 54928|0.55556 54929|0.55556 54930|0.58333 54931|0.75 54932|0.73611 54933|0.65278 54934|0.63889 54935|0.59722 54936|0.86111 54937|0.77778 54938|0.81944 54939|0.5 54940|0.5 54941|0.66667 54942|0.5 54943|0.51389 54944|0.625 54945|0.55556 54946|0.48611 54947|0.44444 54948|0.5 54949|0.66667 54950|0.58333 54951|0.58333 54952|0.77778 54953|0.23611 54954|0.33333 54955|0.5 54956|0.38889 54957|0.5 54958|0.33333 54959|0.44444 54960|0.43056 54961|0.58333 54962|0.58333 54963|0.83333 54964|0.75 54965|0.65278 54966|0.55556 54967|0.31944 54968|0.47222 54969|0.5 54970|0.52778 54971|0.47222 54972|0.5 54973|0.47222 54974|0.77778 54975|0.58333 54976|0.5 54977|0.55556 54978|0.27778 54979|0.5 54980|0.58333 54981|0.5 54982|0.56944 54983|0.45833 54984|0.5 54985|0.76389 54986|0.56944 54987|0.58333 54988|0.5 54989|0.81944 54990|0.84722 54991|0.38889 54992|0.5 54993|0.72222 54994|0.73611 54995|0.5 54996|0.66667 54997|0.47222 54998|0.33333 54999|0.38889 55000|0.55556 55001|0.5 55002|0.66667 55003|0.51389 55004|0.5 55005|0.88889 55006|0.55556 55007|0.61111 55008|0.66667 55009|0.5 55010|0.70833 55011|0.61111 55012|0.51389 55013|0.61111 55014|0.69444 55015|0.48611 55016|0.5 55017|0.36111 55018|0.66667 55019|0.59722 55020|0.48611 55021|0.44444 55022|0.11111 55023|0.875 55024|0.51389 55025|0.52778 55026|0.5 55027|0.5 55028|0.5 55029|0.625 55030|0.5 55031|0.54167 55032|0.41667 55033|0.48611 55034|0.55556 55035|0.40278 55036|0.54167 55037|0.44444 55038|0.44444 55039|0.40278 55040|0.40278 55041|0.47222 55042|0.52778 55043|0.66667 55044|0.38889 55045|0.72222 55046|0.5 55047|0.36111 55048|0.48611 55049|0.69444 55050|0.77778 55051|0.86111 55052|0.61111 55053|0.47222 55054|0.58333 55055|0.5 55056|0.55556 55057|0.5 55058|0.5 55059|0.5 55060|0.5 55061|0.5 55062|0.5 55063|0.5 55064|0.5 55065|0.5 55066|0.5 55067|0.72222 55068|0.66667 55069|0.58333 55070|0.70833 55071|0.80556 55072|0.69444 55073|0.5 55074|0.59722 55075|0.34722 55076|0.29167 55077|0.81944 55078|0.58333 55079|0.81944 55080|0.33333 55081|0.38889 55082|0.33333 55083|0.73611 55084|0.38889 55085|0.70833 55086|0.58333 55087|0.47222 55088|0.48611 55089|0.43056 55090|0.41667 55091|0.36111 55092|0.31944 55093|0.36111 55094|0.48611 55095|0.52778 55096|0.83333 55097|0.56944 55098|0.58333 55099|0.70833 55100|0.5 55101|0.45833 55102|0.54167 55103|0.51389 55104|0.51389 55105|0.52778 55106|0.52778 55107|0.47222 55108|0.625 55109|0.52778 55110|0.5 55111|0.5 55112|0.44444 55113|0.20833 55114|0.43056 55115|0.5 55116|0.5 55117|0.43056 55118|0.55556 55119|0.47222 55120|0.80556 55121|0.31944 55122|0.33333 55123|0.31944 55124|0.43056 55125|0.40278 55126|0.54167 55127|0.38889 55128|0.72222 55129|0.36111 55130|0.68056 55131|0.61111 55132|0.44444 55133|0.41667 55134|0.5 55135|0.47222 55136|0.20833 55137|0.5 55138|0.75 55139|0.61111 55140|0.5 55141|0.63889 55142|0.58333 55143|0.5 55144|0.5 55145|0.75 55146|0.66667 55147|0.5 55148|0.84722 55149|0.63889 55150|0.45833 55151|0.51389 55152|0.44444 55153|0.59722 55154|0.48611 55155|0.38889 55156|0.5 55157|0.5 55158|0.63889 55159|0.38889 55160|0.55556 55161|0.5 55162|0.65278 55163|0.55556 55164|0.77778 55165|0.5 55166|0.5 55167|0.36111 55168|0.44444 55169|0.65278 55170|0.70833 55171|0.45833 55172|0.5 55173|0.56944 55174|0.59722 55175|0.5 55176|0.51389 55177|0.5 55178|0.66667 55179|0.34722 55180|0.63889 55181|0.5 55182|0.47222 55183|0.5 55184|0.33333 55185|0.33333 55186|0.5 55187|0.5 55188|0.5 55189|0.44444 55190|0.45833 55191|0.5 55192|0.5 55193|0.5 55194|0.56944 55195|0.55556 55196|0.58333 55197|0.55556 55198|0.63889 55199|0.45833 55200|0.36111 55201|0.69444 55202|0.5 55203|0.56944 55204|0.56944 55205|0.5 55206|0.5 55207|0.56944 55208|0.5 55209|0.58333 55210|0.5 55211|0.5 55212|0.5 55213|0.55556 55214|0.61111 55215|0.51389 55216|0.5 55217|0.51389 55218|0.73611 55219|0.41667 55220|0.5 55221|0.5 55222|0.5 55223|0.5 55224|0.73611 55225|0.59722 55226|0.5 55227|0.63889 55228|0.55556 55229|0.5 55230|0.69444 55231|0.625 55232|0.5 55233|0.65278 55234|0.5 55235|0.68056 55236|0.58333 55237|0.63889 55238|0.5 55239|0.59722 55240|0.51389 55241|0.5 55242|0.5 55243|0.5 55244|0.5 55245|0.38889 55246|0.5 55247|0.54167 55248|0.5 55249|0.44444 55250|0.61111 55251|0.29167 55252|0.5 55253|0.70833 55254|0.625 55255|0.375 55256|0.5 55257|0.55556 55258|0.84722 55259|0.29167 55260|0.72222 55261|0.45833 55262|0.52778 55263|0.55556 55264|0.5 55265|0.5 55266|0.33333 55267|0.44444 55268|0.65278 55269|0.5 55270|0.36111 55271|0.77778 55272|0.83333 55273|0.375 55274|0.47222 55275|0.5 55276|0.55556 55277|0.55556 55278|0.52778 55279|0.66667 55280|0.30556 55281|0.43056 55282|0.55556 55283|0.36111 55284|0.5 55285|0.51389 55286|0.5 55287|0.55556 55288|0.13889 55289|0.625 55290|0.97222 55291|0.58333 55292|0.61111 55293|0.59722 55294|0.30556 55295|0.55556 55296|0.5 55297|0.75 55298|0.83333 55299|0.56944 55300|0.61111 55301|0.5 55302|0.52778 55303|0.75 55304|0.56944 55305|0.44444 55306|0.72222 55307|0.54167 55308|0.72222 55309|0.73611 55310|0.5 55311|0.44444 55312|0.5 55313|0.5 55314|0.5 55315|0.47222 55316|0.5 55317|0.55556 55318|0.38889 55319|0.51389 55320|0.65278 55321|0.5 55322|0.77778 55323|0.63889 55324|0.30556 55325|0.59722 55326|0.55556 55327|0.5 55328|0.375 55329|0.5 55330|0.77778 55331|0.65278 55332|0.34722 55333|0.55556 55334|0.5 55335|0.625 55336|0.375 55337|0.5 55338|0.38889 55339|0.31944 55340|0.5 55341|0.58333 55342|0.22222 55343|0.58333 55344|0.72222 55345|0.90278 55346|0.5 55347|0.5 55348|0.40278 55349|0.70833 55350|0.56944 55351|0.83333 55352|0.55556 55353|0.61111 55354|0.80556 55355|0.48611 55356|0.58333 55357|0.70833 55358|0.68056 55359|0.59722 55360|0.68056 55361|0.52778 55362|0.66667 55363|0.5 55364|0.58333 55365|0.66667 55366|0.625 55367|0.73611 55368|0.5 55369|0.5 55370|0.79167 55371|0.54167 55372|0.5 55373|0.41667 55374|0.54167 55375|0.73611 55376|0.70833 55377|0.52778 55378|0.55556 55379|0.61111 55380|0.5 55381|0.44444 55382|0.5 55383|0.5 55384|0.5 55385|0.41667 55386|0.55556 55387|0.5 55388|0.5 55389|0.52778 55390|0.88889 55391|0.54167 55392|0.5 55393|0.66667 55394|0.44444 55395|0.63889 55396|0.51389 55397|0.55556 55398|0.5 55399|0.38889 55400|0.55556 55401|0.79167 55402|0.66667 55403|0.47222 55404|0.5 55405|0.5 55406|0.45833 55407|0.61111 55408|0.5 55409|0.69444 55410|0.38889 55411|0.61111 55412|0.79167 55413|0.61111 55414|0.5 55415|0.66667 55416|0.5 55417|0.52778 55418|0.79167 55419|0.5 55420|0.375 55421|0.51389 55422|0.61111 55423|0.5 55424|0.56944 55425|0.51389 55426|0.48611 55427|0.5 55428|0.5 55429|0.25 55430|0.61111 55431|0.47222 55432|0.5 55433|0.5 55434|0.625 55435|0.58333 55436|0.66667 55437|0.56944 55438|0.30556 55439|0.55556 55440|0.65278 55441|0.38889 55442|0.5 55443|0.59722 55444|0.5 55445|0.55556 55446|0.5 55447|0.51389 55448|0.5 55449|0.55556 55450|0.375 55451|0.55556 55452|0.5 55453|0.5 55454|0.5 55455|0.80556 55456|0.5 55457|0.5 55458|0.55556 55459|0.68056 55460|0.55556 55461|0.68056 55462|0.5 55463|0.66667 55464|0.55556 55465|0.54167 55466|0.5 55467|0.44444 55468|0.5 55469|0.5 55470|0.5 55471|0.69444 55472|0.5 55473|0.5 55474|0.5 55475|0.5 55476|0.5 55477|0.52778 55478|0.69444 55479|0.5 55480|0.55556 55481|0.41667 55482|0.72222 55483|0.625 55484|0.52778 55485|0.56944 55486|0.55556 55487|0.52778 55488|0.5 55489|0.5 55490|0.41667 55491|0.5 55492|0.68056 55493|0.72222 55494|0.5 55495|0.44444 55496|0.51389 55497|0.40278 55498|0.41667 55499|0.63889 55500|0.51389 55501|0.38889 55502|0.72222 55503|0.40278 55504|0.55556 55505|0.5 55506|0.72222 55507|0.5 55508|0.51389 55509|0.48611 55510|0.66667 55511|0.56944 55512|0.5 55513|0.51389 55514|0.5 55515|0.70833 55516|0.5 55517|0.65278 55518|0.77778 55519|0.5 55520|0.70833 55521|0.44444 55522|0.51389 55523|0.51389 55524|0.5 55525|0.58333 55526|0.5 55527|0.5 55528|0.55556 55529|0.51389 55530|0.44444 55531|0.54167 55532|0.58333 55533|0.63889 55534|0.5 55535|0.5 55536|0.51389 55537|0.22222 55538|0.5 55539|0.5 55540|0.22222 55541|0.51389 55542|0.5 55543|0.77778 55544|0.52778 55545|0.5 55546|0.5 55547|0.5 55548|0.86111 55549|0.625 55550|0.90278 55551|0.79167 55552|0.5 55553|0.5 55554|0.33333 55555|0.73611 55556|0.47222 55557|0.56944 55558|0.65278 55559|0.5 55560|0.47222 55561|0.40278 55562|0.5 55563|0.54167 55564|0.68056 55565|0.43056 55566|0.45833 55567|0.5 55568|0.55556 55569|0.5 55570|0.5 55571|0.56944 55572|0.61111 55573|0.5 55574|0.34722 55575|0.75 55576|0.38889 55577|0.52778 55578|0.44444 55579|0.54167 55580|0.5 55581|0.55556 55582|0.5 55583|0.51389 55584|0.66667 55585|0.38889 55586|0.44444 55587|0.52778 55588|0.61111 55589|0.63889 55590|0.5 55591|0.5 55592|0.54167 55593|0.5 55594|0.5 55595|0.5 55596|0.68056 55597|0.5 55598|0.61111 55599|0.44444 55600|0.51389 55601|0.66667 55602|0.94444 55603|0.33333 55604|0.5 55605|0.51389 55606|0.55556 55607|0.44444 55608|0.56944 55609|0.86111 55610|0.68056 55611|0.66667 55612|0.5 55613|0.51389 55614|0.33333 55615|0.63889 55616|0.51389 55617|0.5 55618|0.61111 55619|0.29167 55620|0.88889 55621|0.55556 55622|0.5 55623|0.5 55624|0.5 55625|0.5 55626|0.5 55627|0.51389 55628|0.5 55629|0.72222 55630|0.45833 55631|0.63889 55632|0.5 55633|0.65278 55634|0.90278 55635|0.61111 55636|0.5 55637|0.86111 55638|0.5 55639|0.34722 55640|0.5 55641|0.29167 55642|0.5 55643|0.54167 55644|0.56944 55645|0.55556 55646|0.58333 55647|0.5 55648|0.69444 55649|0.61111 55650|0.63889 55651|0.5 55652|0.55556 55653|0.55556 55654|0.75 55655|0.5 55656|0.61111 55657|0.48611 55658|0.5 55659|0.77778 55660|0.61111 55661|0.48611 55662|0.5 55663|0.83333 55664|0.5 55665|0.51389 55666|0.5 55667|0.5 55668|0.61111 55669|0.5 55670|0.375 55671|0.44444 55672|0.58333 55673|0.33333 55674|0.36111 55675|0.27778 55676|0.66667 55677|0.47222 55678|0.86111 55679|0.54167 55680|0.52778 55681|0.77778 55682|0.73611 55683|0.81944 55684|0.70833 55685|0.56944 55686|0.70833 55687|0.66667 55688|0.72222 55689|0.5 55690|0.65278 55691|0.65278 55692|0.61111 55693|0.72222 55694|0.31944 55695|0.41667 55696|0.72222 55697|0.5 55698|0.55556 55699|0.72222 55700|0.625 55701|0.43056 55702|0.45833 55703|0.80556 55704|0.55556 55705|0.55556 55706|0.55556 55707|0.44444 55708|0.58333 55709|0.72222 55710|0.375 55711|0.40278 55712|0.51389 55713|0.5 55714|0.72222 55715|0.5 55716|0.66667 55717|0.38889 55718|0.5 55719|0.56944 55720|0.58333 55721|0.73611 55722|0.73611 55723|0.63889 55724|0.68056 55725|0.34722 55726|0.5 55727|0.48611 55728|0.56944 55729|0.55556 55730|0.55556 55731|0.5 55732|0.5 55733|0.5 55734|0.5 55735|0.5 55736|0.48611 55737|0.5 55738|0.5 55739|0.66667 55740|0.72222 55741|0.61111 55742|0.48611 55743|0.34722 55744|0.55556 55745|0.5 55746|0.45833 55747|0.5 55748|0.54167 55749|0.55556 55750|0.56944 55751|0.61111 55752|0.625 55753|0.5 55754|0.59722 55755|0.66667 55756|0.5 55757|0.52778 55758|0.59722 55759|0.55556 55760|0.5 55761|0.56944 55762|0.51389 55763|0.5 55764|0.56944 55765|0.5 55766|0.88889 55767|0.48611 55768|0.47222 55769|0.54167 55770|0.45833 55771|0.625 55772|0.63889 55773|0.5 55774|0.69444 55775|0.69444 55776|0.84722 55777|0.29167 55778|0.48611 55779|0.375 55780|0.75 55781|0.88889 55782|0.75 55783|0.55556 55784|0.83333 55785|0.94444 55786|0.91667 55787|0.94444 55788|0.5 55789|0.51389 55790|0.72222 55791|0.875 55792|0.5 55793|0.76389 55794|0.72222 55795|0.55556 55796|0.5 55797|0.43056 55798|0.45833 55799|0.5 55800|0.33333 55801|0.38889 55802|0.5 55803|0.65278 55804|0.55556 55805|0.45833 55806|0.44444 55807|0.44444 55808|0.33333 55809|0.47222 55810|0.77778 55811|0.44444 55812|0.41667 55813|0.43056 55814|0.5 55815|0.5 55816|0.61111 55817|0.51389 55818|0.5 55819|0.5 55820|0.52778 55821|0.61111 55822|0.61111 55823|0.625 55824|0.5 55825|0.70833 55826|0.59722 55827|0.70833 55828|0.61111 55829|0.59722 55830|0.63889 55831|0.54167 55832|0.5 55833|0.76389 55834|0.72222 55835|0.5 55836|0.5 55837|0.44444 55838|0.52778 55839|0.5 55840|0.5 55841|0.61111 55842|0.52778 55843|0.61111 55844|0.65278 55845|0.55556 55846|0.5 55847|0.5 55848|0.5 55849|0.61111 55850|0.61111 55851|0.47222 55852|0.55556 55853|0.5 55854|0.63889 55855|0.80556 55856|0.76389 55857|0.86111 55858|0.5 55859|0.27778 55860|0.5 55861|0.52778 55862|0.43056 55863|0.66667 55864|0.48611 55865|0.44444 55866|0.5 55867|0.52778 55868|0.5 55869|0.52778 55870|0.625 55871|0.5 55872|0.5 55873|0.5 55874|0.5 55875|0.5 55876|0.52778 55877|0.61111 55878|0.83333 55879|0.77778 55880|0.44444 55881|0.68056 55882|0.44444 55883|0.44444 55884|0.45833 55885|0.58333 55886|0.80556 55887|0.41667 55888|0.36111 55889|0.31944 55890|0.43056 55891|0.45833 55892|0.72222 55893|0.54167 55894|0.36111 55895|0.15278 55896|0.47222 55897|0.47222 55898|0.29167 55899|0.34722 55900|0.125 55901|0.55556 55902|0.5 55903|0.5 55904|0.5 55905|0.44444 55906|0.41667 55907|0.5 55908|0.5 55909|0.48611 55910|0.54167 55911|0.5 55912|0.55556 55913|0.70833 55914|0.55556 55915|0.5 55916|0.5 55917|0.58333 55918|0.52778 55919|0.43056 55920|0.5 55921|0.5 55922|0.63889 55923|0.5 55924|0.55556 55925|0.44444 55926|0.72222 55927|0.40278 55928|0.56944 55929|0.43056 55930|0.375 55931|0.5 55932|0.41667 55933|0.375 55934|0.25 55935|0.44444 55936|0.59722 55937|0.63889 55938|0.59722 55939|0.5 55940|0.34722 55941|0.875 55942|0.58333 55943|0.61111 55944|0.86111 55945|0.20833 55946|0.5 55947|0.38889 55948|0.52778 55949|0.76389 55950|0.5 55951|0.91667 55952|0.38889 55953|0.18056 55954|0.63889 55955|0.5 55956|0.45833 55957|0.75 55958|0.58333 55959|0.81944 55960|0.66667 55961|0.29167 55962|0.5 55963|0.47222 55964|0.83333 55965|0.66667 55966|0.45833 55967|0.55556 55968|0.27778 55969|0.44444 55970|0.27778 55971|0.33333 55972|0.43056 55973|0.44444 55974|0.65278 55975|0.58333 55976|0.5 55977|0.36111 55978|0.76389 55979|0.69444 55980|0.75 55981|0.59722 55982|0.66667 55983|0.84722 55984|0.79167 55985|0.84722 55986|0.76389 55987|0.97222 55988|0.48611 55989|0.80556 55990|0.45833 55991|0.38889 55992|0.5 55993|0.5 55994|0.45833 55995|0.5 55996|0.66667 55997|0.5 55998|0.51389 55999|0.51389 56000|0.61111 56001|0.59722 56002|0.66667 56003|0.55556 56004|0.56944 56005|0.45833 56006|0.70833 56007|0.47222 56008|0.375 56009|0.31944 56010|0.56944 56011|0.69444 56012|0.54167 56013|0.80556 56014|0.625 56015|0.25 56016|0.36111 56017|0.23611 56018|0.5 56019|0.20833 56020|0.23611 56021|0.5 56022|0.5 56023|0.5 56024|0.5 56025|0.58333 56026|0.54167 56027|0.75 56028|0.5 56029|0.65278 56030|0.48611 56031|0.59722 56032|0.26389 56033|0.5 56034|0.76389 56035|0.30556 56036|0.5 56037|0.54167 56038|0.5 56039|0.5 56040|0.51389 56041|0.5 56042|0.54167 56043|0.5 56044|0.59722 56045|0.625 56046|0.77778 56047|0.5 56048|0.66667 56049|0.72222 56050|0.72222 56051|0.68056 56052|0.61111 56053|0.72222 56054|0.63889 56055|0.52778 56056|0.55556 56057|0.52778 56058|0.75 56059|0.73611 56060|0.66667 56061|0.625 56062|0.70833 56063|0.70833 56064|0.61111 56065|0.76389 56066|0.83333 56067|0.86111 56068|0.77778 56069|0.5 56070|0.30556 56071|0.5 56072|0.59722 56073|0.51389 56074|0.54167 56075|0.59722 56076|0.61111 56077|0.55556 56078|0.55556 56079|0.72222 56080|0.34722 56081|0.66667 56082|0.77778 56083|0.5 56084|0.54167 56085|0.55556 56086|0.81944 56087|0.48611 56088|0.59722 56089|0.72222 56090|0.48611 56091|0.5 56092|0.70833 56093|0.54167 56094|0.5 56095|0.48611 56096|0.51389 56097|0.52778 56098|0.51389 56099|0.43056 56100|0.51389 56101|0.48611 56102|0.55556 56103|0.5 56104|0.5 56105|0.47222 56106|0.54167 56107|0.59722 56108|0.55556 56109|0.5 56110|0.52778 56111|0.55556 56112|0.79167 56113|0.77778 56114|0.72222 56115|0.65278 56116|0.5 56117|0.5 56118|0.5 56119|0.5 56120|0.5 56121|0.44444 56122|0.47222 56123|0.5 56124|0.5 56125|0.44444 56126|0.55556 56127|0.63889 56128|0.5 56129|0.59722 56130|0.75 56131|0.63889 56132|0.48611 56133|0.56944 56134|0.72222 56135|0.80556 56136|0.84722 56137|0.65278 56138|0.5 56139|0.51389 56140|0.47222 56141|0.77778 56142|0.61111 56143|0.34722 56144|0.44444 56145|0.72222 56146|0.70833 56147|0.44444 56148|0.5 56149|0.52778 56150|0.52778 56151|0.41667 56152|0.5 56153|0.68056 56154|0.5 56155|0.625 56156|0.47222 56157|0.44444 56158|0.43056 56159|0.5 56160|0.55556 56161|0.58333 56162|0.5 56163|0.5 56164|0.56944 56165|0.69444 56166|0.51389 56167|0.66667 56168|0.55556 56169|0.61111 56170|0.5 56171|0.86111 56172|0.56944 56173|0.52778 56174|0.33333 56175|0.75 56176|0.75 56177|0.83333 56178|0.75 56179|0.76389 56180|0.5 56181|0.79167 56182|0.625 56183|0.5 56184|0.44444 56185|0.51389 56186|0.52778 56187|0.54167 56188|0.5 56189|0.54167 56190|0.56944 56191|0.45833 56192|0.44444 56193|0.55556 56194|0.61111 56195|0.44444 56196|0.55556 56197|0.51389 56198|0.55556 56199|0.51389 56200|0.58333 56201|0.66667 56202|0.68056 56203|0.70833 56204|0.72222 56205|0.5 56206|0.56944 56207|0.63889 56208|0.5 56209|0.44444 56210|0.55556 56211|0.5 56212|0.375 56213|0.55556 56214|0.55556 56215|0.63889 56216|0.59722 56217|0.625 56218|0.81944 56219|0.52778 56220|0.52778 56221|0.48611 56222|0.70833 56223|0.72222 56224|0.79167 56225|0.56944 56226|0.58333 56227|0.81944 56228|0.59722 56229|0.73611 56230|0.79167 56231|0.70833 56232|0.72222 56233|0.51389 56234|0.86111 56235|0.44444 56236|0.51389 56237|0.59722 56238|0.75 56239|0.68056 56240|0.84722 56241|0.75 56242|0.69444 56243|0.65278 56244|0.625 56245|0.65278 56246|0.77778 56247|0.63889 56248|0.54167 56249|0.81944 56250|0.61111 56251|0.56944 56252|0.61111 56253|0.5 56254|0.58333 56255|0.41667 56256|0.5 56257|0.33333 56258|0.5 56259|0.44444 56260|0.52778 56261|0.5 56262|0.52778 56263|0.58333 56264|0.72222 56265|0.55556 56266|0.45833 56267|0.5 56268|0.55556 56269|0.61111 56270|0.72222 56271|0.68056 56272|0.33333 56273|0.54167 56274|0.72222 56275|0.72222 56276|0.66667 56277|0.61111 56278|0.69444 56279|0.83333 56280|0.81944 56281|0.77778 56282|0.48611 56283|0.36111 56284|0.80556 56285|0.5 56286|0.36111 56287|0.34722 56288|0.875 56289|0.80556 56290|0.44444 56291|0.5 56292|0.625 56293|0.56944 56294|0.5 56295|0.5 56296|0.88889 56297|0.79167 56298|0.79167 56299|0.47222 56300|0.68056 56301|0.5 56302|0.61111 56303|0.47222 56304|0.70833 56305|0.79167 56306|0.5 56307|0.81944 56308|0.52778 56309|0.61111 56310|0.72222 56311|0.77778 56312|0.76389 56313|0.5 56314|0.5 56315|0.51389 56316|0.38889 56317|0.45833 56318|0.30556 56319|0.27778 56320|0.44444 56321|0.44444 56322|0.41667 56323|0.63889 56324|0.58333 56325|0.5 56326|0.625 56327|0.58333 56328|0.56944 56329|0.5 56330|0.5 56331|0.5 56332|0.16667 56333|0.65278 56334|0.66667 56335|0.52778 56336|0.5 56337|0.61111 56338|0.52778 56339|0.55556 56340|0.55556 56341|0.63889 56342|0.66667 56343|0.59722 56344|0.69444 56345|0.625 56346|0.58333 56347|0.65278 56348|0.73611 56349|0.69444 56350|0.68056 56351|0.625 56352|0.44444 56353|0.63889 56354|0.59722 56355|0.80556 56356|0.79167 56357|0.73611 56358|0.68056 56359|0.625 56360|0.77778 56361|0.77778 56362|0.43056 56363|0.69444 56364|0.45833 56365|0.5 56366|0.55556 56367|0.51389 56368|0.5 56369|0.63889 56370|0.54167 56371|0.52778 56372|0.66667 56373|0.75 56374|0.26389 56375|0.38889 56376|0.51389 56377|0.88889 56378|0.5 56379|0.5 56380|0.51389 56381|0.61111 56382|0.61111 56383|0.69444 56384|0.68056 56385|0.81944 56386|0.69444 56387|0.68056 56388|0.33333 56389|0.70833 56390|0.81944 56391|0.88889 56392|0.30556 56393|0.47222 56394|0.875 56395|0.56944 56396|0.48611 56397|0.68056 56398|0.5 56399|0.52778 56400|0.5 56401|0.55556 56402|0.54167 56403|0.65278 56404|0.66667 56405|0.63889 56406|0.65278 56407|0.59722 56408|0.81944 56409|0.61111 56410|0.5 56411|0.54167 56412|0.76389 56413|0.625 56414|0.54167 56415|0.59722 56416|0.72222 56417|0.69444 56418|0.72222 56419|0.77778 56420|0.55556 56421|0.54167 56422|0.70833 56423|0.69444 56424|0.88889 56425|0.5 56426|0.56944 56427|0.68056 56428|0.47222 56429|0.5 56430|0.61111 56431|0.52778 56432|0.5 56433|0.5 56434|0.68056 56435|0.81944 56436|0.81944 56437|0.33333 56438|0.55556 56439|0.625 56440|0.69444 56441|0.38889 56442|0.55556 56443|0.68056 56444|0.5 56445|0.5 56446|0.55556 56447|0.5 56448|0.51389 56449|0.56944 56450|0.625 56451|0.59722 56452|0.52778 56453|0.72222 56454|0.15278 56455|0.5 56456|0.45833 56457|0.5 56458|0.5 56459|0.51389 56460|0.61111 56461|0.5 56462|0.63889 56463|0.5 56464|0.65278 56465|0.76389 56466|0.72222 56467|0.68056 56468|0.69444 56469|0.72222 56470|0.76389 56471|0.40278 56472|0.5 56473|0.33333 56474|0.5 56475|0.44444 56476|0.58333 56477|0.73611 56478|0.66667 56479|0.5 56480|0.44444 56481|0.63889 56482|0.5 56483|0.5 56484|0.58333 56485|0.52778 56486|0.69444 56487|0.61111 56488|0.80556 56489|0.51389 56490|0.5 56491|0.5 56492|0.5 56493|0.5 56494|0.75 56495|0.55556 56496|0.5 56497|0.69444 56498|0.5 56499|0.29167 56500|0.61111 56501|0.66667 56502|0.59722 56503|0.73611 56504|0.56944 56505|0.61111 56506|0.51389 56507|0.55556 56508|0.56944 56509|0.66667 56510|0.54167 56511|0.76389 56512|0.66667 56513|0.77778 56514|0.77778 56515|0.76389 56516|0.91667 56517|0.88889 56518|0.79167 56519|0.5 56520|0.375 56521|0.66667 56522|0.55556 56523|0.59722 56524|0.5 56525|0.61111 56526|0.61111 56527|0.52778 56528|0.52778 56529|0.86111 56530|0.81944 56531|0.44444 56532|0.72222 56533|0.76389 56534|0.59722 56535|0.5 56536|0.55556 56537|0.5 56538|0.61111 56539|0.68056 56540|0.5 56541|0.44444 56542|0.88889 56543|0.68056 56544|0.80556 56545|0.70833 56546|0.38889 56547|0.5 56548|0.36111 56549|0.47222 56550|0.41667 56551|0.5 56552|0.5 56553|0.61111 56554|0.44444 56555|0.44444 56556|0.40278 56557|0.5 56558|0.56944 56559|0.5 56560|0.47222 56561|0.5 56562|0.55556 56563|0.51389 56564|0.80556 56565|0.72222 56566|0.55556 56567|0.69444 56568|0.5 56569|0.5 56570|0.5 56571|0.52778 56572|0.55556 56573|0.52778 56574|0.65278 56575|0.45833 56576|0.55556 56577|0.44444 56578|0.70833 56579|0.94444 56580|0.44444 56581|0.51389 56582|0.44444 56583|0.63889 56584|0.55556 56585|0.5 56586|0.5 56587|0.61111 56588|0.56944 56589|0.5 56590|0.61111 56591|0.5 56592|0.73611 56593|0.61111 56594|0.61111 56595|0.77778 56596|0.65278 56597|0.38889 56598|0.5 56599|0.52778 56600|0.72222 56601|0.18056 56602|0.59722 56603|0.5 56604|0.59722 56605|0.77778 56606|0.75 56607|0.58333 56608|0.81944 56609|0.91667 56610|0.69444 56611|0.56944 56612|0.75 56613|0.51389 56614|0.76389 56615|0.65278 56616|0.16667 56617|0.72222 56618|0.83333 56619|0.5 56620|0.5 56621|0.54167 56622|0.55556 56623|0.45833 56624|0.55556 56625|0.80556 56626|0.80556 56627|0.80556 56628|0.625 56629|0.66667 56630|0.66667 56631|0.55556 56632|0.55556 56633|0.72222 56634|0.79167 56635|0.5 56636|0.86111 56637|0.5 56638|0.86111 56639|0.66667 56640|0.68056 56641|0.61111 56642|0.45833 56643|0.61111 56644|0.52778 56645|0.77778 56646|0.75 56647|0.5 56648|0.55556 56649|0.16667 56650|0.56944 56651|0.63889 56652|0.41667 56653|0.375 56654|0.40278 56655|0.59722 56656|0.5 56657|0.76389 56658|0.72222 56659|0.61111 56660|0.63889 56661|0.55556 56662|0.5 56663|0.5 56664|0.55556 56665|0.77778 56666|0.52778 56667|0.5 56668|0.5 56669|0.36111 56670|0.52778 56671|0.5 56672|0.76389 56673|0.59722 56674|0.55556 56675|0.36111 56676|0.36111 56677|0.44444 56678|0.38889 56679|0.72222 56680|0.19444 56681|0.5 56682|0.27778 56683|0.38889 56684|0.5 56685|0.51389 56686|0.5 56687|0.5 56688|0.5 56689|0.41667 56690|0.5 56691|0.41667 56692|0.5 56693|0.52778 56694|0.5 56695|0.44444 56696|0.5 56697|0.66667 56698|0.5 56699|0.47222 56700|0.80556 56701|0.66667 56702|0.83333 56703|0.68056 56704|0.66667 56705|0.72222 56706|0.76389 56707|0.75 56708|0.63889 56709|0.73611 56710|0.47222 56711|0.72222 56712|0.5 56713|0.63889 56714|0.63889 56715|0.69444 56716|0.55556 56717|0.40278 56718|0.59722 56719|0.625 56720|0.63889 56721|0.59722 56722|0.58333 56723|0.45833 56724|0.26389 56725|0.43056 56726|0.81944 56727|0.72222 56728|0.59722 56729|0.44444 56730|0.81944 56731|0.43056 56732|0.33333 56733|0.41667 56734|0.55556 56735|0.5 56736|0.41667 56737|0.33333 56738|0.56944 56739|0.47222 56740|0.51389 56741|0.5 56742|0.5 56743|0.5 56744|0.52778 56745|0.5 56746|0.59722 56747|0.61111 56748|0.69444 56749|0.51389 56750|0.5 56751|0.5 56752|0.55556 56753|0.55556 56754|0.5 56755|0.5 56756|0.5 56757|0.55556 56758|0.375 56759|0.5 56760|0.44444 56761|0.76389 56762|0.5 56763|0.625 56764|0.55556 56765|0.5 56766|0.43056 56767|0.58333 56768|0.61111 56769|0.56944 56770|0.5 56771|0.55556 56772|0.5 56773|0.61111 56774|0.51389 56775|0.59722 56776|0.875 56777|0.55556 56778|0.80556 56779|0.63889 56780|0.75 56781|0.33333 56782|0.5 56783|0.56944 56784|0.51389 56785|0.51389 56786|0.26389 56787|0.16667 56788|0.25 56789|0.75 56790|0.66667 56791|0.68056 56792|0.41667 56793|0.38889 56794|0.44444 56795|0.81944 56796|0.90278 56797|0.5 56798|0.5 56799|0.70833 56800|0.65278 56801|0.70833 56802|0.79167 56803|0.77778 56804|0.55556 56805|0.36111 56806|0.54167 56807|0.34722 56808|0.65278 56809|0.56944 56810|0.41667 56811|0.58333 56812|0.56944 56813|0.80556 56814|0.55556 56815|0.58333 56816|0.43056 56817|0.61111 56818|0.5 56819|0.5 56820|0.5 56821|0.5 56822|0.45833 56823|0.55556 56824|0.55556 56825|0.44444 56826|0.625 56827|0.63889 56828|0.55556 56829|0.47222 56830|0.48611 56831|0.36111 56832|0.26389 56833|0.48611 56834|0.55556 56835|0.70833 56836|0.55556 56837|0.51389 56838|0.52778 56839|0.88889 56840|0.77778 56841|0.90278 56842|0.61111 56843|0.56944 56844|0.58333 56845|0.72222 56846|0.72222 56847|0.66667 56848|0.63889 56849|0.55556 56850|0.625 56851|0.61111 56852|0.68056 56853|0.5 56854|0.20833 56855|0.34722 56856|0.69444 56857|0.5 56858|0.5 56859|0.45833 56860|0.5 56861|0.33333 56862|0.5 56863|0.51389 56864|0.55556 56865|0.55556 56866|0.61111 56867|0.63889 56868|0.5 56869|0.69444 56870|0.54167 56871|0.43056 56872|0.58333 56873|0.56944 56874|0.5 56875|0.52778 56876|0.81944 56877|0.5 56878|0.5 56879|0.76389 56880|0.52778 56881|0.5 56882|0.51389 56883|0.84722 56884|0.44444 56885|0.5 56886|0.68056 56887|0.61111 56888|0.55556 56889|0.55556 56890|0.61111 56891|0.5 56892|0.61111 56893|0.80556 56894|0.26389 56895|0.59722 56896|0.61111 56897|0.48611 56898|0.48611 56899|0.55556 56900|0.55556 56901|0.55556 56902|0.5 56903|0.47222 56904|0.90278 56905|0.72222 56906|0.66667 56907|0.47222 56908|0.5 56909|0.47222 56910|0.72222 56911|0.81944 56912|0.83333 56913|0.80556 56914|0.72222 56915|0.76389 56916|0.76389 56917|0.70833 56918|0.69444 56919|0.94444 56920|0.80556 56921|0.73611 56922|0.5 56923|0.5 56924|0.61111 56925|0.58333 56926|0.5 56927|0.44444 56928|0.54167 56929|0.56944 56930|0.27778 56931|0.55556 56932|0.83333 56933|0.51389 56934|0.58333 56935|0.77778 56936|0.66667 56937|0.72222 56938|0.44444 56939|0.72222 56940|0.76389 56941|0.34722 56942|0.61111 56943|0.44444 56944|0.68056 56945|0.65278 56946|0.70833 56947|0.66667 56948|0.88889 56949|0.91667 56950|0.63889 56951|0.75 56952|0.81944 56953|0.66667 56954|0.61111 56955|0.5 56956|0.66667 56957|0.63889 56958|0.90278 56959|0.86111 56960|0.73611 56961|0.91667 56962|0.59722 56963|0.75 56964|0.72222 56965|0.83333 56966|0.75 56967|0.58333 56968|0.84722 56969|0.70833 56970|0.68056 56971|0.76389 56972|0.5 56973|0.72222 56974|0.20833 56975|0.22222 56976|0.61111 56977|0.5 56978|0.33333 56979|0.55556 56980|0.77778 56981|0.83333 56982|0.5 56983|0.51389 56984|0.5 56985|0.80556 56986|0.83333 56987|0.69444 56988|0.25 56989|0.5 56990|0.55556 56991|0.5 56992|0.5 56993|0.52778 56994|0.55556 56995|0.375 56996|0.44444 56997|0.5 56998|0.55556 56999|0.83333 57000|0.77778 57001|0.72222 57002|0.63889 57003|0.63889 57004|0.66667 57005|0.51389 57006|0.52778 57007|0.36111 57008|0.45833 57009|0.70833 57010|0.56944 57011|0.5 57012|0.56944 57013|0.5 57014|0.79167 57015|0.38889 57016|0.52778 57017|0.51389 57018|0.80556 57019|0.77778 57020|0.5 57021|0.5 57022|0.55556 57023|0.41667 57024|0.30556 57025|0.54167 57026|0.83333 57027|0.5 57028|0.5 57029|0.5 57030|0.5 57031|0.54167 57032|0.5 57033|0.55556 57034|0.43056 57035|0.66667 57036|0.75 57037|0.25 57038|0.5 57039|0.43056 57040|0.52778 57041|0.83333 57042|0.5 57043|0.5 57044|0.38889 57045|0.40278 57046|0.5 57047|0.61111 57048|0.58333 57049|0.76389 57050|0.41667 57051|0.30556 57052|0.48611 57053|0.33333 57054|0.40278 57055|0.5 57056|0.33333 57057|0.31944 57058|0.375 57059|0.5 57060|0.5 57061|0.44444 57062|0.27778 57063|0.40278 57064|0.5 57065|0.5 57066|0.61111 57067|0.47222 57068|0.375 57069|0.61111 57070|0.5 57071|0.54167 57072|0.26389 57073|0.45833 57074|0.5 57075|0.52778 57076|0.5 57077|0.5 57078|0.5 57079|0.86111 57080|0.79167 57081|0.77778 57082|0.58333 57083|0.83333 57084|0.18056 57085|0.44444 57086|0.68056 57087|0.51389 57088|0.52778 57089|0.44444 57090|0.73611 57091|0.47222 57092|0.38889 57093|0.5 57094|0.48611 57095|0.44444 57096|0.13889 57097|0.43056 57098|0.27778 57099|0.61111 57100|0.66667 57101|0.48611 57102|0.83333 57103|0.86111 57104|0.80556 57105|0.94444 57106|0.76389 57107|0.66667 57108|0.54167 57109|0.55556 57110|0.41667 57111|0.55556 57112|0.41667 57113|0.5 57114|0.5 57115|0.45833 57116|0.45833 57117|0.375 57118|0.5 57119|0.61111 57120|0.77778 57121|0.5 57122|0.66667 57123|0.79167 57124|0.72222 57125|0.81944 57126|0.48611 57127|0.625 57128|0.55556 57129|0.38889 57130|0.38889 57131|0.56944 57132|0.65278 57133|0.84722 57134|0.48611 57135|0.56944 57136|0.5 57137|0.52778 57138|0.5 57139|0.5 57140|0.375 57141|0.66667 57142|0.76389 57143|0.79167 57144|0.72222 57145|0.59722 57146|0.68056 57147|0.72222 57148|0.76389 57149|0.76389 57150|0.81944 57151|0.80556 57152|0.47222 57153|0.22222 57154|0.34722 57155|0.34722 57156|0.52778 57157|0.41667 57158|0.27778 57159|0.40278 57160|0.31944 57161|0.19444 57162|0.55556 57163|0.61111 57164|0.34722 57165|0.61111 57166|0.72222 57167|0.5 57168|0.44444 57169|0.5 57170|0.5 57171|0.55556 57172|0.52778 57173|0.63889 57174|0.70833 57175|0.68056 57176|0.52778 57177|0.5 57178|0.68056 57179|0.5 57180|0.20833 57181|0.375 57182|0.55556 57183|0.65278 57184|0.56944 57185|0.56944 57186|0.56944 57187|0.59722 57188|0.56944 57189|0.75 57190|0.52778 57191|0.59722 57192|0.63889 57193|0.38889 57194|0.77778 57195|0.81944 57196|0.47222 57197|0.51389 57198|0.73611 57199|0.68056 57200|0.5 57201|0.48611 57202|0.73611 57203|0.72222 57204|0.66667 57205|0.30556 57206|0.72222 57207|0.27778 57208|0.38889 57209|0.5 57210|0.70833 57211|0.38889 57212|0.70833 57213|0.375 57214|0.34722 57215|0.29167 57216|0.38889 57217|0.58333 57218|0.625 57219|0.5 57220|0.51389 57221|0.5 57222|0.55556 57223|0.55556 57224|0.625 57225|0.75 57226|0.41667 57227|0.75 57228|0.51389 57229|0.5 57230|0.5 57231|0.56944 57232|0.47222 57233|0.52778 57234|0.56944 57235|0.84722 57236|0.63889 57237|0.44444 57238|0.5 57239|0.5 57240|0.70833 57241|0.81944 57242|0.58333 57243|0.66667 57244|0.625 57245|0.625 57246|0.625 57247|0.52778 57248|0.55556 57249|0.36111 57250|0.66667 57251|0.54167 57252|0.63889 57253|0.5 57254|0.5 57255|0.51389 57256|0.79167 57257|0.44444 57258|0.54167 57259|0.54167 57260|0.5 57261|0.44444 57262|0.43056 57263|0.55556 57264|0.51389 57265|0.72222 57266|0.83333 57267|0.5 57268|0.5 57269|0.51389 57270|0.34722 57271|0.55556 57272|0.56944 57273|0.72222 57274|0.36111 57275|0.79167 57276|0.65278 57277|0.48611 57278|0.61111 57279|0.63889 57280|0.45833 57281|0.75 57282|0.69444 57283|0.5 57284|0.5 57285|0.5 57286|0.54167 57287|0.55556 57288|0.51389 57289|0.44444 57290|0.55556 57291|0.5 57292|0.51389 57293|0.51389 57294|0.5 57295|0.47222 57296|0.66667 57297|0.5 57298|0.5 57299|0.5 57300|0.5 57301|0.5 57302|0.55556 57303|0.54167 57304|0.66667 57305|0.54167 57306|0.51389 57307|0.94444 57308|0.63889 57309|0.61111 57310|0.70833 57311|0.58333 57312|0.81944 57313|0.51389 57314|0.59722 57315|0.66667 57316|0.36111 57317|0.5 57318|0.625 57319|0.48611 57320|0.61111 57321|0.61111 57322|0.69444 57323|0.70833 57324|0.83333 57325|0.58333 57326|0.5 57327|0.55556 57328|0.66667 57329|0.66667 57330|0.38889 57331|0.59722 57332|0.68056 57333|0.54167 57334|0.61111 57335|0.59722 57336|0.40278 57337|0.61111 57338|0.375 57339|0.72222 57340|0.59722 57341|0.5 57342|0.88889 57343|0.5 57344|0.36111 57345|0.34722 57346|0.51389 57347|0.86111 57348|0.38889 57349|0.81944 57350|0.5 57351|0.5 57352|0.5 57353|0.68056 57354|0.63889 57355|0.66667 57356|0.75 57357|0.625 57358|0.75 57359|0.65278 57360|0.72222 57361|0.59722 57362|0.58333 57363|0.58333 57364|0.27778 57365|0.52778 57366|0.40278 57367|0.66667 57368|0.44444 57369|0.18056 57370|0.125 57371|0.41667 57372|0.5 57373|0.88889 57374|0.77778 57375|0.43056 57376|0.61111 57377|0.38889 57378|0.5 57379|0.5 57380|0.5 57381|0.5 57382|0.55556 57383|0.5 57384|0.52778 57385|0.51389 57386|0.61111 57387|0.5 57388|0.63889 57389|0.61111 57390|0.69444 57391|0.5 57392|0.38889 57393|0.47222 57394|0.38889 57395|0.61111 57396|0.48611 57397|0.65278 57398|0.45833 57399|0.54167 57400|0.5 57401|0.59722 57402|0.55556 57403|0.61111 57404|0.5 57405|0.5 57406|0.61111 57407|0.5 57408|0.59722 57409|0.625 57410|0.5 57411|0.625 57412|0.55556 57413|0.5 57414|0.43056 57415|0.54167 57416|0.69444 57417|0.77778 57418|0.5 57419|0.65278 57420|0.69444 57421|0.77778 57422|0.70833 57423|0.66667 57424|0.80556 57425|0.29167 57426|0.58333 57427|0.52778 57428|0.5 57429|0.23611 57430|0.68056 57431|0.33333 57432|0.30556 57433|0.40278 57434|0.5 57435|0.55556 57436|0.38889 57437|0.51389 57438|0.51389 57439|0.29167 57440|0.5 57441|0.44444 57442|0.44444 57443|0.44444 57444|0.5 57445|0.83333 57446|0.5 57447|0.5 57448|0.55556 57449|0.70833 57450|0.56944 57451|0.56944 57452|0.5 57453|0.61111 57454|0.72222 57455|0.61111 57456|0.66667 57457|0.68056 57458|0.61111 57459|0.41667 57460|0.5 57461|0.5 57462|0.75 57463|0.55556 57464|0.70833 57465|0.79167 57466|0.81944 57467|0.79167 57468|0.52778 57469|0.51389 57470|0.58333 57471|0.41667 57472|0.27778 57473|0.76389 57474|0.66667 57475|0.66667 57476|0.59722 57477|0.44444 57478|0.54167 57479|0.81944 57480|0.68056 57481|0.43056 57482|0.5 57483|0.56944 57484|0.72222 57485|0.75 57486|0.41667 57487|0.5 57488|0.33333 57489|0.72222 57490|0.55556 57491|0.5 57492|0.44444 57493|0.5 57494|0.33333 57495|0.70833 57496|0.94444 57497|0.61111 57498|0.61111 57499|0.69444 57500|0.51389 57501|0.51389 57502|0.76389 57503|0.55556 57504|0.68056 57505|0.625 57506|0.625 57507|0.65278 57508|0.77778 57509|0.70833 57510|0.83333 57511|0.59722 57512|0.48611 57513|0.59722 57514|0.59722 57515|0.19444 57516|0.11111 57517|0.375 57518|0.58333 57519|0.5 57520|0.5 57521|0.52778 57522|0.61111 57523|0.77778 57524|0.77778 57525|0.76389 57526|0.80556 57527|0.41667 57528|0.47222 57529|0.625 57530|0.55556 57531|0.47222 57532|0.43056 57533|0.55556 57534|0.5 57535|0.5 57536|0.55556 57537|0.51389 57538|0.56944 57539|0.59722 57540|0.56944 57541|0.5 57542|0.65278 57543|0.84722 57544|0.51389 57545|0.75 57546|0.77778 57547|0.5 57548|0.63889 57549|0.69444 57550|0.5 57551|0.77778 57552|0.55556 57553|0.76389 57554|0.77778 57555|0.58333 57556|0.84722 57557|0.68056 57558|0.83333 57559|0.33333 57560|0.61111 57561|0.58333 57562|0.5 57563|0.5 57564|0.51389 57565|0.70833 57566|0.66667 57567|0.55556 57568|0.5 57569|0.65278 57570|0.75 57571|0.5 57572|0.44444 57573|0.5 57574|0.13889 57575|0.52778 57576|0.5 57577|0.5 57578|0.5 57579|0.5 57580|0.5 57581|0.80556 57582|0.5 57583|0.65278 57584|0.34722 57585|0.73611 57586|0.79167 57587|0.70833 57588|0.48611 57589|0.29167 57590|0.47222 57591|0.5 57592|0.54167 57593|0.55556 57594|0.47222 57595|0.5 57596|0.90278 57597|0.69444 57598|0.80556 57599|0.47222 57600|0.72222 57601|0.55556 57602|0.52778 57603|0.58333 57604|0.80556 57605|0.43056 57606|0.44444 57607|0.40278 57608|0.5 57609|0.5 57610|0.58333 57611|0.5 57612|0.52778 57613|0.43056 57614|0.63889 57615|0.65278 57616|0.5 57617|0.5 57618|0.61111 57619|0.43056 57620|0.69444 57621|0.61111 57622|0.38889 57623|0.48611 57624|0.59722 57625|0.68056 57626|0.58333 57627|0.48611 57628|0.55556 57629|0.52778 57630|0.81944 57631|0.79167 57632|0.72222 57633|0.43056 57634|0.54167 57635|0.5 57636|0.75 57637|0.5 57638|0.5 57639|0.51389 57640|0.44444 57641|0.55556 57642|0.51389 57643|0.55556 57644|0.73611 57645|0.77778 57646|0.72222 57647|0.69444 57648|0.83333 57649|0.5 57650|0.48611 57651|0.66667 57652|0.5 57653|0.45833 57654|0.70833 57655|0.5 57656|0.5 57657|0.77778 57658|0.47222 57659|0.90278 57660|0.72222 57661|0.875 57662|0.88889 57663|0.75 57664|0.83333 57665|0.88889 57666|0.29167 57667|0.34722 57668|0.51389 57669|0.61111 57670|0.55556 57671|0.44444 57672|0.44444 57673|0.83333 57674|0.55556 57675|0.5 57676|0.52778 57677|0.5 57678|0.5 57679|0.56944 57680|0.5 57681|0.58333 57682|0.55556 57683|0.5 57684|0.44444 57685|0.5 57686|0.52778 57687|0.55556 57688|0.40278 57689|0.5 57690|0.5 57691|0.5 57692|0.5 57693|0.52778 57694|0.51389 57695|0.36111 57696|0.40278 57697|0.5 57698|0.58333 57699|0.41667 57700|0.625 57701|0.5 57702|0.61111 57703|0.86111 57704|0.48611 57705|0.5 57706|0.75 57707|0.70833 57708|0.79167 57709|0.66667 57710|0.80556 57711|0.29167 57712|0.54167 57713|0.5 57714|0.875 57715|0.70833 57716|0.58333 57717|0.48611 57718|0.54167 57719|0.58333 57720|0.55556 57721|0.48611 57722|0.40278 57723|0.52778 57724|0.44444 57725|0.65278 57726|0.61111 57727|0.38889 57728|0.875 57729|0.68056 57730|0.76389 57731|0.5 57732|0.55556 57733|0.55556 57734|0.40278 57735|0.5 57736|0.44444 57737|0.54167 57738|0.54167 57739|0.54167 57740|0.69444 57741|0.69444 57742|0.81944 57743|0.41667 57744|0.625 57745|0.69444 57746|0.48611 57747|0.40278 57748|0.38889 57749|0.55556 57750|0.40278 57751|0.5 57752|0.75 57753|0.79167 57754|0.86111 57755|0.76389 57756|0.66667 57757|0.5 57758|0.51389 57759|0.61111 57760|0.91667 57761|0.72222 57762|0.54167 57763|0.76389 57764|0.81944 57765|0.5 57766|0.73611 57767|0.75 57768|0.61111 57769|0.84722 57770|0.88889 57771|0.5 57772|0.61111 57773|0.43056 57774|0.73611 57775|0.61111 57776|0.59722 57777|0.5 57778|0.47222 57779|0.51389 57780|0.52778 57781|0.41667 57782|0.81944 57783|0.72222 57784|0.83333 57785|0.77778 57786|0.70833 57787|0.77778 57788|0.90278 57789|0.83333 57790|0.76389 57791|0.69444 57792|0.59722 57793|0.47222 57794|0.61111 57795|0.27778 57796|0.69444 57797|0.66667 57798|0.61111 57799|0.73611 57800|0.54167 57801|0.45833 57802|0.66667 57803|0.58333 57804|0.48611 57805|0.56944 57806|0.54167 57807|0.55556 57808|0.77778 57809|0.65278 57810|0.40278 57811|0.83333 57812|0.59722 57813|0.5 57814|0.66667 57815|0.5 57816|0.45833 57817|0.65278 57818|0.52778 57819|0.66667 57820|0.63889 57821|0.54167 57822|0.45833 57823|0.90278 57824|0.66667 57825|0.80556 57826|0.61111 57827|0.73611 57828|0.625 57829|0.79167 57830|0.73611 57831|0.5 57832|0.69444 57833|0.69444 57834|0.55556 57835|0.5 57836|0.5 57837|0.54167 57838|0.66667 57839|0.83333 57840|0.52778 57841|0.5 57842|0.66667 57843|0.63889 57844|0.27778 57845|0.41667 57846|0.29167 57847|0.56944 57848|0.51389 57849|0.36111 57850|0.56944 57851|0.44444 57852|0.51389 57853|0.73611 57854|0.5 57855|0.73611 57856|0.55556 57857|0.375 57858|0.56944 57859|0.40278 57860|0.5 57861|0.72222 57862|0.63889 57863|0.69444 57864|0.54167 57865|0.54167 57866|0.61111 57867|0.68056 57868|0.66667 57869|0.22222 57870|0.77778 57871|0.66667 57872|0.54167 57873|0.59722 57874|0.69444 57875|0.66667 57876|0.66667 57877|0.76389 57878|0.13889 57879|0.58333 57880|0.72222 57881|0.68056 57882|0.65278 57883|0.72222 57884|0.36111 57885|0.72222 57886|0.625 57887|0.69444 57888|0.76389 57889|0.29167 57890|0.47222 57891|0.66667 57892|0.72222 57893|0.61111 57894|0.83333 57895|0.68056 57896|0.68056 57897|0.5 57898|0.43056 57899|0.40278 57900|0.47222 57901|0.59722 57902|0.5 57903|0.59722 57904|0.48611 57905|0.73611 57906|0.38889 57907|0.61111 57908|0.375 57909|0.80556 57910|0.58333 57911|0.5 57912|0.52778 57913|0.70833 57914|0.72222 57915|0.75 57916|0.59722 57917|0.44444 57918|0.59722 57919|0.66667 57920|0.47222 57921|0.33333 57922|0.61111 57923|0.5 57924|0.59722 57925|0.66667 57926|0.36111 57927|0.44444 57928|0.5 57929|0.58333 57930|0.51389 57931|0.5 57932|0.55556 57933|0.58333 57934|0.5 57935|0.5 57936|0.44444 57937|0.48611 57938|0.5 57939|0.5 57940|0.5 57941|0.48611 57942|0.51389 57943|0.5 57944|0.5 57945|0.5 57946|0.5 57947|0.55556 57948|0.5 57949|0.51389 57950|0.5 57951|0.51389 57952|0.54167 57953|0.51389 57954|0.44444 57955|0.5 57956|0.5 57957|0.54167 57958|0.55556 57959|0.625 57960|0.55556 57961|0.41667 57962|0.48611 57963|0.66667 57964|0.5 57965|0.5 57966|0.45833 57967|0.47222 57968|0.33333 57969|0.52778 57970|0.5 57971|0.5 57972|0.51389 57973|0.5 57974|0.5 57975|0.55556 57976|0.5 57977|0.58333 57978|0.54167 57979|0.61111 57980|0.68056 57981|0.36111 57982|0.61111 57983|0.77778 57984|0.72222 57985|0.77778 57986|0.76389 57987|0.5 57988|0.22222 57989|0.61111 57990|0.5 57991|0.5 57992|0.5 57993|0.5 57994|0.65278 57995|0.59722 57996|0.44444 57997|0.54167 57998|0.26389 57999|0.5 58000|0.66667 58001|0.72222 58002|0.68056 58003|0.69444 58004|0.625 58005|0.45833 58006|0.56944 58007|0.51389 58008|0.54167 58009|0.5 58010|0.5 58011|0.47222 58012|0.66667 58013|0.69444 58014|0.44444 58015|0.33333 58016|0.44444 58017|0.55556 58018|0.5 58019|0.88889 58020|0.56944 58021|0.63889 58022|0.5 58023|0.44444 58024|0.5 58025|0.63889 58026|0.81944 58027|0.625 58028|0.72222 58029|0.45833 58030|0.58333 58031|0.5 58032|0.5 58033|0.76389 58034|0.48611 58035|0.76389 58036|0.5 58037|0.5 58038|0.5 58039|0.5 58040|0.44444 58041|0.5 58042|0.43056 58043|0.63889 58044|0.75 58045|0.81944 58046|0.75 58047|0.77778 58048|0.55556 58049|0.5 58050|0.65278 58051|0.77778 58052|0.83333 58053|0.83333 58054|0.84722 58055|0.66667 58056|0.63889 58057|0.86111 58058|0.90278 58059|0.81944 58060|0.83333 58061|0.81944 58062|0.63889 58063|0.875 58064|0.80556 58065|0.83333 58066|0.63889 58067|0.63889 58068|0.75 58069|0.98611 58070|0.77778 58071|0.91667 58072|0.97222 58073|0.83333 58074|0.84722 58075|0.94444 58076|1 58077|0.72222 58078|0.5 58079|0.51389 58080|0.65278 58081|0.5 58082|0.44444 58083|0.72222 58084|0.44444 58085|0.5 58086|0.51389 58087|0.36111 58088|0.15278 58089|0.5 58090|0.69444 58091|0.52778 58092|0.51389 58093|0.72222 58094|0.5 58095|0.54167 58096|0.77778 58097|0.48611 58098|0.45833 58099|0.5 58100|0.51389 58101|0.5 58102|0.47222 58103|0.44444 58104|0.54167 58105|0.18056 58106|0.75 58107|0.5 58108|0.5 58109|0.72222 58110|0.73611 58111|0.5 58112|0.5 58113|0.55556 58114|0.61111 58115|0.69444 58116|0.5 58117|0.52778 58118|0.72222 58119|0.52778 58120|0.59722 58121|0.44444 58122|0.77778 58123|0.55556 58124|0.77778 58125|0.38889 58126|0.19444 58127|0.26389 58128|0.625 58129|0.54167 58130|0.75 58131|0.38889 58132|0.45833 58133|0.5 58134|0.55556 58135|0.55556 58136|0.5 58137|0.61111 58138|0.5 58139|0.5 58140|0.44444 58141|0.54167 58142|0.76389 58143|0.55556 58144|0.55556 58145|0.61111 58146|0.52778 58147|0.43056 58148|0.52778 58149|0.45833 58150|0.5 58151|0.5 58152|0.47222 58153|0.44444 58154|0.38889 58155|0.61111 58156|0.27778 58157|0.375 58158|0.38889 58159|0.48611 58160|0.43056 58161|0.54167 58162|0.66667 58163|0.55556 58164|0.5 58165|0.5 58166|0.5 58167|0.72222 58168|0.81944 58169|0.5 58170|0.84722 58171|0.55556 58172|0.5 58173|0.56944 58174|0.45833 58175|0.54167 58176|0.38889 58177|0.38889 58178|0.61111 58179|0.44444 58180|0.5 58181|0.5 58182|0.375 58183|0.30556 58184|0.45833 58185|0.52778 58186|0.61111 58187|0.45833 58188|0.45833 58189|0.5 58190|0.44444 58191|0.66667 58192|0.69444 58193|0.5 58194|0.23611 58195|0.72222 58196|0.61111 58197|0.83333 58198|0.72222 58199|0.68056 58200|0.5 58201|0.52778 58202|0.54167 58203|0.65278 58204|0.5 58205|0.76389 58206|0.73611 58207|0.72222 58208|0.77778 58209|0.55556 58210|0.16667 58211|0.5 58212|0.5 58213|0.56944 58214|0.5 58215|0.33333 58216|0.44444 58217|0.36111 58218|0.54167 58219|0.38889 58220|0.38889 58221|0.5 58222|0.75 58223|0.61111 58224|0.5 58225|0.51389 58226|0.5 58227|0.625 58228|0.76389 58229|0.65278 58230|0.61111 58231|0.48611 58232|0.56944 58233|0.45833 58234|0.63889 58235|0.59722 58236|0.72222 58237|0.27778 58238|0.34722 58239|0.84722 58240|0.48611 58241|0.54167 58242|0.69444 58243|0.51389 58244|0.76389 58245|0.73611 58246|0.76389 58247|0.51389 58248|0.55556 58249|0.5 58250|0.54167 58251|0.48611 58252|0.44444 58253|0.38889 58254|0.44444 58255|0.68056 58256|0.55556 58257|0.45833 58258|0.83333 58259|0.44444 58260|0.625 58261|0.58333 58262|0.5 58263|0.86111 58264|0.77778 58265|0.625 58266|0.55556 58267|0.66667 58268|0.61111 58269|0.81944 58270|0.77778 58271|0.86111 58272|0.5 58273|0.59722 58274|0.47222 58275|0.65278 58276|0.43056 58277|0.73611 58278|0.55556 58279|0.5 58280|0.375 58281|0.41667 58282|0.68056 58283|0.66667 58284|0.77778 58285|0.68056 58286|0.63889 58287|0.5 58288|0.70833 58289|0.63889 58290|0.48611 58291|0.55556 58292|0.95833 58293|0.43056 58294|0.54167 58295|0.56944 58296|0.80556 58297|0.30556 58298|0.54167 58299|0.63889 58300|0.55556 58301|0.5 58302|0.59722 58303|0.84722 58304|0.80556 58305|0.29167 58306|0.88889 58307|0.59722 58308|0.625 58309|0.63889 58310|0.54167 58311|0.13889 58312|0.58333 58313|0.29167 58314|0.66667 58315|0.86111 58316|0.73611 58317|0.81944 58318|0.5 58319|0.73611 58320|0.56944 58321|0.5 58322|0.55556 58323|0.75 58324|0.75 58325|0.5 58326|0.55556 58327|0.58333 58328|0.73611 58329|0.54167 58330|0.61111 58331|0.5 58332|0.63889 58333|0.5 58334|0.5 58335|0.625 58336|0.56944 58337|0.5 58338|0.66667 58339|0.80556 58340|0.58333 58341|0.73611 58342|0.5 58343|0.45833 58344|0.51389 58345|0.45833 58346|0.58333 58347|0.61111 58348|0.77778 58349|0.72222 58350|0.77778 58351|0.55556 58352|0.63889 58353|0.61111 58354|0.625 58355|0.83333 58356|0.41667 58357|0.625 58358|0.48611 58359|0.77778 58360|0.68056 58361|0.48611 58362|0.5 58363|0.5 58364|0.5 58365|0.45833 58366|0.38889 58367|0.38889 58368|0.68056 58369|0.59722 58370|0.75 58371|0.59722 58372|0.59722 58373|0.68056 58374|0.65278 58375|0.55556 58376|0.5 58377|0.5 58378|0.51389 58379|0.52778 58380|0.27778 58381|0.5 58382|0.86111 58383|0.90278 58384|0.55556 58385|0.59722 58386|0.56944 58387|0.55556 58388|0.5 58389|0.56944 58390|0.68056 58391|0.5 58392|0.51389 58393|0.45833 58394|0.72222 58395|0.58333 58396|0.61111 58397|0.79167 58398|0.88889 58399|0.38889 58400|0.51389 58401|0.23611 58402|0.33333 58403|0.58333 58404|0.5 58405|0.38889 58406|0.51389 58407|0.58333 58408|0.73611 58409|0.34722 58410|0.33333 58411|0.375 58412|0.56944 58413|0.18056 58414|0.33333 58415|0.5 58416|0.61111 58417|0.56944 58418|0.51389 58419|0.51389 58420|0.625 58421|0.625 58422|0.59722 58423|0.66667 58424|0.68056 58425|0.73611 58426|0.61111 58427|0.65278 58428|0.27778 58429|0.45833 58430|0.5 58431|0.72222 58432|0.5 58433|0.72222 58434|0.5 58435|0.73611 58436|0.5 58437|0.875 58438|0.58333 58439|0.5 58440|0.56944 58441|0.5 58442|0.54167 58443|0.069444 58444|0.58333 58445|0.59722 58446|0.61111 58447|0.5 58448|0.51389 58449|0.31944 58450|0.48611 58451|0.27778 58452|0.41667 58453|0.51389 58454|0.75 58455|0.55556 58456|0.58333 58457|0.22222 58458|0.625 58459|0.55556 58460|0.45833 58461|0.5 58462|0.54167 58463|0.55556 58464|0.48611 58465|0.66667 58466|0.65278 58467|0.375 58468|0.5 58469|0.5 58470|0.5 58471|0.5 58472|0.5 58473|0.5 58474|0.5 58475|0.69444 58476|0.51389 58477|0.69444 58478|0.75 58479|0.55556 58480|0.52778 58481|0.66667 58482|0.52778 58483|0.5 58484|0.5 58485|0.5 58486|0.52778 58487|0.40278 58488|0.5 58489|0.5 58490|0.51389 58491|0.75 58492|0.58333 58493|0.5 58494|0.66667 58495|0.5 58496|0.55556 58497|0.625 58498|0.61111 58499|0.36111 58500|0.5 58501|0.61111 58502|0.625 58503|0.58333 58504|0.22222 58505|0.81944 58506|0.41667 58507|0.38889 58508|0.51389 58509|0.94444 58510|0.44444 58511|0.72222 58512|0.5 58513|0.16667 58514|0.38889 58515|0.56944 58516|0.40278 58517|0.52778 58518|0.80556 58519|0.5 58520|0.5 58521|0.55556 58522|0.31944 58523|0.52778 58524|0.51389 58525|0.56944 58526|0.55556 58527|0.5 58528|0.5 58529|0.72222 58530|0.5 58531|0.5 58532|0.65278 58533|0.44444 58534|0.5 58535|0.58333 58536|0.33333 58537|0.16667 58538|0.55556 58539|0.55556 58540|0.625 58541|0.54167 58542|0.5 58543|0.54167 58544|0.55556 58545|0.54167 58546|0.51389 58547|0.69444 58548|0.52778 58549|0.5 58550|0.44444 58551|0.55556 58552|0.5 58553|0.5 58554|0.625 58555|0.56944 58556|0.63889 58557|0.5 58558|0.5 58559|0.41667 58560|0.52778 58561|0.61111 58562|0.5 58563|0.5 58564|0.51389 58565|0.73611 58566|0.75 58567|0.86111 58568|0.625 58569|0.875 58570|0.70833 58571|0.75 58572|0.84722 58573|0.45833 58574|0.75 58575|0.88889 58576|0.65278 58577|0.81944 58578|0.55556 58579|0.43056 58580|0.66667 58581|0.5 58582|0.65278 58583|0.33333 58584|0.5 58585|0.52778 58586|0.5 58587|0.54167 58588|0.63889 58589|0.5 58590|0.5 58591|0.5 58592|0.375 58593|0.47222 58594|0.5 58595|0.86111 58596|0.5 58597|0.66667 58598|0.91667 58599|0.58333 58600|0.75 58601|0.61111 58602|0.70833 58603|0.90278 58604|0.63889 58605|0.44444 58606|0.40278 58607|0.5 58608|0.55556 58609|0.5 58610|0.52778 58611|0.55556 58612|0.5 58613|0.5 58614|0.45833 58615|0.5 58616|0.44444 58617|0.875 58618|0.76389 58619|0.69444 58620|0.41667 58621|0.40278 58622|0.52778 58623|0.625 58624|0.70833 58625|0.55556 58626|0.75 58627|0.52778 58628|0.51389 58629|0.94444 58630|0.5 58631|0.41667 58632|0.66667 58633|0.625 58634|0.63889 58635|0.54167 58636|0.375 58637|0.48611 58638|0.36111 58639|0.55556 58640|0.83333 58641|0.66667 58642|0.80556 58643|0.84722 58644|0.72222 58645|0.88889 58646|0.5 58647|0.80556 58648|0.79167 58649|0.51389 58650|0.44444 58651|0.58333 58652|0.66667 58653|0.5 58654|0.77778 58655|0.5 58656|0.80556 58657|0.5 58658|0.72222 58659|0.5 58660|0.41667 58661|0.40278 58662|0.40278 58663|0.83333 58664|0.5 58665|0.5 58666|0.5 58667|0.77778 58668|0.59722 58669|0.5 58670|0.76389 58671|0.36111 58672|0.58333 58673|0.52778 58674|0.58333 58675|0.55556 58676|0.38889 58677|0.5 58678|0.55556 58679|0.5 58680|0.25 58681|0.59722 58682|0.30556 58683|0.58333 58684|0.56944 58685|0.625 58686|0.55556 58687|0.45833 58688|0.5 58689|0.5 58690|0.61111 58691|0.51389 58692|0.61111 58693|0.73611 58694|0.63889 58695|0.5 58696|0.5 58697|0.81944 58698|0.81944 58699|0.54167 58700|0.5 58701|0.5 58702|0.88889 58703|0.5 58704|0.55556 58705|0.45833 58706|0.625 58707|0.68056 58708|0.52778 58709|0.55556 58710|0.48611 58711|0.65278 58712|0.69444 58713|0.5 58714|0.63889 58715|0.56944 58716|0.68056 58717|0.63889 58718|0.68056 58719|0.51389 58720|0.55556 58721|0.34722 58722|0.38889 58723|0.25 58724|0.27778 58725|0.84722 58726|0.77778 58727|0.65278 58728|0.25 58729|0.375 58730|0.34722 58731|0.34722 58732|0.27778 58733|0.5 58734|0.69444 58735|0.66667 58736|0.45833 58737|0.5 58738|0.63889 58739|0.81944 58740|0.59722 58741|0.5 58742|0.56944 58743|0.5 58744|0.36111 58745|0.5 58746|0.625 58747|0.65278 58748|0.63889 58749|0.5 58750|0.41667 58751|0.625 58752|0.68056 58753|0.86111 58754|0.5 58755|0.58333 58756|0.5 58757|0.5 58758|0.58333 58759|0.5 58760|0.5 58761|0.61111 58762|0.63889 58763|0.51389 58764|0.5 58765|0.44444 58766|0.65278 58767|0.58333 58768|0.58333 58769|0.55556 58770|0.83333 58771|0.48611 58772|0.51389 58773|0.55556 58774|0.5 58775|0.73611 58776|0.76389 58777|0.70833 58778|0.34722 58779|0.65278 58780|0.44444 58781|0.66667 58782|0.45833 58783|0.43056 58784|0.59722 58785|0.69444 58786|0.76389 58787|0.55556 58788|0.27778 58789|0.5 58790|0.11111 58791|0.18056 58792|0.31944 58793|0.41667 58794|0.58333 58795|0.51389 58796|0.73611 58797|0.69444 58798|0.56944 58799|0.5 58800|0.58333 58801|0.56944 58802|0.33333 58803|0.5 58804|0.5 58805|0.47222 58806|0.58333 58807|0.75 58808|0.45833 58809|0.45833 58810|0.31944 58811|0.68056 58812|0.52778 58813|0.48611 58814|0.68056 58815|0.77778 58816|0.63889 58817|0.51389 58818|0.51389 58819|0.40278 58820|0.38889 58821|0.25 58822|0.45833 58823|0.45833 58824|0.52778 58825|0.5 58826|0.56944 58827|0.58333 58828|0.51389 58829|0.5 58830|0.51389 58831|0.63889 58832|0.5 58833|0.55556 58834|0.55556 58835|0.44444 58836|0.5 58837|0.59722 58838|0.56944 58839|0.48611 58840|0.5 58841|0.5 58842|0.58333 58843|0.55556 58844|0.52778 58845|0.76389 58846|0.51389 58847|0.63889 58848|0.58333 58849|0.5 58850|0.5 58851|0.55556 58852|0.5 58853|0.72222 58854|0.63889 58855|0.58333 58856|0.5 58857|0.625 58858|0.77778 58859|0.26389 58860|0.36111 58861|0.5 58862|0.59722 58863|0.5 58864|0.44444 58865|0.58333 58866|0.70833 58867|0.77778 58868|0.79167 58869|0.88889 58870|0.55556 58871|0.44444 58872|0.51389 58873|0.36111 58874|0.5 58875|0.26389 58876|0.52778 58877|0.5 58878|0.51389 58879|0.5 58880|0.63889 58881|0.51389 58882|0.66667 58883|0.52778 58884|0.5 58885|0.52778 58886|0.51389 58887|0.75 58888|0.69444 58889|0.5 58890|0.52778 58891|0.45833 58892|0.5 58893|0.40278 58894|0.5 58895|0.5 58896|0.5 58897|0.55556 58898|0.70833 58899|0.43056 58900|0.84722 58901|0.79167 58902|0.40278 58903|0.48611 58904|0.75 58905|0.5 58906|0.63889 58907|0.44444 58908|0.48611 58909|0.69444 58910|0.66667 58911|0.33333 58912|0.81944 58913|0.79167 58914|0.54167 58915|0.79167 58916|0.76389 58917|0.66667 58918|0.72222 58919|0.40278 58920|0.73611 58921|0.84722 58922|0.55556 58923|0.66667 58924|0.5 58925|0.68056 58926|0.55556 58927|0.55556 58928|0.5 58929|0.5 58930|0.44444 58931|0.51389 58932|0.51389 58933|0.66667 58934|0.58333 58935|0.51389 58936|0.83333 58937|0.55556 58938|0.51389 58939|0.5 58940|0.38889 58941|0.61111 58942|0.45833 58943|0.625 58944|0.80556 58945|0.56944 58946|0.48611 58947|0.41667 58948|0.34722 58949|0.48611 58950|0.51389 58951|0.5 58952|0.84722 58953|0.44444 58954|0.5 58955|0.41667 58956|0.5 58957|0.30556 58958|0.56944 58959|0.33333 58960|0.69444 58961|0.5 58962|0.61111 58963|0.5 58964|0.66667 58965|0.20833 58966|0.25 58967|0.625 58968|0.66667 58969|0.5 58970|0.27778 58971|0.26389 58972|0.91667 58973|0.48611 58974|0.55556 58975|0.5 58976|0.5 58977|0.55556 58978|0.56944 58979|0.59722 58980|0.22222 58981|0.55556 58982|0.55556 58983|0.72222 58984|0.75 58985|0.55556 58986|0.73611 58987|0.45833 58988|0.5 58989|0.5 58990|0.84722 58991|0.48611 58992|0.29167 58993|0.5 58994|0.88889 58995|0.72222 58996|0.58333 58997|0.72222 58998|0.51389 58999|0.77778 59000|0.72222 59001|0.83333 59002|0.83333 59003|0.33333 59004|0.83333 59005|0.81944 59006|0.61111 59007|0.5 59008|0.5 59009|0.44444 59010|0.38889 59011|0.54167 59012|0.5 59013|0.55556 59014|0.58333 59015|0.76389 59016|0.55556 59017|0.59722 59018|0.625 59019|0.66667 59020|0.66667 59021|0.72222 59022|0.72222 59023|0.84722 59024|0.80556 59025|0.5 59026|0.61111 59027|0.5 59028|0.5 59029|0.5 59030|0.83333 59031|0.61111 59032|0.5 59033|0.47222 59034|0.52778 59035|0.55556 59036|0.43056 59037|0.55556 59038|0.51389 59039|0.5 59040|0.61111 59041|0.79167 59042|0.73611 59043|0.5 59044|0.73611 59045|0.72222 59046|0.5 59047|0.91667 59048|0.68056 59049|0.72222 59050|0.84722 59051|0.875 59052|0.75 59053|0.5 59054|0.5 59055|0.73611 59056|0.5 59057|0.55556 59058|0.51389 59059|0.83333 59060|0.66667 59061|0.56944 59062|0.625 59063|0.54167 59064|0.54167 59065|0.83333 59066|0.5 59067|0.5 59068|0.47222 59069|0.33333 59070|0.61111 59071|0.31944 59072|0.72222 59073|0.83333 59074|0.70833 59075|0.66667 59076|0.72222 59077|0.79167 59078|0.73611 59079|0.76389 59080|0.51389 59081|0.40278 59082|0.30556 59083|0.625 59084|0.55556 59085|0.5 59086|0.72222 59087|0.61111 59088|0.80556 59089|0.5 59090|0.5 59091|0.5 59092|0.61111 59093|0.48611 59094|0.69444 59095|0.88889 59096|0.77778 59097|0.5 59098|0.69444 59099|0.66667 59100|0.76389 59101|0.59722 59102|0.76389 59103|0.59722 59104|0.54167 59105|0.51389 59106|0.63889 59107|0.5 59108|0.5 59109|0.55556 59110|0.30556 59111|0.44444 59112|0.47222 59113|0.44444 59114|0.47222 59115|0.31944 59116|0.55556 59117|0.44444 59118|0.5 59119|0.375 59120|0.58333 59121|0.63889 59122|0.5 59123|0.63889 59124|0.73611 59125|0.72222 59126|0.5 59127|0.77778 59128|0.55556 59129|0.52778 59130|0.58333 59131|0.69444 59132|0.69444 59133|0.68056 59134|0.76389 59135|0.51389 59136|0.22222 59137|0.56944 59138|0.5 59139|0.55556 59140|0.63889 59141|0.5 59142|0.5 59143|0.72222 59144|0.70833 59145|0.5 59146|0.5 59147|0.5 59148|0.5 59149|0.61111 59150|0.58333 59151|0.5 59152|0.51389 59153|0.5 59154|0.5 59155|0.58333 59156|0.52778 59157|0.5 59158|0.81944 59159|0.48611 59160|0.59722 59161|0.83333 59162|0.69444 59163|0.58333 59164|0.61111 59165|0.56944 59166|0.68056 59167|0.61111 59168|0.88889 59169|0.70833 59170|0.5 59171|0.47222 59172|0.5 59173|0.52778 59174|0.75 59175|0.79167 59176|0.77778 59177|0.875 59178|0.75 59179|0.69444 59180|0.65278 59181|0.72222 59182|0.88889 59183|0.51389 59184|0.69444 59185|0.75 59186|0.63889 59187|0.63889 59188|0.51389 59189|0.5 59190|0.55556 59191|0.86111 59192|0.51389 59193|0.33333 59194|0.75 59195|0.5 59196|0.5 59197|0.55556 59198|0.5 59199|0.52778 59200|0.55556 59201|0.61111 59202|0.5 59203|0.51389 59204|0.5 59205|0.27778 59206|0.88889 59207|0.58333 59208|0.75 59209|0.63889 59210|0.58333 59211|0.56944 59212|0.5 59213|0.34722 59214|0.30556 59215|0.55556 59216|0.5 59217|0.56944 59218|0.22222 59219|0.72222 59220|0.5 59221|0.5 59222|0.65278 59223|0.61111 59224|0.80556 59225|0.63889 59226|0.5 59227|0.73611 59228|0.70833 59229|0.38889 59230|0.51389 59231|0.72222 59232|0.76389 59233|0.48611 59234|0.56944 59235|0.5 59236|0.5 59237|0.83333 59238|0.45833 59239|0.59722 59240|0.66667 59241|0.55556 59242|0.52778 59243|0.76389 59244|0.52778 59245|0.59722 59246|0.36111 59247|0.45833 59248|0.5 59249|0.59722 59250|0.45833 59251|0.52778 59252|0.76389 59253|0.54167 59254|0.55556 59255|0.38889 59256|0.58333 59257|0.69444 59258|0.72222 59259|0.5 59260|0.61111 59261|0.625 59262|0.51389 59263|0.75 59264|0.5 59265|0.5 59266|0.61111 59267|0.56944 59268|0.26389 59269|0.5 59270|0.83333 59271|0.55556 59272|0.40278 59273|0.54167 59274|0.38889 59275|0.59722 59276|0.76389 59277|0.63889 59278|0.70833 59279|0.59722 59280|0.69444 59281|0.48611 59282|0.33333 59283|0.61111 59284|0.76389 59285|0.44444 59286|0.68056 59287|0.52778 59288|0.52778 59289|0.5 59290|0.63889 59291|0.23611 59292|0.55556 59293|0.55556 59294|0.5 59295|0.61111 59296|0.61111 59297|0.88889 59298|0.5 59299|0.48611 59300|0.33333 59301|0.20833 59302|0.63889 59303|0.5 59304|0.5 59305|0.5 59306|0.43056 59307|0.5 59308|0.68056 59309|0.51389 59310|0.59722 59311|0.48611 59312|0.55556 59313|0.55556 59314|0.73611 59315|0.56944 59316|0.79167 59317|0.43056 59318|0.55556 59319|0.56944 59320|0.83333 59321|0.5 59322|0.75 59323|0.81944 59324|0.43056 59325|0.38889 59326|0.41667 59327|0.5 59328|0.61111 59329|0.5 59330|0.76389 59331|0.43056 59332|0.68056 59333|0.48611 59334|0.5 59335|0.5 59336|0.5 59337|0.63889 59338|0.61111 59339|0.41667 59340|0.27778 59341|0.51389 59342|0.63889 59343|0.5 59344|0.61111 59345|0.625 59346|0.5 59347|0.5 59348|0.40278 59349|0.5 59350|0.55556 59351|0.63889 59352|0.625 59353|0.44444 59354|0.65278 59355|0.38889 59356|0.48611 59357|0.94444 59358|0.58333 59359|0.22222 59360|0.5 59361|0.66667 59362|0.45833 59363|0.52778 59364|0.41667 59365|0.5 59366|0.61111 59367|0.47222 59368|0.52778 59369|0.5 59370|0.58333 59371|0.66667 59372|0.83333 59373|0.68056 59374|0.52778 59375|0.61111 59376|0.5 59377|0.55556 59378|0.56944 59379|0.625 59380|0.54167 59381|0.76389 59382|0.45833 59383|0.69444 59384|0.51389 59385|0.69444 59386|0.5 59387|0.58333 59388|0.5 59389|0.38889 59390|0.48611 59391|0.52778 59392|0.52778 59393|0.44444 59394|0.52778 59395|0.45833 59396|0.61111 59397|0.58333 59398|0.51389 59399|0.63889 59400|0.48611 59401|0.55556 59402|0.70833 59403|0.52778 59404|0.5 59405|0.56944 59406|0.5 59407|0.54167 59408|0.51389 59409|0.5 59410|0.33333 59411|0.40278 59412|0.56944 59413|0.5 59414|0.31944 59415|0.59722 59416|0.5 59417|0.52778 59418|0.43056 59419|0.55556 59420|0.48611 59421|0.66667 59422|0.5 59423|0.55556 59424|0.5 59425|0.61111 59426|0.55556 59427|0.51389 59428|0.30556 59429|0.70833 59430|0.61111 59431|0.91667 59432|0.68056 59433|0.5 59434|0.63889 59435|0.69444 59436|0.73611 59437|0.69444 59438|0.59722 59439|0.65278 59440|0.66667 59441|0.61111 59442|0.47222 59443|0.43056 59444|0.41667 59445|0.5 59446|0.81944 59447|0.59722 59448|0.30556 59449|0.375 59450|0.26389 59451|0.125 59452|0.29167 59453|0.19444 59454|0.5 59455|0.875 59456|0.5 59457|0.27778 59458|0.34722 59459|0.11111 59460|0.5 59461|0.29167 59462|0.22222 59463|0.69444 59464|0.31944 59465|0.52778 59466|0.5 59467|0.81944 59468|0.61111 59469|0.79167 59470|0.73611 59471|0.91667 59472|0.80556 59473|0.88889 59474|0.625 59475|0.84722 59476|0.81944 59477|0.83333 59478|0.68056 59479|0.66667 59480|0.625 59481|0.30556 59482|0.40278 59483|0.43056 59484|0.5 59485|0.48611 59486|0.56944 59487|0.52778 59488|0.5 59489|0.5 59490|0.45833 59491|0.5 59492|0.58333 59493|0.45833 59494|0.51389 59495|0.44444 59496|0.45833 59497|0.54167 59498|0.54167 59499|0.52778 59500|0.66667 59501|0.76389 59502|0.69444 59503|0.55556 59504|0.59722 59505|0.68056 59506|0.625 59507|0.69444 59508|0.70833 59509|0.73611 59510|0.54167 59511|0.61111 59512|0.5 59513|0.5 59514|0.5 59515|0.55556 59516|0.55556 59517|0.47222 59518|0.45833 59519|0.34722 59520|0.76389 59521|0.69444 59522|0.63889 59523|0.5 59524|0.52778 59525|0.5 59526|0.69444 59527|0.76389 59528|0.83333 59529|0.48611 59530|0.59722 59531|0.5 59532|0.68056 59533|0.5 59534|0.61111 59535|0.48611 59536|0.63889 59537|0.76389 59538|0.44444 59539|0.55556 59540|0.51389 59541|0.5 59542|0.38889 59543|0.31944 59544|0.47222 59545|0.5 59546|0.41667 59547|0.68056 59548|0.59722 59549|0.61111 59550|0.61111 59551|0.75 59552|0.875 59553|0.55556 59554|0.54167 59555|0.55556 59556|0.63889 59557|0.44444 59558|0.5 59559|0.55556 59560|0.79167 59561|0.27778 59562|0.5 59563|0.34722 59564|0.5 59565|0.58333 59566|0.44444 59567|0.44444 59568|0.51389 59569|0.5 59570|0.30556 59571|0.5 59572|0.55556 59573|0.77778 59574|0.83333 59575|0.56944 59576|0.5 59577|0.80556 59578|0.76389 59579|0.38889 59580|0.70833 59581|0.79167 59582|0.80556 59583|0.80556 59584|0.5 59585|0.5 59586|0.5 59587|0.5 59588|0.54167 59589|0.5 59590|0.83333 59591|0.52778 59592|0.375 59593|0.81944 59594|0.80556 59595|0.93056 59596|0.5 59597|0.83333 59598|0.47222 59599|0.5 59600|0.83333 59601|0.5 59602|0.52778 59603|0.51389 59604|0.55556 59605|0.5 59606|0.44444 59607|0.5 59608|0.40278 59609|0.27778 59610|0.25 59611|0.77778 59612|0.73611 59613|0.125 59614|0.77778 59615|0.80556 59616|0.5 59617|0.44444 59618|0.5 59619|0.61111 59620|0.51389 59621|0.5 59622|0.52778 59623|0.375 59624|0.47222 59625|0.31944 59626|0.5 59627|0.75 59628|0.51389 59629|0.66667 59630|0.41667 59631|0.44444 59632|0.38889 59633|0.66667 59634|0.58333 59635|0.48611 59636|0.44444 59637|0.55556 59638|0.54167 59639|0.51389 59640|0.5 59641|0.5 59642|0.5 59643|0.27778 59644|0.38889 59645|0.66667 59646|0.61111 59647|0.5 59648|0.625 59649|0.69444 59650|0.55556 59651|0.34722 59652|0.5 59653|0.75 59654|0.52778 59655|0.94444 59656|0.77778 59657|0.44444 59658|0.70833 59659|0.65278 59660|0.88889 59661|0.61111 59662|0.48611 59663|0.79167 59664|0.55556 59665|0.66667 59666|0.63889 59667|0.55556 59668|0.54167 59669|0.125 59670|0.34722 59671|0.38889 59672|0.33333 59673|0.19444 59674|0.11111 59675|0.61111 59676|0.68056 59677|0.375 59678|0.30556 59679|0.45833 59680|0.5 59681|0.51389 59682|0.59722 59683|0.54167 59684|0.69444 59685|0.51389 59686|0.38889 59687|0.51389 59688|0.36111 59689|0.27778 59690|0.33333 59691|0.5 59692|0.5 59693|0.55556 59694|0.63889 59695|0.69444 59696|0.72222 59697|0.5 59698|0.63889 59699|0.59722 59700|0.68056 59701|0.26389 59702|0.19444 59703|0.38889 59704|0.5 59705|0.31944 59706|0.875 59707|0.45833 59708|0.38889 59709|0.44444 59710|0.68056 59711|0.61111 59712|0.68056 59713|0.73611 59714|0.61111 59715|0.5 59716|0.54167 59717|0.43056 59718|0.83333 59719|0.55556 59720|0.83333 59721|0.52778 59722|0.58333 59723|0.43056 59724|0.51389 59725|0.63889 59726|0.38889 59727|0.33333 59728|0.44444 59729|0.43056 59730|0.5 59731|0.40278 59732|0.30556 59733|0.33333 59734|0.45833 59735|0.51389 59736|0.43056 59737|0.36111 59738|0.40278 59739|0.5 59740|0.54167 59741|0.76389 59742|0.55556 59743|0.51389 59744|0.36111 59745|0.54167 59746|0.61111 59747|0.47222 59748|0.15278 59749|0.29167 59750|0.38889 59751|0.5 59752|0.43056 59753|0.77778 59754|0.48611 59755|0.5 59756|0.68056 59757|0.84722 59758|0.88889 59759|0.22222 59760|0.27778 59761|0.33333 59762|0.5 59763|0.5 59764|0.5 59765|0.76389 59766|0.58333 59767|0.45833 59768|0.43056 59769|0.40278 59770|0.48611 59771|0.5 59772|0.47222 59773|0.59722 59774|0.69444 59775|0.5 59776|0.48611 59777|0.91667 59778|0.58333 59779|0.54167 59780|0.61111 59781|0.66667 59782|0.45833 59783|0.54167 59784|0.63889 59785|0.51389 59786|0.61111 59787|0.54167 59788|0.55556 59789|0.5 59790|0.5 59791|0.5 59792|0.55556 59793|0.65278 59794|0.69444 59795|0.47222 59796|0.73611 59797|0.59722 59798|0.40278 59799|0.56944 59800|0.38889 59801|0.55556 59802|0.86111 59803|0.41667 59804|0.83333 59805|0.68056 59806|0.75 59807|0.69444 59808|0.77778 59809|0.56944 59810|0.40278 59811|0.73611 59812|0.22222 59813|0.5 59814|0.61111 59815|0.76389 59816|0.79167 59817|0.79167 59818|0.77778 59819|0.95833 59820|0.90278 59821|0.51389 59822|0.51389 59823|0.40278 59824|0.63889 59825|0.56944 59826|0.63889 59827|0.5 59828|0.27778 59829|0.5 59830|0.5 59831|0.55556 59832|0.44444 59833|0.51389 59834|0.44444 59835|0.55556 59836|0.44444 59837|0.61111 59838|0.52778 59839|0.5 59840|0.77778 59841|0.88889 59842|0.91667 59843|0.65278 59844|0.73611 59845|0.625 59846|0.81944 59847|0.79167 59848|0.76389 59849|0.83333 59850|0.94444 59851|0.79167 59852|0.81944 59853|0.55556 59854|0.38889 59855|0.83333 59856|0.77778 59857|0.73611 59858|0.80556 59859|0.83333 59860|0.81944 59861|0.59722 59862|0.79167 59863|0.5 59864|0.93056 59865|0.79167 59866|0.72222 59867|0.38889 59868|0.5 59869|0.5 59870|0.51389 59871|0.41667 59872|0.43056 59873|0.44444 59874|0.54167 59875|0.59722 59876|0.5 59877|0.5 59878|0.5 59879|0.58333 59880|0.59722 59881|0.29167 59882|0.77778 59883|0.79167 59884|0.625 59885|0.5 59886|0.5 59887|0.5 59888|0.70833 59889|0.80556 59890|0.56944 59891|0.51389 59892|0.55556 59893|0.56944 59894|0.5 59895|0.83333 59896|0.83333 59897|0.77778 59898|0.875 59899|0.63889 59900|0.45833 59901|0.72222 59902|0.51389 59903|0.61111 59904|0.68056 59905|0.5 59906|0.5 59907|0.5 59908|0.41667 59909|0.52778 59910|0.47222 59911|0.66667 59912|0.90278 59913|0.45833 59914|0.56944 59915|0.72222 59916|0.76389 59917|0.72222 59918|0.33333 59919|0.40278 59920|0.25 59921|0.56944 59922|0.69444 59923|0.47222 59924|0.63889 59925|0.86111 59926|0.34722 59927|0.45833 59928|0.72222 59929|0.5 59930|0.50694 59931|0.55556 59932|0.77778 59933|0.66667 59934|0.45833 59935|0.66667 59936|0.41667 59937|0.54167 59938|0.5 59939|0.81944 59940|0.5 59941|0.44444 59942|0.44444 59943|0.5 59944|0.94444 59945|0.86111 59946|0.69444 59947|0.48611 59948|0.47222 59949|0.40278 59950|0.59722 59951|0.5 59952|0.55556 59953|0.51389 59954|0.65278 59955|0.38889 59956|0.69444 59957|0.61111 59958|0.5 59959|0.72222 59960|0.66667 59961|0.375 59962|0.5 59963|0.56944 59964|0.54167 59965|0.54167 59966|0.55556 59967|0.55556 59968|0.55556 59969|0.5 59970|0.63889 59971|0.59722 59972|0.5 59973|0.5 59974|0.61111 59975|0.55556 59976|0.63889 59977|0.5 59978|0.56944 59979|0.54167 59980|0.61111 59981|0.5 59982|0.5 59983|0.40278 59984|0.43056 59985|0.58333 59986|0.5 59987|0.58333 59988|0.5 59989|0.5 59990|0.5 59991|0.73611 59992|0.61111 59993|0.68056 59994|0.44444 59995|0.56944 59996|0.5 59997|0.5 59998|0.51389 59999|0.47222 60000|0.54167 60001|0.44444 60002|0.79167 60003|0.73611 60004|0.73611 60005|0.58333 60006|0.55556 60007|0.58333 60008|0.5 60009|0.61111 60010|0.61111 60011|0.66667 60012|0.83333 60013|0.61111 60014|0.45833 60015|0.45833 60016|0.69444 60017|0.72222 60018|0.75 60019|0.73611 60020|0.79167 60021|0.77778 60022|0.63889 60023|0.76389 60024|0.77778 60025|0.84722 60026|0.77778 60027|0.76389 60028|0.66667 60029|0.77778 60030|0.88889 60031|0.73611 60032|0.70833 60033|0.65278 60034|0.81944 60035|0.73611 60036|0.58333 60037|0.81944 60038|0.77778 60039|0.52778 60040|0.5 60041|0.5 60042|0.65278 60043|0.75 60044|0.33333 60045|0.45833 60046|0.5 60047|0.56944 60048|0.75 60049|0.34722 60050|0.5 60051|0.5 60052|0.5 60053|0.5 60054|0.5 60055|0.59722 60056|0.66667 60057|0.52778 60058|0.5 60059|0.52778 60060|0.33333 60061|0.44444 60062|0.75 60063|0.58333 60064|0.58333 60065|0.55556 60066|0.47222 60067|0.68056 60068|0.77778 60069|0.61111 60070|0.25 60071|0.5 60072|0.48611 60073|0.5 60074|0.5 60075|0.51389 60076|0.56944 60077|0.52778 60078|0.54167 60079|0.5 60080|0.51389 60081|0.5 60082|0.63889 60083|0.55556 60084|0.63889 60085|0.52778 60086|0.48611 60087|0.70833 60088|0.59722 60089|0.80556 60090|0.45833 60091|0.5 60092|0.5 60093|0.5 60094|0.54167 60095|0.68056 60096|0.5 60097|0.5 60098|0.63889 60099|0.44444 60100|0.55556 60101|0.48611 60102|0.63889 60103|0.44444 60104|0.45833 60105|0.43056 60106|0.70833 60107|0.55556 60108|0.40278 60109|0.41667 60110|0.5 60111|0.65278 60112|0.44444 60113|0.38889 60114|0.5 60115|0.59722 60116|0.55556 60117|0.44444 60118|0.79167 60119|0.79167 60120|0.63889 60121|0.58333 60122|0.51389 60123|0.69444 60124|0.68056 60125|0.61111 60126|0.61111 60127|0.66667 60128|0.77778 60129|0.5 60130|0.69444 60131|0.79167 60132|0.69444 60133|0.27778 60134|0.625 60135|0.5 60136|0.66667 60137|0.70833 60138|0.56944 60139|0.44444 60140|0.66667 60141|0.56944 60142|0.44444 60143|0.61111 60144|0.80556 60145|0.36111 60146|0.44444 60147|0.80556 60148|0.61111 60149|0.59722 60150|0.58333 60151|0.38889 60152|0.76389 60153|0.63889 60154|0.5 60155|0.5 60156|0.55556 60157|0.5 60158|0.77778 60159|0.56944 60160|0.77778 60161|0.77778 60162|0.55556 60163|0.5 60164|0.55556 60165|0.61111 60166|0.5 60167|0.5 60168|0.66667 60169|0.66667 60170|0.48611 60171|0.33333 60172|0.55556 60173|0.5 60174|0.5 60175|0.51389 60176|0.59722 60177|0.5 60178|0.5 60179|0.5 60180|0.72222 60181|0.5 60182|0.55556 60183|0.86111 60184|0.61111 60185|0.77778 60186|0.70833 60187|0.65278 60188|0.33333 60189|0.375 60190|0.44444 60191|0.76389 60192|0.79167 60193|0.80556 60194|0.55556 60195|0.77778 60196|0.54167 60197|0.72222 60198|0.44444 60199|0.5 60200|0.5 60201|0.63889 60202|0.52778 60203|0.77778 60204|0.72222 60205|0.66667 60206|0.5 60207|0.36111 60208|0.31944 60209|0.79167 60210|0.51389 60211|0.5 60212|0.55556 60213|0.70833 60214|0.76389 60215|0.51389 60216|0.55556 60217|0.66667 60218|0.72222 60219|0.76389 60220|0.66667 60221|0.61111 60222|0.84722 60223|0.75 60224|0.65278 60225|0.51389 60226|0.80556 60227|0.73611 60228|0.69444 60229|0.72222 60230|0.625 60231|0.65278 60232|0.66667 60233|0.81944 60234|0.77778 60235|0.5 60236|0.70833 60237|0.56944 60238|0.77778 60239|0.56944 60240|0.5 60241|0.66667 60242|0.65278 60243|0.61111 60244|0.72222 60245|0.86111 60246|0.5 60247|0.33333 60248|0.125 60249|0.38889 60250|0.33333 60251|0.5 60252|0.66667 60253|0.72222 60254|0.36111 60255|0.47222 60256|0.61111 60257|0.69444 60258|0.58333 60259|0.56944 60260|0.52778 60261|0.63889 60262|0.5 60263|0.31944 60264|0.83333 60265|0.61111 60266|0.5 60267|0.5 60268|0.38889 60269|0.75 60270|0.77778 60271|0.65278 60272|0.66667 60273|0.58333 60274|0.59722 60275|0.5 60276|0.52778 60277|0.55556 60278|0.54167 60279|0.5 60280|0.83333 60281|0.77778 60282|0.79167 60283|0.72222 60284|0.80556 60285|0.72222 60286|0.75 60287|0.83333 60288|0.5 60289|0.51389 60290|0.72222 60291|0.61111 60292|0.52778 60293|0.51389 60294|0.81944 60295|0.30556 60296|0.68056 60297|0.5 60298|0.5 60299|0.61111 60300|0.63889 60301|0.75 60302|0.5 60303|0.5 60304|0.41667 60305|0.5 60306|0.44444 60307|0.61111 60308|0.59722 60309|0.44444 60310|0.55556 60311|0.61111 60312|0.5 60313|0.72222 60314|0.72222 60315|0.61111 60316|0.55556 60317|0.70833 60318|0.68056 60319|0.68056 60320|0.81944 60321|0.72222 60322|0.77778 60323|0.625 60324|0.56944 60325|0.54167 60326|0.83333 60327|0.73611 60328|0.61111 60329|0.80556 60330|0.68056 60331|0.88889 60332|0.81944 60333|0.66667 60334|0.72222 60335|0.625 60336|0.51389 60337|0.44444 60338|0.66667 60339|0.83333 60340|0.625 60341|0.79167 60342|0.61111 60343|0.61111 60344|0.83333 60345|0.5 60346|0.66667 60347|0.83333 60348|0.76389 60349|0.44444 60350|0.77778 60351|0.80556 60352|0.5 60353|0.55556 60354|0.66667 60355|0.61111 60356|0.40278 60357|0.51389 60358|0.88889 60359|0.55556 60360|0.72222 60361|0.55556 60362|0.52778 60363|0.65278 60364|0.5 60365|0.5 60366|0.72222 60367|0.76389 60368|0.52778 60369|0.79167 60370|0.51389 60371|0.23611 60372|0.70833 60373|0.625 60374|0.5 60375|0.875 60376|0.61111 60377|0.5 60378|0.66667 60379|0.69444 60380|0.38889 60381|0.55556 60382|0.68056 60383|0.52778 60384|0.45833 60385|0.66667 60386|0.76389 60387|0.375 60388|0.47222 60389|0.56944 60390|0.73611 60391|0.61111 60392|0.625 60393|0.55556 60394|0.5 60395|0.625 60396|0.83333 60397|0.56944 60398|0.51389 60399|0.5 60400|0.5 60401|0.33333 60402|0.81944 60403|0.68056 60404|0.55556 60405|0.5 60406|0.81944 60407|0.5 60408|0.5 60409|0.44444 60410|0.70833 60411|0.54167 60412|0.63889 60413|0.51389 60414|0.56944 60415|0.47222 60416|0.625 60417|0.5 60418|0.52778 60419|0.55556 60420|0.54167 60421|0.68056 60422|0.72222 60423|0.68056 60424|0.51389 60425|0.33333 60426|0.5 60427|0.58333 60428|0.70833 60429|0.94444 60430|0.70833 60431|0.65278 60432|0.81944 60433|0.69444 60434|0.65278 60435|0.61111 60436|0.75 60437|0.69444 60438|0.61111 60439|0.61111 60440|0.44444 60441|0.30556 60442|0.23611 60443|0.16667 60444|0.25 60445|0.5 60446|0.54167 60447|0.625 60448|0.55556 60449|0.33333 60450|0.65278 60451|0.83333 60452|0.61111 60453|0.73611 60454|0.81944 60455|0.84722 60456|0.875 60457|0.75 60458|0.83333 60459|0.72222 60460|0.77778 60461|0.5 60462|0.88889 60463|0.52778 60464|0.70833 60465|0.59722 60466|0.52778 60467|0.75 60468|0.59722 60469|0.55556 60470|0.77778 60471|0.86111 60472|0.84722 60473|0.61111 60474|0.5 60475|0.94444 60476|0.22222 60477|0.30556 60478|0.76389 60479|0.76389 60480|0.68056 60481|0.80556 60482|0.34722 60483|0.65278 60484|0.51389 60485|0.25 60486|0.75 60487|0.33333 60488|0.5 60489|0.5 60490|0.75 60491|0.66667 60492|0.55556 60493|0.36111 60494|0.51389 60495|0.51389 60496|0.55556 60497|0.5 60498|0.45833 60499|0.55556 60500|0.44444 60501|0.5 60502|0.5 60503|0.44444 60504|0.55556 60505|0.51389 60506|0.5 60507|0.375 60508|0.30556 60509|0.63889 60510|0.5 60511|0.51389 60512|0.55556 60513|0.5 60514|0.48611 60515|0.56944 60516|0.5 60517|0.5 60518|0.5 60519|0.43056 60520|0.63889 60521|0.5 60522|0.73611 60523|0.63889 60524|0.41667 60525|0.76389 60526|0.55556 60527|0.91667 60528|0.76389 60529|0.81944 60530|0.54167 60531|0.45833 60532|0.5 60533|0.38889 60534|0.47222 60535|0.72222 60536|0.52778 60537|0.55556 60538|0.43056 60539|0.625 60540|0.61111 60541|0.5 60542|0.65278 60543|0.69444 60544|0.5 60545|0.5 60546|0.66667 60547|0.5 60548|0.68056 60549|0.36111 60550|0.55556 60551|0.5 60552|0.5 60553|0.5 60554|0.75 60555|0.73611 60556|0.79167 60557|0.76389 60558|0.5 60559|0.77778 60560|0.65278 60561|0.55556 60562|0.38889 60563|0.65278 60564|0.66667 60565|0.55556 60566|0.44444 60567|0.29167 60568|0.22222 60569|0.31944 60570|0.76389 60571|0.625 60572|0.23611 60573|0.44444 60574|0.72222 60575|0.45833 60576|0.54167 60577|0.44444 60578|0.33333 60579|0.44444 60580|0.66667 60581|0.55556 60582|0.30556 60583|0.75 60584|0.51389 60585|0.5 60586|0.51389 60587|0.63889 60588|0.56944 60589|0.48611 60590|0.61111 60591|0.65278 60592|0.5 60593|0.27778 60594|0.56944 60595|0.72222 60596|0.5 60597|0.75 60598|0.5 60599|0.51389 60600|0.58333 60601|0.81944 60602|0.44444 60603|0.5 60604|0.54167 60605|0.55556 60606|0.51389 60607|0.43056 60608|0.5 60609|0.5 60610|0.55556 60611|0.61111 60612|0.61111 60613|0.5 60614|0.5 60615|0.5 60616|0.44444 60617|0.5 60618|0.34722 60619|0.5 60620|0.5 60621|0.58333 60622|0.73611 60623|0.70833 60624|0.47222 60625|0.5 60626|0.5 60627|0.58333 60628|0.5 60629|0.5 60630|0.54167 60631|0.5 60632|0.77778 60633|0.73611 60634|0.22222 60635|0.86111 60636|0.65278 60637|0.70833 60638|0.5 60639|0.73611 60640|0.5 60641|0.5 60642|0.76389 60643|0.5 60644|0.5 60645|0.875 60646|0.77778 60647|0.66667 60648|0.51389 60649|0.70833 60650|0.86111 60651|0.80556 60652|0.625 60653|0.68056 60654|0.45833 60655|0.83333 60656|0.5 60657|0.5 60658|0.27778 60659|0.65278 60660|0.55556 60661|0.5 60662|0.77778 60663|0.44444 60664|0.52778 60665|0.55556 60666|0.55556 60667|0.875 60668|0.625 60669|0.55556 60670|0.625 60671|0.68056 60672|0.66667 60673|0.84722 60674|0.5 60675|0.5 60676|0.47222 60677|0.5 60678|0.56944 60679|0.5 60680|0.77778 60681|0.65278 60682|0.72222 60683|0.61111 60684|0.55556 60685|0.51389 60686|0.75 60687|0.5 60688|0.5 60689|0.18056 60690|0.69444 60691|0.66667 60692|0.76389 60693|0.75 60694|0.5 60695|0.54167 60696|0.56944 60697|0.38889 60698|0.59722 60699|0.80556 60700|0.63889 60701|0.43056 60702|0.56944 60703|0.625 60704|0.625 60705|0.56944 60706|0.5 60707|0.55556 60708|0.61111 60709|0.77778 60710|0.80556 60711|0.77778 60712|0.69444 60713|0.63889 60714|0.56944 60715|0.5 60716|0.58333 60717|0.80556 60718|0.48611 60719|0.59722 60720|0.47222 60721|0.5 60722|0.29167 60723|0.375 60724|0.58333 60725|0.45833 60726|0.625 60727|0.5 60728|0.5 60729|0.22222 60730|0.22222 60731|0.5 60732|0.5 60733|0.5 60734|0.47222 60735|0.48611 60736|0.73611 60737|0.68056 60738|0.58333 60739|0.56944 60740|0.80556 60741|0.29167 60742|0.5 60743|0.5 60744|0.66667 60745|0.63889 60746|0.625 60747|0.47222 60748|0.5 60749|0.38889 60750|0.59722 60751|0.5 60752|0.51389 60753|0.44444 60754|0.58333 60755|0.5 60756|0.63889 60757|0.51389 60758|0.47222 60759|0.77778 60760|0.56944 60761|0.44444 60762|0.55556 60763|0.65278 60764|0.38889 60765|0.61111 60766|0.5 60767|0.76389 60768|0.76389 60769|0.72222 60770|0.73611 60771|0.75 60772|0.59722 60773|0.68056 60774|0.5 60775|0.52778 60776|0.54167 60777|0.44444 60778|0.58333 60779|0.43056 60780|0.56944 60781|0.66667 60782|0.77778 60783|0.81944 60784|0.56944 60785|0.73611 60786|0.73611 60787|0.63889 60788|0.61111 60789|0.61111 60790|0.77778 60791|0.44444 60792|0.66667 60793|0.16667 60794|0.77778 60795|0.75 60796|0.76389 60797|0.76389 60798|0.63889 60799|0.66667 60800|0.52778 60801|0.34722 60802|0.40278 60803|0.875 60804|0.84722 60805|0.69444 60806|0.81944 60807|0.55556 60808|0.55556 60809|0.80556 60810|0.83333 60811|0.86111 60812|0.77778 60813|0.72222 60814|0.80556 60815|0.86111 60816|0.70833 60817|0.66667 60818|0.66667 60819|0.81944 60820|0.79167 60821|0.5 60822|0.88889 60823|0.91667 60824|0.84722 60825|0.73611 60826|0.73611 60827|0.66667 60828|0.76389 60829|0.69444 60830|0.5 60831|0.58333 60832|0.80556 60833|0.72222 60834|0.65278 60835|0.58333 60836|0.61111 60837|0.94444 60838|0.94444 60839|0.73611 60840|0.75 60841|0.80556 60842|0.61111 60843|0.76389 60844|0.75 60845|0.88889 60846|0.72222 60847|0.66667 60848|0.72222 60849|0.70833 60850|0.40278 60851|0.44444 60852|0.34722 60853|0.27778 60854|0.5 60855|0.5 60856|0.61111 60857|0.61111 60858|0.75 60859|0.73611 60860|0.69444 60861|0.63889 60862|0.875 60863|0.75 60864|0.65278 60865|0.55556 60866|0.80556 60867|0.73611 60868|0.75 60869|0.45833 60870|0.43056 60871|0.73611 60872|0.80556 60873|0.33333 60874|0.44444 60875|0.52778 60876|0.45833 60877|0.29167 60878|0.66667 60879|0.73611 60880|0.625 60881|0.66667 60882|0.75 60883|0.95833 60884|0.69444 60885|0.84722 60886|0.95833 60887|0.77778 60888|0.84722 60889|0.80556 60890|0.66667 60891|0.47222 60892|0.23611 60893|0.22222 60894|0.41667 60895|0.27778 60896|0.375 60897|0.33333 60898|0.16667 60899|0.55556 60900|0.83333 60901|0.51389 60902|0.83333 60903|0.73611 60904|0.68056 60905|0.61111 60906|0.54167 60907|0.83333 60908|0.875 60909|0.75 60910|0.56944 60911|0.54167 60912|0.58333 60913|0.45833 60914|0.81944 60915|0.81944 60916|0.5 60917|0.59722 60918|0.61111 60919|0.72222 60920|0.94444 60921|0.94444 60922|0.76389 60923|0.88889 60924|0.33333 60925|0.70833 60926|0.80556 60927|0.38889 60928|0.27778 60929|0.77778 60930|0.59722 60931|0.83333 60932|0.61111 60933|0.69444 60934|0.58333 60935|0.72222 60936|0.65278 60937|0.70833 60938|0.43056 60939|0.76389 60940|0.63889 60941|0.48611 60942|0.36111 60943|0.51389 60944|0.27778 60945|0.88889 60946|0.875 60947|0.29167 60948|0.5 60949|0.84722 60950|0.5 60951|0.75 60952|0.68056 60953|0.61111 60954|0.84722 60955|0.70833 60956|0.79167 60957|0.80556 60958|0.5 60959|0.58333 60960|0.75 60961|0.66667 60962|0.5 60963|0.52778 60964|0.5 60965|0.5 60966|0.375 60967|0.23611 60968|0.45833 60969|0.38889 60970|0.61111 60971|0.59722 60972|0.65278 60973|0.55556 60974|0.70833 60975|0.5 60976|0.55556 60977|0.58333 60978|0.68056 60979|0.40278 60980|0.63889 60981|0.5 60982|0.72222 60983|0.72222 60984|0.5 60985|0.51389 60986|0.81944 60987|0.59722 60988|0.73611 60989|0.38889 60990|0.27778 60991|0.81944 60992|0.52778 60993|0.5 60994|0.56944 60995|0.69444 60996|0.73611 60997|0.68056 60998|0.5 60999|0.66667 61000|0.625 61001|0.5 61002|0.33333 61003|0.83333 61004|0.48611 61005|0.72222 61006|0.66667 61007|0.75 61008|0.83333 61009|0.58333 61010|0.5 61011|0.68056 61012|0.81944 61013|0.86111 61014|0.66667 61015|0.47222 61016|0.68056 61017|0.5 61018|0.5 61019|0.54167 61020|0.80556 61021|0.68056 61022|0.55556 61023|0.56944 61024|0.81944 61025|0.81944 61026|0.79167 61027|0.5 61028|0.61111 61029|0.52778 61030|0.25 61031|0.38889 61032|0.58333 61033|0.54167 61034|0.79167 61035|0.5 61036|0.66667 61037|0.45833 61038|0.47222 61039|0.54167 61040|0.51389 61041|0.80556 61042|0.70833 61043|0.65278 61044|0.76389 61045|0.77778 61046|0.73611 61047|0.72222 61048|0.72222 61049|0.72222 61050|0.80556 61051|0.81944 61052|0.83333 61053|0.88889 61054|0.56944 61055|0.84722 61056|0.76389 61057|0.91667 61058|0.5 61059|0.59722 61060|0.55556 61061|0.56944 61062|0.76389 61063|0.69444 61064|0.83333 61065|0.68056 61066|0.5 61067|0.66667 61068|0.58333 61069|0.36111 61070|0.40278 61071|0.55556 61072|0.69444 61073|0.66667 61074|0.54167 61075|0.65278 61076|0.59722 61077|0.36111 61078|0.68056 61079|0.86111 61080|0.80556 61081|0.625 61082|0.45833 61083|0.81944 61084|0.44444 61085|0.44444 61086|0.77778 61087|0.68056 61088|0.86111 61089|0.5 61090|0.52778 61091|0.36111 61092|0.38889 61093|0.73611 61094|0.55556 61095|0.72222 61096|0.93056 61097|0.41667 61098|0.66667 61099|0.63889 61100|0.33333 61101|0.40278 61102|0.51389 61103|0.125 61104|0.11111 61105|0.51389 61106|0.45833 61107|0.5 61108|0.5 61109|0.58333 61110|0.51389 61111|0.41667 61112|0.27778 61113|0.63889 61114|0.61111 61115|0.55556 61116|0.75 61117|0.59722 61118|0.5 61119|0.5 61120|0.72222 61121|0.63889 61122|0.65278 61123|0.86111 61124|0.81944 61125|0.75 61126|0.58333 61127|0.5 61128|0.63889 61129|0.90278 61130|0.66667 61131|0.66667 61132|0.76389 61133|0.38889 61134|0.83333 61135|0.38889 61136|0.33333 61137|0.86111 61138|0.76389 61139|0.73611 61140|0.79167 61141|0.79167 61142|0.54167 61143|0.61111 61144|0.61111 61145|0.91667 61146|0.70833 61147|0.36111 61148|0.48611 61149|0.375 61150|0.38889 61151|0.5 61152|0.5 61153|0.51389 61154|0.48611 61155|0.88889 61156|0.875 61157|0.86111 61158|0.875 61159|0.41667 61160|0.5 61161|0.59722 61162|0.70833 61163|0.48611 61164|0.44444 61165|0.44444 61166|0.38889 61167|0.36111 61168|0.38889 61169|0.77778 61170|0.43056 61171|0.38889 61172|0.58333 61173|0.36111 61174|0.43056 61175|0.45833 61176|0.40278 61177|0.5 61178|0.41667 61179|0.44444 61180|0.59722 61181|0.97222 61182|0.83333 61183|0.66667 61184|0.66667 61185|0.5 61186|0.5 61187|0.56944 61188|0.5 61189|0.73611 61190|0.34722 61191|0.36111 61192|0.29167 61193|0.5 61194|0.55556 61195|0.5 61196|0.36111 61197|0.61111 61198|0.54167 61199|0.38889 61200|0.5 61201|0.44444 61202|0.63889 61203|0.68056 61204|0.86111 61205|0.84722 61206|0.36111 61207|0.56944 61208|0.66667 61209|0.68056 61210|0.56944 61211|0.13889 61212|0.72222 61213|0.56944 61214|0.56944 61215|0.80556 61216|0.38889 61217|0.5 61218|0.51389 61219|0.58333 61220|0.625 61221|0.51389 61222|0.72222 61223|0.5 61224|0.5 61225|0.38889 61226|0.5 61227|0.75 61228|0.5 61229|0.88889 61230|0.83333 61231|0.66667 61232|0.73611 61233|0.875 61234|0.81944 61235|0.77778 61236|0.83333 61237|0.80556 61238|0.54167 61239|0.59722 61240|0.81944 61241|0.52778 61242|0.55556 61243|0.44444 61244|0.77778 61245|0.73611 61246|0.90278 61247|0.83333 61248|0.66667 61249|0.68056 61250|0.48611 61251|0.40278 61252|0.59722 61253|0.80556 61254|0.5 61255|0.63889 61256|0.70833 61257|0.94444 61258|0.75 61259|0.84722 61260|0.5 61261|0.55556 61262|0.625 61263|0.77778 61264|0.55556 61265|0.73611 61266|0.86111 61267|0.65278 61268|0.65278 61269|0.72222 61270|0.61111 61271|0.38889 61272|0.52778 61273|0.5 61274|0.83333 61275|0.73611 61276|0.5 61277|0.58333 61278|0.86111 61279|0.83333 61280|0.63889 61281|0.5 61282|0.65278 61283|0.70833 61284|0.93056 61285|0.81944 61286|0.55556 61287|0.68056 61288|0.72222 61289|0.63889 61290|0.66667 61291|0.66667 61292|0.66667 61293|0.69444 61294|0.70833 61295|0.81944 61296|0.69444 61297|0.75 61298|0.72222 61299|0.72222 61300|0.44444 61301|0.5 61302|0.77778 61303|0.79167 61304|0.83333 61305|0.5 61306|0.61111 61307|0.70833 61308|0.79167 61309|0.59722 61310|0.88889 61311|0.80556 61312|0.5 61313|0.75 61314|0.76389 61315|0.66667 61316|0.51389 61317|0.68056 61318|0.5 61319|0.63889 61320|0.875 61321|0.5 61322|0.51389 61323|0.77778 61324|0.375 61325|0.44444 61326|0.75 61327|0.51389 61328|0.84722 61329|0.61111 61330|0.73611 61331|0.43056 61332|0.68056 61333|0.48611 61334|0.27778 61335|0.5 61336|0.56944 61337|0.66667 61338|0.75 61339|0.66667 61340|0.43056 61341|0.72222 61342|0.72222 61343|0.5 61344|0.45833 61345|0.625 61346|0.58333 61347|0.38889 61348|0.69444 61349|0.58333 61350|0.625 61351|0.25 61352|0.5 61353|0.70833 61354|0.56944 61355|0.63889 61356|0.44444 61357|0.041667 61358|0.23611 61359|0.41667 61360|0.875 61361|0.58333 61362|0.69444 61363|0.58333 61364|0.33333 61365|0.75 61366|0.70833 61367|0.625 61368|0.70833 61369|0.59722 61370|0.81944 61371|0.80556 61372|0.5 61373|0.5 61374|0.625 61375|0.5 61376|0.5 61377|0.77778 61378|0.5 61379|0.5 61380|0.52778 61381|0.38889 61382|0.59722 61383|0.51389 61384|0.77778 61385|0.5 61386|0.5 61387|0.75 61388|0.94444 61389|0.84722 61390|0.55556 61391|0.625 61392|0.54167 61393|0.61111 61394|0.43056 61395|0.43056 61396|0.45833 61397|0.5 61398|0.59722 61399|0.63889 61400|0.94444 61401|0.73611 61402|0.73611 61403|0.48611 61404|0.79167 61405|0.83333 61406|0.77778 61407|0.63889 61408|0.65278 61409|0.41667 61410|0.5 61411|0.61111 61412|0.77778 61413|0.5 61414|0.44444 61415|0.51389 61416|0.77778 61417|0.90278 61418|0.68056 61419|0.5 61420|0.58333 61421|0.70833 61422|0.81944 61423|0.80556 61424|0.80556 61425|0.55556 61426|0.76389 61427|0.77778 61428|0.55556 61429|0.51389 61430|0.55556 61431|0.55556 61432|0.73611 61433|0.56944 61434|0.69444 61435|0.77778 61436|0.44444 61437|0.77778 61438|0.72222 61439|0.77778 61440|0.75 61441|0.69444 61442|0.5 61443|0.61111 61444|0.52778 61445|0.83333 61446|0.77778 61447|0.61111 61448|0.79167 61449|0.70833 61450|0.77778 61451|0.79167 61452|0.95833 61453|0.84722 61454|0.5 61455|0.75 61456|0.5 61457|0.66667 61458|0.625 61459|0.66667 61460|0.5 61461|0.875 61462|0.625 61463|0.63889 61464|0.625 61465|0.83333 61466|0.56944 61467|0.5 61468|0.875 61469|0.47222 61470|0.29167 61471|0.47222 61472|0.59722 61473|0.68056 61474|0.44444 61475|0.56944 61476|0.56944 61477|0.5 61478|0.88889 61479|0.54167 61480|0.76389 61481|0.75 61482|0.5 61483|0.66667 61484|0.47222 61485|0.72222 61486|0.75 61487|0.76389 61488|0.5 61489|0.55556 61490|0.625 61491|0.5 61492|0.73611 61493|0.75 61494|0.59722 61495|0.59722 61496|0.5 61497|0.43056 61498|0.73611 61499|0.51389 61500|0.5 61501|0.58333 61502|0.5 61503|0.80556 61504|0.61111 61505|0.5 61506|0.75 61507|0.5 61508|0.52778 61509|0.5 61510|0.47222 61511|0.81944 61512|0.81944 61513|0.5 61514|0.5 61515|0.73611 61516|0.75 61517|0.5 61518|0.52778 61519|0.40278 61520|0.5 61521|0.5 61522|0.5 61523|0.375 61524|0.16667 61525|0.47222 61526|0.56944 61527|0.61111 61528|0.75 61529|0.41667 61530|0.51389 61531|0.66667 61532|0.5 61533|0.51389 61534|0.625 61535|0.5 61536|0.55556 61537|0.58333 61538|0.56944 61539|0.44444 61540|0.5 61541|0.48611 61542|0.55556 61543|0.5 61544|0.5 61545|0.44444 61546|0.51389 61547|0.5 61548|0.51389 61549|0.625 61550|0.625 61551|0.5 61552|0.79167 61553|0.54167 61554|0.625 61555|0.56944 61556|0.69444 61557|0.5 61558|0.5 61559|0.58333 61560|0.93056 61561|0.73611 61562|0.41667 61563|0.5 61564|0.69444 61565|0.54167 61566|0.72222 61567|0.66667 61568|0.44444 61569|0.5 61570|0.86111 61571|0.68056 61572|0.77778 61573|0.70833 61574|0.40278 61575|0.51389 61576|0.72222 61577|0.22222 61578|0.5 61579|0.86111 61580|0.56944 61581|0.88889 61582|0.72222 61583|0.625 61584|0.625 61585|0.65278 61586|0.77778 61587|0.54167 61588|0.81944 61589|0.65278 61590|0.81944 61591|0.80556 61592|0.83333 61593|0.65278 61594|0.5 61595|0.73611 61596|0.91667 61597|0.70833 61598|0.75 61599|0.875 61600|0.72222 61601|0.68056 61602|0.79167 61603|0.90278 61604|0.76389 61605|0.83333 61606|0.80556 61607|0.77778 61608|0.80556 61609|0.19444 61610|0.56944 61611|0.63889 61612|0.66667 61613|0.55556 61614|0.83333 61615|0.55556 61616|0.5 61617|0.54167 61618|0.81944 61619|0.58333 61620|0.5 61621|0.5 61622|0.76389 61623|0.45833 61624|0.61111 61625|0.76389 61626|0.59722 61627|0.65278 61628|0.81944 61629|0.33333 61630|0.72222 61631|0.43056 61632|0.69444 61633|0.56944 61634|0.5 61635|0.81944 61636|0.73611 61637|0.81944 61638|0.72222 61639|0.73611 61640|0.93056 61641|0.58333 61642|0.83333 61643|0.56944 61644|0.80556 61645|0.83333 61646|0.41667 61647|0.55556 61648|0.68056 61649|0.61111 61650|0.72222 61651|0.84722 61652|0.59722 61653|0.83333 61654|0.69444 61655|0.69444 61656|0.77778 61657|0.63889 61658|0.625 61659|0.76389 61660|0.72222 61661|0.79167 61662|0.83333 61663|0.76389 61664|0.54167 61665|0.54167 61666|0.625 61667|0.88889 61668|0.77778 61669|0.5 61670|0.69444 61671|0.72222 61672|0.76389 61673|0.76389 61674|0.76389 61675|0.84722 61676|0.86111 61677|0.48611 61678|0.45833 61679|0.83333 61680|0.54167 61681|0.76389 61682|0.69444 61683|0.73611 61684|0.61111 61685|0.68056 61686|0.27778 61687|0.84722 61688|0.65278 61689|0.55556 61690|0.76389 61691|0.70833 61692|0.95833 61693|0.13889 61694|0.72222 61695|0.45833 61696|0.29167 61697|0.31944 61698|0.83333 61699|0.66667 61700|0.75 61701|0.65278 61702|0.72222 61703|0.66667 61704|0.83333 61705|0.84722 61706|0.45833 61707|0.5 61708|0.625 61709|0.66667 61710|0.69444 61711|0.88889 61712|0.72222 61713|0.81944 61714|0.61111 61715|0.875 61716|0.61111 61717|0.625 61718|0.80556 61719|0.51389 61720|0.70833 61721|0.72222 61722|0.58333 61723|0.66667 61724|0.83333 61725|0.66667 61726|0.51389 61727|0.45833 61728|0.45833 61729|0.63889 61730|0.41667 61731|0.94444 61732|0.625 61733|0.83333 61734|0.77778 61735|0.79167 61736|0.33333 61737|0.5 61738|0.75 61739|0.65278 61740|0.66667 61741|0.86111 61742|0.77778 61743|0.5 61744|0.40278 61745|0.31944 61746|0.79167 61747|0.65278 61748|0.54167 61749|0.5 61750|0.51389 61751|0.58333 61752|0.70833 61753|0.58333 61754|0.45833 61755|0.76389 61756|0.72222 61757|0.43056 61758|0.63889 61759|0.45833 61760|0.45833 61761|0.58333 61762|0.61111 61763|0.63889 61764|0.48611 61765|0.59722 61766|0.5 61767|0.54167 61768|0.16667 61769|0.76389 61770|0.5 61771|0.55556 61772|0.625 61773|0.58333 61774|0.66667 61775|0.95833 61776|0.58333 61777|0.56944 61778|0.59722 61779|0.5 61780|0.34722 61781|0.38889 61782|0.81944 61783|0.66667 61784|0.625 61785|0.69444 61786|0.45833 61787|0.76389 61788|0.61111 61789|0.72222 61790|0.48611 61791|0.72222 61792|0.66667 61793|0.72222 61794|0.59722 61795|0.61111 61796|0.58333 61797|0.5 61798|0.5 61799|0.5 61800|0.72222 61801|0.88889 61802|0.63889 61803|0.83333 61804|0.5 61805|0.34722 61806|0.5 61807|0.77778 61808|0.29167 61809|0.43056 61810|0.47222 61811|0.79167 61812|0.63889 61813|0.83333 61814|0.73611 61815|0.44444 61816|0.73611 61817|0.375 61818|0.44444 61819|0.83333 61820|0.5 61821|0.70833 61822|0.5 61823|0.61111 61824|0.54167 61825|0.68056 61826|0.83333 61827|0.40278 61828|0.52778 61829|0.66667 61830|0.33333 61831|0.47222 61832|0.52778 61833|0.61111 61834|0.66667 61835|0.55556 61836|0.66667 61837|0.48611 61838|0.38889 61839|0.73611 61840|0.73611 61841|0.5 61842|0.45833 61843|0.40278 61844|0.75 61845|0.69444 61846|0.59722 61847|0.45833 61848|0.69444 61849|0.65278 61850|0.56944 61851|0.33333 61852|0.26389 61853|0.47222 61854|0.52778 61855|0.63889 61856|0.63889 61857|0.66667 61858|0.76389 61859|0.54167 61860|0.5 61861|0.54167 61862|0.77778 61863|0.45833 61864|0.5 61865|0.72222 61866|0.80556 61867|0.33333 61868|0.38889 61869|0.5 61870|0.51389 61871|0.76389 61872|0.61111 61873|0.79167 61874|0.48611 61875|0.15278 61876|0.61111 61877|0.58333 61878|0.27778 61879|0.52778 61880|0.48611 61881|0.72222 61882|0.625 61883|0.75 61884|0.73611 61885|0.88889 61886|0.81944 61887|0.79167 61888|0.59722 61889|0.69444 61890|0.54167 61891|0.55556 61892|0.66667 61893|0.5 61894|0.5 61895|0.65278 61896|0.66667 61897|0.59722 61898|0.29167 61899|0.5 61900|0.58333 61901|0.70833 61902|0.68056 61903|0.5 61904|0.65278 61905|0.47222 61906|0.44444 61907|0.70833 61908|0.73611 61909|0.43056 61910|0.47222 61911|0.33333 61912|0.75 61913|0.70833 61914|0.65278 61915|0.70833 61916|0.83333 61917|0.56944 61918|0.44444 61919|0.84722 61920|0.26389 61921|0.69444 61922|0.70833 61923|0.41667 61924|0.48611 61925|0.55556 61926|0.68056 61927|0.5 61928|0.41667 61929|0.75 61930|0.70833 61931|0.43056 61932|0.66667 61933|0.56944 61934|0.56944 61935|0.58333 61936|0.73611 61937|0.68056 61938|0.55556 61939|0.5 61940|0.68056 61941|0.75 61942|0.81944 61943|0.73611 61944|0.58333 61945|0.88889 61946|0.55556 61947|0.77778 61948|0.55556 61949|0.625 61950|0.55556 61951|0.65278 61952|0.84722 61953|0.61111 61954|0.55556 61955|0.81944 61956|0.59722 61957|0.5 61958|0.47222 61959|0.625 61960|0.5 61961|0.375 61962|0.77778 61963|0.68056 61964|0.70833 61965|0.68056 61966|0.45833 61967|0.45833 61968|0.58333 61969|0.51389 61970|0.5 61971|0.93056 61972|0.94444 61973|0.70833 61974|0.83333 61975|0.72222 61976|0.73611 61977|0.61111 61978|0.88889 61979|0.65278 61980|0.76389 61981|0.86111 61982|0.29167 61983|0.5 61984|0.44444 61985|0.56944 61986|0.61111 61987|0.65278 61988|0.75 61989|0.5 61990|0.38889 61991|0.56944 61992|0.44444 61993|0.72222 61994|0.76389 61995|0.61111 61996|0.625 61997|0.86111 61998|0.81944 61999|0.40278 62000|0.72222 62001|0.38889 62002|0.86111 62003|0.93056 62004|0.77778 62005|0.36111 62006|0.84722 62007|0.27778 62008|0.31944 62009|0.66667 62010|0.55556 62011|0.70833 62012|0.70833 62013|0.27778 62014|0.27778 62015|0.34722 62016|0.52778 62017|0.70833 62018|0.77778 62019|0.83333 62020|0.51389 62021|0.55556 62022|0.5 62023|0.66667 62024|0.63889 62025|0.75 62026|0.66667 62027|0.91667 62028|0.72222 62029|0.73611 62030|0.72222 62031|0.51389 62032|0.63889 62033|0.54167 62034|0.75 62035|0.72222 62036|0.73611 62037|0.70833 62038|0.23611 62039|0.72222 62040|0.65278 62041|0.94444 62042|0.54167 62043|0.58333 62044|0.55556 62045|0.83333 62046|0.76389 62047|0.94444 62048|0.48611 62049|0.77778 62050|0.79167 62051|0.58333 62052|0.76389 62053|0.48611 62054|0.55556 62055|0.84722 62056|0.70833 62057|0.40278 62058|0.83333 62059|0.625 62060|0.26389 62061|0.83333 62062|0.5 62063|0.79167 62064|0.84722 62065|0.22222 62066|0.86111 62067|0.77778 62068|0.58333 62069|0.375 62070|0.43056 62071|0.29167 62072|0.66667 62073|0.63889 62074|0.69444 62075|0.625 62076|0.52778 62077|0.88889 62078|0.56944 62079|0.5 62080|0.77778 62081|0.47222 62082|0.72222 62083|0.66667 62084|0.375 62085|0.83333 62086|0.59722 62087|0.81944 62088|0.83333 62089|0.625 62090|0.61111 62091|0.41667 62092|0.83333 62093|0.68056 62094|0.5 62095|0.80556 62096|0.52778 62097|0.45833 62098|0.72222 62099|0.44444 62100|0.90278 62101|0.18056 62102|0.72222 62103|0.5 62104|0.54167 62105|0.26389 62106|0.83333 62107|0.38889 62108|0.44444 62109|0.38889 62110|0.30556 62111|0.55556 62112|0.69444 62113|0.44444 62114|0.27778 62115|0.375 62116|0.86111 62117|0.61111 62118|0.55556 62119|0.61111 62120|0.72222 62121|0.5 62122|0.5 62123|0.86111 62124|0.73611 62125|0.5 62126|0.65278 62127|0.51389 62128|0.44444 62129|0.72222 62130|0.76389 62131|0.88889 62132|0.51389 62133|0.80556 62134|0.76389 62135|0.5 62136|0.61111 62137|0.55556 62138|0.59722 62139|0.77778 62140|0.31944 62141|0.59722 62142|0.47222 62143|0.51389 62144|0.36111 62145|0.54167 62146|0.33333 62147|0.5 62148|0.625 62149|0.54167 62150|0.69444 62151|0.5 62152|0.59722 62153|0.52778 62154|0.79167 62155|0.52778 62156|0.63889 62157|0.75 62158|0.77778 62159|0.5 62160|0.68056 62161|0.625 62162|0.65278 62163|0.52778 62164|0.52778 62165|0.45833 62166|0.43056 62167|0.43056 62168|0.47222 62169|0.52778 62170|0.25 62171|0.34722 62172|0.59722 62173|0.56944 62174|0.75 62175|0.77778 62176|0.81944 62177|0.51389 62178|0.76389 62179|0.61111 62180|0.72222 62181|0.47222 62182|0.70833 62183|0.59722 62184|0.65278 62185|0.5 62186|0.69444 62187|0.61111 62188|0.41667 62189|0.48611 62190|0.375 62191|0.80556 62192|0.70833 62193|0.98611 62194|0.54167 62195|0.66667 62196|0.5 62197|0.58333 62198|0.88889 62199|0.56944 62200|0.58333 62201|0.65278 62202|0.55556 62203|0.44444 62204|0.375 62205|0.54167 62206|0.25 62207|0.56944 62208|0.5 62209|0.54167 62210|0.55556 62211|0.69444 62212|0.76389 62213|0.625 62214|0.76389 62215|0.40278 62216|0.48611 62217|0.13889 62218|0.83333 62219|0.83333 62220|0.56944 62221|0.79167 62222|0.44444 62223|0.625 62224|0.84722 62225|0.65278 62226|0.70833 62227|0.84722 62228|0.68056 62229|0.34722 62230|0.55556 62231|0.70833 62232|0.65278 62233|0.43056 62234|0.72222 62235|0.56944 62236|0.88889 62237|0.52778 62238|0.47222 62239|0.625 62240|0.80556 62241|0.54167 62242|0.47222 62243|0.44444 62244|0.68056 62245|0.58333 62246|0.69444 62247|0.66667 62248|0.80556 62249|0.75 62250|0.56944 62251|0.65278 62252|0.70833 62253|0.55556 62254|0.65278 62255|0.40278 62256|0.5 62257|0.55556 62258|0.45833 62259|0.69444 62260|0.23611 62261|0.81944 62262|0.72222 62263|0.75 62264|0.66667 62265|0.77778 62266|0.65278 62267|0.79167 62268|0.75 62269|0.73611 62270|0.68056 62271|0.83333 62272|0.38889 62273|0.66667 62274|0.93056 62275|0.83333 62276|0.59722 62277|0.77778 62278|0.68056 62279|0.76389 62280|0.69444 62281|0.69444 62282|0.5 62283|0.83333 62284|0.77778 62285|0.80556 62286|0.59722 62287|0.5 62288|0.5 62289|0.69444 62290|0.72222 62291|0.27778 62292|0.93056 62293|0.33333 62294|0.66667 62295|0.79167 62296|0.44444 62297|0.58333 62298|0.59722 62299|0.63889 62300|0.13889 62301|0.79167 62302|0.69444 62303|0.66667 62304|0.77778 62305|0.58333 62306|0.70833 62307|0.59722 62308|0.58333 62309|0.75 62310|0.55556 62311|0.68056 62312|0.61111 62313|0.98611 62314|0.80556 62315|0.61111 62316|0.875 62317|0.61111 62318|0.88889 62319|0.86111 62320|0.77778 62321|0.69444 62322|0.76389 62323|0.65278 62324|0.5 62325|0.83333 62326|0.73611 62327|0.73611 62328|0.69444 62329|0.94444 62330|0.81944 62331|0.61111 62332|0.5 62333|0.38889 62334|0.83333 62335|0.69444 62336|0.5 62337|0.80556 62338|0.75 62339|0.80556 62340|0.61111 62341|0.90278 62342|0.90278 62343|0.93056 62344|0.86111 62345|0.68056 62346|0.45833 62347|0.86111 62348|0.93056 62349|0.625 62350|0.76389 62351|0.68056 62352|0.84722 62353|0.88889 62354|0.61111 62355|0.83333 62356|0.51389 62357|0.65278 62358|0.66667 62359|0.83333 62360|0.63889 62361|0.80556 62362|0.75 62363|0.81944 62364|0.61111 62365|0.61111 62366|0.84722 62367|0.72222 62368|0.77778 62369|0.61111 62370|0.66667 62371|0.52778 62372|0.72222 62373|0.91667 62374|0.5 62375|0.59722 62376|0.5 62377|0.54167 62378|0.61111 62379|0.48611 62380|0.36111 62381|0.625 62382|0.5 62383|0.52778 62384|0.56944 62385|0.84722 62386|0.5 62387|0.52778 62388|0.77778 62389|0.70833 62390|0.44444 62391|0.41667 62392|0.44444 62393|0.33333 62394|0.16667 62395|0.66667 62396|0.5 62397|0.20833 62398|0.66667 62399|0.51389 62400|0.20833 62401|0.51389 62402|0.375 62403|0.81944 62404|0.52778 62405|0.55556 62406|0.90278 62407|0.58333 62408|0.68056 62409|0.56944 62410|0.66667 62411|0.91667 62412|0.83333 62413|0.77778 62414|0.54167 62415|0.625 62416|0.45833 62417|0.40278 62418|0.54167 62419|0.47222 62420|0.5 62421|0.36111 62422|0.72222 62423|0.625 62424|0.69444 62425|0.70833 62426|0.41667 62427|0.61111 62428|0.91667 62429|0.61111 62430|0.875 62431|0.5 62432|0.54167 62433|0.51389 62434|0.63889 62435|0.65278 62436|0.76389 62437|0.83333 62438|0.86111 62439|0.48611 62440|0.79167 62441|0.75 62442|0.69444 62443|0.83333 62444|0.83333 62445|0.56944 62446|0.61111 62447|0.66667 62448|0.65278 62449|0.73611 62450|0.80556 62451|0.63889 62452|0.73611 62453|0.47222 62454|0.81944 62455|0.76389 62456|0.41667 62457|0.5 62458|0.5 62459|0.5 62460|0.61111 62461|0.41667 62462|0.77778 62463|0.72222 62464|0.58333 62465|0.52778 62466|0.63889 62467|0.58333 62468|0.45833 62469|0.66667 62470|0.77778 62471|0.81944 62472|0.61111 62473|0.61111 62474|0.55556 62475|0.33333 62476|0.5 62477|0.5 62478|0.5 62479|0.65278 62480|0.45833 62481|0.40278 62482|0.61111 62483|0.68056 62484|0.5 62485|0.68056 62486|0.40278 62487|0.51389 62488|0.5 62489|0.77778 62490|0.22222 62491|0.80556 62492|0.80556 62493|0.38889 62494|0.80556 62495|0.52778 62496|0.38889 62497|0.66667 62498|0.56944 62499|0.66667 62500|0.69444 62501|0.72222 62502|0.55556 62503|0.94444 62504|0.43056 62505|0.5 62506|0.52778 62507|0.48611 62508|0.5 62509|0.5 62510|0.55556 62511|0.5 62512|0.5 62513|0.5 62514|0.5 62515|0.65278 62516|0.5 62517|0.79167 62518|0.5 62519|0.72222 62520|0.69444 62521|0.51389 62522|0.5 62523|0.5 62524|0.5 62525|0.5 62526|0.5 62527|0.48611 62528|0.5 62529|0.5 62530|0.84722 62531|0.5 62532|0.5 62533|0.55556 62534|0.5 62535|0.48611 62536|0.5 62537|0.55556 62538|0.5 62539|0.51389 62540|0.5 62541|0.88889 62542|0.69444 62543|0.5 62544|0.625 62545|0.77778 62546|0.72222 62547|0.65278 62548|0.68056 62549|0.83333 62550|0.77778 62551|0.93056 62552|0.86111 62553|0.68056 62554|0.76389 62555|0.83333 62556|0.88889 62557|0.68056 62558|0.76389 62559|0.875 62560|0.83333 62561|0.47222 62562|0.5 62563|0.80556 62564|0.59722 62565|0.875 62566|0.30556 62567|0.83333 62568|0.83333 62569|0.72222 62570|0.5 62571|0.72222 62572|0.5 62573|0.83333 62574|0.66667 62575|0.77778 62576|0.73611 62577|0.84722 62578|0.59722 62579|0.75 62580|0.80556 62581|0.80556 62582|0.72222 62583|0.5 62584|0.66667 62585|0.73611 62586|0.77778 62587|0.41667 62588|0.94444 62589|0.68056 62590|0.5 62591|0.88889 62592|0.34722 62593|0.76389 62594|0.22222 62595|0.59722 62596|0.81944 62597|0.55556 62598|0.81944 62599|0.70833 62600|0.19444 62601|0.91667 62602|0.52778 62603|0.43056 62604|0.16667 62605|0.83333 62606|0.70833 62607|0.75 62608|0.66667 62609|0.77778 62610|0.80556 62611|0.22222 62612|0.22222 62613|0.31944 62614|0.81944 62615|0.875 62616|0.5 62617|0.61111 62618|0.68056 62619|0.55556 62620|0.61111 62621|0.45833 62622|0.51389 62623|0.94444 62624|0.63889 62625|0.44444 62626|0.48611 62627|0.55556 62628|0.61111 62629|0.5 62630|0.51389 62631|0.5 62632|0.51389 62633|0.58333 62634|0.5 62635|0.5 62636|0.51389 62637|0.5 62638|0.5 62639|0.83333 62640|0.80556 62641|0.22222 62642|0.22222 62643|0.29167 62644|0.65278 62645|0.40278 62646|0.5 62647|0.58333 62648|0.5 62649|0.5 62650|0.5 62651|0.5 62652|0.56944 62653|0.5 62654|0.5 62655|0.5 62656|0.5 62657|0.5 62658|0.5 62659|0.44444 62660|0.5 62661|0.5 62662|0.73611 62663|0.5 62664|0.5 62665|0.5 62666|0.5 62667|0.55556 62668|0.5 62669|0.5 62670|0.5 62671|0.5 62672|0.54167 62673|0.5 62674|0.45833 62675|0.5 62676|0.38889 62677|0.5 62678|0.45833 62679|0.52778 62680|0.5 62681|0.5 62682|0.5 62683|0.56944 62684|0.5 62685|0.58333 62686|0.5 62687|0.5 62688|0.5 62689|0.5 62690|0.51389 62691|0.51389 62692|0.5 62693|0.5 62694|0.5 62695|0.5 62696|0.51389 62697|0.5 62698|0.61111 62699|0.5 62700|0.45833 62701|0.5 62702|0.5 62703|0.5 62704|0.5 62705|0.5 62706|0.72222 62707|0.51389 62708|0.625 62709|0.84722 62710|0.5 62711|0.51389 62712|0.5 62713|0.625 62714|0.5 62715|0.5 62716|0.5 62717|0.5 62718|0.45833 62719|0.52778 62720|0.5 62721|0.47222 62722|0.5 62723|0.5 62724|0.52778 62725|0.5 62726|0.5 62727|0.5 62728|0.5 62729|0.63889 62730|0.5 62731|0.5 62732|0.51389 62733|0.5 62734|0.5 62735|0.5 62736|0.5 62737|0.5 62738|0.52778 62739|0.5 62740|0.59722 62741|0.70833 62742|0.58333 62743|0.61111 62744|0.80556 62745|0.22222 62746|0.34722 62747|0.88889 62748|0.77778 62749|0.54167 62750|0.69444 62751|0.5 62752|0.55556 62753|0.5 62754|0.625 62755|0.54167 62756|0.56944 62757|0.77778 62758|0.56944 62759|0.5 62760|0.625 62761|0.61111 62762|0.5 62763|0.83333 62764|0.63889 62765|0.5 62766|0.5 62767|0.625 62768|0.75 62769|0.56944 62770|0.5 62771|0.65278 62772|0.77778 62773|0.84722 62774|0.88889 62775|0.81944 62776|0.94444 62777|0.90278 62778|0.875 62779|0.98611 62780|0.875 62781|0.61111 62782|0.91667 62783|0.86111 62784|0.69444 62785|0.83333 62786|0.79167 62787|0.5 62788|0.48611 62789|0.59722 62790|0.5 62791|0.26389 62792|0.38889 62793|0.23611 62794|0.30556 62795|0.65278 62796|0.69444 62797|0.69444 62798|0.66667 62799|0.68056 62800|0.54167 62801|0.54167 62802|0.77778 62803|0.58333 62804|0.61111 62805|0.55556 62806|0.81944 62807|0.77778 62808|0.63889 62809|0.76389 62810|0.76389 62811|0.77778 62812|0.75 62813|0.72222 62814|0.47222 62815|0.56944 62816|0.66667 62817|0.84722 62818|0.5 62819|0.70833 62820|0.94444 62821|0.66667 62822|0.61111 62823|0.44444 62824|0.58333 62825|0.5 62826|0.5 62827|0.61111 62828|0.59722 62829|0.72222 62830|0.61111 62831|0.73611 62832|0.68056 62833|0.61111 62834|0.69444 62835|0.61111 62836|0.55556 62837|0.41667 62838|0.70833 62839|0.72222 62840|0.63889 62841|0.45833 62842|0.43056 62843|0.61111 62844|0.72222 62845|0.63889 62846|0.625 62847|0.77778 62848|0.81944 62849|0.83333 62850|0.5 62851|0.81944 62852|0.75 62853|0.76389 62854|0.83333 62855|0.94444 62856|0.68056 62857|0.84722 62858|0.77778 62859|0.73611 62860|0.73611 62861|0.5 62862|0.80556 62863|0.77778 62864|0.70833 62865|0.77778 62866|0.81944 62867|0.73611 62868|0.59722 62869|0.625 62870|0.75 62871|0.77778 62872|0.77778 62873|0.84722 62874|0.58333 62875|0.48611 62876|0.68056 62877|0.70833 62878|0.65278 62879|0.73611 62880|0.72222 62881|0.72222 62882|0.66667 62883|0.80556 62884|0.47222 62885|0.55556 62886|0.61111 62887|0.59722 62888|0.65278 62889|0.47222 62890|0.68056 62891|0.66667 62892|0.58333 62893|0.72222 62894|0.86111 62895|0.68056 62896|0.55556 62897|0.59722 62898|0.81944 62899|0.79167 62900|0.68056 62901|0.40278 62902|0.44444 62903|0.68056 62904|0.875 62905|0.66667 62906|0.86111 62907|0.77778 62908|0.80556 62909|0.83333 62910|0.80556 62911|0.80556 62912|0.77778 62913|0.63889 62914|0.68056 62915|0.72222 62916|0.76389 62917|0.61111 62918|0.59722 62919|0.83333 62920|0.72222 62921|0.80556 62922|0.88889 62923|0.52778 62924|0.61111 62925|0.625 62926|0.66667 62927|0.70833 62928|0.80556 62929|0.77778 62930|0.83333 62931|0.75 62932|0.83333 62933|0.95833 62934|0.79167 62935|0.79167 62936|0.86111 62937|0.90278 62938|0.90278 62939|0.41667 62940|0.58333 62941|0.19444 62942|0.48611 62943|0.34722 62944|0.47222 62945|0.625 62946|0.66667 62947|0.66667 62948|0.625 62949|0.68056 62950|0.56944 62951|0.36111 62952|0.625 62953|0.875 62954|0.83333 62955|0.83333 62956|0.66667 62957|0.38889 62958|0.23611 62959|0.73611 62960|0.75 62961|0.75 62962|0.625 62963|0.72222 62964|0.77778 62965|0.88889 62966|0.72222 62967|0.59722 62968|0.875 62969|0.83333 62970|0.90278 62971|0.77778 62972|0.83333 62973|0.72222 62974|0.79167 62975|0.83333 62976|0.70833 62977|0.875 62978|0.70833 62979|0.83333 62980|0.875 62981|0.88889 62982|0.81944 62983|0.875 62984|0.79167 62985|0.94444 62986|0.94444 62987|0.875 62988|0.63889 62989|0.90278 62990|0.80556 62991|0.88889 62992|0.55556 62993|0.38889 62994|0.51389 62995|0.55556 62996|0.91667 62997|0.83333 62998|0.81944 62999|0.80556 63000|0.875 63001|0.81944 63002|0.76389 63003|0.81944 63004|0.68056 63005|0.75 63006|0.72222 63007|0.69444 63008|0.75 63009|0.69444 63010|0.79167 63011|0.48611 63012|0.69444 63013|0.75 63014|0.77778 63015|0.83333 63016|0.77778 63017|0.70833 63018|0.80556 63019|0.66667 63020|0.75 63021|0.75 63022|0.73611 63023|0.68056 63024|0.70833 63025|0.58333 63026|0.72222 63027|0.79167 63028|0.63889 63029|0.75 63030|0.83333 63031|0.91667 63032|0.81944 63033|0.81944 63034|0.88889 63035|0.81944 63036|0.76389 63037|0.875 63038|0.72222 63039|0.73611 63040|0.18056 63041|0.80556 63042|0.55556 63043|0.72222 63044|0.76389 63045|0.5 63046|0.69444 63047|0.73611 63048|0.70833 63049|0.90278 63050|0.72222 63051|0.80556 63052|0.86111 63053|0.72222 63054|0.77778 63055|0.58333 63056|0.73611 63057|0.625 63058|0.65278 63059|0.77778 63060|0.83333 63061|0.97222 63062|0.84722 63063|0.88889 63064|0.79167 63065|0.73611 63066|0.86111 63067|0.93056 63068|0.98611 63069|0.77778 63070|0.94444 63071|0.91667 63072|0.83333 63073|0.68056 63074|0.70833 63075|0.72222 63076|0.61111 63077|0.73611 63078|0.66667 63079|0.80556 63080|0.70833 63081|0.70833 63082|0.76389 63083|0.88889 63084|0.70833 63085|0.69444 63086|0.77778 63087|0.70833 63088|0.79167 63089|0.81944 63090|0.79167 63091|0.80556 63092|0.77778 63093|0.84722 63094|0.72222 63095|0.79167 63096|0.68056 63097|0.70833 63098|0.73611 63099|0.55556 63100|0.55556 63101|0.70833 63102|0.625 63103|0.52778 63104|0.68056 63105|0.73611 63106|0.75 63107|0.72222 63108|0.77778 63109|0.73611 63110|0.70833 63111|0.84722 63112|0.86111 63113|0.76389 63114|0.80556 63115|0.88889 63116|0.5 63117|0.69444 63118|0.72222 63119|0.52778 63120|0.61111 63121|0.27778 63122|0.30556 63123|0.45833 63124|0.75 63125|0.625 63126|0.5 63127|0.5 63128|0.69444 63129|0.75 63130|0.65278 63131|0.69444 63132|0.56944 63133|0.45833 63134|0.47222 63135|0.43056 63136|0.61111 63137|0.76389 63138|0.45833 63139|0.30556 63140|0.31944 63141|0.48611 63142|0.68056 63143|0.68056 63144|0.80556 63145|0.65278 63146|0.80556 63147|0.875 63148|0.79167 63149|0.84722 63150|0.5 63151|0.80556 63152|0.81944 63153|0.48611 63154|0.79167 63155|0.66667 63156|0.88889 63157|0.81944 63158|0.79167 63159|0.84722 63160|0.83333 63161|0.84722 63162|0.79167 63163|0.73611 63164|0.5 63165|0.73611 63166|0.79167 63167|0.77778 63168|0.625 63169|0.52778 63170|0.61111 63171|0.61111 63172|0.81944 63173|0.88889 63174|0.80556 63175|0.52778 63176|0.58333 63177|0.63889 63178|0.54167 63179|0.5 63180|0.80556 63181|0.83333 63182|0.95833 63183|0.84722 63184|0.94444 63185|0.5 63186|0.84722 63187|0.88889 63188|0.45833 63189|0.625 63190|0.84722 63191|0.88889 63192|0.66667 63193|0.66667 63194|0.875 63195|0.19444 63196|0.55556 63197|0.51389 63198|0.79167 63199|0.88889 63200|0.68056 63201|0.66667 63202|0.55556 63203|0.72222 63204|0.66667 63205|0.93056 63206|0.88889 63207|0.75 63208|0.44444 63209|0.80556 63210|0.88889 63211|0.625 63212|0.72222 63213|0.56944 63214|0.76389 63215|0.75 63216|0.72222 63217|0.77778 63218|0.80556 63219|0.80556 63220|0.86111 63221|0.80556 63222|0.83333 63223|0.875 63224|0.83333 63225|0.80556 63226|0.77778 63227|0.83333 63228|0.875 63229|0.5 63230|0.56944 63231|0.875 63232|0.81944 63233|0.61111 63234|0.79167 63235|0.65278 63236|0.5 63237|0.77778 63238|0.80556 63239|0.76389 63240|0.66667 63241|0.5 63242|0.58333 63243|0.66667 63244|0.72222 63245|0.61111 63246|0.75 63247|0.76389 63248|0.86111 63249|0.56944 63250|0.63889 63251|0.77778 63252|0.70833 63253|0.52778 63254|0.79167 63255|0.65278 63256|0.59722 63257|0.5 63258|0.73611 63259|0.88889 63260|0.90278 63261|0.73611 63262|0.72222 63263|0.88889 63264|0.55556 63265|0.83333 63266|0.77778 63267|0.86111 63268|0.77778 63269|0.55556 63270|0.52778 63271|0.58333 63272|0.55556 63273|0.61111 63274|0.77778 63275|0.83333 63276|0.79167 63277|1 63278|0.625 63279|0.68056 63280|0.75 63281|0.75 63282|0.66667 63283|0.77778 63284|0.76389 63285|0.76389 63286|0.55556 63287|0.55556 63288|0.65278 63289|0.55556 63290|0.66667 63291|0.66667 63292|0.38889 63293|0.59722 63294|0.5 63295|0.52778 63296|0.69444 63297|0.73611 63298|0.56944 63299|0.58333 63300|0.70833 63301|0.625 63302|0.77778 63303|0.70833 63304|0.77778 63305|0.80556 63306|0.83333 63307|0.66667 63308|0.77778 63309|0.77778 63310|0.68056 63311|0.83333 63312|0.79167 63313|0.79167 63314|0.88889 63315|0.48611 63316|0.5 63317|0.52778 63318|0.91667 63319|0.58333 63320|0.69444 63321|0.68056 63322|0.59722 63323|0.59722 63324|0.54167 63325|0.61111 63326|0.88889 63327|0.84722 63328|0.70833 63329|0.73611 63330|0.65278 63331|0.77778 63332|0.83333 63333|0.81944 63334|0.73611 63335|0.76389 63336|0.72222 63337|0.25 63338|0.25 63339|0.29167 63340|0.54167 63341|0.625 63342|0.375 63343|0.48611 63344|0.55556 63345|0.625 63346|0.48611 63347|0.81944 63348|0.81944 63349|0.77778 63350|0.84722 63351|0.72222 63352|0.86111 63353|0.81944 63354|0.84722 63355|0.81944 63356|0.79167 63357|0.88889 63358|0.79167 63359|0.75 63360|0.58333 63361|0.75 63362|0.875 63363|0.90278 63364|0.65278 63365|0.58333 63366|0.59722 63367|0.61111 63368|0.5 63369|0.875 63370|0.84722 63371|0.75 63372|0.81944 63373|0.88889 63374|0.77778 63375|0.66667 63376|0.66667 63377|0.29167 63378|0.66667 63379|0.73611 63380|0.625 63381|0.52778 63382|0.70833 63383|0.34722 63384|0.86111 63385|0.88889 63386|0.83333 63387|0.80556 63388|0.72222 63389|0.81944 63390|0.875 63391|0.86111 63392|0.88889 63393|0.84722 63394|0.69444 63395|0.875 63396|0.72222 63397|0.84722 63398|0.80556 63399|0.75 63400|0.73611 63401|0.76389 63402|0.76389 63403|0.625 63404|0.68056 63405|0.76389 63406|0.76389 63407|0.77778 63408|0.77778 63409|0.72222 63410|0.70833 63411|0.90278 63412|0.72222 63413|0.75 63414|0.75 63415|0.77778 63416|0.72222 63417|0.88889 63418|0.76389 63419|0.69444 63420|0.84722 63421|0.84722 63422|0.38889 63423|0.68056 63424|0.72222 63425|0.75 63426|0.84722 63427|0.88889 63428|0.72222 63429|0.77778 63430|0.86111 63431|0.77778 63432|0.77778 63433|0.80556 63434|0.84722 63435|0.84722 63436|0.875 63437|0.80556 63438|0.81944 63439|0.76389 63440|0.5 63441|0.83333 63442|0.83333 63443|0.625 63444|0.58333 63445|0.75 63446|0.81944 63447|0.95833 63448|0.86111 63449|0.91667 63450|0.83333 63451|0.68056 63452|0.77778 63453|0.86111 63454|0.86111 63455|0.77778 63456|0.79167 63457|0.76389 63458|0.70833 63459|0.73611 63460|0.70833 63461|0.72222 63462|0.63889 63463|0.75 63464|0.79167 63465|0.73611 63466|0.81944 63467|0.625 63468|0.76389 63469|0.65278 63470|0.77778 63471|0.72222 63472|0.70833 63473|0.73611 63474|0.72222 63475|0.72222 63476|0.55556 63477|0.75 63478|0.75 63479|0.69444 63480|0.48611 63481|0.83333 63482|0.80556 63483|0.90278 63484|0.77778 63485|0.93056 63486|0.84722 63487|0.94444 63488|0.44444 63489|0.81944 63490|0.83333 63491|0.90278 63492|0.77778 63493|0.59722 63494|0.79167 63495|0.81944 63496|0.76389 63497|0.54167 63498|0.77778 63499|0.77778 63500|0.66667 63501|0.81944 63502|0.81944 63503|0.68056 63504|0.80556 63505|0.68056 63506|0.77778 63507|0.77778 63508|0.56944 63509|0.77778 63510|0.5 63511|0.5 63512|0.625 63513|0.61111 63514|0.68056 63515|0.80556 63516|0.66667 63517|0.98611 63518|0.88889 63519|0.58333 63520|0.69444 63521|0.5 63522|0.51389 63523|0.75 63524|0.56944 63525|0.77778 63526|0.875 63527|0.90278 63528|0.93056 63529|0.90278 63530|0.90278 63531|0.66667 63532|0.88889 63533|0.72222 63534|0.59722 63535|0.68056 63536|0.83333 63537|0.625 63538|0.56944 63539|0.65278 63540|0.83333 63541|0.83333 63542|0.88889 63543|0.72222 63544|0.61111 63545|0.70833 63546|0.76389 63547|0.72222 63548|0.83333 63549|0.86111 63550|0.73611 63551|0.86111 63552|0.72222 63553|0.79167 63554|0.875 63555|0.81944 63556|0.90278 63557|0.75 63558|0.77778 63559|0.69444 63560|0.625 63561|0.69444 63562|0.94444 63563|0.80556 63564|0.83333 63565|0.75 63566|0.77778 63567|0.61111 63568|0.73611 63569|0.69444 63570|0.72222 63571|0.75 63572|0.70833 63573|0.58333 63574|0.80556 63575|0.66667 63576|0.79167 63577|0.76389 63578|0.88889 63579|0.81944 63580|0.83333 63581|0.80556 63582|0.73611 63583|0.58333 63584|0.88889 63585|0.80556 63586|0.76389 63587|0.75 63588|0.77778 63589|0.70833 63590|0.81944 63591|0.79167 63592|0.76389 63593|0.86111 63594|0.81944 63595|0.77778 63596|0.77778 63597|0.70833 63598|0.77778 63599|0.51389 63600|0.875 63601|0.70833 63602|0.84722 63603|0.68056 63604|0.73611 63605|0.65278 63606|0.55556 63607|0.5 63608|0.5 63609|0.56944 63610|0.625 63611|0.51389 63612|0.48611 63613|0.47222 63614|0.59722 63615|0.5 63616|0.55556 63617|0.77778 63618|0.68056 63619|0.5 63620|0.5 63621|0.5 63622|0.81944 63623|0.80556 63624|0.83333 63625|0.51389 63626|0.58333 63627|1 63628|0.5 63629|0.5 63630|0.51389 63631|0.41667 63632|0.5 63633|0.5 63634|0.48611 63635|0.51389 63636|0.52778 63637|0.68056 63638|0.48611 63639|0.5 63640|0.56944 63641|0.5 63642|0.86111 63643|0.5 63644|0.61111 63645|0.73611 63646|0.88889 63647|0.97222 63648|0.56944 63649|0.5 63650|0.54167 63651|0.51389 63652|0.61111 63653|0.75 63654|0.38889 63655|0.5 63656|0.5 63657|0.5 63658|0.5 63659|0.375 63660|0.73611 63661|0.5 63662|0.48611 63663|0.79167 63664|0.5 63665|0.34722 63666|0.44444 63667|0.5 63668|0.55556 63669|0.5 63670|0.56944 63671|0.625 63672|0.61111 63673|0.48611 63674|0.72222 63675|0.5 63676|0.59722 63677|0.61111 63678|0.51389 63679|0.5 63680|0.5 63681|0.5 63682|0.54167 63683|0.61111 63684|0.48611 63685|0.88889 63686|0.5 63687|0.5 63688|0.61111 63689|0.48611 63690|0.45833 63691|0.68056 63692|0.43056 63693|0.61111 63694|0.52778 63695|0.16667 63696|0.125 63697|0.5 63698|0.77778 63699|0.73611 63700|0.59722 63701|0.61111 63702|0.77778 63703|0.33333 63704|0.63889 63705|0.52778 63706|0.86111 63707|0.55556 63708|0.70833 63709|0.5 63710|0.61111 63711|0.625 63712|0.83333 63713|0.58333 63714|0.5 63715|0.80556 63716|0.56944 63717|0.77778 63718|0.5 63719|0.5 63720|0.5 63721|0.47222 63722|0.5 63723|0.5 63724|0.65278 63725|0.55556 63726|0.83333 63727|0.55556 63728|0.5 63729|0.44444 63730|0.55556 63731|0.51389 63732|0.73611 63733|0.72222 63734|0.5 63735|0.5 63736|0.59722 63737|0.76389 63738|0.56944 63739|0.44444 63740|0.66667 63741|0.66667 63742|0.77778 63743|0.54167 63744|0.66667 63745|0.375 63746|0.63889 63747|0.55556 63748|0.80556 63749|0.5 63750|0.68056 63751|0.33333 63752|0.63889 63753|0.34722 63754|0.63889 63755|0.47222 63756|0.65278 63757|0.41667 63758|0.75 63759|0.36111 63760|0.52778 63761|0.30556 63762|0.58333 63763|0.77778 63764|0.34722 63765|0.75 63766|0.41667 63767|0.70833 63768|0.5 63769|0.72222 63770|0.59722 63771|0.51389 63772|0.41667 63773|0.52778 63774|0.5 63775|0.91667 63776|0.88889 63777|0.73611 63778|0.59722 63779|0.77778 63780|0.75 63781|0.33333 63782|0.625 63783|0.29167 63784|0.51389 63785|0.54167 63786|0.44444 63787|0.5 63788|0.5 63789|0.48611 63790|0.44444 63791|0.5 63792|0.55556 63793|0.72222 63794|0.5 63795|0.5 63796|0.72222 63797|0.45833 63798|0.5 63799|0.5 63800|0.5 63801|0.51389 63802|0.5 63803|0.45833 63804|0.75 63805|0.5 63806|0.63889 63807|0.81944 63808|0.5 63809|0.5 63810|0.5 63811|0.69444 63812|0.625 63813|0.58333 63814|0.5 63815|0.5 63816|0.5 63817|0.36111 63818|0.29167 63819|0.375 63820|0.48611 63821|0.66667 63822|0.80556 63823|0.73611 63824|0.70833 63825|0.79167 63826|0.56944 63827|0.72222 63828|0.72222 63829|0.70833 63830|0.80556 63831|0.80556 63832|0.75 63833|0.65278 63834|0.80556 63835|0.55556 63836|0.75 63837|0.76389 63838|0.77778 63839|0.625 63840|0.63889 63841|0.75 63842|0.58333 63843|0.66667 63844|0.625 63845|0.69444 63846|0.66667 63847|0.63889 63848|0.69444 63849|0.73611 63850|0.54167 63851|0.88889 63852|0.80556 63853|0.77778 63854|0.93056 63855|0.91667 63856|0.73611 63857|0.88889 63858|0.72222 63859|0.81944 63860|0.83333 63861|0.72222 63862|0.76389 63863|0.79167 63864|0.75 63865|0.69444 63866|0.79167 63867|0.77778 63868|0.58333 63869|0.75 63870|0.73611 63871|0.70833 63872|0.58333 63873|0.66667 63874|0.80556 63875|0.875 63876|0.86111 63877|0.79167 63878|0.80556 63879|0.86111 63880|0.70833 63881|0.93056 63882|0.79167 63883|0.83333 63884|0.76389 63885|0.76389 63886|0.56944 63887|0.93056 63888|0.48611 63889|0.54167 63890|0.5 63891|0.75 63892|0.81944 63893|0.70833 63894|0.75 63895|0.84722 63896|0.93056 63897|0.81944 63898|0.69444 63899|0.5 63900|0.75 63901|0.93056 63902|0.73611 63903|0.76389 63904|0.77778 63905|0.76389 63906|0.77778 63907|0.51389 63908|0.5 63909|0.69444 63910|0.73611 63911|0.70833 63912|0.83333 63913|0.86111 63914|0.83333 63915|0.72222 63916|0.80556 63917|0.77778 63918|0.76389 63919|0.54167 63920|0.76389 63921|0.86111 63922|0.84722 63923|0.72222 63924|0.75 63925|0.875 63926|0.72222 63927|0.77778 63928|0.76389 63929|0.79167 63930|0.79167 63931|0.58333 63932|0.76389 63933|0.70833 63934|0.51389 63935|0.68056 63936|0.76389 63937|0.77778 63938|0.68056 63939|0.69444 63940|0.59722 63941|0.34722 63942|0.77778 63943|0.70833 63944|0.55556 63945|0.44444 63946|0.15278 63947|0.30556 63948|0.34722 63949|0.48611 63950|0.68056 63951|0.80556 63952|0.79167 63953|0.90278 63954|0.75 63955|0.81944 63956|0.84722 63957|0.83333 63958|0.72222 63959|0.83333 63960|0.70833 63961|0.77778 63962|0.59722 63963|0.66667 63964|0.76389 63965|0.69444 63966|0.56944 63967|0.56944 63968|0.63889 63969|0.73611 63970|0.77778 63971|0.84722 63972|0.83333 63973|0.5 63974|0.51389 63975|0.5 63976|0.52778 63977|0.5 63978|0.73611 63979|0.5 63980|0.5 63981|0.5 63982|0.5 63983|0.5 63984|0.5 63985|0.5 63986|0.54167 63987|0.75 63988|0.5 63989|0.5 63990|0.69444 63991|0.75 63992|0.5 63993|0.44444 63994|0.70833 63995|0.5 63996|0.51389 63997|0.76389 63998|0.70833 63999|0.55556 64000|0.5 64001|0.77778 64002|0.56944 64003|0.5 64004|0.5 64005|0.55556 64006|0.56944 64007|0.51389 64008|0.375 64009|0.88889 64010|0.70833 64011|0.69444 64012|0.83333 64013|0.83333 64014|0.91667 64015|0.47222 64016|0.88889 64017|0.48611 64018|0.77778 64019|0.59722 64020|0.5 64021|0.5 64022|0.5 64023|0.48611 64024|0.5 64025|0.5 64026|0.5 64027|0.56944 64028|0.54167 64029|0.5 64030|0.79167 64031|0.5 64032|0.5 64033|0.30556 64034|0.44444 64035|0.51389 64036|0.5 64037|0.33333 64038|0.625 64039|0.5 64040|0.5 64041|0.5 64042|0.5 64043|0.72222 64044|0.55556 64045|0.93056 64046|0.33333 64047|0.5 64048|0.72222 64049|0.83333 64050|0.88889 64051|0.80556 64052|0.5 64053|0.48611 64054|0.45833 64055|0.5 64056|0.81944 64057|0.70833 64058|0.51389 64059|0.55556 64060|0.58333 64061|0.5 64062|0.55556 64063|0.68056 64064|0.5 64065|0.61111 64066|0.5 64067|0.76389 64068|0.51389 64069|0.66667 64070|0.52778 64071|0.56944 64072|0.5 64073|0.43056 64074|0.88889 64075|0.61111 64076|0.75 64077|0.86111 64078|0.76389 64079|0.59722 64080|0.70833 64081|0.36111 64082|0.65278 64083|0.93056 64084|0.79167 64085|0.51389 64086|0.84722 64087|0.52778 64088|0.77778 64089|0.65278 64090|0.66667 64091|0.44444 64092|0.44444 64093|0.18056 64094|0.26389 64095|0.55556 64096|0.80556 64097|0.58333 64098|0.34722 64099|0.5 64100|0.84722 64101|0.5 64102|0.79167 64103|0.44444 64104|0.76389 64105|0.73611 64106|0.76389 64107|0.5 64108|0.34722 64109|0.76389 64110|0.48611 64111|0.68056 64112|0.45833 64113|0.55556 64114|0.61111 64115|0.5 64116|0.5 64117|0.59722 64118|0.5 64119|0.61111 64120|0.5 64121|0.66667 64122|0.56944 64123|0.76389 64124|0.65278 64125|0.88889 64126|0.79167 64127|0.70833 64128|0.93056 64129|0.81944 64130|0.90278 64131|0.90278 64132|0.90278 64133|0.875 64134|0.5 64135|0.80556 64136|0.72222 64137|0.5 64138|0.93056 64139|0.65278 64140|0.875 64141|0.48611 64142|0.77778 64143|0.19444 64144|0.20833 64145|0.22222 64146|0.34722 64147|0.58333 64148|0.56944 64149|0.5 64150|0.875 64151|0.5 64152|0.75 64153|0.81944 64154|0.55556 64155|0.875 64156|0.5 64157|0.25 64158|0.29167 64159|0.875 64160|0.76389 64161|0.73611 64162|0.77778 64163|0.69444 64164|0.33333 64165|0.52778 64166|0.33333 64167|0.29167 64168|0.22222 64169|0.68056 64170|0.54167 64171|0.52778 64172|0.55556 64173|0.52778 64174|0.5 64175|0.5 64176|0.81944 64177|0.5 64178|0.68056 64179|0.16667 64180|0.30556 64181|0.31944 64182|0.51389 64183|0.76389 64184|0.5 64185|0.5 64186|0.5 64187|0.5 64188|0.5 64189|0.69444 64190|0.55556 64191|0.875 64192|0.5 64193|0.5 64194|0.5 64195|0.65278 64196|0.75 64197|0.375 64198|0.61111 64199|0.58333 64200|0.55556 64201|0.5 64202|0.84722 64203|1 64204|0.84722 64205|0.5 64206|0.80556 64207|0.33333 64208|0.5 64209|0.5 64210|0.625 64211|0.51389 64212|0.30556 64213|0.48611 64214|0.51389 64215|0.5 64216|0.52778 64217|0.43056 64218|0.41667 64219|0.5 64220|0.5 64221|0.5 64222|0.5 64223|0.51389 64224|0.54167 64225|0.5 64226|0.77778 64227|0.5 64228|0.5 64229|0.40278 64230|0.5 64231|0.5 64232|0.80556 64233|0.55556 64234|0.5 64235|0.5 64236|0.27778 64237|0.5 64238|0.5 64239|0.5 64240|0.83333 64241|0.625 64242|0.70833 64243|0.5 64244|0.5 64245|0.47222 64246|0.51389 64247|0.54167 64248|0.69444 64249|0.5 64250|0.59722 64251|0.81944 64252|0.5 64253|0.51389 64254|0.5 64255|0.5 64256|0.5 64257|0.73611 64258|0.5 64259|0.72222 64260|0.875 64261|0.77778 64262|0.77778 64263|0.5 64264|0.5 64265|0.5 64266|0.5 64267|0.48611 64268|0.72222 64269|0.68056 64270|0.80556 64271|0.68056 64272|0.73611 64273|0.66667 64274|0.79167 64275|0.77778 64276|0.70833 64277|0.94444 64278|0.84722 64279|0.86111 64280|0.83333 64281|0.77778 64282|0.88889 64283|0.72222 64284|0.83333 64285|0.84722 64286|0.875 64287|0.90278 64288|0.88889 64289|0.83333 64290|0.875 64291|0.75 64292|0.70833 64293|0.48611 64294|0.44444 64295|0.5 64296|0.44444 64297|0.55556 64298|0.27778 64299|0.65278 64300|0.80556 64301|0.70833 64302|0.80556 64303|0.5 64304|0.79167 64305|0.83333 64306|0.5 64307|0.5 64308|0.70833 64309|0.63889 64310|0.5 64311|0.83333 64312|0.5 64313|0.5 64314|0.61111 64315|0.5 64316|0.75 64317|0.66667 64318|0.5 64319|0.5 64320|0.5 64321|0.5 64322|0.5 64323|0.5 64324|0.51389 64325|0.5 64326|0.84722 64327|0.80556 64328|0.81944 64329|0.34722 64330|0.80556 64331|0.91667 64332|0.5 64333|0.59722 64334|0.77778 64335|0.65278 64336|0.76389 64337|0.63889 64338|0.73611 64339|0.40278 64340|0.56944 64341|0.65278 64342|0.5 64343|0.94444 64344|0.76389 64345|0.5 64346|0.5 64347|0.5 64348|0.70833 64349|0.51389 64350|0.66667 64351|0.55556 64352|0.5 64353|0.84722 64354|0.59722 64355|0.40278 64356|0.41667 64357|0.73611 64358|0.77778 64359|0.73611 64360|0.5 64361|0.59722 64362|0.52778 64363|0.65278 64364|0.66667 64365|0.5 64366|0.69444 64367|0.61111 64368|0.83333 64369|0.625 64370|0.83333 64371|0.48611 64372|0.625 64373|0.93056 64374|0.72222 64375|0.625 64376|0.38889 64377|0.63889 64378|0.51389 64379|0.44444 64380|0.33333 64381|0.45833 64382|0.65278 64383|0.5 64384|0.66667 64385|0.48611 64386|0.5 64387|0.81944 64388|0.5 64389|0.5 64390|0.81944 64391|0.70833 64392|0.72222 64393|0.625 64394|0.61111 64395|0.47222 64396|0.36111 64397|0.48611 64398|0.33333 64399|0.5 64400|0.83333 64401|0.93056 64402|0.93056 64403|0.15278 64404|0.5 64405|0.51389 64406|0.73611 64407|0.5 64408|0.38889 64409|0.54167 64410|0.70833 64411|0.80556 64412|0.5 64413|0.66667 64414|0.72222 64415|0.68056 64416|0.73611 64417|0.5 64418|0.51389 64419|0.59722 64420|0.66667 64421|0.59722 64422|0.76389 64423|0.86111 64424|0.80556 64425|0.80556 64426|0.54167 64427|0.59722 64428|0.5 64429|0.375 64430|0.5 64431|0.5 64432|0.5 64433|0.76389 64434|0.86111 64435|0.81944 64436|0.48611 64437|0.69444 64438|0.73611 64439|0.88889 64440|0.55556 64441|0.55556 64442|0.5 64443|0.54167 64444|0.65278 64445|0.5 64446|0.47222 64447|0.52778 64448|0.83333 64449|0.80556 64450|0.80556 64451|0.84722 64452|0.73611 64453|0.83333 64454|0.61111 64455|0.69444 64456|0.83333 64457|0.77778 64458|0.5 64459|0.63889 64460|0.77778 64461|0.38889 64462|0.5 64463|0.40278 64464|0.43056 64465|0.58333 64466|0.51389 64467|0.59722 64468|0.44444 64469|0.5 64470|0.56944 64471|0.93056 64472|0.875 64473|0.86111 64474|0.95833 64475|0.5 64476|0.68056 64477|0.73611 64478|0.79167 64479|0.88889 64480|0.5 64481|0.625 64482|0.61111 64483|0.55556 64484|0.875 64485|0.80556 64486|0.68056 64487|0.625 64488|0.80556 64489|0.63889 64490|0.70833 64491|0.58333 64492|0.77778 64493|0.91667 64494|0.95833 64495|0.69444 64496|0.68056 64497|0.97222 64498|0.5 64499|0.54167 64500|0.5 64501|0.52778 64502|0.625 64503|0.77778 64504|0.58333 64505|0.70833 64506|0.75 64507|0.81944 64508|0.75 64509|0.875 64510|0.56944 64511|0.5 64512|0.47222 64513|0.5 64514|0.80556 64515|0.5 64516|0.54167 64517|0.5 64518|0.5 64519|0.51389 64520|0.58333 64521|0.81944 64522|0.88889 64523|0.75 64524|0.79167 64525|0.61111 64526|0.54167 64527|0.5 64528|0.63889 64529|0.5 64530|0.51389 64531|0.70833 64532|0.5 64533|0.5 64534|0.5 64535|0.73611 64536|0.72222 64537|0.5 64538|0.54167 64539|0.5 64540|0.5 64541|0.5 64542|0.5 64543|0.5 64544|0.59722 64545|0.69444 64546|0.5 64547|0.70833 64548|0.83333 64549|0.44444 64550|0.55556 64551|0.80556 64552|0.5 64553|0.5 64554|0.33333 64555|0.48611 64556|0.86111 64557|0.52778 64558|0.75 64559|0.51389 64560|0.51389 64561|0.61111 64562|0.48611 64563|0.45833 64564|0.52778 64565|0.5 64566|0.5 64567|0.44444 64568|0.43056 64569|0.5 64570|0.63889 64571|0.625 64572|0.56944 64573|0.79167 64574|0.83333 64575|0.36111 64576|0.79167 64577|0.5 64578|0.75 64579|0.83333 64580|0.81944 64581|0.5 64582|0.51389 64583|0.5 64584|0.61111 64585|0.5 64586|0.5 64587|0.80556 64588|0.48611 64589|0.5 64590|0.5 64591|0.48611 64592|0.55556 64593|0.5 64594|0.65278 64595|0.5 64596|0.5 64597|0.5 64598|0.55556 64599|0.625 64600|0.47222 64601|0.41667 64602|0.5 64603|0.51389 64604|0.5 64605|0.63889 64606|0.47222 64607|0.66667 64608|0.625 64609|0.65278 64610|0.5 64611|0.61111 64612|0.63889 64613|0.5 64614|0.45833 64615|0.5 64616|0.63889 64617|0.69444 64618|0.66667 64619|0.79167 64620|0.68056 64621|0.72222 64622|0.76389 64623|0.65278 64624|0.875 64625|0.625 64626|0.76389 64627|0.5 64628|0.77778 64629|0.79167 64630|0.88889 64631|0.5 64632|0.5 64633|0.5 64634|0.5 64635|0.5 64636|0.5 64637|0.5 64638|0.5 64639|0.56944 64640|0.5 64641|0.5 64642|0.5 64643|0.5 64644|0.5 64645|0.5 64646|0.77778 64647|0.61111 64648|0.5 64649|0.44444 64650|0.33333 64651|0.59722 64652|0.66667 64653|0.69444 64654|0.5 64655|0.69444 64656|0.5 64657|0.5 64658|0.54167 64659|0.5 64660|0.54167 64661|0.54167 64662|0.5 64663|0.5 64664|0.86111 64665|0.58333 64666|0.44444 64667|0.84722 64668|0.88889 64669|0.61111 64670|0.5 64671|0.55556 64672|0.5 64673|0.55556 64674|0.5 64675|0.5 64676|0.52778 64677|0.5 64678|0.5 64679|0.5 64680|0.5 64681|0.5 64682|0.80556 64683|0.69444 64684|0.86111 64685|0.73611 64686|0.625 64687|0.66667 64688|0.61111 64689|0.5 64690|0.73611 64691|0.51389 64692|0.55556 64693|0.65278 64694|0.45833 64695|0.51389 64696|0.59722 64697|0.5 64698|0.5 64699|0.5 64700|0.72222 64701|0.45833 64702|0.52778 64703|0.5 64704|0.70833 64705|0.5 64706|0.5 64707|0.5 64708|0.5 64709|0.5 64710|0.5 64711|0.61111 64712|0.65278 64713|0.5 64714|0.5 64715|0.47222 64716|0.5 64717|0.5 64718|0.55556 64719|0.5 64720|0.5 64721|0.5 64722|0.55556 64723|0.70833 64724|0.83333 64725|0.5 64726|0.55556 64727|0.5 64728|0.56944 64729|0.58333 64730|0.5 64731|0.5 64732|0.51389 64733|0.5 64734|0.5 64735|0.88889 64736|0.73611 64737|0.66667 64738|0.80556 64739|0.77778 64740|0.83333 64741|0.5 64742|0.40278 64743|0.65278 64744|0.63889 64745|0.5 64746|0.5 64747|0.5 64748|0.5 64749|0.48611 64750|0.80556 64751|0.72222 64752|0 64753|0.19444 64754|0.22222 64755|0.54167 64756|0.19444 64757|0.76389 64758|0.66667 64759|0.73611 64760|0.51389 64761|0.5 64762|0.5 64763|0.77778 64764|0.51389 64765|0.26389 64766|0.76389 64767|0.5 64768|0.79167 64769|0.5 64770|0.5 64771|0.5 64772|0.5 64773|0.5 64774|0.38889 64775|0.75 64776|0.51389 64777|0.70833 64778|0.77778 64779|0.43056 64780|0.80556 64781|0.27778 64782|0.38889 64783|0.41667 64784|0.66667 64785|0.61111 64786|0.76389 64787|0.38889 64788|0.43056 64789|0.43056 64790|0.43056 64791|0.41667 64792|0.41667 64793|0.65278 64794|0.61111 64795|0.375 64796|0.31944 64797|0.76389 64798|0.5 64799|0.58333 64800|0.84722 64801|0.56944 64802|0.22222 64803|0.63889 64804|0.58333 64805|0.81944 64806|0.30556 64807|0.36111 64808|0.75 64809|0.70833 64810|0.90278 64811|0.5 64812|0.59722 64813|0.44444 64814|0.5 64815|0.5 64816|0.69444 64817|0.5 64818|0.51389 64819|0.70833 64820|0.70833 64821|0.76389 64822|0.80556 64823|0.77778 64824|0.5 64825|0.51389 64826|0.5 64827|0.5 64828|0.5 64829|0.5 64830|0.58333 64831|0.79167 64832|0.36111 64833|0.36111 64834|0.27778 64835|0.65278 64836|0.66667 64837|0.5 64838|0.44444 64839|0.33333 64840|0.33333 64841|0.34722 64842|0.36111 64843|0.65278 64844|0.66667 64845|0.68056 64846|0.5 64847|0.54167 64848|0.72222 64849|0.63889 64850|0.5 64851|0.56944 64852|0.73611 64853|0.44444 64854|0.48611 64855|0.43056 64856|0.55556 64857|0.69444 64858|0.79167 64859|0.58333 64860|0.5 64861|0.55556 64862|0.40278 64863|0.76389 64864|0.52778 64865|0.61111 64866|0.65278 64867|0.69444 64868|0.44444 64869|0.43056 64870|0.40278 64871|0.59722 64872|0.44444 64873|0.52778 64874|0.5 64875|0.63889 64876|0.5 64877|0.5 64878|0.5 64879|0.48611 64880|0.66667 64881|0.5 64882|0.48611 64883|0.72222 64884|0.51389 64885|0.38889 64886|0.81944 64887|0.5 64888|0.77778 64889|0.58333 64890|0.5 64891|0.5 64892|0.48611 64893|0.61111 64894|0.55556 64895|0.625 64896|0.61111 64897|0.5 64898|0.51389 64899|0.48611 64900|0.56944 64901|0.52778 64902|0.5 64903|0.47222 64904|0.43056 64905|0.68056 64906|0.83333 64907|0.52778 64908|0.69444 64909|0.5 64910|0.5 64911|0.5 64912|0.51389 64913|0.51389 64914|0.51389 64915|0.55556 64916|0.5 64917|0.56944 64918|0.56944 64919|0.79167 64920|0.5 64921|0.58333 64922|0.58333 64923|0.80556 64924|0.77778 64925|0.52778 64926|0.5 64927|0.51389 64928|0.44444 64929|0.625 64930|0.77778 64931|0.73611 64932|0.80556 64933|0.51389 64934|0.58333 64935|0.66667 64936|0.5 64937|0.63889 64938|0.70833 64939|0.70833 64940|0.5 64941|0.5 64942|0.5 64943|0.5 64944|0.5 64945|0.5 64946|0.5 64947|0.51389 64948|0.75 64949|0.5 64950|0.51389 64951|0.5 64952|0.81944 64953|0.5 64954|0.44444 64955|0.56944 64956|0.55556 64957|0.5 64958|0.5 64959|0.61111 64960|0.5 64961|0.5 64962|0.5 64963|0.75 64964|0.73611 64965|0.5 64966|0.75 64967|0.75 64968|0.44444 64969|0.52778 64970|0.59722 64971|0.68056 64972|0.61111 64973|0.76389 64974|0.90278 64975|0.5 64976|0.5 64977|0.76389 64978|0.61111 64979|0.84722 64980|0.79167 64981|0.88889 64982|0.23611 64983|0.44444 64984|0.72222 64985|0.59722 64986|0.56944 64987|0.77778 64988|0.77778 64989|0.73611 64990|0.61111 64991|0.73611 64992|0.76389 64993|0.79167 64994|0.84722 64995|0.79167 64996|0.45833 64997|0.5 64998|0.61111 64999|0.81944 65000|0.5 65001|0.80556 65002|0.80556 65003|0.5 65004|0.625 65005|0.44444 65006|0.44444 65007|0.48611 65008|0.5 65009|0.5 65010|0.45833 65011|0.59722 65012|0.5 65013|0.5 65014|0.56944 65015|0.94444 65016|0.68056 65017|0.91667 65018|0.77778 65019|0.52778 65020|0.875 65021|0.72222 65022|0.76389 65023|0.375 65024|0.875 65025|0.55556 65026|0.72222 65027|0.52778 65028|0.70833 65029|0.48611 65030|0.33333 65031|0.59722 65032|0.76389 65033|0.51389 65034|0.80556 65035|0.5 65036|0.51389 65037|0.44444 65038|0.45833 65039|0.38889 65040|0.5 65041|0.48611 65042|0.83333 65043|0.79167 65044|0.84722 65045|0.91667 65046|0.73611 65047|0.5 65048|0.5 65049|0.91667 65050|0.91667 65051|0.80556 65052|0.52778 65053|0.625 65054|0.59722 65055|0.625 65056|0.5 65057|0.5 65058|0.86111 65059|0.36111 65060|0.5 65061|0.51389 65062|0.5 65063|0.375 65064|0.88889 65065|0.51389 65066|0.5 65067|0.5 65068|0.5 65069|0.86111 65070|0.5 65071|0.76389 65072|0.875 65073|0.86111 65074|0.56944 65075|0.73611 65076|0.5 65077|0.26389 65078|0.31944 65079|0.68056 65080|0.83333 65081|0.625 65082|0.069444 65083|0.625 65084|0.88889 65085|0.5 65086|0.5 65087|0.72222 65088|0.94444 65089|0.5 65090|0.625 65091|0.55556 65092|0.77778 65093|0.5 65094|0.65278 65095|0.75 65096|0.76389 65097|0.75 65098|0.58333 65099|0.66667 65100|0.5 65101|0.51389 65102|0.5 65103|0.81944 65104|0.68056 65105|0.58333 65106|0.55556 65107|0.5 65108|0.88889 65109|0.5 65110|0.25 65111|0.26389 65112|0.34722 65113|0.45833 65114|0.31944 65115|0.51389 65116|0.27778 65117|0.48611 65118|0.45833 65119|0.77778 65120|0.63889 65121|0.54167 65122|0.5 65123|0.5 65124|0.55556 65125|0.63889 65126|0.5 65127|0.59722 65128|0.59722 65129|0.52778 65130|0.54167 65131|0.097222 65132|0.5 65133|0.55556 65134|0.47222 65135|0.44444 65136|0.59722 65137|0.79167 65138|0.77778 65139|0.65278 65140|0.5 65141|0.5 65142|0.5 65143|0.72222 65144|0.76389 65145|0.65278 65146|0.5 65147|0.5 65148|0.5 65149|0.45833 65150|0.47222 65151|0.76389 65152|0.55556 65153|0.56944 65154|0.52778 65155|0.5 65156|0.5 65157|0.55556 65158|0.5 65159|0.5 65160|0.5 65161|0.48611 65162|0.5 65163|0.55556 65164|0.83333 65165|0.5 65166|0.75 65167|0.88889 65168|0.5 65169|0.5 65170|0.5 65171|0.625 65172|0.76389 65173|0.79167 65174|0.5 65175|0.52778 65176|0.5 65177|0.5 65178|0.5 65179|0.41667 65180|0.5 65181|0.65278 65182|0.5 65183|0.55556 65184|0.58333 65185|0.90278 65186|0.72222 65187|0.72222 65188|0.875 65189|0.44444 65190|0.27778 65191|0.5 65192|0.5 65193|0.33333 65194|0.41667 65195|0.5 65196|0.45833 65197|0.43056 65198|0.79167 65199|0.66667 65200|0.69444 65201|0.66667 65202|0.5 65203|0.5 65204|0.54167 65205|0.5 65206|0.51389 65207|0.5 65208|0.26389 65209|0.45833 65210|0.44444 65211|0.58333 65212|0.30556 65213|0.5 65214|0.43056 65215|0.90278 65216|0.41667 65217|0.27778 65218|0.48611 65219|0.52778 65220|0.54167 65221|0.5 65222|0.5 65223|0.5 65224|0.59722 65225|0.41667 65226|0.52778 65227|0.70833 65228|0.5 65229|0.59722 65230|0.5 65231|0.75 65232|0.83333 65233|0.5 65234|0.59722 65235|0.5 65236|0.51389 65237|0.47222 65238|0.27778 65239|0.76389 65240|0.51389 65241|0.5 65242|0.88889 65243|0.95833 65244|1 65245|0.5 65246|0.5 65247|0.48611 65248|0.66667 65249|0.5 65250|0.5 65251|0.51389 65252|0.5 65253|0.51389 65254|0.76389 65255|0.66667 65256|0.68056 65257|0.38889 65258|0.94444 65259|0.86111 65260|0.44444 65261|0.77778 65262|0.5 65263|0.5 65264|0.79167 65265|0.58333 65266|0.5 65267|0.5 65268|0.5 65269|0.54167 65270|0.38889 65271|0.73611 65272|0.5 65273|0.51389 65274|0.51389 65275|0.5 65276|0.68056 65277|0.5 65278|0.63889 65279|0.5 65280|0.5 65281|0.58333 65282|0.59722 65283|0.58333 65284|0.5 65285|0.51389 65286|0.61111 65287|0.69444 65288|0.86111 65289|0.5 65290|0.55556 65291|0.5 65292|0.5 65293|0.5 65294|0.72222 65295|0.61111 65296|0.81944 65297|0.5 65298|0.58333 65299|0.51389 65300|0.5 65301|0.5 65302|0.5 65303|0.72222 65304|0.5 65305|0.51389 65306|0.5 65307|0.5 65308|0.5 65309|0.48611 65310|0.73611 65311|0.77778 65312|0.75 65313|0.72222 65314|0.88889 65315|0.79167 65316|0.84722 65317|0.81944 65318|0.55556 65319|0.63889 65320|0.75 65321|0.84722 65322|0.80556 65323|0.52778 65324|0.59722 65325|0.75 65326|0.76389 65327|0.81944 65328|0.80556 65329|0.86111 65330|0.875 65331|0.5 65332|0.65278 65333|0.55556 65334|0.5 65335|0.58333 65336|0.56944 65337|0.77778 65338|0.63889 65339|0.77778 65340|0.77778 65341|0.72222 65342|0.5 65343|0.625 65344|0.5 65345|0.5 65346|0.51389 65347|0.5 65348|0.51389 65349|0.44444 65350|0.51389 65351|0.77778 65352|0.77778 65353|0.63889 65354|0.70833 65355|0.72222 65356|0.38889 65357|0.58333 65358|0.79167 65359|0.47222 65360|0.75 65361|0.47222 65362|0.66667 65363|0.5 65364|0.94444 65365|0.56944 65366|0.72222 65367|0.55556 65368|0.76389 65369|0.48611 65370|0.75 65371|0.5 65372|0.44444 65373|0.41667 65374|0.72222 65375|0.66667 65376|0.72222 65377|0.47222 65378|0.69444 65379|0.44444 65380|0.66667 65381|0.70833 65382|0.77778 65383|0.76389 65384|0.77778 65385|0.69444 65386|0.875 65387|0.5 65388|0.69444 65389|0.70833 65390|0.69444 65391|0.94444 65392|0.79167 65393|0.51389 65394|0.5 65395|0.5 65396|0.47222 65397|0.56944 65398|0.5 65399|0.68056 65400|0.61111 65401|0.56944 65402|0.90278 65403|0.88889 65404|0.5 65405|0.80556 65406|0.77778 65407|0.70833 65408|0.80556 65409|0.88889 65410|0.5 65411|0.77778 65412|0.66667 65413|0.63889 65414|0.61111 65415|0.29167 65416|0.5 65417|0.44444 65418|0.5 65419|0.65278 65420|0.65278 65421|0.875 65422|0.75 65423|0.88889 65424|0.81944 65425|0.51389 65426|0.79167 65427|0.61111 65428|0.58333 65429|0.41667 65430|0.22222 65431|0.61111 65432|0.69444 65433|0.52778 65434|0.33333 65435|0.66667 65436|0.83333 65437|0.93056 65438|0.69444 65439|0.51389 65440|0.5 65441|0.5 65442|0.72222 65443|0.88889 65444|0.5 65445|0.54167 65446|0.5 65447|0.79167 65448|0.27778 65449|0.22222 65450|0.5 65451|0.51389 65452|0.5 65453|0.5 65454|0.5 65455|0.61111 65456|0.72222 65457|0.77778 65458|0.5 65459|0.80556 65460|0.58333 65461|0.5 65462|0.5 65463|0.5 65464|0.68056 65465|0.33333 65466|0.51389 65467|0.66667 65468|0.5 65469|0.5 65470|0.55556 65471|0.55556 65472|0.73611 65473|0.73611 65474|0.83333 65475|0.65278 65476|0.61111 65477|0.61111 65478|0.90278 65479|0.875 65480|0.41667 65481|0.51389 65482|0.48611 65483|0.63889 65484|0.5 65485|0.51389 65486|0.5 65487|0.5 65488|0.5 65489|0.5 65490|0.65278 65491|0.59722 65492|0.83333 65493|0.5 65494|0.40278 65495|0.63889 65496|0.19444 65497|0.16667 65498|0.45833 65499|0.58333 65500|0.45833 65501|0.625 65502|0.56944 65503|0.83333 65504|0.88889 65505|0.59722 65506|0.94444 65507|0.55556 65508|0.41667 65509|0.5 65510|0.5 65511|0.5 65512|0.59722 65513|0.5 65514|0.875 65515|0.5 65516|0.51389 65517|0.5 65518|0.61111 65519|0.66667 65520|0.59722 65521|0.70833 65522|0.70833 65523|0.81944 65524|0.75 65525|0.79167 65526|0.58333 65527|0.81944 65528|0.59722 65529|0.5 65530|0.5 65531|0.375 65532|0.40278 65533|0.31944 65534|0.5 65535|0.72222 65536|0.5 65537|0.91667 65538|0.5 65539|0.66667 65540|0.61111 65541|0.55556 65542|0.69444 65543|0.75 65544|0.80556 65545|0.65278 65546|0.55556 65547|0.52778 65548|0.5 65549|0.5 65550|0.5 65551|0.66667 65552|0.5 65553|0.70833 65554|0.5 65555|0.5 65556|0.63889 65557|0.76389 65558|0.81944 65559|0.51389 65560|0.51389 65561|0.5 65562|0.5 65563|0.55556 65564|0.5 65565|0.69444 65566|0.80556 65567|0.80556 65568|0.68056 65569|0.80556 65570|0.77778 65571|0.70833 65572|0.54167 65573|0.41667 65574|0.5 65575|0.84722 65576|0.5 65577|0.48611 65578|0.63889 65579|0.59722 65580|0.5 65581|0.23611 65582|0.20833 65583|0.45833 65584|0.55556 65585|0.56944 65586|0.59722 65587|0.41667 65588|0.69444 65589|0.65278 65590|0.69444 65591|0.55556 65592|0.86111 65593|0.5 65594|0.76389 65595|0.5 65596|0.72222 65597|0.75 65598|0.59722 65599|0.77778 65600|0.55556 65601|0.76389 65602|0.59722 65603|0.70833 65604|0.5 65605|0.31944 65606|0.125 65607|0.30556 65608|0.94444 65609|0.95833 65610|0.52778 65611|0.5 65612|0.5 65613|0.81944 65614|0.88889 65615|0.70833 65616|0.5 65617|0.5 65618|0.68056 65619|0.72222 65620|0.48611 65621|0.90278 65622|0.5 65623|0.81944 65624|0.54167 65625|0.5 65626|0.5 65627|0.41667 65628|0.51389 65629|0.5 65630|0.5 65631|0.5 65632|0.66667 65633|0.47222 65634|0.5 65635|0.68056 65636|0.5 65637|0.5 65638|0.5 65639|0.63889 65640|0.55556 65641|0.5 65642|0.5 65643|0.51389 65644|0.5 65645|0.51389 65646|0.61111 65647|0.52778 65648|0.5 65649|0.63889 65650|0.5 65651|0.44444 65652|0.83333 65653|0.52778 65654|0.5 65655|0.77778 65656|0.80556 65657|0.84722 65658|0.76389 65659|0.77778 65660|0.63889 65661|0.77778 65662|0.38889 65663|0.90278 65664|0.5 65665|0.5 65666|0.48611 65667|0.77778 65668|0.5 65669|0.38889 65670|0.54167 65671|0.58333 65672|0.5 65673|0.51389 65674|0.51389 65675|0.34722 65676|0.5 65677|0.52778 65678|0.66667 65679|0.47222 65680|0.90278 65681|0.77778 65682|0.68056 65683|0.29167 65684|0.75 65685|0.5 65686|0.48611 65687|0.44444 65688|0.51389 65689|0.61111 65690|0.90278 65691|0.59722 65692|0.19444 65693|0.44444 65694|0.5 65695|0.44444 65696|0.63889 65697|0.56944 65698|0.51389 65699|0.55556 65700|0.63889 65701|0.77778 65702|0.73611 65703|0.83333 65704|0.81944 65705|0.68056 65706|0.79167 65707|0.73611 65708|0.68056 65709|0.69444 65710|0.5 65711|0.47222 65712|0.54167 65713|0.5 65714|0.5 65715|0.5 65716|0.5 65717|0.44444 65718|0.58333 65719|0.56944 65720|0.59722 65721|0.51389 65722|0.5 65723|0.51389 65724|0.80556 65725|0.5 65726|0.51389 65727|0.5 65728|0.81944 65729|0.52778 65730|0.55556 65731|0.61111 65732|0.48611 65733|0.5 65734|0.5 65735|0.61111 65736|0.33333 65737|0.75 65738|0.5 65739|0.5 65740|0.5 65741|0.5 65742|0.70833 65743|0.79167 65744|0.52778 65745|0.5 65746|0.5 65747|0.75 65748|0.72222 65749|0.5 65750|0.5 65751|0.5 65752|0.5 65753|0.5 65754|0.5 65755|0.63889 65756|0.5 65757|0.38889 65758|0.44444 65759|0.5 65760|0.5 65761|0.5 65762|0.5 65763|0.5 65764|0.54167 65765|0.38889 65766|0.5 65767|0.5 65768|0.5 65769|0.66667 65770|0.5 65771|0.68056 65772|0.875 65773|0.58333 65774|0.51389 65775|0.5 65776|0.5 65777|0.5 65778|0.5 65779|0.55556 65780|0.77778 65781|0.70833 65782|0.83333 65783|0.75 65784|0.65278 65785|0.76389 65786|0.66667 65787|0.59722 65788|0.5 65789|0.94444 65790|0.5 65791|0.5 65792|0.5 65793|0.38889 65794|0.51389 65795|0.69444 65796|0.48611 65797|0.5 65798|0.48611 65799|0.58333 65800|0.097222 65801|0.22222 65802|0.68056 65803|0.47222 65804|0.5 65805|0.5 65806|0.625 65807|0.51389 65808|0.75 65809|0.72222 65810|0.43056 65811|0.5 65812|0.5 65813|0.68056 65814|0.51389 65815|0.5 65816|0.81944 65817|0.81944 65818|0.72222 65819|0.88889 65820|0.76389 65821|0.5 65822|0.81944 65823|0.70833 65824|0.69444 65825|0.66667 65826|0.63889 65827|0.5 65828|0.5 65829|0.5 65830|0.5 65831|0.54167 65832|0.5 65833|0.5 65834|0.5 65835|0.79167 65836|0.93056 65837|0.5 65838|0.68056 65839|0.63889 65840|0.5 65841|0.72222 65842|0.47222 65843|0.33333 65844|0.45833 65845|0.5 65846|0.84722 65847|0.5 65848|0.5 65849|0.43056 65850|0.94444 65851|0.68056 65852|0.83333 65853|0.84722 65854|0.73611 65855|0.73611 65856|0.79167 65857|0.86111 65858|0.83333 65859|1 65860|0.81944 65861|0.86111 65862|0.66667 65863|0.94444 65864|0.5 65865|0.52778 65866|0.69444 65867|0.51389 65868|0.51389 65869|0.51389 65870|0.72222 65871|0.5 65872|0.83333 65873|0.5 65874|0.5 65875|0.61111 65876|0.5 65877|0.5 65878|0.5 65879|0.5 65880|0.5 65881|0.5 65882|0.5 65883|0.5 65884|0.61111 65885|0.59722 65886|0.80556 65887|0.52778 65888|0.43056 65889|0.47222 65890|0.5 65891|0.61111 65892|0.65278 65893|0.55556 65894|0.73611 65895|0.5 65896|0.54167 65897|0.58333 65898|0.5 65899|0.5 65900|0.5 65901|0.5 65902|0.69444 65903|0.72222 65904|0.45833 65905|0.76389 65906|0.63889 65907|0.58333 65908|0.5 65909|0.55556 65910|0.80556 65911|0.88889 65912|0.72222 65913|0.5 65914|0.5 65915|0.5 65916|0.55556 65917|0.56944 65918|0.5 65919|0.5 65920|0.80556 65921|0.5 65922|0.5 65923|0.75 65924|0.5 65925|0.61111 65926|0.75 65927|0.69444 65928|0.55556 65929|0.61111 65930|0.76389 65931|0.48611 65932|0.68056 65933|0.69444 65934|0.80556 65935|0.94444 65936|0.66667 65937|0.77778 65938|0.55556 65939|0.44444 65940|0.47222 65941|0.625 65942|0.68056 65943|0.5 65944|0.75 65945|0.5 65946|0.5 65947|0.5 65948|0.97222 65949|0.5 65950|0.5 65951|0.5 65952|0.5 65953|0.75 65954|0.625 65955|0.33333 65956|0.5 65957|0.48611 65958|0.40278 65959|0.5 65960|0.79167 65961|0.73611 65962|0.83333 65963|0.76389 65964|0.625 65965|0.5 65966|0.52778 65967|0.72222 65968|0.61111 65969|0.72222 65970|0.5 65971|0.5 65972|0.5 65973|0.52778 65974|0.5 65975|0.66667 65976|0.5 65977|0.63889 65978|0.65278 65979|0.76389 65980|0.51389 65981|0.5 65982|0.52778 65983|0.51389 65984|0.69444 65985|0.58333 65986|0.58333 65987|0.76389 65988|0.95833 65989|0.5 65990|0.47222 65991|0.5 65992|0.55556 65993|0.5 65994|0.5 65995|0.5 65996|0.5 65997|0.80556 65998|0.5 65999|0.5 66000|0.55556 66001|0.44444 66002|0.61111 66003|0.63889 66004|0.5 66005|0.5 66006|0.5 66007|0.5 66008|0.66667 66009|0.33333 66010|0.40278 66011|0.5 66012|0.5 66013|0.90278 66014|0.54167 66015|0.5 66016|0.5 66017|0.5 66018|0.5 66019|0.5 66020|0.5 66021|0.5 66022|0.5 66023|0.26389 66024|0.51389 66025|0.5 66026|0.34722 66027|0.55556 66028|0.61111 66029|0.5 66030|0.5 66031|0.27778 66032|0.33333 66033|0.27778 66034|0.73611 66035|0.68056 66036|0.73611 66037|0.88889 66038|0.75 66039|0.55556 66040|0.5 66041|0.44444 66042|0.5 66043|0.84722 66044|0.5 66045|0.5 66046|0.48611 66047|0.94444 66048|0.61111 66049|0.94444 66050|0.43056 66051|0.51389 66052|0.51389 66053|0.5 66054|0.5 66055|0.48611 66056|0.66667 66057|0.5 66058|0.56944 66059|0.48611 66060|0.68056 66061|0.69444 66062|0.69444 66063|0.52778 66064|0.66667 66065|0.5 66066|0.56944 66067|0.5 66068|0.75 66069|0.81944 66070|0.5 66071|0.90278 66072|0.94444 66073|0.5 66074|0.48611 66075|0.63889 66076|0.45833 66077|0.80556 66078|0.68056 66079|0.83333 66080|0.83333 66081|0.5 66082|0.5 66083|0.51389 66084|0.93056 66085|0.5 66086|0.5 66087|0.63889 66088|0.54167 66089|0.5 66090|0.75 66091|0.43056 66092|0.27778 66093|0.66667 66094|0.83333 66095|0.5 66096|0.5 66097|0.69444 66098|0.54167 66099|0.5 66100|0.5 66101|0.625 66102|0.55556 66103|0.5 66104|0.66667 66105|0.66667 66106|0.22222 66107|0.48611 66108|0.43056 66109|0.61111 66110|0.75 66111|0.33333 66112|0.33333 66113|0.81944 66114|0.45833 66115|0.45833 66116|0.38889 66117|0.52778 66118|0.55556 66119|0.79167 66120|0.5 66121|0.5 66122|0.83333 66123|0.75 66124|0.68056 66125|0.86111 66126|0.81944 66127|0.73611 66128|0.73611 66129|0.5 66130|0.80556 66131|0.22222 66132|0.48611 66133|0.34722 66134|0.51389 66135|0.88889 66136|0.80556 66137|0.65278 66138|0.5 66139|0.72222 66140|0.5 66141|0.55556 66142|0.69444 66143|0.88889 66144|0.66667 66145|0.31944 66146|0.31944 66147|0.66667 66148|0.68056 66149|0.20833 66150|0.66667 66151|0.73611 66152|0.5 66153|0.79167 66154|0.69444 66155|0.59722 66156|0.72222 66157|0.88889 66158|0.55556 66159|0.79167 66160|0.69444 66161|0.72222 66162|0.77778 66163|0.72222 66164|0.80556 66165|0.94444 66166|0.93056 66167|0.5 66168|0.80556 66169|0.63889 66170|0.88889 66171|0.47222 66172|0.5 66173|0.72222 66174|0.76389 66175|0.72222 66176|0.61111 66177|0.70833 66178|0.76389 66179|0.73611 66180|0.72222 66181|0.88889 66182|0.86111 66183|0.69444 66184|0.5 66185|0.90278 66186|0.81944 66187|0.84722 66188|0.77778 66189|0.73611 66190|0.65278 66191|0.83333 66192|0.5 66193|0.5 66194|0.5 66195|0.73611 66196|0.77778 66197|0.5 66198|0.5 66199|0.625 66200|0.5 66201|0.83333 66202|0.59722 66203|0.59722 66204|0.54167 66205|0.77778 66206|0.79167 66207|0.48611 66208|0.86111 66209|0.81944 66210|0.13889 66211|0.58333 66212|0.625 66213|0.5 66214|0.5 66215|0.5 66216|0.52778 66217|0.5 66218|0.58333 66219|0.5 66220|0.68056 66221|0.5 66222|0.5 66223|0.625 66224|0.51389 66225|0.5 66226|0.65278 66227|0.83333 66228|0.5 66229|0.45833 66230|0.5 66231|0.5 66232|0.5 66233|0.5 66234|0.5 66235|0.83333 66236|0.88889 66237|0.36111 66238|0.34722 66239|0.47222 66240|0.63889 66241|0.45833 66242|0.54167 66243|0.36111 66244|0.65278 66245|0.55556 66246|0.88889 66247|0.51389 66248|0.83333 66249|0.58333 66250|0.75 66251|0.5 66252|0.56944 66253|0.43056 66254|0.27778 66255|0.375 66256|0.65278 66257|0.375 66258|0.40278 66259|0.18056 66260|0.68056 66261|0.75 66262|0.5 66263|0.58333 66264|0.5 66265|0.55556 66266|0.59722 66267|0.70833 66268|0.65278 66269|0.55556 66270|0.43056 66271|0.66667 66272|0.33333 66273|0.54167 66274|0.65278 66275|0.61111 66276|0.5 66277|0.29167 66278|0.75 66279|0.69444 66280|0.38889 66281|0.44444 66282|0.55556 66283|0.63889 66284|0.44444 66285|0.61111 66286|0.80556 66287|0.29167 66288|0.66667 66289|0.27778 66290|0.5 66291|0.375 66292|0.56944 66293|0.83333 66294|0.83333 66295|0.77778 66296|0.93056 66297|0.72222 66298|0.94444 66299|0.77778 66300|0.80556 66301|0.61111 66302|0.75 66303|0.84722 66304|0.73611 66305|0.81944 66306|0.80556 66307|0.40278 66308|0.45833 66309|0.52778 66310|0.79167 66311|0.59722 66312|0.72222 66313|0.5 66314|0.72222 66315|0.77778 66316|0.86111 66317|0.41667 66318|0.43056 66319|0.41667 66320|0.51389 66321|0.20833 66322|0.51389 66323|0.73611 66324|0.61111 66325|0.90278 66326|0.5 66327|0.61111 66328|0.73611 66329|0.56944 66330|0.5 66331|0.90278 66332|0.79167 66333|0.47222 66334|0.375 66335|0.80556 66336|0.83333 66337|0.875 66338|0.61111 66339|0.66667 66340|0.5 66341|0.69444 66342|0.51389 66343|0.81944 66344|0.66667 66345|0.69444 66346|0.38889 66347|0.81944 66348|0.44444 66349|0.88889 66350|0.20833 66351|0.95833 66352|0.94444 66353|0.44444 66354|0.86111 66355|0.5 66356|0.79167 66357|0.77778 66358|0.5 66359|0.83333 66360|0.5 66361|0.79167 66362|0.375 66363|0.79167 66364|0.81944 66365|0.66667 66366|0.5 66367|0.56944 66368|0.5 66369|0.77778 66370|0.75 66371|0.75 66372|0.5 66373|0.70833 66374|0.5 66375|0.91667 66376|0.63889 66377|0.63889 66378|0.65278 66379|0.27778 66380|0.40278 66381|0.55556 66382|0.80556 66383|0.5 66384|0.51389 66385|0.66667 66386|0.5 66387|0.51389 66388|0.5 66389|0.51389 66390|0.56944 66391|0.5 66392|0.47222 66393|0.33333 66394|0.59722 66395|0.72222 66396|0.45833 66397|0.95833 66398|0.98611 66399|0.5 66400|0.63889 66401|0.41667 66402|0.94444 66403|0.95833 66404|0.90278 66405|0.94444 66406|0.68056 66407|0.44444 66408|0.69444 66409|0.65278 66410|0.86111 66411|0.72222 66412|0.77778 66413|0.66667 66414|0.76389 66415|0.73611 66416|0.76389 66417|0.52778 66418|0.45833 66419|0.69444 66420|0.61111 66421|0.83333 66422|0.75 66423|0.625 66424|0.79167 66425|0.55556 66426|0.77778 66427|0.86111 66428|0.88889 66429|0.91667 66430|0.48611 66431|0.5 66432|0.5 66433|0.5 66434|0.5 66435|0.56944 66436|0.59722 66437|0.5 66438|0.83333 66439|0.55556 66440|0.51389 66441|0.44444 66442|0.77778 66443|0.52778 66444|0.54167 66445|0.73611 66446|0.79167 66447|0.5 66448|0.61111 66449|0.5 66450|0.51389 66451|0.875 66452|0.55556 66453|0.5 66454|0.5 66455|0.5 66456|0.68056 66457|0.5 66458|0.5 66459|0.80556 66460|0.48611 66461|0.84722 66462|0.72222 66463|0.81944 66464|0.88889 66465|0.91667 66466|0.77778 66467|0.90278 66468|0.75 66469|0.56944 66470|0.72222 66471|0.70833 66472|0.88889 66473|0.77778 66474|0.91667 66475|0.77778 66476|0.83333 66477|0.77778 66478|0.83333 66479|0.77778 66480|0.84722 66481|0.93056 66482|0.98611 66483|0.81944 66484|0.81944 66485|0.80556 66486|0.94444 66487|0.73611 66488|0.84722 66489|0.68056 66490|0.86111 66491|0.70833 66492|0.81944 66493|0.47222 66494|0.38889 66495|0.38889 66496|0.43056 66497|0.63889 66498|0.29167 66499|0.81944 66500|0.76389 66501|0.83333 66502|0.76389 66503|0.79167 66504|0.79167 66505|0.86111 66506|0.66667 66507|0.77778 66508|0.25 66509|0.73611 66510|0.51389 66511|0.79167 66512|0.68056 66513|0.93056 66514|0.90278 66515|0.27778 66516|0.875 66517|0.77778 66518|0.52778 66519|0.83333 66520|0.54167 66521|0.80556 66522|0.72222 66523|0.69444 66524|0.63889 66525|0.44444 66526|0.70833 66527|0.76389 66528|0.77778 66529|0.65278 66530|0.70833 66531|0.72222 66532|0.72222 66533|0.625 66534|0.5 66535|0.875 66536|0.29167 66537|0.38889 66538|0.375 66539|0.625 66540|0.72222 66541|0.81944 66542|0.625 66543|0.58333 66544|0.79167 66545|0.77778 66546|0.81944 66547|0.77778 66548|0.73611 66549|0.84722 66550|0.70833 66551|0.70833 66552|0.43056 66553|0.61111 66554|0.72222 66555|0.77778 66556|0.88889 66557|0.77778 66558|0.75 66559|0.23611 66560|0.31944 66561|0.30556 66562|0.31944 66563|0.27778 66564|0.44444 66565|0.47222 66566|0.52778 66567|0.81944 66568|0.91667 66569|0.69444 66570|0.84722 66571|0.31944 66572|0.63889 66573|0.41667 66574|0.38889 66575|0.52778 66576|0.61111 66577|0.73611 66578|0.48611 66579|0.55556 66580|0.56944 66581|0.73611 66582|0.69444 66583|0.52778 66584|0.58333 66585|0.63889 66586|0.69444 66587|0.79167 66588|0.66667 66589|0.83333 66590|0.80556 66591|0.69444 66592|0.52778 66593|0.88889 66594|0.83333 66595|0.83333 66596|0.45833 66597|0.63889 66598|0.5 66599|0.59722 66600|0.47222 66601|0.44444 66602|0.33333 66603|0.34722 66604|0.51389 66605|0.68056 66606|0.70833 66607|0.61111 66608|0.65278 66609|0.73611 66610|0.61111 66611|0.72222 66612|0.81944 66613|0.79167 66614|0.76389 66615|0.56944 66616|0.77778 66617|0.90278 66618|0.38889 66619|0.375 66620|0.44444 66621|0.47222 66622|0.68056 66623|0.43056 66624|0.33333 66625|0.55556 66626|0.48611 66627|0.36111 66628|0.5 66629|0.45833 66630|0.56944 66631|0.625 66632|0.56944 66633|0.15278 66634|0.083333 66635|0.22222 66636|0.40278 66637|0.29167 66638|0.29167 66639|0.40278 66640|0.47222 66641|0.68056 66642|0.40278 66643|0.30556 66644|0.44444 66645|0.69444 66646|0.66667 66647|0.51389 66648|0.61111 66649|0.29167 66650|0.69444 66651|0.73611 66652|0.76389 66653|0.97222 66654|0.61111 66655|0.58333 66656|0.52778 66657|0.79167 66658|0.84722 66659|0.44444 66660|0.52778 66661|0.5 66662|0.51389 66663|0.68056 66664|0.5 66665|0.38889 66666|0.51389 66667|0.65278 66668|0.70833 66669|0.75 66670|0.65278 66671|0.88889 66672|0.86111 66673|0.875 66674|0.83333 66675|0.77778 66676|0.68056 66677|0.90278 66678|0.69444 66679|0.79167 66680|0.72222 66681|0.72222 66682|0.84722 66683|0.72222 66684|0.68056 66685|0.59722 66686|0.41667 66687|0.61111 66688|0.72222 66689|0.72222 66690|0.73611 66691|0.31944 66692|0.77778 66693|0.22222 66694|0.27778 66695|0.5 66696|0.58333 66697|0.66667 66698|0.73611 66699|0.79167 66700|0.63889 66701|0.41667 66702|0.38889 66703|0.375 66704|0.44444 66705|0.59722 66706|0.40278 66707|0.73611 66708|0.73611 66709|0.72222 66710|0.70833 66711|0.68056 66712|0.45833 66713|0.72222 66714|0.68056 66715|0.72222 66716|0.72222 66717|0.73611 66718|0.73611 66719|0.80556 66720|0.48611 66721|0.61111 66722|0.65278 66723|0.66667 66724|0.63889 66725|0.66667 66726|0.70833 66727|0.72222 66728|0.52778 66729|0.90278 66730|0.72222 66731|0.5 66732|0.66667 66733|0.52778 66734|0.70833 66735|0.63889 66736|0.625 66737|0.77778 66738|0.81944 66739|0.55556 66740|0.5 66741|0.63889 66742|0.66667 66743|0.66667 66744|0.95833 66745|0.44444 66746|0.45833 66747|0.43056 66748|0.70833 66749|0.45833 66750|0.27778 66751|0.16667 66752|0.51389 66753|0.33333 66754|0.73611 66755|0.59722 66756|0.44444 66757|0.375 66758|0.77778 66759|0.52778 66760|0.36111 66761|0.41667 66762|0.51389 66763|0.66667 66764|0.73611 66765|0.5 66766|0.54167 66767|0.34722 66768|0.75 66769|0.66667 66770|0.83333 66771|0.66667 66772|0.44444 66773|0.41667 66774|0.43056 66775|0.84722 66776|0.65278 66777|0.94444 66778|0.77778 66779|0.83333 66780|0.80556 66781|0.56944 66782|0.75 66783|0.63889 66784|0.375 66785|0.22222 66786|0.375 66787|0.43056 66788|0.63889 66789|0.69444 66790|0.58333 66791|0.73611 66792|0.77778 66793|0.73611 66794|0.13889 66795|0.84722 66796|0.5 66797|0.59722 66798|0.70833 66799|0.45833 66800|0.56944 66801|0.66667 66802|0.5 66803|0.61111 66804|0.72222 66805|0.5 66806|0.79167 66807|0.63889 66808|0.83333 66809|0.51389 66810|0.75 66811|0.80556 66812|0.65278 66813|0.48611 66814|0.58333 66815|0.66667 66816|0.88889 66817|0.69444 66818|0.55556 66819|0.54167 66820|0.72222 66821|0.77778 66822|0.47222 66823|0.44444 66824|0.5 66825|0.5 66826|0.68056 66827|0.76389 66828|0.59722 66829|0.38889 66830|0.51389 66831|0.55556 66832|0.5 66833|0.5 66834|0.51389 66835|0.48611 66836|0.66667 66837|0.51389 66838|0.51389 66839|0.70833 66840|0.65278 66841|0.86111 66842|0.77778 66843|0.61111 66844|0.58333 66845|0.5 66846|0.5 66847|0.5 66848|0.80556 66849|0.58333 66850|0.61111 66851|0.61111 66852|0.54167 66853|0.34722 66854|0.34722 66855|0.55556 66856|0.58333 66857|0.5 66858|0.5 66859|0.5 66860|0.5 66861|0.5 66862|0.69444 66863|0.5 66864|0.23611 66865|0.65278 66866|0.5 66867|0.51389 66868|0.61111 66869|0.5 66870|0.88889 66871|0.38889 66872|0.5 66873|0.51389 66874|0.51389 66875|0.5 66876|0.59722 66877|0.5 66878|0.45833 66879|0.5 66880|0.61111 66881|0.5 66882|0.59722 66883|0.5 66884|0.77778 66885|0.625 66886|0.58333 66887|0.5 66888|0.5 66889|0.52778 66890|0.5 66891|0.55556 66892|0.5 66893|0.5 66894|0.5 66895|0.52778 66896|0.48611 66897|0.5 66898|0.5 66899|0.5 66900|0.5 66901|0.5 66902|0.73611 66903|0.5 66904|0.5 66905|0.73611 66906|0.54167 66907|0.5 66908|0.43056 66909|0.5 66910|0.5 66911|0.59722 66912|0.5 66913|0.5 66914|0.58333 66915|0.51389 66916|0.5 66917|0.5 66918|0.51389 66919|0.73611 66920|0.5 66921|0.75 66922|0.5 66923|0.5 66924|0.45833 66925|0.5 66926|0.56944 66927|0.5 66928|0.66667 66929|0.5 66930|0.5 66931|0.52778 66932|0.83333 66933|0.5 66934|0.51389 66935|0.5 66936|0.5 66937|0.45833 66938|0.51389 66939|0.66667 66940|0.55556 66941|0.65278 66942|0.5 66943|0.5 66944|0.55556 66945|0.38889 66946|0.55556 66947|0.5 66948|0.5 66949|0.51389 66950|0.5 66951|0.51389 66952|0.5 66953|0.51389 66954|0.5 66955|0.5 66956|0.5 66957|0.44444 66958|0.65278 66959|0.5 66960|0.5 66961|0.55556 66962|0.88889 66963|0.5 66964|0.5 66965|0.5 66966|0.5 66967|0.5 66968|0.5 66969|0.55556 66970|0.375 66971|0.70833 66972|0.5 66973|0.58333 66974|0.73611 66975|0.76389 66976|0.20833 66977|0.16667 66978|0.65278 66979|0.73611 66980|0.73611 66981|0.5 66982|0.5 66983|0.52778 66984|0.56944 66985|0.51389 66986|0.5 66987|0.5 66988|0.43056 66989|0.5 66990|0.5 66991|0.48611 66992|0.54167 66993|0.65278 66994|0.51389 66995|0.61111 66996|0.65278 66997|0.625 66998|0.56944 66999|0.51389 67000|0.5 67001|0.55556 67002|0.5 67003|0.34722 67004|0.5 67005|0.72222 67006|0.5 67007|0.625 67008|0.72222 67009|0.61111 67010|0.44444 67011|0.5 67012|0.5 67013|0.88889 67014|0.88889 67015|0.79167 67016|0.80556 67017|0.84722 67018|0.76389 67019|0.83333 67020|0.73611 67021|0.77778 67022|0.80556 67023|0.5 67024|0.5 67025|0.56944 67026|0.38889 67027|0.5 67028|0.5 67029|0.77778 67030|0.80556 67031|0.5 67032|0.5 67033|0.59722 67034|0.45833 67035|0.80556 67036|0.5 67037|0.55556 67038|0.95833 67039|0.56944 67040|0.81944 67041|0.83333 67042|0.69444 67043|0.5 67044|0.47222 67045|0.51389 67046|0.55556 67047|0.5 67048|0.59722 67049|0.5 67050|0.5 67051|0.94444 67052|0.77778 67053|0.84722 67054|0.51389 67055|0.5 67056|0.51389 67057|0.5 67058|0.5 67059|0.5 67060|0.5 67061|0.5 67062|0.5 67063|0.625 67064|0.5 67065|0.51389 67066|0.5 67067|0.59722 67068|0.68056 67069|0.56944 67070|0.66667 67071|0.5 67072|0.5 67073|0.5 67074|0.5 67075|0.5 67076|0.5 67077|0.5 67078|0.55556 67079|0.93056 67080|0.91667 67081|0.5 67082|0.5 67083|0.5 67084|0.5 67085|0.5 67086|0.5 67087|0.72222 67088|0.76389 67089|0.68056 67090|0.84722 67091|0.68056 67092|0.66667 67093|0.51389 67094|0.5 67095|0.5 67096|0.5 67097|0.86111 67098|0.72222 67099|0.875 67100|0.27778 67101|0.125 67102|0.19444 67103|0.26389 67104|0.041667 67105|0.5 67106|0.61111 67107|0.86111 67108|0.86111 67109|0.5 67110|0.5 67111|0.5 67112|0.54167 67113|0.23611 67114|0.5 67115|0.66667 67116|0.5 67117|0.5 67118|0.5 67119|0.5 67120|0.5 67121|0.51389 67122|0.51389 67123|0.5 67124|0.5 67125|0.5 67126|0.5 67127|0.5 67128|0.5 67129|0.70833 67130|0.5 67131|0.5 67132|0.59722 67133|0.44444 67134|0.63889 67135|0.76389 67136|0.625 67137|0.58333 67138|0.55556 67139|0.83333 67140|0.81944 67141|0.5 67142|0.5 67143|0.5 67144|0.48611 67145|0.45833 67146|0.83333 67147|0.79167 67148|0.875 67149|0.51389 67150|0.58333 67151|0.5 67152|0.36111 67153|0.41667 67154|0.41667 67155|0.63889 67156|0.70833 67157|0.52778 67158|0.77778 67159|0.81944 67160|0.33333 67161|0.51389 67162|0.61111 67163|0.59722 67164|0.86111 67165|0.875 67166|0.73611 67167|0.83333 67168|0.51389 67169|0.69444 67170|0.625 67171|0.81944 67172|0.54167 67173|0.44444 67174|0.51389 67175|0.76389 67176|0.5 67177|0.875 67178|0.97222 67179|0.83333 67180|0.88889 67181|0.56944 67182|0.59722 67183|0.5 67184|0.75 67185|0.55556 67186|0.79167 67187|0.79167 67188|0.75 67189|0.5 67190|0.5 67191|0.5 67192|0.5 67193|0.5 67194|0.61111 67195|0.61111 67196|0.69444 67197|0.61111 67198|0.44444 67199|0.56944 67200|0.55556 67201|0.63889 67202|0.5 67203|0.61111 67204|0.5 67205|0.5 67206|0.5 67207|0.5 67208|0.5 67209|0.5 67210|0.5 67211|0.375 67212|0.52778 67213|0.5 67214|0.5 67215|0.5 67216|0.66667 67217|0.68056 67218|0.47222 67219|0.38889 67220|0.76389 67221|0.94444 67222|0.55556 67223|0.80556 67224|0.58333 67225|0.81944 67226|0.5 67227|0.72222 67228|0.22222 67229|0.48611 67230|0.44444 67231|0.75 67232|0.72222 67233|0.72222 67234|0.61111 67235|0.63889 67236|0.5 67237|0.16667 67238|0.51389 67239|0.83333 67240|0.56944 67241|0.83333 67242|0.80556 67243|0.80556 67244|0.84722 67245|0.77778 67246|0.61111 67247|0.75 67248|0.58333 67249|0.70833 67250|0.59722 67251|0.51389 67252|0.72222 67253|0.66667 67254|0.88889 67255|0.41667 67256|0.66667 67257|0.5 67258|0.76389 67259|0.51389 67260|0.47222 67261|0.61111 67262|0.73611 67263|0.59722 67264|0.70833 67265|0.54167 67266|0.66667 67267|0.5 67268|0.31944 67269|0.27778 67270|0.375 67271|0.43056 67272|0.51389 67273|0.77778 67274|0.52778 67275|0.84722 67276|0.81944 67277|0.66667 67278|0.84722 67279|0.63889 67280|0.73611 67281|0.51389 67282|0.72222 67283|0.5 67284|0.48611 67285|0.52778 67286|0.5 67287|0.5 67288|0.61111 67289|0.33333 67290|0.56944 67291|0.5 67292|0.56944 67293|0.5 67294|0.51389 67295|0.45833 67296|0.5 67297|0.51389 67298|0.47222 67299|0.54167 67300|0.5 67301|0.5 67302|0.44444 67303|0.52778 67304|0.51389 67305|0.38889 67306|0.44444 67307|0.44444 67308|0.5 67309|0.5 67310|0.5 67311|0.5 67312|0.51389 67313|0.5 67314|0.5 67315|0.5 67316|0.5 67317|0.31944 67318|0.36111 67319|0.5 67320|0.625 67321|0.94444 67322|0.77778 67323|0.66667 67324|0.70833 67325|0.72222 67326|0.80556 67327|0.61111 67328|0.5 67329|0.5 67330|0.5 67331|0.51389 67332|0.51389 67333|0.51389 67334|0.5 67335|0.45833 67336|0.5 67337|0.54167 67338|0.5 67339|0.83333 67340|0.5 67341|0.625 67342|0.59722 67343|0.56944 67344|0.44444 67345|0.5 67346|0.52778 67347|0.5 67348|0.51389 67349|0.5 67350|0.5 67351|0.80556 67352|0.5 67353|0.5 67354|0.55556 67355|0.5 67356|0.25 67357|0.45833 67358|0.51389 67359|0.65278 67360|0.59722 67361|0.51389 67362|0.77778 67363|0.625 67364|0.76389 67365|0.72222 67366|0.5 67367|0.51389 67368|0.48611 67369|0.83333 67370|0.65278 67371|0.54167 67372|0.72222 67373|0.81944 67374|0.72222 67375|0.5 67376|0.5 67377|0.5 67378|0.5 67379|0.43056 67380|0.75 67381|0.75 67382|0.61111 67383|0.59722 67384|0.47222 67385|0.70833 67386|0.59722 67387|0.5 67388|0.52778 67389|0.5 67390|0.5 67391|0.73611 67392|0.72222 67393|0.5 67394|0.5 67395|0.51389 67396|0.5 67397|0.77778 67398|0.5 67399|0.5 67400|0.5 67401|0.5 67402|0.51389 67403|0.5 67404|0.48611 67405|0.5 67406|0.5 67407|0.875 67408|0.73611 67409|0.58333 67410|0.44444 67411|0.19444 67412|0.27778 67413|0.22222 67414|0.11111 67415|0.58333 67416|0.5 67417|0.20833 67418|0.52778 67419|0.61111 67420|0.68056 67421|0.5 67422|0.5 67423|0.51389 67424|0.5 67425|0.51389 67426|0.51389 67427|0.51389 67428|0.79167 67429|0.75 67430|0.84722 67431|0.66667 67432|0.69444 67433|0.5 67434|0.66667 67435|0.79167 67436|0.5 67437|0.40278 67438|0.44444 67439|0.5 67440|0.41667 67441|0.40278 67442|0.5 67443|0.61111 67444|0.5 67445|0.5 67446|0.5 67447|0.40278 67448|0.75 67449|0.81944 67450|0.95833 67451|0.76389 67452|0.90278 67453|0.94444 67454|0.5 67455|0.5 67456|0.5 67457|0.5 67458|0.48611 67459|0.43056 67460|0.5 67461|0.5 67462|0.5 67463|0.65278 67464|0.52778 67465|0.5 67466|0.5 67467|0.5 67468|0.58333 67469|0.51389 67470|0.80556 67471|0.79167 67472|0.55556 67473|0.61111 67474|0.5 67475|0.84722 67476|0.5 67477|0.5 67478|0.44444 67479|0.36111 67480|0.34722 67481|0.33333 67482|0.66667 67483|0.66667 67484|0.55556 67485|0.375 67486|0.59722 67487|0.47222 67488|0.61111 67489|0.65278 67490|0.48611 67491|0.41667 67492|0.44444 67493|0.69444 67494|0.77778 67495|0.48611 67496|0.54167 67497|0.66667 67498|0.81944 67499|0.70833 67500|0.79167 67501|0.5 67502|0.54167 67503|0.58333 67504|0.79167 67505|0.5 67506|0.77778 67507|0.55556 67508|0.5 67509|0.5 67510|0.5 67511|0.5 67512|0.66667 67513|0.51389 67514|0.625 67515|0.5 67516|0.51389 67517|0.5 67518|0.79167 67519|0.81944 67520|0.52778 67521|0.93056 67522|0.5 67523|0.5 67524|0.5 67525|0.5 67526|0.5 67527|0.55556 67528|0.43056 67529|0.51389 67530|0.72222 67531|0.51389 67532|0.55556 67533|0.5 67534|0.48611 67535|0.52778 67536|0.5 67537|0.5 67538|0.5 67539|0.5 67540|0.5 67541|0.45833 67542|0.59722 67543|0.48611 67544|0.5 67545|0.61111 67546|0.5 67547|0.44444 67548|0.86111 67549|0.70833 67550|0.90278 67551|0.84722 67552|0.80556 67553|0.94444 67554|0.66667 67555|0.5 67556|0.5 67557|0.52778 67558|0.51389 67559|0.86111 67560|0.66667 67561|0.5 67562|0.5 67563|0.51389 67564|0.63889 67565|0.56944 67566|0.86111 67567|0.58333 67568|0.5 67569|0.5 67570|0.5 67571|0.5 67572|0.5 67573|0.5 67574|0.84722 67575|0.5 67576|0.5 67577|0.73611 67578|1 67579|0.52778 67580|0.58333 67581|0.5 67582|0.5 67583|0.5 67584|0.5 67585|0.45833 67586|0.375 67587|0.5 67588|0.86111 67589|0.5 67590|0.55556 67591|0.5 67592|0.26389 67593|0.38889 67594|0.44444 67595|0.43056 67596|0.625 67597|0.72222 67598|0.22222 67599|0.54167 67600|0.5 67601|0.5 67602|0.44444 67603|0.72222 67604|0.66667 67605|0.75 67606|0.77778 67607|0.31944 67608|0.88889 67609|0.68056 67610|0.70833 67611|0.65278 67612|0.77778 67613|0.88889 67614|0.65278 67615|0.5 67616|0.88889 67617|0.63889 67618|0.61111 67619|0.54167 67620|0.625 67621|0.83333 67622|0.5 67623|0.30556 67624|0.22222 67625|0.44444 67626|0.70833 67627|0.55556 67628|0.5 67629|0.61111 67630|0.55556 67631|0.51389 67632|0.51389 67633|0.80556 67634|0.83333 67635|0.5 67636|0.44444 67637|0.61111 67638|0.73611 67639|0.65278 67640|0.5 67641|0.5 67642|0.56944 67643|0.55556 67644|0.625 67645|0.84722 67646|0.27778 67647|0.69444 67648|0.61111 67649|0.80556 67650|0.83333 67651|0.5 67652|0.5 67653|0.61111 67654|0.5 67655|0.51389 67656|0.5 67657|0.5 67658|0.5 67659|0.625 67660|0.5 67661|0.81944 67662|0.5 67663|0.72222 67664|0.77778 67665|0.68056 67666|0.75 67667|0.30556 67668|0.58333 67669|0.76389 67670|0.83333 67671|0.45833 67672|0.61111 67673|0.68056 67674|0.5 67675|0.63889 67676|0.83333 67677|0.65278 67678|0.625 67679|0.5 67680|0.77778 67681|0.5 67682|0.81944 67683|0.5 67684|0.5 67685|0.83333 67686|0.5 67687|0.5 67688|0.5 67689|0.5 67690|0.5 67691|0.81944 67692|0.27778 67693|0.61111 67694|0.43056 67695|0.375 67696|0.59722 67697|0.5 67698|0.84722 67699|0.77778 67700|0.83333 67701|0.94444 67702|0.56944 67703|0.72222 67704|0.51389 67705|0.75 67706|0.45833 67707|0.20833 67708|0.34722 67709|0.625 67710|0.76389 67711|0.5 67712|0.5 67713|0.54167 67714|0.5 67715|0.65278 67716|0.44444 67717|0.5 67718|0.5 67719|0.5 67720|0.15278 67721|0.18056 67722|0.38889 67723|0.52778 67724|0.58333 67725|0.70833 67726|0.76389 67727|0.66667 67728|0.54167 67729|0.5 67730|0.77778 67731|0.93056 67732|0.94444 67733|0.75 67734|0.55556 67735|0.5 67736|0.5 67737|0.61111 67738|0.44444 67739|0.76389 67740|0.5 67741|0.69444 67742|0.63889 67743|0.70833 67744|0.43056 67745|0.5 67746|0.5 67747|0.5 67748|0.5 67749|0.47222 67750|0.69444 67751|0.91667 67752|0.52778 67753|0.625 67754|0.47222 67755|0.55556 67756|0.77778 67757|0.88889 67758|0.5 67759|0.5 67760|0.59722 67761|0.73611 67762|0.61111 67763|0.5 67764|0.5 67765|0.66667 67766|0.38889 67767|0.5 67768|0.5 67769|0.5 67770|0.51389 67771|0.5 67772|0.5 67773|0.44444 67774|0.77778 67775|0.5 67776|0.80556 67777|0.72222 67778|0.79167 67779|0.56944 67780|0.44444 67781|0.5 67782|0.5 67783|0.38889 67784|0.36111 67785|0.5 67786|0.5 67787|0.5 67788|0.5 67789|0.5 67790|0.75 67791|0.5 67792|0.61111 67793|0.52778 67794|0.55556 67795|0.5 67796|0.44444 67797|0.51389 67798|0.5 67799|0.5 67800|0.52778 67801|0.54167 67802|0.52778 67803|0.56944 67804|0.75 67805|0.5 67806|0.5 67807|0.5 67808|0.5 67809|0.51389 67810|0.5 67811|0.5 67812|0.68056 67813|0.59722 67814|0.47222 67815|0.5 67816|0.5 67817|0.55556 67818|0.48611 67819|0.875 67820|0.76389 67821|0.29167 67822|0.5 67823|0.68056 67824|0.5 67825|0.51389 67826|0.5 67827|0.5 67828|0.5 67829|0.77778 67830|0.875 67831|0.5 67832|0.59722 67833|0.5 67834|0.5 67835|0.5 67836|0.5 67837|0.38889 67838|0.23611 67839|0.23611 67840|0.75 67841|0.5 67842|0.5 67843|0.5 67844|0.5 67845|0.66667 67846|0.55556 67847|0.70833 67848|0.77778 67849|0.5 67850|0.61111 67851|0.61111 67852|0.875 67853|0.5 67854|0.55556 67855|0.19444 67856|0.16667 67857|0.26389 67858|0.44444 67859|0.375 67860|0.52778 67861|0.41667 67862|0.45833 67863|0.25 67864|0.16667 67865|0.33333 67866|0.31944 67867|0.34722 67868|0.375 67869|0.56944 67870|0.68056 67871|0.48611 67872|0.5 67873|0.5 67874|0.5 67875|0.63889 67876|0.65278 67877|0.47222 67878|0.47222 67879|0.73611 67880|0.61111 67881|0.5 67882|0.29167 67883|0.41667 67884|0.27778 67885|0.18056 67886|0.65278 67887|0.73611 67888|0.68056 67889|0.66667 67890|0.45833 67891|0.58333 67892|0.33333 67893|0.41667 67894|0.40278 67895|0.75 67896|0.72222 67897|0.5 67898|0.83333 67899|0.65278 67900|0.63889 67901|1 67902|0.81944 67903|0.38889 67904|0.27778 67905|0.375 67906|0.44444 67907|0.43056 67908|0.65278 67909|0.63889 67910|0.5 67911|0.80556 67912|0.31944 67913|0.41667 67914|0.51389 67915|0.75 67916|0.61111 67917|0.70833 67918|0.68056 67919|0.5 67920|0.44444 67921|0.61111 67922|0.63889 67923|0.80556 67924|0.5 67925|0.58333 67926|0.5 67927|0.5 67928|0.77778 67929|0.65278 67930|0.81944 67931|0.75 67932|0.63889 67933|0.55556 67934|0.41667 67935|0.63889 67936|0.5 67937|0.5 67938|0.5 67939|0.5 67940|0.5 67941|0.51389 67942|0.55556 67943|0.5 67944|0.52778 67945|0.5 67946|0.52778 67947|0.65278 67948|0.93056 67949|0.83333 67950|0.65278 67951|0.88889 67952|0.83333 67953|0.61111 67954|0.77778 67955|0.69444 67956|0.75 67957|0.68056 67958|0.29167 67959|0.63889 67960|0.83333 67961|0.625 67962|0.77778 67963|0.34722 67964|0.33333 67965|0.31944 67966|0.55556 67967|0.48611 67968|0.59722 67969|0.5 67970|0.66667 67971|0.68056 67972|0.51389 67973|0.5 67974|0.5 67975|0.68056 67976|0.36111 67977|0.68056 67978|0.5 67979|0.5 67980|0.70833 67981|0.36111 67982|0.66667 67983|0.59722 67984|0.48611 67985|0.69444 67986|0.76389 67987|0.47222 67988|0.5 67989|0.76389 67990|0.52778 67991|0.88889 67992|0.94444 67993|0.76389 67994|0.95833 67995|0.93056 67996|0.98611 67997|0.55556 67998|0.875 67999|0.83333 68000|0.84722 68001|0.94444 68002|0.93056 68003|0.83333 68004|0.98611 68005|0.79167 68006|0.86111 68007|0.95833 68008|0.81944 68009|0.88889 68010|0.76389 68011|0.97222 68012|0.95833 68013|0.83333 68014|0.81944 68015|0.94444 68016|0.72222 68017|0.625 68018|0.94444 68019|0.84722 68020|0.5 68021|0.83333 68022|0.66667 68023|0.875 68024|0.77778 68025|0.77778 68026|0.93056 68027|0.90278 68028|0.5 68029|0.55556 68030|0.72222 68031|0.51389 68032|0.5 68033|0.5 68034|0.61111 68035|0.81944 68036|0.5 68037|0.68056 68038|0.22222 68039|0.38889 68040|0.40278 68041|0.72222 68042|0.72222 68043|0.68056 68044|0.5 68045|0.72222 68046|0.65278 68047|0.77778 68048|0.93056 68049|0.5 68050|0.5 68051|0.75 68052|0.86111 68053|0.84722 68054|0.81944 68055|0.93056 68056|0.875 68057|0.55556 68058|0.34722 68059|0.58333 68060|0.70833 68061|0.54167 68062|0.5 68063|0.55556 68064|0.88889 68065|0.36111 68066|0.51389 68067|0.5 68068|0.5 68069|0.75 68070|0.88889 68071|0.83333 68072|0.72222 68073|0.44444 68074|0.47222 68075|0.5 68076|0.5 68077|0.95833 68078|0.79167 68079|0.5 68080|0.5 68081|0.5 68082|0.68056 68083|0.5 68084|0.5 68085|0.58333 68086|0.5 68087|0.86111 68088|0.80556 68089|0.77778 68090|0.68056 68091|0.70833 68092|0.51389 68093|0.5 68094|0.5 68095|0.5 68096|0.54167 68097|0.375 68098|0.5 68099|0.5 68100|0.5 68101|0.5 68102|0.52778 68103|0.5 68104|0.5 68105|0.5 68106|0.95833 68107|0.5 68108|0.5 68109|0.5 68110|0.5 68111|0.44444 68112|0.5 68113|0.63889 68114|0.55556 68115|0.66667 68116|0.75 68117|0.5 68118|0.5 68119|0.51389 68120|0.72222 68121|0.5 68122|0.77778 68123|0.43056 68124|0.5 68125|0.59722 68126|0.52778 68127|0.58333 68128|0.61111 68129|0.5 68130|0.77778 68131|0.63889 68132|0.5 68133|0.77778 68134|0.5 68135|0.5 68136|0.52778 68137|0.38889 68138|0.5 68139|0.5 68140|0.5 68141|0.51389 68142|0.56944 68143|0.73611 68144|0.5 68145|0.54167 68146|0.5 68147|0.59722 68148|0.94444 68149|0.5 68150|0.625 68151|0.72222 68152|0.83333 68153|0.73611 68154|0.76389 68155|0.81944 68156|0.84722 68157|0.52778 68158|0.51389 68159|0.5 68160|0.5 68161|0.5 68162|0.51389 68163|0.5 68164|0.73611 68165|0.55556 68166|0.48611 68167|0.55556 68168|0.48611 68169|0.5 68170|0.69444 68171|0.5 68172|0.70833 68173|0.55556 68174|0.77778 68175|0.44444 68176|0.5 68177|0.58333 68178|0.125 68179|0.125 68180|0.097222 68181|0.59722 68182|0.65278 68183|0.66667 68184|0.51389 68185|0.27778 68186|0.5 68187|0.5 68188|0.5 68189|0.5 68190|0.5 68191|0.5 68192|0.5 68193|0.5 68194|0.5 68195|0.5 68196|0.63889 68197|0.68056 68198|0.73611 68199|0.69444 68200|0.65278 68201|0.5 68202|0.52778 68203|0.5 68204|0.51389 68205|0.77778 68206|0.68056 68207|0.66667 68208|0.59722 68209|0.5 68210|0.81944 68211|0.5 68212|0.5 68213|0.5 68214|0.5 68215|0.51389 68216|0.72222 68217|0.69444 68218|0.66667 68219|0.47222 68220|0.625 68221|0.77778 68222|0.93056 68223|0.61111 68224|0.65278 68225|0.76389 68226|0.79167 68227|0.51389 68228|0.65278 68229|0.63889 68230|0.76389 68231|0.73611 68232|0.5 68233|0.83333 68234|0.58333 68235|0.61111 68236|0.5 68237|0.5 68238|0.66667 68239|0.58333 68240|0.75 68241|0.69444 68242|0.84722 68243|0.5 68244|0.45833 68245|0.5 68246|0.5 68247|0.5 68248|0.5 68249|0.625 68250|0.5 68251|0.68056 68252|0.69444 68253|0.55556 68254|0.33333 68255|0.69444 68256|0.83333 68257|0.76389 68258|0.33333 68259|0.61111 68260|0.875 68261|0.51389 68262|0.875 68263|0.69444 68264|0.5 68265|0.5 68266|0.65278 68267|0.73611 68268|0.84722 68269|0.70833 68270|0.5 68271|0.61111 68272|0.94444 68273|0.5 68274|0.80556 68275|0.81944 68276|0.91667 68277|1 68278|0.73611 68279|0.68056 68280|0.56944 68281|0.47222 68282|0.70833 68283|0.81944 68284|0.81944 68285|0.625 68286|0.88889 68287|0.76389 68288|0.88889 68289|0.5 68290|0.55556 68291|0.44444 68292|0.72222 68293|0.88889 68294|0.75 68295|0.43056 68296|0.33333 68297|0.86111 68298|0.72222 68299|0.5 68300|0.52778 68301|0.56944 68302|0.5 68303|0.51389 68304|0.80556 68305|0.5 68306|0.5 68307|0.58333 68308|0.5 68309|0.76389 68310|0.91667 68311|0.66667 68312|0.76389 68313|0.43056 68314|0.27778 68315|0.30556 68316|0.31944 68317|0.66667 68318|0.51389 68319|0.5 68320|0.5 68321|0.38889 68322|0.40278 68323|0.63889 68324|0.81944 68325|0.5 68326|0.52778 68327|0.5 68328|0.51389 68329|0.5 68330|0.5 68331|0.83333 68332|0.91667 68333|0.81944 68334|0.84722 68335|0.81944 68336|0.72222 68337|0.88889 68338|0.69444 68339|0.83333 68340|0.5 68341|0.5 68342|0.5 68343|0.5 68344|0.5 68345|0.51389 68346|0.56944 68347|0.69444 68348|0.56944 68349|0.68056 68350|0.63889 68351|0.5 68352|0.5 68353|0.59722 68354|0.38889 68355|0.625 68356|0.5 68357|0.5 68358|0.5 68359|0.5 68360|0.55556 68361|0.48611 68362|0.48611 68363|0.5 68364|0.45833 68365|0.86111 68366|0.83333 68367|0.5 68368|0.65278 68369|0.44444 68370|0.375 68371|0.66667 68372|0.73611 68373|0.625 68374|0.5 68375|0.5 68376|0.58333 68377|0.65278 68378|0.125 68379|0.30556 68380|0.625 68381|0.44444 68382|0.5 68383|0.68056 68384|0.73611 68385|0.69444 68386|0.5 68387|0.5 68388|0.43056 68389|0.11111 68390|0.51389 68391|0.38889 68392|0.63889 68393|0.66667 68394|0.5 68395|0.70833 68396|0.66667 68397|0.80556 68398|0.59722 68399|0.5 68400|0.66667 68401|0.26389 68402|0.23611 68403|0.36111 68404|0.36111 68405|0.52778 68406|0.55556 68407|0.70833 68408|0.83333 68409|0.5 68410|0.54167 68411|0.5 68412|0.5 68413|0.625 68414|0.5 68415|0.80556 68416|0.44444 68417|0.5 68418|0.625 68419|0.5 68420|0.5 68421|0.5 68422|0.5 68423|0.5 68424|0.55556 68425|0.5 68426|0.5 68427|0.5 68428|0.65278 68429|0.73611 68430|0.83333 68431|0.5 68432|0.61111 68433|0.84722 68434|0.77778 68435|0.88889 68436|0.63889 68437|0.5 68438|0.51389 68439|0.5 68440|0.79167 68441|0.61111 68442|0.55556 68443|0.5 68444|0.5 68445|0.83333 68446|0.58333 68447|0.56944 68448|0.55556 68449|0.5 68450|0.5 68451|0.5 68452|0.5 68453|0.61111 68454|0.61111 68455|0.5 68456|0.5 68457|0.5 68458|0.59722 68459|0.52778 68460|0.47222 68461|0.5 68462|0.5 68463|0.63889 68464|0.73611 68465|0.72222 68466|0.76389 68467|0.79167 68468|0.5 68469|0.88889 68470|0.5 68471|0.5 68472|0.55556 68473|0.51389 68474|0.5 68475|0.5 68476|0.77778 68477|0.59722 68478|0.68056 68479|0.51389 68480|0.5 68481|0.5 68482|0.47222 68483|0.43056 68484|0.5 68485|0.55556 68486|0.56944 68487|0.5 68488|0.80556 68489|0.68056 68490|0.5 68491|0.54167 68492|0.55556 68493|0.75 68494|0.83333 68495|0.79167 68496|0.73611 68497|0.56944 68498|0.70833 68499|0.55556 68500|0.61111 68501|0.61111 68502|0.5 68503|0.55556 68504|0.72222 68505|0.47222 68506|0.56944 68507|0.84722 68508|0.80556 68509|0.5 68510|0.5 68511|0.5 68512|0.61111 68513|0.5 68514|0.61111 68515|0.5 68516|0.5 68517|0.52778 68518|0.76389 68519|0.69444 68520|0.48611 68521|0.48611 68522|0.5 68523|0.52778 68524|0.5 68525|0.5 68526|0.5 68527|0.5 68528|0.5 68529|0.48611 68530|0.65278 68531|0.5 68532|0.5 68533|0.83333 68534|0.625 68535|0.80556 68536|0.56944 68537|0.5 68538|0.5 68539|0.86111 68540|0.5 68541|0.48611 68542|0.5 68543|0.59722 68544|0.5 68545|0.5 68546|0.58333 68547|0.5 68548|0.86111 68549|0.88889 68550|0.5 68551|0.56944 68552|0.58333 68553|0.5 68554|0.33333 68555|0.33333 68556|0.44444 68557|0.63889 68558|0.375 68559|0.27778 68560|0.38889 68561|0.51389 68562|0.75 68563|0.79167 68564|0.5 68565|0.5 68566|0.77778 68567|0.15278 68568|0.5 68569|0.5 68570|0.5 68571|0.56944 68572|0.875 68573|0.83333 68574|0.5 68575|0.5 68576|0.84722 68577|0.5 68578|0.5 68579|0.5 68580|0.59722 68581|0.5 68582|0.58333 68583|0.61111 68584|0.5 68585|0.73611 68586|0.69444 68587|0.72222 68588|0.5 68589|0.5 68590|0.58333 68591|0.47222 68592|0.26389 68593|0.27778 68594|0.25 68595|0.625 68596|0.65278 68597|0.55556 68598|0.5 68599|0.51389 68600|0.5 68601|0.61111 68602|0.5 68603|0.51389 68604|0.5 68605|0.44444 68606|0.5 68607|0.5 68608|0.79167 68609|0.55556 68610|0.5 68611|0.51389 68612|0.5 68613|0.5 68614|0.77778 68615|0.63889 68616|0.91667 68617|0.5 68618|0.5 68619|0.44444 68620|0.5 68621|0.83333 68622|0.5 68623|0.77778 68624|0.5 68625|0.5 68626|0.81944 68627|0.5 68628|0.81944 68629|0.5 68630|0.5 68631|0.44444 68632|0.83333 68633|0.58333 68634|0.73611 68635|0.69444 68636|0.59722 68637|0.58333 68638|0.77778 68639|0.77778 68640|0.69444 68641|0.76389 68642|0.75 68643|0.79167 68644|0.70833 68645|0.66667 68646|0.56944 68647|0.73611 68648|0.80556 68649|0.5 68650|0.47222 68651|0.43056 68652|0.65278 68653|0.375 68654|0.5 68655|0.83333 68656|0.48611 68657|0.56944 68658|0.63889 68659|0.5 68660|0.5 68661|0.5 68662|0.5 68663|0.45833 68664|0.43056 68665|0.5 68666|0.54167 68667|0.5 68668|0.5 68669|0.75 68670|0.81944 68671|0.72222 68672|0.72222 68673|0.80556 68674|0.76389 68675|0.55556 68676|0.5 68677|0.54167 68678|0.86111 68679|0.72222 68680|0.75 68681|0.72222 68682|0.72222 68683|0.83333 68684|0.56944 68685|0.44444 68686|0.5 68687|0.5 68688|0.61111 68689|0.72222 68690|0.58333 68691|0.44444 68692|0.69444 68693|0.5 68694|0.27778 68695|0.29167 68696|0.58333 68697|0.80556 68698|0.5 68699|0.5 68700|0.59722 68701|0.75 68702|0.73611 68703|0.61111 68704|0.88889 68705|0.63889 68706|0.66667 68707|0.86111 68708|0.90278 68709|0.5 68710|0.5 68711|0.5 68712|0.75 68713|0.5 68714|0.31944 68715|0.56944 68716|0.625 68717|0.47222 68718|0.5 68719|0.5 68720|0.61111 68721|0.5 68722|0.5 68723|0.54167 68724|0.5 68725|0.5 68726|0.45833 68727|0.58333 68728|0.875 68729|0.81944 68730|0.51389 68731|0.5 68732|0.55556 68733|0.55556 68734|0.48611 68735|0.75 68736|0.75 68737|0.65278 68738|0.33333 68739|0.47222 68740|0.55556 68741|0.625 68742|0.81944 68743|0.73611 68744|0.5 68745|0.70833 68746|0.59722 68747|0.73611 68748|0.61111 68749|0.5 68750|0.5 68751|0.68056 68752|0.5 68753|0.5 68754|0.43056 68755|0.5 68756|0.80556 68757|0.84722 68758|0.52778 68759|0.86111 68760|0.76389 68761|0.5 68762|0.5 68763|0.5 68764|0.68056 68765|0.52778 68766|0.69444 68767|0.70833 68768|0.5 68769|0.68056 68770|0.84722 68771|0.79167 68772|0.5 68773|0.58333 68774|0.5 68775|0.81944 68776|0.79167 68777|0.61111 68778|0.5 68779|0.61111 68780|0.66667 68781|0.66667 68782|0.75 68783|0.59722 68784|0.43056 68785|0.5 68786|0.90278 68787|0.33333 68788|0.5 68789|0.72222 68790|0.73611 68791|0.65278 68792|0.68056 68793|0.875 68794|0.68056 68795|0.73611 68796|0.76389 68797|0.58333 68798|0.76389 68799|0.80556 68800|0.5 68801|0.5 68802|0.51389 68803|0.5 68804|0.5 68805|0.5 68806|0.77778 68807|0.875 68808|0.51389 68809|0.5 68810|0.66667 68811|0.5 68812|0.5 68813|0.61111 68814|0.31944 68815|0.43056 68816|0.52778 68817|0.84722 68818|0.75 68819|0.47222 68820|0.38889 68821|0.70833 68822|0.375 68823|0.47222 68824|0.5 68825|0.5 68826|0.47222 68827|0.63889 68828|0.34722 68829|0.40278 68830|0.40278 68831|0.26389 68832|0.44444 68833|0.79167 68834|0.625 68835|0.79167 68836|0.83333 68837|0.76389 68838|0.69444 68839|0.69444 68840|0.81944 68841|0.80556 68842|0.81944 68843|0.65278 68844|0.55556 68845|0.5 68846|0.48611 68847|0.5 68848|0.5 68849|0.625 68850|0.18056 68851|0.29167 68852|0.375 68853|0.38889 68854|0.5 68855|0.5 68856|0.56944 68857|0.38889 68858|0.625 68859|0.61111 68860|0.73611 68861|0.69444 68862|0.81944 68863|0.5 68864|0.66667 68865|0.70833 68866|0.68056 68867|0.48611 68868|0.56944 68869|0.51389 68870|0.5 68871|0.5 68872|0.31944 68873|0.59722 68874|0.54167 68875|0.75 68876|0.56944 68877|0.5 68878|0.66667 68879|0.68056 68880|0.48611 68881|0.80556 68882|0.90278 68883|0.875 68884|0.5 68885|0.625 68886|0.58333 68887|0.51389 68888|0.65278 68889|0.61111 68890|0.54167 68891|0.44444 68892|0.44444 68893|0.44444 68894|0.54167 68895|0.68056 68896|0.69444 68897|0.68056 68898|0.83333 68899|0.38889 68900|0.23611 68901|0.69444 68902|0.58333 68903|0.77778 68904|0.5 68905|0.5 68906|0.54167 68907|0.77778 68908|0.51389 68909|0.5 68910|0.5 68911|0.625 68912|0.70833 68913|0.81944 68914|0.45833 68915|0.5 68916|0.5 68917|0.5 68918|0.66667 68919|0.86111 68920|0.79167 68921|0.73611 68922|0.875 68923|0.31944 68924|0.66667 68925|0.66667 68926|0.5 68927|0.90278 68928|1 68929|0.90278 68930|1 68931|0.91667 68932|0.94444 68933|0.90278 68934|0.5 68935|0.58333 68936|0.51389 68937|0.43056 68938|0.54167 68939|0.5 68940|0.59722 68941|0.86111 68942|0.84722 68943|0.5 68944|0.5 68945|0.52778 68946|0.54167 68947|0.76389 68948|0.80556 68949|0.5 68950|0.5 68951|0.5 68952|0.59722 68953|0.5 68954|0.52778 68955|0.70833 68956|0.83333 68957|0.66667 68958|0.5 68959|0.63889 68960|0.5 68961|0.5 68962|0.5 68963|0.5 68964|0.5 68965|0.5 68966|0.72222 68967|0.54167 68968|0.5 68969|0.5 68970|0.5 68971|0.5 68972|0.36111 68973|0.5 68974|0.5 68975|0.5 68976|0.5 68977|0.86111 68978|0.48611 68979|0.69444 68980|0.54167 68981|0.625 68982|0.5 68983|0.5 68984|0.90278 68985|0.875 68986|0.83333 68987|0.94444 68988|0.93056 68989|0.54167 68990|0.5 68991|0.51389 68992|0.56944 68993|0.75 68994|0.45833 68995|0.58333 68996|0.5 68997|0.5 68998|0.68056 68999|0.83333 69000|0.76389 69001|0.51389 69002|0.79167 69003|0.73611 69004|0.5 69005|0.75 69006|0.56944 69007|0.61111 69008|0.65278 69009|0.59722 69010|0.5 69011|0.5 69012|0.45833 69013|0.5 69014|0.5 69015|0.5 69016|0.5 69017|0.48611 69018|0.69444 69019|0.81944 69020|0.41667 69021|0.69444 69022|0.77778 69023|0.55556 69024|0.55556 69025|0.73611 69026|0.5 69027|0.375 69028|0.58333 69029|0.20833 69030|0.61111 69031|0.58333 69032|0.94444 69033|0.77778 69034|0.77778 69035|0.61111 69036|0.76389 69037|0.47222 69038|0.47222 69039|0.52778 69040|0.5 69041|0.61111 69042|0.5 69043|0.54167 69044|0.43056 69045|0.41667 69046|0.56944 69047|0.88889 69048|0.5 69049|0.5 69050|0.51389 69051|0.97222 69052|0.56944 69053|0.77778 69054|0.77778 69055|0.875 69056|0.58333 69057|0.38889 69058|0.34722 69059|0.16667 69060|0.66667 69061|0.68056 69062|0.58333 69063|0.93056 69064|0.81944 69065|0.5 69066|0.51389 69067|0.61111 69068|0.80556 69069|0.5 69070|0.55556 69071|0.5 69072|0.34722 69073|0.5 69074|0.40278 69075|0.30556 69076|0.59722 69077|0.26389 69078|0.36111 69079|0.27778 69080|0.43056 69081|0.61111 69082|0.70833 69083|0.68056 69084|0.55556 69085|0.80556 69086|0.66667 69087|0.80556 69088|0.625 69089|0.86111 69090|0.5 69091|0.5 69092|0.58333 69093|0.66667 69094|0.76389 69095|0.55556 69096|0.625 69097|0.58333 69098|0.5 69099|0.86111 69100|0.5 69101|0.5 69102|0.44444 69103|0.5 69104|0.51389 69105|0.69444 69106|0.94444 69107|0.83333 69108|0.77778 69109|0.77778 69110|0.5 69111|0.5 69112|0.5 69113|0.5 69114|0.69444 69115|0.63889 69116|0.72222 69117|0.875 69118|0.79167 69119|0.52778 69120|0.43056 69121|0.31944 69122|0.80556 69123|0.69444 69124|0.55556 69125|0.5 69126|0.83333 69127|0.73611 69128|0.5 69129|0.80556 69130|0.80556 69131|0.625 69132|0.55556 69133|0.55556 69134|0.83333 69135|0.84722 69136|0.5 69137|0.75 69138|0.70833 69139|0.77778 69140|0.61111 69141|0.77778 69142|0.77778 69143|0.73611 69144|0.77778 69145|0.66667 69146|0.69444 69147|0.5 69148|0.51389 69149|0.51389 69150|0.5 69151|0.34722 69152|0.5 69153|0.40278 69154|0.51389 69155|0.5 69156|0.5 69157|0.73611 69158|0.66667 69159|0.5 69160|0.5 69161|0.36111 69162|0.52778 69163|0.875 69164|0.73611 69165|0.91667 69166|0.83333 69167|0.79167 69168|1 69169|0.91667 69170|0.86111 69171|0.73611 69172|0.91667 69173|0.98611 69174|0.79167 69175|0.5 69176|0.52778 69177|0.5 69178|0.5 69179|0.5 69180|0.51389 69181|0.69444 69182|0.5 69183|0.5 69184|0.5 69185|0.5 69186|0.63889 69187|0.5 69188|0.72222 69189|0.84722 69190|0.5 69191|0.5 69192|0.5 69193|0.70833 69194|0.79167 69195|0.79167 69196|0.69444 69197|0.875 69198|0.81944 69199|0.27778 69200|0.51389 69201|0.5 69202|0.51389 69203|0.83333 69204|0.5 69205|0.61111 69206|0.68056 69207|0.79167 69208|0.66667 69209|0.5 69210|0.61111 69211|0.73611 69212|0.77778 69213|0.66667 69214|0.94444 69215|0.88889 69216|0.59722 69217|0.77778 69218|0.68056 69219|0.72222 69220|0.90278 69221|0.625 69222|0.73611 69223|0.94444 69224|0.94444 69225|0.38889 69226|0.375 69227|0.61111 69228|0.90278 69229|0.5 69230|0.5 69231|0.5 69232|0.34722 69233|0.36111 69234|0.33333 69235|0.5 69236|0.5 69237|0.625 69238|0.93056 69239|0.84722 69240|0.63889 69241|0.95833 69242|0.56944 69243|0.86111 69244|0.58333 69245|0.5 69246|0.5 69247|0.79167 69248|0.875 69249|0.65278 69250|0.76389 69251|0.83333 69252|0.55556 69253|0.5 69254|0.43056 69255|0.5 69256|0.77778 69257|0.86111 69258|0.48611 69259|0.72222 69260|0.66667 69261|0.68056 69262|0.70833 69263|0.77778 69264|0.5 69265|0.5 69266|0.61111 69267|0.61111 69268|0.5 69269|0.76389 69270|0.61111 69271|0.31944 69272|0.83333 69273|0.76389 69274|0.77778 69275|0.5 69276|0.48611 69277|0.77778 69278|0.5 69279|0.52778 69280|0.5 69281|0.61111 69282|0.61111 69283|0.33333 69284|0.83333 69285|0.63889 69286|0.5 69287|0.52778 69288|0.51389 69289|0.5 69290|0.61111 69291|0.5 69292|0.5 69293|0.625 69294|0.72222 69295|0.5 69296|0.75 69297|0.5 69298|0.77778 69299|0.63889 69300|0.75 69301|0.56944 69302|0.86111 69303|0.55556 69304|0.83333 69305|0.5 69306|0.5 69307|0.5 69308|0.5 69309|0.75 69310|0.51389 69311|0.5 69312|0.5 69313|0.61111 69314|0.625 69315|0.61111 69316|0.77778 69317|0.5 69318|0.76389 69319|0.27778 69320|0.47222 69321|0.38889 69322|0.83333 69323|0.79167 69324|0.63889 69325|0.44444 69326|0.51389 69327|0.5 69328|0.5 69329|0.5 69330|0.61111 69331|0.54167 69332|0.44444 69333|0.51389 69334|0.58333 69335|0.44444 69336|0.5 69337|0.5 69338|0.23611 69339|0.375 69340|0.27778 69341|0.55556 69342|0.55556 69343|0.77778 69344|0.5 69345|0.44444 69346|0.58333 69347|0.33333 69348|0.65278 69349|0.47222 69350|0.56944 69351|0.5 69352|0.70833 69353|0.41667 69354|0.68056 69355|0.625 69356|0.77778 69357|0.5 69358|0.63889 69359|0.80556 69360|0.75 69361|0.76389 69362|0.625 69363|0.59722 69364|0.63889 69365|0.5 69366|0.40278 69367|0.5 69368|0.375 69369|0.51389 69370|0.43056 69371|0.625 69372|0.83333 69373|0.72222 69374|0.5 69375|0.54167 69376|0.63889 69377|0.47222 69378|0.72222 69379|0.77778 69380|0.83333 69381|0.72222 69382|0.88889 69383|0.875 69384|0.83333 69385|0.55556 69386|0.83333 69387|0.5 69388|0.63889 69389|0.51389 69390|0.94444 69391|0.94444 69392|0.79167 69393|0.44444 69394|0.80556 69395|0.44444 69396|0.38889 69397|0.47222 69398|0.5 69399|0.61111 69400|0.73611 69401|0.83333 69402|0.63889 69403|0.93056 69404|0.91667 69405|0.70833 69406|0.66667 69407|0.72222 69408|0.52778 69409|0.51389 69410|0.38889 69411|0.40278 69412|0.55556 69413|0.45833 69414|0.76389 69415|0.5 69416|0.84722 69417|0.5 69418|0.81944 69419|0.5 69420|0.55556 69421|0.72222 69422|0.80556 69423|0.75 69424|0.56944 69425|0.72222 69426|0.90278 69427|0.88889 69428|0.83333 69429|0.86111 69430|0.72222 69431|0.59722 69432|0.63889 69433|0.70833 69434|0.81944 69435|0.81944 69436|0.68056 69437|0.75 69438|0.79167 69439|0.76389 69440|0.55556 69441|0.52778 69442|0.5 69443|0.68056 69444|0.58333 69445|0.5 69446|0.77778 69447|0.77778 69448|0.55556 69449|0.61111 69450|0.61111 69451|0.55556 69452|0.5 69453|0.61111 69454|0.72222 69455|0.5 69456|0.41667 69457|0.5 69458|0.15278 69459|0.27778 69460|0.56944 69461|0.54167 69462|0.51389 69463|0.70833 69464|0.51389 69465|0.76389 69466|0.86111 69467|0.72222 69468|0.73611 69469|0.5 69470|0.5 69471|0.5 69472|0.75 69473|0.51389 69474|0.45833 69475|0.625 69476|0.77778 69477|0.79167 69478|0.5 69479|0.65278 69480|0.66667 69481|0.69444 69482|0.81944 69483|0.875 69484|0.73611 69485|0.66667 69486|0.80556 69487|0.69444 69488|0.91667 69489|0.63889 69490|0.75 69491|0.84722 69492|0.93056 69493|0.72222 69494|0.875 69495|0.88889 69496|0.69444 69497|0.65278 69498|0.77778 69499|0.70833 69500|0.84722 69501|0.88889 69502|0.79167 69503|0.66667 69504|0.625 69505|0.65278 69506|0.73611 69507|0.43056 69508|0.41667 69509|0.54167 69510|0.43056 69511|0.875 69512|0.73611 69513|0.55556 69514|0.30556 69515|0.66667 69516|0.76389 69517|0.5 69518|0.55556 69519|0.27778 69520|0.41667 69521|0.27778 69522|0.68056 69523|0.63889 69524|0.38889 69525|0.48611 69526|0.54167 69527|0.30556 69528|0.31944 69529|0.375 69530|0.61111 69531|0.61111 69532|0.54167 69533|0.76389 69534|0.5 69535|0.66667 69536|0.5 69537|0.33333 69538|0.69444 69539|0.80556 69540|0.72222 69541|0.79167 69542|0.34722 69543|0.90278 69544|0.72222 69545|0.94444 69546|0.76389 69547|0.86111 69548|0.75 69549|0.51389 69550|0.83333 69551|0.48611 69552|0.77778 69553|0.5 69554|0.38889 69555|0.75 69556|0.84722 69557|0.875 69558|0.43056 69559|0.83333 69560|0.81944 69561|0.86111 69562|0.79167 69563|0.76389 69564|0.72222 69565|0.70833 69566|0.75 69567|0.83333 69568|0.66667 69569|0.93056 69570|0.88889 69571|0.77778 69572|0.66667 69573|0.55556 69574|0.61111 69575|0.75 69576|0.75 69577|0.83333 69578|0.83333 69579|0.73611 69580|0.73611 69581|0.63889 69582|0.77778 69583|0.69444 69584|0.20833 69585|0.25 69586|0.33333 69587|0.29167 69588|0.38889 69589|0.66667 69590|0.34722 69591|0.5 69592|0.5 69593|0.73611 69594|0.77778 69595|0.61111 69596|0.79167 69597|0.68056 69598|0.65278 69599|0.5 69600|0.73611 69601|0.75 69602|0.51389 69603|0.52778 69604|0.55556 69605|0.43056 69606|0.875 69607|0.94444 69608|0.5 69609|0.94444 69610|0.5 69611|0.43056 69612|0.55556 69613|0.86111 69614|0.81944 69615|0.81944 69616|0.80556 69617|0.65278 69618|0.625 69619|0.75 69620|0.80556 69621|0.61111 69622|0.65278 69623|0.65278 69624|0.80556 69625|0.86111 69626|0.52778 69627|0.5 69628|0.66667 69629|0.5 69630|0.61111 69631|0.61111 69632|0.5 69633|0.58333 69634|0.88889 69635|0.5 69636|0.77778 69637|0.83333 69638|0.48611 69639|0.44444 69640|0.5 69641|0.77778 69642|0.77778 69643|0.77778 69644|0.59722 69645|0.79167 69646|0.73611 69647|0.61111 69648|0.81944 69649|0.83333 69650|0.66667 69651|0.61111 69652|0.72222 69653|0.5 69654|0.63889 69655|0.5 69656|0.69444 69657|0.56944 69658|0.66667 69659|0.73611 69660|0.875 69661|0.88889 69662|0.83333 69663|0.81944 69664|0.52778 69665|0.80556 69666|0.68056 69667|0.81944 69668|0.91667 69669|0.54167 69670|0.70833 69671|0.625 69672|0.61111 69673|0.69444 69674|0.5 69675|0.77778 69676|0.48611 69677|0.5 69678|0.72222 69679|0.75 69680|0.61111 69681|0.80556 69682|0.88889 69683|0.5 69684|0.75 69685|0.56944 69686|0.70833 69687|0.72222 69688|0.26389 69689|0.5 69690|0.5 69691|0.65278 69692|0.5 69693|0.59722 69694|0.5 69695|0.58333 69696|0.51389 69697|0.5 69698|0.5 69699|0.5 69700|0.94444 69701|0.5 69702|0.5 69703|0.5 69704|0.75 69705|0.80556 69706|0.77778 69707|0.88889 69708|0.70833 69709|1 69710|0.69444 69711|0.98611 69712|0.81944 69713|0.93056 69714|0.86111 69715|0.93056 69716|0.86111 69717|0.88889 69718|0.95833 69719|0.97222 69720|0.44444 69721|0.33333 69722|0.27778 69723|0.63889 69724|0.79167 69725|0.75 69726|0.51389 69727|0.76389 69728|0.77778 69729|0.68056 69730|0.76389 69731|0.77778 69732|0.19444 69733|0.33333 69734|0.33333 69735|0.58333 69736|0.51389 69737|0.76389 69738|0.88889 69739|0.30556 69740|0.20833 69741|0.375 69742|0.51389 69743|0.63889 69744|0.90278 69745|0.80556 69746|0.88889 69747|0.33333 69748|0.55556 69749|0.81944 69750|0.79167 69751|0.75 69752|0.75 69753|0.61111 69754|0.86111 69755|0.76389 69756|0.75 69757|0.79167 69758|0.77778 69759|0.59722 69760|0.59722 69761|0.66667 69762|0.33333 69763|0.27778 69764|0.55556 69765|0.66667 69766|0.55556 69767|0.625 69768|0.72222 69769|0.70833 69770|0.61111 69771|0.80556 69772|0.79167 69773|0.31944 69774|0.69444 69775|0.61111 69776|0.5 69777|0.75 69778|0.61111 69779|0.68056 69780|0.56944 69781|0.51389 69782|0.81944 69783|0.72222 69784|0.59722 69785|0.76389 69786|0.59722 69787|0.76389 69788|0.63889 69789|0.90278 69790|0.81944 69791|0.54167 69792|0.63889 69793|0.58333 69794|0.56944 69795|0.72222 69796|0.76389 69797|0.73611 69798|0.65278 69799|0.66667 69800|0.69444 69801|0.5 69802|0.80556 69803|0.5 69804|0.83333 69805|0.47222 69806|0.5 69807|0.76389 69808|0.5 69809|0.61111 69810|0.76389 69811|0.63889 69812|0.5 69813|0.54167 69814|0.38889 69815|0.54167 69816|0.72222 69817|0.5 69818|0.90278 69819|0.90278 69820|0.5 69821|0.34722 69822|0.44444 69823|0.70833 69824|0.91667 69825|0.72222 69826|0.52778 69827|0.875 69828|0.79167 69829|0.5 69830|0.58333 69831|0.40278 69832|0.29167 69833|0.52778 69834|0.77778 69835|0.66667 69836|0.55556 69837|0.625 69838|0.5 69839|0.61111 69840|0.55556 69841|0.52778 69842|0.61111 69843|0.68056 69844|0.80556 69845|0.83333 69846|0.66667 69847|0.63889 69848|0.5 69849|0.51389 69850|0.66667 69851|0.5 69852|0.98611 69853|0.66667 69854|0.77778 69855|0.65278 69856|0.66667 69857|0.73611 69858|0.68056 69859|0.84722 69860|0.5 69861|0.5 69862|0.625 69863|0.72222 69864|0.66667 69865|0.51389 69866|0.66667 69867|0.79167 69868|0.5 69869|0.54167 69870|0.76389 69871|0.73611 69872|0.75 69873|0.72222 69874|0.76389 69875|0.98611 69876|0.88889 69877|0.5 69878|0.63889 69879|0.56944 69880|0.45833 69881|0.70833 69882|0.52778 69883|0.23611 69884|0.48611 69885|0.5 69886|0.5 69887|0.70833 69888|0.79167 69889|0.83333 69890|0.86111 69891|0.72222 69892|0.69444 69893|0.5 69894|0.45833 69895|0.88889 69896|0.55556 69897|0.22222 69898|0.43056 69899|0.40278 69900|0.68056 69901|0.63889 69902|0.5 69903|0.59722 69904|0.625 69905|0.76389 69906|0.5 69907|0.55556 69908|0.77778 69909|0.55556 69910|0.51389 69911|0.5 69912|0.44444 69913|0.69444 69914|0.61111 69915|0.5 69916|0.55556 69917|0.52778 69918|0.76389 69919|0.65278 69920|0.625 69921|0.59722 69922|0.68056 69923|0.76389 69924|0.5 69925|0.625 69926|0.77778 69927|0.81944 69928|0.90278 69929|0.75 69930|0.77778 69931|0.5 69932|0.54167 69933|0.5 69934|0.83333 69935|0.36111 69936|0.61111 69937|0.66667 69938|0.38889 69939|0.41667 69940|0.58333 69941|0.48611 69942|0.75 69943|0.73611 69944|0.5 69945|0.40278 69946|0.44444 69947|0.52778 69948|0.81944 69949|0.61111 69950|0.83333 69951|0.5 69952|0.90278 69953|0.93056 69954|0.80556 69955|0.81944 69956|1 69957|0.55556 69958|0.40278 69959|0.48611 69960|0.48611 69961|0.59722 69962|0.66667 69963|0.52778 69964|0.51389 69965|0.45833 69966|0.54167 69967|0.54167 69968|0.48611 69969|0.48611 69970|0.55556 69971|0.625 69972|0.5 69973|0.52778 69974|0.45833 69975|0.625 69976|0.79167 69977|0.70833 69978|0.44444 69979|0.61111 69980|0.56944 69981|0.59722 69982|0.72222 69983|0.79167 69984|0.79167 69985|0.77778 69986|0.66667 69987|0.5 69988|0.70833 69989|0.83333 69990|0.77778 69991|0.75 69992|0.83333 69993|0.70833 69994|0.5 69995|0.55556 69996|0.43056 69997|0.18056 69998|0.59722 69999|0.58333 70000|0.58333 70001|0.51389 70002|0.5 70003|0.79167 70004|0.5 70005|0.65278 70006|0.5 70007|0.5 70008|0.83333 70009|0.83333 70010|0.83333 70011|0.63889 70012|0.52778 70013|0.98611 70014|0.5 70015|0.73611 70016|0.625 70017|0.70833 70018|0.77778 70019|0.86111 70020|0.36111 70021|0.52778 70022|0.61111 70023|0.76389 70024|0.5 70025|0.76389 70026|0.80556 70027|0.63889 70028|0.68056 70029|0.59722 70030|0.5 70031|0.77778 70032|0.86111 70033|0.51389 70034|0.625 70035|0.72222 70036|0.75 70037|0.66667 70038|0.5 70039|0.84722 70040|0.75 70041|0.83333 70042|0.875 70043|0.5 70044|0.90278 70045|0.94444 70046|0.80556 70047|0.69444 70048|0.83333 70049|0.83333 70050|0.56944 70051|0.54167 70052|0.58333 70053|0.43056 70054|0.98611 70055|0.81944 70056|0.5 70057|0.5 70058|0.5 70059|0.5 70060|0.54167 70061|0.5 70062|0.5 70063|0.72222 70064|0.5 70065|0.375 70066|0.25 70067|0.72222 70068|0.73611 70069|0.63889 70070|0.5 70071|0.54167 70072|0.58333 70073|0.51389 70074|0.36111 70075|0.36111 70076|0.61111 70077|0.77778 70078|0.84722 70079|0.79167 70080|0.44444 70081|0.44444 70082|0.44444 70083|0.80556 70084|0.84722 70085|0.26389 70086|0.44444 70087|0.45833 70088|0.47222 70089|0.41667 70090|0.69444 70091|0.625 70092|0.61111 70093|0.59722 70094|0.81944 70095|0.79167 70096|0.80556 70097|0.86111 70098|0.55556 70099|0.22222 70100|0.19444 70101|0.30556 70102|0.38889 70103|0.52778 70104|0.79167 70105|0.56944 70106|0.69444 70107|0.69444 70108|0.68056 70109|0.76389 70110|0.73611 70111|0.83333 70112|0.83333 70113|0.84722 70114|0.875 70115|0.69444 70116|0.77778 70117|0.33333 70118|0.38889 70119|0.375 70120|0.65278 70121|0.54167 70122|0.80556 70123|0.72222 70124|0.94444 70125|0.73611 70126|0.58333 70127|0.73611 70128|0.77778 70129|0.30556 70130|0.36111 70131|0.38889 70132|0.54167 70133|0.58333 70134|0.76389 70135|0.69444 70136|0.75 70137|0.79167 70138|0.80556 70139|0.84722 70140|0.65278 70141|0.61111 70142|0.77778 70143|0.22222 70144|0.63889 70145|0.44444 70146|0.65278 70147|0.65278 70148|0.81944 70149|0.51389 70150|0.81944 70151|0.69444 70152|0.66667 70153|0.80556 70154|0.76389 70155|0.38889 70156|0.5 70157|0.83333 70158|0.5 70159|0.41667 70160|0.52778 70161|0.52778 70162|0.70833 70163|0.33333 70164|0.81944 70165|0.54167 70166|0.5 70167|0.73611 70168|0.88889 70169|0.5 70170|0.5 70171|0.76389 70172|0.51389 70173|0.75 70174|0.59722 70175|0.58333 70176|0.83333 70177|0.72222 70178|0.86111 70179|0.625 70180|0.79167 70181|0.55556 70182|0.44444 70183|0.44444 70184|0.55556 70185|0.63889 70186|0.61111 70187|0.80556 70188|0.61111 70189|0.55556 70190|0.80556 70191|0.91667 70192|0.81944 70193|0.66667 70194|0.65278 70195|0.77778 70196|0.86111 70197|0.5 70198|0.5 70199|0.65278 70200|0.44444 70201|0.55556 70202|0.69444 70203|0.75 70204|0.63889 70205|1 70206|0.68056 70207|0.72222 70208|0.70833 70209|0.61111 70210|0.70833 70211|0.88889 70212|0.58333 70213|0.76389 70214|0.76389 70215|0.75 70216|0.80556 70217|0.76389 70218|0.95833 70219|0.88889 70220|0.80556 70221|0.91667 70222|0.875 70223|0.77778 70224|0.77778 70225|0.90278 70226|0.79167 70227|0.80556 70228|0.80556 70229|0.86111 70230|0.81944 70231|0.72222 70232|0.31944 70233|0.38889 70234|0.52778 70235|0.77778 70236|0.68056 70237|0.83333 70238|0.52778 70239|0.56944 70240|0.45833 70241|0.41667 70242|0.77778 70243|0.84722 70244|0.40278 70245|0.27778 70246|0.31944 70247|0.77778 70248|0.65278 70249|0.25 70250|0.45833 70251|0.34722 70252|0.54167 70253|0.51389 70254|0.38889 70255|0.43056 70256|0.61111 70257|0.41667 70258|0.84722 70259|0.73611 70260|0.90278 70261|0.91667 70262|0.79167 70263|0.77778 70264|0.65278 70265|0.75 70266|0.79167 70267|0.79167 70268|0.75 70269|0.84722 70270|0.52778 70271|0.61111 70272|0.58333 70273|0.65278 70274|0.51389 70275|0.65278 70276|0.52778 70277|0.66667 70278|0.58333 70279|0.52778 70280|0.44444 70281|0.75 70282|0.5 70283|0.625 70284|0.79167 70285|0.55556 70286|0.5 70287|0.625 70288|0.44444 70289|0.38889 70290|0.38889 70291|0.44444 70292|0.65278 70293|0.68056 70294|0.69444 70295|0.72222 70296|0.76389 70297|0.58333 70298|0.80556 70299|0.81944 70300|0.5 70301|0.69444 70302|0.56944 70303|0.5 70304|0.27778 70305|0.43056 70306|0.375 70307|0.66667 70308|0.75 70309|0.70833 70310|0.77778 70311|0.52778 70312|0.38889 70313|0.77778 70314|0.5 70315|0.44444 70316|0.86111 70317|0.88889 70318|0.38889 70319|0.44444 70320|0.75 70321|0.72222 70322|0.56944 70323|0.58333 70324|0.38889 70325|0.19444 70326|0.34722 70327|0.34722 70328|0.72222 70329|0.77778 70330|0.5 70331|0.5 70332|0.40278 70333|0.375 70334|0.33333 70335|0.65278 70336|0.625 70337|0.59722 70338|0.19444 70339|0.59722 70340|0.72222 70341|0.38889 70342|0.68056 70343|0.44444 70344|0.54167 70345|0.34722 70346|0.65278 70347|0.30556 70348|0.70833 70349|0.40278 70350|0.61111 70351|0.55556 70352|0.30556 70353|0.5 70354|0.79167 70355|0.63889 70356|0.41667 70357|0.61111 70358|0.34722 70359|0.66667 70360|0.66667 70361|0.66667 70362|0.77778 70363|0.36111 70364|0.73611 70365|0.30556 70366|0.55556 70367|0.22222 70368|0.69444 70369|0.43056 70370|0.52778 70371|0.25 70372|0.69444 70373|0.41667 70374|0.69444 70375|0.65278 70376|0.69444 70377|0.88889 70378|0.66667 70379|0.51389 70380|0.5 70381|0.59722 70382|0.70833 70383|0.375 70384|0.23611 70385|0.5 70386|0.56944 70387|0.51389 70388|0.70833 70389|0.80556 70390|0.76389 70391|0.86111 70392|0.95833 70393|0.55556 70394|0.73611 70395|0.83333 70396|0.90278 70397|0.69444 70398|0.5 70399|0.44444 70400|0.51389 70401|0.29167 70402|0.5 70403|0.80556 70404|0.68056 70405|0.5 70406|0.72222 70407|0.54167 70408|0.79167 70409|0.73611 70410|0.625 70411|0.75 70412|0.56944 70413|0.5 70414|0.51389 70415|0.5 70416|0.55556 70417|0.5 70418|0.51389 70419|0.16667 70420|0.20833 70421|0.36111 70422|0.5 70423|0.63889 70424|0.5 70425|0.5 70426|0.30556 70427|0.52778 70428|0.51389 70429|0.66667 70430|0.83333 70431|0.5 70432|0.63889 70433|0.47222 70434|0.5 70435|0.5 70436|0.5 70437|0.51389 70438|0.33333 70439|0.5 70440|0.25 70441|0.5 70442|0.55556 70443|0.5 70444|0.625 70445|0.88889 70446|0.84722 70447|0.91667 70448|0.88889 70449|0.5 70450|0.59722 70451|0.73611 70452|0.77778 70453|0.76389 70454|0.31944 70455|0.33333 70456|0.55556 70457|0.47222 70458|0.72222 70459|0.5 70460|0.5 70461|0.59722 70462|0.58333 70463|0.5 70464|0.5 70465|0.51389 70466|0.69444 70467|0.48611 70468|0.5 70469|0.52778 70470|0.5 70471|0.66667 70472|0.52778 70473|0.5 70474|0.52778 70475|0.66667 70476|0.72222 70477|0.56944 70478|0.27778 70479|0.23611 70480|0.43056 70481|0.59722 70482|0.47222 70483|0.33333 70484|0.73611 70485|0.77778 70486|0.56944 70487|0.5 70488|0.61111 70489|0.5 70490|0.63889 70491|0.5 70492|0.43056 70493|0.45833 70494|0.61111 70495|0.5 70496|0.45833 70497|0.55556 70498|0.5 70499|0.5 70500|0.88889 70501|0.5 70502|0.5 70503|0.5 70504|0.5 70505|0.5 70506|0.54167 70507|0.5 70508|0.81944 70509|0.5 70510|0.51389 70511|0.5 70512|0.88889 70513|0.5 70514|0.55556 70515|0.54167 70516|0.5 70517|0.80556 70518|0.5 70519|0.75 70520|0.5 70521|0.5 70522|0.56944 70523|0.56944 70524|0.5 70525|0.5 70526|0.5 70527|0.44444 70528|0.47222 70529|0.68056 70530|0.38889 70531|0.5 70532|0.48611 70533|0.5 70534|0.5 70535|0.5 70536|0.5 70537|0.5 70538|0.63889 70539|0.63889 70540|0.88889 70541|0.83333 70542|0.66667 70543|0.625 70544|0.5 70545|0.38889 70546|0.47222 70547|0.68056 70548|0.625 70549|0.44444 70550|0.76389 70551|0.68056 70552|0.54167 70553|0.47222 70554|0.61111 70555|0.45833 70556|0.69444 70557|0.95833 70558|0.5 70559|0.625 70560|0.81944 70561|0.36111 70562|0.72222 70563|0.77778 70564|0.75 70565|0.58333 70566|0.65278 70567|0.73611 70568|0.38889 70569|0.86111 70570|0.36111 70571|0.52778 70572|0.65278 70573|0.77778 70574|0.54167 70575|0.76389 70576|0.55556 70577|0.91667 70578|0.5 70579|0.5 70580|0.31944 70581|0.61111 70582|0.5 70583|0.33333 70584|0.5 70585|0.5 70586|0.5 70587|0.68056 70588|0.76389 70589|0.51389 70590|0.5 70591|0.5 70592|0.5 70593|0.5 70594|0.5 70595|0.41667 70596|0.55556 70597|0.51389 70598|0.5 70599|0.5 70600|0.5 70601|0.5 70602|0.66667 70603|0.5 70604|0.51389 70605|0.51389 70606|0.5 70607|0.83333 70608|0.79167 70609|0.5 70610|0.47222 70611|0.5 70612|0.81944 70613|0.875 70614|0.83333 70615|0.875 70616|1 70617|0.66667 70618|0.83333 70619|0.69444 70620|0.83333 70621|0.875 70622|0.52778 70623|0.5 70624|0.91667 70625|0.38889 70626|0.5 70627|0.5 70628|0.84722 70629|0.5 70630|0.5 70631|0.73611 70632|0.5 70633|0.56944 70634|0.65278 70635|0.51389 70636|0.59722 70637|0.77778 70638|0.80556 70639|0.61111 70640|0.75 70641|0.73611 70642|0.75 70643|0.76389 70644|0.55556 70645|0.94444 70646|0.58333 70647|0.83333 70648|0.5 70649|0.5 70650|0.38889 70651|0.55556 70652|0.65278 70653|0.63889 70654|0.43056 70655|0.5 70656|0.5 70657|0.51389 70658|0.5 70659|0.59722 70660|0.41667 70661|0.5 70662|0.5 70663|0.61111 70664|0.61111 70665|0.5 70666|0.59722 70667|0.76389 70668|0.5 70669|0.5 70670|0.5 70671|0.86111 70672|0.51389 70673|0.5 70674|0.5 70675|0.56944 70676|0.38889 70677|0.52778 70678|0.38889 70679|0.76389 70680|0.72222 70681|0.72222 70682|0.5 70683|0.5 70684|0.41667 70685|0.56944 70686|0.47222 70687|0.5 70688|0.45833 70689|0.875 70690|0.86111 70691|0.81944 70692|0.5 70693|0.69444 70694|0.68056 70695|0.73611 70696|0.79167 70697|0.5 70698|0.61111 70699|0.77778 70700|0.76389 70701|0.52778 70702|0.40278 70703|0.5 70704|0.5 70705|0.51389 70706|0.5 70707|0.5 70708|0.5 70709|0.5 70710|0.63889 70711|0.33333 70712|0.29167 70713|0.54167 70714|0.73611 70715|0.77778 70716|0.61111 70717|0.81944 70718|0.31944 70719|0.51389 70720|0.51389 70721|0.55556 70722|0.5 70723|0.83333 70724|0.79167 70725|0.5 70726|0.5 70727|0.43056 70728|0.40278 70729|0.38889 70730|0.31944 70731|0.41667 70732|0.375 70733|0.68056 70734|0.43056 70735|0.5 70736|0.45833 70737|0.5 70738|0.45833 70739|0.31944 70740|0.38889 70741|0.27778 70742|0.54167 70743|0.5 70744|0.625 70745|0.79167 70746|0.81944 70747|0.79167 70748|0.80556 70749|0.77778 70750|0.76389 70751|0.5 70752|0.5 70753|0.5 70754|0.5 70755|0.5 70756|0.5 70757|0.55556 70758|0.5 70759|0.5 70760|0.86111 70761|0.5 70762|0.56944 70763|0.52778 70764|0.875 70765|0.75 70766|0.5 70767|0.5 70768|0.75 70769|0.5 70770|0.5 70771|0.5 70772|0.5 70773|0.5 70774|0.51389 70775|0.51389 70776|0.5 70777|0.5 70778|0.5 70779|0.5 70780|0.5 70781|0.41667 70782|0.27778 70783|0.48611 70784|0.25 70785|0.75 70786|0.56944 70787|0.5 70788|0.66667 70789|0.79167 70790|0.59722 70791|0.75 70792|0.73611 70793|0.77778 70794|0.76389 70795|0.48611 70796|0.55556 70797|0.51389 70798|0.84722 70799|0.69444 70800|0.72222 70801|0.76389 70802|0.55556 70803|0.84722 70804|0.94444 70805|0.83333 70806|0.66667 70807|0.875 70808|0.875 70809|0.81944 70810|0.90278 70811|0.625 70812|0.69444 70813|0.83333 70814|0.72222 70815|0.76389 70816|0.52778 70817|0.40278 70818|0.65278 70819|0.66667 70820|0.77778 70821|0.58333 70822|0.875 70823|0.625 70824|0.72222 70825|0.72222 70826|0.75 70827|0.83333 70828|0.79167 70829|0.72222 70830|0.86111 70831|0.55556 70832|0.66667 70833|1 70834|0.61111 70835|0.69444 70836|0.33333 70837|0.72222 70838|0.38889 70839|0.72222 70840|0.55556 70841|0.88889 70842|0.52778 70843|0.93056 70844|0.66667 70845|0.88889 70846|0.5 70847|0.68056 70848|0.54167 70849|0.31944 70850|0.40278 70851|0.38889 70852|0.72222 70853|0.77778 70854|0.69444 70855|0.5 70856|0.56944 70857|0.36111 70858|0.72222 70859|0.51389 70860|0.61111 70861|0.51389 70862|0.5 70863|0.69444 70864|0.76389 70865|0.61111 70866|0.52778 70867|0.68056 70868|0.72222 70869|0.61111 70870|0.61111 70871|0.34722 70872|0.65278 70873|0.44444 70874|0.65278 70875|0.625 70876|0.81944 70877|0.63889 70878|0.59722 70879|0.41667 70880|0.86111 70881|0.44444 70882|0.625 70883|0.5 70884|0.84722 70885|0.55556 70886|0.77778 70887|0.43056 70888|0.68056 70889|0.45833 70890|0.79167 70891|0.40278 70892|0.22222 70893|0.47222 70894|0.58333 70895|0.5 70896|0.75 70897|0.44444 70898|0.55556 70899|0.43056 70900|0.65278 70901|0.66667 70902|0.84722 70903|0.80556 70904|0.72222 70905|0.625 70906|0.72222 70907|0.59722 70908|0.61111 70909|0.43056 70910|0.75 70911|0.40278 70912|0.63889 70913|0.375 70914|0.66667 70915|0.52778 70916|0.625 70917|0.72222 70918|0.44444 70919|0.45833 70920|0.43056 70921|0.30556 70922|0.66667 70923|0.5 70924|0.59722 70925|0.68056 70926|0.55556 70927|0.22222 70928|0.43056 70929|0.125 70930|0.51389 70931|0.625 70932|0.61111 70933|0.43056 70934|0.26389 70935|0.5 70936|0.58333 70937|0.77778 70938|0.44444 70939|0.56944 70940|0.65278 70941|0.80556 70942|0.76389 70943|0.81944 70944|0.79167 70945|0.90278 70946|0.875 70947|0.97222 70948|0.70833 70949|0.55556 70950|0.5 70951|0.5 70952|0.5 70953|0.55556 70954|0.59722 70955|0.5 70956|0.5 70957|0.65278 70958|0.73611 70959|0.79167 70960|0.5 70961|0.5 70962|0.72222 70963|0.625 70964|0.68056 70965|0.70833 70966|0.65278 70967|0.52778 70968|0.47222 70969|0.5 70970|0.5 70971|0.5 70972|0.65278 70973|0.72222 70974|0.81944 70975|0.52778 70976|0.43056 70977|0.5 70978|0.80556 70979|0.5 70980|0.83333 70981|0.5 70982|0.68056 70983|0.5 70984|0.81944 70985|0.51389 70986|0.41667 70987|0.55556 70988|0.76389 70989|0.75 70990|0.73611 70991|0.72222 70992|0.66667 70993|0.72222 70994|0.90278 70995|0.34722 70996|0.59722 70997|0.83333 70998|0.75 70999|0.61111 71000|0.86111 71001|0.52778 71002|0.41667 71003|0.30556 71004|0.375 71005|0.31944 71006|0.66667 71007|0.33333 71008|0.66667 71009|0.52778 71010|0.58333 71011|0.5 71012|0.43056 71013|0.51389 71014|0.79167 71015|0.80556 71016|0.5 71017|0.68056 71018|0.55556 71019|0.52778 71020|0.63889 71021|0.58333 71022|0.5 71023|0.65278 71024|0.625 71025|0.72222 71026|0.68056 71027|0.83333 71028|0.81944 71029|0.69444 71030|0.61111 71031|0.75 71032|0.83333 71033|0.5 71034|0.5 71035|0.5 71036|0.59722 71037|0.5 71038|0.55556 71039|0.68056 71040|0.77778 71041|0.75 71042|0.61111 71043|0.80556 71044|0.77778 71045|0.79167 71046|0.73611 71047|0.5 71048|0.58333 71049|0.54167 71050|0.5 71051|0.61111 71052|0.72222 71053|0.76389 71054|0.5 71055|0.5 71056|0.5 71057|0.5 71058|0.5 71059|0.5 71060|0.69444 71061|0.80556 71062|0.375 71063|0.5 71064|0.61111 71065|0.72222 71066|0.63889 71067|0.75 71068|0.73611 71069|0.76389 71070|0.73611 71071|0.73611 71072|0.5 71073|0.56944 71074|0.77778 71075|0.77778 71076|0.625 71077|0.69444 71078|0.83333 71079|0.5 71080|0.80556 71081|0.51389 71082|0.76389 71083|0.51389 71084|0.56944 71085|0.59722 71086|0.61111 71087|0.47222 71088|0.38889 71089|0.69444 71090|0.91667 71091|0.66667 71092|0.56944 71093|0.5 71094|0.5 71095|0.5 71096|0.90278 71097|0.5 71098|0.63889 71099|0.81944 71100|0.51389 71101|0.56944 71102|0.5 71103|0.5 71104|0.76389 71105|0.5 71106|0.625 71107|0.5 71108|0.5 71109|0.5 71110|0.5 71111|0.5 71112|0.5 71113|0.5 71114|0.68056 71115|0.79167 71116|0.58333 71117|0.61111 71118|0.55556 71119|0.65278 71120|0.41667 71121|0.66667 71122|0.88889 71123|0.58333 71124|0.75 71125|0.77778 71126|0.83333 71127|0.83333 71128|0.5 71129|0.54167 71130|0.44444 71131|0.83333 71132|0.27778 71133|0.55556 71134|0.44444 71135|0.75 71136|0.73611 71137|0.56944 71138|0.83333 71139|0.76389 71140|0.29167 71141|0.5 71142|0.52778 71143|0.29167 71144|0.81944 71145|0.43056 71146|0.56944 71147|0.66667 71148|0.69444 71149|0.30556 71150|0.52778 71151|0.86111 71152|0.40278 71153|0.79167 71154|0.58333 71155|0.66667 71156|0.375 71157|0.38889 71158|0.44444 71159|0.69444 71160|0.73611 71161|0.5 71162|0.5 71163|0.73611 71164|0.61111 71165|0.84722 71166|0.5 71167|0.47222 71168|0.5 71169|0.45833 71170|0.5 71171|0.51389 71172|0.5 71173|0.51389 71174|0.5 71175|0.44444 71176|0.5 71177|0.47222 71178|0.5 71179|0.5 71180|0.5 71181|0.52778 71182|0.56944 71183|0.5 71184|0.5 71185|0.5 71186|0.5 71187|0.51389 71188|0.81944 71189|0.34722 71190|0.80556 71191|0.5 71192|0.73611 71193|0.5 71194|0.5 71195|0.48611 71196|0.55556 71197|0.59722 71198|0.51389 71199|0.55556 71200|0.5 71201|0.34722 71202|0.61111 71203|0.5 71204|0.61111 71205|0.5 71206|0.86111 71207|0.55556 71208|0.66667 71209|0.5 71210|0.51389 71211|0.73611 71212|0.47222 71213|0.61111 71214|0.56944 71215|0.52778 71216|0.5 71217|0.43056 71218|0.5 71219|0.58333 71220|0.5 71221|0.63889 71222|0.5 71223|0.5 71224|0.43056 71225|0.5 71226|0.5 71227|0.61111 71228|0.44444 71229|0.5 71230|0.59722 71231|0.68056 71232|0.5 71233|0.63889 71234|0.5 71235|0.69444 71236|0.47222 71237|0.5 71238|0.625 71239|0.5 71240|0.51389 71241|0.5 71242|0.5 71243|0.5 71244|0.34722 71245|0.48611 71246|0.5 71247|0.5 71248|0.5 71249|0.55556 71250|0.5 71251|0.56944 71252|0.5 71253|0.5 71254|0.5 71255|0.61111 71256|0.51389 71257|0.5 71258|0.58333 71259|0.5 71260|0.61111 71261|0.55556 71262|0.52778 71263|0.81944 71264|0.52778 71265|0.55556 71266|0.55556 71267|0.48611 71268|0.5 71269|0.51389 71270|0.44444 71271|0.33333 71272|0.44444 71273|0.33333 71274|0.5 71275|0.83333 71276|0.94444 71277|0.83333 71278|0.86111 71279|0.86111 71280|0.80556 71281|0.84722 71282|0.88889 71283|0.70833 71284|0.77778 71285|0.55556 71286|0.66667 71287|0.86111 71288|0.65278 71289|0.66667 71290|0.66667 71291|0.5 71292|0.5 71293|0.56944 71294|0.5 71295|0.5 71296|0.51389 71297|0.65278 71298|0.54167 71299|0.5 71300|0.59722 71301|0.20833 71302|0.43056 71303|0.41667 71304|0.29167 71305|0.22222 71306|0.22222 71307|0.70833 71308|0.68056 71309|0.79167 71310|0.375 71311|0.31944 71312|0.30556 71313|0.77778 71314|0.58333 71315|0.36111 71316|0.51389 71317|0.79167 71318|0.68056 71319|0.33333 71320|0.55556 71321|0.81944 71322|0.5 71323|0.66667 71324|0.66667 71325|0.73611 71326|0.93056 71327|0.86111 71328|0.59722 71329|0.5 71330|0.43056 71331|0.65278 71332|0.45833 71333|0.44444 71334|0.5 71335|0.33333 71336|0.55556 71337|0.72222 71338|0.70833 71339|0.69444 71340|0.45833 71341|0.5 71342|0.48611 71343|0.79167 71344|0.77778 71345|0.77778 71346|0.5 71347|0.81944 71348|0.81944 71349|0.68056 71350|0.80556 71351|0.76389 71352|0.61111 71353|0.84722 71354|0.5 71355|0.70833 71356|0.69444 71357|0.5 71358|0.41667 71359|0.72222 71360|0.61111 71361|0.55556 71362|0.77778 71363|0.84722 71364|0.81944 71365|0.5 71366|0.22222 71367|0.48611 71368|0.66667 71369|0.77778 71370|0.5 71371|0.63889 71372|0.51389 71373|0.69444 71374|0.58333 71375|0.66667 71376|0.58333 71377|0.84722 71378|0.72222 71379|0.66667 71380|0.79167 71381|0.33333 71382|0.44444 71383|0.375 71384|0.27778 71385|0.47222 71386|0.43056 71387|0.33333 71388|0.19444 71389|0.44444 71390|0.72222 71391|0.5 71392|0.5 71393|0.68056 71394|0.55556 71395|0.63889 71396|0.5 71397|0.79167 71398|0.625 71399|0.91667 71400|0.72222 71401|0.66667 71402|0.72222 71403|0.70833 71404|0.63889 71405|0.65278 71406|0.73611 71407|0.81944 71408|0.625 71409|0.73611 71410|0.69444 71411|0.61111 71412|0.77778 71413|0.81944 71414|0.72222 71415|0.80556 71416|0.5 71417|0.5 71418|0.44444 71419|0.38889 71420|0.5 71421|0.58333 71422|0.90278 71423|0.5 71424|0.59722 71425|0.29167 71426|0.48611 71427|0.83333 71428|0.5 71429|0.81944 71430|0.875 71431|0.61111 71432|0.5 71433|0.77778 71434|0.56944 71435|0.69444 71436|0.56944 71437|0.83333 71438|0.77778 71439|0.79167 71440|0.77778 71441|0.18056 71442|0.27778 71443|0.43056 71444|0.26389 71445|0.5 71446|0.54167 71447|0.58333 71448|0.56944 71449|0.40278 71450|0.52778 71451|0.44444 71452|0.59722 71453|0.52778 71454|0.66667 71455|0.58333 71456|0.55556 71457|0.56944 71458|0.51389 71459|0.5 71460|0.70833 71461|0.73611 71462|0.80556 71463|0.61111 71464|0.69444 71465|0.66667 71466|0.68056 71467|0.69444 71468|0.77778 71469|0.5 71470|0.5 71471|0.65278 71472|0.55556 71473|0.38889 71474|0.5 71475|0.88889 71476|0.51389 71477|0.69444 71478|0.51389 71479|0.66667 71480|0.83333 71481|0.66667 71482|0.54167 71483|0.5 71484|0.68056 71485|0.81944 71486|0.30556 71487|0.45833 71488|0.77778 71489|0.63889 71490|0.77778 71491|0.66667 71492|0.5 71493|0.48611 71494|0.5 71495|0.44444 71496|0.38889 71497|0.44444 71498|0.44444 71499|0.56944 71500|0.61111 71501|0.83333 71502|0.41667 71503|0.47222 71504|0.5 71505|0.38889 71506|0.55556 71507|0.58333 71508|0.58333 71509|0.5 71510|0.73611 71511|0.44444 71512|0.34722 71513|0.5 71514|0.65278 71515|0.65278 71516|0.65278 71517|0.66667 71518|0.68056 71519|0.80556 71520|0.52778 71521|0.55556 71522|0.75 71523|0.70833 71524|0.66667 71525|0.58333 71526|0.80556 71527|0.5 71528|0.79167 71529|0.41667 71530|0.65278 71531|0.66667 71532|0.77778 71533|0.77778 71534|0.73611 71535|0.86111 71536|0.81944 71537|0.75 71538|0.77778 71539|0.77778 71540|0.81944 71541|0.84722 71542|0.76389 71543|0.83333 71544|0.66667 71545|0.76389 71546|0.75 71547|0.875 71548|0.5 71549|0.45833 71550|0.58333 71551|0.76389 71552|0.88889 71553|0.51389 71554|0.68056 71555|0.59722 71556|0.68056 71557|0.58333 71558|0.73611 71559|0.54167 71560|0.45833 71561|0.51389 71562|0.43056 71563|0.75 71564|0.55556 71565|0.47222 71566|0.625 71567|0.51389 71568|0.70833 71569|0.51389 71570|0.77778 71571|0.68056 71572|0.5 71573|0.61111 71574|0.45833 71575|0.44444 71576|0.5 71577|0.51389 71578|0.5 71579|0.59722 71580|0.44444 71581|0.30556 71582|0.27778 71583|0.38889 71584|0.36111 71585|0.27778 71586|0.44444 71587|0.18056 71588|0.54167 71589|0.26389 71590|0.16667 71591|0.625 71592|0.83333 71593|0.38889 71594|0.45833 71595|0.55556 71596|0.51389 71597|0.44444 71598|0.51389 71599|0.75 71600|0.61111 71601|0.81944 71602|0.55556 71603|0.90278 71604|0.79167 71605|0.72222 71606|0.88889 71607|0.76389 71608|0.83333 71609|0.90278 71610|0.83333 71611|0.79167 71612|0.68056 71613|0.77778 71614|0.51389 71615|0.61111 71616|0.88889 71617|0.65278 71618|0.76389 71619|0.72222 71620|0.66667 71621|0.75 71622|0.86111 71623|0.5 71624|0.72222 71625|0.86111 71626|0.38889 71627|0.48611 71628|0.65278 71629|0.59722 71630|0.5 71631|0.5 71632|0.56944 71633|0.81944 71634|0.51389 71635|0.625 71636|0.55556 71637|0.45833 71638|0.61111 71639|0.52778 71640|0.83333 71641|0.58333 71642|0.5 71643|0.52778 71644|0.48611 71645|0.5 71646|0.45833 71647|0.75 71648|0.80556 71649|0.75 71650|0.55556 71651|0.86111 71652|0.80556 71653|0.30556 71654|0.875 71655|0.38889 71656|0.61111 71657|0.76389 71658|0.48611 71659|0.76389 71660|0.90278 71661|0.84722 71662|0.73611 71663|0.625 71664|0.875 71665|0.83333 71666|0.72222 71667|0.73611 71668|0.76389 71669|0.72222 71670|0.66667 71671|0.79167 71672|0.83333 71673|0.77778 71674|0.63889 71675|0.91667 71676|0.70833 71677|0.31944 71678|0.38889 71679|0.5 71680|0.61111 71681|0.66667 71682|0.63889 71683|0.83333 71684|0.77778 71685|0.58333 71686|0.59722 71687|0.45833 71688|0.61111 71689|0.51389 71690|0.47222 71691|0.5 71692|0.48611 71693|0.58333 71694|0.68056 71695|0.47222 71696|0.875 71697|0.65278 71698|0.79167 71699|0.73611 71700|0.59722 71701|0.77778 71702|0.44444 71703|0.52778 71704|0.5 71705|0.72222 71706|0.69444 71707|0.83333 71708|0.77778 71709|0.80556 71710|0.88889 71711|0.83333 71712|0.83333 71713|0.65278 71714|0.40278 71715|0.5 71716|0.48611 71717|0.68056 71718|0.55556 71719|0.72222 71720|0.38889 71721|0.5 71722|0.66667 71723|0.81944 71724|0.68056 71725|0.77778 71726|0.59722 71727|0.5 71728|0.66667 71729|0.65278 71730|0.83333 71731|0.5 71732|0.5 71733|0.72222 71734|0.61111 71735|0.80556 71736|0.70833 71737|0.61111 71738|0.55556 71739|0.77778 71740|0.76389 71741|0.69444 71742|0.58333 71743|0.75 71744|0.68056 71745|0.80556 71746|0.59722 71747|0.61111 71748|0.69444 71749|0.88889 71750|0.69444 71751|0.66667 71752|0.93056 71753|0.38889 71754|0.76389 71755|0.77778 71756|0.5 71757|0.80556 71758|0.69444 71759|0.90278 71760|0.72222 71761|0.81944 71762|0.90278 71763|0.83333 71764|0.95833 71765|0.69444 71766|0.70833 71767|0.75 71768|0.33333 71769|0.45833 71770|0.77778 71771|0.51389 71772|0.45833 71773|0.40278 71774|0.65278 71775|0.61111 71776|0.68056 71777|0.66667 71778|0.81944 71779|0.77778 71780|0.63889 71781|0.65278 71782|0.75 71783|0.77778 71784|0.5 71785|0.31944 71786|0.43056 71787|0.625 71788|0.66667 71789|0.55556 71790|0.77778 71791|0.80556 71792|0.81944 71793|0.875 71794|0.70833 71795|0.79167 71796|0.59722 71797|0.55556 71798|0.83333 71799|0.45833 71800|0.33333 71801|0.625 71802|0.79167 71803|0.80556 71804|0.91667 71805|0.58333 71806|0.91667 71807|0.80556 71808|0.75 71809|0.5 71810|0.55556 71811|0.70833 71812|0.80556 71813|0.55556 71814|0.72222 71815|0.86111 71816|0.80556 71817|0.73611 71818|0.66667 71819|0.66667 71820|0.61111 71821|0.5 71822|0.70833 71823|0.91667 71824|0.84722 71825|0.83333 71826|0.73611 71827|0.80556 71828|0.77778 71829|0.63889 71830|0.48611 71831|0.45833 71832|0.51389 71833|0.68056 71834|0.76389 71835|0.45833 71836|0.38889 71837|0.66667 71838|0.43056 71839|0.59722 71840|0.40278 71841|0.44444 71842|0.55556 71843|0.93056 71844|0.51389 71845|0.58333 71846|0.5 71847|0.61111 71848|0.30556 71849|0.5 71850|0.5 71851|0.38889 71852|0.66667 71853|0.38889 71854|0.48611 71855|0.625 71856|0.70833 71857|0.84722 71858|0.79167 71859|0.80556 71860|0.5 71861|0.40278 71862|0.375 71863|0.34722 71864|0.5 71865|0.84722 71866|0.5 71867|0.59722 71868|0.66667 71869|0.68056 71870|0.73611 71871|0.72222 71872|0.44444 71873|0.5 71874|0.48611 71875|0.70833 71876|0.41667 71877|0.59722 71878|0.52778 71879|0.48611 71880|0.41667 71881|0.5 71882|0.625 71883|0.73611 71884|0.77778 71885|0.61111 71886|0.69444 71887|0.625 71888|0.72222 71889|0.80556 71890|0.51389 71891|0.61111 71892|0.70833 71893|0.69444 71894|0.80556 71895|0.5 71896|0.59722 71897|0.55556 71898|0.44444 71899|0.66667 71900|0.5 71901|0.44444 71902|0.27778 71903|0.5 71904|0.68056 71905|0.45833 71906|0.44444 71907|0.27778 71908|0.375 71909|0.5 71910|0.59722 71911|0.59722 71912|0.51389 71913|0.36111 71914|0.58333 71915|0.58333 71916|0.83333 71917|0.77778 71918|0.83333 71919|0.79167 71920|0.59722 71921|0.5 71922|0.65278 71923|0.72222 71924|0.63889 71925|0.625 71926|0.63889 71927|0.59722 71928|0.61111 71929|0.66667 71930|0.76389 71931|0.73611 71932|0.77778 71933|0.65278 71934|0.72222 71935|0.63889 71936|0.63889 71937|0.72222 71938|0.5 71939|0.55556 71940|0.63889 71941|0.83333 71942|0.63889 71943|0.76389 71944|0.5 71945|0.51389 71946|0.73611 71947|0.54167 71948|0.69444 71949|0.55556 71950|0.66667 71951|0.95833 71952|0.86111 71953|0.70833 71954|0.86111 71955|0.86111 71956|0.80556 71957|0.875 71958|0.5 71959|0.55556 71960|0.5 71961|0.5 71962|0.43056 71963|0.58333 71964|0.72222 71965|0.66667 71966|0.23611 71967|0.5 71968|0.65278 71969|0.45833 71970|0.48611 71971|0.84722 71972|0.44444 71973|0.43056 71974|0.33333 71975|0.19444 71976|0.80556 71977|0.22222 71978|0.51389 71979|0.29167 71980|0.5 71981|0.5 71982|0.5 71983|0.63889 71984|0.79167 71985|0.68056 71986|0.5 71987|0.84722 71988|0.54167 71989|0.56944 71990|0.5 71991|0.66667 71992|0.56944 71993|0.75 71994|0.44444 71995|0.76389 71996|0.61111 71997|0.63889 71998|0.625 71999|0.40278 72000|0.69444 72001|0.75 72002|0.625 72003|0.76389 72004|0.73611 72005|0.77778 72006|0.66667 72007|0.58333 72008|0.68056 72009|0.68056 72010|0.66667 72011|0.51389 72012|0.55556 72013|0.56944 72014|0.31944 72015|0.68056 72016|0.77778 72017|0.58333 72018|0.63889 72019|0.76389 72020|0.55556 72021|0.5 72022|0.375 72023|0.66667 72024|0.5 72025|0.45833 72026|0.5 72027|0.54167 72028|0.52778 72029|0.58333 72030|0.63889 72031|0.80556 72032|0.59722 72033|0.38889 72034|0.65278 72035|0.98611 72036|0.81944 72037|0.48611 72038|0.70833 72039|0.81944 72040|0.86111 72041|0.77778 72042|0.5 72043|0.45833 72044|0.79167 72045|0.59722 72046|0.65278 72047|0.54167 72048|0.51389 72049|0.69444 72050|0.59722 72051|0.80556 72052|0.54167 72053|0.59722 72054|0.68056 72055|0.5 72056|0.47222 72057|0.63889 72058|0.70833 72059|0.58333 72060|0.59722 72061|0.5 72062|0.375 72063|0.75 72064|0.55556 72065|0.79167 72066|0.48611 72067|0.66667 72068|0.73611 72069|0.76389 72070|0.59722 72071|0.63889 72072|0.52778 72073|0.63889 72074|0.77778 72075|0.55556 72076|0.55556 72077|0.73611 72078|0.76389 72079|0.51389 72080|0.48611 72081|0.56944 72082|0.75 72083|0.48611 72084|0.5 72085|0.5 72086|0.48611 72087|0.86111 72088|0.54167 72089|0.38889 72090|0.45833 72091|0.5 72092|0.25 72093|0.43056 72094|0.52778 72095|0.5 72096|0.56944 72097|0.52778 72098|0.80556 72099|0.72222 72100|0.69444 72101|0.66667 72102|0.58333 72103|0.61111 72104|0.55556 72105|0.55556 72106|0.5 72107|0.70833 72108|0.70833 72109|0.80556 72110|0.86111 72111|0.97222 72112|0.86111 72113|0.75 72114|0.73611 72115|0.68056 72116|0.875 72117|0.38889 72118|0.56944 72119|0.625 72120|0.58333 72121|0.88889 72122|0.625 72123|0.38889 72124|0.5 72125|0.5 72126|0.63889 72127|0.5 72128|0.5 72129|0.54167 72130|0.75 72131|0.5 72132|0.625 72133|0.69444 72134|0.59722 72135|0.56944 72136|0.45833 72137|0.81944 72138|0.73611 72139|0.72222 72140|0.80556 72141|0.73611 72142|0.73611 72143|0.73611 72144|0.72222 72145|0.51389 72146|0.625 72147|0.66667 72148|0.75 72149|0.59722 72150|0.63889 72151|0.56944 72152|0.69444 72153|0.5 72154|0.66667 72155|0.20833 72156|0.25 72157|0.70833 72158|0.83333 72159|0.76389 72160|0.83333 72161|0.84722 72162|0.66667 72163|0.58333 72164|0.48611 72165|0.48611 72166|0.73611 72167|0.81944 72168|0.30556 72169|0.72222 72170|0.63889 72171|0.54167 72172|0.61111 72173|0.5 72174|0.77778 72175|0.76389 72176|0.83333 72177|0.75 72178|0.5 72179|0.59722 72180|0.5 72181|0.63889 72182|0.76389 72183|0.43056 72184|0.56944 72185|0.56944 72186|0.59722 72187|0.56944 72188|0.55556 72189|0.36111 72190|0.5 72191|0.61111 72192|0.45833 72193|0.61111 72194|0.34722 72195|0.54167 72196|0.41667 72197|0.63889 72198|0.5 72199|0.875 72200|0.45833 72201|0.5 72202|0.59722 72203|0.93056 72204|0.5 72205|0.58333 72206|0.54167 72207|0.56944 72208|0.77778 72209|0.44444 72210|0.48611 72211|0.44444 72212|0.45833 72213|0.34722 72214|0.48611 72215|0.52778 72216|0.66667 72217|0.33333 72218|0.56944 72219|0.58333 72220|0.48611 72221|0.5 72222|0.33333 72223|0.84722 72224|0.69444 72225|0.55556 72226|0.83333 72227|0.58333 72228|0.68056 72229|0.65278 72230|0.55556 72231|0.61111 72232|0.66667 72233|0.77778 72234|0.875 72235|0.73611 72236|0.55556 72237|0.58333 72238|0.55556 72239|0.58333 72240|0.65278 72241|0.69444 72242|0.73611 72243|0.5 72244|0.66667 72245|0.55556 72246|0.70833 72247|0.76389 72248|0.76389 72249|0.80556 72250|0.54167 72251|0.86111 72252|0.625 72253|0.51389 72254|0.27778 72255|0.31944 72256|0.44444 72257|0.81944 72258|0.66667 72259|0.66667 72260|0.79167 72261|0.83333 72262|0.81944 72263|0.77778 72264|0.81944 72265|0.79167 72266|0.69444 72267|0.625 72268|0.80556 72269|0.56944 72270|0.59722 72271|0.61111 72272|0.79167 72273|0.59722 72274|0.52778 72275|0.44444 72276|0.5 72277|0.58333 72278|0.69444 72279|0.73611 72280|0.73611 72281|0.63889 72282|0.84722 72283|0.72222 72284|0.79167 72285|0.79167 72286|0.83333 72287|0.79167 72288|0.76389 72289|0.73611 72290|0.52778 72291|0.48611 72292|0.63889 72293|0.76389 72294|0.5 72295|0.5 72296|0.54167 72297|0.66667 72298|0.80556 72299|0.76389 72300|0.66667 72301|0.72222 72302|0.58333 72303|0.625 72304|0.55556 72305|0.625 72306|0.91667 72307|0.83333 72308|0.625 72309|0.5 72310|0.58333 72311|0.5 72312|0.65278 72313|0.5 72314|0.5 72315|0.77778 72316|0.76389 72317|0.45833 72318|0.75 72319|0.66667 72320|0.5 72321|0.44444 72322|0.70833 72323|0.52778 72324|0.47222 72325|0.625 72326|0.72222 72327|0.61111 72328|0.72222 72329|0.80556 72330|0.625 72331|0.80556 72332|0.69444 72333|0.73611 72334|0.5 72335|0.48611 72336|0.5 72337|0.5 72338|0.52778 72339|0.375 72340|0.375 72341|0.68056 72342|0.69444 72343|0.5 72344|0.70833 72345|0.83333 72346|0.40278 72347|0.26389 72348|0.5 72349|0.65278 72350|0.625 72351|0.59722 72352|0.86111 72353|0.68056 72354|0.76389 72355|0.52778 72356|0.59722 72357|0.52778 72358|0.54167 72359|0.40278 72360|0.83333 72361|0.70833 72362|0.51389 72363|0.875 72364|0.77778 72365|0.58333 72366|0.88889 72367|0.5 72368|0.44444 72369|0.33333 72370|0.52778 72371|0.66667 72372|0.65278 72373|0.29167 72374|0.66667 72375|0.75 72376|0.83333 72377|0.5 72378|0.5 72379|0.77778 72380|0.81944 72381|0.23611 72382|0.40278 72383|0.51389 72384|0.5 72385|0.80556 72386|0.47222 72387|0.27778 72388|0.47222 72389|0.36111 72390|0.52778 72391|0.26389 72392|0.51389 72393|0.59722 72394|0.66667 72395|0.48611 72396|0.61111 72397|0.375 72398|0.59722 72399|0.54167 72400|0.40278 72401|0.77778 72402|0.86111 72403|0.5 72404|0.54167 72405|0.56944 72406|0.5 72407|0.5 72408|0.40278 72409|0.55556 72410|0.55556 72411|0.5 72412|0.5 72413|0.83333 72414|0.80556 72415|0.61111 72416|0.80556 72417|0.95833 72418|0.75 72419|0.61111 72420|0.80556 72421|0.51389 72422|0.58333 72423|0.5 72424|0.44444 72425|0.56944 72426|0.625 72427|0.69444 72428|0.58333 72429|0.55556 72430|0.70833 72431|0.77778 72432|0.81944 72433|0.66667 72434|0.79167 72435|0.69444 72436|0.77778 72437|0.70833 72438|0.68056 72439|0.76389 72440|0.80556 72441|0.875 72442|0.83333 72443|0.43056 72444|0.83333 72445|0.84722 72446|0.86111 72447|0.63889 72448|0.68056 72449|0.77778 72450|0.76389 72451|0.61111 72452|0.54167 72453|0.40278 72454|0.54167 72455|0.38889 72456|0.58333 72457|0.58333 72458|0.55556 72459|0.55556 72460|0.625 72461|0.81944 72462|0.79167 72463|0.65278 72464|0.77778 72465|0.90278 72466|0.58333 72467|0.81944 72468|0.75 72469|0.65278 72470|0.48611 72471|0.33333 72472|0.45833 72473|0.43056 72474|0.45833 72475|0.56944 72476|0.72222 72477|0.55556 72478|0.66667 72479|0.5 72480|0.61111 72481|0.55556 72482|0.61111 72483|0.81944 72484|0.59722 72485|0.55556 72486|0.66667 72487|0.70833 72488|0.81944 72489|0.54167 72490|0.40278 72491|0.66667 72492|0.55556 72493|0.55556 72494|0.72222 72495|0.56944 72496|0.63889 72497|0.75 72498|0.79167 72499|0.59722 72500|0.54167 72501|0.56944 72502|0.5 72503|0.52778 72504|0.48611 72505|0.86111 72506|0.63889 72507|0.83333 72508|0.875 72509|0.79167 72510|0.5 72511|0.5 72512|0.69444 72513|0.55556 72514|0.52778 72515|0.81944 72516|0.55556 72517|0.625 72518|0.66667 72519|0.5 72520|0.56944 72521|0.66667 72522|0.59722 72523|0.625 72524|0.73611 72525|0.5 72526|0.54167 72527|0.93056 72528|0.68056 72529|0.77778 72530|0.5 72531|0.56944 72532|0.5 72533|0.55556 72534|0.66667 72535|0.45833 72536|0.80556 72537|0.83333 72538|0.72222 72539|0.68056 72540|0.51389 72541|0.54167 72542|0.48611 72543|0.11111 72544|0.56944 72545|0.70833 72546|0.69444 72547|0.61111 72548|0.72222 72549|0.63889 72550|0.5 72551|0.61111 72552|0.58333 72553|0.77778 72554|0.76389 72555|0.5 72556|0.55556 72557|0.61111 72558|0.44444 72559|0.875 72560|0.72222 72561|0.875 72562|0.79167 72563|0.77778 72564|0.55556 72565|0.61111 72566|0.5 72567|0.58333 72568|0.66667 72569|0.77778 72570|0.52778 72571|0.58333 72572|0.52778 72573|0.52778 72574|0.44444 72575|0.56944 72576|0.5 72577|0.44444 72578|0.69444 72579|0.875 72580|0.88889 72581|0.69444 72582|0.88889 72583|0.81944 72584|0.94444 72585|0.30556 72586|0.72222 72587|0.625 72588|0.5 72589|0.56944 72590|0.58333 72591|0.38889 72592|0.48611 72593|0.47222 72594|0.55556 72595|0.61111 72596|0.5 72597|0.41667 72598|0.5 72599|0.875 72600|0.76389 72601|0.61111 72602|0.5 72603|0.56944 72604|0.80556 72605|0.52778 72606|0.40278 72607|0.86111 72608|0.76389 72609|0.72222 72610|0.77778 72611|0.68056 72612|0.58333 72613|0.59722 72614|0.5 72615|0.76389 72616|0.875 72617|0.76389 72618|0.66667 72619|0.81944 72620|0.80556 72621|0.73611 72622|0.83333 72623|0.77778 72624|0.88889 72625|0.61111 72626|0.69444 72627|0.5 72628|0.43056 72629|0.75 72630|0.625 72631|0.73611 72632|0.38889 72633|0.48611 72634|0.43056 72635|0.5 72636|0.41667 72637|0.5 72638|0.52778 72639|0.69444 72640|0.5 72641|0.61111 72642|0.61111 72643|0.5 72644|0.56944 72645|0.59722 72646|0.86111 72647|0.54167 72648|0.86111 72649|0.47222 72650|0.44444 72651|0.44444 72652|0.55556 72653|0.77778 72654|0.72222 72655|0.51389 72656|0.5 72657|0.56944 72658|0.63889 72659|0.70833 72660|0.73611 72661|0.43056 72662|0.61111 72663|0.59722 72664|0.48611 72665|0.72222 72666|0.63889 72667|0.93056 72668|0.76389 72669|0.77778 72670|0.5 72671|0.625 72672|0.5 72673|0.79167 72674|0.86111 72675|0.22222 72676|0.76389 72677|0.58333 72678|0.5 72679|0.58333 72680|0.54167 72681|0.38889 72682|0.76389 72683|0.75 72684|0.76389 72685|0.58333 72686|0.33333 72687|0.26389 72688|0.51389 72689|0.5 72690|0.65278 72691|0.77778 72692|0.72222 72693|0.45833 72694|0.81944 72695|0.58333 72696|0.5 72697|0.52778 72698|0.27778 72699|0.43056 72700|0.5 72701|0.63889 72702|0 72703|0.5 72704|0.44444 72705|0.86111 72706|0.5 72707|0.625 72708|0.70833 72709|0.76389 72710|0.5 72711|0.58333 72712|0.80556 72713|0.66667 72714|0.44444 72715|0.79167 72716|0.63889 72717|0.5 72718|0.55556 72719|0.48611 72720|0.51389 72721|0.55556 72722|0.625 72723|0.68056 72724|0.61111 72725|0.88889 72726|0.80556 72727|0.79167 72728|0.5 72729|0.54167 72730|0.55556 72731|0.56944 72732|0.56944 72733|0.56944 72734|0.81944 72735|0.34722 72736|0.63889 72737|0.80556 72738|0.55556 72739|0.48611 72740|0.66667 72741|0.73611 72742|0.34722 72743|0.83333 72744|0.70833 72745|0.5 72746|0.69444 72747|0.66667 72748|0.75 72749|0.83333 72750|0.88889 72751|0.80556 72752|0.875 72753|0.75 72754|0.77778 72755|0.72222 72756|0.5 72757|0.48611 72758|0.63889 72759|0.61111 72760|0.65278 72761|0.40278 72762|0.55556 72763|0.83333 72764|0.80556 72765|0.5 72766|0.47222 72767|0.77778 72768|0.76389 72769|0.77778 72770|0.75 72771|0.91667 72772|0.83333 72773|0.73611 72774|0.59722 72775|0.79167 72776|0.72222 72777|0.86111 72778|0.73611 72779|0.68056 72780|0.70833 72781|0.51389 72782|0.75 72783|0.59722 72784|0.56944 72785|0.5 72786|0.5 72787|0.5 72788|0.44444 72789|0.79167 72790|0.73611 72791|0.72222 72792|0.77778 72793|0.88889 72794|0.70833 72795|0.75 72796|0.58333 72797|0.65278 72798|0.72222 72799|0.45833 72800|0.55556 72801|0.65278 72802|0.58333 72803|0.5 72804|0.5 72805|0.77778 72806|0.63889 72807|0.38889 72808|0.48611 72809|0.80556 72810|0.80556 72811|0.66667 72812|0.58333 72813|0.77778 72814|0.77778 72815|0.5 72816|0.5 72817|0.58333 72818|0.81944 72819|0.33333 72820|0.5 72821|0.36111 72822|0.61111 72823|0.5 72824|0.68056 72825|0.77778 72826|0.83333 72827|0.86111 72828|0.76389 72829|0.84722 72830|0.88889 72831|0.88889 72832|0.79167 72833|0.51389 72834|0.83333 72835|0.86111 72836|0.81944 72837|0.51389 72838|0.88889 72839|0.83333 72840|0.77778 72841|0.70833 72842|0.83333 72843|0.5 72844|0.5 72845|0.13889 72846|0.63889 72847|0.61111 72848|0.38889 72849|0.63889 72850|0.52778 72851|0.54167 72852|0.52778 72853|0.77778 72854|0.33333 72855|0.72222 72856|0.77778 72857|0.79167 72858|0.5 72859|0.27778 72860|0.36111 72861|0.40278 72862|0.47222 72863|0.61111 72864|0.54167 72865|0.76389 72866|0.72222 72867|0.59722 72868|0.66667 72869|0.65278 72870|0.68056 72871|0.73611 72872|0.47222 72873|0.5 72874|0.41667 72875|0.36111 72876|0.38889 72877|0.51389 72878|0.5 72879|0.5 72880|0.5 72881|0.58333 72882|0.83333 72883|0.70833 72884|0.83333 72885|0.58333 72886|0.72222 72887|0.51389 72888|0.76389 72889|0.58333 72890|0.52778 72891|0.83333 72892|0.80556 72893|0.56944 72894|0.5 72895|0.73611 72896|0.66667 72897|0.40278 72898|0.5 72899|0.5 72900|0.55556 72901|0.66667 72902|0.5 72903|0.51389 72904|0.5 72905|0.5 72906|0.56944 72907|0.61111 72908|0.5 72909|0.45833 72910|0.44444 72911|0.68056 72912|0.5 72913|0.5 72914|0.375 72915|0.56944 72916|0.23611 72917|0.54167 72918|0.55556 72919|0.81944 72920|0.61111 72921|0.52778 72922|0.44444 72923|0.40278 72924|0.69444 72925|0.63889 72926|0.40278 72927|0.23611 72928|0.23611 72929|0.41667 72930|0.5 72931|0.69444 72932|0.5 72933|0.22222 72934|0.5 72935|0.47222 72936|0.55556 72937|0.63889 72938|0.625 72939|0.44444 72940|0.72222 72941|0.51389 72942|0.5 72943|0.58333 72944|0.52778 72945|0.45833 72946|0.51389 72947|0.5 72948|0.58333 72949|0.38889 72950|0.5 72951|0.44444 72952|0.56944 72953|0.5 72954|0.72222 72955|0.68056 72956|0.77778 72957|0.5 72958|0.59722 72959|0.5 72960|0.5 72961|0.69444 72962|0.54167 72963|0.33333 72964|0.58333 72965|0.44444 72966|0.625 72967|0.56944 72968|0.61111 72969|0.59722 72970|0.5 72971|0.51389 72972|0.52778 72973|0.56944 72974|0.54167 72975|0.5 72976|0.56944 72977|0.65278 72978|0.5 72979|0.77778 72980|0.45833 72981|0.44444 72982|0.40278 72983|0.51389 72984|0.79167 72985|0.625 72986|0.77778 72987|0.66667 72988|0.38889 72989|0.5 72990|0.55556 72991|0.51389 72992|0.65278 72993|0.33333 72994|0.5 72995|0.65278 72996|0.47222 72997|0.65278 72998|0.45833 72999|0.61111 73000|0.5 73001|0.54167 73002|0.72222 73003|0.59722 73004|0.5 73005|0.55556 73006|0.56944 73007|0.58333 73008|0.52778 73009|0.44444 73010|0.56944 73011|0.5 73012|0.54167 73013|0.5 73014|0.5 73015|0.5 73016|0.65278 73017|0.52778 73018|0.56944 73019|0.58333 73020|0.5 73021|0.69444 73022|0.5 73023|0.5 73024|0.80556 73025|0.5 73026|0.51389 73027|0.61111 73028|0.66667 73029|0.86111 73030|0.47222 73031|0.83333 73032|0.72222 73033|0.625 73034|0.81944 73035|0.73611 73036|0.61111 73037|0.70833 73038|0.66667 73039|0.34722 73040|0.43056 73041|0.5 73042|0.73611 73043|0.90278 73044|0.88889 73045|0.81944 73046|0.61111 73047|0.48611 73048|0.56944 73049|0.63889 73050|0.77778 73051|0.52778 73052|0.61111 73053|0.65278 73054|0.23611 73055|0.375 73056|0.41667 73057|0.66667 73058|0.54167 73059|0.22222 73060|0.25 73061|0.75 73062|0.52778 73063|0.55556 73064|0.38889 73065|0.66667 73066|0.52778 73067|0.5 73068|0.55556 73069|0.55556 73070|0.38889 73071|0.27778 73072|0.44444 73073|0.51389 73074|0.54167 73075|0.69444 73076|0.80556 73077|0.70833 73078|0.84722 73079|0.875 73080|0.66667 73081|0.86111 73082|0.54167 73083|0.44444 73084|0.56944 73085|0.41667 73086|0.58333 73087|0.61111 73088|0.66667 73089|0.55556 73090|0.63889 73091|0.31944 73092|0.33333 73093|0.625 73094|0.77778 73095|0.69444 73096|0.70833 73097|0.83333 73098|0.77778 73099|0.76389 73100|0.41667 73101|0.70833 73102|0.55556 73103|0.5 73104|0.55556 73105|0.5 73106|0.66667 73107|0.55556 73108|0.65278 73109|0.625 73110|0.59722 73111|0.31944 73112|0.26389 73113|0.36111 73114|0.54167 73115|0.55556 73116|0.63889 73117|0.51389 73118|0.44444 73119|0.5 73120|0.84722 73121|0.66667 73122|0.84722 73123|0.55556 73124|0.56944 73125|0.55556 73126|0.5 73127|0.70833 73128|0.76389 73129|0.5 73130|0.5 73131|0.68056 73132|0.47222 73133|0.76389 73134|0.44444 73135|0.61111 73136|0.5 73137|0.55556 73138|0.5 73139|0.56944 73140|0.55556 73141|0.5 73142|0.11111 73143|0.83333 73144|0.51389 73145|0.44444 73146|0.51389 73147|0.5 73148|0.55556 73149|0.5 73150|0.5 73151|0.5 73152|0.5 73153|0.79167 73154|0.70833 73155|0.72222 73156|0.77778 73157|0.30556 73158|0.5 73159|0.5 73160|0.52778 73161|0.56944 73162|0.5 73163|0.63889 73164|0.59722 73165|0.56944 73166|0.36111 73167|0.5 73168|0.5 73169|0.51389 73170|0.76389 73171|0.77778 73172|0.5 73173|0.70833 73174|0.88889 73175|0.77778 73176|0.79167 73177|0.51389 73178|0.61111 73179|0.58333 73180|0.61111 73181|0.59722 73182|0.84722 73183|0.54167 73184|0.5 73185|0.51389 73186|0.5 73187|0.5 73188|0.5 73189|0.51389 73190|0.625 73191|0.31944 73192|0.75 73193|0.66667 73194|0.81944 73195|0.86111 73196|0.5 73197|0.65278 73198|0.72222 73199|0.77778 73200|0.54167 73201|0.75 73202|0.70833 73203|0.83333 73204|0.77778 73205|0.66667 73206|0.5 73207|0.48611 73208|0.48611 73209|0.55556 73210|0.44444 73211|0.5 73212|0.5 73213|0.61111 73214|0.79167 73215|0.68056 73216|0.73611 73217|0.75 73218|0.68056 73219|0.88889 73220|0.625 73221|0.76389 73222|0.63889 73223|0.76389 73224|0.5 73225|0.70833 73226|0.70833 73227|0.84722 73228|0.88889 73229|0.68056 73230|0.66667 73231|0.75 73232|0.83333 73233|0.75 73234|0.77778 73235|0.66667 73236|0.5 73237|0.52778 73238|0.56944 73239|0.63889 73240|0.56944 73241|0.59722 73242|0.83333 73243|0.5 73244|0.59722 73245|0.84722 73246|0.86111 73247|0.81944 73248|0.625 73249|0.5 73250|0.5 73251|0.38889 73252|0.48611 73253|0.61111 73254|0.66667 73255|0.61111 73256|0.70833 73257|0.77778 73258|0.61111 73259|0.65278 73260|0.75 73261|0.86111 73262|0.5 73263|0.52778 73264|0.51389 73265|0.34722 73266|0.5 73267|0.55556 73268|0.59722 73269|0.51389 73270|0.61111 73271|0.5 73272|0.56944 73273|0.36111 73274|0.54167 73275|0.5 73276|0.76389 73277|0.45833 73278|0.51389 73279|0.55556 73280|0.5 73281|0.58333 73282|0.63889 73283|0.65278 73284|0.76389 73285|0.59722 73286|0.59722 73287|0.625 73288|0.72222 73289|0.77778 73290|0.69444 73291|0.61111 73292|0.5 73293|0.83333 73294|0.44444 73295|0.5 73296|0.5 73297|0.5 73298|0.55556 73299|0.51389 73300|0.88889 73301|0.58333 73302|0.79167 73303|0.44444 73304|0.48611 73305|0.48611 73306|0.36111 73307|0.31944 73308|0.40278 73309|0.52778 73310|0.5 73311|0.69444 73312|0.52778 73313|0.52778 73314|0.45833 73315|0.41667 73316|0.5 73317|0.43056 73318|0.56944 73319|0.33333 73320|0.5 73321|0.70833 73322|0.47222 73323|0.70833 73324|0.20833 73325|0.48611 73326|0.5 73327|0.33333 73328|0.43056 73329|0.23611 73330|0.34722 73331|0.47222 73332|0.44444 73333|0.45833 73334|0.61111 73335|0.56944 73336|0.54167 73337|0.5 73338|0.625 73339|0.65278 73340|0.38889 73341|0.375 73342|0.30556 73343|0.625 73344|0.68056 73345|0.43056 73346|0.5 73347|0.56944 73348|0.75 73349|0.5 73350|0.58333 73351|0.5 73352|0.51389 73353|0.65278 73354|0.77778 73355|0.84722 73356|0.25 73357|0.31944 73358|0.23611 73359|0.38889 73360|0.61111 73361|0.55556 73362|0.5 73363|0.5 73364|0.40278 73365|0.30556 73366|0.375 73367|0.5 73368|0.55556 73369|0.61111 73370|0.77778 73371|0.75 73372|0.625 73373|0.51389 73374|0.5 73375|0.5 73376|0.5 73377|0.59722 73378|0.83333 73379|0.77778 73380|0.69444 73381|0.55556 73382|0.84722 73383|0.58333 73384|0.55556 73385|0.5 73386|0.5 73387|0.5 73388|0.5 73389|0.38889 73390|0.5 73391|0.30556 73392|0.5 73393|0.73611 73394|0.48611 73395|0.55556 73396|0.5 73397|0.63889 73398|0.5 73399|0.51389 73400|0.55556 73401|0.5 73402|0.30556 73403|0.58333 73404|0.54167 73405|0.55556 73406|0.52778 73407|0.58333 73408|0.5 73409|0.25 73410|0.61111 73411|0.34722 73412|0.51389 73413|0.5 73414|0.40278 73415|0.59722 73416|0.56944 73417|0.5 73418|0.55556 73419|0.5 73420|0.5 73421|0.45833 73422|0.5 73423|0.52778 73424|0.5 73425|0.625 73426|0.72222 73427|0.45833 73428|0.44444 73429|0.61111 73430|0.52778 73431|0.56944 73432|0.26389 73433|0.55556 73434|0.45833 73435|0.76389 73436|0.79167 73437|0.52778 73438|0.375 73439|0.54167 73440|0.56944 73441|0.75 73442|0.51389 73443|0.5 73444|0.52778 73445|0.66667 73446|0.44444 73447|0.75 73448|0.23611 73449|0.43056 73450|0.27778 73451|0.56944 73452|0.625 73453|0.5 73454|0.11111 73455|0.63889 73456|0.56944 73457|0.48611 73458|0.58333 73459|0.5 73460|0.5 73461|0.5 73462|0.79167 73463|0.61111 73464|0.72222 73465|0.66667 73466|0.61111 73467|0.5 73468|0.91667 73469|0.55556 73470|0.55556 73471|0.43056 73472|0.5 73473|0.58333 73474|0.58333 73475|0.70833 73476|0.61111 73477|0.63889 73478|0.66667 73479|0.79167 73480|0.55556 73481|0.69444 73482|0.77778 73483|0.625 73484|0.70833 73485|0.69444 73486|0.77778 73487|0.33333 73488|0.54167 73489|0.52778 73490|0.48611 73491|0.43056 73492|0.63889 73493|0.55556 73494|0.58333 73495|0.625 73496|0.45833 73497|0.55556 73498|0.77778 73499|0.56944 73500|0.44444 73501|0.76389 73502|0.51389 73503|0.55556 73504|0.59722 73505|0.55556 73506|0.5 73507|0.44444 73508|0.5 73509|0.61111 73510|0.5 73511|0.36111 73512|0.38889 73513|0.5 73514|0.51389 73515|0.38889 73516|0.88889 73517|0.88889 73518|0.83333 73519|0.72222 73520|0.22222 73521|0.83333 73522|0.76389 73523|0.58333 73524|0.69444 73525|0.70833 73526|0.33333 73527|0.72222 73528|0.5 73529|0.41667 73530|0.75 73531|0.83333 73532|0.72222 73533|0.59722 73534|0.625 73535|0.68056 73536|0.55556 73537|0.66667 73538|0.55556 73539|0.5 73540|0.33333 73541|0.48611 73542|0.5 73543|0.33333 73544|0.625 73545|0.76389 73546|0.33333 73547|0.56944 73548|0.55556 73549|0.61111 73550|0.61111 73551|0.83333 73552|0.77778 73553|0.91667 73554|0.63889 73555|0.47222 73556|0.58333 73557|0.55556 73558|0.5 73559|0.36111 73560|0.11111 73561|0.18056 73562|0.5 73563|0.5 73564|0.36111 73565|0.22222 73566|0.52778 73567|0.81944 73568|0.84722 73569|0.83333 73570|0.91667 73571|0.58333 73572|0.58333 73573|0.77778 73574|0.56944 73575|0.66667 73576|0.72222 73577|0.79167 73578|0.77778 73579|0.76389 73580|0.68056 73581|0.55556 73582|0.625 73583|0.76389 73584|0.56944 73585|0.59722 73586|0.58333 73587|0.625 73588|0.54167 73589|0.5 73590|0.77778 73591|0.55556 73592|0.77778 73593|0.625 73594|0.625 73595|0.33333 73596|0.38889 73597|0.76389 73598|0.48611 73599|0.75 73600|0.61111 73601|0.40278 73602|0.61111 73603|0.68056 73604|0.77778 73605|0.75 73606|0.72222 73607|0.83333 73608|0.81944 73609|0.68056 73610|0.48611 73611|0.54167 73612|0.26389 73613|0.22222 73614|0.48611 73615|0.41667 73616|0.59722 73617|0.5 73618|0.79167 73619|0.5 73620|0.44444 73621|0.5 73622|0.5 73623|0.69444 73624|0.5 73625|0.5 73626|0.5 73627|0.5 73628|0.38889 73629|0.5 73630|0.69444 73631|0.5 73632|0.55556 73633|0.30556 73634|0.5 73635|0.5 73636|0.66667 73637|0.84722 73638|0.94444 73639|0.91667 73640|0.76389 73641|0.5 73642|0.61111 73643|0.66667 73644|0.83333 73645|0.5 73646|0.40278 73647|0.40278 73648|0.51389 73649|0.79167 73650|0.52778 73651|0.65278 73652|0.5 73653|0.79167 73654|0.44444 73655|0.625 73656|0.66667 73657|0.5 73658|0.61111 73659|0.76389 73660|0.76389 73661|0.76389 73662|0.77778 73663|0.61111 73664|0.72222 73665|0.77778 73666|0.56944 73667|0.27778 73668|0.77778 73669|0.59722 73670|0.66667 73671|0.84722 73672|0.79167 73673|0.72222 73674|0.43056 73675|0.625 73676|0.73611 73677|0.55556 73678|0.44444 73679|0.55556 73680|0.5 73681|0.55556 73682|0.61111 73683|0.55556 73684|0.625 73685|0.5 73686|0.625 73687|0.83333 73688|0.66667 73689|0.76389 73690|0.80556 73691|0.80556 73692|0.88889 73693|0.5 73694|0.5 73695|0.61111 73696|0.66667 73697|0.66667 73698|0.5 73699|0.625 73700|0.72222 73701|0.66667 73702|0.54167 73703|0.47222 73704|0.61111 73705|0.68056 73706|0.66667 73707|0.44444 73708|0.5 73709|0.38889 73710|0.55556 73711|0.5 73712|0.47222 73713|0.51389 73714|0.58333 73715|0.41667 73716|0.63889 73717|0.54167 73718|0.30556 73719|0.52778 73720|0.58333 73721|0.65278 73722|0.68056 73723|0.5 73724|0.56944 73725|0.63889 73726|0.56944 73727|0.72222 73728|0.59722 73729|0.55556 73730|0.44444 73731|0.84722 73732|0.73611 73733|0.84722 73734|0.70833 73735|0.61111 73736|0.61111 73737|0.84722 73738|0.93056 73739|0.80556 73740|0.73611 73741|0.73611 73742|0.75 73743|0.73611 73744|0.34722 73745|0.5 73746|0.72222 73747|0.76389 73748|0.22222 73749|0.88889 73750|0.875 73751|0.61111 73752|0.70833 73753|0.70833 73754|0.875 73755|0.81944 73756|0.79167 73757|0.81944 73758|0.77778 73759|0.77778 73760|0.77778 73761|0.63889 73762|0.5 73763|0.65278 73764|0.68056 73765|0.44444 73766|0.5 73767|0.47222 73768|0.61111 73769|0.79167 73770|0.68056 73771|0.875 73772|0.22222 73773|0.94444 73774|0.88889 73775|0.61111 73776|0.80556 73777|0.5 73778|0.72222 73779|0.77778 73780|0.88889 73781|0.52778 73782|0.77778 73783|0.76389 73784|0.5 73785|0.5 73786|0.43056 73787|0.59722 73788|0.59722 73789|0.75 73790|0.72222 73791|0.45833 73792|0.91667 73793|0.88889 73794|0.83333 73795|0.56944 73796|0.68056 73797|0.52778 73798|0.61111 73799|0.55556 73800|0.61111 73801|0.625 73802|0.76389 73803|0.72222 73804|0.56944 73805|0.83333 73806|0.56944 73807|0.5 73808|0.70833 73809|0.41667 73810|0.5 73811|0.52778 73812|0.45833 73813|0.47222 73814|0.79167 73815|0.83333 73816|0.72222 73817|0.80556 73818|0.72222 73819|0.75 73820|0.51389 73821|0.72222 73822|0.55556 73823|0.76389 73824|0.61111 73825|0.625 73826|0.59722 73827|0.73611 73828|0.72222 73829|0.47222 73830|0.52778 73831|0.88889 73832|0.68056 73833|0.83333 73834|0.86111 73835|0.63889 73836|0.75 73837|0.69444 73838|0.72222 73839|0.63889 73840|0.66667 73841|0.79167 73842|0.73611 73843|0.59722 73844|0.59722 73845|0.48611 73846|0.44444 73847|0.125 73848|0.23611 73849|0.13889 73850|0.36111 73851|0.83333 73852|0.38889 73853|0.69444 73854|0.81944 73855|0.86111 73856|0.83333 73857|0.84722 73858|0.83333 73859|0.76389 73860|0.90278 73861|0.83333 73862|0.81944 73863|0.81944 73864|0.59722 73865|0.72222 73866|0.77778 73867|0.73611 73868|0.73611 73869|0.68056 73870|0.73611 73871|0.58333 73872|0.61111 73873|0.70833 73874|0.80556 73875|0.65278 73876|0.68056 73877|0.83333 73878|0.75 73879|0.76389 73880|0.65278 73881|0.63889 73882|0.83333 73883|0.77778 73884|0.72222 73885|0.70833 73886|0.83333 73887|0.72222 73888|0.75 73889|0.69444 73890|0.69444 73891|0.79167 73892|0.625 73893|0.55556 73894|0.45833 73895|0.61111 73896|0.80556 73897|0.86111 73898|0.875 73899|0.84722 73900|0.59722 73901|0.72222 73902|0.625 73903|0.45833 73904|0.56944 73905|0.5 73906|0.51389 73907|0.66667 73908|0.86111 73909|0.72222 73910|0.79167 73911|0.63889 73912|0.38889 73913|0.54167 73914|0.5 73915|0.5 73916|0.43056 73917|0.58333 73918|0.84722 73919|0.55556 73920|0.54167 73921|0.45833 73922|0.63889 73923|0.52778 73924|0.81944 73925|0.51389 73926|0.33333 73927|0.40278 73928|0.625 73929|0.73611 73930|0.5 73931|0.375 73932|0.44444 73933|0.55556 73934|0.43056 73935|0.55556 73936|0.48611 73937|0.68056 73938|0.625 73939|0.84722 73940|0.52778 73941|0.65278 73942|0.65278 73943|0.77778 73944|0.73611 73945|0.875 73946|0.41667 73947|0.33333 73948|0.5 73949|0.44444 73950|0.55556 73951|0.55556 73952|0.61111 73953|0.26389 73954|0.34722 73955|0.38889 73956|0.81944 73957|0.55556 73958|0.73611 73959|0.66667 73960|0.61111 73961|0.625 73962|0.61111 73963|0.375 73964|0.45833 73965|0.45833 73966|0.48611 73967|0.375 73968|0.61111 73969|0.58333 73970|0.55556 73971|0.48611 73972|0.55556 73973|0.72222 73974|0.66667 73975|0.5 73976|0.70833 73977|0.5 73978|0.44444 73979|0.55556 73980|0.5 73981|0.43056 73982|0.27778 73983|0.75 73984|0.80556 73985|0.70833 73986|0.75 73987|0.5 73988|0.75 73989|0.5 73990|0.5 73991|0.5 73992|0.5 73993|0.5 73994|0.5 73995|0.5 73996|0.5 73997|0.5 73998|0.48611 73999|0.5 74000|0.40278 74001|0.5 74002|0.5 74003|0.5 74004|0.5 74005|0.5 74006|0.5 74007|0.47222 74008|0.51389 74009|0.5 74010|0.5 74011|0.51389 74012|0.31944 74013|0.625 74014|0.59722 74015|0.55556 74016|0.51389 74017|0.59722 74018|0.55556 74019|0.625 74020|0.70833 74021|0.29167 74022|0.56944 74023|0.61111 74024|0.40278 74025|0.38889 74026|0.56944 74027|0.5 74028|0.5 74029|0.63889 74030|0.54167 74031|0.375 74032|0.75 74033|0.72222 74034|0.27778 74035|0.51389 74036|0.625 74037|0.5 74038|0.69444 74039|0.84722 74040|0.61111 74041|0.5 74042|0.51389 74043|0.44444 74044|0.56944 74045|0.36111 74046|0.70833 74047|0.54167 74048|0.81944 74049|0.51389 74050|0.47222 74051|0.55556 74052|0.69444 74053|0.5 74054|0.61111 74055|0.38889 74056|0.40278 74057|0.5 74058|0.5 74059|0.72222 74060|0.55556 74061|0.63889 74062|0.83333 74063|0.56944 74064|0.48611 74065|0.18056 74066|0.83333 74067|0.54167 74068|0.68056 74069|0.18056 74070|0.36111 74071|0.75 74072|0.5 74073|0.41667 74074|0.43056 74075|0.25 74076|0.5 74077|0.52778 74078|0.69444 74079|0.48611 74080|0.30556 74081|0.38889 74082|0.23611 74083|0.61111 74084|0.63889 74085|0.58333 74086|0.52778 74087|0.63889 74088|0.56944 74089|0.625 74090|0.61111 74091|0.73611 74092|0.76389 74093|0.69444 74094|0.5 74095|0.45833 74096|0.5 74097|0.5 74098|0.48611 74099|0.5 74100|0.5 74101|0.26389 74102|0.45833 74103|0.5 74104|0.54167 74105|0.38889 74106|0.5 74107|0.56944 74108|0.52778 74109|0.77778 74110|0.69444 74111|0.5 74112|0.38889 74113|0.5 74114|0.83333 74115|0.5 74116|0.48611 74117|0.48611 74118|0.44444 74119|0.55556 74120|0.68056 74121|0.69444 74122|0.51389 74123|0.69444 74124|0.41667 74125|0.22222 74126|0.23611 74127|0.44444 74128|0.5 74129|0.5 74130|0.5 74131|0.44444 74132|0.5 74133|0.41667 74134|0.27778 74135|0.47222 74136|0.38889 74137|0.5 74138|0.51389 74139|0.5 74140|0.34722 74141|0.51389 74142|0.5 74143|0.5 74144|0.83333 74145|0.5 74146|0.5 74147|0.5 74148|0.52778 74149|0.38889 74150|0.5 74151|0.5 74152|0.5 74153|0.5 74154|0.34722 74155|0.45833 74156|0.38889 74157|0.5 74158|0.52778 74159|0.45833 74160|0.43056 74161|0.5 74162|0.70833 74163|0.33333 74164|0.56944 74165|0.55556 74166|0.41667 74167|0.51389 74168|0.51389 74169|0.63889 74170|0.5 74171|0.5 74172|0.45833 74173|0.38889 74174|0.48611 74175|0.55556 74176|0.45833 74177|0.5 74178|0.5 74179|0.5 74180|0.55556 74181|0.5 74182|0.68056 74183|0.41667 74184|0.75 74185|0.5 74186|0.5 74187|0.44444 74188|0.5 74189|0.88889 74190|0.31944 74191|0.70833 74192|0.61111 74193|0.5 74194|0.5 74195|0.5 74196|0.5 74197|0.5 74198|0.56944 74199|0.93056 74200|0.5 74201|0.5 74202|0.5 74203|0.58333 74204|0.45833 74205|0.45833 74206|0.51389 74207|0.65278 74208|0.44444 74209|0.61111 74210|0.5 74211|0.5 74212|0.43056 74213|0.5 74214|0.16667 74215|0.5 74216|0.5 74217|0.65278 74218|0.5 74219|0.51389 74220|0.69444 74221|0.55556 74222|0.75 74223|0.61111 74224|0.66667 74225|0.69444 74226|0.75 74227|0.5 74228|0.61111 74229|0.68056 74230|0.5 74231|0.52778 74232|0.51389 74233|0.52778 74234|0.90278 74235|0.76389 74236|0.68056 74237|0.30556 74238|0.5 74239|0.5 74240|0.5 74241|0.52778 74242|0.51389 74243|0.36111 74244|0.5 74245|0.5 74246|0.56944 74247|0.79167 74248|0.73611 74249|0.70833 74250|0.61111 74251|0.5 74252|0.68056 74253|0.75 74254|0.58333 74255|0.26389 74256|0.63889 74257|0.5 74258|0.61111 74259|0.47222 74260|0.31944 74261|0.51389 74262|0.56944 74263|0.5 74264|0.5 74265|0.55556 74266|0.59722 74267|0.55556 74268|0.5 74269|0.54167 74270|0.47222 74271|0.625 74272|0.61111 74273|0.625 74274|0.86111 74275|0.76389 74276|0.77778 74277|0.70833 74278|0.48611 74279|0.43056 74280|0.33333 74281|0.44444 74282|0.083333 74283|0.36111 74284|0.33333 74285|0.59722 74286|0.66667 74287|0.81944 74288|0.83333 74289|0.5 74290|0.45833 74291|0.75 74292|0.77778 74293|0.625 74294|0.5 74295|0.55556 74296|0.47222 74297|0.61111 74298|0.38889 74299|0.80556 74300|0.77778 74301|0.54167 74302|0.55556 74303|0.81944 74304|0.59722 74305|0.69444 74306|0.68056 74307|0.625 74308|0.5 74309|0.5 74310|0.77778 74311|0.72222 74312|0.51389 74313|0.54167 74314|0.41667 74315|0.22222 74316|0.63889 74317|0.51389 74318|0.625 74319|0.66667 74320|0.36111 74321|0.51389 74322|0.5 74323|0.58333 74324|0.45833 74325|0.76389 74326|0.70833 74327|0.70833 74328|0.58333 74329|0.58333 74330|0.61111 74331|0.55556 74332|0.55556 74333|0.5 74334|0.76389 74335|0.73611 74336|0.70833 74337|0.5 74338|0.81944 74339|0.58333 74340|0.81944 74341|0.69444 74342|0.79167 74343|0.73611 74344|0.65278 74345|0.58333 74346|0.66667 74347|0.625 74348|0.625 74349|0.52778 74350|0.73611 74351|0.61111 74352|0.56944 74353|0.59722 74354|0.45833 74355|0.31944 74356|0.79167 74357|0.79167 74358|0.19444 74359|0.58333 74360|0.43056 74361|0.58333 74362|0.61111 74363|0.80556 74364|0.55556 74365|0.79167 74366|0.72222 74367|0.72222 74368|0.5 74369|0.52778 74370|0.77778 74371|0.59722 74372|0.77778 74373|0.68056 74374|0.36111 74375|0.44444 74376|0.43056 74377|0.51389 74378|0.5 74379|0.77778 74380|0.25 74381|0.41667 74382|0.5 74383|0.77778 74384|0.56944 74385|0.43056 74386|0.51389 74387|0.45833 74388|0.88889 74389|0.52778 74390|0.56944 74391|0.73611 74392|0.79167 74393|0.80556 74394|0.5 74395|0.75 74396|0.80556 74397|0.66667 74398|0.45833 74399|0.5 74400|0.5 74401|0.75 74402|0.75 74403|0.70833 74404|0.84722 74405|0.65278 74406|0.68056 74407|0.65278 74408|0.48611 74409|0.76389 74410|0.83333 74411|0.86111 74412|0.5 74413|0.59722 74414|0.51389 74415|0.69444 74416|0.61111 74417|0.66667 74418|0.625 74419|0.61111 74420|0.625 74421|0.5 74422|0.66667 74423|0.56944 74424|0.5 74425|0.72222 74426|0.68056 74427|0.61111 74428|0.38889 74429|0.79167 74430|0.75 74431|0.69444 74432|0.72222 74433|0.44444 74434|0.54167 74435|0.5 74436|0.5 74437|0.5 74438|0.5 74439|0.79167 74440|0.83333 74441|0.40278 74442|0.36111 74443|0.27778 74444|0.48611 74445|0.59722 74446|0.72222 74447|0.22222 74448|0.40278 74449|0.26389 74450|0.63889 74451|0.55556 74452|0.80556 74453|0.88889 74454|0.5 74455|0.77778 74456|0.68056 74457|0.63889 74458|0.63889 74459|0.55556 74460|0.61111 74461|0.40278 74462|0.80556 74463|0.81944 74464|0.80556 74465|0.51389 74466|0.81944 74467|0.5 74468|0.5 74469|0.55556 74470|0.5 74471|0.61111 74472|0.51389 74473|0.5 74474|0.40278 74475|0.5 74476|0.5 74477|0.41667 74478|0.5 74479|0.5 74480|0.65278 74481|0.61111 74482|0.40278 74483|0.5 74484|0.19444 74485|0.63889 74486|0.47222 74487|0.5 74488|0.5 74489|0.72222 74490|0.68056 74491|0.5 74492|0.81944 74493|0.72222 74494|0.56944 74495|0.5 74496|0.5 74497|0.51389 74498|0.55556 74499|0.5 74500|0.48611 74501|0.56944 74502|0.5 74503|0.52778 74504|0.66667 74505|0.5 74506|0.55556 74507|0.54167 74508|0.55556 74509|0.27778 74510|0.69444 74511|0.72222 74512|0.54167 74513|0.61111 74514|0.52778 74515|0.51389 74516|0.58333 74517|0.77778 74518|0.58333 74519|0.77778 74520|0.76389 74521|0.65278 74522|0.79167 74523|0.61111 74524|0.59722 74525|0.72222 74526|0.70833 74527|0.75 74528|0.5 74529|0.69444 74530|0.59722 74531|0.69444 74532|0.79167 74533|0.61111 74534|0.55556 74535|0.54167 74536|0.55556 74537|0.5 74538|0.51389 74539|0.69444 74540|0.5 74541|0.5 74542|0.55556 74543|0.5 74544|0.58333 74545|0.77778 74546|0.55556 74547|0.44444 74548|0.625 74549|0.58333 74550|0.5 74551|0.55556 74552|0.5 74553|0.5 74554|0.5 74555|0.72222 74556|0.5 74557|0.5 74558|0.5 74559|0.51389 74560|0.73611 74561|0.5 74562|0.72222 74563|0.58333 74564|0.5 74565|0.44444 74566|0.38889 74567|0.61111 74568|0.5 74569|0.625 74570|0.58333 74571|0.56944 74572|0.66667 74573|0.66667 74574|0.69444 74575|0.625 74576|0.72222 74577|0.55556 74578|0.47222 74579|0.55556 74580|0.70833 74581|0.56944 74582|0.65278 74583|0.5 74584|0.93056 74585|0.56944 74586|0.375 74587|0.5 74588|0.5 74589|0.5 74590|0.44444 74591|0.58333 74592|0.94444 74593|0.80556 74594|0.59722 74595|0.52778 74596|0.625 74597|0.91667 74598|0.91667 74599|0.5 74600|0.63889 74601|0.69444 74602|0.33333 74603|0.76389 74604|0.5 74605|0.58333 74606|0.51389 74607|0.31944 74608|0.41667 74609|0.48611 74610|0.84722 74611|0.55556 74612|0.80556 74613|0.48611 74614|0.70833 74615|0.68056 74616|0.56944 74617|0.56944 74618|0.69444 74619|0.51389 74620|0.19444 74621|0.63889 74622|0.5 74623|0.51389 74624|0.54167 74625|0.5 74626|0.75 74627|0.70833 74628|0.5 74629|0.55556 74630|0.77778 74631|0.84722 74632|0.66667 74633|0.36111 74634|0.38889 74635|0.68056 74636|0.51389 74637|0.55556 74638|0.22222 74639|0.5 74640|0.5 74641|0.58333 74642|0.5 74643|0.52778 74644|0.5 74645|0.79167 74646|0.48611 74647|0.63889 74648|0.44444 74649|0.76389 74650|0.76389 74651|0.19444 74652|0.38889 74653|0.5 74654|0.72222 74655|0.58333 74656|0.59722 74657|0.55556 74658|0.63889 74659|0.83333 74660|0.61111 74661|0.83333 74662|0.73611 74663|0.63889 74664|0.70833 74665|0.77778 74666|0.61111 74667|0.41667 74668|0.68056 74669|0.76389 74670|0.66667 74671|0.5 74672|0.31944 74673|0.72222 74674|0.76389 74675|0.55556 74676|0.55556 74677|0.5 74678|0.5 74679|0.5 74680|0.70833 74681|0.66667 74682|0.41667 74683|0.25 74684|0.77778 74685|0.76389 74686|0.65278 74687|0.70833 74688|0.72222 74689|0.75 74690|0.79167 74691|0.73611 74692|0.73611 74693|0.73611 74694|0.77778 74695|0.44444 74696|0.65278 74697|0.55556 74698|0.54167 74699|0.44444 74700|0.79167 74701|0.5 74702|0.52778 74703|0.51389 74704|0.26389 74705|0.70833 74706|0.59722 74707|0.44444 74708|0.51389 74709|0.81944 74710|0.52778 74711|0.54167 74712|0.5 74713|0.66667 74714|0.55556 74715|0.51389 74716|0.625 74717|0.58333 74718|0.26389 74719|0.45833 74720|0.63889 74721|0.41667 74722|0.55556 74723|0.45833 74724|0.5 74725|0.69444 74726|0.55556 74727|0.5 74728|0.5 74729|0.5 74730|0.83333 74731|0.56944 74732|0.5 74733|0.36111 74734|0.5 74735|0.80556 74736|0.72222 74737|0.48611 74738|0.5 74739|0.5 74740|0.5 74741|0.5 74742|0.5 74743|0.5 74744|0.68056 74745|0.51389 74746|0.91667 74747|0.80556 74748|0.41667 74749|0.5 74750|0.5 74751|0.88889 74752|0.5 74753|0.93056 74754|0.52778 74755|0.625 74756|0.54167 74757|0.54167 74758|0.5 74759|0.69444 74760|0.55556 74761|0.5 74762|0.58333 74763|0.22222 74764|0.59722 74765|0.33333 74766|0.88889 74767|0.5 74768|0.5 74769|0.55556 74770|0.55556 74771|0.76389 74772|0.79167 74773|0.5 74774|0.5 74775|0.33333 74776|0.52778 74777|0.63889 74778|0.51389 74779|0.54167 74780|0.66667 74781|0.73611 74782|0.65278 74783|0.61111 74784|0.15278 74785|0.055556 74786|0.45833 74787|0.55556 74788|0.54167 74789|0.51389 74790|0.5 74791|0.5 74792|0.81944 74793|0.54167 74794|0.79167 74795|0.98611 74796|0.68056 74797|0.61111 74798|0.61111 74799|0.5 74800|0.5 74801|0.58333 74802|0.77778 74803|0.51389 74804|0.51389 74805|0.76389 74806|0.38889 74807|0.47222 74808|0.5 74809|0.5 74810|0.54167 74811|0.875 74812|0.55556 74813|0.5 74814|0.44444 74815|0.48611 74816|0.66667 74817|0.27778 74818|0.5 74819|0.43056 74820|0.59722 74821|0.5 74822|0.72222 74823|0.75 74824|0.59722 74825|0.5 74826|0.69444 74827|0.72222 74828|0.65278 74829|0.66667 74830|0.66667 74831|0.77778 74832|0.70833 74833|0.73611 74834|0.5 74835|0.56944 74836|0.33333 74837|0.56944 74838|0.55556 74839|0.40278 74840|0.5 74841|0.59722 74842|0.45833 74843|0.70833 74844|0.68056 74845|0.55556 74846|0.61111 74847|0.5 74848|0.55556 74849|0.77778 74850|0.52778 74851|0.75 74852|0.5 74853|0.55556 74854|0.56944 74855|0.5 74856|0.5 74857|0.79167 74858|0.58333 74859|0.5 74860|0.5 74861|0.16667 74862|0.5 74863|0.59722 74864|0.75 74865|0.31944 74866|0.5 74867|0.44444 74868|0.43056 74869|0.5 74870|0.38889 74871|0.27778 74872|0.41667 74873|0.5 74874|0.5 74875|0.47222 74876|0.47222 74877|0.625 74878|0.68056 74879|0.61111 74880|0.51389 74881|0.59722 74882|0.61111 74883|0.625 74884|0.88889 74885|0.875 74886|0.66667 74887|0.875 74888|0.76389 74889|0.86111 74890|0.95833 74891|0.94444 74892|0.5 74893|0.5 74894|0.54167 74895|0.41667 74896|0.22222 74897|0.5 74898|0.54167 74899|0.73611 74900|0.5 74901|0.5 74902|0.5 74903|0.55556 74904|0.5 74905|0.56944 74906|0.44444 74907|0.5 74908|0.54167 74909|0.51389 74910|0.55556 74911|0.38889 74912|0.72222 74913|0.59722 74914|0.59722 74915|0.5 74916|0.55556 74917|0.48611 74918|0.5 74919|0.41667 74920|0.48611 74921|0.36111 74922|0.55556 74923|0.72222 74924|0.5 74925|0.55556 74926|0.76389 74927|0.5 74928|0.41667 74929|0.80556 74930|0.75 74931|0.625 74932|0.54167 74933|0.45833 74934|0.5 74935|0.61111 74936|0.66667 74937|0.56944 74938|0.68056 74939|0.48611 74940|0.63889 74941|0.55556 74942|0.66667 74943|0.80556 74944|0.5 74945|0.58333 74946|0.5 74947|0.63889 74948|0.52778 74949|0.5 74950|0.5 74951|0.58333 74952|0.63889 74953|0.5 74954|0.80556 74955|0.75 74956|0.73611 74957|0.55556 74958|0.61111 74959|0.65278 74960|0.83333 74961|0.83333 74962|0.81944 74963|0.84722 74964|0.83333 74965|0.84722 74966|0.38889 74967|0.15278 74968|0.52778 74969|0.44444 74970|0.5 74971|0.43056 74972|0.5 74973|0.5 74974|0.54167 74975|0.5 74976|0.5 74977|0.43056 74978|0.5 74979|0.51389 74980|0.5 74981|0.5 74982|0.66667 74983|0.77778 74984|0.88889 74985|0.5 74986|0.76389 74987|0.55556 74988|0.15278 74989|0.55556 74990|0.44444 74991|0.51389 74992|0.52778 74993|0.65278 74994|0.51389 74995|0.5 74996|0.5 74997|0.36111 74998|0.5 74999|0.69444 75000|0.375 75001|0.5 75002|0.23611 75003|0.45833 75004|0.5 75005|0.5 75006|0.5 75007|0.52778 75008|0.54167 75009|0.5 75010|0.55556 75011|0.55556 75012|0.5 75013|0.52778 75014|0.51389 75015|0.5 75016|0.47222 75017|0.59722 75018|0.63889 75019|0.55556 75020|0.51389 75021|0.34722 75022|0.51389 75023|0.45833 75024|0.55556 75025|0.5 75026|0.5 75027|0.5 75028|0.45833 75029|0.40278 75030|0.5 75031|0.61111 75032|0.56944 75033|0.5 75034|0.54167 75035|0.76389 75036|0.80556 75037|0.59722 75038|0.61111 75039|0.72222 75040|0.80556 75041|0.27778 75042|0.625 75043|0.29167 75044|0.5 75045|0.5 75046|0.55556 75047|0.72222 75048|0.5 75049|0.81944 75050|0.5 75051|0.5 75052|0.48611 75053|0.59722 75054|0.51389 75055|0.72222 75056|0.44444 75057|0.5 75058|0.61111 75059|0.55556 75060|0.5 75061|0.5 75062|0.5 75063|0.69444 75064|0.54167 75065|0.77778 75066|0.5 75067|0.52778 75068|0.51389 75069|0.47222 75070|0.44444 75071|0.65278 75072|0.51389 75073|0.55556 75074|0.58333 75075|0.5 75076|0.48611 75077|0.70833 75078|0.5 75079|0.625 75080|0.5 75081|0.83333 75082|0.38889 75083|0.63889 75084|0.36111 75085|0.44444 75086|0.61111 75087|0.51389 75088|0.52778 75089|0.55556 75090|0.66667 75091|0.83333 75092|0.47222 75093|0.55556 75094|0.76389 75095|0.52778 75096|0.59722 75097|0.65278 75098|0.73611 75099|0.80556 75100|0.63889 75101|0.875 75102|0.91667 75103|0.41667 75104|0.19444 75105|0.73611 75106|0.875 75107|0.36111 75108|0.38889 75109|0.38889 75110|0.52778 75111|0.5 75112|0.22222 75113|0.44444 75114|0.5 75115|0.5 75116|0.56944 75117|0.5 75118|0.5 75119|0.56944 75120|0.5 75121|0.5 75122|0.51389 75123|0.45833 75124|0.16667 75125|0.30556 75126|0.26389 75127|0.33333 75128|0.16667 75129|0.055556 75130|0.38889 75131|0.38889 75132|0.33333 75133|0.33333 75134|0.375 75135|0.34722 75136|0.43056 75137|0.52778 75138|0.5 75139|0.77778 75140|0.65278 75141|0.80556 75142|0.51389 75143|0.61111 75144|0.79167 75145|0.77778 75146|0.81944 75147|0.76389 75148|0.77778 75149|0.75 75150|0.69444 75151|0.51389 75152|0.61111 75153|0.47222 75154|0.5 75155|0.55556 75156|0.5 75157|0.5 75158|0.5 75159|0.44444 75160|0.375 75161|0.40278 75162|0.5 75163|0.5 75164|0.5 75165|0.5 75166|0.5 75167|0.33333 75168|0.72222 75169|0.68056 75170|0.5 75171|0.5 75172|0.5 75173|0.5 75174|0.5 75175|0.5 75176|0.75 75177|0.27778 75178|0.5 75179|0.48611 75180|0.625 75181|0.52778 75182|0.625 75183|0.5 75184|0.56944 75185|0.59722 75186|0.72222 75187|0.5 75188|0.76389 75189|0.5 75190|0.56944 75191|0.5 75192|0.51389 75193|0.44444 75194|0.5 75195|0.63889 75196|0.5 75197|0.27778 75198|0.33333 75199|0.69444 75200|0.56944 75201|0.625 75202|0.875 75203|0.54167 75204|0.55556 75205|0.58333 75206|0.5 75207|0.55556 75208|0.625 75209|0.77778 75210|0.55556 75211|0.69444 75212|0.61111 75213|0.40278 75214|0.44444 75215|0.61111 75216|0.5 75217|0.5 75218|0.47222 75219|0.51389 75220|0.61111 75221|0.80556 75222|0.41667 75223|0.69444 75224|0.375 75225|0.47222 75226|0.66667 75227|0.33333 75228|0.48611 75229|0.72222 75230|0.5 75231|0.83333 75232|0.73611 75233|0.875 75234|0.79167 75235|0.83333 75236|0.75 75237|0.88889 75238|0.41667 75239|0.36111 75240|0.55556 75241|0.5 75242|0.45833 75243|0.77778 75244|0.75 75245|0.72222 75246|0.22222 75247|0.68056 75248|0.95833 75249|0.33333 75250|0.38889 75251|0.77778 75252|0.73611 75253|0.70833 75254|0.5 75255|0.61111 75256|0.72222 75257|0.55556 75258|0.68056 75259|0.625 75260|0.61111 75261|0.5 75262|0.68056 75263|0.54167 75264|0.45833 75265|0.45833 75266|0.66667 75267|0.63889 75268|0.5 75269|0.56944 75270|0.54167 75271|0.52778 75272|0.5 75273|0.65278 75274|0.625 75275|0.5 75276|0.5 75277|0.47222 75278|0.5 75279|0.56944 75280|0.56944 75281|0.55556 75282|0.72222 75283|0.5 75284|0.55556 75285|0.45833 75286|0.66667 75287|0.34722 75288|0.81944 75289|0.83333 75290|0.63889 75291|0.56944 75292|0.5 75293|0.76389 75294|0.55556 75295|0.5 75296|0.38889 75297|0.51389 75298|0.5 75299|0.51389 75300|0.86111 75301|0.55556 75302|0.44444 75303|0.625 75304|0.65278 75305|0.5 75306|0.38889 75307|0.56944 75308|0.5 75309|0.5 75310|0.72222 75311|0.34722 75312|0.81944 75313|0.58333 75314|0.19444 75315|0.38889 75316|0.27778 75317|0.5 75318|0.61111 75319|0.66667 75320|0.47222 75321|0.73611 75322|0.61111 75323|0.80556 75324|0.75 75325|0.75 75326|0.5 75327|0.93056 75328|0.68056 75329|0.65278 75330|0.66667 75331|0.73611 75332|0.66667 75333|0.5 75334|0.44444 75335|0.70833 75336|0.66667 75337|0.5 75338|0.5 75339|0.69444 75340|0.38889 75341|0.38889 75342|0.72222 75343|0.59722 75344|0.44444 75345|0.55556 75346|0.83333 75347|0.81944 75348|0.52778 75349|0.63889 75350|0.43056 75351|0.47222 75352|0.43056 75353|0.56944 75354|0.43056 75355|0.61111 75356|0.72222 75357|0.76389 75358|0.79167 75359|0.94444 75360|0.70833 75361|0.875 75362|0.84722 75363|0.65278 75364|0.77778 75365|0.61111 75366|0.80556 75367|0.875 75368|0.93056 75369|0.84722 75370|0.97222 75371|0.86111 75372|0.72222 75373|0.77778 75374|0.83333 75375|0.77778 75376|0.88889 75377|0.69444 75378|0.70833 75379|0.76389 75380|0.76389 75381|0.81944 75382|0.52778 75383|0.72222 75384|0.69444 75385|0.56944 75386|0.5 75387|0.80556 75388|0.65278 75389|0.58333 75390|0.5 75391|0.59722 75392|0.5 75393|0.48611 75394|0.83333 75395|0.65278 75396|0.625 75397|0.27778 75398|0.51389 75399|0.73611 75400|0.5 75401|0.5 75402|0.75 75403|0.77778 75404|0.66667 75405|0.73611 75406|0.5 75407|0.27778 75408|0.30556 75409|0.52778 75410|0.5 75411|0.45833 75412|0.5 75413|0.51389 75414|0.875 75415|0.55556 75416|0.76389 75417|0.94444 75418|0.5 75419|0.51389 75420|0.45833 75421|0.44444 75422|0.51389 75423|0.51389 75424|0.48611 75425|0.48611 75426|0.56944 75427|0.36111 75428|0.44444 75429|0.38889 75430|0.58333 75431|0.55556 75432|0.48611 75433|0.65278 75434|0.625 75435|0.65278 75436|0.80556 75437|0.80556 75438|0.5 75439|0.40278 75440|0.58333 75441|0.75 75442|0.5 75443|0.5 75444|0.5 75445|0.5 75446|0.5 75447|0.51389 75448|0.34722 75449|0.72222 75450|0.54167 75451|0.68056 75452|0.40278 75453|0.5 75454|0.63889 75455|0.29167 75456|0.65278 75457|0.18056 75458|0.43056 75459|0.61111 75460|0.45833 75461|0.27778 75462|0.44444 75463|0.31944 75464|0.66667 75465|0.34722 75466|0.66667 75467|0.18056 75468|0.61111 75469|0.31944 75470|0.5 75471|0.69444 75472|0.45833 75473|0.625 75474|0.76389 75475|0.45833 75476|0.55556 75477|0.88889 75478|0.65278 75479|0.38889 75480|0.54167 75481|0.5 75482|0.59722 75483|0.5 75484|0.54167 75485|0.58333 75486|0.5 75487|0.47222 75488|0.55556 75489|0.5 75490|0.375 75491|0.77778 75492|0.83333 75493|0.47222 75494|0.44444 75495|0.61111 75496|0.36111 75497|0.44444 75498|0.33333 75499|0.29167 75500|0.52778 75501|0.26389 75502|0.52778 75503|0.58333 75504|0.5 75505|0.52778 75506|0.5 75507|0.45833 75508|0.15278 75509|0.59722 75510|0.51389 75511|0.5 75512|0.56944 75513|0.47222 75514|0.47222 75515|0.5 75516|0.72222 75517|0.43056 75518|0.625 75519|0.47222 75520|0.52778 75521|0.40278 75522|0.5 75523|0.31944 75524|0.55556 75525|0.72222 75526|0.40278 75527|0.61111 75528|0.55556 75529|0.41667 75530|0.5 75531|0.33333 75532|0.5 75533|0.51389 75534|0.51389 75535|0.40278 75536|0.52778 75537|0.83333 75538|0.47222 75539|0.72222 75540|0.5 75541|0.58333 75542|0.61111 75543|0.75 75544|0.73611 75545|0.58333 75546|0.5 75547|0.55556 75548|0.72222 75549|0.44444 75550|0.55556 75551|0.41667 75552|0.52778 75553|0.69444 75554|0.41667 75555|0.43056 75556|0.43056 75557|0.77778 75558|0.88889 75559|0.76389 75560|0.5 75561|0.76389 75562|0.75 75563|0.40278 75564|0.45833 75565|0.58333 75566|0.47222 75567|0.51389 75568|0.70833 75569|0.70833 75570|0.69444 75571|0.54167 75572|0.75 75573|0.77778 75574|0.70833 75575|0.70833 75576|0.61111 75577|0.73611 75578|0.66667 75579|0.59722 75580|0.84722 75581|0.84722 75582|0.77778 75583|0.93056 75584|0.66667 75585|0.70833 75586|0.72222 75587|0.86111 75588|0.83333 75589|0.63889 75590|0.91667 75591|0.68056 75592|0.79167 75593|0.88889 75594|0.79167 75595|0.61111 75596|0.77778 75597|0.88889 75598|0.81944 75599|0.88889 75600|0.77778 75601|0.88889 75602|0.70833 75603|0.75 75604|0.77778 75605|0.38889 75606|0.84722 75607|0.52778 75608|0.33333 75609|0.66667 75610|0.61111 75611|0.59722 75612|0.73611 75613|0.66667 75614|0.63889 75615|0.27778 75616|0.5 75617|0.47222 75618|0.68056 75619|0.72222 75620|0.83333 75621|0.72222 75622|0.38889 75623|0.5 75624|0.61111 75625|0.61111 75626|0.5 75627|0.5 75628|0.5 75629|0.55556 75630|0.44444 75631|0.52778 75632|0.56944 75633|0.75 75634|0.54167 75635|0.40278 75636|0.51389 75637|0.55556 75638|0.5 75639|0.56944 75640|0.5 75641|0.61111 75642|0.44444 75643|0.55556 75644|0.5 75645|0.5 75646|0.43056 75647|0.5 75648|0.47222 75649|0.79167 75650|0.83333 75651|0.77778 75652|0.5 75653|0.66667 75654|0.77778 75655|0.56944 75656|0.625 75657|0.84722 75658|0.81944 75659|0.66667 75660|0.56944 75661|0.36111 75662|0.33333 75663|0.36111 75664|0.5 75665|0.44444 75666|0.66667 75667|0.84722 75668|0.34722 75669|0.5 75670|0.63889 75671|0.43056 75672|0.52778 75673|0.55556 75674|0.5 75675|0.77778 75676|0.54167 75677|0.5 75678|0.5 75679|0.58333 75680|0.5 75681|0.55556 75682|0.72222 75683|0.61111 75684|0.54167 75685|0.47222 75686|0.5 75687|0.80556 75688|0.88889 75689|0.51389 75690|0.65278 75691|0.63889 75692|0.63889 75693|0.5 75694|0.44444 75695|0.66667 75696|0.70833 75697|0.61111 75698|0.43056 75699|0.5 75700|0.5 75701|0.51389 75702|0.625 75703|0.63889 75704|0.5 75705|0.40278 75706|0.15278 75707|0.68056 75708|0.5 75709|0.55556 75710|0.55556 75711|0.5 75712|0.47222 75713|0.76389 75714|0.68056 75715|0.63889 75716|0.54167 75717|0.44444 75718|0.41667 75719|0.61111 75720|0.40278 75721|0.52778 75722|0.38889 75723|0.5 75724|0.43056 75725|0.63889 75726|0.54167 75727|0.44444 75728|0.625 75729|0.27778 75730|0.45833 75731|0.22222 75732|0.61111 75733|0.76389 75734|0.86111 75735|0.48611 75736|0.44444 75737|0.51389 75738|0.5 75739|0.52778 75740|0.44444 75741|0.375 75742|0.5 75743|0.72222 75744|0.77778 75745|0.68056 75746|0.51389 75747|0.61111 75748|0.63889 75749|0.34722 75750|0.5 75751|0.5 75752|0.72222 75753|0.40278 75754|0.66667 75755|0.5 75756|0.52778 75757|0.5 75758|0.44444 75759|0.5 75760|0.625 75761|0.44444 75762|0.47222 75763|0.33333 75764|0.29167 75765|0.22222 75766|0.097222 75767|0.5 75768|0.66667 75769|0.34722 75770|0.5 75771|0.5 75772|0.38889 75773|0.43056 75774|0.5 75775|0.55556 75776|0.5 75777|0.83333 75778|0.81944 75779|0.43056 75780|0.16667 75781|0.47222 75782|0.51389 75783|0.47222 75784|0.55556 75785|0.83333 75786|0.66667 75787|0.61111 75788|0.625 75789|0.55556 75790|0.5 75791|0.66667 75792|0.90278 75793|0.29167 75794|0.69444 75795|0.69444 75796|0.51389 75797|0.44444 75798|0.59722 75799|0.63889 75800|0.44444 75801|0.11111 75802|0.63889 75803|0.65278 75804|0.51389 75805|0.51389 75806|0.44444 75807|0.52778 75808|0.5 75809|0.5 75810|0.40278 75811|0.41667 75812|0.65278 75813|0.61111 75814|0.55556 75815|0.40278 75816|0.5 75817|0.54167 75818|0.56944 75819|0.90278 75820|0.76389 75821|0.44444 75822|0.375 75823|0.5 75824|0.48611 75825|0.45833 75826|0.48611 75827|0.54167 75828|0.5 75829|0.5 75830|0.5 75831|0.5 75832|0.61111 75833|0.73611 75834|0.66667 75835|0.58333 75836|0.68056 75837|0.51389 75838|0.47222 75839|0.77778 75840|0.52778 75841|0.48611 75842|0.41667 75843|0.84722 75844|0.66667 75845|0.76389 75846|0.51389 75847|0.58333 75848|0.5 75849|0.61111 75850|0.5 75851|0.79167 75852|0.51389 75853|0.56944 75854|0.38889 75855|0.56944 75856|0.72222 75857|0.43056 75858|0.86111 75859|0.5 75860|0.51389 75861|0.59722 75862|0.52778 75863|0.45833 75864|0.48611 75865|0.5 75866|0.5 75867|0.61111 75868|0.5 75869|0.70833 75870|0.65278 75871|0.59722 75872|0.56944 75873|0.66667 75874|0.5 75875|0.56944 75876|0.72222 75877|0.59722 75878|0.77778 75879|0.72222 75880|0.68056 75881|0.55556 75882|0.44444 75883|0.66667 75884|0.44444 75885|0.5 75886|0.45833 75887|0.61111 75888|0.5 75889|0.51389 75890|0.55556 75891|0.66667 75892|0.5 75893|0.52778 75894|0.73611 75895|0.68056 75896|0.5 75897|0.43056 75898|0.56944 75899|0.48611 75900|0.86111 75901|0.63889 75902|0.5 75903|0.5 75904|0.5 75905|0.48611 75906|0.63889 75907|0.76389 75908|0.61111 75909|0.52778 75910|0.51389 75911|0.63889 75912|0.55556 75913|0.69444 75914|0.77778 75915|0.5 75916|0.63889 75917|0.69444 75918|0.75 75919|0.81944 75920|0.76389 75921|0.75 75922|0.61111 75923|0.81944 75924|0.79167 75925|1 75926|0.34722 75927|0.69444 75928|0.61111 75929|0.56944 75930|0.5 75931|0.5 75932|0.5 75933|0.44444 75934|0.52778 75935|0.81944 75936|0.69444 75937|0.58333 75938|0.77778 75939|0.70833 75940|0.86111 75941|0.75 75942|0.84722 75943|0.97222 75944|0.94444 75945|0.5 75946|0.44444 75947|0.43056 75948|0.61111 75949|0.79167 75950|0.79167 75951|0.5 75952|0.76389 75953|0.88889 75954|0.625 75955|0.61111 75956|0.75 75957|0.625 75958|0.5 75959|0.51389 75960|0.73611 75961|0.52778 75962|0.86111 75963|0.68056 75964|0.76389 75965|0.65278 75966|0.79167 75967|0.68056 75968|0.70833 75969|0.625 75970|0.61111 75971|0.77778 75972|0.79167 75973|0.66667 75974|0.52778 75975|0.5 75976|0.77778 75977|0.75 75978|0.73611 75979|0.75 75980|0.48611 75981|0.63889 75982|0.40278 75983|0.31944 75984|0.61111 75985|0.55556 75986|0.51389 75987|0.625 75988|0.5 75989|0.43056 75990|0.36111 75991|0.27778 75992|0.45833 75993|0.625 75994|0.63889 75995|0.44444 75996|0.52778 75997|0.48611 75998|0.40278 75999|0.5 76000|0.83333 76001|0.58333 76002|0.5 76003|0.5 76004|0.47222 76005|0.61111 76006|0.51389 76007|0.81944 76008|0.58333 76009|0.52778 76010|0.5 76011|0.625 76012|0.75 76013|0.5 76014|0.5 76015|0.55556 76016|0.51389 76017|0.41667 76018|0.52778 76019|0.47222 76020|0.5 76021|0.5 76022|0.51389 76023|0.5 76024|0.5 76025|0.65278 76026|0.61111 76027|0.81944 76028|0.83333 76029|0.83333 76030|0.51389 76031|0.5 76032|0.5 76033|0.5 76034|0.5 76035|0.44444 76036|0.5 76037|0.76389 76038|0.51389 76039|0.76389 76040|0.68056 76041|0.59722 76042|0.47222 76043|0.5 76044|0.47222 76045|0.48611 76046|0.375 76047|0.47222 76048|0.31944 76049|0.73611 76050|0.52778 76051|0.61111 76052|0.72222 76053|0.51389 76054|0.56944 76055|0.70833 76056|0.47222 76057|0.61111 76058|0.66667 76059|0.77778 76060|0.5 76061|0.68056 76062|0.36111 76063|0.5 76064|0.5 76065|0.59722 76066|0.58333 76067|0.5 76068|0.80556 76069|0.51389 76070|0.75 76071|0.5 76072|0.63889 76073|0.66667 76074|0.27778 76075|0.20833 76076|0.41667 76077|0.22222 76078|0.375 76079|0.68056 76080|0.5 76081|0.56944 76082|0.63889 76083|0.51389 76084|0.54167 76085|0.63889 76086|0.73611 76087|0.59722 76088|0.66667 76089|0.66667 76090|0.5 76091|0.63889 76092|0.48611 76093|0.54167 76094|0.44444 76095|0.84722 76096|0.65278 76097|0.40278 76098|0.70833 76099|0.5 76100|0.5 76101|0.5 76102|0.5 76103|0.51389 76104|0.54167 76105|0.5 76106|0.5 76107|0.5 76108|0.58333 76109|0.5 76110|0.65278 76111|0.5 76112|0.5 76113|0.5 76114|0.55556 76115|0.5 76116|0.625 76117|0.5 76118|0.58333 76119|0.5 76120|0.54167 76121|0.5 76122|0.69444 76123|0.45833 76124|0.5 76125|0.5 76126|0.5 76127|0.66667 76128|0.59722 76129|0.61111 76130|0.77778 76131|0.125 76132|0.54167 76133|0.94444 76134|0.59722 76135|0.375 76136|0.54167 76137|0.44444 76138|0.51389 76139|0.47222 76140|0.76389 76141|0.5 76142|0.52778 76143|0.75 76144|0.79167 76145|0.5 76146|0.79167 76147|0.56944 76148|0.625 76149|0.66667 76150|0.86111 76151|0.34722 76152|0.80556 76153|0.58333 76154|0.56944 76155|0.34722 76156|0.55556 76157|0.34722 76158|0.45833 76159|0.5 76160|0.51389 76161|0.16667 76162|0.29167 76163|0.5 76164|0.55556 76165|0.5 76166|0.73611 76167|0.27778 76168|0.94444 76169|0.5 76170|0.33333 76171|0.61111 76172|0.54167 76173|0.43056 76174|0.375 76175|0.5 76176|0.70833 76177|0.83333 76178|0.59722 76179|0.59722 76180|0.55556 76181|0.56944 76182|0.5 76183|0.5 76184|0.58333 76185|0.61111 76186|0.45833 76187|0.55556 76188|0.5 76189|0.625 76190|0.5 76191|0.52778 76192|0.51389 76193|0.5 76194|0.52778 76195|0.69444 76196|0.5 76197|0.51389 76198|0.5 76199|0.45833 76200|0.41667 76201|0.65278 76202|0.55556 76203|0.5 76204|0.47222 76205|0.43056 76206|0.94444 76207|0.65278 76208|0.51389 76209|0.5 76210|0.69444 76211|0.5 76212|0.52778 76213|0.65278 76214|0.47222 76215|0.56944 76216|0.33333 76217|0.5 76218|0.5 76219|0.83333 76220|0.5 76221|0.58333 76222|0.5 76223|0.5 76224|0.5 76225|0.86111 76226|0.55556 76227|0.76389 76228|0.54167 76229|0.38889 76230|0.77778 76231|0.5 76232|0.5 76233|0.51389 76234|0.65278 76235|0.69444 76236|0.5 76237|0.5 76238|0.75 76239|0.5 76240|0.55556 76241|0.48611 76242|0.68056 76243|0.66667 76244|0.54167 76245|0.51389 76246|0.375 76247|0.73611 76248|0.75 76249|0.83333 76250|0.72222 76251|0.73611 76252|0.70833 76253|0.75 76254|0.54167 76255|0.38889 76256|0.19444 76257|0.38889 76258|0.33333 76259|0.47222 76260|0.59722 76261|0.69444 76262|0.86111 76263|0.88889 76264|0.23611 76265|0.51389 76266|0.5 76267|0.5 76268|0.5 76269|0.19444 76270|0.77778 76271|0.48611 76272|0.59722 76273|0.5 76274|0.54167 76275|0.48611 76276|0.5 76277|0.44444 76278|0.93056 76279|0.38889 76280|0.5 76281|0.5 76282|0.5 76283|0.55556 76284|0.5 76285|0.54167 76286|0.59722 76287|0.75 76288|0.58333 76289|0.72222 76290|0.5 76291|0.5 76292|0.59722 76293|0.72222 76294|0.5 76295|0.5 76296|0.5 76297|0.41667 76298|0.41667 76299|0.41667 76300|0.5 76301|0.41667 76302|0.52778 76303|0.5 76304|0.5 76305|0.59722 76306|0.5 76307|0.51389 76308|0.51389 76309|0.5 76310|0.5 76311|0.56944 76312|0.68056 76313|0.83333 76314|0.84722 76315|0.5 76316|0.51389 76317|0.76389 76318|0.75 76319|0.40278 76320|0.59722 76321|0.56944 76322|0.5 76323|0.55556 76324|0.58333 76325|0.33333 76326|0.44444 76327|0.5 76328|0.75 76329|0.5 76330|0.63889 76331|0.80556 76332|0.81944 76333|0.36111 76334|0.72222 76335|0.61111 76336|0.48611 76337|0.59722 76338|0.77778 76339|0.59722 76340|0.65278 76341|0.68056 76342|0.69444 76343|0.77778 76344|0.40278 76345|0.38889 76346|0.5 76347|0.44444 76348|0.5 76349|0.58333 76350|0.625 76351|0.76389 76352|0.72222 76353|0.54167 76354|0.56944 76355|0.5 76356|0.65278 76357|0.70833 76358|0.55556 76359|0.76389 76360|0.51389 76361|0.5 76362|0.88889 76363|0.73611 76364|0.5 76365|0.54167 76366|0.5 76367|0.61111 76368|0.5 76369|0.69444 76370|0.55556 76371|0.52778 76372|0.55556 76373|0.75 76374|0.76389 76375|0.55556 76376|0.5 76377|0.625 76378|0.54167 76379|0.30556 76380|0.5 76381|0.51389 76382|0.61111 76383|0.83333 76384|0.56944 76385|0.52778 76386|0.55556 76387|0.625 76388|0.52778 76389|0.63889 76390|0.48611 76391|0.65278 76392|0.63889 76393|0.66667 76394|0.5 76395|0.55556 76396|0.5 76397|0.5 76398|0.5 76399|0.59722 76400|0.5 76401|0.77778 76402|0.45833 76403|0.44444 76404|0.47222 76405|0.48611 76406|0.48611 76407|0.58333 76408|0.61111 76409|0.94444 76410|0.76389 76411|0.59722 76412|0.81944 76413|0.55556 76414|0.63889 76415|0.73611 76416|0.73611 76417|0.61111 76418|0.375 76419|0.59722 76420|0.54167 76421|0.70833 76422|0.47222 76423|0.61111 76424|0.73611 76425|0.72222 76426|0.76389 76427|0.75 76428|0.70833 76429|0.69444 76430|0.77778 76431|0.61111 76432|0.5 76433|0.54167 76434|0.66667 76435|0.76389 76436|0.76389 76437|0.16667 76438|0.58333 76439|0.51389 76440|0.52778 76441|0.5 76442|0.26389 76443|0.69444 76444|0.83333 76445|0.79167 76446|0.875 76447|0.84722 76448|0.56944 76449|0.69444 76450|0.58333 76451|0.61111 76452|0.75 76453|0.75 76454|0.45833 76455|0.375 76456|0.48611 76457|0.5 76458|0.5 76459|0.55556 76460|0.44444 76461|0.68056 76462|0.77778 76463|0.51389 76464|0.75 76465|0.81944 76466|0.77778 76467|0.51389 76468|0.625 76469|0.76389 76470|0.83333 76471|0.79167 76472|0.5 76473|0.69444 76474|0.5 76475|0.5 76476|0.61111 76477|0.5 76478|0.51389 76479|0.61111 76480|0.5 76481|0.48611 76482|0.5 76483|0.66667 76484|0.56944 76485|0.5 76486|0.5 76487|0.54167 76488|0.66667 76489|0.55556 76490|0.47222 76491|0.5 76492|0.41667 76493|0.625 76494|0.58333 76495|0.47222 76496|0.55556 76497|0.59722 76498|0.56944 76499|0.45833 76500|0.5 76501|0.47222 76502|0.58333 76503|0.66667 76504|0.81944 76505|0.52778 76506|0.5 76507|0.54167 76508|0.56944 76509|0.55556 76510|0.56944 76511|0.73611 76512|0.83333 76513|0.79167 76514|0.69444 76515|0.72222 76516|0.5 76517|0.76389 76518|0.59722 76519|0.56944 76520|0.51389 76521|0.44444 76522|0.69444 76523|0.54167 76524|0.52778 76525|0.48611 76526|0.56944 76527|0.44444 76528|0.38889 76529|0.38889 76530|0.59722 76531|0.5 76532|0.66667 76533|0.55556 76534|0.5 76535|0.48611 76536|0.5 76537|0.66667 76538|0.38889 76539|0.56944 76540|0.54167 76541|0.5 76542|0.52778 76543|0.5 76544|0.55556 76545|0.54167 76546|0.5 76547|0.63889 76548|0.875 76549|0.56944 76550|0.44444 76551|0.5 76552|0.65278 76553|0.68056 76554|0.33333 76555|0.81944 76556|0.79167 76557|0.55556 76558|0.55556 76559|0.70833 76560|0.47222 76561|0.70833 76562|0.43056 76563|0.61111 76564|0.72222 76565|0.73611 76566|0.61111 76567|0.72222 76568|0.65278 76569|0.55556 76570|0.5 76571|0.55556 76572|0.59722 76573|0.5 76574|0.48611 76575|0.5 76576|0.51389 76577|0.5 76578|0.5 76579|0.54167 76580|0.625 76581|0.5 76582|0.54167 76583|0.65278 76584|0.5 76585|0.43056 76586|0.66667 76587|0.70833 76588|0.63889 76589|0.5 76590|0.83333 76591|0.66667 76592|0.5 76593|0.72222 76594|0.54167 76595|0.51389 76596|0.44444 76597|0.54167 76598|0.5 76599|0.55556 76600|0.58333 76601|0.61111 76602|0.11111 76603|0.63889 76604|0.47222 76605|0.77778 76606|0.56944 76607|0.81944 76608|0.68056 76609|0.70833 76610|0.79167 76611|0.77778 76612|0.76389 76613|0.77778 76614|0.51389 76615|0.65278 76616|0.68056 76617|0.625 76618|0.44444 76619|0.45833 76620|0.5 76621|0.36111 76622|0.55556 76623|0.54167 76624|0.27778 76625|0.41667 76626|0.34722 76627|0.15278 76628|0.38889 76629|0.54167 76630|0.69444 76631|0.5 76632|0.5 76633|0.61111 76634|0.70833 76635|0.61111 76636|0.5 76637|0.61111 76638|0.61111 76639|0.68056 76640|0.69444 76641|0.29167 76642|0.47222 76643|0.52778 76644|0.5 76645|0.51389 76646|0.5 76647|0.26389 76648|0.5 76649|0.25 76650|0.55556 76651|0.5 76652|0.55556 76653|0.58333 76654|0.48611 76655|0.5 76656|0.48611 76657|0.5 76658|0.5 76659|0.72222 76660|0.625 76661|0.75 76662|0.5 76663|0.375 76664|0.44444 76665|0.58333 76666|0.54167 76667|0.63889 76668|0.63889 76669|0.5 76670|0.81944 76671|0.79167 76672|0.68056 76673|0.41667 76674|0.70833 76675|0.66667 76676|0.77778 76677|0.41667 76678|0.55556 76679|0.5 76680|0.5 76681|0.51389 76682|0.61111 76683|0.63889 76684|0.61111 76685|0.47222 76686|0.47222 76687|0.52778 76688|0.63889 76689|0.41667 76690|0.48611 76691|0.5 76692|0.58333 76693|0.45833 76694|0.47222 76695|0.38889 76696|0.5 76697|0.34722 76698|0.45833 76699|0.69444 76700|0.5 76701|0.55556 76702|0.5 76703|0.5 76704|0.65278 76705|0.52778 76706|0.5 76707|0.63889 76708|0.5 76709|0.5 76710|0.51389 76711|0.63889 76712|0.68056 76713|0.48611 76714|0.52778 76715|0.5 76716|0.59722 76717|0.5 76718|0.5 76719|0.5 76720|0.44444 76721|0.51389 76722|0.44444 76723|0.55556 76724|0.81944 76725|0.73611 76726|0.88889 76727|0.38889 76728|0.44444 76729|0.5 76730|0.68056 76731|0.58333 76732|0.94444 76733|0.875 76734|0.76389 76735|0.79167 76736|0.90278 76737|0.93056 76738|0.68056 76739|0.59722 76740|0.27778 76741|0.69444 76742|0.66667 76743|0.51389 76744|0.58333 76745|0.51389 76746|0.79167 76747|0.875 76748|0.83333 76749|0.80556 76750|0.5 76751|0.38889 76752|0.5 76753|0.54167 76754|0.43056 76755|0.47222 76756|0.55556 76757|0.54167 76758|0.47222 76759|0.40278 76760|0.43056 76761|0.5 76762|0.66667 76763|0.5 76764|0.44444 76765|0.41667 76766|0.58333 76767|0.59722 76768|0.5 76769|0.38889 76770|0.5 76771|0.80556 76772|0.58333 76773|0.48611 76774|0.56944 76775|0.80556 76776|0.55556 76777|0.56944 76778|0.61111 76779|0.5 76780|0.54167 76781|0.76389 76782|0.5 76783|0.13889 76784|0.40278 76785|0.44444 76786|0.40278 76787|0.63889 76788|0.70833 76789|0.61111 76790|0.70833 76791|0.58333 76792|0.5 76793|0.65278 76794|0.58333 76795|0.27778 76796|0.70833 76797|0.5 76798|0.51389 76799|0.625 76800|0.63889 76801|0.81944 76802|0.72222 76803|0.77778 76804|0.73611 76805|0.83333 76806|0.63889 76807|0.76389 76808|0.83333 76809|0.75 76810|0.80556 76811|0.72222 76812|0.70833 76813|0.70833 76814|0.73611 76815|0.25 76816|0.19444 76817|0.5 76818|0.54167 76819|0.54167 76820|0.61111 76821|0.65278 76822|0.72222 76823|0.5 76824|0.48611 76825|0.61111 76826|0.54167 76827|0.5 76828|0.47222 76829|0.79167 76830|0.56944 76831|0.5 76832|0.45833 76833|0.54167 76834|0.69444 76835|0.52778 76836|0.47222 76837|0.5 76838|0.65278 76839|0.48611 76840|0.59722 76841|0.48611 76842|0.47222 76843|0.5 76844|0.5 76845|0.52778 76846|0.55556 76847|0.58333 76848|0.5 76849|0.55556 76850|0.59722 76851|0.5 76852|0.61111 76853|0.5 76854|0.5 76855|0.5 76856|0.47222 76857|0.55556 76858|0.84722 76859|0.58333 76860|0.375 76861|0.66667 76862|0.58333 76863|0.65278 76864|0.40278 76865|0.375 76866|0.38889 76867|0.18056 76868|0.41667 76869|0.45833 76870|0.55556 76871|0.5 76872|0.5 76873|0.33333 76874|0.5 76875|0.5 76876|0.55556 76877|0.5 76878|0.79167 76879|0.51389 76880|0.5 76881|0.44444 76882|0.5 76883|0.5 76884|0.5 76885|0.45833 76886|0.5 76887|0.48611 76888|0.59722 76889|0.80556 76890|0.5 76891|0.72222 76892|0.59722 76893|0.58333 76894|0.51389 76895|0.88889 76896|0.44444 76897|0.72222 76898|0.69444 76899|0.68056 76900|0.75 76901|0.56944 76902|0.40278 76903|0.26389 76904|0.38889 76905|0.38889 76906|0.5 76907|0.5 76908|0.56944 76909|0.84722 76910|0.27778 76911|0.83333 76912|0.5 76913|0.45833 76914|0.68056 76915|0.43056 76916|0.47222 76917|0.5 76918|0.5 76919|0.63889 76920|0.5 76921|0.52778 76922|0.73611 76923|0.79167 76924|0.33333 76925|0.66667 76926|0.59722 76927|0.5 76928|0.5 76929|0.5 76930|0.61111 76931|0.48611 76932|0.41667 76933|0.65278 76934|0.56944 76935|0.52778 76936|0.48611 76937|0.76389 76938|0.56944 76939|0.44444 76940|0.5 76941|0.61111 76942|0.5 76943|0.5 76944|0.61111 76945|0.5 76946|0.86111 76947|0.69444 76948|0.61111 76949|0.61111 76950|0.61111 76951|0.61111 76952|0.5 76953|0.84722 76954|0.77778 76955|0.76389 76956|0.51389 76957|0.59722 76958|0.54167 76959|0.625 76960|0.58333 76961|0.65278 76962|0.52778 76963|0.72222 76964|0.625 76965|0.81944 76966|0.5 76967|0.86111 76968|0.75 76969|0.68056 76970|0.79167 76971|0.63889 76972|0.69444 76973|0.34722 76974|0.18056 76975|0.36111 76976|0.84722 76977|0.77778 76978|0.625 76979|0.5 76980|0.83333 76981|0.59722 76982|0.58333 76983|0.5 76984|0.59722 76985|0.72222 76986|0.55556 76987|0.22222 76988|0.5 76989|0.38889 76990|0.56944 76991|0.70833 76992|0.61111 76993|0.59722 76994|0.69444 76995|0.59722 76996|0.63889 76997|0.5 76998|0.51389 76999|0.66667 77000|0.63889 77001|0.59722 77002|0.56944 77003|0.54167 77004|0.75 77005|0.72222 77006|0.52778 77007|0.52778 77008|0.66667 77009|0.61111 77010|0.56944 77011|0.51389 77012|0.59722 77013|0.72222 77014|0.70833 77015|0.54167 77016|0.55556 77017|0.72222 77018|0.56944 77019|0.66667 77020|0.625 77021|0.5 77022|0.66667 77023|0.68056 77024|0.75 77025|0.56944 77026|0.44444 77027|0.5 77028|0.5 77029|0.40278 77030|0.52778 77031|0.5 77032|0.33333 77033|0.40278 77034|0.77778 77035|0.56944 77036|0.77778 77037|0.54167 77038|0.55556 77039|0.51389 77040|0.40278 77041|0.51389 77042|0.61111 77043|0.56944 77044|0.73611 77045|0.79167 77046|0.625 77047|0.55556 77048|0.51389 77049|0.43056 77050|0.5 77051|0.5 77052|0.59722 77053|0.56944 77054|0.66667 77055|0.61111 77056|0.55556 77057|0.625 77058|0.5 77059|0.5 77060|0.625 77061|0.56944 77062|0.72222 77063|0.55556 77064|0.63889 77065|0.76389 77066|0.70833 77067|0.77778 77068|0.625 77069|0.73611 77070|0.68056 77071|0.77778 77072|0.59722 77073|0.81944 77074|0.69444 77075|0.73611 77076|0.66667 77077|0.86111 77078|0.83333 77079|0.83333 77080|0.625 77081|0.75 77082|0.44444 77083|0.34722 77084|0.47222 77085|0.54167 77086|0.73611 77087|0.69444 77088|0.55556 77089|0.5 77090|0.33333 77091|0.38889 77092|0.16667 77093|0.22222 77094|0.22222 77095|0.31944 77096|0.13889 77097|0.43056 77098|0.54167 77099|0.63889 77100|0.5 77101|0.5 77102|0.68056 77103|0.45833 77104|0.30556 77105|0.72222 77106|0.81944 77107|0.83333 77108|0.52778 77109|0.65278 77110|0.625 77111|0.48611 77112|0.44444 77113|0.75 77114|0.58333 77115|0.5 77116|0.48611 77117|0.47222 77118|0.52778 77119|0.43056 77120|0.66667 77121|0.72222 77122|0.5 77123|0.73611 77124|0.77778 77125|0.44444 77126|0.5 77127|0.34722 77128|0.48611 77129|0.51389 77130|0.73611 77131|0.5 77132|0.51389 77133|0.43056 77134|0.52778 77135|0.45833 77136|0.55556 77137|0.47222 77138|0.56944 77139|0.54167 77140|0.5 77141|0.5 77142|0.54167 77143|0.5 77144|0.65278 77145|0.5 77146|0.52778 77147|0.58333 77148|0.51389 77149|0.5 77150|0.44444 77151|0.51389 77152|0.5 77153|0.77778 77154|0.59722 77155|0.5 77156|0.5 77157|0.61111 77158|0.58333 77159|0.76389 77160|0.5 77161|0.48611 77162|0.33333 77163|0.22222 77164|0.5 77165|0.5 77166|0.52778 77167|0.77778 77168|0.79167 77169|0.66667 77170|0.75 77171|0.69444 77172|0.86111 77173|0.77778 77174|0.5 77175|0.5 77176|0.44444 77177|0.48611 77178|0.5 77179|0.83333 77180|0.81944 77181|0.72222 77182|0.55556 77183|0.72222 77184|0.44444 77185|0.48611 77186|0.56944 77187|0.38889 77188|0.375 77189|0.56944 77190|0.44444 77191|0.33333 77192|0.40278 77193|0.43056 77194|0.375 77195|0.58333 77196|0.375 77197|0.16667 77198|0.69444 77199|0.69444 77200|0.33333 77201|0.5 77202|0.56944 77203|0.72222 77204|0.54167 77205|0.59722 77206|0.51389 77207|0.18056 77208|0.5 77209|0.5 77210|0.58333 77211|0.63889 77212|0.55556 77213|0.77778 77214|0.44444 77215|0.5 77216|0.47222 77217|0.40278 77218|0.41667 77219|0.61111 77220|0.5 77221|0.56944 77222|0.68056 77223|0.61111 77224|0.66667 77225|0.61111 77226|0.44444 77227|0.59722 77228|0.54167 77229|0.5 77230|0.5 77231|0.72222 77232|0.52778 77233|0.75 77234|0.52778 77235|0.84722 77236|0.86111 77237|0.63889 77238|0.65278 77239|0.43056 77240|0.84722 77241|0.45833 77242|0.26389 77243|0.61111 77244|0.56944 77245|0.77778 77246|0.61111 77247|0.52778 77248|0.76389 77249|0.72222 77250|0.72222 77251|0.84722 77252|0.72222 77253|0.70833 77254|0.83333 77255|0.77778 77256|0.43056 77257|0.59722 77258|0.59722 77259|0.38889 77260|0.625 77261|0.44444 77262|0.56944 77263|0.47222 77264|0.5 77265|0.5 77266|0.5 77267|0.81944 77268|0.73611 77269|0.61111 77270|0.61111 77271|0.83333 77272|0.5 77273|0.51389 77274|0.51389 77275|0.55556 77276|0.59722 77277|0.5 77278|0.625 77279|0.80556 77280|0.75 77281|0.65278 77282|0.72222 77283|0.5 77284|0.52778 77285|0.55556 77286|0.76389 77287|0.55556 77288|0.73611 77289|0.63889 77290|0.51389 77291|0.5 77292|0.52778 77293|0.58333 77294|0.77778 77295|0.5 77296|0.68056 77297|0.93056 77298|0.83333 77299|0.5 77300|0.5 77301|0.5 77302|0.5 77303|0.55556 77304|0.5 77305|0.55556 77306|0.83333 77307|0.61111 77308|0.48611 77309|0.30556 77310|0.5 77311|0.59722 77312|0.59722 77313|0.66667 77314|0.61111 77315|0.56944 77316|0.44444 77317|0.65278 77318|0.52778 77319|0.55556 77320|0.52778 77321|0.5 77322|0.26389 77323|0.48611 77324|0.5 77325|0.51389 77326|0.80556 77327|0.5 77328|0.58333 77329|0.26389 77330|0.47222 77331|0.41667 77332|0.47222 77333|0.5 77334|0.38889 77335|0.58333 77336|0.68056 77337|0.61111 77338|0.44444 77339|0.52778 77340|0.70833 77341|0.73611 77342|0.77778 77343|0.41667 77344|0.54167 77345|0.56944 77346|0.5 77347|0.51389 77348|0.47222 77349|0.69444 77350|0.65278 77351|0.63889 77352|0.55556 77353|0.72222 77354|0.47222 77355|0.66667 77356|0.51389 77357|0.61111 77358|0.55556 77359|0.54167 77360|0.5 77361|0.79167 77362|0.52778 77363|0.73611 77364|0.80556 77365|0.63889 77366|0.84722 77367|0.59722 77368|0.76389 77369|0.56944 77370|0.68056 77371|0.55556 77372|0.72222 77373|0.72222 77374|0.5 77375|0.55556 77376|0.45833 77377|0.5 77378|0.70833 77379|0.70833 77380|0.5 77381|0.5 77382|0.5 77383|0.51389 77384|0.34722 77385|0.5 77386|0.5 77387|0.40278 77388|0.31944 77389|0.41667 77390|0.40278 77391|0.125 77392|0.48611 77393|0.38889 77394|0.5 77395|0.31944 77396|0.33333 77397|0.33333 77398|0.40278 77399|0.5 77400|0.31944 77401|0.44444 77402|0.44444 77403|0.51389 77404|0.51389 77405|0.5 77406|0.5 77407|0.625 77408|0.66667 77409|0.58333 77410|0.86111 77411|0.77778 77412|0.63889 77413|0.88889 77414|0.59722 77415|0.72222 77416|0.40278 77417|0.61111 77418|0.30556 77419|0.5 77420|0.34722 77421|0.72222 77422|0.875 77423|0.18056 77424|0.26389 77425|0.5 77426|0.5 77427|0.27778 77428|0.33333 77429|0.79167 77430|0.70833 77431|0.36111 77432|0.59722 77433|0.5 77434|0.43056 77435|0.38889 77436|0.52778 77437|0.61111 77438|0.63889 77439|0.625 77440|0.83333 77441|0.90278 77442|0.625 77443|0.52778 77444|0.72222 77445|0.5 77446|0.375 77447|0.76389 77448|0.27778 77449|0.18056 77450|0.33333 77451|0.33333 77452|0.40278 77453|0.81944 77454|0.88889 77455|0.375 77456|0.5 77457|0.41667 77458|0.44444 77459|0.33333 77460|0.55556 77461|0.73611 77462|0.48611 77463|0.5 77464|0.29167 77465|0.54167 77466|0.58333 77467|0.5 77468|0.86111 77469|0.625 77470|0.69444 77471|0.55556 77472|0.72222 77473|0.76389 77474|0.625 77475|0.5 77476|0.5 77477|0.5 77478|0.83333 77479|0.55556 77480|0.55556 77481|0.80556 77482|0.77778 77483|0.70833 77484|0.72222 77485|0.66667 77486|0.73611 77487|0.45833 77488|0.61111 77489|0.59722 77490|0.56944 77491|0.66667 77492|0.75 77493|0.80556 77494|0.68056 77495|0.55556 77496|0.75 77497|0.70833 77498|0.61111 77499|0.51389 77500|0.86111 77501|0.72222 77502|0.59722 77503|0.55556 77504|0.69444 77505|0.76389 77506|0.44444 77507|0.41667 77508|0.55556 77509|0.55556 77510|0.58333 77511|0.38889 77512|0.41667 77513|0.5 77514|0.58333 77515|0.59722 77516|0.48611 77517|0.44444 77518|0.45833 77519|0.5 77520|0.44444 77521|0.43056 77522|0.69444 77523|0.22222 77524|0.79167 77525|0.90278 77526|0.66667 77527|0.61111 77528|0.69444 77529|0.79167 77530|0.5 77531|0.875 77532|0.83333 77533|0.79167 77534|0.72222 77535|0.47222 77536|0.79167 77537|0.70833 77538|0.66667 77539|0.83333 77540|0.77778 77541|0.79167 77542|0.81944 77543|0.88889 77544|0.66667 77545|0.5 77546|0.84722 77547|0.73611 77548|0.76389 77549|0.72222 77550|0.72222 77551|0.44444 77552|0.52778 77553|0.58333 77554|0.69444 77555|0.5 77556|0.80556 77557|0.86111 77558|0.875 77559|0.66667 77560|0.61111 77561|0.58333 77562|0.81944 77563|0.5 77564|0.54167 77565|0.69444 77566|0.36111 77567|0.36111 77568|0.38889 77569|0.70833 77570|0.65278 77571|0.81944 77572|0.55556 77573|0.69444 77574|0.69444 77575|0.36111 77576|0.38889 77577|0.5 77578|0.5 77579|0.5 77580|0.27778 77581|0.5 77582|0.51389 77583|0.5 77584|0.40278 77585|0.5 77586|0.36111 77587|0.66667 77588|0.76389 77589|0.81944 77590|0.70833 77591|0.79167 77592|0.54167 77593|0.65278 77594|0.69444 77595|0.34722 77596|0.58333 77597|0.5 77598|0.56944 77599|0.5 77600|0.54167 77601|0.59722 77602|0.54167 77603|0.5 77604|0.5 77605|0.58333 77606|0.5 77607|0.48611 77608|0.61111 77609|0.84722 77610|0.79167 77611|0.875 77612|0.44444 77613|0.51389 77614|0.33333 77615|0.63889 77616|0.63889 77617|0.34722 77618|0.54167 77619|0.48611 77620|0.5 77621|0.52778 77622|0.73611 77623|0.68056 77624|0.58333 77625|0.54167 77626|0.31944 77627|0.5 77628|0.5 77629|0.61111 77630|0.56944 77631|0.43056 77632|0.65278 77633|0.625 77634|0.55556 77635|0.56944 77636|0.51389 77637|0.54167 77638|0.52778 77639|0.5 77640|0.41667 77641|0.66667 77642|0.31944 77643|0.5 77644|0.5 77645|0.41667 77646|0.375 77647|0.63889 77648|0.59722 77649|0.55556 77650|0.51389 77651|0.66667 77652|0.51389 77653|0.36111 77654|0.5 77655|0.58333 77656|0.38889 77657|0.45833 77658|0.31944 77659|0.5 77660|0.36111 77661|0.5 77662|0.5 77663|0.44444 77664|0.55556 77665|0.59722 77666|0.625 77667|0.72222 77668|0.625 77669|0.48611 77670|0.33333 77671|0.66667 77672|0.43056 77673|0.56944 77674|0.44444 77675|0.5 77676|0.52778 77677|0.44444 77678|0.51389 77679|0.56944 77680|0.56944 77681|0.43056 77682|0.40278 77683|0.63889 77684|0.5 77685|0.5 77686|0.54167 77687|0.38889 77688|0.43056 77689|0.40278 77690|0.83333 77691|0.30556 77692|0.81944 77693|0.45833 77694|0.41667 77695|0.58333 77696|0.55556 77697|0.5 77698|0.63889 77699|0.5 77700|0.47222 77701|0.5 77702|0.51389 77703|0.52778 77704|0.40278 77705|0.66667 77706|0.76389 77707|0.79167 77708|0.5 77709|0.5 77710|0.68056 77711|0.70833 77712|0.44444 77713|0.375 77714|0.5 77715|0.48611 77716|0.55556 77717|0.55556 77718|0.59722 77719|0.56944 77720|0.55556 77721|0.33333 77722|0.66667 77723|0.70833 77724|0.56944 77725|0.44444 77726|0.44444 77727|0.65278 77728|0.76389 77729|0.77778 77730|0.55556 77731|0.69444 77732|0.56944 77733|0.76389 77734|0.625 77735|0.38889 77736|0.5 77737|0.44444 77738|0.5 77739|0.5 77740|0.61111 77741|0.75 77742|0.5 77743|0.52778 77744|0.54167 77745|0.5 77746|0.51389 77747|0.52778 77748|0.79167 77749|0.55556 77750|0.69444 77751|0.90278 77752|0.93056 77753|0.68056 77754|0.79167 77755|0.5 77756|0.5 77757|0.5 77758|0.5 77759|0.47222 77760|0.5 77761|0.5 77762|0.27778 77763|0.38889 77764|0.16667 77765|0.33333 77766|0.625 77767|0.59722 77768|0.55556 77769|0.68056 77770|0.66667 77771|0.80556 77772|0.31944 77773|0.55556 77774|0.54167 77775|0.56944 77776|0.5 77777|0.79167 77778|0.86111 77779|0.43056 77780|0.38889 77781|0.45833 77782|0.5 77783|0.33333 77784|0.55556 77785|0.51389 77786|0.56944 77787|0.52778 77788|0.70833 77789|0.72222 77790|0.66667 77791|0.625 77792|0.375 77793|0.375 77794|0.45833 77795|0.625 77796|0.55556 77797|0.5 77798|0.45833 77799|0.69444 77800|0.77778 77801|0.58333 77802|0.5 77803|0.51389 77804|0.375 77805|0.65278 77806|0.65278 77807|0.25 77808|0.77778 77809|0.51389 77810|0.55556 77811|0.58333 77812|0.5 77813|0.72222 77814|0.58333 77815|0.48611 77816|0.38889 77817|0.72222 77818|0.65278 77819|0.65278 77820|0.72222 77821|0.54167 77822|0.56944 77823|0.68056 77824|0.73611 77825|0.5 77826|0.55556 77827|0.52778 77828|0.27778 77829|0.80556 77830|0.56944 77831|0.80556 77832|0.76389 77833|0.70833 77834|0.76389 77835|0.73611 77836|0.76389 77837|0.51389 77838|0.875 77839|0.86111 77840|0.59722 77841|0.84722 77842|0.41667 77843|0.5 77844|0.58333 77845|0.47222 77846|0.5 77847|0.69444 77848|0.55556 77849|0.44444 77850|0.5 77851|0.66667 77852|0.5 77853|0.56944 77854|0.5 77855|0.84722 77856|0.63889 77857|0.61111 77858|0.59722 77859|0.54167 77860|0.75 77861|0.69444 77862|0.63889 77863|0.56944 77864|0.55556 77865|0.38889 77866|0.38889 77867|0.38889 77868|0.36111 77869|0.55556 77870|0.625 77871|0.68056 77872|0.69444 77873|0.58333 77874|0.61111 77875|0.66667 77876|0.625 77877|0.83333 77878|0.81944 77879|0.76389 77880|0.77778 77881|0.94444 77882|0.43056 77883|0.36111 77884|0.43056 77885|0.44444 77886|0.27778 77887|0.69444 77888|0.19444 77889|0.26389 77890|0.34722 77891|0.26389 77892|0.61111 77893|0.5 77894|0.5 77895|0.47222 77896|0.36111 77897|0.51389 77898|0.56944 77899|0.52778 77900|0.69444 77901|0.59722 77902|0.56944 77903|0.5 77904|0.77778 77905|0.75 77906|0.76389 77907|0.70833 77908|0.66667 77909|0.75 77910|0.86111 77911|0.66667 77912|0.69444 77913|0.83333 77914|0.80556 77915|0.58333 77916|0.75 77917|0.72222 77918|0.79167 77919|0.83333 77920|0.77778 77921|0.84722 77922|0.83333 77923|0.88889 77924|0.80556 77925|0.61111 77926|0.83333 77927|0.41667 77928|0.90278 77929|0.77778 77930|0.86111 77931|0.86111 77932|0.58333 77933|0.79167 77934|0.73611 77935|0.73611 77936|0.66667 77937|0.51389 77938|0.59722 77939|0.77778 77940|0.81944 77941|0.94444 77942|0.66667 77943|0.52778 77944|0.61111 77945|0.69444 77946|0.72222 77947|0.83333 77948|0.77778 77949|0.93056 77950|0.90278 77951|0.77778 77952|0.95833 77953|0.70833 77954|0.83333 77955|0.83333 77956|0.70833 77957|0.83333 77958|0.70833 77959|0.58333 77960|0.75 77961|0.56944 77962|0.5 77963|0.34722 77964|0.68056 77965|0.5 77966|0.56944 77967|0.47222 77968|0.55556 77969|0.83333 77970|0.34722 77971|0.47222 77972|0.5 77973|0.5 77974|0.5 77975|0.72222 77976|0.88889 77977|0.79167 77978|0.83333 77979|0.79167 77980|0.79167 77981|0.91667 77982|0.5 77983|0.44444 77984|0.5 77985|0.33333 77986|0.43056 77987|0.44444 77988|0.5 77989|0.44444 77990|0.59722 77991|0.5 77992|0.59722 77993|0.5 77994|0.45833 77995|0.47222 77996|0.18056 77997|0.41667 77998|0.5 77999|0.54167 78000|0.5 78001|0.56944 78002|0.81944 78003|0.68056 78004|0.51389 78005|0.5 78006|0.5 78007|0.625 78008|0.43056 78009|0.45833 78010|0.33333 78011|0.69444 78012|0.36111 78013|0.61111 78014|0.5 78015|0.5 78016|0.75 78017|0.5 78018|0.5 78019|0.44444 78020|0.375 78021|0.55556 78022|0.5 78023|0.875 78024|0.79167 78025|0.86111 78026|0.51389 78027|0.76389 78028|0.65278 78029|0.94444 78030|0.90278 78031|0.76389 78032|0.77778 78033|0.55556 78034|0.66667 78035|0.86111 78036|0.5 78037|0.5 78038|0.51389 78039|0.44444 78040|0.34722 78041|0.47222 78042|0.43056 78043|0.44444 78044|0.51389 78045|0.43056 78046|0.34722 78047|0.27778 78048|0.23611 78049|0.38889 78050|0.59722 78051|0.40278 78052|0.22222 78053|0.27778 78054|0.625 78055|0.84722 78056|0.54167 78057|0.68056 78058|0.5 78059|0.65278 78060|0.45833 78061|0.45833 78062|0.86111 78063|0.51389 78064|0.65278 78065|0.84722 78066|0.66667 78067|0.55556 78068|0.625 78069|0.55556 78070|0.66667 78071|0.5 78072|0.59722 78073|0.52778 78074|0.76389 78075|0.44444 78076|0.61111 78077|0.5 78078|0.43056 78079|0.33333 78080|0.40278 78081|0.52778 78082|0.44444 78083|0.47222 78084|0.41667 78085|0.81944 78086|0.61111 78087|0.33333 78088|0.79167 78089|0.80556 78090|0.5 78091|0.68056 78092|0.76389 78093|0.65278 78094|0.5 78095|0.5 78096|0.5 78097|0.5 78098|0.63889 78099|0.69444 78100|0.44444 78101|0.40278 78102|0.44444 78103|0.33333 78104|0.55556 78105|0.5 78106|0.48611 78107|0.56944 78108|0.75 78109|0.5 78110|0.47222 78111|0.40278 78112|0.44444 78113|0.5 78114|0.66667 78115|0.38889 78116|0.5 78117|0.65278 78118|0.45833 78119|0.43056 78120|0.44444 78121|0.23611 78122|0.44444 78123|0.41667 78124|0.5 78125|0.5 78126|0.47222 78127|0.58333 78128|0.61111 78129|0.63889 78130|0.51389 78131|0.5 78132|0.5 78133|0.5 78134|0.44444 78135|0.5 78136|0.88889 78137|0.41667 78138|0.70833 78139|0.70833 78140|0.29167 78141|0.5 78142|0.5 78143|0.5 78144|0.5 78145|0.44444 78146|0.5 78147|0.55556 78148|0.55556 78149|0.43056 78150|0.47222 78151|0.54167 78152|0.58333 78153|0.5 78154|0.5 78155|0.5 78156|0.5 78157|0.55556 78158|0.58333 78159|0.5 78160|0.5 78161|0.5 78162|0.5 78163|0.80556 78164|0.68056 78165|0.54167 78166|0.5 78167|0.5 78168|0.5 78169|0.55556 78170|0.22222 78171|0.41667 78172|0.72222 78173|0.5 78174|0.5 78175|0.5 78176|0.55556 78177|0.52778 78178|0.61111 78179|0.38889 78180|0.81944 78181|0.59722 78182|0.5 78183|0.55556 78184|0.5 78185|0.63889 78186|0.5 78187|0.5 78188|0.54167 78189|0.5 78190|0.51389 78191|0.70833 78192|0.66667 78193|0.75 78194|0.5 78195|0.44444 78196|0.5 78197|0.59722 78198|0.80556 78199|0.5 78200|0.5 78201|0.5 78202|0.5 78203|0.5 78204|0.5 78205|0.58333 78206|0.69444 78207|0.52778 78208|0.55556 78209|0.5 78210|0.5 78211|0.5 78212|0.5 78213|0.5 78214|0.5 78215|0.51389 78216|0.83333 78217|0.5 78218|0.55556 78219|0.5 78220|0.75 78221|0.5 78222|0.66667 78223|0.65278 78224|0.5 78225|0.52778 78226|0.5 78227|0.41667 78228|0.40278 78229|0.31944 78230|0.15278 78231|0.45833 78232|0.61111 78233|0.43056 78234|0.54167 78235|0.83333 78236|0.58333 78237|0.41667 78238|0.48611 78239|0.51389 78240|0.44444 78241|0.40278 78242|0.51389 78243|0.52778 78244|0.55556 78245|0.44444 78246|0.19444 78247|0.41667 78248|0.45833 78249|0.5 78250|0.54167 78251|0.61111 78252|0.59722 78253|0.61111 78254|0.625 78255|0.52778 78256|0.63889 78257|0.44444 78258|0.47222 78259|0.51389 78260|0.16667 78261|0.19444 78262|0.59722 78263|0.56944 78264|0.69444 78265|0.54167 78266|0.5 78267|0.5 78268|0.58333 78269|0.81944 78270|0.875 78271|0.45833 78272|0.18056 78273|0.23611 78274|0.38889 78275|0.34722 78276|0.47222 78277|0.30556 78278|0.44444 78279|0.38889 78280|0.58333 78281|0.33333 78282|0.44444 78283|0.5 78284|0.34722 78285|0.80556 78286|0.48611 78287|0.80556 78288|0.75 78289|0.51389 78290|0.40278 78291|0.38889 78292|0.73611 78293|0.45833 78294|0.66667 78295|0.47222 78296|0.43056 78297|0.31944 78298|0.36111 78299|0.5 78300|0.44444 78301|0.44444 78302|0.20833 78303|0.18056 78304|0.33333 78305|0.54167 78306|0.83333 78307|0.77778 78308|0.55556 78309|0.66667 78310|0.51389 78311|0.81944 78312|0.81944 78313|0.47222 78314|0.375 78315|0.375 78316|0.38889 78317|0.34722 78318|0.29167 78319|0.30556 78320|0.34722 78321|0.52778 78322|0.59722 78323|0.54167 78324|0.55556 78325|0.79167 78326|0.45833 78327|0.51389 78328|0.54167 78329|0.52778 78330|0.56944 78331|0.51389 78332|0.45833 78333|0.56944 78334|0.68056 78335|0.5 78336|0.38889 78337|0.56944 78338|0.48611 78339|0.51389 78340|0.44444 78341|0.5 78342|0.5 78343|0.90278 78344|0.61111 78345|0.36111 78346|0.38889 78347|0.38889 78348|0.33333 78349|0.69444 78350|0.76389 78351|0.29167 78352|0.44444 78353|0.66667 78354|0.55556 78355|0.30556 78356|0.30556 78357|0.41667 78358|0.66667 78359|0.18056 78360|0.52778 78361|0.73611 78362|0.38889 78363|0.61111 78364|0.76389 78365|0.18056 78366|0.36111 78367|0.15278 78368|0.5 78369|0.30556 78370|0.59722 78371|0.5 78372|0.52778 78373|0.72222 78374|0.75 78375|0.83333 78376|0.31944 78377|0.58333 78378|0.5 78379|0.375 78380|0.5 78381|0.61111 78382|0.52778 78383|0.5 78384|0.5 78385|0.5 78386|0.68056 78387|0.30556 78388|0.55556 78389|0.58333 78390|0.5 78391|0.51389 78392|0.5 78393|0.66667 78394|0.59722 78395|0.5 78396|0.55556 78397|0.81944 78398|0.66667 78399|0.80556 78400|0.75 78401|0.83333 78402|0.76389 78403|0.81944 78404|0.80556 78405|0.70833 78406|0.75 78407|0.625 78408|0.76389 78409|0.69444 78410|0.66667 78411|0.38889 78412|0.58333 78413|0.68056 78414|0.55556 78415|0.55556 78416|0.36111 78417|0.375 78418|0.68056 78419|0.65278 78420|0.79167 78421|0.81944 78422|0.54167 78423|0.5 78424|0.69444 78425|0.72222 78426|0.70833 78427|0.84722 78428|0.73611 78429|0.5 78430|0.29167 78431|0.25 78432|0.40278 78433|0.66667 78434|0.58333 78435|0.29167 78436|0.27778 78437|0.25 78438|0.34722 78439|0.36111 78440|0.63889 78441|0.51389 78442|0.69444 78443|0.75 78444|0.29167 78445|0.66667 78446|0.44444 78447|0.70833 78448|0.44444 78449|0.26389 78450|0.23611 78451|0.30556 78452|0.68056 78453|0.80556 78454|0.41667 78455|0.69444 78456|0.625 78457|0.44444 78458|0.52778 78459|0.47222 78460|0.48611 78461|0.61111 78462|0.625 78463|0.33333 78464|0.26389 78465|0.27778 78466|0.29167 78467|0.18056 78468|0.65278 78469|0.48611 78470|0.40278 78471|0.55556 78472|0.65278 78473|0.44444 78474|0.55556 78475|0.63889 78476|0.83333 78477|0.68056 78478|0.43056 78479|0.38889 78480|0.41667 78481|0.31944 78482|0.45833 78483|0.73611 78484|0.38889 78485|0.33333 78486|0.34722 78487|0.80556 78488|0.72222 78489|0.5 78490|0.79167 78491|0.61111 78492|0.66667 78493|0.76389 78494|0.81944 78495|0.75 78496|0.5 78497|0.47222 78498|0.80556 78499|0.33333 78500|0.55556 78501|0.66667 78502|0.72222 78503|0.44444 78504|0.59722 78505|0.5 78506|0.5 78507|0.55556 78508|0.22222 78509|0.51389 78510|0.58333 78511|0.38889 78512|0.5 78513|0.51389 78514|0.34722 78515|0.70833 78516|0.48611 78517|0.5 78518|0.5 78519|0.23611 78520|0.5 78521|0.48611 78522|0.44444 78523|0.81944 78524|0.47222 78525|0.61111 78526|0.875 78527|0.84722 78528|0.65278 78529|0.65278 78530|0.61111 78531|0.5 78532|0.5 78533|0.56944 78534|0.625 78535|0.48611 78536|0.54167 78537|0.55556 78538|0.43056 78539|0.5 78540|0.52778 78541|0.5 78542|0.5 78543|0.5 78544|0.59722 78545|0.65278 78546|0.66667 78547|0.5 78548|0.55556 78549|0.27778 78550|0.5 78551|0.5 78552|0.5 78553|0.41667 78554|0.26389 78555|0.48611 78556|0.56944 78557|0.23611 78558|0.22222 78559|0.44444 78560|0.5 78561|0.5 78562|0.11111 78563|0.34722 78564|0.59722 78565|0.61111 78566|0.44444 78567|0.58333 78568|0.63889 78569|0.70833 78570|0.68056 78571|0.38889 78572|0.56944 78573|0.47222 78574|0.51389 78575|0.44444 78576|0.5 78577|0.5 78578|0.51389 78579|0.58333 78580|0.56944 78581|0.79167 78582|0.69444 78583|0.58333 78584|0.68056 78585|0.73611 78586|0.41667 78587|0.63889 78588|0.61111 78589|0.68056 78590|0.83333 78591|0.5 78592|0.38889 78593|0.44444 78594|0.55556 78595|0.63889 78596|0.33333 78597|0.55556 78598|0.44444 78599|0.34722 78600|0.5 78601|0.5 78602|0.58333 78603|0.52778 78604|0.66667 78605|0.77778 78606|0.5 78607|0.5 78608|0.5 78609|0.58333 78610|0.77778 78611|0.61111 78612|0.76389 78613|0.76389 78614|0.72222 78615|0.79167 78616|0.63889 78617|0.75 78618|0.61111 78619|0.72222 78620|0.26389 78621|0.15278 78622|0.59722 78623|0.59722 78624|0.66667 78625|0.5 78626|0.66667 78627|0.83333 78628|0.81944 78629|0.26389 78630|0.40278 78631|0.51389 78632|0.5 78633|0.41667 78634|0.31944 78635|0.75 78636|0.47222 78637|0.5 78638|0.75 78639|0.55556 78640|0.5 78641|0.76389 78642|0.44444 78643|0.5 78644|0.47222 78645|0.88889 78646|0.34722 78647|0.375 78648|0.45833 78649|0.44444 78650|0.41667 78651|0.27778 78652|0.48611 78653|0.41667 78654|0.5 78655|0.72222 78656|0.58333 78657|0.5 78658|0.5 78659|0.38889 78660|0.5 78661|0.5 78662|0.31944 78663|0.26389 78664|0.23611 78665|0.51389 78666|0.70833 78667|0.72222 78668|0.23611 78669|0.23611 78670|0.27778 78671|0.48611 78672|0.48611 78673|0.79167 78674|0.41667 78675|0.5 78676|0.79167 78677|0.5 78678|0.5 78679|0.5 78680|0.52778 78681|0.51389 78682|0.38889 78683|0.55556 78684|0.55556 78685|0.51389 78686|0.5 78687|0.63889 78688|0.56944 78689|0.58333 78690|0.63889 78691|0.63889 78692|0.30556 78693|0.5 78694|0.30556 78695|0.54167 78696|0.5 78697|0.45833 78698|0.5 78699|0.5 78700|0.41667 78701|0.73611 78702|0.5 78703|0.69444 78704|0.5 78705|0.47222 78706|0.66667 78707|0.56944 78708|0.5 78709|0.55556 78710|0.52778 78711|0.55556 78712|0.55556 78713|0.66667 78714|0.47222 78715|0.69444 78716|0.66667 78717|0.61111 78718|0.875 78719|0.65278 78720|0.66667 78721|0.5 78722|0.625 78723|0.52778 78724|0.48611 78725|0.93056 78726|0.13889 78727|0.097222 78728|0.44444 78729|0.61111 78730|0.51389 78731|0.59722 78732|0.5 78733|0.27778 78734|0.76389 78735|0.44444 78736|0.66667 78737|0.59722 78738|0.54167 78739|0.38889 78740|0.625 78741|0.68056 78742|0.68056 78743|0.625 78744|0.5 78745|0.5 78746|0.625 78747|0.5 78748|0.52778 78749|0.52778 78750|0.63889 78751|0.5 78752|0.5 78753|0.625 78754|0.75 78755|0.65278 78756|0.84722 78757|0.5 78758|0.48611 78759|0.55556 78760|0.61111 78761|0.72222 78762|0.77778 78763|0.61111 78764|0.65278 78765|0.54167 78766|0.76389 78767|0.56944 78768|0.76389 78769|0.625 78770|0.72222 78771|0.75 78772|0.52778 78773|0.83333 78774|0.625 78775|0.5 78776|0.83333 78777|0.52778 78778|0.63889 78779|0.69444 78780|0.68056 78781|0.61111 78782|0.875 78783|0.77778 78784|0.5 78785|0.58333 78786|0.36111 78787|0.43056 78788|0.61111 78789|0.40278 78790|0.40278 78791|0.5 78792|0.51389 78793|0.26389 78794|0.59722 78795|0.44444 78796|0.22222 78797|0.38889 78798|0.54167 78799|0.58333 78800|0.51389 78801|0.5 78802|0.65278 78803|0.77778 78804|0.55556 78805|0.81944 78806|0.76389 78807|0.77778 78808|0.79167 78809|0.79167 78810|0.75 78811|0.72222 78812|0.81944 78813|0.73611 78814|0.68056 78815|0.55556 78816|0.73611 78817|0.72222 78818|0.51389 78819|0.69444 78820|0.44444 78821|0.5 78822|0.5 78823|0.63889 78824|0.72222 78825|0.61111 78826|0.70833 78827|0.70833 78828|0.73611 78829|0.56944 78830|0.40278 78831|0.61111 78832|0.84722 78833|0.58333 78834|0.70833 78835|0.79167 78836|0.68056 78837|0.70833 78838|0.75 78839|0.76389 78840|0.79167 78841|0.61111 78842|0.5 78843|0.61111 78844|0.61111 78845|0.54167 78846|0.65278 78847|0.63889 78848|0.72222 78849|0.69444 78850|0.79167 78851|0.72222 78852|0.68056 78853|0.65278 78854|0.76389 78855|0.51389 78856|0.54167 78857|0.56944 78858|0.56944 78859|0.51389 78860|0.66667 78861|0.27778 78862|0.61111 78863|0.625 78864|0.65278 78865|0.80556 78866|0.75 78867|0.51389 78868|0.66667 78869|0.69444 78870|0.72222 78871|0.61111 78872|0.5 78873|0.45833 78874|0.51389 78875|0.31944 78876|0.36111 78877|0.55556 78878|0.72222 78879|0.79167 78880|0.90278 78881|0.79167 78882|0.84722 78883|0.61111 78884|0.58333 78885|0.5 78886|0.5 78887|0.5 78888|0.73611 78889|0.69444 78890|0.72222 78891|0.66667 78892|0.44444 78893|0.5 78894|0.5 78895|0.26389 78896|0.56944 78897|0.77778 78898|0.44444 78899|0.625 78900|0.72222 78901|0.69444 78902|0.83333 78903|0.70833 78904|0.63889 78905|0.5 78906|0.33333 78907|0.58333 78908|0.52778 78909|0.59722 78910|0.40278 78911|0.59722 78912|0.79167 78913|0.58333 78914|0.83333 78915|0.68056 78916|0.38889 78917|0.29167 78918|0.5 78919|0.77778 78920|0.68056 78921|0.75 78922|0.79167 78923|0.76389 78924|0.90278 78925|0.52778 78926|0.5 78927|0.65278 78928|0.75 78929|0.79167 78930|0.72222 78931|0.83333 78932|0.81944 78933|0.61111 78934|0.58333 78935|0.79167 78936|0.69444 78937|0.44444 78938|0.75 78939|0.5 78940|0.5 78941|0.59722 78942|0.54167 78943|0.83333 78944|0.66667 78945|0.66667 78946|0.40278 78947|0.86111 78948|0.47222 78949|0.51389 78950|0.5 78951|0.54167 78952|0.68056 78953|0.76389 78954|0.84722 78955|0.86111 78956|0.66667 78957|0.63889 78958|0.63889 78959|0.5 78960|0.44444 78961|0.52778 78962|0.5 78963|0.38889 78964|0.5 78965|0.72222 78966|0.055556 78967|0.70833 78968|0.375 78969|0.48611 78970|0.31944 78971|0.72222 78972|0.69444 78973|0.81944 78974|0.76389 78975|0.61111 78976|0.69444 78977|0.59722 78978|0.84722 78979|0.83333 78980|0.77778 78981|0.58333 78982|0.81944 78983|0.79167 78984|0.83333 78985|0.59722 78986|0.61111 78987|0.48611 78988|0.5 78989|0.69444 78990|0.63889 78991|0.76389 78992|0.72222 78993|0.76389 78994|0.83333 78995|0.84722 78996|0.70833 78997|0.625 78998|0.72222 78999|0.73611 79000|0.83333 79001|0.73611 79002|0.65278 79003|0.77778 79004|0.73611 79005|0.61111 79006|0.75 79007|0.63889 79008|0.69444 79009|0.5 79010|0.48611 79011|0.66667 79012|0.52778 79013|0.80556 79014|0.86111 79015|0.65278 79016|0.625 79017|0.69444 79018|0.81944 79019|0.77778 79020|0.5 79021|0.44444 79022|0.625 79023|0.69444 79024|0.72222 79025|0.73611 79026|0.69444 79027|0.76389 79028|0.55556 79029|0.55556 79030|0.79167 79031|0.79167 79032|0.66667 79033|0.72222 79034|0.66667 79035|0.70833 79036|0.43056 79037|0.77778 79038|0.68056 79039|0.83333 79040|0.77778 79041|0.75 79042|0.88889 79043|0.83333 79044|0.68056 79045|0.77778 79046|0.75 79047|0.65278 79048|0.69444 79049|0.47222 79050|0.54167 79051|0.75 79052|0.72222 79053|0.88889 79054|0.81944 79055|0.79167 79056|0.83333 79057|0.63889 79058|0.625 79059|0.75 79060|0.5 79061|0.69444 79062|0.84722 79063|0.88889 79064|0.88889 79065|0.59722 79066|0.5 79067|0.58333 79068|0.55556 79069|0.55556 79070|0.77778 79071|0.66667 79072|0.83333 79073|0.70833 79074|0.77778 79075|0.77778 79076|0.5 79077|0.66667 79078|0.5 79079|0.55556 79080|0.66667 79081|0.68056 79082|0.55556 79083|0.65278 79084|0.56944 79085|0.75 79086|0.72222 79087|0.70833 79088|0.5 79089|0.5 79090|0.68056 79091|0.80556 79092|0.63889 79093|0.86111 79094|0.93056 79095|0.83333 79096|0.51389 79097|0.5 79098|0.55556 79099|0.625 79100|0.51389 79101|0.51389 79102|0.63889 79103|0.51389 79104|0.43056 79105|0.65278 79106|0.59722 79107|0.875 79108|0.81944 79109|0.72222 79110|0.54167 79111|0.77778 79112|0.86111 79113|0.73611 79114|0.79167 79115|0.88889 79116|0.75 79117|0.54167 79118|0.66667 79119|0.73611 79120|0.69444 79121|0.52778 79122|0.66667 79123|0.83333 79124|0.58333 79125|0.66667 79126|0.81944 79127|0.77778 79128|0.625 79129|0.75 79130|0.69444 79131|0.59722 79132|0.66667 79133|0.86111 79134|0.72222 79135|0.52778 79136|0.5 79137|0.5 79138|0.16667 79139|0.41667 79140|0.069444 79141|0.79167 79142|0.77778 79143|0.34722 79144|0.625 79145|0.5 79146|0.5 79147|0.54167 79148|0.5 79149|0.5 79150|0.69444 79151|0.55556 79152|0.375 79153|0.38889 79154|0.84722 79155|0.61111 79156|0.41667 79157|0.73611 79158|0.66667 79159|0.59722 79160|0.70833 79161|0.51389 79162|0.70833 79163|0.59722 79164|0.52778 79165|0.40278 79166|0.56944 79167|0.5 79168|0.5 79169|0.55556 79170|0.375 79171|0.5 79172|0.13889 79173|0.51389 79174|0.56944 79175|0.61111 79176|0.41667 79177|0.55556 79178|0.5 79179|0.61111 79180|0.5 79181|0.81944 79182|0.59722 79183|0.65278 79184|0.66667 79185|0.56944 79186|0.5 79187|0.5 79188|0.41667 79189|0.56944 79190|0.61111 79191|0.90278 79192|0.56944 79193|0.73611 79194|0.51389 79195|0.56944 79196|0.5 79197|0.43056 79198|0.66667 79199|0.41667 79200|0.33333 79201|0.80556 79202|0.86111 79203|0.5 79204|0.55556 79205|0.5 79206|0.48611 79207|0.5 79208|0.5 79209|0.5 79210|0.58333 79211|0.65278 79212|0.52778 79213|0.56944 79214|0.5 79215|0.61111 79216|0.5 79217|0.38889 79218|0.52778 79219|0.55556 79220|0.58333 79221|0.59722 79222|0.56944 79223|0.65278 79224|0.5 79225|0.44444 79226|0.54167 79227|0.5 79228|0.5 79229|0.625 79230|0.54167 79231|0.69444 79232|0.5 79233|0.34722 79234|0.54167 79235|0.69444 79236|0.65278 79237|0.61111 79238|0.86111 79239|0.76389 79240|0.44444 79241|0.68056 79242|0.5 79243|0.59722 79244|0.44444 79245|0.38889 79246|0.59722 79247|0.5 79248|0.63889 79249|0.66667 79250|0.5 79251|0.73611 79252|0.66667 79253|0.66667 79254|0.72222 79255|0.69444 79256|0.52778 79257|0.5 79258|0.5 79259|0.5 79260|0.26389 79261|0.72222 79262|0.5 79263|0.36111 79264|0.36111 79265|0.083333 79266|0.29167 79267|0.47222 79268|0.5 79269|0.72222 79270|0.51389 79271|0.41667 79272|0.375 79273|0.40278 79274|0.69444 79275|0.79167 79276|0.5 79277|0.48611 79278|0.5 79279|0.16667 79280|0.56944 79281|0.5 79282|0.61111 79283|0.70833 79284|0.56944 79285|0.70833 79286|0.5 79287|0.5 79288|0.5 79289|0.55556 79290|0.61111 79291|0.66667 79292|0.61111 79293|0.5 79294|0.5 79295|0.55556 79296|0.5 79297|0.55556 79298|0.5 79299|0.55556 79300|0.41667 79301|0.73611 79302|0.5 79303|0.55556 79304|0.5 79305|0.5 79306|0.44444 79307|0.59722 79308|0.55556 79309|0.47222 79310|0.625 79311|0.75 79312|0.68056 79313|0.58333 79314|0.56944 79315|0.48611 79316|0.65278 79317|0.56944 79318|0.5 79319|0.70833 79320|0.68056 79321|0.55556 79322|0.56944 79323|0.5 79324|0.23611 79325|0.52778 79326|0.76389 79327|0.45833 79328|0.25 79329|0.55556 79330|0.5 79331|0.66667 79332|0.61111 79333|0.66667 79334|0.5 79335|0.55556 79336|0.51389 79337|0.30556 79338|0.63889 79339|0.51389 79340|0.54167 79341|0.40278 79342|0.59722 79343|0.26389 79344|0.56944 79345|0.5 79346|0.5 79347|0.5 79348|0.83333 79349|0.56944 79350|0.5 79351|0.5 79352|0.55556 79353|0.58333 79354|0.56944 79355|0.5 79356|0.5 79357|0.5 79358|0.51389 79359|0.61111 79360|0.55556 79361|0.77778 79362|0.75 79363|0.5 79364|0.875 79365|0.80556 79366|0.5 79367|0.375 79368|0.375 79369|0.66667 79370|0.79167 79371|0.79167 79372|0.61111 79373|0.5 79374|0.43056 79375|0.55556 79376|0.68056 79377|0.73611 79378|0.44444 79379|0.68056 79380|0.72222 79381|0.45833 79382|0.61111 79383|0.65278 79384|0.54167 79385|0.61111 79386|0.5 79387|0.40278 79388|0.5 79389|0.72222 79390|0.41667 79391|0.55556 79392|0.59722 79393|0.70833 79394|0.625 79395|0.52778 79396|0.55556 79397|0.68056 79398|0.73611 79399|0.77778 79400|0.66667 79401|0.91667 79402|0.59722 79403|0.77778 79404|0.76389 79405|0.90278 79406|0.76389 79407|0.75 79408|0.88889 79409|0.81944 79410|0.66667 79411|0.86111 79412|0.81944 79413|0.72222 79414|0.80556 79415|0.84722 79416|0.43056 79417|0.56944 79418|0.69444 79419|0.86111 79420|0.79167 79421|0.86111 79422|0.5 79423|0.5 79424|0.875 79425|0.65278 79426|0.76389 79427|0.81944 79428|0.83333 79429|0.79167 79430|0.5 79431|0.48611 79432|0.68056 79433|0.88889 79434|0.52778 79435|0.31944 79436|0.88889 79437|0.77778 79438|0.47222 79439|0.5 79440|0.5 79441|0.59722 79442|0.59722 79443|0.5 79444|0.59722 79445|0.54167 79446|0.70833 79447|0.5 79448|0.5 79449|0.75 79450|0.52778 79451|0.58333 79452|0.44444 79453|0.5 79454|0.51389 79455|0.47222 79456|0.5 79457|0.52778 79458|0.43056 79459|0.30556 79460|0.38889 79461|0.5 79462|0.5 79463|0.66667 79464|0.65278 79465|0.55556 79466|0.19444 79467|0.097222 79468|0.54167 79469|0.27778 79470|0.52778 79471|0.55556 79472|0.5 79473|0.55556 79474|0.68056 79475|0.59722 79476|0.58333 79477|0.5 79478|0.56944 79479|0.59722 79480|0.59722 79481|0.5 79482|0.625 79483|0.70833 79484|0.63889 79485|0.93056 79486|0.58333 79487|0.52778 79488|0.52778 79489|0.44444 79490|0.5 79491|0.72222 79492|0.5 79493|0.51389 79494|0.54167 79495|0.5 79496|0.58333 79497|0.5 79498|0.69444 79499|0.56944 79500|0.73611 79501|0.88889 79502|0.79167 79503|0.51389 79504|0.65278 79505|0.45833 79506|0.5 79507|0.72222 79508|0.65278 79509|0.70833 79510|0.54167 79511|0.61111 79512|0.75 79513|0.88889 79514|0.875 79515|0.86111 79516|0.95833 79517|0.86111 79518|0.59722 79519|0.86111 79520|0.77778 79521|0.65278 79522|0.73611 79523|0.66667 79524|0.58333 79525|0.5 79526|0.43056 79527|0.30556 79528|0.94444 79529|0.68056 79530|0.81944 79531|0.86111 79532|0.79167 79533|0.5 79534|0.72222 79535|0.58333 79536|0.5 79537|0.79167 79538|0.5 79539|0.22222 79540|0.75 79541|0.84722 79542|0.81944 79543|0.68056 79544|0.86111 79545|0.59722 79546|0.51389 79547|0.38889 79548|0.48611 79549|0.45833 79550|0.5 79551|0.5 79552|0.52778 79553|0.625 79554|0.55556 79555|0.625 79556|0.55556 79557|0.72222 79558|0.5 79559|0.33333 79560|0.16667 79561|0.36111 79562|0.18056 79563|0.13889 79564|0.125 79565|0.51389 79566|0.75 79567|0.79167 79568|0.69444 79569|0.22222 79570|0.375 79571|0.75 79572|0.47222 79573|0.69444 79574|0.69444 79575|0.5 79576|0.43056 79577|0.5 79578|0.5 79579|0.59722 79580|0.61111 79581|0.54167 79582|0.75 79583|0.41667 79584|0.26389 79585|0.5 79586|0.51389 79587|0.41667 79588|0.41667 79589|0.41667 79590|0.47222 79591|0.38889 79592|0.68056 79593|0.43056 79594|0.30556 79595|0.34722 79596|0.31944 79597|0.5 79598|0.22222 79599|0.45833 79600|0.375 79601|0.25 79602|0.44444 79603|0.5 79604|0.5 79605|0.56944 79606|0.5 79607|0.51389 79608|0.51389 79609|0.41667 79610|0.58333 79611|0.55556 79612|0.48611 79613|0.52778 79614|0.5 79615|0.51389 79616|0.5 79617|0.56944 79618|0.61111 79619|0.5 79620|0.61111 79621|0.61111 79622|0.65278 79623|0.41667 79624|0.56944 79625|0.63889 79626|0.5 79627|0.54167 79628|0.5 79629|0.625 79630|0.58333 79631|0.54167 79632|0.58333 79633|0.5 79634|0.5 79635|0.58333 79636|0.55556 79637|0.55556 79638|0.63889 79639|0.5 79640|0.48611 79641|0.55556 79642|0.54167 79643|0.69444 79644|0.5 79645|0.66667 79646|0.52778 79647|0.51389 79648|0.5 79649|0.36111 79650|0.59722 79651|0.51389 79652|0.44444 79653|0.69444 79654|0.55556 79655|0.5 79656|0.43056 79657|0.88889 79658|0.94444 79659|0.81944 79660|0.73611 79661|0.54167 79662|0.51389 79663|0.77778 79664|0.61111 79665|0.73611 79666|0.68056 79667|0.56944 79668|0.41667 79669|0.34722 79670|0.30556 79671|0.51389 79672|0.75 79673|0.79167 79674|0.68056 79675|0.38889 79676|0.5 79677|0.47222 79678|0.72222 79679|0.55556 79680|0.63889 79681|0.77778 79682|0.73611 79683|0.80556 79684|0.66667 79685|0.29167 79686|0.5 79687|0.27778 79688|0.33333 79689|0.27778 79690|0.38889 79691|0.097222 79692|0.44444 79693|0.22222 79694|0.44444 79695|0.61111 79696|0.77778 79697|0.83333 79698|0.80556 79699|0.48611 79700|0.77778 79701|0.875 79702|0.86111 79703|0.94444 79704|0.70833 79705|0.90278 79706|0.81944 79707|0.72222 79708|0.83333 79709|0.86111 79710|0.59722 79711|0.58333 79712|0.66667 79713|0.72222 79714|0.47222 79715|0.77778 79716|0.51389 79717|0.55556 79718|0.55556 79719|0.19444 79720|0.55556 79721|0.5 79722|0.5 79723|0.5 79724|0.40278 79725|0.5 79726|0.66667 79727|0.54167 79728|0.69444 79729|0.63889 79730|0.52778 79731|0.44444 79732|0.34722 79733|0.52778 79734|0.56944 79735|0.5 79736|0.59722 79737|0.56944 79738|0.30556 79739|0.44444 79740|0.68056 79741|0.625 79742|0.73611 79743|0.52778 79744|0.70833 79745|0.68056 79746|0.86111 79747|0.56944 79748|0.58333 79749|0.72222 79750|0.73611 79751|0.55556 79752|0.63889 79753|0.40278 79754|0.26389 79755|0.47222 79756|0.52778 79757|0.58333 79758|0.22222 79759|0.58333 79760|0.77778 79761|0.73611 79762|0.38889 79763|0.5 79764|0.55556 79765|0.75 79766|0.63889 79767|0.61111 79768|0.58333 79769|0.91667 79770|0.5 79771|0.73611 79772|0.72222 79773|0.54167 79774|0.34722 79775|0.34722 79776|0.72222 79777|0.73611 79778|0.23611 79779|0.30556 79780|0.68056 79781|0.27778 79782|0.68056 79783|0.44444 79784|0.61111 79785|0.63889 79786|0.51389 79787|0.44444 79788|0.58333 79789|0.47222 79790|0.44444 79791|0.75 79792|0.69444 79793|0.625 79794|0.33333 79795|0.55556 79796|0.38889 79797|0.51389 79798|0.75 79799|0.5 79800|0.43056 79801|0.44444 79802|0.61111 79803|0.65278 79804|0.72222 79805|0.66667 79806|0.59722 79807|0.54167 79808|0.5 79809|0.5 79810|0.5 79811|0.59722 79812|0.55556 79813|0.5 79814|0.5 79815|0.55556 79816|0.61111 79817|0.56944 79818|0.66667 79819|0.75 79820|0.55556 79821|0.52778 79822|0.61111 79823|0.5 79824|0.48611 79825|0.45833 79826|0.34722 79827|0.73611 79828|0.44444 79829|0.47222 79830|0.72222 79831|0.52778 79832|0.55556 79833|0.5 79834|0.54167 79835|0.56944 79836|0.51389 79837|0.44444 79838|0.38889 79839|0.5 79840|0.23611 79841|0.5 79842|0.5 79843|0.63889 79844|0.55556 79845|0.44444 79846|0.83333 79847|0.83333 79848|0.79167 79849|0.72222 79850|0.875 79851|0.80556 79852|0.83333 79853|0.5 79854|0.44444 79855|0.51389 79856|0.47222 79857|0.68056 79858|0.52778 79859|0.69444 79860|0.68056 79861|0.65278 79862|0.56944 79863|0.44444 79864|0.5 79865|0.52778 79866|0.55556 79867|0.55556 79868|0.77778 79869|0.73611 79870|0.5 79871|0.79167 79872|0.79167 79873|0.5 79874|0.69444 79875|0.51389 79876|0.54167 79877|0.5 79878|0.79167 79879|0.56944 79880|0.58333 79881|0.83333 79882|0.54167 79883|0.59722 79884|0.65278 79885|0.65278 79886|0.73611 79887|0.5 79888|0.66667 79889|0.5 79890|0.5 79891|0.51389 79892|0.27778 79893|0.47222 79894|0.45833 79895|0.59722 79896|0.5 79897|0.61111 79898|0.625 79899|0.48611 79900|0.5 79901|0.44444 79902|0.5 79903|0.88889 79904|0.88889 79905|0.48611 79906|0.79167 79907|0.5 79908|0.5 79909|0.5 79910|0.61111 79911|0.69444 79912|0.5 79913|0.58333 79914|0.5 79915|0.86111 79916|0.55556 79917|0.5 79918|0.5 79919|0.52778 79920|0.43056 79921|0.875 79922|0.86111 79923|0.81944 79924|0.88889 79925|0.52778 79926|0.86111 79927|0.55556 79928|0.5 79929|0.5 79930|0.79167 79931|0.5 79932|0.55556 79933|0.51389 79934|0.5 79935|0.51389 79936|0.58333 79937|0.72222 79938|0.68056 79939|0.65278 79940|0.66667 79941|0.77778 79942|0.45833 79943|0.72222 79944|0.51389 79945|0.70833 79946|0.63889 79947|0.66667 79948|0.44444 79949|0.52778 79950|0.66667 79951|0.59722 79952|0.5 79953|0.5 79954|0.70833 79955|0.63889 79956|0.68056 79957|0.5 79958|0.55556 79959|0.55556 79960|0.80556 79961|0.68056 79962|0.52778 79963|0.56944 79964|0.54167 79965|0.25 79966|0.26389 79967|0.58333 79968|0.58333 79969|0.56944 79970|0.80556 79971|0.5 79972|0.77778 79973|0.68056 79974|0.66667 79975|0.69444 79976|0.75 79977|0.77778 79978|0.73611 79979|0.40278 79980|0.59722 79981|0.77778 79982|0.77778 79983|0.72222 79984|0.68056 79985|0.83333 79986|0.55556 79987|0.75 79988|0.81944 79989|0.58333 79990|0.70833 79991|0.80556 79992|0.81944 79993|0.84722 79994|0.83333 79995|0.95833 79996|0.52778 79997|0.45833 79998|0.5 79999|0.56944 80000|0.51389 80001|0.5 80002|0.5 80003|0.58333 80004|0.59722 80005|0.69444 80006|0.52778 80007|0.33333 80008|0.5 80009|0.5 80010|0.51389 80011|0.5 80012|0.52778 80013|0.5 80014|0.5 80015|0.55556 80016|0.5 80017|0.5 80018|0.5 80019|0.5 80020|0.48611 80021|0.75 80022|0.66667 80023|0.5 80024|0.91667 80025|0.61111 80026|0.5 80027|0.5 80028|0.5 80029|0.5 80030|0.5 80031|0.83333 80032|0.51389 80033|0.73611 80034|0.84722 80035|0.84722 80036|0.56944 80037|0.5 80038|0.81944 80039|0.81944 80040|0.36111 80041|0.47222 80042|0.68056 80043|0.52778 80044|0.5 80045|0.76389 80046|0.75 80047|0.91667 80048|0.75 80049|0.61111 80050|0.61111 80051|0.38889 80052|0.55556 80053|0.66667 80054|0.75 80055|0.52778 80056|0.5 80057|0.5 80058|0.43056 80059|0.44444 80060|0.54167 80061|0.70833 80062|0.51389 80063|0.44444 80064|0.61111 80065|0.44444 80066|0.83333 80067|0.86111 80068|0.76389 80069|0.79167 80070|0.94444 80071|0.94444 80072|0.88889 80073|0.81944 80074|0.95833 80075|0.84722 80076|0.83333 80077|0.93056 80078|0.83333 80079|0.45833 80080|0.44444 80081|0.55556 80082|0.375 80083|0.41667 80084|0.5 80085|0.5 80086|0.43056 80087|0.27778 80088|0.38889 80089|0.83333 80090|0.36111 80091|0.625 80092|0.56944 80093|0.51389 80094|0.13889 80095|0.31944 80096|0.5 80097|0.23611 80098|0.41667 80099|0.66667 80100|0.93056 80101|0.25 80102|0.375 80103|0.58333 80104|0.38889 80105|0.44444 80106|0.41667 80107|0.5 80108|0.54167 80109|0.43056 80110|0.5 80111|0.83333 80112|0.59722 80113|0.66667 80114|0.56944 80115|0.56944 80116|0.51389 80117|0.5 80118|0.56944 80119|0.72222 80120|0.52778 80121|0.70833 80122|0.5 80123|0.5 80124|0.45833 80125|0.5 80126|0.45833 80127|0.44444 80128|0.56944 80129|0.51389 80130|0.5 80131|0.375 80132|0.44444 80133|0.45833 80134|0.54167 80135|0.59722 80136|0.47222 80137|0.48611 80138|0.55556 80139|0.58333 80140|0.44444 80141|0.48611 80142|0.61111 80143|0.41667 80144|0.5 80145|0.27778 80146|0.375 80147|0.33333 80148|0.68056 80149|0.51389 80150|0.66667 80151|0.55556 80152|0.5 80153|0.5 80154|0.61111 80155|0.5 80156|0.56944 80157|0.56944 80158|0.55556 80159|0.76389 80160|0.68056 80161|0.69444 80162|0.5 80163|0.84722 80164|0.77778 80165|0.59722 80166|0.55556 80167|0.5 80168|0.5 80169|0.41667 80170|0.51389 80171|0.45833 80172|0.5 80173|0.5 80174|0.5 80175|0.5 80176|0.13889 80177|0.51389 80178|0.52778 80179|0.40278 80180|0.48611 80181|0.55556 80182|0.61111 80183|0.5 80184|0.54167 80185|0.63889 80186|0.5 80187|0.5 80188|0.5 80189|0.51389 80190|0.5 80191|0.5 80192|0.84722 80193|0.73611 80194|0.44444 80195|0.56944 80196|0.51389 80197|0.5 80198|0.5 80199|0.58333 80200|0.54167 80201|0.5 80202|0.58333 80203|0.5 80204|0.5 80205|0.72222 80206|0.48611 80207|0.51389 80208|0.79167 80209|0.5 80210|0.44444 80211|0.55556 80212|0.47222 80213|0.51389 80214|0.625 80215|0.44444 80216|0.5 80217|0.52778 80218|0.43056 80219|0.58333 80220|0.52778 80221|0.56944 80222|0.68056 80223|0.5 80224|0.73611 80225|0.68056 80226|0.5 80227|0.44444 80228|0.72222 80229|0.51389 80230|0.66667 80231|0.5 80232|0.5 80233|0.56944 80234|0.63889 80235|0.44444 80236|0.63889 80237|0.69444 80238|0.55556 80239|0.63889 80240|0.51389 80241|0.23611 80242|0.5 80243|0.61111 80244|0.52778 80245|0.5 80246|0.51389 80247|0.40278 80248|0.45833 80249|0.30556 80250|0.58333 80251|0.51389 80252|0.41667 80253|0.13889 80254|0.75 80255|0.44444 80256|0.5 80257|0.5 80258|0.5 80259|0.5 80260|0.55556 80261|0.83333 80262|0.5 80263|0.68056 80264|0.5 80265|0.5 80266|0.72222 80267|0.29167 80268|0.59722 80269|0.70833 80270|0.5 80271|0.5 80272|0.56944 80273|0.43056 80274|0.5 80275|0.61111 80276|0.48611 80277|0.65278 80278|0.69444 80279|0.63889 80280|0.52778 80281|0.44444 80282|0.5 80283|0.59722 80284|0.69444 80285|0.5 80286|0.55556 80287|0.55556 80288|0.40278 80289|0.45833 80290|0.38889 80291|0.65278 80292|0.25 80293|0.58333 80294|0.38889 80295|0.68056 80296|0.65278 80297|0.625 80298|0.5 80299|0.43056 80300|0.5 80301|0.65278 80302|0.66667 80303|0.52778 80304|0.55556 80305|0.44444 80306|0.59722 80307|0.61111 80308|0.54167 80309|0.69444 80310|0.63889 80311|0.52778 80312|0.5 80313|0.66667 80314|0.5 80315|0.33333 80316|0.5 80317|0.54167 80318|0.59722 80319|0.55556 80320|0.5 80321|0.69444 80322|0.5 80323|0.55556 80324|0.44444 80325|0.5 80326|0.45833 80327|0.44444 80328|0.76389 80329|0.55556 80330|0.44444 80331|0.5 80332|0.65278 80333|0.5 80334|0.18056 80335|0.5 80336|0.5 80337|0.44444 80338|0.59722 80339|0.55556 80340|0.5 80341|0.51389 80342|0.66667 80343|0.23611 80344|0.5 80345|0.51389 80346|0.51389 80347|0.77778 80348|0.625 80349|0.5 80350|0.66667 80351|0.5 80352|0.5 80353|0.56944 80354|0.5 80355|0.56944 80356|0.79167 80357|0.52778 80358|0.63889 80359|0.52778 80360|0.72222 80361|0.5 80362|0.54167 80363|0.55556 80364|0.5 80365|0.65278 80366|0.5 80367|0.61111 80368|0.55556 80369|0.47222 80370|0.5 80371|0.61111 80372|0.51389 80373|0.81944 80374|0.48611 80375|0.48611 80376|0.58333 80377|0.5 80378|0.76389 80379|0.36111 80380|0.55556 80381|0.83333 80382|0.55556 80383|0.55556 80384|0.47222 80385|0.55556 80386|0.625 80387|0.44444 80388|0.55556 80389|0.72222 80390|0.66667 80391|0.65278 80392|0.59722 80393|0.52778 80394|0.5 80395|0.56944 80396|0.47222 80397|0.5 80398|0.55556 80399|0.76389 80400|0.52778 80401|0.70833 80402|0.38889 80403|0.625 80404|0.375 80405|0.43056 80406|0.54167 80407|0.77778 80408|0.5 80409|0.70833 80410|0.45833 80411|0.5 80412|0.40278 80413|0.5 80414|0.61111 80415|0.69444 80416|0.56944 80417|0.54167 80418|0.59722 80419|0.48611 80420|0.65278 80421|0.56944 80422|0.29167 80423|0.375 80424|0.88889 80425|0.59722 80426|0.48611 80427|0.84722 80428|0.33333 80429|0.26389 80430|0.5 80431|0.66667 80432|0.45833 80433|0.47222 80434|0.5 80435|0.44444 80436|0.47222 80437|0.66667 80438|0.52778 80439|0.5 80440|0.56944 80441|0.48611 80442|0.44444 80443|0.44444 80444|0.44444 80445|0.34722 80446|0.069444 80447|0.16667 80448|0.41667 80449|0.18056 80450|0.45833 80451|0.56944 80452|0.55556 80453|0.54167 80454|0.58333 80455|0.51389 80456|0.51389 80457|0.51389 80458|0.54167 80459|0.55556 80460|0.72222 80461|0.80556 80462|0.5 80463|0.77778 80464|0.70833 80465|0.66667 80466|0.73611 80467|0.95833 80468|0.5 80469|0.55556 80470|0.56944 80471|0.45833 80472|0.41667 80473|0.58333 80474|0.59722 80475|0.69444 80476|0.36111 80477|0.69444 80478|0.38889 80479|0.40278 80480|0.5 80481|0.41667 80482|0.72222 80483|0.5 80484|0.5 80485|0.55556 80486|0.5 80487|0.52778 80488|0.43056 80489|0.25 80490|0.36111 80491|0.44444 80492|0.83333 80493|0.86111 80494|0.70833 80495|0.63889 80496|0.70833 80497|0.66667 80498|0.77778 80499|0.77778 80500|0.59722 80501|0.47222 80502|0.65278 80503|0.72222 80504|0.52778 80505|0.55556 80506|0.5 80507|0.5 80508|0.58333 80509|0.44444 80510|0.65278 80511|0.51389 80512|0.84722 80513|0.5 80514|0.45833 80515|0.61111 80516|0.56944 80517|0.55556 80518|0.59722 80519|0.5 80520|0.80556 80521|0.47222 80522|0.5 80523|0.59722 80524|0.29167 80525|0.41667 80526|0.75 80527|0.61111 80528|0.40278 80529|0.55556 80530|0.63889 80531|0.48611 80532|0.33333 80533|0.68056 80534|0.80556 80535|0.59722 80536|0.84722 80537|0.72222 80538|0.83333 80539|0.625 80540|0.59722 80541|0.63889 80542|0.80556 80543|0.61111 80544|0.76389 80545|0.69444 80546|0.66667 80547|0.70833 80548|0.38889 80549|0.41667 80550|0.44444 80551|0.61111 80552|0.41667 80553|0.38889 80554|0.41667 80555|0.36111 80556|0.83333 80557|0.77778 80558|0.54167 80559|0.55556 80560|0.5 80561|0.51389 80562|0.5 80563|0.76389 80564|0.48611 80565|0.5 80566|0.5 80567|0.5 80568|0.52778 80569|0.52778 80570|0.27778 80571|0.5 80572|0.63889 80573|0.5 80574|0.59722 80575|0.59722 80576|0.5 80577|0.5 80578|0.55556 80579|0.59722 80580|0.61111 80581|0.5 80582|0.68056 80583|0.51389 80584|0.73611 80585|0.45833 80586|0.77778 80587|0.5 80588|0.45833 80589|0.33333 80590|0.81944 80591|0.20833 80592|0.5 80593|0.73611 80594|0.5 80595|0.61111 80596|0.79167 80597|0.83333 80598|0.5 80599|0.5 80600|0.44444 80601|0.5 80602|0.56944 80603|0.5 80604|0.72222 80605|0.65278 80606|0.86111 80607|0.26389 80608|0.52778 80609|0.33333 80610|0.5 80611|0.625 80612|0.52778 80613|0.44444 80614|0.69444 80615|0.56944 80616|0.68056 80617|0.5 80618|0.51389 80619|0.5 80620|0.5 80621|0.5 80622|0.5 80623|0.80556 80624|0.5 80625|0.5 80626|0.55556 80627|0.73611 80628|0.48611 80629|0.48611 80630|0.33333 80631|0.61111 80632|0.76389 80633|0.5 80634|0.5 80635|0.52778 80636|0.45833 80637|0.70833 80638|0.68056 80639|0.5 80640|0.5 80641|0.61111 80642|0.5 80643|0.375 80644|0.55556 80645|0.51389 80646|0.45833 80647|0.36111 80648|0.56944 80649|0.76389 80650|0.5 80651|0.51389 80652|0.5 80653|0.56944 80654|0.5 80655|0.56944 80656|0.5 80657|0.61111 80658|0.5 80659|0.5 80660|0.33333 80661|0.55556 80662|0.47222 80663|0.5 80664|0.5 80665|0.38889 80666|0.5 80667|0.72222 80668|0.5 80669|0.72222 80670|0.45833 80671|0.81944 80672|0.58333 80673|0.52778 80674|0.20833 80675|0.44444 80676|0.41667 80677|0.61111 80678|0.43056 80679|0.5 80680|0.5 80681|0.5 80682|0.48611 80683|0.5 80684|0.41667 80685|0.48611 80686|0.55556 80687|0.5 80688|0.54167 80689|0.65278 80690|0.51389 80691|0.5 80692|0.5 80693|0.625 80694|0.5 80695|0.38889 80696|0.56944 80697|0.5 80698|0.625 80699|0.44444 80700|0.65278 80701|0.51389 80702|0.44444 80703|0.55556 80704|0.27778 80705|0.38889 80706|0.68056 80707|0.375 80708|0.59722 80709|0.63889 80710|0.33333 80711|0.75 80712|0.66667 80713|0.55556 80714|0.625 80715|0.54167 80716|0.70833 80717|0.54167 80718|0.70833 80719|0.5 80720|0.83333 80721|0.13889 80722|0.27778 80723|0.40278 80724|0.77778 80725|0.86111 80726|0.70833 80727|0.88889 80728|0.44444 80729|0.54167 80730|0.625 80731|0.66667 80732|0.5 80733|0.76389 80734|0.73611 80735|0.68056 80736|0.59722 80737|0.52778 80738|0.66667 80739|0.66667 80740|0.80556 80741|0.77778 80742|0.5 80743|0.73611 80744|0.56944 80745|0.77778 80746|0.625 80747|0.66667 80748|0.61111 80749|0.81944 80750|0.29167 80751|0.41667 80752|0.44444 80753|0.77778 80754|0.55556 80755|0.80556 80756|0.80556 80757|0.69444 80758|0.55556 80759|0.76389 80760|0.77778 80761|0.70833 80762|0.81944 80763|0.83333 80764|0.61111 80765|0.76389 80766|0.83333 80767|0.83333 80768|0.80556 80769|0.59722 80770|0.81944 80771|0.66667 80772|0.84722 80773|0.76389 80774|0.83333 80775|0.5 80776|0.43056 80777|0.44444 80778|0.77778 80779|0.77778 80780|0.80556 80781|0.81944 80782|0.76389 80783|0.79167 80784|0.83333 80785|0.73611 80786|0.80556 80787|0.77778 80788|0.69444 80789|0.73611 80790|0.75 80791|0.75 80792|0.72222 80793|0.76389 80794|0.58333 80795|0.76389 80796|0.72222 80797|0.875 80798|0.94444 80799|0.75 80800|0.69444 80801|0.61111 80802|0.73611 80803|0.81944 80804|0.76389 80805|0.75 80806|0.84722 80807|0.83333 80808|0.68056 80809|0.84722 80810|0.83333 80811|0.80556 80812|0.81944 80813|0.79167 80814|0.76389 80815|0.83333 80816|0.66667 80817|0.73611 80818|0.66667 80819|0.61111 80820|0.63889 80821|0.68056 80822|0.77778 80823|0.63889 80824|0.625 80825|0.68056 80826|0.69444 80827|0.84722 80828|0.80556 80829|0.81944 80830|0.41667 80831|0.55556 80832|0.86111 80833|0.81944 80834|0.69444 80835|0.52778 80836|0.59722 80837|0.83333 80838|0.81944 80839|0.55556 80840|0.76389 80841|0.30556 80842|0.52778 80843|0.625 80844|0.5 80845|0.5 80846|0.5 80847|0.54167 80848|0.5 80849|0.58333 80850|0.52778 80851|0.58333 80852|0.55556 80853|0.55556 80854|0.45833 80855|0.5 80856|0.55556 80857|0.58333 80858|0.54167 80859|0.33333 80860|0.31944 80861|0.5 80862|0.36111 80863|0.55556 80864|0.375 80865|0.5 80866|0.43056 80867|0.625 80868|0.38889 80869|0.375 80870|0.625 80871|0.65278 80872|0.27778 80873|0.22222 80874|0.44444 80875|0.54167 80876|0.55556 80877|0.51389 80878|0.5 80879|0.625 80880|0.38889 80881|0.44444 80882|0.66667 80883|0.55556 80884|0.55556 80885|0.77778 80886|0.70833 80887|0.65278 80888|0.23611 80889|0.18056 80890|0.72222 80891|0.69444 80892|0.77778 80893|0.66667 80894|0.55556 80895|0.61111 80896|0.69444 80897|0.65278 80898|0.69444 80899|0.80556 80900|0.83333 80901|0.72222 80902|0.70833 80903|0.68056 80904|0.625 80905|0.72222 80906|0.72222 80907|0.76389 80908|0.69444 80909|0.625 80910|0.66667 80911|0.45833 80912|0.68056 80913|0.625 80914|0.75 80915|0.875 80916|0.79167 80917|0.81944 80918|0.86111 80919|0.83333 80920|0.66667 80921|0.81944 80922|0.73611 80923|0.69444 80924|0.73611 80925|0.88889 80926|0.86111 80927|0.81944 80928|0.5 80929|0.43056 80930|0.36111 80931|0.34722 80932|0.68056 80933|0.5 80934|0.55556 80935|0.61111 80936|0.5 80937|0.55556 80938|0.5 80939|0.52778 80940|0.55556 80941|0.375 80942|0.72222 80943|0.5 80944|0.68056 80945|0.5 80946|0.59722 80947|0.77778 80948|0.23611 80949|0.51389 80950|0.54167 80951|0.55556 80952|0.38889 80953|0.52778 80954|0.33333 80955|0.375 80956|0.51389 80957|0.61111 80958|0.5 80959|0.41667 80960|0.51389 80961|0.5 80962|0.61111 80963|0.5 80964|0.55556 80965|0.43056 80966|0.44444 80967|0.51389 80968|0.625 80969|0.47222 80970|0.86111 80971|0.76389 80972|0.5 80973|0.61111 80974|0.625 80975|0.75 80976|0.5 80977|0.625 80978|0.69444 80979|0.51389 80980|0.5 80981|0.55556 80982|0.5 80983|0.55556 80984|0.83333 80985|0.72222 80986|0.69444 80987|0.73611 80988|0.61111 80989|0.61111 80990|0.875 80991|0.20833 80992|0.47222 80993|0.38889 80994|0.625 80995|0.61111 80996|0.43056 80997|0.26389 80998|0.84722 80999|0.75 81000|0.77778 81001|0.88889 81002|0.81944 81003|0.80556 81004|0.73611 81005|0.5 81006|0.5 81007|0.58333 81008|0.56944 81009|0.5 81010|0.47222 81011|0.51389 81012|0.58333 81013|0.76389 81014|0.33333 81015|0.22222 81016|0.30556 81017|0.70833 81018|0.5 81019|0.55556 81020|0.75 81021|0.72222 81022|0.56944 81023|0.65278 81024|0.55556 81025|0.63889 81026|0.5 81027|0.5 81028|0.69444 81029|0.5 81030|0.625 81031|0.5 81032|0.34722 81033|0.30556 81034|0.47222 81035|0.5 81036|0.51389 81037|0.5 81038|0.5 81039|0.61111 81040|0.54167 81041|0.5 81042|0.69444 81043|0.58333 81044|0.5 81045|0.45833 81046|0.45833 81047|0.58333 81048|0.68056 81049|0.5 81050|0.70833 81051|0.51389 81052|0.81944 81053|0.61111 81054|0.5 81055|0.73611 81056|0.76389 81057|0.80556 81058|0.65278 81059|0.65278 81060|0.51389 81061|0.54167 81062|0.5 81063|0.20833 81064|0.76389 81065|0.72222 81066|0.86111 81067|0.70833 81068|0.5 81069|0.55556 81070|0.5 81071|0.55556 81072|0.81944 81073|0.5 81074|0.58333 81075|0.38889 81076|0.47222 81077|0.45833 81078|0.5 81079|0.5 81080|0.5 81081|0.77778 81082|0.5 81083|0.59722 81084|0.52778 81085|0.5 81086|0.69444 81087|0.55556 81088|0.63889 81089|0.56944 81090|0.72222 81091|0.77778 81092|0.875 81093|0.5 81094|0.94444 81095|0.88889 81096|0.80556 81097|0.875 81098|0.84722 81099|0.73611 81100|0.33333 81101|0.72222 81102|0.61111 81103|0.69444 81104|0.80556 81105|0.59722 81106|0.70833 81107|0.625 81108|0.5 81109|0.5 81110|0.5 81111|0.66667 81112|0.75 81113|0.55556 81114|0.73611 81115|0.65278 81116|0.625 81117|0.5 81118|0.73611 81119|0.66667 81120|0.625 81121|0.51389 81122|0.70833 81123|0.59722 81124|0.54167 81125|0.72222 81126|0.59722 81127|0.58333 81128|0.51389 81129|0.38889 81130|0.51389 81131|0.625 81132|0.29167 81133|0.45833 81134|0.5 81135|0.61111 81136|0.52778 81137|0.51389 81138|0.38889 81139|0.56944 81140|0.72222 81141|0.80556 81142|0.375 81143|0.63889 81144|0.54167 81145|0.5 81146|0.75 81147|0.65278 81148|0.5 81149|0.45833 81150|0.875 81151|0.70833 81152|0.66667 81153|0.88889 81154|0.52778 81155|0.55556 81156|0.90278 81157|0.47222 81158|0.61111 81159|0.81944 81160|0.5 81161|0.5 81162|0.72222 81163|0.55556 81164|0.51389 81165|0.94444 81166|0.70833 81167|0.83333 81168|0.43056 81169|0.75 81170|0.80556 81171|0.70833 81172|0.34722 81173|0.5 81174|0.63889 81175|0.83333 81176|0.77778 81177|0.34722 81178|0.58333 81179|0.65278 81180|0.52778 81181|0.83333 81182|0.44444 81183|0.5 81184|0.16667 81185|0.79167 81186|0.76389 81187|0.63889 81188|0.65278 81189|0.65278 81190|0.66667 81191|0.55556 81192|0.75 81193|0.58333 81194|0.5 81195|0.66667 81196|0.51389 81197|0.54167 81198|0.5 81199|0.77778 81200|0.61111 81201|0.5 81202|0.5 81203|0.375 81204|0.55556 81205|0.66667 81206|0.5 81207|0.79167 81208|0.90278 81209|0.68056 81210|0.58333 81211|0.25 81212|0.5 81213|0.44444 81214|0.5 81215|0.44444 81216|0.79167 81217|0.66667 81218|0.69444 81219|0.65278 81220|0.68056 81221|0.76389 81222|0.72222 81223|0.625 81224|0.72222 81225|0.73611 81226|0.69444 81227|0.70833 81228|0.68056 81229|0.69444 81230|0.72222 81231|0.77778 81232|0.61111 81233|0.625 81234|0.63889 81235|0.69444 81236|0.61111 81237|0.80556 81238|0.76389 81239|0.41667 81240|0.80556 81241|0.75 81242|0.77778 81243|0.80556 81244|0.59722 81245|0.80556 81246|0.63889 81247|0.58333 81248|0.54167 81249|0.72222 81250|0.77778 81251|0.83333 81252|0.72222 81253|0.76389 81254|0.83333 81255|0.69444 81256|0.65278 81257|0.5 81258|0.5 81259|0.33333 81260|0.40278 81261|0.73611 81262|0.68056 81263|0.63889 81264|0.61111 81265|0.5 81266|0.58333 81267|0.55556 81268|0.58333 81269|0.52778 81270|0.58333 81271|0.76389 81272|0.63889 81273|0.45833 81274|0.40278 81275|0.59722 81276|0.48611 81277|0.51389 81278|0.44444 81279|0.73611 81280|0.68056 81281|0.79167 81282|0.72222 81283|0.83333 81284|0.73611 81285|0.63889 81286|0.73611 81287|0.66667 81288|0.90278 81289|0.81944 81290|0.66667 81291|0.72222 81292|0.52778 81293|0.68056 81294|0.5 81295|0.5 81296|0.66667 81297|0.27778 81298|0.68056 81299|0.79167 81300|0.625 81301|0.54167 81302|0.44444 81303|0.68056 81304|0.52778 81305|0.68056 81306|0.59722 81307|0.5 81308|0.77778 81309|0.76389 81310|0.54167 81311|0.75 81312|0.625 81313|0.76389 81314|0.88889 81315|0.90278 81316|0.61111 81317|0.65278 81318|0.91667 81319|0.65278 81320|0.44444 81321|0.38889 81322|0.68056 81323|0.63889 81324|0.70833 81325|0.5 81326|0.5 81327|0.5 81328|0.66667 81329|0.58333 81330|0.65278 81331|0.5 81332|0.66667 81333|0.63889 81334|0.59722 81335|0.5 81336|0.72222 81337|0.40278 81338|0.81944 81339|0.73611 81340|0.5 81341|0.5 81342|0.44444 81343|0.77778 81344|0.52778 81345|0.59722 81346|0.79167 81347|0.69444 81348|0.625 81349|0.61111 81350|0.5 81351|0.875 81352|0.88889 81353|0.70833 81354|0.55556 81355|0.80556 81356|0.79167 81357|0.875 81358|0.76389 81359|0.77778 81360|0.76389 81361|0.66667 81362|0.79167 81363|0.80556 81364|0.72222 81365|0.66667 81366|0.69444 81367|0.76389 81368|0.66667 81369|0.69444 81370|0.75 81371|0.81944 81372|0.80556 81373|0.73611 81374|0.84722 81375|0.83333 81376|0.75 81377|0.55556 81378|0.91667 81379|0.875 81380|0.73611 81381|0.73611 81382|0.90278 81383|0.63889 81384|0.81944 81385|0.58333 81386|0.41667 81387|0.5 81388|0.54167 81389|0.875 81390|0.5 81391|0.5 81392|0.44444 81393|0.34722 81394|0.43056 81395|0.5 81396|0.65278 81397|0.45833 81398|0.68056 81399|0.73611 81400|0.77778 81401|0.41667 81402|0.72222 81403|0.79167 81404|0.75 81405|0.84722 81406|0.51389 81407|0.15278 81408|0.70833 81409|0.41667 81410|0.77778 81411|0.79167 81412|0.41667 81413|0.58333 81414|0.45833 81415|0.26389 81416|0.16667 81417|0.15278 81418|0.20833 81419|0.33333 81420|0.36111 81421|0.63889 81422|0.44444 81423|0.61111 81424|0.5 81425|0.65278 81426|0.69444 81427|0.73611 81428|0.44444 81429|0.68056 81430|0.70833 81431|0.23611 81432|0.38889 81433|0.31944 81434|0.5 81435|0.54167 81436|0.93056 81437|0.5 81438|0.5 81439|0.5 81440|0.5 81441|0.68056 81442|0.61111 81443|0.63889 81444|0.69444 81445|0.65278 81446|0.63889 81447|0.5 81448|0.43056 81449|0.59722 81450|0.69444 81451|0.75 81452|0.5 81453|0.54167 81454|0.5 81455|0.5 81456|0.5 81457|0.44444 81458|0.5 81459|0.5 81460|0.38889 81461|0.44444 81462|0.5 81463|0.45833 81464|0.5 81465|0.65278 81466|0.56944 81467|0.73611 81468|0.51389 81469|0.69444 81470|0.5 81471|0.51389 81472|0.51389 81473|0.55556 81474|0.77778 81475|0.66667 81476|0.72222 81477|0.5 81478|0.44444 81479|0.22222 81480|0.38889 81481|0.52778 81482|0.65278 81483|0.5 81484|0.51389 81485|0.5 81486|0.66667 81487|0.93056 81488|0.875 81489|0.45833 81490|0.44444 81491|0.5 81492|0.86111 81493|0.65278 81494|0.56944 81495|0.63889 81496|0.48611 81497|0.52778 81498|0.40278 81499|0.5 81500|0.5 81501|0.66667 81502|0.54167 81503|0.47222 81504|0.5 81505|0.51389 81506|0.63889 81507|0.44444 81508|0.48611 81509|0.33333 81510|0.45833 81511|0.52778 81512|0.61111 81513|0.5 81514|0.80556 81515|0.58333 81516|0.56944 81517|0.5 81518|0.5 81519|0.41667 81520|0.55556 81521|0.44444 81522|0.51389 81523|0.5 81524|0.5 81525|0.72222 81526|0.75 81527|0.5 81528|0.54167 81529|0.66667 81530|0.55556 81531|0.56944 81532|0.55556 81533|0.48611 81534|0.5 81535|0.66667 81536|0.59722 81537|0.52778 81538|0.68056 81539|0.51389 81540|0.47222 81541|0.48611 81542|0.61111 81543|0.625 81544|0.58333 81545|0.38889 81546|0.5 81547|0.51389 81548|0.5 81549|0.5 81550|0.5 81551|0.65278 81552|0.58333 81553|0.68056 81554|0.5 81555|0.44444 81556|0.27778 81557|0.52778 81558|0.36111 81559|0.5 81560|0.81944 81561|0.52778 81562|0.41667 81563|0.93056 81564|0.875 81565|0.88889 81566|0.79167 81567|0.73611 81568|0.44444 81569|0.5 81570|0.47222 81571|0.66667 81572|0.41667 81573|0.38889 81574|0.70833 81575|0.73611 81576|0.83333 81577|0.38889 81578|0.70833 81579|0.63889 81580|0.63889 81581|0.73611 81582|0.5 81583|0.41667 81584|0.38889 81585|0.47222 81586|0.66667 81587|0.72222 81588|0.55556 81589|0.5 81590|0.38889 81591|0.45833 81592|0.55556 81593|0.76389 81594|0.80556 81595|0.41667 81596|0.66667 81597|0.63889 81598|0.54167 81599|0.56944 81600|0.69444 81601|0.83333 81602|0.55556 81603|0.43056 81604|0.51389 81605|0.73611 81606|0.41667 81607|0.61111 81608|0.75 81609|0.68056 81610|0.625 81611|0.69444 81612|0.69444 81613|0.31944 81614|0.52778 81615|0.43056 81616|0.94444 81617|0.90278 81618|0.65278 81619|0.72222 81620|0.20833 81621|0.27778 81622|0.68056 81623|0.20833 81624|0.47222 81625|0.51389 81626|0.72222 81627|0.65278 81628|0.54167 81629|0.55556 81630|0.72222 81631|0.80556 81632|0.51389 81633|0.73611 81634|0.79167 81635|0.72222 81636|0.76389 81637|0.77778 81638|0.80556 81639|0.72222 81640|0.65278 81641|0.81944 81642|0.875 81643|0.63889 81644|0.61111 81645|0.65278 81646|0.58333 81647|0.5 81648|0.66667 81649|0.66667 81650|0.77778 81651|0.76389 81652|0.77778 81653|0.72222 81654|0.94444 81655|0.58333 81656|0.58333 81657|0.68056 81658|0.90278 81659|0.86111 81660|0.69444 81661|0.5 81662|0.65278 81663|0.72222 81664|0.61111 81665|0.56944 81666|0.51389 81667|0.55556 81668|0.59722 81669|0.66667 81670|0.5 81671|0.44444 81672|0.31944 81673|0.56944 81674|0.72222 81675|0.58333 81676|0.69444 81677|0.81944 81678|0.76389 81679|0.44444 81680|0.77778 81681|0.80556 81682|0.59722 81683|0.47222 81684|0.81944 81685|0.93056 81686|0.81944 81687|0.625 81688|0.65278 81689|0.84722 81690|0.80556 81691|0.70833 81692|0.22222 81693|0.73611 81694|1 81695|0.94444 81696|0.56944 81697|0.63889 81698|0.66667 81699|0.61111 81700|0.5 81701|0.61111 81702|0.83333 81703|0.72222 81704|0.59722 81705|0.5 81706|0.55556 81707|0.27778 81708|0.70833 81709|0.76389 81710|0.52778 81711|0.70833 81712|0.70833 81713|0.69444 81714|0.81944 81715|0.88889 81716|0.5 81717|0.48611 81718|0.5 81719|0.70833 81720|0.5 81721|0.5 81722|0.80556 81723|0.72222 81724|0.68056 81725|0.75 81726|0.77778 81727|0.55556 81728|0.55556 81729|0.51389 81730|0.5 81731|0.80556 81732|0.625 81733|0.63889 81734|0.90278 81735|0.70833 81736|0.81944 81737|0.76389 81738|0.66667 81739|0.72222 81740|0.80556 81741|0.72222 81742|0.5 81743|0.625 81744|0.81944 81745|0.26389 81746|0.625 81747|0.93056 81748|0.58333 81749|0.66667 81750|0.58333 81751|0.55556 81752|0.43056 81753|0.56944 81754|0.68056 81755|0.63889 81756|0.69444 81757|0.52778 81758|0.73611 81759|0.5 81760|0.54167 81761|0.51389 81762|0.81944 81763|0.61111 81764|0.58333 81765|0.5 81766|0.76389 81767|0.77778 81768|0.5 81769|0.83333 81770|0.875 81771|0.84722 81772|0.79167 81773|0.38889 81774|0.25 81775|0.72222 81776|0.76389 81777|0.77778 81778|0.77778 81779|0.68056 81780|0.72222 81781|0.51389 81782|0.91667 81783|0.95833 81784|0.5 81785|0.58333 81786|0.80556 81787|0.69444 81788|0.75 81789|0.75 81790|0.63889 81791|0.88889 81792|0.88889 81793|0.88889 81794|0.83333 81795|0.56944 81796|0.27778 81797|0.76389 81798|0.54167 81799|0.70833 81800|0.41667 81801|0.77778 81802|0.68056 81803|0.59722 81804|0.625 81805|0.5 81806|0.5 81807|0.5 81808|0.5 81809|0.40278 81810|0.5 81811|0.44444 81812|0.40278 81813|0.44444 81814|0.81944 81815|0.80556 81816|0.75 81817|0.72222 81818|0.5 81819|0.25 81820|0.70833 81821|0.66667 81822|0.34722 81823|0.27778 81824|0.59722 81825|0.51389 81826|0.55556 81827|0.41667 81828|0.52778 81829|0.72222 81830|0.5 81831|0.66667 81832|0.83333 81833|0.45833 81834|0.625 81835|0.80556 81836|0.77778 81837|0.65278 81838|0.72222 81839|0.63889 81840|0.625 81841|0.72222 81842|0.72222 81843|0.66667 81844|0.72222 81845|0.63889 81846|0.55556 81847|0.76389 81848|0.84722 81849|0.70833 81850|0.5 81851|0.61111 81852|0.5 81853|0.40278 81854|0.5 81855|0.5 81856|0.5 81857|0.69444 81858|0.66667 81859|0.54167 81860|0.58333 81861|0.52778 81862|0.625 81863|0.73611 81864|0.61111 81865|0.5 81866|0.5 81867|0.33333 81868|0.58333 81869|0.70833 81870|0.83333 81871|0.79167 81872|0.5 81873|0.80556 81874|0.86111 81875|0.56944 81876|0.5 81877|0.75 81878|0.52778 81879|0.56944 81880|0.45833 81881|0.5 81882|0.43056 81883|0.5 81884|0.90278 81885|0.90278 81886|0.72222 81887|0.48611 81888|0.51389 81889|0.93056 81890|0.58333 81891|0.47222 81892|0.61111 81893|0.5 81894|0.79167 81895|0.5 81896|0.63889 81897|0.93056 81898|0.58333 81899|0.66667 81900|0.30556 81901|0.5 81902|0.51389 81903|0.36111 81904|0.63889 81905|0.63889 81906|0.55556 81907|0.5 81908|0.30556 81909|0.41667 81910|0.55556 81911|0.5 81912|0.76389 81913|0.86111 81914|0.5 81915|0.61111 81916|0.875 81917|0.86111 81918|0.61111 81919|0.72222 81920|0.44444 81921|0.72222 81922|0.55556 81923|0.52778 81924|0.83333 81925|0.5 81926|0.44444 81927|0.65278 81928|0.58333 81929|0.56944 81930|0.31944 81931|0.55556 81932|0.61111 81933|0.5 81934|0.5 81935|0.73611 81936|0.72222 81937|0.73611 81938|0.91667 81939|0.76389 81940|0.22222 81941|0.18056 81942|0.75 81943|0.36111 81944|0.63889 81945|0.77778 81946|0.56944 81947|0.80556 81948|0.875 81949|0.47222 81950|0.80556 81951|0.90278 81952|0.55556 81953|0.63889 81954|0.56944 81955|0.55556 81956|0.45833 81957|0.40278 81958|0.59722 81959|0.34722 81960|0.38889 81961|0.43056 81962|0.70833 81963|0.29167 81964|0.625 81965|0.75 81966|0.83333 81967|0.45833 81968|0.43056 81969|0.56944 81970|0.59722 81971|0.73611 81972|0.73611 81973|0.81944 81974|0.51389 81975|0.52778 81976|0.5 81977|0.86111 81978|0.68056 81979|0.55556 81980|0.88889 81981|0.81944 81982|0.625 81983|0.83333 81984|0.63889 81985|0.72222 81986|0.59722 81987|0.61111 81988|0.22222 81989|0.66667 81990|0.65278 81991|0.70833 81992|0.81944 81993|0.5 81994|0.5 81995|0.54167 81996|0.61111 81997|0.69444 81998|0.45833 81999|0.81944 82000|0.66667 82001|0.5 82002|0.5 82003|0.73611 82004|0.375 82005|0.52778 82006|0.51389 82007|0.5 82008|0.5 82009|0.5 82010|0.80556 82011|0.34722 82012|0.52778 82013|0.54167 82014|0.44444 82015|0.44444 82016|0.70833 82017|0.56944 82018|0.48611 82019|0.5 82020|0.5 82021|0.875 82022|0.5 82023|0.5 82024|0.5 82025|0.5 82026|0.61111 82027|0.58333 82028|0.76389 82029|0.38889 82030|0.5 82031|0.70833 82032|0.5 82033|0.61111 82034|0.59722 82035|0.56944 82036|0.65278 82037|0.63889 82038|0.77778 82039|0.77778 82040|0.55556 82041|0.72222 82042|0.51389 82043|0.70833 82044|0.77778 82045|0.93056 82046|0.66667 82047|0.56944 82048|0.66667 82049|0.75 82050|0.86111 82051|0.75 82052|0.48611 82053|0.56944 82054|0.65278 82055|0.5 82056|0.73611 82057|0.27778 82058|0.44444 82059|0.73611 82060|0.59722 82061|0.69444 82062|0.625 82063|0.30556 82064|0.52778 82065|0.55556 82066|0.45833 82067|0.22222 82068|0.375 82069|0.59722 82070|0.36111 82071|0.33333 82072|0.51389 82073|0.5 82074|0.51389 82075|0.65278 82076|0.75 82077|0.41667 82078|0.36111 82079|0.38889 82080|0.51389 82081|0.75 82082|0.77778 82083|0.77778 82084|0.51389 82085|0.5 82086|0.5 82087|0.68056 82088|0.61111 82089|0.47222 82090|0.79167 82091|0.58333 82092|0.61111 82093|0.88889 82094|0.47222 82095|0.5 82096|0.5 82097|0.40278 82098|0.66667 82099|0.61111 82100|0.5 82101|0.61111 82102|0.76389 82103|0.625 82104|0.29167 82105|0.51389 82106|0.55556 82107|0.5 82108|0.55556 82109|0.5 82110|0.5 82111|0.54167 82112|0.33333 82113|0.5 82114|0.5 82115|0.52778 82116|0.44444 82117|0.55556 82118|0.5 82119|0.48611 82120|0.5 82121|0.54167 82122|0.5 82123|0.73611 82124|0.63889 82125|0.54167 82126|0.61111 82127|0.5 82128|0.5 82129|0.76389 82130|0.47222 82131|0.5 82132|0.5 82133|0.5 82134|0.73611 82135|0.79167 82136|0.66667 82137|0.36111 82138|0.45833 82139|0.48611 82140|0.45833 82141|0.55556 82142|0.83333 82143|0.5 82144|0.5 82145|0.73611 82146|0.51389 82147|0.77778 82148|0.77778 82149|0.59722 82150|0.58333 82151|0.44444 82152|0.5 82153|0.61111 82154|0.5 82155|0.5 82156|0.44444 82157|0.25 82158|0.65278 82159|0.54167 82160|0.63889 82161|0.80556 82162|0.68056 82163|0.68056 82164|0.70833 82165|0.59722 82166|0.59722 82167|0.91667 82168|0.65278 82169|0.83333 82170|0.59722 82171|0.58333 82172|0.625 82173|0.5 82174|0.65278 82175|0.58333 82176|0.66667 82177|0.84722 82178|0.75 82179|0.79167 82180|0.72222 82181|0.68056 82182|0.5 82183|0.58333 82184|0.72222 82185|0.86111 82186|0.59722 82187|0.83333 82188|0.72222 82189|0.83333 82190|0.79167 82191|0.72222 82192|0.97222 82193|0.81944 82194|0.76389 82195|0.47222 82196|0.51389 82197|0.52778 82198|0.68056 82199|0.54167 82200|0.5 82201|0.31944 82202|0.11111 82203|0.5 82204|0.55556 82205|0.69444 82206|0.5 82207|0.52778 82208|0.5 82209|0.5 82210|0.5 82211|0.70833 82212|0.56944 82213|0.5 82214|0.5 82215|0.5 82216|0.59722 82217|0.75 82218|0.55556 82219|0.5 82220|0.90278 82221|0.5 82222|0.55556 82223|0.5 82224|0.5 82225|0.56944 82226|0.70833 82227|0.097222 82228|0.52778 82229|0.65278 82230|0.5 82231|0.5 82232|0.51389 82233|0.5 82234|0.5 82235|0.5 82236|0.55556 82237|0.77778 82238|0.44444 82239|0.5 82240|0.22222 82241|0.5 82242|0.22222 82243|0.5 82244|0.5 82245|0.5 82246|0.83333 82247|0.84722 82248|0.55556 82249|0.56944 82250|0.5 82251|0.5 82252|0.56944 82253|0.66667 82254|0.5 82255|0.52778 82256|0.5 82257|0.48611 82258|0.48611 82259|0.55556 82260|0.5 82261|0.52778 82262|0.55556 82263|0.83333 82264|0.66667 82265|0.5 82266|0.5 82267|0.5 82268|0.56944 82269|0.47222 82270|0.5 82271|0.79167 82272|0.61111 82273|0.36111 82274|0.34722 82275|0.375 82276|0.48611 82277|0.68056 82278|0.61111 82279|0.5 82280|0.81944 82281|0.625 82282|0.90278 82283|0.5 82284|0.59722 82285|0.5 82286|0.5 82287|0.5 82288|0.56944 82289|0.5 82290|0.43056 82291|0.5 82292|0.86111 82293|0.84722 82294|0.5 82295|0.5 82296|0.5 82297|0.55556 82298|0.44444 82299|0.5 82300|0.55556 82301|0.61111 82302|0.55556 82303|0.55556 82304|0.58333 82305|0.51389 82306|0.61111 82307|0.5 82308|0.55556 82309|0.5 82310|0.48611 82311|0.56944 82312|0.5 82313|0.36111 82314|0.5 82315|0.43056 82316|0.51389 82317|0.5 82318|0.5 82319|0.5 82320|0.70833 82321|0.83333 82322|0.5 82323|0.51389 82324|0.5 82325|0.5 82326|0.68056 82327|0.625 82328|0.5 82329|0.77778 82330|0.875 82331|0.69444 82332|0.81944 82333|0.80556 82334|0.58333 82335|0.66667 82336|0.5 82337|0.5 82338|0.5 82339|0.5 82340|0.5 82341|0.40278 82342|0.43056 82343|0.72222 82344|0.52778 82345|0.56944 82346|0.51389 82347|0.5 82348|0.55556 82349|0.5 82350|0.5 82351|0.5 82352|0.70833 82353|0.59722 82354|0.54167 82355|0.80556 82356|0.65278 82357|0.73611 82358|0.77778 82359|0.76389 82360|0.875 82361|0.52778 82362|0.55556 82363|0.5 82364|0.5 82365|0.5 82366|0.51389 82367|0.51389 82368|0.58333 82369|0.5 82370|0.5 82371|0.84722 82372|0.66667 82373|0.54167 82374|0.56944 82375|0.73611 82376|0.68056 82377|0.29167 82378|0.48611 82379|0.61111 82380|0.68056 82381|0.83333 82382|0.66667 82383|0.5 82384|0.29167 82385|0.5 82386|0.38889 82387|0.5 82388|0.58333 82389|0.51389 82390|0.55556 82391|0.55556 82392|0.54167 82393|0.70833 82394|0.70833 82395|0.83333 82396|0.66667 82397|0.79167 82398|0.76389 82399|0.77778 82400|0.66667 82401|0.61111 82402|0.40278 82403|0.56944 82404|0.55556 82405|0.5 82406|0.5 82407|0.59722 82408|0.27778 82409|0.47222 82410|0.43056 82411|0.5 82412|0.63889 82413|0.5 82414|0.61111 82415|0.63889 82416|0.61111 82417|0.68056 82418|0.58333 82419|0.76389 82420|0.55556 82421|0.76389 82422|0.5 82423|0.5 82424|0.45833 82425|0.55556 82426|0.5 82427|0.55556 82428|0.66667 82429|0.77778 82430|0.48611 82431|0.38889 82432|0.61111 82433|0.65278 82434|0.79167 82435|0.58333 82436|0.52778 82437|0.58333 82438|0.80556 82439|0.65278 82440|0.45833 82441|0.33333 82442|0.51389 82443|0.79167 82444|0.16667 82445|0.083333 82446|0.18056 82447|0.41667 82448|0.47222 82449|0.43056 82450|0.44444 82451|0.33333 82452|0.45833 82453|0.5 82454|0.44444 82455|0.5 82456|0.5 82457|0.5 82458|0.5 82459|0.43056 82460|0.29167 82461|0.5 82462|0.5 82463|0.56944 82464|0.5 82465|0.43056 82466|0.5 82467|0.51389 82468|0.5 82469|0.5 82470|0.5 82471|0.5 82472|0.5 82473|0.5 82474|0.5 82475|0.5 82476|0.52778 82477|0.72222 82478|0.75 82479|0.63889 82480|0.61111 82481|0.43056 82482|0.72222 82483|0.66667 82484|0.80556 82485|0.56944 82486|0.44444 82487|0.55556 82488|0.5 82489|0.51389 82490|0.51389 82491|0.45833 82492|0.54167 82493|0.18056 82494|0.66667 82495|0.63889 82496|0.5 82497|0.5 82498|0.5 82499|0.61111 82500|0.5 82501|0.45833 82502|0.38889 82503|0.375 82504|0.68056 82505|0.51389 82506|0.55556 82507|0.63889 82508|0.55556 82509|0.55556 82510|0.33333 82511|0.69444 82512|0.47222 82513|0.83333 82514|0.33333 82515|0.41667 82516|0.52778 82517|0.625 82518|0.5 82519|0.55556 82520|0.40278 82521|0.52778 82522|0.38889 82523|0.625 82524|0.79167 82525|0.91667 82526|0.77778 82527|0.73611 82528|0.66667 82529|0.72222 82530|0.72222 82531|0.51389 82532|0.52778 82533|0.45833 82534|0.29167 82535|0.55556 82536|0.72222 82537|0.80556 82538|0.55556 82539|0.5 82540|0.61111 82541|0.68056 82542|0.5 82543|0.54167 82544|0.55556 82545|0.65278 82546|0.5 82547|0.88889 82548|0.70833 82549|0.68056 82550|0.5 82551|0.63889 82552|0.70833 82553|0.44444 82554|0.52778 82555|0.75 82556|0.625 82557|0.59722 82558|0.84722 82559|0.625 82560|0.875 82561|0.66667 82562|0.76389 82563|0.70833 82564|0.77778 82565|0.77778 82566|0.68056 82567|0.72222 82568|0.5 82569|0.68056 82570|0.5 82571|0.5 82572|0.375 82573|0.43056 82574|0.36111 82575|0.69444 82576|0.84722 82577|0.38889 82578|0.5 82579|0.63889 82580|0.47222 82581|0.5 82582|0.51389 82583|0.5 82584|0.55556 82585|0.5 82586|0.625 82587|0.79167 82588|0.63889 82589|0.66667 82590|0.55556 82591|0.34722 82592|0.69444 82593|0.625 82594|0.45833 82595|0.55556 82596|0.5 82597|0.5 82598|0.48611 82599|0.52778 82600|0.625 82601|0.5 82602|0.61111 82603|0.63889 82604|0.65278 82605|0.69444 82606|0.44444 82607|0.48611 82608|0.625 82609|0.5 82610|0.47222 82611|0.27778 82612|0.38889 82613|0.41667 82614|0.52778 82615|0.51389 82616|0.54167 82617|0.55556 82618|0.61111 82619|0.65278 82620|0.44444 82621|0.47222 82622|0.70833 82623|0.22222 82624|0.48611 82625|0.5 82626|0.51389 82627|0.51389 82628|0.58333 82629|0.45833 82630|0.5 82631|0.52778 82632|0.59722 82633|0.38889 82634|0.44444 82635|0.83333 82636|0.27778 82637|0.5 82638|0.52778 82639|0.33333 82640|0.70833 82641|0.61111 82642|0.5 82643|0.5 82644|0.43056 82645|0.61111 82646|0.70833 82647|0.51389 82648|0.47222 82649|0.51389 82650|0.56944 82651|0.66667 82652|0.59722 82653|0.5 82654|0.55556 82655|0.375 82656|0.5 82657|0.31944 82658|0.59722 82659|0.58333 82660|0.66667 82661|0.5 82662|0.31944 82663|0.25 82664|0.63889 82665|0.55556 82666|0.59722 82667|0.44444 82668|0.48611 82669|0.41667 82670|0.41667 82671|0.59722 82672|0.38889 82673|0.63889 82674|0.63889 82675|0.68056 82676|0.72222 82677|0.72222 82678|0.72222 82679|0.5 82680|0.77778 82681|0.77778 82682|0.54167 82683|0.76389 82684|0.55556 82685|0.79167 82686|0.36111 82687|0.69444 82688|0.77778 82689|0.73611 82690|0.65278 82691|0.72222 82692|0.80556 82693|0.77778 82694|0.34722 82695|0.61111 82696|0.51389 82697|0.5 82698|0.5 82699|0.77778 82700|0.27778 82701|0.51389 82702|0.76389 82703|0.65278 82704|0.69444 82705|0.69444 82706|0.97222 82707|0.875 82708|0.5 82709|0.59722 82710|0.51389 82711|0.68056 82712|0.72222 82713|0.54167 82714|0.55556 82715|0.55556 82716|0.5 82717|0.56944 82718|0.45833 82719|0.55556 82720|0.58333 82721|0.63889 82722|0.68056 82723|0.51389 82724|0.72222 82725|0.65278 82726|0.5 82727|0.5 82728|0.5 82729|0.69444 82730|0.73611 82731|0.77778 82732|0.54167 82733|0.56944 82734|0.38889 82735|0.59722 82736|0.45833 82737|0.70833 82738|0.36111 82739|0.38889 82740|0.48611 82741|0.65278 82742|0.5 82743|0.70833 82744|0.5 82745|0.55556 82746|0.68056 82747|0.56944 82748|0.55556 82749|0.72222 82750|0.69444 82751|0.44444 82752|0.44444 82753|0.66667 82754|0.47222 82755|0.43056 82756|0.34722 82757|0.56944 82758|0.65278 82759|0.54167 82760|0.65278 82761|0.43056 82762|0.40278 82763|0.68056 82764|0.65278 82765|0.56944 82766|0.55556 82767|0.5 82768|0.97222 82769|0.66667 82770|0.80556 82771|0.86111 82772|0.81944 82773|0.63889 82774|0.68056 82775|0.63889 82776|0.61111 82777|0.38889 82778|0.30556 82779|0.63889 82780|0.66667 82781|0.69444 82782|0.56944 82783|0.5 82784|0.44444 82785|0.5 82786|0.5 82787|0.5 82788|0.51389 82789|0.5 82790|0.40278 82791|0.51389 82792|0.5 82793|0.51389 82794|0.55556 82795|0.5 82796|0.5 82797|0.5 82798|0.51389 82799|0.55556 82800|0.44444 82801|0.5 82802|0.5 82803|0.5 82804|0.5 82805|0.5 82806|0.51389 82807|0.5 82808|0.5 82809|0.52778 82810|0.51389 82811|0.80556 82812|0.61111 82813|0.55556 82814|0.5 82815|0.5 82816|0.44444 82817|0.5 82818|0.5 82819|0.70833 82820|0.70833 82821|0.58333 82822|0.5 82823|0.5 82824|0.5 82825|0.63889 82826|0.5 82827|0.5 82828|0.5 82829|0.375 82830|0.5 82831|0.5 82832|0.5 82833|0.5 82834|0.44444 82835|0.5 82836|0.55556 82837|0.5 82838|0.69444 82839|0.5 82840|0.47222 82841|0.63889 82842|0.70833 82843|0.90278 82844|0.41667 82845|0.56944 82846|0.29167 82847|0.27778 82848|0.30556 82849|0.91667 82850|0.41667 82851|0.65278 82852|0.69444 82853|0.5 82854|0.80556 82855|0.76389 82856|0.70833 82857|0.48611 82858|0.54167 82859|0.84722 82860|0.5 82861|0.63889 82862|0.51389 82863|0.5 82864|0.5 82865|0.65278 82866|0.34722 82867|0.66667 82868|0.59722 82869|0.43056 82870|0.55556 82871|0.76389 82872|0.70833 82873|0.47222 82874|0.5 82875|0.70833 82876|0.5 82877|0.5 82878|0.58333 82879|0.22222 82880|0.5 82881|0.61111 82882|0.76389 82883|0.625 82884|0.58333 82885|0.58333 82886|0.5 82887|0.79167 82888|0.65278 82889|0.5 82890|0.70833 82891|0.083333 82892|0.73611 82893|0.48611 82894|0.58333 82895|0.58333 82896|0.55556 82897|0.625 82898|0.68056 82899|0.73611 82900|0.69444 82901|0.59722 82902|0.69444 82903|0.48611 82904|0.5 82905|0.625 82906|0.51389 82907|0.45833 82908|0.76389 82909|0.66667 82910|0.5 82911|0.5 82912|0.54167 82913|0.5 82914|0.61111 82915|0.73611 82916|0.54167 82917|0.61111 82918|0.54167 82919|0.5 82920|0.51389 82921|0.5 82922|0.54167 82923|0.18056 82924|0.625 82925|0.43056 82926|0.83333 82927|0.83333 82928|0.44444 82929|0.56944 82930|0.58333 82931|0.66667 82932|0.69444 82933|0.54167 82934|0.65278 82935|0.5 82936|0.5 82937|0.54167 82938|0.69444 82939|0.84722 82940|0.54167 82941|0.66667 82942|0.58333 82943|0.5 82944|0.5 82945|0.58333 82946|0.5 82947|0.52778 82948|0.68056 82949|0.66667 82950|0.63889 82951|0.77778 82952|0.5 82953|0.375 82954|0.51389 82955|0.54167 82956|0.51389 82957|0.55556 82958|0.5 82959|0.66667 82960|0.51389 82961|0.51389 82962|0.51389 82963|0.59722 82964|0.5 82965|0.56944 82966|0.77778 82967|0.79167 82968|0.5 82969|0.55556 82970|0.54167 82971|0.75 82972|0.63889 82973|0.54167 82974|0.5 82975|0.48611 82976|0.51389 82977|0.54167 82978|0.65278 82979|0.43056 82980|0.61111 82981|0.47222 82982|0.875 82983|0.61111 82984|0.5 82985|0.68056 82986|0.88889 82987|0.625 82988|0.55556 82989|0.5 82990|0.5 82991|0.5 82992|0.55556 82993|0.54167 82994|0.51389 82995|0.5 82996|0.54167 82997|0.59722 82998|0.5 82999|0.55556 83000|0.31944 83001|0.875 83002|0.66667 83003|0.5 83004|0.5 83005|0.44444 83006|0.56944 83007|0.5 83008|0.30556 83009|0.43056 83010|0.55556 83011|0.5 83012|0.5 83013|0.5 83014|0.5 83015|0.40278 83016|0.5 83017|0.55556 83018|0.52778 83019|0.625 83020|0.5 83021|0.52778 83022|0.5 83023|0.5 83024|0.5 83025|0.51389 83026|0.25 83027|0.5 83028|0.63889 83029|0.44444 83030|0.69444 83031|0.56944 83032|0.44444 83033|0.5 83034|0.59722 83035|0.55556 83036|0.58333 83037|0.41667 83038|0.48611 83039|0.76389 83040|0.63889 83041|0.48611 83042|0.5 83043|0.5 83044|0.5 83045|0.44444 83046|0.44444 83047|0.61111 83048|0.58333 83049|0.44444 83050|0.31944 83051|0.54167 83052|0.47222 83053|0.59722 83054|0.55556 83055|0.69444 83056|0.61111 83057|0.43056 83058|0.5 83059|0.875 83060|0.44444 83061|0.5 83062|0.72222 83063|0.55556 83064|0.5 83065|0.5 83066|0.5 83067|0.5 83068|0.5 83069|0.5 83070|0.55556 83071|0.65278 83072|0.625 83073|0.5 83074|0.75 83075|0.79167 83076|0.61111 83077|0.5 83078|0.5 83079|0.58333 83080|0.51389 83081|0.36111 83082|0.44444 83083|0.56944 83084|0.5 83085|0.58333 83086|0.5 83087|0.79167 83088|0.58333 83089|0.56944 83090|0.5 83091|0.51389 83092|0.5 83093|0.5 83094|0.70833 83095|0.55556 83096|0.58333 83097|0.5 83098|0.5 83099|0.55556 83100|0.47222 83101|0.61111 83102|0.5 83103|0.5 83104|0.5 83105|0.5 83106|0.44444 83107|0.5 83108|0.625 83109|0.5 83110|0.47222 83111|0.69444 83112|0.56944 83113|0.40278 83114|0.5 83115|0.5 83116|0.69444 83117|0.56944 83118|0.51389 83119|0.43056 83120|0.55556 83121|0.38889 83122|0.72222 83123|0.5 83124|0.56944 83125|0.51389 83126|0.5 83127|0.5 83128|0.51389 83129|0.83333 83130|0.5 83131|0.625 83132|0.5 83133|0.73611 83134|0.72222 83135|0.72222 83136|0.56944 83137|0.5 83138|0.68056 83139|0.5 83140|0.5 83141|0.47222 83142|0.5 83143|0.63889 83144|0.52778 83145|0.5 83146|0.5 83147|0.58333 83148|0.69444 83149|0.61111 83150|0.5 83151|0.66667 83152|0.38889 83153|0.55556 83154|0.91667 83155|0.55556 83156|0.5 83157|0.5 83158|0.58333 83159|0.36111 83160|0.5 83161|0.66667 83162|0.5 83163|0.5 83164|0.5 83165|0.5 83166|0.375 83167|0.5 83168|0.52778 83169|0.5 83170|0.5 83171|0.5 83172|0.73611 83173|0.65278 83174|0.54167 83175|0.27778 83176|0.54167 83177|0.55556 83178|0.5 83179|0.51389 83180|0.34722 83181|0.625 83182|0.5 83183|0.5 83184|0.45833 83185|0.5 83186|0.51389 83187|0.55556 83188|0.84722 83189|0.88889 83190|0.5 83191|0.5 83192|0.5 83193|0.55556 83194|0.90278 83195|0.5 83196|0.63889 83197|0.94444 83198|0.55556 83199|0.51389 83200|0.70833 83201|0.5 83202|0.5 83203|0.5 83204|0.44444 83205|0.55556 83206|0.20833 83207|0.5 83208|0.5 83209|0.61111 83210|0.70833 83211|0.5 83212|0.61111 83213|0.5 83214|0.55556 83215|0.83333 83216|0.47222 83217|0.47222 83218|0.55556 83219|0.44444 83220|0.44444 83221|0.70833 83222|0.5 83223|0.68056 83224|0.59722 83225|0.51389 83226|0.54167 83227|0.66667 83228|0.47222 83229|0.5 83230|0.55556 83231|0.625 83232|0.625 83233|0.47222 83234|0.55556 83235|0.68056 83236|0.58333 83237|0.29167 83238|0.26389 83239|0.5 83240|0.77778 83241|0.63889 83242|0.5 83243|0.375 83244|0.625 83245|0.51389 83246|0.79167 83247|0.43056 83248|0.45833 83249|0.5 83250|0.59722 83251|0.5 83252|0.33333 83253|0.31944 83254|0.65278 83255|0.61111 83256|0.77778 83257|0.66667 83258|0.55556 83259|0.55556 83260|0.61111 83261|0.54167 83262|0.76389 83263|0.72222 83264|0.73611 83265|0.54167 83266|0.83333 83267|0.94444 83268|0.83333 83269|0.76389 83270|0.81944 83271|0.375 83272|0.77778 83273|0.55556 83274|0.44444 83275|0.72222 83276|0.58333 83277|0.76389 83278|0.625 83279|0.59722 83280|0.5 83281|0.36111 83282|0.33333 83283|0.54167 83284|0.5 83285|0.59722 83286|0.47222 83287|0.77778 83288|0.47222 83289|0.5 83290|0.625 83291|0.58333 83292|0.83333 83293|0.55556 83294|0.63889 83295|0.73611 83296|0.48611 83297|0.80556 83298|0.59722 83299|0.33333 83300|0.5 83301|0.41667 83302|0.44444 83303|0.93056 83304|0.41667 83305|0.5 83306|0.33333 83307|0.51389 83308|0.22222 83309|0.38889 83310|0.44444 83311|0.54167 83312|0.55556 83313|0.36111 83314|0.26389 83315|0.44444 83316|0.52778 83317|0.94444 83318|0.625 83319|0.90278 83320|0.51389 83321|0.65278 83322|0.80556 83323|0.5 83324|0.52778 83325|0.5 83326|0.55556 83327|0.72222 83328|0.65278 83329|1 83330|0.33333 83331|0.52778 83332|0.44444 83333|0.84722 83334|0.5 83335|0.77778 83336|0.69444 83337|0.65278 83338|0.81944 83339|0.65278 83340|0.65278 83341|0.61111 83342|0.5 83343|0.61111 83344|0.72222 83345|0.65278 83346|0.73611 83347|0.5 83348|0.55556 83349|0.81944 83350|0.61111 83351|0.56944 83352|0.55556 83353|0.73611 83354|0.63889 83355|0.34722 83356|0.61111 83357|0.83333 83358|0.375 83359|0.20833 83360|0.66667 83361|0.5 83362|0.5 83363|0.55556 83364|0.72222 83365|0.70833 83366|0.80556 83367|0.79167 83368|0.83333 83369|0.44444 83370|0.45833 83371|0.51389 83372|0.55556 83373|0.5 83374|0.48611 83375|0.65278 83376|0.63889 83377|0.625 83378|0.5 83379|0.90278 83380|0.51389 83381|0.72222 83382|0.61111 83383|0.70833 83384|0.38889 83385|0.43056 83386|0.59722 83387|0.77778 83388|0.5 83389|0.625 83390|0.69444 83391|0.375 83392|0.5 83393|0.5 83394|0.5 83395|0.66667 83396|0.5 83397|0.5 83398|0.69444 83399|0.55556 83400|0.77778 83401|0.65278 83402|0.5 83403|0.5 83404|0.44444 83405|0.61111 83406|0.58333 83407|0.5 83408|0.47222 83409|0.51389 83410|0.5 83411|0.44444 83412|0.5 83413|0.68056 83414|0.81944 83415|0.58333 83416|0.59722 83417|0.52778 83418|0.81944 83419|0.83333 83420|0.5 83421|0.5 83422|0.5 83423|0.80556 83424|0.55556 83425|0.77778 83426|0.59722 83427|0.83333 83428|0.5 83429|0.59722 83430|0.51389 83431|0.54167 83432|0.5 83433|0.5 83434|0.59722 83435|0.29167 83436|0.70833 83437|0.48611 83438|0.58333 83439|0.55556 83440|0.59722 83441|0.54167 83442|0.69444 83443|0.69444 83444|0.875 83445|0.72222 83446|0.66667 83447|0.44444 83448|0.58333 83449|0.68056 83450|0.77778 83451|0.69444 83452|0.86111 83453|0.76389 83454|0.83333 83455|0.83333 83456|0.83333 83457|0.69444 83458|0.76389 83459|0.83333 83460|0.76389 83461|0.72222 83462|0.51389 83463|0.44444 83464|0.36111 83465|0.5 83466|0.38889 83467|0.70833 83468|0.80556 83469|0.56944 83470|0.51389 83471|0.44444 83472|0.47222 83473|0.48611 83474|0.5 83475|0.51389 83476|0.5 83477|0.55556 83478|0.59722 83479|0.61111 83480|0.52778 83481|0.56944 83482|0.79167 83483|0.65278 83484|0.83333 83485|0.68056 83486|0.68056 83487|0.68056 83488|0.68056 83489|0.59722 83490|0.58333 83491|0.44444 83492|0.66667 83493|0.625 83494|0.59722 83495|0.55556 83496|0.55556 83497|0.70833 83498|0.66667 83499|0.80556 83500|0.5 83501|0.5 83502|0.52778 83503|0.54167 83504|0.5 83505|0.5 83506|0.51389 83507|0.58333 83508|0.56944 83509|0.72222 83510|0.43056 83511|0.5 83512|0.5 83513|0.47222 83514|0.77778 83515|0.76389 83516|0.59722 83517|0.55556 83518|0.5 83519|0.5 83520|0.52778 83521|0.68056 83522|0.125 83523|0.79167 83524|0.63889 83525|0.80556 83526|0.56944 83527|0.5 83528|0.54167 83529|0.63889 83530|0.38889 83531|0.63889 83532|0.73611 83533|0.88889 83534|0.72222 83535|0.5 83536|0.65278 83537|0.69444 83538|0.5 83539|0.69444 83540|0.77778 83541|0.65278 83542|0.84722 83543|0.27778 83544|0.55556 83545|0.33333 83546|0.5 83547|0.5 83548|0.40278 83549|0.5 83550|0.65278 83551|0.5 83552|0.55556 83553|0.34722 83554|0.5 83555|0.51389 83556|0.43056 83557|0.94444 83558|0.66667 83559|0.59722 83560|0.48611 83561|0.55556 83562|0.61111 83563|0.27778 83564|0.55556 83565|0.5 83566|0.5 83567|0.5 83568|0.44444 83569|0.69444 83570|0.5 83571|0.5 83572|0.58333 83573|0.44444 83574|0.66667 83575|0.51389 83576|0.65278 83577|0.52778 83578|0.61111 83579|0.56944 83580|0.5 83581|0.40278 83582|0.44444 83583|0.61111 83584|0.69444 83585|0.47222 83586|0.66667 83587|0.61111 83588|0.58333 83589|0.44444 83590|0.47222 83591|0.41667 83592|0.63889 83593|0.51389 83594|0.27778 83595|0.5 83596|0.625 83597|0.38889 83598|0.5 83599|0.625 83600|0.55556 83601|0.40278 83602|0.38889 83603|0.55556 83604|0.51389 83605|0.65278 83606|0.52778 83607|0.40278 83608|0.59722 83609|0.63889 83610|0.69444 83611|0.93056 83612|0.875 83613|0.80556 83614|0.66667 83615|0.61111 83616|0.70833 83617|0.54167 83618|0.72222 83619|0.79167 83620|0.77778 83621|0.625 83622|0.625 83623|0.65278 83624|0.76389 83625|0.47222 83626|0.66667 83627|0.72222 83628|0.5 83629|0.79167 83630|0.5 83631|0.52778 83632|0.44444 83633|0.45833 83634|0.38889 83635|0.65278 83636|0.5 83637|0.58333 83638|0.73611 83639|0.56944 83640|0.68056 83641|0.80556 83642|0.81944 83643|0.68056 83644|0.75 83645|0.5 83646|0.5 83647|0.69444 83648|0.51389 83649|0.58333 83650|0.81944 83651|0.59722 83652|0.73611 83653|0.73611 83654|0.5 83655|0.86111 83656|0.625 83657|0.45833 83658|0.69444 83659|0.61111 83660|0.5 83661|0.79167 83662|0.72222 83663|0.5 83664|0.5 83665|0.72222 83666|0.5 83667|0.88889 83668|0.54167 83669|0.77778 83670|0.63889 83671|0.75 83672|0.48611 83673|0.51389 83674|0.41667 83675|0.5 83676|0.45833 83677|0.54167 83678|0.29167 83679|0.375 83680|0.22222 83681|0.16667 83682|0.20833 83683|0.055556 83684|0.5 83685|0.43056 83686|0.83333 83687|0.79167 83688|0.45833 83689|0.68056 83690|0.56944 83691|0.44444 83692|0.44444 83693|0.625 83694|0.5 83695|0.58333 83696|0.65278 83697|0.66667 83698|0.5 83699|0.5 83700|0.88889 83701|0.77778 83702|0.80556 83703|0.5 83704|0.5 83705|0.86111 83706|0.69444 83707|0.77778 83708|0.55556 83709|0.83333 83710|0.65278 83711|0.5 83712|0.55556 83713|0.52778 83714|1 83715|0.95833 83716|0.69444 83717|0.70833 83718|0.54167 83719|0.70833 83720|0.45833 83721|0.5 83722|0.5 83723|0.72222 83724|0.5 83725|0.40278 83726|0.72222 83727|0.86111 83728|0.55556 83729|0.48611 83730|0.66667 83731|0.5 83732|0.5 83733|0.77778 83734|0.68056 83735|0.55556 83736|0.73611 83737|0.83333 83738|0.65278 83739|0.61111 83740|0.69444 83741|0.80556 83742|0.81944 83743|0.56944 83744|0.77778 83745|0.76389 83746|0.875 83747|0.73611 83748|0.61111 83749|0.58333 83750|0.40278 83751|0.65278 83752|0.80556 83753|0.66667 83754|0.72222 83755|0.5 83756|0.76389 83757|0.69444 83758|0.61111 83759|0.83333 83760|0.70833 83761|0.65278 83762|0.54167 83763|0.70833 83764|0.5 83765|0.51389 83766|0.56944 83767|0.80556 83768|0.83333 83769|0.72222 83770|0.63889 83771|0.86111 83772|0.72222 83773|0.70833 83774|0.80556 83775|0.83333 83776|0.83333 83777|0.83333 83778|0.44444 83779|0.59722 83780|0.72222 83781|0.68056 83782|0.76389 83783|0.66667 83784|0.83333 83785|0.86111 83786|0.79167 83787|0.51389 83788|0.61111 83789|0.83333 83790|0.76389 83791|0.86111 83792|0.76389 83793|0.84722 83794|0.94444 83795|0.61111 83796|0.83333 83797|0.84722 83798|0.56944 83799|0.72222 83800|0.68056 83801|0.79167 83802|0.77778 83803|0.75 83804|0.93056 83805|0.88889 83806|0.25 83807|0.73611 83808|0.73611 83809|0.51389 83810|0.59722 83811|0.18056 83812|0.65278 83813|0.81944 83814|0.93056 83815|0.80556 83816|0.59722 83817|0.66667 83818|0.40278 83819|0.73611 83820|0.59722 83821|0.84722 83822|0.76389 83823|0.58333 83824|0.61111 83825|0.58333 83826|0.70833 83827|0.65278 83828|0.81944 83829|0.55556 83830|0.59722 83831|0.54167 83832|0.5 83833|0.69444 83834|0.88889 83835|0.54167 83836|0.59722 83837|0.875 83838|0.81944 83839|0.80556 83840|0.70833 83841|0.63889 83842|0.63889 83843|0.65278 83844|0.79167 83845|0.5 83846|0.52778 83847|0.76389 83848|0.66667 83849|0.625 83850|0.86111 83851|0.77778 83852|0.81944 83853|0.83333 83854|0.76389 83855|0.91667 83856|0.70833 83857|0.68056 83858|0.77778 83859|0.5 83860|0.56944 83861|0.80556 83862|0.79167 83863|0.79167 83864|0.47222 83865|0.70833 83866|0.69444 83867|0.56944 83868|0.75 83869|0.58333 83870|0.59722 83871|0.79167 83872|0.81944 83873|0.54167 83874|0.44444 83875|0.76389 83876|0.75 83877|0.5 83878|0.81944 83879|0.72222 83880|0.61111 83881|0.625 83882|0.84722 83883|0.66667 83884|0.70833 83885|0.63889 83886|0.58333 83887|0.875 83888|0.79167 83889|0.56944 83890|0.75 83891|0.72222 83892|0.65278 83893|0.54167 83894|0.83333 83895|0.75 83896|0.79167 83897|0.73611 83898|0.88889 83899|0.90278 83900|0.90278 83901|0.90278 83902|0.90278 83903|0.70833 83904|0.77778 83905|1 83906|0.81944 83907|0.86111 83908|0.80556 83909|0.79167 83910|0.51389 83911|0.625 83912|0.84722 83913|0.75 83914|0.79167 83915|0.84722 83916|0.875 83917|0.91667 83918|0.81944 83919|0.70833 83920|0.61111 83921|0.94444 83922|0.95833 83923|0.77778 83924|0.77778 83925|0.65278 83926|0.68056 83927|0.72222 83928|0.79167 83929|0.83333 83930|0.77778 83931|0.73611 83932|0.73611 83933|0.79167 83934|0.875 83935|0.66667 83936|0.75 83937|0.79167 83938|0.79167 83939|0.66667 83940|0.68056 83941|0.5 83942|0.56944 83943|0.625 83944|0.52778 83945|0.69444 83946|0.61111 83947|0.65278 83948|0.68056 83949|0.83333 83950|0.51389 83951|0.52778 83952|0.69444 83953|0.80556 83954|0.76389 83955|0.72222 83956|0.875 83957|0.73611 83958|0.63889 83959|0.38889 83960|0.26389 83961|0.27778 83962|0.70833 83963|0.88889 83964|0.55556 83965|0.77778 83966|0.59722 83967|0.76389 83968|0.86111 83969|0.66667 83970|0.36111 83971|0.77778 83972|0.66667 83973|0.66667 83974|0.72222 83975|0.81944 83976|0.69444 83977|0.61111 83978|0.26389 83979|0.72222 83980|0.84722 83981|0.65278 83982|0.54167 83983|0.80556 83984|0.51389 83985|0.77778 83986|0.65278 83987|0.77778 83988|0.63889 83989|0.625 83990|0.81944 83991|0.66667 83992|0.76389 83993|0.61111 83994|0.73611 83995|0.66667 83996|0.76389 83997|0.77778 83998|0.90278 83999|0.91667 84000|0.875 84001|0.76389 84002|0.65278 84003|0.75 84004|0.79167 84005|0.76389 84006|0.79167 84007|0.76389 84008|0.68056 84009|0.75 84010|0.83333 84011|0.79167 84012|0.75 84013|0.77778 84014|0.80556 84015|0.63889 84016|0.66667 84017|0.73611 84018|0.75 84019|0.77778 84020|0.68056 84021|0.70833 84022|0.63889 84023|0.59722 84024|0.5 84025|0.77778 84026|0.58333 84027|0.52778 84028|0.72222 84029|0.58333 84030|0.70833 84031|0.56944 84032|0.65278 84033|0.5 84034|0.625 84035|0.25 84036|0.23611 84037|0.44444 84038|0.5 84039|0.77778 84040|0.77778 84041|0.48611 84042|0.68056 84043|0.54167 84044|0.54167 84045|0.66667 84046|0.55556 84047|0.79167 84048|0.58333 84049|0.70833 84050|0.5 84051|0.68056 84052|0.65278 84053|0.66667 84054|0.84722 84055|0.43056 84056|0.59722 84057|0.80556 84058|0.73611 84059|0.72222 84060|0.88889 84061|0.79167 84062|0.88889 84063|0.40278 84064|0.45833 84065|0.81944 84066|0.83333 84067|0.86111 84068|0.61111 84069|0.5 84070|0.76389 84071|0.68056 84072|0.75 84073|0.5 84074|0.86111 84075|0.79167 84076|0.76389 84077|0.73611 84078|0.79167 84079|0.875 84080|0.77778 84081|0.80556 84082|0.69444 84083|0.84722 84084|0.79167 84085|0.86111 84086|0.88889 84087|0.33333 84088|0.66667 84089|0.86111 84090|0.47222 84091|0.45833 84092|0.80556 84093|0.68056 84094|0.86111 84095|0.79167 84096|0.875 84097|0.875 84098|0.77778 84099|0.79167 84100|0.90278 84101|0.75 84102|0.69444 84103|0.48611 84104|0.69444 84105|0.56944 84106|0.55556 84107|0.61111 84108|0.83333 84109|0.77778 84110|0.59722 84111|0.69444 84112|0.76389 84113|0.41667 84114|0.61111 84115|0.56944 84116|0.55556 84117|0.48611 84118|0.79167 84119|0.63889 84120|0.375 84121|0.30556 84122|0.44444 84123|0.875 84124|0.80556 84125|0.59722 84126|0.58333 84127|0.83333 84128|0.77778 84129|0.5 84130|0.55556 84131|0.70833 84132|0.625 84133|0.75 84134|0.81944 84135|0.83333 84136|0.54167 84137|0.44444 84138|0.66667 84139|0.77778 84140|0.41667 84141|0.83333 84142|0.66667 84143|0.55556 84144|0.51389 84145|0.5 84146|0.77778 84147|0.52778 84148|0.83333 84149|0.63889 84150|0.81944 84151|0.5 84152|0.54167 84153|0.625 84154|0.51389 84155|0.69444 84156|0.79167 84157|0.69444 84158|0.73611 84159|0.65278 84160|0.875 84161|0.88889 84162|0.55556 84163|0.86111 84164|0.80556 84165|0.48611 84166|0.70833 84167|0.81944 84168|0.5 84169|0.61111 84170|0.55556 84171|0.44444 84172|0.625 84173|0.83333 84174|0.84722 84175|0.95833 84176|0.59722 84177|0.58333 84178|0.68056 84179|0.76389 84180|0.63889 84181|0.84722 84182|0.56944 84183|0.63889 84184|0.88889 84185|0.80556 84186|0.93056 84187|0.80556 84188|0.81944 84189|0.79167 84190|0.76389 84191|0.73611 84192|0.80556 84193|0.73611 84194|0.72222 84195|0.79167 84196|0.56944 84197|0.61111 84198|0.76389 84199|0.41667 84200|0.43056 84201|0.80556 84202|0.79167 84203|0.86111 84204|0.69444 84205|0.80556 84206|0.79167 84207|0.51389 84208|0.19444 84209|0.70833 84210|0.59722 84211|0.5 84212|0.5 84213|0.5 84214|0.45833 84215|0.73611 84216|0.72222 84217|0.91667 84218|0.69444 84219|0.81944 84220|0.73611 84221|0.80556 84222|0.875 84223|0.77778 84224|0.70833 84225|0.80556 84226|0.73611 84227|0.80556 84228|0.73611 84229|0.81944 84230|0.70833 84231|0.80556 84232|0.69444 84233|0.81944 84234|0.81944 84235|0.73611 84236|0.51389 84237|0.77778 84238|0.63889 84239|0.80556 84240|0.69444 84241|0.55556 84242|0.5 84243|0.68056 84244|0.65278 84245|0.625 84246|0.77778 84247|0.88889 84248|0.73611 84249|0.5 84250|0.5 84251|0.70833 84252|0.80556 84253|0.70833 84254|0.625 84255|0.625 84256|0.61111 84257|0.44444 84258|0.66667 84259|0.83333 84260|0.79167 84261|0.55556 84262|0.72222 84263|0.80556 84264|0.84722 84265|0.86111 84266|0.66667 84267|0.83333 84268|0.59722 84269|0.5 84270|0.81944 84271|0.69444 84272|0.41667 84273|0.84722 84274|0.77778 84275|0.29167 84276|0.54167 84277|0.66667 84278|0.65278 84279|0.81944 84280|0.80556 84281|0.875 84282|0.86111 84283|0.86111 84284|0.72222 84285|0.61111 84286|0.125 84287|0.23611 84288|0.98611 84289|0.88889 84290|0.83333 84291|0.52778 84292|0.77778 84293|0.90278 84294|0 84295|0.80556 84296|0.63889 84297|0.81944 84298|0.68056 84299|0.84722 84300|0.73611 84301|0.83333 84302|0.81944 84303|0.5 84304|0.625 84305|0.80556 84306|0.61111 84307|0.51389 84308|0.5 84309|0.45833 84310|0.66667 84311|0.69444 84312|0.5 84313|0.45833 84314|0.63889 84315|0.25 84316|0.83333 84317|0.77778 84318|0.69444 84319|0.61111 84320|0.29167 84321|0.72222 84322|0.81944 84323|0.83333 84324|0.81944 84325|0.73611 84326|0.79167 84327|0.63889 84328|0.55556 84329|0.63889 84330|0.72222 84331|0.75 84332|0.77778 84333|0.72222 84334|0.88889 84335|0.72222 84336|0.41667 84337|0.69444 84338|0.43056 84339|0.77778 84340|0.56944 84341|0.43056 84342|0.79167 84343|0.86111 84344|0.5 84345|0.79167 84346|0.77778 84347|0.51389 84348|0.36111 84349|0.55556 84350|0.69444 84351|0.41667 84352|0.58333 84353|0.41667 84354|0.375 84355|0.36111 84356|0.36111 84357|0.38889 84358|0.48611 84359|0.41667 84360|0.66667 84361|0.625 84362|0.44444 84363|0.73611 84364|0.75 84365|0.56944 84366|0.5 84367|0.77778 84368|0.83333 84369|0.70833 84370|0.55556 84371|0.56944 84372|0.69444 84373|0.72222 84374|0.875 84375|0.79167 84376|0.41667 84377|0.79167 84378|0.77778 84379|0.72222 84380|0.88889 84381|0.81944 84382|0.55556 84383|0.72222 84384|0.83333 84385|0.58333 84386|0.5 84387|0.61111 84388|0.47222 84389|0.36111 84390|0.68056 84391|0.76389 84392|0.5 84393|0.36111 84394|0.68056 84395|0.70833 84396|0.69444 84397|0.69444 84398|0.73611 84399|0.81944 84400|0.63889 84401|0.68056 84402|0.55556 84403|0.52778 84404|0.58333 84405|0.59722 84406|0.72222 84407|0.65278 84408|0.56944 84409|0.54167 84410|0.58333 84411|0.68056 84412|0.68056 84413|0.5 84414|0.5 84415|0.38889 84416|0.51389 84417|0.34722 84418|0.51389 84419|0.66667 84420|0.54167 84421|0.68056 84422|0.40278 84423|0.73611 84424|0.625 84425|0.33333 84426|0.36111 84427|0.20833 84428|0.36111 84429|0.20833 84430|0.56944 84431|0.5 84432|0.41667 84433|0.83333 84434|0.5 84435|0.56944 84436|0.38889 84437|0.51389 84438|0.45833 84439|0.27778 84440|0.52778 84441|0.30556 84442|0.73611 84443|0.63889 84444|0.44444 84445|0.26389 84446|0.5 84447|0.375 84448|0.68056 84449|0.80556 84450|0.70833 84451|0.19444 84452|0.19444 84453|0.625 84454|0.61111 84455|0.52778 84456|0.68056 84457|0.65278 84458|0.55556 84459|0.51389 84460|0.625 84461|0.875 84462|0.41667 84463|0.58333 84464|0.68056 84465|0.83333 84466|0.22222 84467|0.43056 84468|0.375 84469|0.59722 84470|0.55556 84471|0.65278 84472|0.76389 84473|0.23611 84474|0.54167 84475|0.55556 84476|0.70833 84477|0.68056 84478|0.43056 84479|0.43056 84480|0.33333 84481|0.54167 84482|0.5 84483|0.36111 84484|0.59722 84485|0.25 84486|0.70833 84487|0.68056 84488|0.5 84489|0.81944 84490|0.38889 84491|0.47222 84492|0.55556 84493|0.63889 84494|0.77778 84495|0.68056 84496|0.95833 84497|0.98611 84498|0.55556 84499|0.625 84500|0.61111 84501|0.54167 84502|0.81944 84503|0.5 84504|0.72222 84505|0.76389 84506|0.79167 84507|0.83333 84508|0.93056 84509|0.90278 84510|0.88889 84511|0.84722 84512|0.84722 84513|0.94444 84514|0.98611 84515|0.73611 84516|0.51389 84517|0.38889 84518|0.5 84519|0.51389 84520|0.51389 84521|0.45833 84522|0.79167 84523|0.5 84524|0.52778 84525|0.66667 84526|0.61111 84527|0.61111 84528|0.52778 84529|0.55556 84530|0.58333 84531|0.63889 84532|0.58333 84533|0.76389 84534|0.75 84535|0.5 84536|0.55556 84537|0.55556 84538|0.72222 84539|0.65278 84540|0.58333 84541|0.66667 84542|0.79167 84543|0.77778 84544|0.76389 84545|0.79167 84546|0.625 84547|0.58333 84548|0.5 84549|0.75 84550|0.5 84551|0.77778 84552|0.80556 84553|0.70833 84554|0.75 84555|0.5 84556|0.83333 84557|0.95833 84558|0.86111 84559|0.83333 84560|0.59722 84561|0.69444 84562|0.47222 84563|0.55556 84564|0.5 84565|0.79167 84566|0.65278 84567|0.56944 84568|0.65278 84569|0.66667 84570|0.43056 84571|0.70833 84572|0.61111 84573|0.70833 84574|0.77778 84575|0.69444 84576|0.75 84577|0.79167 84578|0.94444 84579|0.58333 84580|0.69444 84581|0.72222 84582|0.375 84583|0.34722 84584|0.375 84585|0.43056 84586|0.54167 84587|0.61111 84588|0.52778 84589|0.23611 84590|0.48611 84591|0.51389 84592|0.5 84593|0.76389 84594|0.70833 84595|0.5 84596|0.41667 84597|0.54167 84598|0.34722 84599|0.375 84600|0.38889 84601|0.58333 84602|0.75 84603|0.63889 84604|0.59722 84605|0.70833 84606|0.66667 84607|0.91667 84608|1 84609|0.66667 84610|0.77778 84611|0.77778 84612|0.76389 84613|0.58333 84614|0.81944 84615|0.84722 84616|0.70833 84617|0.65278 84618|0.72222 84619|0.58333 84620|0.70833 84621|0.83333 84622|0.68056 84623|0.68056 84624|0.56944 84625|0.36111 84626|0.125 84627|0.75 84628|0.88889 84629|0.70833 84630|0.54167 84631|0.77778 84632|0.38889 84633|0.73611 84634|0.875 84635|0.72222 84636|0.81944 84637|0.66667 84638|0.61111 84639|0.5 84640|0.56944 84641|0.58333 84642|0.72222 84643|0.61111 84644|0.5 84645|0.54167 84646|0.61111 84647|0.72222 84648|0.68056 84649|0.63889 84650|0.75 84651|0.54167 84652|0.70833 84653|0.75 84654|0.65278 84655|0.72222 84656|0.68056 84657|0.76389 84658|0.51389 84659|0.63889 84660|0.51389 84661|0.5 84662|0.73611 84663|0.75 84664|0.68056 84665|0.76389 84666|0.81944 84667|0.94444 84668|0.93056 84669|0.68056 84670|0.72222 84671|0.75 84672|0.79167 84673|0.875 84674|0.69444 84675|0.83333 84676|0.91667 84677|0.55556 84678|0.55556 84679|0.80556 84680|0.69444 84681|0.77778 84682|0.81944 84683|0.86111 84684|0.84722 84685|0.75 84686|0.69444 84687|0.88889 84688|0.875 84689|0.72222 84690|0.88889 84691|0.84722 84692|0.5 84693|0.73611 84694|0.77778 84695|0.70833 84696|0.73611 84697|0.58333 84698|0.72222 84699|0.47222 84700|0.45833 84701|0.48611 84702|0.75 84703|0.30556 84704|0.59722 84705|0.76389 84706|0.76389 84707|0.86111 84708|0.88889 84709|0.83333 84710|0.75 84711|0.75 84712|0.43056 84713|0.44444 84714|0.26389 84715|0.38889 84716|0.47222 84717|0.41667 84718|0.40278 84719|0.80556 84720|0.80556 84721|0.51389 84722|0.55556 84723|0.86111 84724|0.625 84725|0.55556 84726|0.72222 84727|0.63889 84728|0.66667 84729|0.79167 84730|0.70833 84731|0.58333 84732|0.83333 84733|0.90278 84734|0.81944 84735|0.79167 84736|0.80556 84737|0.73611 84738|0.73611 84739|0.52778 84740|0.61111 84741|0.54167 84742|0.68056 84743|0.77778 84744|0.61111 84745|0.56944 84746|0.83333 84747|0.84722 84748|0.33333 84749|0.72222 84750|0.38889 84751|0.80556 84752|0.77778 84753|0.83333 84754|0.47222 84755|0.75 84756|0.90278 84757|0.83333 84758|0.58333 84759|0.5 84760|0.73611 84761|0.66667 84762|0.61111 84763|0.61111 84764|0.68056 84765|0.79167 84766|0.79167 84767|0.5 84768|0.23611 84769|0.83333 84770|0.63889 84771|0.56944 84772|0.625 84773|0.5 84774|0.5 84775|0.5 84776|0.68056 84777|0.41667 84778|0.33333 84779|0.36111 84780|0.30556 84781|0.027778 84782|0.52778 84783|0.66667 84784|0.61111 84785|0.76389 84786|0.80556 84787|0.65278 84788|0.70833 84789|0.76389 84790|0.58333 84791|0.61111 84792|0.69444 84793|0.77778 84794|0.5 84795|0.5 84796|1 84797|0.91667 84798|0.68056 84799|0.63889 84800|0.83333 84801|0.84722 84802|0.5 84803|0.5 84804|0.45833 84805|0.63889 84806|0.625 84807|0.61111 84808|0.76389 84809|0.63889 84810|0.94444 84811|0.83333 84812|0.79167 84813|0.69444 84814|0.77778 84815|0.77778 84816|0.76389 84817|0.63889 84818|0.5 84819|0.79167 84820|0.61111 84821|0.5 84822|0.5 84823|0.70833 84824|0.66667 84825|0.88889 84826|0.86111 84827|0.75 84828|0.91667 84829|0.61111 84830|0.65278 84831|0.72222 84832|0.81944 84833|0.61111 84834|0.56944 84835|0.79167 84836|0.65278 84837|0.5 84838|0.55556 84839|0.61111 84840|0.44444 84841|0.5 84842|0.5 84843|0.72222 84844|0.79167 84845|0.65278 84846|0.65278 84847|0.38889 84848|0.54167 84849|0.80556 84850|0.83333 84851|0.59722 84852|0.625 84853|0.70833 84854|0.80556 84855|0.31944 84856|0.66667 84857|0.61111 84858|0.86111 84859|0.54167 84860|0.58333 84861|0.80556 84862|0.90278 84863|0.75 84864|0.61111 84865|0.95833 84866|0.80556 84867|0.27778 84868|0.75 84869|0.95833 84870|0.44444 84871|0.79167 84872|0.34722 84873|0.63889 84874|0.63889 84875|0.75 84876|0.70833 84877|0.25 84878|0.61111 84879|0.875 84880|0.45833 84881|0.27778 84882|0.73611 84883|0.65278 84884|0.5 84885|0.83333 84886|0.5 84887|0.80556 84888|0.68056 84889|0.45833 84890|0.33333 84891|0.375 84892|0.56944 84893|0.5 84894|0.70833 84895|0.81944 84896|0.625 84897|0.59722 84898|0.79167 84899|0.36111 84900|0.43056 84901|0.58333 84902|0.625 84903|0.63889 84904|0.81944 84905|0.34722 84906|0.86111 84907|0.48611 84908|0.27778 84909|0.93056 84910|0.68056 84911|0.43056 84912|0.34722 84913|0.68056 84914|0.61111 84915|0.69444 84916|0.61111 84917|0.54167 84918|0.72222 84919|0.77778 84920|0.36111 84921|0.54167 84922|0.36111 84923|0.44444 84924|0.61111 84925|0.375 84926|0.375 84927|0.75 84928|0.45833 84929|0.23611 84930|0.44444 84931|0.5 84932|0.72222 84933|0.70833 84934|0.59722 84935|0.61111 84936|0.56944 84937|0.66667 84938|0.81944 84939|0.72222 84940|0.81944 84941|0.86111 84942|0.59722 84943|0.77778 84944|0.98611 84945|0.875 84946|0.55556 84947|0.79167 84948|0.79167 84949|0.44444 84950|0.61111 84951|0.5 84952|0.52778 84953|0.80556 84954|0.66667 84955|0.48611 84956|0.16667 84957|0.68056 84958|0.75 84959|0.5 84960|0.55556 84961|0.61111 84962|0.19444 84963|0.79167 84964|0.73611 84965|0.33333 84966|0.51389 84967|0.83333 84968|0.63889 84969|0.61111 84970|0.5 84971|0.58333 84972|0.83333 84973|0.76389 84974|0.76389 84975|0.55556 84976|0.70833 84977|0.91667 84978|0.83333 84979|0.5 84980|0.68056 84981|0.40278 84982|0.77778 84983|0.33333 84984|0.5 84985|0.72222 84986|0.54167 84987|0.29167 84988|0.84722 84989|0.38889 84990|0.77778 84991|0.66667 84992|0.625 84993|0.54167 84994|0.75 84995|0.69444 84996|0.88889 84997|0.72222 84998|0.72222 84999|0.76389 85000|0.79167 85001|0.44444 85002|0.33333 85003|0.72222 85004|0.61111 85005|0.61111 85006|0.69444 85007|0.73611 85008|0.5 85009|0.41667 85010|0.72222 85011|0.66667 85012|0.36111 85013|0.625 85014|0.59722 85015|0.61111 85016|0.61111 85017|0.44444 85018|0.30556 85019|0.47222 85020|0.38889 85021|0.16667 85022|0.69444 85023|0.79167 85024|0.52778 85025|0.73611 85026|0.66667 85027|0.73611 85028|0.56944 85029|0.58333 85030|0.40278 85031|0.76389 85032|0.36111 85033|0.58333 85034|0.73611 85035|0.73611 85036|0.68056 85037|0.80556 85038|0.34722 85039|0.65278 85040|0.59722 85041|0.72222 85042|0.93056 85043|0.33333 85044|0.75 85045|0.69444 85046|0.56944 85047|0.45833 85048|0.70833 85049|0.70833 85050|0.73611 85051|0.68056 85052|0.79167 85053|0.91667 85054|0.79167 85055|0.76389 85056|0.70833 85057|0.66667 85058|0.58333 85059|0.54167 85060|0.93056 85061|0.30556 85062|0.33333 85063|0.44444 85064|0.80556 85065|0.5 85066|0.63889 85067|0.61111 85068|0.36111 85069|0.68056 85070|0.27778 85071|0.52778 85072|0.27778 85073|0.61111 85074|0.29167 85075|0.56944 85076|0.77778 85077|0.63889 85078|0.84722 85079|0.22222 85080|0.23611 85081|0.31944 85082|0.19444 85083|0.58333 85084|0.47222 85085|0.5 85086|0.44444 85087|0.59722 85088|0.63889 85089|0.36111 85090|0.75 85091|0.86111 85092|0.83333 85093|0.73611 85094|0.80556 85095|0.875 85096|0.5 85097|0.47222 85098|0.5 85099|0.27778 85100|0.18056 85101|0.66667 85102|0.72222 85103|0.83333 85104|0.80556 85105|0.625 85106|0.75 85107|0.36111 85108|0.48611 85109|0.81944 85110|0.41667 85111|0.65278 85112|0.79167 85113|0.875 85114|0.51389 85115|0.61111 85116|0.29167 85117|0.93056 85118|0.68056 85119|0.80556 85120|0.68056 85121|0.83333 85122|0.43056 85123|0.55556 85124|0.44444 85125|0.84722 85126|0.75 85127|0.55556 85128|0.54167 85129|0.44444 85130|0.63889 85131|0.54167 85132|0.65278 85133|0.72222 85134|0.68056 85135|0.44444 85136|0.69444 85137|0.75 85138|0.40278 85139|0.77778 85140|0.875 85141|0.55556 85142|0.61111 85143|0.51389 85144|0.30556 85145|0.5 85146|0.69444 85147|0.43056 85148|0.5 85149|0.51389 85150|0.41667 85151|0.72222 85152|0.51389 85153|0.83333 85154|0.65278 85155|0.47222 85156|0.48611 85157|0.5 85158|0.66667 85159|0.5 85160|0.75 85161|0.70833 85162|0.70833 85163|0.80556 85164|0.51389 85165|0.81944 85166|0.56944 85167|0.65278 85168|0.5 85169|0.75 85170|0.56944 85171|0.56944 85172|0.52778 85173|0.5 85174|0.65278 85175|0.55556 85176|0.38889 85177|0.5 85178|0.5 85179|0.5 85180|0.5 85181|0.5 85182|0.375 85183|0.69444 85184|0.44444 85185|0.76389 85186|0.55556 85187|0.38889 85188|0.22222 85189|0.70833 85190|0.51389 85191|0.83333 85192|0.66667 85193|0.5 85194|0.70833 85195|0.66667 85196|0.61111 85197|0.48611 85198|0.625 85199|0.44444 85200|0.44444 85201|0.75 85202|0.70833 85203|0.5 85204|0.55556 85205|0.5 85206|0.73611 85207|0.5 85208|0.5 85209|0.70833 85210|0.63889 85211|0.70833 85212|0.47222 85213|0.66667 85214|0.52778 85215|0.73611 85216|0.70833 85217|0.55556 85218|0.66667 85219|0.65278 85220|0.5 85221|0.625 85222|0.51389 85223|0.55556 85224|0.5 85225|0.55556 85226|0.43056 85227|0.55556 85228|0.625 85229|0.52778 85230|0.52778 85231|0.66667 85232|0.44444 85233|0.59722 85234|0.68056 85235|0.58333 85236|0.66667 85237|0.58333 85238|0.47222 85239|0.54167 85240|0.88889 85241|0.875 85242|0.76389 85243|0.84722 85244|1 85245|0.80556 85246|0.91667 85247|0.84722 85248|0.88889 85249|0.93056 85250|0.52778 85251|0.58333 85252|0.40278 85253|0.5 85254|0.5 85255|0.72222 85256|0.56944 85257|0.5 85258|0.5 85259|0.51389 85260|0.63889 85261|0.59722 85262|0.5 85263|0.44444 85264|0.27778 85265|0.55556 85266|0.625 85267|0.5 85268|0.5 85269|0.44444 85270|0.65278 85271|0.5 85272|0.81944 85273|0.81944 85274|0.77778 85275|0.5 85276|0.51389 85277|0.40278 85278|0.83333 85279|0.48611 85280|0.58333 85281|0.44444 85282|0.55556 85283|0.44444 85284|0.77778 85285|0.56944 85286|0.59722 85287|0.61111 85288|0.5 85289|0.61111 85290|0.63889 85291|0.70833 85292|0.88889 85293|0.63889 85294|0.61111 85295|0.75 85296|0.59722 85297|0.77778 85298|0.44444 85299|0.47222 85300|0.48611 85301|0.38889 85302|0.33333 85303|0.61111 85304|0.72222 85305|0.33333 85306|0.61111 85307|0.81944 85308|0.5 85309|0.54167 85310|0.5 85311|0.40278 85312|0.75 85313|0.72222 85314|0.61111 85315|0.5 85316|0.5 85317|0.81944 85318|0.5 85319|0.625 85320|0.44444 85321|0.5 85322|0.38889 85323|0.59722 85324|0.69444 85325|0.33333 85326|0.63889 85327|0.5 85328|0.56944 85329|0.375 85330|0.38889 85331|0.51389 85332|0.58333 85333|0.68056 85334|0.41667 85335|0.48611 85336|0.45833 85337|0.58333 85338|0.55556 85339|0.63889 85340|0.73611 85341|0.63889 85342|0.44444 85343|0.44444 85344|0.58333 85345|0.25 85346|0.44444 85347|0.72222 85348|0.51389 85349|0.63889 85350|0.45833 85351|0.61111 85352|0.61111 85353|0.56944 85354|0.55556 85355|0.875 85356|0.5 85357|0.5 85358|0.5 85359|0.66667 85360|0.75 85361|0.38889 85362|0.41667 85363|0.52778 85364|0.73611 85365|0.375 85366|0.52778 85367|0.59722 85368|0.33333 85369|0.80556 85370|0.5 85371|0.23611 85372|0.5 85373|0.55556 85374|0.625 85375|0.61111 85376|0.68056 85377|0.58333 85378|0.27778 85379|0.51389 85380|0.38889 85381|0.68056 85382|0.66667 85383|0.55556 85384|0.52778 85385|0.63889 85386|0.47222 85387|0.625 85388|0.58333 85389|0.58333 85390|0.45833 85391|0.19444 85392|0.5 85393|0.54167 85394|0.61111 85395|0.5 85396|0.55556 85397|0.61111 85398|0.68056 85399|0.56944 85400|0.5 85401|0.5 85402|0.61111 85403|0.375 85404|0.5 85405|0.5 85406|0.52778 85407|0.63889 85408|0.55556 85409|0.45833 85410|0.44444 85411|0.70833 85412|0.30556 85413|0.23611 85414|0.44444 85415|0.55556 85416|0.66667 85417|0.61111 85418|0.81944 85419|0.5 85420|0.58333 85421|0.36111 85422|0.52778 85423|0.73611 85424|0.83333 85425|0.94444 85426|0.45833 85427|0.52778 85428|0.48611 85429|0.5 85430|0.54167 85431|0.77778 85432|0.625 85433|0.83333 85434|0.5 85435|0.875 85436|0.48611 85437|0.38889 85438|0.5 85439|0.63889 85440|0.59722 85441|0.5 85442|0.51389 85443|0.5 85444|0.52083 85445|0.58333 85446|0.58333 85447|0.58333 85448|0.45833 85449|0.77778 85450|0.70833 85451|0.52778 85452|0.76389 85453|0.65278 85454|0.79167 85455|0.33333 85456|0.68056 85457|0.43056 85458|0.625 85459|0.90278 85460|0.625 85461|0.56944 85462|0.70833 85463|0.5 85464|0.16667 85465|0.5 85466|0.54167 85467|0.65278 85468|0.65278 85469|0.72222 85470|0.58333 85471|0.73611 85472|0.56944 85473|0.41667 85474|0.5 85475|0.5 85476|0.66667 85477|0.59722 85478|0.56944 85479|0.56944 85480|0.625 85481|0.38889 85482|0.375 85483|0.58333 85484|0.5 85485|0.38889 85486|0.56944 85487|0.5 85488|0.59722 85489|0.73611 85490|0.73611 85491|0.79167 85492|0.69444 85493|0.63889 85494|0.58333 85495|0.66667 85496|0.76389 85497|0.80556 85498|0.72222 85499|0.84722 85500|0.59722 85501|0.55556 85502|0.55556 85503|0.5 85504|0.58333 85505|0.76389 85506|0.69444 85507|0.72222 85508|0.65278 85509|0.77778 85510|0.5 85511|0.48611 85512|0.5 85513|0.55556 85514|0.5 85515|0.5 85516|0.77778 85517|0.81944 85518|0.73611 85519|0.77778 85520|0.77778 85521|0.875 85522|0.875 85523|0.69444 85524|0.69444 85525|0.5 85526|0.5 85527|0.51389 85528|0.56944 85529|0.61111 85530|0.58333 85531|0.47222 85532|0.5 85533|0.44444 85534|0.54167 85535|0.625 85536|0.75 85537|0.84722 85538|0.94444 85539|0.5 85540|0.5 85541|0.5 85542|0.80556 85543|0.61111 85544|0.5 85545|0.5 85546|0.5 85547|0.5 85548|0.41667 85549|0.52778 85550|0.69444 85551|0.75 85552|0.5 85553|0.5 85554|0.69444 85555|0.54167 85556|0.66667 85557|0.69444 85558|0.45833 85559|0.26389 85560|0.65278 85561|0.38889 85562|0.5 85563|0.77778 85564|0.54167 85565|0.58333 85566|0.5 85567|0.30556 85568|0.30556 85569|0.59722 85570|0.52778 85571|1 85572|0.75 85573|0.66667 85574|0.44444 85575|0.055556 85576|0.15278 85577|0.083333 85578|0.5 85579|0.83333 85580|0.5 85581|0.5 85582|0.55556 85583|0.44444 85584|0.5 85585|0.44444 85586|0.55556 85587|0.5 85588|0.72222 85589|0.93056 85590|0.55556 85591|0.55556 85592|0.61111 85593|0.69444 85594|0.5 85595|0.77778 85596|0.55556 85597|0.61111 85598|0.44444 85599|0.61111 85600|0.61111 85601|0.76389 85602|0.5 85603|0.31944 85604|0.5 85605|0.61111 85606|0.58333 85607|0.44444 85608|0.63889 85609|0.77778 85610|0.625 85611|0.68056 85612|0.55556 85613|0.5 85614|0.40278 85615|0.75 85616|0.73611 85617|0.58333 85618|0.58333 85619|0.83333 85620|0.56944 85621|0.63889 85622|0.76389 85623|0.73611 85624|0.5 85625|0.80556 85626|0.73611 85627|0.72222 85628|0.59722 85629|0.84722 85630|0.61111 85631|0.76389 85632|0.55556 85633|0.55556 85634|0.47222 85635|0.56944 85636|0.65278 85637|0.73611 85638|0.47222 85639|0.48611 85640|0.70833 85641|0.56944 85642|0.61111 85643|0.68056 85644|0.68056 85645|0.75 85646|0.81944 85647|0.5 85648|0.61111 85649|0.65278 85650|0.68056 85651|0.70833 85652|0.625 85653|0.91667 85654|0.55556 85655|0.5 85656|0.5 85657|0.44444 85658|0.55556 85659|0.72222 85660|0.61111 85661|0.55556 85662|0.61111 85663|0.625 85664|0.79167 85665|0.48611 85666|0.40278 85667|0.5 85668|0.66667 85669|0.38889 85670|0.59722 85671|0.56944 85672|0.76389 85673|0.52778 85674|0.54167 85675|0.55556 85676|0.5 85677|0.5 85678|0.5 85679|0.5 85680|0.44444 85681|0.34722 85682|0.55556 85683|0.5 85684|0.5 85685|0.5 85686|0.30556 85687|0.54167 85688|0.59722 85689|0.68056 85690|0.81944 85691|0.29167 85692|0.59722 85693|0.72222 85694|0.5 85695|0.69444 85696|0.54167 85697|0.5 85698|0.5 85699|0.55556 85700|0.5 85701|0.63889 85702|0.58333 85703|0.5 85704|0.88889 85705|0.55556 85706|0.625 85707|0.69444 85708|0.5 85709|0.44444 85710|0.70833 85711|0.65278 85712|0.58333 85713|0.65278 85714|0.61111 85715|0.56944 85716|0.51389 85717|0.5 85718|0.44444 85719|0.375 85720|0.31944 85721|0.52778 85722|0.27778 85723|0.26389 85724|0.25 85725|0.375 85726|0.27778 85727|0.25 85728|0.23611 85729|0.19444 85730|0.56944 85731|0.29167 85732|0.33333 85733|0.30556 85734|0.47222 85735|0.27778 85736|0.27778 85737|0.40278 85738|0.5 85739|0.59722 85740|0.5 85741|0.61111 85742|0.72222 85743|0.55556 85744|0.22222 85745|0.47222 85746|0.36111 85747|0.59722 85748|0.33333 85749|0.34722 85750|0.40278 85751|0.5 85752|0.47222 85753|0.5 85754|0.52778 85755|0.5 85756|0.625 85757|0.51389 85758|0.55556 85759|0.55556 85760|0.52778 85761|0.73611 85762|0.54167 85763|0.61111 85764|0.51389 85765|0.5 85766|0.5 85767|0.43056 85768|0.5 85769|0.5 85770|0.13889 85771|0.56944 85772|0.76389 85773|0.66667 85774|0.69444 85775|0.65278 85776|0.44444 85777|0.5 85778|0.47222 85779|0.47222 85780|0.5 85781|0.51389 85782|0.63889 85783|0.375 85784|0.5 85785|0.63889 85786|0.5 85787|0.5 85788|0.5 85789|0.5 85790|0.56944 85791|0.66667 85792|0.68056 85793|0.68056 85794|0.61111 85795|0.73611 85796|0.65278 85797|0.76389 85798|0.84722 85799|0.94444 85800|0.55556 85801|0.63889 85802|0.72222 85803|0.72222 85804|0.77778 85805|0.61111 85806|0.55556 85807|0.54167 85808|0.52778 85809|0.55556 85810|0.61111 85811|0.5 85812|0.5 85813|0.51389 85814|0.5 85815|0.27778 85816|0.58333 85817|0.51389 85818|0.51389 85819|0.5 85820|0.51389 85821|0.72222 85822|0.83333 85823|0.73611 85824|0.69444 85825|0.5 85826|0.58333 85827|0.59722 85828|0.75 85829|0.51389 85830|0.52778 85831|0.59722 85832|0.5 85833|0.55556 85834|0.45833 85835|0.44444 85836|0.56944 85837|0.80556 85838|0.5 85839|0.5 85840|0.61111 85841|0.41667 85842|0.5 85843|0.5 85844|0.61111 85845|0.48611 85846|0.63889 85847|0.41667 85848|0.72222 85849|0.48611 85850|0.76389 85851|0.72222 85852|0.43056 85853|0.5 85854|0.44444 85855|0.55556 85856|0.65278 85857|0.81944 85858|0.80556 85859|0.44444 85860|0.70833 85861|0.33333 85862|0.44444 85863|0.30556 85864|0.44444 85865|0.68056 85866|0.5 85867|0.80556 85868|0.55556 85869|0.45833 85870|0.5 85871|0.625 85872|0.54167 85873|0.76389 85874|0.76389 85875|0.65278 85876|0.45833 85877|0.48611 85878|0.375 85879|0.72222 85880|0.77778 85881|0.33333 85882|0.58333 85883|0.44444 85884|0.5 85885|0.80556 85886|0.77778 85887|0.5 85888|0.52778 85889|0.38889 85890|0.44444 85891|0.52778 85892|0.55556 85893|0.51389 85894|0.5 85895|0.48611 85896|0.51389 85897|0.58333 85898|0.55556 85899|0.5 85900|0.5 85901|0.86111 85902|0.34722 85903|0.47222 85904|0.33333 85905|0.5 85906|0.5 85907|0.5 85908|0.58333 85909|0.55556 85910|0.54167 85911|0.43056 85912|0.43056 85913|0.66667 85914|0.55556 85915|0.38889 85916|0.45833 85917|0.41667 85918|0.51389 85919|0.43056 85920|0.51389 85921|0.52778 85922|0.33333 85923|0.72222 85924|0.52778 85925|0.41667 85926|0.52778 85927|0.5 85928|0.44444 85929|0.63889 85930|0.33333 85931|0.34722 85932|0.5 85933|0.375 85934|0.61111 85935|0.5 85936|0.44444 85937|0.40278 85938|0.47222 85939|0.34722 85940|0.5 85941|0.70833 85942|0.76389 85943|0.59722 85944|0.68056 85945|0.29167 85946|0.63889 85947|0.5 85948|0.5 85949|0.69444 85950|0.66667 85951|0.56944 85952|0.68056 85953|0.58333 85954|0.59722 85955|0.5 85956|0.51389 85957|0.55556 85958|0.61111 85959|0.55556 85960|0.47222 85961|0.5 85962|0.5 85963|0.5 85964|0.51389 85965|0.5 85966|0.51389 85967|0.625 85968|0.66667 85969|0.33333 85970|0.47222 85971|0.69444 85972|0.625 85973|0.51389 85974|0.44444 85975|0.45833 85976|0.5 85977|0.81944 85978|0.55556 85979|0.77778 85980|0.55556 85981|0.66667 85982|0.65278 85983|0.625 85984|0.73611 85985|0.5 85986|0.54167 85987|0.5 85988|0.61111 85989|0.55556 85990|0.61111 85991|0.5 85992|0.68056 85993|0.59722 85994|0.875 85995|0.66667 85996|0.59722 85997|0.54167 85998|0.41667 85999|0.5 86000|0.59722 86001|0.65278 86002|0.65278 86003|0.56944 86004|0.55556 86005|0.79167 86006|0.65278 86007|0.58333 86008|0.38889 86009|0.55556 86010|0.43056 86011|0.30556 86012|0.44444 86013|0.56944 86014|0.5 86015|0.77778 86016|0.5 86017|0.58333 86018|0.58333 86019|0.5 86020|0.44444 86021|0.52778 86022|0.63889 86023|0.61111 86024|0.58333 86025|0.5 86026|0.66667 86027|0.48611 86028|0.54167 86029|0.44444 86030|0.55556 86031|0.59722 86032|0.66667 86033|0.69444 86034|0.44444 86035|0.38889 86036|0.5 86037|0.5 86038|0.69444 86039|0.65278 86040|0.59722 86041|0.33333 86042|0.52778 86043|0.79167 86044|0.72222 86045|0.13889 86046|0.79167 86047|0.47222 86048|0.48611 86049|0.19444 86050|0.58333 86051|0.81944 86052|0.63889 86053|0.55556 86054|0.56944 86055|0.55556 86056|0.54167 86057|0.55556 86058|0.55556 86059|0.26389 86060|0.5 86061|0.40278 86062|0.38889 86063|0.63889 86064|0.66667 86065|0.54167 86066|0.27778 86067|0.38889 86068|0.59722 86069|0.66667 86070|0.66667 86071|0.59722 86072|0.40278 86073|0.5 86074|0.75 86075|0.54167 86076|0.56944 86077|0.52778 86078|0.77778 86079|0.625 86080|0.44444 86081|0.76389 86082|0.45833 86083|0.58333 86084|0.81944 86085|0.5 86086|0.41667 86087|0.52778 86088|0.5 86089|0.5 86090|0.70833 86091|0.5 86092|0.5 86093|0.55556 86094|0.69444 86095|0.77778 86096|0.61111 86097|0.66667 86098|0.72222 86099|0.81944 86100|0.68056 86101|0.48611 86102|0.73611 86103|0.29167 86104|0.625 86105|0.55556 86106|0.61111 86107|0.59722 86108|0.56944 86109|0.81944 86110|0.83333 86111|0.76389 86112|0.63889 86113|0.75 86114|0.77778 86115|0.69444 86116|0.72222 86117|0.66667 86118|0.66667 86119|0.58333 86120|0.43056 86121|0.5 86122|0.48611 86123|0.63889 86124|0.44444 86125|0.5 86126|0.63889 86127|0.47222 86128|0.44444 86129|0.61111 86130|0.43056 86131|0.43056 86132|0.43056 86133|0.27778 86134|0.41667 86135|0.66667 86136|0.52778 86137|0.5 86138|0.56944 86139|0.61111 86140|0.72222 86141|0.5 86142|0.25 86143|0.44444 86144|0.5 86145|0.55556 86146|0.5 86147|0.51389 86148|0.69444 86149|0.44444 86150|0.54167 86151|0.55556 86152|0.63889 86153|0.5 86154|0.55556 86155|0.55556 86156|0.55556 86157|0.625 86158|0.48611 86159|0.54167 86160|0.45833 86161|0.47222 86162|0.5 86163|0.66667 86164|0.5 86165|0.5 86166|0.63889 86167|0.44444 86168|0.55556 86169|0.5 86170|0.23611 86171|0.58333 86172|0.43056 86173|0.36111 86174|0.38889 86175|0.44444 86176|0.66667 86177|0.5 86178|0.69444 86179|0.59722 86180|0.51389 86181|0.65278 86182|0.5 86183|0.5 86184|0.52778 86185|0.59722 86186|0.59722 86187|0.5 86188|0.66667 86189|0.61111 86190|0.43056 86191|0.375 86192|0.5 86193|0.47222 86194|0.81944 86195|0.69444 86196|0.65278 86197|0.69444 86198|0.48611 86199|0.55556 86200|0.66667 86201|0.23611 86202|0.38889 86203|0.5 86204|0.48611 86205|0.63889 86206|0.5 86207|0.56944 86208|0.55556 86209|0.66667 86210|0.72222 86211|0.44444 86212|0.5 86213|0.41667 86214|0.38889 86215|0.31944 86216|0.34722 86217|0.43056 86218|0.44444 86219|0.33333 86220|0.375 86221|0.19444 86222|0.55556 86223|0.58333 86224|0.68056 86225|0.68056 86226|0.79167 86227|0.61111 86228|0.73611 86229|0.77778 86230|0.43056 86231|0.43056 86232|0.61111 86233|0.52778 86234|0.48611 86235|0.47222 86236|0.41667 86237|0.52778 86238|0.5 86239|0.625 86240|0.625 86241|0.56944 86242|0.44444 86243|0.51389 86244|0.51389 86245|0.5 86246|0.44444 86247|0.48611 86248|0.5 86249|0.66667 86250|0.56944 86251|0.47222 86252|0.72222 86253|0.63889 86254|0.38889 86255|0.44444 86256|0.58333 86257|0.5 86258|0.52778 86259|0.43056 86260|0.38889 86261|0.40278 86262|0.5 86263|0.5 86264|0.5 86265|0.55556 86266|0.75 86267|0.56944 86268|0.5 86269|0.47222 86270|0.73611 86271|0.63889 86272|0.55556 86273|0.625 86274|0.38889 86275|0.55556 86276|0.51389 86277|0.16667 86278|0.5 86279|0.625 86280|0.75 86281|0.59722 86282|0.72222 86283|0.5 86284|0.54167 86285|0.70833 86286|0.59722 86287|0.66667 86288|0.63889 86289|0.5 86290|0.5 86291|0.54167 86292|0.47222 86293|0.63889 86294|0.5 86295|0.66667 86296|0.5 86297|0.36111 86298|0.86111 86299|0.38889 86300|0.22222 86301|0.5 86302|0.5 86303|0.77778 86304|0.63889 86305|0.56944 86306|0.76389 86307|0.5 86308|0.56944 86309|0.59722 86310|0.52778 86311|0.47222 86312|0.72222 86313|0.43056 86314|0.55556 86315|0.33333 86316|0.58333 86317|0.47222 86318|0.375 86319|0.26389 86320|0.16667 86321|0.40278 86322|0.5 86323|0.51389 86324|0.44444 86325|0.31944 86326|0.38889 86327|0.5 86328|0.40278 86329|0.375 86330|0.44444 86331|0.56944 86332|0.5 86333|0.55556 86334|0.44444 86335|0.83333 86336|0.5 86337|0.33333 86338|0.5 86339|0.76389 86340|0.44444 86341|0.45833 86342|0.51389 86343|0.55556 86344|0.55556 86345|0.70833 86346|0.65278 86347|0.625 86348|0.55556 86349|0.66667 86350|0.66667 86351|0.5 86352|0.54167 86353|0.59722 86354|0.54167 86355|0.65278 86356|0.59722 86357|0.51389 86358|0.68056 86359|0.70833 86360|0.625 86361|0.73611 86362|0.55556 86363|0.61111 86364|0.51389 86365|0.55556 86366|0.59722 86367|0.80556 86368|0.66667 86369|0.66667 86370|0.79167 86371|0.77778 86372|0.65278 86373|0.51389 86374|0.66667 86375|0.68056 86376|0.70833 86377|0.80556 86378|0.79167 86379|0.72222 86380|0.875 86381|0.63889 86382|0.48611 86383|0.65278 86384|0.58333 86385|0.83333 86386|0.66667 86387|0.625 86388|0.77778 86389|0.70833 86390|0.83333 86391|0.73611 86392|0.65278 86393|0.625 86394|0.72222 86395|0.5 86396|0.61111 86397|0.70833 86398|0.73611 86399|0.90278 86400|0.68056 86401|0.76389 86402|0.54167 86403|0.38889 86404|0.41667 86405|0.33333 86406|0.38889 86407|0.5 86408|0.56944 86409|0.51389 86410|0.625 86411|0.45833 86412|0.73611 86413|0.5 86414|0.5 86415|0.38889 86416|0.30556 86417|0.45833 86418|0.5 86419|0.5 86420|0.56944 86421|0.38889 86422|0.70833 86423|0.61111 86424|0.63889 86425|0.51389 86426|0.77778 86427|0.58333 86428|0.63889 86429|0.625 86430|0.65278 86431|0.70833 86432|0.55556 86433|0.77778 86434|0.91667 86435|0.5 86436|0.51389 86437|0.76389 86438|0.5 86439|0.56944 86440|0.55556 86441|0.80556 86442|0.79167 86443|0.5 86444|0.48611 86445|0.48611 86446|0.54167 86447|0.44444 86448|0.41667 86449|0.5 86450|0.5 86451|0.44444 86452|0.56944 86453|0.84722 86454|0.76389 86455|0.5 86456|0.51389 86457|0.84722 86458|0.75 86459|0.5 86460|0.73611 86461|0.63889 86462|0.44444 86463|0.55556 86464|0.51389 86465|0.70833 86466|0.58333 86467|0.73611 86468|0.51389 86469|0.65278 86470|0.63889 86471|0.5 86472|0.22222 86473|0.5 86474|0.5 86475|0.5 86476|0.68056 86477|0.72222 86478|0.5 86479|0.51389 86480|0.61111 86481|0.5 86482|0.45833 86483|0.65278 86484|0.44444 86485|0.44444 86486|0.26389 86487|0.76389 86488|0.84722 86489|0.75 86490|0.84722 86491|0.625 86492|0.94444 86493|0.83333 86494|0.77778 86495|0.5 86496|0.51389 86497|0.5 86498|0.47222 86499|0.5 86500|0.5 86501|0.79167 86502|0.5 86503|0.27778 86504|0.56944 86505|0.625 86506|0.43056 86507|0.5 86508|0.69444 86509|0.61111 86510|0.72222 86511|0.55556 86512|0.63889 86513|0.55556 86514|0.5 86515|0.68056 86516|0.54167 86517|0.63889 86518|0.77778 86519|0.77778 86520|0.58333 86521|0.56944 86522|0.79167 86523|0.79167 86524|0.52778 86525|0.5 86526|0.83333 86527|0.90278 86528|0.51389 86529|0.72222 86530|0.55556 86531|0.875 86532|0.56944 86533|0.66667 86534|0.86111 86535|0.55556 86536|0.79167 86537|0.75 86538|0.875 86539|0.86111 86540|0.44444 86541|0.38889 86542|0.81944 86543|0.72222 86544|0.77778 86545|0.61111 86546|0.51389 86547|0.61111 86548|0.5 86549|0.72222 86550|0.72222 86551|0.70833 86552|0.79167 86553|0.69444 86554|0.5 86555|0.84722 86556|0.625 86557|0.36111 86558|0.66667 86559|0.59722 86560|0.72222 86561|0.68056 86562|0.80556 86563|0.83333 86564|0.72222 86565|0.80556 86566|0.66667 86567|0.66667 86568|0.59722 86569|0.65278 86570|0.77778 86571|0.38889 86572|0.59722 86573|0.76389 86574|0.69444 86575|0.70833 86576|0.59722 86577|0.45833 86578|0.54167 86579|0.40278 86580|0.59722 86581|0.65278 86582|0.66667 86583|0.70833 86584|0.83333 86585|0.54167 86586|0.51389 86587|0.61111 86588|0.63889 86589|0.625 86590|0.26389 86591|0.47222 86592|0.54167 86593|0.5 86594|0.5 86595|0.5 86596|0.5 86597|0.75 86598|0.83333 86599|0.83333 86600|0.90278 86601|0.81944 86602|0.5 86603|0.66667 86604|0.51389 86605|0.41667 86606|0.73611 86607|0.77778 86608|0.52778 86609|0.59722 86610|0.70833 86611|0.66667 86612|0.77778 86613|0.81944 86614|0.47222 86615|0.76389 86616|0.54167 86617|0.5 86618|0.70833 86619|0.68056 86620|0.86111 86621|0.83333 86622|0.44444 86623|0.52778 86624|0.79167 86625|0.80556 86626|0.77778 86627|0.70833 86628|0.73611 86629|0.5 86630|0.72222 86631|0.83333 86632|0.73611 86633|0.69444 86634|0.77778 86635|0.63889 86636|0.61111 86637|0.625 86638|0.15278 86639|0.20833 86640|0.19444 86641|0.75 86642|0.75 86643|0.5 86644|0.72222 86645|0.75 86646|0.65278 86647|0.47222 86648|0.18056 86649|0.77778 86650|0.73611 86651|0.84722 86652|0.79167 86653|0.70833 86654|0.5 86655|0.72222 86656|0.77778 86657|0.72222 86658|0.65278 86659|0.66667 86660|0.68056 86661|0.83333 86662|0.81944 86663|0.66667 86664|0.5 86665|0.63889 86666|0.73611 86667|0.66667 86668|0.58333 86669|0.73611 86670|0.73611 86671|0.73611 86672|0.66667 86673|0.5 86674|0.79167 86675|0.58333 86676|0.77778 86677|0.75 86678|0.51389 86679|0.84722 86680|0.91667 86681|0.94444 86682|0.77778 86683|0.73611 86684|0.47222 86685|0.5 86686|0.5 86687|0.5 86688|0.81944 86689|0.73611 86690|0.51389 86691|0.625 86692|0.55556 86693|0.66667 86694|0.59722 86695|0.26389 86696|0.47222 86697|0.41667 86698|0.44444 86699|0.5 86700|0.97222 86701|0.52778 86702|0.72222 86703|0.65278 86704|0.5 86705|0.5 86706|0.68056 86707|0.5 86708|0.40278 86709|0.52778 86710|0.38889 86711|0.47222 86712|0.30556 86713|0.30556 86714|0.625 86715|0.76389 86716|0.66667 86717|0.69444 86718|0.51389 86719|0.58333 86720|0.47222 86721|0.69444 86722|0.59722 86723|0.72222 86724|0.5 86725|0.93056 86726|0.81944 86727|0.80556 86728|0.68056 86729|0.69444 86730|0.55556 86731|0.77778 86732|0.77778 86733|0.45833 86734|0.79167 86735|0.81944 86736|0.70833 86737|0.73611 86738|0.79167 86739|0.83333 86740|0.65278 86741|0.81944 86742|0.63889 86743|0.55556 86744|0.73611 86745|0.65278 86746|0.59722 86747|0.72222 86748|0.5 86749|0.63889 86750|0.5 86751|0.88889 86752|0.70833 86753|0.76389 86754|0.84722 86755|0.83333 86756|0.72222 86757|0.81944 86758|0.59722 86759|0.66667 86760|0.70833 86761|0.55556 86762|0.5 86763|0.72222 86764|0.56944 86765|0.5 86766|0.73611 86767|0.5 86768|0.5 86769|0.5 86770|0.58333 86771|0.61111 86772|0.5 86773|0.55556 86774|0.72222 86775|0.55556 86776|0.66667 86777|0.43056 86778|0.5 86779|0.73611 86780|0.5 86781|0.5 86782|0.5 86783|0.29167 86784|0.5 86785|0.34722 86786|0.5 86787|0.625 86788|0.38889 86789|0.5 86790|0.55556 86791|0.77778 86792|0.5 86793|0.59722 86794|0.45833 86795|0.625 86796|0.94444 86797|0.91667 86798|0.5 86799|0.44444 86800|0.5 86801|0.54167 86802|0.5 86803|0.5 86804|0.5 86805|0.5 86806|0.86111 86807|0.875 86808|0.5 86809|0.625 86810|0.52778 86811|0.79167 86812|0.73611 86813|0.375 86814|0.44444 86815|0.27778 86816|0.5 86817|0.55556 86818|0.51389 86819|0.76389 86820|0.58333 86821|0.44444 86822|0.375 86823|0.51389 86824|0.58333 86825|0.5 86826|0.5 86827|0.72222 86828|0.73611 86829|0.63889 86830|0.55556 86831|0.66667 86832|0.72222 86833|0.63889 86834|0.86111 86835|0.79167 86836|0.80556 86837|0.79167 86838|0.77778 86839|0.875 86840|0.94444 86841|0.73611 86842|0.80556 86843|0.77778 86844|0.81944 86845|0.76389 86846|0.73611 86847|0.5 86848|0.45833 86849|0.58333 86850|0.44444 86851|0.44444 86852|0.55556 86853|0.51389 86854|0.76389 86855|0.81944 86856|0.88889 86857|0.77778 86858|0.69444 86859|0.88889 86860|0.5 86861|0.5 86862|0.47222 86863|0.5 86864|0.72222 86865|0.79167 86866|0.55556 86867|0.48611 86868|0.5 86869|0.61111 86870|0.47222 86871|0.55556 86872|0.52778 86873|0.58333 86874|0.70833 86875|0.55556 86876|0.63889 86877|0.36111 86878|0.27778 86879|0.54167 86880|0.83333 86881|0.91667 86882|0.5 86883|0.83333 86884|0.86111 86885|0.59722 86886|0.59722 86887|0.40278 86888|0.625 86889|0.5 86890|0.81944 86891|0.63889 86892|0.48611 86893|0.5 86894|0.79167 86895|0.81944 86896|0.47222 86897|0.31944 86898|0.70833 86899|0.76389 86900|0.75 86901|1 86902|0.5 86903|0.80556 86904|0.68056 86905|0.52778 86906|0.5 86907|0.72222 86908|0.38889 86909|0.44444 86910|0.5 86911|0.58333 86912|0.61111 86913|0.625 86914|0.59722 86915|0.48611 86916|0.40278 86917|0.40278 86918|0.44444 86919|0.54167 86920|0.73611 86921|0.23611 86922|0.55556 86923|0.34722 86924|0.55556 86925|0.63889 86926|0.22222 86927|0.38889 86928|0.41667 86929|0.5 86930|0.47222 86931|0.5 86932|0.5 86933|0.5 86934|0.5 86935|0.68056 86936|0.58333 86937|0.93056 86938|0.91667 86939|0.5 86940|0.31944 86941|0.5 86942|0.48611 86943|0.5 86944|0.5 86945|0.40278 86946|0.45833 86947|0.41667 86948|0.66667 86949|0.59722 86950|0.79167 86951|0.41667 86952|0.5 86953|0.54167 86954|0.58333 86955|0.63889 86956|0.61111 86957|0.43056 86958|0.5 86959|0.5 86960|0.45833 86961|0.70833 86962|0.51389 86963|0.375 86964|0.34722 86965|0.5 86966|0.625 86967|0.56944 86968|0.55556 86969|0.15278 86970|0.45833 86971|0.5 86972|0.55556 86973|0.51389 86974|0.5 86975|0.56944 86976|0.5 86977|0.63889 86978|0.5 86979|0.55556 86980|0.5 86981|0.5 86982|0.55556 86983|0.54167 86984|0.30556 86985|0.36111 86986|0.61111 86987|0.51389 86988|0.72222 86989|0.5 86990|0.43056 86991|0.5 86992|0.5 86993|0.5 86994|0.30556 86995|0.51389 86996|0.44444 86997|0.47222 86998|0.59722 86999|0.45833 87000|0.51389 87001|0.63889 87002|0.58333 87003|0.51389 87004|0.44444 87005|0.5 87006|0.45833 87007|0.43056 87008|0.55556 87009|0.54167 87010|0.38889 87011|0.72222 87012|0.86111 87013|0.83333 87014|0.77778 87015|0.77778 87016|0.72222 87017|0.69444 87018|0.54167 87019|0.81944 87020|0.52778 87021|0.52778 87022|0.5 87023|0.51389 87024|0.5 87025|0.54167 87026|0.38889 87027|0.5 87028|0.27778 87029|0.33333 87030|0.52778 87031|0.52778 87032|0.34722 87033|0.5 87034|0.45833 87035|0.40278 87036|0.5 87037|0.58333 87038|0.51389 87039|0.75 87040|0.73611 87041|0.81944 87042|0.5 87043|0.5 87044|0.5 87045|0.41667 87046|0.55556 87047|0.5 87048|0.5 87049|0.5 87050|0.59722 87051|0.375 87052|0.52778 87053|0.5 87054|0.48611 87055|0.22222 87056|0.5 87057|0.5 87058|0.61111 87059|0.48611 87060|0.72222 87061|0.61111 87062|0.68056 87063|0.77778 87064|0.875 87065|0.94444 87066|0.43056 87067|0.26389 87068|0.34722 87069|0.44444 87070|0.25 87071|0.26389 87072|0.13889 87073|0.625 87074|0.48611 87075|0.52778 87076|0.51389 87077|0.61111 87078|0.55556 87079|0.5 87080|0.55556 87081|0.5 87082|0.5 87083|0.51389 87084|0.5 87085|0.65278 87086|0.70833 87087|0.5 87088|0.5 87089|0.84722 87090|0.30556 87091|0.5 87092|0.55556 87093|0.41667 87094|0.34722 87095|0.59722 87096|0.70833 87097|0.91667 87098|0.90278 87099|0.5 87100|0.52778 87101|0.5 87102|0.83333 87103|0.65278 87104|0.22222 87105|0.5 87106|0.51389 87107|0.34722 87108|0.45833 87109|0.63889 87110|0.75 87111|0.27778 87112|0.45833 87113|0.625 87114|0.72222 87115|0.66667 87116|0.59722 87117|0.59722 87118|0.65278 87119|0.66667 87120|0.66667 87121|0.73611 87122|0.54167 87123|0.52778 87124|0.5 87125|0.59722 87126|0.45833 87127|0.44444 87128|0.56944 87129|0.5 87130|0.5 87131|0.61111 87132|0.625 87133|0.55556 87134|0.61111 87135|0.54167 87136|0.625 87137|0.41667 87138|0.55556 87139|0.77778 87140|0.55556 87141|0.5 87142|0.5 87143|0.44444 87144|0.375 87145|0.55556 87146|0.44444 87147|0.72222 87148|0.34722 87149|0.40278 87150|0.47222 87151|0.84722 87152|0.86111 87153|0.875 87154|0.38889 87155|0.47222 87156|0.34722 87157|0.38889 87158|0.22222 87159|0.36111 87160|0.16667 87161|0.38889 87162|0.33333 87163|0.5 87164|0.44444 87165|0.58333 87166|0.56944 87167|0.45833 87168|0.5 87169|0.51389 87170|0.5 87171|0.44444 87172|0.5 87173|0.51389 87174|0.5 87175|0.55556 87176|0.5 87177|0.55556 87178|0.55556 87179|0.5 87180|0.5 87181|0.52778 87182|0.5 87183|0.61111 87184|0.84722 87185|0.61111 87186|0.61111 87187|0.68056 87188|0.79167 87189|0.59722 87190|0.58333 87191|0.5 87192|0.5 87193|0.5 87194|0.5 87195|0.61111 87196|0.66667 87197|0.63889 87198|0.72222 87199|0.63889 87200|0.59722 87201|0.625 87202|0.65278 87203|0.63889 87204|0.31944 87205|0.30556 87206|0.44444 87207|0.5 87208|0.5 87209|0.5 87210|0.58333 87211|0.79167 87212|0.59722 87213|0.59722 87214|0.5 87215|0.63889 87216|0.43056 87217|0.45833 87218|0.61111 87219|0.47222 87220|0.48611 87221|0.45833 87222|0.38889 87223|0.43056 87224|0.54167 87225|0.63889 87226|0.5 87227|0.54167 87228|0.43056 87229|0.66667 87230|0.625 87231|0.65278 87232|0.56944 87233|0.66667 87234|0.81944 87235|0.5 87236|0.68056 87237|0.40278 87238|0.68056 87239|0.65278 87240|0.66667 87241|0.625 87242|0.80556 87243|0.56944 87244|0.55556 87245|0.625 87246|0.51389 87247|0.44444 87248|0.5 87249|0.51389 87250|0.375 87251|0.44444 87252|0.58333 87253|0.76389 87254|0.5 87255|0.70833 87256|0.55556 87257|0.33333 87258|0.69444 87259|0.90278 87260|0.69444 87261|0.625 87262|0.69444 87263|0.70833 87264|0.75 87265|0.72222 87266|0.56944 87267|0.72222 87268|0.83333 87269|0.38889 87270|0.51389 87271|0.56944 87272|0.56944 87273|0.38889 87274|0.23611 87275|0.5 87276|0.55556 87277|0.56944 87278|0.58333 87279|0.54167 87280|0.47222 87281|0.68056 87282|0.51389 87283|0.55556 87284|0.51389 87285|0.44444 87286|0.59722 87287|0.76389 87288|0.55556 87289|0.5 87290|0.5 87291|0.51389 87292|0.66667 87293|0.56944 87294|0.5 87295|0.61111 87296|0.73611 87297|0.66667 87298|0.23611 87299|0.26389 87300|0.59722 87301|0.51389 87302|0.52778 87303|0.55556 87304|0.51389 87305|0.5 87306|0.61111 87307|0.66667 87308|0.69444 87309|0.44444 87310|0.41667 87311|0.75 87312|0.63889 87313|0.56944 87314|0.59722 87315|0.5 87316|0.65278 87317|0.70833 87318|0.80556 87319|0.79167 87320|0.43056 87321|0.56944 87322|0.81944 87323|0.68056 87324|0.81944 87325|0.79167 87326|0.58333 87327|0.52778 87328|0.76389 87329|0.625 87330|0.76389 87331|0.66667 87332|0.33333 87333|0.56944 87334|0.66667 87335|0.59722 87336|0.65278 87337|0.73611 87338|0.81944 87339|0.5 87340|0.70833 87341|0.72222 87342|0.56944 87343|0.76389 87344|0.45833 87345|0.69444 87346|0.43056 87347|0.59722 87348|0.70833 87349|0.63889 87350|0.68056 87351|0.69444 87352|0.75 87353|0.55556 87354|0.66667 87355|0.52778 87356|0.55556 87357|0.625 87358|0.61111 87359|0.48611 87360|0.56944 87361|0.69444 87362|0.68056 87363|0.38889 87364|0.52778 87365|0.5 87366|0.38889 87367|0.40278 87368|0.61111 87369|0.58333 87370|0.5 87371|0.48611 87372|0.80556 87373|0.75 87374|0.97222 87375|0.76389 87376|0.5 87377|0.5 87378|0.33333 87379|0.81944 87380|0.73611 87381|0.68056 87382|0.59722 87383|0.55556 87384|0.41667 87385|0.61111 87386|0.5 87387|0.41667 87388|0.63889 87389|0.66667 87390|0.94444 87391|0.68056 87392|0.83333 87393|0.79167 87394|0.79167 87395|0.48611 87396|0.79167 87397|0.45833 87398|0.52778 87399|0.55556 87400|0.56944 87401|0.41667 87402|0.59722 87403|0.84722 87404|0.58333 87405|0.68056 87406|0.70833 87407|0.68056 87408|0.72222 87409|0.56944 87410|0.76389 87411|0.97222 87412|0.76389 87413|0.65278 87414|0.61111 87415|0.65278 87416|0.79167 87417|0.81944 87418|0.875 87419|0.75 87420|0.88889 87421|0.48611 87422|0.66667 87423|0.93056 87424|0.88889 87425|0.72222 87426|0.88889 87427|0.61111 87428|0.80556 87429|0.20833 87430|0.54167 87431|0.76389 87432|0.72222 87433|0.77778 87434|0.61111 87435|0.875 87436|0.72222 87437|0.875 87438|0.80556 87439|0.76389 87440|0.88889 87441|0.56944 87442|0.65278 87443|0.61111 87444|0.5 87445|0.5 87446|0.5 87447|0.38889 87448|0.55556 87449|0.79167 87450|0.19444 87451|0.51389 87452|0.375 87453|0.76389 87454|0.76389 87455|0.63889 87456|0.34722 87457|0.41667 87458|0.77778 87459|0.69444 87460|0.70833 87461|0.66667 87462|0.5 87463|0.61111 87464|0.77778 87465|0.69444 87466|0.88889 87467|0.81944 87468|0.69444 87469|0.69444 87470|0.65278 87471|0.51389 87472|0.83333 87473|0.81944 87474|0.38889 87475|0.52778 87476|0.63889 87477|0.77778 87478|0.83333 87479|0.55556 87480|0.59722 87481|0.81944 87482|0.54167 87483|0.73611 87484|0.76389 87485|0.79167 87486|0.97222 87487|0.31944 87488|0.30556 87489|0.36111 87490|0.56944 87491|0.45833 87492|0.5 87493|0.5 87494|0.52778 87495|0.72222 87496|0.81944 87497|0.79167 87498|0.88889 87499|0.55556 87500|0.86111 87501|0.41667 87502|0.5 87503|0.90278 87504|0.40278 87505|0.51389 87506|0.5 87507|0.5 87508|0.48611 87509|0.625 87510|0.52778 87511|0.23611 87512|0.44444 87513|0.44444 87514|0.375 87515|0.29167 87516|0.44444 87517|0.25 87518|0.5 87519|0.44444 87520|0.80556 87521|0.52778 87522|0.5 87523|0.56944 87524|0.55556 87525|0.55556 87526|0.5 87527|0.5 87528|0.5 87529|0.5 87530|0.55556 87531|0.54167 87532|0.55556 87533|0.73611 87534|0.56944 87535|0.625 87536|0.79167 87537|0.56944 87538|0.41667 87539|0.5 87540|0.56944 87541|0.52778 87542|0.56944 87543|0.61111 87544|0.83333 87545|0.75 87546|0.66667 87547|0.5 87548|0.56944 87549|0.59722 87550|0.73611 87551|0.5 87552|0.5 87553|0.5 87554|0.5 87555|0.55556 87556|0.5 87557|0.5 87558|0.55556 87559|0.59722 87560|0.56944 87561|0.69444 87562|0.81944 87563|0.79167 87564|0.83333 87565|0.77778 87566|0.625 87567|0.79167 87568|0.70833 87569|0.59722 87570|0.76389 87571|0.58333 87572|0.72222 87573|0.68056 87574|0.72222 87575|0.66667 87576|0.70833 87577|0.5 87578|0.86111 87579|0.55556 87580|0.58333 87581|0.79167 87582|0.59722 87583|0.63889 87584|0.61111 87585|0.61111 87586|0.59722 87587|0.81944 87588|0.76389 87589|0.61111 87590|0.5 87591|0.63889 87592|0.81944 87593|0.55556 87594|0.52778 87595|0.66667 87596|0.56944 87597|0.63889 87598|0.59722 87599|0.59722 87600|0.55556 87601|0.5 87602|0.75 87603|0.625 87604|0.38889 87605|0.5 87606|0.59722 87607|0.31944 87608|0.5 87609|0.76389 87610|0.31944 87611|0.63889 87612|0.72222 87613|0.34722 87614|0.59722 87615|0.43056 87616|0.55556 87617|0.55556 87618|0.68056 87619|0.54167 87620|0.54167 87621|0.43056 87622|0.5 87623|0.38889 87624|0.625 87625|0.61111 87626|0.51389 87627|0.72222 87628|0.76389 87629|0.65278 87630|0.5 87631|0.5 87632|0.52778 87633|0.5 87634|0.41667 87635|0.5 87636|0.56944 87637|0.58333 87638|0.5 87639|0.75 87640|0.58333 87641|0.5 87642|0.625 87643|0.58333 87644|0.5 87645|0.65278 87646|0.5 87647|0.52778 87648|0.66667 87649|0.55556 87650|0.5 87651|0.61111 87652|0.5 87653|0.59722 87654|0.56944 87655|0.41667 87656|0.36111 87657|0.44444 87658|0.38889 87659|0.66667 87660|0.77778 87661|0.36111 87662|0.76389 87663|0.79167 87664|0.59722 87665|0.5 87666|0.5 87667|0.63889 87668|0.70833 87669|0.5 87670|0.58333 87671|0.43056 87672|0.63889 87673|0.27778 87674|0.58333 87675|0.56944 87676|0.625 87677|0.61111 87678|0.68056 87679|0.63889 87680|0.83333 87681|0.875 87682|0.625 87683|0.68056 87684|0.5 87685|0.65278 87686|0.48611 87687|0.59722 87688|0.63889 87689|0.58333 87690|0.5 87691|0.5 87692|0.38889 87693|0.54167 87694|0.55556 87695|0.47222 87696|0.65278 87697|0.875 87698|0.48611 87699|0.5 87700|0.5 87701|0.5 87702|0.5 87703|0.5 87704|0.58333 87705|0.43056 87706|0.40278 87707|0.33333 87708|0.51389 87709|0.5 87710|0.79167 87711|0.5 87712|0.5 87713|0.5 87714|0.5 87715|0.61111 87716|0.69444 87717|0.66667 87718|0.76389 87719|0.75 87720|0.54167 87721|0.59722 87722|0.66667 87723|0.59722 87724|0.84722 87725|0.72222 87726|0.5 87727|0.5 87728|0.54167 87729|0.19444 87730|0.625 87731|0.58333 87732|0.43056 87733|0.34722 87734|0.70833 87735|0.77778 87736|0.48611 87737|0.80556 87738|0.47222 87739|0.5 87740|0.86111 87741|0.83333 87742|0.15278 87743|0.48611 87744|0.84722 87745|0.55556 87746|0.66667 87747|0.56944 87748|0.5 87749|0.5 87750|0.5 87751|0.5 87752|0.54167 87753|0.51389 87754|0.58333 87755|0.55556 87756|0.30556 87757|0.5 87758|0.47222 87759|0.41667 87760|0.45833 87761|0.51389 87762|0.625 87763|0.83333 87764|0.625 87765|0.69444 87766|0.48611 87767|0.59722 87768|0.55556 87769|0.36111 87770|0.22222 87771|0.5 87772|0.52778 87773|0.41667 87774|0.52778 87775|0.34722 87776|0.29167 87777|0.47222 87778|0.38889 87779|0.51389 87780|0.34722 87781|0.43056 87782|0.27778 87783|0.44444 87784|0.083333 87785|0.45833 87786|0.34722 87787|0.51389 87788|0.375 87789|0.45833 87790|0.33333 87791|0.5 87792|0.59722 87793|0.55556 87794|0.58333 87795|0.61111 87796|0.66667 87797|0.5 87798|0.30556 87799|0.59722 87800|0.47222 87801|0.77778 87802|0.77778 87803|0.29167 87804|0.58333 87805|0.5 87806|0.77778 87807|0.58333 87808|0.54167 87809|0.69444 87810|0.81944 87811|0.55556 87812|0.75 87813|0.43056 87814|0.36111 87815|0.34722 87816|0.38889 87817|0.56944 87818|0.59722 87819|0.51389 87820|0.65278 87821|0.75 87822|0.30556 87823|0.80556 87824|0.43056 87825|0.59722 87826|0.875 87827|0.625 87828|0.66667 87829|0.48611 87830|0.51389 87831|0.65278 87832|0.55556 87833|0.55556 87834|0.5 87835|0.40278 87836|0.5 87837|0.5 87838|0.55556 87839|0.61111 87840|0.55556 87841|0.65278 87842|0.56944 87843|0.51389 87844|0.52778 87845|0.63889 87846|0.59722 87847|0.59722 87848|0.52778 87849|0.61111 87850|0.5 87851|0.58333 87852|0.54167 87853|0.55556 87854|0.54167 87855|0.56944 87856|0.5 87857|0.55556 87858|0.5 87859|0.5 87860|0.77778 87861|0.55556 87862|0.31944 87863|0.59722 87864|0.47222 87865|0.51389 87866|0.51389 87867|0.33333 87868|0.48611 87869|0.72222 87870|0.58333 87871|0.70833 87872|0.70833 87873|0.70833 87874|0.69444 87875|0.55556 87876|0.61111 87877|0.375 87878|0.51389 87879|0.66667 87880|0.47222 87881|0.75 87882|0.65278 87883|0.5 87884|0.33333 87885|0.47222 87886|0.55556 87887|0.38889 87888|0.54167 87889|0.23611 87890|0.44444 87891|0.33333 87892|0.66667 87893|0.45833 87894|0.40278 87895|0.13889 87896|0.56944 87897|0.5 87898|0.27778 87899|0.5 87900|0.33333 87901|0.19444 87902|0.36111 87903|0.22222 87904|0.61111 87905|0.23611 87906|0.23611 87907|0.5 87908|0.58333 87909|0.66667 87910|0.5 87911|0.36111 87912|0.5 87913|0.44444 87914|0.45833 87915|0.34722 87916|0.5 87917|0.48611 87918|0.40278 87919|0.47222 87920|0.58333 87921|0.5 87922|0.5 87923|0.59722 87924|0.43056 87925|0.375 87926|0.26389 87927|0.22222 87928|0.30556 87929|0.375 87930|0.027778 87931|0.013889 87932|0.375 87933|0.43056 87934|0.65278 87935|0.47222 87936|0.44444 87937|0.25 87938|0.375 87939|0.41667 87940|0.29167 87941|0.18056 87942|0.48611 87943|0.59722 87944|0.43056 87945|0.25 87946|0.47222 87947|0.47222 87948|0.56944 87949|0.66667 87950|0.54167 87951|0.55556 87952|0.69444 87953|0.5 87954|0.55556 87955|0.5 87956|0.5 87957|0.5 87958|0.5 87959|0.5 87960|0.65278 87961|0.5 87962|0.38889 87963|0.52778 87964|0.44444 87965|0.38889 87966|0.66667 87967|0.72222 87968|0.69444 87969|0.75 87970|0.34722 87971|0.56944 87972|0.5 87973|0.40278 87974|0.5 87975|0.5 87976|0.66667 87977|0.88889 87978|0.5 87979|0.54167 87980|0.36111 87981|0.5 87982|0.5 87983|0.56944 87984|0.66667 87985|0.625 87986|0.65278 87987|0.625 87988|0.72222 87989|0.40278 87990|0.41667 87991|0.5 87992|0.38889 87993|0.59722 87994|0.68056 87995|0.44444 87996|0.36111 87997|0.45833 87998|0.5 87999|0.61111 88000|0.58333 88001|0.33333 88002|0.70833 88003|0.5 88004|0.48611 88005|0.5 88006|0.73611 88007|0.48611 88008|0.5 88009|0.56944 88010|0.5 88011|0.66667 88012|0.55556 88013|0.33333 88014|0.44444 88015|0.66667 88016|0.77778 88017|0.75 88018|0.72222 88019|0.72222 88020|0.58333 88021|0.45833 88022|0.5 88023|0.38889 88024|0.63889 88025|0.47222 88026|0.5 88027|0.5 88028|0.5 88029|0.51389 88030|0.5 88031|0.47222 88032|0.75 88033|0.33333 88034|0.5 88035|0.66667 88036|0.45833 88037|0.45833 88038|0.79167 88039|0.86111 88040|0.63889 88041|0.55556 88042|0.5 88043|0.80556 88044|0.5 88045|0.65278 88046|0.44444 88047|0.77778 88048|0.625 88049|0.5 88050|0.84722 88051|0.41667 88052|0.51389 88053|0.66667 88054|0.66667 88055|0.25 88056|0.16667 88057|0.94444 88058|0.625 88059|0.52778 88060|0.375 88061|0.55556 88062|0.5 88063|0.38889 88064|0.65278 88065|0.75 88066|0.65278 88067|0.54167 88068|0.56944 88069|0.5 88070|0.51389 88071|0.5 88072|0.5 88073|0.44444 88074|0.48611 88075|0.5 88076|0.5 88077|0.625 88078|0.70833 88079|0.55556 88080|0.5 88081|0.5 88082|0.55556 88083|0.52778 88084|0.77778 88085|0.81944 88086|0.75 88087|0.5 88088|0.56944 88089|0.54167 88090|0.55556 88091|0.5 88092|0.59722 88093|0.5 88094|0.54167 88095|0.31944 88096|0.26389 88097|0.25 88098|0.30556 88099|0.70833 88100|0.66667 88101|0.56944 88102|0.47222 88103|0.51389 88104|0.61111 88105|0.38889 88106|0.77778 88107|0.51389 88108|0.41667 88109|0.54167 88110|0.72222 88111|0.52778 88112|0.45833 88113|0.36111 88114|0.52778 88115|0.72222 88116|0.72222 88117|0.61111 88118|0.48611 88119|0.51389 88120|0.5 88121|0.5 88122|0.5 88123|0.5 88124|0.5 88125|0.70833 88126|0.56944 88127|0.66667 88128|0.36111 88129|0.38889 88130|0.48611 88131|0.54167 88132|0.66667 88133|0.75 88134|0.375 88135|0.68056 88136|0.72222 88137|0.55556 88138|0.51389 88139|0.72222 88140|0.69444 88141|0.66667 88142|0.69444 88143|0.72222 88144|0.76389 88145|0.5 88146|0.58333 88147|0.41667 88148|0.5 88149|0.5 88150|0.56944 88151|0.51389 88152|0.5 88153|0.36111 88154|0.51389 88155|0.5 88156|0.45833 88157|0.5 88158|0.5 88159|0.55556 88160|0.5 88161|0.5 88162|0.54167 88163|0.5 88164|0.51389 88165|0.51389 88166|0.5 88167|0.5 88168|0.5 88169|0.75 88170|0.5 88171|0.61111 88172|0.5 88173|0.5 88174|0.72222 88175|0.5 88176|0.5 88177|0.5 88178|0.5 88179|0.51389 88180|0.54167 88181|0.80556 88182|0.51389 88183|0.38889 88184|0.56944 88185|0.5 88186|0.5 88187|0.5 88188|0.5 88189|0.47222 88190|0.5 88191|0.55556 88192|0.5 88193|0.47222 88194|0.55556 88195|0.5 88196|0.5 88197|0.69444 88198|0.5 88199|0.68056 88200|0.5 88201|0.58333 88202|0.5 88203|0.56944 88204|0.55556 88205|0.51389 88206|0.5 88207|0.44444 88208|0.5 88209|0.55556 88210|0.5 88211|0.45833 88212|0.5 88213|0.5 88214|0.69444 88215|0.55556 88216|0.54167 88217|0.125 88218|0.5 88219|0.5 88220|0.5 88221|0.38889 88222|0.5 88223|0.48611 88224|0.79167 88225|0.72222 88226|0.5 88227|0.5 88228|0.51389 88229|0.5 88230|0.5 88231|0.52778 88232|0.5 88233|0.44444 88234|0.5 88235|0.48611 88236|0.5 88237|0.51389 88238|0.48611 88239|0.51389 88240|0.5 88241|0.47222 88242|0.5 88243|0.5 88244|0.51389 88245|0.5 88246|0.5 88247|0.5 88248|0.27778 88249|0.76389 88250|0.5 88251|0.70833 88252|0.5 88253|0.41667 88254|0.5 88255|0.5 88256|0.5 88257|0.61111 88258|0.55556 88259|0.59722 88260|0.5 88261|0.5 88262|0.51389 88263|0.5 88264|0.5 88265|0.75 88266|0.55556 88267|0.59722 88268|0.5 88269|0.5 88270|0.61111 88271|0.41667 88272|0.51389 88273|0.55556 88274|0.54167 88275|0.5 88276|0.55556 88277|0.56944 88278|0.5 88279|0.5 88280|0.63889 88281|0.5 88282|0.5 88283|0.5 88284|0.5 88285|0.5 88286|0.5 88287|0.5 88288|0.5 88289|0.75 88290|0.5 88291|0.54167 88292|0.81944 88293|0.5 88294|0.5 88295|0.61111 88296|0.5 88297|0.65278 88298|0.5 88299|0.5 88300|0.55556 88301|0.5 88302|0.77778 88303|0.65278 88304|0.5 88305|0.61111 88306|0.61111 88307|0.45833 88308|0.5 88309|0.44444 88310|0.58333 88311|0.47222 88312|0.69444 88313|0.41667 88314|0.77778 88315|0.5 88316|0.54167 88317|0.5 88318|0.54167 88319|0.5 88320|0.52778 88321|0.875 88322|0.5 88323|0.5 88324|0.80556 88325|0.72222 88326|0.73611 88327|0.5 88328|0.5 88329|0.59722 88330|0.44444 88331|0.5 88332|0.625 88333|0.44444 88334|0.34722 88335|0.625 88336|0.63889 88337|0.40278 88338|0.5 88339|0.69444 88340|0.40278 88341|0.58333 88342|0.5 88343|0.63889 88344|0.44444 88345|0.56944 88346|0.44444 88347|0.40278 88348|0.61111 88349|0.44444 88350|0.44444 88351|0.5 88352|0.48611 88353|0.51389 88354|0.83333 88355|0.65278 88356|0.45833 88357|0.27778 88358|0.58333 88359|0.77778 88360|0.52778 88361|0.51389 88362|0.5 88363|0.63889 88364|0.54167 88365|0.45833 88366|0.72222 88367|0.5 88368|0.86111 88369|0.55556 88370|0.56944 88371|0.52778 88372|0.43056 88373|0.44444 88374|0.51389 88375|0.76389 88376|0.65278 88377|0.76389 88378|0.48611 88379|0.61111 88380|0.51389 88381|0.5 88382|0.27778 88383|0.58333 88384|0.5 88385|0.5 88386|0.51389 88387|0.33333 88388|0.625 88389|0.5 88390|0.5 88391|0.5 88392|0.55556 88393|0.54167 88394|0.5 88395|0.58333 88396|0.58333 88397|0.5 88398|0.5 88399|0.44444 88400|0.51389 88401|0.66667 88402|0.65278 88403|0.41667 88404|0.5 88405|0.5 88406|0.55556 88407|0.56944 88408|0.54167 88409|0.34722 88410|0.5 88411|0.45833 88412|0.72222 88413|0.58333 88414|0.38889 88415|0.5 88416|0.45833 88417|0.45833 88418|0.63889 88419|0.54167 88420|0.61111 88421|0.58333 88422|0.5 88423|0.5 88424|0.55556 88425|0.69444 88426|0.48611 88427|0.58333 88428|0.58333 88429|0.5 88430|0.55556 88431|0.45833 88432|0.51389 88433|0.47222 88434|0.16667 88435|0.65278 88436|0.72222 88437|0.5 88438|0.65278 88439|0.51389 88440|0.47222 88441|0.52778 88442|0.83333 88443|0.79167 88444|0.72222 88445|0.5 88446|0.66667 88447|0.58333 88448|0.16667 88449|0.33333 88450|0.5 88451|0.38889 88452|0.52778 88453|0.47222 88454|0.5 88455|0.5 88456|0.52778 88457|0.5 88458|0.5 88459|0.27778 88460|0.61111 88461|0.55556 88462|0.45833 88463|0.5 88464|0.58333 88465|0.43056 88466|0.75 88467|0.80556 88468|0.5 88469|0.5 88470|0.66667 88471|0.5 88472|0.61111 88473|0.27778 88474|0.5 88475|0.56944 88476|0.86111 88477|0.5 88478|0.41667 88479|0.56944 88480|0.5 88481|0.5 88482|0.59722 88483|0.5 88484|0.5 88485|0.56944 88486|0.70833 88487|0.83333 88488|0.55556 88489|0.5 88490|0.5 88491|0.5 88492|0.41667 88493|0.5 88494|0.58333 88495|0.52778 88496|0.5 88497|0.5 88498|0.51389 88499|0.47222 88500|0.5 88501|0.84722 88502|0.34722 88503|0.55556 88504|0.43056 88505|0.44444 88506|0.44444 88507|0.81944 88508|0.31944 88509|0.72222 88510|0.5 88511|0.43056 88512|0.51389 88513|0.625 88514|0.44444 88515|0.66667 88516|0.59722 88517|0.38889 88518|0.45833 88519|0.5 88520|0.47222 88521|0.31944 88522|0.69444 88523|0.55556 88524|0.51389 88525|0.5 88526|0.55556 88527|0.59722 88528|0.63889 88529|0.44444 88530|0.31944 88531|0.59722 88532|0.56944 88533|0.55556 88534|0.22222 88535|0.11111 88536|0.27778 88537|0.52778 88538|0.5 88539|0.625 88540|0.84722 88541|0.54167 88542|0.63889 88543|0.52778 88544|0.54167 88545|0.81944 88546|0.5 88547|0.52778 88548|0.43056 88549|0.73611 88550|0.61111 88551|0.52778 88552|0.72222 88553|0.40278 88554|0.55556 88555|0.61111 88556|0.5 88557|0.58333 88558|0.45833 88559|0.72222 88560|0.52778 88561|0.5 88562|0.5 88563|0.83333 88564|0.61111 88565|0.80556 88566|0.55556 88567|0.56944 88568|0.76389 88569|0.55556 88570|0.68056 88571|0.5 88572|0.70833 88573|0.5 88574|0.5 88575|0.625 88576|0.5 88577|0.55556 88578|0.5 88579|0.66667 88580|0.5 88581|0.52778 88582|0.58333 88583|0.625 88584|0.45833 88585|0.52778 88586|0.68056 88587|0.5 88588|0.44444 88589|0.5 88590|0.5 88591|0.375 88592|0.45833 88593|0.81944 88594|0.5 88595|0.68056 88596|0.63889 88597|0.66667 88598|0.76389 88599|0.83333 88600|0.83333 88601|0.66667 88602|0.47222 88603|0.5 88604|0.5 88605|0.63889 88606|0.54167 88607|0.375 88608|0.72222 88609|0.56944 88610|0.30556 88611|0.79167 88612|0.51389 88613|0.33333 88614|0.51389 88615|0.51389 88616|0.31944 88617|0.72222 88618|0.5 88619|0.29167 88620|0.68056 88621|0.5 88622|0.5 88623|0.77778 88624|0.625 88625|0.5 88626|0.44444 88627|0.5 88628|0.5 88629|0.5 88630|0.77778 88631|0.70833 88632|0.58333 88633|0.5 88634|0.55556 88635|0.58333 88636|0.51389 88637|0.5 88638|0.66667 88639|0.55556 88640|0.70833 88641|0.45833 88642|0.18056 88643|0.5 88644|0.63889 88645|0.55556 88646|0.40278 88647|0.51389 88648|0.58333 88649|0.59722 88650|0.5 88651|0.63889 88652|0.5 88653|0.5 88654|0.5 88655|0.47222 88656|0.70833 88657|0.47222 88658|0.70833 88659|0.51389 88660|0.5 88661|0.5 88662|0.55556 88663|0.33333 88664|0.76389 88665|0.55556 88666|0.75 88667|0.59722 88668|0.5 88669|0.5 88670|0.55556 88671|0.65278 88672|0.65278 88673|0.58333 88674|0.52778 88675|0.65278 88676|0.36111 88677|0.5 88678|0.59722 88679|0.52778 88680|0.51389 88681|0.52778 88682|0.5 88683|0.63889 88684|0.45833 88685|0.36111 88686|0.40278 88687|0.69444 88688|0.56944 88689|0.52778 88690|0.44444 88691|0.58333 88692|0.59722 88693|0.41667 88694|0.5 88695|0.5 88696|0.45833 88697|0.5 88698|0.5 88699|0.55556 88700|0.40278 88701|0.20833 88702|0.5 88703|0.5 88704|0.48611 88705|0.5 88706|0.5 88707|0.80556 88708|0.52778 88709|0.5 88710|0.45833 88711|0.59722 88712|0.5 88713|0.43056 88714|0.94444 88715|0.44444 88716|0.5 88717|0.54167 88718|0.52778 88719|0.69444 88720|0.30556 88721|0.45833 88722|0.5 88723|0.5 88724|0.5 88725|0.5 88726|0.48611 88727|0.5 88728|0.51389 88729|0.51389 88730|0.58333 88731|0.79167 88732|0.5 88733|0.5 88734|0.5 88735|0.61111 88736|0.61111 88737|0.41667 88738|0.38889 88739|0.5 88740|0.48611 88741|0.72222 88742|0.56944 88743|0.56944 88744|0.58333 88745|0.72222 88746|0.76389 88747|0.88889 88748|0.48611 88749|0.34722 88750|0.5 88751|0.52778 88752|0.56944 88753|0.51389 88754|0.5 88755|0.5 88756|0.55556 88757|0.44444 88758|0.55556 88759|0.43056 88760|0.40278 88761|0.56944 88762|0.5 88763|0.5 88764|0.5 88765|0.41667 88766|0.52778 88767|0.61111 88768|0.5 88769|0.63889 88770|0.55556 88771|0.59722 88772|0.58333 88773|0.54167 88774|0.68056 88775|0.73611 88776|0.48611 88777|0.43056 88778|0.5 88779|0.44444 88780|0.5 88781|0.5 88782|0.5 88783|0.61111 88784|0.44444 88785|0.65278 88786|0.51389 88787|0.5 88788|0.61111 88789|0.5 88790|0.5 88791|0.5 88792|0.65278 88793|0.56944 88794|0.56944 88795|0.61111 88796|0.5 88797|0.55556 88798|0.66667 88799|0.52778 88800|0.51389 88801|0.34722 88802|0.65278 88803|0.5 88804|0.5 88805|0.5 88806|0.30556 88807|0.44444 88808|0.38889 88809|0.44444 88810|0.52778 88811|0.5 88812|0.63889 88813|0.55556 88814|0.54167 88815|0.5 88816|0.55556 88817|0.47222 88818|0.5 88819|0.72222 88820|0.41667 88821|0.875 88822|0.5 88823|0.66667 88824|0.5 88825|0.5 88826|0.55556 88827|0.33333 88828|0.5 88829|0.5 88830|0.5 88831|0.34722 88832|0.5 88833|0.5 88834|0.52778 88835|0.36111 88836|0.70833 88837|0.55556 88838|0.86111 88839|0.22222 88840|0.83333 88841|0.375 88842|0.76389 88843|0.625 88844|0.5 88845|0.79167 88846|0.52778 88847|0.44444 88848|0.5 88849|0.54167 88850|0.5 88851|0.59722 88852|0.5 88853|0.5 88854|0.77778 88855|0.5 88856|0.44444 88857|0.63889 88858|0.65278 88859|0.51389 88860|0.51389 88861|0.52778 88862|0.48611 88863|0.58333 88864|0.56944 88865|0.68056 88866|0.59722 88867|0.61111 88868|0.61111 88869|0.61111 88870|0.68056 88871|0.58333 88872|0.52778 88873|0.68056 88874|0.55556 88875|0.61111 88876|0.40278 88877|0.5 88878|0.51389 88879|0.44444 88880|0.63889 88881|0.5 88882|0.55556 88883|0.55556 88884|0.55556 88885|0.56944 88886|0.63889 88887|0.5 88888|0.63889 88889|0.69444 88890|0.59722 88891|0.44444 88892|0.5 88893|0.5 88894|0.68056 88895|0.5 88896|0.55556 88897|0.5 88898|0.26389 88899|0.5 88900|0.86111 88901|0.77778 88902|0.5 88903|0.5 88904|0.5 88905|0.56944 88906|0.79167 88907|0.63889 88908|0.5 88909|0.59722 88910|0.51389 88911|0.5 88912|0.5 88913|0.63889 88914|0.58333 88915|0.5 88916|0.75 88917|0.55556 88918|0.76389 88919|0.5 88920|0.44444 88921|0.51389 88922|0.55556 88923|0.58333 88924|0.70833 88925|0.65278 88926|0.61111 88927|0.61111 88928|0.58333 88929|0.63889 88930|0.68056 88931|0.51389 88932|0.625 88933|0.5 88934|0.5 88935|0.48611 88936|0.55556 88937|0.5 88938|0.52778 88939|0.72222 88940|0.47222 88941|0.5 88942|0.5 88943|0.47222 88944|0.5 88945|0.43056 88946|0.61111 88947|0.5 88948|0.5 88949|0.54167 88950|0.5 88951|0.59722 88952|0.5 88953|0.45833 88954|0.55556 88955|0.51389 88956|0.66667 88957|0.81944 88958|0.5 88959|0.5 88960|0.63889 88961|0.625 88962|0.44444 88963|0.73611 88964|0.80556 88965|0.94444 88966|0.90278 88967|0.88889 88968|0.77778 88969|0.83333 88970|0.94444 88971|0.875 88972|0.84722 88973|0.625 88974|0.41667 88975|0.65278 88976|0.80556 88977|0.5 88978|0.5 88979|0.45833 88980|0.51389 88981|0.5 88982|0.5 88983|0.61111 88984|0.47222 88985|0.69444 88986|0.5 88987|0.33333 88988|0.48611 88989|0.51389 88990|0.66667 88991|0.40278 88992|0.56944 88993|0.44444 88994|0.47222 88995|0.44444 88996|0.5 88997|0.48611 88998|0.38889 88999|0.70833 89000|0.5 89001|0.5 89002|0.59722 89003|0.52778 89004|0.51389 89005|0.58333 89006|0.5 89007|0.81944 89008|0.69444 89009|0.97222 89010|0.90278 89011|0.5 89012|0.5 89013|0.68056 89014|0.5 89015|0.58333 89016|0.875 89017|0.69444 89018|0.43056 89019|0.55556 89020|0.625 89021|0.55556 89022|0.72222 89023|0.59722 89024|0.97222 89025|0.36111 89026|0.66667 89027|0.59722 89028|0.93056 89029|0.5 89030|0.61111 89031|0.51389 89032|0.875 89033|0.63889 89034|0.69444 89035|0.61111 89036|0.55556 89037|0.5 89038|0.40278 89039|0.5 89040|0.61111 89041|0.5 89042|0.76389 89043|0.58333 89044|0.51389 89045|0.52778 89046|0.58333 89047|0.77778 89048|0.61111 89049|0.66667 89050|0.83333 89051|0.90278 89052|0.83333 89053|0.34722 89054|0.81944 89055|0.76389 89056|0.44444 89057|0.61111 89058|0.90278 89059|0.54167 89060|0.5 89061|0.29167 89062|0.59722 89063|0.80556 89064|0.38889 89065|0.47222 89066|0.81944 89067|0.5 89068|0.51389 89069|0.68056 89070|0.52778 89071|0.44444 89072|0.51389 89073|0.72222 89074|0.81944 89075|0.81944 89076|0.5 89077|0.5 89078|0.25 89079|0.83333 89080|0.5 89081|0.52778 89082|0.61111 89083|0.63889 89084|0.51389 89085|0.5 89086|0.5 89087|0.56944 89088|0.47222 89089|0.88889 89090|0.58333 89091|0.5 89092|0.77778 89093|0.61111 89094|0.38889 89095|0.5 89096|0.90278 89097|0.77778 89098|0.5 89099|0.44444 89100|0.5 89101|0.83333 89102|0.61111 89103|0.38889 89104|0.81944 89105|0.48611 89106|0.77778 89107|0.48611 89108|0.48611 89109|0.47222 89110|0.44444 89111|0.44444 89112|0.66667 89113|0.5 89114|0.5 89115|0.44444 89116|0.72222 89117|0.88889 89118|0.5 89119|0.63889 89120|0.5 89121|0.58333 89122|0.47222 89123|0.47222 89124|0.44444 89125|0.5 89126|0.54167 89127|0.55556 89128|0.31944 89129|0.5 89130|0.31944 89131|0.5 89132|0.5 89133|0.5 89134|0.5 89135|0.625 89136|0.5 89137|0.77778 89138|0.47222 89139|0.33333 89140|0.58333 89141|0.55556 89142|0.38889 89143|0.51389 89144|0.5 89145|0.76389 89146|0.61111 89147|0.52778 89148|0.58333 89149|0.75 89150|0.29167 89151|0.5 89152|0.5 89153|0.5 89154|0.81944 89155|0.77778 89156|0.68056 89157|0.56944 89158|0.5 89159|0.5 89160|0.56944 89161|0.76389 89162|0.65278 89163|0.5 89164|0.61111 89165|0.56944 89166|0.52778 89167|0.54167 89168|0.68056 89169|0.48611 89170|0.48611 89171|0.5 89172|0.52778 89173|0.48611 89174|0.52778 89175|0.58333 89176|0.54167 89177|0.48611 89178|0.33333 89179|0.47222 89180|0.36111 89181|0.44444 89182|0.70833 89183|0.52778 89184|0.63889 89185|0.5 89186|0.54167 89187|0.5 89188|0.59722 89189|0.61111 89190|0.44444 89191|0.34722 89192|0.83333 89193|0.72222 89194|0.65278 89195|0.5 89196|0.5 89197|0.19444 89198|0.48611 89199|0.51389 89200|0.86111 89201|0.16667 89202|0.5 89203|0.625 89204|0.70833 89205|0.45833 89206|0.5 89207|0.5 89208|0.80556 89209|0.65278 89210|0.5 89211|0.31944 89212|0.54167 89213|0.45833 89214|0.5 89215|0.625 89216|0.625 89217|0.5 89218|0.58333 89219|0.5 89220|0.63889 89221|0.56944 89222|0.5 89223|0.52778 89224|0.5 89225|0.47222 89226|0.5 89227|0.5 89228|0.36111 89229|0.65278 89230|0.5 89231|0.61111 89232|0.44444 89233|0.54167 89234|0.51389 89235|0.48611 89236|0.63889 89237|0.61111 89238|0.30556 89239|0.16667 89240|0.79167 89241|0.88889 89242|0.625 89243|0.41667 89244|0.5 89245|0.56944 89246|0.51389 89247|0.61111 89248|0.5 89249|0.72222 89250|0.58333 89251|0.47222 89252|0.45833 89253|0.66667 89254|0.56944 89255|0.77778 89256|0.69444 89257|0.73611 89258|0.73611 89259|0.83333 89260|0.63889 89261|0.51389 89262|0.83333 89263|0.83333 89264|0.59722 89265|0.5 89266|0.52778 89267|0.66667 89268|0.79167 89269|0.84722 89270|0.77778 89271|0.73611 89272|0.63889 89273|0.66667 89274|0.76389 89275|0.52778 89276|0.54167 89277|0.76389 89278|0.66667 89279|0.79167 89280|0.77778 89281|0.5 89282|0.5 89283|0.5 89284|0.52778 89285|0.5 89286|0.33333 89287|0.68056 89288|0.59722 89289|0.63889 89290|0.76389 89291|0.84722 89292|0.68056 89293|0.79167 89294|0.69444 89295|0.51389 89296|0.79167 89297|0.51389 89298|0.43056 89299|0.54167 89300|0.76389 89301|0.68056 89302|0.61111 89303|0.68056 89304|0.61111 89305|0.61111 89306|0.66667 89307|0.77778 89308|0.68056 89309|0.72222 89310|0.79167 89311|0.40278 89312|0.51389 89313|0.5 89314|0.5 89315|0.73611 89316|0.5 89317|0.5 89318|0.5 89319|0.44444 89320|0.36111 89321|0.41667 89322|0.36111 89323|0.5 89324|0.5 89325|0.5 89326|0.51389 89327|0.5 89328|0.44444 89329|0.625 89330|0.52778 89331|0.56944 89332|0.72222 89333|0.69444 89334|0.56944 89335|0.72222 89336|0.38889 89337|0.54167 89338|0.5 89339|0.65278 89340|0.5 89341|0.47222 89342|0.44444 89343|0.38889 89344|0.33333 89345|0.44444 89346|0.54167 89347|0.5 89348|0.69444 89349|0.59722 89350|0.48611 89351|0.61111 89352|0.5 89353|0.79167 89354|0.5 89355|0.54167 89356|0.5 89357|0.5 89358|0.5 89359|0.5 89360|0.80556 89361|0.56944 89362|0.625 89363|0.58333 89364|0.5 89365|0.45833 89366|0.55556 89367|0.88889 89368|0.58333 89369|0.55556 89370|0.52778 89371|0.5 89372|0.54167 89373|0.48611 89374|0.44444 89375|0.75 89376|0.66667 89377|0.51389 89378|0.61111 89379|0.40278 89380|0.5 89381|0.5 89382|0.5 89383|0.5 89384|0.48611 89385|0.5 89386|0.5 89387|0.5 89388|0.55556 89389|0.76389 89390|0.47222 89391|0.5 89392|0.59722 89393|0.61111 89394|0.5 89395|0.5 89396|0.88889 89397|0.5 89398|0.59722 89399|0.52778 89400|0.80556 89401|0.52778 89402|0.52778 89403|0.48611 89404|0.56944 89405|0.44444 89406|0.45833 89407|0.45833 89408|0.5 89409|0.5 89410|0.5 89411|0.44444 89412|0.625 89413|0.26389 89414|0.36111 89415|0.72222 89416|0.47222 89417|0.5 89418|0.55556 89419|0.625 89420|0.5 89421|0.77778 89422|0.41667 89423|0.56944 89424|0.58333 89425|0.5 89426|0.56944 89427|0.48611 89428|0.51389 89429|0.5 89430|0.66667 89431|0.45833 89432|0.5 89433|0.66667 89434|0.51389 89435|0.56944 89436|0.55556 89437|0.56944 89438|0.54167 89439|0.75 89440|0.5 89441|0.59722 89442|0.45833 89443|0.44444 89444|0.45833 89445|0.55556 89446|0.5 89447|0.34722 89448|0.36111 89449|0.63889 89450|0.61111 89451|0.54167 89452|0.5 89453|0.5 89454|0.48611 89455|0.5 89456|0.5 89457|0.47222 89458|0.55556 89459|0.38889 89460|0.44444 89461|0.5 89462|0.44444 89463|0.5 89464|0.61111 89465|0.66667 89466|0.5 89467|0.55556 89468|0.65278 89469|0.58333 89470|0.51389 89471|0.625 89472|0.55556 89473|0.875 89474|0.5 89475|0.5 89476|0.51389 89477|0.44444 89478|0.47222 89479|0.51389 89480|0.55556 89481|0.61111 89482|0.56944 89483|0.5 89484|0.5 89485|0.58333 89486|0.5 89487|0.5 89488|0.44444 89489|0.59722 89490|0.63889 89491|0.55556 89492|0.5 89493|0.69444 89494|0.61111 89495|0.40278 89496|0.59722 89497|0.55556 89498|0.5 89499|0.55556 89500|0.56944 89501|0.47222 89502|0.55556 89503|0.83333 89504|0.59722 89505|0.5 89506|0.5 89507|0.80556 89508|0.5 89509|0.66667 89510|0.61111 89511|0.5 89512|0.43056 89513|0.5 89514|0.40278 89515|0.55556 89516|0.5 89517|0.5 89518|0.44444 89519|0.73611 89520|0.5 89521|0.5 89522|0.5 89523|0.5 89524|0.59722 89525|0.5 89526|0.75 89527|0.80556 89528|0.61111 89529|0.55556 89530|0.5 89531|0.56944 89532|0.625 89533|0.58333 89534|0.66667 89535|0.66667 89536|0.73611 89537|0.63889 89538|0.5 89539|0.69444 89540|0.56944 89541|0.5 89542|0.58333 89543|0.5 89544|0.55556 89545|0.88889 89546|0.76389 89547|0.5 89548|0.5 89549|0.79167 89550|0.61111 89551|0.56944 89552|0.83333 89553|0.66667 89554|0.40278 89555|0.51389 89556|0.54167 89557|0.56944 89558|0.5 89559|0.48611 89560|0.5 89561|0.77778 89562|0.54167 89563|0.5 89564|0.55556 89565|0.5 89566|0.5 89567|0.63889 89568|0.80556 89569|0.5 89570|0.5 89571|0.5 89572|0.5 89573|0.51389 89574|0.58333 89575|0.54167 89576|0.625 89577|0.5 89578|0.48611 89579|0.5 89580|0.30556 89581|0.51389 89582|0.5 89583|0.48611 89584|0.51389 89585|0.61111 89586|0.45833 89587|0.5 89588|0.83333 89589|0.83333 89590|0.79167 89591|0.86111 89592|0.875 89593|0.66667 89594|0.75 89595|0.72222 89596|0.75 89597|0.72222 89598|0.44444 89599|0.91667 89600|0.91667 89601|0.93056 89602|0.94444 89603|0.79167 89604|1 89605|0.76389 89606|0.70833 89607|1 89608|0.97222 89609|0.94444 89610|0.77778 89611|0.83333 89612|0.72222 89613|0.75 89614|0.80556 89615|0.76389 89616|0.375 89617|0.88889 89618|0.22222 89619|0.91667 89620|0.79167 89621|0.625 89622|0.91667 89623|0.47222 89624|0.86111 89625|0.83333 89626|0.79167 89627|0.44444 89628|0.65278 89629|0.5 89630|0.5 89631|0.45833 89632|0.51389 89633|0.51389 89634|0.75 89635|0.5 89636|0.52778 89637|0.27778 89638|0.5 89639|0.52778 89640|0.5 89641|0.68056 89642|0.77778 89643|0.5 89644|0.55556 89645|0.75 89646|0.68056 89647|0.33333 89648|0.66667 89649|0.55556 89650|0.51389 89651|0.54167 89652|0.38889 89653|0.45833 89654|0.47222 89655|0.54167 89656|0.40278 89657|0.5 89658|0.76389 89659|0.5 89660|0.66667 89661|0.5 89662|0.5 89663|0.88889 89664|0.5 89665|0.5 89666|0.5 89667|0.59722 89668|0.47222 89669|0.73611 89670|0.72222 89671|0.45833 89672|0.38889 89673|0.51389 89674|0.43056 89675|0.59722 89676|0.625 89677|0.59722 89678|0.5 89679|0.5 89680|0.41667 89681|0.5 89682|0.47222 89683|0.44444 89684|0.36111 89685|0.45833 89686|0.5 89687|0.69444 89688|0.26389 89689|0.40278 89690|0.73611 89691|0.94444 89692|0.34722 89693|0.41667 89694|0.48611 89695|0.30556 89696|0.56944 89697|0.84722 89698|0.48611 89699|0.55556 89700|0.5 89701|0.75 89702|0.59722 89703|0.51389 89704|0.54167 89705|0.5 89706|0.69444 89707|0.80556 89708|0.52778 89709|0.5 89710|0.59722 89711|0.5 89712|0.58333 89713|0.56944 89714|0.625 89715|0.625 89716|0.58333 89717|0.54167 89718|0.52778 89719|0.5 89720|0.5 89721|0.63889 89722|0.63889 89723|0.5 89724|0.5 89725|0.66667 89726|0.58333 89727|0.77778 89728|0.5 89729|0.26389 89730|0.5 89731|0.52778 89732|0.66667 89733|0.5 89734|0.40278 89735|0.44444 89736|0.51389 89737|0.5 89738|0.56944 89739|0.55556 89740|0.45833 89741|0.58333 89742|0.44444 89743|0.5 89744|0.5 89745|0.51389 89746|0.65278 89747|0.51389 89748|0.5 89749|0.5 89750|0.31944 89751|0.5 89752|0.44444 89753|0.54167 89754|0.5 89755|0.5 89756|0.55556 89757|0.5 89758|0.5 89759|0.55556 89760|0.66667 89761|0.69444 89762|0.5 89763|0.83333 89764|0.66667 89765|0.83333 89766|0.40278 89767|0.40278 89768|0.5 89769|0.5 89770|0.51389 89771|0.5 89772|0.5 89773|0.5 89774|0.29167 89775|0.56944 89776|0.41667 89777|0.55556 89778|0.52778 89779|0.70833 89780|0.77778 89781|0.5 89782|0.31944 89783|0.68056 89784|0.5 89785|0.72222 89786|0.5 89787|0.43056 89788|0.58333 89789|0.44444 89790|0.5 89791|0.72222 89792|0.5 89793|0.59722 89794|0.18056 89795|0.40278 89796|0.31944 89797|0.25 89798|0.083333 89799|0.34722 89800|0.63889 89801|0.65278 89802|0.52778 89803|0.48611 89804|0.61111 89805|0.68056 89806|0.68056 89807|0.72222 89808|0.55556 89809|0.54167 89810|0.48611 89811|0.44444 89812|0.47222 89813|0.44444 89814|0.5 89815|0.5 89816|0.66667 89817|0.30556 89818|0.38889 89819|0.52778 89820|0.5 89821|0.43056 89822|0.38889 89823|0.51389 89824|0.72222 89825|0.69444 89826|0.58333 89827|0.48611 89828|0.5 89829|0.5 89830|0.5 89831|0.61111 89832|0.45833 89833|0.5 89834|0.40278 89835|0.5 89836|0.40278 89837|0.47222 89838|0.54167 89839|0.5 89840|0.5 89841|0.5 89842|0.75 89843|0.61111 89844|0.86111 89845|0.5 89846|0.44444 89847|0.5 89848|0.5 89849|0.5 89850|0.5 89851|0.33333 89852|0.48611 89853|0.51389 89854|0.41667 89855|0.25 89856|0.61111 89857|0.41667 89858|0.5 89859|0.59722 89860|0.72222 89861|0.72222 89862|0.5 89863|0.48611 89864|0.5 89865|0.52778 89866|0.5 89867|0.75 89868|0.51389 89869|0.40278 89870|0.61111 89871|0.51389 89872|0.69444 89873|0.51389 89874|0.54167 89875|0.5 89876|0.44444 89877|0.55556 89878|0.61111 89879|0.68056 89880|0.5 89881|0.38889 89882|0.58333 89883|0.5 89884|0.54167 89885|0.47222 89886|0.97222 89887|0.83333 89888|0.88889 89889|0.55556 89890|0.44444 89891|0.5 89892|0.45833 89893|0.51389 89894|0.44444 89895|0.40278 89896|0.75 89897|0.47222 89898|0.66667 89899|0.5 89900|0.625 89901|0.56944 89902|0.47222 89903|0.41667 89904|0.45833 89905|0.43056 89906|0.27778 89907|0.38889 89908|0.5 89909|0.5 89910|0.5 89911|0.5 89912|0.5 89913|0.68056 89914|0.61111 89915|0.59722 89916|0.59722 89917|0.5 89918|0.5 89919|0.61111 89920|0.72222 89921|0.51389 89922|0.26389 89923|0.56944 89924|0.72222 89925|0.38889 89926|0.36111 89927|0.61111 89928|0.81944 89929|0.84722 89930|0.47222 89931|0.44444 89932|0.33333 89933|0.26389 89934|0.27778 89935|0.26389 89936|0.375 89937|0.55556 89938|0.43056 89939|0.68056 89940|0.5 89941|0.5 89942|0.38889 89943|0.25 89944|0.33333 89945|0.38889 89946|0.44444 89947|0.45833 89948|0.5 89949|0.44444 89950|0.5 89951|0.55556 89952|0.55556 89953|0.31944 89954|0.26389 89955|0.41667 89956|0.5 89957|0.5 89958|0.41667 89959|0.33333 89960|0.5 89961|0.44444 89962|0.33333 89963|0.68056 89964|0.47222 89965|0.66667 89966|0.5 89967|0.51389 89968|0.52778 89969|0.68056 89970|0.5 89971|0.59722 89972|0.77778 89973|0.55556 89974|0.38889 89975|0.5 89976|0.44444 89977|0.5 89978|0.36111 89979|0.5 89980|0.58333 89981|0.5 89982|0.27778 89983|0.55556 89984|0.5 89985|0.5 89986|0.125 89987|0.5 89988|0.5 89989|0.5 89990|0.52778 89991|0.47222 89992|0.56944 89993|0.5 89994|0.59722 89995|0.79167 89996|0.72222 89997|0.54167 89998|0.86111 89999|0.80556 90000|0.80556 90001|0.84722 90002|0.63889 90003|0.5 90004|0.56944 90005|0.5 90006|0.38889 90007|0.48611 90008|0.36111 90009|0.52778 90010|0.55556 90011|0.47222 90012|0.40278 90013|0.375 90014|0.70833 90015|0.34722 90016|0.29167 90017|0.65278 90018|0.48611 90019|0.19444 90020|0.5 90021|0.48611 90022|0.66667 90023|0.58333 90024|0.55556 90025|0.55556 90026|0.77778 90027|0.54167 90028|0.51389 90029|0.54167 90030|0.61111 90031|0.51389 90032|0.44444 90033|0.59722 90034|0.375 90035|0.51389 90036|0.52778 90037|0.5 90038|0.59722 90039|0.5 90040|0.55556 90041|0.44444 90042|0.80556 90043|0.72222 90044|0.5 90045|0.65278 90046|0.58333 90047|0.5 90048|0.61111 90049|0.5 90050|0.48611 90051|0.51389 90052|0.5 90053|0.83333 90054|0.44444 90055|0.45833 90056|0.5 90057|0.5 90058|0.5 90059|0.63889 90060|0.73611 90061|0.625 90062|0.51389 90063|0.52778 90064|0.5 90065|0.5 90066|0.5 90067|0.76389 90068|0.55556 90069|0.5 90070|0.40278 90071|0.63889 90072|0.79167 90073|0.58333 90074|0.79167 90075|0.47222 90076|0.5 90077|0.56944 90078|0.5 90079|0.51389 90080|0.625 90081|0.5 90082|0.54167 90083|0.625 90084|0.43056 90085|0.44444 90086|0.73611 90087|0.31944 90088|0.59722 90089|0.75 90090|0.59722 90091|0.52778 90092|0.5 90093|0.5 90094|0.5 90095|0.5 90096|0.5 90097|0.5 90098|0.52778 90099|0.18056 90100|0.58333 90101|0.80556 90102|0.81944 90103|0.48611 90104|0.61111 90105|0.68056 90106|0.33333 90107|0.63889 90108|0.5 90109|0.44444 90110|0.5 90111|0.5 90112|0.5 90113|0.45833 90114|0.61111 90115|0.5 90116|0.52778 90117|0.41667 90118|0.51389 90119|0.43056 90120|0.43056 90121|0.5 90122|0.77778 90123|0.66667 90124|0.43056 90125|0.36111 90126|0.58333 90127|0.5 90128|0.75 90129|0.72222 90130|0.63889 90131|0.48611 90132|0.5 90133|0.27778 90134|0.59722 90135|0.5 90136|0.61111 90137|0.58333 90138|0.625 90139|0.66667 90140|0.625 90141|0.63889 90142|0.5 90143|0.5 90144|0.5 90145|0.77778 90146|0.47222 90147|0.5 90148|0.5 90149|0.52778 90150|0.66667 90151|0.5 90152|0.5 90153|0.5 90154|0.5 90155|0.63889 90156|0.69444 90157|0.68056 90158|0.68056 90159|0.59722 90160|0.59722 90161|0.55556 90162|0.5 90163|0.68056 90164|0.5 90165|0.44444 90166|0.5 90167|0.48611 90168|0.54167 90169|0.38889 90170|0.61111 90171|0.63889 90172|0.40278 90173|0.5 90174|0.33333 90175|0.29167 90176|0.11111 90177|0.51389 90178|0.63889 90179|0.81944 90180|0.58333 90181|0.59722 90182|0.5 90183|0.5 90184|0.79167 90185|0.88889 90186|0.75 90187|0.61111 90188|0.625 90189|0.625 90190|0.63889 90191|0.83333 90192|0.84722 90193|0.98611 90194|0.88889 90195|0.75 90196|0.83333 90197|0.69444 90198|0.83333 90199|0.63889 90200|0.66667 90201|0.77778 90202|0.72222 90203|0.66667 90204|0.72222 90205|0.68056 90206|0.65278 90207|0.79167 90208|0.81944 90209|0.58333 90210|0.40278 90211|0.48611 90212|0.51389 90213|0.55556 90214|0.77778 90215|0.48611 90216|0.5 90217|0.58333 90218|0.55556 90219|0.44444 90220|0.58333 90221|0.52778 90222|0.5 90223|0.72222 90224|0.44444 90225|0.54167 90226|0.55556 90227|0.5 90228|0.27778 90229|0.47222 90230|0.51389 90231|0.5 90232|0.65278 90233|0.59722 90234|0.84722 90235|0.61111 90236|0.51389 90237|0.5 90238|0.47222 90239|0.36111 90240|0.84722 90241|0.55556 90242|0.44444 90243|0.51389 90244|0.59722 90245|0.5 90246|0.79167 90247|0.55556 90248|0.54167 90249|0.55556 90250|0.72222 90251|0.5 90252|0.5 90253|0.52778 90254|0.44444 90255|0.25 90256|0.51389 90257|0.76389 90258|0.83333 90259|0.72222 90260|0.41667 90261|0.48611 90262|0.70833 90263|0.70833 90264|0.75 90265|0.5 90266|0.77778 90267|0.5 90268|0.47222 90269|0.48611 90270|0.63889 90271|0.58333 90272|0.625 90273|0.44444 90274|0.44444 90275|0.5 90276|0.625 90277|0.34722 90278|0.5 90279|0.5 90280|0.80556 90281|0.55556 90282|0.66667 90283|0.72222 90284|0.55556 90285|0.77778 90286|0.94444 90287|0.5 90288|0.65278 90289|0.65278 90290|0.55556 90291|0.5 90292|0.5 90293|0.5 90294|0.5 90295|0.5 90296|0.58333 90297|0.625 90298|0.61111 90299|0.54167 90300|0.70833 90301|0.65278 90302|0.52778 90303|0.40278 90304|0.30556 90305|0.5 90306|0.5 90307|0.75 90308|0.52778 90309|0.52778 90310|0.18056 90311|0.38889 90312|0.66667 90313|0.66667 90314|0.88889 90315|0.51389 90316|0.38889 90317|0.36111 90318|0.56944 90319|0.41667 90320|0.54167 90321|0.5 90322|0.59722 90323|0.77778 90324|0.44444 90325|0.41667 90326|0.5 90327|0.625 90328|0.43056 90329|0.44444 90330|0.44444 90331|0.45833 90332|0.65278 90333|0.11111 90334|0.55556 90335|0.40278 90336|0.36111 90337|0.5 90338|0.48611 90339|0.5 90340|0.625 90341|0.55556 90342|0.65278 90343|0.45833 90344|0.5 90345|0.83333 90346|0.45833 90347|0.72222 90348|0.88889 90349|0.83333 90350|0.5 90351|0.47222 90352|0.58333 90353|0.66667 90354|0.65278 90355|0.81944 90356|0.55556 90357|0.66667 90358|0.72222 90359|0.68056 90360|0.68056 90361|0.69444 90362|0.70833 90363|0.58333 90364|0.48611 90365|0.68056 90366|0.65278 90367|0.73611 90368|0.5 90369|0.73611 90370|0.43056 90371|0.83333 90372|0.5 90373|0.52778 90374|0.80556 90375|0.61111 90376|0.58333 90377|0.61111 90378|0.30556 90379|0.63889 90380|0.63889 90381|0.33333 90382|0.61111 90383|0.65278 90384|0.63889 90385|0.65278 90386|0.72222 90387|0.69444 90388|0.75 90389|0.69444 90390|0.69444 90391|0.76389 90392|0.625 90393|0.5 90394|0.52778 90395|0.5 90396|0.79167 90397|0.77778 90398|0.72222 90399|0.75 90400|0.81944 90401|0.77778 90402|0.72222 90403|0.81944 90404|0.56944 90405|0.31944 90406|0.875 90407|0.69444 90408|0.84722 90409|0.55556 90410|0.76389 90411|0.86111 90412|0.75 90413|0.5 90414|0.45833 90415|0.36111 90416|0.44444 90417|0.5 90418|0.31944 90419|0.40278 90420|0.41667 90421|0.5 90422|0.25 90423|0.16667 90424|0.5 90425|0.5 90426|0.5 90427|0.68056 90428|0.625 90429|0.73611 90430|0.51389 90431|0.52778 90432|0.5 90433|0.61111 90434|0.69444 90435|0.54167 90436|0.68056 90437|0.79167 90438|0.66667 90439|0.72222 90440|0.76389 90441|0.44444 90442|0.5 90443|0.61111 90444|0.63889 90445|0.81944 90446|0.68056 90447|0.61111 90448|0.58333 90449|0.56944 90450|0.54167 90451|0.5 90452|0.84722 90453|0.94444 90454|0.5 90455|0.5 90456|0.45833 90457|0.5 90458|0.41667 90459|0.5 90460|0.45833 90461|0.5 90462|0.41667 90463|0.40278 90464|0.48611 90465|0.5 90466|0.44444 90467|0.52778 90468|0.5 90469|0.66667 90470|0.47222 90471|0.72222 90472|0.5 90473|0.47222 90474|0.66667 90475|0.5 90476|0.43056 90477|0.48611 90478|0.47222 90479|0.34722 90480|0.41667 90481|0.54167 90482|0.61111 90483|0.51389 90484|0.58333 90485|0.38889 90486|0.38889 90487|0.47222 90488|0.5 90489|0.5 90490|0.5 90491|0.51389 90492|0.52778 90493|0.5 90494|0.33333 90495|0.68056 90496|0.45833 90497|0.63889 90498|0.58333 90499|0.52778 90500|0.5 90501|0.18056 90502|0.5 90503|0.55556 90504|0.875 90505|0.5 90506|0.55556 90507|0.5 90508|0.5 90509|0.625 90510|0.5 90511|0.5 90512|0.44444 90513|0.5 90514|0.375 90515|0.5 90516|0.5 90517|0.55556 90518|0.70833 90519|0.5 90520|0.69444 90521|0.70833 90522|0.70833 90523|0.72222 90524|0.66667 90525|0.43056 90526|0.51389 90527|0.47222 90528|0.43056 90529|0.83333 90530|0.61111 90531|0.5 90532|0.88889 90533|0.88889 90534|0.5 90535|0.5 90536|0.5 90537|0.48611 90538|0.52778 90539|0.52778 90540|0.45833 90541|0.59722 90542|0.72222 90543|0.65278 90544|0.5 90545|0.625 90546|0.63889 90547|0.68056 90548|0.19444 90549|0.34722 90550|0.5 90551|0.52778 90552|0.38889 90553|0.5 90554|0.43056 90555|0.33333 90556|0.56944 90557|0.63889 90558|0.79167 90559|0.84722 90560|0.86111 90561|0.83333 90562|0.88889 90563|0.84722 90564|0.77778 90565|0.77778 90566|0.94444 90567|0.80556 90568|0.80556 90569|0.69444 90570|0.625 90571|0.61111 90572|0.83333 90573|0.54167 90574|0.55556 90575|0.81944 90576|0.80556 90577|0.55556 90578|0.55556 90579|0.5 90580|0.5 90581|0.5 90582|0.66667 90583|0.51389 90584|0.5 90585|0.51389 90586|0.44444 90587|0.33333 90588|0.30556 90589|0.41667 90590|0.5 90591|0.51389 90592|0.26389 90593|0.33333 90594|0.52778 90595|0.5 90596|0.5 90597|0.56944 90598|0.55556 90599|0.375 90600|0.72222 90601|0.44444 90602|0.83333 90603|0.48611 90604|0.34722 90605|0.47222 90606|0.45833 90607|0.36111 90608|0.52778 90609|0.72222 90610|0.63889 90611|0.30556 90612|0.70833 90613|0.30556 90614|0.51389 90615|0.5 90616|0.5 90617|0.875 90618|0.5 90619|0.79167 90620|0.66667 90621|0.66667 90622|0.83333 90623|0.63889 90624|0.5 90625|0.5 90626|0.5 90627|0.61111 90628|0.70833 90629|0.86111 90630|0.88889 90631|0.81944 90632|0.61111 90633|0.63889 90634|0.66667 90635|0.5 90636|0.5 90637|0.47222 90638|0.38889 90639|0.45833 90640|0.44444 90641|0.51389 90642|0.83333 90643|0.43056 90644|0.34722 90645|0.66667 90646|0.79167 90647|0.72222 90648|0.65278 90649|0.72222 90650|0.41667 90651|0.68056 90652|0.77778 90653|0.59722 90654|0.41667 90655|0.51389 90656|0.44444 90657|0.68056 90658|0.69444 90659|0.27778 90660|0.5 90661|0.61111 90662|0.44444 90663|0.41667 90664|0.44444 90665|0.61111 90666|0.55556 90667|0.5 90668|0.45833 90669|0.5 90670|0.5 90671|0.56944 90672|0.52778 90673|0.48611 90674|0.58333 90675|0.61111 90676|0.5 90677|0.59722 90678|0.69444 90679|0.5 90680|0.48611 90681|0.5 90682|0.38889 90683|0.86111 90684|0.72222 90685|0.56944 90686|0.51389 90687|0.5 90688|0.5 90689|0.5 90690|0.875 90691|0.91667 90692|0.55556 90693|0.30556 90694|0.40278 90695|0.55556 90696|0.52778 90697|0.61111 90698|0.25 90699|0.375 90700|0.5 90701|0.5 90702|0.54167 90703|0.54167 90704|0.65278 90705|0.51389 90706|0.5 90707|0.52778 90708|0.5 90709|0.55556 90710|0.43056 90711|0.75 90712|0.5 90713|0.5 90714|0.59722 90715|0.5 90716|0.5 90717|0.68056 90718|0.61111 90719|0.59722 90720|0.5 90721|0.61111 90722|0.56944 90723|0.83333 90724|0.48611 90725|0.51389 90726|0.5 90727|0.63889 90728|0.66667 90729|0.80556 90730|0.72222 90731|0.81944 90732|0.58333 90733|0.33333 90734|0.93056 90735|0.54167 90736|0.59722 90737|0.5 90738|0.75 90739|0.73611 90740|0.70833 90741|0.68056 90742|0.41667 90743|0.45833 90744|0.5 90745|0.43056 90746|0.45833 90747|0.5 90748|0.51389 90749|0.55556 90750|0.58333 90751|0.79167 90752|0.84722 90753|0.65278 90754|0.5 90755|0.83333 90756|0.51389 90757|0.58333 90758|0.5 90759|0.51389 90760|0.70833 90761|0.70833 90762|0.83333 90763|0.5 90764|0.65278 90765|0.48611 90766|0.44444 90767|0.5 90768|0.51389 90769|0.56944 90770|0.56944 90771|0.5 90772|0.5 90773|0.56944 90774|0.55556 90775|0.5 90776|0.5 90777|0.45833 90778|0.66667 90779|0.5 90780|0.45833 90781|0.79167 90782|0.5 90783|0.79167 90784|0.875 90785|0.72222 90786|0.81944 90787|0.70833 90788|0.75 90789|0.625 90790|0.56944 90791|0.79167 90792|0.81944 90793|0.84722 90794|0.84722 90795|0.65278 90796|0.59722 90797|0.75 90798|0.77778 90799|0.79167 90800|0.86111 90801|0.77778 90802|0.72222 90803|0.36111 90804|0.77778 90805|0.66667 90806|0.75 90807|0.72222 90808|0.70833 90809|0.55556 90810|0.59722 90811|0.55556 90812|0.70833 90813|0.69444 90814|0.77778 90815|0.72222 90816|0.83333 90817|0.80556 90818|0.51389 90819|0.41667 90820|0.43056 90821|0.73611 90822|0.68056 90823|0.68056 90824|0.33333 90825|0.76389 90826|0.73611 90827|0.47222 90828|0.58333 90829|0.77778 90830|0.55556 90831|0.68056 90832|0.81944 90833|0.65278 90834|0.56944 90835|0.48611 90836|0.45833 90837|0.44444 90838|0.55556 90839|0.58333 90840|0.40278 90841|0.45833 90842|0.54167 90843|0.43056 90844|0.61111 90845|0.55556 90846|0.52778 90847|0.55556 90848|0.44444 90849|0.58333 90850|0.30556 90851|0.44444 90852|0.40278 90853|0.5 90854|0.55556 90855|0.5 90856|0.48611 90857|0.5 90858|0.5 90859|0.31944 90860|0.38889 90861|0.5 90862|0.56944 90863|0.5 90864|0.55556 90865|0.80556 90866|0.59722 90867|0.51389 90868|0.66667 90869|0.44444 90870|0.55556 90871|0.5 90872|0.55556 90873|0.56944 90874|0.52778 90875|0.625 90876|0.61111 90877|0.70833 90878|0.5 90879|0.41667 90880|0.66667 90881|0.72222 90882|0.38889 90883|0.27778 90884|0.33333 90885|0.52778 90886|0.5 90887|0.29167 90888|0.625 90889|0.48611 90890|0.47222 90891|0.375 90892|0.44444 90893|0.65278 90894|0.5 90895|0.38889 90896|0.56944 90897|0.69444 90898|0.44444 90899|0.125 90900|0.65278 90901|0.59722 90902|0.47222 90903|0.38889 90904|0.55556 90905|0.83333 90906|0.65278 90907|0.88889 90908|0.69444 90909|0.61111 90910|0.65278 90911|0.54167 90912|0.79167 90913|0.69444 90914|0.77778 90915|0.80556 90916|0.65278 90917|0.26389 90918|0.56944 90919|0.55556 90920|0.48611 90921|0.5 90922|0.5 90923|0.69444 90924|0.59722 90925|0.61111 90926|0.56944 90927|0.59722 90928|0.5 90929|0.70833 90930|0.69444 90931|0.77778 90932|0.22222 90933|0.45833 90934|0.36111 90935|0.33333 90936|0.56944 90937|0.5 90938|0.73611 90939|0.54167 90940|0.80556 90941|0.5 90942|0.55556 90943|0.56944 90944|0.86111 90945|0.73611 90946|0.52778 90947|0.23611 90948|0.83333 90949|0.66667 90950|0.55556 90951|0.56944 90952|0.5 90953|0.88889 90954|0.83333 90955|0.72222 90956|0.72222 90957|0.83333 90958|0.625 90959|0.38889 90960|0.25 90961|0.33333 90962|0.5 90963|0.59722 90964|0.63889 90965|0.61111 90966|0.73611 90967|0.38889 90968|0.5 90969|0.5 90970|0.5 90971|0.58333 90972|0.81944 90973|0.63889 90974|0.44444 90975|0.51389 90976|0.5 90977|0.59722 90978|0.5 90979|0.5 90980|0.59722 90981|0.59722 90982|0.58333 90983|0.52778 90984|0.5 90985|0.29167 90986|0.38889 90987|0.55556 90988|0.44444 90989|0.5 90990|0.69444 90991|0.76389 90992|0.72222 90993|0.65278 90994|0.88889 90995|0.65278 90996|0.65278 90997|0.44444 90998|0.69444 90999|0.72222 91000|0.38889 91001|0.5 91002|0.56944 91003|0.55556 91004|0.70833 91005|0.69444 91006|0.76389 91007|0.36111 91008|0.51389 91009|0.59722 91010|0.55556 91011|0.56944 91012|0.86111 91013|0.51389 91014|0.47222 91015|0.69444 91016|0.72222 91017|0.58333 91018|0.5 91019|0.72222 91020|0.75 91021|0.94444 91022|0.77778 91023|0.66667 91024|0.56944 91025|0.58333 91026|0.36111 91027|0.59722 91028|0.69444 91029|0.58333 91030|0.55556 91031|0.70833 91032|0.68056 91033|0.73611 91034|0.65278 91035|0.75 91036|0.56944 91037|0.51389 91038|0.51389 91039|0.66667 91040|0.77778 91041|0.80556 91042|0.77778 91043|0.43056 91044|0.5 91045|0.66667 91046|0.72222 91047|0.5 91048|0.51389 91049|0.5 91050|0.81944 91051|0.33333 91052|0.38889 91053|0.36111 91054|0.625 91055|0.79167 91056|0.55556 91057|0.86111 91058|0.86111 91059|0.44444 91060|0.38889 91061|0.45833 91062|0.48611 91063|0.5 91064|0.44444 91065|0.33333 91066|0.52778 91067|0.5 91068|0.55556 91069|0.63889 91070|0.77778 91071|0.93056 91072|0.5 91073|0.5 91074|0.73611 91075|0.80556 91076|0.48611 91077|0.47222 91078|0.94444 91079|0.59722 91080|0.52778 91081|0.55556 91082|0.51389 91083|0.48611 91084|0.5 91085|0.43056 91086|0.61111 91087|0.52778 91088|0.5 91089|0.72222 91090|0.83333 91091|0.58333 91092|0.59722 91093|0.69444 91094|0.77778 91095|0.66667 91096|0.56944 91097|0.65278 91098|0.72222 91099|0.63889 91100|0.81944 91101|0.61111 91102|0.98611 91103|0.45833 91104|0.54167 91105|0.56944 91106|0.5 91107|0.52778 91108|0.5 91109|0.83333 91110|0.5 91111|0.93056 91112|0.83333 91113|0.29167 91114|0.36111 91115|0.27778 91116|0.34722 91117|0.58333 91118|0.29167 91119|0.66667 91120|0.36111 91121|0.47222 91122|0.47222 91123|0.27778 91124|0.33333 91125|0.73611 91126|0.5 91127|0.55556 91128|0.34722 91129|0.44444 91130|0.5 91131|0.5 91132|0.5 91133|0.5 91134|0.61111 91135|0.80556 91136|0.29167 91137|0.33333 91138|0.79167 91139|0.81944 91140|0.54167 91141|0.625 91142|0.52778 91143|0.77778 91144|0.52778 91145|0.68056 91146|0.5 91147|0.61111 91148|0.58333 91149|0.5 91150|0.45833 91151|0.5 91152|0.66667 91153|0.51389 91154|0.375 91155|0.55556 91156|0.58333 91157|0.61111 91158|0.58333 91159|0.44444 91160|0.5 91161|0.38889 91162|0.68056 91163|0.72222 91164|0.5 91165|0.5 91166|0.73611 91167|0.44444 91168|0.66667 91169|0.54167 91170|0.55556 91171|0.44444 91172|0.61111 91173|0.5 91174|0.625 91175|0.91667 91176|0.58333 91177|0.625 91178|0.66667 91179|0.5 91180|0.625 91181|0.55556 91182|0.54167 91183|0.54167 91184|0.68056 91185|0.58333 91186|0.61111 91187|0.55556 91188|0.63889 91189|0.55556 91190|0.66667 91191|0.58333 91192|0.73611 91193|0.55556 91194|0.97222 91195|0.77778 91196|0.79167 91197|0.61111 91198|0.55556 91199|0.58333 91200|0.66667 91201|0.70833 91202|0.5 91203|0.68056 91204|0.77778 91205|0.5 91206|0.72222 91207|0.54167 91208|0.5 91209|0.61111 91210|0.5 91211|0.56944 91212|0.73611 91213|0.75 91214|0.73611 91215|0.875 91216|0.48611 91217|0.77778 91218|0.68056 91219|0.69444 91220|0.5 91221|0.51389 91222|0.68056 91223|0.51389 91224|0.54167 91225|0.61111 91226|0.76389 91227|0.45833 91228|1 91229|0.97222 91230|0.73611 91231|0.76389 91232|0.66667 91233|0.56944 91234|0.5 91235|0.80556 91236|0.80556 91237|0.66667 91238|0.875 91239|0.5 91240|0.5 91241|0.75 91242|0.75 91243|0.73611 91244|0.88889 91245|0.77778 91246|0.58333 91247|0.81944 91248|0.75 91249|0.69444 91250|0.59722 91251|0.5 91252|0.55556 91253|0.69444 91254|0.70833 91255|0.58333 91256|0.54167 91257|0.68056 91258|0.55556 91259|0.66667 91260|0.52778 91261|0.5 91262|0.5 91263|0.55556 91264|0.68056 91265|0.63889 91266|0.61111 91267|0.55556 91268|0.55556 91269|0.66667 91270|0.70833 91271|0.61111 91272|0.5 91273|0.5 91274|0.66667 91275|0.84722 91276|0.5 91277|0.55556 91278|0.38889 91279|0.52778 91280|0.5 91281|0.55556 91282|0.5 91283|0.5 91284|0.5 91285|0.5 91286|0.5 91287|0.54167 91288|0.5 91289|0.48611 91290|0.63889 91291|0.54167 91292|0.47222 91293|0.55556 91294|0.55556 91295|0.56944 91296|0.72222 91297|0.61111 91298|0.5 91299|0.54167 91300|0.68056 91301|0.72222 91302|0.76389 91303|0.72222 91304|0.83333 91305|0.72222 91306|0.75 91307|0.66667 91308|0.76389 91309|0.73611 91310|0.90278 91311|0.79167 91312|0.5 91313|0.375 91314|0.5 91315|0.56944 91316|0.5 91317|0.5 91318|0.54167 91319|0.5 91320|0.52778 91321|0.56944 91322|0.72222 91323|0.55556 91324|0.5 91325|0.61111 91326|0.5 91327|0.5 91328|0.5 91329|0.51389 91330|0.5 91331|0.5 91332|0.22222 91333|0.5 91334|0.44444 91335|0.44444 91336|0.59722 91337|0.625 91338|0.55556 91339|0.61111 91340|0.51389 91341|0.43056 91342|0.44444 91343|0.66667 91344|0.38889 91345|0.5 91346|0.5 91347|0.76389 91348|0.5 91349|0.84722 91350|0.70833 91351|0.73611 91352|0.61111 91353|0.72222 91354|0.48611 91355|0.69444 91356|0.73611 91357|0.80556 91358|0.94444 91359|0.79167 91360|0.72222 91361|0.88889 91362|0.77778 91363|0.77778 91364|0.875 91365|0.77778 91366|0.55556 91367|0.79167 91368|0.80556 91369|0.54167 91370|0.51389 91371|0.5 91372|0.65278 91373|0.5 91374|0.59722 91375|0.56944 91376|0.30556 91377|0.65278 91378|0.51389 91379|0.55556 91380|0.76389 91381|0.81944 91382|0.44444 91383|0.33333 91384|0.75 91385|0.52778 91386|0.5 91387|0.63889 91388|0.54167 91389|0.59722 91390|0.55556 91391|0.5 91392|0.63889 91393|0.52778 91394|0.55556 91395|0.58333 91396|0.55556 91397|0.51389 91398|0.66667 91399|0.61111 91400|0.59722 91401|0.56944 91402|0.54167 91403|0.5 91404|0.5 91405|0.625 91406|0.58333 91407|0.5 91408|0.38889 91409|0.44444 91410|0.5 91411|0.66667 91412|0.44444 91413|0.33333 91414|0.48611 91415|0.72222 91416|0.68056 91417|0.52778 91418|0.66667 91419|0.36111 91420|0.23611 91421|0.30556 91422|0.44444 91423|0.33333 91424|0.44444 91425|0.77778 91426|0.58333 91427|0.83333 91428|0.41667 91429|0.66667 91430|0.68056 91431|0.61111 91432|0.65278 91433|0.76389 91434|0.68056 91435|0.68056 91436|0.68056 91437|0.31944 91438|0.34722 91439|0.5 91440|0.34722 91441|0.75 91442|0.88889 91443|0.61111 91444|0.79167 91445|0.83333 91446|0.91667 91447|0.73611 91448|0.625 91449|0.79167 91450|0.81944 91451|0.88889 91452|0.61111 91453|0.70833 91454|0.83333 91455|0.76389 91456|0.86111 91457|0.61111 91458|0.73611 91459|0.79167 91460|0.51389 91461|0.66667 91462|0.81944 91463|0.86111 91464|0.77778 91465|0.75 91466|0.55556 91467|0.5 91468|0.56944 91469|0.5 91470|0.75 91471|0.54167 91472|0.69444 91473|0.76389 91474|0.84722 91475|0.5 91476|0.5 91477|0.55556 91478|0.5 91479|0.5 91480|0.52778 91481|0.65278 91482|0.65278 91483|0.66667 91484|0.5 91485|0.61111 91486|0.55556 91487|0.91667 91488|0.83333 91489|0.76389 91490|0.625 91491|0.5 91492|0.76389 91493|0.72222 91494|0.5 91495|0.5 91496|0.54167 91497|0.47222 91498|0.58333 91499|0.55556 91500|0.5 91501|0.58333 91502|0.63889 91503|0.79167 91504|0.51389 91505|0.36111 91506|0.66667 91507|0.58333 91508|0.63889 91509|0.5 91510|0.54167 91511|0.5 91512|0.58333 91513|0.79167 91514|0.625 91515|0.56944 91516|0.58333 91517|0.61111 91518|0.47222 91519|0.40278 91520|0.47222 91521|0.41667 91522|0.5 91523|0.58333 91524|0.51389 91525|0.5 91526|0.31944 91527|0.51389 91528|0.38889 91529|0.79167 91530|0.70833 91531|0.54167 91532|0.5 91533|0.63889 91534|0.27778 91535|0.51389 91536|0.59722 91537|0.52778 91538|0.66667 91539|0.5 91540|0.66667 91541|0.70833 91542|0.55556 91543|0.56944 91544|0.56944 91545|0.38889 91546|0.47222 91547|0.48611 91548|0.88889 91549|0.5 91550|0.56944 91551|0.77778 91552|0.45833 91553|0.63889 91554|0.59722 91555|0.77778 91556|0.63889 91557|0.5 91558|0.59722 91559|0.55556 91560|0.58333 91561|0.83333 91562|0.52778 91563|0.5 91564|0.59722 91565|0.52778 91566|0.5 91567|0.47222 91568|0.41667 91569|0.26389 91570|0.48611 91571|0.19444 91572|0.5 91573|0.55556 91574|0.5 91575|0.54167 91576|0.48611 91577|0.5 91578|0.5 91579|0.88889 91580|0.72222 91581|0.54167 91582|0.51389 91583|0.54167 91584|0.63889 91585|0.56944 91586|0.54167 91587|0.5 91588|0.5 91589|0.69444 91590|0.61111 91591|0.47222 91592|0.43056 91593|0.38889 91594|0.5 91595|0.56944 91596|0.84722 91597|0.68056 91598|0.63889 91599|0.88889 91600|0.68056 91601|0.83333 91602|0.80556 91603|0.97222 91604|0.5 91605|0.58333 91606|0.72222 91607|0.625 91608|0.41667 91609|0.59722 91610|0.61111 91611|0.66667 91612|0.65278 91613|0.70833 91614|0.58333 91615|0.61111 91616|0.84722 91617|0.69444 91618|0.90278 91619|0.83333 91620|0.61111 91621|0.68056 91622|0.58333 91623|0.55556 91624|0.44444 91625|0.47222 91626|0.51389 91627|0.51389 91628|0.625 91629|0.65278 91630|0.61111 91631|0.63889 91632|0.5 91633|0.69444 91634|0.81944 91635|0.77778 91636|0.5 91637|0.55556 91638|0.70833 91639|0.66667 91640|0.5 91641|0.61111 91642|0.76389 91643|0.59722 91644|0.72222 91645|0.47222 91646|0.5 91647|0.44444 91648|0.38889 91649|0.81944 91650|0.72222 91651|0.70833 91652|0.41667 91653|0.5 91654|0.72222 91655|0.54167 91656|0.52778 91657|0.72222 91658|0.72222 91659|0.93056 91660|0.75 91661|0.72222 91662|0.77778 91663|0.88889 91664|0.83333 91665|0.81944 91666|0.61111 91667|0.55556 91668|0.58333 91669|0.69444 91670|0.70833 91671|0.79167 91672|0.86111 91673|0.88889 91674|0.76389 91675|0.84722 91676|0.51389 91677|0.65278 91678|0.83333 91679|0.72222 91680|0.81944 91681|0.48611 91682|0.5 91683|0.5 91684|0.56944 91685|0.48611 91686|0.56944 91687|0.69444 91688|0.72222 91689|0.70833 91690|0.68056 91691|0.61111 91692|0.51389 91693|0.5 91694|0.69444 91695|0.68056 91696|0.61111 91697|0.5 91698|0.55556 91699|0.58333 91700|0.63889 91701|0.625 91702|0.51389 91703|0.59722 91704|0.51389 91705|0.66667 91706|0.56944 91707|0.65278 91708|0.54167 91709|0.56944 91710|0.56944 91711|0.52778 91712|0.76389 91713|0.38889 91714|0.47222 91715|0.47222 91716|0.44444 91717|0.5 91718|0.63889 91719|0.5 91720|0.58333 91721|0.5 91722|0.55556 91723|0.79167 91724|0.66667 91725|0.68056 91726|0.91667 91727|0.66667 91728|0.52778 91729|0.43056 91730|0.51389 91731|0.5 91732|0.66667 91733|0.88889 91734|0.66667 91735|0.83333 91736|0.84722 91737|0.59722 91738|0.86111 91739|0.69444 91740|0.68056 91741|0.76389 91742|0.59722 91743|0.5 91744|0.69444 91745|0.27778 91746|0.61111 91747|0.33333 91748|0.44444 91749|0.41667 91750|0.5 91751|0.43056 91752|0.61111 91753|0.56944 91754|0.5 91755|0.76389 91756|0.875 91757|0.5 91758|0.5 91759|0.55556 91760|0.5 91761|0.5 91762|0.38889 91763|0.68056 91764|0.63889 91765|0.52778 91766|0.5 91767|0.44444 91768|0.26389 91769|0.5 91770|0.83333 91771|0.56944 91772|0.56944 91773|0.59722 91774|0.51389 91775|0.63889 91776|0.5 91777|0.5 91778|0.52778 91779|0.70833 91780|0.65278 91781|0.73611 91782|0.58333 91783|0.61111 91784|0.77778 91785|0.5 91786|0.5 91787|0.5 91788|0.47222 91789|0.55556 91790|0.5 91791|0.5 91792|0.5 91793|0.44444 91794|0.27778 91795|0.30556 91796|0.30556 91797|0.38889 91798|0.31944 91799|0.54167 91800|0.38889 91801|0.47222 91802|0.68056 91803|0.47222 91804|0.56944 91805|0.52778 91806|0.51389 91807|0.56944 91808|0.44444 91809|0.72222 91810|0.56944 91811|0.63889 91812|0.69444 91813|0.625 91814|0.5 91815|0.51389 91816|0.48611 91817|0.47222 91818|0.43056 91819|0.29167 91820|0.33333 91821|0.54167 91822|0.43056 91823|0.45833 91824|0.79167 91825|0.55556 91826|0.125 91827|0.45833 91828|0.47222 91829|0.29167 91830|0.33333 91831|0.26389 91832|0.5 91833|0.16667 91834|0.25 91835|0.36111 91836|0.30556 91837|0.61111 91838|0.51389 91839|0.48611 91840|0.51389 91841|0.79167 91842|0.80556 91843|0.65278 91844|0.52778 91845|0.36111 91846|0.38889 91847|0.41667 91848|0.77778 91849|0.56944 91850|0.47222 91851|0.36111 91852|0.52778 91853|0.66667 91854|0.34722 91855|0.58333 91856|0.5 91857|0.22222 91858|0.52778 91859|0.41667 91860|0.54167 91861|0.47222 91862|0.44444 91863|0.36111 91864|0.48611 91865|0.70833 91866|0.81944 91867|0.36111 91868|0.38889 91869|0.375 91870|0.40278 91871|0.44444 91872|0.69444 91873|0.73611 91874|0.56944 91875|0.59722 91876|0.54167 91877|0.52778 91878|0.5 91879|0.54167 91880|0.56944 91881|0.83333 91882|0.625 91883|0.69444 91884|0.88889 91885|0.52778 91886|0.5 91887|0.5 91888|0.5 91889|0.5 91890|0.38889 91891|0.55556 91892|0.51389 91893|0.51389 91894|0.55556 91895|0.65278 91896|0.88889 91897|0.58333 91898|0.375 91899|0.63889 91900|0.63889 91901|0.70833 91902|0.68056 91903|0.48611 91904|0.55556 91905|0.47222 91906|0.58333 91907|0.63889 91908|0.66667 91909|0.47222 91910|0.69444 91911|0.69444 91912|0.77778 91913|0.66667 91914|0.75 91915|0.72222 91916|0.79167 91917|0.72222 91918|0.76389 91919|0.77778 91920|0.59722 91921|0.45833 91922|0.47222 91923|0.61111 91924|0.55556 91925|0.52778 91926|0.55556 91927|0.65278 91928|0.69444 91929|0.5 91930|0.70833 91931|0.80556 91932|0.69444 91933|0.77778 91934|0.875 91935|0.61111 91936|0.69444 91937|0.5 91938|0.52778 91939|0.52778 91940|0.68056 91941|0.73611 91942|0.55556 91943|0.54167 91944|0.69444 91945|0.63889 91946|0.5 91947|0.5 91948|0.54167 91949|0.56944 91950|0.27778 91951|0.72222 91952|0.5 91953|0.38889 91954|0.77778 91955|0.44444 91956|0.44444 91957|0.65278 91958|0.58333 91959|0.45833 91960|0.44444 91961|0.79167 91962|0.77778 91963|1 91964|1 91965|0.36111 91966|0.44444 91967|0.5 91968|0.38889 91969|0.5 91970|0.66667 91971|0.56944 91972|0.66667 91973|0.61111 91974|0.875 91975|0.56944 91976|0.5 91977|0.61111 91978|0.88889 91979|0.83333 91980|0.5 91981|0.40278 91982|0.5 91983|0.44444 91984|0.5 91985|0.5 91986|0.625 91987|0.59722 91988|0.63889 91989|0.61111 91990|0.5 91991|0.52778 91992|0.80556 91993|0.66667 91994|0.5 91995|0.55556 91996|0.56944 91997|0.77778 91998|0.5 91999|0.5 92000|0.5 92001|0.5 92002|0.69444 92003|0.51389 92004|0.43056 92005|0.5 92006|0.58333 92007|0.44444 92008|0.56944 92009|0.55556 92010|0.61111 92011|0.55556 92012|0.73611 92013|0.59722 92014|0.5 92015|0.5 92016|0.51389 92017|0.5 92018|0.5 92019|0.45833 92020|0.5 92021|0.69444 92022|0.55556 92023|0.20833 92024|0.25 92025|0.48611 92026|0.5 92027|0.5 92028|0.5 92029|0.5 92030|0.58333 92031|0.5 92032|0.5 92033|0.66667 92034|0.77778 92035|0.5 92036|0.47222 92037|0.44444 92038|0.58333 92039|0.61111 92040|0.58333 92041|0.65278 92042|0.5 92043|0.5 92044|0.77778 92045|0.69444 92046|0.59722 92047|0.59722 92048|0.63889 92049|0.61111 92050|0.72222 92051|0.51389 92052|0.45833 92053|0.45833 92054|0.52778 92055|0.5 92056|0.44444 92057|0.5 92058|0.51389 92059|0.44444 92060|0.61111 92061|0.66667 92062|0.56944 92063|0.76389 92064|0.58333 92065|0.75 92066|0.47222 92067|0.5 92068|0.5 92069|0.40278 92070|0.5 92071|0.48611 92072|0.52778 92073|0.70833 92074|0.55556 92075|0.81944 92076|0.70833 92077|0.625 92078|0.73611 92079|0.76389 92080|0.5 92081|0.69444 92082|0.36111 92083|0.125 92084|0.5 92085|0.79167 92086|0.86111 92087|0.66667 92088|0.58333 92089|0.47222 92090|0.5 92091|0.61111 92092|0.72222 92093|0.58333 92094|0.625 92095|0.55556 92096|0.58333 92097|0.5 92098|0.70833 92099|0.27778 92100|0.61111 92101|0.69444 92102|0.61111 92103|0.77778 92104|0.55556 92105|0.61111 92106|0.55556 92107|0.51389 92108|0.54167 92109|0.5 92110|0.56944 92111|0.55556 92112|0.75 92113|0.54167 92114|0.5 92115|0.65278 92116|0.5 92117|0.5 92118|0.5 92119|0.73611 92120|0.47222 92121|0.68056 92122|0.54167 92123|0.73611 92124|0.65278 92125|0.58333 92126|0.68056 92127|0.63889 92128|0.5 92129|0.5 92130|0.5 92131|0.55556 92132|0.41667 92133|0.5 92134|0.59722 92135|0.61111 92136|0.5 92137|0.40278 92138|0.81944 92139|0.375 92140|0.375 92141|0.54167 92142|0.5 92143|0.61111 92144|0.52778 92145|0.63889 92146|0.88889 92147|0.625 92148|0.65278 92149|0.68056 92150|0.20833 92151|0.5 92152|0.5 92153|0.5 92154|0.55556 92155|0.61111 92156|0.48611 92157|0.27778 92158|0.29167 92159|0.22222 92160|0.5 92161|0.36111 92162|0.27778 92163|0.59722 92164|0.47222 92165|0.73611 92166|0.61111 92167|0.54167 92168|0.56944 92169|0.79167 92170|0.5 92171|0.5 92172|0.5 92173|0.5 92174|0.75 92175|0.80556 92176|0.56944 92177|0.5 92178|0.5 92179|0.75 92180|0.52778 92181|0.5 92182|0.54167 92183|0.5 92184|0.44444 92185|0.30556 92186|0.55556 92187|0.5 92188|0.5 92189|0.5 92190|0.73611 92191|0.5 92192|0.5 92193|0.61111 92194|0.65278 92195|0.51389 92196|0.30556 92197|0.34722 92198|0.40278 92199|0.44444 92200|0.54167 92201|0.52778 92202|0.51389 92203|0.66667 92204|0.44444 92205|0.83333 92206|0.68056 92207|0.61111 92208|0.51389 92209|0.47222 92210|0.44444 92211|0.54167 92212|0.5 92213|0.58333 92214|0.5 92215|0.63889 92216|0.66667 92217|0.58333 92218|0.75 92219|0.5 92220|0.47222 92221|0.5 92222|0.47222 92223|0.5 92224|0.63889 92225|0.625 92226|0.40278 92227|0.45833 92228|0.625 92229|0.69444 92230|0.52778 92231|0.36111 92232|0.54167 92233|0.61111 92234|0.47222 92235|0.51389 92236|0.36111 92237|0.70833 92238|0.36111 92239|0.43056 92240|0.59722 92241|0.44444 92242|0.63889 92243|0.66667 92244|0.5 92245|0.52778 92246|0.44444 92247|0.47222 92248|0.38889 92249|0.45833 92250|0.38889 92251|0.47222 92252|0.30556 92253|0.36111 92254|0.48611 92255|0.38889 92256|0.34722 92257|0.51389 92258|0.19444 92259|0.55556 92260|0.55556 92261|0.58333 92262|0.54167 92263|0.56944 92264|0.51389 92265|0.48611 92266|0.52778 92267|0.41667 92268|0.5 92269|0.51389 92270|0.83333 92271|0.5 92272|0.88889 92273|0.73611 92274|0.56944 92275|0.51389 92276|0.75 92277|0.83333 92278|0.52778 92279|0.5 92280|0.63889 92281|0.76389 92282|0.56944 92283|0.73611 92284|1 92285|0.875 92286|0.625 92287|0.73611 92288|0.58333 92289|0.70833 92290|0.51389 92291|0.75 92292|0.65278 92293|0.45833 92294|0.66667 92295|0.625 92296|0.65278 92297|0.70833 92298|0.5 92299|0.52778 92300|0.5 92301|0.43056 92302|0.5 92303|0.5 92304|0.63889 92305|0.5 92306|0.5 92307|0.81944 92308|0.5 92309|0.56944 92310|0.72222 92311|0.625 92312|0.5 92313|0.55556 92314|0.52778 92315|0.61111 92316|0.5 92317|0.43056 92318|0.5 92319|0.5 92320|0.44444 92321|0.5 92322|0.56944 92323|0.59722 92324|0.44444 92325|0.38889 92326|0.5 92327|0.48611 92328|0.625 92329|0.61111 92330|0.69444 92331|0.54167 92332|0.69444 92333|0.76389 92334|0.54167 92335|0.55556 92336|0.66667 92337|0.52778 92338|0.5 92339|0.5 92340|0.48611 92341|0.5 92342|0.61111 92343|0.45833 92344|0.5 92345|0.5 92346|0.5 92347|0.625 92348|0.66667 92349|0.70833 92350|0.83333 92351|0.44444 92352|0.38889 92353|0.44444 92354|0.54167 92355|0.44444 92356|0.41667 92357|0.5 92358|0.5 92359|0.83333 92360|0.76389 92361|0.5 92362|0.5 92363|0.5 92364|0.5 92365|0.51389 92366|0.52778 92367|0.51389 92368|0.52778 92369|0.54167 92370|0.13889 92371|0.5 92372|0.5 92373|0.5 92374|0.86111 92375|0.5 92376|0.69444 92377|0.59722 92378|0.5 92379|0.48611 92380|0.22222 92381|0.44444 92382|0.5 92383|0.69444 92384|0.40278 92385|0.375 92386|0.5 92387|0.51389 92388|0.72222 92389|0.61111 92390|0.5 92391|0.52778 92392|0.48611 92393|0.38889 92394|0.40278 92395|0.61111 92396|0.54167 92397|0.5 92398|0.55556 92399|0.5 92400|0.55556 92401|0.52778 92402|0.52778 92403|0.86111 92404|0.83333 92405|0.72222 92406|0.86111 92407|0.38889 92408|0.58333 92409|0.70833 92410|0.73611 92411|0.70833 92412|0.5 92413|0.48611 92414|0.5 92415|0.5 92416|0.5 92417|0.58333 92418|0.5 92419|0.52778 92420|0.58333 92421|0.51389 92422|0.43056 92423|0.52778 92424|0.43056 92425|0.5 92426|0.48611 92427|0.44444 92428|0.5 92429|0.45833 92430|0.66667 92431|0.81944 92432|0.38889 92433|0.29167 92434|0.40278 92435|0.54167 92436|0.33333 92437|0.33333 92438|0.41667 92439|0.25 92440|0.5 92441|0.5 92442|0.375 92443|0.51389 92444|0.44444 92445|0.5 92446|0.63889 92447|0.5 92448|0.5 92449|0.76389 92450|0.69444 92451|0.77778 92452|0.5 92453|0.69444 92454|0.75 92455|0.69444 92456|0.66667 92457|0.54167 92458|0.77778 92459|0.72222 92460|0.61111 92461|0.80556 92462|0.68056 92463|0.88889 92464|0.5 92465|0.5 92466|0.27778 92467|0.5 92468|0.47222 92469|0.88889 92470|0.81944 92471|0.65278 92472|0.86111 92473|0.5 92474|0.36111 92475|0.68056 92476|0.73611 92477|0.5 92478|0.72222 92479|0.47222 92480|0.5 92481|0.54167 92482|0.73611 92483|0.81944 92484|0.70833 92485|0.625 92486|0.625 92487|0.52778 92488|0.86111 92489|0.90278 92490|0.76389 92491|0.5 92492|0.51389 92493|0.5 92494|0.44444 92495|0.5 92496|0.41667 92497|0.44444 92498|0.56944 92499|0.88889 92500|0.80556 92501|0.54167 92502|0.70833 92503|0.59722 92504|0.90278 92505|0.80556 92506|0.80556 92507|0.81944 92508|0.63889 92509|0.44444 92510|0.66667 92511|0.47222 92512|0.72222 92513|0.79167 92514|0.55556 92515|0.54167 92516|0.27778 92517|0.41667 92518|0.44444 92519|0.65278 92520|0.44444 92521|0.5 92522|0.51389 92523|0.5 92524|0.36111 92525|0.5 92526|0.41667 92527|0.5 92528|0.75 92529|0.56944 92530|0.5 92531|0.52778 92532|0.5 92533|0.54167 92534|0.54167 92535|0.33333 92536|0.36111 92537|0.61111 92538|0.5 92539|0.48611 92540|0.47222 92541|0.5 92542|0.79167 92543|0.5 92544|0.65278 92545|0.70833 92546|0.52778 92547|0.5 92548|0.43056 92549|0.54167 92550|0.81944 92551|0.83333 92552|0.81944 92553|0.61111 92554|0.51389 92555|0.56944 92556|0.47222 92557|0.38889 92558|0.33333 92559|0.44444 92560|0.38889 92561|0.75 92562|0.72222 92563|0.72222 92564|0.625 92565|0.68056 92566|0.55556 92567|0.43056 92568|0.33333 92569|0.47222 92570|0.51389 92571|0.51389 92572|0.80556 92573|0.77778 92574|0.5 92575|0.90278 92576|0.76389 92577|0.51389 92578|0.45833 92579|0.55556 92580|0.43056 92581|0.68056 92582|0.77778 92583|0.80556 92584|0.90278 92585|0.86111 92586|0.36111 92587|0.56944 92588|0.80556 92589|0.68056 92590|0.625 92591|0.5 92592|0.69444 92593|0.63889 92594|0.33333 92595|0.58333 92596|0.72222 92597|0.625 92598|0.45833 92599|0.5 92600|0.58333 92601|0.5 92602|0.59722 92603|0.55556 92604|0.54167 92605|0.63889 92606|0.625 92607|0.63889 92608|0.61111 92609|0.34722 92610|0.52778 92611|0.65278 92612|0.36111 92613|0.36111 92614|0.38889 92615|0.44444 92616|0.52778 92617|0.70833 92618|0.77778 92619|0.90278 92620|0.75 92621|0.93056 92622|0.55556 92623|0.33333 92624|0.48611 92625|0.5 92626|0.51389 92627|0.65278 92628|0.61111 92629|0.45833 92630|0.5 92631|0.5 92632|0.5 92633|0.43056 92634|0.44444 92635|0.54167 92636|0.47222 92637|0.43056 92638|0.5 92639|0.51389 92640|0.65278 92641|0.27778 92642|0.23611 92643|0.55556 92644|0.36111 92645|0.66667 92646|0.5 92647|0.5 92648|0.45833 92649|0.47222 92650|0.52778 92651|0.56944 92652|0.5 92653|0.54167 92654|0.5 92655|0.5 92656|0.81944 92657|0.69444 92658|0.5 92659|0.55556 92660|0.51389 92661|0.5 92662|0.52778 92663|0.65278 92664|0.69444 92665|0.47222 92666|0.38889 92667|0.69444 92668|0.5 92669|0.79167 92670|0.61111 92671|0.68056 92672|0.73611 92673|0.48611 92674|0.61111 92675|0.52778 92676|0.38889 92677|0.69444 92678|0.54167 92679|0.81944 92680|0.44444 92681|0.95833 92682|0.5 92683|0.5 92684|0.83333 92685|0.52778 92686|0.66667 92687|0.55556 92688|0.51389 92689|0.5 92690|0.54167 92691|0.47222 92692|0.5 92693|0.61111 92694|0.81944 92695|0.56944 92696|0.66667 92697|0.52778 92698|0.73611 92699|0.26389 92700|0.84722 92701|0.5 92702|0.79167 92703|0.70833 92704|0.65278 92705|0.77778 92706|0.51389 92707|0.69444 92708|0.51389 92709|0.5 92710|0.55556 92711|0.5 92712|0.66667 92713|0.55556 92714|0.56944 92715|0.59722 92716|0.5 92717|0.5 92718|0.375 92719|0.5 92720|0.5 92721|0.5 92722|0.63889 92723|0.55556 92724|0.5 92725|0.41667 92726|0.5 92727|0.56944 92728|0.83333 92729|0.36111 92730|0.5 92731|0.16667 92732|0.36111 92733|0.75 92734|0.70833 92735|0.625 92736|0.51389 92737|0.40278 92738|0.93056 92739|0.66667 92740|0.55556 92741|0.52778 92742|0.5 92743|0.52778 92744|0.5 92745|0.5 92746|0.66667 92747|0.5 92748|0.61111 92749|0.625 92750|0.5 92751|0.5 92752|0.52778 92753|0.5 92754|0.55556 92755|0.47222 92756|0.34722 92757|0.41667 92758|0.375 92759|0.41667 92760|0.48611 92761|0.5 92762|0.68056 92763|0.61111 92764|0.77778 92765|0.88889 92766|0.66667 92767|0.75 92768|0.66667 92769|0.93056 92770|0.84722 92771|0.80556 92772|0.86111 92773|0.5 92774|0.56944 92775|0.375 92776|0.5 92777|0.52778 92778|0.44444 92779|0.38889 92780|0.38889 92781|0.5 92782|0.34722 92783|0.66667 92784|0.66667 92785|0.65278 92786|0.66667 92787|0.56944 92788|0.48611 92789|0.41667 92790|0.48611 92791|0.55556 92792|0.61111 92793|0.5 92794|0.5 92795|0.375 92796|0.27778 92797|0.48611 92798|0.66667 92799|0.38889 92800|0.47222 92801|0.5 92802|0.76389 92803|0.68056 92804|0.52778 92805|0.56944 92806|0.65278 92807|0.38889 92808|0.38889 92809|0.625 92810|0.59722 92811|0.40278 92812|0.36111 92813|0.58333 92814|0.47222 92815|0.5 92816|0.44444 92817|0.55556 92818|0.5 92819|0.56944 92820|0.52778 92821|0.58333 92822|0.63889 92823|0.65278 92824|0.5 92825|0.44444 92826|0.55556 92827|0.55556 92828|0.61111 92829|0.65278 92830|0.70833 92831|0.5 92832|0.5 92833|0.41667 92834|0.48611 92835|0.65278 92836|0.54167 92837|0.47222 92838|0.43056 92839|0.38889 92840|0.83333 92841|0.40278 92842|0.38889 92843|0.34722 92844|0.52778 92845|0.54167 92846|0.55556 92847|0.61111 92848|0.48611 92849|0.44444 92850|0.16667 92851|0.40278 92852|0.45833 92853|0.75 92854|0.625 92855|0.63889 92856|0.48611 92857|0.58333 92858|0.5 92859|0.44444 92860|0.44444 92861|0.625 92862|0.625 92863|0.72222 92864|0.56944 92865|0.73611 92866|0.5 92867|0.55556 92868|0.48611 92869|0.55556 92870|0.875 92871|0.79167 92872|0.83333 92873|0.84722 92874|0.76389 92875|0.63889 92876|0.83333 92877|0.75 92878|0.80556 92879|0.86111 92880|0.81944 92881|0.83333 92882|0.70833 92883|0.72222 92884|0.72222 92885|0.69444 92886|0.79167 92887|0.72222 92888|0.65278 92889|0.80556 92890|0.68056 92891|0.45833 92892|0.77778 92893|0.65278 92894|0.81944 92895|0.70833 92896|0.80556 92897|0.69444 92898|0.83333 92899|0.81944 92900|0.54167 92901|0.86111 92902|0.52778 92903|0.34722 92904|0.55556 92905|0.54167 92906|0.72222 92907|0.41667 92908|0.61111 92909|0.69444 92910|0.79167 92911|0.56944 92912|0.75 92913|0.61111 92914|0.44444 92915|0.36111 92916|0.51389 92917|0.52778 92918|0.5 92919|0.44444 92920|0.55556 92921|0.52778 92922|0.5 92923|0.66667 92924|0.86111 92925|0.80556 92926|0.76389 92927|0.75 92928|0.61111 92929|0.81944 92930|0.58333 92931|0.41667 92932|0.45833 92933|0.5 92934|0.44444 92935|0.76389 92936|0.25 92937|0.52778 92938|0.54167 92939|0.5 92940|0.5 92941|0.91667 92942|0.41667 92943|0.5 92944|0.81944 92945|0.55556 92946|0.47222 92947|0.083333 92948|0.61111 92949|0.72222 92950|0.75 92951|0.81944 92952|0.5 92953|0.63889 92954|0.68056 92955|0.84722 92956|0.77778 92957|0.88889 92958|0.19444 92959|0.36111 92960|0.36111 92961|0.68056 92962|0.65278 92963|0.51389 92964|0.77778 92965|0.72222 92966|0.45833 92967|0.38889 92968|0.48611 92969|0.5 92970|0.44444 92971|0.875 92972|0.41667 92973|0.44444 92974|0.69444 92975|0.81944 92976|0.61111 92977|0.70833 92978|0.55556 92979|0.375 92980|0.47222 92981|0.72222 92982|0.80556 92983|0.83333 92984|0.45833 92985|0.63889 92986|0.56944 92987|0.47222 92988|0.76389 92989|0.75 92990|0.81944 92991|0.73611 92992|0.43056 92993|0.47222 92994|0.66667 92995|0.66667 92996|0.55556 92997|0.5 92998|0.68056 92999|0.76389 93000|0.76389 93001|0.47222 93002|0.58333 93003|0.47222 93004|0.66667 93005|0.29167 93006|0.52778 93007|0.51389 93008|0.5 93009|0.55556 93010|0.375 93011|0.38889 93012|0.83333 93013|0.59722 93014|0.76389 93015|0.625 93016|0.76389 93017|0.65278 93018|0.56944 93019|0.58333 93020|0.44444 93021|0.51389 93022|0.375 93023|0.5 93024|0.51389 93025|0.55556 93026|0.5 93027|0.5 93028|0.45833 93029|0.25 93030|0.61111 93031|0.33333 93032|0.375 93033|0.51389 93034|0.44444 93035|0.58333 93036|0.58333 93037|0.5 93038|0.5 93039|0.5 93040|0.59722 93041|0.5 93042|0.68056 93043|0.76389 93044|0.76389 93045|0.70833 93046|0.70833 93047|0.63889 93048|0.84722 93049|0.625 93050|0.80556 93051|0.76389 93052|0.70833 93053|0.72222 93054|0.5 93055|0.54167 93056|0.5 93057|0.5 93058|0.61111 93059|0.52778 93060|0.54167 93061|0.52778 93062|0.44444 93063|0.51389 93064|0.75 93065|0.69444 93066|0.73611 93067|0.73611 93068|0.72222 93069|0.72222 93070|0.73611 93071|0.76389 93072|0.79167 93073|0.72222 93074|0.34722 93075|0.43056 93076|0.5 93077|0.69444 93078|0.56944 93079|0.44444 93080|0.5 93081|0.5 93082|0.55556 93083|0.29167 93084|0.33333 93085|0.52778 93086|0.625 93087|0.59722 93088|0.58333 93089|0.44444 93090|0.43056 93091|0.70833 93092|0.80556 93093|0.58333 93094|0.66667 93095|0.40278 93096|0.65278 93097|0.65278 93098|0.72222 93099|0.48611 93100|0.55556 93101|0.51389 93102|0.52778 93103|0.72222 93104|0.77778 93105|0.29167 93106|0.40278 93107|0.44444 93108|0.52778 93109|0.26389 93110|0.90278 93111|0.375 93112|0.91667 93113|0.40278 93114|0.5 93115|0.48611 93116|0.77778 93117|0.70833 93118|0.26389 93119|0.34722 93120|0.79167 93121|0.72222 93122|0.61111 93123|0.63889 93124|0.79167 93125|0.70833 93126|0.73611 93127|0.63889 93128|0.61111 93129|0.76389 93130|0.66667 93131|0.73611 93132|0.63889 93133|0.63889 93134|0.77778 93135|0.5 93136|0.51389 93137|0.38889 93138|0.70833 93139|0.80556 93140|0.51389 93141|0.77778 93142|0.5 93143|0.41667 93144|0.59722 93145|0.5 93146|0.5 93147|0.26389 93148|0.58333 93149|0.69444 93150|0.52778 93151|0.5 93152|0.58333 93153|0.625 93154|0.59722 93155|0.29167 93156|0.41667 93157|0.41667 93158|0.56944 93159|0.70833 93160|0.51389 93161|0.69444 93162|0.63889 93163|0.61111 93164|0.61111 93165|0.61111 93166|0.5 93167|0.72222 93168|0.73611 93169|0.73611 93170|0.83333 93171|0.84722 93172|0.81944 93173|0.81944 93174|0.84722 93175|0.47222 93176|0.41667 93177|0.44444 93178|0.5 93179|0.68056 93180|0.69444 93181|0.5 93182|0.61111 93183|0.72222 93184|0.75 93185|0.45833 93186|0.40278 93187|0.55556 93188|0.34722 93189|0.61111 93190|0.72222 93191|0.34722 93192|0.27778 93193|0.33333 93194|0.34722 93195|0.30556 93196|0.23611 93197|0.40278 93198|0.58333 93199|0.38889 93200|0.33333 93201|0.55556 93202|0.63889 93203|0.36111 93204|0.375 93205|0.70833 93206|0.38889 93207|0.27778 93208|0.5 93209|0.51389 93210|0.34722 93211|0.5 93212|0.625 93213|0.51389 93214|0.73611 93215|0.36111 93216|0.5 93217|0.69444 93218|0.5 93219|0.5 93220|0.59722 93221|0.5 93222|0.65278 93223|0.56944 93224|0.69444 93225|0.51389 93226|0.69444 93227|0.84722 93228|0.625 93229|0.22222 93230|0.48611 93231|0.51389 93232|0.5 93233|0.43056 93234|0.58333 93235|0.5 93236|0.5 93237|0.5 93238|0.5 93239|0.5 93240|0.59722 93241|0.5 93242|0.45833 93243|0.5 93244|0.44444 93245|0.51389 93246|0.44444 93247|0.58333 93248|0.48611 93249|0.5 93250|0.52778 93251|0.61111 93252|0.55556 93253|0.5 93254|0.72222 93255|0.77778 93256|0.66667 93257|0.61111 93258|0.61111 93259|0.43056 93260|0.44444 93261|0.5 93262|0.5 93263|0.44444 93264|0.5 93265|0.56944 93266|0.5 93267|0.55556 93268|0.66667 93269|0.55556 93270|0.75 93271|0.73611 93272|0.63889 93273|0.63889 93274|0.61111 93275|0.59722 93276|0.61111 93277|0.5 93278|0.52778 93279|0.55556 93280|0.54167 93281|0.5 93282|0.48611 93283|0.5 93284|0.51389 93285|0.52778 93286|0.5 93287|0.83333 93288|0.80556 93289|0.83333 93290|0.38889 93291|0.77778 93292|0.90278 93293|0.72222 93294|0.83333 93295|0.5 93296|0.83333 93297|0.75 93298|0.86111 93299|0.88889 93300|0.61111 93301|0.5 93302|0.43056 93303|0.54167 93304|0.44444 93305|0.27778 93306|0.22222 93307|0.5 93308|0.5 93309|0.61111 93310|0.69444 93311|0.73611 93312|0.44444 93313|0.66667 93314|0.69444 93315|0.5 93316|0.73611 93317|0.55556 93318|0.47222 93319|0.90278 93320|0.72222 93321|0.58333 93322|0.69444 93323|0.61111 93324|0.51389 93325|0.69444 93326|0.52778 93327|0.33333 93328|0.61111 93329|0.52778 93330|0.44444 93331|0.44444 93332|0.5 93333|0.44444 93334|0.54167 93335|0.65278 93336|0.70833 93337|0.86111 93338|0.875 93339|0.77778 93340|0.76389 93341|0.76389 93342|0.43056 93343|0.5 93344|0.5 93345|0.38889 93346|0.125 93347|0.48611 93348|0.79167 93349|0.54167 93350|0.77778 93351|0.63889 93352|0.5 93353|0.5 93354|0.68056 93355|0.41667 93356|0.43056 93357|0.76389 93358|0.72222 93359|0.5 93360|0.55556 93361|0.5 93362|0.5 93363|0.5 93364|0.66667 93365|0.54167 93366|0.59722 93367|0.48611 93368|0.61111 93369|0.58333 93370|0.51389 93371|0.5 93372|0.45833 93373|0.5 93374|0.5 93375|0.51389 93376|0.5 93377|0.5 93378|0.5 93379|0.51389 93380|0.44444 93381|0.51389 93382|0.54167 93383|0.5 93384|0.22222 93385|0.34722 93386|0.61111 93387|0.5 93388|0.41667 93389|0.5 93390|0.44444 93391|0.5 93392|0.5 93393|0.56944 93394|0.56944 93395|0.66667 93396|0.20833 93397|0.51389 93398|0.5 93399|0.41667 93400|0.5 93401|0.55556 93402|0.83333 93403|0.72222 93404|0.44444 93405|0.13889 93406|0.5 93407|0.55556 93408|0.16667 93409|0.59722 93410|0.5 93411|0.41667 93412|0.5 93413|0.55556 93414|0.66667 93415|0.77778 93416|0.63889 93417|0.70833 93418|0.58333 93419|0.55556 93420|0.48611 93421|0.51389 93422|0.51389 93423|0.5 93424|0.36111 93425|0.5 93426|0.66667 93427|0.59722 93428|0.625 93429|0.52778 93430|0.51389 93431|0.875 93432|0.69444 93433|0.52778 93434|0.73611 93435|0.84722 93436|0.61111 93437|0.5 93438|0.69444 93439|0.55556 93440|0.58333 93441|0.55556 93442|0.55556 93443|0.69444 93444|0.56944 93445|0.58333 93446|0.51389 93447|0.47222 93448|0.5 93449|0.5 93450|0.5 93451|0.625 93452|0.55556 93453|0.55556 93454|0.63889 93455|0.5 93456|0.63889 93457|0.38889 93458|0.5 93459|0.34722 93460|0.25 93461|0.33333 93462|0.5 93463|0.5 93464|0.625 93465|0.5 93466|0.55556 93467|0.44444 93468|0.51389 93469|0.61111 93470|0.5 93471|0.58333 93472|0.5 93473|0.5 93474|0.34722 93475|0.43056 93476|0.41667 93477|0.33333 93478|0.38889 93479|0.52778 93480|0.66667 93481|0.55556 93482|0.52778 93483|0.45833 93484|0.51389 93485|0.44444 93486|0.81944 93487|0.63889 93488|0.72222 93489|0.61111 93490|0.90278 93491|0.93056 93492|0.48611 93493|0.52778 93494|0.44444 93495|0.5 93496|0.54167 93497|0.55556 93498|0.56944 93499|0.51389 93500|0.65278 93501|0.73611 93502|0.73611 93503|0.80556 93504|0.5 93505|0.66667 93506|0.5 93507|0.75 93508|0.44444 93509|0.31944 93510|0.27778 93511|0.69444 93512|0.625 93513|0.59722 93514|0.80556 93515|0.72222 93516|0.75 93517|0.66667 93518|0.5 93519|0.72222 93520|0.73611 93521|0.51389 93522|0.38889 93523|0.58333 93524|0.80556 93525|0.45833 93526|0.63889 93527|0.70833 93528|0.61111 93529|0.55556 93530|0.69444 93531|0.72222 93532|0.61111 93533|0.76389 93534|0.5 93535|0.68056 93536|0.48611 93537|0.59722 93538|0.55556 93539|0.73611 93540|0.36111 93541|0.40278 93542|0.41667 93543|0.375 93544|0.26389 93545|0.5 93546|0.59722 93547|0.51389 93548|0.34722 93549|0.27778 93550|0.56944 93551|0.5 93552|0.5 93553|0.61111 93554|0.52778 93555|0.5 93556|0.5 93557|0.61111 93558|0.5 93559|0.5 93560|0.5 93561|0.5 93562|0.61111 93563|0.55556 93564|0.55556 93565|0.51389 93566|0.44444 93567|0.5 93568|0.5 93569|0.45833 93570|0.59722 93571|0.69444 93572|0.73611 93573|0.51389 93574|0.41667 93575|0.55556 93576|0.58333 93577|0.40278 93578|0.34722 93579|0.41667 93580|0.58333 93581|0.43056 93582|0.59722 93583|0.65278 93584|0.72222 93585|0.68056 93586|0.625 93587|0.69444 93588|0.70833 93589|0.5 93590|0.44444 93591|0.44444 93592|0.40278 93593|0.27778 93594|0.63889 93595|0.5 93596|0.5 93597|0.29167 93598|0.34722 93599|0.5 93600|0.55556 93601|0.52778 93602|0.63889 93603|0.65278 93604|0.90278 93605|0.5 93606|0.125 93607|0.44444 93608|0.48611 93609|0.72222 93610|0.55556 93611|0.43056 93612|0.76389 93613|0.75 93614|0.90278 93615|0.40278 93616|0.69444 93617|0.66667 93618|0.77778 93619|0.59722 93620|0.65278 93621|0.51389 93622|0.5 93623|0.5 93624|0.43056 93625|0.5 93626|0.43056 93627|0.44444 93628|0.59722 93629|0.79167 93630|0.625 93631|0.77778 93632|0.83333 93633|0.83333 93634|0.625 93635|0.76389 93636|0.625 93637|0.72222 93638|0.77778 93639|0.54167 93640|0.72222 93641|0.69444 93642|0.56944 93643|0.5 93644|0.66667 93645|0.61111 93646|0.76389 93647|0.94444 93648|0.69444 93649|0.76389 93650|0.59722 93651|0.75 93652|0.63889 93653|0.5 93654|0.61111 93655|0.52778 93656|0.52778 93657|0.34722 93658|0.5 93659|0.5 93660|0.5 93661|0.5 93662|0.61111 93663|0.63889 93664|0.72222 93665|0.33333 93666|0.33333 93667|0.59722 93668|0.90278 93669|0.94444 93670|0.81944 93671|0.88889 93672|0.18056 93673|0.45833 93674|0.52778 93675|0.47222 93676|0.23611 93677|0.5 93678|0.56944 93679|0.58333 93680|0.76389 93681|0.75 93682|0.72222 93683|0.52778 93684|0.66667 93685|0.5 93686|0.70833 93687|0.75 93688|0.73611 93689|0.83333 93690|0.93056 93691|0.77778 93692|0.76389 93693|0.77778 93694|0.65278 93695|0.76389 93696|0.69444 93697|0.75 93698|0.79167 93699|0.56944 93700|0.77778 93701|0.61111 93702|0.5 93703|0.5 93704|0.5 93705|0.38889 93706|0.5 93707|0.5 93708|0.33333 93709|0.58333 93710|0.56944 93711|0.30556 93712|0.38889 93713|0.52778 93714|0.72222 93715|0.58333 93716|0.97222 93717|0.69444 93718|0.61111 93719|0.5 93720|0.5 93721|0.52778 93722|0.51389 93723|0.54167 93724|0.5 93725|0.48611 93726|0.58333 93727|0.66667 93728|0.5 93729|0.47222 93730|0.47222 93731|0.86111 93732|0.875 93733|0.83333 93734|0.66667 93735|0.73611 93736|0.54167 93737|0.68056 93738|0.56944 93739|0.59722 93740|0.56944 93741|0.36111 93742|0.75 93743|0.63889 93744|0.59722 93745|0.69444 93746|0.72222 93747|0.5 93748|0.5 93749|0.45833 93750|0.54167 93751|0.88889 93752|0.86111 93753|0.83333 93754|0.83333 93755|0.80556 93756|0.55556 93757|0.73611 93758|0.86111 93759|0.70833 93760|0.69444 93761|0.81944 93762|0.625 93763|0.63889 93764|0.68056 93765|0.69444 93766|0.63889 93767|0.66667 93768|0.83333 93769|0.77778 93770|0.66667 93771|0.375 93772|0.40278 93773|0.41667 93774|0.58333 93775|0.51389 93776|0.625 93777|0.77778 93778|0.70833 93779|0.94444 93780|0.72222 93781|0.84722 93782|0.88889 93783|0.83333 93784|0.70833 93785|0.79167 93786|0.83333 93787|0.59722 93788|0.70833 93789|0.77778 93790|0.90278 93791|1 93792|0.5 93793|0.51389 93794|0.75 93795|0.70833 93796|0.61111 93797|0.65278 93798|0.81944 93799|0.69444 93800|0.83333 93801|0.84722 93802|0.76389 93803|0.81944 93804|0.75 93805|0.58333 93806|0.55556 93807|0.5 93808|0.72222 93809|0.55556 93810|0.79167 93811|0.55556 93812|0.79167 93813|0.52778 93814|0.59722 93815|0.055556 93816|0.625 93817|0.70833 93818|0.66667 93819|0.76389 93820|0.58333 93821|0.5 93822|0.66667 93823|0.51389 93824|0.47222 93825|0.5 93826|0.45833 93827|0.375 93828|0.48611 93829|0.5 93830|0.45833 93831|0.44444 93832|0.41667 93833|0.5 93834|0.45833 93835|0.43056 93836|0.41667 93837|0.70833 93838|0.5 93839|0.5 93840|0.58333 93841|0.44444 93842|0.5 93843|0.58333 93844|0.375 93845|0.76389 93846|0.73611 93847|0.61111 93848|0.69444 93849|0.72222 93850|0.38889 93851|0.33333 93852|0.43056 93853|0.5 93854|0.52778 93855|0.625 93856|0.625 93857|0.51389 93858|0.58333 93859|0.5 93860|0.61111 93861|0.63889 93862|0.5 93863|0.93056 93864|0.48611 93865|0.44444 93866|0.58333 93867|0.52778 93868|0.61111 93869|0.69444 93870|0.86111 93871|0.55556 93872|0.43056 93873|0.63889 93874|0.55556 93875|0.58333 93876|0.58333 93877|0.51389 93878|0.27778 93879|0.91667 93880|0.91667 93881|0.84722 93882|0.86111 93883|0.54167 93884|0.55556 93885|0.52778 93886|0.27778 93887|0.75 93888|0.88889 93889|0.59722 93890|0.51389 93891|0.66667 93892|0.55556 93893|0.59722 93894|0.52778 93895|0.54167 93896|0.44444 93897|0.5 93898|0.76389 93899|0.63889 93900|0.51389 93901|0.5 93902|0.77778 93903|0.5 93904|0.27778 93905|0.91667 93906|0.95833 93907|0.84722 93908|0.70833 93909|0.72222 93910|0.5 93911|0.5 93912|0.56944 93913|0.45833 93914|0.54167 93915|0.5 93916|0.55556 93917|0.63889 93918|0.77778 93919|0.66667 93920|0.81944 93921|0.81944 93922|0.77778 93923|0.69444 93924|0.65278 93925|0.75 93926|0.80556 93927|0.75 93928|0.84722 93929|0.79167 93930|0.79167 93931|0.86111 93932|0.83333 93933|0.75 93934|0.63889 93935|0.58333 93936|0.77778 93937|0.66667 93938|0.75 93939|0.79167 93940|0.68056 93941|0.75 93942|0.81944 93943|0.58333 93944|0.43056 93945|0.66667 93946|0.72222 93947|0.56944 93948|0.66667 93949|0.59722 93950|0.5 93951|0.66667 93952|0.5 93953|0.61111 93954|0.34722 93955|0.5 93956|0.55556 93957|0.72222 93958|0.58333 93959|0.55556 93960|0.51389 93961|0.54167 93962|0.55556 93963|0.66667 93964|0.51389 93965|0.54167 93966|0.58333 93967|0.61111 93968|0.44444 93969|0.54167 93970|0.70833 93971|0.75 93972|0.44444 93973|0.77778 93974|0.43056 93975|0.40278 93976|0.41667 93977|0.625 93978|0.81944 93979|0.80556 93980|0.73611 93981|0.80556 93982|0.58333 93983|0.65278 93984|0.51389 93985|0.54167 93986|0.625 93987|0.5 93988|0.66667 93989|0.58333 93990|0.61111 93991|0.61111 93992|0.72222 93993|0.68056 93994|0.55556 93995|0.75 93996|0.63889 93997|0.69444 93998|0.73611 93999|0.68056 94000|0.61111 94001|0.59722 94002|0.65278 94003|0.72222 94004|0.27778 94005|0.5 94006|0.40278 94007|0.5 94008|0.55556 94009|0.55556 94010|0.47222 94011|0.83333 94012|0.58333 94013|0.77778 94014|0.84722 94015|0.73611 94016|0.88889 94017|0.75 94018|0.75 94019|0.88889 94020|0.69444 94021|0.83333 94022|0.88889 94023|0.75 94024|0.75 94025|0.75 94026|0.58333 94027|0.73611 94028|0.45833 94029|0.58333 94030|0.86111 94031|0.73611 94032|0.76389 94033|0.72222 94034|0.5 94035|0.80556 94036|0.88889 94037|0.54167 94038|0.29167 94039|0.58333 94040|0.5 94041|0.72222 94042|0.625 94043|0.52778 94044|0.43056 94045|0.44444 94046|0.59722 94047|0.69444 94048|0.52778 94049|0.56944 94050|0.5 94051|0.68056 94052|0.70833 94053|0.875 94054|0.56944 94055|0.5 94056|0.5 94057|0.5 94058|0.54167 94059|0.66667 94060|0.61111 94061|0.66667 94062|0.5 94063|0.54167 94064|0.76389 94065|0.69444 94066|0.52778 94067|0.5 94068|0.68056 94069|0.59722 94070|0.59722 94071|0.56944 94072|0.5 94073|0.55556 94074|0.38889 94075|0.47222 94076|0.34722 94077|0.59722 94078|0.72222 94079|0.75 94080|0.83333 94081|0.83333 94082|0.63889 94083|0.41667 94084|0.63889 94085|0.54167 94086|0.48611 94087|0.40278 94088|0.625 94089|0.5 94090|0.48611 94091|0.20833 94092|0.34722 94093|0.31944 94094|0.5 94095|0.47222 94096|0.5 94097|0.5 94098|0.55556 94099|0.65278 94100|0.75 94101|0.75 94102|0.5 94103|0.38889 94104|0.51389 94105|0.51389 94106|0.88889 94107|0.69444 94108|0.56944 94109|0.59722 94110|0.69444 94111|0.54167 94112|0.72222 94113|0.68056 94114|0.76389 94115|0.5 94116|0.51389 94117|0.38889 94118|0.38889 94119|0.56944 94120|0.51389 94121|0.68056 94122|0.55556 94123|0.65278 94124|0.5 94125|0.44444 94126|0.44444 94127|0.52778 94128|0.44444 94129|0.54167 94130|0.38889 94131|0.5 94132|0.36111 94133|0.69444 94134|0.76389 94135|0.52778 94136|0.44444 94137|0.61111 94138|0.54167 94139|0.54167 94140|0.79167 94141|0.48611 94142|0.44444 94143|0.72222 94144|0.73611 94145|0.52778 94146|0.45833 94147|0.66667 94148|0.79167 94149|0.80556 94150|0.63889 94151|0.65278 94152|0.77778 94153|0.68056 94154|0.76389 94155|0.65278 94156|0.61111 94157|0.625 94158|0.69444 94159|0.73611 94160|0.5 94161|0.625 94162|0.68056 94163|0.63889 94164|0.27778 94165|0.48611 94166|0.61111 94167|0.63889 94168|0.56944 94169|0.55556 94170|0.59722 94171|0.43056 94172|0.43056 94173|0.56944 94174|0.56944 94175|0.76389 94176|0.86111 94177|0.55556 94178|0.41667 94179|0.52778 94180|0.40278 94181|0.5 94182|0.45833 94183|0.58333 94184|0.5 94185|0.69444 94186|0.52778 94187|0.5 94188|0.76389 94189|0.77778 94190|0.59722 94191|0.81944 94192|0.79167 94193|0.72222 94194|0.5 94195|0.73611 94196|0.58333 94197|0.5 94198|0.55556 94199|0.52778 94200|0.55556 94201|0.43056 94202|0.48611 94203|0.58333 94204|0.45833 94205|0.51389 94206|0.44444 94207|0.5 94208|0.52778 94209|0.58333 94210|0.5 94211|0.5 94212|0.72222 94213|0.5 94214|0.55556 94215|0.5 94216|0.5 94217|0.55556 94218|0.69444 94219|0.81944 94220|0.73611 94221|0.31944 94222|0.72222 94223|0.55556 94224|0.5 94225|0.5 94226|0.43056 94227|0.55556 94228|0.5 94229|0.56944 94230|0.5 94231|0.5 94232|0.5 94233|0.48611 94234|0.5 94235|0.48611 94236|0.44444 94237|0.5 94238|0.61111 94239|0.27778 94240|0.66667 94241|0.47222 94242|0.55556 94243|0.36111 94244|0.48611 94245|0.38889 94246|0.77778 94247|0.30556 94248|0.33333 94249|0.69444 94250|0.625 94251|0.625 94252|0.79167 94253|0.5 94254|0.47222 94255|0.44444 94256|0.54167 94257|0.59722 94258|0.51389 94259|0.51389 94260|0.29167 94261|0.5 94262|0.59722 94263|0.5 94264|0.51389 94265|0.5 94266|0.5 94267|0.61111 94268|0.77778 94269|0.51389 94270|0.5 94271|0.5 94272|0.22222 94273|0.5 94274|0.47222 94275|0.5 94276|0.5 94277|0.5 94278|0.625 94279|0.51389 94280|0.68056 94281|0.61111 94282|0.61111 94283|0.80556 94284|0.55556 94285|0.84722 94286|0.58333 94287|0.79167 94288|0.44444 94289|0.51389 94290|0.55556 94291|0.55556 94292|0.65278 94293|0.55556 94294|0.55556 94295|0.44444 94296|0.52778 94297|0.33333 94298|0.63889 94299|0.61111 94300|0.54167 94301|0.65278 94302|0.625 94303|0.73611 94304|0.55556 94305|0.55556 94306|0.58333 94307|0.86111 94308|0.61111 94309|0.5 94310|0.38889 94311|0.58333 94312|0.54167 94313|0.77778 94314|0.5 94315|0.47222 94316|0.375 94317|0.55556 94318|0.27778 94319|0.48611 94320|0.54167 94321|0.52778 94322|0.5 94323|0.16667 94324|0.5 94325|0.75 94326|0.68056 94327|0.69444 94328|0.84722 94329|0.56944 94330|0.83333 94331|0.76389 94332|0.75 94333|0.77778 94334|0.79167 94335|0.75 94336|0.91667 94337|0.94444 94338|0.44444 94339|0.41667 94340|0.30556 94341|0.63889 94342|0.31944 94343|0.41667 94344|0.54167 94345|0.44444 94346|0.43056 94347|0.61111 94348|0.33333 94349|0.30556 94350|0.30556 94351|0.30556 94352|0.5 94353|0.33333 94354|0.58333 94355|0.58333 94356|0.5 94357|0.51389 94358|0.56944 94359|0.51389 94360|0.5 94361|0.5 94362|0.625 94363|0.58333 94364|0.51389 94365|0.5 94366|0.48611 94367|0.47222 94368|0.5 94369|0.40278 94370|0.38889 94371|0.75 94372|0.54167 94373|0.51389 94374|0.51389 94375|0.61111 94376|0.45833 94377|0.51389 94378|0.44444 94379|0.5 94380|0.34722 94381|0.45833 94382|0.79167 94383|0.5 94384|0.44444 94385|0.5 94386|0.5 94387|0.5 94388|0.45833 94389|0.38889 94390|0.72222 94391|0.44444 94392|0.5 94393|0.66667 94394|0.56944 94395|0.38889 94396|0.55556 94397|0.5 94398|0.5 94399|0.54167 94400|0.43056 94401|0.56944 94402|0.5 94403|0.15278 94404|0.61111 94405|0.58333 94406|0.5 94407|0.61111 94408|0.5 94409|0.5 94410|0.45833 94411|0.45833 94412|0.5 94413|0.52778 94414|0.36111 94415|0.48611 94416|0.5 94417|0.5 94418|0.55556 94419|0.45833 94420|0.5 94421|0.5 94422|0.5 94423|0.41667 94424|0.66667 94425|0.5 94426|0.5 94427|0.36111 94428|0.47222 94429|0.5 94430|0.54167 94431|0.51389 94432|0.61111 94433|0.90278 94434|0.81944 94435|0.43056 94436|0.51389 94437|0.59722 94438|0.5 94439|0.51389 94440|0.5 94441|0.61111 94442|0.51389 94443|0.55556 94444|0.5 94445|0.5 94446|0.59722 94447|0.51389 94448|0.73611 94449|0.88889 94450|0.45833 94451|0.5 94452|0.5 94453|0.66667 94454|0.56944 94455|0.69444 94456|0.55556 94457|0.5 94458|0.5 94459|0.56944 94460|0.76389 94461|0.66667 94462|0.84722 94463|0.79167 94464|0.72222 94465|0.48611 94466|0.625 94467|0.52778 94468|0.54167 94469|0.69444 94470|0.75 94471|0.68056 94472|0.68056 94473|0.83333 94474|0.30556 94475|0.44444 94476|0.68056 94477|0.51389 94478|0.81944 94479|0.72222 94480|0.56944 94481|0.16667 94482|0.56944 94483|0.45833 94484|0.55556 94485|0.83333 94486|0.69444 94487|0.23611 94488|0.33333 94489|0.91667 94490|0.76389 94491|0.65278 94492|0.69444 94493|0.69444 94494|0.81944 94495|0.76389 94496|0.625 94497|0.86111 94498|0.79167 94499|0.79167 94500|0.66667 94501|0.80556 94502|0.38889 94503|0.44444 94504|0.80556 94505|0.52778 94506|0.61111 94507|0.5 94508|0.56944 94509|0.5 94510|0.43056 94511|0.5 94512|0.58333 94513|0.72222 94514|0.47222 94515|0.70833 94516|0.59722 94517|0.59722 94518|0.63889 94519|0.5 94520|0.40278 94521|0.63889 94522|0.83333 94523|0.23611 94524|0.40278 94525|0.48611 94526|0.47222 94527|0.52778 94528|0.65278 94529|0.45833 94530|0.41667 94531|0.76389 94532|0.75 94533|0.5 94534|0.5 94535|0.84722 94536|0.52778 94537|0.70833 94538|0.83333 94539|0.38889 94540|0.625 94541|0.80556 94542|0.59722 94543|0.79167 94544|0.80556 94545|0.59722 94546|0.40278 94547|0.54167 94548|0.73611 94549|0.48611 94550|0.44444 94551|0.27778 94552|0.375 94553|0.61111 94554|0.66667 94555|0.44444 94556|0.83333 94557|0.81944 94558|0.52778 94559|0.55556 94560|0.88889 94561|0.25 94562|0.5 94563|0.625 94564|0.41667 94565|0.69444 94566|0.5 94567|0.5 94568|0.44444 94569|0.48611 94570|0.5 94571|0.5 94572|0.61111 94573|0.61111 94574|0.83333 94575|0.29167 94576|0.22222 94577|0.91667 94578|0.63889 94579|0.77778 94580|0.80556 94581|0.45833 94582|0.81944 94583|0.70833 94584|0.75 94585|0.77778 94586|0.44444 94587|0.70833 94588|0.86111 94589|0.5 94590|0.5 94591|0.56944 94592|0.76389 94593|0.56944 94594|0.68056 94595|0.54167 94596|0.65278 94597|0.72222 94598|0.61111 94599|0.43056 94600|0.75 94601|0.5 94602|0.43056 94603|0.66667 94604|0.5 94605|0.51389 94606|0.55556 94607|0.65278 94608|0.54167 94609|0.55556 94610|0.81944 94611|0.77778 94612|0.61111 94613|0.79167 94614|0.56944 94615|0.72222 94616|0.76389 94617|0.75 94618|0.68056 94619|0.77778 94620|0.75 94621|0.5 94622|0.44444 94623|0.33333 94624|0.43056 94625|0.52778 94626|0.48611 94627|0.63889 94628|0.77778 94629|0.75 94630|0.80556 94631|0.27778 94632|0.56944 94633|0.76389 94634|0.44444 94635|0.65278 94636|0.66667 94637|0.75 94638|0.66667 94639|0.33333 94640|0.44444 94641|0.51389 94642|0.68056 94643|0.69444 94644|0.48611 94645|0.73611 94646|0.68056 94647|0.55556 94648|0.66667 94649|0.79167 94650|0.52778 94651|0.69444 94652|0.61111 94653|0.79167 94654|0.76389 94655|0.51389 94656|0.52778 94657|0.72222 94658|0.63889 94659|0.73611 94660|0.65278 94661|0.5 94662|0.79167 94663|0.51389 94664|0.63889 94665|0.5 94666|0.5 94667|0.58333 94668|0.56944 94669|0.625 94670|0.44444 94671|0.55556 94672|0.45833 94673|0.68056 94674|0.83333 94675|0.61111 94676|0.70833 94677|0.45833 94678|0.66667 94679|0.5 94680|0.41667 94681|0.5 94682|0.48611 94683|0.5 94684|0.61111 94685|0.51389 94686|0.70833 94687|0.5 94688|0.84722 94689|0.70833 94690|0.70833 94691|0.51389 94692|0.58333 94693|0.23611 94694|0.80556 94695|0.84722 94696|0.72222 94697|0.81944 94698|0.56944 94699|0.72222 94700|0.5 94701|0.5 94702|0.48611 94703|0.52778 94704|0.5 94705|0.5 94706|0.65278 94707|0.69444 94708|0.80556 94709|0.43056 94710|0.33333 94711|0.90278 94712|0.69444 94713|0.66667 94714|0.72222 94715|0.65278 94716|0.75 94717|0.73611 94718|0.55556 94719|0.59722 94720|0.48611 94721|0.77778 94722|0.56944 94723|0.63889 94724|0.83333 94725|0.63889 94726|0.58333 94727|0.79167 94728|0.61111 94729|0.83333 94730|0.61111 94731|0.25 94732|0.36111 94733|0.54167 94734|0.79167 94735|0.61111 94736|0.25 94737|0.54167 94738|0.69444 94739|0.29167 94740|0.88889 94741|0.66667 94742|0.59722 94743|0.34722 94744|0.48611 94745|0.73611 94746|0.5 94747|0.94444 94748|0.59722 94749|0.83333 94750|0.55556 94751|0.86111 94752|0.69444 94753|0.66667 94754|0.44444 94755|0.5 94756|0.65278 94757|0.47222 94758|0.79167 94759|0.5 94760|0.44444 94761|0.5 94762|0.65278 94763|0.91667 94764|0.59722 94765|0.81944 94766|0.68056 94767|0.625 94768|0.38889 94769|0.97222 94770|0.38889 94771|0.875 94772|0.72222 94773|0.45833 94774|0.5 94775|0.40278 94776|0.5 94777|0.58333 94778|0.65278 94779|0.69444 94780|0.55556 94781|0.5 94782|0.76389 94783|0.76389 94784|0.51389 94785|0.69444 94786|0.55556 94787|0.55556 94788|0.59722 94789|0.59722 94790|0.58333 94791|0.58333 94792|0.73611 94793|0.51389 94794|0.77778 94795|0.5 94796|0.54167 94797|0.5 94798|0.5 94799|0.63889 94800|0.77778 94801|0.51389 94802|0.58333 94803|0.5 94804|0.75 94805|0.5 94806|0.44444 94807|0.61111 94808|0.18056 94809|0.51389 94810|0.52778 94811|0.5 94812|0.5 94813|0.61111 94814|0.5 94815|0.5 94816|0.79167 94817|0.44444 94818|0.63889 94819|0.5 94820|0.61111 94821|0.44444 94822|0.61111 94823|0.26389 94824|0.58333 94825|0.93056 94826|0.45833 94827|0.54167 94828|0.76389 94829|0.55556 94830|0.70833 94831|0.77778 94832|0.69444 94833|0.75 94834|0.84722 94835|0.66667 94836|0.83333 94837|0.65278 94838|0.88889 94839|0.68056 94840|0.5 94841|0.68056 94842|0.55556 94843|0.65278 94844|0.61111 94845|0.625 94846|0.77778 94847|0.45833 94848|0.56944 94849|0.5 94850|0.73611 94851|0.72222 94852|0.33333 94853|0.56944 94854|0.61111 94855|0.5 94856|0.70833 94857|0.58333 94858|0.69444 94859|0.79167 94860|0.72222 94861|0.86111 94862|0.38889 94863|0.66667 94864|0.90278 94865|0.58333 94866|0.69444 94867|0.66667 94868|0.59722 94869|0.73611 94870|0.76389 94871|0.44444 94872|0.26389 94873|0.16667 94874|0.5 94875|0.63889 94876|0.79167 94877|0.55556 94878|0.41667 94879|0.56944 94880|0.20833 94881|0.625 94882|0.72222 94883|0.79167 94884|0.88889 94885|0.5 94886|0.83333 94887|0.80556 94888|0.52778 94889|0.72222 94890|0.75 94891|0.5 94892|0.5 94893|0.5 94894|0.72222 94895|0.56944 94896|0.44444 94897|0.66667 94898|0.43056 94899|0.65278 94900|0.69444 94901|0.41667 94902|0.68056 94903|0.81944 94904|0.80556 94905|0.55556 94906|0.34722 94907|0.56944 94908|0.40278 94909|0.52778 94910|0.23611 94911|0.5 94912|0.375 94913|0.69444 94914|0.22222 94915|0.56944 94916|0.76389 94917|0.43056 94918|0.69444 94919|0.69444 94920|0.38889 94921|0.58333 94922|0.44444 94923|0.5 94924|0.66667 94925|0.625 94926|0.69444 94927|0.69444 94928|0.61111 94929|0.58333 94930|0.93056 94931|0.5 94932|0.375 94933|0.26389 94934|0.5 94935|0.86111 94936|0.44444 94937|0.63889 94938|0.73611 94939|0.54167 94940|0.61111 94941|0.31944 94942|0.23611 94943|0.44444 94944|0.84722 94945|0.44444 94946|0.56944 94947|0.63889 94948|0.5 94949|0.5 94950|0.31944 94951|0.52778 94952|0.56944 94953|0.77778 94954|0.81944 94955|0.77778 94956|0.61111 94957|0.625 94958|0.73611 94959|0.90278 94960|0.5 94961|0.73611 94962|0.83333 94963|0.73611 94964|0.75 94965|0.69444 94966|0.625 94967|0.55556 94968|0.41667 94969|0.51389 94970|0.72222 94971|0.65278 94972|0.73611 94973|0.43056 94974|0.58333 94975|0.44444 94976|0.5 94977|0.54167 94978|0.94444 94979|0.56944 94980|0.5 94981|0.5 94982|0.5 94983|0.5 94984|0.51389 94985|0.5 94986|0.5 94987|0.56944 94988|0.5 94989|0.52778 94990|0.5 94991|0.5 94992|0.77778 94993|0.58333 94994|0.58333 94995|0.61111 94996|0.51389 94997|0.5 94998|0.5 94999|0.5 95000|0.61111 95001|0.66667 95002|0.375 95003|0.5 95004|0.51389 95005|0.43056 95006|0.5 95007|0.5 95008|0.51389 95009|0.5 95010|0.5 95011|0.5 95012|0.5 95013|0.43056 95014|0.52778 95015|0.5 95016|0.5 95017|0.5 95018|0.36111 95019|0.5 95020|0.5 95021|0.5 95022|0.56944 95023|0.5 95024|0.5 95025|0.59722 95026|0.38889 95027|0.47222 95028|0.5 95029|0.63889 95030|0.27778 95031|0.5 95032|0.51389 95033|0.5 95034|0.44444 95035|0.38889 95036|0.61111 95037|0.51389 95038|0.58333 95039|0.5 95040|0.52778 95041|0.55556 95042|0.5 95043|0.5 95044|0.48611 95045|0.51389 95046|0.5 95047|0.5 95048|0.75 95049|0.70833 95050|0.5 95051|0.47222 95052|0.58333 95053|0.65278 95054|0.56944 95055|0.54167 95056|0.5 95057|0.5 95058|0.5 95059|0.5 95060|0.5 95061|0.38889 95062|0.38889 95063|0.56944 95064|0.5 95065|0.52778 95066|0.76389 95067|0.51389 95068|0.5 95069|0.5 95070|0.5 95071|0.59722 95072|0.55556 95073|0.51389 95074|0.52778 95075|0.59722 95076|0.5 95077|0.5 95078|0.5 95079|0.34722 95080|0.51389 95081|0.5 95082|0.51389 95083|0.5 95084|0.5 95085|0.5 95086|0.51389 95087|0.56944 95088|0.38889 95089|0.31944 95090|0.54167 95091|0.55556 95092|0.5 95093|0.56944 95094|0.56944 95095|0.80556 95096|0.45833 95097|0.34722 95098|0.58333 95099|0.77778 95100|0.77778 95101|0.73611 95102|0.5 95103|0.51389 95104|0.52778 95105|0.5 95106|0.5 95107|0.43056 95108|0.77778 95109|0.75 95110|0.75 95111|0.61111 95112|0.45833 95113|0.55556 95114|0.5 95115|0.80556 95116|0.41667 95117|0.375 95118|0.55556 95119|0.69444 95120|0.79167 95121|0.76389 95122|0.72222 95123|0.44444 95124|0.65278 95125|0.5 95126|0.5 95127|0.69444 95128|0.5 95129|0.5 95130|0.5 95131|0.59722 95132|0.5 95133|0.5 95134|0.5 95135|0.5 95136|0.84722 95137|0.40278 95138|0.41667 95139|0.44444 95140|0.61111 95141|0.65278 95142|0.68056 95143|0.5 95144|0.5 95145|0.72222 95146|0.65278 95147|0.75 95148|0.81944 95149|0.63889 95150|0.48611 95151|0.5 95152|0.51389 95153|0.56944 95154|0.75 95155|0.63889 95156|0.68056 95157|0.5 95158|0.59722 95159|0.63889 95160|0.5 95161|0.51389 95162|0.5 95163|0.43056 95164|0.45833 95165|0.40278 95166|0.41667 95167|0.59722 95168|0.66667 95169|0.72222 95170|0.65278 95171|0.5 95172|0.5 95173|0.47222 95174|0.63889 95175|0.5 95176|0.91667 95177|0.75 95178|0.88889 95179|0.72222 95180|0.77778 95181|0.68056 95182|0.84722 95183|0.93056 95184|0.95833 95185|1 95186|0.59722 95187|0.76389 95188|0.86111 95189|0.875 95190|0.69444 95191|0.66667 95192|0.875 95193|0.91667 95194|0.63889 95195|0.77778 95196|0.68056 95197|0.83333 95198|0.84722 95199|0.83333 95200|0.88889 95201|0.875 95202|0.5 95203|0.73611 95204|0.90278 95205|0.73611 95206|0.63889 95207|0.76389 95208|0.72222 95209|0.5 95210|0.5 95211|0.26389 95212|0.5 95213|0.69444 95214|0.44444 95215|0.58333 95216|0.59722 95217|0.75 95218|0.58333 95219|0.84722 95220|0.86111 95221|0.80556 95222|0.45833 95223|0.44444 95224|0.43056 95225|0.63889 95226|0.54167 95227|0.86111 95228|0.5 95229|0.56944 95230|0.56944 95231|0.41667 95232|0.66667 95233|0.48611 95234|0.5 95235|0.79167 95236|0.55556 95237|0.59722 95238|0.5 95239|0.69444 95240|0.5 95241|0.86111 95242|0.88889 95243|0.84722 95244|0.91667 95245|0.76389 95246|0.56944 95247|0.66667 95248|0.59722 95249|0.47222 95250|0.5 95251|0.625 95252|0.5 95253|0.52778 95254|0.61111 95255|0.51389 95256|0.44444 95257|0.5 95258|0.5 95259|0.5 95260|0.58333 95261|0.68056 95262|0.72222 95263|0.5 95264|0.58333 95265|0.5 95266|0.63889 95267|0.70833 95268|0.77778 95269|0.72222 95270|0.55556 95271|0.44444 95272|0.5 95273|0.5 95274|0.5 95275|0.5 95276|0.625 95277|0.84722 95278|0.44444 95279|0.59722 95280|0.41667 95281|0.5 95282|0.875 95283|0.52778 95284|0.55556 95285|0.5 95286|0.5 95287|0.73611 95288|0.5 95289|0.48611 95290|0.55556 95291|0.55556 95292|0.45833 95293|0.33333 95294|0.77778 95295|0.5 95296|0.5 95297|0.5 95298|0.76389 95299|0.69444 95300|0.20833 95301|0.875 95302|0.76389 95303|0.76389 95304|0.5 95305|0.83333 95306|0.5 95307|0.44444 95308|0.77778 95309|0.33333 95310|0.5 95311|0.51389 95312|0.47222 95313|0.625 95314|0.79167 95315|0.5 95316|0.73611 95317|0.5 95318|0.72222 95319|0.65278 95320|0.61111 95321|0.69444 95322|0.72222 95323|0.56944 95324|0.66667 95325|0.76389 95326|0.26389 95327|0.375 95328|0.16667 95329|0.20833 95330|0.5 95331|0.58333 95332|0.375 95333|0.63889 95334|0.5 95335|0.56944 95336|0.5 95337|0.61111 95338|0.51389 95339|0.51389 95340|0.52778 95341|0.47222 95342|0.77778 95343|0.5 95344|0.55556 95345|0.83333 95346|0.51389 95347|0.63889 95348|0.51389 95349|0.51389 95350|0.5 95351|0.5 95352|0.52778 95353|0.48611 95354|0.59722 95355|0.625 95356|0.55556 95357|0.5 95358|0.34722 95359|0.5 95360|0.48611 95361|0.47222 95362|0.29167 95363|0.5 95364|0.38889 95365|0.38889 95366|0.40278 95367|0.44444 95368|0.43056 95369|0.47222 95370|0.56944 95371|0.5 95372|0.5 95373|0.54167 95374|0.51389 95375|0.77778 95376|0.16667 95377|0.51389 95378|0.5 95379|0.41667 95380|0.41667 95381|0.38889 95382|0.44444 95383|0.44444 95384|0.5 95385|0.5 95386|0.625 95387|0.84722 95388|0.625 95389|0.5 95390|0.65278 95391|0.66667 95392|0.5 95393|0.66667 95394|0.56944 95395|0.72222 95396|0.38889 95397|0.48611 95398|0.48611 95399|0.59722 95400|0.5 95401|0.38889 95402|0.70833 95403|0.61111 95404|0.58333 95405|0.65278 95406|0.5 95407|0.5 95408|0.76389 95409|0.44444 95410|0.58333 95411|0.45833 95412|0.55556 95413|0.38889 95414|0.5 95415|0.5 95416|0.45833 95417|0.5 95418|0.5 95419|0.83333 95420|0.83333 95421|0.52778 95422|0.5 95423|0.5 95424|0.70833 95425|0.51389 95426|0.47222 95427|0.29167 95428|0.5 95429|0.38889 95430|0.5 95431|0.44444 95432|0.51389 95433|0.52778 95434|0.54167 95435|0.5 95436|0.5 95437|0.22222 95438|0.5 95439|0.63889 95440|0.63889 95441|0.55556 95442|0.55556 95443|0.375 95444|0.38889 95445|0.55556 95446|0.52778 95447|0.70833 95448|0.43056 95449|0.33333 95450|0.5 95451|0.56944 95452|0.43056 95453|0.43056 95454|0.44444 95455|0.44444 95456|0.5 95457|0.44444 95458|0.44444 95459|0.38889 95460|0.5 95461|0.5 95462|0.72222 95463|0.55556 95464|0.75 95465|0.5 95466|0.5 95467|0.70833 95468|0.73611 95469|0.5 95470|0.5 95471|0.43056 95472|0.29167 95473|0.38889 95474|0.29167 95475|0.38889 95476|0.5 95477|0.45833 95478|0.77778 95479|0.68056 95480|0.75 95481|0.5 95482|0.45833 95483|0.55556 95484|0.61111 95485|0.55556 95486|0.69444 95487|0.55556 95488|0.59722 95489|0.58333 95490|0.52778 95491|0.68056 95492|0.16667 95493|0.43056 95494|0.43056 95495|0.31944 95496|0.29167 95497|0.51389 95498|0.38889 95499|0.77778 95500|0.36111 95501|0.30556 95502|0.5 95503|0.44444 95504|0.51389 95505|0.52778 95506|0.44444 95507|0.5 95508|0.36111 95509|0.51389 95510|0.5 95511|0.5 95512|0.5 95513|0.48611 95514|0.86111 95515|0.70833 95516|0.83333 95517|0.59722 95518|0.5 95519|0.70833 95520|0.51389 95521|0.51389 95522|0.5 95523|0.5 95524|0.5 95525|0.68056 95526|0.73611 95527|0.44444 95528|0.5 95529|0.69444 95530|0.47222 95531|0.44444 95532|0.5 95533|0.5 95534|0.34722 95535|0.54167 95536|0.63889 95537|0.61111 95538|0.56944 95539|0.625 95540|0.66667 95541|0.76389 95542|0.65278 95543|0.625 95544|0.75 95545|0.59722 95546|0.5 95547|0.80556 95548|0.5 95549|0.51389 95550|0.56944 95551|0.54167 95552|0.5 95553|0.51389 95554|0.5 95555|0.5 95556|0.5 95557|0.59722 95558|0.68056 95559|0.625 95560|0.5 95561|0.55556 95562|0.54167 95563|0.43056 95564|0.54167 95565|0.33333 95566|0.5 95567|0.75 95568|0.875 95569|0.77778 95570|0.79167 95571|0.56944 95572|0.54167 95573|0.5 95574|0.58333 95575|0.68056 95576|0.70833 95577|0.55556 95578|0.375 95579|0.47222 95580|0.41667 95581|0.58333 95582|0.43056 95583|0.52778 95584|0.61111 95585|0.58333 95586|0.44444 95587|0.55556 95588|0.55556 95589|0.5 95590|0.51389 95591|0.61111 95592|0.75 95593|0.625 95594|0.47222 95595|0.5 95596|0.58333 95597|0.66667 95598|0.5 95599|0.63889 95600|0.72222 95601|0.5 95602|0.5 95603|0.5 95604|0.61111 95605|0.44444 95606|0.69444 95607|0.54167 95608|0.5 95609|0.58333 95610|0.55556 95611|0.56944 95612|0.56944 95613|0.5 95614|0.5 95615|0.5 95616|0.5 95617|0.44444 95618|0.65278 95619|0.66667 95620|0.5 95621|0.55556 95622|0.77778 95623|0.51389 95624|0.79167 95625|0.5 95626|0.5 95627|0.5 95628|0.5 95629|0.83333 95630|0.5 95631|0.5 95632|0.86111 95633|0.54167 95634|0.77778 95635|0.61111 95636|0.81944 95637|0.29167 95638|0.77778 95639|0.72222 95640|0.55556 95641|0.68056 95642|0.625 95643|0.55556 95644|0.34722 95645|0.75 95646|0.51389 95647|0.11111 95648|0.59722 95649|0.34722 95650|0.20833 95651|0.81944 95652|0.77778 95653|0.94444 95654|0.75 95655|0.61111 95656|0.66667 95657|0.81944 95658|0.5 95659|0.68056 95660|0.58333 95661|0.81944 95662|0.44444 95663|0.58333 95664|0.86111 95665|0.84722 95666|0.88889 95667|0.80556 95668|0.73611 95669|0.77778 95670|0.63889 95671|0.90278 95672|0.625 95673|0.65278 95674|0.75 95675|0.27778 95676|0.75 95677|0.5 95678|0.34722 95679|0.625 95680|0.59722 95681|0.83333 95682|0.63889 95683|0.70833 95684|0.73611 95685|0.45833 95686|0.44444 95687|0.75 95688|0.69444 95689|0.55556 95690|0.58333 95691|0.80556 95692|0.77778 95693|0.65278 95694|0.68056 95695|0.5 95696|0.55556 95697|0.75 95698|0.59722 95699|0.31944 95700|0.56944 95701|0.48611 95702|0.54167 95703|0.51389 95704|0.5 95705|0.36111 95706|0.51389 95707|0.76389 95708|0.84722 95709|0.95833 95710|0.5 95711|0.5 95712|0.44444 95713|0.38889 95714|0.43056 95715|0.58333 95716|0.48611 95717|0.54167 95718|0.5 95719|0.5 95720|0.51389 95721|0.5 95722|0.48611 95723|0.5 95724|0.5 95725|0.5 95726|0.55556 95727|0.5 95728|0.51389 95729|0.65278 95730|0.55556 95731|0.51389 95732|0.63889 95733|0.5 95734|0.5 95735|0.55556 95736|0.56944 95737|0.70833 95738|0.5 95739|0.51389 95740|0.625 95741|0.375 95742|0.44444 95743|0.58333 95744|0.66667 95745|0.5 95746|0.5 95747|0.5 95748|0.55556 95749|0.625 95750|0.43056 95751|0.44444 95752|0.55556 95753|0.66667 95754|0.625 95755|0.44444 95756|0.51389 95757|0.5 95758|0.5 95759|0.5 95760|0.59722 95761|0.5 95762|0.625 95763|0.5 95764|0.54167 95765|0.51389 95766|0.79167 95767|0.58333 95768|0.55556 95769|0.54167 95770|0.56944 95771|0.44444 95772|0.58333 95773|0.5 95774|0.34722 95775|0.40278 95776|0.44444 95777|0.55556 95778|0.58333 95779|0.63889 95780|0.52778 95781|0.76389 95782|0.68056 95783|0.88889 95784|0.84722 95785|0.69444 95786|0.61111 95787|0.5 95788|0.5 95789|0.52778 95790|0.51389 95791|0.5 95792|0.52778 95793|0.38889 95794|0.5 95795|0.5 95796|0.41667 95797|0.48611 95798|0.44444 95799|0.5 95800|0.45833 95801|0.5 95802|0.88889 95803|0.59722 95804|0.56944 95805|0.5 95806|0.58333 95807|0.54167 95808|0.5 95809|0.77778 95810|0.59722 95811|0.65278 95812|0.59722 95813|0.75 95814|0.72222 95815|0.72222 95816|0.73611 95817|0.54167 95818|0.56944 95819|0.72222 95820|0.72222 95821|0.68056 95822|0.55556 95823|0.875 95824|0.70833 95825|0.70833 95826|0.5 95827|0.81944 95828|0.81944 95829|0.5 95830|0.73611 95831|0.44444 95832|0.55556 95833|0.70833 95834|0.83333 95835|0.88889 95836|1 95837|0.56944 95838|0.625 95839|0.63889 95840|0.66667 95841|0.29167 95842|0.45833 95843|0.73611 95844|0.55556 95845|0.66667 95846|0.65278 95847|0.84722 95848|0.58333 95849|0.79167 95850|0.375 95851|0.25 95852|0.48611 95853|0.5 95854|0.69444 95855|0.48611 95856|0.54167 95857|0.45833 95858|0.55556 95859|0.76389 95860|0.5 95861|0.48611 95862|0.43056 95863|0.5 95864|0.44444 95865|0.5 95866|0.55556 95867|0.65278 95868|0.55556 95869|0.5 95870|0.63889 95871|0.59722 95872|0.5 95873|0.51389 95874|0.66667 95875|0.66667 95876|0.58333 95877|0.625 95878|0.58333 95879|0.76389 95880|0.5 95881|0.5 95882|0.61111 95883|0.59722 95884|0.61111 95885|0.5 95886|0.5 95887|0.54167 95888|0.51389 95889|0.5 95890|0.59722 95891|0.5 95892|0.51389 95893|0.70833 95894|0.5 95895|0.5 95896|0.59722 95897|0.5 95898|0.5 95899|0.65278 95900|0.625 95901|0.65278 95902|0.66667 95903|0.61111 95904|0.43056 95905|0.47222 95906|0.5 95907|0.61111 95908|0.73611 95909|0.72222 95910|0.54167 95911|0.59722 95912|0.5 95913|0.45833 95914|0.63889 95915|0.70833 95916|0.56944 95917|0.5 95918|0.55556 95919|0.58333 95920|0.51389 95921|0.68056 95922|0.55556 95923|0.66667 95924|0.66667 95925|0.43056 95926|0.375 95927|0.5 95928|0.72222 95929|0.61111 95930|0.76389 95931|0.84722 95932|0.51389 95933|0.34722 95934|0.61111 95935|0.66667 95936|0.56944 95937|0.5 95938|0.51389 95939|0.56944 95940|0.72222 95941|0.20833 95942|0.84722 95943|0.83333 95944|0.5 95945|0.5 95946|0.59722 95947|0.5 95948|0.70833 95949|0.5 95950|0.5 95951|0.5 95952|0.52778 95953|0.5 95954|0.58333 95955|0.5 95956|0.63889 95957|0.66667 95958|0.70833 95959|0.66667 95960|0.58333 95961|0.59722 95962|0.61111 95963|0.83333 95964|0.5 95965|0.61111 95966|0.13889 95967|0.93056 95968|0.5 95969|0.58333 95970|0.55556 95971|0.63889 95972|0.45833 95973|0.47222 95974|0.5 95975|0.5 95976|0.51389 95977|0.93056 95978|0.66667 95979|0.56944 95980|0.69444 95981|0.65278 95982|0.81944 95983|0.94444 95984|0.58333 95985|0.58333 95986|0.66667 95987|0.76389 95988|0.61111 95989|0.56944 95990|0.5 95991|0.58333 95992|0.90278 95993|0.45833 95994|0.29167 95995|0.27778 95996|0.51389 95997|0.5 95998|0.31944 95999|0.31944 96000|0.5 96001|0.5 96002|0.5 96003|0.5 96004|0.5 96005|0.375 96006|0.52778 96007|0.5 96008|0.66667 96009|0.55556 96010|0.44444 96011|0.5 96012|0.5 96013|0.5 96014|0.5 96015|0.33333 96016|0.69444 96017|0.5 96018|0.80556 96019|0.51389 96020|0.51389 96021|0.5 96022|0.5 96023|0.44444 96024|0.44444 96025|0.51389 96026|0.5 96027|0.52778 96028|0.55556 96029|0.65278 96030|0.5 96031|0.54167 96032|0.79167 96033|0.55556 96034|0.51389 96035|0.63889 96036|0.5 96037|0.48611 96038|0.51389 96039|0.81944 96040|0.5 96041|0.5 96042|0.55556 96043|0.66667 96044|0.69444 96045|0.73611 96046|0.83333 96047|0.51389 96048|0.51389 96049|0.33333 96050|0.38889 96051|0.5 96052|0.54167 96053|0.51389 96054|0.66667 96055|0.84722 96056|0.54167 96057|0.5 96058|0.5 96059|0.5 96060|0.5 96061|0.40278 96062|0.43056 96063|0.77778 96064|0.63889 96065|0.5 96066|0.75 96067|0.77778 96068|0.59722 96069|0.77778 96070|0.55556 96071|0.79167 96072|0.80556 96073|0.625 96074|0.77778 96075|0.875 96076|0.86111 96077|0.875 96078|0.79167 96079|0.5 96080|0.54167 96081|0.5 96082|0.58333 96083|0.33333 96084|0.625 96085|0.5 96086|0.68056 96087|0.58333 96088|0.54167 96089|0.5 96090|0.5 96091|0.59722 96092|0.5 96093|0.77778 96094|0.75 96095|0.58333 96096|0.76389 96097|0.77778 96098|0.73611 96099|0.66667 96100|0.76389 96101|0.625 96102|0.29167 96103|0.51389 96104|0.83333 96105|0.84722 96106|0.51389 96107|0.66667 96108|0.48611 96109|0.5 96110|0.59722 96111|0.5 96112|0.5 96113|0.44444 96114|0.44444 96115|0.31944 96116|0.5 96117|0.5 96118|0.77778 96119|0.5 96120|0.61111 96121|0.47222 96122|0.23611 96123|0.5 96124|0.5 96125|0.5 96126|0.59722 96127|0.5 96128|0.76389 96129|0.52778 96130|0.5 96131|0.5 96132|0.55556 96133|0.5 96134|0.5 96135|0.65278 96136|0.61111 96137|0.61111 96138|0.63889 96139|0.43056 96140|0.27778 96141|0.61111 96142|0.5 96143|0.54167 96144|0.5 96145|0.48611 96146|0.75 96147|0.59722 96148|0.66667 96149|0.5 96150|0.44444 96151|0.45833 96152|0.5 96153|0.52778 96154|0.66667 96155|0.5 96156|0.44444 96157|0.625 96158|0.68056 96159|0.59722 96160|0.76389 96161|0.44444 96162|0.70833 96163|0.77778 96164|0.90278 96165|0.81944 96166|0.95833 96167|0.41667 96168|0.63889 96169|0.77778 96170|0.73611 96171|0.91667 96172|0.79167 96173|0.86111 96174|0.875 96175|0.86111 96176|0.77778 96177|0.88889 96178|0.72222 96179|0.66667 96180|0.55556 96181|0.80556 96182|0.875 96183|0.88889 96184|0.79167 96185|0.33333 96186|0.51389 96187|0.73611 96188|0.61111 96189|0.59722 96190|0.63889 96191|0.63889 96192|0.83333 96193|0.90278 96194|0.34722 96195|0.48611 96196|0.83333 96197|0.54167 96198|0.45833 96199|0.41667 96200|0.45833 96201|0.56944 96202|0.55556 96203|0.5 96204|0.88889 96205|0.94444 96206|0.5 96207|0.52778 96208|0.48611 96209|0.45833 96210|0.55556 96211|0.33333 96212|0.56944 96213|0.63889 96214|0.83333 96215|0.5 96216|0.41667 96217|0.70833 96218|0.44444 96219|0.70833 96220|0.58333 96221|0.61111 96222|0.81944 96223|0.73611 96224|0.16667 96225|0.81944 96226|0.72222 96227|0.31944 96228|0.5 96229|0.77778 96230|0.72222 96231|0.69444 96232|0.5 96233|0.61111 96234|0.625 96235|0.5 96236|0.61111 96237|0.66667 96238|0.47222 96239|0.72222 96240|0.5 96241|0.5 96242|0.5 96243|0.5 96244|0.5 96245|0.5 96246|0.5 96247|0.44444 96248|0.625 96249|0.59722 96250|0.58333 96251|0.625 96252|0.48611 96253|0.5 96254|0.5 96255|0.68056 96256|0.61111 96257|0.54167 96258|0.5 96259|0.5 96260|0.5 96261|0.5 96262|0.58333 96263|0.72222 96264|0.5 96265|0.59722 96266|0.5 96267|0.5 96268|0.44444 96269|0.5 96270|0.5 96271|0.625 96272|0.5 96273|0.5 96274|0.375 96275|0.40278 96276|0.5 96277|0.54167 96278|0.56944 96279|0.75 96280|0.72222 96281|0.73611 96282|0.30556 96283|0.55556 96284|0.44444 96285|0.44444 96286|0.5 96287|0.56944 96288|0.77778 96289|0.51389 96290|0.52778 96291|0.77778 96292|0.5 96293|0.72222 96294|0.5 96295|0.5 96296|0.5 96297|0.5 96298|0.56944 96299|0.5 96300|0.51389 96301|0.5 96302|0.5 96303|0.79167 96304|0.79167 96305|0.5 96306|0.65278 96307|0.5 96308|0.5 96309|0.76389 96310|0.61111 96311|0.44444 96312|0.40278 96313|0.56944 96314|0.44444 96315|0.56944 96316|0.51389 96317|0.38889 96318|0.52778 96319|0.61111 96320|0.79167 96321|0.75 96322|0.875 96323|0.5 96324|0.98611 96325|0.58333 96326|0.70833 96327|0.47222 96328|0.22222 96329|0.52778 96330|0.55556 96331|0.5 96332|0.38889 96333|0.34722 96334|0.72222 96335|0.63889 96336|0.88889 96337|0.5 96338|0.38889 96339|0.54167 96340|0.5 96341|0.5 96342|0.5 96343|0.68056 96344|0.5 96345|0.47222 96346|0.51389 96347|0.48611 96348|0.5 96349|0.5 96350|0.40278 96351|0.47222 96352|0.5 96353|0.79167 96354|0.55556 96355|0.55556 96356|0.55556 96357|0.69444 96358|0.72222 96359|0.77778 96360|0.5 96361|0.5 96362|0.5 96363|0.59722 96364|0.63889 96365|0.73611 96366|0.77778 96367|0.83333 96368|0.72222 96369|0.5 96370|0.80556 96371|0.5 96372|0.81944 96373|0.51389 96374|0.77778 96375|0.58333 96376|0.88889 96377|0.63889 96378|0.43056 96379|0.5 96380|0.58333 96381|0.77778 96382|0.61111 96383|0.80556 96384|0.58333 96385|0.75 96386|0.5 96387|0.33333 96388|0.29167 96389|0.44444 96390|0.22222 96391|0.54167 96392|0.54167 96393|0.5 96394|0.56944 96395|0.5 96396|0.625 96397|0.81944 96398|0.5 96399|0.68056 96400|0.75 96401|0.5 96402|0.5 96403|0.5 96404|0.56944 96405|0.52778 96406|0.69444 96407|0.61111 96408|0.875 96409|0.5 96410|0.77778 96411|0.48611 96412|0.54167 96413|0.75 96414|0.5 96415|0.61111 96416|0.69444 96417|0.65278 96418|0.65278 96419|0.5 96420|0.80556 96421|0.75 96422|0.23611 96423|0.69444 96424|0.055556 96425|0.5 96426|0.52778 96427|0.73611 96428|0.59722 96429|0.47222 96430|0.48611 96431|0.63889 96432|0.5 96433|0.58333 96434|0.5 96435|0.72222 96436|0.84722 96437|0.80556 96438|0.61111 96439|0.81944 96440|0.77778 96441|0.72222 96442|0.65278 96443|0.63889 96444|0.44444 96445|0.5 96446|0.58333 96447|0.38889 96448|0.55556 96449|0.68056 96450|0.52778 96451|0.63889 96452|0.72222 96453|0.625 96454|0.55556 96455|0.61111 96456|0.45833 96457|0.31944 96458|0.5 96459|0.36111 96460|0.55556 96461|0.5 96462|0.5 96463|0.48611 96464|0.44444 96465|0.5 96466|0.44444 96467|0.5 96468|0.47222 96469|0.59722 96470|0.5 96471|0.5 96472|0.43056 96473|0.79167 96474|0.5 96475|0.47222 96476|0.31944 96477|0.30556 96478|0.375 96479|0.43056 96480|0.40278 96481|0.56944 96482|0.77778 96483|0.81944 96484|0.51389 96485|0.77778 96486|0.59722 96487|0.55556 96488|0.34722 96489|0.5 96490|0.375 96491|0.76389 96492|0.73611 96493|0.45833 96494|0.625 96495|0.5 96496|0.38889 96497|0.48611 96498|0.5 96499|0.55556 96500|0.45833 96501|0.33333 96502|0.27778 96503|0.61111 96504|0.65278 96505|0.58333 96506|0.38889 96507|0.5 96508|0.80556 96509|0.5 96510|0.63889 96511|0.5 96512|0.43056 96513|0.61111 96514|0.5 96515|0.63889 96516|0.5 96517|0.48611 96518|0.55556 96519|0.72222 96520|0.73611 96521|0.84722 96522|0.69444 96523|0.625 96524|0.27778 96525|0.63889 96526|0.47222 96527|0.5 96528|0.48611 96529|0.59722 96530|0.59722 96531|0.66667 96532|0.55556 96533|0.5 96534|0.70833 96535|0.44444 96536|0.33333 96537|0.52778 96538|0.5 96539|0.65278 96540|0.5 96541|0.61111 96542|0.41667 96543|0.5 96544|0.73611 96545|0.58333 96546|0.61111 96547|0.65278 96548|0.5 96549|0.51389 96550|0.61111 96551|0.76389 96552|0.76389 96553|0.75 96554|0.66667 96555|0.77778 96556|0.81944 96557|0.45833 96558|0.81944 96559|0.5 96560|0.44444 96561|0.5 96562|0.61111 96563|0.63889 96564|0.40278 96565|0.51389 96566|0.66667 96567|0.58333 96568|0.45833 96569|0.5 96570|0.5 96571|0.54167 96572|0.5 96573|0.66667 96574|0.5 96575|0.5 96576|0.68056 96577|0.83333 96578|0.72222 96579|0.52778 96580|0.76389 96581|0.66667 96582|0.70833 96583|0.51389 96584|0.75 96585|0.70833 96586|0.55556 96587|0.54167 96588|0.55556 96589|0.5 96590|0.55556 96591|0.59722 96592|0.45833 96593|0.5 96594|0.5 96595|0.5 96596|0.61111 96597|0.68056 96598|0.5 96599|0.375 96600|0.31944 96601|0.36111 96602|0.5 96603|0.5 96604|0.52778 96605|0.54167 96606|0.55556 96607|0.44444 96608|0.77778 96609|0.48611 96610|0.61111 96611|0.45833 96612|0.69444 96613|0.75 96614|0.5 96615|0.38889 96616|0.43056 96617|0.65278 96618|0.41667 96619|0.5 96620|0.5 96621|0.56944 96622|0.5 96623|0.5 96624|0.79167 96625|0.5 96626|0.69444 96627|0.55556 96628|0.68056 96629|0.59722 96630|0.5 96631|0.43056 96632|0.5 96633|0.5 96634|0.65278 96635|0.51389 96636|0.5 96637|0.70833 96638|0.5 96639|0.58333 96640|0.30556 96641|0.70833 96642|0.58333 96643|0.5 96644|0.30556 96645|0.5 96646|0.5 96647|0.5 96648|0.81944 96649|0.43056 96650|0.45833 96651|0.51389 96652|0.52778 96653|0.5 96654|0.5 96655|0.625 96656|0.43056 96657|0.77778 96658|0.72222 96659|0.83333 96660|0.68056 96661|0.61111 96662|0.77778 96663|0.77778 96664|0.5 96665|0.52778 96666|0.55556 96667|0.51389 96668|0.51389 96669|0.45833 96670|0.69444 96671|0.56944 96672|0.70833 96673|0.75 96674|0.61111 96675|0.27778 96676|0.54167 96677|0.52778 96678|0.48611 96679|0.30556 96680|0.56944 96681|0.38889 96682|0.51389 96683|0.5 96684|0.5 96685|0.5 96686|0.59722 96687|0.51389 96688|0.52778 96689|0.47222 96690|0.73611 96691|0.5 96692|0.58333 96693|0.625 96694|0.5 96695|0.5 96696|0.5 96697|0.5 96698|0.5 96699|0.47222 96700|0.5 96701|0.5 96702|0.52778 96703|0.36111 96704|0.58333 96705|0.51389 96706|0.5 96707|0.5 96708|0.5 96709|0.40278 96710|0.5 96711|0.66667 96712|0.76389 96713|0.52778 96714|0.5 96715|0.45833 96716|0.5 96717|0.52778 96718|0.61111 96719|0.66667 96720|0.63889 96721|0.5 96722|0.43056 96723|0.5 96724|0.33333 96725|0.40278 96726|0.5 96727|0.5 96728|0.5 96729|0.51389 96730|0.56944 96731|0.51389 96732|0.80556 96733|0.75 96734|0.65278 96735|0.75 96736|0.66667 96737|0.5 96738|0.5 96739|0.5 96740|0.5 96741|0.63889 96742|0.41667 96743|0.61111 96744|0.5 96745|0.5 96746|0.52778 96747|0.55556 96748|0.34722 96749|0.26389 96750|0.5 96751|0.5 96752|0.5 96753|0.55556 96754|0.66667 96755|0.80556 96756|0.5 96757|0.43056 96758|0.51389 96759|0.5 96760|0.33333 96761|0.5 96762|0.5 96763|0.59722 96764|0.66667 96765|0.58333 96766|0.5 96767|0.58333 96768|0.20833 96769|0.69444 96770|0.72222 96771|0.59722 96772|0.30556 96773|0.77778 96774|0.52778 96775|0.59722 96776|0.5 96777|0.5 96778|0.47222 96779|0.45833 96780|0.5 96781|0.47222 96782|0.55556 96783|0.66667 96784|0.40278 96785|0.56944 96786|0.65278 96787|0.51389 96788|0.55556 96789|0.5 96790|0.5 96791|0.44444 96792|0.54167 96793|0.41667 96794|0.5 96795|0.58333 96796|0.86111 96797|0.61111 96798|0.5 96799|0.52778 96800|0.55556 96801|0.63889 96802|0.5 96803|0.65278 96804|0.47222 96805|0.83333 96806|0.52778 96807|0.69444 96808|0.83333 96809|0.58333 96810|0.59722 96811|0.44444 96812|0.5 96813|0.88889 96814|0.55556 96815|0.44444 96816|0.48611 96817|0.55556 96818|0.29167 96819|0.66667 96820|0.55556 96821|0.73611 96822|0.68056 96823|0.5 96824|0.58333 96825|0.54167 96826|0.55556 96827|0.56944 96828|0.41667 96829|0.54167 96830|0.77778 96831|0.44444 96832|0.5 96833|0.55556 96834|0.72222 96835|0.875 96836|0.5 96837|0.59722 96838|0.77778 96839|0.73611 96840|0.76389 96841|0.75 96842|0.5 96843|0.65278 96844|0.47222 96845|0.58333 96846|0.45833 96847|0.48611 96848|0.5 96849|0.5 96850|0.40278 96851|0.44444 96852|0.47222 96853|0.55556 96854|0.625 96855|0.5 96856|0.5 96857|0.44444 96858|0.59722 96859|0.47222 96860|0.45833 96861|0.48611 96862|0.13889 96863|0.70833 96864|0.70833 96865|0.5 96866|0.58333 96867|0.75 96868|0.36111 96869|0.44444 96870|0.22222 96871|0.68056 96872|0.66667 96873|0.76389 96874|0.63889 96875|0.75 96876|0.51389 96877|0.41667 96878|0.56944 96879|0.52778 96880|0.45833 96881|0.375 96882|0.54167 96883|0.52778 96884|0.55556 96885|0.75 96886|0.55556 96887|0.75 96888|0.5 96889|0.51389 96890|0.55556 96891|0.55556 96892|0.5 96893|0.51389 96894|0.69444 96895|0.5 96896|0.66667 96897|0.55556 96898|0.5 96899|0.5 96900|0.5 96901|0.36111 96902|0.51389 96903|0.5 96904|0.48611 96905|0.5 96906|0.51389 96907|0.36111 96908|0.48611 96909|0.5 96910|0.48611 96911|0.47222 96912|0.55556 96913|0.73611 96914|0.48611 96915|0.63889 96916|0.70833 96917|0.61111 96918|0.61111 96919|0.80556 96920|0.5 96921|0.63889 96922|0.52778 96923|0.5 96924|0.90278 96925|0.5 96926|0.5 96927|0.59722 96928|0.75 96929|0.72222 96930|0.80556 96931|0.77778 96932|0.75 96933|0.98611 96934|0.56944 96935|0.72222 96936|0.38889 96937|0.41667 96938|0.5 96939|0.38889 96940|0.52778 96941|0.55556 96942|0.51389 96943|0.68056 96944|0.72222 96945|0.38889 96946|0.51389 96947|0.76389 96948|0.54167 96949|0.52778 96950|0.66667 96951|0.75 96952|0.61111 96953|0.63889 96954|0.5 96955|0.68056 96956|0.59722 96957|0.27778 96958|0.44444 96959|0.48611 96960|0.55556 96961|0.43056 96962|0.29167 96963|0.55556 96964|0.75 96965|0.58333 96966|0.65278 96967|0.55556 96968|0.61111 96969|0.5 96970|0.5 96971|0.5 96972|0.43056 96973|0.45833 96974|0.95833 96975|0.91667 96976|0.66667 96977|0.5 96978|0.59722 96979|0.56944 96980|0.5 96981|0.75 96982|0.79167 96983|0.5 96984|0.30556 96985|0.33333 96986|0.59722 96987|0.5 96988|0.59722 96989|0.5 96990|0.5 96991|0.54167 96992|0.5 96993|0.5 96994|0.5 96995|0.54167 96996|0.5 96997|0.65278 96998|0.80556 96999|0.61111 97000|0.48611 97001|0.5 97002|0.51389 97003|0.48611 97004|0.5 97005|0.43056 97006|0.48611 97007|0.55556 97008|0.5 97009|0.69444 97010|0.5 97011|0.40278 97012|0.72222 97013|0.70833 97014|0.55556 97015|0.41667 97016|0.47222 97017|0.61111 97018|0.68056 97019|0.73611 97020|0.44444 97021|0.44444 97022|0.44444 97023|0.5 97024|0.5 97025|0.5 97026|0.52778 97027|0.40278 97028|0.81944 97029|0.5 97030|0.45833 97031|0.25 97032|0.56944 97033|0.58333 97034|0.5 97035|0.5 97036|0.5 97037|0.5 97038|0.5 97039|0.5 97040|0.66667 97041|0.76389 97042|0.63889 97043|0.52778 97044|0.59722 97045|0.625 97046|0.77778 97047|0.56944 97048|0.36111 97049|0.80556 97050|0.56944 97051|0.5 97052|0.5 97053|0.5 97054|0.5 97055|0.5 97056|0.88889 97057|0.5 97058|0.61111 97059|0.48611 97060|0.5 97061|0.44444 97062|0.47222 97063|0.51389 97064|0.66667 97065|0.5 97066|0.47222 97067|0.56944 97068|0.5 97069|0.22222 97070|0.5 97071|0.93056 97072|0.33333 97073|0.93056 97074|0.56944 97075|0.40278 97076|0.5 97077|0.58333 97078|0.5 97079|0.68056 97080|0.5 97081|0.5 97082|0.51389 97083|0.5 97084|0.51389 97085|0.55556 97086|0.51389 97087|0.54167 97088|0.5 97089|0.5 97090|0.5 97091|0.5 97092|0.5 97093|0.48611 97094|0.52778 97095|0.5 97096|0.5 97097|0.44444 97098|0.625 97099|0.5 97100|0.31944 97101|0.58333 97102|0.5 97103|0.77778 97104|0.73611 97105|0.58333 97106|0.59722 97107|0.66667 97108|0.69444 97109|0.52778 97110|0.77778 97111|0.65278 97112|0.5 97113|0.5 97114|0.47222 97115|0.41667 97116|0.5 97117|0.55556 97118|0.54167 97119|0.52778 97120|0.5 97121|0.51389 97122|0.56944 97123|0.58333 97124|0.58333 97125|0.5 97126|0.38889 97127|0.36111 97128|0.66667 97129|0.59722 97130|0.5 97131|0.70833 97132|0.5 97133|0.63889 97134|0.5 97135|0.58333 97136|0.51389 97137|0.75 97138|0.31944 97139|0.61111 97140|0.66667 97141|0.5 97142|0.5 97143|0.55556 97144|0.66667 97145|0.51389 97146|0.45833 97147|0.58333 97148|0.45833 97149|0.61111 97150|0.34722 97151|0.51389 97152|0.44444 97153|0.65278 97154|0.58333 97155|0.61111 97156|0.55556 97157|0.61111 97158|0.73611 97159|0.52778 97160|0.55556 97161|0.33333 97162|0.77778 97163|0.79167 97164|0.52778 97165|0.58333 97166|0.69444 97167|0.5 97168|0.38889 97169|0.56944 97170|0.5 97171|0.5 97172|0.5 97173|0.5 97174|0.61111 97175|0.51389 97176|0.58333 97177|0.5 97178|0.43056 97179|0.58333 97180|0.47222 97181|0.56944 97182|0.5 97183|0.5 97184|0.5 97185|0.22222 97186|0.90278 97187|0.79167 97188|0.625 97189|0.52778 97190|0.36111 97191|0.72222 97192|0.77778 97193|0.43056 97194|0.36111 97195|0.81944 97196|0.72222 97197|0.81944 97198|0.70833 97199|0.5 97200|0.69444 97201|0.56944 97202|0.48611 97203|0.69444 97204|0.66667 97205|0.63889 97206|0.33333 97207|0.48611 97208|0.63889 97209|0.29167 97210|0.5 97211|0.79167 97212|0.61111 97213|0.63889 97214|0.33333 97215|0.52778 97216|0.45833 97217|0.72222 97218|0.68056 97219|0.55556 97220|0.56944 97221|0.72222 97222|0.5 97223|0.43056 97224|0.31944 97225|0.5 97226|0.48611 97227|0.625 97228|0.29167 97229|0.52778 97230|0.5 97231|0.65278 97232|0.51389 97233|0.61111 97234|0.5 97235|0.5 97236|0.51389 97237|0.5 97238|0.5 97239|0.51389 97240|0.44444 97241|0.54167 97242|0.5 97243|0.59722 97244|0.5 97245|0.5 97246|0.5 97247|0.5 97248|0.56944 97249|0.61111 97250|0.47222 97251|0.61111 97252|0.5 97253|0.70833 97254|0.58333 97255|0.5 97256|0.44444 97257|0.56944 97258|0.55556 97259|0.5 97260|0.63889 97261|0.36111 97262|0.5 97263|0.51389 97264|0.59722 97265|0.5 97266|0.5 97267|0.55556 97268|0.72222 97269|0.79167 97270|0.41667 97271|0.73611 97272|0.48611 97273|0.65278 97274|0.65278 97275|0.61111 97276|0.51389 97277|0.5 97278|0.72222 97279|0.51389 97280|0.5 97281|0.47222 97282|0.51389 97283|0.52778 97284|0.56944 97285|0.51389 97286|0.5 97287|0.77778 97288|0.55556 97289|0.54167 97290|0.44444 97291|0.66667 97292|0.55556 97293|0.52778 97294|0.5 97295|0.52778 97296|0.55556 97297|0.41667 97298|0.5 97299|0.47222 97300|0.27778 97301|0.5 97302|0.5 97303|0.44444 97304|0.58333 97305|0.61111 97306|0.61111 97307|0.44444 97308|0.63889 97309|0.72222 97310|0.68056 97311|0.66667 97312|0.56944 97313|0.5 97314|0.48611 97315|0.5 97316|0.5 97317|0.375 97318|0.375 97319|0.38889 97320|0.83333 97321|0.5 97322|0.41667 97323|0.52778 97324|0.47222 97325|0.44444 97326|0.56944 97327|0.58333 97328|0.76389 97329|0.36111 97330|0.55556 97331|0.47222 97332|0.23611 97333|0.51389 97334|0.47222 97335|0.44444 97336|0.61111 97337|0.56944 97338|0.94444 97339|0.5 97340|0.5 97341|0.56944 97342|0.625 97343|0.5 97344|0.69444 97345|0.51389 97346|0.5 97347|0.84722 97348|0.77778 97349|0.5 97350|0.54167 97351|0.625 97352|0.44444 97353|0.33333 97354|0.73611 97355|0.38889 97356|0.80556 97357|0.83333 97358|0.52778 97359|0.5 97360|0.83333 97361|0.77778 97362|0.59722 97363|0.75 97364|0.31944 97365|0.5 97366|0.77778 97367|0.5 97368|0.875 97369|0.79167 97370|0.69444 97371|0.625 97372|0.75 97373|0.5 97374|0.58333 97375|0.61111 97376|0.5 97377|0.56944 97378|0.72222 97379|0.72222 97380|0.77778 97381|0.51389 97382|0.5 97383|0.31944 97384|0.66667 97385|0.5 97386|0.29167 97387|0.81944 97388|0.83333 97389|0.70833 97390|0.72222 97391|0.58333 97392|0.79167 97393|0.72222 97394|0.63889 97395|0.48611 97396|0.52778 97397|0.68056 97398|0.48611 97399|0.76389 97400|0.44444 97401|0.48611 97402|0.5 97403|0.63889 97404|0.5 97405|0.52778 97406|0.72222 97407|0.66667 97408|0.5 97409|0.5 97410|0.5 97411|0.25 97412|0.72222 97413|0.68056 97414|0.625 97415|0.86111 97416|0.52778 97417|0.70833 97418|0.84722 97419|0.59722 97420|0.77778 97421|0.34722 97422|0.55556 97423|0.61111 97424|0.84722 97425|0.41667 97426|0.5 97427|0.5 97428|0.5 97429|0.59722 97430|0.77778 97431|0.72222 97432|0.79167 97433|0.61111 97434|0.68056 97435|0.79167 97436|0.77778 97437|0.65278 97438|0.83333 97439|0.79167 97440|0.375 97441|0.40278 97442|0.73611 97443|0.86111 97444|0.88889 97445|0.56944 97446|0.76389 97447|0.79167 97448|0.90278 97449|0.375 97450|0.38889 97451|0.48611 97452|0.48611 97453|0.55556 97454|0.52778 97455|0.61111 97456|0.5 97457|0.5 97458|0.44444 97459|0.875 97460|0.70833 97461|0.5 97462|0.45833 97463|0.58333 97464|0.63889 97465|0.79167 97466|0.5 97467|0.55556 97468|0.5 97469|0.69444 97470|0.38889 97471|0.29167 97472|0.52778 97473|0.38889 97474|0.48611 97475|0.58333 97476|0.625 97477|0.69444 97478|0.75 97479|0.63889 97480|0.51389 97481|0.70833 97482|0.48611 97483|0.375 97484|0.5 97485|0.70833 97486|0.51389 97487|0.55556 97488|0.54167 97489|0.40278 97490|0.16667 97491|0.55556 97492|0.52778 97493|0.51389 97494|0.68056 97495|0.54167 97496|0.5 97497|0.5 97498|0.43056 97499|0.80556 97500|0.72222 97501|0.76389 97502|0.375 97503|0.69444 97504|0.55556 97505|0.94444 97506|0.5 97507|0.70833 97508|0.65278 97509|0.29167 97510|0.61111 97511|0.66667 97512|0.55556 97513|0.5 97514|0.44444 97515|0.31944 97516|0.5 97517|0.5 97518|0.55556 97519|0.66667 97520|0.5 97521|0.47222 97522|0.90278 97523|0.61111 97524|0.52778 97525|0.375 97526|0.47222 97527|0.61111 97528|0.40278 97529|0.76389 97530|0.80556 97531|0.5 97532|0.54167 97533|0.80556 97534|0.84722 97535|0.56944 97536|0.66667 97537|0.47222 97538|0.375 97539|0.36111 97540|0.59722 97541|0.5 97542|0.47222 97543|0.19444 97544|0.875 97545|0.5 97546|0.63889 97547|0.83333 97548|0.76389 97549|0.55556 97550|0.61111 97551|0.79167 97552|0.88889 97553|0.875 97554|0.73611 97555|0.77778 97556|0.5 97557|0.5 97558|0.47222 97559|0.43056 97560|0.55556 97561|0.56944 97562|0.5 97563|0.625 97564|0.68056 97565|0.5 97566|0.65278 97567|0.40278 97568|0.65278 97569|0.47222 97570|0.5 97571|0.54167 97572|0.54167 97573|0.58333 97574|0.44444 97575|0.5 97576|0.51389 97577|0.55556 97578|0.40278 97579|0.56944 97580|0.55556 97581|0.93056 97582|0.5 97583|0.56944 97584|0.77778 97585|0.5 97586|0.44444 97587|0.48611 97588|0.70833 97589|0.5 97590|0.5 97591|0.84722 97592|0.59722 97593|0.43056 97594|0.70833 97595|0.5 97596|0.5 97597|0.5 97598|0.66667 97599|0.76389 97600|0.44444 97601|0.45833 97602|0.5 97603|0.51389 97604|0.43056 97605|0.58333 97606|0.63889 97607|0.58333 97608|0.30556 97609|0.44444 97610|0.5 97611|0.38889 97612|0.66667 97613|0.40278 97614|0.5 97615|0.48611 97616|0.44444 97617|0.375 97618|0.45833 97619|0.40278 97620|0.55556 97621|0.31944 97622|0.5 97623|0.44444 97624|0.55556 97625|0.30556 97626|0.5 97627|0.55556 97628|0.52778 97629|0.5 97630|0.65278 97631|0.65278 97632|0.5 97633|0.75 97634|0.33333 97635|0.61111 97636|0.84722 97637|0.75 97638|0.94444 97639|0.65278 97640|0.77778 97641|0.81944 97642|0.79167 97643|0.77778 97644|0.69444 97645|0.73611 97646|0.66667 97647|0.55556 97648|0.58333 97649|0.61111 97650|0.56944 97651|0.77778 97652|0.75 97653|0.66667 97654|0.5 97655|0.47222 97656|0.51389 97657|0.5 97658|0.5 97659|0.5 97660|0.5 97661|0.5 97662|0.5 97663|0.5 97664|0.56944 97665|0.5 97666|0.58333 97667|0.44444 97668|0.66667 97669|0.45833 97670|0.56944 97671|0.75 97672|0.73611 97673|0.70833 97674|0.83333 97675|0.80556 97676|0.59722 97677|0.63889 97678|0.83333 97679|0.79167 97680|0.81944 97681|0.66667 97682|0.52778 97683|0.52778 97684|0.73611 97685|0.83333 97686|0.36111 97687|0.5 97688|0.5 97689|0.58333 97690|0.55556 97691|0.38889 97692|0.73611 97693|0.52778 97694|0.36111 97695|0.5 97696|0.52778 97697|0.5 97698|0.34722 97699|0.5 97700|0.43056 97701|0.76389 97702|0.375 97703|0.72222 97704|0.43056 97705|0.45833 97706|0.65278 97707|0.55556 97708|0.69444 97709|0.5 97710|0.5 97711|0.34722 97712|0.51389 97713|0.66667 97714|0.55556 97715|0.47222 97716|0.48611 97717|0.51389 97718|0.5 97719|0.375 97720|0.625 97721|0.79167 97722|0.54167 97723|0.48611 97724|0.625 97725|0.5 97726|0.81944 97727|0.5 97728|0.77778 97729|0.5 97730|0.5 97731|0.61111 97732|0.52778 97733|0.52778 97734|0.73611 97735|0.44444 97736|0.44444 97737|0.625 97738|0.56944 97739|0.52778 97740|0.5 97741|0.61111 97742|0.86111 97743|0.52778 97744|0.66667 97745|0.77778 97746|0.5 97747|0.68056 97748|0.75 97749|0.80556 97750|0.5 97751|0.55556 97752|0.375 97753|0.44444 97754|0.44444 97755|0.44444 97756|0.51389 97757|0.44444 97758|0.44444 97759|0.5 97760|0.5 97761|0.5 97762|0.51389 97763|0.51389 97764|0.5 97765|0.51389 97766|0.31944 97767|0.90278 97768|0.70833 97769|0.90278 97770|0.79167 97771|0.83333 97772|0.55556 97773|0.625 97774|0.55556 97775|0.51389 97776|0.55556 97777|0.54167 97778|0.27778 97779|0.41667 97780|0.33333 97781|0.52778 97782|0.43056 97783|0.5 97784|0.27778 97785|0.31944 97786|0.5 97787|0.29167 97788|0.5 97789|0.56944 97790|0.5 97791|0.5 97792|0.66667 97793|0.72222 97794|0.47222 97795|0.52778 97796|0.5 97797|0.23611 97798|0.5 97799|0.44444 97800|0.5 97801|0.40278 97802|0.5 97803|0.68056 97804|0.61111 97805|0.5 97806|0.43056 97807|0.48611 97808|0.5 97809|0.5 97810|0.43056 97811|0.44444 97812|0.5 97813|0.5 97814|0.5 97815|0.40278 97816|0.55556 97817|0.625 97818|0.44444 97819|0.5 97820|0.65278 97821|0.72222 97822|0.81944 97823|0.45833 97824|0.5 97825|0.5 97826|0.80556 97827|0.55556 97828|0.5 97829|0.43056 97830|0.5 97831|0.5 97832|0.54167 97833|0.5 97834|0.5 97835|0.5 97836|0.5 97837|0.5 97838|0.5 97839|0.5 97840|0.5 97841|0.70833 97842|0.41667 97843|0.44444 97844|0.73611 97845|0.55556 97846|0.5 97847|0.5 97848|0.45833 97849|0.68056 97850|0.5 97851|0.56944 97852|0.5 97853|0.5 97854|0.5 97855|0.55556 97856|0.5 97857|0.66667 97858|0.79167 97859|0.55556 97860|0.5 97861|0.65278 97862|0.44444 97863|0.77778 97864|0.84722 97865|0.66667 97866|0.47222 97867|0.72222 97868|0.52778 97869|0.59722 97870|0.5 97871|0.54167 97872|0.625 97873|0.55556 97874|0.5 97875|0.5 97876|0.43056 97877|0.625 97878|0.59722 97879|0.5 97880|0.63889 97881|0.55556 97882|0.5 97883|0.33333 97884|0.56944 97885|0.44444 97886|0.5 97887|0.52778 97888|0.27778 97889|0.76389 97890|0.43056 97891|0.61111 97892|0.58333 97893|0.5 97894|0.5 97895|0.5 97896|0.43056 97897|0.48611 97898|0.31944 97899|0.77778 97900|0.66667 97901|0.76389 97902|0.63889 97903|0.44444 97904|0.80556 97905|0.52778 97906|0.55556 97907|0.5 97908|0.41667 97909|0.68056 97910|0.36111 97911|0.51389 97912|0.41667 97913|0.65278 97914|0.77778 97915|0.61111 97916|0.70833 97917|0.5 97918|0.63889 97919|0.58333 97920|0.51389 97921|0.56944 97922|0.375 97923|0.48611 97924|0.44444 97925|0.45833 97926|0.5 97927|0.61111 97928|0.76389 97929|0.58333 97930|0.52778 97931|0.625 97932|0.5 97933|0.61111 97934|0.5 97935|0.30556 97936|0.5 97937|0.20833 97938|0.52778 97939|0.80556 97940|0.33333 97941|0.73611 97942|0.70833 97943|0.5 97944|0.75 97945|0.80556 97946|0.54167 97947|0.625 97948|0.65278 97949|0.66667 97950|0.54167 97951|0.63889 97952|0.79167 97953|0.66667 97954|0.54167 97955|0.5 97956|0.54167 97957|0.66667 97958|0.5 97959|0.61111 97960|0.5 97961|0.63889 97962|0.81944 97963|0.5 97964|0.58333 97965|0.40278 97966|0.75 97967|0.5 97968|0.66667 97969|0.47222 97970|0.72222 97971|0.48611 97972|0.95833 97973|0.5 97974|0.5 97975|0.69444 97976|0.69444 97977|0.76389 97978|0.66667 97979|0.55556 97980|0.66667 97981|0.44444 97982|0.70833 97983|0.61111 97984|0.52778 97985|0.5 97986|0.54167 97987|0.51389 97988|0.75 97989|0.55556 97990|0.5 97991|0.29167 97992|0.65278 97993|0.54167 97994|0.56944 97995|0.54167 97996|0.59722 97997|0.5 97998|0.63889 97999|0.5 98000|0.625 98001|0.16667 98002|0.38889 98003|0.52778 98004|0.5 98005|0.44444 98006|0.30556 98007|0.70833 98008|0.5 98009|0.5 98010|0.76389 98011|0.43056 98012|0.5 98013|0.52778 98014|0.58333 98015|0.23611 98016|0.45833 98017|0.54167 98018|0.58333 98019|0.47222 98020|0.56944 98021|0.5 98022|0.56944 98023|0.52778 98024|0.55556 98025|0.66667 98026|0.25 98027|0.83333 98028|0.69444 98029|0.625 98030|0.80556 98031|0.61111 98032|0.55556 98033|0.34722 98034|0.55556 98035|0.59722 98036|0.51389 98037|0.54167 98038|0.625 98039|0.5 98040|0.40278 98041|0.5 98042|0.48611 98043|0.68056 98044|0.5 98045|0.66667 98046|0.54167 98047|0.51389 98048|0.18056 98049|0.51389 98050|0.54167 98051|0.65278 98052|0.44444 98053|0.70833 98054|0.66667 98055|0.83333 98056|0.69444 98057|0.5 98058|0.56944 98059|0.5 98060|0.61111 98061|0.76389 98062|0.51389 98063|0.5 98064|0.5 98065|0.58333 98066|0.59722 98067|0.36111 98068|0.52778 98069|0.44444 98070|0.19444 98071|0.43056 98072|0.61111 98073|0.70833 98074|0.5 98075|0.38889 98076|0.45833 98077|0.69444 98078|0.65278 98079|0.5 98080|0.48611 98081|0.59722 98082|0.48611 98083|0.70833 98084|0.625 98085|0.61111 98086|0.51389 98087|0.77778 98088|0.76389 98089|0.44444 98090|0.55556 98091|0.54167 98092|0.83333 98093|0.5 98094|0.625 98095|0.59722 98096|0.43056 98097|0.52778 98098|0.76389 98099|0.77778 98100|0.52778 98101|0.55556 98102|0.56944 98103|0.51389 98104|0.5 98105|0.61111 98106|0.61111 98107|0.44444 98108|0.51389 98109|0.41667 98110|0.76389 98111|0.5 98112|0.61111 98113|0.54167 98114|0.52778 98115|0.33333 98116|0.61111 98117|0.5 98118|0.44444 98119|0.5 98120|0.875 98121|0.66667 98122|0.63889 98123|0.41667 98124|0.69444 98125|0.56944 98126|0.5 98127|0.63889 98128|0.33333 98129|0.58333 98130|0.77778 98131|0.70833 98132|0.61111 98133|0.5 98134|0.58333 98135|0.5 98136|0.40278 98137|0.70833 98138|0.47222 98139|0.51389 98140|0.5 98141|0.51389 98142|0.875 98143|0.56944 98144|0.59722 98145|0.56944 98146|0.625 98147|0.59722 98148|0.63889 98149|0.51389 98150|0.38889 98151|0.69444 98152|0.44444 98153|0.66667 98154|0.55556 98155|0.79167 98156|0.5 98157|0.86111 98158|0.55556 98159|0.27778 98160|0.36111 98161|0.5 98162|0.45833 98163|0.63889 98164|0.63889 98165|0.56944 98166|0.5 98167|0.38889 98168|0.58333 98169|0.55556 98170|0.5 98171|0.625 98172|0.55556 98173|0.22222 98174|0.5 98175|0.5 98176|0.5 98177|0.5 98178|0.5 98179|0.5 98180|0.59722 98181|0.68056 98182|0.75 98183|0.30556 98184|0.77778 98185|0.72222 98186|0.75 98187|0.51389 98188|0.43056 98189|0.65278 98190|0.66667 98191|0.68056 98192|0.80556 98193|0.375 98194|0.29167 98195|0.625 98196|0.625 98197|0.75 98198|0.70833 98199|0.51389 98200|0.55556 98201|0.54167 98202|0.52778 98203|0.76389 98204|0.66667 98205|0.70833 98206|0.44444 98207|0.5 98208|0.72222 98209|0.54167 98210|0.75 98211|0.55556 98212|0.27778 98213|0.59722 98214|0.5 98215|0.45833 98216|0.34722 98217|0.72222 98218|0.61111 98219|0.56944 98220|0.59722 98221|0.55556 98222|0.52778 98223|0.84722 98224|0.55556 98225|0.27778 98226|0.55556 98227|0.79167 98228|0.79167 98229|0.68056 98230|0.66667 98231|0.61111 98232|0.5 98233|0.75 98234|0.5 98235|0.56944 98236|0.58333 98237|0.33333 98238|0.5 98239|0.5 98240|0.48611 98241|0.55556 98242|0.76389 98243|0.36111 98244|0.55556 98245|0.55556 98246|0.66667 98247|0.81944 98248|0.48611 98249|0.98611 98250|0.52778 98251|0.51389 98252|0.5 98253|0.5 98254|0.38889 98255|0.5 98256|0.56944 98257|0.59722 98258|0.5 98259|0.72222 98260|0.79167 98261|0.36111 98262|0.58333 98263|0.83333 98264|0.43056 98265|0.5 98266|0.59722 98267|0.80556 98268|0.69444 98269|0.5 98270|0.52778 98271|0.38889 98272|0.63889 98273|0.43056 98274|0.84722 98275|0.625 98276|0.56944 98277|0.56944 98278|0.52778 98279|0.56944 98280|0.55556 98281|0.61111 98282|0.55556 98283|0.61111 98284|0.51389 98285|0.73611 98286|0.80556 98287|0.79167 98288|0.86111 98289|0.72222 98290|0.44444 98291|0.59722 98292|0.61111 98293|0.625 98294|0.43056 98295|0.55556 98296|0.5 98297|0.72222 98298|0.55556 98299|0.68056 98300|0.55556 98301|0.625 98302|0.66667 98303|0.34722 98304|0.61111 98305|0.52778 98306|0.61111 98307|0.73611 98308|0.41667 98309|0.54167 98310|0.68056 98311|0.61111 98312|0.5 98313|0.61111 98314|0.58333 98315|0.48611 98316|0.77778 98317|0.5 98318|0.52778 98319|0.5 98320|0.90278 98321|0.52778 98322|0.55556 98323|0.31944 98324|0.52778 98325|0.625 98326|0.55556 98327|0.41667 98328|0.66667 98329|0.61111 98330|0.5 98331|0.5 98332|0.43056 98333|0.55556 98334|0.5 98335|0.54167 98336|0.56944 98337|0.66667 98338|0.54167 98339|0.5 98340|0.48611 98341|0.5 98342|0.51389 98343|0.54167 98344|0.81944 98345|0.44444 98346|0.5 98347|0.38889 98348|0.33333 98349|0.5 98350|0.66667 98351|0.69444 98352|0.5 98353|0.58333 98354|0.20833 98355|0.51389 98356|0.5 98357|0.69444 98358|0.38889 98359|0.95833 98360|0.5 98361|0.68056 98362|0.38889 98363|0.75 98364|0.83333 98365|0.58333 98366|0.61111 98367|0.54167 98368|0.5 98369|0.51389 98370|0.59722 98371|0.61111 98372|0.875 98373|0.61111 98374|0.76389 98375|0.5 98376|0.5 98377|0.55556 98378|0.51389 98379|0.86111 98380|0.79167 98381|0.63889 98382|0.5 98383|0.5 98384|0.51389 98385|0.5 98386|0.44444 98387|0.5 98388|0.43056 98389|0.5 98390|0.51389 98391|0.55556 98392|0.55556 98393|0.68056 98394|0.55556 98395|0.5 98396|0.875 98397|0.55556 98398|0.5 98399|0.55556 98400|0.5 98401|0.45833 98402|0.36111 98403|0.61111 98404|0.52778 98405|0.5 98406|0.79167 98407|0.5 98408|0.13889 98409|0.5 98410|0.5 98411|0.5 98412|0.45833 98413|0.63889 98414|0.44444 98415|0.45833 98416|0.625 98417|0.5 98418|0.79167 98419|0.51389 98420|0.52778 98421|0.5 98422|0.54167 98423|0.51389 98424|0.54167 98425|0.66667 98426|0.61111 98427|0.76389 98428|0.5 98429|0.63889 98430|0.5 98431|0.51389 98432|0.47222 98433|0.625 98434|0.5 98435|0.45833 98436|0.51389 98437|0.63889 98438|0.80556 98439|0.51389 98440|0.47222 98441|0.83333 98442|0.59722 98443|0.55556 98444|0.5 98445|0.51389 98446|0.5 98447|0.38889 98448|0.55556 98449|0.625 98450|0.65278 98451|0.66667 98452|0.65278 98453|0.61111 98454|0.5 98455|0.58333 98456|0.5 98457|0.61111 98458|0.27778 98459|0.54167 98460|0.54167 98461|0.48611 98462|0.5 98463|0.55556 98464|0.51389 98465|0.52778 98466|0.72222 98467|0.75 98468|0.66667 98469|0.58333 98470|0.70833 98471|0.61111 98472|0.5 98473|0.94444 98474|0.5 98475|0.63889 98476|0.55556 98477|0.5 98478|0.54167 98479|0.69444 98480|0.84722 98481|0.88889 98482|0.30556 98483|0.48611 98484|0.31944 98485|0.51389 98486|0.44444 98487|0.63889 98488|0.52778 98489|0.45833 98490|0.36111 98491|0.5 98492|0.5 98493|0.56944 98494|0.56944 98495|0.51389 98496|0.5 98497|0.55556 98498|0.36111 98499|0.40278 98500|0.44444 98501|0.45833 98502|0.43056 98503|0.61111 98504|0.36111 98505|0.72222 98506|0.61111 98507|0.5 98508|0.56944 98509|0.54167 98510|0.58333 98511|0.44444 98512|0.375 98513|0.36111 98514|0.31944 98515|0.38889 98516|0.5 98517|0.51389 98518|0.31944 98519|0.43056 98520|0.375 98521|0.29167 98522|0.25 98523|0.33333 98524|0.26389 98525|0.44444 98526|0.59722 98527|0.63889 98528|0.52778 98529|0.40278 98530|0.5 98531|0.51389 98532|0.48611 98533|0.27778 98534|0.54167 98535|0.77778 98536|0.56944 98537|0.61111 98538|0.80556 98539|0.93056 98540|0.5 98541|0.45833 98542|0.33333 98543|0.41667 98544|0.77778 98545|0.54167 98546|0.45833 98547|0.5 98548|0.27778 98549|0.38889 98550|0.51389 98551|0.33333 98552|0.44444 98553|0.38889 98554|0.68056 98555|0.375 98556|0.45833 98557|0.5 98558|0.52778 98559|0.56944 98560|0.36111 98561|0.30556 98562|0.125 98563|0.52778 98564|0.38889 98565|0.55556 98566|0.88889 98567|0.63889 98568|0.31944 98569|0.75 98570|0.73611 98571|0.75 98572|0.61111 98573|0.875 98574|0.72222 98575|0.81944 98576|0.69444 98577|0.56944 98578|0.75 98579|0.70833 98580|0.70833 98581|0.70833 98582|0.65278 98583|0.81944 98584|0.79167 98585|0.75 98586|0.81944 98587|0.77778 98588|0.69444 98589|0.77778 98590|0.69444 98591|0.76389 98592|0.65278 98593|0.72222 98594|0.5 98595|0.625 98596|0.84722 98597|0.61111 98598|0.59722 98599|0.61111 98600|0.29167 98601|0.58333 98602|0.5 98603|0.54167 98604|0.5 98605|0.61111 98606|0.5 98607|0.59722 98608|0.52778 98609|0.5 98610|0.52778 98611|0.70833 98612|0.5 98613|0.5 98614|0.56944 98615|0.59722 98616|0.59722 98617|0.5 98618|0.5 98619|0.5 98620|0.5 98621|0.61111 98622|0.5 98623|0.45833 98624|0.5 98625|0.73611 98626|0.5 98627|0.5 98628|0.56944 98629|0.44444 98630|0.58333 98631|0.44444 98632|0.5 98633|0.51389 98634|0.58333 98635|0.5 98636|0.5 98637|0.5 98638|0.29167 98639|0.73611 98640|0.81944 98641|0.5 98642|0.61111 98643|0.76389 98644|0.70833 98645|0.63889 98646|0.55556 98647|0.625 98648|0.81944 98649|0.58333 98650|0.77778 98651|0.73611 98652|0.52778 98653|0.76389 98654|0.70833 98655|0.70833 98656|0.75 98657|0.5 98658|0.5 98659|0.5 98660|0.5 98661|0.66667 98662|0.54167 98663|0.58333 98664|0.77778 98665|0.69444 98666|0.44444 98667|0.18056 98668|0.27778 98669|0.63889 98670|0.27778 98671|0.44444 98672|0.43056 98673|0.70833 98674|0.61111 98675|0.59722 98676|0.52778 98677|0.63889 98678|0.81944 98679|0.83333 98680|0.5 98681|0.5 98682|0.69444 98683|0.52778 98684|0.41667 98685|0.61111 98686|0.88889 98687|0.77778 98688|0.5 98689|0.44444 98690|0.43056 98691|0.41667 98692|0.70833 98693|0.72222 98694|0.5 98695|0.38889 98696|0.55556 98697|0.47222 98698|0.61111 98699|0.47222 98700|0.5 98701|0.48611 98702|0.41667 98703|0.5 98704|0.33333 98705|0.40278 98706|0.27778 98707|0.79167 98708|0.90278 98709|0.5 98710|0.5 98711|0.51389 98712|0.69444 98713|0.625 98714|0.73611 98715|0.76389 98716|0.51389 98717|0.41667 98718|0.81944 98719|0.95833 98720|0.38889 98721|0.33333 98722|0.72222 98723|0.75 98724|0.76389 98725|0.43056 98726|0.80556 98727|0.5 98728|0.55556 98729|0.55556 98730|0.63889 98731|0.5 98732|0.65278 98733|0.77778 98734|0.51389 98735|0.5 98736|0.66667 98737|0.55556 98738|0.5 98739|0.65278 98740|0.55556 98741|0.5 98742|0.56944 98743|0.5 98744|0.65278 98745|0.625 98746|0.5 98747|0.69444 98748|0.86111 98749|0.69444 98750|0.44444 98751|0.30556 98752|0.29167 98753|0.72222 98754|0.66667 98755|0.5 98756|0.52778 98757|0.44444 98758|0.5 98759|0.59722 98760|0.5 98761|0.59722 98762|0.5 98763|0.5 98764|0.58333 98765|0.52778 98766|0.51389 98767|0.5 98768|0.79167 98769|0.36111 98770|0.30556 98771|0.65278 98772|0.75 98773|0.61111 98774|0.66667 98775|0.54167 98776|0.52778 98777|0.73611 98778|0.13889 98779|0.75 98780|0.47222 98781|0.55556 98782|0.54167 98783|0.59722 98784|0.69444 98785|0.38889 98786|0.48611 98787|0.41667 98788|0.59722 98789|0.69444 98790|0.5 98791|0.41667 98792|0.91667 98793|0.63889 98794|0.69444 98795|0.22222 98796|0.5 98797|0.48611 98798|0.25 98799|0.83333 98800|0.55556 98801|0.76389 98802|0.76389 98803|0.51389 98804|0.5 98805|0.45833 98806|0.47222 98807|0.61111 98808|0.5 98809|0.56944 98810|0.59722 98811|0.5 98812|0.63889 98813|0.5 98814|0.5 98815|0.48611 98816|0.34722 98817|0.44444 98818|0.5 98819|0.52778 98820|0.51389 98821|0.58333 98822|0.5 98823|0.55556 98824|0.5 98825|0.52778 98826|0.72222 98827|0.72222 98828|0.5 98829|0.5 98830|0.44444 98831|0.5 98832|0.54167 98833|0.5 98834|0.5 98835|0.5 98836|0.40278 98837|0.48611 98838|0.5 98839|0.76389 98840|0.5 98841|0.48611 98842|0.5 98843|0.5 98844|0.5 98845|0.5 98846|0.38889 98847|0.70833 98848|0.61111 98849|0.56944 98850|0.5 98851|0.5 98852|0.44444 98853|0.44444 98854|0.29167 98855|0.5 98856|0.5 98857|0.68056 98858|0.75 98859|0.5 98860|0.33333 98861|0.55556 98862|0.45833 98863|0.59722 98864|0.44444 98865|0.44444 98866|0.51389 98867|0.625 98868|0.61111 98869|0.76389 98870|0.58333 98871|0.68056 98872|0.5 98873|0.59722 98874|0.5 98875|0.51389 98876|0.47222 98877|0.31944 98878|0.77778 98879|0.38889 98880|0.40278 98881|0.5 98882|0.91667 98883|0.41667 98884|0.76389 98885|0.16667 98886|0.13889 98887|0.5 98888|0.72222 98889|0.38889 98890|0.48611 98891|0.90278 98892|0.80556 98893|0.73611 98894|0.40278 98895|0.56944 98896|0.5 98897|0.51389 98898|0.79167 98899|0.59722 98900|0.75 98901|0.72222 98902|0.59722 98903|0.72222 98904|0.59722 98905|0.65278 98906|0.58333 98907|0.69444 98908|0.54167 98909|0.58333 98910|0.47222 98911|0.58333 98912|0.59722 98913|0.72222 98914|0.70833 98915|0.72222 98916|0.55556 98917|0.45833 98918|0.27778 98919|0.34722 98920|0.26389 98921|0.54167 98922|0.55556 98923|0.66667 98924|0.61111 98925|0.75 98926|0.69444 98927|0.70833 98928|0.73611 98929|0.76389 98930|0.58333 98931|0.58333 98932|0.56944 98933|0.66667 98934|0.68056 98935|0.5 98936|0.48611 98937|0.83333 98938|0.73611 98939|0.79167 98940|0.94444 98941|0.72222 98942|0.30556 98943|0.81944 98944|0.83333 98945|0.81944 98946|0.86111 98947|0.51389 98948|0.45833 98949|0.80556 98950|0.5 98951|0.66667 98952|0.5 98953|0.51389 98954|0.75 98955|0.5 98956|0.38889 98957|0.375 98958|0.69444 98959|0.5 98960|0.5 98961|0.5 98962|0.55556 98963|0.45833 98964|0.38889 98965|0.27778 98966|0.375 98967|0.65278 98968|0.48611 98969|0.69444 98970|0.61111 98971|0.44444 98972|0.52778 98973|0.5 98974|0.5 98975|0.5 98976|0.36111 98977|0.52778 98978|0.5 98979|0.43056 98980|0.63889 98981|0.5 98982|0.72222 98983|0.68056 98984|0.58333 98985|0.61111 98986|0.69444 98987|0.59722 98988|0.58333 98989|0.65278 98990|0.83333 98991|0.56944 98992|0.5 98993|0.48611 98994|0.5 98995|0.5 98996|0.40278 98997|0.44444 98998|0.52778 98999|0.5 99000|0.54167 99001|0.36111 99002|0.38889 99003|0.38889 99004|0.40278 99005|0.16667 99006|0.66667 99007|0.59722 99008|0.70833 99009|0.69444 99010|0.69444 99011|0.48611 99012|0.5 99013|0.68056 99014|0.52778 99015|0.79167 99016|0.83333 99017|0.72222 99018|0.83333 99019|0.83333 99020|0.36111 99021|0.59722 99022|0.51389 99023|0.63889 99024|0.70833 99025|0.66667 99026|0.70833 99027|0.81944 99028|0.51389 99029|0.54167 99030|0.875 99031|0.76389 99032|0.66667 99033|0.63889 99034|0.16667 99035|0.44444 99036|0.5 99037|0.25 99038|0.22222 99039|0.40278 99040|0.66667 99041|0.44444 99042|0.66667 99043|0.48611 99044|0.76389 99045|0.65278 99046|0.70833 99047|0.61111 99048|0.79167 99049|0.61111 99050|0.72222 99051|0.55556 99052|0.81944 99053|0.66667 99054|0.66667 99055|0.77778 99056|0.66667 99057|0.51389 99058|0.75 99059|0.66667 99060|0.54167 99061|0.5 99062|0.5 99063|0.5 99064|0.5 99065|0.5 99066|0.5 99067|0.52778 99068|0.65278 99069|0.44444 99070|0.76389 99071|0.69444 99072|0.80556 99073|0.5 99074|0.77778 99075|0.51389 99076|0.52778 99077|0.5 99078|0.61111 99079|0.65278 99080|0.61111 99081|0.91667 99082|0.52778 99083|0.38889 99084|0.43056 99085|0.58333 99086|0.38889 99087|0.41667 99088|0.33333 99089|0.20833 99090|0.31944 99091|0.58333 99092|0.58333 99093|0.55556 99094|0.55556 99095|0.59722 99096|0.31944 99097|0.54167 99098|0.41667 99099|0.38889 99100|0.41667 99101|0.55556 99102|0.36111 99103|0.22222 99104|0.36111 99105|0.34722 99106|0.73611 99107|0.40278 99108|0.30556 99109|0.43056 99110|0.52778 99111|0.22222 99112|0.44444 99113|0.44444 99114|0.41667 99115|0.55556 99116|0.55556 99117|0.47222 99118|0.54167 99119|0.55556 99120|0.76389 99121|0.58333 99122|0.65278 99123|0.44444 99124|0.63889 99125|0.45833 99126|0.38889 99127|0.38889 99128|0.41667 99129|0.34722 99130|0.44444 99131|0.31944 99132|0.38889 99133|0.54167 99134|0.22222 99135|0.45833 99136|0.30556 99137|0.41667 99138|0.5 99139|0.5 99140|0.5 99141|0.80556 99142|0.54167 99143|0.22222 99144|0.5 99145|0.65278 99146|0.81944 99147|0.41667 99148|0.58333 99149|0.66667 99150|0.69444 99151|0.5 99152|0.5 99153|0.59722 99154|0.66667 99155|0.66667 99156|0.33333 99157|0.52778 99158|0.77778 99159|0.80556 99160|0.59722 99161|0.51389 99162|0.59722 99163|0.72222 99164|0.5 99165|0.58333 99166|0.73611 99167|0.5 99168|0.88889 99169|0.58333 99170|0.33333 99171|0.5 99172|0.5 99173|0.56944 99174|0.5 99175|0.5 99176|0.5 99177|0.56944 99178|0.55556 99179|0.55556 99180|0.66667 99181|0.54167 99182|0.61111 99183|0.56944 99184|0.54167 99185|0.69444 99186|0.59722 99187|0.77778 99188|0.5 99189|0.5 99190|0.56944 99191|0.52778 99192|0.51389 99193|0.54167 99194|0.5 99195|0.5 99196|0.44444 99197|0.51389 99198|0.5 99199|0.38889 99200|0.72222 99201|0.5 99202|0.56944 99203|0.51389 99204|0.61111 99205|0.58333 99206|0.63889 99207|0.43056 99208|0.56944 99209|0.5 99210|0.76389 99211|0.61111 99212|0.66667 99213|0.58333 99214|0.52778 99215|0.23611 99216|0.55556 99217|0.61111 99218|0.70833 99219|0.5 99220|0.55556 99221|0.44444 99222|0.5 99223|0.55556 99224|0.84722 99225|0.58333 99226|0.5 99227|0.5 99228|0.76389 99229|0.5 99230|0.22222 99231|0.44444 99232|0.5 99233|0.55556 99234|0.52778 99235|0.44444 99236|0.5 99237|0.81944 99238|0.61111 99239|0.79167 99240|0.81944 99241|0.5 99242|0.70833 99243|0.77778 99244|0.77778 99245|0.47222 99246|0.59722 99247|0.55556 99248|0.58333 99249|0.625 99250|0.56944 99251|0.45833 99252|0.40278 99253|0.40278 99254|0.45833 99255|0.52778 99256|0.69444 99257|0.48611 99258|0.44444 99259|0.44444 99260|0.36111 99261|0.5 99262|0.33333 99263|0.5 99264|0.44444 99265|0.68056 99266|0.5 99267|0.66667 99268|0.33333 99269|0.68056 99270|0.70833 99271|0.84722 99272|0.79167 99273|0.20833 99274|0.19444 99275|0.27778 99276|0.25 99277|0.30556 99278|0.30556 99279|0.5 99280|0.65278 99281|0.84722 99282|0.83333 99283|0.66667 99284|0.63889 99285|0.68056 99286|0.58333 99287|0.5 99288|0.43056 99289|0.40278 99290|0.44444 99291|0.5 99292|0.5 99293|0.5 99294|0.69444 99295|0.61111 99296|0.73611 99297|0.93056 99298|0.45833 99299|0.375 99300|0.51389 99301|0.63889 99302|0.5 99303|0.41667 99304|0.5 99305|0.48611 99306|0.5 99307|0.94444 99308|0.79167 99309|0.72222 99310|0.48611 99311|0.5 99312|0.51389 99313|0.36111 99314|0.47222 99315|0.51389 99316|0.56944 99317|0.5 99318|0.47222 99319|0.5 99320|0.5 99321|0.51389 99322|0.5 99323|0.5 99324|0.52778 99325|0.5 99326|0.48611 99327|0.77778 99328|0.76389 99329|0.83333 99330|0.88889 99331|0.77778 99332|0.45833 99333|0.55556 99334|0.61111 99335|0.73611 99336|0.625 99337|0.84722 99338|0.75 99339|0.5 99340|0.65278 99341|0.90278 99342|0.86111 99343|0.61111 99344|0.69444 99345|0.90278 99346|0.77778 99347|0.81944 99348|0.79167 99349|0.81944 99350|0.86111 99351|0.73611 99352|0.5 99353|0.083333 99354|0.43056 99355|0.375 99356|0.20833 99357|0.68056 99358|0.72222 99359|0.75 99360|0.5 99361|0.51389 99362|0.79167 99363|0.65278 99364|0.59722 99365|0.55556 99366|0.40278 99367|0.56944 99368|0.52778 99369|0.73611 99370|0.56944 99371|0.47222 99372|0.56944 99373|0.66667 99374|0.79167 99375|0.86111 99376|0.11111 99377|0.68056 99378|0.83333 99379|0.81944 99380|0.77778 99381|0.44444 99382|0.51389 99383|0.5 99384|0.66667 99385|0.66667 99386|0.76389 99387|0.86111 99388|0.69444 99389|0.66667 99390|0.81944 99391|0.79167 99392|0.65278 99393|0.73611 99394|0.77778 99395|0.68056 99396|0.51389 99397|0.5 99398|0.5 99399|0.5 99400|0.55556 99401|0.5 99402|0.44444 99403|0.5 99404|0.47222 99405|0.52778 99406|0.5 99407|0.51389 99408|0.76389 99409|0.68056 99410|0.5 99411|0.51389 99412|0.58333 99413|0.72222 99414|0.5 99415|0.56944 99416|0.48611 99417|0.44444 99418|0.61111 99419|0.75 99420|0.51389 99421|0.80556 99422|0.5 99423|0.61111 99424|0.625 99425|0.54167 99426|0.55556 99427|0.45833 99428|0.44444 99429|0.55556 99430|0.55556 99431|0.54167 99432|0.5 99433|0.44444 99434|0.52778 99435|0.30556 99436|0.44444 99437|0.48611 99438|0.65278 99439|0.58333 99440|0.25 99441|0.33333 99442|0.44444 99443|0.75 99444|0.61111 99445|0.625 99446|0.26389 99447|0.73611 99448|0.5 99449|0.58333 99450|0.65278 99451|0.65278 99452|0.75 99453|0.69444 99454|0.55556 99455|0.27778 99456|0.66667 99457|0.68056 99458|0.84722 99459|0.5 99460|0.66667 99461|0.055556 99462|0.5 99463|0.63889 99464|0.63889 99465|0.75 99466|0.5 99467|0.5 99468|0.63889 99469|0.58333 99470|0.375 99471|0.56944 99472|0.5 99473|0.61111 99474|0.80556 99475|0.72222 99476|0.84722 99477|0.94444 99478|0.80556 99479|0.81944 99480|0.86111 99481|0.61111 99482|0.66667 99483|0.80556 99484|0.76389 99485|0.84722 99486|0.72222 99487|0.79167 99488|0.84722 99489|0.66667 99490|0.63889 99491|0.43056 99492|0.77778 99493|0.88889 99494|0.73611 99495|0.51389 99496|0.56944 99497|0.5 99498|0.5 99499|0.59722 99500|0.48611 99501|0.5 99502|0.55556 99503|0.625 99504|0.63889 99505|0.79167 99506|0.55556 99507|0.5 99508|0.48611 99509|0.43056 99510|0.66667 99511|0.26389 99512|0.43056 99513|0.29167 99514|0.5 99515|0.30556 99516|0.33333 99517|0.52778 99518|0.56944 99519|0.55556 99520|0.55556 99521|0.36111 99522|0.66667 99523|0.52778 99524|0.26389 99525|0.5 99526|0.5 99527|0.5 99528|0.51389 99529|0.44444 99530|0.48611 99531|0.5 99532|0.34722 99533|0.66667 99534|0.88889 99535|0.5 99536|0.44444 99537|0.38889 99538|0.36111 99539|0.33333 99540|0.52778 99541|0.5 99542|0.5 99543|0.54167 99544|0.48611 99545|0.875 99546|0.51389 99547|0.45833 99548|0.61111 99549|0.44444 99550|0.45833 99551|0.44444 99552|0.44444 99553|0.58333 99554|0.5 99555|0.27778 99556|0.5 99557|0.52778 99558|0.84722 99559|0.66667 99560|0.43056 99561|0.5 99562|0.5 99563|0.23611 99564|0.31944 99565|0.36111 99566|0.63889 99567|0.58333 99568|0.5 99569|0.38889 99570|0.41667 99571|0.5 99572|0.44444 99573|0.5 99574|0.45833 99575|0.86111 99576|0.83333 99577|0.70833 99578|0.69444 99579|0.77778 99580|0.88889 99581|0.86111 99582|0.79167 99583|0.79167 99584|0.83333 99585|0.72222 99586|0.70833 99587|0.80556 99588|0.73611 99589|0.80556 99590|0.66667 99591|0.59722 99592|0.625 99593|0.75 99594|0.77778 99595|0.72222 99596|0.68056 99597|0.76389 99598|0.79167 99599|0.77778 99600|0.44444 99601|0.61111 99602|0.65278 99603|0.52778 99604|0.77778 99605|0.73611 99606|0.5 99607|0.5 99608|0.56944 99609|0.51389 99610|0.63889 99611|0.5 99612|0.55556 99613|0.47222 99614|0.5 99615|0.69444 99616|0.47222 99617|0.34722 99618|0.43056 99619|0.48611 99620|0.63889 99621|0.58333 99622|0.77778 99623|0.44444 99624|0.72222 99625|0.80556 99626|0.76389 99627|0.38889 99628|0.13889 99629|0.51389 99630|0.48611 99631|0.51389 99632|0.5 99633|0.38889 99634|0.38889 99635|0.51389 99636|0.72222 99637|0.76389 99638|0.5 99639|0.38889 99640|0.43056 99641|0.16667 99642|0.30556 99643|0.69444 99644|0.5 99645|0.875 99646|0.875 99647|0.79167 99648|0.5 99649|0.375 99650|0.45833 99651|0.5 99652|0.5 99653|0.43056 99654|0.77778 99655|0.48611 99656|0.55556 99657|0.47222 99658|0.63889 99659|0.45833 99660|0.68056 99661|0.77778 99662|0.5 99663|0.22222 99664|0.79167 99665|0.68056 99666|0.68056 99667|0.76389 99668|0.65278 99669|0.56944 99670|0.55556 99671|0.5 99672|0.5 99673|0.33333 99674|0.56944 99675|0.54167 99676|0.70833 99677|0.5 99678|0.5 99679|0.44444 99680|0.63889 99681|0.5 99682|0.55556 99683|0.5 99684|0.44444 99685|0.5 99686|0.54167 99687|0.77778 99688|0.5 99689|0.5 99690|0.47222 99691|0.55556 99692|0.5 99693|0.58333 99694|0.54167 99695|0.5 99696|0.44444 99697|0.47222 99698|0.33333 99699|0.51389 99700|0.5 99701|0.38889 99702|0.63889 99703|0.27778 99704|0.43056 99705|0.5 99706|0.70833 99707|0.77778 99708|0.41667 99709|0.84722 99710|0.73611 99711|0.70833 99712|0.63889 99713|0.55556 99714|0.51389 99715|0.88889 99716|0.55556 99717|0.34722 99718|0.63889 99719|0.77778 99720|0.76389 99721|0.75 99722|0.45833 99723|0.70833 99724|0.54167 99725|0.91667 99726|0.69444 99727|0.52778 99728|0.55556 99729|0.55556 99730|0.54167 99731|0.5 99732|0.5 99733|0.5 99734|0.54167 99735|0.44444 99736|0.38889 99737|0.375 99738|0.5 99739|0.5 99740|0.5 99741|0.65278 99742|0.5 99743|0.51389 99744|0.5 99745|0.30556 99746|0.33333 99747|0.61111 99748|0.5 99749|0.375 99750|0.36111 99751|0.58333 99752|0.5 99753|0.55556 99754|0.44444 99755|0.63889 99756|0.69444 99757|0.51389 99758|0.63889 99759|0.84722 99760|0.55556 99761|0.72222 99762|0.625 99763|0.77778 99764|0.68056 99765|0.77778 99766|0.83333 99767|0.38889 99768|0.47222 99769|0.68056 99770|0.75 99771|0.375 99772|0.45833 99773|0.51389 99774|0.51389 99775|0.66667 99776|0.75 99777|0.56944 99778|0.68056 99779|0.65278 99780|0.76389 99781|0.56944 99782|0.65278 99783|0.83333 99784|0.80556 99785|0.88889 99786|0.625 99787|0.65278 99788|0.84722 99789|0.88889 99790|0.59722 99791|0.66667 99792|0.5 99793|0.68056 99794|0.69444 99795|0.84722 99796|0.86111 99797|0.875 99798|0.83333 99799|0.91667 99800|0.72222 99801|0.59722 99802|0.59722 99803|0.55556 99804|0.875 99805|0.61111 99806|0.83333 99807|0.70833 99808|0.70833 99809|0.75 99810|0.86111 99811|0.80556 99812|0.70833 99813|0.73611 99814|0.76389 99815|0.43056 99816|0.44444 99817|0.84722 99818|0.66667 99819|0.70833 99820|0.80556 99821|0.72222 99822|0.75 99823|0.83333 99824|0.80556 99825|0.66667 99826|0.66667 99827|0.80556 99828|0.58333 99829|0.65278 99830|0.55556 99831|0.22222 99832|0.20833 99833|0.29167 99834|0.5 99835|0.43056 99836|0.55556 99837|0.31944 99838|0.5 99839|0.41667 99840|0.44444 99841|0.5 99842|0.63889 99843|0.83333 99844|0.63889 99845|0.80556 99846|0.29167 99847|0.77778 99848|0.22222 99849|0.58333 99850|0.79167 99851|0.83333 99852|0.58333 99853|0.80556 99854|0.83333 99855|0.88889 99856|0.56944 99857|0.77778 99858|0.625 99859|0.93056 99860|0.97222 99861|0.69444 99862|0.93056 99863|0.73611 99864|0.61111 99865|0.77778 99866|0.93056 99867|0.54167 99868|0.81944 99869|0.51389 99870|0.68056 99871|0.59722 99872|0.5 99873|0.33333 99874|0.63889 99875|0.73611 99876|0.55556 99877|0.55556 99878|0.5 99879|0.34722 99880|0.61111 99881|0.41667 99882|0.56944 99883|0.63889 99884|0.55556 99885|0.5 99886|0.5 99887|0.5 99888|0.68056 99889|0.77778 99890|0.70833 99891|0.73611 99892|0.58333 99893|0.5 99894|1 99895|0.70833 99896|0.5 99897|0.27778 99898|0.36111 99899|0.61111 99900|0.61111 99901|0.5 99902|0.48611 99903|0.5 99904|0.5 99905|0.5 99906|0.51389 99907|0.5 99908|0.5 99909|0.40278 99910|0.44444 99911|0.5 99912|0.5 99913|0.33333 99914|0.31944 99915|0.61111 99916|0.51389 99917|0.45833 99918|0.51389 99919|0.52778 99920|0.59722 99921|0.5 99922|0.61111 99923|0.5 99924|0.66667 99925|0.30556 99926|0.80556 99927|0.51389 99928|0.61111 99929|0.47222 99930|0.56944 99931|0.29167 99932|0.44444 99933|0.5 99934|0.80556 99935|0.5 99936|0.68056 99937|0.5 99938|0.41667 99939|0.51389 99940|0.68056 99941|0.5 99942|0.75 99943|0.84722 99944|0.41667 99945|0.5 99946|0.75 99947|0.52778 99948|0.47222 99949|0.5 99950|0.45833 99951|0.44444 99952|0.31944 99953|0.55556 99954|0.72222 99955|0.55556 99956|0.59722 99957|0.5 99958|0.40278 99959|0.48611 99960|0.25 99961|0.76389 99962|0.44444 99963|0.38889 99964|0.80556 99965|0.56944 99966|0.5 99967|0.44444 99968|0.5 99969|0.5 99970|0.48611 99971|0.45833 99972|0.51389 99973|0.5 99974|0.5 99975|0.48611 99976|0.55556 99977|0.56944 99978|0.58333 99979|0.5 99980|0.5 99981|0.41667 99982|0.70833 99983|0.55556 99984|0.52778 99985|0.375 99986|0.44444 99987|0.22222 99988|0.69444 99989|0.54167 99990|0.81944 99991|0.61111 99992|0.51389 99993|0.54167 99994|0.5 99995|0.48611 99996|0.63889 99997|0.5 99998|0.68056 99999|0.44444 100000|0.5 100001|0.72222 100002|0.69444 100003|0.22222 100004|0.55556 100005|0.31944 100006|0.5 100007|0.5 100008|0.86111 100009|0.68056 100010|0.70833 100011|0.58333 100012|0.44444 100013|0.58333 100014|0.27778 100015|0.61111 100016|0.40278 100017|0.45833 100018|0.44444 100019|0.44444 100020|0.40278 100021|0.43056 100022|0.5 100023|0.52778 100024|0.86111 100025|0.29167 100026|0.51389 100027|0.51389 100028|0.5 100029|0.52778 100030|0.77778 100031|0.48611 100032|0.80556 100033|0.70833 100034|0.625 100035|0.84722 100036|0.72222 100037|0.83333 100038|0.5 100039|0.36111 100040|0.44444 100041|0.34722 100042|0.40278 100043|0.45833 100044|0.5 100045|0.47222 100046|0.41667 100047|0.72222 100048|0.58333 100049|0.47222 100050|0.76389 100051|0.72222 100052|0.52778 100053|0.63889 100054|0.81944 100055|0.63889 100056|0.5 100057|0.5 100058|0.84722 100059|0.66667 100060|0.52778 100061|0.5 100062|0.43056 100063|0.55556 100064|0.26389 100065|0.5 100066|0.55556 100067|0.29167 100068|0.5 100069|0.375 100070|0.81944 100071|0.51389 100072|0.48611 100073|0.38889 100074|0.58333 100075|0.63889 100076|0.66667 100077|0.5 100078|0.61111 100079|0.5 100080|0.5 100081|0.5 100082|0.56944 100083|0.5 100084|0.77778 100085|0.70833 100086|0.51389 100087|0.47222 100088|0.68056 100089|0.61111 100090|0.68056 100091|0.72222 100092|0.43056 100093|0.61111 100094|0.84722 100095|0.38889 100096|0.45833 100097|0.61111 100098|0.61111 100099|0.54167 100100|0.73611 100101|0.44444 100102|0.77778 100103|0.55556 100104|0.70833 100105|0.69444 100106|0.45833 100107|0.41667 100108|0.47222 100109|0.5 100110|0.51389 100111|0.83333 100112|0.47222 100113|0.52778 100114|0.47222 100115|0.5 100116|0.58333 100117|0.75 100118|0.625 100119|0.65278 100120|0.66667 100121|0.38889 100122|0.5 100123|0.5 100124|0.70833 100125|0.83333 100126|0.5 100127|0.66667 100128|0.72222 100129|0.5 100130|0.5 100131|0.5 100132|0.52778 100133|0.5 100134|0.75 100135|0.36111 100136|0.51389 100137|0.55556 100138|0.55556 100139|0.51389 100140|0.44444 100141|0.73611 100142|0.58333 100143|0.5 100144|0.52778 100145|0.36111 100146|0.72222 100147|0.66667 100148|0.48611 100149|0.45833 100150|0.51389 100151|0.66667 100152|0.77778 100153|0.56944 100154|0.55556 100155|0.5 100156|0.51389 100157|0.5 100158|0.52778 100159|0.68056 100160|0.52778 100161|0.79167 100162|0.75 100163|0.75 100164|0.5 100165|0.43056 100166|0.44444 100167|0.5 100168|0.40278 100169|0.83333 100170|0.52778 100171|0.625 100172|0.5 100173|0.45833 100174|0.375 100175|0.5 100176|0.5 100177|0.38889 100178|0.45833 100179|0.625 100180|0.51389 100181|0.625 100182|0.5 100183|0.52778 100184|0.61111 100185|0.63889 100186|0.56944 100187|0.5 100188|0.55556 100189|0.79167 100190|0.5 100191|0.19444 100192|0.86111 100193|0.81944 100194|0.66667 100195|0.73611 100196|0.625 100197|0.41667 100198|0.5 100199|0.47222 100200|0.54167 100201|0.70833 100202|0.76389 100203|0.83333 100204|0.69444 100205|0.76389 100206|0.51389 100207|0.58333 100208|0.5 100209|0.66667 100210|0.56944 100211|0.52778 100212|0.55556 100213|0.5 100214|0.86111 100215|0.86111 100216|0.75 100217|0.72222 100218|0.66667 100219|0.70833 100220|0.38889 100221|0.54167 100222|0.90278 100223|0.76389 100224|0.27778 100225|0.72222 100226|0.81944 100227|0.65278 100228|0.61111 100229|0.58333 100230|0.65278 100231|0.83333 100232|0.75 100233|0.68056 100234|0.47222 100235|0.77778 100236|0.61111 100237|0.5 100238|0.5 100239|0.68056 100240|0.65278 100241|0.83333 100242|0.72222 100243|0.77778 100244|0.52778 100245|0.61111 100246|0.76389 100247|0.81944 100248|0.5 100249|0.44444 100250|0.79167 100251|0.83333 100252|0.5 100253|0.73611 100254|0.54167 100255|0.48611 100256|0.625 100257|0.84722 100258|0.94444 100259|0.68056 100260|0.59722 100261|0.58333 100262|0.56944 100263|0.69444 100264|0.77778 100265|0.81944 100266|0.93056 100267|0.44444 100268|0.55556 100269|0.83333 100270|0.55556 100271|0.73611 100272|0.875 100273|0.875 100274|0.76389 100275|0.76389 100276|0.75 100277|0.77778 100278|0.66667 100279|0.72222 100280|0.59722 100281|0.61111 100282|0.59722 100283|0.63889 100284|0.5 100285|0.33333 100286|0.31944 100287|0.41667 100288|0.55556 100289|0.73611 100290|0.83333 100291|0.73611 100292|0.63889 100293|0.63889 100294|0.27778 100295|0.47222 100296|0.31944 100297|0.55556 100298|0.875 100299|0.875 100300|0.5 100301|0.66667 100302|0.72222 100303|0.5 100304|0.44444 100305|0.83333 100306|0.94444 100307|0.94444 100308|0.83333 100309|0.5 100310|0.58333 100311|0.97222 100312|0.61111 100313|0.72222 100314|0.56944 100315|0.68056 100316|0.5 100317|0.625 100318|0.72222 100319|0.66667 100320|0.61111 100321|0.54167 100322|0.59722 100323|0.63889 100324|0.91667 100325|0.45833 100326|0.77778 100327|0.43056 100328|0.5 100329|0.5 100330|0.81944 100331|0.59722 100332|0.79167 100333|0.88889 100334|0.72222 100335|0.75 100336|0.73611 100337|0.80556 100338|0.69444 100339|0.69444 100340|0.5 100341|0.5 100342|0.5 100343|0.75 100344|0.55556 100345|0.63889 100346|0.81944 100347|0.55556 100348|0.63889 100349|0.65278 100350|0.65278 100351|0.5 100352|0.36111 100353|0.36111 100354|0.22222 100355|0.52778 100356|0.52778 100357|0.63889 100358|0.61111 100359|0.76389 100360|0.79167 100361|0.77778 100362|0.79167 100363|0.56944 100364|0.61111 100365|0.56944 100366|0.72222 100367|0.61111 100368|0.54167 100369|0.5 100370|0.65278 100371|0.41667 100372|0.55556 100373|0.55556 100374|0.56944 100375|0.54167 100376|0.72222 100377|0.5 100378|0.59722 100379|0.5 100380|0.5 100381|0.30556 100382|0.56944 100383|0.59722 100384|0.88889 100385|0.5 100386|0.5 100387|0.52778 100388|0.625 100389|0.58333 100390|0.86111 100391|0.5 100392|0.65278 100393|0.55556 100394|0.72222 100395|0.55556 100396|0.66667 100397|0.63889 100398|0.55556 100399|0.61111 100400|0.72222 100401|0.65278 100402|0.66667 100403|0.68056 100404|0.34722 100405|0.75 100406|0.51389 100407|0.38889 100408|0.40278 100409|0.70833 100410|0.55556 100411|0.5 100412|0.76389 100413|0.66667 100414|0.86111 100415|0.61111 100416|0.52778 100417|0.5 100418|0.44444 100419|0.44444 100420|0.66667 100421|0.79167 100422|0.73611 100423|0.5 100424|0.55556 100425|0.48611 100426|0.72222 100427|0.81944 100428|0.79167 100429|0.88889 100430|0.27778 100431|0.56944 100432|0.625 100433|0.58333 100434|0.72222 100435|0.5 100436|0.59722 100437|0.66667 100438|0.72222 100439|0.47222 100440|0.77778 100441|0.875 100442|0.73611 100443|0.5 100444|0.75 100445|0.5 100446|0.36111 100447|0.36111 100448|0.38889 100449|0.44444 100450|0.68056 100451|0.59722 100452|0.75 100453|0.45833 100454|0.63889 100455|0.63889 100456|0.81944 100457|0.77778 100458|0.51389 100459|0.72222 100460|0.51389 100461|0.875 100462|0.66667 100463|0.77778 100464|0.59722 100465|0.61111 100466|0.625 100467|0.56944 100468|0.63889 100469|0.73611 100470|0.83333 100471|0.45833 100472|0.73611 100473|0.38889 100474|0.59722 100475|0.51389 100476|0.55556 100477|0.80556 100478|0.66667 100479|0.56944 100480|0.59722 100481|0.44444 100482|0.38889 100483|0.76389 100484|0.83333 100485|0.5 100486|0.84722 100487|0.73611 100488|0.5 100489|0.61111 100490|0.77778 100491|0.55556 100492|0.66667 100493|0.86111 100494|0.66667 100495|0.61111 100496|0.375 100497|0.52778 100498|0.5 100499|0.75 100500|0.81944 100501|0.72222 100502|0.66667 100503|0.5 100504|0.76389 100505|0.69444 100506|0.68056 100507|0.81944 100508|0.75 100509|0.5 100510|0.72222 100511|0.5 100512|0.45833 100513|0.77778 100514|0.51389 100515|0.54167 100516|0.5 100517|0.51389 100518|0.5 100519|0.5 100520|0.70833 100521|0.5 100522|0.63889 100523|0.70833 100524|0.5 100525|0.84722 100526|0.5 100527|0.58333 100528|0.66667 100529|0.68056 100530|0.66667 100531|0.51389 100532|0.5 100533|0.75 100534|0.86806 100535|0.5 100536|0.72222 100537|0.41667 100538|0.63889 100539|0.80556 100540|0.65278 100541|0.625 100542|0.51389 100543|0.65278 100544|0.70833 100545|0.75 100546|0.55556 100547|0.5 100548|0.61111 100549|0.38889 100550|0.5 100551|0.38889 100552|0.16667 100553|0.73611 100554|0.70833 100555|0.61111 100556|0.5 100557|0.80556 100558|0.5 100559|0.5 100560|0.88889 100561|0.43056 100562|0.65278 100563|0.47222 100564|0.48611 100565|0.5 100566|0.77778 100567|0.5 100568|0.66667 100569|0.52778 100570|0.75 100571|0.5 100572|0.375 100573|0.5 100574|0.88889 100575|0.5 100576|0.5 100577|0.58333 100578|0.72222 100579|0.70833 100580|0.63889 100581|0.76389 100582|0.54167 100583|0.88889 100584|0.5 100585|0.44444 100586|0.84722 100587|0.59722 100588|0.55556 100589|0.69444 100590|0.5 100591|0.625 100592|0.75 100593|0.625 100594|0.75 100595|0.69444 100596|0.55556 100597|0.56944 100598|0.66667 100599|0.68056 100600|0.69444 100601|0.83333 100602|0.51389 100603|0.55556 100604|0.70833 100605|0.59722 100606|0.55556 100607|0.83333 100608|0.5 100609|0.59722 100610|0.5 100611|0.66667 100612|0.66667 100613|0.61111 100614|0.66667 100615|0.77778 100616|0.66667 100617|0.61111 100618|0.51389 100619|0.65278 100620|0.80556 100621|0.68056 100622|0.55556 100623|0.375 100624|0.66667 100625|0.65278 100626|0.69444 100627|0.76389 100628|0.58333 100629|0.63889 100630|0.61111 100631|0.36111 100632|0.68056 100633|0.52778 100634|0.55556 100635|0.875 100636|0.70833 100637|0.77778 100638|0.66667 100639|0.5 100640|0.5 100641|0.65278 100642|0.77778 100643|0.73611 100644|0.65278 100645|0.58333 100646|0.61111 100647|0.70833 100648|0.56944 100649|0.79167 100650|0.55556 100651|0.58333 100652|0.56944 100653|0.5 100654|0.59722 100655|0.55556 100656|0.5 100657|0.56944 100658|0.5 100659|0.625 100660|0.54167 100661|0.59722 100662|0.44444 100663|0.55556 100664|0.94444 100665|0.58333 100666|0.63889 100667|0.56944 100668|0.5 100669|0.36111 100670|0.5 100671|0.94444 100672|0.69444 100673|0.61111 100674|0.51389 100675|0.70833 100676|0.54167 100677|0.73611 100678|0.5 100679|0.65278 100680|0.5 100681|0.51389 100682|0.47222 100683|0.81944 100684|0.61111 100685|0.83333 100686|0.625 100687|0.68056 100688|0.76389 100689|0.77778 100690|0.61111 100691|0.90278 100692|0.54167 100693|0.75 100694|0.73611 100695|0.56944 100696|0.75 100697|0.51389 100698|0.5 100699|0.61111 100700|0.51389 100701|0.47222 100702|0.68056 100703|0.52778 100704|0.5 100705|0.5 100706|0.375 100707|0.68056 100708|0.48611 100709|0.61111 100710|0.61111 100711|0.40278 100712|0.59722 100713|0.59722 100714|0.58333 100715|0.58333 100716|0.52778 100717|0.55556 100718|0.51389 100719|0.55556 100720|0.44444 100721|0.72222 100722|0.68056 100723|0.72222 100724|0.68056 100725|0.63889 100726|0.625 100727|0.59722 100728|0.56944 100729|0.56944 100730|0.875 100731|0.75 100732|0.5 100733|0.63889 100734|0.55556 100735|0.81944 100736|0.48611 100737|0.61111 100738|0.58333 100739|0.66667 100740|0.72222 100741|0.47222 100742|0.68056 100743|0.61111 100744|0.52778 100745|0.66667 100746|0.70833 100747|0.80556 100748|0.40278 100749|0.58333 100750|0.69444 100751|0.66667 100752|0.77778 100753|0.625 100754|0.73611 100755|0.63889 100756|0.30556 100757|0.23611 100758|0.31944 100759|0.5 100760|0.625 100761|0.23611 100762|0.22222 100763|0.44444 100764|0.45833 100765|0.55556 100766|0.38889 100767|0.625 100768|0.625 100769|0.61111 100770|0.83333 100771|0.72222 100772|0.51389 100773|0.5 100774|0.80556 100775|0.80556 100776|0.75 100777|0.98611 100778|0.80556 100779|0.70833 100780|0.66667 100781|0.63889 100782|0.86111 100783|0.84722 100784|0.80556 100785|0.83333 100786|0.91667 100787|0.88889 100788|0.73611 100789|0.55556 100790|0.58333 100791|0.80556 100792|0.86111 100793|0.68056 100794|0.88889 100795|0.69444 100796|0.45833 100797|0.5 100798|0.5 100799|0.5 100800|0.72222 100801|0.75 100802|0.73611 100803|0.44444 100804|0.52778 100805|0.56944 100806|0.56944 100807|0.77778 100808|0.61111 100809|0.65278 100810|0.55556 100811|0.47222 100812|0.52778 100813|0.44444 100814|0.70833 100815|0.55556 100816|0.55556 100817|0.43056 100818|0.5 100819|0.68056 100820|0.51389 100821|0.44444 100822|0.88889 100823|0.81944 100824|0.51389 100825|0.45833 100826|0.5 100827|0.59722 100828|0.55556 100829|0.5 100830|0.59722 100831|0.77778 100832|0.55556 100833|0.625 100834|0.5 100835|0.66667 100836|0.73611 100837|0.77778 100838|0.76389 100839|0.70833 100840|0.83333 100841|0.93056 100842|0.72222 100843|0.66667 100844|0.77778 100845|0.69444 100846|0.80556 100847|0.83333 100848|0.69444 100849|0.5 100850|0.63889 100851|0.51389 100852|0.68056 100853|0.625 100854|0.48611 100855|0.83333 100856|0.81944 100857|0.80556 100858|0.86111 100859|0.80556 100860|0.79167 100861|0.63889 100862|0.61111 100863|0.375 100864|0.38889 100865|0.72222 100866|0.73611 100867|0.86111 100868|0.81944 100869|0.58333 100870|0.65278 100871|0.51389 100872|0.73611 100873|0.75 100874|0.43056 100875|0.5 100876|0.44444 100877|0.5 100878|0.5 100879|0.47222 100880|0.51389 100881|0.73611 100882|0.88889 100883|0.48611 100884|0.45833 100885|0.56944 100886|0.16667 100887|0.70833 100888|0.66667 100889|0.70833 100890|0.55556 100891|0.70833 100892|0.70833 100893|0.75 100894|0.72222 100895|0.75 100896|0.70833 100897|0.76389 100898|0.66667 100899|0.75 100900|0.73611 100901|0.63889 100902|0.77778 100903|0.51389 100904|0.55556 100905|0.375 100906|0.54167 100907|0.625 100908|0.66667 100909|0.5 100910|0.65278 100911|0.52778 100912|0.5 100913|0.36111 100914|0.5 100915|0.55556 100916|0.5 100917|0.61111 100918|0.5 100919|0.44444 100920|0.5 100921|0.27778 100922|0.52778 100923|0.5 100924|0.5 100925|0.5 100926|0.59722 100927|0.55556 100928|0.54167 100929|0.625 100930|0.54167 100931|0.77778 100932|0.68056 100933|0.75 100934|0.44444 100935|0.59722 100936|0.48611 100937|0.38889 100938|0.80556 100939|0.36111 100940|0.45833 100941|0.31944 100942|0.76389 100943|0.75 100944|0.54167 100945|0.11111 100946|0.48611 100947|0.5 100948|0.5 100949|0.5 100950|0.5 100951|0.5 100952|0.52778 100953|0.45833 100954|0.52778 100955|0.80556 100956|0.5 100957|0.59722 100958|0.77778 100959|0.72222 100960|0.625 100961|0.5 100962|0.61111 100963|0.34722 100964|0.5 100965|0.33333 100966|0.27778 100967|0.875 100968|0.5 100969|0.5 100970|0.5 100971|0.51389 100972|0.54167 100973|0.5 100974|0.5 100975|0.5 100976|0.75 100977|0.5 100978|0.72222 100979|0.5 100980|0.5 100981|0.51389 100982|0.54167 100983|0.55556 100984|0.625 100985|0.58333 100986|0.36111 100987|0.33333 100988|0.40278 100989|0.38889 100990|0.66667 100991|0.5 100992|0.56944 100993|0.61111 100994|0.55556 100995|0.90278 100996|0.80556 100997|0.5 100998|0.51389 100999|0.5 101000|0.5 101001|0.30556 101002|0.38889 101003|0.5 101004|0.51389 101005|0.58333 101006|0.63889 101007|0.68056 101008|0.5 101009|0.5 101010|0.5 101011|0.38889 101012|0.5 101013|0.45833 101014|0.51389 101015|0.66667 101016|0.5 101017|0.33333 101018|0.55556 101019|0.51389 101020|0.5 101021|0.72222 101022|0.5 101023|0.70833 101024|0.26389 101025|0.77778 101026|0.5 101027|0.54167 101028|0.63889 101029|0.51389 101030|0.69444 101031|0.75 101032|0.81944 101033|0.40278 101034|0.5 101035|0.63889 101036|0.66667 101037|0.76389 101038|0.5 101039|0.48611 101040|0.41667 101041|0.22222 101042|0.72222 101043|0.55556 101044|0.66667 101045|0.70833 101046|0.69444 101047|0.75 101048|0.88889 101049|0.94444 101050|0.52778 101051|0.33333 101052|0.73611 101053|0.58333 101054|0.77778 101055|0.55556 101056|0.91667 101057|0.61111 101058|0.48611 101059|0.41667 101060|0.55556 101061|0.5 101062|0.72222 101063|0.33333 101064|0.33333 101065|0.55556 101066|0.73611 101067|0.55556 101068|0.625 101069|0.41667 101070|0.63889 101071|0.625 101072|0.55556 101073|0.68056 101074|0.69444 101075|0.69444 101076|0.77778 101077|0.5 101078|0.63889 101079|0.5 101080|0.36111 101081|0.5 101082|0.5 101083|0.58333 101084|0.33333 101085|0.65278 101086|0.58333 101087|0.30556 101088|0.56944 101089|0.5 101090|0.5 101091|0.5 101092|0.84722 101093|0.75 101094|0.73611 101095|0.72222 101096|0.84722 101097|0.5 101098|0.5 101099|0.5 101100|0.68056 101101|0.5 101102|0.5 101103|0.25 101104|0.56944 101105|0.77778 101106|0.58333 101107|0.51389 101108|0.56944 101109|0.94444 101110|0.43056 101111|0.63889 101112|0.72222 101113|0.5 101114|0.54167 101115|0.5 101116|0.80556 101117|0.43056 101118|0.86111 101119|0.68056 101120|0.22222 101121|0.51389 101122|0.48611 101123|0.73611 101124|0.52778 101125|0.77778 101126|0.58333 101127|0.69444 101128|0.73611 101129|0.5 101130|0.90278 101131|0.68056 101132|0.52778 101133|0.55556 101134|0.48611 101135|0.83333 101136|0.27778 101137|0.38889 101138|0.51389 101139|0.65278 101140|0.59722 101141|0.58333 101142|0.61111 101143|0.5 101144|0.61111 101145|0.45833 101146|0.63889 101147|0.76389 101148|0.76389 101149|0.80556 101150|0.625 101151|0.66667 101152|0.38889 101153|0.72222 101154|0.5 101155|0.23611 101156|0.625 101157|0.375 101158|0.66667 101159|0.77778 101160|0.45833 101161|0.66667 101162|0.33333 101163|0.56944 101164|0.61111 101165|0.73611 101166|0.5 101167|0.52778 101168|0.41667 101169|0.625 101170|0.56944 101171|0.5 101172|0.875 101173|0.22222 101174|0.66667 101175|0.59722 101176|0.5 101177|0.43056 101178|0.52778 101179|0.51389 101180|0.47222 101181|0.59722 101182|0.5 101183|0.55556 101184|0.66667 101185|0.625 101186|0.5 101187|0.625 101188|0.5 101189|0.52778 101190|0.51389 101191|0.58333 101192|0.5 101193|0.33333 101194|0.45833 101195|0.5 101196|0.45833 101197|0.69444 101198|0.76389 101199|0.56944 101200|0.19444 101201|0.27778 101202|0.19444 101203|0.5 101204|0.83333 101205|0.88889 101206|0.83333 101207|0.125 101208|0.51389 101209|0.83333 101210|0.61111 101211|0.55556 101212|0.55556 101213|0.5 101214|0.5 101215|0.55556 101216|0.5 101217|0.5 101218|0.51389 101219|0.68056 101220|0.5 101221|0.5 101222|0.58333 101223|0.625 101224|0.5 101225|0.52778 101226|0.29167 101227|0.5 101228|0.5 101229|0.44444 101230|0.40278 101231|0.56944 101232|0.51389 101233|0.55556 101234|0.5 101235|0.5 101236|0.5 101237|0.5 101238|0.41667 101239|0.5 101240|0.5 101241|0.5 101242|0.61111 101243|0.38889 101244|0.58333 101245|0.5 101246|0.51389 101247|0.58333 101248|0.68056 101249|0.80556 101250|0.73611 101251|0.73611 101252|0.5 101253|0.5 101254|0.5 101255|0.5 101256|0.59722 101257|0.61111 101258|0.38889 101259|0.61111 101260|0.5 101261|0.5 101262|0.5 101263|0.5 101264|0.45833 101265|0.5 101266|0.45833 101267|0.43056 101268|0.55556 101269|0.56944 101270|0.5 101271|0.56944 101272|0.55556 101273|0.65278 101274|0.5 101275|0.56944 101276|0.47222 101277|0.5 101278|0.5 101279|0.51389 101280|0.5 101281|0.72222 101282|0.69444 101283|0.52778 101284|0.61111 101285|0.58333 101286|0.61111 101287|0.69444 101288|0.77778 101289|0.56944 101290|0.81944 101291|0.86111 101292|0.55556 101293|0.81944 101294|0.88889 101295|0.5 101296|0.52778 101297|0.52778 101298|0.875 101299|0.72222 101300|0.43056 101301|0.47222 101302|0.33333 101303|0.77778 101304|0.5 101305|0.5 101306|0.66667 101307|0.83333 101308|0.66667 101309|0.5 101310|0.5 101311|0.5 101312|0.52778 101313|0.40278 101314|0.5 101315|0.36111 101316|0.69444 101317|0.5 101318|0.44444 101319|0.38889 101320|0.59722 101321|0.52778 101322|0.33333 101323|0.41667 101324|0.43056 101325|0.34722 101326|0.5 101327|0.63889 101328|0.59722 101329|0.51389 101330|0.5 101331|0.68056 101332|0.5 101333|0.59722 101334|0.69444 101335|0.38889 101336|0.43056 101337|0.81944 101338|0.31944 101339|0.83333 101340|0.38889 101341|0.5 101342|0.56944 101343|0.76389 101344|0.70833 101345|0.5 101346|0.36111 101347|0.5 101348|0.5 101349|0.5 101350|0.47222 101351|0.77778 101352|0.51389 101353|0.5 101354|0.5 101355|0.5 101356|0.40278 101357|0.5 101358|0.58333 101359|0.44444 101360|0.52778 101361|0.5 101362|0.38889 101363|0.23611 101364|0.33333 101365|0.44444 101366|0.41667 101367|0.47222 101368|0.59722 101369|0.44444 101370|0.5 101371|0.58333 101372|0.5 101373|0.5 101374|0.625 101375|0.44444 101376|0.54167 101377|0.29167 101378|0.30556 101379|0.55556 101380|0.5 101381|0.48611 101382|0.41667 101383|0.51389 101384|0.66667 101385|0.80556 101386|0.48611 101387|0.36111 101388|0.58333 101389|0.69444 101390|0.79167 101391|0.76389 101392|0.51389 101393|0.25 101394|0.79167 101395|0.90278 101396|0.72222 101397|0.45833 101398|0.70833 101399|0.61111 101400|0.69444 101401|0.56944 101402|0.72222 101403|0.56944 101404|0.5 101405|0.47222 101406|0.43056 101407|0.63889 101408|0.59722 101409|0.27778 101410|0.54167 101411|0.84722 101412|0.80556 101413|0.63889 101414|0.43056 101415|0.5 101416|0.5 101417|0.88889 101418|0.81944 101419|0.59722 101420|0.83333 101421|0.81944 101422|0.65278 101423|0.72222 101424|0.5 101425|0.47222 101426|0.41667 101427|0.22222 101428|0.56944 101429|0.76389 101430|0.5 101431|0.58333 101432|0.5 101433|0.48611 101434|0.36111 101435|0.5 101436|0.55556 101437|0.5 101438|0.23611 101439|0.34722 101440|0.54167 101441|0.45833 101442|0.23611 101443|0.23611 101444|0.45833 101445|0.29167 101446|0.375 101447|0.52778 101448|0.45833 101449|0.40278 101450|0.48611 101451|0.68056 101452|0.5 101453|0.5 101454|0.44444 101455|0.5 101456|0.5 101457|0.55556 101458|0.5 101459|0.375 101460|0.5 101461|0.375 101462|0.40278 101463|0.63889 101464|0.66667 101465|0.125 101466|0.48611 101467|0.5 101468|0.73611 101469|0.69444 101470|0.70833 101471|0.55556 101472|0.61111 101473|0.48611 101474|0.5 101475|0.55556 101476|0.5 101477|0.38889 101478|0.36111 101479|0.81944 101480|0.875 101481|0.80556 101482|0.72222 101483|0.48611 101484|0.375 101485|0.66667 101486|0.55556 101487|0.375 101488|0.27778 101489|0.61111 101490|0.5 101491|0.44444 101492|0.63889 101493|0.63889 101494|0.47222 101495|0.47222 101496|0.58333 101497|0.625 101498|0.73611 101499|0.38889 101500|0.27778 101501|0.48611 101502|0.52778 101503|0.88889 101504|0.69444 101505|0.44444 101506|0.069444 101507|0.66667 101508|0.91667 101509|0.91667 101510|0.055556 101511|0.44444 101512|0.77778 101513|0.61111 101514|0.44444 101515|0.27778 101516|0.47222 101517|0.63889 101518|0.77778 101519|0.625 101520|0.5 101521|0.61111 101522|0.55556 101523|0.43056 101524|0.625 101525|0.75 101526|0.25 101527|0.75 101528|0.72222 101529|0.54167 101530|0.77778 101531|0.055556 101532|0.18056 101533|0.40278 101534|0.30556 101535|0.72222 101536|0.70833 101537|0.59722 101538|0.72222 101539|0.68056 101540|0.69444 101541|0.72222 101542|0.72222 101543|0.68056 101544|0.76389 101545|0.75 101546|0.61111 101547|0.47222 101548|0.30556 101549|0.72222 101550|0.013889 101551|0.66667 101552|0.77778 101553|0.69444 101554|0.86111 101555|0.81944 101556|0.70833 101557|0.76389 101558|0.94444 101559|0.79167 101560|0.80556 101561|0.63889 101562|0.72222 101563|0.77778 101564|0.44444 101565|0.41667 101566|0.375 101567|0.5 101568|0.44444 101569|0.58333 101570|0.5 101571|0.40278 101572|0.43056 101573|0.41667 101574|0.63889 101575|0.36111 101576|0.44444 101577|0.59722 101578|0.56944 101579|0.625 101580|0.47222 101581|0.52778 101582|0.45833 101583|0.70833 101584|0.58333 101585|0.51389 101586|0.70833 101587|0.18056 101588|0.47222 101589|0.16667 101590|0.77778 101591|0.77778 101592|0.76389 101593|0.77778 101594|0.75 101595|0.80556 101596|0.29167 101597|0.33333 101598|0.11111 101599|0.73611 101600|0.29167 101601|0.59722 101602|0.86111 101603|0.63889 101604|0.63889 101605|0.055556 101606|0.69444 101607|0.76389 101608|0.61111 101609|0.66667 101610|0.75 101611|0.76389 101612|0.44444 101613|0.76389 101614|0.86111 101615|0.80556 101616|0.72222 101617|0.65278 101618|0.40278 101619|0.72222 101620|0.88889 101621|0.29167 101622|0.31944 101623|0.75 101624|0.76389 101625|0.61111 101626|0.76389 101627|0.81944 101628|0.68056 101629|0.81944 101630|0.66667 101631|0.72222 101632|0.5 101633|0.79167 101634|0.83333 101635|0.83333 101636|0.13889 101637|0.51389 101638|0.52778 101639|0.68056 101640|0.70833 101641|0.40278 101642|0.75 101643|0.34722 101644|0.52778 101645|0.55556 101646|0.81944 101647|0.75 101648|0.69444 101649|0.65278 101650|0.72222 101651|0.79167 101652|0.66667 101653|0.36111 101654|0.58333 101655|0.73611 101656|0.59722 101657|0.52778 101658|0.48611 101659|0.86111 101660|0.5 101661|0.29167 101662|0.18056 101663|0.51389 101664|0.41667 101665|0.54167 101666|0.77778 101667|0.69444 101668|0.23611 101669|0.33333 101670|0.55556 101671|0.27778 101672|0.36111 101673|0.41667 101674|0.56944 101675|0.73611 101676|0.77778 101677|0.61111 101678|0.52778 101679|0.70833 101680|0.77778 101681|0.59722 101682|0.41667 101683|0.44444 101684|0.25 101685|0.44444 101686|0.43056 101687|0.51389 101688|0.72222 101689|0.59722 101690|0.55556 101691|0.68056 101692|0.52778 101693|0.30556 101694|0.48611 101695|0.75 101696|0.25 101697|0.125 101698|0.15278 101699|0.75 101700|0.5 101701|0.125 101702|0.13889 101703|0.22222 101704|0.34722 101705|0.45833 101706|0.41667 101707|0.36111 101708|0.47222 101709|0.44444 101710|0.20833 101711|0.43056 101712|0.43056 101713|0.45833 101714|0.72222 101715|0.76389 101716|0.63889 101717|0.41667 101718|0.45833 101719|0.79167 101720|0.86111 101721|0.44444 101722|0.77778 101723|0.5 101724|0.29167 101725|0.29167 101726|0.36111 101727|0.30556 101728|0.63889 101729|0.15278 101730|0.36111 101731|0.41667 101732|0.23611 101733|0.52778 101734|0.65278 101735|0.59722 101736|0.56944 101737|0.75 101738|0.52778 101739|0.52778 101740|0.59722 101741|0.375 101742|0.30556 101743|0.625 101744|0.47222 101745|0.69444 101746|0.47222 101747|0.59722 101748|0.33333 101749|0.27778 101750|0.45833 101751|0.75 101752|0.625 101753|0.77778 101754|0.55556 101755|0.76389 101756|0.26389 101757|0.47222 101758|0.54167 101759|0.56944 101760|0.66667 101761|0.56944 101762|0.22222 101763|0.38889 101764|0.40278 101765|0.19444 101766|0.48611 101767|0.58333 101768|0.73611 101769|0.56944 101770|0.63889 101771|0.63889 101772|0.98611 101773|0.625 101774|0.51389 101775|0.5 101776|0.70833 101777|0.45833 101778|0.65278 101779|0.40278 101780|0.27778 101781|0.125 101782|0.25 101783|0.31944 101784|0.33333 101785|0.73611 101786|0.44444 101787|0.16667 101788|0.11111 101789|0.55556 101790|0.27778 101791|0.52778 101792|0.66667 101793|0.38889 101794|0.38889 101795|0.48611 101796|0.45833 101797|0.22222 101798|0.22222 101799|0.22222 101800|0.26389 101801|0.33333 101802|0.68056 101803|0.58333 101804|0.51389 101805|0.59722 101806|0.125 101807|0.23611 101808|0.22222 101809|0.31944 101810|0.41667 101811|0.15278 101812|0.43056 101813|0.44444 101814|0.069444 101815|0.11111 101816|0.30556 101817|0.70833 101818|0.59722 101819|0.25 101820|0.31944 101821|0.22222 101822|0.27778 101823|0.43056 101824|0.20833 101825|0.25 101826|0.43056 101827|0.38889 101828|0.13889 101829|0.125 101830|0.48611 101831|0.43056 101832|0.20833 101833|0.41667 101834|0.097222 101835|0.40278 101836|0.29167 101837|0.41667 101838|0.44444 101839|0.5 101840|0.5 101841|0.23611 101842|0.83333 101843|0.5 101844|0.68056 101845|0.77778 101846|0.069444 101847|0.027778 101848|0.44444 101849|0.54167 101850|0.48611 101851|0.69444 101852|0.68056 101853|0.34722 101854|0.25 101855|0.25 101856|0.56944 101857|0.38889 101858|0.27778 101859|0.56944 101860|0.44444 101861|0.5 101862|0.26389 101863|0.041667 101864|0.11111 101865|0.52778 101866|0.47222 101867|0.27778 101868|0.63889 101869|0.375 101870|0.33333 101871|0.86111 101872|0.5 101873|0.47222 101874|0.40278 101875|0.15278 101876|0.30556 101877|0.69444 101878|0.54167 101879|0.5 101880|0.56944 101881|0.52778 101882|0.51389 101883|0.38889 101884|0.055556 101885|0.13889 101886|0.29167 101887|0.23611 101888|0.18056 101889|0.027778 101890|0.44444 101891|0.375 101892|0.38889 101893|0.27778 101894|0.31944 101895|0.15278 101896|0.30556 101897|0.34722 101898|0.31944 101899|0.097222 101900|0.47222 101901|0.66667 101902|0.73611 101903|0.5 101904|0.44444 101905|0.5 101906|0.40278 101907|0.44444 101908|0.48611 101909|0.15278 101910|0.90278 101911|0.72222 101912|0.61111 101913|0.77778 101914|0.5 101915|0.40278 101916|0.33333 101917|0.5 101918|0.51389 101919|0.45833 101920|0.72222 101921|0.73611 101922|0.66667 101923|0.65278 101924|0.29167 101925|0.65278 101926|0.72222 101927|0.33333 101928|0.40278 101929|0.44444 101930|0.76389 101931|0.80556 101932|0.5 101933|0.23611 101934|0.25 101935|0.79167 101936|0.47222 101937|0.90278 101938|0.86111 101939|0.83333 101940|0.76389 101941|0.52778 101942|0.63889 101943|0.625 101944|0.48611 101945|0.43056 101946|0.34722 101947|0.083333 101948|0.15278 101949|0.65278 101950|0.51389 101951|0.58333 101952|0.65278 101953|0.43056 101954|0.13889 101955|0.13889 101956|0.54167 101957|0.47222 101958|0.47222 101959|0.63889 101960|0.5 101961|0.72222 101962|0.76389 101963|0.055556 101964|0.75 101965|0.5 101966|0.375 101967|0.26389 101968|0.56944 101969|0.55556 101970|0.27778 101971|0.48611 101972|0.76389 101973|0.81944 101974|0.66667 101975|0.5 101976|0.81944 101977|0.59722 101978|0.81944 101979|0.22222 101980|0.30556 101981|0.375 101982|0.83333 101983|0.88889 101984|0.55556 101985|0.54167 101986|0.38889 101987|0.33333 101988|0.61111 101989|0.73611 101990|0.65278 101991|0.69444 101992|0.625 101993|0.59722 101994|0.79167 101995|0.70833 101996|0.36111 101997|0.45833 101998|0.40278 101999|0.55556 102000|0.61111 102001|0.36111 102002|0.5 102003|0.72222 102004|0.66667 102005|0.70833 102006|0.81944 102007|0.63889 102008|0.65278 102009|0.43056 102010|0.38889 102011|0.51389 102012|0.5 102013|0.61111 102014|0.23611 102015|0.43056 102016|0.5 102017|0.73611 102018|0.55556 102019|0.72222 102020|0.72222 102021|0.875 102022|0.65278 102023|0.22222 102024|0.027778 102025|0.45833 102026|0.47222 102027|0.5 102028|0.55556 102029|0.5 102030|0.31944 102031|0.48611 102032|0.36111 102033|0.41667 102034|0.56944 102035|0.5 102036|0.55556 102037|0.5 102038|0.5 102039|0.5 102040|0.51389 102041|0.5 102042|0.45833 102043|0.5 102044|0.375 102045|0.43056 102046|0.41667 102047|0.75 102048|0.72222 102049|0.19444 102050|0.66667 102051|0.625 102052|0.25 102053|0.15278 102054|0.18056 102055|0.083333 102056|0.80556 102057|0.77778 102058|0.47222 102059|0.76389 102060|0.80556 102061|0.5 102062|0.48611 102063|0.61111 102064|0.63889 102065|0.56944 102066|0.80556 102067|0.31944 102068|0.59722 102069|0.41667 102070|0.33333 102071|0.18056 102072|0.5 102073|0.81944 102074|0.5 102075|0.61111 102076|0.52778 102077|0.51389 102078|0.18056 102079|0.27778 102080|0.52778 102081|0.47222 102082|0.375 102083|0.81944 102084|0.61111 102085|0.66667 102086|0.875 102087|0.63889 102088|0.47222 102089|0.51389 102090|0.55556 102091|0.5 102092|0.76389 102093|0.5 102094|0.51389 102095|0.30556 102096|0.75 102097|0.5 102098|0.5 102099|0.65278 102100|0.61111 102101|0.54167 102102|0.55556 102103|0.61111 102104|0.79167 102105|0.88889 102106|0.81944 102107|0.66667 102108|0.5 102109|0.54167 102110|0.5 102111|0.51389 102112|0.63889 102113|0.15278 102114|0.5 102115|0.55556 102116|0.16667 102117|0.5 102118|0.51389 102119|0.36111 102120|0.5 102121|0.55556 102122|0.29167 102123|0.5 102124|0.88889 102125|0.52778 102126|0.45833 102127|0.5 102128|0.45833 102129|0.44444 102130|0.125 102131|0.5 102132|0.65278 102133|0.5 102134|0.77778 102135|0.5 102136|0.5 102137|0.5 102138|0.52778 102139|0.66667 102140|0.5 102141|0.15278 102142|0.22222 102143|0.66667 102144|0.65278 102145|0.5 102146|0.61111 102147|0.5 102148|0.48611 102149|0.91667 102150|0.5 102151|0.58333 102152|0.5 102153|0.66667 102154|0.51389 102155|0.79167 102156|0.86111 102157|0.59722 102158|0.47222 102159|0.38889 102160|0.34722 102161|0.77778 102162|0.84722 102163|0.61111 102164|0.26389 102165|0.34722 102166|0.5 102167|0.45833 102168|0.5 102169|0.5 102170|0.44444 102171|0.51389 102172|0.41667 102173|0.54167 102174|0.41667 102175|0.40278 102176|0.55556 102177|0.70833 102178|0.61111 102179|0.5 102180|0.5 102181|0.5 102182|0.56944 102183|0.54167 102184|0.44444 102185|0.625 102186|0.5 102187|0.38889 102188|0.5 102189|0.66667 102190|0.55556 102191|0.66667 102192|0.75 102193|0.44444 102194|0.56944 102195|0.52778 102196|0.59722 102197|0.5 102198|0.48611 102199|0.5 102200|0.66667 102201|0.375 102202|0.5 102203|0.19444 102204|0.5 102205|0.81944 102206|0.5 102207|0.18056 102208|0.54167 102209|0.30556 102210|0.58333 102211|0.5 102212|0.56944 102213|0.51389 102214|0.51389 102215|0.68056 102216|0.54167 102217|0.34722 102218|0.77778 102219|0.36111 102220|0.88889 102221|0.66667 102222|0.56944 102223|0.5 102224|0.66667 102225|0.38889 102226|0.65278 102227|0.33333 102228|0.625 102229|0.52778 102230|0.51389 102231|0.84722 102232|0.65278 102233|0.30556 102234|0.11111 102235|0.33333 102236|0.75 102237|0.20833 102238|0.625 102239|0.91667 102240|0.54167 102241|0.66667 102242|0.75 102243|0.68056 102244|0.68056 102245|0.72222 102246|0.75 102247|0.63889 102248|0.72222 102249|0.83333 102250|0.80556 102251|0.5 102252|0.52778 102253|0.36111 102254|0.5 102255|0.33333 102256|0.33333 102257|0.77778 102258|0.22222 102259|0.45833 102260|0.29167 102261|0.81944 102262|0.80556 102263|0.77778 102264|0.33333 102265|0.5 102266|0.23611 102267|0.63889 102268|0.80556 102269|0.33333 102270|0.45833 102271|0.68056 102272|0.44444 102273|0.72222 102274|0.30556 102275|0.44444 102276|0.55556 102277|0.41667 102278|0.5 102279|0.51389 102280|0.51389 102281|0.80556 102282|0.125 102283|0.58333 102284|0.26389 102285|0.5 102286|0.26389 102287|0.52778 102288|0.86111 102289|0.36111 102290|0.20833 102291|0.66667 102292|0.86111 102293|0.84722 102294|0.88889 102295|0.16667 102296|0.65278 102297|0.68056 102298|0.84722 102299|0.23611 102300|0.5 102301|0.55556 102302|0.41667 102303|0.63889 102304|0.29167 102305|0.94444 102306|0.5 102307|0.5 102308|0.72222 102309|0.26389 102310|0.5 102311|0.43056 102312|0.79167 102313|0.5 102314|0.61111 102315|0.69444 102316|0.45833 102317|0.77778 102318|0.48611 102319|0.66667 102320|0.625 102321|0.20833 102322|0.83333 102323|0.80556 102324|0.75 102325|0.30556 102326|0.625 102327|0.77778 102328|0.83333 102329|0.52778 102330|0.77778 102331|0.36111 102332|0.25 102333|0.63889 102334|0.90278 102335|0.68056 102336|0.45833 102337|0.23611 102338|0.48611 102339|0.30556 102340|0.88889 102341|0.31944 102342|0.22222 102343|0.20833 102344|0.26389 102345|0.5 102346|0.79167 102347|0.31944 102348|0.43056 102349|0.41667 102350|0.77778 102351|0.33333 102352|0.73611 102353|0.90278 102354|0.5 102355|0.19444 102356|0.083333 102357|0.23611 102358|0.52778 102359|0.70833 102360|0.38889 102361|0.58333 102362|0.027778 102363|0.23611 102364|0.30556 102365|0.66667 102366|0.75 102367|0.70833 102368|0.5 102369|0.5 102370|0.79167 102371|0.55556 102372|0.81944 102373|0.80556 102374|0.375 102375|0.5 102376|0.5 102377|0.55556 102378|0.5 102379|0.80556 102380|0.44444 102381|0.86111 102382|0.48611 102383|0.72222 102384|0.5 102385|0.63889 102386|0.68056 102387|0.5 102388|0.63889 102389|0.5 102390|0.5 102391|0.55556 102392|0.27778 102393|0.73611 102394|0.55556 102395|0.48611 102396|0.41667 102397|0.36111 102398|0.44444 102399|0.26389 102400|0.5 102401|0.5 102402|0.72222 102403|0.48611 102404|0.36111 102405|0.59722 102406|0.77778 102407|0.5 102408|0.625 102409|0.5 102410|0.77778 102411|0.44444 102412|0.83333 102413|0.52778 102414|0.65278 102415|0.56944 102416|0.51389 102417|0.52778 102418|0.58333 102419|0.40278 102420|0.72222 102421|0.79167 102422|0.58333 102423|0.73611 102424|0.77778 102425|0.5 102426|0.44444 102427|0.27778 102428|0.55556 102429|0.66667 102430|0.47222 102431|0.61111 102432|0.54167 102433|0.375 102434|0.38889 102435|0.69444 102436|0.5 102437|0.61111 102438|0.63889 102439|0.625 102440|0.48611 102441|0.63889 102442|0.48611 102443|0.65278 102444|0.75 102445|0.75 102446|0.5 102447|0.58333 102448|0.44444 102449|0.79167 102450|0.5 102451|0.63889 102452|0.34722 102453|0.5 102454|0.625 102455|0.30556 102456|0.69444 102457|0.63889 102458|0.33333 102459|0.59722 102460|0.25 102461|0.83333 102462|0.41667 102463|0.68056 102464|0.5 102465|0.63889 102466|0.58333 102467|0.38889 102468|0.79167 102469|0.65278 102470|0.48611 102471|0.76389 102472|0.5 102473|0.41667 102474|0.68056 102475|0.75 102476|0.59722 102477|0.55556 102478|0.75 102479|0.51389 102480|0.63889 102481|0.38889 102482|0.27778 102483|0.31944 102484|0.54167 102485|0.34722 102486|0.15278 102487|0.55556 102488|0.16667 102489|0.44444 102490|0.61111 102491|0.40278 102492|0.41667 102493|0.55556 102494|0.26389 102495|0.58333 102496|0.45833 102497|0.5 102498|0.5 102499|0.77778 102500|0.45833 102501|0.83333 102502|0.66667 102503|0.77778 102504|0.80556 102505|0.5 102506|0.70833 102507|0.51389 102508|0.48611 102509|0.38889 102510|0.61111 102511|0.61111 102512|0.15278 102513|0.54167 102514|0.29167 102515|0.52778 102516|0.47222 102517|0.65278 102518|0.44444 102519|0.76389 102520|0.15278 102521|0.29167 102522|0.56944 102523|0.45833 102524|0.22222 102525|0.16667 102526|0.625 102527|0.375 102528|0.88889 102529|0.56944 102530|0.55556 102531|0.58333 102532|0.38889 102533|0.70833 102534|0.77778 102535|0.625 102536|0.44444 102537|0.47222 102538|0.80556 102539|0.61111 102540|0.52778 102541|0.59722 102542|0.5 102543|0.19444 102544|0.69444 102545|0.55556 102546|0.38889 102547|0.72222 102548|0.41667 102549|0.58333 102550|0.22222 102551|0.47222 102552|0.20833 102553|0.58333 102554|0.44444 102555|0.45833 102556|0.34722 102557|0.44444 102558|0.63889 102559|0.5 102560|0.069444 102561|0.68056 102562|0.65278 102563|0.77778 102564|0.55556 102565|0.40278 102566|0.5 102567|0.5 102568|0.43056 102569|0.51389 102570|0.59722 102571|0.34722 102572|0.41667 102573|0.45833 102574|0.48611 102575|0.5 102576|0.5 102577|0.43056 102578|0.40278 102579|0.5 102580|0.58333 102581|0.63889 102582|0.34722 102583|0.70833 102584|0.54167 102585|0.66667 102586|0.51389 102587|0.61111 102588|0.27778 102589|0.29167 102590|0.27778 102591|0.41667 102592|0.73611 102593|0.72222 102594|0.23611 102595|0.88889 102596|0.625 102597|0.27778 102598|0.63889 102599|0.76389 102600|0.56944 102601|0.43056 102602|0.47222 102603|0.55556 102604|0.15278 102605|0.5 102606|0.625 102607|0.18056 102608|0 102609|0.70833 102610|0.44444 102611|0.75 102612|0.59722 102613|0.29167 102614|0.73611 102615|0.36111 102616|0.66667 102617|0.63889 102618|0.73611 102619|0.63889 102620|0.76389 102621|0.38889 102622|0.22222 102623|0.47222 102624|0.65278 102625|0.16667 102626|0.69444 102627|0.61111 102628|0.63889 102629|0.20833 102630|0.48611 102631|0.15278 102632|0.65278 102633|0.36111 102634|0.18056 102635|0.41667 102636|0.66667 102637|0.65278 102638|0.16667 102639|0.23611 102640|0.75 102641|0.77778 102642|0 102643|0.65278 102644|0.54167 102645|0.33333 102646|0.79167 102647|0.125 102648|0.38889 102649|0.83333 102650|0.29167 102651|0.083333 102652|0.56944 102653|0.36111 102654|0.11111 102655|0.77778 102656|0.72222 102657|0.44444 102658|0.22222 102659|0.375 102660|0.27778 102661|0.72222 102662|0.31944 102663|0.70833 102664|0.69444 102665|0.56944 102666|0.16667 102667|0.44444 102668|0.25 102669|0.625 102670|0.79167 102671|0.95833 102672|0.77778 102673|0.72222 102674|0.375 102675|0.15278 102676|0.29167 102677|0.38889 102678|0.23611 102679|0.72222 102680|0.77778 102681|0.72222 102682|0.77778 102683|0.36111 102684|0.5 102685|0.66667 102686|0.43056 102687|0.27778 102688|0.66667 102689|0.56944 102690|0.625 102691|0.29167 102692|0.70833 102693|0.40278 102694|0.38889 102695|0.45833 102696|0.41667 102697|0.52778 102698|0.47222 102699|0.375 102700|0.55556 102701|0.18056 102702|0.68056 102703|0.34722 102704|0.27778 102705|0.27778 102706|0.66667 102707|0.68056 102708|0.43056 102709|0.5 102710|0.58333 102711|0.5 102712|0.38889 102713|0.40278 102714|0.81944 102715|0.44444 102716|0.70833 102717|0.375 102718|0.41667 102719|0.5 102720|0.69444 102721|0.5 102722|0.48611 102723|0.43056 102724|0.76389 102725|0.48611 102726|0.51389 102727|0.90278 102728|0.47222 102729|0.83333 102730|0.22222 102731|0.5 102732|0.76389 102733|0.375 102734|0.56944 102735|0.73611 102736|0.43056 102737|0.45833 102738|0.23611 102739|0.55556 102740|0.34722 102741|0.31944 102742|0.44444 102743|0.47222 102744|0.70833 102745|0.69444 102746|0.59722 102747|0.66667 102748|0.69444 102749|0.45833 102750|0.58333 102751|0.375 102752|0.81944 102753|0.61111 102754|0.43056 102755|0.56944 102756|0.48611 102757|0.5 102758|0.48611 102759|0.19444 102760|0.33333 102761|0.31944 102762|0.40278 102763|0.27778 102764|0.5 102765|0.66667 102766|0.54167 102767|0.51389 102768|0.5 102769|0.43056 102770|0.375 102771|0.23611 102772|0.72222 102773|0.68056 102774|0.44444 102775|0.083333 102776|0.20833 102777|0.55556 102778|0.625 102779|0.069444 102780|0.097222 102781|0.041667 102782|0.23611 102783|0.41667 102784|0.27778 102785|0.80556 102786|0.5 102787|0.44444 102788|0.5 102789|0.80556 102790|0.38889 102791|0.52778 102792|0.70833 102793|0.5 102794|0.54167 102795|0.33333 102796|0.69444 102797|0.55556 102798|0.73611 102799|0.5 102800|0.5 102801|0.45833 102802|0.375 102803|0.47222 102804|0.68056 102805|0.75 102806|0.61111 102807|0.66667 102808|0.5 102809|0.63889 102810|0.65278 102811|0.66667 102812|0.66667 102813|0.54167 102814|0.55556 102815|0.44444 102816|0.18056 102817|0.69444 102818|0.29167 102819|0.5 102820|0.51389 102821|0.69444 102822|0.38889 102823|0.45833 102824|0.79167 102825|0.72222 102826|0.76389 102827|0.5 102828|0.5 102829|0.47222 102830|0.375 102831|0.55556 102832|0.68056 102833|0.47222 102834|0.79167 102835|0.34722 102836|0.5 102837|0.51389 102838|0.63889 102839|0.76389 102840|0.72222 102841|0.65278 102842|0.55556 102843|0.18056 102844|0.54167 102845|0.25 102846|0.5 102847|0.36111 102848|0.68056 102849|0.26389 102850|0.59722 102851|0.66667 102852|0.44444 102853|0.22222 102854|0.76389 102855|0.58333 102856|0.38889 102857|0.63889 102858|0.5 102859|0.80556 102860|0.31944 102861|0.58333 102862|0.65278 102863|0.81944 102864|0.44444 102865|0.16667 102866|0.77778 102867|0.625 102868|0.30556 102869|0.5 102870|0.58333 102871|0.72222 102872|0.58333 102873|0.76389 102874|0.75 102875|0.69444 102876|0.875 102877|0.79167 102878|0.5 102879|0.77778 102880|0.77778 102881|0.75 102882|0.90278 102883|0.83333 102884|0.33333 102885|0.81944 102886|0.33333 102887|0.72222 102888|0.79167 102889|0.34722 102890|0.31944 102891|0.72222 102892|0.63889 102893|0.34722 102894|0.47222 102895|0.68056 102896|0.91667 102897|0.63889 102898|0.125 102899|0.31944 102900|0.72222 102901|0.73611 102902|0.26389 102903|0.13889 102904|0.16667 102905|0.73611 102906|0.27778 102907|0.73611 102908|0.63889 102909|0.75 102910|0.097222 102911|0.77778 102912|0.16667 102913|0.48611 102914|0.63889 102915|0.5 102916|0.34722 102917|0.66667 102918|0.80556 102919|0.36111 102920|0.23611 102921|0.11111 102922|0.16667 102923|0.375 102924|0.75 102925|0.93056 102926|0.20833 102927|0.22222 102928|0.44444 102929|0.36111 102930|0.58333 102931|0.79167 102932|0.375 102933|0.41667 102934|0.16667 102935|0.48611 102936|0.36111 102937|0.31944 102938|0.55556 102939|0.77778 102940|0.5 102941|0.38889 102942|0.43056 102943|0.55556 102944|0.77778 102945|0.88889 102946|0.19444 102947|0.69444 102948|0.48611 102949|0.48611 102950|0.45833 102951|0.19444 102952|0.33333 102953|0.23611 102954|0.055556 102955|0.68056 102956|0.43056 102957|0.18056 102958|0.68056 102959|0.56944 102960|0.84722 102961|0.63889 102962|0.23611 102963|0.083333 102964|0.47222 102965|0.5 102966|0.38889 102967|0.77778 102968|0.23611 102969|0.51389 102970|0.5 102971|0.51389 102972|0.5 102973|0.54167 102974|0.54167 102975|0.59722 102976|0.79167 102977|0.20833 102978|0.40278 102979|0.86111 102980|0.58333 102981|0.22222 102982|0.41667 102983|0.44444 102984|0.33333 102985|0.055556 102986|0.61111 102987|0.29167 102988|0.75 102989|0.59722 102990|0.16667 102991|0.31944 102992|0.58333 102993|0.44444 102994|0.625 102995|0.20833 102996|0.56944 102997|0.88889 102998|0.69444 102999|0.5 103000|0.68056 103001|0.5 103002|0.58333 103003|0.75 103004|0.70833 103005|0.19444 103006|0.76389 103007|0.5 103008|0.81944 103009|0.375 103010|0.83333 103011|0.69444 103012|0.80556 103013|0.30556 103014|0.5 103015|0.51389 103016|0.44444 103017|0.72222 103018|0.59722 103019|0.56944 103020|0.47222 103021|0.48611 103022|0.63889 103023|0.625 103024|0.54167 103025|0.54167 103026|0.88889 103027|0.65278 103028|0.31944 103029|0.5 103030|0.84722 103031|0.54167 103032|0.26389 103033|0.27778 103034|0.29167 103035|0.5 103036|0.23611 103037|0.25 103038|0.72222 103039|0.70833 103040|0.20833 103041|0.70833 103042|0.54167 103043|0.66667 103044|0.63889 103045|0.72222 103046|0.88889 103047|0.23611 103048|0.34722 103049|0.68056 103050|0.33333 103051|0.76389 103052|0.5 103053|0.5 103054|0.38889 103055|0.65278 103056|0.33333 103057|0.5 103058|0.33333 103059|0.16667 103060|0.29167 103061|0.5 103062|0.5 103063|0.5 103064|0.45833 103065|0.5 103066|0.52778 103067|0.40278 103068|0.16667 103069|0.40278 103070|0.61111 103071|0.58333 103072|0.56944 103073|0.5 103074|0.5 103075|0.5 103076|0.5 103077|0.34722 103078|0.5 103079|0.63889 103080|0.69444 103081|0.45833 103082|0.41667 103083|0.5 103084|0.77778 103085|0.18056 103086|0.44444 103087|0.20833 103088|0.19444 103089|0.30556 103090|0.875 103091|0.61111 103092|0.77778 103093|0.38889 103094|0.77778 103095|0.29167 103096|0.75 103097|0.56944 103098|0.5 103099|0.5 103100|0.44444 103101|0.59722 103102|0.5 103103|0.5 103104|0.44444 103105|0.43056 103106|0.5 103107|0.58333 103108|0.72222 103109|0.45833 103110|0.25 103111|0.26389 103112|0.25 103113|0.75 103114|0.375 103115|0.5 103116|0.375 103117|0.5 103118|0.5 103119|0.68056 103120|0.5 103121|0.20833 103122|0.52778 103123|0.5 103124|0.54167 103125|0.75 103126|0.5 103127|0.56944 103128|0.54167 103129|0.63889 103130|0.80556 103131|0.5 103132|0.5 103133|0.5 103134|0.5 103135|0.68056 103136|0.5 103137|0.5 103138|0.5 103139|0.013889 103140|0.56944 103141|0.5 103142|0.5 103143|0.79167 103144|0.56944 103145|0.77778 103146|0.90278 103147|0.125 103148|0.38889 103149|0.59722 103150|0.5 103151|0.5 103152|0.5 103153|0.5 103154|0.5 103155|0.5 103156|0.5 103157|0.5 103158|0.18056 103159|0.61111 103160|0.5 103161|0.5 103162|0.55556 103163|0.27778 103164|0.59722 103165|0.13889 103166|0.44444 103167|0.55556 103168|0.5 103169|0.5 103170|0.5 103171|0.55556 103172|0.59722 103173|0.51389 103174|0.5 103175|0.48611 103176|0.66667 103177|0.097222 103178|0.68056 103179|0.43056 103180|0.55556 103181|0.31944 103182|0.5 103183|0.45833 103184|0.11111 103185|0.027778 103186|0.875 103187|0.45833 103188|0.68056 103189|0.81944 103190|0.40278 103191|0.86111 103192|0.33333 103193|0.69444 103194|0.65278 103195|0.72222 103196|0.65278 103197|0.16667 103198|0.625 103199|0.52778 103200|0.76389 103201|0.38889 103202|0.58333 103203|0.84722 103204|0.76389 103205|0.80556 103206|0.69444 103207|0.27778 103208|0.72222 103209|0.95833 103210|0.47222 103211|0.40278 103212|0.66667 103213|0.027778 103214|0.43056 103215|0.33333 103216|0.94444 103217|0.65278 103218|0.77778 103219|0.31944 103220|0.52778 103221|0.11111 103222|0.47222 103223|0.13889 103224|0.875 103225|0.23611 103226|0.59722 103227|0.73611 103228|0.44444 103229|0.51389 103230|0.68056 103231|0.38889 103232|0.20833 103233|0.41667 103234|0.83333 103235|0.84722 103236|0 103237|0.70833 103238|0.625 103239|0.36111 103240|0.625 103241|0.625 103242|0.51389 103243|0.22222 103244|0.25 103245|0.16667 103246|0.66667 103247|0.73611 103248|0.55556 103249|0.125 103250|0.27778 103251|0.26389 103252|0.31944 103253|0.13889 103254|0.027778 103255|0.16667 103256|0.27778 103257|0.73611 103258|0.56944 103259|0.5 103260|0.5 103261|0.55556 103262|0.5 103263|0.58333 103264|0.48611 103265|0.56944 103266|0.5 103267|0.41667 103268|0.5 103269|0.59722 103270|0.5 103271|0.5 103272|0.5 103273|0.68056 103274|0.5 103275|0.59722 103276|0.5 103277|0.58333 103278|0.55556 103279|0.5 103280|0.48611 103281|0.5 103282|0.5 103283|0.5 103284|0.5 103285|0.61111 103286|0.5 103287|0.5 103288|0.51389 103289|0.5 103290|0.61111 103291|0.5 103292|0.5 103293|0.5 103294|0.58333 103295|0.52778 103296|0.5 103297|0.56944 103298|0.5 103299|0.47222 103300|0.5 103301|0.63889 103302|0.56944 103303|0.52778 103304|0.5 103305|0.47222 103306|0.5 103307|0.5 103308|0.59722 103309|0.61111 103310|0.5 103311|0.44444 103312|0.55556 103313|0.51389 103314|0.5 103315|0.41667 103316|0.45833 103317|0.23611 103318|0.63889 103319|0.29167 103320|0.65278 103321|0.33333 103322|0.5 103323|0.5 103324|0.5 103325|0.5 103326|0.5 103327|0.5 103328|0.5 103329|0.5 103330|0.5 103331|0.58333 103332|0.5 103333|0.5 103334|0.30556 103335|0.58333 103336|0.5 103337|0.5 103338|0.5 103339|0.5 103340|0.5 103341|0.5 103342|0.5 103343|0.36111 103344|0.55556 103345|0.13889 103346|0.5 103347|0.36111 103348|0.63889 103349|0.69444 103350|0.48611 103351|0.5 103352|0.5 103353|0.38889 103354|0.5 103355|0.16667 103356|0.34722 103357|0.16667 103358|0.5 103359|0.77778 103360|0.54167 103361|0.69444 103362|0.5 103363|0.33333 103364|0.5 103365|0.055556 103366|0.5 103367|0.19444 103368|0.5 103369|0.5 103370|0.44444 103371|0.59722 103372|0.48611 103373|0.51389 103374|0.51389 103375|0.44444 103376|0.69444 103377|0.48611 103378|0.36111 103379|0.55556 103380|0.52778 103381|0.375 103382|0.51389 103383|0.45833 103384|0.56944 103385|0.43056 103386|0.38889 103387|0.625 103388|0.25 103389|0.5 103390|0.58333 103391|0.5 103392|0.23611 103393|0.055556 103394|0.26389 103395|0.23611 103396|0.11111 103397|0.55556 103398|0.66667 103399|0.5 103400|0.47222 103401|0.375 103402|0.43056 103403|0.22222 103404|0.31944 103405|0.375 103406|0.22222 103407|0.40278 103408|0.40278 103409|0.33333 103410|0.31944 103411|0.36111 103412|0.68056 103413|0.79167 103414|0.66667 103415|0.65278 103416|0.56944 103417|0.55556 103418|0.22222 103419|0.70833 103420|0.69444 103421|0.65278 103422|0.34722 103423|0.34722 103424|0.59722 103425|0.66667 103426|0.875 103427|0.72222 103428|0.54167 103429|0.61111 103430|0.69444 103431|0.77778 103432|0.70833 103433|0.63889 103434|0.27778 103435|0.30556 103436|0.30556 103437|0.125 103438|0.069444 103439|0.55556 103440|0.58333 103441|0.875 103442|0.88889 103443|0.83333 103444|0.83333 103445|0.88889 103446|0.69444 103447|0.70833 103448|0.80556 103449|0.72222 103450|0.83333 103451|0.77778 103452|0.91667 103453|0.55556 103454|0.76389 103455|0.76389 103456|0.88889 103457|0.43056 103458|0.56944 103459|0.33333 103460|0.72222 103461|0.83333 103462|0.90278 103463|0.625 103464|0.84722 103465|0.76389 103466|0.86111 103467|0.83333 103468|0.72222 103469|0.81944 103470|0.80556 103471|0.58333 103472|0.72222 103473|0.94444 103474|0.83333 103475|0.83333 103476|0.61111 103477|0.76389 103478|0.77778 103479|0.61111 103480|0.80556 103481|0.375 103482|0.73611 103483|0.40278 103484|0.45833 103485|0.625 103486|0.83333 103487|0.88889 103488|0.88889 103489|0.93056 103490|0.59722 103491|0.70833 103492|0.93056 103493|0.81944 103494|0.75 103495|0.83333 103496|0.77778 103497|0.875 103498|0.79167 103499|0.84722 103500|0.76389 103501|0.80556 103502|0.72222 103503|0.58333 103504|0.69444 103505|0.48611 103506|0.72222 103507|0.72222 103508|0.69444 103509|0.72222 103510|0.73611 103511|0.68056 103512|0.69444 103513|0.34722 103514|0.91667 103515|0.83333 103516|0.69444 103517|0.83333 103518|0.76389 103519|0.86111 103520|0.75 103521|0.90278 103522|0.33333 103523|0.70833 103524|0.68056 103525|0.61111 103526|0.51389 103527|0.51389 103528|0.56944 103529|0.68056 103530|0.45833 103531|0.30556 103532|0.16667 103533|0.45833 103534|0.66667 103535|0.18056 103536|0.25 103537|0.59722 103538|0.83333 103539|0.38889 103540|0.25 103541|0.27778 103542|0.75 103543|0.59722 103544|0.80556 103545|0.83333 103546|0.34722 103547|0.25 103548|0.59722 103549|0.86111 103550|0.81944 103551|0.79167 103552|0.45833 103553|0.56944 103554|0.56944 103555|0.5 103556|0.5 103557|0.26389 103558|0.5 103559|0.55556 103560|0.69444 103561|0.58333 103562|0.52778 103563|0.69444 103564|0.5 103565|0.5 103566|0.29167 103567|0.33333 103568|0.36111 103569|0.16667 103570|0.11111 103571|0.30556 103572|0.45833 103573|0.23611 103574|0.45833 103575|0.38889 103576|0.61111 103577|0.66667 103578|0.61111 103579|0.69444 103580|0.77778 103581|0.88889 103582|0.29167 103583|0.38889 103584|0.13889 103585|0.36111 103586|0.75 103587|0.66667 103588|0.83333 103589|0.72222 103590|0.83333 103591|0.66667 103592|0.81944 103593|0.72222 103594|0.84722 103595|0.93056 103596|0.81944 103597|0.38889 103598|0.16667 103599|0.30556 103600|0.22222 103601|0.16667 103602|0.76389 103603|0.80556 103604|0.875 103605|0.59722 103606|0.88889 103607|0.80556 103608|0.83333 103609|0.5 103610|0.69444 103611|0.68056 103612|0.77778 103613|0.83333 103614|0.80556 103615|0.56944 103616|0.38889 103617|0.31944 103618|0.34722 103619|0.72222 103620|0.76389 103621|0.79167 103622|0.93056 103623|0.80556 103624|0.83333 103625|0.83333 103626|0.84722 103627|0.86111 103628|0.75 103629|0.69444 103630|0.61111 103631|0.81944 103632|0.80556 103633|0.63889 103634|0.84722 103635|0.73611 103636|0.83333 103637|0.76389 103638|0.65278 103639|0.56944 103640|0.63889 103641|0.75 103642|0.65278 103643|0.48611 103644|0.47222 103645|0.54167 103646|0.83333 103647|0.75 103648|0.75 103649|0.58333 103650|0.61111 103651|0.59722 103652|0.5 103653|0.77778 103654|0.58333 103655|0.80556 103656|0.75 103657|0.79167 103658|0.77778 103659|0.75 103660|0.79167 103661|0.34722 103662|0.15278 103663|0.70833 103664|0.68056 103665|0.77778 103666|0.625 103667|0.61111 103668|0.45833 103669|0.34722 103670|0.45833 103671|0.22222 103672|0.19444 103673|0.11111 103674|0.5 103675|0.48611 103676|0.45833 103677|0.29167 103678|0.40278 103679|0.72222 103680|0.69444 103681|0.79167 103682|0.19444 103683|0.66667 103684|0.68056 103685|0.79167 103686|0.73611 103687|0.72222 103688|0.76389 103689|0.20833 103690|0.18056 103691|0.29167 103692|0.18056 103693|0.625 103694|0.875 103695|0.95833 103696|0.80556 103697|0.84722 103698|0.73611 103699|0.56944 103700|0.72222 103701|0.31944 103702|0.055556 103703|0.51389 103704|0.36111 103705|0.16667 103706|0.63889 103707|0.56944 103708|0.69444 103709|0.55556 103710|0.51389 103711|0.69444 103712|0.51389 103713|0.625 103714|0.5 103715|0.33333 103716|0.34722 103717|0.63889 103718|0.51389 103719|0.77778 103720|0.66667 103721|0.83333 103722|0.625 103723|0.44444 103724|0.55556 103725|0.66667 103726|0.125 103727|0.63889 103728|0.81944 103729|0.94444 103730|0.77778 103731|0.84722 103732|0.40278 103733|0.11111 103734|0.26389 103735|0.25 103736|0.5 103737|0.31944 103738|0.86111 103739|0.86111 103740|0.56944 103741|0.80556 103742|0.76389 103743|0.33333 103744|0.625 103745|0.19444 103746|0.097222 103747|0.125 103748|0.81944 103749|0.84722 103750|0.45833 103751|0.22222 103752|0.31944 103753|0.33333 103754|0.38889 103755|0.58333 103756|0.68056 103757|0.52778 103758|0.84722 103759|0.875 103760|0.23611 103761|0.375 103762|0.375 103763|0.44444 103764|0.15278 103765|0.625 103766|0.59722 103767|0.61111 103768|0.44444 103769|0.79167 103770|0.79167 103771|0.76389 103772|0.52778 103773|0.83333 103774|0.5 103775|0.44444 103776|0.625 103777|0.40278 103778|0.5 103779|0.59722 103780|0.40278 103781|0.29167 103782|0.72222 103783|0.27778 103784|0.73611 103785|0.66667 103786|0.70833 103787|0.66667 103788|0.40278 103789|0.34722 103790|0.76389 103791|0.625 103792|0.69444 103793|0.375 103794|0.44444 103795|0.61111 103796|0.83333 103797|0.79167 103798|0.5 103799|0.20833 103800|0.80556 103801|0.77778 103802|0.83333 103803|0.61111 103804|0.63889 103805|0.65278 103806|0.83333 103807|0.83333 103808|0.83333 103809|0.83333 103810|0.88889 103811|0.43056 103812|0.36111 103813|0.59722 103814|0.31944 103815|0.51389 103816|0.5 103817|0.625 103818|0.79167 103819|0.77778 103820|0.66667 103821|0.27778 103822|0.61111 103823|0.52778 103824|0.83333 103825|0.91667 103826|0.77778 103827|0.70833 103828|0.31944 103829|0.23611 103830|0.86111 103831|0.73611 103832|0.77778 103833|0.63889 103834|0.72222 103835|0.69444 103836|0.77778 103837|0.77778 103838|0.33333 103839|0.81944 103840|0.88889 103841|0.81944 103842|0.86111 103843|0.70833 103844|0.68056 103845|0.83333 103846|0.68056 103847|0.84722 103848|0.84722 103849|0.625 103850|0.90278 103851|0.52778 103852|0.52778 103853|0.65278 103854|0.79167 103855|0.66667 103856|0.5 103857|0.69444 103858|0.61111 103859|0.72222 103860|0.23611 103861|0.27778 103862|0.097222 103863|0.097222 103864|0.5 103865|0.5 103866|0.77778 103867|0.097222 103868|0.13889 103869|0.22222 103870|0.30556 103871|0.30556 103872|0.61111 103873|0.875 103874|0.61111 103875|0.55556 103876|0.33333 103877|0.61111 103878|0.55556 103879|0.61111 103880|0.45833 103881|0.5 103882|0.51389 103883|0.58333 103884|0.65278 103885|0.84722 103886|0.79167 103887|0.75 103888|0.73611 103889|0.79167 103890|0.79167 103891|0.70833 103892|0.80556 103893|0.75 103894|0.55556 103895|0.51389 103896|0.36111 103897|0.81944 103898|0.76389 103899|0.70833 103900|0.875 103901|0.875 103902|0.79167 103903|0.81944 103904|0.66667 103905|0.81944 103906|0.40278 103907|0.22222 103908|0.22222 103909|0.59722 103910|0.56944 103911|0.48611 103912|0.58333 103913|0.5 103914|0.77778 103915|0.79167 103916|0.81944 103917|0.625 103918|0.61111 103919|0.26389 103920|0.61111 103921|0.68056 103922|0.83333 103923|0.80556 103924|0.625 103925|0.81944 103926|0.77778 103927|0.33333 103928|0.36111 103929|0.40278 103930|0.22222 103931|0.63889 103932|0.63889 103933|0.47222 103934|0.52778 103935|0.73611 103936|0.51389 103937|0.083333 103938|0.80556 103939|0.79167 103940|0.93056 103941|0.68056 103942|0.80556 103943|0.40278 103944|0.5 103945|0.65278 103946|0.11111 103947|0.375 103948|0.25 103949|0.56944 103950|0.52778 103951|0.625 103952|0.72222 103953|0.72222 103954|0.83333 103955|0.70833 103956|0.83333 103957|0.88889 103958|0.76389 103959|0.69444 103960|0.63889 103961|0.79167 103962|0.68056 103963|0.90278 103964|0.91667 103965|0.86111 103966|0.86111 103967|0.83333 103968|0.69444 103969|0.59722 103970|0.375 103971|0.31944 103972|0.45833 103973|0.59722 103974|0.625 103975|0.76389 103976|0.86111 103977|0.5 103978|0.43056 103979|0.48611 103980|0.58333 103981|0.61111 103982|0.52778 103983|0.73611 103984|0.77778 103985|0.72222 103986|0.59722 103987|0.41667 103988|0.38889 103989|0.72222 103990|0.93056 103991|0.86111 103992|0.30556 103993|0.27778 103994|0.66667 103995|0.58333 103996|0.80556 103997|0.75 103998|0.79167 103999|0.75 104000|0.52778 104001|0.75 104002|0.75 104003|0.90278 104004|0.73611 104005|0.55556 104006|0.70833 104007|0.84722 104008|0.80556 104009|0.5 104010|0.59722 104011|0.45833 104012|0.84722 104013|0.5 104014|0.83333 104015|0.88889 104016|0.81944 104017|0.93056 104018|0.91667 104019|0.43056 104020|0.44444 104021|0.68056 104022|0.54167 104023|0.81944 104024|0.81944 104025|0.34722 104026|0.083333 104027|0.20833 104028|0.5 104029|0.48611 104030|0.76389 104031|0.81944 104032|0.55556 104033|0.61111 104034|0.36111 104035|0.38889 104036|0.58333 104037|0.77778 104038|0.55556 104039|0.59722 104040|0.5 104041|0.61111 104042|0.5 104043|0.5 104044|0.44444 104045|0.58333 104046|0.56944 104047|0.5 104048|0.55556 104049|0.41667 104050|0.79167 104051|0.79167 104052|0.65278 104053|0.66667 104054|0 104055|0.51389 104056|0.47222 104057|0.61111 104058|0.36111 104059|0.30556 104060|0.22222 104061|0.55556 104062|0.38889 104063|0.43056 104064|0.52778 104065|0.5 104066|0.18056 104067|0.5 104068|0.52778 104069|0.59722 104070|0.45833 104071|0.5 104072|0.47222 104073|0.125 104074|0.55556 104075|0.81944 104076|0.5 104077|0.51389 104078|0.23611 104079|0.5 104080|0.5 104081|0.65278 104082|0.59722 104083|0.54167 104084|0.80556 104085|0.5 104086|0.5 104087|0.5 104088|0.5 104089|0.5 104090|0.5 104091|0.61111 104092|0.31944 104093|0.51389 104094|0.625 104095|0.59722 104096|0.65278 104097|0.77778 104098|0.36111 104099|0.31944 104100|0.29167 104101|0.70833 104102|0.34722 104103|0.15278 104104|0.5 104105|0.5 104106|0.5 104107|0.5 104108|0.5 104109|0.48611 104110|0.30556 104111|0.625 104112|0.5 104113|0.5 104114|0.65278 104115|0.61111 104116|0.5 104117|0.38889 104118|0.5 104119|0.40278 104120|0.44444 104121|0.56944 104122|0.52778 104123|0.5 104124|0.72222 104125|0.45833 104126|0.81944 104127|0.5 104128|0.65278 104129|0.75 104130|0.48611 104131|0.27778 104132|0.52778 104133|0.76389 104134|0.83333 104135|0.61111 104136|0.56944 104137|0.375 104138|0.47222 104139|0.5 104140|0.5 104141|0.36111 104142|0.33333 104143|0.52778 104144|0.45833 104145|0.31944 104146|0.48611 104147|0.16667 104148|0.5 104149|0.45833 104150|0.41667 104151|0.66667 104152|0.63889 104153|0.75 104154|0.5 104155|0.72222 104156|0.73611 104157|0.59722 104158|0.45833 104159|0.48611 104160|0.44444 104161|0.55556 104162|0.5 104163|0.5 104164|0.44444 104165|0.5 104166|0.38889 104167|0.47222 104168|0.56944 104169|0.19444 104170|0.30556 104171|0.375 104172|0.55556 104173|0.68056 104174|0.45833 104175|0.5 104176|0.51389 104177|0.81944 104178|0.75 104179|0.41667 104180|0.38889 104181|0.38889 104182|0.76389 104183|0.36111 104184|0.41667 104185|0.61111 104186|0.44444 104187|0.48611 104188|0.30556 104189|0.38889 104190|0.77778 104191|0.41667 104192|0.52778 104193|0.41667 104194|0.70833 104195|0.72222 104196|0.51389 104197|0.55556 104198|0.16667 104199|0.5 104200|0.5 104201|0.55556 104202|0.63889 104203|0.61111 104204|0.5 104205|0.52778 104206|0.22222 104207|0.59722 104208|0.55556 104209|0.5 104210|0.5 104211|0.5 104212|0.5 104213|0.5 104214|0.5 104215|0.54167 104216|0.47222 104217|0.5 104218|0.44444 104219|0.625 104220|0.58333 104221|0.59722 104222|0.41667 104223|0.5 104224|0.5 104225|0.84722 104226|0.48611 104227|0.5 104228|0.66667 104229|0.5 104230|0.73611 104231|0.75 104232|0.91667 104233|0.65278 104234|0.70833 104235|0.73611 104236|0.22222 104237|0.63889 104238|0.70833 104239|0.875 104240|0.45833 104241|0.54167 104242|0.55556 104243|0.43056 104244|0.58333 104245|0.26389 104246|0.40278 104247|0.22222 104248|0.33333 104249|0.097222 104250|0.18056 104251|0.26389 104252|0.125 104253|0.55556 104254|0.40278 104255|0.52778 104256|0.36111 104257|0.61111 104258|0.56944 104259|0.58333 104260|0.43056 104261|0.69444 104262|0.5 104263|0.95833 104264|0.44444 104265|0.18056 104266|0.29167 104267|0.38889 104268|0.13889 104269|0.58333 104270|0.81944 104271|0.68056 104272|0.875 104273|0.77778 104274|0.86111 104275|0.77778 104276|0.27778 104277|0.38889 104278|0.5 104279|0.33333 104280|0.875 104281|0.65278 104282|0.73611 104283|0.625 104284|0.625 104285|0.75 104286|0.81944 104287|0.45833 104288|0.75 104289|0.58333 104290|0.69444 104291|0.66667 104292|0.625 104293|0.66667 104294|0.72222 104295|0.72222 104296|0.65278 104297|0.56944 104298|0.83333 104299|0.69444 104300|0.73611 104301|0.69444 104302|0.86111 104303|0.56944 104304|0.66667 104305|0.47222 104306|0.70833 104307|0.84722 104308|0.875 104309|0.65278 104310|0.65278 104311|0.069444 104312|0.375 104313|0.31944 104314|0.29167 104315|0.375 104316|0.375 104317|0.55556 104318|0.15278 104319|0.013889 104320|0.66667 104321|0.69444 104322|0.72222 104323|0.65278 104324|0.75 104325|0.52778 104326|0.79167 104327|0.77778 104328|0.38889 104329|0.23611 104330|0.80556 104331|0.72222 104332|0.76389 104333|0.58333 104334|0.61111 104335|0.65278 104336|0.36111 104337|0.25 104338|0.19444 104339|0.36111 104340|0.31944 104341|0.20833 104342|0.38889 104343|0.33333 104344|0.31944 104345|0.33333 104346|0.23611 104347|0.76389 104348|0.81944 104349|0.76389 104350|0.58333 104351|0.81944 104352|0.98611 104353|0.88889 104354|0.70833 104355|0.59722 104356|0.26389 104357|0.22222 104358|0.38889 104359|0.80556 104360|0.75 104361|0.66667 104362|0.63889 104363|0.875 104364|0.61111 104365|0.79167 104366|0.45833 104367|0.70833 104368|0.027778 104369|0 104370|0.54167 104371|0.31944 104372|0.097222 104373|0.375 104374|0.61111 104375|0.38889 104376|0.66667 104377|0.40278 104378|0.45833 104379|0.40278 104380|0.38889 104381|0.30556 104382|0.5 104383|0.51389 104384|0.70833 104385|0.65278 104386|0.63889 104387|0.76389 104388|0.75 104389|0.52778 104390|0.55556 104391|0.27778 104392|0.43056 104393|0.54167 104394|0.5 104395|0.38889 104396|0.47222 104397|0.55556 104398|0.13889 104399|0.66667 104400|0.5 104401|0.5 104402|0.38889 104403|0.55556 104404|0.5 104405|0.5 104406|0.5 104407|0.56944 104408|0.30556 104409|0.34722 104410|0.5 104411|0.69444 104412|0.84722 104413|0.88889 104414|0.80556 104415|0.51389 104416|0.18056 104417|0.30556 104418|0.36111 104419|0.70833 104420|0.59722 104421|0.11111 104422|0.22222 104423|0.26389 104424|0.18056 104425|0.25 104426|0.5 104427|0.44444 104428|0.5 104429|0.56944 104430|0.5 104431|0.43056 104432|0.5 104433|0.5 104434|0.625 104435|0.5 104436|0.45833 104437|0.69444 104438|0.5 104439|0.56944 104440|0.73611 104441|0.69444 104442|0.51389 104443|0.26389 104444|0.5 104445|0.5 104446|0.59722 104447|0.55556 104448|0.61111 104449|0.5 104450|0.66667 104451|0.61111 104452|0.84722 104453|0.72222 104454|0.86111 104455|0.5 104456|0.625 104457|0.72222 104458|0.5 104459|0.55556 104460|0.63889 104461|0.65278 104462|0.34722 104463|0.45833 104464|0.34722 104465|0.5 104466|0.86111 104467|0.36111 104468|0.76389 104469|0.66667 104470|0.55556 104471|0.77778 104472|0.61111 104473|0.68056 104474|0.5 104475|0.45833 104476|0.70833 104477|0.25 104478|0.45833 104479|0.80556 104480|0.51389 104481|0.52778 104482|0.5 104483|0.84722 104484|0.51389 104485|0.5 104486|0.76389 104487|0.43056 104488|0.18056 104489|0.27778 104490|0.18056 104491|0.40278 104492|0.54167 104493|0.5 104494|0.45833 104495|0.38889 104496|0.5 104497|0.54167 104498|0.5 104499|0.63889 104500|0.48611 104501|0.41667 104502|0.22222 104503|0.15278 104504|0.19444 104505|0.25 104506|0.097222 104507|0.59722 104508|0.79167 104509|0.68056 104510|0.79167 104511|0.5 104512|0.65278 104513|0.33333 104514|0.36111 104515|0.43056 104516|0.40278 104517|0.75 104518|0.31944 104519|0.48611 104520|0.69444 104521|0.5 104522|0.63889 104523|0.86111 104524|0.88889 104525|0.48611 104526|0.16667 104527|0.80556 104528|0.44444 104529|0.5 104530|0.52778 104531|0.30556 104532|0.20833 104533|0.29167 104534|0.51389 104535|0.54167 104536|0.77778 104537|0.83333 104538|0.5 104539|0.59722 104540|0.56944 104541|0.81944 104542|0.81944 104543|0.79167 104544|0.5 104545|0.63889 104546|0.65278 104547|0.83333 104548|0.93056 104549|0.125 104550|0.069444 104551|0.52778 104552|0.38889 104553|0.51389 104554|0.52778 104555|0.23611 104556|0.27778 104557|0.375 104558|0.73611 104559|0.75 104560|0.20833 104561|0.51389 104562|0.41667 104563|0.51389 104564|0.56944 104565|0.63889 104566|0.38889 104567|0.38889 104568|0.55556 104569|0.45833 104570|0.44444 104571|0.48611 104572|0.45833 104573|0.43056 104574|0.86111 104575|0.51389 104576|0.5 104577|0.63889 104578|0.5 104579|0.13889 104580|0.5 104581|0.5 104582|0.55556 104583|0.81944 104584|0.73611 104585|0.83333 104586|0.77778 104587|0.33333 104588|0.70833 104589|0.5 104590|0.5 104591|0.5 104592|0.43056 104593|0.51389 104594|0.41667 104595|0.34722 104596|0.125 104597|0.5 104598|0.58333 104599|0.54167 104600|0.5 104601|0.5 104602|0.5 104603|0.5 104604|0.5 104605|0.65278 104606|0.625 104607|0.68056 104608|0.56944 104609|0.5 104610|0.63889 104611|0.66667 104612|0.5 104613|0.54167 104614|0.38889 104615|0.25 104616|0.63889 104617|0.13889 104618|0.5 104619|0.5 104620|0.5 104621|0.5 104622|0.44444 104623|0.31944 104624|0.56944 104625|0.75 104626|0.63889 104627|0.5 104628|0.51389 104629|0.55556 104630|0.76389 104631|0.77778 104632|0.63889 104633|0.375 104634|0.5 104635|0.83333 104636|0.5 104637|0.5 104638|0.44444 104639|0.52778 104640|0.5 104641|0.5 104642|0.5 104643|0.65278 104644|0.5 104645|0.5 104646|0.5 104647|0.5 104648|0.5 104649|0.22222 104650|0.38889 104651|0.45833 104652|0.625 104653|0.76389 104654|0.76389 104655|0.875 104656|0.97222 104657|0.73611 104658|0.84722 104659|0.63889 104660|0.80556 104661|0.84722 104662|0.5 104663|0.5 104664|0.5 104665|0.5 104666|0.375 104667|0.56944 104668|0.25 104669|0.375 104670|0.375 104671|0.34722 104672|0.51389 104673|0.76389 104674|0.52778 104675|0.68056 104676|0.34722 104677|0.52778 104678|0.61111 104679|0.54167 104680|0.56944 104681|0.52778 104682|0.54167 104683|0.56944 104684|0.73611 104685|0.11111 104686|0.5 104687|0.61111 104688|0.5 104689|0.5 104690|0.55556 104691|0.41667 104692|0.72222 104693|0.44444 104694|0.61111 104695|0.5 104696|0.44444 104697|0.45833 104698|0.5 104699|0.5 104700|0.48611 104701|0.5 104702|0.61111 104703|0.5 104704|0.5 104705|0.72222 104706|0.76389 104707|0.63889 104708|0.77778 104709|0.63889 104710|0.59722 104711|0.65278 104712|0.65278 104713|0.58333 104714|0.61111 104715|0.80556 104716|0.65278 104717|0.55556 104718|0.5 104719|0.5 104720|0.5 104721|0.5 104722|0.65278 104723|0.625 104724|0.55556 104725|0.44444 104726|0.52778 104727|0.58333 104728|0.45833 104729|0.34722 104730|0.5 104731|0.69444 104732|0.61111 104733|0.77778 104734|0.625 104735|0.52778 104736|0.5 104737|0.58333 104738|0.19444 104739|0.625 104740|0.23611 104741|0.65278 104742|0.66667 104743|0.375 104744|0.47222 104745|0.5 104746|0.70833 104747|0.84722 104748|0.5 104749|0.54167 104750|0.5 104751|0.5 104752|0.5 104753|0.5 104754|0.66667 104755|0.68056 104756|0.80556 104757|0.52778 104758|0.48611 104759|0.56944 104760|0.69444 104761|0.56944 104762|0.75 104763|0.88889 104764|0.5 104765|0.58333 104766|0.5 104767|0.61111 104768|0.61111 104769|0.76389 104770|0.51389 104771|0.51389 104772|0.5 104773|0.5 104774|0.55556 104775|0.5 104776|0.5 104777|0.5 104778|0.52778 104779|0.5 104780|0.56944 104781|0.5 104782|0.29167 104783|0.43056 104784|0.54167 104785|0.90278 104786|0.59722 104787|0.5 104788|0.52778 104789|0.5 104790|0.76389 104791|0.30556 104792|0.41667 104793|0.52778 104794|0.5 104795|0.5 104796|0.61111 104797|0.52778 104798|0.61111 104799|0.22222 104800|0.63889 104801|0.70833 104802|0.70833 104803|0.625 104804|0.5 104805|0.31944 104806|0.61111 104807|0.70833 104808|0.56944 104809|0.5 104810|0.70833 104811|0.625 104812|0.625 104813|0.18056 104814|0.5 104815|0.41667 104816|0.31944 104817|0.041667 104818|0.5 104819|0.72222 104820|0.63889 104821|0.88889 104822|0.48611 104823|0.65278 104824|0.80556 104825|0.83333 104826|0.63889 104827|0.76389 104828|0.77778 104829|0.83333 104830|0.88889 104831|0.5 104832|0.68056 104833|0.90278 104834|0.88889 104835|0.95833 104836|0.90278 104837|0.5 104838|0.51389 104839|0.61111 104840|0.5 104841|0.5 104842|0.55556 104843|0.40278 104844|0.44444 104845|0.625 104846|0.44444 104847|0.72222 104848|0.5 104849|0.5 104850|0.56944 104851|0.5 104852|0.5 104853|0.36111 104854|0.5 104855|0.5 104856|0.5 104857|0.5 104858|0.59722 104859|0.5 104860|0.5 104861|0.73611 104862|0.72222 104863|0.5 104864|0.43056 104865|0.65278 104866|0.61111 104867|0.5 104868|0.5 104869|0.5 104870|0.5 104871|0.20833 104872|0.26389 104873|0.44444 104874|0.5 104875|0.5 104876|0.5 104877|0.38889 104878|0.79167 104879|0.47222 104880|0.76389 104881|0.58333 104882|0.375 104883|0.31944 104884|0.73611 104885|0.5 104886|0.5 104887|0.55556 104888|0.5 104889|0.5 104890|0.5 104891|0.65278 104892|0.56944 104893|0.79167 104894|0.70833 104895|0.51389 104896|0.59722 104897|0.5 104898|0.40278 104899|0.88889 104900|0.52778 104901|0.5 104902|0.56944 104903|0.69444 104904|0.63889 104905|0.77778 104906|0.80556 104907|0.65278 104908|0.38889 104909|0.59722 104910|0.5 104911|0.58333 104912|0.875 104913|0.5 104914|0.54167 104915|0.44444 104916|0.22222 104917|0.58333 104918|0.72222 104919|0.66667 104920|0.70833 104921|0.79167 104922|0.77778 104923|0.51389 104924|0.76389 104925|0.48611 104926|0.5 104927|0.43056 104928|0.5 104929|0.76389 104930|0.58333 104931|0.79167 104932|0.5 104933|0.18056 104934|0.36111 104935|0.40278 104936|0.5 104937|0.25 104938|0.54167 104939|0.15278 104940|0.66667 104941|0.65278 104942|0.72222 104943|0.83333 104944|0.54167 104945|0.5 104946|0.73611 104947|0.61111 104948|0.68056 104949|0.5 104950|0.5 104951|0.5 104952|0.5 104953|0.5 104954|0.5 104955|0.5 104956|0.5 104957|0.41667 104958|0.5 104959|0.61111 104960|0.48611 104961|0.43056 104962|0.59722 104963|0.5 104964|0.77778 104965|0.11111 104966|0.43056 104967|0.5 104968|0.55556 104969|0.5 104970|0.5 104971|0.5 104972|0.68056 104973|0.75 104974|0.83333 104975|0.72222 104976|0.69444 104977|0.56944 104978|0.5 104979|0.58333 104980|0.38889 104981|0.5 104982|0.58333 104983|0.77778 104984|0.5 104985|0.77778 104986|0.83333 104987|0.54167 104988|0.72222 104989|0.88889 104990|0.79167 104991|0.63889 104992|0.5 104993|0.5 104994|0.59722 104995|0.5 104996|0.65278 104997|0.47222 104998|0.63889 104999|0.5 105000|0.61111 105001|0.63194 105002|0.52778 105003|0.45833 105004|0.54167 105005|0.70833 105006|0.69444 105007|0.63889 105008|0.5 105009|0.5 105010|0.25 105011|0.5 105012|0.16667 105013|0.5 105014|0.5 105015|0.5 105016|0.56944 105017|0.5 105018|0.48611 105019|0.65278 105020|0.5 105021|0.44444 105022|0.61111 105023|0.44444 105024|0.55556 105025|0.58333 105026|0.44444 105027|0.66667 105028|0.91667 105029|0.58333 105030|0.27778 105031|0.43056 105032|0.63889 105033|0.38889 105034|0.5 105035|0.5 105036|0.56944 105037|0.5 105038|0.5 105039|0.54167 105040|0.5 105041|0.45833 105042|0.47222 105043|0.48611 105044|0.44444 105045|0.47222 105046|0.61111 105047|0.65278 105048|0.84722 105049|0.69444 105050|0.59722 105051|0.51389 105052|0.51389 105053|0.54167 105054|0.5 105055|0.58333 105056|0.5 105057|0.29167 105058|0.125 105059|0.25 105060|0.5 105061|0.58333 105062|0.61111 105063|0.5 105064|0.47222 105065|0.72222 105066|0.55556 105067|0.5 105068|0.59722 105069|0.61111 105070|0.41667 105071|0.5 105072|0.66667 105073|0.75 105074|0.59722 105075|0.56944 105076|0.69444 105077|0.55556 105078|0.5 105079|0.52778 105080|0.5 105081|0.5 105082|0.72222 105083|0.59722 105084|0.5 105085|0.5 105086|0.56944 105087|0.63889 105088|0.5 105089|0.68056 105090|0.63889 105091|0.5 105092|0.5 105093|0.5 105094|0.76389 105095|0.5 105096|0.5 105097|0.48611 105098|0.19444 105099|0.5 105100|0.55556 105101|0.63889 105102|0.44444 105103|0.73611 105104|0.40278 105105|0.55556 105106|0.625 105107|0.59722 105108|0.86111 105109|0.84722 105110|0.5 105111|0.5 105112|0.45833 105113|0.43056 105114|0.5 105115|0.54167 105116|0.63889 105117|0.41667 105118|0.5 105119|0.51389 105120|0.15278 105121|0.25 105122|0.59722 105123|0.73611 105124|0.5 105125|0.45833 105126|0.51389 105127|0.56944 105128|0.63889 105129|0.5 105130|0.5 105131|0.68056 105132|0.5 105133|0.5 105134|0.5 105135|0.5 105136|0.54167 105137|0.40278 105138|0.72222 105139|0.52778 105140|0.11111 105141|0.27778 105142|0.43056 105143|0.43056 105144|0.75 105145|0.18056 105146|0.16667 105147|0.13889 105148|0.47222 105149|0.45833 105150|0.33333 105151|0.25 105152|0.5 105153|0.5 105154|0.56944 105155|0.54167 105156|0.47222 105157|0.43056 105158|0.41667 105159|0.84722 105160|0.80556 105161|0.90278 105162|0.80556 105163|0.51389 105164|0.5 105165|0.44444 105166|0.65278 105167|0.66667 105168|0.5 105169|0.56944 105170|0.65278 105171|0.5 105172|0.083333 105173|0.013889 105174|0.11111 105175|0.097222 105176|0.19444 105177|0.55556 105178|0.90278 105179|0.76389 105180|0.59722 105181|0.5 105182|0.58333 105183|0.41667 105184|0.20833 105185|0.33333 105186|0.38889 105187|0.47222 105188|0.33333 105189|0.34722 105190|0.13889 105191|0.5 105192|0.52778 105193|0.80556 105194|0.81944 105195|0.5 105196|0.51389 105197|0.58333 105198|0.72222 105199|0.5 105200|0.5 105201|0.54167 105202|0.98611 105203|0.16667 105204|0.27778 105205|0.70833 105206|0.51389 105207|0.54167 105208|0.69444 105209|0.875 105210|0.51389 105211|0.18056 105212|0.61111 105213|0.73611 105214|0.77778 105215|0.81944 105216|0.75 105217|0.56944 105218|0.375 105219|0.30556 105220|0.18056 105221|0.45833 105222|0.48611 105223|0.5 105224|0.70833 105225|0.5 105226|0.52778 105227|0.76389 105228|0.56944 105229|0.625 105230|0.65278 105231|0.65278 105232|0.66667 105233|0.41667 105234|0.5 105235|0.5 105236|0.5 105237|0.5 105238|0.51389 105239|0.45833 105240|0.5 105241|0.19444 105242|0.27778 105243|0.56944 105244|0.70833 105245|0.5 105246|0.51389 105247|0.5 105248|0.55556 105249|0.45833 105250|0.5 105251|0.58333 105252|0.33333 105253|0.26389 105254|0.31944 105255|0.45833 105256|0.31944 105257|0.70833 105258|0.38889 105259|0.5 105260|0.51389 105261|0.5 105262|0.45833 105263|0.70833 105264|0.56944 105265|0.59722 105266|0.58333 105267|0.54167 105268|0.41667 105269|0.5 105270|0.63889 105271|0.63889 105272|0.68056 105273|0.041667 105274|0.66667 105275|0.55556 105276|0.54167 105277|0.55556 105278|0.40278 105279|0.66667 105280|0.5 105281|0.58333 105282|0.55556 105283|0.40278 105284|0.27778 105285|0.52778 105286|0.5 105287|0.47222 105288|0.61111 105289|0.5 105290|0.375 105291|0.41667 105292|0.5 105293|0.38889 105294|0.5 105295|0.5 105296|0.48611 105297|0.33333 105298|0.30556 105299|0.5 105300|0.5 105301|0.5 105302|0.5 105303|0.59722 105304|0.55556 105305|0.625 105306|0.68056 105307|0.81944 105308|0.80556 105309|0.5 105310|0.73611 105311|0.59722 105312|0.58333 105313|0.5 105314|0.55556 105315|0.5 105316|0.59722 105317|0.55556 105318|0.5 105319|0.5 105320|0.5 105321|0.5 105322|0.55556 105323|0.5 105324|0.91667 105325|0.81944 105326|0.61111 105327|0.51389 105328|0.65278 105329|0.80556 105330|0.5 105331|0.55556 105332|0.5 105333|0.51389 105334|0.31944 105335|0.52778 105336|0.5 105337|0.44444 105338|0.5 105339|0.52778 105340|0.38889 105341|0.36111 105342|0.5 105343|0.5 105344|0.5 105345|0.66667 105346|0.5 105347|0.5 105348|0.5 105349|0.5 105350|0.027778 105351|0.34722 105352|0.5 105353|0.5 105354|0.59722 105355|0.5 105356|0.61111 105357|0.51389 105358|0.77778 105359|0.5 105360|0.5 105361|0.80556 105362|0.77778 105363|0.70833 105364|0.77778 105365|0.73611 105366|0.84722 105367|0.68056 105368|0.5 105369|0.47222 105370|0.83333 105371|0.66667 105372|0.79167 105373|0.77778 105374|0.48611 105375|0.58333 105376|0.5 105377|0.51389 105378|0.84722 105379|0.5 105380|0.61111 105381|0.20833 105382|0.5 105383|0.66667 105384|0.51389 105385|0.375 105386|0.40278 105387|0.68056 105388|0.61111 105389|0.68056 105390|0.47222 105391|0.40278 105392|0.31944 105393|0.20833 105394|0.72222 105395|0.11111 105396|0.56944 105397|0.18056 105398|0.56944 105399|0.54167 105400|0.56944 105401|0.54167 105402|0.26389 105403|0.55556 105404|0.083333 105405|0.61111 105406|0.5 105407|0.375 105408|0.33333 105409|0.63889 105410|0.26389 105411|0.27778 105412|0.5 105413|0.5 105414|0.83333 105415|0.27778 105416|0.55556 105417|0.5 105418|0.51389 105419|0.5 105420|0.73611 105421|0.81944 105422|0.75 105423|0.72222 105424|0.54167 105425|0.59722 105426|0.72222 105427|0.63889 105428|0.59722 105429|0.5 105430|0.70833 105431|0.70833 105432|0.38889 105433|0.31944 105434|0.45833 105435|0.25 105436|0.5 105437|0.55556 105438|0.59722 105439|0.63889 105440|0.65278 105441|0.48611 105442|0.5 105443|0.51389 105444|0.68056 105445|0.5 105446|0.84722 105447|0.79167 105448|0.56944 105449|0.625 105450|0.83333 105451|0.5 105452|0.47222 105453|0.5 105454|0.70833 105455|0.59722 105456|0.72222 105457|0.76389 105458|0.5 105459|0.86111 105460|0.88889 105461|0.45833 105462|0.31944 105463|0.70833 105464|0.5 105465|0.5 105466|0.5 105467|0.51389 105468|0.77778 105469|0.75 105470|0.47222 105471|0.51389 105472|0.47222 105473|0.66667 105474|0.44444 105475|0.86111 105476|0.41667 105477|0.52778 105478|0.52778 105479|0.76389 105480|0.51389 105481|0.52778 105482|0.5 105483|0.5 105484|0.65278 105485|0.55556 105486|0.59722 105487|0.73611 105488|0.77778 105489|0.79167 105490|0.5 105491|0.34722 105492|0.5 105493|0.5 105494|0.58333 105495|0.69444 105496|0.73611 105497|0.73611 105498|0.47222 105499|0.31944 105500|0.52778 105501|0.63889 105502|0.61111 105503|0.56944 105504|0.5 105505|0.5 105506|0.33333 105507|0.41667 105508|0.66667 105509|0.77778 105510|0.5 105511|0.5 105512|0.5 105513|0.29167 105514|0.5 105515|0.63889 105516|0.58333 105517|0.47222 105518|0.5 105519|0.44444 105520|0.5 105521|0.5 105522|0.5 105523|0.5 105524|0.69444 105525|0.47222 105526|0.33333 105527|0.66667 105528|0.5 105529|0.43056 105530|0.73611 105531|0.5 105532|0.5 105533|0.76389 105534|0.81944 105535|0.5 105536|0.5 105537|0.52778 105538|0.61111 105539|0.52778 105540|0.5 105541|0.52778 105542|0.55556 105543|0.36111 105544|0.19444 105545|0.34722 105546|0.20833 105547|0.19444 105548|0.25 105549|0.59722 105550|0.5 105551|0.58333 105552|0.5 105553|0.5 105554|0.5 105555|0.23611 105556|0.625 105557|0.69444 105558|0.75 105559|0.65278 105560|0.5 105561|0.72222 105562|0.5 105563|0.86111 105564|0.52778 105565|0.51389 105566|0.44444 105567|0.18056 105568|0.73611 105569|0.33333 105570|0.38889 105571|0.5 105572|0.5 105573|0.22222 105574|0.61111 105575|0.48611 105576|0.58333 105577|0.81944 105578|0.55556 105579|0.33333 105580|0.16667 105581|0.055556 105582|0.44444 105583|0.72222 105584|0.58333 105585|0.65278 105586|0.5 105587|0.63889 105588|0.54167 105589|0.5 105590|0.59722 105591|0.5 105592|0.5 105593|0.55556 105594|0.5 105595|0.375 105596|0.5 105597|0.5 105598|0.86111 105599|0.44444 105600|0.5 105601|0.5 105602|0.61111 105603|0.5 105604|0.61111 105605|0.63889 105606|0.875 105607|0.66667 105608|0.76389 105609|1 105610|0.5 105611|0.40278 105612|0.65278 105613|0.69444 105614|0.80556 105615|0.5 105616|0.5 105617|0.5 105618|0.5 105619|0.5 105620|0.30556 105621|0.11111 105622|0.63889 105623|0.52778 105624|0.5 105625|0.20833 105626|0.27778 105627|0.69444 105628|0.77778 105629|0.80556 105630|0.81944 105631|0.63889 105632|0.86111 105633|0.79167 105634|0.86111 105635|0.95833 105636|0.83333 105637|0.94444 105638|0.875 105639|0.45833 105640|0.83333 105641|0.70833 105642|0.80556 105643|0.76389 105644|0.69444 105645|0.63889 105646|0.58333 105647|0.5 105648|0.65278 105649|0.625 105650|0.33333 105651|0.5 105652|0.29167 105653|0.48611 105654|0.72222 105655|0.5 105656|0.5 105657|0.5 105658|0.875 105659|0.5 105660|0.5 105661|0.5 105662|0.5 105663|0.5 105664|0.5 105665|0.69444 105666|0.5 105667|0.43056 105668|0.65278 105669|0.69444 105670|0.63889 105671|0.51389 105672|0.73611 105673|0.625 105674|0.72222 105675|0.80556 105676|0.55556 105677|0.66667 105678|0.48611 105679|0.68056 105680|0.61111 105681|0.80556 105682|0.5 105683|0.25 105684|0.41667 105685|0.72222 105686|0.30556 105687|0.63889 105688|0.48611 105689|0.68056 105690|0.65278 105691|0.72222 105692|0.58333 105693|0.69444 105694|0.18056 105695|0.5 105696|0.5 105697|0.15278 105698|0.041667 105699|0.5 105700|0.52778 105701|0.5 105702|0.15278 105703|0.15278 105704|0.5 105705|0.65278 105706|0.5 105707|0.81944 105708|0.61111 105709|0.54167 105710|0.72222 105711|0.63889 105712|0.51389 105713|0.5 105714|0.81944 105715|0.76389 105716|0.20833 105717|0.29167 105718|0.29167 105719|0.51389 105720|0.63889 105721|0.54167 105722|0.86111 105723|0.66667 105724|0.77778 105725|0.75 105726|0.5 105727|0.44444 105728|0.375 105729|0.61111 105730|0.45833 105731|0.59722 105732|0.72222 105733|0.86111 105734|0.81944 105735|0.80556 105736|0.86111 105737|0.5 105738|0.52778 105739|0.44444 105740|0.72222 105741|0.73611 105742|0.63889 105743|0.68056 105744|0.43056 105745|0.34722 105746|0.36111 105747|0.041667 105748|0.30556 105749|0.56944 105750|0.54167 105751|0.59722 105752|0.5 105753|0.54167 105754|0.43056 105755|0.58333 105756|0.5 105757|0.5 105758|0.5 105759|0.5 105760|0.61111 105761|0.11111 105762|0.45833 105763|0.31944 105764|0.13889 105765|0.13889 105766|0.55556 105767|0.41667 105768|0.84722 105769|0.44444 105770|0.58333 105771|0.41667 105772|0.34722 105773|0.5 105774|0.55556 105775|0.72222 105776|0.66667 105777|0.72222 105778|0.72222 105779|0.72222 105780|0.5 105781|0.5 105782|0.5 105783|0.51389 105784|0.70833 105785|0.36111 105786|0.54167 105787|0.79167 105788|0.5 105789|0.5 105790|0.15278 105791|0.25 105792|0.5 105793|0.40278 105794|0.26389 105795|0.30556 105796|0.25 105797|0.61111 105798|0.69444 105799|0.84722 105800|0.84722 105801|0.58333 105802|0.69444 105803|0.52778 105804|0.44444 105805|0.5 105806|0.33333 105807|0.5 105808|0.56944 105809|0.55556 105810|0.5 105811|0.5 105812|0.54167 105813|0.65278 105814|0.52778 105815|0.40278 105816|0.61111 105817|0.52778 105818|0.48611 105819|0.52778 105820|0.5 105821|0.5 105822|0.79167 105823|0.5 105824|0.5 105825|0.11111 105826|0.5 105827|0.77778 105828|0.68056 105829|0.25 105830|0.44444 105831|0.76389 105832|0.625 105833|0.069444 105834|0.41667 105835|0.25 105836|0.61111 105837|0.86111 105838|0.56944 105839|0.65278 105840|0.66667 105841|0.72222 105842|0.61111 105843|0.66667 105844|0.27778 105845|0.70833 105846|0.5 105847|0.72222 105848|0.65278 105849|0.68056 105850|0.76389 105851|0.43056 105852|0.5 105853|0.5 105854|0.45833 105855|0.55556 105856|0.55556 105857|0.51389 105858|0.61111 105859|0.55556 105860|0.54167 105861|0.55556 105862|0.5 105863|0.27778 105864|0.34722 105865|0.48611 105866|0.375 105867|0.5 105868|0.5 105869|0.58333 105870|0.69444 105871|0.83333 105872|0.86111 105873|0.66667 105874|0.33333 105875|0.19444 105876|0.48611 105877|0.5 105878|0.055556 105879|0.097222 105880|0.16667 105881|0.23611 105882|0.5 105883|0.13889 105884|0.097222 105885|0.43056 105886|0.36111 105887|0.625 105888|0.5 105889|0.5 105890|0.73611 105891|0.5 105892|0.5 105893|1 105894|0.625 105895|0.5 105896|0.5 105897|0.73611 105898|0.51389 105899|0.63889 105900|0.55556 105901|0.68056 105902|0.5 105903|0.61111 105904|0.77778 105905|0.52778 105906|0.55556 105907|0.5 105908|0.55556 105909|0.5 105910|0.5 105911|0.44444 105912|0.44444 105913|0.65278 105914|0.22222 105915|0.097222 105916|0.13889 105917|0.47222 105918|0.51389 105919|0.36111 105920|0.72222 105921|0.55556 105922|0.45833 105923|0.55556 105924|0.88889 105925|0.84722 105926|0.29167 105927|0.22222 105928|0.38889 105929|0.5 105930|0.5 105931|0.5 105932|0.5 105933|0.51389 105934|0.45833 105935|0.48611 105936|0.5 105937|0.5 105938|0.5 105939|0.5 105940|0.5 105941|0.43056 105942|0.5 105943|0.51389 105944|0.375 105945|0.5 105946|0.70833 105947|0.5 105948|0.5 105949|0.5 105950|0.52778 105951|0.5 105952|0.40278 105953|0.72222 105954|0.51389 105955|0.81944 105956|0.44444 105957|0.5 105958|0.51389 105959|0.54167 105960|0.5 105961|0.5 105962|0.5 105963|0.83333 105964|0.61111 105965|0.81944 105966|0.77778 105967|0.5 105968|0.58333 105969|0.61111 105970|0.58333 105971|0.51389 105972|0.5 105973|0.44444 105974|0.5 105975|0.625 105976|0.77778 105977|0.22222 105978|0.5 105979|0.5 105980|0.5 105981|0.69444 105982|0.5 105983|0.76389 105984|0.80556 105985|0.5 105986|0.5 105987|0.44444 105988|0.23611 105989|0.083333 105990|0.625 105991|0.68056 105992|0.52778 105993|0.88889 105994|0.5 105995|0.47222 105996|0.41667 105997|0.5 105998|0.65278 105999|0.38889 106000|0.5 106001|0.5 106002|0.083333 106003|0.11111 106004|0.625 106005|0.51389 106006|0.22222 106007|0.58333 106008|0.44444 106009|0.5 106010|0.48611 106011|0.51389 106012|0.54167 106013|0.63889 106014|0.76389 106015|0.54167 106016|0.81944 106017|0.5 106018|0.5 106019|0.72222 106020|0.38889 106021|0.5 106022|0.5 106023|0.625 106024|0.81944 106025|0.5 106026|0.66667 106027|0.54167 106028|0.5 106029|0.45833 106030|0.51389 106031|0.69444 106032|0.77778 106033|0.54167 106034|0.55556 106035|0.84722 106036|0.76389 106037|0.5 106038|0.38889 106039|0.5 106040|0.38889 106041|0.48611 106042|0.91667 106043|0.5 106044|0.55556 106045|0.81944 106046|0.72222 106047|0.5 106048|0.625 106049|0.5 106050|0.54167 106051|0.79167 106052|0.75 106053|0.77778 106054|0.61111 106055|0.30556 106056|0.5 106057|0.52778 106058|0.41667 106059|0.61111 106060|0.40278 106061|0.76389 106062|0.88889 106063|0.84722 106064|0.5 106065|0.5 106066|0.5 106067|0.5 106068|0.83333 106069|0.5 106070|0.5 106071|0.5 106072|0.5 106073|0.5 106074|0.55556 106075|0.52778 106076|0.40278 106077|0.40278 106078|0.45833 106079|0.5 106080|0.56944 106081|0.45833 106082|0.5 106083|0.56944 106084|0.43056 106085|0.48611 106086|0.63889 106087|0.43056 106088|0.25 106089|0.30556 106090|0.47222 106091|0.27778 106092|0.5 106093|0.5 106094|0.61111 106095|0.55556 106096|0.40278 106097|0.66667 106098|0.51389 106099|0.48611 106100|0.48611 106101|0.15278 106102|0.125 106103|0.45833 106104|0.33333 106105|0.27778 106106|0.33333 106107|0.30556 106108|0.083333 106109|0.5 106110|0.5 106111|0.51389 106112|0.81944 106113|0.5 106114|0.56944 106115|0.44444 106116|0.5 106117|0.5 106118|0.5 106119|0.43056 106120|0.38889 106121|0.5 106122|0.5 106123|0.5 106124|0.625 106125|0.59722 106126|0.41667 106127|0.44444 106128|0.25 106129|0.30556 106130|0.25 106131|0.11111 106132|0.58333 106133|0.5 106134|0.45833 106135|0.66667 106136|0.54167 106137|0.51389 106138|0.73611 106139|0.65278 106140|0.5 106141|0.61111 106142|0.79167 106143|0.51389 106144|0.5 106145|0.5 106146|0.38889 106147|0.5 106148|0.5 106149|0.30556 106150|0.5 106151|0.5 106152|0.23611 106153|0.66667 106154|0.5 106155|0.80556 106156|0.73611 106157|0.73611 106158|0.375 106159|0.29167 106160|0.69444 106161|0.41667 106162|0.5 106163|0.27778 106164|0.33333 106165|0.63889 106166|0.75 106167|0.625 106168|0.56944 106169|0.5 106170|0.54167 106171|0.68056 106172|0.63889 106173|0.26389 106174|0.11111 106175|0.30556 106176|0.22222 106177|0.22222 106178|0.70833 106179|0.72222 106180|0.5 106181|0.5 106182|0.63889 106183|0.5 106184|0.43056 106185|0.44444 106186|0.69444 106187|0.5 106188|0.5 106189|0.52778 106190|0.5 106191|0.70833 106192|0.63889 106193|0.30556 106194|0.79167 106195|0.73611 106196|0.44444 106197|0.86111 106198|0.75 106199|0.38889 106200|0.54167 106201|0.75 106202|0.72222 106203|0.83333 106204|0.79167 106205|0.5 106206|0.52778 106207|0.43056 106208|0.375 106209|0.33333 106210|0.5 106211|0.5 106212|0.51389 106213|0.56944 106214|0.70833 106215|0.13889 106216|0.23611 106217|0.55556 106218|0.66667 106219|0.19444 106220|0.36111 106221|0.069444 106222|0.33333 106223|0.5 106224|0.48611 106225|0.44444 106226|0.79167 106227|0.59722 106228|0.23611 106229|0.56944 106230|0.70833 106231|0.83333 106232|0.79167 106233|0.59722 106234|0.68056 106235|0.61111 106236|0.5 106237|0.34722 106238|0.40278 106239|0.26389 106240|0.25 106241|0.5 106242|0.54167 106243|0.31944 106244|0.76389 106245|0.70833 106246|0.76389 106247|0.38889 106248|0.5 106249|0.5 106250|0.55556 106251|0.77778 106252|0.15278 106253|0.40278 106254|0.54167 106255|0.27778 106256|0.25 106257|0.36111 106258|0.5 106259|0.5 106260|0.52778 106261|0.56944 106262|0.52778 106263|0.5 106264|0.5 106265|0.75 106266|0.65278 106267|0.66667 106268|0.625 106269|0.68056 106270|0.27778 106271|0.61111 106272|0.375 106273|0.41667 106274|0.79167 106275|0.66667 106276|0.80556 106277|0.88889 106278|0.875 106279|0.38889 106280|0.61111 106281|0.41667 106282|0.69444 106283|0.66667 106284|0.51389 106285|0.5 106286|0.38889 106287|0.5 106288|0.36111 106289|0.54167 106290|0.5 106291|0.5 106292|0.44444 106293|0.80556 106294|0.69444 106295|0.5 106296|0.56944 106297|0.44444 106298|0.5 106299|0.56944 106300|0.58333 106301|0.58333 106302|0.5 106303|0.5 106304|0.59722 106305|0.58333 106306|0.84722 106307|0.5 106308|0.61111 106309|0.52778 106310|0.47222 106311|0.51389 106312|0.43056 106313|0.29167 106314|0.58333 106315|0.55556 106316|0.33333 106317|0.31944 106318|0.19444 106319|0.43056 106320|0.43056 106321|0.61111 106322|0.5 106323|0.48611 106324|0.58333 106325|0.40278 106326|0.33333 106327|0.22222 106328|0.45833 106329|0.68056 106330|0.43056 106331|0.52778 106332|0.23611 106333|0.34722 106334|0.41667 106335|0.68056 106336|0.72222 106337|0.59722 106338|0.5 106339|0.77778 106340|0.77778 106341|0.55556 106342|0.5 106343|0.72222 106344|0.5 106345|0.80556 106346|0.70833 106347|0.80556 106348|0.43056 106349|0.38889 106350|0.34722 106351|0.26389 106352|0.75 106353|0.73611 106354|0.58333 106355|0.5 106356|0.5 106357|0.5 106358|0.19444 106359|0.22222 106360|0.5 106361|0.47222 106362|0.80556 106363|0.47222 106364|0.5 106365|0.70833 106366|0.5 106367|0.5 106368|0.76389 106369|0.27778 106370|0.47222 106371|0.20833 106372|0.13889 106373|0.55556 106374|0.5 106375|0.47222 106376|0.5 106377|0.47222 106378|0.97222 106379|0.72222 106380|0.66667 106381|0.59722 106382|0.43056 106383|0.55556 106384|0.38889 106385|0.47222 106386|0.81944 106387|0.75 106388|0.38889 106389|0.34722 106390|0.40278 106391|0.48611 106392|0.44444 106393|0.43056 106394|0.54167 106395|0.43056 106396|0.75 106397|0.5 106398|0.34722 106399|0.16667 106400|0.5 106401|0.34722 106402|0.5 106403|0.51389 106404|0.51389 106405|0.5 106406|0.54167 106407|0.38889 106408|0.43056 106409|0.47222 106410|0.72222 106411|0.70833 106412|0.61111 106413|0.54167 106414|0.77778 106415|0.70833 106416|0.56944 106417|0.47222 106418|0.13889 106419|0.40278 106420|0.027778 106421|0.45833 106422|0.36111 106423|0.33333 106424|0.36111 106425|0.72222 106426|0.59722 106427|0.59722 106428|0.56944 106429|0.43056 106430|0.027778 106431|0.5 106432|0.5 106433|0.16667 106434|0.5 106435|0.48611 106436|0.38889 106437|0.44444 106438|0.31944 106439|0.34722 106440|0.26389 106441|0.013889 106442|0.44444 106443|0.5 106444|0.83333 106445|0.81944 106446|0.44444 106447|0.31944 106448|0.68056 106449|0.30556 106450|0.69444 106451|0.44444 106452|0.41667 106453|0.625 106454|0.38889 106455|0.63889 106456|0.40278 106457|0.84722 106458|0.125 106459|0.54167 106460|0.48611 106461|0.625 106462|0.27778 106463|0.33333 106464|0.31944 106465|0.61111 106466|0.34722 106467|0.81944 106468|0.84722 106469|0.68056 106470|0.041667 106471|0.20833 106472|0.40278 106473|0.48611 106474|0.40278 106475|0.48611 106476|0.097222 106477|0.16667 106478|0.013889 106479|0.19444 106480|0.027778 106481|0.027778 106482|0.31944 106483|0.58333 106484|0.69444 106485|0.52778 106486|0.5 106487|0.22222 106488|0.38889 106489|0.5 106490|0.44444 106491|0.58333 106492|0.44444 106493|0.34722 106494|0.44444 106495|0.66667 106496|0.80556 106497|0.45833 106498|0.48611 106499|0.70833 106500|0.61111 106501|0.65278 106502|0.63889 106503|0.47222 106504|0.5 106505|0.5 106506|0.23611 106507|0.20833 106508|0.5 106509|0.45833 106510|0.5 106511|0.55556 106512|0.13889 106513|0.51389 106514|0.83333 106515|0.72222 106516|0.20833 106517|0.58333 106518|0.68056 106519|0.47222 106520|0.29167 106521|0.27778 106522|0.5 106523|0.51389 106524|0.58333 106525|0.79167 106526|0.59722 106527|0.52778 106528|0.25 106529|0.27778 106530|0.61111 106531|0.80556 106532|0.68056 106533|0.23611 106534|0.23611 106535|0.15278 106536|0.22222 106537|0.52778 106538|0.59722 106539|0.34722 106540|0.55556 106541|0.16667 106542|0.48611 106543|0.41667 106544|0.48611 106545|0.5 106546|0.375 106547|0.61111 106548|0.5 106549|0.5 106550|0.18056 106551|0.79167 106552|0.48611 106553|0.33333 106554|0.34722 106555|0.61111 106556|0.875 106557|0.79167 106558|0.5 106559|0.5 106560|0.61111 106561|0.38889 106562|0.54167 106563|0.48611 106564|0.66667 106565|0.79167 106566|0.29167 106567|0.31944 106568|0.16667 106569|0.36111 106570|0.66667 106571|0.45833 106572|0.5 106573|0.5 106574|0.48611 106575|0.51389 106576|0.26389 106577|0.59722 106578|0.61111 106579|0.76389 106580|0.5 106581|0.22222 106582|0.5 106583|0.25 106584|0.25 106585|0.66667 106586|0.58333 106587|0.58333 106588|0.41667 106589|0.86111 106590|0.69444 106591|0.66667 106592|0.68056 106593|0.5 106594|0.36111 106595|0.45833 106596|0.43056 106597|0.61111 106598|0.40278 106599|0.73611 106600|0.45833 106601|0.25 106602|0.45833 106603|0.69444 106604|0.25 106605|0.375 106606|0.73611 106607|0.81944 106608|0.45833 106609|0.5 106610|0.44444 106611|0.72222 106612|0.63889 106613|0.34722 106614|0.40278 106615|0.54167 106616|0.45833 106617|0.70833 106618|0.51389 106619|0.22222 106620|0.55556 106621|0.79167 106622|0.083333 106623|0.055556 106624|0.58333 106625|0.34722 106626|0.66667 106627|0.83333 106628|0.52778 106629|0.69444 106630|0.58333 106631|0.5 106632|0.625 106633|0.63889 106634|0.70833 106635|0.5 106636|0.48611 106637|0.45833 106638|0.33333 106639|0.66667 106640|0.59722 106641|0.69444 106642|0.65278 106643|0.29167 106644|0.70833 106645|0.79167 106646|0.70833 106647|0.58333 106648|0.51389 106649|0.68056 106650|0.61111 106651|0.59722 106652|0.43056 106653|0.16667 106654|0.44444 106655|0.31944 106656|0.47222 106657|0.5 106658|0.19444 106659|0.34722 106660|0.44444 106661|0.41667 106662|0.30556 106663|0.38889 106664|0.29167 106665|0.055556 106666|0.5 106667|0.47222 106668|0.11111 106669|0.33333 106670|0.625 106671|0.44444 106672|0.52778 106673|0.27778 106674|0.55556 106675|0.44444 106676|0.65278 106677|0.77778 106678|0.40278 106679|0.59722 106680|0.65278 106681|0.5 106682|0.84722 106683|0.56944 106684|0.61111 106685|0.55556 106686|0.625 106687|0.84722 106688|0.81944 106689|0.56944 106690|0.48611 106691|0.79167 106692|0.5 106693|0.59722 106694|0.5 106695|0.52778 106696|0.43056 106697|0.72222 106698|0.76389 106699|0.54167 106700|0.5 106701|0.5 106702|0.38889 106703|0.30556 106704|0.33333 106705|0.55556 106706|0.58333 106707|0.5 106708|0.69444 106709|0.34722 106710|0.69444 106711|0.45833 106712|0.625 106713|0.54167 106714|0.31944 106715|0.63889 106716|0.25 106717|0.63889 106718|0.59722 106719|0.47222 106720|0.5 106721|0.31944 106722|0.5 106723|0.69444 106724|0.61111 106725|0.41667 106726|0.44444 106727|0.26389 106728|0.63889 106729|0.48611 106730|0.56944 106731|0.68056 106732|0.5 106733|0.44444 106734|0.5 106735|0.5 106736|0.5 106737|0.55556 106738|0.52778 106739|0.55556 106740|0.40278 106741|0.38889 106742|0.61111 106743|0.625 106744|0.5 106745|0.22222 106746|0.27778 106747|0.59722 106748|0.41667 106749|0.31944 106750|0.27778 106751|0.45833 106752|0.29167 106753|0.47222 106754|0.55556 106755|0.65278 106756|0.61111 106757|0.69444 106758|0.76389 106759|0.80556 106760|0.84722 106761|0.52778 106762|0.88889 106763|0.88889 106764|0.77778 106765|0.51389 106766|0.65278 106767|0.51389 106768|0.5 106769|0.55556 106770|0.61111 106771|0.5 106772|0.5 106773|0.5 106774|0.5 106775|0.5 106776|0.52778 106777|0.13889 106778|0.47222 106779|0.5 106780|0.13889 106781|0.30556 106782|0.34722 106783|0.43056 106784|0.40278 106785|0.20833 106786|0.31944 106787|0.48611 106788|0.41667 106789|0.52778 106790|0.81944 106791|0.76389 106792|0.54167 106793|0.56944 106794|0.5 106795|0.5 106796|0.625 106797|0.68056 106798|0.41667 106799|0.52778 106800|0.45833 106801|0.30556 106802|0.26389 106803|0.11111 106804|0.52778 106805|0.83333 106806|0.34722 106807|0.79167 106808|0.72222 106809|0.51389 106810|0.66667 106811|0.58333 106812|0.88889 106813|0.18056 106814|0.83333 106815|0.73611 106816|0.63889 106817|0.59722 106818|0.33333 106819|0.125 106820|0.77778 106821|0.69444 106822|0.77778 106823|0.80556 106824|0.5 106825|0.61111 106826|0.68056 106827|0.69444 106828|0.55556 106829|0.43056 106830|0.19444 106831|0.16667 106832|0.81944 106833|0.055556 106834|0.55556 106835|0.29167 106836|0.75 106837|0.80556 106838|0.77778 106839|0.81944 106840|0.76389 106841|0.81944 106842|0.48611 106843|0.54167 106844|0.48611 106845|0.11111 106846|0.72222 106847|0.72222 106848|0.65278 106849|0.75 106850|0.66667 106851|0.875 106852|0.86111 106853|0.76389 106854|0.097222 106855|0.38889 106856|0.22222 106857|0.125 106858|0.013889 106859|0.47222 106860|0.45833 106861|0.43056 106862|0.76389 106863|0.52778 106864|0.73611 106865|0.83333 106866|0.54167 106867|0.47222 106868|0.38889 106869|0.70833 106870|0.29167 106871|0.40278 106872|0.36111 106873|0.68056 106874|0.73611 106875|0.73611 106876|0.41667 106877|0.68056 106878|0.58333 106879|0.76389 106880|0.72222 106881|0.31944 106882|0.125 106883|0.15278 106884|0.36111 106885|0.45833 106886|0.375 106887|0.18056 106888|0.54167 106889|0.56944 106890|0.51389 106891|0.20833 106892|0.375 106893|0.55556 106894|0.22222 106895|0.54167 106896|0.44444 106897|0.36111 106898|0.77778 106899|0.52778 106900|0.66667 106901|0.625 106902|0.33333 106903|0.34722 106904|0.66667 106905|0.69444 106906|0.41667 106907|0.375 106908|0.54167 106909|0.65278 106910|0.66667 106911|0.66667 106912|0.84722 106913|0.63889 106914|0.63889 106915|0.79167 106916|0.79167 106917|0.15278 106918|0.33333 106919|0.33333 106920|0.47222 106921|0.61111 106922|0.55556 106923|0.41667 106924|0.43056 106925|0.48611 106926|0.51389 106927|0.31944 106928|0.38889 106929|0.31944 106930|0.31944 106931|0.625 106932|0.63889 106933|0.33333 106934|0.30556 106935|0.44444 106936|0.375 106937|0.73611 106938|0.65278 106939|0.31944 106940|0.47222 106941|0.13889 106942|0.069444 106943|0.69444 106944|0.69444 106945|0.69444 106946|0.70833 106947|0.77778 106948|0.125 106949|0.097222 106950|0.44444 106951|0.19444 106952|0.5 106953|0.56944 106954|0.63889 106955|0.56944 106956|0.375 106957|0.19444 106958|0.63889 106959|0.055556 106960|0.20833 106961|0.84722 106962|0.81944 106963|0.65278 106964|0.76389 106965|0.86111 106966|0.77778 106967|0.80556 106968|0.16667 106969|0.80556 106970|0.75 106971|0.56944 106972|0.38889 106973|0.40278 106974|0.54167 106975|0.41667 106976|0.83333 106977|0.16667 106978|0.72222 106979|0.51389 106980|0.83333 106981|0.58333 106982|0.81944 106983|0.20833 106984|0.44444 106985|0.79167 106986|0.40278 106987|0.33333 106988|0.61111 106989|0.66667 106990|0.45833 106991|0.76389 106992|0.19444 106993|0.23611 106994|0.40278 106995|0.48611 106996|0.36111 106997|0.63889 106998|0.083333 106999|0.125 107000|0.097222 107001|0.22222 107002|0.625 107003|0.29167 107004|0.44444 107005|0.69444 107006|0.59722 107007|0.22222 107008|0.72222 107009|0.65278 107010|0.69444 107011|0.61111 107012|0.83333 107013|0.76389 107014|0.70833 107015|0.11111 107016|0.47222 107017|0.44444 107018|0.11111 107019|0.38889 107020|0.041667 107021|0.25 107022|0.38889 107023|0.36111 107024|0.38889 107025|0.11111 107026|0.36111 107027|0.51389 107028|0.91667 107029|0.27778 107030|0.11111 107031|0.27778 107032|0.625 107033|0.77778 107034|0.52778 107035|0.47222 107036|0.63889 107037|0.68056 107038|0.54167 107039|0.59722 107040|0.44444 107041|0.73611 107042|0.75 107043|0.375 107044|0.38889 107045|0.54167 107046|0.73611 107047|0.72222 107048|0.47222 107049|0.25 107050|0.69444 107051|0.61111 107052|0.56944 107053|0.70833 107054|0.51389 107055|0.80556 107056|0.73611 107057|0.65278 107058|0.63889 107059|0.70833 107060|0.20833 107061|0.069444 107062|0.34722 107063|0.30556 107064|0.72222 107065|0.54167 107066|0.56944 107067|0.59722 107068|0.47222 107069|0.58333 107070|0.29167 107071|0.16667 107072|0.31944 107073|0.61111 107074|0.75 107075|0.56944 107076|0.65278 107077|0.58333 107078|0.875 107079|0.20833 107080|0.90278 107081|0.5 107082|0.44444 107083|0.38889 107084|0.38889 107085|0.13889 107086|0.47222 107087|0.48611 107088|0.68056 107089|0.51389 107090|0.58333 107091|0.48611 107092|0.55556 107093|0.52778 107094|0.55556 107095|0.75 107096|0.83333 107097|0.73611 107098|0.5 107099|0.38889 107100|0.59722 107101|0.375 107102|0.61111 107103|0.63889 107104|0.61111 107105|0.77778 107106|0.5 107107|0.59722 107108|0.61111 107109|0.625 107110|0.65278 107111|0.83333 107112|0.5 107113|0.52778 107114|0.44444 107115|0.52778 107116|0.41667 107117|0.31944 107118|0.54167 107119|0.41667 107120|0.375 107121|0.125 107122|0.48611 107123|0.48611 107124|0.65278 107125|0.47222 107126|0.41667 107127|0.54167 107128|0.5 107129|0.5 107130|0.29167 107131|0.5 107132|0.51389 107133|0.77778 107134|0.5 107135|0.5 107136|0.54167 107137|0.70833 107138|0.44444 107139|0.375 107140|0.47222 107141|0.25 107142|0.25 107143|0.5 107144|0.69444 107145|0.25 107146|0.48611 107147|0.31944 107148|0.55556 107149|0.55556 107150|0.56944 107151|0.72222 107152|0.52778 107153|0.61111 107154|0.5 107155|0.5 107156|0.38889 107157|0.5 107158|0.45833 107159|0.61111 107160|0.55556 107161|0.54167 107162|0.5 107163|0.55556 107164|0.83333 107165|0.44444 107166|0.47222 107167|0.55556 107168|0.5 107169|0.44444 107170|0.58333 107171|0.58333 107172|0.5 107173|0.81944 107174|0.5 107175|0.73611 107176|0.5 107177|0.90278 107178|0.5 107179|0.5 107180|0.40278 107181|0.5 107182|0.5 107183|0.27778 107184|0.30556 107185|0.5 107186|0.51389 107187|0.63889 107188|0.5 107189|0.56944 107190|0.61111 107191|0.5 107192|0.5 107193|0.5 107194|0.5 107195|0.5 107196|0.5 107197|0.63889 107198|0.5 107199|0.54167 107200|0.625 107201|0.65278 107202|0.55556 107203|0.5 107204|0.5 107205|0.5 107206|0.5 107207|0.58333 107208|0.5 107209|0.5 107210|0.68056 107211|0.5 107212|0.5 107213|0.63889 107214|0.5 107215|0.56944 107216|0.52778 107217|0.65278 107218|0.5 107219|0.47222 107220|0.25 107221|0.90278 107222|0.84722 107223|0.5 107224|0.40278 107225|0.38889 107226|0.125 107227|0.41667 107228|0.055556 107229|0.055556 107230|0.56944 107231|0.5 107232|0.5 107233|0.40278 107234|0.5 107235|0.5 107236|0.5 107237|0.51389 107238|0.58333 107239|0.5 107240|0.22222 107241|0.54167 107242|0.16667 107243|0.38889 107244|0.48611 107245|0.16667 107246|0.29167 107247|0.055556 107248|0.125 107249|0.083333 107250|0.23611 107251|0.069444 107252|0.33333 107253|0.27778 107254|0.38889 107255|0.80556 107256|0.73611 107257|0.66667 107258|0.36111 107259|0.5 107260|0.375 107261|0.22222 107262|0.47222 107263|0.29167 107264|0.68056 107265|0.84722 107266|0.40278 107267|0.52778 107268|0.18056 107269|0.5 107270|0.43056 107271|0.5 107272|0.56944 107273|0.55556 107274|0.45833 107275|0.5 107276|0.51389 107277|0.41667 107278|0.31944 107279|0.52778 107280|0.5 107281|0.5 107282|0.59722 107283|0.5 107284|0.625 107285|0.5 107286|0.5 107287|0.5 107288|0.5 107289|0.40278 107290|0.58333 107291|0.5 107292|0.40278 107293|0.5 107294|0.91667 107295|0.5 107296|0.83333 107297|0.86111 107298|0.75 107299|0.77778 107300|0.5 107301|0.20833 107302|0.69444 107303|0.44444 107304|0.48611 107305|0.55556 107306|0.65278 107307|0.48611 107308|0.40278 107309|0.54167 107310|0.55556 107311|0.43056 107312|0.47222 107313|0.36111 107314|0.65278 107315|0.625 107316|0.51389 107317|0.83333 107318|0.5 107319|0.56944 107320|0.52778 107321|0.27778 107322|0.52778 107323|0.51389 107324|0.52778 107325|0.54167 107326|0.66667 107327|0.63889 107328|0.875 107329|0.38889 107330|0.5 107331|0.51389 107332|0.5 107333|0.58333 107334|0.69444 107335|0.29167 107336|0.51389 107337|0.61111 107338|0.48611 107339|0.63889 107340|0.5 107341|0.61111 107342|0.61111 107343|0.59722 107344|0.38889 107345|0.5 107346|0.5 107347|0.68056 107348|0.33333 107349|0.70833 107350|0.75 107351|0.77778 107352|0.81944 107353|0.5 107354|0.5 107355|0.58333 107356|0.5 107357|0.11111 107358|0.55556 107359|0.5 107360|0.73611 107361|0.5 107362|0.47222 107363|0.5 107364|0.19444 107365|0.30556 107366|0.36111 107367|0.58333 107368|0.66667 107369|0.51389 107370|0.45833 107371|0.41667 107372|0.20833 107373|0.33333 107374|0.5 107375|0.77778 107376|0.5 107377|0.48611 107378|0.88889 107379|0.61111 107380|0.5 107381|0.56944 107382|0.61111 107383|0.5 107384|0.5 107385|0.5 107386|0.75 107387|0.79167 107388|0.54167 107389|0.69444 107390|0.625 107391|0.66667 107392|0.5 107393|0.5 107394|0.55556 107395|0.88889 107396|0.68056 107397|0.65278 107398|0.84722 107399|0.94444 107400|0.90278 107401|0.55556 107402|0.44444 107403|0.875 107404|0.27778 107405|0.58333 107406|0.29167 107407|0.22222 107408|0.58333 107409|0.5 107410|0.5 107411|0.54167 107412|0.5 107413|0.25 107414|0.25 107415|0.41667 107416|0.41667 107417|0.55556 107418|0.63889 107419|0.65278 107420|0.34722 107421|0.40278 107422|0.54167 107423|0.51389 107424|0.58333 107425|0.23611 107426|0.36111 107427|0.27778 107428|0.45833 107429|0.5 107430|0.5 107431|0.65278 107432|0.5 107433|0.5 107434|0.48611 107435|0.65278 107436|0.83333 107437|0.51389 107438|0.77778 107439|0.72222 107440|0.5 107441|0.73611 107442|0.58333 107443|0.22222 107444|0.375 107445|0.36111 107446|0.68056 107447|0.70833 107448|0.38889 107449|0.81944 107450|0.79167 107451|0.75 107452|0.55556 107453|0.66667 107454|0.69444 107455|0.66667 107456|0.55556 107457|0.18056 107458|0.375 107459|0.097222 107460|0.16667 107461|0.54167 107462|0.84722 107463|0.34722 107464|0.51389 107465|0.58333 107466|0.79167 107467|0.52778 107468|0.31944 107469|0.19444 107470|0.27778 107471|0.33333 107472|0.61111 107473|0.33333 107474|0.083333 107475|0.40278 107476|0.29167 107477|0.55556 107478|0.055556 107479|0.55556 107480|0.33333 107481|0.38889 107482|0.29167 107483|0.30556 107484|0.5 107485|0.58333 107486|0.56944 107487|0.41667 107488|0.75 107489|0.31944 107490|0.20833 107491|0.44444 107492|0.5 107493|0.5 107494|0.66667 107495|0.5 107496|0.625 107497|0.5 107498|0.5 107499|0.5 107500|0.52778 107501|0.40278 107502|0.56944 107503|0.58333 107504|0.51389 107505|0.88889 107506|0.22222 107507|0.59722 107508|0.5 107509|0.48611 107510|0.5 107511|0.5 107512|0.5 107513|0.625 107514|0.48611 107515|0.59722 107516|0.63889 107517|0.20833 107518|0.13889 107519|0.52778 107520|0.48611 107521|0.76389 107522|0.72222 107523|0.44444 107524|0.26389 107525|0.30556 107526|0.097222 107527|0.52778 107528|0.77778 107529|0.72222 107530|0.63889 107531|0.26389 107532|0.18056 107533|0.5 107534|0.5 107535|0.61111 107536|0.66667 107537|0.54167 107538|0.84722 107539|0.33333 107540|0.65278 107541|0.54167 107542|0.54167 107543|0.5 107544|0.79167 107545|0.75 107546|0.93056 107547|0.73611 107548|0.93056 107549|0.83333 107550|0.43056 107551|0.29167 107552|0.66667 107553|0.5 107554|0.36111 107555|0.52778 107556|0.55556 107557|0.38889 107558|0.61111 107559|0.5 107560|0.5 107561|0.54167 107562|0.51389 107563|0.45833 107564|0.51389 107565|0.5 107566|0.5 107567|0.5 107568|0.75 107569|0.51389 107570|0.56944 107571|0.83333 107572|0.5 107573|0.5 107574|0.5 107575|0.625 107576|0.5 107577|0.55556 107578|0.52778 107579|0.52778 107580|0.43056 107581|0.40278 107582|0.51389 107583|0.375 107584|0.48611 107585|0.625 107586|0.70833 107587|0.81944 107588|0.5 107589|0.5 107590|0.5 107591|0.83333 107592|0.5 107593|0.47222 107594|0.5 107595|0.55556 107596|0.5 107597|0.5 107598|0.5 107599|0.5 107600|0.5 107601|0.48611 107602|0.70833 107603|0.5 107604|0.5 107605|0.5 107606|0.69444 107607|0.5 107608|0.76389 107609|0.72222 107610|0.72222 107611|0.73611 107612|0.86111 107613|0.70833 107614|0.22222 107615|0.61111 107616|0.5 107617|0.5 107618|0.55556 107619|0.69444 107620|0.5 107621|0.5 107622|0.54167 107623|0.58333 107624|0.5 107625|0.5 107626|0.5 107627|0.625 107628|0.44444 107629|0.44444 107630|0.45833 107631|0.5 107632|0.54167 107633|0.84722 107634|0.76389 107635|0.5 107636|0.51389 107637|1 107638|0.54167 107639|0.44444 107640|0.5 107641|0.63889 107642|0.52778 107643|0.58333 107644|0.45833 107645|0.5 107646|0.5 107647|0.27778 107648|0.38889 107649|0.5 107650|0.83333 107651|0.61111 107652|0.73611 107653|0.70833 107654|0.43056 107655|0.5 107656|0.47222 107657|0.68056 107658|0.70833 107659|0.68056 107660|0.56944 107661|0.38889 107662|0.51389 107663|0.68056 107664|0.61111 107665|0.5 107666|0.19444 107667|0.5 107668|0.83333 107669|0.5 107670|0.5 107671|0.5 107672|0.5 107673|0.61111 107674|0.56944 107675|0.41667 107676|0.5 107677|0.5 107678|0.5 107679|0.5 107680|0.5 107681|0.69444 107682|0.5 107683|0.20833 107684|0.16667 107685|0.5 107686|0.5 107687|0.52778 107688|0.5 107689|0.51389 107690|0.5 107691|0.44444 107692|0.41667 107693|0.65278 107694|0.40278 107695|0.56944 107696|0.38889 107697|0.5 107698|0.45833 107699|0.54167 107700|0.5 107701|0.40278 107702|0.44444 107703|0.5 107704|0.77778 107705|0.75 107706|0.5 107707|0.52778 107708|0.76389 107709|0.51389 107710|0.77778 107711|0.83333 107712|0.5 107713|0.5 107714|0.22222 107715|0.48611 107716|0.19444 107717|0.5 107718|0.5 107719|0.72222 107720|0.47222 107721|0.45833 107722|0.58333 107723|0.56944 107724|0.51389 107725|0.41667 107726|0.68056 107727|0.69444 107728|0.48611 107729|0.69444 107730|0.47222 107731|0.47222 107732|0.5 107733|0.61111 107734|0.48611 107735|0.5 107736|0.5 107737|0.5 107738|0.5 107739|0.80556 107740|0.69444 107741|0.58333 107742|0.52778 107743|0.23611 107744|0.5 107745|0.52778 107746|0.5 107747|0.45833 107748|0.5 107749|0.38889 107750|0.40278 107751|0.625 107752|0.5 107753|0.51389 107754|0.52778 107755|0.44444 107756|0.40278 107757|0.5 107758|0.069444 107759|0.5 107760|0.47222 107761|0.61111 107762|0.68056 107763|0.80556 107764|0.5 107765|0.52778 107766|0.58333 107767|0.5 107768|0.58333 107769|0.61111 107770|0.59722 107771|0.16667 107772|0.23611 107773|0.29167 107774|0.11111 107775|0.22222 107776|0.79167 107777|0.56944 107778|0.5 107779|0.75 107780|0.61111 107781|0.5 107782|0.5 107783|0.52778 107784|0.94444 107785|0.76389 107786|0.73611 107787|0.84722 107788|0.94444 107789|0.73611 107790|0.86111 107791|0.44444 107792|0.38889 107793|0.5 107794|0.5 107795|0.58333 107796|0.47222 107797|0.63889 107798|0.45833 107799|0.51389 107800|0.5 107801|0.80556 107802|0.73611 107803|0.77778 107804|0.52778 107805|0.47222 107806|0.51389 107807|0.58333 107808|0.65278 107809|0.59722 107810|0.69444 107811|0.70833 107812|0.83333 107813|0.69444 107814|0.73611 107815|0.70833 107816|0.5 107817|0.26389 107818|0.16667 107819|0.5 107820|0.19444 107821|0.40278 107822|0.52778 107823|0.52778 107824|0.38889 107825|0.54167 107826|0.63889 107827|0.55556 107828|0.44444 107829|0.51389 107830|0.84722 107831|0.65278 107832|0.875 107833|0.88889 107834|0.5 107835|0.51389 107836|0.63889 107837|0.625 107838|0.83333 107839|0.18056 107840|0.41667 107841|0.38889 107842|0.22222 107843|0.61111 107844|0.45833 107845|0.5 107846|0.5 107847|0.5 107848|0.55556 107849|0.63889 107850|0.40278 107851|0.5 107852|0.75 107853|0.5 107854|0.875 107855|0.69444 107856|0.625 107857|0.55556 107858|0.625 107859|0.56944 107860|0.36111 107861|0.5 107862|0.63889 107863|0.61111 107864|0.5 107865|0.5 107866|0.5 107867|0.5 107868|0.5 107869|0.5 107870|0.54167 107871|0.5 107872|0.47222 107873|0.68056 107874|0.72222 107875|0.84722 107876|0.54167 107877|0.45833 107878|0.48611 107879|0.69444 107880|0.69444 107881|0.26389 107882|0.48611 107883|0.19444 107884|0.5 107885|0.25 107886|0.72222 107887|0.5 107888|0.68056 107889|0.5 107890|0.5 107891|0.5 107892|0.30556 107893|0.38889 107894|0.41667 107895|0.36111 107896|0.55556 107897|0.59722 107898|0.5 107899|0.5 107900|0.5 107901|0.5 107902|0.48611 107903|0.55556 107904|0.5 107905|0.54167 107906|0.27778 107907|0.44444 107908|0.66667 107909|0.5 107910|0.80556 107911|0.40278 107912|0.34722 107913|0.5 107914|0.41667 107915|0.5 107916|0.083333 107917|0.70833 107918|0.069444 107919|0.40278 107920|0.5 107921|0.5 107922|0.5 107923|0.5 107924|0.48611 107925|0.5 107926|0.45833 107927|0.51389 107928|0.5 107929|0.44444 107930|0.55556 107931|0.20833 107932|0.16667 107933|0.33333 107934|0.63889 107935|0.5 107936|0.45833 107937|0.55556 107938|0.5 107939|0.55556 107940|0.5 107941|0.22222 107942|0.48611 107943|0.625 107944|0.5 107945|0.58333 107946|0.51389 107947|0.65278 107948|0.58333 107949|0.38889 107950|0.41667 107951|0.45833 107952|0.52778 107953|0.63889 107954|0.5 107955|0.5 107956|0.5 107957|0.70833 107958|0.59722 107959|0.68056 107960|0.80556 107961|0.5 107962|0.5 107963|0.63889 107964|0.44444 107965|0.29167 107966|0.56944 107967|0.5 107968|0.5 107969|0.65278 107970|0.5 107971|0.54167 107972|0.36111 107973|0.125 107974|0.66667 107975|0.58333 107976|0.69444 107977|0.68056 107978|0.625 107979|0.44444 107980|0.66667 107981|0.5 107982|0.31944 107983|0.13889 107984|0.5 107985|0.52778 107986|0.5 107987|0.55556 107988|0.72222 107989|0.29167 107990|0.77778 107991|0.5 107992|0.43056 107993|0.5 107994|0.84722 107995|0.5 107996|0.51389 107997|0.5 107998|0.47222 107999|0.5 108000|0.5 108001|0.58333 108002|0.47222 108003|0.055556 108004|0.5 108005|0.44444 108006|0.34722 108007|0.44444 108008|0.56944 108009|0.26389 108010|0.40278 108011|0.52778 108012|0.5 108013|0.5 108014|0.5 108015|0.47222 108016|0.43056 108017|0.59722 108018|0.66667 108019|0.61111 108020|0.36111 108021|0.31944 108022|1 108023|0.5 108024|0.52778 108025|0.51389 108026|0.73611 108027|0.94444 108028|0.25 108029|0.16667 108030|0.45833 108031|0.15278 108032|0.22222 108033|0.18056 108034|0.51389 108035|0.375 108036|0.5 108037|0.51389 108038|0.5 108039|0.5 108040|0.5 108041|0.5 108042|0.45833 108043|0.55556 108044|0.61111 108045|0.77778 108046|0.81944 108047|0.625 108048|0.88889 108049|0.68056 108050|0.625 108051|0.47222 108052|0.52778 108053|0.55556 108054|0.5 108055|0.47222 108056|0.84722 108057|0.20833 108058|0.13889 108059|0.45833 108060|0.41667 108061|0.48611 108062|0.76389 108063|0.83333 108064|0.20833 108065|0.055556 108066|0.23611 108067|0.88889 108068|0.33333 108069|0.22222 108070|0.22222 108071|0.75 108072|0.69444 108073|0.81944 108074|0.69444 108075|0.125 108076|0.31944 108077|0.23611 108078|0.36111 108079|0.22222 108080|0.27778 108081|0.19444 108082|0.52778 108083|0.93056 108084|0.90278 108085|0.83333 108086|0.52778 108087|0.59722 108088|0.54167 108089|0.5 108090|0.5 108091|0.26389 108092|0.31944 108093|0.34722 108094|0.61111 108095|0.5 108096|0.40278 108097|0.56944 108098|0.44444 108099|0.55556 108100|0.19444 108101|0.45833 108102|0.5 108103|0.52778 108104|0.55556 108105|0.5 108106|0.55556 108107|0.25 108108|0.69444 108109|0.375 108110|0.19444 108111|0.33333 108112|0.38889 108113|0.22222 108114|0.15278 108115|0.51389 108116|0.65278 108117|0.59722 108118|0.34722 108119|0.33333 108120|0.55556 108121|0.5 108122|0.77778 108123|0.69444 108124|0.70833 108125|0.80556 108126|0.5 108127|0.61111 108128|0.70833 108129|0.59722 108130|0.5 108131|0.47222 108132|0.5 108133|0.54167 108134|0.76389 108135|0.79167 108136|0.5 108137|0.5 108138|0.47222 108139|0.43056 108140|0.13889 108141|0.097222 108142|0.33333 108143|0.5 108144|0.55556 108145|0.40278 108146|0.38889 108147|0.69444 108148|0.77778 108149|0.51389 108150|0.66667 108151|0.73611 108152|0.59722 108153|0.86111 108154|0.90278 108155|0.93056 108156|0.61111 108157|0.81944 108158|0.875 108159|0.77778 108160|0.66667 108161|0.48611 108162|0.80556 108163|0.80556 108164|0.88889 108165|0.72222 108166|0.90278 108167|0.875 108168|0.58333 108169|0.80556 108170|0.65278 108171|0.069444 108172|0.94444 108173|0.94444 108174|0.69444 108175|0.84722 108176|0.80556 108177|0.93056 108178|0.29167 108179|0.40278 108180|0.52778 108181|0.75 108182|0.55556 108183|0.90278 108184|0.875 108185|0.5 108186|0.22222 108187|0.33333 108188|0.36111 108189|0.29167 108190|0.38889 108191|0.47222 108192|0.55556 108193|0.20833 108194|0.23611 108195|0.125 108196|0.77778 108197|0.76389 108198|0.80556 108199|0.45833 108200|0.69444 108201|0.54167 108202|0.84722 108203|0.66667 108204|0.375 108205|0.20833 108206|0.54167 108207|0.52778 108208|0.48611 108209|0.45833 108210|0.55556 108211|0.5 108212|0.44444 108213|0.5 108214|0.52778 108215|0.25 108216|0.58333 108217|0.47222 108218|0.59722 108219|0.36111 108220|0.56944 108221|0.59722 108222|0.5 108223|0.52778 108224|0.5 108225|0.55556 108226|0.73611 108227|0.47222 108228|0.5 108229|0.63889 108230|0.27778 108231|0.43056 108232|0.45833 108233|0.5 108234|0.48611 108235|0.80556 108236|0.5 108237|0.5 108238|0.51389 108239|0.5 108240|0.5 108241|0.59722 108242|0.5 108243|0.56944 108244|0.59722 108245|0.81944 108246|0.91667 108247|0.5 108248|0.5 108249|0.44444 108250|0.65278 108251|0.5 108252|0.51389 108253|0.18056 108254|0.16667 108255|0.33333 108256|0.20833 108257|0.23611 108258|0.16667 108259|0.5 108260|0.5 108261|0.83333 108262|0.56944 108263|0.59722 108264|0.75 108265|0.45833 108266|0.34722 108267|0.5 108268|0.45833 108269|0.5 108270|0.33333 108271|0.29167 108272|0.51389 108273|0.55556 108274|0.73611 108275|0.18056 108276|0.86111 108277|0.5 108278|0.5 108279|0.5 108280|0.38889 108281|0.5 108282|0.65278 108283|0.5 108284|0.5 108285|0.36111 108286|0.66667 108287|0.375 108288|0.31944 108289|0.81944 108290|0.73611 108291|0.58333 108292|0.44444 108293|0.56944 108294|0.38889 108295|0.80556 108296|0.81944 108297|0.58333 108298|0.11111 108299|0.5 108300|0.23611 108301|0.27778 108302|0.375 108303|0.40278 108304|0.63889 108305|0.5 108306|0.43056 108307|0.5 108308|0.5 108309|0.5 108310|0.73611 108311|0.5 108312|0.41667 108313|0.69444 108314|0.5 108315|0.58333 108316|0.68056 108317|0.73611 108318|0.90278 108319|0.79167 108320|0.5 108321|0.5 108322|0.5 108323|0.5 108324|0.5 108325|0.52778 108326|0.5 108327|0.5 108328|0.5 108329|0.5 108330|0.52778 108331|0.5 108332|0.48611 108333|0.59722 108334|0.59722 108335|0.54167 108336|0.875 108337|0.5 108338|0.5 108339|0.34722 108340|0.59722 108341|0.30556 108342|0.27778 108343|0.5 108344|0.5 108345|0.5 108346|0.5 108347|0.5 108348|0.45833 108349|0.86111 108350|0.80556 108351|0.61111 108352|0.45833 108353|0.47222 108354|0.84722 108355|0.625 108356|0.75 108357|0.79167 108358|0.75 108359|0.75 108360|0.59722 108361|0.58333 108362|0.5 108363|0.5 108364|0.86111 108365|0.55556 108366|0.5 108367|0.5 108368|0.91667 108369|0.80556 108370|0.81944 108371|0.875 108372|0.90278 108373|0.81944 108374|0.69444 108375|0.5 108376|0.51389 108377|0.5 108378|0.88889 108379|0.5 108380|0.5 108381|0.5 108382|0.5 108383|0.44444 108384|0.59722 108385|0.48611 108386|0.5 108387|0.5 108388|0.5 108389|0.44444 108390|0.77778 108391|0.70833 108392|0.68056 108393|0.79167 108394|0.52778 108395|0.59722 108396|0.34722 108397|0.5 108398|0.55556 108399|0.63889 108400|0.55556 108401|0.5 108402|0.36111 108403|0.54167 108404|0.59722 108405|0.375 108406|0.84722 108407|0.625 108408|0.48611 108409|0.30556 108410|0.5 108411|0.083333 108412|0.41667 108413|0.26389 108414|0.16667 108415|0.20833 108416|0 108417|0.15278 108418|0.22222 108419|0.13889 108420|0.013889 108421|0.5 108422|0.55556 108423|0.52778 108424|0.18056 108425|0.79167 108426|0.59722 108427|0.69444 108428|0.5 108429|0.5 108430|0.44444 108431|0.23611 108432|0.52778 108433|0.61111 108434|0.41667 108435|0.5 108436|0.54167 108437|0.61111 108438|0.63889 108439|0.5 108440|0.5 108441|0.81944 108442|0.15278 108443|0.5 108444|0.5 108445|0.81944 108446|0.56944 108447|0.52778 108448|0.41667 108449|0.5 108450|0.33333 108451|0.5 108452|0.77778 108453|0.31944 108454|0.45833 108455|0.47222 108456|0.27778 108457|0.47222 108458|0.58333 108459|0.45833 108460|0.27778 108461|0.48611 108462|0.58333 108463|0.5 108464|0.625 108465|0.33333 108466|0.51389 108467|0.5 108468|0.55556 108469|0.34722 108470|0.5 108471|0.33333 108472|0.76389 108473|0.5 108474|0.55556 108475|0.5 108476|0.51389 108477|0.5 108478|0.625 108479|0.73611 108480|0.26389 108481|0.72222 108482|0.63889 108483|0.65278 108484|0.65278 108485|0.55556 108486|0.76389 108487|0.58333 108488|0.5 108489|0.34722 108490|0.58333 108491|0.58333 108492|0.55556 108493|0.52778 108494|0.5 108495|0.48611 108496|0.5 108497|0.5 108498|0.5 108499|0.73611 108500|0.73611 108501|0.73611 108502|0.52778 108503|0.48611 108504|0.625 108505|0.63889 108506|0.59722 108507|0.40278 108508|0.41667 108509|0.33333 108510|0.5 108511|0.52778 108512|0.52778 108513|0.16667 108514|0.36111 108515|0.88889 108516|0.5 108517|0.5 108518|0.65278 108519|0.5 108520|0.5 108521|0.5 108522|0.54167 108523|0.61111 108524|0.69444 108525|0.5 108526|0.55556 108527|0.5 108528|0.16667 108529|0.5 108530|0.5 108531|0.5 108532|0.45833 108533|0.5 108534|0.5 108535|0.5 108536|0.5 108537|0.45833 108538|0.51389 108539|0.86111 108540|0.56944 108541|0.5 108542|0.5 108543|0.47222 108544|0.51389 108545|0.56944 108546|0.5 108547|0.5 108548|0.5 108549|0.5 108550|0.5 108551|0.73611 108552|0.5 108553|0.55556 108554|0.5 108555|0.75 108556|0.61111 108557|0.36111 108558|0.26389 108559|0.84722 108560|0.86111 108561|0.75 108562|0.33333 108563|0.47222 108564|0.77778 108565|0.55556 108566|0.5 108567|0.52778 108568|0.83333 108569|0.5 108570|0.5 108571|0.5 108572|0.31944 108573|0.22222 108574|0.45833 108575|0.5 108576|0.5 108577|0.54167 108578|0.5 108579|0.5 108580|0.75 108581|0.27778 108582|0.875 108583|0.84722 108584|0.93056 108585|0.69444 108586|0.84722 108587|0.47222 108588|0.66667 108589|0.625 108590|0.68056 108591|0.59722 108592|0.56944 108593|0.59722 108594|0.45833 108595|0.52778 108596|0.72222 108597|0.61111 108598|0.75 108599|0.41667 108600|0.76389 108601|0.73611 108602|0.5 108603|0.48611 108604|0.76389 108605|0.76389 108606|0.47222 108607|0.55556 108608|0.5 108609|0.33333 108610|0.66667 108611|0.61111 108612|0.30556 108613|0.47222 108614|0.34722 108615|0.23611 108616|0.375 108617|0.51389 108618|0.66667 108619|0.5 108620|0.44444 108621|0.5 108622|0.48611 108623|0.5 108624|0.31944 108625|0.75 108626|0.70833 108627|0.5 108628|0.5 108629|0.5 108630|0.70833 108631|0.375 108632|0.18056 108633|0.19444 108634|0.34722 108635|0.20833 108636|0.44444 108637|0.625 108638|0.5 108639|0.5 108640|0.47222 108641|0.66667 108642|0.43056 108643|0.79167 108644|0.59722 108645|0.66667 108646|0.86111 108647|0.72222 108648|0.70833 108649|0.51389 108650|0.59722 108651|0.68056 108652|0.5 108653|0.5 108654|0.26389 108655|0.5 108656|0.5 108657|0.55556 108658|0.5 108659|0.5 108660|0.5 108661|0.625 108662|0.5 108663|0.5 108664|0.66667 108665|0.84722 108666|0.5 108667|0.65278 108668|0.51389 108669|0.69444 108670|0.5 108671|0.5 108672|0.44444 108673|0.5 108674|0.5 108675|0.5 108676|0.55556 108677|0.11111 108678|0.5 108679|0.48611 108680|0.83333 108681|0.86111 108682|0.5 108683|0.5 108684|0.5 108685|0.5 108686|0.5 108687|0.65278 108688|0.5 108689|0.66667 108690|0.73611 108691|0.54167 108692|0.5 108693|0.79167 108694|0.125 108695|0.55556 108696|0.5 108697|0.61111 108698|0.5 108699|0.5 108700|0.5 108701|0.5 108702|0.56944 108703|0.61111 108704|0.68056 108705|0.52778 108706|0.59722 108707|0.51389 108708|0.5 108709|0.58333 108710|0.44444 108711|0.5 108712|0.55556 108713|0.20833 108714|0.5 108715|0.45833 108716|0.58333 108717|0.5 108718|0.58333 108719|0.54167 108720|0.55556 108721|0.5 108722|0.18056 108723|0.5 108724|0.41667 108725|0.5 108726|0.5 108727|0.5 108728|0.5 108729|0.30556 108730|0.25 108731|0.25 108732|0.56944 108733|0.5 108734|0.55556 108735|0.51389 108736|0.5 108737|0.72222 108738|0.5 108739|0.5 108740|0.5 108741|0.5 108742|0.5 108743|0.47222 108744|0.77778 108745|0.5 108746|0.5 108747|0.69444 108748|0.5 108749|0.375 108750|0.58333 108751|0.51389 108752|0.34722 108753|0.5 108754|0.5 108755|0.5 108756|0.51389 108757|0.5 108758|0.43056 108759|0.72222 108760|0.75 108761|0.77778 108762|0.75 108763|0.72222 108764|0.72222 108765|0.77778 108766|0.47222 108767|0.625 108768|0.68056 108769|0.48611 108770|0.5 108771|0.56944 108772|0.56944 108773|0.77778 108774|0.72222 108775|0.66667 108776|0.69444 108777|0.375 108778|0.84722 108779|0.5 108780|0.55556 108781|0.33333 108782|0.29167 108783|0.33333 108784|0.36111 108785|0.15278 108786|0.76389 108787|0.5 108788|0.5 108789|0.625 108790|0.66667 108791|0.86111 108792|0.5 108793|0.5 108794|0.65278 108795|0.59722 108796|0.83333 108797|0.5 108798|0.61111 108799|0.5 108800|0.5 108801|0.55556 108802|0.5 108803|0.51389 108804|0.5 108805|0.51389 108806|0.54167 108807|0.18056 108808|0.44444 108809|0.69444 108810|0.40278 108811|0.70833 108812|0.48611 108813|0.5 108814|0.5 108815|0.59722 108816|0.5 108817|0.58333 108818|0.5 108819|0.43056 108820|0.47222 108821|0.44444 108822|0.76389 108823|0.5 108824|0.56944 108825|0.34722 108826|0.41667 108827|0.375 108828|0.29167 108829|0.083333 108830|0.33333 108831|0.34722 108832|0.083333 108833|0.5 108834|0.61111 108835|0.68056 108836|0.77778 108837|0.80556 108838|0.76389 108839|0.73611 108840|0.069444 108841|0.29167 108842|0.5 108843|0.33333 108844|0.5 108845|0.5 108846|0.5 108847|0.5 108848|0.56944 108849|0.55556 108850|0.5 108851|0.69444 108852|0.55556 108853|0.73611 108854|0.84722 108855|0.5 108856|0.5 108857|0.26389 108858|0.5 108859|0.59722 108860|0.5 108861|0.055556 108862|0.5 108863|0.68056 108864|0.23611 108865|0.23611 108866|0.33333 108867|0.29167 108868|0.26389 108869|0.30556 108870|0.013889 108871|0.44444 108872|0.83333 108873|0.5 108874|0.77778 108875|0.625 108876|0.75 108877|0.56944 108878|0.5 108879|0.20833 108880|0.45833 108881|0.44444 108882|0.5 108883|0.83333 108884|0.65278 108885|0.63889 108886|0.58333 108887|0.47222 108888|0.45833 108889|0.5 108890|0.68056 108891|0.43056 108892|0.48611 108893|0.375 108894|0.875 108895|0.84722 108896|0.5 108897|0.5 108898|0.5 108899|0.88889 108900|0.76389 108901|0.5 108902|0.69444 108903|0.81944 108904|0.44444 108905|0.70833 108906|0.51389 108907|0.84722 108908|0.66667 108909|0.48611 108910|0.52778 108911|0.625 108912|0.33333 108913|0.65278 108914|0.80556 108915|0.5 108916|0.5 108917|0.51389 108918|0.5 108919|0.81944 108920|0.38889 108921|0.20833 108922|0.5 108923|0.5 108924|0.5 108925|0.30556 108926|0.23611 108927|0.27778 108928|0.19444 108929|0.63889 108930|0.70833 108931|0.61111 108932|0.30556 108933|0.375 108934|0.375 108935|0.63889 108936|0.5 108937|0.5 108938|0.51389 108939|0.70833 108940|0.70833 108941|0.72222 108942|0.83333 108943|0.80556 108944|0.63889 108945|0.80556 108946|0.5 108947|0.45833 108948|0.40278 108949|0.63889 108950|0.51389 108951|0.31944 108952|0.51389 108953|0.36111 108954|0.34722 108955|0.51389 108956|0.5 108957|0.61111 108958|0.83333 108959|0.77778 108960|0.73611 108961|0.40278 108962|0.58333 108963|0.36111 108964|0.29167 108965|0.29167 108966|0.59722 108967|0.625 108968|0.81944 108969|0.81944 108970|0.58333 108971|0.5 108972|0.38889 108973|0.22222 108974|0.5 108975|0.5 108976|0.5 108977|0.55556 108978|0.61111 108979|0.55556 108980|0.51389 108981|0.5 108982|0.56944 108983|0.51389 108984|0.16667 108985|0.30556 108986|0.18056 108987|0.52778 108988|0.38889 108989|0.5 108990|0.38889 108991|0.63889 108992|0.70833 108993|0.54167 108994|0.83333 108995|0.16667 108996|0.16667 108997|0.16667 108998|0.11111 108999|0.5 109000|0.48611 109001|0.45833 109002|0.55556 109003|0.77778 109004|0.69444 109005|0.61111 109006|0.59722 109007|0.72222 109008|0.66667 109009|0.625 109010|0.5 109011|0.61111 109012|0.625 109013|0.25 109014|0.43056 109015|0.51389 109016|0.58333 109017|0.5 109018|0.5 109019|0.61111 109020|0.44444 109021|0.5 109022|0.94444 109023|0.63889 109024|0.68056 109025|0.27778 109026|0.45833 109027|0.70833 109028|0.68056 109029|0.69444 109030|0.54167 109031|0.5 109032|0.5 109033|0.5 109034|0.80556 109035|0.55556 109036|0.5 109037|0.18056 109038|0.19444 109039|0.54167 109040|0.52778 109041|0.44444 109042|0.5 109043|0.5 109044|0.51389 109045|0.59722 109046|0.45833 109047|0.22222 109048|0.66667 109049|0.5 109050|0.56944 109051|0.33333 109052|0.5 109053|0.56944 109054|0.44444 109055|0.38889 109056|0.40278 109057|0.65278 109058|0.70833 109059|0.76389 109060|0.44444 109061|0.65278 109062|0.69444 109063|0.55556 109064|0.34722 109065|0.70833 109066|0.84722 109067|0.56944 109068|0.54167 109069|0.88889 109070|0.80556 109071|0.48611 109072|0.52778 109073|0.52778 109074|0.5 109075|0.52778 109076|0.61111 109077|0.61111 109078|0.30556 109079|0.56944 109080|0.59722 109081|0.56944 109082|0.48611 109083|0.45833 109084|0.44444 109085|0.30556 109086|0.55556 109087|0.625 109088|0.5 109089|0.73611 109090|0.63889 109091|0.72222 109092|0.58333 109093|0.47222 109094|0.58333 109095|0.5 109096|0.48611 109097|0.5 109098|0.5 109099|0.43056 109100|0.5 109101|0.5 109102|0.83333 109103|0.38889 109104|0.61111 109105|0.5 109106|0.55556 109107|0.56944 109108|0.5 109109|0.52778 109110|0.5 109111|0.52778 109112|0.69444 109113|0.5 109114|0.5 109115|0.5 109116|0.70833 109117|0.54167 109118|0.63889 109119|0.51389 109120|0.38889 109121|0.5 109122|0.70833 109123|0.5 109124|0.5 109125|0.69444 109126|0.40278 109127|0.84722 109128|0.66667 109129|0.81944 109130|0.94444 109131|0.66667 109132|0.73611 109133|0.69444 109134|0.77778 109135|0.88889 109136|0.5 109137|0.625 109138|0.5 109139|0.36111 109140|0.41667 109141|0.43056 109142|0.23611 109143|0.22222 109144|0.18056 109145|0.30556 109146|0.65278 109147|0.43056 109148|0.5 109149|0.375 109150|0.875 109151|0.47222 109152|0.5 109153|0.27778 109154|0.375 109155|0.23611 109156|0.22222 109157|0.15278 109158|0.5 109159|0.5 109160|0.5 109161|0.5 109162|0.45833 109163|0.79167 109164|0.44444 109165|0.44444 109166|0.375 109167|0.5 109168|0.59722 109169|0.52778 109170|0.31944 109171|0.52778 109172|0.5 109173|0.72222 109174|0.5 109175|0.5 109176|0.18056 109177|0.52778 109178|0.48611 109179|0.5 109180|0.54167 109181|0.5 109182|0.83333 109183|0.45833 109184|0.5 109185|0.5 109186|0.66667 109187|0.55556 109188|0.73611 109189|0.73611 109190|0.31944 109191|0.52778 109192|0.47222 109193|0.43056 109194|0.81944 109195|0.5 109196|0.90278 109197|0.88889 109198|0.5 109199|0.5 109200|0.25 109201|0.15278 109202|0 109203|0.31944 109204|0.59722 109205|0.58333 109206|0.48611 109207|0.44444 109208|0.38889 109209|0.5 109210|0.58333 109211|0.58333 109212|0.375 109213|0.5 109214|0.45833 109215|0.26389 109216|0.5 109217|0.5 109218|0.41667 109219|0.11111 109220|0.59722 109221|0.61111 109222|0.76389 109223|0.84722 109224|0.77778 109225|0.47222 109226|0.61111 109227|0.58333 109228|0.55556 109229|0.16667 109230|0.59722 109231|0.5 109232|0.29167 109233|0.25 109234|0.33333 109235|0.80556 109236|0.63889 109237|0.59722 109238|0.65278 109239|0.76389 109240|0.79167 109241|0.81944 109242|0.69444 109243|0.13889 109244|0.11111 109245|0.13889 109246|0.47222 109247|0.11111 109248|0.81944 109249|0.76389 109250|0.65278 109251|0.90278 109252|0.75 109253|0.66667 109254|0.59722 109255|0.5 109256|0.15278 109257|0.16667 109258|0.52778 109259|0.44444 109260|0.30556 109261|0.36111 109262|0.16667 109263|0.5 109264|0.5 109265|0.5 109266|0.5 109267|0.5 109268|0.61111 109269|0.65278 109270|0.5 109271|0.5 109272|0.5 109273|0.5 109274|0.5 109275|0.5 109276|0.34722 109277|0.22222 109278|0.34722 109279|0.36111 109280|0.61111 109281|0.45833 109282|0.45833 109283|0.34722 109284|0.73611 109285|0.56944 109286|0.44444 109287|0.61111 109288|0.52778 109289|0.5 109290|0.5 109291|0.63889 109292|0.097222 109293|0.52778 109294|0.44444 109295|0.43056 109296|0.5 109297|0.51389 109298|0.54167 109299|0.5 109300|0.59722 109301|0.5 109302|0.55556 109303|0.5 109304|0.5 109305|0.83333 109306|0.5 109307|0.70833 109308|0.5 109309|0.375 109310|0.54167 109311|0.58333 109312|0.5 109313|0.5 109314|0.58333 109315|0.41667 109316|0.61111 109317|0.40278 109318|0.5 109319|0.11111 109320|0.16667 109321|0.5 109322|0.5 109323|0.63889 109324|0.76389 109325|0.63889 109326|0.54167 109327|0.36111 109328|0.54167 109329|0.5 109330|0.54167 109331|0.44444 109332|0.125 109333|0.59722 109334|0.5 109335|0.26389 109336|0.29167 109337|0.40278 109338|0.80556 109339|0.66667 109340|0.59722 109341|0.61111 109342|0.15278 109343|0.44444 109344|0.31944 109345|0.5 109346|0.63889 109347|0.15278 109348|0.5 109349|0.44444 109350|0.51389 109351|0.5 109352|0.27778 109353|0.5 109354|0.52778 109355|0.58333 109356|0.5 109357|0.65278 109358|0.5 109359|0.52778 109360|0.55556 109361|0.51389 109362|0.70833 109363|0.83333 109364|0.51389 109365|0.48611 109366|0.63889 109367|0.45833 109368|0.5 109369|0.083333 109370|0.11111 109371|0.5 109372|0.52778 109373|0.59722 109374|0.5 109375|0.58333 109376|0.38889 109377|0.80556 109378|0.5 109379|0.81944 109380|0.5 109381|0.81944 109382|0.47222 109383|0.41667 109384|0.51389 109385|0.083333 109386|0.20833 109387|0.38889 109388|0.13889 109389|0.45833 109390|0.11111 109391|0.22222 109392|0.44444 109393|0.59722 109394|0.38889 109395|0.68056 109396|0.5 109397|0.61111 109398|0.5 109399|0.65278 109400|0.69444 109401|0.91667 109402|0.58333 109403|0.18056 109404|0.59722 109405|0.56944 109406|0 109407|0.19444 109408|0.5 109409|0.75 109410|0.45833 109411|0.5 109412|0.5 109413|0.72222 109414|0.19444 109415|0.45833 109416|0.20833 109417|0.27778 109418|0.26389 109419|0.33333 109420|0.54167 109421|0.68056 109422|0.5 109423|0.48611 109424|0.11111 109425|0.5 109426|0.5 109427|0.54167 109428|0.83333 109429|0.76389 109430|0.61111 109431|0.48611 109432|0.38889 109433|0.5 109434|0.40278 109435|0.66667 109436|0.48611 109437|0.51389 109438|0.73611 109439|0.52778 109440|0.5 109441|0.30556 109442|0.5 109443|0.33333 109444|0.5 109445|0.55556 109446|0.51389 109447|0.20833 109448|0.5 109449|0.5 109450|0.59722 109451|0.55556 109452|0.47222 109453|0.44444 109454|0.41667 109455|0.33333 109456|0.875 109457|0.77778 109458|0.30556 109459|0.38889 109460|0.41667 109461|0.47222 109462|0.43056 109463|0.47222 109464|0.5 109465|0.5 109466|0.51389 109467|0.51389 109468|0.27778 109469|0.43056 109470|0.44444 109471|0.52778 109472|0.45833 109473|0.625 109474|0.61111 109475|0.61111 109476|0.66667 109477|0.65278 109478|0.5 109479|0.43056 109480|0.625 109481|0.77778 109482|0.5 109483|0.48611 109484|0.5 109485|0.56944 109486|0.5 109487|0.5 109488|0.52778 109489|0.5 109490|0.5 109491|0.48611 109492|0.5 109493|0.47222 109494|0.5 109495|0.40278 109496|0.94444 109497|0.5 109498|0.5 109499|0.5 109500|0.34722 109501|0.5 109502|0.16667 109503|0.19444 109504|0.27778 109505|0.26389 109506|0.5 109507|0.5 109508|0.52778 109509|0.61111 109510|0.66667 109511|0.5 109512|0.5 109513|0.33333 109514|0.33333 109515|0.45833 109516|0.56944 109517|0.31944 109518|0.68056 109519|0.69444 109520|0.69444 109521|0.65278 109522|0.75 109523|0.5 109524|0.54167 109525|0.5 109526|0.5 109527|0.65278 109528|0.5 109529|0.66667 109530|0.5 109531|0.81944 109532|0.65278 109533|0.61111 109534|0.22222 109535|0.31944 109536|0.19444 109537|0.51389 109538|0.75 109539|0.68056 109540|0.41667 109541|0.59722 109542|0.31944 109543|0.22222 109544|0.27778 109545|0.5 109546|0.72222 109547|0.22222 109548|0.76389 109549|0.70833 109550|0.59722 109551|0.40278 109552|0.44444 109553|0.5 109554|0.80556 109555|0.72222 109556|0.81944 109557|0.875 109558|0.625 109559|0.44444 109560|0.11111 109561|0.51389 109562|0.55556 109563|0.5 109564|0.88889 109565|0.77778 109566|0.72222 109567|0.86111 109568|0.91667 109569|0.88889 109570|0.81944 109571|0.73611 109572|0.84722 109573|0.875 109574|0.625 109575|0.75 109576|0.79167 109577|0.86111 109578|0.86111 109579|0.56944 109580|0.43056 109581|0.75 109582|0.51389 109583|0.5 109584|0.72222 109585|0.5 109586|0.20833 109587|0.72222 109588|0.5 109589|0.61111 109590|0.76389 109591|0.76389 109592|0.83333 109593|0.84722 109594|0.80556 109595|0.72222 109596|0.56944 109597|0.66667 109598|0.59722 109599|0.72222 109600|0.70833 109601|0.91667 109602|0.79167 109603|0.93056 109604|0.79167 109605|0.59722 109606|0.61111 109607|0.56944 109608|0.72222 109609|0.875 109610|0.69444 109611|0.45833 109612|0.72222 109613|0.70833 109614|0.36111 109615|0.61111 109616|0.18056 109617|0.33333 109618|0.13889 109619|0.31944 109620|0.65278 109621|0.34722 109622|0.22222 109623|0.19444 109624|0.44444 109625|0.5 109626|0.51389 109627|0.65278 109628|0.51389 109629|0.47222 109630|0.40278 109631|0.45833 109632|0.52778 109633|0.80556 109634|0.55556 109635|0.52778 109636|0.55556 109637|0.86111 109638|0.90278 109639|0.54167 109640|0.29167 109641|0.51389 109642|0.5 109643|0.70833 109644|0.61111 109645|0.88889 109646|0.77778 109647|0.5 109648|0.38889 109649|0.18056 109650|0.19444 109651|0.34722 109652|0.20833 109653|0.33333 109654|0.125 109655|0.52778 109656|0.76389 109657|0.63889 109658|0.44444 109659|0.40278 109660|0.76389 109661|0.5 109662|0.36111 109663|0.5 109664|0.76389 109665|0.77778 109666|0.77778 109667|0.54167 109668|0.86111 109669|0.75 109670|0.61111 109671|0.56944 109672|0.66667 109673|0.69444 109674|0.72222 109675|0.70833 109676|0.54167 109677|0.30556 109678|0.52778 109679|0.69444 109680|0.66667 109681|0.5 109682|0.27778 109683|0.5 109684|0.51389 109685|0.125 109686|0.34722 109687|0.27778 109688|0.5 109689|0.5 109690|0.56944 109691|0.51389 109692|0.56944 109693|0.83333 109694|0.81944 109695|0.55556 109696|0.29167 109697|0.5 109698|0.5 109699|0.54167 109700|0.31944 109701|0.23611 109702|0.40278 109703|0.45833 109704|0.30556 109705|0.27778 109706|0.51389 109707|0.69444 109708|0.65278 109709|0.73611 109710|0.68056 109711|0.26389 109712|0.47222 109713|0.40278 109714|0.25 109715|0.41667 109716|0.68056 109717|0.5 109718|0.56944 109719|0.15278 109720|0.5 109721|0.33333 109722|0.23611 109723|0.36111 109724|0.76389 109725|0.59722 109726|0.61111 109727|0.86111 109728|0.56944 109729|0.63889 109730|0.63889 109731|0.83333 109732|0.52778 109733|0.65278 109734|0.77778 109735|0.69444 109736|0.69444 109737|0.52778 109738|0.27778 109739|0.19444 109740|0.51389 109741|0.38889 109742|0.61111 109743|0.51389 109744|0.63889 109745|0.34722 109746|0.30556 109747|0.47222 109748|0.66667 109749|0.59722 109750|0.11111 109751|0.5 109752|0.5 109753|0.29167 109754|0.5 109755|0.43056 109756|0.44444 109757|0.41667 109758|0.38889 109759|0.43056 109760|0.61111 109761|0.51389 109762|0.63889 109763|0.63889 109764|0.65278 109765|0.41667 109766|0.375 109767|0.33333 109768|0.5 109769|0.625 109770|0.59722 109771|0.55556 109772|0.48611 109773|0.70833 109774|0.5 109775|0.56944 109776|0.79167 109777|0.79167 109778|0.93056 109779|0.77778 109780|0.80556 109781|0.68056 109782|0.84722 109783|0.22222 109784|0.70833 109785|0.5 109786|0.65278 109787|0.54167 109788|0.80556 109789|0.77778 109790|0.11111 109791|0.66667 109792|0.75 109793|0.41667 109794|0.55556 109795|0.38889 109796|0.52778 109797|0.36111 109798|0.26389 109799|0.30556 109800|0.58333 109801|0.63889 109802|0.73611 109803|0.76389 109804|0.77778 109805|0.59722 109806|0.75 109807|0.55556 109808|0.52778 109809|0.47222 109810|0.66667 109811|0.70833 109812|0.84722 109813|0.77778 109814|0.84722 109815|0.70833 109816|0.22222 109817|0.76389 109818|0.54167 109819|0.66667 109820|0.33333 109821|0.41667 109822|0.375 109823|0.31944 109824|0.34722 109825|0.66667 109826|0.56944 109827|0.31944 109828|0.41667 109829|0.45833 109830|0.61111 109831|0.66667 109832|0.77778 109833|0.66667 109834|0.44444 109835|0.40278 109836|0.68056 109837|0.58333 109838|0.55556 109839|0.58333 109840|0.30556 109841|0.22222 109842|0.25 109843|0.41667 109844|0.58333 109845|0.72222 109846|0.33333 109847|0.93056 109848|0.61111 109849|0.625 109850|0.47222 109851|0.41667 109852|0.44444 109853|0.59722 109854|0.40278 109855|0.375 109856|0.33333 109857|0.25 109858|0.31944 109859|0.29167 109860|0.40278 109861|0.48611 109862|0.55556 109863|0.44444 109864|0.80556 109865|0.5 109866|0.63889 109867|0.68056 109868|0.52778 109869|0.69444 109870|0.51389 109871|0.43056 109872|0.63889 109873|0.51389 109874|0.5 109875|0.45833 109876|0.5 109877|0.38889 109878|0.54167 109879|0.84722 109880|0.26389 109881|0.51389 109882|0.33333 109883|0.51389 109884|0.55556 109885|0.16667 109886|0.65278 109887|0.63889 109888|0.72222 109889|0.69444 109890|0.5 109891|0.5 109892|0.33333 109893|0.63889 109894|0.875 109895|0.5 109896|0.44444 109897|0.44444 109898|0.48611 109899|0.44444 109900|0.34722 109901|0.45833 109902|0.41667 109903|0.26389 109904|0.22222 109905|0.5 109906|0.98611 109907|0.54167 109908|0.5 109909|0.61111 109910|0.48611 109911|0.44444 109912|0.18056 109913|0.51389 109914|0.27778 109915|0.125 109916|0.52778 109917|0.23611 109918|0.16667 109919|0.75 109920|0.72222 109921|0.61111 109922|0.63889 109923|0.5 109924|0.45833 109925|0.70833 109926|0.31944 109927|0.40278 109928|0.22222 109929|0.34722 109930|0.23611 109931|0.013889 109932|0.5 109933|0.52778 109934|0.55556 109935|0.68056 109936|0.68056 109937|0.80556 109938|0.5 109939|0.61111 109940|0.47222 109941|0.56944 109942|0.66667 109943|0.76389 109944|0.5 109945|0.27778 109946|0.5 109947|0.5 109948|0.34722 109949|0.41667 109950|0.33333 109951|0.47222 109952|0.23611 109953|0.38889 109954|0.125 109955|0.83333 109956|0.66667 109957|0.91667 109958|0.51389 109959|0.5 109960|0.33333 109961|0.56944 109962|0.5 109963|0.76389 109964|0.5 109965|0.44444 109966|0.58333 109967|0.43056 109968|0.47222 109969|0.66667 109970|0.75 109971|0.875 109972|0.77778 109973|0.84722 109974|0.90278 109975|0.97222 109976|0.44444 109977|0.25 109978|0.18056 109979|0.23611 109980|0.055556 109981|0.31944 109982|0.72222 109983|0.86111 109984|0.40278 109985|0.23611 109986|0.34722 109987|0.47222 109988|0.43056 109989|0.41667 109990|0.41667 109991|0.11111 109992|0.25 109993|0.34722 109994|0.27778 109995|0.91667 109996|0.86111 109997|0.83333 109998|0.48611 109999|0.59722 110000|0.69444 110001|0.55556 110002|0.45833 110003|0.25 110004|0.375 110005|0.45833 110006|0.083333 110007|0.63889 110008|0.23611 110009|0.30556 110010|0.65278 110011|0.29167 110012|0.56944 110013|0.73611 110014|0.72222 110015|0.48611 110016|0.47222 110017|0.41667 110018|0.5 110019|0.69444 110020|0.70833 110021|0.75 110022|0.83333 110023|0.84722 110024|0.86111 110025|0.5 110026|0.5 110027|0.27778 110028|0.5 110029|0.125 110030|0.55556 110031|0.63889 110032|0.38889 110033|0.70833 110034|0.34722 110035|0.18056 110036|0.56944 110037|0.5 110038|0.34722 110039|0.54167 110040|0.31944 110041|0.45833 110042|0.083333 110043|0.44444 110044|0.34722 110045|0.38889 110046|0.38889 110047|0.27778 110048|0.48611 110049|0.44444 110050|0.375 110051|0.55556 110052|0.27778 110053|0.30556 110054|0.51389 110055|0.15278 110056|0.44444 110057|0.38889 110058|0.51389 110059|0.5 110060|0.45833 110061|0.5 110062|0.29167 110063|0.5 110064|0.63889 110065|0.25 110066|0.5 110067|0.44444 110068|0.31944 110069|0.25 110070|0.86111 110071|0.875 110072|0.68056 110073|0.5 110074|0.68056 110075|0.56944 110076|0.44444 110077|0.31944 110078|0.36111 110079|0.72222 110080|0.41667 110081|0.5 110082|0.51389 110083|0.5 110084|0.68056 110085|0.66667 110086|0.23611 110087|0.26389 110088|0.48611 110089|0.29167 110090|0.20833 110091|0.44444 110092|0.5 110093|0.41667 110094|0.55556 110095|0.68056 110096|0.43056 110097|0.43056 110098|0.11111 110099|0.25 110100|0.18056 110101|0.22222 110102|0.625 110103|0.097222 110104|0.41667 110105|0.38889 110106|0.70833 110107|0.54167 110108|0.625 110109|0.83333 110110|0.83333 110111|0.54167 110112|0.63889 110113|0.54167 110114|0.65278 110115|0.73611 110116|0.5 110117|0.26389 110118|0.55556 110119|0.55556 110120|0.65278 110121|0.73611 110122|0.76389 110123|0.68056 110124|0.75 110125|0.52778 110126|0.79167 110127|0.5 110128|0.5 110129|0.5 110130|0.20833 110131|0.51389 110132|0.5 110133|0.36111 110134|0.18056 110135|0.84722 110136|0.5 110137|0.31944 110138|0.58333 110139|0.72222 110140|0.69444 110141|0.70833 110142|0.75 110143|0.54167 110144|0.41667 110145|0.33333 110146|0.5 110147|0.27778 110148|0.26389 110149|0.125 110150|0.66667 110151|0.65278 110152|0.375 110153|0.51389 110154|0.65278 110155|0.34722 110156|0.23611 110157|0.19444 110158|0.13889 110159|0.81944 110160|0.79167 110161|0.79167 110162|0.44444 110163|0.52778 110164|0.33333 110165|0.5 110166|0.875 110167|0.44444 110168|0.43056 110169|0.5 110170|0.83333 110171|0.875 110172|0.31944 110173|0.79167 110174|0.51389 110175|0.47222 110176|0.20833 110177|0.20833 110178|0.26389 110179|0.55556 110180|0.47222 110181|0.5 110182|0.79167 110183|0.88889 110184|0.38889 110185|0.30556 110186|0.13889 110187|0.5 110188|0.76389 110189|0.66667 110190|0.40278 110191|0.84722 110192|0.61111 110193|0.51389 110194|0.5 110195|0.80556 110196|0.33333 110197|0.41667 110198|0.5 110199|0.51389 110200|0.51389 110201|0.5 110202|0.65278 110203|0.875 110204|0.5 110205|0.125 110206|0.5 110207|0.31944 110208|0.26389 110209|0.5 110210|0.70833 110211|0.625 110212|0.63889 110213|0.27778 110214|0.26389 110215|0.5 110216|0.54167 110217|0.20833 110218|0.44444 110219|0.44444 110220|0.29167 110221|0.66667 110222|0.56944 110223|0.51389 110224|0.47222 110225|0.41667 110226|0.5 110227|0.75 110228|0.72222 110229|0.68056 110230|0.51389 110231|0.54167 110232|0.29167 110233|0.58333 110234|0.54167 110235|0.66667 110236|0.52778 110237|0.625 110238|0.66667 110239|0.52778 110240|1 110241|0.84722 110242|0.5 110243|0.43056 110244|0.38889 110245|0.65278 110246|0.59722 110247|0.31944 110248|0.083333 110249|0.375 110250|0.48611 110251|0.27778 110252|0.5 110253|0.45833 110254|0.77778 110255|0.81944 110256|0.625 110257|0.83333 110258|0.79167 110259|0.38889 110260|0.58333 110261|0.75 110262|0.75 110263|0.79167 110264|0.75 110265|0.70833 110266|0.61111 110267|0.5 110268|0.59722 110269|0.68056 110270|0.11111 110271|0.5 110272|0.94444 110273|0.70833 110274|0.70833 110275|0.65278 110276|0.44444 110277|0.25 110278|0.22222 110279|0.30556 110280|0.69444 110281|0.59722 110282|0.84722 110283|0.73611 110284|0.56944 110285|0.66667 110286|0.41667 110287|0.66667 110288|0.54167 110289|0.69444 110290|0.59722 110291|0.069444 110292|0.38889 110293|0.77778 110294|0.63889 110295|0.22222 110296|0.70833 110297|0.86111 110298|0.5 110299|0.29167 110300|0.33333 110301|0.55556 110302|0.47222 110303|0.65278 110304|0.69444 110305|0.83333 110306|0.63889 110307|0.91667 110308|0.65278 110309|0.30556 110310|0.51389 110311|0.43056 110312|0.33333 110313|0.34722 110314|0.40278 110315|0.22222 110316|0.23611 110317|0.44444 110318|0.33333 110319|0.65278 110320|0.63889 110321|0.5 110322|0.52778 110323|0.56944 110324|0 110325|0.20833 110326|0.11111 110327|0.097222 110328|0.15278 110329|0.72222 110330|0.84722 110331|0.73611 110332|0.66667 110333|0.65278 110334|0.75 110335|0.625 110336|0.22222 110337|0.27778 110338|0.73611 110339|0.79167 110340|0.56944 110341|0.375 110342|0.625 110343|0.66667 110344|0.29167 110345|0.48611 110346|0.11111 110347|0.20833 110348|0.125 110349|0.73611 110350|0.59722 110351|0.65278 110352|0.33333 110353|0.375 110354|0.375 110355|0.30556 110356|0.33333 110357|0.68056 110358|0.65278 110359|0.48611 110360|0.44444 110361|0.44444 110362|0.40278 110363|0.55556 110364|0.45833 110365|0.59722 110366|0.80556 110367|0.77778 110368|0.54167 110369|0.27778 110370|0.69444 110371|0.70833 110372|0.51389 110373|0.69444 110374|0.86111 110375|0.88889 110376|0.54167 110377|0.80556 110378|0.41667 110379|0.76389 110380|0.76389 110381|0.48611 110382|0.625 110383|0.59722 110384|0.18056 110385|0.26389 110386|0.51389 110387|0.48611 110388|0.72222 110389|0.16667 110390|0.13889 110391|0.5 110392|0.5 110393|0.48611 110394|0.5 110395|0.52778 110396|0.47222 110397|0.69444 110398|0.47222 110399|0.29167 110400|0.13889 110401|0.375 110402|0.5 110403|0.5 110404|0.5 110405|0.5 110406|0.40278 110407|0.47222 110408|0.44444 110409|0.61111 110410|0.79167 110411|0.58333 110412|0.625 110413|0.5 110414|0.22222 110415|0.5 110416|0.5 110417|0.22222 110418|0.51389 110419|0.88889 110420|0.54167 110421|0.52778 110422|0.55556 110423|0.70833 110424|0.56944 110425|0.52778 110426|0.5 110427|0.73611 110428|0.65278 110429|0.375 110430|0.23611 110431|0.73611 110432|0.72222 110433|0.40278 110434|0.55556 110435|0.33333 110436|0.77778 110437|0.69444 110438|0.81944 110439|0.68056 110440|0.23611 110441|0.19444 110442|0.77778 110443|0.375 110444|0.47222 110445|0.13889 110446|0.5 110447|0.59722 110448|0.875 110449|0.83333 110450|0.58333 110451|0.38889 110452|0.59722 110453|0.5 110454|0.58333 110455|0.5 110456|0.18056 110457|0.56944 110458|0.65278 110459|0.77778 110460|0.73611 110461|0.66667 110462|0.66667 110463|0.91667 110464|0.30556 110465|0.055556 110466|0.91667 110467|0.88889 110468|0.88889 110469|0.88889 110470|0.80556 110471|0.80556 110472|0.83333 110473|0.70833 110474|0.86111 110475|0.375 110476|0.83333 110477|0.81944 110478|0.90278 110479|0.80556 110480|0.95833 110481|0.59722 110482|0.48611 110483|0.63889 110484|0.80556 110485|0.59722 110486|0.27778 110487|0.66667 110488|0.625 110489|0.76389 110490|0.77778 110491|0.79167 110492|0.76389 110493|0.54167 110494|0.91667 110495|0.77778 110496|0.041667 110497|0.48611 110498|0.51389 110499|0.70833 110500|0.77778 110501|0.43056 110502|0.61111 110503|0.61111 110504|0.84722 110505|0.86111 110506|0.83333 110507|0.59722 110508|0.65278 110509|0.70833 110510|0.875 110511|0.055556 110512|0.013889 110513|0.68056 110514|0.5 110515|0.66667 110516|0.73611 110517|0.59722 110518|0.84722 110519|0.38889 110520|0 110521|0.027778 110522|0.52778 110523|0.5 110524|0.55556 110525|0.38889 110526|0.41667 110527|0.625 110528|0.72222 110529|0.68056 110530|0.73611 110531|0.36111 110532|0.22222 110533|0.47222 110534|0.38889 110535|0.69444 110536|0.84722 110537|0 110538|0.041667 110539|0.73611 110540|0.84722 110541|0.58333 110542|0.083333 110543|0.069444 110544|0.15278 110545|0.20833 110546|0.73611 110547|0.79167 110548|0.72222 110549|0.72222 110550|0.79167 110551|0.61111 110552|0.80556 110553|0.26389 110554|0.40278 110555|0.44444 110556|0.72222 110557|0.5 110558|0.29167 110559|0.375 110560|0.59722 110561|0.29167 110562|0.5 110563|0.13889 110564|0.625 110565|0.125 110566|0 110567|0.069444 110568|0.013889 110569|0.31944 110570|0.55556 110571|0.47222 110572|0.54167 110573|0.875 110574|0.75 110575|0.59722 110576|0.375 110577|0.5 110578|0.54167 110579|0.61111 110580|0.79167 110581|0.52778 110582|0.44444 110583|0.11111 110584|0.45833 110585|0.66667 110586|0.81944 110587|0.5 110588|0.16667 110589|0.47222 110590|0.66667 110591|0.5 110592|0.5 110593|0.69444 110594|0.81944 110595|0.30556 110596|0.44444 110597|0.83333 110598|0.48611 110599|0.55556 110600|0.625 110601|0.44444 110602|0.61111 110603|0.76389 110604|0.65278 110605|0.75 110606|0.81944 110607|0.66667 110608|0.63889 110609|0.68056 110610|0.54167 110611|0.45833 110612|0.5 110613|0.40278 110614|0.38889 110615|0.29167 110616|0.59722 110617|0.63889 110618|0.5 110619|0.5 110620|0.5 110621|0.38889 110622|0.5 110623|0.69444 110624|0.80556 110625|0.51389 110626|0.72222 110627|0.83333 110628|0.5 110629|0.5 110630|0.5 110631|0.44444 110632|0.52778 110633|0.45833 110634|0.5 110635|0.47222 110636|0.5 110637|0.5 110638|0.45833 110639|0.27778 110640|0.54167 110641|0.73611 110642|0.36111 110643|0.65278 110644|0.5 110645|0.43056 110646|0.16667 110647|0.5 110648|0.5 110649|0.5 110650|0.375 110651|0.069444 110652|0.52778 110653|0.45833 110654|0.26389 110655|0.097222 110656|0.55556 110657|0.31944 110658|0.19444 110659|0.38889 110660|0.16667 110661|0.5 110662|0.86111 110663|0.83333 110664|0.66667 110665|0.79167 110666|0.875 110667|0.5 110668|0.625 110669|0.11111 110670|0.30556 110671|0.375 110672|0.40278 110673|0.5 110674|0.76389 110675|0.54167 110676|0.27778 110677|0.51389 110678|0.63889 110679|0.5 110680|0.5 110681|0.40278 110682|0.65278 110683|0.5 110684|0.52778 110685|0.5 110686|0.54167 110687|0.5 110688|0.47222 110689|0.34722 110690|0.68056 110691|0.5 110692|0.5 110693|0.36111 110694|0.5 110695|0.5 110696|0.5 110697|0.5 110698|0.61111 110699|0.47222 110700|0.48611 110701|0.5 110702|0.22222 110703|0.27778 110704|0.30556 110705|0.26389 110706|0.27778 110707|0.43056 110708|0.65278 110709|0.40278 110710|0.54167 110711|0.29167 110712|0.33333 110713|0.30556 110714|0.38889 110715|0.47222 110716|0.43056 110717|0.22222 110718|0.30556 110719|0.22222 110720|0.51389 110721|0.34722 110722|0.61111 110723|0.5 110724|0.5 110725|0.63889 110726|0.5 110727|0.5 110728|0.58333 110729|0.52778 110730|0.44444 110731|0.66667 110732|0.48611 110733|0.31944 110734|0.55556 110735|0.5 110736|0.70833 110737|0.59722 110738|0.75 110739|0.56944 110740|0.31944 110741|0.5 110742|0.27778 110743|0.45833 110744|0.30556 110745|0.43056 110746|0.5 110747|0.5 110748|0.51389 110749|0.94444 110750|0.58333 110751|0.56944 110752|0.55556 110753|0.59722 110754|0.13889 110755|0.5 110756|0.625 110757|0.11111 110758|0.55556 110759|0.52778 110760|0.5 110761|0.5 110762|0.51389 110763|0.5 110764|0.86111 110765|0.88889 110766|0.48611 110767|0.30556 110768|0.27778 110769|0.36111 110770|0.125 110771|0.34722 110772|0.48611 110773|0.72222 110774|0.68056 110775|0.70833 110776|0.98611 110777|0.63889 110778|0.44444 110779|0.44444 110780|0.83333 110781|0.54167 110782|0.5 110783|0.5 110784|0.95833 110785|0.44444 110786|0.54167 110787|0.58333 110788|0.44444 110789|0.84722 110790|0.5 110791|0.45833 110792|0.84722 110793|0.86111 110794|0.097222 110795|0.31944 110796|0.72222 110797|0.625 110798|0.59722 110799|0.65278 110800|0.73611 110801|0.72222 110802|0.45833 110803|0.52778 110804|0.33333 110805|0.5 110806|0.61111 110807|0.5 110808|0.5 110809|0.29167 110810|0.5 110811|0.61111 110812|0.52778 110813|0.58333 110814|0.77778 110815|0.36111 110816|0.31944 110817|0.27778 110818|0.45833 110819|0.23611 110820|0.27778 110821|0.73611 110822|0.25 110823|0.22222 110824|0.13889 110825|0.31944 110826|0.38889 110827|0.43056 110828|0.51389 110829|0.5 110830|0.5 110831|0.40278 110832|0.56944 110833|0.375 110834|0.29167 110835|0.41667 110836|0.54167 110837|0.77778 110838|0.73611 110839|0.75 110840|0.41667 110841|0.40278 110842|0.69444 110843|0.61111 110844|0.5 110845|0.5 110846|0.5 110847|0.45833 110848|0.61111 110849|0.5 110850|0.20833 110851|0.43056 110852|0.5 110853|0.44444 110854|0.55556 110855|0.5 110856|0.5 110857|0.5 110858|0.5 110859|0.5 110860|0.61111 110861|0.51389 110862|0.15278 110863|0.31944 110864|0.5 110865|0.75 110866|0.5 110867|0.5 110868|0.73611 110869|0.69444 110870|0.34722 110871|0.625 110872|0.5 110873|0.51389 110874|0.40278 110875|0.47222 110876|0.66667 110877|0.52778 110878|0.34722 110879|0.375 110880|0.33333 110881|0.38889 110882|0.48611 110883|0.5 110884|0.48611 110885|0.51389 110886|0.52778 110887|0.5 110888|0.30556 110889|0.5 110890|0.51389 110891|0.58333 110892|0.5 110893|0.52778 110894|0.76389 110895|0.875 110896|0.5 110897|0.51389 110898|0.61111 110899|0.5 110900|0.625 110901|0.45833 110902|0.48611 110903|0.36111 110904|0.55556 110905|0.5 110906|0.43056 110907|0.61111 110908|0.40278 110909|0.44444 110910|0.5 110911|0.75 110912|0.47222 110913|0.22222 110914|0.5 110915|0.63889 110916|0.77778 110917|0.5 110918|0.5 110919|0.43056 110920|0.54167 110921|0.5 110922|0.5 110923|0.5 110924|0.38889 110925|0.48611 110926|0.41667 110927|0.77778 110928|0.91667 110929|0.40278 110930|0.59722 110931|0.5 110932|0.54167 110933|0.5 110934|0.5 110935|0.66667 110936|0.68056 110937|0.63889 110938|0.5 110939|0.77778 110940|0.48611 110941|0.34722 110942|0.26389 110943|0.56944 110944|0.5 110945|0.77778 110946|0.5 110947|0.75 110948|0.55556 110949|0.48611 110950|0.25 110951|0.43056 110952|0.5 110953|0.5 110954|0.27778 110955|0.59722 110956|0.58333 110957|0.40278 110958|0.61111 110959|0.54167 110960|0.45833 110961|0.47222 110962|0.5 110963|0.38889 110964|0.44444 110965|0.43056 110966|0.47222 110967|0.27778 110968|0.125 110969|0.59722 110970|0.19444 110971|0.27778 110972|0.375 110973|0.16667 110974|0.097222 110975|0.5 110976|0.5 110977|0.58333 110978|0.5 110979|0.41667 110980|0.48611 110981|0.55556 110982|0.70833 110983|0.625 110984|0.44444 110985|0.23611 110986|0.44444 110987|0.54167 110988|0.56944 110989|0.65278 110990|0.38889 110991|0.41667 110992|0.41667 110993|0.20833 110994|0.19444 110995|0.55556 110996|0.5 110997|0.38889 110998|0.56944 110999|0.5 111000|0.5 111001|0.5 111002|0.51389 111003|0.5 111004|0.47222 111005|0.5 111006|0.5 111007|0.5 111008|0.5 111009|0.83333 111010|0.54167 111011|0.5 111012|0.68056 111013|0.68056 111014|0.61111 111015|0.73611 111016|0.68056 111017|0.55556 111018|0.59722 111019|0.69444 111020|0.69444 111021|0.72222 111022|0.51389 111023|0.56944 111024|0.625 111025|0.52778 111026|0.79167 111027|0.61111 111028|0.375 111029|0.34722 111030|0.51389 111031|0.69444 111032|0.56944 111033|0.86111 111034|0.52778 111035|0.30556 111036|0.5 111037|0.70833 111038|0.55556 111039|0.5 111040|0.48611 111041|0.375 111042|0.43056 111043|0.58333 111044|0.11111 111045|0.80556 111046|0.51389 111047|0.73611 111048|0.43056 111049|0.11111 111050|0.45833 111051|0.5 111052|0.22222 111053|0.5 111054|0.16667 111055|0.5 111056|0.5 111057|0.61111 111058|0.44444 111059|0.23611 111060|0.33333 111061|0.52778 111062|0.41667 111063|0.51389 111064|0.56944 111065|0.5 111066|0.52778 111067|0.19444 111068|0.22222 111069|0.43056 111070|0.45833 111071|0.5 111072|0.48611 111073|0.36111 111074|0.25 111075|0.51389 111076|0.81944 111077|0.59722 111078|0.65278 111079|0.70833 111080|0.69444 111081|0.84722 111082|0.45833 111083|0.875 111084|0.86111 111085|0.40278 111086|0.38889 111087|0.5 111088|0.41667 111089|0.44444 111090|0.22222 111091|0.68056 111092|0.63889 111093|0.38889 111094|0.59722 111095|0.69444 111096|0.68056 111097|0.5 111098|0.51389 111099|0.38889 111100|0.66667 111101|0.54167 111102|0.375 111103|0.27778 111104|0.5 111105|0.56944 111106|0.25 111107|0.40278 111108|0.83333 111109|0.5 111110|0.27778 111111|0.45833 111112|0.54167 111113|0.58333 111114|0.81944 111115|0.34722 111116|0.63889 111117|0.5 111118|0.38889 111119|0.41667 111120|0.79167 111121|0.38889 111122|0.63889 111123|0.77778 111124|0.51389 111125|0.61111 111126|0.38889 111127|0.58333 111128|0.79167 111129|0.41667 111130|0.69444 111131|0.5 111132|0.44444 111133|0.52778 111134|0.70833 111135|0.29167 111136|0.5 111137|0.55556 111138|0.72222 111139|0.5 111140|0.47222 111141|0.5 111142|0.26389 111143|0.29167 111144|0.33333 111145|0.40278 111146|0.055556 111147|0.13889 111148|0.48611 111149|0.51389 111150|0.51389 111151|0.5 111152|0.5 111153|0.083333 111154|0.30556 111155|0.43056 111156|0.23611 111157|0.23611 111158|0.38889 111159|0.93056 111160|0.69444 111161|0.16667 111162|0.5 111163|0.56944 111164|0.5 111165|0.29167 111166|0.52778 111167|0.5 111168|0.77778 111169|0.88889 111170|0.51389 111171|0.61111 111172|0.84722 111173|0.5 111174|0.33333 111175|0.68056 111176|0.5 111177|0.65278 111178|0.66667 111179|0.5 111180|0.5 111181|0.61111 111182|0.56944 111183|0.34722 111184|0.20833 111185|0.5 111186|0.75 111187|0.48611 111188|0.43056 111189|0.36111 111190|0.11111 111191|0.72222 111192|0.68056 111193|0.20833 111194|0.68056 111195|0.875 111196|0.70833 111197|0.875 111198|0.375 111199|0.25 111200|0.48611 111201|0.40278 111202|0.30556 111203|0.27778 111204|0.47222 111205|0.30556 111206|0.16667 111207|0.125 111208|0.38889 111209|0.25 111210|0.55556 111211|0.76389 111212|0.66667 111213|0.94444 111214|0.66667 111215|0.52778 111216|0.20833 111217|0.38889 111218|0.45833 111219|0.625 111220|0.58333 111221|0.15278 111222|0.22222 111223|0.34722 111224|0.65278 111225|0.81944 111226|0.31944 111227|0.31944 111228|0.36111 111229|0.25 111230|0.79167 111231|0.72222 111232|0.72222 111233|0.66667 111234|0.68056 111235|0.72222 111236|0.65278 111237|0.47222 111238|0.80556 111239|0.625 111240|0.45833 111241|0.25 111242|0.80556 111243|0.18056 111244|0.52778 111245|0.70833 111246|0.61111 111247|0.61111 111248|0.70833 111249|0.81944 111250|0.70833 111251|0.80556 111252|0.75 111253|0.73611 111254|0.48611 111255|0.5 111256|0.22222 111257|0.44444 111258|0.34722 111259|0.5 111260|0.76389 111261|0.72222 111262|0.5 111263|0.52778 111264|0.54167 111265|0.76389 111266|0.54167 111267|0.72222 111268|0.5 111269|0.69444 111270|0.59722 111271|0.30556 111272|0.44444 111273|0.5 111274|0.65278 111275|0.61111 111276|0.66667 111277|0.52778 111278|0.5 111279|0.5 111280|0.5 111281|0.88889 111282|0.54167 111283|0.33333 111284|0.47222 111285|0.52778 111286|0.5 111287|0.5 111288|0.56944 111289|0.65278 111290|0.48611 111291|0.77778 111292|0.5 111293|0.63889 111294|0.54167 111295|0.5 111296|0.5 111297|0.5 111298|0.19444 111299|0.44444 111300|0.23611 111301|0.20833 111302|0.16667 111303|0.13889 111304|0.58333 111305|0.66667 111306|0.47222 111307|0.5 111308|0.54167 111309|0.44444 111310|0.36111 111311|0.5 111312|0.54167 111313|0.63889 111314|0.44444 111315|0.56944 111316|0.25 111317|0.375 111318|0.65278 111319|0.72222 111320|0.52778 111321|0.66667 111322|0.5 111323|0.38889 111324|0.25 111325|0.43056 111326|0.58333 111327|0.69444 111328|0.38889 111329|0.5 111330|0.36111 111331|0.66667 111332|0.65278 111333|0.59722 111334|0.31944 111335|0.25 111336|0.48611 111337|0.16667 111338|0.25 111339|0.76389 111340|0.58333 111341|0.77778 111342|0.81944 111343|0.88889 111344|0.88889 111345|0.66667 111346|0.73611 111347|0.54167 111348|0.44444 111349|0.55556 111350|0.95833 111351|0.26389 111352|0.73611 111353|0.45833 111354|0.73611 111355|0.69444 111356|0.83333 111357|0.54167 111358|0.80556 111359|0.52778 111360|0.875 111361|0.86111 111362|0.76389 111363|0.56944 111364|0.44444 111365|0.61111 111366|0.5 111367|0.58333 111368|0.45833 111369|0.72222 111370|0.44444 111371|0.51389 111372|0.45833 111373|0.5 111374|0.625 111375|0.5 111376|0.5 111377|0.79167 111378|0.97222 111379|0.77778 111380|0.77778 111381|0.61111 111382|0.5 111383|0.5 111384|0.5 111385|0.25 111386|0.27778 111387|0.19444 111388|0.38889 111389|0.55556 111390|0.5 111391|0.5 111392|0.45833 111393|0.63889 111394|0.58333 111395|0.45833 111396|0.5 111397|0.44444 111398|0.36111 111399|0.51389 111400|0.5 111401|0.72222 111402|0.5 111403|0.33333 111404|0.54167 111405|0.73611 111406|0.34722 111407|0.55556 111408|0.52778 111409|0.19444 111410|0.70833 111411|0.56944 111412|0.5 111413|0.51389 111414|0.61111 111415|0.44444 111416|0.51389 111417|0.5 111418|0.61111 111419|0.375 111420|0.5 111421|0.055556 111422|0.5 111423|0.38889 111424|0.041667 111425|0.51389 111426|0.47222 111427|0.5 111428|0.45833 111429|0.63889 111430|0.33333 111431|0.44444 111432|0.5 111433|0.44444 111434|0.59722 111435|0.5 111436|0.55556 111437|0.58333 111438|0.70833 111439|0.5 111440|0.26389 111441|0.5 111442|0.58333 111443|0.625 111444|0.75 111445|0.56944 111446|0.63889 111447|0.61111 111448|0.5 111449|0.94444 111450|0.45833 111451|0.5 111452|0.5 111453|0.5 111454|0.34722 111455|0.375 111456|0.5 111457|0.86111 111458|0.45833 111459|0.52778 111460|0.44444 111461|0.375 111462|0.41667 111463|0.36111 111464|0.5 111465|0.54167 111466|0.52778 111467|0.33333 111468|0.15278 111469|0.36111 111470|0.5 111471|0.5 111472|0.5 111473|0.61111 111474|0.44444 111475|0.5 111476|0.77778 111477|0.59722 111478|0.48611 111479|0.44444 111480|0.625 111481|0.5 111482|0.27778 111483|0.5 111484|0.65278 111485|0.61111 111486|0.55556 111487|0.52778 111488|0.5 111489|0.5 111490|0.36111 111491|0.625 111492|0.5 111493|0.58333 111494|0.5 111495|0.055556 111496|0.5 111497|0.38889 111498|0.47222 111499|0.5 111500|0.40278 111501|0.5 111502|0.5 111503|0.68056 111504|0.55556 111505|0.5 111506|0.5 111507|0.5 111508|0.56944 111509|0.70833 111510|0.44444 111511|0.48611 111512|0.5 111513|0.52778 111514|0.54167 111515|0.5 111516|0.5 111517|0.5 111518|0.19444 111519|0.33333 111520|0.30556 111521|0.097222 111522|0.027778 111523|0.19444 111524|0.125 111525|0.16667 111526|0.41667 111527|0.25 111528|0.27778 111529|0.5 111530|0.65278 111531|0.72222 111532|0.61111 111533|0.5 111534|0.70833 111535|0.44444 111536|0.30556 111537|0.5 111538|0.86111 111539|0.81944 111540|0.5 111541|0.55556 111542|0.56944 111543|0.52778 111544|0.88889 111545|0.52778 111546|0.52778 111547|0.70833 111548|0.5 111549|0.83333 111550|0.70833 111551|0.73611 111552|0.70833 111553|0.73611 111554|0.29167 111555|0.72222 111556|0.69444 111557|0.69444 111558|0.43056 111559|0.38889 111560|0.56944 111561|0.5 111562|0.36111 111563|0.22222 111564|0.40278 111565|0.48611 111566|0.375 111567|0.11111 111568|0.22222 111569|0.55556 111570|0.375 111571|0.48611 111572|0.44444 111573|0.54167 111574|0.51389 111575|0.58333 111576|0.5 111577|0.5 111578|0.5 111579|0.55556 111580|0.625 111581|0.875 111582|0.86111 111583|0.72222 111584|0.65278 111585|0.61111 111586|0.70833 111587|0.88889 111588|0.41667 111589|0.59722 111590|0.5 111591|0.52778 111592|0.52778 111593|0.5 111594|0.48611 111595|0.625 111596|0.70833 111597|0.66667 111598|0.77778 111599|0.26389 111600|0 111601|0.40278 111602|0.68056 111603|0.44444 111604|0.45833 111605|0.55556 111606|0.55556 111607|0.5 111608|0.52778 111609|0.5 111610|0.61111 111611|0.66667 111612|0.54167 111613|0.5 111614|0.75 111615|0.58333 111616|0.5 111617|0.79167 111618|0.72222 111619|0.77778 111620|0.58333 111621|0.5 111622|0.16667 111623|0.33333 111624|0.19444 111625|0.25 111626|0.40278 111627|0.52778 111628|0.54167 111629|0.55556 111630|0.55556 111631|0.5 111632|0.56944 111633|0.38889 111634|0.44444 111635|0.069444 111636|0.40278 111637|0.5 111638|0.58333 111639|0.84722 111640|0.61111 111641|0.38889 111642|0.625 111643|0.38889 111644|0.68056 111645|0.56944 111646|0.40278 111647|0.51389 111648|0.65278 111649|0.69444 111650|0.56944 111651|0.48611 111652|0.72222 111653|0.59722 111654|0.61111 111655|0.58333 111656|0.47222 111657|0.5 111658|0.58333 111659|0.73611 111660|0.77778 111661|0.63889 111662|0.30556 111663|0.40278 111664|0.52778 111665|0.43056 111666|0.41667 111667|0.31944 111668|0.59722 111669|0.58333 111670|0.65278 111671|0.61111 111672|0.72222 111673|0.72222 111674|0.52778 111675|0.55556 111676|0.56944 111677|0.625 111678|0.66667 111679|0.41667 111680|0.66667 111681|0.61111 111682|0.61111 111683|0.55556 111684|0.52778 111685|0.86111 111686|0.38889 111687|0.38889 111688|0.52778 111689|0.44444 111690|0.44444 111691|0.5 111692|0.22222 111693|0.25 111694|0.055556 111695|0.069444 111696|0.11111 111697|0.77778 111698|0.56944 111699|0.5 111700|0.51389 111701|0.65278 111702|0.65278 111703|0.83333 111704|0.33333 111705|0.5 111706|0.51389 111707|0.5 111708|0.5 111709|0.5 111710|0.63889 111711|0.30556 111712|0.23611 111713|0.43056 111714|0.5 111715|0.097222 111716|0.47222 111717|0.069444 111718|0.59722 111719|0.79167 111720|0.44444 111721|0.40278 111722|0.29167 111723|0.30556 111724|0.61111 111725|0.55556 111726|0.54167 111727|0.58333 111728|0.5 111729|0.41667 111730|0.5 111731|0.56944 111732|0.48611 111733|0.48611 111734|0.27778 111735|0.65278 111736|0.48611 111737|0.52778 111738|0.5 111739|0.45833 111740|0.48611 111741|0.41667 111742|0.41667 111743|0.77778 111744|0.47222 111745|0.22222 111746|0.16667 111747|0.5 111748|0.61111 111749|0.51389 111750|0.70833 111751|0.66667 111752|0.61111 111753|0.65278 111754|0.73611 111755|0.5 111756|0.69444 111757|0.72222 111758|0.44444 111759|0.80556 111760|0.72222 111761|0.80556 111762|0.40278 111763|0.29167 111764|0.18056 111765|0.65278 111766|0.5 111767|0.5 111768|0.52778 111769|0.76389 111770|0.61111 111771|0.59722 111772|0.68056 111773|0.79167 111774|0.79167 111775|0.94444 111776|0.875 111777|0.93056 111778|0.5 111779|0.33333 111780|0.43056 111781|0.40278 111782|0.51389 111783|0.52778 111784|0.66667 111785|0.69444 111786|0.45833 111787|0.80556 111788|0.5 111789|0.56944 111790|0.5 111791|0.48611 111792|0.51389 111793|0.625 111794|0.70833 111795|0.5 111796|0.59722 111797|0.88889 111798|0.80556 111799|0.11111 111800|0.18056 111801|0.13889 111802|0.38889 111803|0.51389 111804|0.29167 111805|0.44444 111806|0.75 111807|0.76389 111808|0.56944 111809|0.69444 111810|0.80556 111811|0.48611 111812|0.68056 111813|0.5 111814|0.63889 111815|0.5 111816|0.44444 111817|0.5 111818|0.54167 111819|0.5 111820|0.19444 111821|0.36111 111822|0.44444 111823|0.38889 111824|0.69444 111825|0.69444 111826|0.33333 111827|0.54167 111828|0.47222 111829|0.069444 111830|0.5 111831|0.68056 111832|0.72222 111833|0.63889 111834|0.73611 111835|0.55556 111836|0.48611 111837|0.40278 111838|0.48611 111839|0.5 111840|0.5 111841|0.43056 111842|0.54167 111843|0.61111 111844|0.69444 111845|0.68056 111846|0.65278 111847|0.72222 111848|0.34722 111849|0.61111 111850|0.69444 111851|0.625 111852|0.625 111853|0.58333 111854|0.40278 111855|0.65278 111856|0.16667 111857|0.45833 111858|0.51389 111859|0.65278 111860|0.38889 111861|0.47222 111862|0.80556 111863|0.77778 111864|0.54167 111865|0.47222 111866|0.47222 111867|0.41667 111868|0.56944 111869|0.90278 111870|0.86111 111871|0.65278 111872|0.86111 111873|0.73611 111874|0.80556 111875|0.25 111876|0.5 111877|0.40278 111878|0.44444 111879|0.44444 111880|0.76389 111881|0.79167 111882|0.56944 111883|0.26389 111884|0.625 111885|0.40278 111886|0.31944 111887|0.45833 111888|0.61111 111889|0.5 111890|0.76389 111891|0.36111 111892|0.76389 111893|0.625 111894|0.65278 111895|0.5 111896|0.45833 111897|0.5 111898|0.5 111899|0.65278 111900|0.69444 111901|0.43056 111902|0.65278 111903|0.55556 111904|0.625 111905|0.5 111906|0.55556 111907|0.55556 111908|0.51389 111909|0.34722 111910|0.80556 111911|0.38889 111912|0.56944 111913|0.5 111914|0.5 111915|0.54167 111916|0.72222 111917|0.73611 111918|0.81944 111919|0.33333 111920|0.083333 111921|0.86111 111922|0.65278 111923|0.58333 111924|0.51389 111925|0.72222 111926|0.56944 111927|0.47222 111928|0.79167 111929|0.77778 111930|0.55556 111931|0.26389 111932|0.51389 111933|0.40278 111934|0.33333 111935|0.33333 111936|0.18056 111937|0.5 111938|0.51389 111939|0.47222 111940|0.5 111941|0.31944 111942|0.63889 111943|0.70833 111944|0.41667 111945|0.5 111946|0.52778 111947|0.44444 111948|0.48611 111949|0.5 111950|0.23611 111951|0.5 111952|0.5 111953|0.65278 111954|0.88889 111955|0.69444 111956|0.76389 111957|0.84722 111958|0.63889 111959|0.58333 111960|0.58333 111961|0.5 111962|0.27778 111963|0.18056 111964|0.34722 111965|0.23611 111966|0.20833 111967|0.40278 111968|0.72222 111969|0.69444 111970|0.34722 111971|0.59722 111972|0.58333 111973|0.72222 111974|0.52778 111975|0.61111 111976|0.59722 111977|0.66667 111978|0.72222 111979|0.70833 111980|0.79167 111981|0.70833 111982|0.52778 111983|0.65278 111984|0.63889 111985|0.47222 111986|0.55556 111987|0.47222 111988|0.5 111989|0.52778 111990|0.68056 111991|0.76389 111992|0.66667 111993|0.54167 111994|0.36111 111995|0.58333 111996|0.59722 111997|0.66667 111998|0.63889 111999|0.69444 112000|0.54167 112001|0.26389 112002|0.76389 112003|0.79167 112004|0.29167 112005|0.81944 112006|0.77778 112007|0.80556 112008|0.36111 112009|0.41667 112010|0.33333 112011|0.48611 112012|0.055556 112013|0.16667 112014|0.16667 112015|0.5 112016|0.27778 112017|0.68056 112018|0.54167 112019|0.58333 112020|0.18056 112021|0.48611 112022|0.26389 112023|0.29167 112024|0.33333 112025|0.11111 112026|0.5 112027|0.54167 112028|0.63889 112029|0.77778 112030|0.73611 112031|0.90278 112032|0.70833 112033|0.70833 112034|0.65278 112035|0.625 112036|0.72222 112037|0.75 112038|0.68056 112039|0.68056 112040|0.61111 112041|0.56944 112042|0.81944 112043|0.79167 112044|0.63889 112045|0.5 112046|0.58333 112047|0.83333 112048|0.83333 112049|0.55556 112050|0.73611 112051|0.80556 112052|0.72222 112053|0.44444 112054|0.76389 112055|0.81944 112056|0.66667 112057|0.83333 112058|0.61111 112059|0.20833 112060|0.43056 112061|0.77778 112062|0.77778 112063|0.81944 112064|0.56944 112065|0.30556 112066|0.61111 112067|0.70833 112068|0.54167 112069|0.43056 112070|0.88889 112071|0.56944 112072|0.38889 112073|0.44444 112074|0.41667 112075|0.58333 112076|0.66667 112077|0.58333 112078|0.59722 112079|0.68056 112080|0.31944 112081|0.43056 112082|0.48611 112083|0.63889 112084|0.34722 112085|0.66667 112086|0.20833 112087|0.625 112088|0.48611 112089|0.68056 112090|0.90278 112091|0.22222 112092|0.47222 112093|0.73611 112094|0.51389 112095|0.61111 112096|0.86111 112097|0.81944 112098|0.73611 112099|0.375 112100|0.5 112101|0.34722 112102|0.31944 112103|0.5 112104|0.75 112105|0.75 112106|0.76389 112107|0.61111 112108|0.81944 112109|0.56944 112110|0.55556 112111|0.625 112112|0.41667 112113|0.54167 112114|0.69444 112115|0.5 112116|0.625 112117|0.61111 112118|0.22222 112119|0.61111 112120|0.72222 112121|0.56944 112122|0.75 112123|0.58333 112124|0.76389 112125|0.52778 112126|0.375 112127|0.5 112128|0.625 112129|0.61111 112130|0.65278 112131|0.34722 112132|0.43056 112133|0.25 112134|0.55556 112135|0.56944 112136|0.5 112137|0.58333 112138|0.58333 112139|0.58333 112140|0.44444 112141|0.5 112142|0.55556 112143|0.5 112144|0.41667 112145|0.54167 112146|0.55556 112147|0.5 112148|0.56944 112149|0.72222 112150|0.43056 112151|0.83333 112152|0.54167 112153|0.54167 112154|0.51389 112155|0.40278 112156|0.68056 112157|0.5 112158|0.41667 112159|0.69444 112160|0.56944 112161|0.68056 112162|0.5 112163|0.88889 112164|0.63889 112165|0.5 112166|0.61111 112167|0.52778 112168|0.22222 112169|0.68056 112170|0.70833 112171|0.59722 112172|0.375 112173|0.5 112174|0.38889 112175|0.33333 112176|0.44444 112177|0.61111 112178|0.38889 112179|0.69444 112180|0.44444 112181|0.38889 112182|0.25 112183|0.20833 112184|0.30556 112185|0.34722 112186|0.30556 112187|0.38889 112188|0.23611 112189|0.40278 112190|0.51389 112191|0.79167 112192|0.56944 112193|0.27778 112194|0.44444 112195|0.52778 112196|0.54167 112197|0.625 112198|0.625 112199|0.18056 112200|0.69444 112201|0.69444 112202|0.48611 112203|0.5 112204|0.44444 112205|0.43056 112206|0.41667 112207|0.22222 112208|0.55556 112209|0.47222 112210|0.52778 112211|0.61111 112212|0.70833 112213|0.55556 112214|0.45833 112215|0.55556 112216|0.48611 112217|0.25 112218|0.36111 112219|0.5 112220|0.55556 112221|0.51389 112222|0.18056 112223|0.22222 112224|0.5 112225|0.51389 112226|0.55556 112227|0.47222 112228|0.5 112229|0.66667 112230|0.56944 112231|0.56944 112232|0.73611 112233|0.33333 112234|0.33333 112235|0.45833 112236|0.54167 112237|0.51389 112238|0.52778 112239|0.22222 112240|0.5 112241|0.75 112242|0.61111 112243|0.5 112244|0.27778 112245|0.75 112246|0.66667 112247|0.75 112248|0.19444 112249|0.11111 112250|0.69444 112251|0.63889 112252|0.61111 112253|0.56944 112254|0.54167 112255|0.55556 112256|0.5 112257|0.69444 112258|0.16667 112259|0.13889 112260|0.33333 112261|0.43056 112262|0.59722 112263|0.75 112264|0.38889 112265|0.66667 112266|0.83333 112267|0.45833 112268|0.23611 112269|0.54167 112270|0.43056 112271|0.5 112272|0.38889 112273|0.61111 112274|0.52778 112275|0.38889 112276|0.52778 112277|0.38889 112278|0.5 112279|0.65278 112280|0.5 112281|0.66667 112282|0.66667 112283|0.51389 112284|0.29167 112285|0.5 112286|0.5 112287|0.63889 112288|0.30556 112289|0.59722 112290|0.16667 112291|0.66667 112292|0.52778 112293|0.40278 112294|0.5 112295|0.625 112296|0.75 112297|0.5 112298|0.58333 112299|0.45833 112300|1 112301|0.875 112302|0.83333 112303|0.38889 112304|0.63889 112305|0.5 112306|0.68056 112307|0.41667 112308|0.41667 112309|0.41667 112310|0.58333 112311|0.36111 112312|0.13889 112313|0.79167 112314|0.73611 112315|0.73611 112316|0.30556 112317|0.41667 112318|0.13889 112319|0.625 112320|0.61111 112321|0.76389 112322|0.48611 112323|0.43056 112324|0.55556 112325|0.59722 112326|0.44444 112327|0.625 112328|0.55556 112329|0.69444 112330|0.5 112331|0.52778 112332|0.38889 112333|0.5 112334|0.55556 112335|0.38889 112336|0.55556 112337|0.66667 112338|0.45833 112339|0.55556 112340|0.16667 112341|0.41667 112342|0.375 112343|0.30556 112344|0.51389 112345|0.5 112346|0.52778 112347|0.51389 112348|0.5 112349|0.44444 112350|0.55556 112351|0.5 112352|0.33333 112353|0.20833 112354|0.11111 112355|0.91667 112356|0.5 112357|0.5 112358|0.22222 112359|0.63889 112360|0.44444 112361|0.41667 112362|0.5 112363|0.51389 112364|0.375 112365|0.13889 112366|0.5 112367|0.52778 112368|0.83333 112369|0.5 112370|0.25 112371|0.70833 112372|0.125 112373|0.055556 112374|0.33333 112375|0.80556 112376|0.80556 112377|0.33333 112378|0.59722 112379|0.77778 112380|0.73611 112381|0.79167 112382|0.41667 112383|0.55556 112384|0.59722 112385|0.68056 112386|0.83333 112387|0.83333 112388|0.66667 112389|0.59722 112390|0.20833 112391|0.5 112392|0.5 112393|0.5 112394|0.56944 112395|0.29167 112396|0.88889 112397|0.34722 112398|0.40278 112399|0.56944 112400|0.52778 112401|0.65278 112402|0.31944 112403|0.5 112404|0.59722 112405|0.5 112406|0.44444 112407|0.38889 112408|0.5 112409|0.59722 112410|0.069444 112411|0.5 112412|0.44444 112413|0.70833 112414|0.51389 112415|0.45833 112416|0.55556 112417|0.83333 112418|0.72222 112419|0.72222 112420|0.70833 112421|0.81944 112422|0.66667 112423|0.23611 112424|0.59722 112425|0.56944 112426|0.80556 112427|0.86111 112428|0.54167 112429|0.69444 112430|0.45833 112431|0.47222 112432|0.23611 112433|0.47222 112434|0.23611 112435|0.43056 112436|0.59722 112437|0.68056 112438|0.5 112439|0.5 112440|0.51389 112441|0.58333 112442|0.44444 112443|0.5 112444|0.70833 112445|0.5 112446|0.81944 112447|0.5 112448|0.44444 112449|0.5 112450|0.48611 112451|0.34722 112452|0.15278 112453|0.41667 112454|0.59722 112455|0.5 112456|0.5 112457|0.625 112458|0.5 112459|0.5 112460|0.41667 112461|0.41667 112462|0.36111 112463|0.65278 112464|0.59722 112465|0.66667 112466|0.51389 112467|0.61111 112468|0.5 112469|0.77778 112470|0.52778 112471|0.33333 112472|0.36111 112473|0.19444 112474|0.013889 112475|0.48611 112476|0.47222 112477|0.75 112478|0.41667 112479|0.40278 112480|0.70833 112481|0.81944 112482|0.44444 112483|0.58333 112484|0.30556 112485|0.19444 112486|0.73611 112487|0.77778 112488|0.5 112489|0.56944 112490|0.52778 112491|0.69444 112492|0.51389 112493|0.5 112494|0.80556 112495|0.375 112496|0.83333 112497|0.81944 112498|0.79167 112499|0.63889 112500|0.77778 112501|0.66667 112502|0.72222 112503|0.41667 112504|0.80556 112505|0.72222 112506|0.79167 112507|0.80556 112508|0.97222 112509|0.80556 112510|0.44444 112511|0.48611 112512|0.36111 112513|0.375 112514|0.45833 112515|0.51389 112516|0.44444 112517|0.43056 112518|0.27778 112519|0.15278 112520|0.20833 112521|0.25 112522|0.81944 112523|0.77778 112524|0.83333 112525|0.76389 112526|0.69444 112527|0.47222 112528|0.55556 112529|0.48611 112530|0.45833 112531|0.33333 112532|0.41667 112533|0.54167 112534|0.51389 112535|0.5 112536|0.58333 112537|0.5 112538|0.52778 112539|0.55556 112540|0.44444 112541|0.63889 112542|0.66667 112543|0.59722 112544|0.66667 112545|0.5 112546|0.44444 112547|0.48611 112548|0.48611 112549|0.38889 112550|0.55556 112551|0.54167 112552|0.55556 112553|0.47222 112554|0.66667 112555|0.5 112556|0.47222 112557|0.5 112558|0.5 112559|0.5 112560|0.22222 112561|0.38889 112562|0.44444 112563|0.52778 112564|0.5 112565|0.625 112566|0.61111 112567|0.5 112568|0.41667 112569|0.5 112570|0.61111 112571|0.5 112572|0.75 112573|0.66667 112574|0.48611 112575|0.72222 112576|0.69444 112577|0.5 112578|0.11111 112579|0.52778 112580|0.55556 112581|0.73611 112582|0.77778 112583|0.61111 112584|0.5 112585|0.44444 112586|0.68056 112587|0.76389 112588|0.73611 112589|0.81944 112590|0.47222 112591|0.33333 112592|0.58333 112593|0.54167 112594|0.56944 112595|0.47222 112596|0.56944 112597|0.75 112598|0.38889 112599|0.55556 112600|0.33333 112601|0.94444 112602|0.70833 112603|0.63889 112604|0.76389 112605|0.26389 112606|0.44444 112607|0.30556 112608|0.44444 112609|0.5 112610|0.51389 112611|0.55556 112612|0.66667 112613|0.5 112614|0.47222 112615|0.47222 112616|0.38889 112617|0.51389 112618|0.5 112619|0.26389 112620|0.59722 112621|0.55556 112622|0.76389 112623|0.40278 112624|0.76389 112625|0.76389 112626|0.69444 112627|0.75 112628|0.40278 112629|0.30556 112630|0.63889 112631|0.75 112632|0.86111 112633|0.63889 112634|0.76389 112635|0.875 112636|0.5 112637|0.69444 112638|0.36111 112639|0.47222 112640|0.55556 112641|0.83333 112642|0.80556 112643|0.80556 112644|0.70833 112645|0.45833 112646|0.52778 112647|0.34722 112648|0.18056 112649|0.5 112650|0.52778 112651|0.5 112652|0.84722 112653|0.5 112654|0.375 112655|0.47222 112656|0.51389 112657|0.5 112658|0.41667 112659|0.16667 112660|0.56944 112661|0.61111 112662|0.72222 112663|0.44444 112664|0.48611 112665|0.59722 112666|0.15278 112667|0.48611 112668|0.48611 112669|0.56944 112670|0.51389 112671|0.5 112672|0.65278 112673|0.44444 112674|0.22222 112675|0.63889 112676|0.54167 112677|0.5 112678|0.36111 112679|0.31944 112680|0.33333 112681|0.52778 112682|0.40278 112683|0.72222 112684|0.65278 112685|0.88889 112686|0.79167 112687|0.54167 112688|0.5 112689|0.36111 112690|0.44444 112691|0.51389 112692|0.45833 112693|0.61111 112694|0.65278 112695|0.70833 112696|0.52778 112697|0.27778 112698|0.26389 112699|0.5 112700|0.61111 112701|0.68056 112702|0.47222 112703|0.80556 112704|0.5 112705|0.18056 112706|0.40278 112707|0.33333 112708|0.33333 112709|0.59722 112710|0.61111 112711|0.43056 112712|0.80556 112713|0.80556 112714|0.41667 112715|0.41667 112716|0.54167 112717|0.30556 112718|0.44444 112719|0.45833 112720|0.31944 112721|0.30556 112722|0.48611 112723|0.56944 112724|0.22222 112725|0.47222 112726|0.79167 112727|0.625 112728|0.65278 112729|0.58333 112730|0.47222 112731|0.5 112732|0.33333 112733|0.61111 112734|0.48611 112735|0.16667 112736|0.59722 112737|0.68056 112738|0.5 112739|0.58333 112740|0.41667 112741|0.80556 112742|0.73611 112743|0.70833 112744|0.73611 112745|0.69444 112746|0.69444 112747|0.83333 112748|0.69444 112749|0.84722 112750|0.84722 112751|0.52778 112752|0.48611 112753|0.41667 112754|0.59722 112755|0.61111 112756|0.5 112757|0.58333 112758|0.5 112759|0.38889 112760|0.33333 112761|0.68056 112762|0.75 112763|0.84722 112764|0.86111 112765|0.58333 112766|0.875 112767|0.69444 112768|0.51389 112769|0.5 112770|0.58333 112771|0.55556 112772|0.52778 112773|0.26389 112774|0.23611 112775|0.45833 112776|0.59722 112777|0.66667 112778|0.625 112779|0.61111 112780|0.875 112781|0.36111 112782|0.38889 112783|0.84722 112784|0.625 112785|0.29167 112786|0.88889 112787|0.63889 112788|0.72222 112789|0.56944 112790|0.59722 112791|0.15278 112792|0.63889 112793|0.36111 112794|0.52778 112795|0.29167 112796|0.73611 112797|0.75 112798|0.66667 112799|0.44444 112800|0.61111 112801|0.47222 112802|0.72222 112803|0.66667 112804|0.77778 112805|0.66667 112806|0.56944 112807|0.625 112808|0.72222 112809|0.66667 112810|0.91667 112811|0.23611 112812|0.66667 112813|0.5 112814|0.51389 112815|0.18056 112816|0.59722 112817|0.875 112818|0.90278 112819|0.59722 112820|0.83333 112821|0.55556 112822|0.61111 112823|0.55556 112824|0.72222 112825|0.81944 112826|0.66667 112827|0.68056 112828|0.56944 112829|0.5 112830|0.5 112831|0.48611 112832|0.61111 112833|0.45833 112834|0.59722 112835|0.625 112836|0.22222 112837|0.65278 112838|0.5 112839|0.56944 112840|0.63889 112841|0.45833 112842|0.45833 112843|0.59722 112844|0.29167 112845|0.72222 112846|0.65278 112847|0.56944 112848|0.56944 112849|0.52778 112850|0.69444 112851|0.68056 112852|0.56944 112853|0.63889 112854|0.5 112855|0.77778 112856|0.76389 112857|0.61111 112858|0.5 112859|0.48611 112860|0.5 112861|0.72222 112862|0.47222 112863|0.77778 112864|0.45833 112865|0.625 112866|0.43056 112867|0.23611 112868|0.58333 112869|0.55556 112870|0.19444 112871|0.51389 112872|0.65278 112873|0.59722 112874|0.61111 112875|0.45833 112876|0.51389 112877|0.5 112878|0.30556 112879|0.84722 112880|0.84722 112881|0.61111 112882|0.63889 112883|0.44444 112884|0.61111 112885|0.5 112886|0.61111 112887|0.63889 112888|0.55556 112889|0.63889 112890|0.73611 112891|0.77778 112892|0.5 112893|0.44444 112894|0.75 112895|0.58333 112896|0.61111 112897|0.5 112898|0.5 112899|0.125 112900|0.34722 112901|0.55556 112902|0.44444 112903|0.69444 112904|0.875 112905|0.73611 112906|0.625 112907|0.43056 112908|0.66667 112909|0.83333 112910|0.38889 112911|0.43056 112912|0.51389 112913|0.47222 112914|0.66667 112915|0.54167 112916|0.56944 112917|0.61111 112918|0.5 112919|0.5 112920|0.45833 112921|0.56944 112922|0.54167 112923|0.5 112924|0.72222 112925|0.76389 112926|0.75 112927|0.47222 112928|0.47222 112929|0.48611 112930|0.29167 112931|0.22222 112932|0.625 112933|0.51389 112934|0.69444 112935|0.34722 112936|0.65278 112937|0.66667 112938|0.34722 112939|0.73611 112940|0.68056 112941|0.73611 112942|0.5 112943|0.70833 112944|0.68056 112945|0.86111 112946|0.875 112947|0.48611 112948|0.44444 112949|0.66667 112950|0.5 112951|0.51389 112952|0.84722 112953|0.73611 112954|0.55556 112955|0.44444 112956|0.5 112957|0.51389 112958|0.5 112959|0.33333 112960|0.26389 112961|0.5 112962|0.51389 112963|0.38889 112964|0.77778 112965|0.76389 112966|0.36111 112967|0.44444 112968|0.84722 112969|0.91667 112970|0.65278 112971|0.51389 112972|0.43056 112973|0.83333 112974|0.48611 112975|0.66667 112976|0.83333 112977|0.79167 112978|0.40278 112979|0.5 112980|0.48611 112981|0.5 112982|0.45833 112983|0.5 112984|0.61111 112985|0.63889 112986|0.80556 112987|0.72222 112988|0.70833 112989|0.88889 112990|0.44444 112991|0.72222 112992|0.79167 112993|0.52778 112994|0.5 112995|0.77778 112996|0.11111 112997|0.33333 112998|0.55556 112999|0.52778 113000|0.125 113001|0.36111 113002|0.23611 113003|0.75 113004|0.36111 113005|0.625 113006|0.34722 113007|0.18056 113008|0.20833 113009|0.26389 113010|0.125 113011|0.44444 113012|0.95833 113013|0.72222 113014|0.65278 113015|0.70833 113016|0.77778 113017|0.83333 113018|0.31944 113019|0.26389 113020|0.58333 113021|0.66667 113022|0.5 113023|0.19444 113024|0.77778 113025|0.875 113026|0.54167 113027|0.47222 113028|0.5 113029|0.65278 113030|0.61111 113031|0.47222 113032|0.83333 113033|0.72222 113034|0.81944 113035|0.84722 113036|0.95833 113037|0.79167 113038|0.90278 113039|0.80556 113040|0.5 113041|0.77778 113042|0.84722 113043|0.75 113044|0.47222 113045|0.38889 113046|0.81944 113047|0.80556 113048|0.625 113049|0.5 113050|0.54167 113051|0.58333 113052|0.61111 113053|0.59722 113054|0.625 113055|0.013889 113056|0.61111 113057|0.76389 113058|0.65278 113059|0.58333 113060|0.54167 113061|0.75 113062|0.48611 113063|0.70833 113064|0.43056 113065|0.61111 113066|0.52778 113067|0.5 113068|0.5 113069|0.51389 113070|0.5 113071|0.55556 113072|0.68056 113073|0.5 113074|0.5 113075|0.75 113076|0.45833 113077|0.63889 113078|0.5 113079|0.5 113080|0.375 113081|0.61111 113082|0.51389 113083|0.33333 113084|0.13889 113085|0.63889 113086|0.61111 113087|0.52778 113088|0.91667 113089|0.65278 113090|0.47222 113091|0.75 113092|0.44444 113093|0.52778 113094|0.52778 113095|0.54167 113096|0.5 113097|0.59722 113098|0.56944 113099|0.59722 113100|0.48611 113101|0.5 113102|0.38889 113103|0.5 113104|0.77778 113105|0.5 113106|0.52778 113107|0.41667 113108|0.55556 113109|0.5 113110|0.44444 113111|0.41667 113112|0.59722 113113|0.5 113114|0.5 113115|0.34722 113116|0.5 113117|0.36111 113118|0.41667 113119|0.5 113120|0.76389 113121|0.68056 113122|0.59722 113123|0.5 113124|0.52778 113125|0.33333 113126|0.5 113127|0.72222 113128|0.31944 113129|0.41667 113130|0.38889 113131|0.41667 113132|0.29167 113133|0.43056 113134|0.52778 113135|0.375 113136|0.44444 113137|0.63889 113138|0.41667 113139|0.66667 113140|0.56944 113141|0.5 113142|0.66667 113143|0.5 113144|0.48611 113145|0.23611 113146|0.5 113147|0.5 113148|0.33333 113149|0.48611 113150|0.5 113151|0.63889 113152|0.31944 113153|0.5 113154|0.5 113155|0.48611 113156|0.55556 113157|0.43056 113158|0.38889 113159|0.47222 113160|0.58333 113161|0.34722 113162|0.63889 113163|0.41667 113164|0.54167 113165|0.44444 113166|0.5 113167|0.29167 113168|0.5 113169|0.5 113170|0.52778 113171|0.5 113172|0.52778 113173|0.625 113174|0.58333 113175|0.5 113176|0.5 113177|0.55556 113178|0.65278 113179|0.5 113180|0.5 113181|0.5 113182|0.5 113183|0.34722 113184|0.58333 113185|0.5 113186|0.625 113187|0.5 113188|0.69444 113189|0.72222 113190|0.51389 113191|0.5 113192|0.51389 113193|0.5 113194|0.5 113195|0.5 113196|0.43056 113197|0.5 113198|0.5 113199|0.5 113200|0.625 113201|0.66667 113202|0.5 113203|0.5 113204|0.5 113205|0.63889 113206|0.79167 113207|0.51389 113208|0.61111 113209|0.55556 113210|0.68056 113211|0.54167 113212|0.5 113213|0.56944 113214|0.5 113215|0.52778 113216|0.51389 113217|0.47222 113218|0.54167 113219|0.5 113220|0.59722 113221|0.38889 113222|0.5 113223|0.5 113224|0.52778 113225|0.5 113226|0.5 113227|0.5 113228|0.5 113229|0.5 113230|0.5 113231|0.61111 113232|0.5 113233|0.5 113234|0.5 113235|0.68056 113236|0.59722 113237|0.26389 113238|0.5 113239|0.625 113240|0.52778 113241|0.65278 113242|0.55556 113243|0.76389 113244|0.56944 113245|0.77778 113246|0.25 113247|0.52778 113248|0.55556 113249|0.625 113250|0.23611 113251|0.36111 113252|0.45833 113253|0.625 113254|0.41667 113255|0.65278 113256|0.59722 113257|0.5 113258|0.5 113259|0.55556 113260|0.56944 113261|0.59722 113262|0.56944 113263|0.80556 113264|0.80556 113265|0.69444 113266|0.83333 113267|0.70833 113268|0.58333 113269|0.59722 113270|0.73611 113271|0.55556 113272|0.5 113273|0.51389 113274|0.58333 113275|0.58333 113276|0.59722 113277|0.5 113278|0.5 113279|0.69444 113280|0.45833 113281|0.79167 113282|0.56944 113283|0.76389 113284|0.73611 113285|0.69444 113286|0.16667 113287|0.52778 113288|0.48611 113289|0.16667 113290|0.56944 113291|0.70833 113292|0.61111 113293|0.69444 113294|0.77778 113295|0.48611 113296|0.25 113297|0.61111 113298|0.55556 113299|0.61111 113300|0.55556 113301|0.70833 113302|0.52778 113303|0.43056 113304|0.54167 113305|0.5 113306|0.27778 113307|0.40278 113308|0.375 113309|0.76389 113310|0.72222 113311|0.73611 113312|0.5 113313|0.44444 113314|0.52778 113315|0.5 113316|0.65278 113317|0.20833 113318|0.5 113319|0.5 113320|0.5 113321|0.55556 113322|0.47222 113323|0.40278 113324|0.18056 113325|0.36111 113326|0.48611 113327|0.47222 113328|0.44444 113329|0.48611 113330|0.58333 113331|0.47222 113332|0.625 113333|0.48611 113334|0.5 113335|0.54167 113336|0.80556 113337|0.29167 113338|0.5 113339|0.52778 113340|0.40278 113341|0.51389 113342|0.75 113343|0.625 113344|0.5 113345|0.61111 113346|0.5 113347|0.5 113348|0.52778 113349|0.40278 113350|0.5 113351|0.65278 113352|0.59722 113353|0.81944 113354|0.5 113355|0.47222 113356|0.5 113357|0.47222 113358|0.51389 113359|0.56944 113360|0.43056 113361|0.58333 113362|0.38889 113363|0.41667 113364|0.375 113365|0.51389 113366|0.5 113367|0.58333 113368|0.52778 113369|0.61111 113370|0.59722 113371|0.69444 113372|0.86111 113373|0.5 113374|0.72222 113375|0.77778 113376|0.51389 113377|0.61111 113378|0.625 113379|0.75 113380|0.45833 113381|0.29167 113382|0.625 113383|0.63889 113384|0.65278 113385|0.29167 113386|0.68056 113387|0.52778 113388|0.80556 113389|0.55556 113390|0.66667 113391|0.72222 113392|0.68056 113393|0.55556 113394|0.5 113395|0.59722 113396|0.73611 113397|0.55556 113398|0.54167 113399|0.73611 113400|0.80556 113401|0.48611 113402|0.70833 113403|0.69444 113404|0.66667 113405|0.625 113406|0.40278 113407|0.44444 113408|0.31944 113409|0.48611 113410|0.375 113411|0.36111 113412|0.30556 113413|0.33333 113414|0.22222 113415|0.45833 113416|0.55556 113417|0.5 113418|0.5 113419|0.30556 113420|0.70833 113421|0.72222 113422|0.66667 113423|0.43056 113424|0.625 113425|0.75 113426|0.625 113427|0.66667 113428|0.86111 113429|0.52778 113430|0.81944 113431|0.65278 113432|0.48611 113433|0.61111 113434|0.44444 113435|0.51389 113436|0.55556 113437|0.54167 113438|0.48611 113439|0.54167 113440|0.69444 113441|0.52778 113442|0.44444 113443|0.51389 113444|0.45833 113445|0.5 113446|0.66667 113447|0.51389 113448|0.43056 113449|0.5 113450|0.52778 113451|0.61111 113452|0.66667 113453|0.66667 113454|0.63889 113455|0.72222 113456|0.76389 113457|0.65278 113458|0.75 113459|0.65278 113460|0.47222 113461|0.44444 113462|0.5 113463|0.52778 113464|0.45833 113465|0.44444 113466|0.44444 113467|0.16667 113468|0.5 113469|0.47222 113470|0.5 113471|0.47222 113472|0.5 113473|0.58333 113474|0.52778 113475|0.43056 113476|0.52778 113477|0.51389 113478|0.5 113479|0.51389 113480|0.63889 113481|0.56944 113482|0.33333 113483|0.5 113484|0.5 113485|0.5 113486|0.5 113487|0.45833 113488|0.51389 113489|0.5 113490|0.47222 113491|0.51389 113492|0.52778 113493|0.625 113494|0.59722 113495|0.44444 113496|0.76389 113497|0.80556 113498|0.44444 113499|0.48611 113500|0.44444 113501|0.47222 113502|0.65278 113503|0.58333 113504|0.52778 113505|0.38889 113506|0.56944 113507|0.23611 113508|0.43056 113509|0.61111 113510|0.5 113511|0.47222 113512|0.70833 113513|0.36111 113514|0.47222 113515|0.45833 113516|0.36111 113517|0.66667 113518|0.47222 113519|0.38889 113520|0.44444 113521|0.33333 113522|0.41667 113523|0.22222 113524|0.66667 113525|0.43056 113526|0.5 113527|0.41667 113528|0.40278 113529|0.36111 113530|0.27778 113531|0.55556 113532|0.45833 113533|0.48611 113534|0.40278 113535|0.25 113536|0.083333 113537|0.38889 113538|0.47222 113539|0.51389 113540|0.33333 113541|0.65278 113542|0.5 113543|0.5 113544|0.5 113545|0.25 113546|0.20833 113547|0.51389 113548|0.54167 113549|0.70833 113550|0.51389 113551|0.5 113552|0.54167 113553|0.59722 113554|0.44444 113555|0.48611 113556|0.34722 113557|0.22222 113558|0.40278 113559|0.54167 113560|0.41667 113561|0.38889 113562|0.5 113563|0.38889 113564|0.5 113565|0.55556 113566|0.5 113567|0.81944 113568|0.33333 113569|0.5 113570|0.70833 113571|0.25 113572|0.375 113573|0.31944 113574|0.38889 113575|0.41667 113576|0.18056 113577|0.38889 113578|0.38889 113579|0.51389 113580|0.66667 113581|0.79167 113582|0.25 113583|0.47222 113584|0.58333 113585|0.51389 113586|0.80556 113587|0.55556 113588|0.5 113589|0.55556 113590|0.51389 113591|0.625 113592|0.44444 113593|0.80556 113594|0.48611 113595|0.56944 113596|0.54167 113597|0.45833 113598|0.47222 113599|0.65278 113600|0.5 113601|0.59722 113602|0.19444 113603|0.5 113604|0.38889 113605|0.34722 113606|0.23611 113607|0.63889 113608|0.66667 113609|0.5 113610|0.5 113611|0.5 113612|0.5 113613|0.5 113614|0.5 113615|0.52778 113616|0.5 113617|0.5 113618|0.5 113619|0.41667 113620|0.66667 113621|0.61111 113622|0.45833 113623|0.5 113624|0.44444 113625|0.55556 113626|0.54167 113627|0.63889 113628|0.5 113629|0.38889 113630|0.5 113631|0.73611 113632|0.70833 113633|0.22222 113634|0.47222 113635|0.63889 113636|0.44444 113637|0.5 113638|0.375 113639|0.11111 113640|0.52778 113641|0.69444 113642|0.5 113643|0.5 113644|0.65278 113645|0.47222 113646|0.5 113647|0.48611 113648|0.47222 113649|0.73611 113650|0.54167 113651|0.5 113652|0.45833 113653|0.5 113654|0.47222 113655|0.47222 113656|0.5 113657|0.56944 113658|0.72222 113659|0.5 113660|0.61111 113661|0.66667 113662|0.59722 113663|0.76389 113664|0.81944 113665|0.5 113666|0.31944 113667|0.55556 113668|0.625 113669|0.77778 113670|0.5 113671|0.5 113672|0.5 113673|0.30556 113674|0.5 113675|0.70833 113676|0.51389 113677|0.54167 113678|0.52778 113679|0.44444 113680|0.30556 113681|0.76389 113682|0.51389 113683|0.66667 113684|0.51389 113685|0.55556 113686|0.84722 113687|0.38889 113688|0.5 113689|0.375 113690|0.51389 113691|0.72222 113692|0.54167 113693|0.5 113694|0.5 113695|0.61111 113696|0.65278 113697|0.56944 113698|0.56944 113699|0.59722 113700|0.55556 113701|0.25 113702|0.73611 113703|0.72222 113704|0.55556 113705|0.13889 113706|0.83333 113707|0.59722 113708|0.625 113709|0.52778 113710|0.26389 113711|0.33333 113712|0.5 113713|0.45833 113714|0.51389 113715|0.51389 113716|0.5 113717|0.51389 113718|0.36111 113719|0.48611 113720|0.52778 113721|0.19444 113722|0.26389 113723|0.55556 113724|0.375 113725|0.33333 113726|0.59722 113727|0.70833 113728|0.52778 113729|0.54167 113730|0.54167 113731|0.47222 113732|0.5 113733|0.18056 113734|0.27778 113735|0.26389 113736|0.51389 113737|0.55556 113738|0.56944 113739|0.47222 113740|0.58333 113741|0.63889 113742|0.41667 113743|0.40278 113744|0.5 113745|0.5 113746|0.45833 113747|0.66667 113748|0.52778 113749|0.34722 113750|0.44444 113751|0.75 113752|0.40278 113753|0.27778 113754|0.31944 113755|0.5 113756|0.77778 113757|0.38889 113758|0.61111 113759|0.083333 113760|0.72222 113761|0.51389 113762|0.86111 113763|0.5 113764|0.69444 113765|0.43056 113766|0.5 113767|0.63889 113768|0.125 113769|0.5 113770|0.56944 113771|0.69444 113772|0.70833 113773|0.43056 113774|0.51389 113775|0.58333 113776|0.51389 113777|0.5 113778|0.51389 113779|0.48611 113780|0.55556 113781|0.69444 113782|0.59722 113783|0.81944 113784|0.54167 113785|0.44444 113786|0.77778 113787|0.44444 113788|0.43056 113789|0.47222 113790|0.72222 113791|0.72222 113792|0.69444 113793|0.5 113794|0.5 113795|0.34722 113796|0.61111 113797|0.52778 113798|0.52778 113799|0.61111 113800|0.81944 113801|0.875 113802|0.93056 113803|0.72222 113804|0.47222 113805|0.80556 113806|0.54167 113807|0.72222 113808|0.61111 113809|0.88889 113810|0.73611 113811|0.625 113812|0.77778 113813|0.59722 113814|0.31944 113815|0.47222 113816|0.63889 113817|0.5 113818|0.625 113819|0.38889 113820|0.43056 113821|0.66667 113822|0.5 113823|0.29167 113824|0.48611 113825|0.47222 113826|0.41667 113827|0.45833 113828|0.58333 113829|0.58333 113830|0.68056 113831|0.44444 113832|0.44444 113833|0.59722 113834|0.51389 113835|0.63889 113836|0.625 113837|0.54167 113838|0.75 113839|0.80556 113840|0.93056 113841|0.73611 113842|0.83333 113843|0.65278 113844|0.75 113845|0.61111 113846|0.83333 113847|0.20833 113848|0.76389 113849|0.55556 113850|0.56944 113851|0.59722 113852|0.33333 113853|0.66667 113854|0.70833 113855|0.58333 113856|0.5 113857|0.44444 113858|0.69444 113859|0.31944 113860|0.51389 113861|0.55556 113862|0.61111 113863|0.54167 113864|0.5 113865|0.38889 113866|0.5 113867|0.5 113868|0.44444 113869|0.61111 113870|0.36111 113871|0.38889 113872|0.45833 113873|0.93056 113874|0.83333 113875|0.73611 113876|0.83333 113877|0.41667 113878|0.73611 113879|0.5 113880|0.73611 113881|0.30556 113882|0.70833 113883|0.5 113884|0.56944 113885|0.55556 113886|0.73611 113887|0.51389 113888|0.5 113889|0.65278 113890|0.66667 113891|0.55556 113892|0.58333 113893|0.40278 113894|0.68056 113895|0.83333 113896|0.93056 113897|0.77778 113898|0.76389 113899|0.72222 113900|0.77778 113901|0.66667 113902|0.56944 113903|0.76389 113904|0.44444 113905|0.51389 113906|0.76389 113907|0.84722 113908|0.88889 113909|0.61111 113910|0.61111 113911|0.5 113912|0.55556 113913|0.70833 113914|0.76389 113915|0.54167 113916|0.5 113917|0.625 113918|0.625 113919|0.44444 113920|0.58333 113921|0.625 113922|0.5 113923|0.58333 113924|0.73611 113925|0.5 113926|0.70833 113927|0.76389 113928|0.73611 113929|0.77778 113930|0.5 113931|0.625 113932|0.54167 113933|0.47222 113934|0.5 113935|0.47222 113936|0.54167 113937|0.36111 113938|0.5 113939|0.59722 113940|0.5 113941|0.52778 113942|0.44444 113943|0.5 113944|0.94444 113945|0.55556 113946|0.45833 113947|0.47222 113948|0.41667 113949|0.40278 113950|0.47222 113951|0.76389 113952|0.68056 113953|0.54167 113954|0.36111 113955|0.36111 113956|0.5 113957|0.76389 113958|0.48611 113959|0.56944 113960|0.45833 113961|0.40278 113962|0.65278 113963|0.68056 113964|0.83333 113965|0.43056 113966|0.56944 113967|0.30556 113968|0.27778 113969|0.54167 113970|0.52778 113971|0.66667 113972|0.52778 113973|0.625 113974|0.52778 113975|0.5 113976|0.65278 113977|0.5 113978|0.5 113979|0.63889 113980|0.86111 113981|0.84722 113982|0.76389 113983|0.69444 113984|0.77778 113985|0.5 113986|0.5 113987|0.52778 113988|0.66667 113989|0.70833 113990|0.47222 113991|0.59722 113992|0.83333 113993|0.86111 113994|0.81944 113995|0.69444 113996|0.79167 113997|0.84722 113998|0.75 113999|0.80556 114000|0.44444 114001|0.65278 114002|0.75 114003|0.61111 114004|0.66667 114005|0.81944 114006|0.5 114007|0.44444 114008|0.38889 114009|0.38889 114010|0.66667 114011|0.66667 114012|0.51389 114013|0.81944 114014|0.5 114015|0.45833 114016|0.76389 114017|0.61111 114018|0.43056 114019|0.5 114020|0.63889 114021|0.79167 114022|0.48611 114023|0.84722 114024|0.68056 114025|0.86111 114026|0.81944 114027|0.79167 114028|0.54167 114029|0.875 114030|0.77778 114031|0.16667 114032|0.83333 114033|0.59722 114034|0.83333 114035|0.5 114036|0.33333 114037|0.80556 114038|0.83333 114039|0.47222 114040|0.11111 114041|0.52778 114042|0.77778 114043|0.69444 114044|0.48611 114045|0.25 114046|0.61111 114047|0.63889 114048|0.83333 114049|0.83333 114050|0.58333 114051|0.77778 114052|0.77778 114053|0.5 114054|0.875 114055|0.72222 114056|0.69444 114057|0.625 114058|0.66667 114059|0.75 114060|0.48611 114061|0.65278 114062|0.47222 114063|0.56944 114064|0.52778 114065|0.375 114066|0.5 114067|0.55556 114068|0.81944 114069|0.75 114070|0.58333 114071|0.70833 114072|0.61111 114073|0.5 114074|0.83333 114075|0.90278 114076|0.80556 114077|0.81944 114078|0.56944 114079|0.73611 114080|0.38889 114081|0.68056 114082|0.51389 114083|0.40278 114084|0.44444 114085|0.055556 114086|0.61111 114087|0.81944 114088|0.77778 114089|0.76389 114090|0.72222 114091|0.66667 114092|0.83333 114093|0.69444 114094|0.68056 114095|0.66667 114096|0.65278 114097|0.72222 114098|0.70833 114099|0.83333 114100|0.77778 114101|0.41667 114102|0.66667 114103|0.5 114104|0.72222 114105|0.79167 114106|0.56944 114107|0.44444 114108|0.83333 114109|0.625 114110|0.76389 114111|0.51389 114112|0.51389 114113|0.68056 114114|0.70833 114115|0.76389 114116|0.72222 114117|0.375 114118|0.43056 114119|0.51389 114120|0.44444 114121|0.48611 114122|0.375 114123|0.59722 114124|0.38889 114125|0.5 114126|0.44444 114127|0.47222 114128|0.375 114129|0.45833 114130|0.38889 114131|0.22222 114132|0.375 114133|0.72222 114134|0.75 114135|0.73611 114136|0.75 114137|0.55556 114138|0.375 114139|0.44444 114140|0.5 114141|0.66667 114142|0.56944 114143|0.72222 114144|0.47222 114145|0.38889 114146|0.77778 114147|0.40278 114148|0.47222 114149|0.56944 114150|0.45833 114151|0.36111 114152|0.34722 114153|0.48611 114154|0.26389 114155|0.55556 114156|0.63889 114157|0.55556 114158|0.48611 114159|0.41667 114160|0.54167 114161|0.375 114162|0.34722 114163|0.375 114164|0.55556 114165|0.48611 114166|0.56944 114167|0.36111 114168|0.55556 114169|0.54167 114170|0.52778 114171|0.43056 114172|0.25 114173|0.40278 114174|0.5 114175|0.47222 114176|0.41667 114177|0.40278 114178|0.45833 114179|0.43056 114180|0.5 114181|0.40278 114182|0.36111 114183|0.375 114184|0.33333 114185|0.72222 114186|0.875 114187|0.56944 114188|0.47222 114189|0.61111 114190|0.40278 114191|0.5 114192|0.55556 114193|0.63889 114194|0.77778 114195|0.59722 114196|0.63889 114197|0.5 114198|0.44444 114199|0.34722 114200|0.76389 114201|0.36111 114202|0.61111 114203|0.11111 114204|0.44444 114205|0.5 114206|0.56944 114207|0.5 114208|0.5 114209|0.5 114210|0.5 114211|0.5 114212|0.5 114213|0.34722 114214|0.5 114215|0.11111 114216|0.58333 114217|0.58333 114218|0.56944 114219|0.47222 114220|0.43056 114221|0.41667 114222|0.5 114223|0.51389 114224|0.40278 114225|0.5 114226|0.52778 114227|0.63889 114228|0.47222 114229|0.20833 114230|0.18056 114231|0.5 114232|0.55556 114233|0.625 114234|0.55556 114235|0.75 114236|0.58333 114237|0.81944 114238|0.55556 114239|0.55556 114240|0.55556 114241|0.68056 114242|0.5 114243|0.77778 114244|0.65278 114245|0.72222 114246|0.61111 114247|0.54167 114248|0.58333 114249|0.54167 114250|0.68056 114251|0.40278 114252|0.5 114253|0.38889 114254|0.72222 114255|0.59722 114256|0.5 114257|0.625 114258|0.5 114259|0.51389 114260|0.44444 114261|0.66667 114262|0.33333 114263|0.66667 114264|0.66667 114265|0.30556 114266|0.5 114267|0.5 114268|0.5 114269|0.54167 114270|0.61111 114271|0.5 114272|0.43056 114273|0.5 114274|0.43056 114275|0.38889 114276|0.5 114277|0.61111 114278|0.44444 114279|0.5 114280|0.44444 114281|0.58333 114282|0.38889 114283|0.52778 114284|0.88889 114285|0.34722 114286|0.51389 114287|0.22222 114288|0.61111 114289|0.65278 114290|0.43056 114291|0.875 114292|0.61111 114293|0.63889 114294|0.40278 114295|0.54167 114296|0.38889 114297|0.38889 114298|0.33333 114299|0.47222 114300|0.47222 114301|0.23611 114302|0.5 114303|0.59722 114304|0.54167 114305|0.5 114306|0.56944 114307|0.5 114308|0.72222 114309|0.5 114310|0.33333 114311|0.5 114312|0.5 114313|0.61111 114314|0.59722 114315|0.33333 114316|0.34722 114317|0.47222 114318|0.25 114319|0.27778 114320|0.52778 114321|0.625 114322|0.5 114323|0.5 114324|0.5 114325|0.5 114326|0.52778 114327|0.5 114328|0.52778 114329|0.069444 114330|0.41667 114331|0.22222 114332|0.069444 114333|0.5 114334|0.44444 114335|0.5 114336|0.54167 114337|0.61111 114338|0.5 114339|0.5 114340|0.5 114341|0.58333 114342|0.47222 114343|0.29167 114344|0.5 114345|0.5 114346|0.25 114347|0.33333 114348|0.5 114349|0.58333 114350|0.43056 114351|0.51389 114352|0.48611 114353|0.23611 114354|0.44444 114355|0.52778 114356|0.63889 114357|0.52778 114358|0.48611 114359|0.11111 114360|0.5 114361|0.61111 114362|0.58333 114363|0.55556 114364|0.47222 114365|0.61111 114366|0.51389 114367|0.45833 114368|0.5 114369|0.375 114370|0.52778 114371|0.54167 114372|0.5 114373|0.20833 114374|0.43056 114375|0.58333 114376|0.44444 114377|0.5 114378|0.38889 114379|0.22222 114380|0.5 114381|0.5 114382|0.26389 114383|0.5 114384|0.38889 114385|0.63889 114386|0.40278 114387|0.5 114388|0.055556 114389|0.44444 114390|0.68056 114391|0.61111 114392|0.77778 114393|0.55556 114394|0.56944 114395|0.5 114396|0.5 114397|0.47222 114398|0.36111 114399|0.5 114400|0.5 114401|0.625 114402|0.44444 114403|0.5 114404|0.41667 114405|0.5 114406|0.61111 114407|0.5 114408|0.80556 114409|0.34722 114410|0.45833 114411|0.5 114412|0.33333 114413|0.5 114414|0.56944 114415|0.38889 114416|0.5 114417|0.38889 114418|0.5 114419|0.5 114420|0.40278 114421|0.5 114422|0.5 114423|0.5 114424|0.5 114425|0.33333 114426|0.51389 114427|0.52778 114428|0.5 114429|0.625 114430|0.51389 114431|0.5 114432|0.56944 114433|0.625 114434|0.15278 114435|0.44444 114436|0.65278 114437|0.75 114438|0.27778 114439|0.51389 114440|0.54167 114441|0.5 114442|0.47222 114443|0.34722 114444|0.43056 114445|0.47222 114446|0.51389 114447|0.75 114448|0.31944 114449|0.65278 114450|0.5 114451|0.47222 114452|0.25 114453|0.5 114454|0.5 114455|0.625 114456|0.375 114457|0.48611 114458|0.52778 114459|0.51389 114460|0.5 114461|0.56944 114462|0.48611 114463|0.54167 114464|0.54167 114465|0.5 114466|0.27778 114467|0.5 114468|0.44444 114469|0.5 114470|0.625 114471|0.59722 114472|0.66667 114473|0.43056 114474|0.51389 114475|0.5 114476|0.48611 114477|0.56944 114478|0.16667 114479|0.38889 114480|0.27778 114481|0.097222 114482|0.055556 114483|0.083333 114484|0.56944 114485|0.18056 114486|0.51389 114487|0.68056 114488|0.56944 114489|0.65278 114490|0.625 114491|0.58333 114492|0.54167 114493|0.43056 114494|0.63889 114495|0.66667 114496|0.61111 114497|0.20833 114498|0.34722 114499|0.51389 114500|0.52778 114501|0.5 114502|0.47222 114503|0.5 114504|0.43056 114505|0.30556 114506|0.25 114507|0.5 114508|0.5 114509|0.59722 114510|0.63889 114511|0.52778 114512|0.75 114513|0.51389 114514|0.52778 114515|0.83333 114516|0.5 114517|0.5 114518|0.5 114519|0.11111 114520|0.097222 114521|0.72222 114522|0.47222 114523|0.54167 114524|0.47222 114525|0.5 114526|0.44444 114527|0.5 114528|0.51389 114529|0.72222 114530|0.5 114531|0.76389 114532|0.43056 114533|0.5 114534|0.40278 114535|0.63889 114536|0.61111 114537|0.65278 114538|0.48611 114539|0.5 114540|0.69444 114541|0.72222 114542|0.36111 114543|0.40278 114544|0.5 114545|0.5 114546|0.76389 114547|0.75 114548|0.875 114549|0.36111 114550|0.36111 114551|0.36111 114552|0.5 114553|0.5 114554|0.34722 114555|0.69444 114556|0.72222 114557|0.48611 114558|0.51389 114559|0.44444 114560|0.56944 114561|0.36111 114562|0.59722 114563|0.44444 114564|0.38889 114565|0.54167 114566|0.31944 114567|0.63889 114568|0.72222 114569|0.51389 114570|0.625 114571|0.51389 114572|0.52778 114573|0.52778 114574|0.45833 114575|0.55556 114576|0.31944 114577|0.31944 114578|0.65278 114579|0.41667 114580|0.43056 114581|0.80556 114582|0.30556 114583|0.61111 114584|0.63889 114585|0.41667 114586|0.66667 114587|0.76389 114588|0.75 114589|0.22222 114590|0.26389 114591|0.81944 114592|0.65278 114593|0.625 114594|0.72222 114595|0.56944 114596|0.73611 114597|0.63889 114598|0.73611 114599|0.54167 114600|0.88889 114601|0.5 114602|0.70833 114603|0.5 114604|0.45833 114605|0.63889 114606|0.61111 114607|0.72222 114608|0.75 114609|0.77778 114610|0.41667 114611|0.29167 114612|0.30556 114613|0.47222 114614|0.30556 114615|0.16667 114616|0.43056 114617|0.29167 114618|0.51389 114619|0.55556 114620|0.5 114621|0.5 114622|0.40278 114623|0.40278 114624|0.33333 114625|0.33333 114626|0.25 114627|0.54167 114628|0.45833 114629|0.5 114630|0.29167 114631|0.20833 114632|0.5 114633|0.5 114634|0.63889 114635|0.65278 114636|0.5 114637|0.26389 114638|0.20833 114639|0.25 114640|0.27778 114641|0.41667 114642|0.29167 114643|0.81944 114644|0.625 114645|0.69444 114646|0.68056 114647|0.51389 114648|0.44444 114649|0.33333 114650|0.36111 114651|0.5 114652|0.33333 114653|0.68056 114654|0.77778 114655|0.69444 114656|0.80556 114657|0.36111 114658|0.083333 114659|0.79167 114660|0.5 114661|0.36111 114662|0.43056 114663|0.75 114664|0.5 114665|0.61111 114666|0.63889 114667|0.16667 114668|0.33333 114669|0.5 114670|0.38889 114671|0.54167 114672|0.56944 114673|0.73611 114674|0.72222 114675|0.77778 114676|0.29167 114677|0.5 114678|0.81944 114679|0.88889 114680|0.625 114681|0.55556 114682|0.68056 114683|0.61111 114684|0.625 114685|0.58333 114686|0.68056 114687|0.73611 114688|0.43056 114689|0.43056 114690|0.52778 114691|0.375 114692|0.5 114693|0.76389 114694|0.52778 114695|0.69444 114696|0.34722 114697|0.25 114698|0.36111 114699|0.18056 114700|0.25 114701|0.18056 114702|0.22222 114703|0.65278 114704|0.61111 114705|0.45833 114706|0.41667 114707|0.55556 114708|0.33333 114709|0.83333 114710|0.73611 114711|0.055556 114712|0.11111 114713|0.70833 114714|0.70833 114715|0.5 114716|0.48611 114717|0.52778 114718|0.63889 114719|0.79167 114720|0.77778 114721|0.375 114722|0.51389 114723|0.66667 114724|0.30556 114725|0.47222 114726|0.59722 114727|0.5 114728|0.58333 114729|0.66667 114730|0.43056 114731|0.5 114732|0.43056 114733|0.48611 114734|0.5 114735|0.56944 114736|0.5 114737|0.5 114738|0.44444 114739|0.54167 114740|0.5 114741|0.45833 114742|0.5 114743|0.69444 114744|0.66667 114745|0.40278 114746|0.54167 114747|0.5 114748|0.5 114749|0.61111 114750|0.52778 114751|0.5 114752|0.5 114753|0.33333 114754|0.52778 114755|0.58333 114756|0.5 114757|0.63889 114758|0.52778 114759|0.51389 114760|0.5 114761|0.44444 114762|0.20833 114763|0.54167 114764|0.38889 114765|0.38889 114766|0.55556 114767|0.5 114768|0.5 114769|0.56944 114770|0.80556 114771|0.63889 114772|0.72222 114773|0.61111 114774|0.36111 114775|0.5 114776|0.34722 114777|0.47222 114778|0.5 114779|0.52778 114780|0.5 114781|0.5 114782|0.61111 114783|0.5 114784|0.5 114785|0.5 114786|0.5 114787|0.61111 114788|0.5 114789|0.61111 114790|0.5 114791|0.47222 114792|0.59722 114793|0.54167 114794|0.5 114795|0.70833 114796|0.5 114797|0.26389 114798|0.5 114799|0.5 114800|0.40278 114801|0.52778 114802|0.30556 114803|0.69444 114804|0.70833 114805|0.48611 114806|0.29167 114807|0.31944 114808|0.45833 114809|0.58333 114810|0.65278 114811|0.36111 114812|0.27778 114813|0.70833 114814|0.5 114815|0.56944 114816|0.59722 114817|0.38889 114818|0.375 114819|0.5 114820|0.375 114821|0.5 114822|0.75 114823|0.44444 114824|0.65278 114825|0.40278 114826|0.38889 114827|0.61111 114828|0.77778 114829|0.31944 114830|0.58333 114831|0.33333 114832|0.375 114833|0.65278 114834|0.48611 114835|0.34722 114836|0.58333 114837|0.5 114838|0.56944 114839|0.5 114840|0.38889 114841|0.45833 114842|0.51389 114843|0.61111 114844|0.16667 114845|0.51389 114846|0.54167 114847|0.52778 114848|0.54167 114849|0.5 114850|0.38889 114851|0.56944 114852|0.90278 114853|0.5 114854|0.51389 114855|0.44444 114856|0.375 114857|0.68056 114858|0.47222 114859|0.41667 114860|0.40278 114861|0.375 114862|0.5 114863|0.5 114864|0.44444 114865|0.38889 114866|0.26389 114867|0.75 114868|0.66667 114869|0.73611 114870|0.72222 114871|0.79167 114872|0.80556 114873|0.76389 114874|0.77778 114875|0.81944 114876|0.83333 114877|0.48611 114878|0.38889 114879|0.45833 114880|0.58333 114881|0.65278 114882|0.5 114883|0.59722 114884|0.55556 114885|0.40278 114886|0.31944 114887|0.5 114888|0.55556 114889|0.65278 114890|0.79167 114891|0.41667 114892|0.65278 114893|0.44444 114894|0.48611 114895|0.5 114896|0.58333 114897|0.31944 114898|0.27778 114899|0.59722 114900|0.5 114901|0.56944 114902|0.81944 114903|0.51389 114904|0.61111 114905|0.69444 114906|0.65278 114907|0.5 114908|0.75 114909|0.29167 114910|0.75 114911|0.63889 114912|0.44444 114913|0.56944 114914|0.61111 114915|0.43056 114916|0.47222 114917|0.56944 114918|0.52778 114919|0.59722 114920|0.51389 114921|0.61111 114922|0.47222 114923|0.59722 114924|0.55556 114925|0.30556 114926|0.5 114927|0.625 114928|0.68056 114929|0.38889 114930|0.58333 114931|0.61111 114932|0.58333 114933|0.81944 114934|0.625 114935|0.69444 114936|0.54167 114937|0.72222 114938|0.59722 114939|0.41667 114940|0.56944 114941|0.45833 114942|0.5 114943|0.5 114944|0.58333 114945|0.38889 114946|0.58333 114947|0.5 114948|0.20833 114949|0.73611 114950|0.55556 114951|0.625 114952|0.58333 114953|0.79167 114954|0.58333 114955|0.51389 114956|0.5 114957|0.52778 114958|0.43056 114959|0.68056 114960|0.52778 114961|0.5 114962|0.58333 114963|0.5 114964|0.5 114965|0.5 114966|0.61111 114967|0.5 114968|0.5 114969|0.38889 114970|0.5 114971|0.69444 114972|0.44444 114973|0.61111 114974|0.58333 114975|0.58333 114976|0.77778 114977|0.63889 114978|0.5 114979|0.58333 114980|0.5 114981|0.48611 114982|0.58333 114983|0.26389 114984|0.81944 114985|0.77778 114986|0.5 114987|0.79167 114988|0.44444 114989|0.23611 114990|0.5 114991|0.58333 114992|0.36111 114993|0.55556 114994|0.27778 114995|0.19444 114996|0.73611 114997|0.77778 114998|0.5 114999|0.90278 115000|0.80556 115001|0.72222 115002|0.56944 115003|0.375 115004|0.5 115005|0.77778 115006|0.76389 115007|0.44444 115008|0.65278 115009|0.41667 115010|0.375 115011|0.44444 115012|0.11111 115013|0.40278 115014|0.77778 115015|0.77778 115016|0.625 115017|0.51389 115018|0.013889 115019|0.54167 115020|0.72222 115021|0.76389 115022|0.61111 115023|0.61111 115024|0.5 115025|0.77778 115026|0.58333 115027|0.41667 115028|0.65278 115029|0.52778 115030|0.5 115031|0.83333 115032|0.52778 115033|0.54167 115034|0.55556 115035|0.47222 115036|0.47222 115037|0.41667 115038|0.54167 115039|0.66667 115040|0.93056 115041|0.16667 115042|0.41667 115043|0.55556 115044|0.5 115045|0.33333 115046|0.5 115047|0.30556 115048|0.52778 115049|0.84722 115050|0.54167 115051|0.5 115052|0.19444 115053|0.47222 115054|0.63889 115055|0.47222 115056|0.59722 115057|0.58333 115058|0.52778 115059|0.27778 115060|0.5 115061|0.43056 115062|0.5 115063|0.5 115064|0.45833 115065|0.84722 115066|0.47222 115067|0.36111 115068|0.30556 115069|0.44444 115070|0.5 115071|0.27778 115072|0.56944 115073|0.40278 115074|0.30556 115075|0.20833 115076|0.58333 115077|0.45833 115078|0.51389 115079|0.5 115080|0.59722 115081|0.44444 115082|0.69444 115083|0.72222 115084|0.69444 115085|0.76389 115086|0.83333 115087|0.45833 115088|0.40278 115089|0.66667 115090|0.5 115091|0.54167 115092|0.44444 115093|0.40278 115094|0.5 115095|0.38889 115096|0.61111 115097|0.51389 115098|0.5 115099|0.5 115100|0.68056 115101|0.69444 115102|0.73611 115103|0.65278 115104|0.51389 115105|0.48611 115106|0.5 115107|0.34722 115108|0.41667 115109|0.61111 115110|0.65278 115111|0.48611 115112|0.29167 115113|0.13889 115114|0.625 115115|0.83333 115116|0.63889 115117|0.84722 115118|0.84722 115119|0.55556 115120|0.55556 115121|0.44444 115122|0.5 115123|0.5 115124|0.375 115125|0.375 115126|0.55556 115127|0.23611 115128|0.54167 115129|0.79167 115130|0.76389 115131|0.625 115132|0.58333 115133|0.20833 115134|0.56944 115135|0.58333 115136|0.77778 115137|0.65278 115138|0.45833 115139|0.69444 115140|0.5 115141|0.58333 115142|0.27778 115143|0.40278 115144|0.48611 115145|0.47222 115146|0.63889 115147|0.63889 115148|0.26389 115149|0.5 115150|0.20833 115151|0.40278 115152|0.44444 115153|0.5 115154|0.43056 115155|0.5 115156|0.5 115157|0.61111 115158|0.5 115159|0.73611 115160|0.375 115161|0.54167 115162|0.55556 115163|0.5 115164|0.75 115165|0.5 115166|0.69444 115167|0.5 115168|0.26389 115169|0.55556 115170|0.40278 115171|0.5 115172|0.125 115173|0.5 115174|0.59722 115175|0.5 115176|0.5 115177|0.5 115178|0.5 115179|0.43056 115180|0.58333 115181|0.77778 115182|0.68056 115183|0.69444 115184|0.47222 115185|0.47222 115186|0.51389 115187|0.38889 115188|0.5 115189|0.5 115190|0.56944 115191|0.58333 115192|0.43056 115193|0.5 115194|0.5 115195|0.5 115196|0.66667 115197|0.58333 115198|0.40278 115199|0.61111 115200|0.54167 115201|0.5 115202|0.5 115203|0.51389 115204|0.51389 115205|0.5 115206|0.38889 115207|0.5 115208|0.5 115209|0.44444 115210|0.5 115211|0.625 115212|0.52778 115213|0.56944 115214|0.5 115215|0.30556 115216|0.5 115217|0.59722 115218|0.33333 115219|0.47222 115220|0.5 115221|0.5 115222|0.5 115223|0.48611 115224|0.125 115225|0.68056 115226|0.5 115227|0.55556 115228|0.59722 115229|0.36111 115230|0.63889 115231|0.5 115232|0.48611 115233|0.44444 115234|0.55556 115235|0.41667 115236|0.55556 115237|0.61111 115238|0.625 115239|0.54167 115240|0.45833 115241|0.44444 115242|0.61111 115243|0.58333 115244|0.375 115245|0.027778 115246|0.22222 115247|0.5 115248|0.52778 115249|0.54167 115250|0.55556 115251|0.52778 115252|0.52778 115253|0.59722 115254|0.68056 115255|0.68056 115256|0.61111 115257|0.625 115258|0.48611 115259|0.55556 115260|0.61111 115261|0.5 115262|0.63889 115263|0.63889 115264|0.097222 115265|0.58333 115266|0.5 115267|0.77778 115268|0.5 115269|0.47222 115270|0.73611 115271|0.375 115272|0.51389 115273|0.5 115274|0.33333 115275|0.59722 115276|0.5 115277|0.47222 115278|0.55556 115279|0.5 115280|0.43056 115281|0.44444 115282|0.097222 115283|0.58333 115284|0.29167 115285|0.375 115286|0.66667 115287|0.59722 115288|0.61111 115289|0.77778 115290|0.625 115291|0.68056 115292|0.61111 115293|0.94444 115294|0.34722 115295|0.11111 115296|0.69444 115297|0.5 115298|0.51389 115299|0.27778 115300|0.65278 115301|0.5 115302|0.5 115303|0.47222 115304|0.40278 115305|0.55556 115306|0.5 115307|0.55556 115308|0.43056 115309|0.52778 115310|0.5 115311|0.68056 115312|0.52778 115313|0.70833 115314|0.51389 115315|0.79167 115316|0.61111 115317|0.5 115318|0.61111 115319|0.5 115320|0.45833 115321|0.5 115322|0.63889 115323|0.5 115324|0.22222 115325|0.29167 115326|0.22222 115327|0.38889 115328|0.125 115329|0.069444 115330|0.16667 115331|0.41667 115332|0.041667 115333|0.097222 115334|0.40278 115335|0.5 115336|0.13889 115337|0.30556 115338|0.26389 115339|0.38889 115340|0.25 115341|0.36111 115342|0.27778 115343|0.29167 115344|0.25 115345|0.34722 115346|0.13889 115347|0.38889 115348|0.069444 115349|0.44444 115350|0.15278 115351|0.18056 115352|0.25 115353|0.41667 115354|0.48611 115355|0.33333 115356|0.27778 115357|0.47222 115358|0.5 115359|0.58333 115360|0.5 115361|0.5 115362|0.54167 115363|0.58333 115364|0.51389 115365|0.5 115366|0.5 115367|0.31944 115368|0.33333 115369|0.45833 115370|0.23611 115371|0.43056 115372|0.27778 115373|0.33333 115374|0.51389 115375|0.29167 115376|0.13889 115377|0.125 115378|0.29167 115379|0 115380|0.027778 115381|0.5 115382|0.63889 115383|0.79167 115384|0.41667 115385|0.33333 115386|0.44444 115387|0.65278 115388|0.56944 115389|0.51389 115390|0.45833 115391|0.27778 115392|0.34722 115393|0.38889 115394|0.30556 115395|0.29167 115396|0.43056 115397|0.11111 115398|0.27778 115399|0.375 115400|0.22222 115401|0.26389 115402|0.20833 115403|0.41667 115404|0.33333 115405|0.25 115406|0.55556 115407|0.55556 115408|0.31944 115409|0.27778 115410|0.5 115411|0.44444 115412|0.5 115413|0.48611 115414|0.58333 115415|0.48611 115416|0.43056 115417|0.33333 115418|0.43056 115419|0.63889 115420|0.59722 115421|0.48611 115422|0.5 115423|0.5 115424|0.63889 115425|0.58333 115426|0.5 115427|0.5 115428|0.52778 115429|0.44444 115430|0.40278 115431|0.48611 115432|0.41667 115433|0.5 115434|0.5 115435|0.5 115436|0.44444 115437|0.45833 115438|0.55556 115439|0.52778 115440|0.33333 115441|0.84722 115442|0.40278 115443|0.52778 115444|0.66667 115445|0.59722 115446|0.44444 115447|0.54167 115448|0.5 115449|0.625 115450|0.55556 115451|0.25 115452|0.76389 115453|0.51389 115454|0.91667 115455|0.5 115456|0.56944 115457|0.56944 115458|0.58333 115459|0.61111 115460|0.68056 115461|0.19444 115462|0.31944 115463|0.36111 115464|0.5 115465|0.59722 115466|0.73611 115467|0.58333 115468|0.47222 115469|0.59722 115470|0.5 115471|0.70833 115472|0.38889 115473|0.61111 115474|0.48611 115475|0.69444 115476|0.65278 115477|0.73611 115478|0.875 115479|0.63889 115480|0.31944 115481|0.38889 115482|0.23611 115483|0.66667 115484|0.36111 115485|0.48611 115486|0.44444 115487|0.23611 115488|0.56944 115489|0.52778 115490|0.56944 115491|0.5 115492|0.5 115493|0.63889 115494|0.61111 115495|0.54167 115496|0.66667 115497|0.65278 115498|0.29167 115499|0.55556 115500|0.25 115501|0.5 115502|0.44444 115503|0.61111 115504|0.59722 115505|0.45833 115506|0.54167 115507|0.66667 115508|0.23611 115509|0.70833 115510|0.58333 115511|0.47222 115512|0.375 115513|0.16667 115514|0.18056 115515|0.5 115516|0.43056 115517|0.15278 115518|0.5 115519|0.16667 115520|0.61111 115521|0.36111 115522|0.66667 115523|0.55556 115524|0.55556 115525|0.33333 115526|0.5 115527|0.5 115528|0.63889 115529|0.13889 115530|0.13889 115531|0.45833 115532|0.5 115533|0.44444 115534|0.38889 115535|0.375 115536|0.54167 115537|0.61111 115538|0.44444 115539|0.5 115540|0.51389 115541|0.375 115542|0.33333 115543|0.41667 115544|0.11111 115545|0.34722 115546|0.27778 115547|0.40278 115548|0.52778 115549|0.72222 115550|0.59722 115551|0.75 115552|0.5 115553|0.75 115554|0.15278 115555|0.58333 115556|0.38889 115557|0.73611 115558|0.43056 115559|0.23611 115560|0.625 115561|0.51389 115562|0.45833 115563|0.56944 115564|0.51389 115565|0.875 115566|0.51389 115567|0.65278 115568|0.38889 115569|0.38889 115570|0.22222 115571|0.47222 115572|0.31944 115573|0.69444 115574|0.58333 115575|0.41667 115576|0.38889 115577|0.48611 115578|0.38889 115579|0.40278 115580|0.5 115581|0.55556 115582|0.51389 115583|0.65278 115584|0.5 115585|0.66667 115586|0.5 115587|0.58333 115588|0.70833 115589|0.70833 115590|0.27778 115591|0.47222 115592|0.48611 115593|0.5 115594|0.65278 115595|0.5 115596|0.55556 115597|0.54167 115598|0.11111 115599|0.43056 115600|0.61111 115601|0.20833 115602|0.069444 115603|0.51389 115604|0.83333 115605|0.47222 115606|0.31944 115607|0.43056 115608|0.58333 115609|0.61111 115610|0.70833 115611|0.81944 115612|0.66667 115613|0.59722 115614|0.52778 115615|0.47222 115616|0.88889 115617|0.70833 115618|0.86111 115619|0.72222 115620|0.61111 115621|0.75 115622|0.33333 115623|0.5 115624|0.55556 115625|0.44444 115626|0.44444 115627|0.77778 115628|0.45833 115629|0.51389 115630|0.5 115631|0.5 115632|0.40278 115633|0.63889 115634|0.5 115635|0.5 115636|0.70833 115637|0.44444 115638|0.5 115639|0.47222 115640|0.41667 115641|0.44444 115642|0.54167 115643|0.625 115644|0.61111 115645|0.52778 115646|0.47222 115647|0.38889 115648|0.61111 115649|0.36111 115650|0.36111 115651|0.61111 115652|0.66667 115653|0.875 115654|0.83333 115655|0.68056 115656|0.80556 115657|0.77778 115658|0.76389 115659|0.58333 115660|0.5 115661|0.5 115662|0.56944 115663|0.69444 115664|0.44444 115665|0.58333 115666|0.5 115667|0.69444 115668|0.77778 115669|0.5 115670|0.51389 115671|0.5 115672|0.58333 115673|0.48611 115674|0.18056 115675|0.5 115676|0.55556 115677|0.48611 115678|0.083333 115679|0.73611 115680|0.30556 115681|0.66667 115682|0.375 115683|0.73611 115684|0.72222 115685|0.61111 115686|0.61111 115687|0.56944 115688|0.63889 115689|0.15278 115690|0.44444 115691|0.23611 115692|0.83333 115693|0.54167 115694|0.54167 115695|0.72222 115696|0.55556 115697|0.47222 115698|0.63889 115699|0.27778 115700|0.25 115701|0.79167 115702|0.33333 115703|0.25 115704|0.38889 115705|0.34722 115706|0.26389 115707|0.18056 115708|0.27778 115709|0.29167 115710|0.18056 115711|0.013889 115712|0.55556 115713|0.33333 115714|0.56944 115715|0.77778 115716|0.52778 115717|0.47222 115718|0.375 115719|0.5 115720|0.5 115721|0.52778 115722|0.44444 115723|0.5 115724|0.625 115725|0.5 115726|0.5 115727|0.41667 115728|0.27778 115729|0.48611 115730|0.5 115731|0.63889 115732|0.45833 115733|0.23611 115734|0.36111 115735|0.63889 115736|0.45833 115737|0.83333 115738|0.43056 115739|0.30556 115740|0.48611 115741|0.73611 115742|0.61111 115743|0.56944 115744|0.27778 115745|0.19444 115746|0.041667 115747|0.43056 115748|0.47222 115749|0.55556 115750|0.48611 115751|0.083333 115752|0.5 115753|0.15278 115754|0.47222 115755|0.23611 115756|0.41667 115757|0.5 115758|0.69444 115759|0.55556 115760|0.52778 115761|0.30556 115762|0.5 115763|0.61111 115764|0.51389 115765|0.55556 115766|0.45833 115767|0.66667 115768|0.5 115769|0.66667 115770|0.40278 115771|0.63889 115772|0.47222 115773|0.5 115774|0.5 115775|0.48611 115776|0.5 115777|0.38889 115778|0.63889 115779|0.27778 115780|0.45833 115781|0.63889 115782|0.56944 115783|0.51389 115784|0.38889 115785|0.5 115786|0.5 115787|0.055556 115788|0.5 115789|0.33333 115790|0.70833 115791|0.84722 115792|0.54167 115793|0.41667 115794|0.36111 115795|0.44444 115796|0.34722 115797|0.19444 115798|0.19444 115799|0.27778 115800|0.66667 115801|0.61111 115802|0.5 115803|0.55556 115804|0.73611 115805|0.88889 115806|0.47222 115807|0.43056 115808|0.56944 115809|0.70833 115810|0.5 115811|0.625 115812|0.5 115813|0.23611 115814|0.5 115815|0.54167 115816|0.76389 115817|0.5 115818|0.48611 115819|0.30556 115820|0.30556 115821|0.48611 115822|0.80556 115823|0.5 115824|0.51389 115825|0.61111 115826|0.63889 115827|0.58333 115828|0.41667 115829|0.27778 115830|0.38889 115831|0.47222 115832|0.375 115833|0.36111 115834|0.13889 115835|0.63889 115836|0.22222 115837|0.19444 115838|0.30556 115839|0.31944 115840|0.40278 115841|0.5 115842|0.41667 115843|0.77778 115844|0.5 115845|0.56944 115846|0.59722 115847|0.43056 115848|0.56944 115849|0.30556 115850|0.38889 115851|0.20833 115852|0.55556 115853|0.48611 115854|0.5 115855|0.5 115856|0.5 115857|0.72222 115858|0.65278 115859|0.40278 115860|0.23611 115861|0.77778 115862|0.63889 115863|0.5 115864|0.38889 115865|0.61111 115866|0.63889 115867|0.43056 115868|0.59722 115869|0.52778 115870|0.41667 115871|0.76389 115872|0.5 115873|0.48611 115874|0.56944 115875|0.29167 115876|0.55556 115877|0.88889 115878|0.54167 115879|0.79167 115880|0.59722 115881|0.66667 115882|0.75 115883|0.84722 115884|0.375 115885|0.88889 115886|0.63889 115887|0.61111 115888|0.79167 115889|0.70833 115890|0.66667 115891|0.76389 115892|0.68056 115893|0.70833 115894|0.81944 115895|0.25 115896|0.54167 115897|0.91667 115898|0.84722 115899|0.5 115900|0.5 115901|0.54167 115902|0.69444 115903|0.65278 115904|0.61111 115905|0.44444 115906|0.5 115907|0.625 115908|0.55556 115909|0.44444 115910|0.55556 115911|0.38889 115912|0.5 115913|0.5 115914|0.76389 115915|0.52778 115916|0.13889 115917|0.51389 115918|0.56944 115919|0.40278 115920|0.45833 115921|0.625 115922|0.86111 115923|0.48611 115924|0.68056 115925|0.61111 115926|0.52778 115927|0.77778 115928|0.41667 115929|0.40278 115930|0.51389 115931|0.61111 115932|0.5 115933|0.45833 115934|0.5 115935|0.52778 115936|0.61111 115937|0.52778 115938|0.5 115939|0.44444 115940|0.5 115941|0.51389 115942|0.58333 115943|0.5 115944|0.77778 115945|0.52778 115946|0.52778 115947|0.54167 115948|0.5 115949|0.59722 115950|0.43056 115951|0.44444 115952|0.44444 115953|0.48611 115954|0.51389 115955|0.40278 115956|0.38889 115957|0.58333 115958|0.5 115959|0.44444 115960|0.59722 115961|0.54167 115962|0.58333 115963|0.44444 115964|0.48611 115965|0.43056 115966|0.30556 115967|0.56944 115968|0.625 115969|0.58333 115970|0.43056 115971|0.5 115972|0.68056 115973|0.77778 115974|0.26389 115975|0.52778 115976|0.5 115977|0.38889 115978|0.11111 115979|0.48611 115980|0.65278 115981|0.5 115982|0.51389 115983|0.63889 115984|0.61111 115985|0.63889 115986|0.5 115987|0.48611 115988|0.069444 115989|0.5 115990|0.61111 115991|0.43056 115992|0.5 115993|0.51389 115994|0.38889 115995|0.5 115996|0.43056 115997|0.5 115998|0.61111 115999|0.61111 116000|0.38889 116001|0.5 116002|0.47222 116003|0.55556 116004|0.55556 116005|0.5 116006|0.5 116007|0.44444 116008|0.44444 116009|0.38889 116010|0.45833 116011|0.45833 116012|0.61111 116013|0.56944 116014|0.63889 116015|0.72222 116016|0.76389 116017|0.69444 116018|0.43056 116019|0.5 116020|0.5 116021|0.5 116022|0.45833 116023|0.31944 116024|0.33333 116025|0.23611 116026|0.23611 116027|0.30556 116028|0.52778 116029|0.40278 116030|0.26389 116031|0.40278 116032|0.33333 116033|0.29167 116034|0.25 116035|0.5 116036|0.41667 116037|0.56944 116038|0.5 116039|0.44444 116040|0.48611 116041|0.48611 116042|0.51389 116043|0.59722 116044|0.11111 116045|0.47222 116046|0.52778 116047|0.36111 116048|0.36111 116049|0.375 116050|0.51389 116051|0.5 116052|0.52778 116053|0.5 116054|0.59722 116055|0.61111 116056|0.52778 116057|0.48611 116058|0.5 116059|0.40278 116060|0.48611 116061|0.44444 116062|0.5 116063|0.75 116064|0.63889 116065|0.45833 116066|0.44444 116067|0.5 116068|0.54167 116069|0.51389 116070|0.44444 116071|0.58333 116072|0.44444 116073|0.79167 116074|0.69444 116075|0.5 116076|0.44444 116077|0.66667 116078|0.27778 116079|0.36111 116080|0.56944 116081|0.38889 116082|0.30556 116083|0.27778 116084|0.13889 116085|0.5 116086|0.20833 116087|0.26389 116088|0.63889 116089|0.75 116090|0.56944 116091|0.5 116092|0.5 116093|0.70833 116094|0.5 116095|0.5 116096|0.5 116097|0.375 116098|0.59722 116099|0.66667 116100|0.54167 116101|0.5 116102|0.52778 116103|0.36111 116104|0.58333 116105|0.55556 116106|0.44444 116107|0.5 116108|0.44444 116109|0.36111 116110|0.33333 116111|0.16667 116112|0.22222 116113|0.20833 116114|0.15278 116115|0.22222 116116|0.5 116117|0.16667 116118|0.30556 116119|0.34722 116120|0.40278 116121|0.5 116122|0.69444 116123|0.5 116124|0.5 116125|0.5 116126|0.52778 116127|0.66667 116128|0.93056 116129|0.61111 116130|0.5 116131|0.55556 116132|0.54167 116133|0.70833 116134|0.73611 116135|0.11111 116136|0.069444 116137|0.5 116138|0.52778 116139|0.66667 116140|0.63889 116141|0.625 116142|0.66667 116143|0.79167 116144|0.5 116145|0.63889 116146|0.5 116147|0.59722 116148|0.5 116149|0.31944 116150|0.47222 116151|0.48611 116152|0.23611 116153|0.38889 116154|0.33333 116155|0.44444 116156|0.44444 116157|0.44444 116158|0.097222 116159|0.52778 116160|0.5 116161|0.5 116162|0.5 116163|0.41667 116164|0.33333 116165|0.55556 116166|0.625 116167|0.16667 116168|0.5 116169|0.55556 116170|0.20833 116171|0.52778 116172|0.52778 116173|0.70833 116174|0.44444 116175|0.43056 116176|0.5 116177|0.61111 116178|0.38889 116179|0.5 116180|0.40278 116181|0.52778 116182|0.52778 116183|0.47222 116184|0.69444 116185|0.66667 116186|0.63889 116187|0.5 116188|0.43056 116189|0.55556 116190|0.91667 116191|0.875 116192|0.73611 116193|0.88889 116194|0.91667 116195|0.52778 116196|0.56944 116197|0.54167 116198|0.40278 116199|0.55556 116200|0.48611 116201|0.75 116202|0.90278 116203|0.59722 116204|0.55556 116205|0.77778 116206|0.61111 116207|0.65278 116208|0.63889 116209|0.61111 116210|0.5 116211|0.55556 116212|0.83333 116213|0.77778 116214|0.25 116215|0.70833 116216|0.84722 116217|0.51389 116218|0.47222 116219|0.55556 116220|0.5 116221|0.75 116222|0.66667 116223|0.79167 116224|0.625 116225|0.68056 116226|0.55556 116227|0.65278 116228|0.65278 116229|0.70833 116230|0.65278 116231|0.5 116232|0.72222 116233|0.56944 116234|0.25 116235|0.23611 116236|0.55556 116237|0.59722 116238|0.56944 116239|0.79167 116240|0.73611 116241|0.80556 116242|0.59722 116243|0.69444 116244|0.63889 116245|0.51389 116246|0.625 116247|0.69444 116248|0.77778 116249|0.625 116250|0.45833 116251|0.40278 116252|0.44444 116253|0.41667 116254|0.41667 116255|0.20833 116256|0.55556 116257|0.5 116258|0.5 116259|0.69444 116260|0.77778 116261|0.65278 116262|0.73611 116263|0.375 116264|0.43056 116265|0.44444 116266|0.33333 116267|0.25 116268|0.20833 116269|0.11111 116270|0.77778 116271|0.625 116272|0.5 116273|0.375 116274|0.47222 116275|0.61111 116276|0.47222 116277|0.48611 116278|0.5 116279|0.30556 116280|0.5 116281|0.36111 116282|0.40278 116283|0.22222 116284|0.80556 116285|0.66667 116286|0.59722 116287|0.66667 116288|0.77778 116289|0.55556 116290|0.84722 116291|0.5 116292|0.40278 116293|0.375 116294|0.65278 116295|0.34722 116296|0.47222 116297|0.54167 116298|0.5 116299|0.25 116300|0.38889 116301|0.5 116302|0.5 116303|0.81944 116304|0.47222 116305|0.5 116306|0.43056 116307|0.5 116308|0.55556 116309|0.47222 116310|0.30556 116311|0.38889 116312|0.36111 116313|0.29167 116314|0.31944 116315|0.61111 116316|0.51389 116317|0.63889 116318|0.30556 116319|0.41667 116320|0.47222 116321|0.43056 116322|0.77778 116323|0.40278 116324|0.5 116325|0.45833 116326|0.375 116327|0.54167 116328|0.125 116329|0.44444 116330|0.36111 116331|0.40278 116332|0.36111 116333|0.31944 116334|0.13889 116335|0.5 116336|0.47222 116337|0.79167 116338|0.77778 116339|0.5 116340|0.52778 116341|0.61111 116342|0.83333 116343|0.20833 116344|0.59722 116345|0.55556 116346|0.5 116347|0.44444 116348|0.51389 116349|0.5 116350|0.55556 116351|0.25 116352|0.55556 116353|0.5 116354|0.43056 116355|0.33333 116356|0.56944 116357|0.31944 116358|0.58333 116359|0.63889 116360|0.51389 116361|0.52778 116362|0.5 116363|0.5 116364|0.5 116365|0.5 116366|0.55556 116367|0.51389 116368|0.5 116369|0.5 116370|0.5 116371|0.73611 116372|0.5 116373|0.5 116374|0.5 116375|0.58333 116376|0.56944 116377|0.5 116378|0.48611 116379|0.5 116380|0.5 116381|0.52778 116382|0.5 116383|0.68056 116384|0.47222 116385|0.22222 116386|0.81944 116387|0.48611 116388|0.5 116389|0.43056 116390|0.54167 116391|0.33333 116392|0.56944 116393|0.27778 116394|0.76389 116395|0.55556 116396|0.5 116397|0.5 116398|0.65278 116399|0.61111 116400|0.20833 116401|0.45833 116402|0.52778 116403|0.45833 116404|0.47222 116405|0.375 116406|0.375 116407|0.56944 116408|0.5 116409|0.59722 116410|0.43056 116411|0.66667 116412|0 116413|0.65278 116414|0.61111 116415|0.51389 116416|0.11111 116417|0.47222 116418|0.51389 116419|0.45833 116420|0.58333 116421|0.33333 116422|0.70833 116423|0.5 116424|0.68056 116425|0.66667 116426|0.34722 116427|0.5 116428|0.44444 116429|0.33333 116430|0.5 116431|0.5 116432|0.43056 116433|0.41667 116434|0.66667 116435|0.47222 116436|0.5 116437|0.26389 116438|0.58333 116439|0.69444 116440|0.55556 116441|0.34722 116442|0.52778 116443|0.41667 116444|0.44444 116445|0.5 116446|0.5 116447|0.58333 116448|0.44444 116449|0.79167 116450|0.125 116451|0.81944 116452|0.40278 116453|0.59722 116454|0.5 116455|0.47222 116456|0.52778 116457|0.33333 116458|0.55556 116459|0.5 116460|0.43056 116461|0.55556 116462|0.48611 116463|0.58333 116464|0.375 116465|0.72222 116466|0.86111 116467|0.93056 116468|0.84722 116469|0.5 116470|0.5 116471|0.52778 116472|0.5 116473|0.41667 116474|0.63889 116475|0.63889 116476|0.48611 116477|0.61111 116478|0.5 116479|0.16667 116480|0.51389 116481|0.30556 116482|0.44444 116483|0.27778 116484|0.76389 116485|0.40278 116486|0.55556 116487|0.5 116488|0.40278 116489|0.5 116490|0.56944 116491|0.40278 116492|0.5 116493|0.48611 116494|0.55556 116495|0.055556 116496|0.027778 116497|0.44444 116498|0.30556 116499|0.125 116500|0.26389 116501|0.19444 116502|0.36111 116503|0.55556 116504|0.40278 116505|0.36111 116506|0.70833 116507|0.45833 116508|0.15278 116509|0.069444 116510|0.44444 116511|0.16667 116512|0.5 116513|0.38889 116514|0.38889 116515|0.18056 116516|0.16667 116517|0.31944 116518|0.43056 116519|0.5 116520|0.5 116521|0.79167 116522|0.5 116523|0.5 116524|0.40278 116525|0.54167 116526|0.52778 116527|0.48611 116528|0.5 116529|0.41667 116530|0.58333 116531|0.29167 116532|0.63889 116533|0.77778 116534|0.47222 116535|0.55556 116536|0.58333 116537|0.61111 116538|0.59722 116539|0.5 116540|0.5 116541|0.48611 116542|0.47222 116543|0.61111 116544|0.55556 116545|0.72222 116546|0.56944 116547|0.5 116548|0.52778 116549|0.55556 116550|0.55556 116551|0.65278 116552|0.26389 116553|0.5 116554|0.5 116555|0.51389 116556|0.43056 116557|0.5 116558|0.61111 116559|0.5 116560|0.52778 116561|0.59722 116562|0.68056 116563|0.5 116564|0.56944 116565|0.83333 116566|0.80556 116567|0.47222 116568|0.5 116569|0.58333 116570|0.76389 116571|0.59722 116572|0.48611 116573|0.44444 116574|0.5 116575|0.66667 116576|0.76389 116577|0.16667 116578|0.25 116579|0.40278 116580|0.48611 116581|0.84722 116582|0.80556 116583|0.79167 116584|0.75 116585|0.81944 116586|0.66667 116587|0.58333 116588|0.38889 116589|0.47222 116590|0.33333 116591|0.31944 116592|0.63889 116593|0.5 116594|0.5 116595|0.52778 116596|0.98611 116597|0.47222 116598|0.625 116599|0.66667 116600|0.47222 116601|0.5 116602|0.5 116603|0.59722 116604|0.38889 116605|0.41667 116606|0.5 116607|0.51389 116608|0.43056 116609|0.40278 116610|0.30556 116611|0.20833 116612|0.30556 116613|0.34722 116614|0.375 116615|0.43056 116616|0.5 116617|0.20833 116618|0.51389 116619|0.5 116620|0.51389 116621|0.59722 116622|0.66667 116623|0.61111 116624|0.5 116625|0.18056 116626|0.44444 116627|0.29167 116628|0.66667 116629|0.77778 116630|0.5 116631|0.58333 116632|0.70833 116633|0.44444 116634|0.55556 116635|0.63889 116636|0.58333 116637|0.81944 116638|0.83333 116639|0.66667 116640|0.68056 116641|0.68056 116642|0.72222 116643|0.77778 116644|0.84722 116645|0.72222 116646|0.52778 116647|0.5 116648|0.55556 116649|0.29167 116650|0.75 116651|0.38889 116652|0.73611 116653|0.5 116654|0.36111 116655|0.56944 116656|0.40278 116657|0.55556 116658|0.65278 116659|0.61111 116660|0.47222 116661|0.51389 116662|0.375 116663|0.29167 116664|0.61111 116665|0.75 116666|0.84722 116667|0.77778 116668|0.66667 116669|0.5 116670|0.55556 116671|0.68056 116672|0.5 116673|0.5 116674|0.77778 116675|0.73611 116676|0.83333 116677|0.79167 116678|0.73611 116679|0.79167 116680|0.79167 116681|0.70833 116682|0.68056 116683|0.70833 116684|0.66667 116685|0.84722 116686|0.59722 116687|0.61111 116688|0.72222 116689|0.69444 116690|0.5 116691|0.5 116692|0.29167 116693|0.33333 116694|0.38889 116695|0.45833 116696|0.63889 116697|0.48611 116698|0.59722 116699|0.58333 116700|0.58333 116701|0.56944 116702|0.055556 116703|0.40278 116704|0.56944 116705|0.5 116706|0.43056 116707|0.79167 116708|0.58333 116709|0.59722 116710|0.31944 116711|0.22222 116712|0.5 116713|0.5 116714|0.625 116715|0.56944 116716|0.69444 116717|0.5 116718|0.38889 116719|0.41667 116720|0.45833 116721|0.54167 116722|0.5 116723|0.69444 116724|0.68056 116725|0.63889 116726|0.59722 116727|0.84722 116728|0.70833 116729|0.54167 116730|0.70833 116731|0.77778 116732|0.73611 116733|0.65278 116734|0.65278 116735|0.76389 116736|0.48611 116737|0.80556 116738|0.5 116739|0.44444 116740|0.65278 116741|0.5 116742|0.5 116743|0.5 116744|0.70833 116745|0.51389 116746|0.55556 116747|0.5 116748|0.5 116749|0.5 116750|0.55556 116751|0.5 116752|0.5 116753|0.80556 116754|0.51389 116755|0.22222 116756|0.41667 116757|0.73611 116758|0.75 116759|0.80556 116760|0.54167 116761|0.52778 116762|0.48611 116763|0.47222 116764|0.54167 116765|0.33333 116766|0.5 116767|0.5 116768|0.66667 116769|0.51389 116770|0.59722 116771|0.5 116772|0.70833 116773|0.51389 116774|0.25 116775|0.19444 116776|0.16667 116777|0.40278 116778|0.5 116779|0.375 116780|0.55556 116781|0.56944 116782|0.5 116783|0.5 116784|0.47222 116785|0.55556 116786|0.5 116787|0.41667 116788|0.48611 116789|0.66667 116790|0.75 116791|0.44444 116792|0.61111 116793|0.5 116794|0.31944 116795|0.5 116796|0.5 116797|0.5 116798|0.5 116799|0.5 116800|0.5 116801|0.59722 116802|0.66667 116803|0.55556 116804|0.625 116805|0.41667 116806|0.45833 116807|0.65278 116808|0.70833 116809|0.81944 116810|0.86111 116811|0.083333 116812|0.097222 116813|0.5 116814|0.5 116815|0.70833 116816|0.48611 116817|0.55556 116818|0.56944 116819|0.625 116820|0.75 116821|0.5 116822|0.76389 116823|0.63889 116824|0.59722 116825|0.5 116826|0.55556 116827|0.5 116828|0.34722 116829|0.38889 116830|0.52778 116831|0.5 116832|0.5 116833|0.58333 116834|0.48611 116835|0.44444 116836|0.52778 116837|0.55556 116838|0.5 116839|0.65278 116840|0.5 116841|0.54167 116842|0.66667 116843|0.48611 116844|0.73611 116845|0.81944 116846|0.75 116847|0.83333 116848|0.34722 116849|0.5 116850|0.38889 116851|0.65278 116852|0.5 116853|0.68056 116854|0.86111 116855|0.44444 116856|0.41667 116857|0.58333 116858|0.45833 116859|0.45833 116860|0.29167 116861|0.15278 116862|0.5 116863|0.73611 116864|0.58333 116865|0.76389 116866|0.79167 116867|0.70833 116868|0.65278 116869|0.86111 116870|0.86111 116871|0.88889 116872|0.86111 116873|0.86111 116874|0.66667 116875|0.68056 116876|0.83333 116877|0.875 116878|0.75 116879|0.72222 116880|0.63889 116881|0.68056 116882|0.70833 116883|0.70833 116884|0.48611 116885|0.5 116886|0.61111 116887|0.52778 116888|0.5 116889|0.56944 116890|0.76389 116891|0.36111 116892|0.11111 116893|0.5 116894|0.625 116895|0.5 116896|0.43056 116897|0.30556 116898|0.25 116899|0.16667 116900|0.11111 116901|0.22222 116902|0.40278 116903|0.38889 116904|0.16667 116905|0.23611 116906|0.20833 116907|0.48611 116908|0.38889 116909|0.27778 116910|0.27778 116911|0.27778 116912|0.43056 116913|0.59722 116914|0.22222 116915|0.54167 116916|0.63889 116917|0.5 116918|0.5 116919|0.5 116920|0.40278 116921|0.70833 116922|0.72222 116923|0.66667 116924|0.59722 116925|0.44444 116926|0.33333 116927|0.30556 116928|0.38889 116929|0.23611 116930|0.22222 116931|0.45833 116932|0.5 116933|0.5 116934|0.41667 116935|0.56944 116936|0.55556 116937|0.81944 116938|0.23611 116939|0.45833 116940|0.33333 116941|0.41667 116942|0.55556 116943|0.55556 116944|0.61111 116945|0.68056 116946|0.45833 116947|0.625 116948|0.44444 116949|0.5 116950|0.5 116951|0.625 116952|0.76389 116953|0.59722 116954|0.44444 116955|0.54167 116956|0.45833 116957|0.47222 116958|0.34722 116959|0.51389 116960|0.5 116961|0.5 116962|0.58333 116963|0.55556 116964|0.76389 116965|0.52778 116966|0.48611 116967|0.5 116968|0.375 116969|0.5 116970|0.5 116971|0.5 116972|0.26389 116973|0.41667 116974|0.59722 116975|0.54167 116976|0.45833 116977|0.31944 116978|0.55556 116979|0.5 116980|0.43056 116981|0.19444 116982|0.18056 116983|0.5 116984|0.27778 116985|0.5 116986|0.61111 116987|0.76389 116988|0.58333 116989|0.22222 116990|0.625 116991|0.66667 116992|0.68056 116993|0.5 116994|0.63889 116995|0.48611 116996|0.77778 116997|0.5 116998|0.54167 116999|0.5 117000|0.66667 117001|0.45833 117002|0.5 117003|0.48611 117004|0.55556 117005|0.43056 117006|0.44444 117007|0.47222 117008|0.47222 117009|0.47222 117010|0.68056 117011|0.51389 117012|0.68056 117013|0.48611 117014|0.48611 117015|0.38889 117016|0.40278 117017|0.48611 117018|0.5 117019|0.63889 117020|0.65278 117021|0.72222 117022|0.48611 117023|0.61111 117024|0.625 117025|0.625 117026|0.70833 117027|0.5 117028|0.5 117029|0.23611 117030|0.5 117031|0.5 117032|0.31944 117033|0.41667 117034|0.45833 117035|0.65278 117036|0.33333 117037|0.45833 117038|0.54167 117039|0.5 117040|0.25 117041|0.59722 117042|0.73611 117043|0.72222 117044|0.5 117045|0.70833 117046|0.63889 117047|0.65278 117048|0.69444 117049|0.40278 117050|0.51389 117051|0.5 117052|0.5 117053|0.81944 117054|0.84722 117055|0.83333 117056|0.73611 117057|0.69444 117058|0.84722 117059|0.80556 117060|0.66667 117061|0.65278 117062|0.84722 117063|0.72222 117064|0.65278 117065|0.80556 117066|0.73611 117067|0.72222 117068|0.79167 117069|0.44444 117070|0.59722 117071|0.61111 117072|0.55556 117073|0.47222 117074|0.375 117075|0.5 117076|0.31944 117077|0.25 117078|0.19444 117079|0.41667 117080|0.5 117081|0.27778 117082|0.54167 117083|0.56944 117084|0.26389 117085|0.31944 117086|0.22222 117087|0.51389 117088|0.58333 117089|0.54167 117090|0.43056 117091|0.26389 117092|0.22222 117093|0.56944 117094|0.25 117095|0.34722 117096|0.73611 117097|0.65278 117098|0.58333 117099|0.45833 117100|0.61111 117101|0.45833 117102|0.23611 117103|0.5 117104|0.5 117105|0.5 117106|0.5 117107|0.44444 117108|0.48611 117109|0.5 117110|0.51389 117111|0.30556 117112|0.16667 117113|0.5 117114|0.55556 117115|0.45833 117116|0.47222 117117|0.5 117118|0.59722 117119|0.31944 117120|0.34722 117121|0.41667 117122|0.26389 117123|0.5 117124|0.5 117125|0.47222 117126|0.63889 117127|0.5 117128|0.44444 117129|0.13889 117130|0.66667 117131|0.5 117132|0.5 117133|0.72222 117134|0.61111 117135|0.58333 117136|0.31944 117137|0.44444 117138|0.54167 117139|0.47222 117140|0.38889 117141|0.15278 117142|0.5 117143|0.31944 117144|0.55556 117145|0.5 117146|0.58333 117147|0.875 117148|0.66667 117149|0.41667 117150|0.47222 117151|0.54167 117152|0.76389 117153|0.5 117154|0.58333 117155|0.44444 117156|0.58333 117157|0.5 117158|0.51389 117159|0.5 117160|0.5 117161|0.5 117162|0.51389 117163|0.51389 117164|0.88889 117165|0.84722 117166|0.19444 117167|0.86111 117168|0.66667 117169|0.77778 117170|0.76389 117171|0.80556 117172|0.55556 117173|0.5 117174|0.55556 117175|0.18056 117176|0.51389 117177|0.41667 117178|0.47222 117179|0.65278 117180|0.88889 117181|0.94444 117182|0.625 117183|0.19444 117184|0.45833 117185|0.55556 117186|0.44444 117187|0.56944 117188|0.65278 117189|0.29167 117190|0.27778 117191|0.30556 117192|0.5 117193|0.5 117194|0.5 117195|0.51389 117196|0.65278 117197|0.38889 117198|0.51389 117199|0.5 117200|0.31944 117201|0.30556 117202|0.20833 117203|0.56944 117204|0.27778 117205|0.58333 117206|0.51389 117207|0.58333 117208|0.58333 117209|0.5 117210|0.59722 117211|0.56944 117212|0.59722 117213|0.55556 117214|0.56944 117215|0.48611 117216|0.40278 117217|0.61111 117218|0.77778 117219|0.44444 117220|0.61111 117221|0.36111 117222|0.083333 117223|0.66667 117224|0.125 117225|0.083333 117226|0.45833 117227|0.5 117228|0.55556 117229|0.70833 117230|0.13889 117231|0.5 117232|0.47222 117233|0.45833 117234|0.75 117235|0.79167 117236|0.77778 117237|0.66667 117238|0.38889 117239|0.36111 117240|0.44444 117241|0.25 117242|0.30556 117243|0.66667 117244|0.29167 117245|0.26389 117246|0.56944 117247|0.29167 117248|0.375 117249|0.41667 117250|0.48611 117251|0.5 117252|0.055556 117253|0.26389 117254|0.375 117255|0.58333 117256|0.61111 117257|0.77778 117258|0.44444 117259|0.38889 117260|0.5 117261|0.45833 117262|0.63889 117263|0.69444 117264|0.47222 117265|0.66667 117266|0.44444 117267|0.58333 117268|0.45833 117269|0.55556 117270|0.40278 117271|0.5 117272|0.5 117273|0.58333 117274|0.76389 117275|0.70833 117276|0.65278 117277|0.25 117278|0.5 117279|0.76389 117280|0.41667 117281|0.26389 117282|0.5 117283|0.375 117284|0.33333 117285|0.5 117286|0.56944 117287|0.65278 117288|0.48611 117289|0.58333 117290|0.29167 117291|0.66667 117292|0.5 117293|0.54167 117294|0.58333 117295|0.72222 117296|0.47222 117297|0.55556 117298|0.45833 117299|0.56944 117300|0.625 117301|0.55556 117302|0.19444 117303|0.5 117304|0.5 117305|0.56944 117306|0.45833 117307|0.56944 117308|0.63889 117309|0.61111 117310|0.5 117311|0.5 117312|0.5 117313|0.83333 117314|0.51389 117315|0.44444 117316|0.34722 117317|0.47222 117318|0.66667 117319|0.55556 117320|0.5 117321|0.5 117322|0.58333 117323|0.66667 117324|0.58333 117325|0.66667 117326|0.76389 117327|0.65278 117328|0.66667 117329|0.61111 117330|0.75 117331|0.83333 117332|0.83333 117333|0.84722 117334|0.66667 117335|0.5 117336|0.45833 117337|0.5 117338|0.38889 117339|0.48611 117340|0.59722 117341|0.79167 117342|0.68056 117343|0.61111 117344|0.54167 117345|0.43056 117346|0.38889 117347|0.40278 117348|0.31944 117349|0.16667 117350|0.15278 117351|0.25 117352|0.58333 117353|0.56944 117354|0.43056 117355|0.83333 117356|0.80556 117357|0.61111 117358|0.66667 117359|0.63889 117360|0.80556 117361|0.875 117362|0.58333 117363|0.52778 117364|0.20833 117365|0.58333 117366|0.55556 117367|0.69444 117368|0.75 117369|0.45833 117370|0.63889 117371|0.40278 117372|0.56944 117373|0.41667 117374|0.48611 117375|0.625 117376|0.61111 117377|0.54167 117378|0.5 117379|0.5 117380|0.5 117381|0.5 117382|0.5 117383|0.63889 117384|0.44444 117385|0.38889 117386|0.41667 117387|0.625 117388|0.44444 117389|0.44444 117390|0.65278 117391|0.38889 117392|0.5 117393|0.5 117394|0.5 117395|0.44444 117396|0.5 117397|0.625 117398|0.30556 117399|0.61111 117400|0.5 117401|0.5 117402|0.5 117403|0.51389 117404|0.44444 117405|0.44444 117406|0.069444 117407|0.59722 117408|0.5 117409|0.48611 117410|0.43056 117411|0.56944 117412|0.45833 117413|0.44444 117414|0.44444 117415|0.55556 117416|0.5 117417|0.40278 117418|0.5 117419|0.56944 117420|0.27778 117421|0.43056 117422|0.45833 117423|0.625 117424|0.29167 117425|0.51389 117426|0.72222 117427|0.55556 117428|0.625 117429|0.47222 117430|0.61111 117431|0.38889 117432|0.5 117433|0.625 117434|0.66667 117435|0.5 117436|0.43056 117437|0.72222 117438|0.58333 117439|0.625 117440|0.55556 117441|0.73611 117442|0.73611 117443|0.31944 117444|0.76389 117445|0.5 117446|0.23611 117447|0.5 117448|0.65278 117449|0.77778 117450|0.625 117451|0.5 117452|0.55556 117453|0.69444 117454|0.38889 117455|0.55556 117456|0.16667 117457|0.38889 117458|0.61111 117459|0.29167 117460|0.44444 117461|0.80556 117462|0.47222 117463|0.31944 117464|0.54167 117465|0.5 117466|0.055556 117467|0.15278 117468|0.52778 117469|0.51389 117470|0.51389 117471|0.58333 117472|0.75 117473|0.875 117474|0.55556 117475|0.59722 117476|0.5 117477|0.5 117478|0.63889 117479|0.5 117480|0.52778 117481|0.5 117482|0.51389 117483|0.79167 117484|0.54167 117485|0.58333 117486|0.58333 117487|0.76389 117488|0.81944 117489|0.52778 117490|0.52778 117491|0.56944 117492|0.5 117493|0.47222 117494|0.36111 117495|0.43056 117496|0.25 117497|0.5 117498|0.70833 117499|0.70833 117500|0.29167 117501|0.15278 117502|0.27778 117503|0.33333 117504|0.55556 117505|0.68056 117506|0.45833 117507|0.5 117508|0.68056 117509|0.41667 117510|0.43056 117511|0.66667 117512|0.52778 117513|0.47222 117514|0.5 117515|0.59722 117516|0.73611 117517|0.38889 117518|0.52778 117519|0.52778 117520|0.47222 117521|0.65278 117522|0.58333 117523|0.38889 117524|0.43056 117525|0.47222 117526|0.69444 117527|0.5 117528|0.51389 117529|0.5 117530|0.51389 117531|0.5 117532|0.47222 117533|0.56944 117534|0.45833 117535|0.5 117536|0.56944 117537|0.51389 117538|0.55556 117539|0.5 117540|0.15278 117541|0.54167 117542|0.33333 117543|0.5 117544|0.59722 117545|0.56944 117546|0.56944 117547|0.43056 117548|0.5 117549|0.5 117550|0.52778 117551|0.54167 117552|0.48611 117553|0.48611 117554|0.36111 117555|0.41667 117556|0.55556 117557|0.56944 117558|0.069444 117559|0.041667 117560|0.61111 117561|0.70833 117562|0.23611 117563|0.86111 117564|0.90278 117565|0.61111 117566|0.5 117567|0.44444 117568|0.58333 117569|0.51389 117570|0.45833 117571|0.48611 117572|0.375 117573|0.59722 117574|0.38889 117575|0.375 117576|0.22222 117577|0.5 117578|0.58333 117579|0.5 117580|0.5 117581|0.47222 117582|0.58333 117583|0.13889 117584|0.25 117585|0.5 117586|0.41667 117587|0.125 117588|0.43056 117589|0.5 117590|0.47222 117591|0.5 117592|0.625 117593|0.27778 117594|0.45833 117595|0.5 117596|0.5 117597|0.44444 117598|0.36111 117599|0.5 117600|0.40278 117601|0.625 117602|0.66667 117603|0.63889 117604|0.5 117605|0.33333 117606|0.47222 117607|0.5 117608|0.75 117609|0.51389 117610|0.65278 117611|0.79167 117612|0.66667 117613|0.58333 117614|0.55556 117615|0.61111 117616|0.55556 117617|0.5 117618|0.40278 117619|0.5 117620|0.40278 117621|0.29167 117622|0.15278 117623|0.5 117624|0.083333 117625|0.44444 117626|0.40278 117627|0.44444 117628|0.5 117629|0.48611 117630|0.44444 117631|0.52778 117632|0.5 117633|0.5 117634|0.73611 117635|0.61111 117636|0.5 117637|0.47222 117638|0.5 117639|0.51389 117640|0.58333 117641|0.70833 117642|0.77778 117643|0.75 117644|0.80556 117645|0.66667 117646|0.63889 117647|0.30556 117648|0.34722 117649|0.63889 117650|0.54167 117651|0.70833 117652|0.94444 117653|0.45833 117654|0.375 117655|0.36111 117656|0.26389 117657|0.47222 117658|0.52778 117659|0.19444 117660|0.40278 117661|0.30556 117662|0.27778 117663|0.375 117664|0.36111 117665|0.58333 117666|0.5 117667|0.30556 117668|0.26389 117669|0.375 117670|0.38889 117671|0.55556 117672|0.68056 117673|0.63889 117674|0.5 117675|0.61111 117676|0.625 117677|0.72222 117678|0.75 117679|0.63889 117680|0.93056 117681|0.97222 117682|0.51389 117683|0.65278 117684|0.73611 117685|0.75 117686|0.75 117687|0.69444 117688|0.54167 117689|0.77778 117690|0.84722 117691|0.875 117692|0.98611 117693|0.69444 117694|0.875 117695|0.65278 117696|0.86111 117697|0.47222 117698|0.59722 117699|0.27778 117700|0.58333 117701|0.52778 117702|0.54167 117703|0.68056 117704|0.70833 117705|0.63889 117706|0.54167 117707|0.52778 117708|0.5 117709|0.65278 117710|0.5 117711|0.5 117712|0.375 117713|0.54167 117714|0.75 117715|0.68056 117716|0.58333 117717|0.625 117718|0.66667 117719|0.66667 117720|0.5 117721|0.5 117722|0.58333 117723|0.36111 117724|0.5 117725|0.23611 117726|0.47222 117727|0.72222 117728|0.48611 117729|0.61111 117730|0.34722 117731|0.58333 117732|0.51389 117733|0.5 117734|0.5 117735|0.52778 117736|0.61111 117737|0.56944 117738|0.58333 117739|0.66667 117740|0.72222 117741|0.51389 117742|0.43056 117743|0.27778 117744|0.16667 117745|0.30556 117746|0.61111 117747|0.34722 117748|0.38889 117749|0.44444 117750|0.5 117751|0.36111 117752|0.48611 117753|0.22222 117754|0.51389 117755|0.58333 117756|0.44444 117757|0.51389 117758|0.55556 117759|0.72222 117760|0.625 117761|0.86111 117762|0.5 117763|0.5 117764|0.5 117765|0.55556 117766|0.47222 117767|0.56944 117768|0.5 117769|0.61111 117770|0.63889 117771|0.55556 117772|0.61111 117773|0.51389 117774|0.48611 117775|0.5 117776|0.61111 117777|0.5 117778|0.5 117779|0.5 117780|0.5 117781|0.55556 117782|0.51389 117783|0.75 117784|0.76389 117785|0.5 117786|0.23611 117787|0.33333 117788|0.41667 117789|0.5 117790|0.63889 117791|0.47222 117792|0.58333 117793|0.51389 117794|0.5 117795|0.30556 117796|0.31944 117797|0.5 117798|0.47222 117799|0.55556 117800|0.58333 117801|0.5 117802|0.48611 117803|0.41667 117804|0.40278 117805|0.43056 117806|0.5 117807|0.44444 117808|0.59722 117809|0.36111 117810|0.80556 117811|0.40278 117812|0.48611 117813|0.5 117814|0.27778 117815|0.29167 117816|0.65278 117817|0.48611 117818|0.45833 117819|0.48611 117820|0.5 117821|0.5 117822|0.5 117823|0.48611 117824|0.5 117825|0.36111 117826|0.19444 117827|0.23611 117828|0.40278 117829|0.48611 117830|0.26389 117831|0.18056 117832|0.20833 117833|0.27778 117834|0.41667 117835|0.80556 117836|0.41667 117837|0.5 117838|0.69444 117839|0.80556 117840|0.5 117841|0.5 117842|0.52778 117843|0.72222 117844|0.48611 117845|0.33333 117846|0.5 117847|0.44444 117848|0.56944 117849|0.43056 117850|0.61111 117851|0.72222 117852|0.55556 117853|0.47222 117854|0.48611 117855|0.47222 117856|0.45833 117857|0.25 117858|0.31944 117859|0.29167 117860|0.59722 117861|0.63889 117862|0.76389 117863|0.56944 117864|0.36111 117865|0.59722 117866|0.33333 117867|0.61111 117868|0.59722 117869|0.34722 117870|0.44444 117871|0.56944 117872|0.51389 117873|0.625 117874|0.55556 117875|0.58333 117876|0.51389 117877|0.5 117878|0.55556 117879|0.40278 117880|0.13889 117881|0.5 117882|0.52778 117883|0.47222 117884|0.36111 117885|0.5 117886|0.52778 117887|0.5 117888|0.45833 117889|0.45833 117890|0.55556 117891|0.65278 117892|0.38889 117893|0.61111 117894|0.59722 117895|0.59722 117896|0.69444 117897|0.81944 117898|0.5 117899|0.625 117900|0.5 117901|0.48611 117902|0.15278 117903|0.47222 117904|0.22222 117905|0.65278 117906|0.5 117907|0.34722 117908|0.11111 117909|0.61111 117910|0.52778 117911|0.5 117912|0.55556 117913|0.5 117914|0.55556 117915|0.5 117916|0.56944 117917|0.52778 117918|0.625 117919|0.33333 117920|0.27778 117921|0.5 117922|0.5 117923|0.27778 117924|0.44444 117925|0.44444 117926|0.54167 117927|0.23611 117928|0.51389 117929|0.38889 117930|0.70833 117931|0.66667 117932|0.77778 117933|0.44444 117934|0.41667 117935|0.52778 117936|0.625 117937|0.52778 117938|0.48611 117939|0.56944 117940|0.40278 117941|0.5 117942|0.625 117943|0.77778 117944|0.31944 117945|0.31944 117946|0.61111 117947|0.61111 117948|0.75 117949|0.52778 117950|0.65278 117951|0.72222 117952|0.79167 117953|0.625 117954|0.80556 117955|0.20833 117956|0.625 117957|0.41667 117958|0.56944 117959|0.38889 117960|0.5 117961|0.55556 117962|0.625 117963|0.5 117964|0.41667 117965|0.51389 117966|0.5 117967|0.58333 117968|0.61111 117969|0.61111 117970|0.80556 117971|0.65278 117972|0.5 117973|0.54167 117974|0.79167 117975|0.48611 117976|0.48611 117977|0.44444 117978|0.70833 117979|0.5 117980|0.45833 117981|0.61111 117982|0.5 117983|0.52778 117984|0.5 117985|0.58333 117986|0.36111 117987|0.47222 117988|0.47222 117989|0.41667 117990|0.40278 117991|0.5 117992|0.56944 117993|0.81944 117994|0.61111 117995|0.55556 117996|0.55556 117997|0.54167 117998|0.66667 117999|0.51389 118000|0.63889 118001|0.61111 118002|0.76389 118003|0.73611 118004|0.55556 118005|0.76389 118006|0.81944 118007|0.81944 118008|0.80556 118009|0.84722 118010|0.83333 118011|0.72222 118012|0.69444 118013|0.54167 118014|0.5 118015|0.36111 118016|0.73611 118017|0.72222 118018|0.98611 118019|0.72222 118020|0.70833 118021|0.58333 118022|0.83333 118023|0.27778 118024|0.36111 118025|0.79167 118026|0.70833 118027|0.69444 118028|0.75 118029|0.79167 118030|0.68056 118031|0.72222 118032|0.86111 118033|0.55556 118034|0.31944 118035|0.19444 118036|0.31944 118037|0.51389 118038|0.76389 118039|0.73611 118040|0.58333 118041|0.22222 118042|0.33333 118043|0.5 118044|0.52778 118045|0.75 118046|0.5 118047|0.61111 118048|0.11111 118049|0.38889 118050|0.47222 118051|0.51389 118052|0.79167 118053|0.5 118054|0.52778 118055|0.61111 118056|0.44444 118057|0.5 118058|0.625 118059|0.45833 118060|0.59722 118061|0.34722 118062|0.16667 118063|0.79167 118064|0.5 118065|0.38889 118066|0.41667 118067|0.27778 118068|0.5 118069|0.38889 118070|0.16667 118071|0.29167 118072|0.13889 118073|0.5 118074|0.5 118075|0.54167 118076|0.61111 118077|0.34722 118078|0.38889 118079|0.20833 118080|0.52778 118081|0.55556 118082|0.83333 118083|0.77778 118084|0.83333 118085|0.63889 118086|0.83333 118087|0.59722 118088|0.5 118089|0.43056 118090|0.22222 118091|0.55556 118092|0.5 118093|0.29167 118094|0.69444 118095|0.16667 118096|0.51389 118097|0.70833 118098|0.52778 118099|0.51389 118100|0.45833 118101|0.013889 118102|0.13889 118103|0.44444 118104|0.34722 118105|0.5 118106|0.43056 118107|0.54167 118108|0.69444 118109|0.83333 118110|0.5 118111|0.65278 118112|0.61111 118113|0.43056 118114|0.84722 118115|0.69444 118116|0.16667 118117|0.55556 118118|0.70833 118119|0.52778 118120|0.43056 118121|0.19444 118122|0.20833 118123|0.055556 118124|0.5 118125|0.43056 118126|0.33333 118127|0.44444 118128|0.47222 118129|0.77778 118130|0.59722 118131|0.55556 118132|0.26389 118133|0.55556 118134|0.44444 118135|0.375 118136|0.5 118137|0.25 118138|0.22222 118139|0.44444 118140|0.48611 118141|0.59722 118142|0.63889 118143|0.33333 118144|0.38889 118145|0.55556 118146|0.58333 118147|0.59722 118148|0.375 118149|0.63889 118150|0.5 118151|0.68056 118152|0.5 118153|0.625 118154|0.625 118155|0.59722 118156|0.40278 118157|0.27778 118158|0.51389 118159|0.55556 118160|0.44444 118161|0.72222 118162|0.47222 118163|0.31944 118164|0.56944 118165|0.33333 118166|0.73611 118167|0.65278 118168|0.5 118169|0.40278 118170|0.54167 118171|0.63889 118172|0.80556 118173|0.25 118174|0.55556 118175|0.68056 118176|0.58333 118177|0.47222 118178|0.125 118179|0.52778 118180|0.59722 118181|0.72222 118182|0.5 118183|0.59722 118184|0.58333 118185|0.80556 118186|0.23611 118187|0.52778 118188|0.65278 118189|0.72222 118190|0.29167 118191|0.26389 118192|0.29167 118193|0.5 118194|0.65278 118195|0.51389 118196|0.30556 118197|0.5 118198|0.48611 118199|0.5 118200|0.5 118201|0.52778 118202|0.30556 118203|0.5 118204|0.44444 118205|0.25 118206|0.26389 118207|0.43056 118208|0.40278 118209|0.44444 118210|0.29167 118211|0.45833 118212|0.29167 118213|0.55556 118214|0.38889 118215|0.47222 118216|0.61111 118217|0.44444 118218|0.26389 118219|0.41667 118220|0.47222 118221|0.72222 118222|0.55556 118223|0.51389 118224|0.47222 118225|0.48611 118226|0.76389 118227|0.44444 118228|0.54167 118229|0.5 118230|0.18056 118231|0.375 118232|0.36111 118233|0.40278 118234|0.27778 118235|0.625 118236|0.375 118237|0.5 118238|0.54167 118239|0.58333 118240|0.56944 118241|0.59722 118242|0.80556 118243|0.59722 118244|0.61111 118245|0.55556 118246|0.58333 118247|0.5 118248|0.5 118249|0.45833 118250|0.16667 118251|0.25 118252|0.55556 118253|0.5 118254|0.30556 118255|0.20833 118256|0.48611 118257|0.68056 118258|0.34722 118259|0.38889 118260|0.5 118261|0.69444 118262|0.79167 118263|0.5 118264|0.58333 118265|0.75 118266|0.80556 118267|0.5 118268|0.5 118269|0.72222 118270|0.90278 118271|0.5 118272|0.63889 118273|0.5 118274|0.5 118275|0.5 118276|0.76389 118277|0.54167 118278|0.36111 118279|0.5 118280|0.5 118281|0.59722 118282|0.5 118283|0.43056 118284|0.5 118285|0.47222 118286|0.47222 118287|0.5 118288|0.56944 118289|0.5 118290|0.51389 118291|0.5 118292|0.47222 118293|0.68056 118294|0.5 118295|0.75 118296|0.5 118297|0.29167 118298|0.5 118299|0.94444 118300|0.5 118301|0.52778 118302|0.55556 118303|0.5 118304|0.5 118305|0.5 118306|0.5 118307|0.40278 118308|0.5 118309|0.5 118310|0.375 118311|0.44444 118312|0.44444 118313|0.5 118314|0.22222 118315|0.22222 118316|0.18056 118317|0.16667 118318|0.38889 118319|0.375 118320|0.23611 118321|0.47222 118322|0.52778 118323|0.27778 118324|0.52778 118325|0.375 118326|0.47222 118327|0.83333 118328|0.5 118329|0.40278 118330|0.23611 118331|0.33333 118332|0.23611 118333|0.5 118334|0.38889 118335|0.041667 118336|0.29167 118337|0.19444 118338|0.375 118339|0.36111 118340|0.33333 118341|0.43056 118342|0.22222 118343|0.47222 118344|0.44444 118345|0.26389 118346|0.47222 118347|0.38889 118348|0.5 118349|0.47222 118350|0.30556 118351|0.41667 118352|0.51389 118353|0.5 118354|0.84722 118355|0.30556 118356|0.30556 118357|0.30556 118358|0.47222 118359|0.19444 118360|0.45833 118361|0.47222 118362|0.44444 118363|0.38889 118364|0.34722 118365|0.36111 118366|0.625 118367|0.47222 118368|0.66667 118369|0.36111 118370|0.11111 118371|0.5 118372|0.52778 118373|0.40278 118374|0.47222 118375|0.27778 118376|0.45833 118377|0.44444 118378|0.16667 118379|0.20833 118380|0.16667 118381|0.5 118382|0.58333 118383|0.51389 118384|0.70833 118385|0.69444 118386|0.36111 118387|0.48611 118388|0.51389 118389|0.55556 118390|0.52778 118391|0.58333 118392|0.66667 118393|0.61111 118394|0.48611 118395|0.55556 118396|0.40278 118397|0.40278 118398|0.5 118399|0.47222 118400|0.25 118401|0.54167 118402|0.44444 118403|0.44444 118404|0.38889 118405|0.36111 118406|0.5 118407|0.5 118408|0.55556 118409|0.44444 118410|0.63889 118411|0.40278 118412|0.59722 118413|0.34722 118414|0.5 118415|0.38889 118416|0.73611 118417|0.66667 118418|0.30556 118419|0.51389 118420|0.41667 118421|0.54167 118422|0.51389 118423|0.55556 118424|0.56944 118425|0.55556 118426|0.5 118427|0.5 118428|0.44444 118429|0.38889 118430|0.48611 118431|0.59722 118432|0.44444 118433|0.55556 118434|0.5 118435|0.5 118436|0.30556 118437|0.38889 118438|0.27778 118439|0.47222 118440|0.38889 118441|0.5 118442|0.27778 118443|0.38889 118444|0.36111 118445|0.44444 118446|0.48611 118447|0.375 118448|0.5 118449|0.11111 118450|0.20833 118451|0.27778 118452|0.27778 118453|0.33333 118454|0.38889 118455|0.30556 118456|0.5 118457|0.45833 118458|0.36111 118459|0.15278 118460|0.26389 118461|0.45833 118462|0.43056 118463|0.51389 118464|0.63889 118465|0.625 118466|0.5 118467|0.56944 118468|0.40278 118469|0.27778 118470|0.41667 118471|0.5 118472|0.25 118473|0.38889 118474|0.20833 118475|0.069444 118476|0.41667 118477|0.65278 118478|0.43056 118479|0.52778 118480|0.66667 118481|0.5 118482|0.51389 118483|0.51389 118484|0.5 118485|0.63889 118486|0.5 118487|0.52778 118488|0.55556 118489|0.5 118490|0.47222 118491|0.88889 118492|0.70833 118493|0.52778 118494|0.59722 118495|0.52778 118496|0.84722 118497|0.68056 118498|0.55556 118499|0.5 118500|0.66667 118501|0.73611 118502|0.41667 118503|0.27778 118504|0.72222 118505|0.63889 118506|0.66667 118507|0.65278 118508|0.56944 118509|0.69444 118510|0.73611 118511|0.5 118512|0.40278 118513|0.75 118514|0.27778 118515|0.59722 118516|0.33333 118517|0.5 118518|0.29167 118519|0.20833 118520|0.13889 118521|0.33333 118522|0.22222 118523|0 118524|0 118525|0.56944 118526|0.47222 118527|0.16667 118528|0.27778 118529|0.40278 118530|0.61111 118531|0.58333 118532|0.27778 118533|0.41667 118534|0.30556 118535|0.27778 118536|0.65278 118537|0.58333 118538|0.61111 118539|0.38889 118540|0.47222 118541|0.19444 118542|0.33333 118543|0.27778 118544|0.30556 118545|0.52778 118546|0.5 118547|0.38889 118548|0.33333 118549|0.36111 118550|0.5 118551|0.33333 118552|0.43056 118553|0.36111 118554|0.44444 118555|0.27778 118556|0.375 118557|0.58333 118558|0.58333 118559|0.33333 118560|0.22222 118561|0.375 118562|0.5 118563|0.44444 118564|0.27778 118565|0.23611 118566|0.5 118567|0.26389 118568|0.27778 118569|0.34722 118570|0.51389 118571|0.38889 118572|0.40278 118573|0.15278 118574|0.18056 118575|0.40278 118576|0.48611 118577|0.80556 118578|0.41667 118579|0.5 118580|0.69444 118581|0.73611 118582|0.52778 118583|0.58333 118584|0.30556 118585|0.72222 118586|0.76389 118587|0.75 118588|0.5 118589|0.5 118590|0.5 118591|0.54167 118592|0.54167 118593|0.43056 118594|0.61111 118595|0.5 118596|0.55556 118597|0.58333 118598|0.43056 118599|0.27778 118600|0.5 118601|0.56944 118602|0.40278 118603|0.61111 118604|0.5 118605|0.40278 118606|0.56944 118607|0.61111 118608|0.5 118609|0.59722 118610|0.26389 118611|0.65278 118612|0.5 118613|0.5 118614|0.5 118615|0.75 118616|0.86111 118617|0.55556 118618|0.44444 118619|0.5 118620|0.22222 118621|0.18056 118622|0.5 118623|0.52778 118624|0.58333 118625|0.33333 118626|0.097222 118627|0.23611 118628|0.44444 118629|0.44444 118630|0.5 118631|0.51389 118632|0.5 118633|0.54167 118634|0.51389 118635|0.43056 118636|0.72222 118637|0.5 118638|0.54167 118639|0.36111 118640|0.38889 118641|0.5 118642|0.38889 118643|0.27778 118644|0.5 118645|0.625 118646|0.36111 118647|0.27778 118648|0.73611 118649|0.43056 118650|0.23611 118651|0.40278 118652|0.27778 118653|0.44444 118654|0.73611 118655|0.56944 118656|0.63889 118657|0.80556 118658|0.36111 118659|0.5 118660|0.47222 118661|0.5 118662|0.43056 118663|0.23611 118664|0.18056 118665|0.5 118666|0.5 118667|0.33333 118668|0.38889 118669|0.40278 118670|0.41667 118671|0.27778 118672|0.23611 118673|0.5 118674|0.375 118675|0.41667 118676|0.44444 118677|0.38889 118678|0.36111 118679|0.29167 118680|0.48611 118681|0.65278 118682|0.5 118683|0.51389 118684|0.69444 118685|0.51389 118686|0.5 118687|0.5 118688|0.5 118689|0.5 118690|0.65278 118691|0.61111 118692|0.61111 118693|0.47222 118694|0.55556 118695|0.73611 118696|0.72222 118697|0.65278 118698|0.73611 118699|0.51389 118700|0.59722 118701|0.51389 118702|0.83333 118703|0.70833 118704|0.72222 118705|0.54167 118706|0.58333 118707|0.72222 118708|0.61111 118709|0.63889 118710|0.73611 118711|0.61111 118712|0.48611 118713|0.5 118714|0.81944 118715|0.73611 118716|0.61111 118717|0.25 118718|0.27778 118719|0.34722 118720|0.5 118721|0.61111 118722|0.80556 118723|0.5 118724|0.27778 118725|0.20833 118726|0.5 118727|0.5 118728|0.36111 118729|0.5 118730|0.33333 118731|0.18056 118732|0.375 118733|0.5 118734|0.55556 118735|0.38889 118736|0.45833 118737|0.5 118738|0.18056 118739|0.44444 118740|0.41667 118741|0.61111 118742|0.125 118743|0.30556 118744|0.25 118745|0.66667 118746|0.44444 118747|0.5 118748|0.44444 118749|0.38889 118750|0.44444 118751|0.30556 118752|0.23611 118753|0.22222 118754|0.55556 118755|0.36111 118756|0.43056 118757|0.63889 118758|0.45833 118759|0.61111 118760|0.59722 118761|0.47222 118762|0.5 118763|0.51389 118764|0.47222 118765|0.5 118766|0.375 118767|0.38889 118768|0.25 118769|0.45833 118770|0.31944 118771|0.36111 118772|0.18056 118773|0.33333 118774|0.15278 118775|0.26389 118776|0.41667 118777|0.61111 118778|0.25 118779|0.25 118780|0.43056 118781|0.20833 118782|0.20833 118783|0.27778 118784|0.22222 118785|0.25 118786|0.15278 118787|0.33333 118788|0.20833 118789|0.38889 118790|0.55556 118791|0.48611 118792|0.43056 118793|0.70833 118794|0.55556 118795|0.5 118796|0.5 118797|0.44444 118798|0.36111 118799|0.43056 118800|0.47222 118801|0.5 118802|0.15278 118803|0.44444 118804|0.38889 118805|0.56944 118806|0.54167 118807|0.5 118808|0.5 118809|0.5 118810|0.30556 118811|0.40278 118812|0.13889 118813|0.625 118814|0.375 118815|0.5 118816|0.66667 118817|0.5 118818|0.40278 118819|0.34722 118820|0.41667 118821|0.63889 118822|0.61111 118823|0.44444 118824|0.5 118825|0.52778 118826|0.51389 118827|0.5 118828|0.59722 118829|0.65278 118830|0.76389 118831|0.27778 118832|0.55556 118833|0.5 118834|0.63889 118835|0.48611 118836|0.56944 118837|0.56944 118838|0.72222 118839|0.69444 118840|0.44444 118841|0.51389 118842|0.41667 118843|0.51389 118844|0.63889 118845|0.54167 118846|0.45833 118847|0.5 118848|0.5 118849|0.5 118850|0.5 118851|0.5 118852|0.55556 118853|0.45833 118854|0.69444 118855|0.5 118856|0.63889 118857|0.54167 118858|0.51389 118859|0.59722 118860|0.80556 118861|0.72222 118862|0.48611 118863|0.66667 118864|0.33333 118865|0.38889 118866|0.70833 118867|0.625 118868|0.58333 118869|0.44444 118870|0.33333 118871|0.22222 118872|0.47222 118873|0.47222 118874|0.52778 118875|0.80556 118876|0.54167 118877|0.43056 118878|0.65278 118879|0.79167 118880|0.125 118881|0.68056 118882|0.77778 118883|0.55556 118884|0.70833 118885|0.5 118886|0.80556 118887|0.625 118888|0.61111 118889|0.5 118890|0.65278 118891|0.65278 118892|0.81944 118893|0.66667 118894|0.5 118895|0.55556 118896|0.5 118897|0.5 118898|0.73611 118899|0.63889 118900|0.5 118901|0.625 118902|0.61111 118903|0.5 118904|0.375 118905|0.83333 118906|0.70833 118907|0.59722 118908|0.65278 118909|0.81944 118910|0.5 118911|0.59722 118912|0.40278 118913|0.68056 118914|0.63889 118915|0.61111 118916|0.56944 118917|0.69444 118918|0.61111 118919|0.34722 118920|0.26389 118921|0.59722 118922|0.5 118923|0.5 118924|0.5 118925|0.5 118926|0.5 118927|0.5 118928|0.5 118929|0.5 118930|0.5 118931|0.30556 118932|0.40278 118933|0.48611 118934|0.45833 118935|0.5 118936|0.58333 118937|0.41667 118938|0.52778 118939|0.5 118940|0.63889 118941|0.45833 118942|0.48611 118943|0.52778 118944|0.55556 118945|0.59722 118946|0.76389 118947|0.86111 118948|0.75 118949|0.48611 118950|0.5 118951|0.5 118952|0.25 118953|0.69444 118954|0.5 118955|0.31944 118956|0.5 118957|0.5 118958|0.44444 118959|0.5 118960|0.75 118961|0.86111 118962|0.5 118963|0.51389 118964|0.58333 118965|0.52778 118966|0.75 118967|0.76389 118968|0.84722 118969|0.72222 118970|0.52778 118971|0.27778 118972|0.55556 118973|0.5 118974|0.55556 118975|0.5 118976|0.52778 118977|0.29167 118978|0.23611 118979|0.63889 118980|0.5 118981|0.72222 118982|0.44444 118983|0.70833 118984|0.51389 118985|0.59722 118986|0.79167 118987|0.75 118988|0.58333 118989|0.56944 118990|0.375 118991|0.41667 118992|0.69444 118993|0.48611 118994|0.69444 118995|0.63889 118996|0.5 118997|0.80556 118998|0.54167 118999|0.63889 119000|0.55556 119001|0.5 119002|0.55556 119003|0.5 119004|0.55556 119005|0.72222 119006|0.44444 119007|0.875 119008|0.75 119009|0.54167 119010|0.20833 119011|0.38889 119012|0.73611 119013|0.27778 119014|0.56944 119015|0.61111 119016|0.5 119017|0.61111 119018|0.56944 119019|0.44444 119020|0.31944 119021|0.5 119022|0.41667 119023|0.40278 119024|0.5 119025|0.5 119026|0.72222 119027|0.54167 119028|0.55556 119029|0.5 119030|0.51389 119031|0.75 119032|0.375 119033|0.36111 119034|0.66667 119035|0.44444 119036|0.5 119037|0.59722 119038|0.38889 119039|0.48611 119040|0.59722 119041|0.63889 119042|0.72222 119043|0.70833 119044|0.5 119045|0.66667 119046|0.44444 119047|0.33333 119048|0.61111 119049|0.47222 119050|0.5 119051|0.86111 119052|0.5 119053|0.66667 119054|0.36111 119055|0.38889 119056|0.5 119057|0.61111 119058|0.47222 119059|0.40278 119060|0.52778 119061|0.27778 119062|0.58333 119063|0.20833 119064|0.36111 119065|0.31944 119066|0.76389 119067|0.97222 119068|0.31944 119069|0.41667 119070|0.5 119071|0.55556 119072|0.47222 119073|0.79167 119074|0.73611 119075|0.75 119076|0.81944 119077|0.72222 119078|0.69444 119079|0.66667 119080|0.375 119081|0.625 119082|0.56944 119083|0.5 119084|0.81944 119085|0.5 119086|0.73611 119087|0.625 119088|0.43056 119089|0.5 119090|0.79167 119091|0.76389 119092|0.65278 119093|0.79167 119094|0.70833 119095|0.73611 119096|0.40278 119097|0.66667 119098|0.625 119099|0.79167 119100|0.79167 119101|0.61111 119102|0.69444 119103|0.52778 119104|0.5 119105|0.51389 119106|0.68056 119107|0.61111 119108|0.72222 119109|0.56944 119110|0.58333 119111|0.61111 119112|0.625 119113|0.56944 119114|0.65278 119115|0.68056 119116|0.58333 119117|0.59722 119118|0.68056 119119|0.5 119120|0.75 119121|0.73611 119122|0.70833 119123|0.41667 119124|0.86111 119125|0.79167 119126|0.72222 119127|0.875 119128|0.58333 119129|0.76389 119130|0.81944 119131|0.59722 119132|0.70833 119133|0.75 119134|0.81944 119135|0.75 119136|0.069444 119137|0.69444 119138|0.72222 119139|0.45833 119140|0.77778 119141|0.93056 119142|0.91667 119143|0.73611 119144|0.5 119145|0.61111 119146|0.52778 119147|0.36111 119148|0.65278 119149|0.47222 119150|0.34722 119151|0.58333 119152|0.5 119153|0.44444 119154|0.59722 119155|0.59722 119156|0.875 119157|0.58333 119158|0.5 119159|0.63889 119160|0.79167 119161|0.51389 119162|0.65278 119163|0.52778 119164|0.66667 119165|0.77778 119166|0.31944 119167|0.70833 119168|0.66667 119169|0.79167 119170|0.58333 119171|0.5 119172|0.65278 119173|0.56944 119174|0.55556 119175|0.55556 119176|0.73611 119177|0.72222 119178|0.66667 119179|0.48611 119180|0.5 119181|0.52778 119182|0.5 119183|0.16667 119184|0.61111 119185|0.56944 119186|0.61111 119187|0.69444 119188|0.73611 119189|0.625 119190|0.72222 119191|0.63889 119192|0.91667 119193|0.72222 119194|0.77778 119195|0.73611 119196|0.625 119197|0.70833 119198|0.65278 119199|0.47222 119200|0.5 119201|0.54167 119202|0.59722 119203|0.59722 119204|0.625 119205|0.45833 119206|0.55556 119207|0.5 119208|0.44444 119209|0.5 119210|0.88889 119211|0.66667 119212|0.65278 119213|0.84722 119214|0.30556 119215|0.125 119216|0.625 119217|0.61111 119218|0.5 119219|0.5 119220|0.055556 119221|0.52778 119222|0.41667 119223|0.27778 119224|0.625 119225|0.58333 119226|0.41667 119227|0.72222 119228|0.875 119229|0.55556 119230|0.75 119231|0.77778 119232|0.70833 119233|0.68056 119234|0.36111 119235|0.16667 119236|0.38889 119237|0.84722 119238|0.77778 119239|0.5 119240|0.59722 119241|0.51389 119242|0.63889 119243|0.5 119244|0.375 119245|0.16667 119246|0.43056 119247|0.76389 119248|0.88889 119249|0.65278 119250|0.66667 119251|0.54167 119252|0.76389 119253|0.5 119254|0.54167 119255|0.61111 119256|0.40278 119257|0.5 119258|0.33333 119259|0.55556 119260|0.76389 119261|0.5 119262|0.41667 119263|0.38889 119264|0.5 119265|0.5 119266|0.5 119267|0.45833 119268|0.55556 119269|0.63889 119270|0.47222 119271|0.45833 119272|0.55556 119273|0.16667 119274|0.48611 119275|0.5 119276|0.63889 119277|0.75 119278|0.81944 119279|0.76389 119280|0.77778 119281|0.79167 119282|0.41667 119283|0.59722 119284|0.5 119285|0.61111 119286|0.43056 119287|0.5 119288|0.5 119289|0.51389 119290|0.5 119291|0.76389 119292|0.625 119293|0.56944 119294|0.69444 119295|0.72222 119296|0.76389 119297|0.79167 119298|0.5 119299|0.59722 119300|0.43056 119301|0.65278 119302|0.5 119303|0.52778 119304|0.5 119305|0.72222 119306|0.40278 119307|0.79167 119308|0.41667 119309|0.54167 119310|0.31944 119311|0.5 119312|0.5 119313|0.61111 119314|0.30556 119315|0.5 119316|0.77778 119317|0.58333 119318|0.56944 119319|0.55556 119320|0.45833 119321|0.625 119322|0.56944 119323|0.61111 119324|0.51389 119325|0.18056 119326|0.61111 119327|0.5 119328|0.5 119329|0.25 119330|0.41667 119331|0.26389 119332|0.56944 119333|0.44444 119334|0.5 119335|0.79167 119336|0.48611 119337|0.41667 119338|0.69444 119339|0.63889 119340|0.31944 119341|0.23611 119342|0.22222 119343|0.47222 119344|0.27778 119345|0.70833 119346|0.38889 119347|0.68056 119348|0.55556 119349|0.5 119350|0.66667 119351|0.73611 119352|0.51389 119353|0.61111 119354|0.19444 119355|0.48611 119356|0.58333 119357|0.43056 119358|0.66667 119359|0.36111 119360|0.44444 119361|0.55556 119362|0.52778 119363|0.63889 119364|0.5 119365|0.5 119366|0.5 119367|0.45833 119368|0.44444 119369|0.70833 119370|0.61111 119371|0.625 119372|0.45833 119373|0.72222 119374|0.43056 119375|0.44444 119376|0.5 119377|0.63889 119378|0.58333 119379|0.52778 119380|0.61111 119381|0.47222 119382|0.55556 119383|0.54167 119384|0.52778 119385|0.56944 119386|0.625 119387|0.43056 119388|0.54167 119389|0.83333 119390|0.68056 119391|0.23611 119392|0.22222 119393|0.36111 119394|0.54167 119395|0.55556 119396|0.5 119397|0.66667 119398|0.81944 119399|0.77778 119400|0.38889 119401|0.5 119402|0.59722 119403|0.56944 119404|0.47222 119405|0.43056 119406|0.59722 119407|0.45833 119408|0.625 119409|0.5 119410|0.36111 119411|0.5 119412|0.65278 119413|0.5 119414|0.19444 119415|0.5 119416|0.36111 119417|0.63889 119418|0.45833 119419|0.56944 119420|0.34722 119421|0.65278 119422|0.77778 119423|0.48611 119424|0.58333 119425|0.63889 119426|0.29167 119427|0.65278 119428|0.56944 119429|0.51389 119430|0.56944 119431|0.72222 119432|0.56944 119433|0.58333 119434|0.79167 119435|0.5 119436|0.45833 119437|0.51389 119438|0.43056 119439|0.69444 119440|0.36111 119441|0.52778 119442|0.5 119443|0.5 119444|0.5 119445|0.55556 119446|0.55556 119447|0.59722 119448|0.63889 119449|0.51389 119450|0.51389 119451|0.47222 119452|0.38889 119453|0.625 119454|0.625 119455|0.63889 119456|0.58333 119457|0.44444 119458|0.44444 119459|0.33333 119460|0.23611 119461|0.875 119462|0.86111 119463|0.75 119464|0.79167 119465|0.81944 119466|0.79167 119467|0.84722 119468|0.66667 119469|0.69444 119470|0.41667 119471|0.29167 119472|0.16667 119473|0.375 119474|0.88889 119475|0.44444 119476|0.31944 119477|0.59722 119478|0.68056 119479|0.47222 119480|0.51389 119481|0.73611 119482|0.55556 119483|0.84722 119484|0.72222 119485|0.54167 119486|0.52778 119487|0.84722 119488|0.083333 119489|0.19444 119490|0.61111 119491|0.20833 119492|0.54167 119493|0.31944 119494|0.55556 119495|0.51389 119496|0.54167 119497|0.52778 119498|0.79167 119499|0.69444 119500|0.5 119501|0.5 119502|0.27778 119503|0.33333 119504|0.5 119505|0.70833 119506|0.72222 119507|0.48611 119508|0.41667 119509|0.52778 119510|0.52778 119511|0.63889 119512|0.61111 119513|0.54167 119514|0.63889 119515|0.69444 119516|0.19444 119517|0.51389 119518|0.5 119519|0.66667 119520|0.44444 119521|0.5 119522|0.48611 119523|0.51389 119524|0.5 119525|0.5 119526|0.5 119527|0.51389 119528|0.47222 119529|0.63889 119530|0.5 119531|0.54167 119532|0.47222 119533|0.47222 119534|0.5 119535|0.5 119536|0.83333 119537|0.48611 119538|0.33333 119539|0.45833 119540|0.51389 119541|0.47222 119542|0.55556 119543|0.44444 119544|0.5 119545|0.40278 119546|0.41667 119547|0.38889 119548|0.34722 119549|0.29167 119550|0.34722 119551|0.27778 119552|0.47222 119553|0.41667 119554|0.47222 119555|0.58333 119556|0.55556 119557|0.5 119558|0.72222 119559|0.56944 119560|0.61111 119561|0.43056 119562|0.68056 119563|0.56944 119564|0.61111 119565|0.44444 119566|0.61111 119567|0.47222 119568|0.125 119569|0.68056 119570|0.5 119571|0.51389 119572|0.56944 119573|0.47222 119574|0.55556 119575|0.61111 119576|0.80556 119577|0.56944 119578|0.75 119579|0.54167 119580|0.66667 119581|0.80556 119582|0.44444 119583|0.76389 119584|0.5 119585|0.5 119586|0.52778 119587|0.58333 119588|0.54167 119589|0.70833 119590|0.5 119591|0.5 119592|0.63889 119593|0.27778 119594|0.44444 119595|0.5 119596|0.48611 119597|0.40278 119598|0.75 119599|0.69444 119600|1 119601|0.73611 119602|0.81944 119603|0.55556 119604|0.59722 119605|0.5 119606|0.75 119607|0.45833 119608|0.013889 119609|0.125 119610|0.47222 119611|0.52778 119612|0.84722 119613|0.66667 119614|0.80556 119615|0.68056 119616|0.56944 119617|0.54167 119618|0.5 119619|0.77778 119620|0.55556 119621|0.44444 119622|0.38889 119623|0.58333 119624|0.5 119625|0.45833 119626|0.5 119627|0.48611 119628|0.47222 119629|0.58333 119630|0.625 119631|0.44444 119632|0.36111 119633|0.44444 119634|0.29167 119635|0.29167 119636|0.22222 119637|0.23611 119638|0.13889 119639|0.16667 119640|0.25 119641|0.15278 119642|0.26389 119643|0.22222 119644|0.375 119645|0.16667 119646|0.13889 119647|0.16667 119648|0.29167 119649|0.25 119650|0.29167 119651|0.18056 119652|0.25 119653|0.47222 119654|0.41667 119655|0.36111 119656|0.58333 119657|0.61111 119658|0.55556 119659|0.44444 119660|0.54167 119661|0.65278 119662|0.625 119663|0.47222 119664|0.41667 119665|0.63889 119666|0.70833 119667|0.69444 119668|0.43056 119669|0.34722 119670|0.75 119671|0.41667 119672|0.43056 119673|0.38889 119674|0.47222 119675|0.44444 119676|0.63889 119677|0.68056 119678|0.5 119679|0.54167 119680|0.44444 119681|0.61111 119682|0.18056 119683|0.51389 119684|0.34722 119685|0.45833 119686|0.44444 119687|0.44444 119688|0.5 119689|0.45833 119690|0.30556 119691|0.16667 119692|0.33333 119693|0.36111 119694|0.34722 119695|0.22222 119696|0.26389 119697|0.48611 119698|0.33333 119699|0.13889 119700|0.20833 119701|0.30556 119702|0.30556 119703|0.125 119704|0.26389 119705|0.23611 119706|0.29167 119707|0.5 119708|0.48611 119709|0.26389 119710|0.52778 119711|0.26389 119712|0.33333 119713|0.097222 119714|0.38889 119715|0.44444 119716|0.5 119717|0.63889 119718|0.75 119719|0.56944 119720|0.44444 119721|0.52778 119722|0.54167 119723|0.73611 119724|0.51389 119725|0.5 119726|0.44444 119727|0.52778 119728|0.625 119729|0.48611 119730|0.22222 119731|0.625 119732|0.70833 119733|0.55556 119734|0.44444 119735|0.44444 119736|0.54167 119737|0.66667 119738|0.48611 119739|0.44444 119740|0.48611 119741|0.58333 119742|0.44444 119743|0.56944 119744|0.5 119745|0.69444 119746|0.29167 119747|0.43056 119748|0.38889 119749|0.625 119750|0.51389 119751|0.58333 119752|0.5 119753|0.625 119754|0.84722 119755|0.88889 119756|0.65278 119757|0.44444 119758|0.65278 119759|0.5 119760|0.5 119761|0.55556 119762|0.52778 119763|0.55556 119764|0.5 119765|0.77778 119766|0.5 119767|0.5 119768|0.40278 119769|0.33333 119770|0.34722 119771|0.25 119772|0.5 119773|0.79167 119774|0.66667 119775|0.38889 119776|0.94444 119777|0.79167 119778|0.16667 119779|0.26389 119780|0.31944 119781|0.375 119782|0.41667 119783|0.5 119784|0.5 119785|0.31944 119786|0.375 119787|0.63889 119788|0.34722 119789|0.90278 119790|0.83333 119791|0.83333 119792|0.75 119793|0.58333 119794|0.73611 119795|0.68056 119796|0.80556 119797|0.77778 119798|0.63889 119799|0.51389 119800|0.40278 119801|0.5 119802|0.68056 119803|0.63889 119804|0.5 119805|0.66667 119806|0.70833 119807|0.90278 119808|0.40278 119809|0.47222 119810|0.22222 119811|0.5 119812|0.40278 119813|0.61111 119814|0.43056 119815|0.54167 119816|0.70833 119817|0.66667 119818|0.61111 119819|0.69444 119820|0.875 119821|0.45833 119822|0.72222 119823|0.51389 119824|0.59722 119825|0.54167 119826|0.20833 119827|0.27778 119828|0.375 119829|0.59722 119830|0.61111 119831|0.76389 119832|0.5 119833|0.52778 119834|0.41667 119835|0.5 119836|0.55556 119837|0.34722 119838|0.5 119839|0.5 119840|0.5 119841|0.55556 119842|0.51389 119843|0.88889 119844|0.58333 119845|0.80556 119846|0.5 119847|0.30556 119848|0.31944 119849|0.31944 119850|0.45833 119851|0.48611 119852|0.5 119853|0.52778 119854|0.625 119855|0.69444 119856|0.75 119857|0.51389 119858|0.70833 119859|0.61111 119860|0.55556 119861|0.25 119862|0.22222 119863|0.34722 119864|0.40278 119865|0.20833 119866|0.26389 119867|0.47222 119868|0.45833 119869|0.36111 119870|0.5 119871|0.625 119872|0.31944 119873|0.27778 119874|0.63889 119875|0.31944 119876|0.54167 119877|0.73611 119878|0.27778 119879|0.59722 119880|0.59722 119881|0.75 119882|0.36111 119883|0.41667 119884|0.83333 119885|0.34722 119886|0.58333 119887|0.31944 119888|0.31944 119889|0.54167 119890|0.43056 119891|0.5 119892|0.41667 119893|0.41667 119894|0.29167 119895|0.16667 119896|0.51389 119897|0.88889 119898|0.65278 119899|0.22222 119900|0.31944 119901|0.19444 119902|0.38889 119903|0.43056 119904|0.45833 119905|0.59722 119906|0.55556 119907|0.25 119908|0.54167 119909|0.30556 119910|0.51389 119911|0.055556 119912|0.43056 119913|0.22222 119914|0.19444 119915|0.34722 119916|0.18056 119917|0.38889 119918|0.59722 119919|0.5 119920|0.5 119921|0.76389 119922|0.75 119923|0.61111 119924|0.34722 119925|0.22222 119926|0.40278 119927|0.5 119928|0.45833 119929|0.44444 119930|0.61111 119931|0.43056 119932|0.30556 119933|0.18056 119934|0.38889 119935|0.33333 119936|0.66667 119937|0.63889 119938|0.625 119939|0.66667 119940|0.27778 119941|0.5 119942|0.68056 119943|0.51389 119944|0.59722 119945|0.5 119946|0.48611 119947|0.44444 119948|0.54167 119949|0.73611 119950|0.27778 119951|0.16667 119952|0.33333 119953|0.55556 119954|0.55556 119955|0.5 119956|0.55556 119957|0.5 119958|0.48611 119959|0.86111 119960|0.58333 119961|0.5 119962|0.5 119963|0.44444 119964|0.5 119965|0.5 119966|0.40278 119967|0.47222 119968|0.5 119969|0.5 119970|0.5 119971|0.75 119972|0.38889 119973|0.45833 119974|0.27778 119975|0.51389 119976|0.52778 119977|0.58333 119978|0.52778 119979|0.5 119980|0.66667 119981|0.59722 119982|0.44444 119983|0.47222 119984|0.5 119985|0.625 119986|0.54167 119987|0.77778 119988|0.73611 119989|0.44444 119990|0.66667 119991|0.5 119992|0.44444 119993|0.375 119994|0.54167 119995|0.44444 119996|0.5 119997|0.48611 119998|0.61111 119999|0.58333 120000|0.54167 120001|0.44444 120002|0.18056 120003|0.34722 120004|0.15278 120005|0.43056 120006|0.43056 120007|0.38889 120008|0.83333 120009|0.58333 120010|0.5 120011|0.5 120012|0.5 120013|0.40278 120014|0.47222 120015|0.625 120016|0.77778 120017|0.77778 120018|0.58333 120019|0.5 120020|0.51389 120021|0.5 120022|0.68056 120023|0.80556 120024|0.65278 120025|0.52778 120026|0.68056 120027|0.77778 120028|0.41667 120029|0.375 120030|0.61111 120031|0.59722 120032|0.51389 120033|0.61111 120034|0.23611 120035|0.58333 120036|0.79167 120037|0.31944 120038|0.51389 120039|0.54167 120040|0.5 120041|0.69444 120042|0.55556 120043|0.5 120044|0.5 120045|0.44444 120046|0.70833 120047|0.41667 120048|0.5 120049|0.55556 120050|0.47222 120051|0.48611 120052|0.5 120053|0.5 120054|0.5 120055|0.40278 120056|0.55556 120057|0.30556 120058|0.15278 120059|0.76389 120060|0.56944 120061|0.55556 120062|0.083333 120063|0.44444 120064|0.54167 120065|0.47222 120066|0.47222 120067|0.5 120068|0.5 120069|0.81944 120070|0.43056 120071|0.44444 120072|0.375 120073|0.33333 120074|0.5 120075|0.20833 120076|0.26389 120077|0.5 120078|0.55556 120079|0.58333 120080|0.84722 120081|0.36111 120082|0.625 120083|0.59722 120084|0.58333 120085|0.61111 120086|0.63889 120087|0.5 120088|0.40278 120089|0.41667 120090|0.33333 120091|0.76389 120092|0.11111 120093|0.11111 120094|0.55556 120095|0.38889 120096|0.5 120097|0.38889 120098|0.19444 120099|0.55556 120100|0.56944 120101|0.70833 120102|0.63889 120103|0.33333 120104|0.68056 120105|0.86111 120106|0.61111 120107|0.75 120108|0.76389 120109|0.58333 120110|0.63889 120111|0.79167 120112|0.45833 120113|0.5 120114|0.52778 120115|0.27778 120116|0.44444 120117|0.52778 120118|0.66667 120119|0.55556 120120|0.55556 120121|0.58333 120122|0.23611 120123|0.58333 120124|0.66667 120125|0.79167 120126|0.55556 120127|0.51389 120128|0.34722 120129|0.11111 120130|0.375 120131|0.61111 120132|0.69444 120133|0.90278 120134|0.80556 120135|0.83333 120136|0.83333 120137|0.81944 120138|0.875 120139|0.72222 120140|0.625 120141|0.72222 120142|0.59722 120143|0.70833 120144|0.5 120145|0.38889 120146|0.52778 120147|0.5 120148|0.5 120149|0.61111 120150|0.38889 120151|0.5 120152|0.72222 120153|0.55556 120154|0.72222 120155|0.097222 120156|0.5 120157|0.52778 120158|0.5 120159|0.63889 120160|0.5 120161|0.5 120162|0.5 120163|0.5 120164|0.20833 120165|0.5 120166|0.5 120167|0.5 120168|0.38889 120169|0.5 120170|0.5 120171|0.47222 120172|0.59722 120173|0.5 120174|0.5 120175|0.40278 120176|0.52778 120177|0.51389 120178|0.18056 120179|0.13889 120180|0.36111 120181|0.27778 120182|0.5 120183|0.38889 120184|0.54167 120185|0.55556 120186|0.55556 120187|0.70833 120188|0.73611 120189|0.81944 120190|0.72222 120191|0.66667 120192|0.51389 120193|0.5 120194|0.51389 120195|0.63889 120196|0.5 120197|0.56944 120198|0.41667 120199|0.52778 120200|0.65278 120201|0.65278 120202|0.38889 120203|0.26389 120204|0.44444 120205|0.31944 120206|0.33333 120207|0.47222 120208|0.47222 120209|0.43056 120210|0.33333 120211|0.27778 120212|0.31944 120213|0.55556 120214|0.63889 120215|0.54167 120216|0.375 120217|0.45833 120218|0.5 120219|0.5 120220|0.33333 120221|0.5 120222|0.43056 120223|0.68056 120224|0.65278 120225|0.26389 120226|0.33333 120227|0.38889 120228|0.33333 120229|0.26389 120230|0.625 120231|0.61111 120232|0.63889 120233|0.83333 120234|0.47222 120235|0.15278 120236|0.65278 120237|0.94444 120238|0.98611 120239|0.66667 120240|0.66667 120241|0.58333 120242|0.5 120243|0.5 120244|0.30556 120245|0.5 120246|0.44444 120247|0.5 120248|0.41667 120249|0.25 120250|0.55556 120251|0.56944 120252|0.61111 120253|0.41667 120254|0.47222 120255|0.5 120256|0.34722 120257|0.51389 120258|0.38889 120259|0.73611 120260|0.5 120261|0.375 120262|0.51389 120263|0.27778 120264|0.63889 120265|0.76389 120266|0.41667 120267|0.27778 120268|0.52778 120269|0.55556 120270|0.52778 120271|0.48611 120272|0.22222 120273|0.26389 120274|0.38889 120275|0.65278 120276|0.48611 120277|0.55556 120278|0.48611 120279|0.55556 120280|0.66667 120281|0.59722 120282|0.5 120283|0.5 120284|0.56944 120285|0.73611 120286|0.70833 120287|0.66667 120288|0.5 120289|0.69444 120290|0.55556 120291|0.44444 120292|0.58333 120293|0.59722 120294|0.51389 120295|0.625 120296|0.33333 120297|0.38889 120298|0.31944 120299|0.30556 120300|0.44444 120301|0.125 120302|0.20833 120303|0.5 120304|0.44444 120305|0.77778 120306|0.5 120307|0.73611 120308|0.58333 120309|0.61111 120310|0.68056 120311|0.5 120312|0.38889 120313|0.5 120314|0.5 120315|0.61111 120316|0.5 120317|0.5 120318|0.52778 120319|0.55556 120320|0.34722 120321|0.40278 120322|0.125 120323|0.58333 120324|0.23611 120325|0.25 120326|0.16667 120327|0.56944 120328|0.55556 120329|0.48611 120330|0.5 120331|0.52778 120332|0.61111 120333|0.5 120334|0.51389 120335|0.5 120336|0.52778 120337|0.66667 120338|0.45833 120339|0.38889 120340|0.5 120341|0.41667 120342|0.5 120343|0.54167 120344|0.45833 120345|0.5 120346|0.5 120347|0.625 120348|0.43056 120349|0.51389 120350|0.75 120351|0.51389 120352|0.54167 120353|0.73611 120354|0.38889 120355|0.375 120356|0.59722 120357|0.5 120358|0.5 120359|0.26389 120360|0.69444 120361|0.5 120362|0.54167 120363|0.5 120364|0.44444 120365|0.5 120366|0.5 120367|0.13889 120368|0.5 120369|0.47222 120370|0.5 120371|0.81944 120372|0.47222 120373|0.5 120374|0.36111 120375|0.63889 120376|0.43056 120377|0.56944 120378|0.33333 120379|0.48611 120380|0.5 120381|0.5 120382|0.79167 120383|0.59722 120384|0.5 120385|0.5 120386|0.5 120387|0.5 120388|0.72222 120389|0.66667 120390|0.61111 120391|0.45833 120392|0.5 120393|0.51389 120394|0.5 120395|0.61111 120396|0.56944 120397|0.72222 120398|0.55556 120399|0.81944 120400|0.47222 120401|0.33333 120402|0.5 120403|0.65278 120404|0.58333 120405|0.58333 120406|0.5 120407|0.51389 120408|0.5 120409|0.63889 120410|0.61111 120411|0.41667 120412|0.48611 120413|0.69444 120414|0.36111 120415|0.54167 120416|0.44444 120417|0.5 120418|0.68056 120419|0.66667 120420|0.45833 120421|0.54167 120422|0.5 120423|0.51389 120424|0.68056 120425|0.5 120426|0.33333 120427|0.5 120428|0.22222 120429|0.51389 120430|0.34722 120431|0.59722 120432|0.55556 120433|0.5 120434|0.5 120435|0.72222 120436|0.84722 120437|0.88889 120438|0.5 120439|0.5 120440|0.56944 120441|0.75 120442|0.47222 120443|0.91667 120444|0.625 120445|0.25 120446|0.61111 120447|0.75 120448|0.55556 120449|0.59722 120450|0.65278 120451|0.48611 120452|0.58333 120453|0.48611 120454|0.51389 120455|0.26389 120456|0.76389 120457|0.5 120458|0.63889 120459|0.33333 120460|0.54167 120461|0.875 120462|0.625 120463|0.51389 120464|0.5 120465|0.5 120466|0.55556 120467|0.52778 120468|0.33333 120469|0.52778 120470|0.5 120471|0.52778 120472|0.5 120473|0.22222 120474|0.31944 120475|0.59722 120476|0.45833 120477|0.59722 120478|0.33333 120479|0.625 120480|0.41667 120481|0.68056 120482|0.72222 120483|0.38889 120484|0.52778 120485|0.61111 120486|0.55556 120487|0.58333 120488|0.76389 120489|0.55556 120490|0.5 120491|0.68056 120492|0.33333 120493|0.5 120494|0.5 120495|0.41667 120496|0.5 120497|0.61111 120498|0.61111 120499|0.25 120500|0.51389 120501|0.41667 120502|0.5 120503|0.43056 120504|0.5 120505|0.63889 120506|0.55556 120507|0.5 120508|0.375 120509|0.40278 120510|0.38889 120511|0.51389 120512|0.70833 120513|0.19444 120514|0.73611 120515|0.22222 120516|0.66667 120517|0.44444 120518|0.5 120519|0.5 120520|0.68056 120521|0.31944 120522|0.54167 120523|0.38889 120524|0.5 120525|0.5 120526|0.625 120527|0.5 120528|0.47222 120529|0.76389 120530|0.52778 120531|0.55556 120532|0.72222 120533|0.5 120534|0.52778 120535|0.36111 120536|0.47222 120537|0.5 120538|0.375 120539|0.51389 120540|0.30556 120541|0.5 120542|0.36111 120543|0.33333 120544|0.5 120545|0.5 120546|0.16667 120547|0.5 120548|0.44444 120549|0.52778 120550|0.5 120551|0.45833 120552|0.36111 120553|0.29167 120554|0.41667 120555|0.33333 120556|0.72222 120557|0.29167 120558|0.56944 120559|0.34722 120560|0.5 120561|0.18056 120562|0.48611 120563|0.47222 120564|0.48611 120565|0.38889 120566|0.41667 120567|0.61111 120568|0.33333 120569|0.58333 120570|0.54167 120571|0.59722 120572|0.76389 120573|0.72222 120574|0.5 120575|0.375 120576|0.22222 120577|0.66667 120578|0.48611 120579|0.56944 120580|0.77778 120581|0.59722 120582|0.38889 120583|0.52778 120584|0.38889 120585|0.29167 120586|0.27778 120587|0.19444 120588|0.33333 120589|0.55556 120590|0.16667 120591|0.375 120592|0.55556 120593|0.43056 120594|0.5 120595|0.5 120596|0.51389 120597|0.69444 120598|0.77778 120599|0.5 120600|0.5 120601|0.51389 120602|0.29167 120603|0.11111 120604|0.40278 120605|0.625 120606|0.76389 120607|0.52778 120608|0.69444 120609|0.625 120610|0.5 120611|0.5 120612|0.58333 120613|0.55556 120614|0.52778 120615|0.5 120616|0.5 120617|0.47222 120618|0.5 120619|0.43056 120620|0.5 120621|0.65278 120622|0.48611 120623|0.38889 120624|0.45833 120625|0.54167 120626|0.65278 120627|0.56944 120628|0.5 120629|0.625 120630|0.36111 120631|0.56944 120632|0.54167 120633|0.63889 120634|0.55556 120635|0.5 120636|0.5 120637|0.88889 120638|0.65278 120639|0.81944 120640|0.77778 120641|0.77778 120642|0.66667 120643|0.59722 120644|0.54167 120645|0.69444 120646|0.58333 120647|0.56944 120648|0.5 120649|0.69444 120650|0.51389 120651|0.52778 120652|0.30556 120653|0.375 120654|0.20833 120655|0.51389 120656|0.38889 120657|0.5 120658|0.55556 120659|0.5 120660|0.5 120661|0.63889 120662|0.5 120663|0.5 120664|0.65278 120665|0.5 120666|0.51389 120667|0.54167 120668|0.5 120669|0.5 120670|0.45833 120671|0.5 120672|0.44444 120673|0.5 120674|0.38889 120675|0.5 120676|0.48611 120677|0.38889 120678|0.70833 120679|0.5 120680|0.375 120681|0.5 120682|0.41667 120683|0.40278 120684|0.11111 120685|0.47222 120686|0.52778 120687|0.55556 120688|0.52778 120689|0.34722 120690|0.69444 120691|0.48611 120692|0.65278 120693|0.54167 120694|0.5 120695|0.5 120696|0.47222 120697|0.52778 120698|0.56944 120699|0.75 120700|0.5 120701|0.5 120702|0.5 120703|0.5 120704|0.31944 120705|0.625 120706|0.55556 120707|0.33333 120708|0.47222 120709|0.80556 120710|0.5 120711|0.43056 120712|0.48611 120713|0.52778 120714|0.58333 120715|0.36111 120716|0.52778 120717|0.5 120718|0.63889 120719|0.43056 120720|0.68056 120721|0.73611 120722|0.41667 120723|0.31944 120724|0.68056 120725|0.27778 120726|0.44444 120727|0.5 120728|0.51389 120729|0.5 120730|0.54167 120731|0.40278 120732|0.51389 120733|0.5 120734|0.79167 120735|0.51389 120736|0.5 120737|0.75 120738|0.5 120739|0.40278 120740|0.5 120741|0.63889 120742|0.65278 120743|0.5 120744|0.65278 120745|0.56944 120746|0.48611 120747|0.43056 120748|0.34722 120749|0.54167 120750|0.44444 120751|0.5 120752|0.47222 120753|0.375 120754|0.54167 120755|0.5 120756|0.51389 120757|0.5 120758|0.61111 120759|0.33333 120760|0.61111 120761|0.83333 120762|0.5 120763|0.40278 120764|0.52778 120765|0.47222 120766|0.44444 120767|0.5 120768|0.41667 120769|0.47222 120770|0.45833 120771|0.58333 120772|0.5 120773|0.52778 120774|0.5 120775|0.54167 120776|0.55556 120777|0.52778 120778|0.58333 120779|0.5 120780|0.58333 120781|0.55556 120782|0.5 120783|0.52778 120784|0.63889 120785|0.59722 120786|0.59722 120787|0.55556 120788|0.38889 120789|0.41667 120790|0.25 120791|0.59722 120792|0.29167 120793|0.47222 120794|0.22222 120795|0.40278 120796|0.25 120797|0.54167 120798|0.68056 120799|0.52778 120800|0.66667 120801|0.5 120802|0.5 120803|0.56944 120804|0.5 120805|0.80556 120806|0.29167 120807|0.61111 120808|0.58333 120809|0.5 120810|0.83333 120811|0.16667 120812|0.75 120813|0.94444 120814|0.51389 120815|0.66667 120816|0.26389 120817|0.63889 120818|0.5 120819|0.55556 120820|0.45833 120821|0.65278 120822|0.55556 120823|0.68056 120824|0.54167 120825|0.52778 120826|0.43056 120827|0.31944 120828|0.29167 120829|0.72222 120830|0.73611 120831|0.79167 120832|0.29167 120833|0.86111 120834|0.76389 120835|0.51389 120836|0.59722 120837|0.72222 120838|0.65278 120839|0.5 120840|0.5 120841|0.5 120842|0.66667 120843|0.61111 120844|0.47222 120845|0.76389 120846|0.79167 120847|0.91667 120848|0.61111 120849|0.61111 120850|0.61111 120851|0.48611 120852|0.81944 120853|0.72222 120854|0.79167 120855|0.81944 120856|0.875 120857|0.69444 120858|0.81944 120859|0.59722 120860|0.77778 120861|0.77778 120862|0.33333 120863|0.56944 120864|0.625 120865|0.59722 120866|0.76389 120867|0.69444 120868|0.86111 120869|0.75 120870|0.66667 120871|0.72222 120872|0.69444 120873|0.54167 120874|0.625 120875|0.69444 120876|0.88889 120877|0.81944 120878|0.69444 120879|0.68056 120880|0.69444 120881|0.65278 120882|0.73611 120883|0.61111 120884|0.54167 120885|0.66667 120886|0.68056 120887|0.77778 120888|0.76389 120889|0.63889 120890|0.66667 120891|0.77778 120892|0.31944 120893|0.5 120894|0.34722 120895|0.61111 120896|0.86111 120897|0.52778 120898|0.65278 120899|0.5 120900|0.5 120901|0.55556 120902|0.5 120903|0.625 120904|0.375 120905|0.5 120906|0.54167 120907|0.54167 120908|0.55556 120909|0.63889 120910|0.65278 120911|0.51389 120912|0.47222 120913|0.55556 120914|0.5 120915|0.59722 120916|0.51389 120917|0.5 120918|0.19444 120919|0.5 120920|0.5 120921|0.5 120922|0.44444 120923|0.65278 120924|0.375 120925|0.47222 120926|0.34722 120927|0.5 120928|0.55556 120929|0.58333 120930|0.23611 120931|0.40278 120932|0.38889 120933|0.51389 120934|0.52778 120935|0.44444 120936|0.625 120937|0.54167 120938|0.44444 120939|0.51389 120940|0.11111 120941|0.5 120942|0.47222 120943|0.5 120944|0.43056 120945|0.34722 120946|0.52778 120947|0.5 120948|0.5 120949|0.25 120950|0.47222 120951|0.23611 120952|0.625 120953|0.48611 120954|0.44444 120955|0.38889 120956|0.68056 120957|0.5 120958|0.5 120959|0.25 120960|0.41667 120961|0.5 120962|0.5 120963|0.55556 120964|0.56944 120965|0.5 120966|0.65278 120967|0.5 120968|0.31944 120969|0.54167 120970|0.77778 120971|0.43056 120972|0.54167 120973|0.5 120974|0.27778 120975|0.5 120976|0.44444 120977|0.61111 120978|0.40278 120979|0.66667 120980|0.54167 120981|0.69444 120982|0.54167 120983|0.77778 120984|0.56944 120985|0.51389 120986|0.40278 120987|0.5 120988|0.29167 120989|0.44444 120990|0.81944 120991|0.65278 120992|0.33333 120993|0.52778 120994|0.33333 120995|0.66667 120996|0.65278 120997|0.54167 120998|0.33333 120999|0.5 121000|0.5 121001|0.48611 121002|0.45833 121003|0.47222 121004|0.54167 121005|0.625 121006|0.33333 121007|0.72222 121008|0.44444 121009|0.54167 121010|0.65278 121011|0.41667 121012|0.58333 121013|0.55556 121014|0.68056 121015|0.625 121016|0.76389 121017|0.63889 121018|0.68056 121019|0.79167 121020|0.61111 121021|0.43056 121022|0.81944 121023|0.70833 121024|0.81944 121025|0.80556 121026|0.77778 121027|0.79167 121028|0.76389 121029|0.97222 121030|0.38889 121031|0.41667 121032|0.5 121033|0.48611 121034|0.51389 121035|0.47222 121036|0.58333 121037|0.83333 121038|0.30556 121039|0.055556 121040|0.22222 121041|0.625 121042|0.19444 121043|0.5 121044|0.625 121045|0.5 121046|0.26389 121047|0.30556 121048|0.56944 121049|0.36111 121050|0.31944 121051|0.61111 121052|0.5 121053|0.56944 121054|0.80556 121055|0.52778 121056|0.61111 121057|0.79167 121058|0.55556 121059|0.47222 121060|0.48611 121061|0.23611 121062|0.69444 121063|0.38889 121064|0.44444 121065|0.5 121066|0.5 121067|0.41667 121068|0.27778 121069|0.5 121070|0.31944 121071|0.79167 121072|0.625 121073|0.77778 121074|0.5 121075|0.36111 121076|0.69444 121077|0.65278 121078|0.68056 121079|0.69444 121080|0.65278 121081|0.27778 121082|0.27778 121083|0.38889 121084|0.44444 121085|0.5 121086|0.23611 121087|0.73611 121088|0.76389 121089|0.55556 121090|0.72222 121091|0.36111 121092|0.73611 121093|0.72222 121094|0.59722 121095|0.68056 121096|0.5 121097|0.34722 121098|0.375 121099|0.34722 121100|0.52778 121101|0.18056 121102|0.72222 121103|0.54167 121104|0.5 121105|0.43056 121106|0.59722 121107|0.34722 121108|0.59722 121109|0.625 121110|0.51389 121111|0.68056 121112|0.56944 121113|0.61111 121114|0.55556 121115|0.56944 121116|0.63889 121117|0.55556 121118|0.5 121119|0.61111 121120|0.45833 121121|0.59722 121122|0.59722 121123|0.5 121124|0.47222 121125|0.33333 121126|0.5 121127|0.61111 121128|0.52778 121129|0.73611 121130|0.59722 121131|0.69444 121132|0.76389 121133|0.61111 121134|0.68056 121135|0.54167 121136|0.52778 121137|0.38889 121138|0.55556 121139|0.61111 121140|0.5 121141|0.51389 121142|0.66667 121143|0.625 121144|0.5 121145|0.59722 121146|0.61111 121147|0.77778 121148|0.47222 121149|0.52778 121150|0.44444 121151|0.51389 121152|0.58333 121153|0.51389 121154|0.54167 121155|0.61111 121156|0.55556 121157|0.48611 121158|0.47222 121159|0.625 121160|0.44444 121161|0.76389 121162|0.31944 121163|0.61111 121164|0.51389 121165|0.375 121166|0.5 121167|0.41667 121168|0.18056 121169|0.5 121170|0.027778 121171|0.61111 121172|0.48611 121173|0.79167 121174|0.75 121175|0.69444 121176|0.65278 121177|0.61111 121178|0.84722 121179|0.77778 121180|0.61111 121181|0.81944 121182|0.75 121183|0.69444 121184|0.81944 121185|0.61111 121186|0.58333 121187|0.91667 121188|0.79167 121189|0.68056 121190|0.875 121191|0.81944 121192|0.79167 121193|0.69444 121194|0.55556 121195|0.51389 121196|0.76389 121197|0.55556 121198|0.47222 121199|0.5 121200|0.5 121201|0.5 121202|0.875 121203|0.47222 121204|0.41667 121205|0.55556 121206|0.25 121207|0.5 121208|0.59722 121209|0.83333 121210|0.84722 121211|0.81944 121212|0.81944 121213|0.86111 121214|0.625 121215|0.55556 121216|0.5 121217|0.33333 121218|0.625 121219|0.55556 121220|0.31944 121221|0.80556 121222|0.59722 121223|0.48611 121224|0.31944 121225|0.56944 121226|0.625 121227|0.5 121228|0.48611 121229|0.18056 121230|0.18056 121231|0.38889 121232|0.77778 121233|0.61111 121234|0.45833 121235|0.54167 121236|0.5 121237|0.43056 121238|0.52778 121239|0.43056 121240|0.27778 121241|0.5 121242|0.47222 121243|0.36111 121244|0.54167 121245|0.43056 121246|0.69444 121247|0.72222 121248|0.69444 121249|0.79167 121250|0.59722 121251|0.26389 121252|0.52778 121253|0.52778 121254|0.70833 121255|0.59722 121256|0.5 121257|0.48611 121258|0.5 121259|0.48611 121260|0.44444 121261|0.30556 121262|0.43056 121263|0.38889 121264|0.48611 121265|0.083333 121266|0.30556 121267|0.27778 121268|0.5 121269|0.45833 121270|0.5 121271|0.58333 121272|0.29167 121273|0.66667 121274|0.56944 121275|0.5 121276|0.18056 121277|0.40278 121278|0.5 121279|0.5 121280|0.70833 121281|0.55556 121282|0.29167 121283|0.5 121284|0.44444 121285|0.44444 121286|0.72222 121287|0.61111 121288|0.52778 121289|0.68056 121290|0.66667 121291|0.65278 121292|0.75 121293|0.84722 121294|0.81944 121295|0.77778 121296|0.68056 121297|0.77778 121298|0.81944 121299|0.5 121300|0.55556 121301|0.79167 121302|0.61111 121303|0.77778 121304|0.68056 121305|0.5 121306|0.23611 121307|0.48611 121308|0.58333 121309|0.5 121310|0.80556 121311|0.65278 121312|0.83333 121313|0.72222 121314|0.77778 121315|0.65278 121316|0.75 121317|0.69444 121318|0.69444 121319|0.76389 121320|0.61111 121321|0.52778 121322|0.68056 121323|0.70833 121324|0.73611 121325|0.63889 121326|0.51389 121327|0.18056 121328|0.56944 121329|0.59722 121330|0.72222 121331|0.30556 121332|0.69444 121333|0.94444 121334|0.45833 121335|0.61111 121336|0.65278 121337|0.5 121338|0.81944 121339|0.86111 121340|0.86111 121341|0.75 121342|0.75 121343|0.55556 121344|0.31944 121345|0.45833 121346|0.58333 121347|0.68056 121348|0.70833 121349|0.81944 121350|0.73611 121351|0.65278 121352|0.625 121353|0.80556 121354|0.76389 121355|0.44444 121356|0.33333 121357|0.45833 121358|0.61111 121359|0.54167 121360|0.79167 121361|0.26389 121362|0.375 121363|0.625 121364|0.54167 121365|0.31944 121366|0.875 121367|0.61111 121368|0.5 121369|0.5 121370|0.5 121371|0.5 121372|0.61111 121373|0.56944 121374|0.43056 121375|0.73611 121376|0.73611 121377|0.59722 121378|0.34722 121379|0.54167 121380|0.5 121381|0.59722 121382|0.44444 121383|0.44444 121384|0.5 121385|0.61111 121386|0.55556 121387|0.52778 121388|0.5 121389|0.68056 121390|0.52778 121391|0.41667 121392|0.47222 121393|0.38889 121394|0.59722 121395|0.59722 121396|0.33333 121397|0.44444 121398|0.55556 121399|0.38889 121400|0.31944 121401|0.5 121402|0.40278 121403|0.20833 121404|0.69444 121405|0.77778 121406|0.61111 121407|0.56944 121408|0.72222 121409|0.76389 121410|0.90278 121411|0.76389 121412|0.66667 121413|0.65278 121414|0.84722 121415|0.84722 121416|0.5 121417|0.5 121418|0.41667 121419|0.875 121420|0.83333 121421|0.90278 121422|0.40278 121423|0.86111 121424|0.38889 121425|0.38889 121426|0.5 121427|0.5 121428|0.56944 121429|0.36111 121430|0.83333 121431|0.83333 121432|0.84722 121433|0.61111 121434|0.5 121435|0.88889 121436|0.56944 121437|0.52778 121438|0.55556 121439|0.5 121440|0.75 121441|0.79167 121442|0.66667 121443|0.75 121444|0.55556 121445|0.52778 121446|0.5 121447|0.25 121448|0.63889 121449|0.36111 121450|0.5 121451|0.52778 121452|0.5 121453|0.22222 121454|0.26389 121455|0.41667 121456|0.48611 121457|0.31944 121458|0.44444 121459|0.45833 121460|0.63889 121461|0.48611 121462|0.61111 121463|0.47222 121464|0.48611 121465|0.61111 121466|0.44444 121467|0.625 121468|0.44444 121469|0.44444 121470|0.66667 121471|0.66667 121472|0.34722 121473|0.19444 121474|0.29167 121475|0.33333 121476|0.69444 121477|0.55556 121478|0.5 121479|0.5 121480|0.65278 121481|0.76389 121482|0.83333 121483|0.65278 121484|0.72222 121485|0.86111 121486|0.47222 121487|0.59722 121488|0.55556 121489|0.5 121490|0.5 121491|0.65278 121492|0.59722 121493|0.45833 121494|0.55556 121495|0.5 121496|0.5 121497|0.44444 121498|0.70833 121499|0.55556 121500|0.47222 121501|0.61111 121502|0.625 121503|0.48611 121504|0.5 121505|0.5 121506|0.61111 121507|0.77778 121508|0.61111 121509|0.66667 121510|0.75 121511|0.5 121512|0.43056 121513|0.58333 121514|0.54167 121515|0.52778 121516|0.27778 121517|0.38889 121518|0.44444 121519|0.52778 121520|0.20833 121521|0.38889 121522|0.54167 121523|0.5 121524|0.44444 121525|0.27778 121526|0.5 121527|0.5 121528|0.48611 121529|0.68056 121530|0.61111 121531|0.51389 121532|0.5 121533|0.5 121534|0.66667 121535|0.75 121536|0.18056 121537|0.61111 121538|0.5 121539|0.38889 121540|0.16667 121541|0.29167 121542|0.58333 121543|0.70833 121544|0.375 121545|0.125 121546|0.52778 121547|0.58333 121548|0.5 121549|0.48611 121550|0.55556 121551|0.5 121552|0.5 121553|0.65278 121554|0.56944 121555|0.58333 121556|0.27778 121557|0.5 121558|0.5 121559|0.5 121560|0.5 121561|0.5 121562|0.38889 121563|0.375 121564|0.18056 121565|0.38889 121566|0.48611 121567|0.23611 121568|0.47222 121569|0.63889 121570|0.27778 121571|0.16667 121572|0.52778 121573|0.47222 121574|0.47222 121575|0.5 121576|0.63889 121577|0.5 121578|0.44444 121579|0.48611 121580|0.5 121581|0.5 121582|0.34722 121583|0.5 121584|0.61111 121585|0.51389 121586|0.59722 121587|0.77778 121588|0.5 121589|0.44444 121590|0.54167 121591|0.44444 121592|0.56944 121593|0.41667 121594|0.16667 121595|0.34722 121596|0.5 121597|0.625 121598|0.86111 121599|0.33333 121600|0.5 121601|0.5 121602|0.5 121603|0.58333 121604|0.72222 121605|0.69444 121606|0.5 121607|0.5 121608|0.73611 121609|0.58333 121610|0.66667 121611|0.73611 121612|0.33333 121613|0.34722 121614|0.41667 121615|0.36111 121616|0.72222 121617|0 121618|0.15278 121619|0.44444 121620|0.31944 121621|0.58333 121622|0.43056 121623|0.52778 121624|0.58333 121625|0.38889 121626|0.19444 121627|0.47222 121628|0.5 121629|0.40278 121630|0.22222 121631|0.59722 121632|0.20833 121633|0.59722 121634|0.58333 121635|0.55556 121636|0.48611 121637|0.38889 121638|0.68056 121639|0.72222 121640|0.76389 121641|0.52778 121642|0.59722 121643|0.54167 121644|0.75 121645|0.5 121646|0.65278 121647|0.47222 121648|0.45833 121649|0.61111 121650|0.72222 121651|0.81944 121652|0.88889 121653|0.75 121654|0.54167 121655|0.70833 121656|0.79167 121657|0.66667 121658|0.73611 121659|0.79167 121660|0.70833 121661|0.69444 121662|0.33333 121663|0.79167 121664|0.81944 121665|0.70833 121666|0.81944 121667|0.75 121668|0.63889 121669|0.73611 121670|0.61111 121671|0.73611 121672|0.59722 121673|0.25 121674|0.15278 121675|0.79167 121676|0.54167 121677|0.65278 121678|0.68056 121679|0.76389 121680|0.73611 121681|0.375 121682|0.75 121683|0.55556 121684|0.5 121685|0.20833 121686|0.84722 121687|0.72222 121688|0.63889 121689|0.61111 121690|0.61111 121691|0.5 121692|0.55556 121693|0.65278 121694|0.45833 121695|0.625 121696|0.44444 121697|0.44444 121698|0.44444 121699|0.5 121700|0.5 121701|0.5 121702|0.65278 121703|0.83333 121704|0.56944 121705|0.30556 121706|0.36111 121707|0.34722 121708|0.38889 121709|0.27778 121710|0.33333 121711|0.55556 121712|0.625 121713|0.61111 121714|0.16667 121715|0.44444 121716|0.45833 121717|0.51389 121718|0.5 121719|0.55556 121720|0.69444 121721|0.56944 121722|0.61111 121723|0.76389 121724|0.69444 121725|0.72222 121726|0.625 121727|0.51389 121728|0.84722 121729|0.76389 121730|0.81944 121731|0.91667 121732|0.77778 121733|0.73611 121734|0.66667 121735|0.79167 121736|0.5 121737|0.5 121738|0.59722 121739|0.70833 121740|0.81944 121741|0.79167 121742|0.34722 121743|0.5 121744|0.95833 121745|0.34722 121746|0.73611 121747|0.625 121748|0.61111 121749|0.81944 121750|0.5 121751|0.5 121752|0.5 121753|0.18056 121754|0.48611 121755|0.75 121756|0.69444 121757|0.61111 121758|0.80556 121759|0.66667 121760|0.40278 121761|0.5 121762|0.95833 121763|0.84722 121764|0.48611 121765|0.65278 121766|0.48611 121767|0.625 121768|0.54167 121769|0.15278 121770|0.069444 121771|0.34722 121772|0.61111 121773|0.77778 121774|0.51389 121775|0.38889 121776|0.56944 121777|0.79167 121778|0.66667 121779|0.65278 121780|0.375 121781|0.34722 121782|0.61111 121783|0.81944 121784|0.88889 121785|0.83333 121786|0.86111 121787|0.69444 121788|0.55556 121789|0.75 121790|0.40278 121791|0.13889 121792|0.30556 121793|0.54167 121794|0.69444 121795|0.68056 121796|0.70833 121797|0.52778 121798|0.58333 121799|0.5 121800|0.75 121801|0.79167 121802|0.63889 121803|0.30556 121804|0.40278 121805|0.41667 121806|0.13889 121807|0.36111 121808|0.54167 121809|0.81944 121810|0.79167 121811|0.15278 121812|0.65278 121813|0.33333 121814|0.44444 121815|0.30556 121816|0.5 121817|0.56944 121818|0.38889 121819|0.125 121820|0.44444 121821|0.083333 121822|0.27778 121823|0.47222 121824|0.66667 121825|0.29167 121826|0.66667 121827|0.41667 121828|0.5 121829|0.5 121830|0.80556 121831|0.70833 121832|0.43056 121833|0.41667 121834|0.44444 121835|0.69444 121836|0.5 121837|0.76389 121838|0.79167 121839|0.625 121840|0.65278 121841|0.69444 121842|0.625 121843|0.68056 121844|0.16667 121845|0.70833 121846|0.81944 121847|0.5 121848|0.83333 121849|0.66667 121850|0.56944 121851|0.61111 121852|0.73611 121853|0.48611 121854|0.58333 121855|0.73611 121856|0.51389 121857|0.61111 121858|0.38889 121859|0.75 121860|0.097222 121861|0.93056 121862|0.75 121863|0.76389 121864|0.63889 121865|0.77778 121866|0.45833 121867|0.61111 121868|0.56944 121869|0.77778 121870|0.86111 121871|0.66667 121872|0.58333 121873|0.38889 121874|0.44444 121875|0.26389 121876|0.16667 121877|0.68056 121878|0.79167 121879|0.34722 121880|0.69444 121881|0.51389 121882|0.45833 121883|0.65278 121884|0.68056 121885|0.27778 121886|0.11111 121887|0.33333 121888|0.16667 121889|0.25 121890|0.34722 121891|0.29167 121892|0.51389 121893|0.625 121894|0.61111 121895|0.51389 121896|0.52778 121897|0.54167 121898|0.44444 121899|0.25 121900|0.48611 121901|0.73611 121902|0.5 121903|0.47222 121904|0.72222 121905|0.68056 121906|0.44444 121907|0.72222 121908|0.79167 121909|0.52778 121910|0.5 121911|0.55556 121912|0.69444 121913|0.44444 121914|0.59722 121915|0.52778 121916|0.40278 121917|0.5 121918|0.26389 121919|0.5 121920|0.27778 121921|0.47222 121922|0.33333 121923|0.90278 121924|0.26389 121925|0.36111 121926|0.58333 121927|0.47222 121928|0.27778 121929|0.51389 121930|0.55556 121931|0.30556 121932|0.5 121933|0.38889 121934|0.51389 121935|0.22222 121936|0.55556 121937|0.5 121938|0.55556 121939|0.73611 121940|0.61111 121941|0.59722 121942|0.5 121943|0.5 121944|0.29167 121945|0.40278 121946|0.65278 121947|0.51389 121948|0.38889 121949|0.30556 121950|0.48611 121951|0.59722 121952|0.70833 121953|0 121954|0.375 121955|0.51389 121956|0.44444 121957|0.44444 121958|0.48611 121959|0.58333 121960|0.5 121961|0.45833 121962|0.5 121963|0.29167 121964|0.44444 121965|0.83333 121966|0.5 121967|0.625 121968|0.5 121969|0.48611 121970|0.48611 121971|0.5 121972|0.5 121973|0.56944 121974|0.13889 121975|0.11111 121976|0.5 121977|0.18056 121978|0.70833 121979|0.65278 121980|0.59722 121981|0.48611 121982|0.59722 121983|0.5 121984|0.65278 121985|0.29167 121986|0.40278 121987|0.63889 121988|0.20833 121989|0.625 121990|0.5 121991|0.76389 121992|0.80556 121993|0.66667 121994|0.77778 121995|0.36111 121996|0.31944 121997|0.66667 121998|0.5 121999|0.41667 122000|0.47222 122001|0.68056 122002|0.75 122003|0.73611 122004|0.58333 122005|0.44444 122006|0.43056 122007|0.70833 122008|0.43056 122009|0.19444 122010|0.40278 122011|0.77778 122012|0.30556 122013|0.55556 122014|0.16667 122015|0.47222 122016|0.73611 122017|0.38889 122018|0.65278 122019|0.5 122020|0.29167 122021|0.375 122022|0.18056 122023|0.47222 122024|0.36111 122025|0.48611 122026|0.29167 122027|0.65278 122028|0.76389 122029|0.48611 122030|0.375 122031|0.29167 122032|0.54167 122033|0.5 122034|0.72222 122035|0.38889 122036|0.34722 122037|0.33333 122038|0.47222 122039|0.73611 122040|0.55556 122041|0.65278 122042|0.5 122043|0.54167 122044|0.48611 122045|0.5 122046|0.45833 122047|0.5 122048|0.69444 122049|0.52778 122050|0.44444 122051|0.33333 122052|0.56944 122053|0.375 122054|0.54167 122055|0.38889 122056|0.5 122057|0.41667 122058|0.5 122059|0.52778 122060|0.22222 122061|0.55556 122062|0.19444 122063|0.19444 122064|0.70833 122065|0.5 122066|0.48611 122067|0.41667 122068|0.41667 122069|0.013889 122070|0.16667 122071|0.63889 122072|0.41667 122073|0.69444 122074|0.55556 122075|0.41667 122076|0.625 122077|0.65278 122078|0.5 122079|0.51389 122080|0.52778 122081|0.5 122082|0.5 122083|0.75 122084|0.5 122085|0.65278 122086|0.54167 122087|0.56944 122088|0.33333 122089|0.66667 122090|0.44444 122091|0.52778 122092|0.88889 122093|0.45833 122094|0.66667 122095|0.66667 122096|0.84722 122097|0.75 122098|0.65278 122099|0.54167 122100|0.34722 122101|0.76389 122102|0.73611 122103|0.51389 122104|0.47222 122105|0.38889 122106|0.5 122107|0.44444 122108|0.41667 122109|0.58333 122110|0.48611 122111|0.38889 122112|0.15278 122113|0.5 122114|0.65278 122115|0.61111 122116|0.38889 122117|0.45833 122118|0.68056 122119|0.51389 122120|0.80556 122121|0.54167 122122|0.51389 122123|0.69444 122124|0.63889 122125|0.79167 122126|0.5 122127|0.5 122128|0.72222 122129|0.73611 122130|0.77778 122131|0.58333 122132|0.63889 122133|0.55556 122134|0.72222 122135|0.55556 122136|0.47222 122137|0.61111 122138|0.58333 122139|0.59722 122140|0.29167 122141|0.38889 122142|0.55556 122143|0.73611 122144|0.55556 122145|0.30556 122146|0.69444 122147|0.51389 122148|0.19444 122149|0.65278 122150|0.5 122151|0.5 122152|0.55556 122153|0.68056 122154|0.51389 122155|0.65278 122156|0.59722 122157|0.45833 122158|0.79167 122159|0.51389 122160|0.5 122161|0.5 122162|0.5 122163|0.5 122164|0.88889 122165|0.56944 122166|0.55556 122167|0.63889 122168|0.58333 122169|0.51389 122170|0.5 122171|0.66667 122172|0.61111 122173|0.5 122174|0.5 122175|0.25 122176|0.40278 122177|0.26389 122178|0.56944 122179|0.55556 122180|0.5 122181|0.58333 122182|0.625 122183|0.63889 122184|0.5 122185|0.5 122186|0.5 122187|0.52778 122188|0.56944 122189|0.77778 122190|0.5 122191|0.34722 122192|0.5 122193|0.58333 122194|0.5 122195|0.375 122196|0.45833 122197|0.38889 122198|0.375 122199|0.33333 122200|0.47222 122201|0.31944 122202|0.18056 122203|0.083333 122204|0.81944 122205|0.5 122206|0.59722 122207|0.66667 122208|0.52778 122209|0.54167 122210|0.30556 122211|0.69444 122212|0.5 122213|0.58333 122214|0.83333 122215|0.73611 122216|0.54167 122217|0.52778 122218|0.77778 122219|0.68056 122220|0.72222 122221|0.77778 122222|0.84722 122223|0.76389 122224|0.52778 122225|0.5 122226|0.72222 122227|0.73611 122228|0.69444 122229|0.63889 122230|0.54167 122231|0.55556 122232|0.84722 122233|0.98611 122234|0.84722 122235|0.81944 122236|0.59722 122237|0.5 122238|0.5 122239|0.5 122240|0.75 122241|0.83333 122242|0.5 122243|0.48611 122244|0.36111 122245|0.5 122246|0.65278 122247|0.5 122248|0.51389 122249|0.5 122250|0.15278 122251|0.52778 122252|0.44444 122253|0.79167 122254|0.66667 122255|0.5 122256|0.5 122257|0.23611 122258|0.5 122259|0.5 122260|0.66667 122261|0.75 122262|0.44444 122263|0.52778 122264|0.54167 122265|0.5 122266|0.51389 122267|0.5 122268|0.66667 122269|0.44444 122270|0.5 122271|0.5 122272|0.58333 122273|0.69444 122274|0.34722 122275|0.51389 122276|0.72222 122277|0.73611 122278|0.38889 122279|0.44444 122280|0.58333 122281|0.56944 122282|0.38889 122283|0.5 122284|0.51389 122285|0.27778 122286|0.72222 122287|0.51389 122288|0.5 122289|0.375 122290|0.31944 122291|0.5 122292|0.63889 122293|0.5 122294|0.5 122295|0.54167 122296|0.73611 122297|0.34722 122298|0.33333 122299|0.75 122300|0.5 122301|0.5 122302|0.55556 122303|0.5 122304|0.5 122305|0.5 122306|0.75 122307|0.5 122308|0.52778 122309|0.5 122310|0.61111 122311|0.5 122312|0.54167 122313|0.55556 122314|0.5 122315|0.52778 122316|0.44444 122317|0.65278 122318|0.5 122319|0.45833 122320|0.70833 122321|0.5 122322|0.41667 122323|0.51389 122324|0.81944 122325|0.45833 122326|0.51389 122327|0.5 122328|0.44444 122329|0.5 122330|0.65278 122331|0.5 122332|0.83333 122333|0.51389 122334|0.44444 122335|0.625 122336|0.61111 122337|0.68056 122338|0.69444 122339|0.55556 122340|0.44444 122341|0.30556 122342|0.5 122343|0.44444 122344|0.5 122345|0.5 122346|0.61111 122347|0.5 122348|0.55556 122349|0.5 122350|0.52778 122351|0.5 122352|0.75 122353|0.47222 122354|0.5 122355|0.55556 122356|0.66667 122357|0.55556 122358|0.56944 122359|0.51389 122360|0.59722 122361|0.5 122362|0.55556 122363|0.63889 122364|0.5 122365|0.44444 122366|0.40278 122367|0.38889 122368|0.51389 122369|0.5 122370|0.5 122371|0.56944 122372|0.59722 122373|0.44444 122374|0.40278 122375|0.88889 122376|0.54167 122377|0.44444 122378|0.63889 122379|0.80556 122380|0.5 122381|0.5 122382|0.55556 122383|0.625 122384|0.58333 122385|0.59722 122386|0.59722 122387|0.41667 122388|0.625 122389|0.63889 122390|0.52778 122391|0.54167 122392|0.58333 122393|0.38889 122394|0.45833 122395|0.51389 122396|0.51389 122397|0.55556 122398|0.65278 122399|0.61111 122400|0.54167 122401|0.5 122402|0.43056 122403|0.5 122404|0.51389 122405|0.5 122406|0.5 122407|0.5 122408|0.41667 122409|0.52778 122410|0.22222 122411|0.52778 122412|0.26389 122413|0.47222 122414|0.5 122415|0.5 122416|0.52778 122417|0.52778 122418|0.56944 122419|0.5 122420|0.61111 122421|0.58333 122422|0.55556 122423|0.51389 122424|0.61111 122425|0.47222 122426|0.5 122427|0.48611 122428|0.54167 122429|0.5 122430|0.55556 122431|0.34722 122432|0.22222 122433|0.5 122434|0.40278 122435|0.59722 122436|0.45833 122437|0.30556 122438|0.76389 122439|0.38889 122440|0.43056 122441|0.34722 122442|0.33333 122443|0.47222 122444|0.27778 122445|0.083333 122446|0.29167 122447|0.43056 122448|0.44444 122449|0.23611 122450|0.5 122451|0.5 122452|0.43056 122453|0.61111 122454|0.5 122455|0.70833 122456|0.5 122457|0.5 122458|0.40278 122459|0.51389 122460|0.72222 122461|0.76389 122462|0.65278 122463|0.73611 122464|0.73611 122465|0.69444 122466|0.66667 122467|0.375 122468|0.61111 122469|0.59722 122470|0.5 122471|0.5 122472|0.55556 122473|0.11111 122474|0.25 122475|0.26389 122476|0.375 122477|0.055556 122478|0.26389 122479|0.34722 122480|0.22222 122481|0.59722 122482|0.80556 122483|0.5 122484|0.66667 122485|0.84722 122486|0.69444 122487|0.72222 122488|0.77778 122489|0.48611 122490|0.625 122491|0.625 122492|0.5 122493|0.5 122494|0.5 122495|0.63889 122496|0.375 122497|0.44444 122498|0.5 122499|0.70833 122500|0.75 122501|0.11111 122502|0.70833 122503|0.51389 122504|0.58333 122505|0.44444 122506|0.36111 122507|0.58333 122508|0.27778 122509|0.29167 122510|0.31944 122511|0.47222 122512|0.47222 122513|0.52778 122514|0.5 122515|0.48611 122516|0.63889 122517|0.5 122518|0.27778 122519|0.5 122520|0.5 122521|0.61111 122522|0.52778 122523|0.5 122524|0.5 122525|0.5 122526|0.43056 122527|0.5 122528|0.61111 122529|0.5 122530|0.40278 122531|0.40278 122532|0.29167 122533|0.65278 122534|0.51389 122535|0.41667 122536|0.15278 122537|0.27778 122538|0.52778 122539|0.59722 122540|0.40278 122541|0.33333 122542|0.36111 122543|0.44444 122544|0.56944 122545|0.52778 122546|0.36111 122547|0.47222 122548|0.47222 122549|0.65278 122550|0.45833 122551|0.41667 122552|0.5 122553|0.52778 122554|0.65278 122555|0.54167 122556|0.25 122557|0.30556 122558|0.013889 122559|0.51389 122560|0.61111 122561|0.36111 122562|0.25 122563|0.52778 122564|0.19444 122565|0.51389 122566|0.40278 122567|0.54167 122568|0.5 122569|0.58333 122570|0.125 122571|0.069444 122572|0.041667 122573|0.68056 122574|0.38889 122575|0.5 122576|0.29167 122577|0.48611 122578|0.5 122579|0.61111 122580|0.59722 122581|0.47222 122582|0.52778 122583|0.5 122584|0.15278 122585|0.75 122586|0.625 122587|0.55556 122588|0.30556 122589|0.5 122590|0.77778 122591|0.79167 122592|0.75 122593|0.88889 122594|0.88889 122595|0.88889 122596|0.95833 122597|0.79167 122598|0.91667 122599|0.63889 122600|0.5 122601|0.5 122602|0.55556 122603|0.59722 122604|0.54167 122605|0.56944 122606|0.5 122607|0.5 122608|0.43056 122609|0.5 122610|0.63889 122611|0.56944 122612|0.5 122613|0.27778 122614|0.75 122615|0.61111 122616|0.72222 122617|0.5 122618|0.55556 122619|0.61111 122620|0.66667 122621|0.75 122622|0.55556 122623|0.58333 122624|0.61111 122625|0.56944 122626|0.52778 122627|0.54167 122628|0.81944 122629|0.66667 122630|0.66667 122631|0.88889 122632|0.81944 122633|0.69444 122634|0.59722 122635|0.29167 122636|0.51389 122637|0.56944 122638|0.77778 122639|0.79167 122640|0.51389 122641|0.54167 122642|0.5 122643|0.375 122644|0.5 122645|0.54167 122646|0.5 122647|0.5 122648|0.5 122649|0.5 122650|0.5 122651|0.5 122652|0.41667 122653|0.43056 122654|0.875 122655|0.30556 122656|0.16667 122657|0.16667 122658|0.69444 122659|0.45833 122660|0.68056 122661|0.63889 122662|0.51389 122663|0.58333 122664|0.61111 122665|0.36111 122666|0.5 122667|0.55556 122668|0.5 122669|0.5 122670|0.41667 122671|0.41667 122672|0.48611 122673|0.63889 122674|0.44444 122675|0.11111 122676|0.5 122677|0.27778 122678|0.5 122679|0.54167 122680|0.55556 122681|0.44444 122682|0.44444 122683|0.34722 122684|0.43056 122685|0.30556 122686|0.375 122687|0.38889 122688|0.52778 122689|0.63889 122690|0.54167 122691|0.5 122692|0.5 122693|0.5 122694|0.44444 122695|0.47222 122696|0.5 122697|0.58333 122698|0.31944 122699|0.48611 122700|0.5 122701|0.5 122702|0.58333 122703|0.48611 122704|0.54167 122705|0.44444 122706|0.5 122707|0.45833 122708|0.40278 122709|0.56944 122710|0.31944 122711|0.5 122712|0.56944 122713|0.625 122714|0.41667 122715|0.54167 122716|0.75 122717|0.5 122718|0.59722 122719|0.69444 122720|0.47222 122721|0.29167 122722|0.44444 122723|0.5 122724|0.44444 122725|0.54167 122726|0.48611 122727|0.51389 122728|0.30556 122729|0.5 122730|0.5 122731|0.13889 122732|0.5 122733|0.38889 122734|0.44444 122735|0.5 122736|0.55556 122737|0.43056 122738|0.69444 122739|0.38889 122740|0.54167 122741|0.47222 122742|0.15278 122743|0.11111 122744|0.22222 122745|0.083333 122746|0.55556 122747|0.47222 122748|0.65278 122749|0.5 122750|0.38889 122751|0.15278 122752|0.70833 122753|0.69444 122754|0.51389 122755|0.5 122756|0.13889 122757|0.29167 122758|0.41667 122759|0.26389 122760|0.45833 122761|0.375 122762|0.75 122763|0.63889 122764|0.77778 122765|0.33333 122766|0.54167 122767|0.5 122768|0.5 122769|0.66667 122770|0.27778 122771|0.80556 122772|0.56944 122773|0.055556 122774|0.22222 122775|0.11111 122776|0.5 122777|0.51389 122778|0.20833 122779|0.5 122780|0.76389 122781|0.36111 122782|0.43056 122783|0.38889 122784|0.11111 122785|0.16667 122786|0.5 122787|0.52778 122788|0.55556 122789|0.55556 122790|0.68056 122791|0.61111 122792|0.69444 122793|0.52778 122794|0.75 122795|0.84722 122796|0.69444 122797|0.76389 122798|0.875 122799|0.75 122800|0.55556 122801|0.40278 122802|0.34722 122803|0.5 122804|0.34722 122805|0.33333 122806|0.44444 122807|0.5 122808|0.5 122809|0.81944 122810|0.56944 122811|0.44444 122812|0.80556 122813|0.58333 122814|0.5 122815|0.5 122816|0.52778 122817|0.33333 122818|0.41667 122819|0.86111 122820|0.84722 122821|0.63889 122822|0.63889 122823|0.69444 122824|0.43056 122825|0.69444 122826|0.69444 122827|0.77778 122828|0.66667 122829|0.58333 122830|0.72222 122831|0.86111 122832|0.69444 122833|0.5 122834|0.31944 122835|0.51389 122836|0.5 122837|0.15278 122838|0.5 122839|0.5 122840|0.51389 122841|0.47222 122842|0.5 122843|0.38889 122844|0.5 122845|0.5 122846|0.5 122847|0.5 122848|0.5 122849|0.5 122850|0.5 122851|0.5 122852|0.61111 122853|0.5 122854|0.13889 122855|0.55556 122856|0.33333 122857|0.76389 122858|0.5 122859|0.47222 122860|0.56944 122861|0.5 122862|0.5 122863|0.5 122864|0.5 122865|0.5 122866|0.5 122867|0.33333 122868|0.52778 122869|0.5 122870|0.5 122871|0.68056 122872|0.5 122873|0.54167 122874|0.5 122875|0.51389 122876|0.5 122877|0.59722 122878|0.5 122879|0.59722 122880|0.47222 122881|0.41667 122882|0.51389 122883|0.54167 122884|0.47222 122885|0.25 122886|0.29167 122887|0.61111 122888|0.29167 122889|0.5 122890|0.16667 122891|0.48611 122892|0.69444 122893|0.63889 122894|0.65278 122895|0.77778 122896|0.43056 122897|0.5 122898|0.44444 122899|0.47222 122900|0.55556 122901|0.625 122902|0.20833 122903|0.61111 122904|0.5 122905|0.72222 122906|0.55556 122907|0.5 122908|0.5 122909|0.43056 122910|0.55556 122911|0.80556 122912|0.625 122913|0.75 122914|0.44444 122915|0.61111 122916|0.55556 122917|0.22222 122918|0.29167 122919|0.097222 122920|0.65278 122921|0.34722 122922|0.59722 122923|0.30556 122924|0.75 122925|0.44444 122926|0.5 122927|0.5 122928|0.5 122929|0.54167 122930|0.5 122931|0.44444 122932|0.75 122933|0.91667 122934|0.5 122935|0.55556 122936|0.45833 122937|0.61111 122938|0.73611 122939|0.75 122940|0.51389 122941|0.5 122942|0.27778 122943|0.375 122944|0.47222 122945|0.86111 122946|0.29167 122947|0.29167 122948|0.52778 122949|0.55556 122950|0.51389 122951|0.47222 122952|0.5 122953|0.5 122954|0.59722 122955|0.5 122956|0.58333 122957|0.55556 122958|0.55556 122959|0.5 122960|0.5 122961|0.625 122962|0.56944 122963|0.47222 122964|0.5 122965|0.5 122966|0.40278 122967|0.72222 122968|0.45833 122969|0.5 122970|0.44444 122971|0.5 122972|0.625 122973|0.45833 122974|0.56944 122975|0.51389 122976|0.5 122977|0.5 122978|0.65278 122979|0.68056 122980|0.16667 122981|0.5 122982|0.41667 122983|0.56944 122984|0.40278 122985|0.47222 122986|0.47222 122987|0.31944 122988|0.58333 122989|0.375 122990|0.5 122991|0.5 122992|0.5 122993|0.41667 122994|0.43056 122995|0.27778 122996|0.51389 122997|0.38889 122998|0.61111 122999|0.58333 123000|0.94444 123001|0.5 123002|0.55556 123003|0.5 123004|0.5 123005|0.58333 123006|0.54167 123007|0.5 123008|0.69444 123009|0.5 123010|0.5 123011|0.55556 123012|0.5 123013|0.5 123014|0.55556 123015|0.40278 123016|0.19444 123017|0.52778 123018|0.69444 123019|0.51389 123020|0.51389 123021|0.54167 123022|0.61111 123023|0.5 123024|0.66667 123025|0.54167 123026|0.5 123027|0.48611 123028|0.55556 123029|0.58333 123030|0.18056 123031|0.77778 123032|0.51389 123033|0.5 123034|0.70833 123035|0.43056 123036|0.77778 123037|0.55556 123038|0.52778 123039|0.52778 123040|0.5 123041|0.5 123042|0.70833 123043|0.5 123044|0.68056 123045|0.88889 123046|0.5 123047|0.52778 123048|0.63889 123049|0.61111 123050|0.5 123051|0.22222 123052|0.51389 123053|0.5 123054|0.5 123055|0.52778 123056|0.44444 123057|0.29167 123058|0.5 123059|0.23611 123060|0.5 123061|0.51389 123062|0.5 123063|0.5 123064|0.51389 123065|0.5 123066|0.31944 123067|0.88889 123068|0.5 123069|0.83333 123070|0.5 123071|0.5 123072|0.23611 123073|0.52778 123074|0.44444 123075|0.20833 123076|0.5 123077|0.66667 123078|0.65278 123079|0.48611 123080|0.5 123081|0.45833 123082|0.40278 123083|0.5 123084|0.5 123085|0.31944 123086|0.5 123087|0.375 123088|0.33333 123089|0.51389 123090|0.44444 123091|0.5 123092|0.66667 123093|0.5 123094|0.54167 123095|0.55556 123096|0.47222 123097|0.375 123098|0.55556 123099|0.43056 123100|0.51389 123101|0.70833 123102|0.48611 123103|0.5 123104|0.58333 123105|0.54167 123106|0.375 123107|0.41667 123108|0.38889 123109|0.73611 123110|0.61111 123111|0.44444 123112|0.5 123113|0.5 123114|0.5 123115|0.36111 123116|0.66667 123117|0.22222 123118|0.5 123119|0.65278 123120|0.5 123121|0.58333 123122|0.5 123123|0.5 123124|0.5 123125|0.63889 123126|0.41667 123127|0.66667 123128|0.5 123129|0.5 123130|0.48611 123131|0.55556 123132|0.48611 123133|0.5 123134|0.33333 123135|0.77778 123136|0.5 123137|0.51389 123138|0.30556 123139|0.43056 123140|0.44444 123141|0.41667 123142|0.70833 123143|0.55556 123144|0.51389 123145|0.43056 123146|0.61111 123147|0.33333 123148|0.66667 123149|0.56944 123150|0.5 123151|0.83333 123152|0.40278 123153|0.55556 123154|0.55556 123155|0.51389 123156|0.61111 123157|0.5 123158|0.5 123159|0.61111 123160|0.5 123161|0.5 123162|0.63889 123163|0.73611 123164|0.51389 123165|0.69444 123166|0.47222 123167|0.41667 123168|0.77778 123169|0.5 123170|0.48611 123171|0.5 123172|0.51389 123173|0.375 123174|0.5 123175|0.5 123176|0.63889 123177|0.5 123178|0.45833 123179|0.5 123180|0.47222 123181|0.58333 123182|0.30556 123183|0.51389 123184|0.5 123185|0.61111 123186|0.61111 123187|0.76389 123188|0.75 123189|0.5 123190|0.52778 123191|0.45833 123192|0.61111 123193|0.51389 123194|0.30556 123195|0.51389 123196|0.5 123197|0.19444 123198|0.38889 123199|0.63889 123200|0.52778 123201|0.51389 123202|0.63889 123203|0.5 123204|0.5 123205|0.51389 123206|0.80556 123207|0.52778 123208|0.29167 123209|0.45833 123210|0.5 123211|0.65278 123212|0.51389 123213|0.5 123214|0.58333 123215|0.11111 123216|0.47222 123217|0.55556 123218|0.48611 123219|0.375 123220|0.47222 123221|0.84722 123222|0.29167 123223|0.72222 123224|0.5 123225|0.30556 123226|0.52778 123227|0.52778 123228|0.55556 123229|0.54167 123230|0.5 123231|0.48611 123232|0.70833 123233|0.56944 123234|0.5 123235|0.55556 123236|0.59722 123237|0.26389 123238|0.51389 123239|0.38889 123240|0.51389 123241|0.5 123242|0.5 123243|0.66667 123244|0.5 123245|0.30556 123246|0.55556 123247|0.55556 123248|0.23611 123249|0.77778 123250|0.5 123251|0.63889 123252|0.40278 123253|0.5 123254|0.5 123255|0.45833 123256|0.81944 123257|0.69444 123258|0.625 123259|0.59722 123260|0.55556 123261|0.45833 123262|0.5 123263|0.55556 123264|0.5 123265|0.55556 123266|0.59722 123267|0.44444 123268|0.48611 123269|0.61111 123270|0.27778 123271|0.36111 123272|0.027778 123273|0.069444 123274|0.30556 123275|0.40278 123276|0.22222 123277|0.11111 123278|0.25 123279|0.47222 123280|0.48611 123281|0.47222 123282|0.38889 123283|0.33333 123284|0.5 123285|0.36111 123286|0.25 123287|0.20833 123288|0.20833 123289|0.29167 123290|0.40278 123291|0.22222 123292|0.15278 123293|0.20833 123294|0.40278 123295|0.40278 123296|0.27778 123297|0.38889 123298|0.43056 123299|0.33333 123300|0.38889 123301|0.80556 123302|0.22222 123303|0.26389 123304|0.055556 123305|0.40278 123306|0.47222 123307|0.45833 123308|0.41667 123309|0.83333 123310|0.90278 123311|0.44444 123312|0.23611 123313|0.40278 123314|0.63889 123315|0.55556 123316|0.63889 123317|0.73611 123318|0.44444 123319|0.5 123320|0.70833 123321|0.70833 123322|0.66667 123323|0.81944 123324|0.77778 123325|0.5 123326|0.38889 123327|0.5 123328|0.5 123329|0.68056 123330|0.59722 123331|0.51389 123332|0.59722 123333|0.47222 123334|0.40278 123335|0.5 123336|0.5 123337|0.44444 123338|0.54167 123339|0.58333 123340|0.23611 123341|0.27778 123342|0.5 123343|0.13889 123344|0.36111 123345|0.36111 123346|0.54167 123347|0.29167 123348|0.27778 123349|0.44444 123350|0.47222 123351|0.34722 123352|0.11111 123353|0.40278 123354|0.44444 123355|0.45833 123356|0.47222 123357|0.27778 123358|0.5 123359|0.36111 123360|0.5 123361|0.45833 123362|0.61111 123363|0.47222 123364|0.63889 123365|0.55556 123366|0.59722 123367|0.33333 123368|0.55556 123369|0.31944 123370|0.5 123371|0.45833 123372|0.43056 123373|0.47222 123374|0.41667 123375|0.5 123376|0.5 123377|0.43056 123378|0.52778 123379|0.69444 123380|0.44444 123381|0.76389 123382|0.5 123383|0.5 123384|0.5 123385|0.65278 123386|0.52778 123387|0.65278 123388|0.5 123389|0.65278 123390|0.47222 123391|0.38889 123392|0.59722 123393|0.59722 123394|0.55556 123395|0.59722 123396|0.5 123397|0.55556 123398|0.44444 123399|0.23611 123400|0.72222 123401|0.61111 123402|0.5 123403|0.47222 123404|0.66667 123405|0.59722 123406|0.375 123407|0.52778 123408|0.069444 123409|0.44444 123410|0.38889 123411|0.52778 123412|0.51389 123413|0.56944 123414|0.5 123415|0.5 123416|0.5 123417|0.5 123418|0.5 123419|0.81944 123420|0.52778 123421|0.79167 123422|0.5 123423|0.23611 123424|0.11111 123425|0.45833 123426|0.16667 123427|0.5 123428|0.56944 123429|0.66667 123430|0.61111 123431|0.55556 123432|0.55556 123433|0.625 123434|0.13889 123435|0.56944 123436|0.83333 123437|0.54167 123438|0.79167 123439|0.54167 123440|0.34722 123441|0.33333 123442|0.16667 123443|0.44444 123444|0.68056 123445|0.52778 123446|0.27778 123447|0.44444 123448|0.44444 123449|0.5 123450|0.69444 123451|0.5 123452|0.22222 123453|0.29167 123454|0.125 123455|0.65278 123456|0.55556 123457|0.61111 123458|0.65278 123459|0.65278 123460|0.63889 123461|0.79167 123462|0.65278 123463|0.63889 123464|0.27778 123465|0.5 123466|0.66667 123467|0.81944 123468|0.56944 123469|0.61111 123470|0.54167 123471|0.70833 123472|0.72222 123473|0.61111 123474|0.77778 123475|0.81944 123476|0.83333 123477|0.51389 123478|0.84722 123479|0.79167 123480|0.58333 123481|0.47222 123482|0.625 123483|0.5 123484|0.55556 123485|0.5 123486|0.5 123487|0.15278 123488|0.5 123489|0.5 123490|0.52778 123491|0.5 123492|0.5 123493|0.66667 123494|0.375 123495|0.51389 123496|0.5 123497|0.27778 123498|0.54167 123499|0.5 123500|0.5 123501|0.51389 123502|0.79167 123503|0.52778 123504|0.58333 123505|0.44444 123506|0.29167 123507|0.55556 123508|0.65278 123509|0.51389 123510|0.31944 123511|0.66667 123512|0.81944 123513|0.63889 123514|0.625 123515|0.73611 123516|0.625 123517|0.68056 123518|0.63889 123519|0.5 123520|0.54167 123521|0.5 123522|0.48611 123523|0.58333 123524|0.76389 123525|0.59722 123526|0.5 123527|0.59722 123528|0.5 123529|0.56944 123530|0.5 123531|0.40278 123532|0.66667 123533|0.63889 123534|0.68056 123535|0.55556 123536|0.5 123537|0.30556 123538|0.48611 123539|0.30556 123540|0.58333 123541|0.069444 123542|0.83333 123543|0.38889 123544|0.79167 123545|0.69444 123546|0.63889 123547|0.83333 123548|0.23611 123549|0.44444 123550|0.44444 123551|0.40278 123552|0.72222 123553|0.63889 123554|0.38889 123555|0.44444 123556|0.56944 123557|0.72222 123558|0.44444 123559|0.20833 123560|0.48611 123561|0.31944 123562|0.48611 123563|0.61111 123564|0.27778 123565|0.55556 123566|0.5 123567|0.26389 123568|0.54167 123569|0.5 123570|0.73611 123571|0.48611 123572|0.56944 123573|0.81944 123574|0.5 123575|0.38889 123576|0.56944 123577|0.81944 123578|0.51389 123579|0.26389 123580|0.65278 123581|0.625 123582|0.56944 123583|0.63889 123584|0.5 123585|0.55556 123586|0.68056 123587|0.5 123588|0.5 123589|0.65278 123590|0.58333 123591|0.41667 123592|0.58333 123593|0.54167 123594|0.51389 123595|0.59722 123596|0.54167 123597|0.58333 123598|0.51389 123599|0.48611 123600|0.5 123601|0.51389 123602|0.52778 123603|0.5 123604|0.56944 123605|0.45833 123606|0.5 123607|0.59722 123608|0.41667 123609|0.30556 123610|0.5 123611|0.5 123612|0.29167 123613|0.5 123614|0.55556 123615|0.5 123616|0.55556 123617|0.20833 123618|0.27778 123619|0.65278 123620|0.59722 123621|0.68056 123622|0.79167 123623|0.76389 123624|0.75 123625|0.73611 123626|0.84722 123627|0.63889 123628|0.73611 123629|0.83333 123630|0.79167 123631|0.5 123632|0.51389 123633|0.59722 123634|0.5 123635|0.56944 123636|0.5 123637|0.55556 123638|0.11111 123639|0.625 123640|0.77778 123641|0.68056 123642|0.5 123643|0.83333 123644|0.66667 123645|0.5 123646|0.81944 123647|0.91667 123648|0.65278 123649|0.5 123650|0.5 123651|0.55556 123652|0.5 123653|0.54167 123654|0.5 123655|0.51389 123656|0.75 123657|0.5 123658|0.5 123659|0.375 123660|0.26389 123661|0.625 123662|0.61111 123663|0.31944 123664|0.25 123665|0.41667 123666|0.91667 123667|0.33333 123668|0.47222 123669|0.29167 123670|0.20833 123671|0.65278 123672|0.54167 123673|0.5 123674|0.52778 123675|0.83333 123676|0.72222 123677|0.51389 123678|0.58333 123679|0.43056 123680|0.5 123681|0.61111 123682|0.81944 123683|0.54167 123684|0.61111 123685|0.51389 123686|0.54167 123687|0.625 123688|0.52778 123689|0.51389 123690|0.58333 123691|0.38889 123692|0.93056 123693|0.77778 123694|0.81944 123695|0.625 123696|0.43056 123697|0.55556 123698|0.55556 123699|0.56944 123700|0.72222 123701|0.5 123702|0.73611 123703|0.72222 123704|0.61111 123705|0.56944 123706|0.61111 123707|0.625 123708|0.76389 123709|0.20833 123710|0.125 123711|0.43056 123712|0.47222 123713|0.5 123714|0.81944 123715|0.88889 123716|0.38889 123717|0.625 123718|0.83333 123719|0.56944 123720|0.66667 123721|0.5 123722|0.52778 123723|0.375 123724|0.30556 123725|0.45833 123726|0.73611 123727|0.72222 123728|0.52778 123729|0.40278 123730|0.26389 123731|0.69444 123732|0.72222 123733|0.56944 123734|0.72222 123735|0.63889 123736|0.55556 123737|0.72222 123738|0.83333 123739|0.77778 123740|0.77778 123741|0.33333 123742|0.27778 123743|0.77778 123744|0.29167 123745|0.27778 123746|0.88889 123747|0.79167 123748|0.83333 123749|0.625 123750|0.11111 123751|0.34722 123752|0.625 123753|0.79167 123754|0.81944 123755|0.5 123756|0.72222 123757|0.76389 123758|0.70833 123759|0.63889 123760|0.63889 123761|0.72222 123762|0.90278 123763|0.66667 123764|0.80556 123765|0.83333 123766|0.66667 123767|0.65278 123768|0.88889 123769|0.72222 123770|0.77778 123771|0.86111 123772|0.055556 123773|0.11111 123774|0.44444 123775|0.5 123776|0.625 123777|0.43056 123778|0.30556 123779|0.055556 123780|0.15278 123781|0.055556 123782|0.72222 123783|0.5 123784|0.33333 123785|0.22222 123786|0.125 123787|0.77778 123788|0.70833 123789|0.86111 123790|0.77778 123791|0.36111 123792|0.56944 123793|0.88889 123794|0.77778 123795|0.72222 123796|0.625 123797|0.61111 123798|0.59722 123799|0.65278 123800|0.22222 123801|0.26389 123802|0.70833 123803|0.69444 123804|0.13889 123805|0.23611 123806|0.73611 123807|0.72222 123808|0.63889 123809|0.83333 123810|0.77778 123811|0.66667 123812|0.51389 123813|0.77778 123814|0.5 123815|0.5 123816|0.79167 123817|0.91667 123818|0.77778 123819|0.18056 123820|0.27778 123821|0.70833 123822|0.83333 123823|0.80556 123824|0.45833 123825|0.59722 123826|0.76389 123827|0.77778 123828|0.44444 123829|0.72222 123830|0.72222 123831|0.47222 123832|0.59722 123833|0.45833 123834|0.77778 123835|0.88889 123836|0.72222 123837|0.40278 123838|0.36111 123839|0.77778 123840|0.83333 123841|0.69444 123842|0.80556 123843|0.63889 123844|0.76389 123845|0.88889 123846|0.33333 123847|0.36111 123848|0.29167 123849|0.36111 123850|0.72222 123851|0.90278 123852|0.875 123853|0.083333 123854|0.13889 123855|0.73611 123856|0.34722 123857|0.22222 123858|0.875 123859|0.88889 123860|0.27778 123861|0.083333 123862|0.52778 123863|0.52778 123864|0.51389 123865|0.65278 123866|0.55556 123867|0.70833 123868|0.77778 123869|0.15278 123870|0.30556 123871|0.69444 123872|0.72222 123873|0.56944 123874|0.58333 123875|0.77778 123876|0.48611 123877|0.56944 123878|0.25 123879|0.16667 123880|0.22222 123881|0.38889 123882|0.34722 123883|0.48611 123884|0.31944 123885|0.22222 123886|0.36111 123887|0.13889 123888|0.30556 123889|0.11111 123890|0.68056 123891|0.72222 123892|0.69444 123893|0.79167 123894|0.31944 123895|0.43056 123896|0.44444 123897|0.36111 123898|0.69444 123899|0.79167 123900|0.27778 123901|0.30556 123902|0.59722 123903|0.54167 123904|0.70833 123905|0.72222 123906|0.875 123907|0.40278 123908|0.79167 123909|0.88889 123910|0.875 123911|0.70833 123912|0.72222 123913|0.73611 123914|0.69444 123915|0.68056 123916|0.75 123917|0.69444 123918|0.77778 123919|0.625 123920|0.375 123921|0.72222 123922|0.52778 123923|0.27778 123924|0.125 123925|0.625 123926|0.56944 123927|0.55556 123928|0.80556 123929|0.80556 123930|0.069444 123931|0.36111 123932|0.58333 123933|0.29167 123934|0.18056 123935|0.5 123936|0.43056 123937|0.15278 123938|0.25 123939|0.31944 123940|0.27778 123941|0.51389 123942|0.44444 123943|0.33333 123944|0.88889 123945|0.72222 123946|0.68056 123947|0.5 123948|0.55556 123949|0.5 123950|0.48611 123951|0.54167 123952|0.47222 123953|0.5 123954|0.51389 123955|0.18056 123956|0.26389 123957|0.55556 123958|0.22222 123959|0.027778 123960|0.70833 123961|0.70833 123962|0.81944 123963|0.66667 123964|0.5 123965|0.80556 123966|0.47222 123967|0.65278 123968|0.80556 123969|0.72222 123970|0.36111 123971|0.40278 123972|0.31944 123973|0.55556 123974|0.84722 123975|0.83333 123976|0.55556 123977|0.61111 123978|0.45833 123979|0.58333 123980|0.22222 123981|0.5 123982|0.88889 123983|0.81944 123984|0.38889 123985|0.375 123986|0.66667 123987|0.77778 123988|0.72222 123989|0.45833 123990|0.5 123991|0.55556 123992|0.58333 123993|0.61111 123994|0.18056 123995|0.125 123996|0.29167 123997|0.41667 123998|0.55556 123999|0.61111 124000|0.51389 124001|0.19444 124002|0.65278 124003|0.58333 124004|0.19444 124005|0.34722 124006|0.23611 124007|0.13889 124008|0.33333 124009|0.52778 124010|0.625 124011|0.75 124012|0.18056 124013|0.68056 124014|0.52778 124015|0.68056 124016|0.55556 124017|0.69444 124018|0.77778 124019|0.29167 124020|0.36111 124021|0.33333 124022|0.54167 124023|0.16667 124024|0.54167 124025|0.125 124026|0.31944 124027|0.30556 124028|0.33333 124029|0.5 124030|0.5 124031|0.29167 124032|0.76389 124033|0.73611 124034|0.76389 124035|0.68056 124036|0.72222 124037|0.875 124038|0.47222 124039|0.76389 124040|0.73611 124041|0.86111 124042|0.72222 124043|0.73611 124044|0.77778 124045|0.47222 124046|0.38889 124047|0.40278 124048|0.69444 124049|0.52778 124050|0.51389 124051|0.31944 124052|0.25 124053|0.51389 124054|0.52778 124055|0.59722 124056|0.72222 124057|0.25 124058|0.25 124059|0.29167 124060|0.34722 124061|0.15278 124062|0.18056 124063|0.59722 124064|0.625 124065|0.93056 124066|0.91667 124067|0.88889 124068|0.625 124069|0.86111 124070|0.73611 124071|0.125 124072|0.36111 124073|0.52778 124074|0.69444 124075|0.43056 124076|0.58333 124077|0.94444 124078|0.59722 124079|0.70833 124080|0.47222 124081|0.54167 124082|0.27778 124083|0.16667 124084|0.91667 124085|0.63889 124086|0.75 124087|0.88889 124088|0.88889 124089|0.45833 124090|0.45833 124091|0.22222 124092|0.86111 124093|0.69444 124094|0.48611 124095|0.51389 124096|0.81944 124097|0.69444 124098|0.73611 124099|0.75 124100|0.625 124101|0.61111 124102|0.27778 124103|0.63889 124104|0.11111 124105|0.63889 124106|0.625 124107|0.83333 124108|0.77778 124109|0.38889 124110|0.38889 124111|0.5 124112|0.58333 124113|0.55556 124114|0.38889 124115|0.375 124116|0.26389 124117|0.47222 124118|0.41667 124119|0.19444 124120|0.20833 124121|0.055556 124122|0.083333 124123|0.41667 124124|0.38889 124125|0.375 124126|0.90278 124127|0.83333 124128|0.22222 124129|0.38889 124130|0.16667 124131|0.44444 124132|0.38889 124133|0 124134|0.58333 124135|0.54167 124136|0.5 124137|0.81944 124138|0.48611 124139|0.51389 124140|0.5 124141|0.38889 124142|0.5 124143|0.51389 124144|0.51389 124145|0.13889 124146|0.29167 124147|0.5 124148|0.19444 124149|0.70833 124150|0.38889 124151|0.54167 124152|0.38889 124153|0.26389 124154|0.66667 124155|0.66667 124156|0.75 124157|0.70833 124158|0.76389 124159|0.47222 124160|0.30556 124161|0.19444 124162|0.31944 124163|0.47222 124164|0.81944 124165|0.72222 124166|0.68056 124167|0.43056 124168|0.43056 124169|0.5 124170|0.29167 124171|0.54167 124172|0.80556 124173|0.72222 124174|0.56944 124175|0.40278 124176|0.5 124177|0.52778 124178|0.5 124179|0.51389 124180|0.097222 124181|0.11111 124182|0.30556 124183|0.73611 124184|0.63889 124185|0.5 124186|0.55556 124187|0.66667 124188|0.45833 124189|0.55556 124190|0.63889 124191|0.5 124192|0.29167 124193|0.58333 124194|0.44444 124195|0.23611 124196|0.55556 124197|0.5 124198|0.68056 124199|0.51389 124200|0.54167 124201|0.81944 124202|0.76389 124203|0.16667 124204|0.43056 124205|0.61111 124206|0.58333 124207|0.31944 124208|0.26389 124209|0.55556 124210|0.69444 124211|0.23611 124212|0.27778 124213|0.20833 124214|0.56944 124215|0.5 124216|0.58333 124217|0.34722 124218|0.23611 124219|0.76389 124220|0.055556 124221|0.097222 124222|0.47222 124223|0.26389 124224|0.34722 124225|0.19444 124226|0.22222 124227|0.66667 124228|0.27778 124229|0.29167 124230|0.30556 124231|0.25 124232|0.19444 124233|0.79167 124234|0.59722 124235|0.43056 124236|0.65278 124237|0.59722 124238|0.375 124239|0.79167 124240|0.83333 124241|0.81944 124242|0.81944 124243|0.40278 124244|0.76389 124245|0.65278 124246|0.18056 124247|0.13889 124248|0.54167 124249|0.76389 124250|0.18056 124251|0.51389 124252|0.48611 124253|0.61111 124254|0.73611 124255|0.54167 124256|0.375 124257|0.61111 124258|0.20833 124259|0.18056 124260|0.27778 124261|0.16667 124262|0.5 124263|0.5 124264|0.40278 124265|0.45833 124266|0.27778 124267|0.36111 124268|0.30556 124269|0.30556 124270|0.40278 124271|0.55556 124272|0.16667 124273|0.30556 124274|0.20833 124275|0.125 124276|0.41667 124277|0.40278 124278|0.30556 124279|0.63889 124280|0.61111 124281|0.625 124282|0.48611 124283|0.25 124284|0.55556 124285|0.55556 124286|0.36111 124287|0.5 124288|0.38889 124289|0.33333 124290|0.55556 124291|0.26389 124292|0.41667 124293|0.29167 124294|0.41667 124295|0.25 124296|0.48611 124297|0.70833 124298|0.76389 124299|0.26389 124300|0.27778 124301|0.375 124302|0.26389 124303|0.27778 124304|0.25 124305|0.41667 124306|0.20833 124307|0.36111 124308|0.30556 124309|0.31944 124310|0.36111 124311|0.23611 124312|0.18056 124313|0.26389 124314|0.027778 124315|0.18056 124316|0.51389 124317|0.44444 124318|0.5 124319|0.5 124320|0.43056 124321|0.5 124322|0.055556 124323|0.72222 124324|0.41667 124325|0.43056 124326|0.58333 124327|0.52778 124328|0.38889 124329|0.55556 124330|0.65278 124331|0.44444 124332|0.41667 124333|0.18056 124334|0.59722 124335|0.44444 124336|0.48611 124337|0.47222 124338|0.54167 124339|0.66667 124340|0.75 124341|0.54167 124342|0.26389 124343|0.27778 124344|0.40278 124345|0.5 124346|0.75 124347|0.73611 124348|0.38889 124349|0.44444 124350|0.40278 124351|0.19444 124352|0.11111 124353|0.625 124354|0.45833 124355|0.48611 124356|0.40278 124357|0.375 124358|0.44444 124359|0.23611 124360|0.23611 124361|0.33333 124362|0.43056 124363|0.40278 124364|0.25 124365|0.27778 124366|0.41667 124367|0.36111 124368|0.22222 124369|0.069444 124370|0.055556 124371|0.29167 124372|0.27778 124373|0.041667 124374|0.27778 124375|0.83333 124376|0.26389 124377|0.27778 124378|0.51389 124379|0.55556 124380|0.23611 124381|0.36111 124382|0.40278 124383|0.16667 124384|0.77778 124385|0.90278 124386|0.81944 124387|0.54167 124388|0.19444 124389|0.27778 124390|0.19444 124391|0.5 124392|0.52778 124393|0.63889 124394|0.72222 124395|0.86111 124396|0.45833 124397|0.66667 124398|0.58333 124399|0.91667 124400|0.86111 124401|0.93056 124402|0.34722 124403|0.20833 124404|0.63889 124405|0.52778 124406|0.84722 124407|0.86111 124408|0.69444 124409|0.80556 124410|0.65278 124411|0.52778 124412|0.56944 124413|0.33333 124414|0.70833 124415|0.75 124416|0.75 124417|0.79167 124418|0.43056 124419|0.34722 124420|0.51389 124421|0.5 124422|0.45833 124423|0.48611 124424|0.33333 124425|0.69444 124426|0.55556 124427|0.31944 124428|0.44444 124429|0.51389 124430|0.22222 124431|0.19444 124432|0.5 124433|0.79167 124434|0.055556 124435|0 124436|0.31944 124437|0.41667 124438|0.29167 124439|0.56944 124440|0.38889 124441|0.56944 124442|0.48611 124443|0.59722 124444|0.625 124445|0.69444 124446|0.81944 124447|0.83333 124448|0.65278 124449|0.58333 124450|0.75 124451|0.47222 124452|0.38889 124453|0.26389 124454|0.65278 124455|0.22222 124456|0.38889 124457|0.33333 124458|0.44444 124459|0.30556 124460|0.055556 124461|0.16667 124462|0.70833 124463|0.36111 124464|0.44444 124465|0.44444 124466|0.22222 124467|0.43056 124468|0.20833 124469|0.72222 124470|0.75 124471|0.61111 124472|0.29167 124473|0.29167 124474|0.16667 124475|0.22222 124476|0.52778 124477|0.52778 124478|0.73611 124479|0.34722 124480|0.68056 124481|0.52778 124482|0.11111 124483|0 124484|0.48611 124485|0.375 124486|0.26389 124487|0.15278 124488|0.5 124489|0.38889 124490|0.875 124491|0.83333 124492|0.83333 124493|0.65278 124494|0.375 124495|0.27778 124496|0.69444 124497|0.51389 124498|0.41667 124499|0.43056 124500|0.22222 124501|0.19444 124502|0.65278 124503|0.84722 124504|0.77778 124505|0.66667 124506|0.55556 124507|0.65278 124508|0.69444 124509|0.54167 124510|0.59722 124511|0.22222 124512|0.11111 124513|0.59722 124514|0.44444 124515|0.52778 124516|0.51389 124517|0.20833 124518|0.47222 124519|0.70833 124520|0.84722 124521|0.80556 124522|0.33333 124523|0.76389 124524|0.5 124525|0.69444 124526|0.16667 124527|0.16667 124528|0.30556 124529|0.20833 124530|0.36111 124531|0.27778 124532|0.25 124533|0.16667 124534|0.29167 124535|0.11111 124536|0 124537|0.41667 124538|0.66667 124539|0.51389 124540|0.375 124541|0.5 124542|0.375 124543|0.19444 124544|0.51389 124545|0.375 124546|0.19444 124547|0.16667 124548|0 124549|0.125 124550|0.13889 124551|0.16667 124552|0.25 124553|0.33333 124554|0.69444 124555|0.70833 124556|0.625 124557|0.73611 124558|0.76389 124559|0.5 124560|0.27778 124561|0.097222 124562|0.5 124563|0.51389 124564|0.11111 124565|0.20833 124566|0.86111 124567|0.5 124568|0.63889 124569|0.90278 124570|0.61111 124571|0.69444 124572|0.69444 124573|0.79167 124574|0.16667 124575|0.25 124576|0.5 124577|0.76389 124578|0.88889 124579|0.72222 124580|0.43056 124581|0.625 124582|0.52778 124583|0.51389 124584|0.25 124585|0.11111 124586|0.13889 124587|0.81944 124588|0.80556 124589|0.63889 124590|0.83333 124591|0.16667 124592|0.25 124593|0.29167 124594|0.36111 124595|0.83333 124596|0.81944 124597|0.63889 124598|0.86111 124599|0.19444 124600|0.13889 124601|0.63889 124602|0.58333 124603|0.26389 124604|0.44444 124605|0.34722 124606|0.86111 124607|0.79167 124608|0.70833 124609|0.16667 124610|0.36111 124611|0.52778 124612|0.41667 124613|0.76389 124614|0.58333 124615|0.65278 124616|0.80556 124617|0.66667 124618|0.68056 124619|0.68056 124620|0.625 124621|0.73611 124622|0.33333 124623|0.25 124624|0.54167 124625|0.72222 124626|0.66667 124627|0.63889 124628|0.5 124629|0.61111 124630|0.38889 124631|0.19444 124632|0.69444 124633|0.52778 124634|0.33333 124635|0.25 124636|0.13889 124637|0.5 124638|0.5 124639|0.027778 124640|0.19444 124641|0.625 124642|0.76389 124643|0.5 124644|0.375 124645|0.29167 124646|0.58333 124647|0.63889 124648|0.45833 124649|0.31944 124650|0.27778 124651|0.56944 124652|0.65278 124653|0.45833 124654|0.5 124655|0.90278 124656|0.90278 124657|0.65278 124658|0.70833 124659|0.79167 124660|0.84722 124661|0.81944 124662|0.33333 124663|0.44444 124664|0.68056 124665|0.51389 124666|0.44444 124667|0.5 124668|0.38889 124669|0.44444 124670|0.625 124671|0.59722 124672|0.48611 124673|0.54167 124674|0.19444 124675|0.27778 124676|0.81944 124677|0.84722 124678|0.36111 124679|0.5 124680|0.73611 124681|0.027778 124682|0.125 124683|0.36111 124684|0.34722 124685|0.041667 124686|0.19444 124687|0.63889 124688|0.56944 124689|0.29167 124690|0.55556 124691|0.5 124692|0.81944 124693|0.83333 124694|0.72222 124695|0.61111 124696|0.5 124697|0.5 124698|0.80556 124699|0.013889 124700|0.069444 124701|0.5 124702|0.76389 124703|0.76389 124704|0.375 124705|0.43056 124706|0.51389 124707|0.44444 124708|0.5 124709|0.61111 124710|0.77778 124711|0.77778 124712|0.48611 124713|0.48611 124714|0.5 124715|0.61111 124716|0.5 124717|0.58333 124718|0.41667 124719|0.26389 124720|0.58333 124721|0.625 124722|0.36111 124723|0.29167 124724|0.31944 124725|0.19444 124726|0.20833 124727|0.27778 124728|0.16667 124729|0.33333 124730|0.54167 124731|0.72222 124732|0.22222 124733|0.22222 124734|0.375 124735|0.69444 124736|0.52778 124737|0.94444 124738|0.375 124739|0.56944 124740|0.90278 124741|0.76389 124742|0.27778 124743|0.34722 124744|0.59722 124745|0.54167 124746|0.38889 124747|0.77778 124748|0.625 124749|0.52778 124750|0.72222 124751|0.55556 124752|0.15278 124753|0.19444 124754|0.33333 124755|0.33333 124756|0.20833 124757|0.68056 124758|0.75 124759|0.73611 124760|0.875 124761|0.16667 124762|0.15278 124763|0.29167 124764|0.055556 124765|0.83333 124766|0.54167 124767|0.65278 124768|0.76389 124769|0.80556 124770|0.79167 124771|0.75 124772|0.83333 124773|0.65278 124774|0.72222 124775|0.77778 124776|0.73611 124777|0.625 124778|0.66667 124779|0.48611 124780|0.55556 124781|0.36111 124782|0.5 124783|0.375 124784|0.65278 124785|0.5 124786|0.77778 124787|0.5 124788|0.52778 124789|0.40278 124790|0.44444 124791|0.51389 124792|0.61111 124793|0.5 124794|0.77778 124795|0.91667 124796|0.52778 124797|0.77778 124798|0.44444 124799|0.79167 124800|0.27778 124801|0.86111 124802|0.70833 124803|0.93056 124804|0.83333 124805|0.81944 124806|0.77778 124807|0.65278 124808|0.625 124809|0.41667 124810|0.70833 124811|0.63889 124812|0.81944 124813|0.125 124814|0.73611 124815|0.38889 124816|0.75 124817|0.66667 124818|0.65278 124819|0.58333 124820|0.69444 124821|0.69444 124822|0.72222 124823|0.69444 124824|0.51389 124825|0.36111 124826|0.47222 124827|0.5 124828|0.23611 124829|0.29167 124830|0.80556 124831|0.58333 124832|0.65278 124833|0.68056 124834|0.16667 124835|0.19444 124836|0.375 124837|0.58333 124838|0.25 124839|0.125 124840|0.27778 124841|0.79167 124842|0.51389 124843|0.125 124844|0.40278 124845|0.5 124846|0.625 124847|0.75 124848|0.80556 124849|0.27778 124850|0.66667 124851|0.34722 124852|0.36111 124853|0.65278 124854|0.20833 124855|0.375 124856|0.55556 124857|0.11111 124858|0.20833 124859|0.48611 124860|0.083333 124861|0.61111 124862|0.73611 124863|0.40278 124864|0.34722 124865|0.52778 124866|0.81944 124867|0.63889 124868|0.22222 124869|0.45833 124870|0.055556 124871|0.15278 124872|0.77778 124873|0.73611 124874|0.31944 124875|0.68056 124876|0.11111 124877|0.75 124878|0.51389 124879|0.68056 124880|0.83333 124881|0.25 124882|0.75 124883|0.33333 124884|0.47222 124885|0.77778 124886|0.875 124887|0.73611 124888|0.63889 124889|0.79167 124890|0.61111 124891|0.77778 124892|0.27778 124893|0.55556 124894|0.48611 124895|0.59722 124896|0.61111 124897|0.54167 124898|0.5 124899|0.5 124900|0.34722 124901|0.70833 124902|0.94444 124903|0.54167 124904|0.625 124905|0.63889 124906|0.44444 124907|0.54167 124908|0.66667 124909|0.94444 124910|0.5 124911|0.19444 124912|0.20833 124913|0.069444 124914|0.69444 124915|0.33333 124916|0.38889 124917|0.69444 124918|0.75 124919|0.29167 124920|0.625 124921|0.63889 124922|0.63889 124923|0.45833 124924|0.5 124925|0.29167 124926|0.20833 124927|0.44444 124928|0.54167 124929|0.61111 124930|0.75 124931|0.625 124932|0.33333 124933|0.19444 124934|0.22222 124935|0.52778 124936|0.27778 124937|0.45833 124938|0.375 124939|0.375 124940|0.5 124941|0.77778 124942|0.40278 124943|0.5 124944|0.29167 124945|0.63889 124946|0.59722 124947|0.55556 124948|0.48611 124949|0.41667 124950|0.54167 124951|0.63889 124952|0.27778 124953|0.125 124954|0.125 124955|0.68056 124956|0.5 124957|0.59722 124958|0.65278 124959|0.56944 124960|0.47222 124961|0.27778 124962|0.59722 124963|0.27778 124964|0.77778 124965|0.66667 124966|0.625 124967|0.34722 124968|0.27778 124969|0.625 124970|0.23611 124971|0.26389 124972|0.54167 124973|0.26389 124974|0.33333 124975|0.19444 124976|0.34722 124977|0.31944 124978|0.68056 124979|0.5 124980|0.59722 124981|0.26389 124982|0.63889 124983|0.65278 124984|0.59722 124985|0.55556 124986|0.11111 124987|0.52778 124988|0.52778 124989|0.29167 124990|0.69444 124991|0.41667 124992|0.5 124993|0.68056 124994|0.5 124995|0.27778 124996|0 124997|0.69444 124998|0.84722 124999|0.79167 125000|0.84722 125001|0.30556 125002|0.69444 125003|0.90278 125004|0.44444 125005|0.40278 125006|0.65278 125007|0.30556 125008|0.59722 125009|0.69444 125010|0.31944 125011|0.44444 125012|0.59722 125013|0.75 125014|0.79167 125015|0.56944 125016|0.52778 125017|0.76389 125018|0.30556 125019|0.069444 125020|0.41667 125021|0.69444 125022|0.59722 125023|0.22222 125024|0.45833 125025|0.70833 125026|0.5 125027|0.34722 125028|0.41667 125029|0.30556 125030|0.38889 125031|0.59722 125032|0.45833 125033|0.54167 125034|0.625 125035|0.44444 125036|0.54167 125037|0.76389 125038|0.625 125039|0.61111 125040|0.52778 125041|0.19444 125042|0.23611 125043|0.55556 125044|0.68056 125045|0.51389 125046|0.34722 125047|0.52778 125048|0.59722 125049|0.77778 125050|0.56944 125051|0.54167 125052|0.52778 125053|0.23611 125054|0.51389 125055|0.52778 125056|0.51389 125057|0.625 125058|0.40278 125059|0.34722 125060|0.65278 125061|0.55556 125062|0.5 125063|0.22222 125064|0.31944 125065|0.51389 125066|0.73611 125067|0.875 125068|0.72222 125069|0.33333 125070|0.44444 125071|0.625 125072|0.51389 125073|0.52778 125074|0.44444 125075|0.70833 125076|0.66667 125077|0.56944 125078|0.29167 125079|0.13889 125080|0.27778 125081|0.90278 125082|0.54167 125083|0.68056 125084|0.25 125085|0.80556 125086|0.55556 125087|0.56944 125088|0.72222 125089|0.33333 125090|0.5 125091|0.66667 125092|0.5 125093|0.27778 125094|0.5 125095|0.5 125096|0.80556 125097|0.38889 125098|0.68056 125099|0.5 125100|0.23611 125101|0.69444 125102|0.23611 125103|0.27778 125104|0.33333 125105|0.63889 125106|0.59722 125107|0.069444 125108|0.68056 125109|0.625 125110|0.34722 125111|0.66667 125112|0.15278 125113|0.5 125114|0.65278 125115|0.625 125116|0.5 125117|0.54167 125118|0.81944 125119|0.44444 125120|0.5 125121|0.5 125122|0.69444 125123|0.66667 125124|0.43056 125125|0.77778 125126|0.48611 125127|0.65278 125128|0.44444 125129|0.22222 125130|0.63889 125131|0.45833 125132|0.41667 125133|0.125 125134|0.73611 125135|0.47222 125136|0.61111 125137|0.5 125138|0.43056 125139|0.26389 125140|0.86111 125141|0.47222 125142|0.5 125143|0.19444 125144|0.65278 125145|0.81944 125146|0.84722 125147|0.88889 125148|0.875 125149|0.5 125150|0.66667 125151|0.63889 125152|0.625 125153|0.79167 125154|0.65278 125155|0.54167 125156|0.51389 125157|0.83333 125158|0.27778 125159|0.41667 125160|0.5 125161|0.44444 125162|0.45833 125163|0.5 125164|0.55556 125165|0.56944 125166|0.5 125167|0.40278 125168|0.66667 125169|0.58333 125170|0.45833 125171|0.44444 125172|0.22222 125173|0.625 125174|0.55556 125175|0.72222 125176|0.5 125177|0.55556 125178|0.69444 125179|0.86111 125180|0.70833 125181|0.69444 125182|0.55556 125183|0.41667 125184|0.34722 125185|0.84722 125186|0.41667 125187|0.47222 125188|0.5 125189|0.5 125190|0.72222 125191|0.5 125192|0.51389 125193|0.48611 125194|0.36111 125195|0.66667 125196|0.5 125197|0.38889 125198|0.54167 125199|0.48611 125200|0.5 125201|0.61111 125202|0.47222 125203|0.68056 125204|0.84722 125205|0.55556 125206|0.5 125207|0.5 125208|0.5 125209|0.5 125210|0.5 125211|0.5 125212|0.625 125213|0.5 125214|0.5 125215|0.63889 125216|0.59722 125217|0.72222 125218|0.66667 125219|0.34722 125220|0.23611 125221|0.61111 125222|0.625 125223|0.52778 125224|0.59722 125225|0.80556 125226|0.56944 125227|0.5 125228|0.5 125229|0.38889 125230|0.5 125231|0.63889 125232|0.44444 125233|0.69444 125234|0.27778 125235|0.52778 125236|0.65278 125237|0.63889 125238|0.5 125239|0.875 125240|0.72222 125241|0.51389 125242|0.81944 125243|0.75 125244|0.76389 125245|0.52778 125246|0.125 125247|0.625 125248|0.88889 125249|0.68056 125250|0.52778 125251|0.51389 125252|0.625 125253|0.55556 125254|0.33333 125255|0.54167 125256|0.75 125257|0.44444 125258|0.58333 125259|0.59722 125260|0.55556 125261|0.84722 125262|0.625 125263|0.61111 125264|0.72222 125265|0.66667 125266|0.70833 125267|0.73611 125268|0.84722 125269|0.66667 125270|0.59722 125271|0.5 125272|0.18056 125273|0.38889 125274|0.40278 125275|0.48611 125276|0.55556 125277|0.45833 125278|0.63889 125279|0.66667 125280|0.5 125281|0.45833 125282|0.5 125283|0.5 125284|0.55556 125285|0.81944 125286|0.5 125287|0.59722 125288|0.47222 125289|0.41667 125290|0.65278 125291|0.31944 125292|0.5 125293|0.66667 125294|0.45833 125295|0.38889 125296|0.61111 125297|0.5 125298|0.5 125299|0.5 125300|0.30556 125301|0.27778 125302|0.5 125303|0.55556 125304|0.5 125305|0.59722 125306|0.48611 125307|0.52778 125308|0.625 125309|0.68056 125310|0.5 125311|0.5 125312|0.41667 125313|0.68056 125314|0.72222 125315|0.77778 125316|0.77778 125317|0.375 125318|0.65278 125319|0.5 125320|0.41667 125321|0.5 125322|0.20833 125323|0.65278 125324|0.5 125325|0.625 125326|0.45833 125327|0.75 125328|0.65278 125329|0.29167 125330|0.65278 125331|0.5 125332|0.31944 125333|0.20833 125334|0.5 125335|0.52778 125336|0.375 125337|0.52778 125338|0.45833 125339|0.86111 125340|0.76389 125341|0.5 125342|0.5 125343|0.75 125344|0.5 125345|0.5 125346|0.59722 125347|0.61111 125348|0.5 125349|0.40278 125350|0.54167 125351|0.5 125352|0.70833 125353|0.18056 125354|0.30556 125355|0.55556 125356|0.5 125357|0.54167 125358|0.54167 125359|0.56944 125360|0.58333 125361|0.63889 125362|0.61111 125363|0.5 125364|0.19444 125365|0.625 125366|0.625 125367|0.45833 125368|0.75 125369|0.34722 125370|0.55556 125371|0.54167 125372|0.31944 125373|0.11111 125374|0.30556 125375|0.38889 125376|0.625 125377|0.5 125378|0.44444 125379|0.47222 125380|0.56944 125381|0.5 125382|0.68056 125383|0.51389 125384|0.5 125385|0.63889 125386|0.41667 125387|0.45833 125388|0.5 125389|0.38889 125390|0.36111 125391|0.56944 125392|0.72222 125393|0.70833 125394|0.75 125395|0.83333 125396|0.79167 125397|0.68056 125398|0.55556 125399|0.59722 125400|0.375 125401|0.47222 125402|0.61111 125403|0.55556 125404|0.76389 125405|0.625 125406|0.5 125407|0.36111 125408|0.75 125409|0.33333 125410|0.5 125411|0.45833 125412|0.40278 125413|0.69444 125414|0.54167 125415|0.73611 125416|0.48611 125417|0.61111 125418|0.41667 125419|0.83333 125420|0.72222 125421|0.5 125422|0.5 125423|0.5 125424|0.58333 125425|0.36111 125426|0.88889 125427|0.72222 125428|0.625 125429|0.45833 125430|0.83333 125431|0.40278 125432|0.47222 125433|0.41667 125434|0.56944 125435|0.51389 125436|0.38889 125437|0.47222 125438|0.59722 125439|0.5 125440|0.76389 125441|0.47222 125442|0.41667 125443|0.5 125444|0.77778 125445|0.83333 125446|0.68056 125447|0.83333 125448|0.80556 125449|0.86111 125450|0.88889 125451|0.84722 125452|0.91667 125453|0.93056 125454|0.91667 125455|0.94444 125456|0.66667 125457|0.5 125458|0.5 125459|0.13889 125460|0.40278 125461|0.47222 125462|0.52778 125463|0.5 125464|0.5 125465|0.5 125466|0.5 125467|0.45833 125468|0.5 125469|0.61111 125470|0.63889 125471|0.38889 125472|0.54167 125473|0.625 125474|0.86111 125475|0.86111 125476|0.81944 125477|0.875 125478|0.66667 125479|0.5 125480|0.51389 125481|0.5 125482|0.68056 125483|0.54167 125484|0.80556 125485|0.63889 125486|0.5 125487|0.5 125488|0.5 125489|0.13889 125490|0.55556 125491|0.73611 125492|0.70833 125493|0.80556 125494|0.875 125495|0.73611 125496|0.45833 125497|0.38889 125498|0.41667 125499|0.5 125500|0.13889 125501|0.20833 125502|0.16667 125503|0.36111 125504|0.72222 125505|0.22222 125506|0.5 125507|0.38889 125508|0.27778 125509|0.19444 125510|0.58333 125511|0.5 125512|0.26389 125513|0.52778 125514|0.51389 125515|0.45833 125516|0.5 125517|0.51389 125518|0.013889 125519|0.055556 125520|0.59722 125521|0.13889 125522|0.40278 125523|0.31944 125524|0.5 125525|0.56944 125526|0.44444 125527|0.23611 125528|0.22222 125529|0.625 125530|0.625 125531|0.54167 125532|0.73611 125533|0.5 125534|0.5 125535|0.52778 125536|0.43056 125537|0.5 125538|0.625 125539|0.66667 125540|0.38889 125541|0.40278 125542|0.63889 125543|0.65278 125544|0.5 125545|0.5 125546|0.51389 125547|0.52778 125548|0.70833 125549|0.73611 125550|0.70833 125551|0.73611 125552|0.5 125553|0.875 125554|0.59722 125555|0.59722 125556|0.59722 125557|0.41667 125558|0.63889 125559|0.41667 125560|0.375 125561|0.5 125562|0.59722 125563|0.77778 125564|0.54167 125565|0.54167 125566|0.45833 125567|0.40278 125568|0.5 125569|0.66667 125570|0.52778 125571|0.26389 125572|0.5 125573|0.54167 125574|0.59722 125575|0.625 125576|0.76389 125577|0.72222 125578|0.76389 125579|0.5 125580|0.61111 125581|0.55556 125582|0.36111 125583|0.47222 125584|0.45833 125585|0.52778 125586|0.48611 125587|0.68056 125588|0.47222 125589|0.48611 125590|0.54167 125591|0.43056 125592|0.45833 125593|0.73611 125594|0.77778 125595|0.69444 125596|0.70833 125597|0.5 125598|0.30556 125599|0.5 125600|0.375 125601|0.72222 125602|0.40278 125603|0.59722 125604|0.5 125605|0.45833 125606|0.52778 125607|0.5 125608|0.5 125609|0.48611 125610|0.72222 125611|0.61111 125612|0.5 125613|0.5 125614|0.55556 125615|0.83333 125616|0.5 125617|0.63889 125618|0.51389 125619|0.27778 125620|0.5 125621|0.19444 125622|0.5 125623|0.5 125624|0.48611 125625|0.48611 125626|0.45833 125627|0.33333 125628|0.61111 125629|0.56944 125630|0.69444 125631|0.48611 125632|0.43056 125633|0.41667 125634|0.51389 125635|0.5 125636|0.38889 125637|0.66667 125638|0.51389 125639|0.45833 125640|0.45833 125641|0.5 125642|0.5 125643|0.5 125644|0.52778 125645|0.5 125646|0.72222 125647|0.625 125648|0.5 125649|0.5 125650|0.52778 125651|0.75 125652|0.68056 125653|0.79167 125654|0.77778 125655|0.81944 125656|0.80556 125657|0.80556 125658|0.66667 125659|0.70833 125660|0.63889 125661|0.66667 125662|0.55556 125663|0.63889 125664|0.79167 125665|0.61111 125666|0.5 125667|0.58333 125668|0.29167 125669|0.65278 125670|0.5 125671|0.5 125672|0.5 125673|0.5 125674|0.5 125675|0.5 125676|0.58333 125677|0.58333 125678|0.5 125679|0.5 125680|0.30556 125681|0.44444 125682|0.25 125683|0.38889 125684|0.29167 125685|0.31944 125686|0.44444 125687|0.29167 125688|0.625 125689|0.56944 125690|0.26389 125691|0.33333 125692|0.33333 125693|0.22222 125694|0.31944 125695|0.38889 125696|0.27778 125697|0.375 125698|0.18056 125699|0.26389 125700|0.375 125701|0.34722 125702|0.40278 125703|0.25 125704|0.29167 125705|0.27778 125706|0.45833 125707|0.26389 125708|0.18056 125709|0.34722 125710|0.45833 125711|0.22222 125712|0.31944 125713|0.30556 125714|0.63889 125715|0.31944 125716|0.44444 125717|0.23611 125718|0.5 125719|0.58333 125720|0.63889 125721|0.48611 125722|0.27778 125723|0.30556 125724|0.23611 125725|0.11111 125726|0.375 125727|0.63889 125728|0.59722 125729|0.56944 125730|0.34722 125731|0.61111 125732|0.58333 125733|0.5 125734|0.51389 125735|0.88889 125736|0.79167 125737|0.72222 125738|0.5 125739|0.65278 125740|0.47222 125741|0.44444 125742|0.45833 125743|0.68056 125744|0.34722 125745|0.51389 125746|0.55556 125747|0.55556 125748|0.5 125749|0.61111 125750|0.625 125751|0.70833 125752|0.43056 125753|0.18056 125754|0.27778 125755|0.38889 125756|0.43056 125757|0.44444 125758|0.5 125759|0.44444 125760|0.5 125761|0.40278 125762|0.5 125763|0.5 125764|0.69444 125765|0.5 125766|0.625 125767|0.48611 125768|0.51389 125769|0.58333 125770|0.48611 125771|0.58333 125772|0.43056 125773|0.5 125774|0.5 125775|0.5 125776|0.5 125777|0.44444 125778|0.61111 125779|0.5 125780|0.63889 125781|0.5 125782|0.5 125783|0.58333 125784|0.5 125785|0.5 125786|0.5 125787|0.5 125788|0.41667 125789|0.48611 125790|0.52778 125791|0.86111 125792|0.66667 125793|0.61111 125794|0.68056 125795|0.77778 125796|0.38889 125797|0.70833 125798|0.79167 125799|0.80556 125800|0.5 125801|0.5 125802|0.52778 125803|0.59722 125804|0.68056 125805|0.61111 125806|0.43056 125807|0.68056 125808|0.56944 125809|0.5 125810|0.48611 125811|0.76389 125812|0.625 125813|0.5 125814|0.5 125815|0.5 125816|0.5 125817|0.76389 125818|0.5 125819|0.5 125820|0.69444 125821|0.36111 125822|0.43056 125823|0.44444 125824|0.16667 125825|0.5 125826|0.61111 125827|0.45833 125828|0.27778 125829|0.5 125830|0.5 125831|0.5 125832|0.56944 125833|0.38889 125834|0.34722 125835|0.66667 125836|0.45833 125837|0.5 125838|0.40278 125839|0.33333 125840|0.5 125841|0.79167 125842|0.47222 125843|0.625 125844|0.5 125845|0.48611 125846|0.41667 125847|0.5 125848|0.66667 125849|0.55556 125850|0.76389 125851|0.55556 125852|0.44444 125853|0.5 125854|0.63889 125855|0.52778 125856|0.5 125857|0.66667 125858|0.55556 125859|0.44444 125860|0.63889 125861|0.76389 125862|0.70833 125863|0.25 125864|0.58333 125865|0.22222 125866|0.5 125867|0.33333 125868|0.23611 125869|0.27778 125870|0.36111 125871|0.45833 125872|0.27778 125873|0.31944 125874|0.18056 125875|0.76389 125876|0.79167 125877|0.45833 125878|0.26389 125879|0.5 125880|0.45833 125881|0.54167 125882|0.47222 125883|0.22222 125884|0.5 125885|0.27778 125886|0.83333 125887|0.51389 125888|0.5 125889|0.40278 125890|0.38889 125891|0.30556 125892|0.41667 125893|0.29167 125894|0.29167 125895|0.25 125896|0.18056 125897|0.47222 125898|0.41667 125899|0.58333 125900|0.5 125901|0.44444 125902|0.5 125903|0.66667 125904|0.58333 125905|0.52778 125906|0.54167 125907|0.61111 125908|0.47222 125909|0.77778 125910|0.51389 125911|0.47222 125912|0.5 125913|0.59722 125914|0.59722 125915|0.5 125916|0.30556 125917|0.27778 125918|0.47222 125919|0.23611 125920|0.40278 125921|0.48611 125922|0.625 125923|0.31944 125924|0.41667 125925|0.5 125926|0.5 125927|0.70833 125928|0.65278 125929|0.55556 125930|0.11111 125931|0.41667 125932|0.51389 125933|0.5 125934|0.65278 125935|0.54167 125936|0.36111 125937|0.77778 125938|0.875 125939|0.34722 125940|0.76389 125941|0.54167 125942|0.34722 125943|0.625 125944|0.5 125945|0.5 125946|0.72222 125947|0.5 125948|0.51389 125949|0.51389 125950|0.47222 125951|0.375 125952|0.44444 125953|0.22222 125954|0.33333 125955|0.38889 125956|0.63889 125957|0.65278 125958|0.51389 125959|0.5 125960|0.5 125961|0.70833 125962|0.66667 125963|0.52778 125964|0.33333 125965|0.70833 125966|0.5 125967|0.70833 125968|0.38889 125969|0.51389 125970|0.83333 125971|0.65278 125972|0.33333 125973|0.56944 125974|0.61111 125975|0.66667 125976|0.69444 125977|0.73611 125978|0.79167 125979|0.875 125980|0.77778 125981|0.5 125982|0.56944 125983|0.5 125984|0.59722 125985|0.63889 125986|0.61111 125987|0.44444 125988|0.26389 125989|0.86111 125990|0.84722 125991|0.34722 125992|0.65278 125993|0.38889 125994|0.55556 125995|0.47222 125996|0.52778 125997|0.54167 125998|0.55556 125999|0.72222 126000|0.52778 126001|0.58333 126002|0.63889 126003|0.63889 126004|0.59722 126005|0.5 126006|0.5 126007|0.5 126008|0.5 126009|0.5 126010|0.41667 126011|0.5 126012|0.19444 126013|0.5 126014|0.5 126015|0.5 126016|0.54167 126017|0.5 126018|0.54167 126019|0.5 126020|0.5 126021|0.59722 126022|0.45833 126023|0.68056 126024|0.43056 126025|0.55556 126026|0.5 126027|0.38889 126028|0.44444 126029|0.5 126030|0.5 126031|0.5 126032|0.61111 126033|0.5 126034|0.52778 126035|0.66667 126036|0.5 126037|0.43056 126038|0.61111 126039|0.25 126040|0.44444 126041|0.041667 126042|0.55556 126043|0.22222 126044|0.52778 126045|0.55556 126046|0.16667 126047|0.27778 126048|0.38889 126049|0.40278 126050|0.16667 126051|0.34722 126052|0.45833 126053|0.25 126054|0.5 126055|0.41667 126056|0.48611 126057|0.63889 126058|0.45833 126059|0.58333 126060|0.15278 126061|0.73611 126062|0.38889 126063|0.40278 126064|0.34722 126065|0.34722 126066|0.5 126067|0.38889 126068|0.52778 126069|0.5 126070|0.375 126071|0.27778 126072|0.55556 126073|0.33333 126074|0.38889 126075|0.375 126076|0.66667 126077|0.30556 126078|0.125 126079|0.52778 126080|0.47222 126081|0.69444 126082|0.51389 126083|0.30556 126084|0.625 126085|0.65278 126086|0.73611 126087|0.22222 126088|0.31944 126089|0.625 126090|0.18056 126091|0.5 126092|0.19444 126093|0.16667 126094|0.51389 126095|0.44444 126096|0.36111 126097|0.31944 126098|0.43056 126099|0.27778 126100|0.38889 126101|0.63889 126102|0.55556 126103|0.56944 126104|0.48611 126105|0.61111 126106|0.56944 126107|0.25 126108|0.5 126109|0.47222 126110|0.47222 126111|0.29167 126112|0.16667 126113|0.58333 126114|0.72222 126115|0.61111 126116|0.54167 126117|0.58333 126118|0.81944 126119|0.44444 126120|0.55556 126121|0.55556 126122|0.11111 126123|0.055556 126124|0.40278 126125|0.72222 126126|0.625 126127|0.72222 126128|0.52778 126129|0.5 126130|0.36111 126131|0.51389 126132|0.47222 126133|0.29167 126134|0.63889 126135|0.25 126136|0.33333 126137|0.44444 126138|0.47222 126139|0.5 126140|0.63889 126141|0.43056 126142|0.44444 126143|0.45833 126144|0.26389 126145|0.33333 126146|0.66667 126147|0.55556 126148|0.625 126149|0.40278 126150|0.45833 126151|0.52778 126152|0.66667 126153|0.55556 126154|0.70833 126155|0.625 126156|0.56944 126157|0.625 126158|0.68056 126159|0.66667 126160|0.63889 126161|0.5 126162|0.5 126163|0.54167 126164|0.22222 126165|0.59722 126166|0.5 126167|0.68056 126168|0.125 126169|0.44444 126170|0.375 126171|0.30556 126172|0.59722 126173|0.41667 126174|0.5 126175|0.33333 126176|0.48611 126177|0.5 126178|0.66667 126179|0.55556 126180|0.38889 126181|0.54167 126182|0.16667 126183|0.19444 126184|0.38889 126185|0.44444 126186|0.5 126187|0.40278 126188|0.54167 126189|0.44444 126190|0.38889 126191|0.5 126192|0.20833 126193|0.15278 126194|0.11111 126195|0.15278 126196|0.34722 126197|0.58333 126198|0.51389 126199|0.44444 126200|0.54167 126201|0.5 126202|0.5 126203|0.59722 126204|0.43056 126205|0.30556 126206|0.5 126207|0.55556 126208|0.38889 126209|0.33333 126210|0.59722 126211|0.63889 126212|0.38889 126213|0.41667 126214|0.5 126215|0.5 126216|0.68056 126217|0.84722 126218|0.375 126219|0.27778 126220|0.36111 126221|0.44444 126222|0.5 126223|0.5 126224|0.43056 126225|0.5 126226|0.5 126227|0.61111 126228|0.59722 126229|0.5 126230|0.5 126231|0.5 126232|0.45833 126233|0.45833 126234|0.41667 126235|0.30556 126236|0.56944 126237|0.65278 126238|0.54167 126239|0.22222 126240|0.43056 126241|0.47222 126242|0.47222 126243|0.41667 126244|0.36111 126245|0.43056 126246|0.36111 126247|0.55556 126248|0.5 126249|0.19444 126250|0.27778 126251|0.58333 126252|0.52778 126253|0.36111 126254|0.5 126255|0.33333 126256|0.34722 126257|0.54167 126258|0.54167 126259|0.5 126260|0.38889 126261|0.55556 126262|0.5 126263|0.61111 126264|0.77778 126265|0.5 126266|0.52778 126267|0.56944 126268|0.51389 126269|0.5 126270|0.5 126271|0.40278 126272|0.5 126273|0.5 126274|0.5 126275|0.5 126276|0.48611 126277|0.30556 126278|0.58333 126279|0.5 126280|0.5 126281|0.5 126282|0.5 126283|0.5 126284|0.44444 126285|0.61111 126286|0.48611 126287|0.5 126288|0.48611 126289|0.45833 126290|0.5 126291|0.44444 126292|0.5 126293|0.72222 126294|0.45833 126295|0.5 126296|0.43056 126297|0.65278 126298|0.27778 126299|0.45833 126300|0.44444 126301|0.48611 126302|0.55556 126303|0.56944 126304|0.75 126305|0.41667 126306|0.66667 126307|0.48611 126308|0.66667 126309|0.58333 126310|0.375 126311|0.48611 126312|0.58333 126313|0.44444 126314|0.20833 126315|0.70833 126316|0.58333 126317|0.52778 126318|0.54167 126319|0.5 126320|0.40278 126321|0.31944 126322|0.47222 126323|0.5 126324|0.79167 126325|0.84722 126326|0.43056 126327|0.52778 126328|0.5 126329|0.47222 126330|0.56944 126331|0.5 126332|0.5 126333|0.5 126334|0.77778 126335|0.5 126336|0.76389 126337|0.54167 126338|0.25 126339|0.375 126340|0.51389 126341|0.5 126342|0.5 126343|0.5 126344|0.125 126345|0.31944 126346|0.20833 126347|0.5 126348|0.55556 126349|0.5 126350|0.375 126351|0.61111 126352|0.33333 126353|0.56944 126354|0.52778 126355|0.51389 126356|0.041667 126357|0.125 126358|0.22222 126359|0.27778 126360|0.68056 126361|0.23611 126362|0.25 126363|0.47222 126364|0.5 126365|0.55556 126366|0.36111 126367|0.5 126368|0.63889 126369|0.55556 126370|0.70833 126371|0.5 126372|0.5 126373|0.59722 126374|0.5 126375|0.375 126376|0.59722 126377|0.44444 126378|0.31944 126379|0.48611 126380|0.31944 126381|0.26389 126382|0.22222 126383|0.20833 126384|0.30556 126385|0.16667 126386|0.43056 126387|0.43056 126388|0.36111 126389|0.40278 126390|0.27778 126391|0.43056 126392|0.58333 126393|0.52778 126394|0.34722 126395|0.30556 126396|0.30556 126397|0.26389 126398|0.25 126399|0.26389 126400|0.58333 126401|0.76389 126402|0.44444 126403|0.52778 126404|0.40278 126405|0.36111 126406|0.5 126407|0.30556 126408|0.63889 126409|0.22222 126410|0.16667 126411|0.26389 126412|0.25 126413|0.58333 126414|0.76389 126415|0.59722 126416|0.44444 126417|0.625 126418|0.58333 126419|0.56944 126420|0.55556 126421|0.59722 126422|0.58333 126423|0.5 126424|0.72222 126425|0.75 126426|0.52778 126427|0.65278 126428|0.72222 126429|0.66667 126430|0.91667 126431|0.66667 126432|0.70833 126433|0.72222 126434|0.55556 126435|0.43056 126436|0.63889 126437|0.51389 126438|0.83333 126439|0.72222 126440|0.81944 126441|0.69444 126442|0.94444 126443|0.72222 126444|0.63889 126445|0.54167 126446|0.625 126447|0.90278 126448|0.65278 126449|0.58333 126450|0.5 126451|0.54167 126452|0.5 126453|0.55556 126454|0.66667 126455|0.70833 126456|0.83333 126457|0.73611 126458|0.69444 126459|0.72222 126460|0.63889 126461|0.72222 126462|0.73611 126463|0.69444 126464|0.36111 126465|0.27778 126466|0.11111 126467|0.125 126468|0.375 126469|0.055556 126470|0.5 126471|0.54167 126472|0.5 126473|0.20833 126474|0.43056 126475|0.44444 126476|0.44444 126477|0.44444 126478|0.18056 126479|0.54167 126480|0.65278 126481|0.66667 126482|0.5 126483|0.16667 126484|0.29167 126485|0.47222 126486|0.52778 126487|0.34722 126488|0.48611 126489|0.29167 126490|0.56944 126491|0.38889 126492|0.13889 126493|0.38889 126494|0.38889 126495|0.11111 126496|0.34722 126497|0.44444 126498|0.91667 126499|0.55556 126500|0.875 126501|0.5 126502|0.5 126503|0.625 126504|0.81944 126505|0.47222 126506|0.73611 126507|0.625 126508|0.5 126509|0.18056 126510|0.18056 126511|0.5 126512|0.5 126513|0.61111 126514|0.26389 126515|0.5 126516|0.66667 126517|0.48611 126518|0.56944 126519|0.41667 126520|0.36111 126521|0.5 126522|0.63889 126523|0.75 126524|0.61111 126525|0.51389 126526|0.83333 126527|0.11111 126528|0.23611 126529|0.84722 126530|0.48611 126531|0.47222 126532|0.30556 126533|0.56944 126534|0.61111 126535|0.41667 126536|0.31944 126537|0.375 126538|0.44444 126539|0.5 126540|0.5 126541|0.5 126542|0.30556 126543|0.40278 126544|0.5 126545|0.51389 126546|0.52778 126547|0.55556 126548|0.29167 126549|0.61111 126550|0.75 126551|0.66667 126552|0.5 126553|0.66667 126554|0.31944 126555|0.43056 126556|0.5 126557|0.51389 126558|0.25 126559|0.125 126560|0.5 126561|0.43056 126562|0.48611 126563|0.58333 126564|0.77778 126565|0.91667 126566|0.84722 126567|0.72222 126568|0.76389 126569|0.52778 126570|0.51389 126571|0.54167 126572|0.5 126573|0.625 126574|0.27778 126575|0.34722 126576|0.65278 126577|0.5 126578|0.52778 126579|0.625 126580|0.72222 126581|0.54167 126582|0.61111 126583|0.56944 126584|0.81944 126585|0.69444 126586|0.66667 126587|0.72222 126588|0.54167 126589|0.66667 126590|0.79167 126591|0.69444 126592|0.51389 126593|0.75 126594|0.51389 126595|0.5 126596|0.66667 126597|0.52778 126598|0.5 126599|0.56944 126600|0.51389 126601|0.16667 126602|0.625 126603|0.31944 126604|0.59722 126605|0.61111 126606|0.66667 126607|0.61111 126608|0.66667 126609|0.52778 126610|0.76389 126611|0.41667 126612|0.55556 126613|0.55556 126614|0.59722 126615|0.68056 126616|0.77778 126617|0.69444 126618|0.81944 126619|0.40278 126620|0.33333 126621|0.48611 126622|0.5 126623|0.5 126624|0.75 126625|0.77778 126626|0.45833 126627|0.44444 126628|0.5 126629|0.51389 126630|0.20833 126631|0.5 126632|0.61111 126633|0.65278 126634|0.45833 126635|0.625 126636|0.54167 126637|0.72222 126638|0.5 126639|0.5 126640|0.58333 126641|0.65278 126642|0.73611 126643|0.70833 126644|0.75 126645|0.84722 126646|0.51389 126647|0.44444 126648|0.38889 126649|0.40278 126650|0.61111 126651|0.68056 126652|0.48611 126653|0.41667 126654|0.5 126655|0.54167 126656|0.5 126657|0.36111 126658|0.30556 126659|0.72222 126660|0.70833 126661|0.5 126662|0.34722 126663|0.65278 126664|0.43056 126665|0.5 126666|0.68056 126667|0.88889 126668|0.86111 126669|0.66667 126670|0.81944 126671|0.51389 126672|0.27778 126673|0.44444 126674|0.61111 126675|0.31944 126676|0.33333 126677|0.68056 126678|0.77778 126679|0.5 126680|0.41667 126681|0.625 126682|0.5 126683|0.5 126684|0.38889 126685|0.36111 126686|0.59722 126687|0.51389 126688|0.72222 126689|0.61111 126690|0.25 126691|0.22222 126692|0.31944 126693|0.58333 126694|0.59722 126695|0.48611 126696|0.45833 126697|0.5 126698|0.63889 126699|0.55556 126700|0.66667 126701|0.69444 126702|0.68056 126703|0.80556 126704|0.65278 126705|0.59722 126706|0.72222 126707|0.26389 126708|0.55556 126709|0.29167 126710|0.43056 126711|0.72222 126712|0.88889 126713|0.70833 126714|0.79167 126715|0.58333 126716|0.43056 126717|0.625 126718|0.58333 126719|0.56944 126720|0.38889 126721|0.5 126722|0.51389 126723|0.5 126724|0.5 126725|0.47222 126726|0.69444 126727|0.52778 126728|0.41667 126729|0.52778 126730|0.59722 126731|0.52778 126732|0.5 126733|0.55556 126734|0.73611 126735|0.5 126736|0.51389 126737|0.5 126738|0.5 126739|0.38889 126740|0.5 126741|0.5 126742|0.54167 126743|0.56944 126744|0.875 126745|0.65278 126746|0.66667 126747|0.63889 126748|0.625 126749|0.58333 126750|0.69444 126751|0.79167 126752|0.80556 126753|0.58333 126754|0.83333 126755|0.75 126756|0.52778 126757|0.75 126758|0.70833 126759|0.70833 126760|0.69444 126761|0.75 126762|0.45833 126763|0.375 126764|0.33333 126765|0.47222 126766|0.48611 126767|0.40278 126768|0.43056 126769|0.5 126770|0.5 126771|0.52778 126772|0.44444 126773|0.20833 126774|0.36111 126775|0.5 126776|0.5 126777|0.51389 126778|0.69444 126779|0.68056 126780|0.43056 126781|0.45833 126782|0.58333 126783|0.59722 126784|0.58333 126785|0.77778 126786|0.69444 126787|0.44444 126788|0.38889 126789|0.63889 126790|0.31944 126791|0.40278 126792|0.47222 126793|0.20833 126794|0.5 126795|0.54167 126796|0.5 126797|0.73611 126798|0.44444 126799|0.59722 126800|0.47222 126801|0.43056 126802|0.34722 126803|0.47222 126804|0.5 126805|0.5 126806|0.5 126807|0.73611 126808|0.56944 126809|0.23611 126810|0.56944 126811|0.41667 126812|0.52778 126813|0.55556 126814|0.52778 126815|0.5 126816|0.68056 126817|0.65278 126818|0.52778 126819|0.54167 126820|0.83333 126821|0.55556 126822|0.625 126823|0.027778 126824|0.13889 126825|0.58333 126826|0.68056 126827|0.5 126828|0.23611 126829|0.26389 126830|0.63889 126831|0.88889 126832|0.22222 126833|0.23611 126834|0.55556 126835|0.59722 126836|0.86111 126837|0.72222 126838|0.95833 126839|0.76389 126840|0.77778 126841|0.61111 126842|0.76389 126843|0.30556 126844|0.56944 126845|0.63889 126846|0.56944 126847|0.73611 126848|0.58333 126849|0.61111 126850|0.47222 126851|0.5 126852|0.5 126853|0.59722 126854|0.5 126855|0.5 126856|0.48611 126857|0.5 126858|0.55556 126859|0.48611 126860|0.5 126861|0.55556 126862|0.33333 126863|0.54167 126864|0.43056 126865|0.5 126866|0.58333 126867|0.59722 126868|0.20833 126869|0.5 126870|0.52778 126871|0.73611 126872|0.58333 126873|0.375 126874|0.27778 126875|0.43056 126876|0.51389 126877|0.33333 126878|0.625 126879|0.45833 126880|0.29167 126881|0.44444 126882|0.27778 126883|0.30556 126884|0.5 126885|0.63889 126886|0.625 126887|0.55556 126888|0.59722 126889|0.33333 126890|0.52778 126891|0.47222 126892|0.51389 126893|0.40278 126894|0.47222 126895|0.5 126896|0.63889 126897|0.51389 126898|0.22222 126899|0.63889 126900|0.54167 126901|0.41667 126902|0.29167 126903|0.48611 126904|0.34722 126905|0.5 126906|0.43056 126907|0.34722 126908|0.51389 126909|0.43056 126910|0.5 126911|0.73611 126912|0.625 126913|0.5 126914|0.45833 126915|0.88889 126916|0.93056 126917|0.5 126918|0.25 126919|0.69444 126920|0.65278 126921|0.47222 126922|0.5 126923|0.5 126924|0.48611 126925|0.44444 126926|0.63889 126927|0.625 126928|0.5 126929|0.41667 126930|0.31944 126931|0.30556 126932|0.40278 126933|0.54167 126934|0.44444 126935|0.30556 126936|0.51389 126937|0.63889 126938|0.38889 126939|0.44444 126940|0.38889 126941|0.34722 126942|0.26389 126943|0.375 126944|0.33333 126945|0.19444 126946|0.23611 126947|0.34722 126948|0.41667 126949|0.18056 126950|0.16667 126951|0.26389 126952|0.36111 126953|0.48611 126954|0.58333 126955|0.47222 126956|0.5 126957|0.70833 126958|0.84722 126959|0.80556 126960|0.5 126961|0.51389 126962|0.51389 126963|0.36111 126964|0.5 126965|0.70833 126966|0.375 126967|0.19444 126968|0.5 126969|0.48611 126970|0.63889 126971|0.625 126972|0.5 126973|0.48611 126974|0.44444 126975|0.51389 126976|0.34722 126977|0.29167 126978|0.34722 126979|0.30556 126980|0.44444 126981|0.30556 126982|0.48611 126983|0.40278 126984|0.68056 126985|0.61111 126986|0.5 126987|0.48611 126988|0.77778 126989|0.63889 126990|0.76389 126991|0.65278 126992|0.5 126993|0.41667 126994|0.55556 126995|0.45833 126996|0.52778 126997|0.375 126998|0.26389 126999|0.5 127000|0.58333 127001|0.59722 127002|0.72222 127003|0.55556 127004|0.66667 127005|0.66667 127006|0.76389 127007|0.56944 127008|0.43056 127009|0.55556 127010|0.59722 127011|0.5 127012|0.52778 127013|0.5 127014|0.5 127015|0.44444 127016|0.31944 127017|0.43056 127018|0.66667 127019|0.48611 127020|0.44444 127021|0.55556 127022|0.15278 127023|0.29167 127024|0.41667 127025|0.44444 127026|0.68056 127027|0.55556 127028|0.81944 127029|0.27778 127030|0.041667 127031|0.61111 127032|0.33333 127033|0.52778 127034|0.5 127035|0.45833 127036|0.69444 127037|0.58333 127038|0.5 127039|0.52778 127040|0.5 127041|0.44444 127042|0.52778 127043|0.5 127044|0.5 127045|0.51389 127046|0.18056 127047|0.58333 127048|0.56944 127049|0.29167 127050|0.54167 127051|0.5 127052|0.65278 127053|0.125 127054|0.31944 127055|0.16667 127056|0.52778 127057|0.27778 127058|0.45833 127059|0.29167 127060|0.56944 127061|0.55556 127062|0.375 127063|0.55556 127064|0.88889 127065|0.80556 127066|0.29167 127067|0.63889 127068|0.5 127069|0.5 127070|0.59722 127071|0.30556 127072|0.51389 127073|0.47222 127074|0.11111 127075|0.25 127076|0.23611 127077|0.48611 127078|0.38889 127079|0.27778 127080|0.30556 127081|0.47222 127082|0.5 127083|0.13889 127084|0.19444 127085|0.47222 127086|0.61111 127087|0.18056 127088|0.51389 127089|0.47222 127090|0.5 127091|0.45833 127092|0.51389 127093|0.51389 127094|0.52778 127095|0.5 127096|0.56944 127097|0.5 127098|0.59722 127099|0.58333 127100|0.625 127101|0.51389 127102|0.5 127103|0.5 127104|0.52778 127105|0.47222 127106|0.33333 127107|0.80556 127108|0.59722 127109|0.40278 127110|0.44444 127111|0.5 127112|0.68056 127113|0.55556 127114|0.34722 127115|0.20833 127116|0.27778 127117|0.069444 127118|0.083333 127119|0.26389 127120|0.34722 127121|0.48611 127122|0.58333 127123|0.56944 127124|0.45833 127125|0.48611 127126|0.44444 127127|0.38889 127128|0.48611 127129|0.44444 127130|0.5 127131|0.55556 127132|0.69444 127133|0.83333 127134|0.36111 127135|0.48611 127136|0.34722 127137|0.31944 127138|0.5 127139|0.38889 127140|0.34722 127141|0.58333 127142|0.38889 127143|0.69444 127144|0.27778 127145|0.18056 127146|0.27778 127147|0.48611 127148|0.375 127149|0.48611 127150|0.44444 127151|0.23611 127152|0.375 127153|0.41667 127154|0.54167 127155|0.625 127156|0.43056 127157|0.29167 127158|0.22222 127159|0.33333 127160|0.31944 127161|0.61111 127162|0.33333 127163|0.56944 127164|0.5 127165|0.45833 127166|0.45833 127167|0.56944 127168|0.625 127169|0.5 127170|0.44444 127171|0.5 127172|0.45833 127173|0.31944 127174|0.5 127175|0.38889 127176|0.26389 127177|0.63889 127178|0.33333 127179|0.5 127180|0.5 127181|0.58333 127182|0.63889 127183|0.51389 127184|0.25 127185|0.44444 127186|0.5 127187|0.72222 127188|0.65278 127189|0.58333 127190|0.51389 127191|0.5 127192|0.59722 127193|0.375 127194|0.5 127195|0.51389 127196|0.5 127197|0.5 127198|0.5 127199|0.79167 127200|0.52778 127201|0.5 127202|0.44444 127203|0.52778 127204|0.45833 127205|0.63889 127206|0.61111 127207|0.55556 127208|0.54167 127209|0.47222 127210|0.66667 127211|0.75 127212|0.43056 127213|0.59722 127214|0.58333 127215|0.5 127216|0.55556 127217|0.5 127218|0.63889 127219|0.5 127220|0.61111 127221|0.58333 127222|0.5 127223|0.5 127224|0.77778 127225|0.68056 127226|0.38889 127227|0.48611 127228|0.5 127229|0.47222 127230|0.19444 127231|0.55556 127232|0.5 127233|0.59722 127234|0.38889 127235|0.52778 127236|0.5 127237|0.45833 127238|0.88889 127239|0.55556 127240|0.58333 127241|0.5 127242|0.63889 127243|0.5 127244|0.52778 127245|0.58333 127246|0.55556 127247|0.55556 127248|0.65278 127249|0.33333 127250|0.375 127251|0.5 127252|0.47222 127253|0.55556 127254|0.52778 127255|0.52778 127256|0.66667 127257|0.27778 127258|0.55556 127259|0.52778 127260|0.54167 127261|0.54167 127262|0.51389 127263|0.29167 127264|0.5 127265|0.52778 127266|0.38889 127267|0.25 127268|0.80556 127269|0.61111 127270|0.44444 127271|0.59722 127272|0.29167 127273|0.63889 127274|0.55556 127275|0.69444 127276|0.66667 127277|0.70833 127278|0.81944 127279|0.66667 127280|0.73611 127281|0.59722 127282|0.55556 127283|0.625 127284|0.5 127285|0.5 127286|0.44444 127287|0.36111 127288|0.66667 127289|0.43056 127290|0.72222 127291|0.69444 127292|0.11111 127293|0.43056 127294|0.59722 127295|0.63889 127296|0.56944 127297|0.52778 127298|0.38889 127299|0.44444 127300|0.77778 127301|0.59722 127302|0.31944 127303|0.55556 127304|0.19444 127305|0.51389 127306|0.31944 127307|0.56944 127308|0.47222 127309|0.22222 127310|0.30556 127311|0.61111 127312|0.48611 127313|0.56944 127314|0.59722 127315|0.5 127316|0.56944 127317|0.58333 127318|0.44444 127319|0.5 127320|0.72222 127321|0.69444 127322|0.83333 127323|0.16667 127324|0.55556 127325|0.5 127326|0.55556 127327|0.38889 127328|0.19444 127329|0.40278 127330|0.34722 127331|0.16667 127332|0.73611 127333|0.5 127334|0.61111 127335|0.58333 127336|0.58333 127337|0.43056 127338|0.45833 127339|0.40278 127340|0.66667 127341|0.125 127342|0.5 127343|0.72222 127344|0.625 127345|0.52778 127346|0.41667 127347|0.25 127348|0.29167 127349|0.38889 127350|0.26389 127351|0.375 127352|0.23611 127353|0.13889 127354|0.33333 127355|0.59722 127356|0.55556 127357|0.56944 127358|0.68056 127359|0.59722 127360|0.69444 127361|0.40278 127362|0.55556 127363|0.5 127364|0.5 127365|0.48611 127366|0.5 127367|0.61111 127368|0.43056 127369|0.45833 127370|0.38889 127371|0.22222 127372|0.66667 127373|0.69444 127374|0.5 127375|0.44444 127376|0.5 127377|0.041667 127378|0.18056 127379|0.72222 127380|0.66667 127381|0.23611 127382|0.72222 127383|0.5 127384|0.5 127385|0.69444 127386|0.18056 127387|0.45833 127388|0.5 127389|0.52778 127390|0.40278 127391|0.54167 127392|0.11111 127393|0.29167 127394|0.5 127395|0.375 127396|0.875 127397|0.48611 127398|0.5 127399|0.5 127400|0.33333 127401|0.5 127402|0.375 127403|0.41667 127404|0.41667 127405|0.61111 127406|0.48611 127407|0.68056 127408|0.61111 127409|0.69444 127410|0.47222 127411|0.44444 127412|0.80556 127413|0.58333 127414|0.55556 127415|0.55556 127416|0.22222 127417|0.375 127418|0.5 127419|0.75 127420|0.72222 127421|0.5 127422|0.55556 127423|0.69444 127424|0.76389 127425|0.93056 127426|0.66667 127427|0.73611 127428|0.58333 127429|0.75 127430|0.54167 127431|0.51389 127432|0.38889 127433|0.51389 127434|0.5 127435|0.36111 127436|0.73611 127437|0.83333 127438|0.70833 127439|0.84722 127440|0.76389 127441|0.47222 127442|0.16667 127443|0.30556 127444|0.84722 127445|0.55556 127446|0.61111 127447|0.625 127448|0.55556 127449|0.29167 127450|0.40278 127451|0.63889 127452|0.34722 127453|0.54167 127454|0.61111 127455|0.15278 127456|0.19444 127457|0.77778 127458|0.75 127459|0.5 127460|0.25 127461|0.34722 127462|0.52778 127463|0.58333 127464|0.51389 127465|0.51389 127466|0.5 127467|0.5 127468|0.5 127469|0.40278 127470|0.5 127471|0.63889 127472|0.26389 127473|0.48611 127474|0.55556 127475|0.5 127476|0.63889 127477|0.16667 127478|0.61111 127479|0.375 127480|0.33333 127481|0.29167 127482|0.56944 127483|0.83333 127484|0.72222 127485|0.76389 127486|0.81944 127487|0.73611 127488|0.68056 127489|0.44444 127490|0.5 127491|0.70833 127492|0.68056 127493|0.90278 127494|0.68056 127495|0.81944 127496|0.5 127497|0.625 127498|0.91667 127499|0.65278 127500|0.33333 127501|0.40278 127502|0.65278 127503|0.63889 127504|0.61111 127505|0.76389 127506|0.72222 127507|0.79167 127508|0.77778 127509|0.29167 127510|0.26389 127511|0.36111 127512|0.875 127513|0.40278 127514|0.5 127515|0.5 127516|0.56944 127517|0.61111 127518|0.66667 127519|0.59722 127520|0.5 127521|0.5 127522|0.45833 127523|0.5 127524|0.44444 127525|0.55556 127526|0.38889 127527|0.5 127528|0.5 127529|0.5 127530|0.5 127531|0.77778 127532|0.52778 127533|0.63889 127534|0.48611 127535|0.5 127536|0.51389 127537|0.5 127538|0.5 127539|0.5 127540|0.45833 127541|0.83333 127542|0.41667 127543|0.36111 127544|0.47222 127545|0.52778 127546|0.77778 127547|0.44444 127548|0.45833 127549|0.5 127550|0.5 127551|0.58333 127552|0.63889 127553|0.58333 127554|0.5 127555|0.5 127556|0.52778 127557|0.5 127558|0.84722 127559|0.51389 127560|0.33333 127561|0.41667 127562|0.5 127563|0.5 127564|0.5 127565|0.75 127566|0.5 127567|0.5 127568|0.47222 127569|0.70833 127570|0.5 127571|0.55556 127572|0.875 127573|0.40278 127574|0.5 127575|0.5 127576|0.51389 127577|0.56944 127578|0.26389 127579|0.5 127580|0.5 127581|0.45833 127582|0.44444 127583|0.51389 127584|0.48611 127585|0.5 127586|0.51389 127587|0.44444 127588|0.55556 127589|0.36111 127590|0.55556 127591|0.51389 127592|0.51389 127593|0.58333 127594|0.5 127595|0.5 127596|0.68056 127597|0.5 127598|0.5 127599|0.55556 127600|0.84722 127601|0.61111 127602|0.68056 127603|0.65278 127604|0.59722 127605|0.84722 127606|0.47222 127607|0.61111 127608|0.81944 127609|0.52778 127610|0.66667 127611|0.5 127612|0.44444 127613|0.76389 127614|0.5 127615|0.20833 127616|0.26389 127617|0.59722 127618|0.72222 127619|0.80556 127620|0.61111 127621|0.55556 127622|0.55556 127623|0.5 127624|0.5 127625|0.5 127626|0.66667 127627|0.54167 127628|0.31944 127629|0.47222 127630|0.59722 127631|0.40278 127632|0.43056 127633|0.55556 127634|0.36111 127635|0.56944 127636|0.54167 127637|0.51389 127638|0.5 127639|0.61111 127640|0.55556 127641|0.5 127642|0.66667 127643|0.55556 127644|0.61111 127645|0.48611 127646|0.38889 127647|0.31944 127648|0.36111 127649|0.54167 127650|0.56944 127651|0.41667 127652|0.44444 127653|0.47222 127654|0.23611 127655|0.43056 127656|0.52778 127657|0.44444 127658|0.65278 127659|0.47222 127660|0.18056 127661|0.25 127662|0.40278 127663|0.54167 127664|0.36111 127665|0.5 127666|0.44444 127667|0.375 127668|0.34722 127669|0.31944 127670|0.27778 127671|0.47222 127672|0.5 127673|0.61111 127674|0.52778 127675|0.5 127676|0.58333 127677|0.625 127678|0.52778 127679|0.75 127680|0.63889 127681|0.61111 127682|0.63889 127683|0.5 127684|0.36111 127685|0.61111 127686|0.69444 127687|0.33333 127688|0.5 127689|0.625 127690|0.30556 127691|0.65278 127692|0.72222 127693|0.26389 127694|0.5 127695|0.75 127696|0.58333 127697|0.43056 127698|0.38889 127699|0.47222 127700|0.30556 127701|0.51389 127702|0.5 127703|0.43056 127704|0.44444 127705|0.70833 127706|0.65278 127707|0.5 127708|0.5 127709|0.22222 127710|0.5 127711|0.5 127712|0.5 127713|0.5 127714|0.125 127715|0.61111 127716|0.375 127717|0.52778 127718|0.5 127719|0.5 127720|0.51389 127721|0.875 127722|0.76389 127723|0.5 127724|0.45833 127725|0.51389 127726|0.5 127727|0.56944 127728|0.47222 127729|0.59722 127730|0.34722 127731|0.70833 127732|0.63889 127733|0.55556 127734|0.51389 127735|0.5 127736|0.58333 127737|0.29167 127738|0.40278 127739|0.5 127740|0.58333 127741|0.61111 127742|0.38889 127743|0.63889 127744|0.44444 127745|0.5 127746|0.56944 127747|0.65278 127748|0.5 127749|0.56944 127750|0.72222 127751|0.26389 127752|0.63889 127753|0.48611 127754|0.66667 127755|0.68056 127756|0.58333 127757|0.5 127758|0.59722 127759|0.55556 127760|0.54167 127761|0.48611 127762|0.48611 127763|0.52778 127764|0.33333 127765|0.47222 127766|0.5 127767|0.5 127768|0.5 127769|0.51389 127770|0.5 127771|0.30556 127772|0.73611 127773|0.51389 127774|0.63889 127775|0.61111 127776|0.83333 127777|0.68056 127778|0.59722 127779|0.625 127780|0.51389 127781|0.625 127782|0.5 127783|0.52778 127784|0.5 127785|0.5 127786|0.5 127787|0.44444 127788|0.56944 127789|0.65278 127790|0.44444 127791|0.19444 127792|0.5 127793|0.5 127794|0.47222 127795|0.73611 127796|0.52778 127797|0.5 127798|0.31944 127799|0.41667 127800|0.63889 127801|0.76389 127802|0.58333 127803|0.81944 127804|0.58333 127805|0.5 127806|0.59722 127807|0.5 127808|0.5 127809|0.61111 127810|0.25 127811|0.5 127812|0.5 127813|0.61111 127814|0.54167 127815|0.56944 127816|0.55556 127817|0.68056 127818|0.63889 127819|0.5 127820|0.69444 127821|0.5 127822|0.65278 127823|0.625 127824|0.65278 127825|0.375 127826|0.47222 127827|0.66667 127828|0.55556 127829|0.70833 127830|0.55556 127831|0.38889 127832|0.36111 127833|0.40278 127834|0.013889 127835|0.47222 127836|0.61111 127837|0.44444 127838|0.48611 127839|0.34722 127840|0.40278 127841|0.38889 127842|0.5 127843|0.16667 127844|0.43056 127845|0.33333 127846|0.44444 127847|0.44444 127848|0.40278 127849|0.45833 127850|0.375 127851|0.41667 127852|0.30556 127853|0.65278 127854|0.38889 127855|0.097222 127856|0.51389 127857|0.23611 127858|0.30556 127859|0.38889 127860|0.47222 127861|0.5 127862|0.375 127863|0.47222 127864|0.5 127865|0.36111 127866|0.47222 127867|0.5 127868|0.30556 127869|0.41667 127870|0.44444 127871|0.47222 127872|0.75 127873|0.31944 127874|0.41667 127875|0.29167 127876|0.27778 127877|0.41667 127878|0.84722 127879|0.73611 127880|0.59722 127881|0.54167 127882|0.58333 127883|0.16667 127884|0.88889 127885|0.61111 127886|0.5 127887|0.52778 127888|0.56944 127889|0.38889 127890|0.55556 127891|0.51389 127892|0.25 127893|0.41667 127894|0.45833 127895|0.25 127896|0.375 127897|0.5 127898|0.20833 127899|0.27778 127900|0.48611 127901|0.15278 127902|0.29167 127903|0.19444 127904|0.66667 127905|0.33333 127906|0.30556 127907|0.41667 127908|0.22222 127909|0.625 127910|0.27778 127911|0.65278 127912|0.63889 127913|0.73611 127914|0.63889 127915|0.40278 127916|0.5 127917|0.5 127918|0.65278 127919|0.75 127920|0.47222 127921|0.5 127922|0.66667 127923|0.76389 127924|0.5 127925|0.61111 127926|0.65278 127927|0.5 127928|0.5 127929|0.55556 127930|0.52778 127931|0.66667 127932|0.84722 127933|0.51389 127934|0.5 127935|0.55556 127936|0.54167 127937|0.5 127938|0.55556 127939|0.5 127940|0.56944 127941|0.19444 127942|0.30556 127943|0.52778 127944|0.58333 127945|0.5 127946|0.63889 127947|0.66667 127948|0.65278 127949|0.73611 127950|0.58333 127951|0.66667 127952|0.5 127953|0.52778 127954|0.48611 127955|0.5 127956|0.5 127957|0.5 127958|0.58333 127959|0.76389 127960|0.61111 127961|0.33333 127962|0.5 127963|0.5 127964|0.5 127965|0.36111 127966|0.41667 127967|0.59722 127968|0.45833 127969|0.5 127970|0.40278 127971|0.38889 127972|0.30556 127973|0.25 127974|0.30556 127975|0.59722 127976|0.33333 127977|0.38889 127978|0.43056 127979|0.34722 127980|0.44444 127981|0.54167 127982|0.5 127983|0.86111 127984|0.041667 127985|0.5 127986|0.77778 127987|0.73611 127988|0.68056 127989|0.55556 127990|0.45833 127991|0.47222 127992|0.45833 127993|0.61111 127994|0.45833 127995|0.43056 127996|0.33333 127997|0.5 127998|0.33333 127999|0.36111 128000|0.30556 128001|0.44444 128002|0.43056 128003|0.5 128004|0.55556 128005|0.41667 128006|0.5 128007|0.43056 128008|0.5 128009|0.36111 128010|0.625 128011|0.41667 128012|0.25 128013|0.45833 128014|0.52778 128015|0.38889 128016|0.26389 128017|0.38889 128018|0.55556 128019|0.5 128020|0.27778 128021|0.26389 128022|0.30556 128023|0.55556 128024|0.27778 128025|0.38889 128026|0.58333 128027|0.55556 128028|0.44444 128029|0.29167 128030|0.51389 128031|0.43056 128032|0.26389 128033|0.56944 128034|0.5 128035|0.375 128036|0.36111 128037|0.44444 128038|0.68056 128039|0.43056 128040|0.30556 128041|0.45833 128042|0.41667 128043|0.375 128044|0.55556 128045|0.63889 128046|0.59722 128047|0.25 128048|0.45833 128049|0.51389 128050|0.68056 128051|0.59722 128052|0.26389 128053|0.38889 128054|0.5 128055|0.44444 128056|0.22222 128057|0.63889 128058|0.44444 128059|0.5 128060|0.48611 128061|0.54167 128062|0.5 128063|0.45833 128064|0.5 128065|0.51389 128066|0.70833 128067|0.54167 128068|0.36111 128069|0.44444 128070|0.5 128071|0.20833 128072|0.52778 128073|0.33333 128074|0.61111 128075|0.66667 128076|0.54167 128077|0.68056 128078|0.29167 128079|0.36111 128080|0.27778 128081|0.5 128082|0.52778 128083|0.55556 128084|0.31944 128085|0.36111 128086|0.5 128087|0.51389 128088|0.15278 128089|0.31944 128090|0.47222 128091|0.38889 128092|0.55556 128093|0.36111 128094|0.23611 128095|0.23611 128096|0.25 128097|0.18056 128098|0.40278 128099|0.54167 128100|0.20833 128101|0.54167 128102|0.75 128103|0.36111 128104|0.51389 128105|0.22222 128106|0.625 128107|0.44444 128108|0.44444 128109|0.41667 128110|0.91667 128111|0.65278 128112|0.41667 128113|0.63889 128114|0.625 128115|0.44444 128116|0.38889 128117|0.22222 128118|0.38889 128119|0.38889 128120|0.5 128121|0.5 128122|0.34722 128123|0.5 128124|0.66667 128125|0.30556 128126|0.48611 128127|0.5 128128|0.47222 128129|0.52778 128130|0.34722 128131|0.65278 128132|0.55556 128133|0.47222 128134|0.069444 128135|0.15278 128136|0.26389 128137|0.5 128138|0.58333 128139|0.41667 128140|0.13889 128141|0.13889 128142|0.23611 128143|0.31944 128144|0.52778 128145|0.38889 128146|0.15278 128147|0.25 128148|0.22222 128149|0.29167 128150|0.33333 128151|0.5 128152|0.34722 128153|0.5 128154|0.34722 128155|0.45833 128156|0.34722 128157|0.47222 128158|0.51389 128159|0.15278 128160|0.33333 128161|0.30556 128162|0.48611 128163|0.27778 128164|0.68056 128165|0.125 128166|0.43056 128167|0.33333 128168|0.52778 128169|0.26389 128170|0.23611 128171|0.5 128172|0.30556 128173|0.5 128174|0.44444 128175|0.013889 128176|0.79167 128177|0.38889 128178|0.63889 128179|0.19444 128180|0.58333 128181|0.34722 128182|0.59722 128183|0.33333 128184|0.55556 128185|0.30556 128186|0.44444 128187|0.43056 128188|0.375 128189|0.5 128190|0.31944 128191|0.34722 128192|0.61111 128193|0.44444 128194|0.5 128195|0.61111 128196|0.44444 128197|0.38889 128198|0.33333 128199|0.41667 128200|0.44444 128201|0.36111 128202|0.375 128203|0.61111 128204|0.5 128205|0.88889 128206|0.44444 128207|0.56944 128208|0.5 128209|0.5 128210|0.56944 128211|0.5 128212|0.65278 128213|0.5 128214|0.625 128215|0.63889 128216|0.44444 128217|0.38889 128218|0.27778 128219|0.66667 128220|0.63889 128221|0.65278 128222|0.5 128223|0.48611 128224|0.43056 128225|0.47222 128226|0.36111 128227|0.47222 128228|0.52778 128229|0.5 128230|0.5 128231|0.30556 128232|0.47222 128233|0.61111 128234|0.5 128235|0.43056 128236|0.58333 128237|0.65278 128238|0.56944 128239|0.48611 128240|0.625 128241|0.40278 128242|0.45833 128243|0.48611 128244|0.41667 128245|0.5 128246|0.5 128247|0.19444 128248|0.44444 128249|0.38889 128250|0.38889 128251|0.68056 128252|0.77778 128253|0.61111 128254|0.44444 128255|0.5 128256|0.45833 128257|0.5 128258|0.80556 128259|0.75 128260|0.625 128261|0.65278 128262|0.55556 128263|0.38889 128264|0.77778 128265|0.41667 128266|0.5 128267|0.68056 128268|0.5 128269|0.45833 128270|0.45833 128271|0.54167 128272|0.5 128273|0.5 128274|0.5 128275|0.51389 128276|0.66667 128277|0.5 128278|0.58333 128279|0.52778 128280|0.5 128281|0.5 128282|0.40278 128283|0.44444 128284|0.66667 128285|0.59722 128286|0.44444 128287|0.625 128288|0.44444 128289|0.52778 128290|0.5 128291|0.52778 128292|0.56944 128293|0.5 128294|0.5 128295|0.45833 128296|0.5 128297|0.5 128298|0.61111 128299|0.59722 128300|0.70833 128301|0.5 128302|0.5 128303|0.44444 128304|0.11111 128305|0.55556 128306|0.38889 128307|0.58333 128308|0.5 128309|0.66667 128310|0.56944 128311|0.5 128312|0.5 128313|0.5 128314|0.58333 128315|0.5 128316|0.33333 128317|0.66667 128318|0.48611 128319|0.5 128320|0.5 128321|0.80556 128322|0.52778 128323|0.5 128324|0.30556 128325|0.5 128326|0.5 128327|0.5 128328|0.5 128329|0.43056 128330|0.52778 128331|0.43056 128332|0.44444 128333|0.48611 128334|0.45833 128335|0.5 128336|0.5 128337|0.38889 128338|0.29167 128339|0.51389 128340|0.5 128341|0.5 128342|0.5 128343|0.56944 128344|0.59722 128345|0.55556 128346|0.59722 128347|0.5 128348|0.56944 128349|0.5 128350|0.47222 128351|0.66667 128352|0.63889 128353|0.51389 128354|0.5 128355|0.65278 128356|0.52778 128357|0.5 128358|0.54167 128359|0.63889 128360|0.41667 128361|0.51389 128362|0.625 128363|0.5 128364|0.5 128365|0.5 128366|0.125 128367|0.55556 128368|0.56944 128369|0.5 128370|0.55556 128371|0.5 128372|0.5 128373|0.375 128374|0.54167 128375|0.5 128376|0.54167 128377|0.5 128378|0.5 128379|0.5 128380|0.56944 128381|0.5 128382|0.51389 128383|0.5 128384|0.55556 128385|0.75 128386|0.68056 128387|0.44444 128388|0.43056 128389|0.54167 128390|0.51389 128391|0.45833 128392|0.5 128393|0.55556 128394|0.59722 128395|0.5 128396|0.5 128397|0.59722 128398|0.65278 128399|0.5 128400|0.55556 128401|0.5 128402|0.45833 128403|0.5 128404|0.5 128405|0.5 128406|0.51389 128407|0.5 128408|0.5 128409|0.38889 128410|0.63889 128411|0.55556 128412|0.54167 128413|0.48611 128414|0.55556 128415|0.36111 128416|0.66667 128417|0.5 128418|0.61111 128419|0.5 128420|0.54167 128421|0.54167 128422|0.59722 128423|0.38889 128424|0.55556 128425|0.47222 128426|0.73611 128427|0.51389 128428|0.5 128429|0.47222 128430|0.40278 128431|0.69444 128432|0.5 128433|0.5 128434|0.48611 128435|0.66667 128436|0.58333 128437|0.5 128438|0.34722 128439|0.77778 128440|0.5 128441|0.65278 128442|0.875 128443|0.55556 128444|0.70833 128445|0.84722 128446|0.52778 128447|0.5 128448|0.33333 128449|0.44444 128450|0.70833 128451|0.5 128452|0.52778 128453|0.5 128454|0.81944 128455|0.68056 128456|0.5 128457|0.48611 128458|0.375 128459|0 128460|0.66667 128461|0.33333 128462|0.625 128463|0.5 128464|0.55556 128465|0.36111 128466|0.59722 128467|0.625 128468|0.33333 128469|0.52778 128470|0.54167 128471|0.5 128472|0.61111 128473|0.5 128474|0.45833 128475|0.61111 128476|0.44444 128477|0.56944 128478|0.5 128479|0.34722 128480|0.44444 128481|0.56944 128482|0.27778 128483|0.5 128484|0.69444 128485|0.75 128486|0.5 128487|0.44444 128488|0.59722 128489|0.33333 128490|0.88889 128491|0.375 128492|0.40278 128493|0.63889 128494|0.52778 128495|0.72222 128496|0.61111 128497|0.5 128498|0.75 128499|0.61111 128500|0.38889 128501|0.5 128502|0.43056 128503|0.43056 128504|0.5 128505|0.63889 128506|0.5 128507|0.45833 128508|0.61111 128509|0.5 128510|0.47222 128511|0.59722 128512|0.65278 128513|0.52778 128514|0.36111 128515|0.47222 128516|0.25 128517|0.51389 128518|0.47222 128519|0.38889 128520|0.70833 128521|0.5 128522|0.36111 128523|0.72222 128524|0.54167 128525|0.625 128526|0.5 128527|0.33333 128528|0.77778 128529|0.66667 128530|0.52778 128531|0.66667 128532|0.27778 128533|0.29167 128534|0.54167 128535|0.43056 128536|0.61111 128537|0.5 128538|0.5 128539|0.54167 128540|0.73611 128541|0.31944 128542|0.52778 128543|0.625 128544|0.40278 128545|0.069444 128546|0.55556 128547|0.041667 128548|0.20833 128549|0.40278 128550|0.26389 128551|0.36111 128552|0.55556 128553|0.5 128554|0.38889 128555|0.5 128556|0.375 128557|0.72222 128558|0.33333 128559|0.25 128560|0.26389 128561|0.48611 128562|0.48611 128563|0.80556 128564|0.5 128565|0.51389 128566|0.81944 128567|0.86111 128568|0.66667 128569|0.15278 128570|0.30556 128571|0.51389 128572|0.76389 128573|0.41667 128574|0.40278 128575|0.36111 128576|0.5 128577|0.61111 128578|0.5 128579|0.51389 128580|0.52778 128581|0.55556 128582|0.55556 128583|0.44444 128584|0.59722 128585|0.51389 128586|0.48611 128587|0.625 128588|0.56944 128589|0.48611 128590|0.48611 128591|0.56944 128592|0.55556 128593|0.56944 128594|0.75 128595|0.44444 128596|0.19444 128597|0.41667 128598|0.52778 128599|0.68056 128600|0.59722 128601|0.5 128602|0.68056 128603|0.47222 128604|0.81944 128605|0.5 128606|0.54167 128607|0.59722 128608|0.38889 128609|0.44444 128610|0.61111 128611|0.44444 128612|0.70833 128613|0.5 128614|0.59722 128615|0.61111 128616|0.52778 128617|0.65278 128618|0.44444 128619|0.52778 128620|0.40278 128621|0.77778 128622|0.54167 128623|0.65278 128624|0.70833 128625|0.69444 128626|0.36111 128627|0.38889 128628|0.5 128629|0.66667 128630|0.40278 128631|0.61111 128632|0.5 128633|0.51389 128634|0.59722 128635|0.069444 128636|0.38889 128637|0.73611 128638|0.625 128639|0.5 128640|0.5 128641|0.5 128642|0.75 128643|0.5 128644|0.76389 128645|0.48611 128646|0.66667 128647|0.5 128648|0.56944 128649|0.69444 128650|0.55556 128651|0.22222 128652|0.56944 128653|0.625 128654|0.52778 128655|0.65278 128656|0.54167 128657|0.56944 128658|0.73611 128659|0.61111 128660|0.33333 128661|0.5 128662|0.51389 128663|0.5 128664|0.26389 128665|0.375 128666|0.52778 128667|0.54167 128668|0.65278 128669|0.65278 128670|0.61111 128671|0.63889 128672|0.68056 128673|0.79167 128674|0.52778 128675|0.55556 128676|0.5 128677|0.44444 128678|0.76389 128679|0.5 128680|0.77778 128681|0.61111 128682|0.68056 128683|0.44444 128684|0.66667 128685|0.51389 128686|0.29167 128687|0.5 128688|0.5 128689|0.55556 128690|0.61111 128691|0.625 128692|0.51389 128693|0.5 128694|0.54167 128695|0.29167 128696|0.5 128697|0.5 128698|0.38889 128699|0.52778 128700|0.44444 128701|0.55556 128702|0.52778 128703|0.56944 128704|0.38889 128705|0.61111 128706|0.63889 128707|0.51389 128708|0.27778 128709|0.56944 128710|0.23611 128711|0.66667 128712|0.73611 128713|0.52778 128714|0.51389 128715|0.097222 128716|0.5 128717|0.54167 128718|0.5 128719|0.81944 128720|0.55556 128721|0.5 128722|0.34722 128723|0.52778 128724|0.70833 128725|0.66667 128726|0.45833 128727|0.61111 128728|0.77778 128729|0.55556 128730|0.5 128731|0.44444 128732|0.66667 128733|0.38889 128734|0.54167 128735|0.43056 128736|0.65278 128737|0.75 128738|0.5 128739|0.59722 128740|0.38889 128741|0.69444 128742|0.5 128743|0.52778 128744|0.61111 128745|0.55556 128746|0.52778 128747|0.48611 128748|0.5 128749|0.5 128750|0.72222 128751|0.5 128752|0.66667 128753|0.61111 128754|0.58333 128755|0.58333 128756|0.56944 128757|0.59722 128758|0.55556 128759|0.77778 128760|0.36111 128761|0.48611 128762|0.31944 128763|0.5 128764|0.48611 128765|0.61111 128766|0.55556 128767|0.43056 128768|0.55556 128769|0.5 128770|0.56944 128771|0.61111 128772|0.5 128773|0.40278 128774|0.40278 128775|0.52778 128776|0.625 128777|0.54167 128778|0.63889 128779|0.38889 128780|0.13889 128781|0.47222 128782|0.77778 128783|0.59722 128784|0.61111 128785|0.5 128786|0.47222 128787|0.56944 128788|0.83333 128789|0.52778 128790|0.44444 128791|0.33333 128792|0.44444 128793|0.69444 128794|0.54167 128795|0.59722 128796|0.58333 128797|0.375 128798|0.33333 128799|0.5 128800|0.47222 128801|0.69444 128802|0.33333 128803|0.5 128804|0.54167 128805|0.5 128806|0.38889 128807|0.59722 128808|0.55556 128809|0.52778 128810|0.5 128811|0.33333 128812|0.5 128813|0.5 128814|0.61111 128815|0.40278 128816|0.45833 128817|0.52778 128818|0.5 128819|0.54167 128820|0.70833 128821|0.5 128822|0.84722 128823|0.63889 128824|0.63889 128825|0.34722 128826|0.43056 128827|0.5 128828|0.30556 128829|0.36111 128830|0.44444 128831|0.5 128832|0.48611 128833|0.72222 128834|0.52778 128835|0.5 128836|0.5 128837|0.54167 128838|0.65278 128839|0.65278 128840|0.36111 128841|0.51389 128842|0.44444 128843|0.52778 128844|0.54167 128845|0.38889 128846|0.5 128847|0.43056 128848|0.44444 128849|0.5 128850|0.56944 128851|0.45833 128852|0.38889 128853|0.48611 128854|0.55556 128855|0.47222 128856|0.5 128857|0.52778 128858|0.38889 128859|0.5 128860|0.66667 128861|0.69444 128862|0.75 128863|0.5 128864|0.47222 128865|0.5 128866|0.58333 128867|0.5 128868|0.5 128869|0.5 128870|0.22222 128871|0.55556 128872|0.81944 128873|0.61111 128874|0.55556 128875|0.625 128876|0.5 128877|0.22222 128878|0.76389 128879|0.88889 128880|0.54167 128881|0.55556 128882|0.625 128883|0.34722 128884|0.5 128885|0.55556 128886|0.54167 128887|0.5 128888|0.52778 128889|0.5 128890|0.48611 128891|0.44444 128892|0.44444 128893|0.59722 128894|0.66667 128895|0.54167 128896|0.41667 128897|0.52778 128898|0.55556 128899|0.52778 128900|0.56944 128901|0.63889 128902|0.61111 128903|0.41667 128904|0.34722 128905|0.61111 128906|0.63889 128907|0.5 128908|0.375 128909|0.5 128910|0.5 128911|0.58333 128912|0.5 128913|0.5 128914|0.56944 128915|0.65278 128916|0.13889 128917|0.63889 128918|0.5 128919|0.5 128920|0.33333 128921|0.58333 128922|0.5 128923|0.55556 128924|0.5 128925|0.81944 128926|0.51389 128927|0.23611 128928|0.18056 128929|0.77778 128930|0.5 128931|0.5 128932|0.5 128933|0.5 128934|0.5 128935|0.47222 128936|0.5 128937|0.52778 128938|0.55556 128939|0.5 128940|0.20833 128941|0.81944 128942|0.22222 128943|0.77778 128944|0.625 128945|0.43056 128946|0.75 128947|0.36111 128948|0.43056 128949|0.5 128950|0.5 128951|0.56944 128952|0.40278 128953|0.5 128954|0.34722 128955|0.5 128956|0.5 128957|0.63889 128958|0.5 128959|0.5 128960|0.58333 128961|0.5 128962|0.5 128963|0.5 128964|0.5 128965|0.5 128966|0.51389 128967|0.43056 128968|0.48611 128969|0.5 128970|0.5 128971|0.625 128972|0.5 128973|0.5 128974|0.58333 128975|0.5 128976|0.52778 128977|0.48611 128978|0.69444 128979|0.41667 128980|0.5 128981|0.41667 128982|0.51389 128983|0.5 128984|0.43056 128985|0.56944 128986|0.5 128987|0.66667 128988|0.70833 128989|0.72222 128990|0.76389 128991|0.69444 128992|0.63889 128993|0.69444 128994|0.5 128995|0.44444 128996|0.25 128997|0.51389 128998|0.5 128999|0.66667 129000|0.59722 129001|0.90278 129002|0.5 129003|0.5 129004|0.61111 129005|0.44444 129006|0.38889 129007|0.31944 129008|0.33333 129009|0.5 129010|0.56944 129011|0.59722 129012|0.58333 129013|0.5 129014|0.75 129015|0.59722 129016|0.51389 129017|0.5 129018|0.72222 129019|0.65278 129020|0.68056 129021|0.5 129022|0.68056 129023|0.56944 129024|0.70833 129025|0.47222 129026|0.72222 129027|0.25 129028|0.73611 129029|0.52778 129030|0.54167 129031|0.52778 129032|0.5 129033|0.31944 129034|0.73611 129035|0.81944 129036|0.29167 129037|0.61111 129038|0.77778 129039|0.66667 129040|0.5 129041|0.52778 129042|0.375 129043|0.5 129044|0.54167 129045|0.54167 129046|0.44444 129047|0.72222 129048|0.5 129049|0.70833 129050|0.40278 129051|0.5 129052|0.51389 129053|0.52778 129054|0.36111 129055|0.55556 129056|0.55556 129057|0.38889 129058|0.5 129059|0.5 129060|0.55556 129061|0.43056 129062|0.41667 129063|0.79167 129064|0.77778 129065|0.66667 129066|0.73611 129067|0.47222 129068|0.73611 129069|0.041667 129070|0.66667 129071|0.94444 129072|0.45833 129073|0.68056 129074|0.65278 129075|0.97222 129076|0.5 129077|0.43056 129078|0.61111 129079|0.5 129080|0.48611 129081|0.44444 129082|0.55556 129083|0.34722 129084|0.44444 129085|0.41667 129086|0.5 129087|0.5 129088|0.5 129089|0.43056 129090|0.27778 129091|0.5 129092|0.75 129093|0.25 129094|0.5 129095|0.56944 129096|0.5 129097|0.63889 129098|0.5 129099|0.375 129100|0.69444 129101|0.33333 129102|0.55556 129103|0.45833 129104|0.69444 129105|0.45833 129106|0.52778 129107|0.61111 129108|0.47222 129109|0.41667 129110|0.33333 129111|0.52778 129112|0.5 129113|0.5 129114|0.38889 129115|0.54167 129116|0.52778 129117|0.5 129118|0.5 129119|0.66667 129120|0.52778 129121|0.56944 129122|0.5 129123|0.83333 129124|0.44444 129125|0.5 129126|0.58333 129127|0.5 129128|0.54167 129129|0.43056 129130|0.5 129131|0.5 129132|0.375 129133|0.5 129134|0.58333 129135|0.55556 129136|0.25 129137|0.55556 129138|0.33333 129139|0.55556 129140|0.5 129141|0.5 129142|0.52778 129143|0.083333 129144|0.40278 129145|0.5 129146|0.51389 129147|0.5 129148|0.51389 129149|0.5 129150|0.5 129151|0.56944 129152|0.5 129153|0.54167 129154|0.45833 129155|0.5 129156|0.41667 129157|0.51389 129158|0.54167 129159|0.38889 129160|0.48611 129161|0.5 129162|0.29167 129163|0.22222 129164|0.5 129165|0.72222 129166|0.36111 129167|0.19444 129168|0.5 129169|0.61111 129170|0.33333 129171|0.56944 129172|0.5 129173|0.48611 129174|0.47222 129175|0.55556 129176|0.5 129177|0.84722 129178|0.55556 129179|0.61111 129180|0.72222 129181|0.48611 129182|0.45833 129183|0.5 129184|0.58333 129185|0.5 129186|0.38889 129187|0.5 129188|0.5 129189|0.59722 129190|0.69444 129191|0.43056 129192|0.65278 129193|0.51389 129194|0.58333 129195|0.84722 129196|0.56944 129197|0.16667 129198|0.44444 129199|0.51389 129200|0.56944 129201|0.56944 129202|0.5 129203|0.11111 129204|0.26389 129205|0.72222 129206|0.44444 129207|0.68056 129208|0.5 129209|0.58333 129210|0.65278 129211|0.73611 129212|0.5 129213|0.51389 129214|0.625 129215|0.5 129216|0.41667 129217|0.5 129218|0.38889 129219|0.54167 129220|0.875 129221|0.55556 129222|0.56944 129223|0.41667 129224|0.43056 129225|0.45833 129226|0.58333 129227|0.59722 129228|0.5 129229|0.63889 129230|0.56944 129231|0.5 129232|0.5 129233|0.54167 129234|0.51389 129235|0.5 129236|0.44444 129237|0.52778 129238|0.51389 129239|0.56944 129240|0.44444 129241|0.47222 129242|0.36111 129243|0.625 129244|0.625 129245|0.45833 129246|0.52778 129247|0.73611 129248|0.72222 129249|0.51389 129250|0.47222 129251|0.36111 129252|0.375 129253|0.29167 129254|0.54167 129255|0.55556 129256|0.36111 129257|0.27778 129258|0.56944 129259|0.18056 129260|0.5 129261|0.041667 129262|0.51389 129263|0.40278 129264|0.55556 129265|0.56944 129266|0.52778 129267|0.73611 129268|0.52778 129269|0.45833 129270|0.66667 129271|0.65278 129272|0.52778 129273|0.38889 129274|0.33333 129275|0.44444 129276|0.34722 129277|0.77778 129278|0.77778 129279|0.54167 129280|0.72222 129281|0.75 129282|0.86111 129283|0.66667 129284|0.70833 129285|0.66667 129286|0.56944 129287|0.84722 129288|0.79167 129289|0.61111 129290|0.56944 129291|0.70833 129292|0.75 129293|0.31944 129294|0.70833 129295|0.69444 129296|0.36111 129297|0.18056 129298|0.43056 129299|0.26389 129300|0.40278 129301|0.70833 129302|0.5 129303|0.47222 129304|0.5 129305|0.5 129306|0.51389 129307|0.70833 129308|0.69444 129309|0.52778 129310|0.73611 129311|0.73611 129312|0.36111 129313|0.44444 129314|0.73611 129315|0.44444 129316|0.13889 129317|0.23611 129318|0.5 129319|0.59722 129320|0.84722 129321|0.80556 129322|0.5 129323|0.72222 129324|0.81944 129325|0.63889 129326|0.31944 129327|0.66667 129328|0.5 129329|0.59722 129330|0.59722 129331|0.55556 129332|0.26389 129333|0.51389 129334|0.5 129335|0.59722 129336|0.36111 129337|0.47222 129338|0.44444 129339|0.38889 129340|0.5 129341|0.38889 129342|0.59722 129343|0.47222 129344|0.65278 129345|0.77778 129346|0.79167 129347|0.65278 129348|0.58333 129349|0.43056 129350|0.56944 129351|0.41667 129352|0.5 129353|0.5 129354|0.40278 129355|0.5 129356|0.48611 129357|0.27778 129358|0.5 129359|0.5 129360|0.625 129361|0.5 129362|0.5 129363|0.56944 129364|0.5 129365|0.86111 129366|0.65278 129367|0.70833 129368|0.58333 129369|0.54167 129370|0.63889 129371|0.55556 129372|0.61111 129373|0.5 129374|0.73611 129375|0.79167 129376|0.68056 129377|0.77778 129378|0.68056 129379|0.76389 129380|0.58333 129381|0.47222 129382|0.5 129383|0.5 129384|0.52778 129385|0.5 129386|0.625 129387|0.56944 129388|0.61111 129389|0.61111 129390|0.80556 129391|0.44444 129392|0.23611 129393|0.5 129394|0.40278 129395|0.44444 129396|0.61111 129397|0.56944 129398|0.51389 129399|0.68056 129400|0.5 129401|0.5 129402|0.40278 129403|0.76389 129404|0.63889 129405|0.52778 129406|0.51389 129407|0.5 129408|0.38889 129409|0.40278 129410|0.55556 129411|0.44444 129412|0.61111 129413|0.43056 129414|0.52778 129415|0.625 129416|0.54167 129417|0.34722 129418|0.44444 129419|0.41667 129420|0.73611 129421|0.5 129422|0.52778 129423|0.55556 129424|0.55556 129425|0.23611 129426|0.63889 129427|0.38889 129428|0.52778 129429|0.47222 129430|0.40278 129431|0.55556 129432|0.58333 129433|0.43056 129434|0.5 129435|0.43056 129436|0.5 129437|0.58333 129438|0.5 129439|0.5 129440|0.58333 129441|0.47222 129442|0.48611 129443|0.48611 129444|0.5 129445|0.55556 129446|0.44444 129447|0.43056 129448|0.52778 129449|0.5 129450|0.5 129451|0.56944 129452|0.5 129453|0.55556 129454|0.56944 129455|0.54167 129456|0.5 129457|0.51389 129458|0.5 129459|0.5 129460|0.5 129461|0.61111 129462|0.59722 129463|0.44444 129464|0.27778 129465|0.5 129466|0.5 129467|0.69444 129468|0.5 129469|0.65278 129470|0.47222 129471|0.5 129472|0.55556 129473|0.52778 129474|0.59722 129475|0.5 129476|0.5 129477|0.59722 129478|0.52778 129479|0.26389 129480|0.5 129481|0.58333 129482|0.44444 129483|0.31944 129484|0.58333 129485|0.5 129486|0.5 129487|0.51389 129488|0.45833 129489|0.48611 129490|0.47222 129491|0.55556 129492|0.52778 129493|0.54167 129494|0.47222 129495|0.55556 129496|0.80556 129497|0.69444 129498|0.48611 129499|0.47222 129500|0.72222 129501|0.75 129502|0.48611 129503|0.5 129504|0.5 129505|0.58333 129506|0.65278 129507|0.48611 129508|0.22222 129509|0.5 129510|0.51389 129511|0.5 129512|0.47222 129513|0.79167 129514|0.5 129515|0.29167 129516|0.56944 129517|0.77778 129518|0.75 129519|0.5 129520|0.63889 129521|0.61111 129522|0.55556 129523|0.38889 129524|0.55556 129525|0.65278 129526|0.19444 129527|0.38889 129528|0.81944 129529|0.27778 129530|0.43056 129531|0.55556 129532|0.47222 129533|0.5 129534|0.375 129535|0.5 129536|0.65278 129537|0.45833 129538|0.5 129539|0.5 129540|0.40278 129541|0.27778 129542|0.5 129543|0.72222 129544|0.33333 129545|0.55556 129546|0.5 129547|0.80556 129548|1 129549|0.81944 129550|0.51389 129551|0.63889 129552|0.47222 129553|0.86111 129554|0.81944 129555|0.59722 129556|0.66667 129557|0.75 129558|0.875 129559|0.72222 129560|0.83333 129561|0.22222 129562|0.77778 129563|0.48611 129564|0.48611 129565|0.47222 129566|0.16667 129567|0.5 129568|0.25 129569|0.38889 129570|0.40278 129571|0.40278 129572|0.27778 129573|0.75 129574|0.47222 129575|0.20833 129576|0.93056 129577|0.5 129578|0.72222 129579|0.41667 129580|0.26389 129581|0.5 129582|0.51389 129583|0.34722 129584|0.18056 129585|0.5 129586|0.40278 129587|0.80556 129588|0.27778 129589|0.375 129590|0.56944 129591|0.625 129592|0.86111 129593|0.73611 129594|0.73611 129595|0.83333 129596|0.79167 129597|0.27778 129598|0.26389 129599|0.72222 129600|0.66667 129601|0.55556 129602|0.65278 129603|0.5 129604|0.51389 129605|0.5 129606|0.5 129607|0.58333 129608|0.56944 129609|0.5 129610|0.22222 129611|0.75 129612|0.27778 129613|0.27778 129614|0.25 129615|0.48611 129616|0.51389 129617|0.61111 129618|0.38889 129619|0.31944 129620|0.73611 129621|0.44444 129622|0.34722 129623|0.59722 129624|0.5 129625|0.5 129626|0.44444 129627|0.36111 129628|0.59722 129629|0.29167 129630|0.55556 129631|0.22222 129632|0.36111 129633|0.36111 129634|0.5 129635|0.5 129636|0.56944 129637|0.23611 129638|0.51389 129639|0.31944 129640|0.65278 129641|0.38889 129642|0.45833 129643|0.56944 129644|0.48611 129645|0.5 129646|0.41667 129647|0.36111 129648|0.59722 129649|0.65278 129650|0.59722 129651|0.34722 129652|0.5 129653|0.30556 129654|0.625 129655|0.56944 129656|0.5 129657|0.5 129658|0.51389 129659|0.5 129660|0.63889 129661|0.56944 129662|0.59722 129663|0.61111 129664|0.5 129665|0.47222 129666|0.5 129667|0.19444 129668|0.26389 129669|0.34722 129670|0.72222 129671|0.5 129672|0.66667 129673|0.66667 129674|0.55556 129675|0.58333 129676|0.5 129677|0.55556 129678|0.5 129679|0.66667 129680|0.625 129681|0.61111 129682|0.58333 129683|0.16667 129684|0.58333 129685|0.5 129686|0.58333 129687|0.66667 129688|0.61111 129689|0.47222 129690|0.61111 129691|0.5 129692|0.34722 129693|0.18056 129694|0.5 129695|0.375 129696|0.5 129697|0.5 129698|0.41667 129699|0.40278 129700|0.5 129701|0.43056 129702|0.58333 129703|0.58333 129704|0.48611 129705|0.47222 129706|0.5 129707|0.5 129708|0.5 129709|0.59722 129710|0.55556 129711|0.55556 129712|0.38889 129713|0.51389 129714|0.55556 129715|0.5 129716|0.51389 129717|0.58333 129718|0.84722 129719|0.79167 129720|0.65278 129721|0.63889 129722|0.56944 129723|0.63889 129724|0.61111 129725|0.38889 129726|0.55556 129727|0.72222 129728|0.5 129729|0.51389 129730|0.51389 129731|0.5 129732|0.47222 129733|0.44444 129734|0.5 129735|0.55556 129736|0.5 129737|0.59722 129738|0.5 129739|0.5 129740|0.5 129741|0.56944 129742|0.15278 129743|0.22222 129744|0.54167 129745|0.56944 129746|0.5 129747|0.27778 129748|0.48611 129749|0.56944 129750|0.47222 129751|0.61111 129752|0.45833 129753|0.44444 129754|0.5 129755|0.375 129756|0.625 129757|0.23611 129758|0.34722 129759|0.29167 129760|0.27778 129761|0.375 129762|0.68056 129763|0.63889 129764|0.33333 129765|0.26389 129766|0.56944 129767|0.68056 129768|0.5 129769|0.69444 129770|0.5 129771|0.45833 129772|0.5 129773|0.43056 129774|0.75 129775|0.66667 129776|0.68056 129777|0.65278 129778|0.65278 129779|0.5 129780|0.63889 129781|0.5 129782|0.51389 129783|0.625 129784|0.52778 129785|0.52778 129786|0.54167 129787|0.5 129788|0.51389 129789|0.54167 129790|0.47222 129791|0.5 129792|0.54167 129793|0.65278 129794|0.70833 129795|0.80556 129796|0.22222 129797|0.26389 129798|0.34722 129799|0.25 129800|0.5 129801|0.5 129802|0.41667 129803|0.44444 129804|0.61111 129805|0.44444 129806|0.13889 129807|0.5 129808|0.5 129809|0.44444 129810|0.56944 129811|0.72222 129812|0.47222 129813|0.75 129814|0.48611 129815|0.5 129816|0.38889 129817|0.80556 129818|0.5 129819|0.5 129820|0.5 129821|0.33333 129822|0.36111 129823|0.5 129824|0.47222 129825|0.44444 129826|0.55556 129827|0.55556 129828|0.5 129829|0.5 129830|0.52778 129831|0.44444 129832|0.40278 129833|0.45833 129834|0.55556 129835|0.52778 129836|0.54167 129837|0.5 129838|0.73611 129839|0.44444 129840|0.34722 129841|0.54167 129842|0.34722 129843|0.23611 129844|0.23611 129845|0.80556 129846|0.55556 129847|0.5 129848|0.63889 129849|0.5 129850|0.52778 129851|0.54167 129852|0.45833 129853|0.51389 129854|0.36111 129855|0.34722 129856|0.55556 129857|0.59722 129858|0.54167 129859|0.47222 129860|0.61111 129861|0.52778 129862|0.58333 129863|0.625 129864|0.36111 129865|0.34722 129866|0.5 129867|0.375 129868|0.31944 129869|0.43056 129870|0.41667 129871|0.069444 129872|0.34722 129873|0.31944 129874|0.20833 129875|0.23611 129876|0.375 129877|0.30556 129878|0.55556 129879|0.19444 129880|0.30556 129881|0.15278 129882|0.055556 129883|0.43056 129884|0.51389 129885|0.31944 129886|0.29167 129887|0.41667 129888|0.44444 129889|0.43056 129890|0.5 129891|0.51389 129892|0.31944 129893|0.58333 129894|0.41667 129895|0.38889 129896|0.16667 129897|0.45833 129898|0.38889 129899|0.48611 129900|0.80556 129901|0.34722 129902|0.56944 129903|0.81944 129904|0.31944 129905|0.38889 129906|0.5 129907|0.5 129908|0.52778 129909|0.5 129910|0.61111 129911|0.45833 129912|0.48611 129913|0.5 129914|0.38889 129915|0.5 129916|0.55556 129917|0.5 129918|0.61111 129919|0.5 129920|0.55556 129921|0.5 129922|0.65278 129923|0.48611 129924|0.5 129925|0.27778 129926|0.5 129927|0.5 129928|0.66667 129929|0.5 129930|0.5 129931|0.5 129932|0.58333 129933|0.5 129934|0.5 129935|0.5 129936|0.59722 129937|0.5 129938|0.38889 129939|0.47222 129940|0.52778 129941|0.5 129942|0.70833 129943|0.84722 129944|0.44444 129945|0.625 129946|0.625 129947|0.65278 129948|0.45833 129949|0.5 129950|0.43056 129951|0.5 129952|0.5 129953|0.44444 129954|0.23611 129955|0.30556 129956|0.16667 129957|0.055556 129958|0.19444 129959|0.61111 129960|0.79167 129961|0.69444 129962|0.79167 129963|0.52778 129964|0.625 129965|0.5 129966|0.66667 129967|0.30556 129968|0.38889 129969|0.66667 129970|0.52778 129971|0.51389 129972|0.40278 129973|0.5 129974|0.43056 129975|0.52778 129976|0.5 129977|0.51389 129978|0.5 129979|0.5 129980|0.44444 129981|0.68056 129982|0.45833 129983|0.61111 129984|0.5 129985|0.5 129986|0.5 129987|0.5 129988|0.5 129989|0.43056 129990|0.5 129991|0.56944 129992|0.51389 129993|0.5 129994|0.68056 129995|0.44444 129996|0.41667 129997|0.77778 129998|0.45833 129999|0.52778 130000|0.83333 130001|0.55556 130002|0.58333 130003|0.81944 130004|0.5 130005|0.44444 130006|0.25 130007|0.33333 130008|0.5 130009|0.41667 130010|0.5 130011|0.54167 130012|0.5 130013|0.33333 130014|0.19444 130015|0.58333 130016|0.5 130017|0.59722 130018|0.625 130019|0.55556 130020|0.44444 130021|0.45833 130022|0.40278 130023|0.58333 130024|0.5 130025|0.56944 130026|0.58333 130027|0.30556 130028|0.55556 130029|0.65278 130030|0.625 130031|0.63889 130032|0.75 130033|0.54167 130034|0.36111 130035|0.54167 130036|0.34722 130037|0.41667 130038|0.5 130039|0.44444 130040|0.52778 130041|0.66667 130042|0.54167 130043|0.45833 130044|0.47222 130045|0 130046|0.36111 130047|0.33333 130048|0.44444 130049|0.52778 130050|0.55556 130051|0.66667 130052|0.58333 130053|0.43056 130054|0.5 130055|0.54167 130056|0.5 130057|0.44444 130058|0.5 130059|0.44444 130060|0.55556 130061|0.63889 130062|0.51389 130063|0.5 130064|0.51389 130065|0.43056 130066|0.47222 130067|0.25 130068|0.45833 130069|0.5 130070|0.61111 130071|0.79167 130072|0.69444 130073|0.69444 130074|0.77778 130075|0.65278 130076|0.61111 130077|0.45833 130078|0.51389 130079|0.51389 130080|0.45833 130081|0.52778 130082|0.47222 130083|0.44444 130084|0.5 130085|0.58333 130086|0.45833 130087|0.5 130088|0.61111 130089|0.73611 130090|0.65278 130091|0.44444 130092|0.34722 130093|0.38889 130094|0.26389 130095|0.5 130096|0.59722 130097|0.61111 130098|0.5 130099|0.5 130100|0.5 130101|0.58333 130102|0.5 130103|0.41667 130104|0.125 130105|0.47222 130106|0.5 130107|0.5 130108|0.45833 130109|0.38889 130110|0.55556 130111|0.5 130112|0.52778 130113|0.45833 130114|0.5 130115|0.59722 130116|0.54167 130117|0.44444 130118|0.5 130119|0.69444 130120|0.70833 130121|0.83333 130122|0.55556 130123|0.5 130124|0.5 130125|0.83333 130126|0.76389 130127|0.75 130128|0.90278 130129|0.77778 130130|0.61111 130131|0.52778 130132|0.61111 130133|0.59722 130134|0.13889 130135|0.80556 130136|0.625 130137|0.70833 130138|0.70833 130139|0.73611 130140|0.83333 130141|0.73611 130142|0.61111 130143|0.75 130144|0.72222 130145|0.91667 130146|0.88889 130147|0.88889 130148|0.94444 130149|0.72222 130150|0.72222 130151|0.79167 130152|0.76389 130153|0.66667 130154|0.61111 130155|0.5 130156|0.375 130157|0.54167 130158|0.5 130159|0.5 130160|0.45833 130161|0.54167 130162|0.5 130163|0.61111 130164|0.19444 130165|0.5 130166|0.5 130167|0.51389 130168|0.52778 130169|0.59722 130170|0.47222 130171|0.43056 130172|0.48611 130173|0.45833 130174|0.5 130175|0.31944 130176|0.43056 130177|0.5 130178|0.47222 130179|0.5 130180|0.5 130181|0.44444 130182|0.44444 130183|0.29167 130184|0.83333 130185|0.86111 130186|0.55556 130187|0.88889 130188|0.5 130189|0.56944 130190|0.33333 130191|0.38889 130192|0.47222 130193|0.66667 130194|0.29167 130195|0.33333 130196|0.097222 130197|0.5 130198|0.51389 130199|0.625 130200|0.59722 130201|0.5 130202|0.5 130203|0.63889 130204|0.63889 130205|0.56944 130206|0.48611 130207|0.34722 130208|0.65278 130209|0.51389 130210|0.61111 130211|0.5 130212|0.59722 130213|0.55556 130214|0.5 130215|0.5 130216|0.5 130217|0.68056 130218|0.5 130219|0.58333 130220|0.5 130221|0.63889 130222|0.65278 130223|0.013889 130224|0.013889 130225|0.70833 130226|0.5 130227|0.38889 130228|0.33333 130229|0.36111 130230|0.30556 130231|0.40278 130232|0.5 130233|0.59722 130234|0.27778 130235|0.47222 130236|0.40278 130237|0.47222 130238|0.52778 130239|0.5 130240|0.33333 130241|0.375 130242|0.375 130243|0.5 130244|0.5 130245|0.40278 130246|0.27778 130247|0.375 130248|0.40278 130249|0.30556 130250|0.16667 130251|0.30556 130252|0.56944 130253|0.61111 130254|0.5 130255|0.65278 130256|0.66667 130257|0.52778 130258|0.44444 130259|0.5 130260|0.58333 130261|0.51389 130262|0.54167 130263|0.20833 130264|0.013889 130265|0.5 130266|0.52778 130267|0.61111 130268|0.61111 130269|0.5 130270|0.55556 130271|0.47222 130272|0.40278 130273|0.30556 130274|0.5 130275|0.55556 130276|0.5 130277|0.63889 130278|0.59722 130279|0.55556 130280|0.45833 130281|0.44444 130282|0.36111 130283|0.52778 130284|0.27778 130285|0.36111 130286|0.45833 130287|0.68056 130288|0.27778 130289|0.43056 130290|0.13889 130291|0.23611 130292|0.20833 130293|0.125 130294|0.27778 130295|0.069444 130296|0.11111 130297|0.30556 130298|0.68056 130299|0.25 130300|0.36111 130301|0.43056 130302|0.36111 130303|0.29167 130304|0.38889 130305|0.5 130306|0.51389 130307|0.51389 130308|0.25 130309|0.25 130310|0.33333 130311|0.43056 130312|0.65278 130313|0.70833 130314|0.80556 130315|0.29167 130316|0.51389 130317|0.65278 130318|0.72222 130319|0.73611 130320|0.66667 130321|0.72222 130322|0.66667 130323|0.66667 130324|0.31944 130325|0.34722 130326|0.44444 130327|0.44444 130328|0.30556 130329|0.18056 130330|0.16667 130331|0.47222 130332|0.5 130333|0.51389 130334|0.22222 130335|0.38889 130336|0.40278 130337|0.58333 130338|0.5 130339|0.56944 130340|0.27778 130341|0.5 130342|0.61111 130343|0.66667 130344|0.5 130345|0.52778 130346|0.58333 130347|0.16667 130348|0.13889 130349|0.34722 130350|0.069444 130351|0.72222 130352|0.61111 130353|0.5 130354|0.44444 130355|0.66667 130356|0.66667 130357|0.66667 130358|0.79167 130359|0.76389 130360|0.80556 130361|0.73611 130362|0.75 130363|0.79167 130364|0.72222 130365|0.5 130366|0.44444 130367|0.70833 130368|0.69444 130369|0.47222 130370|0.45833 130371|0.54167 130372|0.375 130373|0.125 130374|0 130375|0.36111 130376|0.23611 130377|0.36111 130378|0.75 130379|0.52778 130380|0.5 130381|0.47222 130382|0.47222 130383|0.65278 130384|0.45833 130385|0.44444 130386|0.61111 130387|0.625 130388|0.72222 130389|0.54167 130390|0.75 130391|0.44444 130392|0.44444 130393|0.36111 130394|0.47222 130395|0.38889 130396|0.76389 130397|0.41667 130398|0.5 130399|0.5 130400|0.48611 130401|0.63889 130402|0.58333 130403|0.5 130404|0.69444 130405|0.41667 130406|0.15278 130407|0.36111 130408|0.19444 130409|0.125 130410|0.29167 130411|0.29167 130412|0.27778 130413|0.31944 130414|0.16667 130415|0.34722 130416|0.11111 130417|0.26389 130418|0.18056 130419|0.18056 130420|0.20833 130421|0.083333 130422|0.22222 130423|0.44444 130424|0.58333 130425|0.52778 130426|0.625 130427|0.61111 130428|0.44444 130429|0.5 130430|0.47222 130431|0.5 130432|0.45833 130433|0.86111 130434|0.55556 130435|0.56944 130436|0.61111 130437|0.69444 130438|0.59722 130439|0.65278 130440|0.44444 130441|0.58333 130442|0.58333 130443|0.54167 130444|0.44444 130445|0.5 130446|0.5 130447|0.5 130448|0.77778 130449|0.61111 130450|0.5 130451|0.65278 130452|0.80556 130453|0.52778 130454|0.5 130455|0.70833 130456|0.43056 130457|0.5 130458|0.5 130459|0.44444 130460|0.5 130461|0.70833 130462|0.80556 130463|0.15278 130464|0.5 130465|0.38889 130466|0.34722 130467|0.44444 130468|0.69444 130469|0.75 130470|0.65278 130471|0.70833 130472|0.58333 130473|0.68056 130474|0.54167 130475|0.55556 130476|0.51389 130477|0.68056 130478|0.44444 130479|0.44444 130480|0.65278 130481|0.5 130482|0.625 130483|0.22222 130484|0.5 130485|0.54167 130486|0.44444 130487|0.48611 130488|0.61111 130489|0.55556 130490|0.61111 130491|0.88889 130492|0.55556 130493|0.65278 130494|0.63889 130495|0.69444 130496|0.73611 130497|0.54167 130498|0.45833 130499|0.5 130500|0.5 130501|0.70833 130502|0.54167 130503|0.66667 130504|0.79167 130505|0.77778 130506|0.72222 130507|0.84722 130508|0.80556 130509|0.77778 130510|0.77778 130511|0.81944 130512|0.58333 130513|0.66667 130514|0.77778 130515|0.75 130516|0.69444 130517|0.84722 130518|0.375 130519|0.56944 130520|0.69444 130521|0.86111 130522|0.65278 130523|0.5 130524|0.52778 130525|0.68056 130526|0.80556 130527|0.5 130528|0.43056 130529|0.38889 130530|0.45833 130531|0.70833 130532|0.61111 130533|0.5 130534|0.40278 130535|0.31944 130536|0.30556 130537|0.30556 130538|0.11111 130539|0.20833 130540|0.34722 130541|0.47222 130542|0.5 130543|0.56944 130544|0.5 130545|0.51389 130546|0.68056 130547|0.31944 130548|0.625 130549|0.55556 130550|0.22222 130551|0.52778 130552|0.38889 130553|0.51389 130554|0.47222 130555|0.45833 130556|0.20833 130557|0.69444 130558|0.22222 130559|0.61111 130560|0.625 130561|0.31944 130562|0.63889 130563|0.5 130564|0.55556 130565|0.16667 130566|0.47222 130567|0.56944 130568|0.73611 130569|0.5 130570|0.29167 130571|0.33333 130572|0.5 130573|0.81944 130574|0.65278 130575|0.56944 130576|0.81944 130577|0.73611 130578|0.77778 130579|0.41667 130580|0.47222 130581|0.375 130582|0.47222 130583|0.41667 130584|0.375 130585|0.36111 130586|0.33333 130587|0.44444 130588|0.47222 130589|0.44444 130590|0.31944 130591|0.43056 130592|0.19444 130593|0.44444 130594|0.51389 130595|0.58333 130596|0.83333 130597|0.93056 130598|0.58333 130599|0.79167 130600|0.69444 130601|0.69444 130602|0.5 130603|0.625 130604|0.70833 130605|0.72222 130606|0.44444 130607|0.19444 130608|0.13889 130609|0.22222 130610|0.16667 130611|0.30556 130612|0.33333 130613|0.66667 130614|0.61111 130615|0.55556 130616|0.54167 130617|0.45833 130618|0.55556 130619|0.5 130620|0.55556 130621|0.5 130622|0.5 130623|0.51389 130624|0.52778 130625|0.5 130626|0.5 130627|0.47222 130628|0.55556 130629|0.31944 130630|0.375 130631|0.38889 130632|0.55556 130633|0.41667 130634|0.52778 130635|0.58333 130636|0.40278 130637|0.77778 130638|0.44444 130639|0.36111 130640|0.41667 130641|0.55556 130642|0.52778 130643|0.66667 130644|0.58333 130645|0.52778 130646|0.5 130647|0.5 130648|0.48611 130649|0.5 130650|0.59722 130651|0.31944 130652|0.55556 130653|0.5 130654|0.5 130655|0.66667 130656|0.52778 130657|0.54167 130658|0.52778 130659|0.58333 130660|0.27778 130661|0.5 130662|0.94444 130663|0.48611 130664|0.40278 130665|0.51389 130666|0.75 130667|0.59722 130668|0.33333 130669|0.41667 130670|0.52778 130671|0.38889 130672|0.38889 130673|0.47222 130674|0.18056 130675|0.47222 130676|0.25 130677|0.5 130678|0.5 130679|0.47222 130680|0.55556 130681|0.5 130682|0.75 130683|0.48611 130684|0.55556 130685|0.5 130686|0.34722 130687|0.44444 130688|0.29167 130689|0.69444 130690|0.5 130691|0.5 130692|0.44444 130693|0.58333 130694|0.66667 130695|0.72222 130696|0.76389 130697|0.59722 130698|0.52778 130699|0.56944 130700|0.55556 130701|0.56944 130702|0.77778 130703|0.44444 130704|0.52778 130705|0.16667 130706|0.51389 130707|0.65278 130708|0.5 130709|0.5 130710|0.51389 130711|0.84722 130712|0.68056 130713|0.52778 130714|0.5 130715|0.31944 130716|0.54167 130717|0.44444 130718|0.5 130719|0.65278 130720|0.61111 130721|0.5 130722|0.5 130723|0.41667 130724|0.625 130725|0.5 130726|0.5 130727|0.54167 130728|0.61111 130729|0.48611 130730|0.5 130731|0.66667 130732|0.65278 130733|0.81944 130734|0.91667 130735|0.56944 130736|0.27778 130737|0.625 130738|0.59722 130739|0.77778 130740|0.73611 130741|0.72222 130742|0.79167 130743|0.30556 130744|0.52778 130745|0.72222 130746|0.73611 130747|0.69444 130748|0.38889 130749|0.81944 130750|0.70833 130751|0.55556 130752|0.63889 130753|0.72222 130754|0.41667 130755|0.68056 130756|0.34722 130757|0.38889 130758|0.69444 130759|0.73611 130760|0.70833 130761|0.88889 130762|0.79167 130763|0.69444 130764|0.55556 130765|0.52778 130766|0.45833 130767|0.47222 130768|0.38889 130769|0.48611 130770|0.52778 130771|0.55556 130772|0.52778 130773|0.55556 130774|0.51389 130775|0.61111 130776|0.52778 130777|0.48611 130778|0.40278 130779|0.44444 130780|0.59722 130781|0.51389 130782|0.51389 130783|0.55556 130784|0.52778 130785|0.55556 130786|0.70833 130787|0.5 130788|0.56944 130789|0.54167 130790|0.5 130791|0.38889 130792|0.5 130793|0.59722 130794|0.5 130795|0.5 130796|0.58333 130797|0.43056 130798|0.5 130799|0.51389 130800|0.68056 130801|0.22222 130802|0.5 130803|0.47222 130804|0.5 130805|0.44444 130806|0.61111 130807|0.5 130808|0.47222 130809|0.44444 130810|0.29167 130811|0.44444 130812|0.26389 130813|0.45833 130814|0.44444 130815|0.5 130816|0.52778 130817|0.27778 130818|0.55556 130819|0.69444 130820|0.16667 130821|0.58333 130822|0.5 130823|0.5 130824|0.65278 130825|0.52778 130826|0.26389 130827|0.56944 130828|0.5 130829|0.55556 130830|0.55556 130831|0.44444 130832|0.5 130833|0.41667 130834|0.23611 130835|0.5 130836|0.52778 130837|0.54167 130838|0.375 130839|0.16667 130840|0.44444 130841|0.16667 130842|0.69444 130843|0.61111 130844|0.58333 130845|0.48611 130846|0.41667 130847|0.47222 130848|0.63889 130849|0.73611 130850|0.47222 130851|0.45833 130852|0.20833 130853|0.47222 130854|0.52778 130855|0.30556 130856|0.27778 130857|0.36111 130858|0.44444 130859|0.18056 130860|0.5 130861|0.63889 130862|0.58333 130863|0.55556 130864|0.44444 130865|0.27778 130866|0.52778 130867|0.56944 130868|0.38889 130869|0.58333 130870|0.23611 130871|0.5 130872|0.69444 130873|0.66667 130874|0.72222 130875|0.44444 130876|0.5 130877|0.5 130878|0.59722 130879|0.75 130880|0.5 130881|0.63889 130882|0.5 130883|0.5 130884|0.5 130885|0.5 130886|0.26389 130887|0.27778 130888|0.45833 130889|0.55556 130890|0.5 130891|0.47222 130892|0.55556 130893|0.38889 130894|0.5 130895|0.43056 130896|0.58333 130897|0.55556 130898|0.027778 130899|0.20833 130900|0.055556 130901|0.22222 130902|0.44444 130903|0.77778 130904|0.875 130905|0.58333 130906|0.55556 130907|0.52778 130908|0.75 130909|0.76389 130910|0.55556 130911|0.73611 130912|0.40278 130913|0.5 130914|0.5 130915|0.55556 130916|0.75 130917|0.76389 130918|0.65278 130919|0.5 130920|0.68056 130921|0.55556 130922|0.55556 130923|0.47222 130924|0.63889 130925|0.625 130926|0.66667 130927|0.69444 130928|0.36111 130929|0.47222 130930|0.48611 130931|0.27778 130932|0.5 130933|0.66667 130934|0.5 130935|0.44444 130936|0.69444 130937|0.48611 130938|0.73611 130939|0.48611 130940|0.52778 130941|0.55556 130942|0.80556 130943|0.76389 130944|0.81944 130945|0.55556 130946|0.875 130947|0.55556 130948|0.66667 130949|0.18056 130950|0.66667 130951|0.54167 130952|0.65278 130953|0.56944 130954|0.61111 130955|0.38889 130956|0.51389 130957|0.75 130958|0.47222 130959|0.54167 130960|0.56944 130961|0.73611 130962|0.59722 130963|0.66667 130964|0.58333 130965|0.58333 130966|0.56944 130967|0.5 130968|0.56944 130969|0.45833 130970|0.5 130971|0.69444 130972|0.38889 130973|0.5 130974|0.58333 130975|0.5 130976|0.65278 130977|0.80556 130978|0.76389 130979|0.5 130980|0.48611 130981|0.48611 130982|0.54167 130983|0.59722 130984|0.5 130985|0.45833 130986|0.40278 130987|0.97222 130988|0.90278 130989|0.51389 130990|0.80556 130991|0.66667 130992|0.33333 130993|0.45833 130994|0.5 130995|0.5 130996|0.43056 130997|0.72222 130998|0.47222 130999|0.44444 131000|0.75 131001|0.76389 131002|0.59722 131003|0.79167 131004|0.5 131005|0.59722 131006|0.625 131007|0.68056 131008|0.25 131009|0.70833 131010|0.47222 131011|0.5 131012|0.44444 131013|0.30556 131014|0.36111 131015|0.55556 131016|0.90278 131017|0.76389 131018|0.48611 131019|0.26389 131020|0.625 131021|0.097222 131022|0.58333 131023|0.5 131024|0.56944 131025|0.5 131026|0.5 131027|0.5 131028|0.25 131029|0.63889 131030|0.65278 131031|0.65278 131032|0.51389 131033|0.25 131034|0.33333 131035|0.51389 131036|0.63889 131037|0.5 131038|0.61111 131039|0.5 131040|0.625 131041|0.5 131042|0.58333 131043|0.52778 131044|0.52778 131045|0.5 131046|0.5 131047|0.5 131048|0.48611 131049|0.5 131050|0.58333 131051|0.5 131052|0.25 131053|0.5 131054|0.5 131055|0.36111 131056|0.34722 131057|0.5 131058|0.61111 131059|0.61111 131060|0.70833 131061|0.79167 131062|0.5 131063|0.75 131064|0.79167 131065|0.55556 131066|0.72222 131067|0.77778 131068|0.52778 131069|0.61111 131070|0.75 131071|0.70833 131072|0.69444 131073|0.47222 131074|0.61111 131075|0.52778 131076|0.59722 131077|0.73611 131078|0.69444 131079|0.73611 131080|0.76389 131081|0.5 131082|0.5 131083|0.27778 131084|0.16667 131085|0.45833 131086|0.38889 131087|0.66667 131088|0.70833 131089|0.72222 131090|0.56944 131091|0.76389 131092|0.61111 131093|0.5 131094|0.90278 131095|0.625 131096|0.625 131097|0.52778 131098|0.43056 131099|0.5 131100|0.75 131101|0.33333 131102|0.625 131103|0.69444 131104|0.81944 131105|0.875 131106|0.83333 131107|0.59722 131108|0.33333 131109|0.83333 131110|0.55556 131111|0.31944 131112|0.56944 131113|0.375 131114|0.73611 131115|0.51389 131116|0.5 131117|0.875 131118|0.75 131119|0.5 131120|0.54167 131121|0.5 131122|0.61111 131123|0.69444 131124|0.63889 131125|0.66667 131126|0.61111 131127|0.66667 131128|0.72222 131129|0.40278 131130|0.38889 131131|0.52778 131132|0.44444 131133|0.5 131134|0.5 131135|0.45833 131136|0.65278 131137|0.5 131138|0.54167 131139|0.5 131140|0.5 131141|0.38889 131142|0.63889 131143|0.65278 131144|0.52778 131145|0.375 131146|0.54167 131147|0.5 131148|0.5 131149|0.5 131150|0.63889 131151|0.58333 131152|0.5 131153|0.625 131154|0.27778 131155|0.19444 131156|0.16667 131157|0.29167 131158|0.31944 131159|0.40278 131160|0.45833 131161|0.41667 131162|0.5 131163|0.55556 131164|0.56944 131165|0.47222 131166|0.44444 131167|0.47222 131168|0.47222 131169|0.27778 131170|0.25 131171|0.5 131172|0.44444 131173|0.5 131174|0.5 131175|0.61111 131176|0.48611 131177|0.55556 131178|0.625 131179|0.72222 131180|0.52778 131181|0.55556 131182|0.58333 131183|0.77778 131184|0.68056 131185|0.38889 131186|0.20833 131187|0.43056 131188|0.33333 131189|0.5 131190|0.5 131191|0.43056 131192|0.51389 131193|0.5 131194|0.63889 131195|0.36111 131196|0.66667 131197|0.31944 131198|0.34722 131199|0.19444 131200|0.11111 131201|0.23611 131202|0.23611 131203|0.33333 131204|0.47222 131205|0.51389 131206|0.27778 131207|0.34722 131208|0.5 131209|0.5 131210|0.51389 131211|0.77778 131212|0.55556 131213|0.65278 131214|0.375 131215|0.54167 131216|0.33333 131217|0.625 131218|0.81944 131219|0.91667 131220|0.80556 131221|0.68056 131222|0.625 131223|0.59722 131224|0.59722 131225|0.18056 131226|0.44444 131227|0.41667 131228|0.55556 131229|0.58333 131230|0.45833 131231|0.5 131232|0.5 131233|0.5 131234|0.44444 131235|0.41667 131236|0.40278 131237|0.40278 131238|0.47222 131239|0.375 131240|0.33333 131241|0.61111 131242|0.5 131243|0.5 131244|0.52778 131245|0.68056 131246|0.22222 131247|0.33333 131248|0.47222 131249|0.55556 131250|0.76389 131251|0.59722 131252|0.44444 131253|0.5 131254|0.66667 131255|0.5 131256|0.5 131257|0.44444 131258|0.52778 131259|0.41667 131260|0.5 131261|0.22222 131262|0.15278 131263|0.59722 131264|0.56944 131265|0.625 131266|0.58333 131267|0.58333 131268|0.55556 131269|0.61111 131270|0.63889 131271|0.63889 131272|0.73611 131273|0.47222 131274|0.5 131275|0.41667 131276|0.625 131277|0.44444 131278|0.43056 131279|0.51389 131280|0.52778 131281|0.5 131282|0.33333 131283|0.52778 131284|0.59722 131285|0.33333 131286|0.58333 131287|0.5 131288|0.76389 131289|0.76389 131290|0.59722 131291|0.63889 131292|0.68056 131293|0.41667 131294|0.79167 131295|0.76389 131296|0.83333 131297|0.84722 131298|0.86111 131299|0.76389 131300|0.65278 131301|0.34722 131302|0.59722 131303|0.84722 131304|0.69444 131305|0.81944 131306|0.5 131307|0.69444 131308|0.58333 131309|0.75 131310|0.69444 131311|0.5 131312|0.38889 131313|0.5 131314|0.79167 131315|0.86111 131316|0.94444 131317|0.86111 131318|0.81944 131319|0.68056 131320|0.80556 131321|0.11111 131322|0.83333 131323|0.70833 131324|0.16667 131325|0.56944 131326|0.68056 131327|0.59722 131328|0.5 131329|0.63889 131330|0.055556 131331|0.5 131332|0.84722 131333|0.5 131334|0.27778 131335|0.59722 131336|0.47222 131337|0.43056 131338|0.5 131339|0.5 131340|0.40278 131341|0.38889 131342|0.38889 131343|0.75 131344|0.5 131345|0.54167 131346|0.5 131347|0.51389 131348|0.72222 131349|0.55556 131350|0.5 131351|0.48611 131352|0.44444 131353|0.45833 131354|0.5 131355|0.5 131356|0.375 131357|0.40278 131358|0.36111 131359|0.43056 131360|0.40278 131361|0.58333 131362|0.38889 131363|0.47222 131364|0.48611 131365|0.5 131366|0.56944 131367|0.38889 131368|0.43056 131369|0.18056 131370|0.25 131371|0.125 131372|0.43056 131373|0.5 131374|0.44444 131375|0.23611 131376|0.125 131377|0.22222 131378|0.097222 131379|0.5 131380|0.47222 131381|0.15278 131382|0.19444 131383|0.11111 131384|0.41667 131385|0.51389 131386|0.16667 131387|0.52778 131388|0.48611 131389|0.375 131390|0.41667 131391|0.5 131392|0.5 131393|0.45833 131394|0.30556 131395|0.47222 131396|0.23611 131397|0.5 131398|0.36111 131399|0.5 131400|0.40278 131401|0.29167 131402|0.5 131403|0.66667 131404|0.41667 131405|0.48611 131406|0.34722 131407|0.26389 131408|0.56944 131409|0.52778 131410|0.59722 131411|0.68056 131412|0.58333 131413|0.5 131414|0.68056 131415|0.5 131416|0.34722 131417|0.13889 131418|0.25 131419|0.11111 131420|0.54167 131421|0.59722 131422|0.36111 131423|0.51389 131424|0.54167 131425|0.31944 131426|0.5 131427|0.69444 131428|0.63889 131429|0.70833 131430|0.76389 131431|0.59722 131432|0.56944 131433|0.5 131434|0.5 131435|0.625 131436|0.43056 131437|0.36111 131438|0.5 131439|0.56944 131440|0.72222 131441|0.54167 131442|0.63889 131443|0.56944 131444|0.31944 131445|0.70833 131446|0.5 131447|0.5 131448|0.19444 131449|0.29167 131450|0.48611 131451|0.45833 131452|0.65278 131453|0.5 131454|0.48611 131455|0.55556 131456|0.55556 131457|0.61111 131458|0.43056 131459|0.625 131460|0.54167 131461|0.61111 131462|0.51389 131463|0.65278 131464|0.55556 131465|0.69444 131466|0.80556 131467|0.76389 131468|0.81944 131469|0.5 131470|0.41667 131471|0.75 131472|0.52778 131473|0.66667 131474|0.5 131475|0.5 131476|0.41667 131477|0.56944 131478|0.38889 131479|0.041667 131480|0.22222 131481|0.27778 131482|0.5 131483|0.51389 131484|0.40278 131485|0.59722 131486|0.44444 131487|0.52778 131488|0.38889 131489|0.25 131490|0.73611 131491|0.54167 131492|0.40278 131493|0.56944 131494|0.45833 131495|0.56944 131496|0.13889 131497|0.48611 131498|0.55556 131499|0.55556 131500|0.70833 131501|0.63889 131502|0.625 131503|0.59722 131504|0.66667 131505|0.625 131506|0.5 131507|0.5 131508|0.5 131509|0.66667 131510|0.48611 131511|0.44444 131512|0.55556 131513|0.73611 131514|0.45833 131515|0.44444 131516|0.59722 131517|0.44444 131518|0.48611 131519|0.5 131520|0.33333 131521|0.47222 131522|0.23611 131523|0.5 131524|0.48611 131525|0.66667 131526|0.65278 131527|0.76389 131528|0.75 131529|0.63889 131530|0.80556 131531|0.66667 131532|0.66667 131533|0.73611 131534|0.66667 131535|0.55556 131536|0.5 131537|0.5 131538|0.5 131539|0.5 131540|0.11111 131541|0.33333 131542|0.5 131543|0.76389 131544|0.84722 131545|0.88889 131546|0.44444 131547|0.63889 131548|0.625 131549|0.33333 131550|0.45833 131551|0.20833 131552|0.56944 131553|0.44444 131554|0.72222 131555|0.63889 131556|0.66667 131557|0.51389 131558|0.51389 131559|0.5 131560|0.44444 131561|0.5 131562|0.375 131563|0.44444 131564|0.43056 131565|0.30556 131566|0.59722 131567|0.58333 131568|0.5 131569|0.44444 131570|0.20833 131571|0.38889 131572|0.48611 131573|0.5 131574|0.70833 131575|0.77778 131576|0.54167 131577|0.61111 131578|0.80556 131579|0.81944 131580|0.43056 131581|0.40278 131582|0.40278 131583|0.48611 131584|0.43056 131585|0.5 131586|0.45833 131587|0.5 131588|0.51389 131589|0.5 131590|0.69444 131591|0.81944 131592|0.79167 131593|0.90278 131594|0.66667 131595|0.59722 131596|0.5 131597|0.43056 131598|0.5 131599|0.76389 131600|0.48611 131601|0.63889 131602|0.58333 131603|0.5 131604|0.72222 131605|0.5 131606|0.44444 131607|0.5 131608|0.5 131609|0.34722 131610|0.56944 131611|0.52778 131612|0.75 131613|0.5 131614|0.54167 131615|0.86111 131616|0.61111 131617|0.70833 131618|0.5 131619|0.63889 131620|0.68056 131621|0.43056 131622|0.56944 131623|0.51389 131624|0.61111 131625|0.52778 131626|0.875 131627|0.61111 131628|0.5 131629|0.5 131630|0.59722 131631|0.66667 131632|0.48611 131633|0.5 131634|0.19444 131635|0.5 131636|0.31944 131637|0.58333 131638|0.51389 131639|0.56944 131640|0.59722 131641|0.61111 131642|0.63889 131643|0.72222 131644|0.81944 131645|0.51389 131646|0.55556 131647|0.56944 131648|0.5 131649|0.48611 131650|0.55556 131651|0.5 131652|0.375 131653|0.47222 131654|0.27778 131655|0.36111 131656|0.5 131657|0.5 131658|0.41667 131659|0.625 131660|0.25 131661|0.5 131662|0.38889 131663|0.13889 131664|0.20833 131665|0.013889 131666|0.66667 131667|0.33333 131668|0.41667 131669|0.16667 131670|0.59722 131671|0.41667 131672|0.29167 131673|0.36111 131674|0.45833 131675|0.48611 131676|0.5 131677|0.5 131678|0.51389 131679|0.40278 131680|0.19444 131681|0.33333 131682|0.375 131683|0.40278 131684|0.51389 131685|0.56944 131686|0.76389 131687|0.5 131688|0.44444 131689|0.25 131690|0.47222 131691|0.59722 131692|0.38889 131693|0.44444 131694|0.44444 131695|0.48611 131696|0.38889 131697|0.58333 131698|0.5 131699|0.36111 131700|0.44444 131701|0.55556 131702|0.33333 131703|0.65278 131704|0.16667 131705|0.40278 131706|0.41667 131707|0.30556 131708|0.72222 131709|0.27778 131710|0.44444 131711|0.44444 131712|0.40278 131713|0.5 131714|0.33333 131715|0.41667 131716|0.26389 131717|0.27778 131718|0.5 131719|0.68056 131720|0.69444 131721|0.27778 131722|0.25 131723|0.5 131724|0.66667 131725|0.27778 131726|0.375 131727|0.5 131728|0.5 131729|0.44444 131730|0.61111 131731|0.51389 131732|0.51389 131733|0.25 131734|0.41667 131735|0.43056 131736|0.43056 131737|0.65278 131738|0.20833 131739|0.66667 131740|0.54167 131741|0.59722 131742|0.56944 131743|0.69444 131744|0.69444 131745|0.68056 131746|0.77778 131747|0.69444 131748|0.75 131749|0.76389 131750|0.48611 131751|0.38889 131752|0.38889 131753|0.72222 131754|0.51389 131755|0.61111 131756|0.58333 131757|0.5 131758|0.52778 131759|0.52778 131760|0.66667 131761|0.52778 131762|0.5 131763|0.5 131764|0.61111 131765|0.59722 131766|0.54167 131767|0.097222 131768|0.47222 131769|0.52778 131770|0.52778 131771|0.5 131772|0.51389 131773|0.5 131774|0.47222 131775|0.5 131776|0.625 131777|0.18056 131778|0.5 131779|0.61111 131780|0.56944 131781|0.44444 131782|0.5 131783|0.38889 131784|0.56944 131785|0.5 131786|0.5 131787|0.81944 131788|0.77778 131789|0.13889 131790|0.30556 131791|0.5 131792|0.52778 131793|0.43056 131794|0.45833 131795|0.5 131796|0.5 131797|0.43056 131798|0.51389 131799|0.63889 131800|0.70833 131801|0.59722 131802|0.65278 131803|0.66667 131804|0.77778 131805|0.54167 131806|0.44444 131807|0.58333 131808|0.33333 131809|0.65278 131810|0.41667 131811|0.48611 131812|0.43056 131813|0.5 131814|0.38889 131815|0.51389 131816|0.77778 131817|0.65278 131818|0.65278 131819|0.63889 131820|0.44444 131821|0.31944 131822|0.36111 131823|0.36111 131824|0.38889 131825|0.5 131826|0.5 131827|0.56944 131828|0.5 131829|0.59722 131830|0.48611 131831|0.5 131832|0.51389 131833|0.69444 131834|0.72222 131835|0.83333 131836|0.70833 131837|0.61111 131838|0.68056 131839|0.72222 131840|0.31944 131841|0.43056 131842|0.41667 131843|0.38889 131844|0.5 131845|0.56944 131846|0.51389 131847|0.5 131848|0.5 131849|0.59722 131850|0.73611 131851|0.58333 131852|0.5 131853|0.5 131854|0.5 131855|0.55556 131856|0.75 131857|0.5 131858|0.61111 131859|0.5 131860|0.5 131861|0.375 131862|0.5 131863|0.5 131864|0.47222 131865|0.375 131866|0.41667 131867|0.29167 131868|0.36111 131869|0.5 131870|0.38889 131871|0.5 131872|0.26389 131873|0.5 131874|0.5 131875|0.47222 131876|0.625 131877|0.5 131878|0.5 131879|0.11111 131880|0.11111 131881|0.083333 131882|0.38889 131883|0.5 131884|0.5 131885|0.5 131886|0.5 131887|0.52778 131888|0.44444 131889|0.5 131890|0.66667 131891|0.5 131892|0.5 131893|0.5 131894|0.55556 131895|0.58333 131896|0.68056 131897|0.63889 131898|0.59722 131899|0.66667 131900|0.25 131901|0.41667 131902|0.68056 131903|0.54167 131904|0.52778 131905|0.5 131906|0.5 131907|0.18056 131908|0.26389 131909|0.73611 131910|0.70833 131911|0.5 131912|0.5 131913|0.83333 131914|0.55556 131915|0.70833 131916|0.625 131917|0.52778 131918|0.44444 131919|0.375 131920|0.38889 131921|0.069444 131922|0.5 131923|0.55556 131924|0.5 131925|0.63889 131926|0.5 131927|0.48611 131928|0.59722 131929|0.5 131930|0.5 131931|0.44444 131932|0.97222 131933|0.84722 131934|0.83333 131935|0.84722 131936|0.56944 131937|0.59722 131938|0.55556 131939|0.59722 131940|0.41667 131941|0 131942|0.41667 131943|0.31944 131944|0.23611 131945|0.55556 131946|0.52778 131947|0.58333 131948|0.55556 131949|0.51389 131950|0.29167 131951|0.55556 131952|0.66667 131953|0.26389 131954|0.5 131955|0.63889 131956|0.47222 131957|0.38889 131958|0.30556 131959|0.51389 131960|0.70833 131961|0.58333 131962|0.76389 131963|0.70833 131964|0.61111 131965|0.72222 131966|0.33333 131967|0.31944 131968|0.45833 131969|0.26389 131970|0.48611 131971|0.40278 131972|0.54167 131973|0.65278 131974|0.36111 131975|0.69444 131976|0.79167 131977|0.63889 131978|0.66667 131979|0.27778 131980|0.26389 131981|0.625 131982|0.61111 131983|0.66667 131984|0.5 131985|0.125 131986|0.5 131987|0.5 131988|0.16667 131989|0.51389 131990|0.5 131991|0.38889 131992|0.52778 131993|0.69444 131994|0.70833 131995|0.54167 131996|0.625 131997|0.36111 131998|0.63889 131999|0.41667 132000|0.36111 132001|0.19444 132002|0.15278 132003|0.20833 132004|0.83333 132005|0.80556 132006|0.51389 132007|0.81944 132008|0.66667 132009|0.52778 132010|0.43056 132011|0.11111 132012|0.125 132013|0.38889 132014|0.52778 132015|0.36111 132016|0.15278 132017|0.5 132018|0.5 132019|0.375 132020|0.43056 132021|0.51389 132022|0.23611 132023|0.055556 132024|0.33333 132025|0.54167 132026|0.18056 132027|0.44444 132028|0.44444 132029|0.58333 132030|0.33333 132031|0.055556 132032|0.29167 132033|0.22222 132034|0.61111 132035|0.16667 132036|0.63889 132037|0.5 132038|0.48611 132039|0.5 132040|0.5 132041|0.40278 132042|0.52778 132043|0.55556 132044|0.5 132045|0.5 132046|0.61111 132047|0.5 132048|0.375 132049|0.63889 132050|0.5 132051|0.41667 132052|0.5 132053|0.5 132054|0.51389 132055|0.56944 132056|0.41667 132057|0.48611 132058|0.625 132059|0.5 132060|0.5 132061|0.38889 132062|0.47222 132063|0.5 132064|0.36111 132065|0.41667 132066|0.25 132067|0.43056 132068|0.54167 132069|0.5 132070|0.48611 132071|0.47222 132072|0.52778 132073|0.61111 132074|0.40278 132075|0.63889 132076|0.65278 132077|0.44444 132078|0.5 132079|0.29167 132080|0.5 132081|0.52778 132082|0.54167 132083|0.44444 132084|0.5 132085|0.80556 132086|0.5 132087|0.5 132088|0.36111 132089|0.5 132090|0.5 132091|0.5 132092|0.63889 132093|0.48611 132094|0.5 132095|0.59722 132096|0.65278 132097|0.36111 132098|0.76389 132099|0.625 132100|0.48611 132101|0.59722 132102|0.55556 132103|0.70833 132104|0.52778 132105|0.63889 132106|0.86111 132107|0.66667 132108|0.63889 132109|0.22222 132110|0.54167 132111|0.51389 132112|0.5 132113|0.51389 132114|0.38889 132115|0.5 132116|0.5 132117|0.5 132118|0.56944 132119|0.66667 132120|0.5 132121|0.625 132122|0.77778 132123|0.61111 132124|0.5 132125|0.55556 132126|0.5 132127|0.45833 132128|0.48611 132129|0.56944 132130|0.48611 132131|0.5 132132|0.55556 132133|0.51389 132134|0.5 132135|0.65278 132136|0.45833 132137|0.48611 132138|0.63889 132139|0.56944 132140|0.11111 132141|0.055556 132142|0.54167 132143|0.61111 132144|0.27778 132145|0.61111 132146|0.80556 132147|0.83333 132148|0.75 132149|0.58333 132150|0.51389 132151|0.5 132152|0.52778 132153|0.61111 132154|0.5 132155|0.51389 132156|0.33333 132157|0.43056 132158|0.79167 132159|0.73611 132160|0.5 132161|0.5 132162|0.47222 132163|0.625 132164|0.83333 132165|0.75 132166|0.5 132167|0.56944 132168|0.70833 132169|0.5 132170|0.5 132171|0.5 132172|0.63889 132173|0.625 132174|0.58333 132175|0.5 132176|0.69444 132177|0.69444 132178|0.33333 132179|0.15278 132180|0.41667 132181|0.80556 132182|0.5 132183|0.55556 132184|0.48611 132185|0.75 132186|0.69444 132187|0.51389 132188|0.75 132189|0.79167 132190|0.61111 132191|0.5 132192|0.70833 132193|0.5 132194|0.5 132195|0.5 132196|0.5 132197|0.375 132198|0.26389 132199|0.34722 132200|0.25 132201|0.27778 132202|0.38889 132203|0.47222 132204|0.41667 132205|0.66667 132206|0.5 132207|0.56944 132208|0.52778 132209|0.5 132210|0.5 132211|0.51389 132212|0.125 132213|0.16667 132214|0.48611 132215|0.47222 132216|0.52778 132217|0.27778 132218|0.48611 132219|0.47222 132220|0.34722 132221|0.43056 132222|0.31944 132223|0.51389 132224|0.5 132225|0.47222 132226|0.59722 132227|0.61111 132228|0.40278 132229|0.43056 132230|0.34722 132231|0.47222 132232|0.5 132233|0.44444 132234|0.61111 132235|0.375 132236|0.30556 132237|0.041667 132238|0.41667 132239|0.31944 132240|0.34722 132241|0.36111 132242|0.31944 132243|0.66667 132244|0.16667 132245|0.097222 132246|0.63889 132247|0.84722 132248|0.76389 132249|0.70833 132250|0.66667 132251|0.5 132252|0.55556 132253|0.625 132254|0.56944 132255|0.51389 132256|0.75 132257|0.83333 132258|0.76389 132259|0.76389 132260|0.72222 132261|0.55556 132262|0.375 132263|0.31944 132264|0.44444 132265|0.19444 132266|0.5 132267|0.625 132268|0.72222 132269|0.5 132270|0.55556 132271|0.45833 132272|0.40278 132273|0.44444 132274|0.5 132275|0.125 132276|0.48611 132277|0.66667 132278|0.77778 132279|0.55556 132280|0.875 132281|0.5 132282|0.61111 132283|0.5 132284|0.47222 132285|0.5 132286|0.66667 132287|0.75 132288|0.73611 132289|0.94444 132290|0.66667 132291|0.27778 132292|0.36111 132293|0.58333 132294|0.65278 132295|0.5 132296|0.55556 132297|0.65278 132298|0.18056 132299|0.48611 132300|0.055556 132301|0.20833 132302|0.055556 132303|0.16667 132304|0.055556 132305|0.29167 132306|0.38889 132307|0.26389 132308|0.47222 132309|0.5 132310|0.5 132311|0.31944 132312|0.5 132313|0.375 132314|0.5 132315|0.20833 132316|0.55556 132317|0.41667 132318|0.44444 132319|0.27778 132320|0.30556 132321|0.41667 132322|0.68056 132323|0.44444 132324|0.875 132325|0.66667 132326|0.59722 132327|0.5 132328|0.5 132329|0.70833 132330|0.52778 132331|0.75 132332|0.5 132333|0.76389 132334|0.77778 132335|0.75 132336|0.44444 132337|0.75 132338|0.36111 132339|0.59722 132340|0.11111 132341|0.125 132342|0.5 132343|0.625 132344|0.625 132345|0.65278 132346|0.875 132347|0.41667 132348|0.34722 132349|0.23611 132350|0.44444 132351|0.31944 132352|0.52778 132353|0.51389 132354|0.36111 132355|0.375 132356|0.54167 132357|0.58333 132358|0.38889 132359|0.73611 132360|0.83333 132361|0.88889 132362|0.84722 132363|0.79167 132364|0.22222 132365|0.23611 132366|0.16667 132367|0.55556 132368|0.5 132369|0.36111 132370|0.43056 132371|0.52778 132372|0.52778 132373|0.54167 132374|0.48611 132375|0.5 132376|0.55556 132377|0.5 132378|0.44444 132379|0.55556 132380|0.51389 132381|0.68056 132382|0.73611 132383|0.44444 132384|0.48611 132385|0.31944 132386|0.22222 132387|0.40278 132388|0.625 132389|0.59722 132390|0.51389 132391|0.47222 132392|0.55556 132393|0.36111 132394|0.625 132395|0.45833 132396|0.68056 132397|0.5 132398|0.51389 132399|0.5 132400|0.40278 132401|0.51389 132402|0.52778 132403|0.34722 132404|0.55556 132405|0.59722 132406|0.5 132407|0.27778 132408|0.55556 132409|0.76389 132410|0.69444 132411|0.63889 132412|0.31944 132413|0.48611 132414|0.48611 132415|0.73611 132416|0.25 132417|0.63889 132418|0.31944 132419|0.61111 132420|0.43056 132421|0.65278 132422|0.73611 132423|0.75 132424|0.58333 132425|0.5 132426|0.45833 132427|0.25 132428|0.16667 132429|0.75 132430|0.5 132431|0.5 132432|0.19444 132433|0.79167 132434|0.66667 132435|0.44444 132436|0.27778 132437|0.625 132438|0.31944 132439|0.375 132440|0.5 132441|0.40278 132442|0.33333 132443|0.48611 132444|0.61111 132445|0.5 132446|0.44444 132447|0.54167 132448|0.40278 132449|0.52778 132450|0.38889 132451|0.33333 132452|0.5 132453|0.5 132454|0.52778 132455|0.30556 132456|0.30556 132457|0.43056 132458|0.38889 132459|0.375 132460|0.51389 132461|0.66667 132462|0.5 132463|0.5 132464|0.56944 132465|0.5 132466|0.68056 132467|0.11111 132468|0.33333 132469|0.61111 132470|0.56944 132471|0.5 132472|0.5 132473|0.58333 132474|0.55556 132475|0.73611 132476|0.44444 132477|0.38889 132478|0.30556 132479|0.27778 132480|0.45833 132481|0.48611 132482|0.58333 132483|0.41667 132484|0.33333 132485|0.70833 132486|0.29167 132487|0.33333 132488|0.58333 132489|0.69444 132490|0.23611 132491|0.38889 132492|0.625 132493|0.66667 132494|0.70833 132495|0.55556 132496|0.58333 132497|0.81944 132498|0.48611 132499|0.5 132500|0.66667 132501|0.45833 132502|0.5 132503|0.44444 132504|0.90278 132505|0.54167 132506|0.79167 132507|0.41667 132508|0.18056 132509|0.40278 132510|0.25 132511|0.23611 132512|0.36111 132513|0.19444 132514|0.31944 132515|0.76389 132516|0.47222 132517|0.48611 132518|0.5 132519|0.5 132520|0.5 132521|0.51389 132522|0.5 132523|0.43056 132524|0.52778 132525|0.54167 132526|0.5 132527|0.5 132528|0.5 132529|0.5 132530|0.5 132531|0.80556 132532|0.48611 132533|0.5 132534|0.625 132535|0.48611 132536|0.55556 132537|0.51389 132538|0.63889 132539|0.22222 132540|0.45833 132541|0.33333 132542|0.47222 132543|0.61111 132544|0.47222 132545|0.5 132546|0.5 132547|0.5 132548|0.56944 132549|0.5 132550|0.30556 132551|0.45833 132552|0.31944 132553|0.55556 132554|0.58333 132555|0.56944 132556|0.5 132557|0.5 132558|0.5 132559|0.5 132560|0.5 132561|0.5 132562|0.5 132563|0.45833 132564|0.38889 132565|0.54167 132566|0.5 132567|0.625 132568|0.61111 132569|0.31944 132570|0.375 132571|0.25 132572|0.41667 132573|0.38889 132574|0.5 132575|0.77778 132576|0.79167 132577|0.47222 132578|0.56944 132579|0.68056 132580|0.625 132581|0.54167 132582|0.055556 132583|0.51389 132584|0.083333 132585|0.31944 132586|0.40278 132587|0.5 132588|0.43056 132589|0.33333 132590|0.5 132591|0.55556 132592|0.5 132593|0.27778 132594|0.31944 132595|0.27778 132596|0.31944 132597|0.5 132598|0.51389 132599|0.5 132600|0.56944 132601|0.61111 132602|0.15278 132603|0.40278 132604|0.29167 132605|0.70833 132606|0.5 132607|0.38889 132608|0.34722 132609|0.63889 132610|0.63889 132611|0.51389 132612|0.44444 132613|0.5 132614|0.54167 132615|0.52778 132616|0.44444 132617|0.51389 132618|0.41667 132619|0.43056 132620|0.55556 132621|0.52778 132622|0.26389 132623|0.54167 132624|0.25 132625|0.41667 132626|0.31944 132627|0.13889 132628|0.23611 132629|0.375 132630|0.26389 132631|0.41667 132632|0.44444 132633|0.45833 132634|0.40278 132635|0.56944 132636|0.375 132637|0.38889 132638|0.29167 132639|0.25 132640|0.27778 132641|0.47222 132642|0.33333 132643|0.34722 132644|0.31944 132645|0.65278 132646|0.72222 132647|0.58333 132648|0.66667 132649|0.36111 132650|0.65278 132651|0.5 132652|0.44444 132653|0.5 132654|0.5 132655|0.56944 132656|0.5 132657|0.5 132658|0.38889 132659|0.77778 132660|0.83333 132661|0.80556 132662|0.875 132663|0.54167 132664|0.68056 132665|0.36111 132666|0.61111 132667|0.69444 132668|0.79167 132669|0.76389 132670|0.625 132671|0.48611 132672|0.48611 132673|0.625 132674|0.51389 132675|0.47222 132676|0.65278 132677|0.76389 132678|0.48611 132679|0.5 132680|0.47222 132681|0.72222 132682|0.61111 132683|0.38889 132684|0.36111 132685|0.66667 132686|0.44444 132687|0.44444 132688|0.40278 132689|0.19444 132690|0.52778 132691|0.58333 132692|0.5 132693|0.48611 132694|0.40278 132695|0.54167 132696|0.27778 132697|0.66667 132698|0.75 132699|0.625 132700|0.56944 132701|0.83333 132702|0.43056 132703|0.44444 132704|0.5 132705|0.77778 132706|0.61111 132707|0.45833 132708|0.55556 132709|0.26389 132710|0.30556 132711|0.41667 132712|0.33333 132713|0.56944 132714|0.51389 132715|0.75 132716|0.63889 132717|0.52778 132718|0.58333 132719|0.69444 132720|0.70833 132721|0.40278 132722|0.5 132723|0.19444 132724|0.27778 132725|0.33333 132726|0.66667 132727|0.56944 132728|0.097222 132729|0.26389 132730|0.34722 132731|0.63889 132732|0.31944 132733|0.54167 132734|0.41667 132735|0.66667 132736|0.65278 132737|0.33333 132738|0.22222 132739|0.18056 132740|0.25 132741|0.19444 132742|0.16667 132743|0.61111 132744|0.55556 132745|0.26389 132746|0.43056 132747|0.47222 132748|0.55556 132749|0.55556 132750|0.16667 132751|0.58333 132752|0.5 132753|0.48611 132754|0.63889 132755|0.5 132756|0.52778 132757|0.48611 132758|0.56944 132759|0.65278 132760|0.72222 132761|0.43056 132762|0.59722 132763|0.61111 132764|0.34722 132765|0.45833 132766|0.33333 132767|0.73611 132768|0.875 132769|0.68056 132770|0.11111 132771|0.5 132772|0.5 132773|0.5 132774|0.34722 132775|0.43056 132776|0.875 132777|0.31944 132778|0.11111 132779|0.5 132780|0.18056 132781|0.22222 132782|0.58333 132783|0.61111 132784|0.59722 132785|0.125 132786|0.29167 132787|0.125 132788|0.22222 132789|0.19444 132790|0.34722 132791|0.65278 132792|0.33333 132793|0.625 132794|0.5 132795|0.79167 132796|0.22222 132797|0.44444 132798|0.15278 132799|0.26389 132800|0.30556 132801|0.45833 132802|0.56944 132803|0.83333 132804|0.72222 132805|0.91667 132806|0.51389 132807|0.083333 132808|0.63889 132809|0.81944 132810|0.77778 132811|0.75 132812|0.31944 132813|0.34722 132814|0.41667 132815|0.76389 132816|0.43056 132817|0.66667 132818|0.5 132819|0.41667 132820|0.54167 132821|0.66667 132822|0.63889 132823|0.80556 132824|0.55556 132825|0.38889 132826|0.55556 132827|0.45833 132828|0.51389 132829|0.48611 132830|0.5 132831|0.54167 132832|0.5 132833|0.5 132834|0.5 132835|0.58333 132836|0.40278 132837|0.5 132838|0.45833 132839|0.45833 132840|0.34722 132841|0.41667 132842|0.625 132843|0.54167 132844|0.43056 132845|0.51389 132846|0.54167 132847|0.77778 132848|0.77778 132849|0.80556 132850|0.61111 132851|0.79167 132852|0.63889 132853|0.625 132854|0.76389 132855|0.91667 132856|0.97222 132857|0.81944 132858|0.48611 132859|0.44444 132860|0.5 132861|0.76389 132862|0.27778 132863|0.38889 132864|0.47222 132865|0.5 132866|0.58333 132867|0.77778 132868|0.44444 132869|0.5 132870|0.73611 132871|0.52778 132872|0.5 132873|0.70833 132874|0.5 132875|0.47222 132876|0.29167 132877|0.27778 132878|0.55556 132879|0.38889 132880|0.86111 132881|0.69444 132882|0.5 132883|0.66667 132884|0.59722 132885|0.27778 132886|0.58333 132887|0.66667 132888|0.52778 132889|0.47222 132890|0.625 132891|0.5 132892|0.5 132893|0.73611 132894|0.70833 132895|0.45833 132896|0.40278 132897|0.33333 132898|0.34722 132899|0.20833 132900|0.69444 132901|0.63889 132902|0.68056 132903|0.36111 132904|0.5 132905|0.5 132906|0.5 132907|0.5 132908|0.43056 132909|0.56944 132910|0.72222 132911|0.55556 132912|0.80556 132913|0.80556 132914|0.75 132915|0.86111 132916|0.77778 132917|0.73611 132918|0.80556 132919|0.61111 132920|0.5 132921|0.47222 132922|0.30556 132923|0.63889 132924|0.375 132925|0.70833 132926|0.069444 132927|0.5 132928|0.5 132929|0.54167 132930|0.36111 132931|0.55556 132932|0.72222 132933|0.55556 132934|0.625 132935|0.66667 132936|0.61111 132937|0.83333 132938|0.47222 132939|0.30556 132940|0.55556 132941|0.51389 132942|0.52778 132943|0.44444 132944|0.44444 132945|0.66667 132946|0.13889 132947|0.69444 132948|0.66667 132949|0.5 132950|0.5 132951|0.55556 132952|0.26389 132953|0.5 132954|0.22222 132955|0.36111 132956|0.43056 132957|0.75 132958|0.5 132959|0.76389 132960|0.65278 132961|0.69444 132962|0.66667 132963|0.36111 132964|0.43056 132965|0.73611 132966|0.56944 132967|0.45833 132968|0.875 132969|0.33333 132970|0.59722 132971|0.66667 132972|0.56944 132973|0.45833 132974|0.51389 132975|0.44444 132976|0.41667 132977|0.63889 132978|0.66667 132979|0.70833 132980|0.63889 132981|0.52778 132982|0.65278 132983|0.625 132984|0.30556 132985|0.56944 132986|0.44444 132987|0.52778 132988|0.54167 132989|0.66667 132990|0.52778 132991|0.22222 132992|0.44444 132993|0.52778 132994|0.58333 132995|0.52778 132996|0.375 132997|0.36111 132998|0.63889 132999|0.5 133000|0.31944 133001|0.375 133002|0.40278 133003|0.625 133004|0.31944 133005|0.48611 133006|0.16667 133007|0.69444 133008|0.5 133009|0.5 133010|0.48611 133011|0.18056 133012|0.27778 133013|0.16667 133014|0.27778 133015|0.45833 133016|0.55556 133017|0.75 133018|0.43056 133019|0.54167 133020|0.55556 133021|0.63889 133022|0.79167 133023|0.66667 133024|0.22222 133025|0.875 133026|0.83333 133027|0.22222 133028|0.33333 133029|0.55556 133030|0.36111 133031|0.34722 133032|0.59722 133033|0.55556 133034|0.41667 133035|0.51389 133036|0.55556 133037|0.51389 133038|0.70833 133039|0.22222 133040|0.23611 133041|0.25 133042|0.33333 133043|0.51389 133044|0.5 133045|0.66667 133046|0.5 133047|0.5 133048|0.5 133049|0.65278 133050|0.40278 133051|0.5 133052|0.77778 133053|0.77778 133054|0.5 133055|0.5 133056|0.31944 133057|0.51389 133058|0.58333 133059|0.19444 133060|0.5 133061|0.5 133062|0.59722 133063|0.625 133064|0.5 133065|0.5 133066|0.54167 133067|0.5 133068|0.38889 133069|0.66667 133070|0.34722 133071|0.38889 133072|0.66667 133073|0.69444 133074|0.52778 133075|0.55556 133076|0.55556 133077|0.47222 133078|0.66667 133079|0.51389 133080|0.94444 133081|0.75 133082|0.44444 133083|0.5 133084|0.5 133085|0.66667 133086|0.5 133087|0.44444 133088|0.29167 133089|0.47222 133090|0.58333 133091|0.47222 133092|0.69444 133093|0.5 133094|0.54167 133095|0.51389 133096|0.51389 133097|0.38889 133098|0.68056 133099|0.55556 133100|0.61111 133101|0.5 133102|0.44444 133103|0.5 133104|0.083333 133105|0.13889 133106|0.38889 133107|0.27778 133108|0.5 133109|0.54167 133110|0.38889 133111|0.47222 133112|0.63889 133113|0.77778 133114|0.72222 133115|0.625 133116|0.61111 133117|0.66667 133118|0.34722 133119|0.31944 133120|0.70833 133121|0.61111 133122|0.52778 133123|0.63889 133124|0.58333 133125|0.86111 133126|0.5 133127|0.47222 133128|0.54167 133129|0.79167 133130|0.88889 133131|0.75 133132|0.83333 133133|0.58333 133134|0.58333 133135|0.79167 133136|0.55556 133137|0.52778 133138|0.54167 133139|0.58333 133140|0.44444 133141|0.59722 133142|0.38889 133143|0.5 133144|0.55556 133145|0.52778 133146|0.51389 133147|0.63889 133148|0.5 133149|0.61111 133150|0.41667 133151|0.5 133152|0.38889 133153|0.58333 133154|0.625 133155|0.5 133156|0.61111 133157|0.54167 133158|0.5 133159|0.63889 133160|0.38889 133161|0.81944 133162|0.73611 133163|0.38889 133164|0.55556 133165|0.47222 133166|0.5 133167|0.51389 133168|0.5 133169|0.63889 133170|0.61111 133171|0.59722 133172|0.61111 133173|0.5 133174|0.48611 133175|0.44444 133176|0.41667 133177|0.38889 133178|0.43056 133179|0.27778 133180|0.41667 133181|0.25 133182|0.54167 133183|0.15278 133184|0.45833 133185|0.31944 133186|0.44444 133187|0.52778 133188|0.55556 133189|0.5 133190|0.58333 133191|0.34722 133192|0.30556 133193|0.30556 133194|0.5 133195|0.45833 133196|0.083333 133197|0.26389 133198|0.48611 133199|0.54167 133200|0.625 133201|0.44444 133202|0.56944 133203|0.63889 133204|0.52778 133205|0.44444 133206|0.66667 133207|0.69444 133208|0.83333 133209|0.59722 133210|0.66667 133211|0.58333 133212|0.52778 133213|0.5 133214|0.34722 133215|0.45833 133216|0.54167 133217|0.22222 133218|0.5 133219|0.29167 133220|0.47222 133221|0.51389 133222|0.875 133223|0.875 133224|0.70833 133225|0.51389 133226|0.61111 133227|0.5 133228|0.5 133229|0.54167 133230|0.5 133231|0.68056 133232|0.5 133233|0.5 133234|0.5 133235|0.52778 133236|0.5 133237|0.5 133238|0.5 133239|0.51389 133240|0.59722 133241|0.51389 133242|0.5 133243|0.47222 133244|0.58333 133245|0.45833 133246|0.55556 133247|0.25 133248|0.23611 133249|0.25 133250|0.58333 133251|0.22222 133252|0.65278 133253|0.68056 133254|0.73611 133255|0.55556 133256|0.68056 133257|0.41667 133258|0.56944 133259|0.5 133260|0.38889 133261|0.45833 133262|0.45833 133263|0.5 133264|0.5 133265|0.45833 133266|0.25 133267|0.5 133268|0.44444 133269|0.30556 133270|0.45833 133271|0.33333 133272|0.36111 133273|0.52778 133274|0.47222 133275|0.29167 133276|0.51389 133277|0.48611 133278|0.38889 133279|0.375 133280|0.86111 133281|0.33333 133282|0.52778 133283|0.55556 133284|0.52778 133285|0.47222 133286|0.5 133287|0.20833 133288|0.47222 133289|0.11111 133290|0.54167 133291|0.25 133292|0.33333 133293|0.34722 133294|0.54167 133295|0.5 133296|0.77778 133297|0.38889 133298|0.72222 133299|0.38889 133300|0.30556 133301|0.51389 133302|0.38889 133303|0.76389 133304|0.69444 133305|0.77778 133306|0.48611 133307|0.5 133308|0.54167 133309|0.65278 133310|0.77778 133311|0.47222 133312|0.5 133313|0.58333 133314|0.75 133315|0.76389 133316|0.56944 133317|0.43056 133318|0.22222 133319|0.72222 133320|0.55556 133321|0.65278 133322|0.61111 133323|0.61111 133324|0.72222 133325|0.25 133326|0.27778 133327|0.40278 133328|0.73611 133329|0.5 133330|0.40278 133331|0.45833 133332|0.34722 133333|0.48611 133334|0.47222 133335|0.44444 133336|0.33333 133337|0.36111 133338|0.48611 133339|0.16667 133340|0.40278 133341|0.47222 133342|0.5 133343|0.5 133344|0.5 133345|0.5 133346|0.44444 133347|0.63889 133348|0.20833 133349|0.33333 133350|0.47222 133351|0.70833 133352|0.38889 133353|0.33333 133354|0.58333 133355|0.5 133356|0.58333 133357|0.5 133358|0.61111 133359|0.48611 133360|0.52778 133361|0.23611 133362|0.44444 133363|0.68056 133364|0.55556 133365|0.70833 133366|0.80556 133367|0.79167 133368|0.38889 133369|0.48611 133370|0.375 133371|0.54167 133372|0.36111 133373|0.44444 133374|0.75 133375|0.45833 133376|0.44444 133377|0.65278 133378|0.69444 133379|0.29167 133380|0.44444 133381|0.44444 133382|0.5 133383|0.55556 133384|0.5 133385|0.51389 133386|0.54167 133387|0.5 133388|0.55556 133389|0.51389 133390|0.45833 133391|0.5 133392|0.54167 133393|0.29167 133394|0.43056 133395|0.36111 133396|0.44444 133397|0.5 133398|0.63889 133399|0.65278 133400|0.5 133401|0.36111 133402|0.52778 133403|0.54167 133404|0.56944 133405|0.86111 133406|0.86111 133407|0.65278 133408|0.63889 133409|0.66667 133410|0.33333 133411|0.59722 133412|0.86111 133413|0.69444 133414|0.5 133415|0.45833 133416|0.23611 133417|0.25 133418|0.5 133419|0.66667 133420|0.79167 133421|0.83333 133422|0.76389 133423|0.54167 133424|0.66667 133425|0.61111 133426|0.66667 133427|0.55556 133428|0.61111 133429|0.68056 133430|0.65278 133431|0.73611 133432|0.68056 133433|0.63889 133434|0.5 133435|0.72222 133436|0.43056 133437|0.66667 133438|0.76389 133439|0.25 133440|0.18056 133441|0.29167 133442|0.15278 133443|0.5 133444|0.43056 133445|0.5 133446|0.55556 133447|0.29167 133448|0.63889 133449|0.56944 133450|0.83333 133451|0.5 133452|0.44444 133453|0.47222 133454|0.47222 133455|0.11111 133456|0.5 133457|0.51389 133458|0.54167 133459|0.55556 133460|0.5 133461|0.375 133462|0.40278 133463|0.5 133464|0.36111 133465|0.5 133466|0.375 133467|0.55556 133468|0.375 133469|0.48611 133470|0.41667 133471|0.5 133472|0.90278 133473|0.58333 133474|0.75 133475|0.81944 133476|0.5 133477|0.44444 133478|0.45833 133479|0.19444 133480|0.22222 133481|0.027778 133482|0.26389 133483|0.51389 133484|0.45833 133485|0.54167 133486|0.59722 133487|0.61111 133488|0.69444 133489|0.68056 133490|0.61111 133491|0.76389 133492|0.38889 133493|0.54167 133494|0.59722 133495|0.68056 133496|0.5 133497|0.47222 133498|0.47222 133499|0.54167 133500|0.54167 133501|0.5 133502|0.33333 133503|0.26389 133504|0.36111 133505|0.5 133506|0.44444 133507|0.38889 133508|0.5 133509|0.36111 133510|0.45833 133511|0.33333 133512|0.55556 133513|0.61111 133514|0.45833 133515|0.44444 133516|0.5 133517|0.5 133518|0.72222 133519|0.72222 133520|0.5 133521|0.55556 133522|0.77778 133523|0.31944 133524|0.69444 133525|0.20833 133526|0.5 133527|0.5 133528|0.5 133529|0.44444 133530|0.5 133531|0.27778 133532|0.72222 133533|0.77778 133534|0.33333 133535|0.69444 133536|0.81944 133537|0.75 133538|0.875 133539|0.94444 133540|0.77778 133541|0.66667 133542|0.73611 133543|0.45833 133544|0.66667 133545|0.77778 133546|0.68056 133547|0.77778 133548|0.61111 133549|0.65278 133550|0.45833 133551|0.38889 133552|0.48611 133553|0.25 133554|0.19444 133555|0.51389 133556|0.59722 133557|0.61111 133558|0.54167 133559|0.19444 133560|0.48611 133561|0.22222 133562|0.54167 133563|0.44444 133564|0.69444 133565|0.40278 133566|0.41667 133567|0.44444 133568|0.54167 133569|0.81944 133570|0.36111 133571|0.097222 133572|0.88889 133573|0.41667 133574|0.38889 133575|0.5 133576|0.69444 133577|0.48611 133578|0.80556 133579|0.41667 133580|0.055556 133581|0.33333 133582|0.36111 133583|0.47222 133584|0.77778 133585|0.51389 133586|0.68056 133587|0.18056 133588|0 133589|0.5 133590|0.58333 133591|0.38889 133592|0.5 133593|0.5 133594|0.5 133595|0.45833 133596|0.38889 133597|0.40278 133598|0.41667 133599|0.30556 133600|0.19444 133601|0.27778 133602|0.19444 133603|0.055556 133604|0.45833 133605|0.45833 133606|0.34722 133607|0.48611 133608|0.48611 133609|0.59722 133610|0.29167 133611|0.5 133612|0.45833 133613|0.5 133614|0.5 133615|0.29167 133616|0.5 133617|0.72222 133618|0.5 133619|0.63889 133620|0.54167 133621|0.5 133622|0.55556 133623|0.58333 133624|0.83333 133625|0.5 133626|0.58333 133627|0.61111 133628|0.59722 133629|0.5 133630|0.59722 133631|0.73611 133632|0.88889 133633|0.47222 133634|0.44444 133635|0.44444 133636|0.23611 133637|0.25 133638|0.375 133639|0.26389 133640|0.36111 133641|0.66667 133642|0.5 133643|0.40278 133644|0.58333 133645|0.63889 133646|0.5 133647|0.51389 133648|0.58333 133649|0.75 133650|0.65278 133651|0.30556 133652|0.51389 133653|0.59722 133654|0.65278 133655|0.44444 133656|0.47222 133657|0.27778 133658|0.33333 133659|0.013889 133660|0.5 133661|0.44444 133662|0.5 133663|0.77778 133664|0.20833 133665|0.34722 133666|0.38889 133667|0.54167 133668|0.27778 133669|0.48611 133670|0.52778 133671|0.44444 133672|0.5 133673|0.59722 133674|0.76389 133675|0.55556 133676|0.66667 133677|0.65278 133678|0.68056 133679|0.68056 133680|0.72222 133681|0.58333 133682|0.68056 133683|0.79167 133684|0.70833 133685|0.97222 133686|0.80556 133687|0.56944 133688|0.73611 133689|0.55556 133690|0.80556 133691|0.77778 133692|0.33333 133693|0.72222 133694|0.68056 133695|0.63889 133696|0.41667 133697|0.86111 133698|0.83333 133699|0.54167 133700|0.36111 133701|0.65278 133702|0.48611 133703|0.45833 133704|0.44444 133705|0.5 133706|0.5 133707|0.20833 133708|0.5 133709|0.47222 133710|0.5 133711|0.5 133712|0.625 133713|0.59722 133714|0.58333 133715|0.43056 133716|0.38889 133717|0.625 133718|0.36111 133719|0.55556 133720|0.33333 133721|0.59722 133722|0.375 133723|0.43056 133724|0.48611 133725|0.45833 133726|0.5 133727|0.47222 133728|0.52778 133729|0.5 133730|0.58333 133731|0.54167 133732|0.55556 133733|0.54167 133734|0.88889 133735|0.38889 133736|0.55556 133737|0.72222 133738|0.68056 133739|0.52778 133740|0.58333 133741|0.59722 133742|0.54167 133743|0.58333 133744|0.59722 133745|0.56944 133746|0.48611 133747|0.75 133748|0.52778 133749|0.79167 133750|0.75 133751|0.86111 133752|0.70833 133753|0.88889 133754|0.80556 133755|0.80556 133756|0.66667 133757|0.76389 133758|0.72222 133759|0.63889 133760|0.73611 133761|0.68056 133762|0.66667 133763|0.66667 133764|0.65278 133765|0.80556 133766|0.5 133767|0.5 133768|0.59722 133769|0.48611 133770|0.54167 133771|0.58333 133772|0.5 133773|0.61111 133774|0.38889 133775|0.65278 133776|0.48611 133777|0.61111 133778|0.56944 133779|0.5 133780|0.52778 133781|0.375 133782|0.47222 133783|0.5 133784|0.38889 133785|0.5 133786|0.51389 133787|0.625 133788|0.61111 133789|0.93056 133790|0.84722 133791|0.38889 133792|0.27778 133793|0.41667 133794|0.23611 133795|0.5 133796|0.5 133797|0.31944 133798|0.18056 133799|0.56944 133800|0.5 133801|0.52778 133802|0.61111 133803|0.47222 133804|0.56944 133805|0.36111 133806|0.20833 133807|0.5 133808|0.59722 133809|0.63889 133810|0.625 133811|0.51389 133812|0.5 133813|0.63889 133814|0.43056 133815|0.66667 133816|0.26389 133817|0.72222 133818|0.55556 133819|0.44444 133820|0.61111 133821|0.5 133822|0.5 133823|0.5 133824|0.47222 133825|0.65278 133826|0.44444 133827|0.70833 133828|0.41667 133829|0.56944 133830|0.23611 133831|0.36111 133832|0.69444 133833|0.65278 133834|0.43056 133835|0.76389 133836|0.52778 133837|0.56944 133838|0.83333 133839|0.75 133840|0.11111 133841|0.11111 133842|0.68056 133843|0.61111 133844|0.55556 133845|0.59722 133846|0.54167 133847|0.51389 133848|0.31944 133849|0.58333 133850|0.75 133851|0.66667 133852|0.54167 133853|0.52778 133854|0.19444 133855|0.34722 133856|0.68056 133857|0.75 133858|0.5 133859|0.625 133860|0.61111 133861|0.5 133862|0.40278 133863|0.69444 133864|0.56944 133865|0.5 133866|0.61111 133867|0.86111 133868|0.52778 133869|0.68056 133870|0.625 133871|0.625 133872|0.43056 133873|0.38889 133874|0.45833 133875|0.40278 133876|0.56944 133877|0.51389 133878|0.44444 133879|0.40278 133880|0.51389 133881|0.5 133882|0.51389 133883|0.5 133884|0.48611 133885|0.5 133886|0.65278 133887|0.61111 133888|0.55556 133889|0.38889 133890|0.23611 133891|0.59722 133892|0.44444 133893|0.22222 133894|0.41667 133895|0.11111 133896|0.31944 133897|0.70833 133898|0.80556 133899|0.48611 133900|0.29167 133901|0.41667 133902|0.30556 133903|0.23611 133904|0.47222 133905|0.22222 133906|0.73611 133907|0.33333 133908|0.61111 133909|0.29167 133910|0.51389 133911|0.47222 133912|0.68056 133913|0.61111 133914|0.54167 133915|0.47222 133916|0.80556 133917|0.77778 133918|0.66667 133919|0.65278 133920|0.23611 133921|0.48611 133922|0.48611 133923|0.36111 133924|0.47222 133925|0.5 133926|0.47222 133927|0.45833 133928|0.5 133929|0.27778 133930|0.55556 133931|0.44444 133932|0.5 133933|0.65278 133934|0.43056 133935|0.52778 133936|0.48611 133937|0.47222 133938|0.52778 133939|0.375 133940|0.47222 133941|0.44444 133942|0.40278 133943|0.58333 133944|0.68056 133945|0.48611 133946|0.54167 133947|0.51389 133948|0.5 133949|0.5 133950|0.51389 133951|0.51389 133952|0.5 133953|0.36111 133954|0.36111 133955|0.51389 133956|0.41667 133957|0.5 133958|0.59722 133959|0.26389 133960|0.38889 133961|0.027778 133962|0.75 133963|0.68056 133964|0.65278 133965|0.48611 133966|0.625 133967|0.72222 133968|0.51389 133969|0.5 133970|0.44444 133971|0.44444 133972|0.40278 133973|0.45833 133974|0.43056 133975|0.51389 133976|0.5 133977|0.5 133978|0.55556 133979|0.625 133980|0.86111 133981|0.66667 133982|0.5 133983|0.5 133984|0.625 133985|0.5 133986|0.51389 133987|0.5 133988|0.5 133989|0.76389 133990|0.26389 133991|0.11111 133992|0.68056 133993|0.81944 133994|0.84722 133995|0.80556 133996|0.51389 133997|0.55556 133998|1 133999|0.66667 134000|0.79167 134001|0.86111 134002|0.83333 134003|0.80556 134004|0.63889 134005|0.83333 134006|0.73611 134007|0.41667 134008|0.45833 134009|0.18056 134010|0.5 134011|0.44444 134012|0.375 134013|0.5 134014|0.5 134015|0.5 134016|0.5 134017|0.51389 134018|0.5 134019|0.65278 134020|0.5 134021|0.5 134022|0.55556 134023|0.5 134024|0.48611 134025|0.31944 134026|0.47222 134027|0.5 134028|0.55556 134029|0.5 134030|0.44444 134031|0.61111 134032|0.5 134033|0.5 134034|0.5 134035|0.44444 134036|0.58333 134037|0.41667 134038|0.68056 134039|0.43056 134040|0.40278 134041|0.41667 134042|0.18056 134043|0.5 134044|0.5 134045|0.5 134046|0.61111 134047|0.55556 134048|0.31944 134049|0.52778 134050|0.5 134051|0.5 134052|0.44444 134053|0.5 134054|0.5 134055|0.5 134056|0.43056 134057|0.27778 134058|0.61111 134059|0.44444 134060|0.55556 134061|0.5 134062|0.5 134063|0.44444 134064|0.44444 134065|0.47222 134066|0.5 134067|0.5 134068|0.41667 134069|0.61111 134070|0.52778 134071|0.58333 134072|0.5 134073|0.51389 134074|0.5 134075|0.5 134076|0.5 134077|0.52778 134078|0.5 134079|0.44444 134080|0.54167 134081|0.5 134082|0.58333 134083|0.5 134084|0.47222 134085|0.30556 134086|0.5 134087|0.59722 134088|0.69444 134089|0.5 134090|0.5 134091|0.5 134092|0.5 134093|0.51389 134094|0.47222 134095|0.027778 134096|0.43056 134097|0.43056 134098|0.44444 134099|0.375 134100|0.54167 134101|0.72222 134102|0.51389 134103|0.5 134104|0.47222 134105|0.59722 134106|0.69444 134107|0.51389 134108|0.11111 134109|0.30556 134110|0.66667 134111|0.5 134112|0.5 134113|0.61111 134114|0.5 134115|0.47222 134116|0.56944 134117|0.44444 134118|0.5 134119|0.40278 134120|0.43056 134121|0.55556 134122|0.375 134123|0.5 134124|0.65278 134125|0.55556 134126|0.5 134127|0.66667 134128|0.30556 134129|0.31944 134130|0.68056 134131|0.76389 134132|0.52778 134133|0.66667 134134|0.68056 134135|0.41667 134136|0.33333 134137|0.45833 134138|0.55556 134139|0.77778 134140|0.66667 134141|0.097222 134142|0.65278 134143|0.52778 134144|0.47222 134145|0.41667 134146|0.66667 134147|0.83333 134148|0.54167 134149|0.63889 134150|0.30556 134151|0.56944 134152|0.34722 134153|0.26389 134154|0.36111 134155|0.5 134156|0.36111 134157|0.5 134158|0.80556 134159|0.44444 134160|0.66667 134161|0.52778 134162|0.5 134163|0.51389 134164|0.84722 134165|0.68056 134166|0.66667 134167|0.73611 134168|0.68056 134169|0.5 134170|0.29167 134171|0.56944 134172|0.375 134173|0.083333 134174|0.51389 134175|0.5 134176|0.54167 134177|0.26389 134178|0.43056 134179|0.52778 134180|0.29167 134181|0.26389 134182|0.54167 134183|0.88889 134184|0.5 134185|0.75 134186|0.69444 134187|0.65278 134188|0.38889 134189|0.5 134190|0.75 134191|0.5 134192|0.5 134193|0.5 134194|0.52778 134195|0.61111 134196|0.48611 134197|0.20833 134198|0.66667 134199|0.43056 134200|0.5 134201|0.83333 134202|0.55556 134203|0.55556 134204|0.55556 134205|0.875 134206|0.5 134207|0.18056 134208|0.375 134209|0.56944 134210|0.5 134211|0.73611 134212|0.58333 134213|0.38889 134214|0.30556 134215|0.44444 134216|0.66667 134217|0.77778 134218|0.75 134219|0.20833 134220|0.36111 134221|0.79167 134222|0.38889 134223|0.29167 134224|0.77778 134225|0.59722 134226|0.33333 134227|0.41667 134228|0.81944 134229|0.73611 134230|0.41667 134231|0.34722 134232|0.31944 134233|0.68056 134234|0.30556 134235|0.70833 134236|0.56944 134237|0.61111 134238|0.81944 134239|0.58333 134240|0.48611 134241|0.66667 134242|0.80556 134243|0.55556 134244|0.68056 134245|0.55556 134246|0.68056 134247|0.66667 134248|0.48611 134249|0.5 134250|0.5 134251|0.5 134252|0.90278 134253|0.61111 134254|0.80556 134255|0.43056 134256|0.34722 134257|0.61111 134258|0.41667 134259|0.73611 134260|0.55556 134261|0.51389 134262|0.69444 134263|0.5 134264|0.29167 134265|0.52778 134266|0.45833 134267|0.54167 134268|0.40278 134269|0.75 134270|0.56944 134271|0.59722 134272|0.5 134273|0.83333 134274|0.73611 134275|0.40278 134276|0.33333 134277|0.65278 134278|0.56944 134279|0.55556 134280|0.59722 134281|0.52778 134282|0.55556 134283|0.70833 134284|0.54167 134285|0.63889 134286|0.63889 134287|0.65278 134288|0.5 134289|0.56944 134290|0.27778 134291|0.47222 134292|0.43056 134293|0.23611 134294|0.63889 134295|0.58333 134296|0.44444 134297|0.51389 134298|0.27778 134299|0.31944 134300|0.48611 134301|0.5 134302|0.23611 134303|0.5 134304|0.76389 134305|0.5 134306|0.5 134307|0.55556 134308|0.30556 134309|0.30556 134310|0.27778 134311|0.88889 134312|0.72222 134313|0.5 134314|0.33333 134315|0.52778 134316|0.30556 134317|0.31944 134318|0.58333 134319|0.19444 134320|0.81944 134321|0.61111 134322|0.25 134323|0.19444 134324|0.5 134325|0.70833 134326|0.55556 134327|0.34722 134328|0.45833 134329|0.20833 134330|0.55556 134331|0.31944 134332|0.5 134333|0.5 134334|0.65278 134335|0.5 134336|0.31944 134337|0.95833 134338|0.31944 134339|0.38889 134340|0.68056 134341|0.5 134342|0.65278 134343|0.29167 134344|0.63889 134345|0.45833 134346|0.56944 134347|0.63889 134348|0.56944 134349|0.31944 134350|0.69444 134351|0.47222 134352|0.73611 134353|0.58333 134354|0.75 134355|0.70833 134356|0.65278 134357|0.79167 134358|0.55556 134359|0.68056 134360|0.52778 134361|0.25 134362|0.34722 134363|0.5 134364|0.44444 134365|0.5 134366|0.44444 134367|0.65278 134368|0.65278 134369|0.54167 134370|0.29167 134371|0.5 134372|0.47222 134373|0.38889 134374|0.63889 134375|0.52778 134376|0.68056 134377|0.59722 134378|0.76389 134379|0.22222 134380|0.5 134381|0.22222 134382|0.40278 134383|0.38889 134384|0.625 134385|0.43056 134386|0.88889 134387|0.73611 134388|0.43056 134389|0.52778 134390|0.22222 134391|0.77778 134392|0.31944 134393|0.38889 134394|0.75 134395|0.84722 134396|0.75 134397|0.76389 134398|0.44444 134399|0.66667 134400|0.52778 134401|0.69444 134402|0.34722 134403|0.77778 134404|0.30556 134405|0.097222 134406|0.33333 134407|0.22222 134408|0.43056 134409|0.19444 134410|0.70833 134411|0.38889 134412|0.70833 134413|0.875 134414|0.25 134415|0.34722 134416|0.5 134417|0.34722 134418|0.72222 134419|0.70833 134420|0.63889 134421|0.375 134422|0.31944 134423|0.055556 134424|0.55556 134425|0.5 134426|0.47222 134427|0.29167 134428|0.29167 134429|0.5 134430|0.40278 134431|0.56944 134432|0.23611 134433|0.25 134434|0.27778 134435|0.61111 134436|0.27778 134437|0.66667 134438|0.59722 134439|0.51389 134440|0.625 134441|0.19444 134442|0.51389 134443|0.43056 134444|0.69444 134445|0.68056 134446|0.43056 134447|0.875 134448|0.72222 134449|0.44444 134450|0.5 134451|0.55556 134452|0.27778 134453|0.76389 134454|0.5 134455|0.31944 134456|0.79167 134457|0.58333 134458|0.58333 134459|0.13889 134460|0.58333 134461|0.90278 134462|0.5 134463|0.44444 134464|0.70833 134465|0.22222 134466|0.5 134467|0.51389 134468|0.70833 134469|0.65278 134470|0.70833 134471|0.54167 134472|0.68056 134473|0.55556 134474|0.45833 134475|0.5 134476|0.63889 134477|0.54167 134478|0.625 134479|0.81944 134480|0.38889 134481|0.5 134482|0.43056 134483|0.75 134484|0.38889 134485|0.47222 134486|0.58333 134487|0.58333 134488|0.43056 134489|0.81944 134490|0.31944 134491|0.33333 134492|0.75 134493|0.59722 134494|0.52778 134495|0.30556 134496|0.5 134497|0.55556 134498|0.77778 134499|0.5 134500|0.22222 134501|0.375 134502|0.55556 134503|0.875 134504|0.5 134505|0.5 134506|0.20833 134507|0.5 134508|0.61111 134509|0.25 134510|0.41667 134511|0.75 134512|0.43056 134513|0.27778 134514|0.31944 134515|0.51389 134516|0.40278 134517|0.68056 134518|0.25 134519|0.56944 134520|0.44444 134521|0.38889 134522|0.51389 134523|0.59722 134524|0.59722 134525|0.54167 134526|0.23611 134527|0.55556 134528|0.73611 134529|0.72222 134530|0.54167 134531|0.41667 134532|0.79167 134533|0.54167 134534|0.77778 134535|0.26389 134536|0.375 134537|0.48611 134538|0.5 134539|0.55556 134540|0.5 134541|0.81944 134542|0.5 134543|0.75 134544|0.27778 134545|0.61111 134546|0.38889 134547|0.66667 134548|0.5 134549|0.26389 134550|0.5 134551|0.75 134552|0.45833 134553|0.56944 134554|0.56944 134555|0.70833 134556|0.29167 134557|0.097222 134558|0.52778 134559|0.69444 134560|0.41667 134561|0.38889 134562|0.76389 134563|0.72222 134564|0.45833 134565|0.38889 134566|0.55556 134567|0.23611 134568|0.47222 134569|0.13889 134570|0.55556 134571|0.56944 134572|0.27778 134573|0.33333 134574|0.66667 134575|0.5 134576|0.43056 134577|0.41667 134578|0.5 134579|0.23611 134580|0.5 134581|0.66667 134582|0.47222 134583|0.30556 134584|0.55556 134585|0.41667 134586|0.80556 134587|0.56944 134588|0.30556 134589|0.38889 134590|0.38889 134591|0.30556 134592|0.68056 134593|0.25 134594|0.16667 134595|0.65278 134596|0.055556 134597|0.48611 134598|0.38889 134599|0.33333 134600|0.375 134601|0.26389 134602|0.30556 134603|0.38889 134604|0.77778 134605|0.61111 134606|0.375 134607|0.66667 134608|0.54167 134609|0.59722 134610|0.5 134611|0.75 134612|0.19444 134613|0.25 134614|0.83333 134615|0.16667 134616|0.5 134617|0.30556 134618|0.77778 134619|0.5 134620|0.43056 134621|0.54167 134622|0.5 134623|0.45833 134624|0.52778 134625|0.68056 134626|0.52778 134627|0.69444 134628|0.56944 134629|0.72222 134630|0.52778 134631|0.77778 134632|0.30556 134633|0.23611 134634|0.52778 134635|0.29167 134636|0.22222 134637|0.94444 134638|0.41667 134639|0.34722 134640|0.75 134641|0.26389 134642|0.63889 134643|0.30556 134644|0.44444 134645|0.5 134646|0.66667 134647|0.44444 134648|0.20833 134649|0.68056 134650|0.44444 134651|0.40278 134652|0.31944 134653|0.54167 134654|0.5 134655|0.18056 134656|0.5 134657|0.51389 134658|0.61111 134659|0.59722 134660|0.5 134661|0.66667 134662|0.5 134663|0.55556 134664|0.61111 134665|0.5 134666|0.52778 134667|0.56944 134668|0.61111 134669|0.5 134670|0.5 134671|0.5 134672|0.55556 134673|0.59722 134674|0.54167 134675|0.5 134676|0.51389 134677|0.51389 134678|0.5 134679|0.5 134680|0.5 134681|0.44444 134682|0.5 134683|0.55556 134684|0.5 134685|0.47222 134686|0.55556 134687|0.5 134688|0.58333 134689|0.56944 134690|0.5 134691|0.5 134692|0.5 134693|0.61111 134694|0.5 134695|0.5 134696|0.5 134697|0.48611 134698|0.5 134699|0.5 134700|0.5 134701|0.83333 134702|0.5 134703|0.5 134704|0.5 134705|0.61111 134706|0.5 134707|0.5 134708|0.52778 134709|0.5 134710|0.33333 134711|0.5 134712|0.45833 134713|0.5 134714|0.55556 134715|0.5 134716|0.5 134717|0.54167 134718|0.47222 134719|0.69444 134720|0.5 134721|0.5 134722|0.5 134723|0.48611 134724|0.5 134725|0.5 134726|0.5 134727|0.52778 134728|0.52778 134729|0.56944 134730|0.65278 134731|0.66667 134732|0.41667 134733|0.5 134734|0.40278 134735|0.5 134736|0.51389 134737|0.5 134738|0.52778 134739|0.5 134740|0.52778 134741|0.5 134742|0.5 134743|0.40278 134744|0.44444 134745|0.5 134746|0.58333 134747|0.55556 134748|0.68056 134749|0.625 134750|0.5 134751|0.5 134752|0.43056 134753|0.5 134754|0.5 134755|0.56944 134756|0.5 134757|0.66667 134758|0.5 134759|0.47222 134760|0.51389 134761|0.58333 134762|0.5 134763|0.75 134764|0.59722 134765|0.5 134766|0.5 134767|0.44444 134768|0.5 134769|0.47222 134770|0.5 134771|0.58333 134772|0.5 134773|0.61111 134774|0.625 134775|0.72222 134776|0.33333 134777|0.52778 134778|0.47222 134779|0.54167 134780|0.55556 134781|0.5 134782|0.5 134783|0.5 134784|0.61111 134785|0.5 134786|0.34722 134787|0.34722 134788|0.56944 134789|0.70833 134790|0.55556 134791|0.44444 134792|0.56944 134793|0.22222 134794|0.58333 134795|0.52778 134796|0.15278 134797|0.5 134798|0.34722 134799|0.5 134800|0.69444 134801|0.55556 134802|0.26389 134803|0.48611 134804|0.875 134805|0.76389 134806|0.88889 134807|0.51389 134808|0.63889 134809|0.25 134810|0.5 134811|0.61111 134812|0.5 134813|0.51389 134814|0.44444 134815|0.34722 134816|0.33333 134817|0.31944 134818|0.38889 134819|0.23611 134820|0.38889 134821|0.65278 134822|0.41667 134823|0.5 134824|0.5 134825|0.75 134826|0.5 134827|0.58333 134828|0.61111 134829|0.59722 134830|0.55556 134831|0.72222 134832|0.59722 134833|0.52778 134834|0.625 134835|0.43056 134836|0.51389 134837|0.5 134838|0.5 134839|0.48611 134840|0.76389 134841|0.48611 134842|0.47222 134843|0.58333 134844|0.27778 134845|0.26389 134846|0.55556 134847|0.41667 134848|0.625 134849|0.5 134850|0.5 134851|0.5 134852|0.47222 134853|0.61111 134854|0.65278 134855|0.22222 134856|0.38889 134857|0.5 134858|0.5 134859|0.5 134860|0.5 134861|0.38889 134862|0.48611 134863|0.26389 134864|0.43056 134865|0.5 134866|0.45833 134867|0.54167 134868|0.625 134869|0.5 134870|0.27778 134871|0.375 134872|0.43056 134873|0.33333 134874|0.44444 134875|0.16667 134876|0.375 134877|0.52778 134878|0.58333 134879|0.48611 134880|0.59722 134881|0.055556 134882|0.33333 134883|0.5 134884|0.5 134885|0.48611 134886|0.65278 134887|0.5 134888|0.63889 134889|0.59722 134890|0.30556 134891|0.56944 134892|0.72222 134893|0.40278 134894|0.75 134895|0.625 134896|0.40278 134897|0.91667 134898|0.93056 134899|0.65278 134900|0.86111 134901|0.83333 134902|0.59722 134903|0.72222 134904|0.84722 134905|0.79167 134906|0.93056 134907|0.75 134908|0.77778 134909|0.88889 134910|0.83333 134911|0.68056 134912|0.69444 134913|0.90278 134914|0.75 134915|0.73611 134916|0.59722 134917|0.48611 134918|0.5 134919|0.56944 134920|0.26389 134921|0.125 134922|0.44444 134923|0.27778 134924|0.34722 134925|0.31944 134926|0.36111 134927|0.47222 134928|0.23611 134929|0.41667 134930|0.55556 134931|0.26389 134932|0.45833 134933|0.55556 134934|0.56944 134935|0.59722 134936|0.5 134937|0.56944 134938|0.18056 134939|0.5 134940|0.47222 134941|0.40278 134942|0.52778 134943|0.72222 134944|0.55556 134945|0.51389 134946|0.61111 134947|0.43056 134948|0.61111 134949|0.375 134950|0.38889 134951|0.5 134952|0.77778 134953|0.63889 134954|0.40278 134955|0.5 134956|0.55556 134957|0.52778 134958|0.44444 134959|0.45833 134960|0.625 134961|0.70833 134962|0.51389 134963|0.58333 134964|0.77778 134965|0.55556 134966|0.68056 134967|0.5 134968|0.29167 134969|0.38889 134970|0.5 134971|0.5 134972|0.36111 134973|0.30556 134974|0.5 134975|0.72222 134976|0.38889 134977|0.58333 134978|0.5 134979|0.19444 134980|0.5 134981|0.22222 134982|0.51389 134983|0.47222 134984|0.27778 134985|0.41667 134986|0.79167 134987|0.66667 134988|0.51389 134989|0.5 134990|0.54167 134991|0.75 134992|0.70833 134993|0.63889 134994|0.70833 134995|0.72222 134996|0.66667 134997|0.76389 134998|0.5 134999|0.5 135000|0.5 135001|0.38889 135002|0.15278 135003|0.38889 135004|0.54167 135005|0.41667 135006|0.61111 135007|0.34722 135008|0.44444 135009|0.5 135010|0.55556 135011|0.5 135012|0.63889 135013|0.61111 135014|0.61111 135015|0.48611 135016|0.5 135017|0.5 135018|0.55556 135019|0.59722 135020|0.5 135021|0.65278 135022|0.86111 135023|0.5 135024|0.68056 135025|0.68056 135026|0.83333 135027|0.5 135028|0.44444 135029|0.48611 135030|0.45833 135031|0.56944 135032|0.65278 135033|0.625 135034|0.55556 135035|0.48611 135036|0.5 135037|0.56944 135038|0.54167 135039|0.48611 135040|0.61111 135041|0.5 135042|0.33333 135043|0.44444 135044|0.51389 135045|0.58333 135046|0.40278 135047|0.58333 135048|0.5 135049|0.5 135050|0.5 135051|0.55556 135052|0.55556 135053|0.375 135054|0.44444 135055|0.45833 135056|0.58333 135057|0.52778 135058|0.79167 135059|0.5 135060|0.5 135061|0.66667 135062|0.5 135063|0.44444 135064|0.56944 135065|0.51389 135066|0.63889 135067|0.45833 135068|0.44444 135069|0.375 135070|0.66667 135071|0.5 135072|0.80556 135073|0.47222 135074|0.5 135075|0.56944 135076|0.44444 135077|0.48611 135078|0.30556 135079|0.5 135080|0.66667 135081|0.36111 135082|0.5 135083|0.33333 135084|0.22222 135085|0.5 135086|0.45833 135087|0.44444 135088|0.54167 135089|0.55556 135090|0.52778 135091|0.58333 135092|0.66667 135093|0.44444 135094|0.58333 135095|0.55556 135096|0.51389 135097|0.41667 135098|0.5 135099|0.43056 135100|0.69444 135101|0.54167 135102|0.44444 135103|0.38889 135104|0.5 135105|0.36111 135106|0.55556 135107|0.44444 135108|0.5 135109|0.44444 135110|0.34722 135111|0.45833 135112|0.81944 135113|0.5 135114|0.48611 135115|0.5 135116|0.38889 135117|0.72222 135118|0.15278 135119|0.54167 135120|0.51389 135121|0.52778 135122|0.47222 135123|0.069444 135124|0.61111 135125|0.625 135126|0.54167 135127|0.79167 135128|0.45833 135129|0.625 135130|0.38889 135131|0.5 135132|0.52778 135133|0.5 135134|0.5 135135|0.51389 135136|0.44444 135137|0.5 135138|0.625 135139|0.59722 135140|0.58333 135141|0.63889 135142|0.44444 135143|0.18056 135144|0.51389 135145|0.63889 135146|0.61111 135147|0.5 135148|0.58333 135149|0.5 135150|0.56944 135151|0.48611 135152|0.5 135153|0.5 135154|0.33333 135155|0.44444 135156|0.58333 135157|0.5 135158|0.48611 135159|0.58333 135160|0.48611 135161|0.16667 135162|0.66667 135163|0.625 135164|0.375 135165|0.16667 135166|0.15278 135167|0.33333 135168|0.69444 135169|0.5 135170|0.5 135171|0.16667 135172|0.5 135173|0.15278 135174|0.51389 135175|0.58333 135176|0.66667 135177|0.5 135178|0.45833 135179|0.5 135180|0.61111 135181|0.47222 135182|0.5 135183|0.29167 135184|0.44444 135185|0.54167 135186|0.47222 135187|0.54167 135188|0.5 135189|0.61111 135190|0.76389 135191|0.54167 135192|0.45833 135193|0.5 135194|0.56944 135195|0.38889 135196|0.45833 135197|0.5 135198|0.63889 135199|0.52778 135200|0.5 135201|0.59722 135202|0.25 135203|0.625 135204|0.58333 135205|0.22222 135206|0.23611 135207|0.22222 135208|0.68056 135209|0.55556 135210|0.48611 135211|0.55556 135212|0.52778 135213|0.5 135214|0.59722 135215|0.52778 135216|0.5 135217|0.58333 135218|0.54167 135219|0.55556 135220|0.70833 135221|0.66667 135222|0.5 135223|0.5 135224|0.69444 135225|0.80556 135226|0.86111 135227|0.59722 135228|0.5 135229|0.63889 135230|0.51389 135231|0.44444 135232|0.58333 135233|0.58333 135234|0.51389 135235|0.41667 135236|0.44444 135237|0.38889 135238|0.47222 135239|0.70833 135240|0.52778 135241|0.55556 135242|0.58333 135243|0.66667 135244|0.48611 135245|0.48611 135246|0.41667 135247|0.5 135248|0.47222 135249|0.45833 135250|0.79167 135251|0.56944 135252|0.47222 135253|0.5 135254|0.5 135255|0.36111 135256|0.22222 135257|0.34722 135258|0.5 135259|0.625 135260|0.48611 135261|0.5 135262|0.59722 135263|0.31944 135264|0.5 135265|0.45833 135266|0.55556 135267|0.55556 135268|0.58333 135269|0.5 135270|0.54167 135271|0.47222 135272|0.625 135273|0.65278 135274|0.5 135275|0.59722 135276|0.56944 135277|0.5 135278|0.5 135279|0.38889 135280|0.48611 135281|0.75 135282|0.80556 135283|0.70833 135284|0.34722 135285|0.65278 135286|0.72222 135287|0.77778 135288|0.95833 135289|0.83333 135290|0.51389 135291|0.5 135292|0.55556 135293|0.25 135294|0.5 135295|0.79167 135296|0.59722 135297|0.5 135298|0.30556 135299|0.59722 135300|0.20833 135301|0.55556 135302|0.5 135303|0.51389 135304|0.41667 135305|0.31944 135306|0.625 135307|0.51389 135308|0.34722 135309|0.56944 135310|0.68056 135311|0.097222 135312|0.55556 135313|0.41667 135314|0.48611 135315|0.76389 135316|0.30556 135317|0.61111 135318|0.65278 135319|0.54167 135320|0.68056 135321|0.33333 135322|0.5 135323|0.47222 135324|0.86111 135325|0.75 135326|0.76389 135327|0.63889 135328|0.91667 135329|0.75 135330|0.75 135331|0.95833 135332|0.66667 135333|0.83333 135334|0.625 135335|0.69444 135336|0.81944 135337|0.56944 135338|0.61111 135339|0.83333 135340|0.55556 135341|0.47222 135342|0.625 135343|0.63889 135344|0.69444 135345|0.625 135346|0.80556 135347|0.91667 135348|0.11111 135349|0.65278 135350|0.38889 135351|0.66667 135352|0.63889 135353|0.30556 135354|0.625 135355|0.41667 135356|0.68056 135357|0.23611 135358|0.69444 135359|0.40278 135360|0.76389 135361|0.5 135362|0.5 135363|0.51389 135364|0.76389 135365|0.20833 135366|0.65278 135367|0.18056 135368|0.79167 135369|0.76389 135370|0.61111 135371|0.69444 135372|0.13889 135373|0.61111 135374|0.63889 135375|0.72222 135376|0.72222 135377|0.58333 135378|0.55556 135379|0.5 135380|0.45833 135381|0.625 135382|0.5 135383|0.16667 135384|0.48611 135385|0.51389 135386|0.20833 135387|0.5 135388|0.5 135389|0.5 135390|0.79167 135391|0.5 135392|0.52778 135393|0.5 135394|0.93056 135395|0.5 135396|0.58333 135397|0.40278 135398|0.77778 135399|0.30556 135400|0.625 135401|0.72222 135402|0.5 135403|0.375 135404|0.56944 135405|0.47222 135406|0.72222 135407|0.52778 135408|0.20833 135409|0.68056 135410|0.5 135411|0.65278 135412|0.47222 135413|0.625 135414|0.5 135415|0.33333 135416|0.55556 135417|0.59722 135418|0.61111 135419|0.5 135420|0.52778 135421|0.52778 135422|0.63889 135423|0.55556 135424|0.5 135425|0.56944 135426|0.52778 135427|0.5 135428|0.65278 135429|0.47222 135430|0.59722 135431|0.19444 135432|0.625 135433|0.77778 135434|0.77778 135435|0.81944 135436|0.76389 135437|0.77778 135438|0.55556 135439|0.34722 135440|0.5 135441|0.55556 135442|0.58333 135443|0.5 135444|0.5 135445|0.61111 135446|0.52778 135447|0.63889 135448|0.55556 135449|0.45833 135450|0.5 135451|0.55556 135452|0.65278 135453|0.58333 135454|0.73611 135455|0.20833 135456|0.47222 135457|0.51389 135458|0.44444 135459|0.31944 135460|0.52778 135461|0.625 135462|0.61111 135463|0.65278 135464|0.5 135465|0.44444 135466|0.27778 135467|0.66667 135468|0.59722 135469|0.68056 135470|0.63889 135471|0.72222 135472|0.31944 135473|0.5 135474|0.54167 135475|0.54167 135476|0.77778 135477|0.76389 135478|0.76389 135479|0.93056 135480|0.5 135481|0.51389 135482|0.5 135483|0.5 135484|0.23611 135485|0.61111 135486|0.375 135487|0.41667 135488|0.5 135489|0.63889 135490|0.5 135491|0.47222 135492|0.63889 135493|0.61111 135494|0.875 135495|0.38889 135496|0.63889 135497|0.58333 135498|0.66667 135499|0.68056 135500|0.44444 135501|0.52778 135502|0.40278 135503|0.58333 135504|0.72222 135505|0.5 135506|0.58333 135507|0.58333 135508|0.66667 135509|0.51389 135510|0.54167 135511|0.61111 135512|0.70833 135513|0.76389 135514|0.52778 135515|0.5 135516|0.5 135517|0.56944 135518|0.56944 135519|0.44444 135520|0.47222 135521|0.40278 135522|0.47222 135523|0.38889 135524|0.73611 135525|0.52778 135526|0.45833 135527|0.44444 135528|0.84722 135529|0.55556 135530|0.45833 135531|0.83333 135532|0.19444 135533|0.48611 135534|0.44444 135535|0.625 135536|0.52778 135537|0.47222 135538|0.54167 135539|0.55556 135540|0.625 135541|0.69444 135542|0.75 135543|0.84722 135544|0.61111 135545|0.38889 135546|0.47222 135547|0.56944 135548|0.70833 135549|0.33333 135550|0.56944 135551|0.26389 135552|0.38889 135553|0.45833 135554|0.5 135555|0.52778 135556|0.45833 135557|0.5 135558|0.41667 135559|0.56944 135560|0.52778 135561|0.54167 135562|0.51389 135563|0.44444 135564|0.58333 135565|0.5 135566|0.48611 135567|0.77778 135568|0.63889 135569|0.55556 135570|0.18056 135571|0.31944 135572|0.25 135573|0.097222 135574|0.55556 135575|0.69444 135576|0.47222 135577|0.56944 135578|0.48611 135579|0.56944 135580|0.38889 135581|0.58333 135582|0.55556 135583|0.56944 135584|0.61111 135585|0.375 135586|0.66667 135587|0.73611 135588|0.47222 135589|0.68056 135590|0.59722 135591|0.70833 135592|0.80556 135593|0.48611 135594|0.5 135595|0.48611 135596|0.43056 135597|0.56944 135598|0.73611 135599|0.73611 135600|0.77778 135601|0.83333 135602|0.041667 135603|0.54167 135604|0.54167 135605|0.38889 135606|0.51389 135607|0.23611 135608|0.625 135609|0.56944 135610|0.26389 135611|0.38889 135612|0.27778 135613|0.5 135614|0.38889 135615|0.58333 135616|0.18056 135617|0.5 135618|0.51389 135619|0.51389 135620|0.55556 135621|0.65278 135622|0.5 135623|0.5 135624|0.5 135625|0.5 135626|0.44444 135627|0.52778 135628|0.27778 135629|0.5 135630|0.51389 135631|0.44444 135632|0.58333 135633|0.5 135634|0.13889 135635|0.22222 135636|0.22222 135637|0.41667 135638|0.52778 135639|0.27778 135640|0.65278 135641|0.34722 135642|0.36111 135643|0.61111 135644|0.19444 135645|0.30556 135646|0.5 135647|0.25 135648|0.66667 135649|0.55556 135650|0.54167 135651|0.69444 135652|0.63889 135653|0.75 135654|0.5 135655|0.54167 135656|0.375 135657|0.55556 135658|0.66667 135659|0.5 135660|0.5 135661|0.5 135662|0.5 135663|0.47222 135664|0.51389 135665|0.5 135666|0.38889 135667|0.52778 135668|0.5 135669|0.51389 135670|0.5 135671|0.45833 135672|0.375 135673|0.5 135674|0.33333 135675|0.48611 135676|0.61111 135677|0.5 135678|0.48611 135679|0.55556 135680|0.51389 135681|0.51389 135682|0.083333 135683|0.19444 135684|0.52778 135685|0.5 135686|0.5 135687|0.44444 135688|0.79167 135689|0.25 135690|0.51389 135691|0.5 135692|0.41667 135693|0.5 135694|0.5 135695|0.5 135696|0.5 135697|0.47222 135698|0.58333 135699|0.5 135700|0.5 135701|0.52778 135702|0.5 135703|0.68056 135704|0.73611 135705|0.51389 135706|0.38889 135707|0.43056 135708|0.5 135709|0.70833 135710|0.5 135711|0.5 135712|0.66667 135713|0.625 135714|0.5 135715|0.51389 135716|0.5 135717|0.5 135718|0.5 135719|0.48611 135720|0.33333 135721|0.33333 135722|0.68056 135723|0.5 135724|0.5 135725|0.5 135726|0.5 135727|0.5 135728|0.48611 135729|0.625 135730|0.68056 135731|0.61111 135732|0.375 135733|0.66667 135734|0.77778 135735|0.43056 135736|0.26389 135737|0.36111 135738|0.47222 135739|0.34722 135740|0.65278 135741|0.29167 135742|0.58333 135743|0.77778 135744|0.5 135745|0.61111 135746|0.91667 135747|0.55556 135748|0.16667 135749|0.38889 135750|0.69444 135751|0.56944 135752|0.44444 135753|0.72222 135754|0.91667 135755|0.84722 135756|0.58333 135757|0.63889 135758|0.73611 135759|0.76389 135760|0.65278 135761|0.30556 135762|0.69444 135763|0.43056 135764|0 135765|0.45833 135766|0.22222 135767|0.13889 135768|0.069444 135769|0.44444 135770|0.69444 135771|0.61111 135772|0.86111 135773|0.5 135774|0.63889 135775|0.59722 135776|0.55556 135777|0.23611 135778|0.59722 135779|0.56944 135780|0.73611 135781|0.88889 135782|0.90278 135783|0.44444 135784|0.75 135785|0.97222 135786|0.73611 135787|0.83333 135788|0.44444 135789|0.55556 135790|0.48611 135791|0.51389 135792|0.79167 135793|0.18056 135794|0.097222 135795|0.11111 135796|0.19444 135797|0.44444 135798|0.11111 135799|0.55556 135800|0.41667 135801|0.625 135802|0.5 135803|0.625 135804|0.5 135805|0.52778 135806|0.27778 135807|0.44444 135808|0.5 135809|0.68056 135810|0.93056 135811|0.45833 135812|0.26389 135813|0.23611 135814|0.22222 135815|0.44444 135816|0.069444 135817|0.61111 135818|0.5 135819|0.5 135820|0.5 135821|0.43056 135822|0.45833 135823|0.54167 135824|0.63889 135825|0.27778 135826|0.75 135827|0.27778 135828|0.55556 135829|0.375 135830|0.52778 135831|0.45833 135832|0.72222 135833|0.36111 135834|0.51389 135835|0.65278 135836|0.5 135837|0.56944 135838|0.44444 135839|0.52778 135840|0.48611 135841|0.30556 135842|0.5 135843|0.52778 135844|0.31944 135845|0.63889 135846|0.41667 135847|0.43056 135848|0.5 135849|0.63889 135850|0.48611 135851|0.5 135852|0.55556 135853|0.625 135854|0.51389 135855|0.59722 135856|0.61111 135857|0.5 135858|0.51389 135859|0.55556 135860|0.29167 135861|0.81944 135862|0.23611 135863|0.15278 135864|0.23611 135865|0.22222 135866|0.45833 135867|0.5 135868|0.31944 135869|0.51389 135870|0.5 135871|0.69444 135872|0.55556 135873|0.52778 135874|0.61111 135875|0.56944 135876|0.55556 135877|0.61111 135878|0.34722 135879|0.40278 135880|0.59722 135881|0.36111 135882|0.56944 135883|0.5 135884|0.5 135885|0.5 135886|0.5 135887|0.5 135888|0.5 135889|0.61111 135890|0.36111 135891|0.55556 135892|0.26389 135893|0.27778 135894|0.65278 135895|0.47222 135896|0.30556 135897|0.48611 135898|0.69444 135899|0.40278 135900|0.5 135901|0.52778 135902|0.34722 135903|0.51389 135904|0.5 135905|0.36111 135906|0.41667 135907|0.18056 135908|0.47222 135909|0.55556 135910|0.86111 135911|0.66667 135912|0.45833 135913|0.5 135914|0.48611 135915|0.5 135916|0.5 135917|0.5 135918|0.5 135919|0.5 135920|0.5 135921|0.36111 135922|0.5 135923|0.69444 135924|0.5 135925|0.26389 135926|0.55556 135927|0.5 135928|0.55556 135929|0.55556 135930|0.41667 135931|0.73611 135932|0.54167 135933|0.44444 135934|0.5 135935|0.48611 135936|0.5 135937|0.5 135938|0.56944 135939|0.5 135940|0.45833 135941|0.66667 135942|0.58333 135943|0.51389 135944|0.44444 135945|0.58333 135946|0.58333 135947|0.29167 135948|0.5 135949|0.40278 135950|0.097222 135951|0.70833 135952|0.47222 135953|0.52778 135954|0.51389 135955|0.5 135956|0.40278 135957|0.40278 135958|0.5 135959|0.66667 135960|0.44444 135961|0.5 135962|0.72222 135963|0.69444 135964|0.5 135965|0.5 135966|0.33333 135967|0.5 135968|0.26389 135969|0.5 135970|0.51389 135971|0.66667 135972|0.56944 135973|0.52778 135974|0.43056 135975|0.45833 135976|0.5 135977|0.44444 135978|0.44444 135979|0.83333 135980|1 135981|0.88889 135982|0.63889 135983|0.54167 135984|0.80556 135985|0.26389 135986|0.56944 135987|0.81944 135988|0.48611 135989|0.47222 135990|0.5 135991|0.73611 135992|0.5 135993|0.5 135994|0.52778 135995|0.875 135996|0.52778 135997|0.48611 135998|0.20833 135999|0.5 136000|0.25 136001|0.77778 136002|0.20833 136003|0.36111 136004|0.5 136005|0.51389 136006|0.5 136007|0.52778 136008|0.73611 136009|0.5 136010|0.43056 136011|0.44444 136012|0.40278 136013|0.25 136014|0.5 136015|0.5 136016|0.16667 136017|0.47222 136018|0.43056 136019|0.48611 136020|0.61111 136021|0.29167 136022|0.44444 136023|0.72222 136024|0.45833 136025|0.26389 136026|0.5 136027|0.23611 136028|0.38889 136029|0.27778 136030|0.33333 136031|0.16667 136032|0.5 136033|0.5 136034|0.66667 136035|0.61111 136036|0.43056 136037|0.52778 136038|0.51389 136039|0.58333 136040|0.55556 136041|0.55556 136042|0.48611 136043|0.41667 136044|0.54167 136045|0.47222 136046|0.81944 136047|0.59722 136048|0.30556 136049|0.56944 136050|0.38889 136051|0.33333 136052|0.40278 136053|0.51389 136054|0.40278 136055|0.55556 136056|0.34722 136057|0.5 136058|0.52778 136059|0.72222 136060|0.65278 136061|0.48611 136062|0.58333 136063|0.36111 136064|0.54167 136065|0.5 136066|0.55556 136067|0.5 136068|0.29167 136069|0.5 136070|0.63889 136071|0.59722 136072|0.61111 136073|0.54167 136074|0.59722 136075|0.77778 136076|0.15278 136077|0.5 136078|0.5 136079|0.5 136080|0.47222 136081|0.51389 136082|0.59722 136083|0.63889 136084|0.5 136085|0.5 136086|0.5 136087|0.5 136088|0.61111 136089|0.61111 136090|0.58333 136091|0.69444 136092|0.59722 136093|0.47222 136094|0.5 136095|0.5 136096|0.5 136097|0.47222 136098|0.44444 136099|0.5 136100|0.5 136101|0.5 136102|0.29167 136103|0.51389 136104|0.5 136105|0.5 136106|0.5 136107|0.65278 136108|0.68056 136109|0.61111 136110|0.63889 136111|0.90278 136112|0.75 136113|0.45833 136114|0.75 136115|0.55556 136116|0.61111 136117|0.375 136118|0.875 136119|0.56944 136120|0.70833 136121|0.5 136122|0.55556 136123|0.52778 136124|0.5 136125|0.76389 136126|0.56944 136127|0.58333 136128|0.72222 136129|0.44444 136130|0.58333 136131|0.55556 136132|0.5 136133|0.55556 136134|0.65278 136135|0.31944 136136|0.22222 136137|0.5 136138|0.52778 136139|0.52778 136140|0.36111 136141|0.27778 136142|0.66667 136143|0.43056 136144|0.56944 136145|0.63889 136146|0.54167 136147|0.5 136148|0.55556 136149|0.52778 136150|0.72222 136151|0.83333 136152|0.65278 136153|0.79167 136154|0.59722 136155|0.38889 136156|0.54167 136157|0.69444 136158|0.59722 136159|0.56944 136160|0.52778 136161|0.76389 136162|0.5 136163|0.66667 136164|0.73611 136165|0.51389 136166|0.5 136167|0.51389 136168|0.33333 136169|0.5 136170|0.55556 136171|0.63889 136172|0.47222 136173|0.45833 136174|0.5 136175|0.47222 136176|0.80556 136177|0.86111 136178|0.48611 136179|0.44444 136180|0.041667 136181|0.44444 136182|0.38889 136183|0.33333 136184|0.47222 136185|0.52778 136186|0.44444 136187|0.20833 136188|0.40278 136189|0.33333 136190|0.22222 136191|0.26389 136192|0.27778 136193|0.15278 136194|0.36111 136195|0.083333 136196|0.5 136197|0.29167 136198|0.63889 136199|0.63889 136200|0.41667 136201|0.47222 136202|0.84722 136203|0.5 136204|0.61111 136205|0.5 136206|0.66667 136207|0.54167 136208|0.63889 136209|0.5 136210|0.65278 136211|0.48611 136212|0.5 136213|0.5 136214|0.5 136215|0.30556 136216|0.31944 136217|0.51389 136218|0.5 136219|0.055556 136220|0.5 136221|0.13889 136222|0.54167 136223|0.5 136224|0.5 136225|0.5 136226|0.13889 136227|0.34722 136228|0.5 136229|0.48611 136230|0.65278 136231|0.48611 136232|0.59722 136233|0.51389 136234|0.44444 136235|0.63889 136236|0.30556 136237|0.5 136238|0.47222 136239|0.56944 136240|0.48611 136241|0.65278 136242|0.44444 136243|0.58333 136244|0.5 136245|0.29167 136246|0.52778 136247|0.55556 136248|0.47222 136249|0.56944 136250|0.40278 136251|0.5 136252|0.5 136253|0.51389 136254|0.5 136255|0.5 136256|0.34722 136257|0.5 136258|0.40278 136259|0.45833 136260|0.38889 136261|0.55556 136262|0.52778 136263|0.72222 136264|0.48611 136265|0.63889 136266|0.41667 136267|0.59722 136268|0.56944 136269|0.44444 136270|0.59722 136271|0.45833 136272|0.5 136273|0.44444 136274|0.47222 136275|0.36111 136276|0.23611 136277|0.40278 136278|0.5 136279|0.5 136280|0.56944 136281|0.58333 136282|0.5 136283|0.5 136284|0.48611 136285|0.5 136286|0.72222 136287|0.75 136288|0.013889 136289|0.5 136290|0.27778 136291|0.61111 136292|0.27778 136293|0.59722 136294|0.5 136295|0.51389 136296|0.72222 136297|0.5 136298|0.59722 136299|0.40278 136300|0.5 136301|0.55556 136302|0.5 136303|0.51389 136304|0.65278 136305|0.61111 136306|0.79167 136307|0.5 136308|0.55556 136309|0.083333 136310|0.5 136311|0.5 136312|0.51389 136313|0.56944 136314|0.5 136315|0.47222 136316|0.52778 136317|0.52778 136318|0.33333 136319|0.58333 136320|0.5 136321|0.5 136322|0.48611 136323|0.69444 136324|0.625 136325|0.56944 136326|0.55556 136327|0.625 136328|0.76389 136329|0.56944 136330|0.5 136331|0.79167 136332|0.5 136333|0.5 136334|0.29167 136335|0.625 136336|0.61111 136337|0.66667 136338|0.36111 136339|0.5 136340|0.23611 136341|0.63889 136342|0.61111 136343|0.47222 136344|0.5 136345|0.5 136346|0.55556 136347|0.66667 136348|0.44444 136349|0.68056 136350|0.61111 136351|0.097222 136352|0.52778 136353|0.55556 136354|0.79167 136355|0.5 136356|0.5 136357|0.55556 136358|0.54167 136359|0.58333 136360|0.5 136361|0.68056 136362|0.625 136363|0.47222 136364|0.44444 136365|0.5 136366|0.5 136367|0.38889 136368|0.61111 136369|0.51389 136370|0.5 136371|0.26389 136372|0.20833 136373|0.40278 136374|0.66667 136375|0.69444 136376|0.66667 136377|0.63889 136378|0.55556 136379|0.88889 136380|0.54167 136381|0.44444 136382|0.81944 136383|0.5 136384|0.5 136385|0.5 136386|0.5 136387|0.375 136388|0.52778 136389|0.5 136390|0.66667 136391|0.47222 136392|0.5 136393|0.43056 136394|0.5 136395|0.56944 136396|0.47222 136397|0.5 136398|0.5 136399|0.44444 136400|0.20833 136401|0.45833 136402|0.33333 136403|0.31944 136404|0.59722 136405|0.5 136406|0.47222 136407|0.5 136408|0.52778 136409|0.63889 136410|0.41667 136411|0.66667 136412|0.5 136413|0.55556 136414|0.76389 136415|0.68056 136416|0.5 136417|0.38889 136418|0.26389 136419|0.22222 136420|0.52778 136421|0.5 136422|0.47222 136423|0.5 136424|0.5 136425|0.54167 136426|0.63889 136427|0.66667 136428|0.625 136429|0.30556 136430|0.56944 136431|0.30556 136432|0.5 136433|0.625 136434|0.5 136435|0.45833 136436|0.31944 136437|0.47222 136438|0.55556 136439|0.5 136440|0.38889 136441|0.5 136442|0.625 136443|0.5 136444|0.40278 136445|0.66667 136446|0.51389 136447|0.5 136448|0.72222 136449|0.66667 136450|0.45833 136451|0.55556 136452|0.80556 136453|0.41667 136454|0.33333 136455|0.47222 136456|0.73611 136457|0.72222 136458|0.5 136459|0.125 136460|0.72222 136461|0.5 136462|0.48611 136463|0.5 136464|0.59722 136465|0.5 136466|0.5 136467|0.5 136468|0.44444 136469|0.47222 136470|0.5 136471|0.54167 136472|0.41667 136473|0.30556 136474|0.31944 136475|0.5 136476|0.55556 136477|0.63889 136478|0.55556 136479|0.66667 136480|0.47222 136481|0.55556 136482|0.5 136483|0.5 136484|0.5 136485|0.5 136486|0.47222 136487|0.52778 136488|0.75 136489|0.56944 136490|0.5 136491|0.55556 136492|0.5 136493|0.48611 136494|0.61111 136495|0.41667 136496|0.73611 136497|0.5 136498|0.16667 136499|0.65278 136500|0.5 136501|0.5 136502|0.41667 136503|0.5 136504|0.45833 136505|0.54167 136506|0.5 136507|0.43056 136508|0.54167 136509|0.45833 136510|0.54167 136511|0.48611 136512|0.5 136513|0.94444 136514|0.5 136515|0.48611 136516|0.33333 136517|0.34722 136518|0.5 136519|0.56944 136520|0.55556 136521|0.31944 136522|0.16667 136523|0.56944 136524|0.5 136525|0.33333 136526|0.40278 136527|0.375 136528|0.40278 136529|0.75 136530|0.5 136531|0.73611 136532|0.5 136533|0.51389 136534|0.69444 136535|0.36111 136536|0.5 136537|0.55556 136538|0.79167 136539|0.75 136540|0.65278 136541|0.5 136542|0.5 136543|0.63889 136544|0.48611 136545|0.18056 136546|0.29167 136547|0.41667 136548|0.625 136549|0.29167 136550|0.5 136551|0.5 136552|0.5 136553|0.45833 136554|0.48611 136555|0.51389 136556|0.61111 136557|0.48611 136558|0.79167 136559|0.55556 136560|0.5 136561|0.63889 136562|0.44444 136563|0.61111 136564|0.19444 136565|0.52778 136566|0.38889 136567|0.47222 136568|0.38889 136569|0.5 136570|0.55556 136571|0.38889 136572|0.58333 136573|0.33333 136574|0.44444 136575|0.48611 136576|0.41667 136577|0.38889 136578|0.5 136579|0.5 136580|0.41667 136581|0.5 136582|0.52778 136583|0.5 136584|0.5 136585|0.54167 136586|0.5 136587|0.65278 136588|0.72222 136589|0.23611 136590|0.90278 136591|0.91667 136592|0.91667 136593|0.55556 136594|0.5 136595|0.5 136596|0.30556 136597|0.47222 136598|0.5 136599|0.45833 136600|0.5 136601|0.5 136602|0.55556 136603|0.5 136604|0.61111 136605|0.47222 136606|0.52778 136607|0.59722 136608|0.5 136609|0.70833 136610|0.56944 136611|0.5 136612|0.73611 136613|0.5 136614|0.52778 136615|0.40278 136616|0.055556 136617|0.125 136618|0.40278 136619|0.27778 136620|0.16667 136621|0.31944 136622|0.29167 136623|0.16667 136624|0.45833 136625|0.73611 136626|0.77778 136627|0.625 136628|0.79167 136629|0.5 136630|0.40278 136631|0.5 136632|0.5 136633|0.59722 136634|0.125 136635|0.76389 136636|0.59722 136637|0.5 136638|0.40278 136639|0.58333 136640|0.5 136641|0.5 136642|0.5 136643|0.52778 136644|0.5 136645|0.18056 136646|0.45833 136647|0.5 136648|0.5 136649|0.5 136650|0.5 136651|0.5 136652|0.61111 136653|0.5 136654|0.5 136655|0.61111 136656|0.34722 136657|0.5 136658|0.5 136659|0.40278 136660|0.48611 136661|0.44444 136662|0.47222 136663|0.19444 136664|0.5 136665|0.5 136666|0.5 136667|0.5 136668|0.44444 136669|0.63889 136670|0.51389 136671|0.55556 136672|0.47222 136673|0.625 136674|0.51389 136675|0.20833 136676|0.80556 136677|0.58333 136678|0.55556 136679|0.47222 136680|0.61111 136681|0.63889 136682|0.98611 136683|0.63889 136684|0.66667 136685|0.63889 136686|0.5 136687|0.5 136688|0.56944 136689|0.61111 136690|0.5 136691|0.5 136692|0.5 136693|0.5 136694|0.47222 136695|0.5 136696|0.47222 136697|0.52778 136698|0.66667 136699|0.69444 136700|0.43056 136701|0.5 136702|0.73611 136703|0.33333 136704|0.55556 136705|0.68056 136706|0.5 136707|0.27778 136708|0.52778 136709|0.375 136710|0.59722 136711|0.48611 136712|0.45833 136713|0.5 136714|0.59722 136715|0.70833 136716|0.55556 136717|0.20833 136718|0.52778 136719|0.5 136720|0.5 136721|0.48611 136722|0.44444 136723|0.47222 136724|0.47222 136725|0.72222 136726|0.55556 136727|0.54167 136728|0.61111 136729|0.75 136730|0.44444 136731|0.79167 136732|0.26389 136733|0.30556 136734|0.22222 136735|0.70833 136736|0.16667 136737|0.18056 136738|0.15278 136739|0.34722 136740|0.11111 136741|0.43056 136742|0.47222 136743|0.43056 136744|0.75 136745|0.70833 136746|0.55556 136747|0.70833 136748|0.77778 136749|0.47222 136750|0.11111 136751|0.58333 136752|0.875 136753|0.19444 136754|0.41667 136755|0.22222 136756|0.29167 136757|0.5 136758|0.58333 136759|0.375 136760|0.25 136761|0.27778 136762|0.81944 136763|0.33333 136764|0.43056 136765|0.54167 136766|0.48611 136767|0.55556 136768|0.5 136769|0.5 136770|0.51389 136771|0.36111 136772|0.5 136773|0.84722 136774|0.40278 136775|0.5 136776|0.59722 136777|0.48611 136778|0.5 136779|0.5 136780|0.40278 136781|0.45833 136782|0.26389 136783|0.5 136784|0.5 136785|0.5 136786|0.29167 136787|0.48611 136788|0.41667 136789|0.15278 136790|0.34722 136791|0.13889 136792|0.5 136793|0.375 136794|0.27778 136795|0.5 136796|0.5 136797|0.73611 136798|0.54167 136799|0.51389 136800|0.38889 136801|0.84722 136802|0.54167 136803|0.51389 136804|0.5 136805|0.61111 136806|0.38889 136807|0.30556 136808|0.81944 136809|0.75 136810|0.72222 136811|0.375 136812|0.44444 136813|0.51389 136814|0.63889 136815|0.44444 136816|0.41667 136817|0.63889 136818|0.5 136819|0.44444 136820|0.63889 136821|0.34722 136822|0.34722 136823|0.29167 136824|0.33333 136825|0.63889 136826|0.5 136827|0.47222 136828|0.38889 136829|0.25 136830|0.63889 136831|0.5 136832|0.54167 136833|0.65278 136834|0.58333 136835|0.59722 136836|0.5 136837|0.097222 136838|0.47222 136839|0.61111 136840|0.23611 136841|0.54167 136842|0.5 136843|0.33333 136844|0.70833 136845|0.51389 136846|0.38889 136847|0.47222 136848|0.27778 136849|0.5 136850|0.5 136851|0.52778 136852|0.45833 136853|0.29167 136854|0.47222 136855|0.48611 136856|0.58333 136857|0.5 136858|0.44444 136859|0.26389 136860|0.34722 136861|0.41667 136862|0.34722 136863|0.5 136864|0.33333 136865|0.5 136866|0.55556 136867|0.19444 136868|0.44444 136869|0.23611 136870|0.5 136871|0.23611 136872|0.48611 136873|0.61111 136874|0.5 136875|0.5 136876|0.44444 136877|0.375 136878|0.75 136879|0.77778 136880|0.48611 136881|0.16667 136882|0.61111 136883|0.61111 136884|0.83333 136885|0.80556 136886|0.5 136887|0.40278 136888|0.16667 136889|0.61111 136890|0.56944 136891|0.59722 136892|0.5 136893|0.44444 136894|0.41667 136895|0.44444 136896|0.47222 136897|0.48611 136898|0.5 136899|0.5 136900|0.47222 136901|0.27778 136902|0.59722 136903|0.31944 136904|0.44444 136905|0.5 136906|0.52778 136907|0.66667 136908|0.5 136909|0.375 136910|0.59722 136911|0.44444 136912|0.54167 136913|0.66667 136914|0.80556 136915|0.33333 136916|0.125 136917|0.76389 136918|0.33333 136919|0.27778 136920|0.86111 136921|0.72222 136922|0.51389 136923|0.44444 136924|0.625 136925|0.5 136926|0.79167 136927|0.77778 136928|0.5 136929|0.5 136930|0.33333 136931|0.16667 136932|0.5 136933|0.69444 136934|0.69444 136935|0.72222 136936|0.83333 136937|0.84722 136938|0.63889 136939|0.47222 136940|0.58333 136941|0.5 136942|0.5 136943|0.18056 136944|0.61111 136945|0.29167 136946|0.51389 136947|0.81944 136948|0.69444 136949|0.63889 136950|0.47222 136951|0.61111 136952|0.5 136953|0.55556 136954|0.5 136955|0.5 136956|0.84722 136957|0.58333 136958|0.66667 136959|0.72222 136960|0.875 136961|0.31944 136962|0.31944 136963|0.5 136964|0.55556 136965|0.23611 136966|0.22222 136967|0.56944 136968|0.013889 136969|0.625 136970|0.94444 136971|0.94444 136972|0.73611 136973|0.44444 136974|0.45833 136975|0.40278 136976|0.56944 136977|0.75 136978|0.15278 136979|0.5 136980|0.5 136981|0.5 136982|0.65278 136983|0.44444 136984|0.66667 136985|0.31944 136986|0.5 136987|0.34722 136988|0.55556 136989|0.38889 136990|0.33333 136991|0.625 136992|0.79167 136993|0.81944 136994|0.75 136995|0.5 136996|0.54167 136997|0.5 136998|0.5 136999|0.18056 137000|0.5 137001|0.18056 137002|0.375 137003|0.38889 137004|0.25 137005|0.47222 137006|0.63889 137007|0.69444 137008|0.43056 137009|0.5 137010|0.79167 137011|0.5 137012|0.79167 137013|0.72222 137014|0.19444 137015|0.48611 137016|0.56944 137017|0.5 137018|0.48611 137019|0.5 137020|0.36111 137021|0.38889 137022|0.41667 137023|0.66667 137024|0.41667 137025|0.72222 137026|0.5 137027|0.55556 137028|0.52778 137029|0.70833 137030|0.5 137031|0.65278 137032|0.65278 137033|0.66667 137034|0.73611 137035|0.77778 137036|0.61111 137037|0.63889 137038|0.23611 137039|0.77778 137040|0.81944 137041|0.77778 137042|0.5 137043|0.68056 137044|0.36111 137045|0.83333 137046|0.65278 137047|0.52778 137048|0.58333 137049|0.45833 137050|0.75 137051|0.38889 137052|0.5 137053|0.45833 137054|0.63889 137055|0.45833 137056|0.5 137057|0.66667 137058|0.5 137059|0.36111 137060|0.31944 137061|0.125 137062|0.72222 137063|0.70833 137064|0.34722 137065|0.55556 137066|0.22222 137067|0.5 137068|0.52778 137069|0.55556 137070|0.15278 137071|0.40278 137072|0.47222 137073|0.52778 137074|0.34722 137075|0.30556 137076|0.22222 137077|0.18056 137078|0.5 137079|0.51389 137080|0.55556 137081|0.34722 137082|0.5 137083|0.55556 137084|0.625 137085|0.41667 137086|0.61111 137087|0.625 137088|0.34722 137089|0.41667 137090|0.34722 137091|0.55556 137092|0.5 137093|0.55556 137094|0.63889 137095|0.16667 137096|0.375 137097|0.45833 137098|0.44444 137099|0.55556 137100|0.34722 137101|0.45833 137102|0.55556 137103|0.52778 137104|0.31944 137105|0.90278 137106|0.84722 137107|0.19444 137108|0.48611 137109|0.5 137110|0.48611 137111|0.44444 137112|0.5 137113|0.5 137114|0.41667 137115|0.55556 137116|0.61111 137117|0.54167 137118|0.43056 137119|0.55556 137120|0.5 137121|0.59722 137122|0.56944 137123|0.41667 137124|0.27778 137125|0.5 137126|0.5 137127|0.5 137128|0.55556 137129|0.44444 137130|0.77778 137131|0.5 137132|0.5 137133|0.51389 137134|0.5 137135|0.54167 137136|0.5 137137|0.47222 137138|0.48611 137139|0.5 137140|0.5 137141|0.375 137142|0.68056 137143|0.66667 137144|0.55556 137145|0.5 137146|0.83333 137147|0.38889 137148|0.5 137149|0.44444 137150|0.58333 137151|0.61111 137152|0.59722 137153|0.44444 137154|0.27778 137155|0.40278 137156|0.5 137157|0.41667 137158|0.79167 137159|0.625 137160|0.68056 137161|0.51389 137162|0.41667 137163|0.65278 137164|0.55556 137165|0.65278 137166|0.68056 137167|0.73611 137168|0.77778 137169|0.80556 137170|0.69444 137171|0.75 137172|0.83333 137173|0.75 137174|0.68056 137175|0.69444 137176|0.58333 137177|0.33333 137178|0.27778 137179|0.52778 137180|0.20833 137181|0.5 137182|0.51389 137183|0.5 137184|0.5 137185|0.5 137186|0.51389 137187|0.61111 137188|0.58333 137189|0.88889 137190|0.83333 137191|0.875 137192|0.5 137193|0.5 137194|0.61111 137195|0.76389 137196|0.58333 137197|0.52778 137198|0.38889 137199|0.55556 137200|0.41667 137201|0.72222 137202|0.51389 137203|0.5 137204|0.66667 137205|0.5 137206|0.5 137207|0.52778 137208|0.5 137209|0.52778 137210|0.41667 137211|0.55556 137212|0.61111 137213|0.40278 137214|0.31944 137215|0.5 137216|0.5 137217|0.5 137218|0.41667 137219|0.5 137220|0.47222 137221|0.43056 137222|0.55556 137223|0.51389 137224|0.5 137225|0.44444 137226|0.5 137227|0.5 137228|0.5 137229|0.58333 137230|0.58333 137231|0.55556 137232|0.5 137233|0.58333 137234|0.34722 137235|0.61111 137236|0.5 137237|0.5 137238|0.27778 137239|0.59722 137240|0.27778 137241|0.47222 137242|0.23611 137243|0.36111 137244|0.5 137245|0.44444 137246|0.48611 137247|0.5 137248|0.5 137249|0.68056 137250|0.5 137251|0.5 137252|0.84722 137253|0.5 137254|0.625 137255|0.5 137256|0.5 137257|0.5 137258|0.625 137259|0.55556 137260|0.5 137261|0.5 137262|0.51389 137263|0.44444 137264|0.31944 137265|0.5 137266|0.083333 137267|0.44444 137268|0.81944 137269|0.33333 137270|0.63889 137271|0.375 137272|0.47222 137273|0.23611 137274|0.38889 137275|0.5 137276|0.56944 137277|0.66667 137278|0.45833 137279|0.34722 137280|0.31944 137281|0.069444 137282|0.44444 137283|0.40278 137284|0.33333 137285|0.22222 137286|0.375 137287|0.44444 137288|0.31944 137289|0.40278 137290|0.59722 137291|0.44444 137292|0.5 137293|0.5 137294|0.58333 137295|0.48611 137296|0.69444 137297|0.5 137298|0.5 137299|0.5 137300|0.5 137301|0.5 137302|0.5 137303|0.45833 137304|0.44444 137305|0.58333 137306|0.5 137307|0.5 137308|0.5 137309|0.51389 137310|0.5 137311|0.34722 137312|0.25 137313|0.5 137314|0.52778 137315|0.52778 137316|0.5 137317|0.69444 137318|0.5 137319|0.58333 137320|0.5 137321|0.19444 137322|0.48611 137323|0.56944 137324|0.63889 137325|0.625 137326|0.5 137327|0.48611 137328|0.34722 137329|0.65278 137330|0.29167 137331|0.5 137332|0.43056 137333|0.56944 137334|0.70833 137335|0.52778 137336|0.48611 137337|0.56944 137338|0.55556 137339|0.5 137340|0.68056 137341|0.77778 137342|0.70833 137343|0.5 137344|0.56944 137345|0.23611 137346|0.625 137347|0.44444 137348|0.43056 137349|0.76389 137350|0.63889 137351|0.68056 137352|0.73611 137353|0.44444 137354|0.5 137355|0.63889 137356|0.72222 137357|0.625 137358|0.61111 137359|0.31944 137360|0.44444 137361|0.63889 137362|0.48611 137363|0.75 137364|0.375 137365|0.625 137366|0.041667 137367|0.5 137368|0.40278 137369|0.38889 137370|0.63889 137371|0.40278 137372|0.44444 137373|0.56944 137374|0.55556 137375|0.5 137376|0.5 137377|0.5 137378|0.45833 137379|0.52778 137380|0.5 137381|0.40278 137382|0.5 137383|0.56944 137384|0.91667 137385|0.44444 137386|0.55556 137387|0.55556 137388|0.5 137389|0.44444 137390|0.40278 137391|0.59722 137392|0.45833 137393|0.84722 137394|0.5 137395|0.52778 137396|0.66667 137397|0.66667 137398|0.58333 137399|0.56944 137400|0.30556 137401|0.61111 137402|0.22222 137403|0.51389 137404|0.76389 137405|0.86111 137406|0.72222 137407|0.69444 137408|0.27778 137409|0.5 137410|0.52778 137411|0.31944 137412|0.61111 137413|0.76389 137414|0.23611 137415|0.52778 137416|0.33333 137417|0.5 137418|0.25 137419|0.18056 137420|0.63889 137421|0.72222 137422|0.56944 137423|0.52778 137424|0.52778 137425|0.5 137426|0.51389 137427|0.5 137428|0.48611 137429|0.40278 137430|0.5 137431|0.65278 137432|0.5 137433|0.38889 137434|0.72222 137435|0.59722 137436|0.51389 137437|0.61111 137438|0.16667 137439|0.44444 137440|0.59722 137441|0.5 137442|0.61111 137443|0.61111 137444|0.54167 137445|0.45833 137446|0.54167 137447|0.625 137448|0.56944 137449|0.55556 137450|0.61111 137451|0.81944 137452|0.48611 137453|0.61111 137454|0.63889 137455|0.29167 137456|0.70833 137457|0.58333 137458|0.13889 137459|0.31944 137460|0.56944 137461|0.36111 137462|0.63889 137463|0.47222 137464|0.44444 137465|0.5 137466|0.5 137467|0.47222 137468|0.68056 137469|0.52778 137470|0.5 137471|0.5 137472|0.5 137473|0.41667 137474|0.58333 137475|0.52778 137476|0.54167 137477|0.70833 137478|0.58333 137479|0.56944 137480|0.55556 137481|0.5 137482|0.5 137483|0.27778 137484|0.29167 137485|0.5 137486|0.5 137487|0.47222 137488|0.25 137489|0.51389 137490|0.69444 137491|0.5 137492|0.68056 137493|0.55556 137494|0.33333 137495|0.20833 137496|0.5 137497|0.5 137498|0.45833 137499|0.38889 137500|0.5 137501|0.55556 137502|0.73611 137503|0.73611 137504|0.44444 137505|0.5 137506|0.625 137507|0.44444 137508|0.55556 137509|0.63889 137510|0.36111 137511|0.38889 137512|0.27778 137513|0.84722 137514|0.34722 137515|0.5 137516|0.70833 137517|0.63889 137518|0.38889 137519|0.48611 137520|0.58333 137521|0.58333 137522|0.48611 137523|0.5 137524|0.65278 137525|0.52778 137526|0.13889 137527|0.73611 137528|0.52778 137529|0.45833 137530|0.66667 137531|0.5 137532|0.5 137533|0.56944 137534|0.5 137535|0.61111 137536|0.5 137537|0.34722 137538|0.76389 137539|0.54167 137540|0.20833 137541|0.5 137542|0.15278 137543|0.5 137544|0.69444 137545|0.59722 137546|0.31944 137547|0.5 137548|0.54167 137549|0.5 137550|0.5 137551|0.41667 137552|0.51389 137553|0.61111 137554|0.52778 137555|0.77778 137556|0.29167 137557|0.75 137558|0.5 137559|0.66667 137560|0.5 137561|0.77778 137562|0.33333 137563|0.43056 137564|0.55556 137565|0.59722 137566|0.36111 137567|0.45833 137568|0.59722 137569|0.45833 137570|0.5 137571|0.48611 137572|0.77778 137573|0.5 137574|0.45833 137575|0.69444 137576|0.55556 137577|0.43056 137578|0.68056 137579|0.59722 137580|0.375 137581|0.69444 137582|0.51389 137583|0.5 137584|0.45833 137585|0.38889 137586|0.23611 137587|0.23611 137588|0.59722 137589|0.65278 137590|0.55556 137591|0.56944 137592|0.5 137593|0.5 137594|0.81944 137595|0.47222 137596|0.34722 137597|0.5 137598|0.51389 137599|0.375 137600|0.41667 137601|0.43056 137602|0.52778 137603|0.65278 137604|0.61111 137605|0.69444 137606|0.58333 137607|0.59722 137608|0.55556 137609|0.48611 137610|0.56944 137611|0.77778 137612|0.38889 137613|0.51389 137614|0.55556 137615|0.52778 137616|0.48611 137617|0.44444 137618|0.33333 137619|0.72222 137620|0.5 137621|0.66667 137622|0.58333 137623|0.55556 137624|0.625 137625|0.58333 137626|0.52778 137627|0.25 137628|0.22222 137629|0.15278 137630|0.5 137631|0.36111 137632|0.77778 137633|0.5 137634|0.5 137635|0.45833 137636|0.41667 137637|0.58333 137638|0.38889 137639|0.31944 137640|0.31944 137641|0.66667 137642|0.56944 137643|0.72222 137644|0.5 137645|0.81944 137646|0.51389 137647|0.51389 137648|0.65278 137649|0.33333 137650|0.58333 137651|0.5 137652|0.48611 137653|0.375 137654|0.70833 137655|0.5 137656|0.65278 137657|0.625 137658|0.55556 137659|0.63889 137660|0.5 137661|0.5 137662|0.40278 137663|0.61111 137664|0.63889 137665|0.44444 137666|0.58333 137667|0.5 137668|0.5 137669|0.58333 137670|0.59722 137671|0.56944 137672|0.66667 137673|0.19444 137674|0.069444 137675|0.59722 137676|0.19444 137677|0.41667 137678|0.44444 137679|0.48611 137680|0.27778 137681|0.48611 137682|0.5 137683|0.51389 137684|0.75 137685|0.27778 137686|0.77778 137687|0.40278 137688|0.5 137689|0.5 137690|0.19444 137691|0.31944 137692|0.5 137693|0.56944 137694|0.29167 137695|0.52778 137696|0.59722 137697|0.45833 137698|0.55556 137699|0.70833 137700|0.51389 137701|0.5 137702|0.5 137703|0.51389 137704|0.73611 137705|0.51389 137706|0.63889 137707|0.80556 137708|0.63889 137709|0.47222 137710|0.45833 137711|0.55556 137712|0.5 137713|0.47222 137714|0.5 137715|0.58333 137716|0.34722 137717|0.36111 137718|0.52778 137719|0.65278 137720|0.66667 137721|0.52778 137722|0.5 137723|0.31944 137724|0.375 137725|0.61111 137726|0.52778 137727|0.55556 137728|0.69444 137729|0.30556 137730|0.5 137731|0.5 137732|0.48611 137733|0.54167 137734|0.5 137735|0.72222 137736|0.27778 137737|0.25 137738|0.48611 137739|0.47222 137740|0.59722 137741|0.47222 137742|0.58333 137743|0.44444 137744|0.52778 137745|0.68056 137746|0.43056 137747|0.56944 137748|0.51389 137749|0.5 137750|0.36111 137751|0.61111 137752|0.45833 137753|0.52778 137754|0.34722 137755|0.5 137756|0.38889 137757|0.5 137758|0.5 137759|0.76389 137760|0.31944 137761|0.36111 137762|0.5 137763|0.5 137764|0.5 137765|0.66667 137766|0.47222 137767|0.44444 137768|0.66667 137769|0.625 137770|0.5 137771|0.58333 137772|0.5 137773|0.5 137774|0.55556 137775|0.38889 137776|0.5 137777|0.51389 137778|0.52778 137779|0.61111 137780|0.56944 137781|0.47222 137782|0.51389 137783|0.45833 137784|0.55556 137785|0.20833 137786|0.41667 137787|0.43056 137788|0.69444 137789|0.5 137790|0.5 137791|0.59722 137792|0.45833 137793|0.5 137794|0.47222 137795|0.43056 137796|0.5 137797|0.76389 137798|0.625 137799|0.5 137800|0.52778 137801|0.69444 137802|0.13889 137803|0.55556 137804|0.61111 137805|0.375 137806|0.43056 137807|0.5 137808|0.72222 137809|0.73611 137810|0.52778 137811|0.5 137812|0.5 137813|0.16667 137814|0.375 137815|0.5 137816|0.55556 137817|0.5 137818|0.44444 137819|0.625 137820|0.61111 137821|0.52778 137822|0.38889 137823|0.875 137824|0.5 137825|0.72222 137826|0.55556 137827|0.51389 137828|0.45833 137829|0.5 137830|0.75 137831|0.59722 137832|0.5 137833|0.55556 137834|0.38889 137835|0.94444 137836|0.77778 137837|0.63889 137838|0.48611 137839|0.61111 137840|0.48611 137841|0.5 137842|0.58333 137843|0.33333 137844|0.56944 137845|0.36111 137846|0.55556 137847|0.73611 137848|0.55556 137849|0.625 137850|0.43056 137851|0.5 137852|0.5 137853|0.625 137854|0.31944 137855|0.5 137856|0.44444 137857|0.51389 137858|0.36111 137859|0.125 137860|0.15278 137861|0.5 137862|0.52778 137863|0.5 137864|0.72222 137865|0.58333 137866|0.36111 137867|0.45833 137868|0.33333 137869|0.23611 137870|0.69444 137871|0.5 137872|0.5 137873|0.51389 137874|0.5 137875|0.56944 137876|0.56944 137877|0.48611 137878|0.44444 137879|0.5 137880|0.40278 137881|0.52778 137882|0.81944 137883|0.55556 137884|0.125 137885|0.54167 137886|0.56944 137887|0.51389 137888|0.11111 137889|0.41667 137890|0.45833 137891|0.44444 137892|0.70833 137893|0.58333 137894|0.41667 137895|0.59722 137896|0.40278 137897|0.55556 137898|0.47222 137899|0.55556 137900|0.33333 137901|0.59722 137902|0.5 137903|0.5 137904|0.5 137905|0.38889 137906|0.65278 137907|0.5 137908|0.30556 137909|0.43056 137910|0.5 137911|0.88889 137912|0.625 137913|0.18056 137914|0.26389 137915|0.73611 137916|0.5 137917|0.52778 137918|0.36111 137919|0.47222 137920|0.59722 137921|0.43056 137922|0.45833 137923|0.44444 137924|0.63889 137925|0.51389 137926|0.5 137927|0.47222 137928|0.5 137929|0.5 137930|0.65278 137931|0.5 137932|0.5 137933|0.56944 137934|0.34722 137935|0.625 137936|0.66667 137937|0.75 137938|0.54167 137939|0.59722 137940|0.5 137941|0.36111 137942|0.86111 137943|0.76389 137944|0.43056 137945|0.5 137946|0.38889 137947|0.11111 137948|0.5 137949|0.55556 137950|0.5 137951|0.55556 137952|0.56944 137953|0.375 137954|0.59722 137955|0.61111 137956|0.5 137957|0.69444 137958|0.5 137959|0.34722 137960|0.43056 137961|0.5 137962|0.72222 137963|0.33333 137964|0.61111 137965|0.48611 137966|0.625 137967|0.5 137968|0.44444 137969|0.44444 137970|0.44444 137971|0.5 137972|0.5 137973|0.31944 137974|0.5 137975|0.52778 137976|0.59722 137977|0.5 137978|0.5 137979|0.25 137980|0.48611 137981|0.52778 137982|0.59722 137983|0.5 137984|0.45833 137985|0.5 137986|0.54167 137987|0.58333 137988|0.77778 137989|0.65278 137990|0.51389 137991|0.45833 137992|0.76389 137993|0.40278 137994|0.59722 137995|0.59722 137996|0.51389 137997|0.55556 137998|0.76389 137999|0.54167 138000|0.51389 138001|0.625 138002|0.5 138003|0.73611 138004|0.56944 138005|0.41667 138006|0.75 138007|0.52778 138008|0.54167 138009|0.47222 138010|0.23611 138011|0.44444 138012|0.55556 138013|0.58333 138014|0.44444 138015|0.5 138016|0.63889 138017|0.43056 138018|0.5 138019|0.83333 138020|0.5 138021|0.33333 138022|0.30556 138023|0.48611 138024|0.56944 138025|0.52778 138026|0.52778 138027|0.52778 138028|0.56944 138029|0.51389 138030|0.79167 138031|0.61111 138032|0.65278 138033|0.5 138034|0.45833 138035|0.5 138036|0.5 138037|0.5 138038|0.5 138039|0.41667 138040|0.69444 138041|0.80556 138042|0.38889 138043|0.20833 138044|0.375 138045|0.47222 138046|0.5 138047|0.40278 138048|0.43056 138049|0.83333 138050|0.54167 138051|0.5 138052|0.5 138053|0.5 138054|0.77778 138055|0.15278 138056|0.20833 138057|0.25 138058|0.55556 138059|0.30556 138060|0.47222 138061|0.11111 138062|0.26389 138063|0.11111 138064|0.36111 138065|0.38889 138066|0.79167 138067|0.22222 138068|0.44444 138069|0.22222 138070|0.5 138071|0.51389 138072|0.27778 138073|0.54167 138074|0.31944 138075|0.52778 138076|0.56944 138077|0.43056 138078|0.34722 138079|0.5 138080|0.48611 138081|0.25 138082|0.29167 138083|0.27778 138084|0.33333 138085|0.375 138086|0.54167 138087|0.29167 138088|0.40278 138089|0.41667 138090|0.51389 138091|0.56944 138092|0.86111 138093|0.51389 138094|0.30556 138095|0.43056 138096|0.41667 138097|0.70833 138098|0.36111 138099|0.52778 138100|0.41667 138101|0.51389 138102|0.36111 138103|0.13889 138104|0.26389 138105|0.29167 138106|0.055556 138107|0.19444 138108|0.15278 138109|0.44444 138110|0.18056 138111|0.15278 138112|0.19444 138113|0.27778 138114|0.125 138115|0.38889 138116|0.375 138117|0.69444 138118|0.23611 138119|0.30556 138120|0.40278 138121|0.34722 138122|0.26389 138123|0.19444 138124|0.55556 138125|0.54167 138126|0.27778 138127|0.20833 138128|0.19444 138129|0.22222 138130|0.41667 138131|0.26389 138132|0.16667 138133|0.20833 138134|0.45833 138135|0.36111 138136|0.41667 138137|0.56944 138138|0.51389 138139|0.27778 138140|0.20833 138141|0.38889 138142|0.45833 138143|0.18056 138144|0.22222 138145|0.083333 138146|0.26389 138147|0.33333 138148|0.30556 138149|0.34722 138150|0.45833 138151|0.36111 138152|0.22222 138153|0.38889 138154|0.47222 138155|0.41667 138156|0.625 138157|0.54167 138158|0.48611 138159|0.30556 138160|0.44444 138161|0.34722 138162|0.45833 138163|0.22222 138164|0.43056 138165|0.29167 138166|0.27778 138167|0.5 138168|0.43056 138169|0.31944 138170|0.54167 138171|0.61111 138172|0.43056 138173|0.38889 138174|0.38889 138175|0.43056 138176|0.44444 138177|0.68056 138178|0.5 138179|0.52778 138180|0.58333 138181|0.55556 138182|0.77778 138183|0.51389 138184|0.63889 138185|0.52778 138186|0.54167 138187|0.52778 138188|0.5 138189|0.48611 138190|0.33333 138191|0.31944 138192|0.88889 138193|0.61111 138194|0.38889 138195|0.47222 138196|0.51389 138197|0.65278 138198|0.45833 138199|0.58333 138200|0.38889 138201|0.34722 138202|0.33333 138203|0.38889 138204|0.22222 138205|0.31944 138206|0.33333 138207|0.61111 138208|0.5 138209|0.54167 138210|0.45833 138211|0.44444 138212|0.16667 138213|0.27778 138214|0.55556 138215|0.63889 138216|0.5 138217|0.5 138218|0.51389 138219|0.83333 138220|0.81944 138221|0.5 138222|0.55556 138223|0.5 138224|0.5 138225|0.73611 138226|0.59722 138227|0.66667 138228|0.375 138229|0.55556 138230|0.52778 138231|0.47222 138232|0.54167 138233|0.5 138234|0.51389 138235|0.72222 138236|0.625 138237|0.79167 138238|0.52778 138239|0.54167 138240|0.44444 138241|0.51389 138242|0.625 138243|0.54167 138244|0.83333 138245|0.31944 138246|0.61111 138247|0.45833 138248|0.31944 138249|0.5 138250|0.25 138251|0.45833 138252|0.52778 138253|0.54167 138254|0.36111 138255|0.61111 138256|0.5 138257|0.56944 138258|0.55556 138259|0.77778 138260|0.68056 138261|0.38889 138262|0.73611 138263|0.72222 138264|0.66667 138265|0.72222 138266|0.54167 138267|0.72222 138268|0.5 138269|0.625 138270|0.72222 138271|0.75 138272|0.5 138273|0.58333 138274|0.51389 138275|0.51389 138276|0.36111 138277|0.54167 138278|0.30556 138279|0.40278 138280|0.18056 138281|0.27778 138282|0.61111 138283|0.5 138284|0.41667 138285|0.5 138286|0.72222 138287|0.40278 138288|0.26389 138289|0.5 138290|0.44444 138291|0.51389 138292|0.54167 138293|0.66667 138294|0.59722 138295|0.375 138296|0.375 138297|0.375 138298|0.33333 138299|0.58333 138300|0.68056 138301|0.61111 138302|0.65278 138303|0.625 138304|0.5 138305|0.63889 138306|0.51389 138307|0.61111 138308|0.5 138309|0.55556 138310|0.5 138311|0.38889 138312|0.69444 138313|0.52778 138314|0.30556 138315|0.5 138316|0.38889 138317|0.65278 138318|0.59722 138319|0.47222 138320|0.52778 138321|0.80556 138322|0.5 138323|0.33333 138324|0.48611 138325|0.625 138326|0.55556 138327|0.5 138328|0.5 138329|0.61111 138330|0.63889 138331|0.30556 138332|0.30556 138333|0.30556 138334|0.56944 138335|0.45833 138336|0.23611 138337|0.26389 138338|0.52778 138339|0.56944 138340|0.59722 138341|0.27778 138342|0.56944 138343|0.56944 138344|0.59722 138345|0.69444 138346|0.5 138347|0.5 138348|0.26389 138349|0.625 138350|0.70833 138351|0.76389 138352|0.41667 138353|0.30556 138354|0.5 138355|0.5 138356|0.5 138357|0.52778 138358|0.38889 138359|0.44444 138360|0.069444 138361|0.47222 138362|0.52778 138363|0.5 138364|0.79167 138365|0.65278 138366|0.75 138367|0.80556 138368|0.76389 138369|0.66667 138370|0.59722 138371|0.66667 138372|0.69444 138373|0.59722 138374|0.5 138375|0.72222 138376|0.45833 138377|0.58333 138378|0.72222 138379|0.58333 138380|0.76389 138381|0.66667 138382|0.66667 138383|0.73611 138384|0.79167 138385|0.65278 138386|0.59722 138387|0.84722 138388|0.875 138389|0.93056 138390|0.875 138391|0.45833 138392|0.875 138393|0.94444 138394|0.69444 138395|0.38889 138396|0.45833 138397|0.66667 138398|0.76389 138399|0.51389 138400|0.5 138401|0.48611 138402|0.47222 138403|0.5 138404|0.43056 138405|0.38889 138406|0.65278 138407|0.56944 138408|0.38889 138409|0.59722 138410|0.5 138411|0.5 138412|0.44444 138413|0.80556 138414|0.69444 138415|0.61111 138416|0.51389 138417|0.38889 138418|0.54167 138419|0.72222 138420|0.61111 138421|0.80556 138422|0.55556 138423|0.70833 138424|0.625 138425|0.83333 138426|0.55556 138427|0.56944 138428|0.125 138429|0.54167 138430|0.56944 138431|0.41667 138432|0.25 138433|0.069444 138434|0.52778 138435|0.48611 138436|0.30556 138437|0.26389 138438|0.31944 138439|0.51389 138440|0.65278 138441|0.5 138442|0.65278 138443|0.68056 138444|0.48611 138445|0.81944 138446|0.45833 138447|0.52778 138448|0.5 138449|0.5 138450|0.20833 138451|0.5 138452|0.73611 138453|0.5 138454|0.59722 138455|0.58333 138456|0.73611 138457|0.47222 138458|0.27778 138459|0.5 138460|0.63889 138461|0.5 138462|0.38889 138463|0.56944 138464|0.59722 138465|0.59722 138466|0.47222 138467|0.45833 138468|0.65278 138469|0.54167 138470|0.43056 138471|0.23611 138472|0.45833 138473|0.5 138474|0.40278 138475|0.30556 138476|0.23611 138477|0.34722 138478|0.27778 138479|0.22222 138480|0.5 138481|0.45833 138482|0.5 138483|0.5 138484|0.52778 138485|0.55556 138486|0.47222 138487|0.59722 138488|0.56944 138489|0.36111 138490|0.33333 138491|0.44444 138492|0.44444 138493|0.18056 138494|0.069444 138495|0.30556 138496|0.375 138497|0.48611 138498|0.33333 138499|0.5 138500|0.59722 138501|0.5 138502|0.45833 138503|0.36111 138504|0.25 138505|0.20833 138506|0.22222 138507|0.43056 138508|0.20833 138509|0.52778 138510|0.40278 138511|0.16667 138512|0.43056 138513|0.79167 138514|0.76389 138515|0.73611 138516|0.26389 138517|0.70833 138518|0.33333 138519|0.43056 138520|0.41667 138521|0.44444 138522|0.51389 138523|0.47222 138524|0.61111 138525|0.44444 138526|0.51389 138527|0.51389 138528|0.70833 138529|0.15278 138530|0.45833 138531|0.22222 138532|0.25 138533|0.38889 138534|0.45833 138535|0.61111 138536|0.31944 138537|0.5 138538|0.56944 138539|0.26389 138540|0.19444 138541|0.5 138542|0.43056 138543|0.52778 138544|0.56944 138545|0.40278 138546|0.40278 138547|0.11111 138548|0.375 138549|0.80556 138550|0.16667 138551|0.5 138552|0.58333 138553|0.59722 138554|0.75 138555|0.63889 138556|0.70833 138557|0.70833 138558|0.5 138559|0.77778 138560|0.625 138561|0.47222 138562|0.86111 138563|0.125 138564|0.55556 138565|0.29167 138566|0.34722 138567|0.44444 138568|0.56944 138569|0.63889 138570|0.63889 138571|0.27778 138572|0.27778 138573|0.75 138574|0.54167 138575|0.66667 138576|0.625 138577|0.43056 138578|0.76389 138579|0.43056 138580|0.11111 138581|0.55556 138582|0.5 138583|0.52778 138584|0.56944 138585|0.52778 138586|0.65278 138587|0.76389 138588|0.75 138589|0.44444 138590|0.5 138591|0.27778 138592|0.43056 138593|0.5 138594|0.72222 138595|0.54167 138596|0.5 138597|0.61111 138598|0.58333 138599|0.36111 138600|0.30556 138601|0.375 138602|0.33333 138603|0.20833 138604|0.76389 138605|0.30556 138606|0.27778 138607|0.47222 138608|0.45833 138609|0.45833 138610|0.54167 138611|0.55556 138612|0.45833 138613|0.51389 138614|0.56944 138615|0.38889 138616|0.33333 138617|0.52778 138618|0.27778 138619|0.41667 138620|0.5 138621|0.36111 138622|0.18056 138623|0.33333 138624|0.36111 138625|0.56944 138626|0.5 138627|0.43056 138628|0.45833 138629|0.47222 138630|0.61111 138631|0.375 138632|0.69444 138633|0.44444 138634|0.80556 138635|0.68056 138636|0.43056 138637|0.44444 138638|0.5 138639|0.22222 138640|0.5 138641|0.43056 138642|0.43056 138643|0.27778 138644|0.375 138645|0.36111 138646|0.51389 138647|0.16667 138648|0.20833 138649|0.23611 138650|0.68056 138651|0.29167 138652|0.30556 138653|0.34722 138654|0.44444 138655|0.38889 138656|0.55556 138657|0.65278 138658|0.54167 138659|0.58333 138660|0.72222 138661|0.76389 138662|0.45833 138663|0.44444 138664|0.44444 138665|0.55556 138666|0.52778 138667|0.27778 138668|0.083333 138669|0.5 138670|0.45833 138671|0.56944 138672|0.48611 138673|0.52778 138674|0.88889 138675|0.86111 138676|0.54167 138677|0.77778 138678|0.76389 138679|0.22222 138680|0.19444 138681|0.25 138682|0.36111 138683|0.18056 138684|0.29167 138685|0.125 138686|0.16667 138687|0.5 138688|0.48611 138689|0.56944 138690|0.31944 138691|0.5 138692|0.5 138693|0.25 138694|0.52778 138695|0.61111 138696|0.55556 138697|0.33333 138698|0.23611 138699|0.36111 138700|0.38889 138701|0.19444 138702|0.70833 138703|0.38889 138704|0.18056 138705|0.26389 138706|0.26389 138707|0.48611 138708|0.51389 138709|0.27778 138710|0.43056 138711|0.45833 138712|0.33333 138713|0.63889 138714|0.5 138715|0.25 138716|0.16667 138717|0.79167 138718|0.625 138719|0.5 138720|0.625 138721|0.63889 138722|0.58333 138723|0.61111 138724|0.5 138725|0.66667 138726|0.43056 138727|0.5 138728|0.22222 138729|0.5 138730|0.77778 138731|0.40278 138732|0.23611 138733|0.30556 138734|0.5 138735|0.40278 138736|0.29167 138737|0.59722 138738|0.5 138739|0.72222 138740|0.11111 138741|0.55556 138742|0.79167 138743|0.5 138744|0.65278 138745|0.61111 138746|0.55556 138747|0.65278 138748|0.33333 138749|0.40278 138750|0.88889 138751|0.80556 138752|0.58333 138753|0.91667 138754|0.41667 138755|0.38889 138756|0.58333 138757|0.375 138758|0.36111 138759|0.27778 138760|0.44444 138761|0.41667 138762|0.16667 138763|0.34722 138764|0.47222 138765|0.26389 138766|0.16667 138767|0.45833 138768|0.34722 138769|0.47222 138770|0.44444 138771|0.44444 138772|0.5 138773|0.38889 138774|0.11111 138775|0.027778 138776|0.11111 138777|0.48611 138778|0.38889 138779|0.36111 138780|0.47222 138781|0.30556 138782|0.20833 138783|0.27778 138784|0.59722 138785|0.5 138786|0.375 138787|0.52778 138788|0.5 138789|0.54167 138790|0.75 138791|0.77778 138792|0.61111 138793|0.81944 138794|0.63889 138795|0.5 138796|0.27778 138797|0.5 138798|0.5 138799|0.54167 138800|0.59722 138801|0.38889 138802|0.55556 138803|0.47222 138804|0.68056 138805|0.5 138806|0.52778 138807|0.34722 138808|0.25 138809|0.30556 138810|0.52778 138811|0.61111 138812|0.79167 138813|0.5 138814|0.58333 138815|0.625 138816|0.54167 138817|0.5 138818|0.29167 138819|0.29167 138820|0.68056 138821|0.47222 138822|0.48611 138823|0.56944 138824|0.5 138825|0.5 138826|0.44444 138827|0.47222 138828|0.77778 138829|0.83333 138830|0.65278 138831|0.5 138832|0.41667 138833|0.54167 138834|0.5 138835|0.43056 138836|0.29167 138837|0.59722 138838|0.23611 138839|0.44444 138840|0.44444 138841|0.625 138842|0.5 138843|0.5 138844|0.54167 138845|0.5 138846|0.5 138847|0.55556 138848|0.63889 138849|0.51389 138850|0.45833 138851|0.61111 138852|0.625 138853|0.58333 138854|0.5 138855|0.5 138856|0.66667 138857|0.5 138858|0.77778 138859|0.20833 138860|0.33333 138861|0.41667 138862|0.31944 138863|0.52778 138864|0.47222 138865|0.47222 138866|0.5 138867|0.48611 138868|0.59722 138869|0.5 138870|0.40278 138871|0.61111 138872|0.58333 138873|0.75 138874|0.79167 138875|0.5 138876|0.55556 138877|0.625 138878|0.375 138879|0.44444 138880|0.54167 138881|0.5 138882|0.43056 138883|0.55556 138884|0.47222 138885|0.19444 138886|0.33333 138887|0.5 138888|0.44444 138889|0.625 138890|0.47222 138891|0.58333 138892|0.54167 138893|0.5 138894|0 138895|0.47222 138896|0.58333 138897|0.18056 138898|0.38889 138899|0.59722 138900|0.65278 138901|0.45833 138902|0.43056 138903|0.43056 138904|0.5 138905|0.375 138906|0.38889 138907|0.41667 138908|0.47222 138909|0.5 138910|0.52778 138911|0.47222 138912|0.44444 138913|0.66667 138914|0.5 138915|0.45833 138916|0.58333 138917|0.27778 138918|0.65278 138919|0.59722 138920|0.65278 138921|0.65278 138922|0.5 138923|0.5 138924|0.25 138925|0.375 138926|0.16667 138927|0.40278 138928|0.38889 138929|0.54167 138930|0.38889 138931|0.73611 138932|0.66667 138933|0.5 138934|0.69444 138935|0.81944 138936|0.72222 138937|0.43056 138938|0.5 138939|0.625 138940|0.51389 138941|0.45833 138942|0.5 138943|0.5 138944|0.5 138945|0.26389 138946|0.55556 138947|0.38889 138948|0.5 138949|0.58333 138950|0.73611 138951|0.45833 138952|0.38889 138953|0.5 138954|0.91667 138955|0.625 138956|0.72222 138957|0.65278 138958|0.43056 138959|0.29167 138960|0.34722 138961|0.5 138962|0.30556 138963|0.27778 138964|0.81944 138965|0.75 138966|0.83333 138967|0.84722 138968|0.875 138969|0.73611 138970|0.80556 138971|0.75 138972|0.69444 138973|0.52778 138974|0.48611 138975|0.41667 138976|0.75 138977|0.45833 138978|0.40278 138979|0.40278 138980|0.19444 138981|0.76389 138982|0.59722 138983|0.83333 138984|0.81944 138985|0.73611 138986|0.44444 138987|0.63889 138988|0.5 138989|0.34722 138990|0.55556 138991|0.79167 138992|0.83333 138993|0.41667 138994|0.52778 138995|0.41667 138996|0.375 138997|0.38889 138998|0.48611 138999|0.61111 139000|0.54167 139001|0.63889 139002|0.58333 139003|0.58333 139004|0.73611 139005|0.88889 139006|0.625 139007|0.81944 139008|0.63889 139009|0.77778 139010|0.65278 139011|0.80556 139012|0.83333 139013|0.77778 139014|0.86111 139015|0.72222 139016|0.5 139017|0.5 139018|0.66667 139019|0.63889 139020|0.70833 139021|0.80556 139022|0.5 139023|0.58333 139024|0.94444 139025|0.81944 139026|0.81944 139027|0.45833 139028|0.375 139029|0.13889 139030|0.5 139031|0.5 139032|0.5 139033|0.38889 139034|0.18056 139035|0.22222 139036|0.41667 139037|0.11111 139038|0.48611 139039|0.5 139040|0.47222 139041|0.5 139042|0.5 139043|0.47222 139044|0.5 139045|0.52778 139046|0.5 139047|0.5 139048|0.44444 139049|0.5 139050|0.44444 139051|0.5 139052|0.77778 139053|0.76389 139054|0.44444 139055|0.5 139056|0.5 139057|0.52778 139058|0.5 139059|0.51389 139060|0.27778 139061|0.625 139062|0.61111 139063|0.44444 139064|0.43056 139065|0.5 139066|0.5 139067|0.5 139068|0.5 139069|0.79167 139070|0.66667 139071|0.65278 139072|0.48611 139073|0.80556 139074|0.90278 139075|0.88889 139076|0.5 139077|0.41667 139078|0.5 139079|0.69444 139080|0.59722 139081|0.52778 139082|0.66667 139083|0.41667 139084|0.5 139085|0.70833 139086|0.31944 139087|0.55556 139088|0.5 139089|0.36111 139090|0.36111 139091|0.875 139092|0.70833 139093|0.72222 139094|0.77778 139095|0.44444 139096|0.61111 139097|0.65278 139098|0.80556 139099|0.81944 139100|0.65278 139101|0.76389 139102|0.90278 139103|0.81944 139104|0.5 139105|0.58333 139106|0.34722 139107|0.68056 139108|0.44444 139109|0.5 139110|0.625 139111|0.54167 139112|0.30556 139113|0.30556 139114|0.18056 139115|0.5 139116|0.5 139117|0.70833 139118|0.70833 139119|0.5 139120|0.77778 139121|0.52778 139122|0.5 139123|0.27778 139124|0.26389 139125|0.5 139126|0.77778 139127|0.58333 139128|0.58333 139129|0.55556 139130|0.5 139131|0.51389 139132|0.65278 139133|0.68056 139134|0.54167 139135|0.61111 139136|0.44444 139137|0.47222 139138|0.43056 139139|0.44444 139140|0.52778 139141|0.5 139142|0.25 139143|0.47222 139144|0.48611 139145|0.069444 139146|0.41667 139147|0.5 139148|0.51389 139149|0.66667 139150|0.54167 139151|0.22222 139152|0.5 139153|0.55556 139154|0.55556 139155|0.69444 139156|0.23611 139157|0.48611 139158|0.48611 139159|0.58333 139160|0.52778 139161|0.52778 139162|0.73611 139163|0.38889 139164|0.29167 139165|0.26389 139166|0.27778 139167|0.36111 139168|0.30556 139169|0.38889 139170|0.44444 139171|0.055556 139172|0.5 139173|0.26389 139174|0.5 139175|0.63889 139176|0.40278 139177|0.72222 139178|0.5 139179|0.41667 139180|0.51389 139181|0.56944 139182|0.66667 139183|0.5 139184|0.5 139185|0.38889 139186|0.55556 139187|0.40278 139188|0.55556 139189|0.55556 139190|0.54167 139191|0.45833 139192|0.58333 139193|0.58333 139194|0.40278 139195|0.54167 139196|0.36111 139197|0.58333 139198|0.5 139199|0.43056 139200|0.48611 139201|0.58333 139202|0.5 139203|0.52778 139204|0.52778 139205|0.5 139206|0.43056 139207|0.44444 139208|0.5 139209|0.45833 139210|0.44444 139211|0.375 139212|0.72222 139213|0.72222 139214|0.5 139215|0.36111 139216|0.72222 139217|0.75 139218|0.58333 139219|0.43056 139220|0.66667 139221|0.66667 139222|0.69444 139223|0.375 139224|0.31944 139225|0.45833 139226|0.5 139227|0.33333 139228|0.56944 139229|0.625 139230|0.56944 139231|0.66667 139232|0.52778 139233|0.5 139234|0.44444 139235|0.16667 139236|0.86111 139237|0.86111 139238|0.5 139239|0.73611 139240|0.66667 139241|0.25 139242|0.29167 139243|0.41667 139244|0.38889 139245|0.36111 139246|0.81944 139247|0.80556 139248|0.65278 139249|0.44444 139250|0.38889 139251|0.88889 139252|0.75 139253|0.61111 139254|0.61111 139255|0.41667 139256|0.54167 139257|0.36111 139258|0.48611 139259|0.5 139260|0.59722 139261|0.68056 139262|0.23611 139263|0.18056 139264|0.5 139265|0.44444 139266|0.79167 139267|0.54167 139268|0.70833 139269|0.11111 139270|0.15278 139271|0.36111 139272|0.70833 139273|0.58333 139274|0.43056 139275|0.59722 139276|0.44444 139277|0.45833 139278|0.30556 139279|0.29167 139280|0.27778 139281|0.44444 139282|0.26389 139283|0.69444 139284|0.70833 139285|0.70833 139286|0.83333 139287|0.83333 139288|0.45833 139289|0.48611 139290|0.56944 139291|0.70833 139292|0.48611 139293|0.51389 139294|0.56944 139295|0.5 139296|0.19444 139297|0.25 139298|0.43056 139299|0.29167 139300|0.68056 139301|0.38889 139302|0.5 139303|0.48611 139304|0.65278 139305|0.61111 139306|0.61111 139307|0.54167 139308|0.47222 139309|0.51389 139310|0.5 139311|0.69444 139312|0.40278 139313|0.65278 139314|0.625 139315|0.5 139316|0.5 139317|0.51389 139318|0.375 139319|0.26389 139320|0.44444 139321|0.45833 139322|0.44444 139323|0.58333 139324|0.76389 139325|0.86111 139326|0.52778 139327|0.44444 139328|0.27778 139329|0.30556 139330|0.51389 139331|0.5 139332|0.5 139333|0.5 139334|0.5 139335|0.44444 139336|0.34722 139337|0.5 139338|0.30556 139339|0.34722 139340|0.31944 139341|0.5 139342|0.58333 139343|0.47222 139344|0.5 139345|0.41667 139346|0.625 139347|0.54167 139348|0.26389 139349|0.40278 139350|0.80556 139351|0.61111 139352|0.66667 139353|0.26389 139354|0.25 139355|0.58333 139356|0.63889 139357|0.72222 139358|0.36111 139359|0.61111 139360|0.36111 139361|0.56944 139362|0.40278 139363|0.45833 139364|0.19444 139365|0.45833 139366|0.27778 139367|0.44444 139368|0.55556 139369|0.55556 139370|0.22222 139371|0.43056 139372|0.5 139373|0.40278 139374|0.59722 139375|0.63889 139376|0.45833 139377|0.65278 139378|0.43056 139379|0.5 139380|0.80556 139381|0.5 139382|0.5 139383|0.5 139384|0.13889 139385|0.33333 139386|0.58333 139387|0.36111 139388|0.31944 139389|0.72222 139390|0.38889 139391|0.68056 139392|0.59722 139393|0.73611 139394|0.43056 139395|0.5 139396|0.27778 139397|0.68056 139398|0.41667 139399|0.5 139400|0.61111 139401|0.54167 139402|0.5 139403|0.5 139404|0.43056 139405|0.5 139406|0.54167 139407|0.58333 139408|0.72222 139409|0.5 139410|0.41667 139411|0.56944 139412|0.54167 139413|0.65278 139414|0.52778 139415|0.34722 139416|0.11111 139417|0.23611 139418|0.63889 139419|0.41667 139420|0.40278 139421|0.48611 139422|0.41667 139423|0.36111 139424|0.45833 139425|0.61111 139426|0.15278 139427|0.38889 139428|0.40278 139429|0.52778 139430|0.36111 139431|0.58333 139432|0.70833 139433|0.65278 139434|0.33333 139435|0.52778 139436|0.38889 139437|0.41667 139438|0.43056 139439|0.34722 139440|0.23611 139441|0.52778 139442|0.38889 139443|0.5 139444|0.44444 139445|0.52778 139446|0.47222 139447|0.44444 139448|0.45833 139449|0.54167 139450|0.69444 139451|0.625 139452|0.52778 139453|0.44444 139454|0.44444 139455|0.36111 139456|0.27778 139457|0.80556 139458|0.90278 139459|0.81944 139460|0.66667 139461|0.59722 139462|0.56944 139463|0.68056 139464|0.69444 139465|0.58333 139466|0.68056 139467|0.45833 139468|0.31944 139469|0.75 139470|0.94444 139471|0.70833 139472|0.72222 139473|0.83333 139474|0.83333 139475|0.76389 139476|0.72222 139477|0.88889 139478|0.86111 139479|0.75 139480|0.72222 139481|0.75 139482|0.54167 139483|0.68056 139484|0.59722 139485|0.54167 139486|0.52778 139487|0.68056 139488|0.5 139489|0.5 139490|0.38889 139491|0.5 139492|0.5 139493|0.5 139494|0.5 139495|0.083333 139496|0.65278 139497|0.5 139498|0.5 139499|0.55556 139500|0.54167 139501|0.55556 139502|0.5 139503|0.51389 139504|0.52778 139505|0.55556 139506|0.30556 139507|0.13889 139508|0.31944 139509|0.68056 139510|0.47222 139511|0.55556 139512|0.5 139513|0.51389 139514|0.5 139515|0.55556 139516|0.15278 139517|0.47222 139518|0.38889 139519|0.40278 139520|0.27778 139521|0.5 139522|0.54167 139523|0.69444 139524|0.5 139525|0.56944 139526|0.47222 139527|0.55556 139528|0.72222 139529|0.48611 139530|0.47222 139531|0.31944 139532|0.68056 139533|0.5 139534|0.15278 139535|0.61111 139536|0.30556 139537|0.33333 139538|0.31944 139539|0.31944 139540|0.48611 139541|0.68056 139542|0.27778 139543|0.55556 139544|0.375 139545|0.44444 139546|0.5 139547|0.66667 139548|0.5 139549|0.80556 139550|0.5 139551|0.63889 139552|0.47222 139553|0.40278 139554|0.5 139555|0.43056 139556|0.33333 139557|0.45833 139558|0.40278 139559|0.75 139560|0.47222 139561|0.75 139562|0.66667 139563|0.875 139564|0.72222 139565|0.55556 139566|0.31944 139567|0.5 139568|0.33333 139569|0.80556 139570|0.40278 139571|0.41667 139572|0.56944 139573|0.55556 139574|0.5 139575|0.61111 139576|0.625 139577|0.58333 139578|0.56944 139579|0.38889 139580|0.44444 139581|0.44444 139582|0.38889 139583|0.55556 139584|0.44444 139585|0.18056 139586|0.58333 139587|0.55556 139588|0.51389 139589|0.44444 139590|0.69444 139591|0.44444 139592|0.36111 139593|0.43056 139594|0.5 139595|0.26389 139596|0.5 139597|0.47222 139598|0.5 139599|0.43056 139600|0.33333 139601|0.31944 139602|0.59722 139603|0.31944 139604|0.51389 139605|0.41667 139606|0.51389 139607|0.31944 139608|0.5 139609|0.33333 139610|0.5 139611|0.61111 139612|0.34722 139613|0.47222 139614|0.58333 139615|0.5 139616|0.5 139617|0.52778 139618|0.5 139619|0.44444 139620|0.61111 139621|0.5 139622|0.52778 139623|0.65278 139624|0.61111 139625|0.5 139626|0.55556 139627|0.29167 139628|0.56944 139629|0.40278 139630|0.45833 139631|0.51389 139632|0.38889 139633|0.55556 139634|0.55556 139635|0.33333 139636|0.5 139637|0.38889 139638|0.45833 139639|0.70833 139640|0.48611 139641|0.63889 139642|0.43056 139643|0.44444 139644|0.61111 139645|0.5 139646|0.77778 139647|0.25 139648|0.44444 139649|0.44444 139650|0.5 139651|0.44444 139652|0.52778 139653|0.76389 139654|0.59722 139655|0.22222 139656|0.52778 139657|0.20833 139658|0.75 139659|0.63889 139660|0.375 139661|0.38889 139662|0.29167 139663|0.56944 139664|0.61111 139665|0.5 139666|0.58333 139667|0.30556 139668|0.5 139669|0.70833 139670|0.58333 139671|0.69444 139672|0.41667 139673|0.65278 139674|0.30556 139675|0.41667 139676|0.52778 139677|0.73611 139678|0.59722 139679|0.61111 139680|0.75 139681|0.27778 139682|0.72222 139683|0.61111 139684|0.76389 139685|0.47222 139686|0.36111 139687|0.5 139688|0.38889 139689|0.66667 139690|0.52778 139691|0.41667 139692|0.5 139693|0.55556 139694|0.66667 139695|0.51389 139696|0.48611 139697|0.55556 139698|0.63889 139699|0.41667 139700|0.77778 139701|0.55556 139702|0.5 139703|0.5 139704|0.5 139705|0.51389 139706|0.5 139707|0.45833 139708|0.5 139709|0.44444 139710|0.38889 139711|0.40278 139712|0.5 139713|0.43056 139714|0.5 139715|0.63889 139716|0.66667 139717|0.5 139718|0.66667 139719|0.72222 139720|0.43056 139721|0.52778 139722|0.5 139723|0.44444 139724|0.5 139725|0.44444 139726|0.45833 139727|0.30556 139728|0.52778 139729|0.59722 139730|0.22222 139731|0.40278 139732|0.22222 139733|0.097222 139734|0.5 139735|0.23611 139736|0.27778 139737|0.56944 139738|0.5 139739|0.33333 139740|0.61111 139741|0.45833 139742|0.43056 139743|0.56944 139744|0.31944 139745|0.43056 139746|0.5 139747|0.5 139748|0.52778 139749|0.54167 139750|0.5 139751|0.54167 139752|0.5 139753|0.45833 139754|0.48611 139755|0.63889 139756|0.5 139757|0.097222 139758|0.56944 139759|0.55556 139760|0.52778 139761|0.63889 139762|0.5 139763|0.70833 139764|0.66667 139765|0.375 139766|0.47222 139767|0.61111 139768|0.38889 139769|0.65278 139770|0.27778 139771|0.47222 139772|0.20833 139773|0.84722 139774|0.72222 139775|0.58333 139776|0.27778 139777|0.47222 139778|0.52778 139779|0.5 139780|0.44444 139781|0.5 139782|0.59722 139783|0.58333 139784|0.5 139785|0.38889 139786|0.55556 139787|0.52778 139788|0.5 139789|0.5 139790|0.55556 139791|0.38889 139792|0.27778 139793|0.51389 139794|0.31944 139795|0.48611 139796|0.5 139797|0.65278 139798|0.63889 139799|0.5 139800|0.56944 139801|0.30556 139802|0.5 139803|0.45833 139804|0.54167 139805|0.375 139806|0.75 139807|0.40278 139808|0.54167 139809|0.69444 139810|0.81944 139811|0.5 139812|0.625 139813|0.45833 139814|0.83333 139815|0.5 139816|0.55556 139817|0.51389 139818|0.63889 139819|0.5 139820|0.45833 139821|0.51389 139822|0.47222 139823|0.40278 139824|0.41667 139825|0.5 139826|0.5 139827|0.5 139828|0.59722 139829|0.58333 139830|0.52778 139831|0.52778 139832|0.58333 139833|0.56944 139834|0.36111 139835|0.70833 139836|0.70833 139837|0.72222 139838|0.097222 139839|0.55556 139840|0.68056 139841|0.59722 139842|0.61111 139843|0.54167 139844|0.25 139845|0.48611 139846|0.33333 139847|0.34722 139848|0.44444 139849|0.52778 139850|0.51389 139851|0.625 139852|0.61111 139853|0.5 139854|0.625 139855|0.5 139856|0.58333 139857|0.81944 139858|0.55556 139859|0.59722 139860|0.41667 139861|0.5 139862|0.93056 139863|0.68056 139864|0.5 139865|0.61111 139866|0.66667 139867|0.66667 139868|0.61111 139869|0.58333 139870|0.77778 139871|0.625 139872|0.875 139873|0.61111 139874|0.48611 139875|0.43056 139876|0.29167 139877|0.083333 139878|0.51389 139879|0.56944 139880|0.61111 139881|0.22222 139882|0.36111 139883|0.76389 139884|0.75 139885|0.44444 139886|0.625 139887|0.41667 139888|0.5 139889|0.38889 139890|0.30556 139891|0.45833 139892|0.56944 139893|0.44444 139894|0.52778 139895|0.75 139896|0.70833 139897|0.069444 139898|0.34722 139899|0.5 139900|0.75 139901|0.79167 139902|0.51389 139903|0.56944 139904|0.27778 139905|0.44444 139906|0.65278 139907|0.72222 139908|0.83333 139909|0.19444 139910|0.59722 139911|0.22222 139912|0.69444 139913|0.75 139914|0.75 139915|0.75 139916|0.70833 139917|0.80556 139918|0.65278 139919|0.11111 139920|0.25 139921|0.45833 139922|0.63889 139923|0.625 139924|0.79167 139925|0.43056 139926|0.75 139927|0.625 139928|0.625 139929|0.66667 139930|0.61111 139931|0.5 139932|0.20833 139933|0.097222 139934|0.36111 139935|0.38889 139936|0.59722 139937|0.5 139938|0.59722 139939|0.65278 139940|0.27778 139941|0.23611 139942|0.55556 139943|0.56944 139944|0.70833 139945|0.51389 139946|0.79167 139947|0.77778 139948|0.16667 139949|0.055556 139950|0.52778 139951|0.22222 139952|0.54167 139953|0.43056 139954|0.5 139955|0.75 139956|0.61111 139957|0.73611 139958|0.20833 139959|0.68056 139960|0.65278 139961|0.83333 139962|0.5 139963|0.43056 139964|0.29167 139965|0.72222 139966|0.56944 139967|0.33333 139968|0.33333 139969|0.48611 139970|0.59722 139971|0.59722 139972|0.79167 139973|0.5 139974|0.44444 139975|0.27778 139976|0.45833 139977|0.58333 139978|0.70833 139979|0.54167 139980|0.61111 139981|0.59722 139982|0.45833 139983|0.40278 139984|0.125 139985|0.25 139986|0.56944 139987|0.58333 139988|0.65278 139989|0.61111 139990|0.63889 139991|0.56944 139992|0.48611 139993|0.48611 139994|0.5 139995|0.15278 139996|0.375 139997|0.41667 139998|0.625 139999|0.56944 140000|0.76389 140001|0.80556 140002|0.5 140003|0.61111 140004|0.5 140005|0.63889 140006|0.72222 140007|0.44444 140008|0.5 140009|0.52778 140010|0.43056 140011|0.75 140012|0.56944 140013|0.48611 140014|0.66667 140015|0.55556 140016|0.48611 140017|0.41667 140018|0.47222 140019|0.56944 140020|0.63889 140021|0.45833 140022|0.5 140023|0.47222 140024|0.72222 140025|0.54167 140026|0.51389 140027|0.5 140028|0.5 140029|0.5 140030|0.5 140031|0.61111 140032|0.5 140033|0.55556 140034|0.45833 140035|0.66667 140036|0.5 140037|0.54167 140038|0.5 140039|0.43056 140040|0.34722 140041|0.5 140042|0.5 140043|0.5 140044|0.65278 140045|0.625 140046|0.68056 140047|0.66667 140048|0.47222 140049|0.75 140050|0.47222 140051|0.52778 140052|0.33333 140053|0.625 140054|0.54167 140055|0.61111 140056|0.51389 140057|0.59722 140058|0.51389 140059|0.59722 140060|0.44444 140061|0.26389 140062|0.5 140063|0.52778 140064|0.38889 140065|0.5 140066|0.58333 140067|0.54167 140068|0.68056 140069|0.56944 140070|0.11111 140071|0.54167 140072|0.86111 140073|0.59722 140074|0.875 140075|0.63889 140076|0.54167 140077|0.43056 140078|0.23611 140079|0.59722 140080|0.5 140081|0.72222 140082|0.59722 140083|0.58333 140084|0.38889 140085|0.55556 140086|0.625 140087|0.70833 140088|0.5 140089|0.25 140090|0.61111 140091|0.59722 140092|0.22222 140093|0.5 140094|0.31944 140095|0.38889 140096|0.73611 140097|0.5 140098|0.54167 140099|0.69444 140100|0.80556 140101|0.34722 140102|0.75 140103|0.55556 140104|0.56944 140105|0.52778 140106|0.68056 140107|0.5 140108|0.76389 140109|0.70833 140110|0.45833 140111|0.56944 140112|0.48611 140113|0.5 140114|0.5 140115|0.56944 140116|0.30556 140117|0.44444 140118|0.375 140119|0.56944 140120|0.5 140121|0.38889 140122|0.70833 140123|0.61111 140124|0.54167 140125|0.31944 140126|0.34722 140127|0.76389 140128|0.5 140129|0.52778 140130|0.70833 140131|0.83333 140132|0.5 140133|0.65278 140134|0.5 140135|0.77778 140136|0.56944 140137|0.56944 140138|0.375 140139|0.44444 140140|0.72222 140141|0.45833 140142|0.33333 140143|0.68056 140144|0.66667 140145|0.18056 140146|0.54167 140147|0.61111 140148|0.41667 140149|0.61111 140150|0.5 140151|0.52778 140152|0.45833 140153|0.61111 140154|0.73611 140155|0.51389 140156|0.81944 140157|0.81944 140158|0.69444 140159|0.66667 140160|0.69444 140161|0.30556 140162|0.88889 140163|0.77778 140164|0.54167 140165|0.73611 140166|0.61111 140167|0.55556 140168|0.72222 140169|0.5 140170|0.52778 140171|0.54167 140172|0.81944 140173|0.5 140174|0.54167 140175|0.44444 140176|0.41667 140177|0.33333 140178|0.83333 140179|0.58333 140180|0.38889 140181|0.5 140182|0.58333 140183|0.68056 140184|0.54167 140185|0.55556 140186|0.61111 140187|0.44444 140188|0.61111 140189|0.58333 140190|0.44444 140191|0.5 140192|0.38889 140193|0.56944 140194|0.27778 140195|0.36111 140196|0.56944 140197|0.5 140198|0.5 140199|0.625 140200|0.79167 140201|0.5 140202|0.86111 140203|0.65278 140204|0.54167 140205|0.16667 140206|0.5 140207|0.66667 140208|0.44444 140209|0.5 140210|0.44444 140211|0.625 140212|0.51389 140213|0.72222 140214|0.55556 140215|0.5 140216|0.5 140217|0.36111 140218|0.33333 140219|0.34722 140220|0.66667 140221|0.625 140222|0.70833 140223|0.40278 140224|0.58333 140225|0.69444 140226|0.5 140227|0.52778 140228|0.43056 140229|0.5 140230|0.70833 140231|0.33333 140232|0.88889 140233|0.80556 140234|0.66667 140235|0.38889 140236|0.58333 140237|0.83333 140238|0.88889 140239|0.47222 140240|0.66667 140241|0.43056 140242|0.5 140243|0.625 140244|0.54167 140245|0.51389 140246|0.5 140247|0.47222 140248|0.5 140249|0.56944 140250|0.51389 140251|0.54167 140252|0.5 140253|0.38889 140254|0.73611 140255|0.55556 140256|0.51389 140257|0.68056 140258|0.55556 140259|0.375 140260|0.56944 140261|0.27778 140262|0.48611 140263|0.52778 140264|0.5 140265|0.375 140266|0.5 140267|0.76389 140268|0.44444 140269|0.34722 140270|0.54167 140271|0.54167 140272|0.29167 140273|0.5 140274|0.52778 140275|0.58333 140276|0.51389 140277|0.5 140278|0.30556 140279|0.79167 140280|0.63889 140281|0.5 140282|0.5 140283|0.27778 140284|0.61111 140285|0.18056 140286|0.069444 140287|0.83333 140288|0.51389 140289|0.16667 140290|0.625 140291|0.66667 140292|0.73611 140293|0.22222 140294|0.44444 140295|0.22222 140296|0.68056 140297|0.59722 140298|0.625 140299|1 140300|0.56944 140301|0.38889 140302|0.43056 140303|0.51389 140304|0.13889 140305|0.33333 140306|0.41667 140307|0.5 140308|0.48611 140309|0.27778 140310|0.44444 140311|0.61111 140312|0.81944 140313|0.41667 140314|0.70833 140315|0.48611 140316|0.34722 140317|0.54167 140318|0.98611 140319|0.52778 140320|0.69444 140321|0.33333 140322|0.73611 140323|0.41667 140324|0.75 140325|0.43056 140326|0.45833 140327|0.52778 140328|0.5 140329|0.56944 140330|0.47222 140331|0.47222 140332|0.5 140333|0.72222 140334|0.44444 140335|0.31944 140336|0.54167 140337|0.5 140338|0.66667 140339|0.5 140340|0.79167 140341|0.76389 140342|0.22222 140343|0.80556 140344|0.15278 140345|0.30556 140346|0.44444 140347|0.45833 140348|0.44444 140349|0.23611 140350|0.5 140351|0.47222 140352|0.61111 140353|0.52778 140354|0.45833 140355|0.36111 140356|0.52778 140357|0.41667 140358|0.52778 140359|0.47222 140360|0.52778 140361|0.51389 140362|0.61111 140363|0.56944 140364|0.5 140365|0.5 140366|0.77778 140367|0.47222 140368|0.59722 140369|0.73611 140370|0.76389 140371|0.80556 140372|0.84722 140373|0.84722 140374|0.70833 140375|0.86111 140376|0.79167 140377|0.76389 140378|0.76389 140379|0.52778 140380|0.76389 140381|0.84722 140382|0.88889 140383|0.86111 140384|0.76389 140385|0.55556 140386|0.61111 140387|0.36111 140388|0.38889 140389|0.70833 140390|0.80556 140391|0.55556 140392|0.48611 140393|0.45833 140394|0.5 140395|0.5 140396|0.5 140397|0.5 140398|0.66667 140399|0.625 140400|0.59722 140401|0.11111 140402|0.66667 140403|0.5 140404|0.52778 140405|0.52778 140406|0.55556 140407|0.68056 140408|0.55556 140409|0.36111 140410|0.55556 140411|0.48611 140412|0.59722 140413|0.65278 140414|0.51389 140415|0.44444 140416|0.5 140417|0.52778 140418|0.58333 140419|0.70833 140420|0.22222 140421|0.45833 140422|0.33333 140423|0.80556 140424|0.59722 140425|0.59722 140426|0.51389 140427|0.44444 140428|0.5 140429|0.5 140430|0.59722 140431|0.55556 140432|0.52778 140433|0.5 140434|0.43056 140435|0.33333 140436|0.61111 140437|0.48611 140438|0.5 140439|0.38889 140440|0.26389 140441|0.72222 140442|0.56944 140443|0.76389 140444|0.68056 140445|0.69444 140446|0.86111 140447|0.79167 140448|0.73611 140449|0.61111 140450|0.65278 140451|0.59722 140452|0.69444 140453|0.5 140454|0.36111 140455|0.63889 140456|0.54167 140457|0.52778 140458|0.5 140459|0.625 140460|0.75 140461|0.5 140462|0.59722 140463|0.56944 140464|0.5 140465|0.5 140466|0.56944 140467|0.65278 140468|0.58333 140469|0.83333 140470|0.23611 140471|0.25 140472|0.52778 140473|0.5 140474|0.5 140475|0.43056 140476|0.25 140477|0.26389 140478|0.15278 140479|0.125 140480|0.29167 140481|0.027778 140482|0.11111 140483|0 140484|0.44444 140485|0.54167 140486|0.375 140487|0.31944 140488|0.83333 140489|0.72222 140490|0.70833 140491|0.66667 140492|0.65278 140493|0.70833 140494|0.72222 140495|0.69444 140496|0.84722 140497|0.68056 140498|0.69444 140499|0 140500|0.29167 140501|0.75 140502|0.80556 140503|0.66667 140504|0.61111 140505|0.875 140506|0.56944 140507|0.75 140508|0.68056 140509|0.72222 140510|0.5 140511|0.56944 140512|0.47222 140513|0.5 140514|0.41667 140515|0.5 140516|0.65278 140517|0.36111 140518|0.33333 140519|0.51389 140520|0.40278 140521|0.45833 140522|0.54167 140523|0.5 140524|0.51389 140525|0.5 140526|0.45833 140527|0.18056 140528|0.43056 140529|0.48611 140530|0.66667 140531|0.19444 140532|0.56944 140533|0.72222 140534|0.18056 140535|0.041667 140536|0.5 140537|0.083333 140538|0.375 140539|0.54167 140540|0.83333 140541|0.75 140542|0.375 140543|0.43056 140544|0.43056 140545|0.56944 140546|0.59722 140547|0.47222 140548|0.30556 140549|0.36111 140550|0.33333 140551|0.47222 140552|0.5 140553|0.5 140554|0.5 140555|0.055556 140556|0.41667 140557|0.51389 140558|0.56944 140559|0.75 140560|0.54167 140561|0.41667 140562|0.44444 140563|0.48611 140564|0.68056 140565|0.52778 140566|0.40278 140567|0.23611 140568|0.5 140569|0.38889 140570|0.29167 140571|0.34722 140572|0.51389 140573|0.5 140574|0.43056 140575|0.31944 140576|0.36111 140577|0.27778 140578|0.5 140579|0.55556 140580|0.56944 140581|0.51389 140582|0.77778 140583|0.51389 140584|0.52778 140585|0.65278 140586|0.44444 140587|0.625 140588|0.23611 140589|0.625 140590|0.41667 140591|0.44444 140592|0.56944 140593|0.33333 140594|0.16667 140595|0.013889 140596|0.23611 140597|0.19444 140598|0.097222 140599|0.5 140600|0.54167 140601|0.5 140602|0.68056 140603|0.5 140604|0.5 140605|0.52778 140606|0.61111 140607|0.48611 140608|0.27778 140609|0.52778 140610|0.5 140611|0.48611 140612|0.5 140613|0.5 140614|0.5 140615|0.75 140616|0.61111 140617|0.52778 140618|0.52778 140619|0.58333 140620|0.61111 140621|0.27778 140622|0.31944 140623|0.44444 140624|0.66667 140625|0.70833 140626|0.5 140627|0.63889 140628|0.5 140629|0.61111 140630|0.36111 140631|0.31944 140632|0.38889 140633|0.43056 140634|0.51389 140635|0.54167 140636|0.5 140637|0.43056 140638|0.125 140639|0.47222 140640|0.41667 140641|0.86111 140642|0.55556 140643|0.43056 140644|0.76389 140645|0.33333 140646|0.5 140647|0.45833 140648|0.41667 140649|0.45833 140650|0.125 140651|0.23611 140652|0.47222 140653|0.38889 140654|0.52778 140655|0.5 140656|0.16667 140657|0.29167 140658|0.44444 140659|0.61111 140660|0.52778 140661|0.52778 140662|0.44444 140663|0.56944 140664|0.5 140665|0.83333 140666|0.625 140667|0.59722 140668|0.75 140669|0.44444 140670|0.875 140671|0.625 140672|0.79167 140673|0.72222 140674|0.33333 140675|0.55556 140676|0.51389 140677|0.68056 140678|0.54167 140679|0.58333 140680|0.30556 140681|0.48611 140682|0.29167 140683|0.47222 140684|0.47222 140685|0.13889 140686|0.66667 140687|0.63889 140688|0.27778 140689|0.5 140690|0.73611 140691|0.36111 140692|0.51389 140693|0.5 140694|0.55556 140695|0.18056 140696|0.44444 140697|0.40278 140698|0.55556 140699|0.55556 140700|0.16667 140701|0.61111 140702|0.59722 140703|0.47222 140704|0.5 140705|0.5 140706|0.45833 140707|0.41667 140708|0.5 140709|0.54167 140710|0.36111 140711|0.58333 140712|0.5 140713|0.48611 140714|0.54167 140715|0.59722 140716|0.31944 140717|0.51389 140718|0.48611 140719|0.45833 140720|0.63889 140721|0.66667 140722|0.58333 140723|0.40278 140724|0.5 140725|0.5 140726|0.52778 140727|0.55556 140728|0.61111 140729|0.375 140730|0.58333 140731|0.72222 140732|0.5 140733|0.34722 140734|0.55556 140735|0.52778 140736|0.625 140737|0.41667 140738|0.34722 140739|0.43056 140740|0.5 140741|0.40278 140742|0.70833 140743|0.5 140744|0.5 140745|0.5 140746|0.52778 140747|0.47222 140748|0.68056 140749|0.27778 140750|0.5 140751|0.33333 140752|0.81944 140753|0.55556 140754|0.65278 140755|0.5 140756|0.38889 140757|0.54167 140758|0.40278 140759|0.625 140760|0.55556 140761|0.5 140762|0.72222 140763|0.47222 140764|0.66667 140765|0.25 140766|0.29167 140767|0.22222 140768|0.65278 140769|0.45833 140770|0.63889 140771|0.36111 140772|0.44444 140773|0.79167 140774|0.54167 140775|0.83333 140776|0.44444 140777|0.625 140778|0.52778 140779|0.43056 140780|0.19444 140781|0.47222 140782|0.56944 140783|0.083333 140784|0.34722 140785|0.47222 140786|0.33333 140787|0.52778 140788|0.5 140789|0.58333 140790|0.5 140791|0.48611 140792|0.5 140793|0.59722 140794|0.52778 140795|0.5 140796|0.65278 140797|0.43056 140798|0.5 140799|0.5 140800|0.5 140801|0.26389 140802|0.375 140803|0.48611 140804|0.5 140805|0.625 140806|0.55556 140807|0.54167 140808|0.44444 140809|0.56944 140810|0.55556 140811|0.45833 140812|0.38889 140813|0.45833 140814|0.625 140815|0.5 140816|0.27778 140817|0.041667 140818|0.63889 140819|0.5 140820|0.069444 140821|0.83333 140822|0.38889 140823|0.36111 140824|0.83333 140825|0.47222 140826|0.375 140827|0.63889 140828|0.54167 140829|0.52778 140830|0.5 140831|0.5 140832|0.54167 140833|0.5 140834|0.61111 140835|0.5 140836|0.5 140837|0.5 140838|0.5 140839|0.52778 140840|0.5 140841|0.5 140842|0.5 140843|0.51389 140844|0.5 140845|0.5 140846|0.61111 140847|0.65278 140848|0.38889 140849|0.52778 140850|0.5 140851|0.5 140852|0.5 140853|0.58333 140854|0.61111 140855|0.52778 140856|0.69444 140857|0.5 140858|0.55556 140859|0.51389 140860|0.45833 140861|0.5 140862|0.5 140863|0.55556 140864|0.70833 140865|0.47222 140866|0.65278 140867|0.5 140868|0.5 140869|0.26389 140870|0.5 140871|0.5 140872|0.16667 140873|0.70833 140874|0.55556 140875|0.36111 140876|0.41667 140877|0.34722 140878|0.097222 140879|0.51389 140880|0.47222 140881|0.48611 140882|0.5 140883|0.55556 140884|0.48611 140885|0.5 140886|0.5 140887|0.54167 140888|0.55556 140889|0.625 140890|0.54167 140891|0.5 140892|0.48611 140893|0.38889 140894|0.26389 140895|0.33333 140896|0.22222 140897|0.22222 140898|0.30556 140899|0.44444 140900|0.43056 140901|0.38889 140902|0.5 140903|0.5 140904|0.56944 140905|0.41667 140906|0.013889 140907|0.44444 140908|0.29167 140909|0.097222 140910|0.5 140911|0.45833 140912|0.25 140913|0.5 140914|0.18056 140915|0.5 140916|0.097222 140917|0.083333 140918|0.36111 140919|0.34722 140920|0.44444 140921|0.52778 140922|0.43056 140923|0.5 140924|0.51389 140925|0.5 140926|0.47222 140927|0.52778 140928|0.13889 140929|0.33333 140930|0.5 140931|0.44444 140932|0.5 140933|0.055556 140934|0.5 140935|0.59722 140936|0.5 140937|0.38889 140938|0.375 140939|0.41667 140940|0.33333 140941|0.51389 140942|0.15278 140943|0.44444 140944|0.44444 140945|0.5 140946|0.5 140947|0.5 140948|0.5 140949|0.5 140950|0.45833 140951|0.5 140952|0.30556 140953|0.33333 140954|0.52778 140955|0.54167 140956|0.51389 140957|0.375 140958|0.56944 140959|0.45833 140960|0.43056 140961|0.54167 140962|0.5 140963|0.33333 140964|0.51389 140965|0.38889 140966|0.52778 140967|0.44444 140968|0.66667 140969|0.34722 140970|0.40278 140971|0.055556 140972|0.19444 140973|0.45833 140974|0.5 140975|0.23611 140976|0.18056 140977|0.16667 140978|0.027778 140979|0.5 140980|0.33333 140981|0.34722 140982|0.72222 140983|0.68056 140984|0.48611 140985|0.30556 140986|0.26389 140987|0.52778 140988|0.47222 140989|0.5 140990|0.097222 140991|0.25 140992|0.23611 140993|0.5 140994|0.72222 140995|0.31944 140996|0.47222 140997|0.55556 140998|0.55556 140999|0.5 141000|0.43056 141001|0.47222 141002|0.72222 141003|0.59722 141004|0.5 141005|0.44444 141006|0.5 141007|0.25 141008|0.45833 141009|0.33333 141010|0.54167 141011|0.29167 141012|0.55556 141013|0.63889 141014|0.5 141015|0.27778 141016|0.22222 141017|0.375 141018|0.19444 141019|0.45833 141020|0.34722 141021|0.52778 141022|0.36111 141023|0.36111 141024|0.5 141025|0.625 141026|0.5 141027|0.5 141028|0.55556 141029|0.47222 141030|0.5 141031|0.51389 141032|0.5 141033|0.44444 141034|0.48611 141035|0.45833 141036|0.25 141037|0.15278 141038|0.19444 141039|0.30556 141040|0.5 141041|0.30556 141042|0.41667 141043|0.52778 141044|0.48611 141045|0.5 141046|0.43056 141047|0.375 141048|0.5 141049|0.31944 141050|0.375 141051|0.44444 141052|0.5 141053|0.31944 141054|0.44444 141055|0.125 141056|0.41667 141057|0.40278 141058|0.56944 141059|0.5 141060|0.5 141061|0.5 141062|0.625 141063|0.38889 141064|0.44444 141065|0.29167 141066|0.041667 141067|0.23611 141068|0.54167 141069|0.15278 141070|0.069444 141071|0.5 141072|0.5 141073|0.43056 141074|0.47222 141075|0.30556 141076|0.027778 141077|0.58333 141078|0.73611 141079|0.72222 141080|0.59722 141081|0.43056 141082|0.55556 141083|0.33333 141084|0.38889 141085|0.27778 141086|0.41667 141087|0.33333 141088|0.13889 141089|0.34722 141090|0.15278 141091|0.18056 141092|0.31944 141093|0.16667 141094|0.13889 141095|0.45833 141096|0.625 141097|0.52778 141098|0.625 141099|0.51389 141100|0.55556 141101|0.11111 141102|0.20833 141103|0.25 141104|0.29167 141105|0.36111 141106|0.47222 141107|0.34722 141108|0.43056 141109|0.18056 141110|0.29167 141111|0.66667 141112|0.375 141113|0.36111 141114|0.47222 141115|0.40278 141116|0.54167 141117|0.43056 141118|0.5 141119|0.33333 141120|0.22222 141121|0.27778 141122|0.48611 141123|0.52778 141124|0.27778 141125|0.23611 141126|0.097222 141127|0.13889 141128|0.30556 141129|0.5 141130|0.23611 141131|0.30556 141132|0.58333 141133|0.34722 141134|0.27778 141135|0.125 141136|0.38889 141137|0.069444 141138|0.11111 141139|0.40278 141140|0.34722 141141|0.26389 141142|0.30556 141143|0.54167 141144|0.375 141145|0.22222 141146|0.33333 141147|0.31944 141148|0.16667 141149|0.61111 141150|0.55556 141151|0.54167 141152|0.51389 141153|0.5 141154|0.34722 141155|0.26389 141156|0.23611 141157|0.68056 141158|0.5 141159|0.33333 141160|0.5 141161|0.31944 141162|0.31944 141163|0.38889 141164|0.36111 141165|0.40278 141166|0.25 141167|0.27778 141168|0.76389 141169|0.45833 141170|0.41667 141171|0.5 141172|0.375 141173|0.56944 141174|0.22222 141175|0.38889 141176|0.20833 141177|0.55556 141178|0.61111 141179|0.5 141180|0.625 141181|0.44444 141182|0.45833 141183|0.5 141184|0.68056 141185|0.36111 141186|0.36111 141187|0.5 141188|0.38889 141189|0.33333 141190|0.23611 141191|0.25 141192|0.48611 141193|0.34722 141194|0.30556 141195|0.5 141196|0.45833 141197|0.55556 141198|0.36111 141199|0.52778 141200|0.20833 141201|0.19444 141202|0.40278 141203|0.58333 141204|0.41667 141205|0.27778 141206|0.22222 141207|0.30556 141208|0.52778 141209|0.45833 141210|0.34722 141211|0.13889 141212|0.43056 141213|0.29167 141214|0.38889 141215|0.25 141216|0.34722 141217|0.36111 141218|0.27778 141219|0.13889 141220|0.55556 141221|0.27778 141222|0.40278 141223|0.88889 141224|0.77778 141225|0.63889 141226|0.375 141227|0.31944 141228|0.15278 141229|0.16667 141230|0.055556 141231|0.125 141232|0.31944 141233|0.44444 141234|0.27778 141235|0.29167 141236|0.22222 141237|0.33333 141238|0.16667 141239|0.29167 141240|0.48611 141241|0.11111 141242|0.22222 141243|0.13889 141244|0.40278 141245|0.5 141246|0.41667 141247|0.52778 141248|0.55556 141249|0.40278 141250|0.27778 141251|0.375 141252|0.097222 141253|0.027778 141254|0.51389 141255|0.31944 141256|0.27778 141257|0.18056 141258|0.52778 141259|0.56944 141260|0.48611 141261|0.38889 141262|0.5 141263|0.5 141264|0.66667 141265|0.29167 141266|0.33333 141267|0.66667 141268|0.63889 141269|0.20833 141270|0.40278 141271|0.27778 141272|0.83333 141273|0.44444 141274|0.55556 141275|0.44444 141276|0.25 141277|0.44444 141278|0.58333 141279|0.22222 141280|0.25 141281|0.5 141282|0.5 141283|0.70833 141284|0.58333 141285|0.5 141286|0.51389 141287|0.18056 141288|0.44444 141289|0.23611 141290|0.13889 141291|0.15278 141292|0.13889 141293|0.44444 141294|0.25 141295|0.27778 141296|0.22222 141297|0.20833 141298|0.5 141299|0.47222 141300|0.375 141301|0.44444 141302|0.65278 141303|0.22222 141304|0.33333 141305|0.36111 141306|0.76389 141307|0.48611 141308|0.52778 141309|0.44444 141310|0.36111 141311|0.40278 141312|0.5 141313|0.40278 141314|0.097222 141315|0.16667 141316|0.58333 141317|0.5 141318|0.29167 141319|0.027778 141320|0.44444 141321|0.22222 141322|0.5 141323|0.56944 141324|0.5 141325|0.47222 141326|0.20833 141327|0.22222 141328|0.125 141329|0.22222 141330|0.26389 141331|0.59722 141332|0.29167 141333|0.51389 141334|0.30556 141335|0.41667 141336|0.77778 141337|0.70833 141338|0.23611 141339|0.30556 141340|0.5 141341|0.66667 141342|0.54167 141343|0.47222 141344|0.75 141345|0.41667 141346|0.27778 141347|0.26389 141348|0.58333 141349|0.52778 141350|0.43056 141351|0.33333 141352|0.34722 141353|0.34722 141354|0.44444 141355|0.38889 141356|0.26389 141357|0.34722 141358|0.47222 141359|0.25 141360|0.52778 141361|0.52778 141362|0.5 141363|0.36111 141364|0.59722 141365|0.43056 141366|0.41667 141367|0.55556 141368|0.41667 141369|0.31944 141370|0.23611 141371|0.44444 141372|0.45833 141373|0.47222 141374|0.5 141375|0.61111 141376|0.40278 141377|0.45833 141378|0.43056 141379|0.45833 141380|0.47222 141381|0.38889 141382|0.36111 141383|0.18056 141384|0.41667 141385|0.63889 141386|0.29167 141387|0.27778 141388|0.22222 141389|0.18056 141390|0.19444 141391|0.20833 141392|0.38889 141393|0.41667 141394|0.26389 141395|0.20833 141396|0.19444 141397|0.25 141398|0.33333 141399|0.43056 141400|0.40278 141401|0.31944 141402|0.16667 141403|0.27778 141404|0.56944 141405|0.30556 141406|0.43056 141407|0.16667 141408|0.083333 141409|0.18056 141410|0.33333 141411|0.27778 141412|0.23611 141413|0.66667 141414|0.36111 141415|0.47222 141416|0.25 141417|0.30556 141418|0.59722 141419|0.5 141420|0.5 141421|0.51389 141422|0.43056 141423|0.34722 141424|0.19444 141425|0.22222 141426|0.18056 141427|0.20833 141428|0.25 141429|0.33333 141430|0.38889 141431|0.5 141432|0.47222 141433|0.51389 141434|0.44444 141435|0.20833 141436|0.70833 141437|0.69444 141438|0.30556 141439|0.72222 141440|0.40278 141441|0.125 141442|0.22222 141443|0.38889 141444|0.31944 141445|0.18056 141446|0.27778 141447|0.27778 141448|0.19444 141449|0.15278 141450|0.27778 141451|0.30556 141452|0.19444 141453|0.26389 141454|0.20833 141455|0.33333 141456|0.26389 141457|0.61111 141458|0.27778 141459|0.34722 141460|0.26389 141461|0.43056 141462|0.45833 141463|0.19444 141464|0.47222 141465|0.29167 141466|0.40278 141467|0.41667 141468|0.51389 141469|0.59722 141470|0.44444 141471|0.41667 141472|0.13889 141473|0.33333 141474|0.20833 141475|0.11111 141476|0.40278 141477|0.34722 141478|0.25 141479|0.38889 141480|0.34722 141481|0.27778 141482|0.20833 141483|0.38889 141484|0.22222 141485|0.15278 141486|0.56944 141487|0.58333 141488|0.5 141489|0.58333 141490|0.54167 141491|0.45833 141492|0.33333 141493|0.34722 141494|0.5 141495|0.34722 141496|0.66667 141497|0.61111 141498|0.45833 141499|0.29167 141500|0.29167 141501|0.33333 141502|0.34722 141503|0.30556 141504|0.33333 141505|0.25 141506|0.19444 141507|0.30556 141508|0.30556 141509|0.26389 141510|0.63889 141511|0.38889 141512|0.38889 141513|0.375 141514|0.45833 141515|0.45833 141516|0.5 141517|0.47222 141518|0.38889 141519|0.27778 141520|0.38889 141521|0.5 141522|0.54167 141523|0.5 141524|0.5 141525|0.38889 141526|0.44444 141527|0.36111 141528|0.26389 141529|0.23611 141530|0.23611 141531|0.54167 141532|0.36111 141533|0.22222 141534|0.40278 141535|0.20833 141536|0.36111 141537|0.45833 141538|0.23611 141539|0.44444 141540|0.22222 141541|0.63889 141542|0.19444 141543|0.31944 141544|0.55556 141545|0.19444 141546|0.48611 141547|0.26389 141548|0.30556 141549|0.23611 141550|0.16667 141551|0.38889 141552|0.22222 141553|0.33333 141554|0.20833 141555|0.45833 141556|0.20833 141557|0.19444 141558|0.33333 141559|0.43056 141560|0.30556 141561|0.65278 141562|0.33333 141563|0.36111 141564|0.56944 141565|0.25 141566|0.54167 141567|0.75 141568|0.54167 141569|0.43056 141570|0.25 141571|0.30556 141572|0.33333 141573|0.43056 141574|0.75 141575|0.44444 141576|0.29167 141577|0.26389 141578|0.23611 141579|0.47222 141580|0.5 141581|0.375 141582|0.44444 141583|0.083333 141584|0.11111 141585|0.75 141586|0.41667 141587|0.22222 141588|0.18056 141589|0.23611 141590|0.34722 141591|0.23611 141592|0.11111 141593|0.52778 141594|0.33333 141595|0.52778 141596|0.15278 141597|0.31944 141598|0.22222 141599|0.29167 141600|0.18056 141601|0.18056 141602|0.25 141603|0.25 141604|0.31944 141605|0.13889 141606|0.38889 141607|0.15278 141608|0.375 141609|0.34722 141610|0.51389 141611|0.27778 141612|0.33333 141613|0.23611 141614|0.27778 141615|0.20833 141616|0.18056 141617|0.36111 141618|0.34722 141619|0.375 141620|0.66667 141621|0.69444 141622|0.23611 141623|0.55556 141624|0.38889 141625|0.22222 141626|0.20833 141627|0.59722 141628|0.59722 141629|0.30556 141630|0.44444 141631|0.34722 141632|0.375 141633|0.25 141634|0.52778 141635|0.44444 141636|0.47222 141637|0.45833 141638|0.375 141639|0.097222 141640|0.54167 141641|0.59722 141642|0.097222 141643|0.16667 141644|0.34722 141645|0.15278 141646|0.44444 141647|0.38889 141648|0.34722 141649|0.72222 141650|0.30556 141651|0.45833 141652|0.5 141653|0.52778 141654|0.22222 141655|0.34722 141656|0.41667 141657|0.5 141658|0.38889 141659|0.25 141660|0.48611 141661|0.30556 141662|0.5 141663|0.5 141664|0.61111 141665|0.52778 141666|0.5 141667|0.43056 141668|0.44444 141669|0.48611 141670|0.55556 141671|0.36111 141672|0.375 141673|0.43056 141674|0.30556 141675|0.19444 141676|0.27778 141677|0.22222 141678|0.19444 141679|0.18056 141680|0.19444 141681|0.31944 141682|0.26389 141683|0.29167 141684|0.22222 141685|0.56944 141686|0.375 141687|0.23611 141688|0.34722 141689|0.44444 141690|0.625 141691|0.66667 141692|0.51389 141693|0.38889 141694|0.5 141695|0.54167 141696|0.375 141697|0.25 141698|0.30556 141699|0.22222 141700|0.33333 141701|0.31944 141702|0.58333 141703|0.25 141704|0.5 141705|0.5 141706|0.375 141707|0.43056 141708|0.63889 141709|0.48611 141710|0.55556 141711|0.29167 141712|0.30556 141713|0.58333 141714|0.31944 141715|0.34722 141716|0.15278 141717|0.38889 141718|0.38889 141719|0.52778 141720|0.40278 141721|0.54167 141722|0.51389 141723|0.5 141724|0.33333 141725|0.55556 141726|0.48611 141727|0.5 141728|0.31944 141729|0.33333 141730|0.43056 141731|0.5 141732|0.26389 141733|0.5 141734|0.5 141735|0.36111 141736|0.30556 141737|0.61111 141738|0.40278 141739|0.5 141740|0.5 141741|0.41667 141742|0.47222 141743|0.38889 141744|0.5 141745|0.55556 141746|0.375 141747|0.52778 141748|0.5 141749|0.18056 141750|0.5 141751|0.38889 141752|0.56944 141753|0.5 141754|0.5 141755|0.5 141756|0.66667 141757|0.5 141758|0.069444 141759|0.625 141760|0.45833 141761|0.66667 141762|0.66667 141763|0.58333 141764|0.38889 141765|0.31944 141766|0.51389 141767|0.47222 141768|0.20833 141769|0.5 141770|0.5 141771|0.45833 141772|0.59722 141773|0.5 141774|0.5 141775|0.27778 141776|0.59722 141777|0.40278 141778|0.55556 141779|0.44444 141780|0.23611 141781|0.23611 141782|0.26389 141783|0.44444 141784|0.36111 141785|0.22222 141786|0.20833 141787|0.44444 141788|0.55556 141789|0.34722 141790|0.5 141791|0.44444 141792|0.5 141793|0.55556 141794|0.51389 141795|0.5 141796|0.52778 141797|0.43056 141798|0.44444 141799|0.5 141800|0.52778 141801|0.41667 141802|0.5 141803|0.23611 141804|0.61111 141805|0.45833 141806|0.55556 141807|0.375 141808|0.5 141809|0.59722 141810|0.5 141811|0.33333 141812|0.5 141813|0.44444 141814|0.5 141815|0.63889 141816|0.23611 141817|0.44444 141818|0.069444 141819|0.375 141820|0.29167 141821|0.38889 141822|0.27778 141823|0.33333 141824|0.5 141825|0.55556 141826|0.29167 141827|0.29167 141828|0.25 141829|0.34722 141830|0.5 141831|0.069444 141832|0.51389 141833|0.54167 141834|0.375 141835|0.55556 141836|0.5 141837|0.23611 141838|0.33333 141839|0.13889 141840|0.5 141841|0.36111 141842|0.41667 141843|0.5 141844|0.16667 141845|0.54167 141846|0.5 141847|0.34722 141848|0.40278 141849|0.5 141850|0.45833 141851|0.5 141852|0.375 141853|0.31944 141854|0.44444 141855|0.5 141856|0.70833 141857|0.27778 141858|0.40278 141859|0.54167 141860|0.41667 141861|0.40278 141862|0.5 141863|0.63889 141864|0.77778 141865|0.76389 141866|0.27778 141867|0.18056 141868|0.5 141869|0.31944 141870|0.5 141871|0.55556 141872|0.44444 141873|0.36111 141874|0.5 141875|0.44444 141876|0.5 141877|0.5 141878|0.54167 141879|0.44444 141880|0.5 141881|0.5 141882|0.44444 141883|0.45833 141884|0.25 141885|0.54167 141886|0.52778 141887|0.44444 141888|0.5 141889|0.44444 141890|0.51389 141891|0.44444 141892|0.5 141893|0.73611 141894|0.5 141895|0.47222 141896|0.27778 141897|0.40278 141898|0.5 141899|0.51389 141900|0.55556 141901|0.38889 141902|0.66667 141903|0.5 141904|0.52778 141905|0.47222 141906|0.54167 141907|0.47222 141908|0.5 141909|0.47222 141910|0.25 141911|0.55556 141912|0.5 141913|0.31944 141914|0.26389 141915|0.44444 141916|0.56944 141917|0.51389 141918|0.5 141919|0.25 141920|0.5 141921|0.5 141922|0.041667 141923|0.23611 141924|0.72222 141925|0.44444 141926|0.18056 141927|0.22222 141928|0.5 141929|0.47222 141930|0.48611 141931|0.27778 141932|0.5 141933|0.45833 141934|0.5 141935|0.63889 141936|0.055556 141937|0.27778 141938|0.29167 141939|0.19444 141940|0.097222 141941|0.33333 141942|0.58333 141943|0.38889 141944|0.15278 141945|0.43056 141946|0.44444 141947|0.25 141948|0.40278 141949|0.5 141950|0.875 141951|0.75 141952|0.55556 141953|0.55556 141954|0.44444 141955|0.25 141956|0.30556 141957|0.27778 141958|0.15278 141959|0.15278 141960|0.375 141961|0.36111 141962|0.5 141963|0.097222 141964|0.18056 141965|0.27778 141966|0.30556 141967|0.45833 141968|0.15278 141969|0.15278 141970|0.31944 141971|0.63889 141972|0.72222 141973|0.51389 141974|0.40278 141975|0.5 141976|0.59722 141977|0.33333 141978|0.20833 141979|0.26389 141980|0.66667 141981|0.19444 141982|0.44444 141983|0.44444 141984|0.66667 141985|0.25 141986|0.31944 141987|0.33333 141988|0.33333 141989|0.23611 141990|0.11111 141991|0.38889 141992|0.375 141993|0.13889 141994|0.31944 141995|0.5 141996|0.5 141997|0.27778 141998|0.5 141999|0.30556 142000|0.44444 142001|0.22222 142002|0.31944 142003|0.38889 142004|0.36111 142005|0.375 142006|0.47222 142007|0.125 142008|0.19444 142009|0.5 142010|0.22222 142011|0.23611 142012|0.30556 142013|0.36111 142014|0.66667 142015|0.51389 142016|0.30556 142017|0.44444 142018|0.11111 142019|0.5 142020|0.33333 142021|0.47222 142022|0.47222 142023|0.375 142024|0.34722 142025|0.52778 142026|0.34722 142027|0.26389 142028|0.63889 142029|0.69444 142030|0.20833 142031|0.81944 142032|0.40278 142033|0.54167 142034|0.31944 142035|0.59722 142036|0.43056 142037|0.29167 142038|0.875 142039|0.33333 142040|0.27778 142041|0.31944 142042|0.59722 142043|0.41667 142044|0.34722 142045|0.013889 142046|0.48611 142047|0.375 142048|0.38889 142049|0.29167 142050|0.22222 142051|0.25 142052|0.27778 142053|0.47222 142054|0.40278 142055|0.26389 142056|0.097222 142057|0.16667 142058|0.16667 142059|0.59722 142060|0.33333 142061|0.5 142062|0.44444 142063|0.38889 142064|0.47222 142065|0.34722 142066|0.33333 142067|0.65278 142068|0.29167 142069|0.34722 142070|0.43056 142071|0.30556 142072|0.5 142073|0.45833 142074|0.44444 142075|0.65278 142076|0.58333 142077|0.61111 142078|0.31944 142079|0.41667 142080|0.43056 142081|0.5 142082|0.23611 142083|0.45833 142084|0.44444 142085|0.34722 142086|0.52778 142087|0.27778 142088|0.51389 142089|0.86111 142090|0.5 142091|0.19444 142092|0.36111 142093|0.36111 142094|0.47222 142095|0.77778 142096|0.54167 142097|0.36111 142098|0.5 142099|0.375 142100|0.40278 142101|0.34722 142102|0.44444 142103|0.65278 142104|0.11111 142105|0.625 142106|0.58333 142107|0.15278 142108|0.40278 142109|0.58333 142110|0.5 142111|0.15278 142112|0.375 142113|0.56944 142114|0.5 142115|0.19444 142116|0.72222 142117|0.16667 142118|0.5 142119|0.33333 142120|0.55556 142121|0.47222 142122|0.31944 142123|0.31944 142124|0.25 142125|0.73611 142126|0.19444 142127|0.30556 142128|0.375 142129|0.44444 142130|0.22222 142131|0.41667 142132|0.36111 142133|0.45833 142134|0.23611 142135|0.47222 142136|0.76389 142137|0.5 142138|0.26389 142139|0.69444 142140|0.68056 142141|0.48611 142142|0.41667 142143|0.31944 142144|0.22222 142145|0.097222 142146|0.38889 142147|0.22222 142148|0.11111 142149|0.20833 142150|0.45833 142151|0.25 142152|0.45833 142153|0.41667 142154|0.33333 142155|0.20833 142156|0.16667 142157|0.30556 142158|0.097222 142159|0.31944 142160|0.5 142161|0.375 142162|0.5 142163|0.5 142164|0.43056 142165|0.44444 142166|0.5 142167|0.36111 142168|0.19444 142169|0.083333 142170|0.625 142171|0.33333 142172|0.041667 142173|0.375 142174|0.5 142175|0.18056 142176|0.31944 142177|0.40278 142178|0.47222 142179|0.23611 142180|0.59722 142181|0.33333 142182|0.22222 142183|0.66667 142184|0.30556 142185|0.5 142186|0.44444 142187|0.44444 142188|0.41667 142189|0.41667 142190|0.27778 142191|0.33333 142192|0.61111 142193|0.44444 142194|0.33333 142195|0.48611 142196|0.33333 142197|0.34722 142198|0.5 142199|0.55556 142200|0.34722 142201|0.40278 142202|0.19444 142203|0.26389 142204|0.33333 142205|0.54167 142206|0.27778 142207|0.18056 142208|0.34722 142209|0.13889 142210|0.45833 142211|0.34722 142212|0.5 142213|0.5 142214|0.31944 142215|0.54167 142216|0.61111 142217|0.41667 142218|0.18056 142219|0.36111 142220|0.68056 142221|0.5 142222|0.31944 142223|0.52778 142224|0.40278 142225|0.55556 142226|0.41667 142227|0.19444 142228|0.41667 142229|0.47222 142230|0.375 142231|0.11111 142232|0.41667 142233|0.43056 142234|0.5 142235|0.15278 142236|0.33333 142237|0.5 142238|0.30556 142239|0.30556 142240|0.20833 142241|0.36111 142242|0.22222 142243|0.13889 142244|0.34722 142245|0.23611 142246|0.5 142247|0.125 142248|0.80556 142249|0.22222 142250|0.16667 142251|0.33333 142252|0.26389 142253|0.22222 142254|0.22222 142255|0.34722 142256|0.26389 142257|0.41667 142258|0.20833 142259|0.19444 142260|0.30556 142261|0.11111 142262|0.5 142263|0.36111 142264|0.31944 142265|0.30556 142266|0.069444 142267|0.20833 142268|0.29167 142269|0.30556 142270|0.44444 142271|0.29167 142272|0.5 142273|0.26389 142274|0.20833 142275|0.44444 142276|0.33333 142277|0.72222 142278|0.23611 142279|0.125 142280|0.125 142281|0.19444 142282|0.36111 142283|0.55556 142284|0.43056 142285|0.23611 142286|0.33333 142287|0.70833 142288|0.22222 142289|0.083333 142290|0.23611 142291|0.26389 142292|0.52778 142293|0.29167 142294|0.38889 142295|0.31944 142296|0.33333 142297|0.25 142298|0.25 142299|0.43056 142300|0.26389 142301|0.68056 142302|0.25 142303|0.41667 142304|0.44444 142305|0.20833 142306|0.52778 142307|0.30556 142308|0.16667 142309|0.23611 142310|0.55556 142311|0.26389 142312|0.43056 142313|0.22222 142314|0.43056 142315|0.23611 142316|0.18056 142317|0.56944 142318|0.5 142319|0.13889 142320|0.54167 142321|0.65278 142322|0.22222 142323|0.30556 142324|0.33333 142325|0.13889 142326|0.68056 142327|0.44444 142328|0.36111 142329|0.55556 142330|0.45833 142331|0.20833 142332|0.38889 142333|0.48611 142334|0.29167 142335|0.125 142336|0.29167 142337|0.31944 142338|0.36111 142339|0.31944 142340|0.40278 142341|0.41667 142342|0.25 142343|0.36111 142344|0.36111 142345|0.41667 142346|0.27778 142347|0.47222 142348|0.54167 142349|0.52778 142350|0.5 142351|0.45833 142352|0.29167 142353|0.34722 142354|0.25 142355|0.33333 142356|0.5 142357|0.5 142358|0.27778 142359|0.33333 142360|0.44444 142361|0.27778 142362|0.40278 142363|0.44444 142364|0.38889 142365|0.34722 142366|0.44444 142367|0.19444 142368|0.26389 142369|0.44444 142370|0.36111 142371|0.20833 142372|0.5 142373|0.40278 142374|0.61111 142375|0.30556 142376|0.54167 142377|0.13889 142378|0.5 142379|0.5 142380|0.16667 142381|0.5 142382|0.76389 142383|0.5 142384|0.31944 142385|0.40278 142386|0.58333 142387|0.55556 142388|0.63889 142389|0.51389 142390|0.38889 142391|0.45833 142392|0.15278 142393|0.41667 142394|0.5 142395|0.5 142396|0.29167 142397|0.27778 142398|0.34722 142399|0.51389 142400|0.055556 142401|0.27778 142402|0.055556 142403|0.27778 142404|0.29167 142405|0.51389 142406|0.19444 142407|0.29167 142408|0.51389 142409|0.29167 142410|0.38889 142411|0.29167 142412|0.16667 142413|0.65278 142414|0.33333 142415|0.26389 142416|0.38889 142417|0.43056 142418|0.5 142419|0.55556 142420|0.23611 142421|0.34722 142422|0.45833 142423|0.65278 142424|0.56944 142425|0.31944 142426|0.33333 142427|0.20833 142428|0.44444 142429|0.29167 142430|0.5 142431|0.58333 142432|0.30556 142433|0.54167 142434|0.125 142435|0.34722 142436|0.44444 142437|0.48611 142438|0.055556 142439|0.5 142440|0.70833 142441|0.19444 142442|0.27778 142443|0.27778 142444|0.11111 142445|0.54167 142446|0.5 142447|0.29167 142448|0.375 142449|0.5 142450|0.41667 142451|0.54167 142452|0.34722 142453|0.38889 142454|0.30556 142455|0.5 142456|0.5 142457|0.30556 142458|0.23611 142459|0.51389 142460|0.34722 142461|0.22222 142462|0.63889 142463|0.43056 142464|0.23611 142465|0.45833 142466|0.38889 142467|0.38889 142468|0.38889 142469|0.18056 142470|0.27778 142471|0.33333 142472|0.11111 142473|0.34722 142474|0.375 142475|0.47222 142476|0.40278 142477|0.54167 142478|0.54167 142479|0.34722 142480|0.31944 142481|0.43056 142482|0.22222 142483|0.27778 142484|0.30556 142485|0.44444 142486|0.375 142487|0.083333 142488|0.36111 142489|0.31944 142490|0.34722 142491|0.31944 142492|0.33333 142493|0.44444 142494|0.19444 142495|0.31944 142496|0.34722 142497|0.27778 142498|0.41667 142499|0.38889 142500|0.29167 142501|0.625 142502|0.41667 142503|0.31944 142504|0.29167 142505|0.26389 142506|0.25 142507|0.125 142508|0.58333 142509|0.375 142510|0.20833 142511|0.45833 142512|0.25 142513|0.40278 142514|0.26389 142515|0.40278 142516|0.72222 142517|0.25 142518|0.27778 142519|0.52778 142520|0.29167 142521|0.20833 142522|0.29167 142523|0.375 142524|0.19444 142525|0.26389 142526|0.66667 142527|0.29167 142528|0.27778 142529|0.20833 142530|0.43056 142531|0.625 142532|0.48611 142533|0.23611 142534|0.15278 142535|0.26389 142536|0.16667 142537|0.30556 142538|0.30556 142539|0.55556 142540|0.25 142541|0.27778 142542|0.94444 142543|0.16667 142544|0.33333 142545|0.26389 142546|0.34722 142547|0.52778 142548|0.26389 142549|0.27778 142550|0.15278 142551|0.5 142552|0.41667 142553|0.41667 142554|0.5 142555|0.30556 142556|0.055556 142557|0.27778 142558|0.11111 142559|0.69444 142560|0.23611 142561|0.20833 142562|0.38889 142563|0.27778 142564|0.63889 142565|0.22222 142566|0.44444 142567|0.097222 142568|0.027778 142569|0.5 142570|0.5 142571|0.19444 142572|0.16667 142573|0.41667 142574|0.27778 142575|0.31944 142576|0.18056 142577|0.26389 142578|0.375 142579|0.30556 142580|0.22222 142581|0.097222 142582|0.43056 142583|0.43056 142584|0.40278 142585|0.29167 142586|0.055556 142587|0.23611 142588|0.36111 142589|0.54167 142590|0.69444 142591|0.18056 142592|0.18056 142593|0.30556 142594|0.63889 142595|0.5 142596|0.13889 142597|0.16667 142598|0.31944 142599|0.48611 142600|0.22222 142601|0.26389 142602|0.11111 142603|0.58333 142604|0.19444 142605|0.48611 142606|0.375 142607|0.29167 142608|0.41667 142609|0.15278 142610|0.29167 142611|0.5 142612|0.22222 142613|0.33333 142614|0.44444 142615|0.43056 142616|0.33333 142617|0.19444 142618|0.47222 142619|0.25 142620|0.29167 142621|0.29167 142622|0.44444 142623|0.34722 142624|0.20833 142625|0.56944 142626|0.83333 142627|0.40278 142628|0.51389 142629|0.68056 142630|0.31944 142631|0.45833 142632|0.41667 142633|0.77778 142634|0.44444 142635|0.40278 142636|0.47222 142637|0.33333 142638|0.30556 142639|0.34722 142640|0.19444 142641|0.48611 142642|0.52778 142643|0.56944 142644|0.30556 142645|0.22222 142646|0.45833 142647|0.16667 142648|0.34722 142649|0.5 142650|0.19444 142651|0.5 142652|0.375 142653|0.69444 142654|0.23611 142655|0.11111 142656|0.26389 142657|0.40278 142658|0.54167 142659|0.58333 142660|0.48611 142661|0.5 142662|0.5 142663|0.22222 142664|0.55556 142665|0.15278 142666|0.38889 142667|0.41667 142668|0.16667 142669|0.47222 142670|0.40278 142671|0.26389 142672|0.16667 142673|0.66667 142674|0.38889 142675|0.20833 142676|0.375 142677|0.38889 142678|0.13889 142679|0.55556 142680|0.52778 142681|0.20833 142682|0.54167 142683|0.5 142684|0.58333 142685|0.36111 142686|0.54167 142687|0.29167 142688|0.34722 142689|0.52778 142690|0.38889 142691|0.30556 142692|0.45833 142693|0.5 142694|0.34722 142695|0.45833 142696|0.52778 142697|0.5 142698|0.31944 142699|0.54167 142700|0.51389 142701|0.5 142702|0.48611 142703|0.5 142704|0.5 142705|0.40278 142706|0.56944 142707|0.43056 142708|0.41667 142709|0.5 142710|0.27778 142711|0.5 142712|0.58333 142713|0.51389 142714|0.55556 142715|0.48611 142716|0.40278 142717|0.30556 142718|0.43056 142719|0.31944 142720|0.41667 142721|0.58333 142722|0.30556 142723|0.48611 142724|0.41667 142725|0.5 142726|0.5 142727|0.33333 142728|0.58333 142729|0.30556 142730|0.5 142731|0.48611 142732|0.38889 142733|0.66667 142734|0.5 142735|0.5 142736|0.5 142737|0.61111 142738|0.5 142739|0.52778 142740|0.13889 142741|0.16667 142742|0.5 142743|0.48611 142744|0.5 142745|0.5 142746|0.5 142747|0.36111 142748|0.5 142749|0.47222 142750|0.5 142751|0.65278 142752|0.5 142753|0.55556 142754|0.47222 142755|0.16667 142756|0.58333 142757|0.5 142758|0.5 142759|0.625 142760|0.30556 142761|0.30556 142762|0.36111 142763|0.375 142764|0.34722 142765|0.16667 142766|0.34722 142767|0.22222 142768|0.27778 142769|0.31944 142770|0.16667 142771|0.29167 142772|0.52778 142773|0.19444 142774|0.125 142775|0.16667 142776|0.26389 142777|0.40278 142778|0.625 142779|0.41667 142780|0.31944 142781|0.22222 142782|0.59722 142783|0.16667 142784|0.18056 142785|0.56944 142786|0.77778 142787|0.26389 142788|0.27778 142789|0.11111 142790|0.23611 142791|0.27778 142792|0.51389 142793|0.22222 142794|0.15278 142795|0.45833 142796|0.48611 142797|0.38889 142798|0.41667 142799|0.58333 142800|0.33333 142801|0.25 142802|0.30556 142803|0.069444 142804|0.76389 142805|0.22222 142806|0.16667 142807|0.38889 142808|0.083333 142809|0.23611 142810|0.34722 142811|0.23611 142812|0.097222 142813|0.23611 142814|0.30556 142815|0.19444 142816|0.22222 142817|0.30556 142818|0.41667 142819|0.56944 142820|0.26389 142821|0.22222 142822|0.20833 142823|0.25 142824|0.13889 142825|0.027778 142826|0.41667 142827|0.61111 142828|0.16667 142829|0.23611 142830|0.43056 142831|0.097222 142832|0.34722 142833|0.33333 142834|0.61111 142835|0.44444 142836|0.47222 142837|0.11111 142838|0.23611 142839|0.5 142840|0.61111 142841|0.22222 142842|0.56944 142843|0.47222 142844|0.5 142845|0.44444 142846|0.5 142847|0.5 142848|0.43056 142849|0.54167 142850|0.52778 142851|0.5 142852|0.44444 142853|0.48611 142854|0.5 142855|0.56944 142856|0.51389 142857|0.625 142858|0.5 142859|0.5 142860|0.5 142861|0.59722 142862|0.5 142863|0.5 142864|0.5 142865|0.5 142866|0.45833 142867|0.45833 142868|0.5 142869|0.5 142870|0.58333 142871|0.5 142872|0.5 142873|0.44444 142874|0.52778 142875|0.5 142876|0.5 142877|0.47222 142878|0.5 142879|0.51389 142880|0.5 142881|0.5 142882|0.61111 142883|0.5 142884|0.43056 142885|0.30556 142886|0.48611 142887|0.54167 142888|0.55556 142889|0.5 142890|0.5 142891|0.55556 142892|0.5 142893|0.5 142894|0.5 142895|0.5 142896|0.5 142897|0.54167 142898|0.56944 142899|0.5 142900|0.5 142901|0.30556 142902|0.5 142903|0.5 142904|0.45833 142905|0.55556 142906|0.52778 142907|0.5 142908|0.5 142909|0.5 142910|0.51389 142911|0.5 142912|0.5 142913|0.5 142914|0.5 142915|0.20833 142916|0.51389 142917|0.5 142918|0.70833 142919|0.70833 142920|0.30556 142921|0.5 142922|0.5 142923|0.5 142924|0.43056 142925|0.5 142926|0.48611 142927|0.59722 142928|0.5 142929|0.5 142930|0.5 142931|0.56944 142932|0.5 142933|0.45833 142934|0.5 142935|0.5 142936|0.43056 142937|0.5 142938|0.65278 142939|0.43056 142940|0.5 142941|0.5 142942|0.5 142943|0.5 142944|0.23611 142945|0.5 142946|0.59722 142947|0.58333 142948|0.61111 142949|0.29167 142950|0.11111 142951|0.31944 142952|0.33333 142953|0.16667 142954|0.44444 142955|0.34722 142956|0.23611 142957|0.5 142958|0.5 142959|0.33333 142960|0.45833 142961|0.34722 142962|0.45833 142963|0.65278 142964|0.5 142965|0.44444 142966|0.41667 142967|0.52778 142968|0.34722 142969|0.45833 142970|0.5 142971|0.55556 142972|0.36111 142973|0.5 142974|0.44444 142975|0.125 142976|0.38889 142977|0.5 142978|0.20833 142979|0.41667 142980|0.55556 142981|0.16667 142982|0.38889 142983|0.5 142984|0.5 142985|0.40278 142986|0.26389 142987|0.44444 142988|0.22222 142989|0.30556 142990|0.43056 142991|0.069444 142992|0.20833 142993|0.15278 142994|0.13889 142995|0.16667 142996|0.41667 142997|0.27778 142998|0.29167 142999|0.44444 143000|0.44444 143001|0.59722 143002|0.52778 143003|0.25 143004|0.5 143005|0.27778 143006|0.33333 143007|0.22222 143008|0.19444 143009|0.33333 143010|0.22222 143011|0.27778 143012|0.055556 143013|0.20833 143014|0.25 143015|0.23611 143016|0.15278 143017|0.27778 143018|0.16667 143019|0.5 143020|0.26389 143021|0.27778 143022|0.18056 143023|0.20833 143024|0.63889 143025|0.44444 143026|0.31944 143027|0.26389 143028|0.52778 143029|0.38889 143030|0.36111 143031|0.44444 143032|0.34722 143033|0.45833 143034|0.41667 143035|0.40278 143036|0.48611 143037|0.19444 143038|0.18056 143039|0.30556 143040|0.47222 143041|0.11111 143042|0.16667 143043|0.15278 143044|0.36111 143045|0.125 143046|0.25 143047|0.29167 143048|0.29167 143049|0.38889 143050|0.30556 143051|0.29167 143052|0.58333 143053|0.33333 143054|0.41667 143055|0.52778 143056|0.5 143057|0.29167 143058|0.5 143059|0.47222 143060|0.083333 143061|0.36111 143062|0.23611 143063|0.22222 143064|0.54167 143065|0.19444 143066|0.15278 143067|0.25 143068|0.16667 143069|0.26389 143070|0.45833 143071|0.16667 143072|0.29167 143073|0.041667 143074|0.055556 143075|0.20833 143076|0.069444 143077|0.375 143078|0.11111 143079|0.30556 143080|0.18056 143081|0.041667 143082|0.23611 143083|0.125 143084|0.16667 143085|0.20833 143086|0.29167 143087|0.45833 143088|0.48611 143089|0.625 143090|0.63889 143091|0.58333 143092|0.38889 143093|0.125 143094|0.19444 143095|0.27778 143096|0.66667 143097|0.625 143098|0.375 143099|0.26389 143100|0.27778 143101|0.44444 143102|0.33333 143103|0.27778 143104|0.45833 143105|0.31944 143106|0.19444 143107|0.20833 143108|0.41667 143109|0.26389 143110|0.55556 143111|0.38889 143112|0.43056 143113|0.25 143114|0.22222 143115|0.23611 143116|0.34722 143117|0.33333 143118|0.19444 143119|0.18056 143120|0.77778 143121|0.58333 143122|0.55556 143123|0.27778 143124|0.36111 143125|0.16667 143126|0.23611 143127|0.83333 143128|0.47222 143129|0.38889 143130|0.41667 143131|0.20833 143132|0.20833 143133|0.79167 143134|0.18056 143135|0.69444 143136|0.36111 143137|0.27778 143138|0.26389 143139|0.20833 143140|0.36111 143141|0.51389 143142|0.38889 143143|0.70833 143144|0.66667 143145|0.30556 143146|0.15278 143147|0.31944 143148|0.20833 143149|0.5 143150|0.22222 143151|0.25 143152|0.68056 143153|0.22222 143154|0.375 143155|0.47222 143156|0.45833 143157|0.25 143158|0.27778 143159|0.45833 143160|0.36111 143161|0.15278 143162|0.13889 143163|0.15278 143164|0.31944 143165|0.34722 143166|0.36111 143167|0.41667 143168|0.33333 143169|0.34722 143170|0.43056 143171|0.41667 143172|0.22222 143173|0.27778 143174|0.34722 143175|0.30556 143176|0.11111 143177|0.38889 143178|0.31944 143179|0.22222 143180|0.20833 143181|0.27778 143182|0.19444 143183|0.16667 143184|0.15278 143185|0.26389 143186|0 143187|0.19444 143188|0.20833 143189|0.33333 143190|0.22222 143191|0.31944 143192|0.18056 143193|0.26389 143194|0.23611 143195|0.083333 143196|0.11111 143197|0.45833 143198|0.41667 143199|0.45833 143200|0.45833 143201|0.45833 143202|0.58333 143203|0.20833 143204|0.40278 143205|0.27778 143206|0.25 143207|0.36111 143208|0.375 143209|0.097222 143210|0.33333 143211|0.34722 143212|0.63889 143213|0.51389 143214|0.33333 143215|0.34722 143216|0.45833 143217|0.56944 143218|0.36111 143219|0.63889 143220|0.72222 143221|0.59722 143222|0.5 143223|0.22222 143224|0.40278 143225|0.19444 143226|0.27778 143227|0.30556 143228|0.41667 143229|0.055556 143230|0.31944 143231|0.25 143232|0.27778 143233|0.19444 143234|0.41667 143235|0.66667 143236|0.61111 143237|0.40278 143238|0.125 143239|0.54167 143240|0.26389 143241|0.23611 143242|0.25 143243|0.31944 143244|0.29167 143245|0.47222 143246|0.33333 143247|0.41667 143248|0.20833 143249|0.34722 143250|0.34722 143251|0.16667 143252|0.13889 143253|0.29167 143254|0.27778 143255|0.19444 143256|0.083333 143257|0.083333 143258|0.41667 143259|0.055556 143260|0.5 143261|0.30556 143262|0.25 143263|0.30556 143264|0.55556 143265|0.36111 143266|0.33333 143267|0.48611 143268|0.43056 143269|0.375 143270|0.125 143271|0.13889 143272|0.51389 143273|0.44444 143274|0.43056 143275|0.19444 143276|0.68056 143277|0.18056 143278|0.54167 143279|0.375 143280|0.22222 143281|0.27778 143282|0.31944 143283|0.26389 143284|0.45833 143285|0.22222 143286|0.15278 143287|0.33333 143288|0.48611 143289|0.33333 143290|0.38889 143291|0.61111 143292|0.43056 143293|0.40278 143294|0.5 143295|0.29167 143296|0.31944 143297|0.027778 143298|0.54167 143299|0.48611 143300|0.40278 143301|0.5 143302|0.45833 143303|0.31944 143304|0.41667 143305|0.34722 143306|0.51389 143307|0.5 143308|0.26389 143309|0.36111 143310|0.20833 143311|0.47222 143312|0.34722 143313|0.18056 143314|0.76389 143315|0.75 143316|0.65278 143317|0.59722 143318|0.68056 143319|0.48611 143320|0.625 143321|0.23611 143322|0.5 143323|0.22222 143324|0.36111 143325|0.375 143326|0.38889 143327|0.52778 143328|0.52778 143329|0.25 143330|0.083333 143331|0.31944 143332|0.125 143333|0.27778 143334|0.083333 143335|0.069444 143336|0.027778 143337|0.38889 143338|0.23611 143339|0.36111 143340|0.31944 143341|0.16667 143342|0.5 143343|0.29167 143344|0.47222 143345|0.48611 143346|0.34722 143347|0.26389 143348|0.40278 143349|0.15278 143350|0.23611 143351|0.22222 143352|0.097222 143353|0.27778 143354|0.29167 143355|0.20833 143356|0.72222 143357|0.66667 143358|0.38889 143359|0.375 143360|0.31944 143361|0.38889 143362|0.34722 143363|0.36111 143364|0.097222 143365|0.027778 143366|0.61111 143367|0.44444 143368|0.5 143369|0.44444 143370|0.38889 143371|0.19444 143372|0.47222 143373|0.30556 143374|0.34722 143375|0.61111 143376|0.61111 143377|0.61111 143378|0.38889 143379|0.51389 143380|0.44444 143381|0.44444 143382|0.47222 143383|0.63889 143384|0.30556 143385|0.15278 143386|0.29167 143387|0.59722 143388|0.875 143389|0.90278 143390|0.38889 143391|0.29167 143392|0.58333 143393|0.38889 143394|0.48611 143395|0.48611 143396|0.51389 143397|0.65278 143398|0.52778 143399|0.68056 143400|0.027778 143401|0.069444 143402|0.56944 143403|0.48611 143404|0.58333 143405|0.34722 143406|0.125 143407|0.083333 143408|0.33333 143409|0.27778 143410|0.34722 143411|0.25 143412|0.11111 143413|0.29167 143414|0.16667 143415|0.375 143416|0.18056 143417|0.40278 143418|0.30556 143419|0.13889 143420|0.19444 143421|0.54167 143422|0.38889 143423|0.43056 143424|0.31944 143425|0.11111 143426|0.23611 143427|0.51389 143428|0.31944 143429|0.72222 143430|0.63889 143431|0.59722 143432|0.58333 143433|0.45833 143434|0.44444 143435|0.33333 143436|0.30556 143437|0.41667 143438|0.47222 143439|0.41667 143440|0.36111 143441|0.22222 143442|0.26389 143443|0.29167 143444|0.23611 143445|0.36111 143446|0.5 143447|0.48611 143448|0.5 143449|0.61111 143450|0.52778 143451|0.52778 143452|0.5 143453|0.41667 143454|0.625 143455|0.34722 143456|0.38889 143457|0.44444 143458|0.38889 143459|0.5 143460|0.5 143461|0.41667 143462|0.19444 143463|0.375 143464|0.18056 143465|0.44444 143466|0.375 143467|0.097222 143468|0.5 143469|0.625 143470|0.069444 143471|0.5 143472|0.43056 143473|0.5 143474|0.61111 143475|0.23611 143476|0.18056 143477|0.26389 143478|0.16667 143479|0.47222 143480|0.18056 143481|0.27778 143482|0.5 143483|0.69444 143484|0.5 143485|0.52778 143486|0.5 143487|0.55556 143488|0.65278 143489|0.72222 143490|0.88889 143491|0.80556 143492|0.69444 143493|0.47222 143494|0.20833 143495|0.47222 143496|0.47222 143497|0.59722 143498|0.52778 143499|0.54167 143500|0.5 143501|0.52778 143502|0.52778 143503|0.52778 143504|0.375 143505|0.56944 143506|0.5 143507|0.5 143508|0.5 143509|0.097222 143510|0.15278 143511|0.13889 143512|0.13889 143513|0.055556 143514|0.11111 143515|0.375 143516|0.5 143517|0.19444 143518|0.16667 143519|0.375 143520|0.30556 143521|0.26389 143522|0.34722 143523|0.75 143524|0.69444 143525|0.68056 143526|0.61111 143527|0.47222 143528|0.34722 143529|0.41667 143530|0.58333 143531|0.47222 143532|0.34722 143533|0.33333 143534|0.47222 143535|0.38889 143536|0.125 143537|0.5 143538|0.31944 143539|0.65278 143540|0.375 143541|0.29167 143542|0.5 143543|0.15278 143544|0.51389 143545|0.30556 143546|0.56944 143547|0.13889 143548|0.45833 143549|0.5 143550|0.5 143551|0.5 143552|0.70833 143553|0.18056 143554|0.51389 143555|0.22222 143556|0.58333 143557|0.44444 143558|0.25 143559|0.38889 143560|0.56944 143561|0.23611 143562|0.55556 143563|0.5 143564|0.27778 143565|0.34722 143566|0.375 143567|0.31944 143568|0.13889 143569|0.5 143570|0.5 143571|0.5 143572|0.27778 143573|0.61111 143574|0.5 143575|0.45833 143576|0.22222 143577|0.5 143578|0.55556 143579|0.5 143580|0.59722 143581|0.5 143582|0.61111 143583|0.5 143584|0.56944 143585|0.5 143586|0.65278 143587|0.65278 143588|0.56944 143589|0.80556 143590|0.45833 143591|0.43056 143592|0.5 143593|0.16667 143594|0.51389 143595|0.5 143596|0.47222 143597|0.52778 143598|0.56944 143599|0.47222 143600|0.65278 143601|0.43056 143602|0.47222 143603|0.33333 143604|0.5 143605|0.625 143606|0.375 143607|0.5 143608|0.5 143609|0.58333 143610|0.61111 143611|0.34722 143612|0.65278 143613|0.625 143614|0.52778 143615|0.625 143616|0.34722 143617|0.31944 143618|0.5 143619|0.375 143620|0.22222 143621|0.44444 143622|0.51389 143623|0.375 143624|0.23611 143625|0.55556 143626|0.22222 143627|0.61111 143628|0.25 143629|0.45833 143630|0.55556 143631|0.16667 143632|0.5 143633|0.27778 143634|0.15278 143635|0.5 143636|0.23611 143637|0.5 143638|0.5 143639|0.5 143640|0.5 143641|0.5 143642|0.375 143643|0.23611 143644|0.125 143645|0.15278 143646|0.5 143647|0.5 143648|0.48611 143649|0.5 143650|0.5 143651|0.52778 143652|0.5 143653|0.47222 143654|0.52778 143655|0.59722 143656|0.56944 143657|0.45833 143658|0.20833 143659|0.65278 143660|0.29167 143661|0.72222 143662|0.31944 143663|0.45833 143664|0.125 143665|0.59722 143666|0.38889 143667|0.70833 143668|0.5 143669|0.31944 143670|0.25 143671|0.51389 143672|0.5 143673|0.5 143674|0.43056 143675|0.5 143676|0.22222 143677|0.59722 143678|0.5 143679|0.5 143680|0.5 143681|0.34722 143682|0.44444 143683|0.22222 143684|0.45833 143685|0.5 143686|0.48611 143687|0.48611 143688|0.5 143689|0.5 143690|0.54167 143691|0.52778 143692|0.5 143693|0.33333 143694|0.54167 143695|0.58333 143696|0.56944 143697|0.5 143698|0.5 143699|0.5 143700|0.5 143701|0.38889 143702|0.31944 143703|0.54167 143704|0.30556 143705|0.75 143706|0.22222 143707|0.33333 143708|0.11111 143709|0.44444 143710|0.13889 143711|0.33333 143712|0.16667 143713|0.26389 143714|0.27778 143715|0.25 143716|0.375 143717|0.20833 143718|0.31944 143719|0.31944 143720|0.23611 143721|0.30556 143722|0.45833 143723|0.31944 143724|0.61111 143725|0.61111 143726|0.47222 143727|0.45833 143728|0.43056 143729|0.61111 143730|0.76389 143731|0.5 143732|0.48611 143733|0.33333 143734|0.26389 143735|0.22222 143736|0.27778 143737|0.19444 143738|0.61111 143739|0.20833 143740|0.041667 143741|0.013889 143742|0.68056 143743|0.38889 143744|0.33333 143745|0.27778 143746|0.13889 143747|0.23611 143748|0.16667 143749|0.41667 143750|0.055556 143751|0.44444 143752|0.23611 143753|0.30556 143754|0.54167 143755|0.31944 143756|0.36111 143757|0.26389 143758|0.27778 143759|0.375 143760|0.31944 143761|0.027778 143762|0.33333 143763|0.30556 143764|0.31944 143765|0.013889 143766|0.083333 143767|0.23611 143768|0.20833 143769|0.40278 143770|0.375 143771|0.11111 143772|0.23611 143773|0.41667 143774|0.069444 143775|0.29167 143776|0.25 143777|0.54167 143778|0.51389 143779|0.40278 143780|0.20833 143781|0.22222 143782|0.73611 143783|0.66667 143784|0.5 143785|0.52778 143786|0.25 143787|0.22222 143788|0.30556 143789|0.34722 143790|0.18056 143791|0.23611 143792|0.22222 143793|0.31944 143794|0.40278 143795|0.23611 143796|0.48611 143797|0.5 143798|0.30556 143799|0.44444 143800|0.20833 143801|0.125 143802|0.76389 143803|0.31944 143804|0.5 143805|0.34722 143806|0.5 143807|0.5 143808|0.5 143809|0.30556 143810|0.44444 143811|0.26389 143812|0.40278 143813|0.55556 143814|0.5 143815|0.51389 143816|0.5 143817|0.55556 143818|0.20833 143819|0.16667 143820|0.29167 143821|0.22222 143822|0.31944 143823|0.38889 143824|0.30556 143825|0.375 143826|0.375 143827|0.5 143828|0.40278 143829|0.25 143830|0.40278 143831|0.30556 143832|0.33333 143833|0.29167 143834|0.5 143835|0.5 143836|0.5 143837|0.5 143838|0.40278 143839|0.31944 143840|0.19444 143841|0.097222 143842|0.5 143843|0.55556 143844|0.16667 143845|0.5 143846|0.22222 143847|0.38889 143848|0.15278 143849|0.22222 143850|0.20833 143851|0.083333 143852|0.61111 143853|0.48611 143854|0.54167 143855|0.59722 143856|0.48611 143857|0.19444 143858|0.27778 143859|0.23611 143860|0.23611 143861|0.43056 143862|0.26389 143863|0.5 143864|0.47222 143865|0.5 143866|0.27778 143867|0.5 143868|0.45833 143869|0.5 143870|0.31944 143871|0.43056 143872|0.625 143873|0.5 143874|0.55556 143875|0.27778 143876|0.5 143877|0.5 143878|0.33333 143879|0.13889 143880|0.36111 143881|0.19444 143882|0.51389 143883|0.29167 143884|0.38889 143885|0.18056 143886|0.38889 143887|0.63889 143888|0.54167 143889|0.55556 143890|0.54167 143891|0.5 143892|0.31944 143893|0.47222 143894|0.51389 143895|0.27778 143896|0.48611 143897|0.55556 143898|0.41667 143899|0.5 143900|0.19444 143901|0.76389 143902|0.16667 143903|0.52778 143904|0.66667 143905|0.33333 143906|0.45833 143907|0.31944 143908|0.47222 143909|0.41667 143910|0.45833 143911|0.26389 143912|0.56944 143913|0.75 143914|0.66667 143915|0.55556 143916|0.375 143917|0.41667 143918|0.43056 143919|0.25 143920|0.44444 143921|0.31944 143922|0.45833 143923|0.34722 143924|0.31944 143925|0.22222 143926|0.44444 143927|0.19444 143928|0.51389 143929|0.26389 143930|0.25 143931|0.5 143932|0.5 143933|0.5 143934|0.51389 143935|0.36111 143936|0.29167 143937|0.41667 143938|0.22222 143939|0.5 143940|0.73611 143941|0.68056 143942|0.65278 143943|0.33333 143944|0.20833 143945|0.26389 143946|0.16667 143947|0.19444 143948|0.26389 143949|0.5 143950|0.27778 143951|0.055556 143952|0.34722 143953|0.5 143954|0.26389 143955|0.27778 143956|0.72222 143957|0.63889 143958|0.66667 143959|0.20833 143960|0.38889 143961|0.38889 143962|0.47222 143963|0.51389 143964|0.41667 143965|0.22222 143966|0.5 143967|0.5 143968|0.20833 143969|0.34722 143970|0.30556 143971|0.26389 143972|0.16667 143973|0.27778 143974|0.44444 143975|0.5 143976|0.5 143977|0.48611 143978|0.5 143979|0.5 143980|0.5 143981|0.52778 143982|0.11111 143983|0.625 143984|0.51389 143985|0.5 143986|0.55556 143987|0.055556 143988|0.26389 143989|0.38889 143990|0.5 143991|0.33333 143992|0.31944 143993|0.33333 143994|0.31944 143995|0.51389 143996|0.5 143997|0.54167 143998|0.16667 143999|0.27778 144000|0.33333 144001|0.15278 144002|0.31944 144003|0.19444 144004|0.25 144005|0.055556 144006|0.375 144007|0.19444 144008|0.16667 144009|0.13889 144010|0.013889 144011|0 144012|0.34722 144013|0.18056 144014|0.38889 144015|0.22222 144016|0.5 144017|0.38889 144018|0.20833 144019|0.18056 144020|0.125 144021|0.19444 144022|0 144023|0.055556 144024|0.22222 144025|0.097222 144026|0.5 144027|0.5 144028|0.61111 144029|0.5 144030|0.375 144031|0.26389 144032|0.41667 144033|0.5 144034|0.5 144035|0.47222 144036|0.22222 144037|0.5 144038|0.5 144039|0.27778 144040|0.5 144041|0.5 144042|0.72222 144043|0.51389 144044|0.5 144045|0.5 144046|0.5 144047|0.45833 144048|0.15278 144049|0.26389 144050|0.5 144051|0.40278 144052|0.5 144053|0.47222 144054|0.55556 144055|0.375 144056|0.56944 144057|0.5 144058|0.38889 144059|0.5 144060|0.5 144061|0.5 144062|0.51389 144063|0.13889 144064|0.55556 144065|0.5 144066|0.40278 144067|0.19444 144068|0.13889 144069|0.51389 144070|0.15278 144071|0.069444 144072|0.58333 144073|0.5 144074|0.5 144075|0.5 144076|0.5 144077|0.19444 144078|0.22222 144079|0.5 144080|0.47222 144081|0.54167 144082|0.27778 144083|0.5 144084|0.5 144085|0.72222 144086|0.40278 144087|0.48611 144088|0.61111 144089|0.48611 144090|0.66667 144091|0.38889 144092|0.5 144093|0.51389 144094|0.5 144095|0.5 144096|0.27778 144097|0.097222 144098|0.16667 144099|0.11111 144100|0.51389 144101|0.29167 144102|0.5 144103|0.52778 144104|0.54167 144105|0.59722 144106|0.44444 144107|0.5 144108|0.5 144109|0.055556 144110|0.65278 144111|0.27778 144112|0.55556 144113|0.48611 144114|0.54167 144115|0.625 144116|0.5 144117|0.47222 144118|0.5 144119|0.5 144120|0.38889 144121|0.5 144122|0.68056 144123|0.51389 144124|0.45833 144125|0.5 144126|0.5 144127|0.56944 144128|0.5 144129|0.48611 144130|0.84722 144131|0.83333 144132|0.5 144133|0.5 144134|0.055556 144135|0.15278 144136|0.27778 144137|0.55556 144138|0.22222 144139|0.52778 144140|0.31944 144141|0.5 144142|0.38889 144143|0.5 144144|0.5 144145|0.5 144146|0.5 144147|0.47222 144148|0.5 144149|0.43056 144150|0.23611 144151|0.19444 144152|0.59722 144153|0.45833 144154|0.5 144155|0.51389 144156|0.58333 144157|0.25 144158|0.66667 144159|0.5 144160|0.27778 144161|0.63889 144162|0.70833 144163|0.48611 144164|0.26389 144165|0.25 144166|0.61111 144167|0.52778 144168|0.5 144169|0.5 144170|0.59722 144171|0.5 144172|0.76389 144173|0.48611 144174|0.5 144175|0.5 144176|0.31944 144177|0.76389 144178|0.625 144179|0.70833 144180|0.59722 144181|0.25 144182|0.18056 144183|0.26389 144184|0.44444 144185|0.54167 144186|0.5 144187|0.33333 144188|0.48611 144189|0.83333 144190|0.5 144191|0.5 144192|0.5 144193|0.5 144194|0.5 144195|0.5 144196|0.5 144197|0.20833 144198|0.65278 144199|0.77778 144200|0.70833 144201|0.56944 144202|0.33333 144203|0.31944 144204|0.51389 144205|0.51389 144206|0.5 144207|0.52778 144208|0.5 144209|0.43056 144210|0.5 144211|0.15278 144212|0.34722 144213|0.5 144214|0.5 144215|0.51389 144216|0.33333 144217|0.27778 144218|0.40278 144219|0.5 144220|0.75 144221|0.65278 144222|0.63889 144223|0.44444 144224|0.55556 144225|0.68056 144226|0.47222 144227|0.22222 144228|0.38889 144229|0.25 144230|0.5 144231|0.5 144232|0.5 144233|0.5 144234|0.16667 144235|0.52778 144236|0.5 144237|0.34722 144238|0.29167 144239|0.5 144240|0.5 144241|0.29167 144242|0.27778 144243|0.23611 144244|0.56944 144245|0.66667 144246|0.65278 144247|0.58333 144248|0.69444 144249|0.375 144250|0.5 144251|0.5 144252|0.5 144253|0.5 144254|0.5 144255|0.5 144256|0.48611 144257|0.5 144258|0.5 144259|0.5 144260|0.44444 144261|0.54167 144262|0.5 144263|0.52778 144264|0.51389 144265|0.5 144266|0.5 144267|0.38889 144268|0.43056 144269|0.5 144270|0.81944 144271|0.5 144272|0.54167 144273|0.48611 144274|0.5 144275|0.5 144276|0.25 144277|0.5 144278|0.44444 144279|0.48611 144280|0.51389 144281|0.65278 144282|0.45833 144283|0.43056 144284|0.5 144285|0.5 144286|0.56944 144287|0.47222 144288|0.45833 144289|0.59722 144290|0.23611 144291|0.19444 144292|0.5 144293|0.5 144294|0.51389 144295|0.38889 144296|0.34722 144297|0.5 144298|0.375 144299|0.59722 144300|0.5 144301|0.44444 144302|0.13889 144303|0.23611 144304|0.38889 144305|0.47222 144306|0.44444 144307|0.51389 144308|0.44444 144309|0.29167 144310|0.18056 144311|0.30556 144312|0.44444 144313|0.27778 144314|0.55556 144315|0.48611 144316|0.48611 144317|0.27778 144318|0.51389 144319|0.27778 144320|0.25 144321|0.20833 144322|0.38889 144323|0.36111 144324|0.18056 144325|0.083333 144326|0.38889 144327|0.55556 144328|0.44444 144329|0.5 144330|0.5 144331|0.5 144332|0.40278 144333|0.5 144334|0.5 144335|0.45833 144336|0.5 144337|0.5 144338|0.45833 144339|0.5 144340|0.47222 144341|0.375 144342|0.45833 144343|0.58333 144344|0.31944 144345|0.59722 144346|0.5 144347|0.5 144348|0.55556 144349|0.23611 144350|0.51389 144351|0.5 144352|0.5 144353|0.58333 144354|0.25 144355|0.069444 144356|0.44444 144357|0.22222 144358|0.041667 144359|0.5 144360|0.5 144361|0.51389 144362|0.45833 144363|0.55556 144364|0.5 144365|0.5 144366|0.5 144367|0.5 144368|0.36111 144369|0.5 144370|0.55556 144371|0.75 144372|0.66667 144373|0.68056 144374|0.38889 144375|0.34722 144376|0.5 144377|0.5 144378|0.44444 144379|0.36111 144380|0.33333 144381|0.55556 144382|0.52778 144383|0.54167 144384|0.5 144385|0.40278 144386|0.56944 144387|0.43056 144388|0.27778 144389|0.20833 144390|0.52778 144391|0.55556 144392|0.63889 144393|0.5 144394|0.5 144395|0.5 144396|0.5 144397|0.31944 144398|0.5 144399|0.5 144400|0.5 144401|0.30556 144402|0.5 144403|0.47222 144404|0.5 144405|0.56944 144406|0.083333 144407|0.5 144408|0.31944 144409|0.38889 144410|0.26389 144411|0.5 144412|0.5 144413|0.5 144414|0.33333 144415|0.34722 144416|0.45833 144417|0.5 144418|0.5 144419|0.5 144420|0.54167 144421|0.47222 144422|0.5 144423|0.5 144424|0.90278 144425|0.5 144426|0.5 144427|0.5 144428|0.5 144429|0.26389 144430|0.5 144431|0.51389 144432|0.5 144433|0.5 144434|0.43056 144435|0.41667 144436|0.5 144437|0.5 144438|0.125 144439|0.5 144440|0.5 144441|0.20833 144442|0.55556 144443|0.52778 144444|0.5 144445|0.5 144446|0.5 144447|0.52778 144448|0.5 144449|0.47222 144450|0.54167 144451|0.5 144452|0.5 144453|0.34722 144454|0.5 144455|0.75 144456|0.72222 144457|0.58333 144458|0.31944 144459|0.5 144460|0.52778 144461|0.59722 144462|0.52778 144463|0.43056 144464|0.13889 144465|0.27778 144466|0.22222 144467|0.5 144468|0.48611 144469|0.61111 144470|0.5 144471|0.41667 144472|0.29167 144473|0.29167 144474|0.22222 144475|0.18056 144476|0.18056 144477|0.54167 144478|0.5 144479|0.56944 144480|0.56944 144481|0.5 144482|0.44444 144483|0.56944 144484|0.5 144485|0.51389 144486|0.5 144487|0.51389 144488|0.48611 144489|0.5 144490|0.51389 144491|0.5 144492|0.44444 144493|0.36111 144494|0.5 144495|0.5 144496|0.5 144497|0.54167 144498|0.16667 144499|0.5 144500|0.375 144501|0.15278 144502|0.59722 144503|0.5 144504|0.69444 144505|0.54167 144506|0.47222 144507|0.27778 144508|0.40278 144509|0.5 144510|0.48611 144511|0.5 144512|0.38889 144513|0.29167 144514|0.52778 144515|0.5 144516|0.5 144517|0.72222 144518|0.83333 144519|0.40278 144520|0.55556 144521|0.54167 144522|0.5 144523|0.5 144524|0.40278 144525|0.30556 144526|0.23611 144527|0.5 144528|0.375 144529|0.44444 144530|0.52778 144531|0.41667 144532|0.45833 144533|0.5 144534|0.5 144535|0.38889 144536|0.55556 144537|0.5 144538|0.5 144539|0.54167 144540|0.125 144541|0.36111 144542|0.125 144543|0.083333 144544|0.5 144545|0.40278 144546|0.5 144547|0.5 144548|0.5 144549|0.5 144550|0.5 144551|0.375 144552|0.36111 144553|0.51389 144554|0.59722 144555|0.52778 144556|0.5 144557|0.34722 144558|0.5 144559|0.34722 144560|0.16667 144561|0.44444 144562|0.20833 144563|0.23611 144564|0.59722 144565|0.54167 144566|0.38889 144567|0.55556 144568|0.40278 144569|0.5 144570|0.31944 144571|0.55556 144572|0.34722 144573|0.20833 144574|0.26389 144575|0.34722 144576|0.26389 144577|0.055556 144578|0.59722 144579|0.36111 144580|0.61111 144581|0.47222 144582|0.083333 144583|0.097222 144584|0.47222 144585|0.45833 144586|0.40278 144587|0.34722 144588|0.16667 144589|0.20833 144590|0.5 144591|0.5 144592|0.52778 144593|0.41667 144594|0.59722 144595|0.23611 144596|0.22222 144597|0.5 144598|0.23611 144599|0.69444 144600|0.58333 144601|0.27778 144602|0.26389 144603|0.5 144604|0.43056 144605|0.5 144606|0.25 144607|0.29167 144608|0.19444 144609|0.15278 144610|0.5 144611|0.5 144612|0.63889 144613|0.47222 144614|0.44444 144615|0.27778 144616|0.5 144617|0.51389 144618|0.5 144619|0.38889 144620|0.45833 144621|0.375 144622|0.27778 144623|0.26389 144624|0.5 144625|0.5 144626|0.11111 144627|0.19444 144628|0.5 144629|0.5 144630|0.27778 144631|0.23611 144632|0.5 144633|0.5 144634|0.34722 144635|0.26389 144636|0.41667 144637|0.5 144638|0.18056 144639|0.22222 144640|0.25 144641|0.22222 144642|0.625 144643|0.5 144644|0.5 144645|0.26389 144646|0.26389 144647|0.625 144648|0.55556 144649|0.30556 144650|0.25 144651|0.23611 144652|0.19444 144653|0.20833 144654|0.68056 144655|0.69444 144656|0.59722 144657|0.61111 144658|0.23611 144659|0.27778 144660|0.30556 144661|0.52778 144662|0.47222 144663|0.5 144664|0.68056 144665|0.5 144666|0.59722 144667|0.11111 144668|0.43056 144669|0.45833 144670|0.36111 144671|0.38889 144672|0.33333 144673|0.5 144674|0.41667 144675|0.55556 144676|0.26389 144677|0.5 144678|0.52778 144679|0.31944 144680|0.47222 144681|0.56944 144682|0.45833 144683|0.5 144684|0.5 144685|0.5 144686|0.5 144687|0.70833 144688|0.61111 144689|0.70833 144690|0.5 144691|0.5 144692|0.5 144693|0.5 144694|0.47222 144695|0.5 144696|0.875 144697|0.5 144698|0.375 144699|0.5 144700|0.5 144701|0.5 144702|0.52778 144703|0.45833 144704|0.23611 144705|0.44444 144706|0.44444 144707|0.31944 144708|0.31944 144709|0.26389 144710|0.29167 144711|0.25 144712|0.5 144713|0.5 144714|0.5 144715|0.81944 144716|0.88889 144717|0.51389 144718|0.5 144719|0.86111 144720|0.77778 144721|0.70833 144722|0.36111 144723|0.61111 144724|0.26389 144725|0.27778 144726|0.45833 144727|0.041667 144728|0.13889 144729|0.13889 144730|0.47222 144731|0.27778 144732|0.13889 144733|0.5 144734|0.5 144735|0.40278 144736|0.5 144737|0.5 144738|0.52778 144739|0.375 144740|0.38889 144741|0.33333 144742|0.18056 144743|0.097222 144744|0.18056 144745|0.22222 144746|0.19444 144747|0.54167 144748|0.5 144749|0.59722 144750|0.56944 144751|0.44444 144752|0.34722 144753|0.51389 144754|0.58333 144755|0.56944 144756|0.22222 144757|0.22222 144758|0.375 144759|0.5 144760|0.48611 144761|0.36111 144762|0.23611 144763|0.52778 144764|0.44444 144765|0.22222 144766|0.5 144767|0.5 144768|0.5 144769|0.73611 144770|0.47222 144771|0.56944 144772|0.56944 144773|0.47222 144774|0.56944 144775|0.5 144776|0.19444 144777|0.58333 144778|0.5 144779|0.19444 144780|0.5 144781|0.55556 144782|0.5 144783|0.5 144784|0.45833 144785|0.15278 144786|0.31944 144787|0.30556 144788|0.34722 144789|0.22222 144790|0.52778 144791|0.27778 144792|0.38889 144793|0.20833 144794|0.47222 144795|0.43056 144796|0.54167 144797|0.36111 144798|0.47222 144799|0.22222 144800|0.55556 144801|0.40278 144802|0.51389 144803|0.52778 144804|0.66667 144805|0.45833 144806|0.44444 144807|0.54167 144808|0.33333 144809|0.55556 144810|0.66667 144811|0.5 144812|0.23611 144813|0.56944 144814|0.23611 144815|0.5 144816|0.26389 144817|0.44444 144818|0.5 144819|0.5 144820|0.625 144821|0.68056 144822|0.5 144823|0.27778 144824|0.51389 144825|0.41667 144826|0.40278 144827|0.30556 144828|0.27778 144829|0.73611 144830|0.76389 144831|0.56944 144832|0.11111 144833|0.5 144834|0.44444 144835|0.43056 144836|0.5 144837|0.41667 144838|0.33333 144839|0.5 144840|0.5 144841|0.40278 144842|0.36111 144843|0.31944 144844|0.20833 144845|0.20833 144846|0.55556 144847|0.56944 144848|0.30556 144849|0.47222 144850|0.43056 144851|0.22222 144852|0.5 144853|0.59722 144854|0.5 144855|0.5 144856|0.41667 144857|0.5 144858|0.41667 144859|0.5 144860|0.5 144861|0.48611 144862|0.45833 144863|0.375 144864|0.5 144865|0.5 144866|0.47222 144867|0.54167 144868|0.5 144869|0.5 144870|0.38889 144871|0.5 144872|0.75 144873|0.63889 144874|0.43056 144875|0.34722 144876|0.5 144877|0.41667 144878|0.5 144879|0.5 144880|0.5 144881|0.30556 144882|0.5 144883|0.25 144884|0.5 144885|0.43056 144886|0.29167 144887|0.5 144888|0.5 144889|0.5 144890|0.5 144891|0.52778 144892|0.47222 144893|0.68056 144894|0.45833 144895|0.375 144896|0.5 144897|0.38889 144898|0.23611 144899|0.40278 144900|0.59722 144901|0.19444 144902|0.41667 144903|0.41667 144904|0.56944 144905|0.23611 144906|0.47222 144907|0.45833 144908|0.47222 144909|0.23611 144910|0.30556 144911|0.30556 144912|0.23611 144913|0.125 144914|0.13889 144915|0.083333 144916|0.027778 144917|0.41667 144918|0.43056 144919|0.5 144920|0.44444 144921|0.26389 144922|0.44444 144923|0.30556 144924|0.125 144925|0.125 144926|0.41667 144927|0.125 144928|0.33333 144929|0.31944 144930|0.5 144931|0.43056 144932|0.36111 144933|0.30556 144934|0.20833 144935|0.23611 144936|0.23611 144937|0.23611 144938|0.34722 144939|0.18056 144940|0.27778 144941|0.20833 144942|0.30556 144943|0.58333 144944|0.56944 144945|0.47222 144946|0.20833 144947|0.33333 144948|0.55556 144949|0.5 144950|0.5 144951|0.5 144952|0.43056 144953|0.48611 144954|0.59722 144955|0.5 144956|0.5 144957|0.5 144958|0.625 144959|0.45833 144960|0.55556 144961|0.38889 144962|0.75 144963|0.51389 144964|0.25 144965|0.25 144966|0.54167 144967|0.40278 144968|0.47222 144969|0.5 144970|0.43056 144971|0.5 144972|0.44444 144973|0.16667 144974|0.11111 144975|0.19444 144976|0.5 144977|0.33333 144978|0.23611 144979|0.52778 144980|0.30556 144981|0.47222 144982|0.125 144983|0.23611 144984|0.33333 144985|0.48611 144986|0.26389 144987|0.22222 144988|0.13889 144989|0.18056 144990|0.5 144991|0.55556 144992|0.48611 144993|0.36111 144994|0.40278 144995|0.61111 144996|0.5 144997|0.5 144998|0.65278 144999|0.47222 145000|0.27778 145001|0.29167 145002|0.34722 145003|0.20833 145004|0.125 145005|0.20833 145006|0.58333 145007|0.5 145008|0.625 145009|0.5 145010|0.61111 145011|0.48611 145012|0.5 145013|0.5 145014|0.55556 145015|0.5 145016|0.5 145017|0.5 145018|0.55556 145019|0.52778 145020|0.5 145021|0.33333 145022|0.43056 145023|0.44444 145024|0.48611 145025|0.45833 145026|0.22222 145027|0.23611 145028|0.23611 145029|0.5 145030|0.38889 145031|0.47222 145032|0.81944 145033|0.72222 145034|0.77778 145035|0.41667 145036|0.625 145037|0.69444 145038|0.5 145039|0.44444 145040|0.13889 145041|0.13889 145042|0.52778 145043|0.5 145044|0.54167 145045|0.375 145046|0.54167 145047|0.5 145048|0.5 145049|0.5 145050|0.61111 145051|0.5 145052|0.27778 145053|0.81944 145054|0.52778 145055|0.58333 145056|0.36111 145057|0.40278 145058|0.5 145059|0.5 145060|0.5 145061|0.38889 145062|0.5 145063|0.5 145064|0.5 145065|0.5 145066|0.5 145067|0.56944 145068|0.375 145069|0.5 145070|0.5 145071|0.51389 145072|0.041667 145073|0.40278 145074|0.59722 145075|0.58333 145076|0.27778 145077|0.5 145078|0.5 145079|0.45833 145080|0.5 145081|0.375 145082|0.51389 145083|0.5 145084|0.5 145085|0.41667 145086|0.51389 145087|0.69444 145088|0.79167 145089|0.36111 145090|0.44444 145091|0.38889 145092|0.5 145093|0.5 145094|0.55556 145095|0.40278 145096|0.56944 145097|0.59722 145098|0.22222 145099|0.375 145100|0.22222 145101|0.36111 145102|0.097222 145103|0.5 145104|0.5 145105|0.38889 145106|0.61111 145107|0.5 145108|0.51389 145109|0.5 145110|0.5 145111|0.54167 145112|0.51389 145113|0.5 145114|0.5 145115|0.5 145116|0.52778 145117|0.51389 145118|0.5 145119|0.47222 145120|0.31944 145121|0.45833 145122|0.41667 145123|0.61111 145124|0.5 145125|0.5 145126|0.5 145127|0.38889 145128|0.43056 145129|0.51389 145130|0.44444 145131|0.375 145132|0.13889 145133|0.5 145134|0.5 145135|0.58333 145136|0.5 145137|0.61111 145138|0.5 145139|0.54167 145140|0.38889 145141|0.20833 145142|0.34722 145143|0.38889 145144|0.47222 145145|0.45833 145146|0.27778 145147|0.33333 145148|0.44444 145149|0.15278 145150|0.19444 145151|0.16667 145152|0.54167 145153|0.44444 145154|0.16667 145155|0.31944 145156|0.40278 145157|0.625 145158|0.25 145159|0.33333 145160|0.25 145161|0.125 145162|0.31944 145163|0.27778 145164|0.31944 145165|0.47222 145166|0.43056 145167|0.59722 145168|0.25 145169|0.25 145170|0.55556 145171|0.58333 145172|0.36111 145173|0.38889 145174|0.41667 145175|0.33333 145176|0.56944 145177|0.31944 145178|0.125 145179|0.25 145180|0.36111 145181|0.22222 145182|0.33333 145183|0.56944 145184|0.31944 145185|0.13889 145186|0.38889 145187|0.26389 145188|0.5 145189|0.31944 145190|0.5 145191|0.31944 145192|0.29167 145193|0.52778 145194|0.20833 145195|0.13889 145196|0.65278 145197|0.22222 145198|0.44444 145199|0.56944 145200|0.11111 145201|0 145202|0.33333 145203|0.15278 145204|0.375 145205|0.47222 145206|0.22222 145207|0.5 145208|0.5 145209|0.30556 145210|0.31944 145211|0.72222 145212|0.25 145213|0.51389 145214|0.58333 145215|0.45833 145216|0.73611 145217|0.5 145218|0.66667 145219|0.5 145220|0.68056 145221|0.58333 145222|0.72222 145223|0.86111 145224|0.83333 145225|0.30556 145226|0.29167 145227|0.22222 145228|0.16667 145229|0.36111 145230|0.5 145231|0.59722 145232|0.15278 145233|0.26389 145234|0.44444 145235|0.26389 145236|0.13889 145237|0.34722 145238|0.20833 145239|0.36111 145240|0.33333 145241|0.26389 145242|0.20833 145243|0.27778 145244|0.19444 145245|0.19444 145246|0.055556 145247|0.34722 145248|0.18056 145249|0.55556 145250|0.5 145251|0.26389 145252|0.66667 145253|0.5 145254|0.44444 145255|0.375 145256|0.375 145257|0.5 145258|0.41667 145259|0.27778 145260|0.25 145261|0.55556 145262|0.20833 145263|0.30556 145264|0.25 145265|0.625 145266|0.22222 145267|0.30556 145268|0.70833 145269|0.54167 145270|0.55556 145271|0.55556 145272|0.73611 145273|0.23611 145274|0.26389 145275|0.5 145276|0.31944 145277|0.20833 145278|0.18056 145279|0.20833 145280|0.48611 145281|0.5 145282|0.51389 145283|0.5 145284|0.5 145285|0.5 145286|0.5 145287|0.5 145288|0.5 145289|0.5 145290|0.52778 145291|0.38889 145292|0.56944 145293|0.5 145294|0.52778 145295|0.47222 145296|0.5 145297|0.34722 145298|0.70833 145299|0.75 145300|0.47222 145301|0.5 145302|0.48611 145303|0.20833 145304|0.5 145305|0.30556 145306|0.38889 145307|0.83333 145308|0.30556 145309|0.23611 145310|0.19444 145311|0.38889 145312|0.27778 145313|0.30556 145314|0.52778 145315|0.25 145316|0.34722 145317|0.11111 145318|0.16667 145319|0.30556 145320|0.43056 145321|0.26389 145322|0.22222 145323|0.5 145324|0.44444 145325|0.5 145326|0.16667 145327|0.5 145328|0.5 145329|0.5 145330|0.38889 145331|0.38889 145332|0.48611 145333|0.61111 145334|0.63889 145335|0.45833 145336|0.45833 145337|0.5 145338|0.027778 145339|0.19444 145340|0.5 145341|0.45833 145342|0.29167 145343|0.23611 145344|0.26389 145345|0.23611 145346|0.23611 145347|0.5 145348|0.43056 145349|0.5 145350|0.44444 145351|0.5 145352|0.54167 145353|0.125 145354|0.27778 145355|0.63889 145356|0.61111 145357|0.40278 145358|0.375 145359|0.65278 145360|0.52778 145361|0.63889 145362|0.5 145363|0.44444 145364|0.38889 145365|0.38889 145366|0.36111 145367|0.44444 145368|0.5 145369|0.27778 145370|0.33333 145371|0.16667 145372|0.61111 145373|0.23611 145374|0.26389 145375|0.375 145376|0.68056 145377|0.68056 145378|0.31944 145379|0.5 145380|0.33333 145381|0.47222 145382|0.34722 145383|0.375 145384|0.5 145385|0.70833 145386|0.55556 145387|0.5 145388|0.38889 145389|0.52778 145390|0.56944 145391|0.38889 145392|0.375 145393|0.20833 145394|0.36111 145395|0.45833 145396|0.22222 145397|0.5 145398|0.38889 145399|0.36111 145400|0.34722 145401|0.5 145402|0.41667 145403|0.51389 145404|0.45833 145405|0.5 145406|0.34722 145407|0.56944 145408|0.375 145409|0.44444 145410|0.29167 145411|0.51389 145412|0.23611 145413|0.55556 145414|0.27778 145415|0.31944 145416|0.27778 145417|0.75 145418|0.66667 145419|0.30556 145420|0.5 145421|0.36111 145422|0.5 145423|0.055556 145424|0.55556 145425|0.45833 145426|0.51389 145427|0.27778 145428|0.48611 145429|0.19444 145430|0.44444 145431|0.36111 145432|0.54167 145433|0.22222 145434|0.48611 145435|0.22222 145436|0.5 145437|0.38889 145438|0.31944 145439|0.375 145440|0.097222 145441|0.055556 145442|0.59722 145443|0.30556 145444|0.5 145445|0.33333 145446|0.66667 145447|0.38889 145448|0.36111 145449|0.51389 145450|0.58333 145451|0.27778 145452|0.31944 145453|0.40278 145454|0.34722 145455|0.20833 145456|0.33333 145457|0.25 145458|0.81944 145459|0.5 145460|0.5 145461|0.5 145462|0.5 145463|0.16667 145464|0.375 145465|0.38889 145466|0.54167 145467|0.27778 145468|0.5 145469|0.5 145470|0.5 145471|0.36111 145472|0.13889 145473|0 145474|0.5 145475|0.5 145476|0.5 145477|0.5 145478|0.40278 145479|0.5 145480|0.5 145481|0.19444 145482|0.23611 145483|0.45833 145484|0.5 145485|0.5 145486|0.38889 145487|0.52778 145488|0.5 145489|0.5 145490|0.47222 145491|0.5 145492|0.44444 145493|0.36111 145494|0.29167 145495|0.43056 145496|0.5 145497|0.83333 145498|0.56944 145499|0.5 145500|0.38889 145501|0.30556 145502|0.16667 145503|0.31944 145504|0.27778 145505|0.59722 145506|0.55556 145507|0.20833 145508|0.54167 145509|0.5 145510|0.41667 145511|0.29167 145512|0.33333 145513|0.38889 145514|0.31944 145515|0.5 145516|0.47222 145517|0.29167 145518|0.34722 145519|0.33333 145520|0.41667 145521|0.48611 145522|0.5 145523|0.51389 145524|0.5 145525|0.58333 145526|0.58333 145527|0.5 145528|0.58333 145529|0.5 145530|0.19444 145531|0.5 145532|0.41667 145533|0.5 145534|0.43056 145535|0.45833 145536|0.27778 145537|0.47222 145538|0.44444 145539|0.44444 145540|0.13889 145541|0.5 145542|0.5 145543|0.51389 145544|0.52778 145545|0.44444 145546|0.23611 145547|0.58333 145548|0.5 145549|0.56944 145550|0.44444 145551|0.55556 145552|0.5 145553|0.5 145554|0.5 145555|0.5 145556|0.5 145557|0.61111 145558|0.125 145559|0.23611 145560|0.38889 145561|0.375 145562|0.5 145563|0.5 145564|0.65278 145565|0.5 145566|0.55556 145567|0.47222 145568|0.5 145569|0.44444 145570|0.5 145571|0.5 145572|0.5 145573|0.5 145574|0.55556 145575|0.375 145576|0.5 145577|0.31944 145578|0.055556 145579|0.31944 145580|0.20833 145581|0.48611 145582|0.54167 145583|0.52778 145584|0.5 145585|0.5 145586|0.47222 145587|0.44444 145588|0.47222 145589|0.29167 145590|0.23611 145591|0.26389 145592|0.5 145593|0.5 145594|0.48611 145595|0.61111 145596|0.83333 145597|0.30556 145598|0.51389 145599|0.30556 145600|0.54167 145601|0.125 145602|0.27778 145603|0.27778 145604|0.47222 145605|0.5 145606|0.16667 145607|0.18056 145608|0.16667 145609|0.33333 145610|0.055556 145611|0.16667 145612|0.013889 145613|0.083333 145614|0.41667 145615|0.22222 145616|0.23611 145617|0.19444 145618|0.5 145619|0.375 145620|0.27778 145621|0.33333 145622|0.22222 145623|0.31944 145624|0.055556 145625|0.625 145626|0.66667 145627|0.61111 145628|0.65278 145629|0.20833 145630|0.5 145631|0.33333 145632|0.43056 145633|0.5 145634|0.5 145635|0.5 145636|0.45833 145637|0.5 145638|0.47222 145639|0.5 145640|0.58333 145641|0.5 145642|0.5 145643|0.79167 145644|0.84722 145645|0.27778 145646|0.40278 145647|0.52778 145648|0.41667 145649|0.5 145650|0.27778 145651|0.18056 145652|0.5 145653|0.66667 145654|0.5 145655|0.43056 145656|0.5 145657|0.40278 145658|0.5 145659|0.5 145660|0.34722 145661|0.26389 145662|0.51389 145663|0.5 145664|0.52778 145665|0.5 145666|0.47222 145667|0.48611 145668|0.44444 145669|0.61111 145670|0.5 145671|0.40278 145672|0.5 145673|0.52778 145674|0.5 145675|0.19444 145676|0.5 145677|0.44444 145678|0.52778 145679|0.51389 145680|0.5 145681|0.33333 145682|0.55556 145683|0.5 145684|0.34722 145685|0.5 145686|0.5 145687|0.5 145688|0.56944 145689|0.18056 145690|0.41667 145691|0.5 145692|0.48611 145693|0.5 145694|0.5 145695|0.66667 145696|0.5 145697|0.56944 145698|0.72222 145699|0.54167 145700|0.33333 145701|0.25 145702|0.375 145703|0.36111 145704|0.29167 145705|0.40278 145706|0.43056 145707|0.5 145708|0.45833 145709|0.44444 145710|0.58333 145711|0.5 145712|0.5 145713|0.54167 145714|0.5 145715|0.44444 145716|0.63889 145717|0.72222 145718|0.68056 145719|0.38889 145720|0.68056 145721|0.55556 145722|0.52778 145723|0.43056 145724|0.56944 145725|0.52778 145726|0.31944 145727|0.5 145728|0.44444 145729|0.5 145730|0.5 145731|0.43056 145732|0.30556 145733|0.43056 145734|0.375 145735|0.19444 145736|0.73611 145737|0.40278 145738|0.41667 145739|0.29167 145740|0.26389 145741|0.55556 145742|0.55556 145743|0.5 145744|0.41667 145745|0.41667 145746|0.47222 145747|0.51389 145748|0.375 145749|0.5 145750|0.68056 145751|0.5 145752|0.5 145753|0.5 145754|0.51389 145755|0.48611 145756|0.5 145757|0.29167 145758|0.45833 145759|0.47222 145760|0.43056 145761|0.5 145762|0.22222 145763|0.375 145764|0.30556 145765|0.84722 145766|0.23611 145767|0.5 145768|0.5 145769|0.45833 145770|0.47222 145771|0.34722 145772|0.44444 145773|0.40278 145774|0.34722 145775|0.29167 145776|0.27778 145777|0.36111 145778|0.45833 145779|0.54167 145780|0.5 145781|0.58333 145782|0.20833 145783|0.27778 145784|0.41667 145785|0.5 145786|0.45833 145787|0.27778 145788|0.36111 145789|0.47222 145790|0.56944 145791|0.5 145792|0.40278 145793|0.5 145794|0.54167 145795|0.30556 145796|0.5 145797|0.41667 145798|0.56944 145799|0.33333 145800|0.54167 145801|0.29167 145802|0.34722 145803|0.44444 145804|0.29167 145805|0.26389 145806|0.22222 145807|0.41667 145808|0.52778 145809|0.72222 145810|0.54167 145811|0.5 145812|0.55556 145813|0.5 145814|0.41667 145815|0.5 145816|0.5 145817|0.84722 145818|0.55556 145819|0.5 145820|0.20833 145821|0.5 145822|0.75 145823|0.5 145824|0.48611 145825|0.5 145826|0.47222 145827|0.61111 145828|0.23611 145829|0.20833 145830|0.63889 145831|0.51389 145832|0.27778 145833|0.36111 145834|0.11111 145835|0.27778 145836|0.61111 145837|0.5 145838|0.38889 145839|0.48611 145840|0.5 145841|0.51389 145842|0.5 145843|0.55556 145844|0.5 145845|0.125 145846|0.11111 145847|0.041667 145848|0.40278 145849|0.23611 145850|0.58333 145851|0.51389 145852|0.45833 145853|0.47222 145854|0.27778 145855|0.26389 145856|0.36111 145857|0.18056 145858|0.55556 145859|0.47222 145860|0.5 145861|0.44444 145862|0.54167 145863|0.5 145864|0.48611 145865|0.5 145866|0.22222 145867|0.44444 145868|0.41667 145869|0.59722 145870|0.33333 145871|0.52778 145872|0.34722 145873|0.45833 145874|0.5 145875|0.65278 145876|0.54167 145877|0.18056 145878|0.5 145879|0.40278 145880|0.38889 145881|0.72222 145882|0.5 145883|0.19444 145884|0.52778 145885|0.23611 145886|0.083333 145887|0.16667 145888|0.5 145889|0.51389 145890|0.23611 145891|0.47222 145892|0.055556 145893|0.55556 145894|0.48611 145895|0.5 145896|0.5 145897|0.72222 145898|0.77778 145899|0.625 145900|0.29167 145901|0.33333 145902|0.81944 145903|0.69444 145904|0.40278 145905|0.48611 145906|0.38889 145907|0.36111 145908|0.36111 145909|0.5 145910|0.5 145911|0.68056 145912|0.43056 145913|0.25 145914|0.41667 145915|0.55556 145916|0.55556 145917|0.48611 145918|0.27778 145919|0.33333 145920|0.5 145921|0.5 145922|0.52778 145923|0.72222 145924|0.48611 145925|0.5 145926|0.58333 145927|0.76389 145928|0.51389 145929|0.47222 145930|0.29167 145931|0.5 145932|0.55556 145933|0.16667 145934|0.22222 145935|0.58333 145936|0.40278 145937|0.26389 145938|0.5 145939|0.125 145940|0.5 145941|0.38889 145942|0.19444 145943|0.65278 145944|0.43056 145945|0.77778 145946|0.36111 145947|0.41667 145948|0.23611 145949|0.34722 145950|0.44444 145951|0.20833 145952|0.47222 145953|0.55556 145954|0.38889 145955|0.11111 145956|0.16667 145957|0 145958|0.069444 145959|0.20833 145960|0.25 145961|0.083333 145962|0.5 145963|0.55556 145964|0.63889 145965|0.36111 145966|0.43056 145967|0.30556 145968|0.47222 145969|0.40278 145970|0.5 145971|0.27778 145972|0.34722 145973|0.27778 145974|0.25 145975|0.52778 145976|0.56944 145977|0.55556 145978|0.55556 145979|0.36111 145980|0.375 145981|0.43056 145982|0.23611 145983|0.45833 145984|0.55556 145985|0.5 145986|0.5 145987|0.5 145988|0.5 145989|0.48611 145990|0.63889 145991|0.13889 145992|0.44444 145993|0.56944 145994|0.70833 145995|0.51389 145996|0.29167 145997|0.055556 145998|0.33333 145999|0.38889 146000|0.34722 146001|0.16667 146002|0.36111 146003|0.38889 146004|0.30556 146005|0.43056 146006|0.16667 146007|0.30556 146008|0.47222 146009|0.63889 146010|0.34722 146011|0.65278 146012|0.52778 146013|0.11111 146014|0.27778 146015|0.25 146016|0.20833 146017|0.31944 146018|0.5 146019|0.31944 146020|0.51389 146021|0.30556 146022|0.097222 146023|0.34722 146024|0.31944 146025|0.5 146026|0.25 146027|0.26389 146028|0.69444 146029|0.61111 146030|0.36111 146031|0.29167 146032|0.30556 146033|0.055556 146034|0.125 146035|0.30556 146036|0.30556 146037|0.375 146038|0.27778 146039|0.43056 146040|0.25 146041|0.26389 146042|0.30556 146043|0.20833 146044|0.27778 146045|0.30556 146046|0.23611 146047|0.36111 146048|0.29167 146049|0.29167 146050|0.44444 146051|0.51389 146052|0.27778 146053|0.34722 146054|0.48611 146055|0.30556 146056|0.055556 146057|0.33333 146058|0.36111 146059|0.40278 146060|0.25 146061|0.56944 146062|0.27778 146063|0.27778 146064|0.5 146065|0.15278 146066|0.45833 146067|0.5 146068|0.44444 146069|0.5 146070|0.22222 146071|0.30556 146072|0.013889 146073|0.56944 146074|0.81944 146075|0.84722 146076|0.63889 146077|0.5 146078|0.58333 146079|0.5 146080|0.23611 146081|0.5 146082|0.25 146083|0.38889 146084|0.36111 146085|0.22222 146086|0.23611 146087|0.055556 146088|0.16667 146089|0.34722 146090|0.5 146091|0.52778 146092|0.77778 146093|0.59722 146094|0.72222 146095|0.77778 146096|0.43056 146097|0.61111 146098|0.48611 146099|0.5 146100|0.5 146101|0.38889 146102|0.54167 146103|0.30556 146104|0.19444 146105|0.25 146106|0.36111 146107|0.5 146108|0.52778 146109|0.5 146110|0.26389 146111|0.27778 146112|0.18056 146113|0.30556 146114|0.11111 146115|0.61111 146116|0.38889 146117|0.20833 146118|0.18056 146119|0.36111 146120|0.31944 146121|0.22222 146122|0.40278 146123|0.5 146124|0.5 146125|0.52778 146126|0.51389 146127|0.5 146128|0.33333 146129|0.33333 146130|0.5 146131|0.23611 146132|0.375 146133|0.26389 146134|0.18056 146135|0.027778 146136|0.5 146137|0.31944 146138|0.26389 146139|0.45833 146140|0.56944 146141|0.56944 146142|0.27778 146143|0.055556 146144|0.19444 146145|0.31944 146146|0.27778 146147|0.30556 146148|0.26389 146149|0.44444 146150|0.13889 146151|0.47222 146152|0.59722 146153|0.31944 146154|0.45833 146155|0.19444 146156|0.30556 146157|0.40278 146158|0.5 146159|0.38889 146160|0.34722 146161|0.61111 146162|0.29167 146163|0.5 146164|0.38889 146165|0.5 146166|0.5 146167|0.44444 146168|0.27778 146169|0.63889 146170|0.72222 146171|0.43056 146172|0.47222 146173|0.097222 146174|0.54167 146175|0.25 146176|0.29167 146177|0.44444 146178|0.38889 146179|0.77778 146180|0.069444 146181|0.5 146182|0.26389 146183|0.61111 146184|0.31944 146185|0.48611 146186|0.15278 146187|0.51389 146188|0.51389 146189|0.16667 146190|0.55556 146191|0.73611 146192|0.48611 146193|0.59722 146194|0.38889 146195|0.44444 146196|0.47222 146197|0.5 146198|0.51389 146199|0.27778 146200|0.27778 146201|0.44444 146202|0.34722 146203|0.34722 146204|0.125 146205|0.375 146206|0.58333 146207|0.25 146208|0.20833 146209|0.41667 146210|0.027778 146211|0.44444 146212|0.22222 146213|0.48611 146214|0.36111 146215|0.34722 146216|0.18056 146217|0.54167 146218|0.16667 146219|0.58333 146220|0.5 146221|0.47222 146222|0.13889 146223|0.47222 146224|0.27778 146225|0.5 146226|0.65278 146227|0.54167 146228|0.18056 146229|0.51389 146230|0.26389 146231|0.48611 146232|0.29167 146233|0.55556 146234|0.34722 146235|0.44444 146236|0.38889 146237|0.44444 146238|0.26389 146239|0.40278 146240|0.31944 146241|0.5 146242|0.80556 146243|0.55556 146244|0.375 146245|0.44444 146246|0.23611 146247|0.55556 146248|0.27778 146249|0.40278 146250|0.47222 146251|0.5 146252|0.55556 146253|0.23611 146254|0.625 146255|0.48611 146256|0.5 146257|0.16667 146258|0.31944 146259|0.23611 146260|0.11111 146261|0.19444 146262|0.29167 146263|0.30556 146264|0.48611 146265|0.33333 146266|0.26389 146267|0.375 146268|0.22222 146269|0.5 146270|0.5 146271|0.47222 146272|0.29167 146273|0.45833 146274|0.31944 146275|0.69444 146276|0.54167 146277|0.66667 146278|0.22222 146279|0.45833 146280|0.26389 146281|0.11111 146282|0.16667 146283|0.51389 146284|0.13889 146285|0.44444 146286|0.25 146287|0.5 146288|0.31944 146289|0.16667 146290|0.61111 146291|0.23611 146292|0.5 146293|0.56944 146294|0.56944 146295|0.25 146296|0.5 146297|0.18056 146298|0.097222 146299|0.097222 146300|0.5 146301|0.23611 146302|0.5 146303|0.68056 146304|0.11111 146305|0.375 146306|0.29167 146307|0.54167 146308|0.22222 146309|0.43056 146310|0.33333 146311|0.51389 146312|0.34722 146313|0.40278 146314|0.18056 146315|0.20833 146316|0.45833 146317|0.25 146318|0.5 146319|0.33333 146320|0.5 146321|0.26389 146322|0.27778 146323|0.55556 146324|0.43056 146325|0.38889 146326|0.36111 146327|0.16667 146328|0.38889 146329|0.34722 146330|0.30556 146331|0.45833 146332|0.33333 146333|0.44444 146334|0 146335|0.5 146336|0.34722 146337|0.41667 146338|0.097222 146339|0.44444 146340|0.29167 146341|0.59722 146342|0.44444 146343|0.26389 146344|0.20833 146345|0.5 146346|0.5 146347|0.375 146348|0.72222 146349|0.45833 146350|0.55556 146351|0.61111 146352|0.45833 146353|0.34722 146354|0.48611 146355|0.15278 146356|0.11111 146357|0.59722 146358|0.41667 146359|0.30556 146360|0.5 146361|0.5 146362|0.5 146363|0.625 146364|0.80556 146365|0.44444 146366|0.31944 146367|0.38889 146368|0.5 146369|0.44444 146370|0.33333 146371|0.38889 146372|0.44444 146373|0.44444 146374|0.48611 146375|0.48611 146376|0.48611 146377|0.375 146378|0.5 146379|0.36111 146380|0.27778 146381|0.5 146382|0.5 146383|0.5 146384|0.5 146385|0.54167 146386|0.30556 146387|0.5 146388|0.19444 146389|0.11111 146390|0.44444 146391|0.43056 146392|0.44444 146393|0.31944 146394|0.16667 146395|0.44444 146396|0.13889 146397|0.26389 146398|0.19444 146399|0.44444 146400|0.31944 146401|0.33333 146402|0.625 146403|0.63889 146404|0.48611 146405|0.65278 146406|0.63889 146407|0.41667 146408|0.16667 146409|0.40278 146410|0.56944 146411|0.41667 146412|0.23611 146413|0.27778 146414|0.34722 146415|0.40278 146416|0.22222 146417|0.18056 146418|0 146419|0.125 146420|0.13889 146421|0.15278 146422|0.069444 146423|0.30556 146424|0.31944 146425|0.40278 146426|0.54167 146427|0.44444 146428|0.65278 146429|0.70833 146430|0.59722 146431|0.52778 146432|0.63889 146433|0.48611 146434|0.44444 146435|0.66667 146436|0.34722 146437|0.63889 146438|0.58333 146439|0.61111 146440|0.58333 146441|0.43056 146442|0.51389 146443|0.25 146444|0.23611 146445|0.19444 146446|0.45833 146447|0.20833 146448|0.27778 146449|0.22222 146450|0.18056 146451|0.11111 146452|0.15278 146453|0.40278 146454|0.083333 146455|0.36111 146456|0.18056 146457|0.26389 146458|0.097222 146459|0.31944 146460|0.72222 146461|0.51389 146462|0.375 146463|0.26389 146464|0.25 146465|0.69444 146466|0.69444 146467|0.22222 146468|0.13889 146469|0.27778 146470|0.30556 146471|0.34722 146472|0.041667 146473|0.23611 146474|0.26389 146475|0.36111 146476|0.25 146477|0.29167 146478|0.18056 146479|0.26389 146480|0.18056 146481|0.26389 146482|0.13889 146483|0.16667 146484|0.11111 146485|0.15278 146486|0.22222 146487|0.52778 146488|0.22222 146489|0.63889 146490|0.79167 146491|0.58333 146492|0.36111 146493|0.48611 146494|0.20833 146495|0.19444 146496|0.26389 146497|0.47222 146498|0.22222 146499|0.38889 146500|0.41667 146501|0.43056 146502|0.33333 146503|0.22222 146504|0.44444 146505|0.34722 146506|0.26389 146507|0.58333 146508|0.65278 146509|0.48611 146510|0.44444 146511|0.30556 146512|0.70833 146513|0.59722 146514|0.77778 146515|0.90278 146516|0.29167 146517|0.23611 146518|0.30556 146519|0.34722 146520|0.19444 146521|0.11111 146522|0.33333 146523|0.26389 146524|0.44444 146525|0.23611 146526|0.097222 146527|0.23611 146528|0.40278 146529|0.40278 146530|0.16667 146531|0.25 146532|0.30556 146533|0.31944 146534|0 146535|0.19444 146536|0.22222 146537|0.083333 146538|0.26389 146539|0.40278 146540|0.54167 146541|0.59722 146542|0.52778 146543|0.41667 146544|0.23611 146545|0.18056 146546|0.16667 146547|0.45833 146548|0.43056 146549|0.48611 146550|0.375 146551|0.375 146552|0.097222 146553|0.18056 146554|0.19444 146555|0.22222 146556|0.36111 146557|0.055556 146558|0.29167 146559|0.25 146560|0.27778 146561|0.30556 146562|0.26389 146563|0.25 146564|0.47222 146565|0.47222 146566|0.52778 146567|0.31944 146568|0.56944 146569|0.30556 146570|0.36111 146571|0.55556 146572|0.43056 146573|0.48611 146574|0.41667 146575|0.25 146576|0.11111 146577|0.72222 146578|0.59722 146579|0.56944 146580|0.58333 146581|0.55556 146582|0.30556 146583|0.65278 146584|0.52778 146585|0.375 146586|0.26389 146587|0.375 146588|0.51389 146589|0.20833 146590|0.45833 146591|0.5 146592|0.52778 146593|0.5 146594|0.61111 146595|0.61111 146596|0.625 146597|0.75 146598|0.15278 146599|0.097222 146600|0.31944 146601|0.31944 146602|0.31944 146603|0.33333 146604|0.19444 146605|0.16667 146606|0.16667 146607|0.29167 146608|0.29167 146609|0.40278 146610|0.25 146611|0.15278 146612|0.29167 146613|0.36111 146614|0.45833 146615|0.13889 146616|0.20833 146617|0.16667 146618|0.34722 146619|0.26389 146620|0.069444 146621|0.43056 146622|0.38889 146623|0.31944 146624|0.15278 146625|0.23611 146626|0.43056 146627|0.29167 146628|0.38889 146629|0.18056 146630|0.43056 146631|0.36111 146632|0.72222 146633|0.72222 146634|0.44444 146635|0.55556 146636|0.48611 146637|0.13889 146638|0.19444 146639|0.625 146640|0.30556 146641|0.23611 146642|0.23611 146643|0.29167 146644|0.30556 146645|0.23611 146646|0.40278 146647|0.41667 146648|0.33333 146649|0.16667 146650|0.25 146651|0.55556 146652|0.33333 146653|0.375 146654|0.5 146655|0.58333 146656|0.63889 146657|0.45833 146658|0.43056 146659|0.27778 146660|0.13889 146661|0.40278 146662|0.36111 146663|0.45833 146664|0.47222 146665|0.44444 146666|0.51389 146667|0.30556 146668|0.30556 146669|0.52778 146670|0.68056 146671|0.45833 146672|0.23611 146673|0.27778 146674|0.38889 146675|0.34722 146676|0.125 146677|0.27778 146678|0.27778 146679|0.30556 146680|0.097222 146681|0.13889 146682|0.31944 146683|0.40278 146684|0.43056 146685|0.34722 146686|0.29167 146687|0.25 146688|0.16667 146689|0.18056 146690|0.61111 146691|0.47222 146692|0.5 146693|0.33333 146694|0.31944 146695|0.375 146696|0.38889 146697|0.30556 146698|0.44444 146699|0.73611 146700|0.15278 146701|0.63889 146702|0.29167 146703|0.47222 146704|0.5 146705|0.30556 146706|0.33333 146707|0.31944 146708|0.20833 146709|0.51389 146710|0.38889 146711|0.19444 146712|0.47222 146713|0.22222 146714|0.33333 146715|0.33333 146716|0.20833 146717|0.25 146718|0.38889 146719|0.43056 146720|0.76389 146721|0.61111 146722|0.59722 146723|0.41667 146724|0.52778 146725|0.47222 146726|0.45833 146727|0.45833 146728|0.27778 146729|0.33333 146730|0.41667 146731|0.43056 146732|0.31944 146733|0.52778 146734|0.31944 146735|0.47222 146736|0.27778 146737|0.81944 146738|0.52778 146739|0.63889 146740|0.61111 146741|0.22222 146742|0.25 146743|0.22222 146744|0.097222 146745|0.15278 146746|0.055556 146747|0.16667 146748|0.18056 146749|0.11111 146750|0.11111 146751|0.29167 146752|0.5 146753|0.19444 146754|0.31944 146755|0.45833 146756|0.30556 146757|0.33333 146758|0.38889 146759|0.52778 146760|0.52778 146761|0.5 146762|0.29167 146763|0.38889 146764|0.18056 146765|0.27778 146766|0.097222 146767|0.16667 146768|0.45833 146769|0.69444 146770|0.43056 146771|0.5 146772|0.43056 146773|0.38889 146774|0.041667 146775|0.16667 146776|0.45833 146777|0.23611 146778|0.40278 146779|0.5 146780|0.25 146781|0.43056 146782|0.22222 146783|0.18056 146784|0.15278 146785|0.30556 146786|0.36111 146787|0.22222 146788|0.20833 146789|0.41667 146790|0.26389 146791|0.20833 146792|0.45833 146793|0.33333 146794|0.36111 146795|0.375 146796|0.29167 146797|0.29167 146798|0.5 146799|0.27778 146800|0.55556 146801|0.30556 146802|0.51389 146803|0.30556 146804|0.5 146805|0.5 146806|0.44444 146807|0.34722 146808|0.5 146809|0.5 146810|0.5 146811|0.56944 146812|0.36111 146813|0.52778 146814|0.56944 146815|0.52778 146816|0.47222 146817|0.54167 146818|0.38889 146819|0.54167 146820|0.26389 146821|0.54167 146822|0.20833 146823|0.5 146824|0.55556 146825|0.5 146826|0.5 146827|0.54167 146828|0.52778 146829|0.5 146830|0.5 146831|0.52778 146832|0.5 146833|0.5 146834|0.45833 146835|0.5 146836|0.44444 146837|0.5 146838|0.5 146839|0.52778 146840|0.5 146841|0.5 146842|0.5 146843|0.47222 146844|0.5 146845|0.44444 146846|0.5 146847|0.5 146848|0.5 146849|0.26389 146850|0.30556 146851|0.5 146852|0.34722 146853|0.5 146854|0.5 146855|0.41667 146856|0.5 146857|0.5 146858|0.5 146859|0.5 146860|0.56944 146861|0.40278 146862|0.51389 146863|0.45833 146864|0.5 146865|0.5 146866|0.48611 146867|0.31944 146868|0.43056 146869|0.375 146870|0.5 146871|0.79167 146872|0.56944 146873|0.5 146874|0.5 146875|0.48611 146876|0.5 146877|0.5 146878|0.5 146879|0.5 146880|0.5 146881|0.48611 146882|0.47222 146883|0.5 146884|0.47222 146885|0.5 146886|0.5 146887|0.5 146888|0.5 146889|0.72222 146890|0.5 146891|0.5 146892|0.5 146893|0.52778 146894|0.5 146895|0.11111 146896|0.5 146897|0.5 146898|0.5 146899|0.5 146900|0.5 146901|0.54167 146902|0.18056 146903|0.5 146904|0.5 146905|0.22222 146906|0.16667 146907|0.5 146908|0.41667 146909|0.43056 146910|0.5 146911|0.5 146912|0.79167 146913|0.5 146914|0.55556 146915|0.5 146916|0.5 146917|0.5 146918|0.36111 146919|0.33333 146920|0.34722 146921|0.65278 146922|0.65278 146923|0.70833 146924|0.23611 146925|0.5 146926|0.5 146927|0.5 146928|0.5 146929|0.5 146930|0.5 146931|0.38889 146932|0.5 146933|0.38889 146934|0.15278 146935|0.5 146936|0.31944 146937|0.5 146938|0.125 146939|0.22222 146940|0.61111 146941|0.23611 146942|0.23611 146943|0.20833 146944|0.22222 146945|0.55556 146946|0.58333 146947|0.30556 146948|0.30556 146949|0.27778 146950|0.15278 146951|0.44444 146952|0.23611 146953|0.27778 146954|0.11111 146955|0.33333 146956|0.55556 146957|0.5 146958|0.33333 146959|0.63889 146960|0.16667 146961|0.33333 146962|0.44444 146963|0.55556 146964|0.5 146965|0.51389 146966|0.16667 146967|0.43056 146968|0.375 146969|0.27778 146970|0.18056 146971|0.40278 146972|0.44444 146973|0.5 146974|0.29167 146975|0.5 146976|0.19444 146977|0.33333 146978|0.29167 146979|0.40278 146980|0.11111 146981|0.22222 146982|0.5 146983|0.5 146984|0.5 146985|0.45833 146986|0.5 146987|0.34722 146988|0.45833 146989|0.5 146990|0.5 146991|0.5 146992|0.36111 146993|0.52778 146994|0.5 146995|0.43056 146996|0.51389 146997|0.41667 146998|0.26389 146999|0.47222 147000|0.5 147001|0.375 147002|0.5 147003|0.5 147004|0.5 147005|0.5 147006|0.69444 147007|0.41667 147008|0.5 147009|0.5 147010|0.33333 147011|0.56944 147012|0.55556 147013|0.56944 147014|0.5 147015|0.5 147016|0.5 147017|0.47222 147018|0.52778 147019|0.47222 147020|0.33333 147021|0.26389 147022|0.26389 147023|0.16667 147024|0.54167 147025|0.5 147026|0.30556 147027|0.5 147028|0.45833 147029|0.54167 147030|0.45833 147031|0.40278 147032|0.5 147033|0.34722 147034|0.5 147035|0.5 147036|0.52778 147037|0.5 147038|0.5 147039|0.5 147040|0.5 147041|0.33333 147042|0.20833 147043|0.33333 147044|0.5 147045|0.36111 147046|0.5 147047|0.34722 147048|0.30556 147049|0.34722 147050|0.38889 147051|0.29167 147052|0.16667 147053|0.20833 147054|0.29167 147055|0.20833 147056|0.22222 147057|0.25 147058|0.11111 147059|0.19444 147060|0.44444 147061|0.29167 147062|0.41667 147063|0.26389 147064|0.5 147065|0.5 147066|0.56944 147067|0.52778 147068|0.5 147069|0.5 147070|0.5 147071|0.15278 147072|0.23611 147073|0.19444 147074|0.19444 147075|0.43056 147076|0.33333 147077|0.27778 147078|0.52778 147079|0.80556 147080|0.5 147081|0.5 147082|0.5 147083|0.34722 147084|0.55556 147085|0.47222 147086|0.25 147087|0.5 147088|0.44444 147089|0.47222 147090|0.5 147091|0.52778 147092|0.40278 147093|0.33333 147094|0.5 147095|0.5 147096|0.5 147097|0.52778 147098|0.5 147099|0.5 147100|0.47222 147101|0.5 147102|0.45833 147103|0.5 147104|0.5 147105|0.38889 147106|0.44444 147107|0.22222 147108|0.22222 147109|0.5 147110|0.5 147111|0.56944 147112|0.26389 147113|0.52778 147114|0.58333 147115|0.61111 147116|0.66667 147117|0.54167 147118|0.77778 147119|0.58333 147120|0.5 147121|0.5 147122|0.40278 147123|0.44444 147124|0.40278 147125|0.33333 147126|0.23611 147127|0.25 147128|0.5 147129|0.52778 147130|0.44444 147131|0.38889 147132|0.44444 147133|0.44444 147134|0.36111 147135|0.5 147136|0.22222 147137|0.19444 147138|0.25 147139|0.34722 147140|0.58333 147141|0.27778 147142|0.27778 147143|0.41667 147144|0.38889 147145|0.45833 147146|0.5 147147|0.54167 147148|0.5 147149|0.38889 147150|0.59722 147151|0.68056 147152|0.68056 147153|0.41667 147154|0.55556 147155|0.55556 147156|0.5 147157|0.45833 147158|0.5 147159|0.73611 147160|0.27778 147161|0.125 147162|0.11111 147163|0.44444 147164|0.47222 147165|0.19444 147166|0.16667 147167|0.47222 147168|0.5 147169|0.44444 147170|0.34722 147171|0.19444 147172|0.16667 147173|0.47222 147174|0.22222 147175|0.43056 147176|0.27778 147177|0.34722 147178|0.16667 147179|0.52778 147180|0.40278 147181|0.5 147182|0.375 147183|0.25 147184|0.27778 147185|0.18056 147186|0.5 147187|0.36111 147188|0.48611 147189|0.5 147190|0.59722 147191|0.29167 147192|0.45833 147193|0.41667 147194|0.5 147195|0.5 147196|0.41667 147197|0.5 147198|0.5 147199|0.5 147200|0.5 147201|0.375 147202|0.43056 147203|0.52778 147204|0.63889 147205|0.41667 147206|0.26389 147207|0.29167 147208|0.23611 147209|0.36111 147210|0.48611 147211|0.55556 147212|0.52778 147213|0.34722 147214|0.5 147215|0.20833 147216|0.23611 147217|0.41667 147218|0.5 147219|0.27778 147220|0.5 147221|0.48611 147222|0.5 147223|0.5 147224|0.5 147225|0.069444 147226|0.23611 147227|0.5 147228|0.54167 147229|0.5 147230|0.5 147231|0.54167 147232|0.20833 147233|0.45833 147234|0.31944 147235|0.38889 147236|0.19444 147237|0.055556 147238|0.5 147239|0.34722 147240|0.5 147241|0.44444 147242|0.375 147243|0.44444 147244|0.51389 147245|0.40278 147246|0.36111 147247|0.29167 147248|0.44444 147249|0.45833 147250|0.5 147251|0.5 147252|0.36111 147253|0.38889 147254|0.22222 147255|0.26389 147256|0.31944 147257|0.66667 147258|0.56944 147259|0.56944 147260|0.45833 147261|0.20833 147262|0.26389 147263|0.77778 147264|0.77778 147265|0.48611 147266|0.5 147267|0.5 147268|0.54167 147269|0.5 147270|0.66667 147271|0.23611 147272|0.58333 147273|0.5 147274|0.5 147275|0.5 147276|0.5 147277|0.5 147278|0.5 147279|0.5 147280|0.5 147281|0.5 147282|0.58333 147283|0.38889 147284|0.5 147285|0.5 147286|0.38889 147287|0.5 147288|0.5 147289|0.59722 147290|0.52778 147291|0.5 147292|0.51389 147293|0.31944 147294|0.29167 147295|0.19444 147296|0.30556 147297|0.43056 147298|0.36111 147299|0.097222 147300|0.22222 147301|0.5 147302|0.5 147303|0.44444 147304|0.16667 147305|0.41667 147306|0.54167 147307|0.38889 147308|0.47222 147309|0.18056 147310|0.19444 147311|0.13889 147312|0.41667 147313|0.51389 147314|0.5 147315|0.36111 147316|0.5 147317|0.5 147318|0.20833 147319|0.5 147320|0.5 147321|0.52778 147322|0.44444 147323|0.5 147324|0.5 147325|0.51389 147326|0.5 147327|0.63889 147328|0.5 147329|0.61111 147330|0.47222 147331|0.41667 147332|0.13889 147333|0.43056 147334|0.22222 147335|0.5 147336|0.38889 147337|0.41667 147338|0.5 147339|0.58333 147340|0.72222 147341|0.5 147342|0.52778 147343|0.33333 147344|0.44444 147345|0.23611 147346|0.31944 147347|0.5 147348|0.5 147349|0.54167 147350|0.36111 147351|0.11111 147352|0.23611 147353|0.22222 147354|0.5 147355|0.47222 147356|0.56944 147357|0.5 147358|0.56944 147359|0.52778 147360|0.5 147361|0.52778 147362|0.44444 147363|0.38889 147364|0.54167 147365|0.51389 147366|0.5 147367|0.59722 147368|0.16667 147369|0.61111 147370|0.47222 147371|0.5 147372|0.11111 147373|0.5 147374|0.36111 147375|0.38889 147376|0.45833 147377|0.33333 147378|0.27778 147379|0.20833 147380|0.5 147381|0.5 147382|0.125 147383|0.52778 147384|0.5 147385|0.27778 147386|0.375 147387|0.43056 147388|0.5 147389|0.40278 147390|0.30556 147391|0.36111 147392|0.41667 147393|0.47222 147394|0.66667 147395|0.27778 147396|0.58333 147397|0.73611 147398|0.83333 147399|0.63889 147400|0.30556 147401|0.5 147402|0.54167 147403|0.33333 147404|0.65278 147405|0.44444 147406|0.26389 147407|0.18056 147408|0.26389 147409|0.33333 147410|0.48611 147411|0.56944 147412|0.36111 147413|0.625 147414|0.5 147415|0.5 147416|0.625 147417|0.54167 147418|0.29167 147419|0.34722 147420|0.375 147421|0.25 147422|0.41667 147423|0.30556 147424|0.125 147425|0.44444 147426|0.16667 147427|0.5 147428|0.5 147429|0.51389 147430|0.43056 147431|0.16667 147432|0.40278 147433|0.5 147434|0.22222 147435|0.51389 147436|0.5 147437|0.51389 147438|0.5 147439|0.52778 147440|0.5 147441|0.5 147442|0.5 147443|0.5 147444|0.45833 147445|0.61111 147446|0.44444 147447|0.5 147448|0.51389 147449|0.5 147450|0.5 147451|0.34722 147452|0.5 147453|0.33333 147454|0.59722 147455|0.79167 147456|0.625 147457|0.097222 147458|0.5 147459|0.5 147460|0.5 147461|0.5 147462|0.38889 147463|0.38889 147464|0.30556 147465|0.27778 147466|0.52778 147467|0.5 147468|0.29167 147469|0.5 147470|0.5 147471|0.55556 147472|0.26389 147473|0.5 147474|0.5 147475|0.61111 147476|0.44444 147477|0.5 147478|0.5 147479|0.81944 147480|0.45833 147481|0.45833 147482|0.44444 147483|0.5 147484|0.54167 147485|0.16667 147486|0.27778 147487|0.38889 147488|0.44444 147489|0.40278 147490|0.43056 147491|0.22222 147492|0.30556 147493|0.5 147494|0.52778 147495|0.5 147496|0.55556 147497|0.55556 147498|0.75 147499|0.52778 147500|0.20833 147501|0.27778 147502|0.52778 147503|0.27778 147504|0.34722 147505|0.48611 147506|0.31944 147507|0.52778 147508|0.29167 147509|0.58333 147510|0.18056 147511|0.55556 147512|0.5 147513|0.52778 147514|0.51389 147515|0.29167 147516|0.5 147517|0.30556 147518|0.5 147519|0.56944 147520|0.51389 147521|0.43056 147522|0.30556 147523|0.43056 147524|0.5 147525|0.51389 147526|0.54167 147527|0.25 147528|0.30556 147529|0.34722 147530|0.5 147531|0.30556 147532|0.51389 147533|0.31944 147534|0.5 147535|0.5 147536|0.33333 147537|0.5 147538|0.5 147539|0.5 147540|0.58333 147541|0.56944 147542|0.36111 147543|0.5 147544|0.5 147545|0.5 147546|0.125 147547|0.5 147548|0.5 147549|0.5 147550|0.33333 147551|0.54167 147552|0.125 147553|0.73611 147554|0.55556 147555|0.625 147556|0.23611 147557|0.29167 147558|0.5 147559|0.375 147560|0.625 147561|0.18056 147562|0.36111 147563|0.22222 147564|0.19444 147565|0.38889 147566|0.5 147567|0.44444 147568|0.25 147569|0.5 147570|0.38889 147571|0.5 147572|0.68056 147573|0.58333 147574|0.75 147575|0.65278 147576|0.5 147577|0.47222 147578|0.33333 147579|0.5 147580|0.72222 147581|0.86111 147582|0.88889 147583|0.5 147584|0.5 147585|0.52778 147586|0.5 147587|0.45833 147588|0.56944 147589|0.44444 147590|0.31944 147591|0.33333 147592|0.5 147593|0.18056 147594|0.34722 147595|0.11111 147596|0.18056 147597|0.48611 147598|0.5 147599|0.40278 147600|0.34722 147601|0.5 147602|0.22222 147603|0.31944 147604|0.19444 147605|0.27778 147606|0.5 147607|0.56944 147608|0.5 147609|0.5 147610|0.43056 147611|0.56944 147612|0.5 147613|0.44444 147614|0.44444 147615|0.41667 147616|0.34722 147617|0.47222 147618|0.5 147619|0.25 147620|0.45833 147621|0.5 147622|0.069444 147623|0.65278 147624|0.5 147625|0.43056 147626|0.5 147627|0.5 147628|0.38889 147629|0.375 147630|0.38889 147631|0.375 147632|0.15278 147633|0.20833 147634|0.26389 147635|0.16667 147636|0.5 147637|0.36111 147638|0.18056 147639|0.56944 147640|0.25 147641|0.47222 147642|0.40278 147643|0.23611 147644|0.5 147645|0.45833 147646|0.69444 147647|0.22222 147648|0.23611 147649|0.26389 147650|0.22222 147651|0.16667 147652|0.26389 147653|0.027778 147654|0.30556 147655|0.5 147656|0.36111 147657|0.51389 147658|0.29167 147659|0.5 147660|0.25 147661|0.59722 147662|0.61111 147663|0.47222 147664|0.51389 147665|0.40278 147666|0.41667 147667|0.58333 147668|0.44444 147669|0.16667 147670|0.5 147671|0.5 147672|0.52778 147673|0.47222 147674|0.5 147675|0.5 147676|0.52778 147677|0.48611 147678|0.5 147679|0.5 147680|0.5 147681|0.5 147682|0.5 147683|0.51389 147684|0.47222 147685|0.58333 147686|0.5 147687|0.5 147688|0.19444 147689|0.36111 147690|0.20833 147691|0.5 147692|0.45833 147693|0.52778 147694|0.22222 147695|0.22222 147696|0.27778 147697|0.22222 147698|0.26389 147699|0.58333 147700|0.22222 147701|0.5 147702|0.52778 147703|0.5 147704|0.44444 147705|0.30556 147706|0.5 147707|0.30556 147708|0.43056 147709|0.083333 147710|0.36111 147711|0.375 147712|0.25 147713|0.125 147714|0.26389 147715|0.27778 147716|0.375 147717|0.40278 147718|0.25 147719|0.18056 147720|0.27778 147721|0.43056 147722|0.63889 147723|0.30556 147724|0.36111 147725|0.13889 147726|0.5 147727|0.41667 147728|0.23611 147729|0.097222 147730|0.45833 147731|0.29167 147732|0.375 147733|0.16667 147734|0.22222 147735|0.54167 147736|0.23611 147737|0.30556 147738|0.51389 147739|0.48611 147740|0.5 147741|0.44444 147742|0.23611 147743|0.43056 147744|0.25 147745|0.41667 147746|0.22222 147747|0.26389 147748|0.43056 147749|0.26389 147750|0.097222 147751|0.5 147752|0.47222 147753|0.52778 147754|0.58333 147755|0.31944 147756|0.31944 147757|0.5 147758|0.5 147759|0.61111 147760|0.27778 147761|0.31944 147762|0.33333 147763|0.58333 147764|0.44444 147765|0.30556 147766|0.29167 147767|0.40278 147768|0.36111 147769|0.40278 147770|0.30556 147771|0.43056 147772|0.63889 147773|0.63889 147774|0.44444 147775|0.11111 147776|0.48611 147777|0.5 147778|0.51389 147779|0.65278 147780|0.18056 147781|0.027778 147782|0.5 147783|0.11111 147784|0.5 147785|0.51389 147786|0.375 147787|0.34722 147788|0.54167 147789|0.43056 147790|0.20833 147791|0.25 147792|0.30556 147793|0.34722 147794|0.23611 147795|0.13889 147796|0.11111 147797|0.33333 147798|0.375 147799|0.63889 147800|0.15278 147801|0.27778 147802|0.375 147803|0.36111 147804|0.19444 147805|0.30556 147806|0.36111 147807|0.20833 147808|0.13889 147809|0.31944 147810|0.33333 147811|0.23611 147812|0.18056 147813|0.5 147814|0.13889 147815|0.5 147816|0.33333 147817|0.33333 147818|0.52778 147819|0.19444 147820|0.15278 147821|0.30556 147822|0.33333 147823|0.31944 147824|0.69444 147825|0.44444 147826|0.5 147827|0.51389 147828|0.61111 147829|0.16667 147830|0.30556 147831|0.5 147832|0.5 147833|0.5 147834|0.5 147835|0.5 147836|0.43056 147837|0.48611 147838|0.38889 147839|0.52778 147840|0.19444 147841|0.47222 147842|0.43056 147843|0.55556 147844|0.29167 147845|0.75 147846|0.69444 147847|0.55556 147848|0.30556 147849|0.5 147850|0.54167 147851|0.43056 147852|0.5 147853|0.5 147854|0.48611 147855|0.5 147856|0.51389 147857|0.125 147858|0.44444 147859|0.5 147860|0.38889 147861|0.19444 147862|0.20833 147863|0.11111 147864|0.20833 147865|0.30556 147866|0.20833 147867|0.43056 147868|0.22222 147869|0.22222 147870|0.22222 147871|0.22222 147872|0.20833 147873|0.47222 147874|0.5 147875|0.5 147876|0.33333 147877|0.055556 147878|0.125 147879|0.58333 147880|0.52778 147881|0.47222 147882|0.47222 147883|0.5 147884|0.63889 147885|0.58333 147886|0.65278 147887|0.48611 147888|0.52778 147889|0.48611 147890|0.27778 147891|0.5 147892|0.19444 147893|0.26389 147894|0.27778 147895|0.47222 147896|0.33333 147897|0.33333 147898|0.11111 147899|0.34722 147900|0.48611 147901|0.47222 147902|0.34722 147903|0.375 147904|0.27778 147905|0.31944 147906|0.22222 147907|0.48611 147908|0.5 147909|0.16667 147910|0.22222 147911|0.5 147912|0.34722 147913|0.29167 147914|0.18056 147915|0.027778 147916|0.26389 147917|0.43056 147918|0.56944 147919|0.41667 147920|0.22222 147921|0.30556 147922|0.33333 147923|0.097222 147924|0.45833 147925|0.33333 147926|0.38889 147927|0.33333 147928|0.33333 147929|0.30556 147930|0.375 147931|0.38889 147932|0.34722 147933|0.43056 147934|0.47222 147935|0.055556 147936|0.19444 147937|0.41667 147938|0.5 147939|0.56944 147940|0.40278 147941|0.29167 147942|0.5 147943|0.5 147944|0.69444 147945|0.34722 147946|0.40278 147947|0.16667 147948|0.5 147949|0.43056 147950|0.5 147951|0.36111 147952|0.5 147953|0.54167 147954|0.5 147955|0.5 147956|0.5 147957|0.41667 147958|0.41667 147959|0.61111 147960|0.44444 147961|0.33333 147962|0.5 147963|0.13889 147964|0.38889 147965|0.15278 147966|0.19444 147967|0.5 147968|0.51389 147969|0.5 147970|0.51389 147971|0.48611 147972|0.52778 147973|0.70833 147974|0.38889 147975|0.5 147976|0.27778 147977|0.31944 147978|0.45833 147979|0.40278 147980|0.29167 147981|0.5 147982|0.47222 147983|0.51389 147984|0.29167 147985|0.22222 147986|0.41667 147987|0.45833 147988|0.44444 147989|0.16667 147990|0.47222 147991|0.5 147992|0.5 147993|0.51389 147994|0.625 147995|0.5 147996|0.5 147997|0.38889 147998|0.5 147999|0.26389 148000|0.5 148001|0.30556 148002|0.48611 148003|0.5 148004|0.31944 148005|0.5 148006|0.25 148007|0.5 148008|0.5 148009|0.22222 148010|0.58333 148011|0.38889 148012|0.54167 148013|0.5 148014|0.5 148015|0.52778 148016|0.36111 148017|0.22222 148018|0.33333 148019|0.43056 148020|0.34722 148021|0.33333 148022|0.44444 148023|0.5 148024|0.54167 148025|0.5 148026|0.40278 148027|0.5 148028|0.41667 148029|0.16667 148030|0.56944 148031|0.48611 148032|0.5 148033|0.45833 148034|0.40278 148035|0.069444 148036|0.22222 148037|0.26389 148038|0.55556 148039|0.5 148040|0.13889 148041|0.23611 148042|0.44444 148043|0.34722 148044|0.375 148045|0.375 148046|0.36111 148047|0.26389 148048|0.22222 148049|0.5 148050|0.5 148051|0.5 148052|0.5 148053|0.52778 148054|0.5 148055|0.5 148056|0.5 148057|0.63889 148058|0.19444 148059|0.26389 148060|0.29167 148061|0.5 148062|0.5 148063|0.54167 148064|0.5 148065|0.5 148066|0.5 148067|0.65278 148068|0.43056 148069|0.51389 148070|0.43056 148071|0.47222 148072|0.40278 148073|0.5 148074|0.5 148075|0.55556 148076|0.5 148077|0.5 148078|0.48611 148079|0.5 148080|0.5 148081|0.5 148082|0.5 148083|0.55556 148084|0.5 148085|0.45833 148086|0.5 148087|0.48611 148088|0.5 148089|0.5 148090|0.52778 148091|0.22222 148092|0.51389 148093|0.56944 148094|0.097222 148095|0.5 148096|0.44444 148097|0.45833 148098|0.43056 148099|0.40278 148100|0.5 148101|0.44444 148102|0.5 148103|0.22222 148104|0.25 148105|0.56944 148106|0.54167 148107|0.5 148108|0.41667 148109|0.27778 148110|0.23611 148111|0.27778 148112|0.44444 148113|0.5 148114|0.43056 148115|0.30556 148116|0.33333 148117|0.31944 148118|0.36111 148119|0.375 148120|0.38889 148121|0.26389 148122|0.5 148123|0.20833 148124|0.5 148125|0.47222 148126|0.61111 148127|0.5 148128|0.5 148129|0.5 148130|0.5 148131|0.36111 148132|0.26389 148133|0.36111 148134|0.16667 148135|0.26389 148136|0.125 148137|0.13889 148138|0.16667 148139|0.40278 148140|0.65278 148141|0.30556 148142|0.26389 148143|0.45833 148144|0.31944 148145|0.5 148146|0.61111 148147|0.5 148148|0.55556 148149|0.16667 148150|0.38889 148151|0.13889 148152|0.20833 148153|0.40278 148154|0.44444 148155|0.31944 148156|0.45833 148157|0.69444 148158|0.23611 148159|0.29167 148160|0.23611 148161|0.43056 148162|0.5 148163|0.5 148164|0.5 148165|0.44444 148166|0.375 148167|0.63889 148168|0.58333 148169|0.5 148170|0.16667 148171|0.63889 148172|0.90278 148173|0.73611 148174|0.76389 148175|0.81944 148176|0.27778 148177|0.27778 148178|0.5 148179|0.38889 148180|0.31944 148181|0.20833 148182|0.18056 148183|0.61111 148184|0.47222 148185|0.22222 148186|0.5 148187|0.36111 148188|0.5 148189|0.56944 148190|0.34722 148191|0.43056 148192|0.54167 148193|0.41667 148194|0.41667 148195|0.44444 148196|0.36111 148197|0.55556 148198|0.48611 148199|0.5 148200|0.5 148201|0.5 148202|0.45833 148203|0.22222 148204|0.33333 148205|0.45833 148206|0.5 148207|0.5 148208|0.5 148209|0.5 148210|0.5 148211|0.58333 148212|0.51389 148213|0.38889 148214|0.40278 148215|0.44444 148216|0.51389 148217|0.45833 148218|0.26389 148219|0.33333 148220|0.29167 148221|0.59722 148222|0.58333 148223|0.52778 148224|0.5 148225|0.38889 148226|0.61111 148227|0.52778 148228|0.5 148229|0.5 148230|0.48611 148231|0.54167 148232|0.44444 148233|0.375 148234|0.5 148235|0.5 148236|0.54167 148237|0.36111 148238|0.34722 148239|0.29167 148240|0.16667 148241|0.5 148242|0.27778 148243|0.27778 148244|0.5 148245|0.36111 148246|0.36111 148247|0.5 148248|0.5 148249|0.73611 148250|0.47222 148251|0.069444 148252|0.5 148253|0.41667 148254|0.5 148255|0.44444 148256|0.72222 148257|0.61111 148258|0.56944 148259|0.51389 148260|0.5 148261|0.27778 148262|0.20833 148263|0.5 148264|0.5 148265|0.56944 148266|0.55556 148267|0.52778 148268|0.5 148269|0.30556 148270|0.36111 148271|0.5 148272|0.45833 148273|0.48611 148274|0.54167 148275|0.25 148276|0.44444 148277|0.51389 148278|0.5 148279|0.54167 148280|0.55556 148281|0.45833 148282|0.5 148283|0.29167 148284|0.47222 148285|0.52778 148286|0.5 148287|0.36111 148288|0.18056 148289|0.27778 148290|0.125 148291|0.5 148292|0.56944 148293|0.36111 148294|0.5 148295|0.5 148296|0.47222 148297|0.22222 148298|0.54167 148299|0.41667 148300|0.5 148301|0.5 148302|0.5 148303|0.58333 148304|0.5 148305|0.5 148306|0.5 148307|0.55556 148308|0.5 148309|0.59722 148310|0.5 148311|0.52778 148312|0.5 148313|0.55556 148314|0.5 148315|0.069444 148316|0.51389 148317|0.41667 148318|0.5 148319|0.5 148320|0.5 148321|0.43056 148322|0.5 148323|0.5 148324|0.54167 148325|0.45833 148326|0.75 148327|0.65278 148328|0.63889 148329|0.40278 148330|0.75 148331|0.41667 148332|0.30556 148333|0.59722 148334|0.5 148335|0.66667 148336|0.5 148337|0.5 148338|0.5 148339|0.5 148340|0.5 148341|0.5 148342|0.5 148343|0.5 148344|0.44444 148345|0.5 148346|0.27778 148347|0.5 148348|0.52778 148349|0.56944 148350|0.51389 148351|0.48611 148352|0.5 148353|0.5 148354|0.5 148355|0.51389 148356|0.5 148357|0.61111 148358|0.5 148359|0.5 148360|0.5 148361|0.5 148362|0.5 148363|0.52778 148364|0.5 148365|0.5 148366|0.52778 148367|0.54167 148368|0.43056 148369|0.45833 148370|0.36111 148371|0.38889 148372|0.375 148373|0.65278 148374|0.26389 148375|0.5 148376|0.34722 148377|0.5 148378|0.5 148379|0.5 148380|0.18056 148381|0.5 148382|0.5 148383|0.27778 148384|0.52778 148385|0.5 148386|0.56944 148387|0.125 148388|0.54167 148389|0.52778 148390|0.55556 148391|0.45833 148392|0.5 148393|0.34722 148394|0.5 148395|0.33333 148396|0.5 148397|0.58333 148398|0.56944 148399|0.27778 148400|0.5 148401|0.61111 148402|0.52778 148403|0.5 148404|0.45833 148405|0.44444 148406|0.34722 148407|0.5 148408|0.56944 148409|0.56944 148410|0.55556 148411|0.33333 148412|0.31944 148413|0.47222 148414|0.33333 148415|0.34722 148416|0.13889 148417|0.38889 148418|0.22222 148419|0.27778 148420|0.375 148421|0.5 148422|0.38889 148423|0.51389 148424|0.5 148425|0.20833 148426|0.11111 148427|0.5 148428|0.5 148429|0.23611 148430|0.33333 148431|0.31944 148432|0.29167 148433|0.5 148434|0.54167 148435|0.5 148436|0.22222 148437|0.5 148438|0.58333 148439|0.59722 148440|0.44444 148441|0.5 148442|0.44444 148443|0.5 148444|0.61111 148445|0.52778 148446|0.16667 148447|0.22222 148448|0.20833 148449|0.38889 148450|0.90278 148451|0.70833 148452|0.68056 148453|0.56944 148454|0.56944 148455|0.20833 148456|0.5 148457|0.5 148458|0.52778 148459|0.27778 148460|0.31944 148461|0.5 148462|0.5 148463|0.5 148464|0.5 148465|0.51389 148466|0.5 148467|0.5 148468|0.38889 148469|0.375 148470|0.5 148471|0.54167 148472|0.44444 148473|0.5 148474|0.5 148475|0.40278 148476|0.5 148477|0.33333 148478|0.5 148479|0.43056 148480|0.33333 148481|0.44444 148482|0.43056 148483|0.43056 148484|0.5 148485|0.45833 148486|0.34722 148487|0.52778 148488|0.5 148489|0.5 148490|0.55556 148491|0.5 148492|0.5 148493|0.45833 148494|0.80556 148495|0.55556 148496|0.51389 148497|0.73611 148498|0.25 148499|0.36111 148500|0.34722 148501|0.5 148502|0.625 148503|0.59722 148504|0.5 148505|0.23611 148506|0.33333 148507|0.51389 148508|0.51389 148509|0.5 148510|0.5 148511|0.34722 148512|0.13889 148513|0.55556 148514|0.48611 148515|0.31944 148516|0.40278 148517|0.625 148518|0.40278 148519|0.59722 148520|0.36111 148521|0.16667 148522|0.19444 148523|0.27778 148524|0.5 148525|0.51389 148526|0.25 148527|0.44444 148528|0.45833 148529|0.22222 148530|0.29167 148531|0.38889 148532|0.15278 148533|0.13889 148534|0.18056 148535|0.5 148536|0.5 148537|0.5 148538|0.29167 148539|0.55556 148540|0.5 148541|0.36111 148542|0.51389 148543|0.48611 148544|0.40278 148545|0.5 148546|0.41667 148547|0.5 148548|0.56944 148549|0.5 148550|0.5 148551|0.51389 148552|0.5 148553|0.52778 148554|0.47222 148555|0.54167 148556|0.27778 148557|0.47222 148558|0.38889 148559|0.625 148560|0.38889 148561|0.15278 148562|0.15278 148563|0.44444 148564|0.27778 148565|0.36111 148566|0.5 148567|0.20833 148568|0.20833 148569|0.20833 148570|0.38889 148571|0.13889 148572|0.5 148573|0.5 148574|0.70833 148575|0.40278 148576|0.38889 148577|0.29167 148578|0.36111 148579|0.26389 148580|0.5 148581|0.5 148582|0.54167 148583|0.23611 148584|0.19444 148585|0.5 148586|0.5 148587|0.5 148588|0.5 148589|0.40278 148590|0.5 148591|0.5 148592|0.5 148593|0.5 148594|0.43056 148595|0.41667 148596|0.27778 148597|0.20833 148598|0.34722 148599|0.43056 148600|0.22222 148601|0.27778 148602|0.44444 148603|0.54167 148604|0.5 148605|0.52778 148606|0.58333 148607|0.5 148608|0.44444 148609|0.25 148610|0.19444 148611|0.55556 148612|0.61111 148613|0.26389 148614|0.5 148615|0.63889 148616|0.69444 148617|0.41667 148618|0.30556 148619|0.22222 148620|0.5 148621|0.23611 148622|0.5 148623|0.61111 148624|0.5 148625|0.5 148626|0.5 148627|0.38889 148628|0.47222 148629|0.56944 148630|0.097222 148631|0.16667 148632|0.33333 148633|0.25 148634|0.33333 148635|0.20833 148636|0.55556 148637|0.5 148638|0.16667 148639|0.5 148640|0.56944 148641|0.72222 148642|0.61111 148643|0.65278 148644|0.5 148645|0.58333 148646|0.30556 148647|0.5 148648|0.31944 148649|0.5 148650|0.25 148651|0.33333 148652|0.54167 148653|0.33333 148654|0.27778 148655|0.34722 148656|0.36111 148657|0.5 148658|0.43056 148659|0.52778 148660|0.5 148661|0.5 148662|0.5 148663|0.58333 148664|0.125 148665|0.055556 148666|0.47222 148667|0.31944 148668|0.15278 148669|0.055556 148670|0.48611 148671|0.58333 148672|0.33333 148673|0.31944 148674|0.25 148675|0.625 148676|0.59722 148677|0.56944 148678|0.22222 148679|0.27778 148680|0.22222 148681|0.18056 148682|0.20833 148683|0.027778 148684|0.097222 148685|0 148686|0.18056 148687|0.25 148688|0.51389 148689|0.5 148690|0.5 148691|0.44444 148692|0.83333 148693|0.69444 148694|0.56944 148695|0.375 148696|0.54167 148697|0.5 148698|0.51389 148699|0.58333 148700|0.5 148701|0.48611 148702|0.45833 148703|0.5 148704|0.29167 148705|0.5 148706|0.54167 148707|0.52778 148708|0.5 148709|0.40278 148710|0.5 148711|0.5 148712|0.5 148713|0.5 148714|0.5 148715|0.36111 148716|0.11111 148717|0.68056 148718|0.61111 148719|0.56944 148720|0.25 148721|0.15278 148722|0.19444 148723|0.11111 148724|0.055556 148725|0.66667 148726|0.29167 148727|0.51389 148728|0.51389 148729|0.26389 148730|0.375 148731|0.22222 148732|0.51389 148733|0.48611 148734|0.73611 148735|0.72222 148736|0.58333 148737|0.51389 148738|0.29167 148739|0.16667 148740|0.47222 148741|0.5 148742|0.63889 148743|0.59722 148744|0.58333 148745|0.23611 148746|0.20833 148747|0.54167 148748|0.68056 148749|0.44444 148750|0.18056 148751|0.5 148752|0.38889 148753|0.5 148754|0.5 148755|0.41667 148756|0.58333 148757|0.61111 148758|0.55556 148759|0.47222 148760|0.44444 148761|0.27778 148762|0.44444 148763|0.43056 148764|0.23611 148765|0.5 148766|0.5 148767|0.36111 148768|0.33333 148769|0.5 148770|0.15278 148771|0.51389 148772|0.5 148773|0.5 148774|0.5 148775|0.31944 148776|0.61111 148777|0.52778 148778|0.55556 148779|0.45833 148780|0.5 148781|0.61111 148782|0.30556 148783|0.5 148784|0.45833 148785|0.5 148786|0.41667 148787|0.125 148788|0.51389 148789|0.51389 148790|0.52778 148791|0.5 148792|0.36111 148793|0.55556 148794|0.5 148795|0.5 148796|0.5 148797|0.51389 148798|0.5 148799|0.30556 148800|0.5 148801|0.38889 148802|0.48611 148803|0.54167 148804|0.55556 148805|0.56944 148806|0.23611 148807|0.16667 148808|0.5 148809|0.40278 148810|0.5 148811|0.52778 148812|0.40278 148813|0.26389 148814|0.16667 148815|0.38889 148816|0.58333 148817|0.5 148818|0.84722 148819|0.69444 148820|0.11111 148821|0.13889 148822|0.055556 148823|0.375 148824|0.77778 148825|0.5 148826|0.5 148827|0.5 148828|0.27778 148829|0.44444 148830|0.22222 148831|0.15278 148832|0.15278 148833|0.5 148834|0.5 148835|0.5 148836|0.51389 148837|0.56944 148838|0.625 148839|0.55556 148840|0.70833 148841|0.33333 148842|0.36111 148843|0.72222 148844|0.18056 148845|0.5 148846|0.58333 148847|0.73611 148848|0.13889 148849|0.25 148850|0.38889 148851|0.5 148852|0.25 148853|0.40278 148854|0.22222 148855|0.13889 148856|0.22222 148857|0.23611 148858|0.22222 148859|0.5 148860|0.43056 148861|0.5 148862|0.58333 148863|0.63889 148864|0.51389 148865|0.79167 148866|0.5 148867|0.22222 148868|0.45833 148869|0.45833 148870|0.44444 148871|0.41667 148872|0.31944 148873|0.36111 148874|0.125 148875|0.59722 148876|0.38889 148877|0.22222 148878|0.055556 148879|0.36111 148880|0.5 148881|0.375 148882|0.54167 148883|0.81944 148884|0.77778 148885|0.69444 148886|0.27778 148887|0.51389 148888|0.29167 148889|0.33333 148890|0.16667 148891|0.375 148892|0.20833 148893|0.33333 148894|0.59722 148895|0.13889 148896|0.27778 148897|0.63889 148898|0.36111 148899|0.25 148900|0.33333 148901|0.18056 148902|0.43056 148903|0.51389 148904|0.125 148905|0.48611 148906|0.44444 148907|0.20833 148908|0.30556 148909|0.30556 148910|0.23611 148911|0.26389 148912|0.097222 148913|0.375 148914|0.33333 148915|0.18056 148916|0.22222 148917|0.125 148918|0.29167 148919|0.38889 148920|0.30556 148921|0.15278 148922|0.18056 148923|0.5 148924|0.5 148925|0.5 148926|0.51389 148927|0.5 148928|0.44444 148929|0.47222 148930|0.43056 148931|0.41667 148932|0.44444 148933|0.29167 148934|0.26389 148935|0.5 148936|0.5 148937|0.29167 148938|0.56944 148939|0.52778 148940|0.43056 148941|0.44444 148942|0.5 148943|0.66667 148944|0.5 148945|0.16667 148946|0.5 148947|0.45833 148948|0.43056 148949|0.25 148950|0.43056 148951|0.61111 148952|0.52778 148953|0.22222 148954|0.55556 148955|0.54167 148956|0.36111 148957|0.48611 148958|0.33333 148959|0.5 148960|0.5 148961|0.59722 148962|0.30556 148963|0.33333 148964|0.73611 148965|0.31944 148966|0.26389 148967|0.54167 148968|0.55556 148969|0.5 148970|0.5 148971|0.44444 148972|0.5 148973|0.52778 148974|0.52778 148975|0.5 148976|0.5 148977|0.5 148978|0.61111 148979|0.5 148980|0.29167 148981|0.51389 148982|0.5 148983|0.43056 148984|0.45833 148985|0.44444 148986|0.51389 148987|0.5 148988|0.51389 148989|0.41667 148990|0.5 148991|0.375 148992|0.44444 148993|0.56944 148994|0.40278 148995|0.27778 148996|0.45833 148997|0.36111 148998|0.44444 148999|0.5 149000|0.52778 149001|0.5 149002|0.34722 149003|0.16667 149004|0.27778 149005|0.16667 149006|0.45833 149007|0.45833 149008|0.20833 149009|0.51389 149010|0.5 149011|0.63889 149012|0.31944 149013|0.5 149014|0.625 149015|0.45833 149016|0.5 149017|0.44444 149018|0.47222 149019|0.5 149020|0.5 149021|0.5 149022|0.5 149023|0.5 149024|0.38889 149025|0.47222 149026|0.22222 149027|0.40278 149028|0.52778 149029|0.097222 149030|0.5 149031|0.58333 149032|0.5 149033|0.27778 149034|0.5 149035|0.5 149036|0.33333 149037|0.375 149038|0.5 149039|0.5 149040|0.27778 149041|0.5 149042|0.5 149043|0.44444 149044|0.5 149045|0.5 149046|0.5 149047|0.5 149048|0.58333 149049|0.76389 149050|0.69444 149051|0.73611 149052|0.52778 149053|0.375 149054|0.34722 149055|0.44444 149056|0.44444 149057|0.63889 149058|0.5 149059|0.63889 149060|0.30556 149061|0.84722 149062|0.40278 149063|0.25 149064|0.26389 149065|0.54167 149066|0.51389 149067|0.51389 149068|0.41667 149069|0.40278 149070|0.51389 149071|0.29167 149072|0.5 149073|0.55556 149074|0.34722 149075|0.5 149076|0.5 149077|0.5 149078|0.5 149079|0.5 149080|0.5 149081|0.47222 149082|0.29167 149083|0.70833 149084|0.47222 149085|0.33333 149086|0.29167 149087|0.5 149088|0.44444 149089|0.45833 149090|0.27778 149091|0.51389 149092|0.5 149093|0.40278 149094|0.5 149095|0.5 149096|0.52778 149097|0.5 149098|0.88889 149099|0.5 149100|0.5 149101|0.51389 149102|0.5 149103|0.22222 149104|0.19444 149105|0.55556 149106|0.51389 149107|0.54167 149108|0.5 149109|0.29167 149110|0.097222 149111|0.5 149112|0.31944 149113|0.5 149114|0.5 149115|0.45833 149116|0.5 149117|0.5 149118|0.40278 149119|0.18056 149120|0.5 149121|0.5 149122|0.47222 149123|0.5 149124|0.097222 149125|0.5 149126|0.55556 149127|0.48611 149128|0.5 149129|0.30556 149130|0.38889 149131|0.5 149132|0.22222 149133|0.18056 149134|0.5 149135|0.18056 149136|0.25 149137|0.5 149138|0.54167 149139|0.65278 149140|0.51389 149141|0.5 149142|0.51389 149143|0.5 149144|0.5 149145|0.34722 149146|0.5 149147|0.5 149148|0.58333 149149|0.15278 149150|0.29167 149151|0.26389 149152|0.125 149153|0.16667 149154|0.5 149155|0.41667 149156|0.16667 149157|0.11111 149158|0.26389 149159|0.52778 149160|0.375 149161|0.26389 149162|0.20833 149163|0.20833 149164|0.625 149165|0.25 149166|0.61111 149167|0.25 149168|0.5 149169|0.25 149170|0.5 149171|0.45833 149172|0.5 149173|0.5 149174|0.41667 149175|0.23611 149176|0.19444 149177|0.625 149178|0.52778 149179|0.30556 149180|0.72222 149181|0.5 149182|0.27778 149183|0.27778 149184|0.26389 149185|0.25 149186|0.375 149187|0.65278 149188|0.33333 149189|0.31944 149190|0.055556 149191|0.18056 149192|0.5 149193|0.59722 149194|0.5 149195|0.38889 149196|0.31944 149197|0.83333 149198|0.73611 149199|0.59722 149200|0.29167 149201|0.47222 149202|0.33333 149203|0.375 149204|0.29167 149205|0.20833 149206|0.18056 149207|0.26389 149208|0.5 149209|0.5 149210|0.36111 149211|0.22222 149212|0.5 149213|0.375 149214|0.55556 149215|0.61111 149216|0.19444 149217|0.40278 149218|0.18056 149219|0.45833 149220|0.58333 149221|0.5 149222|0.45833 149223|0.5 149224|0.40278 149225|0.31944 149226|0.34722 149227|0.34722 149228|0.55556 149229|0.41667 149230|0.5 149231|0.16667 149232|0.56944 149233|0.54167 149234|0.59722 149235|0.36111 149236|0.5 149237|0.30556 149238|0.31944 149239|0.15278 149240|0.63889 149241|0.15278 149242|0.29167 149243|0.51389 149244|0.5 149245|0.5 149246|0.26389 149247|0.5 149248|0.59722 149249|0.38889 149250|0.16667 149251|0.31944 149252|0.31944 149253|0.23611 149254|0.27778 149255|0.25 149256|0.83333 149257|0.94444 149258|0.63889 149259|0.52778 149260|0.5 149261|0.375 149262|0.5 149263|0.22222 149264|0.25 149265|0.30556 149266|0.22222 149267|0.38889 149268|0.52778 149269|0.33333 149270|0.22222 149271|0.22222 149272|0.13889 149273|0.11111 149274|0.68056 149275|0.73611 149276|0.73611 149277|0.52778 149278|0.25 149279|0.38889 149280|0.19444 149281|0.5 149282|0.5 149283|0.38889 149284|0.125 149285|0.5 149286|0.30556 149287|0.30556 149288|0.65278 149289|0.58333 149290|0.40278 149291|0.40278 149292|0.36111 149293|0.44444 149294|0.40278 149295|0.5 149296|0.41667 149297|0.29167 149298|0.16667 149299|0.27778 149300|0.15278 149301|0.54167 149302|0.66667 149303|0.44444 149304|0.40278 149305|0.20833 149306|0.375 149307|0.34722 149308|0.31944 149309|0.125 149310|0.5 149311|0.40278 149312|0.5 149313|0.52778 149314|0.26389 149315|0.47222 149316|0.59722 149317|0.31944 149318|0.22222 149319|0.41667 149320|0.20833 149321|0.125 149322|0.18056 149323|0.069444 149324|0.16667 149325|0.125 149326|0.5 149327|0.52778 149328|0.54167 149329|0.51389 149330|0.63889 149331|0.54167 149332|0.33333 149333|0.38889 149334|0.44444 149335|0.18056 149336|0.26389 149337|0.38889 149338|0.63889 149339|0.51389 149340|0.29167 149341|0.22222 149342|0.66667 149343|0.44444 149344|0.34722 149345|0.30556 149346|0.5 149347|0.69444 149348|0.58333 149349|0.52778 149350|0.375 149351|0.30556 149352|0.48611 149353|0.29167 149354|0.54167 149355|0.77778 149356|0.61111 149357|0.20833 149358|0.18056 149359|0.19444 149360|0.43056 149361|0.26389 149362|0.22222 149363|0.51389 149364|0.72222 149365|0.72222 149366|0.65278 149367|0.38889 149368|0.375 149369|0.47222 149370|0.54167 149371|0.5 149372|0.29167 149373|0.58333 149374|0.43056 149375|0.30556 149376|0.38889 149377|0.19444 149378|0.13889 149379|0.34722 149380|0.125 149381|0.5 149382|0.44444 149383|0.5 149384|0.30556 149385|0.52778 149386|0.69444 149387|0.65278 149388|0.48611 149389|0.43056 149390|0.43056 149391|0.34722 149392|0.31944 149393|0.36111 149394|0.19444 149395|0.18056 149396|0.18056 149397|0.44444 149398|0.45833 149399|0.26389 149400|0.26389 149401|0.38889 149402|0.23611 149403|0.40278 149404|0.68056 149405|0.63889 149406|0.52778 149407|0.5 149408|0.41667 149409|0.47222 149410|0.51389 149411|0.29167 149412|0.11111 149413|0.59722 149414|0.56944 149415|0.29167 149416|0.27778 149417|0.20833 149418|0.36111 149419|0.375 149420|0.19444 149421|0.72222 149422|0.25 149423|0.26389 149424|0.69444 149425|0.25 149426|0.25 149427|0.22222 149428|0.44444 149429|0.26389 149430|0.23611 149431|0.18056 149432|0.23611 149433|0.33333 149434|0.055556 149435|0.30556 149436|0.47222 149437|0.5 149438|0.23611 149439|0.26389 149440|0.13889 149441|0.083333 149442|0.25 149443|0.5 149444|0.625 149445|0.54167 149446|0.40278 149447|0.55556 149448|0.48611 149449|0.69444 149450|0.125 149451|0.61111 149452|0.72222 149453|0.26389 149454|0.5 149455|0.41667 149456|0.5 149457|0.18056 149458|0.55556 149459|0.20833 149460|0.23611 149461|0.19444 149462|0.27778 149463|0.36111 149464|0.375 149465|0.56944 149466|0.29167 149467|0.40278 149468|0.40278 149469|0.15278 149470|0.44444 149471|0.29167 149472|0.25 149473|0.52778 149474|0.5 149475|0.29167 149476|0.5 149477|0.5 149478|0.77778 149479|0.55556 149480|0.63889 149481|0.27778 149482|0.45833 149483|0.5 149484|0.5 149485|0.22222 149486|0.25 149487|0.5 149488|0.5 149489|0.33333 149490|0.30556 149491|0.30556 149492|0.45833 149493|0.31944 149494|0.375 149495|0.15278 149496|0.54167 149497|0.47222 149498|0.5 149499|0.375 149500|0.61111 149501|0.5 149502|0.29167 149503|0.25 149504|0.33333 149505|0.30556 149506|0.34722 149507|0.38889 149508|0.31944 149509|0.55556 149510|0.61111 149511|0.65278 149512|0.59722 149513|0.375 149514|0.33333 149515|0.27778 149516|0.48611 149517|0.375 149518|0.125 149519|0.041667 149520|0.5 149521|0.5 149522|0.69444 149523|0.5 149524|0.48611 149525|0.375 149526|0.055556 149527|0.041667 149528|0.15278 149529|0.23611 149530|0.44444 149531|0.25 149532|0.16667 149533|0.16667 149534|0.44444 149535|0.33333 149536|0.5 149537|0.5 149538|0.31944 149539|0.16667 149540|0.375 149541|0.22222 149542|0.48611 149543|0.43056 149544|0.45833 149545|0.31944 149546|0.5 149547|0.44444 149548|0.56944 149549|0.72222 149550|0.44444 149551|0.73611 149552|0.72222 149553|0.47222 149554|0.70833 149555|0.47222 149556|0.25 149557|0.15278 149558|0.097222 149559|0.18056 149560|0.47222 149561|0.36111 149562|0.16667 149563|0.41667 149564|0.27778 149565|0.5 149566|0.5 149567|0.5 149568|0.34722 149569|0.34722 149570|0.25 149571|0.29167 149572|0.27778 149573|0.22222 149574|0.26389 149575|0.16667 149576|0.56944 149577|0.79167 149578|0.63889 149579|0.55556 149580|0.61111 149581|0.48611 149582|0.30556 149583|0.31944 149584|0.25 149585|0.44444 149586|0.31944 149587|0.31944 149588|0.31944 149589|0.083333 149590|0.30556 149591|0.33333 149592|0.16667 149593|0.13889 149594|0.083333 149595|0.23611 149596|0.125 149597|0.29167 149598|0.22222 149599|0.65278 149600|0.38889 149601|0.16667 149602|0.19444 149603|0.43056 149604|0.15278 149605|0.72222 149606|0.33333 149607|0.66667 149608|0.31944 149609|0.44444 149610|0.22222 149611|0.20833 149612|0.34722 149613|0.36111 149614|0.16667 149615|0.45833 149616|0.13889 149617|0.23611 149618|0.11111 149619|0.125 149620|0.5 149621|0.33333 149622|0.51389 149623|0.33333 149624|0.20833 149625|0.26389 149626|0.27778 149627|0.27778 149628|0.34722 149629|0.41667 149630|0.27778 149631|0.51389 149632|0.40278 149633|0.097222 149634|0.5 149635|0.41667 149636|0.61111 149637|0.76389 149638|0.76389 149639|0.54167 149640|0.36111 149641|0.48611 149642|0.61111 149643|0.59722 149644|0.26389 149645|0.25 149646|0.55556 149647|0.52778 149648|0.20833 149649|0.29167 149650|0.11111 149651|0.44444 149652|0.44444 149653|0.13889 149654|0.48611 149655|0.51389 149656|0.18056 149657|0.43056 149658|0.069444 149659|0.5 149660|0.375 149661|0.5 149662|0.5 149663|0.16667 149664|0.5 149665|0.40278 149666|0.375 149667|0.34722 149668|0.055556 149669|0.36111 149670|0.26389 149671|0.375 149672|0.125 149673|0.23611 149674|0.083333 149675|0.5 149676|0.19444 149677|0.055556 149678|0.22222 149679|0.027778 149680|0.5 149681|0.27778 149682|0.31944 149683|0.51389 149684|0.18056 149685|0.29167 149686|0.16667 149687|0.5 149688|0.31944 149689|0.25 149690|0.44444 149691|0.375 149692|0.54167 149693|0.20833 149694|0.25 149695|0.48611 149696|0.5 149697|0.5 149698|0.55556 149699|0.5 149700|0.375 149701|0.13889 149702|0.097222 149703|0.25 149704|0.41667 149705|0.5 149706|0.47222 149707|0.20833 149708|0.41667 149709|0.34722 149710|0.5 149711|0.44444 149712|0.36111 149713|0.52778 149714|0.40278 149715|0.31944 149716|0.23611 149717|0.25 149718|0.51389 149719|0.51389 149720|0.27778 149721|0.5 149722|0.52778 149723|0.41667 149724|0.25 149725|0.31944 149726|0.61111 149727|0.31944 149728|0.5 149729|0.26389 149730|0.45833 149731|0.41667 149732|0.16667 149733|0.19444 149734|0.375 149735|0.25 149736|0.26389 149737|0.36111 149738|0.30556 149739|0.22222 149740|0.16667 149741|0.26389 149742|0.27778 149743|0.29167 149744|0.40278 149745|0.20833 149746|0.73611 149747|0.83333 149748|0.69444 149749|0.34722 149750|0.375 149751|0.11111 149752|0.15278 149753|0.44444 149754|0.33333 149755|0.23611 149756|0.33333 149757|0.18056 149758|0.29167 149759|0.083333 149760|0.13889 149761|0.375 149762|0.20833 149763|0.18056 149764|0.31944 149765|0.26389 149766|0.47222 149767|0.29167 149768|0.44444 149769|0.34722 149770|0.34722 149771|0.23611 149772|0.38889 149773|0.19444 149774|0.25 149775|0.29167 149776|0.125 149777|0.20833 149778|0.40278 149779|0.56944 149780|0.63889 149781|0.65278 149782|0.75 149783|0.56944 149784|0.52778 149785|0.5 149786|0.5 149787|0.40278 149788|0.5 149789|0.48611 149790|0.5 149791|0.34722 149792|0.26389 149793|0.61111 149794|0.51389 149795|0.31944 149796|0.33333 149797|0.38889 149798|0.30556 149799|0.38889 149800|0.51389 149801|0.25 149802|0.18056 149803|0.29167 149804|0.22222 149805|0.20833 149806|0.15278 149807|0.22222 149808|0.18056 149809|0.40278 149810|0.44444 149811|0.63889 149812|0.5 149813|0.25 149814|0.36111 149815|0.22222 149816|0.11111 149817|0.11111 149818|0.34722 149819|0.20833 149820|0.34722 149821|0.22222 149822|0.34722 149823|0.20833 149824|0.51389 149825|0.5 149826|0.61111 149827|0.375 149828|0.19444 149829|0.16667 149830|0.5 149831|0.56944 149832|0.19444 149833|0.5 149834|0.23611 149835|0.22222 149836|0.31944 149837|0.16667 149838|0.45833 149839|0.18056 149840|0.66667 149841|0.083333 149842|0.47222 149843|0.61111 149844|0.51389 149845|0.66667 149846|0.45833 149847|0.27778 149848|0.5 149849|0.34722 149850|0.16667 149851|0.125 149852|0.625 149853|0.5 149854|0.34722 149855|0.55556 149856|0.27778 149857|0.23611 149858|0.30556 149859|0.38889 149860|0.34722 149861|0.33333 149862|0.29167 149863|0.36111 149864|0.33333 149865|0.38889 149866|0.23611 149867|0.38889 149868|0.33333 149869|0.44444 149870|0.5 149871|0.22222 149872|0.38889 149873|0.36111 149874|0.68056 149875|0.68056 149876|0.56944 149877|0.54167 149878|0.38889 149879|0.45833 149880|0.20833 149881|0.5 149882|0.5 149883|0.51389 149884|0.5 149885|0.59722 149886|0.69444 149887|0.51389 149888|0.45833 149889|0.26389 149890|0.43056 149891|0.70833 149892|0.66667 149893|0.55556 149894|0.34722 149895|0.48611 149896|0.5 149897|0.625 149898|0.041667 149899|0 149900|0 149901|0.5 149902|0.5 149903|0.33333 149904|0.52778 149905|0.55556 149906|0.55556 149907|0.5 149908|0.54167 149909|0.63889 149910|0.5 149911|0.31944 149912|0.47222 149913|0.29167 149914|0.47222 149915|0.63889 149916|0.68056 149917|0.63889 149918|0.38889 149919|0.41667 149920|0.54167 149921|0.25 149922|0.625 149923|0.58333 149924|0.18056 149925|0.23611 149926|0.23611 149927|0.16667 149928|0.20833 149929|0.52778 149930|0.44444 149931|0.38889 149932|0.5 149933|0.625 149934|0.27778 149935|0.16667 149936|0.5 149937|0.375 149938|0.51389 149939|0.51389 149940|0.5 149941|0.54167 149942|0.5 149943|0.19444 149944|0.23611 149945|0.26389 149946|0.5 149947|0.27778 149948|0.5 149949|0.52778 149950|0.25 149951|0.5 149952|0.68056 149953|0.33333 149954|0.5 149955|0.38889 149956|0.36111 149957|0.43056 149958|0.41667 149959|0.51389 149960|0.58333 149961|0.33333 149962|0.33333 149963|0.31944 149964|0.19444 149965|0.083333 149966|0.5 149967|0.52778 149968|0.5 149969|0.5 149970|0.30556 149971|0.30556 149972|0.23611 149973|0.27778 149974|0.22222 149975|0.5 149976|0.5 149977|0.5 149978|0.51389 149979|0.5 149980|0.23611 149981|0.19444 149982|0.30556 149983|0.26389 149984|0.5 149985|0.27778 149986|0.18056 149987|0.55556 149988|0.22222 149989|0.51389 149990|0.20833 149991|0.59722 149992|0.16667 149993|0.27778 149994|0.20833 149995|0.41667 149996|0.54167 149997|0.52778 149998|0.5 149999|0.61111 150000|0.5 150001|0.5 150002|0.38889 150003|0.55556 150004|0.58333 150005|0.65278 150006|0.33333 150007|0.38889 150008|0.20833 150009|0.27778 150010|0.19444 150011|0.36111 150012|0.5 150013|0.5 150014|0.43056 150015|0.56944 150016|0.5 150017|0.5 150018|0.69444 150019|0.51389 150020|0.38889 150021|0.5 150022|0.5 150023|0.38889 150024|0.56944 150025|0.58333 150026|0.5 150027|0.48611 150028|0.45833 150029|0.54167 150030|0.43056 150031|0.44444 150032|0.43056 150033|0.56944 150034|0.375 150035|0.41667 150036|0.63889 150037|0.63889 150038|0.41667 150039|0.34722 150040|0.38889 150041|0.23611 150042|0.40278 150043|0.23611 150044|0.33333 150045|0.5 150046|0.65278 150047|0.52778 150048|0.18056 150049|0.36111 150050|0.36111 150051|0.15278 150052|0.30556 150053|0.44444 150054|0.27778 150055|0.18056 150056|0.44444 150057|0.23611 150058|0.33333 150059|0.22222 150060|0.29167 150061|0.41667 150062|0.26389 150063|0.34722 150064|0.44444 150065|0.20833 150066|0.5 150067|0.375 150068|0.30556 150069|0.375 150070|0.69444 150071|0.66667 150072|0.56944 150073|0.59722 150074|0.45833 150075|0.48611 150076|0.55556 150077|0.20833 150078|0.27778 150079|0.11111 150080|0.23611 150081|0.29167 150082|0.38889 150083|0.45833 150084|0.25 150085|0.20833 150086|0.25 150087|0.30556 150088|0.29167 150089|0.54167 150090|0.16667 150091|0.33333 150092|0.26389 150093|0.26389 150094|0.20833 150095|0.77778 150096|0.75 150097|0.5 150098|0.20833 150099|0.30556 150100|0.43056 150101|0.55556 150102|0.45833 150103|0.26389 150104|0.27778 150105|0.27778 150106|0.45833 150107|0.30556 150108|0.44444 150109|0.31944 150110|0.47222 150111|0.19444 150112|0.20833 150113|0.59722 150114|0.13889 150115|0.083333 150116|0.16667 150117|0.51389 150118|0.52778 150119|0.33333 150120|0.40278 150121|0.36111 150122|0.33333 150123|0.38889 150124|0.34722 150125|0.38889 150126|0.30556 150127|0.16667 150128|0.22222 150129|0.68056 150130|0.16667 150131|0.5 150132|0.5 150133|0.5 150134|0.55556 150135|0.25 150136|0.38889 150137|0.55556 150138|0.38889 150139|0.20833 150140|0.26389 150141|0.40278 150142|0.5 150143|0.47222 150144|0.43056 150145|0.5 150146|0.5 150147|0.5 150148|0.5 150149|0.25 150150|0.5 150151|0.61111 150152|0.66667 150153|0.58333 150154|0.43056 150155|0.44444 150156|0.5 150157|0.34722 150158|0.5 150159|0.54167 150160|0.20833 150161|0.45833 150162|0.5 150163|0.47222 150164|0.56944 150165|0.40278 150166|0.375 150167|0.44444 150168|0.20833 150169|0.33333 150170|0.41667 150171|0.29167 150172|0.33333 150173|0.47222 150174|0.5 150175|0.23611 150176|0.19444 150177|0.055556 150178|0.5 150179|0.5 150180|0.5 150181|0.23611 150182|0.5 150183|0.5 150184|0.5 150185|0.38889 150186|0.15278 150187|0.44444 150188|0.51389 150189|0.18056 150190|0.38889 150191|0.27778 150192|0.18056 150193|0.375 150194|0.36111 150195|0.30556 150196|0.61111 150197|0.51389 150198|0.25 150199|0.5 150200|0.26389 150201|0.44444 150202|0.26389 150203|0.25 150204|0.16667 150205|0.22222 150206|0.083333 150207|0.27778 150208|0.41667 150209|0.27778 150210|0.63889 150211|0.625 150212|0.54167 150213|0.5 150214|0.52778 150215|0.80556 150216|0.81944 150217|0.625 150218|0.25 150219|0.29167 150220|0.27778 150221|0.23611 150222|0.125 150223|0.16667 150224|0.27778 150225|0.375 150226|0.38889 150227|0.375 150228|0.41667 150229|0.66667 150230|0.73611 150231|0.54167 150232|0.41667 150233|0.33333 150234|0.36111 150235|0.33333 150236|0.44444 150237|0.19444 150238|0.44444 150239|0.375 150240|0.26389 150241|0.43056 150242|0.20833 150243|0.23611 150244|0.18056 150245|0.44444 150246|0.55556 150247|0.055556 150248|0.16667 150249|0.58333 150250|0.38889 150251|0.16667 150252|0.38889 150253|0.15278 150254|0.36111 150255|0.20833 150256|0.27778 150257|0.26389 150258|0.59722 150259|0.52778 150260|0.34722 150261|0.47222 150262|0.40278 150263|0.38889 150264|0.13889 150265|0.23611 150266|0.15278 150267|0.22222 150268|0.19444 150269|0.19444 150270|0.125 150271|0.29167 150272|0.013889 150273|0.097222 150274|0.13889 150275|0.5 150276|0.25 150277|0.25 150278|0.29167 150279|0.18056 150280|0.23611 150281|0.19444 150282|0.5 150283|0.63889 150284|0.72222 150285|0.65278 150286|0.55556 150287|0.41667 150288|0.41667 150289|0.11111 150290|0.18056 150291|0.19444 150292|0.5 150293|0.55556 150294|0.55556 150295|0.45833 150296|0.5 150297|0.30556 150298|0.27778 150299|0.66667 150300|0.20833 150301|0.5 150302|0.041667 150303|0 150304|0.44444 150305|0.51389 150306|0.44444 150307|0.125 150308|0.43056 150309|0.34722 150310|0.25 150311|0.5 150312|0.36111 150313|0.069444 150314|0.23611 150315|0.13889 150316|0.19444 150317|0.18056 150318|0.15278 150319|0.51389 150320|0.5 150321|0.51389 150322|0.47222 150323|0.54167 150324|0.5 150325|0.5 150326|0.59722 150327|0.5 150328|0.33333 150329|0.26389 150330|0.5 150331|0.47222 150332|0.34722 150333|0.44444 150334|0.5 150335|0.25 150336|0.23611 150337|0.34722 150338|0.27778 150339|0.51389 150340|0.41667 150341|0.52778 150342|0.33333 150343|0.625 150344|0.38889 150345|0.69444 150346|0.375 150347|0.66667 150348|0.26389 150349|0.625 150350|0.375 150351|0.375 150352|0.63889 150353|0.55556 150354|0.43056 150355|0.68056 150356|0.34722 150357|0.61111 150358|0.44444 150359|0.59722 150360|0.27778 150361|0.33333 150362|0.48611 150363|0.58333 150364|0.61111 150365|0.5 150366|0.58333 150367|0.5 150368|0.29167 150369|0.34722 150370|0.5 150371|0.25 150372|0.5 150373|0.59722 150374|0.26389 150375|0.44444 150376|0.48611 150377|0.5 150378|0.5 150379|0.5 150380|0.5 150381|0.5 150382|0.33333 150383|0.38889 150384|0.23611 150385|0.23611 150386|0.069444 150387|0.70833 150388|0.59722 150389|0.20833 150390|0.15278 150391|0.5 150392|0.52778 150393|0.45833 150394|0.43056 150395|0.56944 150396|0.41667 150397|0.47222 150398|0.26389 150399|0.5 150400|0.56944 150401|0.5 150402|0.43056 150403|0.38889 150404|0.5 150405|0.5 150406|0.25 150407|0.55556 150408|0.5 150409|0.33333 150410|0.29167 150411|0.38889 150412|0.5 150413|0.51389 150414|0.5 150415|0.5 150416|0.43056 150417|0.5 150418|0.5 150419|0.375 150420|0.51389 150421|0.5 150422|0.38889 150423|0.5 150424|0.5 150425|0.30556 150426|0.48611 150427|0.19444 150428|0.55556 150429|0.26389 150430|0.44444 150431|0.34722 150432|0.31944 150433|0.31944 150434|0.34722 150435|0.29167 150436|0.5 150437|0.29167 150438|0.375 150439|0.34722 150440|0.27778 150441|0.43056 150442|0.375 150443|0.36111 150444|0.25 150445|0.40278 150446|0.29167 150447|0.38889 150448|0.11111 150449|0.23611 150450|0.19444 150451|0.13889 150452|0.36111 150453|0.30556 150454|0.36111 150455|0.51389 150456|0.38889 150457|0.19444 150458|0.45833 150459|0.26389 150460|0.41667 150461|0.16667 150462|0.11111 150463|0.19444 150464|0.25 150465|0.22222 150466|0.18056 150467|0.20833 150468|0.29167 150469|0.16667 150470|0.375 150471|0.40278 150472|0.20833 150473|0.31944 150474|0.18056 150475|0.26389 150476|0.26389 150477|0.23611 150478|0.375 150479|0.36111 150480|0.13889 150481|0.33333 150482|0.375 150483|0.26389 150484|0.36111 150485|0.23611 150486|0.5 150487|0.26389 150488|0.5 150489|0.58333 150490|0.5 150491|0.56944 150492|0.5 150493|0.56944 150494|0.5 150495|0.5 150496|0.55556 150497|0.5 150498|0.61111 150499|0.27778 150500|0.15278 150501|0.51389 150502|0.29167 150503|0.36111 150504|0.38889 150505|0.18056 150506|0.19444 150507|0.13889 150508|0.30556 150509|0.36111 150510|0.125 150511|0.48611 150512|0.48611 150513|0.51389 150514|0.54167 150515|0.5 150516|0.54167 150517|0.55556 150518|0.54167 150519|0.51389 150520|0.375 150521|0.43056 150522|0.25 150523|0.47222 150524|0.22222 150525|0.27778 150526|0.48611 150527|0.375 150528|0.5 150529|0.5 150530|0.52778 150531|0.5 150532|0.47222 150533|0.5 150534|0.5 150535|0.36111 150536|0.55556 150537|0.5 150538|0.43056 150539|0.33333 150540|0.083333 150541|0.19444 150542|0.5 150543|0.375 150544|0.5 150545|0.5 150546|0.44444 150547|0.31944 150548|0.44444 150549|0.33333 150550|0.34722 150551|0.23611 150552|0.27778 150553|0.5 150554|0.63889 150555|0.72222 150556|0.5 150557|0.34722 150558|0.5 150559|0.5 150560|0.44444 150561|0.47222 150562|0.5 150563|0.5 150564|0.33333 150565|0.30556 150566|0.5 150567|0.38889 150568|0.375 150569|0.18056 150570|0.375 150571|0.34722 150572|0.47222 150573|0.26389 150574|0.27778 150575|0.48611 150576|0.27778 150577|0.33333 150578|0.38889 150579|0.19444 150580|0.30556 150581|0.27778 150582|0.5 150583|0.44444 150584|0.22222 150585|0.31944 150586|0.29167 150587|0.44444 150588|0.33333 150589|0.66667 150590|0.5 150591|0.47222 150592|0.45833 150593|0.55556 150594|0.45833 150595|0.38889 150596|0.47222 150597|0.29167 150598|0.20833 150599|0.5 150600|0.5 150601|0.5 150602|0.5 150603|0.5 150604|0.52778 150605|0.375 150606|0.19444 150607|0.51389 150608|0.5 150609|0.5 150610|0.5 150611|0.5 150612|0.44444 150613|0.30556 150614|0.55556 150615|0.5 150616|0.16667 150617|0.36111 150618|0.44444 150619|0.26389 150620|0.30556 150621|0.65278 150622|0.56944 150623|0.52778 150624|0.5 150625|0.22222 150626|0.5 150627|0.5 150628|0.625 150629|0.45833 150630|0.33333 150631|0.36111 150632|0.38889 150633|0.52778 150634|0.27778 150635|0.43056 150636|0.29167 150637|0.31944 150638|0.44444 150639|0.11111 150640|0.56944 150641|0.65278 150642|0.79167 150643|0.79167 150644|0.88889 150645|0.27778 150646|0.40278 150647|0.5 150648|0.51389 150649|0.59722 150650|0.5 150651|0.5 150652|0.5 150653|0.375 150654|0.48611 150655|0.44444 150656|0.38889 150657|0.40278 150658|0.20833 150659|0.13889 150660|0.23611 150661|0.41667 150662|0.5 150663|0.5 150664|0.81944 150665|0.59722 150666|0.63889 150667|0.40278 150668|0.33333 150669|0.5 150670|0.5 150671|0.58333 150672|0.5 150673|0.5 150674|0.61111 150675|0.52778 150676|0.5 150677|0.5 150678|0.63889 150679|0.5 150680|0.5 150681|0.5 150682|0.31944 150683|0.069444 150684|0.5 150685|0.5 150686|0.59722 150687|0.44444 150688|0.5 150689|0.5 150690|0.5 150691|0.52778 150692|0.58333 150693|0.54167 150694|0.5 150695|0.5 150696|0.43056 150697|0.55556 150698|0.48611 150699|0.47222 150700|0.36111 150701|0.5 150702|0.43056 150703|0.5 150704|0.23611 150705|0.5 150706|0.30556 150707|0.16667 150708|0.5 150709|0.23611 150710|0.36111 150711|0.18056 150712|0.38889 150713|0.66667 150714|0.11111 150715|0.083333 150716|0.27778 150717|0.55556 150718|0.5 150719|0.5 150720|0.41667 150721|0.54167 150722|0.5 150723|0.52778 150724|0.5 150725|0.375 150726|0.47222 150727|0.36111 150728|0.5 150729|0.27778 150730|0.16667 150731|0.29167 150732|0.5 150733|0.13889 150734|0.52778 150735|0.5 150736|0.5 150737|0.5 150738|0.25 150739|0.11111 150740|0.11111 150741|0.13889 150742|0.15278 150743|0.26389 150744|0.84722 150745|0.15278 150746|0.41667 150747|0.59722 150748|0.23611 150749|0.41667 150750|0.26389 150751|0.19444 150752|0.5 150753|0.38889 150754|0.54167 150755|0.56944 150756|0.47222 150757|0.55556 150758|0.41667 150759|0.5 150760|0.55556 150761|0.47222 150762|0.27778 150763|0.5 150764|0.5 150765|0.72222 150766|0.47222 150767|0.36111 150768|0.625 150769|0.19444 150770|0.041667 150771|0.33333 150772|0.19444 150773|0.83333 150774|0.66667 150775|0.36111 150776|0.48611 150777|0.5 150778|0.5 150779|0.5 150780|0.5 150781|0.5 150782|0.30556 150783|0.5 150784|0.5 150785|0.52778 150786|0.27778 150787|0.5 150788|0.59722 150789|0.40278 150790|0.5 150791|0.5 150792|0.59722 150793|0.5 150794|0.11111 150795|0.18056 150796|0.40278 150797|0.19444 150798|0.43056 150799|0.38889 150800|0.33333 150801|0.43056 150802|0.29167 150803|0.51389 150804|0.5 150805|0.5 150806|0.38889 150807|0.43056 150808|0.52778 150809|0.22222 150810|0.33333 150811|0.22222 150812|0.55556 150813|0.76389 150814|0.70833 150815|0.51389 150816|0.58333 150817|0.86111 150818|0.44444 150819|0.41667 150820|0.34722 150821|0.51389 150822|0.33333 150823|0.22222 150824|0.375 150825|0.30556 150826|0.22222 150827|0.38889 150828|0.5 150829|0.15278 150830|0.11111 150831|0.47222 150832|0.48611 150833|0.52778 150834|0.5 150835|0.5 150836|0.40278 150837|0.5 150838|0.19444 150839|0.5 150840|0.56944 150841|0.44444 150842|0.38889 150843|0.48611 150844|0.33333 150845|0.65278 150846|0.20833 150847|0.5 150848|0.5 150849|0.51389 150850|0.5 150851|0.13889 150852|0.58333 150853|0.083333 150854|0.5 150855|0.19444 150856|0.41667 150857|0.23611 150858|0.38889 150859|0.63889 150860|0.23611 150861|0.097222 150862|0.5 150863|0.55556 150864|0.47222 150865|0.27778 150866|0.27778 150867|0.5 150868|0.47222 150869|0.23611 150870|0.41667 150871|0.5 150872|0.5 150873|0.38889 150874|0.5 150875|0.25 150876|0.40278 150877|0.36111 150878|0.43056 150879|0.41667 150880|0.26389 150881|0.5 150882|0.44444 150883|0.15278 150884|0.44444 150885|0.26389 150886|0.44444 150887|0.23611 150888|0.26389 150889|0.5 150890|0.66667 150891|0.375 150892|0.31944 150893|0.54167 150894|0.27778 150895|0.25 150896|0.55556 150897|0.34722 150898|0.56944 150899|0.61111 150900|0.33333 150901|0.55556 150902|0.43056 150903|0.56944 150904|0.29167 150905|0.72222 150906|0.31944 150907|0.83333 150908|0.43056 150909|0.56944 150910|0.26389 150911|0.56944 150912|0.25 150913|0.61111 150914|0.27778 150915|0.68056 150916|0.58333 150917|0.66667 150918|0.31944 150919|0.70833 150920|0.47222 150921|0.55556 150922|0.40278 150923|0.56944 150924|0.29167 150925|0.52778 150926|0.27778 150927|0.11111 150928|0.15278 150929|0.41667 150930|0.48611 150931|0.63889 150932|0.38889 150933|0.625 150934|0.44444 150935|0.61111 150936|0.5 150937|0.47222 150938|0.16667 150939|0.069444 150940|0.44444 150941|0.52778 150942|0.27778 150943|0.375 150944|0.34722 150945|0.19444 150946|0.5 150947|0.5 150948|0.5 150949|0.5 150950|0.5 150951|0.625 150952|0.54167 150953|0.5 150954|0.625 150955|0.66667 150956|0.22222 150957|0.41667 150958|0.25 150959|0.38889 150960|0.5 150961|0.5 150962|0.5 150963|0.55556 150964|0.5 150965|0.52778 150966|0.58333 150967|0.5 150968|0.51389 150969|0.52778 150970|0.5 150971|0.13889 150972|0.20833 150973|0.29167 150974|0.069444 150975|0.31944 150976|0.55556 150977|0.27778 150978|0.16667 150979|0.41667 150980|0.33333 150981|0.45833 150982|0.47222 150983|0.31944 150984|0.31944 150985|0.30556 150986|0.36111 150987|0.40278 150988|0.52778 150989|0.54167 150990|0.5 150991|0.56944 150992|0.58333 150993|0.59722 150994|0.29167 150995|0.51389 150996|0.79167 150997|0.79167 150998|0.5 150999|0.18056 151000|0.65278 151001|0.22222 151002|0.59722 151003|0.38889 151004|0.25 151005|0.36111 151006|0.20833 151007|0.26389 151008|0.375 151009|0.52778 151010|0.25 151011|0.20833 151012|0.40278 151013|0.055556 151014|0.30556 151015|0.20833 151016|0.40278 151017|0.48611 151018|0.625 151019|0.19444 151020|0.22222 151021|0.29167 151022|0.26389 151023|0.26389 151024|0.72222 151025|0.23611 151026|0.5 151027|0.125 151028|0.22222 151029|0.125 151030|0.55556 151031|0.29167 151032|0.5 151033|0.43056 151034|0.5 151035|0.48611 151036|0.48611 151037|0.5 151038|0.5 151039|0.51389 151040|0.5 151041|0.51389 151042|0.5 151043|0.5 151044|0.5 151045|0.88889 151046|0.63889 151047|0.5 151048|0.65278 151049|0.23611 151050|0.22222 151051|0.125 151052|0.63889 151053|0.63889 151054|0.56944 151055|0.45833 151056|0.44444 151057|0.625 151058|0.44444 151059|0.38889 151060|0.5 151061|0.5 151062|0.55556 151063|0.5 151064|0.69444 151065|0.72222 151066|0.56944 151067|0.43056 151068|0.36111 151069|0.36111 151070|0.38889 151071|0.31944 151072|0.33333 151073|0.33333 151074|0.18056 151075|0.18056 151076|0.5 151077|0.55556 151078|0.5 151079|0.25 151080|0.44444 151081|0.5 151082|0.61111 151083|0.5 151084|0.44444 151085|0.5 151086|0.54167 151087|0.45833 151088|0.45833 151089|0.36111 151090|0.41667 151091|0.29167 151092|0.125 151093|0.18056 151094|0.68056 151095|0.72222 151096|0.44444 151097|0.5 151098|0.58333 151099|0.625 151100|0.55556 151101|0.54167 151102|0.63889 151103|0.5 151104|0.5 151105|0.083333 151106|0.125 151107|0.013889 151108|0.15278 151109|0.41667 151110|0.45833 151111|0.41667 151112|0.25 151113|0.375 151114|0.5 151115|0.5 151116|0.125 151117|0.59722 151118|0.33333 151119|0.20833 151120|0.40278 151121|0.30556 151122|0.11111 151123|0.18056 151124|0.54167 151125|0.47222 151126|0.43056 151127|0.22222 151128|0.40278 151129|0.5 151130|0.33333 151131|0.55556 151132|0.59722 151133|0.70833 151134|0.59722 151135|0.45833 151136|0.31944 151137|0.11111 151138|0.20833 151139|0.041667 151140|0.41667 151141|0.5 151142|0.33333 151143|0.5 151144|0.20833 151145|0.16667 151146|0.5 151147|0.36111 151148|0.33333 151149|0.58333 151150|0.26389 151151|0.61111 151152|0.69444 151153|0.61111 151154|0.44444 151155|0.5 151156|0.45833 151157|0.5 151158|0.61111 151159|0.59722 151160|0.5 151161|0.51389 151162|0.20833 151163|0.59722 151164|0.41667 151165|0.16667 151166|0.5 151167|0.5 151168|0.5 151169|0.22222 151170|0.5 151171|0.52778 151172|0.75 151173|0.79167 151174|0.55556 151175|0.25 151176|0.58333 151177|0.5 151178|0.40278 151179|0.59722 151180|0.47222 151181|0.5 151182|0.5 151183|0.5 151184|0.38889 151185|0.375 151186|0.5 151187|0.47222 151188|0.5 151189|0.5 151190|0.40278 151191|0.5 151192|0.72222 151193|0.56944 151194|0.36111 151195|0.31944 151196|0.29167 151197|0.20833 151198|0.52778 151199|0.59722 151200|0.81944 151201|0.55556 151202|0.30556 151203|0.48611 151204|0.29167 151205|0.5 151206|0.15278 151207|0.38889 151208|0.5 151209|0.15278 151210|0.25 151211|0.52778 151212|0.55556 151213|0.19444 151214|0.54167 151215|0.44444 151216|0.48611 151217|0.16667 151218|0.26389 151219|0.13889 151220|0.36111 151221|0.36111 151222|0.51389 151223|0.5 151224|0.34722 151225|0.5 151226|0.5 151227|0.61111 151228|0.22222 151229|0.625 151230|0.58333 151231|0.43056 151232|0.61111 151233|0.69444 151234|0.44444 151235|0.5 151236|0.45833 151237|0.58333 151238|0.83333 151239|0.83333 151240|0.5 151241|0.52778 151242|0.44444 151243|0.083333 151244|0.36111 151245|0.125 151246|0.61111 151247|0.48611 151248|0.44444 151249|0.70833 151250|0.5 151251|0.69444 151252|0.5 151253|0.5 151254|0.33333 151255|0.34722 151256|0.45833 151257|0.30556 151258|0.5 151259|0.44444 151260|0.20833 151261|0.5 151262|0.5 151263|0.25 151264|0.31944 151265|0.5 151266|0.36111 151267|0.47222 151268|0.48611 151269|0.55556 151270|0.47222 151271|0.5 151272|0.66667 151273|0.5 151274|0.33333 151275|0.44444 151276|0.5 151277|0.29167 151278|0.44444 151279|0.54167 151280|0.55556 151281|0.5 151282|0.63889 151283|0.5 151284|0.48611 151285|0.5 151286|0.5 151287|0.36111 151288|0.52778 151289|0.5 151290|0.5 151291|0.79167 151292|0.5 151293|0.5 151294|0.5 151295|0.5 151296|0.5 151297|0.44444 151298|0.22222 151299|0.34722 151300|0.16667 151301|0.5 151302|0.45833 151303|0.375 151304|0.44444 151305|0.54167 151306|0.51389 151307|0.5 151308|0.5 151309|0.54167 151310|0.48611 151311|0.5 151312|0.47222 151313|0.45833 151314|0.41667 151315|0.5 151316|0.41667 151317|0.31944 151318|0.5 151319|0.41667 151320|0.5 151321|0.45833 151322|0.47222 151323|0.5 151324|0.5 151325|0.44444 151326|0.59722 151327|0.48611 151328|0.11111 151329|0.5 151330|0.11111 151331|0.54167 151332|0.29167 151333|0.097222 151334|0.19444 151335|0.19444 151336|0.083333 151337|0.31944 151338|0.23611 151339|0.20833 151340|0.38889 151341|0.23611 151342|0.41667 151343|0.25 151344|0.29167 151345|0.19444 151346|0.23611 151347|0.38889 151348|0.29167 151349|0.27778 151350|0.16667 151351|0.19444 151352|0.22222 151353|0.15278 151354|0.22222 151355|0.31944 151356|0.48611 151357|0.5 151358|0.30556 151359|0.36111 151360|0.47222 151361|0.5 151362|0.48611 151363|0.625 151364|0.68056 151365|0.38889 151366|0.45833 151367|0.59722 151368|0.13889 151369|0.27778 151370|0.31944 151371|0.44444 151372|0.58333 151373|0.63889 151374|0.58333 151375|0.30556 151376|0.47222 151377|0.40278 151378|0.59722 151379|0.48611 151380|0.38889 151381|0.66667 151382|0.45833 151383|0.58333 151384|0.65278 151385|0.40278 151386|0.43056 151387|0.52778 151388|0.097222 151389|0.5 151390|0.44444 151391|0.5 151392|0.5 151393|0.22222 151394|0.44444 151395|0.44444 151396|0.47222 151397|0.27778 151398|0.5 151399|0.56944 151400|0.68056 151401|0.41667 151402|0.25 151403|0.44444 151404|0.31944 151405|0.13889 151406|0.38889 151407|0.16667 151408|0.23611 151409|0.125 151410|0.38889 151411|0.19444 151412|0.72222 151413|0.68056 151414|0.61111 151415|0.65278 151416|0.56944 151417|0.55556 151418|0.51389 151419|0.55556 151420|0.26389 151421|0.83333 151422|0.33333 151423|0.40278 151424|0.41667 151425|0.125 151426|0.29167 151427|0.61111 151428|0.375 151429|0.52778 151430|0.55556 151431|0.41667 151432|0.47222 151433|0.29167 151434|0.44444 151435|0.34722 151436|0.38889 151437|0.5 151438|0.5 151439|0.43056 151440|0.44444 151441|0.44444 151442|0.18056 151443|0.45833 151444|0.375 151445|0.5 151446|0.26389 151447|0.5 151448|0.5 151449|0.48611 151450|0.29167 151451|0.52778 151452|0.5 151453|0.33333 151454|0.51389 151455|0.5 151456|0.5 151457|0.16667 151458|0.77778 151459|0.73611 151460|0.33333 151461|0.5 151462|0.625 151463|0.72222 151464|0.5 151465|0.31944 151466|0.16667 151467|0.30556 151468|0.5 151469|0.23611 151470|0.5 151471|0.36111 151472|0.25 151473|0.36111 151474|0.56944 151475|0.48611 151476|0.27778 151477|0.18056 151478|0.20833 151479|0.375 151480|0.55556 151481|0.52778 151482|0.5 151483|0.23611 151484|0.55556 151485|0.65278 151486|0.625 151487|0.5 151488|0.41667 151489|0.56944 151490|0.52778 151491|0.69444 151492|0.43056 151493|0.33333 151494|0.13889 151495|0.18056 151496|0.63889 151497|0.48611 151498|0.5 151499|0.15278 151500|0.31944 151501|0.25 151502|0.27778 151503|0.55556 151504|0.55556 151505|0.52778 151506|0.5 151507|0.68056 151508|0.27778 151509|0.36111 151510|0.5 151511|0.20833 151512|0.5 151513|0.58333 151514|0.5 151515|0.55556 151516|0.375 151517|0.51389 151518|0.5 151519|0.22222 151520|0.13889 151521|0.18056 151522|0.45833 151523|0.43056 151524|0.54167 151525|0.31944 151526|0.36111 151527|0.47222 151528|0.56944 151529|0.73611 151530|0.625 151531|0.083333 151532|0.22222 151533|0.26389 151534|0.18056 151535|0.44444 151536|0.18056 151537|0.47222 151538|0.63889 151539|0.48611 151540|0.5 151541|0.5 151542|0.56944 151543|0.20833 151544|0.66667 151545|0.41667 151546|0.5 151547|0.5 151548|0.38889 151549|0.5 151550|0.33333 151551|0.43056 151552|0.375 151553|0.31944 151554|0.19444 151555|0.20833 151556|0.31944 151557|0.5 151558|0.72222 151559|0.25 151560|0.56944 151561|0.34722 151562|0.26389 151563|0.47222 151564|0.26389 151565|0.5 151566|0.55556 151567|0.5 151568|0.47222 151569|0.54167 151570|0.5 151571|0.41667 151572|0.63889 151573|0.51389 151574|0.44444 151575|0.51389 151576|0.26389 151577|0.36111 151578|0.31944 151579|0.40278 151580|0.23611 151581|0.5 151582|0.68056 151583|0.69444 151584|0.56944 151585|0.44444 151586|0.72222 151587|0.65278 151588|0.58333 151589|0.68056 151590|0.69444 151591|0.48611 151592|0.5 151593|0.625 151594|0.375 151595|0.083333 151596|0.36111 151597|0.31944 151598|0.70833 151599|0.81944 151600|0.54167 151601|0.375 151602|0.52778 151603|0.375 151604|0.5 151605|0.54167 151606|0.41667 151607|0.55556 151608|0.5 151609|0.30556 151610|0.44444 151611|0.33333 151612|0.55556 151613|0.52778 151614|0.5 151615|0.5 151616|0.125 151617|0.31944 151618|0.34722 151619|0.52778 151620|0.43056 151621|0.26389 151622|0.375 151623|0.20833 151624|0.097222 151625|0.125 151626|0.25 151627|0.375 151628|0.47222 151629|0.44444 151630|0.31944 151631|0.40278 151632|0.5 151633|0.63889 151634|0.30556 151635|0.5 151636|0.54167 151637|0.5 151638|0.5 151639|0.5 151640|0.40278 151641|0.23611 151642|0.56944 151643|0.5 151644|0.5 151645|0.5 151646|0.55556 151647|0.45833 151648|0.375 151649|0.51389 151650|0.52778 151651|0.52778 151652|0.41667 151653|0.44444 151654|0.26389 151655|0.20833 151656|0.16667 151657|0.22222 151658|0.34722 151659|0.25 151660|0.18056 151661|0.41667 151662|0.51389 151663|0.5 151664|0.26389 151665|0.84722 151666|0.097222 151667|0.16667 151668|0.52778 151669|0.5 151670|0.52778 151671|0.48611 151672|0.5 151673|0.58333 151674|0.47222 151675|0.22222 151676|0.51389 151677|0.84722 151678|0.5 151679|0.44444 151680|0.5 151681|0.31944 151682|0.31944 151683|0.34722 151684|0.45833 151685|0.48611 151686|0.5 151687|0.5 151688|0.5 151689|0.70833 151690|0.5 151691|0.59722 151692|0.45833 151693|0.51389 151694|0.59722 151695|0.41667 151696|0.625 151697|0.48611 151698|0.65278 151699|0.63889 151700|0.65278 151701|0.41667 151702|0.20833 151703|0.63889 151704|0.47222 151705|0.55556 151706|0.40278 151707|0.625 151708|0.5 151709|0.5 151710|0.44444 151711|0.5 151712|0.5 151713|0.5 151714|0.5 151715|0.52778 151716|0.5 151717|0.29167 151718|0.41667 151719|0.5 151720|0.29167 151721|0.38889 151722|0.33333 151723|0.43056 151724|0.40278 151725|0.40278 151726|0.26389 151727|0.055556 151728|0.41667 151729|0.58333 151730|0.88889 151731|0.48611 151732|0.54167 151733|0.44444 151734|0.77778 151735|0.56944 151736|0.27778 151737|0.25 151738|0.097222 151739|0.23611 151740|0.16667 151741|0.22222 151742|0.125 151743|0.26389 151744|0.36111 151745|0.56944 151746|0.5 151747|0.44444 151748|0.5 151749|0.5 151750|0.56944 151751|0.5 151752|0.55556 151753|0.55556 151754|0.69444 151755|0.43056 151756|0.43056 151757|0.52778 151758|0.34722 151759|0.5 151760|0.55556 151761|0.47222 151762|0.5 151763|0.31944 151764|0.59722 151765|0.40278 151766|0.30556 151767|0.33333 151768|0.18056 151769|0.61111 151770|0.5 151771|0.59722 151772|0.26389 151773|0.76389 151774|0.875 151775|0.54167 151776|0.56944 151777|0.63889 151778|0.58333 151779|0.47222 151780|0.70833 151781|0.38889 151782|0.5 151783|0.54167 151784|0.55556 151785|0.48611 151786|0.5 151787|0.29167 151788|0.40278 151789|0.47222 151790|0.375 151791|0.31944 151792|0.125 151793|0.29167 151794|0.27778 151795|0.44444 151796|0.20833 151797|0.76389 151798|0.76389 151799|0.34722 151800|0.73611 151801|0.77778 151802|0.40278 151803|0.16667 151804|0.75 151805|0.73611 151806|0.52778 151807|0.31944 151808|0.54167 151809|0.45833 151810|0.69444 151811|0.65278 151812|0.66667 151813|0.59722 151814|0.73611 151815|0.65278 151816|0.52778 151817|0.81944 151818|0.77778 151819|0.52778 151820|0.58333 151821|0.13889 151822|0.375 151823|0.65278 151824|0.58333 151825|0.80556 151826|0.68056 151827|0.43056 151828|0.27778 151829|0.86111 151830|0.83333 151831|0.70833 151832|0.69444 151833|0.23611 151834|0.80556 151835|0.73611 151836|0.83333 151837|0.73611 151838|0.80556 151839|0.65278 151840|0.5 151841|0.625 151842|0.55556 151843|0.5 151844|0.5 151845|0.41667 151846|0.51389 151847|0.29167 151848|0.097222 151849|0.27778 151850|0.27778 151851|0.48611 151852|0.5 151853|0.26389 151854|0.375 151855|0.52778 151856|0.43056 151857|0.41667 151858|0.31944 151859|0.36111 151860|0.56944 151861|0.5 151862|0.38889 151863|0.65278 151864|0.31944 151865|0.65278 151866|0.375 151867|0.61111 151868|0.44444 151869|0.40278 151870|0.56944 151871|0.30556 151872|0.55556 151873|0.59722 151874|0.375 151875|0.43056 151876|0.59722 151877|0.36111 151878|0.40278 151879|0.38889 151880|0.5 151881|0.33333 151882|0.52778 151883|0.44444 151884|0.5 151885|0.75 151886|0.5 151887|0.47222 151888|0.33333 151889|0.59722 151890|0.27778 151891|0.29167 151892|0.125 151893|0.18056 151894|0.125 151895|0.30556 151896|0.41667 151897|0.45833 151898|0.5 151899|0.29167 151900|0.38889 151901|0.47222 151902|0.5 151903|0.55556 151904|0.55556 151905|0.65278 151906|0.55556 151907|0.36111 151908|0.5 151909|0.48611 151910|0.36111 151911|0.48611 151912|0.45833 151913|0.79167 151914|0.68056 151915|0.76389 151916|0.375 151917|0.38889 151918|0.72222 151919|0.5 151920|0.5 151921|0.34722 151922|0.47222 151923|0.38889 151924|0.48611 151925|0.30556 151926|0.43056 151927|0.20833 151928|0.38889 151929|0.38889 151930|0.44444 151931|0.22222 151932|0.51389 151933|0.375 151934|0.5 151935|0.56944 151936|0.625 151937|0.5 151938|0.33333 151939|0.5 151940|0.61111 151941|0.68056 151942|0.23611 151943|0.083333 151944|0.26389 151945|0.5 151946|0.26389 151947|0.48611 151948|0.38889 151949|0.33333 151950|0.23611 151951|0.38889 151952|0.51389 151953|0.40278 151954|0.43056 151955|0.51389 151956|0.45833 151957|0.5 151958|0.23611 151959|0.30556 151960|0.66667 151961|0.47222 151962|0.43056 151963|0.30556 151964|0.47222 151965|0.22222 151966|0.52778 151967|0.38889 151968|0.33333 151969|0.40278 151970|0.36111 151971|0.51389 151972|0.40278 151973|0.5 151974|0.69444 151975|0.375 151976|0.52778 151977|0.5 151978|0.34722 151979|0.40278 151980|0.56944 151981|0.5 151982|0.11111 151983|0.25 151984|0.5 151985|0.069444 151986|0.30556 151987|0.47222 151988|0.29167 151989|0.20833 151990|0.23611 151991|0.375 151992|0.30556 151993|0.083333 151994|0.33333 151995|0.5 151996|0.41667 151997|0.31944 151998|0.56944 151999|0.26389 152000|0.30556 152001|0.79167 152002|0.48611 152003|0.34722 152004|0.31944 152005|0.48611 152006|0.26389 152007|0.27778 152008|0.33333 152009|0.25 152010|0.30556 152011|0.34722 152012|0.51389 152013|0.38889 152014|0.25 152015|0.29167 152016|0.25 152017|0.51389 152018|0.58333 152019|0.58333 152020|0.33333 152021|0.40278 152022|0.52778 152023|0.48611 152024|0.22222 152025|0.55556 152026|0.51389 152027|0.43056 152028|0.27778 152029|0.375 152030|0.72222 152031|0.63889 152032|0.81944 152033|0.26389 152034|0.5 152035|0.5 152036|0.66667 152037|0.625 152038|0.375 152039|0.43056 152040|0.48611 152041|0.47222 152042|0.55556 152043|0.63889 152044|0.125 152045|0.31944 152046|0.52778 152047|0.34722 152048|0.30556 152049|0.54167 152050|0.43056 152051|0.41667 152052|0.36111 152053|0.51389 152054|0.58333 152055|0.55556 152056|0.5 152057|0.5 152058|0.43056 152059|0.44444 152060|0.56944 152061|0.44444 152062|0.44444 152063|0.26389 152064|0.30556 152065|0.30556 152066|0.48611 152067|0.30556 152068|0.5 152069|0.5 152070|0.76389 152071|0.5 152072|0.34722 152073|0.45833 152074|0.52778 152075|0.47222 152076|0.51389 152077|0.58333 152078|0.47222 152079|0.23611 152080|0.27778 152081|0.36111 152082|0.27778 152083|0.47222 152084|0.5 152085|0.5 152086|0.51389 152087|0.5 152088|0.5 152089|0.81944 152090|0.5 152091|0.51389 152092|0.48611 152093|0.47222 152094|0.38889 152095|0.59722 152096|0.55556 152097|0.23611 152098|0.29167 152099|0.11111 152100|0.083333 152101|0.5 152102|0.375 152103|0.43056 152104|0.083333 152105|0.51389 152106|0.69444 152107|0.29167 152108|0.18056 152109|0.055556 152110|0.11111 152111|0.5 152112|0.5 152113|0.33333 152114|0.44444 152115|0.73611 152116|0.38889 152117|0.15278 152118|0.055556 152119|0.5 152120|0.68056 152121|0.47222 152122|0.51389 152123|0.45833 152124|0.52778 152125|0.69444 152126|0.22222 152127|0.15278 152128|0.19444 152129|0.56944 152130|0.11111 152131|0.18056 152132|0.5 152133|0.41667 152134|0.13889 152135|0.26389 152136|0.097222 152137|0.75 152138|0.68056 152139|0.45833 152140|0.31944 152141|0.34722 152142|0.52778 152143|0.55556 152144|0.5 152145|0.48611 152146|0.33333 152147|0.54167 152148|0.5 152149|0.59722 152150|0.45833 152151|0.55556 152152|0.52778 152153|0.5 152154|0.69444 152155|0.70833 152156|0.69444 152157|0.55556 152158|0.34722 152159|0.76389 152160|0.11111 152161|0.5 152162|0.375 152163|0.5 152164|0.5 152165|0.54167 152166|0.72222 152167|0.66667 152168|0.26389 152169|0.38889 152170|0.375 152171|0.43056 152172|0.27778 152173|0.13889 152174|0.45833 152175|0.59722 152176|0.41667 152177|0.43056 152178|0.25 152179|0.38889 152180|0.44444 152181|0.20833 152182|0.54167 152183|0.30556 152184|0.54167 152185|0.375 152186|0.33333 152187|0.22222 152188|0.30556 152189|0.29167 152190|0.083333 152191|0.41667 152192|0.36111 152193|0.36111 152194|0.36111 152195|0.47222 152196|0.11111 152197|0.36111 152198|0.5 152199|0.45833 152200|0.61111 152201|0.40278 152202|0.48611 152203|0.33333 152204|0.375 152205|0.5 152206|0.44444 152207|0.22222 152208|0.23611 152209|0.56944 152210|0.5 152211|0.52778 152212|0.26389 152213|0.52778 152214|0.20833 152215|0.5 152216|0.48611 152217|0.16667 152218|0.5 152219|0.33333 152220|0.625 152221|0.23611 152222|0.5 152223|0.5 152224|0.47222 152225|0.33333 152226|0.52778 152227|0.52778 152228|0.41667 152229|0.30556 152230|0.27778 152231|0.16667 152232|0.5 152233|0.20833 152234|0.51389 152235|0.29167 152236|0.125 152237|0.61111 152238|0.56944 152239|0.5 152240|0.5 152241|0.44444 152242|0.26389 152243|0.40278 152244|0.27778 152245|0.34722 152246|0.5 152247|0.52778 152248|0.43056 152249|0.5 152250|0.41667 152251|0.68056 152252|0.72222 152253|0.77778 152254|0.5 152255|0.16667 152256|0.43056 152257|0.22222 152258|0.43056 152259|0.41667 152260|0.45833 152261|0.625 152262|0.47222 152263|0.20833 152264|0.66667 152265|0.44444 152266|0.26389 152267|0.45833 152268|0.5 152269|0.29167 152270|0.5 152271|0.5 152272|0.56944 152273|0.33333 152274|0.45833 152275|0.90278 152276|0.70833 152277|0.5 152278|0.5 152279|0.5 152280|0.41667 152281|0.38889 152282|0.52778 152283|0.5 152284|0.55556 152285|0.58333 152286|0.52778 152287|0.66667 152288|0.54167 152289|0.26389 152290|0.41667 152291|0.45833 152292|0.41667 152293|0.56944 152294|0.5 152295|0.5 152296|0.27778 152297|0.18056 152298|0.20833 152299|0.25 152300|0.54167 152301|0.44444 152302|0.52778 152303|0.44444 152304|0.5 152305|0.45833 152306|0.5 152307|0.44444 152308|0.5 152309|0.5 152310|0.43056 152311|0.5 152312|0.23611 152313|0.45833 152314|0.5 152315|0.5 152316|0.25 152317|0.52778 152318|0.38889 152319|0.26389 152320|0.55556 152321|0.81944 152322|0.31944 152323|0.25 152324|0.54167 152325|0.44444 152326|0.45833 152327|0.36111 152328|0.375 152329|0.63889 152330|0.5 152331|0.5 152332|0.68056 152333|0.625 152334|0.26389 152335|0.20833 152336|0.18056 152337|0.5 152338|0.375 152339|0.26389 152340|0.5 152341|0.20833 152342|0.13889 152343|0.51389 152344|0.26389 152345|0.47222 152346|0.27778 152347|0.72222 152348|0.41667 152349|0.44444 152350|0.25 152351|0.16667 152352|0.45833 152353|0.22222 152354|0.52778 152355|0.5 152356|0.5 152357|0.55556 152358|0.72222 152359|0.5 152360|0.625 152361|0.40278 152362|0.75 152363|0.54167 152364|0.25 152365|0.68056 152366|0.33333 152367|0.48611 152368|0.44444 152369|0.44444 152370|0.5 152371|0.16667 152372|0.5 152373|0.48611 152374|0.41667 152375|0.25 152376|0.34722 152377|0.36111 152378|0.875 152379|0.33333 152380|0.56944 152381|0.5 152382|0.5 152383|0.5 152384|0.5 152385|0.44444 152386|0.55556 152387|0.58333 152388|0.52778 152389|0.65278 152390|0.48611 152391|0.69444 152392|0.48611 152393|0.44444 152394|0.22222 152395|0.31944 152396|0.34722 152397|0.11111 152398|0.44444 152399|0.52778 152400|0.43056 152401|0.58333 152402|0.30556 152403|0.29167 152404|0.25 152405|0.5 152406|0.5 152407|0.22222 152408|0.55556 152409|0.20833 152410|0.375 152411|0.29167 152412|0.40278 152413|0.16667 152414|0.58333 152415|0.43056 152416|0.5 152417|0.5 152418|0.23611 152419|0.5 152420|0.5 152421|0.5 152422|0.36111 152423|0.375 152424|0.18056 152425|0.5 152426|0.52778 152427|0.72222 152428|0.5 152429|0.5 152430|0.5 152431|0.5 152432|0.58333 152433|0.36111 152434|0.27778 152435|0.43056 152436|0.5 152437|0.55556 152438|0.66667 152439|0.55556 152440|0.40278 152441|0.40278 152442|0.54167 152443|0.625 152444|0.48611 152445|0.33333 152446|0.44444 152447|0.5 152448|0.41667 152449|0.38889 152450|0.68056 152451|0.58333 152452|0.26389 152453|0.36111 152454|0.48611 152455|0.58333 152456|0.56944 152457|0.33333 152458|0.41667 152459|0.27778 152460|0.63889 152461|0.43056 152462|0.11111 152463|0.16667 152464|0.43056 152465|0.54167 152466|0.5 152467|0.44444 152468|0.77778 152469|0.68056 152470|0.41667 152471|0.59722 152472|0.375 152473|0.59722 152474|0.5 152475|0.58333 152476|0.22222 152477|0.38889 152478|0.29167 152479|0.29167 152480|0.055556 152481|0.61111 152482|0.34722 152483|0.23611 152484|0.22222 152485|0.19444 152486|0.45833 152487|0.22222 152488|0.5 152489|0.66667 152490|0.70833 152491|0.29167 152492|0.41667 152493|0.51389 152494|0.63889 152495|0.44444 152496|0.52778 152497|0.5 152498|0.68056 152499|0.625 152500|0.31944 152501|0.61111 152502|0.30556 152503|0.375 152504|0.40278 152505|0.33333 152506|0.47222 152507|0.43056 152508|0.52778 152509|0.30556 152510|0.59722 152511|0.083333 152512|0.38889 152513|0.27778 152514|0.43056 152515|0.56944 152516|0.56944 152517|0.22222 152518|0.5 152519|0.63889 152520|0.58333 152521|0.5 152522|0.5 152523|0.5 152524|0.55556 152525|0.72222 152526|0.48611 152527|0.36111 152528|0.13889 152529|0.45833 152530|0.5 152531|0.5 152532|0.77778 152533|0.61111 152534|0.51389 152535|0.83333 152536|0.875 152537|0.5 152538|0.375 152539|0.36111 152540|0.11111 152541|0.51389 152542|0.44444 152543|0.61111 152544|0.625 152545|0.68056 152546|0.52778 152547|0.52778 152548|0.33333 152549|0.5 152550|0.38889 152551|0.51389 152552|0.38889 152553|0.47222 152554|0.30556 152555|0.56944 152556|0.54167 152557|0.27778 152558|0.44444 152559|0.44444 152560|0.33333 152561|0.88889 152562|0.44444 152563|0.61111 152564|0.56944 152565|0.44444 152566|0.875 152567|0.75 152568|0.5 152569|0.51389 152570|0.36111 152571|0.59722 152572|0.5 152573|0.33333 152574|0.52778 152575|0.59722 152576|0.77778 152577|0.77778 152578|0.76389 152579|0.5 152580|0.44444 152581|0.5 152582|0.47222 152583|0.29167 152584|0.38889 152585|0.26389 152586|0.26389 152587|0.625 152588|0.29167 152589|0.5 152590|0.18056 152591|0.59722 152592|0.33333 152593|0.54167 152594|0.5 152595|0.5 152596|0.38889 152597|0.16667 152598|0.70833 152599|0.51389 152600|0.75 152601|0.125 152602|0.15278 152603|0.20833 152604|0.11111 152605|0.5 152606|0.5 152607|0.33333 152608|0.36111 152609|0.22222 152610|0.43056 152611|0.33333 152612|0.875 152613|0.29167 152614|0.34722 152615|0.38889 152616|0.33333 152617|0.52778 152618|0.5 152619|0.43056 152620|0.27778 152621|0.097222 152622|0.083333 152623|0.20833 152624|0.52778 152625|0.22222 152626|0.44444 152627|0.36111 152628|0.26389 152629|0.45833 152630|0.25 152631|0.30556 152632|0.34722 152633|0.5 152634|0.5 152635|0.5 152636|0.5 152637|0.44444 152638|0 152639|0.73611 152640|0.54167 152641|0.41667 152642|0.29167 152643|0.61111 152644|0.77778 152645|0.83333 152646|0.79167 152647|0.30556 152648|0.56944 152649|0.5 152650|0.47222 152651|0.29167 152652|0.25 152653|0.44444 152654|0.38889 152655|0.41667 152656|0.59722 152657|0.33333 152658|0.77778 152659|0.29167 152660|0.47222 152661|0.5 152662|0.47222 152663|0.5 152664|0.43056 152665|0.5 152666|0.15278 152667|0.65278 152668|0.51389 152669|0.65278 152670|0.47222 152671|0.33333 152672|0.20833 152673|0.48611 152674|0.33333 152675|0.47222 152676|0.79167 152677|0.65278 152678|0.40278 152679|0.88889 152680|0.5 152681|0.52778 152682|0.58333 152683|0.52778 152684|0.5 152685|0.59722 152686|0.40278 152687|0.875 152688|0.33333 152689|0.38889 152690|0.5 152691|0.51389 152692|0.125 152693|0.90278 152694|0.84722 152695|0.5 152696|0.5 152697|0.40278 152698|0.44444 152699|0.54167 152700|0.40278 152701|0.13889 152702|0.23611 152703|0.68056 152704|0.45833 152705|0.31944 152706|0.5 152707|0.5 152708|0.5 152709|0.48611 152710|0.5 152711|0.5 152712|0.19444 152713|0.5 152714|0.36111 152715|0.5 152716|0.5 152717|0.54167 152718|0.5 152719|0.48611 152720|0.44444 152721|0.5 152722|0.38889 152723|0.41667 152724|0.40278 152725|0.18056 152726|0.54167 152727|0.22222 152728|0.29167 152729|0.33333 152730|0.58333 152731|0.5 152732|0.38889 152733|0.33333 152734|0.19444 152735|0.66667 152736|0.5 152737|0.45833 152738|0.44444 152739|0.51389 152740|0.48611 152741|0.38889 152742|0.11111 152743|0.19444 152744|0.77778 152745|0.5 152746|0.66667 152747|0.43056 152748|0.5 152749|0.5 152750|0.43056 152751|0.54167 152752|0.5 152753|0.52778 152754|0.44444 152755|0.5 152756|0.5 152757|0.43056 152758|0.48611 152759|0.66667 152760|0.55556 152761|0.5 152762|0.5 152763|0.41667 152764|0.5 152765|0.54167 152766|0.5 152767|0.18056 152768|0.5 152769|0.5 152770|0.52778 152771|0.44444 152772|0.47222 152773|0.22222 152774|0.52778 152775|0.54167 152776|0.51389 152777|0.36111 152778|0.54167 152779|0.5 152780|0.47222 152781|0.58333 152782|0.55556 152783|0.51389 152784|0.55556 152785|0.59722 152786|0.40278 152787|0.55556 152788|0.44444 152789|0.38889 152790|0.40278 152791|0.33333 152792|0.5 152793|0.5 152794|0.5 152795|0.41667 152796|0.36111 152797|0.44444 152798|0.5 152799|0.29167 152800|0.23611 152801|0.51389 152802|0.47222 152803|0.43056 152804|0.20833 152805|0.5 152806|0.66667 152807|0.69444 152808|0.61111 152809|0.33333 152810|0.63889 152811|0.56944 152812|0.69444 152813|0.44444 152814|0.45833 152815|0.40278 152816|0.29167 152817|0.40278 152818|0.48611 152819|0.30556 152820|0.51389 152821|0.15278 152822|0.23611 152823|0.097222 152824|0.40278 152825|0.69444 152826|0.73611 152827|0.31944 152828|0.18056 152829|0.19444 152830|0.26389 152831|0.16667 152832|0.27778 152833|0.19444 152834|0.54167 152835|0.63889 152836|0.72222 152837|0.5 152838|0.52778 152839|0.61111 152840|0.20833 152841|0.20833 152842|0.34722 152843|0.79167 152844|0.23611 152845|0.47222 152846|0.76389 152847|0.56944 152848|0.38889 152849|0.5 152850|0.5 152851|0.51389 152852|0.43056 152853|0.44444 152854|0.51389 152855|0.43056 152856|0.26389 152857|0.83333 152858|0.48611 152859|0.54167 152860|0.68056 152861|0.43056 152862|0.5 152863|0.36111 152864|0.34722 152865|0.36111 152866|0.11111 152867|0.54167 152868|0.59722 152869|0.5 152870|0.5 152871|0.375 152872|0.26389 152873|0.27778 152874|0.16667 152875|0.26389 152876|0.5 152877|0.5 152878|0.5 152879|0.48611 152880|0.44444 152881|0.5 152882|0.56944 152883|0.19444 152884|0.52778 152885|0.55556 152886|0.48611 152887|0.5 152888|0.5 152889|0.5 152890|0.36111 152891|0.44444 152892|0.5 152893|0.63889 152894|0.5 152895|0.5 152896|0.55556 152897|0.20833 152898|0.5 152899|0.51389 152900|0.5 152901|0.52778 152902|0.5 152903|0.5 152904|0.55556 152905|0.5 152906|0.65278 152907|0.5 152908|0.5 152909|0.5 152910|0.5 152911|0.52778 152912|0.375 152913|0.23611 152914|0.22222 152915|0.47222 152916|0.56944 152917|0.55556 152918|0.5 152919|0.5 152920|0.25 152921|0.58333 152922|0.51389 152923|0.40278 152924|0.55556 152925|0.5 152926|0.5 152927|0.69444 152928|0.34722 152929|0.59722 152930|0.65278 152931|0.70833 152932|0.55556 152933|0.41667 152934|0.5 152935|0.65278 152936|0.40278 152937|0.54167 152938|0.52778 152939|0.5 152940|0.58333 152941|0.5 152942|0.5 152943|0.45833 152944|0.54167 152945|0.48611 152946|0.40278 152947|0.20833 152948|0.20833 152949|0.33333 152950|0.55556 152951|0.5 152952|0.48611 152953|0.41667 152954|0.20833 152955|0.41667 152956|0.5 152957|0.54167 152958|0.81944 152959|0.625 152960|0.63889 152961|0.38889 152962|0.73611 152963|0.45833 152964|0.5 152965|0.29167 152966|0.34722 152967|0.31944 152968|0.25 152969|0.59722 152970|0.61111 152971|0.55556 152972|0.55556 152973|0.55556 152974|0.58333 152975|0.54167 152976|0.65278 152977|0.44444 152978|0.44444 152979|0.41667 152980|0.22222 152981|0.38889 152982|0.55556 152983|0.5 152984|0.44444 152985|0.52778 152986|0.70833 152987|0.44444 152988|0.30556 152989|0.31944 152990|0.5 152991|0.5 152992|0.5 152993|0.41667 152994|0.40278 152995|0.55556 152996|0.47222 152997|0.41667 152998|0.25 152999|0.40278 153000|0.5 153001|0.5 153002|0.5 153003|0.5 153004|0.5 153005|0.44444 153006|0.5 153007|0.5 153008|0.5 153009|0.20833 153010|0.25 153011|0.27778 153012|0.375 153013|0.47222 153014|0.54167 153015|0.31944 153016|0.51389 153017|0.23611 153018|0.29167 153019|0.56944 153020|0.5 153021|0.45833 153022|0.34722 153023|0.26389 153024|0.22222 153025|0.45833 153026|0.18056 153027|0.11111 153028|0.43056 153029|0.5 153030|0.44444 153031|0.5 153032|0.36111 153033|0.41667 153034|0.65278 153035|0.70833 153036|0.5 153037|0.51389 153038|0.5 153039|0.48611 153040|0.23611 153041|0.5 153042|0.41667 153043|0.41667 153044|0.5 153045|0.5 153046|0.44444 153047|0.56944 153048|0.45833 153049|0.45833 153050|0.5 153051|0.33333 153052|0.58333 153053|0.22222 153054|0.19444 153055|0.5 153056|0.43056 153057|0.20833 153058|0.44444 153059|0.54167 153060|0.44444 153061|0.19444 153062|0.45833 153063|0.52778 153064|0.38889 153065|0.43056 153066|0.5 153067|0.26389 153068|0.47222 153069|0.20833 153070|0.5 153071|0.5 153072|0.44444 153073|0.55556 153074|0.5 153075|0.55556 153076|0.40278 153077|0.65278 153078|0.26389 153079|0.5 153080|0.33333 153081|0.36111 153082|0.34722 153083|0.41667 153084|0.48611 153085|0.31944 153086|0.5 153087|0.5 153088|0.38889 153089|0.5 153090|0.30556 153091|0.5 153092|0.5 153093|0.48611 153094|0.33333 153095|0.51389 153096|0.52778 153097|0.20833 153098|0.125 153099|0.13889 153100|0.083333 153101|0.055556 153102|0.55556 153103|0.5 153104|0.47222 153105|0.5 153106|0.52778 153107|0.63889 153108|0.41667 153109|0.44444 153110|0.23611 153111|0.66667 153112|0.22222 153113|0.27778 153114|0.56944 153115|0.26389 153116|0.65278 153117|0.43056 153118|0.59722 153119|0.27778 153120|0.43056 153121|0.55556 153122|0.52778 153123|0.65278 153124|0.5 153125|0.75 153126|0.22222 153127|0.5 153128|0.63889 153129|0.66667 153130|0.47222 153131|0.55556 153132|0.5 153133|0.43056 153134|0.25 153135|0.63889 153136|0.23611 153137|0.27778 153138|0.5 153139|0.52778 153140|0.44444 153141|0.40278 153142|0.51389 153143|0.66667 153144|0.44444 153145|0.43056 153146|0.5 153147|0.18056 153148|0.52778 153149|0.36111 153150|0.5 153151|0.15278 153152|0.11111 153153|0.61111 153154|0.29167 153155|0.5 153156|0.44444 153157|0.40278 153158|0.56944 153159|0.47222 153160|0.26389 153161|0.30556 153162|0.13889 153163|0.38889 153164|0.38889 153165|0.5 153166|0.43056 153167|0.61111 153168|0.375 153169|0.38889 153170|0.47222 153171|0.5 153172|0.5 153173|0.45833 153174|0.5 153175|0.097222 153176|0.58333 153177|0.51389 153178|0.38889 153179|0.38889 153180|0.54167 153181|0.23611 153182|0.55556 153183|0.5 153184|0.38889 153185|0.33333 153186|0.44444 153187|0.58333 153188|0.41667 153189|0.44444 153190|0.54167 153191|0.54167 153192|0.55556 153193|0.30556 153194|0.11111 153195|0.51389 153196|0.20833 153197|0.30556 153198|0.55556 153199|0.5 153200|0.48611 153201|0.48611 153202|0.40278 153203|0.54167 153204|0.33333 153205|0.51389 153206|0.20833 153207|0.41667 153208|0.33333 153209|0.38889 153210|0.47222 153211|0.5 153212|0.45833 153213|0.22222 153214|0.5 153215|0.75 153216|0.38889 153217|0.27778 153218|0.38889 153219|0.5 153220|0.5 153221|0.5 153222|0.40278 153223|0.43056 153224|0.66667 153225|0.52778 153226|0.43056 153227|0.20833 153228|0.22222 153229|0.47222 153230|0.29167 153231|0.34722 153232|0.31944 153233|0.5 153234|0.41667 153235|0.22222 153236|0.31944 153237|0.23611 153238|0.77778 153239|0.61111 153240|0.41667 153241|0.73611 153242|0.40278 153243|0.77778 153244|0.83333 153245|0.66667 153246|0.54167 153247|0.20833 153248|0.5 153249|0.59722 153250|0.43056 153251|0.55556 153252|0.59722 153253|0.36111 153254|0.15278 153255|0.5 153256|0.61111 153257|0.54167 153258|0.25 153259|0.75 153260|0.66667 153261|0.55556 153262|0.59722 153263|0.59722 153264|0.625 153265|0.36111 153266|0.5 153267|0.47222 153268|0.61111 153269|0.61111 153270|0.66667 153271|0.65278 153272|0.5 153273|0.5 153274|0.54167 153275|0.51389 153276|0.5 153277|0.58333 153278|0.5 153279|0.52778 153280|0.44444 153281|0.63889 153282|0.5 153283|0.55556 153284|0.29167 153285|0.44444 153286|0.25 153287|0.25 153288|0.40278 153289|0.19444 153290|0.26389 153291|0.47222 153292|0.65278 153293|0.625 153294|0.54167 153295|0.41667 153296|0.56944 153297|0.56944 153298|0.52778 153299|0.5 153300|0.5 153301|0.625 153302|0.5 153303|0.375 153304|0.27778 153305|0.36111 153306|0.40278 153307|0.38889 153308|0.5 153309|0.44444 153310|0.48611 153311|0.20833 153312|0.13889 153313|0 153314|0.27778 153315|0.30556 153316|0.125 153317|0.22222 153318|0.59722 153319|0.51389 153320|0.80556 153321|0.58333 153322|0.63889 153323|0.40278 153324|0.45833 153325|0.44444 153326|0.43056 153327|0.48611 153328|0.18056 153329|0.5 153330|0.66667 153331|0.63889 153332|0.51389 153333|0.5 153334|0.36111 153335|0.19444 153336|0.43056 153337|0.15278 153338|0.54167 153339|0.52778 153340|0.16667 153341|0.83333 153342|0.66667 153343|0.72222 153344|0.63889 153345|0.59722 153346|0.68056 153347|0.76389 153348|0.055556 153349|0.52778 153350|0.27778 153351|0.61111 153352|0.5 153353|0.52778 153354|0.33333 153355|0.51389 153356|0.52778 153357|0.38889 153358|0.38889 153359|0.38889 153360|0.23611 153361|0.72222 153362|0.66667 153363|0.5 153364|0.54167 153365|0.77778 153366|0.72222 153367|0.55556 153368|0.34722 153369|0.34722 153370|0.33333 153371|0.22222 153372|0.083333 153373|0.11111 153374|0.5 153375|0.61111 153376|0.23611 153377|0.26389 153378|0.33333 153379|0.27778 153380|0.56944 153381|0.61111 153382|0.59722 153383|0.5 153384|0.5 153385|0.80556 153386|0.36111 153387|0.47222 153388|0.44444 153389|0.31944 153390|0.27778 153391|0.40278 153392|0.29167 153393|0.75 153394|0.55556 153395|0.625 153396|0.33333 153397|0.5 153398|0.51389 153399|0.73611 153400|0.5 153401|0.33333 153402|0.40278 153403|0.45833 153404|0.19444 153405|0.5 153406|0.44444 153407|0.65278 153408|0.66667 153409|0.34722 153410|0.27778 153411|0.5 153412|0.30556 153413|0.72222 153414|0.5 153415|0.81944 153416|0.75 153417|0.70833 153418|0.31944 153419|0.44444 153420|0.55556 153421|0.52778 153422|0.625 153423|0.47222 153424|0.30556 153425|0.38889 153426|0.29167 153427|0.5 153428|0.51389 153429|0.45833 153430|0.45833 153431|0.33333 153432|0.88889 153433|0.22222 153434|0.16667 153435|0.33333 153436|0.66667 153437|0.56944 153438|0.79167 153439|0.69444 153440|0.80556 153441|0.55556 153442|0.625 153443|0.625 153444|0.65278 153445|0.83333 153446|0.45833 153447|0.44444 153448|0.055556 153449|0.40278 153450|0.34722 153451|0.31944 153452|0.23611 153453|0.23611 153454|0.625 153455|0.44444 153456|0.5 153457|0.5 153458|0.54167 153459|0.54167 153460|0.61111 153461|0.45833 153462|0.54167 153463|0.5 153464|0.43056 153465|0.51389 153466|0.29167 153467|0.65278 153468|0.58333 153469|0.5 153470|0.44444 153471|0.5 153472|0.33333 153473|0.5 153474|0.375 153475|0.44444 153476|0.69444 153477|0.65278 153478|0.51389 153479|0.58333 153480|0.29167 153481|0.54167 153482|0.36111 153483|0.52778 153484|0.30556 153485|0.36111 153486|0.38889 153487|0.41667 153488|0.31944 153489|0.22222 153490|0.38889 153491|0.375 153492|0.27778 153493|0.33333 153494|0.15278 153495|0.15278 153496|0.125 153497|0.26389 153498|0.31944 153499|0.40278 153500|0.23611 153501|0.30556 153502|0.23611 153503|0.38889 153504|0.40278 153505|0.44444 153506|0.52778 153507|0.58333 153508|0.44444 153509|0.055556 153510|0.16667 153511|0.33333 153512|0.33333 153513|0.30556 153514|0.41667 153515|0.52778 153516|0.66667 153517|0.27778 153518|0.29167 153519|0.36111 153520|0.38889 153521|0.375 153522|0.27778 153523|0.27778 153524|0.25 153525|0.47222 153526|0.30556 153527|0.66667 153528|0.86111 153529|0.16667 153530|0.45833 153531|0.31944 153532|0.44444 153533|0.375 153534|0.5 153535|0.55556 153536|0.5 153537|0.5 153538|0.52778 153539|0.5 153540|0.5 153541|0.5 153542|0.625 153543|0.5 153544|0.5 153545|0.51389 153546|0.5 153547|0.48611 153548|0.52778 153549|0.5 153550|0.5 153551|0.61111 153552|0.26389 153553|0.48611 153554|0.27778 153555|0.5 153556|0.48611 153557|0.55556 153558|0.48611 153559|0.5 153560|0.5 153561|0.81944 153562|0.34722 153563|0.40278 153564|0.61111 153565|0.15278 153566|0.41667 153567|0.41667 153568|0.5 153569|0.30556 153570|0.5 153571|0.40278 153572|0.36111 153573|0.26389 153574|0.5 153575|0.5 153576|0.52778 153577|0.5 153578|0.45833 153579|0.5 153580|0.44444 153581|0.47222 153582|0.5 153583|0.38889 153584|0.375 153585|0.25 153586|0.40278 153587|0.40278 153588|0.33333 153589|0.52778 153590|0.40278 153591|0.5 153592|0.55556 153593|0.36111 153594|0.5 153595|0.5 153596|0.5 153597|0.26389 153598|0.38889 153599|0.20833 153600|0.25 153601|0.33333 153602|0.48611 153603|0.59722 153604|0.55556 153605|0.5 153606|0.51389 153607|0.44444 153608|0.38889 153609|0.58333 153610|0.45833 153611|0.30556 153612|0.22222 153613|0.22222 153614|0.31944 153615|0.26389 153616|0.5 153617|0.5 153618|0.55556 153619|0.47222 153620|0.48611 153621|0.22222 153622|0.19444 153623|0.29167 153624|0.48611 153625|0.59722 153626|0.375 153627|0.38889 153628|0.375 153629|0.31944 153630|0.29167 153631|0.25 153632|0.20833 153633|0.19444 153634|0.19444 153635|0.34722 153636|0.13889 153637|0.33333 153638|0.41667 153639|0.59722 153640|0.38889 153641|0.5 153642|0.22222 153643|0.5 153644|0.56944 153645|0.38889 153646|0.30556 153647|0.19444 153648|0.44444 153649|0.16667 153650|0.375 153651|0.16667 153652|0.5 153653|0.44444 153654|0.27778 153655|0.38889 153656|0.5 153657|0.5 153658|0.5 153659|0.40278 153660|0.26389 153661|0.5 153662|0.38889 153663|0.56944 153664|0.16667 153665|0.55556 153666|0.5 153667|0.5 153668|0.5 153669|0.54167 153670|0.5 153671|0.43056 153672|0.55556 153673|0.55556 153674|0.5 153675|0.5 153676|0.48611 153677|0.55556 153678|0.45833 153679|0.58333 153680|0.5 153681|0.44444 153682|0.51389 153683|0.44444 153684|0.25 153685|0.56944 153686|0.45833 153687|0.52778 153688|0.44444 153689|0.41667 153690|0.51389 153691|0.5 153692|0.5 153693|0.5 153694|0.40278 153695|0.52778 153696|0.5 153697|0.5 153698|0.5 153699|0.31944 153700|0.5 153701|0.48611 153702|0.51389 153703|0.5 153704|0.25 153705|0.5 153706|0.45833 153707|0.44444 153708|0.55556 153709|0.63889 153710|0.45833 153711|0.26389 153712|0.5 153713|0.33333 153714|0.40278 153715|0.45833 153716|0.45833 153717|0.47222 153718|0.44444 153719|0.44444 153720|0.52778 153721|0.44444 153722|0.40278 153723|0.125 153724|0.47222 153725|0.30556 153726|0.16667 153727|0.52778 153728|0.72222 153729|0.5 153730|0.5 153731|0.31944 153732|0.45833 153733|0.16667 153734|0.48611 153735|0.43056 153736|0.5 153737|0.44444 153738|0.44444 153739|0.5 153740|0.5 153741|0.5 153742|0.72222 153743|0.5 153744|0.5 153745|0.083333 153746|0.41667 153747|0.29167 153748|0.31944 153749|0.58333 153750|0.81944 153751|0.63889 153752|0.34722 153753|0.55556 153754|0.44444 153755|0.61111 153756|0.51389 153757|0.31944 153758|0.30556 153759|0.18056 153760|0.19444 153761|0.55556 153762|0.5 153763|0.58333 153764|0.5 153765|0.5 153766|0.54167 153767|0.56944 153768|0.54167 153769|0.51389 153770|0.56944 153771|0.44444 153772|0.34722 153773|0.5 153774|0.47222 153775|0.5 153776|0.38889 153777|0.41667 153778|0.5 153779|0.20833 153780|0.25 153781|0.5 153782|0.58333 153783|0.68056 153784|0.5 153785|0.375 153786|0.30556 153787|0.45833 153788|0.5 153789|0.55556 153790|0.44444 153791|0.58333 153792|0.33333 153793|0.5 153794|0.45833 153795|0.54167 153796|0.54167 153797|0.59722 153798|0.29167 153799|0.63889 153800|0.68056 153801|0.19444 153802|0.34722 153803|0.29167 153804|0.38889 153805|0.41667 153806|0.125 153807|0.16667 153808|0.52778 153809|0.33333 153810|0.31944 153811|0.59722 153812|0.55556 153813|0.055556 153814|0.65278 153815|0.52778 153816|0.5 153817|0.54167 153818|0.38889 153819|0.29167 153820|0.59722 153821|0.29167 153822|0.45833 153823|0.66667 153824|0.45833 153825|0.52778 153826|0.55556 153827|0.84722 153828|0.48611 153829|0.55556 153830|0.16667 153831|0.23611 153832|0.48611 153833|0.29167 153834|0.52778 153835|0.34722 153836|0.45833 153837|0.65278 153838|0.26389 153839|0.52778 153840|0.56944 153841|0.40278 153842|0.30556 153843|0.47222 153844|0.40278 153845|0.44444 153846|0.44444 153847|0.41667 153848|0.45833 153849|0.29167 153850|0.25 153851|0.34722 153852|0.30556 153853|0.76389 153854|0.65278 153855|0.5 153856|0.34722 153857|0.36111 153858|0.41667 153859|0.44444 153860|0.375 153861|0.27778 153862|0.5 153863|0.22222 153864|0.33333 153865|0.375 153866|0.59722 153867|0.18056 153868|0.31944 153869|0.38889 153870|0.55556 153871|0.44444 153872|0.45833 153873|0.52778 153874|0.38889 153875|0.40278 153876|0.375 153877|0.36111 153878|0.13889 153879|0.5 153880|0.38889 153881|0.56944 153882|0.52778 153883|0.15278 153884|0.38889 153885|0.52778 153886|0.56944 153887|0.19444 153888|0.19444 153889|0.61111 153890|0.40278 153891|0.59722 153892|0.55556 153893|0.55556 153894|0.5 153895|0.5 153896|0.25 153897|0.43056 153898|0.375 153899|0.5 153900|0.41667 153901|0.38889 153902|0.58333 153903|0.40278 153904|0.55556 153905|0.27778 153906|0.22222 153907|0.23611 153908|0.23611 153909|0.16667 153910|0.43056 153911|0.33333 153912|0.56944 153913|0.16667 153914|0.29167 153915|0.5 153916|0.5 153917|0.36111 153918|0.5 153919|0.20833 153920|0.44444 153921|0.31944 153922|0.25 153923|0.38889 153924|0.51389 153925|0.5 153926|0.34722 153927|0.11111 153928|0.36111 153929|0.26389 153930|0.22222 153931|0.29167 153932|0.18056 153933|0.44444 153934|0.65278 153935|0.44444 153936|0.5 153937|0.15278 153938|0.30556 153939|0.375 153940|0.16667 153941|0.55556 153942|0.16667 153943|0.38889 153944|0.65278 153945|0.40278 153946|0.5 153947|0.5 153948|0.36111 153949|0.26389 153950|0.26389 153951|0.33333 153952|0.29167 153953|0.44444 153954|0.625 153955|0.38889 153956|0.30556 153957|0.59722 153958|0.33333 153959|0.23611 153960|0.43056 153961|0.5 153962|0.5 153963|0.5 153964|0.63889 153965|0.45833 153966|0.5 153967|0.5 153968|0.55556 153969|0.48611 153970|0.5 153971|0.38889 153972|0.36111 153973|0.26389 153974|0.48611 153975|0.40278 153976|0.625 153977|0.44444 153978|0.44444 153979|0.40278 153980|0.36111 153981|0.29167 153982|0.68056 153983|0.40278 153984|0.33333 153985|0.25 153986|0.61111 153987|0.54167 153988|0.59722 153989|0.51389 153990|0.125 153991|0.30556 153992|0.38889 153993|0.33333 153994|0.34722 153995|0.48611 153996|0.20833 153997|0.18056 153998|0.16667 153999|0.58333 154000|0.52778 154001|0.52778 154002|0.48611 154003|0.44444 154004|0.45833 154005|0.5 154006|0.54167 154007|0.40278 154008|0.40278 154009|0.34722 154010|0.40278 154011|0.5 154012|0.5 154013|0.38889 154014|0.45833 154015|0.5 154016|0.18056 154017|0.5 154018|0.55556 154019|0.47222 154020|0.25 154021|0.30556 154022|0.63889 154023|0.5 154024|0.47222 154025|0.29167 154026|0.47222 154027|0.5 154028|0.5 154029|0.51389 154030|0.23611 154031|0.58333 154032|0.5 154033|0.58333 154034|0.51389 154035|0.61111 154036|0.52778 154037|0.5 154038|0.5 154039|0.5 154040|0.58333 154041|0.52778 154042|0.56944 154043|0.47222 154044|0.5 154045|0.34722 154046|0.5 154047|0.51389 154048|0.5 154049|0.44444 154050|0.38889 154051|0.5 154052|0.5 154053|0.30556 154054|0.5 154055|0.48611 154056|0.5 154057|0.55556 154058|0.26389 154059|0.54167 154060|0.5 154061|0.51389 154062|0.5 154063|0.5 154064|0.52778 154065|0.40278 154066|0.52778 154067|0.055556 154068|0.5 154069|0.61111 154070|0.56944 154071|0.5 154072|0.43056 154073|0.52778 154074|0.5 154075|0.47222 154076|0.5 154077|0.5 154078|0.5 154079|0.5 154080|0.55556 154081|0.45833 154082|0.43056 154083|0.54167 154084|0.30556 154085|0.61111 154086|0.5 154087|0.61111 154088|0.33333 154089|0.75 154090|0.43056 154091|0.19444 154092|0.5 154093|0.30556 154094|0.58333 154095|0.375 154096|0.5 154097|0.44444 154098|0.5 154099|0.48611 154100|0.41667 154101|0.56944 154102|0.33333 154103|0.5 154104|0.31944 154105|0.5 154106|0.44444 154107|0.54167 154108|0.5 154109|0.5 154110|0.5 154111|0.41667 154112|0.41667 154113|0.5 154114|0.33333 154115|0.44444 154116|0.77778 154117|0.48611 154118|0.58333 154119|0.66667 154120|0.18056 154121|0.45833 154122|0.40278 154123|0.54167 154124|0.54167 154125|0.66667 154126|0.51389 154127|0.33333 154128|0.61111 154129|0.55556 154130|0.13889 154131|0.5 154132|0.5 154133|0.23611 154134|0.5 154135|0.25 154136|0.40278 154137|0.625 154138|0.38889 154139|0.52778 154140|0.44444 154141|0.47222 154142|0.48611 154143|0.625 154144|0.76389 154145|0.5 154146|0.5 154147|0.16667 154148|0.5 154149|0.625 154150|0.18056 154151|0.48611 154152|0.72222 154153|0.58333 154154|0.27778 154155|0.27778 154156|0.52778 154157|0.31944 154158|0.375 154159|0.52778 154160|0.48611 154161|0.52778 154162|0.5 154163|0.44444 154164|0.45833 154165|0.38889 154166|0.69444 154167|0.63889 154168|0.5 154169|0.55556 154170|0.51389 154171|0.52778 154172|0.56944 154173|0.5 154174|0.61111 154175|0.59722 154176|0.375 154177|0.26389 154178|0.26389 154179|0.44444 154180|0.20833 154181|0.38889 154182|0.27778 154183|0.44444 154184|0.26389 154185|0.25 154186|0.36111 154187|0.55556 154188|0.56944 154189|0.34722 154190|0.33333 154191|0.51389 154192|0.5 154193|0.55556 154194|0.38889 154195|0.5 154196|0.44444 154197|0.38889 154198|0.63889 154199|0.29167 154200|0.20833 154201|0.54167 154202|0.5 154203|0.5 154204|0.36111 154205|0.5 154206|0.61111 154207|0.47222 154208|0.5 154209|0.18056 154210|0.36111 154211|0.41667 154212|0.29167 154213|0.48611 154214|0.36111 154215|0.375 154216|0.5 154217|0.47222 154218|0.44444 154219|0.5 154220|0.5 154221|0.625 154222|0.41667 154223|0.22222 154224|0.68056 154225|0.5 154226|0.33333 154227|0.34722 154228|0.40278 154229|0.26389 154230|0.48611 154231|0.61111 154232|0.33333 154233|0.5 154234|0.31944 154235|0.5 154236|0.25 154237|0.44444 154238|0.33333 154239|0.5 154240|0.44444 154241|0.625 154242|0.5 154243|0.29167 154244|0.34722 154245|0.125 154246|0.41667 154247|0.5 154248|0.45833 154249|0.55556 154250|0.5 154251|0.5 154252|0.44444 154253|0.44444 154254|0.5 154255|0.44444 154256|0.11111 154257|0.23611 154258|0.5 154259|0.15278 154260|0.5 154261|0.5 154262|0.43056 154263|0.20833 154264|0.36111 154265|0.51389 154266|0.52778 154267|0.5 154268|0.44444 154269|0.48611 154270|0.5 154271|0.5 154272|0.5 154273|0.5 154274|0.44444 154275|0.59722 154276|0.38889 154277|0.16667 154278|0.47222 154279|0.5 154280|0.16667 154281|0.30556 154282|0.51389 154283|0.43056 154284|0.31944 154285|0.66667 154286|0.27778 154287|0.34722 154288|0.58333 154289|0.38889 154290|0.5 154291|0.34722 154292|0.54167 154293|0.54167 154294|0.18056 154295|0.48611 154296|0.48611 154297|0.51389 154298|0.40278 154299|0.31944 154300|0.77778 154301|0.34722 154302|0.23611 154303|0.36111 154304|0.38889 154305|0.38889 154306|0.23611 154307|0.44444 154308|0.40278 154309|0.23611 154310|0.40278 154311|0.38889 154312|0.25 154313|0.30556 154314|0.5 154315|0.5 154316|0.61111 154317|0.5 154318|0.34722 154319|0.52778 154320|0.45833 154321|0.29167 154322|0.36111 154323|0.55556 154324|0.75 154325|0.5 154326|0.56944 154327|0.5 154328|0.52778 154329|0.58333 154330|0.51389 154331|0.26389 154332|0.70833 154333|0.13889 154334|0.18056 154335|0.40278 154336|0.69444 154337|0.48611 154338|0.40278 154339|0.55556 154340|0.375 154341|0.5 154342|0.5 154343|0.44444 154344|0.48611 154345|0.15278 154346|0.5 154347|0.44444 154348|0.26389 154349|0.33333 154350|0.45833 154351|0.18056 154352|0.45833 154353|0.54167 154354|0.5 154355|0.38889 154356|0.22222 154357|0.58333 154358|0.5 154359|0.59722 154360|0.54167 154361|0.58333 154362|0.41667 154363|0.5 154364|0.625 154365|0.5 154366|0.68056 154367|0.5 154368|0.73611 154369|0.5 154370|0.38889 154371|0.25 154372|0.58333 154373|0.15278 154374|0.44444 154375|0.055556 154376|0.5 154377|0.5 154378|0.47222 154379|0.47222 154380|0.65278 154381|0.5 154382|0.41667 154383|0.45833 154384|0.5 154385|0.38889 154386|0.5 154387|0.52778 154388|0.40278 154389|0.5 154390|0.5 154391|0.5 154392|0.5 154393|0.375 154394|0.29167 154395|0.47222 154396|0.5 154397|0.51389 154398|0.45833 154399|0.41667 154400|0.5 154401|0.55556 154402|0.44444 154403|0.5 154404|0.58333 154405|0.5 154406|0.5 154407|0.41667 154408|0.5 154409|0.59722 154410|0.47222 154411|0.54167 154412|0.5 154413|0.23611 154414|0.5 154415|0.52778 154416|0.51389 154417|0.61111 154418|0.5 154419|0.45833 154420|0.33333 154421|0.38889 154422|0.375 154423|0.40278 154424|0.375 154425|0.66667 154426|0.5 154427|0.43056 154428|0.5 154429|0.43056 154430|0.5 154431|0.52778 154432|0.375 154433|0.5 154434|0.5 154435|0.43056 154436|0.51389 154437|0.27778 154438|0.22222 154439|0.25 154440|0.125 154441|0.38889 154442|0.15278 154443|0.375 154444|0.33333 154445|0.27778 154446|0.26389 154447|0.5 154448|0.5 154449|0.5 154450|0.5 154451|0.125 154452|0.51389 154453|0.083333 154454|0.54167 154455|0.52778 154456|0.11111 154457|0.41667 154458|0.29167 154459|0.44444 154460|0.5 154461|0.43056 154462|0.45833 154463|0.36111 154464|0.56944 154465|0.48611 154466|0.26389 154467|0.26389 154468|0.26389 154469|0.5 154470|0.47222 154471|0.52778 154472|0.55556 154473|0.43056 154474|0.5 154475|0.5 154476|0.5 154477|0.44444 154478|0.5 154479|0.43056 154480|0.54167 154481|0.44444 154482|0.54167 154483|0.44444 154484|0.5 154485|0.47222 154486|0.18056 154487|0.65278 154488|0.19444 154489|0.33333 154490|0.25 154491|0.45833 154492|0.36111 154493|0.22222 154494|0.18056 154495|0.36111 154496|0.45833 154497|0.56944 154498|0.5 154499|0.63889 154500|0.77778 154501|0.16667 154502|0.083333 154503|0.375 154504|0.34722 154505|0.29167 154506|0.30556 154507|0.29167 154508|0.16667 154509|0.27778 154510|0.30556 154511|0.20833 154512|0.5 154513|0.23611 154514|0.31944 154515|0.22222 154516|0.36111 154517|0.34722 154518|0.47222 154519|0.31944 154520|0.16667 154521|0.27778 154522|0.36111 154523|0.5 154524|0.5 154525|0.40278 154526|0.43056 154527|0.5 154528|0.5 154529|0.18056 154530|0.18056 154531|0.43056 154532|0.38889 154533|0.19444 154534|0.29167 154535|0.375 154536|0.13889 154537|0.23611 154538|0.34722 154539|0.16667 154540|0.125 154541|0.33333 154542|0.19444 154543|0.375 154544|0.15278 154545|0.26389 154546|0.18056 154547|0.19444 154548|0.055556 154549|0.30556 154550|0.16667 154551|0.38889 154552|0.27778 154553|0.31944 154554|0.26389 154555|0.26389 154556|0.15278 154557|0.38889 154558|0.30556 154559|0.23611 154560|0.38889 154561|0.22222 154562|0.31944 154563|0.41667 154564|0.23611 154565|0.30556 154566|0.31944 154567|0.19444 154568|0.27778 154569|0.23611 154570|0.38889 154571|0.40278 154572|0.375 154573|0.23611 154574|0.125 154575|0.11111 154576|0.41667 154577|0.26389 154578|0.26389 154579|0.22222 154580|0.27778 154581|0.22222 154582|0.11111 154583|0.11111 154584|0.18056 154585|0.45833 154586|0.41667 154587|0.5 154588|0.33333 154589|0.41667 154590|0.55556 154591|0.375 154592|0.48611 154593|0.5 154594|0.51389 154595|0.625 154596|0.36111 154597|0.48611 154598|0.5 154599|0.5 154600|0.26389 154601|0.33333 154602|0.54167 154603|0.48611 154604|0.56944 154605|0.47222 154606|0.41667 154607|0.20833 154608|0.34722 154609|0.5 154610|0.40278 154611|0.44444 154612|0.34722 154613|0.13889 154614|0.5 154615|0.23611 154616|0.25 154617|0.5 154618|0.5 154619|0.61111 154620|0.5 154621|0.51389 154622|0.43056 154623|0.45833 154624|0.5 154625|0.5 154626|0.19444 154627|0.5 154628|0.31944 154629|0.45833 154630|0.55556 154631|0.5 154632|0.20833 154633|0.48611 154634|0.51389 154635|0.44444 154636|0.5 154637|0.5 154638|0.70833 154639|0.54167 154640|0.43056 154641|0.22222 154642|0.52778 154643|0.54167 154644|0.5 154645|0.44444 154646|0.36111 154647|0.36111 154648|0.54167 154649|0.16667 154650|0.54167 154651|0.58333 154652|0.63889 154653|0.83333 154654|0.20833 154655|0.73611 154656|0.54167 154657|0.55556 154658|0.25 154659|0.40278 154660|0.5 154661|0.66667 154662|0.45833 154663|0.72222 154664|0.30556 154665|0.25 154666|0.33333 154667|0.43056 154668|0.29167 154669|0.63889 154670|0.41667 154671|0.34722 154672|0.52778 154673|0.22222 154674|0.34722 154675|0.5 154676|0.55556 154677|0.56944 154678|0.40278 154679|0.58333 154680|0.76389 154681|0.63889 154682|0.66667 154683|0.625 154684|0.5 154685|0.5 154686|0.44444 154687|0.5 154688|0.15278 154689|0.22222 154690|0.22222 154691|0.375 154692|0.30556 154693|0.29167 154694|0.29167 154695|0.51389 154696|0.26389 154697|0.5 154698|0.55556 154699|0.38889 154700|0.63889 154701|0.26389 154702|0.25 154703|0.26389 154704|0.25 154705|0.73611 154706|0.44444 154707|0.51389 154708|0.5 154709|0.16667 154710|0.36111 154711|0.38889 154712|0.15278 154713|0.58333 154714|0.125 154715|0.5 154716|0.52778 154717|0.59722 154718|0.5 154719|0.66667 154720|0.30556 154721|0.44444 154722|0.36111 154723|0.65278 154724|0.66667 154725|0.625 154726|0.20833 154727|0.20833 154728|0.069444 154729|0.45833 154730|0.44444 154731|0.44444 154732|0.45833 154733|0.29167 154734|0.47222 154735|0.58333 154736|0.40278 154737|0.375 154738|0.73611 154739|0.59722 154740|0.61111 154741|0.5 154742|0.5 154743|0.55556 154744|0.52778 154745|0.5 154746|0.55556 154747|0.70833 154748|0.125 154749|0.27778 154750|0.38889 154751|0.47222 154752|0.33333 154753|0.44444 154754|0.73611 154755|0.23611 154756|0.59722 154757|0.41667 154758|0.54167 154759|0.625 154760|0.79167 154761|0.54167 154762|0.25 154763|0.51389 154764|0.36111 154765|0.30556 154766|0.51389 154767|0.5 154768|0.54167 154769|0.19444 154770|0.54167 154771|0.20833 154772|0.30556 154773|0.54167 154774|0.51389 154775|0.44444 154776|0.36111 154777|0.22222 154778|0.66667 154779|0.20833 154780|0.23611 154781|0.41667 154782|0.375 154783|0.34722 154784|0.22222 154785|0.31944 154786|0.44444 154787|0.38889 154788|0.33333 154789|0.65278 154790|0.51389 154791|0.41667 154792|0.45833 154793|0.69444 154794|0.45833 154795|0.38889 154796|0.65278 154797|0.47222 154798|0.5 154799|0.23611 154800|0.38889 154801|0.66667 154802|0.56944 154803|0.16667 154804|0.15278 154805|0.5 154806|0.58333 154807|0.23611 154808|0.5 154809|0.5 154810|0.36111 154811|0.15278 154812|0.5 154813|0.61111 154814|0.79167 154815|0.30556 154816|0.5 154817|0.23611 154818|0.5 154819|0.5 154820|0.52778 154821|0.36111 154822|0.25 154823|0.44444 154824|0.38889 154825|0.41667 154826|0.72222 154827|0.13889 154828|0.23611 154829|0.47222 154830|0.51389 154831|0.11111 154832|0.47222 154833|0.13889 154834|0.125 154835|0.54167 154836|0.44444 154837|0.58333 154838|0.375 154839|0.55556 154840|0.51389 154841|0.59722 154842|0.31944 154843|0.54167 154844|0.51389 154845|0.44444 154846|0.61111 154847|0.72222 154848|0.18056 154849|0.36111 154850|0.55556 154851|0.5 154852|0.54167 154853|0.51389 154854|0.45833 154855|0.47222 154856|0.47222 154857|0.5 154858|0.5 154859|0.41667 154860|0.5 154861|0.5 154862|0.33333 154863|0.43056 154864|0.875 154865|0.84722 154866|0.61111 154867|0.5 154868|0.15278 154869|0.5 154870|0.54167 154871|0.38889 154872|0.63889 154873|0.40278 154874|0.18056 154875|0.375 154876|0.25 154877|0.27778 154878|0.40278 154879|0.5 154880|0.5 154881|0.33333 154882|0.51389 154883|0.22222 154884|0.27778 154885|0.41667 154886|0.45833 154887|0.5 154888|0.43056 154889|0.36111 154890|0.45833 154891|0.5 154892|0.33333 154893|0.30556 154894|0.29167 154895|0.11111 154896|0.58333 154897|0.19444 154898|0.38889 154899|0.55556 154900|0.75 154901|0.51389 154902|0.51389 154903|0.55556 154904|0.33333 154905|0.61111 154906|0.15278 154907|0.30556 154908|0.56944 154909|0.11111 154910|0.54167 154911|0.25 154912|0.56944 154913|0.5 154914|0.44444 154915|0.33333 154916|0.15278 154917|0.13889 154918|0.29167 154919|0.45833 154920|0.31944 154921|0.23611 154922|0.58333 154923|0.27778 154924|0.27778 154925|0.375 154926|0.27778 154927|0.5 154928|0.65278 154929|0.30556 154930|0.22222 154931|0.20833 154932|0.18056 154933|0.58333 154934|0.16667 154935|0.43056 154936|0.625 154937|0.375 154938|0.44444 154939|0.41667 154940|0.40278 154941|0.45833 154942|0.625 154943|0.66667 154944|0.40278 154945|0.097222 154946|0.77778 154947|0.61111 154948|0.40278 154949|0.34722 154950|0.33333 154951|0.33333 154952|0.29167 154953|0.61111 154954|0.375 154955|0.51389 154956|0.16667 154957|0.31944 154958|0.51389 154959|0.5 154960|0.48611 154961|0.38889 154962|0.38889 154963|0.63889 154964|0.33333 154965|0.375 154966|0.43056 154967|0.47222 154968|0.59722 154969|0.5 154970|0.5 154971|0.31944 154972|0.61111 154973|0.59722 154974|0.43056 154975|0.52778 154976|0.20833 154977|0.069444 154978|0.36111 154979|0.38889 154980|0.5 154981|0.44444 154982|0.5 154983|0.51389 154984|0.27778 154985|0.54167 154986|0.375 154987|0.33333 154988|0.5 154989|0.51389 154990|0.097222 154991|0.5 154992|0.20833 154993|0.5 154994|0.19444 154995|0.5 154996|0.5 154997|0.22222 154998|0.59722 154999|0.5 155000|0.44444 155001|0.38889 155002|0.5 155003|0.55556 155004|0.375 155005|0.52778 155006|0.22222 155007|0.36111 155008|0.5 155009|0.52778 155010|0.5 155011|0.18056 155012|0.5 155013|0.40278 155014|0.51389 155015|0.5 155016|0.47222 155017|0.55556 155018|0.30556 155019|0.45833 155020|0.34722 155021|0.5 155022|0.40278 155023|0.45833 155024|0.47222 155025|0.5 155026|0.41667 155027|0.5 155028|0.26389 155029|0.5 155030|0.5 155031|0.5 155032|0.38889 155033|0.30556 155034|0.25 155035|0.69444 155036|0.41667 155037|0.375 155038|0.33333 155039|0.29167 155040|0.5 155041|0.43056 155042|0.27778 155043|0.19444 155044|0.47222 155045|0.33333 155046|0.51389 155047|0.625 155048|0.51389 155049|0.375 155050|0.29167 155051|0.47222 155052|0.5 155053|0.33333 155054|0.18056 155055|0.58333 155056|0.5 155057|0.5 155058|0.23611 155059|0.20833 155060|0.19444 155061|0.59722 155062|0.45833 155063|0.51389 155064|0.18056 155065|0.23611 155066|0.70833 155067|0.51389 155068|0.48611 155069|0.20833 155070|0.66667 155071|0.5 155072|0.38889 155073|0.59722 155074|0.11111 155075|0.5 155076|0.63889 155077|0.26389 155078|0.5 155079|0.5 155080|0.52778 155081|0.16667 155082|0.22222 155083|0.15278 155084|0.055556 155085|0.20833 155086|0.59722 155087|0.5 155088|0.47222 155089|0.56944 155090|0.38889 155091|0.44444 155092|0.5 155093|0.44444 155094|0.52778 155095|0.47222 155096|0.19444 155097|0.27778 155098|0.27778 155099|0.25 155100|0.41667 155101|0.31944 155102|0.41667 155103|0.5 155104|0.38889 155105|0.40278 155106|0.54167 155107|0.59722 155108|0.44444 155109|0.875 155110|0.65278 155111|0.44444 155112|0.31944 155113|0.47222 155114|0.5 155115|0.625 155116|0.51389 155117|0.52778 155118|0.72222 155119|0.44444 155120|0.41667 155121|0.29167 155122|0.26389 155123|0.29167 155124|0.375 155125|0.5 155126|0.54167 155127|0.41667 155128|0.30556 155129|0.5 155130|0.52778 155131|0.63889 155132|0.47222 155133|0.77778 155134|0.76389 155135|0.75 155136|0.54167 155137|0.76389 155138|0.41667 155139|0.41667 155140|0.56944 155141|0.44444 155142|0.48611 155143|0.55556 155144|0.55556 155145|0.34722 155146|0.22222 155147|0.41667 155148|0.63889 155149|0.48611 155150|0.43056 155151|0.45833 155152|0.47222 155153|0.54167 155154|0.375 155155|0.20833 155156|0.58333 155157|0.79167 155158|0.70833 155159|0.63889 155160|0.52778 155161|0.69444 155162|0.5 155163|0.61111 155164|0.5 155165|0.5 155166|0.56944 155167|0.52778 155168|0.58333 155169|0.45833 155170|0.38889 155171|0.5 155172|0.58333 155173|0.23611 155174|0.58333 155175|0.18056 155176|0.54167 155177|0.47222 155178|0.47222 155179|0.48611 155180|0.36111 155181|0.20833 155182|0.41667 155183|0.23611 155184|0.41667 155185|0.44444 155186|0.5 155187|0.5 155188|0.31944 155189|0.27778 155190|0.5 155191|0.41667 155192|0.44444 155193|0.59722 155194|0.44444 155195|0.54167 155196|0.33333 155197|0.54167 155198|0.70833 155199|0.63889 155200|0.47222 155201|0.56944 155202|0.5 155203|0.40278 155204|0.5 155205|0.33333 155206|0.80556 155207|0.26389 155208|0.70833 155209|0.5 155210|0.5 155211|0.34722 155212|0.52778 155213|0.5 155214|0.44444 155215|0.58333 155216|0.48611 155217|0.48611 155218|0.625 155219|0.75 155220|0.75 155221|0.29167 155222|0.23611 155223|0.625 155224|0.45833 155225|0.66667 155226|0.44444 155227|0.30556 155228|0.55556 155229|0.5 155230|0.5 155231|0.27778 155232|0.51389 155233|0.43056 155234|0.45833 155235|0.18056 155236|0.55556 155237|0.59722 155238|0.5 155239|0.44444 155240|0.54167 155241|0.55556 155242|0.56944 155243|0.43056 155244|0.36111 155245|0.38889 155246|0.40278 155247|0.625 155248|0.5 155249|0.375 155250|0.27778 155251|0.47222 155252|0.51389 155253|0.52778 155254|0.41667 155255|0.38889 155256|0.5 155257|0.5 155258|0.41667 155259|0.61111 155260|0.54167 155261|0.69444 155262|0.52778 155263|0.041667 155264|0.66667 155265|0.47222 155266|0.77778 155267|0.63889 155268|0.72222 155269|0.63889 155270|0.90278 155271|0.70833 155272|0.79167 155273|0.63889 155274|0.45833 155275|0.40278 155276|0.38889 155277|0.43056 155278|0.47222 155279|0.36111 155280|0.5 155281|0.55556 155282|0.5 155283|0.38889 155284|0.27778 155285|0.375 155286|0.15278 155287|0.5 155288|0.16667 155289|0.25 155290|0.30556 155291|0.47222 155292|0.5 155293|0.43056 155294|0.54167 155295|0.40278 155296|0.59722 155297|0.51389 155298|0.5 155299|0.38889 155300|0.625 155301|0.47222 155302|0.30556 155303|0.51389 155304|0.16667 155305|0.45833 155306|0.5 155307|0.5 155308|0.38889 155309|0.16667 155310|0.48611 155311|0.68056 155312|0.30556 155313|0.31944 155314|0.48611 155315|0.31944 155316|0.5 155317|0.48611 155318|0.44444 155319|0.5 155320|0.33333 155321|0.30556 155322|0.63889 155323|0.51389 155324|0.33333 155325|0.38889 155326|0.5 155327|0.44444 155328|0.31944 155329|0.27778 155330|0.33333 155331|0.55556 155332|0.5 155333|0.66667 155334|0.65278 155335|0.5 155336|0.5 155337|0.5 155338|0.5 155339|0.63889 155340|0.44444 155341|0.54167 155342|0.48611 155343|0.30556 155344|0.44444 155345|0.44444 155346|0.40278 155347|0.38889 155348|0.375 155349|0.16667 155350|0.25 155351|0.19444 155352|0.33333 155353|0.31944 155354|0.47222 155355|0.5 155356|0.5 155357|0.5 155358|0.5 155359|0.34722 155360|0.61111 155361|0.51389 155362|0.5 155363|0.18056 155364|0.5 155365|0.43056 155366|0.31944 155367|0.55556 155368|0.375 155369|0.54167 155370|0.61111 155371|0.5 155372|0.56944 155373|0.59722 155374|0.68056 155375|0.43056 155376|0.44444 155377|0.66667 155378|0.31944 155379|0.19444 155380|0.23611 155381|0.16667 155382|0.27778 155383|0.11111 155384|0.20833 155385|0.29167 155386|0.18056 155387|0.16667 155388|0.25 155389|0.45833 155390|0.26389 155391|0.22222 155392|0.19444 155393|0.34722 155394|0.47222 155395|0.11111 155396|0.30556 155397|0.23611 155398|0.27778 155399|0.44444 155400|0.43056 155401|0.45833 155402|0.38889 155403|0.33333 155404|0.16667 155405|0.55556 155406|0.56944 155407|0.5 155408|0.55556 155409|0.40278 155410|0.5 155411|0.41667 155412|0.19444 155413|0.16667 155414|0.22222 155415|0.5 155416|0.56944 155417|0.43056 155418|0.5 155419|0.54167 155420|0.15278 155421|0.56944 155422|0.33333 155423|0.58333 155424|0.63889 155425|0.48611 155426|0.45833 155427|0.34722 155428|0.27778 155429|0.45833 155430|0.40278 155431|0.375 155432|0.375 155433|0.47222 155434|0.25 155435|0.33333 155436|0.44444 155437|0.38889 155438|0.5 155439|0.48611 155440|0.5 155441|0.5 155442|0.48611 155443|0.5 155444|0.51389 155445|0.52778 155446|0.5 155447|0.18056 155448|0.375 155449|0.48611 155450|0.5 155451|0.5 155452|0.59722 155453|0.5 155454|0.40278 155455|0.58333 155456|0.47222 155457|0.52778 155458|0.38889 155459|0.44444 155460|0.15278 155461|0.38889 155462|0.625 155463|0.40278 155464|0.47222 155465|0.5 155466|0.5 155467|0.33333 155468|0.58333 155469|0.45833 155470|0.27778 155471|0.5 155472|0.52778 155473|0.5 155474|0.36111 155475|0.38889 155476|0.70833 155477|0.59722 155478|0.59722 155479|0.5 155480|0.625 155481|0.76389 155482|0.73611 155483|0.58333 155484|0.5 155485|0.76389 155486|0.79167 155487|0.91667 155488|0.41667 155489|0.43056 155490|0.61111 155491|0.61111 155492|0.36111 155493|0.43056 155494|0.51389 155495|0.61111 155496|0.51389 155497|0.5 155498|0.33333 155499|0.61111 155500|0.38889 155501|0.70833 155502|0.55556 155503|0.44444 155504|0.34722 155505|0.66667 155506|0.41667 155507|0.55556 155508|0.55556 155509|0.41667 155510|0.54167 155511|0.30556 155512|0.29167 155513|0.5 155514|0.375 155515|0.5 155516|0.36111 155517|0.44444 155518|0.375 155519|0.33333 155520|0.43056 155521|0.31944 155522|0.34722 155523|0.34722 155524|0.083333 155525|0.5 155526|0.58333 155527|0.5 155528|0.5 155529|0.25 155530|0.51389 155531|0.54167 155532|0.5 155533|0.44444 155534|0.5 155535|0.20833 155536|0.81944 155537|0.40278 155538|0.5 155539|0.44444 155540|0.65278 155541|0.68056 155542|0.34722 155543|0.48611 155544|0.5 155545|0.44444 155546|0.52778 155547|0.41667 155548|0.20833 155549|0.45833 155550|0.45833 155551|0.5 155552|0.38889 155553|0.38889 155554|0.38889 155555|0.44444 155556|0.5 155557|0.5 155558|0.54167 155559|0.625 155560|0.52778 155561|0.63889 155562|0.5 155563|0.63889 155564|0.52778 155565|0.41667 155566|0.45833 155567|0.36111 155568|0.52778 155569|0.23611 155570|0.51389 155571|0.61111 155572|0.38889 155573|0.5 155574|0.30556 155575|0.34722 155576|0.55556 155577|0.36111 155578|0.44444 155579|0.31944 155580|0.38889 155581|0.15278 155582|0.45833 155583|0.44444 155584|0.34722 155585|0.29167 155586|0.33333 155587|0.30556 155588|0.56944 155589|0.63889 155590|0.36111 155591|0.625 155592|0.22222 155593|0.51389 155594|0.5 155595|0.38889 155596|0.44444 155597|0.5 155598|0.34722 155599|0.5 155600|0.54167 155601|0.36111 155602|0.26389 155603|0.125 155604|0.48611 155605|0.40278 155606|0.55556 155607|0.5 155608|0.47222 155609|0.52778 155610|0.68056 155611|0.19444 155612|0.48611 155613|0.66667 155614|0.56944 155615|0.54167 155616|0.43056 155617|0.375 155618|0.5 155619|0.72222 155620|0.34722 155621|0.375 155622|0.38889 155623|0.48611 155624|0.33333 155625|0.33333 155626|0.16667 155627|0.36111 155628|0.41667 155629|0.65278 155630|0.44444 155631|0.33333 155632|0.34722 155633|0.55556 155634|0.51389 155635|0.47222 155636|0.23611 155637|0.375 155638|0.26389 155639|0.30556 155640|0.27778 155641|0.5 155642|0.38889 155643|0.56944 155644|0.33333 155645|0.26389 155646|0.51389 155647|0.47222 155648|0.5 155649|0.5 155650|0.34722 155651|0.48611 155652|0.5 155653|0.58333 155654|0.29167 155655|0.58333 155656|0.47222 155657|0.68056 155658|0.5 155659|0.54167 155660|0.26389 155661|0.47222 155662|0.54167 155663|0.5 155664|0.34722 155665|0.41667 155666|0.5 155667|0.5 155668|0.5 155669|0.36111 155670|0.30556 155671|0.27778 155672|0.22222 155673|0.54167 155674|0.51389 155675|0.48611 155676|0.5 155677|0.44444 155678|0.56944 155679|0.5 155680|0.5 155681|0.5 155682|0.51389 155683|0.5 155684|0.5 155685|0.5 155686|0.66667 155687|0.5 155688|0.5 155689|0.5 155690|0.5 155691|0.58333 155692|0.5 155693|0.51389 155694|0.52778 155695|0.5 155696|0.5 155697|0.58333 155698|0.5 155699|0.5 155700|0.5 155701|0.5 155702|0.5 155703|0.5 155704|0.5 155705|0.5 155706|0.38889 155707|0.5 155708|0.27778 155709|0.5 155710|0.40278 155711|0.31944 155712|0.20833 155713|0.43056 155714|0.5 155715|0.13889 155716|0.22222 155717|0.38889 155718|0.44444 155719|0.5 155720|0.47222 155721|0.38889 155722|0.5 155723|0.5 155724|0.83333 155725|0.22222 155726|0.19444 155727|0.51389 155728|0.44444 155729|0.43056 155730|0.40278 155731|0.5 155732|0.5 155733|0.44444 155734|0.41667 155735|0.52778 155736|0.5 155737|0.44444 155738|0.44444 155739|0.5 155740|0.26389 155741|0.5 155742|0.44444 155743|0.5 155744|0.34722 155745|0.45833 155746|0.29167 155747|0.36111 155748|0.33333 155749|0.5 155750|0.5 155751|0.375 155752|0.375 155753|0.5 155754|0.27778 155755|0.375 155756|0.30556 155757|0.26389 155758|0.23611 155759|0.44444 155760|0.25 155761|0.48611 155762|0.47222 155763|0.5 155764|0.27778 155765|0.33333 155766|0.36111 155767|0.625 155768|0.44444 155769|0.52778 155770|0.36111 155771|0.5 155772|0.5 155773|0.26389 155774|0.33333 155775|0.5 155776|0.40278 155777|0.38889 155778|0.5 155779|0.58333 155780|0.5 155781|0.51389 155782|0.52778 155783|0.5 155784|0.51389 155785|0.51389 155786|0.625 155787|0.33333 155788|0.22222 155789|0.19444 155790|0.27778 155791|0.47222 155792|0.63889 155793|0.44444 155794|0.34722 155795|0.5 155796|0.5 155797|0.5 155798|0.23611 155799|0.34722 155800|0.54167 155801|0.29167 155802|0.13889 155803|0.47222 155804|0.23611 155805|0.44444 155806|0.45833 155807|0.19444 155808|0.5 155809|0.5 155810|0.5 155811|0.51389 155812|0.25 155813|0.54167 155814|0.65278 155815|0.65278 155816|0.47222 155817|0.36111 155818|0.47222 155819|0.44444 155820|0.61111 155821|0.56944 155822|0.27778 155823|0.27778 155824|0.5 155825|0.54167 155826|0.52778 155827|0.5 155828|0.47222 155829|0.41667 155830|0.45833 155831|0.5 155832|0.36111 155833|0.20833 155834|0.33333 155835|0.36111 155836|0.625 155837|0.25 155838|0.43056 155839|0.27778 155840|0.26389 155841|0.34722 155842|0.23611 155843|0.30556 155844|0.34722 155845|0.27778 155846|0.36111 155847|0.18056 155848|0.23611 155849|0.41667 155850|0.375 155851|0.20833 155852|0.40278 155853|0.43056 155854|0.23611 155855|0.33333 155856|0.15278 155857|0.25 155858|0.48611 155859|0.38889 155860|0.30556 155861|0.18056 155862|0.55556 155863|0.19444 155864|0.097222 155865|0.51389 155866|0.26389 155867|0.22222 155868|0.19444 155869|0.33333 155870|0.31944 155871|0.23611 155872|0.33333 155873|0.27778 155874|0.41667 155875|0.79167 155876|0.41667 155877|0.43056 155878|0.47222 155879|0.51389 155880|0.29167 155881|0.51389 155882|0.625 155883|0.40278 155884|0.66667 155885|0.5 155886|0.63889 155887|0.27778 155888|0.27778 155889|0.36111 155890|0.51389 155891|0.625 155892|0.52778 155893|0.23611 155894|0.375 155895|0.52778 155896|0.5 155897|0.23611 155898|0.45833 155899|0.5 155900|0.5 155901|0.41667 155902|0.48611 155903|0.5 155904|0.40278 155905|0.5 155906|0.56944 155907|0.5 155908|0.5 155909|0.52778 155910|0.11111 155911|0.41667 155912|0.22222 155913|0.73611 155914|0.47222 155915|0.44444 155916|0.68056 155917|0.59722 155918|0.41667 155919|0.48611 155920|0.26389 155921|0.51389 155922|0.33333 155923|0.43056 155924|0.34722 155925|0.375 155926|0.33333 155927|0.51389 155928|0.36111 155929|0.31944 155930|0.25 155931|0.5 155932|0.5 155933|0.58333 155934|0.73611 155935|0.16667 155936|0.20833 155937|0.29167 155938|0.27778 155939|0.73611 155940|0.47222 155941|0.56944 155942|0.16667 155943|0.43056 155944|0.52778 155945|0.66667 155946|0.22222 155947|0.40278 155948|0.44444 155949|0.52778 155950|0.5 155951|0.63889 155952|0.69444 155953|0.5 155954|0.65278 155955|0.5 155956|0.43056 155957|0.5 155958|0.38889 155959|0.25 155960|0.34722 155961|0.16667 155962|0.44444 155963|0.23611 155964|0.51389 155965|0.34722 155966|0.51389 155967|0.16667 155968|0.61111 155969|0.44444 155970|0.15278 155971|0.16667 155972|0.61111 155973|0.52778 155974|0.47222 155975|0.29167 155976|0.375 155977|0.375 155978|0.36111 155979|0.5 155980|0.27778 155981|0.23611 155982|0.43056 155983|0.25 155984|0.20833 155985|0.48611 155986|0.375 155987|0.33333 155988|0.125 155989|0.125 155990|0.375 155991|0.38889 155992|0.34722 155993|0.5 155994|0.5 155995|0.66667 155996|0.5 155997|0.55556 155998|0.27778 155999|0.44444 156000|0.54167 156001|0.29167 156002|0.54167 156003|0.33333 156004|0.22222 156005|0.19444 156006|0.26389 156007|0.52778 156008|0.61111 156009|0.625 156010|0.5 156011|0.23611 156012|0.45833 156013|0.79167 156014|0.5 156015|0.5 156016|0.40278 156017|0.45833 156018|0.51389 156019|0.45833 156020|0.70833 156021|0.5 156022|0.51389 156023|0.20833 156024|0.55556 156025|0.44444 156026|0.43056 156027|0.72222 156028|0.66667 156029|0.63889 156030|0.65278 156031|0.625 156032|0.5 156033|0.5 156034|0.26389 156035|0.41667 156036|0.44444 156037|0.33333 156038|0.51389 156039|0.41667 156040|0.5 156041|0.48611 156042|0.52778 156043|0.54167 156044|0.43056 156045|0.41667 156046|0.16667 156047|0.48611 156048|0.40278 156049|0.27778 156050|0.66667 156051|0.68056 156052|0.77778 156053|0.41667 156054|0.83333 156055|0.75 156056|0.66667 156057|0.47222 156058|0.375 156059|0.56944 156060|0.5 156061|0.48611 156062|0.56944 156063|0.41667 156064|0.47222 156065|0.48611 156066|0.5 156067|0.59722 156068|0.45833 156069|0.55556 156070|0.47222 156071|0.5 156072|0.44444 156073|0.43056 156074|0.45833 156075|0.65278 156076|0.55556 156077|0.5 156078|0.625 156079|0.75 156080|0.75 156081|0.23611 156082|0.44444 156083|0.63889 156084|0.5 156085|0.5 156086|0.47222 156087|0.56944 156088|0.27778 156089|0.19444 156090|0.36111 156091|0.70833 156092|0.69444 156093|0.5 156094|0.5 156095|0.61111 156096|0.44444 156097|0.19444 156098|0.625 156099|0.5 156100|0.29167 156101|0.44444 156102|0.52778 156103|0.5 156104|0.625 156105|0.40278 156106|0.5 156107|0.51389 156108|0.56944 156109|0.72222 156110|0.38889 156111|0.055556 156112|0.63889 156113|0.58333 156114|0.5 156115|0.56944 156116|0.5 156117|0.56944 156118|0.20833 156119|0.5 156120|0.5 156121|0.65278 156122|0.125 156123|0.59722 156124|0.58333 156125|0.55556 156126|0.5 156127|0.22222 156128|0.51389 156129|0.5 156130|0.375 156131|0.41667 156132|0.5 156133|0.45833 156134|0.44444 156135|0.38889 156136|0.55556 156137|0.36111 156138|0.5 156139|0.23611 156140|0.38889 156141|0.30556 156142|0.25 156143|0.51389 156144|0.54167 156145|0.5 156146|0.34722 156147|0.5 156148|0.5 156149|0.45833 156150|0.5 156151|0.51389 156152|0.51389 156153|0.38889 156154|0.51389 156155|0.61111 156156|0.5 156157|0.55556 156158|0.5 156159|0.52778 156160|0.29167 156161|0.5 156162|0.5 156163|0.5 156164|0.5 156165|0.58333 156166|0.69444 156167|0.45833 156168|0.625 156169|0.5 156170|0.52778 156171|0.30556 156172|0.625 156173|0.63889 156174|0.5 156175|0.77778 156176|0.69444 156177|0.5 156178|0.72222 156179|0.70833 156180|0.63889 156181|0.73611 156182|0.56944 156183|0.66667 156184|0.75 156185|0.625 156186|0.65278 156187|0.66667 156188|0.30556 156189|0.30556 156190|0.25 156191|0.34722 156192|0.40278 156193|0.45833 156194|0.5 156195|0.55556 156196|0.51389 156197|0.73611 156198|0.40278 156199|0.47222 156200|0.47222 156201|0.26389 156202|0.31944 156203|0.22222 156204|0.45833 156205|0.22222 156206|0.29167 156207|0.36111 156208|0.5 156209|0.48611 156210|0.26389 156211|0.31944 156212|0.19444 156213|0.52778 156214|0.44444 156215|0.36111 156216|0.80556 156217|0.54167 156218|0.83333 156219|0.79167 156220|0.84722 156221|0.31944 156222|0.68056 156223|0.65278 156224|0.23611 156225|0.44444 156226|0.38889 156227|0.40278 156228|0.33333 156229|0.51389 156230|0.56944 156231|0.34722 156232|0.52778 156233|0.43056 156234|0.26389 156235|0.41667 156236|0.5 156237|0.5 156238|0.5 156239|0.5 156240|0.51389 156241|0.375 156242|0.51389 156243|0.33333 156244|0.66667 156245|0.44444 156246|0.5 156247|0.66667 156248|0.54167 156249|0.45833 156250|0.47222 156251|0.40278 156252|0.44444 156253|0.375 156254|0.41667 156255|0.34722 156256|0.125 156257|0.34722 156258|0.27778 156259|0.51389 156260|0.44444 156261|0.20833 156262|0.47222 156263|0.36111 156264|0.5 156265|0.34722 156266|0.29167 156267|0.47222 156268|0.5 156269|0.55556 156270|0.5 156271|0.40278 156272|0.47222 156273|0.59722 156274|0.38889 156275|0.48611 156276|0.45833 156277|0.44444 156278|0.23611 156279|0.48611 156280|0.38889 156281|0.55556 156282|0.63889 156283|0.38889 156284|0.083333 156285|0.58333 156286|0.55556 156287|0.56944 156288|0.68056 156289|0.43056 156290|0.45833 156291|0.38889 156292|0.38889 156293|0.55556 156294|0.5 156295|0.44444 156296|0.75 156297|0.27778 156298|0.69444 156299|0.125 156300|0.5 156301|0.54167 156302|0.5 156303|0.5 156304|0.5 156305|0.5 156306|0.5 156307|0.36111 156308|0.5 156309|0.58333 156310|0.45833 156311|0.47222 156312|0.5 156313|0.44444 156314|0.5 156315|0.47222 156316|0.5 156317|0.34722 156318|0.52778 156319|0.41667 156320|0.63889 156321|0.63889 156322|0.41667 156323|0.55556 156324|0.56944 156325|0.55556 156326|0.59722 156327|0.5 156328|0.41667 156329|0.41667 156330|0.5 156331|0.56944 156332|0.625 156333|0.54167 156334|0.30556 156335|0.27778 156336|0.31944 156337|0.18056 156338|0.54167 156339|0.77778 156340|0.52778 156341|0.125 156342|0.56944 156343|0.79167 156344|0.83333 156345|0.38889 156346|0.43056 156347|0.69444 156348|0.58333 156349|0.70833 156350|0.56944 156351|0.73611 156352|0.48611 156353|0.58333 156354|0.33333 156355|0.29167 156356|0.26389 156357|0.29167 156358|0.27778 156359|0.29167 156360|0.36111 156361|0.40278 156362|0.27778 156363|0.29167 156364|0.25 156365|0.20833 156366|0.47222 156367|0.33333 156368|0.20833 156369|0.375 156370|0.41667 156371|0.11111 156372|0.30556 156373|0.22222 156374|0.44444 156375|0.45833 156376|0.26389 156377|0.5 156378|0.59722 156379|0.5 156380|0.44444 156381|0.56944 156382|0.5 156383|0.45833 156384|0.52778 156385|0.5 156386|0.5 156387|0.27778 156388|0.5 156389|0.55556 156390|0.34722 156391|0.25 156392|0.47222 156393|0.47222 156394|0.52778 156395|0.48611 156396|0.47222 156397|0.55556 156398|0.55556 156399|0.16667 156400|0.34722 156401|0.44444 156402|0.5 156403|0.625 156404|0.5 156405|0.79167 156406|0.54167 156407|0.5 156408|0.5 156409|0.44444 156410|0.5 156411|0.58333 156412|0.43056 156413|0.51389 156414|0.375 156415|0.44444 156416|0.5 156417|0.16667 156418|0.27778 156419|0.29167 156420|0.29167 156421|0.29167 156422|0.41667 156423|0.47222 156424|0.29167 156425|0.38889 156426|0.45833 156427|0.22222 156428|0.38889 156429|0.31944 156430|0.25 156431|0.63889 156432|0.30556 156433|0.5 156434|0.45833 156435|0.5 156436|0.51389 156437|0.47222 156438|0.47222 156439|0.56944 156440|0.51389 156441|0.44444 156442|0.47222 156443|0.11111 156444|0.16667 156445|0.5 156446|0.22222 156447|0.44444 156448|0.5 156449|0.5 156450|0.40278 156451|0.41667 156452|0.30556 156453|0.40278 156454|0.5 156455|0.44444 156456|0.5 156457|0.5 156458|0.61111 156459|0.73611 156460|0.61111 156461|0.72222 156462|0.51389 156463|0.59722 156464|0.5 156465|0.36111 156466|0.45833 156467|0.18056 156468|0.31944 156469|0.48611 156470|0.20833 156471|0.375 156472|0.15278 156473|0.54167 156474|0.34722 156475|0.45833 156476|0.25 156477|0.27778 156478|0.5 156479|0.5 156480|0.19444 156481|0.26389 156482|0.375 156483|0.5 156484|0.52778 156485|0.47222 156486|0.5 156487|0.61111 156488|0.5 156489|0.36111 156490|0.48611 156491|0.26389 156492|0.5 156493|0.375 156494|0.5 156495|0.58333 156496|0.56944 156497|0.5 156498|0.51389 156499|0.5 156500|0.43056 156501|0.56944 156502|0.63889 156503|0.72222 156504|0.5 156505|0.51389 156506|0.5 156507|0.25 156508|0.33333 156509|0.30556 156510|0.38889 156511|0.375 156512|0.625 156513|0.48611 156514|0.31944 156515|0.25 156516|0.55556 156517|0.55556 156518|0.43056 156519|0.29167 156520|0.5 156521|0.51389 156522|0.55556 156523|0.61111 156524|0.5 156525|0.5 156526|0.41667 156527|0.5 156528|0.26389 156529|0.16667 156530|0.097222 156531|0.51389 156532|0.38889 156533|0.33333 156534|0.40278 156535|0.79167 156536|0.19444 156537|0.19444 156538|0.44444 156539|0.36111 156540|0.5 156541|0.11111 156542|0.16667 156543|0.52778 156544|0.52778 156545|0.45833 156546|0.19444 156547|0.5 156548|0.22222 156549|0.59722 156550|0.66667 156551|0.51389 156552|0.55556 156553|0.5 156554|0.40278 156555|0.20833 156556|0.15278 156557|0.38889 156558|0.45833 156559|0.31944 156560|0.38889 156561|0.61111 156562|0.26389 156563|0.36111 156564|0.20833 156565|0.5 156566|0.47222 156567|0.51389 156568|0.41667 156569|0.69444 156570|0.70833 156571|0.125 156572|0.34722 156573|0.44444 156574|0.22222 156575|0.44444 156576|0.59722 156577|0.23611 156578|0.55556 156579|0.5 156580|0.625 156581|0.66667 156582|0.51389 156583|0.48611 156584|0.38889 156585|0.5 156586|0.54167 156587|0.5 156588|0.45833 156589|0.11111 156590|0.22222 156591|0.45833 156592|0.59722 156593|0.40278 156594|0.5 156595|0.51389 156596|0.625 156597|0.66667 156598|0.43056 156599|0.55556 156600|0.43056 156601|0.5 156602|0.51389 156603|0.43056 156604|0.54167 156605|0.38889 156606|0.44444 156607|0.40278 156608|0.5 156609|0.30556 156610|0.55556 156611|0.5 156612|0.66667 156613|0.79167 156614|0.43056 156615|0.52778 156616|0.34722 156617|0.55556 156618|0.65278 156619|0.5 156620|0.58333 156621|0.51389 156622|0.38889 156623|0.13889 156624|0 156625|0.33333 156626|0.34722 156627|0.31944 156628|0.34722 156629|0.55556 156630|0.61111 156631|0.44444 156632|0.45833 156633|0.16667 156634|0.055556 156635|0.31944 156636|0.27778 156637|0.27778 156638|0.19444 156639|0.5 156640|0.5 156641|0.41667 156642|0.34722 156643|0.59722 156644|0.33333 156645|0.5 156646|0.55556 156647|0.47222 156648|0.43056 156649|0.63889 156650|0.40278 156651|0.25 156652|0.56944 156653|0.61111 156654|0.48611 156655|0.375 156656|0.52778 156657|0.5 156658|0.61111 156659|0.27778 156660|0.52778 156661|0.44444 156662|0.27778 156663|0.5 156664|0.44444 156665|0.61111 156666|0.5 156667|0.44444 156668|0.5 156669|0.38889 156670|0.29167 156671|0.23611 156672|0.5 156673|0.5 156674|0.5 156675|0.5 156676|0.44444 156677|0.48611 156678|0.45833 156679|0.31944 156680|0.34722 156681|0.61111 156682|0.375 156683|0.43056 156684|0.55556 156685|0.5 156686|0.69444 156687|0.44444 156688|0.52778 156689|0.5 156690|0.56944 156691|0.44444 156692|0.61111 156693|0.5 156694|0.5 156695|0.36111 156696|0.48611 156697|0.18056 156698|0.375 156699|0.44444 156700|0.31944 156701|0.375 156702|0.72222 156703|0.44444 156704|0.5 156705|0.56944 156706|0.51389 156707|0.61111 156708|0.375 156709|0.55556 156710|0.5 156711|0.61111 156712|0.40278 156713|0.61111 156714|0.5 156715|0.5 156716|0.56944 156717|0.5 156718|0.29167 156719|0.51389 156720|0.72222 156721|0.5 156722|0.44444 156723|0.5 156724|0.75 156725|0.375 156726|0.58333 156727|0.22222 156728|0.30556 156729|0.5 156730|0.63889 156731|0.56944 156732|0.23611 156733|0.5 156734|0.5 156735|0.38889 156736|0.33333 156737|0.5 156738|0.56944 156739|0.25 156740|0.5 156741|0.5 156742|0.44444 156743|0.51389 156744|0.5 156745|0.5 156746|0.34722 156747|0.48611 156748|0.47222 156749|0.41667 156750|0.22222 156751|0.45833 156752|0.43056 156753|0.083333 156754|0.45833 156755|0.54167 156756|0.27778 156757|0.5 156758|0.44444 156759|0.48611 156760|0.56944 156761|0.34722 156762|0.22222 156763|0.65278 156764|0.5 156765|0.59722 156766|0.68056 156767|0.65278 156768|0.34722 156769|0.25 156770|0.125 156771|0.5 156772|0.52778 156773|0.43056 156774|0.48611 156775|0.36111 156776|0.5 156777|0.5 156778|0.54167 156779|0.54167 156780|0.41667 156781|0.38889 156782|0.31944 156783|0.41667 156784|0.76389 156785|0.65278 156786|0.47222 156787|0.61111 156788|0.55556 156789|0.55556 156790|0.58333 156791|0.38889 156792|0.36111 156793|0.23611 156794|0.22222 156795|0.33333 156796|0.33333 156797|0.22222 156798|0.51389 156799|0.51389 156800|0.54167 156801|0.48611 156802|0.48611 156803|0.44444 156804|0.29167 156805|0.47222 156806|0.5 156807|0.52778 156808|0.47222 156809|0.56944 156810|0.5 156811|0.5 156812|0.25 156813|0.44444 156814|0.375 156815|0.58333 156816|0.52778 156817|0.45833 156818|0.45833 156819|0.59722 156820|0.5 156821|0.36111 156822|0.41667 156823|0.44444 156824|0.44444 156825|0.31944 156826|0.61111 156827|0.58333 156828|0.61111 156829|0.58333 156830|0.5 156831|0.54167 156832|0.59722 156833|0.27778 156834|0.38889 156835|0.29167 156836|0.45833 156837|0.44444 156838|0.47222 156839|0.52778 156840|0.47222 156841|0.44444 156842|0.5 156843|0.44444 156844|0.16667 156845|0.5 156846|0.43056 156847|0.41667 156848|0.5 156849|0.48611 156850|0.51389 156851|0.45833 156852|0.43056 156853|0.41667 156854|0.45833 156855|0.63889 156856|0.44444 156857|0.29167 156858|0.013889 156859|0.34722 156860|0.083333 156861|0.625 156862|0.055556 156863|0.069444 156864|0.11111 156865|0.38889 156866|0.5 156867|0.55556 156868|0.52778 156869|0.31944 156870|0.5 156871|0.44444 156872|0.30556 156873|0.55556 156874|0.47222 156875|0.47222 156876|0.38889 156877|0.36111 156878|0.52778 156879|0.31944 156880|0.44444 156881|0.41667 156882|0.48611 156883|0.56944 156884|0.33333 156885|0.30556 156886|0.34722 156887|0.5 156888|0.22222 156889|0.375 156890|0.15278 156891|0.069444 156892|0.31944 156893|0.36111 156894|0.20833 156895|0.36111 156896|0.29167 156897|0.23611 156898|0.83333 156899|0.47222 156900|0.38889 156901|0.41667 156902|0.44444 156903|0.48611 156904|0.54167 156905|0.38889 156906|0.25 156907|0.5 156908|0.33333 156909|0.59722 156910|0.5 156911|0.34722 156912|0.45833 156913|0.5 156914|0.61111 156915|0.375 156916|0.69444 156917|0.5 156918|0.5 156919|0.43056 156920|0.5 156921|0.40278 156922|0.5 156923|0.61111 156924|0.55556 156925|0.5 156926|0.5 156927|0.5 156928|0.59722 156929|0.5 156930|0.40278 156931|0.27778 156932|0.44444 156933|0.5 156934|0.47222 156935|0.5 156936|0.65278 156937|0.40278 156938|0.41667 156939|0.30556 156940|0.19444 156941|0.5 156942|0.47222 156943|0.30556 156944|0.44444 156945|0.22222 156946|0.27778 156947|0.36111 156948|0.31944 156949|0.11111 156950|0.5 156951|0.55556 156952|0.38889 156953|0.38889 156954|0.30556 156955|0.5 156956|0.58333 156957|0.66667 156958|0.5 156959|0.27778 156960|0.84722 156961|0.5 156962|0.29167 156963|0.23611 156964|0.20833 156965|0.59722 156966|0.43056 156967|0.56944 156968|0.34722 156969|0.44444 156970|0.75 156971|0.66667 156972|0.54167 156973|0.16667 156974|0.40278 156975|0.31944 156976|0.33333 156977|0.5 156978|0.41667 156979|0.5 156980|0.54167 156981|0.58333 156982|0.54167 156983|0.29167 156984|0.5 156985|0.5 156986|0.44444 156987|0.5 156988|0.48611 156989|0.30556 156990|0.29167 156991|0.47222 156992|0.56944 156993|0.38889 156994|0.52778 156995|0.48611 156996|0.38889 156997|0.38889 156998|0.58333 156999|0.44444 157000|0.54167 157001|0.54167 157002|0.43056 157003|0.55556 157004|0.5 157005|0.56944 157006|0.44444 157007|0.54167 157008|0.36111 157009|0.55556 157010|0.5 157011|0.13889 157012|0.5 157013|0.75 157014|0.44444 157015|0.80556 157016|0.5 157017|0.5 157018|0.38889 157019|0.38889 157020|0.26389 157021|0.38889 157022|0.44444 157023|0.58333 157024|0.69444 157025|0.5 157026|0.54167 157027|0.51389 157028|0.5 157029|0.65278 157030|0.58333 157031|0.40278 157032|0.5 157033|0.5 157034|0.34722 157035|0.61111 157036|0.47222 157037|0.30556 157038|0.47222 157039|0.38889 157040|0.38889 157041|0.13889 157042|0.27778 157043|0.27778 157044|0.52778 157045|0.41667 157046|0.44444 157047|0.47222 157048|0.5 157049|0.625 157050|0.5 157051|0.56944 157052|0.54167 157053|0.5 157054|0.5 157055|0.52778 157056|0.25 157057|0.20833 157058|0.19444 157059|0.45833 157060|0.55556 157061|0.625 157062|0.38889 157063|0.5 157064|0.5 157065|0.51389 157066|0.5 157067|0.5 157068|0.40278 157069|0.47222 157070|0.36111 157071|0.52778 157072|0.44444 157073|0.41667 157074|0.29167 157075|0.58333 157076|0.44444 157077|0.77778 157078|0.79167 157079|0.61111 157080|0.47222 157081|0.5 157082|0.5 157083|0.56944 157084|0.58333 157085|0.5 157086|0.52778 157087|0.5 157088|0.51389 157089|0.19444 157090|0.61111 157091|0.43056 157092|0.51389 157093|0.47222 157094|0.31944 157095|0.33333 157096|0.33333 157097|0.375 157098|0.51389 157099|0.40278 157100|0.76389 157101|0.69444 157102|0.51389 157103|0.45833 157104|0.54167 157105|0.45833 157106|0.33333 157107|0.45833 157108|0.5 157109|0.41667 157110|0.52778 157111|0.70833 157112|0.19444 157113|0.41667 157114|0.5 157115|0.41667 157116|0.40278 157117|0.5 157118|0.58333 157119|0.52778 157120|0.5 157121|0.5 157122|0.40278 157123|0.25 157124|0.5 157125|0.5 157126|0.5 157127|0.55556 157128|0.51389 157129|0.48611 157130|0.58333 157131|0.23611 157132|0.625 157133|0.26389 157134|0.61111 157135|0.43056 157136|0.68056 157137|0.5 157138|0.38889 157139|0.38889 157140|0.18056 157141|0.30556 157142|0.40278 157143|0.34722 157144|0.51389 157145|0.66667 157146|0.44444 157147|0.27778 157148|0.19444 157149|0.22222 157150|0.23611 157151|0.5 157152|0.44444 157153|0.45833 157154|0.77778 157155|0.44444 157156|0.33333 157157|0.36111 157158|0.44444 157159|0.31944 157160|0.34722 157161|0.5 157162|0.40278 157163|0.22222 157164|0.75 157165|0.625 157166|0.625 157167|0.59722 157168|0.66667 157169|0.625 157170|0.76389 157171|0.72222 157172|0.66667 157173|0.61111 157174|0.58333 157175|0.63889 157176|0.44444 157177|0.45833 157178|0.40278 157179|0.19444 157180|0.33333 157181|0.38889 157182|0.29167 157183|0.22222 157184|0.5 157185|0.5 157186|0.51389 157187|0.45833 157188|0.5 157189|0.41667 157190|0.45833 157191|0.31944 157192|0.5 157193|0.56944 157194|0.44444 157195|0.45833 157196|0.54167 157197|0.5 157198|0.36111 157199|0.5 157200|0.20833 157201|0.48611 157202|0.5 157203|0.52778 157204|0.63889 157205|0.5 157206|0.5 157207|0.61111 157208|0.15278 157209|0.18056 157210|0.30556 157211|0.36111 157212|0.5 157213|0.40278 157214|0.47222 157215|0.44444 157216|0.5 157217|0.63889 157218|0.51389 157219|0.44444 157220|0.38889 157221|0.48611 157222|0.55556 157223|0.23611 157224|0.63889 157225|0.47222 157226|0.52778 157227|0.33333 157228|0.23611 157229|0.38889 157230|0.44444 157231|0.5 157232|0.5 157233|0.44444 157234|0.5 157235|0.23611 157236|0.5 157237|0.47222 157238|0.5 157239|0.23611 157240|0.58333 157241|0.84722 157242|0.88889 157243|0.58333 157244|0.5 157245|0.55556 157246|0.40278 157247|0.27778 157248|0.40278 157249|0.083333 157250|0.90278 157251|0.40278 157252|0.70833 157253|0.375 157254|0.54167 157255|0.44444 157256|0.30556 157257|0.55556 157258|0.52778 157259|0.5 157260|0.61111 157261|0.5 157262|0.56944 157263|0.5 157264|0.38889 157265|0.47222 157266|0.61111 157267|0.77778 157268|0.66667 157269|0.77778 157270|0.48611 157271|0.5 157272|0.44444 157273|0.375 157274|0.29167 157275|0.38889 157276|0.625 157277|0.47222 157278|0.5 157279|0.59722 157280|0.55556 157281|0.36111 157282|0.25 157283|0.40278 157284|0.73611 157285|0.44444 157286|0.48611 157287|0.5 157288|0.38889 157289|0.38889 157290|0.33333 157291|0.23611 157292|0.33333 157293|0.72222 157294|0.51389 157295|0.097222 157296|0.63889 157297|0.25 157298|0.20833 157299|0.43056 157300|0.30556 157301|0.54167 157302|0.33333 157303|0.36111 157304|0.18056 157305|0.625 157306|0.38889 157307|0.5 157308|0.52778 157309|0.18056 157310|0.40278 157311|0.33333 157312|0.15278 157313|0.18056 157314|0.097222 157315|0.5 157316|0.625 157317|0.61111 157318|0.36111 157319|0.40278 157320|0.61111 157321|0.59722 157322|0.47222 157323|0.5 157324|0.5 157325|0.31944 157326|0.34722 157327|0.38889 157328|0.48611 157329|0.27778 157330|0.26389 157331|0.33333 157332|0.27778 157333|0.34722 157334|0.41667 157335|0.52778 157336|0.38889 157337|0.43056 157338|0.59722 157339|0.51389 157340|0.47222 157341|0.44444 157342|0.52778 157343|0.55556 157344|0.5 157345|0.43056 157346|0.29167 157347|0.29167 157348|0.40278 157349|0.36111 157350|0.48611 157351|0.44444 157352|0.125 157353|0.22222 157354|0.22222 157355|0.25 157356|0.36111 157357|0.41667 157358|0.43056 157359|0.31944 157360|0.47222 157361|0.52778 157362|0.5 157363|0.43056 157364|0.5 157365|0.59722 157366|0.52778 157367|0.59722 157368|0.59722 157369|0.45833 157370|0.47222 157371|0.61111 157372|0.47222 157373|0.625 157374|0.31944 157375|0.22222 157376|0.26389 157377|0.38889 157378|0.5 157379|0.51389 157380|0.29167 157381|0.33333 157382|0.375 157383|0.5 157384|0.16667 157385|0.83333 157386|0.48611 157387|0.51389 157388|0.5 157389|0.55556 157390|0.54167 157391|0.5 157392|0.73611 157393|0.54167 157394|0.22222 157395|0.19444 157396|0.27778 157397|0.44444 157398|0.375 157399|0.34722 157400|0.5 157401|0.31944 157402|0.61111 157403|0.11111 157404|0.41667 157405|0.22222 157406|0.38889 157407|0.31944 157408|0.34722 157409|0.375 157410|0.23611 157411|0.29167 157412|0.33333 157413|0.44444 157414|0.20833 157415|0.30556 157416|0.33333 157417|0.16667 157418|0.15278 157419|0.41667 157420|0.55556 157421|0.55556 157422|0.23611 157423|0.5 157424|0.5 157425|0.55556 157426|0.5 157427|0.51389 157428|0.55556 157429|0.56944 157430|0.45833 157431|0.47222 157432|0.43056 157433|0.44444 157434|0.26389 157435|0.30556 157436|0.33333 157437|0.20833 157438|0.16667 157439|0.26389 157440|0.23611 157441|0.47222 157442|0.34722 157443|0.16667 157444|0.5 157445|0.41667 157446|0.5 157447|0.5 157448|0.58333 157449|0.48611 157450|0.5 157451|0.34722 157452|0.34722 157453|0.25 157454|0.36111 157455|0.375 157456|0.34722 157457|0.45833 157458|0.51389 157459|0.18056 157460|0.33333 157461|0.13889 157462|0.5 157463|0.625 157464|0.5 157465|0.47222 157466|0.41667 157467|0.5 157468|0.45833 157469|0.5 157470|0.65278 157471|0.5 157472|0.30556 157473|0.5 157474|0.5 157475|0.52778 157476|0.5 157477|0.55556 157478|0.68056 157479|0.27778 157480|0.65278 157481|0.18056 157482|0.20833 157483|0.55556 157484|0.58333 157485|0.5 157486|0.52778 157487|0.5 157488|0.25 157489|0.25 157490|0.5 157491|0.5 157492|0.56944 157493|0.43056 157494|0.52778 157495|0.5 157496|0.56944 157497|0.5 157498|0.36111 157499|0.5 157500|0.5 157501|0.5 157502|0.23611 157503|0.5 157504|0.5 157505|0.56944 157506|0.5 157507|0.22222 157508|0.5 157509|0.5 157510|0.5 157511|0.5 157512|0.5 157513|0.19444 157514|0.5 157515|0.51389 157516|0.5 157517|0.51389 157518|0.65278 157519|0.5 157520|0.5 157521|0.625 157522|0.5 157523|0.55556 157524|0.55556 157525|0.27778 157526|0.20833 157527|0.36111 157528|0.48611 157529|0.47222 157530|0.41667 157531|0.66667 157532|0.48611 157533|0.33333 157534|0.23611 157535|0.20833 157536|0.5 157537|0.375 157538|0.22222 157539|0.16667 157540|0.20833 157541|0.22222 157542|0.5 157543|0.41667 157544|0.5 157545|0.40278 157546|0.5 157547|0.56944 157548|0.43056 157549|0.34722 157550|0.33333 157551|0.31944 157552|0.22222 157553|0.36111 157554|0.30556 157555|0.31944 157556|0.40278 157557|0.19444 157558|0.5 157559|0.375 157560|0.40278 157561|0.15278 157562|0.25 157563|0.22222 157564|0.36111 157565|0.40278 157566|0.34722 157567|0.22222 157568|0.375 157569|0.16667 157570|0.40278 157571|0.30556 157572|0.26389 157573|0.26389 157574|0.36111 157575|0.19444 157576|0.31944 157577|0.23611 157578|0.30556 157579|0.19444 157580|0.20833 157581|0.41667 157582|0.38889 157583|0.68056 157584|0.31944 157585|0.48611 157586|0.51389 157587|0.375 157588|0.44444 157589|0.22222 157590|0.20833 157591|0.36111 157592|0.5 157593|0.38889 157594|0.43056 157595|0.31944 157596|0.29167 157597|0.61111 157598|0.69444 157599|0.5 157600|0.68056 157601|0.625 157602|0.5 157603|0.47222 157604|0.25 157605|0.26389 157606|0.51389 157607|0.5 157608|0.38889 157609|0.41667 157610|0.5 157611|0.625 157612|0.45833 157613|0.56944 157614|0.43056 157615|0.44444 157616|0.55556 157617|0.45833 157618|0.34722 157619|0.45833 157620|0.41667 157621|0.44444 157622|0.40278 157623|0.61111 157624|0.38889 157625|0.56944 157626|0.5 157627|0.36111 157628|0.52778 157629|0.5 157630|0.27778 157631|0.5 157632|0.54167 157633|0.48611 157634|0.61111 157635|0.36111 157636|0.5 157637|0.38889 157638|0.29167 157639|0.34722 157640|0.27778 157641|0.72222 157642|0.55556 157643|0.23611 157644|0.41667 157645|0.33333 157646|0.44444 157647|0.25 157648|0.30556 157649|0.33333 157650|0.33333 157651|0.41667 157652|0.5 157653|0.43056 157654|0.38889 157655|0.5 157656|0.5 157657|0.34722 157658|0.52778 157659|0.30556 157660|0.375 157661|0.36111 157662|0.36111 157663|0.47222 157664|0.22222 157665|0.16667 157666|0.20833 157667|0.18056 157668|0.13889 157669|0.18056 157670|0.22222 157671|0.33333 157672|0.27778 157673|0.19444 157674|0.11111 157675|0.19444 157676|0.38889 157677|0.41667 157678|0.38889 157679|0.76389 157680|0.68056 157681|0.5 157682|0.43056 157683|0.68056 157684|0.41667 157685|0.48611 157686|0.34722 157687|0.40278 157688|0.18056 157689|0.5 157690|0.22222 157691|0.375 157692|0.45833 157693|0.33333 157694|0.44444 157695|0.54167 157696|0.38889 157697|0.41667 157698|0.27778 157699|0.65278 157700|0.33333 157701|0.41667 157702|0.54167 157703|0.5 157704|0.47222 157705|0.26389 157706|0.375 157707|0.38889 157708|0.5 157709|0.79167 157710|0.83333 157711|0.5 157712|0.47222 157713|0.72222 157714|0.61111 157715|0.31944 157716|0.26389 157717|0.48611 157718|0.40278 157719|0.41667 157720|0.45833 157721|0.70833 157722|0.58333 157723|0.38889 157724|0.52778 157725|0.59722 157726|0.54167 157727|0.5 157728|0.48611 157729|0.30556 157730|0.36111 157731|0.48611 157732|0.38889 157733|0.43056 157734|0.34722 157735|0.54167 157736|0.55556 157737|0.26389 157738|0.26389 157739|0.27778 157740|0.25 157741|0.51389 157742|0.31944 157743|0.36111 157744|0.27778 157745|0.31944 157746|0.15278 157747|0.23611 157748|0.22222 157749|0.26389 157750|0.375 157751|0.29167 157752|0.43056 157753|0.54167 157754|0.31944 157755|0.20833 157756|0.25 157757|0.33333 157758|0.34722 157759|0.44444 157760|0.25 157761|0.36111 157762|0.26389 157763|0.16667 157764|0.36111 157765|0.31944 157766|0.31944 157767|0.27778 157768|0.30556 157769|0.31944 157770|0.27778 157771|0.18056 157772|0.18056 157773|0.44444 157774|0.36111 157775|0.30556 157776|0.33333 157777|0.29167 157778|0.27778 157779|0.375 157780|0.40278 157781|0.33333 157782|0.33333 157783|0.25 157784|0.26389 157785|0.29167 157786|0.47222 157787|0.43056 157788|0.27778 157789|0.30556 157790|0.41667 157791|0.29167 157792|0.19444 157793|0.38889 157794|0.25 157795|0.23611 157796|0.27778 157797|0.375 157798|0.33333 157799|0.47222 157800|0.29167 157801|0.20833 157802|0.20833 157803|0.47222 157804|0.45833 157805|0.40278 157806|0.20833 157807|0.47222 157808|0.27778 157809|0.36111 157810|0.34722 157811|0.25 157812|0.20833 157813|0.38889 157814|0.55556 157815|0.61111 157816|0.55556 157817|0.625 157818|0.52778 157819|0.51389 157820|0.86111 157821|0.31944 157822|0.48611 157823|0.22222 157824|0.34722 157825|0.5 157826|0.34722 157827|0.30556 157828|0.44444 157829|0.43056 157830|0.625 157831|0.45833 157832|0.22222 157833|0.5 157834|0.48611 157835|0.5 157836|0.375 157837|0.33333 157838|0.5 157839|0.38889 157840|0.27778 157841|0.125 157842|0.5 157843|0.51389 157844|0.44444 157845|0.5 157846|0.38889 157847|0.44444 157848|0.38889 157849|0.5 157850|0.069444 157851|0.52778 157852|0.27778 157853|0.20833 157854|0.5 157855|0.34722 157856|0.22222 157857|0.54167 157858|0.43056 157859|0.30556 157860|0.625 157861|0.58333 157862|0.52778 157863|0.48611 157864|0.20833 157865|0.5 157866|0.48611 157867|0.47222 157868|0.25 157869|0.27778 157870|0.5 157871|0.45833 157872|0.5 157873|0.5 157874|0.30556 157875|0.15278 157876|0.5 157877|0.22222 157878|0.27778 157879|0.44444 157880|0.48611 157881|0.52778 157882|0.69444 157883|0.68056 157884|0.58333 157885|0.5 157886|0.44444 157887|0.48611 157888|0.5 157889|0.41667 157890|0.47222 157891|0.40278 157892|0.56944 157893|0.51389 157894|0.5 157895|0.5 157896|0.19444 157897|0.43056 157898|0.29167 157899|0.44444 157900|0.52778 157901|0.47222 157902|0.41667 157903|0.38889 157904|0.22222 157905|0.44444 157906|0.38889 157907|0.34722 157908|0.41667 157909|0.41667 157910|0.069444 157911|0.083333 157912|0.38889 157913|0.48611 157914|0.22222 157915|0.125 157916|0.44444 157917|0.18056 157918|0.26389 157919|0.27778 157920|0.38889 157921|0.51389 157922|0.51389 157923|0.22222 157924|0.19444 157925|0.069444 157926|0.069444 157927|0.33333 157928|0.31944 157929|0.5 157930|0.48611 157931|0.20833 157932|0.36111 157933|0.52778 157934|0.52778 157935|0.5 157936|0.63889 157937|0.48611 157938|0.625 157939|0.40278 157940|0.48611 157941|0.52778 157942|0.41667 157943|0.34722 157944|0.48611 157945|0.58333 157946|0.56944 157947|0.36111 157948|0.5 157949|0.80556 157950|0.45833 157951|0.40278 157952|0.38889 157953|0.5 157954|0.083333 157955|0.27778 157956|0.38889 157957|0.5 157958|0.61111 157959|0.16667 157960|0.30556 157961|0.33333 157962|0.25 157963|0.34722 157964|0.47222 157965|0.43056 157966|0.51389 157967|0.5 157968|0.52778 157969|0.5 157970|0.38889 157971|0.5 157972|0.5 157973|0.61111 157974|0.36111 157975|0.20833 157976|0.16667 157977|0.11111 157978|0.15278 157979|0.55556 157980|0.15278 157981|0.45833 157982|0.5 157983|0.43056 157984|0.5 157985|0.5 157986|0.30556 157987|0.56944 157988|0.31944 157989|0.5 157990|0.47222 157991|0.5 157992|0.19444 157993|0.5 157994|0.38889 157995|0.31944 157996|0.23611 157997|0.15278 157998|0.40278 157999|0.5 158000|0.31944 158001|0.47222 158002|0.5 158003|0.5 158004|0.58333 158005|0.54167 158006|0.5 158007|0.5 158008|0.29167 158009|0.23611 158010|0.36111 158011|0.43056 158012|0.5 158013|0.40278 158014|0.5 158015|0.5 158016|0.5 158017|0.40278 158018|0.47222 158019|0.15278 158020|0.25 158021|0.27778 158022|0.29167 158023|0.11111 158024|0.18056 158025|0.33333 158026|0.19444 158027|0.375 158028|0.055556 158029|0.31944 158030|0.26389 158031|0.16667 158032|0.20833 158033|0.30556 158034|0.40278 158035|0.16667 158036|0.22222 158037|0.19444 158038|0.33333 158039|0.36111 158040|0.36111 158041|0.41667 158042|0.36111 158043|0.25 158044|0.097222 158045|0.26389 158046|0.16667 158047|0.19444 158048|0.25 158049|0.38889 158050|0.083333 158051|0.38889 158052|0.29167 158053|0.38889 158054|0.36111 158055|0.27778 158056|0.34722 158057|0.34722 158058|0.38889 158059|0.45833 158060|0.25 158061|0.25 158062|0.5 158063|0.59722 158064|0.54167 158065|0.61111 158066|0.51389 158067|0.56944 158068|0.34722 158069|0.29167 158070|0.47222 158071|0.72222 158072|0.25 158073|0.36111 158074|0.51389 158075|0.5 158076|0.48611 158077|0.34722 158078|0.55556 158079|0.5 158080|0.59722 158081|0.51389 158082|0.47222 158083|0.63889 158084|0.65278 158085|0.18056 158086|0.52778 158087|0.75 158088|0.65278 158089|0.73611 158090|0.84722 158091|0.625 158092|0.83333 158093|0.88889 158094|0.5 158095|0.61111 158096|0.63889 158097|0.58333 158098|0.48611 158099|0.33333 158100|0.61111 158101|0.48611 158102|0.27778 158103|0.375 158104|0.34722 158105|0.44444 158106|0.5 158107|0.23611 158108|0.45833 158109|0.52778 158110|0.58333 158111|0.63889 158112|0.375 158113|0.44444 158114|0.29167 158115|0.63889 158116|0.73611 158117|0.44444 158118|0.59722 158119|0.5 158120|0.30556 158121|0.25 158122|0.59722 158123|0.75 158124|0.29167 158125|0.72222 158126|0.69444 158127|0.56944 158128|0.5 158129|0.26389 158130|0.375 158131|0.59722 158132|0.59722 158133|0.45833 158134|0.52778 158135|0.48611 158136|0.58333 158137|0.58333 158138|0.5 158139|0.375 158140|0.40278 158141|0.73611 158142|0.55556 158143|0.65278 158144|0.58333 158145|0.5 158146|0.30556 158147|0.43056 158148|0.34722 158149|0.76389 158150|0.63889 158151|0.86111 158152|0.72222 158153|0.54167 158154|0.375 158155|0.41667 158156|0.5 158157|0.55556 158158|0.68056 158159|0.63889 158160|0.65278 158161|0.44444 158162|0.16667 158163|0.19444 158164|0.20833 158165|0.29167 158166|0.23611 158167|0.19444 158168|0.38889 158169|0.33333 158170|0.36111 158171|0.58333 158172|0.52778 158173|0.61111 158174|0.54167 158175|0.5 158176|0.30556 158177|0.45833 158178|0.5 158179|0.26389 158180|0.5 158181|0.5 158182|0.5 158183|0.25 158184|0.56944 158185|0.23611 158186|0.19444 158187|0.41667 158188|0.31944 158189|0.5 158190|0.5 158191|0.5 158192|0.27778 158193|0.31944 158194|0.5 158195|0.38889 158196|0.43056 158197|0.41667 158198|0.38889 158199|0.43056 158200|0.36111 158201|0.5 158202|0.375 158203|0.48611 158204|0.27778 158205|0.52778 158206|0.80556 158207|0.27778 158208|0.52778 158209|0.59722 158210|0.5 158211|0.34722 158212|0.52778 158213|0.41667 158214|0.30556 158215|0.48611 158216|0.5 158217|0.54167 158218|0.65278 158219|0.52778 158220|0.27778 158221|0.5 158222|0.5 158223|0.40278 158224|0.41667 158225|0.5 158226|0.19444 158227|0.36111 158228|0.33333 158229|0.69444 158230|0.44444 158231|0.5 158232|0.33333 158233|0.33333 158234|0.55556 158235|0.38889 158236|0.31944 158237|0.27778 158238|0.72222 158239|0.47222 158240|0.61111 158241|0.70833 158242|0.44444 158243|0.29167 158244|0.20833 158245|0.26389 158246|0.61111 158247|0.55556 158248|0.30556 158249|0.43056 158250|0.40278 158251|0.31944 158252|0.72222 158253|0.79167 158254|0.58333 158255|0.29167 158256|0.23611 158257|0.48611 158258|0.43056 158259|0.375 158260|0.31944 158261|0.61111 158262|0.72222 158263|0.79167 158264|0.65278 158265|0.66667 158266|0.68056 158267|0.52778 158268|0.63889 158269|0.45833 158270|0.55556 158271|0.56944 158272|0.56944 158273|0.44444 158274|0.55556 158275|0.5 158276|0.47222 158277|0.5 158278|0.51389 158279|0.65278 158280|0.16667 158281|0.29167 158282|0.41667 158283|0.48611 158284|0.76389 158285|0.65278 158286|0.81944 158287|0.875 158288|0.55556 158289|0.81944 158290|0.33333 158291|0.47222 158292|0.69444 158293|0.55556 158294|0.70833 158295|0.61111 158296|0.63889 158297|0.51389 158298|0.45833 158299|0.27778 158300|0.5 158301|0.61111 158302|0.72222 158303|0.86111 158304|0.61111 158305|0.72222 158306|0.5 158307|0.5 158308|0.61111 158309|0.33333 158310|0.25 158311|0.38889 158312|0.44444 158313|0.52778 158314|0.58333 158315|0.48611 158316|0.33333 158317|0.5 158318|0.20833 158319|0.54167 158320|0.27778 158321|0.70833 158322|0.58333 158323|0.5 158324|0.5 158325|0.5 158326|0.5 158327|0.48611 158328|0.66667 158329|0.30556 158330|0.56944 158331|0.68056 158332|0.625 158333|0.66667 158334|0.51389 158335|0.48611 158336|0.27778 158337|0.5 158338|0.51389 158339|0.5 158340|0.54167 158341|0.5 158342|0.625 158343|0.31944 158344|0.44444 158345|0.25 158346|0.25 158347|0.51389 158348|0.47222 158349|0.43056 158350|0.5 158351|0.51389 158352|0.70833 158353|0.86111 158354|0.25 158355|0.31944 158356|0.44444 158357|0.5 158358|0.33333 158359|0.31944 158360|0.22222 158361|0.55556 158362|0.45833 158363|0.66667 158364|0.83333 158365|0.69444 158366|0.66667 158367|0.86111 158368|0.52778 158369|0.5 158370|0.25 158371|0.44444 158372|0.44444 158373|0.375 158374|0.45833 158375|0.51389 158376|0.33333 158377|0.52778 158378|0.52778 158379|0.20833 158380|0.5 158381|0.375 158382|0.29167 158383|0.5 158384|0.40278 158385|0.25 158386|0.56944 158387|0.51389 158388|0.5 158389|0.44444 158390|0.54167 158391|0.51389 158392|0.44444 158393|0.41667 158394|0.48611 158395|0.22222 158396|0.5 158397|0.43056 158398|0.5 158399|0.5 158400|0.5 158401|0.5 158402|0.52778 158403|0.52778 158404|0.625 158405|0.51389 158406|0.5 158407|0.52778 158408|0.59722 158409|0.5 158410|0.38889 158411|0.33333 158412|0.5 158413|0.45833 158414|0.5 158415|0.44444 158416|0.47222 158417|0.5 158418|0.33333 158419|0.41667 158420|0.625 158421|0.5 158422|0.54167 158423|0.33333 158424|0.26389 158425|0.5 158426|0.38889 158427|0.375 158428|0.5 158429|0.15278 158430|0.34722 158431|0.5 158432|0.29167 158433|0.41667 158434|0.30556 158435|0.33333 158436|0.75 158437|0.47222 158438|0.58333 158439|0.44444 158440|0.55556 158441|0.52778 158442|0.16667 158443|0.29167 158444|0.5 158445|0.5 158446|0.63889 158447|0.55556 158448|0.40278 158449|0.45833 158450|0.48611 158451|0.44444 158452|0.47222 158453|0.41667 158454|0.5 158455|0.59722 158456|0.61111 158457|0.375 158458|0.36111 158459|0.52778 158460|0.51389 158461|0.41667 158462|0.30556 158463|0.41667 158464|0.5 158465|0.30556 158466|0.55556 158467|0.41667 158468|0.25 158469|0.25 158470|0.11111 158471|0.58333 158472|0.51389 158473|0.33333 158474|0.40278 158475|0.5 158476|0.375 158477|0.48611 158478|0.30556 158479|0.48611 158480|0.34722 158481|0.44444 158482|0.44444 158483|0.48611 158484|0.41667 158485|0.47222 158486|0.5 158487|0.38889 158488|0.43056 158489|0.5 158490|0.5 158491|0.5 158492|0.5 158493|0.41667 158494|0.51389 158495|0.48611 158496|0.26389 158497|0.20833 158498|0.5 158499|0.5 158500|0.52778 158501|0.45833 158502|0.52778 158503|0.40278 158504|0.52778 158505|0.375 158506|0.18056 158507|0.38889 158508|0.5 158509|0.43056 158510|0.5 158511|0.22222 158512|0.47222 158513|0.56944 158514|0.48611 158515|0.5 158516|0.38889 158517|0.5 158518|0.51389 158519|0.23611 158520|0.5 158521|0.5 158522|0.44444 158523|0.44444 158524|0.55556 158525|0.5 158526|0.16667 158527|0.5 158528|0.5 158529|0.5 158530|0.61111 158531|0.51389 158532|0.61111 158533|0.33333 158534|0.51389 158535|0.5 158536|0.5 158537|0.54167 158538|0.38889 158539|0.52778 158540|0.5 158541|0.55556 158542|0.26389 158543|0.54167 158544|0.61111 158545|0.5 158546|0.5 158547|0.5 158548|0.27778 158549|0.58333 158550|0.61111 158551|0.30556 158552|0.43056 158553|0.40278 158554|0.44444 158555|0.16667 158556|0.65278 158557|0.59722 158558|0.5 158559|0.5 158560|0.48611 158561|0.55556 158562|0.5 158563|0.625 158564|0.61111 158565|0.44444 158566|0.23611 158567|0.5 158568|0.5 158569|0.11111 158570|0.54167 158571|0.66667 158572|0.58333 158573|0.5 158574|0.51389 158575|0.44444 158576|0.38889 158577|0.47222 158578|0.41667 158579|0.5 158580|0.5 158581|0.52778 158582|0.55556 158583|0.5 158584|0.22222 158585|0.18056 158586|0.19444 158587|0.38889 158588|0.30556 158589|0.29167 158590|0.625 158591|0.45833 158592|0.34722 158593|0.69444 158594|0.44444 158595|0.5 158596|0.47222 158597|0.36111 158598|0.29167 158599|0.44444 158600|0.41667 158601|0.44444 158602|0.375 158603|0.52778 158604|0.33333 158605|0.625 158606|0.25 158607|0.65278 158608|0.041667 158609|0.73611 158610|0.41667 158611|0.5 158612|0.55556 158613|0.5 158614|0.72222 158615|0.5 158616|0.41667 158617|0.5 158618|0.45833 158619|0.5 158620|0.5 158621|0.56944 158622|0.66667 158623|0.27778 158624|0.22222 158625|0.30556 158626|0.16667 158627|0.33333 158628|0.27778 158629|0.44444 158630|0.25 158631|0.375 158632|0.22222 158633|0.59722 158634|0.5 158635|0.44444 158636|0.45833 158637|0.52778 158638|0.625 158639|0.55556 158640|0.69444 158641|0.81944 158642|0.5 158643|0.625 158644|0.80556 158645|0.5 158646|0.58333 158647|0.23611 158648|0.43056 158649|0.27778 158650|0.375 158651|0.23611 158652|0.58333 158653|0.5 158654|0.25 158655|0.41667 158656|0.52778 158657|0.5 158658|0.33333 158659|0.61111 158660|0.5 158661|0.84722 158662|0.47222 158663|0.58333 158664|0.47222 158665|0.375 158666|0.36111 158667|0.34722 158668|0.22222 158669|0.16667 158670|0.13889 158671|0.43056 158672|0.52778 158673|0.45833 158674|0.22222 158675|0.40278 158676|0.19444 158677|0.55556 158678|0.23611 158679|0.44444 158680|0.375 158681|0.80556 158682|0.54167 158683|0.375 158684|0.55556 158685|0.44444 158686|0.47222 158687|0.5 158688|0.47222 158689|0.47222 158690|0.51389 158691|0.59722 158692|0.27778 158693|0.70833 158694|0.41667 158695|0.63889 158696|0.55556 158697|0.36111 158698|0.5 158699|0.5 158700|0.51389 158701|0.51389 158702|0.013889 158703|0.027778 158704|0.45833 158705|0.625 158706|0.38889 158707|0.22222 158708|0.11111 158709|0.38889 158710|0.19444 158711|0.22222 158712|0.61111 158713|0.625 158714|0.5 158715|0.45833 158716|0.5 158717|0.5 158718|0.75 158719|0.59722 158720|0.5 158721|0.5 158722|0.375 158723|0.5 158724|0.51389 158725|0.47222 158726|0.5 158727|0.51389 158728|0.43056 158729|0.25 158730|0.26389 158731|0.38889 158732|0.38889 158733|0.38889 158734|0.38889 158735|0.29167 158736|0.055556 158737|0.40278 158738|0.23611 158739|0.27778 158740|0.30556 158741|0.29167 158742|0.26389 158743|0.27778 158744|0.38889 158745|0.25 158746|0.27778 158747|0.16667 158748|0.27778 158749|0.34722 158750|0.33333 158751|0.51389 158752|0.26389 158753|0.16667 158754|0.27778 158755|0.22222 158756|0.22222 158757|0.40278 158758|0.20833 158759|0.25 158760|0.26389 158761|0.29167 158762|0.25 158763|0.15278 158764|0.41667 158765|0.15278 158766|0.29167 158767|0.47222 158768|0.48611 158769|0.52778 158770|0.43056 158771|0.33333 158772|0.40278 158773|0.29167 158774|0.47222 158775|0.069444 158776|0.625 158777|0.51389 158778|0.33333 158779|0.27778 158780|0.41667 158781|0.27778 158782|0.26389 158783|0.5 158784|0.36111 158785|0.22222 158786|0.33333 158787|0.61111 158788|0.16667 158789|0.16667 158790|0.30556 158791|0.25 158792|0.34722 158793|0.11111 158794|0.125 158795|0.23611 158796|0.125 158797|0.72222 158798|0.20833 158799|0.375 158800|0.27778 158801|0.20833 158802|0.20833 158803|0.29167 158804|0.027778 158805|0.13889 158806|0.25 158807|0.41667 158808|0.375 158809|0.33333 158810|0.40278 158811|0.27778 158812|0.48611 158813|0.27778 158814|0.30556 158815|0.5 158816|0.75 158817|0.30556 158818|0.33333 158819|0.5 158820|0.5 158821|0.33333 158822|0.38889 158823|0.54167 158824|0.51389 158825|0.44444 158826|0.65278 158827|0.38889 158828|0.55556 158829|0.75 158830|0.52778 158831|0.5 158832|0.77778 158833|0.63889 158834|0.81944 158835|0.77778 158836|0.76389 158837|0.88889 158838|0.90278 158839|0.55556 158840|0.58333 158841|0.63889 158842|0.5 158843|0.51389 158844|0.45833 158845|0.38889 158846|0.56944 158847|0.5 158848|0.5 158849|0.36111 158850|0.22222 158851|0.33333 158852|0.44444 158853|0.125 158854|0.65278 158855|0.63889 158856|0.44444 158857|0.27778 158858|0.5 158859|0.625 158860|0.44444 158861|0.54167 158862|0.65278 158863|0.31944 158864|0.33333 158865|0.29167 158866|0.18056 158867|0.26389 158868|0.26389 158869|0.5 158870|0.55556 158871|0.27778 158872|0.51389 158873|0.5 158874|0.77778 158875|0.40278 158876|0.625 158877|0.84722 158878|0.5 158879|0.48611 158880|0.5 158881|0.33333 158882|0.47222 158883|0.44444 158884|0.5 158885|0.48611 158886|0.61111 158887|0.54167 158888|0.5 158889|0.16667 158890|0.5 158891|0.45833 158892|0.5 158893|0.56944 158894|0.40278 158895|0.5 158896|0.5 158897|0.51389 158898|0.5 158899|0.5 158900|0.5 158901|0.5 158902|0.5 158903|0.5 158904|0.51389 158905|0.51389 158906|0.47222 158907|0.34722 158908|0.44444 158909|0.44444 158910|0.29167 158911|0.44444 158912|0.23611 158913|0.52778 158914|0.19444 158915|0.23611 158916|0.33333 158917|0.375 158918|0.5 158919|0.40278 158920|0.30556 158921|0.20833 158922|0.36111 158923|0.45833 158924|0.61111 158925|0.54167 158926|0.36111 158927|0.54167 158928|0.75 158929|0.5 158930|0.38889 158931|0.43056 158932|0.375 158933|0.5 158934|0.79167 158935|0.45833 158936|0.61111 158937|0.44444 158938|0.40278 158939|0.40278 158940|0.33333 158941|0.44444 158942|0.5 158943|0.25 158944|0.27778 158945|0.30556 158946|0.20833 158947|0.30556 158948|0.30556 158949|0.27778 158950|0.33333 158951|0.51389 158952|0.41667 158953|0.18056 158954|0.125 158955|0.30556 158956|0.43056 158957|0.15278 158958|0.20833 158959|0.29167 158960|0.375 158961|0.30556 158962|0.30556 158963|0.33333 158964|0.30556 158965|0.23611 158966|0.77778 158967|0.30556 158968|0.26389 158969|0.375 158970|0.22222 158971|0.55556 158972|0.27778 158973|0.375 158974|0.27778 158975|0.27778 158976|0.23611 158977|0.15278 158978|0.29167 158979|0.375 158980|0.5 158981|0.25 158982|0.5 158983|0.5 158984|0.36111 158985|0.30556 158986|0.375 158987|0.34722 158988|0.33333 158989|0.31944 158990|0.44444 158991|0.31944 158992|0.22222 158993|0.19444 158994|0.13889 158995|0.055556 158996|0.54167 158997|0.59722 158998|0.30556 158999|0.30556 159000|0.5 159001|0.61111 159002|0.5 159003|0.54167 159004|0.61111 159005|0.40278 159006|0.45833 159007|0.19444 159008|0.63889 159009|0.55556 159010|0.52778 159011|0.23611 159012|0.27778 159013|0.43056 159014|0.33333 159015|0.40278 159016|0.5 159017|0.56944 159018|0.54167 159019|0.47222 159020|0.56944 159021|0.5 159022|0.38889 159023|0.5 159024|0.52778 159025|0.44444 159026|0.41667 159027|0.55556 159028|0.43056 159029|0.375 159030|0.40278 159031|0.31944 159032|0.47222 159033|0.40278 159034|0.375 159035|0.59722 159036|0.41667 159037|0.34722 159038|0.5 159039|0.5 159040|0.48611 159041|0.51389 159042|0.5 159043|0.44444 159044|0.52778 159045|0.58333 159046|0.5 159047|0.30556 159048|0.097222 159049|0.5 159050|0.5 159051|0.43056 159052|0.5 159053|0.55556 159054|0.25 159055|0.5 159056|0.5 159057|0.5 159058|0.51389 159059|0.47222 159060|0.43056 159061|0.5 159062|0.083333 159063|0.26389 159064|0.5 159065|0.5 159066|0.54167 159067|0.43056 159068|0.5 159069|0.5 159070|0.38889 159071|0.45833 159072|0.5 159073|0.25 159074|0.52778 159075|0.33333 159076|0.58333 159077|0.45833 159078|0.45833 159079|0.45833 159080|0.5 159081|0.44444 159082|0.51389 159083|0.5 159084|0.5 159085|0.40278 159086|0.63889 159087|0.51389 159088|0.40278 159089|0.52778 159090|0.34722 159091|0.5 159092|0.52778 159093|0.5 159094|0.5 159095|0.5 159096|0.61111 159097|0.625 159098|0.61111 159099|0.38889 159100|0.55556 159101|0.5 159102|0.59722 159103|0.48611 159104|0.33333 159105|0.22222 159106|0.23611 159107|0.55556 159108|0.11111 159109|0.56944 159110|0.45833 159111|0.5 159112|0.13889 159113|0.5 159114|0.5 159115|0.5 159116|0.20833 159117|0.5 159118|0.5 159119|0.5 159120|0.52778 159121|0.20833 159122|0.22222 159123|0.13889 159124|0.54167 159125|0.27778 159126|0.43056 159127|0.41667 159128|0.5 159129|0.5 159130|0.5 159131|0.52778 159132|0.44444 159133|0.45833 159134|0.55556 159135|0.56944 159136|0.15278 159137|0.54167 159138|0.55556 159139|0.33333 159140|0.55556 159141|0.45833 159142|0.26389 159143|0.25 159144|0.44444 159145|0.38889 159146|0.5 159147|0.38889 159148|0.23611 159149|0.47222 159150|0.52778 159151|0.43056 159152|0.48611 159153|0.48611 159154|0.44444 159155|0.51389 159156|0.125 159157|0.58333 159158|0.52778 159159|0.52778 159160|0.51389 159161|0.55556 159162|0.55556 159163|0.22222 159164|0.5 159165|0.34722 159166|0.51389 159167|0.5 159168|0.70833 159169|0.61111 159170|0.45833 159171|0.52778 159172|0.59722 159173|0.73611 159174|0.5 159175|0.52778 159176|0.48611 159177|0.5 159178|0.5 159179|0.45833 159180|0.5 159181|0.5 159182|0.68056 159183|0.5 159184|0.52778 159185|0.5 159186|0.54167 159187|0.5 159188|0.48611 159189|0.40278 159190|0.44444 159191|0.55556 159192|0.5 159193|0.5 159194|0.48611 159195|0.5 159196|0.55556 159197|0.65278 159198|0.54167 159199|0.72222 159200|0.81944 159201|0.59722 159202|0.72222 159203|0.45833 159204|0.5 159205|0.5 159206|0.33333 159207|0.38889 159208|0.30556 159209|0.5 159210|0.5 159211|0.38889 159212|0.45833 159213|0.20833 159214|0.25 159215|0.33333 159216|0.13889 159217|0.44444 159218|0.36111 159219|0.44444 159220|0.41667 159221|0.5 159222|0.20833 159223|0.47222 159224|0.5 159225|0.47222 159226|0.51389 159227|0.54167 159228|0.66667 159229|0.59722 159230|0.51389 159231|0.58333 159232|0.29167 159233|0.5 159234|0.45833 159235|0.61111 159236|0.5 159237|0.5 159238|0.20833 159239|0.52778 159240|0.5 159241|0.5 159242|0.40278 159243|0.26389 159244|0.56944 159245|0.40278 159246|0.40278 159247|0.25 159248|0.25 159249|0.22222 159250|0.40278 159251|0.25 159252|0.5 159253|0.41667 159254|0.29167 159255|0.5 159256|0.54167 159257|0.23611 159258|0.29167 159259|0.48611 159260|0.44444 159261|0.51389 159262|0.18056 159263|0.41667 159264|0.5 159265|0.5 159266|0.69444 159267|0.63889 159268|0.48611 159269|0.65278 159270|0.43056 159271|0.40278 159272|0.44444 159273|0.51389 159274|0.30556 159275|0.22222 159276|0.40278 159277|0.5 159278|0.47222 159279|0.5 159280|0.55556 159281|0.5 159282|0.59722 159283|0.5 159284|0.5 159285|0.38889 159286|0.58333 159287|0.30556 159288|0.22222 159289|0.23611 159290|0.11111 159291|0.29167 159292|0.5 159293|0.5 159294|0.30556 159295|0.45833 159296|0.54167 159297|0.19444 159298|0.22222 159299|0.5 159300|0.61111 159301|0.63889 159302|0.61111 159303|0.59722 159304|0.38889 159305|0.52778 159306|0.38889 159307|0.45833 159308|0.36111 159309|0.33333 159310|0.5 159311|0.59722 159312|0.54167 159313|0.31944 159314|0.5 159315|0.45833 159316|0.36111 159317|0.44444 159318|0.34722 159319|0.40278 159320|0.5 159321|0.5 159322|0.36111 159323|0.59722 159324|0.5 159325|0.5 159326|0.5 159327|0.54167 159328|0.55556 159329|0.31944 159330|0.5 159331|0.55556 159332|0.55556 159333|0.58333 159334|0.5 159335|0.55556 159336|0.48611 159337|0.44444 159338|0.5 159339|0.54167 159340|0.51389 159341|0.5 159342|0.43056 159343|0.34722 159344|0.5 159345|0.43056 159346|0.375 159347|0.5 159348|0.51389 159349|0.5 159350|0.55556 159351|0.5 159352|0.625 159353|0.23611 159354|0.65278 159355|0.44444 159356|0.5 159357|0.44444 159358|0.58333 159359|0.56944 159360|0.5 159361|0.51389 159362|0.5 159363|0.34722 159364|0.27778 159365|0.19444 159366|0.5 159367|0.83333 159368|0.36111 159369|0.31944 159370|0.22222 159371|0.72222 159372|0.29167 159373|0.5 159374|0.77778 159375|0.47222 159376|0.44444 159377|0.43056 159378|0.20833 159379|0.22222 159380|0.27778 159381|0.5 159382|0.5 159383|0.5 159384|0.52778 159385|0.5 159386|0.5 159387|0.5 159388|0.5 159389|0.5 159390|0.29167 159391|0.55556 159392|0.5 159393|0.38889 159394|0.40278 159395|0.5 159396|0.5 159397|0.38889 159398|0.38889 159399|0.38889 159400|0.33333 159401|0.26389 159402|0.47222 159403|0.18056 159404|0.52778 159405|0.5 159406|0.66667 159407|0.47222 159408|0.5 159409|0.55556 159410|0.65278 159411|0.5 159412|0.81944 159413|0.5 159414|0.86111 159415|0.47222 159416|0.5 159417|0.48611 159418|0.66667 159419|0.625 159420|0.34722 159421|0.44444 159422|0.43056 159423|0.56944 159424|0.33333 159425|0.48611 159426|0.58333 159427|0.38889 159428|0.5 159429|0.5 159430|0.77778 159431|0.52778 159432|0.5 159433|0.48611 159434|0.20833 159435|0.5 159436|0.56944 159437|0.47222 159438|0.70833 159439|0.58333 159440|0.40278 159441|0.69444 159442|0.29167 159443|0.5 159444|0.44444 159445|0.5 159446|0.59722 159447|0.26389 159448|0.5 159449|0.48611 159450|0.5 159451|0.5 159452|0.5 159453|0.65278 159454|0.45833 159455|0.59722 159456|0.69444 159457|0.43056 159458|0.63889 159459|0.52778 159460|0.51389 159461|0.5 159462|0.5 159463|0.58333 159464|0.48611 159465|0.51389 159466|0.19444 159467|0.77778 159468|0.41667 159469|0.55556 159470|0.52778 159471|0.5 159472|0.5 159473|0.29167 159474|0.52778 159475|0.30556 159476|0.5 159477|0.5 159478|0.5 159479|0.52778 159480|0.51389 159481|0.69444 159482|0.55556 159483|0.61111 159484|0.44444 159485|0.47222 159486|0.5 159487|0.48611 159488|0.75 159489|0.40278 159490|0.54167 159491|0.44444 159492|0.19444 159493|0.5 159494|0.5 159495|0.5 159496|0.5 159497|0.47222 159498|0.5 159499|0.5 159500|0.43056 159501|0.5 159502|0.44444 159503|0.36111 159504|0.55556 159505|0.5 159506|0.5 159507|0.5 159508|0.5 159509|0.34722 159510|0.51389 159511|0.51389 159512|0.22222 159513|0.5 159514|0.375 159515|0.20833 159516|0.44444 159517|0.47222 159518|0.44444 159519|0.47222 159520|0.55556 159521|0.40278 159522|0.47222 159523|0.43056 159524|0.61111 159525|0.69444 159526|0.5 159527|0.56944 159528|0.43056 159529|0.5 159530|0.5 159531|0.56944 159532|0.5 159533|0.375 159534|0.56944 159535|0.5 159536|0.44444 159537|0.11111 159538|0.51389 159539|0.59722 159540|0.52778 159541|0.38889 159542|0.44444 159543|0.27778 159544|0.41667 159545|0.34722 159546|0.30556 159547|0.19444 159548|0.33333 159549|0.22222 159550|0.38889 159551|0.56944 159552|0.23611 159553|0.23611 159554|0.47222 159555|0.23611 159556|0.18056 159557|0.36111 159558|0.22222 159559|0.23611 159560|0.44444 159561|0.5 159562|0.43056 159563|0.48611 159564|0.5 159565|0.5 159566|0.16667 159567|0.25 159568|0.083333 159569|0.31944 159570|0.25 159571|0.44444 159572|0.44444 159573|0.31944 159574|0.66667 159575|0.48611 159576|0.26389 159577|0.26389 159578|0.45833 159579|0.5 159580|0.48611 159581|0.55556 159582|0.5 159583|0.26389 159584|0.61111 159585|0.20833 159586|0.56944 159587|0.5 159588|0.5 159589|0.40278 159590|0.375 159591|0.44444 159592|0.375 159593|0.33333 159594|0.41667 159595|0.33333 159596|0.48611 159597|0.40278 159598|0.26389 159599|0.5 159600|0.36111 159601|0.5 159602|0.5 159603|0.19444 159604|0.20833 159605|0.5 159606|0.63889 159607|0.41667 159608|0.19444 159609|0.23611 159610|0.375 159611|0.56944 159612|0.23611 159613|0.33333 159614|0.45833 159615|0.41667 159616|0.54167 159617|0.41667 159618|0.27778 159619|0.18056 159620|0.15278 159621|0.29167 159622|0.33333 159623|0.5 159624|0.27778 159625|0.5 159626|0.51389 159627|0.56944 159628|0.44444 159629|0.5 159630|0.5 159631|0.45833 159632|0.52778 159633|0.45833 159634|0.38889 159635|0.59722 159636|0.44444 159637|0.52778 159638|0.48611 159639|0.5 159640|0.43056 159641|0.375 159642|0.48611 159643|0.38889 159644|0.58333 159645|0.55556 159646|0.61111 159647|0.5 159648|0.38889 159649|0.51389 159650|0.44444 159651|0.56944 159652|0.5 159653|0.5 159654|0.5 159655|0.5 159656|0.58333 159657|0.27778 159658|0.55556 159659|0.59722 159660|0.52778 159661|0.58333 159662|0.18056 159663|0.375 159664|0.30556 159665|0.13889 159666|0.34722 159667|0.55556 159668|0.38889 159669|0.375 159670|0.48611 159671|0.44444 159672|0.45833 159673|0.5 159674|0.34722 159675|0.18056 159676|0.5 159677|0.52778 159678|0.5 159679|0.55556 159680|0.61111 159681|0.5 159682|0.44444 159683|0.55556 159684|0.51389 159685|0.5 159686|0.45833 159687|0.5 159688|0.54167 159689|0.51389 159690|0.5 159691|0.5 159692|0.40278 159693|0.27778 159694|0.41667 159695|0.5 159696|0.375 159697|0.47222 159698|0.59722 159699|0.5 159700|0.54167 159701|0.5 159702|0.44444 159703|0.38889 159704|0.51389 159705|0.44444 159706|0.61111 159707|0.22222 159708|0.43056 159709|0.19444 159710|0.5 159711|0.30556 159712|0.48611 159713|0.5 159714|0.45833 159715|0.63889 159716|0.69444 159717|0.61111 159718|0.43056 159719|0.27778 159720|0.45833 159721|0.5 159722|0.5 159723|0.48611 159724|0.36111 159725|0.55556 159726|0.5 159727|0.55556 159728|0.61111 159729|0.73611 159730|0.29167 159731|0.5 159732|0.5 159733|0.25 159734|0.44444 159735|0.45833 159736|0.61111 159737|0.26389 159738|0.5 159739|0.5 159740|0.44444 159741|0.51389 159742|0.55556 159743|0.29167 159744|0.44444 159745|0.48611 159746|0.38889 159747|0.5 159748|0.5 159749|0.22222 159750|0.34722 159751|0.5 159752|0.5 159753|0.51389 159754|0.25 159755|0.61111 159756|0.5 159757|0.5 159758|0.5 159759|0.51389 159760|0.5 159761|0.5 159762|0.15278 159763|0.5 159764|0.31944 159765|0.34722 159766|0.40278 159767|0.20833 159768|0.47222 159769|0.5 159770|0.375 159771|0.59722 159772|0.375 159773|0.20833 159774|0.5 159775|0.5 159776|0.5 159777|0.44444 159778|0.56944 159779|0.16667 159780|0.33333 159781|0.16667 159782|0.5 159783|0.5 159784|0.5 159785|0.5 159786|0.5 159787|0.33333 159788|0.55556 159789|0.66667 159790|0.44444 159791|0.38889 159792|0.54167 159793|0.5 159794|0.54167 159795|0.625 159796|0.54167 159797|0.20833 159798|0.76389 159799|0.16667 159800|0.083333 159801|0.58333 159802|0.30556 159803|0.29167 159804|0.45833 159805|0.51389 159806|0.16667 159807|0.34722 159808|0.55556 159809|0.58333 159810|0.51389 159811|0.45833 159812|0.5 159813|0.79167 159814|0.5 159815|0.5 159816|0.55556 159817|0.77778 159818|0.58333 159819|0.76389 159820|0.61111 159821|0.73611 159822|0.40278 159823|0.70833 159824|0.59722 159825|0.75 159826|0.38889 159827|0.33333 159828|0.45833 159829|0.52778 159830|0.38889 159831|0.68056 159832|0.68056 159833|0.66667 159834|0.70833 159835|0.66667 159836|0.77778 159837|0.72222 159838|0.76389 159839|0.51389 159840|0.51389 159841|0.63889 159842|0.65278 159843|0.66667 159844|0.22222 159845|0.59722 159846|0.66667 159847|0.73611 159848|0.38889 159849|0.61111 159850|0.47222 159851|0.19444 159852|0.22222 159853|0.16667 159854|0.34722 159855|0.41667 159856|0.73611 159857|0.48611 159858|0.72222 159859|0.40278 159860|0.5 159861|0.5 159862|0.5 159863|0.48611 159864|0.20833 159865|0.52778 159866|0.66667 159867|0.23611 159868|0.27778 159869|0.38889 159870|0.5 159871|0.5 159872|0.5 159873|0.5 159874|0.48611 159875|0.48611 159876|0.5 159877|0.44444 159878|0.77778 159879|0.54167 159880|0.41667 159881|0.44444 159882|0.70833 159883|0.63889 159884|0.5 159885|0.43056 159886|0.47222 159887|0.47222 159888|0.875 159889|0.47222 159890|0.45833 159891|0.40278 159892|0.66667 159893|0.5 159894|0.5 159895|0.40278 159896|0.625 159897|0.36111 159898|0.43056 159899|0.70833 159900|0.20833 159901|0.33333 159902|0.51389 159903|0.5 159904|0.5 159905|0.5 159906|0.5 159907|0.33333 159908|0.45833 159909|0.5 159910|0.48611 159911|0.51389 159912|0.26389 159913|0.5 159914|0.34722 159915|0.56944 159916|0.5 159917|0.45833 159918|0.44444 159919|0.44444 159920|0.52778 159921|0.52778 159922|0.51389 159923|0.23611 159924|0.41667 159925|0.25 159926|0.33333 159927|0.61111 159928|0.80556 159929|0.375 159930|0.5 159931|0.58333 159932|0.23611 159933|0.23611 159934|0.43056 159935|0.26389 159936|0.31944 159937|0.36111 159938|0.33333 159939|0.36111 159940|0.33333 159941|0.55556 159942|0.66667 159943|0.5 159944|0.27778 159945|0.61111 159946|0.48611 159947|0.5 159948|0.5 159949|0.38889 159950|0.43056 159951|0.55556 159952|0.5 159953|0.20833 159954|0.69444 159955|0.80556 159956|0.73611 159957|0.75 159958|0.65278 159959|0.56944 159960|0.56944 159961|0.5 159962|0.56944 159963|0.68056 159964|0.70833 159965|0.63889 159966|0.66667 159967|0.68056 159968|0.58333 159969|0.5 159970|0.44444 159971|0.33333 159972|0.30556 159973|0.5 159974|0.47222 159975|0.70833 159976|0.5 159977|0.48611 159978|0.5 159979|0.44444 159980|0.5 159981|0.52778 159982|0.72222 159983|0.40278 159984|0.48611 159985|0.63889 159986|0.33333 159987|0.5 159988|0.5 159989|0.31944 159990|0.33333 159991|0.55556 159992|0.5 159993|0.41667 159994|0.375 159995|0.5 159996|0.51389 159997|0.5 159998|0.55556 159999|0.19444 160000|0.25 160001|0.45833 160002|0.45833 160003|0.55556 160004|0.41667 160005|0.5 160006|0.625 160007|0.43056 160008|0.43056 160009|0.48611 160010|0.26389 160011|0.29167 160012|0.38889 160013|0.59722 160014|0.5 160015|0.44444 160016|0.5 160017|0.5 160018|0.5 160019|0.5 160020|0.41667 160021|0.72222 160022|0.38889 160023|0.23611 160024|0.20833 160025|0.29167 160026|0.38889 160027|0.18056 160028|0.40278 160029|0.45833 160030|0.34722 160031|0.66667 160032|0.19444 160033|0.15278 160034|0.20833 160035|0.5 160036|0.34722 160037|0.40278 160038|0.51389 160039|0.41667 160040|0.47222 160041|0.19444 160042|0.58333 160043|0.47222 160044|0.38889 160045|0.61111 160046|0.43056 160047|0.58333 160048|0.31944 160049|0.23611 160050|0.61111 160051|0.56944 160052|0.44444 160053|0.5 160054|0.31944 160055|0.34722 160056|0.375 160057|0.19444 160058|0.5 160059|0.38889 160060|0.27778 160061|0.31944 160062|0.65278 160063|0.38889 160064|0.38889 160065|0.65278 160066|0.375 160067|0.48611 160068|0.48611 160069|0.47222 160070|0.31944 160071|0.48611 160072|0.70833 160073|0.58333 160074|0.65278 160075|0.41667 160076|0.63889 160077|0.33333 160078|0.5 160079|0.5 160080|0.5 160081|0.68056 160082|0.69444 160083|0.5 160084|0.38889 160085|0.54167 160086|0.5 160087|0.43056 160088|0.80556 160089|0.83333 160090|0.56944 160091|0.43056 160092|0.52778 160093|0.52778 160094|0.5 160095|0.5 160096|0.5 160097|0.5 160098|0.44444 160099|0.22222 160100|0.44444 160101|0.40278 160102|0.5 160103|0.44444 160104|0.5 160105|0.63889 160106|0.52778 160107|0.55556 160108|0.41667 160109|0.22222 160110|0.5 160111|0.55556 160112|0.45833 160113|0.55556 160114|0.59722 160115|0.25 160116|0.20833 160117|0.5 160118|0.26389 160119|0.19444 160120|0.5 160121|0.33333 160122|0.61111 160123|0.27778 160124|0.31944 160125|0.5 160126|0.23611 160127|0.27778 160128|0.34722 160129|0.5 160130|0.44444 160131|0.45833 160132|0.47222 160133|0.56944 160134|0.31944 160135|0.5 160136|0.51389 160137|0.44444 160138|0.29167 160139|0.52778 160140|0.5 160141|0.5 160142|0.65278 160143|0.29167 160144|0.40278 160145|0.29167 160146|0.083333 160147|0.44444 160148|0.5 160149|0.51389 160150|0.40278 160151|0.31944 160152|0.30556 160153|0.34722 160154|0.38889 160155|0.41667 160156|0.69444 160157|0.625 160158|0.5 160159|0.52778 160160|0.51389 160161|0.45833 160162|0.48611 160163|0.5 160164|0.625 160165|0.65278 160166|0.51389 160167|0.5 160168|0.40278 160169|0.5 160170|0.44444 160171|0.23611 160172|0.38889 160173|0.44444 160174|0.5 160175|0.43056 160176|0.5 160177|0.625 160178|0.65278 160179|0.5 160180|0.59722 160181|0.29167 160182|0.5 160183|0.58333 160184|0.55556 160185|0.5 160186|0.47222 160187|0.5 160188|0.15278 160189|0.45833 160190|0.48611 160191|0.43056 160192|0.73611 160193|0.15278 160194|0.125 160195|0.25 160196|0.36111 160197|0.61111 160198|0.52778 160199|0.33333 160200|0.36111 160201|0.5 160202|0.5 160203|0.27778 160204|0.16667 160205|0.55556 160206|0.22222 160207|0.16667 160208|0.23611 160209|0.51389 160210|0.69444 160211|0.5 160212|0.66667 160213|0.51389 160214|0.19444 160215|0.33333 160216|0.41667 160217|0.55556 160218|0.55556 160219|0.33333 160220|0.5 160221|0.5 160222|0.33333 160223|0.55556 160224|0.80556 160225|0.45833 160226|0.43056 160227|0.54167 160228|0.69444 160229|0.73611 160230|0.52778 160231|0.56944 160232|0.5 160233|0.5 160234|0.51389 160235|0.36111 160236|0.15278 160237|0.29167 160238|0.22222 160239|0.33333 160240|0.375 160241|0.81944 160242|0.73611 160243|0.80556 160244|0.69444 160245|0.59722 160246|0.375 160247|0.76389 160248|0.72222 160249|0.27778 160250|0.66667 160251|0.66667 160252|0.625 160253|0.73611 160254|0.48611 160255|0.44444 160256|0.65278 160257|0.625 160258|0.63889 160259|0.625 160260|0.68056 160261|0.625 160262|0.59722 160263|0.66667 160264|0.73611 160265|0.72222 160266|0.58333 160267|0.76389 160268|0.63889 160269|0.72222 160270|0.68056 160271|0.59722 160272|0.65278 160273|0.40278 160274|0.77778 160275|0.59722 160276|0.75 160277|0.55556 160278|0.45833 160279|0.36111 160280|0.5 160281|0.56944 160282|0.22222 160283|0.22222 160284|0.11111 160285|0 160286|0.52778 160287|0.40278 160288|0.45833 160289|0.77778 160290|0.77778 160291|0.47222 160292|0.41667 160293|0.40278 160294|0.5 160295|0.70833 160296|0.72222 160297|0.5 160298|0.48611 160299|0.5 160300|0.5 160301|0.61111 160302|0.79167 160303|0.13889 160304|0.63889 160305|0.5 160306|0.5 160307|0.48611 160308|0.51389 160309|0.45833 160310|0.5 160311|0.38889 160312|0.27778 160313|0.625 160314|0.5 160315|0.19444 160316|0.38889 160317|0.31944 160318|0.52778 160319|0.51389 160320|0.43056 160321|0.52778 160322|0.48611 160323|0.5 160324|0.45833 160325|0.59722 160326|0.44444 160327|0.5 160328|0.34722 160329|0.34722 160330|0.38889 160331|0.73611 160332|0.69444 160333|0.27778 160334|0.77778 160335|0.93056 160336|0.66667 160337|0.66667 160338|0.79167 160339|0.65278 160340|0.77778 160341|0.86111 160342|0.375 160343|0.55556 160344|0.61111 160345|0.65278 160346|0.375 160347|0.38889 160348|0.43056 160349|0.5 160350|0.5 160351|0.5 160352|0.5 160353|0.55556 160354|0.5 160355|0.5 160356|0.19444 160357|0.19444 160358|0.16667 160359|0.33333 160360|0.29167 160361|0.43056 160362|0.38889 160363|0.43056 160364|0.34722 160365|0.36111 160366|0.18056 160367|0.36111 160368|0.125 160369|0.31944 160370|0.5 160371|0.55556 160372|0.63889 160373|0.34722 160374|0.25 160375|0.5 160376|0.36111 160377|0.083333 160378|0.44444 160379|0.45833 160380|0.097222 160381|0.59722 160382|0.40278 160383|0.52778 160384|0.22222 160385|0.77778 160386|0.58333 160387|0.51389 160388|0.22222 160389|0.5 160390|0.48611 160391|0.51389 160392|0.5 160393|0.52778 160394|0.48611 160395|0.59722 160396|0.56944 160397|0.22222 160398|0.22222 160399|0.16667 160400|0.22222 160401|0.26389 160402|0.19444 160403|0.40278 160404|0.40278 160405|0.33333 160406|0.19444 160407|0.23611 160408|0.56944 160409|0.47222 160410|0.47222 160411|0.5 160412|0.55556 160413|0.56944 160414|0.5 160415|0.375 160416|0.55556 160417|0.73611 160418|0.44444 160419|0.5 160420|0.58333 160421|0.5 160422|0.5 160423|0.5 160424|0.43056 160425|0.23611 160426|0.47222 160427|0.31944 160428|0.41667 160429|0.36111 160430|0.47222 160431|0.33333 160432|0.38889 160433|0.5 160434|0.34722 160435|0.5 160436|0.36111 160437|0.27778 160438|0.5 160439|0.48611 160440|0.5 160441|0.44444 160442|0.5 160443|0.5 160444|0.47222 160445|0.54167 160446|0.5 160447|0.61111 160448|0.54167 160449|0.55556 160450|0.33333 160451|0.5 160452|0.5 160453|0.5 160454|0.5 160455|0.48611 160456|0.33333 160457|0.25 160458|0.47222 160459|0.5 160460|0.44444 160461|0.5 160462|0.47222 160463|0.22222 160464|0.27778 160465|0.23611 160466|0.34722 160467|0.55556 160468|0.31944 160469|0.38889 160470|0.5 160471|0.16667 160472|0.5 160473|0.5 160474|0.36111 160475|0.34722 160476|0.29167 160477|0.27778 160478|0.5 160479|0.5 160480|0.34722 160481|0.25 160482|0.33333 160483|0.48611 160484|0.375 160485|0.48611 160486|0.30556 160487|0.5 160488|0.5 160489|0.38889 160490|0.41667 160491|0.5 160492|0.36111 160493|0.52778 160494|0.5 160495|0.47222 160496|0.45833 160497|0.5 160498|0.45833 160499|0.38889 160500|0.27778 160501|0.083333 160502|0.18056 160503|0.52778 160504|0.47222 160505|0.40278 160506|0.19444 160507|0.66667 160508|0.41667 160509|0.54167 160510|0.51389 160511|0.61111 160512|0.75 160513|0.79167 160514|0.23611 160515|0.375 160516|0.56944 160517|0.18056 160518|0.44444 160519|0.33333 160520|0.38889 160521|0.19444 160522|0.34722 160523|0.44444 160524|0.48611 160525|0.083333 160526|0.55556 160527|0.45833 160528|0.52778 160529|0.51389 160530|0.20833 160531|0.18056 160532|0.48611 160533|0.27778 160534|0.5 160535|0.5 160536|0.27778 160537|0.5 160538|0.41667 160539|0.47222 160540|0.27778 160541|0.5 160542|0.31944 160543|0.23611 160544|0.33333 160545|0.38889 160546|0.33333 160547|0.36111 160548|0.33333 160549|0.25 160550|0.43056 160551|0.20833 160552|0.34722 160553|0.36111 160554|0.47222 160555|0.33333 160556|0.19444 160557|0.38889 160558|0.25 160559|0.30556 160560|0.33333 160561|0.375 160562|0.5 160563|0.45833 160564|0.5 160565|0.52778 160566|0.48611 160567|0.43056 160568|0.33333 160569|0.29167 160570|0.56944 160571|0.51389 160572|0.31944 160573|0.11111 160574|0.5 160575|0.29167 160576|0.48611 160577|0.5 160578|0.44444 160579|0.66667 160580|0.43056 160581|0.47222 160582|0.55556 160583|0.5 160584|0.68056 160585|0.77778 160586|0.48611 160587|0.45833 160588|0.30556 160589|0.33333 160590|0.48611 160591|0.38889 160592|0.625 160593|0.5 160594|0.38889 160595|0.45833 160596|0.31944 160597|0.75 160598|0.15278 160599|0.55556 160600|0.66667 160601|0.33333 160602|0.52778 160603|0.56944 160604|0.23611 160605|0.34722 160606|0.79167 160607|0.77778 160608|0.84722 160609|0.69444 160610|0.36111 160611|0.5 160612|0.22222 160613|0.36111 160614|0.29167 160615|0.375 160616|0.68056 160617|0.40278 160618|0.36111 160619|0.48611 160620|0.15278 160621|0.61111 160622|0.47222 160623|0.27778 160624|0.26389 160625|0.38889 160626|0.22222 160627|0.38889 160628|0.38889 160629|0.33333 160630|0.13889 160631|0.56944 160632|0.65278 160633|0.63889 160634|0.69444 160635|0.625 160636|0.68056 160637|0.15278 160638|0.055556 160639|0.72222 160640|0.5 160641|0.36111 160642|0.41667 160643|0.61111 160644|0.27778 160645|0.27778 160646|0.34722 160647|0.34722 160648|0.5 160649|0.61111 160650|0.29167 160651|0.27778 160652|0.61111 160653|0.55556 160654|0.27778 160655|0.47222 160656|0.43056 160657|0.375 160658|0.5 160659|0.5 160660|0.61111 160661|0.59722 160662|0.26389 160663|0.54167 160664|0.33333 160665|0.48611 160666|0.375 160667|0.43056 160668|0.52778 160669|0.44444 160670|0.55556 160671|0.5 160672|0.68056 160673|0.31944 160674|0.375 160675|0.72222 160676|0.73611 160677|0.66667 160678|0.54167 160679|0.48611 160680|0.68056 160681|0.44444 160682|0.125 160683|0.5 160684|0.34722 160685|0.47222 160686|0.40278 160687|0.36111 160688|0.44444 160689|0.38889 160690|0.18056 160691|0.16667 160692|0.45833 160693|0.34722 160694|0.33333 160695|0.43056 160696|0.36111 160697|0.51389 160698|0.61111 160699|0.56944 160700|0.47222 160701|0.36111 160702|0.30556 160703|0.43056 160704|0.38889 160705|0.23611 160706|0.5 160707|0.22222 160708|0.29167 160709|0.25 160710|0.36111 160711|0.23611 160712|0.44444 160713|0.18056 160714|0.34722 160715|0.22222 160716|0.30556 160717|0.18056 160718|0.26389 160719|0.22222 160720|0.22222 160721|0.16667 160722|0.40278 160723|0.36111 160724|0.54167 160725|0.77778 160726|0.19444 160727|0.43056 160728|0.5 160729|0.55556 160730|0.5 160731|0.26389 160732|0.22222 160733|0.52778 160734|0.30556 160735|0.5 160736|0.25 160737|0.125 160738|0.5 160739|0.55556 160740|0.5 160741|0.27778 160742|0.45833 160743|0.52778 160744|0.66667 160745|0.40278 160746|0.375 160747|0.19444 160748|0.54167 160749|0.23611 160750|0.5 160751|0.5 160752|0.41667 160753|0.55556 160754|0.29167 160755|0.625 160756|0.58333 160757|0.5 160758|0.27778 160759|0.40278 160760|0.29167 160761|0.25 160762|0.15278 160763|0.11111 160764|0.38889 160765|0.22222 160766|0.30556 160767|0.40278 160768|0.26389 160769|0.41667 160770|0.40278 160771|0.5 160772|0.52778 160773|0.27778 160774|0.31944 160775|0.083333 160776|0 160777|0.041667 160778|0.40278 160779|0.5 160780|0.22222 160781|0.52778 160782|0.44444 160783|0.16667 160784|0.5 160785|0.5 160786|0.47222 160787|0.5 160788|0.47222 160789|0.40278 160790|0.54167 160791|0.77778 160792|0.59722 160793|0.097222 160794|0.56944 160795|0.54167 160796|0.56944 160797|0.45833 160798|0.5 160799|0.34722 160800|0.44444 160801|0.45833 160802|0.61111 160803|0.52778 160804|0.45833 160805|0.5 160806|0.33333 160807|0.54167 160808|0.76389 160809|0.54167 160810|0.33333 160811|0.72222 160812|0.25 160813|0.31944 160814|0.27778 160815|0.76389 160816|0.5 160817|0.38889 160818|0.44444 160819|0.38889 160820|0.25 160821|0.61111 160822|0.45833 160823|0.72222 160824|0.5 160825|0.36111 160826|0.5 160827|0.5 160828|0.59722 160829|0.52778 160830|0.52778 160831|0.11111 160832|0.44444 160833|0.48611 160834|0.5 160835|0.30556 160836|0.54167 160837|0.26389 160838|0.36111 160839|0.5 160840|0.36111 160841|0.52778 160842|0.22222 160843|0.61111 160844|0.33333 160845|0.26389 160846|0.51389 160847|0.125 160848|0.5 160849|0.30556 160850|0.33333 160851|0.34722 160852|0.58333 160853|0.54167 160854|0.44444 160855|0.5 160856|0.45833 160857|0.34722 160858|0.30556 160859|0.54167 160860|0.59722 160861|0.5 160862|0.5 160863|0.5 160864|0.47222 160865|0.40278 160866|0.48611 160867|0.44444 160868|0.5 160869|0.5 160870|0.56944 160871|0.44444 160872|0.75 160873|0.5 160874|0.81944 160875|0.72222 160876|0.48611 160877|0.61111 160878|0.069444 160879|0.52778 160880|0.5 160881|0.59722 160882|0.61111 160883|0.88889 160884|0.5 160885|0.59722 160886|0.73611 160887|0.38889 160888|0.5 160889|0.26389 160890|0.5 160891|0.5 160892|0.34722 160893|0.38889 160894|0.52778 160895|0.23611 160896|0.25 160897|0.70833 160898|0.375 160899|0.80556 160900|0.65278 160901|0.70833 160902|0.70833 160903|0.29167 160904|0.34722 160905|0.54167 160906|0.55556 160907|0.43056 160908|0.45833 160909|0.125 160910|0.29167 160911|0.25 160912|0.61111 160913|0.27778 160914|0.5 160915|0.55556 160916|0.47222 160917|0.55556 160918|0.375 160919|0.20833 160920|0.16667 160921|0.40278 160922|0.22222 160923|0.25 160924|0.30556 160925|0.55556 160926|0.38889 160927|0.40278 160928|0.055556 160929|0.20833 160930|0.22222 160931|0.58333 160932|0.18056 160933|0.5 160934|0.5 160935|0.43056 160936|0.40278 160937|0.125 160938|0.55556 160939|0.90278 160940|0.97222 160941|0.44444 160942|0.51389 160943|0.375 160944|0.59722 160945|0.45833 160946|0.29167 160947|0.30556 160948|0.5 160949|0.5 160950|0.5 160951|0.48611 160952|0.38889 160953|0.61111 160954|0.26389 160955|0.72222 160956|0.54167 160957|0.069444 160958|0.5 160959|0.5 160960|0.40278 160961|0.5 160962|0.52778 160963|0.5 160964|0.38889 160965|0.5 160966|0.5 160967|0.61111 160968|0.38889 160969|0.65278 160970|0.23611 160971|0.83333 160972|0.44444 160973|0.125 160974|0.38889 160975|0.63889 160976|0.38889 160977|0.38889 160978|0.23611 160979|0.5 160980|0.27778 160981|0.47222 160982|0.5 160983|0.5 160984|0.40278 160985|0.34722 160986|0.19444 160987|0.33333 160988|0.23611 160989|0.43056 160990|0.33333 160991|0.375 160992|0.54167 160993|0.44444 160994|0.59722 160995|0.45833 160996|0.5 160997|0.34722 160998|0.29167 160999|0.5 161000|0.36111 161001|0.40278 161002|0.15278 161003|0.41667 161004|0.56944 161005|0.45833 161006|0.11111 161007|0.5 161008|0.61111 161009|0.41667 161010|0.33333 161011|0.59722 161012|0.29167 161013|0.5 161014|0.5 161015|0.38889 161016|0.56944 161017|0.5 161018|0.625 161019|0.36111 161020|0.38889 161021|0.33333 161022|0.45833 161023|0.45833 161024|0.55556 161025|0.45833 161026|0.36111 161027|0.33333 161028|0.5 161029|0.61111 161030|0.625 161031|0.79167 161032|0.73611 161033|0.84722 161034|0.33333 161035|0.375 161036|0.625 161037|0.61111 161038|0.47222 161039|0.55556 161040|0.70833 161041|0.47222 161042|0.63889 161043|0.45833 161044|0.52778 161045|0.38889 161046|0.65278 161047|0.48611 161048|0.31944 161049|0.26389 161050|0.47222 161051|0.44444 161052|0.34722 161053|0.47222 161054|0.5 161055|0.41667 161056|0.30556 161057|0.34722 161058|0.36111 161059|0.5 161060|0.23611 161061|0.25 161062|0.47222 161063|0.54167 161064|0.16667 161065|0.44444 161066|0.41667 161067|0.5 161068|0.38889 161069|0.61111 161070|0.16667 161071|0.38889 161072|0.41667 161073|0.5 161074|0.30556 161075|0.5 161076|0.31944 161077|0.5 161078|0.33333 161079|0.25 161080|0.54167 161081|0.55556 161082|0.48611 161083|0.41667 161084|0.56944 161085|0.51389 161086|0.5 161087|0.51389 161088|0.43056 161089|0.5 161090|0.43056 161091|0.19444 161092|0.5 161093|0.48611 161094|0.5 161095|0.56944 161096|0.5 161097|0.625 161098|0.51389 161099|0.55556 161100|0.55556 161101|0.5 161102|0.59722 161103|0.33333 161104|0.47222 161105|0.375 161106|0.51389 161107|0.63889 161108|0.5 161109|0.52778 161110|0.52778 161111|0.29167 161112|0.5 161113|0.097222 161114|0.56944 161115|0.5 161116|0.27778 161117|0.5 161118|0.51389 161119|0.5 161120|0.52778 161121|0.41667 161122|0.5 161123|0.63889 161124|0.69444 161125|0.72222 161126|0.56944 161127|0.19444 161128|0.5 161129|0.66667 161130|0.52778 161131|0.29167 161132|0.59722 161133|0.27778 161134|0.5 161135|0.5 161136|0.63889 161137|0.31944 161138|0.22222 161139|0.54167 161140|0.13889 161141|0.30556 161142|0.58333 161143|0.34722 161144|0.5 161145|0.38889 161146|0.40278 161147|0.61111 161148|0.38889 161149|0.41667 161150|0.41667 161151|0.59722 161152|0.40278 161153|0.27778 161154|0.48611 161155|0.5 161156|0.5 161157|0.43056 161158|0.40278 161159|0.54167 161160|0.45833 161161|0.45833 161162|0.44444 161163|0.48611 161164|0.5 161165|0.19444 161166|0.069444 161167|0.29167 161168|0.45833 161169|0.23611 161170|0.52778 161171|0.51389 161172|0.5 161173|0.45833 161174|0.38889 161175|0.52778 161176|0.61111 161177|0.52778 161178|0.5 161179|0.25 161180|0.5 161181|0.51389 161182|0.63889 161183|0.73611 161184|0.88889 161185|0.5 161186|0.5 161187|0.44444 161188|0.5 161189|0.59722 161190|0.027778 161191|0.81944 161192|0.55556 161193|0.5 161194|0.5 161195|0.51389 161196|0.19444 161197|0.5 161198|0.48611 161199|0.5 161200|0.30556 161201|0.5 161202|0.22222 161203|0.52778 161204|0.51389 161205|0.51389 161206|0.61111 161207|0.76389 161208|0.61111 161209|0.38889 161210|0.58333 161211|0.47222 161212|0.61111 161213|0.5 161214|0.34722 161215|0.125 161216|0.5 161217|0.5 161218|0.5 161219|0.5 161220|0.5 161221|0.63889 161222|0.44444 161223|0.5 161224|0.5 161225|0.25 161226|0.68056 161227|0.5 161228|0.27778 161229|0.44444 161230|0.5 161231|0.29167 161232|0.44444 161233|0.5 161234|0.5 161235|0.5 161236|0.5 161237|0.52778 161238|0.44444 161239|0.5 161240|0.5 161241|0.5 161242|0.44444 161243|0.55556 161244|0.5 161245|0.5 161246|0.5 161247|0.5 161248|0.56944 161249|0.40278 161250|0.5 161251|0.51389 161252|0.23611 161253|0.48611 161254|0.33333 161255|0.56944 161256|0.54167 161257|0.40278 161258|0.33333 161259|0.58333 161260|0.54167 161261|0.625 161262|0.76389 161263|0.5 161264|0.5 161265|0.5 161266|0.40278 161267|0.48611 161268|0.13889 161269|0.5 161270|0.54167 161271|0.56944 161272|0.5 161273|0.48611 161274|0.20833 161275|0.58333 161276|0.47222 161277|0.5 161278|0.5 161279|0.5 161280|0.5 161281|0.375 161282|0.5 161283|0.47222 161284|0.5 161285|0.5 161286|0.5 161287|0.5 161288|0.52778 161289|0.5 161290|0.5 161291|0.5 161292|0.44444 161293|0.5 161294|0.52778 161295|0.52778 161296|0.20833 161297|0.52778 161298|0.5 161299|0.5 161300|0.375 161301|0.5 161302|0.5 161303|0.56944 161304|0.45833 161305|0.44444 161306|0.52778 161307|0.38889 161308|0.38889 161309|0.38889 161310|0.34722 161311|0.47222 161312|0.55556 161313|0.5 161314|0.5 161315|0.5 161316|0.5 161317|0.5 161318|0.34722 161319|0.5 161320|0.5 161321|0.54167 161322|0.59722 161323|0.69444 161324|0.54167 161325|0.66667 161326|0.5 161327|0.5 161328|0.63889 161329|0.5 161330|0.26389 161331|0.22222 161332|0.5 161333|0.5 161334|0.41667 161335|0.69444 161336|0.51389 161337|0.5 161338|0.625 161339|0.44444 161340|0.58333 161341|0.51389 161342|0.55556 161343|0.5 161344|0.55556 161345|0.66667 161346|0.36111 161347|0.5 161348|0.33333 161349|0.5 161350|0.47222 161351|0.38889 161352|0.30556 161353|0.72222 161354|0.625 161355|0.36111 161356|0.5 161357|0.59722 161358|0.36111 161359|0.51389 161360|0.27778 161361|0.25 161362|0.25 161363|0.15278 161364|0.5 161365|0.5 161366|0.5 161367|0.5 161368|0.41667 161369|0.48611 161370|0.5 161371|0.47222 161372|0.36111 161373|0.34722 161374|0.31944 161375|0.34722 161376|0.27778 161377|0.40278 161378|0.23611 161379|0.31944 161380|0.38889 161381|0.61111 161382|0.56944 161383|0.40278 161384|0.31944 161385|0.27778 161386|0.29167 161387|0.52778 161388|0.47222 161389|0.44444 161390|0.125 161391|0.5 161392|0.27778 161393|0.34722 161394|0.30556 161395|0.29167 161396|0.55556 161397|0.52778 161398|0.29167 161399|0.41667 161400|0.48611 161401|0.5 161402|0.40278 161403|0.5 161404|0.5 161405|0.19444 161406|0.52778 161407|0.38889 161408|0.65278 161409|0.40278 161410|0.38889 161411|0.5 161412|0.48611 161413|0.31944 161414|0.58333 161415|0.29167 161416|0.33333 161417|0.41667 161418|0.15278 161419|0.16667 161420|0.083333 161421|0.52778 161422|0.5 161423|0.5 161424|0.5 161425|0.47222 161426|0.22222 161427|0.23611 161428|0.083333 161429|0.22222 161430|0.25 161431|0.34722 161432|0.5 161433|0.55556 161434|0.5 161435|0.5 161436|0.54167 161437|0.375 161438|0.375 161439|0.38889 161440|0.51389 161441|0.41667 161442|0.41667 161443|0.375 161444|0.5 161445|0.5 161446|0.5 161447|0.5 161448|0.5 161449|0.48611 161450|0.5 161451|0.5 161452|0.61111 161453|0.5 161454|0.44444 161455|0.59722 161456|0.5 161457|0.44444 161458|0.56944 161459|0.069444 161460|0.11111 161461|0.75 161462|0.56944 161463|0.45833 161464|0.5 161465|0.47222 161466|0.5 161467|0.41667 161468|0.40278 161469|0.16667 161470|0.29167 161471|0.40278 161472|0.33333 161473|0.55556 161474|0.5 161475|0.41667 161476|0.48611 161477|0.45833 161478|0.41667 161479|0.44444 161480|0.52778 161481|0.44444 161482|0.5 161483|0.15278 161484|0.44444 161485|0.625 161486|0.43056 161487|0.70833 161488|0.70833 161489|0.72222 161490|0.56944 161491|0.375 161492|0.5 161493|0.19444 161494|0.44444 161495|0.33333 161496|0.56944 161497|0.41667 161498|0.33333 161499|0.25 161500|0.13889 161501|0.47222 161502|0.61111 161503|0.34722 161504|0.48611 161505|0.40278 161506|0.5 161507|0.61111 161508|0.81944 161509|0.44444 161510|0.47222 161511|0.58333 161512|0.5 161513|0.51389 161514|0.5 161515|0.5 161516|0.5 161517|0.65278 161518|0.48611 161519|0.5 161520|0.5 161521|0.63889 161522|0.59722 161523|0.72222 161524|0.68056 161525|0.75 161526|0.23611 161527|0.26389 161528|0.20833 161529|0.34722 161530|0.20833 161531|0.26389 161532|0.16667 161533|0.44444 161534|0.38889 161535|0.44444 161536|0.5 161537|0.51389 161538|0.51389 161539|0.5 161540|0.59722 161541|0.5 161542|0.36111 161543|0.38889 161544|0.54167 161545|0.66667 161546|0.36111 161547|0.5 161548|0.52778 161549|0.52778 161550|0.625 161551|0.43056 161552|0.47222 161553|0.20833 161554|0.23611 161555|0.38889 161556|0.55556 161557|0.23611 161558|0.5 161559|0.34722 161560|0.29167 161561|0.44444 161562|0.5 161563|0.68056 161564|0.47222 161565|0.29167 161566|0.33333 161567|0.55556 161568|0.5 161569|0.25 161570|0.25 161571|0.38889 161572|0.38889 161573|0.38889 161574|0.63889 161575|0.16667 161576|0.33333 161577|0.5 161578|0.40278 161579|0.38889 161580|0.34722 161581|0.5 161582|0.59722 161583|0.30556 161584|0.29167 161585|0.34722 161586|0.625 161587|0.625 161588|0.41667 161589|0.22222 161590|0.22222 161591|0.30556 161592|0.20833 161593|0.5 161594|0.45833 161595|0.22222 161596|0.5 161597|0.31944 161598|0.15278 161599|0.44444 161600|0.375 161601|0.56944 161602|0.44444 161603|0.5 161604|0.5 161605|0.375 161606|0.18056 161607|0.5 161608|0.18056 161609|0.38889 161610|0.19444 161611|0.5 161612|0.29167 161613|0.27778 161614|0.66667 161615|0.5 161616|0.5 161617|0.51389 161618|0.31944 161619|0.22222 161620|0.51389 161621|0.31944 161622|0.40278 161623|0.36111 161624|0.61111 161625|0.5 161626|0.77778 161627|0.41667 161628|0.20833 161629|0.26389 161630|0.38889 161631|0.25 161632|0.30556 161633|0.44444 161634|0.23611 161635|0.27778 161636|0.30556 161637|0.055556 161638|0.33333 161639|0.23611 161640|0.41667 161641|0.29167 161642|0.29167 161643|0.5 161644|0.375 161645|0.55556 161646|0.38889 161647|0.375 161648|0.43056 161649|0.5 161650|0.56944 161651|0.33333 161652|0.41667 161653|0.30556 161654|0.375 161655|0.5 161656|0.29167 161657|0.33333 161658|0.55556 161659|0.5 161660|0.56944 161661|0.61111 161662|0.58333 161663|0.58333 161664|0.31944 161665|0.61111 161666|0.77778 161667|0.36111 161668|0.61111 161669|0.19444 161670|0.5 161671|0.63889 161672|0.55556 161673|0.79167 161674|0.097222 161675|0.875 161676|0.83333 161677|0.63889 161678|0.86111 161679|0.38889 161680|0.33333 161681|0.5 161682|0.45833 161683|0.38889 161684|0.375 161685|0.5 161686|0.18056 161687|0.45833 161688|0.5 161689|0.15278 161690|0.52778 161691|0.5 161692|0.73611 161693|0.75 161694|0.54167 161695|0.52778 161696|0.20833 161697|0.44444 161698|0.36111 161699|0.30556 161700|0.44444 161701|0.65278 161702|0.61111 161703|0.48611 161704|0.51389 161705|0.30556 161706|0.69444 161707|0.66667 161708|0.51389 161709|0.72222 161710|0.44444 161711|0.5 161712|0.38889 161713|0.45833 161714|0.59722 161715|0.36111 161716|0.33333 161717|0.36111 161718|0.48611 161719|0.33333 161720|0.5 161721|0.5 161722|0.61111 161723|0.56944 161724|0.38889 161725|0.44444 161726|0.5 161727|0.47222 161728|0.54167 161729|0.5 161730|0.5 161731|0.38889 161732|0.27778 161733|0.5 161734|0.5 161735|0.375 161736|0.51389 161737|0.5 161738|0.52778 161739|0.44444 161740|0.5 161741|0.19444 161742|0.5 161743|0.5 161744|0.5 161745|0.5 161746|0.5 161747|0.5 161748|0.54167 161749|0.5 161750|0.59722 161751|0.54167 161752|0.5 161753|0.5 161754|0.43056 161755|0.5 161756|0.52778 161757|0.5 161758|0.45833 161759|0.5 161760|0.23611 161761|0.5 161762|0.097222 161763|0.52778 161764|0.45833 161765|0.5 161766|0.5 161767|0.56944 161768|0.5 161769|0.5 161770|0.55556 161771|0.56944 161772|0.5 161773|0.47222 161774|0.15278 161775|0.41667 161776|0.22222 161777|0.43056 161778|0.5 161779|0.31944 161780|0.33333 161781|0.47222 161782|0.52778 161783|0.52778 161784|0.18056 161785|0.5 161786|0.56944 161787|0.23611 161788|0.48611 161789|0.65278 161790|0.56944 161791|0.5 161792|0.40278 161793|0.55556 161794|0.5 161795|0.48611 161796|0.30556 161797|0.61111 161798|0.375 161799|0.58333 161800|0.52778 161801|0.5 161802|0.5 161803|0.125 161804|0.48611 161805|0.51389 161806|0.5 161807|0.41667 161808|0.33333 161809|0.44444 161810|0.125 161811|0.5 161812|0.5 161813|0.44444 161814|0.58333 161815|0.375 161816|0.48611 161817|0.40278 161818|0.5 161819|0.38889 161820|0.44444 161821|0.31944 161822|0.58333 161823|0.61111 161824|0.36111 161825|0.5 161826|0.5 161827|0.43056 161828|0.19444 161829|0.34722 161830|0.59722 161831|0.34722 161832|0.30556 161833|0.5 161834|0.34722 161835|0.58333 161836|0.72222 161837|0.52778 161838|0.52778 161839|0.52778 161840|0.47222 161841|0.5 161842|0.55556 161843|0.5 161844|0.5 161845|0.44444 161846|0.38889 161847|0.45833 161848|0.38889 161849|0.5 161850|0.31944 161851|0.61111 161852|0.55556 161853|0.47222 161854|0.18056 161855|0.44444 161856|0.5 161857|0.25 161858|0.54167 161859|0.097222 161860|0.27778 161861|0.5 161862|0.55556 161863|0.5 161864|0.31944 161865|0.54167 161866|0.48611 161867|0.54167 161868|0.41667 161869|0.33333 161870|0.38889 161871|0.51389 161872|0.5 161873|0.5 161874|0.5 161875|0.5 161876|0.5 161877|0.5 161878|0.47222 161879|0.63889 161880|0.38889 161881|0.25 161882|0.5 161883|0.5 161884|0.5 161885|0.5 161886|0.5 161887|0.16667 161888|0.29167 161889|0.5 161890|0.18056 161891|0.5 161892|0.61111 161893|0.36111 161894|0.58333 161895|0.51389 161896|0.36111 161897|0.59722 161898|0.5 161899|0.5 161900|0.56944 161901|0.41667 161902|0.44444 161903|0.5 161904|0.5 161905|0.56944 161906|0.5 161907|0.51389 161908|0.5 161909|0.5 161910|0.5 161911|0.15278 161912|0.38889 161913|0.22222 161914|0.5 161915|0.44444 161916|0.43056 161917|0.56944 161918|0.5 161919|0.48611 161920|0.58333 161921|0.63889 161922|0.51389 161923|0.52778 161924|0.38889 161925|0.63889 161926|0.5 161927|0.27778 161928|0.5 161929|0.48611 161930|0.375 161931|0.44444 161932|0.30556 161933|0.45833 161934|0.61111 161935|0.20833 161936|0.54167 161937|0.5 161938|0.55556 161939|0.5 161940|0.52778 161941|0.44444 161942|0.59722 161943|0.5 161944|0.31944 161945|0.66667 161946|0.47222 161947|0.56944 161948|0.29167 161949|0.16667 161950|0.55556 161951|0.54167 161952|0.16667 161953|0.43056 161954|0.45833 161955|0.27778 161956|0.48611 161957|0.55556 161958|0.38889 161959|0.34722 161960|0.5 161961|0.33333 161962|0.5 161963|0.30556 161964|0.18056 161965|0.31944 161966|0.54167 161967|0.625 161968|0.52778 161969|0.22222 161970|0.5 161971|0.52778 161972|0.36111 161973|0.16667 161974|0.26389 161975|0.51389 161976|0.47222 161977|0.5 161978|0.5 161979|0.51389 161980|0.47222 161981|0.48611 161982|0.59722 161983|0.54167 161984|0.52778 161985|0.48611 161986|0.5 161987|0.59722 161988|0.48611 161989|0.47222 161990|0.5 161991|0.61111 161992|0.63889 161993|0.375 161994|0.44444 161995|0.40278 161996|0.29167 161997|0.5 161998|0.59722 161999|0.5 162000|0.25 162001|0.22222 162002|0.33333 162003|0.5 162004|0.44444 162005|0.44444 162006|0.44444 162007|0.41667 162008|0.27778 162009|0.5 162010|0.36111 162011|0.5 162012|0.20833 162013|0.43056 162014|0.5 162015|0.56944 162016|0.44444 162017|0.44444 162018|0.47222 162019|0.5 162020|0.27778 162021|0.40278 162022|0.5 162023|0.5 162024|0.5 162025|0.43056 162026|0.44444 162027|0.38889 162028|0.5 162029|0.36111 162030|0.48611 162031|0.5 162032|0.5 162033|0.55556 162034|0.51389 162035|0.5 162036|0.54167 162037|0.41667 162038|0.5 162039|0.5 162040|0.5 162041|0.5 162042|0.44444 162043|0.22222 162044|0.5 162045|0.59722 162046|0.59722 162047|0.5 162048|0.68056 162049|0.58333 162050|0.63889 162051|0.5 162052|0.5 162053|0.5 162054|0.5 162055|0.5 162056|0.48611 162057|0.5 162058|0.23611 162059|0.27778 162060|0.25 162061|0.66667 162062|0.34722 162063|0.59722 162064|0.30556 162065|0.125 162066|0.5 162067|0.36111 162068|0.58333 162069|0.27778 162070|0.5 162071|0.54167 162072|0.16667 162073|0.5 162074|0.27778 162075|0.54167 162076|0.51389 162077|0.31944 162078|0.61111 162079|0.56944 162080|0.34722 162081|0.041667 162082|0.41667 162083|0.48611 162084|0.29167 162085|0.63889 162086|0.34722 162087|0.47222 162088|0.55556 162089|0.625 162090|0.41667 162091|0.48611 162092|0.30556 162093|0.5 162094|0.5 162095|0.5 162096|0.47222 162097|0.45833 162098|0.33333 162099|0.23611 162100|0.23611 162101|0.30556 162102|0.33333 162103|0.11111 162104|0.40278 162105|0.13889 162106|0.30556 162107|0.29167 162108|0.5 162109|0.31944 162110|0.27778 162111|0.5 162112|0.36111 162113|0.48611 162114|0.5 162115|0.43056 162116|0.47222 162117|0.16667 162118|0.15278 162119|0.19444 162120|0.45833 162121|0.33333 162122|0.5 162123|0.38889 162124|0.25 162125|0.20833 162126|0.56944 162127|0.44444 162128|0.38889 162129|0.44444 162130|0.27778 162131|0.22222 162132|0.23611 162133|0.55556 162134|0.48611 162135|0.41667 162136|0.40278 162137|0.44444 162138|0.625 162139|0.43056 162140|0.56944 162141|0.45833 162142|0.47222 162143|0.47222 162144|0.5 162145|0.54167 162146|0.41667 162147|0.45833 162148|0.27778 162149|0.59722 162150|0.5 162151|0.5 162152|0.36111 162153|0.23611 162154|0.375 162155|0.56944 162156|0.5 162157|0.58333 162158|0.5 162159|0.30556 162160|0.5 162161|0.29167 162162|0.45833 162163|0.5 162164|0.20833 162165|0.33333 162166|0.30556 162167|0.20833 162168|0.27778 162169|0.41667 162170|0.19444 162171|0.31944 162172|0.45833 162173|0.36111 162174|0.30556 162175|0.5 162176|0.61111 162177|0.44444 162178|0.36111 162179|0.26389 162180|0.16667 162181|0 162182|0.51389 162183|0.34722 162184|0.54167 162185|0.36111 162186|0.25 162187|0.20833 162188|0.23611 162189|0.58333 162190|0.5 162191|0.41667 162192|0.27778 162193|0.29167 162194|0.5 162195|0.54167 162196|0.5 162197|0.59722 162198|0.61111 162199|0.5 162200|0.51389 162201|0.58333 162202|0.5 162203|0.63889 162204|0.5 162205|0.68056 162206|0.51389 162207|0.625 162208|0.66667 162209|0.59722 162210|0.34722 162211|0.33333 162212|0.59722 162213|0.70833 162214|0.44444 162215|0.41667 162216|0.5 162217|0.44444 162218|0.52778 162219|0.5 162220|0.5 162221|0.5 162222|0.45833 162223|0.44444 162224|0.55556 162225|0.52778 162226|0.72222 162227|0.44444 162228|0.38889 162229|0.48611 162230|0.36111 162231|0.5 162232|0.27778 162233|0.44444 162234|0.41667 162235|0.25 162236|0.54167 162237|0.5 162238|0.5 162239|0.55556 162240|0.5 162241|0.23611 162242|0.097222 162243|0.34722 162244|0.45833 162245|0.5 162246|0.56944 162247|0.5 162248|0.66667 162249|0.70833 162250|0.68056 162251|0.61111 162252|0.56944 162253|0.44444 162254|0.29167 162255|0.79167 162256|0.72222 162257|0.5 162258|0.5 162259|0.77778 162260|0.5 162261|0.36111 162262|0.56944 162263|0.40278 162264|0.36111 162265|0.33333 162266|0.43056 162267|0.41667 162268|0.52778 162269|0.41667 162270|0.34722 162271|0.18056 162272|0.5 162273|0.16667 162274|0.59722 162275|0.44444 162276|0.43056 162277|0.5 162278|0.11111 162279|0.5 162280|0.27778 162281|0.25 162282|0.19444 162283|0.27778 162284|0.33333 162285|0.31944 162286|0.33333 162287|0.16667 162288|0.19444 162289|0.47222 162290|0.55556 162291|0.65278 162292|0.16667 162293|0.63889 162294|0.41667 162295|0.56944 162296|0.54167 162297|0.5 162298|0.625 162299|0.43056 162300|0.16667 162301|0.625 162302|0.76389 162303|0.63889 162304|0.68056 162305|0.41667 162306|0.55556 162307|0.63889 162308|0.52778 162309|0.44444 162310|0.81944 162311|0.48611 162312|0.48611 162313|0.41667 162314|0.47222 162315|0.38889 162316|0.5 162317|0.20833 162318|0.61111 162319|0.51389 162320|0.52778 162321|0.19444 162322|0.79167 162323|0.43056 162324|0.72222 162325|0.65278 162326|0.54167 162327|0.56944 162328|0.69444 162329|0.5 162330|0.59722 162331|0.625 162332|0.72222 162333|0.61111 162334|0.69444 162335|0.5 162336|0.72222 162337|0.625 162338|0.58333 162339|0.47222 162340|0.52778 162341|0.5 162342|0.44444 162343|0.5 162344|0.18056 162345|0.625 162346|0.66667 162347|0.54167 162348|0.625 162349|0.55556 162350|0.5 162351|0.20833 162352|0.31944 162353|0.55556 162354|0.44444 162355|0.44444 162356|0.5 162357|0.58333 162358|0.47222 162359|0.5 162360|0.55556 162361|0.43056 162362|0.5 162363|0.47222 162364|0.5 162365|0.19444 162366|0.54167 162367|0.5 162368|0.47222 162369|0.56944 162370|0.44444 162371|0.34722 162372|0.20833 162373|0.25 162374|0.30556 162375|0.41667 162376|0.45833 162377|0.41667 162378|0.27778 162379|0.375 162380|0.40278 162381|0.38889 162382|0.55556 162383|0.43056 162384|0.5 162385|0.31944 162386|0.34722 162387|0.33333 162388|0.5 162389|0.45833 162390|0.44444 162391|0.47222 162392|0.43056 162393|0.44444 162394|0.5 162395|0.45833 162396|0.58333 162397|0.44444 162398|0.5 162399|0.52778 162400|0.5 162401|0.54167 162402|0.33333 162403|0.5 162404|0.33333 162405|0.43056 162406|0.38889 162407|0.38889 162408|0.44444 162409|0.38889 162410|0.40278 162411|0.51389 162412|0.44444 162413|0.27778 162414|0.58333 162415|0.40278 162416|0.5 162417|0.375 162418|0.51389 162419|0.5 162420|0.52778 162421|0.5 162422|0.40278 162423|0.66667 162424|0.125 162425|0.44444 162426|0.31944 162427|0.48611 162428|0.51389 162429|0.5 162430|0.43056 162431|0.34722 162432|0.38889 162433|0.29167 162434|0.38889 162435|0.20833 162436|0.30556 162437|0.77778 162438|0.80556 162439|0.80556 162440|0.43056 162441|0.65278 162442|0.41667 162443|0.27778 162444|0.27778 162445|0.22222 162446|0.65278 162447|0.5 162448|0.58333 162449|0.625 162450|0.59722 162451|0.84722 162452|0.72222 162453|0.73611 162454|0.59722 162455|0.65278 162456|0.51389 162457|0.25 162458|0.5 162459|0.5 162460|0.5 162461|0.80556 162462|0.88889 162463|0.54167 162464|0.31944 162465|0.43056 162466|0.59722 162467|0.47222 162468|0.40278 162469|0.45833 162470|0.29167 162471|0.52778 162472|0.19444 162473|0.38889 162474|0.44444 162475|0.52778 162476|0.47222 162477|0.40278 162478|0.5 162479|0.625 162480|0.5 162481|0.51389 162482|0.73611 162483|0.33333 162484|0.38889 162485|0.54167 162486|0.51389 162487|0.52778 162488|0.5 162489|0.51389 162490|0.52778 162491|0.5 162492|0.20833 162493|0.65278 162494|0.51389 162495|0.34722 162496|0.47222 162497|0.5 162498|0.29167 162499|0.48611 162500|0.44444 162501|0.33333 162502|0.47222 162503|0.5 162504|0.36111 162505|0.13889 162506|0.13889 162507|0.30556 162508|0.26389 162509|0.34722 162510|0.29167 162511|0.29167 162512|0.41667 162513|0.31944 162514|0.25 162515|0.30556 162516|0.5 162517|0.55556 162518|0.5 162519|0.44444 162520|0.51389 162521|0.43056 162522|0.44444 162523|0.5 162524|0.27778 162525|0.36111 162526|0.56944 162527|0.5 162528|0.027778 162529|0.19444 162530|0.375 162531|0.26389 162532|0.18056 162533|0.19444 162534|0.5 162535|0.5 162536|0.44444 162537|0.55556 162538|0.52778 162539|0.22222 162540|0.5 162541|0.5 162542|0.27778 162543|0.19444 162544|0.44444 162545|0.45833 162546|0.56944 162547|0.31944 162548|0.27778 162549|0.72222 162550|0.26389 162551|0.33333 162552|0.27778 162553|0.30556 162554|0.33333 162555|0.26389 162556|0.5 162557|0.55556 162558|0.51389 162559|0.55556 162560|0.16667 162561|0.44444 162562|0.5 162563|0.5 162564|0.25 162565|0.40278 162566|0.41667 162567|0.5 162568|0.15278 162569|0.27778 162570|0.30556 162571|0.83333 162572|0.68056 162573|0.38889 162574|0.41667 162575|0.22222 162576|0.11111 162577|0.22222 162578|0.22222 162579|0.61111 162580|0.44444 162581|0.375 162582|0.45833 162583|0.18056 162584|0.125 162585|0.097222 162586|0.30556 162587|0.52778 162588|0.27778 162589|0.22222 162590|0.13889 162591|0.45833 162592|0.13889 162593|0.125 162594|0.13889 162595|0.375 162596|0.27778 162597|0.56944 162598|0.66667 162599|0.59722 162600|0.59722 162601|0.63889 162602|0.45833 162603|0.27778 162604|0.43056 162605|0.5 162606|0.29167 162607|0.79167 162608|0.5 162609|0.23611 162610|0.61111 162611|0.5 162612|0.16667 162613|0.18056 162614|0.69444 162615|0.16667 162616|0.38889 162617|0.15278 162618|0.75 162619|0.18056 162620|0.23611 162621|0.29167 162622|0.26389 162623|0.44444 162624|0.55556 162625|0.43056 162626|0.5 162627|0.31944 162628|0.125 162629|0.70833 162630|0.43056 162631|0.77778 162632|0.31944 162633|0.45833 162634|0.19444 162635|0.375 162636|0.55556 162637|0.5 162638|0.13889 162639|0.125 162640|0.66667 162641|0.73611 162642|0.65278 162643|0.45833 162644|0.20833 162645|0.25 162646|0.29167 162647|0.11111 162648|0.43056 162649|0.30556 162650|0.069444 162651|0.48611 162652|0.15278 162653|0.013889 162654|0.36111 162655|0.27778 162656|0.15278 162657|0.40278 162658|0.33333 162659|0.34722 162660|0.33333 162661|0.27778 162662|0.38889 162663|0.16667 162664|0.19444 162665|0.56944 162666|0.73611 162667|0.41667 162668|0.41667 162669|0.125 162670|0.41667 162671|0.15278 162672|0.44444 162673|0.33333 162674|0.375 162675|0.375 162676|0.36111 162677|0.16667 162678|0.27778 162679|0.16667 162680|0.34722 162681|0.31944 162682|0.40278 162683|0.30556 162684|0.30556 162685|0.11111 162686|0.15278 162687|0.22222 162688|0.19444 162689|0.38889 162690|0.48611 162691|0 162692|0.20833 162693|0.61111 162694|0.66667 162695|0.33333 162696|0.19444 162697|0.44444 162698|0.40278 162699|0.125 162700|0.22222 162701|0.41667 162702|0.65278 162703|0.44444 162704|0.56944 162705|0.45833 162706|0.5 162707|0.38889 162708|0.65278 162709|0.27778 162710|0.44444 162711|0.44444 162712|0.55556 162713|0.40278 162714|0.31944 162715|0.29167 162716|0.18056 162717|0.25 162718|0.45833 162719|0.34722 162720|0.375 162721|0.20833 162722|0.27778 162723|0.51389 162724|0.5 162725|0.45833 162726|0.43056 162727|0.41667 162728|0.44444 162729|0.38889 162730|0.33333 162731|0.19444 162732|0.27778 162733|0.56944 162734|0.65278 162735|0.43056 162736|0.65278 162737|0.72222 162738|0.54167 162739|0.69444 162740|0.5 162741|0.55556 162742|0.33333 162743|0.33333 162744|0.27778 162745|0.44444 162746|0.22222 162747|0.25 162748|0.22222 162749|0.43056 162750|0.041667 162751|0.027778 162752|0.083333 162753|0.47222 162754|0.15278 162755|0.34722 162756|0.41667 162757|0.47222 162758|0.56944 162759|0.15278 162760|0.23611 162761|0.41667 162762|0.88889 162763|0.95833 162764|0.65278 162765|0.72222 162766|0.63889 162767|0.51389 162768|0.16667 162769|0.38889 162770|0.30556 162771|0.097222 162772|0.25 162773|0.51389 162774|0.23611 162775|0.19444 162776|0.5 162777|0.55556 162778|0.38889 162779|0.5 162780|0.52778 162781|0.5 162782|0.5 162783|0.61111 162784|0.25 162785|0.5 162786|0.33333 162787|0.16667 162788|0.18056 162789|0.34722 162790|0.31944 162791|0.33333 162792|0.30556 162793|0.43056 162794|0.31944 162795|0.34722 162796|0.25 162797|0.54167 162798|0.55556 162799|0.30556 162800|0.23611 162801|0.26389 162802|0.375 162803|0.61111 162804|0.59722 162805|0.54167 162806|0.47222 162807|0.33333 162808|0.39583 162809|0.44444 162810|0.23611 162811|0.52778 162812|0.125 162813|0.25 162814|0.16667 162815|0.20833 162816|0.22222 162817|0.33333 162818|0.40278 162819|0.45833 162820|0.65278 162821|0.66667 162822|0.22222 162823|0.22222 162824|0.20833 162825|0.29167 162826|0.30556 162827|0.31944 162828|0.43056 162829|0.47222 162830|0.625 162831|0.61111 162832|0.16667 162833|0.29167 162834|0.34722 162835|0.069444 162836|0.11111 162837|0.69444 162838|0.375 162839|0.41667 162840|0.19444 162841|0.25 162842|0.61111 162843|0.375 162844|0.5 162845|0.61111 162846|0.70833 162847|0.65278 162848|0.55556 162849|0.43056 162850|0.30556 162851|0.63889 162852|0.69444 162853|0.5 162854|0.125 162855|0.22222 162856|0.41667 162857|0.30556 162858|0.26389 162859|0.31944 162860|0.041667 162861|0.22222 162862|0.16667 162863|0.5 162864|0.5 162865|0.54167 162866|0.61111 162867|0.29167 162868|0.23611 162869|0.16667 162870|0.22222 162871|0.58333 162872|0.41667 162873|0.13889 162874|0.41667 162875|0.40278 162876|0.47222 162877|0.125 162878|0.31944 162879|0.31944 162880|0.31944 162881|0.29167 162882|0.61111 162883|0.38889 162884|0.15278 162885|0.54167 162886|0.30556 162887|0.27778 162888|0.31944 162889|0.38889 162890|0.31944 162891|0.29167 162892|0.375 162893|0.26389 162894|0.25 162895|0.16667 162896|0.11111 162897|0.20833 162898|0.33333 162899|0.48611 162900|0.41667 162901|0.51389 162902|0.23611 162903|0.25 162904|0.055556 162905|0.055556 162906|0.20833 162907|0.47222 162908|0.13889 162909|0.52778 162910|0.45833 162911|0.31944 162912|0.25 162913|0.43056 162914|0.5 162915|0.51389 162916|0.65278 162917|0.20833 162918|0.47222 162919|0.52778 162920|0.5 162921|0.59722 162922|0.80556 162923|0.63889 162924|0.88889 162925|0.27778 162926|0.31944 162927|0.125 162928|0.069444 162929|0.26389 162930|0.19444 162931|0.5 162932|0.22222 162933|0.51389 162934|0.26389 162935|0.90278 162936|0.30556 162937|0.59722 162938|0.58333 162939|0.5 162940|0.33333 162941|0.20833 162942|0.5 162943|0.25 162944|0.18056 162945|0.48611 162946|0.22222 162947|0.80556 162948|0.30556 162949|0.48611 162950|0.25 162951|0.48611 162952|0.19444 162953|0.45833 162954|0.66667 162955|0.76389 162956|0 162957|0.30556 162958|0.52778 162959|0.5 162960|0.18056 162961|0.27778 162962|0.38889 162963|0.5 162964|0.45833 162965|0.41667 162966|0.31944 162967|0.19444 162968|0.11111 162969|0.16667 162970|0.47222 162971|0.5 162972|0.61111 162973|0.66667 162974|0.27778 162975|0.30556 162976|0.29167 162977|0.26389 162978|0.52778 162979|0.29167 162980|0.5 162981|0.44444 162982|0.55556 162983|0.58333 162984|0.66667 162985|0.23611 162986|0.16667 162987|0.33333 162988|0.48611 162989|0.66667 162990|0.33333 162991|0.30556 162992|0.375 162993|0.30556 162994|0.13889 162995|0.38889 162996|0.20833 162997|0.25 162998|0.23611 162999|0.40278 163000|0.36111 163001|0.45833 163002|0.25 163003|0.18056 163004|0.013889 163005|0.15278 163006|0.25 163007|0.48611 163008|0.5 163009|0.5 163010|0.5 163011|0.5 163012|0.25 163013|0.27778 163014|0.70833 163015|0.40278 163016|0.47222 163017|0.375 163018|0.22222 163019|0.61111 163020|0.63889 163021|0.38889 163022|0.29167 163023|0.34722 163024|0.22222 163025|0.5 163026|0.45833 163027|0.73611 163028|0.72222 163029|0.33333 163030|0.125 163031|0.15278 163032|0.29167 163033|0.27778 163034|0.27778 163035|0.16667 163036|0.16667 163037|0.19444 163038|0.31944 163039|0.38889 163040|0.23611 163041|0.33333 163042|0.625 163043|0.66667 163044|0.59722 163045|0.69444 163046|0.45833 163047|0.45833 163048|0.68056 163049|0.45833 163050|0.22222 163051|0.18056 163052|0.52778 163053|0.55556 163054|0.13889 163055|0.375 163056|0.29167 163057|0.33333 163058|0.44444 163059|0.29167 163060|0.47222 163061|0.5 163062|0.43056 163063|0.40278 163064|0.36111 163065|0.29167 163066|0.36111 163067|0.34722 163068|0.43056 163069|0.65278 163070|0.51389 163071|0.47222 163072|0.33333 163073|0.5 163074|0.34722 163075|0.5 163076|0.33333 163077|0.26389 163078|0.20833 163079|0.22222 163080|0.40278 163081|0.36111 163082|0.55556 163083|0.33333 163084|0.33333 163085|0.38889 163086|0.18056 163087|0.22222 163088|0.33333 163089|0.30556 163090|0.23611 163091|0.47222 163092|0.29167 163093|0.38889 163094|0.51389 163095|0.36111 163096|0.40278 163097|0.45833 163098|0.43056 163099|0.33333 163100|0.38889 163101|0.45833 163102|0.40278 163103|0.27778 163104|0.36111 163105|0.13889 163106|0.55556 163107|0.33333 163108|0.26389 163109|0.31944 163110|0.55556 163111|0.41667 163112|0.29167 163113|0.30556 163114|0.27778 163115|0.69444 163116|0.52778 163117|0.48611 163118|0.11111 163119|0.48611 163120|0.31944 163121|0.5 163122|0.38889 163123|0.5 163124|0.40278 163125|0.38889 163126|0.36111 163127|0.52778 163128|0.375 163129|0.40278 163130|0.66667 163131|0.36111 163132|0.31944 163133|0.38889 163134|0.36111 163135|0.44444 163136|0.41667 163137|0.41667 163138|0.30556 163139|0.47222 163140|0.36111 163141|0.5 163142|0.51389 163143|0.13889 163144|0.13889 163145|0.31944 163146|0.069444 163147|0.5 163148|0.38889 163149|0.5 163150|0.45833 163151|0.63889 163152|0.30556 163153|0.11111 163154|0.55556 163155|0.5 163156|0.51389 163157|0.19444 163158|0.23611 163159|0.11111 163160|0.38889 163161|0.55556 163162|0.125 163163|0.33333 163164|0.38889 163165|0.23611 163166|0.40278 163167|0.59722 163168|0.27778 163169|0.27778 163170|0.29167 163171|0.40278 163172|0.65278 163173|0.40278 163174|0.45833 163175|0.34722 163176|0.27778 163177|0.34722 163178|0.33333 163179|0.16667 163180|0.11111 163181|0.44444 163182|0.18056 163183|0.19444 163184|0.55556 163185|0.40278 163186|0.19444 163187|0.19444 163188|0.33333 163189|0.56944 163190|0.55556 163191|0.45833 163192|0.45833 163193|0.23611 163194|0.41667 163195|0.16667 163196|0.27778 163197|0.33333 163198|0.19444 163199|0.45833 163200|0.16667 163201|0.52778 163202|0.61111 163203|0.375 163204|0.44444 163205|0.36111 163206|0.29167 163207|0.13889 163208|0.29167 163209|0.13889 163210|0.22222 163211|0.52778 163212|0.5 163213|0.5 163214|0.29167 163215|0.45833 163216|0.26389 163217|0.5 163218|0.5 163219|0.29167 163220|0.25 163221|0.19444 163222|0.31944 163223|0.34722 163224|0.027778 163225|0.22222 163226|0.11111 163227|0.79167 163228|0.69444 163229|0.55556 163230|0.29167 163231|0.20833 163232|0.18056 163233|0.29167 163234|0.15278 163235|0.23611 163236|0.34722 163237|0.27778 163238|0.33333 163239|0.41667 163240|0.61111 163241|0.58333 163242|0.55556 163243|0.40278 163244|0.27778 163245|0.20833 163246|0.5 163247|0.26389 163248|0.22222 163249|0.13889 163250|0.22222 163251|0.20833 163252|0.16667 163253|0.41667 163254|0.52778 163255|0.44444 163256|0.19444 163257|0.27778 163258|0.48611 163259|0.13889 163260|0.23611 163261|0.27778 163262|0.097222 163263|0.16667 163264|0.45833 163265|0.31944 163266|0.26389 163267|0.68056 163268|0.79167 163269|0.40278 163270|0.38889 163271|0.47222 163272|0.26389 163273|0.43056 163274|0.38889 163275|0.43056 163276|0.63889 163277|0.65278 163278|0.65278 163279|0.55556 163280|0.22222 163281|0.33333 163282|0.33333 163283|0.41667 163284|0.56944 163285|0.61111 163286|0.54167 163287|0.33333 163288|0.38889 163289|0.66667 163290|0.19444 163291|0.27778 163292|0.20833 163293|0.19444 163294|0.22222 163295|0.15278 163296|0.18056 163297|0.5 163298|0.56944 163299|0.5 163300|0.52778 163301|0.16667 163302|0.33333 163303|0.38889 163304|0.33333 163305|0.29167 163306|0.34722 163307|0.34722 163308|0.36111 163309|0.125 163310|0.19444 163311|0.22222 163312|0.20833 163313|0.36111 163314|0.43056 163315|0.44444 163316|0.33333 163317|0.16667 163318|0.27778 163319|0.16667 163320|0.16667 163321|0.11111 163322|0.31944 163323|0.11111 163324|0.13889 163325|0.26389 163326|0.20833 163327|0.33333 163328|0.16667 163329|0.18056 163330|0.63889 163331|0.13889 163332|0.125 163333|0.18056 163334|0.20833 163335|0.19444 163336|0.65278 163337|0.31944 163338|0.40278 163339|0.63889 163340|0.625 163341|0.41667 163342|0.30556 163343|0.81944 163344|0.79167 163345|0.52778 163346|0.38889 163347|0.18056 163348|0.25 163349|0.097222 163350|0.055556 163351|0.19444 163352|0.29167 163353|0.22222 163354|0.25 163355|0.25 163356|0.25 163357|0.43056 163358|0.33333 163359|0.31944 163360|0.38889 163361|0.34722 163362|0.40278 163363|0.18056 163364|0.15278 163365|0.18056 163366|0.16667 163367|0.27778 163368|0.18056 163369|0.20833 163370|0.44444 163371|0.40278 163372|0.29167 163373|0.59722 163374|0.43056 163375|0.58333 163376|0.45833 163377|0.40278 163378|0.30556 163379|0.36111 163380|0.19444 163381|0.33333 163382|0.23611 163383|0.77778 163384|0.55556 163385|0.47222 163386|0.22222 163387|0.5 163388|0.52778 163389|0.54167 163390|0.48611 163391|0.43056 163392|0.55556 163393|0.47222 163394|0.375 163395|0.22222 163396|0.44444 163397|0.38889 163398|0.52778 163399|0.51389 163400|0.375 163401|0.58333 163402|0.30556 163403|0.27778 163404|0.44444 163405|0.61111 163406|0.55556 163407|0.55556 163408|0.73611 163409|0.25 163410|0.43056 163411|0.19444 163412|0.375 163413|0.38889 163414|0.43056 163415|0.5 163416|0.29167 163417|0.125 163418|0.45833 163419|0.22222 163420|0.25 163421|0.19444 163422|0.31944 163423|0.33333 163424|0.51389 163425|0.41667 163426|0.33333 163427|0.30556 163428|0.51389 163429|0.33333 163430|0.33333 163431|0.40278 163432|0.38889 163433|0.29167 163434|0.375 163435|0.69444 163436|0.33333 163437|0.027778 163438|0.41667 163439|0.31944 163440|0.22222 163441|0.20833 163442|0.625 163443|0.5 163444|0.29167 163445|0.36111 163446|0.65278 163447|0.5 163448|0.20833 163449|0.26389 163450|0.59722 163451|0.34722 163452|0.51389 163453|0.069444 163454|0.33333 163455|0.59722 163456|0.56944 163457|0.76389 163458|0.19444 163459|0.30556 163460|0.40278 163461|0.097222 163462|0.26389 163463|0.375 163464|0.30556 163465|0.18056 163466|0.041667 163467|0.069444 163468|0.65278 163469|0.5 163470|0.44444 163471|0.25 163472|0.375 163473|0.52778 163474|0.5 163475|0.5 163476|0.22222 163477|0.19444 163478|0.375 163479|0.5 163480|0.19444 163481|0.23611 163482|0.19444 163483|0.5 163484|0.54167 163485|0.59722 163486|0.45833 163487|0.13889 163488|0.11111 163489|0.18056 163490|0.88889 163491|0.51389 163492|0.375 163493|0.26389 163494|0.23611 163495|0.33333 163496|0.44444 163497|0.18056 163498|0.25 163499|0.44444 163500|0.19444 163501|0.22222 163502|0.41667 163503|0.5 163504|0.41667 163505|0.38889 163506|0.47222 163507|0.25 163508|0.31944 163509|0.23611 163510|0.45833 163511|0.33333 163512|0.38889 163513|0.44444 163514|0.36111 163515|0.22222 163516|0.45833 163517|0.375 163518|0.52778 163519|0.26389 163520|0.75 163521|0.36111 163522|0.083333 163523|0.25 163524|0.31944 163525|0.26389 163526|0.29167 163527|0.25 163528|0.25 163529|0.26389 163530|0.16667 163531|0.27778 163532|0.31944 163533|0.54167 163534|0.61111 163535|0.65278 163536|0.66667 163537|0.70833 163538|0.51389 163539|0.56944 163540|0.23611 163541|0.43056 163542|0.375 163543|0.38889 163544|0.43056 163545|0.16667 163546|0.36111 163547|0.11111 163548|0.30556 163549|0.33333 163550|0.34722 163551|0.40278 163552|0.38889 163553|0.26389 163554|0.31944 163555|0.25 163556|0.23611 163557|0.84722 163558|0.625 163559|0.61111 163560|0.59722 163561|0.38889 163562|0.5 163563|0.34722 163564|0.25 163565|0.45833 163566|0.47222 163567|0.41667 163568|0.16667 163569|0.52778 163570|0.83333 163571|0.29167 163572|0.29167 163573|0.59722 163574|0.69444 163575|0.69444 163576|0.47222 163577|0.33333 163578|0.41667 163579|0.30556 163580|0.30556 163581|0.55556 163582|0.36111 163583|0.5 163584|0.45833 163585|0.41667 163586|0.38889 163587|0.36111 163588|0.30556 163589|0.38889 163590|0.16667 163591|0.80556 163592|0.72222 163593|0.29167 163594|0.61111 163595|0.5 163596|0.56944 163597|0.43056 163598|0.5 163599|0.13889 163600|0.77778 163601|0.097222 163602|0.18056 163603|0.19444 163604|0.34722 163605|0.33333 163606|0.66667 163607|0.51389 163608|0.26389 163609|0.097222 163610|0.27778 163611|0.30556 163612|0.20833 163613|0.34722 163614|0.18056 163615|0.27778 163616|0.5 163617|0.65278 163618|0.20833 163619|0.5 163620|0.5 163621|0.47222 163622|0.36111 163623|0.19444 163624|0.16667 163625|0.30556 163626|0.375 163627|0.23611 163628|0.29167 163629|0.23611 163630|0.55556 163631|0.375 163632|0.38889 163633|0.59722 163634|0.625 163635|0.38889 163636|0.41667 163637|0.48611 163638|0.23611 163639|0.18056 163640|0.23611 163641|0.26389 163642|0.069444 163643|0.40278 163644|0.11111 163645|0.38889 163646|0.75 163647|0.73611 163648|0.43056 163649|0.86111 163650|0.5 163651|0.26389 163652|0.31944 163653|0.43056 163654|0.20833 163655|0.47222 163656|0.41667 163657|0.22222 163658|0.26389 163659|0.30556 163660|0.25 163661|0.22222 163662|0.16667 163663|0.41667 163664|0.65278 163665|0.27778 163666|0.16667 163667|0.38889 163668|0.59722 163669|0.375 163670|0.43056 163671|0.30556 163672|0.15278 163673|0.38889 163674|0.56944 163675|0.38889 163676|0.33333 163677|0.5 163678|0.61111 163679|0.38889 163680|0.23611 163681|0.38889 163682|0.26389 163683|0.11111 163684|0.69444 163685|0.375 163686|0.43056 163687|0.26389 163688|0.11111 163689|0.36111 163690|0.27778 163691|0.36111 163692|0.52778 163693|0.56944 163694|0.33333 163695|0.22222 163696|0.20833 163697|0.23611 163698|0.20833 163699|0.43056 163700|0.33333 163701|0.27778 163702|0.33333 163703|0.55556 163704|0.31944 163705|0.56944 163706|0.38889 163707|0.5 163708|0.33333 163709|0.33333 163710|0.48611 163711|0.19444 163712|0.25 163713|0.29167 163714|0.34722 163715|0.38889 163716|0.5 163717|0.44444 163718|0.36111 163719|0.51389 163720|0.5 163721|0.25 163722|0.51389 163723|0.55556 163724|0.069444 163725|0.22222 163726|0.29167 163727|0.36111 163728|0.76389 163729|0.625 163730|0.22222 163731|0.44444 163732|0.5 163733|0.5 163734|0.5 163735|0.625 163736|0.38889 163737|0.59722 163738|0.33333 163739|0.097222 163740|0.5 163741|0.33333 163742|0.38889 163743|0.5 163744|0.47222 163745|0.45833 163746|0.33333 163747|0.66667 163748|0.31944 163749|0.5 163750|0.375 163751|0.47222 163752|0.5 163753|0.55556 163754|0.43056 163755|0.29167 163756|0.29167 163757|0.54167 163758|0.5 163759|0.54167 163760|0.31944 163761|0.43056 163762|0.44444 163763|0.5 163764|0.33333 163765|0.069444 163766|0.31944 163767|0.33333 163768|0.20833 163769|0.48611 163770|0.27778 163771|0.72222 163772|0.52778 163773|0.66667 163774|0.44444 163775|0.15278 163776|0.5 163777|0.56944 163778|0.38889 163779|0.5 163780|0.375 163781|0.5 163782|0.36111 163783|0.44444 163784|0.26389 163785|0.26389 163786|0.51389 163787|0.44444 163788|0.59722 163789|0.29167 163790|0.33333 163791|0.33333 163792|0.22222 163793|0.41667 163794|0.30556 163795|0.44444 163796|0.41667 163797|0.5 163798|0.22222 163799|0.22222 163800|0.47222 163801|0.61111 163802|0.30556 163803|0.30556 163804|0.27778 163805|0.30556 163806|0.55556 163807|0.29167 163808|0.5 163809|0.5 163810|0.13889 163811|0.29167 163812|0.125 163813|0.27778 163814|0.40278 163815|0.59722 163816|0.38889 163817|0.15278 163818|0.47222 163819|0.5 163820|0.20833 163821|0.69444 163822|0.22222 163823|0.30556 163824|0.26389 163825|0.68056 163826|0.625 163827|0.63889 163828|0.58333 163829|0.52778 163830|0.26389 163831|0.23611 163832|0.80556 163833|0.34722 163834|0.55556 163835|0.69444 163836|0.26389 163837|0.44444 163838|0.52778 163839|0.375 163840|0.29167 163841|0.27778 163842|0.18056 163843|0.58333 163844|0.29167 163845|0.30556 163846|0.41667 163847|0.41667 163848|0.72222 163849|0.81944 163850|0.5 163851|0.48611 163852|0.52778 163853|0.27778 163854|0.23611 163855|0.80556 163856|0.23611 163857|0.20833 163858|0.44444 163859|0.40278 163860|0.45833 163861|0.18056 163862|0.083333 163863|0.5 163864|0.5 163865|0.23611 163866|0.45833 163867|0.29167 163868|0.58333 163869|0.48611 163870|0.25 163871|0.44444 163872|0.45833 163873|0.26389 163874|0.51389 163875|0.44444 163876|0.52778 163877|0.27778 163878|0.43056 163879|0.26389 163880|0.23611 163881|0.27778 163882|0.38889 163883|0.29167 163884|0.16667 163885|0.15278 163886|0.5 163887|0.15278 163888|0.5 163889|0.52778 163890|0.22222 163891|0.59722 163892|0.26389 163893|0.29167 163894|0.47222 163895|0.375 163896|0.5 163897|0.5 163898|0.097222 163899|0.25 163900|0.23611 163901|0.15278 163902|0.38889 163903|0.26389 163904|0.38889 163905|0.33333 163906|0.29167 163907|0.25 163908|0.34722 163909|0.5 163910|0.61111 163911|0.69444 163912|0.44444 163913|0.41667 163914|0.26389 163915|0.27778 163916|0.58333 163917|0.56944 163918|0.48611 163919|0.15278 163920|0.30556 163921|0.33333 163922|0.55556 163923|0.75 163924|0.26389 163925|0.58333 163926|0.36111 163927|0.26389 163928|0.58333 163929|0.36111 163930|0.43056 163931|0.43056 163932|0.33333 163933|0.375 163934|0.45833 163935|0.51389 163936|0.40278 163937|0.33333 163938|0.31944 163939|0.16667 163940|0.26389 163941|0.34722 163942|0.65278 163943|0.43056 163944|0.5 163945|0.38889 163946|0.375 163947|0.51389 163948|0.5 163949|0.26389 163950|0.48611 163951|0.41667 163952|0.5 163953|0.18056 163954|0.20833 163955|0.5 163956|0.16667 163957|0.16667 163958|0.375 163959|0.31944 163960|0.66667 163961|0.22222 163962|0.30556 163963|0.48611 163964|0.33333 163965|0.5 163966|0.44444 163967|0.45833 163968|0.31944 163969|0.38889 163970|0.61111 163971|0.27778 163972|0.52778 163973|0.44444 163974|0.5 163975|0.44444 163976|0.63889 163977|0.45833 163978|0.34722 163979|0.5 163980|0.5 163981|0.5 163982|0.52778 163983|0.22222 163984|0.5 163985|0.5 163986|0.55556 163987|0.5 163988|0.31944 163989|0.29167 163990|0.5 163991|0.27778 163992|0.48611 163993|0.58333 163994|0.58333 163995|0.5 163996|0.5 163997|0.20833 163998|0.5 163999|0.27778 164000|0.55556 164001|0.47222 164002|0.61111 164003|0.5 164004|0.5 164005|0.52778 164006|0.5 164007|0.25 164008|0.5 164009|0.30556 164010|0.68056 164011|0.18056 164012|0.25 164013|0.33333 164014|0.22222 164015|0.5 164016|0.5 164017|0.5 164018|0.43056 164019|0.54167 164020|0.19444 164021|0.40278 164022|0.40278 164023|0.48611 164024|0.55556 164025|0.44444 164026|0.5 164027|0.52778 164028|0.5 164029|0.5 164030|0.5 164031|0.5 164032|0.5 164033|0.54167 164034|0.51389 164035|0.5 164036|0.22222 164037|0.51389 164038|0.54167 164039|0.72222 164040|0.72222 164041|0.76389 164042|0.66667 164043|0.38889 164044|0.5 164045|0.72222 164046|0.68056 164047|0.47222 164048|0.56944 164049|0.375 164050|0.66667 164051|0.38889 164052|0.56944 164053|0.5 164054|0.59722 164055|0.55556 164056|0.36111 164057|0.76389 164058|0.45833 164059|0.31944 164060|0.5 164061|0.5 164062|0.5 164063|0.52778 164064|0.22222 164065|0.44444 164066|0.23611 164067|0.27778 164068|0.26389 164069|0.51389 164070|0.38889 164071|0.75 164072|0.75 164073|0.66667 164074|0.59722 164075|0.5 164076|0.30556 164077|0.45833 164078|0.33333 164079|0.51389 164080|0.5 164081|0.56944 164082|0.65278 164083|0.66667 164084|0.30556 164085|0.5 164086|0.38889 164087|0.5 164088|0.51389 164089|0.47222 164090|0.36111 164091|0.5 164092|0.5 164093|0.5 164094|0.56944 164095|0.5 164096|0.38889 164097|0.5 164098|0.5 164099|0.61111 164100|0.52778 164101|0.55556 164102|0.5 164103|0.44444 164104|0.44444 164105|0.48611 164106|0.5 164107|0.31944 164108|0.43056 164109|0.58333 164110|0.69444 164111|0.31944 164112|0.59722 164113|0.63889 164114|0.375 164115|0.54167 164116|0.56944 164117|0.34722 164118|0.375 164119|0.27778 164120|0.33333 164121|0.56944 164122|0.44444 164123|0.48611 164124|0.5 164125|0.63889 164126|0.5 164127|0.31944 164128|0.48611 164129|0.41667 164130|0.34722 164131|0.27778 164132|0.44444 164133|0.40278 164134|0.56944 164135|0.5 164136|0.48611 164137|0.31944 164138|0.44444 164139|0.48611 164140|0.22222 164141|0.47222 164142|0.88889 164143|0.76389 164144|0.86111 164145|0.69444 164146|0.48611 164147|0.5 164148|0.34722 164149|0.61111 164150|0.44444 164151|0.30556 164152|0.52778 164153|0.48611 164154|0.55556 164155|0.58333 164156|0.31944 164157|0.76389 164158|0.23611 164159|0.875 164160|0.625 164161|0.41667 164162|0.68056 164163|0.54167 164164|0.56944 164165|0.41667 164166|0.65278 164167|0.36111 164168|0.5 164169|0.5 164170|0.72222 164171|0.5 164172|0.22222 164173|0.44444 164174|0.72222 164175|0.33333 164176|0.59722 164177|0.55556 164178|0.16667 164179|0.51389 164180|0.72222 164181|0.52778 164182|0.5 164183|0.36111 164184|0.54167 164185|0.41667 164186|0.63889 164187|0.5 164188|0.33333 164189|0.5 164190|0.375 164191|0.44444 164192|0.56944 164193|0.31944 164194|0.30556 164195|0.31944 164196|0.16667 164197|0.125 164198|0.31944 164199|0.31944 164200|0.27778 164201|0.19444 164202|0.69444 164203|0.33333 164204|0.69444 164205|0.5 164206|0.375 164207|0.26389 164208|0.5 164209|0.5 164210|0.45833 164211|0.36111 164212|0.30556 164213|0.47222 164214|0.33333 164215|0.41667 164216|0.33333 164217|0.41667 164218|0.5 164219|0.36111 164220|0.30556 164221|0.27778 164222|0.33333 164223|0.47222 164224|0.5 164225|0.30556 164226|0.5 164227|0.625 164228|0.625 164229|0.5 164230|0.5 164231|0.29167 164232|0.375 164233|0.47222 164234|0.59722 164235|0.52778 164236|0.5 164237|0.44444 164238|0.31944 164239|0.61111 164240|0.80556 164241|0.59722 164242|0.54167 164243|0.70833 164244|0.69444 164245|0.52778 164246|0.16667 164247|0.5 164248|0.5 164249|0.5 164250|0.51389 164251|0.625 164252|0.20833 164253|0.19444 164254|0.77778 164255|0.63889 164256|0.33333 164257|0.20833 164258|0.16667 164259|0.33333 164260|0.52778 164261|0.45833 164262|0.45833 164263|0.52778 164264|0.38889 164265|0.52778 164266|0.5 164267|0.44444 164268|0.65278 164269|0.26389 164270|0.20833 164271|0.48611 164272|0.5 164273|0.44444 164274|0.20833 164275|0.58333 164276|0.26389 164277|0.30556 164278|0.41667 164279|0.38889 164280|0.22222 164281|0.20833 164282|0.19444 164283|0.125 164284|0.27778 164285|0.33333 164286|0.45833 164287|0.38889 164288|0.5 164289|0.56944 164290|0.15278 164291|0.44444 164292|0.26389 164293|0.45833 164294|0.45833 164295|0.44444 164296|0.31944 164297|0.41667 164298|0.375 164299|0.5 164300|0.33333 164301|0.33333 164302|0.41667 164303|0.19444 164304|0.31944 164305|0.27778 164306|0.36111 164307|0.45833 164308|0.66667 164309|0.30556 164310|0.38889 164311|0.43056 164312|0.31944 164313|0.61111 164314|0.45833 164315|0.34722 164316|0.51389 164317|0.5 164318|0.34722 164319|0.38889 164320|0.19444 164321|0.44444 164322|0.55556 164323|0.40278 164324|0.22222 164325|0.30556 164326|0.23611 164327|0.23611 164328|0.22222 164329|0.48611 164330|0.5 164331|0.55556 164332|0.34722 164333|0.31944 164334|0.23611 164335|0.5 164336|0.23611 164337|0.48611 164338|0.44444 164339|0.54167 164340|0.30556 164341|0.15278 164342|0.30556 164343|0.25 164344|0.5 164345|0.41667 164346|0.27778 164347|0.5 164348|0.54167 164349|0.38889 164350|0.18056 164351|0.11111 164352|0.5 164353|0.5 164354|0.23611 164355|0.44444 164356|0.47222 164357|0.31944 164358|0.20833 164359|0.41667 164360|0.22222 164361|0.52778 164362|0.5 164363|0.47222 164364|0.34722 164365|0.5 164366|0.5 164367|0.30556 164368|0.48611 164369|0.5 164370|0.5 164371|0.47222 164372|0.20833 164373|0.25 164374|0.27778 164375|0.33333 164376|0.23611 164377|0.5 164378|0.47222 164379|0.43056 164380|0.66667 164381|0.48611 164382|0.25 164383|0.5 164384|0.44444 164385|0.77778 164386|0.51389 164387|0.5 164388|0.5 164389|0.30556 164390|0.44444 164391|0.5 164392|0.44444 164393|0.44444 164394|0.45833 164395|0.5 164396|0.55556 164397|0.375 164398|0.19444 164399|0.44444 164400|0.54167 164401|0.41667 164402|0.34722 164403|0.41667 164404|0.30556 164405|0.40278 164406|0.30556 164407|0.5 164408|0.5 164409|0.58333 164410|0.29167 164411|0.40278 164412|0.44444 164413|0.54167 164414|0.44444 164415|0.66667 164416|0.5 164417|0.48611 164418|0.54167 164419|0.44444 164420|0.61111 164421|0.51389 164422|0.54167 164423|0.38889 164424|0.22222 164425|0.5 164426|0.52778 164427|0.47222 164428|0.47222 164429|0.38889 164430|0.52778 164431|0.55556 164432|0.26389 164433|0.48611 164434|0.45833 164435|0.25 164436|0.375 164437|0.36111 164438|0.5 164439|0.5 164440|0.47222 164441|0.59722 164442|0.61111 164443|0.5 164444|0.63889 164445|0.27778 164446|0.36111 164447|0.25 164448|0.44444 164449|0.44444 164450|0.55556 164451|0.55556 164452|0.76389 164453|0.5 164454|0.27778 164455|0.52778 164456|0.5 164457|0.5 164458|0.25 164459|0.54167 164460|0.38889 164461|0.30556 164462|0.51389 164463|0.5 164464|0.41667 164465|0.48611 164466|0.5 164467|0.44444 164468|0.375 164469|0.54167 164470|0.22222 164471|0.25 164472|0.5 164473|0.36111 164474|0.30556 164475|0.5 164476|0.34722 164477|0.55556 164478|0.41667 164479|0.54167 164480|0.90278 164481|0.41667 164482|0.38889 164483|0.54167 164484|0.52778 164485|0.43056 164486|0.5 164487|0.5 164488|0.51389 164489|0.66667 164490|0.625 164491|0.48611 164492|0.55556 164493|0.625 164494|0.5 164495|0.5 164496|0.44444 164497|0.51389 164498|0.56944 164499|0.5 164500|0.55556 164501|0.5 164502|0.5 164503|0.5 164504|0.375 164505|0.22222 164506|0.38889 164507|0.27778 164508|0.29167 164509|0.48611 164510|0.38889 164511|0.27778 164512|0.22222 164513|0.36111 164514|0.36111 164515|0.5 164516|0.26389 164517|0.29167 164518|0.33333 164519|0.22222 164520|0.34722 164521|0.18056 164522|0.125 164523|0.26389 164524|0.19444 164525|0.29167 164526|0.27778 164527|0.30556 164528|0.33333 164529|0.29167 164530|0.29167 164531|0.30556 164532|0.51389 164533|0.23611 164534|0.40278 164535|0.30556 164536|0.25 164537|0.31944 164538|0.22222 164539|0.375 164540|0.38889 164541|0.27778 164542|0.47222 164543|0.38889 164544|0.31944 164545|0.22222 164546|0.34722 164547|0.27778 164548|0.29167 164549|0.31944 164550|0.11111 164551|0.15278 164552|0.18056 164553|0.5 164554|0.29167 164555|0.11111 164556|0.38889 164557|0.30556 164558|0.47222 164559|0.27778 164560|0.125 164561|0.58333 164562|0.5 164563|0.52778 164564|0.5 164565|0.44444 164566|0.26389 164567|0.33333 164568|0.47222 164569|0.43056 164570|0.5 164571|0.22222 164572|0.5 164573|0.5 164574|0.23611 164575|0.48611 164576|0.48611 164577|0.52778 164578|0.5 164579|0.52778 164580|0.48611 164581|0.5 164582|0.5 164583|0.5 164584|0.61111 164585|0.5 164586|0.5 164587|0.54167 164588|0.47222 164589|0.5 164590|0.43056 164591|0.61111 164592|0.44444 164593|0.5 164594|0.36111 164595|0.61111 164596|0.75 164597|0.44444 164598|0.5 164599|0.61111 164600|0.5 164601|0.40278 164602|0.41667 164603|0.54167 164604|0.44444 164605|0.15278 164606|0.5 164607|0.5 164608|0.59722 164609|0.5 164610|0.5 164611|0.40278 164612|0.55556 164613|0.59722 164614|0.58333 164615|0.55556 164616|0.68056 164617|0.55556 164618|0.34722 164619|0.375 164620|0.45833 164621|0.41667 164622|0.25 164623|0.125 164624|0.25 164625|0.36111 164626|0.51389 164627|0.5 164628|0.23611 164629|0.33333 164630|0.47222 164631|0.625 164632|0.55556 164633|0.61111 164634|0.66667 164635|0.34722 164636|0.5 164637|0.27778 164638|0.5 164639|0.19444 164640|0.16667 164641|0.27778 164642|0.069444 164643|0.44444 164644|0.38889 164645|0.34722 164646|0.22222 164647|0.36111 164648|0.34722 164649|0.25 164650|0.56944 164651|0.44444 164652|0.5 164653|0.33333 164654|0.38889 164655|0.45833 164656|0.22222 164657|0.16667 164658|0.375 164659|0.069444 164660|0.5 164661|0.5 164662|0.48611 164663|0.51389 164664|0.44444 164665|0.43056 164666|0.31944 164667|0.5 164668|0.55556 164669|0.31944 164670|0.5 164671|0.56944 164672|0.5 164673|0.52778 164674|0.54167 164675|0.38889 164676|0.5 164677|0.52778 164678|0.55556 164679|0.38889 164680|0.43056 164681|0.26389 164682|0.33333 164683|0.36111 164684|0.54167 164685|0.375 164686|0.29167 164687|0.54167 164688|0.40278 164689|0.125 164690|0.18056 164691|0.34722 164692|0.31944 164693|0.45833 164694|0.26389 164695|0.23611 164696|0.083333 164697|0.38889 164698|0.43056 164699|0.76389 164700|0.27778 164701|0.38889 164702|0.27778 164703|0.27778 164704|0.58333 164705|0.5 164706|0.44444 164707|0.34722 164708|0.36111 164709|0.125 164710|0.29167 164711|0.41667 164712|0.16667 164713|0.23611 164714|0.11111 164715|0.16667 164716|0.63889 164717|0.30556 164718|0.45833 164719|0.15278 164720|0.375 164721|0.43056 164722|0.5 164723|0.16667 164724|0.38889 164725|0.43056 164726|0.45833 164727|0.51389 164728|0.58333 164729|0.56944 164730|0.54167 164731|0.65278 164732|0.54167 164733|0.83333 164734|0.52778 164735|0.5 164736|0.41667 164737|0.5 164738|0.44444 164739|0.5 164740|0.72222 164741|0.58333 164742|0.43056 164743|0.48611 164744|0.45833 164745|0.65278 164746|0.31944 164747|0.40278 164748|0.30556 164749|0.33333 164750|0.18056 164751|0.29167 164752|0.19444 164753|0.29167 164754|0.11111 164755|0.5 164756|0.30556 164757|0.33333 164758|0.31944 164759|0.27778 164760|0.55556 164761|0.55556 164762|0.375 164763|0.27778 164764|0.5 164765|0.48611 164766|0.41667 164767|0.25 164768|0.16667 164769|0.22222 164770|0.45833 164771|0.41667 164772|0.44444 164773|0.27778 164774|0.43056 164775|0.36111 164776|0.26389 164777|0.375 164778|0.40278 164779|0.34722 164780|0.33333 164781|0.41667 164782|0.43056 164783|0.33333 164784|0.56944 164785|0.45833 164786|0.5 164787|0.34722 164788|0.47222 164789|0.29167 164790|0.33333 164791|0.125 164792|0.22222 164793|0.5 164794|0.54167 164795|0.47222 164796|0.31944 164797|0.5 164798|0.51389 164799|0.38889 164800|0.5 164801|0.5 164802|0.625 164803|0.30556 164804|0.20833 164805|0.5 164806|0.51389 164807|0.55556 164808|0.33333 164809|0.52778 164810|0.44444 164811|0.30556 164812|0.63889 164813|0.44444 164814|0.59722 164815|0.41667 164816|0.41667 164817|0.44444 164818|0.5 164819|0.52778 164820|0.43056 164821|0.40278 164822|0.43056 164823|0.34722 164824|0.54167 164825|0.43056 164826|0.18056 164827|0.15278 164828|0.20833 164829|0.61111 164830|0.5 164831|0.69444 164832|0.55556 164833|0.68056 164834|0.44444 164835|0.38889 164836|0.23611 164837|0.625 164838|0.5 164839|0.34722 164840|0.51389 164841|0.29167 164842|0.58333 164843|0.66667 164844|0.52778 164845|0.48611 164846|0.30556 164847|0.5 164848|0.69444 164849|0.77778 164850|0.69444 164851|0.5 164852|0.58333 164853|0.61111 164854|0.5 164855|0.51389 164856|0.5 164857|0.22222 164858|0.51389 164859|0.51389 164860|0.5 164861|0.5 164862|0.48611 164863|0.44444 164864|0.5 164865|0.26389 164866|0.5 164867|0.55556 164868|0.27778 164869|0.58333 164870|0.26389 164871|0.5 164872|0.5 164873|0.5 164874|0.48611 164875|0.34722 164876|0.5 164877|0.43056 164878|0.5 164879|0.54167 164880|0.625 164881|0.31944 164882|0.56944 164883|0.33333 164884|0.5 164885|0.11111 164886|0.5 164887|0.11111 164888|0.26389 164889|0.25 164890|0.19444 164891|0.38889 164892|0.56944 164893|0.29167 164894|0.51389 164895|0.625 164896|0.625 164897|0.38889 164898|0.27778 164899|0.29167 164900|0.5 164901|0.52778 164902|0.63889 164903|0.43056 164904|0.5 164905|0.36111 164906|0.45833 164907|0.26389 164908|0.86111 164909|0.5 164910|0.20833 164911|0.27778 164912|0.88889 164913|0.40278 164914|0.61111 164915|0.55556 164916|0.61111 164917|0.29167 164918|0.22222 164919|0.45833 164920|0.43056 164921|0.36111 164922|0.27778 164923|0.097222 164924|0.40278 164925|0.125 164926|0.11111 164927|0.375 164928|0.27778 164929|0.44444 164930|0.47222 164931|0.19444 164932|0.40278 164933|0.43056 164934|0.27778 164935|0.34722 164936|0.55556 164937|0.15278 164938|0.31944 164939|0.11111 164940|0.013889 164941|0.22222 164942|0.55556 164943|0.13889 164944|0.125 164945|0.44444 164946|0.55556 164947|0.13889 164948|0.41667 164949|0.27778 164950|0.44444 164951|0.27778 164952|0.36111 164953|0.70833 164954|0.61111 164955|0.58333 164956|0.43056 164957|0.27778 164958|0.26389 164959|0.30556 164960|0.40278 164961|0.5 164962|0.51389 164963|0.5 164964|0.16667 164965|0.51389 164966|0.34722 164967|0.5 164968|0.29167 164969|0.44444 164970|0.38889 164971|0.51389 164972|0.38889 164973|0.5 164974|0.52778 164975|0.47222 164976|0.5 164977|0.5 164978|0.54167 164979|0.15278 164980|0.31944 164981|0.68056 164982|0.5 164983|0.27778 164984|0.18056 164985|0.36111 164986|0.41667 164987|0.5 164988|0.51389 164989|0.5 164990|0.5 164991|0.47222 164992|0.52778 164993|0.44444 164994|0.5 164995|0.55556 164996|0.5 164997|0.22222 164998|0.16667 164999|0.44444 165000|0.29167 165001|0.55556 165002|0.33333 165003|0.55556 165004|0.55556 165005|0.5 165006|0.54167 165007|0.33333 165008|0.45833 165009|0.51389 165010|0.47222 165011|0.55556 165012|0.5 165013|0.25 165014|0.44444 165015|0.5 165016|0.5 165017|0.40278 165018|0.27778 165019|0.22222 165020|0.40278 165021|0.48611 165022|0.25 165023|0.56944 165024|0.52778 165025|0.55556 165026|0.44444 165027|0.375 165028|0.27778 165029|0.55556 165030|0.41667 165031|0.48611 165032|0.34722 165033|0.38889 165034|0.29167 165035|0.36111 165036|0.41667 165037|0.52778 165038|0.55556 165039|0.5 165040|0.5 165041|0.5 165042|0.5 165043|0.5 165044|0.55556 165045|0.30556 165046|0.36111 165047|0.43056 165048|0.27778 165049|0.31944 165050|0.5 165051|0.125 165052|0.47222 165053|0.51389 165054|0.5 165055|0.5 165056|0.66667 165057|0.44444 165058|0.38889 165059|0.5 165060|0.40278 165061|0.33333 165062|0.5 165063|0.63889 165064|0.40278 165065|0.45833 165066|0.47222 165067|0.43056 165068|0.5 165069|0.59722 165070|0.51389 165071|0.59722 165072|0.40278 165073|0.31944 165074|0.58333 165075|0.31944 165076|0.43056 165077|0.51389 165078|0.58333 165079|0.47222 165080|0.36111 165081|0.41667 165082|0.40278 165083|0.44444 165084|0.44444 165085|0.40278 165086|0.5 165087|0.5 165088|0.65278 165089|0.34722 165090|0.36111 165091|0.51389 165092|0.36111 165093|0.34722 165094|0.27778 165095|0.30556 165096|0.19444 165097|0.38889 165098|0.47222 165099|0.30556 165100|0.30556 165101|0.375 165102|0.33333 165103|0.47222 165104|0.44444 165105|0.38889 165106|0.27778 165107|0.47222 165108|0.34722 165109|0.47222 165110|0.40278 165111|0.38889 165112|0.22222 165113|0.15278 165114|0.51389 165115|0.20833 165116|0.44444 165117|0.41667 165118|0.5 165119|0.34722 165120|0.45833 165121|0.36111 165122|0.30556 165123|0.20833 165124|0.125 165125|0.45833 165126|0.5 165127|0.5 165128|0.5 165129|0.47222 165130|0.80556 165131|0.51389 165132|0.31944 165133|0.5 165134|0.56944 165135|0.48611 165136|0.40278 165137|0.52778 165138|0.38889 165139|0.5 165140|0.40278 165141|0.5 165142|0.5 165143|0.56944 165144|0.34722 165145|0.15278 165146|0.40278 165147|0.19444 165148|0.33333 165149|0.56944 165150|0.5 165151|0.55556 165152|0.5 165153|0.56944 165154|0.47222 165155|0.52778 165156|0.65278 165157|0.41667 165158|0.23611 165159|0.38889 165160|0.44444 165161|0.56944 165162|0.5 165163|0.44444 165164|0.5 165165|0.5 165166|0.29167 165167|0.16667 165168|0.19444 165169|0.18056 165170|0.19444 165171|0.5 165172|0.43056 165173|0.51389 165174|0.54167 165175|0.54167 165176|0.5 165177|0.16667 165178|0.375 165179|0.48611 165180|0.51389 165181|0.48611 165182|0.48611 165183|0.125 165184|0.15278 165185|0.55556 165186|0.22222 165187|0.30556 165188|0.375 165189|0.19444 165190|0.40278 165191|0.47222 165192|0.40278 165193|0.5 165194|0.5 165195|0.54167 165196|0.56944 165197|0.44444 165198|0.45833 165199|0.36111 165200|0.58333 165201|0.5 165202|0.52778 165203|0.27778 165204|0.48611 165205|0.56944 165206|0.83333 165207|0.59722 165208|0.5 165209|0.84722 165210|0.44444 165211|0.76389 165212|0.43056 165213|0.38889 165214|0.5 165215|0.56944 165216|0.52778 165217|0.625 165218|0.81944 165219|0.55556 165220|0.25 165221|0.51389 165222|0.40278 165223|0.52778 165224|0.44444 165225|0.70833 165226|0.55556 165227|0.48611 165228|0.22222 165229|0.5 165230|0.51389 165231|0.47222 165232|0.58333 165233|0.11111 165234|0.375 165235|0.34722 165236|0.36111 165237|0.58333 165238|0.52778 165239|0.22222 165240|0.34722 165241|0.31944 165242|0.44444 165243|0.625 165244|0.30556 165245|0.40278 165246|0.27778 165247|0.20833 165248|0.56944 165249|0.34722 165250|0.31944 165251|0.45833 165252|0.55556 165253|0.375 165254|0.29167 165255|0.33333 165256|0.52778 165257|0.41667 165258|0.55556 165259|0.29167 165260|0.65278 165261|0.38889 165262|0.45833 165263|0.48611 165264|0.44444 165265|0.44444 165266|0.23611 165267|0.33333 165268|0.5 165269|0.27778 165270|0.38889 165271|0.31944 165272|0.36111 165273|0.27778 165274|0.27778 165275|0.29167 165276|0.25 165277|0.36111 165278|0.31944 165279|0.34722 165280|0.55556 165281|0.19444 165282|0.36111 165283|0.31944 165284|0.36111 165285|0.34722 165286|0.27778 165287|0.25 165288|0.19444 165289|0.47222 165290|0.48611 165291|0.34722 165292|0.29167 165293|0.33333 165294|0.22222 165295|0.55556 165296|0.69444 165297|0.5 165298|0.72222 165299|0.58333 165300|0.61111 165301|0.29167 165302|0.31944 165303|0.47222 165304|0.31944 165305|0.18056 165306|0.33333 165307|0.51389 165308|0.55556 165309|0.11111 165310|0.11111 165311|0.069444 165312|0.625 165313|0.125 165314|0.45833 165315|0.44444 165316|0.5 165317|0.48611 165318|0.43056 165319|0.44444 165320|0 165321|0.69444 165322|0.375 165323|0.56944 165324|0.55556 165325|0.5 165326|0.38889 165327|0.375 165328|1 165329|0.5 165330|0.66667 165331|0.77778 165332|0.77778 165333|0.875 165334|0.30556 165335|0.45833 165336|0.38889 165337|0.77778 165338|0.72222 165339|0.59722 165340|0.80556 165341|0.76389 165342|0.72222 165343|0.63889 165344|0.56944 165345|0.48611 165346|0.23611 165347|0.31944 165348|0.33333 165349|0.18056 165350|0.38889 165351|0.375 165352|0.38889 165353|0.19444 165354|0.5 165355|0.61111 165356|0.26389 165357|0.48611 165358|0.44444 165359|0.36111 165360|0.44444 165361|0.30556 165362|0.51389 165363|0.47222 165364|0.44444 165365|0.34722 165366|0.52778 165367|0.5 165368|0.5 165369|0.5 165370|0.40278 165371|0.31944 165372|0.27778 165373|0.33333 165374|0.5 165375|0.41667 165376|0.23611 165377|0.41667 165378|0.38889 165379|0.34722 165380|0.5 165381|0.31944 165382|0.48611 165383|0.5 165384|0.5 165385|0.33333 165386|0.5 165387|0.77778 165388|0.65278 165389|0.65278 165390|0.5 165391|0.5 165392|0.44444 165393|0.40278 165394|0.38889 165395|0.31944 165396|0.5 165397|0.47222 165398|0.5 165399|0.30556 165400|0.52778 165401|0.43056 165402|0.51389 165403|0.5 165404|0.26389 165405|0.29167 165406|0.027778 165407|0.48611 165408|0.23611 165409|0.38889 165410|0.77778 165411|0.48611 165412|0.36111 165413|0.41667 165414|0.40278 165415|0.5 165416|0.41667 165417|0.33333 165418|0.19444 165419|0.33333 165420|0.44444 165421|0.43056 165422|0.375 165423|0.38889 165424|0.45833 165425|0.41667 165426|0.52778 165427|0.5 165428|0.375 165429|0.33333 165430|0.069444 165431|0.5 165432|0.40278 165433|0.5 165434|0.58333 165435|0.16667 165436|0.44444 165437|0.27778 165438|0.069444 165439|0.47222 165440|0.38889 165441|0.16667 165442|0.16667 165443|0.52778 165444|0.43056 165445|0.36111 165446|0.51389 165447|0.44444 165448|0.375 165449|0.38889 165450|0.31944 165451|0.83333 165452|0.125 165453|0.27778 165454|0.43056 165455|0.41667 165456|0.27778 165457|0.30556 165458|0.31944 165459|0.41667 165460|0.44444 165461|0.41667 165462|0.5 165463|0.055556 165464|0.51389 165465|0.5 165466|0.5 165467|0.52778 165468|0.5 165469|0.65278 165470|0.63889 165471|0.58333 165472|0.5 165473|0.44444 165474|0.5 165475|0.26389 165476|0.47222 165477|0.31944 165478|0.25 165479|0.47222 165480|0.11111 165481|0.33333 165482|0.58333 165483|0.61111 165484|0.5 165485|0.29167 165486|0.25 165487|0.30556 165488|0.43056 165489|0.43056 165490|0.56944 165491|0.19444 165492|0.47222 165493|0.76389 165494|0.18056 165495|0.5 165496|0.51389 165497|0.34722 165498|0.22222 165499|0.27778 165500|0.48611 165501|0.54167 165502|0.30556 165503|0.41667 165504|0.5 165505|0.61111 165506|0.56944 165507|0.52778 165508|0.5 165509|0.66667 165510|0.61111 165511|0.41667 165512|0.72222 165513|0.5 165514|0.65278 165515|0.54167 165516|0.66667 165517|0.375 165518|0.34722 165519|0.30556 165520|0.55556 165521|0.5 165522|0.5 165523|0.5 165524|0.26389 165525|0.70833 165526|0.55556 165527|0.5 165528|0.5 165529|0.55556 165530|0.61111 165531|0.45833 165532|0.5 165533|0.44444 165534|0.5 165535|0.44444 165536|0.48611 165537|0.55556 165538|0.38889 165539|0.36111 165540|0.80556 165541|0.47222 165542|0.27778 165543|0.48611 165544|0.61111 165545|0.72222 165546|0.66667 165547|0.5 165548|0.41667 165549|0.31944 165550|0.36111 165551|0.66667 165552|0.29167 165553|0.40278 165554|0.5 165555|0.25 165556|0.375 165557|0.34722 165558|0.38889 165559|0.66667 165560|0.33333 165561|0.31944 165562|0.19444 165563|0.19444 165564|0.20833 165565|0.083333 165566|0.375 165567|0.48611 165568|0.34722 165569|0.27778 165570|0.5 165571|0.61111 165572|0.40278 165573|0.61111 165574|0.19444 165575|0.15278 165576|0.88889 165577|0.58333 165578|0.52778 165579|0.875 165580|0.27778 165581|0.33333 165582|0.40278 165583|0.375 165584|0.31944 165585|0.23611 165586|0.5 165587|0.47222 165588|0.66667 165589|0.5 165590|0.27778 165591|0.26389 165592|0.59722 165593|0.43056 165594|0.41667 165595|0.34722 165596|0.20833 165597|0.45833 165598|0.31944 165599|0.27778 165600|0.20833 165601|0.30556 165602|0.61111 165603|0.58333 165604|0.38889 165605|0.68056 165606|0.44444 165607|0.70833 165608|0.66667 165609|0.56944 165610|0.75 165611|0.5 165612|0.625 165613|0.61111 165614|0.70833 165615|0.69444 165616|0.51389 165617|0.66667 165618|0.34722 165619|0.36111 165620|0.625 165621|0.5 165622|0.5 165623|0.5 165624|0.55556 165625|0.63889 165626|0.59722 165627|0.55556 165628|0.5 165629|0.55556 165630|0.5 165631|0.68056 165632|0.41667 165633|0.44444 165634|0.48611 165635|0.51389 165636|0.25 165637|0.33333 165638|0.58333 165639|0.11111 165640|0.5 165641|0.11111 165642|0.13889 165643|0.79167 165644|0.48611 165645|0.70833 165646|0.5 165647|0.65278 165648|0.5 165649|0.45833 165650|0.5 165651|0.25 165652|0.22222 165653|0.083333 165654|0.52778 165655|0.31944 165656|0.5 165657|0.61111 165658|0.44444 165659|0.5 165660|0.25 165661|0.33333 165662|0.81944 165663|0.26389 165664|0.33333 165665|0.5 165666|0.25 165667|0.77778 165668|0.72222 165669|0.45833 165670|0.52778 165671|0.51389 165672|0.55556 165673|0.5 165674|0.45833 165675|0.26389 165676|0.5 165677|0.36111 165678|0.375 165679|0.5 165680|0.51389 165681|0.56944 165682|0.5 165683|0.43056 165684|0.47222 165685|0.44444 165686|0.26389 165687|0.52778 165688|0.66667 165689|0.55556 165690|0.41667 165691|0.36111 165692|0.45833 165693|0.5 165694|0.61111 165695|0.5 165696|0.625 165697|0.52778 165698|0.625 165699|0.5 165700|0.5 165701|0.5 165702|0.26389 165703|0.47222 165704|0.47222 165705|0.5 165706|0.5 165707|0.51389 165708|0.58333 165709|0.5 165710|0.48611 165711|0.54167 165712|0.5 165713|0.51389 165714|0.5 165715|0.51389 165716|0.36111 165717|0.43056 165718|0.625 165719|0.48611 165720|0.63889 165721|0.44444 165722|0.44444 165723|0.36111 165724|0.44444 165725|0.44444 165726|0.34722 165727|0.33333 165728|0.54167 165729|0.41667 165730|0.73611 165731|0.26389 165732|0.625 165733|0.33333 165734|0.33333 165735|0.76389 165736|0.38889 165737|0.27778 165738|0.29167 165739|0.19444 165740|0.23611 165741|0.41667 165742|0.47222 165743|0.33333 165744|0.5 165745|0.5 165746|0.54167 165747|0.58333 165748|0.41667 165749|0.30556 165750|0.29167 165751|0.22222 165752|0.18056 165753|0.26389 165754|0.40278 165755|0.54167 165756|0.47222 165757|0.68056 165758|0.51389 165759|0.65278 165760|0.72222 165761|0.27778 165762|0.41667 165763|0.43056 165764|0.31944 165765|0.41667 165766|0.38889 165767|0.38889 165768|0.5 165769|0.15278 165770|0.5 165771|0.73611 165772|0.43056 165773|0.34722 165774|0.52778 165775|0.41667 165776|0.27778 165777|0.16667 165778|0.29167 165779|0.19444 165780|0.44444 165781|0.47222 165782|0.027778 165783|0.5 165784|0.33333 165785|0.58333 165786|0.52778 165787|0.40278 165788|0.52778 165789|0.38889 165790|0.5 165791|0.59722 165792|0.51389 165793|0.66667 165794|0.34722 165795|0.44444 165796|0.34722 165797|0.20833 165798|0.29167 165799|0.18056 165800|0.055556 165801|0.11111 165802|0.36111 165803|0.26389 165804|0.29167 165805|0.38889 165806|0.43056 165807|0.43056 165808|0.625 165809|0.47222 165810|0.48611 165811|0.58333 165812|0.61111 165813|0.44444 165814|0.30556 165815|0.33333 165816|0.5 165817|0.34722 165818|0.5 165819|0.5 165820|0.5 165821|0.48611 165822|0.18056 165823|0.30556 165824|0.29167 165825|0.61111 165826|0.34722 165827|0.33333 165828|0.36111 165829|0.40278 165830|0.16667 165831|0.5 165832|0.56944 165833|0.54167 165834|0.45833 165835|0.38889 165836|0.43056 165837|0.59722 165838|0.5 165839|0.48611 165840|0.43056 165841|0.5 165842|0.66667 165843|0.23611 165844|0.5 165845|0.5 165846|0.45833 165847|0.5 165848|0.58333 165849|0.44444 165850|0.5 165851|0.41667 165852|0.44444 165853|0.48611 165854|0.51389 165855|0.625 165856|0.44444 165857|0.26389 165858|0.36111 165859|0.41667 165860|0.19444 165861|0.16667 165862|0.125 165863|0.54167 165864|0.59722 165865|0.54167 165866|0.31944 165867|0.40278 165868|0.44444 165869|0.27778 165870|0.43056 165871|0.51389 165872|0.48611 165873|0.54167 165874|0.5 165875|0.5 165876|0.5 165877|0.44444 165878|0.5 165879|0.48611 165880|0.5 165881|0.5 165882|0.54167 165883|0.26389 165884|0.61111 165885|0.54167 165886|0.20833 165887|0.25 165888|0.5 165889|0.45833 165890|0.5 165891|0.52778 165892|0.44444 165893|0.55556 165894|0.5 165895|0.44444 165896|0.38889 165897|0.5 165898|0.44444 165899|0.5 165900|0.5 165901|0.375 165902|0.22222 165903|0.33333 165904|0.41667 165905|0.26389 165906|0.27778 165907|0.45833 165908|0.5 165909|0.5 165910|0.38889 165911|0.33333 165912|0.27778 165913|0.51389 165914|0.27778 165915|0.16667 165916|0.36111 165917|0.40278 165918|0.58333 165919|0.66667 165920|0.90278 165921|0.5 165922|0.55556 165923|0.29167 165924|0.36111 165925|0.47222 165926|0.34722 165927|0.44444 165928|0.44444 165929|0.54167 165930|0.48611 165931|0.38889 165932|0.625 165933|0.41667 165934|0.31944 165935|0.30556 165936|0.55556 165937|0.38889 165938|0.36111 165939|0.63889 165940|0.47222 165941|0.48611 165942|0.56944 165943|0.29167 165944|0.31944 165945|0.44444 165946|0.38889 165947|0.23611 165948|0.33333 165949|0.20833 165950|0.56944 165951|0.11111 165952|0.61111 165953|0.20833 165954|0.38889 165955|0.069444 165956|0.30556 165957|0.15278 165958|0.59722 165959|0.55556 165960|0.5 165961|0.45833 165962|0.5 165963|0.375 165964|0.625 165965|0.63889 165966|0.63889 165967|0.55556 165968|0.66667 165969|0.51389 165970|0.43056 165971|0.38889 165972|0.44444 165973|0.48611 165974|0.41667 165975|0.48611 165976|0.59722 165977|0.43056 165978|0.44444 165979|0.055556 165980|0.52778 165981|0.54167 165982|0.34722 165983|0.27778 165984|0.23611 165985|0.23611 165986|0.069444 165987|0.33333 165988|0.30556 165989|0.27778 165990|0.43056 165991|0.52778 165992|0.48611 165993|0.41667 165994|0.26389 165995|0.5 165996|0.5 165997|0.58333 165998|0.33333 165999|0.36111 166000|0.25 166001|0.54167 166002|0.5 166003|0.23611 166004|0.34722 166005|0.36111 166006|0.15278 166007|0.27778 166008|0.25 166009|0.29167 166010|0.19444 166011|0.36111 166012|0.15278 166013|0.33333 166014|0.38889 166015|0.097222 166016|0.44444 166017|0.41667 166018|0.26389 166019|0.27778 166020|0.41667 166021|0.27778 166022|0.41667 166023|0.31944 166024|0.30556 166025|0.375 166026|0.34722 166027|0.22222 166028|0.34722 166029|0.38889 166030|0.38889 166031|0.27778 166032|0.625 166033|0.30556 166034|0.36111 166035|0.13889 166036|0.55556 166037|0.22222 166038|0.48611 166039|0.27778 166040|0.55556 166041|0.54167 166042|0.44444 166043|0.30556 166044|0.29167 166045|0.23611 166046|0.30556 166047|0.29167 166048|0.34722 166049|0.40278 166050|0.36111 166051|0.375 166052|0.31944 166053|0.375 166054|0.26389 166055|0.26389 166056|0.5 166057|0.41667 166058|0.375 166059|0.26389 166060|0.36111 166061|0.44444 166062|0.40278 166063|0.5 166064|0.38889 166065|0.5 166066|0.33333 166067|0.40278 166068|0.5 166069|0.625 166070|0.52778 166071|0.51389 166072|0.51389 166073|0.27778 166074|0.44444 166075|0.5 166076|0.5 166077|0.5 166078|0.5 166079|0.59722 166080|0.59722 166081|0.51389 166082|0.52778 166083|0.55556 166084|0.5 166085|0.5 166086|0.55556 166087|0.38889 166088|0.51389 166089|0.45833 166090|0.41667 166091|0.625 166092|0.5 166093|0.19444 166094|0.23611 166095|0.25 166096|0.31944 166097|0.5 166098|0.51389 166099|0.70833 166100|0.5 166101|0.5 166102|0.44444 166103|0.5 166104|0.5 166105|0.38889 166106|0.55556 166107|0.5 166108|0.51389 166109|0.68056 166110|0.27778 166111|0.43056 166112|0.5 166113|0.38889 166114|0.5 166115|0.58333 166116|0.097222 166117|0.47222 166118|0.38889 166119|0.36111 166120|0.27778 166121|0.52778 166122|0.38889 166123|0.47222 166124|0.19444 166125|0.19444 166126|0.55556 166127|0.58333 166128|0.20833 166129|0.33333 166130|0.55556 166131|0.56944 166132|0.61111 166133|0.58333 166134|0.44444 166135|0.65278 166136|0.44444 166137|0.38889 166138|0.52778 166139|0.41667 166140|0.375 166141|0.5 166142|0.5 166143|0.34722 166144|0.38889 166145|0.25 166146|0.52778 166147|0.30556 166148|0.5 166149|0.47222 166150|0.5 166151|0.5 166152|0.29167 166153|0.44444 166154|0.52778 166155|0.27778 166156|0.25 166157|0.5 166158|0.55556 166159|0.51389 166160|0.51389 166161|0.5 166162|0.40278 166163|0.52778 166164|0.5 166165|0.44444 166166|0.25 166167|0.31944 166168|0.27778 166169|0.18056 166170|0.55556 166171|0.51389 166172|0.125 166173|0.5 166174|0.5 166175|0.61111 166176|0.19444 166177|0.27778 166178|0.45833 166179|0.58333 166180|0.47222 166181|0.44444 166182|0.70833 166183|0.44444 166184|0.5 166185|0.66667 166186|0.33333 166187|0.20833 166188|0.65278 166189|0.16667 166190|0.56944 166191|0.51389 166192|0.5 166193|0.44444 166194|0.33333 166195|0.25 166196|0.5 166197|0.56944 166198|0.38889 166199|0.20833 166200|0.63889 166201|0.27778 166202|0.375 166203|0.41667 166204|0.47222 166205|0.56944 166206|0.43056 166207|0.56944 166208|0.5 166209|0.19444 166210|0.33333 166211|0.375 166212|0.51389 166213|0.26389 166214|0.81944 166215|0.51389 166216|0.51389 166217|0.375 166218|0.63889 166219|0.41667 166220|0.41667 166221|0.5 166222|0.31944 166223|0.44444 166224|0.45833 166225|0.40278 166226|0.31944 166227|0.43056 166228|0.36111 166229|0.27778 166230|0.20833 166231|0.61111 166232|0.56944 166233|0.375 166234|0.36111 166235|0.55556 166236|0.375 166237|0.59722 166238|0.61111 166239|0.70833 166240|0.52778 166241|0.5 166242|0.23611 166243|0.625 166244|0.52778 166245|0.30556 166246|0.44444 166247|0.51389 166248|0.59722 166249|0.5 166250|0.5 166251|0.45833 166252|0.66667 166253|0.61111 166254|0.66667 166255|0.70833 166256|0.54167 166257|0.55556 166258|0.5 166259|0.41667 166260|0.43056 166261|0.68056 166262|0.48611 166263|0.54167 166264|0.43056 166265|0.26389 166266|0.33333 166267|0.61111 166268|0.625 166269|0.51389 166270|0.375 166271|0.45833 166272|0.41667 166273|0.5 166274|0.58333 166275|0.5 166276|0.63889 166277|0.5 166278|0.56944 166279|0.43056 166280|0.5 166281|0.40278 166282|0.34722 166283|0.5 166284|0.54167 166285|0.68056 166286|0.5 166287|0.58333 166288|0.097222 166289|0.5 166290|0.33333 166291|0.45833 166292|0.25 166293|0.45833 166294|0.40278 166295|0.54167 166296|0.52778 166297|0.47222 166298|0.5 166299|0.38889 166300|0.5 166301|0.5 166302|0.59722 166303|0.5 166304|0.55556 166305|0.5 166306|0.16667 166307|0.23611 166308|0.16667 166309|0.81944 166310|0.29167 166311|0.25 166312|0.13889 166313|0.27778 166314|0.097222 166315|0.33333 166316|0.15278 166317|0.79167 166318|0.5 166319|0.5 166320|0.61111 166321|0.56944 166322|0.375 166323|0.25 166324|0.5 166325|0.5 166326|0.48611 166327|0.16667 166328|0.5 166329|0.25 166330|0.22222 166331|0.56944 166332|0.5 166333|0.5 166334|0.43056 166335|0.5 166336|0.5 166337|0.41667 166338|0.23611 166339|0.26389 166340|0.5 166341|0.5 166342|0.5 166343|0.15278 166344|0.15278 166345|0.375 166346|0.56944 166347|0.52778 166348|0.58333 166349|0.63889 166350|0.51389 166351|0.52778 166352|0.29167 166353|0.44444 166354|0.65278 166355|0.69444 166356|0.45833 166357|0.55556 166358|0.22222 166359|0.55556 166360|0.36111 166361|0.44444 166362|0.375 166363|0.34722 166364|0.5 166365|0.5 166366|0.52778 166367|0.45833 166368|0.40278 166369|0.58333 166370|0.40278 166371|0.43056 166372|0.26389 166373|0.52778 166374|0.70833 166375|0.55556 166376|0.44444 166377|0.54167 166378|0.5 166379|0.47222 166380|0.5 166381|0.5 166382|0.54167 166383|0.58333 166384|0.48611 166385|0.5 166386|0.47222 166387|0.30556 166388|0.38889 166389|0.15278 166390|0.59722 166391|0.5 166392|0.61111 166393|0.5 166394|0.55556 166395|0.5 166396|0.5 166397|0.72222 166398|0.5 166399|0.31944 166400|0.33333 166401|0.51389 166402|0.22222 166403|0.20833 166404|0.22222 166405|0.47222 166406|0.56944 166407|0.375 166408|0.5 166409|0.5 166410|0.5 166411|0.5 166412|0.61111 166413|0.5 166414|0.5 166415|0.16667 166416|0.40278 166417|0.52778 166418|0.72222 166419|0.59722 166420|0.43056 166421|0.5 166422|0.61111 166423|0.72222 166424|0.5 166425|0.29167 166426|0.5 166427|0.33333 166428|0.5 166429|0.25 166430|0.27778 166431|0.5 166432|0.27778 166433|0.16667 166434|0.34722 166435|0.11111 166436|0.55556 166437|0.55556 166438|0.59722 166439|0.59722 166440|0.58333 166441|0.34722 166442|0.41667 166443|0.26389 166444|0.55556 166445|0.69444 166446|0.79167 166447|0.76389 166448|0.77778 166449|0.59722 166450|0.41667 166451|0.48611 166452|0.47222 166453|0.73611 166454|0.65278 166455|0.30556 166456|0.55556 166457|0.56944 166458|0.79167 166459|0.55556 166460|0.68056 166461|0.48611 166462|0.54167 166463|0.44444 166464|0.58333 166465|0.5 166466|0.36111 166467|0.5 166468|0.93056 166469|0.45833 166470|0.47222 166471|0.63889 166472|0.48611 166473|0.68056 166474|0.5 166475|0.375 166476|0.27778 166477|0.33333 166478|0.18056 166479|0.73611 166480|0.34722 166481|0.43056 166482|0.33333 166483|0.44444 166484|0.5 166485|0.51389 166486|0.61111 166487|0.5 166488|0.47222 166489|0.5 166490|0.5 166491|0.38889 166492|0.36111 166493|0.5 166494|0.45833 166495|0.18056 166496|0.55556 166497|0.38889 166498|0.40278 166499|0.52778 166500|0.11111 166501|0.43056 166502|0.5 166503|0.25 166504|0.36111 166505|0.88889 166506|0.29167 166507|0.5 166508|0.5 166509|0.5 166510|0.38889 166511|0.55556 166512|0.27778 166513|0.5 166514|0.5 166515|0.40278 166516|0.33333 166517|0.5 166518|0.055556 166519|0.52778 166520|0.44444 166521|0.52778 166522|0.41667 166523|0.30556 166524|0.125 166525|0.43056 166526|0.27778 166527|0.5 166528|0.52778 166529|0.27778 166530|0.56944 166531|0.75 166532|0.47222 166533|0.5 166534|0.51389 166535|0.5 166536|0.375 166537|0.44444 166538|0.5 166539|0.72222 166540|0.5 166541|0.48611 166542|0.56944 166543|0.5 166544|0.43056 166545|0.375 166546|0.36111 166547|0.55556 166548|0.58333 166549|0.43056 166550|0.43056 166551|0.38889 166552|0.48611 166553|0.43056 166554|0.51389 166555|0.51389 166556|0.33333 166557|0.54167 166558|0.44444 166559|0.11111 166560|0.65278 166561|0.5 166562|0.52778 166563|0.16667 166564|0.18056 166565|0.22222 166566|0.59722 166567|0.52778 166568|0.69444 166569|0.5 166570|0.77778 166571|0.38889 166572|0.44444 166573|0.66667 166574|0.26389 166575|0.23611 166576|0.29167 166577|0.65278 166578|0.52778 166579|0.51389 166580|0.52778 166581|0.70833 166582|0.59722 166583|0.5 166584|0.5 166585|0.40278 166586|0.47222 166587|0.47222 166588|0.27778 166589|0.48611 166590|0.5 166591|0.375 166592|0.5 166593|0.5 166594|0.38889 166595|0.33333 166596|0.75 166597|0.47222 166598|0.70833 166599|0.48611 166600|0.27778 166601|0.5 166602|0.13889 166603|0.45833 166604|0.36111 166605|0.43056 166606|0.47222 166607|0.41667 166608|0.55556 166609|0.5 166610|0.40278 166611|0.33333 166612|0.5 166613|0.34722 166614|0.22222 166615|0.5 166616|0.20833 166617|0.375 166618|0.48611 166619|0.43056 166620|0.38889 166621|0.44444 166622|0.30556 166623|0.16667 166624|0.31944 166625|0.38889 166626|0.19444 166627|0.38889 166628|0.44444 166629|0.625 166630|0.375 166631|0.44444 166632|0.36111 166633|0.34722 166634|0.31944 166635|0.43056 166636|0.34722 166637|0.66667 166638|0.54167 166639|0.40278 166640|0.36111 166641|0.29167 166642|0.27778 166643|0.44444 166644|0.27778 166645|0.31944 166646|0.54167 166647|0.5 166648|0.5 166649|0.19444 166650|0.40278 166651|0.47222 166652|0.33333 166653|0.38889 166654|0.5 166655|0.36111 166656|0.41667 166657|0.48611 166658|0.33333 166659|0.47222 166660|0.22222 166661|0.43056 166662|0.34722 166663|0.63889 166664|0.41667 166665|0.34722 166666|0.31944 166667|0.29167 166668|0.52778 166669|0.38889 166670|0.26389 166671|0.29167 166672|0.48611 166673|0.18056 166674|0.44444 166675|0.33333 166676|0.40278 166677|0.25 166678|0.56944 166679|0.43056 166680|0.25 166681|0.43056 166682|0.34722 166683|0.54167 166684|0.43056 166685|0.13889 166686|0.51389 166687|0.26389 166688|0.27778 166689|0.23611 166690|0.29167 166691|0.44444 166692|0.33333 166693|0.23611 166694|0.33333 166695|0.58333 166696|0.33333 166697|0.52778 166698|0.33333 166699|0.36111 166700|0.45833 166701|0.5 166702|0.5 166703|0.44444 166704|0.58333 166705|0.58333 166706|0.5 166707|0.56944 166708|0.5 166709|0.54167 166710|0.52778 166711|0.61111 166712|0.61111 166713|0.52778 166714|0.44444 166715|0.56944 166716|0.5 166717|0.40278 166718|0.5 166719|0.65278 166720|0.63889 166721|0.44444 166722|0.5 166723|0.38889 166724|0.43056 166725|0.5 166726|0.41667 166727|0.5 166728|0.51389 166729|0.40278 166730|0.5 166731|0.56944 166732|0.51389 166733|0.36111 166734|0.5 166735|0.44444 166736|0.5 166737|0.29167 166738|0.5 166739|0.5 166740|0.5 166741|0.5 166742|0.5 166743|0.5 166744|0.68056 166745|0.65278 166746|0.18056 166747|0.58333 166748|0.36111 166749|0.47222 166750|0.54167 166751|0.52778 166752|0.52778 166753|0.36111 166754|0.55556 166755|0.47222 166756|0.54167 166757|0.41667 166758|0.26389 166759|0.33333 166760|0.31944 166761|0.22222 166762|0.34722 166763|0.48611 166764|0.31944 166765|0.38889 166766|0.75 166767|0.41667 166768|0.47222 166769|0.48611 166770|0.36111 166771|0.45833 166772|0.5 166773|0.44444 166774|0.27778 166775|0.70833 166776|0.13889 166777|0.33333 166778|0.27778 166779|0.27778 166780|0.47222 166781|0.40278 166782|0.38889 166783|0.36111 166784|0.23611 166785|0.55556 166786|0.56944 166787|0.41667 166788|0.40278 166789|0.33333 166790|0.38889 166791|0.30556 166792|0.25 166793|0.33333 166794|0.43056 166795|0.26389 166796|0.29167 166797|0.36111 166798|0.33333 166799|0.34722 166800|0.055556 166801|0.069444 166802|0.15278 166803|0.22222 166804|0.38889 166805|0.29167 166806|0.59722 166807|0.625 166808|0.63889 166809|0.5 166810|0.375 166811|0.33333 166812|0.29167 166813|0.44444 166814|0.38889 166815|0.47222 166816|0.5 166817|0.61111 166818|0.5 166819|0.38889 166820|0.27778 166821|0.31944 166822|0.51389 166823|0.45833 166824|0.45833 166825|0.56944 166826|0.58333 166827|0.5 166828|0.43056 166829|0.48611 166830|0.27778 166831|0.55556 166832|0.54167 166833|0.56944 166834|0.41667 166835|0.5 166836|0.40278 166837|0.34722 166838|0.48611 166839|0.5 166840|0.43056 166841|0.40278 166842|0.5 166843|0.52778 166844|0.625 166845|0.27083 166846|0.5 166847|0.26389 166848|0.26389 166849|0.33333 166850|0.38889 166851|0.44444 166852|0.34722 166853|0.375 166854|0.20833 166855|0.30556 166856|0.22222 166857|0.38889 166858|0.38889 166859|0.33333 166860|0.38889 166861|0.26389 166862|0.18056 166863|0.25 166864|0.23611 166865|0.34722 166866|0.125 166867|0.18056 166868|0.29167 166869|0.083333 166870|0.48611 166871|0.22222 166872|0.26389 166873|0.40278 166874|0.22222 166875|0.44444 166876|0.29167 166877|0.33333 166878|0.30556 166879|0.31944 166880|0.34722 166881|0.25 166882|0.45833 166883|0.40278 166884|0.5 166885|0.43056 166886|0.44444 166887|0.26389 166888|0.43056 166889|0.76389 166890|0.56944 166891|0.73611 166892|0.59722 166893|0.66667 166894|0.59722 166895|0.48611 166896|0.38889 166897|0.36111 166898|0.61111 166899|0.5 166900|0.5 166901|0.36111 166902|0.47222 166903|0.44444 166904|0.5 166905|0.59722 166906|0.5 166907|0.5 166908|0.47222 166909|0.40278 166910|0.44444 166911|0.34722 166912|0.18056 166913|0.5 166914|0.38889 166915|0.31944 166916|0.52778 166917|0.26389 166918|0.23611 166919|0.44444 166920|0.76389 166921|0.41667 166922|0.33333 166923|0.34722 166924|0.33333 166925|0.27778 166926|0.27778 166927|0.51389 166928|0.36111 166929|0.55556 166930|0.34722 166931|0.20833 166932|0.30556 166933|0.375 166934|0.29167 166935|0.41667 166936|0.41667 166937|0.13889 166938|0.375 166939|0.15278 166940|0.72222 166941|0.30556 166942|0.38889 166943|0.55556 166944|0.31944 166945|0.25 166946|0.38889 166947|0.5 166948|0.375 166949|0.44444 166950|0.47222 166951|0.55556 166952|0.27778 166953|0.47222 166954|0.41667 166955|0.5 166956|0.44444 166957|0.38889 166958|0.31944 166959|0.34722 166960|0.38889 166961|0.22222 166962|0.23611 166963|0.5 166964|0.41667 166965|0.375 166966|0.5 166967|0.43056 166968|0.375 166969|0.52778 166970|0.44444 166971|0.36111 166972|0.47222 166973|0.38889 166974|0.45833 166975|0.30556 166976|0.36111 166977|0.5 166978|0.34722 166979|0.31944 166980|0.23611 166981|0.33333 166982|0.27778 166983|0.16667 166984|0.29167 166985|0.13889 166986|0.22222 166987|0.43056 166988|0.48611 166989|0.375 166990|0.38889 166991|0.5 166992|0.30556 166993|0.52778 166994|0.40278 166995|0.5 166996|0.45833 166997|0.47222 166998|0.38889 166999|0.44444 167000|0.45833 167001|0.51389 167002|0.26389 167003|0.30556 167004|0.41667 167005|0.27778 167006|0.47222 167007|0.48611 167008|0.30556 167009|0.25 167010|0.36111 167011|0.31944 167012|0.5 167013|0.61111 167014|0.45833 167015|0.47222 167016|0.5 167017|0.59722 167018|0.5 167019|0.16667 167020|0.23611 167021|0.31944 167022|0.5 167023|0.58333 167024|0.5 167025|0.43056 167026|0.20833 167027|0.41667 167028|0.22222 167029|0.375 167030|0.25 167031|0.36111 167032|0.22222 167033|0.33333 167034|0.22222 167035|0.45833 167036|0.44444 167037|0.36111 167038|0.375 167039|0.055556 167040|0.33333 167041|0.375 167042|0.25 167043|0.5 167044|0.66667 167045|0.27778 167046|0.43056 167047|0.41667 167048|0.5 167049|0.16667 167050|0.125 167051|0.29167 167052|0.5 167053|0.375 167054|0.5 167055|0.5 167056|0.5 167057|0.44444 167058|0.52778 167059|0.45833 167060|0.097222 167061|0.33333 167062|0.34722 167063|0.25 167064|0.25 167065|0.5 167066|0.375 167067|0.48611 167068|0.33333 167069|0.36111 167070|0.41667 167071|0.34722 167072|0.27778 167073|0.5 167074|0.38889 167075|0.38889 167076|0.43056 167077|0.5 167078|0.48611 167079|0.41667 167080|0.38889 167081|0.30556 167082|0.33333 167083|0.55556 167084|0.29167 167085|0.38889 167086|0.41667 167087|0.23611 167088|0.34722 167089|0.20833 167090|0.22222 167091|0.26389 167092|0.34722 167093|0.083333 167094|0.11111 167095|0.48611 167096|0.19444 167097|0.44444 167098|0.43056 167099|0.22222 167100|0.33333 167101|0.75 167102|0.625 167103|0.66667 167104|0.55556 167105|0.59722 167106|0.51389 167107|0.40278 167108|0.33333 167109|0.23611 167110|0.22222 167111|0.40278 167112|0.58333 167113|0.34722 167114|0.43056 167115|0.44444 167116|0.38889 167117|0.38889 167118|0.48611 167119|0.25 167120|0.25 167121|0.63889 167122|0.44444 167123|0.38889 167124|0.23611 167125|0.58333 167126|0.40278 167127|0.66667 167128|0.69444 167129|0.59722 167130|0.48611 167131|0.48611 167132|0.66667 167133|0.56944 167134|0.23611 167135|0.52778 167136|0.31944 167137|0.5 167138|0.22222 167139|0.44444 167140|0.47222 167141|0.58333 167142|0.65278 167143|0.52778 167144|0.59722 167145|0.13889 167146|0.5 167147|0.5 167148|0.38889 167149|0.44444 167150|0.5 167151|0.44444 167152|0.20833 167153|0.16667 167154|0.5 167155|0.5 167156|0.5 167157|0.5 167158|0.5 167159|0.40278 167160|0.5 167161|0.5 167162|0.5 167163|0.625 167164|0.5 167165|0.40278 167166|0.48611 167167|0.33333 167168|0.5 167169|0.5 167170|0.5 167171|0.5 167172|0.5 167173|0.22222 167174|0.5 167175|0.40278 167176|0.29167 167177|0.48611 167178|0.66667 167179|0.66667 167180|0.5 167181|0.5 167182|0.41667 167183|0.44444 167184|0.41667 167185|0.43056 167186|0.61111 167187|0.5 167188|0.51389 167189|0.44444 167190|0.5 167191|0.5 167192|0.52778 167193|0.36111 167194|0.5 167195|0.43056 167196|0.5 167197|0.43056 167198|0.5 167199|0.5 167200|0.5 167201|0.5 167202|0.29167 167203|0.5 167204|0.52778 167205|0.34722 167206|0.5 167207|0.5 167208|0.5 167209|0.5 167210|0.27778 167211|0.45833 167212|0.5 167213|0.5 167214|0.5 167215|0.56944 167216|0.5 167217|0.52778 167218|0.5 167219|0.5 167220|0.5 167221|0.30556 167222|0.5 167223|0.44444 167224|0.43056 167225|0.45833 167226|0.47222 167227|0.5 167228|0.5 167229|0.5 167230|0.63889 167231|0.5 167232|0.55556 167233|0.5 167234|0.52778 167235|0.5 167236|0.5 167237|0.5 167238|0.5 167239|0.5 167240|0.5 167241|0.5 167242|0.56944 167243|0.5 167244|0.5 167245|0.5 167246|0.48611 167247|0.5 167248|0.5 167249|0.54167 167250|0.5 167251|0.5 167252|0.27778 167253|0.58333 167254|0.5 167255|0.25 167256|0.5 167257|0.5 167258|0.5 167259|0.52778 167260|0.44444 167261|0.51389 167262|0.5 167263|0.5 167264|0.45833 167265|0.43056 167266|0.41667 167267|0.56944 167268|0.56944 167269|0.47222 167270|0.43056 167271|0.56944 167272|0.5 167273|0.52778 167274|0.5 167275|0.52778 167276|0.31944 167277|0.59722 167278|0.44444 167279|0.5 167280|0.5 167281|0.45833 167282|0.44444 167283|0.41667 167284|0.30556 167285|0.54167 167286|0.38889 167287|0.375 167288|0.48611 167289|0.5 167290|0.56944 167291|0.61111 167292|0.48611 167293|0.5 167294|0.5 167295|0.61111 167296|0.23611 167297|0.44444 167298|0.63889 167299|0.61111 167300|0.56944 167301|0.30556 167302|0.23611 167303|0.097222 167304|0.18056 167305|0.56944 167306|0.34722 167307|0.36111 167308|0.54167 167309|0.29167 167310|0.5 167311|0.097222 167312|0.59722 167313|0.54167 167314|0.38889 167315|0.22222 167316|0.44444 167317|0.5 167318|0.5 167319|0.5 167320|0.31944 167321|0.61111 167322|0.5 167323|0.5 167324|0.5 167325|0.027778 167326|0.5 167327|0.54167 167328|0.5 167329|0.5 167330|0.5 167331|0.45833 167332|0.48611 167333|0.34722 167334|0.33333 167335|0.65278 167336|0.5 167337|0.20833 167338|0.52778 167339|0.5 167340|0.38889 167341|0.5 167342|0.44444 167343|0.44444 167344|0.36111 167345|0.40278 167346|0.36111 167347|0.5 167348|0.45833 167349|0.45833 167350|0.38889 167351|0.40278 167352|0.33333 167353|0.40278 167354|0.19444 167355|0.097222 167356|0.5 167357|0.40278 167358|0.5 167359|0.44444 167360|0.29167 167361|0.41667 167362|0.5 167363|0.5 167364|0.5 167365|0.43056 167366|0.27778 167367|0.22222 167368|0.43056 167369|0.54167 167370|0.5 167371|0.5 167372|0.54167 167373|0.43056 167374|0.55556 167375|0.56944 167376|0.44444 167377|0.61111 167378|0.5 167379|0.45833 167380|0.31944 167381|0.5 167382|0.40278 167383|0.70833 167384|0.54167 167385|0.45833 167386|0.5 167387|0.43056 167388|0.55556 167389|0.5 167390|0.5 167391|0.5 167392|0.56944 167393|0.5 167394|0.5 167395|0.72222 167396|0.79167 167397|0.51389 167398|0.38889 167399|0.55556 167400|0.5 167401|0.58333 167402|0.43056 167403|0.44444 167404|0.61111 167405|0.16667 167406|0.5 167407|0.45833 167408|0.55556 167409|0.61111 167410|0.5 167411|0.58333 167412|0.55556 167413|0.63889 167414|0.55556 167415|0.45833 167416|0.59722 167417|0.38889 167418|0.36111 167419|0.61111 167420|0.55556 167421|0.43056 167422|0.47222 167423|0.56944 167424|0.19444 167425|0.75 167426|0.77778 167427|0.27778 167428|0.55556 167429|0.5 167430|0.20833 167431|0.5 167432|0.5 167433|0.48611 167434|0.58333 167435|0.66667 167436|0.33333 167437|0.38889 167438|0.40278 167439|0.52778 167440|0.5 167441|0.54167 167442|0.47222 167443|0.25 167444|0.30556 167445|0.59722 167446|0.47222 167447|0.63889 167448|0.59722 167449|0.38889 167450|0.47222 167451|0.5 167452|0.48611 167453|0.33333 167454|0.33333 167455|0.58333 167456|0.5 167457|0.45833 167458|0.31944 167459|0.5 167460|0.41667 167461|0.94444 167462|0.38889 167463|0.29167 167464|0.56944 167465|0.5 167466|0.5 167467|0.44444 167468|0.55556 167469|0.5 167470|0.44444 167471|0.45833 167472|0.48611 167473|0.5 167474|0.72222 167475|0.5 167476|0.5 167477|0.625 167478|0.29167 167479|0.61111 167480|0.33333 167481|0.59722 167482|0.44444 167483|0.5 167484|0.5 167485|0.5 167486|0.58333 167487|0.72222 167488|0.52778 167489|0.61111 167490|0.44444 167491|0.36111 167492|0.23611 167493|0.5 167494|0.47222 167495|0.5 167496|0.59722 167497|0.5 167498|0.54167 167499|0.54167 167500|0.5 167501|0.43056 167502|0.55556 167503|0.54167 167504|0.5 167505|0.44444 167506|0.54167 167507|0.5 167508|0.54167 167509|0.41667 167510|0.5 167511|0.5 167512|0.58333 167513|0.5 167514|0.65278 167515|0.44444 167516|0.5 167517|0.27778 167518|0.20833 167519|0.52778 167520|0.5 167521|0.5 167522|0.55556 167523|0.55556 167524|0.59722 167525|0.55556 167526|0.5 167527|0.5 167528|0.47222 167529|0.61111 167530|0.26389 167531|0.30556 167532|0.41667 167533|0.5 167534|0.41667 167535|0.069444 167536|0.26389 167537|0.5 167538|0.5 167539|0.55556 167540|0.58333 167541|0.41667 167542|0.44444 167543|0.47222 167544|0.65278 167545|0.26389 167546|0.40278 167547|0.61111 167548|0.43056 167549|0.41667 167550|0.31944 167551|0.30556 167552|0.5 167553|0.59722 167554|0.68056 167555|0.45833 167556|0.54167 167557|0.625 167558|0.52778 167559|0.5 167560|0.44444 167561|0.61111 167562|0.375 167563|0.5 167564|0.45833 167565|0.51389 167566|0.51389 167567|0.58333 167568|0.5 167569|0.80556 167570|0.5 167571|0.5 167572|0.5 167573|0.41667 167574|0.52778 167575|0.33333 167576|0.55556 167577|0.63889 167578|0.55556 167579|0.5 167580|0.48611 167581|0.38889 167582|0.5 167583|0.54167 167584|0.5 167585|0.41667 167586|0.55556 167587|0.5 167588|0.5 167589|0.54167 167590|0.58333 167591|0.5 167592|0.5 167593|0.5 167594|0.54167 167595|0.66667 167596|0.41667 167597|0.34722 167598|0.34722 167599|0.51389 167600|0.5 167601|0.44444 167602|0.63889 167603|0.29167 167604|0.61111 167605|0.375 167606|0.52778 167607|0.38889 167608|0.47222 167609|0.5 167610|0.65278 167611|0.83333 167612|0.5 167613|0.375 167614|0.51389 167615|0.44444 167616|0.625 167617|0.55556 167618|0.30556 167619|0.40278 167620|0.44444 167621|0.5 167622|0.40278 167623|0.44444 167624|0.45833 167625|0.5 167626|0.375 167627|0.5 167628|0.51389 167629|0.65278 167630|0.44444 167631|0.27778 167632|0.38889 167633|0.5 167634|0.5 167635|0.5 167636|0.44444 167637|0.5 167638|0.55556 167639|0.26389 167640|0.31944 167641|0.5 167642|0.5 167643|0.38889 167644|0.45833 167645|0.47222 167646|0.5 167647|0.44444 167648|0.5 167649|0.27778 167650|0.5 167651|0.54167 167652|0.51389 167653|0.44444 167654|0.22222 167655|0.125 167656|0.56944 167657|0.5 167658|0.20833 167659|0.47222 167660|0.29167 167661|0.36111 167662|0.31944 167663|0.54167 167664|0.29167 167665|0.61111 167666|0.25 167667|0.54167 167668|0.5 167669|0.58333 167670|0.19444 167671|0.33333 167672|0.47222 167673|0.34722 167674|0.27778 167675|0.56944 167676|0.33333 167677|0.47222 167678|0.31944 167679|0.5 167680|0.5 167681|0.5 167682|0.63889 167683|0.48611 167684|0.56944 167685|0.23611 167686|0.38889 167687|0.23611 167688|0.5 167689|0.5 167690|0.52778 167691|0.5 167692|0.44444 167693|0.48611 167694|0.41667 167695|0.5 167696|0.45833 167697|0.51389 167698|0.40278 167699|0.56944 167700|0.69444 167701|0.68056 167702|0.68056 167703|0.38889 167704|0.5 167705|0.47222 167706|0.5 167707|0.5 167708|0.61111 167709|0.5 167710|0.58333 167711|0.44444 167712|0.31944 167713|0.25 167714|0.29167 167715|0.30556 167716|0.44444 167717|0.25 167718|0.44444 167719|0.5 167720|0.61111 167721|0.34722 167722|0.45833 167723|0.48611 167724|0.5 167725|0.54167 167726|0.56944 167727|0.44444 167728|0.56944 167729|0.27778 167730|0.33333 167731|0.40278 167732|0.58333 167733|0.5 167734|0.5 167735|0.5 167736|0.5 167737|0.5 167738|0.5 167739|0.5 167740|0.5 167741|0.5 167742|0.45833 167743|0.5 167744|0.5 167745|0.5 167746|0.5 167747|0.52778 167748|0.5 167749|0.55556 167750|0.52778 167751|0.5 167752|0.56944 167753|0.375 167754|0.5 167755|0.56944 167756|0.5 167757|0.55556 167758|0.41667 167759|0.25 167760|0.58333 167761|0.65278 167762|0.5 167763|0.36111 167764|0.5 167765|0.45833 167766|0.52778 167767|0.59722 167768|0.44444 167769|0.5 167770|0.34722 167771|0.5 167772|0.5 167773|0.5 167774|0.5 167775|0.54167 167776|0.22222 167777|0.45833 167778|0.59722 167779|0.76389 167780|0.79167 167781|0.5 167782|0.20833 167783|0.5 167784|0.44444 167785|0.31944 167786|0.40278 167787|0.5 167788|0.5 167789|0.5 167790|0.56944 167791|0.23611 167792|0.55556 167793|0.58333 167794|0.5 167795|0.375 167796|0.45833 167797|0.5 167798|0.56944 167799|0.25 167800|0.52778 167801|0.47222 167802|0.5 167803|0.45833 167804|0.5 167805|0.54167 167806|0.26389 167807|0.43056 167808|0.25 167809|0.25 167810|0.52778 167811|0.5 167812|0.59722 167813|0.44444 167814|0.5 167815|0.44444 167816|0.5 167817|0.5 167818|0.5 167819|0.52778 167820|0.48611 167821|0.52778 167822|0.23611 167823|0.34722 167824|0.45833 167825|0.5 167826|0.29167 167827|0.29167 167828|0.5 167829|0.44444 167830|0.56944 167831|0.5 167832|0.59722 167833|0.41667 167834|0.68056 167835|0.51389 167836|0.5 167837|0.63889 167838|0.5 167839|0.51389 167840|0.5 167841|0.40278 167842|0.55556 167843|0.51389 167844|0.30556 167845|0.44444 167846|0.73611 167847|0.5 167848|0.31944 167849|0.27778 167850|0.34722 167851|0.5 167852|0.5 167853|0.5 167854|0.55556 167855|0.5 167856|0.45833 167857|0.5 167858|0.5 167859|0.5 167860|0.45833 167861|0.5 167862|0.58333 167863|0.41667 167864|0.5 167865|0.56944 167866|0.66667 167867|0.5 167868|0.38889 167869|0.5 167870|0.29167 167871|0.65278 167872|0.5 167873|0.38889 167874|0.31944 167875|0.47222 167876|0.375 167877|0.73611 167878|0.29167 167879|0.5 167880|0.34722 167881|0.41667 167882|0.625 167883|0.43056 167884|0.56944 167885|0.069444 167886|0.375 167887|0.38889 167888|0.38889 167889|0.33333 167890|0.25 167891|0.23611 167892|0.55556 167893|0.097222 167894|0.58333 167895|0.45833 167896|0.5 167897|0.41667 167898|0.65278 167899|0.38889 167900|0.47222 167901|0.22222 167902|0.38889 167903|0.5 167904|0.52778 167905|0.47222 167906|0.48611 167907|0.5 167908|0.51389 167909|0.5 167910|0.625 167911|0.5 167912|0.63889 167913|0.5 167914|0.55556 167915|0.29167 167916|0.58333 167917|0.52778 167918|0.5 167919|0.51389 167920|0.45833 167921|0.5 167922|0.5 167923|0.65278 167924|0.63889 167925|0.47222 167926|0.33333 167927|0.5 167928|0.47222 167929|0.34722 167930|0.36111 167931|0.5 167932|0.58333 167933|0.44444 167934|0.30556 167935|0.22222 167936|0.48611 167937|0.31944 167938|0.18056 167939|0.44444 167940|0.40278 167941|0.27778 167942|0.13889 167943|0.36111 167944|0.625 167945|0.27778 167946|0.54167 167947|0.48611 167948|0.5 167949|0.5 167950|0.38889 167951|0.41667 167952|0.125 167953|0.27778 167954|0.33333 167955|0.38889 167956|0.47222 167957|0.45833 167958|0.63889 167959|0.55556 167960|0.36111 167961|0.16667 167962|0.33333 167963|0.5 167964|0.40278 167965|0.55556 167966|0.5 167967|0.375 167968|0.45833 167969|0.48611 167970|0.29167 167971|0.26389 167972|0.33333 167973|0.23611 167974|0.11111 167975|0.61111 167976|0.375 167977|0.38889 167978|0.38889 167979|0.38889 167980|0.23611 167981|0.34722 167982|0.19444 167983|0.41667 167984|0.52778 167985|0.44444 167986|0.38889 167987|0.38889 167988|0.38889 167989|0.47222 167990|0.27778 167991|0.48611 167992|0.25 167993|0.45833 167994|0.48611 167995|0.58333 167996|0.44444 167997|0.52778 167998|0.43056 167999|0.5 168000|0.5 168001|0.47222 168002|0.5 168003|0.40278 168004|0.48611 168005|0.44444 168006|0.375 168007|0.5 168008|0.5 168009|0.66667 168010|0.27778 168011|0.23611 168012|0.44444 168013|0.31944 168014|0.5 168015|0.5 168016|0.77778 168017|0.75 168018|0.68056 168019|0.56944 168020|0.5 168021|0.5 168022|0.47222 168023|0.47222 168024|0.5 168025|0.52778 168026|0.27778 168027|0.5 168028|0.48611 168029|0.44444 168030|0.5 168031|0.61111 168032|0.5 168033|0.54167 168034|0.52778 168035|0.5 168036|0.58333 168037|0.51389 168038|0.52778 168039|0.55556 168040|0.375 168041|0.55556 168042|0.38889 168043|0.5 168044|0.5 168045|0.5 168046|0.5 168047|0.5 168048|0.54167 168049|0.47222 168050|0.51389 168051|0.45833 168052|0.55556 168053|0.56944 168054|0.5 168055|0.5 168056|0.44444 168057|0.52778 168058|0.22222 168059|0.5 168060|0.5 168061|0.44444 168062|0.36111 168063|0.55556 168064|0.48611 168065|0.33333 168066|0.38889 168067|0.44444 168068|0.33333 168069|0.45833 168070|0.5 168071|0.5 168072|0.40278 168073|0.40278 168074|0.5 168075|0.5 168076|0.55556 168077|0.29167 168078|0.27778 168079|0.16667 168080|0.5 168081|0.26389 168082|0.27778 168083|0.44444 168084|0.5 168085|0.43056 168086|0.59722 168087|0.48611 168088|0.43056 168089|0.38889 168090|0.31944 168091|0.48611 168092|0.44444 168093|0.44444 168094|0.45833 168095|0.45833 168096|0.48611 168097|0.375 168098|0.5 168099|0.22222 168100|0.52778 168101|0.30556 168102|0.65278 168103|0.34722 168104|0.43056 168105|0.29167 168106|0.5 168107|0.59722 168108|0.5 168109|0.51389 168110|0.27778 168111|0.5 168112|0.5 168113|0.5 168114|0.48611 168115|0.5 168116|0.41667 168117|0.41667 168118|0.41667 168119|0.5 168120|0.38889 168121|0.51389 168122|0.52778 168123|0.36111 168124|0.47222 168125|0.5 168126|0.5 168127|0.48611 168128|0.5 168129|0.47222 168130|0.5 168131|0.25 168132|0.48611 168133|0.48611 168134|0.47222 168135|0.44444 168136|0.43056 168137|0.5 168138|0.5 168139|0.44444 168140|0.5 168141|0.25 168142|0.5 168143|0.47222 168144|0.5 168145|0.56944 168146|0.45833 168147|0.52778 168148|0.52778 168149|0.5 168150|0.59722 168151|0.5 168152|0.48611 168153|0.55556 168154|0.47222 168155|0.29167 168156|0.5 168157|0.33333 168158|0.51389 168159|0.52778 168160|0.30556 168161|0.38889 168162|0.5 168163|0.52778 168164|0.375 168165|0.38889 168166|0.5 168167|0.48611 168168|0.51389 168169|0.5 168170|0.43056 168171|0.44444 168172|0.5 168173|0.33333 168174|0.41667 168175|0.33333 168176|0.33333 168177|0.43056 168178|0.33333 168179|0.27778 168180|0.5 168181|0.27778 168182|0.80556 168183|0.66667 168184|0.56944 168185|0.56944 168186|0.59722 168187|0.54167 168188|0.63889 168189|0.51389 168190|0.48611 168191|0.43056 168192|0.5 168193|0.51389 168194|0.16667 168195|0.5 168196|0.34722 168197|0.5 168198|0.69444 168199|0.69444 168200|0.5 168201|0.34722 168202|0.5 168203|0.5 168204|0.44444 168205|0.34722 168206|0.23611 168207|0.34722 168208|0.5 168209|0.5 168210|0.45833 168211|0.55556 168212|0.5 168213|0.54167 168214|0.30556 168215|0.23611 168216|0.33333 168217|0.55556 168218|0.40278 168219|0.77778 168220|0.26389 168221|0.95833 168222|0.40278 168223|0.13889 168224|0.55556 168225|0.5 168226|0.29167 168227|0.19444 168228|0.94444 168229|0.26389 168230|0.5 168231|0.55556 168232|0.5 168233|0.083333 168234|0.51389 168235|0.36111 168236|0.5 168237|0.44444 168238|0.5 168239|0.375 168240|0.23611 168241|0.55556 168242|0.15278 168243|0.43056 168244|0.47222 168245|0.25 168246|0.27778 168247|0.38889 168248|0.18056 168249|0.22222 168250|0.34722 168251|0.25 168252|0.33333 168253|0.5 168254|0.27778 168255|0.38889 168256|0.44444 168257|0.44444 168258|0.31944 168259|0.44444 168260|0.54167 168261|0.5 168262|0.5 168263|0.51389 168264|0.26389 168265|0.45833 168266|0.34722 168267|0.41667 168268|0.36111 168269|0.48611 168270|0.36111 168271|0.44444 168272|0.45833 168273|0.38889 168274|0.5 168275|0.45833 168276|0.47222 168277|0.5 168278|0.375 168279|0.54167 168280|0.52778 168281|0.5 168282|0.48611 168283|0.58333 168284|0.625 168285|0.5 168286|0.47222 168287|0.40278 168288|0.44444 168289|0.47222 168290|0.41667 168291|0.48611 168292|0.5 168293|0.45833 168294|0.5 168295|0.375 168296|0.43056 168297|0.5 168298|0.5 168299|0.38889 168300|0.54167 168301|0.19444 168302|0.38889 168303|0.33333 168304|0.5 168305|0.22222 168306|0.38889 168307|0.59722 168308|0.5 168309|0.44444 168310|0.47222 168311|0.54167 168312|0.5 168313|0.5 168314|0.54167 168315|0.5 168316|0.48611 168317|0.45833 168318|0.51389 168319|0.47222 168320|0.48611 168321|0.38889 168322|0.22222 168323|0.27778 168324|0.54167 168325|0.5 168326|0.41667 168327|0.5 168328|0.43056 168329|0.52778 168330|0.5 168331|0.38889 168332|0.48611 168333|0.48611 168334|0.58333 168335|0.52778 168336|0.38889 168337|0.59722 168338|0.5 168339|0.44444 168340|0.34722 168341|0.34722 168342|0.5 168343|0.51389 168344|0.40278 168345|0.56944 168346|0.5 168347|0.44444 168348|0.43056 168349|0.47222 168350|0.5 168351|0.5 168352|0.19444 168353|0.5 168354|0.22222 168355|0.16667 168356|0.36111 168357|0.22222 168358|0.51389 168359|0.54167 168360|0.5 168361|0.47222 168362|0.5 168363|0.5 168364|0.43056 168365|0.5 168366|0.58333 168367|0.44444 168368|0.45833 168369|0.63889 168370|0.625 168371|0.59722 168372|0.625 168373|0.55556 168374|0.61111 168375|0.69444 168376|0.61111 168377|0.625 168378|0.58333 168379|0.72222 168380|0.52778 168381|0.45833 168382|0.5 168383|0.51389 168384|0.55556 168385|0.56944 168386|0.30556 168387|0.375 168388|0.40278 168389|0.33333 168390|0.41667 168391|0.27778 168392|0.48611 168393|0.5 168394|0.47222 168395|0.5 168396|0.65278 168397|0.45833 168398|0.51389 168399|0.5 168400|0.51389 168401|0.5 168402|0.5 168403|0.5 168404|0.5 168405|0.5 168406|0.5 168407|0.47222 168408|0.51389 168409|0.47222 168410|0.23611 168411|0.5 168412|0.48611 168413|0.48611 168414|0.54167 168415|0.55556 168416|0.55556 168417|0.63889 168418|0.51389 168419|0.625 168420|0.30556 168421|0.27778 168422|0.29167 168423|0.31944 168424|0.31944 168425|0.5 168426|0.33333 168427|0.43056 168428|0.5 168429|0.54167 168430|0.5 168431|0.56944 168432|0.48611 168433|0.41667 168434|0.47222 168435|0.44444 168436|0.38889 168437|0.47222 168438|0.44444 168439|0.40278 168440|0.47222 168441|0.38889 168442|0.36111 168443|0.20833 168444|0.41667 168445|0.5 168446|0.59722 168447|0.55556 168448|0.38889 168449|0.38889 168450|0.38889 168451|0.44444 168452|0.5 168453|0.5 168454|0.43056 168455|0.36111 168456|0.44444 168457|0.52778 168458|0.58333 168459|0.76389 168460|0.31944 168461|0.54167 168462|0.13889 168463|0.20833 168464|0.61111 168465|0.5 168466|0.5 168467|0.51389 168468|0.44444 168469|0.54167 168470|0.5 168471|0.47222 168472|0.5 168473|0.33333 168474|0.34722 168475|0.29167 168476|0.5 168477|0.31944 168478|0.41667 168479|0.20833 168480|0.45833 168481|0.40278 168482|0.23611 168483|0.40278 168484|0.5 168485|0.38889 168486|0.5 168487|0.51389 168488|0.47222 168489|0.5 168490|0.5 168491|0.58333 168492|0.22222 168493|0.51389 168494|0.38889 168495|0.43056 168496|0.48611 168497|0.5 168498|0.5 168499|0.55556 168500|0.38889 168501|0.40278 168502|0.34722 168503|0.38889 168504|0.29167 168505|0.375 168506|0.23611 168507|0.375 168508|0.30556 168509|0.54167 168510|0.34722 168511|0.29167 168512|0.27778 168513|0.375 168514|0.375 168515|0.26389 168516|0.47222 168517|0.29167 168518|0.19444 168519|0.36111 168520|0.19444 168521|0.61111 168522|0.44444 168523|0.59722 168524|0.66667 168525|0.66667 168526|0.27778 168527|0.30556 168528|0.41667 168529|0.375 168530|0.29167 168531|0.38889 168532|0.44444 168533|0.27778 168534|0.375 168535|0.38889 168536|0.11111 168537|0.30556 168538|0.45833 168539|0.44444 168540|0.27778 168541|0.40278 168542|0.36111 168543|0.36111 168544|0.375 168545|0.55556 168546|0.59722 168547|0.31944 168548|0.23611 168549|0.20833 168550|0.29167 168551|0.41667 168552|0.29167 168553|0.34722 168554|0.30556 168555|0.30556 168556|0.33333 168557|0.18056 168558|0.54167 168559|0.65278 168560|0.5 168561|0.29167 168562|0.33333 168563|0.30556 168564|0.5 168565|0.5 168566|0.65278 168567|0.29167 168568|0.34722 168569|0.38889 168570|0.375 168571|0.5 168572|0.48611 168573|0.52778 168574|0.48611 168575|0.52778 168576|0.56944 168577|0.52778 168578|0.38889 168579|0.5 168580|0.47222 168581|0.5 168582|0.36111 168583|0.56944 168584|0.5 168585|0.5 168586|0.56944 168587|0.69444 168588|0.47222 168589|0.40278 168590|0.375 168591|0.5 168592|0.41667 168593|0.625 168594|0.5 168595|0.52778 168596|0.36111 168597|0.22222 168598|0.5 168599|0.43056 168600|0.29167 168601|0.5 168602|0.51389 168603|0.5 168604|0.54167 168605|0.27778 168606|0.33333 168607|0.58333 168608|0.5 168609|0.5 168610|0.30556 168611|0.58333 168612|0.097222 168613|0.59722 168614|0.52778 168615|0.43056 168616|0.5 168617|0.43056 168618|0.26389 168619|0.52778 168620|0.41667 168621|0.38889 168622|0.069444 168623|0.22222 168624|0.25 168625|0.20833 168626|0.38889 168627|0.44444 168628|0.625 168629|0.5 168630|0.47222 168631|0.38889 168632|0.40278 168633|0.5 168634|0.34722 168635|0.31944 168636|0.31944 168637|0.18056 168638|0.68056 168639|0.52778 168640|0.51389 168641|0.45833 168642|0.52778 168643|0.40278 168644|0.47222 168645|0.48611 168646|0.40278 168647|0.30556 168648|0.34722 168649|0.5 168650|0.097222 168651|0.59722 168652|0.26389 168653|0.55556 168654|0.52778 168655|0.54167 168656|0.69444 168657|0.61111 168658|0.48611 168659|0.5 168660|0.5 168661|0.58333 168662|0.65278 168663|0.5 168664|0.51389 168665|0.5 168666|0.52778 168667|0.5 168668|0.25 168669|0.5 168670|0.48611 168671|0.54167 168672|0.47222 168673|0.5 168674|0.5 168675|0.5 168676|0.52778 168677|0.48611 168678|0.27778 168679|0.5 168680|0.52778 168681|0.51389 168682|0.625 168683|0.5 168684|0.30556 168685|0.5 168686|0.5 168687|0.5 168688|0.76389 168689|0.23611 168690|0.25 168691|0.29167 168692|0.125 168693|0.13889 168694|0.11111 168695|0.30556 168696|0.33333 168697|0.68056 168698|0.52778 168699|0.55556 168700|0.5 168701|0.5 168702|0.47222 168703|0.52778 168704|0.44444 168705|0.5 168706|0.41667 168707|0.29167 168708|0.30556 168709|0.20833 168710|0.19444 168711|0.22222 168712|0.44444 168713|0.58333 168714|0.58333 168715|0.47222 168716|0.45833 168717|0.31944 168718|0.36111 168719|0.44444 168720|0.5 168721|0.47222 168722|0.5 168723|0.52778 168724|0.45833 168725|0.38889 168726|0.51389 168727|0.52778 168728|0.36111 168729|0.51389 168730|0.45833 168731|0.5 168732|0.40278 168733|0.44444 168734|0.5 168735|0.16667 168736|0.34722 168737|0.5 168738|0.5 168739|0.47222 168740|0.5 168741|0.5 168742|0.44444 168743|0.47222 168744|0.41667 168745|0.5 168746|0.38889 168747|0.51389 168748|0.41667 168749|0.625 168750|0.48611 168751|0.63889 168752|0.52778 168753|0.38889 168754|0.5 168755|0.45833 168756|0.47222 168757|0.33333 168758|0.66667 168759|0.55556 168760|0.13889 168761|0.26389 168762|0.48611 168763|0.45833 168764|0.22222 168765|0.22222 168766|0.52778 168767|0.55556 168768|0.34722 168769|0.22222 168770|0.5 168771|0.25 168772|0.34722 168773|0.45833 168774|0.33333 168775|0.68056 168776|0.41667 168777|0.25 168778|0.36111 168779|0.19444 168780|0.5 168781|0.5 168782|0.44444 168783|0.56944 168784|0.56944 168785|0.52778 168786|0.40278 168787|0.44444 168788|0.52778 168789|0.45833 168790|0.80556 168791|0.68056 168792|0.73611 168793|0.88889 168794|0.40278 168795|0.61111 168796|0.47222 168797|0.51389 168798|0.5 168799|0.5 168800|0.54167 168801|0.73611 168802|0.16667 168803|0.5 168804|0.26389 168805|0.51389 168806|0.30556 168807|0.22222 168808|0.52778 168809|0.5 168810|0.41667 168811|0.36111 168812|0.34722 168813|0.18056 168814|0.11111 168815|0.31944 168816|0.34722 168817|0.48611 168818|0.375 168819|0.63889 168820|0.5 168821|0.56944 168822|0.66667 168823|0.54167 168824|0.5 168825|0.5 168826|0.5 168827|0.5 168828|0.5 168829|0.59722 168830|0.44444 168831|0.55556 168832|0.34722 168833|0.45833 168834|0.5 168835|0.44444 168836|0.52778 168837|0.41667 168838|0.45833 168839|0.44444 168840|0.43056 168841|0.20833 168842|0.375 168843|0.5 168844|0.52778 168845|0.5 168846|0.55556 168847|0.61111 168848|0.55556 168849|0.44444 168850|0.24306 168851|0.45833 168852|0.44444 168853|0.5 168854|0.52778 168855|0.5 168856|0.5 168857|0.27778 168858|0.45833 168859|0.38889 168860|0.55556 168861|0.58333 168862|0.38889 168863|0.40278 168864|0.33333 168865|0.33333 168866|0.51389 168867|0.5 168868|0.5 168869|0.5 168870|0.61111 168871|0.34722 168872|0.375 168873|0.38889 168874|0.54167 168875|0.31944 168876|0.38889 168877|0.25 168878|0.33333 168879|0.5 168880|0.33333 168881|0.41667 168882|0.22222 168883|0.5 168884|0.47222 168885|0.375 168886|0.38889 168887|0.55556 168888|0.56944 168889|0.11111 168890|0.5 168891|0.625 168892|0.625 168893|0.47222 168894|0.58333 168895|0.45833 168896|0.25 168897|0.31944 168898|0.33333 168899|0.16667 168900|0.48611 168901|0.77778 168902|0.43056 168903|0.54167 168904|0.54167 168905|0.5 168906|0.59722 168907|0.5 168908|0.27778 168909|0.16667 168910|0.5 168911|0.29167 168912|0.31944 168913|0.40278 168914|0.5 168915|0.45833 168916|0.58333 168917|0.65278 168918|0.5 168919|0.5 168920|0.44444 168921|0.45833 168922|0.55556 168923|0.5 168924|0.41667 168925|0.44444 168926|0.25 168927|0.36111 168928|0.31944 168929|0.66667 168930|0.40278 168931|0.26389 168932|0.5 168933|0.38889 168934|0.40278 168935|0.22222 168936|0.54167 168937|0.55556 168938|0.55556 168939|0.38889 168940|0.27778 168941|0.59722 168942|0.625 168943|0.16667 168944|0.16667 168945|0.15278 168946|0.47222 168947|0.48611 168948|0.5 168949|0.55556 168950|0.5 168951|0.23611 168952|0.41667 168953|0.27778 168954|0.51389 168955|0.29167 168956|0.33333 168957|0.15278 168958|0.5 168959|0.52778 168960|0.86111 168961|0.70833 168962|0.59722 168963|0.625 168964|0.34722 168965|0.58333 168966|0.36111 168967|0.26389 168968|0.5 168969|0.66667 168970|0.69444 168971|0.76389 168972|0.75 168973|0.61111 168974|0.40278 168975|0.27778 168976|0.375 168977|0.25 168978|0.52778 168979|0.30556 168980|0.31944 168981|0.5 168982|0.33333 168983|0.33333 168984|0.22222 168985|0.18056 168986|0.23611 168987|0.15278 168988|0.34722 168989|0.5 168990|0.38889 168991|0.25 168992|0.27778 168993|0.45833 168994|0.5 168995|0.5 168996|0.54167 168997|0.45833 168998|0.58333 168999|0.5 169000|0.25 169001|0.45833 169002|0.55556 169003|0.44444 169004|0.48611 169005|0.48611 169006|0.43056 169007|0.375 169008|0.5 169009|0.51389 169010|0.38889 169011|0.23611 169012|0.80556 169013|0.66667 169014|0.5 169015|0.38889 169016|0.22222 169017|0.11111 169018|0.44444 169019|0.23611 169020|0.5 169021|0.52778 169022|0.55556 169023|0.54167 169024|0.55556 169025|0.66667 169026|0.55556 169027|0.375 169028|0.52778 169029|0.5 169030|0.48611 169031|0.58333 169032|0.5 169033|0.5 169034|0.61111 169035|0.41667 169036|0.58333 169037|0.5 169038|0.44444 169039|0.70833 169040|0.69444 169041|0.38889 169042|0.45833 169043|0.33333 169044|0.31944 169045|0.27778 169046|0.16667 169047|0.055556 169048|0.47222 169049|0.375 169050|0.375 169051|0.40278 169052|0.5 169053|0.5 169054|0.26389 169055|0.45833 169056|0.51389 169057|0.25 169058|0.44444 169059|0.33333 169060|0.33333 169061|0.38889 169062|0.45833 169063|0.54167 169064|0.45833 169065|0.097222 169066|0.5 169067|0.5 169068|0.40278 169069|0.47222 169070|0.16667 169071|0.5 169072|0.58333 169073|0.55556 169074|0.56944 169075|0.5 169076|0.22222 169077|0.75 169078|0.5 169079|0.56944 169080|0.33333 169081|0.44444 169082|0.40278 169083|0.56944 169084|0.45833 169085|0.5 169086|0.44444 169087|0.5 169088|0.58333 169089|0.59722 169090|0.33333 169091|0.5 169092|0.55556 169093|0.26389 169094|0.5 169095|0.47222 169096|0.5 169097|0.5 169098|0.5 169099|0.5 169100|0.44444 169101|0.36111 169102|0.43056 169103|0.48611 169104|0.30556 169105|0.76389 169106|0.68056 169107|0.54167 169108|0.30556 169109|0.5 169110|0.5 169111|0.59722 169112|0.5 169113|0.51389 169114|0.58333 169115|0.5 169116|0.19444 169117|0.18056 169118|0.11111 169119|0.069444 169120|0.069444 169121|0.43056 169122|0.5 169123|0.5 169124|0.5 169125|0.56944 169126|0.40278 169127|0.5 169128|0.5 169129|0.52778 169130|0.5 169131|0.5 169132|0.5 169133|0.5 169134|0.375 169135|0.625 169136|0.63889 169137|0.625 169138|0.72222 169139|0.66667 169140|0.44444 169141|0.5 169142|0.44444 169143|0.5 169144|0.76389 169145|0.5 169146|0.22222 169147|0.44444 169148|0.45833 169149|0.81944 169150|0.625 169151|0.31944 169152|0.5 169153|0.5 169154|0.5 169155|0.625 169156|0.5 169157|0.33333 169158|0.5 169159|0.43056 169160|0.5 169161|0.5 169162|0.44444 169163|0.43056 169164|0.36111 169165|0.38889 169166|0.48611 169167|0.5 169168|0.33333 169169|0.61111 169170|0.47222 169171|0.55556 169172|0.47222 169173|0.55556 169174|0.375 169175|0.38889 169176|0.41667 169177|0.33333 169178|0.22222 169179|0.34722 169180|0.25 169181|0.38889 169182|0.40278 169183|0.375 169184|0.41667 169185|0.5 169186|0.38889 169187|0.19444 169188|0.31944 169189|0.29167 169190|0.45833 169191|0.43056 169192|0.375 169193|0.38889 169194|0.5 169195|0.52778 169196|0.52778 169197|0.38889 169198|0.44444 169199|0.5 169200|0.45833 169201|0.54167 169202|0.22222 169203|0.5 169204|0.25 169205|0.45833 169206|0.54167 169207|0.5 169208|0.40278 169209|0.41667 169210|0.47222 169211|0.33333 169212|0.47222 169213|0.5 169214|0.54167 169215|0.73611 169216|0.5 169217|0.48611 169218|0.5 169219|0.5 169220|0.48611 169221|0.18056 169222|0.38889 169223|0.45833 169224|0.5 169225|0.44444 169226|0.38889 169227|0.33333 169228|0.5 169229|0.38889 169230|0.125 169231|0.34722 169232|0.26389 169233|0.20833 169234|0.16667 169235|0.11111 169236|0.23611 169237|0.22222 169238|0.48611 169239|0.25 169240|0.47222 169241|0.38889 169242|0.15278 169243|0.13889 169244|0.56944 169245|0.47222 169246|0.61111 169247|0.43056 169248|0.48611 169249|0.625 169250|0.84722 169251|0.66667 169252|0.38889 169253|0.5 169254|0.63889 169255|0.54167 169256|0.77778 169257|0.625 169258|0.51389 169259|0.375 169260|0.66667 169261|0.36111 169262|0.45833 169263|0.15278 169264|0.26389 169265|0.125 169266|0.16667 169267|0.15278 169268|0.77778 169269|0.48611 169270|0.34722 169271|0.16667 169272|0.51389 169273|0.5 169274|0.5 169275|0.45833 169276|0.47222 169277|0.40278 169278|0.23611 169279|0.52778 169280|0.23611 169281|0.30556 169282|0.47222 169283|0.52778 169284|0.5 169285|0.47222 169286|0.52778 169287|0.5 169288|0.44444 169289|0.38889 169290|0.34722 169291|0.40278 169292|0.5 169293|0.5 169294|0.52778 169295|0.5 169296|0.44444 169297|0.40278 169298|0.5 169299|0.41667 169300|0.38889 169301|0.5 169302|0.5 169303|0.79167 169304|0.5 169305|0.5 169306|0.29167 169307|0.22222 169308|0.30556 169309|0.44444 169310|0.5 169311|0.20833 169312|0.41667 169313|0.59722 169314|0.47222 169315|0.5 169316|0.47222 169317|0.55556 169318|0.51389 169319|0.5 169320|0.31944 169321|0.27778 169322|0.5 169323|0.36111 169324|0.5 169325|0.5 169326|0.44444 169327|0.63889 169328|0.25 169329|0.41667 169330|0.16667 169331|0.5 169332|0.5 169333|0.5 169334|0.5 169335|0.47222 169336|0.36111 169337|0.5 169338|0.5 169339|0.5 169340|0.5 169341|0.36111 169342|0.38889 169343|0.5 169344|0.44444 169345|0.30556 169346|0.29167 169347|0.11111 169348|0.83333 169349|0.55556 169350|0.5 169351|0.84722 169352|0.56944 169353|0.375 169354|0.55556 169355|0.58333 169356|0.55556 169357|0.5 169358|0.5 169359|0.5 169360|0.125 169361|0.51389 169362|0.69444 169363|0.30556 169364|0.20833 169365|0.25 169366|0.61111 169367|0.75 169368|0.54167 169369|0.38889 169370|0.43056 169371|0.375 169372|0.65278 169373|0.73611 169374|0.51389 169375|0.5 169376|0.44444 169377|0.25 169378|0.5 169379|0.48611 169380|0.44444 169381|0.55556 169382|0.20833 169383|0.5 169384|0.5 169385|0.20833 169386|0.41667 169387|0.5 169388|0.29167 169389|0.40278 169390|0.33333 169391|0.5 169392|0.5 169393|0.30556 169394|0.20833 169395|0.55556 169396|0.51389 169397|0.5 169398|0.33333 169399|0.30556 169400|0.40278 169401|0.20833 169402|0.20833 169403|0.33333 169404|0.58333 169405|0.73611 169406|0.58333 169407|0.69444 169408|0.31944 169409|0.38889 169410|0.26389 169411|0.36111 169412|0.76389 169413|0.375 169414|0.375 169415|0.55556 169416|0.63889 169417|0.51389 169418|0.56944 169419|0.5 169420|0.5 169421|0.65278 169422|0.65278 169423|0.63889 169424|0.26389 169425|0.055556 169426|0.58333 169427|0.63889 169428|0.55556 169429|0.48611 169430|0.51389 169431|0.43056 169432|0.5 169433|0.375 169434|0.51389 169435|0.51389 169436|0.5 169437|0.5 169438|0.33333 169439|0.58333 169440|0.63889 169441|0.58333 169442|0.51389 169443|0.5 169444|0.375 169445|0.34722 169446|0.23611 169447|0.36111 169448|0.083333 169449|0.15278 169450|0.5 169451|0.44444 169452|0.44444 169453|0.48611 169454|0.5 169455|0.16667 169456|0.25 169457|0.36111 169458|0.54167 169459|0.58333 169460|0.52778 169461|0.23611 169462|0.51389 169463|0.45833 169464|0.44444 169465|0.48611 169466|0.48611 169467|0.5 169468|0.51389 169469|0.55556 169470|0.5 169471|0.40278 169472|0.5 169473|0.52778 169474|0.34722 169475|0.55556 169476|0.52778 169477|0.44444 169478|0.18056 169479|0.36111 169480|0.41667 169481|0.5 169482|0.36111 169483|0.31944 169484|0.27778 169485|0.63889 169486|0.5 169487|0.40278 169488|0.56944 169489|0.48611 169490|0.52778 169491|0.44444 169492|0.58333 169493|0.27778 169494|0.31944 169495|0.23611 169496|0.30556 169497|0.70833 169498|0.43056 169499|0.52778 169500|0.26389 169501|0.40278 169502|0.15278 169503|0.31944 169504|0.33333 169505|0.43056 169506|0.45833 169507|0.34722 169508|0.40278 169509|0.27778 169510|0.5 169511|0.44444 169512|0.5 169513|0.43056 169514|0.58333 169515|0.55556 169516|0.625 169517|0.31944 169518|0.44444 169519|0.26389 169520|0.5 169521|0.51389 169522|0.097222 169523|0.44444 169524|0.43056 169525|0.38889 169526|0.55556 169527|0.33333 169528|0.5 169529|0.58333 169530|0.70833 169531|0.38889 169532|0.30556 169533|0.38889 169534|0.34722 169535|0.43056 169536|0.625 169537|0.5 169538|0.58333 169539|0.55556 169540|0.70833 169541|0.66667 169542|0.13889 169543|0.33333 169544|0.33333 169545|0.55556 169546|0.31944 169547|0.5 169548|0.5 169549|0.43056 169550|0.44444 169551|0.27778 169552|0.38889 169553|0.61111 169554|0.26389 169555|0.40278 169556|0.25 169557|0.097222 169558|0.34722 169559|0.47222 169560|0.51389 169561|0.55556 169562|0.44444 169563|0.72222 169564|0.77778 169565|0.58333 169566|0.55556 169567|0.55556 169568|0.5 169569|0.58333 169570|0.58333 169571|0.54167 169572|0.27778 169573|0.26389 169574|0.26389 169575|0.16667 169576|0.51389 169577|0.55556 169578|0.31944 169579|0.23611 169580|0.59722 169581|0.68056 169582|0.5 169583|0.625 169584|0.5 169585|0.52778 169586|0.55556 169587|0.5 169588|0.22222 169589|0.44444 169590|0.5 169591|0.375 169592|0.44444 169593|0.63889 169594|0.69444 169595|0.58333 169596|0.72222 169597|0.52778 169598|0.61111 169599|0.55556 169600|0.5 169601|0.5 169602|0.5 169603|0.58333 169604|0.66667 169605|0.58333 169606|0.48611 169607|0.41667 169608|0.59722 169609|0.44444 169610|0.56944 169611|0.375 169612|0.25 169613|0.30556 169614|0.29167 169615|0.26389 169616|0.33333 169617|0.25 169618|0.40278 169619|0.48611 169620|0.56944 169621|0.38889 169622|0.44444 169623|0.63889 169624|0.5 169625|0.63889 169626|0.30556 169627|0.52778 169628|0.5 169629|0.58333 169630|0.43056 169631|0.47222 169632|0.55556 169633|0.18056 169634|0.23611 169635|0.76389 169636|0 169637|0.5 169638|0.5 169639|0.5 169640|0.5 169641|0.5 169642|0.55556 169643|0.66667 169644|0.20833 169645|0.38889 169646|0.41667 169647|0.31944 169648|0.26389 169649|0.43056 169650|0.47222 169651|0.40278 169652|0.5 169653|0.44444 169654|0.27778 169655|0.25 169656|0.23611 169657|0.375 169658|0.33333 169659|0.48611 169660|0.27778 169661|0.25 169662|0.26389 169663|0.43056 169664|0.27778 169665|0.34722 169666|0.70833 169667|0.65278 169668|0.25 169669|0.38889 169670|0.5 169671|0.45833 169672|0.5 169673|0.36111 169674|0.34722 169675|0.48611 169676|0.44444 169677|0.38889 169678|0.61111 169679|0.41667 169680|0.45833 169681|0.5 169682|0.51389 169683|0.55556 169684|0.66667 169685|0.73611 169686|0.70833 169687|0.75 169688|0.66667 169689|0.91667 169690|0.79167 169691|0.80556 169692|0.55556 169693|0.63889 169694|0.625 169695|0.68056 169696|0.54167 169697|0.34722 169698|0.43056 169699|0.61111 169700|0.68056 169701|0.52778 169702|0.70833 169703|0.52778 169704|0.58333 169705|0.5 169706|0.54167 169707|0.23611 169708|0.47222 169709|0.5 169710|0.43056 169711|0.38889 169712|0.5 169713|0.52778 169714|0.45833 169715|0.58333 169716|0.44444 169717|0.5 169718|0.5 169719|0.48611 169720|0.5 169721|0.27778 169722|0.31944 169723|0.27778 169724|0.65278 169725|0.625 169726|0.51389 169727|0.40278 169728|0.59722 169729|0.51389 169730|0.27778 169731|0.61111 169732|0.66667 169733|0.45833 169734|0.72222 169735|0.5 169736|0.65278 169737|0.52778 169738|0.66667 169739|0.5 169740|0.59722 169741|0.48611 169742|0.52778 169743|0.61111 169744|0.375 169745|0.31944 169746|0.59722 169747|0.20833 169748|0.56944 169749|0.36111 169750|0.013889 169751|0.125 169752|0.11111 169753|0.15278 169754|0.31944 169755|0.70833 169756|0.77778 169757|0.56944 169758|0.54167 169759|0.69444 169760|0.34722 169761|0.27778 169762|0.23611 169763|0.47222 169764|0.70833 169765|0.75 169766|0.30556 169767|0.69444 169768|0.69444 169769|0.5 169770|0.55556 169771|0.83333 169772|0.16667 169773|0.41667 169774|0.61111 169775|0.5 169776|0.5 169777|0.5 169778|0.58333 169779|0.625 169780|0.77778 169781|0.33333 169782|0.47222 169783|0.72222 169784|0.69444 169785|0.56944 169786|0.041667 169787|0.30556 169788|0.33333 169789|0.5 169790|0.55556 169791|0.40278 169792|0.625 169793|0.68056 169794|0.55556 169795|0.43056 169796|0.31944 169797|0.55556 169798|0.52778 169799|0.55556 169800|0.23611 169801|0.29167 169802|0.51389 169803|0.61111 169804|0.5 169805|0.30556 169806|0.45833 169807|0.5 169808|0.5 169809|0.5 169810|0.36111 169811|0.25 169812|0.44444 169813|0.38889 169814|0.41667 169815|0.30556 169816|0.54167 169817|0.43056 169818|0.25 169819|0.375 169820|0.44444 169821|0.41667 169822|0.75 169823|0.44444 169824|0.5 169825|0.29167 169826|0.48611 169827|0.70833 169828|0.375 169829|0.69444 169830|0.77778 169831|0.55556 169832|0.5 169833|0.45833 169834|0.40278 169835|0.52778 169836|0.38889 169837|0.5 169838|0.56944 169839|0.29167 169840|0.58333 169841|0.45833 169842|0.5 169843|0.34722 169844|0.47222 169845|0.26389 169846|0.56944 169847|0.45833 169848|0.125 169849|0.18056 169850|0.38889 169851|0.38889 169852|0.44444 169853|0.44444 169854|0.40278 169855|0.45833 169856|0.29167 169857|0.33333 169858|0.44444 169859|0.29167 169860|0.27778 169861|0.5 169862|0.65278 169863|0.66667 169864|0.55556 169865|0.27778 169866|0.18056 169867|0.16667 169868|0.56944 169869|0.48611 169870|0.58333 169871|0.29167 169872|0.29167 169873|0.31944 169874|0.20833 169875|0.15278 169876|0.375 169877|0.375 169878|0.30556 169879|0.13889 169880|0.29167 169881|0.38889 169882|0.36111 169883|0.47222 169884|0.26389 169885|0.5 169886|0.5 169887|0.48611 169888|0.58333 169889|0.43056 169890|0.38889 169891|0.27778 169892|0.40278 169893|0.5 169894|0.63889 169895|0.5 169896|0.48611 169897|0.36111 169898|0.33333 169899|0.47222 169900|0.5 169901|0.5 169902|0.56944 169903|0.54167 169904|0.54167 169905|0.5 169906|0.43056 169907|0.40278 169908|0.34722 169909|0.5 169910|0.27778 169911|0.51389 169912|0.5 169913|0.375 169914|0.51389 169915|0.27778 169916|0.63889 169917|0.55556 169918|0.52778 169919|0.34722 169920|0.41667 169921|0.69444 169922|0.34722 169923|0.34722 169924|0.44444 169925|0.56944 169926|0.55556 169927|0.5 169928|0.55556 169929|0.26389 169930|0.29167 169931|0.56944 169932|0.58333 169933|0.5 169934|0.41667 169935|0.55556 169936|0.26389 169937|0.125 169938|0.58333 169939|0.16667 169940|0.47222 169941|0.5 169942|0.5 169943|0.31944 169944|0.27778 169945|0.41667 169946|0.22222 169947|0.40278 169948|0.45833 169949|0.33333 169950|0.44444 169951|0.38889 169952|0.59722 169953|0.43056 169954|0.31944 169955|0.44444 169956|0.40278 169957|0.81944 169958|0.41667 169959|0.097222 169960|0.5 169961|0.5 169962|0.5 169963|0.38889 169964|0.65278 169965|0.56944 169966|0.40278 169967|0.47222 169968|0.38889 169969|0.47222 169970|0.52778 169971|0.56944 169972|0.34722 169973|0.083333 169974|0.375 169975|0.56944 169976|0.54167 169977|0.5 169978|0.5 169979|0.11111 169980|0.61111 169981|0.48611 169982|0.58333 169983|0.48611 169984|0.48611 169985|0.27778 169986|0.5 169987|0.48611 169988|0.63889 169989|0.43056 169990|0.55556 169991|0.54167 169992|0.375 169993|0.52778 169994|0.52778 169995|0.055556 169996|0.44444 169997|0.5 169998|0.5 169999|0.31944 170000|0.47222 170001|0.625 170002|0.47222 170003|0.51389 170004|0.33333 170005|0.43056 170006|0.43056 170007|0.38889 170008|0.38889 170009|0.25 170010|0.33333 170011|0.11111 170012|0.23611 170013|0.25 170014|0.56944 170015|0.44444 170016|0.40278 170017|0.52778 170018|0.34722 170019|0.27778 170020|0.5 170021|0.15278 170022|0.5 170023|0.43056 170024|0.23611 170025|0.38889 170026|0.5 170027|0.45833 170028|0.45833 170029|0.55556 170030|0.5 170031|0.625 170032|0.5 170033|0.31944 170034|0.30556 170035|0.16667 170036|0.375 170037|0.29167 170038|0.375 170039|0.34722 170040|0.48611 170041|0.40278 170042|0.11111 170043|0.26389 170044|0.55556 170045|0.5 170046|0.5 170047|0.5 170048|0.5 170049|0.44444 170050|0.44444 170051|0.5 170052|0.65278 170053|0.73611 170054|0.20833 170055|0.375 170056|0.56944 170057|0.5 170058|0.29167 170059|0.61111 170060|0.48611 170061|0.59722 170062|0.52778 170063|0.48611 170064|0.54167 170065|0.55556 170066|0.72222 170067|0.90278 170068|0.5 170069|0.5 170070|0.33333 170071|0.40278 170072|0.5 170073|0.18056 170074|0.41667 170075|0.55556 170076|0.54167 170077|0.375 170078|0.16667 170079|0.43056 170080|0.25 170081|0.041667 170082|0.51389 170083|0.33333 170084|0.38889 170085|0.59722 170086|0.47222 170087|0.44444 170088|0.43056 170089|0.26389 170090|0.27778 170091|0.23611 170092|0.51389 170093|0.61111 170094|0.83333 170095|0.72222 170096|0.58333 170097|0.40278 170098|0.52778 170099|0.43056 170100|0.65278 170101|0.43056 170102|0.51389 170103|0.5 170104|0.51389 170105|0.68056 170106|0.45833 170107|0.51389 170108|0.38889 170109|0.38889 170110|0.41667 170111|0.375 170112|0.5 170113|0.55556 170114|0.56944 170115|0.66667 170116|0.44444 170117|0.66667 170118|0.54167 170119|0.5 170120|0.61111 170121|0.45833 170122|0.097222 170123|0.44444 170124|0.45833 170125|0.38889 170126|0.22222 170127|0.5 170128|0.27778 170129|0.36111 170130|0.19444 170131|0.20833 170132|0.375 170133|0.26389 170134|0.47222 170135|0.5 170136|0.34722 170137|0.51389 170138|0.44444 170139|0.58333 170140|0.75 170141|0.70833 170142|0.29167 170143|0.375 170144|0.22222 170145|0.45833 170146|0.34722 170147|0.36111 170148|0.38889 170149|0.33333 170150|0.44444 170151|0.19444 170152|0.38889 170153|0.23611 170154|0.61111 170155|0.40278 170156|0.51389 170157|0.56944 170158|0.27778 170159|0.5 170160|0.38889 170161|0.38889 170162|0.31944 170163|0.31944 170164|0.51389 170165|0.55556 170166|0.51389 170167|0.5 170168|0.47222 170169|0.5 170170|0.48611 170171|0.20833 170172|0.5 170173|0.5 170174|0.48611 170175|0.38889 170176|0.16667 170177|0.43056 170178|0.81944 170179|0.40278 170180|0.44444 170181|0.5 170182|0.55556 170183|0.59722 170184|0.44444 170185|0.58333 170186|0.58333 170187|0.44444 170188|0.5 170189|0.5 170190|0.44444 170191|0.625 170192|0.5 170193|0.5 170194|0.41667 170195|0.55556 170196|0.47222 170197|0.61111 170198|0.47222 170199|0.43056 170200|0.23611 170201|0.44444 170202|0.31944 170203|0.54167 170204|0.51389 170205|0.54167 170206|0.55556 170207|0.52778 170208|0.55556 170209|0.59722 170210|0.26389 170211|0.5 170212|0.5 170213|0.52778 170214|0.47222 170215|0.43056 170216|0.38889 170217|0.48611 170218|0.41667 170219|0.41667 170220|0.5 170221|0.45833 170222|0.5 170223|0.625 170224|0.40278 170225|0.44444 170226|0.20833 170227|0.20833 170228|0.15278 170229|0.56944 170230|0.48611 170231|0.27778 170232|0.36111 170233|0.43056 170234|0.34722 170235|0.31944 170236|0.54167 170237|0.52778 170238|0.5 170239|0.41667 170240|0.52778 170241|0.47222 170242|0.33333 170243|0.30556 170244|0.5 170245|0.5 170246|0.5 170247|0.5 170248|0.5 170249|0.43056 170250|0.44444 170251|0.5 170252|0.47222 170253|0.33333 170254|0.18056 170255|0.33333 170256|0.29167 170257|0.29167 170258|0.55556 170259|0.54167 170260|0.29167 170261|0.30556 170262|0.36111 170263|0.22222 170264|0.38889 170265|0.54167 170266|0.56944 170267|0.38889 170268|0.43056 170269|0.61111 170270|0.66667 170271|0.38889 170272|0.20833 170273|0.27778 170274|0.31944 170275|0.40278 170276|0.61111 170277|0.27778 170278|0.41667 170279|0.26389 170280|0.5 170281|0.20833 170282|0.22222 170283|0.29167 170284|0.41667 170285|0.30556 170286|0.23611 170287|0.34722 170288|0.41667 170289|0.40278 170290|0.33333 170291|0.29167 170292|0.30556 170293|0.33333 170294|0.30556 170295|0.5 170296|0.22222 170297|0.51389 170298|0.5 170299|0.23611 170300|0.5 170301|0.5 170302|0.5 170303|0.5 170304|0.29167 170305|0.56944 170306|0.5 170307|0.54167 170308|0.61111 170309|0.52778 170310|0.44444 170311|0.55556 170312|0.16667 170313|0.5 170314|0.375 170315|0.47222 170316|0.52778 170317|0.5 170318|0.29167 170319|0.33333 170320|0.54167 170321|0.22222 170322|0.38889 170323|0.5 170324|0.38889 170325|0.41667 170326|0.48611 170327|0.11111 170328|0.36111 170329|0.33333 170330|0.5 170331|0.66667 170332|0.33333 170333|0.18056 170334|0.38889 170335|0.5 170336|0.44444 170337|0.65278 170338|0.52778 170339|0.5 170340|0.30556 170341|0.375 170342|0.40278 170343|0.52778 170344|0.43056 170345|0.51389 170346|0.31944 170347|0.38889 170348|0.20833 170349|0.097222 170350|0.41667 170351|0.26389 170352|0.16667 170353|0.33333 170354|0.27778 170355|0.55556 170356|0.5 170357|0.5 170358|0.38889 170359|0.34722 170360|0.56944 170361|0.5 170362|0.31944 170363|0.55556 170364|0.38889 170365|0.40278 170366|0.76389 170367|0.58333 170368|0.66667 170369|0.5 170370|0.34722 170371|0.41667 170372|0.33333 170373|0.47222 170374|0.55556 170375|0.5 170376|0.47222 170377|0.625 170378|0.72222 170379|0.54167 170380|0.38889 170381|0.625 170382|0.51389 170383|0.55556 170384|0.63889 170385|0.19444 170386|0.55556 170387|0.55556 170388|0.47222 170389|0.65278 170390|0.33333 170391|0.5 170392|0.5 170393|0.30556 170394|0.375 170395|0.27778 170396|0.5 170397|0.54167 170398|0.30556 170399|0.44444 170400|0.5 170401|0.5 170402|0.40278 170403|0.54167 170404|0.25 170405|0.44444 170406|0.34722 170407|0.47222 170408|0.40278 170409|0.51389 170410|0.15278 170411|0.15278 170412|0.45833 170413|0.54167 170414|0.66667 170415|0.22222 170416|0.72222 170417|0.5 170418|0.44444 170419|0.23611 170420|0.40278 170421|0.34722 170422|0.5 170423|0.27778 170424|0.51389 170425|0.5 170426|0.70833 170427|0.25 170428|0.55556 170429|0.5 170430|0.5 170431|0.375 170432|0.5 170433|0.43056 170434|0.45833 170435|0.5 170436|0.51389 170437|0.44444 170438|0.5 170439|0.51389 170440|0.5 170441|0.73611 170442|0.56944 170443|0.5 170444|0.51389 170445|0.30556 170446|0.5 170447|0.45833 170448|0.55556 170449|0.47222 170450|0.5 170451|0.5 170452|0.59722 170453|0.38889 170454|0.66667 170455|0.61111 170456|0.26389 170457|0.51389 170458|0.51389 170459|0.51389 170460|0.51389 170461|0.5 170462|0.33333 170463|0.34722 170464|0.41667 170465|0.5 170466|0.33333 170467|0.43056 170468|0.5 170469|0.5 170470|0.36111 170471|0.5 170472|0.54167 170473|0.58333 170474|0.19444 170475|0.5 170476|0.5 170477|0.5 170478|0.5 170479|0.54167 170480|0.29167 170481|0.5 170482|0.375 170483|0.18056 170484|0.5 170485|0.5 170486|0.5 170487|0.48611 170488|0.23611 170489|0.43056 170490|0.45833 170491|0.61111 170492|0.61111 170493|0.44444 170494|0.48611 170495|0.5 170496|0.5 170497|0.47222 170498|0.61111 170499|0.47222 170500|0.44444 170501|0.59722 170502|0.48611 170503|0.55556 170504|0.45833 170505|0.47222 170506|0.5 170507|0.63889 170508|0.5 170509|0.61111 170510|0.52778 170511|0.38889 170512|0.26389 170513|0.63889 170514|0.61111 170515|0.51389 170516|0.25 170517|0.47222 170518|0.45833 170519|0.31944 170520|0.26389 170521|0.51389 170522|0.52778 170523|0.79167 170524|0.52778 170525|0.52778 170526|0.5 170527|0.33333 170528|0.45833 170529|0.56944 170530|0.59722 170531|0.34722 170532|0.375 170533|0.58333 170534|0.5 170535|0.27778 170536|0.5 170537|0.27778 170538|0.5 170539|0.55556 170540|0.61111 170541|0.52778 170542|0.55556 170543|0.55556 170544|0.47222 170545|0.84722 170546|0.51389 170547|0.22222 170548|0.19444 170549|0.47222 170550|0.22222 170551|0.55556 170552|0.63889 170553|0.5 170554|0.33333 170555|0.125 170556|0.41667 170557|0.5 170558|0.5 170559|0.38889 170560|0.5 170561|0.45833 170562|0.5 170563|0.48611 170564|0.40278 170565|0.375 170566|0.66667 170567|0.41667 170568|0.15278 170569|0.44444 170570|0.52778 170571|0.23611 170572|0.55556 170573|0.38889 170574|0.44444 170575|0.48611 170576|0.26389 170577|0.70833 170578|0.23611 170579|0.083333 170580|0.20833 170581|0.44444 170582|0.27778 170583|0.47222 170584|0.52778 170585|0.625 170586|0.5 170587|0.51389 170588|0.20833 170589|0.44444 170590|0.26389 170591|0.56944 170592|0.5 170593|0.23611 170594|0.30556 170595|0.097222 170596|0.20833 170597|0.375 170598|0.34722 170599|0.26389 170600|0.38889 170601|0.40278 170602|0.72222 170603|0.15278 170604|0.27778 170605|0.29167 170606|0.23611 170607|0.40278 170608|0.52778 170609|0.33333 170610|0.40278 170611|0.41667 170612|0.41667 170613|0.33333 170614|0.47222 170615|0.29167 170616|0.27778 170617|0.68056 170618|0.33333 170619|0.22222 170620|0.26389 170621|0.30556 170622|0.47222 170623|0.26389 170624|0.26389 170625|0.30556 170626|0.36111 170627|0.31944 170628|0.55556 170629|0.22222 170630|0.33333 170631|0.36111 170632|0.23611 170633|0.18056 170634|0.5 170635|0.36111 170636|0.375 170637|0.43056 170638|0.38889 170639|0.40278 170640|0.375 170641|0.22222 170642|0.68056 170643|0.70833 170644|0.51389 170645|0.58333 170646|0.25 170647|0.51389 170648|0.45833 170649|0.48611 170650|0.47222 170651|0.41667 170652|0.43056 170653|0.34722 170654|0.5 170655|0.5 170656|0.45833 170657|0.5 170658|0.55556 170659|0.77778 170660|0.52778 170661|0.5 170662|0.5 170663|0.38889 170664|0.51389 170665|0.375 170666|0.27778 170667|0.29167 170668|0.22222 170669|0.47222 170670|0.5 170671|0.5 170672|0.38889 170673|0.44444 170674|0.40278 170675|0.41667 170676|0.5 170677|0.38889 170678|0.125 170679|0.26389 170680|0.26389 170681|0.36111 170682|0.41667 170683|0.41667 170684|0.16667 170685|0.11111 170686|0.40278 170687|0.31944 170688|0.30556 170689|0.44444 170690|0.48611 170691|0.44444 170692|0.5 170693|0.44444 170694|0.5 170695|0.31944 170696|0.40278 170697|0.56944 170698|0.47222 170699|0.23611 170700|0.5 170701|0.5 170702|0.58333 170703|0.38889 170704|0.47222 170705|0.29167 170706|0.54167 170707|0.41667 170708|0.58333 170709|0.66667 170710|0.55556 170711|0.44444 170712|0.33333 170713|0.23611 170714|0.13889 170715|0.51389 170716|0.48611 170717|0.5 170718|0.58333 170719|0.44444 170720|0.40278 170721|0.72222 170722|0.5 170723|0.52778 170724|0.625 170725|0.5 170726|0.16667 170727|0.36111 170728|0.30556 170729|0.33333 170730|0.40278 170731|0.27778 170732|0.20833 170733|0.47222 170734|0.48611 170735|0.31944 170736|0.54167 170737|0.55556 170738|0.5 170739|0.19444 170740|0.11111 170741|0.31944 170742|0.23611 170743|0.27778 170744|0.5 170745|0.40278 170746|0.15278 170747|0.77778 170748|0.5 170749|0.34722 170750|0.51389 170751|0.27778 170752|0.48611 170753|0.56944 170754|0.27778 170755|0.56944 170756|0.5 170757|0.29167 170758|0.56944 170759|0.52778 170760|0.55556 170761|0.52778 170762|0.73611 170763|0.59722 170764|0.58333 170765|0.61111 170766|0.5 170767|0.38889 170768|0.375 170769|0.63889 170770|0.5 170771|0.5 170772|0.23611 170773|0.22222 170774|0.41667 170775|0.5 170776|0.38889 170777|0.38889 170778|0.55556 170779|0.69444 170780|0.5 170781|0.5 170782|0.58333 170783|0.63889 170784|0.58333 170785|0.47222 170786|0.47222 170787|0.5 170788|0.44444 170789|0.55556 170790|0.45833 170791|0.38889 170792|0.44444 170793|0.375 170794|0.55556 170795|0.5 170796|0.41667 170797|0.47222 170798|0.44444 170799|0.5 170800|0.34722 170801|0.375 170802|0.43056 170803|0.29167 170804|0.29167 170805|0.29167 170806|0.48611 170807|0.13889 170808|0.5 170809|0.5 170810|0.56944 170811|0.52778 170812|0.52778 170813|0.52778 170814|0.43056 170815|0.16667 170816|0.41667 170817|0.27778 170818|0.36111 170819|0.45833 170820|0.5 170821|0.36111 170822|0.38889 170823|0.33333 170824|0.38889 170825|0.38889 170826|0.38889 170827|0.34722 170828|0.22222 170829|0.27778 170830|0.36111 170831|0.375 170832|0.083333 170833|0.23611 170834|0.25 170835|0.36111 170836|0.55556 170837|0.61111 170838|0.45833 170839|0.27778 170840|0.5 170841|0.5 170842|0.80556 170843|0.52778 170844|0.51389 170845|0.52778 170846|0.55556 170847|0.65278 170848|0.15278 170849|0.31944 170850|0.52778 170851|0.5 170852|0.29167 170853|0.41667 170854|0.30556 170855|0.73611 170856|0.375 170857|0.40278 170858|0.375 170859|0.5 170860|0.47222 170861|0.59722 170862|0.63889 170863|0.13889 170864|0.5 170865|0.44444 170866|0.5 170867|0.5 170868|0.47222 170869|0.56944 170870|0.54167 170871|0.5 170872|0.55556 170873|0.48611 170874|0.27778 170875|0.23611 170876|0.55556 170877|0.5 170878|0.55556 170879|0.72222 170880|0.5 170881|0.54167 170882|0.43056 170883|0.33333 170884|0.70833 170885|0.26389 170886|0.38889 170887|0.30556 170888|0.31944 170889|0.36111 170890|0.20833 170891|0.58333 170892|0.5 170893|0.5 170894|0.47222 170895|0.5 170896|0.5 170897|0.5 170898|0.33333 170899|0.5 170900|0.48611 170901|0.66667 170902|0.5 170903|0.33333 170904|0.38889 170905|0.29167 170906|0.33333 170907|0.5 170908|0.375 170909|0.5 170910|0.5 170911|0.81944 170912|0.72222 170913|0.80556 170914|0.44444 170915|0.375 170916|0.48611 170917|0.5 170918|0.5 170919|0.5 170920|0.5 170921|0.5 170922|0.47222 170923|0.29167 170924|0.5 170925|0.38889 170926|0.5 170927|0.34722 170928|0.51389 170929|0.54167 170930|0.5 170931|0.51389 170932|0.45833 170933|0.59722 170934|0.27778 170935|0.48611 170936|0.31944 170937|0.66667 170938|0.625 170939|0.58333 170940|0.33333 170941|0.15278 170942|0.23611 170943|0.23611 170944|0.27778 170945|0.11111 170946|0.027778 170947|0.51389 170948|0.625 170949|0.45833 170950|0.5 170951|0.083333 170952|0.16667 170953|0.41667 170954|0.5 170955|0.5 170956|0.5 170957|0.65278 170958|0.5 170959|0.5 170960|0.30556 170961|0.36111 170962|0.38889 170963|0.27778 170964|0.23611 170965|0.38889 170966|0.38889 170967|0.26389 170968|0.5 170969|0.5 170970|0.069444 170971|0.41667 170972|0.55556 170973|0.44444 170974|0.45833 170975|0.33333 170976|0.33333 170977|0.38889 170978|0.65278 170979|0.18056 170980|0.5 170981|0.48611 170982|0.33333 170983|0.16667 170984|0.5 170985|0.47222 170986|0.5 170987|0.55556 170988|0.5 170989|0.65278 170990|0.45833 170991|0.44444 170992|0.44444 170993|0.27778 170994|0.5 170995|0.48611 170996|0.5 170997|0.5 170998|0.66667 170999|0.72222 171000|0.56944 171001|0.69444 171002|0.54167 171003|0.40278 171004|0.5 171005|0.375 171006|0.63889 171007|0.75 171008|0.55556 171009|0.38889 171010|0.41667 171011|0.625 171012|0.51389 171013|0.5 171014|0.51389 171015|0.61111 171016|0.79167 171017|0.59722 171018|0.56944 171019|0.29167 171020|0.45833 171021|0.59722 171022|0.44444 171023|0.44444 171024|0.5 171025|0.51389 171026|0.41667 171027|0.33333 171028|0.48611 171029|0.375 171030|0.31944 171031|0.25 171032|0.52778 171033|0.51389 171034|0.40278 171035|0.61111 171036|0.59722 171037|0.43056 171038|0.36111 171039|0.48611 171040|0.47222 171041|0.36111 171042|0.5 171043|0.33333 171044|0.45833 171045|0.5 171046|0.47222 171047|0.44444 171048|0.66667 171049|0.36111 171050|0.44444 171051|0.55556 171052|0.41667 171053|0.25 171054|0.22222 171055|0.22222 171056|0.5 171057|0.25 171058|0.5 171059|0.61111 171060|0.55556 171061|0.5 171062|0.41667 171063|0.44444 171064|0.23611 171065|0.56944 171066|0.5 171067|0.45833 171068|0.43056 171069|0.48611 171070|0.52778 171071|0.34722 171072|0.11111 171073|0.45833 171074|0.29167 171075|0.40278 171076|0.30556 171077|0.44444 171078|0.27778 171079|0.44444 171080|0.52778 171081|0.36111 171082|0.45833 171083|0.79167 171084|0.36111 171085|0.47222 171086|0.36111 171087|0.34722 171088|0.48611 171089|0.5 171090|0.5 171091|0.5 171092|0.48611 171093|0.5 171094|0.5 171095|0.27778 171096|0.52778 171097|0.5 171098|0.54167 171099|0.45833 171100|0.48611 171101|0.36111 171102|0.23611 171103|0.23611 171104|0.36111 171105|0.5 171106|0.61111 171107|0.20833 171108|0.47222 171109|0.375 171110|0.16667 171111|0.34722 171112|0.38889 171113|0.18056 171114|0.5 171115|0.5 171116|0.48611 171117|0.34722 171118|0.43056 171119|0.5 171120|0.5 171121|0.5 171122|0.5 171123|0.55556 171124|0.48611 171125|0.5 171126|0.55556 171127|0.55556 171128|0.66667 171129|0.5 171130|0.5 171131|0.47222 171132|0.5 171133|0.5 171134|0.38889 171135|0.5 171136|0.58333 171137|0.5 171138|0.41667 171139|0.5 171140|0.59722 171141|0.40278 171142|0.66667 171143|0.63889 171144|0.29167 171145|0.41667 171146|0.20833 171147|0.31944 171148|0.40278 171149|0.59722 171150|0.23611 171151|0.34722 171152|0.36111 171153|0.5 171154|0.375 171155|0.68056 171156|0.54167 171157|0.44444 171158|0.41667 171159|0.66667 171160|0.55556 171161|0.5 171162|0.56944 171163|0.22222 171164|0.36111 171165|0.25 171166|0.34722 171167|0.36111 171168|0.5 171169|0.5 171170|0.45833 171171|0.5 171172|0.56944 171173|0.19444 171174|0.47222 171175|0.61111 171176|0.23611 171177|0.55556 171178|0.5 171179|0.51389 171180|0.5 171181|0.20833 171182|0.5 171183|0.5 171184|0.51389 171185|0.5 171186|0.44444 171187|0.20833 171188|0.43056 171189|0.23611 171190|0.22222 171191|0.5 171192|0.5 171193|0.31944 171194|0.38889 171195|0.5 171196|0.58333 171197|0.54167 171198|0.36111 171199|0.5 171200|0.56944 171201|0.31944 171202|0.375 171203|0.27778 171204|0.5 171205|0.5 171206|0.5 171207|0.5 171208|0.54167 171209|0.34722 171210|0.40278 171211|0.43056 171212|0.5 171213|0.43056 171214|0.52778 171215|0.083333 171216|0.5 171217|0.38889 171218|0.5 171219|0.43056 171220|0.51389 171221|0.43056 171222|0.45833 171223|0.55556 171224|0.30556 171225|0.5 171226|0.31944 171227|0.44444 171228|0.41667 171229|0.45833 171230|0.40278 171231|0.5 171232|0.16667 171233|0.48611 171234|0.5 171235|0.59722 171236|0.52778 171237|0.31944 171238|0.45833 171239|0.16667 171240|0.54167 171241|0.5 171242|0.47222 171243|0.44444 171244|0.36111 171245|0.375 171246|0.38889 171247|0.72222 171248|0.55556 171249|0.5 171250|0.66667 171251|0.86111 171252|0.22222 171253|0.47222 171254|0.45833 171255|0.23611 171256|0.23611 171257|0.375 171258|0.48611 171259|0.38889 171260|0.16667 171261|0.55556 171262|0.34722 171263|0.59722 171264|0.80556 171265|0.72222 171266|0.70833 171267|0.52778 171268|0.63889 171269|0.44444 171270|0.51389 171271|0.48611 171272|0.25 171273|0.19444 171274|0.30556 171275|0.47222 171276|0.5 171277|0.34722 171278|0.61111 171279|0.625 171280|0.59722 171281|0.52778 171282|0.55556 171283|0.63889 171284|0.72222 171285|0.33333 171286|0.47222 171287|0.45833 171288|0.5 171289|0.40278 171290|0.375 171291|0.38889 171292|0.33333 171293|0.29167 171294|0.43056 171295|0.20833 171296|0.48611 171297|0.38889 171298|0.29167 171299|0.48611 171300|0.30556 171301|0.20833 171302|0.20833 171303|0.51389 171304|0.22222 171305|0.19444 171306|0.31944 171307|0.013889 171308|0.13889 171309|0.5 171310|0.5 171311|0.5 171312|0.31944 171313|0.45833 171314|0.38889 171315|0.44444 171316|0.5 171317|0.40278 171318|0.38889 171319|0.5 171320|0.38889 171321|0.33333 171322|0.45833 171323|0.29167 171324|0.40278 171325|0.55556 171326|0.5 171327|0.61111 171328|0.36111 171329|0.375 171330|0.23611 171331|0.5 171332|0.44444 171333|0.58333 171334|0.5 171335|0.47222 171336|0.55556 171337|0.55556 171338|0.68056 171339|0.56944 171340|0.51389 171341|0.52778 171342|0.47222 171343|0.61111 171344|0.55556 171345|0.33333 171346|0.069444 171347|0.20833 171348|0.43056 171349|0.27778 171350|0.36111 171351|0.18056 171352|0.625 171353|0.55556 171354|0.44444 171355|0.61111 171356|0.68056 171357|0.375 171358|0.625 171359|0.45833 171360|0.65278 171361|0.38889 171362|0.38889 171363|0.20833 171364|0.5 171365|0.11111 171366|0.36111 171367|0.36111 171368|0.18056 171369|0.51389 171370|0.31944 171371|0.45833 171372|0.70833 171373|0.59722 171374|0.43056 171375|0.51389 171376|0.26389 171377|0.27778 171378|0.69444 171379|0.75 171380|0.31944 171381|0.125 171382|0.29167 171383|0.69444 171384|0.125 171385|0.55556 171386|0.38889 171387|0.27778 171388|0.20833 171389|0.23611 171390|0.055556 171391|0.055556 171392|0.47222 171393|0.16667 171394|0.23611 171395|0.11111 171396|0.29167 171397|0.26389 171398|0.59722 171399|0.27778 171400|0.52778 171401|0.38889 171402|0.29167 171403|0.11111 171404|0.15278 171405|0.29167 171406|0.11111 171407|0.51389 171408|0.33333 171409|0.69444 171410|0.26389 171411|0.18056 171412|0.34722 171413|0.55556 171414|0.43056 171415|0.36111 171416|0.30556 171417|0.70833 171418|0.55556 171419|0.43056 171420|0.55556 171421|0.26389 171422|0.25 171423|0.33333 171424|0.5 171425|0.26389 171426|0.40278 171427|0.47222 171428|0.5 171429|0.44444 171430|0.19444 171431|0.51389 171432|0.44444 171433|0.23611 171434|0.5 171435|0.26389 171436|0.45833 171437|0.33333 171438|0.30556 171439|0.63889 171440|0.5 171441|0.27778 171442|0.55556 171443|0.52778 171444|0.52778 171445|0.44444 171446|0.38889 171447|0.73611 171448|0.20833 171449|0.16667 171450|0.5 171451|0.29167 171452|0.41667 171453|0.125 171454|0.55556 171455|0.22222 171456|0.69444 171457|0.38889 171458|0.58333 171459|0.51389 171460|0.41667 171461|0.34722 171462|0.55556 171463|0.083333 171464|0.5 171465|0.11111 171466|0.13889 171467|0.38889 171468|0.16667 171469|0.25 171470|0.38889 171471|0.34722 171472|0.22222 171473|0.22222 171474|0.5 171475|0.58333 171476|0.25 171477|0.48611 171478|0.41667 171479|0.5 171480|0.44444 171481|0.65278 171482|0.33333 171483|0.125 171484|0.5 171485|0.81944 171486|0.34722 171487|0.61111 171488|0.66667 171489|0.65278 171490|0.41667 171491|0.23611 171492|0.33333 171493|0.34722 171494|0.44444 171495|0.36111 171496|0.30556 171497|0.27778 171498|0.19444 171499|0.40278 171500|0.22222 171501|0.31944 171502|0.52778 171503|0.26389 171504|0.23611 171505|0.31944 171506|0.33333 171507|0.38889 171508|0.55556 171509|0.55556 171510|0.68056 171511|0.48611 171512|0.5 171513|0.56944 171514|0.44444 171515|0.58333 171516|0.5 171517|0.54167 171518|0.45833 171519|0.58333 171520|0.5 171521|0.45833 171522|0.26389 171523|0.25 171524|0.40278 171525|0.5 171526|0.27778 171527|0.58333 171528|0.31944 171529|0.65278 171530|0.5 171531|0.18056 171532|0.11111 171533|0.20833 171534|0.36111 171535|0.33333 171536|0.29167 171537|0.51389 171538|0.27778 171539|0.59722 171540|0.23611 171541|0.625 171542|0.65278 171543|0.44444 171544|0.54167 171545|0.58333 171546|0.63889 171547|0.44444 171548|0.65278 171549|0.68056 171550|0.73611 171551|0.80556 171552|0.69444 171553|0.66667 171554|0.56944 171555|0.48611 171556|0.44444 171557|0.625 171558|0.11111 171559|0.13889 171560|0.13889 171561|0.44444 171562|0.54167 171563|0.65278 171564|0.77778 171565|0.75 171566|0.40278 171567|0.91667 171568|0.66667 171569|0.65278 171570|0.63889 171571|0.61111 171572|0.72222 171573|0.76389 171574|0.625 171575|0.19444 171576|0.51389 171577|0.45833 171578|0.5 171579|0.59722 171580|0.625 171581|0.38889 171582|0.55556 171583|0.47222 171584|0.5 171585|0.48611 171586|0.55556 171587|0.52778 171588|0.69444 171589|0.61111 171590|0.5 171591|0.5 171592|0.48611 171593|0.41667 171594|0.56944 171595|0.63889 171596|0.5 171597|0.56944 171598|0.65278 171599|0.76389 171600|0.25 171601|0.20833 171602|0.56944 171603|0.40278 171604|0.41667 171605|0.375 171606|0.36111 171607|0.36111 171608|0.29167 171609|0.5 171610|0.625 171611|0.61111 171612|0.51389 171613|0.45833 171614|0.55556 171615|0.55556 171616|0.43056 171617|0.51389 171618|0.625 171619|0.48611 171620|0.34722 171621|0.16667 171622|0.22222 171623|0.52778 171624|0.5 171625|0.58333 171626|0.48611 171627|0.5 171628|0.38889 171629|0.36111 171630|0.5 171631|0.33333 171632|0.5 171633|0.36111 171634|0.5 171635|0.52778 171636|0.43056 171637|0.5 171638|0.26389 171639|0.51389 171640|0.22222 171641|0.44444 171642|0.25 171643|0.375 171644|0.31944 171645|0.34722 171646|0.25 171647|0.59722 171648|0.5 171649|0.29167 171650|0.72222 171651|0.47222 171652|0.34722 171653|0.48611 171654|0.26389 171655|0.5 171656|0.66667 171657|0.40278 171658|0.55556 171659|0.45833 171660|0.70833 171661|0.55556 171662|0.5 171663|0.5 171664|0.30556 171665|0.55556 171666|0.51389 171667|0.34722 171668|0.55556 171669|0.5 171670|0.41667 171671|0.23611 171672|0.30556 171673|0.5 171674|0.20833 171675|0.72222 171676|0.34722 171677|0.30556 171678|0.63889 171679|0.63889 171680|0.56944 171681|0.29167 171682|0.31944 171683|0.34722 171684|0.30556 171685|0.27778 171686|0.65278 171687|0.73611 171688|0.65278 171689|0.63889 171690|0.56944 171691|0.56944 171692|0.375 171693|0.47222 171694|0.27778 171695|0.5 171696|0.55556 171697|0.44444 171698|0.45833 171699|0.5 171700|0.44444 171701|0.40278 171702|0.31944 171703|0.54167 171704|0.51389 171705|0.25 171706|0.63889 171707|0.47222 171708|0.22222 171709|0.40278 171710|0.40278 171711|0.375 171712|0.19444 171713|0.26389 171714|0.43056 171715|0.45833 171716|0.41667 171717|0.44444 171718|0.375 171719|0.40278 171720|0.41667 171721|0.36111 171722|0.27778 171723|0.33333 171724|0.40278 171725|0.5 171726|0.5 171727|0.34722 171728|0.41667 171729|0.38889 171730|0.19444 171731|0.16667 171732|0.5 171733|0.13889 171734|0.13889 171735|0.33333 171736|0.375 171737|0.51389 171738|0.59722 171739|0.38889 171740|0.38889 171741|0.5 171742|0.13889 171743|0.5 171744|0.48611 171745|0.5 171746|0.27778 171747|0.15278 171748|0.56944 171749|0.58333 171750|0.055556 171751|0.16667 171752|0.30556 171753|0.36111 171754|0.5 171755|0.5 171756|0.33333 171757|0.5 171758|0.61111 171759|0.5 171760|0.41667 171761|0.69444 171762|0.30556 171763|0.5 171764|0.27778 171765|0.51389 171766|0.5 171767|0.55556 171768|0.45833 171769|0.63889 171770|0.41667 171771|0.40278 171772|0.63889 171773|0.58333 171774|0.61111 171775|0.29167 171776|0.5 171777|0.18056 171778|0.48611 171779|0.36111 171780|0.5 171781|0.41667 171782|0.375 171783|0.26389 171784|0.27778 171785|0.51389 171786|0.45833 171787|0.43056 171788|0.44444 171789|0.22222 171790|0.52778 171791|0.66667 171792|0.30556 171793|0.097222 171794|0.5 171795|0.375 171796|0.18056 171797|0.51389 171798|0.44444 171799|0.47222 171800|0.69444 171801|0.5 171802|0.66667 171803|0.70833 171804|0.58333 171805|0.375 171806|0.29167 171807|0.34722 171808|0.33333 171809|0.5 171810|0.45833 171811|0.75 171812|0.5 171813|0.36111 171814|0.27778 171815|0.30556 171816|0.43056 171817|0.34722 171818|0.30556 171819|0.40278 171820|0.83333 171821|0.30556 171822|0.5 171823|0.63889 171824|0.45833 171825|0.5 171826|0.38889 171827|0.51389 171828|0.5 171829|0.375 171830|0.5 171831|0.5 171832|0.5 171833|0.38889 171834|0.30556 171835|0.5 171836|0.29167 171837|0.5 171838|0.55556 171839|0.5 171840|0.5 171841|0.5 171842|0.36111 171843|0.34722 171844|0.55556 171845|0.59722 171846|0.56944 171847|0.72222 171848|0.48611 171849|0.5 171850|0.5 171851|0.45833 171852|0.44444 171853|0.5 171854|0.29167 171855|0.20833 171856|0.27778 171857|0.20833 171858|0.33333 171859|0.5 171860|0.52778 171861|0.51389 171862|0.5 171863|0.47222 171864|0.45833 171865|0.54167 171866|0.5 171867|0.41667 171868|0.375 171869|0.15278 171870|0.11111 171871|0.48611 171872|0.30556 171873|0.45833 171874|0.5 171875|0.52778 171876|0.55556 171877|0.5 171878|0.31944 171879|0.41667 171880|0.27778 171881|0.22222 171882|0.22222 171883|0.27778 171884|0.22222 171885|0.22222 171886|0.38889 171887|0.34722 171888|0.5 171889|0.5 171890|0.52778 171891|0.5 171892|0.43056 171893|0.5 171894|0.58333 171895|0.40278 171896|0.48611 171897|0.66667 171898|0.5 171899|0.23611 171900|0.29167 171901|0.19444 171902|0.44444 171903|0.54167 171904|0.5 171905|0.20833 171906|0.27778 171907|0.68056 171908|0.68056 171909|0.55556 171910|0.77778 171911|0.5 171912|0.45833 171913|0.51389 171914|0.56944 171915|0.5 171916|0.54167 171917|0.375 171918|0.5 171919|0.5 171920|0.5 171921|0.58333 171922|0.58333 171923|0.52778 171924|0.58333 171925|0.5 171926|0.66667 171927|0.5 171928|0.63889 171929|0.13889 171930|0.27778 171931|0.31944 171932|0.5 171933|0.5 171934|0.59722 171935|0.375 171936|0.23611 171937|0.44444 171938|0.54167 171939|0.58333 171940|0.66667 171941|0.43056 171942|0.41667 171943|0.5 171944|0.5 171945|0.38889 171946|0.72222 171947|0.375 171948|0.30556 171949|0.45833 171950|0.5 171951|0.30556 171952|0.38889 171953|0.5 171954|0.5 171955|0.43056 171956|0.61111 171957|0.5 171958|0.34722 171959|0.43056 171960|0.23611 171961|0.34722 171962|0.55556 171963|0.625 171964|0.38889 171965|0.33333 171966|0.36111 171967|0.59722 171968|0.48611 171969|0.45833 171970|0.5 171971|0.40278 171972|0.34722 171973|0.44444 171974|0.5 171975|0.5 171976|0.22222 171977|0.40278 171978|0.43056 171979|0.375 171980|0.33333 171981|0.083333 171982|0.38889 171983|0.52778 171984|0.44444 171985|0.22222 171986|0.16667 171987|0.45833 171988|0.36111 171989|0.13889 171990|0.34722 171991|0.22222 171992|0.36111 171993|0.30556 171994|0.55556 171995|0.54167 171996|0.22222 171997|0.22222 171998|0.38889 171999|0.27778 172000|0.47222 172001|0.23611 172002|0.68056 172003|0.45833 172004|0.5 172005|0.25 172006|0.41667 172007|0.069444 172008|0.16667 172009|0.29167 172010|0.5 172011|0.54167 172012|0.56944 172013|0.5 172014|0.5 172015|0.5 172016|0.55556 172017|0.58333 172018|0.5 172019|0.34722 172020|0.34722 172021|0.41667 172022|0.5 172023|0.5 172024|0.22222 172025|0.5 172026|0.5 172027|0.5 172028|0.45833 172029|0.40278 172030|0.38889 172031|0.61111 172032|0.44444 172033|0.38889 172034|0.5 172035|0.44444 172036|0.375 172037|0.16667 172038|0.22222 172039|0.29167 172040|0.22222 172041|0.44444 172042|0.23611 172043|0.44444 172044|0.41667 172045|0.5 172046|0.44444 172047|0.40278 172048|0.19444 172049|0.5 172050|0.36111 172051|0.44444 172052|0.5 172053|0.19444 172054|0.18056 172055|0.59722 172056|0.47222 172057|0.61111 172058|0.5 172059|0.5 172060|0.44444 172061|0.47222 172062|0.44444 172063|0.5 172064|0.44444 172065|0.34722 172066|0.31944 172067|0.125 172068|0.29167 172069|0.44444 172070|0.44444 172071|0.16667 172072|0.31944 172073|0.18056 172074|0.23611 172075|0.25 172076|0.19444 172077|0.43056 172078|0.41667 172079|0.45833 172080|0.66667 172081|0.63889 172082|0.375 172083|0.52778 172084|0.5 172085|0.45833 172086|0.58333 172087|0.41667 172088|0.43056 172089|0.56944 172090|0.43056 172091|0.58333 172092|0.51389 172093|0.55556 172094|0.27778 172095|0.5 172096|0.5 172097|0.375 172098|0.36111 172099|0.23611 172100|0.51389 172101|0.5 172102|0.41667 172103|0.54167 172104|0.79167 172105|0.48611 172106|0.52778 172107|0.72222 172108|0.33333 172109|0.083333 172110|0.38889 172111|0.34722 172112|0.38889 172113|0.56944 172114|0.29167 172115|0.45833 172116|0.29167 172117|0.29167 172118|0.5 172119|0.625 172120|0.44444 172121|0.41667 172122|0.25 172123|0.33333 172124|0.33333 172125|0.75 172126|0.70833 172127|0.66667 172128|0.77778 172129|0.66667 172130|0.5 172131|0.29167 172132|0.52778 172133|0.5 172134|0.48611 172135|0.44444 172136|0.52778 172137|0.29167 172138|0.52778 172139|0.51389 172140|0.38889 172141|0.59722 172142|0.45833 172143|0.5 172144|0.30556 172145|0.5 172146|0.11111 172147|0.13889 172148|0.43056 172149|0.5 172150|0.5 172151|0.65278 172152|0.52778 172153|0.30556 172154|0.54167 172155|0.43056 172156|0.20833 172157|0.20833 172158|0.25 172159|0.76389 172160|0.68056 172161|0.44444 172162|0.43056 172163|0.22222 172164|0.33333 172165|0.34722 172166|0.26389 172167|0.22222 172168|0.097222 172169|0.083333 172170|0.027778 172171|0.22222 172172|0.23611 172173|0.27778 172174|0.38889 172175|0.54167 172176|0.23611 172177|0.55556 172178|0.54167 172179|0.5 172180|0.36111 172181|0.58333 172182|0.27778 172183|0.55556 172184|0.5 172185|0.625 172186|0.55556 172187|0.44444 172188|0.63889 172189|0.5 172190|0.18056 172191|0.55556 172192|0.41667 172193|0.069444 172194|0.54167 172195|0.44444 172196|0.20833 172197|0.5 172198|0.55556 172199|0.41667 172200|0.5 172201|0.5 172202|0.65278 172203|0.375 172204|0.55556 172205|0.61111 172206|0.18056 172207|0.22222 172208|0.25 172209|0.36111 172210|0.54167 172211|0.56944 172212|0.5 172213|0.54167 172214|0.44444 172215|0.5 172216|0.70833 172217|0.44444 172218|0.45833 172219|0.5 172220|0.56944 172221|0.31944 172222|0.52778 172223|0.61111 172224|0.66667 172225|0.45833 172226|0.5 172227|0.65278 172228|0.68056 172229|0.73611 172230|0.25 172231|0.58333 172232|0.40278 172233|0.15278 172234|0.45833 172235|0.33333 172236|0.73611 172237|0.25 172238|0.40278 172239|0.59722 172240|0.56944 172241|0.65278 172242|0.59722 172243|0.77778 172244|0.375 172245|0.625 172246|0.41667 172247|0.51389 172248|0.40278 172249|0.51389 172250|0.38889 172251|0.45833 172252|0.43056 172253|0.55556 172254|0.44444 172255|0.45833 172256|0.29167 172257|0.45833 172258|0.48611 172259|0.27778 172260|0.31944 172261|0.27778 172262|0.33333 172263|0.16667 172264|0.15278 172265|0.43056 172266|0.33333 172267|0.5 172268|0.38889 172269|0.36111 172270|0.55556 172271|0.33333 172272|0.15278 172273|0.38889 172274|0.27778 172275|0.23611 172276|0.20833 172277|0.40278 172278|0.5 172279|0.55556 172280|0.625 172281|0.61111 172282|0.44444 172283|0.43056 172284|0.44444 172285|0.52778 172286|0.31944 172287|0.23611 172288|0.58333 172289|0.52778 172290|0.125 172291|0.15278 172292|0.44444 172293|0.44444 172294|0.38889 172295|0.34722 172296|0.72222 172297|0.34722 172298|0.5 172299|0.5 172300|0.5 172301|0.41667 172302|0.5 172303|0.5 172304|0.5 172305|0.43056 172306|0.5 172307|0.5 172308|0.25 172309|0.26389 172310|0.48611 172311|0.5 172312|0.5 172313|0.44444 172314|0.29167 172315|0.47222 172316|0.27778 172317|0.59722 172318|0.33333 172319|0.23611 172320|0.19444 172321|0.40278 172322|0.44444 172323|0.33333 172324|0.31944 172325|0.34722 172326|0.72222 172327|0.44444 172328|0.19444 172329|0.54167 172330|0.44444 172331|0.34722 172332|0.52778 172333|0.40278 172334|0.55556 172335|0.5 172336|0.34722 172337|0.65278 172338|0.47222 172339|0.11111 172340|0.47222 172341|0.45833 172342|0.68056 172343|0.40278 172344|0.11111 172345|0.45833 172346|0.5 172347|0.58333 172348|0.5 172349|0.55556 172350|0.5 172351|0.5 172352|0.48611 172353|0.44444 172354|0.5 172355|0.33333 172356|0.41667 172357|0.29167 172358|0.59722 172359|0.34722 172360|0.58333 172361|0.47222 172362|0.69444 172363|0.40278 172364|0.5 172365|0.48611 172366|0.43056 172367|0.40278 172368|0.55556 172369|0.68056 172370|0.51389 172371|0.51389 172372|0.19444 172373|0.5 172374|0.5 172375|0.43056 172376|0.5 172377|0.56944 172378|0.59722 172379|0.76389 172380|0.47222 172381|0.51389 172382|0.33333 172383|0.48611 172384|0.44444 172385|0.27778 172386|0.41667 172387|0.54167 172388|0.5 172389|0.56944 172390|0.55556 172391|0.44444 172392|0.38889 172393|0.48611 172394|0.54167 172395|0.34722 172396|0.41667 172397|0.47222 172398|0.41667 172399|0.48611 172400|0.5 172401|0.52778 172402|0.5 172403|0.56944 172404|0.47222 172405|0.33333 172406|0.47222 172407|0.26389 172408|0.44444 172409|0.375 172410|0.51389 172411|0.27778 172412|0.27778 172413|0.5 172414|0.47222 172415|0.63889 172416|0.5 172417|0.48611 172418|0.73611 172419|0.59722 172420|0.54167 172421|0.63889 172422|0.56944 172423|0.63889 172424|0.66667 172425|0.66667 172426|0.44444 172427|0.5 172428|0.5 172429|0.61111 172430|0.5 172431|0.47222 172432|0.34722 172433|0.34722 172434|0.29167 172435|0.125 172436|0.22222 172437|0.27778 172438|0.29167 172439|0.51389 172440|0.5 172441|0.58333 172442|0.55556 172443|0.68056 172444|0.34722 172445|0.36111 172446|0.61111 172447|0.58333 172448|0.5 172449|0.5 172450|0.38889 172451|0.5 172452|0.5 172453|0.45833 172454|0.63889 172455|0.5 172456|0.63889 172457|0.43056 172458|0.44444 172459|0.26389 172460|0.56944 172461|0.36111 172462|0.45833 172463|0.44444 172464|0.625 172465|0.48611 172466|0.59722 172467|0.5 172468|0.5 172469|0.40278 172470|0.5 172471|0.45833 172472|0.40278 172473|0.38889 172474|0.44444 172475|0.40278 172476|0.51389 172477|0.5 172478|0.40278 172479|0.5 172480|0.5 172481|0.47222 172482|0.34722 172483|0.58333 172484|0.625 172485|0.16667 172486|0.22222 172487|0.5 172488|0.5 172489|0.29167 172490|0.26389 172491|0.48611 172492|0.33333 172493|0.38889 172494|0.40278 172495|0.11111 172496|0.15278 172497|0.375 172498|0.45833 172499|0.43056 172500|0.41667 172501|0.15278 172502|0.5 172503|0.31944 172504|0.29167 172505|0.19444 172506|0.5 172507|0.33333 172508|0.45833 172509|0.31944 172510|0.5 172511|0.26389 172512|0.29167 172513|0.44444 172514|0.45833 172515|0.58333 172516|0.54167 172517|0.52778 172518|0.27778 172519|0.26389 172520|0.29167 172521|0.27778 172522|0.66667 172523|0.30556 172524|0.27778 172525|0.25 172526|0.65278 172527|0.5 172528|0.19444 172529|0.30556 172530|0.5 172531|0.51389 172532|0.66667 172533|0.44444 172534|0.625 172535|0.61111 172536|0.20833 172537|0.59722 172538|0.76389 172539|0.70833 172540|0.80556 172541|0.83333 172542|0.68056 172543|0.47222 172544|0.68056 172545|0.5 172546|0.41667 172547|0.5 172548|0.48611 172549|0.5 172550|0.18056 172551|0.40278 172552|0.5 172553|0.58333 172554|0.19444 172555|0.77778 172556|0.56944 172557|0.33333 172558|0.5 172559|0.5 172560|0.5 172561|0.56944 172562|0.40278 172563|0.41667 172564|0.48611 172565|0.40278 172566|0.61111 172567|0.41667 172568|0.33333 172569|0.52778 172570|0.18056 172571|0.16667 172572|0.77778 172573|0.5 172574|0.125 172575|0.5 172576|0.5 172577|0.44444 172578|0.48611 172579|0.29167 172580|0.31944 172581|0.80556 172582|0.65278 172583|0.5 172584|0.5 172585|0.34722 172586|0.27778 172587|0.66667 172588|0.83333 172589|0.61111 172590|0.47222 172591|0.5 172592|0.45833 172593|0.5 172594|0.43056 172595|0.52778 172596|0.13889 172597|0.33333 172598|0.18056 172599|0.375 172600|0.22222 172601|0.31944 172602|0.41667 172603|0.44444 172604|0.45833 172605|0.5 172606|0.5 172607|0.34722 172608|0.56944 172609|0.43056 172610|0.44444 172611|0.44444 172612|0.40278 172613|0.125 172614|0.43056 172615|0.5 172616|0.375 172617|0.41667 172618|0.5 172619|0.56944 172620|0.5 172621|0.52778 172622|0.48611 172623|0.5 172624|0.5 172625|0.40278 172626|0.52778 172627|0.5 172628|0.26389 172629|0.375 172630|0.5 172631|0.45833 172632|0.56944 172633|0.48611 172634|0.30556 172635|0.47222 172636|0.18056 172637|0.33333 172638|0.38889 172639|0.43056 172640|0.45833 172641|0.54167 172642|0.59722 172643|0.20833 172644|0.43056 172645|0.29167 172646|0.44444 172647|0.5 172648|0.5 172649|0.51389 172650|0.25 172651|0.55556 172652|0.38889 172653|0.59722 172654|0.44444 172655|0.5 172656|0.43056 172657|0.33333 172658|0.29167 172659|0.125 172660|0.5 172661|0.5 172662|0.31944 172663|0.34722 172664|0.31944 172665|0.375 172666|0.34722 172667|0.26389 172668|0.23611 172669|0.30556 172670|0.26389 172671|0.18056 172672|0.097222 172673|0.22222 172674|0.41667 172675|0.22222 172676|0.30556 172677|0.38889 172678|0.68056 172679|0.5 172680|0.44444 172681|0.375 172682|0.51389 172683|0.36111 172684|0.5 172685|0.48611 172686|0.54167 172687|0.48611 172688|0.56944 172689|0.5 172690|0.48611 172691|0.48611 172692|0.5 172693|0.52778 172694|0.5 172695|0.5 172696|0.36111 172697|0.31944 172698|0.5 172699|0.68056 172700|0.52778 172701|0.58333 172702|0.51389 172703|0.47222 172704|0.65278 172705|0.5 172706|0.43056 172707|0.41667 172708|0.5 172709|0.61111 172710|0.45833 172711|0.44444 172712|0.5 172713|0.26389 172714|0.5 172715|0.36111 172716|0.31944 172717|0.31944 172718|0.43056 172719|0.51389 172720|0.27778 172721|0.58333 172722|0.44444 172723|0.40278 172724|0.22222 172725|0.43056 172726|0.43056 172727|0.48611 172728|0.47222 172729|0.33333 172730|0.59722 172731|0.5 172732|0.43056 172733|0.44444 172734|0.43056 172735|0.5 172736|0.33333 172737|0.47222 172738|0.33333 172739|0.51389 172740|0.51389 172741|0.44444 172742|0.38889 172743|0.48611 172744|0.66667 172745|0.58333 172746|0.55556 172747|0.48611 172748|0.54167 172749|0.34722 172750|0.48611 172751|0.75 172752|0.47222 172753|0.51389 172754|0.52778 172755|0.29167 172756|0.40278 172757|0.5 172758|0.51389 172759|0.68056 172760|0.34722 172761|0.47222 172762|0.43056 172763|0.375 172764|0.5 172765|0.5 172766|0.41667 172767|0.51389 172768|0.36111 172769|0.5 172770|0.43056 172771|0.25 172772|0.27778 172773|0.52778 172774|0.40278 172775|0.5 172776|0.5 172777|0.44444 172778|0.5 172779|0.5 172780|0.34722 172781|0.083333 172782|0.5 172783|0.44444 172784|0.77778 172785|0.5 172786|0.44444 172787|0.5 172788|0.44444 172789|0.31944 172790|0.47222 172791|0.5 172792|0.47222 172793|0.5 172794|0.5 172795|0.5 172796|0.5 172797|0.5 172798|0.58333 172799|0.29167 172800|0.52778 172801|0.40278 172802|0.52778 172803|0.52778 172804|0.55556 172805|0.51389 172806|0.625 172807|0.51389 172808|0.45833 172809|0.48611 172810|0.25 172811|0.38889 172812|0.5 172813|0.51389 172814|0.38889 172815|0.52778 172816|0.5 172817|0.40278 172818|0.51389 172819|0.44444 172820|0.43056 172821|0.45833 172822|0.58333 172823|0.27778 172824|0.36111 172825|0.45833 172826|0.41667 172827|0.11111 172828|0.34722 172829|0.65278 172830|0.27778 172831|0.33333 172832|0.375 172833|0.59722 172834|0.33333 172835|0.5 172836|0.33333 172837|0.47222 172838|0.16667 172839|0.40278 172840|0.5 172841|0.51389 172842|0.43056 172843|0.19444 172844|0.45833 172845|0.36111 172846|0.63889 172847|0.40278 172848|0.20833 172849|0.26389 172850|0.55556 172851|0.5 172852|0.5 172853|0.47222 172854|0.51389 172855|0.5 172856|0.55556 172857|0.5 172858|0.20833 172859|0.30556 172860|0.22222 172861|0.77778 172862|0.30556 172863|0.38889 172864|0.47222 172865|0.20833 172866|0.22222 172867|0.5 172868|0.5 172869|0.45833 172870|0.27778 172871|0.44444 172872|0.38889 172873|0.43056 172874|0.5 172875|0.5 172876|0.41667 172877|0.18056 172878|0.5 172879|0.5 172880|0.375 172881|0.52778 172882|0.5 172883|0.25 172884|0.23611 172885|0.45833 172886|0.29167 172887|0.56944 172888|0.33333 172889|0.19444 172890|0.18056 172891|0.27778 172892|0.375 172893|0.5 172894|0.11111 172895|0.055556 172896|0.44444 172897|0.26389 172898|0.125 172899|0.125 172900|0.27778 172901|0.43056 172902|0.45833 172903|0.44444 172904|0.5 172905|0.5 172906|0.41667 172907|0.54167 172908|0.5 172909|0.54167 172910|0.73611 172911|0.29167 172912|0.45833 172913|0.31944 172914|0.33333 172915|0.22222 172916|0.26389 172917|0.22222 172918|0.29167 172919|0.31944 172920|0.69444 172921|0.83333 172922|0.5 172923|0.58333 172924|0.25 172925|0.52778 172926|0.625 172927|0.38889 172928|0.77778 172929|0.375 172930|0.63889 172931|0.33333 172932|0.44444 172933|0.23611 172934|0.19444 172935|0.5 172936|0.22222 172937|0.5 172938|0.5 172939|0.5 172940|0.40278 172941|0.43056 172942|0.5 172943|0.59722 172944|0.48611 172945|0.33333 172946|0.29167 172947|0.20833 172948|0.41667 172949|0.38889 172950|0.34722 172951|0.45833 172952|0.5 172953|0.41667 172954|0.5 172955|0.375 172956|0.36111 172957|0.45833 172958|0.29167 172959|0.38889 172960|0.40278 172961|0.44444 172962|0.36111 172963|0.40278 172964|0.375 172965|0.51389 172966|0.25 172967|0.16667 172968|0.29167 172969|0.48611 172970|0.44444 172971|0.43056 172972|0.41667 172973|0.34722 172974|0.45833 172975|0.41667 172976|0.29167 172977|0.22222 172978|0.5 172979|0.38889 172980|0.27778 172981|0.18056 172982|0.25 172983|0.27778 172984|0.43056 172985|0.375 172986|0.33333 172987|0.5 172988|0.18056 172989|0.40278 172990|0.51389 172991|0.63889 172992|0.38889 172993|0.66667 172994|0.23611 172995|0.34722 172996|0.61111 172997|0.47222 172998|0.19444 172999|0.20833 173000|0.20833 173001|0.22222 173002|0.33333 173003|0.48611 173004|0.40278 173005|0.23611 173006|0.26389 173007|0.16667 173008|0.22222 173009|0.5 173010|0.44444 173011|0.55556 173012|0.375 173013|0.5 173014|0.33333 173015|0.63889 173016|0.26389 173017|0.36111 173018|0.375 173019|0.625 173020|0.34722 173021|0.52778 173022|0.375 173023|0.30556 173024|0.27778 173025|0.38889 173026|0.44444 173027|0.19444 173028|0.40278 173029|0.52778 173030|0.26389 173031|0.29167 173032|0.25 173033|0.48611 173034|0.43056 173035|0.59722 173036|0.48611 173037|0.29167 173038|0.47222 173039|0.68056 173040|0.30556 173041|0.56944 173042|0.52778 173043|0.5 173044|0.25 173045|0.63889 173046|0.44444 173047|0.43056 173048|0.5 173049|0.48611 173050|0.22222 173051|0.19444 173052|0.43056 173053|0.51389 173054|0.48611 173055|0.45833 173056|0.30556 173057|0.86111 173058|0.63889 173059|0.73611 173060|0.36111 173061|0.30556 173062|0.30556 173063|0.22222 173064|0.22222 173065|0.20833 173066|0.18056 173067|0.59722 173068|0.41667 173069|0.15278 173070|0.45833 173071|0.61111 173072|0.47222 173073|0.125 173074|0.30556 173075|0.31944 173076|0.66667 173077|0.22222 173078|0.45833 173079|0.5 173080|0.40278 173081|0.43056 173082|0.33333 173083|0.125 173084|0.22222 173085|0.25 173086|0.23611 173087|0.29167 173088|0.19444 173089|0.069444 173090|0.25 173091|0.51389 173092|0.33333 173093|0.43056 173094|0.44444 173095|0.41667 173096|0.40278 173097|0.16667 173098|0.33333 173099|0.43056 173100|0.23611 173101|0.51389 173102|0.11111 173103|0.375 173104|0.29167 173105|0.40278 173106|0.54167 173107|0.43056 173108|0.51389 173109|0.43056 173110|0.59722 173111|0.51389 173112|0.29167 173113|0.27778 173114|0.43056 173115|0.70833 173116|0.25 173117|0.43056 173118|0.5 173119|0.375 173120|0.80556 173121|0.43056 173122|0.48611 173123|0.22222 173124|0.41667 173125|0.47222 173126|0.66667 173127|0.20833 173128|0.11111 173129|0.44444 173130|0.44444 173131|0.25 173132|0.33333 173133|0.63889 173134|0.61111 173135|0.38889 173136|0.38889 173137|0.44444 173138|0.31944 173139|0.25 173140|0.33333 173141|0.43056 173142|0.375 173143|0.36111 173144|0.31944 173145|0.45833 173146|0.43056 173147|0.33333 173148|0.38889 173149|0.27778 173150|0.41667 173151|0.56944 173152|0.5 173153|0.625 173154|0.44444 173155|0.38889 173156|0 173157|0.5 173158|0.55556 173159|0.38889 173160|0.29167 173161|0.36111 173162|0.5 173163|0.33333 173164|0.083333 173165|0.5 173166|0.58333 173167|0.51389 173168|0.70833 173169|0.65278 173170|0.48611 173171|0.5 173172|0.33333 173173|0.36111 173174|0.44444 173175|0.55556 173176|0.36111 173177|0.19444 173178|0.26389 173179|0.20833 173180|0.5 173181|0.34722 173182|0.34722 173183|0.54167 173184|0.25 173185|0.5 173186|0.5 173187|0.27778 173188|0.34722 173189|0.47222 173190|0.38889 173191|0.38889 173192|0.54167 173193|0.43056 173194|0.30556 173195|0.5 173196|0.51389 173197|0.72222 173198|0.20833 173199|0.34722 173200|0.5 173201|0.33333 173202|0.375 173203|0.13889 173204|0.875 173205|0.25 173206|0.45833 173207|0.44444 173208|0.31944 173209|0.22222 173210|0.18056 173211|0.5 173212|0.29167 173213|0.16667 173214|0.375 173215|0.51389 173216|0.33333 173217|0.27778 173218|0.75 173219|0.38889 173220|0.76389 173221|0.25 173222|0.36111 173223|0.097222 173224|0.56944 173225|0.26389 173226|0.26389 173227|0.56944 173228|0.375 173229|0.34722 173230|0.33333 173231|0.55556 173232|0.38889 173233|0.43056 173234|0.61111 173235|0.41667 173236|0.26389 173237|0.45833 173238|0.31944 173239|0.52778 173240|0.22222 173241|0.25 173242|0.36111 173243|0.44444 173244|0.33333 173245|0.16667 173246|0.40278 173247|0.30556 173248|0.47222 173249|0.34722 173250|0.55556 173251|0.26389 173252|0.44444 173253|0.34722 173254|0.40278 173255|0.58333 173256|0.31944 173257|0.11111 173258|0.51389 173259|0.25 173260|0.15278 173261|0.55556 173262|0.069444 173263|0.45833 173264|0.23611 173265|0.26389 173266|0.26389 173267|0.5 173268|0.23611 173269|0.52778 173270|0.22222 173271|0.5 173272|0.44444 173273|0.5 173274|0.5 173275|0.65278 173276|0.22222 173277|0.31944 173278|0.33333 173279|0.30556 173280|0.43056 173281|0.70833 173282|0.5 173283|0.26389 173284|0.375 173285|0.5 173286|0.36111 173287|0.41667 173288|0.61111 173289|0.5 173290|0.41667 173291|0.59722 173292|0.61111 173293|0.44444 173294|0.54167 173295|0.375 173296|0.44444 173297|0.5 173298|0.22222 173299|0.097222 173300|0.5 173301|0.5 173302|0.36111 173303|0.48611 173304|0.52778 173305|0.52778 173306|0.52778 173307|0.65278 173308|0.5 173309|0.47222 173310|0.58333 173311|0.5 173312|0.5 173313|0.52778 173314|0.44444 173315|0.5 173316|0.5 173317|0.45833 173318|0.5 173319|0.5 173320|0.52778 173321|0.51389 173322|0.52778 173323|0.5 173324|0.5 173325|0.43056 173326|0.5 173327|0.5 173328|0.5 173329|0.5 173330|0.77778 173331|0.5 173332|0.48611 173333|0.23611 173334|0.5 173335|0.5 173336|0.25 173337|0.43056 173338|0.51389 173339|0.5 173340|0.56944 173341|0.54167 173342|0.5 173343|0.54167 173344|0.5 173345|0.5 173346|0.41667 173347|0.30556 173348|0.52778 173349|0.5 173350|0.625 173351|0.5 173352|0.58333 173353|0.48611 173354|0.5 173355|0.52778 173356|0.58333 173357|0.5 173358|0.40278 173359|0.75 173360|0.56944 173361|0.33333 173362|0.51389 173363|0.56944 173364|0.5 173365|0.20833 173366|0.5 173367|0.5 173368|0.5 173369|0.5 173370|0.5 173371|0.54167 173372|0.27778 173373|0.5 173374|0.69444 173375|0.5 173376|0.47222 173377|0.5 173378|0.5 173379|0.19444 173380|0.38889 173381|0.5 173382|0.5 173383|0.45833 173384|0.5 173385|0.5 173386|0.5 173387|0.5 173388|0.43056 173389|0.5 173390|0.625 173391|0.5 173392|0.5 173393|0.54167 173394|0.5 173395|0.5 173396|0.5 173397|0.54167 173398|0.5 173399|0.5 173400|0.5 173401|0.5 173402|0.38889 173403|0.5 173404|0.5 173405|0.48611 173406|0.48611 173407|0.55556 173408|0.5 173409|0.51389 173410|0.58333 173411|0.5 173412|0.44444 173413|0.5 173414|0.5 173415|0.48611 173416|0.51389 173417|0.48611 173418|0.22222 173419|0.44444 173420|0.625 173421|0.5 173422|0.52778 173423|0.68056 173424|0.47222 173425|0.25 173426|0.61111 173427|0.47222 173428|0.51389 173429|0.5 173430|0.5 173431|0.5 173432|0.5 173433|0.48611 173434|0.52778 173435|0.51389 173436|0.5 173437|0.5 173438|0.61111 173439|0.5 173440|0.55556 173441|0.51389 173442|0.52778 173443|0.5 173444|0.44444 173445|0.34722 173446|0.375 173447|0.51389 173448|0.5 173449|0.56944 173450|0.5 173451|0.44444 173452|0.38889 173453|0.33333 173454|0.41667 173455|0.23611 173456|0.54167 173457|0.38889 173458|0.30556 173459|0.5 173460|0.47222 173461|0.44444 173462|0.41667 173463|0.5 173464|0.56944 173465|0.5 173466|0.5 173467|0.27778 173468|0.11111 173469|0.72222 173470|0.54167 173471|0.36111 173472|0.5 173473|0.48611 173474|0.59722 173475|0.5 173476|0.19444 173477|0.22222 173478|0.5 173479|0.55556 173480|0.73611 173481|0.22222 173482|0.30556 173483|0.56944 173484|0.5 173485|0.41667 173486|0.5 173487|0.5 173488|0.5 173489|0.5 173490|0.22222 173491|0.5 173492|0.43056 173493|0.45833 173494|0.41667 173495|0.36111 173496|0.30556 173497|0.25 173498|0.59722 173499|0.083333 173500|0.72222 173501|0.40278 173502|0.20833 173503|0.43056 173504|0.59722 173505|0.5 173506|0.45833 173507|0.5 173508|0.51389 173509|0.34722 173510|0.27778 173511|0.18056 173512|0.20833 173513|0.19444 173514|0.55556 173515|0.48611 173516|0.36111 173517|0.5 173518|0.27778 173519|0.48611 173520|0.34722 173521|0.56944 173522|0.44444 173523|0.5 173524|0.5 173525|0.36111 173526|0.56944 173527|0.80556 173528|0.5 173529|0.70833 173530|0.75 173531|0.77778 173532|0.80556 173533|0.94444 173534|0.61111 173535|0.30556 173536|0.51389 173537|0.52778 173538|0.58333 173539|0.61111 173540|0.55556 173541|0.36111 173542|0.5 173543|0.51389 173544|0.34722 173545|0.13889 173546|0.5 173547|0.44444 173548|0.5 173549|0.36111 173550|0.40278 173551|0.58333 173552|0.41667 173553|0.58333 173554|0.56944 173555|0.26389 173556|0.5 173557|0.5 173558|0.5 173559|0.5 173560|0.5 173561|0.5 173562|0.5 173563|0.63889 173564|0.5 173565|0.5 173566|0.625 173567|0.5 173568|0.45833 173569|0.45833 173570|0.34722 173571|0.43056 173572|0.29167 173573|0.18056 173574|0.5 173575|0.625 173576|0.31944 173577|0.41667 173578|0.65278 173579|0.55556 173580|0.58333 173581|0.61111 173582|0.68056 173583|0.27778 173584|0.30556 173585|0.58333 173586|0.27778 173587|0.26389 173588|0.5 173589|0.34722 173590|0.55556 173591|0.5 173592|0.125 173593|0.41667 173594|0.26389 173595|0.19444 173596|0.63889 173597|0.65278 173598|0.59722 173599|0.31944 173600|0.5 173601|0.31944 173602|0.47222 173603|0.5 173604|0.5 173605|0.5 173606|0.5 173607|0.5 173608|0.5 173609|0.5 173610|0.52778 173611|0.29167 173612|0.22222 173613|0.375 173614|0.5 173615|0.5 173616|0.70833 173617|0.43056 173618|0.19444 173619|0.52778 173620|0.5 173621|0.25 173622|0.25 173623|0.23611 173624|0.38889 173625|0.11111 173626|0.55556 173627|0.5 173628|0.58333 173629|0.22222 173630|0.31944 173631|0.5 173632|0.65278 173633|0.5 173634|0.55556 173635|0.72222 173636|0.58333 173637|0.61111 173638|0.52778 173639|0.41667 173640|0.5 173641|0.45833 173642|0.45833 173643|0.5 173644|0.31944 173645|0.45833 173646|0.20833 173647|0.5 173648|0.51389 173649|0.5 173650|0.69444 173651|0.22222 173652|0.41667 173653|0.5 173654|0.52778 173655|0.31944 173656|0.44444 173657|0.375 173658|0.23611 173659|0.59722 173660|0.34722 173661|0.5 173662|0.44444 173663|0.48611 173664|0.40278 173665|0.45833 173666|0.44444 173667|0.51389 173668|0.5 173669|0.5 173670|0.33333 173671|0.45833 173672|0.66667 173673|0.34722 173674|0.5 173675|0.5 173676|0.5 173677|0.5 173678|0.5 173679|0.5 173680|0.66667 173681|0.43056 173682|0.31944 173683|0.19444 173684|0.33333 173685|0.54167 173686|0.33333 173687|0.375 173688|0.52778 173689|0.23611 173690|0.48611 173691|0.48611 173692|0.61111 173693|0.5 173694|0.52778 173695|0.47222 173696|0.5 173697|0.5 173698|0.26389 173699|0.5 173700|0.51389 173701|0.5 173702|0.43056 173703|0.34722 173704|0.48611 173705|0.72222 173706|0.55556 173707|0.40278 173708|0.30556 173709|0.31944 173710|0.47222 173711|0.5 173712|0.51389 173713|0.59722 173714|0.31944 173715|0.44444 173716|0.45833 173717|0.43056 173718|0.43056 173719|0.36111 173720|0.55556 173721|0.65278 173722|0.55556 173723|0.18056 173724|0.54167 173725|0.45833 173726|0.30556 173727|0.44444 173728|0.45833 173729|0.55556 173730|0.52778 173731|0.51389 173732|0.31944 173733|0.41667 173734|0.5 173735|0.5 173736|0.33333 173737|0.625 173738|0.31944 173739|0.44444 173740|0.5 173741|0.22222 173742|0.5 173743|0.5 173744|0.44444 173745|0.45833 173746|0.29167 173747|0.48611 173748|0.5 173749|0.5 173750|0.41667 173751|0.48611 173752|0.44444 173753|0.5 173754|0.375 173755|0.5 173756|0.375 173757|0.5 173758|0.45833 173759|0.51389 173760|0.55556 173761|0.625 173762|0.27778 173763|0.5 173764|0.63889 173765|0.43056 173766|0.40278 173767|0.31944 173768|0.26389 173769|0.5 173770|0.31944 173771|0.34722 173772|0.33333 173773|0.23611 173774|0.59722 173775|0.55556 173776|0.44444 173777|0.69444 173778|0.29167 173779|0.44444 173780|0.44444 173781|0.52778 173782|0.59722 173783|0.5 173784|0.44444 173785|0.56944 173786|0.5 173787|0.38889 173788|0.375 173789|0.5 173790|0.30556 173791|0.45833 173792|0.52778 173793|0.55556 173794|0.54167 173795|0.55556 173796|0.44444 173797|0.13889 173798|0.22222 173799|0.083333 173800|0.55556 173801|0.5 173802|0.38889 173803|0.5 173804|0.5 173805|0.5 173806|0.375 173807|0.47222 173808|0.77778 173809|0.54167 173810|0.51389 173811|0.625 173812|0.61111 173813|0.48611 173814|0.47222 173815|0.68056 173816|0.52778 173817|0.5 173818|0.56944 173819|0.23611 173820|0.20833 173821|0.5 173822|0.56944 173823|0.5 173824|0.40278 173825|0.44444 173826|0.56944 173827|0.61111 173828|0.61111 173829|0.75 173830|0.80556 173831|0.31944 173832|0.70833 173833|0.5 173834|0.375 173835|0.38889 173836|0.45833 173837|0.18056 173838|0.55556 173839|0.44444 173840|0.61111 173841|0.43056 173842|0.52778 173843|0.5 173844|0.44444 173845|0.56944 173846|0.59722 173847|0.34722 173848|0.38889 173849|0.33333 173850|0.45833 173851|0.40278 173852|0.5 173853|0.44444 173854|0.47222 173855|0.54167 173856|0.45833 173857|0.56944 173858|0.15278 173859|0.65278 173860|0.5 173861|0.47222 173862|0.47222 173863|0.41667 173864|0.5 173865|0.51389 173866|0.27778 173867|0.29167 173868|0.38889 173869|0.29167 173870|0.5 173871|0.5 173872|0.5 173873|0.51389 173874|0.055556 173875|0.45833 173876|0.30556 173877|0.44444 173878|0.52778 173879|0.36111 173880|0.44444 173881|0.48611 173882|0.29167 173883|0.47222 173884|0.52778 173885|0.5 173886|0.41667 173887|0.51389 173888|0.5 173889|0.25 173890|0.47222 173891|0.11111 173892|0.5 173893|0.5 173894|0.5 173895|0.5 173896|0.20833 173897|0.54167 173898|0.33333 173899|0.19444 173900|0.40278 173901|0.5 173902|0.33333 173903|0.61111 173904|0.11111 173905|0.31944 173906|0.22222 173907|0.43056 173908|0.25 173909|0.61111 173910|0.055556 173911|0.44444 173912|0.68056 173913|0.31944 173914|0.23611 173915|0.38889 173916|0.16667 173917|0.22222 173918|0.59722 173919|0.61111 173920|0.20833 173921|0.055556 173922|0.43056 173923|0.19444 173924|0.25 173925|0.26389 173926|0.26389 173927|0.43056 173928|0.29167 173929|0.44444 173930|0.31944 173931|0.19444 173932|0.5 173933|0.19444 173934|0.5 173935|0.31944 173936|0.15278 173937|0.55556 173938|0.5 173939|0.38889 173940|0.33333 173941|0.18056 173942|0.44444 173943|0.33333 173944|0.34722 173945|0.5 173946|0.5 173947|0.33333 173948|0.30556 173949|0.36111 173950|0.5 173951|0.5 173952|0.44444 173953|0.097222 173954|0.5 173955|0.44444 173956|0.33333 173957|0.48611 173958|0.23611 173959|0.61111 173960|0.5 173961|0.5 173962|0.45833 173963|0.66667 173964|0.30556 173965|0.5 173966|0.55556 173967|0.27778 173968|0.5 173969|0.54167 173970|0.56944 173971|0.23611 173972|0.48611 173973|0.5 173974|0.5 173975|0.5 173976|0.5 173977|0.27778 173978|0.65278 173979|0.5 173980|0.5 173981|0.5 173982|0.51389 173983|0.54167 173984|0.33333 173985|0.55556 173986|0.5 173987|0.25 173988|0.45833 173989|0.5 173990|0.48611 173991|0.33333 173992|0.30556 173993|0.41667 173994|0.51389 173995|0.59722 173996|0.54167 173997|0.44444 173998|0.5 173999|0.51389 174000|0.51389 174001|0.23611 174002|0.5 174003|0.44444 174004|0.38889 174005|0.59722 174006|0.55556 174007|0.66667 174008|0.52778 174009|0.61111 174010|0.44444 174011|0.61111 174012|0.41667 174013|0.63889 174014|0.11111 174015|0.81944 174016|0.95833 174017|0.41667 174018|0.5 174019|0.47222 174020|0.44444 174021|0.34722 174022|0.44444 174023|0.5 174024|0.38889 174025|0.44444 174026|0.5 174027|0.5 174028|0.40278 174029|0.5 174030|0.40278 174031|0.48611 174032|0.22222 174033|0.5 174034|0.5 174035|0.26389 174036|0.5 174037|0.44444 174038|0.58333 174039|0.41667 174040|0.68056 174041|0.5 174042|0.55556 174043|0.45833 174044|0.5 174045|0.55556 174046|0.5 174047|0.34722 174048|0.33333 174049|0.47222 174050|0.26389 174051|0.41667 174052|0.54167 174053|0.36111 174054|0.5 174055|0.5 174056|0.47222 174057|0.5 174058|0.55556 174059|0.44444 174060|0.5 174061|0.5 174062|0.31944 174063|0.38889 174064|0.22222 174065|0.48611 174066|0.40278 174067|0.43056 174068|0.51389 174069|0.43056 174070|0.625 174071|0.25 174072|0.5 174073|0.56944 174074|0.38889 174075|0.56944 174076|0.5 174077|0.51389 174078|0.52778 174079|0.38889 174080|0.52778 174081|0.52778 174082|0.44444 174083|0.41667 174084|0.5 174085|0.61111 174086|0.66667 174087|0.29167 174088|0.5 174089|0.5 174090|0.5 174091|0.52778 174092|0.58333 174093|0.5 174094|0.33333 174095|0.45833 174096|0.59722 174097|0.5 174098|0.48611 174099|0.61111 174100|0.5 174101|0.625 174102|0.61111 174103|0.69444 174104|0.38889 174105|0.52778 174106|0.75 174107|0.44444 174108|0.27778 174109|0.44444 174110|0.48611 174111|0.44444 174112|0.5 174113|0.45833 174114|0.47222 174115|0.72222 174116|0.41667 174117|0.45833 174118|0.30556 174119|0.27778 174120|0.52778 174121|0.59722 174122|0.5 174123|0.43056 174124|0.61111 174125|0.27778 174126|0.51389 174127|0.5 174128|0.48611 174129|0.54167 174130|0.34722 174131|0.5 174132|0.51389 174133|0.52778 174134|0.54167 174135|0.5 174136|0.83333 174137|0.5 174138|0.61111 174139|0.45833 174140|0.47222 174141|0.51389 174142|0.23611 174143|0.33333 174144|0.56944 174145|0.5 174146|0.29167 174147|0.5 174148|0.625 174149|0.33333 174150|0.31944 174151|0.36111 174152|0.54167 174153|0.59722 174154|0.58333 174155|0.61111 174156|0.66667 174157|0.33333 174158|0.29167 174159|0.5 174160|0.63889 174161|0.5 174162|0.44444 174163|0.73611 174164|0.43056 174165|0.5 174166|0.44444 174167|0.76389 174168|0.61111 174169|0.5 174170|0.5 174171|0.22222 174172|0.31944 174173|0.26389 174174|0.5 174175|0.44444 174176|0.41667 174177|0.27778 174178|0.29167 174179|0.48611 174180|0.69444 174181|0.30556 174182|0.48611 174183|0.52778 174184|0.5 174185|0.61111 174186|0.5 174187|0.5 174188|0.41667 174189|0.47222 174190|0.5 174191|0.30556 174192|0.20833 174193|0.16667 174194|0.47222 174195|0.5 174196|0.51389 174197|0.5 174198|0.5 174199|0.5 174200|0.33333 174201|0.40278 174202|0.52778 174203|0.38889 174204|0.26389 174205|0.47222 174206|0.11111 174207|0.5 174208|0.34722 174209|0.51389 174210|0.52778 174211|0.70833 174212|0.41667 174213|0.5 174214|0.58333 174215|0.72222 174216|0.5 174217|0.55556 174218|0.26389 174219|0.36111 174220|0.55556 174221|0.36111 174222|0.5 174223|0.5 174224|0.44444 174225|0.18056 174226|0.15278 174227|0.38889 174228|0.20833 174229|0.33333 174230|0.19444 174231|0.38889 174232|0.47222 174233|0.56944 174234|0.375 174235|0.5 174236|0.51389 174237|0.27778 174238|0.5 174239|0.56944 174240|0.375 174241|0.5 174242|0.51389 174243|0.47222 174244|0.19444 174245|0.55556 174246|0.5 174247|0.5 174248|0.45833 174249|0.375 174250|0.47222 174251|0.5 174252|0.54167 174253|0.44444 174254|0.22222 174255|0.5 174256|0.55556 174257|0.5 174258|0.5 174259|0.54167 174260|0.5 174261|0.40278 174262|0.5 174263|0.59722 174264|0.5 174265|0.59722 174266|0.41667 174267|0.54167 174268|0.59722 174269|0.20833 174270|0.40278 174271|0.31944 174272|0.52778 174273|0.375 174274|0.48611 174275|0.20833 174276|0.29167 174277|0.54167 174278|0.58333 174279|0.54167 174280|0.52778 174281|0.45833 174282|0.65278 174283|0.75 174284|0.5 174285|0.5 174286|0.52778 174287|0.29167 174288|0.65278 174289|0.44444 174290|0.33333 174291|0.68056 174292|0.38889 174293|0.56944 174294|0.43056 174295|0.31944 174296|0.11111 174297|0.43056 174298|0.61111 174299|0.33333 174300|0.33333 174301|0.61111 174302|0.81944 174303|0.51389 174304|0.27778 174305|0.625 174306|0.31944 174307|0.083333 174308|0 174309|0.41667 174310|0.5 174311|0.55556 174312|0.5 174313|0.61111 174314|0.5 174315|0.25 174316|0.55556 174317|0.5 174318|0.59722 174319|0.56944 174320|0.27778 174321|0.51389 174322|0.625 174323|0.70833 174324|0.73611 174325|0.5 174326|0.43056 174327|0.5 174328|0.33333 174329|0.625 174330|0.5 174331|0.5 174332|0.26389 174333|0.38889 174334|0.36111 174335|0.5 174336|0.33333 174337|0.29167 174338|0.43056 174339|0.16667 174340|0.44444 174341|0.5 174342|0.30556 174343|0.41667 174344|0.52778 174345|0.041667 174346|0.5 174347|0.16667 174348|0.11111 174349|0.36111 174350|0.36111 174351|0.47222 174352|0.33333 174353|0.22222 174354|0.61111 174355|0.13889 174356|0.5 174357|0.125 174358|0.44444 174359|0.29167 174360|0.41667 174361|0.48611 174362|0.66667 174363|0.55556 174364|0.5 174365|0.31944 174366|0.23611 174367|0.23611 174368|0.48611 174369|0.40278 174370|0.56944 174371|0.69444 174372|0.27778 174373|0.27778 174374|0.25 174375|0.30556 174376|0.61111 174377|0.5 174378|0.5 174379|0.38889 174380|0.33333 174381|0.55556 174382|0.48611 174383|0.5 174384|0.38889 174385|0.41667 174386|0.5 174387|0.25 174388|0.5 174389|0.52778 174390|0.61111 174391|0.625 174392|0.47222 174393|0.31944 174394|0.59722 174395|0.58333 174396|0.61111 174397|0.47222 174398|0.44444 174399|0.58333 174400|0.52778 174401|0.5 174402|0.5 174403|0.5 174404|0.43056 174405|0.31944 174406|0.51389 174407|0.29167 174408|0.33333 174409|0.47222 174410|0.38889 174411|0.44444 174412|0.47222 174413|0.5 174414|0.33333 174415|0.70833 174416|0.68056 174417|0.48611 174418|0.51389 174419|0.29167 174420|0.5 174421|0.41667 174422|0.40278 174423|0.51389 174424|0.48611 174425|0.5 174426|0.51389 174427|0.52778 174428|0.5 174429|0.58333 174430|0.48611 174431|0.51389 174432|0.5 174433|0.30556 174434|0.44444 174435|0.48611 174436|0.55556 174437|0.5 174438|0.5 174439|0.5 174440|0.083333 174441|0.54167 174442|0.83333 174443|0.52778 174444|0.5 174445|0.625 174446|0.5 174447|0.43056 174448|0.36111 174449|0.375 174450|0.5 174451|0.5 174452|0.375 174453|0.22222 174454|0.44444 174455|0.25 174456|0.5 174457|0.38889 174458|0.44444 174459|0.5 174460|0.41667 174461|0.48611 174462|0.55556 174463|0.44444 174464|0.36111 174465|0.5 174466|0.5 174467|0.5 174468|0.51389 174469|0.56944 174470|0.5 174471|0.55556 174472|0.54167 174473|0.5 174474|0.48611 174475|0.51389 174476|0.55556 174477|0.44444 174478|0.5 174479|0.5 174480|0.26389 174481|0.27778 174482|0.31944 174483|0.31944 174484|0.16667 174485|0.5 174486|0.5 174487|0.15278 174488|0.31944 174489|0.40278 174490|0.41667 174491|0.52778 174492|0.5 174493|0.44444 174494|0.52778 174495|0.43056 174496|0.19444 174497|0.65278 174498|0.48611 174499|0.5 174500|0.5 174501|0.45833 174502|0.5 174503|0.5 174504|0.41667 174505|0.38889 174506|0.44444 174507|0.55556 174508|0.29167 174509|0.5 174510|0.51389 174511|0.54167 174512|0.5 174513|0.38889 174514|0.125 174515|0.33333 174516|0.5 174517|0.25 174518|0.52778 174519|0.44444 174520|0.52778 174521|0.40278 174522|0.47222 174523|0.41667 174524|0.52778 174525|0.27778 174526|0.23611 174527|0.31944 174528|0.27778 174529|0.18056 174530|0.22222 174531|0.59722 174532|0.5 174533|0.31944 174534|0.44444 174535|0.29167 174536|0.5 174537|0.48611 174538|0.16667 174539|0.16667 174540|0.61111 174541|0.43056 174542|0.72222 174543|0.5 174544|0.30556 174545|0.44444 174546|0.58333 174547|0.52778 174548|0.38889 174549|0.41667 174550|0.38889 174551|0.56944 174552|0.38889 174553|0.5 174554|0.52778 174555|0.16667 174556|0.43056 174557|0.38889 174558|0.47222 174559|0.38889 174560|0.70833 174561|0.5 174562|0.52778 174563|0.5 174564|0.63889 174565|0.23611 174566|0.5 174567|0.36111 174568|0.30556 174569|0.26389 174570|0.65278 174571|0.5 174572|0.63889 174573|0.45833 174574|0.5 174575|0.11111 174576|0.48611 174577|0.5 174578|0.27778 174579|0.5 174580|0.5 174581|0.5 174582|0.47222 174583|0.44444 174584|0.36111 174585|0.51389 174586|0.45833 174587|0.30556 174588|0.30556 174589|0.26389 174590|0.36111 174591|0.5 174592|0.20833 174593|0.11111 174594|0.5 174595|0.51389 174596|0.5 174597|0.54167 174598|0.47222 174599|0.5 174600|0.55556 174601|0.45833 174602|0.26389 174603|0.5 174604|0.33333 174605|0.44444 174606|0.36111 174607|0.48611 174608|0.44444 174609|0.33333 174610|0.40278 174611|0.30556 174612|0.44444 174613|0.34722 174614|0.52778 174615|0.72222 174616|0.63889 174617|0.58333 174618|0.45833 174619|0.31944 174620|0.27778 174621|0.5 174622|0.44444 174623|0.44444 174624|0.58333 174625|0.56944 174626|0.59722 174627|0.5 174628|0.44444 174629|0.44444 174630|0.41667 174631|0.25 174632|0.5 174633|0.375 174634|0.34722 174635|0.38889 174636|0.47222 174637|0.22222 174638|0.375 174639|0.47222 174640|0.58333 174641|0.72222 174642|0.41667 174643|0.36111 174644|0.25 174645|0.43056 174646|0.52778 174647|0.65278 174648|0.36111 174649|0.63889 174650|0.75 174651|0.30556 174652|0.23611 174653|0.25 174654|0.34722 174655|0.63889 174656|0.59722 174657|0.70833 174658|0.5 174659|0.5 174660|0.29167 174661|0.48611 174662|0.5 174663|0.5 174664|0.5 174665|0.5 174666|0.36111 174667|0.38889 174668|0.16667 174669|0.31944 174670|0.20833 174671|0.26389 174672|0.55556 174673|0.30556 174674|0.5 174675|0.22222 174676|0.38889 174677|0.27778 174678|0.5 174679|0.51389 174680|0.47222 174681|0.54167 174682|0.33333 174683|0.30556 174684|0.36111 174685|0.26389 174686|0.43056 174687|0.36111 174688|0.44444 174689|0.44444 174690|0.40278 174691|0.48611 174692|0.36111 174693|0.5 174694|0.26389 174695|0.47222 174696|0.29167 174697|0.33333 174698|0.083333 174699|0.40278 174700|0.5 174701|0.55556 174702|0.22222 174703|0.59722 174704|0.45833 174705|0.625 174706|0.5 174707|0.44444 174708|0.375 174709|0.5 174710|0.40278 174711|0.16667 174712|0.20833 174713|0.36111 174714|0.20833 174715|0.5 174716|0.52778 174717|0.5 174718|0.73611 174719|0.375 174720|0.54167 174721|0.5 174722|0.5 174723|0.5 174724|0.5 174725|0.5 174726|0.36111 174727|0.5 174728|0.5 174729|0.58333 174730|0.45833 174731|0.45833 174732|0.5 174733|0.5 174734|0.38889 174735|0.5 174736|0.5 174737|0.52778 174738|0.70833 174739|0.56944 174740|0.22222 174741|0.30556 174742|0.5 174743|0.31944 174744|0.44444 174745|0.48611 174746|0.51389 174747|0.27778 174748|0.5 174749|0.51389 174750|0.5 174751|0.38889 174752|0.43056 174753|0.54167 174754|0.45833 174755|0.43056 174756|0.5 174757|0.65278 174758|0.55556 174759|0.5 174760|0.5 174761|0.5 174762|0.44444 174763|0.5 174764|0.27778 174765|0.43056 174766|0.38889 174767|0.45833 174768|0.23611 174769|0.34722 174770|0.33333 174771|0.5 174772|0.38889 174773|0.375 174774|0.52778 174775|0.45833 174776|0.5 174777|0.56944 174778|0.48611 174779|0.27778 174780|0.20833 174781|0.30556 174782|0.30556 174783|0.31944 174784|0.375 174785|0.11111 174786|0.5 174787|0.055556 174788|0.5 174789|0.59722 174790|0.55556 174791|0.61111 174792|0.36111 174793|0.55556 174794|0.5 174795|0.48611 174796|0.5 174797|0.76389 174798|0.48611 174799|0.51389 174800|0.5 174801|0.34722 174802|0.29167 174803|0.31944 174804|0.44444 174805|0.29167 174806|0.55556 174807|0.44444 174808|0.55556 174809|0.45833 174810|0.58333 174811|0.43056 174812|0.5 174813|0.23611 174814|0.58333 174815|0.47222 174816|0.18056 174817|0.33333 174818|0.44444 174819|0.36111 174820|0.63889 174821|0.73611 174822|0.22222 174823|0.33333 174824|0.16667 174825|0.083333 174826|0.33333 174827|0.27778 174828|0.25 174829|0.23611 174830|0.5 174831|0.30556 174832|0.38889 174833|0.34722 174834|0.23611 174835|0.41667 174836|0.27778 174837|0.26389 174838|0.22222 174839|0.44444 174840|0.38889 174841|0.44444 174842|0.30556 174843|0.36111 174844|0.44444 174845|0.5 174846|0.15278 174847|0.5 174848|0.5 174849|0.58333 174850|0.5 174851|0.58333 174852|0.51389 174853|0.5 174854|0.5 174855|0.43056 174856|0.51389 174857|0.5 174858|0.56944 174859|0.66667 174860|0.5 174861|0.625 174862|0.48611 174863|0.48611 174864|0.5 174865|0.5 174866|0.5 174867|0.48611 174868|0.5 174869|0.34722 174870|0.68056 174871|0.34722 174872|0.54167 174873|0.5 174874|0.5 174875|0.68056 174876|0.375 174877|0.63889 174878|0.40278 174879|0.56944 174880|0.52778 174881|0.34722 174882|0.40278 174883|0.26389 174884|0.34722 174885|0.31944 174886|0.44444 174887|0.15278 174888|0.097222 174889|0.5 174890|0.40278 174891|0.47222 174892|0.5 174893|0.55556 174894|0.5 174895|0.59722 174896|0.61111 174897|0.27778 174898|0.5 174899|0.25 174900|0.5 174901|0.40278 174902|0.51389 174903|0.5 174904|0.47222 174905|0.66667 174906|0.5 174907|0.54167 174908|0.41667 174909|0.5 174910|0.5 174911|0.18056 174912|0.5 174913|0.5 174914|0.5 174915|0.5 174916|0.027778 174917|0.51389 174918|0.48611 174919|0.51389 174920|0.5 174921|0.5 174922|0.45833 174923|0.29167 174924|0.41667 174925|0.5 174926|0.58333 174927|0.55556 174928|0.16667 174929|0.70833 174930|0.38889 174931|0.56944 174932|0.56944 174933|0.125 174934|0.5 174935|0.58333 174936|0.48611 174937|0.44444 174938|0.38889 174939|0.5 174940|0.52778 174941|0.5 174942|0.58333 174943|0.38889 174944|0.5 174945|0.18056 174946|0.5 174947|0.47222 174948|0.38889 174949|0.76389 174950|0.097222 174951|0.33333 174952|0.31944 174953|0.18056 174954|0.5 174955|0.625 174956|0.5 174957|0.65278 174958|0.5 174959|0.5 174960|0.34722 174961|0.43056 174962|0.58333 174963|0.5 174964|0.48611 174965|0.65278 174966|0.5 174967|0.45833 174968|0.45833 174969|0.59722 174970|0.55556 174971|0.33333 174972|0.54167 174973|0.44444 174974|0.38889 174975|0.23611 174976|0.40278 174977|0.55556 174978|0.5 174979|0.5 174980|0.27778 174981|0.5 174982|0.36111 174983|0.43056 174984|0.5 174985|0.72222 174986|0.65278 174987|0.47222 174988|0.61111 174989|0.5 174990|0.5 174991|0.5 174992|0.59722 174993|0.5 174994|0.5 174995|0.36111 174996|0.22222 174997|0.51389 174998|0.41667 174999|0.40278 175000|0.5 175001|0.5 175002|0.33333 175003|0.25 175004|0.16667 175005|0.30556 175006|0.375 175007|0.52778 175008|0.56944 175009|0.5 175010|0.51389 175011|0.54167 175012|0.51389 175013|0.51389 175014|0.23611 175015|0.31944 175016|0.36111 175017|0.27778 175018|0.5 175019|0.51389 175020|0.59722 175021|0.41667 175022|0.20833 175023|0.66667 175024|0.44444 175025|0.5 175026|0.22222 175027|0.65278 175028|0.5 175029|0.5 175030|0.20833 175031|0.55556 175032|0.5 175033|0.5 175034|0.33333 175035|0.5 175036|0.45833 175037|0.41667 175038|0.47222 175039|0.48611 175040|0.51389 175041|0.54167 175042|0.5 175043|0.5 175044|0.54167 175045|0.55556 175046|0.81944 175047|0.47222 175048|0.25 175049|0.26389 175050|0.48611 175051|0.25 175052|0.013889 175053|0.13889 175054|0.59722 175055|0.69444 175056|0.61111 175057|0.59722 175058|0.63889 175059|0.55556 175060|0.34722 175061|0.15278 175062|0.38889 175063|0.5 175064|0.47222 175065|0.33333 175066|0.22222 175067|0.55556 175068|0.125 175069|0.5 175070|0.36111 175071|0.58333 175072|0.5 175073|0.48611 175074|0.38889 175075|0.69444 175076|0.23611 175077|0.5 175078|0.5 175079|0.34722 175080|0.40278 175081|0.54167 175082|0.36111 175083|0.5 175084|0.5 175085|0.5 175086|0.5 175087|0.52778 175088|0.48611 175089|0.5 175090|0.5 175091|0.56944 175092|0.5 175093|0.5 175094|0.55556 175095|0.5 175096|0.5 175097|0.5 175098|0.48611 175099|0.51389 175100|0.61111 175101|0.43056 175102|0.19444 175103|0.52778 175104|0.38889 175105|0.65278 175106|0.59722 175107|0.5 175108|0.51389 175109|0.5 175110|0.51389 175111|0.5 175112|0.5 175113|0.5 175114|0.52778 175115|0.5 175116|0.5 175117|0.5 175118|0.5 175119|0.30556 175120|0.52778 175121|0.5 175122|0.16667 175123|0.5 175124|0.63889 175125|0.55556 175126|0.5 175127|0.55556 175128|0.5 175129|0.375 175130|0.52778 175131|0.31944 175132|0.55556 175133|0.29167 175134|0.43056 175135|0.47222 175136|0.52778 175137|0.47222 175138|0.5 175139|0.23611 175140|0.30556 175141|0.33333 175142|0.34722 175143|0.68056 175144|0.23611 175145|0.29167 175146|0.31944 175147|0.34722 175148|0.41667 175149|0.27778 175150|0.34722 175151|0.40278 175152|0.47222 175153|0.48611 175154|0.47222 175155|0.5 175156|0.26389 175157|0.27778 175158|0.13889 175159|0.75 175160|0.36111 175161|0.61111 175162|0.375 175163|0.15278 175164|0.125 175165|0.069444 175166|0.48611 175167|0.11111 175168|0.31944 175169|0.33333 175170|0.34722 175171|0.44444 175172|0.70833 175173|0.23611 175174|0.38889 175175|0.70833 175176|0.33333 175177|0.069444 175178|0.44444 175179|0.625 175180|0.48611 175181|0.5 175182|0.51389 175183|0.5 175184|0.44444 175185|0.41667 175186|0.33333 175187|0.097222 175188|0.27778 175189|0.40278 175190|0.33333 175191|0.52778 175192|0.48611 175193|0.5 175194|0.5 175195|0.51389 175196|0.40278 175197|0.54167 175198|0.47222 175199|0.36111 175200|0.41667 175201|0.5 175202|0.31944 175203|0.63889 175204|0.5 175205|0.47222 175206|0.41667 175207|0.5 175208|0.59722 175209|0.52778 175210|0.48611 175211|0.5 175212|0.44444 175213|0.40278 175214|0.45833 175215|0.5 175216|0.30556 175217|0.34722 175218|0.36111 175219|0.48611 175220|0.38889 175221|0.44444 175222|0.26389 175223|0.25 175224|0.43056 175225|0.5 175226|0.47222 175227|0.34722 175228|0.59722 175229|0.30556 175230|0.22222 175231|0.52778 175232|0.34722 175233|0.38889 175234|0.33333 175235|0.22222 175236|0.31944 175237|0.44444 175238|0.27778 175239|0.16667 175240|0.18056 175241|0.27778 175242|0.48611 175243|0.23611 175244|0.5 175245|0.33333 175246|0.36111 175247|0.33333 175248|0.5 175249|0.38889 175250|0.52778 175251|0.44444 175252|0.5 175253|0.097222 175254|0.51389 175255|0.38889 175256|0.43056 175257|0.48611 175258|0.41667 175259|0.5 175260|0.23611 175261|0.5 175262|0.5 175263|0.375 175264|0.375 175265|0.59722 175266|0.45833 175267|0.44444 175268|0.68056 175269|0.5 175270|0.5 175271|0.15278 175272|0.22222 175273|0.19444 175274|0.47222 175275|0.5 175276|0.41667 175277|0.29167 175278|0.45833 175279|0.36111 175280|0.45833 175281|0.375 175282|0.51389 175283|0.58333 175284|0.38889 175285|0.44444 175286|0.54167 175287|0.44444 175288|0.375 175289|0.5 175290|0.31944 175291|0.47222 175292|0.5 175293|0.5 175294|0.43056 175295|0.61111 175296|0.23611 175297|0.5 175298|0.44444 175299|0.41667 175300|0.625 175301|0.5 175302|0.40278 175303|0.45833 175304|0.27778 175305|0.18056 175306|0.34722 175307|0.51389 175308|0.30556 175309|0.47222 175310|0.55556 175311|0.38889 175312|0.19444 175313|0.70833 175314|0.5 175315|0.56944 175316|0.5 175317|0.45833 175318|0.55556 175319|0.20833 175320|0.5 175321|0.5 175322|0.11111 175323|0.5 175324|0.48611 175325|0.5 175326|0.56944 175327|0.5 175328|0.25 175329|0.30556 175330|0.5 175331|0.52778 175332|0.22222 175333|0.55556 175334|0.43056 175335|0.30556 175336|0.5 175337|0.20833 175338|0.86111 175339|0.5 175340|0.5 175341|0.5 175342|0.29167 175343|0.56944 175344|0.54167 175345|0.5 175346|0.59722 175347|0.5 175348|0.43056 175349|0.19444 175350|0.68056 175351|0.30556 175352|0.22222 175353|0.083333 175354|0.26389 175355|0.20833 175356|0.56944 175357|0.11111 175358|0.15278 175359|0.23611 175360|0.44444 175361|0.47222 175362|0.16667 175363|0.44444 175364|0.41667 175365|0.23611 175366|0.36111 175367|0.38889 175368|0.31944 175369|0.16667 175370|0.31944 175371|0.25 175372|0.23611 175373|0.47222 175374|0.51389 175375|0.13889 175376|0.5 175377|0.33333 175378|0.31944 175379|0.54167 175380|0.61111 175381|0.5 175382|0.48611 175383|0.75 175384|0.30556 175385|0.5 175386|0.63889 175387|0.22222 175388|0.45833 175389|0.48611 175390|0.097222 175391|0.54167 175392|0.52778 175393|0.625 175394|0.59722 175395|0.5 175396|0.31944 175397|0.47222 175398|0.51389 175399|0.52778 175400|0.55556 175401|0.33333 175402|0.51389 175403|0.375 175404|0.52778 175405|0.51389 175406|0.30556 175407|0.5 175408|0.38889 175409|0.34722 175410|0.56944 175411|0.58333 175412|0.625 175413|0.51389 175414|0.47222 175415|0.30556 175416|0.55556 175417|0.19444 175418|0.52778 175419|0.44444 175420|0.43056 175421|0.16667 175422|0.38889 175423|0.34722 175424|0.16667 175425|0.66667 175426|0.72222 175427|0.65278 175428|0.63889 175429|0.61111 175430|0.11111 175431|0.47222 175432|0.18056 175433|0.5 175434|0.48611 175435|0.27778 175436|0.19444 175437|0.41667 175438|0.58333 175439|0.44444 175440|0.041667 175441|0.375 175442|0.65278 175443|0.34722 175444|0.58333 175445|0.5 175446|0.55556 175447|0.55556 175448|0.48611 175449|0.55556 175450|0.18056 175451|0.25 175452|0.5 175453|0.5 175454|0.48611 175455|0.26389 175456|0.16667 175457|0.41667 175458|0.16667 175459|0.76389 175460|0.26389 175461|0.41667 175462|0.44444 175463|0.36111 175464|0.15278 175465|0.55556 175466|0.13889 175467|0.29167 175468|0.51389 175469|0.19444 175470|0.5 175471|0.44444 175472|0.76389 175473|0.80556 175474|0.5 175475|0.34722 175476|0.5 175477|0.38889 175478|0.5 175479|0.5 175480|0.51389 175481|0.48611 175482|0.5 175483|0.38889 175484|0.22222 175485|0.16667 175486|0.25 175487|0.44444 175488|0.5 175489|0.44444 175490|0.29167 175491|0.66667 175492|0.22222 175493|0.16667 175494|0.58333 175495|0.23611 175496|0.19444 175497|0.16667 175498|0.44444 175499|0.56944 175500|0.44444 175501|0.11111 175502|0.27778 175503|0.16667 175504|0.29167 175505|0.58333 175506|0.55556 175507|0.27778 175508|0.23611 175509|0.375 175510|0.19444 175511|0.20833 175512|0.51389 175513|0.5 175514|0.34722 175515|0.5 175516|0.30556 175517|0.36111 175518|0.55556 175519|0.47222 175520|0.38889 175521|0.58333 175522|0.33333 175523|0.30556 175524|0.51389 175525|0.54167 175526|0.25 175527|0.5 175528|0.48611 175529|0.44444 175530|0.25 175531|0.38889 175532|0.22222 175533|0.13889 175534|0.027778 175535|0.47222 175536|0.22222 175537|0.25 175538|0.5 175539|0.40278 175540|0.38889 175541|0.65278 175542|0.29167 175543|0.18056 175544|0.36111 175545|0.38889 175546|0.52778 175547|0.16667 175548|0.069444 175549|0.44444 175550|0.56944 175551|0.55556 175552|0.54167 175553|0.40278 175554|0.13889 175555|0.43056 175556|0.55556 175557|0.36111 175558|0.20833 175559|0.56944 175560|0.38889 175561|0.25 175562|0.5 175563|0.33333 175564|0.33333 175565|0.19444 175566|0.44444 175567|0.375 175568|0.069444 175569|0.5 175570|0.5 175571|0.19444 175572|0.31944 175573|0.54167 175574|0.54167 175575|0.375 175576|0.41667 175577|0.19444 175578|0.055556 175579|0.31944 175580|0.097222 175581|0.56944 175582|0.81944 175583|0.72222 175584|0.31944 175585|0.375 175586|0.33333 175587|0.26389 175588|0.11111 175589|0.5 175590|0.45833 175591|0.36111 175592|0.30556 175593|0.59722 175594|0.48611 175595|0.5 175596|0.44444 175597|0.52778 175598|0.29167 175599|0.44444 175600|0.33333 175601|0.44444 175602|0.5 175603|0.38889 175604|0.45833 175605|0.52778 175606|0.36111 175607|0.34722 175608|0.55556 175609|0.18056 175610|0.5 175611|0.40278 175612|0.5 175613|0.16667 175614|0.55556 175615|0.375 175616|0.51389 175617|0.43056 175618|0.66667 175619|0.5 175620|0.45833 175621|0.40278 175622|0.47222 175623|0.30556 175624|0.63889 175625|0.27778 175626|0.33333 175627|0.70833 175628|0.34722 175629|0.20833 175630|0.54167 175631|0.45833 175632|0.68056 175633|0.54167 175634|0.18056 175635|0.34722 175636|0.11111 175637|0.13889 175638|0.56944 175639|0.34722 175640|0.27778 175641|0.54167 175642|0.61111 175643|0.47222 175644|0.69444 175645|0.625 175646|0.58333 175647|0.625 175648|0.80556 175649|0.68056 175650|0.5 175651|0.56944 175652|0.5 175653|0.5 175654|0.52778 175655|0.41667 175656|0.38889 175657|0.41667 175658|0.44444 175659|0.40278 175660|0.36111 175661|0.375 175662|0.5 175663|0.33333 175664|0.5 175665|0.44444 175666|0.29167 175667|0.5 175668|0.19444 175669|0.33333 175670|0.31944 175671|0.48611 175672|0.625 175673|0.5 175674|0.45833 175675|0.38889 175676|0.5 175677|0.44444 175678|0.40278 175679|0.47222 175680|0.19444 175681|0.55556 175682|0.56944 175683|0.91667 175684|0.77778 175685|0.52778 175686|0.84722 175687|0.61111 175688|0.69444 175689|0.55556 175690|0.625 175691|0.75 175692|0.69444 175693|0.31944 175694|0.5 175695|0.58333 175696|0.54167 175697|0.44444 175698|0.56944 175699|0.36111 175700|0.5 175701|0.18056 175702|0.44444 175703|0.41667 175704|0.5 175705|0.31944 175706|0.19444 175707|0.5 175708|0.27778 175709|0.29167 175710|0.48611 175711|0.34722 175712|0.097222 175713|0.55556 175714|0.30556 175715|0.18056 175716|0.26389 175717|0.375 175718|0.43056 175719|0.45833 175720|0.36111 175721|0.33333 175722|0.52778 175723|0.36111 175724|0.52778 175725|0.15278 175726|0.22222 175727|0.40278 175728|0.38889 175729|0.47222 175730|0.5 175731|0.22222 175732|0.11111 175733|0.5 175734|0.44444 175735|0.41667 175736|0.34722 175737|0.375 175738|0.55556 175739|0.5 175740|0.44444 175741|0.11111 175742|0.47222 175743|0.38889 175744|0.36111 175745|0.55556 175746|0.56944 175747|0.51389 175748|0.5 175749|0.29167 175750|0.375 175751|0.47222 175752|0.61111 175753|0.45833 175754|0.5 175755|0.375 175756|0.56944 175757|0.72222 175758|0.66667 175759|0.5 175760|0.40278 175761|0.44444 175762|0.51389 175763|0.56944 175764|0.5 175765|0.30556 175766|0.77778 175767|0.58333 175768|0.5 175769|0.5 175770|0.55556 175771|0.45833 175772|0.52778 175773|0.47222 175774|0.22222 175775|0.34722 175776|0.22222 175777|0.29167 175778|0.36111 175779|0.45833 175780|0.33333 175781|0.38889 175782|0.16667 175783|0.18056 175784|0.16667 175785|0.5 175786|0.5 175787|0.48611 175788|0.47222 175789|0.5 175790|0.5 175791|0.52778 175792|0.5 175793|0.5 175794|0.5 175795|0.31944 175796|0.55556 175797|0.47222 175798|0.5 175799|0.5 175800|0.47222 175801|0.51389 175802|0.55556 175803|0.69444 175804|0.55556 175805|0.27778 175806|0.63889 175807|0.54167 175808|0.51389 175809|0.48611 175810|0.5 175811|0.5 175812|0.5 175813|0.23611 175814|0.5 175815|0.5 175816|0.5 175817|0.55556 175818|0.5 175819|0.5 175820|0.59722 175821|0.5 175822|0.36111 175823|0.27778 175824|0.44444 175825|0.63889 175826|0.5 175827|0.5 175828|0.36111 175829|0.41667 175830|0.5 175831|0.48611 175832|0.5 175833|0.45833 175834|0.5 175835|0.45833 175836|0.56944 175837|0.51389 175838|0.34722 175839|0.097222 175840|0.61111 175841|0.43056 175842|0.33333 175843|0.5 175844|0.5 175845|0.58333 175846|0.29167 175847|0.43056 175848|0.5 175849|0.5 175850|0.51389 175851|0.5 175852|0.45833 175853|0.5 175854|0.48611 175855|0.51389 175856|0.5 175857|0.54167 175858|0.5 175859|0.56944 175860|0.55556 175861|0.44444 175862|0.36111 175863|0.51389 175864|0.40278 175865|0.52778 175866|0.52778 175867|0.75 175868|0.52778 175869|0.45833 175870|0.30556 175871|0.52778 175872|0.27778 175873|0.43056 175874|0.29167 175875|0.61111 175876|0.47222 175877|0.5 175878|0.15278 175879|0.44444 175880|0.69444 175881|0.48611 175882|0.47222 175883|0.18056 175884|0.58333 175885|0.63889 175886|0.23611 175887|0.47222 175888|0.125 175889|0.43056 175890|0.34722 175891|0.40278 175892|0.38889 175893|0.5 175894|0.45833 175895|0.54167 175896|0.55556 175897|0.44444 175898|0.45833 175899|0.55556 175900|0.56944 175901|0.45833 175902|0.25 175903|0.19444 175904|0.75 175905|0.33333 175906|0.52778 175907|0.66667 175908|0.52778 175909|0.33333 175910|0.31944 175911|0.58333 175912|0.29167 175913|0.55556 175914|0.55556 175915|0.77778 175916|0.76389 175917|0.61111 175918|0.55556 175919|0.48611 175920|0.38889 175921|0.16667 175922|0.36111 175923|0.19444 175924|0.5 175925|0.15278 175926|0.36111 175927|0.55556 175928|0.51389 175929|0.51389 175930|0.66667 175931|0.5 175932|0.29167 175933|0.55556 175934|0.54167 175935|0.65278 175936|0.15278 175937|0.55556 175938|0.36111 175939|0.54167 175940|0.59722 175941|0.36111 175942|0.55556 175943|0.63889 175944|0.55556 175945|0.44444 175946|0.61111 175947|0.33333 175948|0.44444 175949|0.55556 175950|0.5 175951|0.5 175952|0.25 175953|0.18056 175954|0.20833 175955|0.33333 175956|0.375 175957|0.44444 175958|0.20833 175959|0.5 175960|0.22222 175961|0.54167 175962|0.27778 175963|0.48611 175964|0.27778 175965|0.63889 175966|0.23611 175967|0.33333 175968|0.5 175969|0.55556 175970|0.54167 175971|0.22222 175972|0.5 175973|0.22222 175974|0.041667 175975|0.29167 175976|0.58333 175977|0.55556 175978|0.625 175979|0.61111 175980|0.33333 175981|0.55556 175982|0.34722 175983|0.43056 175984|0.61111 175985|0.48611 175986|0.48611 175987|0.63889 175988|0.29167 175989|0.31944 175990|0.27778 175991|0.34722 175992|0.47222 175993|0.5 175994|0.375 175995|0.43056 175996|0.20833 175997|0.61111 175998|0.5 175999|0.38889 176000|0.5 176001|0.52778 176002|0.33333 176003|0.22222 176004|0.44444 176005|0.5 176006|0.54167 176007|0.36111 176008|0.40278 176009|0.41667 176010|0.52778 176011|0.5 176012|0.5 176013|0.5 176014|0.51389 176015|0.18056 176016|0.44444 176017|0.5 176018|0.5 176019|0.19444 176020|0.23611 176021|0.23611 176022|0.5 176023|0.55556 176024|0.44444 176025|0.61111 176026|0.33333 176027|0.5 176028|0.5 176029|0.61111 176030|0.38889 176031|0.5 176032|0.5 176033|0.375 176034|0.25 176035|0.31944 176036|0.5 176037|0.47222 176038|0.41667 176039|0.5 176040|0.5 176041|0.55556 176042|0.5 176043|0.45833 176044|0.55556 176045|0.5 176046|0.41667 176047|0.5 176048|0.30556 176049|0.43056 176050|0.54167 176051|0.30556 176052|0.58333 176053|0.86111 176054|0.56944 176055|0.55556 176056|0.45833 176057|0.23611 176058|0.55556 176059|0.30556 176060|0.16667 176061|0.5 176062|0.80556 176063|0.26389 176064|0.26389 176065|0.55556 176066|0.56944 176067|0.51389 176068|0.5 176069|0.43056 176070|0.375 176071|0.61111 176072|0.43056 176073|0.5 176074|0.55556 176075|0.34722 176076|0.31944 176077|0.45833 176078|0.33333 176079|0.29167 176080|0.5 176081|0.5 176082|0.16667 176083|0.5 176084|0.5 176085|0.48611 176086|0.69444 176087|0.375 176088|0.33333 176089|0.5 176090|0.38889 176091|0.47222 176092|0.68056 176093|0.5 176094|0.40278 176095|0.5 176096|0.52778 176097|0.66667 176098|0.47222 176099|0.5 176100|0.29167 176101|0.26389 176102|0.68056 176103|0.55556 176104|0.44444 176105|0.51389 176106|0.31944 176107|0.5 176108|0.44444 176109|0.52778 176110|0.44444 176111|0.23611 176112|0.69444 176113|0.38889 176114|0.625 176115|0.20833 176116|0.47222 176117|0.5 176118|0.31944 176119|0.125 176120|0.5 176121|0.5 176122|0.52778 176123|0.47222 176124|0.65278 176125|0.51389 176126|0.43056 176127|0.5 176128|0.33333 176129|0.40278 176130|0.43056 176131|0.5 176132|0.33333 176133|0.5 176134|0.72222 176135|0.52778 176136|0.27778 176137|0.61111 176138|0.48611 176139|0.34722 176140|0.29167 176141|0.56944 176142|0.45833 176143|0.44444 176144|0.41667 176145|0.5 176146|0.5 176147|0.44444 176148|0.40278 176149|0.40278 176150|0.66667 176151|0.375 176152|0.44444 176153|0.5 176154|0.33333 176155|0.38889 176156|0.45833 176157|0.61111 176158|0.41667 176159|0.52778 176160|0.56944 176161|0.54167 176162|0.29167 176163|0.5 176164|0.58333 176165|0.63889 176166|0.36111 176167|0.15278 176168|0.33333 176169|0.11111 176170|0.38889 176171|0.125 176172|0.26389 176173|0.56944 176174|0.29167 176175|0.48611 176176|0.65278 176177|0.27778 176178|0.23611 176179|0.55556 176180|0.083333 176181|0.44444 176182|0.48611 176183|0.5 176184|0.44444 176185|0.52778 176186|0.5 176187|0.5 176188|0.19444 176189|0.375 176190|0.66667 176191|0.5 176192|0.25 176193|0.66667 176194|0.5 176195|0.27778 176196|0.41667 176197|0.20833 176198|0.083333 176199|0.16667 176200|0.5 176201|0.59722 176202|0.55556 176203|0.34722 176204|0.61111 176205|0.75 176206|0.18056 176207|0.44444 176208|0.51389 176209|0.22222 176210|0.54167 176211|0.44444 176212|0.56944 176213|0.56944 176214|0.5 176215|0.22222 176216|0.31944 176217|0.25 176218|0.19444 176219|0.31944 176220|0.36111 176221|0.26389 176222|0.29167 176223|0.44444 176224|0.51389 176225|0.5 176226|0.51389 176227|0.5 176228|0.5 176229|0.27778 176230|0.41667 176231|0.55556 176232|0.63889 176233|0.27778 176234|0.5 176235|0.5 176236|0.43056 176237|0.47222 176238|0.40278 176239|0.47222 176240|0.45833 176241|0.58333 176242|0.44444 176243|0.52778 176244|0.33333 176245|0.27778 176246|0.55556 176247|0.66667 176248|0.44444 176249|0.47222 176250|0.29167 176251|0.25 176252|0.19444 176253|0.55556 176254|0.44444 176255|0.36111 176256|0.59722 176257|0.33333 176258|0.41667 176259|0.23611 176260|0.73611 176261|0.5 176262|0.125 176263|0.52778 176264|0.58333 176265|0.56944 176266|0.31944 176267|0.65278 176268|0.63889 176269|0.61111 176270|0.66667 176271|0.52778 176272|0.5 176273|0.81944 176274|0.52778 176275|0.5 176276|0.5 176277|0.5 176278|0.5 176279|0.5 176280|0.5 176281|0.5 176282|0.54167 176283|0.40278 176284|0.45833 176285|0.5 176286|0.34722 176287|0.25 176288|0.47222 176289|0.52778 176290|0.5 176291|0.33333 176292|0.5 176293|0.54167 176294|0.5 176295|0.41667 176296|0.48611 176297|0.36111 176298|0.38889 176299|0.44444 176300|0.25 176301|0.23611 176302|0.51389 176303|0.47222 176304|0.5 176305|0.48611 176306|0.5 176307|0.47222 176308|0.5 176309|0.55556 176310|0.55556 176311|0.45833 176312|0.38889 176313|0.5 176314|0.44444 176315|0.25 176316|0.26389 176317|0.5 176318|0.51389 176319|0.43056 176320|0.51389 176321|0.47222 176322|0.375 176323|0.55556 176324|0.55556 176325|0.36111 176326|0.51389 176327|0.52778 176328|0.15278 176329|0.44444 176330|0.45833 176331|0.38889 176332|0.65278 176333|0.5 176334|0.40278 176335|0.5 176336|0.30556 176337|0.5 176338|0.69444 176339|0.31944 176340|0.5 176341|0.5 176342|0.20833 176343|0.29167 176344|0.70833 176345|0.40278 176346|0.69444 176347|0.38889 176348|0.27778 176349|0.47222 176350|0.55556 176351|0.40278 176352|0.5 176353|0.11111 176354|0.40278 176355|0.56944 176356|0.65278 176357|0.43056 176358|0.41667 176359|0.51389 176360|0.55556 176361|0.55556 176362|0.375 176363|0.5 176364|0.56944 176365|0.38889 176366|0.30556 176367|0.5 176368|0.36111 176369|0.31944 176370|0.5 176371|0.375 176372|0.31944 176373|0.41667 176374|0.52778 176375|0.75 176376|0.625 176377|0.56944 176378|0.54167 176379|0.5 176380|0.5 176381|0.30556 176382|0.66667 176383|0.30556 176384|0.29167 176385|0.069444 176386|0.5 176387|0.34722 176388|0.52778 176389|0.52778 176390|0.43056 176391|0.47222 176392|0.5 176393|0.41667 176394|0.45833 176395|0.375 176396|0.68056 176397|0.19444 176398|0.51389 176399|0.44444 176400|0.25 176401|0.375 176402|0.5 176403|0.5 176404|0.38889 176405|0.54167 176406|0.41667 176407|0.5 176408|0.38889 176409|0.5 176410|0.56944 176411|0.5 176412|0.30556 176413|0.41667 176414|0.56944 176415|0.27778 176416|0.375 176417|0.26389 176418|0.52778 176419|0.5 176420|0.5 176421|0.5 176422|0.44444 176423|0.33333 176424|0.20833 176425|0.55556 176426|0.36111 176427|0.70833 176428|0.55556 176429|0.47222 176430|0.43056 176431|0.30556 176432|0.56944 176433|0.59722 176434|0.52778 176435|0.41667 176436|0.45833 176437|0.5 176438|0.48611 176439|0.5 176440|0.40278 176441|0.38889 176442|0.44444 176443|0.55556 176444|0.38889 176445|0.38889 176446|0.36111 176447|0.18056 176448|0.44444 176449|0.5 176450|0.55556 176451|0.58333 176452|0.36111 176453|0.625 176454|0.5 176455|0.40278 176456|0.20833 176457|0.5 176458|0.5 176459|0.5 176460|0.52778 176461|0.5 176462|0.52778 176463|0.38889 176464|0.58333 176465|0.5 176466|0.5 176467|0.54167 176468|0.76389 176469|0.44444 176470|0.5 176471|0.44444 176472|0.45833 176473|0.5 176474|0.30556 176475|0.55556 176476|0.16667 176477|0.41667 176478|0.58333 176479|0.61111 176480|0.5 176481|0.5 176482|0.66667 176483|0.5 176484|0.22222 176485|0.54167 176486|0.5 176487|0.5 176488|0.55556 176489|0.16667 176490|0.5 176491|0.5 176492|0.055556 176493|0.5 176494|0.5 176495|0.51389 176496|0.5 176497|0.23611 176498|0.43056 176499|0.13889 176500|0.44444 176501|0.45833 176502|0.25 176503|0.5 176504|0.58333 176505|0.55556 176506|0.375 176507|0.5 176508|0.5 176509|0.5 176510|0.58333 176511|0.55556 176512|0.5 176513|0.45833 176514|0.5 176515|0.5 176516|0.5 176517|0.5 176518|0.51389 176519|0.18056 176520|0.36111 176521|0.5 176522|0.36111 176523|0.44444 176524|0.40278 176525|0.36111 176526|0.11111 176527|0.34722 176528|0.55556 176529|0.27778 176530|0.44444 176531|0.5 176532|0.47222 176533|0.47222 176534|0.5 176535|0.27778 176536|0.625 176537|0.30556 176538|0.15278 176539|0.25 176540|0.40278 176541|0.84722 176542|0.15278 176543|0.5 176544|0.31944 176545|0.25 176546|0.5 176547|0.47222 176548|0.48611 176549|0.5 176550|0.5 176551|0.5 176552|0.40278 176553|0.29167 176554|0.5 176555|0.5 176556|0.34722 176557|0.41667 176558|0.13889 176559|0.47222 176560|0.5 176561|0.51389 176562|0.5 176563|0.55556 176564|0.33333 176565|0.5 176566|0.5 176567|0.41667 176568|0.33333 176569|0.20833 176570|0.36111 176571|0.20833 176572|0.5 176573|0.56944 176574|0.48611 176575|0.34722 176576|0.33333 176577|0.31944 176578|0.27778 176579|0.33333 176580|0.48611 176581|0.56944 176582|0.22222 176583|0.31944 176584|0.31944 176585|0.48611 176586|0.30556 176587|0.33333 176588|0.16667 176589|0.16667 176590|0.18056 176591|0.41667 176592|0.44444 176593|0.47222 176594|0.36111 176595|0.26389 176596|0.25 176597|0.26389 176598|0.25 176599|0.25 176600|0.18056 176601|0.33333 176602|0.38889 176603|0.26389 176604|0.38889 176605|0.34722 176606|0.34722 176607|0.18056 176608|0.22222 176609|0.22222 176610|0.20833 176611|0.27778 176612|0.36111 176613|0.44444 176614|0.41667 176615|0.23611 176616|0.25 176617|0.375 176618|0.16667 176619|0.44444 176620|0.44444 176621|0.30556 176622|0.47222 176623|0.40278 176624|0.40278 176625|0.34722 176626|0.26389 176627|0.31944 176628|0.51389 176629|0.31944 176630|0.29167 176631|0.22222 176632|0.25 176633|0.30556 176634|0.30556 176635|0.25 176636|0.29167 176637|0.33333 176638|0.25 176639|0.38889 176640|0.22222 176641|0.30556 176642|0.29167 176643|0.19444 176644|0.41667 176645|0.47222 176646|0.33333 176647|0.31944 176648|0.31944 176649|0.40278 176650|0.27778 176651|0.29167 176652|0.5 176653|0.41667 176654|0.31944 176655|0.41667 176656|0.41667 176657|0.22222 176658|0.30556 176659|0.30556 176660|0.38889 176661|0.26389 176662|0.40278 176663|0.34722 176664|0.19444 176665|0.34722 176666|0.30556 176667|0.31944 176668|0.41667 176669|0.22222 176670|0.33333 176671|0.25 176672|0.40278 176673|0.22222 176674|0.33333 176675|0.38889 176676|0.19444 176677|0.33333 176678|0.41667 176679|0.41667 176680|0.59722 176681|0.25 176682|0.13889 176683|0.27778 176684|0.43056 176685|0.36111 176686|0.22222 176687|0.36111 176688|0.45833 176689|0.43056 176690|0.45833 176691|0.30556 176692|0.40278 176693|0.30556 176694|0.11111 176695|0.26389 176696|0.34722 176697|0.33333 176698|0.55556 176699|0.40278 176700|0.38889 176701|0.31944 176702|0.51389 176703|0.5 176704|0.51389 176705|0.52778 176706|0.5 176707|0.47222 176708|0.48611 176709|0.29167 176710|0.40278 176711|0.38889 176712|0.18056 176713|0.34722 176714|0.58333 176715|0.38889 176716|0.375 176717|0.54167 176718|0.33333 176719|0.47222 176720|0.33333 176721|0.36111 176722|0.15278 176723|0.43056 176724|0.47222 176725|0.22222 176726|0.27778 176727|0.375 176728|0.11111 176729|0.59722 176730|0.36111 176731|0.5 176732|0.48611 176733|0.51389 176734|0.5 176735|0.40278 176736|0.31944 176737|0.27778 176738|0.26389 176739|0.15278 176740|0.27778 176741|0.43056 176742|0.47222 176743|0.41667 176744|0.5 176745|0.56944 176746|0.55556 176747|0.875 176748|0.40278 176749|0.34722 176750|0.5 176751|0.72222 176752|0.52778 176753|0.22222 176754|0.54167 176755|0.52778 176756|0.5 176757|0.5 176758|0.61111 176759|0.23611 176760|0.5 176761|0.33333 176762|0.40278 176763|0.48611 176764|0.41667 176765|0.52778 176766|0.48611 176767|0.52778 176768|0.52778 176769|0.29167 176770|0.52778 176771|0.20833 176772|0.52778 176773|0.36111 176774|0.5 176775|0.5 176776|0.5 176777|0.48611 176778|0.45833 176779|0.52778 176780|0.5 176781|0.19444 176782|0.38889 176783|0.5 176784|0.65278 176785|0.36111 176786|0.31944 176787|0.26389 176788|0.5 176789|0.55556 176790|0.38889 176791|0.5 176792|0.44444 176793|0.76389 176794|0.40278 176795|0.5 176796|0.52778 176797|0.5 176798|0.63889 176799|0.22222 176800|0.13889 176801|0.55556 176802|0.5 176803|0.41667 176804|0.34722 176805|0.38889 176806|0.5 176807|0.11111 176808|0.097222 176809|0.19444 176810|0.48611 176811|0.5 176812|0.5 176813|0.44444 176814|0.47222 176815|0.5 176816|0.45833 176817|0.5 176818|0.43056 176819|0.5 176820|0.36111 176821|0.26389 176822|0.56944 176823|0.5 176824|0.59722 176825|0.34722 176826|0.36111 176827|0.31944 176828|0.5 176829|0.625 176830|0.19444 176831|0.83333 176832|0.40278 176833|0.56944 176834|0.36111 176835|0.5 176836|0.29167 176837|0.27778 176838|0.47222 176839|0.33333 176840|0.41667 176841|0.48611 176842|0.5 176843|0.16667 176844|0.31944 176845|0.38889 176846|0.22222 176847|0.29167 176848|0.29167 176849|0.51389 176850|0.30556 176851|0.56944 176852|0.43056 176853|0.38889 176854|0.26389 176855|0.31944 176856|0.27778 176857|0.34722 176858|0.29167 176859|0.38889 176860|0.26389 176861|0.25 176862|0.20833 176863|0.27778 176864|0.44444 176865|0.48611 176866|0.26389 176867|0.34722 176868|0.13889 176869|0.27778 176870|0.43056 176871|0.5 176872|0.55556 176873|0.34722 176874|0.52778 176875|0.44444 176876|0.43056 176877|0.58333 176878|0.41667 176879|0.5 176880|0.5 176881|0.54167 176882|0.45833 176883|0.43056 176884|0.25 176885|0.44444 176886|0.56944 176887|0.43056 176888|0.45833 176889|0.59722 176890|0.5 176891|0.5 176892|0.5 176893|0.36111 176894|0.77778 176895|0.52778 176896|0.5 176897|0.51389 176898|0.5 176899|0.5 176900|0.51389 176901|0.51389 176902|0.5 176903|0.5 176904|0.083333 176905|0.25 176906|0.11111 176907|0.69444 176908|0.29167 176909|0.72222 176910|0.70833 176911|0.45833 176912|0.30556 176913|0.47222 176914|0.43056 176915|0.36111 176916|0.38889 176917|0.22222 176918|0.16667 176919|0.55556 176920|0.44444 176921|0.44444 176922|0.59722 176923|0.65278 176924|0.625 176925|0.45833 176926|0.5 176927|0.34722 176928|0.5 176929|0.33333 176930|0.40278 176931|0.45833 176932|0.30556 176933|0.44444 176934|0.52778 176935|0.5 176936|0.45833 176937|0.47222 176938|0.44444 176939|0.5 176940|0.27778 176941|0.5 176942|0.5 176943|0.52778 176944|0.5 176945|0.069444 176946|0.29167 176947|0.44444 176948|0.45833 176949|0.26389 176950|0.43056 176951|0.38889 176952|0.44444 176953|0.51389 176954|0.25 176955|0.38889 176956|0.44444 176957|0.27778 176958|0.44444 176959|0.5 176960|0.5 176961|0.44444 176962|0.41667 176963|0.5 176964|0.36111 176965|0.19444 176966|0.18056 176967|0.5 176968|0.27778 176969|0.63889 176970|0.5 176971|0.13889 176972|0.5 176973|0.30556 176974|0.5 176975|0.34722 176976|0.34722 176977|0.43056 176978|0.54167 176979|0.55556 176980|0.16667 176981|0.48611 176982|0.33333 176983|0.013889 176984|0.5 176985|0.54167 176986|0.31944 176987|0.083333 176988|0.23611 176989|0.27778 176990|0.16667 176991|0.34722 176992|0.44444 176993|0.375 176994|0.22222 176995|0.20833 176996|0.29167 176997|0.20833 176998|0.19444 176999|0.11111 177000|0.40278 177001|0.23611 177002|0.31944 177003|0.097222 177004|0.5 177005|0.5 177006|0.5 177007|0.5 177008|0.5 177009|0.5 177010|0.54167 177011|0.54167 177012|0.36111 177013|0.56944 177014|0.59722 177015|0.5 177016|0.43056 177017|0.5 177018|0.26389 177019|0.15278 177020|0.5 177021|0.41667 177022|0.5 177023|0.5 177024|0.61111 177025|0.61111 177026|0.11111 177027|0.5 177028|0.34722 177029|0.47222 177030|0.36111 177031|0.45833 177032|0.38889 177033|0.34722 177034|0.40278 177035|0.30556 177036|0.41667 177037|0.41667 177038|0.29167 177039|0.33333 177040|0.27778 177041|0.097222 177042|0.22222 177043|0.125 177044|0.18056 177045|0.30556 177046|0.30556 177047|0.16667 177048|0.16667 177049|0.45833 177050|0.66667 177051|0.61111 177052|0.26389 177053|0.22222 177054|0.18056 177055|0.26389 177056|0.27778 177057|0.18056 177058|0.16667 177059|0.52778 177060|0.34722 177061|0.20833 177062|0.34722 177063|0.25 177064|0.30556 177065|0.23611 177066|0.26389 177067|0.375 177068|0.5 177069|0.75 177070|0.5 177071|0.5 177072|0.36111 177073|0.31944 177074|0.19444 177075|0.44444 177076|0.33333 177077|0.40278 177078|0.13889 177079|0.33333 177080|0.34722 177081|0.31944 177082|0.36111 177083|0.26389 177084|0.027778 177085|0.41667 177086|0.47222 177087|0.51389 177088|0.45833 177089|0.58333 177090|0.26389 177091|0.48611 177092|0.097222 177093|0.27778 177094|0.38889 177095|0.48611 177096|0.40278 177097|0.47222 177098|0.38889 177099|0.27778 177100|0.38889 177101|0.20833 177102|0.5 177103|0.5 177104|0.93056 177105|0.5 177106|0.47222 177107|0.51389 177108|0.59722 177109|0.59722 177110|0.19444 177111|0.5 177112|0.5 177113|0.63889 177114|0.5 177115|0.29167 177116|0.5 177117|0.38889 177118|0.5 177119|0.30556 177120|0.27778 177121|0.26389 177122|0.40278 177123|0.48611 177124|0.44444 177125|0.25 177126|0.48611 177127|0.52778 177128|0.43056 177129|0.33333 177130|0.5 177131|0.51389 177132|0.43056 177133|0.34722 177134|0.43056 177135|0.40278 177136|0.20833 177137|0.40278 177138|0.30556 177139|0.25 177140|0.63889 177141|0.52778 177142|0.40278 177143|0.51389 177144|0.18056 177145|0.58333 177146|0.51389 177147|0.38889 177148|0.33333 177149|0.38889 177150|0.45833 177151|0.31944 177152|0.33333 177153|0.23611 177154|0.44444 177155|0.069444 177156|0.38889 177157|0.34722 177158|0.54167 177159|0.5 177160|0.5 177161|0.47222 177162|0.375 177163|0.44444 177164|0.19444 177165|0.38889 177166|0.375 177167|0.38889 177168|0.29167 177169|0.33333 177170|0.48611 177171|0.33333 177172|0.18056 177173|0.38889 177174|0.51389 177175|0.33333 177176|0.16667 177177|0.5 177178|0.22222 177179|0.40278 177180|0.26389 177181|0.41667 177182|0.23611 177183|0.22222 177184|0.31944 177185|0.25 177186|0.26389 177187|0.25 177188|0.16667 177189|0.22222 177190|0.18056 177191|0.27778 177192|0.20833 177193|0.20833 177194|0.38889 177195|0.20833 177196|0.22222 177197|0.11111 177198|0.55556 177199|0.19444 177200|0.11111 177201|0.29167 177202|0.16667 177203|0.45833 177204|0.44444 177205|0.5 177206|0.54167 177207|0.40278 177208|0.52778 177209|0.43056 177210|0.55556 177211|0.22222 177212|0.51389 177213|0.5 177214|0.5 177215|0.80556 177216|0.75 177217|0.27778 177218|0.22222 177219|0.43056 177220|0.33333 177221|0.11111 177222|0.59722 177223|0.069444 177224|0.16667 177225|0.45833 177226|0.23611 177227|0.20833 177228|0.31944 177229|0.44444 177230|0.375 177231|0.31944 177232|0.44444 177233|0.22222 177234|0.30556 177235|0.13889 177236|0.375 177237|0.36111 177238|0.30556 177239|0.22222 177240|0.11111 177241|0.11111 177242|0.083333 177243|0.27778 177244|0.375 177245|0.41667 177246|0.5 177247|0.125 177248|0.44444 177249|0.11111 177250|0.59722 177251|0.63889 177252|0.48611 177253|0.125 177254|0.26389 177255|0.58333 177256|0.27778 177257|0.40278 177258|0.34722 177259|0.18056 177260|0.25 177261|0.19444 177262|0.29167 177263|0.31944 177264|0.44444 177265|0.375 177266|0.20833 177267|0.27778 177268|0.36111 177269|0.33333 177270|0.43056 177271|0.44444 177272|0.58333 177273|0.41667 177274|0.34722 177275|0.44444 177276|0.38889 177277|0.5 177278|0.19444 177279|0.43056 177280|0.69444 177281|0.625 177282|0.13889 177283|0.375 177284|0.44444 177285|0.51389 177286|0.5 177287|0.25 177288|0.45833 177289|0.48611 177290|0.625 177291|0.47222 177292|0.34722 177293|0.27778 177294|0.45833 177295|0.15278 177296|0.30556 177297|0.5 177298|0.27778 177299|0.5 177300|0.5 177301|0.55556 177302|0.43056 177303|0.5 177304|0.15278 177305|0.51389 177306|0.5 177307|0.54167 177308|0.5 177309|0.77778 177310|0.52778 177311|0.22222 177312|0.54167 177313|0.5 177314|0.5 177315|0.47222 177316|0.33333 177317|0.34722 177318|0.33333 177319|0.41667 177320|0.625 177321|0.375 177322|0.51389 177323|0.27778 177324|0.36111 177325|0.25 177326|0.5 177327|0.77778 177328|0.66667 177329|0.72222 177330|0.70833 177331|0.5 177332|0.5 177333|0.52778 177334|0.375 177335|0.65278 177336|0.44444 177337|0.5 177338|0.45833 177339|0.375 177340|0.5 177341|0.40278 177342|0.5 177343|0.5 177344|0.36111 177345|0.23611 177346|0.52778 177347|0.27778 177348|0.45833 177349|0.27778 177350|0.5 177351|0.51389 177352|0.47222 177353|0.44444 177354|0.47222 177355|0.5 177356|0.61111 177357|0.5 177358|0.5 177359|0.47222 177360|0.43056 177361|0.5 177362|0.38889 177363|0.40278 177364|0.38889 177365|0.19444 177366|0.5 177367|0.48611 177368|0.47222 177369|0.70833 177370|0.29167 177371|0.27778 177372|0.36111 177373|0.38889 177374|0.625 177375|0.25 177376|0.45833 177377|0.16667 177378|0.48611 177379|0.45833 177380|0.15278 177381|0.38889 177382|0.5 177383|0.5 177384|0.375 177385|0.54167 177386|0.66667 177387|0.11111 177388|0.5 177389|0.48611 177390|0.47222 177391|0.36111 177392|0.625 177393|0.5 177394|0.34722 177395|0.18056 177396|0.5 177397|0.5 177398|0.47222 177399|0.66667 177400|0.5 177401|0.44444 177402|0.33333 177403|0.36111 177404|0.63889 177405|0.5 177406|0.5 177407|0.25 177408|0.23611 177409|0.13889 177410|0.5 177411|0.55556 177412|0.5 177413|0.45833 177414|0.5 177415|0.33333 177416|0.5 177417|0.44444 177418|0.18056 177419|0.19444 177420|0.18056 177421|0.5 177422|0.41667 177423|0.097222 177424|0.26389 177425|0.23611 177426|0.54167 177427|0.73611 177428|0.65278 177429|0.5 177430|0.73611 177431|0.80556 177432|0.70833 177433|0.45833 177434|0.5 177435|0.31944 177436|0.18056 177437|0.5 177438|0.31944 177439|0.61111 177440|0.65278 177441|0.54167 177442|0.69444 177443|0.73611 177444|0.5 177445|0.40278 177446|0.16667 177447|0.36111 177448|0.41667 177449|0.5 177450|0.73611 177451|0.73611 177452|0.76389 177453|0.22222 177454|0.18056 177455|0.44444 177456|0.44444 177457|0.625 177458|0.55556 177459|0.75 177460|0.375 177461|0.68056 177462|0.54167 177463|0.5 177464|0.36111 177465|0.5 177466|0.5 177467|0.27778 177468|0.58333 177469|0.52778 177470|0.5 177471|0.33333 177472|0.27778 177473|0.30556 177474|0.29167 177475|0.45833 177476|0.52778 177477|0.5 177478|0.43056 177479|0.5 177480|0.5 177481|0.5 177482|0.5 177483|0.27778 177484|0.5 177485|0.29167 177486|0.18056 177487|0.27778 177488|0.33333 177489|0.25 177490|0.66667 177491|0.23611 177492|0.25 177493|0.5 177494|0.33333 177495|0.5 177496|0.5 177497|0.63889 177498|0.51389 177499|0.40278 177500|0.38889 177501|0.34722 177502|0.5 177503|0.5 177504|0.36111 177505|0.54167 177506|0.5 177507|0.26389 177508|0.27778 177509|0.23611 177510|0.20833 177511|0.38889 177512|0.52778 177513|0.48611 177514|0.72222 177515|0.70833 177516|0.66667 177517|0.51389 177518|0.52778 177519|0.56944 177520|0.81944 177521|0.79167 177522|0.29167 177523|0.16667 177524|0.18056 177525|0.72222 177526|0.34722 177527|0.25 177528|0.16667 177529|0.30556 177530|0.125 177531|0.5 177532|0.55556 177533|0.5 177534|0.22222 177535|0.23611 177536|0.25 177537|0.22222 177538|0.29167 177539|0.5 177540|0.5 177541|0.40278 177542|0.5 177543|0.29167 177544|0.36111 177545|0.27778 177546|0.44444 177547|0.38889 177548|0.47222 177549|0.5 177550|0.63889 177551|0.65278 177552|0.5 177553|0.52778 177554|0.43056 177555|0.5 177556|0.27778 177557|0.16667 177558|0.22222 177559|0.27778 177560|0.48611 177561|0.38889 177562|0.31944 177563|0.38889 177564|0.5 177565|0.44444 177566|0.5 177567|0.43056 177568|0.29167 177569|0.52778 177570|0.16667 177571|0.45833 177572|0.29167 177573|0.375 177574|0.55556 177575|0.31944 177576|0.23611 177577|0.30556 177578|0.625 177579|0.375 177580|0.20833 177581|0.29167 177582|0.23611 177583|0.27778 177584|0.48611 177585|0.43056 177586|0.51389 177587|0.44444 177588|0.125 177589|0.38889 177590|0.23611 177591|0.48611 177592|0.27778 177593|0.38889 177594|0.18056 177595|0.44444 177596|0.23611 177597|0.55556 177598|0.47222 177599|0.51389 177600|0.5 177601|0.55556 177602|0.34722 177603|0.11111 177604|0.48611 177605|0.34722 177606|0.70833 177607|0.44444 177608|0.40278 177609|0.43056 177610|0.34722 177611|0.55556 177612|0.43056 177613|0.55556 177614|0.43056 177615|0.44444 177616|0.5 177617|0.5 177618|0.55556 177619|0.5 177620|0.38889 177621|0.38889 177622|0.5 177623|0.5 177624|0.5 177625|0.47222 177626|0.5 177627|0.29167 177628|0.38889 177629|0.5 177630|0.58333 177631|0.51389 177632|0.69444 177633|0.5 177634|0.5 177635|0.5 177636|0.66667 177637|0.51389 177638|0.26389 177639|0.11111 177640|0.34722 177641|0.33333 177642|0.58333 177643|0.5 177644|0.18056 177645|0.27778 177646|0.5 177647|0.5 177648|0.5 177649|0.59722 177650|0.34722 177651|0.68056 177652|0.63889 177653|0.15278 177654|0.083333 177655|0.5 177656|0.23611 177657|0.11111 177658|0.26389 177659|0.20833 177660|0.375 177661|0.11111 177662|0.22222 177663|0.22222 177664|0.44444 177665|0.29167 177666|0.5 177667|0.47222 177668|0.33333 177669|0.36111 177670|0.47222 177671|0.44444 177672|0.45833 177673|0.22222 177674|0.51389 177675|0.5 177676|0.51389 177677|0.44444 177678|0.29167 177679|0.19444 177680|0.72222 177681|0.5 177682|0.22222 177683|0.5 177684|0.41667 177685|0.40278 177686|0.29167 177687|0.56944 177688|0.63889 177689|0.54167 177690|0.29167 177691|0.36111 177692|0.22222 177693|0.51389 177694|0.36111 177695|0.33333 177696|0.36111 177697|0.47222 177698|0.27778 177699|0.45833 177700|0.45833 177701|0.16667 177702|0.54167 177703|0.055556 177704|0.055556 177705|0.30556 177706|0.16667 177707|0.19444 177708|0.19444 177709|0.63889 177710|0.20833 177711|0.22222 177712|0.34722 177713|0.48611 177714|0.5 177715|0.69444 177716|0.72222 177717|0.30556 177718|0.56944 177719|0.5 177720|0.40278 177721|0.44444 177722|0.43056 177723|0.26389 177724|0.16667 177725|0.055556 177726|0.33333 177727|0.38889 177728|0.52778 177729|0.5 177730|0.23611 177731|0.27778 177732|0.5 177733|0.5 177734|0.27778 177735|0.625 177736|0.5 177737|0.23611 177738|0.15278 177739|0.29167 177740|0.44444 177741|0.5 177742|0.5 177743|0.13889 177744|0.5 177745|0.5 177746|0.56944 177747|0.5 177748|0 177749|0.055556 177750|0.027778 177751|0.055556 177752|0.15278 177753|0.25 177754|0.43056 177755|0.11111 177756|0.38889 177757|0.51389 177758|0.27778 177759|0.25 177760|0.51389 177761|0.5 177762|0.5 177763|0.44444 177764|0.375 177765|0.5 177766|0.56944 177767|0.23611 177768|0.5 177769|0.56944 177770|0.5 177771|0.55556 177772|0.58333 177773|0.34722 177774|0.47222 177775|0.16667 177776|0.375 177777|0.25 177778|0.5 177779|0.38889 177780|0.5 177781|0.45833 177782|0.38889 177783|0.5 177784|0.30556 177785|0.52778 177786|0.34722 177787|0.36111 177788|0.625 177789|0.5 177790|0.30556 177791|0.44444 177792|0.38889 177793|0.5 177794|0.23611 177795|0.44444 177796|0.75 177797|0.29167 177798|0.375 177799|0.20833 177800|0.19444 177801|0.5 177802|0.55556 177803|0.43056 177804|0.38889 177805|0.47222 177806|0.22222 177807|0.27778 177808|0.20833 177809|0.23611 177810|0.25 177811|0.13889 177812|0.52778 177813|0.51389 177814|0.27778 177815|0.56944 177816|0.5 177817|0.5 177818|0.45833 177819|0.63889 177820|0.52778 177821|0.51389 177822|0.36111 177823|0.18056 177824|0.33333 177825|0.44444 177826|0.33333 177827|0.22222 177828|0.34722 177829|0.5 177830|0.5 177831|0.5 177832|0.33333 177833|0.36111 177834|0.47222 177835|0.45833 177836|0.125 177837|0.18056 177838|0.13889 177839|0.5 177840|0.45833 177841|0.30556 177842|0.16667 177843|0.38889 177844|0.5 177845|0.29167 177846|0.22222 177847|0.54167 177848|0.54167 177849|0.43056 177850|0.73611 177851|0.55556 177852|0.63889 177853|0.40278 177854|0.30556 177855|0.30556 177856|0.43056 177857|0.45833 177858|0.75 177859|0.27778 177860|0.29167 177861|0.43056 177862|0.68056 177863|0.52778 177864|0.40278 177865|0.22222 177866|0.27778 177867|0.51389 177868|0.52778 177869|0.5 177870|0.27778 177871|0.5 177872|0.48611 177873|0.84722 177874|0.72222 177875|0.77778 177876|0.43056 177877|0.61111 177878|0.54167 177879|0.48611 177880|0.5 177881|0.33333 177882|0.45833 177883|0.48611 177884|0.77778 177885|0.70833 177886|0.77778 177887|0.47222 177888|0.55556 177889|0.45833 177890|0.68056 177891|0.58333 177892|0.48611 177893|0.375 177894|0.70833 177895|0.58333 177896|0.76389 177897|0.33333 177898|0.625 177899|0.47222 177900|0.30556 177901|0.25 177902|0.48611 177903|0.54167 177904|0.36111 177905|0.27778 177906|0.63889 177907|0.5 177908|0.51389 177909|0.27778 177910|0.5 177911|0.5 177912|0.54167 177913|0.55556 177914|0.5 177915|0.43056 177916|0.375 177917|0.5 177918|0.5 177919|0.54167 177920|0.54167 177921|0.58333 177922|0.5 177923|0.625 177924|0.5 177925|0.41667 177926|0.45833 177927|0.56944 177928|0.16667 177929|0.11111 177930|0.5 177931|0.41667 177932|0.5 177933|0.51389 177934|0.19444 177935|0.18056 177936|0.18056 177937|0.5 177938|0.41667 177939|0.51389 177940|0.44444 177941|0.5 177942|0.51389 177943|0.40278 177944|0.36111 177945|0.58333 177946|0.34722 177947|0.5 177948|0.33333 177949|0.33333 177950|0.40278 177951|0.56944 177952|0.56944 177953|0.5 177954|0.30556 177955|0.27778 177956|0.375 177957|0.5 177958|0.38889 177959|0.29167 177960|0.59722 177961|0.38889 177962|0.63889 177963|0.44444 177964|0.36111 177965|0.55556 177966|0.5 177967|0.58333 177968|0.5 177969|0.5 177970|0.47222 177971|0.41667 177972|0.29167 177973|0.44444 177974|0.5 177975|0.26389 177976|0.45833 177977|0.44444 177978|0.52778 177979|0.22222 177980|0.23611 177981|0.22222 177982|0.44444 177983|0.52778 177984|0.44444 177985|0.72222 177986|0.38889 177987|0.5 177988|0.5 177989|0.5 177990|0.47222 177991|0.36111 177992|0.5 177993|0.61111 177994|0.5 177995|0.61111 177996|0.58333 177997|0.34722 177998|0.55556 177999|0.5 178000|0.52778 178001|0.48611 178002|0.5 178003|0.54167 178004|0.38889 178005|0.43056 178006|0.79167 178007|0.70833 178008|0.54167 178009|0.44444 178010|0.47222 178011|0.51389 178012|0.19444 178013|0.375 178014|0.30556 178015|0.41667 178016|0.45833 178017|0.43056 178018|0.5 178019|0.34722 178020|0.48611 178021|0.23611 178022|0.5 178023|0.63889 178024|0.5 178025|0.5 178026|0.45833 178027|0.45833 178028|0.51389 178029|0.5 178030|0.5 178031|0.16667 178032|0.43056 178033|0.013889 178034|0.47222 178035|0.375 178036|0.54167 178037|0.20833 178038|0.27778 178039|0.29167 178040|0.5 178041|0.38889 178042|0.5 178043|0.5 178044|0.5 178045|0.33333 178046|0.5 178047|0.45833 178048|0.36111 178049|0.44444 178050|0.45833 178051|0.44444 178052|0.19444 178053|0.36111 178054|0.23611 178055|0.5 178056|0.36111 178057|0.22222 178058|0.44444 178059|0.34722 178060|0.5 178061|0.56944 178062|0.72222 178063|0.34722 178064|0.25 178065|0.22222 178066|0.13889 178067|0.27778 178068|0.58333 178069|0.36111 178070|0.43056 178071|0.38889 178072|0.5 178073|0.47222 178074|0.47222 178075|0.5 178076|0.31944 178077|0.36111 178078|0.43056 178079|0.16667 178080|0.38889 178081|0.43056 178082|0.45833 178083|0.43056 178084|0.47222 178085|0.59722 178086|0.5 178087|0.33333 178088|0.54167 178089|0.54167 178090|0.52778 178091|0.16667 178092|0.27778 178093|0.375 178094|0.41667 178095|0.19444 178096|0.38889 178097|0.22222 178098|0.41667 178099|0.40278 178100|0.44444 178101|0.54167 178102|0.27778 178103|0.44444 178104|0.38889 178105|0.61111 178106|0.29167 178107|0.18056 178108|0.5 178109|0.625 178110|0.5 178111|0.19444 178112|0.5 178113|0.5 178114|0.30556 178115|0.43056 178116|0.45833 178117|0.48611 178118|0.25 178119|0.5 178120|0.27778 178121|0.44444 178122|0.45833 178123|0.41667 178124|0.25 178125|0.27778 178126|0.27778 178127|0.29167 178128|0.48611 178129|0.48611 178130|0.51389 178131|0.41667 178132|0.40278 178133|0.31944 178134|0.77778 178135|0.31944 178136|0.30556 178137|0.40278 178138|0.44444 178139|0.23611 178140|0.5 178141|0.16667 178142|0.20833 178143|0.13889 178144|0.41667 178145|0.47222 178146|0.41667 178147|0.43056 178148|0.43056 178149|0.75 178150|0.5 178151|0.5 178152|0.20833 178153|0.43056 178154|0.45833 178155|0.27778 178156|0.25 178157|0.26389 178158|0.73611 178159|0.38889 178160|0.31944 178161|0.055556 178162|0.22222 178163|0.15278 178164|0.5 178165|0.44444 178166|0.5 178167|0.72222 178168|0.36111 178169|0.19444 178170|0.48611 178171|0.22222 178172|0.36111 178173|0.47222 178174|0.44444 178175|0.52778 178176|0.38889 178177|0.65278 178178|0.59722 178179|0.36111 178180|0.38889 178181|0.55556 178182|0.52778 178183|0.54167 178184|0.44444 178185|0.27778 178186|0.41667 178187|0.22222 178188|0.26389 178189|0.52778 178190|0.5 178191|0.51389 178192|0.36111 178193|0.5 178194|0.43056 178195|0.5 178196|0.5 178197|0.5 178198|0.5 178199|0.47222 178200|0.40278 178201|0.45833 178202|0.72222 178203|0.59722 178204|0.80556 178205|0.5 178206|0.73611 178207|0.31944 178208|0.22222 178209|0.56944 178210|0.31944 178211|0.44444 178212|0.58333 178213|0.44444 178214|0.5 178215|0.18056 178216|0.51389 178217|0.41667 178218|0.48611 178219|0.34722 178220|0.5 178221|0.48611 178222|0.48611 178223|0.23611 178224|0.44444 178225|0.55556 178226|0.5 178227|0.375 178228|0.5 178229|0.38889 178230|0.47222 178231|0.44444 178232|0.54167 178233|0.5 178234|0.5 178235|0.5 178236|0.65278 178237|0.44444 178238|0.51389 178239|0.45833 178240|0.48611 178241|0.88889 178242|0.5 178243|0.5 178244|0.47222 178245|0.26389 178246|0.15278 178247|0.54167 178248|0.375 178249|0.44444 178250|0.38889 178251|0.5 178252|0.58333 178253|0.20833 178254|0.38889 178255|0.29167 178256|0.52778 178257|0.45833 178258|0.5 178259|0.43056 178260|0.5 178261|0.54167 178262|0.58333 178263|0.625 178264|0.5 178265|0.59722 178266|0.25 178267|0.5 178268|0.5 178269|0.44444 178270|0.45833 178271|0.5 178272|0.23611 178273|0.30556 178274|0.5 178275|0.5 178276|0.30556 178277|0.43056 178278|0.5 178279|0.5 178280|0.56944 178281|0.5 178282|0.41667 178283|0.5 178284|0.45833 178285|0.56944 178286|0.58333 178287|0.33333 178288|0.23611 178289|0.375 178290|0.44444 178291|0.38889 178292|0.25 178293|0.54167 178294|0.70833 178295|0.31944 178296|0.5 178297|0.5 178298|0.26389 178299|0.5 178300|0.27778 178301|0.56944 178302|0.5 178303|0.43056 178304|0.69444 178305|0.44444 178306|0.56944 178307|0.16667 178308|0.30556 178309|0.31944 178310|0.38889 178311|0.26389 178312|0.27778 178313|0.47222 178314|0.38889 178315|0.52778 178316|0.41667 178317|0.55556 178318|0.33333 178319|0.30556 178320|0.23611 178321|0.30556 178322|0.5 178323|0.48611 178324|0.52778 178325|0.5 178326|0.47222 178327|0.52778 178328|0.36111 178329|0.25 178330|0.375 178331|0.23611 178332|0.27778 178333|0.43056 178334|0.48611 178335|0.45833 178336|0.51389 178337|0.5 178338|0.20833 178339|0.13889 178340|0.5 178341|0.33333 178342|0.027778 178343|0.41667 178344|0.69444 178345|0.63889 178346|0.55556 178347|0.22222 178348|0.27778 178349|0.13889 178350|0.27778 178351|0.33333 178352|0.54167 178353|0.41667 178354|0.375 178355|0.33333 178356|0.44444 178357|0.29167 178358|0.56944 178359|0.47222 178360|0.55556 178361|0.38889 178362|0.38889 178363|0.625 178364|0.41667 178365|0.27778 178366|0.43056 178367|0.5 178368|0.41667 178369|0.73611 178370|0.55556 178371|0.52778 178372|0.375 178373|0.18056 178374|0.5 178375|0.5 178376|0.61111 178377|0.47222 178378|0.45833 178379|0.44444 178380|0.5 178381|0.47222 178382|0.47222 178383|0.18056 178384|0.44444 178385|0.43056 178386|0.375 178387|0.47222 178388|0.38889 178389|0.11111 178390|0.43056 178391|0.38889 178392|0.54167 178393|0.625 178394|0.70833 178395|0.59722 178396|0.66667 178397|0.51389 178398|0.25 178399|0.13889 178400|0.5 178401|0.5 178402|0.61111 178403|0.30556 178404|0.125 178405|0.55556 178406|0.22222 178407|0.41667 178408|0.55556 178409|0.45833 178410|0.5 178411|0.56944 178412|0.34722 178413|0.30556 178414|0.30556 178415|0.48611 178416|0.58333 178417|0.40278 178418|0.52778 178419|0.30556 178420|0.27778 178421|0.58333 178422|0.5 178423|0.47222 178424|0.5 178425|0.5 178426|0.375 178427|0.27778 178428|0.375 178429|0.38889 178430|0.5 178431|0.63889 178432|0.33333 178433|0.51389 178434|0.43056 178435|0.25 178436|0.19444 178437|0.45833 178438|0.20833 178439|0.22222 178440|0.5 178441|0.77778 178442|0.48611 178443|0.61111 178444|0.61111 178445|0.5 178446|0.41667 178447|0.34722 178448|0.51389 178449|0.16667 178450|0.55556 178451|0.5 178452|0.16667 178453|0.18056 178454|0.40278 178455|0.33333 178456|0.31944 178457|0.51389 178458|0.66667 178459|0.66667 178460|0.5 178461|0.16667 178462|0.40278 178463|0.5 178464|0.5 178465|0.5 178466|0.5 178467|0.51389 178468|0.30556 178469|0.38889 178470|0.5 178471|0.48611 178472|0.54167 178473|0.34722 178474|0.11111 178475|0.625 178476|0.5 178477|0.5 178478|0.5 178479|0.56944 178480|0.44444 178481|0.33333 178482|0.375 178483|0.41667 178484|0.56944 178485|0.5 178486|0.45833 178487|0.70833 178488|0.69444 178489|0.41667 178490|0.5 178491|0.61111 178492|0.47222 178493|0.41667 178494|0.5 178495|0.48611 178496|0.26389 178497|0.5 178498|0.33333 178499|0.5 178500|0.40278 178501|0.27778 178502|0.5 178503|0.33333 178504|0.65278 178505|0.44444 178506|0.27778 178507|0.33333 178508|0.33333 178509|0.43056 178510|0.5 178511|0.54167 178512|0.44444 178513|0.68056 178514|0.5 178515|0.34722 178516|0.56944 178517|0.45833 178518|0.31944 178519|0.15278 178520|0.33333 178521|0.47222 178522|0.44444 178523|0.33333 178524|0.41667 178525|0.76389 178526|0.48611 178527|0.43056 178528|0.25 178529|0.5 178530|0.27778 178531|0.5 178532|0.51389 178533|0.40278 178534|0.19444 178535|0.20833 178536|0.41667 178537|0.19444 178538|0.5 178539|0.56944 178540|0.45833 178541|0.52778 178542|0.5 178543|0.625 178544|0.54167 178545|0.22222 178546|0.54167 178547|0.29167 178548|0.375 178549|0.43056 178550|0.19444 178551|0.56944 178552|0.33333 178553|0.625 178554|0.5 178555|0.41667 178556|0.66667 178557|0.26389 178558|0.5 178559|0.51389 178560|0.44444 178561|0.36111 178562|0.45833 178563|0.38889 178564|0.55556 178565|0.59722 178566|0.34722 178567|0.65278 178568|0.30556 178569|0.51389 178570|0.20833 178571|0.375 178572|0.38889 178573|0.5 178574|0.5 178575|0.43056 178576|0.58333 178577|0.5 178578|0.44444 178579|0.44444 178580|0.29167 178581|0.5 178582|0.20833 178583|0.5 178584|0.54167 178585|0.23611 178586|0.48611 178587|0.81944 178588|0.36111 178589|0.56944 178590|0.27778 178591|0.59722 178592|0.40278 178593|0.16667 178594|0.65278 178595|0.5 178596|0.44444 178597|0.41667 178598|0.69444 178599|0.48611 178600|0.22222 178601|0.40278 178602|0.54167 178603|0.11111 178604|0.47222 178605|0.43056 178606|0.33333 178607|0.5 178608|0.375 178609|0.5 178610|0.5 178611|0.58333 178612|0.44444 178613|0.5 178614|0.5 178615|0.63889 178616|0.5 178617|0.31944 178618|0.15278 178619|0.34722 178620|0.375 178621|0.48611 178622|0.31944 178623|0.5 178624|0.52778 178625|0.44444 178626|0.44444 178627|0.54167 178628|0.26389 178629|0.27778 178630|0.61111 178631|0.5 178632|0.51389 178633|0.56944 178634|0.22222 178635|0.5 178636|0.58333 178637|0.625 178638|0.58333 178639|0.48611 178640|0.51389 178641|0.34722 178642|0.36111 178643|0.23611 178644|0.36111 178645|0.5 178646|0.5 178647|0.79167 178648|0.55556 178649|0.5 178650|0.54167 178651|0.54167 178652|0.31944 178653|0.5 178654|0.5 178655|0.30556 178656|0.55556 178657|0.5 178658|0.58333 178659|0.33333 178660|0.55556 178661|0.40278 178662|0.18056 178663|0.31944 178664|0.36111 178665|0.43056 178666|0.34722 178667|0.375 178668|0.13889 178669|0.51389 178670|0.45833 178671|0.40278 178672|0.30556 178673|0.33333 178674|0.52778 178675|0.61111 178676|0.5 178677|0.58333 178678|0.47222 178679|0.52778 178680|0.63889 178681|0.19444 178682|0.5 178683|0.5 178684|0.31944 178685|0.5 178686|0.5 178687|0.47222 178688|0.23611 178689|0.44444 178690|0.44444 178691|0.66667 178692|0.40278 178693|0.54167 178694|0.125 178695|0.45833 178696|0.25 178697|0.38889 178698|0.625 178699|0.5 178700|0.16667 178701|0.38889 178702|0.63889 178703|0.41667 178704|0.40278 178705|0.5 178706|0.55556 178707|0.44444 178708|0.41667 178709|0.40278 178710|0.56944 178711|0.40278 178712|0.29167 178713|0.41667 178714|0.47222 178715|0.5 178716|0.36111 178717|0.26389 178718|0.47222 178719|0.20833 178720|0.52778 178721|0.33333 178722|0.23611 178723|0.40278 178724|0.43056 178725|0.31944 178726|0.38889 178727|0.5 178728|0.25 178729|0.22222 178730|0.15278 178731|0.29167 178732|0.5 178733|0.75 178734|0.34722 178735|0.63889 178736|0.58333 178737|0.27778 178738|0.51389 178739|0.13889 178740|0.26389 178741|0.34722 178742|0.34722 178743|0.36111 178744|0.38889 178745|0.33333 178746|0.43056 178747|0.25 178748|0.56944 178749|0.5 178750|0.25 178751|0.48611 178752|0.375 178753|0.29167 178754|0.27778 178755|0.27778 178756|0.48611 178757|0.52778 178758|0.25 178759|0.5 178760|0.44444 178761|0.30556 178762|0.38889 178763|0.56944 178764|0.27778 178765|0.45833 178766|0.25 178767|0.33333 178768|0.79167 178769|0.44444 178770|0.47222 178771|0.5 178772|0.375 178773|0.44444 178774|0.45833 178775|0.51389 178776|0.44444 178777|0.38889 178778|0.5 178779|0.19444 178780|0.22222 178781|0.18056 178782|0.5 178783|0.52778 178784|0.33333 178785|0.18056 178786|0.61111 178787|0.5 178788|0.52778 178789|0.44444 178790|0.38889 178791|0.58333 178792|0.40278 178793|0.61111 178794|0.58333 178795|0.29167 178796|0.5 178797|0.5 178798|0.58333 178799|0.5 178800|0.61111 178801|0.68056 178802|0.51389 178803|0.72222 178804|0.58333 178805|0.66667 178806|0.375 178807|0.40278 178808|0.125 178809|0.125 178810|0.45833 178811|0.48611 178812|0.44444 178813|0.70833 178814|0.58333 178815|0.66667 178816|0.66667 178817|0.31944 178818|0.54167 178819|0.88889 178820|0.47222 178821|0.30556 178822|0.083333 178823|0.44444 178824|0.5 178825|0.68056 178826|0.5 178827|0.26389 178828|0.40278 178829|0.44444 178830|0.38889 178831|0.41667 178832|0.125 178833|0.30556 178834|0.36111 178835|0.27778 178836|0.26389 178837|0.15278 178838|0.5 178839|0.63889 178840|0.61111 178841|0.45833 178842|0.61111 178843|0.625 178844|0.75 178845|0.63889 178846|0.63889 178847|0.5 178848|0.375 178849|0.5 178850|0.48611 178851|0.5 178852|0.23611 178853|0.5 178854|0.36111 178855|0.38889 178856|0.33333 178857|0.5 178858|0.59722 178859|0.23611 178860|0.45833 178861|0.5 178862|0.041667 178863|0.18056 178864|0.27778 178865|0.19444 178866|0.41667 178867|0.26389 178868|0.36111 178869|0.69444 178870|0.5 178871|0.40278 178872|0.375 178873|0.36111 178874|0.33333 178875|0.61111 178876|0.58333 178877|0.27778 178878|0.5 178879|0.41667 178880|0.31944 178881|0.055556 178882|0.15278 178883|0.31944 178884|0.31944 178885|0.48611 178886|0.59722 178887|0.54167 178888|0.13889 178889|0.069444 178890|0.44444 178891|0.375 178892|0.45833 178893|0.5 178894|0.41667 178895|0.5 178896|0.30556 178897|0.41667 178898|0.66667 178899|0.38889 178900|0.52778 178901|0.38889 178902|0.44444 178903|0.16667 178904|0.44444 178905|0.083333 178906|0.125 178907|0.54167 178908|0.58333 178909|0.54167 178910|0.69444 178911|0.41667 178912|0.33333 178913|0.22222 178914|0.30556 178915|0.20833 178916|0.22222 178917|0.18056 178918|0.55556 178919|0.26389 178920|0.59722 178921|0.36111 178922|0.069444 178923|0.097222 178924|0.125 178925|0.083333 178926|0.27778 178927|0.54167 178928|0.54167 178929|0.44444 178930|0.38889 178931|0.31944 178932|0.5 178933|0.36111 178934|0.15278 178935|0.22222 178936|0.44444 178937|0.44444 178938|0.5 178939|0.44444 178940|0.72222 178941|0.5 178942|0.5 178943|0.5 178944|0.5 178945|0.5 178946|0.5 178947|0.375 178948|0.47222 178949|0.625 178950|0.51389 178951|0.5 178952|0.33333 178953|0.15278 178954|0.11111 178955|0.027778 178956|0.44444 178957|0.16667 178958|0.18056 178959|0.125 178960|0.56944 178961|0.5 178962|0.375 178963|0.52778 178964|0.5 178965|0.5 178966|0.5 178967|0.69444 178968|0.5 178969|0.5 178970|0.51389 178971|0.22222 178972|0.52778 178973|0.5 178974|0.5 178975|0.5 178976|0.5 178977|0.38889 178978|0.47222 178979|0.5 178980|0.5 178981|0.29167 178982|0.11111 178983|0.5 178984|0.5 178985|0.5 178986|0.19444 178987|0.38889 178988|0.38889 178989|0.31944 178990|0.19444 178991|0.20833 178992|0.44444 178993|0.47222 178994|0.41667 178995|0.40278 178996|0.31944 178997|0.27778 178998|0.38889 178999|0.36111 179000|0.5 179001|0.5 179002|0.44444 179003|0.5 179004|0.5 179005|0.5 179006|0.083333 179007|0.16667 179008|0.51389 179009|0.38889 179010|0.55556 179011|0.5 179012|0.29167 179013|0.5 179014|0.5 179015|0.31944 179016|0.11111 179017|0.27778 179018|0.5 179019|0.5 179020|0.5 179021|0.5 179022|0.51389 179023|0.30556 179024|0.41667 179025|0.375 179026|0.44444 179027|0.5 179028|0.55556 179029|0.20833 179030|0.5 179031|0.44444 179032|0.40278 179033|0.27778 179034|0.125 179035|0.38889 179036|0.48611 179037|0.51389 179038|0.33333 179039|0.36111 179040|0.44444 179041|0.48611 179042|0.45833 179043|0.29167 179044|0.16667 179045|0.47222 179046|0.79167 179047|0.45833 179048|0.5 179049|0.48611 179050|0.30556 179051|0.5 179052|0.18056 179053|0.38889 179054|0.5 179055|0.54167 179056|0.65278 179057|0.55556 179058|0.52778 179059|0.52778 179060|0.5 179061|0.41667 179062|0.5 179063|0.38889 179064|0.44444 179065|0.38889 179066|0.5 179067|0.44444 179068|0.47222 179069|0.5 179070|0.47222 179071|0.33333 179072|0.45833 179073|0.47222 179074|0.30556 179075|0.31944 179076|0.56944 179077|0.56944 179078|0.47222 179079|0.5 179080|0.5 179081|0.47222 179082|0.41667 179083|0.68056 179084|0.34722 179085|0.26389 179086|0.41667 179087|0.34722 179088|0.51389 179089|0.45833 179090|0.33333 179091|0.625 179092|0.5 179093|0.40278 179094|0.40278 179095|0.23611 179096|0.5 179097|0.5 179098|0.61111 179099|0.34722 179100|0.19444 179101|0.45833 179102|0.38889 179103|0.5 179104|0.61111 179105|0.29167 179106|0.13889 179107|0.44444 179108|0.48611 179109|0.56944 179110|0.27778 179111|0.5 179112|0.33333 179113|0.41667 179114|0.44444 179115|0.26389 179116|0.31944 179117|0.19444 179118|0.25 179119|0.375 179120|0.55556 179121|0.625 179122|0.5 179123|0.20833 179124|0.34722 179125|0.375 179126|0.30556 179127|0.65278 179128|0.43056 179129|0.5 179130|0.48611 179131|0.25 179132|0.72222 179133|0.5 179134|0.45833 179135|0.44444 179136|0.5 179137|0.20833 179138|0.27778 179139|0.43056 179140|0.27778 179141|0.34722 179142|0.44444 179143|0.55556 179144|0.40278 179145|0.48611 179146|0.54167 179147|0.5 179148|0.30556 179149|0.26389 179150|0.34722 179151|0.55556 179152|0.52778 179153|0.5 179154|0.375 179155|0.18056 179156|0.38889 179157|0.34722 179158|0.15278 179159|0.54167 179160|0.5 179161|0.625 179162|0.69444 179163|0.44444 179164|0.5 179165|0.5 179166|0.11111 179167|0.375 179168|0.5 179169|0.36111 179170|0.40278 179171|0.61111 179172|0.54167 179173|0.375 179174|0.47222 179175|0.61111 179176|0.23611 179177|0.5 179178|0.30556 179179|0.44444 179180|0.58333 179181|0.22222 179182|0.34722 179183|0.26389 179184|0.55556 179185|0.18056 179186|0.22222 179187|0.27778 179188|0.27778 179189|0.34722 179190|0.30556 179191|0.5 179192|0.52778 179193|0.45833 179194|0.5 179195|0.56944 179196|0.55556 179197|0.19444 179198|0.5 179199|0.5 179200|0.5 179201|0.56944 179202|0.47222 179203|0.5 179204|0.5 179205|0.16667 179206|0.5 179207|0.47222 179208|0.38889 179209|0.44444 179210|0.5 179211|0.56944 179212|0.25 179213|0.33333 179214|0.33333 179215|0.22222 179216|0.40278 179217|0.40278 179218|0.27778 179219|0.5 179220|0.47222 179221|0.56944 179222|0.55556 179223|0.52778 179224|0.26389 179225|0.31944 179226|0.55556 179227|0.5 179228|0.5 179229|0.5 179230|0.5 179231|0.30556 179232|0.65278 179233|0.47222 179234|0.43056 179235|0.51389 179236|0.5 179237|0.44444 179238|0.5 179239|0.5 179240|0.52778 179241|0.5 179242|0.44444 179243|0.36111 179244|0.625 179245|0.48611 179246|0.45833 179247|0.5 179248|0.19444 179249|0.44444 179250|0.43056 179251|0.5 179252|0.5 179253|0.44444 179254|0.30556 179255|0.5 179256|0.19444 179257|0.44444 179258|0.27778 179259|0.43056 179260|0.22222 179261|0.77778 179262|0.63889 179263|0.5 179264|0.48611 179265|0.5 179266|0.5 179267|0.44444 179268|0.33333 179269|0.41667 179270|0.5 179271|0.5 179272|0.5 179273|0.66667 179274|0.58333 179275|0.63889 179276|0.20833 179277|0.5 179278|0.33333 179279|0.5 179280|0.40278 179281|0.375 179282|0.29167 179283|0.5 179284|0.58333 179285|0.5 179286|0.44444 179287|0.61111 179288|0.5 179289|0.5 179290|0.18056 179291|0.30556 179292|0.40278 179293|0.34722 179294|0.5 179295|0.5 179296|0.13889 179297|0.41667 179298|0.43056 179299|0.5 179300|0.41667 179301|0.41667 179302|0.45833 179303|0.45833 179304|0.5 179305|0.5 179306|0.52778 179307|0.51389 179308|0.52778 179309|0.25 179310|0.61111 179311|0.58333 179312|0.30556 179313|0.55556 179314|0.5 179315|0.23611 179316|0.52778 179317|0.55556 179318|0.73611 179319|0.41667 179320|0.43056 179321|0.5 179322|0.44444 179323|0.5 179324|0.38889 179325|0.5 179326|0.5 179327|0.76389 179328|0.61111 179329|0.22222 179330|0.44444 179331|0.48611 179332|0.72222 179333|0.5 179334|0.44444 179335|0.34722 179336|0.11111 179337|0.5 179338|0.41667 179339|0.23611 179340|0.51389 179341|0.70833 179342|0.5 179343|0.56944 179344|0.41667 179345|0.44444 179346|0.5 179347|0.44444 179348|0.44444 179349|0.30556 179350|0.11111 179351|0.38889 179352|0.5 179353|0.5 179354|0.40278 179355|0.29167 179356|0.41667 179357|0.5 179358|0.38889 179359|0.36111 179360|0.47222 179361|0.33333 179362|0.26389 179363|0.29167 179364|0.31944 179365|0.59722 179366|0.51389 179367|0.44444 179368|0.66667 179369|0.19444 179370|0.11111 179371|0.5 179372|0.11111 179373|0.16667 179374|0.22222 179375|0.375 179376|0.5 179377|0.20833 179378|0.16667 179379|0.23611 179380|0.23611 179381|0.18056 179382|0.54167 179383|0.51389 179384|0.5 179385|0.16667 179386|0.47222 179387|0.43056 179388|0.5 179389|0.083333 179390|0.055556 179391|0.44444 179392|0.20833 179393|0.44444 179394|0.27778 179395|0.63889 179396|0.18056 179397|0.19444 179398|0.31944 179399|0.5 179400|0.083333 179401|0.19444 179402|0.19444 179403|0.38889 179404|0.33333 179405|0.27778 179406|0.31944 179407|0.40278 179408|0.11111 179409|0.30556 179410|0.23611 179411|0.34722 179412|0.013889 179413|0.23611 179414|0.125 179415|0.5 179416|0.5 179417|0.30556 179418|0.27778 179419|0.33333 179420|0.51389 179421|0.5 179422|0.43056 179423|0.5 179424|0.33333 179425|0.27778 179426|0.5 179427|0.625 179428|0.72222 179429|0.41667 179430|0.5 179431|0.25 179432|0.54167 179433|0.38889 179434|0.5 179435|0.27778 179436|0.18056 179437|0.38889 179438|0.33333 179439|0.44444 179440|0.52778 179441|0.52778 179442|0.55556 179443|0.59722 179444|0.19444 179445|0.25 179446|0.27778 179447|0.59722 179448|0.40278 179449|0.68056 179450|0.5 179451|0.33333 179452|0.20833 179453|0.33333 179454|0.36111 179455|0.51389 179456|0.40278 179457|0.34722 179458|0.61111 179459|0.25 179460|0.69444 179461|0.5 179462|0.48611 179463|0.36111 179464|0.40278 179465|0.38889 179466|0.5 179467|0.29167 179468|0.33333 179469|0.44444 179470|0.38889 179471|0.54167 179472|0.5 179473|0.33333 179474|0.27778 179475|0.5 179476|0.19444 179477|0.27778 179478|0.5 179479|0.625 179480|0.52778 179481|0.55556 179482|0.47222 179483|0.027778 179484|0.44444 179485|0.65278 179486|0.5 179487|0.5 179488|0.5 179489|0.66667 179490|0.52778 179491|0.5 179492|0.76389 179493|0.5 179494|0.23611 179495|0.25 179496|0.38889 179497|0.41667 179498|0.15278 179499|0.22222 179500|0.52778 179501|0.5 179502|0.625 179503|0.30556 179504|0.25 179505|0.86111 179506|0.31944 179507|0.48611 179508|0.5 179509|0.44444 179510|0.27778 179511|0.69444 179512|0.66667 179513|0.56944 179514|0.5 179515|0.40278 179516|0.38889 179517|0.5 179518|0.20833 179519|0.45833 179520|0.59722 179521|0.38889 179522|0.72222 179523|0.77778 179524|0.33333 179525|0.56944 179526|0.25 179527|0.23611 179528|0.18056 179529|0.65278 179530|0.625 179531|0.58333 179532|0.30556 179533|0.25 179534|0.27778 179535|0.38889 179536|0.38889 179537|0.125 179538|0.375 179539|0.45833 179540|0.27778 179541|0.22222 179542|0.16667 179543|0.16667 179544|0.22222 179545|0.84722 179546|0.84722 179547|0.5 179548|0.5 179549|0.22222 179550|0.5 179551|0.61111 179552|0.5 179553|0 179554|0.055556 179555|0.34722 179556|0.23611 179557|0.45833 179558|0.30556 179559|0.33333 179560|0.29167 179561|0.16667 179562|0.52778 179563|0.30556 179564|0.13889 179565|0.125 179566|0.27778 179567|0.19444 179568|0.22222 179569|0.43056 179570|0.31944 179571|0.23611 179572|0.30556 179573|0.63889 179574|0.44444 179575|0.47222 179576|0 179577|0.055556 179578|0.097222 179579|0.125 179580|0.16667 179581|0.38889 179582|0.47222 179583|0.61111 179584|0.16667 179585|0.16667 179586|0.5 179587|0.36111 179588|0.5 179589|0.91667 179590|0.19444 179591|0.45833 179592|0.72222 179593|0.70833 179594|0.65278 179595|0.29167 179596|0.48611 179597|0.44444 179598|0.55556 179599|0.33333 179600|0.5 179601|0.44444 179602|0.51389 179603|0.30556 179604|0.26389 179605|0.72222 179606|0.38889 179607|0.41667 179608|0.34722 179609|0.22222 179610|0.5 179611|0.30556 179612|0.31944 179613|0.26389 179614|0.40278 179615|0.11111 179616|0.25 179617|0.375 179618|0.23611 179619|0.15278 179620|0.47222 179621|0.80556 179622|0.5 179623|0.43056 179624|0.72222 179625|0.79167 179626|0.25 179627|0.40278 179628|0.73611 179629|0.61111 179630|0.36111 179631|0.22222 179632|0.34722 179633|0.45833 179634|0.15278 179635|0.26389 179636|0.38889 179637|0.26389 179638|0.23611 179639|0.43056 179640|0.41667 179641|0.055556 179642|0.16667 179643|0.69444 179644|0.72222 179645|0.56944 179646|0.44444 179647|0.5 179648|0.13889 179649|0.20833 179650|0.52778 179651|0.55556 179652|0.23611 179653|0.44444 179654|0.43056 179655|0.5 179656|0.51389 179657|0.33333 179658|0.43056 179659|0.26389 179660|0.63889 179661|0.55556 179662|0.48611 179663|0.19444 179664|0.80556 179665|0.69444 179666|0.63889 179667|0.61111 179668|0.25 179669|0.22222 179670|0.5 179671|0.44444 179672|0.47222 179673|0.66667 179674|0.55556 179675|0.66667 179676|0.69444 179677|0.73611 179678|0.72222 179679|0.80556 179680|0.625 179681|0.73611 179682|0.625 179683|0.63889 179684|0.51389 179685|0.43056 179686|0.29167 179687|0.11111 179688|0.52778 179689|0.55556 179690|0.51389 179691|0.47222 179692|0.38889 179693|0.25 179694|0.33333 179695|0.43056 179696|0.22222 179697|0.31944 179698|0.19444 179699|0.20833 179700|0.44444 179701|0.69444 179702|0.54167 179703|0.125 179704|0.31944 179705|0.375 179706|0.26389 179707|0.26389 179708|0.16667 179709|0.083333 179710|0.44444 179711|0.5 179712|0.38889 179713|0.15278 179714|0.40278 179715|0.083333 179716|0.11111 179717|0.52778 179718|0.5 179719|0.38889 179720|0.34722 179721|0.73611 179722|0.66667 179723|0.55556 179724|0.22222 179725|0.25 179726|0.27778 179727|0.19444 179728|0.73611 179729|0.54167 179730|0.36111 179731|0.5 179732|0.33333 179733|0.29167 179734|0.41667 179735|0.36111 179736|0.45833 179737|0.31944 179738|0.20833 179739|0.25 179740|0.23611 179741|0.29167 179742|0.43056 179743|0.45833 179744|0.27778 179745|0.27778 179746|0.38889 179747|0.44444 179748|0.26389 179749|0.11111 179750|0.5 179751|0.65278 179752|0.65278 179753|0.65278 179754|0.38889 179755|0.33333 179756|0.69444 179757|0.55556 179758|0.625 179759|0.55556 179760|0.27778 179761|0.47222 179762|0.5 179763|0.61111 179764|0.36111 179765|0.40278 179766|0.34722 179767|0.22222 179768|0.33333 179769|0.13889 179770|0.26389 179771|0.31944 179772|0.097222 179773|0.11111 179774|0.11111 179775|0.38889 179776|0.63889 179777|0.34722 179778|0.5 179779|0.33333 179780|0.30556 179781|0.33333 179782|0.083333 179783|0.5 179784|0.125 179785|0.5 179786|0.80556 179787|0.22222 179788|0.34722 179789|0.44444 179790|0.5 179791|0.51389 179792|0.16667 179793|0.41667 179794|0.27778 179795|0.58333 179796|0.72222 179797|0.54167 179798|0.41667 179799|0.43056 179800|0.45833 179801|0.38889 179802|0.33333 179803|0.13889 179804|0.30556 179805|0.15278 179806|0.43056 179807|0.31944 179808|0.22222 179809|0.19444 179810|0.22222 179811|0.083333 179812|0.19444 179813|0.23611 179814|0.40278 179815|0.33333 179816|0.29167 179817|0.22222 179818|0.11111 179819|0.27778 179820|0.22222 179821|0.375 179822|0.45833 179823|0.44444 179824|0.22222 179825|0.38889 179826|0.29167 179827|0.25 179828|0.29167 179829|0.41667 179830|0.31944 179831|0.27778 179832|0.65278 179833|0.40278 179834|0.27778 179835|0.40278 179836|0.45833 179837|0.33333 179838|0.20833 179839|0.097222 179840|0.65278 179841|0.51389 179842|0.40278 179843|0.18056 179844|0.18056 179845|0.22222 179846|0.26389 179847|0.44444 179848|0.43056 179849|0.47222 179850|0.23611 179851|0.59722 179852|0.36111 179853|0.77778 179854|0.45833 179855|0.33333 179856|0.48611 179857|0.45833 179858|0.25 179859|0.5 179860|0.5 179861|0.31944 179862|0.27778 179863|0.5 179864|0.33333 179865|0.055556 179866|0.125 179867|0.36111 179868|0.44444 179869|0.48611 179870|0.27778 179871|0.083333 179872|0.25 179873|0.33333 179874|0.44444 179875|0.58333 179876|0.16667 179877|0.15278 179878|0.26389 179879|0.16667 179880|0.31944 179881|0.13889 179882|0.47222 179883|0.38889 179884|0.36111 179885|0.43056 179886|0.30556 179887|0.26389 179888|0.23611 179889|0.22222 179890|0.23611 179891|0.30556 179892|0.31944 179893|0.30556 179894|0.19444 179895|0.15278 179896|0.38889 179897|0.5 179898|0.30556 179899|0.33333 179900|0.22222 179901|0.22222 179902|0.40278 179903|0.72222 179904|0.48611 179905|0.54167 179906|0.5 179907|0.30556 179908|0.38889 179909|0.59722 179910|0.54167 179911|0.55556 179912|0.27778 179913|0.55556 179914|0.43056 179915|0.25 179916|0.58333 179917|0.51389 179918|0.48611 179919|0.25 179920|0.29167 179921|0.25 179922|0.20833 179923|0.22222 179924|0.55556 179925|0.5 179926|0.54167 179927|0.55556 179928|0.5 179929|0.38889 179930|0.52778 179931|0.5 179932|0.41667 179933|0.5 179934|0.11111 179935|0.31944 179936|0.63889 179937|0.5 179938|0.38889 179939|0.41667 179940|0.52778 179941|0.5 179942|0.23611 179943|0.34722 179944|0.25 179945|0.63889 179946|0.70833 179947|0.77778 179948|0.66667 179949|0.27778 179950|0.27778 179951|0.5 179952|0.58333 179953|0.63889 179954|0.44444 179955|0.26389 179956|0.15278 179957|0.19444 179958|0.26389 179959|0.5 179960|0.5 179961|0.23611 179962|0.33333 179963|0.63889 179964|0.72222 179965|0.38889 179966|0.25 179967|0.16667 179968|0.41667 179969|0.5 179970|0.27778 179971|0.48611 179972|0.45833 179973|0.5 179974|0.18056 179975|0.38889 179976|0.20833 179977|0.16667 179978|0.20833 179979|0.36111 179980|0.27778 179981|0.47222 179982|0.52778 179983|0.19444 179984|0.41667 179985|0.375 179986|0.18056 179987|0.19444 179988|0.44444 179989|0.61111 179990|0.68056 179991|0.66667 179992|0.27778 179993|0.38889 179994|0.47222 179995|0.41667 179996|0.38889 179997|0.23611 179998|0.54167 179999|0.33333 180000|0.33333 180001|0.45833 180002|0.16667 180003|0.44444 180004|0.40278 180005|0.38889 180006|0.54167 180007|0.375 180008|0.18056 180009|0.19444 180010|0.44444 180011|0.5 180012|0.55556 180013|0.23611 180014|0.47222 180015|0.36111 180016|0.59722 180017|0.43056 180018|0.5 180019|0.5 180020|0.40278 180021|0.27778 180022|0.31944 180023|0.84722 180024|0.88889 180025|0.41667 180026|0.51389 180027|0.5 180028|0.65278 180029|0.88889 180030|0.13889 180031|0.13889 180032|0.5 180033|0.41667 180034|0.70833 180035|0.34722 180036|0.125 180037|0.36111 180038|0.16667 180039|0.47222 180040|0.013889 180041|0.34722 180042|0.38889 180043|0.26389 180044|0.55556 180045|0.47222 180046|0.44444 180047|0.29167 180048|0.34722 180049|0.20833 180050|0.19444 180051|0.22222 180052|0.30556 180053|0.5 180054|0.5 180055|0.33333 180056|0.38889 180057|0.22222 180058|0.48611 180059|0.26389 180060|0.11111 180061|0.27778 180062|0.22222 180063|0.16667 180064|0.33333 180065|0.30556 180066|0.15278 180067|0.29167 180068|0.375 180069|0.44444 180070|0.43056 180071|0.30556 180072|0.36111 180073|0.56944 180074|0.18056 180075|0.625 180076|0.59722 180077|0.65278 180078|0.52778 180079|0.44444 180080|0.36111 180081|0.31944 180082|0.16667 180083|0.15278 180084|0.26389 180085|0.22222 180086|0.18056 180087|0.18056 180088|0.44444 180089|0.25 180090|0.027778 180091|0.36111 180092|0.22222 180093|0.38889 180094|0.40278 180095|0.36111 180096|0.26389 180097|0.15278 180098|0.52778 180099|0.5 180100|0.34722 180101|0.11111 180102|0.16667 180103|0.23611 180104|0.27778 180105|0.18056 180106|0.22222 180107|0.30556 180108|0.48611 180109|0.52778 180110|0.27778 180111|0.16667 180112|0.30556 180113|0.30556 180114|0.40278 180115|0.58333 180116|0.61111 180117|0.75 180118|0.77778 180119|0.55556 180120|0.65278 180121|0.51389 180122|0.375 180123|0.44444 180124|0.5 180125|0.15278 180126|0.5 180127|0.5 180128|0.65278 180129|0.5 180130|0.5 180131|0.5 180132|0.51389 180133|0.5 180134|0.40278 180135|0.43056 180136|0.36111 180137|0.23611 180138|0.5 180139|0.5 180140|0.25 180141|0.47222 180142|0.5 180143|0.5 180144|0.5 180145|0.73611 180146|0.19444 180147|0.5 180148|0.16667 180149|0.66667 180150|0.27778 180151|0.58333 180152|0.68056 180153|0.48611 180154|0.25 180155|0.34722 180156|0.55556 180157|0.65278 180158|0.44444 180159|0.54167 180160|0.5 180161|0.5 180162|0.5 180163|0.5 180164|0.31944 180165|0.5 180166|0.23611 180167|0.5 180168|0.31944 180169|0.58333 180170|0.11111 180171|0.5 180172|0.15278 180173|0.097222 180174|0.41667 180175|0.125 180176|0.27778 180177|0.26389 180178|0.25 180179|0.44444 180180|0.20833 180181|0.5 180182|0.5 180183|0.55556 180184|0.5 180185|0.5 180186|0.51389 180187|0.61111 180188|0.51389 180189|0.22222 180190|0.43056 180191|0.63889 180192|0.41667 180193|0.36111 180194|0.27778 180195|0.26389 180196|0.5 180197|0.5 180198|0.34722 180199|0.59722 180200|0.51389 180201|0.44444 180202|0.22222 180203|0.5 180204|0.25 180205|0.45833 180206|0.20833 180207|0.22222 180208|0.375 180209|0.5 180210|0.5 180211|0.375 180212|0.33333 180213|0.20833 180214|0.375 180215|0.15278 180216|0.5 180217|0.47222 180218|0.5 180219|0.29167 180220|0.22222 180221|0.36111 180222|0.11111 180223|0.38889 180224|0.27778 180225|0.26389 180226|0.15278 180227|0.38889 180228|0.47222 180229|0.31944 180230|0.23611 180231|0.33333 180232|0.61111 180233|0.5 180234|0.27778 180235|0.5 180236|0.51389 180237|0.48611 180238|0.29167 180239|0.51389 180240|0.58333 180241|0.61111 180242|0.5 180243|0.5 180244|0.31944 180245|0.40278 180246|0.52778 180247|0.61111 180248|0.58333 180249|0.33333 180250|0.5 180251|0.27778 180252|0.48611 180253|0.59722 180254|0.5 180255|0.36111 180256|0.36111 180257|0.38889 180258|0.59722 180259|0.375 180260|0.16667 180261|0.5 180262|0.58333 180263|0.63889 180264|0.5 180265|0.5 180266|0.5 180267|0.29167 180268|0.38889 180269|0.30556 180270|0.375 180271|0.44444 180272|0.5 180273|0.5 180274|0.41667 180275|0.72222 180276|0.44444 180277|0.48611 180278|0.5 180279|0.5 180280|0.59722 180281|0.70833 180282|0.5 180283|0.58333 180284|0.61111 180285|0.5 180286|0.47222 180287|0.65278 180288|0.5 180289|0.5 180290|0.33333 180291|0.34722 180292|0.38889 180293|0.34722 180294|0.44444 180295|0.55556 180296|0.33333 180297|0.27778 180298|0.5 180299|0.34722 180300|0.5 180301|0.52778 180302|0.5 180303|0.5 180304|0.5 180305|0.40278 180306|0.59722 180307|0.5 180308|0.5 180309|0.5 180310|0.5 180311|0.5 180312|0.5 180313|0.5 180314|0.5 180315|0.34722 180316|0.27778 180317|0.13889 180318|0.11111 180319|0.77778 180320|0.23611 180321|0.43056 180322|0.63889 180323|0.30556 180324|0.58333 180325|0.11111 180326|0.22222 180327|0.51389 180328|0.58333 180329|0.55556 180330|0.54167 180331|0.44444 180332|0.41667 180333|0.31944 180334|0.45833 180335|0.44444 180336|0.16667 180337|0.5 180338|0.5 180339|0.47222 180340|0.27778 180341|0.19444 180342|0.59722 180343|0.5 180344|0.45833 180345|0.375 180346|0.18056 180347|0.51389 180348|0.5 180349|0.29167 180350|0.20833 180351|0.5 180352|0.43056 180353|0.48611 180354|0.47222 180355|0.61111 180356|0.16667 180357|0.54167 180358|0.5 180359|0.5 180360|0.45833 180361|0.26389 180362|0.23611 180363|0.27778 180364|0.5 180365|0.25 180366|0.36111 180367|0.13889 180368|0.5 180369|0.20833 180370|0.56944 180371|0.36111 180372|0.5 180373|0.041667 180374|0.22222 180375|0.29167 180376|0.52778 180377|0.18056 180378|0.34722 180379|0.45833 180380|0.33333 180381|0.11111 180382|0.33333 180383|0.40278 180384|0.31944 180385|0.38889 180386|0.41667 180387|0.68056 180388|0.11111 180389|0.38889 180390|0.125 180391|0.43056 180392|0.27778 180393|0.27778 180394|0.33333 180395|0.58333 180396|0.625 180397|0.5 180398|0.5 180399|0.48611 180400|0.22222 180401|0.34722 180402|0.29167 180403|0.5 180404|0.19444 180405|0.59722 180406|0.69444 180407|0.30556 180408|0.54167 180409|0.36111 180410|0.58333 180411|0.48611 180412|0.40278 180413|0.29167 180414|0.5 180415|0.30556 180416|0.44444 180417|0.79167 180418|0.34722 180419|0.15278 180420|0.22222 180421|0.56944 180422|0.5 180423|0.44444 180424|0.33333 180425|0.29167 180426|0.22222 180427|0.75 180428|0.27778 180429|0.55556 180430|0.66667 180431|0.26389 180432|0.36111 180433|0.44444 180434|0.30556 180435|0.16667 180436|0.81944 180437|0.56944 180438|0.58333 180439|0.29167 180440|0.26389 180441|0.38889 180442|0.33333 180443|0.40278 180444|0.38889 180445|0.27778 180446|0.61111 180447|0.027778 180448|0.27778 180449|0.5 180450|0.97222 180451|0.23611 180452|0.34722 180453|0.22222 180454|0.18056 180455|0.20833 180456|0.27778 180457|0.31944 180458|0.34722 180459|0.51389 180460|0.79167 180461|0.5 180462|0.27778 180463|0.80556 180464|0.27778 180465|0.5 180466|0.45833 180467|0.84722 180468|0.29167 180469|0.15278 180470|0.65278 180471|0.44444 180472|0.33333 180473|0.90278 180474|0.5 180475|0.29167 180476|0.5 180477|0.19444 180478|0.27778 180479|0.36111 180480|0.19444 180481|0.23611 180482|0.125 180483|0.51389 180484|0.34722 180485|0.18056 180486|0.31944 180487|0.56944 180488|0.43056 180489|0.25 180490|0.54167 180491|0.36111 180492|0.26389 180493|0.375 180494|0.54167 180495|0.48611 180496|0.15278 180497|0.30556 180498|0.375 180499|0.5 180500|0.63889 180501|0.5 180502|0.27778 180503|0.54167 180504|0.44444 180505|0.375 180506|0.52778 180507|0.34722 180508|0.51389 180509|0.16667 180510|0.29167 180511|0.44444 180512|0.31944 180513|0.38889 180514|0.44444 180515|0.5 180516|0.16667 180517|0.52778 180518|0.30556 180519|0.375 180520|0.38889 180521|0.18056 180522|0.33333 180523|0.38889 180524|0.63889 180525|0.5 180526|0.5 180527|0.5 180528|0.25 180529|0.29167 180530|0.5 180531|0.47222 180532|0.27778 180533|0.55556 180534|0.25 180535|0.27778 180536|0.083333 180537|0.27778 180538|0.25 180539|0.5 180540|0.5 180541|0.375 180542|0.40278 180543|0.77778 180544|0.5 180545|0.54167 180546|0.34722 180547|0.33333 180548|0.22222 180549|0.18056 180550|0.33333 180551|0.27778 180552|0.30556 180553|0.33333 180554|0.38889 180555|0.25 180556|0.58333 180557|0.59722 180558|0.55556 180559|0.41667 180560|0.36111 180561|0.88889 180562|0.29167 180563|0.36111 180564|0.45833 180565|0.31944 180566|0.51389 180567|0.33333 180568|0.43056 180569|0.44444 180570|0.54167 180571|0.44444 180572|0.40278 180573|0.27778 180574|0.5 180575|0.36111 180576|0.34722 180577|0.33333 180578|0.5 180579|0.16667 180580|0.18056 180581|0.25 180582|0.22222 180583|0.23611 180584|0.44444 180585|0.29167 180586|0.54167 180587|0.72222 180588|0.097222 180589|0.19444 180590|0.43056 180591|0.31944 180592|0.40278 180593|0.70833 180594|0.76389 180595|0.47222 180596|0.52778 180597|0.54167 180598|0.15278 180599|0.30556 180600|0.34722 180601|0.31944 180602|0.20833 180603|0.5 180604|0.33333 180605|0.20833 180606|0.55556 180607|0.5 180608|0.34722 180609|0.48611 180610|0.76389 180611|0.43056 180612|0.30556 180613|0.30556 180614|0.27778 180615|0.25 180616|0.73611 180617|0.47222 180618|0.26389 180619|0.18056 180620|0.5 180621|0.84722 180622|0.51389 180623|0.30556 180624|0.41667 180625|0.5 180626|0.26389 180627|0.43056 180628|0.68056 180629|0.23611 180630|0.5 180631|0.55556 180632|0.44444 180633|0.54167 180634|0.5 180635|0.23611 180636|0.11111 180637|0.29167 180638|0.63889 180639|0.15278 180640|0.84722 180641|0.30556 180642|0.23611 180643|0.5 180644|0.34722 180645|0.5 180646|0.66667 180647|0.61111 180648|0.31944 180649|0.5 180650|0.5 180651|0.5 180652|0.45833 180653|0.5 180654|0.26389 180655|0.5 180656|0.77778 180657|0.38889 180658|0.58333 180659|0.20833 180660|0.5 180661|0.11111 180662|0.29167 180663|0.16667 180664|0.43056 180665|0.33333 180666|0.16667 180667|0.77778 180668|0.45833 180669|0.18056 180670|0.70833 180671|0.69444 180672|0.38889 180673|0.375 180674|0.36111 180675|0.25 180676|0.59722 180677|0.29167 180678|0.097222 180679|0.31944 180680|0.65278 180681|0.44444 180682|0.43056 180683|0.23611 180684|0.76389 180685|0.31944 180686|0.65278 180687|0.375 180688|0.29167 180689|0.31944 180690|0.16667 180691|0.16667 180692|0.069444 180693|0.38889 180694|0.51389 180695|0.22222 180696|0.15278 180697|0.33333 180698|0.30556 180699|0.73611 180700|0.40278 180701|0.40278 180702|0.43056 180703|0.54167 180704|0.27778 180705|0.63889 180706|0.73611 180707|0.70833 180708|0.15278 180709|0.33333 180710|0.5 180711|0.27778 180712|0.27778 180713|0.097222 180714|0.375 180715|0.375 180716|0.055556 180717|0.20833 180718|0.38889 180719|0.34722 180720|0.51389 180721|0.26389 180722|0.15278 180723|0.38889 180724|0.33333 180725|0.18056 180726|0.5 180727|0.11111 180728|0.16667 180729|0.29167 180730|0.55556 180731|0.27778 180732|0.29167 180733|0.38889 180734|0.25 180735|0.19444 180736|0.40278 180737|0.27778 180738|0.22222 180739|0.11111 180740|0.56944 180741|0.55556 180742|0.55556 180743|0.26389 180744|0.16667 180745|0.27778 180746|0.23611 180747|0.5 180748|0.33333 180749|0.38889 180750|0.625 180751|0.26389 180752|0.26389 180753|0.11111 180754|0.23611 180755|0.5 180756|0.22222 180757|0.38889 180758|0.44444 180759|0 180760|0.40278 180761|0.40278 180762|0.069444 180763|0.26389 180764|0.41667 180765|0.375 180766|0.15278 180767|0.36111 180768|0.30556 180769|0.26389 180770|0.40278 180771|0.30556 180772|0.48611 180773|0.375 180774|0.41667 180775|0.41667 180776|0.16667 180777|0.33333 180778|0.27778 180779|0.23611 180780|0.47222 180781|0.65278 180782|0 180783|0.51389 180784|0.61111 180785|0.56944 180786|0.51389 180787|0.34722 180788|0.625 180789|0.375 180790|0.75 180791|0.15278 180792|0.29167 180793|0.38889 180794|0.5 180795|0.36111 180796|0.097222 180797|0.20833 180798|0.47222 180799|0.48611 180800|0.5 180801|0.34722 180802|0.52778 180803|0.52778 180804|0.38889 180805|0.22222 180806|0.48611 180807|0.61111 180808|0.29167 180809|0.38889 180810|0.26389 180811|0.26389 180812|0.40278 180813|0.73611 180814|0.59722 180815|0.5 180816|0.11111 180817|0.58333 180818|0.5 180819|0.43056 180820|0.13889 180821|0.65278 180822|0.47222 180823|0.73611 180824|0.5 180825|0.59722 180826|0.27778 180827|0.31944 180828|0.34722 180829|0.41667 180830|0.27778 180831|0.5 180832|0.25 180833|0.13889 180834|0.55556 180835|0.22222 180836|0.29167 180837|0.54167 180838|0.55556 180839|0.19444 180840|0.52778 180841|0.18056 180842|0.44444 180843|0.41667 180844|0.30556 180845|0.29167 180846|0.48611 180847|0.58333 180848|0.38889 180849|0.19444 180850|0.5 180851|0.33333 180852|0.33333 180853|0.13889 180854|0.25 180855|0.29167 180856|0.30556 180857|0.23611 180858|0.66667 180859|0.26389 180860|0.52778 180861|0.66667 180862|0.45833 180863|0.72222 180864|0.43056 180865|0.59722 180866|0.41667 180867|0.22222 180868|0.20833 180869|0.33333 180870|0.40278 180871|0.22222 180872|0.20833 180873|0.30556 180874|0.45833 180875|0.375 180876|0.47222 180877|0.61111 180878|0.19444 180879|0.22222 180880|0.26389 180881|0.51389 180882|0.5 180883|0.47222 180884|0.375 180885|0.11111 180886|0.38889 180887|0.45833 180888|0.31944 180889|0.5 180890|0.15278 180891|0.5 180892|0.31944 180893|0.16667 180894|0.61111 180895|0.33333 180896|0.38889 180897|0.29167 180898|0.069444 180899|0.44444 180900|0.33333 180901|0.33333 180902|0.27778 180903|0.52778 180904|0.52778 180905|0.44444 180906|0.20833 180907|0.40278 180908|0.52778 180909|0.23611 180910|0.26389 180911|0.19444 180912|0.26389 180913|0.22222 180914|0.44444 180915|0.20833 180916|0.18056 180917|0.33333 180918|0 180919|0.23611 180920|0.25 180921|0.11111 180922|0.40278 180923|0.27778 180924|0.18056 180925|0.61111 180926|0.38889 180927|0.45833 180928|0.30556 180929|0.44444 180930|0.38889 180931|0.40278 180932|0.5 180933|0.25 180934|0.34722 180935|0.26389 180936|0.27778 180937|0.63889 180938|0.26389 180939|0.20833 180940|0.43056 180941|0.34722 180942|0.5 180943|0.51389 180944|0.47222 180945|0.48611 180946|0.23611 180947|0.56944 180948|0.5 180949|0.5 180950|0.18056 180951|0.18056 180952|0.55556 180953|0.18056 180954|0.30556 180955|0.27778 180956|0.36111 180957|0.25 180958|0.22222 180959|0.36111 180960|0.54167 180961|0.84722 180962|0.18056 180963|0.29167 180964|0.375 180965|0.34722 180966|0.36111 180967|0.375 180968|0.11111 180969|0.26389 180970|0.45833 180971|0.13889 180972|0.30556 180973|0.16667 180974|0.34722 180975|0.34722 180976|0.083333 180977|0.40278 180978|0.31944 180979|0.47222 180980|0.38889 180981|0.23611 180982|0.19444 180983|0.20833 180984|0.055556 180985|0.34722 180986|0.55556 180987|0.27778 180988|0.56944 180989|0.41667 180990|0.44444 180991|0.52778 180992|0.22222 180993|0.18056 180994|0.19444 180995|0.22222 180996|0.29167 180997|0.77778 180998|0.75 180999|0.45833 181000|0.51389 181001|0.11111 181002|0.41667 181003|0.125 181004|0.43056 181005|0.15278 181006|0.23611 181007|0.30556 181008|0.125 181009|0.44444 181010|0.40278 181011|0.16667 181012|0.25 181013|0.23611 181014|0.36111 181015|0.20833 181016|0.15278 181017|0.48611 181018|0.33333 181019|0.33333 181020|0.44444 181021|0.22222 181022|0.27778 181023|0.43056 181024|0.56944 181025|0.75 181026|0.54167 181027|0.29167 181028|0.70833 181029|0.23611 181030|0.45833 181031|0.61111 181032|0.45833 181033|0.16667 181034|0.23611 181035|0.63889 181036|0.72222 181037|0.25 181038|0.30556 181039|0.44444 181040|0.20833 181041|0.18056 181042|0.47222 181043|0.16667 181044|0.34722 181045|0.55556 181046|0.40278 181047|0.31944 181048|0.30556 181049|0.25 181050|0.5 181051|0.625 181052|0.375 181053|0.34722 181054|0.069444 181055|0.40278 181056|0.51389 181057|0.43056 181058|0.22222 181059|0.25 181060|0.47222 181061|0.55556 181062|0.88889 181063|0.19444 181064|0.61111 181065|0.20833 181066|0.375 181067|0.34722 181068|0.125 181069|0.41667 181070|0.25 181071|0.15278 181072|0.16667 181073|0.27778 181074|0.45833 181075|0.375 181076|0.25 181077|0.29167 181078|0.54167 181079|0.18056 181080|0.63889 181081|0.38889 181082|0.125 181083|0.33333 181084|0.59722 181085|0.25 181086|0.36111 181087|0.30556 181088|0.33333 181089|0.16667 181090|0.30556 181091|0.41667 181092|0.19444 181093|0.27778 181094|0.33333 181095|0.43056 181096|0.44444 181097|0.5 181098|0.26389 181099|0.72222 181100|0.5 181101|0.29167 181102|0.22222 181103|0.083333 181104|0.54167 181105|0.20833 181106|0.19444 181107|0.22222 181108|0.44444 181109|0.20833 181110|0.19444 181111|0.33333 181112|0.5 181113|0.61111 181114|0.38889 181115|0.22222 181116|0.27778 181117|0.65278 181118|0.83333 181119|0.40278 181120|0.5 181121|0.44444 181122|0.23611 181123|0.52778 181124|0.80556 181125|0.68056 181126|0.29167 181127|0.77778 181128|0.22222 181129|0.65278 181130|0.5 181131|0.38889 181132|0.22222 181133|0.22222 181134|0.38889 181135|0.33333 181136|0.375 181137|0.33333 181138|0.27778 181139|0.47222 181140|0.22222 181141|0.47222 181142|0.18056 181143|0.16667 181144|0.66667 181145|0.66667 181146|0.34722 181147|0.25 181148|0.5 181149|0.27778 181150|0.33333 181151|0.44444 181152|0.34722 181153|0.30556 181154|0.055556 181155|0.48611 181156|0.43056 181157|0.5 181158|0.20833 181159|0.22222 181160|0.29167 181161|0.5 181162|0.26389 181163|0.11111 181164|0.5 181165|0.5 181166|0.61111 181167|0.33333 181168|0.5 181169|0.44444 181170|0.52778 181171|0.52778 181172|0.72222 181173|0.30556 181174|0.40278 181175|0.13889 181176|0.55556 181177|0.52778 181178|0.34722 181179|0.83333 181180|0.69444 181181|0.375 181182|0.45833 181183|0.40278 181184|0.38889 181185|0.33333 181186|0.27778 181187|0.45833 181188|0.25 181189|0.5 181190|0.5 181191|0.29167 181192|0.44444 181193|0.55556 181194|0.59722 181195|0.33333 181196|0.5 181197|0.5 181198|0.875 181199|0.5 181200|0.51389 181201|0.47222 181202|0.38889 181203|0.5 181204|0.38889 181205|0.47222 181206|0.33333 181207|0.22222 181208|0.55556 181209|0.55556 181210|0.5 181211|0.22222 181212|0.38889 181213|0.69444 181214|0.27778 181215|0.43056 181216|0.20833 181217|0.5 181218|0.43056 181219|0.54167 181220|0.55556 181221|0.45833 181222|0.59722 181223|0.31944 181224|0.19444 181225|0.5 181226|0.38889 181227|0.38889 181228|0.43056 181229|0.5 181230|0.55556 181231|0.66667 181232|0.15278 181233|0.66667 181234|0.5 181235|0.43056 181236|0.31944 181237|0.5 181238|0.61111 181239|0.51389 181240|0.29167 181241|0.5 181242|0.30556 181243|0.041667 181244|0.5 181245|0.54167 181246|0.097222 181247|0.5 181248|0.36111 181249|0.41667 181250|0.26389 181251|0.34722 181252|0.5 181253|0.5 181254|0.5 181255|0.5 181256|0.15278 181257|0.5 181258|0.5 181259|0.5 181260|0.55556 181261|0.5 181262|0.5 181263|0.5 181264|0.5 181265|0.19444 181266|0.65278 181267|0.52778 181268|0.52778 181269|0.36111 181270|0.5 181271|0.59722 181272|0.5 181273|0.5 181274|0.56944 181275|0.5 181276|0.5 181277|0.38889 181278|0.33333 181279|0.5 181280|0.5 181281|0.5 181282|0.16667 181283|0.5 181284|0.18056 181285|0.20833 181286|0.36111 181287|0.27778 181288|0.5 181289|0.41667 181290|0.27778 181291|0.11111 181292|0.5 181293|0.31944 181294|0.16667 181295|0.13889 181296|0.11111 181297|0.5 181298|0.20833 181299|0.44444 181300|0.19444 181301|0.33333 181302|0.375 181303|0.27778 181304|0.34722 181305|0.38889 181306|0.23611 181307|0.19444 181308|0.22222 181309|0.27778 181310|0.43056 181311|0.27778 181312|0.23611 181313|0.19444 181314|0.65278 181315|0.29167 181316|0.44444 181317|0.47222 181318|0.27778 181319|0.34722 181320|0.30556 181321|0.19444 181322|0.55556 181323|0.22222 181324|0.22222 181325|0.041667 181326|0.31944 181327|0.11111 181328|0.29167 181329|0.43056 181330|0.18056 181331|0 181332|0.25 181333|0.38889 181334|0.43056 181335|0.27778 181336|0.27778 181337|0.25 181338|0.25 181339|0.5 181340|0.52778 181341|0.59722 181342|0.34722 181343|0.29167 181344|0.47222 181345|0.013889 181346|0.375 181347|0.55556 181348|0.041667 181349|0.25 181350|0.22222 181351|0.48611 181352|0.055556 181353|0.5 181354|0.47222 181355|0.5 181356|0.44444 181357|0.5 181358|0.43056 181359|0.5 181360|0.48611 181361|0.625 181362|0.5 181363|0.43056 181364|0.5 181365|0.5 181366|0.5 181367|0.5 181368|0.5 181369|0.5 181370|0.25 181371|0.47222 181372|0.43056 181373|0.5 181374|0.5 181375|0.51389 181376|0.5 181377|0.5 181378|0.5 181379|0.66667 181380|0.56944 181381|0.5 181382|0.43056 181383|0.51389 181384|0.5 181385|0.5 181386|0.5 181387|0.54167 181388|0.47222 181389|0.5 181390|0.5 181391|0.5 181392|0.5 181393|0.5 181394|0.5 181395|0.52778 181396|0.66667 181397|0.66667 181398|0.55556 181399|0.5 181400|0.54167 181401|0.55556 181402|0.5 181403|0.5 181404|0.5 181405|0.5 181406|0.44444 181407|0.5 181408|0.5 181409|0.5 181410|0.5 181411|0.70833 181412|0.5 181413|0.54167 181414|0.5 181415|0.5 181416|0.5 181417|0.5 181418|0.5 181419|0.5 181420|0.41667 181421|0.45833 181422|0.5 181423|0.5 181424|0.56944 181425|0.5 181426|0.44444 181427|0.5 181428|0.5 181429|0.5 181430|0.44444 181431|0.5 181432|0.52778 181433|0.63889 181434|0.41667 181435|0.5 181436|0.51389 181437|0.5 181438|0.54167 181439|0.5 181440|0.5 181441|0.5 181442|0.5 181443|0.55556 181444|0.11111 181445|0.5 181446|0.5 181447|0.5 181448|0.5 181449|0.34722 181450|0.5 181451|0.5 181452|0.43056 181453|0.5 181454|0.5 181455|0.27778 181456|0.26389 181457|0.5 181458|0.5 181459|0.5 181460|0.38889 181461|0.47222 181462|0.36111 181463|0.38889 181464|0.19444 181465|0.5 181466|0.16667 181467|0.36111 181468|0.63889 181469|0.48611 181470|0.61111 181471|0.27778 181472|0.61111 181473|0.27778 181474|0.27778 181475|0.083333 181476|0 181477|0.19444 181478|0.66667 181479|0.5 181480|0.5 181481|0.33333 181482|0.34722 181483|0.44444 181484|0.66667 181485|0.5 181486|0.15278 181487|0.48611 181488|0.11111 181489|0.5 181490|0.56944 181491|0.5 181492|0.5 181493|0.5 181494|0.5 181495|0.5 181496|0.55556 181497|0.375 181498|0.41667 181499|0.43056 181500|0.5 181501|0.51389 181502|0.52778 181503|0.51389 181504|0.36111 181505|0.59722 181506|0.38889 181507|0.47222 181508|0.43056 181509|0.5 181510|0.54167 181511|0.38889 181512|0.56944 181513|0.38889 181514|0.38889 181515|0.38889 181516|0.36111 181517|0.30556 181518|0.19444 181519|0.16667 181520|0.19444 181521|0.18056 181522|0.055556 181523|0.15278 181524|0.13889 181525|0.38889 181526|0.15278 181527|0.027778 181528|0.23611 181529|0.23611 181530|0.52778 181531|0.23611 181532|0.5 181533|0.47222 181534|0.26389 181535|0.41667 181536|0.375 181537|0.83333 181538|0.80556 181539|0.40278 181540|0.61111 181541|0.25 181542|0.27778 181543|0.18056 181544|0.097222 181545|0.15278 181546|0.51389 181547|0.33333 181548|0.375 181549|0.26389 181550|0.34722 181551|0.25 181552|0.19444 181553|0.16667 181554|0.26389 181555|0.51389 181556|0.23611 181557|0.16667 181558|0 181559|0.23611 181560|0.31944 181561|0.20833 181562|0.18056 181563|0.26389 181564|0.15278 181565|0.13889 181566|0.15278 181567|0.125 181568|0.097222 181569|0.44444 181570|0.44444 181571|0.43056 181572|0.38889 181573|0.38889 181574|0.51389 181575|0.38889 181576|0.15278 181577|0.041667 181578|0.375 181579|0.30556 181580|0.083333 181581|0.083333 181582|0.51389 181583|0.61111 181584|0.59722 181585|0.31944 181586|0.45833 181587|0.58333 181588|0.27778 181589|0.45833 181590|0.44444 181591|0.33333 181592|0.36111 181593|0.27778 181594|0.26389 181595|0.48611 181596|0.43056 181597|0.097222 181598|0 181599|0.11111 181600|0.15278 181601|0.43056 181602|0.23611 181603|0.13889 181604|0.30556 181605|0.375 181606|0.083333 181607|0.34722 181608|0.11111 181609|0.23611 181610|0.16667 181611|0.069444 181612|0.125 181613|0.13889 181614|0.22222 181615|0.31944 181616|0.16667 181617|0.375 181618|0.375 181619|0.38889 181620|0.43056 181621|0.22222 181622|0.44444 181623|0.54167 181624|0.36111 181625|0.45833 181626|0.5 181627|0.30556 181628|0.20833 181629|0.22222 181630|0.45833 181631|0.25 181632|0.013889 181633|0.055556 181634|0.29167 181635|0.15278 181636|0.055556 181637|0.16667 181638|0.15278 181639|0.11111 181640|0.15278 181641|0.18056 181642|0.23611 181643|0.18056 181644|0.30556 181645|0.27778 181646|0.36111 181647|0.23611 181648|0.27778 181649|0.20833 181650|0.25 181651|0.625 181652|0.69444 181653|0.48611 181654|0.58333 181655|0.41667 181656|0.375 181657|0.66667 181658|0.55556 181659|0.55556 181660|0.45833 181661|0.56944 181662|0.69444 181663|0.33333 181664|0.66667 181665|0.66667 181666|0.25 181667|0.58333 181668|0.51389 181669|0.59722 181670|0.625 181671|0.54167 181672|0.56944 181673|0.25 181674|0.59722 181675|0.55556 181676|0.625 181677|0.23611 181678|0.20833 181679|0.15278 181680|0.61111 181681|0.65278 181682|0.63889 181683|0.25 181684|0.23611 181685|0.51389 181686|0.41667 181687|0.66667 181688|0.38889 181689|0.77778 181690|0.48611 181691|0.25 181692|0.63889 181693|0.81944 181694|0.41667 181695|0.31944 181696|0.31944 181697|0.29167 181698|0.33333 181699|0.55556 181700|0.55556 181701|0.59722 181702|0.51389 181703|0.68056 181704|0.54167 181705|0.33333 181706|0.13889 181707|0.25 181708|0.25 181709|0.13889 181710|0.54167 181711|0.45833 181712|0.16667 181713|0.16667 181714|0.33333 181715|0.58333 181716|0.33333 181717|0.43056 181718|0.51389 181719|0.70833 181720|0.66667 181721|0.25 181722|0.31944 181723|0.16667 181724|0.097222 181725|0.375 181726|0.38889 181727|0.26389 181728|0.36111 181729|0.30556 181730|0.041667 181731|0.88889 181732|0.22222 181733|0.20833 181734|0.48611 181735|0.19444 181736|0.36111 181737|0.5 181738|0.68056 181739|0.47222 181740|0.44444 181741|0.54167 181742|0.36111 181743|0.26389 181744|0.72222 181745|0.79167 181746|0.54167 181747|0.375 181748|0.26389 181749|0.19444 181750|0.069444 181751|0.43056 181752|0.40278 181753|0.44444 181754|0.33333 181755|0.38889 181756|0.43056 181757|0.36111 181758|0.38889 181759|0.16667 181760|0.13889 181761|0.51389 181762|0.25 181763|0.27778 181764|0.11111 181765|0.30556 181766|0.20833 181767|0.45833 181768|0.22222 181769|0.16667 181770|0.5 181771|0.51389 181772|0.52778 181773|0.36111 181774|0.375 181775|0.44444 181776|0.55556 181777|0.29167 181778|0.5 181779|0.43056 181780|0.27778 181781|0.25 181782|0.55556 181783|0.54167 181784|0.65278 181785|0.65278 181786|0.40278 181787|0.19444 181788|0.19444 181789|0.11111 181790|0.11111 181791|0.61111 181792|0.51389 181793|0.625 181794|0.59722 181795|0.33333 181796|0.43056 181797|0.38889 181798|0.22222 181799|0.19444 181800|0.27778 181801|0.11111 181802|0.13889 181803|0.16667 181804|0.055556 181805|0.097222 181806|0.20833 181807|0.11111 181808|0.31944 181809|0.51389 181810|0.33333 181811|0.41667 181812|0.36111 181813|0.43056 181814|0.23611 181815|0.22222 181816|0.30556 181817|0.29167 181818|0.31944 181819|0.5 181820|0.40278 181821|0.31944 181822|0.25 181823|0.22222 181824|0.27778 181825|0.55556 181826|0.20833 181827|0.23611 181828|0.27778 181829|0.36111 181830|0.26389 181831|0.38889 181832|0.44444 181833|0.30556 181834|0.66667 181835|0.61111 181836|0.61111 181837|0.70833 181838|0.58333 181839|0.52778 181840|0.5 181841|0.27778 181842|0.69444 181843|0.43056 181844|0.30556 181845|0.43056 181846|0.55556 181847|0.30556 181848|0.43056 181849|0.51389 181850|0.44444 181851|0.31944 181852|0.38889 181853|0.48611 181854|0.51389 181855|0.38889 181856|0.23611 181857|0.5 181858|0.11111 181859|0.125 181860|0.33333 181861|0.22222 181862|0.34722 181863|0.20833 181864|0.34722 181865|0.22222 181866|0.25 181867|0.33333 181868|0.40278 181869|0.20833 181870|0.097222 181871|0.43056 181872|0.44444 181873|0.5 181874|0.44444 181875|0.31944 181876|0.375 181877|0.11111 181878|0.33333 181879|0.5 181880|0.5 181881|0.15278 181882|0.66667 181883|0.61111 181884|0.22222 181885|0.18056 181886|0.5 181887|0.54167 181888|0.48611 181889|0.63889 181890|0.44444 181891|0.5 181892|0.48611 181893|0.44444 181894|0.41667 181895|0.48611 181896|0.43056 181897|0.48611 181898|0.66667 181899|0.72222 181900|0.76389 181901|0.23611 181902|0.20833 181903|0.097222 181904|0.18056 181905|0.055556 181906|0.20833 181907|0.18056 181908|0.20833 181909|0.16667 181910|0.27778 181911|0.31944 181912|0.51389 181913|0.5 181914|0.27778 181915|0.33333 181916|0.23611 181917|0.097222 181918|0.41667 181919|0.097222 181920|0.29167 181921|0.5 181922|0.33333 181923|0.31944 181924|0.5 181925|0.30556 181926|0.40278 181927|0.31944 181928|0.23611 181929|0.20833 181930|0.34722 181931|0.48611 181932|0.61111 181933|0.61111 181934|0.625 181935|0.80556 181936|0.69444 181937|0.20833 181938|0.18056 181939|0.52778 181940|0.25 181941|0.22222 181942|0.83333 181943|0.48611 181944|0.27778 181945|0.25 181946|0.44444 181947|0.25 181948|0.5 181949|0.54167 181950|0.069444 181951|0.22222 181952|0.44444 181953|0.33333 181954|0.40278 181955|0.22222 181956|0.22222 181957|0.27778 181958|0.48611 181959|0.18056 181960|0.48611 181961|0.19444 181962|0.51389 181963|0.41667 181964|0.27778 181965|0.43056 181966|0.56944 181967|0.30556 181968|0.29167 181969|0.5 181970|0.43056 181971|0.33333 181972|0.30556 181973|0.61111 181974|0.5 181975|0.76389 181976|0.5 181977|0.33333 181978|0.66667 181979|0.59722 181980|0.33333 181981|0.11111 181982|0.16667 181983|0.34722 181984|0.27778 181985|0.61111 181986|0.66667 181987|0.38889 181988|0.055556 181989|0.16667 181990|0.23611 181991|0.13889 181992|0.25 181993|0.055556 181994|0.11111 181995|0.34722 181996|0.20833 181997|0.375 181998|0.36111 181999|0.36111 182000|0.48611 182001|0.16667 182002|0.29167 182003|0.54167 182004|0.36111 182005|0.26389 182006|0.55556 182007|0.44444 182008|0.38889 182009|0.43056 182010|0.16667 182011|0.43056 182012|0.13889 182013|0.625 182014|0.59722 182015|0.36111 182016|0.20833 182017|0.45833 182018|0.375 182019|0.19444 182020|0.25 182021|0.54167 182022|0.25 182023|0.375 182024|0.75 182025|0.59722 182026|0.083333 182027|0.20833 182028|0.11111 182029|0.375 182030|0.25 182031|0.25 182032|0.5 182033|0.5 182034|0.11111 182035|0.19444 182036|0.375 182037|0.33333 182038|0.22222 182039|0.16667 182040|0.097222 182041|0.16667 182042|0.33333 182043|0.20833 182044|0.55556 182045|0.25 182046|0.23611 182047|0.34722 182048|0.875 182049|0.40278 182050|0.30556 182051|0.5 182052|0.055556 182053|0.18056 182054|0.18056 182055|0.5 182056|0.27778 182057|0.13889 182058|0.20833 182059|0.125 182060|0.33333 182061|0.41667 182062|0.41667 182063|0.29167 182064|0.34722 182065|0.29167 182066|0.055556 182067|0.11111 182068|0.15278 182069|0.083333 182070|0.125 182071|0.51389 182072|0.51389 182073|0.44444 182074|0.5 182075|0.25 182076|0.25 182077|0.11111 182078|0.083333 182079|0.33333 182080|0.40278 182081|0.26389 182082|0.30556 182083|0.41667 182084|0.22222 182085|0.41667 182086|0.27778 182087|0.38889 182088|0.22222 182089|0.22222 182090|0.25 182091|0.51389 182092|0.77778 182093|0.59722 182094|0.69444 182095|0.59722 182096|0.63889 182097|0.48611 182098|0.58333 182099|0.52778 182100|0.54167 182101|0.63889 182102|0.31944 182103|0.36111 182104|0.55556 182105|0.19444 182106|0.30556 182107|0.5 182108|0.20833 182109|0.027778 182110|0.5 182111|0.44444 182112|0.41667 182113|0.45833 182114|0.18056 182115|0.47222 182116|0.38889 182117|0.55556 182118|0.19444 182119|0.69444 182120|0.25 182121|0.18056 182122|0.5 182123|0.27778 182124|0.125 182125|0.13889 182126|0.5 182127|0.48611 182128|0.44444 182129|0.48611 182130|0.47222 182131|0.65278 182132|0.5 182133|0.083333 182134|0.055556 182135|0.19444 182136|0.34722 182137|0.29167 182138|0.5 182139|0.5 182140|0.5 182141|0.5 182142|0.5 182143|0.51389 182144|0.5 182145|0.5 182146|0.5 182147|0.72222 182148|0.48611 182149|0.16667 182150|0.45833 182151|0.51389 182152|0.40278 182153|0.20833 182154|0.61111 182155|0.51389 182156|0.52778 182157|0.77778 182158|0.5 182159|0.56944 182160|0.73611 182161|0.52778 182162|0.15278 182163|0.5 182164|0.5 182165|0.5 182166|0.27778 182167|0.5 182168|0.55556 182169|0.22222 182170|0.48611 182171|0.72222 182172|0.44444 182173|0.48611 182174|0.5 182175|0.5 182176|0.61111 182177|0.45833 182178|0.38889 182179|0.33333 182180|0.68056 182181|0.52778 182182|0.625 182183|0.44444 182184|0.34722 182185|0.44444 182186|0.44444 182187|0.56944 182188|0.36111 182189|0.18056 182190|0.36111 182191|0.61111 182192|0.55556 182193|0.40278 182194|0.61111 182195|0.20833 182196|0.55556 182197|0.40278 182198|0.375 182199|0.22222 182200|0.26389 182201|0.18056 182202|0.125 182203|0.13889 182204|0.72222 182205|0.30556 182206|0.5 182207|0.5 182208|0.66667 182209|0.5 182210|0.44444 182211|0.38889 182212|0.44444 182213|0.27778 182214|0.5 182215|0.55556 182216|0.61111 182217|0.11111 182218|0.56944 182219|0.56944 182220|0.5 182221|0.66667 182222|0.5 182223|0.59722 182224|0.5 182225|0.5 182226|0.13889 182227|0.5 182228|0.5 182229|0.44444 182230|0.5 182231|0.41667 182232|0.23611 182233|0.5 182234|0.5 182235|0.13889 182236|0.40278 182237|0.013889 182238|0.34722 182239|0.51389 182240|0.56944 182241|0.79167 182242|0.25 182243|0.5 182244|0.52778 182245|0.66667 182246|0.38889 182247|0.55556 182248|0.27778 182249|0.52778 182250|0.38889 182251|0.27778 182252|0.375 182253|0.5 182254|0.63889 182255|0.5 182256|0.5 182257|0.66667 182258|0.26389 182259|0.5 182260|0.48611 182261|0.375 182262|0.5 182263|0.56944 182264|0.38889 182265|0.18056 182266|0.16667 182267|0.5 182268|0.5 182269|0.40278 182270|0.5 182271|0.43056 182272|0.34722 182273|0.19444 182274|0.5 182275|0.5 182276|0.40278 182277|0.5 182278|0.70833 182279|0.65278 182280|0.52778 182281|0.26389 182282|0.61111 182283|0.34722 182284|0.23611 182285|0.31944 182286|0.59722 182287|0.375 182288|0.34722 182289|0.33333 182290|0.58333 182291|0.76389 182292|0.25 182293|0.5 182294|0.86111 182295|0.16667 182296|0.5 182297|0.55556 182298|0.51389 182299|0.5 182300|0.66667 182301|0.52778 182302|0.43056 182303|0.44444 182304|0.38889 182305|0.5 182306|0.5 182307|0.61111 182308|0.51389 182309|0.43056 182310|0.31944 182311|0.41667 182312|0.5 182313|0.5 182314|0.5 182315|0.51389 182316|0.5 182317|0.61111 182318|0.47222 182319|0.5 182320|0.58333 182321|0.27778 182322|0.45833 182323|0.69444 182324|0.66667 182325|0.54167 182326|0.58333 182327|0.30556 182328|0.5 182329|0.5 182330|0.5 182331|0.5 182332|0.5 182333|0.5 182334|0.66667 182335|0.36111 182336|0.40278 182337|0.61111 182338|0.59722 182339|0.66667 182340|0.41667 182341|0.43056 182342|0.34722 182343|0.5 182344|0.625 182345|0.65278 182346|0.625 182347|0.52778 182348|0.47222 182349|0.38889 182350|0.5 182351|0.33333 182352|0.47222 182353|0.15278 182354|0.097222 182355|0.47222 182356|0.25 182357|0.69444 182358|0.77778 182359|0.66667 182360|0.52778 182361|0.72222 182362|0.63889 182363|0.15278 182364|0.29167 182365|0.15278 182366|0.125 182367|0.52778 182368|0.55556 182369|0.55556 182370|0.38889 182371|0.30556 182372|0.45833 182373|0.25 182374|0.15278 182375|0.083333 182376|0.125 182377|0.041667 182378|0.30556 182379|0.20833 182380|0.23611 182381|0.27778 182382|0.18056 182383|0.31944 182384|0.18056 182385|0.18056 182386|0.19444 182387|0.25 182388|0.44444 182389|0.36111 182390|0.40278 182391|0.22222 182392|0.69444 182393|0.68056 182394|0.625 182395|0.27778 182396|0.5 182397|0.61111 182398|0.22222 182399|0.51389 182400|0.20833 182401|0.19444 182402|0.083333 182403|0.38889 182404|0.5 182405|0.27778 182406|0 182407|0.25 182408|0.5 182409|0.40278 182410|0.31944 182411|0.11111 182412|0.41667 182413|0.43056 182414|0.125 182415|0.26389 182416|0.26389 182417|0.38889 182418|0.30556 182419|0.30556 182420|0.20833 182421|0.16667 182422|0.055556 182423|0.055556 182424|0.13889 182425|0.23611 182426|0.19444 182427|0.15278 182428|0.55556 182429|0.375 182430|0.54167 182431|0.31944 182432|0.36111 182433|0.34722 182434|0.34722 182435|0.40278 182436|0.33333 182437|0.36111 182438|0.40278 182439|0.055556 182440|0.30556 182441|0.29167 182442|0.19444 182443|0.30556 182444|0.26389 182445|0.30556 182446|0.33333 182447|0.20833 182448|0.18056 182449|0.083333 182450|0.36111 182451|0.041667 182452|0.069444 182453|0.125 182454|0.097222 182455|0.027778 182456|0.19444 182457|0.25 182458|0.80556 182459|0.5 182460|0.44444 182461|0.38889 182462|0.5 182463|0.61111 182464|0.5 182465|0.52778 182466|0.52778 182467|0.61111 182468|0.5 182469|0.55556 182470|0.5 182471|0.5 182472|0.43056 182473|0.5 182474|0.51389 182475|0.38889 182476|0.51389 182477|0.5 182478|0.5 182479|0.48611 182480|0.5 182481|0.5 182482|0.20833 182483|0.083333 182484|0.15278 182485|0.40278 182486|0.097222 182487|0.30556 182488|0.33333 182489|0.055556 182490|0.5 182491|0.625 182492|0.5 182493|0.38889 182494|0.47222 182495|0.81944 182496|0.48611 182497|0.58333 182498|0.63889 182499|0.41667 182500|0.375 182501|0.41667 182502|0.48611 182503|0.5 182504|0.38889 182505|0.23611 182506|0.69444 182507|0.63889 182508|0.36111 182509|0.23611 182510|0.5 182511|0.5 182512|0.23611 182513|0.47222 182514|0.22222 182515|0.16667 182516|0.34722 182517|0.26389 182518|0.25 182519|0.44444 182520|0.083333 182521|0.083333 182522|0.65278 182523|0.38889 182524|0.45833 182525|0.86111 182526|0.18056 182527|0.30556 182528|0.23611 182529|0.19444 182530|0.43056 182531|0.5 182532|0.56944 182533|0.63889 182534|0.47222 182535|0.66667 182536|0.61111 182537|0.375 182538|0.40278 182539|0.38889 182540|0.66667 182541|0.5 182542|0.68056 182543|0.52778 182544|0.44444 182545|0.5 182546|0.375 182547|0.26389 182548|0.55556 182549|0.45833 182550|0.5 182551|0.5 182552|0.36111 182553|0.36111 182554|0.56944 182555|0.16667 182556|0.5 182557|0.40278 182558|0.38889 182559|0.52778 182560|0.5 182561|0.47222 182562|0.5 182563|0.58333 182564|0.5 182565|0.5 182566|0.5 182567|0.5 182568|0.5 182569|0.66667 182570|0.52778 182571|0.41667 182572|0.68056 182573|0.47222 182574|0.40278 182575|0.16667 182576|0.29167 182577|0.26389 182578|0.34722 182579|0.19444 182580|0.5 182581|0.26389 182582|0.5 182583|0.77778 182584|0.44444 182585|0.44444 182586|0.097222 182587|0.11111 182588|0.22222 182589|0.66667 182590|0.34722 182591|0.36111 182592|0.5 182593|0.58333 182594|0.30556 182595|0.40278 182596|0.54167 182597|0.68056 182598|0.625 182599|0.75 182600|0.22222 182601|0.54167 182602|0.18056 182603|0.15278 182604|0.25 182605|0.19444 182606|0.16667 182607|0.20833 182608|0.13889 182609|0.44444 182610|0.20833 182611|0.45833 182612|0.47222 182613|0.5 182614|0.19444 182615|0.33333 182616|0.30556 182617|0.5 182618|0.5 182619|0.5 182620|0.55556 182621|0.33333 182622|0.20833 182623|0.5 182624|0.5 182625|0.29167 182626|0.29167 182627|0.5 182628|0.44444 182629|0.5 182630|0.58333 182631|0.52778 182632|0.27778 182633|0.63889 182634|0.11111 182635|0.055556 182636|0.18056 182637|0.25 182638|0.83333 182639|0.27778 182640|0.22222 182641|0.34722 182642|0.30556 182643|0.25 182644|0.34722 182645|0.11111 182646|0.51389 182647|0.5 182648|0.5 182649|0.23611 182650|0.5 182651|0.40278 182652|0.30556 182653|0.26389 182654|0.22222 182655|0.625 182656|0.25 182657|0.27778 182658|0.29167 182659|0.11111 182660|0.27778 182661|0.16667 182662|0.40278 182663|0.5 182664|0.44444 182665|0.5 182666|0.55556 182667|0.29167 182668|0.5 182669|0.73611 182670|0.25 182671|0.72222 182672|0.43056 182673|0.52778 182674|0.5 182675|0.29167 182676|0.45833 182677|0.5 182678|0.5 182679|0.5 182680|0.5 182681|0.36111 182682|0.73611 182683|0.5 182684|0.083333 182685|0.5 182686|0.47222 182687|0.44444 182688|0.625 182689|0.5 182690|0.5 182691|0.5 182692|0.55556 182693|0.16667 182694|0.44444 182695|0.52778 182696|0.52778 182697|0.5 182698|0.5 182699|0.83333 182700|0.36111 182701|0.22222 182702|0.5 182703|0.61111 182704|0.56944 182705|0.22222 182706|0.52778 182707|0.54167 182708|0.44444 182709|0.48611 182710|0.5 182711|0.5 182712|0.5 182713|0.36111 182714|0.43056 182715|0.5 182716|0.52778 182717|0.5 182718|0.5 182719|0.29167 182720|0.15278 182721|0.5 182722|0.44444 182723|0.19444 182724|0.16667 182725|0.25 182726|0.26389 182727|0.5 182728|0.083333 182729|0.20833 182730|0.45833 182731|0.23611 182732|0.61111 182733|0.16667 182734|0.18056 182735|0.5 182736|0.5 182737|0.48611 182738|0.29167 182739|0.47222 182740|0.55556 182741|0.19444 182742|0.26389 182743|0.20833 182744|0.5 182745|0.25 182746|0.33333 182747|0.27778 182748|0.29167 182749|0.055556 182750|0.30556 182751|0.31944 182752|0.33333 182753|0.5 182754|0.5 182755|0.5 182756|0.86111 182757|0.73611 182758|0.5 182759|0.44444 182760|0.31944 182761|0.5 182762|0.51389 182763|0.19444 182764|0.51389 182765|0.375 182766|0.44444 182767|0.5 182768|0.5 182769|0.5 182770|0.43056 182771|0.5 182772|0.5 182773|0.097222 182774|0.54167 182775|0.22222 182776|0.5 182777|0.52778 182778|0.5 182779|0.58333 182780|0.16667 182781|0.5 182782|0.45833 182783|0.40278 182784|0.5 182785|0.48611 182786|0.5 182787|0.5 182788|0.5 182789|0.5 182790|0.52778 182791|0.26389 182792|0.47222 182793|0.51389 182794|0.5 182795|0.5 182796|0.51389 182797|0.54167 182798|0.5 182799|0.38889 182800|0.5 182801|0.61111 182802|0.16667 182803|0.40278 182804|0.52778 182805|0.5 182806|0.5 182807|0.59722 182808|0.5 182809|0.65278 182810|0.5 182811|0.36111 182812|0.5 182813|0.16667 182814|0.65278 182815|0.41667 182816|0.91667 182817|0.86111 182818|0.58333 182819|0.69444 182820|0.55556 182821|0.34722 182822|0.20833 182823|0.48611 182824|0.58333 182825|0.5 182826|0.56944 182827|0.5 182828|0.40278 182829|0.63889 182830|0.5 182831|0.5 182832|0.45833 182833|0.625 182834|0.52778 182835|0.5 182836|0.25 182837|0.055556 182838|0.63889 182839|0.76389 182840|0.81944 182841|0.34722 182842|0.5 182843|0.77778 182844|0.20833 182845|0.55556 182846|0.22222 182847|0.5 182848|0.5 182849|0.36111 182850|0.44444 182851|0.16667 182852|0.25 182853|0.19444 182854|0.31944 182855|0.5 182856|0.11111 182857|0.31944 182858|0.26389 182859|0.56944 182860|0.5 182861|0.48611 182862|0.43056 182863|0.5 182864|0.5 182865|0.63889 182866|0.69444 182867|0.63889 182868|0.41667 182869|0.27778 182870|0.16667 182871|0.52778 182872|0.5 182873|0.5 182874|0.38889 182875|0.33333 182876|0.38889 182877|0.5 182878|0.38889 182879|0.16667 182880|0.18056 182881|0.5 182882|0.625 182883|0.5 182884|0.58333 182885|0.5 182886|0.58333 182887|0.43056 182888|0.59722 182889|0.55556 182890|0.63889 182891|0.5 182892|0.61111 182893|0.55556 182894|0.48611 182895|0.5 182896|0.72222 182897|0.5 182898|0.43056 182899|0.18056 182900|0.11111 182901|0.5 182902|0.61111 182903|0.48611 182904|0.22222 182905|0.375 182906|0.5 182907|0.51389 182908|0.5 182909|0.5 182910|0.5 182911|0.54167 182912|0.5 182913|0.625 182914|0.5 182915|0.5 182916|0.5 182917|0.33333 182918|0.5 182919|0.5 182920|0.5 182921|0.22222 182922|0.44444 182923|0.5 182924|0.5 182925|0.5 182926|0.5 182927|0.5 182928|0.5 182929|0.43056 182930|0.25 182931|0.34722 182932|0.19444 182933|0.22222 182934|0.70833 182935|0.86111 182936|0.30556 182937|0.5 182938|0.5 182939|0.59722 182940|0.48611 182941|0.48611 182942|0.5 182943|0.5 182944|0.48611 182945|0.47222 182946|0.58333 182947|0.59722 182948|0.5 182949|0.5 182950|0.5 182951|0.5 182952|0.61111 182953|0.66667 182954|0.5 182955|0.56944 182956|0.5 182957|0.45833 182958|0.44444 182959|0.41667 182960|0.125 182961|0.34722 182962|0.36111 182963|0.40278 182964|0.13889 182965|0.65278 182966|0.18056 182967|0.5 182968|0.55556 182969|0.5 182970|0.79167 182971|0.51389 182972|0.36111 182973|0.72222 182974|0.65278 182975|0.5 182976|0.5 182977|0.26389 182978|0.26389 182979|0.30556 182980|0.54167 182981|0.5 182982|0.5 182983|0.38889 182984|0.875 182985|0.65278 182986|0.5 182987|0.51389 182988|0.20833 182989|0.19444 182990|0.45833 182991|0.33333 182992|0.41667 182993|0.44444 182994|0.31944 182995|0.5 182996|0.75 182997|0.44444 182998|0.44444 182999|0.59722 183000|0.56944 183001|0.25 183002|0.23611 183003|0.5 183004|0.5 183005|0.5 183006|0.5 183007|0.5 183008|0.70833 183009|0.5 183010|0.5 183011|0.5 183012|0.5 183013|0.44444 183014|0.26389 183015|0.27778 183016|0.20833 183017|0.5 183018|0.40278 183019|0.19444 183020|0.70833 183021|0.23611 183022|0.75 183023|0.26389 183024|0.5 183025|0.45833 183026|0.5 183027|0.5 183028|0.63889 183029|0.75 183030|0.40278 183031|0.5 183032|0.25 183033|0.5 183034|0.5 183035|0.5 183036|0.22222 183037|0.52778 183038|0.15278 183039|0.055556 183040|0.77778 183041|0.47222 183042|0.30556 183043|0.47222 183044|0.13889 183045|0.75 183046|0.25 183047|0.5 183048|0.58333 183049|0.25 183050|0.5 183051|0.25 183052|0.65278 183053|0.51389 183054|0.51389 183055|0.20833 183056|0.5 183057|0.5 183058|0.54167 183059|0.52778 183060|0.19444 183061|0.44444 183062|0.44444 183063|0.375 183064|0.80556 183065|0.56944 183066|0.5 183067|0.5 183068|0.40278 183069|0.30556 183070|0.54167 183071|0.5 183072|0.26389 183073|0.5 183074|0.5 183075|0.38889 183076|0.27778 183077|0.23611 183078|0.36111 183079|0.30556 183080|0.5 183081|0.55556 183082|0.5 183083|0.56944 183084|0.375 183085|0.5 183086|0.5 183087|0.5 183088|0.5 183089|0.5 183090|0.52778 183091|0.59722 183092|0.38889 183093|0.5 183094|0.5 183095|0.59722 183096|0.54167 183097|0.5 183098|0.66667 183099|0.44444 183100|0.5 183101|0.5 183102|0.54167 183103|0.5 183104|0.5 183105|0.54167 183106|0.51389 183107|0.5 183108|0.5 183109|0.5 183110|0.70833 183111|0.69444 183112|0.38889 183113|0.29167 183114|0.5 183115|0.5 183116|0.34722 183117|0.52778 183118|0.625 183119|0.55556 183120|0.51389 183121|0.44444 183122|0.61111 183123|0.55556 183124|0.5 183125|0.47222 183126|0.5 183127|0.27778 183128|0.48611 183129|0.23611 183130|0.27778 183131|0.27778 183132|0.19444 183133|0.5 183134|0.5 183135|0.5 183136|0.5 183137|0.5 183138|0.52778 183139|0.18056 183140|0.47222 183141|0.18056 183142|0.069444 183143|0.5 183144|0.76389 183145|0.13889 183146|0.27778 183147|0.055556 183148|0.29167 183149|0.30556 183150|0.26389 183151|0.43056 183152|0.5 183153|0.15278 183154|0.33333 183155|0.27778 183156|0.29167 183157|0.15278 183158|0.26389 183159|0.25 183160|0.65278 183161|0.43056 183162|0.58333 183163|0.61111 183164|0.52778 183165|0.5 183166|0.5 183167|0.55556 183168|0.5 183169|0.5 183170|0.51389 183171|0.41667 183172|0.375 183173|0.20833 183174|0.25 183175|0.23611 183176|0.5 183177|0.375 183178|0.11111 183179|0.25 183180|0.33333 183181|0.72222 183182|0.70833 183183|0.51389 183184|0.5 183185|0.88889 183186|0.83333 183187|0.25 183188|0.31944 183189|0.5 183190|0.625 183191|0.44444 183192|0.34722 183193|0.5 183194|0.25 183195|0.11111 183196|0.13889 183197|0.58333 183198|0.43056 183199|0.20833 183200|0.27778 183201|0.25 183202|0.125 183203|0.11111 183204|0.5 183205|0.5 183206|0.61111 183207|0.44444 183208|0.22222 183209|0.25 183210|0.27778 183211|0.34722 183212|0.20833 183213|0.52778 183214|0.5 183215|0.52778 183216|0.66667 183217|0.52778 183218|0.16667 183219|0.19444 183220|0.59722 183221|0.5 183222|0.44444 183223|0.375 183224|0.45833 183225|0.18056 183226|0.55556 183227|0.5 183228|0.5 183229|0.5 183230|0.5 183231|0.58333 183232|0.5 183233|0.54167 183234|0.18056 183235|0.52778 183236|0.097222 183237|0.44444 183238|0.23611 183239|0.5 183240|0.34722 183241|0.38889 183242|0.069444 183243|0.125 183244|0.44444 183245|0.47222 183246|0.5 183247|0.47222 183248|0.34722 183249|0.5 183250|0.5 183251|0.63889 183252|0.44444 183253|0.54167 183254|0.5 183255|0.18056 183256|0.11111 183257|0.5 183258|0.54167 183259|0.5 183260|0.51389 183261|0.5 183262|0.5 183263|0.5 183264|0.52778 183265|0.19444 183266|0.55556 183267|0.65278 183268|0.52778 183269|0.5 183270|0.5 183271|0.625 183272|0.61111 183273|0.5 183274|0.5 183275|0.5 183276|0.5 183277|0.52778 183278|0.5 183279|0.5 183280|0.5 183281|0.5 183282|0.5 183283|0.5 183284|0.5 183285|0.5 183286|0.5 183287|0.61111 183288|0.5 183289|0.5 183290|0.5 183291|0.55556 183292|0.59722 183293|0.52778 183294|0.69444 183295|0.45833 183296|0.38889 183297|0.43056 183298|0.58333 183299|0.5 183300|0.51389 183301|0.5 183302|0.45833 183303|0.47222 183304|0.11111 183305|0.77778 183306|0.56944 183307|0.68056 183308|0.5 183309|0.5 183310|0.38889 183311|0.41667 183312|0.38889 183313|0.5 183314|0.5 183315|0.5 183316|0.59722 183317|0.23611 183318|0.52778 183319|0.125 183320|0.5 183321|0.5 183322|0.5 183323|0.25 183324|0.5 183325|0.5 183326|0.36111 183327|0.41667 183328|0.34722 183329|0.083333 183330|0.66667 183331|0.625 183332|0.72222 183333|0.5 183334|0.80556 183335|0.70833 183336|0.5 183337|0.58333 183338|0.38889 183339|0.66667 183340|0.80556 183341|0.61111 183342|0.27778 183343|0.30556 183344|0.5 183345|0.5 183346|0.19444 183347|0.80556 183348|0.80556 183349|0.33333 183350|0.22222 183351|0.27778 183352|0.23611 183353|0.11111 183354|0.36111 183355|0.15278 183356|0.22222 183357|0.41667 183358|0.083333 183359|0.51389 183360|0.69444 183361|0.19444 183362|0.30556 183363|0.375 183364|0.375 183365|0.44444 183366|0.27778 183367|0.43056 183368|0.38889 183369|0.33333 183370|0.44444 183371|0.15278 183372|0.43056 183373|0.26389 183374|0.31944 183375|0.25 183376|0.45833 183377|0.48611 183378|0.375 183379|0.27778 183380|0.52778 183381|0.25 183382|0.59722 183383|0.22222 183384|0.47222 183385|0.25 183386|0.56944 183387|0.34722 183388|0.51389 183389|0.47222 183390|0.61111 183391|0.29167 183392|0.27778 183393|0.59722 183394|0.54167 183395|0.5 183396|0.5 183397|0.30556 183398|0.56944 183399|0.33333 183400|0.54167 183401|0.20833 183402|0.44444 183403|0.22222 183404|0.38889 183405|0.5 183406|0.68056 183407|0.43056 183408|0.5 183409|0.43056 183410|0.19444 183411|0.375 183412|0.375 183413|0.20833 183414|0.30556 183415|0.5 183416|0.30556 183417|0.23611 183418|0.48611 183419|0.5 183420|0.51389 183421|0.75 183422|0.25 183423|0.5 183424|0.5 183425|0.5 183426|0.31944 183427|0.44444 183428|0.44444 183429|0.76389 183430|0.5 183431|0.5 183432|0.58333 183433|0.25 183434|0.5 183435|0.5 183436|0.5 183437|0.5 183438|0.23611 183439|0.51389 183440|0.65278 183441|0.69444 183442|0.48611 183443|0.19444 183444|0.22222 183445|0.54167 183446|0.33333 183447|0.16667 183448|0.76389 183449|0.72222 183450|0.44444 183451|0.44444 183452|0.44444 183453|0.5 183454|0.48611 183455|0.66667 183456|0.5 183457|0.27778 183458|0.375 183459|0.5 183460|0.23611 183461|0.52778 183462|0.47222 183463|0.51389 183464|0.5 183465|0.45833 183466|0.5 183467|0.52778 183468|0.75 183469|0.47222 183470|0.29167 183471|0.44444 183472|0.59722 183473|0.66667 183474|0.55556 183475|0.38889 183476|0.48611 183477|0.19444 183478|0.29167 183479|0.47222 183480|0.26389 183481|0.083333 183482|0.51389 183483|0.86111 183484|0.75 183485|0.52778 183486|0.75 183487|0.20833 183488|0.375 183489|0.11111 183490|0.5 183491|0.5 183492|0.5 183493|0.56944 183494|0.27778 183495|0.5 183496|0.44444 183497|0.59722 183498|0.20833 183499|0.5 183500|0.23611 183501|0.34722 183502|0.20833 183503|0.16667 183504|0.5 183505|0.16667 183506|0.33333 183507|0.26389 183508|0.125 183509|0.18056 183510|0.66667 183511|0.61111 183512|0.26389 183513|0.63889 183514|0.5 183515|0.66667 183516|0.5 183517|0.5 183518|0.47222 183519|0.11111 183520|0.27778 183521|0.44444 183522|0.27778 183523|0.27778 183524|0.33333 183525|0.58333 183526|0.45833 183527|0.5 183528|0.5 183529|0.59722 183530|0.48611 183531|0.5 183532|0.25 183533|0.44444 183534|0.30556 183535|0.13889 183536|0.23611 183537|0.19444 183538|0.43056 183539|0.31944 183540|0.25 183541|0.15278 183542|0.31944 183543|0.11111 183544|0.19444 183545|0.22222 183546|0.375 183547|0.44444 183548|0.23611 183549|0.27778 183550|0.45833 183551|0.40278 183552|0.30556 183553|0.72222 183554|0.61111 183555|0.33333 183556|0.48611 183557|0.5 183558|0.45833 183559|0.48611 183560|0.55556 183561|0.5 183562|0.5 183563|0.5 183564|0.25 183565|0.16667 183566|0.5 183567|0.25 183568|0.38889 183569|0.27778 183570|0.20833 183571|0.27778 183572|0.5 183573|0.44444 183574|0.375 183575|0.375 183576|0.23611 183577|0.25 183578|0.30556 183579|0.23611 183580|0.20833 183581|0.23611 183582|0.29167 183583|0.29167 183584|0.40278 183585|0.5 183586|0.27778 183587|0.11111 183588|0.29167 183589|0.22222 183590|0.125 183591|0.55556 183592|0.30556 183593|0.19444 183594|0.15278 183595|0.15278 183596|0.20833 183597|0.18056 183598|0.68056 183599|0.73611 183600|0.66667 183601|0.29167 183602|0.20833 183603|0.5 183604|0.52778 183605|0.29167 183606|0.36111 183607|0.56944 183608|0.72222 183609|0.65278 183610|0.65278 183611|0.59722 183612|0.45833 183613|0.27778 183614|0.47222 183615|0.34722 183616|0.33333 183617|0.48611 183618|0.77778 183619|0.55556 183620|0.70833 183621|0.625 183622|0.40278 183623|0.625 183624|0.069444 183625|0.40278 183626|0.5 183627|0.5 183628|0.5 183629|0.5 183630|0.73611 183631|0.5 183632|0.45833 183633|0.63889 183634|0.75 183635|0.44444 183636|0.38889 183637|0.30556 183638|0.5 183639|0.56944 183640|0.5 183641|0.5 183642|0.375 183643|0.5 183644|0.63889 183645|0.097222 183646|0.26389 183647|0.30556 183648|0.5 183649|0.27778 183650|0.26389 183651|0.5 183652|0.5 183653|0.83333 183654|0.55556 183655|0.5 183656|0.5 183657|0.625 183658|0.5 183659|0.16667 183660|0.5 183661|0.5 183662|0.38889 183663|0.61111 183664|0.33333 183665|0.5 183666|0.875 183667|0.59722 183668|0.54167 183669|0.56944 183670|0.56944 183671|0.44444 183672|0.40278 183673|0.5 183674|0.55556 183675|0.5 183676|0.76389 183677|0.77778 183678|0.52778 183679|0.44444 183680|0.375 183681|0.79167 183682|0.61111 183683|0.375 183684|0.63889 183685|0.56944 183686|0.66667 183687|0.48611 183688|0.40278 183689|0.48611 183690|0.45833 183691|0.58333 183692|0.5 183693|0.5 183694|0.40278 183695|0.5 183696|0.48611 183697|0.84722 183698|0.56944 183699|0.20833 183700|0.43056 183701|0.23611 183702|0.23611 183703|0.43056 183704|0.30556 183705|0.75 183706|0.38889 183707|0.61111 183708|0.61111 183709|0.5 183710|0.63889 183711|0.33333 183712|0.22222 183713|0.16667 183714|0.097222 183715|0.5 183716|0.5 183717|0.45833 183718|0.27778 183719|0.54167 183720|0.27778 183721|0.54167 183722|0.47222 183723|0.5 183724|0.5 183725|0.36111 183726|0.5 183727|0.19444 183728|0.31944 183729|0.65278 183730|0.54167 183731|0.55556 183732|0.20833 183733|0.16667 183734|0.56944 183735|0.65278 183736|0.45833 183737|0.36111 183738|0.43056 183739|0.13889 183740|0.34722 183741|0.13889 183742|0.013889 183743|0.55556 183744|0.36111 183745|0.069444 183746|0.43056 183747|0.56944 183748|0.34722 183749|0.58333 183750|0.375 183751|0.36111 183752|0.20833 183753|0.52778 183754|0.125 183755|0.25 183756|0.44444 183757|0.18056 183758|0.52778 183759|0.33333 183760|0.5 183761|0.41667 183762|0.47222 183763|0.29167 183764|0.47222 183765|0.22222 183766|0.125 183767|0.11111 183768|0.5 183769|0.47222 183770|0.5 183771|0.23611 183772|0.20833 183773|0.083333 183774|0.055556 183775|0.52778 183776|0.33333 183777|0.51389 183778|0.36111 183779|0.25 183780|0.22222 183781|0.18056 183782|0.16667 183783|0.11111 183784|0.5 183785|0.5 183786|0.375 183787|0.5 183788|0.51389 183789|0.5 183790|0.47222 183791|0.41667 183792|0.52778 183793|0.34722 183794|0.5 183795|0.5 183796|0.52778 183797|0.5 183798|0.77778 183799|0.76389 183800|0.5 183801|0.56944 183802|0.45833 183803|0.72222 183804|0.22222 183805|0.11111 183806|0.44444 183807|0.52778 183808|0.41667 183809|0.41667 183810|0.22222 183811|0.11111 183812|0.11111 183813|0.11111 183814|0.25 183815|0.5 183816|0.22222 183817|0.15278 183818|0.30556 183819|0.375 183820|0.66667 183821|0.58333 183822|0.68056 183823|0.63889 183824|0.13889 183825|0.40278 183826|0.5 183827|0.5 183828|0.93056 183829|0.5 183830|0.5 183831|0.5 183832|0.23611 183833|0.23611 183834|0.20833 183835|0.11111 183836|0.097222 183837|0.23611 183838|0.38889 183839|0.11111 183840|0.31944 183841|0.33333 183842|0.25 183843|0.45833 183844|0.31944 183845|0.51389 183846|0.5 183847|0.68056 183848|0.47222 183849|0.44444 183850|0.19444 183851|0.27778 183852|0.5 183853|0.5 183854|0.56944 183855|0.66667 183856|0.61111 183857|0.38889 183858|0.47222 183859|0.25 183860|0.47222 183861|0.375 183862|0.44444 183863|0.45833 183864|0.43056 183865|0.75 183866|0.83333 183867|0.66667 183868|0.45833 183869|0.5 183870|0.45833 183871|0.875 183872|0.43056 183873|0.19444 183874|0.33333 183875|0.23611 183876|0.26389 183877|0.22222 183878|0.18056 183879|0.26389 183880|0.13889 183881|0.58333 183882|0.5 183883|0.70833 183884|0.5 183885|0.47222 183886|0.40278 183887|0.47222 183888|0.44444 183889|0.73611 183890|0.54167 183891|0.59722 183892|0.5 183893|0.45833 183894|0.34722 183895|0.55556 183896|0.26389 183897|0.43056 183898|0.055556 183899|0.33333 183900|0.5 183901|0.36111 183902|0.5 183903|0.31944 183904|0.25 183905|0.5 183906|0.19444 183907|0.44444 183908|0.41667 183909|0.34722 183910|0.19444 183911|0.5 183912|0.34722 183913|0.38889 183914|0.73611 183915|0.83333 183916|0.83333 183917|0.75 183918|0.80556 183919|0.58333 183920|0.52778 183921|0.54167 183922|0.13889 183923|0 183924|0.48611 183925|0.52778 183926|0.61111 183927|0.23611 183928|0.40278 183929|0.31944 183930|0.65278 183931|0.5 183932|0.40278 183933|0.18056 183934|0.44444 183935|0.5 183936|0.44444 183937|0.20833 183938|0.52778 183939|0.5 183940|0.30556 183941|0.5 183942|0.5 183943|0.45833 183944|0.33333 183945|0.36111 183946|0.13889 183947|0.22222 183948|0.44444 183949|0.625 183950|0.59722 183951|0.5 183952|0.31944 183953|0.29167 183954|0.5 183955|0.72222 183956|0.36111 183957|0.375 183958|0.23611 183959|0.51389 183960|0.40278 183961|0.20833 183962|0.47222 183963|0.44444 183964|0.23611 183965|0.52778 183966|0.23611 183967|0.61111 183968|0.33333 183969|0.5 183970|0.38889 183971|0.5 183972|0.083333 183973|0.52778 183974|0.097222 183975|0.5 183976|0.40278 183977|0.5 183978|0.5 183979|0.38889 183980|0.47222 183981|0.375 183982|0.18056 183983|0.5 183984|0.26389 183985|0.5 183986|0.16667 183987|0.72222 183988|0.27778 183989|0.48611 183990|0.27778 183991|0.41667 183992|0.47222 183993|0.51389 183994|0.38889 183995|0.52778 183996|0.26389 183997|0.23611 183998|0.44444 183999|0.44444 184000|0.19444 184001|0.58333 184002|0.51389 184003|0.5 184004|0.375 184005|0.375 184006|0.5 184007|0.65278 184008|0.65278 184009|0.61111 184010|0.625 184011|0.54167 184012|0.54167 184013|0.25 184014|0.5 184015|0.5 184016|0.5 184017|0.5 184018|0.54167 184019|0.65278 184020|0.66667 184021|0.52778 184022|0.375 184023|0.43056 184024|0.5 184025|0.51389 184026|0.44444 184027|0.51389 184028|0.5 184029|0.5 184030|0.5 184031|0.5 184032|0.5 184033|0.48611 184034|0.34722 184035|0.29167 184036|0.5 184037|0.5 184038|0.5 184039|0.59722 184040|0.5 184041|0.45833 184042|0.47222 184043|0.5 184044|0.33333 184045|0.5 184046|0.59722 184047|0.5 184048|0.51389 184049|0.5 184050|0.41667 184051|0.56944 184052|0.625 184053|0.31944 184054|0.34722 184055|0.5 184056|0.5 184057|0.65278 184058|0.5 184059|0.51389 184060|0.5 184061|0.38889 184062|0.40278 184063|0.5 184064|0.51389 184065|0.34722 184066|0.22222 184067|0.20833 184068|0.18056 184069|0.52778 184070|0.54167 184071|0.5 184072|0.52778 184073|0.5 184074|0.52778 184075|0.54167 184076|0.34722 184077|0.34722 184078|0.38889 184079|0.097222 184080|0.45833 184081|0.055556 184082|0.055556 184083|0.47222 184084|0.5 184085|0.5 184086|0.5 184087|0.51389 184088|0.41667 184089|0.5 184090|0.16667 184091|0.5 184092|0.5 184093|0.5 184094|0.5 184095|0.5 184096|0.5 184097|0.51389 184098|0.44444 184099|0.22222 184100|0.15278 184101|0.13889 184102|0.083333 184103|0.5 184104|0.73611 184105|0.5 184106|0.375 184107|0.5 184108|0.5 184109|0.5 184110|0.5 184111|0.5 184112|0.5 184113|0.5 184114|0.5 184115|0.23611 184116|0.63889 184117|0.51389 184118|0.36111 184119|0.36111 184120|0.43056 184121|0.38889 184122|0.5 184123|0.5 184124|0.5 184125|0.5 184126|0.55556 184127|0.375 184128|0.55556 184129|0.5 184130|0.5 184131|0.5 184132|0.72222 184133|0.5 184134|0.5 184135|0.36111 184136|0.34722 184137|0.083333 184138|0.69444 184139|0.30556 184140|0.22222 184141|0.5 184142|0.51389 184143|0.5 184144|0.5 184145|0.5 184146|0.5 184147|0.5 184148|0.41667 184149|0.48611 184150|0.26389 184151|0.43056 184152|0.16667 184153|0.23611 184154|0.5 184155|0.5 184156|0.5 184157|0.5 184158|0.5 184159|0.5 184160|0.5 184161|0.63889 184162|0.70833 184163|0.68056 184164|0.34722 184165|0.27778 184166|0.56944 184167|0.5 184168|0.5 184169|0.55556 184170|0.45833 184171|0.22222 184172|0.625 184173|0.5 184174|0.625 184175|0.61111 184176|0.51389 184177|0.51389 184178|0.59722 184179|0.76389 184180|0.54167 184181|0.41667 184182|0.61111 184183|0.15278 184184|0.18056 184185|0.16667 184186|0.11111 184187|0.27778 184188|0.34722 184189|0.76389 184190|0.72222 184191|0.61111 184192|0.61111 184193|0.77778 184194|0.5 184195|0.5 184196|0.5 184197|0.51389 184198|0.5 184199|0.65278 184200|0.625 184201|0.61111 184202|0.55556 184203|0.48611 184204|0.25 184205|0.5 184206|0.5 184207|0.51389 184208|0.30556 184209|0.86111 184210|0.66667 184211|0.23611 184212|0.375 184213|0.34722 184214|0.25 184215|0.45833 184216|0.5 184217|0.52778 184218|0.61111 184219|0.69444 184220|0.5 184221|0.51389 184222|0.55556 184223|0.5 184224|0.5 184225|0.55556 184226|0.65278 184227|0.16667 184228|0.44444 184229|0.52778 184230|0.45833 184231|0.36111 184232|0.30556 184233|0.5 184234|0.88889 184235|0.75 184236|0.27778 184237|0.25 184238|0.125 184239|0.22222 184240|0.27778 184241|0.33333 184242|0.22222 184243|0.26389 184244|0.5 184245|0.65278 184246|0.72222 184247|0.5 184248|0.5 184249|0.5 184250|0.5 184251|0.5 184252|0.5 184253|0.5 184254|0.11111 184255|0.069444 184256|0.61111 184257|0.59722 184258|0.125 184259|0.44444 184260|0.29167 184261|0.5 184262|0.33333 184263|0.25 184264|0.5 184265|0.5 184266|0.51389 184267|0.73611 184268|0.5 184269|0.36111 184270|0.36111 184271|0.44444 184272|0.5 184273|0.47222 184274|0.5 184275|0.5 184276|0.54167 184277|0.66667 184278|0.20833 184279|0.75 184280|0.72222 184281|0.58333 184282|0.65278 184283|0.41667 184284|0.5 184285|0.5 184286|0.5 184287|0 184288|0.5 184289|0.5 184290|0.61111 184291|0.73611 184292|0.5 184293|0.5 184294|0.5 184295|0.5 184296|0.5 184297|0.66667 184298|0.58333 184299|0.29167 184300|0.5 184301|0.48611 184302|0.56944 184303|0.27778 184304|0.29167 184305|0.55556 184306|0.5 184307|0.41667 184308|0.5 184309|0.5 184310|0.5 184311|0.72222 184312|0.5 184313|0.69444 184314|0.44444 184315|0.5 184316|0.5 184317|0.5 184318|0.48611 184319|0.27778 184320|0.36111 184321|0.40278 184322|0.38889 184323|0.31944 184324|0.19444 184325|0.027778 184326|0.29167 184327|0.22222 184328|0.59722 184329|0.22222 184330|0.61111 184331|0.72222 184332|0.47222 184333|0.43056 184334|0.25 184335|0.18056 184336|0.19444 184337|0.44444 184338|0.13889 184339|0.23611 184340|0.40278 184341|0.16667 184342|0.51389 184343|0.16667 184344|0.54167 184345|0.38889 184346|0.36111 184347|0.47222 184348|0.22222 184349|0.22222 184350|0.48611 184351|0.125 184352|0.069444 184353|0.15278 184354|0.59722 184355|0.5 184356|0.5 184357|0.41667 184358|0.34722 184359|0.30556 184360|0.22222 184361|0.54167 184362|0.5 184363|0.51389 184364|0.44444 184365|0.22222 184366|0.5 184367|0.18056 184368|0.5 184369|0.43056 184370|0.30556 184371|0.5 184372|0.40278 184373|0.33333 184374|0.41667 184375|0.11111 184376|0.26389 184377|0.5 184378|0.5 184379|0.5 184380|0.5 184381|0.52778 184382|0.5 184383|0.76389 184384|0.51389 184385|0.38889 184386|0.33333 184387|0.16667 184388|0.5 184389|0.5 184390|0.5 184391|0.45833 184392|0.47222 184393|0.41667 184394|0.5 184395|0.29167 184396|0.55556 184397|0.44444 184398|0.38889 184399|0.72222 184400|0.43056 184401|0.16667 184402|0.083333 184403|0.625 184404|0.18056 184405|0.27778 184406|0.27778 184407|0.47222 184408|0.23611 184409|0.16667 184410|0.20833 184411|0.18056 184412|0.61111 184413|0.66667 184414|0.70833 184415|0.5 184416|0.68056 184417|0.72222 184418|0.66667 184419|0.55556 184420|0.51389 184421|0.38889 184422|0.25 184423|0.125 184424|0.15278 184425|0.30556 184426|0.069444 184427|0.84722 184428|0.59722 184429|0.40278 184430|0.59722 184431|0.5 184432|0.34722 184433|0.30556 184434|0.33333 184435|0.33333 184436|0.55556 184437|0.5 184438|0.70833 184439|0.625 184440|0.83333 184441|0.44444 184442|0.34722 184443|0.33333 184444|0.48611 184445|0.65278 184446|0.55556 184447|0.48611 184448|0.45833 184449|0.51389 184450|0.22222 184451|0.22222 184452|0.51389 184453|0.5 184454|0.38889 184455|0.51389 184456|0.375 184457|0.34722 184458|0.23611 184459|0.41667 184460|0.34722 184461|0.625 184462|0.61111 184463|0.5 184464|0.55556 184465|0.56944 184466|0.5 184467|0.41667 184468|0.52778 184469|0.40278 184470|0.81944 184471|0.81944 184472|0.80556 184473|0.38889 184474|0.5 184475|0.47222 184476|0.52778 184477|0.68056 184478|0.69444 184479|0.59722 184480|0.5 184481|0.5 184482|0.5 184483|0.52778 184484|0.55556 184485|0.36111 184486|0.097222 184487|0.41667 184488|0.41667 184489|0.15278 184490|0.26389 184491|0.5 184492|0.125 184493|0.63889 184494|0.5 184495|0.5 184496|0.61111 184497|0.51389 184498|0.33333 184499|0.5 184500|0.54167 184501|0.5 184502|0.40278 184503|0.18056 184504|0.44444 184505|0.36111 184506|0.44444 184507|0.22222 184508|0.5 184509|0.26389 184510|0.31944 184511|0.16667 184512|0.16667 184513|0.38889 184514|0.23611 184515|0.47222 184516|0.19444 184517|0.15278 184518|0.5 184519|0.54167 184520|0.27778 184521|0.58333 184522|0.59722 184523|0.55556 184524|0.5 184525|0.65278 184526|0.86111 184527|0.5 184528|0.45833 184529|0.5 184530|0.38889 184531|0.5 184532|0.69444 184533|0.5 184534|0.5 184535|0.59722 184536|0.47222 184537|0.52778 184538|0.30556 184539|0.66667 184540|0.38889 184541|0.5 184542|0.44444 184543|0.23611 184544|0.36111 184545|0.15278 184546|0.15278 184547|0.055556 184548|0.11111 184549|0.5 184550|0.5 184551|0.59722 184552|0.069444 184553|0.22222 184554|0.22222 184555|0.125 184556|0.31944 184557|0.65278 184558|0.61111 184559|0.19444 184560|0.38889 184561|0.44444 184562|0.5 184563|0.40278 184564|0.38889 184565|0.625 184566|0.33333 184567|0.40278 184568|0.069444 184569|0.40278 184570|0.26389 184571|0.22222 184572|0.11111 184573|0.48611 184574|0.33333 184575|0.16667 184576|0.097222 184577|0.44444 184578|0.44444 184579|0.375 184580|0.25 184581|0.375 184582|0.30556 184583|0.16667 184584|0.18056 184585|0.069444 184586|0.20833 184587|0.36111 184588|0.36111 184589|0.27778 184590|0.19444 184591|0.23611 184592|0.5 184593|0.19444 184594|0.56944 184595|0.23611 184596|0.52778 184597|0.23611 184598|0.29167 184599|0.41667 184600|0.79167 184601|0.625 184602|0.68056 184603|0.47222 184604|0.45833 184605|0.41667 184606|0.43056 184607|0.34722 184608|0.44444 184609|0.48611 184610|0.19444 184611|0.25 184612|0.31944 184613|0.43056 184614|0.41667 184615|0.40278 184616|0.84722 184617|0.65278 184618|0.65278 184619|0.68056 184620|0.72222 184621|0.26389 184622|0.44444 184623|0.44444 184624|0.44444 184625|0.44444 184626|0.44444 184627|0.33333 184628|0.11111 184629|0.68056 184630|0.5 184631|0.5 184632|0.5 184633|0.16667 184634|0.097222 184635|0.20833 184636|0.33333 184637|0.33333 184638|0.27778 184639|0.16667 184640|0.23611 184641|0.29167 184642|0.23611 184643|0.44444 184644|0.61111 184645|0.34722 184646|0.069444 184647|0.22222 184648|0.29167 184649|0.47222 184650|0.38889 184651|0.055556 184652|0.23611 184653|0.61111 184654|0.25 184655|0.5 184656|0.38889 184657|0.5 184658|0.15278 184659|0.75 184660|0.375 184661|0.16667 184662|0.30556 184663|0.31944 184664|0.15278 184665|0.58333 184666|0.45833 184667|0.11111 184668|0.52778 184669|0.5 184670|0.5 184671|0.5 184672|0.27778 184673|0.29167 184674|0.625 184675|0.23611 184676|0.5 184677|0.27778 184678|0.90278 184679|0.76389 184680|0.79167 184681|0.81944 184682|0.70833 184683|0.69444 184684|0.44444 184685|0.68056 184686|0.19444 184687|0.79167 184688|0.77778 184689|0.70833 184690|0.65278 184691|0.52778 184692|0.38889 184693|0.45833 184694|0.44444 184695|0.25 184696|0.18056 184697|0.15278 184698|0.5 184699|0.72222 184700|0.22222 184701|0.44444 184702|0.36111 184703|0.52778 184704|0.41667 184705|0.84722 184706|0.5 184707|0.25 184708|0.33333 184709|0.34722 184710|0.54167 184711|0.79167 184712|0.36111 184713|0.68056 184714|0.083333 184715|0.40278 184716|0.20833 184717|0.27778 184718|0.5 184719|0.19444 184720|0.54167 184721|0.34722 184722|0.5 184723|0.55556 184724|0.13889 184725|0.34722 184726|0.26389 184727|0.13889 184728|0.20833 184729|0.34722 184730|0.27778 184731|0.375 184732|0.43056 184733|0.58333 184734|0.36111 184735|0.19444 184736|0.41667 184737|0.5 184738|0.625 184739|0.055556 184740|0.069444 184741|0.55556 184742|0.26389 184743|0.22222 184744|0.11111 184745|0.125 184746|0.375 184747|0.16667 184748|0.29167 184749|0.375 184750|0.22222 184751|0.52778 184752|0.51389 184753|0.125 184754|0.5 184755|0.61111 184756|0.5 184757|0.5 184758|0.13889 184759|0.16667 184760|0.625 184761|0.58333 184762|0.73611 184763|0.47222 184764|0.51389 184765|0.44444 184766|0.45833 184767|0.43056 184768|0.33333 184769|0.30556 184770|0.47222 184771|0.5 184772|0.51389 184773|0.23611 184774|0.58333 184775|0.56944 184776|0.29167 184777|0.34722 184778|0.18056 184779|0.55556 184780|0.33333 184781|0.66667 184782|0.33333 184783|0.45833 184784|0.29167 184785|0.375 184786|0.18056 184787|0.16667 184788|0.041667 184789|0.16667 184790|0.76389 184791|0.66667 184792|0.31944 184793|0.34722 184794|0.47222 184795|0.34722 184796|0.52778 184797|0.5 184798|0.63889 184799|0.33333 184800|0.29167 184801|0.30556 184802|0.69444 184803|0.43056 184804|0.43056 184805|0.29167 184806|0.26389 184807|0.083333 184808|0.55556 184809|0.36111 184810|0.11111 184811|0.55556 184812|0.47222 184813|0.18056 184814|0.083333 184815|0.5 184816|0.34722 184817|0.41667 184818|0.18056 184819|0.27778 184820|0.27778 184821|0.59722 184822|0.31944 184823|0.38889 184824|0.097222 184825|0.66667 184826|0.51389 184827|0.5 184828|0.58333 184829|0.069444 184830|0.15278 184831|0.38889 184832|0.16667 184833|0.11111 184834|0.43056 184835|0.27778 184836|0.5 184837|0.52778 184838|0.66667 184839|0.45833 184840|0.29167 184841|0.68056 184842|0.36111 184843|0.15278 184844|0.16667 184845|0.19444 184846|0.51389 184847|0.16667 184848|0.51389 184849|0.27778 184850|0.5 184851|0.26389 184852|0.5 184853|0.27778 184854|0.5 184855|0.56944 184856|0.27778 184857|0.22222 184858|0.27778 184859|0.5 184860|0.5 184861|0.11111 184862|0.44444 184863|0.26389 184864|0.40278 184865|0.5 184866|0.5 184867|0.59722 184868|0.22222 184869|0.20833 184870|0.097222 184871|0.51389 184872|0.45833 184873|0.43056 184874|0.29167 184875|0.31944 184876|0.27778 184877|0.30556 184878|0.069444 184879|0.48611 184880|0.47222 184881|0.30556 184882|0.11111 184883|0.083333 184884|0.44444 184885|0.13889 184886|0.43056 184887|0.75 184888|0.55556 184889|0.48611 184890|0.63889 184891|0.40278 184892|0.5 184893|0.29167 184894|0.52778 184895|0.041667 184896|0.5 184897|0.34722 184898|0.56944 184899|0.5 184900|0.15278 184901|0.5 184902|0.27778 184903|0.63889 184904|0.22222 184905|0.5 184906|0.19444 184907|0.43056 184908|0.31944 184909|0.38889 184910|0.27778 184911|0.11111 184912|0.16667 184913|0.5 184914|0.43056 184915|0.41667 184916|0.63889 184917|0.34722 184918|0.30556 184919|0.44444 184920|0.5 184921|0.55556 184922|0.44444 184923|0.40278 184924|0.375 184925|0.51389 184926|0.19444 184927|0.5 184928|0.375 184929|0.59722 184930|0.58333 184931|0.55556 184932|0.54167 184933|0.33333 184934|0.5 184935|0.54167 184936|0.5 184937|0.5 184938|0.38889 184939|0.61111 184940|0.34722 184941|0.41667 184942|0.54167 184943|0.51389 184944|0.65278 184945|0.61111 184946|0.27778 184947|0.097222 184948|0.47222 184949|0.16667 184950|0.51389 184951|0.23611 184952|0.44444 184953|0.27778 184954|0.68056 184955|0.83333 184956|0.52778 184957|0.61111 184958|0.5 184959|0.68056 184960|0.63889 184961|0.13889 184962|0.19444 184963|0.625 184964|0.5 184965|0.38889 184966|0.65278 184967|0.375 184968|0.38889 184969|0.5 184970|0.44444 184971|0.5 184972|0.5 184973|0.51389 184974|0.44444 184975|0.43056 184976|0.083333 184977|0.125 184978|0.5 184979|0.5 184980|0.72222 184981|0.5 184982|0.44444 184983|0.27778 184984|0.30556 184985|0.41667 184986|0.25 184987|0.44444 184988|0.27778 184989|0.18056 184990|0.11111 184991|0.5 184992|0.54167 184993|0.5 184994|0.18056 184995|0.125 184996|0.22222 184997|0.13889 184998|0.55556 184999|0.15278 185000|0.13889 185001|0.083333 185002|0.61111 185003|0.48611 185004|0.40278 185005|0.30556 185006|0.22222 185007|0.65278 185008|0.94444 185009|0.875 185010|0.72222 185011|0.375 185012|0.625 185013|0.5 185014|0.5 185015|0.055556 185016|0.11111 185017|0.5 185018|0.34722 185019|0.25 185020|0.22222 185021|0.097222 185022|0.25 185023|0.20833 185024|0.375 185025|0.30556 185026|0.79167 185027|0.375 185028|0.22222 185029|0.91667 185030|0.27778 185031|0.40278 185032|0.33333 185033|0.125 185034|0.19444 185035|0.76389 185036|0.125 185037|0.33333 185038|0.30556 185039|0.44444 185040|0.55556 185041|0.51389 185042|0.40278 185043|0.38889 185044|0.31944 185045|0.40278 185046|0.40278 185047|0.77778 185048|0.44444 185049|0.27778 185050|0.36111 185051|0.5 185052|0.125 185053|0.41667 185054|0.27778 185055|0.30556 185056|0.18056 185057|0.18056 185058|0.36111 185059|0.38889 185060|0.36111 185061|0.30556 185062|0.31944 185063|0.22222 185064|0.18056 185065|0.30556 185066|0.22222 185067|0.29167 185068|0.26389 185069|0.13889 185070|0.22222 185071|0.18056 185072|0.72222 185073|0.25 185074|0.5 185075|0.44444 185076|0.72222 185077|0.27778 185078|0.27778 185079|0.41667 185080|0.30556 185081|0.48611 185082|0.5 185083|0.54167 185084|0.45833 185085|0.20833 185086|0.25 185087|0.81944 185088|0.83333 185089|0.72222 185090|0.55556 185091|0.36111 185092|0.041667 185093|0.5 185094|0.40278 185095|0.20833 185096|0.29167 185097|0.375 185098|0.083333 185099|0.375 185100|0.25 185101|0.5 185102|0.13889 185103|0.40278 185104|0.22222 185105|0.083333 185106|0.083333 185107|0.56944 185108|0.36111 185109|0.54167 185110|0.45833 185111|0.75 185112|0.625 185113|0.51389 185114|0.47222 185115|0.48611 185116|0.43056 185117|0.22222 185118|0.20833 185119|0.18056 185120|0.125 185121|0.15278 185122|0.80556 185123|0.75 185124|0.66667 185125|0.58333 185126|0.63889 185127|0.56944 185128|0.19444 185129|0.16667 185130|0.22222 185131|0.13889 185132|0.19444 185133|0.27778 185134|0.68056 185135|0.16667 185136|0.45833 185137|0.13889 185138|0.30556 185139|0.31944 185140|0.29167 185141|0.25 185142|0.23611 185143|0.20833 185144|0.5 185145|0.26389 185146|0.19444 185147|0.22222 185148|0.22222 185149|0.25 185150|0.48611 185151|0.55556 185152|0.55556 185153|0.45833 185154|0.55556 185155|0.61111 185156|0.52778 185157|0.63889 185158|0.48611 185159|0.52778 185160|0.27778 185161|0.5 185162|0.29167 185163|0.30556 185164|0.34722 185165|0.36111 185166|0.45833 185167|0.48611 185168|0.20833 185169|0.20833 185170|0.33333 185171|0.30556 185172|0.33333 185173|0.45833 185174|0.33333 185175|0.34722 185176|0.40278 185177|0.54167 185178|0.61111 185179|0.625 185180|0.36111 185181|0.22222 185182|0.52778 185183|0.47222 185184|0.38889 185185|0.19444 185186|0.41667 185187|0.30556 185188|0.27778 185189|0.22222 185190|0.31944 185191|0.16667 185192|0.61111 185193|0.70833 185194|0.54167 185195|0.31944 185196|0.31944 185197|0.19444 185198|0.27778 185199|0.625 185200|0.375 185201|0.34722 185202|0.54167 185203|0.68056 185204|0.80556 185205|0.84722 185206|0.875 185207|0.52778 185208|0.15278 185209|0.33333 185210|0.26389 185211|0.44444 185212|0.375 185213|0.26389 185214|0.45833 185215|0.38889 185216|0.51389 185217|0.31944 185218|0.23611 185219|0.097222 185220|0.29167 185221|0.61111 185222|0.79167 185223|0.51389 185224|0.51389 185225|0.45833 185226|0.44444 185227|0.97222 185228|0.25 185229|0.88889 185230|0.083333 185231|0.41667 185232|0.40278 185233|0.44444 185234|0.11111 185235|0.29167 185236|0.30556 185237|0.45833 185238|0.16667 185239|0.16667 185240|0.20833 185241|0.27778 185242|0.34722 185243|0.36111 185244|0.44444 185245|0.25 185246|0.19444 185247|0.26389 185248|0.041667 185249|0.13889 185250|0.19444 185251|0.51389 185252|0.38889 185253|0.34722 185254|0.22222 185255|0.48611 185256|0.34722 185257|0.47222 185258|0.23611 185259|0.33333 185260|0.52778 185261|0.47222 185262|0.27778 185263|0.18056 185264|0.25 185265|0.38889 185266|0.48611 185267|0.31944 185268|0.13889 185269|0.027778 185270|0.5 185271|0.26389 185272|0.22222 185273|0.16667 185274|0.26389 185275|0.18056 185276|0.22222 185277|0.44444 185278|0.56944 185279|0.375 185280|0.30556 185281|0.25 185282|0.72222 185283|0.13889 185284|0.375 185285|0.29167 185286|0.44444 185287|0.23611 185288|0.26389 185289|0.75 185290|0.80556 185291|0.5 185292|0.59722 185293|0.5 185294|0.38889 185295|0.125 185296|0.083333 185297|0.13889 185298|0.5 185299|0.29167 185300|0.40278 185301|0.15278 185302|0.20833 185303|0.5 185304|0.31944 185305|0.22222 185306|0.72222 185307|0.69444 185308|0.51389 185309|0.31944 185310|0.33333 185311|0.43056 185312|0.27778 185313|0.125 185314|0.47222 185315|0.44444 185316|0.47222 185317|0.54167 185318|0.23611 185319|0.5 185320|0.33333 185321|0.52778 185322|0.18056 185323|0.125 185324|0.083333 185325|0.375 185326|0.61111 185327|0.33333 185328|0.23611 185329|0.625 185330|0.20833 185331|0.27778 185332|0.22222 185333|0.055556 185334|0.33333 185335|0.43056 185336|0.36111 185337|0.38889 185338|0.34722 185339|0.47222 185340|0.19444 185341|0.68056 185342|0.59722 185343|0.54167 185344|0.56944 185345|0.20833 185346|0.20833 185347|0.51389 185348|0.41667 185349|0.36111 185350|0.38889 185351|0.375 185352|0.29167 185353|0.19444 185354|0.19444 185355|0.125 185356|0.15278 185357|0.13889 185358|0.31944 185359|0.19444 185360|0.31944 185361|0.23611 185362|0.625 185363|0.68056 185364|0.43056 185365|0.43056 185366|0.45833 185367|0.25 185368|0.61111 185369|0.5 185370|0.33333 185371|0.43056 185372|0.5 185373|0.58333 185374|0.72222 185375|0.66667 185376|0.69444 185377|0.79167 185378|0.33333 185379|0.63889 185380|0.29167 185381|0.52778 185382|0.19444 185383|0.27778 185384|0.77778 185385|0.61111 185386|0.30556 185387|0.15278 185388|0.20833 185389|0.68056 185390|0.33333 185391|0.43056 185392|0.31944 185393|0.5 185394|0.51389 185395|0.36111 185396|0.51389 185397|0.77778 185398|0.68056 185399|0.66667 185400|0.33333 185401|0.36111 185402|0.5 185403|0.375 185404|0.40278 185405|0.34722 185406|0.48611 185407|0.56944 185408|0.45833 185409|0.23611 185410|0.5 185411|0.58333 185412|0.79167 185413|0.5 185414|0.63889 185415|0.52778 185416|0.5 185417|0.5 185418|0.61111 185419|0.25 185420|0.5 185421|0.47222 185422|0.5 185423|0.5 185424|0.5 185425|0.5 185426|0.5 185427|0.72222 185428|0.51389 185429|0.54167 185430|0.61111 185431|0.52778 185432|0.5 185433|0.59722 185434|0.55556 185435|0.5 185436|0.33333 185437|0.63889 185438|0.5 185439|0.5 185440|0.52778 185441|0.5 185442|0.44444 185443|0.47222 185444|0.48611 185445|0.5 185446|0.48611 185447|0.58333 185448|0.18056 185449|0.19444 185450|0.31944 185451|0.45833 185452|0.70833 185453|0.25 185454|0.23611 185455|0.375 185456|0.5 185457|0.51389 185458|0.5 185459|0.5 185460|0.51389 185461|0.5 185462|0.36111 185463|0.59722 185464|0.375 185465|0.66667 185466|0.5 185467|0.5 185468|0.5 185469|0.45833 185470|0.59722 185471|0.44444 185472|0.48611 185473|0.34722 185474|0.34722 185475|0.61111 185476|0.44444 185477|0.5 185478|0.5 185479|0.52778 185480|0.5 185481|0.5 185482|0.5 185483|0.29167 185484|0.5 185485|0.5 185486|0.66667 185487|0.5 185488|0.5 185489|0.625 185490|0.5 185491|0.5 185492|0.5 185493|0.55556 185494|0.55556 185495|0.52778 185496|0.45833 185497|0.59722 185498|0.36111 185499|0.5 185500|0.5 185501|0.5 185502|0.5 185503|0.33333 185504|0.40278 185505|0.51389 185506|0.56944 185507|0.5 185508|0.5 185509|0.73611 185510|0.58333 185511|0.52778 185512|0.54167 185513|0.38889 185514|0.58333 185515|0.18056 185516|0.5 185517|0.22222 185518|0.5 185519|0.5 185520|0.44444 185521|0.5 185522|0.59722 185523|0.5 185524|0.58333 185525|0.72222 185526|0.83333 185527|0.72222 185528|0.55556 185529|0.61111 185530|0.5 185531|0.30556 185532|0.59722 185533|0.44444 185534|0.66667 185535|0.76389 185536|0.19444 185537|0.5 185538|0.44444 185539|0.27778 185540|0.59722 185541|0.5 185542|0.31944 185543|0.29167 185544|0.38889 185545|0.15278 185546|0.055556 185547|0.15278 185548|0.77778 185549|0.40278 185550|0.54167 185551|0.26389 185552|0.055556 185553|0.55556 185554|0.44444 185555|0.30556 185556|0.56944 185557|0.66667 185558|0.29167 185559|0.5 185560|0.51389 185561|0.5 185562|0.5 185563|0.55556 185564|0.5 185565|0.5 185566|0.45833 185567|0.5 185568|0.51389 185569|0.38889 185570|0.48611 185571|0.5 185572|0.375 185573|0.30556 185574|0.5 185575|0.5 185576|0.48611 185577|0.5 185578|0.33333 185579|0.5 185580|0.5 185581|0.5 185582|0.5 185583|0.68056 185584|0.22222 185585|0.5 185586|0.22222 185587|0.58333 185588|0.5 185589|0.65278 185590|0.54167 185591|0.73611 185592|0.5 185593|0.5 185594|0.5 185595|0.5 185596|0.5 185597|0.51389 185598|0.5 185599|0.5 185600|0.55556 185601|0.66667 185602|0.5 185603|0.61111 185604|0.5 185605|0.22222 185606|0.5 185607|0.5 185608|0.43056 185609|0.5 185610|0.25 185611|0.51389 185612|0.5 185613|0.54167 185614|0.36111 185615|0.44444 185616|0.5 185617|0.5 185618|0.26389 185619|0.5 185620|0.5 185621|0.5 185622|0.66667 185623|0.44444 185624|0.5 185625|0.19444 185626|0.43056 185627|0.5 185628|0.5 185629|0.22222 185630|0.27778 185631|0.51389 185632|0.26389 185633|0.44444 185634|0.5 185635|0.5 185636|0.5 185637|0.5 185638|0.16667 185639|0.5 185640|0.44444 185641|0.22222 185642|0.27778 185643|0.19444 185644|0.19444 185645|0.5 185646|0.5 185647|0.30556 185648|0.5 185649|0.5 185650|0.54167 185651|0.5 185652|0.66667 185653|0.63889 185654|0.5 185655|0.69444 185656|0.5 185657|0.5 185658|0.5 185659|0.5 185660|0.16667 185661|0.20833 185662|0.26389 185663|0.33333 185664|0.29167 185665|0.33333 185666|0.43056 185667|0.23611 185668|0.18056 185669|0.125 185670|0.29167 185671|0.51389 185672|0.51389 185673|0.58333 185674|0.5 185675|0.5 185676|0.5 185677|0.52778 185678|0.59722 185679|0.72222 185680|0.54167 185681|0.47222 185682|0.43056 185683|0.5 185684|0.5 185685|0.5 185686|0.51389 185687|0.5 185688|0.5 185689|0.5 185690|0.5 185691|0.54167 185692|0.5 185693|0.48611 185694|0.5 185695|0.5 185696|0.31944 185697|0.375 185698|0.29167 185699|0.27778 185700|0.29167 185701|0.125 185702|0.63889 185703|0.31944 185704|0.31944 185705|0.33333 185706|0.125 185707|0.11111 185708|0.5 185709|0.44444 185710|0.27778 185711|0.5 185712|0.5 185713|0.63889 185714|0.5 185715|0.5 185716|0.45833 185717|0.31944 185718|0.5 185719|0.5 185720|0.5 185721|0.5 185722|0.38889 185723|0.51389 185724|0.5 185725|0.65278 185726|0.66667 185727|0.5 185728|0.5 185729|0.625 185730|0.56944 185731|0.34722 185732|0.44444 185733|0.45833 185734|0.44444 185735|0.18056 185736|0.48611 185737|0.34722 185738|0.5 185739|0.34722 185740|0.16667 185741|0.18056 185742|0.47222 185743|0.69444 185744|0.22222 185745|0.44444 185746|0.55556 185747|0.5 185748|0.66667 185749|0.34722 185750|0.31944 185751|0.33333 185752|0.27778 185753|0.25 185754|0.51389 185755|0.27778 185756|0.22222 185757|0.18056 185758|0.33333 185759|0.23611 185760|0.22222 185761|0.26389 185762|0.45833 185763|0.27778 185764|0.33333 185765|0.31944 185766|0.44444 185767|0.20833 185768|0.48611 185769|0.30556 185770|0.375 185771|0.5 185772|0.45833 185773|0.51389 185774|0.5 185775|0.58333 185776|0.125 185777|0.23611 185778|0.25 185779|0.375 185780|0.375 185781|0.34722 185782|0.19444 185783|0.5 185784|0.18056 185785|0.36111 185786|0.31944 185787|0.5 185788|0.69444 185789|0.65278 185790|0.625 185791|0.31944 185792|0.33333 185793|0.41667 185794|0.40278 185795|0.5 185796|0.15278 185797|0.59722 185798|0.47222 185799|0.5 185800|0.27778 185801|0.68056 185802|0.5 185803|0.34722 185804|0.5 185805|0.5 185806|0.55556 185807|0.72222 185808|0.5 185809|0.45833 185810|0.52778 185811|0.61111 185812|0.43056 185813|0.33333 185814|0.055556 185815|0.27778 185816|0.5 185817|0.5 185818|0.45833 185819|0.38889 185820|0.55556 185821|0.47222 185822|0.51389 185823|0.44444 185824|0.48611 185825|0.51389 185826|0.29167 185827|0.30556 185828|0.5 185829|0.5 185830|0.5 185831|0.5 185832|0.68056 185833|0.68056 185834|0.55556 185835|0.36111 185836|0.20833 185837|0.5 185838|0.375 185839|0.38889 185840|0.25 185841|0.45833 185842|0.27778 185843|0.33333 185844|0.52778 185845|0.51389 185846|0.5 185847|0.5 185848|0.41667 185849|0.47222 185850|0.5 185851|0.5 185852|0.5 185853|0.5 185854|0.5 185855|0.375 185856|0.44444 185857|0.16667 185858|0.36111 185859|0.375 185860|0.33333 185861|0.5 185862|0.29167 185863|0.5 185864|0.59722 185865|0.44444 185866|0.38889 185867|0.36111 185868|0.44444 185869|0.23611 185870|0.16667 185871|0.625 185872|0.51389 185873|0.48611 185874|0.33333 185875|0.30556 185876|0.18056 185877|0.375 185878|0.11111 185879|0.5 185880|0.5 185881|0.56944 185882|0.36111 185883|0.36111 185884|0.5 185885|0.61111 185886|0.77778 185887|0.5 185888|0.44444 185889|0.41667 185890|0.66667 185891|0.58333 185892|0.30556 185893|0.36111 185894|0.27778 185895|0.61111 185896|0.77778 185897|0.51389 185898|0.45833 185899|0.40278 185900|0.5 185901|0.5 185902|0.55556 185903|0.47222 185904|0.5 185905|0.5 185906|0.5 185907|0.38889 185908|0.38889 185909|0.13889 185910|0.25 185911|0.75 185912|0.5 185913|0.70833 185914|0.61111 185915|0.84722 185916|0.63889 185917|0.63889 185918|0.27778 185919|0.66667 185920|0.40278 185921|0.48611 185922|0.5 185923|0.5 185924|0.5 185925|0.25 185926|0.66667 185927|0.36111 185928|0.66667 185929|0.5 185930|0.52778 185931|0.15278 185932|0.055556 185933|0.5 185934|0.5 185935|0.41667 185936|0.5 185937|0.52778 185938|0.55556 185939|0.56944 185940|0.5 185941|0.48611 185942|0.47222 185943|0.55556 185944|0.47222 185945|0.33333 185946|0.51389 185947|0.51389 185948|0.56944 185949|0.18056 185950|0.76389 185951|0.66667 185952|0.19444 185953|0.5 185954|0.5 185955|0.55556 185956|0.61111 185957|0.66667 185958|0.33333 185959|0.5 185960|0.5 185961|0.23611 185962|0.11111 185963|0.5 185964|0.43056 185965|0.5 185966|0.055556 185967|0.25 185968|0.40278 185969|0.27778 185970|0.26389 185971|0.375 185972|0.34722 185973|0.5 185974|0.5 185975|0.5 185976|0.5 185977|0.40278 185978|0.5 185979|0.5 185980|0.5 185981|0.23611 185982|0.29167 185983|0.22222 185984|0.22222 185985|0.22222 185986|0.27778 185987|0.30556 185988|0.5 185989|0.5 185990|0.44444 185991|0.31944 185992|0.23611 185993|0.34722 185994|0.41667 185995|0.36111 185996|0.52778 185997|0.55556 185998|0.40278 185999|0.29167 186000|0.38889 186001|0.47222 186002|0.51389 186003|0.5 186004|0.51389 186005|0.56944 186006|0.43056 186007|0.5 186008|0.5 186009|0.68056 186010|0.5 186011|0.55556 186012|0.5 186013|0.5 186014|0.56944 186015|0.5 186016|0.47222 186017|0.5 186018|0.5 186019|0.33333 186020|0.40278 186021|0.5 186022|0.38889 186023|0.5 186024|0.5 186025|0.20833 186026|0.52778 186027|0.31944 186028|0.5 186029|0.5 186030|0.5 186031|0.51389 186032|0.13889 186033|0.5 186034|0.5 186035|0.5 186036|0.26389 186037|0.5 186038|0.63889 186039|0.5 186040|0.5 186041|0.5 186042|0.29167 186043|0.26389 186044|0.27778 186045|0.5 186046|0.55556 186047|0.44444 186048|0.30556 186049|0.5 186050|0.5 186051|0.45833 186052|0.23611 186053|0.041667 186054|0.5 186055|0.5 186056|0.5 186057|0.59722 186058|0.16667 186059|0.5 186060|0.61111 186061|0.5 186062|0.5 186063|0.125 186064|0.20833 186065|0.55556 186066|0.52778 186067|0.41667 186068|0.22222 186069|0.47222 186070|0.51389 186071|0.5 186072|0.5 186073|0.29167 186074|0.29167 186075|0.5 186076|0.5 186077|0.40278 186078|0.75 186079|0.55556 186080|0.72222 186081|0.61111 186082|0.22222 186083|0.36111 186084|0.16667 186085|0.26389 186086|0.34722 186087|0.16667 186088|0.22222 186089|0.52778 186090|0.63889 186091|0.56944 186092|0.40278 186093|0.47222 186094|0.15278 186095|0.43056 186096|0.5 186097|0.40278 186098|0.48611 186099|0.55556 186100|0.68056 186101|0.5 186102|0.5 186103|0.58333 186104|0.55556 186105|0.52778 186106|0.5 186107|0.5 186108|0.54167 186109|0.51389 186110|0.61111 186111|0.51389 186112|0.625 186113|0.5 186114|0.5 186115|0.5 186116|0.5 186117|0.38889 186118|0.47222 186119|0.25 186120|0.5 186121|0.5 186122|0.5 186123|0.5 186124|0.5 186125|0.5 186126|0.5 186127|0.5 186128|0.52778 186129|0.625 186130|0.5 186131|0.61111 186132|0.5 186133|0.59722 186134|0.25 186135|0.73611 186136|0.5 186137|0.55556 186138|0.38889 186139|0.36111 186140|0.5 186141|0.5 186142|0.5 186143|0.5 186144|0.5 186145|0.36111 186146|0.5 186147|0.5 186148|0.5 186149|0.5 186150|0.5 186151|0.51389 186152|0.34722 186153|0.29167 186154|0.26389 186155|0.40278 186156|0.48611 186157|0.36111 186158|0.66667 186159|0.30556 186160|0.59722 186161|0.43056 186162|0.43056 186163|0.013889 186164|0.11111 186165|0.75 186166|0.375 186167|0.19444 186168|0.22222 186169|0.45833 186170|0.27778 186171|0.27778 186172|0.5 186173|0.5 186174|0.45833 186175|0.5 186176|0.625 186177|0.55556 186178|0.48611 186179|0.41667 186180|0.47222 186181|0.13889 186182|0.22222 186183|0.5 186184|0.5 186185|0.45833 186186|0.5 186187|0.45833 186188|0.5 186189|0.16667 186190|0.5 186191|0.5 186192|0.5 186193|0.5 186194|0.41667 186195|0.45833 186196|0.33333 186197|0.27778 186198|0.5 186199|0.097222 186200|0.25 186201|0.5 186202|0.65278 186203|0.54167 186204|0.5 186205|0.23611 186206|0.63889 186207|0.52778 186208|0.51389 186209|0.51389 186210|0.56944 186211|0.66667 186212|0.41667 186213|0.5 186214|0.29167 186215|0.5 186216|0.44444 186217|0.5 186218|0.73611 186219|0.86111 186220|0.73611 186221|0.375 186222|0.48611 186223|0.5 186224|0.5 186225|0.51389 186226|0.5 186227|0.63889 186228|0.5 186229|0.76389 186230|0.52778 186231|0.20833 186232|0.5 186233|0.23611 186234|0.31944 186235|0.33333 186236|0.125 186237|0.31944 186238|0.15278 186239|0.25 186240|0.13889 186241|0.41667 186242|0.51389 186243|0.44444 186244|0.34722 186245|0.72222 186246|0.5 186247|0.36111 186248|0.51389 186249|0.77778 186250|0.73611 186251|0.56944 186252|0.33333 186253|0.44444 186254|0.33333 186255|0.51389 186256|0.5 186257|0.5 186258|0.5 186259|0.40278 186260|0.5 186261|0.18056 186262|0.11111 186263|0.26389 186264|0.23611 186265|0.5 186266|0.34722 186267|0.5 186268|0.5 186269|0.55556 186270|0.48611 186271|0.72222 186272|0.55556 186273|0.41667 186274|0.13889 186275|0.38889 186276|0.48611 186277|0.375 186278|0.5 186279|0.5 186280|0.66667 186281|0.65278 186282|0.48611 186283|0.375 186284|0.40278 186285|0.66667 186286|0.11111 186287|0.5 186288|0.30556 186289|0.33333 186290|0.31944 186291|0.5 186292|0.5 186293|0.52778 186294|0.45833 186295|0.38889 186296|0.31944 186297|0.41667 186298|0.31944 186299|0.11111 186300|0.58333 186301|0.61111 186302|0.47222 186303|0.70833 186304|0.26389 186305|0.23611 186306|0.25 186307|0.73611 186308|0.27778 186309|0.5 186310|0.33333 186311|0.5 186312|0.48611 186313|0.59722 186314|0.5 186315|0.13889 186316|0.18056 186317|0.33333 186318|0.5 186319|0.5 186320|0.23611 186321|0.5 186322|0.61111 186323|0.5 186324|0.5 186325|0.51389 186326|0.51389 186327|0.47222 186328|0.55556 186329|0.66667 186330|0.72222 186331|0.79167 186332|0.5 186333|0.5 186334|0.44444 186335|0.40278 186336|0.5 186337|0.5 186338|0.33333 186339|0.625 186340|0.29167 186341|0.33333 186342|0.23611 186343|0.26389 186344|0.29167 186345|0.5 186346|0.5 186347|0.5 186348|0.5 186349|0.5 186350|0.13889 186351|0.5 186352|0.33333 186353|0.5 186354|0.45833 186355|0.29167 186356|0.52778 186357|0.44444 186358|0.47222 186359|0.75 186360|0.66667 186361|0.38889 186362|0.083333 186363|0.375 186364|0.22222 186365|0.41667 186366|0.15278 186367|0.34722 186368|0.16667 186369|0.33333 186370|0.38889 186371|0.31944 186372|0.23611 186373|0.097222 186374|0.45833 186375|0.20833 186376|0.375 186377|0.51389 186378|0.625 186379|0.43056 186380|0.36111 186381|0.41667 186382|0.16667 186383|0.41667 186384|0.27778 186385|0.5 186386|0.5 186387|0.34722 186388|0.33333 186389|0.36111 186390|0.41667 186391|0.40278 186392|0.27778 186393|0.5 186394|0.55556 186395|0.47222 186396|0.38889 186397|0.29167 186398|0.47222 186399|0.5 186400|0.45833 186401|0.5 186402|0.26389 186403|0.23611 186404|0.19444 186405|0.31944 186406|0.16667 186407|0.16667 186408|0.44444 186409|0.25 186410|0.5 186411|0.52778 186412|0.375 186413|0.40278 186414|0.45833 186415|0.23611 186416|0.26389 186417|0.20833 186418|0.20833 186419|0.055556 186420|0.5 186421|0.5 186422|0.5 186423|0.52778 186424|0.5 186425|0.5 186426|0.27778 186427|0.625 186428|0.51389 186429|0.56944 186430|0.79167 186431|0.58333 186432|0.29167 186433|0.16667 186434|0.5 186435|0.47222 186436|0.55556 186437|0.31944 186438|0.38889 186439|0.34722 186440|0.36111 186441|0.16667 186442|0.23611 186443|0.33333 186444|0.45833 186445|0.38889 186446|0.11111 186447|0.59722 186448|0.5 186449|0.23611 186450|0.33333 186451|0.27778 186452|0.38889 186453|0.11111 186454|0.70833 186455|0.5 186456|0.375 186457|0.54167 186458|0.51389 186459|0.41667 186460|0.22222 186461|0.27778 186462|0.48611 186463|0.5 186464|0.38889 186465|0.125 186466|0.43056 186467|0.27778 186468|0.38889 186469|0.125 186470|0.34722 186471|0.26389 186472|0.27778 186473|0.38889 186474|0.22222 186475|0.33333 186476|0.29167 186477|0.25 186478|0.5 186479|0.20833 186480|0.5 186481|0.5 186482|0.25 186483|0.20833 186484|0.16667 186485|0.5 186486|0.75 186487|0.25 186488|0.41667 186489|0.5 186490|0.5 186491|0.5 186492|0.52778 186493|0.44444 186494|0.5 186495|0.69444 186496|0.58333 186497|0.43056 186498|0.027778 186499|0.069444 186500|0.5 186501|0.22222 186502|0.5 186503|0.5 186504|0.52778 186505|0.44444 186506|0.52778 186507|0.51389 186508|0.48611 186509|0.11111 186510|0.5 186511|0.22222 186512|0.5 186513|0.72222 186514|0.11111 186515|0.5 186516|0.5 186517|0.29167 186518|0.5 186519|0.5 186520|0.5 186521|0.61111 186522|0.43056 186523|0.45833 186524|0.34722 186525|0.5 186526|0.31944 186527|0.40278 186528|0.52778 186529|0.33333 186530|0.27778 186531|0.15278 186532|0.66667 186533|0.47222 186534|0.47222 186535|0.31944 186536|0.38889 186537|0.22222 186538|0.44444 186539|0.47222 186540|0.19444 186541|0.59722 186542|0.63889 186543|0.83333 186544|0.44444 186545|0.13889 186546|0.43056 186547|0.34722 186548|0.36111 186549|0.36111 186550|0.26389 186551|0.44444 186552|0.58333 186553|0.38889 186554|0.22222 186555|0.81944 186556|0.93056 186557|0.18056 186558|0.20833 186559|0.48611 186560|0.16667 186561|0.097222 186562|0.29167 186563|0.25 186564|0.055556 186565|0.29167 186566|0.013889 186567|0.23611 186568|0.069444 186569|0.43056 186570|0 186571|0.63889 186572|0.5 186573|0.19444 186574|0.22222 186575|0.47222 186576|0.23611 186577|0.36111 186578|0.29167 186579|0.80556 186580|0.81944 186581|0.5 186582|0.44444 186583|0.44444 186584|0.625 186585|0.52778 186586|0.33333 186587|0.15278 186588|0.55556 186589|0.61111 186590|0.61111 186591|0.70833 186592|0.51389 186593|0.16667 186594|0.16667 186595|0.5 186596|0.34722 186597|0.30556 186598|0.5 186599|0.19444 186600|0.45833 186601|0.61111 186602|0.33333 186603|0.5 186604|0.47222 186605|0.19444 186606|0.5 186607|0.66667 186608|0.5 186609|0.58333 186610|0.5 186611|0.5 186612|0.48611 186613|0.5 186614|0.26389 186615|0.5 186616|0.5 186617|0.52778 186618|0.5 186619|0.36111 186620|0.56944 186621|0.88889 186622|0.26389 186623|0.66667 186624|0.5 186625|0.48611 186626|0.52778 186627|0.47222 186628|0.23611 186629|0.18056 186630|0.5 186631|0.55556 186632|0.23611 186633|0.34722 186634|0.44444 186635|0.36111 186636|0.26389 186637|0.31944 186638|0.19444 186639|0.5 186640|0.5 186641|0.22222 186642|0.11111 186643|0.5 186644|0.5 186645|0.625 186646|0.55556 186647|0.5 186648|0.48611 186649|0.5 186650|0.5 186651|0.5 186652|0.44444 186653|0.31944 186654|0.69444 186655|0.73611 186656|0.40278 186657|0.55556 186658|0.375 186659|0.5 186660|0.48611 186661|0.5 186662|0.18056 186663|0.15278 186664|0.5 186665|0.48611 186666|0.5 186667|0.58333 186668|0.30556 186669|0.5 186670|0.27778 186671|0.625 186672|0.27778 186673|0.54167 186674|0.47222 186675|0.66667 186676|0.68056 186677|0.56944 186678|0.47222 186679|0.31944 186680|0.5 186681|0.22222 186682|0.5 186683|0.43056 186684|0.5 186685|0.44444 186686|0.34722 186687|0.375 186688|0.5 186689|0.5 186690|0.69444 186691|0.79167 186692|0.41667 186693|0.51389 186694|0.33333 186695|0.51389 186696|0.5 186697|0.5 186698|0.65278 186699|0.5 186700|0.51389 186701|0.5 186702|0.33333 186703|0.5 186704|0.54167 186705|0.51389 186706|0.11111 186707|0.43056 186708|0.47222 186709|0.26389 186710|0.41667 186711|0.40278 186712|0.51389 186713|0.27778 186714|0.36111 186715|0.5 186716|0.5 186717|0.41667 186718|0.45833 186719|0.56944 186720|0.5 186721|0.5 186722|0.5 186723|0.63889 186724|0.45833 186725|0.5 186726|0.5 186727|0.51389 186728|0.5 186729|0.25 186730|0.5 186731|0.5 186732|0.5 186733|0.5 186734|0.51389 186735|0.5 186736|0.5 186737|0.34722 186738|0.51389 186739|0.43056 186740|0.25 186741|0.25 186742|0.58333 186743|0.069444 186744|0.5 186745|0.61111 186746|0.5 186747|0.5 186748|0.58333 186749|0.31944 186750|0.30556 186751|0.59722 186752|0.33333 186753|0.54167 186754|0.58333 186755|0.27778 186756|0.375 186757|0.19444 186758|0.27778 186759|0.41667 186760|0.65278 186761|0.5 186762|0.29167 186763|0.43056 186764|0.23611 186765|0.22222 186766|0.33333 186767|0.51389 186768|0.22222 186769|0.097222 186770|0.52778 186771|0.54167 186772|0.38889 186773|0.38889 186774|0.52778 186775|0.66667 186776|0.56944 186777|0.18056 186778|0.16667 186779|0.055556 186780|0.20833 186781|0.27778 186782|0.375 186783|0.16667 186784|0.5 186785|0.52778 186786|0.52778 186787|0.5 186788|0.29167 186789|0.5 186790|0.75 186791|0.55556 186792|0.41667 186793|0.5 186794|0.5 186795|0.5 186796|0.40278 186797|0.51389 186798|0.5 186799|0.29167 186800|0.23611 186801|0.30556 186802|0.5 186803|0.5 186804|0.44444 186805|0.5 186806|0.26389 186807|0.25 186808|0.5 186809|0.5 186810|0.66667 186811|0.5 186812|0.48611 186813|0.5 186814|0.625 186815|0.375 186816|0.22222 186817|0.51389 186818|0.45833 186819|0.16667 186820|0.5 186821|0.5 186822|0.5 186823|0.47222 186824|0.44444 186825|0.51389 186826|0.59722 186827|0.52778 186828|0.26389 186829|0.20833 186830|0.22222 186831|0.59722 186832|0.625 186833|0.5 186834|0.61111 186835|0.55556 186836|0.55556 186837|0.5 186838|0.48611 186839|0.83333 186840|0.5 186841|0.5 186842|0.5 186843|0.51389 186844|0.65278 186845|0.5 186846|0.52778 186847|0.61111 186848|0.61111 186849|0.5 186850|0.33333 186851|0.19444 186852|0.19444 186853|0.18056 186854|0.33333 186855|0.33333 186856|0.5 186857|0.5 186858|0.45833 186859|0.5 186860|0.5 186861|0.27778 186862|0.625 186863|0.56944 186864|0.5 186865|0.40278 186866|0.41667 186867|0.26389 186868|0.36111 186869|0.36111 186870|0.76389 186871|0.58333 186872|0.5 186873|0.625 186874|0.40278 186875|0.20833 186876|0.36111 186877|0.41667 186878|0.30556 186879|0.5 186880|0.5 186881|0.51389 186882|0.41667 186883|0.38889 186884|0.375 186885|0.22222 186886|0.16667 186887|0.31944 186888|0.18056 186889|0.125 186890|0.38889 186891|0.5 186892|0.25 186893|0.48611 186894|0.375 186895|0.51389 186896|0.29167 186897|0.15278 186898|0.5 186899|0.33333 186900|0.13889 186901|0.58333 186902|0.55556 186903|0.51389 186904|0.25 186905|0.27778 186906|0.29167 186907|0.13889 186908|0.20833 186909|0.38889 186910|0.20833 186911|0.41667 186912|0.55556 186913|0.58333 186914|0.36111 186915|0.48611 186916|0.5 186917|0.66667 186918|0.65278 186919|0.36111 186920|0.375 186921|0.23611 186922|0.38889 186923|0.58333 186924|0.5 186925|0.44444 186926|0.59722 186927|0.5 186928|0.5 186929|0.5 186930|0.5 186931|0.5 186932|0.5 186933|0.75 186934|0.69444 186935|0.56944 186936|0.22222 186937|0.44444 186938|0.5 186939|0.5 186940|0.58333 186941|0.72222 186942|0.75 186943|0.45833 186944|0.27778 186945|0.52778 186946|0.5 186947|0.5 186948|0.5 186949|0.5 186950|0.43056 186951|0.44444 186952|0.54167 186953|0.36111 186954|0.38889 186955|0.22222 186956|0.40278 186957|0.52778 186958|0.56944 186959|0.47222 186960|0.5 186961|0.5 186962|0.5 186963|0.5 186964|0.34722 186965|0.18056 186966|0.5 186967|0.5 186968|0.5 186969|0.55556 186970|0.33333 186971|0.5 186972|0.5 186973|0.5 186974|0.51389 186975|0.5 186976|0.56944 186977|0.51389 186978|0.51389 186979|0.52778 186980|0.5 186981|0.55556 186982|0.5 186983|0.5 186984|0.5 186985|0.5 186986|0.5 186987|0.55556 186988|0.61111 186989|0.58333 186990|0.34722 186991|0.5 186992|0.47222 186993|0.30556 186994|0.27778 186995|0.34722 186996|0.5 186997|0.5 186998|0.36111 186999|0.52778 187000|0.56944 187001|0.63889 187002|0.5 187003|0.5 187004|0.31944 187005|0.45833 187006|0.65278 187007|0.55556 187008|0.36111 187009|0.52778 187010|0.5 187011|0.18056 187012|0.52778 187013|0.375 187014|0.30556 187015|0.20833 187016|0.55556 187017|0.58333 187018|0.52778 187019|0.51389 187020|0.29167 187021|0.5 187022|0.48611 187023|0.5 187024|0.38889 187025|0.20833 187026|0.25 187027|0.44444 187028|0.44444 187029|0.5 187030|0.51389 187031|0.5 187032|0.27778 187033|0.375 187034|0.47222 187035|0.47222 187036|0.38889 187037|0.27778 187038|0.5 187039|0.26389 187040|0.5 187041|0.51389 187042|0.5 187043|0.81944 187044|0.5 187045|0.5 187046|0.5 187047|0.5 187048|0.5 187049|0.5 187050|0.5 187051|0.16667 187052|0.16667 187053|0.29167 187054|0.25 187055|0.22222 187056|0.5 187057|0.52778 187058|0.5 187059|0.5 187060|0.11111 187061|0.30556 187062|0.44444 187063|0.625 187064|0.23611 187065|0.23611 187066|0.33333 187067|0.47222 187068|0.48611 187069|0.59722 187070|0.625 187071|0.79167 187072|0.375 187073|0.16667 187074|0.31944 187075|0.27778 187076|0.55556 187077|0.52778 187078|0.44444 187079|0.5 187080|0.5 187081|0.44444 187082|0.48611 187083|0.52778 187084|0.55556 187085|0.23611 187086|0.44444 187087|0.29167 187088|0.26389 187089|0.58333 187090|0.27778 187091|0.79167 187092|0.80556 187093|0.68056 187094|0.22222 187095|0.23611 187096|0.81944 187097|0.68056 187098|0.51389 187099|0.5 187100|0.69444 187101|0.69444 187102|0.68056 187103|0.68056 187104|0.5 187105|0.58333 187106|0.5 187107|0.22222 187108|0.29167 187109|0.23611 187110|0.23611 187111|0.22222 187112|0.5 187113|0.5 187114|0.055556 187115|0.51389 187116|0.44444 187117|0.59722 187118|0.5 187119|0.5 187120|0.5 187121|0.27778 187122|0.38889 187123|0.5 187124|0.66667 187125|0.5 187126|0.5 187127|0.5 187128|0.5 187129|0.29167 187130|0.44444 187131|0.29167 187132|0.66667 187133|0.41667 187134|0.36111 187135|0.61111 187136|0.5 187137|0.5 187138|0.875 187139|0.5 187140|0.36111 187141|0.5 187142|0.63889 187143|0.38889 187144|0.5 187145|0.5 187146|0.45833 187147|0.5 187148|0.31944 187149|0.625 187150|0.5 187151|0.5 187152|0.38889 187153|0.5 187154|0.27778 187155|0.5 187156|0.38889 187157|0.29167 187158|0.5 187159|0.5 187160|0.5 187161|0.5 187162|0.5 187163|0.81944 187164|0.77778 187165|0.75 187166|0.61111 187167|0.51389 187168|0.66667 187169|0.68056 187170|0.5 187171|0.5 187172|0.66667 187173|0.47222 187174|0.19444 187175|0.5 187176|0.25 187177|0.5 187178|0.5 187179|0.31944 187180|0.63889 187181|0.61111 187182|0.34722 187183|0.16667 187184|0.11111 187185|0.20833 187186|0.51389 187187|0.22222 187188|0.33333 187189|0.29167 187190|0.097222 187191|0.29167 187192|0.30556 187193|0.30556 187194|0.5 187195|0.59722 187196|0.5 187197|0.5 187198|0.5 187199|0.5 187200|0.48611 187201|0.625 187202|0.48611 187203|0.5 187204|0.33333 187205|0.59722 187206|0.31944 187207|0.34722 187208|0.43056 187209|0.45833 187210|0.44444 187211|0.5 187212|0.34722 187213|0.27778 187214|0.38889 187215|0.5 187216|0.5 187217|0.55556 187218|0.59722 187219|0.5 187220|0.38889 187221|0.5 187222|0.5 187223|0.5 187224|0.30556 187225|0.5 187226|0.5 187227|0.40278 187228|0.5 187229|0.625 187230|0.58333 187231|0.27778 187232|0.11111 187233|0.22222 187234|0.23611 187235|0.625 187236|0.79167 187237|0.56944 187238|0.66667 187239|0.58333 187240|0.5 187241|0.5 187242|0.5 187243|0.16667 187244|0.58333 187245|0.59722 187246|0.5 187247|0.5 187248|0.56944 187249|0.41667 187250|0.5 187251|0.5 187252|0.5 187253|0.5 187254|0.5 187255|0.5 187256|0.5 187257|0.38889 187258|0.19444 187259|0.34722 187260|0.13889 187261|0.15278 187262|0.68056 187263|0.5 187264|0.5 187265|0.5 187266|0.22222 187267|0.48611 187268|0.27778 187269|0.61111 187270|0.44444 187271|0.5 187272|0.55556 187273|0.5 187274|0.75 187275|0.63889 187276|0.31944 187277|0.31944 187278|0.22222 187279|0.61111 187280|0.33333 187281|0.38889 187282|0.44444 187283|0.52778 187284|0.54167 187285|0.26389 187286|0.26389 187287|0.5 187288|0.5 187289|0.36111 187290|0.5 187291|0.5 187292|0.5 187293|0.47222 187294|0.5 187295|0.5 187296|0.56944 187297|0.38889 187298|0.41667 187299|0.20833 187300|0.44444 187301|0.5 187302|0.5 187303|0.22222 187304|0.5 187305|0.5 187306|0.44444 187307|0.5 187308|0.23611 187309|0.68056 187310|0.5 187311|0.55556 187312|0.61111 187313|0.51389 187314|0.40278 187315|0.54167 187316|0.5 187317|0.5 187318|0.33333 187319|0.23611 187320|0.22222 187321|0.43056 187322|0.083333 187323|0.79167 187324|0.65278 187325|0.45833 187326|0.16667 187327|0.013889 187328|0.027778 187329|0.027778 187330|0.44444 187331|0.38889 187332|0.16667 187333|0.125 187334|0.34722 187335|0.38889 187336|0.23611 187337|0.16667 187338|0.18056 187339|0.47222 187340|0.45833 187341|0.44444 187342|0.48611 187343|0.20833 187344|0.25 187345|0.22222 187346|0.33333 187347|0.041667 187348|0 187349|0.29167 187350|0.083333 187351|0.54167 187352|0.44444 187353|0.38889 187354|0.5 187355|0.55556 187356|0.61111 187357|0.19444 187358|0.54167 187359|0.54167 187360|0.5 187361|0.5 187362|0.5 187363|0.5 187364|0.40278 187365|0.73611 187366|0.5 187367|0.375 187368|0.33333 187369|0.055556 187370|0.25 187371|0.097222 187372|0.45833 187373|0.5 187374|0.33333 187375|0.41667 187376|0.5 187377|0.30556 187378|0.5 187379|0.68056 187380|0.375 187381|0.26389 187382|0.11111 187383|0.22222 187384|0.20833 187385|0.16667 187386|0.31944 187387|0.25 187388|0.29167 187389|0.34722 187390|0.33333 187391|0.11111 187392|0.027778 187393|0.31944 187394|0.29167 187395|0.30556 187396|0.40278 187397|0.22222 187398|0.44444 187399|0.5 187400|0.38889 187401|0.5 187402|0.25 187403|0.27778 187404|0.5 187405|0.61111 187406|0.5 187407|0.58333 187408|0.52778 187409|0.27778 187410|0.45833 187411|0.43056 187412|0.31944 187413|0.31944 187414|0.31944 187415|0.34722 187416|0.65278 187417|0.38889 187418|0.31944 187419|0.68056 187420|0.5 187421|0.27778 187422|0.5 187423|0.55556 187424|0.54167 187425|0.31944 187426|0.16667 187427|0.11111 187428|0.40278 187429|0.72222 187430|0.52778 187431|0.16667 187432|0.44444 187433|0.38889 187434|0.5 187435|0.44444 187436|0.26389 187437|0.083333 187438|0.83333 187439|0.40278 187440|0.51389 187441|0.43056 187442|0.45833 187443|0.22222 187444|0.36111 187445|0.59722 187446|0.43056 187447|0.65278 187448|0.38889 187449|0.27778 187450|0.15278 187451|0.5 187452|0.29167 187453|0.26389 187454|0.29167 187455|0.33333 187456|0.30556 187457|0.5 187458|0.5 187459|0.48611 187460|0.55556 187461|0.5 187462|0.63889 187463|0.58333 187464|0.45833 187465|0.40278 187466|0.48611 187467|0.19444 187468|0.34722 187469|0.44444 187470|0.25 187471|0.11111 187472|0.36111 187473|0.5 187474|0.22222 187475|0.44444 187476|0.27778 187477|0.26389 187478|0.27778 187479|0.125 187480|0.25 187481|0.22222 187482|0.18056 187483|0.083333 187484|0.41667 187485|0.055556 187486|0.5 187487|0.66667 187488|0.5 187489|0.5 187490|0.5 187491|0.5 187492|0.23611 187493|0.5 187494|0.5 187495|0.52778 187496|0.44444 187497|0.5 187498|0.5 187499|0.30556 187500|0.94444 187501|0.77778 187502|0.70833 187503|0.84722 187504|0.72222 187505|0.79167 187506|0.58333 187507|0.79167 187508|0.93056 187509|0.5 187510|0.375 187511|0.27778 187512|0.26389 187513|0.29167 187514|0.125 187515|0.5 187516|0.51389 187517|0.41667 187518|0.30556 187519|0.41667 187520|0.5 187521|0.5 187522|0.20833 187523|0.375 187524|0.25 187525|0.31944 187526|0.375 187527|0.36111 187528|0.27778 187529|0.11111 187530|0.375 187531|0.58333 187532|0.5 187533|0.36111 187534|0.61111 187535|0.30556 187536|0.27778 187537|0.61111 187538|0.76389 187539|0.72222 187540|0.52778 187541|0.72222 187542|0.41667 187543|0.30556 187544|0.31944 187545|0.45833 187546|0.54167 187547|0.013889 187548|0.63889 187549|0.22222 187550|0.19444 187551|0.36111 187552|0.5 187553|0.22222 187554|0.33333 187555|0.44444 187556|0.48611 187557|0.069444 187558|0.43056 187559|0.16667 187560|0.069444 187561|0.5 187562|0.5 187563|0.33333 187564|0.36111 187565|0.44444 187566|0.44444 187567|0.66667 187568|0.5 187569|0.22222 187570|0.5 187571|0.5 187572|0.25 187573|0.5 187574|0.5 187575|0.23611 187576|0.25 187577|0.56944 187578|0.55556 187579|0.26389 187580|0.72222 187581|0.375 187582|0.625 187583|0.5 187584|0.47222 187585|0.31944 187586|0.43056 187587|0.44444 187588|0.5 187589|0.5 187590|0.26389 187591|0.5 187592|0.26389 187593|0.48611 187594|0.5 187595|0.55556 187596|0.30556 187597|0.25 187598|0.51389 187599|0.875 187600|0.66667 187601|0.5 187602|0.55556 187603|0.26389 187604|0.15278 187605|0 187606|0.027778 187607|0.069444 187608|0.055556 187609|0.83333 187610|0.47222 187611|0.25 187612|0.47222 187613|0.45833 187614|0.45833 187615|0.43056 187616|0.30556 187617|0.36111 187618|0.29167 187619|0.25 187620|0.34722 187621|0.23611 187622|0.40278 187623|0.16667 187624|0.23611 187625|0.23611 187626|0.29167 187627|0.13889 187628|0.45833 187629|0.41667 187630|0.61111 187631|0.25 187632|0.30556 187633|0.16667 187634|0.20833 187635|0.30556 187636|0.5 187637|0.18056 187638|0.5 187639|0.51389 187640|0.27778 187641|0.36111 187642|0.29167 187643|0.22222 187644|0.31944 187645|0.48611 187646|0.69444 187647|0.30556 187648|0.65278 187649|0.18056 187650|0.52778 187651|0.66667 187652|0.5 187653|0.51389 187654|0.5 187655|0.44444 187656|0.18056 187657|0.56944 187658|0.44444 187659|0.54167 187660|0.5 187661|0.5 187662|0.5 187663|0.65278 187664|0.51389 187665|0.48611 187666|0.63889 187667|0.51389 187668|0.45833 187669|0.36111 187670|0.31944 187671|0.31944 187672|0.5 187673|0.5 187674|0.25 187675|0.26389 187676|0.22222 187677|0.73611 187678|0.5 187679|0.30556 187680|0.61111 187681|0.5 187682|0.56944 187683|0.16667 187684|0.31944 187685|0.51389 187686|0.5 187687|0.5 187688|0.5 187689|0.5 187690|0.5 187691|0.75 187692|0.76389 187693|0.61111 187694|0.34722 187695|0.19444 187696|0.5 187697|0.34722 187698|0.38889 187699|0.22222 187700|0.5 187701|0.36111 187702|0.22222 187703|0.5 187704|0.66667 187705|0.625 187706|0.11111 187707|0.33333 187708|0.31944 187709|0.26389 187710|0.5 187711|0.47222 187712|0.45833 187713|0.5 187714|0.69444 187715|0.5 187716|0.27778 187717|0.41667 187718|0.5 187719|0.34722 187720|0.44444 187721|0.34722 187722|0.63889 187723|0.19444 187724|0.027778 187725|0.13889 187726|0.26389 187727|0.5 187728|0.51389 187729|0.5 187730|0.5 187731|0.27778 187732|0.44444 187733|0.29167 187734|0.23611 187735|0.40278 187736|0.5 187737|0.31944 187738|0.51389 187739|0.19444 187740|0.069444 187741|0.48611 187742|0.56944 187743|0.61111 187744|0.45833 187745|0.16667 187746|0.41667 187747|0.5 187748|0.54167 187749|0.5 187750|0.5 187751|0.38889 187752|0.30556 187753|0.5 187754|0.5 187755|0.55556 187756|0.5 187757|0.51389 187758|0.5 187759|0.625 187760|0.54167 187761|0.61111 187762|0.31944 187763|0.63889 187764|0.66667 187765|0.375 187766|0.27778 187767|0.38889 187768|0.44444 187769|0.25 187770|0.31944 187771|0.15278 187772|0.375 187773|0.44444 187774|0.5 187775|0.5 187776|0.69444 187777|0.68056 187778|0.48611 187779|0.40278 187780|0.72222 187781|0.52778 187782|0.5 187783|0.5 187784|0.33333 187785|0.5 187786|0.59722 187787|0.29167 187788|0.55556 187789|0.33333 187790|0.5 187791|0.5 187792|0.5 187793|0.69444 187794|0.55556 187795|0.31944 187796|0.5 187797|0.375 187798|0.625 187799|0.33333 187800|0.40278 187801|0.5 187802|0.26389 187803|0.5 187804|0.5 187805|0.5 187806|0.58333 187807|0.5 187808|0.76389 187809|0.5 187810|0.48611 187811|0.68056 187812|0.84722 187813|0.33333 187814|0.15278 187815|0.51389 187816|0.55556 187817|0.91667 187818|0.81944 187819|0.88889 187820|0.72222 187821|0.58333 187822|0.5 187823|0.47222 187824|0.5 187825|0.34722 187826|0.5 187827|0.51389 187828|0.5 187829|0.48611 187830|0.5 187831|0.27778 187832|0.11111 187833|0.23611 187834|0.54167 187835|0.29167 187836|0.5 187837|0.5 187838|0.25 187839|0.29167 187840|0.31944 187841|0.5 187842|0.125 187843|0.5 187844|0.56944 187845|0.5 187846|0.22222 187847|0.63889 187848|0.43056 187849|0.41667 187850|0.52778 187851|0.56944 187852|0.34722 187853|0.45833 187854|0.26389 187855|0.31944 187856|0.16667 187857|0.36111 187858|0.38889 187859|0.54167 187860|0.5 187861|0.5 187862|0.5 187863|0.66667 187864|0.5 187865|0.47222 187866|0.5 187867|0.5 187868|0.5 187869|0.55556 187870|0.5 187871|0.45833 187872|0.5 187873|0.31944 187874|0.44444 187875|0.5 187876|0.38889 187877|0.18056 187878|0.38889 187879|0.40278 187880|0.27778 187881|0.27778 187882|0.44444 187883|0.15278 187884|0.055556 187885|0.19444 187886|0.23611 187887|0.48611 187888|0.5 187889|0.44444 187890|0.33333 187891|0.52778 187892|0.36111 187893|0.11111 187894|0.43056 187895|0.5 187896|0.38889 187897|0.40278 187898|0.41667 187899|0.5 187900|0.5 187901|0.5 187902|0.5 187903|0.66667 187904|0.23611 187905|0.11111 187906|0.40278 187907|0.375 187908|0.31944 187909|0.19444 187910|0.19444 187911|0.11111 187912|0.069444 187913|0.19444 187914|0.083333 187915|0.041667 187916|0.26389 187917|0 187918|0.73611 187919|0.72222 187920|0.65278 187921|0.43056 187922|0.33333 187923|0.22222 187924|0.25 187925|0.40278 187926|0.16667 187927|0.30556 187928|0.27778 187929|0.51389 187930|0.16667 187931|0.18056 187932|0.75 187933|0.55556 187934|0.65278 187935|0.52778 187936|0.38889 187937|0.51389 187938|0.5 187939|0.5 187940|0.86111 187941|0.84722 187942|0.73611 187943|0.68056 187944|0.40278 187945|0.63889 187946|0.63889 187947|0.66667 187948|0.625 187949|0.47222 187950|0.44444 187951|0.51389 187952|0.26389 187953|0.29167 187954|0.15278 187955|0.5 187956|0.52778 187957|0.625 187958|0.75 187959|0.56944 187960|0.29167 187961|0.36111 187962|0.34722 187963|0.19444 187964|0.29167 187965|0.083333 187966|0.5 187967|0.5 187968|0.625 187969|0.80556 187970|0.22222 187971|0.5 187972|0.73611 187973|0.77778 187974|0.77778 187975|0.5 187976|0.44444 187977|0.51389 187978|0.55556 187979|0.72222 187980|0.55556 187981|0.22222 187982|0.38889 187983|0.48611 187984|0.20833 187985|0.41667 187986|0.56944 187987|0.5 187988|0.5 187989|0.47222 187990|0.375 187991|0.69444 187992|0.5 187993|0.70833 187994|0.52778 187995|0.5 187996|0.52778 187997|0.625 187998|0.72222 187999|0.61111 188000|0.54167 188001|0.43056 188002|0.44444 188003|0.5 188004|0.47222 188005|0.5 188006|0.45833 188007|0.5 188008|0.30556 188009|0.5 188010|0.25 188011|0.43056 188012|0.34722 188013|0.18056 188014|0.75 188015|0.70833 188016|0.77778 188017|0.79167 188018|0.54167 188019|0.54167 188020|0.45833 188021|0.27778 188022|0.19444 188023|0 188024|0.16667 188025|0.27778 188026|0.36111 188027|0.25 188028|0.31944 188029|0.48611 188030|0.23611 188031|0.5 188032|0.44444 188033|0.36111 188034|0.63889 188035|0.36111 188036|0.31944 188037|0.5 188038|0.36111 188039|0.5 188040|0.5 188041|0.44444 188042|0.75 188043|0.22222 188044|0.5 188045|0.58333 188046|0.83333 188047|0.76389 188048|0.58333 188049|0.41667 188050|0.31944 188051|0.25 188052|0.15278 188053|0.26389 188054|0.16667 188055|0.31944 188056|0.65278 188057|0.40278 188058|0.23611 188059|0.40278 188060|0.27778 188061|0.34722 188062|0.22222 188063|0.27778 188064|0.25 188065|0.44444 188066|0.38889 188067|0.23611 188068|0.30556 188069|0.31944 188070|0.15278 188071|0.22222 188072|0.38889 188073|0.20833 188074|0.31944 188075|0.5 188076|0.36111 188077|0.48611 188078|0.33333 188079|0.43056 188080|0.23611 188081|0.55556 188082|0.54167 188083|0.33333 188084|0.23611 188085|0.36111 188086|0.26389 188087|0.41667 188088|0.45833 188089|0.15278 188090|0.52778 188091|0.055556 188092|0.51389 188093|0.19444 188094|0.5 188095|0.33333 188096|0.55556 188097|0.5 188098|0.48611 188099|0.47222 188100|0.20833 188101|0.38889 188102|0.23611 188103|0.20833 188104|0.5 188105|0.61111 188106|0.54167 188107|0.56944 188108|0.44444 188109|0.23611 188110|0.375 188111|0.51389 188112|0.38889 188113|0.15278 188114|0.34722 188115|0.61111 188116|0.5 188117|0.26389 188118|0.15278 188119|0.26389 188120|0.29167 188121|0.29167 188122|0.20833 188123|0.5 188124|0.5 188125|0.36111 188126|0.22222 188127|0.22222 188128|0.44444 188129|0.5 188130|0.38889 188131|0.47222 188132|0.625 188133|0.5 188134|0.55556 188135|0.44444 188136|0.27778 188137|0.52778 188138|0.22222 188139|0.125 188140|0.33333 188141|0.20833 188142|0.43056 188143|0.41667 188144|0.20833 188145|0.125 188146|0.38889 188147|0.27778 188148|0.5 188149|0.51389 188150|0.33333 188151|0.51389 188152|0.19444 188153|0.18056 188154|0.20833 188155|0.44444 188156|0 188157|0.5 188158|0.58333 188159|0.36111 188160|0.54167 188161|0.66667 188162|0.65278 188163|0.625 188164|0.30556 188165|0.63889 188166|0.38889 188167|0.63889 188168|0.18056 188169|0.33333 188170|0.375 188171|0.375 188172|0.41667 188173|0.5 188174|0.54167 188175|0.22222 188176|0.20833 188177|0.26389 188178|0.25 188179|0.61111 188180|0.41667 188181|0.61111 188182|0.375 188183|0.375 188184|0.41667 188185|0.44444 188186|0.56944 188187|0.33333 188188|0.18056 188189|0.20833 188190|0.52778 188191|0.26389 188192|0.16667 188193|0.25 188194|0.23611 188195|0.25 188196|0.15278 188197|0.055556 188198|0.16667 188199|0.29167 188200|0.33333 188201|0.375 188202|0.33333 188203|0.25 188204|0.18056 188205|0.26389 188206|0.31944 188207|0.23611 188208|0.27778 188209|0.36111 188210|0.22222 188211|0.20833 188212|0.27778 188213|0.18056 188214|0.51389 188215|0.5 188216|0.25 188217|0.5 188218|0.56944 188219|0.55556 188220|0.59722 188221|0.83333 188222|0.98611 188223|0.55556 188224|0.375 188225|0.44444 188226|0.54167 188227|0.27778 188228|0.22222 188229|0.88889 188230|0.73611 188231|0.73611 188232|0.61111 188233|0.61111 188234|0.30556 188235|0.5 188236|0.34722 188237|0.30556 188238|0.31944 188239|0.23611 188240|0.5 188241|0.083333 188242|0.27778 188243|0.11111 188244|0.18056 188245|0.5 188246|0.61111 188247|0.125 188248|0.43056 188249|0.625 188250|0.72222 188251|0.75 188252|0.47222 188253|0.31944 188254|0.77778 188255|0.91667 188256|0.91667 188257|0.625 188258|0.41667 188259|0.63889 188260|0.47222 188261|0.58333 188262|0.41667 188263|0.30556 188264|0.27778 188265|0.56944 188266|0.40278 188267|0.23611 188268|0.11111 188269|0.18056 188270|0.38889 188271|0.25 188272|0.38889 188273|0.31944 188274|0.23611 188275|0.5 188276|0.23611 188277|0.20833 188278|0.23611 188279|0.22222 188280|0.22222 188281|0.5 188282|0.33333 188283|0.20833 188284|0.26389 188285|0.33333 188286|0.27778 188287|0.48611 188288|0.70833 188289|0.54167 188290|0.52778 188291|0.63889 188292|0.30556 188293|0.22222 188294|0.5 188295|0.26389 188296|0.52778 188297|0.22222 188298|0.26389 188299|0.22222 188300|0.27778 188301|0.097222 188302|0.083333 188303|0.375 188304|0.38889 188305|0.38889 188306|0.55556 188307|0.47222 188308|0.34722 188309|0.58333 188310|0.34722 188311|0.5 188312|0.19444 188313|0.63889 188314|0.083333 188315|0.54167 188316|0.25 188317|0.5 188318|0.375 188319|0.66667 188320|0.51389 188321|0.19444 188322|0.19444 188323|0.29167 188324|0.26389 188325|0.20833 188326|0.5 188327|0.18056 188328|0.25 188329|0.27778 188330|0.34722 188331|0.5 188332|0.58333 188333|0.38889 188334|0.45833 188335|0.30556 188336|0.45833 188337|0.13889 188338|0.13889 188339|0.625 188340|0.5 188341|0.61111 188342|0.31944 188343|0.5 188344|0.69444 188345|0.61111 188346|0.66667 188347|0.30556 188348|0.34722 188349|0.5 188350|0.26389 188351|0.22222 188352|0.23611 188353|0.16667 188354|0.36111 188355|0.5 188356|0.375 188357|0.13889 188358|0.26389 188359|0.19444 188360|0.15278 188361|0.15278 188362|0.11111 188363|0.41667 188364|0.34722 188365|0.44444 188366|0.25 188367|0.375 188368|0.5 188369|0.41667 188370|0.65278 188371|0.63889 188372|0.15278 188373|0.54167 188374|0.20833 188375|0.48611 188376|0.375 188377|0.34722 188378|0.20833 188379|0.33333 188380|0.58333 188381|0.34722 188382|0.52778 188383|0.52778 188384|0.5 188385|0.22222 188386|0.30556 188387|0.30556 188388|0.27778 188389|0.45833 188390|0.26389 188391|0.5 188392|0.15278 188393|0.625 188394|0.13889 188395|0.16667 188396|0.52778 188397|0.26389 188398|0.38889 188399|0.33333 188400|0.34722 188401|0.19444 188402|0.56944 188403|0.45833 188404|0.34722 188405|0.36111 188406|0.5 188407|0.25 188408|0.16667 188409|0.81944 188410|0.625 188411|0.65278 188412|0.5 188413|0.58333 188414|0.52778 188415|0.27778 188416|0.25 188417|0.30556 188418|0.38889 188419|0.25 188420|0.47222 188421|0.30556 188422|0.31944 188423|0.33333 188424|0.43056 188425|0.20833 188426|0.055556 188427|0.055556 188428|0.33333 188429|0.20833 188430|0.23611 188431|0.13889 188432|0.11111 188433|0.58333 188434|0.375 188435|0.33333 188436|0.36111 188437|0.33333 188438|0.51389 188439|0.11111 188440|0.34722 188441|0.22222 188442|0.68056 188443|0.15278 188444|0.27778 188445|0.125 188446|0.18056 188447|0.055556 188448|0.20833 188449|0.30556 188450|0.44444 188451|0.375 188452|0.18056 188453|0.36111 188454|0.43056 188455|0.125 188456|0.51389 188457|0.38889 188458|0.31944 188459|0.31944 188460|0.625 188461|0.5 188462|0.5 188463|0.5 188464|0.34722 188465|0.36111 188466|0.33333 188467|0.29167 188468|0.45833 188469|0.45833 188470|0.20833 188471|0.23611 188472|0.27778 188473|0.26389 188474|0.69444 188475|0.77778 188476|0.48611 188477|0.68056 188478|0.16667 188479|0.44444 188480|0.36111 188481|0.52778 188482|0.5 188483|0.33333 188484|0.20833 188485|0.30556 188486|0.097222 188487|0.41667 188488|0.27778 188489|0.22222 188490|0.375 188491|0.125 188492|0.36111 188493|0.45833 188494|0.22222 188495|0.5 188496|0.45833 188497|0.38889 188498|0.58333 188499|0.36111 188500|0.41667 188501|0.5 188502|0.31944 188503|0.34722 188504|0.5 188505|0.80556 188506|0.75 188507|0.79167 188508|0.56944 188509|0.625 188510|0.5 188511|0.38889 188512|0.25 188513|0.22222 188514|0.51389 188515|0.34722 188516|0.47222 188517|0.30556 188518|0.20833 188519|0.20833 188520|0.13889 188521|0.31944 188522|0.26389 188523|0.29167 188524|0.19444 188525|0.5 188526|0.54167 188527|0.56944 188528|0.56944 188529|0.44444 188530|0.25 188531|0.5 188532|0.48611 188533|0.22222 188534|0.40278 188535|0.069444 188536|0.34722 188537|0.5 188538|0.44444 188539|0.51389 188540|0.55556 188541|0.63889 188542|0.56944 188543|0.25 188544|0.23611 188545|0.27778 188546|0.18056 188547|0.11111 188548|0.45833 188549|0.51389 188550|0.18056 188551|0.19444 188552|0.125 188553|0.11111 188554|0.19444 188555|0.5 188556|0.48611 188557|0.79167 188558|0.61111 188559|0.66667 188560|0.31944 188561|0.23611 188562|0.45833 188563|0.20833 188564|0.27778 188565|0.18056 188566|0.16667 188567|0.11111 188568|0.47222 188569|0.44444 188570|0.43056 188571|0.27778 188572|0.18056 188573|0.38889 188574|0.33333 188575|0.34722 188576|0.27778 188577|0.26389 188578|0.27778 188579|0.29167 188580|0.083333 188581|0.11111 188582|0.47222 188583|0.33333 188584|0.30556 188585|0.36111 188586|0.33333 188587|0.16667 188588|0.27778 188589|0.44444 188590|0.22222 188591|0.55556 188592|0.5 188593|0.16667 188594|0.61111 188595|0.33333 188596|0.375 188597|0.20833 188598|0.26389 188599|0.26389 188600|0.5 188601|0.055556 188602|0.61111 188603|0.70833 188604|0.72222 188605|0.66667 188606|0.47222 188607|0.22222 188608|0.33333 188609|0.19444 188610|0.27778 188611|0.47222 188612|0.25 188613|0.5 188614|0.26389 188615|0.52778 188616|0.5 188617|0.36111 188618|0.55556 188619|0.59722 188620|0.55556 188621|0.29167 188622|0.15278 188623|0.5 188624|0.5 188625|0.5 188626|0.27778 188627|0.43056 188628|0.29167 188629|0.375 188630|0.5 188631|0.5 188632|0.16667 188633|0.5 188634|0.5 188635|0.30556 188636|0.15278 188637|0.20833 188638|0.15278 188639|0.16667 188640|0.29167 188641|0.40278 188642|0.33333 188643|0.36111 188644|0.75 188645|0.51389 188646|0.44444 188647|0.26389 188648|0.29167 188649|0.38889 188650|0.36111 188651|0.19444 188652|0.097222 188653|0.5 188654|0.27778 188655|0.54167 188656|0.55556 188657|0 188658|0.30556 188659|0.41667 188660|0.38889 188661|0.55556 188662|0.34722 188663|0.58333 188664|0.61111 188665|0.40278 188666|0.54167 188667|0.5 188668|0.52778 188669|0.48611 188670|0.48611 188671|0.625 188672|0.5 188673|0.5 188674|0.69444 188675|0.27778 188676|0.45833 188677|0.38889 188678|0.26389 188679|0.16667 188680|0.19444 188681|0.19444 188682|0.48611 188683|0.52778 188684|0.375 188685|0.26389 188686|0.18056 188687|0.5 188688|0.34722 188689|0.27778 188690|0.44444 188691|0.5 188692|0.61111 188693|0.18056 188694|0.16667 188695|0.19444 188696|0.083333 188697|0.11111 188698|0.63889 188699|0.51389 188700|0.34722 188701|0.26389 188702|0.29167 188703|0.36111 188704|0.43056 188705|0.22222 188706|0.27778 188707|0.16667 188708|0.34722 188709|0.38889 188710|0.19444 188711|0.25 188712|0.31944 188713|0.27778 188714|0.23611 188715|0.15278 188716|0.36111 188717|0.29167 188718|0.29167 188719|0.29167 188720|0.23611 188721|0.26389 188722|0.5 188723|0.5 188724|0.41667 188725|0.25 188726|0.15278 188727|0.13889 188728|0.11111 188729|0.19444 188730|0.38889 188731|0.5 188732|0.83333 188733|0.86111 188734|0.84722 188735|0.76389 188736|0.81944 188737|0.375 188738|0.40278 188739|0.5 188740|0.59722 188741|0.66667 188742|0.61111 188743|0.30556 188744|0.16667 188745|0.125 188746|0.5 188747|0.38889 188748|0.18056 188749|0.40278 188750|0.23611 188751|0.26389 188752|0.38889 188753|0.38889 188754|0.22222 188755|0.5 188756|0.26389 188757|0.5 188758|0.23611 188759|0.23611 188760|0.43056 188761|0.38889 188762|0.48611 188763|0.19444 188764|0.16667 188765|0.20833 188766|0.43056 188767|0.34722 188768|0.29167 188769|0.34722 188770|0.027778 188771|0.23611 188772|0.16667 188773|0.69444 188774|0.5 188775|0.88889 188776|0.65278 188777|0.44444 188778|0.30556 188779|0.125 188780|0.041667 188781|0 188782|0.625 188783|0.18056 188784|0.51389 188785|0.41667 188786|0.68056 188787|0.5 188788|0.43056 188789|0.22222 188790|0.20833 188791|0.25 188792|0.59722 188793|0.58333 188794|0.41667 188795|0.23611 188796|0.20833 188797|0.43056 188798|0.36111 188799|0.63889 188800|0.25 188801|0.40278 188802|0.38889 188803|0.27778 188804|0.5 188805|0.16667 188806|0.29167 188807|0.11111 188808|0.11111 188809|0.44444 188810|0.41667 188811|0.26389 188812|0.59722 188813|0.44444 188814|0.23611 188815|0.72222 188816|0.38889 188817|0.77778 188818|0.31944 188819|0.27778 188820|0.80556 188821|0.70833 188822|0.55556 188823|0.58333 188824|0.40278 188825|0.31944 188826|0.25 188827|0.22222 188828|0.30556 188829|0.125 188830|0.16667 188831|0.26389 188832|0.40278 188833|0.56944 188834|0.11111 188835|0.27778 188836|0.26389 188837|0.23611 188838|0.40278 188839|0.125 188840|0.041667 188841|0.66667 188842|0.48611 188843|0.33333 188844|0.45833 188845|0.33333 188846|0.083333 188847|0.69444 188848|0.68056 188849|0.52778 188850|0.34722 188851|0.34722 188852|0.66667 188853|0.34722 188854|0.30556 188855|0.26389 188856|0.375 188857|0.33333 188858|0.18056 188859|0.18056 188860|0.56944 188861|0.41667 188862|0.30556 188863|0.30556 188864|0.41667 188865|0.625 188866|0.41667 188867|0.52778 188868|0.13889 188869|0.65278 188870|0.31944 188871|0.375 188872|0.36111 188873|0.19444 188874|0.13889 188875|0.625 188876|0.73611 188877|0.55556 188878|0.22222 188879|0.40278 188880|0.51389 188881|0.47222 188882|0.33333 188883|0.70833 188884|0.65278 188885|0.61111 188886|0.61111 188887|0.45833 188888|0.27778 188889|0.45833 188890|0.52778 188891|0.27778 188892|0.34722 188893|0.16667 188894|0.18056 188895|0.11111 188896|0.11111 188897|0.22222 188898|0.25 188899|0.22222 188900|0.375 188901|0.23611 188902|0.5 188903|0.36111 188904|0.5 188905|0.27778 188906|0.33333 188907|0.26389 188908|0.22222 188909|0.48611 188910|0.38889 188911|0.31944 188912|0.48611 188913|0.45833 188914|0.30556 188915|0.25 188916|0.29167 188917|0.56944 188918|0.51389 188919|0.75 188920|0.70833 188921|0.45833 188922|0.54167 188923|0.30556 188924|0.30556 188925|0.5 188926|0.72222 188927|0.375 188928|0.375 188929|0.5 188930|0.29167 188931|0.33333 188932|0.31944 188933|0.26389 188934|0.34722 188935|0.40278 188936|0.125 188937|0.5 188938|0.68056 188939|0.68056 188940|0.68056 188941|0.80556 188942|0.16667 188943|0.027778 188944|0.48611 188945|0.5 188946|0.36111 188947|0.56944 188948|0.30556 188949|0.23611 188950|0.15278 188951|0.5 188952|0.5 188953|0.13889 188954|0.5 188955|0.13889 188956|0.47222 188957|0.20833 188958|0.5 188959|0.5 188960|0.5 188961|0.58333 188962|0.5 188963|0.26389 188964|0.5 188965|0.22222 188966|0.29167 188967|0.31944 188968|0.5 188969|0.083333 188970|0.055556 188971|0.15278 188972|0.25 188973|0.13889 188974|0.11111 188975|0.27778 188976|0.19444 188977|0.41667 188978|0.16667 188979|0.83333 188980|0.73611 188981|0.36111 188982|0.34722 188983|0.34722 188984|0.16667 188985|0.18056 188986|0.22222 188987|0.66667 188988|0.70833 188989|0.625 188990|0.40278 188991|0.33333 188992|0.33333 188993|0.43056 188994|0.29167 188995|0.29167 188996|0.20833 188997|0.20833 188998|0.22222 188999|0.20833 189000|0.33333 189001|0.55556 189002|0.41667 189003|0.16667 189004|0.27778 189005|0.27778 189006|0.13889 189007|0.27778 189008|0.56944 189009|0.63889 189010|0.63889 189011|0.55556 189012|0.51389 189013|0.44444 189014|0.38889 189015|0.33333 189016|0.16667 189017|0.069444 189018|0 189019|0.36111 189020|0.22222 189021|0.36111 189022|0.13889 189023|0.16667 189024|0.15278 189025|0.16667 189026|0.11111 189027|0.19444 189028|0.58333 189029|0.58333 189030|0.75 189031|0.22222 189032|0 189033|0.027778 189034|0.097222 189035|0.29167 189036|0.375 189037|0.26389 189038|0.33333 189039|0.027778 189040|0.5 189041|0.65278 189042|0.25 189043|0.5 189044|0.11111 189045|0.125 189046|0.31944 189047|0.23611 189048|0.097222 189049|0.18056 189050|0.30556 189051|0.47222 189052|0.23611 189053|0.51389 189054|0.43056 189055|0.5 189056|0.125 189057|0.34722 189058|0.125 189059|0.083333 189060|0.055556 189061|0.18056 189062|0.083333 189063|0.13889 189064|0.43056 189065|0.27778 189066|0.18056 189067|0.16667 189068|0.16667 189069|0.27778 189070|0.13889 189071|0.027778 189072|0.055556 189073|0.16667 189074|0.34722 189075|0.33333 189076|0.36111 189077|0.48611 189078|0.20833 189079|0.55556 189080|0.23611 189081|0.5 189082|0.40278 189083|0.20833 189084|0.5 189085|0.54167 189086|0.5 189087|0.38889 189088|0.38889 189089|0.5 189090|0.51389 189091|0.33333 189092|0.18056 189093|0.38889 189094|0.18056 189095|0.16667 189096|0.125 189097|0.5 189098|0.38889 189099|0.5 189100|0.40278 189101|0.41667 189102|0.54167 189103|0.41667 189104|0.125 189105|0.5 189106|0.55556 189107|0.59722 189108|0.23611 189109|0.5 189110|0.47222 189111|0.58333 189112|0.41667 189113|0.59722 189114|0.41667 189115|0.45833 189116|0.22222 189117|0.55556 189118|0.33333 189119|0.5 189120|0.5 189121|0.40278 189122|0.45833 189123|0.27778 189124|0.48611 189125|0.30556 189126|0.73611 189127|0.29167 189128|0.61111 189129|0.30556 189130|0.41667 189131|0.43056 189132|0.72222 189133|0.44444 189134|0.36111 189135|0.26389 189136|0.69444 189137|0.44444 189138|0.27778 189139|0.72222 189140|0.38889 189141|0.625 189142|0.66667 189143|0.31944 189144|0.47222 189145|0.30556 189146|0.52778 189147|0.30556 189148|0.69444 189149|0.48611 189150|0.54167 189151|0.61111 189152|0.51389 189153|0.51389 189154|0.81944 189155|0.79167 189156|0.65278 189157|0.375 189158|0.40278 189159|0.66667 189160|0.20833 189161|0.45833 189162|0.20833 189163|0.5 189164|0.5 189165|0.5 189166|0.11111 189167|0.5 189168|0.29167 189169|0.375 189170|0.43056 189171|0.44444 189172|0.22222 189173|0.15278 189174|0.31944 189175|0.25 189176|0.33333 189177|0.40278 189178|0.22222 189179|0.38889 189180|0.26389 189181|0.125 189182|0.5 189183|0.26389 189184|0.34722 189185|0.083333 189186|0.5 189187|0.5 189188|0.58333 189189|0.54167 189190|0.58333 189191|0.19444 189192|0.22222 189193|0.44444 189194|0.375 189195|0.38889 189196|0.26389 189197|0.375 189198|0.43056 189199|0.55556 189200|0.66667 189201|0.33333 189202|0.29167 189203|0.5 189204|0.375 189205|0.5 189206|0.5 189207|0.43056 189208|0.5 189209|0.26389 189210|0.5 189211|0.5 189212|0.5 189213|0.61111 189214|0.5 189215|0.68056 189216|0.69444 189217|0.56944 189218|0.30556 189219|0.40278 189220|0.5 189221|0.5 189222|0.73611 189223|0.5 189224|0.20833 189225|0.55556 189226|0.61111 189227|0.33333 189228|0.56944 189229|0.41667 189230|0.083333 189231|0.52778 189232|0.22222 189233|0.26389 189234|0.33333 189235|0.33333 189236|0.66667 189237|0.31944 189238|0.48611 189239|0.20833 189240|0.22222 189241|0.5 189242|0.31944 189243|0.40278 189244|0.40278 189245|0.29167 189246|0.31944 189247|0.29167 189248|0.33333 189249|0.5 189250|0.58333 189251|0.33333 189252|0.19444 189253|0.27778 189254|0.125 189255|0.625 189256|0.68056 189257|0.30556 189258|0.15278 189259|0.5 189260|0.61111 189261|0.54167 189262|0.43056 189263|0.55556 189264|0.875 189265|0.54167 189266|0.5 189267|0.5 189268|0.44444 189269|0.083333 189270|0.26389 189271|0.375 189272|0.26389 189273|0.58333 189274|0.58333 189275|0.5 189276|0.63889 189277|0.69444 189278|0.55556 189279|0.125 189280|0.34722 189281|0.51389 189282|0.5 189283|0.54167 189284|0.76389 189285|0.63889 189286|0.29167 189287|0.13889 189288|0.69444 189289|0.30556 189290|0.40278 189291|0.30556 189292|0.5 189293|0.51389 189294|0.5 189295|0.79167 189296|0.70833 189297|0.47222 189298|0.625 189299|0.5 189300|0.5 189301|0.26389 189302|0.43056 189303|0.40278 189304|0.26389 189305|0.68056 189306|0.5 189307|0.5 189308|0.51389 189309|0.5 189310|0.36111 189311|0.27778 189312|0.22222 189313|0.19444 189314|0.5 189315|0.5 189316|0.5 189317|0.5 189318|0.41667 189319|0.51389 189320|0.5 189321|0.13889 189322|0.47222 189323|0.30556 189324|0.22222 189325|0.29167 189326|0.16667 189327|0.23611 189328|0.58333 189329|0.40278 189330|0.40278 189331|0.5 189332|0.30556 189333|0.22222 189334|0.22222 189335|0.44444 189336|0.375 189337|0.5 189338|0.36111 189339|0.30556 189340|0.18056 189341|0.30556 189342|0.16667 189343|0.44444 189344|0.25 189345|0.375 189346|0.13889 189347|0.26389 189348|0.23611 189349|0.58333 189350|0.45833 189351|0.11111 189352|0.26389 189353|0.23611 189354|0.20833 189355|0.069444 189356|0.20833 189357|0.16667 189358|0.125 189359|0.5 189360|0.5 189361|0.41667 189362|0.33333 189363|0.16667 189364|0.20833 189365|0.45833 189366|0.25 189367|0.47222 189368|0.26389 189369|0.43056 189370|0.45833 189371|0.30556 189372|0.30556 189373|0.29167 189374|0.47222 189375|0.44444 189376|0.55556 189377|0.66667 189378|0.27778 189379|0.5 189380|0.69444 189381|0.58333 189382|0.27778 189383|0.375 189384|0.29167 189385|0.48611 189386|0.44444 189387|0.43056 189388|0.51389 189389|0.625 189390|0.5 189391|0.65278 189392|0.5 189393|0.16667 189394|0.19444 189395|0.13889 189396|0.56944 189397|0.5 189398|0.48611 189399|0.5 189400|0.5 189401|0.16667 189402|0.5 189403|0.18056 189404|0.48611 189405|0.5 189406|0.26389 189407|0.40278 189408|0.18056 189409|0.31944 189410|0.38889 189411|0.69444 189412|0.79167 189413|0.48611 189414|0.45833 189415|0.44444 189416|0.44444 189417|0.5 189418|0.15278 189419|0.5 189420|0.5 189421|0.5 189422|0.40278 189423|0.33333 189424|0.5 189425|0.48611 189426|0.52778 189427|0.29167 189428|0.5 189429|0.5 189430|0.51389 189431|0.34722 189432|0.33333 189433|0.48611 189434|0.41667 189435|0.48611 189436|0.5 189437|0.69444 189438|0.5 189439|0.38889 189440|0.38889 189441|0.26389 189442|0.45833 189443|0.44444 189444|0.5 189445|0.54167 189446|0.5 189447|0.5 189448|0.72222 189449|0.5 189450|0.19444 189451|0.26389 189452|0.097222 189453|0.5 189454|0.63889 189455|0.63889 189456|0.61111 189457|0.375 189458|0.31944 189459|0.19444 189460|0.16667 189461|0.26389 189462|0.5 189463|0.5 189464|0.55556 189465|0.125 189466|0.15278 189467|0.19444 189468|0.19444 189469|0.26389 189470|0.5 189471|0.5 189472|0.56944 189473|0.23611 189474|0.44444 189475|0.25 189476|0.055556 189477|0.52778 189478|0.5 189479|0.31944 189480|0.097222 189481|0.47222 189482|0.59722 189483|0.51389 189484|0.55556 189485|0.16667 189486|0.43056 189487|0.34722 189488|0.52778 189489|0.30556 189490|0.16667 189491|0.26389 189492|0.22222 189493|0.25 189494|0.27778 189495|0.5 189496|0.54167 189497|0.26389 189498|0.27778 189499|0.33333 189500|0.29167 189501|0.23611 189502|0.16667 189503|0.15278 189504|0.5 189505|0.5 189506|0.5 189507|0.625 189508|0.5 189509|0.51389 189510|0.45833 189511|0.38889 189512|0.27778 189513|0.27778 189514|0.41667 189515|0.40278 189516|0.38889 189517|0.58333 189518|0.45833 189519|0.48611 189520|0.44444 189521|0.41667 189522|0.5 189523|0.44444 189524|0.66667 189525|0.61111 189526|0.5 189527|0.5 189528|0.5 189529|0.375 189530|0.51389 189531|0.51389 189532|0.41667 189533|0.31944 189534|0.5 189535|0.5 189536|0.375 189537|0.15278 189538|0.33333 189539|0.19444 189540|0.20833 189541|0.20833 189542|0.44444 189543|0.055556 189544|0.65278 189545|0.26389 189546|0.27778 189547|0.48611 189548|0.23611 189549|0.58333 189550|0.44444 189551|0.5 189552|0.68056 189553|0.5 189554|0.33333 189555|0.22222 189556|0.45833 189557|0.40278 189558|0.36111 189559|0.20833 189560|0.26389 189561|0.44444 189562|0.625 189563|0.33333 189564|0.18056 189565|0.16667 189566|0.33333 189567|0.25 189568|0.22222 189569|0.055556 189570|0.26389 189571|0.63889 189572|0.27778 189573|0.48611 189574|0.61111 189575|0.44444 189576|0.31944 189577|0.43056 189578|0.19444 189579|0.44444 189580|0.30556 189581|0.25 189582|0.66667 189583|0.31944 189584|0.33333 189585|0.5 189586|0.23611 189587|0.48611 189588|0.29167 189589|0.54167 189590|0.15278 189591|0.36111 189592|0.59722 189593|0.45833 189594|0.81944 189595|0.43056 189596|0.16667 189597|0.51389 189598|0.097222 189599|0.40278 189600|0.40278 189601|0.125 189602|0.33333 189603|0.097222 189604|0.26389 189605|0.5 189606|0.27778 189607|0.33333 189608|0.34722 189609|0.36111 189610|0.23611 189611|0 189612|0.51389 189613|0.34722 189614|0.51389 189615|0.055556 189616|0.33333 189617|0.48611 189618|0.54167 189619|0.5 189620|0.40278 189621|0.375 189622|0.20833 189623|0.5 189624|0.20833 189625|0.25 189626|0.25 189627|0.5 189628|0.13889 189629|0.5 189630|0.5 189631|0.27778 189632|0.52778 189633|0.61111 189634|0.51389 189635|0.26389 189636|0.5 189637|0.5 189638|0.43056 189639|0.055556 189640|0.36111 189641|0.34722 189642|0.5 189643|0.5 189644|0.625 189645|0.44444 189646|0.097222 189647|0.48611 189648|0.27778 189649|0.5 189650|0.34722 189651|0.22222 189652|0.44444 189653|0.44444 189654|0.27778 189655|0.34722 189656|0.61111 189657|0.44444 189658|0.29167 189659|0.20833 189660|0.18056 189661|0.61111 189662|0.55556 189663|0.40278 189664|0.15278 189665|0.16667 189666|0.083333 189667|0.055556 189668|0.45833 189669|0.20833 189670|0.5 189671|0.55556 189672|0.70833 189673|0.375 189674|0.75 189675|0.55556 189676|0.70833 189677|0.29167 189678|0.72222 189679|0.47222 189680|0.52778 189681|0.16667 189682|0.44444 189683|0.51389 189684|0.43056 189685|0.66667 189686|0.38889 189687|0.48611 189688|0.40278 189689|0.56944 189690|0.26389 189691|0.36111 189692|0.69444 189693|0.61111 189694|0.29167 189695|0.41667 189696|0.73611 189697|0.56944 189698|0.43056 189699|0.65278 189700|0.38889 189701|0.54167 189702|0.13889 189703|0.70833 189704|0.27778 189705|0.36111 189706|0.68056 189707|0.63889 189708|0.36111 189709|0.54167 189710|0.36111 189711|0.5 189712|0.44444 189713|0.72222 189714|0.63889 189715|0.27778 189716|0.45833 189717|0.5 189718|0.27778 189719|0.125 189720|0.45833 189721|0.5 189722|0.5 189723|0.055556 189724|0.23611 189725|0.58333 189726|0.5 189727|0.5 189728|0.70833 189729|0.56944 189730|0.61111 189731|0.59722 189732|0.59722 189733|0.5 189734|0.48611 189735|0.44444 189736|0.22222 189737|0.68056 189738|0.61111 189739|0.31944 189740|0.51389 189741|0.625 189742|0.59722 189743|0.58333 189744|0.56944 189745|0.48611 189746|0.90278 189747|0.51389 189748|0.48611 189749|0.26389 189750|0.30556 189751|0.34722 189752|0.30556 189753|0.47222 189754|0.36111 189755|0.26389 189756|0.19444 189757|0.5 189758|0.31944 189759|0.30556 189760|0.20833 189761|0.86111 189762|0.83333 189763|0.52778 189764|0.5 189765|0.66667 189766|0.40278 189767|0.48611 189768|0.5 189769|0.5 189770|0.43056 189771|0.5 189772|0.29167 189773|0.23611 189774|0.13889 189775|0.56944 189776|0.68056 189777|0.56944 189778|0.59722 189779|0.34722 189780|0.27778 189781|0.51389 189782|0.29167 189783|0.5 189784|0.43056 189785|0.22222 189786|0.33333 189787|0.52778 189788|0.27778 189789|0.27778 189790|0.43056 189791|0.083333 189792|0.125 189793|0.15278 189794|0.55556 189795|0.41667 189796|0.55556 189797|0.40278 189798|0.33333 189799|0.375 189800|0.44444 189801|0.26389 189802|0.27778 189803|0.31944 189804|0.23611 189805|0.22222 189806|0.5 189807|0.31944 189808|0.55556 189809|0.38889 189810|0.083333 189811|0.23611 189812|0.20833 189813|0.51389 189814|0.5 189815|0.56944 189816|0.33333 189817|0.47222 189818|0.51389 189819|0.63889 189820|0.56944 189821|0.5 189822|0.41667 189823|0.51389 189824|0.54167 189825|0.5 189826|0.44444 189827|0.51389 189828|0.27778 189829|0.55556 189830|0.16667 189831|0.47222 189832|0.38889 189833|0.43056 189834|0.375 189835|0.30556 189836|0.38889 189837|0.5 189838|0.375 189839|0.54167 189840|0.16667 189841|0.23611 189842|0.13889 189843|0.055556 189844|0.18056 189845|0.19444 189846|0.34722 189847|0.25 189848|0.29167 189849|0.5 189850|0.18056 189851|0.18056 189852|0.5 189853|0.5 189854|0.5 189855|0.5 189856|0.16667 189857|0.13889 189858|0.54167 189859|0.29167 189860|0.26389 189861|0.5 189862|0.5 189863|0.375 189864|0.40278 189865|0.5 189866|0.16667 189867|0.38889 189868|0.30556 189869|0.22222 189870|0.34722 189871|0.5 189872|0.23611 189873|0.5 189874|0.5 189875|0.44444 189876|0.22222 189877|0.5 189878|0.65278 189879|0.51389 189880|0.5 189881|0.36111 189882|0.22222 189883|0.26389 189884|0.33333 189885|0.22222 189886|0.23611 189887|0.5 189888|0.5 189889|0.55556 189890|0.22222 189891|0.58333 189892|0.5 189893|0.5 189894|0.77778 189895|0.88889 189896|0.65278 189897|0.27778 189898|0.36111 189899|0.51389 189900|0.45833 189901|0.26389 189902|0.34722 189903|0.22222 189904|0.45833 189905|0.44444 189906|0.44444 189907|0.5 189908|0.41667 189909|0.43056 189910|0.5 189911|0.5 189912|0.5 189913|0.51389 189914|0.5 189915|0.5 189916|0.027778 189917|0.18056 189918|0.19444 189919|0.15278 189920|0.26389 189921|0.33333 189922|0.5 189923|0.52778 189924|0.125 189925|0.34722 189926|0.18056 189927|0.22222 189928|0.54167 189929|0.055556 189930|0.30556 189931|0.51389 189932|0.18056 189933|0.125 189934|0.125 189935|0.56944 189936|0 189937|0.36111 189938|0.041667 189939|0.38889 189940|0.38889 189941|0.40278 189942|0.38889 189943|0.38889 189944|0.47222 189945|0.5 189946|0.51389 189947|0.51389 189948|0.41667 189949|0.5 189950|0.5 189951|0.5 189952|0.5 189953|0.31944 189954|0.58333 189955|0.5 189956|0.61111 189957|0.5 189958|0.5 189959|0.5 189960|0.5 189961|0.65278 189962|0.47222 189963|0.5 189964|0.34722 189965|0.22222 189966|0.38889 189967|0.40278 189968|0.5 189969|0.5 189970|0.54167 189971|0.31944 189972|0.11111 189973|0.5 189974|0.26389 189975|0.70833 189976|0.083333 189977|0.5 189978|0.5 189979|0.36111 189980|0.34722 189981|0.41667 189982|0.36111 189983|0.5 189984|0.5 189985|0.58333 189986|0.11111 189987|0.44444 189988|0.5 189989|0.33333 189990|0.83333 189991|0.5 189992|0.625 189993|0.55556 189994|0.63889 189995|0.375 189996|0.52778 189997|0.68056 189998|0.125 189999|0.16667 190000|0.5 190001|0.59722 190002|0.44444 190003|0.5 190004|0.5 190005|0.61111 190006|0.5 190007|0.58333 190008|0.61111 190009|0.47222 190010|0.36111 190011|0.95833 190012|0.125 190013|0.58333 190014|0.68056 190015|0.65278 190016|0.51389 190017|0.70833 190018|0.58333 190019|0.83333 190020|0.63889 190021|0.77778 190022|0.5 190023|0.44444 190024|0.40278 190025|0.61111 190026|0.31944 190027|0.95833 190028|0.81944 190029|0.36111 190030|0.40278 190031|0.58333 190032|0.38889 190033|0.45833 190034|0.5 190035|0.5 190036|0.36111 190037|0.68056 190038|0.5 190039|0.25 190040|0.5 190041|0.45833 190042|0.38889 190043|0.47222 190044|0.5 190045|0.79167 190046|0.55556 190047|0.25 190048|0.52778 190049|0.5 190050|0.66667 190051|0.44444 190052|0.5 190053|0.5 190054|0.51389 190055|0.54167 190056|0.5 190057|0.5 190058|0.33333 190059|0.38889 190060|0.51389 190061|0.66667 190062|0.23611 190063|0.36111 190064|0.5 190065|0.5 190066|0.5 190067|0.5 190068|0.65278 190069|0.51389 190070|0.41667 190071|0.5 190072|0.5 190073|0.5 190074|0.625 190075|0.5 190076|0.51389 190077|0.5 190078|0.44444 190079|0.40278 190080|0.76389 190081|0.5 190082|0.5 190083|0.5 190084|0.54167 190085|0.5 190086|0.63889 190087|0.33333 190088|0.30556 190089|0.5 190090|0.55556 190091|0.5 190092|0.5 190093|0.45833 190094|0.25 190095|0.5 190096|0.5 190097|0.52778 190098|0.5 190099|0.45833 190100|0.63889 190101|0.51389 190102|0.58333 190103|0.5 190104|0.22222 190105|0.5 190106|0.5 190107|0.44444 190108|0.5 190109|0.43056 190110|0.5 190111|0.38889 190112|0.38889 190113|0.41667 190114|0.25 190115|0.55556 190116|0.5 190117|0.15278 190118|0.41667 190119|0.51389 190120|0.45833 190121|0.34722 190122|0.125 190123|0.33333 190124|0.5 190125|0.31944 190126|0.11111 190127|0.19444 190128|0.44444 190129|0.25 190130|0.22222 190131|0.22222 190132|0.30556 190133|0.16667 190134|0.31944 190135|0.083333 190136|0.77778 190137|0.54167 190138|0.5 190139|0.375 190140|0.5 190141|0.52778 190142|0.33333 190143|0.36111 190144|0.47222 190145|0.25 190146|0.41667 190147|0.44444 190148|0.5 190149|0.25 190150|0.48611 190151|0.38889 190152|0.38889 190153|0.38889 190154|0.31944 190155|0.5 190156|0.36111 190157|0.38889 190158|0.375 190159|0.75 190160|0.58333 190161|0.22222 190162|0.65278 190163|0.59722 190164|0.19444 190165|0.69444 190166|0.38889 190167|0.38889 190168|0.59722 190169|0.54167 190170|0.75 190171|0.54167 190172|0.38889 190173|0.48611 190174|0.33333 190175|0.55556 190176|0.22222 190177|0.56944 190178|0.72222 190179|0.5 190180|0.625 190181|0.55556 190182|0.40278 190183|0.44444 190184|0.375 190185|0.25 190186|0.51389 190187|0.30556 190188|0.27778 190189|0.65278 190190|0.56944 190191|0.43056 190192|0.58333 190193|0.52778 190194|0.55556 190195|0.26389 190196|0.11111 190197|0.51389 190198|0.5 190199|0.47222 190200|0.16667 190201|0.5 190202|0.5 190203|0.5 190204|0.5 190205|0.65278 190206|0.44444 190207|0.25 190208|0.38889 190209|0.16667 190210|0.125 190211|0.097222 190212|0.36111 190213|0.375 190214|0.55556 190215|0.069444 190216|0.5 190217|0.33333 190218|0.56944 190219|0.125 190220|0.5 190221|0.5 190222|0.5 190223|0.81944 190224|0.22222 190225|0.41667 190226|0.88889 190227|0.61111 190228|0.69444 190229|0.61111 190230|0.77778 190231|0.875 190232|0.94444 190233|0.5 190234|0.56944 190235|0.41667 190236|0.45833 190237|0.51389 190238|0.34722 190239|0.40278 190240|0.27778 190241|0.5 190242|0.52778 190243|0.34722 190244|0.29167 190245|0.125 190246|0.5 190247|0.5 190248|0.44444 190249|0.59722 190250|0.52778 190251|0.40278 190252|0.48611 190253|0.55556 190254|0.20833 190255|0.5 190256|0.5 190257|0.47222 190258|0.625 190259|0.41667 190260|0.5 190261|0.30556 190262|0.18056 190263|0.69444 190264|0.22222 190265|0.43056 190266|0.375 190267|0.5 190268|0.45833 190269|0.55556 190270|0.23611 190271|0.5 190272|0.625 190273|0.5 190274|0.5 190275|0.041667 190276|0.76389 190277|0.33333 190278|0.41667 190279|0.5 190280|0.5 190281|0.51389 190282|0.5 190283|0.38889 190284|0.25 190285|0.41667 190286|0.625 190287|0.27778 190288|0.38889 190289|0.52778 190290|0.26389 190291|0.15278 190292|0.54167 190293|0.43056 190294|0.5 190295|0.54167 190296|0.75 190297|0.81944 190298|0.75 190299|0.5 190300|0.70833 190301|0.27778 190302|0.41667 190303|0.5 190304|0.56944 190305|0.58333 190306|0.70833 190307|0.875 190308|0.77778 190309|0.5 190310|0.72222 190311|0.52778 190312|0.77778 190313|0.68056 190314|0.47222 190315|0.43056 190316|0.27778 190317|0.55556 190318|0.54167 190319|0.51389 190320|0.58333 190321|0.56944 190322|0.55556 190323|0.44444 190324|0.38889 190325|0.41667 190326|0.16667 190327|0.5 190328|0.56944 190329|0.097222 190330|0.5 190331|0.38889 190332|0.51389 190333|0.36111 190334|0.66667 190335|0.66667 190336|0.66667 190337|0.29167 190338|0.5 190339|0.5 190340|0.44444 190341|0.31944 190342|0.43056 190343|0.11111 190344|0.43056 190345|0.69444 190346|0.5 190347|0.30556 190348|0.41667 190349|0.13889 190350|0.31944 190351|0.5 190352|0.375 190353|0.5 190354|0.65278 190355|0.73611 190356|0.48611 190357|0.5 190358|0.5 190359|0.44444 190360|0.44444 190361|0.48611 190362|0.55556 190363|0.43056 190364|0.51389 190365|0.61111 190366|0.75 190367|0.76389 190368|0.33333 190369|0.44444 190370|0.16667 190371|0.38889 190372|0.59722 190373|0.51389 190374|0.51389 190375|0.27778 190376|0.31944 190377|0.25 190378|0.31944 190379|0.18056 190380|0.52778 190381|0.70833 190382|0.73611 190383|0.69444 190384|0.43056 190385|0.375 190386|0.23611 190387|0.41667 190388|0.41667 190389|0.58333 190390|0.77778 190391|0.66667 190392|0.625 190393|0.41667 190394|0.16667 190395|0.48611 190396|0.375 190397|0.52778 190398|0.5 190399|0.5 190400|0.69444 190401|0.77778 190402|0.58333 190403|0.72222 190404|0.73611 190405|0.72222 190406|0.40278 190407|0.30556 190408|0.13889 190409|0.38889 190410|0.083333 190411|0.38889 190412|0.31944 190413|0.58333 190414|0.59722 190415|0.38889 190416|0.59722 190417|0.41667 190418|0.52778 190419|0.30556 190420|0.23611 190421|0.66667 190422|0.70833 190423|0.61111 190424|0.5 190425|0.44444 190426|0.41667 190427|0.55556 190428|0.5 190429|0.34722 190430|0.41667 190431|0.33333 190432|0.52778 190433|0.63889 190434|0.41667 190435|0.54167 190436|0.59722 190437|0.55556 190438|0.29167 190439|0.41667 190440|0.66667 190441|0.55556 190442|0.29167 190443|0.23611 190444|0.69444 190445|0.5 190446|0.26389 190447|0.36111 190448|0.36111 190449|0.30556 190450|0.56944 190451|0.625 190452|0.52778 190453|0.33333 190454|0.26389 190455|0.5 190456|0.43056 190457|0.26389 190458|0.5 190459|0.31944 190460|0.58333 190461|0.40278 190462|0.5 190463|0.38889 190464|0.47222 190465|0.23611 190466|0.30556 190467|0.23611 190468|0.5 190469|0.11111 190470|0.27778 190471|0.15278 190472|0.52778 190473|0.55556 190474|0.43056 190475|0.41667 190476|0.47222 190477|0.5 190478|0.5 190479|0.23611 190480|0.61111 190481|0.11111 190482|0.45833 190483|0.5 190484|0.5 190485|0.5 190486|0.44444 190487|0.16667 190488|0.18056 190489|0.15278 190490|0.29167 190491|0.40278 190492|0.31944 190493|0.5 190494|0.27778 190495|0.5 190496|0.375 190497|0.18056 190498|0.86111 190499|0.88889 190500|0.27778 190501|0.38889 190502|0.5 190503|0.52778 190504|0.5 190505|0.54167 190506|0.70833 190507|0.63889 190508|0.79167 190509|0.79167 190510|0.73611 190511|0.73611 190512|0.72222 190513|0.27778 190514|0.16667 190515|0.81944 190516|0.34722 190517|0.70833 190518|0.69444 190519|0.61111 190520|0.375 190521|0.31944 190522|0.51389 190523|0.66667 190524|0.59722 190525|0.75 190526|0.45833 190527|0.52778 190528|0.56944 190529|0.5 190530|0.47222 190531|0.20833 190532|0.625 190533|0.72222 190534|0.51389 190535|0.375 190536|0.63889 190537|0.625 190538|0.5 190539|0.55556 190540|0.69444 190541|0.63889 190542|0.45833 190543|0.5 190544|0.44444 190545|0.40278 190546|0.52778 190547|0.51389 190548|0.61111 190549|0.72222 190550|0.5 190551|0.5 190552|0.59722 190553|0.5 190554|0.33333 190555|0.5 190556|0.47222 190557|0.36111 190558|0.5 190559|0.51389 190560|0.5 190561|0.5 190562|0.72222 190563|0.5 190564|0.5 190565|0.65278 190566|0.23611 190567|0.23611 190568|0.5 190569|0.59722 190570|0.375 190571|0.069444 190572|0.27778 190573|0.125 190574|0.38889 190575|0.27778 190576|0.63889 190577|0.40278 190578|0.22222 190579|0.27778 190580|0.45833 190581|0.36111 190582|0.70833 190583|0.51389 190584|0.58333 190585|0.58333 190586|0.083333 190587|0.63889 190588|0.66667 190589|0.83333 190590|0.44444 190591|0.43056 190592|0.5 190593|0.33333 190594|0.36111 190595|0.5 190596|0.52778 190597|0.36111 190598|0.22222 190599|0.36111 190600|0.26389 190601|0.5 190602|0.61111 190603|0.40278 190604|0.44444 190605|0.40278 190606|0.30556 190607|0.15278 190608|0.48611 190609|0.25 190610|0.51389 190611|0.31944 190612|0.56944 190613|0.5 190614|0.13889 190615|0.36111 190616|0.66667 190617|0.70833 190618|0.48611 190619|0.25 190620|0.625 190621|0.40278 190622|0.22222 190623|0.19444 190624|0.45833 190625|0.375 190626|0.375 190627|0.5 190628|0.70833 190629|0.69444 190630|0.72222 190631|0.66667 190632|0.375 190633|0.54167 190634|0.5 190635|0.68056 190636|0.5 190637|0.34722 190638|0.19444 190639|0.5 190640|0.48611 190641|0.61111 190642|0.59722 190643|0.63889 190644|0.63889 190645|0.56944 190646|0.44444 190647|0.33333 190648|0.5 190649|0.65278 190650|0.69444 190651|0.41667 190652|0.59722 190653|0.25 190654|0.61111 190655|0.59722 190656|0.55556 190657|0.61111 190658|0.76389 190659|0.43056 190660|0.22222 190661|0.72222 190662|0.70833 190663|0.76389 190664|0.61111 190665|0.75 190666|0.77778 190667|0.625 190668|0.72222 190669|0.86111 190670|0.41667 190671|0.55556 190672|0.52778 190673|0.44444 190674|0.43056 190675|0.5 190676|0.5 190677|0.41667 190678|0.29167 190679|0.54167 190680|0.38889 190681|0.72222 190682|0.76389 190683|0.72222 190684|0.59722 190685|0.72222 190686|0.76389 190687|0.81944 190688|0.58333 190689|0.38889 190690|0.16667 190691|0.875 190692|0.48611 190693|0.55556 190694|0.29167 190695|0.083333 190696|0.68056 190697|0.79167 190698|0.90278 190699|0.72222 190700|0.33333 190701|0.38889 190702|0.44444 190703|0.41667 190704|0.55556 190705|0.5 190706|0.72222 190707|0.61111 190708|0.63889 190709|0.44444 190710|0.27778 190711|0.58333 190712|0.43056 190713|0.38889 190714|0.77778 190715|0.63889 190716|0.44444 190717|0.41667 190718|0.19444 190719|0.55556 190720|0.26389 190721|0.58333 190722|0.5 190723|0.40278 190724|0.61111 190725|0.27778 190726|0.43056 190727|0.63889 190728|0.33333 190729|0.55556 190730|0.27778 190731|0.5 190732|0.43056 190733|0.58333 190734|0.625 190735|0.76389 190736|0.68056 190737|0.65278 190738|0.70833 190739|0.5 190740|0.33333 190741|0.66667 190742|0.55556 190743|0.5 190744|0.26389 190745|0.33333 190746|0.19444 190747|0.30556 190748|0.56944 190749|0.45833 190750|0.5 190751|0.5 190752|0.41667 190753|0.72222 190754|0.31944 190755|0.81944 190756|0.44444 190757|0.5 190758|0.29167 190759|0.33333 190760|0.36111 190761|0.48611 190762|0.26389 190763|0.34722 190764|0.61111 190765|0.30556 190766|0.20833 190767|0.027778 190768|0.5 190769|0.15278 190770|0.23611 190771|0.22222 190772|0.11111 190773|0.18056 190774|0.069444 190775|0.55556 190776|0.79167 190777|0.80556 190778|0.55556 190779|0.5 190780|0.31944 190781|0.33333 190782|0.43056 190783|0.51389 190784|0.47222 190785|0.5 190786|0.5 190787|0.63889 190788|0.52778 190789|0.5 190790|0.5 190791|0.36111 190792|0.51389 190793|0.68056 190794|0.65278 190795|0.5 190796|0.18056 190797|0.22222 190798|0.5 190799|0.18056 190800|0.5 190801|0.15278 190802|0.44444 190803|0.34722 190804|0.38889 190805|0.30556 190806|0.45833 190807|0.72222 190808|0.38889 190809|0.40278 190810|0.5 190811|0.5 190812|0.5 190813|0.29167 190814|0.61111 190815|0.54167 190816|0.55556 190817|0.77778 190818|0.66667 190819|0.5 190820|0.51389 190821|0.38889 190822|0.41667 190823|0.375 190824|0.45833 190825|0.48611 190826|0.5 190827|0.5 190828|0.56944 190829|0.34722 190830|0.36111 190831|0.34722 190832|0.40278 190833|0.61111 190834|0.51389 190835|0.54167 190836|0.33333 190837|0.38889 190838|0.65278 190839|0.43056 190840|0.5 190841|0.375 190842|0.56944 190843|0.36111 190844|0.56944 190845|0.30556 190846|0.41667 190847|0.23611 190848|0.63889 190849|0.31944 190850|0.70833 190851|0.48611 190852|0.47222 190853|0.33333 190854|0.38889 190855|0.5 190856|0.73611 190857|0.76389 190858|0.33333 190859|0.27778 190860|0.26389 190861|0.44444 190862|0.16667 190863|0.43056 190864|0.55556 190865|0.5 190866|0.47222 190867|0.41667 190868|0.20833 190869|0.34722 190870|0.56944 190871|0.11111 190872|0.75 190873|0.5 190874|0.20833 190875|0.5 190876|0.33333 190877|0.66667 190878|0.68056 190879|0.48611 190880|0.5 190881|0.19444 190882|0.51389 190883|0.16667 190884|0.33333 190885|0.69444 190886|0.375 190887|0.54167 190888|0.33333 190889|0.097222 190890|0.43056 190891|0.375 190892|0.30556 190893|0.52778 190894|0.44444 190895|0.30556 190896|0.29167 190897|0.30556 190898|0.41667 190899|0.44444 190900|0.69444 190901|0.625 190902|0.30556 190903|0.75 190904|0.5 190905|0.16667 190906|0.5 190907|0.22222 190908|0.5 190909|0.5 190910|0.41667 190911|0.43056 190912|0.5 190913|0 190914|0.47222 190915|0.5 190916|0.45833 190917|0.66667 190918|0.61111 190919|0.73611 190920|0.40278 190921|0.44444 190922|0.45833 190923|0.16667 190924|0.26389 190925|0.375 190926|0.23611 190927|0.40278 190928|0.31944 190929|0.45833 190930|0.30556 190931|0.41667 190932|0.54167 190933|0.38889 190934|0.55556 190935|0.38889 190936|0.30556 190937|0.58333 190938|0.5 190939|0.18056 190940|0.30556 190941|0.51389 190942|0.25 190943|0.31944 190944|0.44444 190945|0.5 190946|0.33333 190947|0.31944 190948|0.23611 190949|0.26389 190950|0.20833 190951|0.36111 190952|0.41667 190953|0.72222 190954|0.63889 190955|0.38889 190956|0.47222 190957|0.44444 190958|0.36111 190959|0.5 190960|0.375 190961|0.5 190962|0.5 190963|0.27778 190964|0.375 190965|0.26389 190966|0.22222 190967|0.41667 190968|0.33333 190969|0.81944 190970|0.18056 190971|0.069444 190972|0.66667 190973|0.66667 190974|0.63889 190975|0.44444 190976|0.65278 190977|0.5 190978|0.38889 190979|0.56944 190980|0.77778 190981|0.58333 190982|0.30556 190983|0.56944 190984|0.5 190985|0.73611 190986|0.52778 190987|0.34722 190988|0.625 190989|0.13889 190990|0.5 190991|0.41667 190992|0.5 190993|0.44444 190994|0.54167 190995|0.5 190996|0.5 190997|0.56944 190998|0.11111 190999|0.15278 191000|0.18056 191001|0.58333 191002|0.47222 191003|0.5 191004|0.11111 191005|0.54167 191006|0.54167 191007|0.15278 191008|0.18056 191009|0.40278 191010|0.69444 191011|0.11111 191012|0.69444 191013|0.72222 191014|0.5 191015|0.47222 191016|0.29167 191017|0.41667 191018|0.5 191019|0.5 191020|0.29167 191021|0.5 191022|0.38889 191023|0.11111 191024|0.5 191025|0.375 191026|0.41667 191027|0.72222 191028|0.68056 191029|0.79167 191030|0.79167 191031|0.66667 191032|0.66667 191033|0.26389 191034|0.20833 191035|0.55556 191036|0.5 191037|0.66667 191038|0.5 191039|0.61111 191040|0.63889 191041|0.69444 191042|0.75 191043|0.36111 191044|0.5 191045|0.54167 191046|0.40278 191047|0.41667 191048|0.20833 191049|0.40278 191050|0.33333 191051|0.51389 191052|0.55556 191053|0.63889 191054|0.38889 191055|0.22222 191056|0.15278 191057|0.31944 191058|0.33333 191059|0.27778 191060|0.31944 191061|0.43056 191062|0.31944 191063|0.27778 191064|0.33333 191065|0.875 191066|0.43056 191067|0.44444 191068|0.34722 191069|0.41667 191070|0.59722 191071|0.48611 191072|0.38889 191073|0.375 191074|0.27778 191075|0.22222 191076|0.33333 191077|0.29167 191078|0.43056 191079|0.40278 191080|0.5 191081|0.41667 191082|0.55556 191083|0.52778 191084|0.29167 191085|0.13889 191086|0.25 191087|0.055556 191088|0.51389 191089|0.48611 191090|0.375 191091|0.30556 191092|0.5 191093|0.30556 191094|0.51389 191095|0.47222 191096|0.19444 191097|0.36111 191098|0.5 191099|0.11111 191100|0.16667 191101|0.31944 191102|0.54167 191103|0.54167 191104|0.29167 191105|0.5 191106|0.59722 191107|0.68056 191108|0.66667 191109|0.30556 191110|0.11111 191111|0.31944 191112|0.22222 191113|0.013889 191114|0.23611 191115|0.26389 191116|0.44444 191117|0.5 191118|0.75 191119|0.26389 191120|0.27778 191121|0.5 191122|0.33333 191123|0.52778 191124|0.55556 191125|0.45833 191126|0.22222 191127|0.59722 191128|0.44444 191129|0.5 191130|0.40278 191131|0.33333 191132|0.31944 191133|0.23611 191134|0.56944 191135|0.51389 191136|0.34722 191137|0.63889 191138|0.27778 191139|0.19444 191140|0.41667 191141|0.5 191142|0.66667 191143|0.55556 191144|0.47222 191145|0.5 191146|0.5 191147|0.5 191148|0.63889 191149|0.5 191150|0.5 191151|0.59722 191152|0.59722 191153|0.77778 191154|0.59722 191155|0.34722 191156|0.48611 191157|0.31944 191158|0.19444 191159|0.55556 191160|0.44444 191161|0.5 191162|0.38889 191163|0.13889 191164|0.16667 191165|0.22222 191166|0.38889 191167|0.375 191168|0.16667 191169|0.33333 191170|0.27778 191171|0.52778 191172|0.58333 191173|0.52778 191174|0.33333 191175|0.63889 191176|0.66667 191177|0.19444 191178|0.55556 191179|0.54167 191180|0.73611 191181|0.11111 191182|0.40278 191183|0.20833 191184|0.5 191185|0.58333 191186|0.65278 191187|0.72222 191188|0.68056 191189|0.77778 191190|0.40278 191191|0.5 191192|0.59722 191193|0.15278 191194|0.125 191195|0.25 191196|0.19444 191197|0.54167 191198|0.5 191199|0.61111 191200|0.5 191201|0.52778 191202|0.19444 191203|0.45833 191204|0.86111 191205|0.51389 191206|0.27778 191207|0.69444 191208|0.77778 191209|0.625 191210|0.52778 191211|0.19444 191212|0.43056 191213|0.16667 191214|0.41667 191215|0.20833 191216|0.13889 191217|0.58333 191218|0.48611 191219|0.44444 191220|0.55556 191221|0.61111 191222|0.68056 191223|0.33333 191224|0.34722 191225|0.55556 191226|0.055556 191227|0.58333 191228|0.44444 191229|0.23611 191230|0.34722 191231|0.26389 191232|0.5 191233|0.23611 191234|0.59722 191235|0.51389 191236|0.25 191237|0.51389 191238|0.56944 191239|0.55556 191240|0.84722 191241|0.48611 191242|0.5 191243|0.36111 191244|0.27778 191245|0.375 191246|0.55556 191247|0.36111 191248|0.43056 191249|0.45833 191250|0.43056 191251|0.44444 191252|0.48611 191253|0.19444 191254|0.15278 191255|0.38889 191256|0.54167 191257|0.45833 191258|0.33333 191259|0.375 191260|0.55556 191261|0.58333 191262|0.36111 191263|0.36111 191264|0.77778 191265|0.76389 191266|0.72222 191267|0.29167 191268|0.80556 191269|0.47222 191270|0.55556 191271|0.5 191272|0.29167 191273|0.5 191274|0.5 191275|0.36111 191276|0.70833 191277|0.43056 191278|0.44444 191279|0.41667 191280|0.38889 191281|0.5 191282|0.22222 191283|0.19444 191284|0.11111 191285|0.19444 191286|0.22222 191287|0.26389 191288|0.51389 191289|0.5 191290|0.44444 191291|0.5 191292|0.36111 191293|0.63889 191294|0.34722 191295|0.52778 191296|0.5 191297|0.63889 191298|0.47222 191299|0.51389 191300|0.30556 191301|0.40278 191302|0.44444 191303|0.5 191304|0.45833 191305|0.77778 191306|0.63889 191307|0.625 191308|0.58333 191309|0.68056 191310|0.61111 191311|0.52778 191312|0.5 191313|0.55556 191314|0.48611 191315|0.19444 191316|0.26389 191317|0.52778 191318|0.23611 191319|0.44444 191320|0.22222 191321|0.48611 191322|0.5 191323|0.27778 191324|0.23611 191325|0.34722 191326|0.52778 191327|0.375 191328|0.51389 191329|0.5 191330|0.5 191331|0.56944 191332|0.36111 191333|0.51389 191334|0.70833 191335|0.51389 191336|0.5 191337|0.5 191338|0.5 191339|0.44444 191340|0.54167 191341|0.30556 191342|0.36111 191343|0.61111 191344|0.34722 191345|0.75 191346|0.61111 191347|0.61111 191348|0.22222 191349|0.25 191350|0.23611 191351|0.94444 191352|0.33333 191353|0.40278 191354|0.54167 191355|0.65278 191356|0.48611 191357|0.44444 191358|0.20833 191359|0.27778 191360|0.19444 191361|0.33333 191362|0.52778 191363|0.20833 191364|0.54167 191365|0.83333 191366|0.22222 191367|0.51389 191368|0.72222 191369|0.5 191370|0.52778 191371|0.29167 191372|0.56944 191373|0.83333 191374|0.5 191375|0.38889 191376|0.16667 191377|0.097222 191378|0.36111 191379|0.38889 191380|0.65278 191381|0.22222 191382|0.34722 191383|0.27778 191384|0.44444 191385|0.23611 191386|0.22222 191387|0.52778 191388|0.58333 191389|0.61111 191390|0.27778 191391|0.38889 191392|0.27778 191393|0.44444 191394|0.38889 191395|0.59722 191396|0.083333 191397|0.13889 191398|0.41667 191399|0.5 191400|0.5 191401|0.29167 191402|0.5 191403|0.22222 191404|0.375 191405|0.22222 191406|0.27778 191407|0.79167 191408|0.66667 191409|0.56944 191410|0.68056 191411|0.73611 191412|0.69444 191413|0.5 191414|0.5 191415|0.5 191416|0.5 191417|0.56944 191418|0.61111 191419|0.55556 191420|0.55556 191421|0.47222 191422|0.51389 191423|0.40278 191424|0.36111 191425|0.30556 191426|0.66667 191427|0.68056 191428|0.23611 191429|0.625 191430|0.27778 191431|0.22222 191432|0.56944 191433|0.77778 191434|0.66667 191435|0.72222 191436|0.34722 191437|0.41667 191438|0.41667 191439|0.27778 191440|0.5 191441|0.51389 191442|0.63889 191443|0.47222 191444|0.30556 191445|0.84722 191446|0.43056 191447|0.44444 191448|0.66667 191449|0.69444 191450|0.5 191451|0.30556 191452|0.52778 191453|0.34722 191454|0.52778 191455|0.48611 191456|0.77778 191457|0.58333 191458|0.45833 191459|0.55556 191460|0.34722 191461|0.54167 191462|0.55556 191463|0.5 191464|0.13889 191465|0.55556 191466|0.40278 191467|0.55556 191468|0.5 191469|0.56944 191470|0.65278 191471|0.56944 191472|0.69444 191473|0.38889 191474|0.52778 191475|0.43056 191476|0.56944 191477|0.5 191478|0.27778 191479|0.5 191480|0.68056 191481|0.5 191482|0.59722 191483|0.15278 191484|0.45833 191485|0.26389 191486|0.59722 191487|0.66667 191488|0.25 191489|0.34722 191490|0.34722 191491|0.44444 191492|0.5 191493|0.41667 191494|0.23611 191495|0.25 191496|0.5 191497|0.11111 191498|0.18056 191499|0.11111 191500|0.083333 191501|0.055556 191502|0.069444 191503|0.16667 191504|0.125 191505|0.11111 191506|0.11111 191507|0 191508|0.22222 191509|0.15278 191510|0.5 191511|0.61111 191512|0.36111 191513|0.5 191514|0.33333 191515|0.5 191516|0.54167 191517|0.5 191518|0.58333 191519|0.73611 191520|0.38889 191521|0.30556 191522|0.41667 191523|0.43056 191524|0.36111 191525|0.69444 191526|0.76389 191527|0.5 191528|0.33333 191529|0.5 191530|0.45833 191531|0.44444 191532|0.5 191533|0.56944 191534|0.59722 191535|0.41667 191536|0.61111 191537|0.41667 191538|0.58333 191539|0.65278 191540|0.48611 191541|0.58333 191542|0.47222 191543|0.56944 191544|0.27778 191545|0.25 191546|0.72222 191547|0.27778 191548|0.47222 191549|0.5 191550|0.54167 191551|0.25 191552|0.26389 191553|0.15278 191554|0.19444 191555|0.33333 191556|0.5 191557|0.44444 191558|0.65278 191559|0.5 191560|0.38889 191561|0.19444 191562|0.54167 191563|0.5 191564|0.27778 191565|0.16667 191566|0.097222 191567|0.65278 191568|0.61111 191569|0.31944 191570|0.80556 191571|0.38889 191572|0.61111 191573|0.18056 191574|0.40278 191575|0.51389 191576|0.79167 191577|0.44444 191578|0.19444 191579|0.54167 191580|0.70833 191581|0.625 191582|0.51389 191583|0.58333 191584|0.44444 191585|0.5 191586|0.33333 191587|0.5 191588|0.83333 191589|0.83333 191590|0.41667 191591|0.41667 191592|0.34722 191593|0.51389 191594|0.61111 191595|0.66667 191596|0.41667 191597|0.5 191598|0.5 191599|0.45833 191600|0.5 191601|0.375 191602|0.58333 191603|0.33333 191604|0.72222 191605|0.5 191606|0.27778 191607|0.18056 191608|0.27778 191609|0.5 191610|0.30556 191611|0.33333 191612|0.66667 191613|0.75 191614|0.625 191615|0.75 191616|0.48611 191617|0.63889 191618|0.41667 191619|0.31944 191620|0.43056 191621|0.5 191622|0.34722 191623|0.18056 191624|0.59722 191625|0.5 191626|0.44444 191627|0.38889 191628|0.27778 191629|0.20833 191630|0.38889 191631|0.30556 191632|0.5 191633|0.5 191634|0.47222 191635|0.47222 191636|0.51389 191637|0.55556 191638|0.55556 191639|0.66667 191640|0.77778 191641|0.38889 191642|0.22222 191643|0.86111 191644|0.38889 191645|0.66667 191646|0.65278 191647|0.72222 191648|0.375 191649|0.34722 191650|0.29167 191651|0.29167 191652|0.5 191653|0.56944 191654|0.52778 191655|0.55556 191656|0.44444 191657|0.27778 191658|0.56944 191659|0.5 191660|0.20833 191661|0.30556 191662|0.26389 191663|0.54167 191664|0.5 191665|0.72222 191666|0.22222 191667|0.38889 191668|0.44444 191669|0.43056 191670|0.41667 191671|0.69444 191672|0.5 191673|0.36111 191674|0.5 191675|0.54167 191676|0.34722 191677|0.51389 191678|0.5 191679|0.5 191680|0.5 191681|0.5 191682|0.55556 191683|0.5 191684|0.5 191685|0.51389 191686|0.5 191687|0.5 191688|0.5 191689|0.5 191690|0.30556 191691|0.59722 191692|0.5 191693|0.5 191694|0.5 191695|0.5 191696|0.5 191697|0.44444 191698|0.54167 191699|0.5 191700|0.5 191701|0.5 191702|0.19444 191703|0.31944 191704|0.5 191705|0.5 191706|0.5 191707|0.5 191708|0.54167 191709|0.5 191710|0.40278 191711|0.47222 191712|0.38889 191713|0.66667 191714|0.5 191715|0.43056 191716|0.5 191717|0.43056 191718|0.58333 191719|0.5 191720|0.5 191721|0.125 191722|0.083333 191723|0 191724|0.5 191725|0.38889 191726|0.5 191727|0.30556 191728|0.51389 191729|0.45833 191730|0.5 191731|0.5 191732|0.54167 191733|0.48611 191734|0.5 191735|0.29167 191736|0.5 191737|0.38889 191738|0.5 191739|0.5 191740|0.55556 191741|0.55556 191742|0.5 191743|0.5 191744|0.54167 191745|0.56944 191746|0.5 191747|0.51389 191748|0.43056 191749|0.5 191750|0.69444 191751|0.5 191752|0.65278 191753|0.51389 191754|0.5 191755|0.5 191756|0.61111 191757|0.29167 191758|0.5 191759|0.61111 191760|0.5 191761|0.5 191762|0.5 191763|0.54167 191764|0.5 191765|0.5 191766|0.38889 191767|0.51389 191768|0.43056 191769|0.27778 191770|0.13889 191771|0.38889 191772|0.66667 191773|0.5 191774|0.40278 191775|0.5 191776|0.68056 191777|0.5 191778|0.52778 191779|0.41667 191780|0.5 191781|0.51389 191782|0.48611 191783|0.45833 191784|0.69444 191785|0.56944 191786|0.44444 191787|0.5 191788|0.48611 191789|0.22222 191790|0.56944 191791|0.52778 191792|0.40278 191793|0.25 191794|0.31944 191795|0.65278 191796|0.44444 191797|0.56944 191798|0.65278 191799|0.5 191800|0.5 191801|0.375 191802|0.5 191803|0.63889 191804|0.5 191805|0.5 191806|0.5 191807|0.5 191808|0.33333 191809|0.5 191810|0.40278 191811|0.56944 191812|0.52778 191813|0.34722 191814|0.26389 191815|0.43056 191816|0.625 191817|0.31944 191818|0.5 191819|0.5 191820|0.30556 191821|0.94444 191822|0.52778 191823|0.16667 191824|0.44444 191825|0.77778 191826|0.61111 191827|0.48611 191828|0.45833 191829|0.20833 191830|0.069444 191831|0.19444 191832|0.27778 191833|0.29167 191834|0.16667 191835|0.31944 191836|0.055556 191837|0.54167 191838|0.41667 191839|0.19444 191840|0.26389 191841|0.58333 191842|0.33333 191843|0.40278 191844|0.38889 191845|0.5 191846|0.31944 191847|0.61111 191848|0.69444 191849|0.55556 191850|0.55556 191851|0.55556 191852|0.54167 191853|0.83333 191854|0.75 191855|0.55556 191856|0.5 191857|0.5 191858|0.20833 191859|0.56944 191860|0.61111 191861|0.55556 191862|0.44444 191863|0.13889 191864|0.66667 191865|0.5 191866|0.41667 191867|0.22222 191868|0.43056 191869|0.5 191870|0.45833 191871|0.41667 191872|0.41667 191873|0.11111 191874|0.5 191875|0.5 191876|0.41667 191877|0.5 191878|0.5 191879|0.22222 191880|0.40278 191881|0.68056 191882|0.65278 191883|0.66667 191884|0.80556 191885|0.069444 191886|0.27778 191887|0.5 191888|0.33333 191889|0.45833 191890|0.31944 191891|0.31944 191892|0.5 191893|0.38889 191894|0.55556 191895|0.63889 191896|0.5 191897|0.30556 191898|0.23611 191899|0.5 191900|0.63889 191901|0.52778 191902|0.43056 191903|0.5 191904|0.44444 191905|0.33333 191906|0.51389 191907|0.51389 191908|0.56944 191909|0.5 191910|0.22222 191911|0.55556 191912|0.5 191913|0.58333 191914|0.58333 191915|0.54167 191916|0.56944 191917|0.69444 191918|0.5 191919|0.5 191920|0.30556 191921|0.65278 191922|0.51389 191923|0.5 191924|0.58333 191925|0.5 191926|0.61111 191927|0.52778 191928|0.61111 191929|0.5 191930|0.47222 191931|0.5 191932|0.44444 191933|0.51389 191934|0.23611 191935|0.45833 191936|0.47222 191937|0.33333 191938|0.5 191939|0.5 191940|0.43056 191941|0.23611 191942|0.5 191943|0.59722 191944|0.375 191945|0.5 191946|0.83333 191947|0.79167 191948|0.30556 191949|0.56944 191950|0.48611 191951|0.72222 191952|0.375 191953|0.23611 191954|0.70833 191955|0.069444 191956|0.72222 191957|0.47222 191958|0.47222 191959|0.43056 191960|0.79167 191961|0.47222 191962|0.5 191963|0.5 191964|0.55556 191965|0.27778 191966|0.31944 191967|0.55556 191968|0.16667 191969|0.18056 191970|0.5 191971|0.47222 191972|0.54167 191973|0.30556 191974|0.75 191975|0.68056 191976|0.26389 191977|0.083333 191978|0.66667 191979|0.47222 191980|0.5 191981|0.5 191982|0.55556 191983|0.59722 191984|0.44444 191985|0.5 191986|0.45833 191987|0.47222 191988|0.5 191989|0.44444 191990|0.69444 191991|0.76389 191992|0.75 191993|0.54167 191994|0.5 191995|0.30556 191996|0.41667 191997|0.18056 191998|0.63889 191999|0.59722 192000|0.52778 192001|0.54167 192002|0.375 192003|0.44444 192004|0.44444 192005|0.5 192006|0.625 192007|0.38889 192008|0.58333 192009|0.61111 192010|0.44444 192011|0.36111 192012|0.5 192013|0.5 192014|0.29167 192015|0.5 192016|0.51389 192017|0.5 192018|0.70833 192019|0.5 192020|0.5 192021|0.56944 192022|0.26389 192023|0.5 192024|0.5 192025|0.58333 192026|0.20833 192027|0.55556 192028|0.66667 192029|0.55556 192030|0.58333 192031|0.30556 192032|0.33333 192033|0.38889 192034|0.25 192035|0.40278 192036|0.55556 192037|0.30556 192038|0.45833 192039|0.5 192040|0.51389 192041|0.5 192042|0.44444 192043|0.5 192044|0.375 192045|0.5 192046|0.41667 192047|0.23611 192048|0.5 192049|0.5 192050|0.5 192051|0.38889 192052|0.54167 192053|0.34722 192054|0.43056 192055|0.38889 192056|0.5 192057|0.5 192058|0.5 192059|0.44444 192060|0.47222 192061|0.51389 192062|0.5 192063|0.30556 192064|0.15278 192065|0.5 192066|0.44444 192067|0.44444 192068|0.5 192069|0.54167 192070|0.5 192071|0.5 192072|0.5 192073|0.51389 192074|0.5 192075|0.34722 192076|0.54167 192077|0.61111 192078|0.66667 192079|0.54167 192080|0.5 192081|0.34722 192082|0.43056 192083|0.26389 192084|0.47222 192085|0.38889 192086|0.58333 192087|0.40278 192088|0.33333 192089|0.25 192090|0.31944 192091|0.26389 192092|0.23611 192093|0.23611 192094|0.15278 192095|0.15278 192096|0.23611 192097|0.27778 192098|0.54167 192099|0.56944 192100|0.48611 192101|0.27778 192102|0.38889 192103|0.25 192104|0.11111 192105|0.13889 192106|0.33333 192107|0.63889 192108|0.33333 192109|0.5 192110|0.5 192111|0.36111 192112|0.25 192113|0.52778 192114|0.44444 192115|0.097222 192116|0.45833 192117|0.5 192118|0.43056 192119|0.40278 192120|0.5 192121|0.79167 192122|0.61111 192123|0.55556 192124|0.51389 192125|0.5 192126|0.66667 192127|0.54167 192128|0.5 192129|0.58333 192130|0.55556 192131|0.55556 192132|0.72222 192133|0.77778 192134|0.54167 192135|0.625 192136|0.5 192137|0.5 192138|0.33333 192139|0.54167 192140|0.625 192141|0.5 192142|0.23611 192143|0.55556 192144|0.66667 192145|0.125 192146|0.5 192147|0.5 192148|0.66667 192149|0.36111 192150|0.47222 192151|0.61111 192152|0.30556 192153|0.15278 192154|0.5 192155|0.5 192156|0.22222 192157|0.5 192158|0.5 192159|0.54167 192160|0.41667 192161|0.19444 192162|0.31944 192163|0.66667 192164|0.375 192165|0.48611 192166|0.44444 192167|0.5 192168|0.5 192169|0.5 192170|0.5 192171|0.5 192172|0.33333 192173|0.375 192174|0.5 192175|0.55556 192176|0.38889 192177|0.56944 192178|0.47222 192179|0.5 192180|0.26389 192181|0.27778 192182|0.41667 192183|0.48611 192184|0.44444 192185|0.45833 192186|0.30556 192187|0.5 192188|0.31944 192189|0.20833 192190|0.34722 192191|0.5 192192|0.59722 192193|0.625 192194|0.5 192195|0.59722 192196|0.5 192197|0.5 192198|0.38889 192199|0.5 192200|0.51389 192201|0.61111 192202|0.54167 192203|0.43056 192204|0.5 192205|0.63889 192206|0.51389 192207|0.63889 192208|0.38889 192209|0.66667 192210|0.61111 192211|0.5 192212|0.41667 192213|0.56944 192214|0.52778 192215|0.41667 192216|0.52778 192217|0.52778 192218|0.48611 192219|0.54167 192220|0.625 192221|0.25 192222|0.61111 192223|0.47222 192224|0.33333 192225|0.47222 192226|0.5 192227|0.44444 192228|0.5 192229|0.36111 192230|0.5 192231|0.65278 192232|0.44444 192233|0.375 192234|0.56944 192235|0.125 192236|0.52778 192237|0.51389 192238|0.79167 192239|0.44444 192240|0.45833 192241|0.55556 192242|0.20833 192243|0.55556 192244|0.47222 192245|0.5 192246|0.48611 192247|0.69444 192248|0.5 192249|0.5 192250|0.23611 192251|0.45833 192252|0.33333 192253|0.25 192254|0.41667 192255|0.5 192256|0.63889 192257|0.36111 192258|0.34722 192259|0.48611 192260|0.40278 192261|0.33333 192262|0.5 192263|0.27778 192264|0.51389 192265|0.5 192266|0.5 192267|0.56944 192268|0.5 192269|0.31944 192270|0.5 192271|0.25 192272|0.5 192273|0.47222 192274|0.63889 192275|0.5 192276|0.48611 192277|0.5 192278|0.52778 192279|0.51389 192280|0.61111 192281|0.58333 192282|0.45833 192283|0.5 192284|0.77778 192285|0.72222 192286|0.52778 192287|0.52778 192288|0.44444 192289|0.5 192290|0.26389 192291|0.38889 192292|0.54167 192293|0.48611 192294|0.16667 192295|0.47222 192296|0.56944 192297|0.51389 192298|0.51389 192299|0.23611 192300|0.375 192301|0.13889 192302|0.5 192303|0.18056 192304|0.27778 192305|0.5 192306|0.5 192307|0.16667 192308|0.27778 192309|0.5 192310|0.375 192311|0.56944 192312|0.25 192313|0.25 192314|0.23611 192315|0.40278 192316|0.41667 192317|0.72222 192318|0.41667 192319|0.58333 192320|0.30556 192321|0.5 192322|0.69444 192323|0.33333 192324|0.51389 192325|0.5 192326|0.40278 192327|0.20833 192328|0.40278 192329|0.41667 192330|0.48611 192331|0.43056 192332|0.083333 192333|0.75 192334|0.27778 192335|0.22222 192336|0.27778 192337|0.36111 192338|0.26389 192339|0.5 192340|0.66667 192341|0.44444 192342|0.51389 192343|0.65278 192344|0.27778 192345|0.5 192346|0.33333 192347|0.55556 192348|0.5 192349|0.5 192350|0.20833 192351|0.5 192352|0.68056 192353|0.63889 192354|0.5 192355|0.5 192356|0.25 192357|0.29167 192358|0.25 192359|0.20833 192360|0.5 192361|0.5 192362|0.52778 192363|0.34722 192364|0.33333 192365|0.54167 192366|0.61111 192367|0.48611 192368|0.58333 192369|0.54167 192370|0.33333 192371|0.52778 192372|0.69444 192373|0.40278 192374|0.56944 192375|0.5 192376|0.54167 192377|0.22222 192378|0.38889 192379|0.51389 192380|0.27778 192381|0.5 192382|0.55556 192383|0.29167 192384|0.56944 192385|0.25 192386|0.43056 192387|0.41667 192388|0.44444 192389|0.41667 192390|0.27778 192391|0.36111 192392|0.56944 192393|0.61111 192394|0.55556 192395|0.43056 192396|0.61111 192397|0.63889 192398|0.58333 192399|0.41667 192400|0.55556 192401|0.70833 192402|0.41667 192403|0.69444 192404|0.5 192405|0.625 192406|0.61111 192407|0.63889 192408|0.70833 192409|0.63889 192410|0.70833 192411|0.52778 192412|0.58333 192413|0.63889 192414|0.58333 192415|0.44444 192416|0.375 192417|0.38889 192418|0.5 192419|0.5 192420|0.5 192421|0.5 192422|0.55556 192423|0.5 192424|0.5 192425|0.43056 192426|0.5 192427|0.90278 192428|0.88889 192429|0.69444 192430|0.65278 192431|0.63889 192432|0.23611 192433|0.47222 192434|0.5 192435|0.31944 192436|0.29167 192437|0.31944 192438|0.33333 192439|0.16667 192440|0.5 192441|0.44444 192442|0.38889 192443|0.54167 192444|0.41667 192445|0.48611 192446|0.5 192447|0.33333 192448|0.79167 192449|0.54167 192450|0.36111 192451|0.58333 192452|0.51389 192453|0.41667 192454|0.54167 192455|0.38889 192456|0.5 192457|0.61111 192458|0.76389 192459|0.52778 192460|0.18056 192461|0.72222 192462|0.52778 192463|0.73611 192464|0.66667 192465|0.5 192466|0.43056 192467|0.73611 192468|0.41667 192469|0.19444 192470|0.40278 192471|0.5 192472|0.51389 192473|0.5 192474|0.375 192475|0.18056 192476|0.44444 192477|0.45833 192478|0.18056 192479|0.36111 192480|0.55556 192481|0.5 192482|0.43056 192483|0.40278 192484|0.66667 192485|0.36111 192486|0.375 192487|0.5 192488|0.40278 192489|0.40278 192490|0.55556 192491|0.36111 192492|0.65278 192493|0.43056 192494|0.097222 192495|0.055556 192496|0.013889 192497|0 192498|0.44444 192499|0.48611 192500|0.55556 192501|0.65278 192502|0.44444 192503|0.58333 192504|0.72222 192505|0.34722 192506|0.11111 192507|0.65278 192508|0.65278 192509|0.20833 192510|0.66667 192511|0.51389 192512|0.66667 192513|0.48611 192514|0.55556 192515|0.45833 192516|0.86111 192517|0.77778 192518|0.79167 192519|0.83333 192520|0.29167 192521|0.5 192522|0.61111 192523|0.65278 192524|0.68056 192525|0.51389 192526|0.75 192527|0.75 192528|0.70833 192529|0.52778 192530|0.54167 192531|0.73611 192532|0.45833 192533|0.41667 192534|0.375 192535|0.66667 192536|0.20833 192537|0.20833 192538|0.38889 192539|0.29167 192540|0.52778 192541|0.375 192542|0.61111 192543|0.77778 192544|0.16667 192545|0.30556 192546|0.84722 192547|0.52778 192548|0.33333 192549|0.86111 192550|0.52778 192551|0.77778 192552|0.069444 192553|0.30556 192554|0.11111 192555|0.77778 192556|0.79167 192557|0.41667 192558|0.25 192559|0.5 192560|0.11111 192561|0.43056 192562|0.48611 192563|0.19444 192564|0.66667 192565|0.5 192566|0.40278 192567|0.5 192568|0.54167 192569|0.5 192570|0.23611 192571|0.18056 192572|0.27778 192573|0.5 192574|0.65278 192575|0.22222 192576|0.16667 192577|0.625 192578|0.26389 192579|0.34722 192580|0.33333 192581|0.375 192582|0.22222 192583|0.13889 192584|0.11111 192585|0.13889 192586|0.38889 192587|0.5 192588|0.44444 192589|0.51389 192590|0.13889 192591|0.51389 192592|0.097222 192593|0.11111 192594|0.11111 192595|0.13889 192596|0.72222 192597|0.36111 192598|0.625 192599|0.83333 192600|0.73611 192601|0.83333 192602|0.55556 192603|0.65278 192604|0.66667 192605|0.63889 192606|0.80556 192607|0.73611 192608|0.5 192609|0.80556 192610|0.70833 192611|0.5 192612|0.55556 192613|0.48611 192614|0.55556 192615|0.36111 192616|0.40278 192617|0.43056 192618|0.30556 192619|0.29167 192620|0.44444 192621|0.45833 192622|0.5 192623|0.22222 192624|0.5 192625|0.61111 192626|0.52778 192627|0.59722 192628|0.63889 192629|0.54167 192630|0.47222 192631|0.47222 192632|0.33333 192633|0.66667 192634|0.18056 192635|0.11111 192636|0.26389 192637|0.51389 192638|0.19444 192639|0.26389 192640|0.19444 192641|0.51389 192642|0.61111 192643|0.20833 192644|0.18056 192645|0.25 192646|0.18056 192647|0.33333 192648|0.33333 192649|0.36111 192650|0.26389 192651|0.36111 192652|0.375 192653|0.5 192654|0.16667 192655|0.25 192656|0.43056 192657|0.55556 192658|0.375 192659|0.55556 192660|0.33333 192661|0.40278 192662|0.33333 192663|0.23611 192664|0.5 192665|0.52778 192666|0.5 192667|0.5 192668|0.38889 192669|0.52778 192670|0.40278 192671|0.30556 192672|0.13889 192673|0.41667 192674|0.69444 192675|0.47222 192676|0.61111 192677|0.63889 192678|0.43056 192679|0.48611 192680|0.51389 192681|0.5 192682|0.11111 192683|0.5 192684|0.44444 192685|0.47222 192686|0.51389 192687|0.75 192688|0.55556 192689|0.51389 192690|0.5 192691|0.27778 192692|0.61111 192693|0.5 192694|0.5 192695|0.5 192696|0.5 192697|0.5 192698|0.5 192699|0.5 192700|0.52778 192701|0.5 192702|0.5 192703|0.5 192704|0.5 192705|0.54167 192706|0.58333 192707|0.5 192708|0.5 192709|0.66667 192710|0.55556 192711|0.47222 192712|0.45833 192713|0.19444 192714|0.5 192715|0.5 192716|0.73611 192717|0.625 192718|0.41667 192719|0.44444 192720|0.34722 192721|0.61111 192722|0.16667 192723|0.5 192724|0.36111 192725|0.48611 192726|0.5 192727|0.41667 192728|0.43056 192729|0.41667 192730|0.48611 192731|0.30556 192732|0.40278 192733|0.29167 192734|0.29167 192735|0.5 192736|0.29167 192737|0.5 192738|0.51389 192739|0.19444 192740|0.45833 192741|0.30556 192742|0.26389 192743|0.66667 192744|0.30556 192745|0.625 192746|0.44444 192747|0.5 192748|0.63889 192749|0.61111 192750|0.30556 192751|0.43056 192752|0.58333 192753|0.43056 192754|0.40278 192755|0.25 192756|0.36111 192757|0.34722 192758|0.5 192759|0.5 192760|0.5 192761|0.19444 192762|0.31944 192763|0.5 192764|0.58333 192765|0.75 192766|0.59722 192767|0.26389 192768|0.48611 192769|0.41667 192770|0.5 192771|0.5 192772|0.23611 192773|0.30556 192774|0.13889 192775|0.44444 192776|0.38889 192777|0.44444 192778|0.5 192779|0.5 192780|0.59722 192781|0.5 192782|0.44444 192783|0.44444 192784|0.33333 192785|0.33333 192786|0.22222 192787|0.31944 192788|0.38889 192789|0.5 192790|0.22222 192791|0.72222 192792|0.52778 192793|0.52778 192794|0.5 192795|0.40278 192796|0.40278 192797|0.56944 192798|0.5 192799|0.38889 192800|0.34722 192801|0.38889 192802|0.59722 192803|0.29167 192804|0.56944 192805|0.5 192806|0.55556 192807|0.5 192808|0.56944 192809|0.5 192810|0.54167 192811|0.48611 192812|0.5 192813|0.48611 192814|0.5 192815|0.29167 192816|0.33333 192817|0.38889 192818|0.27778 192819|0.20833 192820|0.25 192821|0.5 192822|0.45833 192823|0.29167 192824|0.22222 192825|0.5 192826|0.63889 192827|0.5 192828|0.375 192829|0.5 192830|0.43056 192831|0.83333 192832|0.73611 192833|0.38889 192834|0.27778 192835|0.5 192836|0.41667 192837|0.51389 192838|0.26389 192839|0.41667 192840|0.5 192841|0.38889 192842|0.38889 192843|0.45833 192844|0.5 192845|0.48611 192846|0.48611 192847|0.5 192848|0.54167 192849|0.33333 192850|0.66667 192851|0.44444 192852|0.54167 192853|0.73611 192854|0.41667 192855|0.36111 192856|0.25 192857|0.29167 192858|0.25 192859|0.19444 192860|0.48611 192861|0.40278 192862|0.73611 192863|0.22222 192864|0.18056 192865|0.41667 192866|0.84722 192867|0.5 192868|0.11111 192869|0.34722 192870|0.16667 192871|0.15278 192872|0.54167 192873|0.51389 192874|0.38889 192875|0.5 192876|0.5 192877|0.43056 192878|0.40278 192879|0.44444 192880|0.41667 192881|0.54167 192882|0.54167 192883|0.52778 192884|0.5 192885|0.5 192886|0.5 192887|0.5 192888|0.52778 192889|0.5 192890|0.44444 192891|0.51389 192892|0.5 192893|0.33333 192894|0.23611 192895|0.5 192896|0.34722 192897|0.51389 192898|0.5 192899|0.58333 192900|0.48611 192901|0.38889 192902|0.45833 192903|0.5 192904|0.55556 192905|0.5 192906|0.5 192907|0.61111 192908|0.5 192909|0.56944 192910|0.34722 192911|0.58333 192912|0.55556 192913|0.55556 192914|0.5 192915|0.44444 192916|0.44444 192917|0.52778 192918|0.5 192919|0.5 192920|0.5 192921|0.38889 192922|0.30556 192923|0.5 192924|0.5 192925|0.34722 192926|0.66667 192927|0.5 192928|0.44444 192929|0.52778 192930|0.52778 192931|0.52778 192932|0.51389 192933|0.41667 192934|0.5 192935|0.38889 192936|0.55556 192937|0.38889 192938|0.25 192939|0.22222 192940|0.25 192941|0.44444 192942|0.27778 192943|0.65278 192944|0.43056 192945|0.43056 192946|0.44444 192947|0.11111 192948|0.5 192949|0.5 192950|0.19444 192951|0.5 192952|0.45833 192953|0.44444 192954|0.5 192955|0.48611 192956|0.5 192957|0.65278 192958|0.47222 192959|0.59722 192960|0.625 192961|0.56944 192962|0.13889 192963|0.44444 192964|0.63889 192965|0.44444 192966|0.47222 192967|0.44444 192968|0.5 192969|0.47222 192970|0.36111 192971|0.58333 192972|0.13889 192973|0.52778 192974|0.5 192975|0.375 192976|0.45833 192977|0.51389 192978|0.51389 192979|0.73611 192980|0.27778 192981|0.61111 192982|0.61111 192983|0.69444 192984|0.5 192985|0.31944 192986|0.65278 192987|0.47222 192988|0.30556 192989|0.26389 192990|0.40278 192991|0.26389 192992|0.19444 192993|0.33333 192994|0.125 192995|0.5 192996|0.52778 192997|0.19444 192998|0.18056 192999|0.16667 193000|0.22222 193001|0.44444 193002|0.43056 193003|0.80556 193004|0.5 193005|0.44444 193006|0.5 193007|0.80556 193008|0.43056 193009|0.55556 193010|0.51389 193011|0.72222 193012|0.5 193013|0.5 193014|0.55556 193015|0.41667 193016|0.36111 193017|0.47222 193018|0.56944 193019|0.59722 193020|0.083333 193021|0.23611 193022|0.63889 193023|0.77778 193024|0.48611 193025|0.58333 193026|0.375 193027|0.625 193028|0.375 193029|0.5 193030|0.27778 193031|0.22222 193032|0.23611 193033|0.5 193034|0.77778 193035|0.38889 193036|0.25 193037|0.66667 193038|0.36111 193039|0.18056 193040|0.44444 193041|0.5 193042|0.47222 193043|0.47222 193044|0.52778 193045|0.29167 193046|0.31944 193047|0.5 193048|0.5 193049|0.48611 193050|0.43056 193051|0.5 193052|0.54167 193053|0.25 193054|0.41667 193055|0.27778 193056|0.31944 193057|0.16667 193058|0.055556 193059|0.36111 193060|0.34722 193061|0.27778 193062|0.43056 193063|0.27778 193064|0.20833 193065|0.44444 193066|0.45833 193067|0.5 193068|0.18056 193069|0.5 193070|0.5 193071|0.48611 193072|0.44444 193073|0.81944 193074|0.63889 193075|0.44444 193076|0.45833 193077|0.75 193078|0.41667 193079|0.47222 193080|0.45833 193081|0.26389 193082|0.43056 193083|0.45833 193084|0.5 193085|0.5 193086|0.5 193087|0.70833 193088|0.625 193089|0.43056 193090|0.5 193091|0.5 193092|0.66667 193093|0.38889 193094|0.43056 193095|0.41667 193096|0.38889 193097|0.70833 193098|0.33333 193099|0.56944 193100|0.44444 193101|0.44444 193102|0.5 193103|0.29167 193104|0.16667 193105|0.54167 193106|0.29167 193107|0.19444 193108|0.55556 193109|0.41667 193110|0.5 193111|0.44444 193112|0.81944 193113|0.61111 193114|0.44444 193115|0.23611 193116|0.68056 193117|0.52778 193118|0.68056 193119|0.40278 193120|0.54167 193121|0.56944 193122|0.61111 193123|0.27778 193124|0.26389 193125|0.375 193126|0.65278 193127|0.5 193128|0.40278 193129|0.5 193130|0.31944 193131|0.18056 193132|0.38889 193133|0.20833 193134|0.16667 193135|0.40278 193136|0.33333 193137|0.27778 193138|0.5 193139|0.15278 193140|0.5 193141|0.56944 193142|0.27778 193143|0.5 193144|0.16667 193145|0.56944 193146|0.44444 193147|0.45833 193148|0.19444 193149|0.38889 193150|0.30556 193151|0.40278 193152|0.29167 193153|0.375 193154|0.47222 193155|0.5 193156|0.18056 193157|0.22222 193158|0.54167 193159|0.84722 193160|0.52778 193161|0.5 193162|0.51389 193163|0.72222 193164|0.44444 193165|0.59722 193166|0.61111 193167|0.73611 193168|0.61111 193169|0.59722 193170|0.625 193171|0.68056 193172|0.41667 193173|0.66667 193174|0.77778 193175|0.33333 193176|0.41667 193177|0.75 193178|0.59722 193179|0.625 193180|0.20833 193181|0.56944 193182|0.27778 193183|0.20833 193184|0.55556 193185|0.375 193186|0.33333 193187|0.76389 193188|0.29167 193189|0.22222 193190|0.25 193191|0.29167 193192|0.22222 193193|0.18056 193194|0.15278 193195|0.11111 193196|0.58333 193197|0.76389 193198|0.33333 193199|0.625 193200|0.59722 193201|0.5 193202|0.44444 193203|0.55556 193204|0.69444 193205|0.70833 193206|0.73611 193207|0.23611 193208|0.15278 193209|0.36111 193210|0.48611 193211|0.56944 193212|0.55556 193213|0.20833 193214|0.19444 193215|0.44444 193216|0.44444 193217|0.33333 193218|0.20833 193219|0.23611 193220|0.63889 193221|0.52778 193222|0.66667 193223|0.5 193224|0.27778 193225|0.25 193226|0.27778 193227|0.22222 193228|0.34722 193229|0.34722 193230|0.375 193231|0.5 193232|0.70833 193233|0.27778 193234|0.34722 193235|0.23611 193236|0.30556 193237|0.41667 193238|0.5 193239|0.29167 193240|0.33333 193241|0.22222 193242|0.59722 193243|0.54167 193244|0.33333 193245|0.59722 193246|0.27778 193247|0.45833 193248|0.30556 193249|0.56944 193250|0.5 193251|0.5 193252|0.47222 193253|0.5 193254|0.5 193255|0.5 193256|0.45833 193257|0.5 193258|0.5 193259|0.16667 193260|0.44444 193261|0.58333 193262|0.5 193263|0.40278 193264|0.5 193265|0.33333 193266|0.48611 193267|0.55556 193268|0.5 193269|0.625 193270|0.29167 193271|0.44444 193272|0.44444 193273|0.47222 193274|0.18056 193275|0.5 193276|0.5 193277|0.22222 193278|0.5 193279|0.44444 193280|0.44444 193281|0.52778 193282|0.5 193283|0.56944 193284|0.56944 193285|0.54167 193286|0.55556 193287|0.26389 193288|0.33333 193289|0.61111 193290|0.56944 193291|0.52778 193292|0.59722 193293|0.56944 193294|0.19444 193295|0.23611 193296|0.66667 193297|0.66667 193298|0.5 193299|0.27778 193300|0.51389 193301|0.44444 193302|0.40278 193303|0.41667 193304|0.65278 193305|0.625 193306|0.75 193307|0.5 193308|0.5 193309|0.5 193310|0.5 193311|0.5 193312|0.44444 193313|0.5 193314|0.55556 193315|0.59722 193316|0.41667 193317|0.55556 193318|0.5 193319|0.5 193320|0.47222 193321|0.22222 193322|0.61111 193323|0.79167 193324|0.31944 193325|0.66667 193326|0.63889 193327|0.55556 193328|0.36111 193329|0.5 193330|0.51389 193331|0.5 193332|0.44444 193333|0.34722 193334|0.5 193335|0.5 193336|0.61111 193337|0.5 193338|0.55556 193339|0.625 193340|0.55556 193341|0.51389 193342|0.20833 193343|0.33333 193344|0.38889 193345|0.55556 193346|0.5 193347|0.51389 193348|0.33333 193349|0.375 193350|0.5 193351|0.29167 193352|0.33333 193353|0.58333 193354|0.5 193355|0.5 193356|0.66667 193357|0.47222 193358|0.29167 193359|0.69444 193360|0.55556 193361|0.33333 193362|0.5 193363|0.56944 193364|0.29167 193365|0.5 193366|0.5 193367|0.43056 193368|0.33333 193369|0.59722 193370|0.5 193371|0.33333 193372|0.625 193373|0.5 193374|0.56944 193375|0.30556 193376|0.19444 193377|0.41667 193378|0.58333 193379|0.61111 193380|0.45833 193381|0.34722 193382|0.70833 193383|0.47222 193384|0.5 193385|0.52778 193386|0.70833 193387|0.5 193388|0.45833 193389|0.40278 193390|0.5 193391|0.56944 193392|0.51389 193393|0.58333 193394|0.47222 193395|0.375 193396|0.26389 193397|0.48611 193398|0.27778 193399|0.63889 193400|0.43056 193401|0.44444 193402|0.18056 193403|0.5 193404|0.33333 193405|0.36111 193406|0.59722 193407|0.25 193408|0.48611 193409|0.125 193410|0.23611 193411|0.36111 193412|0.125 193413|0.13889 193414|0.22222 193415|0.54167 193416|0.34722 193417|0.38889 193418|0.41667 193419|0.15278 193420|0.33333 193421|0.26389 193422|0.25 193423|0.31944 193424|0.51389 193425|0.5 193426|0.59722 193427|0.56944 193428|0.56944 193429|0.69444 193430|0.31944 193431|0.38889 193432|0.45833 193433|0.54167 193434|0.63889 193435|0.5 193436|0.20833 193437|0.44444 193438|0.44444 193439|0.23611 193440|0.56944 193441|0.34722 193442|0.30556 193443|0.027778 193444|0.23611 193445|0.5 193446|0.18056 193447|0.66667 193448|0.625 193449|0.58333 193450|0.27778 193451|0.18056 193452|0.5 193453|0.5 193454|0.45833 193455|0.38889 193456|0.22222 193457|0.27778 193458|0.23611 193459|0.63889 193460|0.70833 193461|0.5 193462|0.5 193463|0.54167 193464|0.77778 193465|0.75 193466|0.81944 193467|0.59722 193468|0.65278 193469|0.34722 193470|0.33333 193471|0.25 193472|0.23611 193473|0.27778 193474|0.45833 193475|0.375 193476|0.47222 193477|0.375 193478|0.47222 193479|0.40278 193480|0.55556 193481|0.38889 193482|0.48611 193483|0.5 193484|0.51389 193485|0.5 193486|0.26389 193487|0.59722 193488|0.47222 193489|0.40278 193490|0.38889 193491|0.75 193492|0.27778 193493|0.5 193494|0.52778 193495|0.34722 193496|0.5 193497|0.48611 193498|0.73611 193499|0.54167 193500|0.51389 193501|0.44444 193502|0.25 193503|0.625 193504|0.41667 193505|0.5 193506|0.5 193507|0.20833 193508|0.27778 193509|0.34722 193510|0.58333 193511|0.38889 193512|0.66667 193513|0.29167 193514|0.25 193515|0.48611 193516|0.51389 193517|0.375 193518|0.47222 193519|0.47222 193520|0.38889 193521|0.5 193522|0.48611 193523|0.43056 193524|0.097222 193525|0.375 193526|0.47222 193527|0.41667 193528|0.55556 193529|0.44444 193530|0.22222 193531|0.52778 193532|0.58333 193533|0.55556 193534|0.31944 193535|0.5 193536|0.58333 193537|0.48611 193538|0.27778 193539|0.29167 193540|0.25 193541|0.66667 193542|0.54167 193543|0.68056 193544|0.5 193545|0.013889 193546|0.069444 193547|0.5 193548|0.5 193549|0.5 193550|0.61111 193551|0.16667 193552|0.59722 193553|0.33333 193554|0.38889 193555|0.29167 193556|0.16667 193557|0.29167 193558|0.44444 193559|0.63889 193560|0.55556 193561|0.45833 193562|0.625 193563|0.52778 193564|0.48611 193565|0.33333 193566|0.625 193567|0.29167 193568|0.40278 193569|0.27778 193570|0.56944 193571|0.5 193572|0.55556 193573|0.45833 193574|0.83333 193575|0.33333 193576|0.18056 193577|0.15278 193578|0.31944 193579|0.25 193580|0.58333 193581|0.54167 193582|0.31944 193583|0.66667 193584|0.5 193585|0.5 193586|0.5 193587|0.26389 193588|0.5 193589|0.5 193590|0.36111 193591|0.34722 193592|0.5 193593|0.52778 193594|0.44444 193595|0.22222 193596|0.5 193597|0.43056 193598|0.58333 193599|0.5 193600|0.5 193601|0.5 193602|0.625 193603|0.34722 193604|0.40278 193605|0.51389 193606|0.48611 193607|0.38889 193608|0.18056 193609|0.5 193610|0.5 193611|0.5 193612|0.59722 193613|0.33333 193614|0.30556 193615|0.26389 193616|0.61111 193617|0.5 193618|0.5 193619|0.54167 193620|0.22222 193621|0.52778 193622|0.33333 193623|0.31944 193624|0.48611 193625|0.36111 193626|0.33333 193627|0.55556 193628|0.51389 193629|0.54167 193630|0.5 193631|0.27778 193632|0.16667 193633|0.44444 193634|0.31944 193635|0.44444 193636|0.43056 193637|0.26389 193638|0.5 193639|0.16667 193640|0.125 193641|0.22222 193642|0.44444 193643|0.45833 193644|0.58333 193645|0.625 193646|0.44444 193647|0.22222 193648|0.22222 193649|0.70833 193650|0.5 193651|0.58333 193652|0.43056 193653|0.5 193654|0.5 193655|0.43056 193656|0.44444 193657|0.5 193658|0.54167 193659|0.30556 193660|0.5 193661|0.26389 193662|0.23611 193663|0.5 193664|0.5 193665|0.5 193666|0.625 193667|0.52778 193668|0.51389 193669|0.5 193670|0.59722 193671|0.52778 193672|0.68056 193673|0.5 193674|0.22222 193675|0.5 193676|0.52778 193677|0.52778 193678|0.29167 193679|0.48611 193680|0.5 193681|0.56944 193682|0.58333 193683|0.625 193684|0.52778 193685|0.5 193686|0.52778 193687|0.5 193688|0.5 193689|0.56944 193690|0.38889 193691|0.59722 193692|0.5 193693|0.58333 193694|0.54167 193695|0.61111 193696|0.58333 193697|0.5 193698|0.40278 193699|0.5 193700|0.5 193701|0.77778 193702|0.52778 193703|0.33333 193704|0.18056 193705|0.47222 193706|0.51389 193707|0.055556 193708|0.25 193709|0.5 193710|0.41667 193711|0.45833 193712|0.51389 193713|0.5 193714|0.5 193715|0.5 193716|0.59722 193717|0.44444 193718|0.5 193719|0.41667 193720|0.5 193721|0.31944 193722|0.43056 193723|0.56944 193724|0.41667 193725|0.5 193726|0.5 193727|0.38889 193728|0.52778 193729|0.40278 193730|0.5 193731|0.43056 193732|0.36111 193733|0.55556 193734|0.52778 193735|0.5 193736|0.47222 193737|0.72222 193738|0.25 193739|0.5 193740|0.63889 193741|0.5 193742|0.48611 193743|0.38889 193744|0.47222 193745|0.61111 193746|0.5 193747|0.44444 193748|0.5 193749|0.36111 193750|0.44444 193751|0.70833 193752|0.61111 193753|0.63889 193754|0.69444 193755|0.58333 193756|0.52778 193757|0.69444 193758|0.58333 193759|0.5 193760|0.5 193761|0.33333 193762|0.20833 193763|0.18056 193764|0.15278 193765|0.625 193766|0.54167 193767|0.65278 193768|0.69444 193769|0.51389 193770|0.25 193771|0.27778 193772|0.5 193773|0.5 193774|0.33333 193775|0.58333 193776|0.5 193777|0.5 193778|0.65278 193779|0.5 193780|0.48611 193781|0.48611 193782|0.5 193783|0.5 193784|0.23611 193785|0.48611 193786|0.23611 193787|0.51389 193788|0.65278 193789|0.5 193790|0.27778 193791|0.20833 193792|0.5 193793|0.5 193794|0.5 193795|0.36111 193796|0.55556 193797|0.72222 193798|0.5 193799|0.5 193800|0.5 193801|0.58333 193802|0.5 193803|0.44444 193804|0.5 193805|0.5 193806|0.36111 193807|0.66667 193808|0.375 193809|0.51389 193810|0.5 193811|0.58333 193812|0.5 193813|0.20833 193814|0.5 193815|0.44444 193816|0.58333 193817|0.5 193818|0.5 193819|0.36111 193820|0.51389 193821|0.5 193822|0.27778 193823|0.16667 193824|0.23611 193825|0 193826|0.31944 193827|0.5 193828|0.43056 193829|0.5 193830|0.38889 193831|0.38889 193832|0.58333 193833|0.5 193834|0.48611 193835|0.29167 193836|0.5 193837|0.375 193838|0.34722 193839|0.26389 193840|0.34722 193841|0.26389 193842|0.38889 193843|0.36111 193844|0.48611 193845|0.5 193846|0.51389 193847|0.54167 193848|0.5 193849|0.48611 193850|0.5 193851|0.79167 193852|0.52778 193853|0.66667 193854|0.65278 193855|0.43056 193856|0.55556 193857|0.55556 193858|0.31944 193859|0.77778 193860|0.68056 193861|0.73611 193862|0.19444 193863|0.38889 193864|0.38889 193865|0.38889 193866|0.58333 193867|0.47222 193868|0.54167 193869|0.5 193870|0.51389 193871|0.33333 193872|0.38889 193873|0.375 193874|0.47222 193875|0.38889 193876|0.56944 193877|0.27778 193878|0.54167 193879|0.63889 193880|0.76389 193881|0.055556 193882|0.44444 193883|0.44444 193884|0.36111 193885|0.36111 193886|0.5 193887|0.27778 193888|0.29167 193889|0.13889 193890|0.15278 193891|0.47222 193892|0.22222 193893|0.45833 193894|0.56944 193895|0.375 193896|0 193897|0.069444 193898|0.083333 193899|0.34722 193900|0.29167 193901|0.34722 193902|0.31944 193903|0.36111 193904|0.29167 193905|0.38889 193906|0.51389 193907|0.5 193908|0 193909|0.11111 193910|0.5 193911|0.27778 193912|0.5 193913|0.54167 193914|0.5 193915|0.5 193916|0.375 193917|0.51389 193918|0.5 193919|0.41667 193920|0.36111 193921|0.41667 193922|0.44444 193923|0.5 193924|0.5 193925|0.47222 193926|0.44444 193927|0.33333 193928|0.083333 193929|0.19444 193930|0.13889 193931|0.083333 193932|0.11111 193933|0.23611 193934|0.30556 193935|0.36111 193936|0.27778 193937|0.20833 193938|0.5 193939|0.15278 193940|0.125 193941|0.31944 193942|0.31944 193943|0.36111 193944|0.18056 193945|0.38889 193946|0.625 193947|0.36111 193948|0.51389 193949|0.23611 193950|0.33333 193951|0.20833 193952|0.13889 193953|0.20833 193954|0.29167 193955|0.27778 193956|0.5 193957|0.44444 193958|0.30556 193959|0.19444 193960|0.36111 193961|0.36111 193962|0.069444 193963|0.26389 193964|0.26389 193965|0.29167 193966|0.23611 193967|0.20833 193968|0.16667 193969|0.25 193970|0.41667 193971|0.625 193972|0.29167 193973|0.45833 193974|0.30556 193975|0.54167 193976|0.61111 193977|0.55556 193978|0.43056 193979|0.29167 193980|0.375 193981|0.5 193982|0.69444 193983|0.65278 193984|0.5 193985|0.31944 193986|0.38889 193987|0.16667 193988|0.36111 193989|0.51389 193990|0.5 193991|0.5 193992|0.48611 193993|0.59722 193994|0.43056 193995|0.43056 193996|0.66667 193997|0.625 193998|0.38889 193999|0.44444 194000|0.26389 194001|0.375 194002|0.31944 194003|0.38889 194004|0.34722 194005|0.36111 194006|0.22222 194007|0.40278 194008|0.11111 194009|0.19444 194010|0.52778 194011|0.5 194012|0.5 194013|0.5 194014|0.55556 194015|0.5 194016|0.5 194017|0.27778 194018|0.5 194019|0.45833 194020|0.29167 194021|0.47222 194022|0.33333 194023|0.44444 194024|0.63889 194025|0.45833 194026|0.52778 194027|0.51389 194028|0.5 194029|0.48611 194030|0.48611 194031|0.61111 194032|0.68056 194033|0.59722 194034|0.625 194035|0.56944 194036|0.29167 194037|0.58333 194038|0.5 194039|0.54167 194040|0.5 194041|0.5 194042|0.58333 194043|0.38889 194044|0.61111 194045|0.41667 194046|0.23611 194047|0.48611 194048|0.45833 194049|0.51389 194050|0.31944 194051|0.31944 194052|0.125 194053|0.45833 194054|0.51389 194055|0.15278 194056|0.34722 194057|0.5 194058|0.55556 194059|0.55556 194060|0.43056 194061|0.38889 194062|0.44444 194063|0.23611 194064|0.34722 194065|0.40278 194066|0.51389 194067|0.52778 194068|0.25 194069|0.55556 194070|0.43056 194071|0.69444 194072|0.52778 194073|0.5 194074|0.48611 194075|0.5 194076|0.38889 194077|0.61111 194078|0.48611 194079|0.34722 194080|0.56944 194081|0.72222 194082|0.33333 194083|0.23611 194084|0.23611 194085|0.20833 194086|0.72222 194087|0.56944 194088|0.26389 194089|0.59722 194090|0.23611 194091|0.27778 194092|0.40278 194093|0.43056 194094|0.29167 194095|0.33333 194096|0.43056 194097|0.63889 194098|0.41667 194099|0.625 194100|0.48611 194101|0.54167 194102|0.58333 194103|0.38889 194104|0.44444 194105|0.55556 194106|0.40278 194107|0.31944 194108|0.73611 194109|0.41667 194110|0.31944 194111|0.44444 194112|0.20833 194113|0.19444 194114|0.41667 194115|0.59722 194116|0.54167 194117|0.59722 194118|0.29167 194119|0.5 194120|0.61111 194121|0.51389 194122|0.59722 194123|0.41667 194124|0.38889 194125|0.41667 194126|0.44444 194127|0.52778 194128|0.52778 194129|0.65278 194130|0.5 194131|0.34722 194132|0.125 194133|0.375 194134|0.55556 194135|0.16667 194136|0.27778 194137|0.16667 194138|0.75 194139|0.47222 194140|0.44444 194141|0.30556 194142|0.625 194143|0.40278 194144|0.20833 194145|0.40278 194146|0.23611 194147|0.58333 194148|0.5 194149|0.5 194150|0.47222 194151|0.80556 194152|0.63889 194153|0.75 194154|0.5 194155|0.43056 194156|0.5 194157|0.65278 194158|0.40278 194159|0.31944 194160|0.20833 194161|0.52778 194162|0.625 194163|0.36111 194164|0.5 194165|0.88889 194166|0.25 194167|0.47222 194168|0.097222 194169|0.26389 194170|0.56944 194171|0.55556 194172|0.59722 194173|0.83333 194174|0.54167 194175|0.52778 194176|0.55556 194177|0.72222 194178|0.5 194179|0.43056 194180|0.65278 194181|0.48611 194182|0.70833 194183|0.36111 194184|0.61111 194185|0.23611 194186|0.51389 194187|0.41667 194188|0.80556 194189|0.41667 194190|0.48611 194191|0.31944 194192|0.625 194193|0.75 194194|0.44444 194195|0.31944 194196|0.44444 194197|0.54167 194198|0.58333 194199|0.54167 194200|0.15278 194201|0.40278 194202|0.80556 194203|0.5 194204|0.66667 194205|0.44444 194206|0.33333 194207|0.51389 194208|0.375 194209|0.59722 194210|0.45833 194211|0.36111 194212|0.19444 194213|0.41667 194214|0.5 194215|0.54167 194216|0.41667 194217|0.55556 194218|0.38889 194219|0.375 194220|0.36111 194221|0.20833 194222|0.51389 194223|0.70833 194224|0.29167 194225|0.5 194226|0.59722 194227|0.5 194228|0.5 194229|0.5 194230|0.70833 194231|0.36111 194232|0.30556 194233|0.41667 194234|0.34722 194235|0.34722 194236|0.44444 194237|0.31944 194238|0.38889 194239|0.41667 194240|0.45833 194241|0.59722 194242|0.47222 194243|0.5 194244|0.56944 194245|0.80556 194246|0.58333 194247|0.76389 194248|0.56944 194249|0.76389 194250|0.77778 194251|0.65278 194252|0.5 194253|0.44444 194254|0.30556 194255|0.31944 194256|0.38889 194257|0.44444 194258|0.5 194259|0.16667 194260|0.5 194261|0.34722 194262|0.22222 194263|0.65278 194264|0.59722 194265|0.52778 194266|0.375 194267|0.5 194268|0.33333 194269|0.43056 194270|0.375 194271|0.38889 194272|0.30556 194273|0.40278 194274|0.54167 194275|0.30556 194276|0.40278 194277|0.34722 194278|0.59722 194279|0.38889 194280|0.38889 194281|0.52778 194282|0.15278 194283|0.68056 194284|0.69444 194285|0.47222 194286|0.58333 194287|0.41667 194288|0.19444 194289|0.30556 194290|0.47222 194291|0.55556 194292|0.61111 194293|0.55556 194294|0.5 194295|0.51389 194296|0.34722 194297|0.34722 194298|0.5 194299|0.36111 194300|0.22222 194301|0.22222 194302|0.43056 194303|0.44444 194304|0.44444 194305|0.33333 194306|0.38889 194307|0.20833 194308|0.34722 194309|0.47222 194310|0.16667 194311|0.27778 194312|0.23611 194313|0.25 194314|0.44444 194315|0.38889 194316|0.56944 194317|0.33333 194318|0.20833 194319|0.30556 194320|0.375 194321|0.097222 194322|0.27778 194323|0.5 194324|0.47222 194325|0.45833 194326|0.23611 194327|0.5 194328|0.43056 194329|0.5 194330|0.29167 194331|0.5 194332|0.29167 194333|0.61111 194334|0.55556 194335|0.52778 194336|0.36111 194337|0.25 194338|0.61111 194339|0.38889 194340|0.44444 194341|0.5 194342|0.44444 194343|0.59722 194344|0.38889 194345|0.5 194346|0.375 194347|0.54167 194348|0.83333 194349|0.25 194350|0.097222 194351|0.47222 194352|0.15278 194353|0.36111 194354|0.45833 194355|0.59722 194356|0.43056 194357|0.23611 194358|0.31944 194359|0.36111 194360|0.47222 194361|0.55556 194362|0.375 194363|0.23611 194364|0.48611 194365|0.27778 194366|0.38889 194367|0.44444 194368|0.27778 194369|0.44444 194370|0.47222 194371|0.33333 194372|0.54167 194373|0.61111 194374|0.45833 194375|0.52778 194376|0.41667 194377|0.30556 194378|0.29167 194379|0.38889 194380|0.44444 194381|0.36111 194382|0.41667 194383|0.38889 194384|0.19444 194385|0.36111 194386|0.25 194387|0.34722 194388|0.22222 194389|0.48611 194390|0.59722 194391|0.48611 194392|0.30556 194393|0.5 194394|0.5 194395|0.65278 194396|0.5 194397|0.27778 194398|0.375 194399|0.31944 194400|0.52778 194401|0.5 194402|0.22222 194403|0.5 194404|0.47222 194405|0.54167 194406|0.5 194407|0.5 194408|0.5 194409|0.69444 194410|0.77778 194411|0.29167 194412|0.43056 194413|0.36111 194414|0.44444 194415|0.47222 194416|0.43056 194417|0.069444 194418|0.36111 194419|0.61111 194420|0.5 194421|0.5 194422|0.5 194423|0.48611 194424|0.5 194425|0.25 194426|0.54167 194427|0.45833 194428|0.51389 194429|0.5 194430|0.5 194431|0.5 194432|0.40278 194433|0.5 194434|0.31944 194435|0.375 194436|0.375 194437|0.22222 194438|0.56944 194439|0.27778 194440|0.34722 194441|0.30556 194442|0.16667 194443|0.30556 194444|0.48611 194445|0.25 194446|0.55556 194447|0.56944 194448|0.44444 194449|0.26389 194450|0.30556 194451|0.5 194452|0.5 194453|0.38889 194454|0.5 194455|0.5 194456|0.45833 194457|0.5 194458|0.44444 194459|0.5 194460|0.69444 194461|0.5 194462|0.47222 194463|0.625 194464|0.22222 194465|0.5 194466|0.625 194467|0 194468|0.36111 194469|0.5 194470|0.43056 194471|0.375 194472|0.38889 194473|0.069444 194474|0.38889 194475|0.5 194476|0.48611 194477|0.51389 194478|0.61111 194479|0.66667 194480|0.38889 194481|0.68056 194482|0.61111 194483|0.63889 194484|0.48611 194485|0.36111 194486|0.375 194487|0.5 194488|0.38889 194489|0.65278 194490|0.40278 194491|0.27778 194492|0.33333 194493|0.40278 194494|0.34722 194495|0.44444 194496|0.5 194497|0.66667 194498|0.52778 194499|0.75 194500|0.34722 194501|0.13889 194502|0.34722 194503|0.34722 194504|0.59722 194505|0.41667 194506|0.40278 194507|0.22222 194508|0.625 194509|0.73611 194510|0.40278 194511|0.66667 194512|0.5 194513|0.63889 194514|0.5 194515|0.41667 194516|0.54167 194517|0.59722 194518|0.59722 194519|0.5 194520|0.52778 194521|0.77778 194522|0.54167 194523|0.51389 194524|0.25 194525|0.19444 194526|0.69444 194527|0.41667 194528|0.91667 194529|0.90278 194530|0.79167 194531|0.76389 194532|0.63889 194533|0.72222 194534|0.27778 194535|0.66667 194536|0.61111 194537|0.73611 194538|0.83333 194539|0.47222 194540|0.59722 194541|0.375 194542|0.61111 194543|0.56944 194544|0.69444 194545|0.58333 194546|0.5 194547|0.55556 194548|0.52778 194549|0.58333 194550|0.51389 194551|0.43056 194552|0.33333 194553|0.56944 194554|0.68056 194555|0.56944 194556|0.41667 194557|0.625 194558|0.23611 194559|0.61111 194560|0.72222 194561|0.65278 194562|0.45833 194563|0.33333 194564|0.58333 194565|0.625 194566|0.47222 194567|0.51389 194568|0.56944 194569|0.45833 194570|0.52778 194571|0.69444 194572|0.27778 194573|0.45833 194574|0.61111 194575|0.59722 194576|0.63889 194577|0.48611 194578|0.33333 194579|0.41667 194580|0.56944 194581|0.44444 194582|0.26389 194583|0.25 194584|0.20833 194585|0.52778 194586|0.61111 194587|0.70833 194588|0.44444 194589|0.54167 194590|0.44444 194591|0.5 194592|0.36111 194593|0.58333 194594|0.41667 194595|0.5 194596|0.51389 194597|0.5 194598|0.59722 194599|0.59722 194600|0.61111 194601|0.44444 194602|0.375 194603|0.25 194604|0.625 194605|0.45833 194606|0.45833 194607|0.43056 194608|0.15278 194609|0.61111 194610|0.5 194611|0.51389 194612|0.5 194613|0.52778 194614|0.52778 194615|0.31944 194616|0.43056 194617|0.38889 194618|0.48611 194619|0.5 194620|0.58333 194621|0.34722 194622|0.5 194623|0.52778 194624|0.51389 194625|0.33333 194626|0.31944 194627|0.29167 194628|0.56944 194629|0.65278 194630|0.41667 194631|0.47222 194632|0.5 194633|0.52778 194634|0.5 194635|0.5 194636|0.33333 194637|0.61111 194638|0.54167 194639|0.5 194640|0.5 194641|0.52778 194642|1 194643|0.63889 194644|0.79167 194645|0.5 194646|0.43056 194647|0.61111 194648|0.52778 194649|0.5 194650|0.5 194651|0.52778 194652|0.5 194653|0.58333 194654|0.5 194655|0.58333 194656|0.5 194657|0.13889 194658|0.5 194659|0.33333 194660|0.5 194661|0.5 194662|0.5 194663|0.625 194664|0.61111 194665|0.5 194666|0.5 194667|0.44444 194668|0.5 194669|0.51389 194670|0.33333 194671|0.45833 194672|0.43056 194673|0.56944 194674|0.59722 194675|0.40278 194676|0.5 194677|0.23611 194678|0.34722 194679|0.45833 194680|0.31944 194681|0.30556 194682|0.38889 194683|0.33333 194684|0.63889 194685|0.27778 194686|0.44444 194687|0.41667 194688|0.375 194689|0.5 194690|0.61111 194691|0.45833 194692|0.44444 194693|0.38889 194694|0.47222 194695|0.5 194696|0.375 194697|0.43056 194698|0.23611 194699|0.125 194700|0.23611 194701|0.23611 194702|0.30556 194703|0.43056 194704|0.375 194705|0.5 194706|0.51389 194707|0.33333 194708|0.47222 194709|0.41667 194710|0.097222 194711|0.25 194712|0.44444 194713|0.31944 194714|0.63889 194715|0.11111 194716|0.5 194717|0.13889 194718|0.51389 194719|0.66667 194720|0.77778 194721|0.5 194722|0.45833 194723|0.51389 194724|0.5 194725|0.5 194726|0.5 194727|0.34722 194728|0.22222 194729|0.25 194730|0.38889 194731|0.5 194732|0.66667 194733|0.5 194734|0.48611 194735|0.5 194736|0.40278 194737|0.45833 194738|0.36111 194739|0.44444 194740|0.61111 194741|0.44444 194742|0.44444 194743|0.5 194744|0.48611 194745|0.34722 194746|0.5 194747|0.47222 194748|0.41667 194749|0.43056 194750|0.41667 194751|0.59722 194752|0.51389 194753|0.38889 194754|0.34722 194755|0.31944 194756|0.38889 194757|0.5 194758|0.5 194759|0.80556 194760|0.69444 194761|0.65278 194762|0.54167 194763|0.5 194764|0.5 194765|0.54167 194766|0.36111 194767|0.52778 194768|0.5 194769|0.41667 194770|0.20833 194771|0.5 194772|0.375 194773|0.27778 194774|0.27778 194775|0.36111 194776|0.26389 194777|0.19444 194778|0.26389 194779|0.18056 194780|0.27778 194781|0.23611 194782|0.26389 194783|0.41667 194784|0.30556 194785|0.5 194786|0.22222 194787|0.47222 194788|0.51389 194789|0.5 194790|0.30556 194791|0.51389 194792|0.40278 194793|0.38889 194794|0.375 194795|0.125 194796|0.69444 194797|0.65278 194798|0.19444 194799|0.44444 194800|0.33333 194801|0.29167 194802|0.59722 194803|0.68056 194804|0.36111 194805|0.55556 194806|0.5 194807|0.34722 194808|0.44444 194809|0.5 194810|0.61111 194811|0.5 194812|0.26389 194813|0.20833 194814|0.44444 194815|0.59722 194816|0.5 194817|0.19444 194818|0.34722 194819|0.44444 194820|0.63889 194821|0.63889 194822|0.20833 194823|0.18056 194824|0.38889 194825|0.34722 194826|0.19444 194827|0.15278 194828|0.29167 194829|0.13889 194830|0.055556 194831|0.13889 194832|0.36111 194833|0.19444 194834|0.34722 194835|0.34722 194836|0.5 194837|0.23611 194838|0.11111 194839|0.33333 194840|0.16667 194841|0.22222 194842|0.31944 194843|0.23611 194844|0.22222 194845|0.5 194846|0.52778 194847|0.5 194848|0.45833 194849|0.27778 194850|0.5 194851|0.30556 194852|0.76389 194853|0.65278 194854|0.27778 194855|0.55556 194856|0.54167 194857|0.54167 194858|0.59722 194859|0.55556 194860|0.5 194861|0.5 194862|0.36111 194863|0.52778 194864|0.36111 194865|0.22222 194866|0.5 194867|0.44444 194868|0.5 194869|0.55556 194870|0.5 194871|0.55556 194872|0.51389 194873|0.5 194874|0.31944 194875|0.16667 194876|0.16667 194877|0.56944 194878|0.59722 194879|0.15278 194880|0.34722 194881|0.19444 194882|0.29167 194883|0.45833 194884|0.43056 194885|0.26389 194886|0.38889 194887|0.375 194888|0.5 194889|0.51389 194890|0.23611 194891|0.13889 194892|0.26389 194893|0.52778 194894|0.31944 194895|0.43056 194896|0.125 194897|0.52778 194898|0.61111 194899|0.5 194900|0.5 194901|0.40278 194902|0.69444 194903|0.5 194904|0.61111 194905|0.5 194906|0.5 194907|0.30556 194908|0.52778 194909|0.51389 194910|0.51389 194911|0.23611 194912|0.55556 194913|0.48611 194914|0.59722 194915|0.51389 194916|0.34722 194917|0.61111 194918|0.27778 194919|0.5 194920|0.63889 194921|0.41667 194922|0.72222 194923|0.48611 194924|0.52778 194925|0.58333 194926|0.55556 194927|0.19444 194928|0.48611 194929|0.48611 194930|0.66667 194931|0.5 194932|0.5 194933|0.5 194934|0.55556 194935|0.44444 194936|0.18056 194937|0.23611 194938|0.25 194939|0.25 194940|0.40278 194941|0.44444 194942|0.26389 194943|0.68056 194944|0.66667 194945|0.52778 194946|0.61111 194947|0.66667 194948|0.48611 194949|0.79167 194950|0.875 194951|0.5 194952|0.88889 194953|0.93056 194954|0.63889 194955|0.54167 194956|0.5 194957|0.52778 194958|0.61111 194959|0.5 194960|0.61111 194961|0.47222 194962|0.30556 194963|0.58333 194964|0.58333 194965|0.47222 194966|0.5 194967|0.44444 194968|0.52778 194969|0.59722 194970|0.61111 194971|0.41667 194972|0.5 194973|0.5 194974|0.5 194975|0.48611 194976|0.29167 194977|0.54167 194978|0.29167 194979|0.22222 194980|0.083333 194981|0.5 194982|0.54167 194983|0.72222 194984|0.61111 194985|0.54167 194986|0.36111 194987|0.61111 194988|0.68056 194989|0.61111 194990|0.63889 194991|0.5 194992|0.5 194993|0.44444 194994|0.56944 194995|0.44444 194996|0.30556 194997|0.27778 194998|0.68056 194999|0.5 195000|0.5 195001|0.5 195002|0.5 195003|0.5 195004|0.38889 195005|0.26389 195006|0.47222 195007|0.375 195008|0.29167 195009|0.013889 195010|0.13889 195011|0.47222 195012|0.34722 195013|0.55556 195014|0.5 195015|0.5 195016|0.41667 195017|0.44444 195018|0.51389 195019|0.5 195020|0.38889 195021|0.43056 195022|0.44444 195023|0.5 195024|0.51389 195025|0.40278 195026|0.66667 195027|0.44444 195028|0.58333 195029|0.65278 195030|0.47222 195031|0.5 195032|0.47222 195033|0.5 195034|0.34722 195035|0.5 195036|0.65278 195037|0.625 195038|0.36111 195039|0.25 195040|0.48611 195041|0.44444 195042|0.25 195043|0.20833 195044|0.36111 195045|0.31944 195046|0.20833 195047|0.30556 195048|0.31944 195049|0.30556 195050|0.36111 195051|0.69444 195052|0.34722 195053|0.625 195054|0.63889 195055|0.25 195056|0.19444 195057|0.34722 195058|0.45833 195059|0.55556 195060|0.33333 195061|0.55556 195062|0.55556 195063|0.5 195064|0.34722 195065|0.55556 195066|0.38889 195067|0.5 195068|0.61111 195069|0.59722 195070|0.625 195071|0.63889 195072|0.66667 195073|0.41667 195074|0.72222 195075|0.47222 195076|0.29167 195077|0.36111 195078|0.23611 195079|0.70833 195080|0.31944 195081|0.5 195082|0.45833 195083|0.11111 195084|0.34722 195085|0.375 195086|0.55556 195087|0.5 195088|0.44444 195089|0.66667 195090|0.5 195091|0.5 195092|0.84722 195093|0.19444 195094|0.5 195095|0.5 195096|0.58333 195097|0.43056 195098|0.52778 195099|0.5 195100|0.59722 195101|0.5 195102|0.66667 195103|0.52778 195104|0.5 195105|0.625 195106|0.375 195107|0.48611 195108|0.61111 195109|0.5 195110|0.48611 195111|0.5 195112|0.76389 195113|0.5 195114|0.38889 195115|0.22222 195116|0.625 195117|0.55556 195118|0.5 195119|0.20833 195120|0.5 195121|0.61111 195122|0.25 195123|0.47222 195124|0.34722 195125|0.23611 195126|0.48611 195127|0.33333 195128|0.22222 195129|0.16667 195130|0.29167 195131|0.30556 195132|0.25 195133|0.33333 195134|0.44444 195135|0.51389 195136|0.38889 195137|0.43056 195138|0.625 195139|0.27778 195140|0.5 195141|0.43056 195142|0.5 195143|0.44444 195144|0.5 195145|0.41667 195146|0.5 195147|0.5 195148|0.45833 195149|0.22222 195150|0.56944 195151|0.47222 195152|0.22222 195153|0.27778 195154|0.36111 195155|0.41667 195156|0.45833 195157|0.5 195158|0.29167 195159|0.47222 195160|0.38889 195161|0.5 195162|0.51389 195163|0.27778 195164|0.38889 195165|0.44444 195166|0.5 195167|0.41667 195168|0.44444 195169|0.27778 195170|0.33333 195171|0.5 195172|0.5 195173|0.30556 195174|0.19444 195175|0.45833 195176|0.48611 195177|0.5 195178|0.65278 195179|0.16667 195180|0.5 195181|0.27778 195182|0.55556 195183|0.23611 195184|0.5 195185|0.5 195186|0.30556 195187|0.27778 195188|0.25 195189|0.19444 195190|0.5 195191|0.16667 195192|0.375 195193|0.45833 195194|0.20833 195195|0.16667 195196|0.38889 195197|0.38889 195198|0.30556 195199|0.33333 195200|0.5 195201|0.31944 195202|0.23611 195203|0.5 195204|0.5 195205|0.33333 195206|0.5 195207|0.5 195208|0.15278 195209|0.5 195210|0.44444 195211|0.55556 195212|0.20833 195213|0.44444 195214|0.5 195215|0.44444 195216|0.375 195217|0.70833 195218|0.52778 195219|0.52778 195220|0.38889 195221|0.22222 195222|0.52778 195223|0.18056 195224|0.25 195225|0.5 195226|0.47222 195227|0.61111 195228|0.48611 195229|0.31944 195230|0.36111 195231|0.69444 195232|0.5 195233|0.29167 195234|0.5 195235|0.5 195236|0.5 195237|0.27778 195238|0.31944 195239|0.54167 195240|0.41667 195241|0.54167 195242|0.41667 195243|0.75 195244|0.44444 195245|0.27778 195246|0.40278 195247|0.22222 195248|0.5 195249|0.5 195250|0.44444 195251|0.5 195252|0.083333 195253|0.16667 195254|0.40278 195255|0.15278 195256|0.20833 195257|0.65278 195258|0.36111 195259|0.27778 195260|0.38889 195261|0.27778 195262|0.44444 195263|0.5 195264|0.61111 195265|0.34722 195266|0.22222 195267|0.44444 195268|0.13889 195269|0.5 195270|0.34722 195271|0.5 195272|0.33333 195273|0.16667 195274|0.30556 195275|0.20833 195276|0.16667 195277|0.84722 195278|0.375 195279|0.23611 195280|0.31944 195281|0.30556 195282|0.29167 195283|0.5 195284|0.48611 195285|0.125 195286|0.44444 195287|0.36111 195288|0.45833 195289|0.375 195290|0.36111 195291|0.5 195292|0.40278 195293|0.47222 195294|0.54167 195295|0.5 195296|0.27778 195297|0.625 195298|0.55556 195299|0.61111 195300|0.5 195301|0.5 195302|0.55556 195303|0.68056 195304|0.5 195305|0.45833 195306|0.5 195307|0.43056 195308|0.43056 195309|0.5 195310|0.22222 195311|0.5 195312|0.54167 195313|0.5 195314|0.70833 195315|0.80556 195316|0.56944 195317|0.45833 195318|0.40278 195319|0.5 195320|0.5 195321|0.33333 195322|0.5 195323|0.375 195324|0.55556 195325|0.875 195326|0.30556 195327|0.72222 195328|0.30556 195329|0.31944 195330|0.22222 195331|0.54167 195332|0.5 195333|0.5 195334|0.63889 195335|0.5 195336|0.5 195337|0.5 195338|0.55556 195339|0.25 195340|0.47222 195341|0.44444 195342|0.41667 195343|0.23611 195344|0.43056 195345|0.083333 195346|0.055556 195347|0.33333 195348|0.625 195349|0.61111 195350|0.25 195351|0.625 195352|0.18056 195353|0.16667 195354|0.29167 195355|0.65278 195356|0.44444 195357|0.16667 195358|0.30556 195359|0.54167 195360|0.30556 195361|0.5 195362|0.55556 195363|0.54167 195364|0.22222 195365|0.38889 195366|0.27778 195367|0.5 195368|0.52778 195369|0.36111 195370|0.33333 195371|0.51389 195372|0.5 195373|0.52778 195374|0.44444 195375|0.44444 195376|0.11111 195377|0.56944 195378|0.625 195379|0.5 195380|0.25 195381|0.45833 195382|0.40278 195383|0.66667 195384|0.5 195385|0.34722 195386|0.26389 195387|0.31944 195388|0.45833 195389|0.22222 195390|0.38889 195391|0.34722 195392|0.23611 195393|0.5 195394|0.43056 195395|0.56944 195396|0.29167 195397|0.33333 195398|0.36111 195399|0.45833 195400|0.36111 195401|0.33333 195402|0.45833 195403|0.375 195404|0.41667 195405|0.30556 195406|0.27778 195407|0.58333 195408|0.5 195409|0.27778 195410|0.22222 195411|0.66667 195412|0.51389 195413|0.30556 195414|0.33333 195415|0.38889 195416|0.5 195417|0.51389 195418|0.54167 195419|0.31944 195420|0.33333 195421|0.47222 195422|0.44444 195423|0.48611 195424|0.34722 195425|0.29167 195426|0.15278 195427|0.40278 195428|0.5 195429|0.5 195430|0.41667 195431|0.29167 195432|0.5 195433|0.51389 195434|0.47222 195435|0.13889 195436|0.58333 195437|0.52778 195438|0.5 195439|0.56944 195440|0.70833 195441|0.61111 195442|0.56944 195443|0.44444 195444|0.55556 195445|0.69444 195446|0.33333 195447|0.59722 195448|0.23611 195449|0.5 195450|0.59722 195451|0.61111 195452|0.45833 195453|0.47222 195454|0.41667 195455|0.20833 195456|0.5 195457|0.15278 195458|0.38889 195459|0.41667 195460|0.29167 195461|0.51389 195462|0.25 195463|0.23611 195464|0.069444 195465|0.5 195466|0.76389 195467|0.55556 195468|0.69444 195469|0.27778 195470|0.47222 195471|0.36111 195472|0.48611 195473|0.31944 195474|0.18056 195475|0.5 195476|0.52778 195477|0.5 195478|0.5 195479|0.625 195480|0.43056 195481|0.44444 195482|0.22222 195483|0.18056 195484|0.5 195485|0.25 195486|0.27778 195487|0.18056 195488|0.61111 195489|0.61111 195490|0.56944 195491|0.55556 195492|0.5 195493|0.625 195494|0.31944 195495|0.40278 195496|0.61111 195497|0.55556 195498|0.45833 195499|0.40278 195500|0.56944 195501|0.27778 195502|0.5 195503|0.51389 195504|0.5 195505|0.43056 195506|0.36111 195507|0.79167 195508|0.73611 195509|0.5 195510|0.31944 195511|0.29167 195512|0.5 195513|0.27778 195514|0.58333 195515|0.83333 195516|0.66667 195517|0.68056 195518|0.51389 195519|0.43056 195520|0.51389 195521|0.55556 195522|0.5 195523|0.40278 195524|0.47222 195525|0.31944 195526|0.27778 195527|0.47222 195528|0.5 195529|0.69444 195530|0.25 195531|0.22222 195532|0.5 195533|0.52778 195534|0.22222 195535|0.375 195536|0.625 195537|0.56944 195538|0.69444 195539|0.44444 195540|0.58333 195541|0.63889 195542|0.5 195543|0.55556 195544|0.5 195545|0.5 195546|0.51389 195547|0.38889 195548|0.54167 195549|0.5 195550|0.44444 195551|0.48611 195552|0.5 195553|0.5 195554|0.47222 195555|0.5 195556|0.45833 195557|0.44444 195558|0.55556 195559|0.5 195560|0.5 195561|0.75 195562|0.66667 195563|0.625 195564|0.26389 195565|0.31944 195566|0.48611 195567|0.5 195568|0.15278 195569|0.5 195570|0.5 195571|0.5 195572|0.43056 195573|0.31944 195574|0.59722 195575|0.20833 195576|0.38889 195577|0.63889 195578|0.23611 195579|0.5 195580|0.30556 195581|0.5 195582|0.66667 195583|0.33333 195584|0.38889 195585|0.36111 195586|0.22222 195587|0.58333 195588|0.5 195589|0.45833 195590|0.40278 195591|0.40278 195592|0.43056 195593|0.5 195594|0.5 195595|0.54167 195596|0.5 195597|0.65278 195598|0.63889 195599|0.33333 195600|0.19444 195601|0.5 195602|0.58333 195603|0.55556 195604|0.27778 195605|0.5 195606|0.5 195607|0.36111 195608|0.29167 195609|0.5 195610|0.33333 195611|0.34722 195612|0.58333 195613|0.47222 195614|0.63889 195615|0.625 195616|0.29167 195617|0.55556 195618|0.63889 195619|0.27778 195620|0.72222 195621|0.5 195622|0.54167 195623|0.25 195624|0.13889 195625|0.041667 195626|0.25 195627|0.23611 195628|0.31944 195629|0.36111 195630|0.31944 195631|0.27778 195632|0.26389 195633|0.47222 195634|0.33333 195635|0.45833 195636|0.5 195637|0.30556 195638|0.34722 195639|0.625 195640|0.58333 195641|0.43056 195642|0.30556 195643|0.27778 195644|0.25 195645|0.27778 195646|0.19444 195647|0.15278 195648|0.16667 195649|0.097222 195650|0.63889 195651|0.73611 195652|0.27778 195653|0.75 195654|0.5 195655|0.43056 195656|0.51389 195657|0.51389 195658|0.27778 195659|0.18056 195660|0.45833 195661|0.68056 195662|0.5 195663|0.38889 195664|0.34722 195665|0.79167 195666|0.31944 195667|0.31944 195668|0.5 195669|0.47222 195670|0.5 195671|0.48611 195672|0.48611 195673|0.34722 195674|0.26389 195675|0.22222 195676|0.16667 195677|0.45833 195678|0.23611 195679|0.25 195680|0.33333 195681|0.51389 195682|0.375 195683|0.15278 195684|0.66667 195685|0.58333 195686|0.5 195687|0.51389 195688|0.36111 195689|0.41667 195690|0.30556 195691|0.5 195692|0.40278 195693|0.5 195694|0.75 195695|0.55556 195696|0.51389 195697|0.58333 195698|0.65278 195699|0.56944 195700|0.43056 195701|0.66667 195702|0.16667 195703|0.44444 195704|0.22222 195705|0.72222 195706|0.66667 195707|0.77778 195708|0.73611 195709|0.69444 195710|0.48611 195711|0.5 195712|0.52778 195713|0.55556 195714|0.5 195715|0.44444 195716|0.48611 195717|0.41667 195718|0.5 195719|0.45833 195720|0.5 195721|0.54167 195722|0.5 195723|0.55556 195724|0.48611 195725|0.58333 195726|0.44444 195727|0.5 195728|0.48611 195729|0.5 195730|0.5 195731|0.56944 195732|0.47222 195733|0.38889 195734|0.66667 195735|0.63889 195736|0.56944 195737|0.55556 195738|0.38889 195739|0.47222 195740|0.59722 195741|0.86111 195742|0.625 195743|0.625 195744|0.38889 195745|0.61111 195746|0.5 195747|0.73611 195748|0.55556 195749|0.77778 195750|0.61111 195751|0.5 195752|0.48611 195753|0.55556 195754|0.5 195755|0.625 195756|0.69444 195757|0.5 195758|0.75 195759|0.68056 195760|0.66667 195761|0.5 195762|0.41667 195763|0.625 195764|0.72222 195765|0.77778 195766|0.51389 195767|0.55556 195768|0.68056 195769|0.59722 195770|0.75 195771|0.54167 195772|0.23611 195773|0.19444 195774|0.27778 195775|0.26389 195776|0.30556 195777|0.27778 195778|0.26389 195779|0.58333 195780|0.43056 195781|0.44444 195782|0.45833 195783|0.5 195784|0.26389 195785|0.38889 195786|0.33333 195787|0.43056 195788|0.33333 195789|0.22222 195790|0.27778 195791|0.70833 195792|0.59722 195793|0.5 195794|0.51389 195795|0.38889 195796|0.51389 195797|0.27778 195798|0.5 195799|0.5 195800|0.48611 195801|0.375 195802|0.5 195803|0.5 195804|0.5 195805|0.38889 195806|0.41667 195807|0.44444 195808|0.16667 195809|0.44444 195810|0.20833 195811|0.5 195812|0.45833 195813|0.625 195814|0.5 195815|0.47222 195816|0.5 195817|0.5 195818|0.5 195819|0.5 195820|0.38889 195821|0.52778 195822|0.54167 195823|0.30556 195824|0.47222 195825|0.31944 195826|0.43056 195827|0.16667 195828|0.31944 195829|0.55556 195830|0.18056 195831|0.25 195832|0.25 195833|0.31944 195834|0.16667 195835|0.15278 195836|0.11111 195837|0.027778 195838|0.40278 195839|0.33333 195840|0.16667 195841|0.44444 195842|0.5 195843|0.5 195844|0.51389 195845|0.65278 195846|0.5 195847|0.5 195848|0.48611 195849|0.5 195850|0.5 195851|0.66667 195852|0.5 195853|0.16667 195854|0.40278 195855|0.36111 195856|0.41667 195857|0.44444 195858|0.56944 195859|0.51389 195860|0.72222 195861|0.44444 195862|0.5 195863|0.5 195864|0.375 195865|0.19444 195866|0.15278 195867|0.36111 195868|0.38889 195869|0.31944 195870|0.36111 195871|0.44444 195872|0.70833 195873|0.15278 195874|0.54167 195875|0.27778 195876|0.097222 195877|0.19444 195878|0.52778 195879|0.26389 195880|0.5 195881|0.44444 195882|0.51389 195883|0.56944 195884|0.47222 195885|0.5 195886|0.5 195887|0.5 195888|0.51389 195889|0.38889 195890|0.45833 195891|0.5 195892|0.36111 195893|0.45833 195894|0.5 195895|0.51389 195896|0.5 195897|0.58333 195898|0.59722 195899|0.5 195900|0.5 195901|0.44444 195902|0.31944 195903|0.13889 195904|0.30556 195905|0.33333 195906|0.30556 195907|0.36111 195908|0.48611 195909|0.55556 195910|0.72222 195911|0.5 195912|0.31944 195913|0.36111 195914|0.33333 195915|0.34722 195916|0.41667 195917|0.56944 195918|0.47222 195919|0.45833 195920|0.5 195921|0.55556 195922|0.31944 195923|0.34722 195924|0.38889 195925|0.59722 195926|0.73611 195927|0.55556 195928|0.68056 195929|0.5 195930|0.55556 195931|0.58333 195932|0.625 195933|0.5 195934|0.34722 195935|0.5 195936|0.5 195937|0.55556 195938|0.41667 195939|0.5 195940|0.52778 195941|0.44444 195942|0.40278 195943|0.36111 195944|0.40278 195945|0.66667 195946|0.61111 195947|0.16667 195948|0.54167 195949|0.44444 195950|0.30556 195951|0.58333 195952|0.40278 195953|0.13889 195954|0.19444 195955|0.36111 195956|0.19444 195957|0.26389 195958|0.15278 195959|0.11111 195960|0.63889 195961|0.72222 195962|0.65278 195963|0.55556 195964|0.52778 195965|0.72222 195966|0.52778 195967|0.40278 195968|0.22222 195969|0.31944 195970|0.31944 195971|0.47222 195972|0.55556 195973|0.48611 195974|0.72222 195975|0.18056 195976|0.40278 195977|0.16667 195978|0.47222 195979|0.16667 195980|0.16667 195981|0.55556 195982|0.5 195983|0.40278 195984|0.27778 195985|0.65278 195986|0.5 195987|0.11111 195988|0.44444 195989|0.41667 195990|0.55556 195991|0.68056 195992|0.66667 195993|0.52778 195994|0.52778 195995|0.5 195996|0.5 195997|0.72222 195998|0.5 195999|0.625 196000|0.55556 196001|0.55556 196002|0.5 196003|0.61111 196004|0.40278 196005|0.63889 196006|0.51389 196007|0.59722 196008|0.48611 196009|0.5 196010|0.48611 196011|0.5 196012|0.54167 196013|0.54167 196014|0.40278 196015|0.375 196016|0.5 196017|0.44444 196018|0.45833 196019|0.33333 196020|0.30556 196021|0.25 196022|0.22222 196023|0.34722 196024|0.30556 196025|0.44444 196026|0.5 196027|0.5 196028|0.54167 196029|0.51389 196030|0.5 196031|0.59722 196032|0.16667 196033|0.61111 196034|0.47222 196035|0.5 196036|0.44444 196037|0.5 196038|0.38889 196039|0.51389 196040|0.68056 196041|0.44444 196042|0.54167 196043|0.5 196044|0.76389 196045|0.80556 196046|0.61111 196047|0.45833 196048|0.59722 196049|0.40278 196050|0.59722 196051|0.5 196052|0.43056 196053|0.73611 196054|0.72222 196055|0.55556 196056|0.29167 196057|0.61111 196058|0.31944 196059|0.22222 196060|0.5 196061|0.25 196062|0.069444 196063|0.45833 196064|0.44444 196065|0.43056 196066|0.25 196067|0.33333 196068|0.15278 196069|0.25 196070|0.5 196071|0.54167 196072|0.44444 196073|0.61111 196074|0.76389 196075|0.5 196076|0.625 196077|0.48611 196078|0.54167 196079|0.52778 196080|0.22222 196081|0.66667 196082|0.29167 196083|0.45833 196084|0.36111 196085|0.5 196086|0.5 196087|0.5 196088|0.47222 196089|0.38889 196090|0.11111 196091|0.20833 196092|0.5 196093|0.5 196094|0.33333 196095|0.55556 196096|0.40278 196097|0.72222 196098|0.5 196099|0.51389 196100|0.56944 196101|0.54167 196102|0.55556 196103|0.41667 196104|0.5 196105|0.44444 196106|0.33333 196107|0.20833 196108|0.40278 196109|0.16667 196110|0.38889 196111|0.44444 196112|0.36111 196113|0.31944 196114|0.27778 196115|0.33333 196116|0.5 196117|0.5 196118|0.45833 196119|0.52778 196120|0.30556 196121|0.22222 196122|0.5 196123|0.15278 196124|0.55556 196125|0.5 196126|0.45833 196127|0.41667 196128|0.63889 196129|0.79167 196130|0.66667 196131|0.69444 196132|0.58333 196133|0.54167 196134|0.75 196135|0.79167 196136|0.76389 196137|0.55556 196138|0.44444 196139|0.45833 196140|0.5 196141|0.45833 196142|0.40278 196143|0.36111 196144|0.56944 196145|0.5 196146|0.16667 196147|0.5 196148|0.5 196149|0.47222 196150|0.47222 196151|0.19444 196152|0.61111 196153|0.79167 196154|0.5 196155|0.41667 196156|0.22222 196157|0.25 196158|0.13889 196159|0.55556 196160|0.41667 196161|0.38889 196162|0.58333 196163|0.30556 196164|0.375 196165|0.55556 196166|0.38889 196167|0.5 196168|0.22222 196169|0.15278 196170|0.65278 196171|0.76389 196172|0.77778 196173|0.66667 196174|0.19444 196175|0.027778 196176|0.27778 196177|0.5 196178|0.5 196179|0.47222 196180|0.26389 196181|0.55556 196182|0.27778 196183|0.375 196184|0.36111 196185|0.16667 196186|0.19444 196187|0.22222 196188|0.27778 196189|0.13889 196190|0.27778 196191|0.33333 196192|0.41667 196193|0.31944 196194|0.48611 196195|0.33333 196196|0.54167 196197|0.29167 196198|0.27778 196199|0.16667 196200|0.26389 196201|0.44444 196202|0.31944 196203|0.5 196204|0.5 196205|0.48611 196206|0.52778 196207|0.56944 196208|0.51389 196209|0.43056 196210|0.25 196211|0.19444 196212|0.55556 196213|0.34722 196214|0.5 196215|0.59722 196216|0.48611 196217|0.51389 196218|0.45833 196219|0.38889 196220|0.41667 196221|0.27778 196222|0.52778 196223|0.61111 196224|0.18056 196225|0.375 196226|0.72222 196227|0.36111 196228|0.41667 196229|0.625 196230|0.44444 196231|0.52778 196232|0.66667 196233|0.25 196234|0.5 196235|0.31944 196236|0.68056 196237|0.63889 196238|0.625 196239|0.52778 196240|0.36111 196241|0.38889 196242|0.36111 196243|0.31944 196244|0.48611 196245|0.5 196246|0.34722 196247|0.33333 196248|0.5 196249|0.86111 196250|0.5 196251|0.5 196252|0.5 196253|0.55556 196254|0.51389 196255|0.5 196256|0.31944 196257|0.45833 196258|0.66667 196259|0.5 196260|0.30556 196261|0.48611 196262|0.43056 196263|0.63889 196264|0.55556 196265|0.27778 196266|0.23611 196267|0.18056 196268|0.5 196269|0.41667 196270|0.38889 196271|0.43056 196272|0.11111 196273|0.13889 196274|0.5 196275|0.375 196276|0.41667 196277|0.38889 196278|0.36111 196279|0.43056 196280|0.44444 196281|0.45833 196282|0.33333 196283|0.36111 196284|0.33333 196285|0.52778 196286|0.51389 196287|0.52778 196288|0.47222 196289|0.30556 196290|0.61111 196291|0.27778 196292|0.5 196293|0.41667 196294|0.58333 196295|0.5 196296|0.52778 196297|0.15278 196298|0 196299|0.52778 196300|0.36111 196301|0.11111 196302|0.36111 196303|0.31944 196304|0.29167 196305|0.27778 196306|0.40278 196307|0.22222 196308|0.38889 196309|0.44444 196310|0.56944 196311|0.16667 196312|0.13889 196313|0.625 196314|0.43056 196315|0.44444 196316|0.38889 196317|0.29167 196318|0.33333 196319|0.5 196320|0.5 196321|0.30556 196322|0.41667 196323|0.58333 196324|0.23611 196325|0.5 196326|0.29167 196327|0.52778 196328|0.31944 196329|0.625 196330|0.5 196331|0.70833 196332|0.44444 196333|0.41667 196334|0.48611 196335|0.5 196336|0.29167 196337|0.23611 196338|0.51389 196339|0.65278 196340|0.5 196341|0.73611 196342|0.65278 196343|0.56944 196344|0.5 196345|0.43056 196346|0.5 196347|0.51389 196348|0.43056 196349|0.63889 196350|0.47222 196351|0 196352|0.5 196353|0.36111 196354|0.41667 196355|0.5 196356|0.20833 196357|0.16667 196358|0.43056 196359|0.26389 196360|0.5 196361|0.5 196362|0.72222 196363|0.52778 196364|0.41667 196365|0.52778 196366|0.31944 196367|0.5 196368|0.27778 196369|0.18056 196370|0.34722 196371|0.19444 196372|0.22222 196373|0.31944 196374|0.38889 196375|0.68056 196376|0.44444 196377|0.29167 196378|0.63889 196379|0.59722 196380|0.26389 196381|0.36111 196382|0.34722 196383|0.19444 196384|0.25 196385|0.18056 196386|0.33333 196387|0.33333 196388|0.26389 196389|0.41667 196390|0.55556 196391|0.38889 196392|0.44444 196393|0.5 196394|0.38889 196395|0.625 196396|0.51389 196397|0.45833 196398|0.22222 196399|0.5 196400|0.43056 196401|0.70833 196402|0.375 196403|0.31944 196404|0.5 196405|0.47222 196406|0.52778 196407|0.56944 196408|0.59722 196409|0.80556 196410|0.72222 196411|0.65278 196412|0.40278 196413|0.48611 196414|0.79167 196415|0.36111 196416|0.72222 196417|0.55556 196418|0.875 196419|0.61111 196420|0.81944 196421|0.61111 196422|0.68056 196423|0.61111 196424|0.5 196425|0.58333 196426|0.5 196427|0.72222 196428|0.41667 196429|0.30556 196430|0.41667 196431|0.43056 196432|0.34722 196433|0.38889 196434|0.52778 196435|0.013889 196436|0.45833 196437|0.5 196438|0.65278 196439|0.5 196440|0.5 196441|0.63889 196442|0.5 196443|0.47222 196444|0.19444 196445|0.73611 196446|0.72222 196447|0.77778 196448|0.80556 196449|0.77778 196450|0.375 196451|0.25 196452|0.5 196453|0.44444 196454|0.40278 196455|0.44444 196456|0.43056 196457|0.30556 196458|0.40278 196459|0.625 196460|0.5 196461|0.48611 196462|0.5 196463|0.625 196464|0.38889 196465|0.51389 196466|0.5 196467|0.33333 196468|0.65278 196469|0.29167 196470|0.41667 196471|0.16667 196472|0.47222 196473|0.19444 196474|0.43056 196475|0.52778 196476|0.18056 196477|0.5 196478|0.27778 196479|0.26389 196480|0.16667 196481|0.48611 196482|0.5 196483|0.41667 196484|0.29167 196485|0.29167 196486|0.52778 196487|0.15278 196488|0.5 196489|0.27778 196490|0.41667 196491|0.5 196492|0.5 196493|0.41667 196494|0.38889 196495|0.44444 196496|0.20833 196497|0.43056 196498|0.33333 196499|0.5 196500|0.44444 196501|0.125 196502|0.65278 196503|0.5 196504|0.5 196505|0.44444 196506|0.5 196507|0.61111 196508|0.5 196509|0.5 196510|0.5 196511|0.55556 196512|0.75 196513|0.48611 196514|0.52778 196515|0.63889 196516|0.54167 196517|0.25 196518|0.54167 196519|0.30556 196520|0.52778 196521|0.5 196522|0.5 196523|0.25 196524|0.44444 196525|0.20833 196526|0.097222 196527|0.25 196528|0.055556 196529|0.13889 196530|0.63889 196531|0.48611 196532|0.81944 196533|0.68056 196534|0.51389 196535|0.56944 196536|0.61111 196537|0.77778 196538|0.73611 196539|0.55556 196540|0.65278 196541|0.70833 196542|0.55556 196543|0.66667 196544|0.52778 196545|0.63889 196546|0.58333 196547|0.65278 196548|0.625 196549|0.58333 196550|0.65278 196551|0.68056 196552|0.70833 196553|0.40278 196554|0.38889 196555|0.5 196556|0.40278 196557|0.33333 196558|0.375 196559|0.5 196560|0.38889 196561|0.44444 196562|0.25 196563|0.29167 196564|0.41667 196565|0.33333 196566|0.66667 196567|0.66667 196568|0.70833 196569|0.5 196570|0.5 196571|0.20833 196572|0.55556 196573|0.40278 196574|0.65278 196575|0.52778 196576|0.70833 196577|0.66667 196578|0.65278 196579|0.65278 196580|0.63889 196581|0.5 196582|0.44444 196583|0.47222 196584|0.5 196585|0.51389 196586|0.45833 196587|0.5 196588|0.33333 196589|0.5 196590|0.44444 196591|0.58333 196592|0.44444 196593|0.51389 196594|0.66667 196595|0.54167 196596|0.43056 196597|0.5 196598|0.83333 196599|0.5 196600|0.36111 196601|0.375 196602|0.375 196603|0.43056 196604|0.5 196605|0.13889 196606|0.31944 196607|0.27778 196608|0.40278 196609|0.47222 196610|0.76389 196611|0.44444 196612|0.5 196613|0.52778 196614|0.31944 196615|0.43056 196616|0.61111 196617|0.65278 196618|0.125 196619|0.36111 196620|0.48611 196621|0.5 196622|0.5 196623|0.45833 196624|0.5 196625|0.59722 196626|0.44444 196627|0.48611 196628|0.5 196629|0.66667 196630|0.59722 196631|0.51389 196632|0.5 196633|0.72222 196634|0.70833 196635|0.5 196636|0.59722 196637|0.66667 196638|0.58333 196639|0.63889 196640|0.61111 196641|0.61111 196642|0.73611 196643|0.63889 196644|0.31944 196645|0.5 196646|0.48611 196647|0.40278 196648|0.44444 196649|0.38889 196650|0.18056 196651|0.41667 196652|0.29167 196653|0.5 196654|0.5 196655|0.48611 196656|0.51389 196657|0.58333 196658|0.47222 196659|0.65278 196660|0.33333 196661|0.25 196662|0.5 196663|0.48611 196664|0.38889 196665|0.375 196666|0.36111 196667|0.34722 196668|0.33333 196669|0.36111 196670|0.18056 196671|0.48611 196672|0.55556 196673|0.44444 196674|0.5 196675|0.25 196676|0.29167 196677|0.5 196678|0.51389 196679|0.52778 196680|0.375 196681|0.59722 196682|0.55556 196683|0.5 196684|0.5 196685|0.31944 196686|0.68056 196687|0.5 196688|0.27778 196689|0.38889 196690|0.55556 196691|0.36111 196692|0.30556 196693|0.34722 196694|0.19444 196695|0.45833 196696|0.13889 196697|0.51389 196698|0.15278 196699|0.069444 196700|0.5 196701|0.5 196702|0.40278 196703|0.38889 196704|0.63889 196705|0.41667 196706|0.76389 196707|0.72222 196708|0.625 196709|0.66667 196710|0.61111 196711|0.52778 196712|0.5 196713|0.5 196714|0.69444 196715|0.22222 196716|0.5 196717|0.5 196718|0.13889 196719|0.54167 196720|0.40278 196721|0.70833 196722|0.65278 196723|0.5 196724|0.41667 196725|0.30556 196726|0.38889 196727|0.54167 196728|0.56944 196729|0.31944 196730|0.59722 196731|0.52778 196732|0.58333 196733|0.51389 196734|0.5 196735|0.5 196736|0.43056 196737|0.5 196738|0.38889 196739|0.48611 196740|0.31944 196741|0.26389 196742|0.16667 196743|0.5 196744|0.55556 196745|0.5 196746|0.43056 196747|0.45833 196748|0.31944 196749|0.55556 196750|0.375 196751|0.5 196752|0.5 196753|0.43056 196754|0.43056 196755|0.44444 196756|0.47222 196757|0.55556 196758|0.54167 196759|0.38889 196760|0.36111 196761|0.27778 196762|0.58333 196763|0.625 196764|0.5 196765|0.65278 196766|0.45833 196767|0.45833 196768|0.51389 196769|0.5 196770|0.51389 196771|0.5 196772|0.5 196773|0.11111 196774|0.041667 196775|0.22222 196776|0.40278 196777|0.27778 196778|0.26389 196779|0.27778 196780|0.43056 196781|0.097222 196782|0.48611 196783|0.30556 196784|0.18056 196785|0.16667 196786|0.38889 196787|0.48611 196788|0.45833 196789|0.26389 196790|0.44444 196791|0.48611 196792|0.41667 196793|0.38889 196794|0.30556 196795|0.44444 196796|0.36111 196797|0.45833 196798|0.40278 196799|0.33333 196800|0.5 196801|0.51389 196802|0.41667 196803|0.27778 196804|0.25 196805|0.36111 196806|0.5 196807|0.5 196808|0.625 196809|0.30556 196810|0.38889 196811|0.52778 196812|0.5 196813|0.44444 196814|0.61111 196815|0.31944 196816|0.375 196817|0.38889 196818|0.19444 196819|0.52778 196820|0.43056 196821|0.51389 196822|0.47222 196823|0.5 196824|0.375 196825|0.41667 196826|0.27778 196827|0.5 196828|0.38889 196829|0.375 196830|0.31944 196831|0.625 196832|0.33333 196833|0.375 196834|0.40278 196835|0.125 196836|0.26389 196837|0.38889 196838|0.51389 196839|0.5 196840|0.56944 196841|0.20833 196842|0.375 196843|0.40278 196844|0.52778 196845|0.54167 196846|0.5 196847|0.41667 196848|0.61111 196849|0.63889 196850|0.375 196851|0.52778 196852|0.73611 196853|0.52778 196854|0.33333 196855|0.125 196856|0.52778 196857|0.55556 196858|0.69444 196859|0.5 196860|0.54167 196861|0.22222 196862|0.375 196863|0.58333 196864|0.55556 196865|0.375 196866|0.13889 196867|0.083333 196868|0.36111 196869|0.5 196870|0.66667 196871|0.25 196872|0.36111 196873|0.44444 196874|0.38889 196875|0.5 196876|0.44444 196877|0.51389 196878|0.5 196879|0.43056 196880|0.33333 196881|0.41667 196882|0.5 196883|0.55556 196884|0.36111 196885|0.31944 196886|0.41667 196887|0.51389 196888|0.61111 196889|0.5 196890|0.40278 196891|0.22222 196892|0.15278 196893|0.33333 196894|0.34722 196895|0.59722 196896|0.38889 196897|0.55556 196898|0.52778 196899|0.47222 196900|0.55556 196901|0.47222 196902|0.5 196903|0.5 196904|0.45833 196905|0.5 196906|0.65278 196907|0.5 196908|0.38889 196909|0.36111 196910|0.47222 196911|0.16667 196912|0.27778 196913|0.52778 196914|0.13889 196915|0.5 196916|0.33333 196917|0.38889 196918|0.54167 196919|0.23611 196920|0.59722 196921|0.22222 196922|0.29167 196923|0.38889 196924|0.47222 196925|0.48611 196926|0.38889 196927|0.47222 196928|0.15278 196929|0.5 196930|0.63889 196931|0.26389 196932|0.5 196933|0.33333 196934|0.55556 196935|0.375 196936|0.38889 196937|0.5 196938|0.56944 196939|0.40278 196940|0.16667 196941|0.11111 196942|0.33333 196943|0.31944 196944|0.16667 196945|0.25 196946|0.65278 196947|0.5 196948|0.43056 196949|0.5 196950|0.51389 196951|0.47222 196952|0.36111 196953|0.23611 196954|0.27778 196955|0.19444 196956|0.20833 196957|0.5 196958|0.43056 196959|0.38889 196960|0.36111 196961|0.26389 196962|0.15278 196963|0.33333 196964|0.625 196965|0.5 196966|0.54167 196967|0.48611 196968|0.30556 196969|0.22222 196970|0.65278 196971|0.34722 196972|0.31944 196973|0.375 196974|0.72222 196975|0.55556 196976|0.48611 196977|0.36111 196978|0.23611 196979|0.36111 196980|0.26389 196981|0.13889 196982|0.38889 196983|0.16667 196984|0.055556 196985|0.069444 196986|0.34722 196987|0.5 196988|0.51389 196989|0.66667 196990|0.5 196991|0.5 196992|0.43056 196993|0.58333 196994|0.58333 196995|0.5 196996|0.58333 196997|0.23611 196998|0.44444 196999|0.375 197000|0.29167 197001|0.5 197002|0.5 197003|0.5 197004|0.25 197005|0.5 197006|0.5 197007|0.5 197008|0.5 197009|0.34722 197010|0.58333 197011|0.5 197012|0.44444 197013|0.55556 197014|0.43056 197015|0.5 197016|0.5 197017|0.41667 197018|0.5 197019|0.16667 197020|0.54167 197021|0.5 197022|0.31944 197023|0.5 197024|0.5 197025|0.5 197026|0.5 197027|0.51389 197028|0.66667 197029|0.70833 197030|0.5 197031|0.5 197032|0.59722 197033|0.5 197034|0.51389 197035|0.52778 197036|0.5 197037|0.125 197038|0.5 197039|0.5 197040|0.38889 197041|0.36111 197042|0.16667 197043|0.68056 197044|0.5 197045|0.33333 197046|0.15278 197047|0.25 197048|0.27778 197049|0.16667 197050|0.26389 197051|0.31944 197052|0.11111 197053|0.19444 197054|0.34722 197055|0.48611 197056|0.15278 197057|0.48611 197058|0.5 197059|0.375 197060|0.5 197061|0.5 197062|0.5 197063|0.31944 197064|0.375 197065|0.47222 197066|0.5 197067|0.47222 197068|0.45833 197069|0.375 197070|0.52778 197071|0.56944 197072|0.56944 197073|0.79167 197074|0.56944 197075|0.20833 197076|0.51389 197077|0.5 197078|0.38889 197079|0.26389 197080|0.30556 197081|0.13889 197082|0.22222 197083|0.45833 197084|0.083333 197085|0.22222 197086|0.33333 197087|0.30556 197088|0.29167 197089|0.083333 197090|0.38889 197091|0.27778 197092|0.30556 197093|0.27778 197094|0.26389 197095|0.26389 197096|0.25 197097|0.5 197098|0.41667 197099|0.15278 197100|0.25 197101|0.083333 197102|0.5 197103|0.48611 197104|0.5 197105|0.5 197106|0.63889 197107|0.25 197108|0.5 197109|0.61111 197110|0.33333 197111|0.33333 197112|0.47222 197113|0.41667 197114|0.31944 197115|0.36111 197116|0.30556 197117|0.44444 197118|0.40278 197119|0.58333 197120|0.40278 197121|0.54167 197122|0.5 197123|0.25 197124|0.33333 197125|0.5 197126|0.48611 197127|0.34722 197128|0.54167 197129|0.61111 197130|0.51389 197131|0.23611 197132|0.375 197133|0.44444 197134|0.47222 197135|0.5 197136|0.33333 197137|0.27778 197138|0.25 197139|0.38889 197140|0.38889 197141|0.54167 197142|0.25 197143|0.44444 197144|0.5 197145|0.59722 197146|0.44444 197147|0.5 197148|0.69444 197149|0.5 197150|0.44444 197151|0.41667 197152|0.5 197153|0.43056 197154|0.54167 197155|0.69444 197156|0.61111 197157|0.47222 197158|0.31944 197159|0.625 197160|0.15278 197161|0.43056 197162|0.125 197163|0.25 197164|0.055556 197165|0.31944 197166|0.33333 197167|0.44444 197168|0.38889 197169|0.45833 197170|0.5 197171|0.20833 197172|0.52778 197173|0.51389 197174|0.54167 197175|0.5 197176|0.61111 197177|0.77778 197178|0.11111 197179|0.18056 197180|0.11111 197181|0.15278 197182|0.33333 197183|0.5 197184|0.52778 197185|0.54167 197186|0.27778 197187|0.34722 197188|0.72222 197189|0.5 197190|0.30556 197191|0.33333 197192|0.29167 197193|0.375 197194|0.055556 197195|0.55556 197196|0.34722 197197|0.58333 197198|0.41667 197199|0.51389 197200|0.43056 197201|0.23611 197202|0.22222 197203|0.27778 197204|0.5 197205|0.23611 197206|0.30556 197207|0.48611 197208|0.16667 197209|0.13889 197210|0.51389 197211|0.22222 197212|0.5 197213|0.375 197214|0.48611 197215|0.27778 197216|0.18056 197217|0.31944 197218|0.33333 197219|0.33333 197220|0.30556 197221|0.44444 197222|0.20833 197223|0.48611 197224|0.40278 197225|0.33333 197226|0.5 197227|0.44444 197228|0.38889 197229|0.36111 197230|0.34722 197231|0.34722 197232|0.40278 197233|0.54167 197234|0.55556 197235|0.5 197236|0.29167 197237|0.61111 197238|0.40278 197239|0.52778 197240|0.5 197241|0.5 197242|0.51389 197243|0.5 197244|0.55556 197245|0.45833 197246|0.45833 197247|0.31944 197248|0.18056 197249|0.29167 197250|0.44444 197251|0.22222 197252|0.5 197253|0.5 197254|0.5 197255|0.61111 197256|0.27778 197257|0.45833 197258|0.56944 197259|0.43056 197260|0.5 197261|0.44444 197262|0.5 197263|0.27778 197264|0.26389 197265|0.33333 197266|0.22222 197267|0.18056 197268|0.16667 197269|0.083333 197270|0.48611 197271|0.61111 197272|0.59722 197273|0.26389 197274|0.51389 197275|0.625 197276|0.69444 197277|0.44444 197278|0.375 197279|0.45833 197280|0.48611 197281|0.5 197282|0.65278 197283|0.52778 197284|0.51389 197285|0.19444 197286|0.34722 197287|0.29167 197288|0.26389 197289|0.44444 197290|0.38889 197291|0.48611 197292|0.375 197293|0.56944 197294|0.36111 197295|0.27778 197296|0.33333 197297|0.22222 197298|0.25 197299|0.27778 197300|0.19444 197301|0.20833 197302|0.44444 197303|0.25 197304|0.36111 197305|0.79167 197306|0.34722 197307|0.44444 197308|0.47222 197309|0.22222 197310|0.27778 197311|0.48611 197312|0.27778 197313|0.51389 197314|0.23611 197315|0.38889 197316|0.51389 197317|0.41667 197318|0.33333 197319|0.33333 197320|0.27778 197321|0.30556 197322|0.16667 197323|0.16667 197324|0.40278 197325|0.26389 197326|0.47222 197327|0.58333 197328|0.26389 197329|0.30556 197330|0.26389 197331|0.33333 197332|0.38889 197333|0.33333 197334|0.26389 197335|0.44444 197336|0.16667 197337|0.43056 197338|0.36111 197339|0.45833 197340|0.375 197341|0.40278 197342|0.25 197343|0.19444 197344|0.22222 197345|0.19444 197346|0.13889 197347|0.097222 197348|0.27778 197349|0.20833 197350|0.375 197351|0.31944 197352|0.26389 197353|0.41667 197354|0.375 197355|0.25 197356|0.27778 197357|0.47222 197358|0.40278 197359|0.27778 197360|0.44444 197361|0.30556 197362|0.16667 197363|0.22222 197364|0.25 197365|0.22222 197366|0.19444 197367|0.13889 197368|0.27778 197369|0.11111 197370|0.18056 197371|0.47222 197372|0.36111 197373|0.125 197374|0.16667 197375|0.27778 197376|0.19444 197377|0.30556 197378|0.29167 197379|0.25 197380|0.30556 197381|0.43056 197382|0.61111 197383|0.41667 197384|0.36111 197385|0.45833 197386|0.40278 197387|0.69444 197388|0.48611 197389|0.38889 197390|0.68056 197391|0.33333 197392|0.43056 197393|0.5 197394|0.58333 197395|0.47222 197396|0.5 197397|0.5 197398|0.22222 197399|0.61111 197400|0.5 197401|0.43056 197402|0.40278 197403|0.43056 197404|0.55556 197405|0.31944 197406|0.48611 197407|0.38889 197408|0.38889 197409|0.31944 197410|0.5 197411|0.22222 197412|0.27778 197413|0.23611 197414|0.5 197415|0.38889 197416|0.38889 197417|0.20833 197418|0.47222 197419|0.45833 197420|0.41667 197421|0.51389 197422|0.33333 197423|0.15278 197424|0.55556 197425|0.45833 197426|0.29167 197427|0.72222 197428|0.15278 197429|0.41667 197430|0.43056 197431|0.45833 197432|0.5 197433|0.27778 197434|0.19444 197435|0.23611 197436|0.20833 197437|0.27778 197438|0.34722 197439|0.5 197440|0.5 197441|0.58333 197442|0.5 197443|0.16667 197444|0.5 197445|0.48611 197446|0.56944 197447|0.38889 197448|0.36111 197449|0.45833 197450|0.29167 197451|0.34722 197452|0.34722 197453|0.55556 197454|0.375 197455|0.5 197456|0.5 197457|0.33333 197458|0.29167 197459|0.375 197460|0.27778 197461|0.36111 197462|0.63889 197463|0.41667 197464|0.43056 197465|0.375 197466|0.43056 197467|0.55556 197468|0.54167 197469|0.16667 197470|0.5 197471|0.30556 197472|0.36111 197473|0.27778 197474|0.36111 197475|0.44444 197476|0.19444 197477|0.19444 197478|0.19444 197479|0.29167 197480|0.31944 197481|0.45833 197482|0.22222 197483|0.44444 197484|0.16667 197485|0.23611 197486|0.27778 197487|0.25 197488|0.26389 197489|0.61111 197490|0.30556 197491|0.5 197492|0.44444 197493|0.36111 197494|0.59722 197495|0.58333 197496|0.38889 197497|0.38889 197498|0.75 197499|0.69444 197500|0.59722 197501|0.51389 197502|0.58333 197503|0.80556 197504|0.83333 197505|0.36111 197506|0.51389 197507|0.45833 197508|0.54167 197509|0.375 197510|0.80556 197511|0.83333 197512|0.26389 197513|0.47222 197514|0.36111 197515|0.56944 197516|0.61111 197517|0.23611 197518|0.22222 197519|0.66667 197520|0.5 197521|0.45833 197522|0.61111 197523|0.65278 197524|0.5 197525|0.15278 197526|0.27778 197527|0.20833 197528|0.25 197529|0.22222 197530|0.27778 197531|0.375 197532|0.31944 197533|0.13889 197534|0.5 197535|0.48611 197536|0.5 197537|0.45833 197538|0.55556 197539|0.51389 197540|0.56944 197541|0.40278 197542|0.31944 197543|0.19444 197544|0.5 197545|0.5 197546|0.5 197547|0.34722 197548|0.38889 197549|0.29167 197550|0.43056 197551|0.52778 197552|0.22222 197553|0.26389 197554|0.25 197555|0.375 197556|0.055556 197557|0.51389 197558|0.38889 197559|0.20833 197560|0.19444 197561|0.54167 197562|0.19444 197563|0.44444 197564|0.30556 197565|0.5 197566|0.33333 197567|0.43056 197568|0.41667 197569|0.5 197570|0.54167 197571|0.36111 197572|0.51389 197573|0.375 197574|0.29167 197575|0.66667 197576|0.51389 197577|0.33333 197578|0.5 197579|0.5 197580|0.51389 197581|0.51389 197582|0.5 197583|0.47222 197584|0.15278 197585|0.11111 197586|0.26389 197587|0.13889 197588|0.19444 197589|0.16667 197590|0.25 197591|0.097222 197592|0.18056 197593|0.27778 197594|0.16667 197595|0.22222 197596|0.33333 197597|0.22222 197598|0.18056 197599|0.38889 197600|0.22222 197601|0.33333 197602|0.34722 197603|0.31944 197604|0.29167 197605|0.19444 197606|0.34722 197607|0.16667 197608|0.125 197609|0.5 197610|0.31944 197611|0.38889 197612|0.58333 197613|0.33333 197614|0.20833 197615|0.45833 197616|0.5 197617|0.20833 197618|0.22222 197619|0.68056 197620|0.5 197621|0.44444 197622|0.45833 197623|0.45833 197624|0.5 197625|0.51389 197626|0.5 197627|0.5 197628|0.5 197629|0.5 197630|0.5 197631|0.5 197632|0.5 197633|0.66667 197634|0.5 197635|0.66667 197636|0.22222 197637|0.18056 197638|0.25 197639|0.81944 197640|0.34722 197641|0.70833 197642|0.51389 197643|0.44444 197644|0.5 197645|0.51389 197646|0.51389 197647|0.5 197648|0.5 197649|0.44444 197650|0.27778 197651|0.66667 197652|0.45833 197653|0.5 197654|0.5 197655|0.23611 197656|0.68056 197657|0.69444 197658|0.58333 197659|0.55556 197660|0.30556 197661|0.5 197662|0.5 197663|0.43056 197664|0.66667 197665|0.5 197666|0.5 197667|0.34722 197668|0.63889 197669|0.625 197670|0.54167 197671|0.40278 197672|0.30556 197673|0.41667 197674|0.68056 197675|0.72222 197676|0.5 197677|0.36111 197678|0.58333 197679|0.30556 197680|0.47222 197681|0.59722 197682|0.36111 197683|0.55556 197684|0.58333 197685|0.20833 197686|0.59722 197687|0.65278 197688|0.5 197689|0.375 197690|0.5 197691|0.47222 197692|0.5 197693|0.5 197694|0.66667 197695|0.5 197696|0.31944 197697|0.55556 197698|0.5 197699|0.45833 197700|0.72222 197701|0.38889 197702|0.22222 197703|0.48611 197704|0.54167 197705|0.61111 197706|0.22222 197707|0.68056 197708|0.5 197709|0.72222 197710|0.22222 197711|0.38889 197712|0.58333 197713|0.38889 197714|0.26389 197715|0.47222 197716|0.61111 197717|0.375 197718|0.38889 197719|0.5 197720|0.54167 197721|0.47222 197722|0.63889 197723|0.73611 197724|0.22222 197725|0.625 197726|0.44444 197727|0.66667 197728|0.52778 197729|0.66667 197730|0.22222 197731|0.38889 197732|0.44444 197733|0.41667 197734|0.31944 197735|0.44444 197736|0.33333 197737|0.55556 197738|0.63889 197739|0.45833 197740|0.5 197741|0.73611 197742|0.65278 197743|0.48611 197744|0.54167 197745|0.41667 197746|0.58333 197747|0.5 197748|0.48611 197749|0.65278 197750|0.77778 197751|0.69444 197752|0.5 197753|0.56944 197754|0.55556 197755|0.27778 197756|0.16667 197757|0.5 197758|0.48611 197759|0.23611 197760|0.48611 197761|0.61111 197762|0.5 197763|0 197764|0.55556 197765|0.54167 197766|0.75 197767|0.70833 197768|0.11111 197769|0.20833 197770|0.125 197771|0.5 197772|0.22222 197773|0.19444 197774|0.5 197775|0.51389 197776|0.29167 197777|0.51389 197778|0.19444 197779|0.5 197780|0.5 197781|0.61111 197782|0.5 197783|0.70833 197784|0.5 197785|0.5 197786|0.45833 197787|0.44444 197788|0.44444 197789|0.55556 197790|0.61111 197791|0.65278 197792|0.70833 197793|0.34722 197794|0.34722 197795|0.52778 197796|0.55556 197797|0.27778 197798|0.34722 197799|0.23611 197800|0.52778 197801|0.38889 197802|0.55556 197803|0.44444 197804|0.44444 197805|0.27778 197806|0.5 197807|0.29167 197808|0.52778 197809|0.43056 197810|0.59722 197811|0.55556 197812|0.375 197813|0.27778 197814|0.5 197815|0.41667 197816|0.36111 197817|0.33333 197818|0.44444 197819|0.375 197820|0.16667 197821|0.33333 197822|0.19444 197823|0.33333 197824|0.22222 197825|0.125 197826|0.41667 197827|0.56944 197828|0.23611 197829|0.36111 197830|0.55556 197831|0.41667 197832|0.5 197833|0.61111 197834|0.68056 197835|0.5 197836|0.29167 197837|0.29167 197838|0.33333 197839|0.625 197840|0.375 197841|0.58333 197842|0.11111 197843|0.66667 197844|0.63889 197845|0.58333 197846|0.5 197847|0.63889 197848|0.5 197849|0.16667 197850|0.41667 197851|0.30556 197852|0.48611 197853|0.20833 197854|0.34722 197855|0.47222 197856|0.5 197857|0.29167 197858|0.23611 197859|0.38889 197860|0.41667 197861|0.44444 197862|0.22222 197863|0.19444 197864|0.20833 197865|0.23611 197866|0.58333 197867|0.40278 197868|0.5 197869|0.31944 197870|0.36111 197871|0.44444 197872|0.5 197873|0.027778 197874|0.18056 197875|0.27778 197876|0.44444 197877|0.40278 197878|0.76389 197879|0.68056 197880|0.5 197881|0.56944 197882|0.5 197883|0.5 197884|0.81944 197885|0.81944 197886|0.79167 197887|0.63889 197888|0.44444 197889|0.44444 197890|0.58333 197891|0.44444 197892|0.5 197893|0.70833 197894|0.61111 197895|0.70833 197896|0.61111 197897|0.5 197898|0.5 197899|0.58333 197900|0.55556 197901|0.51389 197902|0.375 197903|0.43056 197904|0.5 197905|0.375 197906|0.56944 197907|0.27778 197908|0.51389 197909|0.56944 197910|0.5 197911|0.375 197912|0.63889 197913|0.625 197914|0.41667 197915|0.63889 197916|0.63889 197917|0.56944 197918|0.43056 197919|0.43056 197920|0.65278 197921|0.38889 197922|0.66667 197923|0.30556 197924|0.72222 197925|0.625 197926|0.51389 197927|0.5 197928|0.22222 197929|0.38889 197930|0.66667 197931|0.63889 197932|0.47222 197933|0.625 197934|0.38889 197935|0.22222 197936|0.66667 197937|0.5 197938|0.34722 197939|0.51389 197940|0.66667 197941|0.5 197942|0.59722 197943|0.43056 197944|0.72222 197945|0.83333 197946|0.70833 197947|0.80556 197948|0.61111 197949|0.66667 197950|0.73611 197951|0.48611 197952|0.72222 197953|0.73611 197954|0.5 197955|0.5 197956|0.29167 197957|0.5 197958|0.63889 197959|0.5 197960|0.5 197961|0.5 197962|0.5 197963|0.5 197964|0.5 197965|0.5 197966|0.43056 197967|0.22222 197968|0.375 197969|0.40278 197970|0.13889 197971|0.19444 197972|0.097222 197973|0.19444 197974|0.51389 197975|0.5 197976|0.61111 197977|0.51389 197978|0.5 197979|0.44444 197980|0.63889 197981|0.70833 197982|0.72222 197983|0.51389 197984|0.66667 197985|0.22222 197986|0.23611 197987|0.16667 197988|0.36111 197989|0.375 197990|0.5 197991|0.47222 197992|0.40278 197993|0.51389 197994|0.56944 197995|0.61111 197996|0.51389 197997|0.54167 197998|0.5 197999|0.41667 198000|0.25 198001|0.5 198002|0.54167 198003|0.5 198004|0.44444 198005|0.5 198006|0.59722 198007|0.13889 198008|0.5 198009|0.51389 198010|0.73611 198011|0.45833 198012|0.13889 198013|0.66667 198014|0.55556 198015|0.81944 198016|0.19444 198017|0.30556 198018|0.52778 198019|0.5 198020|0.013889 198021|0.38889 198022|0.54167 198023|0.5 198024|0.66667 198025|0.55556 198026|0.48611 198027|0.41667 198028|0.34722 198029|0.40278 198030|0.30556 198031|0.44444 198032|0.19444 198033|0.13889 198034|0.26389 198035|0.31944 198036|0.18056 198037|0.20833 198038|0.61111 198039|0.81944 198040|0.61111 198041|0.33333 198042|0.48611 198043|0.48611 198044|0.54167 198045|0.55556 198046|0.5 198047|0.5 198048|0.5 198049|0.5 198050|0.40278 198051|0.38889 198052|0.34722 198053|0.38889 198054|0.375 198055|0.5 198056|0.44444 198057|0.22222 198058|0.5 198059|0.5 198060|0.097222 198061|0.25 198062|0.25 198063|0.51389 198064|0.16667 198065|0.38889 198066|0.59722 198067|0.29167 198068|0.13889 198069|0.44444 198070|0.48611 198071|0.34722 198072|0.5 198073|0.61111 198074|0.22222 198075|0.47222 198076|0.38889 198077|0.38889 198078|0.30556 198079|0.5 198080|0.43056 198081|0.61111 198082|0.48611 198083|0.41667 198084|0.26389 198085|0.36111 198086|0.43056 198087|0.5 198088|0.33333 198089|0.43056 198090|0.40278 198091|0.5 198092|0.31944 198093|0.33333 198094|0.5 198095|0.55556 198096|0.68056 198097|0.375 198098|0.5 198099|0.38889 198100|0.11111 198101|0.38889 198102|0.33333 198103|0.47222 198104|0.38889 198105|0.5 198106|0.44444 198107|0.30556 198108|0.55556 198109|0.125 198110|0.47222 198111|0.27778 198112|0.36111 198113|0.5 198114|0.44444 198115|0.33333 198116|0.5 198117|0.44444 198118|0.59722 198119|0.52778 198120|0.52778 198121|0.5 198122|0.48611 198123|0.5 198124|0.30556 198125|0.51389 198126|0.33333 198127|0.66667 198128|0.41667 198129|0.30556 198130|0.58333 198131|0.72222 198132|0.41667 198133|0.52778 198134|0.5 198135|0.52778 198136|0.34722 198137|0.20833 198138|0.22222 198139|0.22222 198140|0.19444 198141|0.51389 198142|0.56944 198143|0.5 198144|0.5 198145|0.5 198146|0.61111 198147|0.20833 198148|0.48611 198149|0.33333 198150|0.5 198151|0.30556 198152|0.20833 198153|0.54167 198154|0.56944 198155|0.91667 198156|0.44444 198157|0.66667 198158|0.5 198159|0.26389 198160|0.16667 198161|0.36111 198162|0.59722 198163|0.69444 198164|0.5 198165|0.5 198166|0.23611 198167|0.43056 198168|0.33333 198169|0.22222 198170|0.55556 198171|0.5 198172|0.5 198173|0.41667 198174|0.38889 198175|0.27778 198176|0.33333 198177|0.65278 198178|0.38889 198179|0.38889 198180|0.48611 198181|0.51389 198182|0.5 198183|0.5 198184|0.43056 198185|0.375 198186|0.375 198187|0.5 198188|0.5 198189|0.43056 198190|0.34722 198191|0.52778 198192|0.5 198193|0.52778 198194|0.5 198195|0.5 198196|0.5 198197|0.27778 198198|0.18056 198199|0.18056 198200|0.5 198201|0.51389 198202|0.55556 198203|0.5 198204|0.40278 198205|0.5 198206|0.5 198207|0.65278 198208|0.59722 198209|0.52778 198210|0.33333 198211|0.34722 198212|0.5 198213|0.23611 198214|0.55556 198215|0.61111 198216|0.5 198217|0.5 198218|0.5 198219|0.54167 198220|0.18056 198221|0.48611 198222|0.30556 198223|0.43056 198224|0.31944 198225|0.56944 198226|0.54167 198227|0.27778 198228|0.63889 198229|0.30556 198230|0.58333 198231|0.22222 198232|0.375 198233|0.5 198234|0.27778 198235|0.19444 198236|0.36111 198237|0.54167 198238|0.27778 198239|0.47222 198240|0.22222 198241|0.33333 198242|0.29167 198243|0.36111 198244|0.63889 198245|0.52778 198246|0.51389 198247|0.5 198248|0.54167 198249|0.38889 198250|0.41667 198251|0.47222 198252|0.84722 198253|0.77778 198254|0.69444 198255|0.81944 198256|0.625 198257|0.88889 198258|0.27778 198259|0.36111 198260|0.625 198261|0.5 198262|0.5 198263|0.48611 198264|0.36111 198265|0.5 198266|0.58333 198267|0.65278 198268|0.51389 198269|0.55556 198270|0.375 198271|0.27778 198272|0.97222 198273|0.90278 198274|0.5 198275|0.56944 198276|0.34722 198277|0.38889 198278|0.13889 198279|0.51389 198280|0.52778 198281|0.5 198282|0.54167 198283|0.84722 198284|0.68056 198285|0.38889 198286|0.55556 198287|0.25 198288|0.54167 198289|0.5 198290|0.22222 198291|0.29167 198292|0.54167 198293|0.22222 198294|0.47222 198295|0.45833 198296|0.58333 198297|0.52778 198298|0.5 198299|0.5 198300|0.5 198301|0.20833 198302|0.56944 198303|0.26389 198304|0.125 198305|0.20833 198306|0.40278 198307|0.54167 198308|0.33333 198309|0.34722 198310|0.40278 198311|0.5 198312|0.22222 198313|0.34722 198314|0.055556 198315|0.45833 198316|0.88889 198317|0.5 198318|0.38889 198319|0.27778 198320|0.59722 198321|0.5 198322|0.40278 198323|0.47222 198324|0.5 198325|0.5 198326|0.041667 198327|0.125 198328|0.54167 198329|0.55556 198330|0.40278 198331|0.52778 198332|0.31944 198333|0.375 198334|0.23611 198335|0.20833 198336|0.5 198337|0.41667 198338|0.22222 198339|0.22222 198340|0.51389 198341|0.5 198342|0.51389 198343|0.48611 198344|0.5 198345|0.36111 198346|0.22222 198347|0.25 198348|0.5 198349|0.13889 198350|0.15278 198351|0.55556 198352|0.5 198353|0.375 198354|0.44444 198355|0.83333 198356|0.65278 198357|0.5 198358|0.47222 198359|0.5 198360|0.27778 198361|0.56944 198362|0.54167 198363|0.61111 198364|0.65278 198365|0.38889 198366|0.31944 198367|0.38889 198368|0.33333 198369|0.38889 198370|0.40278 198371|0.16667 198372|0.36111 198373|0.47222 198374|0.55556 198375|0.80556 198376|0.48611 198377|0.63889 198378|0.5 198379|0.51389 198380|0.51389 198381|0.47222 198382|0.5 198383|0.5 198384|0.58333 198385|0.30556 198386|0.16667 198387|0.26389 198388|0.41667 198389|0.56944 198390|0.625 198391|0.61111 198392|0.45833 198393|0.55556 198394|0.61111 198395|0.30556 198396|0.40278 198397|0.61111 198398|0.48611 198399|0.5 198400|0.66667 198401|0.59722 198402|0.22222 198403|0.55556 198404|0.79167 198405|0.51389 198406|0.5 198407|0.58333 198408|0.68056 198409|0.31944 198410|0.33333 198411|0.25 198412|0.45833 198413|0.55556 198414|0.51389 198415|0.41667 198416|0.44444 198417|0.5 198418|0.5 198419|0.5 198420|0.66667 198421|0.55556 198422|0.59722 198423|0.56944 198424|0.375 198425|0.44444 198426|0.48611 198427|0.52778 198428|0.5 198429|0.19444 198430|0.097222 198431|0.5 198432|0.48611 198433|0.47222 198434|0.30556 198435|0.16667 198436|0.22222 198437|0.18056 198438|0.16667 198439|0.22222 198440|0.25 198441|0.41667 198442|0.23611 198443|0.15278 198444|0.25 198445|0.22222 198446|0.055556 198447|0.125 198448|0.65278 198449|0.22222 198450|0.29167 198451|0.11111 198452|0.45833 198453|0.33333 198454|0.22222 198455|0.33333 198456|0.41667 198457|0.48611 198458|0.375 198459|0.18056 198460|0.16667 198461|0.59722 198462|0.55556 198463|0.36111 198464|0.61111 198465|0.52778 198466|0.33333 198467|0.52778 198468|0.55556 198469|0.73611 198470|0.29167 198471|0.29167 198472|0.33333 198473|0.16667 198474|0.083333 198475|0.44444 198476|0.29167 198477|0.18056 198478|0.25 198479|0.5 198480|0.23611 198481|0.66667 198482|0.58333 198483|0.18056 198484|0.27778 198485|0.22222 198486|0.19444 198487|0.11111 198488|0.25 198489|0.30556 198490|0.55556 198491|0.5 198492|0.25 198493|0.25 198494|0.41667 198495|0.33333 198496|0.375 198497|0.36111 198498|0.40278 198499|0.36111 198500|0.33333 198501|0.73611 198502|0.63889 198503|0.23611 198504|0.51389 198505|0.45833 198506|0.25 198507|0.30556 198508|0.33333 198509|0.25 198510|0.40278 198511|0.5 198512|0.45833 198513|0.51389 198514|0.33333 198515|0.48611 198516|0.58333 198517|0.66667 198518|0.72222 198519|0.56944 198520|0.69444 198521|0.73611 198522|0.72222 198523|0.77778 198524|0.51389 198525|0.5 198526|0.69444 198527|0.72222 198528|0.52778 198529|0.5 198530|0.26389 198531|0.5 198532|0.54167 198533|0.47222 198534|0.75 198535|0.66667 198536|0.84722 198537|0.68056 198538|0.77778 198539|0.41667 198540|0.25 198541|0.20833 198542|0.44444 198543|0.44444 198544|0.34722 198545|0.18056 198546|0.38889 198547|0.80556 198548|0.34722 198549|0.27778 198550|0.63889 198551|0.52778 198552|0.625 198553|0.65278 198554|0.66667 198555|0.625 198556|0.59722 198557|0.20833 198558|0.23611 198559|0.61111 198560|0.375 198561|0.31944 198562|0.27778 198563|0.38889 198564|0.38889 198565|0.33333 198566|0.20833 198567|0.30556 198568|0.055556 198569|0.51389 198570|0.19444 198571|0.29167 198572|0.40278 198573|0.51389 198574|0.34722 198575|0.375 198576|0.44444 198577|0.29167 198578|0.30556 198579|0.29167 198580|0.34722 198581|0.38889 198582|0.45833 198583|0.44444 198584|0.55556 198585|0.59722 198586|0.43056 198587|0.65278 198588|0.52778 198589|0.55556 198590|0.79167 198591|0.93056 198592|0.73611 198593|0.88889 198594|0.66667 198595|0.55556 198596|0.27778 198597|0.38889 198598|0.5 198599|0.79167 198600|0.66667 198601|0.51389 198602|0.61111 198603|0.51389 198604|0.55556 198605|0.33333 198606|0.29167 198607|0.16667 198608|0.16667 198609|0.5 198610|0.38889 198611|0.41667 198612|0.36111 198613|0.41667 198614|0.43056 198615|0.16667 198616|0.22222 198617|0.56944 198618|0.55556 198619|0.27778 198620|0.625 198621|0.41667 198622|0.48611 198623|0.48611 198624|0.33333 198625|0.73611 198626|0.48611 198627|0.36111 198628|0.68056 198629|0.77778 198630|0.5 198631|0.5 198632|0.68056 198633|0.5 198634|0.29167 198635|0.625 198636|0.65278 198637|0.13889 198638|0.125 198639|0.40278 198640|0.40278 198641|0.25 198642|0.48611 198643|0.59722 198644|0.47222 198645|0.41667 198646|0.33333 198647|0.38889 198648|0.68056 198649|0.66667 198650|0.72222 198651|0.45833 198652|0.40278 198653|0.31944 198654|0.27778 198655|0.47222 198656|0.45833 198657|0.43056 198658|0.16667 198659|0.013889 198660|0.41667 198661|0.34722 198662|0.36111 198663|0.27778 198664|0.18056 198665|0.22222 198666|0.55556 198667|0.5 198668|0.47222 198669|0.41667 198670|0.27778 198671|0.16667 198672|0.11111 198673|0.43056 198674|0.23611 198675|0.30556 198676|0.29167 198677|0.5 198678|0.70833 198679|0.48611 198680|0.69444 198681|0.48611 198682|0.45833 198683|0.45833 198684|0.52778 198685|0.625 198686|0.54167 198687|0.5 198688|0.36111 198689|0.22222 198690|0.44444 198691|0.27778 198692|0.22222 198693|0.38889 198694|0.38889 198695|0.55556 198696|0.44444 198697|0.68056 198698|0.375 198699|0.43056 198700|0.40278 198701|0.31944 198702|0.30556 198703|0.26389 198704|0.15278 198705|0.11111 198706|0.45833 198707|0.44444 198708|0.47222 198709|0.29167 198710|0.26389 198711|0.20833 198712|0.27778 198713|0.25 198714|0.36111 198715|0.34722 198716|0.22222 198717|0.26389 198718|0.20833 198719|0.25 198720|0.20833 198721|0.26389 198722|0.38889 198723|0.26389 198724|0.27778 198725|0.48611 198726|0.33333 198727|0.15278 198728|0.22222 198729|0.15278 198730|0.19444 198731|0.25 198732|0.29167 198733|0.29167 198734|0.26389 198735|0.40278 198736|0.16667 198737|0.19444 198738|0.25 198739|0.11111 198740|0.30556 198741|0.61111 198742|0.40278 198743|0.31944 198744|0.27778 198745|0.36111 198746|0.34722 198747|0.5 198748|0.38889 198749|0.27778 198750|0.55556 198751|0.51389 198752|0.19444 198753|0.22222 198754|0.19444 198755|0.23611 198756|0.18056 198757|0.48611 198758|0.5 198759|0.66667 198760|0.29167 198761|0.22222 198762|0.51389 198763|0.51389 198764|0.45833 198765|0.47222 198766|0.55556 198767|0.61111 198768|0.36111 198769|0.5 198770|0.5 198771|0.38889 198772|0.5 198773|0.40278 198774|0.5 198775|0.48611 198776|0.23611 198777|0.61111 198778|0.58333 198779|0.56944 198780|0.38889 198781|0.55556 198782|0.58333 198783|0.40278 198784|0.5 198785|0.55556 198786|0.61111 198787|0.51389 198788|0.19444 198789|0.5 198790|0.66667 198791|0.54167 198792|0.5 198793|0.59722 198794|0.56944 198795|0.41667 198796|0.43056 198797|0.47222 198798|0.66667 198799|0.51389 198800|0.51389 198801|0.44444 198802|0.48611 198803|0.48611 198804|0.29167 198805|0.36111 198806|0.34722 198807|0.51389 198808|0.5 198809|0.5 198810|0.48611 198811|0.5 198812|0.5 198813|0.5 198814|0.56944 198815|0.38889 198816|0.5 198817|0.5 198818|0.33333 198819|0.40278 198820|0.40278 198821|0.30556 198822|0.5 198823|0.38889 198824|0.38889 198825|0.33333 198826|0.51389 198827|0.47222 198828|0.41667 198829|0.33333 198830|0.33333 198831|0.5 198832|0.15278 198833|0.20833 198834|0.5 198835|0.51389 198836|0.27778 198837|0.5 198838|0.30556 198839|0.45833 198840|0.72222 198841|0.77778 198842|0.54167 198843|0.55556 198844|0.34722 198845|0.22222 198846|0.23611 198847|0.58333 198848|0.5 198849|0.13889 198850|0.5 198851|0.58333 198852|0.51389 198853|0.43056 198854|0.375 198855|0.5 198856|0.5 198857|0.5 198858|0.47222 198859|0.33333 198860|0.48611 198861|0.41667 198862|0.097222 198863|0.5 198864|0.23611 198865|0.5 198866|0.625 198867|0.20833 198868|0.51389 198869|0.5 198870|0.5 198871|0.38889 198872|0.5 198873|0.5 198874|0.30556 198875|0.5 198876|0.625 198877|0.45833 198878|0.5 198879|0.16667 198880|0.055556 198881|0.5 198882|0.5 198883|0.5 198884|0.44444 198885|0.5 198886|0.5 198887|0.5 198888|0.63889 198889|0.5 198890|0.375 198891|0.68056 198892|0.56944 198893|0.26389 198894|0.055556 198895|0.16667 198896|0.34722 198897|0.36111 198898|0.625 198899|0.63889 198900|0.27778 198901|0.54167 198902|0.52778 198903|0.29167 198904|0.20833 198905|0.31944 198906|0.40278 198907|0.66667 198908|0.18056 198909|0.54167 198910|0.31944 198911|0.5 198912|0.52778 198913|0.56944 198914|0.5 198915|0.33333 198916|0.55556 198917|0.48611 198918|0.23611 198919|0.51389 198920|0.5 198921|0.52778 198922|0.43056 198923|0.5 198924|0.375 198925|0.097222 198926|0.625 198927|0.47222 198928|0.5 198929|0.5 198930|0.68056 198931|0.47222 198932|0.66667 198933|0.625 198934|0.61111 198935|0.34722 198936|0.33333 198937|0.22222 198938|0.59722 198939|0.625 198940|0.41667 198941|0.33333 198942|0.70833 198943|0.84722 198944|0.65278 198945|0.80556 198946|0.38889 198947|0.77778 198948|0.625 198949|0.81944 198950|0.88889 198951|0.61111 198952|0.80556 198953|0.54167 198954|0.5 198955|0.44444 198956|0.44444 198957|0.51389 198958|0.54167 198959|0.58333 198960|0.5 198961|0.5 198962|0.5 198963|0.5 198964|0.52778 198965|0.48611 198966|0.63889 198967|0.5 198968|0.41667 198969|0.5 198970|0.61111 198971|0.5 198972|0.63889 198973|0.625 198974|0.41667 198975|0.38889 198976|0.5 198977|0.5 198978|0.5 198979|0.5 198980|0.5 198981|0.68056 198982|0.77778 198983|0.45833 198984|0.5 198985|0.29167 198986|0.5 198987|0.33333 198988|0.36111 198989|0.70833 198990|0.56944 198991|0.5 198992|0.56944 198993|0.40278 198994|0.77778 198995|0.61111 198996|0.81944 198997|0.55556 198998|0.63889 198999|0.59722 199000|0.5 199001|0.47222 199002|0.56944 199003|0.5 199004|0.48611 199005|0.5 199006|0.27778 199007|0.36111 199008|0.47222 199009|0.20833 199010|0.5 199011|0.55556 199012|0.31944 199013|0.30556 199014|0.22222 199015|0.125 199016|0.70833 199017|0.34722 199018|0.5 199019|0.44444 199020|0.33333 199021|0.27778 199022|0.29167 199023|0.55556 199024|0.19444 199025|0.30556 199026|0.29167 199027|0.27778 199028|0.16667 199029|0.36111 199030|0.33333 199031|0.31944 199032|0.30556 199033|0.45833 199034|0.36111 199035|0.40278 199036|0.43056 199037|0.38889 199038|0.34722 199039|0.20833 199040|0.38889 199041|0.66667 199042|0.54167 199043|0.61111 199044|0.27778 199045|0.55556 199046|0.40278 199047|0.22222 199048|0.5 199049|0.23611 199050|0.47222 199051|0.875 199052|0.63889 199053|0.48611 199054|0.5 199055|0.5 199056|0.41667 199057|0.43056 199058|0.5 199059|0.5 199060|0.38889 199061|0.5 199062|0.47222 199063|0.5 199064|0.41667 199065|0.19444 199066|0.27778 199067|0.59722 199068|0.18056 199069|0.22222 199070|0.43056 199071|0.5 199072|0.33333 199073|0.055556 199074|0.44444 199075|0.16667 199076|0.27778 199077|0.66667 199078|0.47222 199079|0.40278 199080|0.55556 199081|0.54167 199082|0.66667 199083|0.55556 199084|0.43056 199085|0.47222 199086|0.625 199087|0.44444 199088|0.43056 199089|0.23611 199090|0.44444 199091|0.41667 199092|0.52778 199093|0.31944 199094|0.47222 199095|0.5 199096|0.29167 199097|0.59722 199098|0.54167 199099|0.5 199100|0.34722 199101|0.31944 199102|0.44444 199103|0.38889 199104|0.26389 199105|0.75 199106|0.33333 199107|0.5 199108|0.5 199109|0.5 199110|0.63889 199111|0.55556 199112|0.55556 199113|0.52778 199114|0.25 199115|0.44444 199116|0.5 199117|0.5 199118|0.44444 199119|0.44444 199120|0.26389 199121|0.5 199122|0.5 199123|0.5 199124|0.26389 199125|0.52778 199126|0.47222 199127|0.5 199128|0.44444 199129|0.5 199130|0.58333 199131|0.5 199132|0.5 199133|0.61111 199134|0.51389 199135|0.5 199136|0.19444 199137|0.5 199138|0.5 199139|0.56944 199140|0.52778 199141|0.5 199142|0.48611 199143|0.59722 199144|0.55556 199145|0.5 199146|0.54167 199147|0.5 199148|0.55556 199149|0.47222 199150|0.5 199151|0.52778 199152|0.5 199153|0.47222 199154|0.13889 199155|0.13889 199156|0.5 199157|0.45833 199158|0.55556 199159|0.41667 199160|0.29167 199161|0.41667 199162|0.70833 199163|0.5 199164|0.47222 199165|0.63889 199166|0.55556 199167|0.15278 199168|0.5 199169|0.55556 199170|0.40278 199171|0.5 199172|0.43056 199173|0.43056 199174|0.625 199175|0.5 199176|0.48611 199177|0.43056 199178|0.5 199179|0.55556 199180|0.27778 199181|0.55556 199182|0.375 199183|0.36111 199184|0.5 199185|0.5 199186|0.63889 199187|0.15278 199188|0.45833 199189|0.23611 199190|0.69444 199191|0.5 199192|0.5 199193|0.5 199194|0.48611 199195|0.5 199196|0.44444 199197|0.56944 199198|0.23611 199199|0.44444 199200|0.5 199201|0.5 199202|0.13889 199203|0.52778 199204|0.5 199205|0.27778 199206|0.5 199207|0.44444 199208|0.375 199209|0.54167 199210|0.55556 199211|0.36111 199212|0.48611 199213|0.33333 199214|0.56944 199215|0.5 199216|0.375 199217|0.38889 199218|0.5 199219|0.51389 199220|0.55556 199221|0.5 199222|0.44444 199223|0.56944 199224|0.5 199225|0.51389 199226|0.51389 199227|0.625 199228|0.75 199229|0.44444 199230|0.5 199231|0.5 199232|0.31944 199233|0.5 199234|0.47222 199235|0.20833 199236|0.5 199237|0.59722 199238|0.31944 199239|0.54167 199240|0.51389 199241|0.61111 199242|0.041667 199243|0.33333 199244|0.625 199245|0.61111 199246|0.63889 199247|0.48611 199248|0.44444 199249|0.23611 199250|0.5 199251|0.625 199252|0.38889 199253|0.5 199254|0.48611 199255|0.5 199256|0.23611 199257|0.55556 199258|0.40278 199259|0.48611 199260|0.5 199261|0.29167 199262|0.5 199263|0.5 199264|0.5 199265|0.51389 199266|0.41667 199267|0.38889 199268|0.43056 199269|0.5 199270|0.5 199271|0.63889 199272|0.31944 199273|0.5 199274|0.52778 199275|0.097222 199276|0.61111 199277|0.52778 199278|0.5 199279|0.5 199280|0.38889 199281|0.26389 199282|0.29167 199283|0.48611 199284|0.65278 199285|0.5 199286|0.44444 199287|0.61111 199288|0.52778 199289|0.18056 199290|0.48611 199291|0.73611 199292|0.44444 199293|0.5 199294|0.5 199295|0.25 199296|0.33333 199297|0.41667 199298|0.5 199299|0.44444 199300|0.61111 199301|0.43056 199302|0.47222 199303|0.5 199304|0.5 199305|0.43056 199306|0.5 199307|0.23611 199308|0.5 199309|0.625 199310|0.5 199311|0.5 199312|0.5 199313|0.54167 199314|0.48611 199315|0.54167 199316|0.51389 199317|0.375 199318|0.56944 199319|0.58333 199320|0.5 199321|0.40278 199322|0.52778 199323|0.68056 199324|0.44444 199325|0.5 199326|0.625 199327|0.625 199328|0.51389 199329|0.52778 199330|0.52778 199331|0.5 199332|0.5 199333|0.33333 199334|0.69444 199335|0.52778 199336|0.5 199337|0.22222 199338|0.41667 199339|0.5 199340|0.69444 199341|0.5 199342|0.5 199343|0.40278 199344|0.44444 199345|0.625 199346|0.5 199347|0.54167 199348|0.5 199349|0.5 199350|0.18056 199351|0.47222 199352|0.5 199353|0.23611 199354|0.34722 199355|0.52778 199356|0.55556 199357|0.55556 199358|0.54167 199359|0.41667 199360|0.875 199361|0.5 199362|0.30556 199363|0.45833 199364|0.68056 199365|0.5 199366|0.16667 199367|0.33333 199368|0.5 199369|0.38889 199370|0.5 199371|0.5 199372|0.56944 199373|0.34722 199374|0.5 199375|0.58333 199376|0.47222 199377|0.5 199378|0.36111 199379|0.5 199380|0.44444 199381|0.097222 199382|0.22222 199383|0.33333 199384|0.61111 199385|0.55556 199386|0.44444 199387|0.5 199388|0.5 199389|0.51389 199390|0.51389 199391|0.5 199392|0.5 199393|0.29167 199394|0.44444 199395|0.30556 199396|0.41667 199397|0.25 199398|0.33333 199399|0.13889 199400|0.36111 199401|0.20833 199402|0.47222 199403|0.51389 199404|0.44444 199405|0.19444 199406|0.47222 199407|0.5 199408|0.44444 199409|0.38889 199410|0.43056 199411|0.44444 199412|0.375 199413|0.44444 199414|0.48611 199415|0.34722 199416|0.34722 199417|0.23611 199418|0.55556 199419|0.40278 199420|0.18056 199421|0.51389 199422|0.18056 199423|0.27778 199424|0.375 199425|0.20833 199426|0.20833 199427|0.51389 199428|0.29167 199429|0.38889 199430|0.55556 199431|0.55556 199432|0.66667 199433|0.56944 199434|0.30556 199435|0.41667 199436|0.38889 199437|0.5 199438|0.5 199439|0.54167 199440|0.48611 199441|0.5 199442|0.52778 199443|0.36111 199444|0.31944 199445|0.29167 199446|0.31944 199447|0.58333 199448|0.47222 199449|0.40278 199450|0.63889 199451|0.23611 199452|0.16667 199453|0.5 199454|0.36111 199455|0.27778 199456|0.5 199457|0.44444 199458|0.5 199459|0.5 199460|0.51389 199461|0.22222 199462|0.43056 199463|0.23611 199464|0.38889 199465|0.29167 199466|0.5 199467|0.20833 199468|0.58333 199469|0.5 199470|0.5 199471|0.5 199472|0.27778 199473|0.40278 199474|0.33333 199475|0.25 199476|0.55556 199477|0.56944 199478|0.43056 199479|0.51389 199480|0.29167 199481|0.43056 199482|0.56944 199483|0.30556 199484|0.23611 199485|0.68056 199486|0.45833 199487|0.38889 199488|0.19444 199489|0.55556 199490|0.20833 199491|0.56944 199492|0.5 199493|0.44444 199494|0.51389 199495|0.44444 199496|0.22222 199497|0.38889 199498|0.41667 199499|0.31944 199500|0.72222 199501|0.69444 199502|0.68056 199503|0.81944 199504|0.58333 199505|0.72222 199506|0.55556 199507|0.65278 199508|0.33333 199509|0.5 199510|0.63889 199511|0.66667 199512|0.68056 199513|0.75 199514|0.58333 199515|0.63889 199516|0.54167 199517|0.45833 199518|0.65278 199519|0.41667 199520|0.38889 199521|0.41667 199522|0.33333 199523|0.5 199524|0.58333 199525|0.40278 199526|0.5 199527|0.5 199528|0.625 199529|0.5 199530|0.5 199531|0.51389 199532|0.55556 199533|0.30556 199534|0.30556 199535|0.22222 199536|0.55556 199537|0.5 199538|0.75 199539|0.5 199540|0.5 199541|0.5 199542|0.36111 199543|0.5 199544|0.5 199545|0.48611 199546|0.33333 199547|0.27778 199548|0.15278 199549|0.73611 199550|0.44444 199551|0.23611 199552|0.5 199553|0.5 199554|0.5 199555|0.27778 199556|0.44444 199557|0.25 199558|0.41667 199559|0.5 199560|0.47222 199561|0.54167 199562|0.5 199563|0.40278 199564|0.5 199565|0.125 199566|0.5 199567|0.34722 199568|0.65278 199569|0.20833 199570|0.61111 199571|0.63889 199572|0.5 199573|0.43056 199574|0.5 199575|0.5 199576|0.5 199577|0.56944 199578|0.375 199579|0.19444 199580|0.5 199581|0.58333 199582|0.375 199583|0.5 199584|0.33333 199585|0.55556 199586|0.5 199587|0.40278 199588|0.5 199589|0.65278 199590|0.44444 199591|0.36111 199592|0.44444 199593|0.52778 199594|0.51389 199595|0.19444 199596|0.055556 199597|0.5 199598|0.33333 199599|0.72222 199600|0.45833 199601|0.40278 199602|0.5 199603|0.30556 199604|0.54167 199605|0.38889 199606|0.44444 199607|0.5 199608|0.5 199609|0.61111 199610|0.36111 199611|0.5 199612|0.5 199613|0.59722 199614|0.5 199615|0.5 199616|0.5 199617|0.5 199618|0.33333 199619|0.31944 199620|0.54167 199621|0.5 199622|0.25 199623|0.43056 199624|0.5 199625|0.16667 199626|0.125 199627|0.44444 199628|0.31944 199629|0.38889 199630|0.83333 199631|0.5 199632|0.51389 199633|0.5 199634|0.51389 199635|0.22222 199636|0.52778 199637|0.5 199638|0.51389 199639|0.56944 199640|0.625 199641|0.23611 199642|0.26389 199643|0.20833 199644|0.5 199645|0.23611 199646|0.51389 199647|0.45833 199648|0.30556 199649|0.11111 199650|0.26389 199651|0.45833 199652|0.36111 199653|0.23611 199654|0.19444 199655|0.33333 199656|0.375 199657|0.31944 199658|0.22222 199659|0.25 199660|0.16667 199661|0.5 199662|0.51389 199663|0.55556 199664|0.38889 199665|0.65278 199666|0.56944 199667|0.5 199668|0.61111 199669|0.51389 199670|0.5 199671|0.5 199672|0.55556 199673|0.375 199674|0.34722 199675|0.58333 199676|0.36111 199677|0.48611 199678|0.66667 199679|0.625 199680|0.65278 199681|0.625 199682|0.61111 199683|0.5 199684|0.44444 199685|0.45833 199686|0.65278 199687|0.95833 199688|0.83333 199689|0.5 199690|0.79167 199691|0.30556 199692|0.65278 199693|0.5 199694|0.77778 199695|0.45833 199696|0.5 199697|0.51389 199698|0.5 199699|0.5 199700|0.44444 199701|0.19444 199702|0.25 199703|0.54167 199704|0.55556 199705|0.375 199706|0.25 199707|0.23611 199708|0.55556 199709|0.38889 199710|0.5 199711|0.55556 199712|0.61111 199713|0.5 199714|0.38889 199715|0.27778 199716|0.47222 199717|0.43056 199718|0.55556 199719|0.375 199720|0.5 199721|0.45833 199722|0.22222 199723|0.59722 199724|0.36111 199725|0.625 199726|0.47222 199727|0.15278 199728|0.5 199729|0.5 199730|0.52778 199731|0.5 199732|0.5 199733|0.5 199734|0.19444 199735|0.48611 199736|0.5 199737|0.40278 199738|0.47222 199739|0.5 199740|0.51389 199741|0.5 199742|0.44444 199743|0.38889 199744|0.66667 199745|0.47222 199746|0.36111 199747|0.56944 199748|0.5 199749|0.48611 199750|0.5 199751|0.26389 199752|0.27778 199753|0.33333 199754|0.5 199755|0.5 199756|0.38889 199757|0.43056 199758|0.54167 199759|0.75 199760|0.44444 199761|0.52778 199762|0.36111 199763|0.65278 199764|0.52778 199765|0.70833 199766|0.73611 199767|0.80556 199768|0.47222 199769|0.44444 199770|0.13889 199771|0.31944 199772|0.30556 199773|0.38889 199774|0.11111 199775|0.22222 199776|0.61111 199777|0.41667 199778|0.16667 199779|0.61111 199780|0.5 199781|0.65278 199782|0.43056 199783|0.48611 199784|0.43056 199785|0.44444 199786|0.5 199787|0.47222 199788|0.55556 199789|0.41667 199790|0.41667 199791|0.34722 199792|0.52778 199793|0.18056 199794|0.27778 199795|0.45833 199796|0.61111 199797|0.16667 199798|0.72222 199799|0.625 199800|0.61111 199801|0.58333 199802|0.80556 199803|0.625 199804|0.79167 199805|0.48611 199806|0.84722 199807|0.79167 199808|0.61111 199809|0.5 199810|0.5 199811|0.16667 199812|0.36111 199813|0.40278 199814|0.44444 199815|0.33333 199816|0.41667 199817|0.54167 199818|0.51389 199819|0.51389 199820|0.51389 199821|0.25 199822|0.44444 199823|0.48611 199824|0.70833 199825|0.41667 199826|0.48611 199827|0.125 199828|0.20833 199829|0.33333 199830|0.55556 199831|0.625 199832|0.29167 199833|0.44444 199834|0.58333 199835|0.52778 199836|0.5 199837|0.61111 199838|0.5 199839|0.027778 199840|0.55556 199841|0.43056 199842|0.45833 199843|0.56944 199844|0.5 199845|0.27778 199846|0.47222 199847|0.15278 199848|0.375 199849|0.51389 199850|0.44444 199851|0.625 199852|0.52778 199853|0.41667 199854|0.44444 199855|0.45833 199856|0.48611 199857|0.23611 199858|0.48611 199859|0.33333 199860|0.43056 199861|0.38889 199862|0.27778 199863|0.22222 199864|0.54167 199865|0.81944 199866|0.84722 199867|0.43056 199868|0.33333 199869|0.20833 199870|0.15278 199871|0.40278 199872|0.30556 199873|0.19444 199874|0.58333 199875|0.40278 199876|0.36111 199877|0.61111 199878|0.38889 199879|0.43056 199880|0.51389 199881|0.65278 199882|0.5 199883|0.43056 199884|0.72222 199885|0.38889 199886|0.69444 199887|0.47222 199888|0.58333 199889|0.40278 199890|0.51389 199891|0.22222 199892|0.30556 199893|0.30556 199894|0.41667 199895|0.23611 199896|0.27778 199897|0.34722 199898|0.375 199899|0.11111 199900|0.41667 199901|0.25 199902|0.58333 199903|0.5 199904|0.125 199905|0.5 199906|0.18056 199907|0.5 199908|0.54167 199909|0.34722 199910|0.54167 199911|0.63889 199912|0.30556 199913|0.5 199914|0.52778 199915|0.5 199916|0.56944 199917|0.38889 199918|0.36111 199919|0.5 199920|0.5 199921|0.51389 199922|0.5 199923|0.29167 199924|0.58333 199925|0.52778 199926|0.51389 199927|0.33333 199928|0.44444 199929|0.11111 199930|0.47222 199931|0.40278 199932|0.5 199933|0.56944 199934|0.80556 199935|0.41667 199936|0.38889 199937|0.70833 199938|0.72222 199939|0.45833 199940|0.61111 199941|0.48611 199942|0.65278 199943|0.43056 199944|0.73611 199945|0.5 199946|0.5 199947|0.18056 199948|0.66667 199949|0.38889 199950|0.52778 199951|0.47222 199952|0.61111 199953|0.15278 199954|0.5 199955|0.66667 199956|0.5 199957|0.44444 199958|0.43056 199959|0.56944 199960|0.5 199961|0.40278 199962|0.54167 199963|0.20833 199964|0.55556 199965|0.15278 199966|0.47222 199967|0.625 199968|0.51389 199969|0.52778 199970|0.5 199971|0.43056 199972|0.56944 199973|0.65278 199974|0.75 199975|0.31944 199976|0.5 199977|0.44444 199978|0.5 199979|0.33333 199980|0.5 199981|0.54167 199982|0.45833 199983|0.56944 199984|0.19444 199985|0.73611 199986|0.70833 199987|0.52778 199988|0.51389 199989|0.54167 199990|0.5 199991|0.54167 199992|0.38889 199993|0.38889 199994|0.27778 199995|0.55556 199996|0.625 199997|0.33333 199998|0.44444 199999|0.25 200000|0.31944 200001|0.22222 200002|0.5 200003|0.44444 200004|0.30556 200005|0.43056 200006|0.375 200007|0.52778 200008|0.23611 200009|0.58333 200010|0.5 200011|0.59722 200012|0.58333 200013|0.5 200014|0.58333 200015|0.375 200016|0.5 200017|0.27778 200018|0.31944 200019|0.38889 200020|0.52778 200021|0.5 200022|0.51389 200023|0.5 200024|0.44444 200025|0.51389 200026|0.38889 200027|0.55556 200028|0.52778 200029|0.5 200030|0.33333 200031|0.5 200032|0.5 200033|0.22222 200034|0.52778 200035|0.52778 200036|0.5 200037|0.38889 200038|0.41667 200039|0.5 200040|0.5 200041|0.54167 200042|0.56944 200043|0.36111 200044|0.40278 200045|0.23611 200046|0.45833 200047|0.375 200048|0.51389 200049|0.56944 200050|0.59722 200051|0.45833 200052|0.34722 200053|0.22222 200054|0.47222 200055|0.29167 200056|0.47222 200057|0.041667 200058|0.29167 200059|0.63889 200060|0.40278 200061|0.16667 200062|0.30556 200063|0.30556 200064|0.54167 200065|0.19444 200066|0.65278 200067|0.45833 200068|0.48611 200069|0.26389 200070|0.48611 200071|0.51389 200072|0.45833 200073|0.68056 200074|0.16667 200075|0.45833 200076|0.5 200077|0.38889 200078|0.26389 200079|0.63889 200080|0.61111 200081|0.61111 200082|0.31944 200083|0.26389 200084|0.48611 200085|0.25 200086|0.5 200087|0.41667 200088|0.47222 200089|0.44444 200090|0.33333 200091|0.44444 200092|0.47222 200093|0.55556 200094|0.81944 200095|0.54167 200096|0.68056 200097|0.69444 200098|0.26389 200099|0.77778 200100|0.65278 200101|0.56944 200102|0.47222 200103|0.72222 200104|0.47222 200105|0.83333 200106|0.43056 200107|0.83333 200108|0.63889 200109|0.61111 200110|0.47222 200111|0.73611 200112|0.61111 200113|0.59722 200114|0.56944 200115|0.70833 200116|0.27778 200117|0.73611 200118|0.59722 200119|0.72222 200120|0.40278 200121|0.52778 200122|0.63889 200123|0.65278 200124|0.81944 200125|0.63889 200126|0.56944 200127|0.80556 200128|0.79167 200129|0.77778 200130|0.625 200131|0.61111 200132|0.72222 200133|0.55556 200134|0.375 200135|0.26389 200136|0.73611 200137|0.76389 200138|0.58333 200139|0.51389 200140|0.68056 200141|0.44444 200142|0.47222 200143|0.48611 200144|0.54167 200145|0.5 200146|0.61111 200147|0.38889 200148|0.27778 200149|0.45833 200150|0.25 200151|0.47222 200152|0.41667 200153|0.56944 200154|0.44444 200155|0.19444 200156|0.5 200157|0.54167 200158|0.5 200159|0.44444 200160|0.34722 200161|0.5 200162|0.58333 200163|0.5 200164|0.54167 200165|0.44444 200166|0.5 200167|0.5 200168|0.5 200169|0.38889 200170|0.61111 200171|0.58333 200172|0.27778 200173|0.45833 200174|0.5 200175|0.125 200176|0.48611 200177|0.31944 200178|0.26389 200179|0.68056 200180|0.36111 200181|0.27778 200182|0.29167 200183|0.55556 200184|0.51389 200185|0.38889 200186|0.65278 200187|0.5 200188|0.48611 200189|0.43056 200190|0.48611 200191|0.375 200192|0.58333 200193|0.40278 200194|0.25 200195|0.40278 200196|0.20833 200197|0.19444 200198|0.43056 200199|0.44444 200200|0.5 200201|0.43056 200202|0.36111 200203|0.23611 200204|0.94444 200205|0.73611 200206|0.83333 200207|0.58333 200208|0.75 200209|0.75 200210|0.80556 200211|0.86111 200212|0.30556 200213|0.70833 200214|0.36111 200215|0.80556 200216|0.625 200217|0.75 200218|0.79167 200219|0.86111 200220|0.33333 200221|0.93056 200222|0.75 200223|0.68056 200224|0.23611 200225|0.72222 200226|0.75 200227|0.38889 200228|0.5 200229|0.31944 200230|0.38889 200231|0.30556 200232|0.36111 200233|0.48611 200234|0.77778 200235|0.45833 200236|0.69444 200237|0.27778 200238|0.29167 200239|0.29167 200240|0.45833 200241|0.33333 200242|0.44444 200243|0.44444 200244|0.34722 200245|0.44444 200246|0.33333 200247|0.38889 200248|0.36111 200249|0.20833 200250|0.5 200251|0.25 200252|0.26389 200253|0.041667 200254|0.52778 200255|0.5 200256|0.30556 200257|0.30556 200258|0.48611 200259|0.38889 200260|0.5 200261|0.19444 200262|0.16667 200263|0.38889 200264|0.27778 200265|0.30556 200266|0.38889 200267|0.59722 200268|0.30556 200269|0.16667 200270|0.38889 200271|0.23611 200272|0.27778 200273|0.5 200274|0.51389 200275|0.52778 200276|0.41667 200277|0.33333 200278|0.65278 200279|0.20833 200280|0.125 200281|0.41667 200282|0.34722 200283|0.375 200284|0.40278 200285|0.41667 200286|0.36111 200287|0.58333 200288|0.5 200289|0.5 200290|0.47222 200291|0.45833 200292|0.5 200293|0.5 200294|0.36111 200295|0.52778 200296|0.27778 200297|0.25 200298|0.52778 200299|0.52778 200300|0.5 200301|0.54167 200302|0.44444 200303|0.43056 200304|0.375 200305|0.27778 200306|0.30556 200307|0.34722 200308|0.40278 200309|0.5 200310|0.5 200311|0.5 200312|0.25 200313|0.18056 200314|0.27778 200315|0.16667 200316|0.23611 200317|0.22222 200318|0.52778 200319|0.45833 200320|0.55556 200321|0.66667 200322|0.58333 200323|0.51389 200324|0.48611 200325|0.48611 200326|0.38889 200327|0.40278 200328|0.59722 200329|0.55556 200330|0.5 200331|0.5 200332|0.5 200333|0.30556 200334|0.5 200335|0.5 200336|0.5 200337|0.51389 200338|0.5 200339|0.58333 200340|0.625 200341|0.51389 200342|0.23611 200343|0.20833 200344|0.61111 200345|0.055556 200346|0.22222 200347|0.73611 200348|0.41667 200349|0.44444 200350|0.61111 200351|0.47222 200352|0.36111 200353|0.61111 200354|0.61111 200355|0.5 200356|0.40278 200357|0.52778 200358|0.5 200359|0.44444 200360|0.41667 200361|0.45833 200362|0.30556 200363|0.33333 200364|0.5 200365|0.41667 200366|0.34722 200367|0.5 200368|0.58333 200369|0.38889 200370|0.38889 200371|0.47222 200372|0.125 200373|0.27778 200374|0.44444 200375|0.22222 200376|0.23611 200377|0.5 200378|0.5 200379|0.097222 200380|0.26389 200381|0.13889 200382|0.5 200383|0.81944 200384|0.90278 200385|0.55556 200386|0.45833 200387|0.29167 200388|0.47222 200389|0.48611 200390|0.52778 200391|0.44444 200392|0.66667 200393|0.56944 200394|0.55556 200395|0.20833 200396|0.44444 200397|0.5 200398|0.51389 200399|0.59722 200400|0.48611 200401|0.25 200402|0.77778 200403|0.43056 200404|0.44444 200405|0.5 200406|0.5 200407|0.40278 200408|0.5 200409|0.25 200410|0.26389 200411|0.45833 200412|0.48611 200413|0.29167 200414|0.45833 200415|0.51389 200416|0.52778 200417|0.55556 200418|0.5 200419|0.66667 200420|0.54167 200421|0.44444 200422|0.5 200423|0.54167 200424|0.5 200425|0.38889 200426|0.38889 200427|0.66667 200428|0.54167 200429|0.38889 200430|0.5 200431|0.33333 200432|0.47222 200433|0.15278 200434|0.33333 200435|0.15278 200436|0.125 200437|0.30556 200438|0.15278 200439|0.75 200440|0.19444 200441|0.47222 200442|0.25 200443|0.29167 200444|0.13889 200445|0.5 200446|0.43056 200447|0.59722 200448|0.45833 200449|0.5 200450|0.54167 200451|0.20833 200452|0.5 200453|0.375 200454|0.44444 200455|0.51389 200456|0.38889 200457|0.30556 200458|0.30556 200459|0.72222 200460|0.79167 200461|0.76389 200462|0.55556 200463|0.54167 200464|0.22222 200465|0.31944 200466|0.27778 200467|0.48611 200468|0.75 200469|0.80556 200470|0.30556 200471|0.5 200472|0.34722 200473|0.375 200474|0.26389 200475|0.63889 200476|0.80556 200477|0.73611 200478|0.61111 200479|0.43056 200480|0.56944 200481|0.55556 200482|0.61111 200483|0.625 200484|0.55556 200485|0.41667 200486|0.625 200487|0.30556 200488|0.34722 200489|0.44444 200490|0.36111 200491|0.77778 200492|0.27778 200493|0.16667 200494|0.79167 200495|0.65278 200496|0.72222 200497|0.23611 200498|0.23611 200499|0.31944 200500|0.18056 200501|0.40278 200502|0.5 200503|0.5 200504|0.77778 200505|0.20833 200506|0.22222 200507|0.40278 200508|0.27778 200509|0.18056 200510|0.29167 200511|0.25 200512|0.22222 200513|0.33333 200514|0.30556 200515|0.68056 200516|0.27778 200517|0.16667 200518|0.33333 200519|0.5 200520|0.5 200521|0.51389 200522|0.375 200523|0.44444 200524|0.44444 200525|0.40278 200526|0.375 200527|0.5 200528|0.25 200529|0.56944 200530|0.30556 200531|0.36111 200532|0.5 200533|0.5 200534|0.44444 200535|0.15278 200536|0.20833 200537|0.097222 200538|0.45833 200539|0.5 200540|0.5 200541|0.38889 200542|0.45833 200543|0.63889 200544|0.375 200545|0.45833 200546|0.44444 200547|0.52778 200548|0.65278 200549|0.43056 200550|0.44444 200551|0.48611 200552|0.51389 200553|0.68056 200554|0.625 200555|0.94444 200556|0.5 200557|0.5 200558|0.58333 200559|0.38889 200560|0.52778 200561|0.59722 200562|0.48611 200563|0.375 200564|0.70833 200565|0.66667 200566|0.65278 200567|0.72222 200568|0.5 200569|0.80556 200570|0.66667 200571|0.54167 200572|0.38889 200573|0.33333 200574|0.36111 200575|0.22222 200576|0.31944 200577|0.48611 200578|0.5 200579|0.30556 200580|0.61111 200581|0.5 200582|0.63889 200583|0.63889 200584|0.66667 200585|0.59722 200586|0.29167 200587|0.18056 200588|0.34722 200589|0.45833 200590|0.61111 200591|0.58333 200592|0.47222 200593|0.16667 200594|0.375 200595|0.44444 200596|0.44444 200597|0.23611 200598|0.25 200599|0.26389 200600|0.25 200601|0.33333 200602|0.56944 200603|0.29167 200604|0.25 200605|0.40278 200606|0.41667 200607|0.5 200608|0.41667 200609|0.19444 200610|0.16667 200611|0.61111 200612|0.41667 200613|0.38889 200614|0.44444 200615|0.41667 200616|0.26389 200617|0.16667 200618|0.19444 200619|0.13889 200620|0.19444 200621|0.20833 200622|0.18056 200623|0.68056 200624|0.27778 200625|0.5 200626|0.44444 200627|0.5 200628|0.36111 200629|0.38889 200630|0.15278 200631|0.26389 200632|0.43056 200633|0.55556 200634|0.66667 200635|0.47222 200636|0.22222 200637|0.73611 200638|0.625 200639|0.66667 200640|0.33333 200641|0.30556 200642|0.33333 200643|0.40278 200644|0.58333 200645|0.54167 200646|0.625 200647|0.59722 200648|0.31944 200649|0.36111 200650|0.47222 200651|0.31944 200652|0.38889 200653|0.30556 200654|0.16667 200655|0.27778 200656|0.47222 200657|0.47222 200658|0.26389 200659|0.22222 200660|0.097222 200661|0.22222 200662|0.43056 200663|0.43056 200664|0.54167 200665|0.34722 200666|0.40278 200667|0.31944 200668|0.38889 200669|0.26389 200670|0.33333 200671|0.75 200672|0.19444 200673|0.375 200674|0.70833 200675|0.66667 200676|0.27778 200677|0.20833 200678|0.29167 200679|0.55556 200680|0.18056 200681|0.19444 200682|0.11111 200683|0.15278 200684|0.48611 200685|0.29167 200686|0.27778 200687|0.38889 200688|0.66667 200689|0.625 200690|0.31944 200691|0.625 200692|0.45833 200693|0.36111 200694|0.30556 200695|0.31944 200696|0.33333 200697|0.44444 200698|0.5 200699|0.23611 200700|0.43056 200701|0.27778 200702|0.20833 200703|0.38889 200704|0.29167 200705|0.15278 200706|0.43056 200707|0.33333 200708|0.48611 200709|0.20833 200710|0.52778 200711|0.55556 200712|0.51389 200713|0.38889 200714|0.625 200715|0.54167 200716|0.36111 200717|0.5 200718|0.33333 200719|0.15278 200720|0.63889 200721|0.56944 200722|0.38889 200723|0.29167 200724|0.13889 200725|0.48611 200726|0.22222 200727|0.51389 200728|0.5 200729|0.73611 200730|0.73611 200731|0.66667 200732|0.33333 200733|0.22222 200734|0.5 200735|0.5 200736|0.27778 200737|0.29167 200738|0.33333 200739|0.33333 200740|0.44444 200741|0.58333 200742|0.69444 200743|0.41667 200744|0.625 200745|0.26389 200746|0.51389 200747|0.66667 200748|0.68056 200749|0.41667 200750|0.56944 200751|0.5 200752|0.055556 200753|0.45833 200754|0.61111 200755|0.51389 200756|0.63889 200757|0.38889 200758|0.055556 200759|0.52778 200760|0.27778 200761|0.44444 200762|0.55556 200763|0.27778 200764|0.45833 200765|0.56944 200766|0.5 200767|0.15278 200768|0.27778 200769|0.61111 200770|0.47222 200771|0.30556 200772|0.625 200773|0.41667 200774|0.34722 200775|0.36111 200776|0.36111 200777|0.40278 200778|0.27778 200779|0.30556 200780|0.41667 200781|0.5 200782|0.45833 200783|0.77778 200784|0.45833 200785|0.25 200786|0.33333 200787|0.26389 200788|0.625 200789|0.66667 200790|0.31944 200791|0.41667 200792|0.55556 200793|0.33333 200794|0.48611 200795|0.44444 200796|0.18056 200797|0.5 200798|0.81944 200799|0.41667 200800|0.41667 200801|0.51389 200802|0.33333 200803|0.45833 200804|0.44444 200805|0.76389 200806|0.5 200807|0.52778 200808|0.51389 200809|0.5 200810|0.5 200811|0.29167 200812|0.41667 200813|0.22222 200814|0.54167 200815|0.44444 200816|0.69444 200817|0.13889 200818|0.26389 200819|0.44444 200820|0.41667 200821|0.51389 200822|0.47222 200823|0.58333 200824|0.56944 200825|0.41667 200826|0.55556 200827|0.40278 200828|0.5 200829|0.5 200830|0.51389 200831|0.5 200832|0.58333 200833|0.51389 200834|0.43056 200835|0.52778 200836|0.27778 200837|0.56944 200838|0.33333 200839|0.68056 200840|0.27778 200841|0.63889 200842|0.41667 200843|0.55556 200844|0.44444 200845|0.44444 200846|0.30556 200847|0.15278 200848|0.5 200849|0.22222 200850|0.20833 200851|0.18056 200852|0.34722 200853|0.51389 200854|0.26389 200855|0.69444 200856|0.51389 200857|0.5 200858|0.51389 200859|0.31944 200860|0.38889 200861|0.73611 200862|0.72222 200863|0.61111 200864|0.58333 200865|0.16667 200866|0.33333 200867|0.54167 200868|0.20833 200869|0.30556 200870|0.48611 200871|0.22222 200872|0.5 200873|0.72222 200874|0.75 200875|0.68056 200876|0.66667 200877|0.63889 200878|0.5 200879|0.51389 200880|0.26389 200881|0.55556 200882|0.47222 200883|0.56944 200884|0.44444 200885|0.33333 200886|0.097222 200887|0.43056 200888|0.55556 200889|0.47222 200890|0.29167 200891|0.5 200892|0.48611 200893|0.25 200894|0.30556 200895|0.5 200896|0.48611 200897|0.43056 200898|0.30556 200899|0.44444 200900|0.5 200901|0.055556 200902|0.26389 200903|0.11111 200904|0.15278 200905|0.18056 200906|0.36111 200907|0.40278 200908|0.38889 200909|0.5 200910|0.5 200911|0.44444 200912|0.44444 200913|0.20833 200914|0.43056 200915|0.26389 200916|0.27778 200917|0.65278 200918|0.15278 200919|0.5 200920|0.33333 200921|0.5 200922|0.5 200923|0.26389 200924|0.44444 200925|0.52778 200926|0.43056 200927|0.54167 200928|0.51389 200929|0.55556 200930|0.5 200931|0.13889 200932|0.16667 200933|0.72222 200934|0.5 200935|0.5 200936|0.22222 200937|0.30556 200938|0.29167 200939|0.19444 200940|0.18056 200941|0.58333 200942|0.5 200943|0.5 200944|0.5 200945|0.38889 200946|0.5 200947|0.33333 200948|0.375 200949|0.16667 200950|0.61111 200951|0.38889 200952|0.40278 200953|0.52778 200954|0.56944 200955|0.5 200956|0.5 200957|0.5 200958|0.66667 200959|0.56944 200960|0.5 200961|0.51389 200962|0.27778 200963|0.52778 200964|0.44444 200965|0.48611 200966|0.40278 200967|0.58333 200968|0.5 200969|0.51389 200970|0.77778 200971|0.26389 200972|0.11111 200973|0.097222 200974|0.5 200975|0.47222 200976|0.45833 200977|0.68056 200978|0.33333 200979|0.41667 200980|0.5 200981|0.52778 200982|0.5 200983|0.54167 200984|0.5 200985|0.52778 200986|0.70833 200987|0.77778 200988|0.84722 200989|0.59722 200990|0.5 200991|0.44444 200992|0.54167 200993|0.52778 200994|0.40278 200995|0.27778 200996|0.5 200997|0.47222 200998|0.5 200999|0.22222 201000|0.40278 201001|0.18056 201002|0.40278 201003|0.44444 201004|0.40278 201005|0.44444 201006|0.56944 201007|0.63889 201008|0.61111 201009|0.59722 201010|0.5 201011|0.52778 201012|0.61111 201013|0.36111 201014|0.5 201015|0.48611 201016|0.44444 201017|0.5 201018|0.43056 201019|0.5 201020|0.5 201021|0.5 201022|0.61111 201023|0.56944 201024|0.5 201025|0.68056 201026|0.5 201027|0.5 201028|0.15278 201029|0.5 201030|0.5 201031|0.48611 201032|0.20833 201033|0.44444 201034|0.5 201035|0.55556 201036|0.59722 201037|0.52778 201038|0.63889 201039|0.59722 201040|0.58333 201041|0.52778 201042|0.59722 201043|0.51389 201044|0.47222 201045|0.38889 201046|0.51389 201047|0.54167 201048|0.22222 201049|0.25 201050|0.375 201051|0.23611 201052|0.54167 201053|0.30556 201054|0.16667 201055|0.38889 201056|0.27778 201057|0.30556 201058|0.56944 201059|0.5 201060|0.55556 201061|0.58333 201062|0.29167 201063|0.33333 201064|0.45833 201065|0.5 201066|0.5 201067|0.5 201068|0.47222 201069|0.5 201070|0.43056 201071|0.44444 201072|0.22222 201073|0.43056 201074|0.375 201075|0.40278 201076|0.55556 201077|0.81944 201078|0.38889 201079|0.51389 201080|0.66667 201081|0.55556 201082|0.43056 201083|0.5 201084|0.5 201085|0.5 201086|0.625 201087|0.68056 201088|0.38889 201089|0.41667 201090|0.40278 201091|0.33333 201092|0.47222 201093|0.61111 201094|0.33333 201095|0.48611 201096|0.40278 201097|0.5 201098|0.30556 201099|0.33333 201100|0.77778 201101|0.38889 201102|0.58333 201103|0.47222 201104|0.41667 201105|0.33333 201106|0.5 201107|0.27778 201108|0.45833 201109|0.875 201110|0.68056 201111|0.5 201112|0.44444 201113|0.5 201114|0.31944 201115|0.69444 201116|0.5 201117|0.70833 201118|0.63889 201119|0.61111 201120|0.5 201121|0.5 201122|0.68056 201123|0.59722 201124|0.56944 201125|0.5 201126|0.5 201127|0.61111 201128|0.16667 201129|0.30556 201130|0.51389 201131|0.43056 201132|0.52778 201133|0.5 201134|0.5 201135|0.625 201136|0.51389 201137|0.55556 201138|0.55556 201139|0.66667 201140|0.55556 201141|0.5 201142|0.77778 201143|0.44444 201144|0.5 201145|0.55556 201146|0.5 201147|0.33333 201148|0.33333 201149|0.51389 201150|0.66667 201151|0.48611 201152|0.5 201153|0.5 201154|0.5 201155|0.51389 201156|0.44444 201157|0.52778 201158|0.30556 201159|0.29167 201160|0.58333 201161|0.5 201162|0.30556 201163|0.47222 201164|0.44444 201165|0.5 201166|0.375 201167|0.5 201168|0.5 201169|0.375 201170|0.5 201171|0.5 201172|0.5 201173|0.48611 201174|0.5 201175|0.5 201176|0.88889 201177|0.58333 201178|0.47222 201179|0.5 201180|0.65278 201181|0.5 201182|0.5 201183|0.5 201184|0.51389 201185|0.44444 201186|0.26389 201187|0.5 201188|0.22222 201189|0.59722 201190|0.43056 201191|0.5 201192|0.61111 201193|0.41667 201194|0.59722 201195|0.47222 201196|0.5 201197|0.5 201198|0.5 201199|0.58333 201200|0.43056 201201|0.55556 201202|0.27778 201203|0.34722 201204|0.58333 201205|0.5 201206|0.66667 201207|0.125 201208|0.5 201209|0.44444 201210|0.5 201211|0.45833 201212|0.55556 201213|0.44444 201214|0.5 201215|0.55556 201216|0.5 201217|0.5 201218|0.5 201219|0.43056 201220|0.5 201221|0.5 201222|0.55556 201223|0.63889 201224|0.40278 201225|0.40278 201226|0.5 201227|0.47222 201228|0.5 201229|0.40278 201230|0.5 201231|0.5 201232|0.55556 201233|0.5 201234|0.5 201235|0.5 201236|0.29167 201237|0.5 201238|0.40278 201239|0.27778 201240|0.52778 201241|0.43056 201242|0.33333 201243|0.33333 201244|0.5 201245|0.5 201246|0.58333 201247|0.18056 201248|0.5 201249|0.61111 201250|0.48611 201251|0.19444 201252|0.30556 201253|0.5 201254|0.27778 201255|0.5 201256|0.5 201257|0.5 201258|0.5 201259|0.56944 201260|0.44444 201261|0.44444 201262|0.25 201263|0.41667 201264|0.66667 201265|0.72222 201266|0.61111 201267|0.48611 201268|0.5 201269|0.58333 201270|0.375 201271|0.5 201272|0.44444 201273|0.38889 201274|0.41667 201275|0.5 201276|0.59722 201277|0.33333 201278|0.40278 201279|0.59722 201280|0.61111 201281|0.625 201282|0.27778 201283|0.56944 201284|0.34722 201285|0.70833 201286|0.54167 201287|0.34722 201288|0.51389 201289|0.31944 201290|0.61111 201291|0.68056 201292|0.61111 201293|0.41667 201294|0.22222 201295|0.25 201296|0.26389 201297|0.59722 201298|0.58333 201299|0.16667 201300|0.5 201301|0.48611 201302|0.5 201303|0.44444 201304|0.33333 201305|0.375 201306|0.20833 201307|0.41667 201308|0.44444 201309|0.5 201310|0.44444 201311|0.5 201312|0.5 201313|0.34722 201314|0.63889 201315|0.81944 201316|0.69444 201317|0.63889 201318|0.61111 201319|0.55556 201320|0.36111 201321|0.25 201322|0.73611 201323|0.51389 201324|0.54167 201325|0.52778 201326|0.55556 201327|0.55556 201328|0.48611 201329|0.59722 201330|0.51389 201331|0.5 201332|0.51389 201333|0.41667 201334|0.63889 201335|0.52778 201336|0.61111 201337|0.097222 201338|0.26389 201339|0.22222 201340|0.33333 201341|0.23611 201342|0.63889 201343|0.5 201344|0.26389 201345|0.5 201346|0.11111 201347|0.013889 201348|0.125 201349|0.083333 201350|0.055556 201351|0.18056 201352|0.30556 201353|0.13889 201354|0.055556 201355|0.30556 201356|0.41667 201357|0.55556 201358|0.5 201359|0.5 201360|0.5 201361|0.41667 201362|0.48611 201363|0.38889 201364|0.44444 201365|0.40278 201366|0.5 201367|0.41667 201368|0.72222 201369|0.5 201370|0.43056 201371|0.5 201372|0.44444 201373|0.44444 201374|0.36111 201375|0.5 201376|0.44444 201377|0.41667 201378|0.5 201379|0.31944 201380|0.5 201381|0.52778 201382|0.5 201383|0.55556 201384|0.5 201385|0.48611 201386|0.33333 201387|0.5 201388|0.44444 201389|0.44444 201390|0.15278 201391|0.83333 201392|0.5 201393|0.33333 201394|0.22222 201395|0.61111 201396|0.18056 201397|0.27778 201398|0.76389 201399|0.56944 201400|0.5 201401|0.36111 201402|0.44444 201403|0.31944 201404|0.52778 201405|0.13889 201406|0.38889 201407|0.11111 201408|0.125 201409|0.5 201410|0.5 201411|0.5 201412|0.56944 201413|0.5 201414|0.5 201415|0.45833 201416|0.51389 201417|0.5 201418|0.5 201419|0.11111 201420|0.68056 201421|0.59722 201422|0.63889 201423|0.63889 201424|0.52778 201425|0.33333 201426|0.41667 201427|0.13889 201428|0.11111 201429|0.56944 201430|0.18056 201431|0.5 201432|0.5 201433|0.58333 201434|0.66667 201435|0.44444 201436|0.68056 201437|0.61111 201438|0.41667 201439|0.43056 201440|0.29167 201441|0.48611 201442|0.55556 201443|0.79167 201444|0.65278 201445|0.84722 201446|0.72222 201447|0.70833 201448|0.72222 201449|0.76389 201450|0.44444 201451|0.5 201452|0.54167 201453|0.51389 201454|0.23611 201455|0.43056 201456|0.15278 201457|0.86111 201458|0.69444 201459|0.5 201460|0.52778 201461|0.30556 201462|0.40278 201463|0.20833 201464|0.38889 201465|0.31944 201466|0.36111 201467|0.41667 201468|0.5 201469|0.48611 201470|0.48611 201471|0.58333 201472|0.54167 201473|0.56944 201474|0.45833 201475|0.5 201476|0.5 201477|0.36111 201478|0.43056 201479|0.58333 201480|0.375 201481|0.25 201482|0.5 201483|0.20833 201484|0.5 201485|0.58333 201486|0.5 201487|0.70833 201488|0.5 201489|0.5 201490|0.52778 201491|0.5 201492|0.27778 201493|0.27778 201494|0.27778 201495|0.31944 201496|0.5 201497|0.5 201498|0.5 201499|0.5 201500|0.48611 201501|0.44444 201502|0.31944 201503|0.5 201504|0.5 201505|0.48611 201506|0.30556 201507|0.33333 201508|0.25 201509|0.097222 201510|0.40278 201511|0.29167 201512|0.61111 201513|0.61111 201514|0.58333 201515|0.51389 201516|0.375 201517|0.375 201518|0.48611 201519|0.625 201520|0.20833 201521|0.44444 201522|0.27778 201523|0.23611 201524|0.36111 201525|0.51389 201526|0.33333 201527|0.25 201528|0.26389 201529|0.33333 201530|0.69444 201531|0.70833 201532|0.40278 201533|0.5 201534|0.33333 201535|0.41667 201536|0.47222 201537|0.48611 201538|0.43056 201539|0.31944 201540|0.29167 201541|0.61111 201542|0.63889 201543|0.5 201544|0.47222 201545|0.41667 201546|0.31944 201547|0.19444 201548|0.47222 201549|0.36111 201550|0.40278 201551|0.40278 201552|0.5 201553|0.15278 201554|0.44444 201555|0.375 201556|0.44444 201557|0.48611 201558|0.41667 201559|0.48611 201560|0.33333 201561|0.40278 201562|0.41667 201563|0.48611 201564|0.33333 201565|0.44444 201566|0.52778 201567|0.18056 201568|0.41667 201569|0.27778 201570|0.48611 201571|0.5 201572|0.63889 201573|0.58333 201574|0.26389 201575|0.33333 201576|0.44444 201577|0.27778 201578|0.44444 201579|0.36111 201580|0.25 201581|0.34722 201582|0.38889 201583|0.55556 201584|0.44444 201585|0.33333 201586|0.38889 201587|0.55556 201588|0.27778 201589|0.45833 201590|0.11111 201591|0.13889 201592|0.72222 201593|0.33333 201594|0.45833 201595|0.40278 201596|0.58333 201597|0.5 201598|0.45833 201599|0.375 201600|0.52778 201601|0.54167 201602|0.5 201603|0.26389 201604|0.34722 201605|0.41667 201606|0.34722 201607|0.43056 201608|0.20833 201609|0.38889 201610|0.66667 201611|0.40278 201612|0.54167 201613|0.61111 201614|0.5 201615|0.38889 201616|0.19444 201617|0.29167 201618|0.56944 201619|0.31944 201620|0.27778 201621|0.33333 201622|0.27778 201623|0.38889 201624|0.31944 201625|0.11111 201626|0.13889 201627|0.36111 201628|0.26389 201629|0.43056 201630|0.33333 201631|0.40278 201632|0.55556 201633|0.44444 201634|0.48611 201635|0.27778 201636|0.5 201637|0.44444 201638|0.52778 201639|0.5 201640|0.40278 201641|0.66667 201642|0.55556 201643|0.73611 201644|0.58333 201645|0.65278 201646|0.69444 201647|0.77778 201648|0.72222 201649|0.16667 201650|0.20833 201651|0.34722 201652|0.51389 201653|0.5 201654|0.5 201655|0.41667 201656|0.48611 201657|0.5 201658|0.30556 201659|0.375 201660|0.25 201661|0.40278 201662|0.63889 201663|0.55556 201664|0.23611 201665|0.5 201666|0.61111 201667|0.41667 201668|0.375 201669|0.52778 201670|0.34722 201671|0.40278 201672|0.19444 201673|0.44444 201674|0.26389 201675|0.33333 201676|0.30556 201677|0.5 201678|0.43056 201679|0.47222 201680|0.375 201681|0.34722 201682|0.26389 201683|0.38889 201684|0.30556 201685|0.45833 201686|0.26389 201687|0.56944 201688|0.66667 201689|0.61111 201690|0.33333 201691|0.80556 201692|0.88889 201693|0.58333 201694|0.43056 201695|0.27778 201696|0.51389 201697|0.44444 201698|0.55556 201699|0.43056 201700|0.40278 201701|0.5 201702|0.70833 201703|0.375 201704|0.18056 201705|0.5 201706|0.5 201707|0.36111 201708|0.5 201709|0.5 201710|0.61111 201711|0.5 201712|0.5 201713|0.48611 201714|0.48611 201715|0.5 201716|0.54167 201717|0.125 201718|0.5 201719|0.55556 201720|0.5 201721|0.58333 201722|0.19444 201723|0.5 201724|0.22222 201725|0.55556 201726|0.5 201727|0.61111 201728|0.44444 201729|0.44444 201730|0.44444 201731|0.55556 201732|0.52778 201733|0.41667 201734|0.51389 201735|0.5 201736|0.51389 201737|0.5 201738|0.5 201739|0.45833 201740|0.5 201741|0.5 201742|0.59722 201743|0.47222 201744|0.625 201745|0.5 201746|0.5 201747|0.5 201748|0.47222 201749|0.5 201750|0.52778 201751|0.5 201752|0.5 201753|0.61111 201754|0.5 201755|0.5 201756|0.52778 201757|0.52778 201758|0.58333 201759|0.38889 201760|0.52778 201761|0.5 201762|0.5 201763|0.5 201764|0.5 201765|0.51389 201766|0.5 201767|0.625 201768|0.45833 201769|0.5 201770|0.47222 201771|0.30556 201772|0.52778 201773|0.54167 201774|0.36111 201775|0.34722 201776|0.5 201777|0.5 201778|0.5 201779|0.5 201780|0.26389 201781|0.34722 201782|0.41667 201783|0.44444 201784|0.25 201785|0.27778 201786|0.61111 201787|0.48611 201788|0.5 201789|0.5 201790|0.25 201791|0.43056 201792|0.125 201793|0.18056 201794|0.47222 201795|0.375 201796|0.30556 201797|0.34722 201798|0.48611 201799|0.25 201800|0.5 201801|0.23611 201802|0.25 201803|0.22222 201804|0.5 201805|0.52778 201806|0.375 201807|0.5 201808|0.22222 201809|0.48611 201810|0.25 201811|0.55556 201812|0.43056 201813|0.52778 201814|0.30556 201815|0.5 201816|0.25 201817|0.5 201818|0.29167 201819|0.61111 201820|0.625 201821|0.5 201822|0.38889 201823|0.20833 201824|0.65278 201825|0.48611 201826|0.44444 201827|0.5 201828|0.38889 201829|0.38889 201830|0.54167 201831|0.5 201832|0.43056 201833|0.51389 201834|0.5 201835|0.51389 201836|0.61111 201837|0.5 201838|0.5 201839|0.5 201840|0.54167 201841|0.51389 201842|0.5 201843|0.5 201844|0.5 201845|0.5 201846|0.72222 201847|0.59722 201848|0.66667 201849|0.52778 201850|0.5 201851|0.5 201852|0.375 201853|0.38889 201854|0.5 201855|0.5 201856|0.26389 201857|0.52778 201858|0.61111 201859|0.16667 201860|0.38889 201861|0.59722 201862|0.52778 201863|0.5 201864|0.52778 201865|0.55556 201866|0.44444 201867|0.38889 201868|0.5 201869|0.5 201870|0.5 201871|0.5 201872|0.625 201873|0.44444 201874|0.5 201875|0.38889 201876|0.375 201877|0.43056 201878|0.5 201879|0.5 201880|0.44444 201881|0.65278 201882|0.5 201883|0.51389 201884|0.5 201885|0.63889 201886|0.5 201887|0.5 201888|0.51389 201889|0.48611 201890|0.5 201891|0.5 201892|0.47222 201893|0.5 201894|0.5 201895|0.63889 201896|0.43056 201897|0.54167 201898|0.48611 201899|0.58333 201900|0.66667 201901|0.5 201902|0.34722 201903|0.5 201904|0.375 201905|0.68056 201906|0.26389 201907|0.15278 201908|0.36111 201909|0.58333 201910|0.51389 201911|0.36111 201912|0.5 201913|0.45833 201914|0.51389 201915|0.45833 201916|0.5 201917|0.5 201918|0.375 201919|0.375 201920|0.5 201921|0.59722 201922|0.55556 201923|0.34722 201924|0.43056 201925|0.47222 201926|0.43056 201927|0.29167 201928|0.33333 201929|0.125 201930|0.27778 201931|0.5 201932|0.51389 201933|0.5 201934|0.5 201935|0.33333 201936|0.38889 201937|0.41667 201938|0.625 201939|0.66667 201940|0.5 201941|0.5 201942|0.47222 201943|0.48611 201944|0.43056 201945|0.52778 201946|0.5 201947|0.52778 201948|0.52778 201949|0.48611 201950|0.20833 201951|0.43056 201952|0.5 201953|0.68056 201954|0.27778 201955|0.625 201956|0.5 201957|0.26389 201958|0.51389 201959|0.5 201960|0.44444 201961|0.27778 201962|0.27778 201963|0.5 201964|0.38889 201965|0.5 201966|0.5 201967|0.48611 201968|0.52778 201969|0.44444 201970|0.5 201971|0.58333 201972|0.45833 201973|0.5 201974|0.47222 201975|0.61111 201976|0.5 201977|0.5 201978|0.5 201979|0.18056 201980|0.58333 201981|0.5 201982|0.5 201983|0.68056 201984|0.5 201985|0.23611 201986|0.56944 201987|0.51389 201988|0.5 201989|0.5 201990|0.5 201991|0.63889 201992|0.52778 201993|0.5 201994|0.58333 201995|0.5 201996|0.5 201997|0.56944 201998|0.65278 201999|0.5 202000|0.375 202001|0.5 202002|0.33333 202003|0.38889 202004|0.69444 202005|0.5 202006|0.5 202007|0.51389 202008|0.5 202009|0.70833 202010|0.54167 202011|0.5 202012|0.52778 202013|0.45833 202014|0.5 202015|0.65278 202016|0.54167 202017|0.5 202018|0.29167 202019|0.61111 202020|0.5 202021|0.54167 202022|0.31944 202023|0.5 202024|0.38889 202025|0.41667 202026|0.27778 202027|0.5 202028|0.44444 202029|0.44444 202030|0.51389 202031|0.5 202032|0.45833 202033|0.48611 202034|0.27778 202035|0.041667 202036|0.43056 202037|0.5 202038|0.5 202039|0.44444 202040|0.55556 202041|0.52778 202042|0.43056 202043|0.38889 202044|0.52778 202045|0.40278 202046|0.41667 202047|0.5 202048|0.5 202049|0.30556 202050|0.40278 202051|0.375 202052|0.5 202053|0.5 202054|0.5 202055|0.63889 202056|0.5 202057|0.5 202058|0.40278 202059|0.47222 202060|0.23611 202061|0.30556 202062|0.5 202063|0.65278 202064|0.5 202065|0.47222 202066|0.26389 202067|0.29167 202068|0.5 202069|0.43056 202070|0.43056 202071|0.5 202072|0.5 202073|0.47222 202074|0.54167 202075|0.76389 202076|0.5 202077|0.48611 202078|0.13889 202079|0.16667 202080|0.5 202081|0.25 202082|0.13889 202083|0.23611 202084|0.125 202085|0.65278 202086|0.58333 202087|0.5 202088|0.36111 202089|0.11111 202090|0.41667 202091|0.52778 202092|0.5 202093|0.013889 202094|0.38889 202095|0.25 202096|0.51389 202097|0.59722 202098|0.41667 202099|0.54167 202100|0.47222 202101|0.48611 202102|0.5 202103|0.61111 202104|0.40278 202105|0.47222 202106|0.5 202107|0.13889 202108|0.29167 202109|0.5 202110|0.48611 202111|0.22222 202112|0.625 202113|0.38889 202114|0.34722 202115|0.47222 202116|0.5 202117|0.52778 202118|0.36111 202119|0.51389 202120|0.44444 202121|0.5 202122|0.36111 202123|0.36111 202124|0.33333 202125|0.38889 202126|0.15278 202127|0.23611 202128|0.40278 202129|0.23611 202130|0.22222 202131|0.40278 202132|0.61111 202133|0.33333 202134|0.52778 202135|0.19444 202136|0.36111 202137|0.22222 202138|0.66667 202139|0.48611 202140|0.36111 202141|0.70833 202142|0.61111 202143|0.58333 202144|0.45833 202145|0.56944 202146|0.5 202147|0.51389 202148|0.68056 202149|0.73611 202150|0.5 202151|0.5 202152|0.5 202153|0.5 202154|0.5 202155|0.54167 202156|0.58333 202157|0.44444 202158|0.16667 202159|0.125 202160|0.54167 202161|0.375 202162|0.36111 202163|0.27778 202164|0.36111 202165|0.25 202166|0.083333 202167|0.36111 202168|0.18056 202169|0.19444 202170|0.5 202171|0.5 202172|0.36111 202173|0.26389 202174|0.58333 202175|0.069444 202176|0.16667 202177|0.31944 202178|0.19444 202179|0.20833 202180|0.5 202181|0.5 202182|0.41667 202183|0.083333 202184|0.5 202185|0.41667 202186|0.59722 202187|0.5 202188|0.47222 202189|0.23611 202190|0.5 202191|0.38889 202192|0.45833 202193|0.45833 202194|0.5 202195|0.54167 202196|0.44444 202197|0.58333 202198|0.52778 202199|0.055556 202200|0.18056 202201|0.5 202202|0.26389 202203|0.23611 202204|0.47222 202205|0.041667 202206|0.25 202207|0.33333 202208|0.34722 202209|0.52778 202210|0.40278 202211|0.58333 202212|0.52778 202213|0.16667 202214|0.11111 202215|0.45833 202216|0.31944 202217|0.54167 202218|0.43056 202219|0.43056 202220|0.55556 202221|0.375 202222|0.23611 202223|0.20833 202224|0.083333 202225|0.20833 202226|0.5 202227|0.55556 202228|0.76389 202229|0.5 202230|0.23611 202231|0.48611 202232|0.5 202233|0.375 202234|0.33333 202235|0.38889 202236|0.43056 202237|0.5 202238|0.40278 202239|0.5 202240|0.13889 202241|0.25 202242|0.58333 202243|0.097222 202244|0.5 202245|0.36111 202246|0.41667 202247|0.38889 202248|0.43056 202249|0.5 202250|0.44444 202251|0.625 202252|0.54167 202253|0.84722 202254|0.5 202255|0.61111 202256|0.63889 202257|0.5 202258|0.20833 202259|0.40278 202260|0.33333 202261|0.5 202262|0.5 202263|0.61111 202264|0.5 202265|0.27778 202266|0.5 202267|0.76389 202268|0.29167 202269|0.31944 202270|0.58333 202271|0.61111 202272|0.27778 202273|0.5 202274|0.73611 202275|0.625 202276|0.68056 202277|0.58333 202278|0.83333 202279|0.56944 202280|0.73611 202281|0.5 202282|0.5 202283|0.5 202284|0.26389 202285|0.45833 202286|0.34722 202287|0.23611 202288|0.43056 202289|0.34722 202290|0.38889 202291|0.5 202292|0.48611 202293|0.34722 202294|0.44444 202295|0.19444 202296|0.25 202297|0.11111 202298|0.20833 202299|0.22222 202300|0.33333 202301|0.22222 202302|0.44444 202303|0.083333 202304|0.30556 202305|0.33333 202306|0.59722 202307|0.54167 202308|0.29167 202309|0.48611 202310|0.43056 202311|0.61111 202312|0.5 202313|0.73611 202314|0.5 202315|0.55556 202316|0.54167 202317|0.5 202318|0.375 202319|0.41667 202320|0.47222 202321|0.5 202322|0.33333 202323|0.5 202324|0.38889 202325|0.40278 202326|0.5 202327|0.41667 202328|0.5 202329|0.5 202330|0.63889 202331|0.41667 202332|0.5 202333|0.59722 202334|0.51389 202335|0.81944 202336|0.52778 202337|0.625 202338|0.48611 202339|0.75 202340|0.68056 202341|0.83333 202342|0.70833 202343|0.72222 202344|0.72222 202345|0.77778 202346|0.55556 202347|0.66667 202348|0.65278 202349|0.72222 202350|0.16667 202351|0.75 202352|0.5 202353|0.52778 202354|0.5 202355|0.36111 202356|0.5 202357|0.5 202358|0.16667 202359|0.47222 202360|0.72222 202361|0.65278 202362|0.45833 202363|0.5 202364|0.5 202365|0.5 202366|0.33333 202367|0.55556 202368|0.54167 202369|0.5 202370|0.26389 202371|0.83333 202372|0.55556 202373|0.81944 202374|0.5 202375|0.31944 202376|0.34722 202377|0.38889 202378|0.5 202379|0.47222 202380|0.51389 202381|0.23611 202382|0.33333 202383|0.18056 202384|0.43056 202385|0.16667 202386|0.34722 202387|0.36111 202388|0.25 202389|0.5 202390|0.30556 202391|0.54167 202392|0.5 202393|0.54167 202394|0.41667 202395|0.23611 202396|0.5 202397|0.5 202398|0.44444 202399|0.11111 202400|0.5 202401|0.38889 202402|0.30556 202403|0.055556 202404|0.36111 202405|0.5 202406|0.30556 202407|0.375 202408|0.38889 202409|0.33333 202410|0.36111 202411|0.61111 202412|0.44444 202413|0.61111 202414|0.54167 202415|0.65278 202416|0.5 202417|0.44444 202418|0.44444 202419|0.51389 202420|0.33333 202421|0.5 202422|0.5 202423|0.70833 202424|0.5 202425|0.41667 202426|0.34722 202427|0.34722 202428|0.625 202429|0.47222 202430|0.33333 202431|0.44444 202432|0.52778 202433|0.52778 202434|0.69444 202435|0.41667 202436|0.5 202437|0.43056 202438|0.5 202439|0.22222 202440|0.51389 202441|0.69444 202442|0.51389 202443|0.48611 202444|0.54167 202445|0.44444 202446|0.40278 202447|0.36111 202448|0.5 202449|0.47222 202450|0.45833 202451|0.70833 202452|0.70833 202453|0.5 202454|0.43056 202455|0.56944 202456|0.52778 202457|0.27778 202458|0.5 202459|0.65278 202460|0.625 202461|0.30556 202462|0.27778 202463|0.19444 202464|0.54167 202465|0.5 202466|0.70833 202467|0.5 202468|0.5 202469|0.13889 202470|0.5 202471|0.61111 202472|0.52778 202473|0.20833 202474|0.27778 202475|0.48611 202476|0.5 202477|0.33333 202478|0.40278 202479|0.38889 202480|0.27778 202481|0.66667 202482|0.61111 202483|0.23611 202484|0.16667 202485|0.34722 202486|0.31944 202487|0.38889 202488|0.27778 202489|0.77778 202490|0.80556 202491|0.79167 202492|0.20833 202493|0.16667 202494|0.22222 202495|0.25 202496|0.30556 202497|0.29167 202498|0.29167 202499|0.19444 202500|0.16667 202501|0.47222 202502|0.34722 202503|0.34722 202504|0.18056 202505|0.48611 202506|0.44444 202507|0.47222 202508|0.25 202509|0.40278 202510|0.27778 202511|0.23611 202512|0.5 202513|0.5 202514|0.38889 202515|0.40278 202516|0.26389 202517|0.16667 202518|0.33333 202519|0.375 202520|0.5 202521|0.54167 202522|0.055556 202523|0.16667 202524|0.11111 202525|0.61111 202526|0.5 202527|0.55556 202528|0.18056 202529|0.15278 202530|0.73611 202531|0.30556 202532|0.44444 202533|0.23611 202534|0.19444 202535|0.48611 202536|0.5 202537|0.55556 202538|0.5 202539|0.36111 202540|0.36111 202541|0.22222 202542|0.5 202543|0.45833 202544|0.625 202545|0.44444 202546|0.19444 202547|0.38889 202548|0.18056 202549|0.22222 202550|0.38889 202551|0.33333 202552|0.54167 202553|0.16667 202554|0.44444 202555|0.375 202556|0.36111 202557|0.27778 202558|0.27778 202559|0.48611 202560|0.25 202561|0.22222 202562|0.055556 202563|0.069444 202564|0.097222 202565|0.20833 202566|0.33333 202567|0.22222 202568|0.52778 202569|0.52778 202570|0.38889 202571|0.44444 202572|0.22222 202573|0.30556 202574|0.51389 202575|0.19444 202576|0.22222 202577|0.18056 202578|0.5 202579|0.72222 202580|0.48611 202581|0.36111 202582|0.33333 202583|0.94444 202584|0.80556 202585|0.76389 202586|0.51389 202587|0.34722 202588|0.29167 202589|0.31944 202590|0.43056 202591|0.34722 202592|0.34722 202593|0.36111 202594|0.18056 202595|0.29167 202596|0.38889 202597|0.55556 202598|0.66667 202599|0.45833 202600|0.38889 202601|0.22222 202602|0.5 202603|0.58333 202604|0.25 202605|0.51389 202606|0.25 202607|0.52778 202608|0.11111 202609|0.31944 202610|0.875 202611|0.44444 202612|0.31944 202613|0.083333 202614|0.27778 202615|0.16667 202616|0.125 202617|0.38889 202618|0.16667 202619|0.18056 202620|0.375 202621|0.5 202622|0.16667 202623|0.23611 202624|0.23611 202625|0.43056 202626|0.5 202627|0.73611 202628|0.23611 202629|0.41667 202630|0.36111 202631|0.38889 202632|0.52778 202633|0.19444 202634|0.23611 202635|0.30556 202636|0.27778 202637|0.27778 202638|0.5 202639|0.20833 202640|0.23611 202641|0.31944 202642|0.40278 202643|0.30556 202644|0.375 202645|0.16667 202646|0.30556 202647|0.34722 202648|0.23611 202649|0.34722 202650|0.27778 202651|0.22222 202652|0.36111 202653|0.36111 202654|0.59722 202655|0.22222 202656|0.27778 202657|0.66667 202658|0.83333 202659|0.66667 202660|0.20833 202661|0.30556 202662|0.27778 202663|0.40278 202664|0.52778 202665|0.16667 202666|0.19444 202667|0.125 202668|0.83333 202669|0.73611 202670|0.83333 202671|0.56944 202672|0.68056 202673|0.15278 202674|0.76389 202675|0.52778 202676|0.5 202677|0.40278 202678|0.45833 202679|0.38889 202680|0.5 202681|0.11111 202682|0.29167 202683|0.5 202684|0.26389 202685|0.20833 202686|0.055556 202687|0.19444 202688|0.83333 202689|0.47222 202690|0.40278 202691|0.30556 202692|0.22222 202693|0.56944 202694|0.40278 202695|0.43056 202696|0.31944 202697|0.41667 202698|0.375 202699|0.27778 202700|0.5 202701|0.38889 202702|0.48611 202703|0.5 202704|0.13889 202705|0.18056 202706|0.11111 202707|0.069444 202708|0.18056 202709|0.5 202710|0.41667 202711|0.43056 202712|0.25 202713|0.43056 202714|0.54167 202715|0.58333 202716|0.98611 202717|0.73611 202718|0.81944 202719|0.34722 202720|0.625 202721|0.26389 202722|0.26389 202723|0.083333 202724|0.31944 202725|0.13889 202726|0.66667 202727|0.27778 202728|0.375 202729|0.33333 202730|0.36111 202731|0.5 202732|0.54167 202733|0.65278 202734|0.20833 202735|0.58333 202736|0.29167 202737|0.069444 202738|0.65278 202739|0.375 202740|0.48611 202741|0.48611 202742|0.31944 202743|0.52778 202744|0.51389 202745|0.65278 202746|0.73611 202747|0.41667 202748|0.40278 202749|0.055556 202750|0.29167 202751|0.5 202752|0.15278 202753|0.52778 202754|0.5 202755|0.40278 202756|0.40278 202757|0.47222 202758|0.34722 202759|0.27778 202760|0.11111 202761|0.47222 202762|0.25 202763|0.43056 202764|0.40278 202765|0.16667 202766|0.27778 202767|0.5 202768|0.25 202769|0.34722 202770|0.72222 202771|0.77778 202772|0.84722 202773|0.73611 202774|0.11111 202775|0.083333 202776|0.13889 202777|0.45833 202778|0.45833 202779|0.41667 202780|0.125 202781|0.15278 202782|0.11111 202783|0.20833 202784|0.375 202785|0.38889 202786|0.625 202787|0.18056 202788|0.26389 202789|0.48611 202790|0.30556 202791|0.68056 202792|0.84722 202793|0.30556 202794|0.45833 202795|0.54167 202796|0.75 202797|0.70833 202798|0.55556 202799|0.65278 202800|0.27778 202801|0.5 202802|0.11111 202803|0.097222 202804|0.25 202805|0.23611 202806|0.36111 202807|0.70833 202808|0.18056 202809|0.25 202810|0.22222 202811|0.41667 202812|0.79167 202813|0.68056 202814|0.625 202815|0.47222 202816|0.055556 202817|0.61111 202818|0.18056 202819|0.5 202820|0.5 202821|0.36111 202822|0.66667 202823|0.63889 202824|0.36111 202825|0.54167 202826|0.33333 202827|0.625 202828|0.56944 202829|0.47222 202830|0.11111 202831|0.29167 202832|0.26389 202833|0.41667 202834|0.29167 202835|0.44444 202836|0.18056 202837|0.22222 202838|0.13889 202839|0.083333 202840|0.33333 202841|0.29167 202842|0.44444 202843|0.36111 202844|0.29167 202845|0.083333 202846|0.25 202847|0.48611 202848|0.23611 202849|0.38889 202850|0.23611 202851|0.15278 202852|0.29167 202853|0.5 202854|0.51389 202855|0.083333 202856|0.125 202857|0.68056 202858|0.20833 202859|0.36111 202860|0.20833 202861|0.30556 202862|0.27778 202863|0.29167 202864|0.34722 202865|0.19444 202866|0.18056 202867|0.38889 202868|0.47222 202869|0.097222 202870|0.27778 202871|0.125 202872|0.22222 202873|0.27778 202874|0.48611 202875|0.375 202876|0.61111 202877|0.66667 202878|0.40278 202879|0.30556 202880|0.43056 202881|0.33333 202882|0.63889 202883|0.18056 202884|0.34722 202885|0.41667 202886|0.36111 202887|0.31944 202888|0.45833 202889|0.66667 202890|0.44444 202891|0.41667 202892|0.27778 202893|0.38889 202894|0.52778 202895|0.40278 202896|0.26389 202897|0.25 202898|0.26389 202899|0 202900|0.027778 202901|0.63889 202902|0.069444 202903|0.30556 202904|0.75 202905|0.25 202906|0.25 202907|0.43056 202908|0.5 202909|0 202910|0.34722 202911|0.25 202912|0.30556 202913|0.13889 202914|0.38889 202915|0.47222 202916|0.5 202917|0.27778 202918|0.33333 202919|0.41667 202920|0.36111 202921|0.22222 202922|0.125 202923|0.15278 202924|0.73611 202925|0.70833 202926|0.70833 202927|0.65278 202928|0.36111 202929|0.27778 202930|0.41667 202931|0.47222 202932|0.33333 202933|0.13889 202934|0.44444 202935|0.30556 202936|0.40278 202937|0.26389 202938|0.19444 202939|0.66667 202940|0.61111 202941|0.75 202942|0.72222 202943|0.66667 202944|0.36111 202945|0.54167 202946|0.68056 202947|0.25 202948|0.36111 202949|0.30556 202950|0.5 202951|0.38889 202952|0.52778 202953|0.51389 202954|0.54167 202955|0.44444 202956|0.63889 202957|0.625 202958|0.38889 202959|0.51389 202960|0.41667 202961|0.375 202962|0.79167 202963|0.81944 202964|0.72222 202965|0.84722 202966|0.44444 202967|0.38889 202968|0.31944 202969|0.22222 202970|0.22222 202971|0.19444 202972|0.20833 202973|0.16667 202974|0.27778 202975|0.25 202976|0.22222 202977|0.27778 202978|0.25 202979|0.27778 202980|0.625 202981|0.83333 202982|0.16667 202983|0.16667 202984|0.18056 202985|0.23611 202986|0.23611 202987|0.097222 202988|0.13889 202989|0.40278 202990|0.55556 202991|0.16667 202992|0.27778 202993|0.13889 202994|0.16667 202995|0.5 202996|0.58333 202997|0.51389 202998|0.18056 202999|0.30556 203000|0.33333 203001|0.61111 203002|0.83333 203003|0.73611 203004|0.56944 203005|0.5 203006|0.29167 203007|0.5 203008|0.36111 203009|0.47222 203010|0.29167 203011|0.33333 203012|0.29167 203013|0.27778 203014|0.70833 203015|0.625 203016|0.73611 203017|0.375 203018|0.55556 203019|0.31944 203020|0.11111 203021|0.31944 203022|0.29167 203023|0.41667 203024|0.33333 203025|0.30556 203026|0.083333 203027|0.20833 203028|0.15278 203029|0.125 203030|0.16667 203031|0.5 203032|0.31944 203033|0.38889 203034|0.22222 203035|0.13889 203036|0.34722 203037|0.66667 203038|0.23611 203039|0.40278 203040|0.25 203041|0.44444 203042|0.19444 203043|0.27778 203044|0.13889 203045|0.40278 203046|0.68056 203047|0.27778 203048|0.36111 203049|0.31944 203050|0.23611 203051|0.27778 203052|0.5 203053|0.36111 203054|0.5 203055|0.40278 203056|0.38889 203057|0.51389 203058|0.33333 203059|0.33333 203060|0.34722 203061|0.25 203062|0.44444 203063|0.30556 203064|0.125 203065|0.27778 203066|0.47222 203067|0.097222 203068|0.33333 203069|0.25 203070|0.22222 203071|0.31944 203072|0.36111 203073|0.083333 203074|0.375 203075|0.27778 203076|0.47222 203077|0.25 203078|0.33333 203079|0.31944 203080|0.48611 203081|0.38889 203082|0.16667 203083|0.36111 203084|0.29167 203085|0.11111 203086|0.22222 203087|0.33333 203088|0.54167 203089|0.125 203090|0.16667 203091|0.083333 203092|0.097222 203093|0.125 203094|0.055556 203095|0.51389 203096|0.34722 203097|0.44444 203098|0.31944 203099|0.30556 203100|0.055556 203101|0.16667 203102|0.52778 203103|0.44444 203104|0.18056 203105|0.51389 203106|0.22222 203107|0.375 203108|0.33333 203109|0.27778 203110|0.34722 203111|0.54167 203112|0.25 203113|0.63889 203114|0.79167 203115|0.68056 203116|0.125 203117|0.23611 203118|0.61111 203119|0.25 203120|0.20833 203121|0.41667 203122|0.5 203123|0.48611 203124|0.36111 203125|0.125 203126|0.44444 203127|0.5 203128|0.40278 203129|0.63889 203130|0.58333 203131|0.47222 203132|0.22222 203133|0.25 203134|0.5 203135|0.26389 203136|0.31944 203137|0.44444 203138|0.5 203139|0.16667 203140|0.16667 203141|0.43056 203142|0.44444 203143|0.55556 203144|0.54167 203145|0.55556 203146|0.40278 203147|0.30556 203148|0.38889 203149|0.41667 203150|0.51389 203151|0.61111 203152|0.30556 203153|0.26389 203154|0.36111 203155|0.30556 203156|0.72222 203157|0.22222 203158|0.33333 203159|0.375 203160|0.30556 203161|0.44444 203162|0.27778 203163|0.44444 203164|0.375 203165|0.36111 203166|0.23611 203167|0.22222 203168|0.375 203169|0.56944 203170|0.31944 203171|0.38889 203172|0.41667 203173|0.36111 203174|0.29167 203175|0.36111 203176|0.38889 203177|0.375 203178|0.20833 203179|0.34722 203180|0.5 203181|0.22222 203182|0.36111 203183|0.54167 203184|0.19444 203185|0.055556 203186|0.55556 203187|0.51389 203188|0.31944 203189|0.36111 203190|0.36111 203191|0.45833 203192|0.41667 203193|0.22222 203194|0.11111 203195|0.38889 203196|0.5 203197|0.31944 203198|0.36111 203199|0.5 203200|0.44444 203201|0.43056 203202|0.45833 203203|0.16667 203204|0.375 203205|0.47222 203206|0.43056 203207|0.31944 203208|0.33333 203209|0.20833 203210|0.38889 203211|0.44444 203212|0.31944 203213|0.30556 203214|0.25 203215|0.44444 203216|0.34722 203217|0.23611 203218|0.15278 203219|0.29167 203220|0.26389 203221|0.23611 203222|0.29167 203223|0.40278 203224|0.45833 203225|0.44444 203226|0.33333 203227|0.45833 203228|0.52778 203229|0.70833 203230|0.58333 203231|0.44444 203232|0.27778 203233|0.51389 203234|0.38889 203235|0.16667 203236|0.16667 203237|0.44444 203238|0.29167 203239|0.5 203240|0.47222 203241|0.55556 203242|0.66667 203243|0.625 203244|0.70833 203245|0.29167 203246|0.25 203247|0.26389 203248|0.44444 203249|0.33333 203250|0.40278 203251|0.34722 203252|0.22222 203253|0.41667 203254|0.33333 203255|0.23611 203256|0.23611 203257|0.38889 203258|0.38889 203259|0.29167 203260|0.52778 203261|0.63889 203262|0.29167 203263|0.22222 203264|0.25 203265|0.125 203266|0.33333 203267|0.43056 203268|0.30556 203269|0.5 203270|0.30556 203271|0.38889 203272|0.083333 203273|0.34722 203274|0.13889 203275|0.30556 203276|0.52778 203277|0.55556 203278|0.027778 203279|0.11111 203280|0.13889 203281|0.16667 203282|0.097222 203283|0.22222 203284|0.097222 203285|0.13889 203286|0.26389 203287|0.43056 203288|0.86111 203289|0.93056 203290|0.083333 203291|0 203292|0.055556 203293|0.30556 203294|0.375 203295|0.26389 203296|0.5 203297|0.29167 203298|0.45833 203299|0.19444 203300|0.18056 203301|0.45833 203302|0.5 203303|0.22222 203304|0.31944 203305|0.38889 203306|0.5 203307|0.55556 203308|0.69444 203309|0.22222 203310|0.18056 203311|0.16667 203312|0.041667 203313|0.11111 203314|0.30556 203315|0.25 203316|0.44444 203317|0.27778 203318|0.23611 203319|0.63889 203320|0.34722 203321|0.15278 203322|0.51389 203323|0.77778 203324|0.70833 203325|0.88889 203326|0.5 203327|0.625 203328|0.25 203329|0.083333 203330|0.80556 203331|0.55556 203332|0.19444 203333|0.22222 203334|0.29167 203335|0.44444 203336|0.44444 203337|0.26389 203338|0.34722 203339|0.44444 203340|0.375 203341|0.52778 203342|0.38889 203343|0.40278 203344|0.55556 203345|0.27778 203346|0.27778 203347|0.33333 203348|0.31944 203349|0.069444 203350|0.56944 203351|0.44444 203352|0.5 203353|0.47222 203354|0.51389 203355|0.625 203356|0.27778 203357|0.19444 203358|0.375 203359|0.43056 203360|0.41667 203361|0.34722 203362|0.11111 203363|0.083333 203364|0.43056 203365|0.25 203366|0.18056 203367|0.30556 203368|0.59722 203369|0.36111 203370|0.65278 203371|0.45833 203372|0.13889 203373|0.31944 203374|0.38889 203375|0.44444 203376|0.19444 203377|0.44444 203378|0.41667 203379|0.48611 203380|0.19444 203381|0.43056 203382|0.45833 203383|0.27778 203384|0.47222 203385|0.45833 203386|0.55556 203387|0.19444 203388|0.70833 203389|0.11111 203390|0.19444 203391|0.15278 203392|0.11111 203393|0.22222 203394|0.31944 203395|0.25 203396|0.23611 203397|0.31944 203398|0.40278 203399|0.44444 203400|0.5 203401|0.23611 203402|0.56944 203403|0.73611 203404|0.25 203405|0.51389 203406|0.083333 203407|0 203408|0.069444 203409|0.47222 203410|0.26389 203411|0.18056 203412|0.125 203413|0.38889 203414|0.47222 203415|0.22222 203416|0.33333 203417|0.19444 203418|0.63889 203419|0.20833 203420|0.13889 203421|0.15278 203422|0.19444 203423|0.055556 203424|0.34722 203425|0.59722 203426|0.44444 203427|0.5 203428|0.72222 203429|0.55556 203430|0.5 203431|0.43056 203432|0.20833 203433|0.30556 203434|0.61111 203435|0.5 203436|0.59722 203437|0.36111 203438|0.45833 203439|0.20833 203440|0.52778 203441|0.5 203442|0.68056 203443|0.61111 203444|0.40278 203445|0.22222 203446|0.26389 203447|0.48611 203448|0.31944 203449|0.29167 203450|0.30556 203451|0.18056 203452|0.19444 203453|0.19444 203454|0.44444 203455|0.34722 203456|0.45833 203457|0.58333 203458|0.61111 203459|0.16667 203460|0.15278 203461|0.45833 203462|0.25 203463|0.34722 203464|0.27778 203465|0.55556 203466|0.125 203467|0.43056 203468|0.44444 203469|0.22222 203470|0.5 203471|0.55556 203472|0.22222 203473|0.16667 203474|0.84722 203475|0.77778 203476|0.44444 203477|0.34722 203478|0.33333 203479|0.38889 203480|0.48611 203481|0.5 203482|0.33333 203483|0.30556 203484|0.27778 203485|0.40278 203486|0.47222 203487|0.5 203488|0.5 203489|0.61111 203490|0.38889 203491|0.5 203492|0.5 203493|0.55556 203494|0.27778 203495|0.22222 203496|0.55556 203497|0.069444 203498|0.13889 203499|0.45833 203500|0.38889 203501|0.33333 203502|0.20833 203503|0.31944 203504|0.88889 203505|0.041667 203506|0.27778 203507|0.27778 203508|0.125 203509|0.5 203510|0.27778 203511|0.16667 203512|0.27778 203513|0.11111 203514|0.375 203515|0.36111 203516|0.40278 203517|0.27778 203518|0.38889 203519|0.19444 203520|0.26389 203521|0.26389 203522|0.18056 203523|0.20833 203524|0.40278 203525|0.43056 203526|0.30556 203527|0.40278 203528|0.44444 203529|0.36111 203530|0.5 203531|0.5 203532|0.93056 203533|0.36111 203534|0.22222 203535|0.5 203536|0.34722 203537|0.19444 203538|0.15278 203539|0.26389 203540|0.5 203541|0.61111 203542|0.41667 203543|0.38889 203544|0.38889 203545|0.27778 203546|0.58333 203547|0.76389 203548|0.31944 203549|0.26389 203550|0.75 203551|0.069444 203552|0.44444 203553|0.38889 203554|0.26389 203555|0.34722 203556|0.27778 203557|0.375 203558|0.51389 203559|0.5 203560|0.43056 203561|0.43056 203562|0.38889 203563|0.375 203564|0.44444 203565|0.20833 203566|0.19444 203567|0.5 203568|0.26389 203569|0.61111 203570|0.51389 203571|0.18056 203572|0 203573|0.47222 203574|0.45833 203575|0.5 203576|0.5 203577|0.5 203578|0.34722 203579|0.27778 203580|0.52778 203581|0.23611 203582|0.625 203583|0.18056 203584|0.38889 203585|0.36111 203586|0.83333 203587|0.43056 203588|0.18056 203589|0.56944 203590|0.31944 203591|0.38889 203592|0.22222 203593|0.36111 203594|0.75 203595|0.77778 203596|0.25 203597|0.375 203598|0.11111 203599|0.16667 203600|0.25 203601|0.13889 203602|0.25 203603|0.43056 203604|0.11111 203605|0.41667 203606|0.31944 203607|0.22222 203608|0.45833 203609|0.375 203610|0.19444 203611|0.30556 203612|0.29167 203613|0.43056 203614|0.22222 203615|0.25 203616|0.375 203617|0.27778 203618|0.27778 203619|0.47222 203620|0.375 203621|0.36111 203622|0.34722 203623|0.45833 203624|0.30556 203625|0.33333 203626|0.34722 203627|0.90278 203628|0.75 203629|0.26389 203630|0.23611 203631|0.58333 203632|0.34722 203633|0.19444 203634|0.55556 203635|0.25 203636|0.34722 203637|0.125 203638|0.13889 203639|0.66667 203640|0.40278 203641|0.16667 203642|0.30556 203643|0.20833 203644|0.16667 203645|0.31944 203646|0.375 203647|0.48611 203648|0.30556 203649|0.25 203650|0.23611 203651|0.18056 203652|0.26389 203653|0.19444 203654|0.48611 203655|0.33333 203656|0.31944 203657|0.48611 203658|0.38889 203659|0.38889 203660|0.81944 203661|0.31944 203662|0.55556 203663|0.33333 203664|0.33333 203665|0.25 203666|0.30556 203667|0.041667 203668|0.11111 203669|0.68056 203670|0.5 203671|0.54167 203672|0.27778 203673|0.22222 203674|0.40278 203675|0.26389 203676|0.36111 203677|0.25 203678|0.48611 203679|0.5 203680|0.34722 203681|0.22222 203682|0.45833 203683|0.33333 203684|0.45833 203685|0.38889 203686|0.18056 203687|0.86111 203688|0.81944 203689|0.55556 203690|0.055556 203691|0.069444 203692|0.38889 203693|0.20833 203694|0.13889 203695|0.083333 203696|0.33333 203697|0.29167 203698|0.54167 203699|0.38889 203700|0.23611 203701|0.31944 203702|0.44444 203703|0.38889 203704|0.83333 203705|0.77778 203706|0.70833 203707|0.81944 203708|0.36111 203709|0.27778 203710|0.41667 203711|0.45833 203712|0.47222 203713|0.5 203714|0.33333 203715|0.15278 203716|0.5 203717|0.5 203718|0.375 203719|0.55556 203720|0.25 203721|0.5 203722|0.18056 203723|0.19444 203724|0.59722 203725|0.81944 203726|0.26389 203727|0.29167 203728|0.58333 203729|0.19444 203730|0.34722 203731|0.44444 203732|0.625 203733|0.41667 203734|0.58333 203735|0.59722 203736|0.55556 203737|0.52778 203738|0.23611 203739|0.75 203740|0.34722 203741|0.43056 203742|0.20833 203743|0.36111 203744|0.47222 203745|0.72222 203746|0.30556 203747|0.45833 203748|0.013889 203749|0.5 203750|0.34722 203751|0.30556 203752|0.15278 203753|0.66667 203754|0.29167 203755|0.34722 203756|0.23611 203757|0.45833 203758|0.45833 203759|0.18056 203760|0.52778 203761|0.36111 203762|0.33333 203763|0.29167 203764|0.77778 203765|0.69444 203766|0.27778 203767|0.40278 203768|0.43056 203769|0.30556 203770|0.36111 203771|0.33333 203772|0.26389 203773|0.51389 203774|0.51389 203775|0.27778 203776|0.29167 203777|0.70833 203778|0.41667 203779|0.48611 203780|0.16667 203781|0.63889 203782|0.45833 203783|0.25 203784|0.30556 203785|0.5 203786|0.43056 203787|0.125 203788|0.40278 203789|0.40278 203790|0.56944 203791|0.54167 203792|0.26389 203793|0.33333 203794|0.15278 203795|0.27778 203796|0.31944 203797|0.56944 203798|0.083333 203799|0.27778 203800|0.18056 203801|0.25 203802|0.40278 203803|0.38889 203804|0.63889 203805|0.5 203806|0.5 203807|0.47222 203808|0.44444 203809|0.30556 203810|0.5 203811|0.33333 203812|0.43056 203813|0.23611 203814|0.43056 203815|0.23611 203816|0.31944 203817|0.75 203818|0.22222 203819|0.26389 203820|0.18056 203821|0.80556 203822|0.77778 203823|0.41667 203824|0.25 203825|0.56944 203826|0.55556 203827|0.625 203828|0.125 203829|0.5 203830|0.5 203831|0.27778 203832|0.38889 203833|0.54167 203834|0.80556 203835|0.375 203836|0.375 203837|0.26389 203838|0.38889 203839|0.45833 203840|0.22222 203841|0.47222 203842|0.69444 203843|0.61111 203844|0.51389 203845|0.31944 203846|0.13889 203847|0.40278 203848|0.5 203849|0.30556 203850|0.25 203851|0.27778 203852|0.20833 203853|0.59722 203854|0.33333 203855|0.16667 203856|0.16667 203857|0.5 203858|0.5 203859|0.44444 203860|0.19444 203861|0.25 203862|0.625 203863|0.34722 203864|0.41667 203865|0.43056 203866|0.30556 203867|0.31944 203868|0.5 203869|0.51389 203870|0.34722 203871|0.27778 203872|0.75 203873|0.5 203874|0.68056 203875|0.27778 203876|0.47222 203877|0.47222 203878|0.36111 203879|0.125 203880|0.33333 203881|0.23611 203882|0.48611 203883|0.27778 203884|0.27778 203885|0.625 203886|0.5 203887|0.375 203888|0.55556 203889|0.29167 203890|0.36111 203891|0.26389 203892|0.13889 203893|0.18056 203894|0.29167 203895|0.65278 203896|0.5 203897|0.27778 203898|0.27778 203899|0.19444 203900|0.31944 203901|0.5 203902|0.375 203903|0.44444 203904|0.5 203905|0.34722 203906|0.27778 203907|0.27778 203908|0.41667 203909|0.75 203910|0.38889 203911|0.56944 203912|0.38889 203913|0.63889 203914|0.375 203915|0.58333 203916|0.66667 203917|0.48611 203918|0.59722 203919|0.5 203920|0.66667 203921|0.51389 203922|0.54167 203923|0.26389 203924|0.44444 203925|0.5 203926|0.38889 203927|0.36111 203928|0.29167 203929|0.26389 203930|0.16667 203931|0.125 203932|0.22222 203933|0.68056 203934|0.47222 203935|0.33333 203936|0.33333 203937|0.40278 203938|0.20833 203939|0.47222 203940|0.27778 203941|0.27778 203942|0.54167 203943|0.27778 203944|0.33333 203945|0.27778 203946|0.23611 203947|0.5 203948|0.44444 203949|0.77778 203950|0.41667 203951|0.27778 203952|0.29167 203953|0.19444 203954|0.31944 203955|0.5 203956|0.47222 203957|0.36111 203958|0.25 203959|0.11111 203960|0.45833 203961|0.5 203962|0.23611 203963|0.30556 203964|0.22222 203965|0.30556 203966|0.33333 203967|0.625 203968|0.45833 203969|0.58333 203970|0.48611 203971|0.16667 203972|0.40278 203973|0.38889 203974|0.375 203975|0.43056 203976|0.5 203977|0.52778 203978|0.625 203979|0.34722 203980|0.44444 203981|0.19444 203982|0.48611 203983|0.38889 203984|0.29167 203985|0.55556 203986|0.33333 203987|0.47222 203988|0.43056 203989|0.5 203990|0.36111 203991|0.25 203992|0.5 203993|0.13889 203994|0.34722 203995|0.5 203996|0.34722 203997|0.31944 203998|0.5 203999|0.65278 204000|0.5 204001|0.22222 204002|0.30556 204003|0.5 204004|0.44444 204005|0.29167 204006|0.30556 204007|0.30556 204008|0.375 204009|0.22222 204010|0.45833 204011|0.61111 204012|0.40278 204013|0.15278 204014|0.40278 204015|0.13889 204016|0.40278 204017|0.375 204018|0.5 204019|0.54167 204020|0.47222 204021|0.083333 204022|0.65278 204023|0.29167 204024|0.51389 204025|0.33333 204026|0.30556 204027|0.36111 204028|0.68056 204029|0.65278 204030|0.55556 204031|0.30556 204032|0.75 204033|0.48611 204034|0.72222 204035|0.63889 204036|0.055556 204037|0.5 204038|0.58333 204039|0.5 204040|0.16667 204041|0 204042|0.23611 204043|0.55556 204044|0.30556 204045|0.23611 204046|0.55556 204047|0.47222 204048|0.45833 204049|0.055556 204050|0.34722 204051|0.48611 204052|0.5 204053|0.30556 204054|0.5 204055|0.61111 204056|0.58333 204057|0.41667 204058|0.66667 204059|0.5 204060|0.48611 204061|0.45833 204062|0.23611 204063|0.54167 204064|0.77778 204065|0.5 204066|0.61111 204067|0.47222 204068|0.38889 204069|0.31944 204070|0.22222 204071|0.34722 204072|0.5 204073|0.5 204074|0.44444 204075|0.5 204076|0.48611 204077|0.40278 204078|0.43056 204079|0.47222 204080|0.43056 204081|0.47222 204082|0.58333 204083|0.20833 204084|0.29167 204085|0.63889 204086|0.20833 204087|0.44444 204088|0.31944 204089|0.15278 204090|0.27778 204091|0.22222 204092|0.56944 204093|0.69444 204094|0.72222 204095|0.33333 204096|0.23611 204097|0.31944 204098|0.5 204099|0.5 204100|0.45833 204101|0.43056 204102|0.58333 204103|0.5 204104|0.5 204105|0.52778 204106|0.52778 204107|0.54167 204108|0.66667 204109|0.41667 204110|0.43056 204111|0.55556 204112|0.23611 204113|0.19444 204114|0.56944 204115|0.041667 204116|0.5 204117|0.59722 204118|0.16667 204119|0.5 204120|0.44444 204121|0.5 204122|0.51389 204123|0.66667 204124|0.27778 204125|0.26389 204126|0.80556 204127|0.5 204128|0.5 204129|0.36111 204130|0.5 204131|0.59722 204132|0.52778 204133|0.5 204134|0.51389 204135|0.38889 204136|0.375 204137|0.29167 204138|0.5 204139|0.5 204140|0.52778 204141|0.5 204142|0.66667 204143|0.29167 204144|0.69444 204145|0.73611 204146|0.52778 204147|0.55556 204148|0.33333 204149|0.36111 204150|0.65278 204151|0.59722 204152|0.52778 204153|0.30556 204154|0.18056 204155|0.5 204156|0.56944 204157|0.29167 204158|0.55556 204159|0.083333 204160|0.44444 204161|0.33333 204162|0.29167 204163|0.43056 204164|0.45833 204165|0.38889 204166|0.25 204167|0.47222 204168|0.30556 204169|0.18056 204170|0.27778 204171|0.41667 204172|0.58333 204173|0.59722 204174|0.52778 204175|0.5 204176|0.34722 204177|0.61111 204178|0.27778 204179|0.47222 204180|0.5 204181|0.58333 204182|0.44444 204183|0.5 204184|0.44444 204185|0.23611 204186|0.41667 204187|0.40278 204188|0.5 204189|0.23611 204190|0.44444 204191|0.33333 204192|0.41667 204193|0.63889 204194|0.47222 204195|0.5 204196|0.23611 204197|0.5 204198|0.22222 204199|0.61111 204200|0.30556 204201|0.5 204202|0.58333 204203|0.66667 204204|0.44444 204205|0.54167 204206|0.20833 204207|0.31944 204208|0.11111 204209|0.5 204210|0.66667 204211|0.44444 204212|0.5 204213|0.65278 204214|0.48611 204215|0.54167 204216|0.38889 204217|0.22222 204218|0.16667 204219|0.375 204220|0.375 204221|0.15278 204222|0.5 204223|0.48611 204224|0.36111 204225|0.5 204226|0.27778 204227|0.27778 204228|0.61111 204229|0.27778 204230|0.20833 204231|0.5 204232|0.38889 204233|0.45833 204234|0.5 204235|0.52778 204236|0.55556 204237|0.26389 204238|0.29167 204239|0.51389 204240|0.5 204241|0.5 204242|0.38889 204243|0.38889 204244|0.72222 204245|0.52778 204246|0.38889 204247|0.38889 204248|0.48611 204249|0.25 204250|0.41667 204251|0.47222 204252|0.31944 204253|0.25 204254|0.5 204255|0.5 204256|0.45833 204257|0.22222 204258|0.56944 204259|0.29167 204260|0.80556 204261|0.5 204262|0.65278 204263|0.29167 204264|0.5 204265|0.52778 204266|0.5 204267|0.45833 204268|0.375 204269|0.40278 204270|0.27778 204271|0.375 204272|0.22222 204273|0.66667 204274|0.61111 204275|0.55556 204276|0.61111 204277|0.41667 204278|0.48611 204279|0.58333 204280|0.38889 204281|0.43056 204282|0.44444 204283|0.23611 204284|0.55556 204285|0.5 204286|0.66667 204287|0.83333 204288|0.5 204289|0.5 204290|0.5 204291|0.65278 204292|0.15278 204293|0.66667 204294|0.66667 204295|0.68056 204296|0.38889 204297|0.5 204298|0.5 204299|0.52778 204300|0.36111 204301|0.55556 204302|0.36111 204303|0.48611 204304|0.43056 204305|0.44444 204306|0.54167 204307|0.5 204308|0.41667 204309|0.59722 204310|0.44444 204311|0.33333 204312|0.5 204313|0.23611 204314|0.36111 204315|0.69444 204316|0.5 204317|0.44444 204318|0.79167 204319|0.75 204320|0.40278 204321|0.75 204322|0.54167 204323|0.70833 204324|0.5 204325|0.34722 204326|0.40278 204327|0.45833 204328|0.5 204329|0.5 204330|0.45833 204331|0.19444 204332|0.375 204333|0.43056 204334|0.61111 204335|0.38889 204336|0.5 204337|0.44444 204338|0.5 204339|0.77778 204340|0.5 204341|0.40278 204342|0.5 204343|0.5 204344|0.51389 204345|0.5 204346|0.5 204347|0.55556 204348|0.45833 204349|0.47222 204350|0.5 204351|0.44444 204352|0.25 204353|0.34722 204354|0.625 204355|0.58333 204356|0.5 204357|0.51389 204358|0.52778 204359|0.52778 204360|0.5 204361|0.61111 204362|0.59722 204363|0.73611 204364|0.47222 204365|0.47222 204366|0.61111 204367|0.5 204368|0.47222 204369|0.5 204370|0.38889 204371|0.56944 204372|0.33333 204373|0.36111 204374|0.65278 204375|0.36111 204376|0.36111 204377|0.125 204378|0.31944 204379|0.45833 204380|0.34722 204381|0.19444 204382|0.48611 204383|0.33333 204384|0.5 204385|0.27778 204386|0.22222 204387|0.48611 204388|0.38889 204389|0.5 204390|0.59722 204391|0.41667 204392|0.44444 204393|0.48611 204394|0.58333 204395|0.45833 204396|0.45833 204397|0.56944 204398|0.48611 204399|0.81944 204400|0.20833 204401|0.097222 204402|0 204403|0.013889 204404|0.30556 204405|0.33333 204406|0.27778 204407|0.11111 204408|0.5 204409|0.56944 204410|0.23611 204411|0.66667 204412|0.47222 204413|0.5 204414|0.5 204415|0.72222 204416|0.75 204417|0.30556 204418|0.20833 204419|0.29167 204420|0.22222 204421|0.15278 204422|0.5 204423|0.51389 204424|0.44444 204425|0.5 204426|0.43056 204427|0.41667 204428|0.45833 204429|0.33333 204430|0.36111 204431|0.20833 204432|0.19444 204433|0.38889 204434|0.38889 204435|0.27778 204436|0.38889 204437|0.5 204438|0.77778 204439|0.5 204440|0.375 204441|0.33333 204442|0.15278 204443|0.59722 204444|0.5 204445|0.33333 204446|0.43056 204447|0.30556 204448|0.34722 204449|0.30556 204450|0.19444 204451|0.31944 204452|0.33333 204453|0.66667 204454|0.29167 204455|0.26389 204456|0.5 204457|0.20833 204458|0.22222 204459|0.23611 204460|0.5 204461|0.51389 204462|0.27778 204463|0.36111 204464|0.22222 204465|0.5 204466|0.40278 204467|0.40278 204468|0.22222 204469|0.36111 204470|0.47222 204471|0.22222 204472|0.20833 204473|0.22222 204474|0.29167 204475|0.15278 204476|0.44444 204477|0.26389 204478|0.5 204479|0.56944 204480|0.34722 204481|0.27778 204482|0.097222 204483|0.22222 204484|0.66667 204485|0.23611 204486|0.33333 204487|0.31944 204488|0.63889 204489|0.44444 204490|0.30556 204491|0.56944 204492|0.61111 204493|0.59722 204494|0.84722 204495|0.26389 204496|0.33333 204497|0.36111 204498|0.5 204499|0.44444 204500|0.66667 204501|0.38889 204502|0.41667 204503|0.45833 204504|0.38889 204505|0.52778 204506|0.63889 204507|0.63889 204508|0.83333 204509|0.48611 204510|0.5 204511|0.5 204512|0.48611 204513|0.22222 204514|0.125 204515|0.58333 204516|0.36111 204517|0.29167 204518|0.26389 204519|0.56944 204520|0.65278 204521|0.41667 204522|0.65278 204523|0.31944 204524|0.29167 204525|0.13889 204526|0.59722 204527|0.51389 204528|0.58333 204529|0.5 204530|0.61111 204531|0.76389 204532|0.54167 204533|0.52778 204534|0.63889 204535|0.5 204536|0.70833 204537|0.66667 204538|0.54167 204539|0.45833 204540|0.5 204541|0.59722 204542|0.45833 204543|0.45833 204544|0.5 204545|0.44444 204546|0.55556 204547|0.41667 204548|0.54167 204549|0.55556 204550|0.47222 204551|0.125 204552|0.44444 204553|0.45833 204554|0.58333 204555|0.5 204556|0.5 204557|0.5 204558|0.625 204559|0.55556 204560|0.055556 204561|0.36111 204562|0.72222 204563|0.5 204564|0.5 204565|0.16667 204566|0.5 204567|0.38889 204568|0.44444 204569|0.34722 204570|0.34722 204571|0.5 204572|0.40278 204573|0.5 204574|0.44444 204575|0.45833 204576|0.66667 204577|0.5 204578|0.5 204579|0.54167 204580|0.59722 204581|0.43056 204582|0.19444 204583|0.375 204584|0.63889 204585|0.27778 204586|0.61111 204587|0.5 204588|0.54167 204589|0.5 204590|0.48611 204591|0.375 204592|0.27778 204593|0.69444 204594|0.55556 204595|0.27778 204596|0.59722 204597|0.13889 204598|0.083333 204599|0.43056 204600|0.16667 204601|0.68056 204602|0.5 204603|0.33333 204604|0.36111 204605|0.23611 204606|0.18056 204607|0.22222 204608|0.34722 204609|0.5 204610|0.51389 204611|0.43056 204612|0.72222 204613|0.47222 204614|0.43056 204615|0.625 204616|0.47222 204617|0.5 204618|0.625 204619|0.36111 204620|0.27778 204621|0.375 204622|0.16667 204623|0.375 204624|0.26389 204625|0.19444 204626|0.20833 204627|0.26389 204628|0.16667 204629|0.25 204630|0.31944 204631|0.20833 204632|0.33333 204633|0.13889 204634|0.38889 204635|0.47222 204636|0.15278 204637|0.29167 204638|0.29167 204639|0.33333 204640|0.31944 204641|0.26389 204642|0.51389 204643|0.20833 204644|0.34722 204645|0.18056 204646|0.25 204647|0.31944 204648|0.23611 204649|0.23611 204650|0.16667 204651|0.20833 204652|0.22222 204653|0.22222 204654|0.375 204655|0.47222 204656|0.25 204657|0.22222 204658|0.27778 204659|0.36111 204660|0.23611 204661|0.18056 204662|0.44444 204663|0.25 204664|0.29167 204665|0.40278 204666|0.29167 204667|0.29167 204668|0.23611 204669|0.27778 204670|0.22222 204671|0.22222 204672|0.34722 204673|0.41667 204674|0.19444 204675|0.19444 204676|0.34722 204677|0.22222 204678|0.16667 204679|0.19444 204680|0.52778 204681|0.48611 204682|0.48611 204683|0.5 204684|0.5 204685|0.5 204686|0.5 204687|0.47222 204688|0.38889 204689|0.36111 204690|0.36111 204691|0.5 204692|0.5 204693|0.36111 204694|0.34722 204695|0.27778 204696|0.5 204697|0.45833 204698|0.26389 204699|0.27778 204700|0.52778 204701|0.5 204702|0.47222 204703|0.5 204704|0.54167 204705|0.5 204706|0.52778 204707|0.27778 204708|0.40278 204709|0.5 204710|0.5 204711|0.51389 204712|0.56944 204713|0.48611 204714|0.5 204715|0.41667 204716|0.48611 204717|0.41667 204718|0.65278 204719|0.40278 204720|0.38889 204721|0.72222 204722|0.5 204723|0.33333 204724|0.51389 204725|0.48611 204726|0.5 204727|0.5 204728|0.5 204729|0.48611 204730|0.66667 204731|0.61111 204732|0.40278 204733|0.16667 204734|0.44444 204735|0.66667 204736|0.79167 204737|0.48611 204738|0.33333 204739|0.80556 204740|0.38889 204741|0.5 204742|0.27778 204743|0.36111 204744|0.58333 204745|0.43056 204746|0.52778 204747|0.33333 204748|0.33333 204749|0.52778 204750|0.41667 204751|0.79167 204752|0.5 204753|0.36111 204754|0.38889 204755|0.375 204756|0.36111 204757|0.38889 204758|0.18056 204759|0.33333 204760|0.56944 204761|0.23611 204762|0.23611 204763|0.25 204764|0.11111 204765|0.70833 204766|0.61111 204767|0.5 204768|0.625 204769|0.54167 204770|0.5 204771|0.48611 204772|0.18056 204773|0.33333 204774|0.19444 204775|0.58333 204776|0.5 204777|0.55556 204778|0.5 204779|0.625 204780|0.26389 204781|0.27778 204782|0.40278 204783|0.51389 204784|0.27778 204785|0.45833 204786|0.5 204787|0.58333 204788|0.63889 204789|0.5 204790|0.58333 204791|0.5 204792|0.55556 204793|0.40278 204794|0.30556 204795|0.375 204796|0.55556 204797|0.45833 204798|0.79167 204799|0.31944 204800|0.29167 204801|0.36111 204802|0.055556 204803|0.48611 204804|0.18056 204805|0.66667 204806|0.61111 204807|0.54167 204808|0.33333 204809|0.125 204810|0.48611 204811|0.25 204812|0.33333 204813|0.26389 204814|0.16667 204815|0.125 204816|0.40278 204817|0.31944 204818|0.20833 204819|0.23611 204820|0.56944 204821|0.33333 204822|0.44444 204823|0.5 204824|0.45833 204825|0.41667 204826|0.36111 204827|0.51389 204828|0.36111 204829|0.38889 204830|0.5 204831|0.54167 204832|0.22222 204833|0.55556 204834|0.36111 204835|0.375 204836|0.20833 204837|0.38889 204838|0.19444 204839|0.61111 204840|0.36111 204841|0.51389 204842|0.51389 204843|0.59722 204844|0.5 204845|0.5 204846|0.56944 204847|0.55556 204848|0.33333 204849|0.5 204850|0.31944 204851|0.5 204852|0.15278 204853|0.51389 204854|0.41667 204855|0.5 204856|0.5 204857|0.27778 204858|0.47222 204859|0.47222 204860|0.38889 204861|0.22222 204862|0.33333 204863|0.33333 204864|0.38889 204865|0.23611 204866|0.43056 204867|0.55556 204868|0.38889 204869|0.30556 204870|0.40278 204871|0.65278 204872|0.5 204873|0.44444 204874|0.58333 204875|0.40278 204876|0.26389 204877|0.34722 204878|0.38889 204879|0.40278 204880|0.41667 204881|0.47222 204882|0.27778 204883|0.22222 204884|0.47222 204885|0.48611 204886|0.40278 204887|0.5 204888|0.41667 204889|0.20833 204890|0.27778 204891|0.25 204892|0.5 204893|0.45833 204894|0.48611 204895|0.29167 204896|0.29167 204897|0.33333 204898|0.5 204899|0.33333 204900|0.47222 204901|0.5 204902|0.43056 204903|0.40278 204904|0.44444 204905|0.5 204906|0.41667 204907|0.5 204908|0.66667 204909|0.59722 204910|0.55556 204911|0.41667 204912|0.26389 204913|0.22222 204914|0.44444 204915|0.5 204916|0.51389 204917|0.75 204918|0.5 204919|0.61111 204920|0.5 204921|0.5 204922|0.5 204923|0.5 204924|0.77778 204925|0.63889 204926|0.69444 204927|0.55556 204928|0.52778 204929|0.58333 204930|0.15278 204931|0.23611 204932|0.29167 204933|0.61111 204934|0.41667 204935|0.41667 204936|0.30556 204937|0.55556 204938|0.66667 204939|0.55556 204940|0.5 204941|0.58333 204942|0.52778 204943|0.61111 204944|0.48611 204945|0.68056 204946|0.29167 204947|0.38889 204948|0.38889 204949|0.59722 204950|0.58333 204951|0.27778 204952|0.59722 204953|0.52778 204954|0.47222 204955|0.22222 204956|0.625 204957|0.5 204958|0.5 204959|0.5 204960|0.5 204961|0.29167 204962|0.22222 204963|0.125 204964|0.5 204965|0.36111 204966|0.48611 204967|0.58333 204968|0.48611 204969|0.375 204970|0.59722 204971|0.40278 204972|0.51389 204973|0.44444 204974|0.5 204975|0.48611 204976|0.18056 204977|0.38889 204978|0.18056 204979|0.61111 204980|0.38889 204981|0.63889 204982|0.52778 204983|0.61111 204984|0.52778 204985|0.5 204986|0.61111 204987|0.58333 204988|0.5 204989|0.54167 204990|0.25 204991|0.66667 204992|0.56944 204993|0.55556 204994|0.11111 204995|0.51389 204996|0.48611 204997|0.625 204998|0.27778 204999|0.61111 205000|0.5 205001|0.59722 205002|0.56944 205003|0.43056 205004|0.16667 205005|0.45833 205006|0.38889 205007|0.34722 205008|0.63889 205009|0.41667 205010|0.36111 205011|0.38889 205012|0.44444 205013|0.48611 205014|0.30556 205015|0.20833 205016|0.31944 205017|0.43056 205018|0.41667 205019|0.30556 205020|0.38889 205021|0.47222 205022|0.29167 205023|0.69444 205024|0.625 205025|0.27778 205026|0.36111 205027|0.27778 205028|0.30556 205029|0.36111 205030|0.31944 205031|0.44444 205032|0.18056 205033|0.36111 205034|0.31944 205035|0.68056 205036|0.29167 205037|0.27778 205038|0.61111 205039|0.16667 205040|0.52778 205041|0.125 205042|0.33333 205043|0.22222 205044|0.13889 205045|0.20833 205046|0.27778 205047|0.26389 205048|0.54167 205049|0.63889 205050|0.45833 205051|0.083333 205052|0.31944 205053|0.51389 205054|0.33333 205055|0.44444 205056|0.5 205057|0.29167 205058|0.44444 205059|0.55556 205060|0.20833 205061|0.5 205062|0.19444 205063|0.23611 205064|0.44444 205065|0.52778 205066|0.48611 205067|0.66667 205068|0.5 205069|0.5 205070|0.58333 205071|0.59722 205072|0.51389 205073|0.27778 205074|0.22222 205075|0.56944 205076|0.33333 205077|0.51389 205078|0.5 205079|0.26389 205080|0.375 205081|0.40278 205082|0.51389 205083|0.5 205084|0.51389 205085|0.5 205086|0.26389 205087|0.41667 205088|0.26389 205089|0.5 205090|0.23611 205091|0.5 205092|0.54167 205093|0.33333 205094|0.33333 205095|0.40278 205096|0.69444 205097|0.70833 205098|0.56944 205099|0.19444 205100|0.20833 205101|0.055556 205102|0.65278 205103|0.25 205104|0.33333 205105|0.41667 205106|0.41667 205107|0.48611 205108|0.27778 205109|0.59722 205110|0.38889 205111|0.36111 205112|0.31944 205113|0.65278 205114|0.31944 205115|0.26389 205116|0.55556 205117|0.43056 205118|0.56944 205119|0.22222 205120|0.38889 205121|0.375 205122|0.44444 205123|0.13889 205124|0.29167 205125|0.58333 205126|0.56944 205127|0.76389 205128|0.77778 205129|0.47222 205130|0.41667 205131|0.5 205132|0.18056 205133|0.34722 205134|0.45833 205135|0.68056 205136|0.59722 205137|0.625 205138|0.55556 205139|0.5 205140|0.41667 205141|0.40278 205142|0.22222 205143|0.22222 205144|0.22222 205145|0.29167 205146|0.33333 205147|0.23611 205148|0.48611 205149|0.31944 205150|0.41667 205151|0.51389 205152|0.30556 205153|0.47222 205154|0.22222 205155|0.375 205156|0.36111 205157|0.38889 205158|0.41667 205159|0.48611 205160|0.22222 205161|0.36111 205162|0.40278 205163|0.30556 205164|0.54167 205165|0.48611 205166|0.47222 205167|0.34722 205168|0.5 205169|0.44444 205170|0.5 205171|0.5 205172|0.51389 205173|0.22222 205174|0.19444 205175|0.29167 205176|0.44444 205177|0.375 205178|0.22222 205179|0.59722 205180|0.61111 205181|0.26389 205182|0.48611 205183|0.41667 205184|0.33333 205185|0.13889 205186|0.15278 205187|0.33333 205188|0.30556 205189|0.34722 205190|0.19444 205191|0.33333 205192|0.30556 205193|0.13889 205194|0.15278 205195|0.36111 205196|0.41667 205197|0.38889 205198|0.5 205199|0.5 205200|0.59722 205201|0.44444 205202|0.52778 205203|0.5 205204|0.34722 205205|0.47222 205206|0.34722 205207|0.34722 205208|0.27778 205209|0.55556 205210|0.38889 205211|0.48611 205212|0.22222 205213|0.52778 205214|0.40278 205215|0.40278 205216|0.44444 205217|0.48611 205218|0.45833 205219|0.54167 205220|0.5 205221|0.5 205222|0.27778 205223|0.26389 205224|0.25 205225|0.33333 205226|0.15278 205227|0.40278 205228|0.16667 205229|0.38889 205230|0.29167 205231|0.31944 205232|0.30556 205233|0.5 205234|0.34722 205235|0.59722 205236|0.44444 205237|0.22222 205238|0.63889 205239|0.31944 205240|0.44444 205241|0.38889 205242|0.29167 205243|0.25 205244|0.51389 205245|0.44444 205246|0.29167 205247|0.33333 205248|0.18056 205249|0.52778 205250|0.16667 205251|0.375 205252|0.5 205253|0.47222 205254|0.52778 205255|0.66667 205256|0.26389 205257|0.33333 205258|0.38889 205259|0.55556 205260|0.72222 205261|0.51389 205262|0.72222 205263|0.76389 205264|0.83333 205265|0.38889 205266|0.27778 205267|0.48611 205268|0.5 205269|0.48611 205270|0.31944 205271|0.58333 205272|0.44444 205273|0.5 205274|0.48611 205275|0.5 205276|0.63889 205277|0.5 205278|0.33333 205279|0.26389 205280|0.52778 205281|0.44444 205282|0.41667 205283|0.66667 205284|0.77778 205285|0.38889 205286|0.25 205287|0.16667 205288|0.48611 205289|0.40278 205290|0.23611 205291|0.16667 205292|0.375 205293|0.25 205294|0.43056 205295|0.5 205296|0.54167 205297|0.38889 205298|0.5 205299|0.31944 205300|0.45833 205301|0.48611 205302|0.47222 205303|0.375 205304|0.33333 205305|0.5 205306|0.5 205307|0.48611 205308|0.27778 205309|0.72222 205310|0.51389 205311|0.36111 205312|0.29167 205313|0.41667 205314|0.5 205315|0.27778 205316|0.5 205317|0.5 205318|0.5 205319|0.5 205320|0.5 205321|0.19444 205322|0.20833 205323|0.5 205324|0.5 205325|0.45833 205326|0.66667 205327|0.5 205328|0.51389 205329|0.66667 205330|0.375 205331|0.55556 205332|0.66667 205333|0.20833 205334|0.55556 205335|0.33333 205336|0.58333 205337|0.47222 205338|0.5 205339|0.48611 205340|0.54167 205341|0.44444 205342|0.15278 205343|0.26389 205344|0.34722 205345|0.27778 205346|0.16667 205347|0.63889 205348|0.5 205349|0.23611 205350|0.23611 205351|0.125 205352|0.20833 205353|0.36111 205354|0.13889 205355|0.5 205356|0.44444 205357|0.5 205358|0.55556 205359|0.5 205360|0.48611 205361|0.33333 205362|0.19444 205363|0.44444 205364|0.72222 205365|0.45833 205366|0.5 205367|0.5 205368|0.43056 205369|0.73611 205370|0.51389 205371|0.5 205372|0.33333 205373|0.43056 205374|0.52778 205375|0.38889 205376|0.44444 205377|0.48611 205378|0.38889 205379|0.70833 205380|0.77778 205381|0.81944 205382|0.5 205383|0.23611 205384|0.20833 205385|0.18056 205386|0.56944 205387|0.5 205388|0.38889 205389|0.31944 205390|0.47222 205391|0.34722 205392|0.5 205393|0.38889 205394|0.44444 205395|0.52778 205396|0.22222 205397|0.26389 205398|0.44444 205399|0.36111 205400|0.36111 205401|0.375 205402|0.33333 205403|0.27778 205404|0.33333 205405|0.33333 205406|0.22222 205407|0.5 205408|0.5 205409|0.23611 205410|0.45833 205411|0.33333 205412|0.22222 205413|0.25 205414|0.20833 205415|0.055556 205416|0.47222 205417|0.25 205418|0.27778 205419|0.22222 205420|0.31944 205421|0.22222 205422|0.36111 205423|0.16667 205424|0.41667 205425|0.31944 205426|0.59722 205427|0.59722 205428|0.33333 205429|0.54167 205430|0.41667 205431|0.43056 205432|0.16667 205433|0.43056 205434|0.27778 205435|0.44444 205436|0.34722 205437|0.51389 205438|0.20833 205439|0.5 205440|0.65278 205441|0.23611 205442|0.375 205443|0.30556 205444|0.5 205445|0.61111 205446|0.44444 205447|0.58333 205448|0.19444 205449|0.5 205450|0.5 205451|0.38889 205452|0.27778 205453|0.48611 205454|0.13889 205455|0.013889 205456|0.20833 205457|0.22222 205458|0.44444 205459|0.5 205460|0.51389 205461|0.27778 205462|0.20833 205463|0.40278 205464|0.22222 205465|0.5 205466|0.47222 205467|0.66667 205468|0.54167 205469|0.5 205470|0.94444 205471|0.5 205472|0.44444 205473|0.16667 205474|0.18056 205475|0.77778 205476|0.79167 205477|0.81944 205478|0.30556 205479|0.44444 205480|0.5 205481|0.59722 205482|0.44444 205483|0.22222 205484|0.20833 205485|0.36111 205486|0.18056 205487|0.30556 205488|0.30556 205489|0.26389 205490|0.38889 205491|0.38889 205492|0.38889 205493|0.25 205494|0.16667 205495|0.29167 205496|0.16667 205497|0.38889 205498|0.36111 205499|0.27778 205500|0.33333 205501|0.38889 205502|0.38889 205503|0.54167 205504|0.26389 205505|0.27778 205506|0.19444 205507|0.23611 205508|0.48611 205509|0.40278 205510|0.5 205511|0.26389 205512|0.51389 205513|0.22222 205514|0.59722 205515|0.65278 205516|0.41667 205517|0.13889 205518|0.31944 205519|0.56944 205520|0.54167 205521|0.41667 205522|0.26389 205523|0.55556 205524|0.40278 205525|0.44444 205526|0.41667 205527|0.5 205528|0.48611 205529|0.5 205530|0.44444 205531|0.22222 205532|0.33333 205533|0.61111 205534|0.43056 205535|0.54167 205536|0.44444 205537|0.34722 205538|0.25 205539|0.5 205540|0.69444 205541|0.55556 205542|0.88889 205543|0.63889 205544|0.5 205545|0.51389 205546|0.44444 205547|0.47222 205548|0.5 205549|0.47222 205550|0.51389 205551|0.47222 205552|0.44444 205553|0.54167 205554|0.51389 205555|0.5 205556|0.45833 205557|0.26389 205558|0.43056 205559|0.70833 205560|0.59722 205561|0.73611 205562|0.72222 205563|0.72222 205564|0.40278 205565|0.72222 205566|0.5 205567|0.51389 205568|0.47222 205569|0.27778 205570|0.55556 205571|0.66667 205572|0.55556 205573|0.33333 205574|0.55556 205575|0.083333 205576|0.041667 205577|0.875 205578|0.45833 205579|0.58333 205580|0.59722 205581|0.56944 205582|0.48611 205583|0.55556 205584|0.33333 205585|0.45833 205586|0.5 205587|0.69444 205588|0.5 205589|0.44444 205590|0.38889 205591|0.77778 205592|0.44444 205593|0.52778 205594|0.33333 205595|0.33333 205596|0.125 205597|0.19444 205598|0.5 205599|0.72222 205600|0.58333 205601|0.84722 205602|0.375 205603|0.66667 205604|0.44444 205605|0.43056 205606|0.66667 205607|0.54167 205608|0.625 205609|0.83333 205610|0.25 205611|0.48611 205612|0.63889 205613|0.30556 205614|0.40278 205615|0.19444 205616|0.44444 205617|0.625 205618|0.41667 205619|0.83333 205620|0.5 205621|0.61111 205622|0.5 205623|0.25 205624|0.56944 205625|0.41667 205626|0.48611 205627|0.44444 205628|0.29167 205629|0.38889 205630|0.44444 205631|0.54167 205632|0.33333 205633|0.33333 205634|0.5 205635|0.63889 205636|0.33333 205637|0.23611 205638|0.61111 205639|0.45833 205640|0.38889 205641|0.75 205642|0.69444 205643|0.66667 205644|0.47222 205645|0.55556 205646|0.73611 205647|0.79167 205648|0.66667 205649|0.5 205650|0.44444 205651|0.65278 205652|0.5 205653|0.65278 205654|0.66667 205655|0.56944 205656|0.56944 205657|0.44444 205658|0.43056 205659|0.22222 205660|0.48611 205661|0.34722 205662|0.5 205663|0.5 205664|0.5 205665|0.5 205666|0.5 205667|0.52778 205668|0.44444 205669|0.5 205670|0.25 205671|0.41667 205672|0.55556 205673|0.55556 205674|0.51389 205675|0.52778 205676|0.5 205677|0.54167 205678|0.23611 205679|0.375 205680|0.26389 205681|0.375 205682|0.66667 205683|0.77778 205684|0.47222 205685|0.63889 205686|0.375 205687|0.5 205688|0.59722 205689|0.61111 205690|0.26389 205691|0.59722 205692|0.25 205693|0.29167 205694|0.44444 205695|0.61111 205696|0.27778 205697|0.47222 205698|0.59722 205699|0.55556 205700|0.40278 205701|0.40278 205702|0.61111 205703|0.41667 205704|0.61111 205705|0.52778 205706|0.44444 205707|0.36111 205708|0.30556 205709|0.13889 205710|0.25 205711|0.27778 205712|0.48611 205713|0.61111 205714|0.625 205715|0.72222 205716|0.76389 205717|0.20833 205718|0.26389 205719|0.47222 205720|0.33333 205721|0.40278 205722|0.36111 205723|0.5 205724|0.27778 205725|0.29167 205726|0.61111 205727|0.23611 205728|0.16667 205729|0.5 205730|0.5 205731|0.13889 205732|0.22222 205733|0.48611 205734|0.20833 205735|0.125 205736|0.55556 205737|0.56944 205738|0.34722 205739|0.51389 205740|0.75 205741|0.5 205742|0.47222 205743|0.5 205744|0.58333 205745|0.125 205746|0.26389 205747|0.30556 205748|0.5 205749|0.31944 205750|0.56944 205751|0.30556 205752|0.30556 205753|0.38889 205754|0.5 205755|0.5 205756|0.41667 205757|0.29167 205758|0.18056 205759|0.31944 205760|0.58333 205761|0.79167 205762|0.56944 205763|0.5 205764|0.58333 205765|0.65278 205766|0.41667 205767|0.51389 205768|0.38889 205769|0.61111 205770|0.48611 205771|0.58333 205772|0.56944 205773|0.59722 205774|0.5 205775|0.59722 205776|0.69444 205777|0.43056 205778|0.43056 205779|0.34722 205780|0.58333 205781|0.36111 205782|0.25 205783|0.26389 205784|0.68056 205785|0.52778 205786|0.11111 205787|0.15278 205788|0.61111 205789|0.23611 205790|0.22222 205791|0.55556 205792|0.65278 205793|0.83333 205794|0.55556 205795|0.47222 205796|0.61111 205797|0.18056 205798|0.33333 205799|0.27778 205800|0.375 205801|0.43056 205802|0.30556 205803|0.52778 205804|0.5 205805|0.56944 205806|0.375 205807|0.31944 205808|0.13889 205809|0.76389 205810|0.44444 205811|0.45833 205812|0.56944 205813|0.13889 205814|0.58333 205815|0.5 205816|0.47222 205817|0.38889 205818|0.5 205819|0.83333 205820|0.5 205821|0.45833 205822|0.5 205823|0.5 205824|0.52778 205825|0.375 205826|0.77778 205827|0.51389 205828|0.63889 205829|0.51389 205830|0.51389 205831|0.54167 205832|0.52778 205833|0.61111 205834|0.36111 205835|0.36111 205836|0.56944 205837|0.58333 205838|0.48611 205839|0.5 205840|0.44444 205841|0.36111 205842|0.29167 205843|0.5 205844|0.5 205845|0.22222 205846|0.61111 205847|0.58333 205848|0.59722 205849|0.47222 205850|0.34722 205851|0.47222 205852|0.5 205853|0.33333 205854|0.63889 205855|0.65278 205856|0.63889 205857|0.5 205858|0.5 205859|0.38889 205860|0.56944 205861|0.38889 205862|0.33333 205863|0.5 205864|0.5 205865|0.20833 205866|0.33333 205867|0.45833 205868|0.5 205869|0.40278 205870|0.5 205871|0 205872|0.16667 205873|0.45833 205874|0.94444 205875|0.58333 205876|0.84722 205877|0.41667 205878|0.25 205879|0.5 205880|0.45833 205881|0.38889 205882|0.625 205883|0.51389 205884|0.55556 205885|0.33333 205886|0.48611 205887|0.5 205888|0.11111 205889|0.54167 205890|0.63889 205891|0.20833 205892|0.55556 205893|0.5 205894|0.44444 205895|0.31944 205896|0.59722 205897|0.5 205898|0.41667 205899|0.55556 205900|0.52778 205901|0.33333 205902|0.51389 205903|0.18056 205904|0.38889 205905|0.38889 205906|0.45833 205907|0.65278 205908|0.43056 205909|0.11111 205910|0.56944 205911|0.29167 205912|0.58333 205913|0.48611 205914|0.38889 205915|0.055556 205916|0.097222 205917|0.31944 205918|0.52778 205919|0.77778 205920|0.30556 205921|0.375 205922|0.31944 205923|0.59722 205924|0.40278 205925|0.26389 205926|0.52778 205927|0.33333 205928|0.41667 205929|0.27778 205930|0.43056 205931|0.30556 205932|0.51389 205933|0.41667 205934|0.5 205935|0.5 205936|0.31944 205937|0.22222 205938|0.44444 205939|0.43056 205940|0.38889 205941|0.055556 205942|0.18056 205943|0.51389 205944|0.20833 205945|0.22222 205946|0.65278 205947|0.30556 205948|0.51389 205949|0.625 205950|0.31944 205951|0.31944 205952|0.25 205953|0.48611 205954|0.47222 205955|0.31944 205956|0.33333 205957|0.5 205958|0.29167 205959|0.61111 205960|0.22222 205961|0.43056 205962|0.38889 205963|0.22222 205964|0.54167 205965|0.5 205966|0.25 205967|0.30556 205968|0.38889 205969|0.5 205970|0.15278 205971|0.40278 205972|0.40278 205973|0.52778 205974|0.5 205975|0.33333 205976|0.5 205977|0.45833 205978|0.54167 205979|0.11111 205980|0.097222 205981|0.33333 205982|0.38889 205983|0.51389 205984|0.26389 205985|0.41667 205986|0.56944 205987|0.29167 205988|0.083333 205989|0.22222 205990|0.27778 205991|0.26389 205992|0.25 205993|0.33333 205994|0.375 205995|0.72222 205996|0.15278 205997|0.51389 205998|0.5 205999|0.44444 206000|0.51389 206001|0.48611 206002|0.30556 206003|0.55556 206004|0.41667 206005|0.48611 206006|0.75 206007|0.44444 206008|0.48611 206009|0.5 206010|0.47222 206011|0.41667 206012|0.5 206013|0.41667 206014|0.27778 206015|0.27778 206016|0.27778 206017|0.43056 206018|0.22222 206019|0.59722 206020|0.44444 206021|0.33333 206022|0.5 206023|0.54167 206024|0.30556 206025|0.59722 206026|0.5 206027|0.48611 206028|0.33333 206029|0.26389 206030|0.51389 206031|0.27778 206032|0.625 206033|0.65278 206034|0.38889 206035|0.29167 206036|0.54167 206037|0.5 206038|0.44444 206039|0.51389 206040|0.5 206041|0.40278 206042|0.68056 206043|0.47222 206044|0.33333 206045|0.5 206046|0.5 206047|0.45833 206048|0.45833 206049|0.34722 206050|0.40278 206051|0.38889 206052|0.47222 206053|0.41667 206054|0.41667 206055|0.38889 206056|0.20833 206057|0.23611 206058|0.26389 206059|0.38889 206060|0.19444 206061|0.22222 206062|0.34722 206063|0.22222 206064|0.16667 206065|0.31944 206066|0.18056 206067|0.27778 206068|0.16667 206069|0.5 206070|0.625 206071|0.44444 206072|0.81944 206073|0.5 206074|0.44444 206075|0.55556 206076|0.5 206077|0.31944 206078|0.16667 206079|0.16667 206080|0.16667 206081|0.33333 206082|0.5 206083|0.47222 206084|0.56944 206085|0.44444 206086|0.5 206087|0.5 206088|0.58333 206089|0.27778 206090|0.38889 206091|0.5 206092|0.5 206093|0.5 206094|0.5 206095|0.55556 206096|0.5 206097|0.41667 206098|0.5 206099|0.45833 206100|0.25 206101|0.15278 206102|0.22222 206103|0.44444 206104|0.23611 206105|0.34722 206106|0.48611 206107|0.29167 206108|0.27778 206109|0.5 206110|0.48611 206111|0.48611 206112|0.625 206113|0.47222 206114|0.20833 206115|0.26389 206116|0.48611 206117|0.31944 206118|0.69444 206119|0.61111 206120|0.55556 206121|0.55556 206122|0.59722 206123|0.44444 206124|0.59722 206125|0.47222 206126|0.45833 206127|0.54167 206128|0.22222 206129|0.18056 206130|0.41667 206131|0.5 206132|0.54167 206133|0.41667 206134|0.48611 206135|0.54167 206136|0.44444 206137|0.51389 206138|0.63889 206139|0.27778 206140|0.38889 206141|0.5 206142|0.52778 206143|0.22222 206144|0.23611 206145|0.44444 206146|0.5 206147|0.5 206148|0.38889 206149|0.38889 206150|0.31944 206151|0.41667 206152|0.54167 206153|0.38889 206154|0.26389 206155|0.375 206156|0.375 206157|0.55556 206158|0.44444 206159|0.52778 206160|0.47222 206161|0.43056 206162|0.31944 206163|0.58333 206164|0.27778 206165|0.11111 206166|0.44444 206167|0.38889 206168|0.41667 206169|0.33333 206170|0.41667 206171|0.5 206172|0.23611 206173|0.16667 206174|0.25 206175|0.375 206176|0.33333 206177|0.47222 206178|0.5 206179|0.5 206180|0.51389 206181|0.54167 206182|0.44444 206183|0.34722 206184|0.34722 206185|0.055556 206186|0.19444 206187|0 206188|0.38889 206189|0.22222 206190|0.20833 206191|0.19444 206192|0.33333 206193|0.5 206194|0.40278 206195|0.375 206196|0.77778 206197|0.51389 206198|0.51389 206199|0.51389 206200|0.5 206201|0.55556 206202|0.5 206203|0.5 206204|0.41667 206205|0.36111 206206|0.33333 206207|0.625 206208|0.41667 206209|0.40278 206210|0.38889 206211|0.58333 206212|0.5 206213|0.5 206214|0.76389 206215|0.59722 206216|0.61111 206217|0.68056 206218|0.5 206219|0.58333 206220|0.38889 206221|0.38889 206222|0.44444 206223|0.5 206224|0.19444 206225|0.16667 206226|0.25 206227|0.45833 206228|0.16667 206229|0.27778 206230|0.23611 206231|0.23611 206232|0 206233|0.18056 206234|0.30556 206235|0.25 206236|0.51389 206237|0.26389 206238|0.30556 206239|0.375 206240|0.29167 206241|0.56944 206242|0.26389 206243|0.22222 206244|0.41667 206245|0.26389 206246|0.23611 206247|0.5 206248|0.65278 206249|0.36111 206250|0.43056 206251|0.41667 206252|0.5 206253|0.27778 206254|0.23611 206255|0.5 206256|0.18056 206257|0.38889 206258|0.5 206259|0.45833 206260|0.36111 206261|0.30556 206262|0.44444 206263|0.38889 206264|0.44444 206265|0.44444 206266|0.29167 206267|0.66667 206268|0.47222 206269|0.34722 206270|0.43056 206271|0.40278 206272|0.33333 206273|0.5 206274|0.41667 206275|0.18056 206276|0.69444 206277|0.5 206278|0.54167 206279|0.5 206280|0.47222 206281|0.51389 206282|0.5 206283|0.54167 206284|0.5 206285|0.58333 206286|0.44444 206287|0.5 206288|0.73611 206289|0.38889 206290|0.61111 206291|0.56944 206292|0.51389 206293|0.61111 206294|0.33333 206295|0.23611 206296|0.56944 206297|0.5 206298|0.36111 206299|0.5 206300|0.38889 206301|0.5 206302|0.77778 206303|0.48611 206304|0.5 206305|0.61111 206306|0.52778 206307|0.5 206308|0.26389 206309|0.5 206310|0.5 206311|0.5 206312|0.30556 206313|0.5 206314|0.5 206315|0.59722 206316|0.58333 206317|0.36111 206318|0.55556 206319|0.66667 206320|0.5 206321|0.5 206322|0.84722 206323|0.44444 206324|0.5 206325|0.44444 206326|0.44444 206327|0.44444 206328|0.44444 206329|0.51389 206330|0.44444 206331|0.61111 206332|0.47222 206333|0.45833 206334|0.38889 206335|0.56944 206336|0.027778 206337|0.5 206338|0.77778 206339|0.36111 206340|0.375 206341|0.33333 206342|0.36111 206343|0.375 206344|0.38889 206345|0.44444 206346|0.5 206347|0.31944 206348|0.45833 206349|0.52778 206350|0.23611 206351|0.52778 206352|0.75 206353|0.43056 206354|0.34722 206355|0.375 206356|0.33333 206357|0.48611 206358|0.19444 206359|0.25 206360|0.59722 206361|0.26389 206362|0.5 206363|0.56944 206364|0.58333 206365|0.65278 206366|0.41667 206367|0.41667 206368|0.43056 206369|0.23611 206370|0.55556 206371|0.45833 206372|0.375 206373|0.44444 206374|0.55556 206375|0.56944 206376|0.58333 206377|0.70833 206378|0.68056 206379|0.51389 206380|0.72222 206381|0.66667 206382|0.65278 206383|0.63889 206384|0.52778 206385|0.61111 206386|0.22222 206387|0.52778 206388|0.66667 206389|0.45833 206390|0.34722 206391|0.26389 206392|0.54167 206393|0.61111 206394|0.45833 206395|0.5 206396|0.47222 206397|0.15278 206398|0.55556 206399|0.44444 206400|0.45833 206401|0.38889 206402|0.23611 206403|0.33333 206404|0.23611 206405|0.43056 206406|0.22222 206407|0.45833 206408|0.52778 206409|0.5 206410|0.5 206411|0.27778 206412|0.34722 206413|0.52778 206414|0.5 206415|0.51389 206416|0.41667 206417|0.5 206418|0.48611 206419|0.56944 206420|0.56944 206421|0.51389 206422|0.44444 206423|0.5 206424|0.47222 206425|0.5 206426|0.45833 206427|0.5 206428|0.5 206429|0.52778 206430|0.34722 206431|0.33333 206432|0.52778 206433|0.63889 206434|0.59722 206435|0.69444 206436|0.44444 206437|0.23611 206438|0.20833 206439|0.41667 206440|0.38889 206441|0.66667 206442|0.61111 206443|0.55556 206444|0.23611 206445|0.41667 206446|0.55556 206447|0.31944 206448|0.5 206449|0.36111 206450|0.22222 206451|0.51389 206452|0.70833 206453|0.77778 206454|0.58333 206455|0.27778 206456|0.65278 206457|0.47222 206458|0.41667 206459|0.29167 206460|0.51389 206461|0.72222 206462|0.54167 206463|0.41667 206464|0.48611 206465|0.48611 206466|0.36111 206467|0.38889 206468|0.61111 206469|0.27778 206470|0.73611 206471|0.65278 206472|0.5 206473|0.375 206474|0.5 206475|0.5 206476|0.48611 206477|0.40278 206478|0.33333 206479|0.375 206480|0.45833 206481|0.38889 206482|0.56944 206483|0.625 206484|0.34722 206485|0.5 206486|0.48611 206487|0.5 206488|0.5 206489|0.51389 206490|0.55556 206491|0.375 206492|0.5 206493|0.48611 206494|0.52778 206495|0.70833 206496|0.33333 206497|0.30556 206498|0.13889 206499|0.33333 206500|0.16667 206501|0.33333 206502|0.51389 206503|0.76389 206504|0.18056 206505|0.26389 206506|0.18056 206507|0.44444 206508|0.5 206509|0.20833 206510|0.25 206511|0.43056 206512|0.55556 206513|0.47222 206514|0.16667 206515|0.18056 206516|0.36111 206517|0.26389 206518|0.30556 206519|0.33333 206520|0.41667 206521|0.44444 206522|0.51389 206523|0.5 206524|0.72222 206525|0.5 206526|0.51389 206527|0.43056 206528|0.48611 206529|0.5 206530|0.40278 206531|0.5 206532|0.5 206533|0.38889 206534|0.20833 206535|0.20833 206536|0.20833 206537|0.23611 206538|0.18056 206539|0.23611 206540|0.25 206541|0.55556 206542|0.44444 206543|0.41667 206544|0.43056 206545|0.625 206546|0.30556 206547|0.44444 206548|0.58333 206549|0.31944 206550|0.33333 206551|0.33333 206552|0.33333 206553|0.16667 206554|0.52778 206555|0.5 206556|0.29167 206557|0.29167 206558|0.41667 206559|0.36111 206560|0.5 206561|0.5 206562|0.5 206563|0.44444 206564|0.52778 206565|0.30556 206566|0.29167 206567|0.40278 206568|0.20833 206569|0.23611 206570|0.22222 206571|0.5 206572|0.5 206573|0.5 206574|0.41667 206575|0.48611 206576|0.5 206577|0.44444 206578|0.5 206579|0.36111 206580|0.65278 206581|0.5 206582|0.38889 206583|0.5 206584|0.58333 206585|0.30556 206586|0.63889 206587|0.70833 206588|0.40278 206589|0.44444 206590|0.40278 206591|0.43056 206592|0.27778 206593|0.5 206594|0.5 206595|0.5 206596|0.5 206597|0.48611 206598|0.45833 206599|0.59722 206600|0.52778 206601|0.61111 206602|0.52778 206603|0.5 206604|0.47222 206605|0.23611 206606|0.5 206607|0.5 206608|0.38889 206609|0.5 206610|0.375 206611|0.25 206612|0.54167 206613|0.5 206614|0.5 206615|0.5 206616|0.33333 206617|0.43056 206618|0.51389 206619|0.52778 206620|0.5 206621|0.55556 206622|0.76389 206623|0.54167 206624|0.33333 206625|0.48611 206626|0.63889 206627|0.54167 206628|0.54167 206629|0.55556 206630|0.63889 206631|0.5 206632|0.5 206633|0.5 206634|0.5 206635|0.48611 206636|0.5 206637|0.70833 206638|0.66667 206639|0.44444 206640|0.34722 206641|0.73611 206642|0.59722 206643|0.13889 206644|0.5 206645|0.5 206646|0.5 206647|0.30556 206648|0.27778 206649|0.58333 206650|0.5 206651|0.625 206652|0.65278 206653|0.5 206654|0.25 206655|0.5 206656|0.70833 206657|0.55556 206658|0.38889 206659|0.5 206660|0.58333 206661|0.48611 206662|0.83333 206663|0.61111 206664|0.56944 206665|0.51389 206666|0.45833 206667|0.55556 206668|0.5 206669|0.52778 206670|0.33333 206671|0.5 206672|0.5 206673|0.5 206674|0.625 206675|0.5 206676|0.73611 206677|0.36111 206678|0.61111 206679|0.44444 206680|0.63889 206681|0.5 206682|0.40278 206683|0.375 206684|0.54167 206685|0.34722 206686|0.44444 206687|0.625 206688|0.55556 206689|0.5 206690|0.56944 206691|0.77778 206692|0.54167 206693|0.26389 206694|0.31944 206695|0.68056 206696|0.5 206697|0.31944 206698|0.5 206699|0.51389 206700|0.097222 206701|0.30556 206702|0.22222 206703|0.61111 206704|0.34722 206705|0.29167 206706|0.25 206707|0.36111 206708|0.375 206709|0.44444 206710|0.30556 206711|0.68056 206712|0.55556 206713|0.43056 206714|0.26389 206715|0.30556 206716|0.44444 206717|0.31944 206718|0.29167 206719|0.18056 206720|0.54167 206721|0.63889 206722|0.43056 206723|0.5 206724|0.5 206725|0.5 206726|0.61111 206727|0.54167 206728|0.22222 206729|0.59722 206730|0.18056 206731|0.38889 206732|0.44444 206733|0.33333 206734|0.52778 206735|0.18056 206736|0.15278 206737|0.56944 206738|0.5 206739|0.43056 206740|0.44444 206741|0.22222 206742|0.45833 206743|0.26389 206744|0.23611 206745|0.34722 206746|0.44444 206747|0.31944 206748|0.38889 206749|0.5 206750|0.44444 206751|0.38889 206752|0.41667 206753|0.5 206754|0.5 206755|0.54167 206756|0.51389 206757|0.5 206758|0.45833 206759|0.20833 206760|0.5 206761|0.76389 206762|0.81944 206763|0.80556 206764|0.5 206765|0.51389 206766|0.30556 206767|0.5 206768|0.47222 206769|0.16667 206770|0.5 206771|0.33333 206772|0.5 206773|0.15278 206774|0.59722 206775|0.55556 206776|0.5 206777|0.27778 206778|0.56944 206779|0.5 206780|0.38889 206781|0.61111 206782|0.63889 206783|0.61111 206784|0.38889 206785|0.25 206786|0.55556 206787|0.5 206788|0.5 206789|0.55556 206790|0.5 206791|0.51389 206792|0.18056 206793|0.25 206794|0.44444 206795|0.375 206796|0.5 206797|0.47222 206798|0.55556 206799|0.40278 206800|0.5 206801|0.5 206802|0.58333 206803|0.38889 206804|0.51389 206805|0.13889 206806|0.47222 206807|0.33333 206808|0.41667 206809|0.27778 206810|0.5 206811|0.5 206812|0.27778 206813|0.66667 206814|0.55556 206815|0.59722 206816|0.5 206817|0.61111 206818|0.47222 206819|0.48611 206820|0.48611 206821|0.48611 206822|0.25 206823|0.27778 206824|0.48611 206825|0.5 206826|0.56944 206827|0.375 206828|0.5 206829|0.58333 206830|0.11111 206831|0.41667 206832|0.47222 206833|0.5 206834|0.51389 206835|0.55556 206836|0.27778 206837|0.56944 206838|0.59722 206839|0.44444 206840|0.5 206841|0.51389 206842|0.58333 206843|0.33333 206844|0.27778 206845|0.34722 206846|0.5 206847|0.59722 206848|0.48611 206849|0.75 206850|0.68056 206851|0.44444 206852|0.18056 206853|0.48611 206854|0.5 206855|0.47222 206856|0.30556 206857|0.44444 206858|0.069444 206859|0.66667 206860|0.47222 206861|0.5 206862|0.20833 206863|0.38889 206864|0.23611 206865|0.26389 206866|0.48611 206867|0.51389 206868|0.5 206869|0.43056 206870|0.30556 206871|0.44444 206872|0.5 206873|0.38889 206874|0.51389 206875|0.375 206876|0.55556 206877|0.33333 206878|0.34722 206879|0.47222 206880|0.33333 206881|0.47222 206882|0.5 206883|0.23611 206884|0.36111 206885|0.23611 206886|0.44444 206887|0.61111 206888|0.625 206889|0.29167 206890|0.5 206891|0.27778 206892|0.33333 206893|0.26389 206894|0.36111 206895|0.33333 206896|0.5 206897|0.22222 206898|0.26389 206899|0.5 206900|0.40278 206901|0.40278 206902|0.52778 206903|0.38889 206904|0.43056 206905|0.29167 206906|0.34722 206907|0.5 206908|0.34722 206909|0.31944 206910|0.52778 206911|0.51389 206912|0.31944 206913|0.45833 206914|0.5 206915|0.27778 206916|0.48611 206917|0.47222 206918|0.13889 206919|0.13889 206920|0.25 206921|0.72222 206922|0.30556 206923|0.16667 206924|0.27778 206925|0.33333 206926|0.38889 206927|0.44444 206928|0.20833 206929|0.33333 206930|0.34722 206931|0.54167 206932|0.26389 206933|0.26389 206934|0.31944 206935|0.31944 206936|0.27778 206937|0.27778 206938|0.625 206939|0.44444 206940|0.27778 206941|0.40278 206942|0.26389 206943|0.40278 206944|0.43056 206945|0.22222 206946|0.45833 206947|0.375 206948|0.36111 206949|0.41667 206950|0.19444 206951|0.59722 206952|0.65278 206953|0.66667 206954|0.5 206955|0.54167 206956|0.63889 206957|0.58333 206958|0.61111 206959|0.5 206960|0.80556 206961|0.29167 206962|0.51389 206963|0.5 206964|0.76389 206965|0.5 206966|0.56944 206967|0.52778 206968|0.55556 206969|0.44444 206970|0.55556 206971|0.58333 206972|0.5 206973|0.51389 206974|0.56944 206975|0.5 206976|0.5 206977|0.5 206978|0.65278 206979|0.58333 206980|0.45833 206981|0.72222 206982|0.75 206983|0.79167 206984|0.68056 206985|0.63889 206986|0.5 206987|0.5 206988|0.625 206989|0.36111 206990|0.48611 206991|0.5 206992|0.61111 206993|0.44444 206994|0.41667 206995|0.41667 206996|0.375 206997|0.44444 206998|0.5 206999|0.34722 207000|0.29167 207001|0.55556 207002|0.55556 207003|0.5 207004|0.34722 207005|0.41667 207006|0.45833 207007|0.61111 207008|0.22222 207009|0.22222 207010|0.19444 207011|0.11111 207012|0.083333 207013|0.13889 207014|0.29167 207015|0.125 207016|0.22222 207017|0.36111 207018|0.13889 207019|0.30556 207020|0.31944 207021|0.31944 207022|0.54167 207023|0.41667 207024|0.5 207025|0.20833 207026|0.30556 207027|0.44444 207028|0.041667 207029|0.48611 207030|0.69444 207031|0.27778 207032|0.40278 207033|0.38889 207034|0.47222 207035|0.375 207036|0.22222 207037|0.5 207038|0.5 207039|0.36111 207040|0.29167 207041|0.20833 207042|0.27778 207043|0.5 207044|0.5 207045|0.19444 207046|0.33333 207047|0.375 207048|0.27778 207049|0.43056 207050|0.20833 207051|0.45833 207052|0.33333 207053|0.45833 207054|0.47222 207055|0.30556 207056|0.5 207057|0.59722 207058|0.61111 207059|0.31944 207060|0.48611 207061|0.5 207062|0.40278 207063|0.44444 207064|0.33333 207065|0.52778 207066|0.5 207067|0.45833 207068|0.5 207069|0.34722 207070|0.41667 207071|0.22222 207072|0.23611 207073|0.55556 207074|0.47222 207075|0.23611 207076|0.5 207077|0.5 207078|0.20833 207079|0.36111 207080|0.29167 207081|0.5 207082|0.66667 207083|0.48611 207084|0.27778 207085|0.58333 207086|0.33333 207087|0.55556 207088|0.33333 207089|0.43056 207090|0.30556 207091|0.29167 207092|0.25 207093|0.18056 207094|0.61111 207095|0.44444 207096|0.375 207097|0.30556 207098|0.36111 207099|0.15278 207100|0.027778 207101|0.44444 207102|0.20833 207103|0.29167 207104|0.26389 207105|0.18056 207106|0.375 207107|0.5 207108|0.43056 207109|0.5 207110|0.54167 207111|0.38889 207112|0.30556 207113|0.31944 207114|0.19444 207115|0.25 207116|0.59722 207117|0.44444 207118|0.22222 207119|0.25 207120|0.34722 207121|0.36111 207122|0.38889 207123|0.30556 207124|0.69444 207125|0.34722 207126|0.29167 207127|0.80556 207128|0.72222 207129|0.47222 207130|0.44444 207131|0.43056 207132|0.5 207133|0.5 207134|0.55556 207135|0.33333 207136|0.16667 207137|0.86111 207138|0.22222 207139|0.40278 207140|0.30556 207141|0.25 207142|0.30556 207143|0.30556 207144|0.29167 207145|0.29167 207146|0.22222 207147|0.33333 207148|0.29167 207149|0.41667 207150|0.22222 207151|0.36111 207152|0.29167 207153|0.34722 207154|0.29167 207155|0.31944 207156|0.44444 207157|0.22222 207158|0.26389 207159|0.30556 207160|0.38889 207161|0.33333 207162|0.45833 207163|0.45833 207164|0.34722 207165|0.31944 207166|0.18056 207167|0.5 207168|0.5 207169|0.23611 207170|0.44444 207171|0.20833 207172|0.55556 207173|0.5 207174|0.52778 207175|0.41667 207176|0.48611 207177|0.22222 207178|0.34722 207179|0.19444 207180|0.40278 207181|0.44444 207182|0.47222 207183|0.34722 207184|0.52778 207185|0.51389 207186|0.23611 207187|0.59722 207188|0.40278 207189|0.375 207190|0.625 207191|0.5 207192|0.23611 207193|0.26389 207194|0.20833 207195|0.5 207196|0.27778 207197|0.54167 207198|0.34722 207199|0.45833 207200|0.72222 207201|0.5 207202|0.30556 207203|0.5 207204|0.33333 207205|0.18056 207206|0.18056 207207|0.36111 207208|0.36111 207209|0.375 207210|0.30556 207211|0.20833 207212|0.44444 207213|0.48611 207214|0.61111 207215|0.45833 207216|0.36111 207217|0.41667 207218|0.45833 207219|0.48611 207220|0.5 207221|0.58333 207222|0.29167 207223|0.45833 207224|0.33333 207225|0.375 207226|0.33333 207227|0.65278 207228|0.63889 207229|0.41667 207230|0.375 207231|0.43056 207232|0.5 207233|0.44444 207234|0.48611 207235|0.54167 207236|0.41667 207237|0.36111 207238|0.5 207239|0.5 207240|0.29167 207241|0.26389 207242|0.47222 207243|0.47222 207244|0.33333 207245|0.33333 207246|0.23611 207247|0.44444 207248|0.23611 207249|0.5 207250|0.54167 207251|0.15278 207252|0.15278 207253|0.34722 207254|0.33333 207255|0.40278 207256|0.33333 207257|0.31944 207258|0.22222 207259|0.29167 207260|0.36111 207261|0.55556 207262|0.48611 207263|0.44444 207264|0.31944 207265|0.33333 207266|0.59722 207267|0.38889 207268|0.30556 207269|0.33333 207270|0.5 207271|0.44444 207272|0.375 207273|0.55556 207274|0.56944 207275|0.33333 207276|0.59722 207277|0.5 207278|0.55556 207279|0.51389 207280|0.5 207281|0.58333 207282|0.38889 207283|0.47222 207284|0.41667 207285|0.41667 207286|0.34722 207287|0.44444 207288|0.41667 207289|0.29167 207290|0.56944 207291|0.65278 207292|0.5 207293|0.77778 207294|0.5 207295|0.30556 207296|0.31944 207297|0.48611 207298|0.5 207299|0.27778 207300|0.31944 207301|0.22222 207302|0.16667 207303|0.11111 207304|0.5 207305|0.56944 207306|0.36111 207307|0.5 207308|0.55556 207309|0.61111 207310|0.5 207311|0.48611 207312|0.5 207313|0.5 207314|0.41667 207315|0.40278 207316|0.44444 207317|0.44444 207318|0.51389 207319|0.055556 207320|0.20833 207321|0.25 207322|0.38889 207323|0.38889 207324|0.36111 207325|0.65278 207326|0.5 207327|0.5 207328|0.45833 207329|0.375 207330|0.44444 207331|0.5 207332|0.51389 207333|0.61111 207334|0.15278 207335|0.51389 207336|0.31944 207337|0.25 207338|0.38889 207339|0.36111 207340|0.44444 207341|0.48611 207342|0.51389 207343|0.70833 207344|0.40278 207345|0.55556 207346|0.68056 207347|0.38889 207348|0.625 207349|0.54167 207350|0.41667 207351|0.65278 207352|0.375 207353|0.55556 207354|0.44444 207355|0.41667 207356|0.055556 207357|0.47222 207358|0.45833 207359|0.43056 207360|0.5 207361|0.51389 207362|0.26389 207363|0.65278 207364|0.41667 207365|0.5 207366|0.5 207367|0.73611 207368|0.56944 207369|0.5 207370|0.5 207371|0.5 207372|0.5 207373|0.5 207374|0.5 207375|0.5 207376|0.5 207377|0.54167 207378|0.625 207379|0.5 207380|0.41667 207381|0.59722 207382|0.5 207383|0.5 207384|0.5 207385|0.5 207386|0.52778 207387|0.34722 207388|0.5 207389|0.5 207390|0.52778 207391|0.5 207392|0.5 207393|0.5 207394|0.5 207395|0.66667 207396|0.375 207397|0.5 207398|0.48611 207399|0.54167 207400|0.5 207401|0.5 207402|0.41667 207403|0.43056 207404|0.45833 207405|0.56944 207406|0.5 207407|0.5 207408|0.26389 207409|0.44444 207410|0.5 207411|0.66667 207412|0.63889 207413|0.54167 207414|0.5 207415|0.72222 207416|0.51389 207417|0.36111 207418|0.51389 207419|0.61111 207420|0.5 207421|0.5 207422|0.52778 207423|0.5 207424|0.5 207425|0.5 207426|0.26389 207427|0.5 207428|0.5 207429|0.33333 207430|0.5 207431|0.44444 207432|0.66667 207433|0.5 207434|0.59722 207435|0.38889 207436|0.66667 207437|0.38889 207438|0.47222 207439|0.45833 207440|0.5 207441|0.5 207442|0.5 207443|0.47222 207444|0.36111 207445|0.5 207446|0.5 207447|0.54167 207448|0.5 207449|0.5 207450|0.33333 207451|0.55556 207452|0.33333 207453|0.36111 207454|0.47222 207455|0.44444 207456|0.48611 207457|0.5 207458|0.55556 207459|0.5 207460|0.55556 207461|0.5 207462|0.55556 207463|0.5 207464|0.5 207465|0.63889 207466|0.55556 207467|0.5 207468|0.5 207469|0.48611 207470|0.54167 207471|0.5 207472|0.5 207473|0.59722 207474|0.51389 207475|0.55556 207476|0.5 207477|0.56944 207478|0.5 207479|0.5 207480|0.26389 207481|0.47222 207482|0.5 207483|0.5 207484|0.41667 207485|0.5 207486|0.5 207487|0.44444 207488|0.56944 207489|0.5 207490|0.5 207491|0.5 207492|0.34722 207493|0.5 207494|0.5 207495|0.31944 207496|0.5 207497|0.65278 207498|0.51389 207499|0.11111 207500|0.48611 207501|0.31944 207502|0.48611 207503|0.26389 207504|0.59722 207505|0.5 207506|0.5 207507|0.5 207508|0.52778 207509|0.55556 207510|0.75 207511|0.23611 207512|0.51389 207513|0.5 207514|0.625 207515|0.51389 207516|0.625 207517|0.5 207518|0.5 207519|0.18056 207520|0.5 207521|0.5 207522|0.56944 207523|0.48611 207524|0.5 207525|0.51389 207526|0.44444 207527|0.45833 207528|0.5 207529|0.38889 207530|0.5 207531|0.625 207532|0.5 207533|0.5 207534|0.36111 207535|0.11111 207536|0.83333 207537|0.77778 207538|0.66667 207539|0.66667 207540|0.55556 207541|0.61111 207542|0.5 207543|0.55556 207544|0.40278 207545|0.51389 207546|0.55556 207547|0.38889 207548|0.47222 207549|0.52778 207550|0.22222 207551|0.5 207552|0.19444 207553|0.55556 207554|0.69444 207555|0.31944 207556|0.33333 207557|0.33333 207558|0.22222 207559|0.51389 207560|0.5 207561|0.47222 207562|0.5 207563|0.56944 207564|0.75 207565|0.55556 207566|0.5 207567|0.45833 207568|0.5 207569|0.44444 207570|0.23611 207571|0.65278 207572|0.29167 207573|0.51389 207574|0.26389 207575|0.61111 207576|0.45833 207577|0.44444 207578|0.5 207579|0.5 207580|0.38889 207581|0.65278 207582|0.5 207583|0.43056 207584|0.41667 207585|0.55556 207586|0.5 207587|0.30556 207588|0.48611 207589|0.097222 207590|0.5 207591|0.34722 207592|0.48611 207593|0.47222 207594|0.30556 207595|0.055556 207596|0.34722 207597|0.5 207598|0.59722 207599|0.44444 207600|0.61111 207601|0.40278 207602|0.5 207603|0.22222 207604|0.44444 207605|0.68056 207606|0.41667 207607|0.5 207608|0.45833 207609|0.72222 207610|0.69444 207611|0.47222 207612|0.33333 207613|0.31944 207614|0.5 207615|0.18056 207616|0.5 207617|0.5 207618|0.66667 207619|0.55556 207620|0.56944 207621|0.5 207622|0.44444 207623|0.25 207624|0.55556 207625|0.13889 207626|0.33333 207627|0.56944 207628|0.63889 207629|0.45833 207630|0.5 207631|0.75 207632|0.34722 207633|0.48611 207634|0.40278 207635|0.29167 207636|0.40278 207637|0.16667 207638|0.38889 207639|0.31944 207640|0.68056 207641|0.70833 207642|0.45833 207643|0.5 207644|0.51389 207645|0.51389 207646|0.5 207647|0.26389 207648|0.66667 207649|0.44444 207650|0.5 207651|0.5 207652|0.22222 207653|0.63889 207654|0.25 207655|0.63889 207656|0.63889 207657|0.34722 207658|0.33333 207659|0.13889 207660|0.40278 207661|0.48611 207662|0.25 207663|0.5 207664|0.55556 207665|0.59722 207666|0.63889 207667|0.44444 207668|0.31944 207669|0.5 207670|0.33333 207671|0.51389 207672|0.38889 207673|0.48611 207674|0.30556 207675|0.29167 207676|0.44444 207677|0.75 207678|0.77778 207679|0.47222 207680|0.65278 207681|0.22222 207682|0.45833 207683|0.63889 207684|0.45833 207685|0.69444 207686|0.26389 207687|0.61111 207688|0.33333 207689|0.61111 207690|0.72222 207691|0.5 207692|0.22222 207693|0.5 207694|0.5 207695|0.63889 207696|0.48611 207697|0.5 207698|0.61111 207699|0.44444 207700|0.52778 207701|0.29167 207702|0.5 207703|0.5 207704|0.5 207705|0.33333 207706|0.5 207707|0.11111 207708|0.5 207709|0.55556 207710|0.23611 207711|0.5 207712|0.5 207713|0.5 207714|0.5 207715|0.48611 207716|0.41667 207717|0.5 207718|0.56944 207719|0.45833 207720|0.23611 207721|0.48611 207722|0.40278 207723|0.11111 207724|0.63889 207725|0.58333 207726|0.59722 207727|0.5 207728|0.47222 207729|0.20833 207730|0.5 207731|0.375 207732|0.5 207733|0.56944 207734|0.34722 207735|0.44444 207736|0.23611 207737|0.33333 207738|0.19444 207739|0.47222 207740|0.63889 207741|0.5 207742|0.45833 207743|0.5 207744|0.41667 207745|0.38889 207746|0.55556 207747|0.55556 207748|0.5 207749|0.69444 207750|0.66667 207751|0.69444 207752|0.66667 207753|0.34722 207754|0.58333 207755|0.51389 207756|0.5 207757|0.43056 207758|0.48611 207759|0.27778 207760|0.31944 207761|0.25 207762|0.38889 207763|0.5 207764|0.5 207765|0.5 207766|0.51389 207767|0.66667 207768|0.625 207769|0.58333 207770|0.58333 207771|0.55556 207772|0.5 207773|0.56944 207774|0.33333 207775|0.5 207776|0.55556 207777|0.5 207778|0.5 207779|0.47222 207780|0.5 207781|0.27778 207782|0.65278 207783|0.5 207784|0.5 207785|0.40278 207786|0.5 207787|0.55556 207788|0.41667 207789|0.625 207790|0.47222 207791|0.38889 207792|0.5 207793|0.51389 207794|0.38889 207795|0.52778 207796|0.55556 207797|0.5 207798|0.41667 207799|0.20833 207800|0.26389 207801|0.55556 207802|0.5 207803|0.63889 207804|0.33333 207805|0.58333 207806|0.69444 207807|0.38889 207808|0.61111 207809|0.55556 207810|0.56944 207811|0.38889 207812|0.54167 207813|0.59722 207814|0.5 207815|0.5 207816|0.5 207817|0.5 207818|0.11111 207819|0.76389 207820|0.44444 207821|0.41667 207822|0.5 207823|0.58333 207824|0.36111 207825|0.5 207826|0.40278 207827|0.72222 207828|0.5 207829|0.5 207830|0.43056 207831|0.47222 207832|0.5 207833|0.81944 207834|0.29167 207835|0.41667 207836|0.47222 207837|0.63889 207838|0.15278 207839|0.27778 207840|0.5 207841|0.55556 207842|0.5 207843|0.63889 207844|0.52778 207845|0.19444 207846|0.375 207847|0.54167 207848|0.52778 207849|0.41667 207850|0.55556 207851|0.36111 207852|0.5 207853|0.5 207854|0.625 207855|0.5 207856|0.25 207857|0.5 207858|0.51389 207859|0.44444 207860|0.75 207861|0.5 207862|0.55556 207863|0.58333 207864|0.5 207865|0.5 207866|0.55556 207867|0.58333 207868|0.22222 207869|0.375 207870|0.5 207871|0.36111 207872|0.66667 207873|0.63889 207874|0.59722 207875|0.66667 207876|0.51389 207877|0.69444 207878|0.5 207879|0.5 207880|0.51389 207881|0.19444 207882|0.5 207883|0.5 207884|0.5 207885|0.26389 207886|0.47222 207887|0.59722 207888|0.30556 207889|0.5 207890|0.55556 207891|0.51389 207892|0.5 207893|0.45833 207894|0.40278 207895|0.5 207896|0.5 207897|0.5 207898|0.5 207899|0.375 207900|0.29167 207901|0.5 207902|0.5 207903|0.5 207904|0.15278 207905|0.58333 207906|0.5 207907|0.51389 207908|0.61111 207909|0.68056 207910|0.5 207911|0.33333 207912|0.54167 207913|0.44444 207914|0.5 207915|0.38889 207916|0.5 207917|0.5 207918|0.5 207919|0.61111 207920|0.56944 207921|0.5 207922|0.5 207923|0.54167 207924|0.72222 207925|0.25 207926|0.5 207927|0.44444 207928|0.5 207929|0.56944 207930|0.38889 207931|0.5 207932|0.44444 207933|0.51389 207934|0.69444 207935|0.5 207936|0.48611 207937|0.27778 207938|0.61111 207939|0.33333 207940|0.5 207941|0.48611 207942|0.5 207943|0.375 207944|0.5 207945|0.70833 207946|0.61111 207947|0.73611 207948|0.55556 207949|0.31944 207950|0.58333 207951|0.5 207952|0.5 207953|0.38889 207954|0.44444 207955|0.40278 207956|0.38889 207957|0.59722 207958|0.26389 207959|0.55556 207960|0.44444 207961|0.47222 207962|0.29167 207963|0.375 207964|0.5 207965|0.5 207966|0.34722 207967|0.51389 207968|0.48611 207969|0.58333 207970|0.38889 207971|0.5 207972|0.52778 207973|0.63889 207974|0.36111 207975|0.5 207976|0.5 207977|0.47222 207978|0.5 207979|0.41667 207980|0.56944 207981|0.73611 207982|0.41667 207983|0.47222 207984|0.5 207985|0.30556 207986|0.375 207987|0.47222 207988|0.5 207989|0.68056 207990|0.5 207991|0.45833 207992|0.44444 207993|0.5 207994|0.56944 207995|0.625 207996|0.36111 207997|0.5 207998|0.41667 207999|0.52778 208000|0.5 208001|0.44444 208002|0.41667 208003|0.56944 208004|0.25 208005|0.5 208006|0.19444 208007|0.30556 208008|0.38889 208009|0.52778 208010|0.5 208011|0.625 208012|0.77778 208013|0.58333 208014|0.58333 208015|0.47222 208016|0.58333 208017|0.5 208018|0.5 208019|0.5 208020|0.48611 208021|0.5 208022|0.5 208023|0.55556 208024|0.47222 208025|0.66667 208026|0.5 208027|0.5 208028|0.5 208029|0.52778 208030|0.29167 208031|0.47222 208032|0.5 208033|0.5 208034|0.58333 208035|0.5 208036|0.41667 208037|0.55556 208038|0.5 208039|0.5 208040|0.44444 208041|0.5 208042|0.51389 208043|0.61111 208044|0.93056 208045|0.16667 208046|0.61111 208047|0.58333 208048|0.5 208049|0.45833 208050|0.5 208051|0.65278 208052|0.5 208053|0.45833 208054|0.5 208055|0.59722 208056|0.51389 208057|0.44444 208058|0.5 208059|0.5 208060|0.47222 208061|0.56944 208062|0.5 208063|0.51389 208064|0.68056 208065|0.52778 208066|0.45833 208067|0.41667 208068|0.5 208069|0.5 208070|0.48611 208071|0.5 208072|0.5 208073|0.5 208074|0.38889 208075|0.58333 208076|0.5 208077|0.68056 208078|0.43056 208079|0.33333 208080|0.52778 208081|0.33333 208082|0.86111 208083|0.44444 208084|0.33333 208085|0.36111 208086|0.55556 208087|0.5 208088|0.69444 208089|0.61111 208090|0.5 208091|0.5 208092|0.66667 208093|0.52778 208094|0.5 208095|0.5 208096|0.51389 208097|0.38889 208098|0.58333 208099|0.16667 208100|0.5 208101|0.5 208102|0.51389 208103|0.5 208104|0.41667 208105|0.30556 208106|0.27778 208107|0.22222 208108|0.19444 208109|0.16667 208110|0.26389 208111|0.30556 208112|0.5 208113|0.36111 208114|0.59722 208115|0.72222 208116|0.5 208117|0.33333 208118|0.5 208119|0.66667 208120|0.44444 208121|0.5 208122|0.41667 208123|0.65278 208124|0.44444 208125|0.5 208126|0.11111 208127|0.45833 208128|0.65278 208129|0.5 208130|0.51389 208131|0.56944 208132|0.29167 208133|0.56944 208134|0.5 208135|0.65278 208136|0.51389 208137|0.34722 208138|0.18056 208139|0.5 208140|0.5 208141|0.58333 208142|0.5 208143|0.56944 208144|0.52778 208145|0.5 208146|0.5 208147|0.29167 208148|0.5 208149|0.5 208150|0.5 208151|0.26389 208152|0.34722 208153|0.5 208154|0.34722 208155|0.44444 208156|0.11111 208157|0.44444 208158|0.33333 208159|0.22222 208160|0.083333 208161|0.22222 208162|0.125 208163|0 208164|0.31944 208165|0.23611 208166|0.097222 208167|0.22222 208168|0.5 208169|0.5 208170|0.38889 208171|0.5 208172|0.5 208173|0.40278 208174|0.5 208175|0.30556 208176|0.45833 208177|0.54167 208178|0.23611 208179|0.59722 208180|0.43056 208181|0.63889 208182|0.47222 208183|0.44444 208184|0.27778 208185|0.59722 208186|0.5 208187|0.33333 208188|0.40278 208189|0.66667 208190|0.48611 208191|0.5 208192|0.22222 208193|0.52778 208194|0.33333 208195|0.48611 208196|0.5 208197|0.375 208198|0.26389 208199|0.68056 208200|0.33333 208201|0.25 208202|0.68056 208203|0.52778 208204|0.38889 208205|0.5 208206|0.63889 208207|0.5 208208|0.33333 208209|0.41667 208210|0.47222 208211|0.5 208212|0.5 208213|0.44444 208214|0.5 208215|0.56944 208216|0.36111 208217|0.72222 208218|0.25 208219|0.58333 208220|0.31944 208221|0.22222 208222|0.26389 208223|0.40278 208224|0.30556 208225|0.63889 208226|0.38889 208227|0.54167 208228|0.27778 208229|0.41667 208230|0.25 208231|0.70833 208232|0.52778 208233|0.48611 208234|0.5 208235|0.47222 208236|0.61111 208237|0.51389 208238|0.45833 208239|0.5 208240|0.61111 208241|0.56944 208242|0.51389 208243|0.47222 208244|0.36111 208245|0.59722 208246|0.55556 208247|0.41667 208248|0.5 208249|0.51389 208250|0.59722 208251|0.5 208252|0.45833 208253|0.5 208254|0.5 208255|0.44444 208256|0.29167 208257|0.34722 208258|0.38889 208259|0.65278 208260|0.5 208261|0.5 208262|0.45833 208263|0.18056 208264|0.75 208265|0.34722 208266|0.44444 208267|0.20833 208268|0.5 208269|0.38889 208270|0.40278 208271|0.63889 208272|0.52778 208273|0.38889 208274|0.31944 208275|0.11111 208276|0.45833 208277|0.20833 208278|0.22222 208279|0.34722 208280|0.16667 208281|0.11111 208282|0.45833 208283|0.5 208284|0.43056 208285|0.5 208286|0.44444 208287|0.22222 208288|0.61111 208289|0.48611 208290|0.61111 208291|0.36111 208292|0.59722 208293|0.5 208294|0.52778 208295|0.44444 208296|0.52778 208297|0.875 208298|0.75 208299|0.72222 208300|0.5 208301|0.5 208302|0.55556 208303|0.31944 208304|0.26389 208305|0.20833 208306|0.40278 208307|0.5 208308|0.61111 208309|0.29167 208310|0.25 208311|0.11111 208312|0.45833 208313|0.66667 208314|0.69444 208315|0.58333 208316|0.58333 208317|0.5 208318|0.22222 208319|0.22222 208320|0.5 208321|0.44444 208322|0.34722 208323|0.55556 208324|0.36111 208325|0.29167 208326|0.5 208327|0.20833 208328|0.29167 208329|0.40278 208330|0.65278 208331|0.52778 208332|0.51389 208333|0.5 208334|0.375 208335|0.45833 208336|0.41667 208337|0.58333 208338|0.63889 208339|0.5 208340|0.52778 208341|0.43056 208342|0.36111 208343|0.33333 208344|0.45833 208345|0.375 208346|0.5 208347|0.16667 208348|0.20833 208349|0.44444 208350|0.48611 208351|0.16667 208352|0.41667 208353|0.52778 208354|0.44444 208355|0.375 208356|0.38889 208357|0.5 208358|0.5 208359|0.5 208360|0.44444 208361|0.5 208362|0.48611 208363|0.5 208364|0.41667 208365|0.36111 208366|0.59722 208367|0.51389 208368|0.40278 208369|0.61111 208370|0.38889 208371|0.51389 208372|0.45833 208373|0.40278 208374|0.5 208375|0.5 208376|0.45833 208377|0.5 208378|0.5 208379|0.52778 208380|0.43056 208381|0.66667 208382|0.5 208383|0.51389 208384|0.5 208385|0.56944 208386|0.45833 208387|0.66667 208388|0.38889 208389|0.5 208390|0.44444 208391|0.5 208392|0.5 208393|0.63889 208394|0.5 208395|0.33333 208396|0.59722 208397|0.5 208398|0.52778 208399|0.33333 208400|0.58333 208401|0.40278 208402|0.48611 208403|0.5 208404|0.25 208405|0.61111 208406|0.63889 208407|0.66667 208408|0.38889 208409|0.45833 208410|0.125 208411|0.5 208412|0.5 208413|0.48611 208414|0.5 208415|0.40278 208416|0.5 208417|0.51389 208418|0.5 208419|0.81944 208420|0.44444 208421|0.43056 208422|0.44444 208423|0.72222 208424|0.38889 208425|0.22222 208426|0.61111 208427|0.5 208428|0.5 208429|0.5 208430|0.22222 208431|0.375 208432|0.5 208433|0.5 208434|0.5 208435|0.5 208436|0.55556 208437|0.5 208438|0.5 208439|0.625 208440|0.5 208441|0.65278 208442|0.59722 208443|0.5 208444|0.44444 208445|0.55556 208446|0.51389 208447|0.5 208448|0.48611 208449|0.55556 208450|0.30556 208451|0.40278 208452|0.51389 208453|0.55556 208454|0.52778 208455|0.44444 208456|0.44444 208457|0.41667 208458|0.48611 208459|0.52778 208460|0.61111 208461|0.5 208462|0.54167 208463|0.5 208464|0.5 208465|0.5 208466|0.30556 208467|0.027778 208468|0.41667 208469|0.5 208470|0.5 208471|0.30556 208472|0.33333 208473|0.45833 208474|0.25 208475|0.56944 208476|0.5 208477|0.30556 208478|0.5 208479|0.44444 208480|0.5 208481|0.33333 208482|0.77778 208483|0.5 208484|0.5 208485|0.5 208486|0.5 208487|0.5 208488|0.5 208489|0.5 208490|0.52778 208491|0.5 208492|0.5 208493|0.5 208494|0.66667 208495|0.63889 208496|0.5 208497|0.47222 208498|0.36111 208499|0.48611 208500|0.33333 208501|0.5 208502|0.5 208503|0.55556 208504|0.5 208505|0.52778 208506|0.44444 208507|0.51389 208508|0.25 208509|0.5 208510|0.44444 208511|0.55556 208512|0.31944 208513|0.66667 208514|0.44444 208515|0.58333 208516|0.5 208517|0.5 208518|0.5 208519|0.47222 208520|0.11111 208521|0.41667 208522|0.33333 208523|0.5 208524|0.5 208525|0.66667 208526|0.55556 208527|0.5 208528|0.36111 208529|0.69444 208530|0.29167 208531|0.5 208532|0.25 208533|0.55556 208534|0.5 208535|0.52778 208536|0.5 208537|0.44444 208538|0.38889 208539|0.52778 208540|0.55556 208541|0.44444 208542|0.27778 208543|0.51389 208544|0.56944 208545|0.625 208546|0.29167 208547|0.375 208548|0.25 208549|0.47222 208550|0.55556 208551|0.18056 208552|0.38889 208553|0.48611 208554|0.51389 208555|0.65278 208556|0.56944 208557|0.5 208558|0.58333 208559|0.55556 208560|0.5 208561|0.30556 208562|0.083333 208563|0.52778 208564|0.51389 208565|0.56944 208566|0.66667 208567|0.5 208568|0.51389 208569|0.16667 208570|0.30556 208571|0.11111 208572|0.48611 208573|0.25 208574|0.65278 208575|0.65278 208576|0.58333 208577|0.47222 208578|0.76389 208579|0.47222 208580|0.73611 208581|0.29167 208582|0.36111 208583|0.19444 208584|0.94444 208585|0.23611 208586|0.5 208587|0.54167 208588|0.5 208589|0.72222 208590|0.625 208591|0.41667 208592|0.5 208593|0.27778 208594|0.5 208595|0.63889 208596|0.5 208597|0.5 208598|0.40278 208599|0.5 208600|0.66667 208601|0.44444 208602|0.29167 208603|0.23611 208604|0.16667 208605|0.5 208606|0.58333 208607|0.5 208608|0.5 208609|0.72222 208610|0.81944 208611|0.66667 208612|0.61111 208613|0.55556 208614|0.5 208615|1 208616|0.22222 208617|0.5 208618|0.91667 208619|0.19444 208620|0.90278 208621|0.083333 208622|0.097222 208623|0.041667 208624|0.055556 208625|0 208626|0.013889 208627|0.27778 208628|0.38889 208629|0.59722 208630|0.31944 208631|0.23611 208632|0.65278 208633|0.625 208634|0.55556 208635|0.54167 208636|0.51389 208637|0.5 208638|0.22222 208639|0.27778 208640|0.22222 208641|0.5 208642|0.52778 208643|0.41667 208644|0.63889 208645|0.43056 208646|0.38889 208647|0.44444 208648|0.41667 208649|0.40278 208650|0.20833 208651|0.5 208652|0.58333 208653|0.5 208654|0.68056 208655|0.72222 208656|0.76389 208657|0.51389 208658|0.48611 208659|0.5 208660|0.44444 208661|0.55556 208662|0.29167 208663|0.58333 208664|0.48611 208665|0.38889 208666|0.097222 208667|0.11111 208668|0.44444 208669|0.44444 208670|0.5 208671|0.5 208672|0.5 208673|0.48611 208674|0.40278 208675|0.27778 208676|0.44444 208677|0.43056 208678|0.72222 208679|0.48611 208680|0.16667 208681|0.22222 208682|0.31944 208683|0.45833 208684|0.51389 208685|0.56944 208686|0.23611 208687|0.52778 208688|0.36111 208689|0.5 208690|0.23611 208691|0.51389 208692|0.63889 208693|0.61111 208694|0.26389 208695|0.19444 208696|0.51389 208697|0.5 208698|0.47222 208699|0.48611 208700|0.38889 208701|0.51389 208702|0.5 208703|0.5 208704|0.43056 208705|0.31944 208706|0.16667 208707|0.18056 208708|0.55556 208709|0.65278 208710|0.23611 208711|0.5 208712|0.23611 208713|0.41667 208714|0.47222 208715|0.30556 208716|0.55556 208717|0.29167 208718|0.54167 208719|0.5 208720|0.68056 208721|0.5 208722|0.61111 208723|0.26389 208724|0.27778 208725|0.54167 208726|0.40278 208727|0.44444 208728|0.56944 208729|0.5 208730|0.44444 208731|0.52778 208732|0.16667 208733|0.5 208734|0.5 208735|0.5 208736|0.55556 208737|0.5 208738|0.54167 208739|0.52778 208740|0.40278 208741|0.38889 208742|0.5 208743|0.5 208744|0.5 208745|0.59722 208746|0.48611 208747|0.61111 208748|0.63889 208749|0.65278 208750|0.5 208751|0.27778 208752|0.47222 208753|0.68056 208754|0.77778 208755|0.5 208756|0.27778 208757|0.47222 208758|0.5 208759|0.5 208760|0.51389 208761|0.56944 208762|0.45833 208763|0.5 208764|0.5 208765|0.5 208766|0.54167 208767|0.59722 208768|0.40278 208769|0.5 208770|0.5 208771|0.5 208772|0.5 208773|0.36111 208774|0.54167 208775|0.65278 208776|0.18056 208777|0.5 208778|0.58333 208779|0.63889 208780|0.19444 208781|0.5 208782|0.5 208783|0.56944 208784|0.625 208785|0.5 208786|0.5 208787|0.5 208788|0.81944 208789|0.52778 208790|0.5 208791|0.56944 208792|0.65278 208793|0.61111 208794|0.33333 208795|0.5 208796|0.56944 208797|0.58333 208798|0.625 208799|0.55556 208800|0.5 208801|0.30556 208802|0.45833 208803|0.5 208804|0.55556 208805|0.5 208806|0.29167 208807|0.5 208808|0.5 208809|0.5 208810|0.5 208811|0.52778 208812|0.56944 208813|0.375 208814|0.375 208815|0.45833 208816|0.33333 208817|0.20833 208818|0.5 208819|0.5 208820|0.5 208821|0.59722 208822|0.041667 208823|0.5 208824|0.52778 208825|0.36111 208826|0.29167 208827|0.43056 208828|0.61111 208829|0.44444 208830|0.26389 208831|0.55556 208832|0.5 208833|0.5 208834|0.44444 208835|0.54167 208836|0.43056 208837|0.41667 208838|0.66667 208839|0.55556 208840|0.47222 208841|0.61111 208842|0.5 208843|0.5 208844|0.56944 208845|0.66667 208846|0.5 208847|0.48611 208848|0.65278 208849|0.25 208850|0.5 208851|0.5 208852|0.27778 208853|0.31944 208854|0.38889 208855|0.40278 208856|0.54167 208857|0.20833 208858|0.59722 208859|0.56944 208860|0.52778 208861|0.47222 208862|0.375 208863|0.51389 208864|0.47222 208865|0.5 208866|0.5 208867|0.44444 208868|0.23611 208869|0.26389 208870|0.30556 208871|0.5 208872|0.45833 208873|0.38889 208874|0.41667 208875|0.65278 208876|0.86111 208877|0.29167 208878|0.5 208879|0.33333 208880|0.48611 208881|0.5 208882|0.52778 208883|0.47222 208884|0.5 208885|0.44444 208886|0.48611 208887|0.47222 208888|0.18056 208889|0.5 208890|0.51389 208891|0.5 208892|0.54167 208893|0.73611 208894|0.47222 208895|0.33333 208896|0.5 208897|0.5 208898|0.52778 208899|0.33333 208900|0.22222 208901|0.29167 208902|0.52778 208903|0.48611 208904|0.41667 208905|0.36111 208906|0.26389 208907|0.22222 208908|0.31944 208909|0.22222 208910|0.31944 208911|0.40278 208912|0.31944 208913|0.29167 208914|0.38889 208915|0.43056 208916|0.38889 208917|0.70833 208918|0.51389 208919|0.38889 208920|0.22222 208921|0.33333 208922|0.5 208923|0.48611 208924|0.375 208925|0.29167 208926|0.44444 208927|0.27778 208928|0.54167 208929|0.27778 208930|0.41667 208931|0.11111 208932|0.26389 208933|0.52778 208934|0.33333 208935|0.36111 208936|0.38889 208937|0.45833 208938|0.27778 208939|0.38889 208940|0.27778 208941|0.44444 208942|0.54167 208943|0.44444 208944|0.38889 208945|0.33333 208946|0.45833 208947|0.5 208948|0.33333 208949|0.375 208950|0.30556 208951|0.20833 208952|0.25 208953|0.22222 208954|0.29167 208955|0.29167 208956|0.375 208957|0.27778 208958|0.375 208959|0.58333 208960|0.36111 208961|0.40278 208962|0.33333 208963|0.27778 208964|0.29167 208965|0.43056 208966|0.44444 208967|0.44444 208968|0.5 208969|0.38889 208970|0.51389 208971|0.5 208972|0.5 208973|0.68056 208974|0.45833 208975|0.58333 208976|0.5 208977|0.61111 208978|0.63889 208979|0.44444 208980|0.5 208981|0.58333 208982|0.5 208983|0.5 208984|0.51389 208985|0.5 208986|0.52778 208987|0.38889 208988|0.19444 208989|0.5 208990|0.59722 208991|0.70833 208992|0.45833 208993|0.66667 208994|0.45833 208995|0.69444 208996|0.68056 208997|0.54167 208998|0.48611 208999|0.5 209000|0.5 209001|0.16667 209002|0.52778 209003|0.55556 209004|0.5 209005|0.5 209006|0.18056 209007|0.30556 209008|0.11111 209009|0.5 209010|0.38889 209011|0.34722 209012|0.097222 209013|0.19444 209014|0.18056 209015|0.20833 209016|0.33333 209017|0.23611 209018|0.375 209019|0.19444 209020|0.11111 209021|0.055556 209022|0.48611 209023|0.15278 209024|0.19444 209025|0.68056 209026|0.40278 209027|0.44444 209028|0.48611 209029|0.375 209030|0.33333 209031|0.61111 209032|0.5 209033|0.5 209034|0.5 209035|0.5 209036|0.40278 209037|0.44444 209038|0.38889 209039|0.43056 209040|0.31944 209041|0.38889 209042|0.18056 209043|0.26389 209044|0.16667 209045|0.5 209046|0.52778 209047|0.625 209048|0.58333 209049|0.55556 209050|0.5 209051|0.5 209052|0.5 209053|0.5 209054|0.26389 209055|0.43056 209056|0.27778 209057|0.59722 209058|0.5 209059|0.5 209060|0.5 209061|0.5 209062|0.51389 209063|0.51389 209064|0.47222 209065|0.34722 209066|0.5 209067|0.125 209068|0.5 209069|0.38889 209070|0.48611 209071|0.5 209072|0.5 209073|0.5 209074|0.55556 209075|0.5 209076|0.5 209077|0.52778 209078|0.38889 209079|0.5 209080|0.54167 209081|0.65278 209082|0.58333 209083|0.22222 209084|0.20833 209085|0.94444 209086|0.55556 209087|0.52778 209088|0.83333 209089|0.81944 209090|0.54167 209091|0.65278 209092|0.68056 209093|0.56944 209094|0.33333 209095|0.55556 209096|0.58333 209097|0.5 209098|0.45833 209099|0.66667 209100|0.5 209101|0.5 209102|0.5 209103|0.5 209104|0.54167 209105|0.51389 209106|0.41667 209107|0.65278 209108|0.52778 209109|0.59722 209110|0.43056 209111|0.33333 209112|0.61111 209113|0.52778 209114|0.56944 209115|0.51389 209116|0.5 209117|0.5 209118|0.29167 209119|0.31944 209120|0.5 209121|0.20833 209122|0.51389 209123|0.38889 209124|0.79167 209125|0.76389 209126|0.5 209127|0.38889 209128|0.52778 209129|0.44444 209130|0.43056 209131|0.65278 209132|0.5 209133|0.5 209134|0.36111 209135|0.11111 209136|0.27778 209137|0.15278 209138|0.041667 209139|0.19444 209140|0.29167 209141|0.34722 209142|0.43056 209143|0.44444 209144|0.40278 209145|0.5 209146|0.44444 209147|0.44444 209148|0.52778 209149|0.41667 209150|0.19444 209151|0.54167 209152|0.54167 209153|0.59722 209154|0.27778 209155|0.5 209156|0.41667 209157|0.44444 209158|0.43056 209159|0.52778 209160|0.5 209161|0.55556 209162|0.48611 209163|0.625 209164|0.44444 209165|0.40278 209166|0.25 209167|0.5 209168|0.55556 209169|0.58333 209170|0.5 209171|0.5 209172|0.36111 209173|0.44444 209174|0.56944 209175|0.26389 209176|0.43056 209177|0.48611 209178|0.22222 209179|0.44444 209180|0.36111 209181|0.43056 209182|0.47222 209183|0.5 209184|0.5 209185|0.47222 209186|0.45833 209187|0.16667 209188|0.5 209189|0.5 209190|0.59722 209191|0.59722 209192|0.66667 209193|0.5 209194|0.43056 209195|0.61111 209196|0.34722 209197|0.5 209198|0.54167 209199|0.5 209200|0.61111 209201|0.38889 209202|0.40278 209203|0.5 209204|0.66667 209205|0.44444 209206|0.44444 209207|0.5 209208|0.38889 209209|0.47222 209210|0.55556 209211|0.375 209212|0.5 209213|0.5 209214|0.5 209215|0.34722 209216|0.45833 209217|0.44444 209218|0.55556 209219|0.52778 209220|0.48611 209221|0.55556 209222|0.75 209223|0.66667 209224|0.5 209225|0.20833 209226|0.5 209227|0.48611 209228|0.5 209229|0.52778 209230|0.5 209231|0.5 209232|0.54167 209233|0.5 209234|0.30556 209235|0.54167 209236|0.5 209237|0.80556 209238|0.55556 209239|0.77778 209240|0.65278 209241|0.5 209242|0.44444 209243|0.48611 209244|0.41667 209245|0.51389 209246|0.48611 209247|0.52778 209248|0.875 209249|0.13889 209250|0.48611 209251|0.58333 209252|0.18056 209253|0.31944 209254|0.16667 209255|0.23611 209256|0.59722 209257|0.18056 209258|0.069444 209259|0.44444 209260|0.5 209261|0.33333 209262|0.5 209263|0.52778 209264|0.48611 209265|0.11111 209266|0.11111 209267|0.5 209268|0.38889 209269|0.45833 209270|0.5 209271|0.38889 209272|0.40278 209273|0.73611 209274|0.5 209275|0.31944 209276|0.5 209277|0.22222 209278|0.40278 209279|0.30556 209280|0.44444 209281|0.63889 209282|0.41667 209283|0.5 209284|0.58333 209285|0.5 209286|0.45833 209287|0.55556 209288|0.19444 209289|0.45833 209290|0.47222 209291|0.61111 209292|0.31944 209293|0.43056 209294|0.31944 209295|0.027778 209296|0.38889 209297|0.23611 209298|0.16667 209299|0.47222 209300|0.40278 209301|0.125 209302|0.38889 209303|0.51389 209304|0.5 209305|0.5 209306|0.51389 209307|0.5 209308|0.56944 209309|0.33333 209310|0.48611 209311|0.27778 209312|0.90278 209313|0.47222 209314|0.20833 209315|0.5 209316|0.25 209317|0.625 209318|0.48611 209319|0.055556 209320|0.20833 209321|0.43056 209322|0.26389 209323|0.34722 209324|0.22222 209325|0.47222 209326|0.15278 209327|0.51389 209328|0.5 209329|0.5 209330|0.5 209331|0.5 209332|0.66667 209333|0.5 209334|0.5 209335|0.5 209336|0.5 209337|0.51389 209338|0.625 209339|0.51389 209340|0.52778 209341|0.47222 209342|0.27778 209343|0.13889 209344|0.16667 209345|0.34722 209346|0.38889 209347|0.56944 209348|0.34722 209349|0.41667 209350|0.44444 209351|0.26389 209352|0.33333 209353|0.47222 209354|0.29167 209355|0.56944 209356|0.58333 209357|0.375 209358|0.29167 209359|0.083333 209360|0.083333 209361|0.5 209362|0.68056 209363|0.54167 209364|0.44444 209365|0.375 209366|0.44444 209367|0.55556 209368|0.5 209369|0.26389 209370|0.5 209371|0.54167 209372|0.52778 209373|0.5 209374|0.38889 209375|0.52778 209376|0.41667 209377|0.5 209378|0.5 209379|0.55556 209380|0.48611 209381|0.19444 209382|0.41667 209383|0.33333 209384|0.18056 209385|0.22222 209386|0.23611 209387|0.23611 209388|0.097222 209389|0.18056 209390|0.29167 209391|0.31944 209392|0.56944 209393|0.38889 209394|0.38889 209395|0.41667 209396|0.43056 209397|0.56944 209398|0.86111 209399|0.70833 209400|0.72222 209401|0.51389 209402|0.47222 209403|0.61111 209404|0.65278 209405|0.58333 209406|0.5 209407|0.5 209408|0.5 209409|0.5 209410|0.40278 209411|0.5 209412|0.51389 209413|0.41667 209414|0.51389 209415|0.58333 209416|0.54167 209417|0.5 209418|0.34722 209419|0.5 209420|0.26389 209421|0.33333 209422|0.5 209423|0.375 209424|0.20833 209425|0.47222 209426|0.44444 209427|0.40278 209428|0.27778 209429|0.18056 209430|0.25 209431|0.5 209432|0.27778 209433|0.5 209434|0.5 209435|0.44444 209436|0.44444 209437|0.5 209438|0.5 209439|0.5 209440|0.5 209441|0.5 209442|0.29167 209443|0.5 209444|0.5 209445|0.47222 209446|0.43056 209447|0.16667 209448|0.29167 209449|0.47222 209450|0.31944 209451|0.30556 209452|0.5 209453|0.5 209454|0.5 209455|0.45833 209456|0.80556 209457|0.375 209458|0.38889 209459|0.63889 209460|0.72222 209461|0.29167 209462|0.55556 209463|0.5 209464|0.61111 209465|0.52778 209466|0.5 209467|0.5 209468|0.44444 209469|0.16667 209470|0.40278 209471|0.375 209472|0.20833 209473|0.27778 209474|0.44444 209475|0.5 209476|0.5 209477|0.22222 209478|0.23611 209479|0.54167 209480|0.51389 209481|0.38889 209482|0.5 209483|0.44444 209484|0.45833 209485|0.51389 209486|0.44444 209487|0.66667 209488|0.48611 209489|0.5 209490|0.56944 209491|0.47222 209492|0.5 209493|0.5 209494|0.34722 209495|0.56944 209496|0.54167 209497|0.31944 209498|0.68056 209499|0.18056 209500|0.38889 209501|0.41667 209502|0.5 209503|0.27778 209504|0.23611 209505|0.375 209506|0.25 209507|0.22222 209508|0.33333 209509|0.22222 209510|0.5 209511|0.375 209512|0.44444 209513|0.5 209514|0.375 209515|0.44444 209516|0.44444 209517|0.19444 209518|0.22222 209519|0.31944 209520|0.19444 209521|0.25 209522|0.25 209523|0.22222 209524|0.30556 209525|0.23611 209526|0.23611 209527|0.47222 209528|0.5 209529|0.70833 209530|0.5 209531|0.55556 209532|0.5 209533|0.51389 209534|0.48611 209535|0.58333 209536|0.44444 209537|0.083333 209538|0.5 209539|0.18056 209540|0.125 209541|0.5 209542|0.34722 209543|0.5 209544|0.33333 209545|0.5 209546|0.55556 209547|0.69444 209548|0.5 209549|0.29167 209550|0.34722 209551|0.5 209552|0.36111 209553|0.66667 209554|0.59722 209555|0.31944 209556|0.18056 209557|0.375 209558|0.77778 209559|0.58333 209560|0.69444 209561|0.52778 209562|0.26389 209563|0.51389 209564|0.52778 209565|0.48611 209566|0.43056 209567|0.81944 209568|0.63889 209569|0.5 209570|0.5 209571|0.5 209572|0.5 209573|0.5 209574|0.5 209575|0.13889 209576|0.125 209577|0.44444 209578|0.40278 209579|0.44444 209580|0.5 209581|0.54167 209582|0.72222 209583|0.72222 209584|0.55556 209585|0.5 209586|0.52778 209587|0.11111 209588|0.18056 209589|0.5 209590|0.55556 209591|0.69444 209592|0.73611 209593|0.66667 209594|0.68056 209595|0.5 209596|0.5 209597|0.56944 209598|0.5 209599|0.5 209600|0.41667 209601|0.65278 209602|0.81944 209603|0.68056 209604|0.5 209605|0.27778 209606|0.66667 209607|0.5 209608|0.48611 209609|0.40278 209610|0.52778 209611|0.5 209612|0.5 209613|0.5 209614|0.5 209615|0.48611 209616|0.5 209617|0.5 209618|0.51389 209619|0.59722 209620|0.41667 209621|0.375 209622|0.44444 209623|0.38889 209624|0.34722 209625|0.66667 209626|0.70833 209627|0.51389 209628|0.34722 209629|0.55556 209630|0.55556 209631|0.33333 209632|0.61111 209633|0.5 209634|0.54167 209635|0.36111 209636|0.375 209637|0.40278 209638|0.23611 209639|0.27778 209640|0.30556 209641|0.29167 209642|0.29167 209643|0.31944 209644|0.375 209645|0.26389 209646|0.23611 209647|0.20833 209648|0.36111 209649|0.5 209650|0.55556 209651|0.52778 209652|0.54167 209653|0.63889 209654|0.29167 209655|0.36111 209656|0.51389 209657|0.51389 209658|0.5 209659|0.40278 209660|0.5 209661|0.5 209662|0.65278 209663|0.5 209664|0.30556 209665|0.13889 209666|0.22222 209667|0.11111 209668|0.5 209669|0.5 209670|0.5 209671|0.125 209672|0.20833 209673|0.15278 209674|0.31944 209675|0.30556 209676|0.5 209677|0.33333 209678|0.5 209679|0.70833 209680|0.27778 209681|0.5 209682|0.66667 209683|0.72222 209684|0.59722 209685|0.61111 209686|0.41667 209687|0.18056 209688|0.51389 209689|0.5 209690|0.44444 209691|0.31944 209692|0.48611 209693|0.45833 209694|0.5 209695|0.43056 209696|0.40278 209697|0.43056 209698|0.51389 209699|0.66667 209700|0.375 209701|0.66667 209702|0.56944 209703|0.5 209704|0.34722 209705|0.375 209706|0.44444 209707|0.48611 209708|0.44444 209709|0.38889 209710|0.22222 209711|0.36111 209712|0.27778 209713|0.33333 209714|0.22222 209715|0.25 209716|0.66667 209717|0.72222 209718|0.69444 209719|0.34722 209720|0.70833 209721|0.375 209722|0.27778 209723|0.26389 209724|0.69444 209725|0.48611 209726|0.36111 209727|0.33333 209728|0.33333 209729|0.20833 209730|0.48611 209731|0.55556 209732|0.34722 209733|0.59722 209734|0.45833 209735|0.36111 209736|0.5 209737|0.58333 209738|0.5 209739|0.48611 209740|0.48611 209741|0.5 209742|0.5 209743|0.54167 209744|0.73611 209745|0.52778 209746|0.5 209747|0.44444 209748|0.5 209749|0.55556 209750|0.625 209751|0.52778 209752|0.26389 209753|0.61111 209754|0.45833 209755|0.73611 209756|0.375 209757|0.61111 209758|0.51389 209759|0.31944 209760|0.43056 209761|0.55556 209762|0.22222 209763|0.5 209764|0.5 209765|0.5 209766|0.68056 209767|0.61111 209768|0.5 209769|0.5 209770|0.48611 209771|0.5 209772|0.52778 209773|0.56944 209774|0.51389 209775|0.30556 209776|0.5 209777|0.54167 209778|0.27778 209779|0.375 209780|0.83333 209781|0.027778 209782|0.125 209783|0.43056 209784|0.5 209785|0.55556 209786|0.58333 209787|0.68056 209788|0.5 209789|0.5 209790|0.5 209791|0.5 209792|0.65278 209793|0.31944 209794|0.51389 209795|0.34722 209796|0.59722 209797|0.5 209798|0.51389 209799|0.375 209800|0.22222 209801|0.55556 209802|0.45833 209803|0.65278 209804|0.51389 209805|0.16667 209806|0.29167 209807|0.72222 209808|0.45833 209809|0.52778 209810|0.76389 209811|0.69444 209812|0.18056 209813|0.625 209814|0.5 209815|0.5 209816|0.72222 209817|0.41667 209818|0.5 209819|0.68056 209820|0.23611 209821|0.55556 209822|0.41667 209823|0.29167 209824|0.66667 209825|0.41667 209826|0.59722 209827|0.34722 209828|0.33333 209829|0.27778 209830|0.56944 209831|0.40278 209832|0.23611 209833|0.25 209834|0.52778 209835|0.34722 209836|0.5 209837|0.33333 209838|0.20833 209839|0.22222 209840|0.33333 209841|0.29167 209842|0.055556 209843|0.19444 209844|0.5 209845|0.52778 209846|0.33333 209847|0.5 209848|0.5 209849|0.625 209850|0.45833 209851|0.625 209852|0.51389 209853|0.36111 209854|0.44444 209855|0.40278 209856|0.27778 209857|0.5 209858|0.40278 209859|0.69444 209860|0.5 209861|0.61111 209862|0.43056 209863|0.36111 209864|0.34722 209865|0.31944 209866|0.45833 209867|0.5 209868|0.58333 209869|0.22222 209870|0.5 209871|0.5 209872|0.69444 209873|0.55556 209874|0.51389 209875|0.31944 209876|0.40278 209877|0.27778 209878|0.26389 209879|0.59722 209880|0.5 209881|0.40278 209882|0.5 209883|0.5 209884|0.47222 209885|0.52778 209886|0.36111 209887|0.48611 209888|0.54167 209889|0.5 209890|0.44444 209891|0.75 209892|0.5 209893|0.5 209894|0.5 209895|0.45833 209896|0.61111 209897|0.625 209898|0.5 209899|0.41667 209900|0.5 209901|0.25 209902|0.5 209903|0.40278 209904|0.38889 209905|0.55556 209906|0.5 209907|0.47222 209908|0.5 209909|0.5 209910|0.33333 209911|0.36111 209912|0.38889 209913|0.43056 209914|0.47222 209915|0.41667 209916|0.69444 209917|0.23611 209918|0.30556 209919|0.54167 209920|0.47222 209921|0.5 209922|0.55556 209923|0.63889 209924|0.66667 209925|0.52778 209926|0.38889 209927|0.34722 209928|0.33333 209929|0.27778 209930|0.48611 209931|0.38889 209932|0.26389 209933|0.375 209934|0.5 209935|0.63889 209936|0.5 209937|0.375 209938|0.34722 209939|0.44444 209940|0.5 209941|0.47222 209942|0.5 209943|0.5 209944|0.5 209945|0.27778 209946|0.11111 209947|0.15278 209948|0.41667 209949|0.097222 209950|0.38889 209951|0.375 209952|0.38889 209953|0.22222 209954|0.27778 209955|0.33333 209956|0.041667 209957|0.041667 209958|0.055556 209959|0.22222 209960|0.29167 209961|0.29167 209962|0.61111 209963|0.375 209964|0.41667 209965|0.44444 209966|0.51389 209967|0.63889 209968|0.38889 209969|0.36111 209970|0.5 209971|0.36111 209972|0.5 209973|0.41667 209974|0.34722 209975|0.44444 209976|0.38889 209977|0.55556 209978|0.5 209979|0.48611 209980|0.55556 209981|0.47222 209982|0.51389 209983|0.41667 209984|0.52778 209985|0.36111 209986|0.25 209987|0.47222 209988|0.66667 209989|0.51389 209990|0.5 209991|0.56944 209992|0.38889 209993|0.29167 209994|0.38889 209995|0.38889 209996|0.52778 209997|0.44444 209998|0.58333 209999|0.5 210000|0.33333 210001|0.13889 210002|0.16667 210003|0.22222 210004|0.38889 210005|0.375 210006|0.5 210007|0.65278 210008|0.52778 210009|0.65278 210010|0.51389 210011|0.59722 210012|0.18056 210013|0.40278 210014|0.68056 210015|0.83333 210016|0.61111 210017|0.40278 210018|0.51389 210019|0.51389 210020|0.52778 210021|0.52778 210022|0.68056 210023|0.66667 210024|0.069444 210025|0.51389 210026|0.45833 210027|0.88889 210028|0.15278 210029|0.48611 210030|0.5 210031|0.27778 210032|0.55556 210033|0.65278 210034|0.36111 210035|0.5 210036|0.5 210037|0.13889 210038|0.16667 210039|0.33333 210040|0.58333 210041|0.5 210042|0.54167 210043|0.5 210044|0.36111 210045|0.5 210046|0.5 210047|0.41667 210048|0.51389 210049|0.54167 210050|0.44444 210051|0.55556 210052|0.61111 210053|0.40278 210054|0.41667 210055|0.25 210056|0.16667 210057|0.41667 210058|0.22222 210059|0.54167 210060|0.33333 210061|0.30556 210062|0.38889 210063|0.33333 210064|0.38889 210065|0.16667 210066|0.44444 210067|0.25 210068|0.38889 210069|0.31944 210070|0.23611 210071|0.18056 210072|0.5 210073|0.61111 210074|0.51389 210075|0.38889 210076|0.61111 210077|0.5 210078|0.45833 210079|0.29167 210080|0.33333 210081|0.66667 210082|0.45833 210083|0.54167 210084|0.72222 210085|0.69444 210086|0.51389 210087|0.38889 210088|0.25 210089|0.63889 210090|0.34722 210091|0.13889 210092|0.19444 210093|0.22222 210094|0.41667 210095|0.41667 210096|0.44444 210097|0.33333 210098|0.45833 210099|0.31944 210100|0.40278 210101|0.44444 210102|0.375 210103|0.29167 210104|0.36111 210105|0.33333 210106|0.23611 210107|0.22222 210108|0.27778 210109|0.43056 210110|0.48611 210111|0.59722 210112|0.51389 210113|0.30556 210114|0.48611 210115|0.31944 210116|0.5 210117|0.66667 210118|0.48611 210119|0.44444 210120|0.36111 210121|0.33333 210122|0.16667 210123|0.54167 210124|0.43056 210125|0.48611 210126|0.5 210127|0.55556 210128|0.69444 210129|0.65278 210130|0.33333 210131|0.51389 210132|0.51389 210133|0.54167 210134|0.20833 210135|0.77778 210136|0.58333 210137|0.5 210138|0.36111 210139|0.43056 210140|0.23611 210141|0.54167 210142|0.5 210143|0.31944 210144|0.5 210145|0.33333 210146|0.36111 210147|0.38889 210148|0.55556 210149|0.51389 210150|0.61111 210151|0.55556 210152|0.84722 210153|0.5 210154|0.66667 210155|0.5 210156|0.66667 210157|0.51389 210158|0.59722 210159|0.61111 210160|0.79167 210161|0.61111 210162|0.70833 210163|0.68056 210164|0.5 210165|0.26389 210166|0.5 210167|0.66667 210168|0.51389 210169|0.66667 210170|0.59722 210171|0.625 210172|0.5 210173|0.31944 210174|0.5 210175|0.34722 210176|0.59722 210177|0.18056 210178|0.23611 210179|0.25 210180|0.25 210181|0.33333 210182|0.5 210183|0.45833 210184|0.22222 210185|0.125 210186|0.13889 210187|0.13889 210188|0.23611 210189|0.54167 210190|0.33333 210191|0.33333 210192|0.18056 210193|0.125 210194|0.66667 210195|0.52778 210196|0.36111 210197|0.68056 210198|0.61111 210199|0.61111 210200|0.38889 210201|0.5 210202|0.5 210203|0.48611 210204|0.40278 210205|0.52778 210206|0.51389 210207|0.27778 210208|0.44444 210209|0.125 210210|0.43056 210211|0.38889 210212|0.20833 210213|0.5 210214|0.48611 210215|0.19444 210216|0.59722 210217|0.63889 210218|0.45833 210219|0.625 210220|0.625 210221|0.55556 210222|0.5 210223|0.47222 210224|0.47222 210225|0.59722 210226|0.58333 210227|0.65278 210228|0.375 210229|0.69444 210230|0.66667 210231|0.72222 210232|0.63889 210233|0.45833 210234|0.5 210235|0.5 210236|0.51389 210237|0.56944 210238|0.61111 210239|0.5 210240|0.5 210241|0.44444 210242|0.45833 210243|0.5 210244|0.5 210245|0.69444 210246|0.625 210247|0.90278 210248|0.5 210249|0.45833 210250|0.58333 210251|0.5 210252|0.5 210253|0.31944 210254|0.55556 210255|0.65278 210256|0.5 210257|0.63889 210258|0.5 210259|0.56944 210260|0.43056 210261|0.069444 210262|0.29167 210263|0.29167 210264|0.5 210265|0.79167 210266|0.55556 210267|0.66667 210268|0.65278 210269|0.65278 210270|0.61111 210271|0.61111 210272|0.55556 210273|0.61111 210274|0.58333 210275|0.23611 210276|0.19444 210277|0.20833 210278|0.26389 210279|0.47222 210280|0.44444 210281|0.27778 210282|0.18056 210283|0.27778 210284|0.40278 210285|0.41667 210286|0.19444 210287|0.54167 210288|0.5 210289|0.54167 210290|0.5 210291|0.56944 210292|0.5 210293|0.38889 210294|0.5 210295|0.22222 210296|0.54167 210297|0.23611 210298|0.33333 210299|0.625 210300|0.38889 210301|0.33333 210302|0.38889 210303|0.68056 210304|0.5 210305|0.44444 210306|0.5 210307|0.55556 210308|0.81944 210309|0.44444 210310|0.5 210311|0.59722 210312|0.30556 210313|0.5 210314|0.20833 210315|0.22222 210316|0.097222 210317|0.27778 210318|0.43056 210319|0.40278 210320|0.34722 210321|0.5 210322|0.5 210323|0.55556 210324|0.45833 210325|0.5 210326|0.34722 210327|0.61111 210328|0.69444 210329|0.41667 210330|0.51389 210331|0.51389 210332|0.5 210333|0.47222 210334|0.47222 210335|0.55556 210336|0.45833 210337|0.31944 210338|0.5 210339|0.5 210340|0.51389 210341|0.44444 210342|0.25 210343|0.55556 210344|0.15278 210345|0.29167 210346|0.51389 210347|0.33333 210348|0.38889 210349|0.40278 210350|0.5 210351|0.22222 210352|0.15278 210353|0.47222 210354|0.16667 210355|0.23611 210356|0.52778 210357|0.59722 210358|0.58333 210359|0.16667 210360|0.5 210361|0.22222 210362|0.26389 210363|0.51389 210364|0.38889 210365|0.5 210366|0.30556 210367|0.26389 210368|0.47222 210369|0.22222 210370|0.16667 210371|0.125 210372|0.375 210373|0.51389 210374|0.47222 210375|0.26389 210376|0.34722 210377|0.47222 210378|0.66667 210379|0.36111 210380|0.77778 210381|0.72222 210382|0.59722 210383|0.5 210384|0.5 210385|0.375 210386|0.86111 210387|0.77778 210388|0.77778 210389|0.56944 210390|0.5 210391|0.44444 210392|0.5 210393|0.38889 210394|0.47222 210395|0.38889 210396|0.48611 210397|0.5 210398|0.5 210399|0.30556 210400|0.5 210401|0.5 210402|0.70833 210403|0.36111 210404|0.45833 210405|0.47222 210406|0.31944 210407|0.375 210408|0.45833 210409|0.52778 210410|0.63889 210411|0.20833 210412|0.5 210413|0.48611 210414|0.38889 210415|0.16667 210416|0.5 210417|0.63889 210418|0.22222 210419|0.47222 210420|0.5 210421|0.27778 210422|0.15278 210423|0.27778 210424|0.16667 210425|0.56944 210426|0.33333 210427|0.56944 210428|0.11111 210429|0.22222 210430|0.36111 210431|0.31944 210432|0.55556 210433|0.51389 210434|0.5 210435|0.31944 210436|0.375 210437|0.5 210438|0.5 210439|0.58333 210440|0.33333 210441|0.625 210442|0.45833 210443|0.25 210444|0.18056 210445|0.55556 210446|0.61111 210447|0.47222 210448|0.5 210449|0.79167 210450|0.44444 210451|0.15278 210452|0.23611 210453|0.5 210454|0.5 210455|0.54167 210456|0.51389 210457|0.51389 210458|0.16667 210459|0.30556 210460|0.22222 210461|0.43056 210462|0.47222 210463|0.31944 210464|0.55556 210465|0.16667 210466|0.5 210467|0.44444 210468|0.375 210469|0.33333 210470|0.31944 210471|0.43056 210472|0.36111 210473|0.41667 210474|0.29167 210475|0.51389 210476|0.5 210477|0.43056 210478|0.20833 210479|0.34722 210480|0.51389 210481|0.52778 210482|0.45833 210483|0.66667 210484|0.625 210485|0.5 210486|0.66667 210487|0.5 210488|0.5 210489|0.125 210490|0.48611 210491|0.38889 210492|0.48611 210493|0.48611 210494|0.48611 210495|0.5 210496|0.5 210497|0.69444 210498|0.65278 210499|0.31944 210500|0.40278 210501|0.47222 210502|0.44444 210503|0.51389 210504|0.51389 210505|0.23611 210506|0.30556 210507|0.5 210508|0.5 210509|0.45833 210510|0.36111 210511|0.45833 210512|0.5 210513|0.55556 210514|0.38889 210515|0.45833 210516|0.34722 210517|0.625 210518|0.55556 210519|0.375 210520|0.36111 210521|0.22222 210522|0.52778 210523|0.47222 210524|0.25 210525|0.54167 210526|0.59722 210527|0.5 210528|0.5 210529|0.56944 210530|0.48611 210531|0.36111 210532|0.33333 210533|0.65278 210534|0.41667 210535|0.45833 210536|0.41667 210537|0.41667 210538|0.26389 210539|0.48611 210540|0.59722 210541|0.72222 210542|0.5 210543|0.5 210544|0.5 210545|0.38889 210546|0.36111 210547|0.51389 210548|0.52778 210549|0.41667 210550|0.31944 210551|0.31944 210552|0.5 210553|0.44444 210554|0.31944 210555|0.5 210556|0.30556 210557|0.44444 210558|0.31944 210559|0.5 210560|0.76389 210561|0.25 210562|0.55556 210563|0.5 210564|0.29167 210565|0.5 210566|0.5 210567|0.59722 210568|0.68056 210569|0.5 210570|0.45833 210571|0.61111 210572|0.22222 210573|0.25 210574|0.55556 210575|0.5 210576|0.59722 210577|0.5 210578|0.55556 210579|0.59722 210580|0.16667 210581|0.36111 210582|0.58333 210583|0.56944 210584|0.66667 210585|0.72222 210586|0.68056 210587|0.5 210588|0.61111 210589|0.58333 210590|0.5 210591|0.45833 210592|0.375 210593|0.38889 210594|0.5 210595|0.5 210596|0.55556 210597|0.38889 210598|0.43056 210599|0.5 210600|0.5 210601|0.51389 210602|0.45833 210603|0.47222 210604|0.5 210605|0.66667 210606|0.5 210607|0.44444 210608|0.44444 210609|0.52778 210610|0.58333 210611|0.80556 210612|0.5 210613|0.5 210614|0.5 210615|0.41667 210616|0.59722 210617|0.5 210618|0.36111 210619|0.5 210620|0.51389 210621|0.75 210622|0.65278 210623|0.5 210624|0.44444 210625|0.61111 210626|0.34722 210627|0.47222 210628|0.66667 210629|0.27778 210630|0.43056 210631|0.41667 210632|0.43056 210633|0.38889 210634|0.45833 210635|0.51389 210636|0.31944 210637|0.5 210638|0.51389 210639|0.41667 210640|0.38889 210641|0.54167 210642|0.52778 210643|0.44444 210644|0.41667 210645|0.43056 210646|0.29167 210647|0.84722 210648|0.5 210649|0.47222 210650|0.375 210651|0.29167 210652|0.34722 210653|0.26389 210654|0.59722 210655|0.375 210656|0.43056 210657|0.48611 210658|0.26389 210659|0.29167 210660|0.47222 210661|0.56944 210662|0.5 210663|0.125 210664|0.22222 210665|0.23611 210666|0.23611 210667|0.22222 210668|0.375 210669|0.22222 210670|0.16667 210671|0.25 210672|0.33333 210673|0.375 210674|0.38889 210675|0.38889 210676|0.44444 210677|0.27778 210678|0.52778 210679|0.29167 210680|0.27778 210681|0.25 210682|0.54167 210683|0.56944 210684|0.44444 210685|0.19444 210686|0.56944 210687|0.44444 210688|0.61111 210689|0.20833 210690|0.5 210691|0.375 210692|0.11111 210693|0.40278 210694|0.19444 210695|0.25 210696|0.25 210697|0.18056 210698|0.44444 210699|0.48611 210700|0.81944 210701|0.73611 210702|0.34722 210703|0.55556 210704|0.51389 210705|0.44444 210706|0.41667 210707|0.29167 210708|0.5 210709|0.48611 210710|0.63889 210711|0.5 210712|0.5 210713|0.13889 210714|0.30556 210715|0.51389 210716|0.52778 210717|0.45833 210718|0.30556 210719|0.55556 210720|0.33333 210721|0.22222 210722|0.27778 210723|0.34722 210724|0.5 210725|0.38889 210726|0.63194 210727|0.69444 210728|0.66667 210729|0.41667 210730|0.40278 210731|0.34722 210732|0.34722 210733|0.56944 210734|0.375 210735|0.5 210736|0.48611 210737|0.44444 210738|0.5 210739|0.44444 210740|0.5 210741|0.58333 210742|0.5 210743|0.58333 210744|0.48611 210745|0.30556 210746|0.54167 210747|0.5 210748|0.5 210749|0.625 210750|0.54167 210751|0.54167 210752|0.34722 210753|0.45833 210754|0.44444 210755|0.33333 210756|0.47222 210757|0.45833 210758|0.30556 210759|0.18056 210760|0.18056 210761|0.56944 210762|0.43056 210763|0.48611 210764|0.5 210765|0.5 210766|0.65278 210767|0.61111 210768|0.47222 210769|0.38889 210770|0.48611 210771|0.43056 210772|0.31944 210773|0.19444 210774|0.27778 210775|0.38889 210776|0.30556 210777|0.33333 210778|0.48611 210779|0.22222 210780|0.38889 210781|0.56944 210782|0.70833 210783|0.38889 210784|0.70833 210785|0.69444 210786|0.68056 210787|0.625 210788|0.51389 210789|0.79167 210790|0.76389 210791|0.68056 210792|0.79167 210793|0.5 210794|0.5 210795|0.25 210796|0.5 210797|0.15278 210798|0.5 210799|0.41667 210800|0.55556 210801|0.31944 210802|0.51389 210803|0.54167 210804|0.58333 210805|0.61111 210806|0.47222 210807|0.40278 210808|0.66667 210809|0.5 210810|0.5 210811|0.25 210812|0.18056 210813|0.44444 210814|0.55556 210815|0.31944 210816|0.5 210817|0.375 210818|0.81944 210819|0.041667 210820|0.5 210821|0.55556 210822|0.47222 210823|0.5 210824|0.38889 210825|0.44444 210826|0.45833 210827|0.5 210828|0.20833 210829|0.44444 210830|0.59722 210831|0.25 210832|0.52778 210833|0.55556 210834|0.22222 210835|0.41667 210836|0.30556 210837|0.33333 210838|0.33333 210839|0.5 210840|0.5 210841|0.65278 210842|0.23611 210843|0.61111 210844|0.40278 210845|0.41667 210846|0.23611 210847|0.5 210848|0.52778 210849|0.5 210850|0.5 210851|0.47222 210852|0.33333 210853|0.31944 210854|0.40278 210855|0.47222 210856|0.38889 210857|0.375 210858|0.5 210859|0.43056 210860|0.41667 210861|0.097222 210862|0.5 210863|0.41667 210864|0.68056 210865|0.58333 210866|0.43056 210867|0.41667 210868|0.5 210869|0.27778 210870|0.40278 210871|0.5 210872|0.5 210873|0.45833 210874|0.54167 210875|0.5 210876|0.51389 210877|0.5 210878|0.51389 210879|0.44444 210880|0.44444 210881|0.375 210882|0.34722 210883|0.22222 210884|0.36111 210885|0.5 210886|0.48611 210887|0.30556 210888|0.5 210889|0.59722 210890|0.5 210891|0.5 210892|0.5 210893|0.5 210894|0.44444 210895|0.38889 210896|0.625 210897|0.33333 210898|0.30556 210899|0.54167 210900|0.44444 210901|0.30556 210902|0.27778 210903|0.5 210904|0.20833 210905|0.34722 210906|0.27778 210907|0.58333 210908|0.5 210909|0.5 210910|0.58333 210911|0.5 210912|0.5 210913|0.5 210914|0.5 210915|0.41667 210916|0.31944 210917|0.5 210918|0.26389 210919|0.38889 210920|0.34722 210921|0.30556 210922|0.31944 210923|0.38889 210924|0.48611 210925|0.47222 210926|0.34722 210927|0.38889 210928|0.22222 210929|0.48611 210930|0.375 210931|0.81944 210932|0.5 210933|0.625 210934|0.44444 210935|0.41667 210936|0.5 210937|0.52778 210938|0.56944 210939|0.5 210940|0.47222 210941|0.33333 210942|0.38889 210943|0.43056 210944|0.29167 210945|0.41667 210946|0.43056 210947|0.5 210948|0.31944 210949|0.25 210950|0.5 210951|0.29167 210952|0.69444 210953|0.44444 210954|0.27778 210955|0.055556 210956|0.38889 210957|0.20833 210958|0.55556 210959|0.625 210960|0.38889 210961|0.83333 210962|0.5 210963|0.61111 210964|0.36111 210965|0.26389 210966|0.44444 210967|0.34722 210968|0.23611 210969|0.125 210970|0.59722 210971|0.5 210972|0.5 210973|0.26389 210974|0.41667 210975|0.61111 210976|0.36111 210977|0.5 210978|0.66667 210979|0.34722 210980|0.34722 210981|0.48611 210982|0.47222 210983|0.33333 210984|0.56944 210985|0.625 210986|0.70833 210987|0.55556 210988|0.47222 210989|0.31944 210990|0.33333 210991|0.86111 210992|0.5 210993|0.55556 210994|0.5 210995|0.5 210996|0.47222 210997|0.27778 210998|0.625 210999|0.375 211000|0.19444 211001|0.069444 211002|0.083333 211003|0.31944 211004|0.625 211005|0.40278 211006|0.54167 211007|0.5 211008|0.5 211009|0.5 211010|0.23611 211011|0.59722 211012|0.51389 211013|0.55556 211014|0.73611 211015|0.5 211016|0.54167 211017|0.44444 211018|0.38889 211019|0.58333 211020|0.625 211021|0.47222 211022|0.34722 211023|0.51389 211024|0.27778 211025|0.36111 211026|0.38889 211027|0.23611 211028|0.30556 211029|0.375 211030|0.43056 211031|0.25 211032|0.43056 211033|0.36111 211034|0.33333 211035|0.54167 211036|0.16667 211037|0.16667 211038|0.34722 211039|0.30556 211040|0.36111 211041|0.26389 211042|0.66667 211043|0.27778 211044|0.40278 211045|0.33333 211046|0.27778 211047|0.22222 211048|0.375 211049|0.33333 211050|0.45833 211051|0.33333 211052|0.55556 211053|0.36111 211054|0.72222 211055|0.625 211056|0.83333 211057|0.34722 211058|0.33333 211059|0.56944 211060|0.25 211061|0.33333 211062|0.23611 211063|0.44444 211064|0.51389 211065|0.5 211066|0.44444 211067|0.041667 211068|0.56944 211069|0.77778 211070|0.25 211071|0.25 211072|0.43056 211073|0.55556 211074|0.44444 211075|0.63889 211076|0.29167 211077|0.51389 211078|0.33333 211079|0.63889 211080|0.59722 211081|0.22222 211082|0.40278 211083|0.18056 211084|0.30556 211085|0.41667 211086|0.51389 211087|0.34722 211088|0.26389 211089|0.65278 211090|0.375 211091|0.33333 211092|0.41667 211093|0.27778 211094|0.23611 211095|0.31944 211096|0.44444 211097|0.13889 211098|0.29167 211099|0.36111 211100|0.26389 211101|0.56944 211102|0.34722 211103|0.44444 211104|0.38889 211105|0.27778 211106|0.47222 211107|0.52778 211108|0.41667 211109|0.29167 211110|0.43056 211111|0.51389 211112|0.22222 211113|0.16667 211114|0.25 211115|0.19444 211116|0.31944 211117|0.26389 211118|0.11111 211119|0.19444 211120|0.41667 211121|0.34722 211122|0.69444 211123|0.27778 211124|0.47222 211125|0.5 211126|0.5 211127|0.33333 211128|0.22222 211129|0.5 211130|0.33333 211131|0.40278 211132|0.30556 211133|0.45833 211134|0.25 211135|0.25 211136|0.36111 211137|0.38889 211138|0.33333 211139|0.34722 211140|0.083333 211141|0.5 211142|0.5 211143|0.5 211144|0.59722 211145|0.48611 211146|0.5 211147|0.5 211148|0.51389 211149|0.61111 211150|0.66667 211151|0.55556 211152|0.38889 211153|0.44444 211154|0.44444 211155|0.25 211156|0.30556 211157|0.26389 211158|0.44444 211159|0.5 211160|0.36111 211161|0.5 211162|0.20833 211163|0.34722 211164|0.22222 211165|0.5 211166|0.52778 211167|0.33333 211168|0.5 211169|0.27778 211170|0.44444 211171|0.48611 211172|0.29167 211173|0.5 211174|0.34722 211175|0.5 211176|0.16667 211177|0.5 211178|0.625 211179|0.5 211180|0.16667 211181|0.375 211182|0.52778 211183|0.30556 211184|0.30556 211185|0.44444 211186|0.33333 211187|0.25 211188|0.13889 211189|0.25 211190|0.5 211191|0.13889 211192|0.41667 211193|0.31944 211194|0.56944 211195|0.51389 211196|0.5 211197|0.5 211198|0.58333 211199|0.27778 211200|0.56944 211201|0.19444 211202|0.34722 211203|0.41667 211204|0.41667 211205|0.43056 211206|0.51389 211207|0.625 211208|0.44444 211209|0.5 211210|0.48611 211211|0.63889 211212|0.5 211213|0.5 211214|0.58333 211215|0.069444 211216|0.47222 211217|0.51389 211218|0.66667 211219|0.16667 211220|0.5 211221|0.43056 211222|0.58333 211223|0.61111 211224|0.63889 211225|0.5 211226|0.55556 211227|0.5 211228|0.5 211229|0.47222 211230|0.33333 211231|0.36111 211232|0.40278 211233|0.33333 211234|0.48611 211235|0.44444 211236|0.5 211237|0.51389 211238|0.23611 211239|0.5 211240|0.33333 211241|0.23611 211242|0.33333 211243|0.5 211244|0.43056 211245|0.38889 211246|0.5 211247|0.5 211248|0.5 211249|0.5 211250|0.5 211251|0.51389 211252|0.25 211253|0.48611 211254|0.5 211255|0.73611 211256|0.54167 211257|0.55556 211258|0.33333 211259|0.68056 211260|0.375 211261|0.45833 211262|0.29167 211263|0.27778 211264|0.36111 211265|0.26389 211266|0.44444 211267|0.29167 211268|0.5 211269|0.47222 211270|0.5 211271|0.34722 211272|0.27778 211273|0.44444 211274|0.51389 211275|0.51389 211276|0.30556 211277|0.38889 211278|0.5 211279|0.55556 211280|0.72222 211281|0.30556 211282|0.61111 211283|0.58333 211284|0.73611 211285|0.625 211286|0.47222 211287|0.18056 211288|0.54167 211289|0.55556 211290|0.5 211291|0.5 211292|0.48611 211293|0.5 211294|0.5 211295|0.38889 211296|0.44444 211297|0.55556 211298|0.30556 211299|0.5 211300|0.25 211301|0.5 211302|0.5 211303|0.73611 211304|0.5 211305|0.56944 211306|0.5 211307|0.375 211308|0.36111 211309|0.68056 211310|0.51389 211311|0.45833 211312|0.5 211313|0.375 211314|0.5 211315|0.31944 211316|0.33333 211317|0.5 211318|0.61111 211319|0.40278 211320|0.33333 211321|0.30556 211322|0.375 211323|0.5 211324|0.22222 211325|0.52778 211326|0.19444 211327|0.38889 211328|0.38889 211329|0.41667 211330|0.22222 211331|0.54167 211332|0.23611 211333|0.5 211334|0.44444 211335|0.58333 211336|0.23611 211337|0.5 211338|0.5 211339|0.5 211340|0.41667 211341|0.54167 211342|0.45833 211343|0.34722 211344|0.5 211345|0.55556 211346|0.52778 211347|0.34722 211348|0.5 211349|0.55556 211350|0.5 211351|0.63889 211352|0.58333 211353|0.29167 211354|0.34722 211355|0.16667 211356|0.45833 211357|0.5 211358|0.33333 211359|0.36111 211360|0.48611 211361|0.13889 211362|0.22222 211363|0.13889 211364|0.20833 211365|0.34722 211366|0.55556 211367|0.59722 211368|0.40278 211369|0.77778 211370|0.34722 211371|0.27778 211372|0.375 211373|0.44444 211374|0.16667 211375|0.20833 211376|0.5 211377|0.48611 211378|0.5 211379|0.77778 211380|0.61111 211381|0.48611 211382|0.48611 211383|0.38889 211384|0.38889 211385|0.41667 211386|0.45833 211387|0.30556 211388|0.22222 211389|0.54167 211390|0.5 211391|0.5 211392|0.5 211393|0.5 211394|0.5 211395|0.40278 211396|0.30556 211397|0.5 211398|0.5 211399|0.40278 211400|0.5 211401|0.5 211402|0.38889 211403|0.34722 211404|0.20833 211405|0.16667 211406|0.61111 211407|0.55556 211408|0.51389 211409|0.44444 211410|0.25 211411|0.5 211412|0.38889 211413|0.66667 211414|0.5 211415|0.44444 211416|0.43056 211417|0.375 211418|0.93056 211419|0.63889 211420|0.65278 211421|0.44444 211422|0.52778 211423|0.36111 211424|0.55556 211425|0.52778 211426|0.41667 211427|0.52778 211428|0.30556 211429|0.45833 211430|0.31944 211431|0.48611 211432|0.48611 211433|0.27778 211434|0.5 211435|0.33333 211436|0.5 211437|0.45833 211438|0.5 211439|0.5 211440|0.5 211441|0.5 211442|0.5 211443|0.26389 211444|0.20833 211445|0.18056 211446|0.52778 211447|0.40278 211448|0.19444 211449|0.625 211450|0.375 211451|0.38889 211452|0.5 211453|0.25 211454|0.5 211455|0.66667 211456|0.55556 211457|0.36111 211458|0.22222 211459|0.5 211460|0.31944 211461|0.15278 211462|0.11111 211463|0.48611 211464|0.55556 211465|0.36111 211466|0.38889 211467|0.33333 211468|0.68056 211469|0.11111 211470|0.23611 211471|0.43056 211472|0.66667 211473|0.29167 211474|0.26389 211475|0.31944 211476|0.44444 211477|0.68056 211478|0.38889 211479|0.27778 211480|0.22222 211481|0.51389 211482|0.52778 211483|0.44444 211484|0.63889 211485|0.19444 211486|0.20833 211487|0.66667 211488|0.625 211489|0.83333 211490|0.38889 211491|0.43056 211492|0.41667 211493|0.38889 211494|0.36111 211495|0.5 211496|0.61111 211497|0.5 211498|0.44444 211499|0.27778 211500|0.26389 211501|0.20833 211502|0.40278 211503|0.38889 211504|0.48611 211505|0.77778 211506|0.47222 211507|0.5 211508|0.5 211509|0.27778 211510|0.47222 211511|0.48611 211512|0.68056 211513|0.68056 211514|0.5 211515|0.30556 211516|0.5 211517|0.33333 211518|0.44444 211519|0.15278 211520|0.25 211521|0.25 211522|0.34722 211523|0.22222 211524|0.15278 211525|0.26389 211526|0.5 211527|0.70833 211528|0.41667 211529|0.34722 211530|0.34722 211531|0.5 211532|0.48611 211533|0.5 211534|0.27778 211535|0.5 211536|0.5 211537|0.48611 211538|0.5 211539|0.51389 211540|0.45833 211541|0.58333 211542|0.41667 211543|0.34722 211544|0.375 211545|0.25 211546|0.69444 211547|0.47222 211548|0.43056 211549|0.41667 211550|0.5 211551|0.5 211552|0.51389 211553|0.16667 211554|0.375 211555|0.25 211556|0.22222 211557|0.52778 211558|0.5 211559|0.38889 211560|0.72222 211561|0.69444 211562|0.54167 211563|0.5 211564|0.55556 211565|0.375 211566|0.25 211567|0.47222 211568|0.27778 211569|0.19444 211570|0.43056 211571|0.40278 211572|0.41667 211573|0.55556 211574|0.27778 211575|0.23611 211576|0.22222 211577|0.44444 211578|0.43056 211579|0.51389 211580|0.22222 211581|0.56944 211582|0.40278 211583|0.52778 211584|0.52778 211585|0.5 211586|0.5 211587|0.18056 211588|0.18056 211589|0.375 211590|0.26389 211591|0.27778 211592|0.5 211593|0.41667 211594|0.58333 211595|0.38889 211596|0.36111 211597|0.33333 211598|0.38889 211599|0.29167 211600|0.40278 211601|0.31944 211602|0.30556 211603|0.30556 211604|0.375 211605|0.375 211606|0.26389 211607|0.34722 211608|0.36111 211609|0.43056 211610|0.65278 211611|0.44444 211612|0.45833 211613|0.59722 211614|0.68056 211615|0.52778 211616|0.5 211617|0.61111 211618|0.54167 211619|0.41667 211620|0.38889 211621|0.5 211622|0.38889 211623|0.625 211624|0.23611 211625|0.47222 211626|0.44444 211627|0.30556 211628|0.30556 211629|0.45833 211630|0.47222 211631|0.22222 211632|0.56944 211633|0.27778 211634|0.36111 211635|0.5 211636|0.25 211637|0.16667 211638|0.44444 211639|0.40278 211640|0.48611 211641|0.13889 211642|0.22222 211643|0.55556 211644|0.5 211645|0.5 211646|0.625 211647|0.5 211648|0.055556 211649|0.5 211650|0.5 211651|0.58333 211652|0.72222 211653|0.5 211654|0.52778 211655|0.375 211656|0.63889 211657|0.45833 211658|0.47222 211659|0.61111 211660|0.40278 211661|0.16667 211662|0.5 211663|0.5 211664|0.65278 211665|0.76389 211666|0.51389 211667|0.5 211668|0.5 211669|0.5 211670|0.30556 211671|0.44444 211672|0.31944 211673|0.22222 211674|0.29167 211675|0.22222 211676|0.30556 211677|0.25 211678|0.097222 211679|0.13889 211680|0.27778 211681|0.375 211682|0.5 211683|0.47222 211684|0.5 211685|0.34722 211686|0.23611 211687|0.36111 211688|0.20833 211689|0.5 211690|0.44444 211691|0.54167 211692|0.22222 211693|0.5 211694|0.40278 211695|0.41667 211696|0.5 211697|0.38889 211698|0.41667 211699|0.65278 211700|0.38889 211701|0.18056 211702|0.25 211703|0.16667 211704|0.13889 211705|0.041667 211706|0.11111 211707|0.38889 211708|0.375 211709|0.48611 211710|0.33333 211711|0.27778 211712|0.13889 211713|0.375 211714|0.25 211715|0.5 211716|0.5 211717|0.30556 211718|0.22222 211719|0.29167 211720|0.16667 211721|0.25 211722|0.15278 211723|0.51389 211724|0.51389 211725|0.20833 211726|0.34722 211727|0.45833 211728|0.5 211729|0.40278 211730|0.5 211731|0.5 211732|0.5 211733|0.5 211734|0.41667 211735|0.29167 211736|0.52778 211737|0.375 211738|0.48611 211739|0.54167 211740|0.22222 211741|0.25 211742|0.11111 211743|0.083333 211744|0.47222 211745|0.45833 211746|0.5 211747|0.41667 211748|0.45833 211749|0.45833 211750|0.29167 211751|0.33333 211752|0.5 211753|0.43056 211754|0.30556 211755|0.44444 211756|0.52778 211757|0.055556 211758|0.013889 211759|0.16667 211760|0.44444 211761|0.36111 211762|0.30556 211763|0.68056 211764|0.48611 211765|0.58333 211766|0.25 211767|0.69444 211768|0.44444 211769|0.5 211770|0.083333 211771|0.22222 211772|0.15278 211773|0.55556 211774|0.48611 211775|0.51389 211776|0.5 211777|0.48611 211778|0.66667 211779|0.63889 211780|0.73611 211781|0.75 211782|0.65278 211783|0.30556 211784|0.5 211785|0.55556 211786|0.48611 211787|0.34722 211788|0.65278 211789|0.29167 211790|0.25 211791|0.31944 211792|0.44444 211793|0.27778 211794|0.38889 211795|0.34722 211796|0.5 211797|0.44444 211798|0.34722 211799|0.44444 211800|0.29167 211801|0.31944 211802|0.33333 211803|0.22222 211804|0.19444 211805|0.22222 211806|0.19444 211807|0.31944 211808|0.31944 211809|0.44444 211810|0.38889 211811|0.22222 211812|0.40278 211813|0.11111 211814|0.30556 211815|0.43056 211816|0.36111 211817|0.26389 211818|0.16667 211819|0.25 211820|0.25 211821|0.5 211822|0.44444 211823|0.40278 211824|0.44444 211825|0.45833 211826|0.44444 211827|0.44444 211828|0.27778 211829|0.27778 211830|0.31944 211831|0.58333 211832|0.40278 211833|0.23611 211834|0.34722 211835|0.30556 211836|0.29167 211837|0.5 211838|0.13889 211839|0.5 211840|0.51389 211841|0.5 211842|0.52778 211843|0.48611 211844|0.47222 211845|0.55556 211846|0.81944 211847|0.61111 211848|0.55556 211849|0.5 211850|0.5 211851|0.68056 211852|0.52778 211853|0.38889 211854|0.5 211855|0.52778 211856|0.51389 211857|0.48611 211858|0.52778 211859|0.59722 211860|0.38889 211861|0.58333 211862|0.91667 211863|0.38889 211864|0.33333 211865|0.20833 211866|0.22222 211867|0.31944 211868|0.5 211869|0.5 211870|0.70833 211871|0.31944 211872|0.51389 211873|0.45833 211874|0.40278 211875|0.47222 211876|0.43056 211877|0.58333 211878|0.45833 211879|0.51389 211880|0.25 211881|0.125 211882|0.27778 211883|0.45833 211884|0.44444 211885|0.79167 211886|0.22222 211887|0.19444 211888|0.5 211889|0.58333 211890|0.45833 211891|0.43056 211892|0.33333 211893|0.5 211894|0.55556 211895|0.11111 211896|0.43056 211897|0.29167 211898|0.45833 211899|0.34722 211900|0.5 211901|0.5 211902|0.5 211903|0.31944 211904|0.45833 211905|0.19444 211906|0.22222 211907|0.61111 211908|0.27778 211909|0.31944 211910|0.48611 211911|0.30556 211912|0.48611 211913|0.23611 211914|0.72222 211915|0.5 211916|0.375 211917|0.47222 211918|0.40278 211919|0.43056 211920|0.11111 211921|0.59722 211922|0.41667 211923|0.30556 211924|0.19444 211925|0.45833 211926|0.5 211927|0.375 211928|0.34722 211929|0.16667 211930|0.56944 211931|0.56944 211932|0.56944 211933|0.34722 211934|0.38889 211935|0.5 211936|0.44444 211937|0.23611 211938|0.51389 211939|0.56944 211940|0.29167 211941|0.40278 211942|0.51389 211943|0.83333 211944|0.25 211945|0.34722 211946|0.33333 211947|0.5 211948|0.31944 211949|0.34722 211950|0.23611 211951|0.34722 211952|0.25 211953|0.43056 211954|0.36111 211955|0.22222 211956|0.56944 211957|0.51389 211958|0.5 211959|0.36111 211960|0.27778 211961|0.54167 211962|0.38889 211963|0.55556 211964|0.375 211965|0.38889 211966|0.30556 211967|0.23611 211968|0.79167 211969|0.63889 211970|0.19444 211971|0.5 211972|0.40278 211973|0.56944 211974|0.41667 211975|0.44444 211976|0.22222 211977|0.30556 211978|0.36111 211979|0.5 211980|0.29167 211981|0.31944 211982|0.23611 211983|0.5 211984|0.59722 211985|0.5 211986|0.31944 211987|0.26389 211988|0.34722 211989|0.31944 211990|0.16667 211991|0.5 211992|0.33333 211993|0.47222 211994|0.30556 211995|0.22222 211996|0.33333 211997|0.47222 211998|0.45833 211999|0.52778 212000|0.26389 212001|0.51389 212002|0.33333 212003|0.38889 212004|0.375 212005|0.18056 212006|0.47222 212007|0.625 212008|0.30556 212009|0.48611 212010|0.27778 212011|0.66667 212012|0.43056 212013|0.16667 212014|0.27778 212015|0.48611 212016|0.43056 212017|0.23611 212018|0.16667 212019|0.33333 212020|0.58333 212021|0.38889 212022|0.33333 212023|0.43056 212024|0.47222 212025|0.36111 212026|0.33333 212027|0.30556 212028|0.48611 212029|0.45833 212030|0.5 212031|0.51389 212032|0.52778 212033|0.5 212034|0.44444 212035|0.41667 212036|0.51389 212037|0.43056 212038|0.45833 212039|0.5 212040|0.5 212041|0.63889 212042|0.51389 212043|0.5 212044|0.55556 212045|0.55556 212046|0.5 212047|0.66667 212048|0.5 212049|0.55556 212050|0.47222 212051|0.58333 212052|0.51389 212053|0.44444 212054|0.27778 212055|0.47222 212056|0.27778 212057|0.20833 212058|0.5 212059|0.5 212060|0.66667 212061|0.29167 212062|0.79167 212063|0.61111 212064|0.83333 212065|0.68056 212066|0.83333 212067|0.34722 212068|0.45833 212069|0.55556 212070|0.61111 212071|0.22222 212072|0.59722 212073|0.68056 212074|0.58333 212075|0.47222 212076|0.29167 212077|0.5 212078|0.5 212079|0.44444 212080|0.15278 212081|0.66667 212082|0.375 212083|0.56944 212084|0.5 212085|0.55556 212086|0.65278 212087|0.59722 212088|0.66667 212089|0.55556 212090|0.58333 212091|0.33333 212092|0.69444 212093|0.70833 212094|0.73611 212095|0.58333 212096|0.70833 212097|0.72222 212098|0.66667 212099|0.68056 212100|0.48611 212101|0.31944 212102|0.76389 212103|0.51389 212104|0.5 212105|0.54167 212106|0.625 212107|0.625 212108|0.31944 212109|0.18056 212110|0.40278 212111|0.55556 212112|0.66667 212113|0.5 212114|0.44444 212115|0.68056 212116|0.66667 212117|0.5 212118|0.43056 212119|0.41667 212120|0.27778 212121|0.38889 212122|0.38889 212123|0.20833 212124|0.055556 212125|0.625 212126|0.56944 212127|0.51389 212128|0.625 212129|0.63889 212130|0.61111 212131|0.5 212132|0.72222 212133|0.5 212134|0.55556 212135|0.5 212136|0.66667 212137|0.5 212138|0.63889 212139|0.5 212140|0.51389 212141|0.70833 212142|0.66667 212143|0.27778 212144|0.22222 212145|0.083333 212146|0.30556 212147|0.5 212148|0.68056 212149|0.5 212150|0.44444 212151|0.79167 212152|0.79167 212153|0.625 212154|0.59722 212155|0.52778 212156|0.76389 212157|0.625 212158|0.52778 212159|0.30556 212160|0.43056 212161|0.27778 212162|0.625 212163|0.51389 212164|0.13889 212165|0.68056 212166|0.66667 212167|0.72222 212168|0.55556 212169|0.33333 212170|0.63889 212171|0.55556 212172|0.5 212173|0.41667 212174|0.5 212175|0.41667 212176|0.31944 212177|0.30556 212178|0.5 212179|0.44444 212180|0.30556 212181|0.55556 212182|0.45833 212183|0.48611 212184|0.65278 212185|0.43056 212186|0.29167 212187|0.5 212188|0.31944 212189|0.5 212190|0.90278 212191|0.27778 212192|0.375 212193|0.5 212194|0.73611 212195|0.31944 212196|0.55556 212197|0.61111 212198|0.44444 212199|0.47222 212200|0.56944 212201|0.33333 212202|0.20833 212203|0.65278 212204|0.54167 212205|0.66667 212206|0.30556 212207|0.625 212208|0.47222 212209|0.36111 212210|0.29167 212211|0.52778 212212|0.52778 212213|0.5 212214|0.45833 212215|0.34722 212216|0.66667 212217|0.76389 212218|0.041667 212219|0.69444 212220|0.52778 212221|0.59722 212222|0.40278 212223|0.68056 212224|0.34722 212225|0.34722 212226|0.27778 212227|0.44444 212228|0.58333 212229|0.31944 212230|0.5 212231|0.5 212232|0.45833 212233|0.44444 212234|0.22222 212235|0.47222 212236|0.55556 212237|0.375 212238|0.29167 212239|0.52778 212240|0.61111 212241|0.55556 212242|0.45833 212243|0.16667 212244|0.5 212245|0.20833 212246|0.33333 212247|0.58333 212248|0.34722 212249|0.40278 212250|0.30556 212251|0.11111 212252|0.375 212253|0.52778 212254|0.43056 212255|0.40278 212256|0.65278 212257|0.5 212258|0.22222 212259|0.27778 212260|0.61111 212261|0.5 212262|0.59722 212263|0.27778 212264|0.19444 212265|0.51389 212266|0.36111 212267|0.27778 212268|0.25 212269|0.13889 212270|0.26389 212271|0.40278 212272|0.20833 212273|0.25 212274|0.23611 212275|0.38889 212276|0.5 212277|0.5 212278|0.48611 212279|0.5 212280|0.5 212281|0.34722 212282|0.5 212283|0.66667 212284|0.27778 212285|0.29167 212286|0.5 212287|0.5 212288|0.59722 212289|0.47222 212290|0.5 212291|0.5 212292|0.5 212293|0.77778 212294|0.5 212295|0.55556 212296|0.88889 212297|0.30556 212298|0.055556 212299|0.45833 212300|0.41667 212301|0.56944 212302|0.36111 212303|0.38889 212304|0.63889 212305|0.65278 212306|0.43056 212307|0.625 212308|0.38889 212309|0.33333 212310|0.625 212311|0.40278 212312|0.20833 212313|0.44444 212314|0.51389 212315|0.5 212316|0.44444 212317|0.51389 212318|0.55556 212319|0.52778 212320|0.16667 212321|0.11111 212322|0.5 212323|0.48611 212324|0.5 212325|0.27778 212326|0.31944 212327|0.48611 212328|0.38889 212329|0.54167 212330|0.55556 212331|0.27778 212332|0.63889 212333|0.70833 212334|0.73611 212335|0.5 212336|0.5 212337|0.27778 212338|0.33333 212339|0.43056 212340|0.5 212341|0.51389 212342|0.19444 212343|0.27778 212344|0.5 212345|0.44444 212346|0.43056 212347|0.20833 212348|0.23611 212349|0.25 212350|0.25 212351|0.11111 212352|0.52778 212353|0.47222 212354|0.19444 212355|0.55556 212356|0.58333 212357|0.5 212358|0.41667 212359|0.26389 212360|0.27778 212361|0.38889 212362|0.80556 212363|0.58333 212364|0.5 212365|0.45833 212366|0.375 212367|0.51389 212368|0.38889 212369|0.84722 212370|0.77778 212371|0.41667 212372|0.27778 212373|0.44444 212374|0.44444 212375|0.36111 212376|0.52778 212377|0.5 212378|0.47222 212379|0.55556 212380|0.51389 212381|0.52778 212382|0.55556 212383|0.38889 212384|0.47222 212385|0.69444 212386|0.30556 212387|0.5 212388|0.5 212389|0.52778 212390|0.31944 212391|0.5 212392|0.34722 212393|0.65278 212394|0.61111 212395|0.48611 212396|0.5 212397|0.58333 212398|0.63889 212399|0.22222 212400|0.55556 212401|0.51389 212402|0.22222 212403|0.65278 212404|0.5 212405|0.23611 212406|0.125 212407|0.33333 212408|0.34722 212409|0.375 212410|0.54167 212411|0.38889 212412|0.68056 212413|0.625 212414|0.58333 212415|0.73611 212416|0.45833 212417|0.54167 212418|0.44444 212419|0.48611 212420|0.30556 212421|0.40278 212422|0.22222 212423|0.44444 212424|0.45833 212425|0.5 212426|0.48611 212427|0.5 212428|0.44444 212429|0.51389 212430|0.5 212431|0.375 212432|0.30556 212433|0.38889 212434|0.34722 212435|0.16667 212436|0.23611 212437|0.31944 212438|0.375 212439|0 212440|0.40278 212441|0.86111 212442|0.375 212443|0.40278 212444|0.33333 212445|0.25 212446|0.38889 212447|0.34722 212448|0.59722 212449|0.56944 212450|0.58333 212451|0.51389 212452|0.44444 212453|0.56944 212454|0.43056 212455|0.19444 212456|0.5 212457|0.56944 212458|0.73611 212459|0.44444 212460|0.38889 212461|0.43056 212462|0.27778 212463|0.33333 212464|0.40278 212465|0.48611 212466|0.51389 212467|0.48611 212468|0.26389 212469|0.20833 212470|0.5 212471|0.44444 212472|0.19444 212473|0.20833 212474|0.5 212475|0.5 212476|0.5 212477|0.72222 212478|0.38889 212479|0.5 212480|0.5 212481|0.38889 212482|0.47222 212483|0.5 212484|0.52778 212485|0.27778 212486|0.36111 212487|0.22222 212488|0.41667 212489|0.55556 212490|0.5 212491|0.51389 212492|0.5 212493|0.5 212494|0.5 212495|0.41667 212496|0.29167 212497|0.65278 212498|0.25 212499|0.5 212500|0.55556 212501|0.56944 212502|0.5 212503|0.44444 212504|0.51389 212505|0.34722 212506|0.5 212507|0.5 212508|0.40278 212509|0.54167 212510|0.22222 212511|0.34722 212512|0.27778 212513|0.38889 212514|0.58333 212515|0.48611 212516|0.13889 212517|0.19444 212518|0.083333 212519|0.11111 212520|0.625 212521|0.29167 212522|0.30556 212523|0.5 212524|0.375 212525|0.26389 212526|0.5 212527|0.5 212528|0.38889 212529|0.47222 212530|0.34722 212531|0.40278 212532|0.375 212533|0.31944 212534|0.26389 212535|0.51389 212536|0.40278 212537|0.54167 212538|0.48611 212539|0.44444 212540|0.59722 212541|0.59722 212542|0.66667 212543|0.66667 212544|0.5 212545|0.5 212546|0.22222 212547|0.5 212548|0.44444 212549|0.30556 212550|0.375 212551|0.68056 212552|0.375 212553|0.5 212554|0.20833 212555|0.55556 212556|0.5 212557|0.52778 212558|0.55556 212559|0.16667 212560|0.27778 212561|0.16667 212562|0.33333 212563|0.36111 212564|0.43056 212565|0.36111 212566|0.33333 212567|0.25 212568|0.16667 212569|0.5 212570|0.5 212571|0.29167 212572|0.44444 212573|0.36111 212574|0.36111 212575|0.59722 212576|0.56944 212577|0.38889 212578|0.36111 212579|0.25 212580|0.16667 212581|0.16667 212582|0.47222 212583|0.15278 212584|0.20833 212585|0.45833 212586|0.29167 212587|0.56944 212588|0.30556 212589|0.30556 212590|0.5 212591|0.33333 212592|0.26389 212593|0.33333 212594|0.19444 212595|0.59722 212596|0.23611 212597|0.30556 212598|0.5 212599|0.31944 212600|0.125 212601|0.18056 212602|0.26389 212603|0.44444 212604|0.26389 212605|0.54167 212606|0.5 212607|0.5 212608|0.36111 212609|0.66667 212610|0.47222 212611|0.38889 212612|0.15278 212613|0.5 212614|0.5 212615|0.5 212616|0.40278 212617|0.40278 212618|0.61111 212619|0.5 212620|0.65278 212621|0.5 212622|0.55556 212623|0.38889 212624|0.30556 212625|0.43056 212626|0.36111 212627|0.47222 212628|0.22222 212629|0.31944 212630|0.30556 212631|0.40278 212632|0.5 212633|0.5 212634|0.43056 212635|0.48611 212636|0.45833 212637|0.5 212638|0.5 212639|0.34722 212640|0.27778 212641|0.31944 212642|0.44444 212643|0.55556 212644|0.48611 212645|0.44444 212646|0.47222 212647|0.44444 212648|0.48611 212649|0.54167 212650|0.30556 212651|0.19444 212652|0.29167 212653|0.22222 212654|0.18056 212655|0.51389 212656|0.34722 212657|0.59722 212658|0.5 212659|0.41667 212660|0.41667 212661|0.19444 212662|0.41667 212663|0.44444 212664|0.34722 212665|0.36111 212666|0.38889 212667|0.38889 212668|0.26389 212669|0.36111 212670|0.30556 212671|0.30556 212672|0.45833 212673|0.47222 212674|0.44444 212675|0.45833 212676|0.61111 212677|0.59722 212678|0.61111 212679|0.27778 212680|0.5 212681|0.51389 212682|0.5 212683|0.44444 212684|0.375 212685|0.47222 212686|0.18056 212687|0.11111 212688|0.63889 212689|0.22222 212690|0.68056 212691|0.86111 212692|0.86111 212693|0.86111 212694|0.63889 212695|0.76389 212696|0.68056 212697|0.68056 212698|0.59722 212699|0.72222 212700|0.70833 212701|0.52778 212702|0.38889 212703|0.52778 212704|0.5 212705|0.41667 212706|0.55556 212707|0.48611 212708|0.13889 212709|0.38889 212710|0.33333 212711|0.45833 212712|0.41667 212713|0.38889 212714|0.5 212715|0.36111 212716|0.15278 212717|0.5 212718|0.33333 212719|0.52778 212720|0.56944 212721|0.38889 212722|0.54167 212723|0.33333 212724|0.48611 212725|0.5 212726|0.40278 212727|0.38889 212728|0.26389 212729|0.34722 212730|0.30556 212731|0.41667 212732|0.5 212733|0.83333 212734|0.75 212735|0.36111 212736|0.56944 212737|0.55556 212738|0.5 212739|0.58333 212740|0.52778 212741|0.51389 212742|0.097222 212743|0.375 212744|0.33333 212745|0.375 212746|0.25 212747|0.069444 212748|0.11111 212749|0.26389 212750|0.47222 212751|0.76389 212752|0.38889 212753|0.40278 212754|0.56944 212755|0.5 212756|0.22222 212757|0.52778 212758|0.52778 212759|0.55556 212760|0.65278 212761|0.625 212762|0.69444 212763|0.55556 212764|0.61111 212765|0.61111 212766|0.40278 212767|0.25 212768|0.29167 212769|0.72222 212770|0.54167 212771|0.5 212772|0.5 212773|0.59722 212774|0.30556 212775|0.5 212776|0.48611 212777|0.51389 212778|0.41667 212779|0.23611 212780|0.47222 212781|0.61111 212782|0.47222 212783|0.5 212784|0.5 212785|0.5 212786|0.65278 212787|0.47222 212788|0.44444 212789|0.44444 212790|0.43056 212791|0.27778 212792|0.375 212793|0.375 212794|0.5 212795|0.68056 212796|0.44444 212797|0.27778 212798|0.31944 212799|0.40278 212800|0.52778 212801|0.5 212802|0.63889 212803|0.55556 212804|0.47222 212805|0.75 212806|0.65278 212807|0.5 212808|0.38889 212809|0.375 212810|0.18056 212811|0.68056 212812|0.069444 212813|0.16667 212814|0.31944 212815|0.54167 212816|0.75 212817|0.097222 212818|0.22222 212819|0.25 212820|0.33333 212821|0.20833 212822|0.33333 212823|0.51389 212824|0.5 212825|0.43056 212826|0.29167 212827|0.83333 212828|0.66667 212829|0.26389 212830|0.15278 212831|0.73611 212832|0.11111 212833|0.22222 212834|0.55556 212835|0.36111 212836|0.33333 212837|0.69444 212838|0.875 212839|0.76389 212840|0.48611 212841|0.5 212842|0.56944 212843|0.77778 212844|0.34722 212845|0.56944 212846|0.34722 212847|0.41667 212848|0.55556 212849|0.51389 212850|0.22222 212851|0.55556 212852|0.22222 212853|0.40278 212854|0.375 212855|0.22222 212856|0.76389 212857|0.29167 212858|0.5 212859|0.48611 212860|0.38889 212861|0.48611 212862|0.18056 212863|0.43056 212864|0.48611 212865|0.31944 212866|0.375 212867|0.29167 212868|0.23611 212869|0.33333 212870|0.38889 212871|0.15278 212872|0.30556 212873|0.40278 212874|0.22222 212875|0.34722 212876|0.15278 212877|0.083333 212878|0.5 212879|0.19444 212880|0.31944 212881|0.25 212882|0.30556 212883|0.15278 212884|0.125 212885|0.25 212886|0.20833 212887|0.29167 212888|0.23611 212889|0.45833 212890|0.36111 212891|0.43056 212892|0.52778 212893|0.52778 212894|0.36111 212895|0.22222 212896|0.58333 212897|0.72222 212898|0.72222 212899|0.63889 212900|0.61111 212901|0.38889 212902|0.25 212903|0.29167 212904|0.43056 212905|0.36111 212906|0.27778 212907|0.58333 212908|0.44444 212909|0.72222 212910|0.5 212911|0.38889 212912|0.48611 212913|0.5 212914|0.33333 212915|0.56944 212916|0.66667 212917|0.41667 212918|0.18056 212919|0.20833 212920|0.30556 212921|0.43056 212922|0.38889 212923|0.48611 212924|0.38889 212925|0.20833 212926|0.15278 212927|0.54167 212928|0.56944 212929|0.625 212930|0.81944 212931|0.52778 212932|0.52778 212933|0.30556 212934|0.59722 212935|0.5 212936|0.43056 212937|0.25 212938|0.5 212939|0.55556 212940|0.5 212941|0.55556 212942|0.5 212943|0.41667 212944|0.36111 212945|0.44444 212946|0.27778 212947|0.375 212948|0.55556 212949|0.47222 212950|0.43056 212951|0.44444 212952|0.43056 212953|0.5 212954|0.33333 212955|0.5 212956|0.54167 212957|0.41667 212958|0.83333 212959|0.68056 212960|0.30556 212961|0.51389 212962|0.26389 212963|0.70833 212964|0.47222 212965|0.375 212966|0.15278 212967|0.36111 212968|0.5 212969|0.5 212970|0.47222 212971|0.51389 212972|0.5 212973|0.61111 212974|0.51389 212975|0.72222 212976|0.48611 212977|0.36111 212978|0.68056 212979|0.72222 212980|0.23611 212981|0.52778 212982|0.27778 212983|0.41667 212984|0.54167 212985|0.40278 212986|0.30556 212987|0.375 212988|0.23611 212989|0.375 212990|0.55556 212991|0.31944 212992|0.55556 212993|0.375 212994|0.5 212995|0.5 212996|0.51389 212997|0.56944 212998|0.20833 212999|0.19444 213000|0.5 213001|0.5 213002|0.44444 213003|0.59722 213004|0.40278 213005|0.5 213006|0.055556 213007|0.29167 213008|0.51389 213009|0.43056 213010|0.44444 213011|0.30556 213012|0.47222 213013|0.72222 213014|0.75 213015|0.76389 213016|0.58333 213017|0.5 213018|0.61111 213019|0.77778 213020|0.52778 213021|0.41667 213022|0.72222 213023|0.45833 213024|0.65278 213025|0.625 213026|0.69444 213027|0.44444 213028|0.26389 213029|0.47222 213030|0.66667 213031|0.5 213032|0.18056 213033|0.27778 213034|0.55556 213035|0.5 213036|0.73611 213037|0.44444 213038|0.5 213039|0.33333 213040|0.30556 213041|0.5 213042|0.43056 213043|0.48611 213044|0.75 213045|0.73611 213046|0.55556 213047|0.73611 213048|0.5 213049|0.5 213050|0.63889 213051|0.51389 213052|0.47222 213053|0.27778 213054|0.48611 213055|0.44444 213056|0.54167 213057|0.59722 213058|0.38889 213059|0.5 213060|0.54167 213061|0.75 213062|0.61111 213063|0.47222 213064|0.51389 213065|0.5 213066|0.5 213067|0.5 213068|0.16667 213069|0.5 213070|0.72222 213071|0.5 213072|0.45833 213073|0.5 213074|0.54167 213075|0.33333 213076|0.30556 213077|0.58333 213078|0.48611 213079|0.36111 213080|0.29167 213081|0.29167 213082|0.22222 213083|0.5 213084|0.15278 213085|0.5 213086|0.5 213087|0.36111 213088|0.36111 213089|0.33333 213090|0.56944 213091|0.29167 213092|0.51389 213093|0.5 213094|0.52778 213095|0.5 213096|0.25 213097|0.5 213098|0.43056 213099|0.5 213100|0.5 213101|0.23611 213102|0.22222 213103|0.52778 213104|0.33333 213105|0.44444 213106|0.5 213107|0.25 213108|0.58333 213109|0.69444 213110|0.66667 213111|0.68056 213112|0.31944 213113|0.44444 213114|0.31944 213115|0.40278 213116|0.54167 213117|0.38889 213118|0.59722 213119|0.20833 213120|0.125 213121|0.52778 213122|0.51389 213123|0.44444 213124|0.48611 213125|0.33333 213126|0.48611 213127|0.55556 213128|0.23611 213129|0.52778 213130|0.16667 213131|0.30556 213132|0.65278 213133|0.44444 213134|0.5 213135|0.31944 213136|0.16667 213137|0.73611 213138|0.77778 213139|0.625 213140|0.18056 213141|0.27778 213142|0.44444 213143|0.33333 213144|0.41667 213145|0.44444 213146|0.51389 213147|0.61111 213148|0.5 213149|0.31944 213150|0.34722 213151|0.27778 213152|0.51389 213153|0.55556 213154|0.5 213155|0.40278 213156|0.47222 213157|0.65278 213158|0.5 213159|0.5 213160|0.44444 213161|0.5 213162|0.27778 213163|0.47222 213164|0.27778 213165|0.51389 213166|0.51389 213167|0.625 213168|0.40278 213169|0.38889 213170|0.51389 213171|0.51389 213172|0.72222 213173|0.68056 213174|0.73611 213175|0.77778 213176|0.61111 213177|0.51389 213178|0.5 213179|0.25 213180|0.38889 213181|0.44444 213182|0.16667 213183|0.5 213184|0.5 213185|0.5 213186|0.51389 213187|0.5 213188|0.44444 213189|0.38889 213190|0.41667 213191|0.40278 213192|0.31944 213193|0.51389 213194|0.47222 213195|0.5 213196|0.5 213197|0.38889 213198|0.23611 213199|0.69444 213200|0.72222 213201|0.27778 213202|0.45833 213203|0.51389 213204|0.31944 213205|0.44444 213206|0.58333 213207|0.56944 213208|0.61111 213209|0.59722 213210|0.54167 213211|0.76389 213212|0.44444 213213|0.40278 213214|0.29167 213215|0.13889 213216|0.43056 213217|0.43056 213218|0.13889 213219|0.5 213220|0.5 213221|0.5 213222|0.55556 213223|0.47222 213224|0.55556 213225|0.5 213226|0.40278 213227|0.5 213228|0.5 213229|0.56944 213230|0.45833 213231|0.5 213232|0.59722 213233|0.23611 213234|0.29167 213235|0.25 213236|0.48611 213237|0.66667 213238|0.44444 213239|0.45833 213240|0.5 213241|0.625 213242|0.38889 213243|0.38889 213244|0.41667 213245|0.40278 213246|0.34722 213247|0.34722 213248|0.5 213249|0.55556 213250|0.44444 213251|0.44444 213252|0.47222 213253|0.5 213254|0.44444 213255|0.375 213256|0.5 213257|0.5 213258|0.5 213259|0.51389 213260|0.5 213261|0.48611 213262|0.5 213263|0.44444 213264|0.22222 213265|0.68056 213266|0.52778 213267|0.44444 213268|0.44444 213269|0.16667 213270|0.44444 213271|0.44444 213272|0.23611 213273|0.5 213274|0.29167 213275|0.31944 213276|0.38889 213277|0.58333 213278|0.23611 213279|0.43056 213280|0.25 213281|0.19444 213282|0.375 213283|0.38889 213284|0.36111 213285|0.5 213286|0.54167 213287|0.5 213288|0.5 213289|0.11111 213290|0.44444 213291|0.20833 213292|0.69444 213293|0.48611 213294|0.38889 213295|0.26389 213296|0.29167 213297|0.38889 213298|0.44444 213299|0.625 213300|0.72222 213301|0.70833 213302|0.48611 213303|0.29167 213304|0.38889 213305|0.22222 213306|0.5 213307|0.34722 213308|0.44444 213309|0.70833 213310|0.63889 213311|0.47222 213312|0.5 213313|0.5 213314|0.44444 213315|0.25 213316|0.11111 213317|0.069444 213318|0.125 213319|0.069444 213320|0.069444 213321|0.013889 213322|0.16667 213323|0.16667 213324|0.13889 213325|0.125 213326|0.16667 213327|0.77778 213328|0.59722 213329|0.29167 213330|0.44444 213331|0.41667 213332|0.5 213333|0.47222 213334|0.5 213335|0.65278 213336|0.48611 213337|0.58333 213338|0.58333 213339|0.47222 213340|0.47222 213341|0.55556 213342|0.44444 213343|0.33333 213344|0.5 213345|0.55556 213346|0.51389 213347|0.72222 213348|0.51389 213349|0.5 213350|0.55556 213351|0.5 213352|0.55556 213353|0.5 213354|0.375 213355|0.5 213356|0.55556 213357|0.33333 213358|0.41667 213359|0.43056 213360|0.5 213361|0.29167 213362|0.33333 213363|0.34722 213364|0.5 213365|0.55556 213366|0.52778 213367|0.16667 213368|0.52778 213369|0.33333 213370|0.52778 213371|0.33333 213372|0.5 213373|0.38889 213374|0.48611 213375|0.5 213376|0.58333 213377|0.16667 213378|0.45833 213379|0.5 213380|0.5 213381|0.55556 213382|0.51389 213383|0.5 213384|0.5 213385|0.44444 213386|0.5 213387|0.5 213388|0.45833 213389|0.44444 213390|0.79167 213391|0.38889 213392|0.5 213393|0.45833 213394|0.66667 213395|0.45833 213396|0.5 213397|0.48611 213398|0.45833 213399|0.58333 213400|0.47222 213401|0.44444 213402|0.51389 213403|0.48611 213404|0.38889 213405|0.55556 213406|0.5 213407|0.44444 213408|0.38889 213409|0.5 213410|0.51389 213411|0.54167 213412|0.48611 213413|0.45833 213414|0.48611 213415|0.44444 213416|0.61111 213417|0.47222 213418|0.5 213419|0.48611 213420|0.43056 213421|0.55556 213422|0.38889 213423|0.5 213424|0.66667 213425|0.5 213426|0.5 213427|0.34722 213428|0.48611 213429|0.5 213430|0.5 213431|0.5 213432|0.44444 213433|0.5 213434|0.45833 213435|0.41667 213436|0.20833 213437|0.43056 213438|0.51389 213439|0.38889 213440|0.5 213441|0.48611 213442|0.44444 213443|0.18056 213444|0.15278 213445|0.66667 213446|0.38889 213447|0.30556 213448|0.5 213449|0.5 213450|0.5 213451|0.27778 213452|0.45833 213453|0.40278 213454|0.48611 213455|0.47222 213456|0.5 213457|0.52778 213458|0.56944 213459|0.47222 213460|0.5 213461|0.41667 213462|0.52778 213463|0.26389 213464|0.5 213465|0.55556 213466|0.47222 213467|0.58333 213468|0.45833 213469|0.44444 213470|0.33333 213471|0.31944 213472|0.70833 213473|0.52778 213474|0.58333 213475|0.43056 213476|0.30556 213477|0.26389 213478|0.72222 213479|0.58333 213480|0.34722 213481|0.56944 213482|0.73611 213483|0.5 213484|0.11111 213485|0.27778 213486|0.23611 213487|0.5 213488|0.25 213489|0.16667 213490|0.51389 213491|0.47222 213492|0.31944 213493|0.43056 213494|0.27778 213495|0.33333 213496|0.16667 213497|0.29167 213498|0.20833 213499|0.30556 213500|0.48611 213501|0.16667 213502|0.25 213503|0.375 213504|0.52778 213505|0.45833 213506|0.13889 213507|0.27778 213508|0.51389 213509|0.26389 213510|0.41667 213511|0.44444 213512|0.5 213513|0.73611 213514|0.43056 213515|0.19444 213516|0.5 213517|0.44444 213518|0.56944 213519|0.30556 213520|0.5 213521|0.34722 213522|0.47222 213523|0.5 213524|0.31944 213525|0.23611 213526|0.36111 213527|0.40278 213528|0.44444 213529|0.44444 213530|0.27778 213531|0.44444 213532|0.43056 213533|0.36111 213534|0.25 213535|0.30556 213536|0.36111 213537|0.55556 213538|0.58333 213539|0.48611 213540|0.5 213541|0.26389 213542|0.34722 213543|0.16667 213544|0.48611 213545|0.26389 213546|0.125 213547|0.33333 213548|0.48611 213549|0.26389 213550|0.38889 213551|0.56944 213552|0.31944 213553|0.55556 213554|0.33333 213555|0.33333 213556|0.375 213557|0.36111 213558|0.40278 213559|0.73611 213560|0.58333 213561|0.58333 213562|0.5 213563|0.38889 213564|0.55556 213565|0.5 213566|0.15278 213567|0.61111 213568|0.58333 213569|0.52778 213570|0.22222 213571|0.36111 213572|0.33333 213573|0.55556 213574|0.58333 213575|0.30556 213576|0.33333 213577|0.65278 213578|0.48611 213579|0.47222 213580|0.63889 213581|0.44444 213582|0.30556 213583|0.5 213584|0.48611 213585|0.875 213586|0.5 213587|0.44444 213588|0.29167 213589|0.44444 213590|0.33333 213591|0.44444 213592|0.34722 213593|0.27778 213594|0.44444 213595|0.59722 213596|0.5 213597|0.51389 213598|0.40278 213599|0.5 213600|0.19444 213601|0.30556 213602|0.48611 213603|0.47222 213604|0.40278 213605|0.45833 213606|0.34722 213607|0.70833 213608|0.5 213609|0.25 213610|0.5 213611|0.44444 213612|0.26389 213613|0.47222 213614|0.22222 213615|0.16667 213616|0.43056 213617|0.375 213618|0.65278 213619|0.51389 213620|0.5 213621|0.5 213622|0.44444 213623|0.44444 213624|0.069444 213625|0.38889 213626|0.26389 213627|0.5 213628|0.51389 213629|0.54167 213630|0.30556 213631|0.5 213632|0.44444 213633|0.45833 213634|0.45833 213635|0.5 213636|0.52778 213637|0.5 213638|0.16667 213639|0.38889 213640|0.31944 213641|0.5 213642|0.19444 213643|0.069444 213644|0.44444 213645|0.48611 213646|0.23611 213647|0.5 213648|0.51389 213649|0.52778 213650|0.5 213651|0.55556 213652|0.41667 213653|0.65278 213654|0.11111 213655|0.34722 213656|0.5 213657|0.63889 213658|0.5 213659|0.43056 213660|0.51389 213661|0.15278 213662|0.47222 213663|0.44444 213664|0.55556 213665|0.33333 213666|0.48611 213667|0.5 213668|0.027778 213669|0.5 213670|0.52778 213671|0.36111 213672|0.27778 213673|0.20833 213674|0.27778 213675|0.5 213676|0.375 213677|0.40278 213678|0.36111 213679|0.083333 213680|0.25 213681|0.18056 213682|0.26389 213683|0.45833 213684|0.20833 213685|0.41667 213686|0.44444 213687|0.5 213688|0.40278 213689|0.38889 213690|0.11111 213691|0.23611 213692|0.22222 213693|0.55556 213694|0.27778 213695|0.29167 213696|0.33333 213697|0.22222 213698|0.36111 213699|0.23611 213700|0.43056 213701|0.54167 213702|0.33333 213703|0.58333 213704|0.63889 213705|0.27778 213706|0.38889 213707|0.23611 213708|0.31944 213709|0.30556 213710|0.5 213711|0.29167 213712|0.40278 213713|0.38889 213714|0.40278 213715|0.5 213716|0.41667 213717|0.22222 213718|0.22222 213719|0.26389 213720|0.5 213721|0.23611 213722|0.30556 213723|0.23611 213724|0.68056 213725|0.19444 213726|0.11111 213727|0.29167 213728|0.52778 213729|0.375 213730|0.43056 213731|0.44444 213732|0.59722 213733|0.40278 213734|0.625 213735|0.48611 213736|0.5 213737|0.33333 213738|0.26389 213739|0.16667 213740|0.5 213741|0.26389 213742|0.20833 213743|0.20833 213744|0.5 213745|0.22222 213746|0.51389 213747|0.38889 213748|0.5 213749|0.59722 213750|0.23611 213751|0.73611 213752|0.63889 213753|0.61111 213754|0.47222 213755|0.65278 213756|0.40278 213757|0.59722 213758|0.5 213759|0.44444 213760|0.47222 213761|0.33333 213762|0.33333 213763|0.51389 213764|0.38889 213765|0.51389 213766|0.27778 213767|0.38889 213768|0.5 213769|0.52778 213770|0.72222 213771|0.33333 213772|0.33333 213773|0.055556 213774|0.40278 213775|0.51389 213776|0.5 213777|0.36111 213778|0.34722 213779|0.44444 213780|0.31944 213781|0.33333 213782|0.34722 213783|0.61111 213784|0.22222 213785|0.38889 213786|0.54167 213787|0.61111 213788|0.5 213789|0.40278 213790|0.5 213791|0.55556 213792|0.22222 213793|0.22222 213794|0.375 213795|0.5 213796|0.55556 213797|0.069444 213798|0.5 213799|0.5 213800|0.40278 213801|0.5 213802|0.19444 213803|0.26389 213804|0.75 213805|0.66667 213806|0.66667 213807|0.52778 213808|0.625 213809|0.43056 213810|0.29167 213811|0.23611 213812|0.25 213813|0.75 213814|0.48611 213815|0.54167 213816|0.47222 213817|0.48611 213818|0.66667 213819|0.41667 213820|0.5 213821|0.41667 213822|0.34722 213823|0.5 213824|0.375 213825|0.47222 213826|0.375 213827|0.31944 213828|0.30556 213829|0.22222 213830|0.31944 213831|0.69444 213832|0.625 213833|0.41667 213834|0.40278 213835|0.29167 213836|0.44444 213837|0.23611 213838|0.72222 213839|0.5 213840|0.58333 213841|0.5 213842|0.33333 213843|0.36111 213844|0.31944 213845|0.5 213846|0.16667 213847|0.44444 213848|0.23611 213849|0.44444 213850|0.38889 213851|0.34722 213852|0.5 213853|0.44444 213854|0.625 213855|0.73611 213856|0.5 213857|0.58333 213858|0.22222 213859|0.36111 213860|0.47222 213861|0.625 213862|0.84722 213863|0.22222 213864|0 213865|0.47222 213866|0.52778 213867|0.36111 213868|0.52778 213869|0.38889 213870|0.45833 213871|0.23611 213872|0.29167 213873|0.13889 213874|0.73611 213875|0.26389 213876|0.38889 213877|0.40278 213878|0.33333 213879|0.20833 213880|0.20833 213881|0.23611 213882|0.56944 213883|0.29167 213884|0.16667 213885|0.34722 213886|0.20833 213887|0.30556 213888|0.15278 213889|0.43056 213890|0.36111 213891|0.44444 213892|0.66667 213893|0.58333 213894|0.27778 213895|0.29167 213896|0.40278 213897|0.45833 213898|0.27778 213899|0.875 213900|0.5 213901|0.22222 213902|0.5 213903|0.625 213904|0.44444 213905|0.47222 213906|0.65278 213907|0.41667 213908|0.30556 213909|0.59722 213910|0.31944 213911|0.055556 213912|0.94444 213913|0.11111 213914|0.45833 213915|0.625 213916|0.20833 213917|0.19444 213918|0.63889 213919|0.29167 213920|0.43056 213921|0.22222 213922|0.73611 213923|0.5 213924|0.5 213925|0.44444 213926|0.34722 213927|0.375 213928|0.20833 213929|0.23611 213930|0.5 213931|0.33333 213932|0.27778 213933|0.11111 213934|0.069444 213935|0.33333 213936|0.44444 213937|0.33333 213938|0.625 213939|0.56944 213940|0.18056 213941|0.13889 213942|0.25 213943|0.48611 213944|0.16667 213945|0.16667 213946|0.34722 213947|0.52778 213948|0.55556 213949|0.65278 213950|0.34722 213951|0.18056 213952|0.26389 213953|0.54167 213954|0.5 213955|0.52778 213956|0.375 213957|0.51389 213958|0.48611 213959|0.16667 213960|0.22222 213961|0.40278 213962|0.20833 213963|0.25 213964|0.11111 213965|0.36111 213966|0.125 213967|0.34722 213968|0.55556 213969|0.30556 213970|0.5 213971|0.55556 213972|0.61111 213973|0.58333 213974|0.51389 213975|0.5 213976|0.16667 213977|0.30556 213978|0.33333 213979|0.16667 213980|0.5 213981|0.5 213982|0.61111 213983|0.5 213984|0.5 213985|0.41667 213986|0.5 213987|0.36111 213988|0.5 213989|0.5 213990|0.5 213991|0.38889 213992|0.61111 213993|0.43056 213994|0.5 213995|0.5 213996|0.5 213997|0.625 213998|0.5 213999|0.5 214000|0.5 214001|0.56944 214002|0.61111 214003|0.80556 214004|0.5 214005|0.66667 214006|0.5 214007|0.69444 214008|0.5 214009|0.56944 214010|0.5 214011|0.51389 214012|0.5 214013|0.48611 214014|0.38889 214015|0.55556 214016|0.5 214017|0.44444 214018|0.5 214019|0.5 214020|0.34722 214021|0.5 214022|0.5 214023|0.30556 214024|0.5 214025|0.5 214026|0.44444 214027|0.22222 214028|0.5 214029|0.48611 214030|0.43056 214031|0.48611 214032|0.55556 214033|0.66667 214034|0.48611 214035|0.5 214036|0.5 214037|0.5 214038|0.58333 214039|0.76389 214040|0.5 214041|0.66667 214042|0.5 214043|0.44444 214044|0.56944 214045|0.48611 214046|0.5 214047|0.5 214048|0.5 214049|0.5 214050|0.45833 214051|0.54167 214052|0.43056 214053|0.63889 214054|0.5 214055|0.61111 214056|0.56944 214057|0.77778 214058|0.48611 214059|0.40278 214060|0.5 214061|0.5 214062|0.36111 214063|0.5 214064|0.54167 214065|0.63889 214066|0.5 214067|0.58333 214068|0.66667 214069|0.5 214070|0.36111 214071|0.5 214072|0.52778 214073|0.56944 214074|0.65278 214075|0.55556 214076|0.5 214077|0.5 214078|0.51389 214079|0.51389 214080|0.5 214081|0.5 214082|0.19444 214083|0.56944 214084|0.5 214085|0.59722 214086|0.5 214087|0.45833 214088|0.5 214089|0.41667 214090|0.19444 214091|0.5 214092|0.26389 214093|0.36111 214094|0.5 214095|0.45833 214096|0.33333 214097|0.73611 214098|0.55556 214099|0.63889 214100|0.18056 214101|0.47222 214102|0.47222 214103|0.54167 214104|0.59722 214105|0.5 214106|0.81944 214107|0.47222 214108|0.51389 214109|0.5 214110|0.51389 214111|0.41667 214112|0.52778 214113|0.38889 214114|0.22222 214115|0.5 214116|0.5 214117|0.51389 214118|0.56944 214119|0.23611 214120|0.51389 214121|0.44444 214122|0.5 214123|0.125 214124|0.43056 214125|0.20833 214126|0.33333 214127|0.5 214128|0.48611 214129|0.61111 214130|0.72222 214131|0.44444 214132|0.5 214133|0.45833 214134|0.27778 214135|0.54167 214136|0.30556 214137|0.5 214138|0.5 214139|0.29167 214140|0.5 214141|0.375 214142|0.48611 214143|0.5 214144|0.5 214145|0.5 214146|0.5 214147|0.5 214148|0.41667 214149|0.61111 214150|0.5 214151|0.51389 214152|0.5 214153|0.16667 214154|0.45833 214155|0.55556 214156|0.52778 214157|0.375 214158|0.55556 214159|0.5 214160|0.52778 214161|0.5 214162|0.25 214163|0.5 214164|0.5 214165|0.61111 214166|0.625 214167|0.55556 214168|0.30556 214169|0.40278 214170|0.52778 214171|0.44444 214172|0.5 214173|0.31944 214174|0.375 214175|0.38889 214176|0.5 214177|0.5 214178|0.5 214179|0.51389 214180|0.625 214181|0.375 214182|0.44444 214183|0.33333 214184|0.75 214185|0.65278 214186|0.73611 214187|0.625 214188|0.625 214189|0.80556 214190|0.61111 214191|0.66667 214192|0.90278 214193|0.5 214194|0.5 214195|0.51389 214196|0.55556 214197|0.5 214198|0.65278 214199|0.51389 214200|0.38889 214201|0.5 214202|0.33333 214203|0.29167 214204|0.22222 214205|0.5 214206|0.45833 214207|0.5 214208|0.63889 214209|0.26389 214210|0.43056 214211|0.38889 214212|0.66667 214213|0.52778 214214|0.44444 214215|0.5 214216|0.48611 214217|0.5 214218|0.55556 214219|0.5 214220|0.27778 214221|0.29167 214222|0.27778 214223|0.5 214224|0.68056 214225|0.34722 214226|0.38889 214227|0.5 214228|0.5 214229|0.5 214230|0.5 214231|0.40278 214232|0.34722 214233|0.375 214234|0.30556 214235|0.38889 214236|0.38889 214237|0.51389 214238|0.41667 214239|0.5 214240|0.5 214241|0.5 214242|0.36111 214243|0.5 214244|0.5 214245|0.55556 214246|0.22222 214247|0.72222 214248|0.5 214249|0.30556 214250|0.51389 214251|0.61111 214252|0.5 214253|0.5 214254|0.30556 214255|0.51389 214256|0.5 214257|0.59722 214258|0.5 214259|0.63889 214260|0.5 214261|0.43056 214262|0.5 214263|0.5 214264|0.5 214265|0.63889 214266|0.5 214267|0.44444 214268|0.5 214269|0.31944 214270|0.61111 214271|0.54167 214272|0.26389 214273|0.5 214274|0.13889 214275|0.23611 214276|0.18056 214277|0.58333 214278|0.5 214279|0.083333 214280|0.51389 214281|0.19444 214282|0.22222 214283|0.63889 214284|0.5 214285|0.75 214286|0.66667 214287|0.45833 214288|0.56944 214289|0.69444 214290|0.63889 214291|0.65278 214292|0.66667 214293|0.375 214294|0.59722 214295|0.5 214296|0.5 214297|0.61111 214298|0.19444 214299|0.31944 214300|0.16667 214301|0.58333 214302|0.52778 214303|0.29167 214304|0.041667 214305|0.44444 214306|0.5 214307|0.5 214308|0.30556 214309|0.38889 214310|0.41667 214311|0.40278 214312|0.25 214313|0.31944 214314|0.31944 214315|0.48611 214316|0.5 214317|0.52778 214318|0.5 214319|0.23611 214320|0.5 214321|0.66667 214322|0.52778 214323|0.25 214324|0.51389 214325|0.44444 214326|0.5 214327|0.69444 214328|0.63889 214329|0.30556 214330|0.55556 214331|0.58333 214332|0.66667 214333|0.65278 214334|0.5 214335|0.73611 214336|0.66667 214337|0.55556 214338|0.875 214339|0.55556 214340|0.27778 214341|0.55556 214342|0.5 214343|0.41667 214344|0.38889 214345|0.51389 214346|0.48611 214347|0.5 214348|0.66667 214349|0.5 214350|0.52778 214351|0.55556 214352|0.56944 214353|0.38889 214354|0.33333 214355|0.59722 214356|0.38889 214357|0.51389 214358|0.375 214359|0.44444 214360|0.44444 214361|0.61111 214362|0.5 214363|0.22222 214364|0.51389 214365|0.44444 214366|0.55556 214367|0.5 214368|0.59722 214369|0.44444 214370|0.22222 214371|0.47222 214372|0.5 214373|0.5 214374|0.5 214375|0.5 214376|0.38889 214377|0.5 214378|0.5 214379|0.38889 214380|0.40278 214381|0.5 214382|0.41667 214383|0.55556 214384|0.52778 214385|0.48611 214386|0.61111 214387|0.5 214388|0.54167 214389|0.55556 214390|0.45833 214391|0.375 214392|0.63889 214393|0.58333 214394|0.56944 214395|0.375 214396|0.55556 214397|0.5 214398|0.44444 214399|0.34722 214400|0.29167 214401|0.26389 214402|0.26389 214403|0.5 214404|0.5 214405|0.44444 214406|0.59722 214407|0.54167 214408|0.38889 214409|0.31944 214410|0.5 214411|0.58333 214412|0.38889 214413|0.52778 214414|0.56944 214415|0.31944 214416|0.45833 214417|0.5 214418|0.36111 214419|0.41667 214420|0.40278 214421|0.36111 214422|0.31944 214423|0.44444 214424|0.43056 214425|0.44444 214426|0.5 214427|0.23611 214428|0.65278 214429|0.875 214430|0.5 214431|0.5 214432|0.56944 214433|0.65278 214434|0.63889 214435|0.22222 214436|0.22222 214437|0.27778 214438|0.31944 214439|0.33333 214440|0.11111 214441|0.5 214442|0.48611 214443|0.5 214444|0.36111 214445|0.44444 214446|0.5 214447|0.75 214448|0.55556 214449|0.58333 214450|0.59722 214451|0.30556 214452|0.56944 214453|0.52778 214454|0.43056 214455|0.16667 214456|0.33333 214457|0.47222 214458|0.20833 214459|0.29167 214460|0.56944 214461|0.26389 214462|0.56944 214463|0.5 214464|0.5 214465|0.625 214466|0.63889 214467|0.33333 214468|0.59722 214469|0.70833 214470|0.5 214471|0.38889 214472|0.36111 214473|0.23611 214474|0.45833 214475|0.51389 214476|0.56944 214477|0.88889 214478|0.79167 214479|0.73611 214480|0.69444 214481|0.69444 214482|0.79167 214483|0.47222 214484|0.375 214485|0.55556 214486|0.56944 214487|0.33333 214488|0.43056 214489|0.30556 214490|0.33333 214491|0.44444 214492|0.5 214493|0.52778 214494|0.5 214495|0.27778 214496|0.47222 214497|0.55556 214498|0.55556 214499|0.66667 214500|0.45833 214501|0.5 214502|0.51389 214503|0.5 214504|0.5 214505|0.5 214506|0.5 214507|0.52778 214508|0.5 214509|0.29167 214510|0.61111 214511|0.48611 214512|0.19444 214513|0.55556 214514|0.5 214515|0.58333 214516|0.5 214517|0.54167 214518|0.5 214519|0.5 214520|0.5 214521|0.47222 214522|0.45833 214523|0.40278 214524|0.23611 214525|0.38889 214526|0.29167 214527|0.55556 214528|0.72222 214529|0.47222 214530|0.5 214531|0.47222 214532|0.31944 214533|0.5 214534|0.55556 214535|0.36111 214536|0.45833 214537|0.51389 214538|0.097222 214539|0.43056 214540|0.54167 214541|0.36111 214542|0.5 214543|0.5 214544|0.26389 214545|0.18056 214546|0.70833 214547|0.69444 214548|0.44444 214549|0.5 214550|0.55556 214551|0.25 214552|0.77778 214553|0.81944 214554|0.59722 214555|0.65278 214556|0.19444 214557|0.5 214558|0.52778 214559|0.61111 214560|0.59722 214561|0.5 214562|0.26389 214563|0.5 214564|0.5 214565|0.47222 214566|0.5 214567|0.51389 214568|0.34722 214569|0.51389 214570|0.29167 214571|0.375 214572|0.31944 214573|0.36111 214574|0.5 214575|0.5 214576|0.5 214577|0.44444 214578|0.5 214579|0.36111 214580|0.34722 214581|0.36111 214582|0.40278 214583|0.30556 214584|0.44444 214585|0.59722 214586|0.34722 214587|0.31944 214588|0.40278 214589|0.375 214590|0.25 214591|0.73611 214592|0.5 214593|0.55556 214594|0.22222 214595|0.18056 214596|0.097222 214597|0.18056 214598|0.59722 214599|0.5 214600|0.43056 214601|0.54167 214602|0.15278 214603|0.51389 214604|0.125 214605|0.38889 214606|0.25 214607|0.22222 214608|0.83333 214609|0.27778 214610|0.31944 214611|0.61111 214612|0.34722 214613|0.5 214614|0.33333 214615|0.25 214616|0.38889 214617|0.27778 214618|0.38889 214619|0.5 214620|0.54167 214621|0.5 214622|0.43056 214623|0.375 214624|0.13889 214625|0.30556 214626|0.33333 214627|0.097222 214628|0.61111 214629|0.25 214630|0.59722 214631|0.58333 214632|0.61111 214633|0.41667 214634|0.55556 214635|0.5 214636|0.52778 214637|0.33333 214638|0.34722 214639|0.61111 214640|0.30556 214641|0.5 214642|0.5 214643|0.5 214644|0.65278 214645|0.51389 214646|0.083333 214647|0.5 214648|0.43056 214649|0.61111 214650|0.5 214651|0.5 214652|0.5 214653|0.81944 214654|0.77778 214655|0.61111 214656|0.59722 214657|0.5 214658|0.33333 214659|0.5 214660|0.5 214661|0.5 214662|0.59722 214663|0.5 214664|0.375 214665|0.5 214666|0.80556 214667|0.34722 214668|0.66667 214669|0.125 214670|0.5 214671|0.23611 214672|0.5 214673|0.5 214674|0.5 214675|0.47222 214676|0.5 214677|0.23611 214678|0.58333 214679|0.5 214680|0.38889 214681|0.55556 214682|0.625 214683|0.47222 214684|0.55556 214685|0.58333 214686|0.69444 214687|0.33333 214688|0.16667 214689|0.30556 214690|0.27778 214691|0.5 214692|0.5 214693|0.5 214694|0.5 214695|0.48611 214696|0.58333 214697|0.38889 214698|0.33333 214699|0.5 214700|0.54167 214701|0.5 214702|0.5 214703|0.70833 214704|0.13889 214705|0.48611 214706|0.45833 214707|0.44444 214708|0.5 214709|0.54167 214710|0.88889 214711|0.94444 214712|0.63889 214713|0.34722 214714|0.5 214715|0.54167 214716|0.5 214717|0.5 214718|0.34722 214719|0.44444 214720|0.375 214721|0.5 214722|0.56944 214723|0.51389 214724|0.5 214725|0.41667 214726|0.56944 214727|0.33333 214728|0.48611 214729|0.26389 214730|0.59722 214731|0.25 214732|0.5 214733|0.34722 214734|0.44444 214735|0.65278 214736|0.33333 214737|0.33333 214738|0.38889 214739|0.5 214740|0.43056 214741|0.51389 214742|0.55556 214743|0.47222 214744|0.70833 214745|0.70833 214746|0.875 214747|0.375 214748|0.19444 214749|0.61111 214750|0.29167 214751|0.43056 214752|0.52778 214753|0.38889 214754|0.5 214755|0.5 214756|0.26389 214757|0.20833 214758|0.61111 214759|0.31944 214760|0.25 214761|0.45833 214762|0.31944 214763|0.5 214764|0.55556 214765|0.61111 214766|0.44444 214767|0.31944 214768|0.40278 214769|0.45833 214770|0.48611 214771|0.38889 214772|0.5 214773|0.5 214774|0.56944 214775|0.55556 214776|0.56944 214777|0.52778 214778|0.58333 214779|0.36111 214780|0.41667 214781|0.51389 214782|0.31944 214783|0.29167 214784|0.63889 214785|0.5 214786|0.66667 214787|0.5 214788|0.5 214789|0.44444 214790|0.23611 214791|0.58333 214792|0.41667 214793|0.30556 214794|0.36111 214795|0.5 214796|0.25 214797|0.22222 214798|0.29167 214799|0.38889 214800|0.56944 214801|0.41667 214802|0.52778 214803|0.44444 214804|0.5 214805|0.55556 214806|0.58333 214807|0.30556 214808|0.5 214809|0.20833 214810|0.47222 214811|0.70833 214812|0.375 214813|0.29167 214814|0.56944 214815|0.38889 214816|0.11111 214817|0.48611 214818|0.45833 214819|0.25 214820|0.375 214821|0.5 214822|0.31944 214823|0.44444 214824|0.38889 214825|0.22222 214826|0.5 214827|0.5 214828|0.31944 214829|0.5 214830|0.36111 214831|0.5 214832|0.38889 214833|0.51389 214834|0.43056 214835|0.52778 214836|0.54167 214837|0.375 214838|0.48611 214839|0.34722 214840|0.29167 214841|0.33333 214842|0.41667 214843|0.38889 214844|0.40278 214845|0.27778 214846|0.41667 214847|0.5 214848|0.29167 214849|0.33333 214850|0.5 214851|0.56944 214852|0.5 214853|0.38889 214854|0.45833 214855|0.55556 214856|0.5 214857|0.375 214858|0.59722 214859|0.44444 214860|0.51389 214861|0.27778 214862|0.43056 214863|0.375 214864|0.19444 214865|0.16667 214866|0.47222 214867|0.72222 214868|0.73611 214869|0.63889 214870|0.23611 214871|0.18056 214872|0.59722 214873|0.5 214874|0.5 214875|0.65278 214876|0.5 214877|0.5 214878|0.58333 214879|0.61111 214880|0.63889 214881|0.54167 214882|0.45833 214883|0.36111 214884|0.44444 214885|0.5 214886|0.41667 214887|0.33333 214888|0.41667 214889|0.5 214890|0.5 214891|0.54167 214892|0.44444 214893|0.5 214894|0.43056 214895|0.54167 214896|0.68056 214897|0.52778 214898|0.33333 214899|0.48611 214900|0.40278 214901|0.52778 214902|0.44444 214903|0.22222 214904|0.61111 214905|0.5 214906|0.25 214907|0.36111 214908|0.26389 214909|0.5 214910|0.43056 214911|0.31944 214912|0.47222 214913|0.31944 214914|0.5 214915|0.5 214916|0.5 214917|0.40278 214918|0.5 214919|0.5 214920|0.5 214921|0.55556 214922|0.19444 214923|0.16667 214924|0.88889 214925|0.5 214926|0.55556 214927|0.51389 214928|0.26389 214929|0.5 214930|0.58333 214931|0.48611 214932|0.48611 214933|0.5 214934|0.19444 214935|0.11111 214936|0.20833 214937|0.59722 214938|0.5 214939|0.5 214940|0.40278 214941|0.375 214942|0.44444 214943|0.48611 214944|0.47222 214945|0.31944 214946|0.44444 214947|0.44444 214948|0.30556 214949|0.51389 214950|0.55556 214951|0.51389 214952|0.55556 214953|0.5 214954|0.5 214955|0.54167 214956|0.52778 214957|0.5 214958|0.55556 214959|0.65278 214960|0.61111 214961|0.5 214962|0.44444 214963|0.27778 214964|0.375 214965|0.41667 214966|0.54167 214967|0.31944 214968|0.58333 214969|0.51389 214970|0.48611 214971|0.51389 214972|0.11111 214973|0.097222 214974|0.5 214975|0.73611 214976|0.58333 214977|0.27778 214978|0.55556 214979|0.5 214980|0.48611 214981|0.54167 214982|0.5 214983|0.45833 214984|0.52778 214985|0.52778 214986|0.51389 214987|0.5 214988|0.77778 214989|0.47222 214990|0.84722 214991|0.5 214992|0.56944 214993|0.5 214994|0.5 214995|0.56944 214996|0.55556 214997|0.5 214998|0.44444 214999|0.52778 215000|0.625 215001|0.68056 215002|0.52778 215003|0.5 215004|0.5 215005|0.22222 215006|0.5 215007|0.51389 215008|0.48611 215009|0.51389 215010|0.5 215011|0.31944 215012|0.43056 215013|0.16667 215014|0.25 215015|0.26389 215016|0.5 215017|0.5 215018|0.34722 215019|0.5 215020|0.5 215021|0.125 215022|0.31944 215023|0.5 215024|0.5 215025|0.44444 215026|0.5 215027|0.65278 215028|0.25 215029|0.25 215030|0.5 215031|0.5 215032|0.22222 215033|0.13889 215034|0.13889 215035|0.5 215036|0.52778 215037|0.55556 215038|0.44444 215039|0.25 215040|0.25 215041|0.18056 215042|0.65278 215043|0.5 215044|0.5 215045|0.55556 215046|0.44444 215047|0.44444 215048|0.31944 215049|0.33333 215050|0.31944 215051|0.34722 215052|0.38889 215053|0.44444 215054|0.51389 215055|0.47222 215056|0.40278 215057|0.5 215058|0.5 215059|0.48611 215060|0.44444 215061|0.5 215062|0.375 215063|0.29167 215064|0.16667 215065|0.22222 215066|0.041667 215067|0.52778 215068|0.43056 215069|0.63889 215070|0.65278 215071|0.61111 215072|0.33333 215073|0.40278 215074|0.23611 215075|0.52778 215076|0.38889 215077|0.18056 215078|0.25 215079|0.15278 215080|0.26389 215081|0.055556 215082|0.20833 215083|0.27778 215084|0 215085|0.68056 215086|0.33333 215087|0.40278 215088|0.47222 215089|0.41667 215090|0.20833 215091|0.34722 215092|0.30556 215093|0.5 215094|0.40278 215095|0.5 215096|0.52778 215097|0.5 215098|0.54167 215099|0.22222 215100|0.52778 215101|0.47222 215102|0.51389 215103|0.5 215104|0.27778 215105|0.54167 215106|0.31944 215107|0.375 215108|0.47222 215109|0.38889 215110|0.25 215111|0.31944 215112|0.5 215113|0.30556 215114|0.20833 215115|0.5 215116|0.54167 215117|0.083333 215118|0.5 215119|0.16667 215120|0.11111 215121|0.18056 215122|0.29167 215123|0.23611 215124|0.69444 215125|0.48611 215126|0.70833 215127|0.65278 215128|0.20833 215129|0.47222 215130|0.36111 215131|0.097222 215132|0.59722 215133|0.5 215134|0.66667 215135|0.20833 215136|0.68056 215137|0.36111 215138|0.40278 215139|0.31944 215140|0.29167 215141|0.375 215142|0.75 215143|0.34722 215144|0.33333 215145|0.58333 215146|0.41667 215147|0.33333 215148|0.88889 215149|0.11111 215150|0.15278 215151|0.70833 215152|0.63889 215153|0.65278 215154|0.375 215155|0.47222 215156|0.34722 215157|0.5 215158|0.5 215159|0.55556 215160|0.29167 215161|0.38889 215162|0.5 215163|0.22222 215164|0.31944 215165|0.27778 215166|0.31944 215167|0.25 215168|0.84722 215169|0.38889 215170|0.5 215171|0.5 215172|0.5 215173|0.5 215174|0.44444 215175|0.31944 215176|0.5 215177|0.65278 215178|0.51389 215179|0.75 215180|0.59722 215181|0.44444 215182|0.5 215183|0.55556 215184|0.40278 215185|0.375 215186|0.5 215187|0.65278 215188|0.44444 215189|0.5 215190|0.36111 215191|0.68056 215192|0.44444 215193|0.52778 215194|0.5 215195|0.22222 215196|0.16667 215197|0.69444 215198|0.68056 215199|0.43056 215200|0.30556 215201|0.375 215202|0.5 215203|0.20833 215204|0.59722 215205|0.44444 215206|0.27778 215207|0.68056 215208|0.5 215209|0.5 215210|0.51389 215211|0.43056 215212|0.52778 215213|0.54167 215214|0.5 215215|0.51389 215216|0.41667 215217|0.5 215218|0.34722 215219|0.44444 215220|0.48611 215221|0.30556 215222|0.16667 215223|0.5 215224|0.54167 215225|0.52778 215226|0.26389 215227|0.44444 215228|0.56944 215229|0.40278 215230|0.61111 215231|0.61111 215232|0.51389 215233|0.5 215234|0.33333 215235|0.48611 215236|0.56944 215237|0.25 215238|0.5 215239|0.66667 215240|0.47222 215241|0.47222 215242|0.48611 215243|0.61111 215244|0.5 215245|0.30556 215246|0.58333 215247|0.5 215248|0.5 215249|0.48611 215250|0.27778 215251|0.34722 215252|0.48611 215253|0.48611 215254|0.41667 215255|0.45833 215256|0.41667 215257|0.36111 215258|0.48611 215259|0.5 215260|0.47222 215261|0.45833 215262|0.15278 215263|0.31944 215264|0.22222 215265|0.63889 215266|0.61111 215267|0.91667 215268|0.5 215269|0.44444 215270|0.5 215271|0.625 215272|0.5 215273|0.55556 215274|0.45833 215275|0.47222 215276|0.40278 215277|0.5 215278|0.5 215279|0.5 215280|0.5 215281|0.5 215282|0.45833 215283|0.44444 215284|0.5 215285|0.5 215286|0.36111 215287|0.51389 215288|0.38889 215289|0.5 215290|0.30556 215291|0.59722 215292|0.45833 215293|0.25 215294|0.375 215295|0.29167 215296|0.5 215297|0.45833 215298|0.5 215299|0.5 215300|0.5 215301|0.5 215302|0.47222 215303|0.29167 215304|0.5 215305|0.47222 215306|0.56944 215307|0.30556 215308|0.20833 215309|0.22222 215310|0.59722 215311|0.30556 215312|0.5 215313|0.34722 215314|0.38889 215315|0.31944 215316|0.5 215317|0.68056 215318|0.59722 215319|0.70833 215320|0.47222 215321|0.66667 215322|0.19444 215323|0.16667 215324|0.36111 215325|0.5 215326|0.5 215327|0.61111 215328|0.5 215329|0.66667 215330|0.16667 215331|0.76389 215332|0.45833 215333|0.45833 215334|0.54167 215335|0.5 215336|0.5 215337|0.88889 215338|0.84722 215339|0.66667 215340|0.48611 215341|0.44444 215342|0.54167 215343|0.44444 215344|0.54167 215345|0.61111 215346|0.22222 215347|0.13889 215348|0.375 215349|0.31944 215350|0.31944 215351|0.25 215352|0.5 215353|0.25 215354|0.18056 215355|0.5 215356|0.5 215357|0.45833 215358|0.5 215359|0.5 215360|0.34722 215361|0.5 215362|0.44444 215363|0.5 215364|0.5 215365|0.63889 215366|0.44444 215367|0.5 215368|0.625 215369|0.61111 215370|0.27778 215371|0.45833 215372|0.25 215373|0.26389 215374|0.23611 215375|0.22222 215376|0.5 215377|0.22222 215378|0.61111 215379|0.63889 215380|0.38889 215381|0.44444 215382|0.31944 215383|0.18056 215384|0.25 215385|0.47222 215386|0.5 215387|0.55556 215388|0.16667 215389|0.16667 215390|0.13889 215391|0.73611 215392|0.41667 215393|0.51389 215394|0.55556 215395|0.63889 215396|0.26389 215397|0.23611 215398|0.75 215399|0.61111 215400|0.55556 215401|0.38889 215402|0.31944 215403|0.61111 215404|0.5 215405|0.5 215406|0.5 215407|0.25 215408|0.5 215409|0.5 215410|0.47222 215411|0.58333 215412|0.5 215413|0.5 215414|0.55556 215415|0.18056 215416|0.097222 215417|0.23611 215418|0.375 215419|0.27778 215420|0.38889 215421|0.44444 215422|0.48611 215423|0.47222 215424|0.27778 215425|0.5 215426|0.38889 215427|0.51389 215428|0.72222 215429|0.34722 215430|0.45833 215431|0.43056 215432|0.26389 215433|0.23611 215434|0.5 215435|0.5 215436|0.48611 215437|0.5 215438|0.43056 215439|0.47222 215440|0.54167 215441|0.44444 215442|0.33333 215443|0.31944 215444|0.5 215445|0.34722 215446|0.5 215447|0.55556 215448|0.55556 215449|0.43056 215450|0.5 215451|0.36111 215452|0.41667 215453|0.5 215454|0.5 215455|0.51389 215456|0.68056 215457|0.5 215458|0.47222 215459|0.55556 215460|0.5 215461|0.54167 215462|0.055556 215463|0.54167 215464|0.51389 215465|0.81944 215466|0.55556 215467|0.52778 215468|0.41667 215469|0.44444 215470|0.5 215471|0.44444 215472|0.34722 215473|0.43056 215474|0.41667 215475|0.36111 215476|0.5 215477|0.52778 215478|0.59722 215479|0.38889 215480|0.027778 215481|0.5 215482|0.5 215483|0.29167 215484|0.5 215485|0.15278 215486|0.44444 215487|0.16667 215488|0.18056 215489|0.5 215490|0.52778 215491|0.30556 215492|0.34722 215493|0.16667 215494|0.77778 215495|0.63889 215496|0.68056 215497|0.5 215498|0.5 215499|0.55556 215500|0.68056 215501|0.43056 215502|0.61111 215503|0.70833 215504|0.56944 215505|0.55556 215506|0.55556 215507|0.58333 215508|0.65278 215509|0.5 215510|0.5 215511|0.72222 215512|0.70833 215513|0.51389 215514|0.5 215515|0.41667 215516|0.52778 215517|0.56944 215518|0.58333 215519|0.5 215520|0.51389 215521|0.56944 215522|0.58333 215523|0.38889 215524|0.48611 215525|0.43056 215526|0.5 215527|0.65278 215528|0.34722 215529|0.38889 215530|0.54167 215531|0.47222 215532|0.44444 215533|0.30556 215534|0.34722 215535|0.27778 215536|0.38889 215537|0.5 215538|0.30556 215539|0.23611 215540|0.13889 215541|0.069444 215542|0.26389 215543|0.30556 215544|0.33333 215545|0.51389 215546|0.11111 215547|0.44444 215548|0.5 215549|0.56944 215550|0.70833 215551|0.38889 215552|0.5 215553|0.26389 215554|0.59722 215555|0.47222 215556|0.56944 215557|0.38889 215558|0.59722 215559|0.25 215560|0.48611 215561|0.11111 215562|0.47222 215563|0.66667 215564|0.5 215565|0.5 215566|0.5 215567|0.25 215568|0.125 215569|0.22222 215570|0.41667 215571|0.5 215572|0.38889 215573|0.38889 215574|0.58333 215575|0.5 215576|0.375 215577|0.66667 215578|0.44444 215579|0.45833 215580|0.47222 215581|0.38889 215582|0.43056 215583|0.5 215584|0.5 215585|0.61111 215586|0.33333 215587|0.52778 215588|0.19444 215589|0.44444 215590|0.48611 215591|0.5 215592|0.5 215593|0.61111 215594|0.55556 215595|0.16667 215596|0.625 215597|0.30556 215598|0.375 215599|0.54167 215600|0.11111 215601|0.23611 215602|0.48611 215603|0.40278 215604|0.5 215605|0.63889 215606|0.79167 215607|0.38889 215608|0.43056 215609|0.5 215610|0.48611 215611|0.19444 215612|0.38889 215613|0.45833 215614|0.36111 215615|0.33333 215616|0.66667 215617|0.41667 215618|0.33333 215619|0.52778 215620|0.5 215621|0.51389 215622|0.16667 215623|0.33333 215624|0.44444 215625|0.5 215626|0.5 215627|0.36111 215628|0.45833 215629|0.41667 215630|0.45833 215631|0.26389 215632|0.5 215633|0.375 215634|0.65278 215635|0.51389 215636|0.5 215637|0.76389 215638|0.47222 215639|0.5 215640|0.48611 215641|0.43056 215642|0.31944 215643|0.47222 215644|0.23611 215645|0.34722 215646|0.30556 215647|0.26389 215648|0.5 215649|0.5 215650|0.44444 215651|0.34722 215652|0.44444 215653|0.5 215654|0.5 215655|0.76389 215656|0.41667 215657|0.55556 215658|0.29167 215659|0.55556 215660|0.63889 215661|0.5 215662|0.55556 215663|0.76389 215664|0.61111 215665|0.44444 215666|0.38889 215667|0.56944 215668|0.55556 215669|0.58333 215670|0.5 215671|0.5 215672|0.375 215673|0.63889 215674|0.44444 215675|0.5 215676|0.51389 215677|0.70833 215678|0.5 215679|0.72222 215680|0.54167 215681|0.41667 215682|0.34722 215683|0.55556 215684|0.22222 215685|0.66667 215686|0.083333 215687|0.5 215688|0.41667 215689|0.48611 215690|0.18056 215691|0.40278 215692|0.5 215693|0.5 215694|0.41667 215695|0.5 215696|0.27778 215697|0.5 215698|0.31944 215699|0.66667 215700|0.45833 215701|0.88889 215702|0.58333 215703|0.375 215704|0.77778 215705|0.55556 215706|0.56944 215707|0.27778 215708|0.52778 215709|0.56944 215710|0.61111 215711|0.61111 215712|0.5 215713|0.375 215714|0.51389 215715|0.56944 215716|0.38889 215717|0.33333 215718|0.31944 215719|0.27778 215720|0.25 215721|0.5 215722|0.27778 215723|0.38889 215724|0.33333 215725|0.5 215726|0.34722 215727|0.34722 215728|0.25 215729|0.61111 215730|0.5 215731|0.52778 215732|0.66667 215733|0.43056 215734|0.38889 215735|0.5 215736|0.5 215737|0.56944 215738|0.5 215739|0.36111 215740|0.19444 215741|0.63889 215742|0.76389 215743|0.61111 215744|0.5 215745|0.65278 215746|0.5 215747|0.55556 215748|0.45833 215749|0.5 215750|0.48611 215751|0.625 215752|0.45833 215753|0.30556 215754|0.38889 215755|0.5 215756|0.55556 215757|0.625 215758|0.23611 215759|0.5 215760|0.5 215761|0.27778 215762|0.5 215763|0.44444 215764|0.5 215765|0.34722 215766|0.48611 215767|0.52778 215768|0.23611 215769|0.5 215770|0.5 215771|0.56944 215772|0.72222 215773|0.23611 215774|0.23611 215775|0.48611 215776|0.5 215777|0.5 215778|0.55556 215779|0.5 215780|0.36111 215781|0.5 215782|0.5 215783|0.5 215784|0.5 215785|0.30556 215786|0.5 215787|0.51389 215788|0.47222 215789|0.34722 215790|0.36111 215791|0.47222 215792|0.66667 215793|0.44444 215794|0.5 215795|0.33333 215796|0.44444 215797|0.56944 215798|0.52778 215799|0.16667 215800|0.47222 215801|0.48611 215802|0.33333 215803|0.36111 215804|0.375 215805|0.375 215806|0.41667 215807|0.5 215808|0.48611 215809|0.55556 215810|0.70833 215811|0.61111 215812|0.73611 215813|0.66667 215814|0.5 215815|0.44444 215816|0.47222 215817|0.68056 215818|0.40278 215819|0.45833 215820|0.36111 215821|0.43056 215822|0.40278 215823|0.45833 215824|0.5 215825|0.61111 215826|0.40278 215827|0.27778 215828|0.27778 215829|0.22222 215830|0.22222 215831|0.27778 215832|0.83333 215833|0.375 215834|0.56944 215835|0.72222 215836|0.76389 215837|0.5 215838|0.56944 215839|0.29167 215840|0.34722 215841|0.30556 215842|0.5 215843|0.5 215844|0.5 215845|0.5 215846|0.38889 215847|0.5 215848|0.54167 215849|0.52778 215850|0.47222 215851|0.5 215852|0.5 215853|0.29167 215854|0.27778 215855|0.54167 215856|0.27778 215857|0.77778 215858|0.19444 215859|0.69444 215860|0.52778 215861|0.48611 215862|0.77778 215863|0.80556 215864|0.52778 215865|0.69444 215866|0.5 215867|0.19444 215868|0.5 215869|0.5 215870|0.5 215871|0.5 215872|0.16667 215873|0.30556 215874|0.19444 215875|0.5 215876|0.33333 215877|0.625 215878|0.5 215879|0.44444 215880|0.20833 215881|0.5 215882|0.43056 215883|0.19444 215884|0.38889 215885|0.48611 215886|0.30556 215887|0.5 215888|0.23611 215889|0.31944 215890|0.43056 215891|0.15278 215892|0.25 215893|0.56944 215894|0.44444 215895|0.5 215896|0.47222 215897|0.20833 215898|0.55556 215899|0.59722 215900|0.63889 215901|0.41667 215902|0.5 215903|0.069444 215904|0.5 215905|0.5 215906|0.40278 215907|0.51389 215908|0.375 215909|0.40278 215910|0.76389 215911|0.54167 215912|0.36111 215913|0.29167 215914|0.5 215915|0.52778 215916|0.18056 215917|0 215918|0.18056 215919|0.22222 215920|0.27778 215921|0.22222 215922|0.27778 215923|0.48611 215924|0.13889 215925|0.041667 215926|0 215927|0.22222 215928|0.16667 215929|0.27778 215930|0.13889 215931|0.41667 215932|0.16667 215933|0 215934|0.30556 215935|0 215936|0.23611 215937|0.29167 215938|0.38889 215939|0.33333 215940|0.47222 215941|0.16667 215942|0.27778 215943|0.30556 215944|0.18056 215945|0.25 215946|0.18056 215947|0.069444 215948|0.069444 215949|0.5 215950|0.36111 215951|0.27778 215952|0.30556 215953|0.33333 215954|0.33333 215955|0.44444 215956|0.26389 215957|0.40278 215958|0.47222 215959|0.45833 215960|0.44444 215961|0.027778 215962|0.5 215963|0.5 215964|0.5 215965|0.51389 215966|0.41667 215967|0.5 215968|0.34722 215969|0.5 215970|0.52778 215971|0.43056 215972|0.5 215973|0.5 215974|0.55556 215975|0.5 215976|0.31944 215977|0.5 215978|0.5 215979|0.52778 215980|0.5 215981|0.44444 215982|0.5 215983|0.5 215984|0.56944 215985|0.5 215986|0.27778 215987|0.44444 215988|0.5 215989|0.5 215990|0.5 215991|0.5 215992|0.5 215993|0.44444 215994|0.52778 215995|0.56944 215996|0.33333 215997|0.58333 215998|0.25 215999|0.18056 216000|0.5 216001|0.5 216002|0.51389 216003|0.11111 216004|0.55556 216005|0.5 216006|0.48611 216007|0.5 216008|0.5 216009|0.5 216010|0.51389 216011|0.69444 216012|0.66667 216013|0.23611 216014|0.375 216015|0.375 216016|0.5 216017|0.51389 216018|0.55556 216019|0.625 216020|0.5 216021|0.5 216022|0.5 216023|0.69444 216024|0.5 216025|0.5 216026|0.51389 216027|0.59722 216028|0.52778 216029|0.5 216030|0.31944 216031|0.5 216032|0.61111 216033|0.51389 216034|0.61111 216035|0.5 216036|0.30556 216037|0.33333 216038|0.25 216039|0.5 216040|0.5 216041|0.5 216042|0.66667 216043|0.58333 216044|0.54167 216045|0.27778 216046|0.45833 216047|0.25 216048|0.36111 216049|0.20833 216050|0.72222 216051|0.54167 216052|0.68056 216053|0.80556 216054|0.36111 216055|0.43056 216056|0.43056 216057|0.52778 216058|0.41667 216059|0.27778 216060|0.51389 216061|0.63889 216062|0.5 216063|0.66667 216064|0.38889 216065|0.54167 216066|0.20833 216067|0.61111 216068|0.55556 216069|0.44444 216070|0.38889 216071|0.44444 216072|0.55556 216073|0.11111 216074|0.51389 216075|0.5 216076|0.38889 216077|0.15278 216078|0.40278 216079|0.55556 216080|0.48611 216081|0.22222 216082|0.375 216083|0.75 216084|0.72222 216085|0.5 216086|0.55556 216087|0.5 216088|0.18056 216089|0.5 216090|0.58333 216091|0.73611 216092|0.23611 216093|0.5 216094|0.58333 216095|0.083333 216096|0.48611 216097|0.27778 216098|0.30556 216099|0.625 216100|0.5 216101|0.26389 216102|0.34722 216103|0.27778 216104|0.27778 216105|0.22222 216106|0.18056 216107|0.16667 216108|0.23611 216109|0.16667 216110|0.26389 216111|0.30556 216112|0.22222 216113|0.30556 216114|0.43056 216115|0.43056 216116|0.52778 216117|0.55556 216118|0.34722 216119|0.52778 216120|0.5 216121|0.5 216122|0.69444 216123|0.38889 216124|0.18056 216125|0.19444 216126|0.5 216127|0.48611 216128|0.73611 216129|0.66667 216130|0.33333 216131|0.18056 216132|0.5 216133|0.5 216134|0.45833 216135|0.45833 216136|0.29167 216137|0.55556 216138|0.5 216139|0.19444 216140|0.31944 216141|0.20833 216142|0.33333 216143|0.47222 216144|0.375 216145|0.51389 216146|0.27778 216147|0.31944 216148|0.15278 216149|0.31944 216150|0.47222 216151|0.26389 216152|0.375 216153|0.5 216154|0.41667 216155|0.29167 216156|0.36111 216157|0.34722 216158|0.29167 216159|0.30556 216160|0.38889 216161|0.54167 216162|0.27778 216163|0.22222 216164|0.055556 216165|0.41667 216166|0.5 216167|0.5 216168|0.43056 216169|0.31944 216170|0.31944 216171|0.11111 216172|0.51389 216173|0.19444 216174|0.5 216175|0.41667 216176|0.5 216177|0.5 216178|0.5 216179|0.5 216180|0.5 216181|0.5 216182|0.73611 216183|0.40278 216184|0.52778 216185|0.40278 216186|0.45833 216187|0.27778 216188|0.38889 216189|0.52778 216190|0.61111 216191|0.5 216192|0.76389 216193|0.5 216194|0.29167 216195|0.66667 216196|0.40278 216197|0.125 216198|0.94444 216199|0.5 216200|0.19444 216201|0.44444 216202|0.5 216203|0.52778 216204|0.16667 216205|0.375 216206|0.26389 216207|0.5 216208|0.33333 216209|0.22222 216210|0.44444 216211|0.52778 216212|0.375 216213|0.18056 216214|0.43056 216215|0.44444 216216|0.5 216217|0.5 216218|0.48611 216219|0.5 216220|0.51389 216221|0.22222 216222|0.44444 216223|0.65278 216224|0.5 216225|0.5 216226|0.38889 216227|0.52778 216228|0.38889 216229|0.41667 216230|0.27778 216231|0.38889 216232|0.66667 216233|0.22222 216234|0.5 216235|0.5 216236|0.33333 216237|0.5 216238|0.59722 216239|0.44444 216240|0.43056 216241|0.33333 216242|0.5 216243|0.44444 216244|0.47222 216245|0.22222 216246|0.29167 216247|0.38889 216248|0.36111 216249|0.44444 216250|0.375 216251|0.33333 216252|0.34722 216253|0.43056 216254|0.375 216255|0.36111 216256|0.52778 216257|0.45833 216258|0.125 216259|0.33333 216260|0.25 216261|0.38889 216262|0.27778 216263|0.40278 216264|0.38889 216265|0.19444 216266|0.5 216267|0.51389 216268|0.44444 216269|0.34722 216270|0.38889 216271|0.48611 216272|0.11111 216273|0.47222 216274|0.61111 216275|0.51389 216276|0.51389 216277|0.59722 216278|0.625 216279|0.66667 216280|0.44444 216281|0.55556 216282|0.45833 216283|0.48611 216284|0.47222 216285|0.51389 216286|0.47222 216287|0.30556 216288|0.59722 216289|0.58333 216290|0.48611 216291|0.45833 216292|0.15278 216293|0.23611 216294|0.23611 216295|0.5 216296|0.38889 216297|0.47222 216298|0.47222 216299|0.5 216300|0.5 216301|0.5 216302|0.5 216303|0.44444 216304|0.55556 216305|0.33333 216306|0.44444 216307|0.27778 216308|0.55556 216309|0.30556 216310|0.25 216311|0.65278 216312|0.29167 216313|0.38889 216314|0.29167 216315|0.30556 216316|0.51389 216317|0.31944 216318|0.58333 216319|0.5 216320|0.5 216321|0.19444 216322|0.51389 216323|0.59722 216324|0.54167 216325|0.40278 216326|0.26389 216327|0.63889 216328|0.5 216329|0.44444 216330|0.31944 216331|0.27778 216332|0.625 216333|0.25 216334|0.30556 216335|0.55556 216336|0.43056 216337|0.5 216338|0.5 216339|0.5 216340|0.45833 216341|0.34722 216342|0.33333 216343|0.56944 216344|0.33333 216345|0.19444 216346|0.22222 216347|0.15278 216348|0.069444 216349|0.013889 216350|0.25 216351|0.23611 216352|0.38889 216353|0.44444 216354|0.47222 216355|0.5 216356|0.44444 216357|0.51389 216358|0.54167 216359|0.18056 216360|0.29167 216361|0.5 216362|0.44444 216363|0.52778 216364|0.25 216365|0.5 216366|0.25 216367|0.22222 216368|0.48611 216369|0.5 216370|0.29167 216371|0.33333 216372|0.45833 216373|0.54167 216374|0.52778 216375|0.76389 216376|0.65278 216377|0.79167 216378|0.79167 216379|0.70833 216380|0.40278 216381|0.76389 216382|0.48611 216383|0.5 216384|0.5 216385|0.5 216386|0.15278 216387|0.5 216388|0.23611 216389|0.55556 216390|0.55556 216391|0.36111 216392|0.47222 216393|0.40278 216394|0.52778 216395|0.27778 216396|0.625 216397|0.25 216398|0.22222 216399|0.29167 216400|0.48611 216401|0.59722 216402|0.44444 216403|0.27778 216404|0.26389 216405|0.22222 216406|0.5 216407|0.84722 216408|0.22222 216409|0.5 216410|0.59722 216411|0.47222 216412|0.875 216413|0.29167 216414|0.31944 216415|0.23611 216416|0.66667 216417|0.16667 216418|0.22222 216419|0.18056 216420|0.51389 216421|0.5 216422|0.48611 216423|0.30556 216424|0.22222 216425|0.18056 216426|0.56944 216427|0.66667 216428|0.5 216429|0.31944 216430|0.40278 216431|0.26389 216432|0.5 216433|0.38889 216434|0.40278 216435|0.44444 216436|0.30556 216437|0.23611 216438|0.5 216439|0.36111 216440|0.72222 216441|0.54167 216442|0.54167 216443|0.56944 216444|0.38889 216445|0.5 216446|0.18056 216447|0.34722 216448|0.40278 216449|0.45833 216450|0.38889 216451|0.15278 216452|0.5 216453|0.083333 216454|0.29167 216455|0.18056 216456|0.61111 216457|0.51389 216458|0.54167 216459|0.55556 216460|0.083333 216461|0.66667 216462|0.5 216463|0.5 216464|0.11111 216465|0.27778 216466|0.23611 216467|0.40278 216468|0.22222 216469|0.22222 216470|0.58333 216471|0.45833 216472|0.40278 216473|0.5 216474|0.45833 216475|0.72222 216476|0.55556 216477|0.38889 216478|0.44444 216479|0.44444 216480|0.72222 216481|0.41667 216482|0.19444 216483|0.5 216484|0.59722 216485|0.5 216486|0.22222 216487|0.47222 216488|0.51389 216489|0.5 216490|0.33333 216491|0.65278 216492|0.38889 216493|0.38889 216494|0.125 216495|0.29167 216496|0.58333 216497|0.5 216498|0.5 216499|0.5 216500|0.55556 216501|0.63889 216502|0.55556 216503|0.38889 216504|0.52778 216505|0.41667 216506|0.31944 216507|0.5 216508|0.43056 216509|0.22222 216510|0.15278 216511|0.097222 216512|0.52778 216513|0.52778 216514|0.25 216515|0.23611 216516|0.27778 216517|0.41667 216518|0.055556 216519|0.25 216520|0.83333 216521|0.40278 216522|0.22222 216523|0.27778 216524|0.13889 216525|0.23611 216526|0.19444 216527|0.40278 216528|0.375 216529|0.41667 216530|0.55556 216531|0.43056 216532|0.40278 216533|0.375 216534|0.41667 216535|0.44444 216536|0.44444 216537|0.5 216538|0.5 216539|0.5 216540|0.36111 216541|0.59722 216542|0.19444 216543|0.33333 216544|0.43056 216545|0.56944 216546|0.55556 216547|0.44444 216548|0.33333 216549|0.5 216550|0.55556 216551|0.5 216552|0.27778 216553|0.43056 216554|0.5 216555|0.22222 216556|0.44444 216557|0.38889 216558|0.68056 216559|0.48611 216560|0.61111 216561|0.33333 216562|0.66667 216563|0.63889 216564|0.27778 216565|0.59722 216566|0.29167 216567|0.18056 216568|0.61111 216569|0.40278 216570|0.43056 216571|0.5 216572|0.51389 216573|0.41667 216574|0.29167 216575|0.34722 216576|0.33333 216577|0.5 216578|0.51389 216579|0.5 216580|0.48611 216581|0.36111 216582|0.375 216583|0.44444 216584|0.43056 216585|0.31944 216586|0.33333 216587|0.5 216588|0.5 216589|0.55556 216590|0.5 216591|0.5 216592|0.29167 216593|0.16667 216594|0.55556 216595|0.59722 216596|0.33333 216597|0.5 216598|0.5 216599|0.52778 216600|0.5 216601|0.5 216602|0.5 216603|0.56944 216604|0.5 216605|0.5 216606|0.15278 216607|0.5 216608|0.44444 216609|0.5 216610|0.52778 216611|0.5 216612|0.5 216613|0.5 216614|0.47222 216615|0.29167 216616|0.27778 216617|0.5 216618|0.66667 216619|0.72222 216620|0.56944 216621|0.5 216622|0.55556 216623|0.625 216624|0.36111 216625|0.16667 216626|0.77778 216627|0.56944 216628|0.20833 216629|0.30556 216630|0.5 216631|0.77778 216632|0.65278 216633|0.375 216634|0.34722 216635|0.22222 216636|0.13889 216637|0.56944 216638|0.44444 216639|0.65278 216640|0.70833 216641|0.18056 216642|0.13889 216643|0.59722 216644|0.58333 216645|0.33333 216646|0.25 216647|0.15278 216648|0.30556 216649|0.5 216650|0.375 216651|0.18056 216652|0.5 216653|0.5 216654|0.5 216655|0.20833 216656|0.30556 216657|0.41667 216658|0.41667 216659|0.27778 216660|0.38889 216661|0.18056 216662|0.5 216663|0.5 216664|0.56944 216665|0.36111 216666|0.22222 216667|0.65278 216668|0.22222 216669|0.5 216670|0.22222 216671|0.29167 216672|0.29167 216673|0.36111 216674|0.29167 216675|0.5 216676|0.55556 216677|0.5 216678|0.55556 216679|0.31944 216680|0.38889 216681|0.22222 216682|0.5 216683|0.40278 216684|0.34722 216685|0.58333 216686|0.375 216687|0.43056 216688|0.48611 216689|0.59722 216690|0.36111 216691|0.375 216692|0.5 216693|0.43056 216694|0.40278 216695|0.38889 216696|0.61111 216697|0.25 216698|0.18056 216699|0.38889 216700|0.72222 216701|0.33333 216702|0.33333 216703|0.44444 216704|0.61111 216705|0.41667 216706|0.36111 216707|0.375 216708|0.5 216709|0.5 216710|0.56944 216711|0.5 216712|0.5 216713|0.36111 216714|0.65278 216715|0.5 216716|0.5 216717|0.5 216718|0.5 216719|0.5 216720|0.5 216721|0.5 216722|0.48611 216723|0.54167 216724|0.45833 216725|0.52778 216726|0.54167 216727|0.5 216728|0.54167 216729|0.5 216730|0.5 216731|0.59722 216732|0.5 216733|0.5 216734|0.5 216735|0.23611 216736|0.5 216737|0.20833 216738|0.41667 216739|0.61111 216740|0.33333 216741|0.11111 216742|0.33333 216743|0.375 216744|0.48611 216745|0.31944 216746|0.29167 216747|0.23611 216748|0.36111 216749|0.26389 216750|0.22222 216751|0.25 216752|0.51389 216753|0.375 216754|0.19444 216755|0.27778 216756|0.375 216757|0.36111 216758|0.16667 216759|0.34722 216760|0.19444 216761|0.34722 216762|0.72222 216763|0.5 216764|0.58333 216765|0.5 216766|0.61111 216767|0.51389 216768|0.5 216769|0.5 216770|0.375 216771|0.5 216772|0.51389 216773|0.5 216774|0.5 216775|0.083333 216776|0.47222 216777|0.29167 216778|0.44444 216779|0.18056 216780|0.31944 216781|0.27778 216782|0.44444 216783|0.47222 216784|0.5 216785|0.58333 216786|0.65278 216787|0.47222 216788|0.38889 216789|0.625 216790|0.5 216791|0.5 216792|0.5 216793|0.5 216794|0.51389 216795|0.54167 216796|0.5 216797|0.44444 216798|0.5 216799|0.5 216800|0.5 216801|0.5 216802|0.65278 216803|0.27778 216804|0.38889 216805|0.33333 216806|0.5 216807|0.44444 216808|0.75 216809|0.5 216810|0.48611 216811|0.18056 216812|0.26389 216813|0.40278 216814|0.5 216815|0.375 216816|0.44444 216817|0.48611 216818|0.41667 216819|0.68056 216820|0.26389 216821|0.55556 216822|0.65278 216823|0.41667 216824|0.68056 216825|0.5 216826|0.25 216827|0.34722 216828|0.36111 216829|0.51389 216830|0.66667 216831|0.16667 216832|0.45833 216833|0.55556 216834|0.5 216835|0.38889 216836|0.58333 216837|0.51389 216838|0.55556 216839|0.15278 216840|0.56944 216841|0.58333 216842|0.27778 216843|0.44444 216844|0.51389 216845|0.33333 216846|0.59722 216847|0.5 216848|0.54167 216849|0.51389 216850|0.5 216851|0.44444 216852|0.34722 216853|0.51389 216854|0.5 216855|0.59722 216856|0.30556 216857|0.44444 216858|0.47222 216859|0.54167 216860|0.43056 216861|0.61111 216862|0.61111 216863|0.27778 216864|0.31944 216865|0.45833 216866|0.15278 216867|0.44444 216868|0.29167 216869|0.58333 216870|0.45833 216871|0.30556 216872|0.36111 216873|0.56944 216874|0.5 216875|0.61111 216876|0.51389 216877|0.31944 216878|0.5 216879|0.70833 216880|0.56944 216881|0.38889 216882|0.52778 216883|0.56944 216884|0.5 216885|0.5 216886|0.625 216887|0.5 216888|0.51389 216889|0.51389 216890|0.72222 216891|0.44444 216892|0.45833 216893|0.5 216894|0.51389 216895|0.51389 216896|0.61111 216897|0.63889 216898|0.31944 216899|0.51389 216900|0.55556 216901|0.72222 216902|0.47222 216903|0.55556 216904|0.5 216905|0.47222 216906|0.33333 216907|0.44444 216908|0.30556 216909|0.22222 216910|0.41667 216911|0.34722 216912|0.375 216913|0.125 216914|0.55556 216915|0.40278 216916|0.33333 216917|0.19444 216918|0.375 216919|0.48611 216920|0.5 216921|0.26389 216922|0.375 216923|0.5 216924|0.47222 216925|0.40278 216926|0.44444 216927|0.5 216928|0.55556 216929|0.5 216930|0.40278 216931|0.5 216932|0.30556 216933|0.48611 216934|0.48611 216935|0.31944 216936|0.5 216937|0.54167 216938|0.51389 216939|0.5 216940|0.44444 216941|0.5 216942|0.23611 216943|0.55556 216944|0.36111 216945|0.45833 216946|0.5 216947|0.13889 216948|0.36111 216949|0.5 216950|0.18056 216951|0.5 216952|0.40278 216953|0.29167 216954|0.58333 216955|0.31944 216956|0.5 216957|0.18056 216958|0.5 216959|0.40278 216960|0.13889 216961|0.55556 216962|0.45833 216963|0.41667 216964|0.36111 216965|0.54167 216966|0.36111 216967|0.5 216968|0.375 216969|0.5 216970|0.44444 216971|0.38889 216972|0.5 216973|0.51389 216974|0.30556 216975|0.5 216976|0.59722 216977|0.5 216978|0.5 216979|0.22222 216980|0.48611 216981|0.27778 216982|0.26389 216983|0.5 216984|0.5 216985|0.19444 216986|0.11111 216987|0.44444 216988|0.44444 216989|0.5 216990|0.29167 216991|0.47222 216992|0.375 216993|0.44444 216994|0.20833 216995|0.47222 216996|0.44444 216997|0.38889 216998|0.48611 216999|0.5 217000|0.5 217001|0.56944 217002|0.52778 217003|0.33333 217004|0.5 217005|0.15278 217006|0.44444 217007|0.51389 217008|0.5 217009|0.68056 217010|0.41667 217011|0.40278 217012|0.52778 217013|0.5 217014|0.5 217015|0.5 217016|0.5 217017|0.29167 217018|0.65278 217019|0.61111 217020|0.63889 217021|0.23611 217022|0.5 217023|0.29167 217024|0.5 217025|0.51389 217026|0.375 217027|0.44444 217028|0.5 217029|0.5 217030|0.5 217031|0.36111 217032|0.38889 217033|0.5 217034|0.5 217035|0.44444 217036|0.36111 217037|0.54167 217038|0.51389 217039|0.5 217040|0.27778 217041|0.51389 217042|0.5 217043|0.40278 217044|0.43056 217045|0.47222 217046|0.55556 217047|0.5 217048|0.30556 217049|0.44444 217050|0.58333 217051|0.61111 217052|0.22222 217053|0.61111 217054|0.5 217055|0.48611 217056|0.54167 217057|0.15278 217058|0.44444 217059|0.41667 217060|0.19444 217061|0.43056 217062|0.30556 217063|0.51389 217064|0.45833 217065|0.5 217066|0.5 217067|0.70833 217068|0.52778 217069|0.29167 217070|0.36111 217071|0.51389 217072|0.48611 217073|0.33333 217074|0.19444 217075|0.33333 217076|0.56944 217077|0.44444 217078|0.56944 217079|0.43056 217080|0.18056 217081|0.25 217082|0.25 217083|0.19444 217084|0.55556 217085|0.15278 217086|0.27778 217087|0.40278 217088|0.5 217089|0.52778 217090|0.33333 217091|0.68056 217092|0.44444 217093|0.36111 217094|0.5 217095|0.5 217096|0.47222 217097|0.54167 217098|0.5 217099|0.18056 217100|0.44444 217101|0.52778 217102|0.26389 217103|0.51389 217104|0.45833 217105|0.40278 217106|0.66667 217107|0.18056 217108|0.055556 217109|0.19444 217110|0.55556 217111|0.375 217112|0.36111 217113|0.36111 217114|0.33333 217115|0.26389 217116|0.29167 217117|0.44444 217118|0.5 217119|0.25 217120|0.66667 217121|0.47222 217122|0.41667 217123|0.5 217124|0.66667 217125|0.33333 217126|0.29167 217127|0.34722 217128|0.63889 217129|0.52778 217130|0.5 217131|0.5 217132|0.15278 217133|0.47222 217134|0.31944 217135|0.66667 217136|0.23611 217137|0.625 217138|0.5 217139|0.59722 217140|0.44444 217141|0.125 217142|0.48611 217143|0.61111 217144|0.52778 217145|0.33333 217146|0.5 217147|0.41667 217148|0.45833 217149|0.5 217150|0.34722 217151|0.5 217152|0.26389 217153|0.5 217154|0.375 217155|0.48611 217156|0.31944 217157|0.5 217158|0.29167 217159|0.30556 217160|0.31944 217161|0.45833 217162|0.34722 217163|0.55556 217164|0.40278 217165|0.5 217166|0.58333 217167|0.30556 217168|0.20833 217169|0.52778 217170|0.5 217171|0.27778 217172|0.48611 217173|0.47222 217174|0.47222 217175|0.61111 217176|0.63889 217177|0.40278 217178|0.56944 217179|0.63889 217180|0.59722 217181|0.38889 217182|0.5 217183|0.75 217184|0.68056 217185|0.66667 217186|0.55556 217187|0.52778 217188|0.63889 217189|0.36111 217190|0.54167 217191|0.5 217192|0.56944 217193|0.36111 217194|0.52778 217195|0.55556 217196|0.5 217197|0.61111 217198|0.55556 217199|0.5 217200|0.5 217201|0.41667 217202|0.44444 217203|0.375 217204|0.44444 217205|0.44444 217206|0.40278 217207|0.61111 217208|0.66667 217209|0.51389 217210|0.5 217211|0.30556 217212|0.5 217213|0.25 217214|0.5 217215|0.30556 217216|0.20833 217217|0.43056 217218|0.51389 217219|0.375 217220|0.43056 217221|0.34722 217222|0.45833 217223|0.61111 217224|0.5 217225|0.26389 217226|0.51389 217227|0.26389 217228|0.29167 217229|0.31944 217230|0.69444 217231|0.77778 217232|0.47222 217233|0.5 217234|0.5 217235|0.51389 217236|0.58333 217237|0.5 217238|0.59722 217239|0.27778 217240|0.5 217241|0.54167 217242|0.43056 217243|0.44444 217244|0.61111 217245|0.51389 217246|0.73611 217247|0.5 217248|0.51389 217249|0.20833 217250|0.36111 217251|0.375 217252|0.54167 217253|0.5 217254|0.19444 217255|0.33333 217256|0.58333 217257|0.55556 217258|0.54167 217259|0.375 217260|0.23611 217261|0.5 217262|0.5 217263|0.44444 217264|0.72222 217265|0.31944 217266|0.54167 217267|0.5 217268|0.58333 217269|0.65278 217270|0.51389 217271|0.36111 217272|0.51389 217273|0.48611 217274|0.75 217275|0.5 217276|0.44444 217277|0.44444 217278|0.54167 217279|0.5 217280|0.33333 217281|0.20833 217282|0.52778 217283|0.31944 217284|0.5 217285|0.54167 217286|0.66667 217287|0.66667 217288|0.40278 217289|0.43056 217290|0.55556 217291|0.5 217292|0.5 217293|0.38889 217294|0.41667 217295|0.5 217296|0.40278 217297|0.65278 217298|0.40278 217299|0.59722 217300|0.52778 217301|0.5 217302|0.48611 217303|0.5 217304|0.41667 217305|0.5 217306|0.44444 217307|0.61111 217308|0.51389 217309|0.59722 217310|0.48611 217311|0.23611 217312|0.38889 217313|0.47222 217314|0.5 217315|0.31944 217316|0.20833 217317|0.44444 217318|0.63889 217319|0.5 217320|0.5 217321|0.59722 217322|0.29167 217323|0.61111 217324|0.18056 217325|0.55556 217326|0.625 217327|0.48611 217328|0.41667 217329|0.51389 217330|0.36111 217331|0.52778 217332|0.33333 217333|0.5 217334|0.40278 217335|0.22222 217336|0.52778 217337|0.66667 217338|0.51389 217339|0.40278 217340|0.47222 217341|0.61111 217342|0.5 217343|0.55556 217344|0.56944 217345|0.15278 217346|0.44444 217347|0.097222 217348|0.45833 217349|0.16667 217350|0.26389 217351|0.29167 217352|0.5 217353|0.22222 217354|0.31944 217355|0.27778 217356|0.31944 217357|0.25 217358|0.47222 217359|0.5 217360|0.43056 217361|0.5 217362|0.54167 217363|0.54167 217364|0.48611 217365|0.38889 217366|0.38889 217367|0.19444 217368|0.5 217369|0.34722 217370|0.38889 217371|0.34722 217372|0.52778 217373|0.5 217374|0.27778 217375|0.5 217376|0.52778 217377|0.30556 217378|0.56944 217379|0.27778 217380|0.51389 217381|0.51389 217382|0.15278 217383|0.5 217384|0.375 217385|0.73611 217386|0.55556 217387|0.44444 217388|0.61111 217389|0.625 217390|0.52778 217391|0.36111 217392|0.52778 217393|0.66667 217394|0.44444 217395|0.41667 217396|0.43056 217397|0.125 217398|0.55556 217399|0.44444 217400|0.45833 217401|0.54167 217402|0.5 217403|0.70833 217404|0.44444 217405|0.44444 217406|0.51389 217407|0.36111 217408|0.59722 217409|0.44444 217410|0.73611 217411|0.44444 217412|0.61111 217413|0.63889 217414|0.5 217415|0.55556 217416|0.51389 217417|0.5 217418|0.5 217419|0.5 217420|0.51389 217421|0.33333 217422|0.16667 217423|0.55556 217424|0.5 217425|0.19444 217426|0.5 217427|0.5 217428|0.40278 217429|0.18056 217430|0.22222 217431|0.54167 217432|0.25 217433|0.36111 217434|0.22222 217435|0.34722 217436|0.23611 217437|0.25 217438|0.5 217439|0.5 217440|0.5 217441|0.5 217442|0.5 217443|0.51389 217444|0.27778 217445|0.34722 217446|0.5 217447|0.20833 217448|0.43056 217449|0.54167 217450|0.5 217451|0.5 217452|0.5 217453|0.43056 217454|0.5 217455|0.44444 217456|0.41667 217457|0.38889 217458|0.33333 217459|0.20833 217460|0.5 217461|0.54167 217462|0.34722 217463|0.16667 217464|0.29167 217465|0.5 217466|0.5 217467|0.51389 217468|0.33333 217469|0.55556 217470|0.25 217471|0.54167 217472|0.52778 217473|0.43056 217474|0.29167 217475|0.43056 217476|0.5 217477|0.45833 217478|0.41667 217479|0.44444 217480|0.52778 217481|0.51389 217482|0.5 217483|0.51389 217484|0.30556 217485|0.45833 217486|0.40278 217487|0.5 217488|0.5 217489|0.56944 217490|0.31944 217491|0.5 217492|0.65278 217493|0.5 217494|0.61111 217495|0.33333 217496|0.58333 217497|0.5 217498|0.45833 217499|0.5 217500|0.25 217501|0.5 217502|0.58333 217503|0.5 217504|0.51389 217505|0.23611 217506|0.30556 217507|0.5 217508|0.41667 217509|0.65278 217510|0.22222 217511|0.47222 217512|0.55556 217513|0.5 217514|0.48611 217515|0.5 217516|0.45833 217517|0.58333 217518|0.33333 217519|0.58333 217520|0.38889 217521|0.61111 217522|0.30556 217523|0.31944 217524|0.31944 217525|0.48611 217526|0.5 217527|0.52778 217528|0.34722 217529|0.38889 217530|0.5 217531|0.5 217532|0.68056 217533|0.69444 217534|0.63889 217535|0.48611 217536|0.26389 217537|0.27778 217538|0.18056 217539|0.55556 217540|0.27778 217541|0.36111 217542|0.34722 217543|0.48611 217544|0.5 217545|0.38889 217546|0.52778 217547|0.55556 217548|0.61111 217549|0.48611 217550|0.38889 217551|0.51389 217552|0.25 217553|0.5 217554|0.5 217555|0.5 217556|0.43056 217557|0.5 217558|0.5 217559|0.5 217560|0.5 217561|0.5 217562|0.58333 217563|0.5 217564|0.44444 217565|0.26389 217566|0.22222 217567|0.34722 217568|0.26389 217569|0.097222 217570|0.31944 217571|0.52778 217572|0.54167 217573|0.38889 217574|0.48611 217575|0.44444 217576|0.36111 217577|0.44444 217578|0.25 217579|0.375 217580|0.375 217581|0.31944 217582|0.33333 217583|0.20833 217584|0.45833 217585|0.38889 217586|0.36111 217587|0.33333 217588|0.33333 217589|0.55556 217590|0.375 217591|0.27778 217592|0.44444 217593|0.65278 217594|0.66667 217595|0.51389 217596|0.68056 217597|0.79167 217598|0.23611 217599|0.33333 217600|0.34722 217601|0.33333 217602|0.38889 217603|0.47222 217604|0.20833 217605|0.16667 217606|0.26389 217607|0.36111 217608|0.25 217609|0.26389 217610|0.18056 217611|0.40278 217612|0.375 217613|0.33333 217614|0.33333 217615|0.25 217616|0.34722 217617|0.31944 217618|0.375 217619|0.31944 217620|0.18056 217621|0.43056 217622|0.30556 217623|0.29167 217624|0.41667 217625|0.22222 217626|0.20833 217627|0.33333 217628|0.45833 217629|0.29167 217630|0.41667 217631|0.36111 217632|0.44444 217633|0.375 217634|0.34722 217635|0.16667 217636|0.30556 217637|0.20833 217638|0.30556 217639|0.47222 217640|0.38889 217641|0.23611 217642|0.26389 217643|0.31944 217644|0.26389 217645|0.45833 217646|0.5 217647|0.33333 217648|0.27778 217649|0.20833 217650|0.27778 217651|0.43056 217652|0.30556 217653|0.43056 217654|0.40278 217655|0.34722 217656|0.25 217657|0.38889 217658|0.44444 217659|0.38889 217660|0.27778 217661|0.51389 217662|0.45833 217663|0.31944 217664|0.38889 217665|0.27778 217666|0.25 217667|0.5 217668|0.33333 217669|0.29167 217670|0.54167 217671|0.375 217672|0.34722 217673|0.45833 217674|0.43056 217675|0.54167 217676|0.375 217677|0.44444 217678|0.5 217679|0.5 217680|0.5 217681|0.47222 217682|0.48611 217683|0.44444 217684|0.75 217685|0.5 217686|0.13889 217687|0.38889 217688|0.41667 217689|0.45833 217690|0.45833 217691|0.5 217692|0.5 217693|0.30556 217694|0.31944 217695|0.38889 217696|0.55556 217697|0.63889 217698|0.36111 217699|0.52778 217700|0.33333 217701|0.38889 217702|0.48611 217703|0.33333 217704|0.68056 217705|0.40278 217706|0.47222 217707|0.16667 217708|0.38889 217709|0.47222 217710|0.56944 217711|0.25 217712|0.27778 217713|0.125 217714|0.40278 217715|0.55556 217716|0.44444 217717|0.31944 217718|0.125 217719|0.5 217720|0.5 217721|0.68056 217722|0.40278 217723|0.5 217724|0.5 217725|0.5 217726|0.43056 217727|0.5 217728|0.27778 217729|0.63889 217730|0.47222 217731|0.5 217732|0.59722 217733|0.55556 217734|0.5 217735|0.25 217736|0.55556 217737|0.23611 217738|0.44444 217739|0.47222 217740|0.5 217741|0.36111 217742|0.66667 217743|0.44444 217744|0.55556 217745|0.5 217746|0.5 217747|0.29167 217748|0.23611 217749|0.5 217750|0.5 217751|0.55556 217752|0.36111 217753|0.77778 217754|0.47222 217755|0.59722 217756|0.18056 217757|0.16667 217758|0.20833 217759|0.25 217760|0.27778 217761|0.52778 217762|0.5 217763|0.43056 217764|0.48611 217765|0.58333 217766|0.13889 217767|0.38889 217768|0.29167 217769|0.52778 217770|0.22222 217771|0.27778 217772|0.61111 217773|0.61111 217774|0.56944 217775|0.055556 217776|0.20833 217777|0.61111 217778|0.27778 217779|0.5 217780|0.52778 217781|0.33333 217782|0.5 217783|0.75 217784|0.40278 217785|0.31944 217786|0.5 217787|0.45833 217788|0.48611 217789|0.26389 217790|0.23611 217791|0.34722 217792|0.33333 217793|0.33333 217794|0.26389 217795|0.5 217796|0.56944 217797|0.33333 217798|0.72222 217799|0.625 217800|0.41667 217801|0.18056 217802|0.29167 217803|0.27778 217804|0.25 217805|0.27778 217806|0.41667 217807|0.34722 217808|0.44444 217809|0.48611 217810|0.72222 217811|0.59722 217812|0.44444 217813|0.41667 217814|0.23611 217815|0.33333 217816|0.47222 217817|0.22222 217818|0.5 217819|0.48611 217820|0.5 217821|0.48611 217822|0.48611 217823|0.5 217824|0.44444 217825|0.52778 217826|0.36111 217827|0.56944 217828|0.375 217829|0.40278 217830|0.66667 217831|0.40278 217832|0.5 217833|0.55556 217834|0.29167 217835|0.34722 217836|0.29167 217837|0.45833 217838|0.5 217839|0.65278 217840|0.5 217841|0.61111 217842|0.69444 217843|0.5 217844|0.26389 217845|0.16667 217846|0.34722 217847|0.76389 217848|0.625 217849|0.44444 217850|0.55556 217851|0.55556 217852|0.76389 217853|0.90278 217854|0.58333 217855|0.61111 217856|0.29167 217857|0.44444 217858|0.625 217859|0.83333 217860|0.44444 217861|0.625 217862|0.5 217863|0.75 217864|0.59722 217865|0.5 217866|0.54167 217867|0.5 217868|0.61111 217869|0.61111 217870|0.55556 217871|0.38889 217872|0.44444 217873|0.75 217874|0.38889 217875|0.375 217876|0.48611 217877|0.5 217878|0.29167 217879|0.23611 217880|0.29167 217881|0.38889 217882|0.5 217883|0.34722 217884|0.48611 217885|0.47222 217886|0.54167 217887|0.44444 217888|0.41667 217889|0.38889 217890|0.5 217891|0.59722 217892|0.31944 217893|0.41667 217894|0.29167 217895|0.11111 217896|0.52778 217897|0.36111 217898|0.29167 217899|0.26389 217900|0.43056 217901|0.375 217902|0.44444 217903|0.70833 217904|0.22222 217905|0.33333 217906|0.44444 217907|0.44444 217908|0.61111 217909|0.34722 217910|0.33333 217911|0.5 217912|0.5 217913|0.5 217914|0.5 217915|0.52778 217916|0.40278 217917|0.5 217918|0.36111 217919|0.33333 217920|0.58333 217921|0.5 217922|0.5 217923|0.375 217924|0.34722 217925|0.30556 217926|0.30556 217927|0.70833 217928|0.29167 217929|0.36111 217930|0.48611 217931|0.33333 217932|0.54167 217933|0.22222 217934|0.5 217935|0.51389 217936|0.59722 217937|0.5 217938|0.5 217939|0.56944 217940|0.36111 217941|0.125 217942|0.5 217943|0.5 217944|0.38889 217945|0.44444 217946|0.625 217947|0.5 217948|0.43056 217949|0.43056 217950|0.625 217951|0.48611 217952|0.22222 217953|0.43056 217954|0.5 217955|0.5 217956|0.31944 217957|0.26389 217958|0.41667 217959|0.5 217960|0.44444 217961|0.45833 217962|0.55556 217963|0.5 217964|0.5 217965|0.41667 217966|0.40278 217967|0.45833 217968|0.36111 217969|0.61111 217970|0.63889 217971|0.5 217972|0.43056 217973|0.47222 217974|0.5 217975|0.55556 217976|0.44444 217977|0.54167 217978|0.61111 217979|0.58333 217980|0.40278 217981|0.75 217982|0.38889 217983|0.5 217984|0.59722 217985|0.125 217986|0.5 217987|0.40278 217988|0.72222 217989|0.77778 217990|0.5 217991|0.44444 217992|0.66667 217993|0.34722 217994|0.36111 217995|0.22222 217996|0.25 217997|0.5 217998|0.79167 217999|0.77778 218000|0.77778 218001|0.72222 218002|0.81944 218003|0.55556 218004|0.38889 218005|0.19444 218006|0.55556 218007|0.5 218008|0.61111 218009|0.16667 218010|0.66667 218011|0.47222 218012|0.5 218013|0.5 218014|0.5 218015|0.44444 218016|0.5 218017|0.5 218018|0.52778 218019|0.22222 218020|0.38889 218021|0.5 218022|0.45833 218023|0.43056 218024|0.47222 218025|0.31944 218026|0.36111 218027|0.31944 218028|0.375 218029|0.5 218030|0.25 218031|0.13889 218032|0.15278 218033|0.19444 218034|0.125 218035|0.25 218036|0.375 218037|0.41667 218038|0.81944 218039|0.375 218040|0.69444 218041|0.61111 218042|0.625 218043|0.27778 218044|0.54167 218045|0.20833 218046|0.27778 218047|0.13889 218048|0.25 218049|0.19444 218050|0.16667 218051|0.125 218052|0.43056 218053|0.48611 218054|0.51389 218055|0.38889 218056|0.125 218057|0.19444 218058|0.47222 218059|0.44444 218060|0.30556 218061|0.5 218062|0.38889 218063|0.48611 218064|0.61111 218065|0.16667 218066|0.48611 218067|0.25 218068|0.25 218069|0.38889 218070|0.27778 218071|0.19444 218072|0.16667 218073|0.47222 218074|0.58333 218075|0.51389 218076|0.30556 218077|0.30556 218078|0.31944 218079|0.34722 218080|0.54167 218081|0.38889 218082|0.45833 218083|0.41667 218084|0.43056 218085|0.31944 218086|0.26389 218087|0.36111 218088|0.56944 218089|0.29167 218090|0.54167 218091|0.44444 218092|0.5 218093|0.27778 218094|0.34722 218095|0.5 218096|0.55556 218097|0.33333 218098|0.5 218099|0.38889 218100|0.65278 218101|0.44444 218102|0.33333 218103|0.25 218104|0.11111 218105|0.45833 218106|0.25 218107|0.44444 218108|0.66667 218109|0.48611 218110|0.5 218111|0.34722 218112|0.5 218113|0.47222 218114|0.19444 218115|0.13889 218116|0.11111 218117|0.5 218118|0.16667 218119|0.26389 218120|0.22222 218121|0.33333 218122|0.34722 218123|0.41667 218124|0.30556 218125|0.44444 218126|0.44444 218127|0.5 218128|0.30556 218129|0.5 218130|0.5 218131|0.52778 218132|0.5 218133|0.54167 218134|0.36111 218135|0.36111 218136|0.44444 218137|0.31944 218138|0.34722 218139|0.29167 218140|0.5 218141|0.52778 218142|0.59722 218143|0.097222 218144|0.51389 218145|0.26389 218146|0.48611 218147|0.25 218148|0.51389 218149|0.5 218150|0.23611 218151|0.65278 218152|0.5 218153|0.33333 218154|0.23611 218155|0.41667 218156|0.5 218157|0.5 218158|0.23611 218159|0.29167 218160|0.31944 218161|0.72222 218162|0.29167 218163|0.44444 218164|0.75 218165|0.47222 218166|0.44444 218167|0.45833 218168|0.36111 218169|0.38889 218170|0.38889 218171|0.375 218172|0.51389 218173|0.38889 218174|0.33333 218175|0.31944 218176|0.30556 218177|0.33333 218178|0.15278 218179|0.26389 218180|0.38889 218181|0.38889 218182|0.5 218183|0.19444 218184|0.34722 218185|0.22222 218186|0.34722 218187|0.47222 218188|0.27778 218189|0.26389 218190|0.375 218191|0.48611 218192|0.51389 218193|0.33333 218194|0.22222 218195|0.31944 218196|0.18056 218197|0.61111 218198|0.77778 218199|0.72222 218200|0.63889 218201|0.26389 218202|0.31944 218203|0.15278 218204|0.27778 218205|0.40278 218206|0.15278 218207|0.375 218208|0.29167 218209|0.34722 218210|0.43056 218211|0.36111 218212|0.26389 218213|0.34722 218214|0.29167 218215|0.29167 218216|0.23611 218217|0.23611 218218|0.25 218219|0.26389 218220|0.11111 218221|0.13889 218222|0.30556 218223|0.055556 218224|0.11111 218225|0.097222 218226|0.15278 218227|0.055556 218228|0.055556 218229|0.29167 218230|0.33333 218231|0.23611 218232|0.125 218233|0.16667 218234|0.59722 218235|0.43056 218236|0.44444 218237|0.31944 218238|0.43056 218239|0.25 218240|0.375 218241|0.26389 218242|0.43056 218243|0.5 218244|0.41667 218245|0.45833 218246|0.40278 218247|0.22222 218248|0.16667 218249|0.41667 218250|0.5 218251|0.33333 218252|0.27778 218253|0.20833 218254|0.44444 218255|0.26389 218256|0.22222 218257|0.33333 218258|0.5 218259|0.31944 218260|0.34722 218261|0.625 218262|0.83333 218263|0.27778 218264|0.26389 218265|0.23611 218266|0.20833 218267|0.66667 218268|0.15278 218269|0.5 218270|0.41667 218271|0.66667 218272|0.5 218273|0.5 218274|0.38889 218275|0.30556 218276|0.36111 218277|0.33333 218278|0.61111 218279|0.59722 218280|0.38889 218281|0.51389 218282|0.40278 218283|0.36111 218284|0.5 218285|0.16667 218286|0.5 218287|0.5 218288|0.26389 218289|0.26389 218290|0.125 218291|0.5 218292|0.58333 218293|0.5 218294|0.59722 218295|0.23611 218296|0.5 218297|0.51389 218298|0.5 218299|0.44444 218300|0.59722 218301|0.48611 218302|0.41667 218303|0.48611 218304|0.55556 218305|0.51389 218306|0.55556 218307|0.54167 218308|0.63889 218309|0.63889 218310|0.70833 218311|0.44444 218312|0.75 218313|0.5 218314|0.41667 218315|0.5 218316|0.5 218317|0.5 218318|0.5 218319|0.5 218320|0.51389 218321|0.56944 218322|0.34722 218323|0.5 218324|0.20833 218325|0.48611 218326|0.55556 218327|0.68056 218328|0.5 218329|0.30556 218330|0.76389 218331|0.63889 218332|0.51389 218333|0.33333 218334|0.69444 218335|0.625 218336|0.625 218337|0.44444 218338|0.44444 218339|0.52778 218340|0.40278 218341|0.22222 218342|0.33333 218343|0.55556 218344|0.38889 218345|0.38889 218346|0.44444 218347|0.44444 218348|0.55556 218349|0.30556 218350|0.34722 218351|0.125 218352|0.34722 218353|0.52778 218354|0.25 218355|0.069444 218356|0 218357|0.63889 218358|0.40278 218359|0.5 218360|0.23611 218361|0.30556 218362|0.51389 218363|0.27778 218364|0.23611 218365|0.65278 218366|0.54167 218367|0.5 218368|0.5 218369|0.58333 218370|0.29167 218371|0.48611 218372|0.375 218373|0.47222 218374|0.5 218375|0.27778 218376|0.47222 218377|0.73611 218378|0.5 218379|0.5 218380|0.26389 218381|0.38889 218382|0.19444 218383|0.55556 218384|0.20833 218385|0.125 218386|0.18056 218387|0.47222 218388|0.23611 218389|0.11111 218390|0.055556 218391|0.34722 218392|0.31944 218393|0.23611 218394|0.48611 218395|0.27778 218396|0.51389 218397|0.69444 218398|0.25 218399|0.79167 218400|0.33333 218401|0.52778 218402|0.23611 218403|0.61111 218404|0.5 218405|0.625 218406|0.65278 218407|0.54167 218408|0.40278 218409|0.44444 218410|0.5 218411|0.31944 218412|0.29167 218413|0.31944 218414|0.47222 218415|0.375 218416|0.51389 218417|0.25 218418|0.5 218419|0.56944 218420|0.48611 218421|0.36111 218422|0.5 218423|0.5 218424|0.5 218425|0.5 218426|0.5 218427|0.55556 218428|0.5 218429|0.5 218430|0.51389 218431|0.52778 218432|0.625 218433|0.51389 218434|0.5 218435|0.44444 218436|0.34722 218437|0.27778 218438|0.29167 218439|0.097222 218440|0.34722 218441|0.29167 218442|0.33333 218443|0.72222 218444|0.19444 218445|0.56944 218446|0.45833 218447|0.47222 218448|0.5 218449|0.52778 218450|0.51389 218451|0.26389 218452|0.25 218453|0.44444 218454|0.5 218455|0.54167 218456|0.80556 218457|0.43056 218458|0.5 218459|0.88889 218460|0.38889 218461|0.48611 218462|0.59722 218463|0.875 218464|0.5 218465|0.5 218466|0.68056 218467|0.79167 218468|0.5 218469|0.75 218470|0.375 218471|0.48611 218472|0.625 218473|0.51389 218474|0.40278 218475|0.88889 218476|0.76389 218477|0.54167 218478|0.63889 218479|0.5 218480|0.13889 218481|0.5 218482|0.45833 218483|0.29167 218484|0.44444 218485|0.83333 218486|0.5 218487|0.61111 218488|0.66667 218489|0.5 218490|0.55556 218491|0.59722 218492|0.33333 218493|0.30556 218494|0.56944 218495|0.5 218496|0.30556 218497|0.41667 218498|0.29167 218499|0.31944 218500|0.52778 218501|0.68056 218502|0.75 218503|0.79167 218504|0.59722 218505|0.31944 218506|0.52778 218507|0.79167 218508|0.5 218509|0.88889 218510|0.43056 218511|0.51389 218512|0.5 218513|0.5 218514|0.625 218515|0.22222 218516|0.18056 218517|0.29167 218518|0.34722 218519|0.47222 218520|0.40278 218521|0.5 218522|0.5 218523|0.51389 218524|0.48611 218525|0.44444 218526|0.5 218527|0.5 218528|0.5 218529|0.25 218530|0.52778 218531|0.25 218532|0.54167 218533|0.22222 218534|0.52778 218535|0.31944 218536|0.25 218537|0.25 218538|0.30556 218539|0.5 218540|0.48611 218541|0.22222 218542|0.18056 218543|0.11111 218544|0.055556 218545|0.34722 218546|0.30556 218547|0.5 218548|0.40278 218549|0.26389 218550|0.13889 218551|0.44444 218552|0.44444 218553|0.5 218554|0.22222 218555|0.25 218556|0.18056 218557|0.34722 218558|0.31944 218559|0.33333 218560|0.36111 218561|0.52778 218562|0.5 218563|0.041667 218564|0.45833 218565|0.54167 218566|0.20833 218567|0.54167 218568|0.23611 218569|0.65278 218570|0.47222 218571|0.61111 218572|0.33333 218573|0.70833 218574|0.79167 218575|0.68056 218576|0.58333 218577|0.33333 218578|0.44444 218579|0.77778 218580|0.5 218581|0.54167 218582|0.41667 218583|0.625 218584|0.027778 218585|0.26389 218586|0.41667 218587|0.16667 218588|0.20833 218589|0.16667 218590|0.61111 218591|0.5 218592|0.63889 218593|0.61111 218594|0.38889 218595|0.58333 218596|0.44444 218597|0.5 218598|0.52778 218599|0.5 218600|0.5 218601|0.43056 218602|0.55556 218603|0.5 218604|0.5 218605|0.41667 218606|0.27778 218607|0.36111 218608|0.66667 218609|0.48611 218610|0.29167 218611|0.5 218612|0.34722 218613|0.5 218614|0.29167 218615|0.48611 218616|0.48611 218617|0.40278 218618|0.25 218619|0.40278 218620|0.41667 218621|0.5 218622|0.25 218623|0.47222 218624|0.29167 218625|0.31944 218626|0.51389 218627|0.22222 218628|0.36111 218629|0.34722 218630|0.16667 218631|0.22222 218632|0.13889 218633|0.055556 218634|0.083333 218635|0.22222 218636|0.22222 218637|0.59722 218638|0.36111 218639|0.5 218640|0.44444 218641|0.34722 218642|0.19444 218643|0.30556 218644|0.22222 218645|0.26389 218646|0.30556 218647|0.31944 218648|0.55556 218649|0.51389 218650|0.40278 218651|0.18056 218652|0.43056 218653|0.55556 218654|0.59722 218655|0.69444 218656|0.5 218657|0.25 218658|0.44444 218659|0.44444 218660|0.56944 218661|0.22222 218662|0.20833 218663|0.38889 218664|0.34722 218665|0.44444 218666|0.66667 218667|0.5 218668|0.61111 218669|0.5 218670|0.52778 218671|0.41667 218672|0.31944 218673|0.52778 218674|0.23611 218675|0.48611 218676|0.5 218677|0.30556 218678|0.26389 218679|0.47222 218680|0.5 218681|0.55556 218682|0.54167 218683|0.54167 218684|0.45833 218685|0.5 218686|0.5 218687|0.5 218688|0.73611 218689|0.75 218690|0.76389 218691|0.55556 218692|0.5 218693|0.40278 218694|0.66667 218695|0.34722 218696|0.41667 218697|0.51389 218698|0.56944 218699|0.38889 218700|0.19444 218701|0.5 218702|0.59722 218703|0.30556 218704|0.48611 218705|0.69444 218706|0.51389 218707|0.55556 218708|0.5 218709|0.38889 218710|0.5 218711|0.43056 218712|0.44444 218713|0.38889 218714|0.33333 218715|0.43056 218716|0.44444 218717|0.5 218718|0.5 218719|0.75 218720|0.27778 218721|0.52778 218722|0.72222 218723|0.43056 218724|0.31944 218725|0.20833 218726|0.47222 218727|0.66667 218728|0.5 218729|0.25 218730|0.33333 218731|0.70833 218732|0.36111 218733|0.5 218734|0.51389 218735|0.34722 218736|0.48611 218737|0.61111 218738|0.36111 218739|0.5 218740|0.27778 218741|0.5 218742|0.30556 218743|0.44444 218744|0.56944 218745|0.44444 218746|0.56944 218747|0.45833 218748|0.23611 218749|0.43056 218750|0.38889 218751|0.44444 218752|0.38889 218753|0.5 218754|0.36111 218755|0.31944 218756|0.30556 218757|0.61111 218758|0.69444 218759|0.84722 218760|0.27778 218761|0.25 218762|0.5 218763|0.41667 218764|0.47222 218765|0.5 218766|0.47222 218767|0.47222 218768|0.54167 218769|0.15278 218770|0.25 218771|0.44444 218772|0.58333 218773|0.5 218774|0.5 218775|0.083333 218776|0.38889 218777|0.097222 218778|0.15278 218779|0.041667 218780|0.375 218781|0.26389 218782|0.5 218783|0.5 218784|0.30556 218785|0.66667 218786|0.72222 218787|0.5 218788|0.5 218789|0.51389 218790|0.41667 218791|0.55556 218792|0.44444 218793|0.56944 218794|0.5 218795|0.625 218796|0.5 218797|0.63889 218798|0.30556 218799|0.20833 218800|0.34722 218801|0.48611 218802|0.47222 218803|0.38889 218804|0.59722 218805|0.59722 218806|0.58333 218807|0.27778 218808|0.26389 218809|0.13889 218810|0.22222 218811|0.26389 218812|0.16667 218813|0.34722 218814|0.13889 218815|0.22222 218816|0.375 218817|0.13889 218818|0.31944 218819|0.16667 218820|0.13889 218821|0.097222 218822|0.22222 218823|0.40278 218824|0.38889 218825|0.069444 218826|0.26389 218827|0.16667 218828|0.27778 218829|0.18056 218830|0.22222 218831|0.25 218832|0.16667 218833|0.55556 218834|0.43056 218835|0.55556 218836|0.79167 218837|0.5 218838|0.58333 218839|0.55556 218840|0.52778 218841|0.27778 218842|0.5 218843|0.44444 218844|0.38889 218845|0.38889 218846|0.43056 218847|0.56944 218848|0.5 218849|0.76389 218850|0.5 218851|0.79167 218852|0.77778 218853|0.33333 218854|0.25 218855|0.23611 218856|0.41667 218857|0.73611 218858|0.41667 218859|0.34722 218860|0.26389 218861|0.5 218862|0.69444 218863|0.31944 218864|0.45833 218865|0.16667 218866|0.19444 218867|0.63889 218868|0.5 218869|0.47222 218870|0.34722 218871|0.59722 218872|0.56944 218873|0.5 218874|0.44444 218875|0.5 218876|0.5 218877|0.26389 218878|0.097222 218879|0.25 218880|0.5 218881|0.5 218882|0.055556 218883|0.5 218884|0.5 218885|0.5 218886|0.27778 218887|0.38889 218888|0.30556 218889|0.27778 218890|0.36111 218891|0.43056 218892|0.5 218893|0.34722 218894|0.59722 218895|0.5 218896|0.55556 218897|0.31944 218898|0.5 218899|0.55556 218900|0.5 218901|0.30556 218902|0.33333 218903|0.45833 218904|0.45833 218905|0.33333 218906|0.22222 218907|0.56944 218908|0.34722 218909|0.26389 218910|0.48611 218911|0.5 218912|0.48611 218913|0.38889 218914|0.54167 218915|0.44444 218916|0.41667 218917|0.5 218918|0.26389 218919|0.54167 218920|0.5 218921|0.5 218922|0.5 218923|0.73611 218924|0.45833 218925|0.47222 218926|0.70833 218927|0.47222 218928|0.33333 218929|0.52778 218930|0.26389 218931|0.23611 218932|0.041667 218933|0.5 218934|0.5 218935|0.43056 218936|0.26389 218937|0.54167 218938|0.30556 218939|0.48611 218940|0.54167 218941|0.43056 218942|0.22222 218943|0.31944 218944|0.5 218945|0.41667 218946|0.5 218947|0.44444 218948|0.40278 218949|0.18056 218950|0.31944 218951|0.31944 218952|0.375 218953|0.625 218954|0.33333 218955|0.25 218956|0.47222 218957|0.5 218958|0.31944 218959|0.375 218960|0.31944 218961|0.33333 218962|0.375 218963|0.33333 218964|0.43056 218965|0.44444 218966|0.5 218967|0.5 218968|0.56944 218969|0.25 218970|0.30556 218971|0.34722 218972|0.55556 218973|0.40278 218974|0.26389 218975|0.5 218976|0.5 218977|0.48611 218978|0.5 218979|0.5 218980|0.16667 218981|0.30556 218982|0.20833 218983|0.34722 218984|0.27778 218985|0.44444 218986|0.44444 218987|0.19444 218988|0.31944 218989|0.22222 218990|0.33333 218991|0.41667 218992|0.33333 218993|0.38889 218994|0.375 218995|0.18056 218996|0.41667 218997|0.56944 218998|0.59722 218999|0.55556 219000|0.56944 219001|0.86111 219002|0.625 219003|0.72222 219004|0.65278 219005|0.58333 219006|0.56944 219007|0.68056 219008|0.55556 219009|0.68056 219010|0.55556 219011|0.66667 219012|0.83333 219013|0.45833 219014|0.75 219015|0.75 219016|0.47222 219017|0.61111 219018|0.72222 219019|0.5 219020|0.72222 219021|0.83333 219022|0.80556 219023|0.68056 219024|0.86111 219025|0.70833 219026|0.80556 219027|0.69444 219028|0.68056 219029|0.69444 219030|0.65278 219031|0.41667 219032|0.55556 219033|0.5 219034|0.48611 219035|0.44444 219036|0.41667 219037|0.5 219038|0.375 219039|0.20833 219040|0.625 219041|0.33333 219042|0.5 219043|0.47222 219044|0.38889 219045|0.375 219046|0.33333 219047|0.47222 219048|0.52778 219049|0.38889 219050|0.52778 219051|0.33333 219052|0.22222 219053|0.83333 219054|0.30556 219055|0.44444 219056|0.5 219057|0.5 219058|0.25 219059|0.5 219060|0.5 219061|0.38889 219062|0.63889 219063|0.5 219064|0.43056 219065|0.44444 219066|0.5 219067|0.30556 219068|0.54167 219069|0.375 219070|0.5 219071|0.44444 219072|0.48611 219073|0.5 219074|0.38889 219075|0.52778 219076|0.5 219077|0.56944 219078|0.44444 219079|0.44444 219080|0.5 219081|0.52778 219082|0.125 219083|0.34722 219084|0.51389 219085|0.5 219086|0.5 219087|0.59722 219088|0.38889 219089|0.5 219090|0.27778 219091|0.375 219092|0.29167 219093|0.27778 219094|0.47222 219095|0.5 219096|0.27778 219097|0.5 219098|0.5 219099|0.25 219100|0.13889 219101|0.33333 219102|0.5 219103|0.055556 219104|0.5 219105|0.33333 219106|0.5 219107|0.41667 219108|0.36111 219109|0.72222 219110|0.45833 219111|0.25 219112|0.43056 219113|0.48611 219114|0.5 219115|0.51389 219116|0.41667 219117|0.52778 219118|0.55556 219119|0.51389 219120|0.41667 219121|0.51389 219122|0.43056 219123|0.375 219124|0.73611 219125|0.55556 219126|0.52778 219127|0.5 219128|0.5 219129|0.48611 219130|0.31944 219131|0.29167 219132|0.75 219133|0.52778 219134|0.76389 219135|0.375 219136|0.41667 219137|0.5 219138|0.5 219139|0.5 219140|0.5 219141|0.5 219142|0.27778 219143|0.54167 219144|0.48611 219145|0.5 219146|0.16667 219147|0.5 219148|0.44444 219149|0.5 219150|0.29167 219151|0.55556 219152|0.44444 219153|0.5 219154|0.5 219155|0.5 219156|0.19444 219157|0.15278 219158|0.5 219159|0.44444 219160|0.5 219161|0.5 219162|0.47222 219163|0.5 219164|0.38889 219165|0.5 219166|0.5 219167|0.5 219168|0.34722 219169|0.25 219170|0.55556 219171|0.5 219172|0.5 219173|0.25 219174|0.33333 219175|0.47222 219176|0.34722 219177|0.22222 219178|0.59722 219179|0.25 219180|0.68056 219181|0.73611 219182|0.43056 219183|0.38889 219184|0.52778 219185|0.5 219186|0.52778 219187|0.41667 219188|0.47222 219189|0.22222 219190|0.5 219191|0.5 219192|0.51389 219193|0.5 219194|0.33333 219195|0.23611 219196|0.48611 219197|0.5 219198|0.52778 219199|0.61111 219200|0.48611 219201|0.55556 219202|0.27778 219203|0.72222 219204|0.52778 219205|0.48611 219206|0.48611 219207|0.43056 219208|0.33333 219209|0.45833 219210|0.27778 219211|0.55556 219212|0.5 219213|0.25 219214|0.27778 219215|0.33333 219216|0.34722 219217|0.375 219218|0.26389 219219|0.22222 219220|0.29167 219221|0.55556 219222|0.375 219223|0.44444 219224|0.5 219225|0.65278 219226|0.19444 219227|0.44444 219228|0.38889 219229|0.56944 219230|0.43056 219231|0.44444 219232|0.51389 219233|0.55556 219234|0.34722 219235|0.16667 219236|0.33333 219237|0.33333 219238|0.76389 219239|0.44444 219240|0.23611 219241|0.47222 219242|0.5 219243|0.27778 219244|0.33333 219245|0.5 219246|0.47222 219247|0.70833 219248|0.56944 219249|0.16667 219250|0.56944 219251|0.65278 219252|0.40278 219253|0.34722 219254|0.45833 219255|0.66667 219256|0.27778 219257|0.5 219258|0.31944 219259|0.31944 219260|0.18056 219261|0.23611 219262|0.16667 219263|0.43056 219264|0.81944 219265|0.18056 219266|0.33333 219267|0.47222 219268|0.13889 219269|0.44444 219270|0.5 219271|0.5 219272|0.34722 219273|0.55556 219274|0.65278 219275|0.38889 219276|0.22222 219277|0.38889 219278|0.73611 219279|0.61111 219280|0.36111 219281|0.44444 219282|0.40278 219283|0.34722 219284|0.38889 219285|0.26389 219286|0.40278 219287|0.23611 219288|0.52778 219289|0.48611 219290|0.5 219291|0.41667 219292|0.63889 219293|0.22222 219294|0.27778 219295|0.80556 219296|0.625 219297|0.26389 219298|0.38889 219299|0.25 219300|0.33333 219301|0.5 219302|0.63889 219303|0.79167 219304|0.44444 219305|0.26389 219306|0.44444 219307|0.13889 219308|0 219309|0.22222 219310|0.29167 219311|0.52778 219312|0.52778 219313|0.5 219314|0.5 219315|0.47222 219316|0.51389 219317|0.29167 219318|0.54167 219319|0.43056 219320|0.54167 219321|0.5 219322|0.38889 219323|0.5 219324|0.54167 219325|0.44444 219326|0.26389 219327|0.5 219328|0.5 219329|0.5 219330|0.5 219331|0.54167 219332|0.33333 219333|0.36111 219334|0.38889 219335|0.33333 219336|0.29167 219337|0.625 219338|0.19444 219339|0.16667 219340|0.33333 219341|0.54167 219342|0.43056 219343|0.16667 219344|0.5 219345|0.5 219346|0.5 219347|0.5 219348|0.61111 219349|0.61111 219350|0.33333 219351|0.58333 219352|0.5 219353|0.68056 219354|0.48611 219355|0.33333 219356|0.45833 219357|0.44444 219358|0.34722 219359|0.5 219360|0.5 219361|0.33333 219362|0.52778 219363|0.5 219364|0.43056 219365|0.31944 219366|0.33333 219367|0.27778 219368|0.5 219369|0.47222 219370|0.36111 219371|0.31944 219372|0.33333 219373|0.41667 219374|0.5 219375|0.22222 219376|0.375 219377|0.44444 219378|0.5 219379|0.29167 219380|0.40278 219381|0.44444 219382|0.59722 219383|0.5 219384|0.55556 219385|0.61111 219386|0.61111 219387|0.40278 219388|0.5 219389|0.34722 219390|0.65278 219391|0.5 219392|0.5 219393|0.52778 219394|0.45833 219395|0.61111 219396|0.34722 219397|0.5 219398|0.59722 219399|0.27778 219400|0.44444 219401|0.40278 219402|0.29167 219403|0.33333 219404|0.25 219405|0.31944 219406|0.61111 219407|0.5 219408|0.66667 219409|0.51389 219410|0.48611 219411|0.55556 219412|0.61111 219413|0.34722 219414|0.45833 219415|0.58333 219416|0.47222 219417|0.84722 219418|0.36111 219419|0.58333 219420|0.5 219421|0.5 219422|0.40278 219423|0.5 219424|0.68056 219425|0.15278 219426|0.40278 219427|0.26389 219428|0.5 219429|0.45833 219430|0.15278 219431|0.33333 219432|0.13889 219433|0.19444 219434|0.125 219435|0.22222 219436|0.18056 219437|0.43056 219438|0.29167 219439|0.069444 219440|0.5 219441|0.27778 219442|0.20833 219443|0.34722 219444|0.58333 219445|0.52778 219446|0.47222 219447|0.36111 219448|0.27778 219449|0.5 219450|0.5 219451|0.5 219452|0.33333 219453|0.73611 219454|0.66667 219455|0.5 219456|0.34722 219457|0.69444 219458|0.55556 219459|0.5 219460|0.56944 219461|0.26389 219462|0.33333 219463|0.29167 219464|0.43056 219465|0.19444 219466|0.18056 219467|0.33333 219468|0.30556 219469|0.25 219470|0.48611 219471|0.45833 219472|0.44444 219473|0.26389 219474|0.38889 219475|0.31944 219476|0.38889 219477|0.47222 219478|0.36111 219479|0.77778 219480|0.41667 219481|0.55556 219482|0.63889 219483|0.44444 219484|0.41667 219485|0.55556 219486|0.66667 219487|0.25 219488|0.45833 219489|0.55556 219490|0.44444 219491|0.22222 219492|0.51389 219493|0.63889 219494|0.11111 219495|0.11111 219496|0.5 219497|0.54167 219498|0.625 219499|0.80556 219500|0.59722 219501|0.31944 219502|0.38889 219503|0.48611 219504|0.63889 219505|0.77778 219506|0.56944 219507|0.5 219508|0.36111 219509|0.43056 219510|0.44444 219511|0.29167 219512|0.45833 219513|0.48611 219514|0.65278 219515|0.375 219516|0.027778 219517|0.47222 219518|0.5 219519|0.5 219520|0.45833 219521|0.20833 219522|0.097222 219523|0.5 219524|0.23611 219525|0.52778 219526|0.52778 219527|0.41667 219528|0.59722 219529|0.94444 219530|0.40278 219531|0.43056 219532|0.29167 219533|0.27778 219534|0.19444 219535|0.25 219536|0.33333 219537|0.125 219538|0.40278 219539|0.36111 219540|0.5 219541|0.65278 219542|0.61111 219543|0.61111 219544|0.55556 219545|0.63889 219546|0.29167 219547|0.33333 219548|0.097222 219549|0.22222 219550|0.63889 219551|0.80556 219552|0.5 219553|0.29167 219554|0.27778 219555|0.34722 219556|0.55556 219557|0.27778 219558|0.75 219559|0.69444 219560|0.66667 219561|0.41667 219562|0.27778 219563|0.72222 219564|0.27778 219565|0.77778 219566|0.52778 219567|0.31944 219568|0.30556 219569|0.58333 219570|0.44444 219571|0.41667 219572|0.5 219573|0.34722 219574|0.65278 219575|0.65278 219576|0.83333 219577|0.31944 219578|0.54167 219579|0.31944 219580|0.40278 219581|0.51389 219582|0.54167 219583|0.5 219584|0.40278 219585|0.44444 219586|0.47222 219587|0.30556 219588|0.33333 219589|0.40278 219590|0.22222 219591|0.47222 219592|0.29167 219593|0.23611 219594|0.44444 219595|0.5 219596|0.5 219597|0.44444 219598|0.5 219599|0.63889 219600|0.54167 219601|0.88889 219602|0.23611 219603|0.75 219604|0.75 219605|0.55556 219606|0.70833 219607|0.625 219608|0.51389 219609|0.56944 219610|0.55556 219611|0.5 219612|0.33333 219613|0.33333 219614|0.5 219615|0.20833 219616|0.51389 219617|0.5 219618|0.625 219619|0.33333 219620|0.375 219621|0.40278 219622|0.20833 219623|0.5 219624|0.5 219625|0.72222 219626|0.70833 219627|0.48611 219628|0.44444 219629|0.73611 219630|0.5 219631|0.55556 219632|0.5 219633|0.51389 219634|0.43056 219635|0.58333 219636|0.5 219637|0.5 219638|0.5 219639|0.5 219640|0.52778 219641|0.5 219642|0.5 219643|0.41667 219644|0.5 219645|0.5 219646|0.5 219647|0.48611 219648|0.41667 219649|0.5 219650|0.41667 219651|0.55556 219652|0.375 219653|0.26389 219654|0.33333 219655|0.5 219656|0.5 219657|0.79167 219658|0.26389 219659|0.80556 219660|0.48611 219661|0.54167 219662|0.44444 219663|0.55556 219664|0.38889 219665|0.79167 219666|0.44444 219667|0.23611 219668|0.30556 219669|0.22222 219670|0.41667 219671|0.44444 219672|0.47222 219673|0.65278 219674|0.5 219675|0.61111 219676|0.47222 219677|0.23611 219678|0.19444 219679|0.5 219680|0.68056 219681|0.47222 219682|0.5 219683|0.33333 219684|0.52778 219685|0.72222 219686|0.31944 219687|0.20833 219688|0.55556 219689|0.61111 219690|0.56944 219691|0.5 219692|0.51389 219693|0.52778 219694|0.29167 219695|0.66667 219696|0.36111 219697|0.43056 219698|0.58333 219699|0.19444 219700|0.41667 219701|0.56944 219702|0.70833 219703|0.56944 219704|0.54167 219705|0.20833 219706|0.5 219707|0.18056 219708|0.5 219709|0.63889 219710|0.27778 219711|0.5 219712|0.27778 219713|0.59722 219714|0.77778 219715|0.26389 219716|0.23611 219717|0.38889 219718|0.33333 219719|0.61111 219720|0.51389 219721|0.27778 219722|0.5 219723|0.44444 219724|0.40278 219725|0.70833 219726|0.5 219727|0.59722 219728|0.51389 219729|0.5 219730|0.54167 219731|0.22222 219732|0.48611 219733|0.59722 219734|0.5 219735|0.41667 219736|0.58333 219737|0.29167 219738|0.77778 219739|0.48611 219740|0.25 219741|0.27778 219742|0.31944 219743|0.33333 219744|0.58333 219745|0.56944 219746|0.625 219747|0.51389 219748|0.69444 219749|0.54167 219750|0.47222 219751|0.30556 219752|0.47222 219753|0.76389 219754|0.5 219755|0.58333 219756|0.56944 219757|0.58333 219758|0.5 219759|0.66667 219760|0.30556 219761|0.41667 219762|0.72222 219763|0.55556 219764|0.48611 219765|0.36111 219766|0.41667 219767|0.31944 219768|0.31944 219769|0.48611 219770|0.47222 219771|0.5 219772|0.27778 219773|0.22222 219774|0.27778 219775|0.44444 219776|0.33333 219777|0.5 219778|0.48611 219779|0.11111 219780|0.20833 219781|0.54167 219782|0.5 219783|0.5 219784|0.5 219785|0.5 219786|0.16667 219787|0.5 219788|0.25 219789|0.5 219790|0.38889 219791|0.16667 219792|0.5 219793|0.29167 219794|0.69444 219795|0.15278 219796|0.27778 219797|0.5 219798|0.375 219799|0.68056 219800|0.19444 219801|0.5 219802|0.33333 219803|0.45833 219804|0.41667 219805|0.52778 219806|0.29167 219807|0.44444 219808|0.56944 219809|0.48611 219810|0.44444 219811|0.52778 219812|0.5 219813|0.51389 219814|0.25 219815|0.45833 219816|0.375 219817|0.55556 219818|0.5 219819|0.56944 219820|0.20833 219821|0.22222 219822|0.44444 219823|0.61111 219824|0.23611 219825|0.36111 219826|0.5 219827|0.26389 219828|0.5 219829|0.22222 219830|0.27778 219831|0.375 219832|0.91667 219833|0.5 219834|0.27778 219835|0.52778 219836|0.44444 219837|0.54167 219838|0.45833 219839|0.54167 219840|0.5 219841|0.36111 219842|0.5 219843|0.34722 219844|0.5 219845|0.55556 219846|0.16667 219847|0.83333 219848|0.27778 219849|0.23611 219850|0.27778 219851|0.44444 219852|0.5 219853|0.56944 219854|0.5 219855|0.19444 219856|0.5 219857|0.5 219858|0.51389 219859|0.36111 219860|0.25 219861|0.44444 219862|0.44444 219863|0.22222 219864|0.23611 219865|0.31944 219866|0.23611 219867|0.15278 219868|0.5 219869|0.55556 219870|0.15278 219871|0.5 219872|0.54167 219873|0.36111 219874|0.29167 219875|0.29167 219876|0.51389 219877|0.45833 219878|0.51389 219879|0.40278 219880|0.375 219881|0.40278 219882|0.26389 219883|0.33333 219884|0.27778 219885|0.63889 219886|0.48611 219887|0.27778 219888|0.61111 219889|0.45833 219890|0.56944 219891|0.27778 219892|0.38889 219893|0.375 219894|0.30556 219895|0.41667 219896|0.5 219897|0.43056 219898|0.63889 219899|0.40278 219900|0.56944 219901|0.58333 219902|0.43056 219903|0.5 219904|0.45833 219905|0.27778 219906|0.40278 219907|0.13889 219908|0.25 219909|0.22222 219910|0.41667 219911|0.30556 219912|0.27778 219913|0.83333 219914|0.5 219915|0.375 219916|0.5 219917|0.5 219918|0.27778 219919|0.26389 219920|0.23611 219921|0.52778 219922|0.27778 219923|0.51389 219924|0.25 219925|0.48611 219926|0.48611 219927|0.375 219928|0.33333 219929|0.43056 219930|0.33333 219931|0.45833 219932|0.48611 219933|0.26389 219934|0.31944 219935|0.22222 219936|0.52778 219937|0.5 219938|0.5 219939|0.55556 219940|0.27778 219941|0.11111 219942|0.13889 219943|0.45833 219944|0.31944 219945|0.66667 219946|0.31944 219947|0.83333 219948|0.29167 219949|0.22222 219950|0.38889 219951|0.43056 219952|0.5 219953|0.25 219954|0.38889 219955|0.45833 219956|0.45833 219957|0.40278 219958|0.48611 219959|0.51389 219960|0.72222 219961|0.73611 219962|0.48611 219963|0.61111 219964|0.58333 219965|0.26389 219966|0.43056 219967|0.38889 219968|0.45833 219969|0.22222 219970|0.36111 219971|0.18056 219972|0.38889 219973|0.22222 219974|0.20833 219975|0.51389 219976|0.51389 219977|0.5 219978|0.33333 219979|0.44444 219980|0.51389 219981|0.43056 219982|0.54167 219983|0.375 219984|0.56944 219985|0.375 219986|0.55556 219987|0.30556 219988|0.44444 219989|0.27778 219990|0.5 219991|0.54167 219992|0.5 219993|0.61111 219994|0.55556 219995|0.79167 219996|0.68056 219997|0.18056 219998|0.65278 219999|0.20833 220000|0.43056 220001|0.65278 220002|0.68056 220003|0.5 220004|0.59722 220005|0.61111 220006|0.38889 220007|0.33333 220008|0.27778 220009|0.375 220010|0.51389 220011|0.5 220012|0.38889 220013|0.26389 220014|0.47222 220015|0.45833 220016|0.23611 220017|0.097222 220018|0 220019|0.22222 220020|0.41667 220021|0.55556 220022|0.027778 220023|0.041667 220024|0.41667 220025|0.33333 220026|0.26389 220027|0.083333 220028|0.13889 220029|0.27778 220030|0.38889 220031|0.29167 220032|0.18056 220033|0.56944 220034|0.77778 220035|0.41667 220036|0.58333 220037|0.055556 220038|0.77778 220039|0.65278 220040|0.69444 220041|0.48611 220042|0.27778 220043|0.33333 220044|0.33333 220045|0.51389 220046|0.375 220047|0.31944 220048|0.45833 220049|0.5 220050|0.18056 220051|0.34722 220052|0.375 220053|0.16667 220054|0.13889 220055|0.23611 220056|0.55556 220057|0.55556 220058|0.61111 220059|0.38889 220060|0.22222 220061|0.29167 220062|0.34722 220063|0.70833 220064|0.59722 220065|0.48611 220066|0.52778 220067|0.52778 220068|0.30556 220069|0.48611 220070|0.5 220071|0.45833 220072|0.5 220073|0.48611 220074|0.26389 220075|0.125 220076|0.16667 220077|0.20833 220078|0.44444 220079|0.47222 220080|0.36111 220081|0.19444 220082|0.33333 220083|0.33333 220084|0.40278 220085|0.61111 220086|0.68056 220087|0.41667 220088|0.38889 220089|0.29167 220090|0.45833 220091|0.54167 220092|0.27778 220093|0.48611 220094|0.5 220095|0.48611 220096|0.34722 220097|0.625 220098|0.48611 220099|0.58333 220100|0.68056 220101|0.44444 220102|0.097222 220103|0.041667 220104|0.41667 220105|0.23611 220106|0.33333 220107|0.51389 220108|0.40278 220109|0.43056 220110|0.27778 220111|0.43056 220112|0.51389 220113|0.38889 220114|0.44444 220115|0.55556 220116|0.069444 220117|0.51389 220118|0.58333 220119|0.22222 220120|0.25 220121|0.5 220122|0.30556 220123|0.5 220124|0.56944 220125|0.27778 220126|0.59722 220127|0.5 220128|0.5 220129|0.44444 220130|0.5 220131|0.51389 220132|0.52778 220133|0.45833 220134|0.19444 220135|0.55556 220136|0.5 220137|0.5 220138|0.5 220139|0.5 220140|0.5 220141|0.5 220142|0.5 220143|0.56944 220144|0.5 220145|0.27778 220146|0.5 220147|0.61111 220148|0.36111 220149|0.52778 220150|0.5 220151|0.5 220152|0.47222 220153|0.5 220154|0.5 220155|0.30556 220156|0.5 220157|0.5 220158|0.25 220159|0.5 220160|0.52778 220161|0.5 220162|0.29167 220163|0.44444 220164|0.44444 220165|0.27778 220166|0.5 220167|0.45833 220168|0.55556 220169|0.375 220170|0.40278 220171|0.58333 220172|0.38889 220173|0.40278 220174|0.52778 220175|0.19444 220176|0.54167 220177|0.5 220178|0.5 220179|0.33333 220180|0.66667 220181|0.34722 220182|0.47222 220183|0.61111 220184|0.5 220185|0.66667 220186|0.5 220187|0.45833 220188|0.34722 220189|0.33333 220190|0.5 220191|0.43056 220192|0.22222 220193|0.19444 220194|0.43056 220195|0.29167 220196|0.34722 220197|0.20833 220198|0.19444 220199|0.33333 220200|0.33333 220201|0.54167 220202|0.41667 220203|0.36111 220204|0.41667 220205|0.16667 220206|0.375 220207|0.27778 220208|0.48611 220209|0.11111 220210|0.27778 220211|0.40278 220212|0.27778 220213|0.44444 220214|0.66667 220215|0.20833 220216|0.83333 220217|0.15278 220218|0.56944 220219|0 220220|0.11111 220221|0.22222 220222|0.16667 220223|0.16667 220224|0.25 220225|0.5 220226|0.63889 220227|0.22222 220228|0.63889 220229|0.26389 220230|0.86111 220231|0.41667 220232|0.26389 220233|0.27778 220234|0.27778 220235|0.29167 220236|0.5 220237|0.54167 220238|0.27778 220239|0.55556 220240|0.47222 220241|0.41667 220242|0.36111 220243|0.34722 220244|0.54167 220245|0.52778 220246|0.34722 220247|0.48611 220248|0.33333 220249|0.22222 220250|0.31944 220251|0.44444 220252|0.41667 220253|0.23611 220254|0.083333 220255|0.47222 220256|0.5 220257|0.58333 220258|0.5 220259|0.66667 220260|0.48611 220261|0.72222 220262|0.48611 220263|0.5 220264|0.15278 220265|0.40278 220266|0.43056 220267|0.19444 220268|0.375 220269|0.52778 220270|0.625 220271|0.30556 220272|0.5 220273|0.27778 220274|0.48611 220275|0.44444 220276|0.55556 220277|0.31944 220278|0.61111 220279|0.36111 220280|0.34722 220281|0.23611 220282|0.083333 220283|0.16667 220284|0.5 220285|0.48611 220286|0.375 220287|0.5 220288|0.23611 220289|0.5 220290|0.27778 220291|0.15278 220292|0.34722 220293|0.66667 220294|0.36111 220295|0.44444 220296|0.5 220297|0.31944 220298|0.25 220299|0.58333 220300|0.79167 220301|0.5 220302|0.083333 220303|0.40278 220304|0.51389 220305|0.47222 220306|0.5 220307|0.5 220308|0.5 220309|0.61111 220310|0.51389 220311|0.5 220312|0.61111 220313|0.375 220314|0.66667 220315|0.69444 220316|0.66667 220317|0.51389 220318|0.61111 220319|0.5 220320|0.40278 220321|0.5 220322|0.40278 220323|0.44444 220324|0.29167 220325|0.23611 220326|0.15278 220327|0.45833 220328|0.83333 220329|0.65278 220330|0.30556 220331|0.5 220332|0.5 220333|0.23611 220334|0.5 220335|0.5 220336|0.44444 220337|0.58333 220338|0.16667 220339|0.41667 220340|0.23611 220341|0.47222 220342|0.44444 220343|0.26389 220344|0.63889 220345|0.22222 220346|0.33333 220347|0.36111 220348|0.48611 220349|0.48611 220350|0.5 220351|0.73611 220352|0.16667 220353|0.27778 220354|0.11111 220355|0.55556 220356|0.5 220357|0.5 220358|0.59722 220359|0.5 220360|0.5 220361|0.5 220362|0.54167 220363|0.5 220364|0.48611 220365|0.61111 220366|0.5 220367|0.5 220368|0.5 220369|0.5 220370|0.5 220371|0.43056 220372|0.5 220373|0.5 220374|0.5 220375|0.38889 220376|0.5 220377|0.47222 220378|0.54167 220379|0.5 220380|0.58333 220381|0.22222 220382|0.47222 220383|0.097222 220384|0.625 220385|0.5 220386|0.61111 220387|0.34722 220388|0.5 220389|0.22222 220390|0.5 220391|0.5 220392|0.5 220393|0.52778 220394|0.375 220395|0.59722 220396|0.58333 220397|0.55556 220398|0.63889 220399|0.5 220400|0.52778 220401|0.52778 220402|0.5 220403|0.5 220404|0.43056 220405|0.45833 220406|0.5 220407|0.5 220408|0.44444 220409|0.66667 220410|0.61111 220411|0.34722 220412|0.51389 220413|0.56944 220414|0.44444 220415|0.44444 220416|0.47222 220417|0.43056 220418|0.44444 220419|0.41667 220420|0.5 220421|0.25 220422|0.20833 220423|0.47222 220424|0.5 220425|0.63889 220426|0.52778 220427|0.54167 220428|0.58333 220429|0.16667 220430|0.18056 220431|0.34722 220432|0.11111 220433|0.19444 220434|0.11111 220435|0.5 220436|0.59722 220437|0.5 220438|0.51389 220439|0.56944 220440|0.5 220441|0.13889 220442|0.51389 220443|0.5 220444|0.5 220445|0.5 220446|0.5 220447|0.5 220448|0.5 220449|0.54167 220450|0.66667 220451|0.5 220452|0.5 220453|0.5 220454|0.47222 220455|0.51389 220456|0.47222 220457|0.5 220458|0.5 220459|0.5 220460|0.72222 220461|0.47222 220462|0.5 220463|0.5 220464|0.29167 220465|0.75 220466|0.5 220467|0.15278 220468|0.91667 220469|0.66667 220470|0.44444 220471|0.5 220472|0.5 220473|0.59722 220474|0.5 220475|0.5 220476|0.16667 220477|0.88889 220478|0.55556 220479|0.61111 220480|0.5 220481|0.73611 220482|0.70833 220483|0.5 220484|0.83333 220485|0.18056 220486|0.75 220487|0.33333 220488|0.52778 220489|0.5 220490|0.11111 220491|0.81944 220492|0.66667 220493|0.81944 220494|0.63889 220495|0.16667 220496|0.93056 220497|0.61111 220498|0.125 220499|0.83333 220500|0.875 220501|0.63889 220502|0.61111 220503|0.90278 220504|0.77778 220505|0.77778 220506|0.54167 220507|0.125 220508|0.61111 220509|0.69444 220510|0.84722 220511|0.5 220512|0.33333 220513|0.77778 220514|0.22222 220515|0.45833 220516|0.22222 220517|0.5 220518|0.18056 220519|0.88889 220520|0.44444 220521|0.625 220522|0.5 220523|0.77778 220524|0.26389 220525|0.65278 220526|0.5 220527|0.51389 220528|0.66667 220529|0.5 220530|0.79167 220531|0.61111 220532|0.55556 220533|0.5 220534|0.44444 220535|0.40278 220536|0.65278 220537|0.5 220538|0.5 220539|0.625 220540|0.40278 220541|0.40278 220542|0.5 220543|0.13889 220544|0.5 220545|0.5 220546|0.11111 220547|0.625 220548|0.5 220549|0.5 220550|0.5 220551|0.5 220552|0.5 220553|0.51389 220554|0.52778 220555|0.5 220556|0.45833 220557|0.43056 220558|0.27778 220559|0.59722 220560|0.125 220561|0.33333 220562|0.56944 220563|0.43056 220564|0.44444 220565|0.55556 220566|0.55556 220567|0.55556 220568|0.63889 220569|0.875 220570|0.625 220571|0.63889 220572|0.68056 220573|0.125 220574|0.47222 220575|0.55556 220576|0.26389 220577|0.45833 220578|0.22222 220579|0.61111 220580|0.23611 220581|0.29167 220582|0.31944 220583|0.83333 220584|0.86111 220585|0.58333 220586|0.51389 220587|0.61111 220588|0.66667 220589|0.33333 220590|0.41667 220591|0.5 220592|0.5 220593|0.84722 220594|0.84722 220595|0.40278 220596|0.61111 220597|0.81944 220598|0.61111 220599|0.70833 220600|0.65278 220601|0.51389 220602|0.013889 220603|0.34722 220604|0.22222 220605|0.22222 220606|0.34722 220607|0.40278 220608|0.77778 220609|0.36111 220610|0.013889 220611|0.055556 220612|0.15278 220613|0.23611 220614|0.5 220615|0.56944 220616|0.5 220617|0.5 220618|0.5 220619|0.5 220620|0.56944 220621|0.5 220622|0.36111 220623|0.5 220624|0.51389 220625|0.5 220626|0.33333 220627|0.38889 220628|0.34722 220629|0.83333 220630|0.52778 220631|0.40278 220632|0.30556 220633|0.44444 220634|0.44444 220635|0.5 220636|0.61111 220637|0.58333 220638|0.125 220639|0.5 220640|0.51389 220641|0.52778 220642|0.38889 220643|0.44444 220644|0.44444 220645|0.55556 220646|0.5 220647|0.27778 220648|0.27778 220649|0.097222 220650|0.72222 220651|0.66667 220652|0.5 220653|0.5 220654|0.5 220655|0.5 220656|0.5 220657|0.125 220658|0.11111 220659|0.51389 220660|0.5 220661|0.625 220662|0.34722 220663|0.44444 220664|0.5 220665|0.5 220666|0.5 220667|0.5 220668|0.55556 220669|0.5 220670|0.5 220671|0.5 220672|0.11111 220673|0.47222 220674|0.083333 220675|0.15278 220676|0.36111 220677|0.73611 220678|0.75 220679|0.38889 220680|0.48611 220681|0.75 220682|0.63889 220683|0.34722 220684|0.26389 220685|0.5 220686|0.47222 220687|0.47222 220688|0.5 220689|0.44444 220690|0.48611 220691|0.38889 220692|0.48611 220693|0.58333 220694|0.72222 220695|0.80556 220696|0.5 220697|0.77778 220698|0.66667 220699|0.90278 220700|0.81944 220701|0.41667 220702|0.25 220703|0.59722 220704|0.91667 220705|0.5 220706|0.44444 220707|0.45833 220708|0.45833 220709|0.38889 220710|0.44444 220711|0.51389 220712|0.29167 220713|0.72222 220714|0.625 220715|0.40278 220716|0.55556 220717|0.31944 220718|0.11111 220719|0.5 220720|0.5 220721|0.77778 220722|0.77778 220723|0.31944 220724|0.27778 220725|0.81944 220726|0.84722 220727|0.19444 220728|0.27778 220729|0.77778 220730|0.61111 220731|0.68056 220732|0.98611 220733|0.77778 220734|0.72222 220735|0.75 220736|0.48611 220737|0.90278 220738|0.625 220739|0.63889 220740|0.66667 220741|0.52778 220742|0.81944 220743|0.76389 220744|0.27778 220745|0.70833 220746|0.41667 220747|0.31944 220748|0.27778 220749|0.26389 220750|0.5 220751|0.19444 220752|0.23611 220753|0.88889 220754|0.27778 220755|0.19444 220756|0.18056 220757|0.11111 220758|0.80556 220759|0.56944 220760|0.55556 220761|0.65278 220762|0.75 220763|0.76389 220764|0.55556 220765|0.5 220766|0.76389 220767|0.77778 220768|0.65278 220769|0.69444 220770|0.15278 220771|0.27778 220772|0.15278 220773|0.20833 220774|0.30556 220775|0.16667 220776|0.48611 220777|0.40278 220778|0.375 220779|0.16667 220780|0.5 220781|0.5 220782|0.44444 220783|0.91667 220784|0.83333 220785|0.54167 220786|0.43056 220787|0.5 220788|0.68056 220789|0.55556 220790|0.61111 220791|0.56944 220792|0.45833 220793|0.18056 220794|0.83333 220795|0.22222 220796|0.51389 220797|0.33333 220798|0.29167 220799|0.625 220800|0.72222 220801|0.76389 220802|0.93056 220803|0.76389 220804|0.75 220805|0.86111 220806|0.66667 220807|0.76389 220808|0.5 220809|0.19444 220810|0.33333 220811|0.41667 220812|0.625 220813|0.59722 220814|0.52778 220815|0.83333 220816|0.5 220817|0.5 220818|0.86111 220819|0.77778 220820|0.70833 220821|0.31944 220822|0.27778 220823|0.5 220824|0.66667 220825|0.77778 220826|0.70833 220827|0.69444 220828|0.41667 220829|0.45833 220830|0.27778 220831|0.26389 220832|0.125 220833|0.36111 220834|0.27778 220835|0.23611 220836|0.083333 220837|0.055556 220838|0.27778 220839|0.47222 220840|0.5 220841|0.54167 220842|0.5 220843|0.5 220844|0.22222 220845|0.38889 220846|0.22222 220847|0.75 220848|0.625 220849|0.26389 220850|0.66667 220851|0.40278 220852|0.5 220853|0.41667 220854|0.27778 220855|0.36111 220856|0.055556 220857|0.11111 220858|0.19444 220859|0.55556 220860|0.20833 220861|0.22222 220862|0.30556 220863|0.41667 220864|0.48611 220865|0.36111 220866|0.23611 220867|0.36111 220868|0.73611 220869|0.5 220870|0.55556 220871|0.59722 220872|0.86111 220873|0.68056 220874|0.45833 220875|0.5 220876|0.63889 220877|0.625 220878|0.56944 220879|0.56944 220880|0.19444 220881|0.125 220882|0.38889 220883|0.5 220884|0.76389 220885|0.79167 220886|0.76389 220887|0.54167 220888|0.48611 220889|0.5 220890|0.375 220891|0.33333 220892|0.31944 220893|0.375 220894|0.5 220895|0.5 220896|0.48611 220897|0.25 220898|0.5 220899|0.5 220900|0.5 220901|0.013889 220902|0.013889 220903|0.38889 220904|0.27778 220905|0.33333 220906|0.61111 220907|0.38889 220908|0.19444 220909|0.61111 220910|0.75 220911|0.86111 220912|0.44444 220913|0.48611 220914|0.55556 220915|0.44444 220916|0.68056 220917|0.34722 220918|0.40278 220919|0.25 220920|0.23611 220921|0.11111 220922|0.41667 220923|0.55556 220924|0.36111 220925|0.22222 220926|0.20833 220927|0.25 220928|0.72222 220929|0.63889 220930|0.56944 220931|0.63889 220932|0.38889 220933|0.20833 220934|0.16667 220935|0.52778 220936|0.90278 220937|0.97222 220938|0.40278 220939|0.48611 220940|0.83333 220941|0.70833 220942|0.875 220943|0.33333 220944|0.70833 220945|0.15278 220946|0.16667 220947|0.16667 220948|0.70833 220949|0.25 220950|0.45833 220951|0.69444 220952|0.20833 220953|0.13889 220954|0.26389 220955|0.44444 220956|0.22222 220957|0.55556 220958|0.63889 220959|0.58333 220960|0.41667 220961|0.23611 220962|0.55556 220963|0.61111 220964|0.34722 220965|0.23611 220966|0.55556 220967|0.91667 220968|0.93056 220969|0.63889 220970|0.11111 220971|0.027778 220972|0.44444 220973|0.54167 220974|0.66667 220975|0.5 220976|0.13889 220977|0.19444 220978|0.11111 220979|0.31944 220980|0.61111 220981|0.61111 220982|0.44444 220983|0.44444 220984|0.26389 220985|0.66667 220986|0.75 220987|0.77778 220988|0.63889 220989|0.11111 220990|0.41667 220991|0.54167 220992|0.44444 220993|0.5 220994|0.43056 220995|0.61111 220996|0.5 220997|0.30556 220998|0.34722 220999|0.66667 221000|0.72222 221001|0.79167 221002|0.5 221003|0.56944 221004|0.55556 221005|0.59722 221006|0.61111 221007|0.375 221008|0.31944 221009|0.375 221010|0.36111 221011|0.27778 221012|0.31944 221013|0.16667 221014|0.77778 221015|0.83333 221016|0.41667 221017|0.48611 221018|0.31944 221019|0.25 221020|0.38889 221021|0.69444 221022|0.86111 221023|0.73611 221024|0.75 221025|0.36111 221026|0.38889 221027|0.097222 221028|0.375 221029|0.40278 221030|0.41667 221031|0.26389 221032|0.55556 221033|0.27778 221034|0.27778 221035|0.30556 221036|0.5 221037|0.5 221038|0.36111 221039|0.83333 221040|0.5 221041|0.5 221042|0.375 221043|0.5 221044|0.47222 221045|0.44444 221046|0.44444 221047|0.5 221048|0.5 221049|0.16667 221050|0.31944 221051|0.33333 221052|0.86111 221053|0.5 221054|0.63889 221055|0.31944 221056|0.22222 221057|0.375 221058|0.63889 221059|0.76389 221060|0.5 221061|0.5 221062|0.5 221063|0.5 221064|0.5 221065|0.23611 221066|0.55556 221067|0.69444 221068|0.625 221069|0.56944 221070|0.18056 221071|0.52778 221072|0.27778 221073|0.13889 221074|0.027778 221075|0.63889 221076|0.19444 221077|0.69444 221078|0.65278 221079|0.5 221080|0.48611 221081|0.31944 221082|0.5 221083|0.93056 221084|0.20833 221085|0.27778 221086|0.27778 221087|0.23611 221088|0.31944 221089|0.20833 221090|0.38889 221091|0.5 221092|0.375 221093|0.61111 221094|0.73611 221095|0.72222 221096|0.5 221097|0.77778 221098|0.5 221099|0.41667 221100|0.5 221101|0.68056 221102|0.5 221103|0.5 221104|0.5 221105|0.48611 221106|0.5 221107|0.5 221108|0.5 221109|0.45833 221110|0.5 221111|0.51389 221112|0.5 221113|0.5 221114|0.5 221115|0.5 221116|0.19444 221117|0.25 221118|0.45833 221119|0.30556 221120|0.26389 221121|0.54167 221122|0.55556 221123|0.38889 221124|0.76389 221125|0.58333 221126|0.15278 221127|0.45833 221128|0.069444 221129|0.13889 221130|0.5 221131|0.41667 221132|0.29167 221133|0.55556 221134|0.84722 221135|0.80556 221136|0.84722 221137|0.5 221138|0.45833 221139|0.625 221140|0.15278 221141|0.33333 221142|0.66667 221143|0.27778 221144|0.13889 221145|0.375 221146|0.20833 221147|0.56944 221148|0.52778 221149|0.69444 221150|0.77778 221151|0.44444 221152|0.36111 221153|0.76389 221154|0.083333 221155|0.19444 221156|0.38889 221157|0.26389 221158|0.5 221159|0.73611 221160|0.31944 221161|0 221162|0.36111 221163|0 221164|0.73611 221165|0.16667 221166|0.069444 221167|0.18056 221168|0.40278 221169|0.5 221170|0.5 221171|0.55556 221172|0.19444 221173|0.47222 221174|0.41667 221175|0.30556 221176|0.83333 221177|0.55556 221178|0.5 221179|0.51389 221180|0.66667 221181|0.81944 221182|0.59722 221183|0.90278 221184|0.76389 221185|0.5 221186|0.66667 221187|0.34722 221188|0.33333 221189|0.75 221190|0.68056 221191|0.90278 221192|0.84722 221193|0.26389 221194|0.36111 221195|0.88889 221196|0.19444 221197|0.5 221198|0.69444 221199|0.29167 221200|0.72222 221201|0.75 221202|0.5 221203|0.5 221204|0.30556 221205|0.75 221206|0.80556 221207|0.81944 221208|0.58333 221209|0.23611 221210|0.29167 221211|0.86111 221212|0.22222 221213|0.79167 221214|0.79167 221215|0.38889 221216|0.86111 221217|0.51389 221218|0.5 221219|0.5 221220|0.375 221221|0.94444 221222|0.75 221223|0.77778 221224|0.5 221225|0.5 221226|0.94444 221227|0.15278 221228|0.79167 221229|0.81944 221230|0.38889 221231|0.40278 221232|0.83333 221233|0.16667 221234|0.16667 221235|0.98611 221236|0.5 221237|0.88889 221238|0.77778 221239|0.77778 221240|0.72222 221241|0.88889 221242|0.38889 221243|0.52778 221244|0.61111 221245|0.34722 221246|0.041667 221247|0.55556 221248|0.33333 221249|0.38889 221250|0.33333 221251|0.88889 221252|0.44444 221253|0.29167 221254|0.5 221255|0.73611 221256|0.70833 221257|0.625 221258|0.70833 221259|0.58333 221260|0.55556 221261|0.5 221262|0.22222 221263|0.13889 221264|0.23611 221265|0.47222 221266|0.27778 221267|0.45833 221268|0.34722 221269|0.51389 221270|0.43056 221271|0.63889 221272|0.80556 221273|0.51389 221274|0.44444 221275|0.58333 221276|0.5 221277|0.56944 221278|0.51389 221279|0.5 221280|0.5 221281|0.38889 221282|0.31944 221283|0.72222 221284|0.51389 221285|0.31944 221286|0.63889 221287|0.5 221288|0.30556 221289|0.26389 221290|0.52778 221291|0.83333 221292|0.79167 221293|0.77778 221294|0.29167 221295|0.40278 221296|0.5 221297|0.5 221298|0.125 221299|0.5 221300|0.375 221301|0.66667 221302|0.45833 221303|0.47222 221304|0.54167 221305|0.375 221306|0.29167 221307|0.90278 221308|0.27778 221309|0.44444 221310|0.41667 221311|0.22222 221312|0.5 221313|0.69444 221314|0.38889 221315|0.56944 221316|0.45833 221317|0.73611 221318|0.61111 221319|0.5 221320|0.20833 221321|0.11111 221322|0.041667 221323|0.38889 221324|0.5 221325|0.5 221326|0.5 221327|0.61111 221328|0.38889 221329|0.44444 221330|0.27778 221331|0.5 221332|0.66667 221333|0.5 221334|0.31944 221335|0.33333 221336|0.5 221337|0.375 221338|0.83333 221339|0.5 221340|0.38889 221341|0.30556 221342|0.36111 221343|0.47222 221344|0.5 221345|0.25 221346|0.66667 221347|0.66667 221348|0.625 221349|0.77778 221350|0.72222 221351|0.34722 221352|0.97222 221353|0.875 221354|0.44444 221355|0.5 221356|0.77778 221357|0.61111 221358|0.25 221359|0.55556 221360|0 221361|0.73611 221362|0.66667 221363|0.68056 221364|0.25 221365|0.79167 221366|0.20833 221367|0.75 221368|0.069444 221369|0.38889 221370|0.5 221371|0.77778 221372|0.44444 221373|0.22222 221374|0.5 221375|0.77778 221376|0.5 221377|0.44444 221378|0.38889 221379|0.027778 221380|0.5 221381|0.33333 221382|0.84722 221383|0.5 221384|0.23611 221385|0.93056 221386|0.79167 221387|0.027778 221388|0.69444 221389|0.94444 221390|0.5 221391|0.40278 221392|0.44444 221393|0.29167 221394|0.70833 221395|0.44444 221396|0.5 221397|0.041667 221398|0.51389 221399|0.5 221400|0.34722 221401|0.70833 221402|0.40278 221403|0.80556 221404|0.77778 221405|0.40278 221406|0.45833 221407|0.34722 221408|0.30556 221409|0.34722 221410|0.59722 221411|0.66667 221412|0.20833 221413|0.93056 221414|0.93056 221415|0.77778 221416|0.083333 221417|0.72222 221418|0.44444 221419|0.13889 221420|0.47222 221421|0.40278 221422|0.29167 221423|0.61111 221424|0.18056 221425|0.22222 221426|0.25 221427|0.22222 221428|0 221429|0.73611 221430|0.27778 221431|0.63889 221432|0.43056 221433|0.80556 221434|0.5 221435|0.44444 221436|0.22222 221437|0.5 221438|0.083333 221439|0.5 221440|0.20833 221441|0.79167 221442|0.56944 221443|0.48611 221444|0.56944 221445|0.27778 221446|0.22222 221447|0.29167 221448|0.66667 221449|0.22222 221450|0.36111 221451|0.27778 221452|0.43056 221453|0.5 221454|0.47222 221455|0.68056 221456|0.22222 221457|0.5 221458|0.68056 221459|0.69444 221460|0.54167 221461|0.59722 221462|0.55556 221463|0.5 221464|0.5 221465|0.055556 221466|0.027778 221467|0.27778 221468|0.68056 221469|0.5 221470|0.41667 221471|0.81944 221472|0.29167 221473|0.47222 221474|0.18056 221475|0.52778 221476|0.38889 221477|0.56944 221478|0.88889 221479|0.45833 221480|0.73611 221481|0.083333 221482|0.44444 221483|0.48611 221484|0.47222 221485|0.54167 221486|0.51389 221487|0.45833 221488|0.75 221489|0.33333 221490|0.43056 221491|0.44444 221492|0.5 221493|0.38889 221494|0.90278 221495|0.5 221496|0.055556 221497|0.69444 221498|0.5 221499|0.38889 221500|0.33333 221501|0.5 221502|0.44444 221503|0.52778 221504|0.33333 221505|0.56944 221506|0.63889 221507|0.33333 221508|0.26389 221509|0.80556 221510|0.58333 221511|0.65278 221512|0.61111 221513|0.76389 221514|0.36111 221515|0.63889 221516|0.52778 221517|0.54167 221518|0.5 221519|0.79167 221520|0.34722 221521|0.68056 221522|0.44444 221523|0.19444 221524|0.29167 221525|0.41667 221526|0.18056 221527|0.29167 221528|0.81944 221529|0.58333 221530|0.66667 221531|0.72222 221532|0.68056 221533|0.34722 221534|0.5 221535|0.44444 221536|0.48611 221537|0.15278 221538|0.54167 221539|0.77778 221540|0.13889 221541|0.5 221542|0.47222 221543|0.5 221544|0.5 221545|0.375 221546|0.38889 221547|0.41667 221548|0.80556 221549|0.95833 221550|0.55556 221551|0.79167 221552|0.34722 221553|0.23611 221554|0.36111 221555|0.38889 221556|0.41667 221557|0.52778 221558|0.56944 221559|0.5 221560|0.23611 221561|0.73611 221562|0.76389 221563|0.33333 221564|0.55556 221565|0.26389 221566|0.61111 221567|0.52778 221568|0.22222 221569|0.29167 221570|0.56944 221571|0.36111 221572|0.66667 221573|0.63889 221574|0.81944 221575|0.31944 221576|0.38889 221577|0.30556 221578|0.5 221579|0.59722 221580|0.80556 221581|0.5 221582|0.41667 221583|0.16667 221584|0.47222 221585|0.13889 221586|0.29167 221587|0.69444 221588|0.48611 221589|0.41667 221590|0.88889 221591|0.5 221592|0.027778 221593|0.86111 221594|0.5 221595|0.75 221596|0.84722 221597|0.66667 221598|0.083333 221599|0.45833 221600|0.75 221601|0.38889 221602|0.58333 221603|0.31944 221604|0.26389 221605|0.58333 221606|0.38889 221607|0.55556 221608|0.27778 221609|0.79167 221610|0.5 221611|0.69444 221612|0.83333 221613|0.13889 221614|0.66667 221615|0.34722 221616|0.48611 221617|0.54167 221618|0.75 221619|0.58333 221620|0.69444 221621|0.083333 221622|0.66667 221623|0.34722 221624|0.22222 221625|0.16667 221626|0.88889 221627|0.81944 221628|0.5 221629|0.625 221630|0.40278 221631|0.27778 221632|0.66667 221633|0.63889 221634|0.80556 221635|0.15278 221636|0.86111 221637|0.79167 221638|0.38889 221639|0.45833 221640|0.16667 221641|0.11111 221642|0.75 221643|0.88889 221644|0.069444 221645|0.38889 221646|0.19444 221647|0.40278 221648|0.15278 221649|0.76389 221650|0.58333 221651|0.5 221652|0.55556 221653|0.80556 221654|0.5 221655|0.5 221656|0.75 221657|0.38889 221658|0.65278 221659|0.5 221660|0.69444 221661|0.30556 221662|0.5 221663|0.31944 221664|0.56944 221665|0.23611 221666|0.66667 221667|0.33333 221668|0.54167 221669|0.56944 221670|0.5 221671|0.38889 221672|0.48611 221673|0.45833 221674|0.83333 221675|0.86111 221676|0.23611 221677|0.80556 221678|0.23611 221679|0.45833 221680|0.31944 221681|0.61111 221682|0.51389 221683|0.73611 221684|0.125 221685|0.77778 221686|0.76389 221687|0.36111 221688|0.80556 221689|0.72222 221690|0.66667 221691|0.59722 221692|0.31944 221693|0.27778 221694|0.51389 221695|0.90278 221696|0.5 221697|0.75 221698|0.65278 221699|0.66667 221700|0.61111 221701|0.41667 221702|0.41667 221703|0.22222 221704|0.375 221705|0.33333 221706|0.54167 221707|0.375 221708|0.38889 221709|0.69444 221710|0.36111 221711|0.125 221712|0.38889 221713|0.36111 221714|0.69444 221715|0.5 221716|0.76389 221717|0.23611 221718|0.55556 221719|0.5 221720|0.16667 221721|0.5 221722|0.70833 221723|0.40278 221724|0.61111 221725|0.23611 221726|0.90278 221727|0.76389 221728|0.59722 221729|0.55556 221730|0.58333 221731|0.68056 221732|0.31944 221733|0.20833 221734|0.22222 221735|0.5 221736|0.5 221737|0.19444 221738|0.45833 221739|0.61111 221740|0.069444 221741|0.81944 221742|0.20833 221743|0.52778 221744|0.47222 221745|0.63889 221746|0.69444 221747|0.45833 221748|0.61111 221749|0.88889 221750|0.27778 221751|0.5 221752|0.22222 221753|0.5 221754|0.22222 221755|0.47222 221756|0.5 221757|0.63889 221758|0.36111 221759|0.33333 221760|0.72222 221761|0.41667 221762|0.33333 221763|0.5 221764|0.55556 221765|0.58333 221766|0.22222 221767|0.84722 221768|0.27778 221769|0.26389 221770|0.30556 221771|0.11111 221772|0.5 221773|0.25 221774|0.31944 221775|0.77778 221776|0.22222 221777|0.30556 221778|0.69444 221779|0.75 221780|0.11111 221781|0.13889 221782|0.91667 221783|0.18056 221784|0.26389 221785|0.44444 221786|0.31944 221787|0.13889 221788|0.33333 221789|0.16667 221790|0.86111 221791|0.91667 221792|0.79167 221793|0.23611 221794|0.22222 221795|0.18056 221796|0.69444 221797|0.65278 221798|0.54167 221799|0.23611 221800|0.16667 221801|0.44444 221802|0.18056 221803|0.33333 221804|0.52778 221805|0.16667 221806|0.44444 221807|0.5 221808|0.26389 221809|0.375 221810|0.069444 221811|0.23611 221812|0.125 221813|0.75 221814|0.93056 221815|0.5 221816|0.54167 221817|0.45833 221818|0.68056 221819|0.72222 221820|0.13889 221821|0.44444 221822|0.69444 221823|0.30556 221824|0.25 221825|0.19444 221826|0.58333 221827|0.055556 221828|0.055556 221829|0.069444 221830|0.73611 221831|0.11111 221832|0.44444 221833|0.375 221834|0.73611 221835|0.27778 221836|0.65278 221837|0.63889 221838|0.68056 221839|0.20833 221840|0.83333 221841|0.48611 221842|0.27778 221843|0.55556 221844|0.30556 221845|0.54167 221846|1 221847|0.43056 221848|0.23611 221849|0.097222 221850|0.055556 221851|0.5 221852|0.875 221853|0.63889 221854|0.027778 221855|0.5 221856|0.5 221857|0.52778 221858|0.5 221859|0.33333 221860|0.29167 221861|0.66667 221862|0.5 221863|0.34722 221864|0.5 221865|0.5 221866|0.34722 221867|0.40278 221868|0.5 221869|0.5 221870|0.5 221871|0.45833 221872|0.5 221873|0.5 221874|0.5 221875|0.51389 221876|0.5 221877|0.5 221878|0.5 221879|0.5 221880|0.5 221881|0.5 221882|0.5 221883|0.5 221884|0.5 221885|0.5 221886|0.55556 221887|0.5 221888|0.55556 221889|0.5 221890|0.5 221891|0.51389 221892|0.41667 221893|0.5 221894|0.5 221895|0.5 221896|0.55556 221897|0.58333 221898|0.5 221899|0.55556 221900|0.41667 221901|0.33333 221902|0.26389 221903|0.43056 221904|0.58333 221905|0.48611 221906|0.44444 221907|0.041667 221908|0.5 221909|0.5 221910|0.5 221911|0.44444 221912|0.33333 221913|0.13889 221914|0.44444 221915|0.013889 221916|0.51389 221917|0.23611 221918|0.25 221919|0.47222 221920|0.61111 221921|0.5 221922|0.27778 221923|0.15278 221924|0.55556 221925|0.5 221926|0.375 221927|0.5 221928|0.55556 221929|0.375 221930|0.069444 221931|0.19444 221932|0.45833 221933|0.5 221934|0.52778 221935|0.52778 221936|0.5 221937|0.25 221938|0.5 221939|0.44444 221940|0.59722 221941|0.38194 221942|0.20833 221943|0.94444 221944|0.91667 221945|0.069444 221946|0.23611 221947|0.84722 221948|0.80556 221949|0.375 221950|0.48611 221951|0.5 221952|0.5 221953|0.19444 221954|0.18056 221955|0.18056 221956|0.26389 221957|0.27778 221958|0.5 221959|0.11111 221960|0.26389 221961|0.5 221962|0.81944 221963|0.79167 221964|0.72222 221965|0.72222 221966|0.72222 221967|0.61111 221968|0.72222 221969|0.86111 221970|0.72222 221971|0.77778 221972|0.5 221973|0.5 221974|0.5 221975|0.33333 221976|0.51389 221977|0.30556 221978|0.80556 221979|0.83333 221980|0.26389 221981|0.5 221982|0.34722 221983|0.26389 221984|0.16667 221985|0.88889 221986|0.5 221987|0.93056 221988|0.55556 221989|0.16667 221990|0.88889 221991|0.84722 221992|0.66667 221993|0.80556 221994|0.83333 221995|0.83333 221996|0.81944 221997|0.75 221998|0.63889 221999|0.45833 222000|0.55556 222001|0.70833 222002|0.083333 222003|0.77778 222004|0.83333 222005|0.70833 222006|0.73611 222007|0.77778 222008|0.84722 222009|0.73611 222010|0.79167 222011|0.56944 222012|0.80556 222013|0.90278 222014|0.5 222015|0.69444 222016|0.72222 222017|0.86111 222018|0.44444 222019|0.54167 222020|0.38889 222021|0.11111 222022|0.22222 222023|0.90278 222024|0.83333 222025|0.88889 222026|0.875 222027|0.97222 222028|0.88889 222029|0.94444 222030|0.91667 222031|0.875 222032|0.19444 222033|0.125 222034|0.15278 222035|0.055556 222036|0.18056 222037|0.33333 222038|0.66667 222039|0.5 222040|0.76389 222041|0.61111 222042|0.59722 222043|0.58333 222044|0.20833 222045|0.19444 222046|0.125 222047|0.11111 222048|0.027778 222049|0.16667 222050|0.83333 222051|0.63889 222052|0.55556 222053|0.76389 222054|0.58333 222055|0.41667 222056|0.59722 222057|0.77778 222058|0.70833 222059|0.069444 222060|0.68056 222061|0.26389 222062|0.58333 222063|0.77778 222064|0.30556 222065|0.20833 222066|0.31944 222067|0.83333 222068|0.81944 222069|0.44444 222070|0.48611 222071|0.11111 222072|0.22222 222073|0.69444 222074|0.18056 222075|0.65278 222076|0.75 222077|0.90278 222078|0.5 222079|0.013889 222080|0.055556 222081|0.72222 222082|0.69444 222083|0.76389 222084|0.83333 222085|0.59722 222086|0.61111 222087|0.70833 222088|0.61111 222089|0.65278 222090|0.52778 222091|0.22222 222092|0.63889 222093|0.80556 222094|0.43056 222095|0.33333 222096|0.76389 222097|0.75 222098|0.75 222099|0.083333 222100|0.041667 222101|0.013889 222102|0.013889 222103|0.80556 222104|0.56944 222105|0.44444 222106|0.66667 222107|0.52778 222108|0.69444 222109|0.88889 222110|0.11111 222111|0.61111 222112|0.73611 222113|0.86111 222114|0.81944 222115|0.97222 222116|0.38889 222117|0.31944 222118|0.19444 222119|0.75 222120|0.63889 222121|0.79167 222122|0.76389 222123|0.83333 222124|0.36111 222125|0.88889 222126|0.625 222127|0.72222 222128|0.30556 222129|0.44444 222130|0.47222 222131|0.041667 222132|0.59722 222133|0.63889 222134|0.79167 222135|0.5 222136|0.5 222137|0.5 222138|0.5 222139|0.5 222140|0.65278 222141|0.5 222142|0.48611 222143|0.55556 222144|0.375 222145|0.5 222146|0.5 222147|0.5 222148|0.5 222149|0.5 222150|0.5 222151|0.5 222152|0.375 222153|0.56944 222154|0.45833 222155|0.5 222156|0.5 222157|0.20833 222158|0.38889 222159|0.55556 222160|0.5 222161|0.625 222162|0.93056 222163|0.44444 222164|0.59722 222165|0.43056 222166|0.55556 222167|0.625 222168|0.29167 222169|0.63889 222170|0.26389 222171|0.55556 222172|0.81944 222173|0.30556 222174|0.45833 222175|0.26389 222176|0.069444 222177|0.23611 222178|0.083333 222179|0.66667 222180|0.52778 222181|0.5 222182|0.18056 222183|0.5 222184|0.5 222185|0.38889 222186|0.5 222187|0.41667 222188|0.19444 222189|0.22222 222190|0.55556 222191|0.65278 222192|0.5 222193|0.5 222194|0.88889 222195|0.41667 222196|0.22222 222197|0.5 222198|0.18056 222199|0.22222 222200|0.27778 222201|0.73611 222202|0.097222 222203|0.5 222204|0.16667 222205|0.13889 222206|0.5 222207|0.44444 222208|0.22222 222209|0.22222 222210|0.19444 222211|0.16667 222212|0.19444 222213|0.36111 222214|0.44444 222215|0.52778 222216|0.13889 222217|0.5 222218|0.27778 222219|0.5 222220|0.61111 222221|0.5 222222|0.47222 222223|0.30556 222224|0.44444 222225|0.18056 222226|0.36111 222227|0.66667 222228|0.55556 222229|0.5 222230|0.61111 222231|0.59722 222232|0.45833 222233|0.5 222234|0.58333 222235|0.5 222236|0.55556 222237|0.5 222238|0.88889 222239|0.27778 222240|0.27778 222241|0.23611 222242|0.27778 222243|0.20833 222244|0.097222 222245|0.5 222246|0.5 222247|0.13889 222248|0.55556 222249|0.65278 222250|0.23611 222251|0.20833 222252|0.61111 222253|0.55556 222254|0.52778 222255|0.66667 222256|0.61111 222257|0.25 222258|0.45833 222259|0.20833 222260|0.88889 222261|0.75 222262|0.58333 222263|0.63889 222264|0.55556 222265|0.38889 222266|0.69444 222267|0.43056 222268|0.5 222269|0.79167 222270|0.69444 222271|0.29167 222272|0.61111 222273|0.069444 222274|0.44444 222275|0.5 222276|0.5 222277|0.66667 222278|0.55556 222279|0.22222 222280|0.27778 222281|0.18056 222282|0.11111 222283|0.70833 222284|0.61111 222285|0.81944 222286|0.68056 222287|0.51389 222288|0.56944 222289|0.84722 222290|0.77778 222291|0.65278 222292|0.93056 222293|0.73611 222294|0.83333 222295|0.75 222296|0.93056 222297|0.83333 222298|0.5 222299|0.40278 222300|0.36111 222301|0.90278 222302|0.90278 222303|0.80556 222304|0.13889 222305|0.84722 222306|0.875 222307|0.72222 222308|0.61111 222309|0.93056 222310|0.5 222311|0.20833 222312|0.47222 222313|0.30556 222314|0.5 222315|0.22222 222316|0.34722 222317|0.16667 222318|0.30556 222319|0.94444 222320|0.75 222321|0.19444 222322|0.16667 222323|0.083333 222324|0.11111 222325|0.18056 222326|0.16667 222327|0.33333 222328|0.26389 222329|0.083333 222330|0.13889 222331|0.20833 222332|0.83333 222333|0.90278 222334|0.54167 222335|0.48611 222336|0.48611 222337|0.5 222338|0.88889 222339|0.77778 222340|0.77778 222341|0.25 222342|0.55556 222343|0.43056 222344|0.66667 222345|0.72222 222346|0.47222 222347|0.38889 222348|0.27778 222349|0.47222 222350|0.45833 222351|0.41667 222352|0.66667 222353|0.33333 222354|0.76389 222355|0.79167 222356|0.5 222357|0.61111 222358|0.76389 222359|0.26389 222360|0.34722 222361|0.27778 222362|0.16667 222363|0.055556 222364|0.16667 222365|0.61111 222366|0.77778 222367|0.77778 222368|0.79167 222369|0.29167 222370|0.36111 222371|0.93056 222372|0.70833 222373|0.5 222374|0.26389 222375|0.36111 222376|0.65278 222377|0.41667 222378|0.26389 222379|0.65278 222380|0.66667 222381|0.72222 222382|0.63889 222383|0.63889 222384|0.70833 222385|0.16667 222386|0.73611 222387|0.5 222388|0.5 222389|0.27778 222390|0.23611 222391|0.23611 222392|0.77778 222393|0.76389 222394|0.72222 222395|0.5 222396|0.11111 222397|0.43056 222398|0.5 222399|0.5 222400|0.61111 222401|0.55556 222402|0.51389 222403|0.33333 222404|0.33333 222405|0.83333 222406|0.52778 222407|0.41667 222408|0.19444 222409|0.27778 222410|0.51389 222411|0.5 222412|0.41667 222413|0.22222 222414|0.5 222415|0.61111 222416|0.45833 222417|0.44444 222418|0.54167 222419|0.59722 222420|0.47222 222421|0.29167 222422|0.15278 222423|0.5 222424|0.5 222425|0.5 222426|0.90278 222427|0.5 222428|0.55556 222429|0.36111 222430|0.48611 222431|0.52778 222432|0.875 222433|0.44444 222434|0.16667 222435|0.5 222436|0.90278 222437|0.90278 222438|0.79167 222439|0.26389 222440|0.61111 222441|0.81944 222442|0.72222 222443|0.36111 222444|0.63889 222445|0.875 222446|0.5 222447|0.44444 222448|0.33333 222449|0.52778 222450|0.72222 222451|0.5 222452|0.27778 222453|0.41667 222454|0.63889 222455|0.77778 222456|0.23611 222457|0.5 222458|0.55556 222459|0.69444 222460|0.34722 222461|0.18056 222462|0.75 222463|0.55556 222464|0.63889 222465|0.69444 222466|0.88889 222467|0.65278 222468|0.5 222469|0.56944 222470|0.5 222471|0.70833 222472|0.23611 222473|0.069444 222474|0.59722 222475|0.80556 222476|0.79167 222477|0.45833 222478|0.5 222479|0.16667 222480|0.20833 222481|0.66667 222482|0.72222 222483|0.61111 222484|0.48611 222485|0.26389 222486|0.15278 222487|0.45833 222488|0.75 222489|0.16667 222490|0.73611 222491|0.5 222492|0.29167 222493|0.66667 222494|0.69444 222495|0.61111 222496|0.5 222497|0.097222 222498|0.51389 222499|0.5 222500|0.25 222501|0.44444 222502|0.55556 222503|0.80556 222504|0.56944 222505|0.51389 222506|0.23611 222507|0.70833 222508|0.77778 222509|0.5 222510|0.5 222511|0.5 222512|0.75 222513|0.5 222514|0.55556 222515|0.23611 222516|0.63889 222517|0.34722 222518|0.5 222519|0.5 222520|0.5 222521|0.73611 222522|0.41667 222523|0.34722 222524|0.72222 222525|0.55556 222526|0.5 222527|0.15278 222528|0.30556 222529|0.59722 222530|0.48611 222531|0.125 222532|0.20833 222533|0.097222 222534|0.54167 222535|0.5 222536|0.18056 222537|0.5 222538|0.5 222539|0.16667 222540|0.22222 222541|0.38889 222542|0.31944 222543|0.22222 222544|0.125 222545|0.52778 222546|0.55556 222547|0.5 222548|0.5 222549|0.45833 222550|0.5 222551|0.5 222552|0.5 222553|0.51389 222554|0.75 222555|0.63889 222556|0.88889 222557|0.91667 222558|0.41667 222559|0.43056 222560|0.25 222561|0.93056 222562|0.5 222563|0.55556 222564|0.27778 222565|0.5 222566|0.5 222567|0.5 222568|0.375 222569|0.38889 222570|0.18056 222571|0.11111 222572|0.69444 222573|0.23611 222574|0.43056 222575|0.45833 222576|0.5 222577|0.55556 222578|0.40278 222579|0.375 222580|0.51389 222581|0.73611 222582|0.72222 222583|0.5 222584|0.44444 222585|0.81944 222586|0.72222 222587|0.52778 222588|0.625 222589|0.5 222590|0.5 222591|0.5 222592|0.5 222593|0.5 222594|0.5 222595|0.65278 222596|0.63889 222597|0.77778 222598|0.90278 222599|0.66667 222600|0.63889 222601|0.69444 222602|0.61111 222603|0.69444 222604|0.59722 222605|0.625 222606|0.88889 222607|0.86111 222608|0.61111 222609|0.84722 222610|0.5 222611|0.5 222612|0.5 222613|0.34722 222614|0.77778 222615|0.5 222616|0.5 222617|0.5 222618|0.5 222619|0.56944 222620|0.027778 222621|0.069444 222622|0.22222 222623|0.5 222624|0.54167 222625|0.81944 222626|0.65278 222627|0.38889 222628|0.55556 222629|0.27778 222630|0.16667 222631|0.19444 222632|0.56944 222633|0.375 222634|0.29167 222635|0.40278 222636|0.45833 222637|0.29167 222638|0.79167 222639|0.83333 222640|0.22222 222641|0.27778 222642|0.38889 222643|0.69444 222644|0.97222 222645|0.25 222646|0.22222 222647|0.52778 222648|0.72222 222649|0.875 222650|0.54167 222651|0.77778 222652|0.65278 222653|0.48611 222654|0.16667 222655|0.26389 222656|0.125 222657|0.20833 222658|0.36111 222659|0.77778 222660|0.63889 222661|0.80556 222662|0.59722 222663|0.5 222664|0.48611 222665|0.625 222666|0.5 222667|0.5 222668|0.5 222669|0.68056 222670|0.15278 222671|0.5 222672|0.55556 222673|0.45833 222674|0.5 222675|0.93056 222676|0.91667 222677|0.54167 222678|0.36111 222679|0.23611 222680|0.18056 222681|0.5 222682|0.48611 222683|0.55556 222684|0.083333 222685|0.5 222686|0.5 222687|0.5 222688|0.51389 222689|0.5 222690|0.77778 222691|0.5 222692|0.5 222693|0.56944 222694|0.45833 222695|0.5 222696|0.5 222697|0.5 222698|0.5 222699|0.55556 222700|0.5 222701|0.43056 222702|0.55556 222703|0.083333 222704|0.13889 222705|0.27778 222706|0.41667 222707|0.45833 222708|0.22222 222709|0.25 222710|0.19444 222711|0.41667 222712|0.23611 222713|0.41667 222714|0.33333 222715|0.55556 222716|0.47222 222717|0.55556 222718|0.54167 222719|0.52778 222720|0.5 222721|0.23611 222722|0.38889 222723|0.79167 222724|0.91667 222725|0.75 222726|0.30556 222727|0.31944 222728|0.66667 222729|0.11111 222730|0.875 222731|0.40278 222732|0.47222 222733|0.5 222734|0.94444 222735|0.27778 222736|0.43056 222737|0.33333 222738|0.375 222739|0.61111 222740|0.5 222741|0.73611 222742|0.36111 222743|0.33333 222744|0.30556 222745|0.22222 222746|0.73611 222747|0.55556 222748|0.38889 222749|0 222750|0.40278 222751|0.22222 222752|0.15278 222753|0.47222 222754|0.47222 222755|0.48611 222756|0.72222 222757|0.83333 222758|0.86111 222759|0.33333 222760|0.73611 222761|0.68056 222762|0.125 222763|0.30556 222764|0.63889 222765|0.18056 222766|0.72222 222767|0.22222 222768|0.70833 222769|0.75 222770|0.36111 222771|0.29167 222772|0.59722 222773|0.75 222774|0.375 222775|0.65278 222776|0.55556 222777|0.61111 222778|0.27778 222779|0.63889 222780|0.33333 222781|0.43056 222782|0.26389 222783|0.097222 222784|0.27778 222785|0.23611 222786|0.83333 222787|0.63889 222788|0.38889 222789|0.48611 222790|0.63889 222791|0.70833 222792|0.625 222793|0.5 222794|0.5 222795|0.20833 222796|0.097222 222797|0.26389 222798|0.31944 222799|0.375 222800|0.31944 222801|0.375 222802|0.70833 222803|0.19444 222804|0.72222 222805|0.26389 222806|0.22222 222807|0.40278 222808|0.33333 222809|0.16667 222810|0.22222 222811|0.19444 222812|0.84722 222813|0.83333 222814|0.30556 222815|0.19444 222816|0.91667 222817|0.23611 222818|0.29167 222819|0.23611 222820|0.61111 222821|0.31944 222822|0.097222 222823|0.30556 222824|0.5 222825|0.16667 222826|0.29167 222827|0.72222 222828|0.16667 222829|0.68056 222830|0.29167 222831|0.90278 222832|0.54167 222833|0.54167 222834|0.38889 222835|0.36111 222836|0.33333 222837|0.86111 222838|0.51389 222839|0.84722 222840|0.45833 222841|0.55556 222842|0.5 222843|0.33333 222844|0.5 222845|0.55556 222846|0.5 222847|0.77778 222848|0.79167 222849|0.069444 222850|0.40278 222851|0.48611 222852|0.79167 222853|0.5 222854|0.47222 222855|0.34722 222856|0.66667 222857|0.5 222858|0.5 222859|0.88889 222860|0.40278 222861|0.5 222862|0.5 222863|0.5 222864|0.55556 222865|0.5 222866|0.83333 222867|0.5 222868|0.5 222869|0.5 222870|0.5 222871|0.59722 222872|0.51389 222873|0.72222 222874|0.52778 222875|0.55556 222876|0.56944 222877|0.41667 222878|0.55556 222879|0.5 222880|0.68056 222881|0.47222 222882|0.43056 222883|0.5 222884|0.5 222885|0.5 222886|0.5 222887|0.76389 222888|0.5 222889|0.5 222890|0.55556 222891|0.51389 222892|0.5 222893|0.44444 222894|0.56944 222895|0.20833 222896|0.16667 222897|0.54167 222898|0.45833 222899|0.45833 222900|0.55556 222901|0.75 222902|0.5 222903|0.80556 222904|0.75 222905|0.86111 222906|0.66667 222907|0.5 222908|0.56944 222909|0.5 222910|0.54167 222911|0.5 222912|0.83333 222913|0.5 222914|0.44444 222915|0.98611 222916|0.5 222917|0.5 222918|0.5 222919|0.48611 222920|0.5 222921|0.36111 222922|0.875 222923|0.47222 222924|0.69444 222925|0.5 222926|0.45833 222927|0.5 222928|0.5 222929|0.5 222930|0.5 222931|0.59722 222932|0.61111 222933|0.5 222934|0.5 222935|0.36111 222936|0.48611 222937|0.23611 222938|0.5 222939|0.33333 222940|0.79167 222941|0.59722 222942|0.66667 222943|0.52778 222944|0.47222 222945|0.5 222946|0.5 222947|0.5 222948|0.5 222949|0.5 222950|0.875 222951|0.65278 222952|0.11111 222953|0.16667 222954|0.41667 222955|0.55556 222956|0.27778 222957|0.5 222958|0.31944 222959|0.43056 222960|0.26389 222961|0.56944 222962|0.34722 222963|0.19444 222964|0.23611 222965|0.5 222966|0.36111 222967|0.55556 222968|0.5 222969|0.51389 222970|0.45833 222971|0.26389 222972|0.25 222973|0.5 222974|0.5 222975|0.5 222976|0.5 222977|0.5 222978|0.44444 222979|0.22222 222980|0.45833 222981|0.72222 222982|0.83333 222983|0.86111 222984|0.41667 222985|0.5 222986|0.76389 222987|0.83333 222988|0.5 222989|0.44444 222990|0.40278 222991|0.055556 222992|0.75 222993|0.94444 222994|0.5 222995|0.5 222996|0.90278 222997|0.875 222998|1 222999|1 223000|0.63889 223001|0.77778 223002|0.66667 223003|0.55556 223004|0.80556 223005|0.51389 223006|0.5 223007|0.5 223008|0.5 223009|0.5 223010|0.80556 223011|0.41667 223012|0.20833 223013|0.041667 223014|0.65278 223015|0.81944 223016|0.88889 223017|0.22222 223018|0.13889 223019|0.375 223020|0.5 223021|0.375 223022|0.36111 223023|0.33333 223024|0.45833 223025|0.5 223026|0.5 223027|0.5 223028|0.11111 223029|0.13889 223030|0.55556 223031|0.5 223032|0.40278 223033|0.47222 223034|0.54167 223035|0.11111 223036|0.31944 223037|0.33333 223038|0.51389 223039|0.56944 223040|0.48611 223041|0.5 223042|0.5 223043|0.5 223044|0.5 223045|0.52778 223046|0.5 223047|0.5 223048|0.48611 223049|0.5 223050|0.5 223051|0.47222 223052|0.38889 223053|0.5 223054|0.5 223055|0.5 223056|0.5 223057|0.47222 223058|0.81944 223059|0.52778 223060|0.38889 223061|0.5 223062|0.5 223063|0.5 223064|0.40278 223065|0.375 223066|0.5 223067|0.47222 223068|0.47222 223069|0.88889 223070|0.5 223071|0.5 223072|0.5 223073|0.5 223074|0.79167 223075|0.33333 223076|0.5 223077|0.5 223078|0.5 223079|0.61111 223080|0.29167 223081|0.41667 223082|0.65278 223083|0.51389 223084|0.41667 223085|0.31944 223086|0.069444 223087|0.15278 223088|0.44444 223089|0.36111 223090|0.29167 223091|0.22222 223092|0.055556 223093|0.875 223094|0.68056 223095|0.81944 223096|0.40278 223097|0.83333 223098|0.5 223099|0.5 223100|0.5 223101|0.81944 223102|0.5 223103|0.44444 223104|0.93056 223105|0.79167 223106|0.51389 223107|0.51389 223108|0.55556 223109|0.43056 223110|0.11111 223111|0.83333 223112|0.15278 223113|0.56944 223114|0.44444 223115|0.73611 223116|0.11111 223117|0.27778 223118|0.61111 223119|0.72222 223120|0.18056 223121|0.52778 223122|0.80556 223123|0.66667 223124|0.75 223125|0.36111 223126|0.81944 223127|0.5 223128|0.55556 223129|0.55556 223130|0.5 223131|0.5 223132|0.5 223133|0.29167 223134|0.22222 223135|0.22222 223136|0.5 223137|0.22222 223138|0.66667 223139|0.5 223140|0.33333 223141|0.56944 223142|0.72222 223143|0.41667 223144|0.5 223145|0.5 223146|0.5 223147|0.63889 223148|0.73611 223149|0.93056 223150|0.5 223151|0.51389 223152|0.38889 223153|0.30556 223154|0.20833 223155|0.20833 223156|0.20833 223157|0.29167 223158|0.25 223159|0.22222 223160|0.22222 223161|0.30556 223162|0.33333 223163|0.56944 223164|0.5 223165|0.30556 223166|0.48611 223167|0.58333 223168|0.48611 223169|0.33333 223170|0.38889 223171|0.55556 223172|0.5 223173|0.27778 223174|0.27778 223175|0.22222 223176|0.55556 223177|0.5 223178|0.5 223179|0.5 223180|0.5 223181|0.5 223182|0.5 223183|0.56944 223184|0.5 223185|0.5 223186|0.5 223187|0.5 223188|0.19444 223189|0.5 223190|0.54167 223191|0.5 223192|0.44444 223193|0.80556 223194|0.51389 223195|0.23611 223196|0.11111 223197|0.5 223198|0.75 223199|0.625 223200|0.75 223201|0.90278 223202|0.5 223203|0.5 223204|0.5 223205|0.5 223206|0.5 223207|0.5 223208|0.70833 223209|0.76389 223210|0.875 223211|0.88889 223212|0.55556 223213|0.55556 223214|0.15278 223215|0.63889 223216|0.52778 223217|0.5 223218|0.5 223219|0.5 223220|0.5 223221|0.5 223222|0.5 223223|0.5 223224|0.5 223225|0.5 223226|0.58333 223227|0.38889 223228|0.44444 223229|0.33333 223230|0.5 223231|0.625 223232|0.72222 223233|0.625 223234|0.91667 223235|0.44444 223236|0.27778 223237|0.5 223238|0.5 223239|0.125 223240|0.29167 223241|0.36111 223242|0.15278 223243|0.56944 223244|0.55556 223245|0.48611 223246|0.69444 223247|0.70833 223248|0.52778 223249|0.81944 223250|0.30556 223251|0.56944 223252|0.51389 223253|0.5 223254|0.29167 223255|0.48611 223256|0.65278 223257|0.125 223258|0.30556 223259|0.125 223260|0.5 223261|0.97222 223262|0.43056 223263|0.77778 223264|0.5 223265|0.51389 223266|0.55556 223267|0.22222 223268|0.5 223269|0.27778 223270|0.26389 223271|0.16667 223272|0.19444 223273|0.083333 223274|0.44444 223275|0.5 223276|0.54167 223277|0.27778 223278|0.70833 223279|0.5 223280|0.55556 223281|0.51389 223282|0.83333 223283|0.23611 223284|0.33333 223285|0.23611 223286|0.36111 223287|0.5 223288|0.013889 223289|0.38889 223290|0.27778 223291|0.22222 223292|0.38889 223293|0.27778 223294|0.83333 223295|0.69444 223296|0.61111 223297|0.81944 223298|0.93056 223299|0.91667 223300|0.77778 223301|0.84722 223302|0.16667 223303|0.11111 223304|0.59722 223305|0.58333 223306|0.56944 223307|0.47222 223308|0.875 223309|0.75 223310|0.16667 223311|0.097222 223312|0.027778 223313|0.083333 223314|0.22222 223315|0.055556 223316|0.5 223317|0.56944 223318|0.31944 223319|0.25 223320|0.22222 223321|0.77778 223322|0.83333 223323|0.70833 223324|0.79167 223325|0.63889 223326|0.33333 223327|0.44444 223328|0.29167 223329|0.22222 223330|0.86111 223331|0.93056 223332|0.43056 223333|0.43056 223334|0.45833 223335|0.52778 223336|0.22222 223337|0.5 223338|0.5 223339|0.5 223340|0.48611 223341|0.59722 223342|0.41667 223343|0.72222 223344|0.52778 223345|0.80556 223346|0.81944 223347|0.83333 223348|0.18056 223349|0.31944 223350|0.20833 223351|0.16667 223352|0.59722 223353|0.44444 223354|0.31944 223355|0.5 223356|0.51389 223357|0.38889 223358|0.29167 223359|0.80556 223360|0.48611 223361|0.5 223362|0.5 223363|0.81944 223364|0.5 223365|0.77778 223366|0.11111 223367|0.66667 223368|0.83333 223369|0.73611 223370|0.25 223371|0.86111 223372|0.47222 223373|0.23611 223374|0.20833 223375|0.083333 223376|0.31944 223377|0.55556 223378|0.47222 223379|0.19444 223380|0.23611 223381|0.5 223382|0.45833 223383|0.61111 223384|0.61111 223385|0.84722 223386|0.5 223387|0.33333 223388|0.22222 223389|0.58333 223390|0.45833 223391|0.22222 223392|0.79167 223393|0.27778 223394|0.55556 223395|0.54167 223396|0.16667 223397|0.79167 223398|0.90278 223399|0.76389 223400|0.75 223401|0.41667 223402|0.33333 223403|0.75 223404|0.041667 223405|0.56944 223406|0.48611 223407|0.625 223408|0.63889 223409|0.55556 223410|0.15278 223411|0.73611 223412|0.55556 223413|0.83333 223414|0.27778 223415|0.63889 223416|0.54167 223417|0.59722 223418|0.069444 223419|0.75 223420|0.81944 223421|0.70833 223422|0.55556 223423|0.5 223424|0.47222 223425|0.20833 223426|0.5 223427|0.125 223428|0.52778 223429|0.44444 223430|0.33333 223431|0.5 223432|0.5 223433|0.68056 223434|0.63889 223435|0.16667 223436|0.44444 223437|0.66667 223438|0.20833 223439|0.19444 223440|0.34722 223441|0.76389 223442|0.73611 223443|0.68056 223444|0.79167 223445|0.81944 223446|0.58333 223447|0.76389 223448|0.77778 223449|0.72222 223450|0.48611 223451|0.5 223452|0.5 223453|0.25 223454|0.16667 223455|0.27778 223456|0.375 223457|0.51389 223458|0.52778 223459|0.81944 223460|0.33333 223461|0.80556 223462|0.5 223463|0.5 223464|0.77778 223465|0.80556 223466|0.83333 223467|0.76389 223468|0.75 223469|0.375 223470|0.44444 223471|0.16667 223472|0.26389 223473|0.65278 223474|0.5 223475|0.5 223476|0.5 223477|0.5 223478|0.5 223479|0.5 223480|0.55556 223481|0.44444 223482|0.48611 223483|0.5 223484|0.18056 223485|0.5 223486|0.5 223487|0.5 223488|0.38889 223489|0.61111 223490|0.5 223491|0.5 223492|0.43056 223493|0.77778 223494|0.91667 223495|0.84722 223496|0.33333 223497|0.11111 223498|0.52778 223499|0.55556 223500|0.47222 223501|0.40278 223502|0.23611 223503|0.44444 223504|0.66667 223505|0.5 223506|0.5 223507|0.91667 223508|0.84722 223509|0.61111 223510|0.72222 223511|0.27778 223512|0.90278 223513|0.68056 223514|0.75 223515|0.73611 223516|0.25 223517|0.5 223518|0.88889 223519|0.5 223520|0.26389 223521|0.5 223522|0.55556 223523|0.5 223524|0.5 223525|0.5 223526|0.83333 223527|0.47222 223528|0.25 223529|0.47222 223530|0.15278 223531|0.36111 223532|0.66667 223533|0.86111 223534|0.88889 223535|0.61111 223536|0.86111 223537|0.5 223538|0.20833 223539|0.43056 223540|0.5 223541|0.58333 223542|0.5 223543|0.5 223544|0.875 223545|0.5 223546|0.80556 223547|0.51389 223548|0.5 223549|0.5 223550|0.58333 223551|0.19444 223552|0.26389 223553|0.5 223554|0.33333 223555|0.5 223556|0.5 223557|0.5 223558|0.5 223559|0.5 223560|0.48611 223561|0.5 223562|0.51389 223563|0.13889 223564|0.80556 223565|0.75 223566|0.93056 223567|1 223568|0.88889 223569|0.44444 223570|0.5 223571|0.65278 223572|0.65278 223573|0.76389 223574|0.5 223575|0.77778 223576|0.70833 223577|0.70833 223578|0.61111 223579|0.70833 223580|0.18056 223581|0.38889 223582|0.34722 223583|0.27778 223584|0.26389 223585|0.5 223586|0.5 223587|0.58333 223588|0.76389 223589|0.72222 223590|0.69444 223591|0.66667 223592|0.59722 223593|0.5 223594|0.36111 223595|0.33333 223596|0.26389 223597|0.11111 223598|0.23611 223599|0.75 223600|0.80556 223601|0.75 223602|0.81944 223603|0.51389 223604|0.55556 223605|0.31944 223606|0.45833 223607|0.20833 223608|0.23611 223609|0.44444 223610|0.54167 223611|0.72222 223612|0.625 223613|0.80556 223614|0.55556 223615|0.27778 223616|0.86111 223617|0.41667 223618|0.55556 223619|0.625 223620|0.48611 223621|0.88889 223622|0.19444 223623|0.61111 223624|0.45833 223625|0.81944 223626|0.875 223627|0.5 223628|0.40278 223629|0.5 223630|0.5 223631|0.41667 223632|0.13889 223633|0.23611 223634|0.5 223635|0.58333 223636|0.81944 223637|0.375 223638|0.5 223639|0.65278 223640|0.5 223641|0.30556 223642|0.34722 223643|0.27778 223644|0.22222 223645|0.375 223646|0.30556 223647|0.54167 223648|0.36111 223649|0.41667 223650|0.88889 223651|0.25 223652|0.54167 223653|0.83333 223654|0.13889 223655|0.75 223656|0.5 223657|0.5 223658|0.5 223659|0.72222 223660|0.83333 223661|0.77778 223662|0.80556 223663|0.63889 223664|0.56944 223665|0.25 223666|0.13889 223667|0.55556 223668|0.44444 223669|0.55556 223670|0.47222 223671|0.20833 223672|0.48611 223673|0.18056 223674|0.5 223675|0.54167 223676|0.30556 223677|0.15278 223678|0.51389 223679|0.40278 223680|0.5 223681|0.5 223682|0.55556 223683|0.51389 223684|0.58333 223685|0.5 223686|0.31944 223687|0.13889 223688|0.81944 223689|0.5 223690|0.5 223691|0.26389 223692|0.13889 223693|0.013889 223694|0.5 223695|0.5 223696|0.45833 223697|0.15278 223698|0.26389 223699|0.48611 223700|0.11111 223701|0.069444 223702|0.375 223703|0.44444 223704|0.36111 223705|0.31944 223706|0.70833 223707|0.25 223708|0.5 223709|0.55556 223710|0.68056 223711|0.77778 223712|0.72222 223713|0.68056 223714|0.58333 223715|0.79167 223716|0.77778 223717|0.81944 223718|0.5 223719|0.84722 223720|0.34722 223721|0.61111 223722|0.66667 223723|0.65278 223724|0.83333 223725|0.41667 223726|0.56944 223727|0.45833 223728|0.73611 223729|0.36111 223730|0.055556 223731|0.55556 223732|0.29167 223733|0.5 223734|0.5 223735|0.20833 223736|0.5 223737|0.22222 223738|0.58333 223739|0.5 223740|0.5 223741|0.55556 223742|0.5 223743|0.5 223744|0.5 223745|0.5 223746|0.5 223747|0.38889 223748|0.13889 223749|0.31944 223750|0.48611 223751|0.61111 223752|0.31944 223753|0.65278 223754|0 223755|0.54167 223756|0.52778 223757|0.5 223758|0.45833 223759|0.5 223760|0.125 223761|0.13889 223762|0.069444 223763|0.84722 223764|0.58333 223765|0.52778 223766|0.55556 223767|0.11111 223768|0.20833 223769|0.44444 223770|0.16667 223771|0.65278 223772|0.083333 223773|0.375 223774|0.5 223775|0.44444 223776|0.34722 223777|0.083333 223778|0.055556 223779|0.27778 223780|0.27778 223781|0.52778 223782|0.31944 223783|0.66667 223784|0.097222 223785|0.59722 223786|0.30556 223787|0.19444 223788|0.38889 223789|0.33333 223790|0.5 223791|0.70833 223792|0.75 223793|0.91667 223794|0.30556 223795|0.44444 223796|0.5 223797|0.36111 223798|0.36111 223799|0.5 223800|0.44444 223801|0.44444 223802|0.16667 223803|0.13889 223804|0.30556 223805|0.013889 223806|0.027778 223807|0 223808|0.41667 223809|0.44444 223810|0.51389 223811|0.34722 223812|0.25 223813|0.47222 223814|0.55556 223815|0.22222 223816|0.23611 223817|0.15278 223818|0.16667 223819|0.013889 223820|0.33333 223821|0.19444 223822|0.5 223823|0.25 223824|0.54167 223825|0.5 223826|0.22222 223827|0.5 223828|0.5 223829|0.375 223830|0.54167 223831|0.61111 223832|0.77778 223833|0.69444 223834|0.61111 223835|0.69444 223836|0.83333 223837|0.93056 223838|0.27778 223839|0.36111 223840|0.40278 223841|0.55556 223842|0.41667 223843|0.61111 223844|0.26389 223845|0.51389 223846|0.56944 223847|0.52778 223848|0.72222 223849|0.055556 223850|0.27778 223851|0.54167 223852|0.33333 223853|0.23611 223854|0.29167 223855|0.11111 223856|0.58333 223857|0.88889 223858|0.83333 223859|0.88889 223860|0.88889 223861|0.77778 223862|0.72222 223863|0.875 223864|0.26389 223865|0.31944 223866|0.48611 223867|0.51389 223868|0.30556 223869|0.51389 223870|0.5 223871|0.55556 223872|0.083333 223873|0.31944 223874|0.38889 223875|0.30556 223876|0.097222 223877|0.16667 223878|0.43056 223879|0.44444 223880|0.56944 223881|0.44444 223882|0.27778 223883|0.11111 223884|0.5 223885|0.63889 223886|0.5 223887|0.20833 223888|0.16667 223889|0.097222 223890|0.069444 223891|0.44444 223892|0.48611 223893|0.48611 223894|0.45833 223895|0.125 223896|0.055556 223897|0.43056 223898|0.25 223899|0.33333 223900|0.5 223901|0.27778 223902|0.56944 223903|0.52778 223904|0.40278 223905|0.47222 223906|0.44444 223907|0.59722 223908|0.68056 223909|0.72222 223910|0.56944 223911|0.84722 223912|0.22222 223913|0.22222 223914|0.83333 223915|0.94444 223916|0.055556 223917|0.26389 223918|0.13889 223919|0.22222 223920|0.31944 223921|0.5 223922|0.26389 223923|0.29167 223924|0.27778 223925|0.16667 223926|0.40278 223927|0.51389 223928|0.16667 223929|0.52778 223930|0.41667 223931|0.33333 223932|0.27778 223933|0.56944 223934|0.45833 223935|0.66667 223936|0.55556 223937|0.48611 223938|0.59722 223939|0.52778 223940|0.875 223941|0.55556 223942|0.5 223943|0.61111 223944|0.56944 223945|0.5 223946|0.63889 223947|0.23611 223948|0.90278 223949|0.20833 223950|0.47222 223951|0.125 223952|0.68056 223953|0.54167 223954|0.38889 223955|0.33333 223956|0.51389 223957|0.77778 223958|0.56944 223959|0.51389 223960|0.45833 223961|0.5 223962|0.625 223963|0.51389 223964|0.70833 223965|0.54167 223966|0.55556 223967|0.25 223968|0.36111 223969|0.44444 223970|0.38889 223971|0.41667 223972|0.75 223973|0.44444 223974|0.41667 223975|0.45833 223976|0.56944 223977|0.58333 223978|0.5 223979|0.13889 223980|0.27778 223981|0.55556 223982|0.55556 223983|0.73611 223984|0.84722 223985|0.625 223986|0.77778 223987|0.55556 223988|0.77778 223989|0.5 223990|0.27778 223991|0.36111 223992|0.26389 223993|0.097222 223994|0.5 223995|0.18056 223996|0.56944 223997|0.5 223998|0.625 223999|0.58333 224000|0.5 224001|0.41667 224002|0.68056 224003|0.16667 224004|0.40278 224005|0.19444 224006|0.5 224007|0.5 224008|0.44444 224009|0.055556 224010|0.68056 224011|0.38889 224012|0.31944 224013|0.5 224014|0.76389 224015|0.76389 224016|0.19444 224017|0.5 224018|0.86111 224019|0.83333 224020|0.43056 224021|0.72222 224022|0.55556 224023|0.11111 224024|0.51389 224025|0.30556 224026|0.25 224027|0.22222 224028|0.069444 224029|0.083333 224030|0.31944 224031|0.51389 224032|0.18056 224033|0.5 224034|0.30556 224035|0.30556 224036|0.47222 224037|0.52778 224038|0.33333 224039|0.72222 224040|0.5 224041|0.36111 224042|0.22222 224043|0.5 224044|0.34722 224045|0.65278 224046|0.22222 224047|0.5 224048|0.5 224049|0.375 224050|0.375 224051|0.33333 224052|0.375 224053|0.38889 224054|0.5 224055|0.61111 224056|0.38889 224057|0.43056 224058|0.84722 224059|0.81944 224060|0.75 224061|0.40278 224062|0.59722 224063|0.86111 224064|0.18056 224065|0.23611 224066|0.38889 224067|0.27778 224068|0.72222 224069|0.27778 224070|0.18056 224071|0.27778 224072|0.72222 224073|0.84722 224074|0.88889 224075|0.29167 224076|0.58333 224077|0.66667 224078|0.70833 224079|0.75 224080|0.83333 224081|0.91667 224082|0.5 224083|0.41667 224084|0.44444 224085|0.5 224086|0.5 224087|0.48611 224088|0.48611 224089|0.55556 224090|0.58333 224091|0.47222 224092|0.44444 224093|0.36111 224094|0.79167 224095|0.52778 224096|0.41667 224097|0.43056 224098|0.23611 224099|0.125 224100|0.56944 224101|0.48611 224102|0.40278 224103|0.38889 224104|0.45833 224105|0.55556 224106|0.5 224107|0.52778 224108|0.055556 224109|0.52778 224110|0.27778 224111|0.16667 224112|0.069444 224113|0.083333 224114|0.16667 224115|0.11111 224116|0.72222 224117|0.44444 224118|0.56944 224119|0.80556 224120|0.55556 224121|0.5 224122|0.86111 224123|0.80556 224124|0.80556 224125|0.98611 224126|0.25 224127|0.66667 224128|0.79167 224129|0.66667 224130|0.81944 224131|0.45833 224132|0.625 224133|0.94444 224134|0.69444 224135|0.16667 224136|0.68056 224137|0.81944 224138|0.84722 224139|0.875 224140|0.90278 224141|0.56944 224142|0.36111 224143|0.18056 224144|0.66667 224145|0.77778 224146|0.22222 224147|0.22222 224148|0.16667 224149|0.20833 224150|0.19444 224151|0.20833 224152|0.84722 224153|0.13889 224154|0.68056 224155|0.70833 224156|0.61111 224157|0.30556 224158|0.625 224159|0.625 224160|0.70833 224161|0.48611 224162|0.20833 224163|0.20833 224164|0.125 224165|0.48611 224166|0.81944 224167|0.51389 224168|0.29167 224169|0.65278 224170|0.47222 224171|0.51389 224172|0.79167 224173|0.73611 224174|0.75 224175|0.625 224176|0.72222 224177|0.22222 224178|0.5 224179|0.11111 224180|0.22222 224181|0.20833 224182|0.38889 224183|0.375 224184|0.68056 224185|0.27778 224186|0.72222 224187|0.66667 224188|0.19444 224189|0.26389 224190|0.66667 224191|0.33333 224192|0.25 224193|0.055556 224194|0.22222 224195|0.34722 224196|0.5 224197|0.45833 224198|0.43056 224199|0.66667 224200|0.55556 224201|0.44444 224202|0.34722 224203|0.58333 224204|0.041667 224205|0.69444 224206|0.66667 224207|0.69444 224208|0.76389 224209|0.38889 224210|0.11111 224211|0.15278 224212|0.38889 224213|0.68056 224214|0.069444 224215|0.16667 224216|0.19444 224217|0.56944 224218|0.56944 224219|0.58333 224220|0.68056 224221|0.625 224222|0.48611 224223|0.59722 224224|0.33333 224225|0.77778 224226|0.80556 224227|0.83333 224228|0.81944 224229|0.91667 224230|0.055556 224231|0.43056 224232|0.38889 224233|0.70833 224234|0.58333 224235|0.25 224236|0.33333 224237|0.13889 224238|0.79167 224239|0.48611 224240|0.44444 224241|0.51389 224242|0.66667 224243|0.5 224244|0.45833 224245|0.083333 224246|0.125 224247|0.70833 224248|0.76389 224249|0.63889 224250|0.41667 224251|0.31944 224252|0 224253|0.875 224254|0.27778 224255|0.58333 224256|0.77778 224257|0.59722 224258|0.34722 224259|0.29167 224260|0.33333 224261|0.30556 224262|0.54167 224263|0.625 224264|0.79167 224265|0.13889 224266|0.54167 224267|0.77778 224268|0.625 224269|0.31944 224270|0.56944 224271|0.38889 224272|0.38889 224273|0.55556 224274|0.041667 224275|0.25 224276|0.81944 224277|0.45833 224278|0.5 224279|0.15278 224280|0.125 224281|0.16667 224282|0.15278 224283|0.36111 224284|0.38889 224285|0.52778 224286|0.41667 224287|0.43056 224288|0.68056 224289|0.61111 224290|0.25 224291|0.70833 224292|0.26389 224293|0.27778 224294|0.375 224295|0.61111 224296|0.72222 224297|0.375 224298|0.44444 224299|0.33333 224300|0.30556 224301|0.33333 224302|0.20833 224303|0.22222 224304|0.25 224305|0.34722 224306|0.63889 224307|0.80556 224308|0.81944 224309|0.45833 224310|0.55556 224311|0.26389 224312|0.25 224313|0.75 224314|0.83333 224315|0.81944 224316|0.45833 224317|0.625 224318|0.72222 224319|0.5 224320|0.72222 224321|0.22222 224322|0.13889 224323|0.097222 224324|0.23611 224325|0.30556 224326|0.83333 224327|0.875 224328|0.59722 224329|0.30556 224330|0.51389 224331|0.80556 224332|0.63889 224333|0.18056 224334|0.36111 224335|0.18056 224336|0.5 224337|0.55556 224338|0.11111 224339|0.13889 224340|0.11111 224341|0.055556 224342|0.33333 224343|0.38889 224344|0.43056 224345|0.34722 224346|0.72222 224347|0.65278 224348|0.47222 224349|0.27778 224350|0.5 224351|0.31944 224352|0.51389 224353|0.5 224354|0.38889 224355|0.097222 224356|0.083333 224357|0.11111 224358|0.23611 224359|0.055556 224360|0.5 224361|0.54167 224362|0.45833 224363|0.19444 224364|0.48611 224365|0.44444 224366|0.79167 224367|0.75 224368|0.55556 224369|0.52778 224370|0.43056 224371|0.38889 224372|0.47222 224373|0.77778 224374|0.75 224375|0.30556 224376|0.47222 224377|0.5 224378|0.48611 224379|0.875 224380|0.79167 224381|0.5 224382|0.44444 224383|0.22222 224384|0.29167 224385|0.5 224386|0.61111 224387|0.66667 224388|0.11111 224389|0.22222 224390|0.45833 224391|0.22222 224392|0.75 224393|0.013889 224394|0.26389 224395|0.63889 224396|0.20833 224397|0.38889 224398|0.55556 224399|0.59722 224400|0.38889 224401|0.29167 224402|0.52778 224403|0.5 224404|0.36111 224405|0.16667 224406|0.375 224407|0.40278 224408|0.44444 224409|0.13889 224410|0.77778 224411|0.38889 224412|0.27778 224413|0.25 224414|0.23611 224415|0.375 224416|0.45833 224417|0.33333 224418|0.29167 224419|0.22222 224420|0.083333 224421|0.069444 224422|0.5 224423|0.5 224424|0.5 224425|0.55556 224426|0.58333 224427|0.23611 224428|0.625 224429|0.52778 224430|0.5 224431|0.47222 224432|0.5 224433|0.80556 224434|0.77778 224435|0.5 224436|0.5 224437|0.5 224438|0.5 224439|0.5 224440|0.5 224441|0.5 224442|0.5 224443|0.65278 224444|0.22222 224445|0.013889 224446|0.11111 224447|0.33333 224448|0.5 224449|0.61111 224450|0.48611 224451|0.5 224452|0.59722 224453|0.38889 224454|0.51389 224455|0.34722 224456|0.15278 224457|0.5 224458|0.5 224459|0.5 224460|0.52778 224461|0.5 224462|0.083333 224463|0.84722 224464|0.5 224465|0.5 224466|0.5 224467|0.5 224468|0.5 224469|0.44444 224470|0.5 224471|0.5 224472|0.29167 224473|0.15278 224474|0.52778 224475|0.5 224476|0.5 224477|0.54167 224478|0.55556 224479|0.5 224480|0.5 224481|0.91667 224482|0.52778 224483|0.27778 224484|0.5 224485|0.5 224486|0.5 224487|0.5 224488|0.5 224489|0.72222 224490|0.5 224491|0.59722 224492|0.43056 224493|0.30556 224494|0.625 224495|0.23611 224496|0.19444 224497|0.5 224498|0.875 224499|0.83333 224500|0.16667 224501|0.38889 224502|0.25 224503|0.083333 224504|0.47222 224505|0.33333 224506|0.5 224507|0.72222 224508|0.875 224509|0.58333 224510|0.73611 224511|0.30556 224512|0.5 224513|0.5 224514|0.5 224515|0.5 224516|0.55556 224517|0.38889 224518|0.5 224519|0.5 224520|0.5 224521|0.79167 224522|0.5 224523|0.5 224524|0.47222 224525|0.5 224526|0.5 224527|0.5 224528|0.5 224529|0.5 224530|0.5 224531|0.33333 224532|0.94444 224533|0.61111 224534|0.18056 224535|0.5 224536|0.16667 224537|0.5 224538|0.33333 224539|0.5 224540|0.72222 224541|0.5 224542|0.5 224543|0.5 224544|0.52778 224545|0.5 224546|0.5 224547|0.5 224548|0.51389 224549|0.5 224550|0.5 224551|0.55556 224552|0.88889 224553|0.11111 224554|0.18056 224555|0.31944 224556|0.31944 224557|0.29167 224558|0.097222 224559|0.72222 224560|0.5 224561|0.55556 224562|0.31944 224563|0.61111 224564|0.5 224565|0.51389 224566|0.44444 224567|0.47222 224568|0.41667 224569|0.5 224570|0.30556 224571|0.625 224572|0.16667 224573|0.54167 224574|0.47222 224575|0.31944 224576|0.125 224577|0.097222 224578|0.5 224579|0.5 224580|0.5 224581|0.27778 224582|0.47222 224583|0.61111 224584|0.41667 224585|0.5 224586|0.5 224587|0.5 224588|0.5 224589|0.125 224590|0.15278 224591|0.69444 224592|0.41667 224593|0.5 224594|0.80556 224595|0.5 224596|0.38889 224597|0.31944 224598|0.25 224599|0.18056 224600|0.27778 224601|0.5 224602|0.54167 224603|0.38889 224604|0.5 224605|0.44444 224606|0.31944 224607|0.45833 224608|0.375 224609|0.5 224610|0.69444 224611|0.56944 224612|0.86111 224613|0.61111 224614|0.36111 224615|0.5 224616|0.72222 224617|0.69444 224618|0.29167 224619|0.44444 224620|0.69444 224621|0.22222 224622|0.77778 224623|0.65278 224624|0.59722 224625|0.26389 224626|0.59722 224627|0.16667 224628|0.55556 224629|0.44444 224630|0.27778 224631|0.75 224632|0.48611 224633|0.43056 224634|0.93056 224635|0.625 224636|0.5 224637|0.33333 224638|0.33333 224639|0.5 224640|0.13889 224641|0.98611 224642|0.625 224643|0.5 224644|0.375 224645|0.83333 224646|0.5 224647|0.54167 224648|0.29167 224649|0.48611 224650|0.47222 224651|0.5 224652|0.5 224653|0.47222 224654|0.5 224655|0.93056 224656|0.5 224657|0.56944 224658|0.5 224659|0.5 224660|0.5 224661|0.45833 224662|0.44444 224663|0.76389 224664|0.83333 224665|0.54167 224666|0.36111 224667|0.30556 224668|0.5 224669|0.5 224670|0.5 224671|0.5 224672|0.5 224673|0.83333 224674|0.48611 224675|0.5 224676|0.5 224677|0.52778 224678|0.5 224679|0.38889 224680|0.5 224681|0.5 224682|0.125 224683|0.83333 224684|0.5 224685|0.5 224686|0.5 224687|0.5 224688|0.66667 224689|0.5 224690|0.72222 224691|0.56944 224692|0.23611 224693|0.375 224694|0.43056 224695|0.44444 224696|0.34722 224697|0.65278 224698|0.5 224699|0.90278 224700|0.5 224701|0.5 224702|0.22222 224703|0.52778 224704|0.44444 224705|0.61111 224706|0.5 224707|0.5 224708|0.5 224709|0.5 224710|0.56944 224711|0.83333 224712|0.5 224713|0.5 224714|0.38889 224715|0.61111 224716|0.52778 224717|0.5 224718|0.34722 224719|0.25 224720|0.18056 224721|0.097222 224722|0.5 224723|0.5 224724|0.5 224725|0.79167 224726|0.36111 224727|0.5 224728|0.15278 224729|0.11111 224730|0.5 224731|0.23611 224732|0.16667 224733|0.76389 224734|0.56944 224735|0.25 224736|0.16667 224737|0.33333 224738|0.34722 224739|0.5 224740|0.5 224741|0.68056 224742|0.43056 224743|0.59722 224744|0.69444 224745|0.65278 224746|0.36111 224747|0.25 224748|0.625 224749|0.27778 224750|0.29167 224751|0.81944 224752|0.41667 224753|0.47222 224754|0.5 224755|0.18056 224756|0.20833 224757|0.33333 224758|0.65278 224759|0.125 224760|0.23611 224761|0.31944 224762|0.27778 224763|0.63889 224764|0.5 224765|0.58333 224766|0.5 224767|0.52778 224768|0.48611 224769|0.61111 224770|0.13889 224771|0.041667 224772|0.11111 224773|0.11111 224774|0.25 224775|0.76389 224776|0.27778 224777|0.5 224778|0.47222 224779|0.375 224780|0.5 224781|0.66667 224782|0.5 224783|0.69444 224784|0.61111 224785|0.5 224786|0.5 224787|0.5 224788|0.5 224789|0.70833 224790|0.5 224791|0.5 224792|0.38889 224793|0.5 224794|0.75 224795|0.84722 224796|0.44444 224797|0.61111 224798|0.59722 224799|0.72222 224800|0.41667 224801|0.73611 224802|0.80556 224803|0.72222 224804|0.76389 224805|0.58333 224806|0.44444 224807|0.33333 224808|0.25 224809|0.5 224810|0.5 224811|0.5 224812|0.75 224813|0.76389 224814|0.94444 224815|0.375 224816|0.55556 224817|0.84722 224818|0.72222 224819|0.66667 224820|0.69444 224821|0.72222 224822|0.70833 224823|0.88889 224824|0.41667 224825|0.5 224826|0.5 224827|0.56944 224828|0.80556 224829|0.59722 224830|0.83333 224831|0.66667 224832|0.5 224833|0.13889 224834|0.58333 224835|0.68056 224836|0.43056 224837|0.36111 224838|0.40278 224839|0.47222 224840|0.58333 224841|0.48611 224842|0.13889 224843|0.5 224844|0.72222 224845|0.61111 224846|0.84722 224847|0.88889 224848|0.48611 224849|0.5 224850|0.83333 224851|0.5 224852|0.5 224853|0.48611 224854|0.5 224855|0.5 224856|0.90278 224857|0.5 224858|0.56944 224859|0.5 224860|0.5 224861|0.5 224862|0.5 224863|0.51389 224864|0.5 224865|0.61111 224866|0.5 224867|0.80556 224868|0.5 224869|0.55556 224870|0.5 224871|0.63889 224872|0.48611 224873|0.5 224874|0.5 224875|0.51389 224876|0.58333 224877|0.5 224878|0.5 224879|0.5 224880|0.51389 224881|0.5 224882|0.79167 224883|0.5 224884|0.79167 224885|0.5 224886|0.5 224887|0.5 224888|0.59722 224889|0.5 224890|0.65278 224891|0.41667 224892|0.61111 224893|0.77778 224894|0.81944 224895|0.19444 224896|0.83333 224897|0.44444 224898|0.5 224899|0.5 224900|0.5 224901|0.51389 224902|0.5 224903|0.5 224904|0.5 224905|0.73611 224906|0.75 224907|0.5 224908|0.30556 224909|0.5 224910|0.5 224911|0.26389 224912|0.16667 224913|0.5 224914|0.23611 224915|0.38889 224916|0.5 224917|0.16667 224918|0.22222 224919|0.5 224920|0.59722 224921|0.5 224922|0.5 224923|0.58333 224924|0.5 224925|0.41667 224926|0.5 224927|0.5 224928|0.5 224929|0.5 224930|0.83333 224931|0.5 224932|0.5 224933|0.72222 224934|0.5 224935|0.5 224936|0.54167 224937|0.5 224938|0.38889 224939|0.5 224940|0.5 224941|0.77778 224942|0.55556 224943|0.30556 224944|0.5 224945|0.81944 224946|0.5 224947|0.81944 224948|0.5 224949|0.93056 224950|0.5 224951|0.5 224952|0.5 224953|0.72222 224954|0.76389 224955|0.86111 224956|0.72222 224957|0.72222 224958|0.52778 224959|0.5 224960|0.72222 224961|0.5 224962|0.5 224963|0.55556 224964|0.5 224965|0.76389 224966|0.5 224967|0.5 224968|0.5 224969|0.55556 224970|0.83333 224971|0.61111 224972|0.80556 224973|0.79167 224974|0.77778 224975|0.5 224976|0.5 224977|0.38889 224978|0.5 224979|0.5 224980|0.5 224981|0.59722 224982|0.18056 224983|0.5 224984|0.5 224985|0.625 224986|0.5 224987|0.5 224988|0.72222 224989|0.5 224990|0.66667 224991|0.5 224992|0.76389 224993|0.72222 224994|0.79167 224995|0.76389 224996|0.83333 224997|0.5 224998|0.5 224999|0.5 225000|0.76389 225001|0.5 225002|0.88889 225003|0.79167 225004|0.73611 225005|0.66667 225006|0.36111 225007|0.52778 225008|0.5 225009|0.59722 225010|0.5 225011|0.58333 225012|0.5 225013|0.5 225014|0.51389 225015|0.5 225016|0.5 225017|0.72222 225018|0.5 225019|0.625 225020|0.5 225021|0.86111 225022|0.5 225023|0.84722 225024|0.5 225025|0.5 225026|0.5 225027|0.5 225028|0.5 225029|0.33333 225030|0.5 225031|0.11111 225032|0.5 225033|0.5 225034|0.5 225035|0.5 225036|0.5 225037|0.5 225038|0.65278 225039|0.5 225040|0.76389 225041|0.43056 225042|0.5 225043|0.80556 225044|0.5 225045|0.5 225046|0.5 225047|0.38889 225048|0.5 225049|0.55556 225050|0.5 225051|0.5 225052|0.66667 225053|0.5 225054|0.55556 225055|0.5 225056|0.83333 225057|0.75 225058|0.66667 225059|0.65278 225060|0.76389 225061|0.73611 225062|0.81944 225063|0.55556 225064|0.5 225065|0.5 225066|0.5 225067|0.5 225068|0.5 225069|0.5 225070|0.76389 225071|0.83333 225072|0.83333 225073|0.83333 225074|0.5 225075|0.70833 225076|0.26389 225077|0.15278 225078|0.069444 225079|0.54167 225080|0.5 225081|0.15278 225082|0.23611 225083|0.5 225084|0.5 225085|0.41667 225086|0.5 225087|0.5 225088|0.5 225089|0.56944 225090|0.66667 225091|0.44444 225092|0.81944 225093|0.81944 225094|0.86111 225095|0.58333 225096|0.45833 225097|0.61111 225098|0.75 225099|0.75 225100|0.5 225101|0.51389 225102|0.51389 225103|0.625 225104|0.33333 225105|0.23611 225106|0.73611 225107|0.5 225108|0.27778 225109|0.38889 225110|0.48611 225111|0.73611 225112|0.65278 225113|0.22222 225114|0.5 225115|0.5 225116|0.5 225117|0.63889 225118|0.69444 225119|0.81944 225120|0.86111 225121|0.5 225122|0.5 225123|0.44444 225124|0.70833 225125|0.69444 225126|0.875 225127|0.73611 225128|0.88889 225129|0.625 225130|0.5 225131|0.90278 225132|0.65278 225133|0.55556 225134|0.75 225135|0.77778 225136|0.5 225137|0.5 225138|0.45833 225139|0.61111 225140|0.055556 225141|0.70833 225142|0.30556 225143|0.40278 225144|0.33333 225145|0.34722 225146|0.36111 225147|0.30556 225148|0.069444 225149|0.54167 225150|0.52778 225151|0.11111 225152|0.055556 225153|0.51389 225154|0.94444 225155|0.375 225156|0.54167 225157|0.33333 225158|0.30556 225159|0.30556 225160|0.16667 225161|0.25 225162|0.30556 225163|0.51389 225164|0.5 225165|0.22222 225166|0.22222 225167|0.5 225168|0.22222 225169|0.33333 225170|0.91667 225171|0.45833 225172|0.5 225173|0.51389 225174|0.51389 225175|0.11111 225176|0.097222 225177|0.44444 225178|0.44444 225179|0.51389 225180|0.5 225181|0.55556 225182|0.25 225183|0.40278 225184|0.22222 225185|0.30556 225186|0.38889 225187|0.48611 225188|0.44444 225189|0.38889 225190|0.15278 225191|0.41667 225192|0.27778 225193|0.27778 225194|0.77778 225195|0.61111 225196|0.34722 225197|0.25 225198|0.47222 225199|0.5 225200|0.5 225201|0.47222 225202|0.83333 225203|0.083333 225204|0.55556 225205|0.66667 225206|0.33333 225207|0.48611 225208|0.31944 225209|0.55556 225210|0.80556 225211|0.33333 225212|0.31944 225213|0.52778 225214|0.16667 225215|0.43056 225216|0.76389 225217|0.68056 225218|0.34722 225219|0.63889 225220|0.54167 225221|0.26389 225222|0.375 225223|0.5 225224|0.375 225225|0.875 225226|0.63889 225227|0.5 225228|0.44444 225229|0.27778 225230|0.72222 225231|0.77778 225232|0.69444 225233|0.73611 225234|0.73611 225235|0.25 225236|0.44444 225237|0.5 225238|0.069444 225239|0.26389 225240|0.38889 225241|0.875 225242|0.5 225243|0.5 225244|0.5 225245|0.5 225246|0.5 225247|0.5 225248|0.5 225249|0.5 225250|0.5 225251|0.56944 225252|0.55556 225253|0.40278 225254|0.44444 225255|0.47222 225256|0.38889 225257|0.36111 225258|0.65278 225259|0.66667 225260|0.63889 225261|0.75 225262|0.83333 225263|0.84722 225264|0.5 225265|0.43056 225266|0.38889 225267|0.375 225268|0.31944 225269|0.73611 225270|0.76389 225271|0.19444 225272|0.5 225273|0.91667 225274|0.13889 225275|0.5 225276|0.23611 225277|0.375 225278|0.30556 225279|0.77778 225280|0.77778 225281|0.20833 225282|0.38889 225283|0.55556 225284|0.66667 225285|0.59722 225286|0.66667 225287|0.27778 225288|0.5 225289|0.5 225290|0.55556 225291|0.76389 225292|0.55556 225293|0.75 225294|0.069444 225295|0.31944 225296|0.80556 225297|0.20833 225298|0.76389 225299|0.44444 225300|0.069444 225301|0.375 225302|0.27778 225303|0.40278 225304|0.069444 225305|0.20833 225306|0.5 225307|0.52778 225308|0.33333 225309|0.83333 225310|0.83333 225311|0.88889 225312|0.18056 225313|0.88889 225314|0.79167 225315|0.83333 225316|0.5 225317|0.5 225318|0.18056 225319|0.26389 225320|0.20833 225321|0.30556 225322|0.83333 225323|0.90278 225324|0.20833 225325|0.47222 225326|0.58333 225327|0.45833 225328|0.55556 225329|0.44444 225330|0.52778 225331|0.70833 225332|0.5 225333|0.58333 225334|0.27778 225335|0.26389 225336|0.43056 225337|0.5 225338|0.5 225339|0.5 225340|0.29167 225341|0.48611 225342|0.5 225343|0.52778 225344|0.34722 225345|0.5 225346|0.75 225347|0.79167 225348|0.45833 225349|0.45833 225350|0.47222 225351|0.33333 225352|0.5 225353|0.41667 225354|0.30556 225355|0.51389 225356|0.75 225357|0.84722 225358|0.66667 225359|0.52778 225360|0.5 225361|0.48611 225362|0.38889 225363|0.25 225364|0.27778 225365|0.27778 225366|0.097222 225367|0.22222 225368|0.47222 225369|0.55556 225370|0.5 225371|0.5 225372|0.5 225373|0.5 225374|0.5 225375|0.69444 225376|0.75 225377|0.76389 225378|0.81944 225379|0.5 225380|0.5 225381|0.83333 225382|0.18056 225383|0.19444 225384|0.20833 225385|0.27778 225386|0.18056 225387|0.22222 225388|0.11111 225389|0.069444 225390|0.5 225391|0.44444 225392|0.5 225393|0.44444 225394|0.54167 225395|0.48611 225396|0.44444 225397|0.88889 225398|0.31944 225399|0.48611 225400|0.27778 225401|0.66667 225402|0.72222 225403|0.5 225404|0.5 225405|0.5 225406|0.5 225407|0.34722 225408|0.56944 225409|0.38889 225410|0.44444 225411|0.44444 225412|0.56944 225413|0.52778 225414|0.375 225415|0.27778 225416|0.73611 225417|0.5 225418|0.5 225419|0.55556 225420|0.11111 225421|0.5 225422|0.47222 225423|0.61111 225424|0.5 225425|0.65278 225426|0.72222 225427|0.56944 225428|0.69444 225429|0.63889 225430|0.88889 225431|0.80556 225432|0.56944 225433|0.70833 225434|0.81944 225435|0.59722 225436|0.34722 225437|0.27778 225438|0.36111 225439|0.22222 225440|0.33333 225441|0.5 225442|0.55556 225443|0.18056 225444|0.5 225445|0.76389 225446|0.5 225447|0.5 225448|0.5 225449|0.5 225450|0.5 225451|0.5 225452|0.80556 225453|0.77778 225454|0.70833 225455|0.94444 225456|0.5 225457|0.54167 225458|0.5 225459|0.13889 225460|0.5 225461|0.5 225462|0.5 225463|0.54167 225464|0.31944 225465|0.5 225466|0.33333 225467|0.25 225468|0.75 225469|0.61111 225470|0.72222 225471|0.68056 225472|0.81944 225473|0.76389 225474|0.875 225475|0.5 225476|0.81944 225477|0.77778 225478|0.5 225479|0.5 225480|0.66667 225481|0.29167 225482|0.73611 225483|0.86111 225484|0.79167 225485|0.5 225486|0.5 225487|0.34722 225488|0.25 225489|0.16667 225490|0.11111 225491|0.5 225492|0.59722 225493|0.47222 225494|0.43056 225495|0.5 225496|0.47222 225497|0.5 225498|0.44444 225499|0.51389 225500|0.5 225501|0.625 225502|0.72222 225503|0.41667 225504|0.29167 225505|0.125 225506|0.77778 225507|0.38889 225508|0.33333 225509|0.52778 225510|0.72222 225511|0.58333 225512|0.47222 225513|0.75 225514|0.38889 225515|0.625 225516|0.51389 225517|0.5 225518|0.25 225519|0.81944 225520|0.80556 225521|0.84722 225522|0.5 225523|0.73611 225524|0.625 225525|0.81944 225526|0.76389 225527|0.55556 225528|0.44444 225529|0.29167 225530|0.54167 225531|0.5 225532|0.33333 225533|0.44444 225534|0.375 225535|0.5 225536|0.61111 225537|0.56944 225538|0.30556 225539|0.43056 225540|0.16667 225541|0.33333 225542|0.68056 225543|0.51389 225544|0.75 225545|0.5 225546|0.83333 225547|0.5 225548|0.5 225549|0.86111 225550|0.65278 225551|0.55556 225552|0.79167 225553|0.5 225554|0.72222 225555|0.56944 225556|0.5 225557|0.76389 225558|0.5 225559|0.23611 225560|0.48611 225561|0.5 225562|0.5 225563|0.77778 225564|0.80556 225565|0.54167 225566|0.76389 225567|0.61111 225568|0.65278 225569|0.52778 225570|0.55556 225571|0.75 225572|0.38889 225573|0.18056 225574|0.083333 225575|0.19444 225576|0.097222 225577|0.23611 225578|0.5 225579|0.5 225580|0.81944 225581|0.83333 225582|0.80556 225583|0.61111 225584|0.80556 225585|0.77778 225586|0.83333 225587|0.45833 225588|0.79167 225589|0.80556 225590|0.625 225591|0.15278 225592|0.55556 225593|0.16667 225594|0.25 225595|0.59722 225596|0.61111 225597|0.47222 225598|0.44444 225599|0.27778 225600|0.23611 225601|0.38889 225602|0.69444 225603|0.5 225604|0.375 225605|0.5 225606|0.22222 225607|0.22222 225608|0.54167 225609|0.59722 225610|0.5 225611|0.48611 225612|0.27778 225613|0.375 225614|0.63889 225615|0.70833 225616|0.77778 225617|0.48611 225618|0.5 225619|0.19444 225620|0.52778 225621|0.44444 225622|0.44444 225623|0.22222 225624|0.15278 225625|0.055556 225626|0.13889 225627|0.20833 225628|0.055556 225629|0.80556 225630|0.5 225631|0.5 225632|0.61111 225633|0.61111 225634|0.5 225635|0.61111 225636|0.5 225637|0.5 225638|0.65278 225639|0.63889 225640|0.55556 225641|0.80556 225642|0.26389 225643|0.5 225644|0.5 225645|0.61111 225646|0.5 225647|0.5 225648|0.5 225649|0.5 225650|0.58333 225651|0.45833 225652|0.38889 225653|0.81944 225654|0.5 225655|0.26389 225656|0.5 225657|0.41667 225658|0.055556 225659|0.055556 225660|0.5 225661|0.41667 225662|0.5 225663|0.5 225664|0.5 225665|0.68056 225666|0.5 225667|0.27778 225668|0.55556 225669|0.23611 225670|0.58333 225671|0.5 225672|0.125 225673|0.27778 225674|0.23611 225675|0.45833 225676|0.59722 225677|0.52778 225678|0.58333 225679|0.30556 225680|0.48611 225681|0.5 225682|0.5 225683|0.5 225684|0.66667 225685|0.93056 225686|0.43056 225687|0.52778 225688|0.80556 225689|0.68056 225690|0.68056 225691|0.5 225692|0.18056 225693|0.19444 225694|0.055556 225695|0.18056 225696|0.5 225697|0.34722 225698|0.55556 225699|0.68056 225700|0.86111 225701|0.93056 225702|0.83333 225703|0.375 225704|0.55556 225705|0.5 225706|0.72222 225707|0.15278 225708|0.72222 225709|0.5 225710|0.45833 225711|0.5 225712|0.19444 225713|0.44444 225714|0.5 225715|0.47222 225716|0.5 225717|0.5 225718|0.5 225719|0.44444 225720|0.5 225721|0.73611 225722|0.52778 225723|0.38889 225724|0.83333 225725|0.18056 225726|0.73611 225727|0.5 225728|0.5 225729|0.5 225730|0.55556 225731|0.61111 225732|0.875 225733|0.5 225734|0.5 225735|0.5 225736|0.80556 225737|0.86111 225738|0.069444 225739|0.5 225740|0.69444 225741|0.16667 225742|0.20833 225743|0.61111 225744|0.79167 225745|0.80556 225746|0.45833 225747|0.54167 225748|0.5 225749|0.30556 225750|0.30556 225751|0.40278 225752|0.16667 225753|0.5 225754|0.44444 225755|0.27778 225756|0.61111 225757|0.44444 225758|0.61111 225759|0.63889 225760|0.63889 225761|0.61111 225762|0.55556 225763|0.5 225764|0.69444 225765|0.625 225766|0.38889 225767|0.44444 225768|0.68056 225769|0.083333 225770|0.069444 225771|0.11111 225772|0.5 225773|0.73611 225774|0.125 225775|0.5 225776|0.5 225777|0.5 225778|0.5 225779|0.5 225780|0.31944 225781|0.47222 225782|0.20833 225783|0.33333 225784|0.5 225785|0.5 225786|0.54167 225787|0.55556 225788|0.5 225789|0.33333 225790|0.5 225791|0.45833 225792|0.91667 225793|0.59722 225794|0.44444 225795|0.5 225796|0.5 225797|0.59722 225798|0.47222 225799|0.55556 225800|0.63889 225801|0.625 225802|0.5 225803|0.51389 225804|0.54167 225805|0.5 225806|0.80556 225807|0.79167 225808|0.44444 225809|0.5 225810|0.27778 225811|0.40278 225812|0.055556 225813|0.625 225814|0.56944 225815|0.84722 225816|0.66667 225817|0.23611 225818|0.27778 225819|0.20833 225820|0.15278 225821|0.72222 225822|0.84722 225823|0.55556 225824|0.55556 225825|0.31944 225826|0.48611 225827|0.65278 225828|0.5 225829|0.16667 225830|0.11111 225831|0.63889 225832|0.66667 225833|0.5 225834|0.55556 225835|0.48611 225836|0.38889 225837|0.45833 225838|0.88889 225839|0.5 225840|0.51389 225841|0.63889 225842|0.80556 225843|0.44444 225844|0.56944 225845|0.48611 225846|0.94444 225847|0.77778 225848|0.91667 225849|0.69444 225850|0.77778 225851|0.72222 225852|0.75 225853|0.63889 225854|0.80556 225855|0.47222 225856|0.80556 225857|0.5 225858|0.44444 225859|0.11111 225860|0.097222 225861|0.33333 225862|0.18056 225863|0.55556 225864|0.72222 225865|0.375 225866|0.51389 225867|0.44444 225868|0.63889 225869|0.55556 225870|0.65278 225871|0.55556 225872|0.44444 225873|0.52778 225874|0.38889 225875|0.25 225876|0.5 225877|0.65278 225878|0.77778 225879|0.66667 225880|0.41667 225881|0.30556 225882|0.30556 225883|0.18056 225884|0.16667 225885|0.18056 225886|0.84722 225887|0.75 225888|0.81944 225889|0.75 225890|0.36111 225891|0.61111 225892|0.29167 225893|0.5 225894|0.5 225895|0.76389 225896|0.22222 225897|0.79167 225898|0.44444 225899|0.70833 225900|0.59722 225901|0.5 225902|0.76389 225903|0.81944 225904|0.5 225905|0.55556 225906|0.34722 225907|0.45833 225908|0.375 225909|0.76389 225910|0.5 225911|0.5 225912|0.44444 225913|0.52778 225914|0.51389 225915|0.54167 225916|0.5 225917|0.86111 225918|0.5 225919|0.5 225920|0.5 225921|0.5 225922|0.88889 225923|0.5 225924|0.97222 225925|0.93056 225926|0.70833 225927|0.65278 225928|0.84722 225929|0.88889 225930|0.90278 225931|0.5 225932|0.5 225933|0.5 225934|0.5 225935|0.5 225936|0.54167 225937|0.13889 225938|0.22222 225939|0.27778 225940|0.20833 225941|0.15278 225942|0.26389 225943|0.18056 225944|0.5 225945|0.22222 225946|0.59722 225947|0.43056 225948|0.43056 225949|0.5 225950|0.72222 225951|0.75 225952|0.013889 225953|0 225954|0.48611 225955|0.47222 225956|0.76389 225957|0.88889 225958|0.65278 225959|0.5 225960|0.76389 225961|0.83333 225962|0.30556 225963|0.125 225964|0.30556 225965|0.13889 225966|0.45833 225967|0.81944 225968|0.77778 225969|0.5 225970|0.22222 225971|0.29167 225972|0.43056 225973|0.81944 225974|0.19444 225975|0.5 225976|0.5 225977|0.5 225978|0.5 225979|0.36111 225980|0.72222 225981|0.48611 225982|0.58333 225983|0.26389 225984|0.27778 225985|0.45833 225986|0.48611 225987|0.5 225988|0.44444 225989|0.5 225990|0.5 225991|0.055556 225992|0.125 225993|0.041667 225994|0.041667 225995|0.013889 225996|0.069444 225997|0.83333 225998|0.80556 225999|0.91667 226000|0.72222 226001|0.83333 226002|0.29167 226003|0.18056 226004|0.55556 226005|0.27778 226006|0.5 226007|0.48611 226008|0.47222 226009|0.5 226010|0.5 226011|0.5 226012|0.45833 226013|0.72222 226014|0.5 226015|0.61111 226016|0.625 226017|0.66667 226018|0.27778 226019|0.55556 226020|0.5 226021|0.5 226022|0.55556 226023|0.5 226024|0.5 226025|0.51389 226026|0.58333 226027|0.40278 226028|0.55556 226029|0.5 226030|0.44444 226031|0.51389 226032|0.5 226033|0.5 226034|0.5 226035|0.45833 226036|0.52778 226037|0.48611 226038|0.5 226039|0.5 226040|0.44444 226041|0.58333 226042|0.5 226043|0.5 226044|0.5 226045|0.5 226046|0.55556 226047|0.73611 226048|0.88889 226049|0.5 226050|0.5 226051|0.44444 226052|0.47222 226053|0.33333 226054|0.66667 226055|0.29167 226056|0.27778 226057|0.055556 226058|0.11111 226059|0.90278 226060|0.86111 226061|0.5 226062|0.77778 226063|0.63889 226064|0.55556 226065|0.69444 226066|0.59722 226067|0.34722 226068|0.097222 226069|0.30556 226070|0.22222 226071|0.83333 226072|0.33333 226073|0.31944 226074|0.34722 226075|0.625 226076|0.56944 226077|0.26389 226078|0.72222 226079|0.66667 226080|0.5 226081|0.86111 226082|0.52778 226083|0.097222 226084|0.55556 226085|0.68056 226086|0.5 226087|0.70833 226088|0.16667 226089|0.40278 226090|0.43056 226091|0.5 226092|0.15278 226093|0.75 226094|0.5 226095|0.54167 226096|0.5 226097|0.16667 226098|0.34722 226099|0.59722 226100|0.083333 226101|0.45833 226102|0.5 226103|0.5 226104|0.5 226105|0.5 226106|0.5 226107|0.58333 226108|0.72222 226109|0.27778 226110|0.84722 226111|0.72222 226112|0.59722 226113|0.43056 226114|0.58333 226115|0.73611 226116|0.91667 226117|0.875 226118|0.77778 226119|0.55556 226120|0.20833 226121|0.5 226122|0.5 226123|0.55556 226124|0.027778 226125|0.83333 226126|0.75 226127|0.15278 226128|0.27778 226129|0.52778 226130|0.5 226131|0.41667 226132|0.27778 226133|0.38889 226134|0.5 226135|0.59722 226136|0.73611 226137|0.29167 226138|0.40278 226139|0.16667 226140|0.125 226141|0.18056 226142|0.84722 226143|0.5 226144|0.73611 226145|0.79167 226146|0.55556 226147|0.11111 226148|0.41667 226149|0.41667 226150|0.44444 226151|0.55556 226152|0.23611 226153|0.18056 226154|0.5 226155|0.5 226156|0.83333 226157|0.80556 226158|0.56944 226159|0.5 226160|0.5 226161|0.5 226162|0.44444 226163|0.5 226164|0.5 226165|0.70833 226166|0.69444 226167|0.51389 226168|0.5 226169|0.84722 226170|0.47222 226171|0.51389 226172|0.5 226173|0.55556 226174|0.44444 226175|0.29167 226176|0.5 226177|0.88889 226178|0.38889 226179|0.16667 226180|0.55556 226181|0.55556 226182|0.22222 226183|0.19444 226184|0.22222 226185|0.33333 226186|0.94444 226187|0.41667 226188|0.16667 226189|0.54167 226190|0.55556 226191|0.55556 226192|0.16667 226193|0.13889 226194|0.041667 226195|0.13889 226196|0.5 226197|0.73611 226198|0.72222 226199|0.27778 226200|0.97222 226201|0.83333 226202|0.81944 226203|0.68056 226204|0.94444 226205|0.875 226206|0.84722 226207|0.58333 226208|0.70833 226209|0.5 226210|0.29167 226211|0.29167 226212|0.54167 226213|0.40278 226214|0.55556 226215|0.79167 226216|0.79167 226217|0.77778 226218|0.5 226219|0.68056 226220|0.18056 226221|0.84722 226222|0.34722 226223|0.5 226224|0.84722 226225|0.79167 226226|0.59722 226227|0.069444 226228|0.70833 226229|0.61111 226230|0.72222 226231|0.83333 226232|0.90278 226233|0.16667 226234|0.56944 226235|0.41667 226236|0.55556 226237|0.80556 226238|0.34722 226239|0.18056 226240|0.069444 226241|0.77778 226242|0.26389 226243|0.65278 226244|0.70833 226245|0.68056 226246|0.44444 226247|0.48611 226248|0.18056 226249|0.81944 226250|0.5 226251|0.27778 226252|0.19444 226253|0.16667 226254|0.30556 226255|0.19444 226256|0.16667 226257|0.30556 226258|0.31944 226259|0.66667 226260|0.5 226261|0.61111 226262|0.69444 226263|0.79167 226264|0.27778 226265|0.70833 226266|0.66667 226267|0.63889 226268|0.625 226269|0.73611 226270|0.27778 226271|0.5 226272|0.88889 226273|0.36111 226274|0.375 226275|0.54167 226276|0.61111 226277|0.47222 226278|0.69444 226279|0.80556 226280|0.77778 226281|0.13889 226282|0.77778 226283|0.26389 226284|0.15278 226285|0.45833 226286|0.25 226287|0.15278 226288|0.77778 226289|0.44444 226290|0.27778 226291|0.66667 226292|0.5 226293|0.65278 226294|0.5 226295|0.55556 226296|0.52778 226297|0.54167 226298|0.88889 226299|0.88889 226300|0.83333 226301|0.61111 226302|0.61111 226303|0.91667 226304|0.86111 226305|0.5 226306|0.20833 226307|0.18056 226308|0.41667 226309|0.22222 226310|0.43056 226311|0.77778 226312|0.125 226313|0.47222 226314|0.51389 226315|0.5 226316|0.45833 226317|0.76389 226318|0.80556 226319|0.5 226320|0.58333 226321|0.75 226322|0.68056 226323|0.73611 226324|0.33333 226325|0.47222 226326|0.19444 226327|0.33333 226328|0.61111 226329|0.51389 226330|0.70833 226331|0.75 226332|0.84722 226333|0.90278 226334|0.125 226335|0.19444 226336|0.72222 226337|0.13889 226338|0 226339|0.11111 226340|0.23611 226341|0.63889 226342|0.20833 226343|0.5 226344|0.84722 226345|0.77778 226346|0.54167 226347|0.31944 226348|0.30556 226349|0.61111 226350|0.69444 226351|0.34722 226352|0.66667 226353|0.625 226354|0.76389 226355|0.11111 226356|0.5 226357|0.26389 226358|0.80556 226359|0.86111 226360|0.80556 226361|0.013889 226362|0.33333 226363|0.66667 226364|0.625 226365|0.83333 226366|0.375 226367|0.48611 226368|0.34722 226369|0.41667 226370|0.43056 226371|0.43056 226372|0.15278 226373|0.88889 226374|0.83333 226375|0.875 226376|0.80556 226377|0.75 226378|0.33333 226379|0.18056 226380|0.47222 226381|0.68056 226382|0.44444 226383|0.30556 226384|0.44444 226385|0.61111 226386|0.15278 226387|0.125 226388|0.20833 226389|0.30556 226390|0.52778 226391|0.38889 226392|0.38889 226393|0.44444 226394|0.125 226395|0.5 226396|0.041667 226397|0.77778 226398|0.52778 226399|0.55556 226400|0.5 226401|0.61111 226402|0.61111 226403|0.59722 226404|0.63889 226405|0.55556 226406|0.73611 226407|0.84722 226408|0.80556 226409|0.27778 226410|0.54167 226411|0.76389 226412|0.65278 226413|0.51389 226414|0.11111 226415|0.75 226416|0.27778 226417|0.43056 226418|0.72222 226419|0.69444 226420|0.55556 226421|0.55556 226422|0.47222 226423|0.44444 226424|0.5 226425|0.15278 226426|0.625 226427|0.11111 226428|0.36111 226429|0.125 226430|0.125 226431|0.875 226432|0.63889 226433|0.83333 226434|0.84722 226435|0.40278 226436|0.16667 226437|0.5 226438|0.73611 226439|0.68056 226440|0.61111 226441|0.30556 226442|0.23611 226443|0.22222 226444|0.44444 226445|0.19444 226446|0.27778 226447|0.23611 226448|0.22222 226449|0.36111 226450|0.27778 226451|0.26389 226452|0.29167 226453|0.5 226454|0.48611 226455|0.5 226456|0.5 226457|0.41667 226458|0.20833 226459|0.55556 226460|0.59722 226461|0.125 226462|0.72222 226463|0.72222 226464|0.69444 226465|0.5 226466|0.5 226467|0.80556 226468|0.77778 226469|0.20833 226470|0.61111 226471|0.61111 226472|0.33333 226473|0.36111 226474|0.52778 226475|0.22222 226476|0.33333 226477|0.38889 226478|0.84722 226479|0.61111 226480|0.41667 226481|0.66667 226482|0.22222 226483|0.5 226484|0.22222 226485|0.54167 226486|0.22222 226487|0.055556 226488|0.77778 226489|0.91667 226490|0.80556 226491|0.5 226492|0.61111 226493|0.47222 226494|0.25 226495|0.34722 226496|0.5 226497|0.44444 226498|0.11111 226499|0.30556 226500|0.52778 226501|0.73611 226502|0.65278 226503|0.34722 226504|0.33333 226505|0.26389 226506|0.22222 226507|0.66667 226508|0.65278 226509|0.625 226510|0.79167 226511|0.23611 226512|0.38889 226513|0.5 226514|0.16667 226515|0.31944 226516|0 226517|0.5 226518|0.26389 226519|0.40278 226520|0.22222 226521|0.125 226522|0.80556 226523|0.79167 226524|0.44444 226525|0.43056 226526|0.48611 226527|0.56944 226528|0.63889 226529|0.5 226530|0.90278 226531|0.54167 226532|0.38889 226533|0.29167 226534|0.27778 226535|0.26389 226536|0.125 226537|0.25 226538|0.40278 226539|0.625 226540|0.30556 226541|0.5 226542|0.88889 226543|0.5 226544|0.16667 226545|0.055556 226546|0.77778 226547|0.61111 226548|0.81944 226549|0.77778 226550|0.5 226551|0.72222 226552|0.22222 226553|0.33333 226554|0.29167 226555|0.34722 226556|0.55556 226557|0.11111 226558|0.77778 226559|0.27778 226560|0.61111 226561|0.69444 226562|0.22222 226563|0.84722 226564|0.125 226565|0.76389 226566|0.66667 226567|0.013889 226568|0.26389 226569|0.16667 226570|0.70833 226571|0.76389 226572|0.76389 226573|0.51389 226574|0.33333 226575|0.83333 226576|0.72222 226577|0.72222 226578|0.875 226579|0.76389 226580|0.83333 226581|0.91667 226582|0.95833 226583|0.16667 226584|0.84722 226585|0.36111 226586|0.36111 226587|0.61111 226588|0.61111 226589|0.76389 226590|0.44444 226591|0.5 226592|0.77778 226593|0.70833 226594|0.72222 226595|0.83333 226596|0.80556 226597|0.625 226598|0.5 226599|0.11111 226600|0.40278 226601|0.44444 226602|0.33333 226603|0.30556 226604|0.16667 226605|0.27778 226606|0.055556 226607|0.84722 226608|0.66667 226609|0.59722 226610|0.47222 226611|0.5 226612|0.29167 226613|0.72222 226614|0.5 226615|0.375 226616|0.22222 226617|0.36111 226618|0.44444 226619|0.34722 226620|0.44444 226621|0.33333 226622|0.13889 226623|0.5 226624|0.22222 226625|0.33333 226626|0.58333 226627|0.5 226628|0.44444 226629|0.27778 226630|0.5 226631|0.75 226632|0.77778 226633|0.69444 226634|0.40278 226635|0.38889 226636|0.45833 226637|0.29167 226638|0.33333 226639|0.54167 226640|0.54167 226641|0.20833 226642|0.51389 226643|0.51389 226644|0.70833 226645|0.26389 226646|0.83333 226647|0.93056 226648|0.79167 226649|0.73611 226650|0.45833 226651|0.55556 226652|0.83333 226653|0.77778 226654|0.055556 226655|0.88889 226656|0.79167 226657|0.625 226658|0.84722 226659|0.16667 226660|0.41667 226661|0.16667 226662|0.33333 226663|0.68056 226664|0.66667 226665|0.34722 226666|0.30556 226667|0.66667 226668|0.70833 226669|0.38889 226670|0.29167 226671|0.81944 226672|0.76389 226673|0.069444 226674|0.63889 226675|0.83333 226676|0.55556 226677|0.68056 226678|0.56944 226679|0.81944 226680|0.56944 226681|0.58333 226682|0.30556 226683|0.77778 226684|0.5 226685|0.91667 226686|0.29167 226687|0.5 226688|0.375 226689|0.33333 226690|0.69444 226691|0.56944 226692|0.30556 226693|0.48611 226694|0.72222 226695|0.26389 226696|0.125 226697|0.097222 226698|0.16667 226699|0.68056 226700|0.75 226701|0.25 226702|0.22222 226703|0.15278 226704|0.16667 226705|0.25 226706|0.61111 226707|0.72222 226708|0.55556 226709|0.375 226710|0.29167 226711|0.36111 226712|0.5 226713|0.5 226714|0.23611 226715|0.40278 226716|0.22222 226717|0.43056 226718|0.31944 226719|0.125 226720|0 226721|0.083333 226722|0.90278 226723|0.77778 226724|0.70833 226725|0.81944 226726|0.5 226727|0.22222 226728|0.27778 226729|0.58333 226730|0.66667 226731|0.54167 226732|0.54167 226733|0.77778 226734|0.33333 226735|0.20833 226736|0.22222 226737|0.38889 226738|0.27778 226739|0.16667 226740|0.26389 226741|0.11111 226742|0.5 226743|0.5 226744|0.77778 226745|0.097222 226746|0.097222 226747|0.5 226748|0.66667 226749|0.44444 226750|0.5 226751|0.5 226752|0.38889 226753|0.26389 226754|0.47222 226755|0.097222 226756|0.18056 226757|0.083333 226758|0.23611 226759|0.23611 226760|0.31944 226761|0.72222 226762|0.5 226763|0.23611 226764|0.15278 226765|0.5 226766|0.5 226767|0.51389 226768|0.5 226769|0.51389 226770|0.5 226771|0.5 226772|0.51389 226773|0.80556 226774|0.5 226775|0.88889 226776|0.625 226777|0.5 226778|0.5 226779|0.41667 226780|0.5 226781|0.55556 226782|0.55556 226783|0.38889 226784|0.65278 226785|0.5 226786|0.5 226787|0.66667 226788|0.61111 226789|0.34722 226790|0.38889 226791|0.30556 226792|0.27778 226793|0.5 226794|0.5 226795|0.5 226796|0.5 226797|0.22222 226798|0.40278 226799|0.20833 226800|0.44444 226801|0.55556 226802|0.66667 226803|0.77778 226804|0.5 226805|0.5 226806|0.33333 226807|0.20833 226808|0.34722 226809|0.61111 226810|0.95833 226811|0.80556 226812|0.72222 226813|0.625 226814|0.29167 226815|0.38889 226816|0.75 226817|0.72222 226818|0.5 226819|0.625 226820|0.055556 226821|0.041667 226822|0.5 226823|0.5 226824|0.54167 226825|0.5 226826|0.43056 226827|0.15278 226828|0.083333 226829|0.13889 226830|0.5 226831|0.5 226832|1 226833|0.88889 226834|0.75 226835|0.27778 226836|0.58333 226837|0.5 226838|0.48611 226839|0.44444 226840|0.20833 226841|0.52778 226842|0.5 226843|0.5 226844|0.5 226845|0.5 226846|0.47222 226847|0.5 226848|0.68056 226849|0.5 226850|0.5 226851|0.5 226852|0.5 226853|0.5 226854|0.44444 226855|0.5 226856|0.76389 226857|0.44444 226858|0.33333 226859|0.34722 226860|0.5 226861|0.125 226862|0.44444 226863|0.375 226864|0.5 226865|0.38889 226866|0.69444 226867|0.11111 226868|0.30556 226869|0.19444 226870|0.125 226871|0.34722 226872|0.069444 226873|0.26389 226874|0.26389 226875|0.47222 226876|0.375 226877|0.23611 226878|0.79167 226879|0.40278 226880|0.41667 226881|0.43056 226882|0.5 226883|0.13889 226884|0.5 226885|0.44444 226886|0.31944 226887|0.5 226888|0.38889 226889|0.5 226890|0.5 226891|0.44444 226892|0.125 226893|0.16667 226894|0.16667 226895|0.11111 226896|0.5 226897|0.5 226898|0.5 226899|0.5 226900|0.5 226901|0.58333 226902|0.5 226903|0.5 226904|0.51389 226905|0.5 226906|0.48611 226907|0.5 226908|0.58333 226909|0.055556 226910|0.20833 226911|0.5 226912|0.44444 226913|0.5 226914|0.83333 226915|0.63889 226916|0.5 226917|0.83333 226918|0.5 226919|0.75 226920|0.69444 226921|0.5 226922|0.5 226923|0.5 226924|0.5 226925|0.5 226926|0.5 226927|0.36111 226928|0.40278 226929|0.38889 226930|0.083333 226931|0.041667 226932|0.36111 226933|0.38889 226934|0.47222 226935|0.5 226936|0.65278 226937|0.40278 226938|0.5 226939|0.5 226940|0.625 226941|0.80556 226942|0.77778 226943|0.63889 226944|0.875 226945|0.5 226946|0.5 226947|0.48611 226948|0.56944 226949|0.56944 226950|0.5 226951|0.5 226952|0.45833 226953|0.45833 226954|0.48611 226955|0.61111 226956|0.625 226957|0.083333 226958|0.20833 226959|0.5 226960|0.5 226961|0.5 226962|0.5 226963|0.5 226964|0.51389 226965|0.56944 226966|0.625 226967|0.55556 226968|0.20833 226969|0.5 226970|0.19444 226971|0.13889 226972|0.11111 226973|0.68056 226974|0.51389 226975|0.29167 226976|0.5 226977|0.44444 226978|0.47222 226979|0.41667 226980|0.51389 226981|0.23611 226982|0.30556 226983|0.38889 226984|0.86111 226985|0.75 226986|0.16667 226987|0.041667 226988|0.25 226989|0.097222 226990|0.33333 226991|0.5 226992|0.43056 226993|0.29167 226994|0.055556 226995|0.88889 226996|0.84722 226997|0.70833 226998|0.79167 226999|0.125 227000|0.58333 227001|0.5 227002|0.61111 227003|0.27778 227004|0.36111 227005|0.31944 227006|0.27778 227007|0.27778 227008|0.55556 227009|0.5 227010|0.34722 227011|0.81944 227012|0.63889 227013|0.51389 227014|0.38889 227015|0.48611 227016|0.66667 227017|0.33333 227018|0.375 227019|0.26389 227020|0.5 227021|0.38889 227022|0.22222 227023|0.027778 227024|0.31944 227025|0.33333 227026|0.13889 227027|0.25 227028|0.625 227029|0.66667 227030|0.52778 227031|0.16667 227032|0.47222 227033|0.875 227034|0.77778 227035|0.48611 227036|0.34722 227037|0.625 227038|0.45833 227039|0.66667 227040|0.38889 227041|0.5 227042|0.48611 227043|0.73611 227044|0.83333 227045|0.56944 227046|0.055556 227047|0.76389 227048|0.75 227049|0.23611 227050|0.31944 227051|0.31944 227052|0.5 227053|0.65278 227054|0.31944 227055|0.59722 227056|0.29167 227057|0.88889 227058|0.45833 227059|0.68056 227060|0.77778 227061|0.70833 227062|0.33333 227063|0.29167 227064|0.30556 227065|0.5 227066|0.5 227067|0.23611 227068|0.5 227069|0.44444 227070|0.5 227071|0.16667 227072|0.625 227073|0.65278 227074|0.45833 227075|0.20833 227076|0.375 227077|0.38889 227078|0.47222 227079|0.40278 227080|0.041667 227081|0.83333 227082|0.43056 227083|0.18056 227084|0.77778 227085|0.41667 227086|0.86111 227087|0.20833 227088|0.75 227089|0.75 227090|0.15278 227091|0.5 227092|0.38889 227093|0.13889 227094|0.47222 227095|0.26389 227096|0.48611 227097|0.41667 227098|0.75 227099|0.69444 227100|0.18056 227101|0.55556 227102|0.5 227103|0.34722 227104|0.055556 227105|0.5 227106|0.22222 227107|0.27778 227108|0.16667 227109|0.097222 227110|0.31944 227111|0.56944 227112|0.5 227113|0.52778 227114|0.83333 227115|0.44444 227116|0.72222 227117|0.5 227118|0.47222 227119|0.41667 227120|0.27778 227121|0.54167 227122|0.61111 227123|0.375 227124|0.68056 227125|0.58333 227126|0.30556 227127|0.43056 227128|0.58333 227129|0.63889 227130|0.5 227131|0.68056 227132|0.52778 227133|0.76389 227134|0.51389 227135|0.58333 227136|0.26389 227137|0.5 227138|0.5 227139|0.5 227140|0.5 227141|0.23611 227142|0.31944 227143|0.5 227144|0.31944 227145|0.5 227146|0.5 227147|0.68056 227148|0.44444 227149|0.44444 227150|0.38889 227151|0.44444 227152|0.5 227153|0.5 227154|0.5 227155|0.26389 227156|0.125 227157|0.20833 227158|0.013889 227159|0.16667 227160|0.80556 227161|0.70833 227162|0.84722 227163|0.68056 227164|0.63889 227165|0.63889 227166|0.33333 227167|0.38889 227168|0.54167 227169|0.5 227170|0.083333 227171|0.125 227172|0.41667 227173|0.48611 227174|0.5 227175|0.47222 227176|0.26389 227177|0.22222 227178|0.5 227179|0.51389 227180|0.75 227181|0.18056 227182|0.20833 227183|0.5 227184|0.38889 227185|0.44444 227186|0.33333 227187|0.80556 227188|0.77778 227189|0.31944 227190|0.44444 227191|0.44444 227192|0.70833 227193|0.63889 227194|0.63889 227195|0.58333 227196|0.68056 227197|0.125 227198|0.54167 227199|0.5 227200|0.40278 227201|0.55556 227202|0.33333 227203|0.22222 227204|0.13889 227205|0.54167 227206|0.79167 227207|0.72222 227208|0.59722 227209|0.36111 227210|0.20833 227211|0.5 227212|0.5 227213|0.54167 227214|0.5 227215|0.79167 227216|0.23611 227217|0.38889 227218|0.55556 227219|0.5 227220|0.5 227221|0.5 227222|0.5 227223|0.45833 227224|0.40278 227225|0.44444 227226|0.59722 227227|0.41667 227228|0.63889 227229|0.5 227230|0.79167 227231|0.70833 227232|0.58333 227233|0.86111 227234|0.58333 227235|0.5 227236|0.33333 227237|0.51389 227238|0.5 227239|1 227240|0.5 227241|0.5 227242|0.86111 227243|0.55556 227244|0.45833 227245|0 227246|0.11111 227247|0.73611 227248|0.63889 227249|0.55556 227250|0.23611 227251|0.38889 227252|0.77778 227253|0.34722 227254|0.72222 227255|0.38889 227256|0.625 227257|0.5 227258|0.625 227259|0.41667 227260|0.20833 227261|0.069444 227262|0.18056 227263|0.11111 227264|0.55556 227265|0.375 227266|0.81944 227267|0.29167 227268|0.44444 227269|0.27778 227270|0.55556 227271|0.44444 227272|0.055556 227273|0.5 227274|0.55556 227275|0.79167 227276|0.90278 227277|0.27778 227278|0.097222 227279|0.31944 227280|0.44444 227281|0.625 227282|0.5 227283|0.34722 227284|0.34722 227285|0.33333 227286|0.66667 227287|0.66667 227288|0.69444 227289|0.54167 227290|0.61111 227291|0.59722 227292|0.875 227293|0.83333 227294|0.15278 227295|0.70833 227296|0.51389 227297|0.45833 227298|0.72222 227299|0.52778 227300|0.29167 227301|0.76389 227302|0.77778 227303|0.66667 227304|0.48611 227305|0.48611 227306|0.44444 227307|0.5 227308|0.083333 227309|0.11111 227310|0.61111 227311|0.45833 227312|0.36111 227313|0.5 227314|0.80556 227315|0.52778 227316|0.55556 227317|0.61111 227318|0.5 227319|0.5 227320|0.22222 227321|0.36111 227322|0.44444 227323|0.27778 227324|0.055556 227325|0.5 227326|0.5 227327|0.5 227328|0.5 227329|0.5 227330|0.5 227331|0.5 227332|0.30556 227333|0.44444 227334|0.61111 227335|0.5 227336|0.5 227337|0.47222 227338|0.38889 227339|0.5 227340|0.5 227341|0.5 227342|0.45833 227343|0.5 227344|0.33333 227345|0.70833 227346|0.73611 227347|0.5 227348|0.41667 227349|0.5 227350|0.51389 227351|0.48611 227352|0.22222 227353|0.5 227354|0.5 227355|0.40278 227356|0.56944 227357|0.47222 227358|0.5 227359|0.625 227360|0.43056 227361|0.875 227362|0.16667 227363|0.77778 227364|0.5 227365|0.30556 227366|0.80556 227367|0.31944 227368|0.5 227369|0.5 227370|0.51389 227371|0.70833 227372|0.5 227373|0.75 227374|0.5 227375|0.5 227376|0.72222 227377|0.51389 227378|0.18056 227379|0.5 227380|0.5 227381|0.16667 227382|0.59722 227383|0.44444 227384|0.29167 227385|0.77778 227386|0.44444 227387|0.5 227388|0.54167 227389|0.375 227390|0.66667 227391|0.34722 227392|0.77778 227393|0.5 227394|0.069444 227395|0.083333 227396|0.22222 227397|0 227398|0.38889 227399|0.5 227400|0.5 227401|0.22222 227402|0.31944 227403|0.18056 227404|0.40278 227405|0.81944 227406|0.5 227407|0.5 227408|0.66667 227409|0.5 227410|0.5 227411|0.38889 227412|0 227413|0.5 227414|0.16667 227415|0.11111 227416|0.77778 227417|0.81944 227418|0.5 227419|0.65278 227420|0.75 227421|0.16667 227422|0.19444 227423|0.30556 227424|0.19444 227425|0.041667 227426|0.013889 227427|0.5 227428|0.5 227429|0.34722 227430|0.77778 227431|0.26389 227432|0.33333 227433|0.55556 227434|0.68056 227435|0.5 227436|0.56944 227437|0.22222 227438|0.55556 227439|0.5 227440|0.72222 227441|0.40278 227442|0.51389 227443|0.70833 227444|0.5 227445|0.91667 227446|0.91667 227447|0.77778 227448|0.48611 227449|0.5 227450|0.73611 227451|0.5 227452|0.65278 227453|0.5 227454|0.5 227455|0.5 227456|0.44444 227457|0.34722 227458|0.55556 227459|0.61111 227460|0.5 227461|0.22222 227462|0.40278 227463|0.5 227464|0.88889 227465|0.5 227466|0.33333 227467|0.43056 227468|0.5 227469|0.93056 227470|0.25 227471|0.5 227472|0.73611 227473|0.31944 227474|0.5 227475|0.33333 227476|0.95833 227477|0.47222 227478|0.66667 227479|0.68056 227480|0.34722 227481|0.27778 227482|0.55556 227483|0.63889 227484|0.52778 227485|0.81944 227486|0.5 227487|0.40278 227488|0.45833 227489|0.81944 227490|0.80556 227491|0.33333 227492|0.58333 227493|0.58333 227494|0.55556 227495|0.5 227496|0.69444 227497|0.55556 227498|0.59722 227499|0.38889 227500|0.45833 227501|0.59722 227502|0.5 227503|0.94444 227504|0.52778 227505|0.5 227506|0.20833 227507|0.5 227508|0.43056 227509|0.55556 227510|0.47222 227511|0.5 227512|0.5 227513|0.5 227514|0.5 227515|0.11111 227516|0.5 227517|0.55556 227518|0.44444 227519|0.47222 227520|0.55556 227521|0.44444 227522|0.5 227523|0.58333 227524|0.5 227525|0.5 227526|0.59722 227527|0.54167 227528|0.5 227529|0.40278 227530|0.26389 227531|0.59722 227532|0.58333 227533|0.5 227534|0.61111 227535|0.41667 227536|0.875 227537|0.66667 227538|0.86111 227539|0.5 227540|0.72222 227541|0.5 227542|0.44444 227543|0.38889 227544|0.61111 227545|0.65278 227546|0.76389 227547|0.54167 227548|0.5 227549|0.5 227550|0.51389 227551|0.30556 227552|0.34722 227553|0.70833 227554|0.83333 227555|0.5 227556|0.58333 227557|0.5 227558|0.63889 227559|0.61111 227560|0.5 227561|0.52778 227562|0.54167 227563|0.54167 227564|0.86111 227565|0.83333 227566|0.72222 227567|0.55556 227568|0.5 227569|0.27778 227570|0.38889 227571|0.5 227572|0.68056 227573|0.5 227574|0.5 227575|0.5 227576|0.58333 227577|0.16667 227578|0.5 227579|0.5 227580|0.625 227581|0.77778 227582|0.81944 227583|0.5 227584|0.81944 227585|0.5 227586|0.47222 227587|0.5 227588|0.13889 227589|0.30556 227590|0.30556 227591|0.51389 227592|0.26389 227593|0.11111 227594|0.44444 227595|0.61111 227596|0.98611 227597|0.88889 227598|0.5 227599|0.5 227600|0.5 227601|0.58333 227602|0.72222 227603|0.5 227604|0.56944 227605|0.11111 227606|0.5 227607|0.5 227608|0.27778 227609|0.375 227610|0.36111 227611|0.68056 227612|0.5 227613|0.54167 227614|0.51389 227615|0.5 227616|0.54167 227617|0.5 227618|0.66667 227619|0.59722 227620|0.5 227621|0.59722 227622|0.5 227623|0.51389 227624|0.44444 227625|0.43056 227626|0.52778 227627|0.47222 227628|0.51389 227629|0.5 227630|0.5 227631|0.5 227632|0.19444 227633|0.41667 227634|0.94444 227635|0.88889 227636|0.5 227637|0.52778 227638|0.5 227639|0.5 227640|0.48611 227641|0.5 227642|0.45833 227643|0.44444 227644|0.5 227645|0.23611 227646|0.5 227647|0.44444 227648|0.27778 227649|0.013889 227650|0.45833 227651|0.55556 227652|0.69444 227653|0.55556 227654|0.5 227655|0.51389 227656|0.52778 227657|0.51389 227658|0.44444 227659|0.34722 227660|0.44444 227661|0.52778 227662|0.5 227663|0.43056 227664|0.51389 227665|0.40278 227666|0.44444 227667|0.45833 227668|0.65278 227669|0.48611 227670|0.55556 227671|0.52778 227672|0.5 227673|0.5 227674|0.61111 227675|0.22222 227676|0.5 227677|0.38889 227678|0.5 227679|0.44444 227680|0.73611 227681|0.40278 227682|0.44444 227683|0.375 227684|0.45833 227685|0.44444 227686|0.52778 227687|0.29167 227688|0.5 227689|0.54167 227690|0.375 227691|0.38889 227692|0.31944 227693|0.5 227694|0.40278 227695|0.027778 227696|0.22222 227697|0.77778 227698|0.48611 227699|0.125 227700|0.55556 227701|0.63889 227702|0.5 227703|0.5 227704|0.44444 227705|0.5 227706|0.5 227707|0.55556 227708|0.27778 227709|0.5 227710|0.375 227711|0.43056 227712|0.5 227713|0.45833 227714|0.5 227715|0.68056 227716|0.5 227717|0.63889 227718|0.5 227719|0.61111 227720|0.54167 227721|0.41667 227722|0.5 227723|0.55556 227724|0.44444 227725|0.18056 227726|0.5 227727|0.51389 227728|0.61111 227729|0.54167 227730|0.44444 227731|0.51389 227732|0.41667 227733|0.5 227734|0.33333 227735|0.5 227736|0.34722 227737|0.34722 227738|0.38889 227739|0.27778 227740|0.5 227741|0.44444 227742|0.59722 227743|0.47222 227744|0.5 227745|0.56944 227746|0.52778 227747|0.76389 227748|0.38889 227749|0.34722 227750|0.5 227751|0.41667 227752|0.55556 227753|0.5 227754|0.63889 227755|0.5 227756|0.54167 227757|0.5 227758|0.16667 227759|0.15278 227760|0.15278 227761|0.16667 227762|0.26389 227763|0.083333 227764|0.22222 227765|0.11111 227766|0.33333 227767|0.36111 227768|0.58333 227769|0.83333 227770|0.70833 227771|0.52778 227772|0.31944 227773|0.15278 227774|0.20833 227775|0.38889 227776|0.41667 227777|0.34722 227778|0.25 227779|0.41667 227780|0.44444 227781|0.51389 227782|0.51389 227783|0.55556 227784|0.20833 227785|0.19444 227786|0.41667 227787|0.16667 227788|0.44444 227789|0.16667 227790|0.16667 227791|0.5 227792|0.47222 227793|0.56944 227794|0.5 227795|0.375 227796|0.79167 227797|0.63889 227798|0.55556 227799|0.5 227800|0.5 227801|0.31944 227802|0.5 227803|0.55556 227804|0.5 227805|0.81944 227806|0.5 227807|0.5 227808|0.5 227809|0.69444 227810|0.5 227811|0.81944 227812|0.73611 227813|0.625 227814|0.5 227815|0.47222 227816|0.80556 227817|0.45833 227818|0.30556 227819|0.33333 227820|0.38889 227821|0.47222 227822|0.34722 227823|0.23611 227824|0.58333 227825|0.54167 227826|0.5 227827|0.5 227828|0.73611 227829|0.61111 227830|0.61111 227831|0.75 227832|0.72222 227833|0.77778 227834|0.84722 227835|0.875 227836|0.55556 227837|0.5 227838|0.43056 227839|0.19444 227840|0.375 227841|0.055556 227842|0.75 227843|0.73611 227844|0.33333 227845|0.5 227846|0.66667 227847|0.34722 227848|0.70833 227849|0.375 227850|0.16667 227851|0.55556 227852|0.52778 227853|0.70833 227854|0.66667 227855|0.59722 227856|0.83333 227857|0.72222 227858|0.5 227859|0.33333 227860|0.375 227861|0.15278 227862|0.81944 227863|0.83333 227864|0.88889 227865|0.83333 227866|0.33333 227867|0.31944 227868|0.41667 227869|0.51389 227870|0.11111 227871|0.22222 227872|0.041667 227873|0.70833 227874|0.75 227875|0.79167 227876|0.5 227877|0.38889 227878|0.26389 227879|0.38889 227880|0.23611 227881|0.59722 227882|0.55556 227883|0.73611 227884|0.79167 227885|0.27778 227886|0.375 227887|0.72222 227888|0.55556 227889|0.38889 227890|0.61111 227891|0.45833 227892|0.69444 227893|0.52778 227894|0.56944 227895|0.41667 227896|0.40278 227897|0.5 227898|0.86111 227899|0.81944 227900|0.47222 227901|0.5 227902|0.5 227903|0.55556 227904|0.875 227905|0.65278 227906|0.5 227907|0.54167 227908|0.77778 227909|0.38889 227910|0.58333 227911|0.70833 227912|0.5 227913|0.80556 227914|0.75 227915|0.72222 227916|0.70833 227917|0.79167 227918|0.44444 227919|0.80556 227920|0.79167 227921|0.79167 227922|0.45833 227923|0.70833 227924|0.5 227925|0.22222 227926|0.36111 227927|0.43056 227928|0.26389 227929|0.83333 227930|0.75 227931|0.75 227932|0.83333 227933|0.63889 227934|0.77778 227935|0.84722 227936|0.80556 227937|0.94444 227938|0.58333 227939|0.94444 227940|1 227941|0.5 227942|0.77778 227943|0.80556 227944|0.80556 227945|0.54167 227946|0.40278 227947|0.73611 227948|0.5 227949|0.47222 227950|0.72222 227951|0.73611 227952|0.27778 227953|0.5 227954|0.29167 227955|0.5 227956|0.55556 227957|0.51389 227958|0.55556 227959|0.59722 227960|0.5 227961|0.55556 227962|0.55556 227963|0.55556 227964|0.75 227965|0.48611 227966|0.5 227967|0.5 227968|0.86111 227969|0.875 227970|0.31944 227971|0.5 227972|0.91667 227973|0.5 227974|0.88889 227975|0.5 227976|0.5 227977|0.30556 227978|0.86111 227979|0.5 227980|0.80556 227981|0.56944 227982|0.48611 227983|0.61111 227984|0.84722 227985|0.72222 227986|0.76389 227987|0.55556 227988|0.58333 227989|0.52778 227990|0.72222 227991|0.70833 227992|0.40278 227993|0.5 227994|0.54167 227995|0.44444 227996|0.58333 227997|0.88889 227998|0.51389 227999|0.33333 228000|0.15278 228001|0.097222 228002|0.70833 228003|0.70833 228004|0.55556 228005|0.40278 228006|0.38889 228007|0.33333 228008|0.44444 228009|0.38889 228010|0.5 228011|0.19444 228012|0.875 228013|0.55556 228014|0.34722 228015|0.40278 228016|0.33333 228017|0.27778 228018|0.81944 228019|0.56944 228020|0.75 228021|0.81944 228022|0.90278 228023|0.56944 228024|0.5 228025|0.5 228026|0.55556 228027|0 228028|0.23611 228029|0.70833 228030|0.5 228031|0.083333 228032|0.47222 228033|0.43056 228034|0.47222 228035|0.56944 228036|0.70833 228037|0.055556 228038|0.27778 228039|0.61111 228040|0.55556 228041|0.5 228042|0.56944 228043|0.875 228044|0.5 228045|0.29167 228046|0.83333 228047|0.5 228048|0.47222 228049|0.61111 228050|0.63889 228051|0.61111 228052|0.5 228053|0.51389 228054|0.72222 228055|0.5 228056|0.55556 228057|0.55556 228058|0.55556 228059|0.875 228060|0.81944 228061|0.30556 228062|0.36111 228063|0.11111 228064|0.5 228065|0.5 228066|0.45833 228067|0.5 228068|0.79167 228069|0.88889 228070|0.88889 228071|0.44444 228072|0.5 228073|0.38889 228074|0.375 228075|0.027778 228076|0.54167 228077|0.56944 228078|0.59722 228079|0.13889 228080|0.77778 228081|0.63889 228082|0.69444 228083|0.69444 228084|0.76389 228085|0.23611 228086|0.041667 228087|0.5 228088|0.55556 228089|0.59722 228090|0.48611 228091|0.65278 228092|0.47222 228093|0.375 228094|0.40278 228095|0.61111 228096|0.76389 228097|0.86111 228098|0.5 228099|0.52778 228100|0.15278 228101|0.61111 228102|0.63889 228103|0.80556 228104|0.31944 228105|0.55556 228106|0.33333 228107|0.45833 228108|0.48611 228109|0.375 228110|0.5 228111|0.55556 228112|0.34722 228113|0.61111 228114|0.20833 228115|0.55556 228116|0.5 228117|0.91667 228118|0.94444 228119|0.31944 228120|0.81944 228121|0.88889 228122|0.69444 228123|0.55556 228124|0.33333 228125|0.11111 228126|0.13889 228127|0.44444 228128|0.36111 228129|0.5 228130|0.27778 228131|0.30556 228132|0.5 228133|0.5 228134|0.83333 228135|0.76389 228136|0.41667 228137|0.5 228138|0.5 228139|0.5 228140|0.69444 228141|0.68056 228142|0.59722 228143|0.61111 228144|0.125 228145|0.43056 228146|0.54167 228147|0.54167 228148|0.18056 228149|0.13889 228150|0.54167 228151|0.69444 228152|0.86111 228153|0.51389 228154|0.13889 228155|0.33333 228156|0.47222 228157|0.31944 228158|0.5 228159|0.625 228160|0.44444 228161|0.55556 228162|0.83333 228163|0.41667 228164|0.88889 228165|0.84722 228166|0.44444 228167|0.26389 228168|0.79167 228169|0.55556 228170|0.16667 228171|0.16667 228172|0.18056 228173|0.25 228174|0.61111 228175|0.65278 228176|0.81944 228177|0.66667 228178|0.83333 228179|0.75 228180|0.23611 228181|0.86111 228182|0.41667 228183|0.44444 228184|0.68056 228185|0.72222 228186|0.79167 228187|0.5 228188|0.34722 228189|0.5 228190|0.52778 228191|0.77778 228192|0.81944 228193|0.875 228194|0.48611 228195|0.66667 228196|0.59722 228197|0.75 228198|0.61111 228199|0.44444 228200|0.59722 228201|0.52778 228202|0.90278 228203|0.83333 228204|0.69444 228205|0.83333 228206|0.5 228207|0.77778 228208|0.41667 228209|0.5 228210|0.33333 228211|0.125 228212|0.11111 228213|0.86111 228214|0.84722 228215|0.48611 228216|0.44444 228217|0.40278 228218|0.72222 228219|0.45833 228220|0.52778 228221|0.5 228222|0.55556 228223|0.83333 228224|0.91667 228225|0.65278 228226|0.83333 228227|0.69444 228228|0.84722 228229|0.38889 228230|0.38889 228231|0.34722 228232|0.5 228233|0.68056 228234|0.55556 228235|0.33333 228236|0.72222 228237|0.5 228238|0.81944 228239|0.16667 228240|0.27778 228241|0.44444 228242|0.77778 228243|0.5 228244|0.41667 228245|0.25 228246|0.5 228247|0.77778 228248|0.58333 228249|0.83333 228250|0.58333 228251|0.51389 228252|0.94444 228253|0.43056 228254|0.52778 228255|0.48611 228256|0.5 228257|0.44444 228258|0.72222 228259|0.52778 228260|0.30556 228261|0.5 228262|0.65278 228263|0.80556 228264|0.88889 228265|0.83333 228266|0.20833 228267|0.54167 228268|0.5 228269|0.44444 228270|0.30556 228271|0.5 228272|0.52778 228273|0.5 228274|0.5 228275|0.41667 228276|0.55556 228277|0.5 228278|0.51389 228279|0.5 228280|0.5 228281|0.5 228282|0.5 228283|0.5 228284|0.5 228285|0.63889 228286|0.5 228287|0.5 228288|0.47222 228289|0.5 228290|0.41667 228291|0.63889 228292|0.68056 228293|0.5 228294|0.48611 228295|0.55556 228296|0.38889 228297|0.56944 228298|0.45833 228299|0.27778 228300|0.36111 228301|0.65278 228302|0.625 228303|0.29167 228304|0.51389 228305|0.27778 228306|0.5 228307|0.5 228308|0.54167 228309|0.55556 228310|0.59722 228311|0.80556 228312|0.44444 228313|0.44444 228314|0.61111 228315|0.54167 228316|0.5 228317|0.5 228318|0.5 228319|0.5 228320|0.44444 228321|0.5 228322|0.5 228323|0.33333 228324|0.26389 228325|0.041667 228326|0.5 228327|0.33333 228328|0.16667 228329|0.61111 228330|0.77778 228331|0.47222 228332|0.36111 228333|0.33333 228334|0.56944 228335|0.44444 228336|0.30556 228337|0.33333 228338|0.5 228339|0.13889 228340|0.48611 228341|0.36111 228342|0.91667 228343|0.73611 228344|0.79167 228345|0.5 228346|0.55556 228347|0.55556 228348|0.19444 228349|0.13889 228350|0.29167 228351|0.58333 228352|0.69444 228353|0.48611 228354|0.72222 228355|0.5 228356|0.56944 228357|0.5 228358|0.81944 228359|0.5 228360|0.5 228361|0.61111 228362|0.83333 228363|0.625 228364|0.73611 228365|0.70833 228366|0.55556 228367|0.5 228368|0.5 228369|0.5 228370|0.38889 228371|0.5 228372|0.76389 228373|0.59722 228374|0.41667 228375|0.375 228376|0.38889 228377|0.055556 228378|0.65278 228379|0.34722 228380|0.36111 228381|0.33333 228382|0.41667 228383|0.5 228384|0.61111 228385|0.73611 228386|0.5 228387|0.5 228388|0.44444 228389|0.61111 228390|0.11111 228391|0.069444 228392|0.59722 228393|0.36111 228394|0.30556 228395|0.29167 228396|0.36111 228397|0.5 228398|0.45833 228399|0.19444 228400|0.52778 228401|0.5 228402|0.5 228403|0.41667 228404|0.375 228405|0.58333 228406|0.5 228407|0.44444 228408|0.38889 228409|0.5 228410|0.63889 228411|0.43056 228412|0.26389 228413|0.055556 228414|0.72222 228415|0.44444 228416|0.5 228417|0.77778 228418|0.77778 228419|0.875 228420|0.52778 228421|0.5 228422|0.5 228423|0.5 228424|0.47222 228425|0.5 228426|0.48611 228427|0.5 228428|0.5 228429|0.5 228430|0.61111 228431|0.55556 228432|0.26389 228433|0.5 228434|0.30556 228435|0.54167 228436|0.5 228437|0.5 228438|0.68056 228439|0.083333 228440|0.5 228441|0.5 228442|0.52778 228443|0.5 228444|0.55556 228445|0.11111 228446|0.5 228447|0.54167 228448|0.61111 228449|0.66667 228450|0.52778 228451|0.5 228452|0.44444 228453|0.36111 228454|0.55556 228455|0.41667 228456|0.38889 228457|0.55556 228458|0.125 228459|0.73611 228460|0.47222 228461|0.73611 228462|0.66667 228463|0.61111 228464|0.52778 228465|0.61111 228466|0.5 228467|0.77778 228468|0.36111 228469|0.51389 228470|0.34722 228471|0.72222 228472|0.55556 228473|0.5 228474|0.18056 228475|0.75 228476|0.36111 228477|0.68056 228478|0.41667 228479|0.66667 228480|0.66667 228481|0.80556 228482|0.5 228483|0.81944 228484|0.38889 228485|0.31944 228486|0.63889 228487|0.30556 228488|0.27778 228489|0.33333 228490|0.54167 228491|0.38889 228492|0.33333 228493|0.40278 228494|0.77778 228495|0.38889 228496|0.58333 228497|0.77778 228498|0.52778 228499|0.5 228500|0.61111 228501|0.40278 228502|0.125 228503|0.94444 228504|0.5 228505|0.22222 228506|0.22222 228507|0.5 228508|0.66667 228509|0.63889 228510|0.66667 228511|0.055556 228512|0.125 228513|0.52778 228514|0.5 228515|0.5 228516|0.48611 228517|0.5 228518|0.5 228519|0.51389 228520|0.5 228521|0.16667 228522|0.48611 228523|0.48611 228524|0.5 228525|0.72222 228526|0.52778 228527|0.72222 228528|0.59722 228529|0.375 228530|0.5 228531|0.43056 228532|0.5 228533|0.44444 228534|0.56944 228535|0.68056 228536|0.11111 228537|0.069444 228538|0.15278 228539|0.27778 228540|0.19444 228541|0.75 228542|0.61111 228543|0.76389 228544|0.58333 228545|0.18056 228546|0.73611 228547|0.5 228548|0.375 228549|0.66667 228550|0.63889 228551|0.61111 228552|0.5 228553|0.45833 228554|0.55556 228555|0.52778 228556|0.375 228557|0.11111 228558|0.041667 228559|0.013889 228560|0.15278 228561|0.75 228562|0.84722 228563|0.79167 228564|0.70833 228565|0.86111 228566|0.81944 228567|0.73611 228568|0.75 228569|0.83333 228570|0.84722 228571|0.91667 228572|0.88889 228573|0.5 228574|0.29167 228575|0.47222 228576|0.5 228577|0.5 228578|0.48611 228579|0.26389 228580|0.5 228581|0.72222 228582|0.44444 228583|0.375 228584|0.44444 228585|0.72222 228586|0.25 228587|0.30556 228588|0.52778 228589|0.58333 228590|0.94444 228591|0.83333 228592|0.52778 228593|0.41667 228594|0.23611 228595|0.70833 228596|0.47222 228597|0.76389 228598|0.80556 228599|0.77778 228600|0.72222 228601|0.75 228602|0.66667 228603|0.72222 228604|0.55556 228605|0.63889 228606|0.72222 228607|0.47222 228608|0.40278 228609|0.5 228610|0.47222 228611|0.5 228612|0.5 228613|0.66667 228614|0.61111 228615|0.79167 228616|0.47222 228617|0.16667 228618|0.52778 228619|0.56944 228620|0.61111 228621|0.55556 228622|0.5 228623|0.25 228624|0.61111 228625|0.83333 228626|0.51389 228627|0.5 228628|0.5 228629|0.5 228630|0.5 228631|0.5 228632|0.5 228633|0.5 228634|0.5 228635|0.5 228636|0.5 228637|0.55556 228638|0.27778 228639|0.5 228640|0.375 228641|0.18056 228642|0.51389 228643|0.625 228644|0.875 228645|0.61111 228646|0.41667 228647|0.34722 228648|0.5 228649|0.5 228650|0.25 228651|0.72222 228652|0.66667 228653|0.44444 228654|0.52778 228655|0.73611 228656|0.5 228657|0.61111 228658|0.68056 228659|0.40278 228660|0.48611 228661|0.72222 228662|0.5 228663|0.29167 228664|0.19444 228665|0.5 228666|0.875 228667|0.5 228668|0.5 228669|0.5 228670|0.54167 228671|0.5 228672|0.18056 228673|0.54167 228674|0.23611 228675|0.36111 228676|0.16667 228677|0.61111 228678|0.54167 228679|0.45833 228680|0.18056 228681|0.69444 228682|0.66667 228683|0.59722 228684|0.83333 228685|0.5 228686|0.33333 228687|0.20833 228688|0.18056 228689|0.38889 228690|0.43056 228691|0.61111 228692|0.5 228693|0.27778 228694|0.5 228695|0.5 228696|0.5 228697|0.5 228698|0.41667 228699|0.5 228700|0.5 228701|0.61111 228702|0.5 228703|0.44444 228704|0.48611 228705|0.5 228706|0.54167 228707|0.58333 228708|0.47222 228709|0.54167 228710|0.59722 228711|0.33333 228712|0.44444 228713|0.38889 228714|0.5 228715|0.44444 228716|0.5 228717|0.44444 228718|0.22222 228719|0.25 228720|0.61111 228721|0.875 228722|0.52778 228723|0.5 228724|0.5 228725|0.25 228726|0.43056 228727|0.5 228728|0.47222 228729|0.5 228730|0.48611 228731|0.13889 228732|0.66667 228733|0.45833 228734|0.5 228735|0.26389 228736|0.125 228737|0.625 228738|0.81944 228739|0.5 228740|0.5 228741|0.5 228742|0.5 228743|0.20833 228744|0.47222 228745|0.41667 228746|0.61111 228747|0.77778 228748|0.83333 228749|0.63889 228750|0.63889 228751|0.5 228752|0.56944 228753|0.33333 228754|0.70833 228755|0.52778 228756|0.5 228757|0.5 228758|0.80556 228759|0.59722 228760|0.63889 228761|0.36111 228762|0.375 228763|0.33333 228764|0.38889 228765|0.34722 228766|0.34722 228767|0.5 228768|0.5 228769|0.5 228770|0.5 228771|0.93056 228772|0.83333 228773|0.73611 228774|0.51389 228775|0.79167 228776|0.83333 228777|0.94444 228778|0.33333 228779|0.41667 228780|0.88889 228781|0.94444 228782|0.88889 228783|0.94444 228784|0.48611 228785|0.41667 228786|0.54167 228787|0.70833 228788|0.81944 228789|0.65278 228790|0.84722 228791|0.77778 228792|0.61111 228793|0.61111 228794|0.68056 228795|0.625 228796|0.51389 228797|0.51389 228798|0.38889 228799|0.81944 228800|0.95833 228801|0.97222 228802|0.95833 228803|0.86111 228804|0.88889 228805|0.5 228806|0.41667 228807|0.44444 228808|0.45833 228809|0.38889 228810|0.19444 228811|0.22222 228812|0.875 228813|0.16667 228814|0.5 228815|0.20833 228816|0.5 228817|0.83333 228818|0.83333 228819|0.83333 228820|0.58333 228821|0.36111 228822|0.76389 228823|0.16667 228824|0.15278 228825|0.44444 228826|0.5 228827|0.5 228828|0.44444 228829|0.31944 228830|0.38889 228831|0.5 228832|0.5 228833|0.58333 228834|0.58333 228835|0.72222 228836|0.5 228837|0.5 228838|0.77778 228839|0.76389 228840|0.88889 228841|0.625 228842|0.5 228843|0.45833 228844|0.45833 228845|0.55556 228846|0.51389 228847|0.19444 228848|0.22222 228849|0.33333 228850|0.5 228851|0.58333 228852|0.5 228853|0.52778 228854|0.55556 228855|0.80556 228856|0.61111 228857|0.5 228858|0.48611 228859|0.44444 228860|0.72222 228861|0.65278 228862|0.15278 228863|0.18056 228864|0.83333 228865|0.77778 228866|0.55556 228867|0.68056 228868|0.5 228869|0.5 228870|0.5 228871|0.23611 228872|0.5 228873|0.70833 228874|0.5 228875|0.75 228876|0.76389 228877|0.73611 228878|0.73611 228879|0.5 228880|0.5 228881|0.38889 228882|0.61111 228883|0.5 228884|0.5 228885|0.66667 228886|0.52778 228887|0.083333 228888|0.5 228889|0.5 228890|0.5 228891|0.55556 228892|0.66667 228893|0.5 228894|0.5 228895|0.55556 228896|0.5 228897|0.5 228898|0.52778 228899|0.5 228900|0.48611 228901|0.5 228902|0.55556 228903|0.59722 228904|0.45833 228905|0.72222 228906|0.61111 228907|0.51389 228908|0.34722 228909|0.44444 228910|0.55556 228911|0.013889 228912|0.5 228913|0.69444 228914|0.19444 228915|0.72222 228916|0.19444 228917|0.44444 228918|0.68056 228919|0.5 228920|0.33333 228921|0.77778 228922|0.54167 228923|0.27778 228924|0.86111 228925|0.5 228926|0.375 228927|0.5 228928|0.59722 228929|0.48611 228930|0.5 228931|0.16667 228932|0.11111 228933|0.23611 228934|0.38889 228935|0.69444 228936|0.20833 228937|0.15278 228938|0.5 228939|0.55556 228940|0.77778 228941|0.70833 228942|0.48611 228943|0.61111 228944|0.5 228945|0.29167 228946|0.5 228947|0.55556 228948|0.30556 228949|0.44444 228950|0.48611 228951|0.5 228952|0.51389 228953|0.18056 228954|0.38889 228955|0.38889 228956|0.083333 228957|0.61111 228958|0.22222 228959|0.70833 228960|0.5 228961|0.5 228962|0.48611 228963|0.38889 228964|0.41667 228965|0.34722 228966|0.22222 228967|0.069444 228968|0.16667 228969|0.5 228970|0.45833 228971|0.5 228972|0.84722 228973|0.38889 228974|0.41667 228975|0.58333 228976|0.48611 228977|0.83333 228978|0.70833 228979|0.77778 228980|0.80556 228981|0.83333 228982|0.5 228983|0.5 228984|0.41667 228985|0.51389 228986|0.65278 228987|0.5 228988|0.15278 228989|0.61111 228990|0.125 228991|0.69444 228992|0.5 228993|0.5 228994|0.55556 228995|0.5 228996|0.83333 228997|0.36111 228998|0.61111 228999|0.47222 229000|0.79167 229001|0.72222 229002|0.30556 229003|0.18056 229004|0.15278 229005|0.5 229006|0.18056 229007|0.5 229008|0.5 229009|0.45833 229010|0.5 229011|0.375 229012|0.61111 229013|0.5 229014|0.73611 229015|0.30556 229016|0.5 229017|0.44444 229018|0.5 229019|0.625 229020|0.75 229021|0.48611 229022|0.069444 229023|0.083333 229024|0.013889 229025|0.61111 229026|0.54167 229027|0.5 229028|0.5 229029|0.5 229030|0.5 229031|0.55556 229032|0.43056 229033|0.26389 229034|0.56944 229035|0.5 229036|0.44444 229037|0.47222 229038|0.26389 229039|0.36111 229040|0.5 229041|0.40278 229042|0.30556 229043|0.45833 229044|0.80556 229045|0.5 229046|0.54167 229047|0.38889 229048|0.625 229049|0.54167 229050|0.55556 229051|0.5 229052|0.59722 229053|0.51389 229054|0.58333 229055|0.55556 229056|0.22222 229057|0.5 229058|0.48611 229059|0.40278 229060|0.5 229061|0.70833 229062|0.54167 229063|0.20833 229064|0.52778 229065|0.5 229066|0.29167 229067|0.33333 229068|0.25 229069|0.069444 229070|0.58333 229071|0.44444 229072|0.43056 229073|0.34722 229074|0.23611 229075|0.27778 229076|0.27778 229077|0.54167 229078|0.73611 229079|0.5 229080|0.625 229081|0.625 229082|0.5 229083|0.5 229084|0.27778 229085|0.13889 229086|0.84722 229087|0.34722 229088|0.55556 229089|0.63889 229090|0.13889 229091|0.51389 229092|0.52778 229093|0.5 229094|0.56944 229095|0.29167 229096|0.44444 229097|0.33333 229098|0.47222 229099|0.5 229100|0.5 229101|0.5 229102|0.5 229103|0.41667 229104|0.58333 229105|0.38889 229106|0.083333 229107|0.40278 229108|0.26389 229109|0.125 229110|0.25 229111|0.16667 229112|0.097222 229113|0.76389 229114|0.73611 229115|0.83333 229116|0.5 229117|0.45833 229118|0.19444 229119|0.13889 229120|0.25 229121|0.44444 229122|0.75 229123|0.5 229124|0.5 229125|0.5 229126|0.5 229127|0.90278 229128|0.5 229129|0.5 229130|0.5 229131|0.51389 229132|0.47222 229133|0.5 229134|0.58333 229135|0.54167 229136|0.47222 229137|0.34722 229138|0.625 229139|0.47222 229140|0.48611 229141|0.56944 229142|0.45833 229143|0.22222 229144|0.22222 229145|0.22222 229146|0.61111 229147|0.52778 229148|0.54167 229149|0.20833 229150|0.44444 229151|0.83333 229152|0.875 229153|0.27778 229154|0.41667 229155|0.125 229156|0.19444 229157|0.33333 229158|0.34722 229159|0.43056 229160|0.27778 229161|0.55556 229162|0.38889 229163|0.33333 229164|0.66667 229165|0.22222 229166|0.43056 229167|0.44444 229168|0.81944 229169|0.44444 229170|0.38889 229171|0.52778 229172|0.36111 229173|0.48611 229174|0.72222 229175|0.41667 229176|0.47222 229177|0.19444 229178|0.38889 229179|0.66667 229180|0.41667 229181|0.5 229182|0.44444 229183|0.79167 229184|0.75 229185|0.75 229186|0.55556 229187|0.5 229188|0.54167 229189|0.5 229190|0.5 229191|0.5 229192|0.5 229193|0.15278 229194|0.47222 229195|0.38889 229196|0.5 229197|0.34722 229198|0.48611 229199|0.33333 229200|0.11111 229201|0.5 229202|0.51389 229203|0.75 229204|0.55556 229205|0.68056 229206|0.31944 229207|0.55556 229208|0.5 229209|0.27778 229210|0.45833 229211|0.5 229212|0.75 229213|0.5 229214|0.5 229215|0.125 229216|0.30556 229217|0.55556 229218|0.55556 229219|0.63889 229220|0.5 229221|0.58333 229222|0.73611 229223|0.5 229224|0.55556 229225|0.56944 229226|0.94444 229227|0.44444 229228|0.5 229229|0.63889 229230|0.5 229231|0.66667 229232|0.69444 229233|0.31944 229234|0.29167 229235|0.44444 229236|0.65278 229237|0.75 229238|0.81944 229239|0.86111 229240|0.84722 229241|0.66667 229242|0.70833 229243|0.79167 229244|0.23611 229245|0.083333 229246|0.5 229247|0.097222 229248|0.34722 229249|0.72222 229250|0.29167 229251|0.22222 229252|0.083333 229253|0.5 229254|0.55556 229255|0.5 229256|0.44444 229257|0.55556 229258|0.18056 229259|0.41667 229260|0.625 229261|0.5 229262|0.5 229263|0.5 229264|0.47222 229265|0.41667 229266|0.29167 229267|0.41667 229268|0.625 229269|0.625 229270|0.5 229271|0.45833 229272|0.25 229273|0.5 229274|0.36111 229275|0.25 229276|0.22222 229277|0.15278 229278|0.26389 229279|0.26389 229280|0.125 229281|0.19444 229282|0.34722 229283|0.66667 229284|0.375 229285|0.5 229286|0.47222 229287|0.43056 229288|0.66667 229289|0.43056 229290|0.36111 229291|0.22222 229292|0.33333 229293|0.38889 229294|0.22222 229295|0.44444 229296|0.73611 229297|0.69444 229298|0.88889 229299|0.61111 229300|0.26389 229301|0.29167 229302|0.47222 229303|0.81944 229304|0.44444 229305|0.58333 229306|0.25 229307|0.68056 229308|0.63889 229309|0.61111 229310|0.52778 229311|0.55556 229312|0.38889 229313|0.54167 229314|0.69444 229315|0.13889 229316|0.68056 229317|0.44444 229318|0.5 229319|0.18056 229320|0.48611 229321|0.55556 229322|0.375 229323|0.56944 229324|0.38889 229325|0.11111 229326|0.15278 229327|0.25 229328|0.47222 229329|0.47222 229330|0.5 229331|0.5 229332|0.47222 229333|0.44444 229334|0.52778 229335|0.5 229336|0.5 229337|0.48611 229338|0.38889 229339|0.375 229340|0.43056 229341|0.47222 229342|0.70833 229343|0.70833 229344|0.5 229345|0.44444 229346|0.47222 229347|0.38889 229348|0.52778 229349|0.55556 229350|0.55556 229351|0.29167 229352|0.36111 229353|0.66667 229354|0.61111 229355|0.52778 229356|0.5 229357|0.54167 229358|0.44444 229359|0.63889 229360|0.43056 229361|0.5 229362|0.83333 229363|0.77778 229364|0.47222 229365|0.83333 229366|0.83333 229367|0.77778 229368|0.77778 229369|0.55556 229370|0.77778 229371|0.30556 229372|0.27778 229373|0.33333 229374|0.38889 229375|0.48611 229376|0.48611 229377|0.40278 229378|0.44444 229379|0.40278 229380|0.38889 229381|0.84722 229382|0.68056 229383|0.68056 229384|0.33333 229385|0.40278 229386|0.48611 229387|0.5 229388|0.77778 229389|0.44444 229390|0.55556 229391|0.44444 229392|0.19444 229393|0.63889 229394|0.66667 229395|0.5 229396|0.5 229397|0.083333 229398|0.16667 229399|0.41667 229400|0.55556 229401|0.55556 229402|0.59722 229403|0.5 229404|0.61111 229405|0.65278 229406|0.5 229407|0.52778 229408|0.43056 229409|0.375 229410|0.73611 229411|0.38889 229412|0.5 229413|0.33333 229414|0.33333 229415|0.5 229416|0.44444 229417|0.125 229418|0.30556 229419|0.40278 229420|0.31944 229421|0.125 229422|0.77778 229423|0.55556 229424|0.61111 229425|0.5 229426|0.40278 229427|0.5 229428|0.625 229429|0.65278 229430|0.38889 229431|0.125 229432|0.40278 229433|0.59722 229434|0.13889 229435|0.54167 229436|0.75 229437|0.29167 229438|0.375 229439|0.56944 229440|0.5 229441|0.81944 229442|0.88889 229443|0.5 229444|0.5 229445|0.84722 229446|0.76389 229447|0.38889 229448|0.80556 229449|0.51389 229450|0.23611 229451|0.26389 229452|0.75 229453|0.875 229454|0.68056 229455|0.5 229456|0.72222 229457|0.84722 229458|0.55556 229459|0.625 229460|0.29167 229461|0.44444 229462|0.45833 229463|0.81944 229464|0.45833 229465|0.5 229466|0.72222 229467|0.75 229468|0.55556 229469|0.70833 229470|0.75 229471|0.56944 229472|0.5 229473|0.65278 229474|0.61111 229475|0.58333 229476|0.52778 229477|0.86111 229478|0.16667 229479|0.77778 229480|0.70833 229481|0.55556 229482|0.5 229483|0.86111 229484|0.81944 229485|0.47222 229486|0.31944 229487|0.77778 229488|0.5 229489|0.5 229490|0.70833 229491|0.041667 229492|0.11111 229493|0.055556 229494|0.33333 229495|0.23611 229496|0.18056 229497|0.55556 229498|0.5 229499|0.66667 229500|0.5 229501|0.68056 229502|0.5 229503|0.055556 229504|0.55556 229505|0.58333 229506|0.45833 229507|0.55556 229508|0.38889 229509|0.66667 229510|0.625 229511|0.18056 229512|0.16667 229513|0.91667 229514|0.91667 229515|0.65278 229516|0.68056 229517|0.25 229518|0.54167 229519|0.34722 229520|0.16667 229521|0.52778 229522|0.055556 229523|0.5 229524|0.58333 229525|0.59722 229526|0.76389 229527|0.5 229528|0.097222 229529|0.5 229530|0.33333 229531|0.55556 229532|0.5 229533|0.33333 229534|0.68056 229535|0.58333 229536|0.51389 229537|0.33333 229538|0.44444 229539|0.48611 229540|0.40278 229541|0.45833 229542|0.70833 229543|0.27778 229544|0.29167 229545|0.33333 229546|0.5 229547|0.5 229548|0.5 229549|0.125 229550|0.5 229551|0.5 229552|0.5 229553|0.5 229554|0.5 229555|0.5 229556|0.5 229557|0.5 229558|0.5 229559|0.51389 229560|0.5 229561|0.55556 229562|0.5 229563|0.5 229564|0.5 229565|0.56944 229566|0.5 229567|0.5 229568|0.51389 229569|0.5 229570|0.55556 229571|0.54167 229572|0.22222 229573|0.625 229574|0.36111 229575|0.38889 229576|0.66667 229577|0.5 229578|0.47222 229579|0.76389 229580|0.26389 229581|0.5 229582|0.47222 229583|0.54167 229584|0.5 229585|0.31944 229586|0.16667 229587|0.5 229588|0.5 229589|0.30556 229590|0.5 229591|0.65278 229592|0.56944 229593|0.72222 229594|0.375 229595|0.11111 229596|0.51389 229597|0.19444 229598|0.58333 229599|0.5 229600|0.54167 229601|0.55556 229602|0.5 229603|0.5 229604|0.18056 229605|0.51389 229606|0.41667 229607|0.23611 229608|0.027778 229609|0.27778 229610|0.44444 229611|0.34722 229612|0.30556 229613|0.11111 229614|0.80556 229615|0.19444 229616|0.13889 229617|0.47222 229618|0.5 229619|0.16667 229620|0.5 229621|0.83333 229622|0.055556 229623|0.52778 229624|0.76389 229625|0.19444 229626|0.44444 229627|0.30556 229628|0.59722 229629|0.5 229630|0.875 229631|0.5 229632|0.5 229633|0.5 229634|0.5 229635|0.45833 229636|0.69444 229637|0.72222 229638|0.5 229639|0.65278 229640|0.72222 229641|0.80556 229642|0.38889 229643|0.59722 229644|0.19444 229645|0.61111 229646|0.625 229647|0.33333 229648|0.375 229649|0.40278 229650|0.5 229651|0.26389 229652|0.40278 229653|0.59722 229654|0.55556 229655|0.91667 229656|0.58333 229657|0.16667 229658|0.83333 229659|0.91667 229660|0.30556 229661|0.38889 229662|0.33333 229663|0.66667 229664|0.55556 229665|0.40278 229666|0.27778 229667|0.44444 229668|0.38889 229669|0.5 229670|0.56944 229671|0.44444 229672|0.56944 229673|0.56944 229674|0.70833 229675|0.55556 229676|0.22222 229677|0.44444 229678|0.48611 229679|0.5 229680|0.11111 229681|0.069444 229682|0.5 229683|0.625 229684|0.56944 229685|0.45833 229686|0.26389 229687|0.36111 229688|0.33333 229689|0.34722 229690|0.45833 229691|0.27778 229692|0.097222 229693|0.125 229694|0.43056 229695|0.65278 229696|0.5 229697|0.5 229698|0.84722 229699|0.77778 229700|0.84722 229701|0.38889 229702|0.55556 229703|0.23611 229704|0.27778 229705|0.55556 229706|0.5 229707|0.33333 229708|0.5 229709|0.66667 229710|0.38889 229711|0.47222 229712|0.36111 229713|0.27778 229714|0.41667 229715|0.19444 229716|0.61111 229717|0.34722 229718|0.36111 229719|0.22222 229720|0.73611 229721|0.55556 229722|0.38889 229723|0.48611 229724|0.73611 229725|0.48611 229726|0.56944 229727|0.88889 229728|0.34722 229729|0.30556 229730|0.63889 229731|0.72222 229732|0.58333 229733|0.61111 229734|0.63889 229735|0.56944 229736|0.48611 229737|0.51389 229738|0.41667 229739|0.41667 229740|0.61111 229741|0.38889 229742|0.5 229743|0.5 229744|0.5 229745|0.5 229746|0.5 229747|0.55556 229748|0.52778 229749|0.66667 229750|0.22222 229751|0.30556 229752|0.68056 229753|0.5 229754|0.51389 229755|0.5 229756|0.44444 229757|0.44444 229758|0.34722 229759|0.51389 229760|0.38889 229761|0.84722 229762|0.69444 229763|0.52778 229764|0.43056 229765|0.65278 229766|0.61111 229767|0.66667 229768|0.59722 229769|0.66667 229770|0.48611 229771|0.5 229772|0.75 229773|0.58333 229774|0.73611 229775|0.5 229776|0.55556 229777|0.5 229778|0.51389 229779|0.5 229780|0.56944 229781|0.45833 229782|0.63889 229783|0.69444 229784|0.58333 229785|0.75 229786|0.15278 229787|0.61111 229788|0.625 229789|0.79167 229790|0.61111 229791|0.5 229792|0.5 229793|0.5 229794|0.45833 229795|0.5 229796|0.66667 229797|0.40278 229798|0.5 229799|0.11111 229800|0.30556 229801|0.5 229802|0.31944 229803|0.23611 229804|0.23611 229805|0.16667 229806|0.55556 229807|0.38889 229808|0.63889 229809|0.51389 229810|0.33333 229811|0.66667 229812|0.44444 229813|0.5 229814|0.5 229815|0.51389 229816|0.19444 229817|0.22222 229818|0.875 229819|0.5 229820|0.5 229821|0.61111 229822|0.31944 229823|0.44444 229824|0.5 229825|0.5 229826|0.51389 229827|0.5 229828|0.59722 229829|0.66667 229830|0.54167 229831|0.48611 229832|0.66667 229833|0.40278 229834|0.5 229835|0.51389 229836|0.61111 229837|0.56944 229838|0.56944 229839|0.61111 229840|0.73611 229841|0.83333 229842|0.81944 229843|0.84722 229844|0.65278 229845|0.20833 229846|0.22222 229847|0.15278 229848|0.13889 229849|0.23611 229850|0.26389 229851|0.29167 229852|0.15278 229853|0.25 229854|0.56944 229855|0.55556 229856|0.88889 229857|0.5 229858|0.5 229859|0.5 229860|0.59722 229861|0.51389 229862|0.29167 229863|0.18056 229864|0.16667 229865|0.38889 229866|0.5 229867|0.5 229868|0.56944 229869|0.61111 229870|0.55556 229871|0.44444 229872|0.58333 229873|0.54167 229874|0.15278 229875|0.375 229876|0.30556 229877|0.5 229878|0.5 229879|0.52778 229880|0.52778 229881|0.52778 229882|0.5 229883|0.41667 229884|0.55556 229885|0.66667 229886|0.69444 229887|0.5 229888|0.76389 229889|0.48611 229890|0.93056 229891|0.625 229892|0.5 229893|0.13889 229894|0.5 229895|0.47222 229896|0.5 229897|0.41667 229898|0.55556 229899|0.33333 229900|0.51389 229901|0.19444 229902|0.26389 229903|0.375 229904|0.44444 229905|0.52778 229906|0.61111 229907|0.58333 229908|0.36111 229909|0.26389 229910|0.34722 229911|0.069444 229912|0.013889 229913|0.54167 229914|0.31944 229915|0.38889 229916|0.68056 229917|0.94444 229918|0.80556 229919|0.27778 229920|0.26389 229921|0.16667 229922|0.5 229923|0.44444 229924|0.26389 229925|0.55556 229926|0.63889 229927|0.83333 229928|0.61111 229929|0.48611 229930|0.5 229931|0.38889 229932|0.81944 229933|0.84722 229934|0.56944 229935|0.88889 229936|0.80556 229937|0.69444 229938|0.80556 229939|0.54167 229940|0.5 229941|0.55556 229942|0.22222 229943|0.33333 229944|0.55556 229945|0.38889 229946|0.38889 229947|0.5 229948|0.5 229949|0.47222 229950|0.26389 229951|0.80556 229952|0.5 229953|0.56944 229954|0.30556 229955|0.5 229956|0.86111 229957|0.63889 229958|0.36111 229959|0.44444 229960|0.47222 229961|0.069444 229962|0.5 229963|0.45833 229964|0.59722 229965|0.58333 229966|0.25 229967|0.22222 229968|0.75 229969|0.5 229970|0.5 229971|0.31944 229972|0.58333 229973|0.80556 229974|0.70833 229975|0.61111 229976|0.51389 229977|0.45833 229978|0.38889 229979|0.40278 229980|0.44444 229981|0.44444 229982|0.76389 229983|0.58333 229984|0.41667 229985|0.44444 229986|0.19444 229987|0.26389 229988|0.40278 229989|0.083333 229990|0.44444 229991|0.38889 229992|0.5 229993|0.47222 229994|0.48611 229995|0.40278 229996|0.83333 229997|0.65278 229998|0.36111 229999|0.5 230000|0.5 230001|0.5 230002|0.48611 230003|0.055556 230004|0.51389 230005|0.51389 230006|0.63889 230007|0.43056 230008|0.5 230009|0.76389 230010|0.61111 230011|0.5 230012|0.5 230013|0.61111 230014|0.52778 230015|0.88889 230016|0.88889 230017|0.88889 230018|0.55556 230019|0.77778 230020|0.81944 230021|0.88889 230022|0.15278 230023|0.47222 230024|0.5 230025|0.25 230026|0.25 230027|0.48611 230028|0.5 230029|0.40278 230030|0.61111 230031|0.61111 230032|0.45833 230033|0.59722 230034|0.75 230035|0.84722 230036|0.66667 230037|0.66667 230038|0.69444 230039|0.84722 230040|0.5 230041|0.55556 230042|0.5 230043|0.5 230044|0.51389 230045|0.5 230046|0.29167 230047|0.61111 230048|0.19444 230049|0.25 230050|0.38889 230051|0.61111 230052|0.23611 230053|0.5 230054|0.125 230055|0.52778 230056|0.55556 230057|0.625 230058|0.52778 230059|0.5 230060|0.5 230061|0.47222 230062|0.47222 230063|0.51389 230064|0.5 230065|0.5 230066|0.33333 230067|0.36111 230068|0.66667 230069|0.625 230070|0.63889 230071|0.68056 230072|0.88889 230073|0.54167 230074|0.40278 230075|0.34722 230076|0.54167 230077|0.27778 230078|0.34722 230079|0.36111 230080|0.5 230081|0.625 230082|0.45833 230083|0.51389 230084|0.54167 230085|0.59722 230086|0.5 230087|0.36111 230088|0.5 230089|0.48611 230090|0.75 230091|0.48611 230092|0.56944 230093|0.55556 230094|0.58333 230095|0.5 230096|0.45833 230097|0.5 230098|0.51389 230099|0.66667 230100|0.59722 230101|0.44444 230102|0.11111 230103|0.5 230104|0.33333 230105|0.5 230106|0.72222 230107|0.63889 230108|0.5 230109|0.44444 230110|0.5 230111|0.5 230112|0.36111 230113|0.75 230114|0.15278 230115|0.5 230116|0.59722 230117|0.81944 230118|0.66667 230119|0.29167 230120|0.22222 230121|0.61111 230122|0.13889 230123|0.5 230124|0.52778 230125|0.41667 230126|0.5 230127|0.72222 230128|0.31944 230129|0.80556 230130|0.79167 230131|0.5 230132|0.625 230133|0.83333 230134|0.86111 230135|0.91667 230136|0.44444 230137|0.44444 230138|0.48611 230139|0.625 230140|0.81944 230141|0.83333 230142|0.76389 230143|0.75 230144|0.72222 230145|0.54167 230146|0.44444 230147|0.5 230148|0.61111 230149|0.75 230150|0.75 230151|0.66667 230152|0.48611 230153|0.38889 230154|0.5 230155|0.44444 230156|0.59722 230157|0.16667 230158|0.55556 230159|0.5 230160|0.44444 230161|0.5 230162|0.54167 230163|0.5 230164|0.63889 230165|0.33333 230166|0.41667 230167|0.5 230168|0.36111 230169|0.56944 230170|0.94444 230171|0.44444 230172|0.44444 230173|0.47222 230174|0.5 230175|0.80556 230176|0.875 230177|0.79167 230178|0.80556 230179|0.22222 230180|0.36111 230181|0.56944 230182|0.44444 230183|0.44444 230184|0.25 230185|0.5 230186|0.5 230187|0.63889 230188|0.44444 230189|0.5 230190|0.34722 230191|0.375 230192|0.31944 230193|0.55556 230194|0.5 230195|0.51389 230196|0.5 230197|0.5 230198|0.27778 230199|0.26389 230200|0.33333 230201|0.29167 230202|0.55556 230203|0.26389 230204|0.33333 230205|0.5 230206|0.75 230207|0.38889 230208|0.34722 230209|0.30556 230210|0.18056 230211|0.38889 230212|0.5 230213|0.26389 230214|0.40278 230215|0.34722 230216|0.55556 230217|0.40278 230218|0.33333 230219|0.23611 230220|0.5 230221|0.625 230222|0.61111 230223|0.43056 230224|0.38889 230225|0.5 230226|0.33333 230227|0.33333 230228|0.48611 230229|0.5 230230|0.55556 230231|0.5 230232|0.5 230233|0.5 230234|0.54167 230235|0.5 230236|0.5 230237|0.5 230238|0.52778 230239|0.76389 230240|0.79167 230241|0.51389 230242|0.51389 230243|0.5 230244|0.70833 230245|0.5 230246|0.5 230247|0.5 230248|0.66667 230249|0.65278 230250|0.20833 230251|0.40278 230252|0.44444 230253|0.51389 230254|0.69444 230255|0.38889 230256|0.40278 230257|0.33333 230258|0.56944 230259|0.65278 230260|0.38889 230261|0.23611 230262|0.29167 230263|0.22222 230264|0.11111 230265|0.31944 230266|0.41667 230267|0.23611 230268|0.36111 230269|0.375 230270|0.23611 230271|0.20833 230272|0.79167 230273|0.59722 230274|0.65278 230275|0.83333 230276|0.27778 230277|0.70833 230278|0.69444 230279|0.61111 230280|0.5 230281|0.88889 230282|0.097222 230283|0.5 230284|0.55556 230285|0.69444 230286|0.72222 230287|0.83333 230288|0.5 230289|0.47222 230290|0.45833 230291|0.44444 230292|0.47222 230293|0.5 230294|0.43056 230295|0.79167 230296|0.40278 230297|0.36111 230298|0.65278 230299|0.55556 230300|0.069444 230301|0.27778 230302|0.40278 230303|0.375 230304|0.26389 230305|0.41667 230306|0.23611 230307|0.29167 230308|0.15278 230309|0.125 230310|0.27778 230311|0.25 230312|0.40278 230313|0.38889 230314|0.72222 230315|0.81944 230316|0.5 230317|0.5 230318|0.5 230319|0.5 230320|0.34722 230321|0.54167 230322|0.625 230323|0.375 230324|0.5 230325|0.5 230326|0.5 230327|0.45833 230328|0.5 230329|0.38889 230330|0.5 230331|0.61111 230332|0.44444 230333|0.73611 230334|0.68056 230335|0.58333 230336|1 230337|0.79167 230338|0.5 230339|0.56944 230340|0.51389 230341|0.40278 230342|0.48611 230343|0.80556 230344|0.72222 230345|0.47222 230346|0.44444 230347|0.76389 230348|0.5 230349|0.36111 230350|0.36111 230351|0.27778 230352|0.23611 230353|0.40278 230354|0.19444 230355|0.33333 230356|0.30556 230357|0.43056 230358|0.22222 230359|0.5 230360|0.36111 230361|0.375 230362|0.22222 230363|0.15278 230364|0.16667 230365|0.375 230366|0.23611 230367|0.27778 230368|0.30556 230369|0.22222 230370|0.18056 230371|0.40278 230372|0.29167 230373|0.55556 230374|0.65278 230375|0.69444 230376|0.79167 230377|0.22222 230378|0.18056 230379|0.33333 230380|0.5 230381|0.30556 230382|0.27778 230383|0.43056 230384|0.47222 230385|0.44444 230386|0.76389 230387|0.44444 230388|0.45833 230389|0.61111 230390|0.61111 230391|0.41667 230392|0.44444 230393|0.5 230394|0.22222 230395|0.27778 230396|0.31944 230397|0.33333 230398|0.27778 230399|0.15278 230400|0.20833 230401|0.66667 230402|0.069444 230403|0.61111 230404|0.69444 230405|0.45833 230406|0.56944 230407|0.5 230408|0.47222 230409|0.65278 230410|0.44444 230411|0.33333 230412|0.38889 230413|0.5 230414|0.055556 230415|0.41667 230416|0.19444 230417|0.33333 230418|0.19444 230419|0.40278 230420|0.16667 230421|0.48611 230422|0.5 230423|0.16667 230424|0.48611 230425|0.55556 230426|0.61111 230427|0.38889 230428|0.30556 230429|0.25 230430|0.22222 230431|0.5 230432|0.43056 230433|0.16667 230434|0.055556 230435|0.69444 230436|0.68056 230437|0.77778 230438|0.20833 230439|0.13889 230440|0.19444 230441|0.31944 230442|0.22222 230443|0.19444 230444|0.16667 230445|0.15278 230446|0.16667 230447|0.069444 230448|0.125 230449|0.055556 230450|0.069444 230451|0.20833 230452|0.18056 230453|0.19444 230454|0.041667 230455|0.34722 230456|0.25 230457|0.29167 230458|0.18056 230459|0.61111 230460|0.5 230461|0.5 230462|0.25 230463|0.5 230464|0.5 230465|0.58333 230466|0.65278 230467|0.5 230468|0.55556 230469|0.41667 230470|0.68056 230471|0.625 230472|0.5 230473|0.61111 230474|0.45833 230475|0.48611 230476|0.5 230477|0.61111 230478|0.68056 230479|0.5 230480|0.20833 230481|0.66667 230482|0.19444 230483|0.86111 230484|0.47222 230485|0.38889 230486|0.66667 230487|0.77778 230488|0.5 230489|0.59722 230490|0.5 230491|0.59722 230492|0.47222 230493|0.44444 230494|0.31944 230495|0.38889 230496|0.31944 230497|0.45833 230498|0.45833 230499|0.11111 230500|0.61111 230501|0.625 230502|0.18056 230503|0.77778 230504|0.66667 230505|0.22222 230506|0.86111 230507|0.69444 230508|0.51389 230509|0.66667 230510|0.83333 230511|0.5 230512|0.34722 230513|0.33333 230514|0.30556 230515|0.29167 230516|0.13889 230517|0.31944 230518|0.5 230519|0.5 230520|0.59722 230521|0.84722 230522|0.5 230523|0.625 230524|0.58333 230525|0.56944 230526|0.40278 230527|0.83333 230528|0.77778 230529|0.76389 230530|0.83333 230531|0.77778 230532|0.73611 230533|0.44444 230534|0.20833 230535|0.375 230536|0.625 230537|0.76389 230538|0.88889 230539|0.63889 230540|0.72222 230541|0.55556 230542|0.66667 230543|0.73611 230544|0.77778 230545|0.66667 230546|0.83333 230547|0.83333 230548|0.5 230549|0.76389 230550|0.80556 230551|0.65278 230552|0.76389 230553|0.56944 230554|0.73611 230555|0.38889 230556|0.69444 230557|0.61111 230558|0.45833 230559|0.625 230560|0.56944 230561|0.61111 230562|0.29167 230563|0.86111 230564|0.69444 230565|0.75 230566|0.70833 230567|0.5 230568|0.58333 230569|0.76389 230570|0.70833 230571|0.5 230572|0.69444 230573|0.20833 230574|0.125 230575|0.45833 230576|0.77778 230577|0.45833 230578|0.58333 230579|0.41667 230580|0.27778 230581|0.5 230582|0.375 230583|0.77778 230584|0.55556 230585|0.44444 230586|0.5 230587|0.25 230588|0.47222 230589|0.45833 230590|0.75 230591|0.5 230592|0.5 230593|0.36111 230594|0.76389 230595|0.5 230596|0.52778 230597|0.52778 230598|0.61111 230599|0.81944 230600|0.68056 230601|0.5 230602|0.5 230603|0.5 230604|0.45833 230605|0.61111 230606|0.83333 230607|0.5 230608|0.27778 230609|0.083333 230610|0.54167 230611|0.43056 230612|0.69444 230613|0.55556 230614|0.55556 230615|0.56944 230616|0.5 230617|0.47222 230618|0.27778 230619|0.5 230620|0.91667 230621|0.5 230622|0.44444 230623|0.41667 230624|0.33333 230625|0.61111 230626|0.34722 230627|0.125 230628|0.22222 230629|0.40278 230630|0.5 230631|0.45833 230632|0.16667 230633|0.27778 230634|0.58333 230635|0.16667 230636|0.5 230637|0.5 230638|0.5 230639|0.72222 230640|0.33333 230641|0.47222 230642|0.55556 230643|0.65278 230644|0.5 230645|0.58333 230646|0.52778 230647|0.66667 230648|0.16667 230649|0.55556 230650|0.22222 230651|0.52778 230652|0.97222 230653|0.81944 230654|0.84722 230655|0.94444 230656|0.72222 230657|0.5 230658|0.30556 230659|0.33333 230660|0.69444 230661|0.33333 230662|0.5 230663|0.65278 230664|0.84722 230665|0.77778 230666|0.31944 230667|0.375 230668|0.375 230669|0.5 230670|0.55556 230671|0.5 230672|0.55556 230673|0.5 230674|0.375 230675|0.29167 230676|0.72222 230677|0.38889 230678|0.48611 230679|0.75 230680|0.41667 230681|0.375 230682|0.22222 230683|0.47222 230684|0.48611 230685|0.41667 230686|0.56944 230687|0.30556 230688|0.33333 230689|0.47222 230690|0.61111 230691|0.56944 230692|0.45833 230693|0.70833 230694|0.45833 230695|0.59722 230696|0.125 230697|0.29167 230698|0.54167 230699|0.5 230700|0.5 230701|0.5 230702|0.30556 230703|0.26389 230704|0.125 230705|0.041667 230706|0.23611 230707|0.55556 230708|0.11111 230709|0.16667 230710|0.25 230711|0.33333 230712|0.27778 230713|0.16667 230714|0.18056 230715|0.13889 230716|0.63889 230717|0.72222 230718|0.5 230719|0.55556 230720|0.55556 230721|0.5 230722|0.5 230723|0.56944 230724|0.55556 230725|0.83333 230726|0.5 230727|0.55556 230728|0.79167 230729|0.61111 230730|0.41667 230731|0.48611 230732|0.56944 230733|0.59722 230734|0.70833 230735|0.72222 230736|0.77778 230737|0.90278 230738|0.80556 230739|0.5 230740|0.375 230741|0.43056 230742|0.625 230743|0.55556 230744|0.41667 230745|0.5 230746|0.72222 230747|0.55556 230748|0.86111 230749|0.86111 230750|0.27778 230751|0.27778 230752|0.31944 230753|0.43056 230754|0.5 230755|0.44444 230756|0.58333 230757|0.26389 230758|0.5 230759|0.77778 230760|0.41667 230761|0.65278 230762|0.79167 230763|0.31944 230764|0.25 230765|0.18056 230766|0.16667 230767|0.48611 230768|0.41667 230769|0.5 230770|0.19444 230771|0.27778 230772|0.375 230773|0.43056 230774|0.5 230775|0.5 230776|0.36111 230777|0.055556 230778|0.48611 230779|0.5 230780|0.5 230781|0.59722 230782|0.5 230783|0.52778 230784|0.26389 230785|0.75 230786|0.47222 230787|0.55556 230788|0.48611 230789|0.55556 230790|0.47222 230791|0.43056 230792|0.59722 230793|0.5 230794|0.5 230795|0.5 230796|0.5 230797|0.65278 230798|0.5 230799|0.5 230800|0.5 230801|0.63889 230802|0.70833 230803|0.66667 230804|0.55556 230805|0.26389 230806|0.13889 230807|0.55556 230808|0.69444 230809|0.625 230810|0.5 230811|0.63889 230812|0.5 230813|0.55556 230814|0.45833 230815|0.44444 230816|0.40278 230817|0.56944 230818|0.45833 230819|0.625 230820|0.27778 230821|0.5 230822|0.52778 230823|0.5 230824|0.55556 230825|0.70833 230826|0.69444 230827|0.73611 230828|0.5 230829|0.55556 230830|0.31944 230831|0.041667 230832|0.31944 230833|0.68056 230834|0.20833 230835|0.375 230836|0.44444 230837|0.52778 230838|0.5 230839|0.5 230840|0.95833 230841|0.84722 230842|0.77778 230843|0.83333 230844|0.63889 230845|0.5 230846|0.5 230847|0.48611 230848|0.875 230849|0.30556 230850|0.125 230851|0.15278 230852|0.38889 230853|0.36111 230854|0.33333 230855|0.30556 230856|0.52778 230857|0.51389 230858|0.52778 230859|0.61111 230860|0.51389 230861|0.61111 230862|0.51389 230863|0.52778 230864|0.40278 230865|0.55556 230866|0.5 230867|0.51389 230868|0.61111 230869|0.33333 230870|0.44444 230871|0.33333 230872|0.125 230873|0.19444 230874|0.16667 230875|0.45833 230876|0.25 230877|0.31944 230878|0.083333 230879|0.055556 230880|0.5 230881|0.59722 230882|0.72222 230883|0.72222 230884|0.5 230885|0.40278 230886|0.5 230887|0.5 230888|0.55556 230889|0.5 230890|0.5 230891|0.5 230892|0.5 230893|0.5 230894|0.51389 230895|0.51389 230896|0.5 230897|0.29167 230898|0.5 230899|0.45833 230900|0.61111 230901|0.11111 230902|0.5 230903|0.56944 230904|0.5 230905|0.5 230906|0.5 230907|0.5 230908|0.75 230909|0.5 230910|0.44444 230911|0.38889 230912|0.31944 230913|0.30556 230914|0.5 230915|0.5 230916|0.30556 230917|0.5 230918|0.65278 230919|0.5 230920|0.48611 230921|0.30556 230922|0.5 230923|0.5 230924|0.45833 230925|0.44444 230926|0.73611 230927|0.5 230928|0.56944 230929|0.66667 230930|0.44444 230931|0.875 230932|0.5 230933|0.33333 230934|0.77778 230935|0.5 230936|0.44444 230937|0.44444 230938|0.44444 230939|0.51389 230940|0.5 230941|0.5 230942|0.22222 230943|0.33333 230944|0.5 230945|0.5 230946|0.125 230947|0.5 230948|0.70833 230949|0.80556 230950|0.48611 230951|0.48611 230952|0.38889 230953|0.125 230954|0.22222 230955|0.52778 230956|0.56944 230957|0.54167 230958|0.5 230959|0.41667 230960|0.5 230961|0.55556 230962|0.20833 230963|0.41667 230964|0.48611 230965|0.40278 230966|0.38889 230967|0.69444 230968|0.66667 230969|0.68056 230970|0.40278 230971|0.51389 230972|0.5 230973|0.44444 230974|0.25 230975|0.45833 230976|0.5 230977|0.34722 230978|0.34722 230979|0.27778 230980|0.55556 230981|0.30556 230982|0.44444 230983|0.52778 230984|0.47222 230985|0.40278 230986|0.36111 230987|0.26389 230988|0.44444 230989|0.44444 230990|0.58333 230991|0.5 230992|0.27778 230993|0.51389 230994|0.63889 230995|0.66667 230996|0.77778 230997|0.36111 230998|0.15278 230999|0.33333 231000|0.5 231001|0.59722 231002|0.5 231003|0.625 231004|0.5 231005|0.47222 231006|0.5 231007|0.5 231008|0.5 231009|0.55556 231010|0.66667 231011|0.63889 231012|0.31944 231013|0.61111 231014|0.61111 231015|0.5 231016|0.38889 231017|0.5 231018|0.5 231019|0.31944 231020|0.41667 231021|0.5 231022|0.44444 231023|0.55556 231024|0.66667 231025|0.68056 231026|0.76389 231027|0.69444 231028|0.625 231029|0.52778 231030|0.5 231031|0.5 231032|0.5 231033|0.51389 231034|0.61111 231035|0.25 231036|0.11111 231037|0.5 231038|0.77778 231039|0.63889 231040|0.18056 231041|0.5 231042|0.13889 231043|0.70833 231044|0.30556 231045|0.5 231046|0.61111 231047|0.5 231048|0.55556 231049|0.54167 231050|0.5 231051|0.16667 231052|0.47222 231053|0.38889 231054|0.56944 231055|0.44444 231056|0.16667 231057|0.55556 231058|0.56944 231059|0.52778 231060|0.51389 231061|0.16667 231062|0.81944 231063|0.80556 231064|0.48611 231065|0.31944 231066|0.77778 231067|0.81944 231068|0.83333 231069|0.83333 231070|0.75 231071|0.83333 231072|0.61111 231073|0.80556 231074|0.52778 231075|0.77778 231076|0.66667 231077|0.875 231078|0.77778 231079|0.58333 231080|0.72222 231081|0.5 231082|0.94444 231083|0.65278 231084|0.83333 231085|0.875 231086|0.73611 231087|0.84722 231088|0.44444 231089|0.40278 231090|0.47222 231091|0.45833 231092|0.18056 231093|0.48611 231094|0.18056 231095|0.27778 231096|0.5 231097|0.013889 231098|0.65278 231099|0.48611 231100|0.5 231101|0.5 231102|0.40278 231103|0.25 231104|0.44444 231105|0.44444 231106|0.41667 231107|0.44444 231108|0.45833 231109|0.38889 231110|0.84722 231111|0.68056 231112|0.83333 231113|0.59722 231114|0.75 231115|0.77778 231116|0.875 231117|0.77778 231118|0.47222 231119|0.44444 231120|0.94444 231121|0.44444 231122|0.27778 231123|0.41667 231124|0.48611 231125|0.44444 231126|0.33333 231127|0.43056 231128|0.5 231129|0.58333 231130|0.51389 231131|0.5 231132|0.55556 231133|0.36111 231134|0.63889 231135|0.56944 231136|0.44444 231137|0.22222 231138|0.5 231139|0.30556 231140|0.79167 231141|0.625 231142|0.5 231143|0.41667 231144|0.66667 231145|0.5 231146|0.5 231147|0.26389 231148|0.31944 231149|0.22222 231150|0.41667 231151|0.22222 231152|0.125 231153|0.79167 231154|0.61111 231155|0.52778 231156|0.40278 231157|0.52778 231158|0.48611 231159|0.29167 231160|0.23611 231161|0.58333 231162|0.44444 231163|0.45833 231164|0.27778 231165|0.48611 231166|0.48611 231167|0.38889 231168|0.375 231169|0.41667 231170|0.44444 231171|0.44444 231172|0.34722 231173|0.73611 231174|0.41667 231175|0.5 231176|0.5 231177|0.68056 231178|0.52778 231179|0.44444 231180|0.5 231181|0.58333 231182|0.63889 231183|0.625 231184|0.55556 231185|0.54167 231186|0.125 231187|0.30556 231188|0.27778 231189|0.23611 231190|0.69444 231191|0.51389 231192|0.33333 231193|0.51389 231194|0.55556 231195|0.44444 231196|0.5 231197|0.83333 231198|0.52778 231199|0.36111 231200|0.43056 231201|0.51389 231202|0.5 231203|0.52778 231204|0.5 231205|0.77778 231206|0.875 231207|0.38889 231208|0.30556 231209|0.26389 231210|0.625 231211|0.25 231212|0.77778 231213|0.58333 231214|0.75 231215|0.29167 231216|0.20833 231217|0.48611 231218|0.5 231219|0.33333 231220|0.81944 231221|0.83333 231222|0.5 231223|0.59722 231224|0.56944 231225|0.70833 231226|0.77778 231227|0.375 231228|0.30556 231229|0.58333 231230|0.34722 231231|0.15278 231232|0.45833 231233|0.40278 231234|0.375 231235|0.66667 231236|0.47222 231237|0.5 231238|0.5 231239|0.31944 231240|0.41667 231241|0.44444 231242|0.5 231243|0.40278 231244|0.69444 231245|0.72222 231246|0.59722 231247|0.44444 231248|0.25 231249|0.33333 231250|0.34722 231251|0.31944 231252|0.30556 231253|0.29167 231254|0.51389 231255|0.22222 231256|0.5 231257|0.30556 231258|0.31944 231259|0.31944 231260|0.875 231261|0.5 231262|0.48611 231263|0.66667 231264|0.52778 231265|0.22222 231266|0.44444 231267|0.80556 231268|0.83333 231269|0.81944 231270|0.88889 231271|0.81944 231272|0.81944 231273|0.86111 231274|0.94444 231275|0.77778 231276|0.77778 231277|0.18056 231278|0.70833 231279|0.51389 231280|0.27778 231281|0.72222 231282|0.88889 231283|0.5 231284|0.5 231285|0.72222 231286|0.29167 231287|0.16667 231288|0.77778 231289|0.76389 231290|0.40278 231291|0.56944 231292|0.44444 231293|0.47222 231294|0.5 231295|0.33333 231296|0.61111 231297|0.51389 231298|0.59722 231299|0.54167 231300|0.5 231301|0.083333 231302|0.72222 231303|0.88889 231304|0.81944 231305|0.70833 231306|0.15278 231307|0.51389 231308|0.5 231309|0.59722 231310|0.80556 231311|0.5 231312|0.31944 231313|0.27778 231314|0.33333 231315|0.44444 231316|0.375 231317|0.36111 231318|0.58333 231319|0.69444 231320|0.38889 231321|0.25 231322|0.44444 231323|0.055556 231324|0.75 231325|0.5 231326|0.66667 231327|0.70833 231328|0.61111 231329|0.41667 231330|0.55556 231331|0.68056 231332|0.52778 231333|0.55556 231334|0.34722 231335|0.36111 231336|0.055556 231337|0.16667 231338|0.055556 231339|0.5 231340|0.48611 231341|0.48611 231342|0.45833 231343|0.5 231344|0.27778 231345|0.56944 231346|0.5 231347|0.54167 231348|0.375 231349|0.625 231350|0.55556 231351|0.55556 231352|0.15278 231353|0.375 231354|0.5 231355|0.20833 231356|0.125 231357|0.30556 231358|0.26389 231359|0.38889 231360|0.93056 231361|0.5 231362|0.5 231363|0.5 231364|0.5 231365|0.5 231366|0.5 231367|0.63889 231368|0.66667 231369|0.40278 231370|0.43056 231371|0.5 231372|0.5 231373|0.55556 231374|0.375 231375|0.30556 231376|0.33333 231377|0.5 231378|0.59722 231379|0.47222 231380|0.44444 231381|0.5 231382|0.27778 231383|0.36111 231384|0.19444 231385|0.15278 231386|0.5 231387|0.22222 231388|0.29167 231389|0.61111 231390|0.33333 231391|0.40278 231392|0.61111 231393|0.47222 231394|0.52778 231395|0.29167 231396|0.27778 231397|0.13889 231398|0.65278 231399|0.76389 231400|0.73611 231401|0.86111 231402|0.80556 231403|0.16667 231404|0.13889 231405|0.56944 231406|0.54167 231407|0.16667 231408|0.18056 231409|0.26389 231410|0.66667 231411|0.65278 231412|0.61111 231413|0.36111 231414|0.80556 231415|0.66667 231416|0.625 231417|0.47222 231418|0.55556 231419|0.69444 231420|0.72222 231421|0.52778 231422|0.47222 231423|0.72222 231424|0.80556 231425|0.76389 231426|0.48611 231427|0.83333 231428|0.79167 231429|0.86111 231430|0.88889 231431|0.41667 231432|0.38889 231433|0.66667 231434|0.69444 231435|0.30556 231436|0.76389 231437|0.80556 231438|0.68056 231439|0.15278 231440|0.11111 231441|0.45833 231442|0.66667 231443|0.5 231444|0.84722 231445|0.40278 231446|0.30556 231447|0.375 231448|0.11111 231449|0.20833 231450|0.69444 231451|0.83333 231452|0.875 231453|0.86111 231454|0.58333 231455|0.36111 231456|0.77778 231457|0.44444 231458|0.66667 231459|0.45833 231460|0.27778 231461|0.25 231462|0.22222 231463|0.19444 231464|0.41667 231465|0.22222 231466|0.33333 231467|0.55556 231468|0.27778 231469|0.51389 231470|0.77778 231471|0.80556 231472|0.38889 231473|0.44444 231474|0.58333 231475|0.18056 231476|0.11111 231477|0.56944 231478|0.72222 231479|0.66667 231480|0.88889 231481|0.75 231482|0.52778 231483|0.73611 231484|0.61111 231485|0.5 231486|0.38889 231487|0.19444 231488|0.70833 231489|0.65278 231490|0.19444 231491|0.30556 231492|0.72222 231493|0.73611 231494|0.79167 231495|0.80556 231496|0.48611 231497|0.59722 231498|0.76389 231499|0.77778 231500|0.70833 231501|0.22222 231502|0.20833 231503|0.13889 231504|0.26389 231505|0.61111 231506|0.75 231507|0.55556 231508|0.18056 231509|0.23611 231510|0.77778 231511|0.72222 231512|0.31944 231513|0.48611 231514|0.38889 231515|0.27778 231516|0.097222 231517|0.20833 231518|0.16667 231519|0.38889 231520|0.36111 231521|0.097222 231522|0.16667 231523|0.5 231524|0.69444 231525|0.55556 231526|0.44444 231527|0.55556 231528|0.55556 231529|0.56944 231530|0.61111 231531|0.56944 231532|0.5 231533|0.61111 231534|0.65278 231535|0.5 231536|0.51389 231537|0.45833 231538|0.29167 231539|0.29167 231540|0.72222 231541|0.75 231542|0.44444 231543|0.33333 231544|0.69444 231545|0.51389 231546|0.45833 231547|0.55556 231548|0.54167 231549|0.68056 231550|0.055556 231551|0.63889 231552|0.25 231553|0.31944 231554|0.41667 231555|0.19444 231556|0.38889 231557|0.41667 231558|0.56944 231559|0.79167 231560|0.51389 231561|0.72222 231562|0.29167 231563|0.34722 231564|0.5 231565|0.29167 231566|0.86111 231567|0.55556 231568|0.52778 231569|0.5 231570|0.84722 231571|0.19444 231572|0.22222 231573|0.23611 231574|0.15278 231575|0.72222 231576|0.33333 231577|0.33333 231578|0.40278 231579|0.56944 231580|0.45833 231581|0.90278 231582|0.48611 231583|0.5 231584|0.45833 231585|0.38889 231586|0.34722 231587|0.36111 231588|0.41667 231589|0.38889 231590|0.5 231591|0.5 231592|0.31944 231593|0.38889 231594|0.61111 231595|0.25 231596|0.41667 231597|0.083333 231598|0.055556 231599|0.66667 231600|0.26389 231601|0.22222 231602|0.11111 231603|0.29167 231604|0.16667 231605|0.41667 231606|0.55556 231607|0.5 231608|0.44444 231609|0.36111 231610|0.875 231611|0.61111 231612|0.63889 231613|0.81944 231614|0.48611 231615|0.44444 231616|0.40278 231617|0.52778 231618|0.55556 231619|0.56944 231620|0.59722 231621|0.72222 231622|0.76389 231623|0.72222 231624|0.81944 231625|0.76389 231626|0.5 231627|0.097222 231628|0.16667 231629|0.56944 231630|0.68056 231631|0.27778 231632|0.22222 231633|0.38889 231634|0.11111 231635|0.5 231636|0.44444 231637|0.72222 231638|0.22222 231639|0.81944 231640|0.625 231641|0.43056 231642|0.5 231643|0.20833 231644|0.5 231645|0.5 231646|0.58333 231647|0.68056 231648|0.5 231649|0.55556 231650|0.69444 231651|0.61111 231652|0.5 231653|0.55556 231654|0.48611 231655|0.5 231656|0.5 231657|0.5 231658|0.47222 231659|0.34722 231660|0.40278 231661|0.31944 231662|0.45833 231663|0.77778 231664|0.75 231665|0.86111 231666|0.83333 231667|0.44444 231668|0.375 231669|0.5 231670|0.44444 231671|0.69444 231672|0.18056 231673|0.61111 231674|0.72222 231675|0.75 231676|0.5 231677|0.5 231678|0.54167 231679|0.51389 231680|0.52778 231681|0.5 231682|0.5 231683|0.66667 231684|0.5 231685|0.58333 231686|0.66667 231687|0.58333 231688|0.5 231689|0.5 231690|0.55556 231691|0.5 231692|0.77778 231693|0.59722 231694|0.44444 231695|0.23611 231696|0.20833 231697|0.83333 231698|0.75 231699|0.19444 231700|0.19444 231701|0.52778 231702|0.83333 231703|0.88889 231704|0.76389 231705|0.5 231706|0.72222 231707|0.77778 231708|0.84722 231709|0.88889 231710|0.875 231711|0.51389 231712|0.61111 231713|0.5 231714|0.5 231715|0.52778 231716|0.5 231717|0.5 231718|0.5 231719|0.44444 231720|0.5 231721|0.5 231722|0.5 231723|0.52778 231724|0.5 231725|0.5 231726|0.45833 231727|0.31944 231728|0.5 231729|0.45833 231730|0.65278 231731|0.52778 231732|0.5 231733|0.61111 231734|0.11111 231735|0.56944 231736|0.51389 231737|0.5 231738|0.61111 231739|0.5 231740|0.5 231741|0.5 231742|0.77778 231743|0.38889 231744|0.5 231745|0.51389 231746|0.30556 231747|0.16667 231748|0.5 231749|0.51389 231750|0.5 231751|0.44444 231752|0.81944 231753|0.69444 231754|0.27778 231755|0.11111 231756|0.33333 231757|0.18056 231758|0.58333 231759|0.5 231760|0.63889 231761|0.5 231762|0.36111 231763|0.33333 231764|0.56944 231765|0.91667 231766|0.86111 231767|0.51389 231768|0.66667 231769|0.51389 231770|0.5 231771|0.81944 231772|0.125 231773|0.22222 231774|0.69444 231775|0.45833 231776|0.44444 231777|0.5 231778|0.55556 231779|0.65278 231780|0.83333 231781|0.23611 231782|0.45833 231783|0.26389 231784|0.55556 231785|0.45833 231786|0.27778 231787|0.41667 231788|0.52778 231789|0.5 231790|0.47222 231791|0.375 231792|0.44444 231793|0.5 231794|0.5 231795|0.55556 231796|0.55556 231797|0 231798|0.5 231799|0.59722 231800|0.52778 231801|0.5 231802|0.44444 231803|0.47222 231804|0.13889 231805|0.5 231806|0.65278 231807|0.33333 231808|0.13889 231809|0.33333 231810|0.30556 231811|0.23611 231812|0.15278 231813|0.26389 231814|0.56944 231815|0.40278 231816|0.40278 231817|0.44444 231818|0.5 231819|0.59722 231820|0.69444 231821|0.54167 231822|0.51389 231823|0.5 231824|0.27778 231825|0.375 231826|0.5 231827|0.20833 231828|0.88889 231829|0.84722 231830|0.72222 231831|0.5 231832|0.5 231833|0.54167 231834|0.625 231835|0.58333 231836|0.33333 231837|0.38889 231838|0.44444 231839|0.30556 231840|0.55556 231841|0.51389 231842|0.73611 231843|0.83333 231844|0.5 231845|0.61111 231846|0.69444 231847|0.59722 231848|0.51389 231849|0.5 231850|0.5 231851|0.15278 231852|0.5 231853|0.5 231854|0.5 231855|0.18056 231856|0.5 231857|0.5 231858|0.38889 231859|0.5 231860|0.027778 231861|0.43056 231862|0.097222 231863|0.5 231864|0.38889 231865|0.22222 231866|0.34722 231867|0.38889 231868|0.38889 231869|0.18056 231870|0.47222 231871|0.51389 231872|0.40278 231873|0.61111 231874|0.47222 231875|0.36111 231876|0.5 231877|0.33333 231878|0.44444 231879|0.25 231880|0.26389 231881|0.30556 231882|0.29167 231883|0.83333 231884|0.40278 231885|0.43056 231886|0.16667 231887|0.5 231888|0.5 231889|0.5 231890|0.47222 231891|0.5 231892|0.51389 231893|0.80556 231894|0.56944 231895|0.5 231896|0.22222 231897|0.26389 231898|0.33333 231899|0.30556 231900|0.25 231901|0.38889 231902|0.5 231903|0.44444 231904|0.27778 231905|0.5 231906|0.625 231907|0.55556 231908|0.77778 231909|0.61111 231910|0.083333 231911|0.38889 231912|0.5 231913|0.5 231914|0.27778 231915|0.097222 231916|0.86111 231917|0.83333 231918|0.5 231919|0.15278 231920|0.15278 231921|0.25 231922|0.26389 231923|0.33333 231924|0.83333 231925|0.63889 231926|0.70833 231927|0.79167 231928|0.44444 231929|0.27778 231930|0.45833 231931|0.55556 231932|0.5 231933|0.5 231934|0.36111 231935|0.5 231936|0.75 231937|0.56944 231938|0.38889 231939|0.5 231940|0.5 231941|0.5 231942|0.5 231943|0.52778 231944|0.63889 231945|0.5 231946|0.52778 231947|0.55556 231948|0.5 231949|0.5 231950|0.70833 231951|0.5 231952|0.5 231953|0.625 231954|0.5 231955|0.51389 231956|0.51389 231957|0.5 231958|0.31944 231959|0.5 231960|0.5 231961|0.5 231962|0.5 231963|0.5 231964|0.5 231965|0.44444 231966|0.5 231967|0.33333 231968|0.43056 231969|0.375 231970|0.097222 231971|0.27778 231972|0.5 231973|0.33333 231974|0.5 231975|0.16667 231976|0.44444 231977|0.44444 231978|0.33333 231979|0.38889 231980|0.58333 231981|0.5 231982|0.27778 231983|0.18056 231984|0.52778 231985|0.40278 231986|0.56944 231987|0.5 231988|0.58333 231989|0.66667 231990|0.38889 231991|0.5 231992|0.44444 231993|0.25 231994|0.30556 231995|0.65278 231996|0.5 231997|0.41667 231998|0.5 231999|0.52778 232000|0.52778 232001|0.44444 232002|0.38889 232003|0.625 232004|0.38889 232005|0.41667 232006|0.48611 232007|0.5 232008|0.5 232009|0.5 232010|0.45833 232011|0.55556 232012|0.5 232013|0.86111 232014|0.66667 232015|0.625 232016|0.375 232017|0.54167 232018|0.5 232019|0.83333 232020|0.41667 232021|0.81944 232022|0.5 232023|0.55556 232024|0.63889 232025|0.45833 232026|0.56944 232027|0.125 232028|0.5 232029|0.5 232030|0.22222 232031|0.36111 232032|0.44444 232033|0.5 232034|0.80556 232035|0.51389 232036|0.44444 232037|0.73611 232038|0.30556 232039|0.47222 232040|0.5 232041|0.43056 232042|0.59722 232043|0.58333 232044|0.80556 232045|0.76389 232046|0.5 232047|0.45833 232048|0.30556 232049|0.41667 232050|0.5 232051|0.54167 232052|0.26389 232053|0.38889 232054|0.5 232055|0.5 232056|0.5 232057|0.31944 232058|0.5 232059|0.5 232060|0.25 232061|0.625 232062|0.73611 232063|0.51389 232064|0.5 232065|0.52778 232066|0.51389 232067|0.55556 232068|0.79167 232069|0.69444 232070|0.38889 232071|0.5 232072|0.41667 232073|0.5 232074|0.56944 232075|0.5 232076|0.44444 232077|0.27778 232078|0.22222 232079|0.38889 232080|0.47222 232081|0.625 232082|0.23611 232083|0.30556 232084|0.59722 232085|0.88889 232086|0.94444 232087|0.83333 232088|0.013889 232089|0.20833 232090|0.5 232091|0.47222 232092|0.23611 232093|0.13889 232094|0.29167 232095|0.61111 232096|0.44444 232097|0.43056 232098|0.5 232099|0.11111 232100|0.84722 232101|0.61111 232102|0.61111 232103|0.5 232104|0.47222 232105|0.26389 232106|0.41667 232107|1 232108|0.5 232109|0.5 232110|0.68056 232111|0.70833 232112|0.63889 232113|0.61111 232114|0.68056 232115|0.36111 232116|0.86111 232117|0.5 232118|0.29167 232119|0.55556 232120|0.52778 232121|0.5 232122|0.40278 232123|0.41667 232124|0.52778 232125|0.58333 232126|0.76389 232127|0.66667 232128|0.66667 232129|0.5 232130|0.5 232131|0.5 232132|0.77778 232133|0.5 232134|0.72222 232135|0.79167 232136|0.79167 232137|0.84722 232138|0.83333 232139|0.90278 232140|0.94444 232141|0.72222 232142|0.70833 232143|0.55556 232144|0.66667 232145|0.65278 232146|0.5 232147|0.70833 232148|0.88889 232149|0.69444 232150|0.66667 232151|0.5 232152|0.52778 232153|0.47222 232154|0.29167 232155|0.5 232156|0.5 232157|0.69444 232158|0.80556 232159|0.5 232160|0.73611 232161|0.33333 232162|0.5 232163|0.45833 232164|0.38889 232165|0.61111 232166|0.54167 232167|0.56944 232168|0.23611 232169|0.38889 232170|0.55556 232171|0.5 232172|0.44444 232173|0.52778 232174|0.23611 232175|0.54167 232176|0.72222 232177|0.70833 232178|0.44444 232179|0.5 232180|0.48611 232181|0.25 232182|0.5 232183|0.54167 232184|0.5 232185|0.69444 232186|0.5 232187|0.47222 232188|0.5 232189|0.70833 232190|0.79167 232191|0.55556 232192|0.5 232193|0.84722 232194|0.5 232195|0.25 232196|0.44444 232197|0.055556 232198|0 232199|0.31944 232200|0.44444 232201|0.13889 232202|0.055556 232203|0.33333 232204|0.11111 232205|0.083333 232206|0.15278 232207|0.27778 232208|0.069444 232209|0.47222 232210|0.33333 232211|0.38889 232212|0.70833 232213|0.80556 232214|0.45833 232215|0.41667 232216|0.5 232217|0.5 232218|0.63889 232219|0.66667 232220|0.51389 232221|0.5 232222|0.66667 232223|0.75 232224|0.48611 232225|0.48611 232226|0.52778 232227|0.55556 232228|0.52778 232229|0.5 232230|0.58333 232231|0.56944 232232|0.5 232233|0.47222 232234|0.68056 232235|0.5 232236|0.61111 232237|0.5 232238|0.5 232239|0.55556 232240|0.5 232241|0.47222 232242|0.5 232243|0.5 232244|0.375 232245|0.40278 232246|0.15278 232247|0.27778 232248|0.68056 232249|0.77778 232250|0.11111 232251|0.75 232252|0.79167 232253|0.98611 232254|1 232255|0.80556 232256|0.69444 232257|0.22222 232258|0.69444 232259|0.75 232260|0.29167 232261|0.23611 232262|0.44444 232263|0.16667 232264|0.41667 232265|0.72222 232266|0.11111 232267|0.083333 232268|0.097222 232269|0.54167 232270|0.61111 232271|0.90278 232272|0.86111 232273|0.19444 232274|0.11111 232275|0.25 232276|0.54167 232277|0.56944 232278|0.79167 232279|0.77778 232280|0.36111 232281|0.84722 232282|0.33333 232283|0.66667 232284|0.70833 232285|0.52778 232286|0.83333 232287|0.18056 232288|0.73611 232289|0.56944 232290|0.65278 232291|0.76389 232292|0.72222 232293|0.16667 232294|0.83333 232295|0.80556 232296|0.94444 232297|0.94444 232298|0.88889 232299|0.875 232300|0.66667 232301|0.22222 232302|0.72222 232303|0.84722 232304|0.84722 232305|0.69444 232306|0.66667 232307|0.79167 232308|0.069444 232309|0.055556 232310|0.11111 232311|0.81944 232312|0.88889 232313|0.5 232314|0.56944 232315|0.55556 232316|0.63889 232317|0.91667 232318|0.55556 232319|0.80556 232320|0.83333 232321|0.68056 232322|0.66667 232323|0.65278 232324|0.16667 232325|0.23611 232326|0.55556 232327|0.72222 232328|0.66667 232329|0.83333 232330|0.77778 232331|0.86111 232332|0.013889 232333|0 232334|0.29167 232335|0.33333 232336|0.86111 232337|0.72222 232338|0.77778 232339|0.58333 232340|0.55556 232341|0.33333 232342|0.66667 232343|0.80556 232344|0.93056 232345|0.93056 232346|0.97222 232347|0.875 232348|0.47222 232349|0.80556 232350|0.72222 232351|0.73611 232352|0.66667 232353|0.55556 232354|0.26389 232355|0.22222 232356|0.30556 232357|0.22222 232358|0.31944 232359|0.22222 232360|0.19444 232361|0.13889 232362|0.18056 232363|0.25 232364|0.875 232365|0.75 232366|0.59722 232367|0.88889 232368|0.97222 232369|0.81944 232370|0.45833 232371|0.625 232372|0.375 232373|0.13889 232374|0.13889 232375|0.76389 232376|0.75 232377|0.29167 232378|0.63889 232379|0.13889 232380|0.94444 232381|0.38889 232382|0.34722 232383|0.55556 232384|0.16667 232385|0.23611 232386|0.55556 232387|0.58333 232388|0.083333 232389|0.097222 232390|0.25 232391|0.88889 232392|0.83333 232393|0.75 232394|0.83333 232395|0.77778 232396|0.73611 232397|0.29167 232398|0.48611 232399|0.41667 232400|0.54167 232401|0.22222 232402|0.22222 232403|0.15278 232404|0.27778 232405|0.77778 232406|0.73611 232407|0.65278 232408|0.013889 232409|0.055556 232410|0.18056 232411|0.40278 232412|0.31944 232413|0.55556 232414|0.5 232415|0.5 232416|0.43056 232417|0.27778 232418|0.63889 232419|0.95833 232420|0.86111 232421|0.81944 232422|0.375 232423|0.375 232424|0.73611 232425|0.73611 232426|0.55556 232427|0.56944 232428|0.86111 232429|0.66667 232430|0.54167 232431|0.63889 232432|0.33333 232433|0.81944 232434|0.5 232435|0.45833 232436|0.34722 232437|0.86111 232438|0.98611 232439|0.27778 232440|0.22222 232441|0.5 232442|0.375 232443|0.5 232444|0.73611 232445|0.81944 232446|0.25 232447|0.5 232448|0.5 232449|0.27778 232450|0.55556 232451|0.77778 232452|0.75 232453|0.36111 232454|0.48611 232455|0.38889 232456|0.27778 232457|0.83333 232458|0.097222 232459|0.44444 232460|0.097222 232461|0.80556 232462|0.81944 232463|0.76389 232464|0.18056 232465|0.5 232466|0.5 232467|0.56944 232468|0.65278 232469|0.5 232470|0.55556 232471|0.52778 232472|0.80556 232473|0.79167 232474|0.33333 232475|0.66667 232476|0.54167 232477|0.48611 232478|0.66667 232479|0.51389 232480|0.15278 232481|0.33333 232482|0.27778 232483|0.30556 232484|0.18056 232485|0.22222 232486|0.29167 232487|0.90278 232488|0.75 232489|0.81944 232490|0.88889 232491|0.73611 232492|0.65278 232493|0.69444 232494|0.58333 232495|0.76389 232496|0.84722 232497|0.5 232498|0.22222 232499|0.30556 232500|0.88889 232501|0.77778 232502|0.86111 232503|0.79167 232504|0.36111 232505|0.625 232506|0.54167 232507|0.58333 232508|0.47222 232509|0.44444 232510|0.18056 232511|0.23611 232512|0.5 232513|0.5 232514|0.15278 232515|0.125 232516|0.73611 232517|0.22222 232518|0.34722 232519|0.31944 232520|0.5 232521|0.5 232522|0.5 232523|0.79167 232524|0.41667 232525|0.5 232526|0.23611 232527|0.27778 232528|0.31944 232529|0.125 232530|0.27778 232531|0.19444 232532|0.68056 232533|0.31944 232534|0.36111 232535|0.29167 232536|0.36111 232537|0.22222 232538|0.91667 232539|0.38889 232540|0.29167 232541|0.47222 232542|0.70833 232543|0.94444 232544|0.875 232545|0.55556 232546|0.52778 232547|0.5 232548|0.41667 232549|0.47222 232550|0.36111 232551|0.44444 232552|0.44444 232553|0.68056 232554|0.41667 232555|0.33333 232556|0.5 232557|0.61111 232558|0.68056 232559|0.72222 232560|0.58333 232561|0.86111 232562|0.76389 232563|0.61111 232564|0.73611 232565|0.26389 232566|0.23611 232567|0.51389 232568|0.45833 232569|0.33333 232570|0.43056 232571|0.33333 232572|0.77778 232573|0.79167 232574|0.5 232575|0.5 232576|0.59722 232577|0.61111 232578|0.66667 232579|0.34722 232580|0.38889 232581|0.41667 232582|0.38889 232583|0.36111 232584|0.41667 232585|0.34722 232586|0.45833 232587|0.33333 232588|0.20833 232589|0.23611 232590|0.25 232591|0.33333 232592|0.40278 232593|0.40278 232594|0.25 232595|0.26389 232596|0.055556 232597|0.30556 232598|0.51389 232599|0.5 232600|0.34722 232601|0.56944 232602|0.5 232603|0.45833 232604|0.72222 232605|0.58333 232606|0.47222 232607|0.29167 232608|0.38889 232609|0.36111 232610|0.22222 232611|0.20833 232612|0.13889 232613|0.5 232614|0.29167 232615|0.33333 232616|0.45833 232617|0.26389 232618|0.76389 232619|0.69444 232620|0.70833 232621|0.75 232622|0.84722 232623|0.79167 232624|0.80556 232625|0.84722 232626|0.55556 232627|0.41667 232628|0.47222 232629|0.16667 232630|0.33333 232631|0.125 232632|0.18056 232633|0.26389 232634|0.38889 232635|0.68056 232636|0.59722 232637|0.40278 232638|0.5 232639|0.44444 232640|0.51389 232641|0.55556 232642|0.34722 232643|0.33333 232644|0.29167 232645|0.55556 232646|0.5 232647|0.44444 232648|0.41667 232649|0.30556 232650|0.5 232651|0.25 232652|0.54167 232653|0.45833 232654|0.38889 232655|0.41667 232656|0.44444 232657|0.38889 232658|0.36111 232659|0.54167 232660|0.55556 232661|0.20833 232662|0.80556 232663|0.25 232664|0.45833 232665|0.66667 232666|0.52778 232667|0.52778 232668|0.5 232669|0.33333 232670|0.47222 232671|0.16667 232672|0.36111 232673|0.43056 232674|0.125 232675|0.16667 232676|0.19444 232677|0.26389 232678|0.23611 232679|0.88889 232680|0.65278 232681|0.80556 232682|0.25 232683|0.069444 232684|0.88889 232685|0.083333 232686|0.19444 232687|0.22222 232688|0.25 232689|0.70833 232690|0.80556 232691|0.23611 232692|0.013889 232693|0.375 232694|0.5 232695|0.55556 232696|0.93056 232697|0.5 232698|0.23611 232699|0.44444 232700|0.55556 232701|0.77778 232702|0.23611 232703|0.18056 232704|0.069444 232705|0.5 232706|0.80556 232707|0.65278 232708|0.91667 232709|0.81944 232710|0.47222 232711|0.38889 232712|0.5 232713|0.34722 232714|0.27778 232715|0.65278 232716|0.72222 232717|0.13889 232718|0.33333 232719|0.18056 232720|0.16667 232721|0.875 232722|0.69444 232723|0.27778 232724|0.625 232725|0.76389 232726|0.40278 232727|0.5 232728|0.48611 232729|0.54167 232730|0.15278 232731|0.083333 232732|0.40278 232733|0.36111 232734|0.13889 232735|0.41667 232736|0.33333 232737|0.61111 232738|0.79167 232739|0.54167 232740|0.097222 232741|0.5 232742|0.66667 232743|0.5 232744|0.36111 232745|0.26389 232746|0.13889 232747|0.76389 232748|0.26389 232749|0.22222 232750|0.47222 232751|0.18056 232752|0.13889 232753|0.70833 232754|0.75 232755|0.72222 232756|0.5 232757|0.48611 232758|0.27778 232759|0.13889 232760|1 232761|0.80556 232762|0.25 232763|0.48611 232764|0.83333 232765|0.77778 232766|0.69444 232767|0.84722 232768|0.80556 232769|0.52778 232770|0.5 232771|0.16667 232772|0.13889 232773|0.83333 232774|0.66667 232775|0.61111 232776|0.20833 232777|0.77778 232778|0.5 232779|0.36111 232780|0.63889 232781|0.77778 232782|0.47222 232783|0.55556 232784|0.26389 232785|0.25 232786|0.26389 232787|0.33333 232788|0.94444 232789|0.31944 232790|0.56944 232791|0.47222 232792|0.44444 232793|0.72222 232794|0.30556 232795|0.18056 232796|0.5 232797|0.875 232798|0.93056 232799|0.38889 232800|0.75 232801|0.45833 232802|0.38889 232803|0.5 232804|0.097222 232805|0.125 232806|0.069444 232807|0.19444 232808|0.25 232809|0.45833 232810|0.5 232811|0.5 232812|0.5 232813|0.083333 232814|0.73611 232815|0.51389 232816|0.61111 232817|0.63889 232818|0.54167 232819|0.083333 232820|0.069444 232821|0.5 232822|0.61111 232823|0.80556 232824|0.51389 232825|0.23611 232826|0.375 232827|0.52778 232828|0.54167 232829|0.31944 232830|0.38889 232831|0.36111 232832|0.15278 232833|0.5 232834|0.45833 232835|0.73611 232836|0.88889 232837|0.66667 232838|0.59722 232839|0.40278 232840|0.375 232841|0.44444 232842|0.47222 232843|0.65278 232844|0.375 232845|0.43056 232846|0.31944 232847|0.18056 232848|0.13889 232849|0.25 232850|0.5 232851|0.31944 232852|0.59722 232853|0.72222 232854|0.38889 232855|0.86111 232856|0.75 232857|0.70833 232858|0.94444 232859|0.19444 232860|0.20833 232861|0.20833 232862|0.98611 232863|1 232864|0.5 232865|0.80556 232866|0.47222 232867|0.26389 232868|0.36111 232869|0.34722 232870|0.19444 232871|0.20833 232872|0.93056 232873|0.80556 232874|0.77778 232875|0.80556 232876|0.81944 232877|0.61111 232878|0.5 232879|0.38889 232880|0.5 232881|0.5 232882|0.44444 232883|0.65278 232884|0.63889 232885|0.5 232886|0.79167 232887|0.33333 232888|0.33333 232889|0.5 232890|0.38889 232891|0.5 232892|0.38889 232893|0.94444 232894|0.875 232895|0.083333 232896|0.45833 232897|0.48611 232898|0.29167 232899|0.5 232900|0.18056 232901|0.22222 232902|0.16667 232903|0.5 232904|0.38889 232905|0.52778 232906|0.55556 232907|0.75 232908|0.63889 232909|0.76389 232910|0.44444 232911|0.59722 232912|0.83333 232913|0.5 232914|0.44444 232915|0.013889 232916|0.31944 232917|0.80556 232918|0.16667 232919|0.56944 232920|0.27778 232921|0.27778 232922|0.27778 232923|0.68056 232924|0.76389 232925|0.43056 232926|0.88889 232927|0.61111 232928|0.27778 232929|0.23611 232930|0.19444 232931|0.76389 232932|0.80556 232933|0.375 232934|0.55556 232935|0.75 232936|0.84722 232937|0.56944 232938|0.83333 232939|0.34722 232940|0.51389 232941|0.5 232942|0.70833 232943|0.80556 232944|0.27778 232945|0.13889 232946|0.34722 232947|0.40278 232948|0.44444 232949|0.30556 232950|0.26389 232951|0.5 232952|0.52778 232953|0.44444 232954|0.36111 232955|0.51389 232956|0.27778 232957|0.68056 232958|0.23611 232959|0.54167 232960|0.23611 232961|0.55556 232962|0.875 232963|0.98611 232964|0.66667 232965|0.75 232966|0.72222 232967|0.15278 232968|0.77778 232969|0.54167 232970|0.56944 232971|0.54167 232972|0.59722 232973|0.84722 232974|0.055556 232975|0.26389 232976|0.58333 232977|0.33333 232978|0.5 232979|0.27778 232980|0.29167 232981|0.26389 232982|0.16667 232983|0.15278 232984|0.19444 232985|0.26389 232986|0.73611 232987|0.72222 232988|0.5 232989|0.85417 232990|0.59722 232991|0.33333 232992|0.69444 232993|0.86111 232994|0.56944 232995|0.68056 232996|0.43056 232997|0.16667 232998|0.11111 232999|0.58333 233000|0.48611 233001|0.31944 233002|0.20833 233003|0.26389 233004|0.20833 233005|0.19444 233006|0.45833 233007|0.44444 233008|0.73611 233009|0.41667 233010|0.33333 233011|0.83333 233012|0.41667 233013|0.15278 233014|0.44444 233015|0.31944 233016|0.44444 233017|0.69444 233018|0.5 233019|0.48611 233020|0.51389 233021|0.63889 233022|0.16667 233023|0.55556 233024|0.58333 233025|0.83333 233026|0.11111 233027|0.51389 233028|0.36111 233029|0.58333 233030|0.16667 233031|0.36111 233032|0.5 233033|0.013889 233034|0.76389 233035|0.72222 233036|0.90278 233037|0.83333 233038|0.84722 233039|0.88889 233040|0.5 233041|0.63889 233042|0.375 233043|0.013889 233044|0.86111 233045|0.22222 233046|0.30556 233047|0.45833 233048|0.33333 233049|0.51389 233050|0.26389 233051|0.33333 233052|0.76389 233053|0.47222 233054|0.41667 233055|0.68056 233056|0.47222 233057|0.055556 233058|0.5 233059|0.22222 233060|0.31944 233061|0.19444 233062|0.44444 233063|0.77778 233064|0.34722 233065|0.86111 233066|0.22222 233067|0.70833 233068|0.81944 233069|0.29167 233070|0.36111 233071|0.77778 233072|0.45833 233073|0.48611 233074|0.5 233075|0.52778 233076|0.91667 233077|0.20833 233078|0.125 233079|0.33333 233080|0.29167 233081|0.52778 233082|0.72222 233083|0.70833 233084|0.66667 233085|0.40278 233086|0.38889 233087|0.30556 233088|0.83333 233089|0.5 233090|0.5 233091|0.22222 233092|0.59722 233093|0.66667 233094|0.5 233095|0.40278 233096|0.63889 233097|0.5 233098|0.56944 233099|0.44444 233100|0.45833 233101|0.19444 233102|0.16667 233103|0.77778 233104|0.5 233105|0.19444 233106|0.11111 233107|0.73611 233108|0.22222 233109|0.18056 233110|0.51389 233111|0.73611 233112|0.125 233113|0.375 233114|0.52778 233115|0.625 233116|0.30556 233117|0.44444 233118|0.47222 233119|0.36111 233120|0.31944 233121|0.45833 233122|0.23611 233123|0.23611 233124|0.44444 233125|0.26389 233126|0.33333 233127|0.5 233128|0.55556 233129|0.625 233130|0.30556 233131|0.5 233132|0.5 233133|0.5 233134|0.61111 233135|0.52778 233136|0.40278 233137|0.5 233138|0.5 233139|0.5 233140|0.44444 233141|0.31944 233142|0.40278 233143|0.61111 233144|0.5 233145|0.51389 233146|0.30556 233147|0.83333 233148|0.93056 233149|0.70833 233150|0.52778 233151|0.5 233152|0.25 233153|0.5 233154|0.5 233155|0.20833 233156|0.5 233157|0.5 233158|0.36111 233159|0.52778 233160|0.44444 233161|0.5 233162|0.5 233163|0.34722 233164|0.41667 233165|0.56944 233166|0.51389 233167|0.77778 233168|0.75 233169|0.5 233170|0.79167 233171|0.52778 233172|0.18056 233173|0.61111 233174|0.55556 233175|0.70833 233176|0.72222 233177|0.83333 233178|0.36111 233179|0.22222 233180|0.58333 233181|0.22222 233182|0.5 233183|0.5 233184|0.66667 233185|0.65278 233186|0.097222 233187|0.19444 233188|0.20833 233189|0.27778 233190|0.26389 233191|0.52778 233192|0.5 233193|0.15278 233194|0.16667 233195|0.41667 233196|0.5 233197|0.95833 233198|0.5 233199|0.65278 233200|0.52778 233201|0.5 233202|0.5 233203|0.61111 233204|0.70833 233205|0.5 233206|0.5 233207|0.61111 233208|0.72222 233209|0.54167 233210|0.055556 233211|0.68056 233212|0.41667 233213|0.44444 233214|0.5 233215|0.11111 233216|0.33333 233217|0.25 233218|0.29167 233219|0.27778 233220|0.22222 233221|0.5 233222|0.11111 233223|0.34722 233224|0.43056 233225|0.5 233226|0.16667 233227|0.44444 233228|0.41667 233229|0.5 233230|0.23611 233231|0.27778 233232|0.5 233233|0.11111 233234|0.083333 233235|0.55556 233236|0.19444 233237|0.5 233238|0.80556 233239|0.70833 233240|0.69444 233241|0.59722 233242|0.75 233243|0.83333 233244|0.44444 233245|0.45833 233246|0.43056 233247|0.33333 233248|0.5 233249|0.41667 233250|0.56944 233251|0.58333 233252|0.38889 233253|0.69444 233254|0.27778 233255|0.83333 233256|0.44444 233257|0.54167 233258|0.30556 233259|0.34722 233260|0.59722 233261|0.63889 233262|0.44444 233263|0.44444 233264|0.5 233265|0.33333 233266|0.31944 233267|0.55556 233268|0.51389 233269|0.31944 233270|0.40278 233271|0.5 233272|0.55556 233273|0.52778 233274|0.375 233275|0.15278 233276|0.27778 233277|0.30556 233278|0.29167 233279|0.31944 233280|0.31944 233281|0.25 233282|0.26389 233283|0.27778 233284|0.23611 233285|0.18056 233286|0.5 233287|0.77778 233288|0.93056 233289|0.25 233290|0.11111 233291|0.16667 233292|0.20833 233293|0.5 233294|0.59722 233295|0.5 233296|0.54167 233297|0.5 233298|0.5 233299|0.33333 233300|0.5 233301|0.54167 233302|0.33333 233303|0.55556 233304|0.77778 233305|0.79167 233306|0.76389 233307|0.77778 233308|0.65278 233309|0.58333 233310|0.63889 233311|0.69444 233312|0.59722 233313|0.58333 233314|0.75 233315|0.83333 233316|0.75 233317|0.77778 233318|0.61111 233319|0.56944 233320|0.625 233321|0.59722 233322|0.77778 233323|0.73611 233324|0.65278 233325|0.27778 233326|0.19444 233327|0.29167 233328|0.20833 233329|0.63889 233330|0.77778 233331|0.5 233332|0.33333 233333|0.20833 233334|0.23611 233335|0.5 233336|0.25 233337|0.26389 233338|0.55556 233339|0.22222 233340|0.38889 233341|0.5 233342|0.38889 233343|0.47222 233344|0.44444 233345|0.5 233346|0.11111 233347|0.11111 233348|0.31944 233349|0.013889 233350|0.40278 233351|0.79167 233352|0.19444 233353|0.77778 233354|0.5 233355|0.23611 233356|0.45833 233357|0.58333 233358|0.48611 233359|0.27778 233360|0.20833 233361|0.43056 233362|0.47222 233363|0.5 233364|0.5 233365|0.20833 233366|0.069444 233367|0.27778 233368|0.38889 233369|0.16667 233370|0.27778 233371|0.63889 233372|0.5 233373|0.33333 233374|0.55556 233375|0.59722 233376|0.22222 233377|0.44444 233378|0.29167 233379|0.5 233380|0.76389 233381|0.45833 233382|0.66667 233383|0.48611 233384|0.77778 233385|0.63889 233386|0.5 233387|0.5 233388|0.69444 233389|0.5 233390|0.48611 233391|0.5 233392|0.69444 233393|0.5 233394|0.47222 233395|0.5 233396|0.54167 233397|0.41667 233398|0.083333 233399|0.5 233400|0.83333 233401|0.55556 233402|0.38889 233403|0.18056 233404|0.56944 233405|0.77778 233406|0.55556 233407|0.375 233408|0.38889 233409|0.5 233410|0.43056 233411|0.5 233412|0.58333 233413|0.625 233414|0.43056 233415|0.5 233416|0.5 233417|0.54167 233418|0.5 233419|0.54167 233420|0.58333 233421|0.5 233422|0.45833 233423|0.5 233424|0.44444 233425|0.55556 233426|0.13889 233427|0.5 233428|0.5 233429|0.54167 233430|0.47222 233431|0.20833 233432|0.18056 233433|0.5 233434|0.34722 233435|0.30556 233436|0.90278 233437|0.41667 233438|0.16667 233439|0.40278 233440|0.5 233441|0.38889 233442|0.38889 233443|0.11111 233444|0.20833 233445|0.69444 233446|0.125 233447|0.5 233448|0.26389 233449|0.22222 233450|0.52778 233451|0.5 233452|0.43056 233453|0.66667 233454|0.26389 233455|0.56944 233456|0.5 233457|0.5 233458|0.375 233459|0.73611 233460|0.48611 233461|0.44444 233462|0.5 233463|0.55556 233464|0.55556 233465|0.68056 233466|0.5 233467|0.47222 233468|0.61111 233469|0.5 233470|0.52778 233471|0.59722 233472|0.51389 233473|0.45833 233474|0.5 233475|0.41667 233476|0.5 233477|0.5 233478|0.59722 233479|0.73611 233480|0.55556 233481|0.47222 233482|0.43056 233483|0.5 233484|0.45833 233485|0.52778 233486|0.47222 233487|0.375 233488|0.47222 233489|0.55556 233490|0.63889 233491|0.55556 233492|0.59722 233493|0.5 233494|0.52778 233495|0.5 233496|0.5 233497|0.47222 233498|0.47222 233499|0.27778 233500|0.5 233501|0.5 233502|0.47222 233503|0.5 233504|0.5 233505|0.56944 233506|0.5 233507|0.61111 233508|0.44444 233509|0.47222 233510|0.5 233511|0.33333 233512|0.38889 233513|0.25 233514|0.34722 233515|0.43056 233516|0.81944 233517|0.75 233518|0.41667 233519|0.52778 233520|0.58333 233521|0.5 233522|0.54167 233523|0.61111 233524|0.73611 233525|0.81944 233526|0.36111 233527|0.5 233528|0.55556 233529|0.48611 233530|0.65278 233531|0.16667 233532|0.5 233533|0.45833 233534|0.5 233535|0.38889 233536|0.73611 233537|0.79167 233538|0.47222 233539|0.30556 233540|0.19444 233541|0.45833 233542|0.18056 233543|0.33333 233544|0.18056 233545|0.20833 233546|0.18056 233547|0.34722 233548|0.26389 233549|0.27778 233550|0.38889 233551|0.27778 233552|0.16667 233553|0.26389 233554|0.45833 233555|0.83333 233556|0.72222 233557|0.81944 233558|0.52778 233559|0.47222 233560|0.77778 233561|0.72222 233562|0.5 233563|0.875 233564|0.55556 233565|0.625 233566|0.56944 233567|0.5 233568|0.56944 233569|0.72222 233570|0.5 233571|0.79167 233572|0.72222 233573|0.79167 233574|0.80556 233575|0.54167 233576|0.55556 233577|0.61111 233578|0.83333 233579|0.80556 233580|0.68056 233581|0.63889 233582|0.58333 233583|0.91667 233584|0.41667 233585|0.44444 233586|0.34722 233587|0.66667 233588|0.20833 233589|0.25 233590|0.15278 233591|0.11111 233592|0.16667 233593|0.56944 233594|0.51389 233595|0.56944 233596|0.51389 233597|0.73611 233598|0.63889 233599|0.86111 233600|0.38889 233601|0.51389 233602|0.52778 233603|0.055556 233604|0.27778 233605|0.48611 233606|0.5 233607|0.44444 233608|0.11111 233609|0.75 233610|0.59722 233611|0.70833 233612|0.083333 233613|0.5 233614|0.77778 233615|0.84722 233616|0.72222 233617|0.77778 233618|0.25 233619|0.76389 233620|0.80556 233621|0.61111 233622|0.61111 233623|0.43056 233624|0.84722 233625|0.54167 233626|0.72222 233627|0.77778 233628|0.52778 233629|0.69444 233630|0.40278 233631|0.25 233632|0.80556 233633|0.5 233634|0.66667 233635|0.88889 233636|0.5 233637|0.70833 233638|0.59722 233639|0.5 233640|0.15278 233641|0.33333 233642|0.38889 233643|0.43056 233644|0.61111 233645|0.81944 233646|0.61111 233647|0.65278 233648|0.75 233649|0.069444 233650|0.45833 233651|0.72222 233652|0.61111 233653|0.5 233654|0.5 233655|0.86111 233656|0.94444 233657|0.93056 233658|0.5 233659|0.66667 233660|0.65278 233661|0.48611 233662|0.5 233663|0.5 233664|0.5 233665|0.31944 233666|0.72222 233667|0.73611 233668|0.72222 233669|0.76389 233670|0.36111 233671|0.18056 233672|0.19444 233673|0.61111 233674|0.91667 233675|1 233676|0.94444 233677|0.70833 233678|0.61111 233679|0.26389 233680|0.61111 233681|0.69444 233682|0.77778 233683|0.54167 233684|0.11111 233685|0.33333 233686|0.29167 233687|0.13889 233688|0.52778 233689|0.31944 233690|0.36111 233691|0.5 233692|0.81944 233693|0.91667 233694|0.68056 233695|0.68056 233696|0.29167 233697|0.66667 233698|0.44444 233699|0.63889 233700|0.72222 233701|0.65278 233702|0.61111 233703|0.5 233704|0.54167 233705|0.68056 233706|0.66667 233707|0.76389 233708|0.61111 233709|0.76389 233710|0.95833 233711|0.79167 233712|0.48611 233713|0.93056 233714|0.47222 233715|0.36111 233716|0.38889 233717|0.5 233718|0.5 233719|0.56944 233720|0.65278 233721|0.5 233722|0.91667 233723|0.84722 233724|0.86111 233725|0.34722 233726|0.43056 233727|0.75 233728|0.44444 233729|0.48611 233730|0.61111 233731|0.22222 233732|0.5 233733|0.15278 233734|0.5 233735|0.47222 233736|0.58333 233737|0.5 233738|0.40278 233739|0.52778 233740|0.55556 233741|0.88889 233742|0.81944 233743|0.44444 233744|0.54167 233745|0.90278 233746|0.5 233747|1 233748|0.45833 233749|0.5 233750|0.51389 233751|0.59722 233752|0.5 233753|0.54167 233754|0.45833 233755|0.27778 233756|0.083333 233757|0.125 233758|0.54167 233759|0.18056 233760|0.38889 233761|0.19444 233762|0.5 233763|0.27778 233764|0.40278 233765|0.43056 233766|0.45833 233767|0.88889 233768|0.88889 233769|0.54167 233770|0.38889 233771|0.22222 233772|0.875 233773|0.375 233774|0.31944 233775|0.20833 233776|0.27778 233777|0.47222 233778|0.31944 233779|0.44444 233780|0.48611 233781|0.33333 233782|0.43056 233783|0.59722 233784|0.52778 233785|0.66667 233786|0.5 233787|0.44444 233788|0.47222 233789|0.43056 233790|0.55556 233791|0.5 233792|0.5 233793|0.33333 233794|0.45833 233795|0.20833 233796|0.22222 233797|0.34722 233798|0.54167 233799|0.15278 233800|0.5 233801|0.43056 233802|0.33333 233803|0.83333 233804|0.69444 233805|0.083333 233806|0.5 233807|0.40278 233808|0.26389 233809|0.20833 233810|0.55556 233811|0.5 233812|0.61111 233813|0.625 233814|0.33333 233815|0.52778 233816|0.5 233817|0.5 233818|0.45833 233819|0.5 233820|0.48611 233821|0.5 233822|0.45833 233823|0.31944 233824|0.19444 233825|0.54167 233826|0.43056 233827|0.40278 233828|0.43056 233829|0.5 233830|0.44444 233831|0.70833 233832|0.68056 233833|0.5 233834|0.47222 233835|0.34722 233836|0.27778 233837|0.26389 233838|0.36111 233839|0.61111 233840|0.52778 233841|0.5 233842|0.5 233843|0.5 233844|0.11111 233845|0.36111 233846|0.26389 233847|0.16667 233848|0.5 233849|0.48611 233850|0.34722 233851|0.29167 233852|0.45833 233853|0.45833 233854|0.36111 233855|0.22222 233856|0.36111 233857|0.16667 233858|0.375 233859|0.76389 233860|0.5 233861|0.22222 233862|0.48611 233863|0.38889 233864|0.58333 233865|0.44444 233866|0.5 233867|0.5 233868|0.77778 233869|0.25 233870|0.16667 233871|0.51389 233872|0.44444 233873|0.44444 233874|0.33333 233875|0.41667 233876|0.5 233877|0.40278 233878|0.29167 233879|0.41667 233880|0.59722 233881|0.58333 233882|0.61111 233883|0.027778 233884|0 233885|0.30556 233886|0.33333 233887|0.52778 233888|0.26389 233889|0.44444 233890|0.44444 233891|0.41667 233892|0.36111 233893|0.34722 233894|0.44444 233895|0.31944 233896|0.48611 233897|0.72222 233898|0.77778 233899|0.5 233900|0.52778 233901|0.55556 233902|0.51389 233903|0.38889 233904|0.61111 233905|0.86111 233906|0.25 233907|0.5 233908|0.83333 233909|0.47222 233910|0.125 233911|0.5 233912|0.55556 233913|0.083333 233914|0.38889 233915|0.72222 233916|0.22222 233917|0.38889 233918|0.61111 233919|0.5 233920|0.66667 233921|0.59722 233922|0.34722 233923|0.72222 233924|0.72222 233925|0.77778 233926|0.68056 233927|0.63889 233928|0.5 233929|0.5 233930|0.38889 233931|0.55556 233932|0.16667 233933|0.5 233934|0.23611 233935|0.375 233936|0.70833 233937|0.52778 233938|0.61111 233939|0.33333 233940|0.29167 233941|0.41667 233942|0.73611 233943|0.68056 233944|0.38889 233945|0.45833 233946|0.44444 233947|0.61111 233948|0.59722 233949|0.66667 233950|0.79167 233951|0.54167 233952|0.72222 233953|0.5 233954|0.19444 233955|0.38889 233956|0.81944 233957|0.88889 233958|0.22222 233959|0.15278 233960|0.91667 233961|0.26389 233962|0.5 233963|0.30556 233964|0.20833 233965|0.5 233966|0.69444 233967|0.54167 233968|0.61111 233969|0.86111 233970|0.5 233971|0.86111 233972|0.79167 233973|0.90278 233974|0.86111 233975|0.16667 233976|0.15278 233977|0.30556 233978|0.69444 233979|0.86111 233980|0.61111 233981|0.51389 233982|0.45833 233983|0.5 233984|0.5 233985|0.5 233986|0.5 233987|0.61111 233988|0.5 233989|0.55556 233990|0.55556 233991|0.52778 233992|0.5 233993|0.41667 233994|0.5 233995|0.44444 233996|0.59722 233997|0.5 233998|0.75 233999|0.5 234000|0.33333 234001|0.95833 234002|0.5 234003|0.76389 234004|0.58333 234005|0.26389 234006|0.5 234007|0.20833 234008|0.25 234009|0.5 234010|0.5 234011|0.47222 234012|0.5 234013|0.70833 234014|0.5 234015|0.58333 234016|0.5 234017|0.5 234018|0.59722 234019|0.38889 234020|0.44444 234021|0.18056 234022|0.5 234023|0.5 234024|0.5 234025|0.5 234026|0.5 234027|0.75 234028|0.40278 234029|0.30556 234030|0.069444 234031|0.61111 234032|0.45833 234033|0.33333 234034|0.45833 234035|0.055556 234036|0.55556 234037|0.55556 234038|0.45833 234039|0.38889 234040|0.66667 234041|0.11111 234042|0.43056 234043|0.63889 234044|0.55556 234045|0.40278 234046|0.26389 234047|0.44444 234048|0.22222 234049|0.33333 234050|0.55556 234051|0.59722 234052|0.94444 234053|0.95833 234054|0.43056 234055|0.27778 234056|0.13889 234057|0.44444 234058|0.30556 234059|0.5 234060|0.48611 234061|0.013889 234062|0.16667 234063|0.55556 234064|0.5 234065|0.54167 234066|0.76389 234067|0.76389 234068|0.75 234069|0.27778 234070|0.5 234071|0.44444 234072|0.45833 234073|0.26389 234074|0.5 234075|0.52778 234076|0.36111 234077|0.5 234078|0.52778 234079|0.40278 234080|0.625 234081|0.52778 234082|0.52778 234083|0.23611 234084|0.125 234085|0.16667 234086|0.29167 234087|0.61111 234088|0.58333 234089|0.73611 234090|0.61111 234091|0.44444 234092|0.25 234093|0.70833 234094|0.19444 234095|0.19444 234096|0.65278 234097|0.73611 234098|0.5 234099|0.5 234100|0.5 234101|0.5 234102|0.5 234103|0.70833 234104|0.55556 234105|0.625 234106|0.70833 234107|0.5 234108|0.5 234109|0.38889 234110|0.5 234111|0.59722 234112|0.125 234113|0.65278 234114|0.69444 234115|0.83333 234116|0.72222 234117|0.44444 234118|0.36111 234119|0.36111 234120|0.30556 234121|0.26389 234122|0.26389 234123|0.11111 234124|0.13889 234125|0.083333 234126|0.43056 234127|0.375 234128|0.083333 234129|0.31944 234130|0.48611 234131|0.66667 234132|0.38889 234133|0.52778 234134|0.31944 234135|0.5 234136|0.51389 234137|0.5 234138|0.44444 234139|0.5 234140|0.40278 234141|0.44444 234142|0.43056 234143|0.18056 234144|0.097222 234145|0.45833 234146|0.41667 234147|0.5 234148|0.43056 234149|0.44444 234150|0.11111 234151|0.54167 234152|0.5 234153|0.30556 234154|0.54167 234155|0.33333 234156|0.29167 234157|0.44444 234158|0.27778 234159|0.47222 234160|0.51389 234161|0.61111 234162|0.41667 234163|0.33333 234164|0.34722 234165|0.22222 234166|0.23611 234167|0.29167 234168|0.69444 234169|0.29167 234170|0.15278 234171|0.48611 234172|0.5 234173|0.38889 234174|0.33333 234175|0.58333 234176|0.56944 234177|0.77778 234178|0.26389 234179|0.47222 234180|0.25 234181|0.33333 234182|0.29167 234183|0.43056 234184|0.41667 234185|0.22222 234186|0.375 234187|0.41667 234188|0.55556 234189|0.45833 234190|0.47222 234191|0.59722 234192|0.65278 234193|0.43056 234194|0.48611 234195|0.33333 234196|0.27778 234197|0.41667 234198|0.38889 234199|0.47222 234200|0.29167 234201|0.33333 234202|0.5 234203|0.5 234204|0.52778 234205|0.68056 234206|0.055556 234207|0.55556 234208|0.43056 234209|0.34722 234210|0.23611 234211|0.38889 234212|0.16667 234213|0.68056 234214|0.25 234215|0.19444 234216|0.75 234217|0.27778 234218|0.44444 234219|0.55556 234220|0.5 234221|0.54167 234222|0.38889 234223|0.48611 234224|0.63889 234225|0.48611 234226|0.66667 234227|0.77778 234228|0.47222 234229|0.5 234230|0.5 234231|0.16667 234232|0.61111 234233|0.29167 234234|0.055556 234235|0.29167 234236|0.48611 234237|0.65278 234238|0.66667 234239|0.5 234240|0.5 234241|0.5 234242|0.5 234243|0.69444 234244|0.58333 234245|0.33333 234246|0.41667 234247|0.055556 234248|0.23611 234249|0.44444 234250|0.54167 234251|0.5 234252|0.79167 234253|0.5 234254|0.36111 234255|0.5 234256|0.76389 234257|0.54167 234258|0.51389 234259|0.47222 234260|0.44444 234261|0.5 234262|0.5 234263|0.5 234264|0.5 234265|0.54167 234266|0.58333 234267|0.5 234268|0.48611 234269|0.5 234270|0.5 234271|0.5 234272|0.5 234273|0.38889 234274|0.5 234275|0.5 234276|0.5 234277|0.56944 234278|0.36111 234279|0.52778 234280|0.59722 234281|0.5 234282|0.5 234283|0.5 234284|0.5 234285|0.625 234286|0.5 234287|0.5 234288|0.29167 234289|0.48611 234290|0.5 234291|0.5 234292|0.56944 234293|0.5 234294|0.48611 234295|0.5 234296|0.5 234297|0.5 234298|0.40278 234299|0.55556 234300|0.5 234301|0.5 234302|0.58333 234303|0.5 234304|0.5 234305|0.55556 234306|0.5 234307|0.5 234308|0.5 234309|0.68056 234310|0.52778 234311|0.56944 234312|0.5 234313|0.5 234314|0.63889 234315|0.51389 234316|0.5 234317|0.5 234318|0.5 234319|0.83333 234320|0.52778 234321|0.5 234322|0.5 234323|0.5 234324|0.5 234325|0.5 234326|0.5 234327|0.73611 234328|0.52778 234329|0.5 234330|0.5 234331|0.5 234332|0.5 234333|0.5 234334|0.5 234335|0.5 234336|0.44444 234337|0.5 234338|0.5 234339|0.55556 234340|0.5 234341|0.5 234342|0.5 234343|0.5 234344|0.5 234345|0.52778 234346|0.51389 234347|0.5 234348|0.5 234349|0.5 234350|0.5 234351|0.5 234352|0.5 234353|0.66667 234354|0.5 234355|0.58333 234356|0.375 234357|0.80556 234358|0.5 234359|0.56944 234360|0.5 234361|0.26389 234362|0.54167 234363|0.30556 234364|0.79167 234365|0.77778 234366|0.29167 234367|0.5 234368|0.54167 234369|0.625 234370|0.51389 234371|0.51389 234372|0.5 234373|0.56944 234374|0.47222 234375|0.45833 234376|0.5 234377|0.77778 234378|0.5 234379|0.5 234380|0.5 234381|0.5 234382|0.44444 234383|0.34722 234384|0.23611 234385|0.29167 234386|0.5 234387|0.56944 234388|0.5 234389|0.44444 234390|0.36111 234391|0.5 234392|0.34722 234393|0.40278 234394|0.30556 234395|0.22222 234396|0.56944 234397|0.43056 234398|0.61111 234399|0.72222 234400|0.5 234401|0.61111 234402|0.41667 234403|0.76389 234404|0.61111 234405|0.5 234406|0.59722 234407|0.54167 234408|0.5 234409|0.5 234410|0.73611 234411|0.61111 234412|0.15278 234413|0.66667 234414|0.65278 234415|0.41667 234416|0.5 234417|0.5 234418|0.5 234419|0.58333 234420|0.5 234421|0.5 234422|0.5 234423|0.52778 234424|0.61111 234425|0.36111 234426|0.44444 234427|0.45833 234428|0.59722 234429|0.875 234430|0.5 234431|0.5 234432|0.29167 234433|0.041667 234434|0.77778 234435|0.77778 234436|0.58333 234437|0.52778 234438|0.5 234439|0.48611 234440|0.41667 234441|0.22222 234442|0.72222 234443|0.65278 234444|0.5 234445|0.47222 234446|0.44444 234447|0.125 234448|0.44444 234449|0.5 234450|0.75 234451|0.77778 234452|0.5 234453|0.68056 234454|0.5 234455|0.5 234456|0.66667 234457|0.44444 234458|0.5 234459|0.72222 234460|0.48611 234461|0.5 234462|0.61111 234463|0.5 234464|0.5 234465|0.34722 234466|0.5 234467|0.125 234468|0.70833 234469|0.48611 234470|0.93056 234471|0.51389 234472|0.5 234473|0.44444 234474|0.59722 234475|0.55556 234476|0.5 234477|0.5 234478|0.5 234479|0.55556 234480|0.61111 234481|0.44444 234482|0.63889 234483|0.5 234484|0.61111 234485|0.65278 234486|0.51389 234487|0.27778 234488|0.5 234489|0.47222 234490|0.55556 234491|0.55556 234492|0.5 234493|0.44444 234494|0.75 234495|0.5 234496|0.51389 234497|0.76389 234498|0.38889 234499|0.5 234500|0.5 234501|0.43056 234502|0.47222 234503|0.5 234504|0.58333 234505|0.63889 234506|0.54167 234507|0.80556 234508|0.86111 234509|0.38889 234510|0.44444 234511|0.5 234512|0.5 234513|0.44444 234514|0.41667 234515|0.5 234516|0.5 234517|0.5 234518|0.5 234519|0.51389 234520|0.48611 234521|0.5 234522|0.44444 234523|0.5 234524|0.5 234525|0.38889 234526|0.38889 234527|0.79167 234528|0.63889 234529|0.5 234530|0.69444 234531|0.54167 234532|0.54167 234533|0.36111 234534|0.80556 234535|0.56944 234536|0.33333 234537|0.43056 234538|0.5 234539|0.40278 234540|0.5 234541|0.34722 234542|0.625 234543|0.55556 234544|0.5 234545|0.5 234546|0.5 234547|0.38889 234548|0.75 234549|0.55556 234550|0.98611 234551|0.86111 234552|0.875 234553|0.5 234554|0.93056 234555|0.72222 234556|0.5 234557|0.30556 234558|0.72222 234559|0.51389 234560|0.51389 234561|0.5 234562|0.81944 234563|0.5 234564|0.54167 234565|0.55556 234566|0.5 234567|0.5 234568|0.5 234569|0.375 234570|0.11111 234571|0.5 234572|0.65278 234573|0.875 234574|0.40278 234575|0.55556 234576|0.69444 234577|0.48611 234578|0.51389 234579|0.5 234580|0.58333 234581|0.5 234582|0.5 234583|0.5 234584|0.083333 234585|0.83333 234586|0.81944 234587|0.56944 234588|0.125 234589|0.55556 234590|0.75 234591|0.875 234592|0.44444 234593|0.43056 234594|0.5 234595|0.18056 234596|0.41667 234597|0.5 234598|0.66667 234599|0.34722 234600|0.5 234601|0.5 234602|0.16667 234603|0.72222 234604|0.61111 234605|0.5 234606|0.58333 234607|0.45833 234608|0.5 234609|0.5 234610|0.84722 234611|0.48611 234612|0.5 234613|0.63889 234614|0.70833 234615|0.41667 234616|0.43056 234617|0.51389 234618|0.38889 234619|0.55556 234620|0.83333 234621|0.69444 234622|0.72222 234623|0.83333 234624|0.44444 234625|0.5 234626|0.76389 234627|0.625 234628|0.69444 234629|0.83333 234630|0.72222 234631|0.625 234632|0.125 234633|0.25 234634|0.72222 234635|0.47222 234636|0.65278 234637|0.55556 234638|0.16667 234639|0.34722 234640|0.79167 234641|0.73611 234642|0.69444 234643|0.54167 234644|0.44444 234645|0.44444 234646|0.41667 234647|0.55556 234648|0.5 234649|0.25 234650|0.5 234651|0.27778 234652|0.36111 234653|0.63889 234654|0.41667 234655|0.84722 234656|0.52778 234657|0.5 234658|0.5 234659|0.5 234660|0.5 234661|0.5 234662|0.36111 234663|0.30556 234664|0.5 234665|0.19444 234666|0.5 234667|0.5 234668|0.5 234669|0.58333 234670|0.63889 234671|0.27778 234672|0.5 234673|0.80556 234674|0.56944 234675|0.5 234676|0.5 234677|0.41667 234678|0.27778 234679|0.55556 234680|0.5 234681|0.5 234682|0.44444 234683|0.5 234684|0.47222 234685|0.69444 234686|0.55556 234687|0.5 234688|0.5 234689|0.45833 234690|0.55556 234691|0.5 234692|0.5 234693|0.36111 234694|0.375 234695|0.83333 234696|0.5 234697|0.083333 234698|0.58333 234699|0.56944 234700|0.55556 234701|0.77778 234702|0.38889 234703|0.875 234704|0.5 234705|0.5 234706|0.5 234707|0.72222 234708|0.55556 234709|0.5 234710|0.5 234711|0.55556 234712|0.5 234713|0.5 234714|0.16667 234715|0.26389 234716|0.36111 234717|0.30556 234718|0.33333 234719|0.5 234720|0.69444 234721|0.51389 234722|0.083333 234723|0.25 234724|0.69444 234725|0.75 234726|0.58333 234727|0.73611 234728|0.5 234729|0.18056 234730|0.93056 234731|0.52778 234732|0.95833 234733|0.23611 234734|0.88889 234735|0.88889 234736|0.76389 234737|0.94444 234738|0.31944 234739|0.23611 234740|0.95833 234741|0.55556 234742|0.52778 234743|0.65278 234744|0.56944 234745|0.5 234746|0.5 234747|0.5 234748|0.5 234749|0.5 234750|0.63889 234751|0.63889 234752|0.47222 234753|0.80556 234754|0.55556 234755|0.5 234756|0.45833 234757|0.375 234758|0.27778 234759|0.26389 234760|0.20833 234761|0.25 234762|0.54167 234763|0.41667 234764|0.52778 234765|0.55556 234766|0.5 234767|0.43056 234768|0.5 234769|0.44444 234770|0.27778 234771|0.48611 234772|0.51389 234773|0.66667 234774|0.86111 234775|0.61111 234776|0.55556 234777|0.5 234778|0.47222 234779|0.16667 234780|0.26389 234781|0.097222 234782|0.51389 234783|0.76389 234784|0.73611 234785|0.61111 234786|0.38889 234787|0.22222 234788|0.56944 234789|0.93056 234790|0.54167 234791|0.44444 234792|0.5 234793|0.51389 234794|0.083333 234795|0.15278 234796|0.55556 234797|0.58333 234798|0.70833 234799|0.66667 234800|0.5 234801|0.31944 234802|0.5 234803|0.5 234804|0.33333 234805|0.5 234806|0.38889 234807|0.44444 234808|0.5 234809|0.44444 234810|0.40278 234811|0.65278 234812|0.22222 234813|0.45833 234814|0.36111 234815|0.41667 234816|0.5 234817|0.93056 234818|0.86111 234819|0.15278 234820|0.5 234821|0.54167 234822|0.5 234823|0.5 234824|0.18056 234825|0.34722 234826|0.19444 234827|0.19444 234828|0.375 234829|0.63889 234830|0.30556 234831|0.23611 234832|0.66667 234833|0.48611 234834|0.31944 234835|0.44444 234836|0.30556 234837|0.34722 234838|0.23611 234839|0.22222 234840|0.16667 234841|0.5 234842|0.5 234843|0.68056 234844|0.5 234845|0.5 234846|0.44444 234847|0.43056 234848|0.5 234849|0.54167 234850|0.79167 234851|0.83333 234852|0.29167 234853|0.25 234854|0.16667 234855|0.5 234856|0.16667 234857|0.13889 234858|0.5 234859|0.83333 234860|0.5 234861|0.11111 234862|0.375 234863|0.22222 234864|0.61111 234865|0.45833 234866|0.44444 234867|0.44444 234868|0.5 234869|0.61111 234870|0.48611 234871|0.54167 234872|0.54167 234873|0.59722 234874|0.5 234875|0.48611 234876|0.59722 234877|0.58333 234878|0.55556 234879|0.5 234880|0.44444 234881|0.5 234882|0.41667 234883|0.5 234884|0.5 234885|0.51389 234886|0.47222 234887|0.44444 234888|0.58333 234889|0.44444 234890|0.52778 234891|0.19444 234892|0.27778 234893|0.80556 234894|0.65278 234895|0.38889 234896|0.25 234897|0.30556 234898|0.55556 234899|0.5 234900|0.70833 234901|0.61111 234902|0.55556 234903|0.38889 234904|0.625 234905|0.77778 234906|0.41667 234907|0.625 234908|0.38889 234909|0.38889 234910|0.55556 234911|0.75 234912|0.68056 234913|0.80556 234914|0.73611 234915|0.5 234916|0.83333 234917|0.73611 234918|0.47222 234919|0.29167 234920|0.5 234921|0.54167 234922|0.34722 234923|0.36111 234924|0.5 234925|0.44444 234926|0.5 234927|0.54167 234928|0.18056 234929|0.94444 234930|0.5 234931|0.81944 234932|0.73611 234933|0.5 234934|0.5 234935|0.5 234936|0.83333 234937|0.80556 234938|0.38889 234939|0.34722 234940|0.47222 234941|0.5 234942|0.15278 234943|0.5 234944|0.31944 234945|0.069444 234946|0.27778 234947|0.097222 234948|0.18056 234949|0.51389 234950|0.5 234951|0.55556 234952|0.72222 234953|0.76389 234954|0.055556 234955|0.13889 234956|0.36111 234957|0.19444 234958|0.73611 234959|0.29167 234960|0.68056 234961|0.72222 234962|0.5 234963|0.63889 234964|0.52778 234965|0.56944 234966|0.5 234967|0.44444 234968|0.47222 234969|0.54167 234970|0.52778 234971|0.48611 234972|0.5 234973|0.51389 234974|0.55556 234975|0.55556 234976|0.125 234977|0.69444 234978|0.65278 234979|0.61111 234980|0.54167 234981|0.66667 234982|0.44444 234983|0.44444 234984|0.27778 234985|0.31944 234986|0.44444 234987|0.41667 234988|0.41667 234989|0.375 234990|0.48611 234991|0.81944 234992|0.5 234993|0.5 234994|0.58333 234995|0.69444 234996|0.63889 234997|0.59722 234998|0.72222 234999|0.65278 235000|0.5 235001|0.5 235002|0.5 235003|0.40278 235004|0.097222 235005|0.44444 235006|0.48611 235007|0.5 235008|0.55556 235009|0.48611 235010|0.77778 235011|0.81944 235012|0.54167 235013|0.65278 235014|0.41667 235015|0.55556 235016|0.375 235017|0.48611 235018|0.5 235019|0.083333 235020|0.43056 235021|0.55556 235022|0.52778 235023|0.56944 235024|0.36111 235025|0.22222 235026|0.55556 235027|0.47222 235028|0.5 235029|0.44444 235030|0.29167 235031|0.36111 235032|0.30556 235033|0.18056 235034|0.26389 235035|0.66667 235036|0.83333 235037|0.55556 235038|0.44444 235039|0.38889 235040|0.61111 235041|0.52778 235042|0.51389 235043|0.58333 235044|0.38889 235045|0.52778 235046|0.55556 235047|0.88889 235048|0.52778 235049|0.66667 235050|0.75 235051|0.75 235052|0.55556 235053|0.47222 235054|0.069444 235055|0.33333 235056|0.40278 235057|0.26389 235058|0.34722 235059|0.47222 235060|0.44444 235061|0.58333 235062|0.73611 235063|0.5 235064|0.59722 235065|0.5 235066|0.61111 235067|0.70833 235068|0.26389 235069|0.66667 235070|0.44444 235071|0.5 235072|0.5 235073|0.5 235074|0.5 235075|0.36111 235076|0.56944 235077|0.48611 235078|0.375 235079|0.55556 235080|0.5 235081|0.51389 235082|0.26389 235083|0.30556 235084|0.5 235085|0.5 235086|0.5 235087|0.72222 235088|0.80556 235089|0.79167 235090|0.68056 235091|0.80556 235092|0.375 235093|0.52778 235094|0.65278 235095|0.40278 235096|0.77778 235097|0.27778 235098|0.66667 235099|0.45833 235100|0.72222 235101|0.81944 235102|0.81944 235103|0.5 235104|0.81944 235105|0.22222 235106|0.23611 235107|0.5 235108|0.5 235109|0.5 235110|0.5 235111|0.5 235112|0.72222 235113|0.48611 235114|0.30556 235115|0.43056 235116|0.36111 235117|0.44444 235118|0.75 235119|0.48611 235120|0.58333 235121|0.33333 235122|0.61111 235123|0.44444 235124|0.44444 235125|0.27778 235126|0.44444 235127|0.38889 235128|0.48611 235129|0.48611 235130|0.5 235131|0.11111 235132|0.38889 235133|0.47222 235134|0.66667 235135|0.5 235136|0.40278 235137|0 235138|0.5 235139|0.22222 235140|0.63889 235141|0.48611 235142|0.27778 235143|0.36111 235144|0.5 235145|0.47222 235146|0.77778 235147|0.25 235148|0.41667 235149|0.5 235150|0.51389 235151|0.65278 235152|0.69444 235153|0.70833 235154|0.52778 235155|0.61111 235156|0.5 235157|0.72222 235158|0.80556 235159|0.75 235160|0.5 235161|0.5 235162|0.069444 235163|0.58333 235164|0.84722 235165|0.88889 235166|0.30556 235167|0.27778 235168|0.22222 235169|0.5 235170|0.55556 235171|0.55556 235172|0.34722 235173|0.30556 235174|0.5 235175|0.38889 235176|0.90278 235177|0.83333 235178|0.91667 235179|0.47222 235180|0.29167 235181|0.30556 235182|0.36111 235183|0.23611 235184|0.44444 235185|0.84722 235186|0.54167 235187|0.51389 235188|0.27778 235189|0.23611 235190|0.45833 235191|0.5 235192|0.70833 235193|0.91667 235194|0.51389 235195|0.61111 235196|0.5 235197|0.48611 235198|0.38889 235199|0.5 235200|0.30556 235201|0.79167 235202|0.72222 235203|0.51389 235204|0.5 235205|0.16667 235206|0.23611 235207|0.33333 235208|0.38889 235209|0.30556 235210|0.34722 235211|0.45833 235212|0.5 235213|0.26389 235214|0.29167 235215|0.375 235216|0.069444 235217|0.5 235218|0.61111 235219|0.055556 235220|0.5 235221|0.125 235222|0.55556 235223|0.5 235224|0.375 235225|0 235226|0.11111 235227|0.72222 235228|0.5 235229|0.5 235230|0.41667 235231|0.625 235232|0.66667 235233|0.5 235234|0.51389 235235|0.5 235236|0.54167 235237|0.5 235238|0.55556 235239|0.5 235240|0.5 235241|0.83333 235242|0.5 235243|0.23611 235244|0.26389 235245|0.30556 235246|0.70833 235247|0.45833 235248|0.66667 235249|0.73611 235250|0.70833 235251|0.66667 235252|0.65278 235253|0.88889 235254|0.69444 235255|0.51389 235256|0.55556 235257|0.55556 235258|0.5 235259|0.51389 235260|0.5 235261|0.15278 235262|0.16667 235263|0.58333 235264|0.47222 235265|0.38889 235266|0.36111 235267|0.5 235268|0.11111 235269|0.31944 235270|0.5 235271|0.5 235272|0.61111 235273|0.44444 235274|0.59722 235275|0.5 235276|0.33333 235277|0.70833 235278|0.80556 235279|0.38889 235280|0.34722 235281|0.61111 235282|0.29167 235283|0.5 235284|0.51389 235285|0.5 235286|0.5 235287|0.5 235288|0.55556 235289|0.55556 235290|0.5 235291|0.48611 235292|0.5 235293|0.5 235294|0.19444 235295|0.16667 235296|0.30556 235297|0.15278 235298|0.72222 235299|0.77778 235300|0.80556 235301|0.51389 235302|0.5 235303|0.52778 235304|0.51389 235305|0.66667 235306|0.86111 235307|0.90278 235308|0.5 235309|0.5 235310|0.29167 235311|0.58333 235312|0.5 235313|0.5 235314|0.375 235315|0.31944 235316|0.86111 235317|0.73611 235318|0.5 235319|0.38889 235320|0.61111 235321|0.51389 235322|0.027778 235323|0.34722 235324|0.86111 235325|0.73611 235326|0.72222 235327|0.625 235328|0.55556 235329|0.65278 235330|0.16667 235331|0.11111 235332|0.55556 235333|0.125 235334|0.15278 235335|0.36111 235336|0.375 235337|0.61111 235338|0.27778 235339|0.51389 235340|0.5 235341|0.69444 235342|0.083333 235343|0.38889 235344|0.43056 235345|0.625 235346|0.54167 235347|0.72222 235348|0.11111 235349|0.61111 235350|0.55556 235351|0.5 235352|0.5 235353|0.43056 235354|0.5 235355|0.76389 235356|0.5 235357|0.5 235358|0.27778 235359|0.72222 235360|0.72222 235361|0.625 235362|0.55556 235363|0.5 235364|0.44444 235365|0.41667 235366|0.5 235367|0.30556 235368|0.44444 235369|0.40278 235370|0.45833 235371|0.5 235372|0.5 235373|0.61111 235374|0.625 235375|0.51389 235376|0.5 235377|0.45833 235378|0.31944 235379|0.80556 235380|0.73611 235381|0.76389 235382|0.88889 235383|0.5 235384|0.56944 235385|0.45833 235386|0.56944 235387|0.76389 235388|0.66667 235389|0.25 235390|0.61111 235391|0.58333 235392|0.5 235393|0.45833 235394|0.61111 235395|0.79167 235396|0.22222 235397|0.013889 235398|0.125 235399|0.055556 235400|0.15278 235401|0.40278 235402|0.36111 235403|0.40278 235404|0.5 235405|0.81944 235406|0.83333 235407|0.88889 235408|0.70833 235409|0.59722 235410|0.47222 235411|0.77778 235412|0.88889 235413|0.31944 235414|0.26389 235415|0.22222 235416|0.16667 235417|0.23611 235418|0.31944 235419|0.31944 235420|0.44444 235421|0.5 235422|0.69444 235423|0.83333 235424|0.16667 235425|0.16667 235426|0.25 235427|0.31944 235428|0.61111 235429|0.5 235430|0.47222 235431|0.27778 235432|0.75 235433|0.84722 235434|0.52778 235435|0.34722 235436|0.52778 235437|0.58333 235438|0.43056 235439|0.875 235440|0.79167 235441|0.83333 235442|0.59722 235443|0.54167 235444|0.52778 235445|0.55556 235446|0.75 235447|0.055556 235448|0.5 235449|0.5 235450|0.47222 235451|0.56944 235452|0.5 235453|0.58333 235454|0.5 235455|0.54167 235456|0.19444 235457|0.5 235458|0.48611 235459|0.44444 235460|0.16667 235461|0.5 235462|0.44444 235463|0.44444 235464|0.5 235465|0.5 235466|0.15278 235467|0.34722 235468|0.22222 235469|0.5 235470|0.5 235471|0.44444 235472|0.43056 235473|0.5 235474|0.56944 235475|0.69444 235476|0.44444 235477|0.36111 235478|0.38889 235479|0.43056 235480|0.33333 235481|0.34722 235482|0.27778 235483|0.5 235484|0.16667 235485|0.56944 235486|0.18056 235487|0.5 235488|0.47222 235489|0.5 235490|0.5 235491|0.5 235492|0.44444 235493|0.40278 235494|0.75 235495|0.55556 235496|0.56944 235497|0.5 235498|0.5 235499|0.56944 235500|0.38889 235501|0.56944 235502|0.5 235503|0.40278 235504|0.79167 235505|0.34722 235506|0.375 235507|0.5 235508|0.5 235509|0.80556 235510|0.51389 235511|0.52778 235512|0.51389 235513|0.36111 235514|0.15278 235515|0.61111 235516|0.30556 235517|0.125 235518|0.22222 235519|0.5 235520|0.52778 235521|0.72222 235522|0.44444 235523|0.55556 235524|0.44444 235525|0.44444 235526|0.58333 235527|0.56944 235528|0.66667 235529|0.52778 235530|0.16667 235531|0.33333 235532|0.625 235533|0.625 235534|0.59722 235535|0.73611 235536|0.61111 235537|0.375 235538|0.38889 235539|0.38889 235540|0.38889 235541|0.43056 235542|0.34722 235543|0.61111 235544|0.041667 235545|0.125 235546|0.73611 235547|0.18056 235548|0.27778 235549|0.55556 235550|0.23611 235551|0.40278 235552|0.16667 235553|0.19444 235554|0.69444 235555|0.43056 235556|0.44444 235557|0.5 235558|0.38889 235559|0.27778 235560|0.77778 235561|0.47222 235562|0.38889 235563|0.59722 235564|0.38889 235565|0.29167 235566|0.31944 235567|0.47222 235568|0.38889 235569|0.38889 235570|0.5 235571|0.22222 235572|0.27778 235573|0.27778 235574|0.69444 235575|0.68056 235576|0.38889 235577|0.76389 235578|0.5 235579|0.43056 235580|0.5 235581|0.58333 235582|0.56944 235583|0.5 235584|0.5 235585|0.5 235586|0.44444 235587|0.54167 235588|0.51389 235589|0.40278 235590|0.47222 235591|0.23611 235592|0.5 235593|0.77778 235594|0.52778 235595|0.38889 235596|0.27778 235597|0.66667 235598|0.5 235599|0.5 235600|0.47222 235601|0.5 235602|0.45833 235603|0.45833 235604|0.22222 235605|0.36111 235606|0.54167 235607|0.5 235608|0.55556 235609|0.375 235610|0.18056 235611|0.36111 235612|0.36111 235613|0.27778 235614|0.63889 235615|0.54167 235616|0.41667 235617|0.55556 235618|0.61111 235619|0.75 235620|0.11111 235621|0.125 235622|0.47222 235623|0.41667 235624|0.45833 235625|0.55556 235626|0.30556 235627|0.5 235628|0.59722 235629|0.56944 235630|0.72222 235631|0.5 235632|0.51389 235633|0.5 235634|0.34722 235635|0.86111 235636|0.5 235637|0.5 235638|0.48611 235639|0.55556 235640|0.26389 235641|0.47222 235642|0.75 235643|0.88889 235644|0.5 235645|0.38889 235646|0.33333 235647|0.31944 235648|0.26389 235649|0.20833 235650|0.72222 235651|0.81944 235652|0.79167 235653|0.75 235654|0.75 235655|0.875 235656|0.66667 235657|0.69444 235658|0.69444 235659|0.61111 235660|0.5 235661|0.79167 235662|0.77778 235663|0.29167 235664|0.34722 235665|0.70833 235666|0.5 235667|0.55556 235668|0.51389 235669|0.55556 235670|0.73611 235671|0.40278 235672|0.48611 235673|0.54167 235674|0.5 235675|0.5 235676|0.5 235677|0.45833 235678|0.44444 235679|0.40278 235680|0.083333 235681|0.11111 235682|0.38889 235683|0.34722 235684|0.22222 235685|0.16667 235686|0.55556 235687|0.55556 235688|0.54167 235689|0.5 235690|0.27778 235691|0.45833 235692|0.61111 235693|0.72222 235694|0.625 235695|0.66667 235696|0.34722 235697|0.33333 235698|0.36111 235699|0.43056 235700|0.54167 235701|0.66667 235702|0.61111 235703|0.27778 235704|0.29167 235705|0.30556 235706|0.52778 235707|0.625 235708|0.41667 235709|0.65278 235710|0.66667 235711|0.43056 235712|0.5 235713|0.47222 235714|0.33333 235715|0.56944 235716|0.5 235717|0.5 235718|0.56944 235719|0.45833 235720|0.45833 235721|0.75 235722|0.79167 235723|0.61111 235724|0.54167 235725|0.61111 235726|0.75 235727|0.5 235728|0.38889 235729|0.5 235730|0.83333 235731|0.90278 235732|0.69444 235733|0.38889 235734|0.5 235735|0.5 235736|0.54167 235737|0.55556 235738|0.52778 235739|0 235740|0.11111 235741|0.51389 235742|0.625 235743|0.47222 235744|0.15278 235745|0.41667 235746|0.29167 235747|0.27778 235748|0.33333 235749|0.34722 235750|0.5 235751|0.79167 235752|0.83333 235753|0.47222 235754|0.069444 235755|0.5 235756|0.22222 235757|0.5 235758|0.5 235759|0.5 235760|0.5 235761|0.5 235762|0.5 235763|0.5 235764|0.5 235765|0.5 235766|0.5 235767|0.5 235768|0.5 235769|0.5 235770|0.097222 235771|0.5 235772|0.55556 235773|0.5 235774|0.44444 235775|0.72222 235776|0.5 235777|0.41667 235778|0.5 235779|0.47222 235780|0.31944 235781|0.5 235782|0.66667 235783|0.65278 235784|0.79167 235785|0.33333 235786|0.77778 235787|0.5 235788|0.61111 235789|0.29167 235790|0.5 235791|0.5 235792|0.55556 235793|0.38889 235794|0.13889 235795|0.5 235796|0.65278 235797|0.19444 235798|0.22222 235799|0.5 235800|0.47222 235801|0.41667 235802|0.097222 235803|0.16667 235804|0.16667 235805|0.23611 235806|0.61111 235807|0.47222 235808|0.44444 235809|0.36111 235810|0.30556 235811|0.5 235812|0.44444 235813|0.5 235814|0.44444 235815|0.38889 235816|0.44444 235817|0.38889 235818|0.33333 235819|0.22222 235820|0.36111 235821|0.18056 235822|0.30556 235823|0.16667 235824|0.375 235825|0.27778 235826|0.27778 235827|0.5 235828|0.5 235829|0.23611 235830|0.44444 235831|0.73611 235832|0.5 235833|0.45833 235834|0.94444 235835|0.20833 235836|0.61111 235837|0.625 235838|0.69444 235839|0.41667 235840|0.26389 235841|0.65278 235842|0.51389 235843|0.16667 235844|0.29167 235845|0.16667 235846|0.40278 235847|0.5 235848|0.23611 235849|0.43056 235850|0.45833 235851|0.61111 235852|0.625 235853|0.5 235854|0.375 235855|0.25 235856|0.51389 235857|0.19444 235858|0.5 235859|0.44444 235860|0.55556 235861|0.66667 235862|0.375 235863|0.51389 235864|0.26389 235865|0.79167 235866|0.54167 235867|0.38889 235868|0.16667 235869|0.77778 235870|0.73611 235871|0.22222 235872|0.13889 235873|0.15278 235874|0.73611 235875|0.125 235876|0.65278 235877|0.5 235878|0.375 235879|0.44444 235880|0.81944 235881|0.19444 235882|0.5 235883|0.44444 235884|0.5 235885|0.51389 235886|0.54167 235887|0.69444 235888|0.88889 235889|0.69444 235890|0.22222 235891|0.43056 235892|0.27778 235893|0.43056 235894|0.5 235895|0.38889 235896|0.31944 235897|0.66667 235898|0.47222 235899|0.83333 235900|0.69444 235901|0.72222 235902|0.76389 235903|0.77778 235904|0.88889 235905|0.72222 235906|0.44444 235907|0.5 235908|0.61111 235909|0.5 235910|0.15278 235911|0.51389 235912|0.38889 235913|0.18056 235914|0.33333 235915|0.61111 235916|0.625 235917|0.875 235918|0.65278 235919|0.5 235920|0.25 235921|0.5 235922|0.40278 235923|0.31944 235924|0.93056 235925|0.5 235926|0.29167 235927|0.56944 235928|0.5 235929|0.5 235930|0.44444 235931|0.54167 235932|0.66667 235933|0.47222 235934|0.34722 235935|0.625 235936|0.55556 235937|0.041667 235938|0.18056 235939|0.81944 235940|0.15278 235941|0.77778 235942|0 235943|0.79167 235944|0.58333 235945|0.69444 235946|0.69444 235947|0.083333 235948|0.125 235949|0.30556 235950|0.75 235951|0.22222 235952|0.76389 235953|0.63889 235954|0.75 235955|0.34722 235956|0.43056 235957|0.41667 235958|0.70833 235959|0.51389 235960|0.73611 235961|0.5 235962|0.5 235963|0.375 235964|0.097222 235965|0.45833 235966|0.5 235967|0.5 235968|0.375 235969|0.27778 235970|0.34722 235971|0.013889 235972|0.72222 235973|0.43056 235974|0.5 235975|0.79167 235976|0.65278 235977|0.66667 235978|0.5 235979|0.52778 235980|0.45833 235981|0.44444 235982|0.5 235983|0.5 235984|0.5 235985|0.72222 235986|0.44444 235987|0.54167 235988|0.5 235989|0.5 235990|0.58333 235991|0.56944 235992|0.52778 235993|0.5 235994|0.22222 235995|0.5 235996|0.63889 235997|0.55556 235998|0.59722 235999|0.63889 236000|0.5 236001|0.44444 236002|0.625 236003|0.5 236004|0.41667 236005|0.44444 236006|0.48611 236007|0.29167 236008|0.27778 236009|0.47222 236010|0.36111 236011|0.40278 236012|0.22222 236013|0.5 236014|0.38889 236015|0.069444 236016|0.5 236017|0.66667 236018|0.5 236019|0.43056 236020|0.41667 236021|0.45833 236022|0.80556 236023|0.90278 236024|0.33333 236025|0.5 236026|0.5 236027|0.26389 236028|0.44444 236029|0.58333 236030|0.5 236031|0.59722 236032|0.66667 236033|0.19444 236034|0.72222 236035|0.43056 236036|0.125 236037|0.11111 236038|0.52778 236039|0.75 236040|0.76389 236041|0.55556 236042|0.58333 236043|0.61111 236044|0.72222 236045|0.5 236046|0.56944 236047|0.5 236048|0.5 236049|0.45833 236050|0.25 236051|0.52778 236052|0.22222 236053|0.55556 236054|0.61111 236055|0.41667 236056|0.73611 236057|0.40278 236058|0.19444 236059|0.66667 236060|0.36111 236061|0.5 236062|0.29167 236063|0.41667 236064|0.5 236065|0.68056 236066|0.55556 236067|0.5 236068|0.69444 236069|0.52778 236070|0.47222 236071|0.41667 236072|0.52778 236073|0.41667 236074|0.61111 236075|0.55556 236076|0.69444 236077|0.58333 236078|0.5 236079|0.55556 236080|0.48611 236081|0.54167 236082|0.44444 236083|0.41667 236084|0.45833 236085|0.36111 236086|0.38889 236087|0.44444 236088|0.16667 236089|0.65278 236090|0.70833 236091|0.76389 236092|0.5 236093|0.5 236094|0.33333 236095|0.36111 236096|0.25 236097|0.80556 236098|0.13889 236099|0.63889 236100|0.59722 236101|0.66667 236102|0.77778 236103|0.75 236104|0.5 236105|0.38889 236106|0.75 236107|0.61111 236108|0.48611 236109|0.18056 236110|0.72222 236111|0.83333 236112|0.80556 236113|0.72222 236114|0.79167 236115|0.73611 236116|0.23611 236117|0.77778 236118|0.30556 236119|0.52778 236120|0.5 236121|0.20833 236122|0.43056 236123|0.36111 236124|0.52778 236125|0.27778 236126|0.5 236127|0.5 236128|0.5 236129|0.76389 236130|0.58333 236131|0.63889 236132|0.55556 236133|0.40278 236134|0.22222 236135|0.30556 236136|0.52778 236137|0.26389 236138|0.33333 236139|0.27778 236140|0.097222 236141|0.5 236142|0.5 236143|0.5 236144|0.5 236145|0.45833 236146|0.41667 236147|0.65278 236148|0.5 236149|0.5 236150|0.44444 236151|0.77778 236152|0.59722 236153|0.34722 236154|0.83333 236155|0.41667 236156|0.27778 236157|0.63889 236158|0.52778 236159|0.19444 236160|0.40278 236161|0.13889 236162|0.55556 236163|0.375 236164|0.86111 236165|0.83333 236166|0.68056 236167|0.625 236168|0.20833 236169|0.25 236170|0.84722 236171|0.625 236172|0.51389 236173|0.34722 236174|0.013889 236175|0.44444 236176|0.81944 236177|0.51389 236178|0.56944 236179|0.56944 236180|0.52778 236181|0.77778 236182|0.625 236183|0.125 236184|0.5 236185|0.40278 236186|0.63889 236187|0.80556 236188|0.44444 236189|0.055556 236190|0.11111 236191|0.56944 236192|0.68056 236193|0.63889 236194|0.40278 236195|0.5 236196|0.625 236197|0.65278 236198|0.75 236199|0.5 236200|0.69444 236201|0.55556 236202|0.55556 236203|0.66667 236204|0.5 236205|0.55556 236206|0.65278 236207|0.76389 236208|0.63889 236209|0.70833 236210|0.5 236211|0.69444 236212|0.81944 236213|0.83333 236214|0.58333 236215|0.65278 236216|0.20833 236217|0.83333 236218|0.44444 236219|0.5 236220|0.45833 236221|0.5 236222|0.22222 236223|0.61111 236224|0.63889 236225|0.52778 236226|0.31944 236227|0.41667 236228|0.55556 236229|0.5 236230|0.75 236231|0.5 236232|0.80556 236233|0.61111 236234|0.52778 236235|0.16667 236236|0.11111 236237|0.58333 236238|0.55556 236239|0.68056 236240|0.61111 236241|0.5 236242|0.5 236243|0.31944 236244|0.36111 236245|0.5 236246|0.48611 236247|0.375 236248|0.5 236249|0.5 236250|0.52778 236251|0.51389 236252|0.5 236253|0.52778 236254|0.5 236255|0.16667 236256|0.5 236257|0.26389 236258|0.55556 236259|0.31944 236260|0.38889 236261|0.23611 236262|0.25 236263|0.5 236264|0.59722 236265|0.41667 236266|0.5 236267|0.52778 236268|0.47222 236269|0.625 236270|0.38889 236271|0.44444 236272|0.5 236273|0.59722 236274|0.47222 236275|0.23611 236276|0.31944 236277|0.66667 236278|0.75 236279|0.16667 236280|0.88889 236281|0.27778 236282|0.38889 236283|0.52778 236284|0.23611 236285|0.55556 236286|0.55556 236287|0.55556 236288|0.5 236289|0.5 236290|0.5 236291|0.55556 236292|0.61111 236293|0.875 236294|0.51389 236295|0.47222 236296|0.5 236297|0.66667 236298|0.5 236299|0.5 236300|0.5 236301|0.51389 236302|0.5 236303|0.5 236304|0.5 236305|0.375 236306|0.51389 236307|0.58333 236308|0.5 236309|0.54167 236310|0.51389 236311|0.44444 236312|0.5 236313|0.5 236314|0.44444 236315|0.5 236316|0.5 236317|0.58333 236318|0.48611 236319|0.5 236320|0.58333 236321|0.55556 236322|0.27778 236323|0.56944 236324|0.5 236325|0.875 236326|0.18056 236327|0.59722 236328|0.43056 236329|0.47222 236330|0.29167 236331|0.58333 236332|0.5 236333|0.5 236334|0.40278 236335|0.22222 236336|0.5 236337|0.44444 236338|0.55556 236339|0.5 236340|0.77778 236341|0.5 236342|0.55556 236343|0.5 236344|0.81944 236345|0.72222 236346|0.875 236347|0.72222 236348|0.65278 236349|0.72222 236350|0.31944 236351|0.22222 236352|0.70833 236353|0.23611 236354|0.40278 236355|0.77778 236356|0.45833 236357|0.29167 236358|0.72222 236359|0.15278 236360|0.44444 236361|0.55556 236362|0.75 236363|0.52778 236364|0.38889 236365|0.81944 236366|0.65278 236367|0.55556 236368|0.63889 236369|0.20833 236370|0.5 236371|0.40278 236372|0.52778 236373|0.65278 236374|0.5 236375|0.5 236376|0.27778 236377|0.40278 236378|0.125 236379|0.5 236380|0.48611 236381|0.055556 236382|0.13889 236383|0.59722 236384|0.45833 236385|0.36111 236386|0.58333 236387|0.16667 236388|0.5 236389|0.5 236390|0.68056 236391|0.61111 236392|0.61111 236393|0.5 236394|0.5 236395|0.44444 236396|0.5 236397|0.65278 236398|0.58333 236399|0.43056 236400|0.59722 236401|0.86111 236402|0.25 236403|0.45833 236404|0.77778 236405|0.77778 236406|0.5 236407|0.69444 236408|0.5 236409|0.79167 236410|0.51389 236411|0.625 236412|0.70833 236413|0.25 236414|0.38889 236415|0.77778 236416|0.5 236417|0.68056 236418|0.54167 236419|0.83333 236420|0.80556 236421|0.44444 236422|0.55556 236423|0.63889 236424|0.66667 236425|0.27778 236426|0.5 236427|0.69444 236428|0.54167 236429|0.54167 236430|0.44444 236431|0.86111 236432|0.45833 236433|0.51389 236434|0.29167 236435|0.69444 236436|0.097222 236437|0.86111 236438|0.26389 236439|0.47222 236440|0.38889 236441|0.66667 236442|0.56944 236443|0.56944 236444|0.069444 236445|0.44444 236446|0.54167 236447|0.93056 236448|0.625 236449|0.30556 236450|0.5 236451|0.5 236452|0.20833 236453|0.38889 236454|0.36111 236455|0.5 236456|0.23611 236457|0.86111 236458|0.33333 236459|0.51389 236460|0.375 236461|0.5 236462|0.38889 236463|0.26389 236464|0.72222 236465|0.40278 236466|0.48611 236467|0.31944 236468|0.44444 236469|0.69444 236470|0.055556 236471|0.18056 236472|0.36111 236473|0.86111 236474|0.72222 236475|0.40278 236476|0.38889 236477|0.33333 236478|0.48611 236479|0.54167 236480|0.5 236481|0.22222 236482|0.41667 236483|0.33333 236484|0.25 236485|0.5 236486|0.22222 236487|0.55556 236488|0.44444 236489|0.56944 236490|0.36111 236491|0.36111 236492|0.51389 236493|0.83333 236494|0.61111 236495|0.31944 236496|0.83333 236497|0.55556 236498|0.23611 236499|0.375 236500|0.23611 236501|0.25 236502|0.48611 236503|0.75 236504|0.5 236505|0.13889 236506|0.33333 236507|0.29167 236508|0.29167 236509|0.16667 236510|0.55556 236511|0.55556 236512|0.31944 236513|0.54167 236514|0.27778 236515|0.52778 236516|0.33333 236517|0.73611 236518|0.5 236519|0.58333 236520|0.5 236521|0.75 236522|0.72222 236523|0.51389 236524|0.45833 236525|0.29167 236526|0.55556 236527|0.25 236528|0.22222 236529|0.55556 236530|0.27778 236531|0.43056 236532|0.44444 236533|0.41667 236534|0.45833 236535|0.84722 236536|0.38889 236537|0.44444 236538|0.38889 236539|0.27778 236540|0.59722 236541|0.30556 236542|0.72222 236543|0.29167 236544|0.41667 236545|0.51389 236546|0.44444 236547|0.63889 236548|0.083333 236549|0.34722 236550|0.11111 236551|0.44444 236552|0.44444 236553|0.16667 236554|0.055556 236555|0.44444 236556|0.66667 236557|0.15278 236558|0.29167 236559|0.45833 236560|0.76389 236561|0.36111 236562|0.65278 236563|0.5 236564|0.69444 236565|0.69444 236566|0.70833 236567|0.18056 236568|0.58333 236569|0.63889 236570|0.5 236571|0.65278 236572|0.56944 236573|0.51389 236574|0.13889 236575|0.77778 236576|0.56944 236577|0.47222 236578|0.45833 236579|0.5 236580|0.63889 236581|0.45833 236582|0.52778 236583|0.76389 236584|0.56944 236585|0.65278 236586|0.5 236587|0.88889 236588|0.66667 236589|0.11111 236590|0.5 236591|0.58333 236592|0.22222 236593|0.083333 236594|0.36111 236595|0.65278 236596|0.33333 236597|0.52778 236598|0.20833 236599|0.72222 236600|0.40278 236601|0.5 236602|0.5 236603|0.33333 236604|0.38889 236605|0.5 236606|0.59722 236607|0.5 236608|0.5 236609|0.5 236610|0.11111 236611|0.56944 236612|0.5 236613|0.5 236614|0.5 236615|0.375 236616|0.5 236617|0.33333 236618|0.11111 236619|0.66667 236620|0.5 236621|0.5 236622|0.27778 236623|0.5 236624|0.5 236625|0.61111 236626|0.5 236627|0.5 236628|0.48611 236629|0.5 236630|0.5 236631|0.56944 236632|0.26389 236633|0.48611 236634|0.5 236635|0.5 236636|0.5 236637|0.77778 236638|0.5 236639|0.5 236640|0.5 236641|0.16667 236642|0.5 236643|0.55556 236644|0.5 236645|0.5 236646|0.5 236647|0.5 236648|0.5 236649|0.55556 236650|0.5 236651|0.51389 236652|0.52778 236653|0.47222 236654|0.5 236655|0.5 236656|0.5 236657|0.5 236658|0.5 236659|0.72222 236660|0.77778 236661|0.5 236662|0.5 236663|0.5 236664|0.5 236665|0.5 236666|0.44444 236667|0.47222 236668|0.027778 236669|0.5 236670|0.61111 236671|0.40278 236672|0.83333 236673|0.5 236674|0.5 236675|0.5 236676|0.52778 236677|0.48611 236678|0.38889 236679|0.45833 236680|0.54167 236681|0.38889 236682|0.72222 236683|0.70833 236684|0.5 236685|0.44444 236686|0.5 236687|0.36111 236688|0.45833 236689|0.55556 236690|0.5 236691|0.38889 236692|0.61111 236693|0.55556 236694|0.43056 236695|0.5 236696|0.31944 236697|0.56944 236698|0.38889 236699|0.48611 236700|0.5 236701|0.5 236702|0.5 236703|0.27778 236704|0.20833 236705|0.55556 236706|0.55556 236707|0.54167 236708|0.52778 236709|0.26389 236710|0.59722 236711|0.80556 236712|0.75 236713|0.54167 236714|0.5 236715|0.81944 236716|0.29167 236717|0.26389 236718|0.15278 236719|0.56944 236720|0.43056 236721|0.43056 236722|0.625 236723|0.5 236724|0.56944 236725|0.5 236726|0.41667 236727|0.5 236728|0.61111 236729|0.45833 236730|0.5 236731|0.16667 236732|0.44444 236733|0.5 236734|0.44444 236735|0.5 236736|0.22222 236737|0.5 236738|0.61111 236739|0.88889 236740|0.86111 236741|0.79167 236742|0.84722 236743|0.61111 236744|0.98611 236745|0.77778 236746|0.5 236747|0.51389 236748|0.5 236749|0.61111 236750|0.56944 236751|0.23611 236752|0.59722 236753|0.73611 236754|0.5 236755|0.5 236756|0.55556 236757|0.77778 236758|0.55556 236759|0.70833 236760|0.72222 236761|0.5 236762|0.23611 236763|0.43056 236764|0.77778 236765|0.29167 236766|0.63889 236767|0.51389 236768|0.5 236769|0.48611 236770|0.5 236771|0.29167 236772|0.79167 236773|0.75 236774|0.83333 236775|0.59722 236776|0.30556 236777|0.38889 236778|0.15278 236779|0.36111 236780|0.69444 236781|0.27778 236782|0.15278 236783|0.5 236784|0.72222 236785|0.63889 236786|0.5 236787|0.38889 236788|0.25 236789|0.55556 236790|0.52778 236791|0.52778 236792|0.54167 236793|0.59722 236794|0.47222 236795|0.5 236796|0.44444 236797|0.5 236798|0.54167 236799|0.5 236800|0.041667 236801|0.43056 236802|0.625 236803|0.5 236804|0.40278 236805|0.5 236806|0.5 236807|0.23611 236808|0.26389 236809|0.43056 236810|0.5 236811|0.52778 236812|0.45833 236813|0.36111 236814|0.23611 236815|0.23611 236816|0.16667 236817|0.5 236818|0.5 236819|0.5 236820|0.5 236821|0.5 236822|0.5 236823|0.75 236824|0.5 236825|0.44444 236826|0.48611 236827|0.5 236828|0.84722 236829|0.11111 236830|0.22222 236831|0.72222 236832|0.83333 236833|0.41667 236834|0.27778 236835|0.76389 236836|0.27778 236837|0.44444 236838|0.51389 236839|0.31944 236840|0.69444 236841|0.47222 236842|0.54167 236843|0.44444 236844|0.31944 236845|0.19444 236846|0.34722 236847|0.61111 236848|0.72222 236849|0.51389 236850|0.54167 236851|0.66667 236852|0.31944 236853|0.55556 236854|0.41667 236855|0.77778 236856|0.33333 236857|0.23611 236858|0.66667 236859|0.125 236860|0.41667 236861|0.72222 236862|0.66667 236863|0.30556 236864|0.56944 236865|0.5 236866|0.66667 236867|0.5 236868|0.625 236869|0.47222 236870|0.15278 236871|0.38889 236872|0.61111 236873|0.77778 236874|0.5 236875|0.23611 236876|0.56944 236877|0.79167 236878|0.61111 236879|0.65278 236880|0.45833 236881|0.375 236882|0.79167 236883|0.91667 236884|0.33333 236885|0.33333 236886|0.33333 236887|0.30556 236888|0.30556 236889|0.27778 236890|0.30556 236891|0.33333 236892|0.56944 236893|0.18056 236894|0.34722 236895|0.38889 236896|0.86111 236897|0.22222 236898|0.5 236899|0.5 236900|0.22222 236901|0.22222 236902|0.083333 236903|0.11111 236904|0.13889 236905|0.5 236906|0.5 236907|0.44444 236908|0.68056 236909|0.25 236910|0.83333 236911|0.47222 236912|0.43056 236913|0.44444 236914|0.45833 236915|0.34722 236916|0.125 236917|0.5 236918|0.5 236919|0.5 236920|0.5 236921|0.5 236922|0.45833 236923|0.51389 236924|0.84722 236925|0.5 236926|0.5 236927|0.72222 236928|0.90278 236929|0.5 236930|0.5 236931|0.51389 236932|0.5 236933|0.25 236934|0.5 236935|0.5 236936|0.43056 236937|0.5 236938|0.45833 236939|0.66667 236940|0.79167 236941|0.34722 236942|0.5 236943|0.5 236944|0.76389 236945|0.15278 236946|0.59722 236947|0.61111 236948|0.5 236949|0.48611 236950|0.44444 236951|0.27778 236952|0.18056 236953|0.055556 236954|0.55556 236955|0.5 236956|0.55556 236957|0.55556 236958|0.61111 236959|0.36111 236960|0.5 236961|0.5 236962|0.22222 236963|0.72222 236964|0.61111 236965|0.875 236966|0.58333 236967|0.31944 236968|0.59722 236969|0.44444 236970|0.5 236971|0.19444 236972|0.56944 236973|0.61111 236974|0.77778 236975|0.86111 236976|0.5 236977|0.38889 236978|0.55556 236979|0.45833 236980|0.5 236981|0.40278 236982|0.5 236983|0.38889 236984|0.22222 236985|0.65278 236986|0.38889 236987|0.72222 236988|0.27778 236989|0.5 236990|0.5 236991|0.55556 236992|0.38889 236993|0.48611 236994|0.41667 236995|0.45833 236996|0.77778 236997|0.5 236998|0.56944 236999|0.79167 237000|0.38889 237001|0.5 237002|0.48611 237003|0.38889 237004|0.625 237005|0.33333 237006|0.77778 237007|0.90278 237008|0.58333 237009|0.48611 237010|0.56944 237011|0.41667 237012|0.56944 237013|0.25 237014|0.5 237015|0.5 237016|0.55556 237017|0.61111 237018|0.5 237019|0.38889 237020|0.51389 237021|0.80556 237022|0.56944 237023|0.5 237024|0.45833 237025|0.70833 237026|0.61111 237027|0.5 237028|0.5 237029|0.5 237030|0.30556 237031|0.33333 237032|0.38889 237033|0.5 237034|0.5 237035|0.55556 237036|0.41667 237037|0.38889 237038|0.55556 237039|0.5 237040|0.5 237041|0.5 237042|0.47222 237043|0.5 237044|0.59722 237045|0.79167 237046|0.47222 237047|0.55556 237048|0.94444 237049|0.76389 237050|0.48611 237051|0.5 237052|0.19444 237053|0.5 237054|0.5 237055|0.70833 237056|0.44444 237057|0.33333 237058|0.44444 237059|0.5 237060|0.5 237061|0.38889 237062|0.5 237063|0.5 237064|0.72222 237065|0.86111 237066|0.88889 237067|0.13889 237068|0.72222 237069|0.55556 237070|0.75 237071|0.5 237072|0.83333 237073|0.90278 237074|0.91667 237075|0.69444 237076|0.5 237077|0.22222 237078|0.33333 237079|0.25 237080|0.013889 237081|0.84722 237082|0.11111 237083|0.81944 237084|0.77778 237085|0.52778 237086|0.19444 237087|0.76389 237088|0.56944 237089|0.5 237090|0.43056 237091|0.41667 237092|0.79167 237093|0.5 237094|0.5 237095|0.48611 237096|0.31944 237097|0.77778 237098|0.18056 237099|0.56944 237100|0.38889 237101|0.91667 237102|0.34722 237103|0.5 237104|0.5 237105|0.31944 237106|0.5 237107|0.65278 237108|0.61111 237109|0.5 237110|0.69444 237111|0.38889 237112|0.5 237113|0.47222 237114|0.48611 237115|0.5 237116|0.5 237117|0.52778 237118|0.86111 237119|0.73611 237120|0.625 237121|0.55556 237122|0.40278 237123|0.43056 237124|0.38889 237125|0.25 237126|0.5 237127|0.5 237128|0.5 237129|0.5 237130|0.5 237131|0.5 237132|0.81944 237133|0.34722 237134|0.84722 237135|0.54167 237136|0.86111 237137|0.43056 237138|0.55556 237139|0.5 237140|0.86111 237141|0.5 237142|0.5 237143|0.5 237144|0.5 237145|0.55556 237146|0.44444 237147|0.70833 237148|0.25 237149|0.375 237150|0.625 237151|0.54167 237152|0.66667 237153|0.25 237154|0.40278 237155|0.27778 237156|0.63889 237157|0.66667 237158|0.47222 237159|0.5 237160|0.65278 237161|0.38889 237162|0.31944 237163|0.18056 237164|0.31944 237165|0.59722 237166|0.43056 237167|0.31944 237168|0.51389 237169|0.55556 237170|0.56944 237171|0.5 237172|0.44444 237173|0.40278 237174|0.22222 237175|0.55556 237176|0.69444 237177|0.76389 237178|0.56944 237179|0.44444 237180|0.55556 237181|0.625 237182|0.875 237183|0.75 237184|0.38889 237185|0.58333 237186|0.66667 237187|0.5 237188|0.77778 237189|0.5 237190|0.5 237191|0.59722 237192|0.72222 237193|0.52778 237194|0.30556 237195|0.22222 237196|0.5 237197|0.5 237198|0.22222 237199|0.34722 237200|0.22222 237201|0.041667 237202|0.66667 237203|0.19444 237204|0.5 237205|0.23611 237206|0.45833 237207|0.5 237208|0.34722 237209|0.25 237210|0.30556 237211|0.31944 237212|0.22222 237213|0.5 237214|0.5 237215|0.31944 237216|0.40278 237217|0.41667 237218|0.66667 237219|0.5 237220|0.625 237221|0.38889 237222|0.27778 237223|0.44444 237224|0.5 237225|0.5 237226|0.45833 237227|0.5 237228|0.72222 237229|0.47222 237230|0.47222 237231|0.45833 237232|0.5 237233|0.5 237234|0.36111 237235|0.5 237236|0.79167 237237|0.63889 237238|0.38889 237239|0.22222 237240|0.51389 237241|0.65278 237242|0.40278 237243|0.31944 237244|0.77778 237245|0.875 237246|0.88889 237247|0.22222 237248|0.40278 237249|0.5 237250|0.5 237251|0.5 237252|0.56944 237253|0.83333 237254|0.48611 237255|0.55556 237256|0.30556 237257|0.58333 237258|0.5 237259|0.55556 237260|0.40278 237261|0.70833 237262|0.5 237263|0.5 237264|0.5 237265|0.58333 237266|0.33333 237267|0.23611 237268|0.5 237269|0.5 237270|0.59722 237271|0.5 237272|0.5 237273|0.47222 237274|0.61111 237275|0.36111 237276|0.52778 237277|0.44444 237278|0.43056 237279|0.54167 237280|0.5 237281|0.5 237282|0.63889 237283|0.34722 237284|0.77778 237285|0.5 237286|0.55556 237287|0.56944 237288|0.81944 237289|0.52778 237290|0.41667 237291|0.5 237292|0.38889 237293|0.5 237294|0.5 237295|0.5 237296|0.5 237297|0.48611 237298|0.27778 237299|0.44444 237300|0.25 237301|0.20833 237302|0.43056 237303|0.66667 237304|0.76389 237305|0.36111 237306|0.38889 237307|0.51389 237308|0.70833 237309|0.55556 237310|0.5 237311|0.44444 237312|0.15278 237313|0.55556 237314|0.48611 237315|0.26389 237316|0.45833 237317|0.47222 237318|0.33333 237319|0.5 237320|0.15278 237321|0.5 237322|0.51389 237323|0.27778 237324|0.5 237325|0.19444 237326|0.45833 237327|0.88889 237328|0.66667 237329|0.27778 237330|0.55556 237331|0.44444 237332|0.83333 237333|0.73611 237334|0.55556 237335|0.86111 237336|0.5 237337|0.5 237338|0.45833 237339|0.55556 237340|0.27778 237341|0.5 237342|0.83333 237343|0.80556 237344|0.91667 237345|0.79167 237346|0.38889 237347|0.5 237348|0.45833 237349|0.48611 237350|0.55556 237351|0.84722 237352|0.80556 237353|0.5 237354|0.33333 237355|0.54167 237356|0.34722 237357|0.5 237358|0.73611 237359|0.90278 237360|0.63889 237361|0.66667 237362|0.5 237363|0.5 237364|0.52778 237365|0.5 237366|0.5 237367|0.5 237368|0.5 237369|0.5 237370|0.5 237371|0.43056 237372|0.5 237373|0.5 237374|0.51389 237375|0.5 237376|0.5 237377|0.31944 237378|0.22222 237379|0.15278 237380|0.56944 237381|0.41667 237382|0.5 237383|0.44444 237384|0.15278 237385|0.48611 237386|0.70833 237387|0.15278 237388|0.30556 237389|0.55556 237390|0.33333 237391|0.5 237392|0.45833 237393|0.5 237394|0.55556 237395|0.83333 237396|0.5 237397|0.5 237398|0.55556 237399|0.83333 237400|0.31944 237401|0.75 237402|0.59722 237403|0.44444 237404|0.19444 237405|0.097222 237406|0.83333 237407|0.83333 237408|0.29167 237409|0.125 237410|0.19444 237411|0.43056 237412|0.69444 237413|0.61111 237414|0.5 237415|0.54167 237416|0.63889 237417|0.31944 237418|0.40278 237419|0.84722 237420|0.80556 237421|0.20833 237422|0.40278 237423|0.11111 237424|0.16667 237425|0.23611 237426|0.76389 237427|0.61111 237428|0.5 237429|0.55556 237430|0.5 237431|0.55556 237432|0.5 237433|0.73611 237434|0.5 237435|0.5 237436|0.5 237437|0.5 237438|0.5 237439|0.55556 237440|0.5 237441|0.76389 237442|0.55556 237443|0.61111 237444|0.25 237445|0.43056 237446|0.66667 237447|0.41667 237448|0.65278 237449|0.44444 237450|0.27778 237451|0.27778 237452|0.27778 237453|0.65278 237454|0.45833 237455|0.33333 237456|0.33333 237457|0.54167 237458|0.75 237459|0.375 237460|0.45833 237461|0.5 237462|0.69444 237463|0.40278 237464|0.44444 237465|0.5 237466|0.5 237467|0.625 237468|0.69444 237469|0.65278 237470|0.88889 237471|0.55556 237472|0.5 237473|0.5 237474|0.11111 237475|0.29167 237476|0.30556 237477|0.20833 237478|0.30556 237479|0.54167 237480|0.68056 237481|0.43056 237482|0.5 237483|0.5 237484|0.38889 237485|0.43056 237486|0.51389 237487|0.5 237488|0.61111 237489|0.63889 237490|0.55556 237491|0.33333 237492|0.47222 237493|0.27778 237494|0.5 237495|0.81944 237496|0.58333 237497|0.54167 237498|0.5 237499|0.5 237500|0.51389 237501|0.5 237502|0.72222 237503|0.23611 237504|0.30556 237505|0.18056 237506|0.66667 237507|0.80556 237508|0.55556 237509|0.65278 237510|0.11111 237511|0.125 237512|0.40278 237513|0.5 237514|0.26389 237515|0.68056 237516|0.16667 237517|0.5 237518|0.5 237519|0.55556 237520|0.20833 237521|0.81944 237522|0.25 237523|0.70833 237524|0.54167 237525|0.5 237526|0.5 237527|0.5 237528|0.54167 237529|0.55556 237530|0.83333 237531|0.72222 237532|0.16667 237533|0.65278 237534|0.38889 237535|0.125 237536|0 237537|0.38889 237538|0.59722 237539|0.38889 237540|0.77778 237541|0.72222 237542|0.75 237543|0.36111 237544|0.81944 237545|0.41667 237546|0.36111 237547|0.43056 237548|0.875 237549|0.875 237550|0.5 237551|0.5 237552|0.5 237553|0.30556 237554|0.29167 237555|0.069444 237556|0.51389 237557|0.31944 237558|0.5 237559|0.5 237560|0.29167 237561|0.5 237562|0.33333 237563|0.66667 237564|0.375 237565|0.34722 237566|0.26389 237567|0.20833 237568|0.5 237569|0.5 237570|0.58333 237571|0.055556 237572|0.76389 237573|0.77778 237574|0.45833 237575|0.069444 237576|0.30556 237577|0.5 237578|0.63889 237579|0.5 237580|0.25 237581|0.33333 237582|0.5 237583|0.27778 237584|0.27778 237585|0.31944 237586|0.55556 237587|0.16667 237588|0 237589|0.5 237590|0.5 237591|0.11111 237592|0.16667 237593|0.45833 237594|0.52778 237595|0.5 237596|0.48611 237597|0.47222 237598|0.90278 237599|0.48611 237600|0.875 237601|0.51389 237602|0.5 237603|0.5 237604|0.48611 237605|0.80556 237606|0.5 237607|0.51389 237608|0.22222 237609|0.5 237610|0.5 237611|0.76389 237612|0.31944 237613|0.70833 237614|0.51389 237615|0.51389 237616|0.5 237617|0.22222 237618|0.16667 237619|0.41667 237620|0.5 237621|0.51389 237622|0.65278 237623|0.88889 237624|0.36111 237625|0.88889 237626|0.55556 237627|0.20833 237628|0.38889 237629|0.5 237630|0.31944 237631|0.44444 237632|0.33333 237633|0.5 237634|0.66667 237635|0.26389 237636|0.23611 237637|0.34722 237638|0.5 237639|0.625 237640|0.55556 237641|0.5 237642|0.22222 237643|0.29167 237644|0.41667 237645|0.34722 237646|0.52778 237647|0.25 237648|0.16667 237649|0.16667 237650|0.48611 237651|0.47222 237652|0.20833 237653|0.56944 237654|0.54167 237655|0.33333 237656|0.48611 237657|0.34722 237658|0.55556 237659|0.13889 237660|0.31944 237661|0.54167 237662|0.61111 237663|0.61111 237664|0.63889 237665|0.5 237666|0.38889 237667|0.47222 237668|0.5 237669|0.41667 237670|0.25 237671|0.48611 237672|0.5 237673|0.51389 237674|0.79167 237675|0.30556 237676|0.25 237677|0.097222 237678|0.68056 237679|0.5 237680|0.83333 237681|0.5 237682|0.5 237683|0.5 237684|0.5 237685|0.5 237686|0.45833 237687|0.5 237688|0.5 237689|0.25 237690|0.5 237691|0.5 237692|0.55556 237693|0.5 237694|0.5 237695|0.75 237696|0.5 237697|0.5 237698|0.5 237699|0.33333 237700|0.51389 237701|0.65278 237702|0.5 237703|0.5 237704|0.5 237705|0.5 237706|0.41667 237707|0.61111 237708|0.61111 237709|0.38889 237710|0.34722 237711|0.30556 237712|0.54167 237713|0.63889 237714|0.625 237715|0.5 237716|0.40278 237717|0.097222 237718|0.56944 237719|0.38889 237720|0.5 237721|0.5 237722|0.5 237723|0.55556 237724|0.55556 237725|0.30556 237726|0.44444 237727|0.20833 237728|0.66667 237729|0.58333 237730|0.5 237731|0.30556 237732|0.55556 237733|0.54167 237734|0.51389 237735|0.5 237736|0.76389 237737|0.41667 237738|0.5 237739|0.51389 237740|0.77778 237741|0.63889 237742|0.38889 237743|0.5 237744|0.55556 237745|0.52778 237746|0.20833 237747|0.47222 237748|0.40278 237749|0.66667 237750|0.41667 237751|0.5 237752|0.5 237753|0.48611 237754|0.54167 237755|0.59722 237756|0.68056 237757|0.5 237758|0.5 237759|0.44444 237760|0.73611 237761|0.30556 237762|0.5 237763|0.5 237764|0.125 237765|0.33333 237766|0.66667 237767|0.52778 237768|0.56944 237769|0.5 237770|0.5 237771|0.58333 237772|0.55556 237773|0.59722 237774|0.5 237775|0.70833 237776|0.5 237777|0.52778 237778|0.27778 237779|0.47222 237780|0.13889 237781|0.70833 237782|0.33333 237783|0.5 237784|0.52778 237785|0.65278 237786|0.55556 237787|0.51389 237788|0.30556 237789|0.40278 237790|0.86111 237791|0.5 237792|0.5 237793|0.5 237794|0.5 237795|0.5 237796|0.52778 237797|0.16667 237798|0.18056 237799|0.65278 237800|0.55556 237801|0.66667 237802|0.72222 237803|0.5 237804|0.5 237805|0.41667 237806|0.44444 237807|0.13889 237808|0.51389 237809|0.375 237810|0.5 237811|0.45833 237812|0.43056 237813|0.52778 237814|0.5 237815|0.40278 237816|0.54167 237817|0.5 237818|0.5 237819|0.38889 237820|0.61111 237821|0.5 237822|0.5 237823|0.51389 237824|0.58333 237825|0.43056 237826|0.5 237827|0.65278 237828|0.56944 237829|0.88889 237830|0.11111 237831|0.41667 237832|0.47222 237833|0.44444 237834|0.11111 237835|0.51389 237836|0.55556 237837|0.34722 237838|0.22222 237839|0.86111 237840|0.44444 237841|0.34722 237842|0.16667 237843|0.69444 237844|0.58333 237845|0.5 237846|0.5 237847|0.22222 237848|0.56944 237849|0.22222 237850|0.36111 237851|0.083333 237852|0.54167 237853|0.375 237854|0.5 237855|0.86111 237856|0.52778 237857|0.55556 237858|0.11111 237859|0.5 237860|0.5 237861|0.5 237862|0.5 237863|0.5 237864|0.63889 237865|0.5 237866|0.69444 237867|0.33333 237868|0.59722 237869|0.48611 237870|0.44444 237871|0.27778 237872|0.30556 237873|0.44444 237874|0.52778 237875|0.5 237876|0.86111 237877|0.16667 237878|0.52778 237879|0.36111 237880|0.45833 237881|0.70833 237882|0.5 237883|0.55556 237884|0.55556 237885|0.44444 237886|0.27778 237887|0.25 237888|0.5 237889|0.43056 237890|0.54167 237891|0.77778 237892|0.48611 237893|0.88889 237894|0.625 237895|0.52778 237896|0.5 237897|0.5 237898|0.34722 237899|0.29167 237900|0.30556 237901|0.5 237902|0.45833 237903|0.33333 237904|0.22222 237905|0.44444 237906|0.45833 237907|0.68056 237908|0.72222 237909|0.5 237910|0.47222 237911|0.38889 237912|0.29167 237913|0.68056 237914|0.29167 237915|0.55556 237916|0.5 237917|0.33333 237918|0.875 237919|0.47222 237920|0.38889 237921|0.41667 237922|0.41667 237923|0.5 237924|0.25 237925|0.52778 237926|0.097222 237927|0.5 237928|0.5 237929|0.63889 237930|0.70833 237931|0.63889 237932|0.5 237933|0.5 237934|0.54167 237935|0.41667 237936|0.44444 237937|0.5 237938|0.40278 237939|0.18056 237940|0.29167 237941|0.5 237942|0.47222 237943|0.86111 237944|0.5 237945|0.59722 237946|0.23611 237947|0.069444 237948|0.54167 237949|0.40278 237950|0.34722 237951|0.55556 237952|0.52778 237953|0.5 237954|0.27778 237955|0.34722 237956|0.45833 237957|0.48611 237958|0.5 237959|0.83333 237960|0.61111 237961|0.22222 237962|0.5 237963|0.44444 237964|0.51389 237965|0.5 237966|0.5 237967|0.5 237968|0.59722 237969|0.16667 237970|0.36111 237971|0.84722 237972|0.61111 237973|0.18056 237974|0.41667 237975|0.48611 237976|0.5 237977|0.55556 237978|0.5 237979|0.58333 237980|0.61111 237981|0.5 237982|0.375 237983|0.55556 237984|0.68056 237985|0.58333 237986|0.77778 237987|0.79167 237988|0.65278 237989|0.65278 237990|0.5 237991|0.5 237992|0.20833 237993|0.81944 237994|0.5 237995|0.83333 237996|0.5 237997|0.43056 237998|0.30556 237999|0.70833 238000|0.5 238001|0.52778 238002|0.5 238003|0.63889 238004|0.5 238005|0.48611 238006|0.5 238007|0.55556 238008|0.40278 238009|0.33333 238010|0.68056 238011|0.58333 238012|0.5 238013|0.5 238014|0.23611 238015|0.5 238016|0.54167 238017|0.33333 238018|0.56944 238019|0.5 238020|0.40278 238021|0.56944 238022|0.5 238023|0.5 238024|0.61111 238025|0.31944 238026|0.5 238027|0.055556 238028|0.5 238029|0.45833 238030|0.5 238031|0.5 238032|0.58333 238033|0.5 238034|0.5 238035|0.5 238036|0.55556 238037|0.44444 238038|0.55556 238039|0.5 238040|0.30556 238041|0.625 238042|0.55556 238043|0.38889 238044|0.5 238045|0.18056 238046|0.72222 238047|0.5 238048|0.48611 238049|0.81944 238050|0.25 238051|0.33333 238052|0.097222 238053|0.18056 238054|0.20833 238055|0.36111 238056|0.45833 238057|0.59722 238058|0.56944 238059|0.58333 238060|0.31944 238061|0.33333 238062|0.31944 238063|0.20833 238064|0.44444 238065|0.33333 238066|0.29167 238067|0.38889 238068|0.66667 238069|0.44444 238070|0.26389 238071|0.27778 238072|0.15278 238073|0.27778 238074|0.34722 238075|0.125 238076|0.31944 238077|0.33333 238078|0.5 238079|0.097222 238080|0.61111 238081|0.33333 238082|0.29167 238083|0.16667 238084|0.36111 238085|0.45833 238086|0.31944 238087|0.47222 238088|0.5 238089|0.44444 238090|0.43056 238091|0.25 238092|0.44444 238093|0.61111 238094|0.56944 238095|0.68056 238096|0.26389 238097|0.18056 238098|0.19444 238099|0.77778 238100|0.66667 238101|0.66667 238102|0.31944 238103|0.55556 238104|0.625 238105|0.63889 238106|0.041667 238107|0.5 238108|0.48611 238109|0.20833 238110|0.5 238111|0.44444 238112|0.61111 238113|0.58333 238114|0.77778 238115|0.54167 238116|0.375 238117|0.11111 238118|0.22222 238119|0.19444 238120|0.36111 238121|0.47222 238122|0.625 238123|0.38889 238124|0.84722 238125|0.94444 238126|0.61111 238127|0.80556 238128|0.59722 238129|0.66667 238130|0.5 238131|0.63889 238132|0.70833 238133|0.66667 238134|0.47222 238135|0.5 238136|0.36111 238137|0.44444 238138|0.19444 238139|0.27778 238140|0.15278 238141|0.58333 238142|0.125 238143|0.5 238144|0.45833 238145|0.33333 238146|0.16667 238147|0.34722 238148|0.5 238149|0.44444 238150|0.5 238151|0.38889 238152|0.38889 238153|0.56944 238154|0.5 238155|0.375 238156|0.47222 238157|0.5 238158|0.61111 238159|0.58333 238160|0.55556 238161|0.5 238162|0.48611 238163|0.86111 238164|0.91667 238165|0.5 238166|0.36111 238167|0.43056 238168|0.22222 238169|0.5 238170|0.5 238171|0.30556 238172|0.22222 238173|0.43056 238174|0.11111 238175|0.16667 238176|0.125 238177|0.55556 238178|0.23611 238179|0.81944 238180|0.23611 238181|0.33333 238182|0.58333 238183|0.13889 238184|0.30556 238185|0.5 238186|0.30556 238187|0.68056 238188|0.30556 238189|0.16667 238190|0.22222 238191|0.26389 238192|0.33333 238193|0.33333 238194|0.30556 238195|0.40278 238196|0.44444 238197|0.5 238198|0.29167 238199|0.19444 238200|0.16667 238201|0.61111 238202|0.5 238203|0.55556 238204|0.19444 238205|0.20833 238206|0.52778 238207|0.5 238208|0.40278 238209|0.43056 238210|0.16667 238211|0.63889 238212|0.51389 238213|0.63889 238214|0.31944 238215|0.68056 238216|0.51389 238217|0.69444 238218|0.5 238219|0.26389 238220|0.25 238221|0.5 238222|0.72222 238223|0.055556 238224|0.125 238225|0.15278 238226|0.55556 238227|0.56944 238228|0.41667 238229|0.58333 238230|0.65278 238231|0.58333 238232|0.36111 238233|0.5 238234|0.44444 238235|0.23611 238236|0.72222 238237|0.43056 238238|0.15278 238239|0.5 238240|0.22222 238241|0.52778 238242|0.33333 238243|0.375 238244|0.38889 238245|0.33333 238246|0.31944 238247|0.5 238248|0.5 238249|0.68056 238250|0.375 238251|0.63889 238252|0.56944 238253|0.5 238254|0.52778 238255|0.44444 238256|0.27778 238257|0.38889 238258|0.5 238259|0.54167 238260|0.33333 238261|0.5 238262|0.55556 238263|0.5 238264|0.55556 238265|0.5 238266|0.625 238267|0.75 238268|0.80556 238269|0.48611 238270|0.27778 238271|0.29167 238272|0.51389 238273|0.23611 238274|0.44444 238275|0.5 238276|0.5 238277|0.5 238278|0.55556 238279|0.65278 238280|0.44444 238281|0.5 238282|0.65278 238283|0.5 238284|0.5 238285|0.5 238286|0.5 238287|0.48611 238288|0.58333 238289|0.40278 238290|0.33333 238291|0.40278 238292|0.5 238293|0.5 238294|0.38889 238295|0.59722 238296|0.23611 238297|0.23611 238298|0.5 238299|0.47222 238300|0.45833 238301|0.5 238302|0.73611 238303|0.88889 238304|0.5 238305|0.66667 238306|0.56944 238307|0.20833 238308|0.26389 238309|0.59722 238310|0.45833 238311|0.5 238312|0.31944 238313|0.5 238314|0.48611 238315|0.81944 238316|0.29167 238317|0.80556 238318|0.5 238319|0.5 238320|0.55556 238321|0.77778 238322|0.72222 238323|0.44444 238324|0.25 238325|0.13889 238326|0.84722 238327|0.66667 238328|0.5 238329|0.70833 238330|0.5 238331|0.38889 238332|0.5 238333|0.44444 238334|0.18056 238335|0.58333 238336|0.5 238337|0.20833 238338|0.20833 238339|0.27778 238340|0.125 238341|0.68056 238342|0.5 238343|0.22222 238344|0.73611 238345|0.5 238346|0.5 238347|0.56944 238348|0.5 238349|0.5 238350|0.5 238351|0.5 238352|0.041667 238353|0.125 238354|0.55556 238355|0.5 238356|0.5 238357|0.5 238358|0.5 238359|0.26389 238360|0.56944 238361|0.38889 238362|0.48611 238363|0.43056 238364|0.11111 238365|0.84722 238366|0.79167 238367|0.13889 238368|0.54167 238369|0.125 238370|0.055556 238371|0.125 238372|0.15278 238373|0.375 238374|0.125 238375|0.22222 238376|0.38889 238377|0.5 238378|0.66667 238379|0.34722 238380|0.34722 238381|0.43056 238382|0.30556 238383|0.5 238384|0.041667 238385|0.52778 238386|0.68056 238387|0.45833 238388|0.22222 238389|0.47222 238390|0.29167 238391|0.22222 238392|0.70833 238393|0.55556 238394|0.5 238395|0.5 238396|0.5 238397|0.5 238398|0.34722 238399|0.41667 238400|0.5 238401|0.44444 238402|0.5 238403|0.51389 238404|0.52778 238405|0.5 238406|0.44444 238407|0.69444 238408|0.52778 238409|0.58333 238410|0.58333 238411|0.38889 238412|0.41667 238413|0.45833 238414|0.5 238415|0.5 238416|0.44444 238417|0.40278 238418|0.66667 238419|0.55556 238420|0.66667 238421|0.51389 238422|0.54167 238423|0.77778 238424|0.33333 238425|0.44444 238426|0.27778 238427|0.5 238428|0.5 238429|0.5 238430|0.5 238431|0.55556 238432|0.76389 238433|0.5 238434|0.5 238435|0.55556 238436|0.55556 238437|0.63889 238438|0.5 238439|0.5 238440|0.55556 238441|0.5 238442|0.45833 238443|0.5 238444|0.44444 238445|0.16667 238446|0.5 238447|0.11111 238448|0.22222 238449|0.48611 238450|0.5 238451|0.68056 238452|0.79167 238453|0.61111 238454|0.70833 238455|0.26389 238456|0.45833 238457|0.25 238458|0.19444 238459|0.083333 238460|0.097222 238461|0.75 238462|0.72222 238463|0.55556 238464|0.22222 238465|0.041667 238466|0.041667 238467|0.52778 238468|0.66667 238469|0.77778 238470|0.34722 238471|0.55556 238472|0.5 238473|0.875 238474|0.5 238475|0.55556 238476|0.5 238477|0.75 238478|0.70833 238479|0.61111 238480|0.31944 238481|0.40278 238482|0.54167 238483|0.5 238484|0.5 238485|0.81944 238486|0.80556 238487|0.5 238488|0.40278 238489|0.5 238490|0.76389 238491|0.40278 238492|0.097222 238493|0.34722 238494|0.5 238495|0.5 238496|0.15278 238497|0.33333 238498|0.55556 238499|0.5 238500|0.76389 238501|0.31944 238502|0.44444 238503|0.38889 238504|0.33333 238505|0.61111 238506|0.38889 238507|0.5 238508|0.5 238509|0.27778 238510|0.72222 238511|0.5 238512|0.33333 238513|0.41667 238514|0.56944 238515|0.22222 238516|0.36111 238517|0.23611 238518|0.56944 238519|0.5 238520|0.44444 238521|0.55556 238522|0.47222 238523|0.33333 238524|0.31944 238525|0.47222 238526|0.52778 238527|0.41667 238528|0.375 238529|0.5 238530|0.65278 238531|0.54167 238532|0.66667 238533|0.44444 238534|0.43056 238535|0.5 238536|0.55556 238537|0.44444 238538|0.54167 238539|0.41667 238540|0.45833 238541|0.31944 238542|0.375 238543|0.27778 238544|0.52778 238545|0.91667 238546|0.76389 238547|0.81944 238548|0.80556 238549|0.29167 238550|0.84722 238551|0.75 238552|0.83333 238553|0.83333 238554|0.72222 238555|0.75 238556|0.55556 238557|0.45833 238558|0.45833 238559|0.31944 238560|0.29167 238561|0.36111 238562|0.29167 238563|0.5 238564|0.47222 238565|0.66667 238566|0.29167 238567|0.26389 238568|0.34722 238569|0.52778 238570|0.72222 238571|0.38889 238572|0.55556 238573|0.55556 238574|0.73611 238575|0.56944 238576|0.25 238577|0.41667 238578|0.77778 238579|0.38889 238580|0.5 238581|0.52778 238582|0.5 238583|0.5 238584|0.55556 238585|0.88889 238586|0.86111 238587|0.55556 238588|0.38889 238589|0.16667 238590|0.48611 238591|0.5 238592|0.5 238593|0.5 238594|0.041667 238595|0.56944 238596|0.27778 238597|0.36111 238598|0.40278 238599|0.72222 238600|0.72222 238601|0.5 238602|0.69444 238603|0.27778 238604|0.375 238605|0.5 238606|0.69444 238607|0.5 238608|0.5 238609|0.34722 238610|0.84722 238611|0.26389 238612|0.47222 238613|0.5 238614|0.5 238615|0.80556 238616|0.72222 238617|0.45833 238618|0.33333 238619|0.51389 238620|0.38889 238621|0.48611 238622|0.45833 238623|0.41667 238624|0.51389 238625|0.41667 238626|0.16667 238627|0.25 238628|0.5 238629|0.51389 238630|0.5 238631|0.51389 238632|0.34722 238633|0.19444 238634|0.44444 238635|0.375 238636|0.52778 238637|0.66667 238638|0.55556 238639|0.5 238640|0.5 238641|0.61111 238642|0.125 238643|0.5 238644|0.16667 238645|0.5 238646|0.44444 238647|0.41667 238648|0.5 238649|0.59722 238650|0.5 238651|0.54167 238652|0.19444 238653|0.5 238654|0.38889 238655|0.5 238656|0.55556 238657|0.5 238658|0.34722 238659|0.38889 238660|0.81944 238661|0.44444 238662|0.66667 238663|0.38889 238664|0.51389 238665|0.38889 238666|0.58333 238667|0.5 238668|0.80556 238669|0.027778 238670|0.34722 238671|0.5 238672|0.875 238673|0.29167 238674|0.79167 238675|0.47222 238676|0.34722 238677|0.5 238678|0.70833 238679|0.72222 238680|0.30556 238681|0.54167 238682|0.65278 238683|0.51389 238684|0.61111 238685|0.5 238686|0.75 238687|0.5 238688|0.44444 238689|0.80556 238690|0.66667 238691|0.55556 238692|0.55556 238693|0.55556 238694|0.27778 238695|0.44444 238696|0.52778 238697|0.625 238698|0.65278 238699|0.5 238700|0.44444 238701|0.43056 238702|0.65278 238703|0.625 238704|0.44444 238705|0.40278 238706|0.5 238707|0.52778 238708|0.5 238709|0.44444 238710|0.5 238711|0.36111 238712|0.45833 238713|0.5 238714|0.5 238715|0.5 238716|0.70833 238717|0.59722 238718|0.51389 238719|0.36111 238720|0.51389 238721|0.48611 238722|0.375 238723|0.5 238724|0.625 238725|0.5 238726|0.69444 238727|0.5 238728|0.25 238729|0.40278 238730|0.45833 238731|0.15278 238732|0.25 238733|0.51389 238734|0.25 238735|0.55556 238736|0.47222 238737|0.18056 238738|0.20833 238739|0.44444 238740|0.72222 238741|0.5 238742|0.48611 238743|0.625 238744|0.66667 238745|0.5 238746|0.5 238747|0.375 238748|0.5 238749|0.15278 238750|0.375 238751|0.5 238752|0.36111 238753|0.29167 238754|0.41667 238755|0.5 238756|0.83333 238757|0.875 238758|0.5 238759|0.18056 238760|0.5 238761|0.5 238762|0.44444 238763|0.45833 238764|0.40278 238765|0.40278 238766|0.29167 238767|0.41667 238768|0.55556 238769|0.55556 238770|0.61111 238771|0.72222 238772|0.68056 238773|0.72222 238774|0.5 238775|0.41667 238776|0.43056 238777|0.5 238778|0.20833 238779|0.80556 238780|0.5 238781|0.76389 238782|0.72222 238783|0.88889 238784|0.70833 238785|0.72222 238786|0.77778 238787|0.93056 238788|0.34722 238789|0.25 238790|0.125 238791|0.51389 238792|0.47222 238793|0.5 238794|0.54167 238795|0.27778 238796|0.83333 238797|0.66667 238798|0.5 238799|0.70833 238800|0.95833 238801|0.30556 238802|0.23611 238803|0.13889 238804|0.16667 238805|0.27778 238806|0.22222 238807|0.27778 238808|0.61111 238809|0.18056 238810|0.125 238811|0.18056 238812|0.45833 238813|0.54167 238814|0.66667 238815|0.61111 238816|0.34722 238817|0.72222 238818|0.40278 238819|0.44444 238820|0.5 238821|0.5 238822|0.33333 238823|0.44444 238824|0.59722 238825|0.86111 238826|0.30556 238827|0.5 238828|0.58333 238829|0.18056 238830|0.36111 238831|0.80556 238832|0.76389 238833|0.5 238834|0.5 238835|0.70833 238836|0.5 238837|0.5 238838|0.625 238839|0.5 238840|0.5 238841|0.5 238842|0.48611 238843|0.40278 238844|0.5 238845|0.5 238846|0.5 238847|0.69444 238848|0.40278 238849|0.22222 238850|0.47222 238851|0.5 238852|0.48611 238853|0.5 238854|0.13889 238855|0.40278 238856|0.75 238857|0.5 238858|0.5 238859|0.72222 238860|0.40278 238861|0.61111 238862|0.097222 238863|0.73611 238864|0.55556 238865|0.47222 238866|0.375 238867|0.55556 238868|0.5 238869|0.51389 238870|0.79167 238871|0.88889 238872|0.38889 238873|0.83333 238874|0.72222 238875|0.48611 238876|0.41667 238877|0.66667 238878|0.5 238879|0.66667 238880|0.44444 238881|0.63889 238882|0.79167 238883|0.47222 238884|0.48611 238885|0.5 238886|0.59722 238887|0.76389 238888|0.75 238889|0.5 238890|0.5 238891|0.19444 238892|0.40278 238893|0.55556 238894|0.34722 238895|0.47222 238896|0.45833 238897|0.44444 238898|0.80556 238899|0.43056 238900|0.26389 238901|0.83333 238902|0.22222 238903|0.65278 238904|0.72222 238905|0.63889 238906|0.47222 238907|0.5 238908|0.56944 238909|0.5 238910|0.13889 238911|0.5 238912|0.80556 238913|0.70833 238914|0.68056 238915|0.5 238916|0.5 238917|0.65278 238918|0.69444 238919|0.40278 238920|0.5 238921|0.51389 238922|0.51389 238923|0.5 238924|0.56944 238925|0.43056 238926|0.72222 238927|0.63889 238928|0.61111 238929|0.26389 238930|0.59722 238931|0.5 238932|0.52778 238933|0.5 238934|0.63889 238935|0.5 238936|0.75 238937|0.55556 238938|0.70833 238939|0.83333 238940|0.84722 238941|0.16667 238942|0.11111 238943|0.069444 238944|0.41667 238945|0.41667 238946|0.27778 238947|0.48611 238948|0.61111 238949|0.65278 238950|0.5 238951|0.5 238952|0.51389 238953|0.5 238954|0.5 238955|0.45833 238956|0.55556 238957|0.5 238958|0.5 238959|0.5 238960|0.90278 238961|0.88889 238962|0.75 238963|0.375 238964|0.5 238965|0.33333 238966|0.55556 238967|0.55556 238968|0.55556 238969|0.18056 238970|0.13889 238971|0.41667 238972|0.5 238973|0.45833 238974|0.5 238975|0.5 238976|0.55556 238977|0.76389 238978|0.73611 238979|0.5 238980|0.16667 238981|0.5 238982|0.13889 238983|0.13889 238984|0.875 238985|0.77778 238986|0.81944 238987|0.5 238988|0.61111 238989|0.58333 238990|0.18056 238991|0.41667 238992|0.41667 238993|0.36111 238994|0.54167 238995|0.43056 238996|0.56944 238997|0.16667 238998|0.18056 238999|0.16667 239000|0.33333 239001|0.27778 239002|0.22222 239003|0.75 239004|0.44444 239005|0.61111 239006|0.48611 239007|0.43056 239008|0.375 239009|0.33333 239010|0.47222 239011|0.30556 239012|0.48611 239013|0.34722 239014|0.44444 239015|0.34722 239016|0.36111 239017|0.44444 239018|0.77778 239019|0.44444 239020|0.69444 239021|0.55556 239022|0.26389 239023|0.34722 239024|0.34722 239025|0.18056 239026|0.29167 239027|0.70833 239028|0.875 239029|0.16667 239030|0.13889 239031|0.61111 239032|0.29167 239033|0.38889 239034|0.56944 239035|0.34722 239036|0.33333 239037|0.25 239038|0.5 239039|0.43056 239040|0.44444 239041|0.63889 239042|0.48611 239043|0.44444 239044|0.38889 239045|0.51389 239046|0.27778 239047|0.13889 239048|0.18056 239049|0.48611 239050|0.80556 239051|0.47222 239052|0.5 239053|0.5 239054|0.5 239055|0.5 239056|0.5 239057|0.5 239058|0.5 239059|0.5 239060|0.77778 239061|0.875 239062|0.76389 239063|0.27778 239064|0.47222 239065|0.13889 239066|0.38889 239067|0.25 239068|0.5 239069|0.5 239070|0.625 239071|0.5 239072|0.38889 239073|0.61111 239074|0.5 239075|0.63889 239076|0.70833 239077|0.43056 239078|0.26389 239079|0.72222 239080|0.83333 239081|0.61111 239082|0.26389 239083|0.18056 239084|0.70833 239085|0.38889 239086|0.5 239087|0.375 239088|0.11111 239089|0.23611 239090|0.77778 239091|0.27778 239092|0.66667 239093|0.27778 239094|0.5 239095|0.84722 239096|0.45833 239097|0.875 239098|0.625 239099|0.61111 239100|0.027778 239101|0.44444 239102|0.63889 239103|0.66667 239104|0.22222 239105|0.055556 239106|0.44444 239107|0.33333 239108|0.90278 239109|0.97222 239110|0.72222 239111|0.31944 239112|0.5 239113|0.625 239114|0.11111 239115|0.59722 239116|0.5 239117|0.69444 239118|0.70833 239119|0.44444 239120|0.41667 239121|0.5 239122|0.40278 239123|0.5 239124|0.38889 239125|0.5 239126|0.70833 239127|0.69444 239128|0.44444 239129|0.30556 239130|0.48611 239131|0.83333 239132|0.47222 239133|0.77778 239134|0.72222 239135|0.625 239136|0.33333 239137|0.76389 239138|0.61111 239139|0.55556 239140|0.5 239141|0.5 239142|0.45833 239143|0.44444 239144|0.5 239145|0.19444 239146|0.22222 239147|0.80556 239148|0.38889 239149|0.56944 239150|0.5 239151|0.26389 239152|0.5 239153|0.55556 239154|0.81944 239155|0.52778 239156|0.54167 239157|0.5 239158|0.52778 239159|0.26389 239160|0.34722 239161|0.5 239162|0.36111 239163|0.16667 239164|0.61111 239165|0.33333 239166|0.31944 239167|0.625 239168|0.93056 239169|0.59722 239170|0.5 239171|0.58333 239172|0.625 239173|0.58333 239174|0.79167 239175|0.33333 239176|0.48611 239177|0.79167 239178|0.33333 239179|0.23611 239180|0.61111 239181|0.27778 239182|0.59722 239183|0.45833 239184|0.27778 239185|0 239186|0.29167 239187|0.5 239188|0.55556 239189|0.76389 239190|0.31944 239191|0.47222 239192|0.19444 239193|0.54167 239194|0.20833 239195|0.58333 239196|0.48611 239197|0.5 239198|0.38889 239199|0.76389 239200|0.375 239201|0.66667 239202|0.25 239203|0.43056 239204|0.59722 239205|0.5 239206|0.5 239207|0.19444 239208|0.40278 239209|0.55556 239210|0.5 239211|0.5 239212|0.5 239213|0.5 239214|0.5 239215|0.5 239216|0.66667 239217|0.5 239218|0.5 239219|0.5 239220|0.5 239221|0.68056 239222|0.69444 239223|0.5 239224|0.90278 239225|0.5 239226|0.81944 239227|0.36111 239228|0.38889 239229|0.33333 239230|0.88889 239231|0.5 ================================================ FILE: a2/utils/gradcheck.py ================================================ #!/usr/bin/env python import numpy as np import random # First implement a gradient checker by filling in the following functions def gradcheck_naive(f, x, gradientText): """ Gradient check for a function f. Arguments: f -- a function that takes a single argument and outputs the loss and its gradients x -- the point (numpy array) to check the gradient at gradientText -- a string detailing some context about the gradient computation Notes: Note that gradient checking is a sanity test that only checks whether the gradient and loss values produced by your implementation are consistent with each other. Gradient check passing on its own doesn’t guarantee that you have the correct gradients. It will pass, for example, if both the loss and gradient values produced by your implementation are 0s (as is the case when you have not implemented anything). Here is a detailed explanation of what gradient check is doing if you would like some further clarification: http://ufldl.stanford.edu/tutorial/supervised/DebuggingGradientChecking/. """ rndstate = random.getstate() random.setstate(rndstate) fx, grad = f(x) # Evaluate function value at original point h = 1e-4 # Do not change this! # Iterate over all indexes ix in x to check the gradient. it = np.nditer(x, flags=['multi_index'], op_flags=['readwrite']) while not it.finished: ix = it.multi_index x[ix] += h # increment by h random.setstate(rndstate) fxh, _ = f(x) # evalute f(x + h) x[ix] -= 2 * h # restore to previous value (very important!) random.setstate(rndstate) fxnh, _ = f(x) x[ix] += h numgrad = (fxh - fxnh) / 2 / h # Compare gradients reldiff = abs(numgrad - grad[ix]) / max(1, abs(numgrad), abs(grad[ix])) if reldiff > 1e-5: print("Gradient check failed for %s." % gradientText) print("First gradient error found at index %s in the vector of gradients" % str(ix)) print("Your gradient: %f \t Numerical gradient: %f" % ( grad[ix], numgrad)) return it.iternext() # Step to next dimension print("Gradient check passed!. Read the docstring of the `gradcheck_naive`" " method in utils.gradcheck.py to understand what the gradient check does.") def grad_tests_softmax(skipgram, dummy_tokens, dummy_vectors, dataset): print ("======Skip-Gram with naiveSoftmaxLossAndGradient Test Cases======") # first test output_loss, output_gradCenterVecs, output_gradOutsideVectors = \ skipgram("c", 3, ["a", "b", "e", "d", "b", "c"], dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset) assert np.allclose(output_loss, 11.16610900153398), \ "Your loss does not match expected loss." expected_gradCenterVecs = [[ 0., 0., 0. ], [ 0., 0., 0. ], [-1.26947339, -1.36873189, 2.45158957], [ 0., 0., 0. ], [ 0., 0., 0. ]] expected_gradOutsideVectors = [[-0.41045956, 0.18834851, 1.43272264], [ 0.38202831, -0.17530219, -1.33348241], [ 0.07009355, -0.03216399, -0.24466386], [ 0.09472154, -0.04346509, -0.33062865], [-0.13638384, 0.06258276, 0.47605228]] assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \ "Your gradCenterVecs do not match expected gradCenterVecs." assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \ "Your gradOutsideVectors do not match expected gradOutsideVectors." print("The first test passed!") # second test output_loss, output_gradCenterVecs, output_gradOutsideVectors = \ skipgram("b", 3, ["a", "b", "e", "d", "b", "c"], dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset) assert np.allclose(output_loss, 9.87714910003414), \ "Your loss does not match expected loss." expected_gradCenterVecs = [[ 0., 0., 0. ], [-0.14586705, -1.34158321, -0.29291951], [ 0., 0., 0. ], [ 0., 0., 0. ], [ 0., 0., 0. ]] expected_gradOutsideVectors = [[-0.30342672, 0.19808298, 0.19587419], [-0.41359958, 0.27000601, 0.26699522], [-0.08192272, 0.05348078, 0.05288442], [ 0.6981188, -0.4557458, -0.45066387], [ 0.10083022, -0.06582396, -0.06508997]] assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \ "Your gradCenterVecs do not match expected gradCenterVecs." assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \ "Your gradOutsideVectors do not match expected gradOutsideVectors." print("The second test passed!") # third test output_loss, output_gradCenterVecs, output_gradOutsideVectors = \ skipgram("a", 3, ["a", "b", "e", "d", "b", "c"], dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset) assert np.allclose(output_loss, 10.810758628593335), \ "Your loss does not match expected loss." expected_gradCenterVecs = [[-1.1790274, -1.35861865, 1.53590492], [ 0., 0., 0. ], [ 0., 0., 0. ], [ 0., 0., 0. ], [ 0., 0., 0. ]] expected_gradOutsideVectors = [[-7.96035953e-01, -1.79609012e-02, 2.07761330e-01], [ 1.40175316e+00, 3.16276545e-02, -3.65850437e-01], [-1.99691259e-01, -4.50561933e-03, 5.21184016e-02], [ 2.02560028e-02, 4.57034715e-04, -5.28671357e-03], [-4.26281954e-01, -9.61816867e-03, 1.11257419e-01]] assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \ "Your gradCenterVecs do not match expected gradCenterVecs." assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \ "Your gradOutsideVectors do not match expected gradOutsideVectors." print("The third test passed!") print("All 3 tests passed!") def grad_tests_negsamp(skipgram, dummy_tokens, dummy_vectors, dataset, negSamplingLossAndGradient): print ("======Skip-Gram with negSamplingLossAndGradient======") # first test output_loss, output_gradCenterVecs, output_gradOutsideVectors = \ skipgram("c", 1, ["a", "b"], dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset, negSamplingLossAndGradient) assert np.allclose(output_loss, 16.15119285363322), \ "Your loss does not match expected loss." expected_gradCenterVecs = [[ 0., 0., 0. ], [ 0., 0., 0. ], [-4.54650789, -1.85942252, 0.76397441], [ 0., 0., 0. ], [ 0., 0., 0. ]] expected_gradOutsideVectors = [[-0.69148188, 0.31730185, 2.41364029], [-0.22716495, 0.10423969, 0.79292674], [-0.45528438, 0.20891737, 1.58918512], [-0.31602611, 0.14501561, 1.10309954], [-0.80620296, 0.36994417, 2.81407799]] assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \ "Your gradCenterVecs do not match expected gradCenterVecs." assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \ "Your gradOutsideVectors do not match expected gradOutsideVectors." print("The first test passed!") # second test output_loss, output_gradCenterVecs, output_gradOutsideVectors = \ skipgram("c", 2, ["a", "b", "c", "a"], dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset, negSamplingLossAndGradient) assert np.allclose(output_loss, 28.653567707668795), \ "Your loss does not match expected loss." expected_gradCenterVecs = [ [ 0., 0., 0. ], [ 0., 0., 0. ], [-6.42994865, -2.16396482, -1.89240934], [ 0., 0., 0. ], [ 0., 0., 0. ]] expected_gradOutsideVectors = [ [-0.80413277, 0.36899421, 2.80685192], [-0.9277269, 0.42570813, 3.23826131], [-0.7511534, 0.34468345, 2.62192569], [-0.94807832, 0.43504684, 3.30929863], [-1.12868414, 0.51792184, 3.93970919]] assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \ "Your gradCenterVecs do not match expected gradCenterVecs." assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \ "Your gradOutsideVectors do not match expected gradOutsideVectors." print("The second test passed!") # third test output_loss, output_gradCenterVecs, output_gradOutsideVectors = \ skipgram("a", 3, ["a", "b", "e", "d", "b", "c"], dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset, negSamplingLossAndGradient) assert np.allclose(output_loss, 60.648705494891914), \ "Your loss does not match expected loss." expected_gradCenterVecs = [ [-17.89425315, -7.36940626, -1.23364121], [ 0., 0., 0. ], [ 0., 0., 0. ], [ 0., 0., 0. ], [ 0., 0., 0. ]] expected_gradOutsideVectors = [[-6.4780819, -0.14616449, 1.69074639], [-0.86337952, -0.01948037, 0.22533766], [-9.59525734, -0.21649709, 2.5043133 ], [-6.02261515, -0.13588783, 1.57187189], [-9.69010072, -0.21863704, 2.52906694]] assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \ "Your gradCenterVecs do not match expected gradCenterVecs." assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \ "Your gradOutsideVectors do not match expected gradOutsideVectors." print("The third test passed!") print("All 3 tests passed!") ================================================ FILE: a2/utils/treebank.py ================================================ #!/usr/bin/env python # -*- coding: utf-8 -*- import pickle import numpy as np import os import random class StanfordSentiment: def __init__(self, path=None, tablesize = 1000000): if not path: path = "utils/datasets/stanfordSentimentTreebank" self.path = path self.tablesize = tablesize def tokens(self): if hasattr(self, "_tokens") and self._tokens: return self._tokens tokens = dict() tokenfreq = dict() wordcount = 0 revtokens = [] idx = 0 for sentence in self.sentences(): for w in sentence: wordcount += 1 if not w in tokens: tokens[w] = idx revtokens += [w] tokenfreq[w] = 1 idx += 1 else: tokenfreq[w] += 1 tokens["UNK"] = idx revtokens += ["UNK"] tokenfreq["UNK"] = 1 wordcount += 1 self._tokens = tokens self._tokenfreq = tokenfreq self._wordcount = wordcount self._revtokens = revtokens return self._tokens def sentences(self): if hasattr(self, "_sentences") and self._sentences: return self._sentences sentences = [] with open(self.path + "/datasetSentences.txt", "r") as f: first = True for line in f: if first: first = False continue splitted = line.strip().split()[1:] # Deal with some peculiar encoding issues with this file sentences += [[w.lower() for w in splitted]] self._sentences = sentences self._sentlengths = np.array([len(s) for s in sentences]) self._cumsentlen = np.cumsum(self._sentlengths) return self._sentences def numSentences(self): if hasattr(self, "_numSentences") and self._numSentences: return self._numSentences else: self._numSentences = len(self.sentences()) return self._numSentences def allSentences(self): if hasattr(self, "_allsentences") and self._allsentences: return self._allsentences sentences = self.sentences() rejectProb = self.rejectProb() tokens = self.tokens() allsentences = [[w for w in s if 0 >= rejectProb[tokens[w]] or random.random() >= rejectProb[tokens[w]]] for s in sentences * 30] allsentences = [s for s in allsentences if len(s) > 1] self._allsentences = allsentences return self._allsentences def getRandomContext(self, C=5): allsent = self.allSentences() sentID = random.randint(0, len(allsent) - 1) sent = allsent[sentID] wordID = random.randint(0, len(sent) - 1) context = sent[max(0, wordID - C):wordID] if wordID+1 < len(sent): context += sent[wordID+1:min(len(sent), wordID + C + 1)] centerword = sent[wordID] context = [w for w in context if w != centerword] if len(context) > 0: return centerword, context else: return self.getRandomContext(C) def sent_labels(self): if hasattr(self, "_sent_labels") and self._sent_labels: return self._sent_labels dictionary = dict() phrases = 0 with open(self.path + "/dictionary.txt", "r") as f: for line in f: line = line.strip() if not line: continue splitted = line.split("|") dictionary[splitted[0].lower()] = int(splitted[1]) phrases += 1 labels = [0.0] * phrases with open(self.path + "/sentiment_labels.txt", "r") as f: first = True for line in f: if first: first = False continue line = line.strip() if not line: continue splitted = line.split("|") labels[int(splitted[0])] = float(splitted[1]) sent_labels = [0.0] * self.numSentences() sentences = self.sentences() for i in range(self.numSentences()): sentence = sentences[i] full_sent = " ".join(sentence).replace('-lrb-', '(').replace('-rrb-', ')') sent_labels[i] = labels[dictionary[full_sent]] self._sent_labels = sent_labels return self._sent_labels def dataset_split(self): if hasattr(self, "_split") and self._split: return self._split split = [[] for i in range(3)] with open(self.path + "/datasetSplit.txt", "r") as f: first = True for line in f: if first: first = False continue splitted = line.strip().split(",") split[int(splitted[1]) - 1] += [int(splitted[0]) - 1] self._split = split return self._split def getRandomTrainSentence(self): split = self.dataset_split() sentId = split[0][random.randint(0, len(split[0]) - 1)] return self.sentences()[sentId], self.categorify(self.sent_labels()[sentId]) def categorify(self, label): if label <= 0.2: return 0 elif label <= 0.4: return 1 elif label <= 0.6: return 2 elif label <= 0.8: return 3 else: return 4 def getDevSentences(self): return self.getSplitSentences(2) def getTestSentences(self): return self.getSplitSentences(1) def getTrainSentences(self): return self.getSplitSentences(0) def getSplitSentences(self, split=0): ds_split = self.dataset_split() return [(self.sentences()[i], self.categorify(self.sent_labels()[i])) for i in ds_split[split]] def sampleTable(self): if hasattr(self, '_sampleTable') and self._sampleTable is not None: return self._sampleTable nTokens = len(self.tokens()) samplingFreq = np.zeros((nTokens,)) self.allSentences() i = 0 for w in range(nTokens): w = self._revtokens[i] if w in self._tokenfreq: freq = 1.0 * self._tokenfreq[w] # Reweigh freq = freq ** 0.75 else: freq = 0.0 samplingFreq[i] = freq i += 1 samplingFreq /= np.sum(samplingFreq) samplingFreq = np.cumsum(samplingFreq) * self.tablesize self._sampleTable = [0] * self.tablesize j = 0 for i in range(self.tablesize): while i > samplingFreq[j]: j += 1 self._sampleTable[i] = j return self._sampleTable def rejectProb(self): if hasattr(self, '_rejectProb') and self._rejectProb is not None: return self._rejectProb threshold = 1e-5 * self._wordcount nTokens = len(self.tokens()) rejectProb = np.zeros((nTokens,)) for i in range(nTokens): w = self._revtokens[i] freq = 1.0 * self._tokenfreq[w] # Reweigh rejectProb[i] = max(0, 1 - np.sqrt(threshold / freq)) self._rejectProb = rejectProb return self._rejectProb def sampleTokenIdx(self): return self.sampleTable()[random.randint(0, self.tablesize - 1)] ================================================ FILE: a2/utils/utils.py ================================================ #!/usr/bin/env python import numpy as np def normalizeRows(x): """ Row normalization function Implement a function that normalizes each row of a matrix to have unit length. """ N = x.shape[0] x /= np.sqrt(np.sum(x**2, axis=1)).reshape((N,1)) + 1e-30 return x def softmax(x): """Compute the softmax function for each row of the input x. It is crucial that this function is optimized for speed because it will be used frequently in later code. Arguments: x -- A D dimensional vector or N x D dimensional numpy matrix. Return: x -- You are allowed to modify x in-place """ orig_shape = x.shape if len(x.shape) > 1: # Matrix tmp = np.max(x, axis=1) x -= tmp.reshape((x.shape[0], 1)) x = np.exp(x) tmp = np.sum(x, axis=1) x /= tmp.reshape((x.shape[0], 1)) else: # Vector tmp = np.max(x) x -= tmp x = np.exp(x) tmp = np.sum(x) x /= tmp assert x.shape == orig_shape return x ================================================ FILE: a2/word2vec.py ================================================ #!/usr/bin/env python import argparse import numpy as np import random from utils.gradcheck import gradcheck_naive, grad_tests_softmax, grad_tests_negsamp from utils.utils import normalizeRows, softmax def sigmoid(x): """ Compute the sigmoid function for the input here. Arguments: x -- A scalar or numpy array. Return: s -- sigmoid(x) """ ### YOUR CODE HERE (~1 Line) s = 1 / (1 + np.exp(-x)) ### END YOUR CODE return s def naiveSoftmaxLossAndGradient( centerWordVec, outsideWordIdx, outsideVectors, dataset ): """ Naive Softmax loss & gradient function for word2vec models Implement the naive softmax loss and gradients between a center word's embedding and an outside word's embedding. This will be the building block for our word2vec models. For those unfamiliar with numpy notation, note that a numpy ndarray with a shape of (x, ) is a one-dimensional array, which you can effectively treat as a vector with length x. Arguments: centerWordVec -- numpy ndarray, center word's embedding in shape (word vector length, ) (v_c in the pdf handout) outsideWordIdx -- integer, the index of the outside word (o of u_o in the pdf handout) outsideVectors -- outside vectors is in shape (num words in vocab, word vector length) for all words in vocab (tranpose of U in the pdf handout) dataset -- needed for negative sampling, unused here. Return: loss -- naive softmax loss gradCenterVec -- the gradient with respect to the center word vector in shape (word vector length, ) (dJ / dv_c in the pdf handout) gradOutsideVecs -- the gradient with respect to all the outside word vectors in shape (num words in vocab, word vector length) (dJ / dU) """ ### YOUR CODE HERE (~6-8 Lines) ### Please use the provided softmax function (imported earlier in this file) ### This numerically stable implementation helps you avoid issues pertaining ### to integer overflow. gradOutsideVecs = np.zeros_like(outsideVectors) # obtain y_hat (i.e., the conditional probability distribution p(O = o | C = c)) # by taking vector dot products and applying softmax y_hat = softmax(np.dot(outsideVectors, centerWordVec)) # (N,) N x 1 # can also get y_hat in a single line: y_hat = softmax(outsideVectors @ centerWordVec) # for a single pair of words c and o, the loss is given by: # J(v_c, o, U) = -log P(O = o | C = c) = -log [y_hat[o]] loss = -np.log(y_hat[outsideWordIdx]) # grad calc # generate the ground-truth one-hot vector, [..., 0, outsideWordIdx=1, 0, ...] y = np.zeros_like(y_hat) y[outsideWordIdx] = 1 # can also get loss as -np.dot(y, np.log(y_hat)) gradCenterVec = np.dot(y_hat - y, outsideVectors) # inner product results in a scalar # or gradCenterVec = np.dot(outsideVectors.T, y_hat - y) gradOutsideVecs = np.outer(y_hat - y, centerWordVec) # outer product results in a matrix # or gradOutsideVecs = np.dot((y_hat - y)[:, np.newaxis], centerWordVec[np.newaxis, :]) # sanity check the dimensions assert gradCenterVec.shape == centerWordVec.shape assert gradOutsideVecs.shape == outsideVectors.shape ### END YOUR CODE return loss, gradCenterVec, gradOutsideVecs def getNegativeSamples(outsideWordIdx, dataset, K): """ Samples K indexes which are not the outsideWordIdx """ negSampleWordIndices = [None] * K for k in range(K): newidx = dataset.sampleTokenIdx() while newidx == outsideWordIdx: newidx = dataset.sampleTokenIdx() negSampleWordIndices[k] = newidx return negSampleWordIndices def negSamplingLossAndGradient( centerWordVec, outsideWordIdx, outsideVectors, dataset, K=10 ): """ Negative sampling loss function for word2vec models Implement the negative sampling loss and gradients for a centerWordVec and a outsideWordIdx word vector as a building block for word2vec models. K is the number of negative samples to take. Note: The same word may be negatively sampled multiple times. For example if an outside word is sampled twice, you shall have to double count the gradient with respect to this word. Thrice if it was sampled three times, and so forth. Arguments/Return Specifications: same as naiveSoftmaxLossAndGradient """ # Negative sampling of words is done for you. Do not modify this if you # wish to match the autograder and receive points! negSampleWordIndices = getNegativeSamples(outsideWordIdx, dataset, K) indices = [outsideWordIdx] + negSampleWordIndices ### YOUR CODE HERE (~10 Lines) ### Please use your implementation of sigmoid in here. gradOutsideVecs = np.zeros(outsideVectors.shape) # Calculate the first term y_hat = sigmoid(np.dot(outsideVectors[outsideWordIdx], centerWordVec)) loss = -np.log(y_hat) gradCenterVec = np.dot(y_hat - 1, outsideVectors[outsideWordIdx]) gradOutsideVecs[outsideWordIdx] = np.dot(y_hat - 1, centerWordVec) # Calculate the second term for i in range(K): w_k = indices[i+1] y_k_hat = sigmoid(-np.dot(outsideVectors[w_k], centerWordVec)) loss += -np.log(y_k_hat) gradOutsideVecs[w_k] += np.dot(1.0 - y_k_hat, centerWordVec) gradCenterVec += np.dot(1.0 - y_k_hat, outsideVectors[w_k]) ### END YOUR CODE return loss, gradCenterVec, gradOutsideVecs def skipgram(currentCenterWord, windowSize, outsideWords, word2Ind, centerWordVectors, outsideVectors, dataset, word2vecLossAndGradient=naiveSoftmaxLossAndGradient): """ Skip-gram model in word2vec Implement the skip-gram model in this function. Arguments: currentCenterWord -- a string of the current center word windowSize -- integer, context window size outsideWords -- list of no more than 2*windowSize strings, the outside words word2Ind -- a dictionary that maps words to their indices in the word vector list centerWordVectors -- center word vectors (as rows) is in shape (num words in vocab, word vector length) for all words in vocab (V in pdf handout) outsideVectors -- outside vectors is in shape (num words in vocab, word vector length) for all words in vocab (transpose of U in the pdf handout) word2vecLossAndGradient -- the loss and gradient function for a prediction vector given the outsideWordIdx word vectors, could be one of the two loss functions you implemented above. Return: loss -- the loss function value for the skip-gram model (J in the pdf handout) gradCenterVec -- the gradient with respect to the center word vector in shape (word vector length, ) (dJ / dv_c in the pdf handout) gradOutsideVecs -- the gradient with respect to all the outside word vectors in shape (num words in vocab, word vector length) (dJ / dU) """ loss = 0.0 gradCenterVecs = np.zeros(centerWordVectors.shape) gradOutsideVectors = np.zeros(outsideVectors.shape) ### YOUR CODE HERE (~8 Lines) # skip-gram model predicts outside words from the center word # get center word vec first from currentCenterWord centerWordIdx = word2Ind[currentCenterWord] centerWordVec = centerWordVectors[centerWordIdx] for outsideWord in outsideWords: outsideWordIdx = word2Ind[outsideWord] stepLoss, gradCenter, gradOutside = word2vecLossAndGradient(centerWordVec, outsideWordIdx, outsideVectors, dataset) loss += stepLoss gradCenterVecs[centerWordIdx] += gradCenter gradOutsideVectors += gradOutside ### END YOUR CODE return loss, gradCenterVecs, gradOutsideVectors ############################################# # Testing functions below. DO NOT MODIFY! # ############################################# def word2vec_sgd_wrapper(word2vecModel, word2Ind, wordVectors, dataset, windowSize, word2vecLossAndGradient=naiveSoftmaxLossAndGradient): batchsize = 50 loss = 0.0 grad = np.zeros(wordVectors.shape) N = wordVectors.shape[0] centerWordVectors = wordVectors[:int(N/2),:] outsideVectors = wordVectors[int(N/2):,:] for i in range(batchsize): windowSize1 = random.randint(1, windowSize) centerWord, context = dataset.getRandomContext(windowSize1) c, gin, gout = word2vecModel( centerWord, windowSize1, context, word2Ind, centerWordVectors, outsideVectors, dataset, word2vecLossAndGradient ) loss += c / batchsize grad[:int(N/2), :] += gin / batchsize grad[int(N/2):, :] += gout / batchsize return loss, grad def test_sigmoid(): """ Test sigmoid function """ print("=== Sanity check for sigmoid ===") assert sigmoid(0) == 0.5 assert np.allclose(sigmoid(np.array([0])), np.array([0.5])) assert np.allclose(sigmoid(np.array([1,2,3])), np.array([0.73105858, 0.88079708, 0.95257413])) print("Tests for sigmoid passed!") def getDummyObjects(): """ Helper method for naiveSoftmaxLossAndGradient and negSamplingLossAndGradient tests """ def dummySampleTokenIdx(): return random.randint(0, 4) def getRandomContext(C): tokens = ["a", "b", "c", "d", "e"] return tokens[random.randint(0,4)], \ [tokens[random.randint(0,4)] for i in range(2*C)] dataset = type('dummy', (), {})() dataset.sampleTokenIdx = dummySampleTokenIdx dataset.getRandomContext = getRandomContext random.seed(31415) np.random.seed(9265) dummy_vectors = normalizeRows(np.random.randn(10,3)) dummy_tokens = dict([("a",0), ("b",1), ("c",2),("d",3),("e",4)]) return dataset, dummy_vectors, dummy_tokens def test_naiveSoftmaxLossAndGradient(): """ Test naiveSoftmaxLossAndGradient """ dataset, dummy_vectors, dummy_tokens = getDummyObjects() print("==== Gradient check for naiveSoftmaxLossAndGradient ====") def temp(vec): loss, gradCenterVec, gradOutsideVecs = naiveSoftmaxLossAndGradient(vec, 1, dummy_vectors, dataset) return loss, gradCenterVec gradcheck_naive(temp, np.random.randn(3), "naiveSoftmaxLossAndGradient gradCenterVec") centerVec = np.random.randn(3) def temp(vec): loss, gradCenterVec, gradOutsideVecs = naiveSoftmaxLossAndGradient(centerVec, 1, vec, dataset) return loss, gradOutsideVecs gradcheck_naive(temp, dummy_vectors, "naiveSoftmaxLossAndGradient gradOutsideVecs") def test_negSamplingLossAndGradient(): """ Test negSamplingLossAndGradient """ dataset, dummy_vectors, dummy_tokens = getDummyObjects() print("==== Gradient check for negSamplingLossAndGradient ====") def temp(vec): loss, gradCenterVec, gradOutsideVecs = negSamplingLossAndGradient(vec, 1, dummy_vectors, dataset) return loss, gradCenterVec gradcheck_naive(temp, np.random.randn(3), "negSamplingLossAndGradient gradCenterVec") centerVec = np.random.randn(3) def temp(vec): loss, gradCenterVec, gradOutsideVecs = negSamplingLossAndGradient(centerVec, 1, vec, dataset) return loss, gradOutsideVecs gradcheck_naive(temp, dummy_vectors, "negSamplingLossAndGradient gradOutsideVecs") def test_skipgram(): """ Test skip-gram with naiveSoftmaxLossAndGradient """ dataset, dummy_vectors, dummy_tokens = getDummyObjects() print("==== Gradient check for skip-gram with naiveSoftmaxLossAndGradient ====") gradcheck_naive(lambda vec: word2vec_sgd_wrapper( skipgram, dummy_tokens, vec, dataset, 5, naiveSoftmaxLossAndGradient), dummy_vectors, "naiveSoftmaxLossAndGradient Gradient") grad_tests_softmax(skipgram, dummy_tokens, dummy_vectors, dataset) print("==== Gradient check for skip-gram with negSamplingLossAndGradient ====") gradcheck_naive(lambda vec: word2vec_sgd_wrapper( skipgram, dummy_tokens, vec, dataset, 5, negSamplingLossAndGradient), dummy_vectors, "negSamplingLossAndGradient Gradient") grad_tests_negsamp(skipgram, dummy_tokens, dummy_vectors, dataset, negSamplingLossAndGradient) def test_word2vec(): """ Test the two word2vec implementations, before running on Stanford Sentiment Treebank """ test_sigmoid() test_naiveSoftmaxLossAndGradient() test_negSamplingLossAndGradient() test_skipgram() if __name__ == "__main__": parser = argparse.ArgumentParser(description='Test your implementations.') parser.add_argument('function', nargs='?', type=str, default='all', help='Name of the function you would like to test.') args = parser.parse_args() if args.function == 'sigmoid': test_sigmoid() elif args.function == 'naiveSoftmaxLossAndGradient': test_naiveSoftmaxLossAndGradient() elif args.function == 'negSamplingLossAndGradient': test_negSamplingLossAndGradient() elif args.function == 'skipgram': test_skipgram() elif args.function == 'all': test_word2vec() ================================================ FILE: a3/README.txt ================================================ Welcome to Assignment 3! We'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. If 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: # 1. Activate your old environment: conda activate cs224n # 2. Install docopt conda install docopt # 3. Install pytorch, torchvision, and tqdm conda install pytorch torchvision -c pytorch conda install -c anaconda tqdm If you would like to instead create a new environment for this assignment, please run: # 1. Create an environment with dependencies specified in local_env.yml (note that this can take some time depending on your laptop): conda env create -f local_env.yml # 2. Activate the new environment: conda activate cs224n_a3 # To deactivate an active environment, use conda deactivate ================================================ FILE: a3/collect_submission.sh ================================================ rm -f assignment3.zip zip -r assignment3.zip *.py ./data ./utils ================================================ FILE: a3/data/dev.conll ================================================ 1 Influential _ ADJ JJ _ 2 amod _ _ 2 members _ NOUN NNS _ 10 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 House _ PROPN NNP _ 6 compound _ _ 6 Ways _ PROPN NNPS _ 2 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Means _ PROPN NNP _ 9 compound _ _ 9 Committee _ PROPN NNP _ 6 conj _ _ 10 introduced _ VERB VBD _ 0 root _ _ 11 legislation _ NOUN NN _ 10 dobj _ _ 12 that _ PRON WDT _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 restrict _ VERB VB _ 11 acl:relcl _ _ 15 how _ ADV WRB _ 22 advmod _ _ 16 the _ DET DT _ 20 det _ _ 17 new _ ADJ JJ _ 20 amod _ _ 18 savings-and-loan _ NOUN NN _ 20 compound _ _ 19 bailout _ NOUN NN _ 20 compound _ _ 20 agency _ NOUN NN _ 22 nsubj _ _ 21 can _ AUX MD _ 22 aux _ _ 22 raise _ VERB VB _ 14 ccomp _ _ 23 capital _ NOUN NN _ 22 dobj _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 creating _ VERB VBG _ 14 xcomp _ _ 26 another _ DET DT _ 28 det _ _ 27 potential _ ADJ JJ _ 28 amod _ _ 28 obstacle _ NOUN NN _ 25 dobj _ _ 29 to _ ADP TO _ 33 case _ _ 30 the _ DET DT _ 31 det _ _ 31 government _ NOUN NN _ 33 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 sale _ NOUN NN _ 28 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 sick _ ADJ JJ _ 36 amod _ _ 36 thrifts _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 whose _ PRON WP$ _ 5 nmod:poss _ _ 5 backers _ NOUN NNS _ 6 nsubj _ _ 6 include _ VERB VBP _ 2 acl:relcl _ _ 7 Chairman _ PROPN NNP _ 9 compound _ _ 8 Dan _ PROPN NNP _ 9 compound _ _ 9 Rostenkowski _ PROPN NNP _ 6 dobj _ _ 10 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 11 D. _ PROPN NNP _ 9 appos _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Ill. _ PROPN NNP _ 11 dep _ _ 14 -RRB- _ PUNCT -RRB- _ 11 punct _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 would _ AUX MD _ 17 aux _ _ 17 prevent _ VERB VB _ 0 root _ _ 18 the _ DET DT _ 21 det _ _ 19 Resolution _ PROPN NNP _ 21 compound _ _ 20 Trust _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 17 dobj _ _ 22 from _ SCONJ IN _ 23 mark _ _ 23 raising _ VERB VBG _ 17 advcl _ _ 24 temporary _ ADJ JJ _ 26 amod _ _ 25 working _ VERB JJ _ 26 amod _ _ 26 capital _ NOUN NN _ 23 dobj _ _ 27 by _ SCONJ IN _ 28 mark _ _ 28 having _ VERB VBG _ 17 advcl _ _ 29 an _ DET DT _ 31 det _ _ 30 RTC-owned _ ADJ JJ _ 31 amod _ _ 31 bank _ NOUN NN _ 28 dobj _ _ 32 or _ CONJ CC _ 31 cc _ _ 33 thrift _ NOUN NN _ 35 compound _ _ 34 issue _ NOUN NN _ 35 compound _ _ 35 debt _ NOUN NN _ 31 conj _ _ 36 that _ PRON WDT _ 40 nsubjpass _ _ 37 would _ AUX MD _ 40 aux _ _ 38 n't _ PART RB _ 40 neg _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 counted _ VERB VBN _ 31 acl:relcl _ _ 41 on _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 federal _ ADJ JJ _ 44 amod _ _ 44 budget _ NOUN NN _ 40 nmod _ _ 45 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 3 nsubj _ _ 3 intends _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 restrict _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 RTC _ PROPN NNP _ 5 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 Treasury _ PROPN NNP _ 10 compound _ _ 10 borrowings _ NOUN NNS _ 5 nmod _ _ 11 only _ ADV RB _ 10 advmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 unless _ SCONJ IN _ 16 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 agency _ NOUN NN _ 16 nsubj _ _ 16 receives _ VERB VBZ _ 3 advcl _ _ 17 specific _ ADJ JJ _ 19 amod _ _ 18 congressional _ ADJ JJ _ 19 amod _ _ 19 authorization _ NOUN NN _ 16 dobj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 Such _ ADJ JJ _ 7 amod _ _ 3 agency _ NOUN NN _ 7 compound _ _ 4 ` _ PUNCT `` _ 7 punct _ _ 5 self-help _ NOUN NN _ 7 compound _ _ 6 ' _ PUNCT '' _ 7 punct _ _ 7 borrowing _ NOUN NN _ 9 nsubj _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 unauthorized _ ADJ JJ _ 22 ccomp _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 expensive _ ADJ JJ _ 9 conj _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 far _ ADV RB _ 15 advmod _ _ 14 more _ ADV RBR _ 15 advmod _ _ 15 expensive _ ADJ JJ _ 9 dep _ _ 16 than _ ADP IN _ 19 case _ _ 17 direct _ ADJ JJ _ 19 amod _ _ 18 Treasury _ PROPN NNP _ 19 compound _ _ 19 borrowing _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 22 punct _ _ 21 '' _ PUNCT '' _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Rep. _ PROPN NNP _ 25 compound _ _ 24 Fortney _ PROPN NNP _ 25 compound _ _ 25 Stark _ PROPN NNP _ 22 nsubj _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 D. _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Calif. _ PROPN NNP _ 27 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 31 , _ PUNCT , _ 25 punct _ _ 32 the _ DET DT _ 33 det _ _ 33 bill _ NOUN NN _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 chief _ ADJ JJ _ 36 amod _ _ 36 sponsor _ NOUN NN _ 25 appos _ _ 37 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 complex _ ADJ JJ _ 4 amod _ _ 3 financing _ NOUN NN _ 4 compound _ _ 4 plan _ NOUN NN _ 10 nsubj _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 S&L _ NOUN NN _ 9 compound _ _ 8 bailout _ NOUN NN _ 9 compound _ _ 9 law _ NOUN NN _ 4 nmod _ _ 10 includes _ VERB VBZ _ 0 root _ _ 11 raising _ VERB VBG _ 10 xcomp _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 30 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 from _ ADP IN _ 16 case _ _ 16 debt _ NOUN NN _ 11 nmod _ _ 17 issued _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 newly _ ADV RB _ 21 advmod _ _ 21 created _ VERB VBN _ 22 amod _ _ 22 RTC _ PROPN NNP _ 17 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 financing _ NOUN NN _ 3 compound _ _ 3 system _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 created _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 law _ NOUN NN _ 5 nmod _ _ 10 in _ SCONJ IN _ 13 mark _ _ 11 order _ NOUN NN _ 10 mwe _ _ 12 to _ PART TO _ 13 mark _ _ 13 keep _ VERB VB _ 5 advcl _ _ 14 the _ DET DT _ 16 det _ _ 15 bailout _ NOUN NN _ 16 compound _ _ 16 spending _ NOUN NN _ 13 dobj _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 swelling _ VERB VBG _ 13 advcl _ _ 19 the _ DET DT _ 21 det _ _ 20 budget _ NOUN NN _ 21 compound _ _ 21 deficit _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Another _ DET DT _ 2 advmod _ _ 2 $ _ SYM $ _ 7 nsubjpass _ _ 3 20 _ NUM CD _ 4 compound _ _ 4 billion _ NUM CD _ 2 nummod _ _ 5 would _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 raised _ VERB VBN _ 0 root _ _ 8 through _ ADP IN _ 10 case _ _ 9 Treasury _ PROPN NNP _ 10 compound _ _ 10 bonds _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 13 nsubj _ _ 13 pay _ VERB VBP _ 10 acl:relcl _ _ 14 lower _ ADJ JJR _ 16 amod _ _ 15 interest _ NOUN NN _ 16 compound _ _ 16 rates _ NOUN NNS _ 13 dobj _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 RTC _ PROPN NNP _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 requires _ VERB VBZ _ 0 root _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 working _ NOUN VBG _ 9 compound _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 capital _ NOUN NN _ 5 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 maintain _ VERB VB _ 9 acl _ _ 12 the _ DET DT _ 14 det _ _ 13 bad _ ADJ JJ _ 14 amod _ _ 14 assets _ NOUN NNS _ 11 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 thrifts _ NOUN NNS _ 14 nmod _ _ 17 that _ PRON WDT _ 19 nsubjpass _ _ 18 are _ AUX VBP _ 19 auxpass _ _ 19 sold _ VERB VBN _ 16 acl:relcl _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 until _ SCONJ IN _ 26 mark _ _ 22 the _ DET DT _ 23 det _ _ 23 assets _ NOUN NNS _ 26 nsubjpass _ _ 24 can _ AUX MD _ 26 aux _ _ 25 be _ AUX VB _ 26 auxpass _ _ 26 sold _ VERB VBN _ 11 advcl _ _ 27 separately _ ADV RB _ 26 advmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 debt _ NOUN NN _ 5 nsubjpass _ _ 3 would _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 paid _ VERB VBN _ 0 root _ _ 6 off _ ADP RP _ 5 compound:prt _ _ 7 as _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 assets _ NOUN NNS _ 11 nsubjpass _ _ 10 are _ AUX VBP _ 11 auxpass _ _ 11 sold _ VERB VBN _ 5 advcl _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 leaving _ VERB VBG _ 5 xcomp _ _ 14 the _ DET DT _ 16 det _ _ 15 total _ ADJ JJ _ 16 amod _ _ 16 spending _ NOUN NN _ 13 dobj _ _ 17 for _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 bailout _ NOUN NN _ 16 nmod _ _ 20 at _ ADP IN _ 21 case _ _ 21 $ _ SYM $ _ 13 nmod _ _ 22 50 _ NUM CD _ 23 compound _ _ 23 billion _ NUM CD _ 21 nummod _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 or _ CONJ CC _ 21 cc _ _ 26 $ _ SYM $ _ 21 conj _ _ 27 166 _ NUM CD _ 28 compound _ _ 28 billion _ NUM CD _ 26 nummod _ _ 29 including _ VERB VBG _ 30 case _ _ 30 interest _ NOUN NN _ 26 nmod _ _ 31 over _ ADP IN _ 33 case _ _ 32 10 _ NUM CD _ 33 nummod _ _ 33 years _ NOUN NNS _ 30 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 problem _ NOUN NN _ 14 ccomp _ _ 6 that _ PRON WDT _ 8 nsubj _ _ 7 clearly _ ADV RB _ 8 advmod _ _ 8 has _ VERB VBZ _ 5 acl:relcl _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 resolved _ VERB VBN _ 8 xcomp _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 David _ PROPN NNP _ 16 compound _ _ 16 Cooke _ PROPN NNP _ 14 nsubj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 executive _ ADJ JJ _ 19 amod _ _ 19 director _ NOUN NN _ 16 appos _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 RTC _ PROPN NNP _ 19 nmod _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 already _ ADV RB _ 5 advmod _ _ 5 spent _ VERB VBN _ 0 root _ _ 6 roughly _ ADV RB _ 7 advmod _ _ 7 $ _ SYM $ _ 5 dobj _ _ 8 19 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 selling _ VERB NN _ 5 xcomp _ _ 11 34 _ NUM CD _ 13 nummod _ _ 12 insolvent _ ADJ JJ _ 13 amod _ _ 13 S&Ls _ NOUN NNS _ 10 dobj _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 it _ PRON PRP _ 18 nsubj _ _ 17 is _ VERB VBZ _ 18 cop _ _ 18 likely _ ADJ JJ _ 5 conj _ _ 19 to _ PART TO _ 20 mark _ _ 20 sell _ VERB VB _ 18 xcomp _ _ 21 or _ CONJ CC _ 20 cc _ _ 22 merge _ VERB VB _ 20 conj _ _ 23 600 _ NUM CD _ 20 dobj _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 time _ NOUN NN _ 20 nmod _ _ 27 the _ DET DT _ 28 det _ _ 28 bailout _ NOUN NN _ 29 nsubj _ _ 29 concludes _ VERB VBZ _ 26 acl:relcl _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Absent _ VERB JJ _ 13 dep _ _ 2 other _ ADJ JJ _ 4 amod _ _ 3 working _ NOUN VBG _ 4 compound _ _ 4 capital _ NOUN NN _ 1 dep _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 said _ VERB VBD _ 13 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 RTC _ PROPN NNP _ 13 nsubjpass _ _ 11 would _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 forced _ VERB VBN _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 delay _ VERB VB _ 13 xcomp _ _ 16 other _ ADJ JJ _ 18 amod _ _ 17 thrift _ NOUN NN _ 18 compound _ _ 18 resolutions _ NOUN NNS _ 15 dobj _ _ 19 until _ SCONJ IN _ 23 mark _ _ 20 cash _ NOUN NN _ 23 nsubjpass _ _ 21 could _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 raised _ VERB VBN _ 15 advcl _ _ 24 by _ SCONJ IN _ 25 mark _ _ 25 selling _ VERB VBG _ 23 advcl _ _ 26 the _ DET DT _ 28 det _ _ 27 bad _ ADJ JJ _ 28 amod _ _ 28 assets _ NOUN NNS _ 25 dobj _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 have _ VERB VB _ 22 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 wait _ VERB VB _ 4 xcomp _ _ 7 until _ SCONJ IN _ 10 mark _ _ 8 we _ PRON PRP _ 10 nsubj _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 collected _ VERB VBN _ 6 advcl _ _ 11 on _ ADP IN _ 13 case _ _ 12 those _ DET DT _ 13 det _ _ 13 assets _ NOUN NNS _ 10 nmod _ _ 14 before _ SCONJ IN _ 17 mark _ _ 15 we _ PRON PRP _ 17 nsubj _ _ 16 can _ AUX MD _ 17 aux _ _ 17 move _ VERB VB _ 6 advcl _ _ 18 forward _ ADV RB _ 17 advmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 '' _ PUNCT '' _ 22 punct _ _ 21 he _ PRON PRP _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 complicated _ VERB JJ _ 3 amod _ _ 3 language _ NOUN NN _ 10 nsubj _ _ 4 in _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 huge _ ADJ JJ _ 8 amod _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 law _ NOUN NN _ 3 nmod _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 muddied _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 fight _ NOUN NN _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 law _ NOUN NN _ 4 nsubj _ _ 3 does _ AUX VBZ _ 4 aux _ _ 4 allow _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 borrow _ VERB VB _ 4 xcomp _ _ 9 from _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 Treasury _ PROPN NNP _ 8 nmod _ _ 12 up _ ADP IN _ 14 dep _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 $ _ SYM $ _ 8 dobj _ _ 15 5 _ NUM CD _ 16 compound _ _ 16 billion _ NUM CD _ 14 nummod _ _ 17 at _ ADP IN _ 19 case _ _ 18 any _ DET DT _ 19 det _ _ 19 time _ NOUN NN _ 8 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Moreover _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 total _ ADJ JJ _ 9 amod _ _ 9 obligations _ NOUN NNS _ 12 nsubj _ _ 10 may _ AUX MD _ 12 aux _ _ 11 not _ PART RB _ 12 neg _ _ 12 exceed _ VERB VB _ 4 ccomp _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 50 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 but _ CONJ CC _ 4 cc _ _ 18 that _ DET DT _ 19 det _ _ 19 figure _ NOUN NN _ 21 nsubjpass _ _ 20 is _ AUX VBZ _ 21 auxpass _ _ 21 derived _ VERB VBN _ 4 conj _ _ 22 after _ SCONJ IN _ 23 mark _ _ 23 including _ VERB VBG _ 21 advcl _ _ 24 notes _ NOUN NNS _ 23 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 other _ ADJ JJ _ 27 amod _ _ 27 debt _ NOUN NN _ 24 conj _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 and _ CONJ CC _ 23 cc _ _ 30 subtracting _ VERB VBG _ 23 conj _ _ 31 from _ ADP IN _ 32 case _ _ 32 it _ PRON PRP _ 30 nmod _ _ 33 the _ DET DT _ 35 det _ _ 34 market _ NOUN NN _ 35 compound _ _ 35 value _ NOUN NN _ 30 dobj _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 assets _ NOUN NNS _ 35 nmod _ _ 39 the _ DET DT _ 40 det _ _ 40 RTC _ PROPN NNP _ 41 nsubj _ _ 41 holds _ VERB VBZ _ 38 acl:relcl _ _ 42 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 Congress _ PROPN NNP _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 anticipate _ VERB VB _ 12 ccomp _ _ 6 or _ CONJ CC _ 5 cc _ _ 7 intend _ VERB VB _ 5 conj _ _ 8 more _ ADJ JJR _ 10 amod _ _ 9 public _ ADJ JJ _ 10 amod _ _ 10 debt _ NOUN NN _ 5 dobj _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 say _ VERB VBP _ 0 root _ _ 13 opponents _ NOUN NNS _ 12 nsubj _ _ 14 of _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 16 det _ _ 16 RTC _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 working-capital _ ADJ JJ _ 19 amod _ _ 19 plan _ NOUN NN _ 13 nmod _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 and _ CONJ CC _ 12 cc _ _ 22 Rep. _ PROPN NNP _ 24 compound _ _ 23 Charles _ PROPN NNP _ 24 compound _ _ 24 Schumer _ PROPN NNP _ 31 nsubj _ _ 25 -LRB- _ PUNCT -LRB- _ 26 punct _ _ 26 D. _ PROPN NNP _ 24 appos _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 N.Y _ PROPN NNP _ 26 dep _ _ 29 . _ PUNCT . _ 28 punct _ _ 30 -RRB- _ PUNCT -RRB- _ 26 punct _ _ 31 said _ VERB VBD _ 12 conj _ _ 32 the _ DET DT _ 35 det _ _ 33 RTC _ PROPN NNP _ 35 compound _ _ 34 Oversight _ PROPN NNP _ 35 compound _ _ 35 Board _ PROPN NNP _ 38 nsubj _ _ 36 has _ AUX VBZ _ 38 aux _ _ 37 been _ VERB VBN _ 38 cop _ _ 38 remiss _ ADJ VBN _ 31 ccomp _ _ 39 in _ SCONJ IN _ 41 mark _ _ 40 not _ PART RB _ 41 neg _ _ 41 keeping _ VERB VBG _ 38 advcl _ _ 42 Congress _ PROPN NNP _ 43 nsubj _ _ 43 informed _ VERB VBN _ 41 xcomp _ _ 44 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 That _ DET DT _ 3 det _ _ 3 secrecy _ NOUN NN _ 4 nsubj _ _ 4 leads _ VERB VBZ _ 26 ccomp _ _ 5 to _ ADP TO _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 proposal _ NOUN NN _ 4 nmod _ _ 8 like _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 one _ NUM CD _ 7 nmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 Ways _ PROPN NNP _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Means _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 seems _ VERB VBZ _ 10 acl:relcl _ _ 18 to _ ADP TO _ 19 case _ _ 19 me _ PRON PRP _ 17 nmod _ _ 20 sort _ NOUN NN _ 22 advmod _ _ 21 of _ ADP IN _ 20 case _ _ 22 draconian _ ADJ JJ _ 17 xcomp _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 '' _ PUNCT '' _ 26 punct _ _ 25 he _ PRON PRP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 RTC _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 going _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 have _ VERB VB _ 5 xcomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 pay _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 11 det _ _ 11 price _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 prior _ ADJ JJ _ 14 amod _ _ 14 consultation _ NOUN NN _ 11 nmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Hill _ PROPN NNP _ 14 nmod _ _ 18 if _ SCONJ IN _ 20 mark _ _ 19 they _ PRON PRP _ 20 nsubj _ _ 20 want _ VERB VBP _ 5 advcl _ _ 21 that _ DET DT _ 22 det _ _ 22 kind _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 24 case _ _ 24 flexibility _ NOUN NN _ 22 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 26 '' _ PUNCT '' _ 5 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Ways _ PROPN NNP _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Means _ PROPN NNP _ 2 conj _ _ 5 Committee _ PROPN NNP _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 hold _ VERB VB _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 hearing _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 bill _ NOUN NN _ 9 nmod _ _ 13 next _ ADP IN _ 14 amod _ _ 14 Tuesday _ PROPN NNP _ 7 nmod:tmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 We _ PRON PRP _ 3 nsubj _ _ 2 're _ AUX VBP _ 3 aux _ _ 3 about _ ADP IN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 see _ VERB VB _ 3 xcomp _ _ 6 if _ SCONJ IN _ 8 mark _ _ 7 advertising _ NOUN NN _ 8 nsubj _ _ 8 works _ VERB NNS _ 5 advcl _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Hard _ ADV JJ _ 24 advmod _ _ 2 on _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 heels _ NOUN NNS _ 1 nmod _ _ 5 of _ ADP IN _ 10 case _ _ 6 Friday _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 190-point _ ADJ JJ _ 10 amod _ _ 9 stock-market _ NOUN NN _ 10 compound _ _ 10 plunge _ NOUN NN _ 4 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 13 det _ _ 13 uncertainty _ NOUN NN _ 10 conj _ _ 14 that _ PRON WDT _ 16 nsubjpass _ _ 15 's _ AUX VBZ _ 16 auxpass _ _ 16 followed _ VERB VBN _ 13 acl:relcl _ _ 17 , _ PUNCT , _ 24 punct _ _ 18 a _ DET DT _ 22 det _ _ 19 few _ ADJ JJ _ 22 amod _ _ 20 big _ ADJ JJ _ 22 amod _ _ 21 brokerage _ NOUN NN _ 22 compound _ _ 22 firms _ NOUN NNS _ 24 nsubj _ _ 23 are _ AUX VBP _ 24 aux _ _ 24 rolling _ VERB VBG _ 0 root _ _ 25 out _ ADP RP _ 24 compound:prt _ _ 26 new _ ADJ JJ _ 27 amod _ _ 27 ads _ NOUN NNS _ 24 dobj _ _ 28 trumpeting _ VERB VBG _ 27 acl _ _ 29 a _ DET DT _ 31 det _ _ 30 familiar _ ADJ JJ _ 31 amod _ _ 31 message _ NOUN NN _ 28 dobj _ _ 32 : _ PUNCT : _ 31 punct _ _ 33 Keep _ VERB VB _ 31 dep _ _ 34 on _ ADP IN _ 33 compound:prt _ _ 35 investing _ VERB NN _ 33 xcomp _ _ 36 , _ PUNCT , _ 33 punct _ _ 37 the _ DET DT _ 38 det _ _ 38 market _ NOUN NN _ 41 nsubj _ _ 39 's _ VERB POS _ 41 cop _ _ 40 just _ ADV RB _ 41 advmod _ _ 41 fine _ ADJ JJ _ 33 parataxis _ _ 42 . _ PUNCT . _ 24 punct _ _ 1 Their _ PRON PRP$ _ 2 nmod:poss _ _ 2 mission _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 keep _ VERB VB _ 3 xcomp _ _ 6 clients _ NOUN NNS _ 5 dobj _ _ 7 from _ SCONJ IN _ 8 mark _ _ 8 fleeing _ VERB VBG _ 5 advcl _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 as _ SCONJ IN _ 15 mark _ _ 13 individual _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 15 nsubj _ _ 15 did _ VERB VBD _ 8 advcl _ _ 16 in _ ADP IN _ 17 case _ _ 17 droves _ NOUN NNS _ 15 nmod _ _ 18 after _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 crash _ NOUN NN _ 15 nmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 October _ PROPN NNP _ 20 nmod _ _ 1 Just _ ADV RB _ 2 advmod _ _ 2 days _ NOUN NNS _ 11 nmod _ _ 3 after _ ADP IN _ 2 case _ _ 4 the _ DET DT _ 6 det _ _ 5 1987 _ NUM CD _ 6 nummod _ _ 6 crash _ NOUN NN _ 2 dep _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 major _ ADJ JJ _ 10 amod _ _ 9 brokerage _ NOUN NN _ 10 compound _ _ 10 firms _ NOUN NNS _ 11 nsubj _ _ 11 rushed _ VERB VBD _ 0 root _ _ 12 out _ ADP RP _ 11 compound:prt _ _ 13 ads _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 calm _ VERB JJ _ 11 advcl _ _ 16 investors _ NOUN NNS _ 15 dobj _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 7 nmod:tmod _ _ 3 around _ ADP RP _ 2 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 're _ AUX VBP _ 7 aux _ _ 7 moving _ VERB VBG _ 0 root _ _ 8 even _ ADV RB _ 9 advmod _ _ 9 faster _ ADV RBR _ 7 advmod _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 PaineWebber _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 filmed _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 new _ ADJ JJ _ 7 amod _ _ 6 television _ NOUN NN _ 7 compound _ _ 7 commercial _ NOUN NN _ 3 dobj _ _ 8 at _ ADP IN _ 11 case _ _ 9 4 _ NUM CD _ 11 nummod _ _ 10 p.m. _ NOUN RB _ 11 compound _ _ 11 EDT _ PROPN NNP _ 3 nmod _ _ 12 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 had _ VERB VBD _ 3 conj _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 air _ NOUN NN _ 14 nmod _ _ 19 by _ ADP IN _ 21 case _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 night _ NOUN NN _ 14 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Fidelity _ PROPN NNP _ 2 compound _ _ 2 Investments _ PROPN NNP _ 3 nsubj _ _ 3 placed _ VERB VBD _ 0 root _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 ads _ NOUN NNS _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 newspapers _ NOUN NNS _ 3 nmod _ _ 8 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 and _ CONJ CC _ 3 cc _ _ 11 wrote _ VERB VBD _ 3 conj _ _ 12 another _ DET DT _ 14 det _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 ad _ NOUN NN _ 11 dobj _ _ 15 appearing _ VERB VBG _ 14 acl _ _ 16 today _ NOUN NN _ 15 nmod:tmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Shearson _ PROPN NNP _ 4 compound _ _ 2 Lehman _ PROPN NNP _ 4 compound _ _ 3 Hutton _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 10 nsubj _ _ 5 by _ ADP IN _ 7 case _ _ 6 yesterday _ NOUN NN _ 7 compound _ _ 7 afternoon _ NOUN NN _ 10 nmod _ _ 8 had _ AUX VBD _ 10 aux _ _ 9 already _ ADV RB _ 10 advmod _ _ 10 written _ VERB VBN _ 0 root _ _ 11 new _ ADJ JJ _ 13 amod _ _ 12 TV _ NOUN NN _ 13 compound _ _ 13 ads _ NOUN NNS _ 10 dobj _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 considered _ VERB VBD _ 0 root _ _ 3 running _ VERB VBG _ 2 xcomp _ _ 4 them _ PRON PRP _ 3 dobj _ _ 5 during _ ADP IN _ 11 case _ _ 6 tomorrow _ NOUN NN _ 7 compound _ _ 7 night _ NOUN NN _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 World _ PROPN NNP _ 11 compound _ _ 10 Series _ PROPN NNP _ 11 compound _ _ 11 broadcast _ NOUN NN _ 3 nmod _ _ 12 but _ CONJ CC _ 2 cc _ _ 13 decided _ VERB VBD _ 2 conj _ _ 14 not _ ADV RB _ 15 neg _ _ 15 to _ PART TO _ 13 xcomp _ _ 16 when _ ADV WRB _ 19 advmod _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 19 nsubj _ _ 19 recovered _ VERB VBD _ 13 advcl _ _ 20 yesterday _ NOUN NN _ 19 nmod:tmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 brokerage _ NOUN NN _ 3 compound _ _ 3 firms _ NOUN NNS _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 including _ VERB VBG _ 7 case _ _ 6 Merrill _ PROPN NNP _ 7 compound _ _ 7 Lynch _ PROPN NNP _ 3 nmod _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Co. _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 were _ AUX VBD _ 12 aux _ _ 12 plotting _ VERB VBG _ 0 root _ _ 13 out _ ADP RP _ 12 compound:prt _ _ 14 potential _ ADJ JJ _ 17 amod _ _ 15 new _ ADJ JJ _ 17 amod _ _ 16 ad _ NOUN NN _ 17 compound _ _ 17 strategies _ NOUN NNS _ 12 dobj _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 brokerage _ NOUN NN _ 3 compound _ _ 3 firms _ NOUN NNS _ 4 nsubj _ _ 4 learned _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 lesson _ NOUN NN _ 4 dobj _ _ 7 the _ DET DT _ 9 det _ _ 8 last _ ADJ JJ _ 9 amod _ _ 9 time _ NOUN NN _ 4 nmod:tmod _ _ 10 around _ ADP IN _ 9 advmod _ _ 11 , _ PUNCT , _ 9 punct _ _ 12 when _ ADV WRB _ 15 advmod _ _ 13 frightened _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 15 nsubj _ _ 15 flooded _ VERB VBD _ 9 acl:relcl _ _ 16 the _ DET DT _ 18 det _ _ 17 phone _ NOUN NN _ 18 compound _ _ 18 lines _ NOUN NNS _ 15 dobj _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 fled _ VERB VBD _ 15 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 20 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 a _ DET DT _ 25 det _ _ 25 panic _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 firms _ NOUN NNS _ 7 nsubj _ _ 6 were _ VERB VBD _ 7 cop _ _ 7 ready _ ADJ JJ _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 Fidelity _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 example _ NOUN NN _ 6 nmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 prepared _ VERB JJ _ 0 root _ _ 7 ads _ NOUN NNS _ 6 dobj _ _ 8 several _ ADJ JJ _ 9 amod _ _ 9 months _ NOUN NNS _ 10 nmod:npmod _ _ 10 ago _ ADV RB _ 6 advmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 case _ NOUN NN _ 6 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 market _ NOUN NN _ 16 compound _ _ 16 plunge _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 went _ VERB VBD _ 15 advcl _ _ 5 into _ ADP IN _ 8 case _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 free _ ADJ JJ _ 8 amod _ _ 8 fall _ NOUN NN _ 4 nmod _ _ 9 Friday _ PROPN NNP _ 10 compound _ _ 10 afternoon _ NOUN NN _ 4 nmod:tmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 investment _ NOUN NN _ 14 compound _ _ 14 firm _ NOUN NN _ 15 nsubj _ _ 15 ordered _ VERB VBD _ 0 root _ _ 16 full _ ADJ JJ _ 17 amod _ _ 17 pages _ NOUN NNS _ 15 dobj _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Monday _ PROPN NNP _ 21 compound _ _ 21 editions _ NOUN NNS _ 17 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 half _ DET PDT _ 25 advmod _ _ 24 a _ DET DT _ 25 advmod _ _ 25 dozen _ NOUN NN _ 26 nummod _ _ 26 newspapers _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ads _ NOUN NNS _ 3 nsubj _ _ 3 touted _ VERB VBD _ 0 root _ _ 4 Fidelity _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 automated _ VERB VBN _ 7 amod _ _ 7 800-number _ NOUN NN _ 3 dobj _ _ 8 beneath _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 huge _ ADJ JJ _ 11 amod _ _ 11 headline _ NOUN NN _ 3 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 11 punct _ _ 14 Fidelity _ PROPN NNP _ 16 nsubj _ _ 15 Is _ VERB VBZ _ 16 cop _ _ 16 Ready _ ADJ JJ _ 11 dep _ _ 17 For _ ADP IN _ 19 case _ _ 18 Your _ PRON PRP$ _ 19 nmod:poss _ _ 19 Call _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 21 '' _ PUNCT '' _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Fidelity _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 says _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 800-line _ NOUN JJ _ 21 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 11 nsubj _ _ 9 already _ ADV RB _ 11 advmod _ _ 10 was _ AUX VBD _ 11 aux _ _ 11 operating _ VERB VBG _ 6 acl:relcl _ _ 12 but _ CONJ CC _ 11 cc _ _ 13 which _ PRON WDT _ 18 nmod _ _ 14 many _ ADJ JJ _ 15 amod _ _ 15 clients _ NOUN NNS _ 18 nsubj _ _ 16 did _ AUX VBD _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 know _ VERB VB _ 11 conj _ _ 19 about _ ADP RB _ 13 case _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 received _ VERB VBD _ 4 ccomp _ _ 22 about _ ADV IN _ 23 advmod _ _ 23 double _ ADV RB _ 26 nummod _ _ 24 the _ DET DT _ 26 det _ _ 25 usual _ ADJ JJ _ 26 amod _ _ 26 volume _ NOUN NN _ 21 dobj _ _ 27 of _ ADP IN _ 28 case _ _ 28 calls _ NOUN NNS _ 26 nmod _ _ 29 over _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 weekend _ NOUN NN _ 21 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 A _ DET DT _ 3 det _ _ 3 lot _ NOUN NN _ 7 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 investor _ NOUN NN _ 6 compound _ _ 6 confidence _ NOUN NN _ 3 nmod _ _ 7 comes _ VERB VBZ _ 20 ccomp _ _ 8 from _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 fact _ NOUN NN _ 7 nmod _ _ 11 that _ SCONJ IN _ 14 mark _ _ 12 they _ PRON PRP _ 14 nsubj _ _ 13 can _ AUX MD _ 14 aux _ _ 14 speak _ VERB VB _ 10 ccomp _ _ 15 to _ ADP TO _ 16 case _ _ 16 us _ PRON PRP _ 14 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 '' _ PUNCT '' _ 20 punct _ _ 19 he _ PRON PRP _ 20 nsubj _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 To _ PART TO _ 3 mark _ _ 3 maintain _ VERB VB _ 8 csubj _ _ 4 that _ DET IN _ 5 det _ _ 5 dialogue _ NOUN NN _ 3 dobj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 absolutely _ ADV RB _ 8 advmod _ _ 8 crucial _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 would _ AUX MD _ 6 aux _ _ 3 have _ AUX VB _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 too _ ADV RB _ 6 advmod _ _ 6 late _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 think _ VERB VB _ 6 ccomp _ _ 9 about _ ADP RB _ 8 nmod _ _ 10 on _ ADP IN _ 11 case _ _ 11 Friday _ PROPN NNP _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 had _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 think _ VERB VB _ 2 xcomp _ _ 5 about _ ADP IN _ 6 case _ _ 6 it _ PRON PRP _ 4 nmod _ _ 7 ahead _ ADV RB _ 4 advmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 time _ NOUN NN _ 7 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 Today _ NOUN NN _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Fidelity _ PROPN NNP _ 4 compound _ _ 4 ad _ NOUN NN _ 5 nsubj _ _ 5 goes _ VERB VBZ _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 step _ NOUN NN _ 5 dobj _ _ 8 further _ ADV RB _ 7 advmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 encouraging _ VERB JJ _ 5 advcl _ _ 11 investors _ NOUN NNS _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 stay _ VERB VB _ 10 ccomp _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 13 nmod _ _ 17 or _ CONJ CC _ 13 cc _ _ 18 even _ ADV RB _ 20 advmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 plunge _ VERB NN _ 13 conj _ _ 21 in _ ADP IN _ 20 compound:prt _ _ 22 with _ ADP IN _ 23 case _ _ 23 Fidelity _ PROPN NNP _ 20 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Underneath _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 headline _ NOUN NN _ 9 nmod _ _ 4 `` _ PUNCT `` _ 3 punct _ _ 5 Diversification _ NOUN NN _ 3 dep _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 '' _ PUNCT '' _ 9 punct _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 counsels _ VERB VBZ _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 `` _ PUNCT `` _ 9 punct _ _ 12 Based _ VERB VBN _ 15 case _ _ 13 on _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 events _ NOUN NNS _ 23 advcl _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 past _ ADJ JJ _ 19 amod _ _ 19 week _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 23 punct _ _ 21 all _ DET DT _ 22 det _ _ 22 investors _ NOUN NNS _ 23 nsubj _ _ 23 need _ VERB VBP _ 9 ccomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 know _ VERB VB _ 23 xcomp _ _ 26 their _ PRON PRP$ _ 27 nmod:poss _ _ 27 portfolios _ NOUN NNS _ 29 nsubjpass _ _ 28 are _ AUX VBP _ 29 auxpass _ _ 29 balanced _ VERB VBN _ 25 ccomp _ _ 30 to _ PART TO _ 31 mark _ _ 31 help _ VERB VB _ 29 xcomp _ _ 32 protect _ VERB VB _ 31 ccomp _ _ 33 them _ PRON PRP _ 32 dobj _ _ 34 against _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 36 det _ _ 36 market _ NOUN NN _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 volatility _ NOUN NN _ 32 nmod _ _ 39 . _ PUNCT . _ 9 punct _ _ 40 '' _ PUNCT '' _ 9 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 goes _ VERB VBZ _ 0 root _ _ 3 on _ ADV IN _ 2 advmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 plug _ VERB VB _ 2 xcomp _ _ 6 a _ DET DT _ 10 det _ _ 7 few _ ADJ JJ _ 10 amod _ _ 8 diversified _ ADJ JJ _ 10 amod _ _ 9 Fidelity _ PROPN NNP _ 10 compound _ _ 10 funds _ NOUN NNS _ 5 dobj _ _ 11 by _ ADP IN _ 12 case _ _ 12 name _ NOUN NN _ 5 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 PaineWebber _ NOUN NNP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 able _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 gear _ VERB VB _ 4 xcomp _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 quickly _ ADV RB _ 6 advmod _ _ 9 thanks _ NOUN NNS _ 4 nmod:npmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 1987 _ NUM CD _ 13 nummod _ _ 13 crash _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 aftermath _ NOUN NN _ 12 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 debacle _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 11 det _ _ 10 brokerage _ NOUN NN _ 11 compound _ _ 11 firm _ NOUN NN _ 12 nsubj _ _ 12 began _ VERB VBD _ 0 root _ _ 13 taping _ VERB VBG _ 12 xcomp _ _ 14 commercials _ NOUN NNS _ 13 dobj _ _ 15 in-house _ ADJ JJ _ 13 advmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 ultimately _ ADV RB _ 18 advmod _ _ 18 getting _ VERB VBG _ 12 xcomp _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 timing _ NOUN NN _ 18 dobj _ _ 21 down _ ADP RP _ 18 compound:prt _ _ 22 fast _ ADJ RB _ 23 advmod _ _ 23 enough _ ADV RB _ 18 advmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 tape _ VERB VB _ 23 dep _ _ 26 a _ DET DT _ 27 det _ _ 27 commercial _ NOUN JJ _ 25 dobj _ _ 28 after _ SCONJ IN _ 31 mark _ _ 29 the _ DET DT _ 30 det _ _ 30 market _ NOUN NN _ 31 nsubj _ _ 31 closed _ VERB VBD _ 25 advcl _ _ 32 and _ CONJ CC _ 25 cc _ _ 33 rush _ VERB VB _ 25 conj _ _ 34 it _ PRON PRP _ 33 dobj _ _ 35 on _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 air _ NOUN NN _ 33 nmod _ _ 38 that _ DET WDT _ 39 det _ _ 39 night _ NOUN NN _ 33 nmod:tmod _ _ 40 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 negotiated _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 5 det _ _ 5 arrangement _ NOUN NN _ 3 dobj _ _ 6 with _ ADP IN _ 9 case _ _ 7 Cable _ PROPN NNP _ 9 compound _ _ 8 News _ PROPN NNP _ 9 compound _ _ 9 Network _ PROPN NNP _ 5 nmod _ _ 10 under _ ADP IN _ 11 case _ _ 11 which _ PRON WDT _ 14 nmod _ _ 12 CNN _ PROPN NNP _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 agree _ VERB VB _ 5 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 air _ VERB VB _ 14 xcomp _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 last-minute _ ADJ JJ _ 19 amod _ _ 19 creations _ NOUN NNS _ 16 dobj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 PaineWebber _ PROPN NNP _ 4 compound _ _ 4 commercial _ NOUN NN _ 15 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 created _ VERB VBN _ 4 acl _ _ 7 with _ ADP IN _ 10 case _ _ 8 ad _ NOUN NN _ 10 compound _ _ 9 agency _ NOUN NN _ 10 compound _ _ 10 Saatchi _ PROPN NNP _ 6 nmod _ _ 11 & _ CONJ CC _ 10 cc _ _ 12 Saatchi _ PROPN NNP _ 13 compound _ _ 13 Co. _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 features _ VERB VBZ _ 0 root _ _ 16 Mary _ PROPN NNP _ 17 compound _ _ 17 Farrell _ PROPN NNP _ 15 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 one _ NUM CD _ 17 appos _ _ 20 of _ ADP IN _ 27 case _ _ 21 the _ DET DT _ 27 det _ _ 22 firm _ NOUN NN _ 27 nmod:poss _ _ 23 's _ VERB POS _ 22 case _ _ 24 most _ ADV RBS _ 25 advmod _ _ 25 visible _ ADJ JJ _ 27 amod _ _ 26 investment _ NOUN NN _ 27 compound _ _ 27 strategists _ NOUN NNS _ 19 nmod _ _ 28 , _ PUNCT , _ 17 punct _ _ 29 sounding _ VERB VBG _ 17 acl _ _ 30 particularly _ ADV RB _ 31 advmod _ _ 31 bullish _ ADJ JJ _ 29 xcomp _ _ 32 . _ PUNCT . _ 15 punct _ _ 1 Taped _ VERB VBN _ 10 advcl _ _ 2 just _ ADV RB _ 6 advmod _ _ 3 as _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 6 nsubj _ _ 6 closed _ VERB VBD _ 1 advcl _ _ 7 yesterday _ NOUN NN _ 6 nmod:tmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 offers _ VERB VBZ _ 0 root _ _ 11 Ms. _ PROPN NNP _ 12 compound _ _ 12 Farrell _ PROPN NNP _ 10 dobj _ _ 13 advising _ NOUN VBG _ 12 dep _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 `` _ PUNCT `` _ 13 punct _ _ 16 We _ PRON PRP _ 17 nsubj _ _ 17 view _ VERB VBP _ 13 ccomp _ _ 18 the _ DET DT _ 19 det _ _ 19 market _ NOUN NN _ 17 dobj _ _ 20 here _ ADV RB _ 17 advmod _ _ 21 as _ SCONJ IN _ 22 mark _ _ 22 going _ VERB VBG _ 17 advcl _ _ 23 through _ ADP IN _ 27 case _ _ 24 a _ DET DT _ 27 det _ _ 25 relatively _ ADV RB _ 26 advmod _ _ 26 normal _ ADJ JJ _ 27 amod _ _ 27 cycle _ NOUN NN _ 22 nmod _ _ 28 ... _ PUNCT : _ 10 punct _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 continue _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 feel _ VERB VB _ 2 xcomp _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 12 nsubj _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 still _ ADV RB _ 12 advmod _ _ 11 the _ DET DT _ 12 det _ _ 12 place _ NOUN NN _ 4 ccomp _ _ 13 to _ PART TO _ 17 mark _ _ 14 be _ VERB VB _ 17 cop _ _ 15 for _ ADP IN _ 17 case _ _ 16 long-term _ ADJ JJ _ 17 amod _ _ 17 appreciation _ NOUN NN _ 12 acl _ _ 18 . _ PUNCT . _ 2 punct _ _ 19 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spot _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 scheduled _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 appear _ VERB VB _ 4 xcomp _ _ 7 three _ NUM CD _ 8 nummod _ _ 8 times _ NOUN NNS _ 6 nmod:npmod _ _ 9 on _ ADP IN _ 10 case _ _ 10 CNN _ PROPN NNP _ 6 nmod _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 night _ NOUN NN _ 6 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 PaineWebber _ PROPN NNP _ 2 nsubj _ _ 2 considered _ VERB VBD _ 0 root _ _ 3 an _ DET DT _ 6 det _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 harder _ ADJ RBR _ 6 amod _ _ 6 sell _ NOUN VB _ 2 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 recommending _ VERB VBG _ 6 dep _ _ 9 specific _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 Instead _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 settled _ VERB VBD _ 0 root _ _ 5 on _ ADP IN _ 7 dep _ _ 6 just _ ADV RB _ 7 advmod _ _ 7 urging _ VERB VBG _ 4 advcl _ _ 8 the _ DET DT _ 9 det _ _ 9 clients _ NOUN NNS _ 7 dobj _ _ 10 who _ PRON WP _ 13 nsubj _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 lifeline _ NOUN NN _ 9 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 keep _ VERB VB _ 7 xcomp _ _ 16 that _ DET DT _ 17 det _ _ 17 money _ NOUN NN _ 15 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 32 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 saying _ VERB VBG _ 32 ccomp _ _ 5 the _ DET DT _ 7 det _ _ 6 worst _ ADJ JJS _ 7 amod _ _ 7 thing _ NOUN NN _ 12 nsubj _ _ 8 that _ ADP WDT _ 11 dobj _ _ 9 anyone _ NOUN NN _ 11 nsubj _ _ 10 can _ AUX MD _ 11 aux _ _ 11 do _ VERB VB _ 7 acl:relcl _ _ 12 is _ VERB VBZ _ 4 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 see _ VERB VB _ 12 xcomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 go _ VERB VB _ 14 ccomp _ _ 18 down _ ADV RB _ 17 advmod _ _ 19 and _ CONJ CC _ 17 cc _ _ 20 dump _ VERB VB _ 17 conj _ _ 21 everything _ NOUN NN _ 20 dobj _ _ 22 , _ PUNCT , _ 17 punct _ _ 23 which _ PRON WDT _ 25 nsubj _ _ 24 just _ ADV RB _ 25 advmod _ _ 25 drives _ VERB VBZ _ 17 ccomp _ _ 26 the _ DET DT _ 27 det _ _ 27 prices _ NOUN NNS _ 25 dobj _ _ 28 down _ ADP RP _ 25 advmod _ _ 29 further _ ADV RB _ 25 advmod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 '' _ PUNCT '' _ 32 punct _ _ 32 says _ VERB VBZ _ 0 root _ _ 33 John _ PROPN NNP _ 34 compound _ _ 34 Lampe _ PROPN NNP _ 32 nsubj _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 PaineWebber _ PROPN NNP _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 director _ NOUN NN _ 34 appos _ _ 39 of _ ADP IN _ 40 case _ _ 40 advertising _ NOUN NN _ 38 nmod _ _ 41 . _ PUNCT . _ 32 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 owned _ VERB VBD _ 16 advcl _ _ 5 it _ PRON PRP _ 4 dobj _ _ 6 and _ CONJ CC _ 4 cc _ _ 7 liked _ VERB VBD _ 4 conj _ _ 8 it _ PRON PRP _ 7 dobj _ _ 9 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 true _ ADJ JJ _ 13 amod _ _ 13 value _ NOUN NN _ 16 nsubj _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 changed _ VERB VBN _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 18 '' _ PUNCT '' _ 16 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 adds _ VERB VBZ _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 `` _ PUNCT `` _ 2 punct _ _ 5 This _ PRON DT _ 8 nsubj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 n't _ PART RB _ 8 neg _ _ 8 1987 _ NUM CD _ 2 ccomp _ _ 9 revisited _ VERB VBN _ 8 acl _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 With _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 fluctuating _ VERB VBG _ 17 advcl _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 then _ ADV RB _ 7 advmod _ _ 7 closing _ VERB VBG _ 4 conj _ _ 8 up _ ADV RB _ 7 advmod _ _ 9 more _ ADV JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 88 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 8 nmod:npmod _ _ 13 yesterday _ NOUN NN _ 17 nmod:tmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 investment _ NOUN NN _ 16 compound _ _ 16 firms _ NOUN NNS _ 17 nsubj _ _ 17 had _ VERB VBD _ 0 root _ _ 18 to _ PART TO _ 20 mark _ _ 19 constantly _ ADV RB _ 20 advmod _ _ 20 revise _ VERB VB _ 17 xcomp _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 approach _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 17 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Shearson _ PROPN NNP _ 3 compound _ _ 3 Lehman _ PROPN NNP _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 executives _ NOUN NNS _ 6 nsubj _ _ 6 created _ VERB VBD _ 0 root _ _ 7 potential _ ADJ JJ _ 9 amod _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 commercials _ NOUN NNS _ 6 dobj _ _ 10 Friday _ PROPN NNP _ 11 compound _ _ 11 night _ NOUN NN _ 6 nmod:tmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 throughout _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 weekend _ NOUN NN _ 11 conj _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 then _ ADV RB _ 18 advmod _ _ 18 had _ VERB VBD _ 6 dep _ _ 19 to _ PART TO _ 20 mark _ _ 20 regroup _ VERB VB _ 18 xcomp _ _ 21 yesterday _ NOUN NN _ 22 compound _ _ 22 afternoon _ NOUN NN _ 20 nmod:tmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 been _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 make _ VERB VB _ 4 xcomp _ _ 7 one _ NUM CD _ 6 dobj _ _ 8 of _ ADP IN _ 19 case _ _ 9 Shearson _ PROPN NNP _ 19 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 easy-to-film _ ADJ NN _ 19 amod _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 black-and-white _ ADJ JJ _ 19 amod _ _ 14 `` _ PUNCT `` _ 19 punct _ _ 15 Where _ ADV WRB _ 17 advmod _ _ 16 We _ PRON PRP _ 17 nsubj _ _ 17 Stand _ VERB VB _ 19 ccomp _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 commercials _ NOUN NNS _ 7 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 24 nsubj _ _ 22 have _ AUX VBP _ 24 aux _ _ 23 been _ AUX VBN _ 24 aux _ _ 24 running _ VERB VBG _ 19 acl:relcl _ _ 25 occasionally _ ADV RB _ 24 advmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 response _ NOUN NN _ 24 nmod _ _ 28 to _ ADP TO _ 30 case _ _ 29 news _ NOUN NN _ 30 compound _ _ 30 events _ NOUN NNS _ 27 nmod _ _ 31 since _ ADP IN _ 32 case _ _ 32 1985 _ NUM CD _ 24 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ad _ NOUN NN _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 have _ AUX VB _ 5 aux _ _ 5 run _ VERB VBN _ 0 root _ _ 6 during _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 World _ PROPN NNP _ 9 compound _ _ 9 Series _ PROPN NNP _ 5 nmod _ _ 10 tomorrow _ NOUN NN _ 5 nmod:tmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 replacing _ VERB VBG _ 5 advcl _ _ 13 the _ DET DT _ 15 det _ _ 14 debut _ NOUN NN _ 15 compound _ _ 15 commercial _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 21 case _ _ 17 Shearson _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 new _ ADJ JJ _ 21 amod _ _ 20 ad _ NOUN NN _ 21 compound _ _ 21 campaign _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 `` _ PUNCT `` _ 21 punct _ _ 24 Leadership _ NOUN NN _ 21 dep _ _ 25 by _ ADP IN _ 26 case _ _ 26 Example _ NOUN NNP _ 24 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 28 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 meeting _ NOUN NN _ 13 nmod _ _ 5 after _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 closed _ VERB VBD _ 13 advcl _ _ 9 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Shearson _ PROPN NNP _ 12 compound _ _ 12 executives _ NOUN NNS _ 13 nsubj _ _ 13 decided _ VERB VBD _ 0 root _ _ 14 not _ ADV RB _ 16 neg _ _ 15 to _ PART TO _ 16 mark _ _ 16 go _ VERB VB _ 13 xcomp _ _ 17 ahead _ ADV RB _ 16 advmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 stock-market _ NOUN NN _ 21 compound _ _ 21 ad _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 think _ VERB VB _ 0 root _ _ 6 at _ ADP IN _ 8 case _ _ 7 this _ DET DT _ 8 det _ _ 8 point _ NOUN NN _ 5 nmod _ _ 9 anything _ NOUN NN _ 10 nsubj _ _ 10 needs _ VERB VBZ _ 5 ccomp _ _ 11 to _ PART TO _ 13 mark _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 said _ VERB VBN _ 10 xcomp _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 17 ccomp _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ AUX VB _ 6 aux _ _ 6 straightening _ VERB VBG _ 3 xcomp _ _ 7 out _ ADP IN _ 6 compound:prt _ _ 8 ; _ PUNCT : _ 3 punct _ _ 9 we _ PRON PRP _ 11 nsubj _ _ 10 're _ AUX VBP _ 11 aux _ _ 11 taking _ VERB VBG _ 3 parataxis _ _ 12 a _ DET DT _ 14 det _ _ 13 wait-and-see _ ADJ JJ _ 14 amod _ _ 14 attitude _ NOUN NN _ 11 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 Cathleen _ PROPN NNP _ 20 compound _ _ 19 B. _ PROPN NNP _ 20 compound _ _ 20 Stewart _ PROPN NNP _ 17 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 executive _ ADJ JJ _ 24 amod _ _ 23 vice _ NOUN NN _ 24 compound _ _ 24 president _ NOUN NN _ 20 appos _ _ 25 of _ ADP IN _ 26 case _ _ 26 marketing _ NOUN NN _ 24 nmod _ _ 27 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 brokerage _ NOUN NN _ 7 compound _ _ 7 firms _ NOUN NNS _ 10 nsubj _ _ 8 are _ AUX VBP _ 10 aux _ _ 9 clearly _ ADV RB _ 10 advmod _ _ 10 moving _ VERB VBG _ 0 root _ _ 11 faster _ ADV JJR _ 10 advmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 create _ VERB VB _ 10 xcomp _ _ 14 new _ ADJ JJ _ 15 amod _ _ 15 ads _ NOUN NNS _ 13 dobj _ _ 16 than _ SCONJ IN _ 18 mark _ _ 17 they _ PRON PRP _ 18 nsubj _ _ 18 did _ VERB VBD _ 10 advcl _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 fall _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 1987 _ NUM CD _ 21 nmod _ _ 24 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 remains _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 seen _ VERB VBN _ 3 xcomp _ _ 7 whether _ SCONJ IN _ 14 mark _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 ads _ NOUN NNS _ 14 nsubj _ _ 10 will _ AUX MD _ 14 aux _ _ 11 be _ VERB VB _ 14 cop _ _ 12 any _ DET DT _ 13 dep _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 effective _ ADJ JJ _ 3 ccomp _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 despite _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 barrage _ NOUN NN _ 18 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 ads _ NOUN NNS _ 6 nmod _ _ 9 from _ ADP IN _ 10 case _ _ 10 most _ ADJ JJS _ 8 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 investment _ NOUN NN _ 15 compound _ _ 15 firms _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 individuals _ NOUN NNS _ 18 nsubj _ _ 18 ran _ VERB VBD _ 0 root _ _ 19 from _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 18 nmod _ _ 22 en _ X IN _ 23 compound _ _ 23 masse _ X NN _ 18 advmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 Now _ ADV RB _ 5 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 firms _ NOUN NNS _ 5 nsubj _ _ 4 must _ AUX MD _ 5 aux _ _ 5 try _ VERB VB _ 0 root _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 hardest _ ADJ RBS _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 prove _ VERB VB _ 5 advcl _ _ 10 that _ DET IN _ 13 mark _ _ 11 advertising _ NOUN NN _ 13 nsubj _ _ 12 can _ AUX MD _ 13 aux _ _ 13 work _ VERB VB _ 9 ccomp _ _ 14 this _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 13 nmod:tmod _ _ 16 around _ ADP IN _ 15 advmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 Ad _ NOUN NN _ 2 compound _ _ 2 Notes _ NOUN NNS _ 0 root _ _ 3 ... _ PUNCT : _ 2 punct _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 ARNOLD _ PROPN NNP _ 2 compound _ _ 2 ADVERTISING _ PROPN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 Edward _ PROPN NNP _ 2 compound _ _ 2 Eskandarian _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 former _ ADJ JJ _ 5 amod _ _ 5 chairman _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 11 case _ _ 7 Della _ PROPN NNP _ 11 compound _ _ 8 Femina _ PROPN NNP _ 11 compound _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 McNamee _ PROPN NNP _ 11 appos _ _ 11 WCRS/Boston _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 reached _ VERB VBD _ 0 root _ _ 14 an _ DET DT _ 15 det _ _ 15 agreement _ NOUN NN _ 13 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 principle _ NOUN NN _ 15 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 acquire _ VERB VB _ 15 acl _ _ 20 a _ DET DT _ 22 det _ _ 21 majority _ ADJ NN _ 22 amod _ _ 22 stake _ NOUN NN _ 19 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 Arnold _ PROPN NNP _ 25 compound _ _ 25 Advertising _ PROPN NNP _ 22 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 30 det _ _ 28 small _ ADJ JJ _ 30 amod _ _ 29 Boston _ PROPN NNP _ 30 compound _ _ 30 shop _ NOUN NN _ 25 appos _ _ 31 . _ PUNCT . _ 13 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Eskandarian _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 resigned _ VERB VBD _ 2 acl:relcl _ _ 6 his _ PRON PRP$ _ 9 nmod:poss _ _ 7 Della _ PROPN NNP _ 9 compound _ _ 8 Femina _ PROPN NNP _ 9 compound _ _ 9 post _ NOUN NN _ 5 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 becomes _ VERB VBZ _ 0 root _ _ 14 chairman _ NOUN NN _ 13 xcomp _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 chief _ ADJ JJ _ 17 amod _ _ 17 executive _ NOUN NN _ 14 conj _ _ 18 of _ ADP IN _ 19 case _ _ 19 Arnold _ PROPN NNP _ 14 nmod _ _ 20 . _ PUNCT . _ 13 punct _ _ 1 John _ PROPN NNP _ 2 compound _ _ 2 Verret _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 agency _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 president _ NOUN NN _ 2 appos _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 chief _ ADJ JJ _ 10 amod _ _ 10 executive _ NOUN NN _ 7 conj _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 will _ AUX MD _ 13 aux _ _ 13 retain _ VERB VB _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 title _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 president _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Separately _ PROPN RB _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 McDonald _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Corp. _ PROPN NNP _ 12 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Oak _ PROPN NNP _ 8 compound _ _ 8 Brook _ PROPN NNP _ 5 appos _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Ill. _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 named _ VERB VBN _ 0 root _ _ 13 Arnold _ PROPN NNP _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 handle _ VERB VB _ 12 xcomp _ _ 16 its _ PRON PRP$ _ 23 nmod:poss _ _ 17 estimated _ VERB VBN _ 23 amod _ _ 18 $ _ SYM $ _ 23 amod _ _ 19 4 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 cooperative _ ADJ JJ _ 23 amod _ _ 22 ad _ NOUN NN _ 23 compound _ _ 23 account _ NOUN NN _ 15 dobj _ _ 24 for _ ADP IN _ 30 case _ _ 25 the _ DET DT _ 30 det _ _ 26 Hartford _ PROPN NNP _ 30 dep _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Conn. _ PROPN NNP _ 26 dep _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 area _ NOUN NN _ 23 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 account _ NOUN NN _ 5 nsubjpass _ _ 3 had _ AUX VBD _ 5 aux _ _ 4 been _ AUX VBN _ 5 auxpass _ _ 5 handled _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 11 case _ _ 7 Della _ PROPN NNP _ 11 compound _ _ 8 Femina _ PROPN NNP _ 11 compound _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 McNamee _ PROPN NNP _ 11 appos _ _ 11 WCRS _ PROPN NNP _ 5 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 EDUCATION _ NOUN NN _ 2 compound _ _ 2 ADS _ NOUN NNPS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 142-page _ ADJ JJ _ 4 amod _ _ 3 ad _ NOUN NN _ 4 compound _ _ 4 supplement _ NOUN NN _ 15 nsubj _ _ 5 to _ ADP TO _ 14 case _ _ 6 Business _ PROPN NNP _ 7 compound _ _ 7 Week _ PROPN NNP _ 14 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 special _ ADJ JJ _ 14 amod _ _ 10 `` _ PUNCT `` _ 14 punct _ _ 11 Corporate _ PROPN JJ _ 14 compound _ _ 12 Elite _ PROPN NN _ 14 compound _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 issue _ NOUN NN _ 4 nmod _ _ 15 calls _ VERB VBZ _ 0 root _ _ 16 on _ ADP IN _ 18 case _ _ 17 business _ NOUN NN _ 18 compound _ _ 18 leaders _ NOUN NNS _ 15 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 use _ VERB VB _ 15 xcomp _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 clout _ NOUN NN _ 20 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 help _ VERB VB _ 20 advcl _ _ 25 solve _ VERB VB _ 24 ccomp _ _ 26 the _ DET DT _ 27 det _ _ 27 nation _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 education _ NOUN NN _ 30 compound _ _ 30 crisis _ NOUN NN _ 25 dobj _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 supplement _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 largest _ ADJ JJS _ 2 appos _ _ 6 ever _ ADV RB _ 5 advmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 magazine _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 includes _ VERB VBZ _ 0 root _ _ 12 ads _ NOUN NNS _ 11 dobj _ _ 13 from _ ADP IN _ 16 case _ _ 14 52 _ NUM CD _ 16 nummod _ _ 15 corporate _ ADJ JJ _ 16 amod _ _ 16 advertisers _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 kicks _ NOUN VBZ _ 11 conj _ _ 19 off _ ADP RP _ 18 compound:prt _ _ 20 a _ DET DT _ 24 det _ _ 21 two-year _ ADJ JJ _ 24 amod _ _ 22 Business _ PROPN NN _ 24 compound _ _ 23 Week _ PROPN NN _ 24 compound _ _ 24 initiative _ NOUN NN _ 18 dobj _ _ 25 on _ ADP IN _ 26 case _ _ 26 education _ NOUN NN _ 24 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 magazine _ NOUN NN _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 distribute _ VERB VB _ 0 root _ _ 5 10 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 gross _ ADJ JJ _ 10 amod _ _ 10 revenues _ NOUN NNS _ 6 nmod _ _ 11 from _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 supplement _ NOUN NN _ 10 nmod _ _ 14 as _ ADP IN _ 15 case _ _ 15 grants _ NOUN NNS _ 4 nmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 innovative _ ADJ JJ _ 18 amod _ _ 18 teachers _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 You _ PRON PRP _ 2 nsubj _ _ 2 know _ VERB VBP _ 0 root _ _ 3 what _ PRON WP _ 8 dobj _ _ 4 the _ DET DT _ 5 det _ _ 5 law _ NOUN NN _ 8 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 averages _ NOUN NNS _ 5 nmod _ _ 8 is _ VERB VBZ _ 2 ccomp _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 do _ VERB VBP _ 2 parataxis _ _ 11 n't _ PART RB _ 10 neg _ _ 12 you _ PRON PRP _ 10 nsubj _ _ 13 ? _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 what _ PRON WP _ 6 dep _ _ 4 1 _ X LS _ 6 dep _ _ 5 -RRB- _ PUNCT -RRB- _ 4 punct _ _ 6 explains _ VERB VBZ _ 2 dep _ _ 7 why _ ADV WRB _ 14 advmod _ _ 8 we _ PRON PRP _ 14 nsubj _ _ 9 are _ VERB VBP _ 14 cop _ _ 10 like _ ADJ IN _ 14 case _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 well _ ADV RB _ 14 discourse _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 ourselves _ PRON PRP _ 6 advcl _ _ 15 rather _ ADV RB _ 14 cc _ _ 16 than _ ADP IN _ 15 mwe _ _ 17 Bo _ PROPN NNP _ 18 compound _ _ 18 Jackson _ PROPN NNP _ 14 conj _ _ 19 ; _ PUNCT : _ 6 punct _ _ 20 2 _ X LS _ 22 dep _ _ 21 -RRB- _ PUNCT -RRB- _ 20 punct _ _ 22 cautions _ VERB VBZ _ 6 conj _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 it _ PRON PRP _ 26 nsubj _ _ 25 's _ VERB VBZ _ 26 cop _ _ 26 possible _ ADJ JJ _ 22 ccomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 drown _ VERB VB _ 26 xcomp _ _ 29 in _ ADP IN _ 31 case _ _ 30 a _ DET DT _ 31 det _ _ 31 lake _ NOUN NN _ 28 nmod _ _ 32 that _ PRON IN _ 33 nsubj _ _ 33 averages _ VERB NNS _ 31 acl:relcl _ _ 34 two _ NUM CD _ 35 nummod _ _ 35 feet _ NOUN NNS _ 33 dobj _ _ 36 deep _ ADV RB _ 35 amod _ _ 37 ; _ PUNCT : _ 6 punct _ _ 38 and _ CONJ CC _ 6 cc _ _ 39 3 _ X LS _ 41 dep _ _ 40 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 41 predicts _ VERB VBZ _ 6 conj _ _ 42 that _ SCONJ IN _ 50 mark _ _ 43 10,000 _ NUM CD _ 44 nummod _ _ 44 monkeys _ NOUN NNS _ 50 nsubj _ _ 45 placed _ VERB VBN _ 44 acl _ _ 46 before _ ADP IN _ 48 case _ _ 47 10,000 _ NUM CD _ 48 nummod _ _ 48 pianos _ NOUN NNS _ 45 nmod _ _ 49 would _ AUX MD _ 50 aux _ _ 50 produce _ VERB VB _ 41 ccomp _ _ 51 1,118 _ NUM CD _ 53 nummod _ _ 52 publishable _ ADJ JJ _ 53 amod _ _ 53 rock _ NOUN NN _ 50 dobj _ _ 54 'n' _ CONJ CC _ 53 cc _ _ 55 roll _ NOUN NN _ 56 compound _ _ 56 tunes _ NOUN NNS _ 53 conj _ _ 57 . _ PUNCT . _ 2 punct _ _ 1 Baseball _ NOUN NN _ 13 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 that _ DET WDT _ 4 det _ _ 4 game _ NOUN NN _ 1 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 long _ ADJ JJ _ 8 amod _ _ 8 haul _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 quintessential _ ADJ JJ _ 13 amod _ _ 13 sport _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 mean _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 the _ DET DT _ 22 det _ _ 20 mean _ ADJ NN _ 22 amod _ _ 21 ol' _ ADJ JJ _ 22 amod _ _ 22 law _ NOUN NN _ 23 nsubj _ _ 23 caught _ VERB VBD _ 13 conj _ _ 24 up _ ADP RP _ 23 compound:prt _ _ 25 with _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 San _ PROPN NNP _ 29 compound _ _ 28 Francisco _ PROPN NNP _ 29 compound _ _ 29 Giants _ PROPN NNPS _ 23 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 World _ PROPN NNP _ 33 compound _ _ 33 Series _ PROPN NNP _ 23 nmod _ _ 34 last _ ADJ JJ _ 35 amod _ _ 35 weekend _ NOUN NN _ 23 nmod:tmod _ _ 36 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 team _ NOUN NN _ 19 nsubjpass _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 dumped _ VERB VBD _ 2 acl:relcl _ _ 5 runs _ NOUN NNS _ 4 dobj _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 bushel _ NOUN NN _ 4 nmod _ _ 9 on _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Chicago _ PROPN NNP _ 12 compound _ _ 12 Cubs _ PROPN NNP _ 4 nmod _ _ 13 in _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 National _ PROPN NNP _ 17 compound _ _ 16 League _ PROPN NNP _ 17 compound _ _ 17 playoffs _ NOUN NNS _ 4 nmod _ _ 18 was _ AUX VBD _ 19 auxpass _ _ 19 held _ VERB VBN _ 0 root _ _ 20 to _ ADP TO _ 22 case _ _ 21 just _ ADV RB _ 22 advmod _ _ 22 one _ NUM CD _ 19 nmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 games _ NOUN NNS _ 19 nmod _ _ 26 by _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 31 det _ _ 28 home-team _ ADJ JJ _ 31 amod _ _ 29 Oakland _ PROPN NNP _ 31 compound _ _ 30 A _ PROPN NNP _ 31 compound _ _ 31 's _ PROPN POS _ 19 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 the _ DET DT _ 34 det _ _ 34 gang _ NOUN NN _ 31 appos _ _ 35 that _ PRON WDT _ 38 nsubjpass _ _ 36 had _ AUX VBD _ 38 aux _ _ 37 been _ AUX VBN _ 38 auxpass _ _ 38 done _ VERB VBN _ 34 acl:relcl _ _ 39 unto _ ADP JJ _ 38 advcl _ _ 40 similarly _ ADV RB _ 38 advmod _ _ 41 by _ ADP IN _ 45 case _ _ 42 the _ DET DT _ 45 det _ _ 43 Los _ PROPN NNP _ 45 compound _ _ 44 Angeles _ PROPN NNP _ 45 compound _ _ 45 Dodgers _ PROPN NNPS _ 38 nmod _ _ 46 and _ CONJ CC _ 45 cc _ _ 47 Orel _ PROPN NNP _ 48 compound _ _ 48 Hershiser _ PROPN NNP _ 45 conj _ _ 49 in _ ADP IN _ 53 case _ _ 50 last _ ADJ JJ _ 51 amod _ _ 51 year _ NOUN NN _ 53 nmod:poss _ _ 52 's _ PART POS _ 51 case _ _ 53 tournament _ NOUN NN _ 38 nmod _ _ 54 . _ PUNCT . _ 19 punct _ _ 1 Morever _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 much _ ADJ RB _ 8 nsubjpass _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 damage _ NOUN NN _ 3 nmod _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 accomplished _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 11 case _ _ 10 A _ PROPN DT _ 11 compound _ _ 11 's _ PROPN POS _ 8 nmod _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 had _ VERB VBD _ 11 acl:relcl _ _ 14 some _ DET DT _ 13 dobj _ _ 15 catching _ VERB VBG _ 14 amod _ _ 16 up _ ADP RP _ 14 dep _ _ 17 to _ PART TO _ 18 mark _ _ 18 do _ VERB VB _ 14 acl _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 game _ NOUN NN _ 24 nmod _ _ 3 two _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 24 punct _ _ 5 on _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 cool _ ADJ JJ _ 9 amod _ _ 8 Sunday _ PROPN NNP _ 9 compound _ _ 9 evening _ NOUN NN _ 24 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 land _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 perpetual _ ADJ JJ _ 15 amod _ _ 15 autumn _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 24 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 lot _ NOUN NN _ 24 nsubjpass _ _ 19 of _ ADP IN _ 20 case _ _ 20 the _ DET DT _ 18 nmod _ _ 21 catching _ VERB VBG _ 20 amod _ _ 22 up _ ADP RP _ 20 dep _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 done _ VERB VBN _ 0 root _ _ 25 by _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 A _ PROPN NN _ 29 compound _ _ 28 's _ PROPN POS _ 29 compound _ _ 29 catcher _ NOUN NN _ 24 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 Terry _ PROPN NNP _ 32 compound _ _ 32 Steinbach _ PROPN NNP _ 29 appos _ _ 33 . _ PUNCT . _ 24 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 hit _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 2-0 _ NUM JJ _ 5 nummod _ _ 5 pitch _ NOUN NN _ 2 dobj _ _ 6 from _ ADP IN _ 8 case _ _ 7 Rick _ PROPN NNP _ 8 compound _ _ 8 Reuschel _ PROPN NNP _ 5 nmod _ _ 9 into _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 left-field _ ADJ JJ _ 12 amod _ _ 12 stands _ NOUN NNS _ 2 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 inning _ NOUN NN _ 2 nmod _ _ 15 four _ NUM CD _ 14 nummod _ _ 16 to _ PART TO _ 17 mark _ _ 17 stretch _ VERB VB _ 2 advcl _ _ 18 his _ PRON PRP$ _ 19 nmod:poss _ _ 19 team _ NOUN NN _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 lead _ NOUN NN _ 17 dobj _ _ 22 from _ ADP IN _ 23 case _ _ 23 2-1 _ NUM CD _ 17 nmod _ _ 24 to _ ADP TO _ 27 case _ _ 25 a _ DET DT _ 27 det _ _ 26 decisive _ ADJ JJ _ 27 amod _ _ 27 5-1 _ NUM CD _ 17 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 where _ ADV WRB _ 31 advmod _ _ 30 it _ PRON PRP _ 31 nsubj _ _ 31 stayed _ VERB VBD _ 27 acl:relcl _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 So _ ADV RB _ 0 root _ _ 2 what _ PRON WP _ 1 dep _ _ 3 if _ SCONJ IN _ 6 mark _ _ 4 Steinbach _ PROPN NNP _ 6 nsubj _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 struck _ VERB VBN _ 1 dep _ _ 7 just _ ADV RB _ 10 advmod _ _ 8 seven _ NUM CD _ 10 nummod _ _ 9 home _ NOUN NN _ 10 compound _ _ 10 runs _ NOUN NNS _ 6 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 130 _ NUM CD _ 14 nummod _ _ 13 regular-season _ ADJ JJ _ 14 amod _ _ 14 games _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 batted _ VERB VBN _ 6 conj _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 seventh _ ADJ JJ _ 21 amod _ _ 21 position _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 A _ PROPN NN _ 26 compound _ _ 25 's _ PROPN POS _ 26 compound _ _ 26 lineup _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 1 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 get _ VERB VB _ 16 advcl _ _ 5 your _ PRON PRP$ _ 6 nmod:poss _ _ 6 pitch _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 take _ VERB VB _ 4 conj _ _ 10 a _ DET DT _ 12 det _ _ 11 good _ ADJ JJ _ 12 amod _ _ 12 swing _ NOUN NN _ 9 dobj _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 anything _ NOUN NN _ 16 nsubj _ _ 15 can _ AUX MD _ 16 aux _ _ 16 happen _ VERB VB _ 21 ccomp _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 '' _ PUNCT '' _ 21 punct _ _ 19 he _ PRON PRP _ 21 nsubj _ _ 20 later _ ADV RB _ 21 advmod _ _ 21 remarked _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Saturday _ PROPN NNP _ 3 compound _ _ 3 night _ NOUN NN _ 15 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 quite _ ADV RB _ 7 advmod _ _ 6 a _ DET DT _ 7 det _ _ 7 few _ ADJ JJ _ 15 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 boys _ NOUN NNS _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 green _ NOUN JJ _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 gold _ NOUN JJ _ 12 conj _ _ 15 salted _ VERB VBN _ 0 root _ _ 16 away _ ADP RB _ 15 compound:prt _ _ 17 successes _ NOUN NNS _ 15 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 salve _ VERB VB _ 15 advcl _ _ 20 the _ DET DT _ 21 det _ _ 21 pain _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 30 case _ _ 23 past _ ADJ JJ _ 29 dep _ _ 24 and _ CONJ CC _ 29 cc _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 no _ DET DT _ 27 neg _ _ 27 doubt _ NOUN NN _ 29 dep _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 future _ ADJ JJ _ 30 amod _ _ 30 droughts _ NOUN NNS _ 21 nmod _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 Mark _ PROPN NNP _ 2 compound _ _ 2 McGwire _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 10 det _ _ 5 big _ ADJ JJ _ 10 amod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 red-haired _ ADJ JJ _ 10 amod _ _ 8 Oakland _ PROPN NNP _ 10 compound _ _ 9 first _ ADJ RB _ 10 amod _ _ 10 baseman _ NOUN NN _ 2 appos _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 had _ VERB VBD _ 0 root _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 hits _ NOUN NNS _ 12 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 four _ NUM CD _ 18 nummod _ _ 17 at _ NOUN IN _ 18 compound _ _ 18 bats _ NOUN NNS _ 12 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 more _ ADJ JJR _ 12 dobj _ _ 22 than _ SCONJ IN _ 25 mark _ _ 23 he _ PRON PRP _ 25 nsubj _ _ 24 'd _ AUX MD _ 25 aux _ _ 25 had _ VERB VBD _ 21 advcl _ _ 26 in _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 five-game _ ADJ JJ _ 30 amod _ _ 29 Dodger _ PROPN NNP _ 30 compound _ _ 30 series _ NOUN NN _ 25 nmod _ _ 31 in _ ADP IN _ 32 case _ _ 32 which _ PRON WDT _ 35 nmod _ _ 33 he _ PRON PRP _ 35 nsubj _ _ 34 'd _ AUX MD _ 35 aux _ _ 35 gone _ VERB VBN _ 30 acl:relcl _ _ 36 1-for-17 _ NOUN JJ _ 35 advmod _ _ 37 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 A-men _ NOUN JJ _ 18 nsubj _ _ 3 batting _ VERB NN _ 2 acl _ _ 4 Nos. _ NOUN NNP _ 3 dobj _ _ 5 6 _ NUM CD _ 4 nummod _ _ 6 through _ ADP IN _ 4 amod _ _ 7 9 _ NUM CD _ 4 nummod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 a.k.a. _ ADJ IN _ 12 dep _ _ 10 the _ DET DT _ 12 det _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 bottom _ NOUN NN _ 4 dep _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 order _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 '' _ PUNCT '' _ 12 punct _ _ 18 got _ VERB VBD _ 0 root _ _ 19 seven _ NUM CD _ 18 dobj _ _ 20 of _ ADP IN _ 25 case _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 team _ NOUN NN _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 11 _ NUM CD _ 25 nummod _ _ 25 hits _ NOUN NNS _ 19 nmod _ _ 26 and _ CONJ CC _ 18 cc _ _ 27 scored _ VERB VBD _ 18 conj _ _ 28 four _ NUM CD _ 27 dobj _ _ 29 of _ ADP IN _ 31 case _ _ 30 its _ PRON PRP$ _ 31 nmod:poss _ _ 31 runs _ NOUN NNS _ 28 nmod _ _ 32 in _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 5-0 _ NUM CD _ 35 nummod _ _ 35 decision _ NOUN NN _ 27 nmod _ _ 36 . _ PUNCT . _ 18 punct _ _ 1 Right-hander _ ADJ NN _ 3 amod _ _ 2 Dave _ PROPN NNP _ 3 compound _ _ 3 Stewart _ PROPN NNP _ 4 nsubj _ _ 4 held _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 Giants _ PROPN NNPS _ 4 dobj _ _ 7 to _ ADP TO _ 9 case _ _ 8 five _ NUM CD _ 9 nummod _ _ 9 hits _ NOUN NNS _ 4 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 account _ VERB VB _ 4 advcl _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 zero _ NOUN CD _ 11 nmod _ _ 15 on _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 side _ NOUN NN _ 14 nmod _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 Saturday _ PROPN NNP _ 22 compound _ _ 22 ledger _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 That _ SCONJ IN _ 8 mark _ _ 2 he _ PRON PRP _ 8 nsubj _ _ 3 was _ VERB VBD _ 8 cop _ _ 4 the _ DET DT _ 8 det _ _ 5 A _ PROPN NN _ 8 compound _ _ 6 's _ PROPN POS _ 8 compound _ _ 7 winningest _ ADJ JJ _ 8 amod _ _ 8 pitcher _ NOUN NN _ 28 csubj _ _ 9 during _ ADP IN _ 13 case _ _ 10 its _ PRON PRP$ _ 13 nmod:poss _ _ 11 American _ PROPN NNP _ 13 compound _ _ 12 League _ PROPN NNP _ 13 compound _ _ 13 campaign _ NOUN NN _ 8 nmod _ _ 14 with _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 21-9 _ NUM CD _ 17 nummod _ _ 17 mark _ NOUN NN _ 8 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 plus _ ADP CC _ 17 amod _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 wins _ NOUN NNS _ 17 dep _ _ 22 over _ ADP IN _ 23 case _ _ 23 Toronto _ PROPN NNP _ 21 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 playoffs _ NOUN NNS _ 21 nmod _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 indicates _ VERB VBZ _ 0 root _ _ 29 he _ PRON PRP _ 31 nsubj _ _ 30 may _ AUX MD _ 31 aux _ _ 31 have _ VERB VB _ 28 ccomp _ _ 32 some _ DET DT _ 33 det _ _ 33 evening _ NOUN NN _ 31 dobj _ _ 34 up _ ADP RP _ 33 dep _ _ 35 coming _ VERB VBG _ 33 acl _ _ 36 , _ PUNCT , _ 28 punct _ _ 37 but _ CONJ CC _ 28 cc _ _ 38 with _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 way _ NOUN NN _ 50 nmod _ _ 41 his _ PRON PRP$ _ 43 nmod:poss _ _ 42 split-fingered _ ADJ JJ _ 43 amod _ _ 43 fastball _ NOUN NN _ 45 nsubj _ _ 44 is _ AUX VBZ _ 45 aux _ _ 45 behaving _ VERB VBG _ 40 acl:relcl _ _ 46 , _ PUNCT , _ 50 punct _ _ 47 that _ ADP WDT _ 50 nsubj _ _ 48 might _ AUX MD _ 50 aux _ _ 49 not _ PART RB _ 50 neg _ _ 50 be _ VERB VB _ 28 conj _ _ 51 this _ DET DT _ 52 det _ _ 52 week _ NOUN NN _ 50 nmod:tmod _ _ 53 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 same _ ADJ JJ _ 3 nsubj _ _ 3 goes _ VERB VBZ _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 Mike _ PROPN NNP _ 6 compound _ _ 6 Moore _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 another _ DET DT _ 9 det _ _ 9 veteran _ NOUN NN _ 6 appos _ _ 10 who _ PRON WP _ 11 nsubj _ _ 11 overcame _ VERB VBD _ 9 acl:relcl _ _ 12 early _ ADJ JJ _ 13 amod _ _ 13 struggles _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 permit _ VERB VB _ 11 advcl _ _ 16 the _ DET DT _ 17 det _ _ 17 Giants _ PROPN NNPS _ 15 iobj _ _ 18 but _ ADV CC _ 20 advmod _ _ 19 a _ DET DT _ 20 det _ _ 20 run _ NOUN NN _ 15 dobj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 four _ NUM CD _ 23 nummod _ _ 23 hits _ NOUN NNS _ 20 conj _ _ 24 in _ ADP IN _ 26 case _ _ 25 seven _ NUM CD _ 26 nummod _ _ 26 innings _ NOUN NNS _ 15 nmod _ _ 27 in _ ADP IN _ 30 case _ _ 28 Sunday _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 contest _ NOUN NN _ 15 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 Every _ DET DT _ 3 det _ _ 3 guy _ NOUN NN _ 8 nsubj _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 put _ VERB VBD _ 3 acl:relcl _ _ 6 out _ ADV RP _ 7 advmod _ _ 7 there _ ADV EX _ 5 advmod _ _ 8 had _ VERB VBD _ 18 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 better _ ADJ JJR _ 11 amod _ _ 11 split-finger _ NOUN NN _ 8 dobj _ _ 12 than _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 guy _ NOUN NN _ 11 nmod _ _ 15 before _ ADV RB _ 14 advmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 marveled _ VERB VBD _ 0 root _ _ 19 Giant _ ADJ NNP _ 22 amod _ _ 20 manager _ NOUN NN _ 22 compound _ _ 21 Roger _ PROPN NNP _ 22 compound _ _ 22 Craig _ PROPN NNP _ 18 nsubj _ _ 23 . _ PUNCT . _ 18 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 's _ VERB VBZ _ 4 cop _ _ 3 an _ DET DT _ 4 det _ _ 4 ex-hurler _ NOUN NN _ 0 root _ _ 5 who _ PRON WP _ 7 nsubj _ _ 6 's _ VERB VBZ _ 7 cop _ _ 7 one _ NUM CD _ 4 acl:relcl _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 leading _ VERB VBG _ 11 amod _ _ 11 gurus _ NOUN NNS _ 7 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 fashionable _ ADJ JJ _ 15 amod _ _ 15 delivery _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 18 nsubj _ _ 18 looks _ VERB VBZ _ 15 acl:relcl _ _ 19 like _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 fastball _ NOUN NN _ 18 nmod _ _ 22 until _ SCONJ IN _ 24 mark _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 dives _ VERB VBZ _ 18 advcl _ _ 25 beneath _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 lunging _ VERB VBG _ 28 amod _ _ 28 bat _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 upshot _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 downshoot _ NOUN NN _ 2 nmod _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 that _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 A _ PROPN NN _ 10 compound _ _ 10 's _ PROPN POS _ 11 nsubj _ _ 11 go _ VERB VB _ 6 ccomp _ _ 12 into _ ADP IN _ 17 case _ _ 13 San _ PROPN NNP _ 14 compound _ _ 14 Francisco _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Candlestick _ PROPN NNP _ 17 compound _ _ 17 Park _ PROPN NNP _ 11 nmod _ _ 18 tonight _ ADV NN _ 11 nmod:tmod _ _ 19 up _ ADP IN _ 21 case _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 games _ NOUN NNS _ 11 advmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 none _ NOUN NN _ 21 nmod _ _ 24 in _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 best-of-seven _ ADJ JJ _ 27 amod _ _ 27 fest _ NOUN JJS _ 21 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stat _ NOUN NN _ 7 nsubj _ _ 3 to _ PART TO _ 4 mark _ _ 4 reckon _ VERB VB _ 2 acl _ _ 5 with _ ADP IN _ 4 advcl _ _ 6 here _ ADV RB _ 4 advmod _ _ 7 says _ VERB VBZ _ 0 root _ _ 8 that _ SCONJ IN _ 24 mark _ _ 9 about _ ADV IN _ 12 advmod _ _ 10 three _ NUM CD _ 12 compound _ _ 11 of _ ADP IN _ 12 advmod _ _ 12 four _ NUM CD _ 13 nummod _ _ 13 clubs _ NOUN NNS _ 24 nsubj _ _ 14 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 15 29 _ NUM CD _ 17 compound _ _ 16 of _ ADP IN _ 17 advmod _ _ 17 39 _ NUM CD _ 13 dep _ _ 18 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 19 that _ PRON WDT _ 20 nsubj _ _ 20 took _ VERB VBD _ 13 acl:relcl _ _ 21 2-0 _ NUM CD _ 23 nummod _ _ 22 Series _ PROPN NN _ 23 compound _ _ 23 leads _ NOUN VBZ _ 20 dobj _ _ 24 went _ VERB VBD _ 7 ccomp _ _ 25 on _ ADP IN _ 24 compound:prt _ _ 26 to _ PART TO _ 27 mark _ _ 27 win _ VERB VB _ 24 xcomp _ _ 28 it _ PRON PRP _ 27 dobj _ _ 29 all _ DET DT _ 28 det _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 not _ PART RB _ 5 neg _ _ 4 an _ DET DT _ 5 det _ _ 5 average _ NOUN JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 soothe _ VERB VB _ 5 acl _ _ 8 Giant _ PROPN JJ _ 9 compound _ _ 9 rooters _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 One _ NOUN NN _ 3 nsubj _ _ 2 might _ AUX MD _ 3 aux _ _ 3 think _ VERB VB _ 0 root _ _ 4 that _ SCONJ IN _ 40 mark _ _ 5 the _ DET DT _ 7 det _ _ 6 home _ NOUN NN _ 7 compound _ _ 7 fans _ NOUN NNS _ 40 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 this _ DET DT _ 10 det _ _ 10 Series _ PROPN NN _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 Subway _ PROPN NNP _ 10 nmod _ _ 14 Called _ VERB VBN _ 13 acl _ _ 15 BART _ PROPN NNP _ 14 xcomp _ _ 16 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 17 that _ PRON DT _ 21 nsubj _ _ 18 's _ VERB VBZ _ 21 cop _ _ 19 a _ DET DT _ 21 det _ _ 20 better _ ADJ JJR _ 21 amod _ _ 21 name _ NOUN NN _ 15 dep _ _ 22 for _ ADP IN _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 public _ ADJ JJ _ 25 amod _ _ 25 conveyance _ NOUN NN _ 21 nmod _ _ 26 than _ ADP IN _ 28 case _ _ 27 `` _ PUNCT `` _ 28 punct _ _ 28 Desire _ NOUN NN _ 21 nmod _ _ 29 , _ PUNCT , _ 21 punct _ _ 30 '' _ PUNCT '' _ 21 punct _ _ 31 do _ AUX VBP _ 34 aux _ _ 32 n't _ PART RB _ 34 neg _ _ 33 you _ PRON PRP _ 34 nsubj _ _ 34 think _ VERB VB _ 21 parataxis _ _ 35 ? _ PUNCT . _ 34 punct _ _ 36 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 37 would _ AUX MD _ 40 aux _ _ 38 have _ AUX VB _ 40 aux _ _ 39 been _ VERB VBN _ 40 cop _ _ 40 ecstatic _ ADJ JJ _ 3 ccomp _ _ 41 over _ ADP IN _ 43 case _ _ 42 the _ DET DT _ 43 det _ _ 43 proceedings _ NOUN NNS _ 40 nmod _ _ 44 , _ PUNCT , _ 3 punct _ _ 45 but _ CONJ CC _ 3 cc _ _ 46 they _ PRON PRP _ 47 nsubj _ _ 47 observe _ VERB VBP _ 3 conj _ _ 48 them _ PRON PRP _ 47 dobj _ _ 49 in _ ADP IN _ 51 case _ _ 50 relative _ ADJ JJ _ 51 amod _ _ 51 calm _ NOUN NN _ 47 nmod _ _ 52 . _ PUNCT . _ 3 punct _ _ 1 Partisans _ NOUN NNS _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 two _ NUM CD _ 5 nummod _ _ 5 combatants _ NOUN NNS _ 1 nmod _ _ 6 sat _ VERB VBD _ 0 root _ _ 7 side _ NOUN NN _ 9 dep _ _ 8 by _ ADP IN _ 9 case _ _ 9 side _ NOUN NN _ 6 advmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 49,000-plus _ ADJ JJ _ 13 amod _ _ 13 seats _ NOUN NNS _ 6 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 Oakland _ PROPN NNP _ 16 compound _ _ 16 Coliseum _ PROPN NNP _ 13 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 and _ CONJ CC _ 6 cc _ _ 19 while _ SCONJ IN _ 21 mark _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 cheered _ VERB VBD _ 30 advcl _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 favorites _ NOUN NNS _ 21 dobj _ _ 24 and _ CONJ CC _ 21 cc _ _ 25 booed _ VERB VBD _ 21 conj _ _ 26 the _ DET DT _ 27 det _ _ 27 opposition _ NOUN NN _ 25 dobj _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 hostilities _ NOUN NNS _ 30 nsubj _ _ 30 advanced _ VERB VBD _ 6 conj _ _ 31 no _ DET DT _ 32 neg _ _ 32 further _ ADV RB _ 30 advmod _ _ 33 , _ PUNCT , _ 30 punct _ _ 34 at _ ADP IN _ 30 advmod _ _ 35 least _ ADJ JJS _ 34 mwe _ _ 36 as _ ADV RB _ 37 advmod _ _ 37 far _ ADV RB _ 34 advmod _ _ 38 as _ SCONJ IN _ 41 mark _ _ 39 I _ PRON PRP _ 41 nsubj _ _ 40 could _ AUX MD _ 41 aux _ _ 41 see _ VERB VB _ 34 advcl _ _ 42 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 few _ ADJ JJ _ 3 amod _ _ 3 folks _ NOUN NNS _ 5 nsubj _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 showed _ VERB VBD _ 0 root _ _ 6 up _ ADP IN _ 5 compound:prt _ _ 7 wearing _ VERB VBG _ 5 xcomp _ _ 8 caps _ NOUN NNS _ 7 dobj _ _ 9 bearing _ VERB VBG _ 8 acl _ _ 10 the _ DET DT _ 11 det _ _ 11 colors _ NOUN NNS _ 9 dobj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 emblems _ NOUN NNS _ 11 conj _ _ 14 of _ ADP IN _ 16 case _ _ 15 both _ DET DT _ 16 det _ _ 16 teams _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 I _ PRON PRP _ 6 nsubj _ _ 3 'm _ VERB VBP _ 6 cop _ _ 4 for _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 Giants _ PROPN NNPS _ 0 root _ _ 7 today _ NOUN NN _ 6 nmod:tmod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 but _ CONJ CC _ 6 cc _ _ 10 only _ ADV RB _ 13 advmod _ _ 11 because _ SCONJ IN _ 13 mark _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 lost _ VERB VBD _ 6 advcl _ _ 14 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 love _ VERB VBP _ 0 root _ _ 3 'em _ PRON PRP _ 2 dobj _ _ 4 both _ DET DT _ 3 det _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 only _ ADJ JJ _ 3 amod _ _ 3 thing _ NOUN NN _ 8 nsubj _ _ 4 I _ PRON PRP _ 6 nsubj _ _ 5 'm _ AUX VBP _ 6 aux _ _ 6 rooting _ VERB VBG _ 3 acl:relcl _ _ 7 for _ ADP IN _ 6 nmod _ _ 8 is _ VERB VBZ _ 18 ccomp _ _ 9 for _ SCONJ IN _ 13 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 Series _ PROPN NNP _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 go _ VERB VB _ 8 advcl _ _ 14 seven _ NUM CD _ 15 nummod _ _ 15 games _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 David _ PROPN NNP _ 20 compound _ _ 20 Williams _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 24 det _ _ 23 Sacramento _ PROPN NNP _ 24 compound _ _ 24 septuagenarian _ NOUN NN _ 20 appos _ _ 25 , _ PUNCT , _ 20 punct _ _ 26 at _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 Coliseum _ NOUN NNP _ 18 nmod _ _ 29 before _ ADP IN _ 32 case _ _ 30 Sunday _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 go _ NOUN NN _ 18 nmod _ _ 33 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 above _ ADJ JJ _ 3 nsubj _ _ 3 represents _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 triumph _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 either _ DET CC _ 8 cc:preconj _ _ 8 apathy _ NOUN NN _ 5 nmod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 civility _ NOUN NN _ 8 conj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 choose _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 believe _ VERB VB _ 2 xcomp _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 's _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 latter _ ADJ JJ _ 4 ccomp _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 although _ SCONJ IN _ 13 mark _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 probably _ ADV RB _ 13 advmod _ _ 13 springs _ VERB VBZ _ 2 advcl _ _ 14 from _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 fact _ NOUN NN _ 13 nmod _ _ 17 that _ SCONJ IN _ 35 mark _ _ 18 just _ ADV RB _ 20 advmod _ _ 19 about _ ADV IN _ 20 advmod _ _ 20 everyone _ NOUN NN _ 35 nsubj _ _ 21 out _ ADP IN _ 22 case _ _ 22 here _ ADV RB _ 20 nmod _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 including _ VERB VBG _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 A _ PROPN NN _ 27 compound _ _ 27 's _ PROPN POS _ 20 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 Giants _ PROPN NNP _ 27 conj _ _ 30 , _ PUNCT , _ 20 punct _ _ 31 is _ VERB VBZ _ 35 cop _ _ 32 originally _ ADV RB _ 35 advmod _ _ 33 from _ ADP IN _ 35 case _ _ 34 somewhere _ ADV RB _ 35 advmod _ _ 35 else _ ADV RB _ 16 ccomp _ _ 36 . _ PUNCT . _ 2 punct _ _ 1 Suffice _ VERB VB _ 0 root _ _ 2 it _ PRON PRP _ 1 dobj _ _ 3 to _ PART TO _ 4 mark _ _ 4 say _ VERB VB _ 1 advcl _ _ 5 that _ SCONJ IN _ 34 mark _ _ 6 if _ SCONJ IN _ 13 mark _ _ 7 this _ PRON DT _ 13 nsubj _ _ 8 were _ VERB VBD _ 13 cop _ _ 9 a _ DET DT _ 13 det _ _ 10 New _ PROPN NNP _ 13 compound _ _ 11 York _ PROPN NNP _ 13 compound _ _ 12 Yankees-Mets _ ADJ NNP _ 13 amod _ _ 13 series _ NOUN NN _ 34 advcl _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 one _ NUM CD _ 13 conj _ _ 17 between _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 Chicago _ PROPN NNP _ 20 compound _ _ 20 Cubs _ PROPN NNP _ 16 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 White _ PROPN NNP _ 23 compound _ _ 23 Sox _ PROPN NNP _ 20 conj _ _ 24 -LRB- _ PUNCT -LRB- _ 29 punct _ _ 25 hey _ INTJ RB _ 29 discourse _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 it _ PRON PRP _ 29 nsubj _ _ 28 's _ VERB VBZ _ 29 cop _ _ 29 possible _ ADJ JJ _ 16 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 29 punct _ _ 31 , _ PUNCT , _ 34 punct _ _ 32 you _ PRON PRP _ 34 nsubj _ _ 33 'd _ AUX MD _ 34 aux _ _ 34 need _ VERB VB _ 4 ccomp _ _ 35 uniformed _ ADJ JJ _ 36 amod _ _ 36 police _ NOUN NNS _ 34 dobj _ _ 37 in _ ADP IN _ 40 case _ _ 38 every _ DET DT _ 40 det _ _ 39 other _ ADJ JJ _ 40 amod _ _ 40 seat _ NOUN NN _ 34 nmod _ _ 41 to _ PART TO _ 42 mark _ _ 42 separate _ VERB JJ _ 34 advcl _ _ 43 opposing _ VERB VBG _ 44 amod _ _ 44 fans _ NOUN NNS _ 42 dobj _ _ 45 , _ PUNCT , _ 34 punct _ _ 46 and _ CONJ CC _ 34 cc _ _ 47 only _ ADV RB _ 49 advmod _ _ 48 the _ DET DT _ 49 det _ _ 49 suicidal _ ADJ JJ _ 51 nsubj _ _ 50 would _ AUX MD _ 51 aux _ _ 51 bifurcate _ VERB VB _ 34 conj _ _ 52 their _ PRON PRP$ _ 53 nmod:poss _ _ 53 bonnets _ NOUN NNS _ 51 dobj _ _ 54 . _ PUNCT . _ 1 punct _ _ 1 Anyway _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 A _ PROPN NN _ 5 compound _ _ 5 's _ PROPN POS _ 6 nsubj _ _ 6 gave _ VERB VBD _ 0 root _ _ 7 you _ PRON PRP _ 6 iobj _ _ 8 a _ DET DT _ 9 det _ _ 9 lot _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 heroes _ NOUN NNS _ 9 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 root _ VERB VB _ 11 acl _ _ 14 for _ ADP IN _ 13 advcl _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 opening _ ADJ NN _ 4 amod _ _ 4 game _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 besides _ ADP IN _ 7 case _ _ 7 Steinbach _ PROPN NNP _ 12 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Stewart _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 there _ PRON EX _ 12 expl _ _ 12 was _ VERB VBD _ 0 root _ _ 13 Walt _ PROPN NNP _ 14 compound _ _ 14 Weiss _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 20 det _ _ 17 twiggy-looking _ ADJ NN _ 20 amod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 second-year _ ADJ JJ _ 20 amod _ _ 20 shortstop _ NOUN NN _ 14 appos _ _ 21 who _ PRON WP _ 23 nsubj _ _ 22 had _ AUX VBD _ 23 aux _ _ 23 lost _ VERB VBN _ 20 acl:relcl _ _ 24 a _ DET DT _ 26 det _ _ 25 couple _ NOUN NN _ 26 compound _ _ 26 months _ NOUN NNS _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 season _ NOUN NN _ 26 nmod _ _ 30 to _ ADP TO _ 32 case _ _ 31 knee _ NOUN NN _ 32 compound _ _ 32 surgery _ NOUN NN _ 23 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 flawless _ ADJ JJ _ 0 root _ _ 4 afield _ ADV NN _ 3 advmod _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 ditto _ NOUN NN _ 3 dep _ _ 7 in _ ADP IN _ 8 case _ _ 8 game _ NOUN NN _ 6 nmod _ _ 9 two _ NUM CD _ 8 nummod _ _ 10 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 moved _ VERB VBD _ 3 conj _ _ 13 a _ DET DT _ 14 det _ _ 14 runner _ NOUN NN _ 12 dobj _ _ 15 along _ ADP IN _ 12 advmod _ _ 16 in _ ADP IN _ 22 case _ _ 17 the _ DET DT _ 22 det _ _ 18 A _ PROPN NN _ 22 compound _ _ 19 's _ PROPN POS _ 22 compound _ _ 20 three-run _ ADJ JJ _ 22 amod _ _ 21 second _ ADJ JJ _ 22 amod _ _ 22 inning _ NOUN NN _ 12 nmod _ _ 23 , _ PUNCT , _ 3 punct _ _ 24 and _ CONJ CC _ 3 cc _ _ 25 homered _ VERB VBD _ 3 conj _ _ 26 for _ ADP IN _ 31 case _ _ 27 his _ PRON PRP$ _ 28 nmod:poss _ _ 28 team _ NOUN NN _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 final _ ADJ JJ _ 31 amod _ _ 31 tally _ NOUN NN _ 25 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 Such _ ADJ JJ _ 2 dep _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 reputation _ NOUN NN _ 2 nsubj _ _ 5 among _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 East _ PROPN NNP _ 9 compound _ _ 8 Bay _ PROPN NNP _ 9 compound _ _ 9 Bashers _ PROPN NNP _ 4 nmod _ _ 10 that _ SCONJ IN _ 27 mark _ _ 11 when _ ADV WRB _ 13 advmod _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 hit _ VERB VBD _ 27 advcl _ _ 14 his _ PRON PRP$ _ 18 nmod:poss _ _ 15 first _ ADJ JJ _ 18 amod _ _ 16 career _ NOUN NN _ 18 compound _ _ 17 home _ NOUN NN _ 18 compound _ _ 18 run _ NOUN NN _ 13 dobj _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 season _ NOUN NN _ 13 nmod:tmod _ _ 21 , _ PUNCT , _ 27 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 fan _ NOUN NN _ 27 nsubj _ _ 24 who _ PRON WP _ 25 nsubj _ _ 25 caught _ VERB VBD _ 23 acl:relcl _ _ 26 it _ PRON PRP _ 25 dobj _ _ 27 agreed _ VERB VBD _ 2 dep _ _ 28 to _ PART TO _ 29 mark _ _ 29 turn _ VERB VB _ 27 xcomp _ _ 30 the _ DET DT _ 31 det _ _ 31 ball _ NOUN NN _ 29 dobj _ _ 32 over _ ADP IN _ 29 compound:prt _ _ 33 to _ ADP TO _ 34 case _ _ 34 him _ PRON PRP _ 29 nmod _ _ 35 in _ ADP IN _ 36 case _ _ 36 return _ NOUN NN _ 29 nmod _ _ 37 for _ ADP IN _ 39 case _ _ 38 an _ DET DT _ 39 det _ _ 39 autograph _ NOUN VBP _ 36 nmod _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 Not _ ADV RB _ 3 neg _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 autograph _ NOUN VB _ 0 root _ _ 4 ; _ PUNCT : _ 3 punct _ _ 5 power-hitter _ NOUN NN _ 6 compound _ _ 6 McGwire _ NOUN NNP _ 3 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 An _ DET DT _ 4 det _ _ 2 A _ PROPN NN _ 4 compound _ _ 3 's _ PROPN POS _ 4 compound _ _ 4 co-hero _ NOUN NN _ 11 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 second _ ADJ JJ _ 8 amod _ _ 8 game _ NOUN NN _ 4 nmod _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 Rickey _ PROPN NNP _ 11 compound _ _ 11 Henderson _ PROPN NNP _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 who _ PRON WP _ 14 nsubj _ _ 14 exemplifies _ VERB VBZ _ 11 acl:relcl _ _ 15 the _ DET DT _ 17 det _ _ 16 hot _ ADJ JJ _ 17 amod _ _ 17 side _ NOUN NN _ 14 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 hot-cold _ ADJ JJ _ 21 amod _ _ 21 equation _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 smoked _ VERB VBD _ 0 root _ _ 3 Toronto _ PROPN NNP _ 2 dobj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 playoffs _ NOUN NNS _ 2 nmod _ _ 7 with _ ADP IN _ 9 case _ _ 8 six _ NUM CD _ 9 nummod _ _ 9 hits _ NOUN NNS _ 2 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 seven _ NUM CD _ 12 nummod _ _ 12 walks _ NOUN VBZ _ 9 conj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 eight _ NUM CD _ 16 nummod _ _ 15 stolen _ VERB VBN _ 16 amod _ _ 16 bases _ NOUN NNS _ 9 conj _ _ 17 in _ ADP IN _ 20 case _ _ 18 22 _ NUM CD _ 20 nummod _ _ 19 at _ ADP IN _ 20 amod _ _ 20 bats _ NOUN NNS _ 9 nmod _ _ 21 , _ PUNCT , _ 2 punct _ _ 22 and _ CONJ CC _ 2 cc _ _ 23 continued _ VERB VBD _ 2 conj _ _ 24 that _ PRON IN _ 23 dobj _ _ 25 by _ SCONJ IN _ 26 mark _ _ 26 going _ VERB VBG _ 23 advcl _ _ 27 3-for-3 _ ADJ NN _ 26 advmod _ _ 28 at _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 plate _ NOUN NN _ 26 nmod _ _ 31 Sunday _ PROPN NNP _ 26 nmod:tmod _ _ 32 , _ PUNCT , _ 26 punct _ _ 33 along _ ADP IN _ 26 cc _ _ 34 with _ ADP IN _ 33 dep _ _ 35 walking _ VERB NN _ 26 conj _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 stealing _ VERB VBG _ 35 conj _ _ 38 a _ DET DT _ 39 det _ _ 39 base _ NOUN NN _ 37 dobj _ _ 40 and _ CONJ CC _ 35 cc _ _ 41 scoring _ VERB VBG _ 35 conj _ _ 42 a _ DET DT _ 43 det _ _ 43 run _ NOUN NN _ 41 dobj _ _ 44 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 When _ ADV WRB _ 7 advmod _ _ 3 you _ PRON PRP _ 7 nsubj _ _ 4 're _ VERB VBP _ 7 cop _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 groove _ NOUN NN _ 10 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 you _ PRON PRP _ 10 nsubj _ _ 10 see _ VERB VBP _ 17 ccomp _ _ 11 every _ DET DT _ 12 det _ _ 12 ball _ NOUN NN _ 10 dobj _ _ 13 tremendously _ ADV RB _ 10 advmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 lectured _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 cold _ ADJ JJ _ 3 amod _ _ 3 guys _ NOUN NNS _ 9 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 set _ NOUN NN _ 3 nmod _ _ 7 were _ VERB VBD _ 9 cop _ _ 8 Will _ PROPN NNP _ 9 compound _ _ 9 Clark _ PROPN NNP _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Kevin _ PROPN NNP _ 12 compound _ _ 12 Mitchell _ PROPN NNP _ 9 conj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 Matt _ PROPN NNP _ 15 compound _ _ 15 Williams _ PROPN NNP _ 9 conj _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 Giants _ PROPN NNP _ 21 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 3-4-5 _ NUM CD _ 21 nummod _ _ 21 hitters _ NOUN NNS _ 9 appos _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 combined _ VERB VBD _ 0 root _ _ 3 for _ ADP IN _ 5 case _ _ 4 25 _ NUM CD _ 5 nummod _ _ 5 hits _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 six _ NUM CD _ 9 nummod _ _ 8 home _ NOUN NN _ 9 compound _ _ 9 runs _ NOUN NNS _ 5 conj _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 24 _ NUM CD _ 12 nummod _ _ 12 runs _ NOUN NNS _ 5 conj _ _ 13 batted _ VERB VBN _ 12 acl _ _ 14 in _ ADP IN _ 13 compound:prt _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 five _ NUM CD _ 18 nummod _ _ 18 games _ NOUN NNS _ 2 nmod _ _ 19 against _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 Cubs _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 went _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 collective _ ADJ JJ _ 5 amod _ _ 5 5-for-24 _ NUM NN _ 2 dobj _ _ 6 here _ ADV RB _ 2 advmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 with _ ADP IN _ 10 case _ _ 9 zero _ NUM CD _ 10 nummod _ _ 10 homers _ NOUN NNS _ 2 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 ribbies _ NOUN NNS _ 10 conj _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 's _ PART VBZ _ 5 dep _ _ 3 that _ DET IN _ 5 det _ _ 4 last _ ADJ JJ _ 5 amod _ _ 5 set _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 numbers _ NOUN NNS _ 5 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 as _ ADV RB _ 10 advmod _ _ 10 much _ ADJ RB _ 5 dep _ _ 11 as _ ADP IN _ 12 case _ _ 12 anything _ NOUN NN _ 10 nmod _ _ 13 else _ ADV RB _ 12 amod _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 that _ PRON IN _ 16 nsubj _ _ 16 gives _ VERB VBZ _ 5 dep _ _ 17 the _ DET DT _ 18 det _ _ 18 Giants _ PROPN NNP _ 16 iobj _ _ 19 hope _ NOUN NN _ 16 dobj _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 Series _ PROPN NNP _ 23 compound _ _ 23 games _ NOUN NNS _ 19 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 come _ VERB VB _ 23 acl _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 believe _ VERB VBP _ 11 ccomp _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 law _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 averages _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 declared _ VERB VBD _ 0 root _ _ 12 San _ PROPN NNP _ 17 compound _ _ 13 Francisco _ PROPN NNP _ 17 compound _ _ 14 batting _ NOUN NN _ 17 compound _ _ 15 coach _ NOUN NN _ 17 compound _ _ 16 Dusty _ PROPN NNP _ 17 compound _ _ 17 Baker _ PROPN NNP _ 11 nsubj _ _ 18 after _ ADP IN _ 19 case _ _ 19 game _ NOUN NN _ 11 nmod _ _ 20 two _ NUM CD _ 19 nummod _ _ 21 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'd _ AUX MD _ 5 aux _ _ 4 rather _ ADV RB _ 5 advmod _ _ 5 see _ VERB VB _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 so-so _ ADJ JJ _ 8 amod _ _ 8 hitter _ NOUN NN _ 12 nsubj _ _ 9 who _ PRON WP _ 11 nsubj _ _ 10 's _ VERB VBZ _ 11 cop _ _ 11 hot _ ADJ JJ _ 8 acl:relcl _ _ 12 come _ VERB VBN _ 5 ccomp _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 for _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 other _ ADJ JJ _ 17 amod _ _ 17 side _ NOUN NN _ 12 nmod _ _ 18 than _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 good _ ADJ JJ _ 21 amod _ _ 21 hitter _ NOUN NN _ 5 nmod _ _ 22 who _ PRON WP _ 24 nsubj _ _ 23 's _ VERB VBZ _ 24 cop _ _ 24 cold _ ADJ JJ _ 21 acl:relcl _ _ 25 . _ PUNCT . _ 5 punct _ _ 26 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 old _ ADJ JJ _ 5 amod _ _ 4 Dodger _ PROPN NNP _ 5 compound _ _ 5 slugger _ NOUN NN _ 7 nsubj _ _ 6 wisely _ ADV RB _ 7 advmod _ _ 7 offered _ VERB VBD _ 0 root _ _ 8 no _ DET DT _ 9 neg _ _ 9 prediction _ NOUN NN _ 7 dobj _ _ 10 about _ SCONJ IN _ 15 mark _ _ 11 when _ ADV WRB _ 15 advmod _ _ 12 good _ ADJ JJ _ 13 amod _ _ 13 times _ NOUN NNS _ 15 nsubj _ _ 14 would _ AUX MD _ 15 aux _ _ 15 return _ VERB VB _ 9 acl _ _ 16 to _ ADP TO _ 18 case _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 side _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 When _ ADV WRB _ 4 advmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 goes _ VERB VBZ _ 8 advcl _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 you _ PRON PRP _ 8 nsubj _ _ 7 never _ ADV RB _ 8 neg _ _ 8 know _ VERB VBP _ 18 ccomp _ _ 9 when _ ADV WRB _ 12 advmod _ _ 10 you _ PRON PRP _ 12 nsubj _ _ 11 'll _ AUX MD _ 12 aux _ _ 12 get _ VERB VB _ 8 ccomp _ _ 13 it _ PRON PRP _ 12 dobj _ _ 14 back _ ADV RB _ 12 advmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 That _ PRON DT _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 baseball _ NOUN NN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 NCR _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 10 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 drop _ NOUN NN _ 3 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 third-quarter _ ADJ JJ _ 11 amod _ _ 10 net _ ADJ JJ _ 11 amod _ _ 11 income _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 citing _ VERB VBG _ 3 advcl _ _ 14 intense _ ADJ JJ _ 15 amod _ _ 15 competition _ NOUN NN _ 13 dobj _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 caused _ VERB VBD _ 15 acl:relcl _ _ 18 its _ PRON PRP$ _ 21 nmod:poss _ _ 19 gross _ ADJ JJ _ 21 amod _ _ 20 profit _ NOUN NN _ 21 compound _ _ 21 margins _ NOUN NNS _ 17 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 dip _ VERB VB _ 17 xcomp _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Net _ ADJ JJ _ 2 amod _ _ 2 income _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 quarter _ NOUN NN _ 2 nmod _ _ 6 fell _ VERB VBD _ 0 root _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 93.1 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 from _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 6 nmod _ _ 13 103.1 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 roughly _ ADV RB _ 17 advmod _ _ 17 what _ PRON WP _ 20 dobj _ _ 18 analysts _ NOUN NNS _ 20 nsubj _ _ 19 had _ AUX VBD _ 20 aux _ _ 20 expected _ VERB VBN _ 6 ccomp _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 per-share _ ADJ JJ _ 3 amod _ _ 3 profit _ NOUN NN _ 4 nsubj _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 only _ ADV RB _ 6 advmod _ _ 6 2 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 4 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 1.23 _ NUM CD _ 4 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 from _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 1.26 _ NUM CD _ 4 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 as _ SCONJ IN _ 22 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 company _ NOUN NN _ 22 nsubj _ _ 22 continued _ VERB VBD _ 4 advcl _ _ 23 its _ PRON PRP$ _ 26 nmod:poss _ _ 24 stock _ NOUN NN _ 26 compound _ _ 25 buy-back _ ADJ NN _ 26 amod _ _ 26 plan _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Average _ ADJ JJ _ 2 amod _ _ 2 shares _ NOUN NNS _ 4 nsubj _ _ 3 outstanding _ ADJ JJ _ 2 amod _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 75.8 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 4 nmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 82.1 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 1 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 1.39 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 1.41 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 maker _ NOUN NN _ 17 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 sells _ VERB VBZ _ 3 acl:relcl _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 half _ NOUN PDT _ 11 nummod _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 goods _ NOUN NNS _ 6 dobj _ _ 12 outside _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 also _ ADV RB _ 17 advmod _ _ 17 said _ VERB VBD _ 0 root _ _ 18 the _ DET DT _ 20 det _ _ 19 negative _ ADJ JJ _ 20 amod _ _ 20 effect _ NOUN NN _ 29 nsubj _ _ 21 of _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 stronger _ ADJ JJR _ 25 amod _ _ 24 U.S. _ PROPN NNP _ 25 compound _ _ 25 dollar _ NOUN NN _ 20 nmod _ _ 26 will _ AUX MD _ 29 aux _ _ 27 `` _ PUNCT `` _ 29 punct _ _ 28 adversely _ ADV RB _ 29 advmod _ _ 29 affect _ VERB VB _ 17 ccomp _ _ 30 '' _ PUNCT '' _ 29 punct _ _ 31 its _ PRON PRP$ _ 33 nmod:poss _ _ 32 fourth-quarter _ ADJ JJ _ 33 amod _ _ 33 performance _ NOUN NN _ 29 dobj _ _ 34 and _ CONJ CC _ 29 cc _ _ 35 `` _ PUNCT `` _ 36 punct _ _ 36 make _ VERB VB _ 29 conj _ _ 37 it _ PRON PRP _ 41 nsubj _ _ 38 difficult _ ADJ JJ _ 41 dep _ _ 39 '' _ PUNCT '' _ 41 punct _ _ 40 to _ PART TO _ 41 mark _ _ 41 better _ VERB JJR _ 36 xcomp _ _ 42 1988 _ NUM CD _ 43 nummod _ _ 43 results _ NOUN NNS _ 41 dobj _ _ 44 . _ PUNCT . _ 17 punct _ _ 1 NCR _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 2 ccomp _ _ 5 both _ DET CC _ 4 dep _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 5 dep _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 overseas _ ADV RB _ 5 conj _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 reflecting _ VERB VBG _ 4 xcomp _ _ 13 a _ DET DT _ 15 det _ _ 14 world-wide _ ADJ JJ _ 15 amod _ _ 15 softening _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 computer _ NOUN NN _ 19 compound _ _ 19 markets _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 said _ VERB VBD _ 0 root _ _ 7 orders _ NOUN NNS _ 11 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 U.S. _ PROPN NNP _ 7 nmod _ _ 11 showed _ VERB VBD _ 6 ccomp _ _ 12 `` _ PUNCT `` _ 11 punct _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 gains _ NOUN NNS _ 11 dobj _ _ 15 '' _ PUNCT '' _ 11 punct _ _ 16 during _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 latest _ ADJ JJS _ 19 amod _ _ 19 quarter _ NOUN NN _ 11 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 estimate _ VERB VBP _ 0 root _ _ 3 those _ DET DT _ 4 det _ _ 4 gains _ NOUN NNS _ 2 dobj _ _ 5 at _ ADP IN _ 10 case _ _ 6 12 _ NUM CD _ 10 compound _ _ 7 % _ SYM NN _ 10 dep _ _ 8 to _ ADP TO _ 10 dep _ _ 9 13 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 2 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 part _ NOUN NN _ 17 nsubj _ _ 15 of _ ADP IN _ 16 case _ _ 16 it _ PRON PRP _ 14 nmod _ _ 17 coming _ VERB VBG _ 2 advcl _ _ 18 from _ ADP IN _ 20 case _ _ 19 large _ ADJ JJ _ 20 amod _ _ 20 orders _ NOUN NNS _ 17 nmod _ _ 21 placed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 few _ ADJ JJ _ 21 nmod _ _ 25 of _ ADP IN _ 29 case _ _ 26 NCR _ PROPN NNP _ 29 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 major _ ADJ JJ _ 29 amod _ _ 29 customers _ NOUN NNS _ 24 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 26 nmod _ _ 3 to _ ADP TO _ 6 case _ _ 4 a _ DET DT _ 6 det _ _ 5 general _ ADJ JJ _ 6 amod _ _ 6 slowing _ NOUN NN _ 2 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 computer _ NOUN NN _ 10 compound _ _ 10 industry _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 26 punct _ _ 12 NCR _ PROPN NNP _ 26 nsubjpass _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 sells _ VERB VBZ _ 12 acl:relcl _ _ 16 automated _ VERB VBN _ 18 amod _ _ 17 teller _ NOUN NN _ 18 compound _ _ 18 machines _ NOUN NNS _ 15 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 computerized _ VERB JJ _ 22 amod _ _ 21 cash _ NOUN NN _ 22 compound _ _ 22 registers _ NOUN VBZ _ 18 conj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 is _ AUX VBZ _ 26 auxpass _ _ 25 also _ ADV RB _ 26 advmod _ _ 26 affected _ VERB VBN _ 47 ccomp _ _ 27 by _ ADP IN _ 32 case _ _ 28 the _ DET DT _ 32 det _ _ 29 retail _ ADJ JJ _ 32 amod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 financial _ ADJ JJ _ 29 conj _ _ 32 sectors _ NOUN NNS _ 26 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 `` _ PUNCT `` _ 32 punct _ _ 35 areas _ NOUN NNS _ 32 dep _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 economy _ NOUN NN _ 35 nmod _ _ 39 that _ PRON WDT _ 44 nsubj _ _ 40 have _ AUX VBP _ 44 aux _ _ 41 generally _ ADV RB _ 44 advmod _ _ 42 not _ PART RB _ 44 neg _ _ 43 been _ VERB VBN _ 44 cop _ _ 44 robust _ ADJ JJ _ 35 acl:relcl _ _ 45 , _ PUNCT , _ 47 punct _ _ 46 '' _ PUNCT '' _ 47 punct _ _ 47 notes _ VERB VBZ _ 0 root _ _ 48 Sanjiv _ PROPN NNP _ 50 compound _ _ 49 G. _ PROPN NNP _ 50 compound _ _ 50 Hingorani _ PROPN NNP _ 47 nsubj _ _ 51 , _ PUNCT , _ 50 punct _ _ 52 an _ DET DT _ 53 det _ _ 53 analyst _ NOUN NN _ 50 appos _ _ 54 for _ ADP IN _ 57 case _ _ 55 Salomon _ PROPN NNP _ 57 compound _ _ 56 Brothers _ PROPN NNPS _ 57 compound _ _ 57 Inc _ PROPN NNP _ 53 nmod _ _ 58 . _ PUNCT . _ 47 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 factors _ NOUN NNS _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 combined _ VERB VBN _ 8 case _ _ 5 with _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 strong _ ADJ JJ _ 8 amod _ _ 8 dollar _ NOUN NN _ 2 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 should _ AUX MD _ 12 aux _ _ 11 negatively _ ADV RB _ 12 advmod _ _ 12 affect _ VERB VB _ 20 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 current _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 results _ NOUN NNS _ 12 dobj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 NCR _ PROPN NNP _ 20 nsubj _ _ 20 said _ VERB VBD _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 year-earlier _ ADJ JJ _ 5 amod _ _ 4 fourth _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 NCR _ PROPN NNP _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 profit _ NOUN NN _ 8 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 149.6 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.85 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 revenue _ NOUN NN _ 8 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 1.8 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Hingorani _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 lowered _ VERB VBD _ 3 ccomp _ _ 6 his _ PRON PRP$ _ 8 nmod:poss _ _ 7 full-year _ ADJ JJ _ 8 amod _ _ 8 estimates _ NOUN NNS _ 5 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 1989 _ NUM CD _ 8 nmod _ _ 11 to _ ADP TO _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 5.35 _ NUM CD _ 5 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 from _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 5.50 _ NUM CD _ 5 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Revenue _ NOUN NN _ 2 compound _ _ 2 projections _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 slashed _ VERB VBN _ 0 root _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 4 nmod _ _ 7 6.03 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 4 nmod _ _ 11 6.20 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 year _ NOUN NN _ 5 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 NCR _ PROPN NNP _ 5 nsubj _ _ 5 had _ VERB VBD _ 0 root _ _ 6 net _ ADJ JJ _ 7 amod _ _ 7 income _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 439.3 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 5.33 _ NUM CD _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 5 nmod _ _ 21 5.99 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 in _ ADP IN _ 24 case _ _ 24 revenue _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 earnings _ NOUN NNS _ 10 nsubj _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 9 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 to _ ADP TO _ 14 case _ _ 14 $ _ SYM $ _ 10 nmod _ _ 15 264.6 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 3.40 _ NUM CD _ 14 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 from _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 10 nmod _ _ 26 289.7 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 3.49 _ NUM CD _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 Revenues _ NOUN NNS _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 1 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 4.17 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 4.19 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN JJ _ 7 compound _ _ 7 trading _ NOUN NN _ 12 nmod _ _ 8 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 NCR _ PROPN NNP _ 11 compound _ _ 11 shares _ NOUN NNS _ 12 nsubj _ _ 12 fell _ VERB VBD _ 0 root _ _ 13 75 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 12 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 close _ VERB VB _ 12 advcl _ _ 17 at _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 57 _ NUM CD _ 16 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 Concerning _ VERB VBG _ 20 dep _ _ 2 your _ PRON PRP$ _ 5 nmod:poss _ _ 3 Sept. _ PROPN NNP _ 5 compound _ _ 4 19 _ NUM CD _ 5 nummod _ _ 5 article _ NOUN NN _ 1 dobj _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 Wall _ PROPN NNP _ 9 compound _ _ 8 Street _ PROPN NNP _ 9 compound _ _ 9 Firms _ PROPN NNPS _ 10 nsubj _ _ 10 Link _ VERB NNP _ 5 dep _ _ 11 Analysts _ PROPN NNS _ 13 nmod:poss _ _ 12 ' _ PART POS _ 11 case _ _ 13 Pay _ NOUN VB _ 10 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 Performance _ NOUN NNP _ 10 nmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 '' _ PUNCT '' _ 20 punct _ _ 18 I _ PRON PRP _ 20 nsubjpass _ _ 19 'm _ VERB VBP _ 20 auxpass _ _ 20 delighted _ VERB JJ _ 0 root _ _ 21 that _ SCONJ IN _ 26 mark _ _ 22 Wall _ PROPN NNP _ 23 compound _ _ 23 Street _ PROPN NNP _ 26 nsubj _ _ 24 is _ AUX VBZ _ 26 aux _ _ 25 finally _ ADV RB _ 26 advmod _ _ 26 tuning _ VERB NN _ 20 ccomp _ _ 27 in _ ADP IN _ 26 compound:prt _ _ 28 to _ ADP TO _ 33 case _ _ 29 the _ DET DT _ 33 det _ _ 30 hard _ ADJ JJ _ 33 amod _ _ 31 , _ PUNCT , _ 33 punct _ _ 32 cold _ ADJ JJ _ 33 amod _ _ 33 facts _ NOUN NNS _ 26 nmod _ _ 34 of _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 38 det _ _ 36 real _ ADJ JJ _ 38 amod _ _ 37 working _ NOUN JJ _ 38 compound _ _ 38 world _ NOUN NN _ 33 nmod _ _ 39 . _ PUNCT . _ 20 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 firms _ NOUN NNS _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 serious _ ADJ JJ _ 10 dep _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 however _ ADV RB _ 10 advmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 why _ ADV WRB _ 10 advmod _ _ 10 limit _ VERB NN _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 practice _ NOUN NN _ 10 dobj _ _ 13 to _ ADP TO _ 18 case _ _ 14 the _ DET DT _ 18 det _ _ 15 poor _ ADJ JJ _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 maligned _ VERB JJ _ 18 amod _ _ 18 analysts _ NOUN NNS _ 10 nmod _ _ 19 whose _ PRON WP$ _ 20 nmod:poss _ _ 20 ability _ NOUN NN _ 27 nsubj _ _ 21 to _ PART TO _ 22 mark _ _ 22 see _ VERB VB _ 20 dep _ _ 23 into _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 future _ NOUN NN _ 22 nmod _ _ 26 is _ VERB VBZ _ 27 cop _ _ 27 fragile _ ADJ JJ _ 18 acl:relcl _ _ 28 at _ ADP IN _ 29 case _ _ 29 best _ ADV JJS _ 27 nmod _ _ 30 ? _ PUNCT . _ 10 punct _ _ 1 Why _ ADV WRB _ 2 advmod _ _ 2 not _ ADV RB _ 3 advmod _ _ 3 extend _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 7 det _ _ 5 same _ ADJ JJ _ 7 amod _ _ 6 harsh _ ADJ JJ _ 7 amod _ _ 7 standards _ NOUN NNS _ 3 dobj _ _ 8 to _ ADP TO _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 sales _ NOUN NNS _ 11 compound _ _ 11 force _ NOUN NN _ 3 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 pay _ VERB NN _ 3 conj _ _ 15 brokers _ NOUN NNS _ 14 iobj _ _ 16 a _ DET DT _ 18 det _ _ 17 base _ NOUN NN _ 18 compound _ _ 18 salary _ NOUN NN _ 14 dobj _ _ 19 with _ ADP IN _ 21 case _ _ 20 annual _ ADJ JJ _ 21 amod _ _ 21 bonus _ NOUN NN _ 18 nmod _ _ 22 based _ VERB VBN _ 21 acl _ _ 23 on _ SCONJ IN _ 28 mark _ _ 24 how _ ADV WRB _ 25 advmod _ _ 25 much _ ADJ JJ _ 26 advmod _ _ 26 money _ NOUN NN _ 28 dobj _ _ 27 they _ PRON PRP _ 28 nsubj _ _ 28 made _ VERB VBD _ 22 advcl _ _ 29 for _ ADP IN _ 31 case _ _ 30 their _ PRON PRP$ _ 31 nmod:poss _ _ 31 clients _ NOUN NNS _ 28 nmod _ _ 32 during _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 year _ NOUN NN _ 28 nmod _ _ 35 ? _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 should _ AUX MD _ 3 aux _ _ 3 stop _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 lot _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 account-churning _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 produce _ VERB VBP _ 3 conj _ _ 11 a _ DET DT _ 13 det _ _ 12 stock _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 10 dobj _ _ 14 driven _ VERB VBN _ 13 acl _ _ 15 only _ ADV RB _ 14 advmod _ _ 16 by _ ADP IN _ 18 case _ _ 17 professional _ ADJ JJ _ 18 amod _ _ 18 concern _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 careful _ ADJ JJ _ 21 amod _ _ 21 thought _ NOUN NN _ 18 conj _ _ 22 and _ CONJ CC _ 18 cc _ _ 23 good _ ADJ JJ _ 24 amod _ _ 24 sense _ NOUN NN _ 18 conj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 8 discourse _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 would _ AUX MD _ 8 aux _ _ 4 n't _ PART RB _ 8 neg _ _ 5 that _ PRON IN _ 8 nsubj _ _ 6 be _ VERB VB _ 8 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 novelty _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 Phyllis _ PROPN NNP _ 3 compound _ _ 2 Kyle _ PROPN NNP _ 3 compound _ _ 3 Stephenson _ PROPN NNP _ 0 root _ _ 4 Newport _ PROPN NNP _ 5 compound _ _ 5 News _ PROPN NNP _ 3 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Va _ PROPN NNP _ 5 appos _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Steve _ PROPN NNP _ 2 compound _ _ 2 Clark _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 9 det _ _ 5 Shearson _ PROPN NNP _ 9 compound _ _ 6 Lehman _ PROPN NNP _ 9 compound _ _ 7 Hutton _ PROPN NNP _ 9 compound _ _ 8 Inc. _ PROPN NNP _ 9 compound _ _ 9 trader _ NOUN NN _ 2 appos _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 reported _ VERB VBD _ 0 root _ _ 12 for _ ADP IN _ 13 case _ _ 13 work _ NOUN NN _ 11 nmod _ _ 14 at _ ADP IN _ 16 case _ _ 15 5 _ NUM CD _ 16 nummod _ _ 16 a.m. _ NOUN RB _ 11 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 two _ NUM CD _ 22 nummod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 a _ DET DT _ 21 det _ _ 21 half _ NOUN NN _ 18 conj _ _ 22 hours _ NOUN NNS _ 16 nmod _ _ 23 before _ ADP IN _ 22 case _ _ 24 the _ DET DT _ 29 det _ _ 25 usual _ ADJ JJ _ 29 amod _ _ 26 Monday _ PROPN NNP _ 29 compound _ _ 27 morning _ NOUN NN _ 29 compound _ _ 28 strategy _ NOUN NN _ 29 compound _ _ 29 meeting _ NOUN NN _ 22 dep _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Jefferies _ PROPN NNP _ 11 nmod _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 J. _ PROPN NNP _ 8 compound _ _ 7 Francis _ PROPN NNP _ 8 compound _ _ 8 Palamara _ PROPN NNP _ 11 nsubj _ _ 9 did _ AUX VBD _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 reach _ VERB VB _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 office _ NOUN NN _ 11 dobj _ _ 14 until _ ADP IN _ 16 case _ _ 15 5:30 _ NUM CD _ 16 nummod _ _ 16 a.m. _ NOUN RB _ 11 nmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 but _ CONJ CC _ 11 cc _ _ 19 then _ ADV RB _ 29 advmod _ _ 20 he _ PRON PRP _ 29 nsubj _ _ 21 had _ AUX VBD _ 29 aux _ _ 22 been _ VERB VBN _ 29 cop _ _ 23 up _ ADV RB _ 29 advmod _ _ 24 most _ ADV JJS _ 29 nmod:tmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 night _ NOUN NN _ 24 nmod _ _ 28 at _ ADP IN _ 29 case _ _ 29 home _ NOUN NN _ 11 conj _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 had _ VERB VBD _ 14 ccomp _ _ 4 calls _ NOUN NNS _ 3 dobj _ _ 5 all _ DET DT _ 6 det _ _ 6 night _ NOUN NN _ 7 nmod:npmod _ _ 7 long _ ADV RB _ 3 advmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 States _ PROPN NNPS _ 3 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 '' _ PUNCT '' _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 woken _ VERB VBN _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 every _ DET DT _ 7 det _ _ 7 hour _ NOUN NN _ 4 dobj _ _ 8 -- _ PUNCT : _ 7 punct _ _ 9 1:30 _ NUM CD _ 15 nummod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 2:30 _ NUM CD _ 15 nummod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 3:30 _ NUM CD _ 15 nummod _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 4:30 _ NUM CD _ 7 dep _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 People _ NOUN NNS _ 3 nsubj _ _ 2 are _ AUX VBP _ 3 aux _ _ 3 looking _ VERB VBG _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 possible _ ADJ JJ _ 6 amod _ _ 6 opportunities _ NOUN NNS _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 6 acl _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 but _ CONJ IN _ 3 cc _ _ 11 nobody _ NOUN NN _ 12 nsubj _ _ 12 wants _ VERB VBZ _ 3 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 stick _ VERB VB _ 12 xcomp _ _ 15 their _ PRON PRP$ _ 16 nmod:poss _ _ 16 chin _ NOUN NN _ 14 dobj _ _ 17 out _ ADP RP _ 14 compound:prt _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 '' _ PUNCT '' _ 3 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 many _ ADJ JJ _ 12 nmod _ _ 3 of _ ADP IN _ 7 case _ _ 4 London _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 securities _ NOUN NNS _ 7 compound _ _ 7 traders _ NOUN NNS _ 2 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 it _ PRON PRP _ 12 nsubj _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 day _ NOUN NN _ 0 root _ _ 13 that _ PRON WDT _ 14 nsubj _ _ 14 started _ VERB VBD _ 12 acl:relcl _ _ 15 nervously _ ADV RB _ 14 advmod _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 small _ ADJ JJ _ 19 amod _ _ 19 hours _ NOUN NNS _ 14 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 lunchtime _ NOUN NN _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 selling _ NOUN NN _ 9 nsubj _ _ 6 was _ VERB VBD _ 9 cop _ _ 7 at _ ADP IN _ 9 case _ _ 8 near-panic _ ADJ NN _ 9 amod _ _ 9 fever _ NOUN NN _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 as _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 day _ NOUN NN _ 5 nsubj _ _ 5 ended _ VERB VBN _ 15 advcl _ _ 6 in _ ADP IN _ 11 case _ _ 7 a _ DET DT _ 11 det _ _ 8 frantic _ ADJ JJ _ 11 amod _ _ 9 Wall _ PROPN NN _ 11 compound _ _ 10 Street-inspired _ ADJ JJ _ 11 amod _ _ 11 rally _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 City _ PROPN NNP _ 15 nsubj _ _ 15 breathed _ VERB VBD _ 0 root _ _ 16 a _ DET DT _ 17 det _ _ 17 sigh _ NOUN NN _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 relief _ NOUN NN _ 17 nmod _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 So _ ADP IN _ 3 dep _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 went _ VERB VBD _ 0 root _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 rooms _ NOUN NNS _ 3 nmod _ _ 9 of _ ADP IN _ 13 case _ _ 10 London _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 financial _ ADJ JJ _ 13 amod _ _ 13 district _ NOUN NN _ 8 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 wake _ NOUN NN _ 16 nmod _ _ 4 of _ ADP IN _ 8 case _ _ 5 Wall _ PROPN NNP _ 6 compound _ _ 6 Street _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 plunge _ NOUN NN _ 3 nmod _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 Friday _ PROPN NNP _ 8 nmod:tmod _ _ 11 , _ PUNCT , _ 16 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 London _ PROPN NNP _ 14 compound _ _ 14 market _ NOUN NN _ 16 nsubjpass _ _ 15 was _ AUX VBD _ 16 auxpass _ _ 16 considered _ VERB VBN _ 0 root _ _ 17 especially _ ADV RB _ 18 advmod _ _ 18 vulnerable _ ADJ JJ _ 16 xcomp _ _ 19 . _ PUNCT . _ 16 punct _ _ 1 And _ CONJ CC _ 15 cc _ _ 2 before _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 opening _ NOUN NN _ 15 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 trading _ NOUN NN _ 4 nmod _ _ 7 here _ ADV RB _ 4 advmod _ _ 8 yesterday _ NOUN NN _ 4 nmod:tmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 all _ DET DT _ 11 det _ _ 11 eyes _ NOUN NNS _ 15 nsubj _ _ 12 were _ VERB VBD _ 15 cop _ _ 13 on _ ADP IN _ 15 case _ _ 14 early _ ADJ JJ _ 15 amod _ _ 15 trading _ NOUN NN _ 0 root _ _ 16 in _ ADP IN _ 17 case _ _ 17 Tokyo _ PROPN NNP _ 15 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 clue _ NOUN NN _ 15 nmod _ _ 21 as _ ADP IN _ 28 case _ _ 22 to _ ADP TO _ 28 mark _ _ 23 how _ ADV WRB _ 24 advmod _ _ 24 widespread _ ADJ JJ _ 28 dep _ _ 25 the _ DET DT _ 26 det _ _ 26 fallout _ NOUN NN _ 28 nsubj _ _ 27 might _ AUX MD _ 28 aux _ _ 28 be _ VERB VB _ 20 acl _ _ 29 . _ PUNCT . _ 15 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 17 nmod _ _ 4 trading _ NOUN NN _ 6 nsubj _ _ 5 officially _ ADV RB _ 6 advmod _ _ 6 got _ VERB VBD _ 3 acl:relcl _ _ 7 under _ ADP IN _ 8 case _ _ 8 way _ NOUN NN _ 6 nmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 9 _ NUM CD _ 11 nummod _ _ 11 a.m. _ NOUN RB _ 6 nmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 news _ NOUN NN _ 17 nsubj _ _ 15 from _ ADP IN _ 16 case _ _ 16 Asia _ PROPN NNP _ 14 nmod _ _ 17 was _ VERB VBD _ 0 root _ _ 18 in _ ADV IN _ 17 advmod _ _ 19 . _ PUNCT . _ 17 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 left _ VERB VBD _ 0 root _ _ 4 mixed _ ADJ JJ _ 5 amod _ _ 5 signals _ NOUN NNS _ 3 dobj _ _ 6 for _ ADP IN _ 7 case _ _ 7 London _ PROPN NNP _ 3 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Tokyo _ PROPN NNP _ 2 compound _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 closed _ VERB VBD _ 0 root _ _ 4 off _ ADJ RP _ 3 advmod _ _ 5 a _ DET DT _ 10 det _ _ 6 significant _ ADJ JJ _ 10 amod _ _ 7 but _ CONJ CC _ 6 cc _ _ 8 less-than-alarming _ ADJ JJ _ 6 conj _ _ 9 1.8 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 4 dep _ _ 11 on _ ADP IN _ 13 case _ _ 12 thin _ ADJ JJ _ 13 amod _ _ 13 volume _ NOUN NN _ 4 nmod _ _ 14 ; _ PUNCT : _ 3 punct _ _ 15 Hong _ PROPN NNP _ 17 compound _ _ 16 Kong _ PROPN NNP _ 17 compound _ _ 17 stocks _ NOUN NNS _ 18 nsubj _ _ 18 declined _ VERB VBD _ 3 parataxis _ _ 19 6.5 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 in _ ADP IN _ 23 case _ _ 22 orderly _ ADJ JJ _ 23 amod _ _ 23 trading _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 5 case _ _ 2 Jefferies _ PROPN NNP _ 5 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 trading _ VERB NN _ 5 amod _ _ 5 room _ NOUN NN _ 24 nmod _ _ 6 on _ ADP IN _ 8 case _ _ 7 Finsbury _ PROPN NNP _ 8 compound _ _ 8 Circus _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 a _ DET DT _ 12 det _ _ 11 stately _ ADJ JJ _ 12 amod _ _ 12 circle _ NOUN NN _ 8 appos _ _ 13 at _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 edge _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 financial _ ADJ JJ _ 19 amod _ _ 19 district _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 desktop _ NOUN NN _ 23 compound _ _ 22 computer _ NOUN NN _ 23 compound _ _ 23 screens _ NOUN NNS _ 24 nsubj _ _ 24 displayed _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 27 det _ _ 26 London _ PROPN NNP _ 27 compound _ _ 27 market _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 major _ ADJ JJ _ 30 amod _ _ 30 barometer _ NOUN NN _ 24 dobj _ _ 31 -- _ PUNCT : _ 30 punct _ _ 32 the _ DET DT _ 38 det _ _ 33 Financial _ PROPN NNP _ 38 compound _ _ 34 Times-Stock _ PROPN NNP _ 38 compound _ _ 35 Exchange _ PROPN NNP _ 38 compound _ _ 36 100 _ NUM CD _ 38 nummod _ _ 37 Share _ PROPN NNP _ 38 compound _ _ 38 Index _ PROPN NNP _ 30 dep _ _ 39 . _ PUNCT . _ 24 punct _ _ 1 Red _ ADJ JJ _ 2 amod _ _ 2 figures _ NOUN NNS _ 6 nsubj _ _ 3 on _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 screens _ NOUN NNS _ 2 nmod _ _ 6 indicated _ VERB VBD _ 0 root _ _ 7 falling _ VERB VBG _ 8 amod _ _ 8 stocks _ NOUN NNS _ 6 dobj _ _ 9 ; _ PUNCT : _ 6 punct _ _ 10 blue _ ADJ JJ _ 11 amod _ _ 11 figures _ NOUN NNS _ 14 dep _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 rising _ VERB VBG _ 14 amod _ _ 14 stocks _ NOUN NNS _ 6 parataxis _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Right _ ADV RB _ 2 advmod _ _ 2 away _ ADV RB _ 6 advmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 reds _ NOUN NNS _ 6 nsubj _ _ 6 outnumbered _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 blues _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 80 _ NUM CD _ 12 dep _ _ 11 to _ ADP TO _ 12 dep _ _ 12 20 _ NUM CD _ 6 advmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 as _ SCONJ IN _ 17 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 index _ NOUN NN _ 17 nsubj _ _ 17 opened _ VERB VBD _ 6 advcl _ _ 18 at _ ADP IN _ 19 case _ _ 19 2076.8 _ NUM CD _ 17 nmod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 off _ ADP RB _ 23 case _ _ 22 157.1 _ NUM CD _ 23 nummod _ _ 23 points _ NOUN NNS _ 17 advmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 or _ CONJ CC _ 23 cc _ _ 26 7 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 23 conj _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 see _ VERB VBP _ 15 ccomp _ _ 4 concern _ NOUN NN _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 but _ CONJ CC _ 3 cc _ _ 7 I _ PRON PRP _ 10 nsubj _ _ 8 do _ AUX VBP _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 see _ VERB VB _ 3 conj _ _ 11 any _ DET DT _ 12 det _ _ 12 panic _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Palamara _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 25 det _ _ 20 big _ ADJ JJ _ 25 amod _ _ 21 , _ PUNCT , _ 25 punct _ _ 22 good-humored _ ADJ JJ _ 25 amod _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 native _ NOUN NN _ 17 appos _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 runs _ VERB VBZ _ 25 acl:relcl _ _ 28 the _ DET DT _ 30 det _ _ 29 15-trader _ ADJ JJ _ 30 amod _ _ 30 office _ NOUN NN _ 27 dobj _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Jefferies _ PROPN NNP _ 3 compound _ _ 3 office _ NOUN NN _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 branch _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 Los _ PROPN NNP _ 11 compound _ _ 10 Angeles-based _ ADJ JJ _ 11 amod _ _ 11 firm _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 played _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 13 dobj _ _ 15 conservatively _ ADV RB _ 13 advmod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 seeking _ VERB VBG _ 13 advcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 avoid _ VERB VB _ 17 xcomp _ _ 20 risk _ NOUN NN _ 19 dobj _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 not _ PART RB _ 6 neg _ _ 5 the _ DET DT _ 6 det _ _ 6 sort _ NOUN NN _ 17 ccomp _ _ 7 of _ ADP IN _ 8 case _ _ 8 market _ NOUN NN _ 6 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 have _ VERB VB _ 6 acl _ _ 11 a _ DET DT _ 13 det _ _ 12 big _ ADJ JJ _ 13 amod _ _ 13 position _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 10 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 David _ PROPN NNP _ 19 compound _ _ 19 Smith _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 heads _ VERB VBZ _ 19 acl:relcl _ _ 23 trading _ NOUN NN _ 22 dobj _ _ 24 in _ ADP IN _ 27 case _ _ 25 all _ DET DT _ 27 det _ _ 26 non-U.S. _ ADJ JJ _ 27 amod _ _ 27 stocks _ NOUN NNS _ 23 nmod _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 tend _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 run _ VERB VB _ 3 xcomp _ _ 6 a _ DET DT _ 9 det _ _ 7 very _ ADV RB _ 8 advmod _ _ 8 tight _ ADJ JJ _ 9 amod _ _ 9 book _ NOUN NN _ 5 dobj _ _ 10 . _ PUNCT . _ 3 punct _ _ 11 '' _ PUNCT '' _ 3 punct _ _ 1 Jefferies _ PROPN NNP _ 2 nsubj _ _ 2 spent _ VERB VBD _ 0 root _ _ 3 most _ ADJ JJS _ 2 dobj _ _ 4 of _ ADP IN _ 6 case _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 energies _ NOUN NNS _ 3 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 morning _ NOUN NN _ 2 nmod _ _ 10 trying _ VERB VBG _ 2 xcomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 match _ VERB VB _ 10 xcomp _ _ 13 buyers _ NOUN NNS _ 12 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 sellers _ NOUN NNS _ 13 conj _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 and _ CONJ CC _ 2 cc _ _ 18 there _ PRON EX _ 19 expl _ _ 19 were _ VERB VBD _ 2 conj _ _ 20 n't _ PART RB _ 19 neg _ _ 21 many _ ADJ JJ _ 22 amod _ _ 22 buyers _ NOUN NNS _ 19 nsubj _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 All _ DET PDT _ 5 det:predet _ _ 3 the _ DET DT _ 5 det _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 stocks _ NOUN NNS _ 19 nsubjpass _ _ 6 -- _ PUNCT : _ 5 punct _ _ 7 Scottish _ PROPN NNP _ 5 dep _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Newcastle _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 B.A.T _ PROPN NNP _ 7 appos _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 DRG _ PROPN NNP _ 7 appos _ _ 14 -- _ PUNCT : _ 5 punct _ _ 15 are _ AUX VBP _ 19 aux _ _ 16 getting _ AUX VBG _ 19 auxpass _ _ 17 pretty _ ADV RB _ 18 advmod _ _ 18 well _ ADV RB _ 19 advmod _ _ 19 pasted _ VERB VBD _ 26 ccomp _ _ 20 this _ DET DT _ 21 det _ _ 21 morning _ NOUN NN _ 19 nmod:tmod _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 '' _ PUNCT '' _ 26 punct _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Smith _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Seconds _ NOUN NNS _ 2 nmod:npmod _ _ 2 later _ ADV RB _ 14 advmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 a _ DET DT _ 9 det _ _ 5 7,500-share _ ADJ JJ _ 9 amod _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 sell _ NOUN VB _ 9 compound _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 order _ NOUN NN _ 14 nsubj _ _ 10 for _ ADP IN _ 11 case _ _ 11 Scottish _ PROPN NNP _ 9 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Newcastle _ PROPN NNP _ 11 conj _ _ 14 came _ VERB VBD _ 0 root _ _ 15 in _ ADP IN _ 14 compound:prt _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 15 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 15 _ NUM CD _ 7 nummod _ _ 7 minutes _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 15 punct _ _ 9 a _ DET DT _ 10 det _ _ 10 trader _ NOUN NN _ 15 nsubj _ _ 11 next _ ADJ JJ _ 10 advmod _ _ 12 to _ ADP TO _ 14 case _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Smith _ PROPN NNP _ 11 nmod _ _ 15 left _ VERB VBD _ 0 root _ _ 16 the _ DET DT _ 18 det _ _ 17 no-smoking _ ADJ JJ _ 18 amod _ _ 18 area _ NOUN NN _ 15 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 have _ VERB VB _ 15 advcl _ _ 21 a _ DET DT _ 22 det _ _ 22 cigarette _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 15 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 screens _ NOUN NNS _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 only _ ADV RB _ 9 advmod _ _ 6 two _ NUM CD _ 9 nummod _ _ 7 forlorn _ ADJ JJ _ 9 amod _ _ 8 blue _ ADJ JJ _ 9 amod _ _ 9 figures _ NOUN NNS _ 10 nsubj _ _ 10 remained _ VERB VBD _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 but _ CONJ CC _ 10 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 index _ NOUN NN _ 16 nsubj _ _ 15 had _ AUX VBD _ 16 aux _ _ 16 recovered _ VERB VBN _ 10 conj _ _ 17 a _ DET DT _ 19 det _ _ 18 few _ ADJ JJ _ 19 amod _ _ 19 points _ NOUN NNS _ 16 dobj _ _ 20 and _ CONJ CC _ 16 cc _ _ 21 was _ VERB VBD _ 16 conj _ _ 22 off _ ADV RB _ 21 advmod _ _ 23 about _ ADV RB _ 24 advmod _ _ 24 140 _ NUM CD _ 22 nmod:npmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 Because _ SCONJ IN _ 6 mark _ _ 3 Tokyo _ PROPN NNP _ 6 nsubj _ _ 4 did _ AUX VBD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 collapse _ VERB NN _ 8 advcl _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 let _ VERB VB _ 19 ccomp _ _ 9 's _ PART POS _ 10 nsubj _ _ 10 pick _ VERB VB _ 8 ccomp _ _ 11 up _ ADP RP _ 10 compound:prt _ _ 12 a _ DET DT _ 14 det _ _ 13 little _ ADJ JJ _ 14 amod _ _ 14 stock _ NOUN NN _ 10 dobj _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Smith _ PROPN NNP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 targeted _ VERB VBD _ 0 root _ _ 3 7,500 _ NUM CD _ 4 nummod _ _ 4 shares _ NOUN NNS _ 2 dobj _ _ 5 of _ ADP IN _ 6 case _ _ 6 Reuters _ PROPN NNP _ 4 nmod _ _ 7 and _ CONJ CC _ 2 cc _ _ 8 punched _ VERB VBD _ 2 conj _ _ 9 a _ DET DT _ 10 det _ _ 10 button _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 call _ VERB VB _ 8 advcl _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 on _ ADP IN _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 screen _ NOUN NN _ 12 nmod _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 dealers _ NOUN NNS _ 21 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 price _ NOUN NN _ 21 compound _ _ 21 quotes _ NOUN NNS _ 12 dobj _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 vivid _ ADJ JJ _ 4 amod _ _ 3 yellow _ ADJ JJ _ 4 amod _ _ 4 figures _ NOUN NNS _ 5 nsubj _ _ 5 showed _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 best _ ADJ JJS _ 8 amod _ _ 8 price _ NOUN NN _ 5 dobj _ _ 9 at _ ADP IN _ 11 case _ _ 10 845 _ NUM CD _ 11 nummod _ _ 11 pence _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 13.27 _ NUM CD _ 11 appos _ _ 16 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 17 and _ CONJ CC _ 5 cc _ _ 18 Mr. _ PROPN NNP _ 19 compound _ _ 19 Smith _ PROPN NNP _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 traders _ NOUN NNS _ 22 nsubj _ _ 22 started _ VERB VBD _ 5 conj _ _ 23 putting _ VERB VBG _ 22 xcomp _ _ 24 out _ ADP RP _ 23 compound:prt _ _ 25 feelers _ NOUN NNS _ 23 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 sensed _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 serious _ ADJ JJ _ 7 amod _ _ 7 buyer _ NOUN NN _ 4 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 day _ NOUN NN _ 7 nmod _ _ 11 dominated _ VERB VBN _ 10 acl _ _ 12 by _ ADP IN _ 13 case _ _ 13 selling _ NOUN VBG _ 11 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 quotes _ NOUN NNS _ 19 nsubj _ _ 18 immediately _ ADV RB _ 19 advmod _ _ 19 jumped _ VERB VBD _ 4 conj _ _ 20 to _ ADP TO _ 22 case _ _ 21 850 _ NUM CD _ 22 nummod _ _ 22 pence _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 When _ ADV WRB _ 4 advmod _ _ 3 I _ PRON PRP _ 4 nsubj _ _ 4 want _ VERB VBP _ 9 advcl _ _ 5 to _ PART TO _ 6 mark _ _ 6 buy _ VERB VB _ 4 xcomp _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 run _ VERB VBP _ 22 ccomp _ _ 10 from _ ADP IN _ 11 case _ _ 11 you _ PRON PRP _ 9 nmod _ _ 12 -- _ PUNCT : _ 9 punct _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 keep _ VERB VBP _ 9 parataxis _ _ 15 changing _ VERB VBG _ 14 xcomp _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 prices _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 '' _ PUNCT '' _ 22 punct _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Smith _ PROPN NNP _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 very _ ADV RB _ 5 advmod _ _ 5 frustrating _ ADJ JJ _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 temporarily _ ADV RB _ 3 advmod _ _ 3 abandoned _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 search _ NOUN NN _ 3 dobj _ _ 6 for _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Reuters _ PROPN NNP _ 9 compound _ _ 9 shares _ NOUN NNS _ 5 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 was _ VERB VBD _ 8 cop _ _ 7 4:30 _ NUM CD _ 8 nummod _ _ 8 a.m. _ NOUN NN _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 New _ PROPN NNP _ 11 compound _ _ 11 York _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Smith _ PROPN NNP _ 16 nsubj _ _ 16 fielded _ VERB VBD _ 8 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 call _ NOUN NN _ 16 dobj _ _ 19 from _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 New _ PROPN NNP _ 23 compound _ _ 22 York _ PROPN NNP _ 23 compound _ _ 23 customer _ NOUN NN _ 18 nmod _ _ 24 wanting _ VERB VBG _ 23 acl _ _ 25 an _ DET DT _ 26 det _ _ 26 opinion _ NOUN NN _ 24 dobj _ _ 27 on _ ADP IN _ 31 case _ _ 28 the _ DET DT _ 31 det _ _ 29 British _ ADJ JJ _ 31 amod _ _ 30 stock _ NOUN NN _ 31 compound _ _ 31 market _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 which _ PRON WDT _ 36 nsubj _ _ 34 had _ AUX VBD _ 36 aux _ _ 35 been _ AUX VBN _ 36 aux _ _ 36 having _ VERB VBG _ 31 acl:relcl _ _ 37 troubles _ NOUN NNS _ 36 dobj _ _ 38 of _ ADP IN _ 40 case _ _ 39 its _ PRON PRP$ _ 40 nmod:poss _ _ 40 own _ ADJ JJ _ 37 nmod _ _ 41 even _ ADV RB _ 48 advmod _ _ 42 before _ ADP IN _ 48 case _ _ 43 Friday _ PROPN NNP _ 48 nmod:poss _ _ 44 's _ PART POS _ 43 case _ _ 45 New _ PROPN NNP _ 48 compound _ _ 46 York _ PROPN NNP _ 48 compound _ _ 47 market _ NOUN NN _ 48 compound _ _ 48 break _ NOUN NN _ 36 nmod _ _ 49 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 Fundamentally _ ADV RB _ 3 advmod _ _ 3 dangerous _ ADJ JJ _ 0 root _ _ 4 ... _ PUNCT : _ 3 punct _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 '' _ PUNCT '' _ 3 punct _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Smith _ PROPN NNP _ 9 nsubj _ _ 9 said _ VERB VBD _ 3 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 almost _ ADV RB _ 14 advmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 whisper _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 `` _ PUNCT `` _ 3 punct _ _ 17 ... _ PUNCT : _ 3 punct _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 fundamentally _ ADV RB _ 20 advmod _ _ 20 weak _ ADJ JJ _ 3 dep _ _ 21 ... _ PUNCT : _ 20 punct _ _ 22 fairly _ ADV RB _ 23 advmod _ _ 23 vulnerable _ ADJ JJ _ 20 dep _ _ 24 still _ ADV RB _ 23 advmod _ _ 25 ... _ PUNCT : _ 20 punct _ _ 26 extremely _ ADV RB _ 28 advmod _ _ 27 dangerously _ ADV RB _ 28 advmod _ _ 28 poised _ VERB VBN _ 20 dep _ _ 29 ... _ PUNCT : _ 3 punct _ _ 1 we _ PRON PRP _ 6 nsubj _ _ 2 're _ VERB VBP _ 6 cop _ _ 3 in _ ADP IN _ 6 case _ _ 4 for _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 lot _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 turbulence _ NOUN NN _ 6 nmod _ _ 9 ... _ PUNCT : _ 6 punct _ _ 10 . _ PUNCT . _ 6 punct _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 right _ ADJ RB _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 midday _ NOUN NN _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 London _ PROPN NNP _ 6 compound _ _ 6 market _ NOUN NN _ 10 nsubj _ _ 7 was _ VERB VBD _ 10 cop _ _ 8 in _ ADP IN _ 10 case _ _ 9 full _ ADJ JJ _ 10 amod _ _ 10 retreat _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ AUX VBZ _ 4 aux _ _ 4 falling _ VERB VBG _ 10 ccomp _ _ 5 like _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 stone _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 Danny _ PROPN NNP _ 12 compound _ _ 12 Linger _ PROPN VB _ 10 nsubj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 16 det _ _ 15 pit _ NOUN NN _ 16 compound _ _ 16 trader _ NOUN NN _ 12 appos _ _ 17 who _ PRON WP _ 19 nsubj _ _ 18 was _ AUX VBD _ 19 aux _ _ 19 standing _ VERB VBG _ 16 acl:relcl _ _ 20 outside _ ADP IN _ 26 case _ _ 21 the _ DET DT _ 26 det _ _ 22 London _ PROPN NNP _ 26 compound _ _ 23 International _ PROPN NNP _ 26 compound _ _ 24 Financial _ PROPN NNP _ 26 compound _ _ 25 Futures _ PROPN NNPS _ 26 compound _ _ 26 Exchange _ PROPN NNP _ 19 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 Only _ ADV RB _ 2 advmod _ _ 2 half _ NOUN PDT _ 6 nummod _ _ 3 the _ DET DT _ 6 det _ _ 4 usual _ ADJ JJ _ 6 amod _ _ 5 lunchtime _ NOUN NN _ 6 compound _ _ 6 crowd _ NOUN NN _ 7 nsubj _ _ 7 gathered _ VERB VBD _ 0 root _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 tony _ ADJ JJ _ 11 amod _ _ 11 Corney _ PROPN NNP _ 7 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Barrow _ PROPN NNP _ 15 compound _ _ 14 wine _ NOUN NN _ 15 compound _ _ 15 bar _ NOUN NN _ 11 conj _ _ 16 on _ ADP IN _ 19 case _ _ 17 Old _ PROPN JJ _ 19 compound _ _ 18 Broad _ PROPN NNP _ 19 compound _ _ 19 Street _ PROPN NNP _ 11 nmod _ _ 20 nearby _ ADV RB _ 11 advmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Conversation _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 subdued _ ADJ VBN _ 0 root _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 most _ ADJ JJS _ 6 amod _ _ 6 patrons _ NOUN NNS _ 7 nsubj _ _ 7 watched _ VERB VBD _ 3 advcl _ _ 8 the _ DET DT _ 11 det _ _ 9 latest _ ADJ JJS _ 11 amod _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 statistics _ NOUN NNS _ 7 dobj _ _ 12 on _ ADP IN _ 13 case _ _ 13 television _ NOUN NN _ 7 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 12:49 _ NUM CD _ 3 nummod _ _ 3 p.m. _ NOUN RB _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 index _ NOUN NN _ 7 nsubj _ _ 7 hit _ VERB VBD _ 0 root _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 low _ ADJ JJ _ 7 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 2029.7 _ NUM CD _ 9 amod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 off _ ADP RB _ 15 case _ _ 14 204.2 _ NUM CD _ 15 nummod _ _ 15 points _ NOUN NNS _ 9 advmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 France _ PROPN NNP _ 3 nsubj _ _ 3 opened _ VERB VBD _ 33 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 limit _ NOUN NN _ 3 dobj _ _ 6 down _ ADV RB _ 3 advmod _ _ 7 , _ PUNCT , _ 16 punct _ _ 8 off _ ADP RB _ 12 case _ _ 9 at _ ADP IN _ 10 case _ _ 10 least _ ADJ JJS _ 11 nmod:npmod _ _ 11 10 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 16 dep _ _ 13 if _ SCONJ IN _ 16 mark _ _ 14 you _ PRON PRP _ 16 nsubj _ _ 15 could _ AUX MD _ 16 aux _ _ 16 calculate _ VERB VB _ 3 parataxis _ _ 17 the _ DET DT _ 18 det _ _ 18 index _ NOUN NN _ 16 dobj _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 which _ PRON WDT _ 22 dobj _ _ 21 you _ PRON PRP _ 22 nsubj _ _ 22 could _ AUX MD _ 16 dep _ _ 23 n't _ PART RB _ 22 neg _ _ 24 , _ PUNCT , _ 33 punct _ _ 25 '' _ PUNCT '' _ 33 punct _ _ 26 Mr. _ PROPN NNP _ 27 compound _ _ 27 Clark _ PROPN NNP _ 33 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 the _ DET DT _ 31 det _ _ 30 Shearson _ PROPN NNP _ 31 compound _ _ 31 trader _ NOUN NN _ 27 appos _ _ 32 , _ PUNCT , _ 27 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 early _ ADV RB _ 33 advmod _ _ 35 in _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 afternoon _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 33 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 Spain _ PROPN NNP _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 down _ ADV RB _ 7 advmod _ _ 5 10 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 nmod:npmod _ _ 7 and _ CONJ CC _ 3 advmod _ _ 8 suspended _ VERB VBN _ 7 conj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 Sweden _ PROPN NNP _ 11 nsubj _ _ 11 's _ VERB POS _ 3 parataxis _ _ 12 down _ ADV RP _ 11 advmod _ _ 13 8 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 nmod:npmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 Norway _ PROPN NNP _ 18 dep _ _ 17 11 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 11 parataxis _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 7 nsubjpass _ _ 3 has _ AUX VBZ _ 7 aux _ _ 4 been _ AUX VBN _ 7 auxpass _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 badly _ ADV RB _ 7 advmod _ _ 7 damaged _ VERB VBN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 9 '' _ PUNCT '' _ 7 punct _ _ 1 As _ SCONJ IN _ 11 mark _ _ 2 2:30 _ NUM CD _ 3 nummod _ _ 3 p.m. _ NOUN RB _ 11 nsubj _ _ 4 -- _ PUNCT : _ 3 punct _ _ 5 Wall _ PROPN NNP _ 6 compound _ _ 6 Street _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 opening _ VERB NN _ 9 amod _ _ 9 time _ NOUN NN _ 3 dep _ _ 10 -- _ PUNCT : _ 3 punct _ _ 11 neared _ VERB VBD _ 17 advcl _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 Shearson _ PROPN NNP _ 14 compound _ _ 14 traders _ NOUN NNS _ 17 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 salesmen _ NOUN NNS _ 14 conj _ _ 17 traded _ VERB VBD _ 0 root _ _ 18 bets _ NOUN NNS _ 17 dobj _ _ 19 on _ SCONJ IN _ 27 mark _ _ 20 how _ ADV WRB _ 21 advmod _ _ 21 low _ ADJ JJ _ 27 advmod _ _ 22 the _ DET DT _ 25 det _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 market _ NOUN NN _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 open _ VERB VB _ 18 acl _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 center _ NOUN NN _ 16 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 floor _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 16 punct _ _ 9 chief _ ADJ JJ _ 12 amod _ _ 10 trader _ NOUN NN _ 12 compound _ _ 11 Roger _ PROPN NNP _ 12 compound _ _ 12 Streeter _ PROPN NNP _ 16 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 colleagues _ NOUN NNS _ 12 conj _ _ 16 scrambled _ VERB VBD _ 0 root _ _ 17 for _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 telephones _ NOUN NNS _ 16 nmod _ _ 20 as _ ADV RB _ 21 advmod _ _ 21 soon _ ADV RB _ 16 advmod _ _ 22 as _ SCONJ IN _ 27 mark _ _ 23 the _ DET DT _ 26 det _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 York _ PROPN NNP _ 26 compound _ _ 26 market _ NOUN NN _ 27 nsubj _ _ 27 opened _ VERB VBD _ 21 advcl _ _ 28 -- _ PUNCT : _ 27 punct _ _ 29 plummeting _ VERB VBG _ 27 parataxis _ _ 30 more _ ADV JJR _ 32 advmod _ _ 31 than _ ADP IN _ 30 mwe _ _ 32 60 _ NUM CD _ 33 nummod _ _ 33 points _ NOUN NNS _ 29 dobj _ _ 34 in _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 38 det _ _ 36 first _ ADJ JJ _ 38 amod _ _ 37 few _ ADJ JJ _ 38 amod _ _ 38 minutes _ NOUN NNS _ 29 nmod _ _ 39 . _ PUNCT . _ 16 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 saw _ VERB VBD _ 0 root _ _ 3 an _ DET DT _ 4 det _ _ 4 opportunity _ NOUN NN _ 2 dobj _ _ 5 created _ VERB VBN _ 4 acl _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 sell-off _ NOUN NN _ 5 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 Wall _ PROPN NNP _ 4 compound _ _ 3 Street _ PROPN NNP _ 4 compound _ _ 4 traders _ NOUN NNS _ 5 nsubj _ _ 5 dumped _ VERB VBD _ 19 advcl _ _ 6 American _ PROPN JJ _ 8 compound _ _ 7 Depositary _ PROPN NNP _ 8 compound _ _ 8 Receipts _ PROPN NNPS _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 Jaguar _ PROPN NNP _ 11 compound _ _ 11 PLC _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Streeter _ PROPN NNP _ 19 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 trader _ NOUN NN _ 18 compound _ _ 17 Sam _ PROPN NNP _ 18 compound _ _ 18 Ruiz _ PROPN NNP _ 14 conj _ _ 19 bought _ VERB VBD _ 0 root _ _ 20 them _ PRON PRP _ 19 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 resell _ VERB VB _ 19 advcl _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.K _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 Investors _ NOUN NNS _ 4 nsubj _ _ 2 here _ ADV RB _ 1 advmod _ _ 3 still _ ADV RB _ 4 advmod _ _ 4 expect _ VERB VB _ 0 root _ _ 5 Ford _ PROPN NNP _ 7 compound _ _ 6 Motor _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 4 dobj _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 General _ PROPN NNP _ 11 compound _ _ 10 Motors _ PROPN NNPS _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 7 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 bid _ VERB VB _ 4 xcomp _ _ 14 for _ ADP IN _ 15 case _ _ 15 Jaguar _ PROPN NNP _ 13 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Suddenly _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 after _ ADP IN _ 6 case _ _ 4 about _ ADV IN _ 5 advmod _ _ 5 45 _ NUM CD _ 6 nummod _ _ 6 minutes _ NOUN NNS _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 U.S. _ PROPN NNP _ 10 compound _ _ 10 markets _ NOUN NNS _ 11 nsubj _ _ 11 rallied _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 MMI _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 gone _ VERB VBN _ 9 ccomp _ _ 6 better _ ADV RB _ 5 xcomp _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 one _ NUM CD _ 11 nummod _ _ 11 trader _ NOUN NN _ 9 nsubj _ _ 12 at _ ADP IN _ 16 case _ _ 13 about _ ADV IN _ 16 advmod _ _ 14 3:15 _ NUM CD _ 16 nummod _ _ 15 London _ PROPN NNP _ 16 compound _ _ 16 time _ NOUN NN _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 as _ SCONJ IN _ 26 mark _ _ 19 the _ DET DT _ 24 det _ _ 20 U.S. _ PROPN NNP _ 24 compound _ _ 21 Major _ PROPN NNP _ 24 compound _ _ 22 Markets _ PROPN NNP _ 24 compound _ _ 23 Index _ PROPN NNP _ 24 compound _ _ 24 contract _ NOUN NN _ 26 nsubj _ _ 25 suddenly _ ADV RB _ 26 advmod _ _ 26 indicated _ VERB VBD _ 9 dep _ _ 27 a _ DET DT _ 28 det _ _ 28 turnabout _ NOUN NN _ 26 dobj _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 Wall _ PROPN NNP _ 3 compound _ _ 3 Street _ PROPN NNP _ 4 nsubj _ _ 4 strengthened _ VERB VBD _ 10 advcl _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 London _ PROPN NNP _ 9 compound _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 room _ NOUN NN _ 10 nsubj _ _ 10 went _ VERB VBD _ 0 root _ _ 11 wild _ ADJ JJ _ 10 xcomp _ _ 12 . _ PUNCT . _ 10 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 shouted _ VERB VBD _ 0 root _ _ 3 as _ SCONJ IN _ 6 mark _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 screens _ NOUN NNS _ 6 nsubj _ _ 6 posted _ VERB VBD _ 2 advcl _ _ 7 an _ DET DT _ 9 det _ _ 8 ever-narrowing _ ADJ JJ _ 9 amod _ _ 9 loss _ NOUN NN _ 6 dobj _ _ 10 on _ ADP IN _ 12 case _ _ 11 Wall _ PROPN NNP _ 12 compound _ _ 12 Street _ PROPN NNP _ 9 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Then _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 minutes _ NOUN NNS _ 5 nmod:npmod _ _ 5 later _ ADV RB _ 10 advmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 10 nsubj _ _ 9 suddenly _ ADV RB _ 10 advmod _ _ 10 rebounded _ VERB VBD _ 0 root _ _ 11 to _ ADP TO _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 gain _ NOUN NN _ 10 nmod _ _ 14 on _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Rally _ NOUN NNP _ 9 dep _ _ 3 ! _ PUNCT . _ 2 punct _ _ 4 Rally _ NOUN NNP _ 2 dep _ _ 5 ! _ PUNCT . _ 4 punct _ _ 6 Rally _ NOUN NNP _ 2 dep _ _ 7 ! _ PUNCT . _ 6 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 Shearson _ PROPN NNP _ 13 compound _ _ 11 trader _ NOUN NN _ 13 compound _ _ 12 Andy _ PROPN NNP _ 13 compound _ _ 13 Rosen _ PROPN NNP _ 9 nsubj _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 selling _ VERB VBG _ 9 advcl _ _ 16 more _ ADJ JJR _ 18 amod _ _ 17 Jaguar _ PROPN NNP _ 18 compound _ _ 18 shares _ NOUN NNS _ 15 dobj _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 This _ PRON DT _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 panic _ NOUN NN _ 5 compound _ _ 5 buying _ NOUN VBG _ 0 root _ _ 6 ! _ PUNCT . _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 London _ PROPN NNP _ 4 compound _ _ 4 market _ NOUN NN _ 5 nsubj _ _ 5 rallied _ VERB VBD _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 some _ DET DT _ 8 nsubj _ _ 8 wondered _ VERB VBD _ 0 root _ _ 9 whether _ SCONJ IN _ 19 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 weekend _ NOUN NN _ 19 nsubj _ _ 12 of _ ADP IN _ 13 case _ _ 13 worrying _ VERB VBG _ 11 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 jitters _ NOUN NNS _ 13 conj _ _ 16 had _ AUX VBD _ 19 aux _ _ 17 been _ VERB VBN _ 19 cop _ _ 18 worth _ ADJ IN _ 19 case _ _ 19 it _ PRON PRP _ 8 ccomp _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 London _ PROPN NNP _ 3 compound _ _ 3 index _ NOUN NN _ 4 nsubj _ _ 4 closed _ VERB VBD _ 0 root _ _ 5 at _ ADP IN _ 6 case _ _ 6 2163.4 _ NUM CD _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 high _ NOUN JJ _ 6 appos _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 day _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 off _ ADP IN _ 15 case _ _ 15 70.5 _ NUM CD _ 4 advmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 or _ CONJ CC _ 15 cc _ _ 18 about _ ADV RB _ 19 advmod _ _ 19 3.3 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 15 conj _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 Ambassador _ PROPN NNP _ 3 compound _ _ 2 Paul _ PROPN NNP _ 3 compound _ _ 3 Nitze _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 statement _ NOUN NN _ 53 nsubj _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 Notable _ PROPN JJ _ 5 dep _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Quotable _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 Sept. _ PROPN NNP _ 7 nmod:tmod _ _ 12 20 _ NUM CD _ 11 nummod _ _ 13 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 `` _ PUNCT `` _ 7 punct _ _ 16 If _ SCONJ IN _ 18 mark _ _ 17 you _ PRON PRP _ 18 nsubj _ _ 18 have _ VERB VBP _ 40 advcl _ _ 19 a _ DET DT _ 21 det _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 people _ NOUN NNS _ 18 dobj _ _ 22 working _ VERB VBG _ 21 acl _ _ 23 for _ ADP IN _ 24 case _ _ 24 you _ PRON PRP _ 22 nmod _ _ 25 , _ PUNCT , _ 40 punct _ _ 26 every _ DET DT _ 28 det _ _ 27 bad _ ADJ JJ _ 28 amod _ _ 28 thing _ NOUN NN _ 40 nsubj _ _ 29 that _ PRON WDT _ 30 nsubj _ _ 30 has _ VERB VBZ _ 28 acl:relcl _ _ 31 one _ NUM CD _ 32 nummod _ _ 32 chance _ NOUN NN _ 30 dobj _ _ 33 in _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 million _ NUM CD _ 32 nmod _ _ 36 of _ SCONJ IN _ 37 mark _ _ 37 going _ VERB VBG _ 32 acl _ _ 38 wrong _ NOUN JJ _ 37 advmod _ _ 39 will _ AUX MD _ 40 aux _ _ 40 go _ VERB VB _ 5 dep _ _ 41 wrong _ ADJ JJ _ 40 advmod _ _ 42 at _ ADP IN _ 46 advmod _ _ 43 least _ ADJ JJS _ 42 mwe _ _ 44 once _ ADP RB _ 46 case _ _ 45 a _ DET DT _ 46 det _ _ 46 year _ NOUN NN _ 40 advmod _ _ 47 , _ PUNCT , _ 5 punct _ _ 48 '' _ PUNCT '' _ 5 punct _ _ 49 is _ VERB VBZ _ 53 cop _ _ 50 a _ DET DT _ 53 det _ _ 51 pretty _ ADV RB _ 52 advmod _ _ 52 negative _ ADJ JJ _ 53 amod _ _ 53 way _ NOUN NN _ 0 root _ _ 54 of _ SCONJ IN _ 55 mark _ _ 55 looking _ VERB VBG _ 53 acl _ _ 56 at _ ADP IN _ 57 case _ _ 57 things _ NOUN NNS _ 55 nmod _ _ 58 . _ PUNCT . _ 53 punct _ _ 1 Is _ VERB VBZ _ 6 cop _ _ 2 n't _ PART RB _ 6 neg _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 just _ ADV RB _ 6 advmod _ _ 5 as _ ADV IN _ 6 advmod _ _ 6 fair _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 say _ VERB VB _ 6 dep _ _ 9 that _ SCONJ IN _ 34 mark _ _ 10 if _ SCONJ IN _ 12 mark _ _ 11 you _ PRON PRP _ 12 nsubj _ _ 12 have _ VERB VBP _ 34 advcl _ _ 13 a _ DET DT _ 15 det _ _ 14 million _ NUM CD _ 15 nummod _ _ 15 people _ NOUN NNS _ 12 dobj _ _ 16 working _ VERB VBG _ 15 acl _ _ 17 for _ ADP IN _ 18 case _ _ 18 you _ PRON PRP _ 16 nmod _ _ 19 , _ PUNCT , _ 34 punct _ _ 20 every _ DET DT _ 22 det _ _ 21 good _ ADJ JJ _ 22 amod _ _ 22 thing _ NOUN NN _ 34 nsubj _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 has _ VERB VBZ _ 22 acl:relcl _ _ 25 one _ NUM CD _ 26 nummod _ _ 26 chance _ NOUN NN _ 24 dobj _ _ 27 in _ ADP IN _ 29 case _ _ 28 a _ DET DT _ 29 det _ _ 29 million _ NUM CD _ 26 nmod _ _ 30 of _ SCONJ IN _ 31 mark _ _ 31 going _ VERB VBG _ 26 acl _ _ 32 right _ NOUN RB _ 31 advmod _ _ 33 will _ AUX MD _ 34 aux _ _ 34 go _ VERB VB _ 8 ccomp _ _ 35 right _ ADV RB _ 34 advmod _ _ 36 at _ ADP IN _ 40 advmod _ _ 37 least _ ADJ JJS _ 36 mwe _ _ 38 once _ ADP RB _ 40 case _ _ 39 a _ DET DT _ 40 det _ _ 40 year _ NOUN NN _ 34 advmod _ _ 41 ? _ PUNCT . _ 6 punct _ _ 1 Do _ AUX VBP _ 6 aux _ _ 2 n't _ PART RB _ 6 neg _ _ 3 be _ VERB VB _ 6 cop _ _ 4 such _ ADJ JJ _ 6 amod _ _ 5 a _ DET DT _ 6 det _ _ 6 pessimist _ NOUN NN _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Ambassador _ PROPN NNP _ 6 dep _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 Frank _ PROPN NNP _ 2 compound _ _ 2 Tremdine _ PROPN NNP _ 0 root _ _ 1 The _ DET DT _ 4 det _ _ 2 House _ PROPN NNP _ 4 compound _ _ 3 Aviation _ PROPN NNP _ 4 compound _ _ 4 Subcommittee _ PROPN NNP _ 5 nsubj _ _ 5 approved _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 bill _ NOUN NN _ 5 dobj _ _ 8 that _ PRON WDT _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 give _ VERB VB _ 7 acl:relcl _ _ 11 the _ DET DT _ 13 det _ _ 12 transportation _ NOUN NN _ 13 compound _ _ 13 secretary _ NOUN NN _ 10 iobj _ _ 14 authority _ NOUN NN _ 10 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 review _ VERB VB _ 14 acl _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 approve _ VERB VB _ 16 conj _ _ 19 leveraged _ VERB JJ _ 20 amod _ _ 20 buy-outs _ NOUN NNS _ 16 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 major _ ADJ JJ _ 24 amod _ _ 23 U.S. _ PROPN NNP _ 24 compound _ _ 24 airlines _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 collapsed _ VERB JJ _ 3 amod _ _ 3 plan _ NOUN NN _ 14 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 acquire _ VERB VB _ 3 acl _ _ 6 UAL _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 5 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 parent _ NOUN NN _ 7 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 United _ PROPN NNP _ 12 compound _ _ 12 Airlines _ PROPN NNPS _ 9 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 spurred _ VERB VBN _ 0 root _ _ 15 quick _ ADJ JJ _ 16 amod _ _ 16 action _ NOUN NN _ 14 dobj _ _ 17 on _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 legislation _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 introduced _ VERB VBN _ 19 dep _ _ 22 Wednesday _ PROPN NNP _ 21 nmod:tmod _ _ 23 and _ CONJ CC _ 21 cc _ _ 24 approved _ VERB VBN _ 21 conj _ _ 25 by _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 subcommittee _ NOUN NN _ 24 nmod _ _ 28 on _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 voice _ NOUN NN _ 31 compound _ _ 31 vote _ NOUN NN _ 24 nmod _ _ 32 yesterday _ NOUN NN _ 24 nmod:tmod _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 taken _ VERB VBN _ 4 xcomp _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 by _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Public _ PROPN NNP _ 12 compound _ _ 12 Works _ PROPN NNP _ 7 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Transportation _ PROPN NNP _ 15 compound _ _ 15 Committee _ PROPN NNP _ 12 conj _ _ 16 tomorrow _ NOUN NN _ 7 nmod:tmod _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 and _ CONJ CC _ 4 cc _ _ 19 a _ DET DT _ 21 det _ _ 20 floor _ NOUN NN _ 21 compound _ _ 21 vote _ NOUN NN _ 27 nsubjpass _ _ 22 by _ ADP IN _ 24 case _ _ 23 next _ ADJ JJ _ 24 amod _ _ 24 week _ NOUN NN _ 21 nmod _ _ 25 will _ AUX MD _ 27 aux _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 urged _ VERB VBN _ 4 conj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 3 nsubj _ _ 3 drew _ VERB VBD _ 0 root _ _ 4 criticism _ NOUN NN _ 3 dobj _ _ 5 from _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Bush _ PROPN NNP _ 8 compound _ _ 8 administration _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 a _ DET DT _ 12 det _ _ 11 parting _ VERB NN _ 12 amod _ _ 12 shot _ NOUN NN _ 4 conj _ _ 13 from _ ADP IN _ 16 case _ _ 14 financier _ NOUN NN _ 16 compound _ _ 15 Donald _ PROPN NNP _ 16 compound _ _ 16 Trump _ PROPN NNP _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 who _ PRON WP _ 20 nsubj _ _ 19 yesterday _ NOUN NN _ 20 dep _ _ 20 withdrew _ VERB VBD _ 16 acl:relcl _ _ 21 his _ PRON PRP$ _ 23 nmod:poss _ _ 22 takeover _ NOUN NN _ 23 compound _ _ 23 bid _ NOUN NN _ 20 dobj _ _ 24 for _ ADP IN _ 26 case _ _ 25 AMR _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 23 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 parent _ NOUN NN _ 26 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 American _ PROPN NNP _ 32 compound _ _ 32 Airlines _ PROPN NNPS _ 29 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 letter _ NOUN NN _ 17 nmod _ _ 4 to _ ADP TO _ 8 case _ _ 5 subcommittee _ NOUN NN _ 8 compound _ _ 6 Chairman _ PROPN NNP _ 8 compound _ _ 7 James _ PROPN NNP _ 8 compound _ _ 8 Oberstar _ PROPN NNP _ 3 nmod _ _ 9 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 10 D. _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Minn. _ PROPN NNP _ 10 dep _ _ 13 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Trump _ PROPN NNP _ 17 nsubj _ _ 17 criticized _ VERB VBD _ 0 root _ _ 18 the _ DET DT _ 19 det _ _ 19 bill _ NOUN NN _ 17 dobj _ _ 20 as _ ADP IN _ 23 case _ _ 21 an _ DET DT _ 23 det _ _ 22 explicit _ ADJ JJ _ 23 amod _ _ 23 effort _ NOUN NN _ 17 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 thwart _ VERB VB _ 23 acl _ _ 26 his _ PRON PRP$ _ 27 nmod:poss _ _ 27 bid _ NOUN NN _ 25 dobj _ _ 28 for _ ADP IN _ 29 case _ _ 29 AMR _ PROPN NNP _ 27 nmod _ _ 30 , _ PUNCT , _ 17 punct _ _ 31 and _ CONJ CC _ 17 cc _ _ 32 said _ VERB VBD _ 17 conj _ _ 33 it _ PRON PRP _ 34 nsubj _ _ 34 contributed _ VERB VBD _ 32 ccomp _ _ 35 to _ ADP TO _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 collapse _ NOUN NN _ 34 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 deal _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 17 punct _ _ 1 Elaine _ PROPN NNP _ 2 compound _ _ 2 Chao _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 deputy _ NOUN NN _ 6 compound _ _ 5 transportation _ NOUN NN _ 6 compound _ _ 6 secretary _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 also _ ADV RB _ 9 advmod _ _ 9 sent _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 letter _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 express _ VERB VB _ 11 acl _ _ 14 the _ DET DT _ 15 det _ _ 15 administration _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 opposition _ NOUN NN _ 13 dobj _ _ 18 to _ ADP TO _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 bill _ NOUN NN _ 17 nmod _ _ 21 `` _ PUNCT `` _ 20 punct _ _ 22 in _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 present _ ADJ JJ _ 25 amod _ _ 25 form _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 9 punct _ _ 27 '' _ PUNCT '' _ 9 punct _ _ 1 Rep. _ PROPN NNP _ 2 compound _ _ 2 Oberstar _ PROPN NNP _ 3 nsubj _ _ 3 brushed _ VERB VBD _ 0 root _ _ 4 off _ ADP RP _ 3 compound:prt _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Trump _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 allegations _ NOUN NNS _ 3 dobj _ _ 9 as _ ADP IN _ 12 case _ _ 10 an _ DET DT _ 12 det _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 excuse _ NOUN NN _ 3 nmod _ _ 13 for _ SCONJ IN _ 17 mark _ _ 14 his _ PRON PRP$ _ 16 nmod:poss _ _ 15 own _ ADJ JJ _ 16 amod _ _ 16 deal _ NOUN NN _ 17 nsubj _ _ 17 failing _ VERB VBG _ 12 acl _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 fact _ NOUN NN _ 18 nsubj _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 other _ ADJ JJ _ 9 amod _ _ 9 letter _ NOUN NN _ 12 nsubj _ _ 10 had _ AUX VBD _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 come _ VERB VBN _ 5 ccomp _ _ 13 from _ ADP IN _ 17 case _ _ 14 Transportation _ PROPN NNP _ 17 compound _ _ 15 Secretary _ PROPN NNP _ 17 compound _ _ 16 Samuel _ PROPN NNP _ 17 compound _ _ 17 Skinner _ PROPN NNP _ 12 nmod _ _ 18 indicated _ VERB VBD _ 3 ccomp _ _ 19 there _ PRON EX _ 20 expl _ _ 20 is _ VERB VBZ _ 18 ccomp _ _ 21 `` _ PUNCT `` _ 20 punct _ _ 22 wiggle _ NOUN NN _ 23 compound _ _ 23 room _ NOUN NN _ 20 nsubj _ _ 24 '' _ PUNCT '' _ 20 punct _ _ 25 in _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 27 det _ _ 27 administration _ NOUN NN _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 position _ NOUN NN _ 20 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Oberstar _ PROPN NNP _ 8 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 other _ ADJ JJ _ 6 amod _ _ 5 committee _ NOUN NN _ 6 compound _ _ 6 members _ NOUN NNS _ 2 conj _ _ 7 repeatedly _ ADV RB _ 8 advmod _ _ 8 stressed _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 legislation _ NOUN NN _ 15 nsubj _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 n't _ PART RB _ 15 neg _ _ 14 a _ DET DT _ 15 det _ _ 15 response _ NOUN NN _ 8 ccomp _ _ 16 to _ ADP TO _ 20 case _ _ 17 any _ DET DT _ 20 det _ _ 18 particular _ ADJ JJ _ 20 amod _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 situation _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 cited _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 8 det _ _ 5 UAL _ PROPN NNP _ 8 compound _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 AMR _ PROPN NNP _ 5 conj _ _ 8 examples _ NOUN NNS _ 3 dobj _ _ 9 as _ ADP IN _ 10 case _ _ 10 reasons _ NOUN NNS _ 3 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 move _ VERB VB _ 10 acl _ _ 13 quickly _ ADV RB _ 12 advmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 enact _ VERB VB _ 12 xcomp _ _ 16 this _ DET DT _ 17 det _ _ 17 legislation _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Aides _ NOUN NNS _ 8 nsubj _ _ 2 both _ DET CC _ 5 dep _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 House _ PROPN NNP _ 1 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Senate _ PROPN NNP _ 5 conj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 withdrawal _ NOUN NN _ 19 nsubj _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Trump _ PROPN NNP _ 14 compound _ _ 14 bid _ NOUN NN _ 10 nmod _ _ 15 for _ ADP IN _ 16 case _ _ 16 AMR _ PROPN NNP _ 14 nmod _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 likely _ ADJ JJ _ 8 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 deflate _ VERB VB _ 19 xcomp _ _ 22 efforts _ NOUN NNS _ 21 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 push _ VERB VB _ 22 acl _ _ 25 the _ DET DT _ 26 det _ _ 26 legislation _ NOUN NN _ 24 dobj _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 It _ PRON PRP _ 8 nsubj _ _ 3 's _ VERB VBZ _ 8 cop _ _ 4 still _ ADV RB _ 8 advmod _ _ 5 on _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 fast _ ADJ JJ _ 8 amod _ _ 8 track _ NOUN NN _ 18 ccomp _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 we _ PRON PRP _ 12 nsubj _ _ 11 still _ ADV RB _ 12 advmod _ _ 12 want _ VERB VBP _ 8 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 do _ VERB VB _ 12 xcomp _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 one _ NUM CD _ 21 nummod _ _ 20 Senate _ PROPN NNP _ 21 compound _ _ 21 aide _ NOUN NN _ 18 nsubj _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 aimed _ VERB VBN _ 0 root _ _ 5 at _ SCONJ IN _ 6 mark _ _ 6 addressing _ VERB VBG _ 4 advcl _ _ 7 the _ DET DT _ 8 det _ _ 8 concern _ NOUN NN _ 6 dobj _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 an _ DET DT _ 11 det _ _ 11 airline _ NOUN NN _ 13 nsubj _ _ 12 might _ AUX MD _ 13 aux _ _ 13 sacrifice _ VERB VB _ 8 ccomp _ _ 14 costly _ ADJ JJ _ 16 amod _ _ 15 safety _ NOUN NN _ 16 compound _ _ 16 measures _ NOUN NNS _ 13 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 pay _ VERB VB _ 13 advcl _ _ 19 off _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 21 det _ _ 21 debt _ NOUN NN _ 18 dobj _ _ 22 incurred _ VERB VBN _ 21 acl _ _ 23 in _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 leveraged _ VERB JJ _ 26 amod _ _ 26 buy-out _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Currently _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 transportation _ NOUN NN _ 5 compound _ _ 5 secretary _ NOUN NN _ 8 nsubj _ _ 6 does _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 have _ VERB VB _ 0 root _ _ 9 clearly _ ADV RB _ 10 advmod _ _ 10 established _ VERB VBN _ 11 amod _ _ 11 authority _ NOUN NN _ 8 dobj _ _ 12 to _ ADP TO _ 14 case _ _ 13 block _ NOUN VB _ 14 compound _ _ 14 mergers _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 but _ CONJ CC _ 8 cc _ _ 17 can _ AUX MD _ 18 aux _ _ 18 take _ VERB VB _ 8 conj _ _ 19 the _ DET DT _ 21 det _ _ 20 drastic _ ADJ JJ _ 21 amod _ _ 21 step _ NOUN NN _ 18 dobj _ _ 22 of _ SCONJ IN _ 23 mark _ _ 23 revoking _ VERB VBG _ 21 acl _ _ 24 the _ DET DT _ 26 det _ _ 25 operating _ NOUN NN _ 26 compound _ _ 26 certificate _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 any _ DET DT _ 29 det _ _ 29 carrier _ NOUN NN _ 26 nmod _ _ 30 the _ DET DT _ 31 det _ _ 31 official _ NOUN NN _ 32 nsubj _ _ 32 considers _ VERB VBZ _ 29 acl:relcl _ _ 33 unfit _ ADJ JJ _ 32 xcomp _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 Supporters _ NOUN NNS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 legislation _ NOUN NN _ 1 nmod _ _ 5 view _ VERB VB _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 bill _ NOUN NN _ 5 dobj _ _ 8 as _ ADP IN _ 10 case _ _ 9 an _ DET DT _ 10 det _ _ 10 effort _ NOUN NN _ 5 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 add _ VERB VB _ 10 dep _ _ 13 stability _ NOUN NN _ 12 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 certainty _ NOUN NN _ 13 conj _ _ 16 to _ ADP TO _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 airline-acquisition _ ADJ JJ _ 19 amod _ _ 19 process _ NOUN NN _ 12 nmod _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 and _ CONJ CC _ 12 cc _ _ 22 to _ PART TO _ 23 mark _ _ 23 preserve _ VERB VB _ 12 conj _ _ 24 the _ DET DT _ 25 det _ _ 25 safety _ NOUN NN _ 23 dobj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 fitness _ NOUN NN _ 25 conj _ _ 28 of _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 industry _ NOUN NN _ 25 nmod _ _ 31 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 general _ ADJ JJ _ 7 advcl _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 bill _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 give _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 Transportation _ PROPN NNP _ 10 compound _ _ 10 Department _ PROPN NNP _ 7 iobj _ _ 11 a _ DET DT _ 14 det _ _ 12 30-day _ ADJ JJ _ 14 amod _ _ 13 review _ NOUN NN _ 14 compound _ _ 14 period _ NOUN NN _ 7 dobj _ _ 15 before _ SCONJ IN _ 32 mark _ _ 16 15 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 32 nsubjpass _ _ 18 or _ CONJ CC _ 19 cc _ _ 19 more _ ADJ JJR _ 17 nummod _ _ 20 of _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 voting _ NOUN NN _ 23 compound _ _ 23 stock _ NOUN NN _ 17 nmod _ _ 24 of _ ADP IN _ 29 case _ _ 25 a _ DET DT _ 29 det _ _ 26 major _ ADJ JJ _ 29 amod _ _ 27 U.S. _ PROPN NNP _ 29 compound _ _ 28 air _ NOUN NN _ 29 compound _ _ 29 carrier _ NOUN NN _ 23 nmod _ _ 30 could _ AUX MD _ 32 aux _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 acquired _ VERB VBN _ 7 advcl _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 would _ AUX MD _ 4 aux _ _ 4 require _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 acquiring _ VERB VBG _ 7 amod _ _ 7 party _ NOUN NN _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 notify _ VERB VB _ 4 ccomp _ _ 10 the _ DET DT _ 12 det _ _ 11 transportation _ NOUN NN _ 12 compound _ _ 12 secretary _ NOUN NN _ 9 dobj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 to _ PART TO _ 15 mark _ _ 15 provide _ VERB VB _ 9 conj _ _ 16 all _ DET DT _ 17 det _ _ 17 information _ NOUN NN _ 15 dobj _ _ 18 relevant _ ADJ JJ _ 17 amod _ _ 19 to _ ADP TO _ 20 mark _ _ 20 determining _ VERB VBG _ 18 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 intent _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 acquisition _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 allow _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 secretary _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 reject _ VERB VB _ 4 xcomp _ _ 9 a _ DET DT _ 10 det _ _ 10 buy-out _ NOUN NN _ 8 dobj _ _ 11 if _ SCONJ IN _ 17 mark _ _ 12 sufficient _ ADJ JJ _ 13 amod _ _ 13 information _ NOUN NN _ 17 nsubjpass _ _ 14 has _ AUX VBZ _ 17 aux _ _ 15 n't _ PART RB _ 17 neg _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 provided _ VERB VBN _ 8 advcl _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 or _ CONJ CC _ 17 cc _ _ 20 if _ SCONJ IN _ 24 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 buy-out _ NOUN NN _ 24 nsubj _ _ 23 is _ VERB VBZ _ 24 cop _ _ 24 likely _ ADJ JJ _ 17 conj _ _ 25 to _ PART TO _ 26 mark _ _ 26 weaken _ VERB VB _ 24 xcomp _ _ 27 the _ DET DT _ 28 det _ _ 28 carrier _ NOUN NN _ 26 dobj _ _ 29 financially _ ADV RB _ 26 advmod _ _ 30 , _ PUNCT , _ 26 punct _ _ 31 result _ VERB VBP _ 26 conj _ _ 32 in _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 substantial _ ADJ JJ _ 35 amod _ _ 35 reduction _ NOUN NN _ 31 nmod _ _ 36 in _ ADP IN _ 37 case _ _ 37 size _ NOUN NN _ 35 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 airline _ NOUN NN _ 37 nmod _ _ 41 through _ ADP IN _ 42 case _ _ 42 disposal _ NOUN NN _ 31 nmod _ _ 43 of _ ADP IN _ 44 case _ _ 44 assets _ NOUN NNS _ 42 nmod _ _ 45 , _ PUNCT , _ 26 punct _ _ 46 or _ CONJ CC _ 26 cc _ _ 47 give _ VERB VB _ 26 conj _ _ 48 control _ NOUN NN _ 47 dobj _ _ 49 to _ ADP TO _ 52 case _ _ 50 a _ DET DT _ 52 det _ _ 51 foreign _ ADJ JJ _ 52 amod _ _ 52 interest _ NOUN NN _ 47 nmod _ _ 53 . _ PUNCT . _ 4 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 more _ ADJ JJR _ 3 amod _ _ 3 information _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 needed _ VERB VBN _ 10 advcl _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 secretary _ NOUN NN _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 have _ VERB VB _ 0 root _ _ 11 authority _ NOUN NN _ 10 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 extend _ VERB VB _ 11 acl _ _ 14 the _ DET DT _ 16 det _ _ 15 review _ NOUN NN _ 16 compound _ _ 16 period _ NOUN NN _ 13 dobj _ _ 17 20 _ NUM CD _ 18 nummod _ _ 18 days _ NOUN NNS _ 13 nmod:tmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 All _ DET PDT _ 3 det:predet _ _ 2 the _ DET DT _ 3 det _ _ 3 witnesses _ NOUN NNS _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 both _ DET DT _ 6 cc:preconj _ _ 6 congressmen _ NOUN NNS _ 3 appos _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 industry _ NOUN NN _ 9 compound _ _ 9 experts _ NOUN NNS _ 6 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 expressed _ VERB VBD _ 0 root _ _ 12 support _ NOUN NN _ 11 dobj _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 bill _ NOUN NN _ 12 nmod _ _ 16 in _ SCONJ IN _ 19 mark _ _ 17 order _ NOUN NN _ 16 mwe _ _ 18 to _ PART TO _ 19 mark _ _ 19 prevent _ VERB VB _ 11 advcl _ _ 20 profiteers _ NOUN NNS _ 19 dobj _ _ 21 from _ SCONJ IN _ 22 mark _ _ 22 cashing _ VERB VBG _ 19 advcl _ _ 23 in _ ADP IN _ 22 compound:prt _ _ 24 on _ ADP IN _ 26 case _ _ 25 airline _ NOUN NN _ 26 compound _ _ 26 profits _ NOUN NNS _ 22 nmod _ _ 27 at _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 expense _ NOUN NN _ 22 nmod _ _ 30 of _ ADP IN _ 34 case _ _ 31 safe _ ADJ JJ _ 34 amod _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 cost-effective _ ADJ JJ _ 34 amod _ _ 34 service _ NOUN NN _ 29 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 several _ ADJ JJ _ 4 amod _ _ 3 committee _ NOUN NN _ 4 compound _ _ 4 members _ NOUN NNS _ 5 nsubj _ _ 5 disapproved _ VERB VBN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 some _ DET DT _ 8 nsubj _ _ 8 backing _ VERB NN _ 5 dep _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Trump _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 claim _ NOUN NN _ 8 dobj _ _ 13 that _ SCONJ IN _ 18 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 threat _ NOUN NN _ 18 nsubj _ _ 16 of _ ADP IN _ 17 case _ _ 17 regulation _ NOUN NN _ 15 nmod _ _ 18 caused _ VERB VBD _ 12 ccomp _ _ 19 the _ DET DT _ 20 det _ _ 20 failure _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 UAL _ PROPN NNP _ 24 compound _ _ 24 deal _ NOUN NN _ 20 nmod _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 the _ DET DT _ 28 det _ _ 27 stock-market _ NOUN JJ _ 28 compound _ _ 28 plunge _ NOUN NN _ 20 conj _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 10 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 major _ ADJ JJ _ 5 amod _ _ 5 concerns _ NOUN NNS _ 1 nmod _ _ 6 expressed _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 dissenters _ NOUN NNS _ 6 nmod _ _ 10 was _ VERB VBD _ 0 root _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 large _ ADJ JJ _ 13 amod _ _ 13 airlines _ NOUN NNS _ 16 nsubjpass _ _ 14 would _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 prohibited _ VERB VBN _ 10 ccomp _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 divesting _ VERB VBG _ 16 advcl _ _ 19 themselves _ PRON PRP _ 18 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 smaller _ ADJ JJR _ 22 amod _ _ 22 entities _ NOUN NNS _ 18 nmod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 producing _ VERB VBG _ 18 conj _ _ 25 independent _ ADJ JJ _ 27 amod _ _ 26 spin-off _ ADJ NN _ 27 amod _ _ 27 companies _ NOUN NNS _ 24 dobj _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 possible _ ADJ JJ _ 4 amod _ _ 4 prelude _ NOUN NN _ 22 nmod _ _ 5 to _ ADP TO _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 resumption _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 talks _ NOUN NNS _ 7 nmod _ _ 10 between _ ADP IN _ 12 case _ _ 11 Boeing _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 striking _ VERB JJ _ 17 amod _ _ 15 Machinists _ NOUN NNS _ 17 compound _ _ 16 union _ NOUN NN _ 17 compound _ _ 17 members _ NOUN NNS _ 12 conj _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 federal _ ADJ JJ _ 21 amod _ _ 21 mediator _ NOUN NN _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 representatives _ NOUN NNS _ 29 nsubj _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 sides _ NOUN NNS _ 23 nmod _ _ 28 will _ AUX MD _ 29 aux _ _ 29 meet _ VERB VB _ 22 ccomp _ _ 30 with _ ADP IN _ 31 case _ _ 31 him _ PRON PRP _ 29 nmod _ _ 32 tomorrow _ NOUN NN _ 29 nmod:tmod _ _ 33 . _ PUNCT . _ 22 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 It _ PRON PRP _ 7 nsubj _ _ 3 could _ AUX MD _ 7 aux _ _ 4 be _ VERB VB _ 7 cop _ _ 5 a _ DET DT _ 7 det _ _ 6 long _ ADJ JJ _ 7 amod _ _ 7 meeting _ NOUN NN _ 17 ccomp _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 it _ PRON PRP _ 14 nsubj _ _ 10 could _ AUX MD _ 14 aux _ _ 11 be _ VERB VB _ 14 cop _ _ 12 a _ DET DT _ 14 det _ _ 13 short _ ADJ JJ _ 14 amod _ _ 14 one _ NUM CD _ 7 conj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Doug _ PROPN NNP _ 19 compound _ _ 19 Hammond _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 mediator _ NOUN NN _ 19 appos _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 who _ PRON WP _ 25 nsubj _ _ 25 called _ VERB VBD _ 19 acl:relcl _ _ 26 the _ DET DT _ 27 det _ _ 27 agreement _ NOUN NN _ 32 nsubj _ _ 28 to _ PART TO _ 29 mark _ _ 29 meet _ VERB VB _ 27 acl _ _ 30 a _ DET DT _ 32 det _ _ 31 first _ ADJ JJ _ 32 amod _ _ 32 step _ NOUN NN _ 25 xcomp _ _ 33 toward _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 resumption _ NOUN NN _ 32 nmod _ _ 36 of _ ADP IN _ 37 case _ _ 37 negotiations _ NOUN NNS _ 35 nmod _ _ 38 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 We _ PRON PRP _ 4 nsubjpass _ _ 3 're _ AUX VBP _ 4 auxpass _ _ 4 encouraged _ VERB VBN _ 26 ccomp _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 talks _ NOUN NNS _ 8 nsubjpass _ _ 7 are _ AUX VBP _ 8 auxpass _ _ 8 scheduled _ VERB VBN _ 4 ccomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 but _ CONJ CC _ 4 cc _ _ 11 beyond _ ADP IN _ 12 case _ _ 12 that _ PRON DT _ 16 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 we _ PRON PRP _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 made _ VERB VBN _ 4 conj _ _ 17 no _ DET DT _ 18 neg _ _ 18 expression _ NOUN NN _ 16 dobj _ _ 19 of _ ADP IN _ 20 case _ _ 20 expectations _ NOUN NNS _ 18 nmod _ _ 21 , _ PUNCT , _ 26 punct _ _ 22 '' _ PUNCT '' _ 26 punct _ _ 23 a _ DET DT _ 25 det _ _ 24 Boeing _ VERB NNP _ 25 amod _ _ 25 spokesman _ NOUN NN _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Machinists _ PROPN NNS _ 3 compound _ _ 3 union _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 rejected _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 9 det _ _ 7 three-year _ ADJ JJ _ 9 amod _ _ 8 contract _ NOUN NN _ 9 compound _ _ 9 offer _ NOUN NN _ 5 dobj _ _ 10 that _ PRON WDT _ 13 nsubj _ _ 11 would _ AUX MD _ 13 aux _ _ 12 have _ AUX VB _ 13 aux _ _ 13 provided _ VERB VBN _ 9 acl:relcl _ _ 14 a _ DET DT _ 18 det _ _ 15 10 _ NUM CD _ 16 compound _ _ 16 % _ SYM NN _ 18 amod _ _ 17 wage _ NOUN NN _ 18 compound _ _ 18 increase _ NOUN NN _ 13 dobj _ _ 19 over _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 life _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 pact _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 18 punct _ _ 26 plus _ CONJ CC _ 18 cc _ _ 27 some _ DET DT _ 28 det _ _ 28 bonuses _ NOUN NNS _ 18 conj _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Currently _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 average _ ADJ JJ _ 4 amod _ _ 4 pay _ NOUN NN _ 9 nsubj _ _ 5 for _ ADP IN _ 6 case _ _ 6 machinists _ NOUN NNS _ 4 nmod _ _ 7 is _ VERB VBZ _ 9 cop _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 13.39 _ NUM CD _ 14 ccomp _ _ 10 an _ DET DT _ 11 det _ _ 11 hour _ NOUN NN _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 Boeing _ VERB NNP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Now _ ADV RB _ 5 advmod _ _ 2 in _ ADP IN _ 5 case _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 13th _ ADJ JJ _ 5 amod _ _ 5 day _ NOUN NN _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 strike _ NOUN NN _ 10 nsubj _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 idled _ VERB VBN _ 0 root _ _ 11 about _ ADV IN _ 12 advmod _ _ 12 55,000 _ NUM CD _ 13 nummod _ _ 13 machinists _ NOUN NNS _ 10 dobj _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 has _ AUX VBZ _ 16 aux _ _ 16 started _ VERB VBN _ 10 conj _ _ 17 to _ PART TO _ 18 mark _ _ 18 delay _ VERB VB _ 16 xcomp _ _ 19 delivery _ NOUN NN _ 18 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 some _ DET DT _ 22 det _ _ 22 jetliners _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 With _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 strike _ NOUN NN _ 4 compound _ _ 4 fund _ NOUN NN _ 14 nmod _ _ 5 of _ ADP IN _ 7 case _ _ 6 about _ ADV IN _ 7 advmod _ _ 7 $ _ SYM $ _ 4 nmod _ _ 8 100 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 union _ NOUN NN _ 14 nsubj _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 said _ VERB VBN _ 0 root _ _ 15 it _ PRON PRP _ 17 nsubjpass _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 prepared _ VERB VBN _ 14 ccomp _ _ 18 for _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 long _ ADJ JJ _ 21 amod _ _ 21 strike _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 week _ NOUN NN _ 11 nmod _ _ 5 on _ ADP IN _ 6 case _ _ 6 strike _ NOUN NN _ 4 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 union _ NOUN NN _ 9 compound _ _ 9 members _ NOUN NNS _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 begin _ VERB VB _ 0 root _ _ 12 receiving _ VERB VBG _ 11 xcomp _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 100 _ NUM CD _ 12 dobj _ _ 15 a _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:npmod _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 fund _ NOUN NN _ 12 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 Work _ NOUN NN _ 4 nsubj _ _ 2 at _ ADP IN _ 3 case _ _ 3 Boeing _ PROPN NNP _ 1 nmod _ _ 4 continues _ VERB VBZ _ 0 root _ _ 5 with _ SCONJ IN _ 11 mark _ _ 6 supervisors _ NOUN NNS _ 11 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 other _ ADJ JJ _ 10 amod _ _ 9 non-striking _ ADJ JJ _ 10 amod _ _ 10 personnel _ NOUN NNS _ 6 conj _ _ 11 manning _ VERB VBG _ 4 advcl _ _ 12 the _ DET DT _ 13 det _ _ 13 lines _ NOUN NNS _ 11 dobj _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 And _ CONJ CC _ 23 cc _ _ 2 at _ ADP IN _ 10 case _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 10 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 Wichita _ PROPN NNP _ 10 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Kan. _ PROPN NNP _ 6 dep _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 plant _ NOUN NN _ 20 nmod _ _ 11 , _ PUNCT , _ 20 punct _ _ 12 about _ ADV IN _ 13 advmod _ _ 13 2,400 _ NUM CD _ 20 nsubj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 11,700 _ NUM CD _ 17 nummod _ _ 17 machinists _ NOUN NNS _ 13 nmod _ _ 18 still _ ADV RB _ 20 advmod _ _ 19 are _ AUX VBP _ 20 aux _ _ 20 working _ VERB VBG _ 23 dep _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 Boeing _ PROPN NNP _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Under _ ADP IN _ 4 case _ _ 2 Kansas _ PROPN NNP _ 4 compound _ _ 3 right-to-work _ ADJ JJ _ 4 amod _ _ 4 laws _ NOUN NNS _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 contracts _ NOUN NNS _ 9 nsubj _ _ 7 can _ AUX MD _ 9 aux _ _ 8 not _ PART RB _ 9 neg _ _ 9 require _ VERB VB _ 0 root _ _ 10 workers _ NOUN NNS _ 9 dobj _ _ 11 to _ PART TO _ 14 mark _ _ 12 be _ VERB VB _ 14 cop _ _ 13 union _ NOUN NN _ 14 compound _ _ 14 members _ NOUN NNS _ 9 xcomp _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Boeing _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 declined _ VERB VBN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 say _ VERB VB _ 3 xcomp _ _ 6 how _ ADV WRB _ 7 advmod _ _ 7 many _ ADJ JJ _ 8 advmod _ _ 8 employees _ NOUN NNS _ 10 nsubj _ _ 9 are _ AUX VBP _ 10 aux _ _ 10 working _ VERB VBG _ 5 ccomp _ _ 11 at _ ADP IN _ 18 case _ _ 12 its _ PRON PRP$ _ 18 nmod:poss _ _ 13 giant _ ADJ JJ _ 18 amod _ _ 14 Renton _ PROPN NNP _ 18 dep _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Wash. _ PROPN NNP _ 14 dep _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 plant _ NOUN NN _ 10 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Union _ NOUN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 6 nsubjpass _ _ 3 could _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 reached _ VERB VBN _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 comment _ NOUN NN _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 DPC _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Partners _ PROPN NNPS _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 7 det _ _ 6 hostile _ ADJ JJ _ 7 amod _ _ 7 suitor _ NOUN NN _ 3 appos _ _ 8 for _ ADP IN _ 10 case _ _ 9 Dataproducts _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 intends _ VERB VBZ _ 12 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 launch _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 19 det _ _ 18 tender _ NOUN NN _ 19 compound _ _ 19 offer _ NOUN NN _ 16 dobj _ _ 20 for _ ADP IN _ 27 case _ _ 21 the _ DET DT _ 24 det _ _ 22 computer _ NOUN NN _ 24 compound _ _ 23 printer _ NOUN NN _ 24 compound _ _ 24 maker _ NOUN NN _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 common _ ADJ JJ _ 27 amod _ _ 27 stock _ NOUN NN _ 19 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 DPC _ PROPN NNP _ 16 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 a _ DET DT _ 4 det _ _ 4 group _ NOUN NN _ 1 appos _ _ 5 led _ VERB VBN _ 4 acl _ _ 6 by _ ADP IN _ 13 case _ _ 7 the _ DET DT _ 13 det _ _ 8 New _ PROPN NNP _ 13 compound _ _ 9 York _ PROPN NNP _ 13 compound _ _ 10 investment _ NOUN NN _ 13 compound _ _ 11 firm _ NOUN NN _ 13 compound _ _ 12 Crescott _ PROPN NNP _ 13 compound _ _ 13 Inc. _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 also _ ADV RB _ 16 advmod _ _ 16 said _ VERB VBD _ 0 root _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 plans _ VERB VBZ _ 16 ccomp _ _ 19 to _ PART TO _ 20 mark _ _ 20 file _ VERB VB _ 18 xcomp _ _ 21 preliminary _ ADJ JJ _ 22 amod _ _ 22 materials _ NOUN NNS _ 20 dobj _ _ 23 with _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 Securities _ PROPN NNPS _ 28 compound _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Exchange _ PROPN NNP _ 25 conj _ _ 28 Commission _ PROPN NNP _ 20 nmod _ _ 29 regarding _ VERB VBG _ 20 dep _ _ 30 a _ DET DT _ 32 det _ _ 31 shareholder _ NOUN NN _ 32 compound _ _ 32 solicitation _ NOUN NN _ 29 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 oust _ VERB VB _ 32 acl _ _ 35 Dataproducts _ PROPN NNP _ 37 nmod:poss _ _ 36 ' _ PART POS _ 35 case _ _ 37 board _ NOUN NN _ 34 dobj _ _ 38 . _ PUNCT . _ 16 punct _ _ 1 DPC _ PROPN NNP _ 2 nsubj _ _ 2 holds _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 6 det _ _ 4 7.8 _ NUM CD _ 5 compound _ _ 5 % _ SYM NN _ 6 amod _ _ 6 stake _ NOUN NN _ 2 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 Dataproducts _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 made _ VERB VBD _ 2 conj _ _ 11 a _ DET DT _ 14 det _ _ 12 $ _ SYM $ _ 14 amod _ _ 13 15-a-share _ ADJ JJ _ 12 dep _ _ 14 bid _ NOUN NN _ 10 dobj _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 company _ NOUN NN _ 14 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 May _ PROPN NNP _ 10 nmod _ _ 20 , _ PUNCT , _ 2 punct _ _ 21 but _ CONJ CC _ 2 cc _ _ 22 Dataproducts _ PROPN NNPS _ 23 compound _ _ 23 management _ NOUN NN _ 24 nsubj _ _ 24 considered _ VERB VBD _ 2 conj _ _ 25 the _ DET DT _ 29 det _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 283.7 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 proposal _ NOUN NN _ 30 nsubj _ _ 30 unacceptable _ ADJ JJ _ 24 xcomp _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 DPC _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 elaborate _ VERB VB _ 4 xcomp _ _ 7 on _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 9 det _ _ 9 group _ NOUN NN _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 new _ ADJ JJ _ 12 amod _ _ 12 plan _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 American _ PROPN NNP _ 6 compound _ _ 3 Stock _ PROPN NNP _ 6 compound _ _ 4 Exchange _ PROPN NNP _ 6 compound _ _ 5 composite _ NOUN JJ _ 6 compound _ _ 6 trading _ NOUN NN _ 11 nmod _ _ 7 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Dataproducts _ PROPN NNP _ 10 compound _ _ 10 shares _ NOUN NNS _ 11 nsubj _ _ 11 jumped _ VERB VBD _ 0 root _ _ 12 62.5 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 close _ VERB VB _ 11 advcl _ _ 16 at _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 9.375 _ NUM CD _ 15 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 Dataproducts _ PROPN NNPS _ 13 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 aux _ _ 6 seeking _ VERB VBG _ 1 acl:relcl _ _ 7 a _ DET DT _ 8 det _ _ 8 buyer _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 several _ ADJ JJ _ 11 amod _ _ 11 months _ NOUN NNS _ 6 nmod _ _ 12 , _ PUNCT , _ 1 punct _ _ 13 announced _ VERB VBD _ 0 root _ _ 14 a _ DET DT _ 16 det _ _ 15 restructuring _ NOUN NN _ 16 compound _ _ 16 plan _ NOUN NN _ 13 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 September _ PROPN NNP _ 13 nmod _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 took _ VERB VBD _ 13 conj _ _ 21 itself _ PRON PRP _ 20 dobj _ _ 22 off _ ADP RP _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 auction _ NOUN NN _ 25 compound _ _ 25 block _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 restructuring _ NOUN NN _ 5 nsubj _ _ 5 includes _ VERB VBZ _ 0 root _ _ 6 plans _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 split _ VERB VB _ 6 dep _ _ 9 into _ ADP IN _ 11 case _ _ 10 three _ NUM CD _ 11 nummod _ _ 11 sectors _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 phase _ NOUN VB _ 8 conj _ _ 15 out _ ADP RP _ 14 compound:prt _ _ 16 domestic _ ADJ JJ _ 19 amod _ _ 17 printer _ NOUN NN _ 19 compound _ _ 18 manufacturing _ VERB NN _ 19 amod _ _ 19 operations _ NOUN NNS _ 14 dobj _ _ 20 and _ CONJ CC _ 8 cc _ _ 21 to _ PART TO _ 22 mark _ _ 22 sell _ VERB VB _ 8 conj _ _ 23 its _ PRON PRP$ _ 26 nmod:poss _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 England _ PROPN NNP _ 26 compound _ _ 26 subsidiary _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 As _ ADP IN _ 2 case _ _ 2 part _ NOUN NN _ 8 nmod _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 plan _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Dataproducts _ PROPN NNP _ 8 nsubj _ _ 8 announced _ VERB VBD _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 pact _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 sell _ VERB VB _ 10 acl _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 63 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 of _ ADP IN _ 20 case _ _ 17 its _ PRON PRP$ _ 20 nmod:poss _ _ 18 real _ ADJ JJ _ 20 amod _ _ 19 estate _ NOUN NN _ 20 compound _ _ 20 holdings _ NOUN NNS _ 13 nmod _ _ 21 to _ ADP TO _ 24 case _ _ 22 Trizec _ PROPN NNP _ 24 compound _ _ 23 Properties _ PROPN NNP _ 24 compound _ _ 24 Inc. _ PROPN NNP _ 12 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 a _ DET DT _ 27 det _ _ 27 unit _ NOUN NN _ 24 appos _ _ 28 of _ ADP IN _ 32 case _ _ 29 Canada _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 Trizec _ PROPN NNP _ 32 compound _ _ 32 Corp _ PROPN NNP _ 27 nmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Jack _ PROPN NNP _ 2 compound _ _ 2 Davis _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Dataproducts _ PROPN NNP _ 6 nmod:poss _ _ 5 ' _ PART POS _ 4 case _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 chairman _ NOUN NN _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 chief _ ADJ JJ _ 12 amod _ _ 11 executive _ ADJ JJ _ 12 amod _ _ 12 officer _ NOUN NN _ 6 conj _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 21 nsubj _ _ 17 `` _ PUNCT `` _ 21 punct _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 at _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 loss _ NOUN NN _ 14 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 understand _ VERB VB _ 21 xcomp _ _ 24 DPC _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 intentions _ NOUN NNS _ 23 dobj _ _ 27 . _ PUNCT . _ 14 punct _ _ 28 '' _ PUNCT '' _ 14 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 called _ VERB VBD _ 0 root _ _ 3 today _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 announcement _ NOUN NN _ 7 dep _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 opportunistic _ ADJ JJ _ 2 xcomp _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 disruptive _ ADJ JJ _ 7 conj _ _ 10 '' _ PUNCT '' _ 7 punct _ _ 11 and _ CONJ CC _ 2 cc _ _ 12 said _ VERB VBD _ 2 conj _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 15 nsubj _ _ 15 intends _ VERB VBZ _ 12 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 proceed _ VERB VB _ 15 xcomp _ _ 18 with _ ADP IN _ 20 case _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 restructuring _ NOUN NN _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Share _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 plummeted _ VERB VBD _ 0 root _ _ 4 across _ ADP IN _ 5 case _ _ 5 Europe _ PROPN NNP _ 3 nmod _ _ 6 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 response _ NOUN NN _ 3 nmod _ _ 9 to _ ADP TO _ 14 case _ _ 10 Friday _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 New _ PROPN NNP _ 14 compound _ _ 13 York _ PROPN NNP _ 14 compound _ _ 14 sell-off _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 but _ CONJ CC _ 3 cc _ _ 17 some _ DET DT _ 18 det _ _ 18 issues _ NOUN NNS _ 19 nsubj _ _ 19 staged _ VERB VBD _ 3 conj _ _ 20 a _ DET DT _ 22 det _ _ 21 late _ ADJ JJ _ 22 amod _ _ 22 comeback _ NOUN NN _ 19 dobj _ _ 23 after _ SCONJ IN _ 26 mark _ _ 24 Wall _ PROPN NNP _ 25 compound _ _ 25 Street _ PROPN NNP _ 26 nsubj _ _ 26 opened _ VERB VBD _ 19 advcl _ _ 27 without _ ADP IN _ 29 case _ _ 28 another _ DET DT _ 29 det _ _ 29 rout _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 European _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 further _ ADJ JJ _ 5 amod _ _ 5 reason _ NOUN NN _ 3 dobj _ _ 6 for _ ADP IN _ 7 case _ _ 7 optimism _ NOUN NN _ 5 nmod _ _ 8 today _ NOUN NN _ 3 nmod:tmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 after _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 rebound _ NOUN NN _ 3 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Frankfurt _ PROPN NNP _ 4 compound _ _ 3 Stock _ PROPN NNP _ 4 compound _ _ 4 Exchange _ PROPN NNP _ 18 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 7 nsubj _ _ 7 closed _ VERB VBD _ 4 acl:relcl _ _ 8 before _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 12 det _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 exchanges _ NOUN NNS _ 13 nsubj _ _ 13 opened _ VERB VBD _ 7 advcl _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 was _ VERB VBD _ 18 cop _ _ 16 the _ DET DT _ 18 det _ _ 17 hardest _ ADJ JJS _ 18 amod _ _ 18 hit _ NOUN NN _ 0 root _ _ 19 of _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 major _ ADJ JJ _ 23 amod _ _ 22 European _ ADJ JJ _ 23 amod _ _ 23 markets _ NOUN NNS _ 18 nmod _ _ 24 , _ PUNCT , _ 18 punct _ _ 25 with _ SCONJ IN _ 29 mark _ _ 26 the _ DET DT _ 28 det _ _ 27 DAX _ PROPN NNP _ 28 compound _ _ 28 Index _ PROPN NNP _ 29 nsubj _ _ 29 dropping _ VERB VBG _ 18 advcl _ _ 30 12.8 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 29 dobj _ _ 32 . _ PUNCT . _ 18 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 London _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 prices _ NOUN NNS _ 5 nsubj _ _ 5 plummeted _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 early _ ADJ JJ _ 8 amod _ _ 8 trading _ NOUN NN _ 5 nmod _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 were _ VERB VBD _ 11 cop _ _ 11 off _ ADJ RB _ 5 conj _ _ 12 as _ ADV RB _ 15 advmod _ _ 13 much _ ADJ JJ _ 15 advmod _ _ 14 as _ ADP IN _ 15 advmod _ _ 15 9 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 11 dep _ _ 17 before _ SCONJ IN _ 18 mark _ _ 18 coming _ VERB VBG _ 11 advcl _ _ 19 back _ ADV RB _ 18 advmod _ _ 20 strong _ ADJ JJ _ 18 xcomp _ _ 21 after _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 opening _ NOUN VBG _ 18 nmod _ _ 26 to _ PART TO _ 27 mark _ _ 27 close _ VERB VB _ 18 xcomp _ _ 28 down _ ADV RP _ 27 advmod _ _ 29 only _ ADV RB _ 30 advmod _ _ 30 3.2 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 28 nmod:npmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 West _ ADJ JJ _ 6 amod _ _ 2 German _ ADJ JJ _ 6 amod _ _ 3 Economics _ PROPN NNP _ 6 compound _ _ 4 Minister _ PROPN NNP _ 6 compound _ _ 5 Helmut _ PROPN NNP _ 6 compound _ _ 6 Haussmann _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 7 punct _ _ 10 In _ ADP IN _ 12 case _ _ 11 my _ PRON PRP$ _ 12 nmod:poss _ _ 12 view _ NOUN NN _ 18 nmod _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 market _ NOUN NN _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 stabilize _ VERB VB _ 7 ccomp _ _ 19 relatively _ ADV RB _ 20 advmod _ _ 20 quickly _ ADV RB _ 18 advmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 There _ PRON EX _ 10 expl _ _ 2 may _ AUX MD _ 10 aux _ _ 3 be _ VERB VB _ 10 cop _ _ 4 one _ NUM CD _ 7 compound _ _ 5 or _ CONJ CC _ 7 cc _ _ 6 other _ ADJ JJ _ 7 conj _ _ 7 psychological _ ADJ JJ _ 10 amod _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 technical _ ADJ JJ _ 7 conj _ _ 10 reactions _ NOUN NNS _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 but _ CONJ CC _ 10 cc _ _ 13 they _ PRON PRP _ 16 nsubjpass _ _ 14 are _ AUX VBP _ 16 auxpass _ _ 15 n't _ PART RB _ 16 neg _ _ 16 based _ VERB VBN _ 10 conj _ _ 17 on _ ADP IN _ 18 case _ _ 18 fundamentals _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 economy _ NOUN NN _ 15 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 West _ PROPN NNP _ 5 compound _ _ 5 Germany _ PROPN NNP _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 the _ DET DT _ 8 det _ _ 8 EC _ PROPN NNP _ 5 conj _ _ 9 -LCB- _ PUNCT -LRB- _ 11 punct _ _ 10 European _ PROPN NNP _ 11 compound _ _ 11 Community _ PROPN NNP _ 8 appos _ _ 12 -RCB- _ PUNCT -RRB- _ 11 punct _ _ 13 is _ VERB VBZ _ 15 cop _ _ 14 highly _ ADV RB _ 15 advmod _ _ 15 stable _ ADJ JJ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 17 '' _ PUNCT '' _ 15 punct _ _ 1 Paris _ PROPN NNP _ 18 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 been _ VERB VBN _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 center _ NOUN NN _ 1 acl:relcl _ _ 8 of _ ADP IN _ 10 case _ _ 9 speculation _ NOUN NN _ 10 compound _ _ 10 fever _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 recent _ ADJ JJ _ 13 amod _ _ 13 weeks _ NOUN NNS _ 7 nmod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 also _ ADV RB _ 18 advmod _ _ 16 was _ AUX VBD _ 18 auxpass _ _ 17 hard _ ADV JJ _ 18 advmod _ _ 18 hit _ VERB NN _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Share _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 in _ ADP IN _ 5 case _ _ 5 Milan _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Amsterdam _ PROPN NNP _ 5 conj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 Zurich _ PROPN NNP _ 5 conj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 Madrid _ PROPN NNP _ 5 conj _ _ 12 and _ CONJ CC _ 5 cc _ _ 13 Stockholm _ PROPN NNP _ 5 conj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Prices _ PROPN NNS _ 13 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 Brussels _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 where _ ADV WRB _ 9 advmod _ _ 6 a _ DET DT _ 8 det _ _ 7 computer _ NOUN NN _ 8 compound _ _ 8 breakdown _ NOUN NN _ 9 nsubj _ _ 9 disrupted _ VERB VBD _ 3 acl:relcl _ _ 10 trading _ NOUN NN _ 9 dobj _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 also _ ADV RB _ 13 advmod _ _ 13 tumbled _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Following _ VERB VBG _ 4 dep _ _ 2 is _ VERB VBZ _ 4 dep _ _ 3 a _ DET DT _ 4 det _ _ 4 breakdown _ NOUN NN _ 0 root _ _ 5 of _ ADP IN _ 8 case _ _ 6 major _ ADJ JJ _ 8 amod _ _ 7 market _ NOUN NN _ 8 compound _ _ 8 activity _ NOUN NN _ 4 nmod _ _ 9 : _ PUNCT : _ 4 punct _ _ 1 FRANKFURT _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 One _ NUM CD _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 sharpest _ ADJ JJS _ 5 amod _ _ 5 declines _ NOUN NNS _ 1 nmod _ _ 6 came _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 financial _ ADJ JJ _ 10 amod _ _ 10 center _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 Europe _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 strongest _ ADJ JJS _ 15 amod _ _ 15 economy _ NOUN NN _ 10 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 DAX _ PROPN NNP _ 3 compound _ _ 3 Index _ PROPN NNP _ 10 nsubj _ _ 4 of _ ADP IN _ 9 case _ _ 5 30 _ NUM CD _ 9 nummod _ _ 6 West _ ADJ JJ _ 9 amod _ _ 7 German _ ADJ JJ _ 9 amod _ _ 8 blue _ ADJ JJ _ 9 amod _ _ 9 chips _ NOUN NNS _ 3 nmod _ _ 10 plunged _ VERB VBD _ 0 root _ _ 11 12.8 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 16 det _ _ 15 one-day _ ADJ JJ _ 16 amod _ _ 16 record _ NOUN NN _ 12 appos _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 wiping _ VERB VBG _ 10 xcomp _ _ 19 out _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 21 det _ _ 21 summer _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 gains _ NOUN NNS _ 18 dobj _ _ 24 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 index _ NOUN NN _ 3 nsubj _ _ 3 closed _ VERB VBD _ 0 root _ _ 4 at _ ADP IN _ 5 case _ _ 5 1385.72 _ NUM CD _ 3 nmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 down _ ADV RB _ 3 advmod _ _ 8 203.56 _ NUM CD _ 9 nummod _ _ 9 points _ NOUN NNS _ 7 nmod:npmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 comparison _ NOUN NN _ 16 nmod _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 two _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 ago _ ADV RB _ 16 advmod _ _ 7 on _ ADP IN _ 9 case _ _ 8 Black _ PROPN NNP _ 9 compound _ _ 9 Monday _ PROPN NNP _ 16 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 index _ NOUN NN _ 16 nsubj _ _ 14 would _ AUX MD _ 16 aux _ _ 15 have _ AUX VB _ 16 aux _ _ 16 dropped _ VERB VBN _ 0 root _ _ 17 9.4 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 according _ VERB VBG _ 23 case _ _ 21 to _ ADP TO _ 20 mwe _ _ 22 a _ DET DT _ 23 det _ _ 23 projection _ NOUN NN _ 16 nmod _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 exchange _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 Investors _ NOUN NNS _ 4 nsubj _ _ 2 may _ AUX MD _ 4 aux _ _ 3 have _ AUX VB _ 4 aux _ _ 4 reacted _ VERB VBN _ 0 root _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 strongly _ ADV RB _ 4 advmod _ _ 7 to _ ADP TO _ 13 case _ _ 8 Friday _ PROPN NNP _ 13 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 U.S. _ PROPN NNP _ 13 compound _ _ 11 stock _ NOUN NN _ 13 compound _ _ 12 market _ NOUN NN _ 13 compound _ _ 13 loss _ NOUN NN _ 4 nmod _ _ 14 because _ SCONJ IN _ 16 mark _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 had _ VERB VBD _ 4 advcl _ _ 17 vivid _ ADJ JJ _ 18 amod _ _ 18 memories _ NOUN NNS _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 Frankfurt _ PROPN NNP _ 22 compound _ _ 22 exchange _ NOUN NN _ 18 nmod _ _ 23 's _ PART POS _ 22 case _ _ 24 losing _ VERB VBG _ 22 dep _ _ 25 35 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 24 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 value _ NOUN NN _ 26 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 1987 _ NUM CD _ 33 nummod _ _ 33 crash _ NOUN NN _ 24 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 its _ PRON PRP$ _ 36 nmod:poss _ _ 36 wake _ NOUN NN _ 33 conj _ _ 37 . _ PUNCT . _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 12 nmod:tmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 however _ ADV RB _ 12 advmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 many _ ADJ JJ _ 8 amod _ _ 7 small _ ADJ JJ _ 8 amod _ _ 8 investors _ NOUN NNS _ 12 nsubjpass _ _ 9 may _ AUX MD _ 12 aux _ _ 10 have _ AUX VB _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 hurt _ VERB VBN _ 0 root _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 acting _ VERB VBG _ 12 advcl _ _ 15 so _ ADV RB _ 16 advmod _ _ 16 swiftly _ ADV RB _ 14 advmod _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 They _ PRON PRP _ 4 nsubj _ _ 3 all _ DET DT _ 2 det _ _ 4 went _ VERB VBD _ 11 ccomp _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 wrong _ ADJ JJ _ 8 amod _ _ 8 direction _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Andreas _ PROPN NNP _ 13 compound _ _ 13 Insam _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 an _ DET DT _ 17 det _ _ 16 investment _ NOUN NN _ 17 compound _ _ 17 adviser _ NOUN NN _ 13 appos _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 Bank _ PROPN NNP _ 17 nmod _ _ 21 in _ ADP IN _ 25 case _ _ 22 Liechtenstein _ PROPN NNP _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 Frankfurt _ PROPN NNP _ 25 compound _ _ 25 branch _ NOUN NN _ 17 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 told _ VERB VBD _ 2 ccomp _ _ 5 clients _ NOUN NNS _ 4 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 4 xcomp _ _ 8 selected _ VERB VBN _ 12 amod _ _ 9 West _ ADJ JJ _ 12 amod _ _ 10 German _ ADJ JJ _ 12 amod _ _ 11 blue _ ADJ JJ _ 12 amod _ _ 12 chips _ NOUN NNS _ 7 dobj _ _ 13 after _ SCONJ IN _ 15 mark _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 fell _ VERB VBD _ 7 advcl _ _ 16 by _ ADP IN _ 19 case _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 10 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 15 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 opening _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 delayed _ VERB VBN _ 23 advcl _ _ 6 30 _ NUM CD _ 7 nummod _ _ 7 minutes _ NOUN NNS _ 5 dobj _ _ 8 because _ ADV IN _ 11 case _ _ 9 of _ ADP IN _ 8 mwe _ _ 10 the _ DET DT _ 11 det _ _ 11 crush _ NOUN NN _ 5 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 sell _ NOUN NN _ 14 compound _ _ 14 orders _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 23 punct _ _ 16 Frankfurt _ PROPN NNP _ 21 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 normal _ ADJ JJ _ 21 amod _ _ 19 two-hour _ ADJ JJ _ 21 amod _ _ 20 trading _ NOUN NN _ 21 compound _ _ 21 session _ NOUN NN _ 23 nsubjpass _ _ 22 was _ AUX VBD _ 23 auxpass _ _ 23 extended _ VERB VBN _ 0 root _ _ 24 75 _ NUM CD _ 25 nummod _ _ 25 minutes _ NOUN NNS _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 handle _ VERB VB _ 23 advcl _ _ 28 the _ DET DT _ 30 det _ _ 29 heavy _ ADJ JJ _ 30 amod _ _ 30 volume _ NOUN NN _ 27 dobj _ _ 31 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 beginning _ NOUN NN _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 chaotic _ ADJ JJ _ 8 ccomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 Nigel _ PROPN NNP _ 10 compound _ _ 10 Longley _ PROPN NNP _ 8 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 13 det _ _ 13 broker _ NOUN NN _ 10 appos _ _ 14 for _ ADP IN _ 16 case _ _ 15 Commerzbank _ PROPN NNP _ 16 compound _ _ 16 AG _ PROPN NNP _ 13 nmod _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 took _ VERB VBD _ 0 root _ _ 4 three-quarters _ NOUN NNS _ 3 dobj _ _ 5 of _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 hour _ NOUN NN _ 4 nmod _ _ 8 before _ SCONJ IN _ 13 mark _ _ 9 enough _ ADJ JJ _ 10 amod _ _ 10 prices _ NOUN NNS _ 13 nsubjpass _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 worked _ VERB VBN _ 3 advcl _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 13 xcomp _ _ 17 a _ DET DT _ 18 det _ _ 18 reading _ NOUN NN _ 16 dobj _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 23 '' _ PUNCT '' _ 3 punct _ _ 1 Institutional _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 23 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 bankers _ NOUN NNS _ 2 conj _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 many _ DET JJ _ 9 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 whom _ PRON WP _ 6 nmod _ _ 9 spent _ VERB VBD _ 2 acl:relcl _ _ 10 the _ DET DT _ 11 det _ _ 11 night _ NOUN NN _ 9 nmod:tmod _ _ 12 before _ ADV IN _ 11 advmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 offices _ NOUN NNS _ 9 nmod _ _ 16 watching _ VERB VBG _ 9 xcomp _ _ 17 Far _ ADJ JJ _ 19 amod _ _ 18 Eastern _ ADJ JJ _ 19 amod _ _ 19 markets _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 2 punct _ _ 21 were _ VERB VBD _ 23 cop _ _ 22 cautiously _ ADV RB _ 23 advmod _ _ 23 optimistic _ ADJ JJ _ 0 root _ _ 24 after _ ADP IN _ 29 case _ _ 25 the _ DET DT _ 29 det _ _ 26 mild _ ADJ JJ _ 29 amod _ _ 27 1.8 _ NUM CD _ 28 compound _ _ 28 % _ SYM NN _ 29 amod _ _ 29 decline _ NOUN NN _ 23 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 Tokyo _ PROPN NNP _ 33 compound _ _ 32 stock _ NOUN NN _ 33 compound _ _ 33 prices _ NOUN NNS _ 29 nmod _ _ 34 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 Everybody _ NOUN NN _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 confident _ ADJ JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 including _ VERB VBG _ 10 case _ _ 8 most _ ADJ RBS _ 10 amod _ _ 9 institutional _ ADJ JJ _ 10 amod _ _ 10 investors _ NOUN NNS _ 5 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 is _ VERB VBZ _ 21 ccomp _ _ 3 why _ ADV WRB _ 8 advmod _ _ 4 everybody _ NOUN NN _ 8 nsubjpass _ _ 5 was _ AUX VBD _ 8 auxpass _ _ 6 a _ DET DT _ 7 det _ _ 7 little _ ADV JJ _ 8 nmod:npmod _ _ 8 surprised _ VERB JJ _ 2 advcl _ _ 9 by _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 storm _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 sell _ NOUN NN _ 14 compound _ _ 14 orders _ NOUN NNS _ 11 nmod _ _ 15 from _ ADP IN _ 18 case _ _ 16 small _ ADJ JJ _ 18 amod _ _ 17 private _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 14 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Norbert _ PROPN NNP _ 23 compound _ _ 23 Braeuer _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 a _ DET DT _ 27 det _ _ 26 senior _ ADJ JJ _ 27 amod _ _ 27 trader _ NOUN NN _ 23 appos _ _ 28 for _ ADP IN _ 30 case _ _ 29 Hessische _ PROPN NNP _ 30 compound _ _ 30 Landesbank _ PROPN NNP _ 27 nmod _ _ 31 . _ PUNCT . _ 21 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 institutions _ NOUN NNS _ 8 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 including _ VERB VBG _ 6 case _ _ 6 banks _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 began _ VERB VBD _ 0 root _ _ 9 picking _ VERB VBG _ 8 xcomp _ _ 10 up _ ADP RP _ 9 compound:prt _ _ 11 lower-priced _ ADJ JJ _ 12 amod _ _ 12 shares _ NOUN NNS _ 9 dobj _ _ 13 late _ ADV JJ _ 8 advmod _ _ 14 yesterday _ NOUN NN _ 13 nmod:npmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 but _ CONJ CC _ 8 cc _ _ 17 most _ ADJ JJS _ 18 amod _ _ 18 investors _ NOUN NNS _ 19 nsubj _ _ 19 wanted _ VERB VBD _ 8 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 see _ VERB VB _ 19 xcomp _ _ 22 what _ PRON WP _ 24 nsubj _ _ 23 would _ AUX MD _ 24 aux _ _ 24 happen _ VERB VB _ 21 ccomp _ _ 25 in _ ADP IN _ 27 case _ _ 26 New _ PROPN NNP _ 27 compound _ _ 27 York _ PROPN NNP _ 24 nmod _ _ 28 before _ SCONJ IN _ 29 mark _ _ 29 acting _ VERB VBG _ 21 advcl _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 even _ ADV RB _ 6 advmod _ _ 3 if _ SCONJ IN _ 6 mark _ _ 4 Wall _ PROPN NNP _ 5 compound _ _ 5 Street _ PROPN NNP _ 6 nsubj _ _ 6 continues _ VERB VBZ _ 12 advcl _ _ 7 to _ PART TO _ 8 mark _ _ 8 stabilize _ VERB VB _ 6 xcomp _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 analysts _ NOUN NNS _ 12 nsubj _ _ 11 here _ ADV RB _ 10 advmod _ _ 12 say _ VERB VBP _ 0 root _ _ 13 the _ DET DT _ 15 det _ _ 14 latest _ ADJ JJS _ 15 amod _ _ 15 blow _ NOUN NN _ 20 nsubj _ _ 16 to _ ADP TO _ 18 case _ _ 17 investor _ NOUN NN _ 18 compound _ _ 18 confidence _ NOUN NN _ 15 nmod _ _ 19 could _ AUX MD _ 20 aux _ _ 20 inhibit _ VERB VB _ 12 ccomp _ _ 21 a _ DET DT _ 23 det _ _ 22 swift _ NOUN JJ _ 23 compound _ _ 23 recovery _ NOUN NN _ 20 dobj _ _ 24 for _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 Frankfurt _ PROPN NNP _ 27 compound _ _ 27 exchange _ NOUN NN _ 23 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 which _ PRON WDT _ 32 nsubj _ _ 30 already _ ADV RB _ 32 advmod _ _ 31 was _ AUX VBD _ 32 aux _ _ 32 showing _ VERB VBG _ 27 acl:relcl _ _ 33 signs _ NOUN NNS _ 32 dobj _ _ 34 of _ ADP IN _ 35 case _ _ 35 weakness _ NOUN NN _ 33 nmod _ _ 36 after _ SCONJ IN _ 40 mark _ _ 37 the _ DET DT _ 38 det _ _ 38 DAX _ PROPN NNP _ 40 nsubj _ _ 39 had _ AUX VBD _ 40 aux _ _ 40 slipped _ VERB VBN _ 32 advcl _ _ 41 from _ ADP IN _ 44 case _ _ 42 a _ DET DT _ 44 det _ _ 43 1989 _ NUM CD _ 44 nummod _ _ 44 high _ NOUN NN _ 40 nmod _ _ 45 of _ ADP IN _ 46 case _ _ 46 1657.61 _ NUM CD _ 44 nmod _ _ 47 on _ ADP IN _ 48 case _ _ 48 Sept. _ PROPN NNP _ 40 nmod _ _ 49 8 _ NUM CD _ 48 nummod _ _ 50 . _ PUNCT . _ 12 punct _ _ 1 Some _ DET DT _ 8 nsubj _ _ 2 of _ ADP IN _ 7 case _ _ 3 West _ PROPN NNP _ 4 compound _ _ 4 Germany _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 bluest _ ADJ JJS _ 7 amod _ _ 7 chips _ NOUN NNS _ 1 nmod _ _ 8 took _ VERB VBD _ 0 root _ _ 9 some _ DET DT _ 8 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 biggest _ ADJ JJS _ 13 amod _ _ 13 hits _ NOUN NNS _ 9 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 16.3 _ NUM CD _ 3 compound _ _ 3 % _ SYM NN _ 4 amod _ _ 4 drop _ NOUN NN _ 18 nsubj _ _ 5 for _ ADP IN _ 7 case _ _ 6 Mannesmann _ PROPN NNP _ 7 compound _ _ 7 AG _ PROPN NNP _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 Dresdner _ PROPN NNP _ 11 compound _ _ 10 Bank _ PROPN NNP _ 11 compound _ _ 11 AG _ PROPN NNP _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 9.6 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 decline _ NOUN NN _ 4 conj _ _ 16 were _ VERB VBD _ 18 cop _ _ 17 especially _ ADV RB _ 18 advmod _ _ 18 problematic _ ADJ JJ _ 0 root _ _ 19 for _ ADP IN _ 22 case _ _ 20 their _ PRON PRP$ _ 22 nmod:poss _ _ 21 respective _ ADJ JJ _ 22 amod _ _ 22 boards _ NOUN NNS _ 18 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 whose _ PRON WP$ _ 25 nmod:poss _ _ 25 plans _ NOUN NNS _ 36 nsubj _ _ 26 for _ ADP IN _ 29 case _ _ 27 major _ ADJ JJ _ 29 amod _ _ 28 rights _ NOUN NNS _ 29 compound _ _ 29 issues _ NOUN NNS _ 25 nmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 November _ PROPN NNP _ 29 nmod _ _ 32 could _ AUX MD _ 36 aux _ _ 33 now _ ADV RB _ 36 advmod _ _ 34 be _ VERB VB _ 36 cop _ _ 35 in _ ADP IN _ 36 case _ _ 36 jeopardy _ NOUN NN _ 22 acl:relcl _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 Dresdner _ PROPN NNP _ 2 compound _ _ 2 Bank _ PROPN NNP _ 5 nsubj _ _ 3 last _ ADJ JJ _ 4 amod _ _ 4 month _ NOUN NN _ 5 nmod:tmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 hoped _ VERB VBD _ 5 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 raise _ VERB VB _ 7 xcomp _ _ 10 1.2 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 12 nummod _ _ 12 marks _ NOUN NNS _ 9 dobj _ _ 13 -LRB- _ PUNCT -LRB- _ 14 punct _ _ 14 $ _ SYM $ _ 12 dep _ _ 15 642.2 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 -RRB- _ PUNCT -RRB- _ 14 punct _ _ 18 by _ SCONJ IN _ 19 mark _ _ 19 issuing _ VERB VBG _ 9 advcl _ _ 20 four _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 22 nummod _ _ 22 shares _ NOUN NNS _ 19 dobj _ _ 23 at _ ADP IN _ 25 case _ _ 24 300 _ NUM CD _ 25 nummod _ _ 25 marks _ NOUN NNS _ 19 nmod _ _ 26 each _ DET DT _ 25 nmod:npmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 Yet _ ADV RB _ 5 advmod _ _ 2 yesterday _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 market _ NOUN NN _ 5 nsubj _ _ 5 cropped _ VERB VBD _ 0 root _ _ 6 Dresdner _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 share _ NOUN NN _ 9 compound _ _ 9 price _ NOUN NN _ 5 dobj _ _ 10 by _ ADP IN _ 12 case _ _ 11 33 _ NUM CD _ 12 nummod _ _ 12 marks _ NOUN NNS _ 5 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 309 _ NUM CD _ 15 nummod _ _ 15 marks _ NOUN NNS _ 5 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 leaving _ VERB VBG _ 5 advcl _ _ 20 little _ ADJ JJ _ 21 amod _ _ 21 incentive _ NOUN NN _ 19 dobj _ _ 22 for _ SCONJ IN _ 25 mark _ _ 23 investors _ NOUN NNS _ 25 nsubj _ _ 24 to _ PART TO _ 25 mark _ _ 25 subscribe _ VERB VB _ 21 acl _ _ 26 to _ ADP TO _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 standing _ NOUN NN _ 29 compound _ _ 29 price _ NOUN NN _ 25 nmod _ _ 30 unless _ SCONJ IN _ 33 mark _ _ 31 the _ DET DT _ 32 det _ _ 32 market _ NOUN NN _ 33 nsubj _ _ 33 recovers _ VERB VBZ _ 25 advcl _ _ 34 quickly _ ADV RB _ 33 advmod _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 LONDON _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Headed _ VERB VBN _ 13 advcl _ _ 2 toward _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 5 det _ _ 4 record _ NOUN NN _ 5 compound _ _ 5 drop _ NOUN NN _ 1 nmod _ _ 6 at _ ADP IN _ 7 case _ _ 7 midday _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 the _ DET DT _ 12 det _ _ 10 London _ PROPN NNP _ 12 compound _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 13 nsubj _ _ 13 recouped _ VERB VBD _ 0 root _ _ 14 two-thirds _ NOUN NNS _ 13 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 losses _ NOUN NNS _ 14 nmod _ _ 18 in _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 wake _ NOUN NN _ 13 nmod _ _ 21 of _ ADP IN _ 26 case _ _ 22 New _ PROPN NNP _ 23 compound _ _ 23 York _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 early _ ADJ JJ _ 26 amod _ _ 26 rally _ NOUN NN _ 20 nmod _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 7 det _ _ 2 Financial _ PROPN NNP _ 7 compound _ _ 3 Times-Stock _ PROPN NNP _ 7 compound _ _ 4 Exchange _ PROPN NNP _ 7 compound _ _ 5 100 _ NUM CD _ 7 nummod _ _ 6 Share _ PROPN NNP _ 7 compound _ _ 7 Index _ PROPN NNP _ 8 nsubj _ _ 8 closed _ VERB VBD _ 0 root _ _ 9 off _ ADV RB _ 8 advmod _ _ 10 70.5 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 at _ ADP IN _ 14 case _ _ 14 2163.4 _ NUM CD _ 8 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 high _ NOUN JJ _ 14 appos _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 day _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 after _ SCONJ IN _ 24 mark _ _ 23 having _ AUX VBG _ 24 aux _ _ 24 plunged _ VERB VBN _ 8 advcl _ _ 25 204.2 _ NUM CD _ 26 nummod _ _ 26 points _ NOUN NNS _ 24 dobj _ _ 27 at _ ADP IN _ 29 case _ _ 28 12:49 _ NUM CD _ 29 nummod _ _ 29 p.m _ NOUN RB _ 24 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 big _ ADJ JJ _ 4 amod _ _ 4 institutions _ NOUN NNS _ 0 root _ _ 5 such _ ADJ JJ _ 10 case _ _ 6 as _ ADP IN _ 5 mwe _ _ 7 Norwich _ PROPN NNP _ 10 compound _ _ 8 Union _ PROPN NNP _ 10 compound _ _ 9 Insurance _ PROPN NNP _ 10 compound _ _ 10 Group _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Scottish _ PROPN NNP _ 15 compound _ _ 13 Amicable _ PROPN NNP _ 15 compound _ _ 14 Investment _ PROPN NNP _ 15 compound _ _ 15 Managers _ PROPN NNPS _ 10 conj _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 Standard _ PROPN NNP _ 20 compound _ _ 18 Life _ PROPN NNP _ 20 compound _ _ 19 Assurance _ PROPN NNP _ 20 compound _ _ 20 Co. _ PROPN NNP _ 10 conj _ _ 21 that _ PRON WDT _ 22 nsubj _ _ 22 spearheaded _ VERB VBD _ 4 dep _ _ 23 the _ DET DT _ 24 det _ _ 24 rally _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 Attracted _ VERB VBN _ 14 advcl _ _ 2 by _ ADP IN _ 4 case _ _ 3 low _ ADJ JJ _ 4 amod _ _ 4 prices _ NOUN NNS _ 1 nmod _ _ 5 and _ CONJ CC _ 1 cc _ _ 6 encouraged _ VERB VBN _ 1 conj _ _ 7 by _ ADP IN _ 11 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 York _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 performance _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 scooped _ VERB VBD _ 0 root _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 equities _ NOUN NNS _ 14 dobj _ _ 17 across _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 board _ NOUN NN _ 14 nmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Volume _ NOUN NN _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 959.3 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 5 nummod _ _ 5 shares _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 triple _ ADJ JJ _ 11 nummod _ _ 10 recent _ ADJ JJ _ 11 amod _ _ 11 levels _ NOUN NNS _ 5 appos _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 PARIS _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Late _ ADJ RB _ 2 amod _ _ 2 buying _ NOUN VBG _ 3 nsubj _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Paris _ PROPN NNP _ 6 compound _ _ 6 Bourse _ PROPN NNP _ 3 iobj _ _ 7 a _ DET DT _ 8 det _ _ 8 parachute _ NOUN NN _ 3 dobj _ _ 9 after _ ADP IN _ 12 case _ _ 10 its _ PRON PRP$ _ 12 nmod:poss _ _ 11 free _ ADJ JJ _ 12 amod _ _ 12 fall _ NOUN NN _ 3 nmod _ _ 13 early _ ADV RB _ 12 advmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 CAC _ PROPN NNP _ 4 compound _ _ 3 General _ PROPN NNP _ 4 compound _ _ 4 Index _ PROPN NNP _ 5 nsubj _ _ 5 ended _ VERB VBD _ 0 root _ _ 6 down _ ADV RP _ 5 advmod _ _ 7 5.4 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 nmod:npmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 523.6 _ NUM CD _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 13 det _ _ 13 drop _ NOUN NN _ 10 appos _ _ 14 of _ ADP IN _ 16 case _ _ 15 29.6 _ NUM CD _ 16 nummod _ _ 16 points _ NOUN NNS _ 13 nmod _ _ 17 from _ ADP IN _ 18 case _ _ 18 Friday _ PROPN NNP _ 13 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 was _ VERB VBD _ 17 ccomp _ _ 4 a _ DET DT _ 5 det _ _ 5 volatility _ NOUN NN _ 3 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 5 nmod _ _ 9 that _ ADP IN _ 13 dobj _ _ 10 I _ PRON PRP _ 13 nsubj _ _ 11 have _ AUX VBP _ 13 aux _ _ 12 never _ ADV RB _ 13 neg _ _ 13 seen _ VERB VBN _ 5 acl:relcl _ _ 14 before _ ADV IN _ 13 advmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Michel _ PROPN NNP _ 19 compound _ _ 19 Vigier _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 a _ DET DT _ 22 det _ _ 22 partner _ NOUN NN _ 19 appos _ _ 23 in _ ADP IN _ 27 case _ _ 24 brokerage _ NOUN NN _ 27 compound _ _ 25 firm _ NOUN NN _ 27 compound _ _ 26 Cholet _ PROPN NNP _ 27 compound _ _ 27 Dupont _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 When _ ADV WRB _ 5 advmod _ _ 3 Wall _ PROPN NNP _ 4 compound _ _ 4 Street _ PROPN NNP _ 5 nsubj _ _ 5 turned _ VERB VBD _ 13 advcl _ _ 6 around _ ADV RP _ 5 advmod _ _ 7 shortly _ ADV RB _ 10 advmod _ _ 8 after _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 opening _ NOUN NN _ 5 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 there _ PRON EX _ 13 expl _ _ 13 was _ VERB VBD _ 0 root _ _ 14 panic _ NOUN NN _ 15 compound _ _ 15 buying _ NOUN VBG _ 13 nsubj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Paris _ PROPN NNP _ 13 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 19 '' _ PUNCT '' _ 13 punct _ _ 1 Brokers _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 23 mark _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 news _ NOUN NN _ 7 nsubj _ _ 7 spread _ VERB NN _ 23 advcl _ _ 8 that _ SCONJ WDT _ 12 mark _ _ 9 Wall _ PROPN NNP _ 10 compound _ _ 10 Street _ PROPN NNP _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 moving _ VERB VBG _ 7 ccomp _ _ 13 up _ ADV RP _ 12 compound:prt _ _ 14 , _ PUNCT , _ 23 punct _ _ 15 traders _ NOUN NNS _ 23 nsubj _ _ 16 who _ PRON WP _ 18 nsubj _ _ 17 had _ AUX VBD _ 18 aux _ _ 18 called _ VERB VBN _ 15 acl:relcl _ _ 19 to _ PART TO _ 20 mark _ _ 20 place _ VERB VB _ 18 xcomp _ _ 21 sell _ NOUN NN _ 22 compound _ _ 22 orders _ NOUN NNS _ 20 dobj _ _ 23 changed _ VERB VBD _ 2 ccomp _ _ 24 their _ PRON PRP$ _ 25 nmod:poss _ _ 25 line _ NOUN NN _ 23 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 mid-conversation _ NOUN NN _ 23 nmod _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 ordering _ VERB VBG _ 23 advcl _ _ 30 buys _ NOUN VBZ _ 29 dobj _ _ 31 instead _ ADV RB _ 29 advmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 Trading _ NOUN NN _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 driven _ VERB VBN _ 0 root _ _ 4 primarily _ ADV RB _ 3 advmod _ _ 5 by _ ADP IN _ 7 case _ _ 6 small _ ADJ JJ _ 7 amod _ _ 7 investors _ NOUN NNS _ 3 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 speculators _ NOUN NNS _ 7 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 with _ SCONJ IN _ 14 mark _ _ 12 large _ ADJ JJ _ 13 amod _ _ 13 institutions _ NOUN NNS _ 14 nsubj _ _ 14 waiting _ VERB VBG _ 3 advcl _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 sidelines _ NOUN NNS _ 14 nmod _ _ 18 until _ ADP IN _ 19 case _ _ 19 late _ ADJ JJ _ 14 advcl _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 day _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 Wall _ PROPN NNP _ 3 compound _ _ 3 Street _ PROPN NNP _ 4 nsubj _ _ 4 turned _ VERB VBD _ 11 advcl _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 however _ ADV RB _ 11 advmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 big _ ADJ JJ _ 10 amod _ _ 10 boys _ NOUN NNS _ 11 nsubj _ _ 11 entered _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 11 dobj _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 looking _ VERB VBG _ 11 advcl _ _ 16 for _ ADP IN _ 17 case _ _ 17 bargains _ NOUN NNS _ 15 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 5 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 swung _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 loss _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 third _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 5 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 while _ SCONJ IN _ 17 mark _ _ 15 NCNB _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 17 nsubj _ _ 17 reported _ VERB VBD _ 5 advcl _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 income _ NOUN NN _ 22 nsubj _ _ 20 more _ ADV RBR _ 22 advmod _ _ 21 than _ ADP IN _ 20 case _ _ 22 doubled _ VERB VBD _ 17 ccomp _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 and _ CONJ CC _ 17 cc _ _ 25 Security _ PROPN NNP _ 28 compound _ _ 26 Pacific _ PROPN NNP _ 28 compound _ _ 27 Corp. _ PROPN NNP _ 28 compound _ _ 28 net _ NOUN NN _ 29 nsubj _ _ 29 rose _ VERB VBD _ 17 conj _ _ 30 10 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 29 dobj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 0 root _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co _ PROPN NNP _ 2 conj _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 7 nsubj _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 as _ SCONJ IN _ 5 mark _ _ 5 expected _ VERB VBN _ 7 dep _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 posted _ VERB VBD _ 0 root _ _ 8 a _ DET DT _ 13 det _ _ 9 $ _ SYM $ _ 13 amod _ _ 10 1.82 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 net _ NOUN JJ _ 13 compound _ _ 13 loss _ NOUN NN _ 7 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 quarter _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 reflecting _ VERB VBG _ 7 advcl _ _ 19 the _ DET DT _ 22 det _ _ 20 New _ PROPN NNP _ 22 compound _ _ 21 York _ PROPN NNP _ 22 compound _ _ 22 bank _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 decision _ NOUN NN _ 18 dobj _ _ 25 last _ ADJ JJ _ 26 amod _ _ 26 month _ NOUN NN _ 24 nmod:tmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 add _ VERB VB _ 24 acl _ _ 29 $ _ SYM $ _ 28 dobj _ _ 30 2 _ NUM CD _ 31 compound _ _ 31 billion _ NUM CD _ 29 nummod _ _ 32 to _ ADP TO _ 33 case _ _ 33 reserves _ NOUN NNS _ 28 nmod _ _ 34 for _ ADP IN _ 35 case _ _ 35 losses _ NOUN NNS _ 28 nmod _ _ 36 on _ ADP IN _ 37 case _ _ 37 loans _ NOUN NNS _ 35 nmod _ _ 38 to _ ADP TO _ 40 case _ _ 39 less-developed _ ADJ JJ _ 40 amod _ _ 40 countries _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 reserve _ NOUN NN _ 3 compound _ _ 3 addition _ NOUN NN _ 4 nsubj _ _ 4 placed _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 parent _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 Morgan _ PROPN NNP _ 11 compound _ _ 9 Guaranty _ PROPN NNP _ 11 compound _ _ 10 Trust _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 6 nmod _ _ 12 among _ ADP IN _ 17 case _ _ 13 a _ DET DT _ 17 det _ _ 14 few _ ADJ JJ _ 17 amod _ _ 15 major _ ADJ JJ _ 17 amod _ _ 16 U.S. _ PROPN NNP _ 17 compound _ _ 17 banks _ NOUN NNS _ 4 nmod _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 covered _ VERB VBN _ 17 acl:relcl _ _ 21 nearly _ ADV RB _ 27 advmod _ _ 22 all _ DET DT _ 27 det:predet _ _ 23 their _ PRON PRP$ _ 27 nmod:poss _ _ 24 medium _ NOUN NN _ 27 amod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 long-term _ ADJ JJ _ 24 conj _ _ 27 portfolios _ NOUN NNS _ 20 dobj _ _ 28 to _ ADP TO _ 30 case _ _ 29 less-developed _ ADJ JJ _ 30 amod _ _ 30 countries _ NOUN NNS _ 27 nmod _ _ 31 with _ ADP IN _ 32 case _ _ 32 reserves _ NOUN NNS _ 20 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 quarter _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 loss _ NOUN NN _ 6 nsubj _ _ 6 equals _ VERB VBZ _ 0 root _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 9.92 _ NUM CD _ 6 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 share _ NOUN NN _ 8 nmod:npmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Morgan _ PROPN NNP _ 7 nsubj _ _ 7 earned _ VERB VBD _ 0 root _ _ 8 $ _ SYM $ _ 7 dobj _ _ 9 233.6 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 1.25 _ NUM CD _ 8 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 George _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Salem _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 analyst _ NOUN NN _ 3 appos _ _ 6 at _ ADP IN _ 9 case _ _ 7 Prudential-Bache _ PROPN NNP _ 9 compound _ _ 8 Securities _ PROPN NNPS _ 9 compound _ _ 9 Inc. _ PROPN NNP _ 5 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 called _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 results _ NOUN NNS _ 16 dep _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 mildly _ ADV RB _ 16 advmod _ _ 16 disappointing _ ADJ JJ _ 11 xcomp _ _ 17 . _ PUNCT . _ 11 punct _ _ 18 '' _ PUNCT '' _ 11 punct _ _ 1 Excluding _ VERB VBG _ 19 advcl _ _ 2 the _ DET DT _ 6 det _ _ 3 $ _ SYM $ _ 6 amod _ _ 4 2 _ NUM CD _ 5 compound _ _ 5 billion _ NUM CD _ 3 nummod _ _ 6 provision _ NOUN NN _ 1 dobj _ _ 7 and _ CONJ CC _ 1 cc _ _ 8 allowing _ VERB VBG _ 1 conj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 taxes _ NOUN NNS _ 8 nmod _ _ 12 Morgan _ PROPN NNP _ 13 nsubj _ _ 13 paid _ VERB VBD _ 11 acl:relcl _ _ 14 , _ PUNCT , _ 19 punct _ _ 15 earnings _ NOUN NNS _ 19 nsubj _ _ 16 were _ VERB VBD _ 19 cop _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 65 _ NUM CD _ 19 nummod _ _ 19 cents _ NOUN NNS _ 25 ccomp _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Salem _ PROPN NNP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN JJ _ 7 compound _ _ 7 trading _ NOUN NN _ 11 nmod _ _ 8 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 Morgan _ PROPN NNP _ 11 nsubj _ _ 11 climbed _ VERB VBD _ 0 root _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 1.50 _ NUM CD _ 11 dobj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 44.125 _ NUM CD _ 11 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 Net _ ADJ JJ _ 3 amod _ _ 2 interest _ NOUN NN _ 3 compound _ _ 3 income _ NOUN NN _ 4 nsubj _ _ 4 sank _ VERB VBD _ 0 root _ _ 5 27 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 quarter _ NOUN NN _ 4 nmod _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 4 nmod _ _ 12 254 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 4 nmod _ _ 16 347 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 interest _ NOUN NN _ 3 compound _ _ 3 rate _ NOUN NN _ 21 nsubj _ _ 4 on _ ADP IN _ 6 case _ _ 5 short-term _ ADJ JJ _ 6 amod _ _ 6 funds _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 10 dobj _ _ 9 banks _ NOUN NNS _ 10 nsubj _ _ 10 borrow _ VERB VBP _ 6 acl:relcl _ _ 11 to _ PART TO _ 12 mark _ _ 12 finance _ VERB VB _ 10 xcomp _ _ 13 longer-term _ ADJ JJ _ 14 amod _ _ 14 loans _ NOUN NNS _ 12 dobj _ _ 15 to _ ADP TO _ 16 case _ _ 16 customers _ NOUN NNS _ 14 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 was _ VERB VBD _ 21 cop _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 sharply _ ADV RB _ 21 advmod _ _ 21 higher _ ADJ JJR _ 25 ccomp _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 Morgan _ PROPN NNP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Morgan _ PROPN NNP _ 2 nsubj _ _ 2 received _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 2 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 of _ ADP IN _ 8 case _ _ 7 interest _ NOUN NN _ 8 compound _ _ 8 payments _ NOUN NNS _ 3 nmod _ _ 9 on _ ADP IN _ 15 case _ _ 10 its _ PRON PRP$ _ 15 nmod:poss _ _ 11 medium _ ADJ NN _ 15 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 long-term _ ADJ JJ _ 11 conj _ _ 14 Brazilian _ ADJ JJ _ 15 amod _ _ 15 loans _ NOUN NNS _ 8 nmod _ _ 16 ; _ PUNCT : _ 2 punct _ _ 17 had _ AUX VBD _ 20 aux _ _ 18 they _ PRON PRP _ 20 nsubj _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 accruing _ VERB VBG _ 32 advcl _ _ 21 interest _ NOUN NN _ 20 dobj _ _ 22 , _ PUNCT , _ 32 punct _ _ 23 net _ ADJ JJ _ 25 amod _ _ 24 interest _ NOUN NN _ 25 compound _ _ 25 income _ NOUN NN _ 32 nsubj _ _ 26 would _ AUX MD _ 32 aux _ _ 27 have _ AUX VB _ 32 aux _ _ 28 been _ VERB VBN _ 32 cop _ _ 29 $ _ SYM $ _ 32 nmod:npmod _ _ 30 35 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 higher _ ADJ JJR _ 38 ccomp _ _ 33 in _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 quarter _ NOUN NN _ 32 nmod _ _ 36 , _ PUNCT , _ 38 punct _ _ 37 Morgan _ PROPN NNP _ 38 nsubj _ _ 38 said _ VERB VBD _ 2 parataxis _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Such _ ADJ JJ _ 2 amod _ _ 2 loans _ NOUN NNS _ 6 nsubj _ _ 3 to _ ADP TO _ 4 case _ _ 4 Argentina _ PROPN NNP _ 2 nmod _ _ 5 also _ ADV RB _ 6 advmod _ _ 6 remain _ VERB VBP _ 0 root _ _ 7 classified _ ADJ VBN _ 6 xcomp _ _ 8 as _ ADP IN _ 9 case _ _ 9 non-accruing _ ADJ JJ _ 7 advcl _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 costing _ VERB VBG _ 6 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 bank _ NOUN NN _ 11 iobj _ _ 14 $ _ SYM $ _ 11 dobj _ _ 15 10 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 of _ ADP IN _ 19 case _ _ 18 interest _ NOUN NN _ 19 compound _ _ 19 income _ NOUN NN _ 14 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 period _ NOUN NN _ 11 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Income _ NOUN NN _ 7 nsubj _ _ 2 from _ ADP IN _ 3 case _ _ 3 sources _ NOUN NNS _ 1 nmod _ _ 4 other _ ADJ JJ _ 3 amod _ _ 5 than _ ADP IN _ 6 case _ _ 6 interest _ NOUN NN _ 4 nmod _ _ 7 climbed _ VERB VBD _ 0 root _ _ 8 12 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 7 nmod _ _ 12 414 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 reflecting _ VERB VBG _ 7 advcl _ _ 16 higher _ ADJ JJR _ 20 amod _ _ 17 corporate-finance _ NOUN JJ _ 20 compound _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 other _ ADJ JJ _ 17 conj _ _ 20 fees _ NOUN NNS _ 15 dobj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 gains _ NOUN NNS _ 20 conj _ _ 23 on _ ADP IN _ 24 case _ _ 24 sales _ NOUN NNS _ 22 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 investment _ NOUN NN _ 27 compound _ _ 27 securities _ NOUN NNS _ 24 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 These _ DET DT _ 3 det _ _ 3 increases _ NOUN NNS _ 6 nsubjpass _ _ 4 were _ AUX VBD _ 6 auxpass _ _ 5 partly _ ADV RB _ 6 advmod _ _ 6 offset _ VERB VBN _ 15 ccomp _ _ 7 by _ ADP IN _ 11 case _ _ 8 lower _ ADJ JJR _ 11 amod _ _ 9 trading-related _ ADJ JJ _ 11 amod _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 income _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 bank _ NOUN NN _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Non-interest _ ADJ JJ _ 2 amod _ _ 2 expenses _ NOUN NNS _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 16 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 3 nmod _ _ 8 496 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 2 compound _ _ 2 Corp _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 NCNB _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 net _ ADJ JJ _ 5 amod _ _ 5 income _ NOUN NN _ 8 nsubj _ _ 6 more _ ADV RBR _ 8 advmod _ _ 7 than _ ADP IN _ 6 case _ _ 8 doubled _ VERB VBN _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 period _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 largely _ ADV RB _ 18 advmod _ _ 14 because _ ADP IN _ 18 case _ _ 15 of _ ADP IN _ 14 mwe _ _ 16 continued _ VERB VBN _ 18 amod _ _ 17 strong _ ADJ JJ _ 18 amod _ _ 18 performance _ NOUN NN _ 8 nmod _ _ 19 by _ ADP IN _ 24 case _ _ 20 the _ DET DT _ 21 det _ _ 21 bank _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 Texas _ PROPN NNP _ 24 compound _ _ 24 operations _ NOUN NNS _ 18 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Charlotte _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.C. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 earnings _ NOUN NNS _ 9 nsubj _ _ 9 rose _ VERB VBD _ 7 ccomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 143.6 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.45 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 from _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 9 nmod _ _ 23 58.9 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 or _ CONJ CC _ 22 cc _ _ 27 69 _ NUM CD _ 28 nummod _ _ 28 cents _ NOUN NNS _ 22 conj _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 , _ PUNCT , _ 22 punct _ _ 32 a _ DET DT _ 33 det _ _ 33 year _ NOUN NN _ 34 nmod:npmod _ _ 34 earlier _ ADV RBR _ 22 advmod _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 quarter _ NOUN NN _ 4 nsubj _ _ 4 included _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 gain _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 56.1 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 59 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 8 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 related _ VERB JJ _ 6 amod _ _ 19 to _ ADP TO _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 purchase _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 remaining _ ADJ VBG _ 26 amod _ _ 25 51 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 21 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 NCNB _ PROPN NNP _ 31 compound _ _ 29 Texas _ PROPN NNP _ 31 compound _ _ 30 National _ PROPN NNP _ 31 compound _ _ 31 Bank _ PROPN NNP _ 26 nmod _ _ 32 from _ ADP IN _ 37 case _ _ 33 the _ DET DT _ 37 det _ _ 34 Federal _ PROPN NNP _ 37 compound _ _ 35 Deposit _ PROPN NNP _ 37 compound _ _ 36 Insurance _ PROPN NNP _ 37 compound _ _ 37 Corp _ PROPN NNP _ 21 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 strong _ ADJ JJ _ 3 amod _ _ 3 performance _ NOUN NN _ 7 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 contrasted _ VERB VBN _ 0 root _ _ 8 with _ ADP IN _ 12 case _ _ 9 an _ DET DT _ 12 det _ _ 10 unexpectedly _ ADV RB _ 11 advmod _ _ 11 large _ ADJ JJ _ 12 amod _ _ 12 increase _ NOUN NN _ 7 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 size _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 NCNB _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 problem _ NOUN NN _ 20 compound _ _ 20 loans _ NOUN NNS _ 15 nmod _ _ 21 , _ PUNCT , _ 7 punct _ _ 22 particularly _ ADV RB _ 25 advmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 Southeast _ PROPN NNP _ 7 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 nonperforming _ VERB VBG _ 7 amod _ _ 7 assets _ NOUN NNS _ 8 nsubj _ _ 8 jumped _ VERB VBD _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 $ _ SYM $ _ 8 nmod _ _ 11 474.1 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 1.43 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 10 conj _ _ 17 of _ ADP IN _ 19 case _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 loans _ NOUN NNS _ 16 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 leases _ NOUN NNS _ 19 conj _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 from _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 8 nmod _ _ 25 232.8 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 1.13 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 24 conj _ _ 31 in _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 second _ ADJ JJ _ 34 amod _ _ 34 quarter _ NOUN NN _ 24 nmod _ _ 35 . _ PUNCT . _ 8 punct _ _ 1 Nonperformers _ NOUN NNS _ 2 nsubj _ _ 2 totaled _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 230.8 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 or _ CONJ CC _ 3 cc _ _ 8 1.27 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 3 conj _ _ 10 in _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 year-ago _ ADJ JJ _ 14 amod _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 2 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Included _ VERB VBN _ 0 root _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 increase _ NOUN NN _ 1 nmod _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 most _ ADV RBS _ 8 advmod _ _ 8 recent _ ADJ JJ _ 9 amod _ _ 9 quarter _ NOUN NN _ 4 nmod _ _ 10 is _ AUX VBZ _ 1 auxpass _ _ 11 a _ DET DT _ 15 det _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 33 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 loan _ NOUN NN _ 1 nsubjpass _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 19 dobj _ _ 18 NCNB _ PROPN NNP _ 19 nsubj _ _ 19 said _ VERB VBD _ 15 acl:relcl _ _ 20 it _ PRON PRP _ 22 nsubj _ _ 21 `` _ PUNCT `` _ 22 punct _ _ 22 expects _ VERB VBZ _ 19 ccomp _ _ 23 to _ PART TO _ 26 mark _ _ 24 be _ AUX VB _ 26 auxpass _ _ 25 fully _ ADV RB _ 26 advmod _ _ 26 repaid _ VERB VBN _ 22 xcomp _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 with _ ADP IN _ 30 case _ _ 29 no _ DET DT _ 30 neg _ _ 30 loss _ NOUN NN _ 26 nmod _ _ 31 , _ PUNCT , _ 26 punct _ _ 32 early _ ADV RB _ 26 advmod _ _ 33 in _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 fourth _ ADJ JJ _ 36 amod _ _ 36 quarter _ NOUN NN _ 32 nmod _ _ 37 . _ PUNCT . _ 1 punct _ _ 38 '' _ PUNCT '' _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 deterioration _ NOUN NN _ 6 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 credit _ NOUN NN _ 5 compound _ _ 5 quality _ NOUN NN _ 2 nmod _ _ 6 offset _ VERB VBD _ 0 root _ _ 7 strong _ ADJ JJ _ 9 amod _ _ 8 loan _ NOUN NN _ 9 compound _ _ 9 growth _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 17 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 9 nmod _ _ 13 in _ ADP IN _ 17 case _ _ 14 NCNB _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Southeast _ PROPN NNP _ 17 compound _ _ 17 operations _ NOUN NNS _ 9 nmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 as _ ADV RB _ 9 cc _ _ 20 well _ ADV RB _ 19 mwe _ _ 21 as _ ADP IN _ 19 mwe _ _ 22 a _ DET DT _ 25 det _ _ 23 28 _ NUM CD _ 24 compound _ _ 24 % _ SYM NN _ 25 amod _ _ 25 growth _ NOUN NN _ 9 conj _ _ 26 in _ ADP IN _ 27 case _ _ 27 deposits _ NOUN NNS _ 25 nmod _ _ 28 resulting _ VERB VBG _ 25 acl _ _ 29 from _ ADP IN _ 33 case _ _ 30 an _ DET DT _ 33 det _ _ 31 aggressive _ ADJ JJ _ 33 amod _ _ 32 marketing _ NOUN NN _ 33 compound _ _ 33 campaign _ NOUN NN _ 28 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 higher _ ADJ JJR _ 3 amod _ _ 3 rates _ NOUN NNS _ 8 nsubj _ _ 4 paid _ VERB VBN _ 3 acl _ _ 5 on _ ADP IN _ 6 case _ _ 6 deposits _ NOUN NNS _ 4 nmod _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 helped _ VERB VBD _ 0 root _ _ 9 squeeze _ VERB NN _ 8 ccomp _ _ 10 NCNB _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 net _ ADJ JJ _ 14 amod _ _ 13 interest _ NOUN NN _ 14 compound _ _ 14 margin _ NOUN NN _ 9 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Southeast _ PROPN NNP _ 14 nmod _ _ 18 to _ ADP TO _ 20 case _ _ 19 3.38 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 9 nmod _ _ 21 from _ ADP IN _ 23 case _ _ 22 3.80 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 9 nmod _ _ 24 a _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 26 nmod:npmod _ _ 26 earlier _ ADV RBR _ 23 advmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 Big _ PROPN NNP _ 5 compound _ _ 3 Board _ PROPN NNP _ 5 compound _ _ 4 composite _ NOUN JJ _ 5 compound _ _ 5 trading _ NOUN NN _ 9 nmod _ _ 6 yesterday _ NOUN NN _ 9 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 NCNB _ PROPN NNP _ 9 nsubj _ _ 9 jumped _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 3.50 _ NUM CD _ 9 dobj _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 to _ ADP TO _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 51 _ NUM CD _ 9 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Results _ NOUN NNS _ 3 nsubjpass _ _ 2 were _ AUX VBD _ 3 auxpass _ _ 3 released _ VERB VBN _ 0 root _ _ 4 after _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 closed _ VERB VBD _ 3 advcl _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 3 compound _ _ 2 Texas _ PROPN NNP _ 3 compound _ _ 3 National _ PROPN NNP _ 19 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 formed _ VERB VBN _ 3 acl _ _ 6 from _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 remnants _ NOUN NNS _ 5 nmod _ _ 9 of _ ADP IN _ 8 dep _ _ 10 of _ ADP IN _ 15 case _ _ 11 the _ DET DT _ 15 det _ _ 12 failed _ VERB VBN _ 15 amod _ _ 13 First _ PROPN NNP _ 15 compound _ _ 14 RepublicBank _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 8 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 Dallas _ PROPN NNP _ 15 nmod _ _ 18 , _ PUNCT , _ 3 punct _ _ 19 contributed _ VERB VBD _ 0 root _ _ 20 $ _ SYM $ _ 19 dobj _ _ 21 76.9 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 to _ ADP TO _ 27 case _ _ 24 NCNB _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 bottom _ ADJ JJ _ 27 amod _ _ 27 line _ NOUN NN _ 19 nmod _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 third _ ADJ JJ _ 31 amod _ _ 31 quarter _ NOUN NN _ 19 nmod _ _ 32 . _ PUNCT . _ 19 punct _ _ 1 NCNB _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 third-quarter _ NOUN JJ _ 5 compound _ _ 5 results _ NOUN NNS _ 6 nsubj _ _ 6 reflect _ VERB VBP _ 2 ccomp _ _ 7 100 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 earnings _ NOUN NNS _ 8 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Texas _ PROPN NNP _ 14 compound _ _ 14 operation _ NOUN NN _ 10 nmod _ _ 15 since _ ADP IN _ 16 case _ _ 16 Aug. _ PROPN NNP _ 10 nmod _ _ 17 1 _ NUM CD _ 16 nummod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 NCNB _ PROPN NNP _ 2 nsubj _ _ 2 raised _ VERB VBD _ 0 root _ _ 3 some _ DET DT _ 4 advmod _ _ 4 $ _ SYM $ _ 2 dobj _ _ 5 1.9 _ NUM CD _ 6 compound _ _ 6 billion _ NUM CD _ 4 nummod _ _ 7 in _ ADP IN _ 9 case _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 capital _ NOUN NN _ 4 nmod _ _ 10 during _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 quarter _ NOUN NN _ 2 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 complete _ VERB VB _ 2 dep _ _ 15 the _ DET DT _ 18 det _ _ 16 NCNB _ PROPN NNP _ 18 compound _ _ 17 Texas _ PROPN NNP _ 18 compound _ _ 18 purchase _ NOUN NN _ 14 dobj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 and _ CONJ CC _ 14 cc _ _ 21 to _ PART TO _ 22 mark _ _ 22 acquire _ VERB VB _ 14 conj _ _ 23 several _ ADJ JJ _ 26 amod _ _ 24 small _ ADJ JJ _ 26 amod _ _ 25 failed _ VERB VBD _ 26 amod _ _ 26 thrifts _ NOUN NNS _ 22 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 fill _ VERB VB _ 22 advcl _ _ 29 out _ ADP RP _ 28 compound:prt _ _ 30 its _ PRON PRP$ _ 32 nmod:poss _ _ 31 regional _ ADJ JJ _ 32 amod _ _ 32 franchise _ NOUN NN _ 28 dobj _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 banking _ NOUN NN _ 6 compound _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 purchased _ VERB VBD _ 7 ccomp _ _ 10 both _ DET CC _ 12 cc:preconj _ _ 11 Freedom _ PROPN NNP _ 12 compound _ _ 12 Savings _ PROPN NNP _ 9 dobj _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Loan _ PROPN NNP _ 15 compound _ _ 15 Association _ PROPN NNP _ 12 conj _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 Tampa _ PROPN NNP _ 12 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Fla. _ PROPN NNP _ 17 appos _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 and _ CONJ CC _ 12 cc _ _ 22 University _ PROPN NNP _ 25 compound _ _ 23 Federal _ PROPN NNP _ 25 compound _ _ 24 Savings _ PROPN NNP _ 25 compound _ _ 25 Association _ PROPN NNP _ 12 conj _ _ 26 of _ ADP IN _ 28 case _ _ 27 San _ PROPN NNP _ 28 compound _ _ 28 Antonio _ PROPN NNP _ 25 nmod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 Texas _ PROPN NNP _ 28 appos _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 for _ ADP IN _ 33 case _ _ 33 $ _ SYM $ _ 9 nmod _ _ 34 169.4 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 nine _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 11 nmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 NCNB _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 11 nsubj _ _ 11 climbed _ VERB VBD _ 0 root _ _ 12 65 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 $ _ SYM $ _ 11 nmod _ _ 16 310.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 3.30 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 from _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 11 nmod _ _ 27 188.2 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 or _ CONJ CC _ 26 cc _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 2.22 _ NUM CD _ 26 conj _ _ 33 a _ DET DT _ 34 det _ _ 34 share _ NOUN NN _ 32 nmod:npmod _ _ 35 , _ PUNCT , _ 26 punct _ _ 36 a _ DET DT _ 37 det _ _ 37 year _ NOUN NN _ 38 nmod:npmod _ _ 38 earlier _ ADV RBR _ 26 advmod _ _ 39 . _ PUNCT . _ 11 punct _ _ 1 Security _ PROPN NNP _ 3 compound _ _ 2 Pacific _ PROPN NNP _ 3 compound _ _ 3 Corp _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Security _ PROPN NNP _ 2 compound _ _ 2 Pacific _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 earnings _ NOUN NNS _ 5 compound _ _ 5 growth _ NOUN NN _ 6 nsubj _ _ 6 slowed _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 18 det _ _ 14 Los _ PROPN NNP _ 18 compound _ _ 15 Angeles _ PROPN NNP _ 18 compound _ _ 16 bank _ NOUN NN _ 18 compound _ _ 17 holding _ VERB VBG _ 18 amod _ _ 18 company _ NOUN NN _ 21 nsubj _ _ 19 was _ VERB VBD _ 21 cop _ _ 20 still _ ADV RB _ 21 advmod _ _ 21 able _ ADJ JJ _ 6 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 post _ VERB VB _ 21 xcomp _ _ 24 a _ DET DT _ 27 det _ _ 25 10 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 27 amod _ _ 27 increase _ NOUN NN _ 23 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 net _ ADJ JJ _ 30 amod _ _ 30 income _ NOUN NN _ 27 nmod _ _ 31 because _ ADP IN _ 34 case _ _ 32 of _ ADP IN _ 31 mwe _ _ 33 robust _ ADJ JJ _ 34 amod _ _ 34 growth _ NOUN NN _ 23 nmod _ _ 35 in _ ADP IN _ 37 case _ _ 36 residential _ ADJ JJ _ 37 amod _ _ 37 real-estate _ NOUN NN _ 34 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 consumer _ NOUN NN _ 40 compound _ _ 40 loans _ NOUN NNS _ 37 conj _ _ 41 . _ PUNCT . _ 6 punct _ _ 1 Net _ ADJ NN _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 185.1 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 or _ CONJ CC _ 4 cc _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 1.55 _ NUM CD _ 4 conj _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 2 nmod _ _ 16 167.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.47 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 a _ DET DT _ 26 det _ _ 26 year _ NOUN NN _ 27 nmod:npmod _ _ 27 earlier _ ADV RBR _ 15 advmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 gain _ NOUN NN _ 6 nsubj _ _ 6 resulted _ VERB VBD _ 3 ccomp _ _ 7 mainly _ ADV RB _ 6 advmod _ _ 8 from _ ADP IN _ 13 case _ _ 9 a _ DET DT _ 13 det _ _ 10 $ _ SYM $ _ 13 amod _ _ 11 54 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 increase _ NOUN NN _ 6 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 net _ ADJ JJ _ 17 amod _ _ 16 interest _ NOUN NN _ 17 compound _ _ 17 income _ NOUN NN _ 13 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 reflecting _ VERB VBG _ 6 xcomp _ _ 20 a _ DET DT _ 23 det _ _ 21 33 _ NUM CD _ 22 compound _ _ 22 % _ SYM NN _ 23 amod _ _ 23 increase _ NOUN NN _ 19 dobj _ _ 24 in _ ADP IN _ 27 case _ _ 25 real _ NOUN JJ _ 27 compound _ _ 26 estate _ NOUN NN _ 27 compound _ _ 27 loans _ NOUN NNS _ 23 nmod _ _ 28 -LRB- _ PUNCT -LRB- _ 30 punct _ _ 29 mainly _ ADV RB _ 30 advmod _ _ 30 residential _ ADJ JJ _ 27 dep _ _ 31 -RRB- _ PUNCT -RRB- _ 30 punct _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 and _ CONJ CC _ 23 cc _ _ 34 a _ DET DT _ 37 det _ _ 35 19 _ NUM CD _ 36 compound _ _ 36 % _ SYM NN _ 37 amod _ _ 37 rise _ NOUN NN _ 23 conj _ _ 38 in _ ADP IN _ 40 case _ _ 39 consumer _ NOUN NN _ 40 compound _ _ 40 loans _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 These _ DET DT _ 3 det _ _ 2 high-yielding _ ADJ JJ _ 3 amod _ _ 3 loans _ NOUN NNS _ 6 nsubj _ _ 4 in _ ADP IN _ 5 case _ _ 5 effect _ NOUN NN _ 6 advmod _ _ 6 replaced _ VERB VBD _ 0 root _ _ 7 some _ DET DT _ 9 det _ _ 8 low-yielding _ ADJ JJ _ 9 amod _ _ 9 assets _ NOUN NNS _ 6 dobj _ _ 10 such _ ADJ JJ _ 13 case _ _ 11 as _ ADP IN _ 10 mwe _ _ 12 inter-bank _ ADJ JJ _ 13 amod _ _ 13 loans _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 17 nsubjpass _ _ 16 were _ AUX VBD _ 17 auxpass _ _ 17 allowed _ VERB VBN _ 13 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 decrease _ VERB VB _ 17 xcomp _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 Security _ PROPN NNP _ 6 compound _ _ 6 Pacific _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 net _ ADJ JJ _ 10 amod _ _ 9 interest _ NOUN NN _ 10 compound _ _ 10 margin _ NOUN NN _ 11 nsubj _ _ 11 fell _ VERB VBD _ 0 root _ _ 12 only _ ADV RB _ 13 advmod _ _ 13 13 _ NUM CD _ 15 nummod _ _ 14 basis _ NOUN NN _ 15 compound _ _ 15 points _ NOUN NNS _ 11 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 20 det _ _ 18 more _ ADV RBR _ 19 advmod _ _ 19 mild _ ADJ JJ _ 20 amod _ _ 20 decrease _ NOUN NN _ 15 appos _ _ 21 than _ ADP IN _ 24 case _ _ 22 some _ DET DT _ 24 det _ _ 23 major _ ADJ JJ _ 24 amod _ _ 24 banks _ NOUN NNS _ 20 nmod _ _ 25 outside _ ADP IN _ 26 case _ _ 26 California _ PROPN NNP _ 24 nmod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 which _ PRON WDT _ 31 nsubj _ _ 29 have _ AUX VBP _ 31 aux _ _ 30 been _ AUX VBN _ 31 aux _ _ 31 reporting _ VERB VBG _ 24 acl:relcl _ _ 32 more _ ADV RBR _ 33 advmod _ _ 33 sluggish _ ADJ JJ _ 34 amod _ _ 34 earnings _ NOUN NNS _ 31 dobj _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 Security _ PROPN NNP _ 3 compound _ _ 2 Pacific _ PROPN NNP _ 3 compound _ _ 3 shares _ NOUN NNS _ 4 nsubj _ _ 4 closed _ VERB VBD _ 0 root _ _ 5 at _ ADP IN _ 7 case _ _ 6 $ _ SYM $ _ 7 dep _ _ 7 44.625 _ NUM CD _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 down _ ADV RB _ 4 advmod _ _ 10 37.5 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 in _ ADP IN _ 17 case _ _ 14 Big _ PROPN NNP _ 17 compound _ _ 15 Board _ PROPN NNP _ 17 compound _ _ 16 composite _ ADJ JJ _ 17 amod _ _ 17 trading _ NOUN NN _ 4 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 earnings _ NOUN NNS _ 3 nsubj _ _ 3 represent _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 0.89 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 return _ NOUN NN _ 3 dobj _ _ 8 on _ ADP IN _ 9 case _ _ 9 assets _ NOUN NNS _ 7 nmod _ _ 10 for _ ADP IN _ 12 case _ _ 11 Security _ PROPN NNP _ 12 compound _ _ 12 Pacific _ PROPN NNP _ 7 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 and _ CONJ CC _ 7 cc _ _ 15 an _ DET DT _ 18 det _ _ 16 18.9 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 return _ NOUN NN _ 7 conj _ _ 19 on _ ADP IN _ 20 case _ _ 20 equity _ NOUN NN _ 18 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 loan _ NOUN NN _ 3 compound _ _ 3 growth _ NOUN NN _ 4 nsubj _ _ 4 offset _ VERB VBP _ 0 root _ _ 5 continuing _ VERB VBG _ 8 amod _ _ 6 real-estate _ NOUN NN _ 8 compound _ _ 7 loan _ NOUN NN _ 8 compound _ _ 8 losses _ NOUN NNS _ 4 dobj _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 depressed _ VERB JJ _ 13 amod _ _ 12 Arizona _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 8 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Security _ PROPN NNP _ 2 compound _ _ 2 Pacific _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 33 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 increase _ NOUN NN _ 3 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 net _ ADJ JJ _ 11 amod _ _ 10 credit _ NOUN NN _ 11 compound _ _ 11 losses _ NOUN NNS _ 7 nmod _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 quarter _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 to _ ADP TO _ 17 case _ _ 17 $ _ SYM $ _ 7 nmod _ _ 18 109 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 from _ ADP IN _ 21 case _ _ 21 $ _ SYM $ _ 7 nmod _ _ 22 81.9 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 in _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 year-ago _ ADJ JJ _ 27 amod _ _ 27 period _ NOUN NN _ 21 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Nonperforming _ VERB VBG _ 2 amod _ _ 2 loans _ NOUN NNS _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 slightly _ ADV RB _ 3 advmod _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 3 nmod _ _ 7 1.75 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 at _ ADP IN _ 10 case _ _ 10 Sept. _ PROPN NNP _ 6 nmod _ _ 11 30 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 3 nmod _ _ 15 1.7 _ NUM CD _ 16 compound _ _ 16 billion _ NUM CD _ 14 nummod _ _ 17 a _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 19 nmod:npmod _ _ 19 ago _ ADV RB _ 14 advmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Security _ PROPN NNP _ 2 compound _ _ 2 Pacific _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 loan-loss _ ADJ NN _ 5 amod _ _ 5 provision _ NOUN NN _ 6 nsubj _ _ 6 was _ VERB VBD _ 0 root _ _ 7 down _ ADV RB _ 6 advmod _ _ 8 22 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 nmod:npmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 or _ CONJ CC _ 9 cc _ _ 12 $ _ SYM $ _ 9 conj _ _ 13 30.4 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 because _ SCONJ IN _ 18 mark _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 added _ VERB VBD _ 6 advcl _ _ 19 to _ ADP TO _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 foreign-debt _ ADJ NN _ 22 amod _ _ 22 reserve _ NOUN NN _ 18 nmod _ _ 23 the _ DET DT _ 24 det _ _ 24 year _ NOUN NN _ 25 nmod:npmod _ _ 25 before _ ADV IN _ 18 advmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 Non-interest _ ADJ JJ _ 2 amod _ _ 2 income _ NOUN NN _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 6 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 quarter _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 mainly _ ADV RB _ 15 advmod _ _ 11 because _ ADP IN _ 15 case _ _ 12 of _ ADP IN _ 11 mwe _ _ 13 an _ DET DT _ 15 det _ _ 14 unusual _ ADJ JJ _ 15 amod _ _ 15 gain _ NOUN NN _ 3 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 year _ NOUN NN _ 18 nmod:npmod _ _ 18 earlier _ ADV RB _ 15 advmod _ _ 19 from _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 sale _ NOUN NN _ 15 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 Hong _ PROPN NNP _ 26 compound _ _ 24 Kong _ PROPN NNP _ 26 compound _ _ 25 banking _ NOUN NN _ 26 compound _ _ 26 operations _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Non-interest _ ADJ JJ _ 2 amod _ _ 2 expense _ NOUN NN _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 4 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 3 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 period _ NOUN NN _ 3 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 net _ ADJ NN _ 7 nsubj _ _ 7 rose _ VERB VBD _ 0 root _ _ 8 17 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 to _ ADP TO _ 13 case _ _ 11 $ _ SYM $ _ 13 dep _ _ 12 548.9 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 7 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 4.67 _ NUM CD _ 13 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 13 punct _ _ 21 from _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 7 nmod _ _ 23 469.4 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 or _ CONJ CC _ 22 cc _ _ 27 $ _ SYM $ _ 28 dep _ _ 28 4.13 _ NUM CD _ 22 conj _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 , _ PUNCT , _ 22 punct _ _ 32 a _ DET DT _ 33 det _ _ 33 year _ NOUN NN _ 34 nmod:npmod _ _ 34 earlier _ ADV RBR _ 22 advmod _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 LIN _ PROPN NNP _ 3 compound _ _ 2 Broadcasting _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 wo _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 take _ VERB VB _ 4 ccomp _ _ 9 a _ DET DT _ 10 det _ _ 10 position _ NOUN NN _ 8 dobj _ _ 11 on _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 revised _ VERB VBN _ 15 amod _ _ 14 tender _ NOUN NN _ 15 compound _ _ 15 offer _ NOUN NN _ 10 nmod _ _ 16 by _ ADP IN _ 20 case _ _ 17 McCaw _ PROPN NNP _ 20 compound _ _ 18 Cellular _ PROPN NNP _ 20 compound _ _ 19 Communications _ PROPN NNPS _ 20 compound _ _ 20 Inc. _ PROPN NNP _ 15 nmod _ _ 21 to _ PART TO _ 22 mark _ _ 22 buy _ VERB VB _ 15 acl _ _ 23 LIN _ PROPN NNP _ 22 dobj _ _ 24 and _ CONJ CC _ 8 cc _ _ 25 has _ AUX VBZ _ 26 aux _ _ 26 asked _ VERB VBN _ 8 conj _ _ 27 for _ ADP IN _ 28 case _ _ 28 clarification _ NOUN NN _ 26 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 offer _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 offer _ NOUN NN _ 19 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 seeks _ VERB VBZ _ 3 acl:relcl _ _ 7 50.3 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 of _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 cellular _ ADJ JJ _ 14 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 broadcasting _ NOUN NN _ 11 conj _ _ 14 concern _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 for _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 125 _ NUM CD _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 for _ ADP IN _ 26 case _ _ 23 22 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 26 nummod _ _ 25 LIN _ PROPN NNP _ 26 compound _ _ 26 shares _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 19 punct _ _ 1 McCaw _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 revised _ VERB VBN _ 5 amod _ _ 4 tender _ NOUN NN _ 5 compound _ _ 5 offer _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 require _ VERB VB _ 0 root _ _ 8 McCaw _ PROPN NNP _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 begin _ VERB VB _ 7 xcomp _ _ 11 an _ DET DT _ 13 det _ _ 12 auction _ NOUN NN _ 13 compound _ _ 13 process _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 July _ PROPN NNP _ 10 nmod _ _ 16 1994 _ NUM CD _ 15 nummod _ _ 17 that _ PRON WDT _ 19 nsubj _ _ 18 would _ AUX MD _ 19 aux _ _ 19 buy _ VERB VB _ 10 dep _ _ 20 out _ ADP RP _ 19 compound:prt _ _ 21 remaining _ ADJ VBG _ 22 amod _ _ 22 holders _ NOUN NNS _ 19 dobj _ _ 23 at _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 per-share _ ADJ JJ _ 26 amod _ _ 26 price _ NOUN NN _ 19 nmod _ _ 27 roughly _ ADV RB _ 28 advmod _ _ 28 equivalent _ ADJ JJ _ 26 amod _ _ 29 to _ ADP TO _ 36 mark _ _ 30 what _ PRON WP _ 38 dobj _ _ 31 a _ DET DT _ 33 det _ _ 32 third _ ADJ JJ _ 33 amod _ _ 33 party _ NOUN NN _ 36 nsubj _ _ 34 might _ AUX MD _ 36 aux _ _ 35 then _ ADV RB _ 36 advmod _ _ 36 have _ VERB VB _ 28 advcl _ _ 37 to _ PART TO _ 38 mark _ _ 38 pay _ VERB VB _ 36 xcomp _ _ 39 for _ ADP IN _ 40 case _ _ 40 all _ DET DT _ 38 nmod _ _ 41 of _ ADP IN _ 42 case _ _ 42 LIN _ PROPN NNP _ 40 nmod _ _ 43 . _ PUNCT . _ 7 punct _ _ 1 LIN _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 asking _ VERB VBG _ 0 root _ _ 4 McCaw _ PROPN NNP _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 clarify _ VERB VB _ 3 xcomp _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 tender _ NOUN NN _ 9 compound _ _ 9 offer _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 12 nsubj _ _ 12 challenges _ VERB VBZ _ 9 acl:relcl _ _ 13 an _ DET DT _ 14 det _ _ 14 agreement _ NOUN NN _ 12 dobj _ _ 15 between _ ADP IN _ 17 case _ _ 16 BellSouth _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 14 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 LIN _ PROPN NNP _ 17 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 merge _ VERB VB _ 14 acl _ _ 22 their _ PRON PRP$ _ 24 nmod:poss _ _ 23 cellular-telephone _ ADJ JJ _ 24 amod _ _ 24 businesses _ NOUN NNS _ 21 dobj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 BellSouth _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 notified _ VERB VBN _ 0 root _ _ 4 LIN _ PROPN NNP _ 3 dobj _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 it _ PRON PRP _ 10 nsubj _ _ 7 would _ AUX MD _ 10 aux _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 shortly _ ADV RB _ 10 advmod _ _ 10 respond _ VERB VBP _ 3 ccomp _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 McCaw _ PROPN NNP _ 14 compound _ _ 14 proposal _ NOUN NN _ 10 nmod _ _ 15 in _ ADP IN _ 21 case _ _ 16 as _ ADV IN _ 17 advmod _ _ 17 full _ ADJ JJ _ 21 amod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 effective _ ADJ JJ _ 17 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 manner _ NOUN NN _ 10 nmod _ _ 22 as _ SCONJ IN _ 24 mark _ _ 23 is _ AUX VBZ _ 24 auxpass _ _ 24 warranted _ VERB VBN _ 21 dep _ _ 25 . _ PUNCT . _ 3 punct _ _ 26 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 LIN _ PROPN NNP _ 3 compound _ _ 3 board _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 holders _ NOUN NNS _ 8 nsubjpass _ _ 6 may _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 misled _ VERB VBN _ 4 ccomp _ _ 9 by _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 provision _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 McCaw _ PROPN NNP _ 15 compound _ _ 15 proposal _ NOUN NN _ 11 nmod _ _ 16 that _ ADP IN _ 18 nsubj _ _ 17 `` _ PUNCT `` _ 18 punct _ _ 18 guarantees _ NOUN NNS _ 11 acl:relcl _ _ 19 '' _ PUNCT '' _ 18 punct _ _ 20 private _ ADJ JJ _ 22 amod _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 value _ NOUN NN _ 18 dobj _ _ 23 after _ ADP IN _ 25 case _ _ 24 five _ NUM CD _ 25 nummod _ _ 25 years _ NOUN NNS _ 18 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 remaining _ ADJ VBG _ 29 amod _ _ 29 shares _ NOUN NNS _ 18 nmod _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 McCaw _ PROPN NNP _ 2 nsubj _ _ 2 has _ VERB VBZ _ 22 ccomp _ _ 3 `` _ PUNCT `` _ 2 punct _ _ 4 no _ DET DT _ 5 neg _ _ 5 obligation _ NOUN NN _ 2 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 purchase _ NOUN VB _ 5 acl _ _ 8 and _ CONJ CC _ 2 cc _ _ 9 the _ DET DT _ 10 det _ _ 10 definition _ NOUN NN _ 16 nsubj _ _ 11 of _ ADP IN _ 14 case _ _ 12 private _ ADJ JJ _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 value _ NOUN NN _ 10 nmod _ _ 15 is _ VERB VBZ _ 16 cop _ _ 16 uncertain _ ADJ JJ _ 2 conj _ _ 17 , _ PUNCT , _ 22 punct _ _ 18 '' _ PUNCT '' _ 22 punct _ _ 19 the _ DET DT _ 21 det _ _ 20 LIN _ PROPN NNP _ 21 compound _ _ 21 board _ NOUN NN _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 board _ NOUN NN _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 McCaw _ PROPN NNP _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 able _ ADJ JJ _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 control _ VERB VB _ 8 xcomp _ _ 11 LIN _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 operations _ NOUN NNS _ 10 dobj _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 could _ AUX MD _ 20 aux _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 `` _ PUNCT `` _ 20 punct _ _ 18 therefore _ ADV RB _ 20 advmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 operate _ VERB VBP _ 8 conj _ _ 21 LIN _ PROPN NNP _ 20 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 manner _ NOUN NN _ 20 nmod _ _ 25 which _ PRON WDT _ 27 nsubj _ _ 26 could _ AUX MD _ 27 aux _ _ 27 diminish _ VERB VB _ 24 acl:relcl _ _ 28 its _ PRON PRP$ _ 31 nmod:poss _ _ 29 private _ ADJ JJ _ 31 amod _ _ 30 market _ NOUN NN _ 31 compound _ _ 31 value _ NOUN NN _ 27 dobj _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 attractiveness _ NOUN NN _ 31 conj _ _ 34 to _ ADP TO _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 third-party _ ADJ JJ _ 37 amod _ _ 37 purchaser _ NOUN NN _ 33 nmod _ _ 38 in _ ADP IN _ 40 case _ _ 39 five _ NUM CD _ 40 nummod _ _ 40 years _ NOUN NNS _ 27 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 42 '' _ PUNCT '' _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 national _ ADJ JJ _ 4 amod _ _ 3 over-the-counter _ ADJ JJ _ 4 amod _ _ 4 trading _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 LIN _ PROPN NNP _ 7 nsubj _ _ 7 closed _ VERB VBD _ 0 root _ _ 8 at _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 104.75 _ NUM CD _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 down _ ADV RB _ 7 advmod _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 2.75 _ NUM CD _ 12 nmod:npmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 institutional _ ADJ JJ _ 5 amod _ _ 5 investors _ NOUN NNS _ 2 nmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 Telerate _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 5 nmod _ _ 9 said _ VERB VBD _ 0 root _ _ 10 that _ SCONJ IN _ 29 mark _ _ 11 Dow _ PROPN NNP _ 12 compound _ _ 12 Jones _ PROPN NNP _ 18 nmod:poss _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Co. _ PROPN NNP _ 12 conj _ _ 15 's _ PART POS _ 14 case _ _ 16 $ _ SYM $ _ 18 amod _ _ 17 18-a-share _ ADJ JJ _ 16 dep _ _ 18 offer _ NOUN NN _ 29 nsubj _ _ 19 for _ ADP IN _ 25 case _ _ 20 the _ DET DT _ 25 det _ _ 21 electronic _ ADJ JJ _ 25 amod _ _ 22 financial _ ADJ JJ _ 25 amod _ _ 23 information _ NOUN NN _ 25 compound _ _ 24 services _ NOUN NNS _ 25 compound _ _ 25 company _ NOUN NN _ 18 nmod _ _ 26 is _ VERB VBZ _ 29 cop _ _ 27 `` _ PUNCT `` _ 29 punct _ _ 28 grossly _ ADV RB _ 29 advmod _ _ 29 inadequate _ ADJ JJ _ 9 ccomp _ _ 30 . _ PUNCT . _ 9 punct _ _ 31 '' _ PUNCT '' _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 letter _ NOUN NN _ 32 nmod _ _ 4 filed _ VERB VBN _ 3 acl _ _ 5 with _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 10 det _ _ 7 Securities _ PROPN NNPS _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Exchange _ PROPN NNP _ 7 conj _ _ 10 Commission _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 32 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 group _ NOUN NN _ 32 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 16 nsubj _ _ 16 holds _ VERB VBZ _ 13 acl:relcl _ _ 17 about _ ADV IN _ 19 advmod _ _ 18 4.5 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 21 nummod _ _ 20 Telerate _ PROPN NNP _ 21 compound _ _ 21 shares _ NOUN NNS _ 16 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 or _ CONJ CC _ 21 cc _ _ 24 about _ ADV IN _ 25 advmod _ _ 25 4.7 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 21 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 shares _ NOUN NNS _ 26 nmod _ _ 30 outstanding _ ADJ JJ _ 29 amod _ _ 31 , _ PUNCT , _ 13 punct _ _ 32 said _ VERB VBD _ 0 root _ _ 33 `` _ PUNCT `` _ 32 punct _ _ 34 ... _ PUNCT : _ 32 punct _ _ 35 at _ ADP IN _ 36 case _ _ 36 present _ ADJ JJ _ 40 nmod _ _ 37 none _ NOUN NN _ 40 nsubj _ _ 38 of _ ADP IN _ 39 case _ _ 39 us _ PRON PRP _ 37 nmod _ _ 40 believes _ VERB VBZ _ 32 parataxis _ _ 41 an _ DET DT _ 42 det _ _ 42 offer _ NOUN NN _ 52 nsubj _ _ 43 for _ ADP IN _ 46 case _ _ 44 less _ ADJ JJR _ 46 advmod _ _ 45 than _ ADP IN _ 44 mwe _ _ 46 $ _ SYM $ _ 42 nmod _ _ 47 25 _ NUM CD _ 46 nummod _ _ 48 per _ ADP IN _ 49 case _ _ 49 share _ NOUN NN _ 46 nmod _ _ 50 would _ AUX MD _ 52 aux _ _ 51 be _ VERB VB _ 52 cop _ _ 52 fair _ ADJ JJ _ 40 ccomp _ _ 53 and _ CONJ CC _ 40 cc _ _ 54 some _ DET DT _ 55 nsubj _ _ 55 believe _ VERB VBP _ 40 conj _ _ 56 that _ DET IN _ 61 mark _ _ 57 $ _ SYM $ _ 58 dep _ _ 58 25 _ NUM CD _ 61 nsubj _ _ 59 is _ VERB VBZ _ 61 cop _ _ 60 too _ ADV RB _ 61 advmod _ _ 61 low _ ADJ JJ _ 55 ccomp _ _ 62 . _ PUNCT . _ 32 punct _ _ 63 '' _ PUNCT '' _ 32 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 letter _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 dated _ VERB VBN _ 0 root _ _ 5 Oct. _ PROPN NNP _ 4 nmod:tmod _ _ 6 6 _ NUM CD _ 5 nummod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 composite _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 13 nmod _ _ 4 on _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 New _ PROPN NNP _ 9 compound _ _ 7 York _ PROPN NNP _ 9 compound _ _ 8 Stock _ PROPN NNP _ 9 compound _ _ 9 Exchange _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Telerate _ PROPN NNP _ 12 compound _ _ 12 shares _ NOUN NNS _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 18.875 _ NUM CD _ 13 nmod _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 down _ ADV RB _ 13 advmod _ _ 20 75 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 19 nmod:npmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 Dow _ PROPN NNP _ 2 compound _ _ 2 Jones _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 publisher _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 9 case _ _ 6 The _ DET DT _ 9 det _ _ 7 Wall _ PROPN NNP _ 9 compound _ _ 8 Street _ PROPN NNP _ 9 compound _ _ 9 Journal _ PROPN NNP _ 4 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 launched _ VERB VBN _ 0 root _ _ 13 an _ DET DT _ 23 det _ _ 14 $ _ SYM $ _ 23 amod _ _ 15 18-a-share _ ADJ JJ _ 14 dep _ _ 16 , _ PUNCT , _ 14 punct _ _ 17 or _ CONJ CC _ 14 cc _ _ 18 $ _ SYM $ _ 14 conj _ _ 19 576 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 tender _ NOUN NN _ 23 compound _ _ 23 offer _ NOUN NN _ 12 dobj _ _ 24 to _ PART TO _ 25 mark _ _ 25 acquire _ VERB VB _ 23 acl _ _ 26 the _ DET DT _ 29 det _ _ 27 remaining _ ADJ VBG _ 29 amod _ _ 28 Telerate _ PROPN NNP _ 29 compound _ _ 29 shares _ NOUN NNS _ 25 dobj _ _ 30 outstanding _ ADJ JJ _ 29 amod _ _ 31 ; _ PUNCT : _ 12 punct _ _ 32 Dow _ PROPN NNP _ 33 compound _ _ 33 Jones _ PROPN NNP _ 34 nsubj _ _ 34 owns _ VERB VBZ _ 12 parataxis _ _ 35 67 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 34 dobj _ _ 37 of _ ADP IN _ 38 case _ _ 38 Telerate _ PROPN NNP _ 36 nmod _ _ 39 . _ PUNCT . _ 12 punct _ _ 1 Telerate _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 rejected _ VERB VBN _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 offer _ NOUN NN _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 expires _ VERB VBZ _ 5 acl:relcl _ _ 9 Nov. _ PROPN NNP _ 8 nmod:tmod _ _ 10 3 _ NUM CD _ 9 nummod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 3 nsubj _ _ 3 includes _ VERB VBZ _ 0 root _ _ 4 Putnam _ PROPN NNP _ 5 compound _ _ 5 Cos. _ PROPN NNP _ 3 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 various _ ADJ JJ _ 8 amod _ _ 8 affiliates _ NOUN NNS _ 5 conj _ _ 9 based _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 11 case _ _ 11 Boston _ PROPN NNP _ 9 nmod _ _ 12 ; _ PUNCT : _ 5 punct _ _ 13 Wells _ PROPN NNP _ 15 compound _ _ 14 Fargo _ PROPN NNP _ 15 compound _ _ 15 Bank _ PROPN NNP _ 5 conj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 San _ PROPN NNP _ 18 compound _ _ 18 Francisco _ PROPN NNP _ 15 appos _ _ 19 ; _ PUNCT : _ 5 punct _ _ 20 the _ DET DT _ 25 det _ _ 21 California _ PROPN NNP _ 25 compound _ _ 22 Public _ PROPN NNP _ 25 compound _ _ 23 Employees _ PROPN NNP _ 25 compound _ _ 24 Retirement _ PROPN NNP _ 25 compound _ _ 25 System _ PROPN NNP _ 5 conj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Sacramento _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Calif. _ PROPN NNP _ 27 appos _ _ 30 , _ PUNCT , _ 5 punct _ _ 31 and _ CONJ CC _ 5 cc _ _ 32 T. _ PROPN NNP _ 36 compound _ _ 33 Rowe _ PROPN NNP _ 36 compound _ _ 34 Price _ PROPN NNP _ 36 compound _ _ 35 Associates _ PROPN NNPS _ 36 compound _ _ 36 Inc. _ PROPN NNP _ 5 conj _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 Baltimore _ PROPN NNP _ 36 appos _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 issues _ NOUN NNS _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 group _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 letter _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 9 ccomp _ _ 12 `` _ PUNCT `` _ 11 punct _ _ 13 concerns _ VERB NNS _ 11 dobj _ _ 14 as _ ADP IN _ 21 case _ _ 15 to _ ADP TO _ 21 mark _ _ 16 whether _ SCONJ IN _ 21 mark _ _ 17 Dow _ PROPN NNP _ 18 compound _ _ 18 Jones _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 offer _ NOUN NN _ 21 nsubj _ _ 21 meets _ VERB VBZ _ 13 acl _ _ 22 the _ DET DT _ 24 det _ _ 23 applicable _ ADJ JJ _ 24 amod _ _ 24 requirements _ NOUN NNS _ 21 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 procedural _ ADJ JJ _ 27 amod _ _ 27 fairness _ NOUN NN _ 24 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 29 '' _ PUNCT '' _ 9 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 Dow _ PROPN NNP _ 5 compound _ _ 5 Jones _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 he _ PRON PRP _ 10 nsubj _ _ 8 had _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 seen _ VERB VBN _ 6 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 group _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 filing _ NOUN NN _ 10 dobj _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 but _ CONJ CC _ 6 cc _ _ 17 added _ VERB VBD _ 6 conj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 `` _ PUNCT `` _ 17 punct _ _ 20 obviously _ ADV RB _ 23 advmod _ _ 21 Dow _ PROPN NNP _ 22 compound _ _ 22 Jones _ PROPN NNP _ 23 nsubj _ _ 23 disagrees _ VERB VBZ _ 17 ccomp _ _ 24 with _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 conclusions _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Our _ PRON PRP$ _ 2 nmod:poss _ _ 2 offer _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 buy _ VERB VB _ 3 xcomp _ _ 6 any _ DET DT _ 9 amod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 all _ DET DT _ 6 conj _ _ 9 shares _ NOUN NNS _ 5 dobj _ _ 10 tendered _ VERB VBN _ 9 acl _ _ 11 at _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 18 _ NUM CD _ 10 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 5 compound _ _ 2 Trade _ PROPN NNP _ 5 compound _ _ 3 Representative _ PROPN NNP _ 5 compound _ _ 4 Carla _ PROPN NNP _ 5 compound _ _ 5 Hills _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 10 det _ _ 8 first _ ADJ JJ _ 10 amod _ _ 9 dispute-settlement _ ADJ JJ _ 10 amod _ _ 10 panel _ NOUN NN _ 22 nsubj _ _ 11 set _ VERB VBD _ 10 acl _ _ 12 up _ ADP RP _ 11 compound:prt _ _ 13 under _ ADP IN _ 20 case _ _ 14 the _ DET DT _ 20 det _ _ 15 U.S.-Canadian _ ADJ JJ _ 20 amod _ _ 16 `` _ PUNCT `` _ 20 punct _ _ 17 free _ ADJ JJ _ 20 amod _ _ 18 trade _ NOUN NN _ 20 compound _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 agreement _ NOUN NN _ 11 nmod _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 ruled _ VERB VBN _ 6 ccomp _ _ 23 that _ SCONJ IN _ 34 mark _ _ 24 Canada _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 restrictions _ NOUN NNS _ 34 nsubj _ _ 27 on _ ADP IN _ 28 case _ _ 28 exports _ NOUN NNS _ 26 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 Pacific _ PROPN NNP _ 31 compound _ _ 31 salmon _ NOUN NN _ 28 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 herring _ NOUN VBG _ 31 conj _ _ 34 violate _ VERB VBP _ 22 ccomp _ _ 35 the _ DET DT _ 36 det _ _ 36 accord _ NOUN NN _ 34 dobj _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 8 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Canada _ PROPN NNP _ 5 conj _ _ 8 have _ VERB VBP _ 3 ccomp _ _ 9 until _ ADP IN _ 10 case _ _ 10 Nov. _ PROPN NNP _ 8 nmod _ _ 11 13 _ NUM CD _ 10 nummod _ _ 12 to _ PART TO _ 13 mark _ _ 13 resolve _ VERB VB _ 8 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 dispute _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 6 mark _ _ 2 a _ DET DT _ 3 det _ _ 3 solution _ NOUN NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 n't _ PART RB _ 6 neg _ _ 6 reached _ VERB VBN _ 16 advcl _ _ 7 by _ ADP IN _ 8 case _ _ 8 then _ ADV RB _ 6 nmod _ _ 9 , _ PUNCT , _ 16 punct _ _ 10 she _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 16 parataxis _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 have _ VERB VB _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 right _ NOUN NN _ 16 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 suspend _ VERB VB _ 18 acl _ _ 21 some _ DET DT _ 23 det _ _ 22 trade _ NOUN NN _ 23 compound _ _ 23 concessions _ NOUN NNS _ 20 dobj _ _ 24 to _ ADP TO _ 25 case _ _ 25 Canada _ PROPN NNP _ 23 nmod _ _ 26 equivalent _ NOUN NN _ 23 amod _ _ 27 in _ ADP IN _ 28 case _ _ 28 value _ NOUN NN _ 26 nmod _ _ 29 to _ ADP TO _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 losses _ NOUN NNS _ 26 nmod _ _ 32 suffered _ VERB VBN _ 31 acl _ _ 33 by _ ADP IN _ 36 case _ _ 34 U.S. _ PROPN NNP _ 36 compound _ _ 35 fish-processing _ ADJ JJ _ 36 amod _ _ 36 companies _ NOUN NNS _ 32 nmod _ _ 37 in _ ADP IN _ 38 case _ _ 38 Alaska _ PROPN NNP _ 36 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 the _ DET DT _ 42 det _ _ 41 Pacific _ PROPN NNP _ 42 compound _ _ 42 Northwest _ PROPN NNP _ 38 conj _ _ 43 . _ PUNCT . _ 16 punct _ _ 1 However _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 in _ ADP IN _ 4 case _ _ 4 Ottawa _ PROPN NNP _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 Canadian _ PROPN NNP _ 10 compound _ _ 7 Trade _ PROPN NNP _ 10 compound _ _ 8 Minister _ PROPN NNP _ 10 compound _ _ 9 John _ PROPN NNP _ 10 compound _ _ 10 Crosbie _ PROPN NNP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 14 det _ _ 13 dispute-settlement _ ADJ JJ _ 14 amod _ _ 14 panel _ NOUN NN _ 15 nsubj _ _ 15 accepted _ VERB VBD _ 11 ccomp _ _ 16 the _ DET DT _ 18 det _ _ 17 `` _ PUNCT `` _ 18 punct _ _ 18 legitimacy _ NOUN NN _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 Canada _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 position _ NOUN NN _ 18 nmod _ _ 23 on _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 use _ NOUN NN _ 22 nmod _ _ 26 of _ ADP IN _ 29 case _ _ 27 these _ DET DT _ 29 det _ _ 28 landing _ NOUN NN _ 29 compound _ _ 29 requirements _ NOUN NNS _ 25 nmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 conserve _ VERB VB _ 25 acl _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 manage _ VERB VB _ 31 conj _ _ 34 these _ DET DT _ 36 det _ _ 35 important _ ADJ JJ _ 36 amod _ _ 36 fisheries _ NOUN NNS _ 31 dobj _ _ 37 . _ PUNCT . _ 11 punct _ _ 38 '' _ PUNCT '' _ 11 punct _ _ 1 Questioned _ VERB VBN _ 24 advcl _ _ 2 about _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 seeming _ ADJ VBG _ 5 amod _ _ 5 contradiction _ NOUN NN _ 1 nmod _ _ 6 in _ ADP IN _ 12 case _ _ 7 the _ DET DT _ 12 det _ _ 8 U.S. _ PROPN NNP _ 12 compound _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Canadian _ ADJ JJ _ 8 conj _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 views _ NOUN NNS _ 5 nmod _ _ 13 of _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 15 det _ _ 15 panel _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 report _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 24 punct _ _ 19 an _ DET DT _ 20 det _ _ 20 aide _ NOUN NN _ 24 nsubj _ _ 21 for _ ADP IN _ 23 case _ _ 22 Mrs. _ PROPN NNP _ 23 compound _ _ 23 Hills _ PROPN NNP _ 20 nmod _ _ 24 said _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 26 det _ _ 26 panel _ NOUN NN _ 29 nsubj _ _ 27 had _ AUX VBD _ 29 aux _ _ 28 clearly _ ADV RB _ 29 advmod _ _ 29 ruled _ VERB VBN _ 24 ccomp _ _ 30 that _ SCONJ IN _ 37 mark _ _ 31 the _ DET DT _ 34 det _ _ 32 Canadian _ ADJ JJ _ 34 amod _ _ 33 trade _ NOUN NN _ 34 compound _ _ 34 restrictions _ NOUN NNS _ 37 nsubj _ _ 35 `` _ PUNCT `` _ 37 punct _ _ 36 are _ VERB VBP _ 37 cop _ _ 37 illegal _ ADJ JJ _ 29 ccomp _ _ 38 . _ PUNCT . _ 24 punct _ _ 39 '' _ PUNCT '' _ 24 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 U.S. _ PROPN NNP _ 4 compound _ _ 3 trade _ NOUN NN _ 4 compound _ _ 4 representative _ NOUN NN _ 5 nsubj _ _ 5 declined _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 put _ VERB VB _ 5 xcomp _ _ 8 a _ DET DT _ 10 det _ _ 9 dollar _ NOUN NN _ 10 compound _ _ 10 estimate _ NOUN NN _ 7 dobj _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 losses _ NOUN NNS _ 7 nmod _ _ 14 resulting _ VERB VBG _ 13 acl _ _ 15 from _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 Canadian _ ADJ JJ _ 19 amod _ _ 18 export _ NOUN NN _ 19 compound _ _ 19 restrictions _ NOUN NNS _ 14 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Canada _ PROPN NNP _ 3 nsubj _ _ 2 initially _ ADV RB _ 3 advmod _ _ 3 had _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 6 det _ _ 5 export _ NOUN NN _ 6 compound _ _ 6 prohibition _ NOUN NN _ 3 dobj _ _ 7 that _ PRON WDT _ 9 nsubjpass _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 replaced _ VERB VBN _ 6 acl:relcl _ _ 10 by _ ADP IN _ 11 case _ _ 11 regulations _ NOUN NNS _ 9 nmod _ _ 12 requiring _ VERB VBG _ 11 acl _ _ 13 that _ DET IN _ 16 mark _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 fish _ NOUN NN _ 16 nsubj _ _ 16 had _ VERB VBD _ 12 ccomp _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 brought _ VERB VBN _ 16 xcomp _ _ 20 ashore _ ADV RB _ 19 advmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 British _ PROPN NNP _ 23 compound _ _ 23 Columbia _ PROPN NNP _ 19 nmod _ _ 24 by _ ADP IN _ 26 case _ _ 25 commercial _ ADJ JJ _ 26 amod _ _ 26 fishermen _ NOUN NNS _ 19 nmod _ _ 27 prior _ ADV RB _ 19 advmod _ _ 28 to _ ADP TO _ 29 case _ _ 29 export _ VERB VB _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 action _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 defended _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Canadian _ ADJ JJ _ 8 amod _ _ 8 government _ NOUN NN _ 4 nmod _ _ 9 on _ ADP IN _ 11 case _ _ 10 conservation _ NOUN NN _ 11 compound _ _ 11 grounds _ NOUN NNS _ 4 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 dispute-settlement _ ADJ JJ _ 8 amod _ _ 8 panel _ NOUN NN _ 9 nsubj _ _ 9 rejected _ VERB VBD _ 3 ccomp _ _ 10 this _ DET DT _ 13 det _ _ 11 Canadian _ ADJ JJ _ 13 amod _ _ 12 government _ NOUN NN _ 13 compound _ _ 13 argument _ NOUN NN _ 9 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 fully _ ADV RB _ 4 advmod _ _ 4 expect _ VERB VBP _ 27 ccomp _ _ 5 that _ SCONJ DT _ 8 mark _ _ 6 Canada _ PROPN NNP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 comply _ VERB VB _ 4 ccomp _ _ 9 with _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 11 det _ _ 11 panel _ NOUN NN _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 ruling _ NOUN NN _ 8 nmod _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 that _ SCONJ IN _ 24 mark _ _ 16 the _ DET DT _ 19 det _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 landing _ NOUN NN _ 19 compound _ _ 19 requirement _ NOUN NN _ 24 nsubjpass _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 also _ ADV RB _ 24 advmod _ _ 22 must _ AUX MD _ 24 aux _ _ 23 be _ AUX VB _ 24 auxpass _ _ 24 ended _ VERB VBN _ 13 ccomp _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 she _ PRON PRP _ 27 nsubj _ _ 27 said _ VERB VBD _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 Earlier _ ADV RBR _ 21 advmod _ _ 2 , _ PUNCT , _ 21 punct _ _ 3 an _ DET DT _ 5 det _ _ 4 international _ ADJ JJ _ 5 amod _ _ 5 panel _ NOUN NN _ 21 nsubj _ _ 6 set _ VERB VBD _ 5 acl _ _ 7 up _ PROPN RP _ 6 compound:prt _ _ 8 under _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 rules _ NOUN NNS _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 General _ PROPN NNP _ 14 compound _ _ 14 Agreement _ PROPN NNP _ 10 nmod _ _ 15 on _ ADP IN _ 16 case _ _ 16 Tariffs _ PROPN NNPS _ 14 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 Trade _ PROPN NNP _ 16 conj _ _ 19 in _ ADP IN _ 20 case _ _ 20 Geneva _ PROPN NNP _ 14 nmod _ _ 21 determined _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 28 mark _ _ 23 the _ DET DT _ 27 det _ _ 24 original _ ADJ JJ _ 27 amod _ _ 25 Canadian _ ADJ JJ _ 27 amod _ _ 26 fish-export _ ADJ JJ _ 27 amod _ _ 27 restrictions _ NOUN NNS _ 28 nsubj _ _ 28 violated _ VERB VBD _ 21 ccomp _ _ 29 GATT _ PROPN NNP _ 30 compound _ _ 30 rules _ NOUN NNS _ 28 dobj _ _ 31 . _ PUNCT . _ 21 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 8 nsubj _ _ 6 wo _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 accept _ VERB VB _ 3 ccomp _ _ 9 any _ DET DT _ 10 det _ _ 10 delays _ NOUN NNS _ 8 dobj _ _ 11 after _ ADP IN _ 12 case _ _ 12 Nov. _ PROPN NNP _ 8 nmod _ _ 13 13 _ NUM CD _ 12 nummod _ _ 14 because _ SCONJ IN _ 18 mark _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 fish-processing _ ADJ JJ _ 17 amod _ _ 17 firms _ NOUN NNS _ 18 nsubj _ _ 18 enter _ VERB VBP _ 8 advcl _ _ 19 into _ ADP IN _ 20 case _ _ 20 contracts _ NOUN NNS _ 18 nmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 fall _ NOUN NN _ 18 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 purchase _ VERB VB _ 18 xcomp _ _ 26 the _ DET DT _ 28 det _ _ 27 next _ ADJ JJ _ 28 amod _ _ 28 season _ NOUN NN _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 catch _ NOUN NN _ 25 dobj _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Canadian _ ADJ JJ _ 5 amod _ _ 5 restrictions _ NOUN NNS _ 8 nsubjpass _ _ 6 must _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 removed _ VERB VBN _ 2 ccomp _ _ 9 before _ SCONJ IN _ 13 mark _ _ 10 such _ ADJ JJ _ 11 amod _ _ 11 contracts _ NOUN NNS _ 13 nsubjpass _ _ 12 are _ AUX VBP _ 13 auxpass _ _ 13 concluded _ VERB VBN _ 8 advcl _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Idle _ ADJ JJ _ 2 amod _ _ 2 Thought _ NOUN NNP _ 0 root _ _ 1 To _ PART TO _ 2 mark _ _ 2 spend _ VERB VB _ 26 dep _ _ 3 a _ DET DT _ 7 det _ _ 4 carefree _ ADJ JJ _ 7 amod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 idle _ ADJ JJ _ 7 amod _ _ 7 day _ NOUN NN _ 2 nmod:tmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 When _ ADV WRB _ 11 advmod _ _ 10 duty _ NOUN NN _ 11 nsubj _ _ 11 calls _ VERB VBZ _ 14 advcl _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 pay _ VERB VB _ 2 dep _ _ 15 no _ DET DT _ 16 neg _ _ 16 heed _ NOUN VB _ 14 dobj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 To _ PART TO _ 19 mark _ _ 19 while _ VERB IN _ 2 dep _ _ 20 the _ DET DT _ 22 det _ _ 21 precious _ ADJ JJ _ 22 amod _ _ 22 hours _ NOUN NNS _ 19 dobj _ _ 23 away _ ADV RB _ 19 compound:prt _ _ 24 -- _ PUNCT : _ 26 punct _ _ 25 Character _ NOUN NN _ 26 nsubj _ _ 26 is _ VERB VBZ _ 0 root _ _ 27 what _ PRON WP _ 29 dobj _ _ 28 you _ PRON PRP _ 29 nsubj _ _ 29 need _ VERB VBP _ 26 ccomp _ _ 30 . _ PUNCT . _ 26 punct _ _ 1 -- _ PUNCT : _ 3 punct _ _ 2 May _ PROPN NNP _ 3 compound _ _ 3 Richstone _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Telecussed _ VERB VBN _ 0 root _ _ 1 The _ DET DT _ 2 det _ _ 2 guy _ NOUN NN _ 14 nsubjpass _ _ 3 who _ PRON WP _ 4 nsubj _ _ 4 throws _ VERB VBZ _ 2 acl:relcl _ _ 5 an _ DET DT _ 6 det _ _ 6 intercept _ NOUN VB _ 4 dobj _ _ 7 'Cause _ SCONJ NN _ 10 mark _ _ 8 his _ PRON PRP$ _ 9 nmod:poss _ _ 9 receiver _ NOUN NN _ 10 nsubj _ _ 10 slips _ VERB VBZ _ 4 advcl _ _ 11 Should _ AUX MD _ 14 aux _ _ 12 somehow _ ADV RB _ 14 advmod _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 advised _ VERB VBN _ 0 root _ _ 15 that _ SCONJ IN _ 20 mark _ _ 16 we _ PRON PRP _ 20 nsubj _ _ 17 At _ ADP IN _ 18 case _ _ 18 home _ NOUN NN _ 16 nmod _ _ 19 can _ AUX MD _ 20 aux _ _ 20 read _ VERB VB _ 14 ccomp _ _ 21 his _ PRON PRP$ _ 22 nmod:poss _ _ 22 lips _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 -- _ PUNCT : _ 3 punct _ _ 2 Dick _ PROPN NNP _ 3 compound _ _ 3 Emmons _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 BancOklahoma _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 completed _ VERB VBD _ 3 ccomp _ _ 6 a _ DET DT _ 8 det _ _ 7 restructuring _ NOUN NN _ 8 compound _ _ 8 agreement _ NOUN NN _ 5 dobj _ _ 9 previously _ ADV RB _ 10 advmod _ _ 10 agreed _ VERB VBD _ 8 acl _ _ 11 to _ ADP TO _ 10 nmod _ _ 12 by _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 Federal _ PROPN NNP _ 17 compound _ _ 15 Deposit _ PROPN NNP _ 17 compound _ _ 16 Insurance _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 10 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 creditor _ NOUN NN _ 20 compound _ _ 20 banks _ NOUN NNS _ 17 conj _ _ 21 and _ CONJ CC _ 17 cc _ _ 22 subordinated _ VERB VBN _ 24 amod _ _ 23 debenture _ NOUN NN _ 24 compound _ _ 24 holders _ NOUN NNS _ 17 conj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 permit _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 8 det _ _ 6 bank _ NOUN NN _ 8 compound _ _ 7 holding _ VERB VBG _ 8 amod _ _ 8 company _ NOUN NN _ 4 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 retire _ VERB VB _ 4 xcomp _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 bank _ NOUN NN _ 10 dobj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 debenture _ NOUN NN _ 15 compound _ _ 15 obligations _ NOUN NNS _ 12 conj _ _ 16 through _ ADP IN _ 17 case _ _ 17 exchanges _ NOUN NNS _ 10 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 cash _ NOUN NN _ 17 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 equity _ NOUN NN _ 19 conj _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 FDIC _ PROPN NNP _ 25 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 7 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 1986 _ NUM CD _ 7 nmod _ _ 7 provided _ VERB VBD _ 2 acl:relcl _ _ 8 $ _ SYM $ _ 7 dobj _ _ 9 130 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 in _ ADP IN _ 13 case _ _ 12 open-bank _ ADJ JJ _ 13 amod _ _ 13 assistance _ NOUN NN _ 8 nmod _ _ 14 to _ ADP TO _ 23 case _ _ 15 BancOklahoma _ PROPN NNP _ 23 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 Bank _ PROPN NNP _ 23 dep _ _ 18 of _ ADP IN _ 19 case _ _ 19 Oklahoma _ PROPN NNP _ 17 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Tulsa _ PROPN NNP _ 19 appos _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 unit _ NOUN NN _ 7 nmod _ _ 24 will _ AUX MD _ 25 aux _ _ 25 continue _ VERB VB _ 0 root _ _ 26 to _ PART TO _ 27 mark _ _ 27 maintain _ VERB VB _ 25 xcomp _ _ 28 $ _ SYM $ _ 27 dobj _ _ 29 90 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 in _ ADP IN _ 33 case _ _ 32 preferred _ VERB JJ _ 33 amod _ _ 33 stock _ NOUN NN _ 28 nmod _ _ 34 in _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 38 det _ _ 36 Tulsa _ PROPN NNP _ 38 compound _ _ 37 bank _ NOUN NN _ 38 compound _ _ 38 unit _ NOUN NN _ 27 nmod _ _ 39 . _ PUNCT . _ 25 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 exchange _ NOUN NN _ 13 nmod _ _ 3 for _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 other _ ADJ JJ _ 6 amod _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 40 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 FDIC _ PROPN NNP _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 receive _ VERB VB _ 0 root _ _ 14 additional _ ADJ JJ _ 15 amod _ _ 15 warrants _ NOUN NNS _ 13 dobj _ _ 16 entitling _ VERB VBG _ 15 acl _ _ 17 it _ PRON PRP _ 16 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 buy _ VERB VB _ 16 xcomp _ _ 20 60 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 of _ ADP IN _ 26 case _ _ 23 BancOklahoma _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 common _ ADJ JJ _ 26 amod _ _ 26 stock _ NOUN NN _ 21 nmod _ _ 27 outstanding _ ADJ JJ _ 26 amod _ _ 28 , _ PUNCT , _ 19 punct _ _ 29 up _ ADV RB _ 19 advmod _ _ 30 from _ ADP IN _ 34 case _ _ 31 the _ DET DT _ 34 det _ _ 32 55 _ NUM CD _ 33 compound _ _ 33 % _ SYM NN _ 34 amod _ _ 34 option _ NOUN NN _ 29 nmod _ _ 35 the _ DET DT _ 36 det _ _ 36 FDIC _ PROPN NNP _ 37 nsubj _ _ 37 received _ VERB VBD _ 34 acl:relcl _ _ 38 under _ ADP IN _ 39 case _ _ 39 terms _ NOUN NNS _ 37 nmod _ _ 40 of _ ADP IN _ 44 case _ _ 41 the _ DET DT _ 44 det _ _ 42 1986 _ NUM CD _ 44 nummod _ _ 43 capital _ NOUN NN _ 44 compound _ _ 44 infusion _ NOUN NN _ 39 nmod _ _ 45 . _ PUNCT . _ 13 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 exchange _ NOUN NN _ 15 nmod _ _ 3 for _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 $ _ SYM $ _ 2 nmod _ _ 6 76 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 they _ PRON PRP _ 10 nsubjpass _ _ 9 are _ AUX VBP _ 10 auxpass _ _ 10 owed _ VERB VBN _ 5 acl:relcl _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 creditor _ NOUN NN _ 13 compound _ _ 13 banks _ NOUN NNS _ 15 nsubj _ _ 14 will _ AUX MD _ 15 aux _ _ 15 receive _ VERB VB _ 42 ccomp _ _ 16 3.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 18 nummod _ _ 18 shares _ NOUN NNS _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 BancOklahoma _ PROPN NNP _ 22 compound _ _ 21 common _ ADJ JJ _ 22 amod _ _ 22 stock _ NOUN NN _ 18 nmod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 proceeds _ NOUN NNS _ 18 conj _ _ 26 from _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 future _ ADJ JJ _ 29 amod _ _ 29 sales _ NOUN NNS _ 25 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 four _ NUM CD _ 33 nummod _ _ 32 subsidiary _ ADJ NN _ 33 amod _ _ 33 banks _ NOUN NNS _ 29 nmod _ _ 34 to _ ADP TO _ 36 case _ _ 35 private _ ADJ JJ _ 36 amod _ _ 36 buyers _ NOUN NNS _ 29 nmod _ _ 37 , _ PUNCT , _ 42 punct _ _ 38 the _ DET DT _ 41 det _ _ 39 bank _ NOUN NN _ 41 compound _ _ 40 holding _ VERB VBG _ 41 amod _ _ 41 company _ NOUN NN _ 42 nsubj _ _ 42 said _ VERB VBD _ 0 root _ _ 43 . _ PUNCT . _ 42 punct _ _ 1 Also _ ADV RB _ 4 advmod _ _ 2 under _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 debenture _ NOUN NN _ 7 compound _ _ 7 holders _ NOUN NNS _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 get _ VERB VB _ 50 ccomp _ _ 10 one _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 12 nummod _ _ 12 shares _ NOUN NNS _ 9 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 common _ ADJ JJ _ 15 amod _ _ 15 stock _ NOUN NN _ 12 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 exchange _ NOUN NN _ 9 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 $ _ SYM $ _ 17 nmod _ _ 20 7.7 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 in _ ADP IN _ 23 case _ _ 23 debentures _ NOUN NNS _ 19 nmod _ _ 24 and _ CONJ CC _ 9 cc _ _ 25 holders _ NOUN NNS _ 34 nsubj _ _ 26 of _ ADP IN _ 32 case _ _ 27 BancOklahoma _ PROPN NNP _ 32 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 series _ NOUN NN _ 32 compound _ _ 30 A _ DET NN _ 32 det _ _ 31 preferred _ ADJ JJ _ 32 amod _ _ 32 stock _ NOUN NN _ 25 nmod _ _ 33 will _ AUX MD _ 34 aux _ _ 34 receive _ VERB VB _ 9 conj _ _ 35 1.25 _ NUM CD _ 36 nummod _ _ 36 shares _ NOUN NNS _ 34 dobj _ _ 37 of _ ADP IN _ 39 case _ _ 38 common _ ADJ JJ _ 39 amod _ _ 39 stock _ NOUN NN _ 36 nmod _ _ 40 for _ ADP IN _ 42 case _ _ 41 every _ DET DT _ 42 det _ _ 42 share _ NOUN NN _ 36 nmod _ _ 43 of _ ADP IN _ 44 case _ _ 44 preferred _ VERB VBN _ 42 nmod _ _ 45 they _ PRON PRP _ 46 nsubj _ _ 46 own _ VERB VBP _ 42 acl:relcl _ _ 47 , _ PUNCT , _ 50 punct _ _ 48 the _ DET DT _ 49 det _ _ 49 company _ NOUN NN _ 50 nsubj _ _ 50 said _ VERB VBD _ 0 root _ _ 51 . _ PUNCT . _ 50 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 chief _ ADJ JJ _ 5 amod _ _ 5 economist _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Lawrence _ PROPN NNP _ 8 compound _ _ 8 Kudlow _ PROPN NNP _ 5 appos _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 in _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 Sept. _ PROPN NNP _ 14 compound _ _ 13 29 _ NUM CD _ 14 nummod _ _ 14 issue _ NOUN NN _ 5 nmod _ _ 15 of _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 17 det _ _ 17 firm _ NOUN NN _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Global _ PROPN JJ _ 20 compound _ _ 20 Spectator _ PROPN NNP _ 14 nmod _ _ 21 : _ PUNCT : _ 5 punct _ _ 1 Were _ VERB VBD _ 3 cop _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 true _ ADJ JJ _ 21 advcl _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 a _ DET DT _ 7 det _ _ 6 weak _ ADJ JJ _ 7 amod _ _ 7 currency _ NOUN NN _ 8 nsubj _ _ 8 paves _ VERB VBZ _ 3 dep _ _ 9 the _ DET DT _ 10 det _ _ 10 way _ NOUN NN _ 8 dobj _ _ 11 for _ ADP IN _ 13 case _ _ 12 trade _ NOUN NN _ 13 compound _ _ 13 surpluses _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 21 punct _ _ 15 then _ ADV RB _ 21 advmod _ _ 16 presumably _ ADV RB _ 21 advmod _ _ 17 Argentina _ NOUN NNP _ 21 nsubj _ _ 18 would _ AUX MD _ 21 aux _ _ 19 be _ VERB VB _ 21 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 center _ NOUN NN _ 0 root _ _ 22 of _ ADP IN _ 26 case _ _ 23 today _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 global _ ADJ JJ _ 26 amod _ _ 26 economy _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 21 punct _ _ 1 BSN _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 begin _ VERB VB _ 3 ccomp _ _ 7 an _ DET DT _ 8 det _ _ 8 offer _ NOUN NN _ 6 dobj _ _ 9 tomorrow _ NOUN NN _ 6 nmod:tmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 exchange _ VERB VB _ 6 advcl _ _ 12 up _ ADP RP _ 15 dep _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 one _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 11 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 common _ ADJ JJ _ 19 amod _ _ 19 shares _ NOUN NNS _ 15 nmod _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 all _ DET DT _ 15 conj _ _ 22 of _ ADP IN _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 $ _ SYM $ _ 21 nmod _ _ 25 16.6 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 in _ ADP IN _ 32 case _ _ 28 7 _ NUM CD _ 29 compound _ _ 29 3/4 _ NUM CD _ 30 dep _ _ 30 % _ SYM NN _ 32 dep _ _ 31 convertible _ ADJ JJ _ 32 amod _ _ 32 debentures _ NOUN NNS _ 24 nmod _ _ 33 due _ ADJ JJ _ 24 amod _ _ 34 2001 _ NUM CD _ 33 nmod:tmod _ _ 35 for _ ADP IN _ 37 case _ _ 36 a _ DET DT _ 37 det _ _ 37 package _ NOUN NN _ 11 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 new _ ADJ JJ _ 40 amod _ _ 40 debt _ NOUN NN _ 37 nmod _ _ 41 and _ CONJ CC _ 40 cc _ _ 42 common _ ADJ JJ _ 44 amod _ _ 43 stock _ NOUN NN _ 44 compound _ _ 44 warrants _ NOUN NNS _ 40 conj _ _ 45 . _ PUNCT . _ 3 punct _ _ 1 Under _ ADP IN _ 2 case _ _ 2 terms _ NOUN NNS _ 12 nmod _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 offer _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 10 det _ _ 8 sporting _ NOUN VBG _ 10 compound _ _ 9 goods _ NOUN NNS _ 10 compound _ _ 10 maker _ NOUN NN _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 swap _ VERB VB _ 0 root _ _ 13 $ _ SYM $ _ 16 amod _ _ 14 9 _ NUM CD _ 13 compound _ _ 15 face _ NOUN NN _ 16 compound _ _ 16 amount _ NOUN NN _ 12 dobj _ _ 17 of _ ADP IN _ 22 case _ _ 18 9 _ NUM CD _ 19 compound _ _ 19 1/4 _ NUM CD _ 20 dep _ _ 20 % _ SYM NN _ 22 dep _ _ 21 subordinated _ VERB VBN _ 22 amod _ _ 22 notes _ NOUN NNS _ 16 nmod _ _ 23 due _ ADJ JJ _ 22 amod _ _ 24 1996 _ NUM CD _ 23 nmod:tmod _ _ 25 and _ CONJ CC _ 16 cc _ _ 26 one _ NUM CD _ 27 nummod _ _ 27 warrant _ NOUN NN _ 16 conj _ _ 28 for _ ADP IN _ 31 case _ _ 29 each _ DET DT _ 31 det _ _ 30 common _ ADJ JJ _ 31 amod _ _ 31 share _ NOUN NN _ 12 nmod _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 Each _ DET DT _ 2 det _ _ 2 warrant _ NOUN NN _ 3 nsubj _ _ 3 allows _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 holder _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 3 xcomp _ _ 8 one _ NUM CD _ 10 nummod _ _ 9 BSN _ PROPN NNP _ 10 compound _ _ 10 share _ NOUN NN _ 7 dobj _ _ 11 for _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 10.75 _ NUM CD _ 7 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 at _ ADP IN _ 18 case _ _ 17 any _ DET DT _ 18 det _ _ 18 time _ NOUN NN _ 7 nmod _ _ 19 over _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 next _ ADJ JJ _ 23 amod _ _ 22 seven _ NUM CD _ 23 nummod _ _ 23 years _ NOUN NNS _ 18 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 BSN _ PROPN NNP _ 3 nsubj _ _ 2 currently _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 4.6 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 7 nummod _ _ 6 common _ ADJ JJ _ 7 amod _ _ 7 shares _ NOUN NNS _ 3 dobj _ _ 8 outstanding _ ADJ JJ _ 7 amod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 BSN _ PROPN NNP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 offering _ VERB VBG _ 0 root _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 850 _ NUM CD _ 5 compound _ _ 7 face _ NOUN NN _ 8 compound _ _ 8 amount _ NOUN NN _ 4 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 notes _ NOUN NNS _ 8 nmod _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 64 _ NUM CD _ 15 nummod _ _ 14 common-stock _ ADJ JJ _ 15 amod _ _ 15 warrants _ NOUN NNS _ 8 conj _ _ 16 for _ ADP IN _ 21 case _ _ 17 each _ DET DT _ 21 det _ _ 18 $ _ SYM $ _ 21 amod _ _ 19 1,000 _ NUM CD _ 18 compound _ _ 20 face _ NOUN NN _ 21 compound _ _ 21 amount _ NOUN NN _ 4 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 convertible _ ADJ JJ _ 25 amod _ _ 25 debt _ NOUN NN _ 21 nmod _ _ 26 outstanding _ ADJ JJ _ 25 amod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 can _ AUX MD _ 6 aux _ _ 6 redeem _ VERB VB _ 3 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 warrants _ NOUN NNS _ 6 dobj _ _ 9 at _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 option _ NOUN NN _ 6 nmod _ _ 12 for _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 1 _ NUM CD _ 6 nmod _ _ 15 each _ DET DT _ 14 nmod:npmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 n't _ PART RB _ 5 neg _ _ 5 contingent _ ADJ JJ _ 0 root _ _ 6 on _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 certain _ ADJ JJ _ 9 amod _ _ 9 amount _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 debt _ NOUN NN _ 9 nmod _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 stock _ NOUN NN _ 11 conj _ _ 14 being _ AUX VBG _ 15 auxpass _ _ 15 exchanged _ VERB VBN _ 9 acl _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 BSN _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 making _ VERB VBG _ 2 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 offer _ NOUN NN _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 shrink _ VERB VB _ 5 advcl _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 capital _ NOUN NN _ 9 dobj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 increase _ VERB NN _ 9 conj _ _ 14 shareholder _ NOUN NN _ 15 compound _ _ 15 value _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 If _ SCONJ IN _ 12 mark _ _ 2 all _ DET PDT _ 4 det _ _ 3 the _ DET DT _ 4 det _ _ 4 bondholders _ NOUN NNS _ 12 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 holders _ NOUN NNS _ 4 conj _ _ 7 of _ ADP IN _ 11 case _ _ 8 one _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 11 nummod _ _ 10 common _ ADJ JJ _ 11 amod _ _ 11 shares _ NOUN NNS _ 4 nmod _ _ 12 accept _ VERB VBP _ 18 advcl _ _ 13 the _ DET DT _ 14 det _ _ 14 offer _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 BSN _ PROPN NNP _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 increase _ VERB VB _ 42 ccomp _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 debt _ NOUN NN _ 18 dobj _ _ 21 by _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 18 nmod _ _ 23 9 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 , _ PUNCT , _ 18 punct _ _ 26 but _ CONJ CC _ 18 cc _ _ 27 it _ PRON PRP _ 30 nsubj _ _ 28 also _ ADV RB _ 30 advmod _ _ 29 will _ AUX MD _ 30 aux _ _ 30 recognize _ VERB VB _ 18 conj _ _ 31 a _ DET DT _ 35 det _ _ 32 $ _ SYM $ _ 35 amod _ _ 33 2 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 gain _ NOUN NN _ 30 dobj _ _ 36 from _ SCONJ IN _ 37 mark _ _ 37 retiring _ VERB VBG _ 35 acl _ _ 38 the _ DET DT _ 40 det _ _ 39 old _ ADJ JJ _ 40 amod _ _ 40 debt _ NOUN NN _ 37 dobj _ _ 41 , _ PUNCT , _ 42 punct _ _ 42 said _ VERB VBD _ 0 root _ _ 43 Michael _ PROPN NNP _ 45 compound _ _ 44 J. _ PROPN NNP _ 45 compound _ _ 45 Blumenfeld _ PROPN NNP _ 42 nsubj _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 president _ NOUN NN _ 45 appos _ _ 48 . _ PUNCT . _ 42 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 13 ccomp _ _ 4 sufficient _ ADJ JJ _ 6 amod _ _ 5 cash _ NOUN NN _ 6 compound _ _ 6 flow _ NOUN NN _ 3 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 handle _ VERB VB _ 6 acl _ _ 9 that _ PRON DT _ 8 dobj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offers _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 scheduled _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 expire _ VERB VB _ 4 xcomp _ _ 7 in _ ADP IN _ 11 case _ _ 8 mid _ ADJ JJ _ 10 amod _ _ 9 to _ ADP TO _ 10 dep _ _ 10 late _ ADJ JJ _ 11 amod _ _ 11 November _ PROPN NNP _ 6 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 7 nmod:poss _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 's _ PART POS _ 4 case _ _ 6 net _ ADJ JJ _ 7 amod _ _ 7 income _ NOUN NN _ 8 nsubj _ _ 8 dropped _ VERB VBD _ 0 root _ _ 9 37 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 while _ SCONJ IN _ 16 mark _ _ 13 Bear _ PROPN NNP _ 15 compound _ _ 14 Stearns _ PROPN NNP _ 15 compound _ _ 15 Cos. _ PROPN NNP _ 16 nsubj _ _ 16 posted _ VERB VBD _ 8 advcl _ _ 17 a _ DET DT _ 20 det _ _ 18 7.5 _ NUM CD _ 19 compound _ _ 19 % _ SYM NN _ 20 amod _ _ 20 gain _ NOUN NN _ 16 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 net _ ADJ NN _ 20 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 and _ CONJ CC _ 16 cc _ _ 25 PaineWebber _ PROPN NNP _ 27 compound _ _ 26 Group _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 profit _ NOUN NN _ 30 nsubj _ _ 30 fell _ VERB VBD _ 16 conj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 but _ CONJ CC _ 30 cc _ _ 33 would _ AUX MD _ 35 aux _ _ 34 have _ AUX VB _ 35 aux _ _ 35 risen _ VERB VBN _ 30 conj _ _ 36 without _ ADP IN _ 39 case _ _ 37 a _ DET DT _ 39 det _ _ 38 special _ ADJ JJ _ 39 amod _ _ 39 gain _ NOUN NN _ 35 nmod _ _ 40 a _ DET DT _ 41 det _ _ 41 year _ NOUN NN _ 42 nmod:npmod _ _ 42 ago _ ADV RB _ 35 advmod _ _ 43 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Merrill _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 third-period _ ADJ JJ _ 6 amod _ _ 6 net _ ADJ NN _ 8 nsubj _ _ 7 was _ VERB VBD _ 8 cop _ _ 8 $ _ SYM $ _ 0 root _ _ 9 41 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 34 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 8 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 down _ ADV RB _ 8 advmod _ _ 19 from _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 18 nmod _ _ 21 65.6 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 or _ CONJ CC _ 20 cc _ _ 25 58 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 20 conj _ _ 27 a _ DET DT _ 28 det _ _ 28 share _ NOUN NN _ 26 nmod:npmod _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 a _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 32 nmod:npmod _ _ 32 ago _ ADV RB _ 20 advmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Total _ ADJ JJ _ 2 amod _ _ 2 revenue _ NOUN NN _ 3 nsubj _ _ 3 reached _ VERB VBD _ 0 root _ _ 4 $ _ SYM $ _ 3 dobj _ _ 5 2.83 _ NUM CD _ 6 compound _ _ 6 billion _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 up _ ADV RB _ 3 advmod _ _ 9 10 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 nmod:npmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 8 nmod _ _ 13 2.57 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 firm _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 drop _ NOUN NN _ 7 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 net _ ADJ JJ _ 4 nmod _ _ 7 reflected _ VERB VBD _ 0 root _ _ 8 weaker _ ADJ JJR _ 9 amod _ _ 9 revenue _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 transactions _ NOUN NNS _ 9 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 own _ ADJ JJ _ 15 amod _ _ 15 account _ NOUN NN _ 11 nmod _ _ 16 -- _ PUNCT : _ 9 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 decline _ NOUN NN _ 9 dep _ _ 19 of _ ADP IN _ 21 case _ _ 20 19 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 $ _ SYM $ _ 18 nmod _ _ 24 314.6 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 on _ ADP IN _ 28 case _ _ 27 reduced _ VERB VBN _ 28 amod _ _ 28 revenue _ NOUN NN _ 18 nmod _ _ 29 from _ SCONJ IN _ 30 mark _ _ 30 trading _ VERB VBG _ 28 acl _ _ 31 fixed-income _ ADJ JJ _ 32 amod _ _ 32 securities _ NOUN NNS _ 30 dobj _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 Investment _ NOUN NN _ 3 compound _ _ 2 banking _ VERB NN _ 3 amod _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 22 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 296.6 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 on _ ADP IN _ 16 case _ _ 12 fewer _ ADJ JJR _ 16 amod _ _ 13 equity _ NOUN NN _ 16 compound _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 municipal _ ADJ JJ _ 13 conj _ _ 16 underwritings _ NOUN NNS _ 4 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 commission _ NOUN NN _ 5 compound _ _ 5 revenue _ NOUN NN _ 6 nsubj _ _ 6 grew _ VERB VBD _ 0 root _ _ 7 21 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 however _ ADV RB _ 6 advmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 to _ ADP TO _ 13 case _ _ 13 $ _ SYM $ _ 6 nmod _ _ 14 462.8 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 on _ ADP IN _ 20 case _ _ 18 higher _ ADJ JJR _ 20 amod _ _ 19 share _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 6 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 volume _ NOUN NN _ 20 conj _ _ 23 and _ CONJ CC _ 20 cc _ _ 24 on _ ADP IN _ 26 case _ _ 25 strong _ ADJ JJ _ 26 amod _ _ 26 sales _ NOUN NNS _ 20 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 mutual _ ADJ JJ _ 29 amod _ _ 29 funds _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Revenue _ NOUN NN _ 7 nsubj _ _ 2 derived _ VERB VBN _ 1 acl _ _ 3 from _ ADP IN _ 4 case _ _ 4 interest _ NOUN NN _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 dividends _ NOUN NNS _ 4 conj _ _ 7 jumped _ VERB VBD _ 0 root _ _ 8 30 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 7 nmod _ _ 12 1.4 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Asset-management _ ADJ NN _ 3 amod _ _ 2 fee _ NOUN NN _ 3 compound _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 grew _ VERB VBD _ 0 root _ _ 5 12 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 151 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 brokerage _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 reported _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 loss _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 2.2 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 from _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 discontinued _ VERB VBN _ 14 amod _ _ 14 operations _ NOUN NNS _ 6 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 disposal _ NOUN NN _ 14 conj _ _ 17 of _ ADP IN _ 25 case _ _ 18 its _ PRON PRP$ _ 25 nmod:poss _ _ 19 Fine _ PROPN JJ _ 25 compound _ _ 20 Homes _ PROPN NNPS _ 25 compound _ _ 21 International _ PROPN NNP _ 25 compound _ _ 22 Limited _ PROPN NNP _ 25 compound _ _ 23 Partnership _ PROPN NNP _ 25 compound _ _ 24 real-estate _ NOUN NN _ 25 compound _ _ 25 subsidiary _ NOUN NN _ 14 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 net _ NOUN NN _ 12 nsubj _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 quarter _ NOUN NN _ 4 nmod _ _ 9 ended _ VERB VBN _ 8 acl _ _ 10 Sept. _ PROPN NNP _ 9 nmod:tmod _ _ 11 29 _ NUM CD _ 10 nummod _ _ 12 reached _ VERB VBD _ 3 ccomp _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 22.1 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 or _ CONJ CC _ 13 cc _ _ 18 23 _ NUM CD _ 19 nummod _ _ 19 cents _ NOUN NNS _ 13 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 , _ PUNCT , _ 13 punct _ _ 23 from _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 12 nmod _ _ 25 20.5 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 20 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 24 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 , _ PUNCT , _ 24 punct _ _ 34 in _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 year-earlier _ ADJ JJ _ 37 amod _ _ 37 quarter _ NOUN NN _ 24 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Gross _ ADJ NNP _ 2 amod _ _ 2 revenue _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 21 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 3 nmod _ _ 8 580.4 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 from _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 3 nmod _ _ 12 478.9 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Profit _ NOUN NN _ 8 nsubj _ _ 2 from _ ADP IN _ 3 case _ _ 3 trading _ NOUN NN _ 1 nmod _ _ 4 for _ ADP IN _ 7 case _ _ 5 its _ PRON PRP$ _ 7 nmod:poss _ _ 6 own _ ADJ JJ _ 7 amod _ _ 7 account _ NOUN NN _ 3 nmod _ _ 8 dropped _ VERB VBD _ 13 ccomp _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 securities _ NOUN NNS _ 12 compound _ _ 12 firm _ NOUN NN _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Investment _ NOUN NN _ 3 compound _ _ 2 banking _ NOUN NN _ 3 compound _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 climbed _ VERB VBD _ 0 root _ _ 5 25 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 while _ SCONJ IN _ 11 mark _ _ 9 commission _ NOUN NN _ 10 compound _ _ 10 revenue _ NOUN NN _ 11 nsubj _ _ 11 advanced _ VERB VBD _ 4 advcl _ _ 12 31 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 on _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 stronger _ ADJ JJR _ 18 amod _ _ 17 retail _ ADJ JJ _ 18 amod _ _ 18 market _ NOUN NN _ 11 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 holding _ VERB VBG _ 6 amod _ _ 6 company _ NOUN NN _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 Bear _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Stearns _ PROPN NNP _ 8 conj _ _ 11 & _ CONJ CC _ 8 cc _ _ 12 Co. _ PROPN NNP _ 8 conj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 investment _ NOUN NN _ 16 compound _ _ 16 banking _ NOUN NN _ 8 appos _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 brokerage _ NOUN NN _ 19 compound _ _ 19 firm _ NOUN NN _ 16 conj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN JJ _ 7 compound _ _ 7 trading _ NOUN NN _ 13 nmod _ _ 8 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 Bear _ PROPN NNP _ 12 compound _ _ 11 Stearns _ PROPN NNP _ 12 compound _ _ 12 shares _ NOUN NNS _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 13.625 _ NUM CD _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 down _ ADV RB _ 13 advmod _ _ 19 25 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 Separately _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 PaineWebber _ PROPN NNP _ 4 nsubj _ _ 4 posted _ VERB VBD _ 0 root _ _ 5 net _ ADJ JJ _ 6 amod _ _ 6 income _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 6 nmod _ _ 13 16.8 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 41 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 12 conj _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 12 punct _ _ 22 reflecting _ VERB VBG _ 4 xcomp _ _ 23 a _ DET DT _ 26 det _ _ 24 `` _ PUNCT `` _ 26 punct _ _ 25 broad-based _ ADJ JJ _ 26 amod _ _ 26 improvement _ NOUN NN _ 22 dobj _ _ 27 '' _ PUNCT '' _ 26 punct _ _ 28 in _ ADP IN _ 33 case _ _ 29 the _ DET DT _ 30 det _ _ 30 company _ NOUN NN _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 core _ NOUN NN _ 33 compound _ _ 33 businesses _ NOUN NNS _ 26 nmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Retail _ ADJ JJ _ 2 amod _ _ 2 profit _ NOUN NN _ 3 nsubj _ _ 3 surged _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 but _ CONJ CC _ 3 cc _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 8 nsubj _ _ 8 said _ VERB VBD _ 3 conj _ _ 9 it _ PRON PRP _ 15 nsubj _ _ 10 was _ VERB VBD _ 15 cop _ _ 11 only _ ADV RB _ 15 advmod _ _ 12 a _ DET DT _ 15 det _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 modest _ ADJ JJ _ 15 amod _ _ 15 contributor _ NOUN NN _ 8 ccomp _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 to _ ADP TO _ 19 case _ _ 18 third-quarter _ ADJ JJ _ 19 amod _ _ 19 results _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 14 advmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 net _ NOUN NN _ 14 nsubj _ _ 6 at _ ADP IN _ 12 case _ _ 7 the _ DET DT _ 12 det _ _ 8 New _ PROPN NNP _ 12 compound _ _ 9 York _ PROPN NNP _ 12 compound _ _ 10 investment _ NOUN NN _ 12 compound _ _ 11 banking _ VERB NN _ 12 amod _ _ 12 firm _ NOUN NN _ 5 nmod _ _ 13 was _ VERB VBD _ 14 cop _ _ 14 $ _ SYM $ _ 0 root _ _ 15 20.9 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 50 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 14 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 including _ VERB VBG _ 28 case _ _ 25 a _ DET DT _ 28 det _ _ 26 special _ ADJ JJ _ 28 amod _ _ 27 pretax _ ADJ NN _ 28 amod _ _ 28 gain _ NOUN NN _ 14 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 $ _ SYM $ _ 28 nmod _ _ 31 46.3 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 30 nummod _ _ 33 from _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 sale _ NOUN NN _ 28 nmod _ _ 36 of _ ADP IN _ 40 case _ _ 37 the _ DET DT _ 38 det _ _ 38 company _ NOUN NN _ 40 nmod:poss _ _ 39 's _ PART POS _ 38 case _ _ 40 interest _ NOUN NN _ 35 nmod _ _ 41 in _ ADP IN _ 46 case _ _ 42 National _ PROPN NNP _ 46 compound _ _ 43 Car _ PROPN NNP _ 46 compound _ _ 44 Rental _ PROPN JJ _ 46 compound _ _ 45 Systems _ PROPN NNPS _ 46 compound _ _ 46 Inc _ PROPN NNP _ 40 nmod _ _ 47 . _ PUNCT . _ 14 punct _ _ 1 Revenue _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 $ _ SYM $ _ 0 root _ _ 4 444.9 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 including _ VERB VBG _ 9 case _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 interest _ NOUN NN _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 down _ ADV RB _ 12 advmod _ _ 12 slightly _ ADV RB _ 3 advmod _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 12 nmod _ _ 15 450.7 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 Big _ PROPN NNP _ 5 compound _ _ 3 Board _ PROPN NNP _ 5 compound _ _ 4 composite _ NOUN JJ _ 5 compound _ _ 5 trading _ NOUN NN _ 9 nmod _ _ 6 yesterday _ ADV NN _ 9 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 PaineWebber _ PROPN NNP _ 9 nsubj _ _ 9 closed _ VERB VBD _ 0 root _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 18.50 _ NUM CD _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 up _ ADV RB _ 9 advmod _ _ 15 75 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 14 nmod:npmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Seafirst _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 signed _ VERB VBD _ 3 ccomp _ _ 6 an _ DET DT _ 7 det _ _ 7 agreement _ NOUN NN _ 5 dobj _ _ 8 with _ ADP IN _ 11 case _ _ 9 builder _ NOUN NN _ 11 compound _ _ 10 Martin _ PROPN NNP _ 11 compound _ _ 11 Selig _ PROPN NNP _ 7 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 purchase _ VERB VB _ 7 acl _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 headquarters _ NOUN NN _ 16 compound _ _ 16 building _ NOUN NN _ 13 dobj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 the _ DET DT _ 21 det _ _ 19 Columbia _ PROPN NNP _ 21 compound _ _ 20 Seafirst _ PROPN NNP _ 21 compound _ _ 21 Center _ PROPN NNP _ 16 appos _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 for _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 13 nmod _ _ 25 354 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Purchase _ NOUN NN _ 7 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 76-story _ ADJ JJ _ 5 amod _ _ 5 structure _ NOUN NN _ 1 nmod _ _ 6 is _ VERB VBZ _ 7 cop _ _ 7 subject _ ADJ JJ _ 0 root _ _ 8 to _ ADP TO _ 9 case _ _ 9 execution _ NOUN NN _ 7 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 definitive _ ADJ JJ _ 13 amod _ _ 13 agreement _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 approval _ NOUN NN _ 9 conj _ _ 16 by _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 boards _ NOUN NNS _ 15 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 Seafirst _ PROPN NNP _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 its _ PRON PRP$ _ 26 nmod:poss _ _ 23 parent _ NOUN NN _ 26 compound _ _ 24 company _ NOUN NN _ 26 compound _ _ 25 BankAmerica _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 20 conj _ _ 27 , _ PUNCT , _ 9 punct _ _ 28 and _ CONJ CC _ 9 cc _ _ 29 approval _ NOUN NN _ 9 conj _ _ 30 by _ ADP IN _ 31 case _ _ 31 regulators _ NOUN NNS _ 29 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 upheaval _ NOUN NN _ 7 nsubj _ _ 4 apparently _ ADV RB _ 7 advmod _ _ 5 has _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 triggered _ VERB VBN _ 0 root _ _ 8 any _ DET DT _ 10 det _ _ 9 cash _ NOUN NN _ 10 compound _ _ 10 crunch _ NOUN NN _ 7 dobj _ _ 11 -- _ PUNCT : _ 7 punct _ _ 12 yet _ ADV RB _ 7 advmod _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 Individual _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 investment _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 2 conj _ _ 6 and _ CONJ CC _ 2 cc _ _ 7 arbitragers _ NOUN NNS _ 2 conj _ _ 8 who _ PRON WP _ 9 nsubj _ _ 9 speculate _ VERB VBP _ 2 acl:relcl _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 stocks _ NOUN NNS _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 takeover _ NOUN NN _ 15 compound _ _ 15 candidates _ NOUN NNS _ 12 nmod _ _ 16 can _ AUX MD _ 17 aux _ _ 17 suffer _ VERB VB _ 0 root _ _ 18 liquidity _ NOUN NN _ 21 compound _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 payment _ NOUN NN _ 18 conj _ _ 21 problems _ NOUN NNS _ 17 dobj _ _ 22 when _ ADV WRB _ 24 advmod _ _ 23 stocks _ NOUN NNS _ 24 nsubj _ _ 24 dive _ VERB NN _ 17 advcl _ _ 25 ; _ PUNCT : _ 17 punct _ _ 26 those _ DET DT _ 27 det _ _ 27 investors _ NOUN NNS _ 29 nsubj _ _ 28 often _ ADV RB _ 29 advmod _ _ 29 borrow _ VERB VBP _ 17 parataxis _ _ 30 heavily _ ADV RB _ 29 advmod _ _ 31 to _ PART TO _ 32 mark _ _ 32 buy _ VERB VB _ 29 xcomp _ _ 33 their _ PRON PRP$ _ 34 nmod:poss _ _ 34 holdings _ NOUN NNS _ 32 dobj _ _ 35 and _ CONJ CC _ 29 cc _ _ 36 use _ VERB VB _ 29 conj _ _ 37 the _ DET DT _ 38 det _ _ 38 stocks _ NOUN NNS _ 36 dobj _ _ 39 as _ ADP IN _ 40 case _ _ 40 collateral _ NOUN NN _ 36 nmod _ _ 41 for _ ADP IN _ 42 case _ _ 42 loans _ NOUN NNS _ 40 nmod _ _ 43 . _ PUNCT . _ 17 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 several _ ADJ JJ _ 4 amod _ _ 3 large _ ADJ JJ _ 4 amod _ _ 4 banks _ NOUN NNS _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 yesterday _ NOUN NN _ 5 nmod:tmod _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 detected _ VERB VBD _ 5 ccomp _ _ 9 no _ DET DT _ 10 neg _ _ 10 signs _ NOUN NNS _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 unusual _ ADJ JJ _ 13 amod _ _ 13 demand _ NOUN NN _ 10 nmod _ _ 14 for _ ADP IN _ 15 case _ _ 15 credit _ NOUN NN _ 13 nmod _ _ 16 that _ PRON WDT _ 18 nsubj _ _ 17 would _ AUX MD _ 18 aux _ _ 18 signal _ VERB VB _ 10 acl:relcl _ _ 19 such _ ADJ JJ _ 20 amod _ _ 20 difficulties _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 seeing _ VERB VBG _ 12 ccomp _ _ 5 nothing _ NOUN NN _ 4 dobj _ _ 6 out _ ADP IN _ 9 case _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 ordinary _ ADJ JJ _ 5 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 one _ NUM CD _ 14 nummod _ _ 14 official _ NOUN NN _ 12 nsubj _ _ 15 at _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 Top _ ADJ JJ _ 19 amod _ _ 18 10 _ NUM CD _ 19 nummod _ _ 19 bank _ NOUN NN _ 14 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 That _ PRON DT _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 good _ ADJ JJ _ 5 amod _ _ 5 news _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 because _ SCONJ IN _ 10 mark _ _ 8 we _ PRON PRP _ 10 nsubj _ _ 9 all _ DET DT _ 8 det _ _ 10 swim _ VERB VBP _ 5 advcl _ _ 11 in _ ADP IN _ 13 case _ _ 12 this _ DET DT _ 13 det _ _ 13 water _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 15 '' _ PUNCT '' _ 5 punct _ _ 1 Added _ VERB VBN _ 0 root _ _ 2 another _ DET DT _ 3 det _ _ 3 executive _ NOUN NN _ 1 nsubj _ _ 4 at _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 big _ ADJ JJ _ 7 amod _ _ 7 bank _ NOUN NN _ 3 nmod _ _ 8 : _ PUNCT : _ 1 punct _ _ 9 `` _ PUNCT `` _ 1 punct _ _ 10 We _ PRON PRP _ 15 nsubj _ _ 11 were _ VERB VBD _ 15 cop _ _ 12 all _ DET PDT _ 15 dep _ _ 13 a _ DET DT _ 14 det _ _ 14 little _ ADJ JJ _ 15 nmod:npmod _ _ 15 goosey _ ADJ NN _ 1 ccomp _ _ 16 over _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 weekend _ NOUN NN _ 15 nmod _ _ 19 trying _ VERB VBG _ 15 xcomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 forecast _ VERB VB _ 19 xcomp _ _ 22 what _ PRON WP _ 24 nsubj _ _ 23 would _ AUX MD _ 24 aux _ _ 24 happen _ VERB VB _ 21 ccomp _ _ 25 -LCB- _ PUNCT -LRB- _ 24 punct _ _ 26 Monday _ PROPN NNP _ 24 nmod:tmod _ _ 27 -RCB- _ PUNCT -RRB- _ 24 punct _ _ 28 , _ PUNCT , _ 15 punct _ _ 29 but _ CONJ CC _ 15 cc _ _ 30 it _ PRON PRP _ 34 nsubjpass _ _ 31 's _ AUX VBZ _ 34 auxpass _ _ 32 been _ VERB VBN _ 34 cop _ _ 33 very _ ADV RB _ 34 advmod _ _ 34 quiet _ ADJ JJ _ 15 conj _ _ 35 . _ PUNCT . _ 1 punct _ _ 1 Now _ ADV RB _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 as _ ADP IN _ 5 case _ _ 4 for _ ADP IN _ 5 case _ _ 5 tomorrow _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 hell _ INTJ NN _ 1 discourse _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 who _ PRON WP _ 10 nsubj _ _ 10 knows _ VERB VBZ _ 1 dep _ _ 11 ? _ PUNCT . _ 1 punct _ _ 1 What _ PRON WP _ 2 nsubj _ _ 2 happened _ VERB VBD _ 4 csubj _ _ 3 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 4 shows _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 financial _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 12 nsubjpass _ _ 8 are _ AUX VBP _ 12 auxpass _ _ 9 not _ PART RB _ 12 neg _ _ 10 yet _ ADV RB _ 12 advmod _ _ 11 sufficiently _ ADV RB _ 12 advmod _ _ 12 coordinated _ VERB VBN _ 4 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 handle _ VERB VB _ 12 xcomp _ _ 15 another _ DET DT _ 16 det _ _ 16 meltdown _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 prices _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 fiddling _ NOUN VBG _ 9 nsubj _ _ 3 with _ ADP IN _ 4 case _ _ 4 systems _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 procedures _ NOUN NNS _ 4 conj _ _ 7 will _ AUX MD _ 9 aux _ _ 8 ever _ ADV RB _ 9 advmod _ _ 9 prevent _ VERB VB _ 0 root _ _ 10 markets _ NOUN NNS _ 9 dobj _ _ 11 from _ SCONJ IN _ 12 mark _ _ 12 suffering _ VERB VBG _ 9 advcl _ _ 13 a _ DET DT _ 15 det _ _ 14 panic _ NOUN NN _ 15 compound _ _ 15 wave _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 selling _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 markets _ NOUN NNS _ 4 nsubj _ _ 3 can _ AUX MD _ 4 aux _ _ 4 operate _ VERB VB _ 0 root _ _ 5 with _ ADP IN _ 9 case _ _ 6 greater _ ADJ JJR _ 9 amod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 lesser _ ADJ JJR _ 6 conj _ _ 9 efficiency _ NOUN NN _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 1987 _ NUM CD _ 4 nummod _ _ 4 plunge _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 markets _ NOUN NNS _ 7 nsubj _ _ 7 agreed _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 it _ PRON PRP _ 12 nsubj _ _ 10 would _ AUX MD _ 12 aux _ _ 11 be _ VERB VB _ 12 cop _ _ 12 wise _ ADJ JJ _ 7 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 halt _ VERB VB _ 12 xcomp _ _ 15 trading _ NOUN NN _ 14 dobj _ _ 16 whenever _ ADV WRB _ 19 advmod _ _ 17 panic _ NOUN NN _ 18 compound _ _ 18 conditions _ NOUN NNS _ 19 nsubj _ _ 19 arose _ VERB VBD _ 14 advcl _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 6 nsubj _ _ 6 adopted _ VERB VBD _ 0 root _ _ 7 two _ NUM CD _ 10 nummod _ _ 8 specific _ ADJ JJ _ 10 amod _ _ 9 circuit _ NOUN NN _ 10 compound _ _ 10 breakers _ NOUN NNS _ 6 dobj _ _ 11 : _ PUNCT : _ 10 punct _ _ 12 If _ SCONJ IN _ 17 mark _ _ 13 the _ DET DT _ 16 det _ _ 14 Dow _ PROPN NNP _ 16 compound _ _ 15 Jones _ PROPN NNP _ 16 compound _ _ 16 index _ NOUN NN _ 17 nsubj _ _ 17 falls _ VERB VBZ _ 27 advcl _ _ 18 250 _ NUM CD _ 19 nummod _ _ 19 points _ NOUN NNS _ 17 dobj _ _ 20 in _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 day _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 27 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 exchange _ NOUN NN _ 27 nsubj _ _ 26 will _ AUX MD _ 27 aux _ _ 27 halt _ NOUN VB _ 10 dep _ _ 28 trading _ VERB NN _ 27 dobj _ _ 29 for _ ADP IN _ 31 case _ _ 30 one _ NUM CD _ 31 nummod _ _ 31 hour _ NOUN NN _ 27 nmod _ _ 32 ; _ PUNCT : _ 27 punct _ _ 33 if _ SCONJ IN _ 36 mark _ _ 34 the _ DET DT _ 35 det _ _ 35 decline _ NOUN NN _ 36 nsubj _ _ 36 hits _ VERB VBZ _ 43 advcl _ _ 37 400 _ NUM CD _ 38 nummod _ _ 38 points _ NOUN NNS _ 36 dobj _ _ 39 , _ PUNCT , _ 43 punct _ _ 40 the _ DET DT _ 41 det _ _ 41 exchange _ NOUN NN _ 43 nsubj _ _ 42 will _ AUX MD _ 43 aux _ _ 43 close _ VERB VB _ 27 parataxis _ _ 44 for _ ADP IN _ 48 case _ _ 45 an _ DET DT _ 48 det _ _ 46 additional _ ADJ JJ _ 48 amod _ _ 47 two _ NUM CD _ 48 nummod _ _ 48 hours _ NOUN NNS _ 43 nmod _ _ 49 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rationale _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 10 mark _ _ 5 an _ DET DT _ 6 det _ _ 6 interruption _ NOUN NN _ 10 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 trading _ NOUN NN _ 6 nmod _ _ 9 will _ AUX MD _ 10 aux _ _ 10 allow _ VERB VB _ 3 ccomp _ _ 11 investors _ NOUN NNS _ 10 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 reconsider _ VERB VB _ 10 xcomp _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 strategies _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 calm _ VERB JJ _ 13 conj _ _ 18 sellers _ NOUN NNS _ 17 dobj _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 lead _ VERB VB _ 13 conj _ _ 21 buyers _ NOUN NNS _ 20 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 enter _ VERB VB _ 20 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 market _ NOUN NN _ 23 dobj _ _ 26 at _ ADP IN _ 30 case _ _ 27 indicated _ VERB VBD _ 30 amod _ _ 28 new _ ADJ JJ _ 30 amod _ _ 29 price _ NOUN NN _ 30 compound _ _ 30 levels _ NOUN NNS _ 23 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 impossible _ ADJ JJ _ 0 root _ _ 4 to _ ADP TO _ 5 dep _ _ 5 know _ VERB VB _ 3 ccomp _ _ 6 whether _ SCONJ IN _ 10 mark _ _ 7 that _ DET DT _ 8 det _ _ 8 theory _ NOUN NN _ 10 nsubj _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 realistic _ ADJ JJ _ 5 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 temporary _ ADJ JJ _ 3 amod _ _ 3 cessation _ NOUN NN _ 8 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 trading _ NOUN NN _ 3 nmod _ _ 6 may _ AUX MD _ 8 aux _ _ 7 indeed _ ADV RB _ 8 advmod _ _ 8 discourage _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 selling _ NOUN NN _ 11 compound _ _ 11 panic _ NOUN NN _ 8 dobj _ _ 12 from _ SCONJ IN _ 13 mark _ _ 13 feeding _ VERB VBG _ 8 advcl _ _ 14 on _ ADP IN _ 15 case _ _ 15 itself _ PRON PRP _ 13 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 there _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 also _ ADV RB _ 3 advmod _ _ 5 the _ DET DT _ 6 det _ _ 6 possibility _ NOUN NN _ 3 nsubj _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 shutting _ VERB VBG _ 12 csubj _ _ 9 down _ ADP RP _ 8 compound:prt _ _ 10 markets _ NOUN NNS _ 8 dobj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 intensify _ VERB VB _ 6 ccomp _ _ 13 fears _ NOUN NNS _ 12 dobj _ _ 14 and _ CONJ CC _ 12 cc _ _ 15 cause _ VERB VB _ 12 conj _ _ 16 an _ DET DT _ 20 det _ _ 17 even _ ADV RB _ 19 advmod _ _ 18 more _ ADV RBR _ 19 advmod _ _ 19 abrupt _ ADJ JJ _ 20 amod _ _ 20 slide _ NOUN NN _ 15 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 prices _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 What _ PRON WP _ 2 nsubj _ _ 2 happened _ VERB VBD _ 6 csubj _ _ 3 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 worst _ ADJ JJS _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 all _ DET DT _ 9 det _ _ 9 worlds _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 exchanges _ NOUN NNS _ 4 nsubj _ _ 4 followed _ VERB VBD _ 0 root _ _ 5 their _ PRON PRP$ _ 9 nmod:poss _ _ 6 own _ ADJ JJ _ 9 amod _ _ 7 pre-set _ ADJ JJ _ 9 amod _ _ 8 circuit _ NOUN NN _ 9 compound _ _ 9 breakers _ NOUN NNS _ 4 dobj _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 shut _ VERB VB _ 4 conj _ _ 12 down _ ADP RP _ 11 compound:prt _ _ 13 at _ ADP IN _ 16 case _ _ 14 about _ ADV IN _ 16 advmod _ _ 15 3 _ NUM CD _ 16 nummod _ _ 16 p.m. _ NOUN NN _ 11 nmod _ _ 17 for _ ADP IN _ 19 case _ _ 18 30 _ NUM CD _ 19 nummod _ _ 19 minutes _ NOUN NNS _ 11 nmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 after _ SCONJ IN _ 31 mark _ _ 22 the _ DET DT _ 23 det _ _ 23 Standard _ PROPN NNP _ 29 nmod:poss _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Poor _ PROPN NNP _ 23 conj _ _ 26 's _ PART POS _ 23 case _ _ 27 500 _ NUM CD _ 29 nummod _ _ 28 stock _ NOUN NN _ 29 compound _ _ 29 index _ NOUN NN _ 31 nsubj _ _ 30 had _ AUX VBD _ 31 aux _ _ 31 fallen _ VERB VBN _ 11 advcl _ _ 32 12 _ NUM CD _ 33 nummod _ _ 33 points _ NOUN NNS _ 31 dobj _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 or _ CONJ CC _ 33 cc _ _ 36 about _ ADV IN _ 37 advmod _ _ 37 100 _ NUM CD _ 38 nummod _ _ 38 points _ NOUN NNS _ 33 conj _ _ 39 on _ ADP IN _ 43 case _ _ 40 the _ DET DT _ 43 det _ _ 41 Dow _ PROPN NNP _ 43 compound _ _ 42 Jones _ PROPN NNP _ 43 compound _ _ 43 index _ NOUN NN _ 38 nmod _ _ 44 . _ PUNCT . _ 4 punct _ _ 1 Options _ NOUN NNS _ 2 compound _ _ 2 markets _ NOUN NNS _ 3 nsubj _ _ 3 stopped _ VERB VBD _ 0 root _ _ 4 trading _ NOUN VBG _ 3 dobj _ _ 5 in _ ADP IN _ 7 case _ _ 6 many _ ADJ JJ _ 7 amod _ _ 7 securities _ NOUN NNS _ 4 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 12 nsubj _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 under _ ADP IN _ 10 case _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 own _ ADJ JJ _ 10 amod _ _ 10 rules _ NOUN NNS _ 12 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 remained _ VERB VBD _ 0 root _ _ 13 open _ ADJ JJ _ 12 xcomp _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 With _ ADP IN _ 3 case _ _ 2 nowhere _ ADV RB _ 3 advmod _ _ 3 else _ ADV JJ _ 14 nmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 go _ VERB VB _ 3 acl _ _ 6 , _ PUNCT , _ 14 punct _ _ 7 sellers _ NOUN NNS _ 14 nsubj _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 and _ CONJ CC _ 12 cc _ _ 10 particularly _ ADV RB _ 12 dep _ _ 11 program _ NOUN NN _ 12 compound _ _ 12 traders _ NOUN NNS _ 7 dep _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 focused _ VERB VBD _ 0 root _ _ 15 all _ DET DT _ 17 det:predet _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 selling _ NOUN NN _ 14 dobj _ _ 18 on _ ADP IN _ 23 case _ _ 19 the _ DET DT _ 23 det _ _ 20 New _ PROPN NNP _ 23 compound _ _ 21 York _ PROPN NNP _ 23 compound _ _ 22 Stock _ PROPN NNP _ 23 compound _ _ 23 Exchange _ PROPN NNP _ 14 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 As _ SCONJ IN _ 6 mark _ _ 2 liquidity _ NOUN NN _ 6 nsubj _ _ 3 on _ ADP IN _ 5 case _ _ 4 that _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 2 nmod _ _ 6 weakened _ VERB VBD _ 9 advcl _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 fell _ VERB VBD _ 0 root _ _ 10 sharply _ ADV RB _ 9 advmod _ _ 11 . _ PUNCT . _ 9 punct _ _ 1 Had _ AUX VBD _ 8 aux _ _ 2 the _ DET DT _ 3 det _ _ 3 futures _ NOUN NNS _ 8 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 options _ NOUN NNS _ 6 compound _ _ 6 markets _ NOUN NNS _ 3 conj _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 open _ ADJ JJ _ 15 dep _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 additional _ ADJ JJ _ 11 amod _ _ 11 liquidity _ NOUN NN _ 15 nsubjpass _ _ 12 would _ AUX MD _ 15 aux _ _ 13 have _ AUX VB _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 provided _ VERB VBN _ 0 root _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 the _ DET DT _ 18 det _ _ 18 decline _ NOUN NN _ 27 nsubj _ _ 19 , _ PUNCT , _ 27 punct _ _ 20 most _ ADV JJS _ 21 advmod _ _ 21 probably _ ADV RB _ 27 advmod _ _ 22 , _ PUNCT , _ 27 punct _ _ 23 would _ AUX MD _ 27 aux _ _ 24 have _ AUX VB _ 27 aux _ _ 25 been _ VERB VBN _ 27 cop _ _ 26 less _ ADV RBR _ 27 advmod _ _ 27 intense _ ADJ JJ _ 15 conj _ _ 28 . _ PUNCT . _ 15 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 3:30 _ NUM CD _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 after _ ADP IN _ 7 case _ _ 5 intense _ ADJ JJ _ 7 amod _ _ 6 telephone _ NOUN NN _ 7 compound _ _ 7 negotiations _ NOUN NNS _ 18 nmod _ _ 8 between _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 trading _ NOUN NN _ 11 compound _ _ 11 markets _ NOUN NNS _ 7 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Washington _ PROPN NNP _ 11 conj _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 futures _ NOUN NNS _ 17 compound _ _ 17 exchanges _ NOUN NNS _ 18 nsubj _ _ 18 reopened _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 trading _ NOUN NN _ 7 nsubjpass _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 however _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 halted _ VERB VBN _ 0 root _ _ 8 altogether _ ADV RB _ 7 advmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 3:45 _ NUM CD _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 after _ SCONJ IN _ 17 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 markets _ NOUN NNS _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 dropped _ VERB VBN _ 7 advcl _ _ 18 an _ DET DT _ 21 det _ _ 19 additional _ ADJ JJ _ 21 amod _ _ 20 30 _ NUM CD _ 21 nummod _ _ 21 points _ NOUN NNS _ 17 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 which _ PRON WDT _ 27 nsubj _ _ 24 is _ VERB VBZ _ 27 cop _ _ 25 the _ DET DT _ 27 det _ _ 26 daily _ ADJ JJ _ 27 amod _ _ 27 limit _ NOUN NN _ 21 acl:relcl _ _ 28 for _ ADP IN _ 30 case _ _ 29 price _ NOUN NN _ 30 compound _ _ 30 declines _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 point _ NOUN NN _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 options _ NOUN NNS _ 7 compound _ _ 7 markets _ NOUN NNS _ 9 nsubj _ _ 8 also _ ADV RB _ 9 advmod _ _ 9 shut _ VERB VBD _ 0 root _ _ 10 down _ ADP RB _ 9 compound:prt _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 once _ ADV RB _ 13 advmod _ _ 13 more _ ADV JJR _ 14 advmod _ _ 14 left _ VERB VBD _ 9 conj _ _ 15 all _ DET DT _ 16 det _ _ 16 sales _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 handled _ VERB VBN _ 14 xcomp _ _ 20 by _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 New _ PROPN NNP _ 25 compound _ _ 23 York _ PROPN NNP _ 25 compound _ _ 24 Stock _ PROPN NNP _ 25 compound _ _ 25 Exchange _ PROPN NNP _ 19 nmod _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 time _ NOUN NN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 recognize _ VERB VB _ 3 acl _ _ 6 that _ SCONJ IN _ 27 mark _ _ 7 the _ DET DT _ 11 det _ _ 8 New _ PROPN NNP _ 11 compound _ _ 9 York _ PROPN NNP _ 11 compound _ _ 10 Stock _ PROPN NNP _ 11 compound _ _ 11 Exchange _ PROPN NNP _ 27 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 the _ DET DT _ 15 det _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 markets _ NOUN NNS _ 11 conj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 the _ DET DT _ 19 det _ _ 18 options _ NOUN NNS _ 19 compound _ _ 19 markets _ NOUN NNS _ 11 conj _ _ 20 , _ PUNCT , _ 27 punct _ _ 21 though _ ADP IN _ 23 case _ _ 22 physically _ ADV RB _ 23 advmod _ _ 23 separate _ ADJ JJ _ 27 advmod _ _ 24 , _ PUNCT , _ 27 punct _ _ 25 have _ AUX VBP _ 27 aux _ _ 26 actually _ ADV RB _ 27 advmod _ _ 27 become _ VERB VBN _ 5 ccomp _ _ 28 so _ ADV RB _ 29 advmod _ _ 29 closely _ ADV RB _ 30 advmod _ _ 30 intertwined _ VERB VBN _ 27 xcomp _ _ 31 as _ SCONJ IN _ 33 mark _ _ 32 to _ PART TO _ 33 mark _ _ 33 constitute _ VERB VB _ 30 advcl _ _ 34 one _ NUM CD _ 35 nummod _ _ 35 market _ NOUN NN _ 33 dobj _ _ 36 effectively _ ADV RB _ 33 advmod _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 Traders _ NOUN NNS _ 3 nsubj _ _ 2 can _ AUX MD _ 3 aux _ _ 3 vary _ VERB VB _ 0 root _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 strategies _ NOUN NNS _ 3 dobj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 execute _ VERB VB _ 3 conj _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 orders _ NOUN NNS _ 7 dobj _ _ 10 in _ ADP IN _ 12 case _ _ 11 any _ DET DT _ 12 det _ _ 12 one _ NUM CD _ 7 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 them _ PRON PRP _ 12 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 therefore _ ADV RB _ 3 advmod _ _ 3 makes _ VERB VBZ _ 0 root _ _ 4 no _ DET DT _ 5 neg _ _ 5 sense _ NOUN NN _ 3 dobj _ _ 6 for _ SCONJ IN _ 10 mark _ _ 7 each _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 10 nsubj _ _ 9 to _ PART TO _ 10 mark _ _ 10 adopt _ VERB VB _ 3 advcl _ _ 11 different _ ADJ JJ _ 13 amod _ _ 12 circuit _ NOUN NN _ 13 compound _ _ 13 breakers _ NOUN NNS _ 10 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 achieve _ VERB VB _ 0 root _ _ 3 maximum _ NOUN NN _ 4 compound _ _ 4 liquidity _ NOUN NN _ 2 dobj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 minimize _ VERB VB _ 2 conj _ _ 7 price _ NOUN NN _ 8 compound _ _ 8 volatility _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 either _ CONJ CC _ 2 cc:preconj _ _ 11 all _ DET DT _ 12 det _ _ 12 markets _ NOUN NNS _ 15 nsubj _ _ 13 should _ AUX MD _ 15 aux _ _ 14 be _ VERB VB _ 15 cop _ _ 15 open _ ADJ JJ _ 2 conj _ _ 16 to _ ADP TO _ 17 case _ _ 17 trading _ NOUN NN _ 15 nmod _ _ 18 or _ CONJ CC _ 2 cc _ _ 19 none _ NOUN NN _ 2 conj _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Synchronized _ VERB VBN _ 3 amod _ _ 2 circuit _ NOUN NN _ 3 compound _ _ 3 breakers _ NOUN NNS _ 7 nsubj _ _ 4 would _ AUX MD _ 7 aux _ _ 5 not _ PART RB _ 7 neg _ _ 6 have _ AUX VB _ 7 aux _ _ 7 halted _ VERB VBN _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 slide _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 prices _ NOUN NNS _ 9 nmod _ _ 12 on _ ADP IN _ 13 case _ _ 13 Friday _ PROPN NNP _ 9 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 but _ CONJ CC _ 7 cc _ _ 16 they _ PRON PRP _ 20 nsubj _ _ 17 probably _ ADV RB _ 20 advmod _ _ 18 would _ AUX MD _ 20 aux _ _ 19 have _ AUX VB _ 20 aux _ _ 20 made _ VERB VBN _ 7 conj _ _ 21 for _ ADP IN _ 26 case _ _ 22 smoother _ ADJ JJR _ 26 amod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 less _ ADV RBR _ 25 advmod _ _ 25 volatile _ ADJ JJ _ 26 amod _ _ 26 executions _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ PART VBZ _ 3 dep _ _ 3 time _ NOUN NN _ 0 root _ _ 4 for _ SCONJ IN _ 14 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 exchanges _ NOUN NNS _ 14 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 12 det _ _ 9 Securities _ PROPN NNPS _ 12 compound _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Exchange _ PROPN NNP _ 9 conj _ _ 12 Commission _ PROPN NNP _ 6 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 agree _ VERB VB _ 3 acl:relcl _ _ 15 on _ ADP IN _ 17 case _ _ 16 joint _ ADJ JJ _ 17 amod _ _ 17 conditions _ NOUN NNS _ 14 nmod _ _ 18 for _ SCONJ IN _ 19 mark _ _ 19 halting _ VERB VBG _ 17 acl _ _ 20 trading _ NOUN NN _ 19 dobj _ _ 21 or _ CONJ CC _ 19 cc _ _ 22 staying _ VERB VBG _ 19 conj _ _ 23 open _ ADJ JJ _ 22 xcomp _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Let _ VERB VB _ 0 root _ _ 2 's _ PRON PRP _ 1 dobj _ _ 3 not _ PART RB _ 4 neg _ _ 4 have _ VERB VBP _ 1 dep _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 shut _ VERB VBD _ 4 xcomp _ _ 8 down _ ADP RP _ 7 compound:prt _ _ 9 for _ ADP IN _ 11 case _ _ 10 30 _ NUM CD _ 11 nummod _ _ 11 minutes _ NOUN NNS _ 7 nmod _ _ 12 when _ ADV WRB _ 15 advmod _ _ 13 the _ DET DT _ 14 det _ _ 14 Dow _ PROPN NNP _ 15 nsubj _ _ 15 declines _ VERB VBZ _ 7 advcl _ _ 16 100 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 15 dobj _ _ 18 and _ CONJ CC _ 7 cc _ _ 19 another _ DET DT _ 20 nsubj _ _ 20 shut _ VERB VBN _ 7 conj _ _ 21 down _ ADP RP _ 20 compound:prt _ _ 22 for _ ADP IN _ 24 case _ _ 23 an _ DET DT _ 24 det _ _ 24 hour _ NOUN NN _ 20 nmod _ _ 25 after _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 250-point _ ADJ JJ _ 28 amod _ _ 28 decline _ NOUN NN _ 20 nmod _ _ 29 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 need _ NOUN NN _ 12 nsubj _ _ 3 for _ ADP IN _ 7 case _ _ 4 hurried _ ADJ VBN _ 7 amod _ _ 5 last-minute _ ADJ JJ _ 7 amod _ _ 6 telephone _ NOUN NN _ 7 compound _ _ 7 negotiations _ NOUN NNS _ 2 nmod _ _ 8 among _ ADP IN _ 10 case _ _ 9 market _ NOUN NN _ 10 compound _ _ 10 officials _ NOUN NNS _ 7 nmod _ _ 11 will _ AUX MD _ 12 aux _ _ 12 disappear _ VERB VB _ 0 root _ _ 13 once _ SCONJ RB _ 17 mark _ _ 14 rules _ NOUN NNS _ 17 nsubj _ _ 15 are _ VERB VBP _ 17 cop _ _ 16 in _ ADP IN _ 17 case _ _ 17 place _ NOUN NN _ 12 advcl _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 synchronize _ VERB VBP _ 17 ccomp _ _ 20 circuit _ NOUN NN _ 21 compound _ _ 21 breakers _ NOUN NNS _ 19 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 all _ DET DT _ 24 det _ _ 24 markets _ NOUN NNS _ 19 nmod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 circuit _ NOUN NN _ 4 compound _ _ 4 breakers _ NOUN NNS _ 16 nsubj _ _ 5 , _ PUNCT , _ 16 punct _ _ 6 if _ SCONJ IN _ 8 mark _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 are _ VERB VBP _ 16 dep _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 applied _ VERB VBN _ 8 xcomp _ _ 12 at _ ADP IN _ 13 case _ _ 13 all _ DET DT _ 11 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 will _ AUX MD _ 16 aux _ _ 16 require _ VERB VB _ 0 root _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 futures _ NOUN NNS _ 22 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 options _ NOUN NNS _ 21 compound _ _ 21 trading _ NOUN NN _ 18 conj _ _ 22 continue _ VERB VBP _ 16 ccomp _ _ 23 as _ ADV RB _ 24 advmod _ _ 24 long _ ADV RB _ 22 advmod _ _ 25 as _ SCONJ IN _ 31 mark _ _ 26 the _ DET DT _ 30 det _ _ 27 New _ PROPN NNP _ 30 compound _ _ 28 York _ PROPN NNP _ 30 compound _ _ 29 Stock _ PROPN NNP _ 30 compound _ _ 30 Exchange _ PROPN NNP _ 31 nsubj _ _ 31 remains _ VERB VBZ _ 24 advcl _ _ 32 open _ ADJ JJ _ 31 xcomp _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rules _ NOUN NNS _ 5 nsubjpass _ _ 3 should _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 established _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 7 case _ _ 7 agreement _ NOUN NN _ 5 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 officials _ NOUN NNS _ 7 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 all _ DET DT _ 14 det _ _ 13 affected _ VERB VBN _ 14 amod _ _ 14 exchanges _ NOUN NNS _ 10 nmod _ _ 15 acting _ VERB VBG _ 10 acl _ _ 16 under _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 oversight _ NOUN NN _ 15 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 with _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 approval _ NOUN NN _ 18 conj _ _ 23 of _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 government _ NOUN NN _ 27 compound _ _ 26 regulatory _ ADJ JJ _ 27 amod _ _ 27 agencies _ NOUN NNS _ 18 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 Should _ AUX MD _ 24 aux _ _ 2 the _ DET DT _ 3 det _ _ 3 SEC _ PROPN NNP _ 24 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 the _ DET DT _ 9 det _ _ 6 Commodities _ PROPN NNP _ 9 compound _ _ 7 Futures _ PROPN NNPS _ 9 compound _ _ 8 Trading _ PROPN NNP _ 9 compound _ _ 9 Commission _ PROPN NNP _ 3 conj _ _ 10 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 11 which _ PRON WDT _ 17 nsubj _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 with _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 SEC _ PROPN NNP _ 17 nmod _ _ 16 , _ PUNCT , _ 17 punct _ _ 17 regulates _ VERB VBZ _ 9 dep _ _ 18 the _ DET DT _ 21 det _ _ 19 Chicago _ PROPN NNP _ 21 compound _ _ 20 stock-index _ ADJ NN _ 21 amod _ _ 21 markets _ NOUN NNS _ 17 dobj _ _ 22 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 23 be _ VERB VB _ 24 cop _ _ 24 unable _ ADJ JJ _ 31 advcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 agree _ VERB VB _ 24 xcomp _ _ 27 , _ PUNCT , _ 31 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 issue _ NOUN NN _ 31 nsubj _ _ 30 may _ AUX MD _ 31 aux _ _ 31 have _ VERB VB _ 0 root _ _ 32 to _ PART TO _ 34 mark _ _ 33 be _ AUX VB _ 34 auxpass _ _ 34 resolved _ VERB VBN _ 31 xcomp _ _ 35 by _ ADP IN _ 36 case _ _ 36 decision _ NOUN NN _ 34 nmod _ _ 37 of _ ADP IN _ 40 case _ _ 38 the _ DET DT _ 40 det _ _ 39 Treasury _ PROPN NNP _ 40 compound _ _ 40 secretary _ NOUN NN _ 36 nmod _ _ 41 . _ PUNCT . _ 31 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 ways _ NOUN NNS _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 our _ PRON PRP$ _ 7 nmod:poss _ _ 6 financial _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 10 nsubjpass _ _ 8 are _ VERB VBP _ 10 auxpass _ _ 9 better _ ADV RBR _ 10 advmod _ _ 10 prepared _ VERB JJ _ 0 root _ _ 11 today _ ADV NN _ 10 nmod:tmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 handle _ VERB VB _ 10 xcomp _ _ 14 a _ DET DT _ 15 det _ _ 15 decline _ NOUN NN _ 13 dobj _ _ 16 than _ SCONJ IN _ 18 mark _ _ 17 they _ PRON PRP _ 18 nsubj _ _ 18 were _ VERB VBD _ 10 advcl _ _ 19 two _ NUM CD _ 20 nummod _ _ 20 years _ NOUN NNS _ 21 nmod:npmod _ _ 21 ago _ ADV RB _ 18 advmod _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 7 nsubj _ _ 6 now _ ADV RB _ 7 advmod _ _ 7 has _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 capacity _ NOUN NN _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 handle _ VERB VB _ 9 acl _ _ 12 a _ DET DT _ 13 det _ _ 13 volume _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 18 case _ _ 15 nearly _ ADV RB _ 17 advmod _ _ 16 a _ DET DT _ 17 advmod _ _ 17 billion _ NUM CD _ 18 nummod _ _ 18 shares _ NOUN NNS _ 13 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 day _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Telephone _ NOUN NNP _ 2 compound _ _ 2 service _ NOUN NN _ 5 nsubjpass _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ AUX VBN _ 5 auxpass _ _ 5 improved _ VERB VBN _ 0 root _ _ 6 for _ ADP IN _ 7 case _ _ 7 customers _ NOUN NNS _ 5 nmod _ _ 8 trying _ VERB VBG _ 7 acl _ _ 9 to _ PART TO _ 10 mark _ _ 10 reach _ VERB VB _ 8 xcomp _ _ 11 their _ PRON PRP$ _ 12 nmod:poss _ _ 12 brokers _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 and _ CONJ CC _ 5 cc _ _ 15 specialists _ NOUN NNS _ 31 nsubj _ _ 16 -- _ PUNCT : _ 15 punct _ _ 17 who _ PRON WP _ 19 dobj _ _ 18 I _ PRON PRP _ 19 nsubj _ _ 19 believe _ VERB VBP _ 15 acl:relcl _ _ 20 should _ AUX MD _ 21 aux _ _ 21 stay _ VERB VB _ 19 ccomp _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 despite _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 urgings _ NOUN NNS _ 19 nmod _ _ 26 of _ ADP IN _ 29 case _ _ 27 some _ DET DT _ 29 det _ _ 28 post-crash _ ADJ JJ _ 29 amod _ _ 29 critics _ NOUN NNS _ 25 nmod _ _ 30 -- _ PUNCT : _ 15 punct _ _ 31 have _ VERB VBP _ 5 conj _ _ 32 larger _ ADJ JJR _ 34 amod _ _ 33 capital _ NOUN NN _ 34 compound _ _ 34 positions _ NOUN NNS _ 31 dobj _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 2 Of _ ADP IN _ 3 case _ _ 3 course _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 specialists _ NOUN NNS _ 7 nmod:poss _ _ 6 ' _ PART POS _ 5 case _ _ 7 actions _ NOUN NNS _ 11 nsubj _ _ 8 alone _ ADV RB _ 7 advmod _ _ 9 can _ AUX MD _ 11 aux _ _ 10 never _ ADV RB _ 11 neg _ _ 11 prevent _ VERB VB _ 0 root _ _ 12 a _ DET DT _ 14 det _ _ 13 major _ ADJ JJ _ 14 amod _ _ 14 crack _ NOUN NN _ 11 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 1 Witness _ VERB VB _ 0 root _ _ 2 the _ DET DT _ 3 det _ _ 3 fact _ NOUN NN _ 1 dobj _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 trading _ NOUN NN _ 9 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 some _ DET DT _ 8 det _ _ 8 stocks _ NOUN NNS _ 5 nmod _ _ 9 closed _ VERB VBD _ 3 ccomp _ _ 10 early _ ADJ RB _ 11 advmod _ _ 11 Friday _ PROPN NNP _ 9 advmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 opened _ VERB VBD _ 9 conj _ _ 14 late _ ADJ RB _ 15 advmod _ _ 15 Monday _ PROPN NNP _ 13 advmod _ _ 16 because _ ADP IN _ 19 case _ _ 17 of _ ADP IN _ 16 mwe _ _ 18 an _ DET DT _ 19 det _ _ 19 excess _ NOUN NN _ 9 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 sell _ NOUN NN _ 22 compound _ _ 22 orders _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 1 punct _ _ 24 -RRB- _ PUNCT -RRB- _ 1 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 task _ NOUN NN _ 8 nsubj _ _ 4 of _ SCONJ IN _ 5 mark _ _ 5 improving _ VERB VBG _ 3 acl _ _ 6 market _ NOUN NN _ 7 compound _ _ 7 performance _ NOUN NN _ 5 dobj _ _ 8 remains _ VERB VBZ _ 0 root _ _ 9 unfinished _ ADJ JJ _ 8 xcomp _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Freund _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 former _ ADJ JJ _ 6 amod _ _ 5 chief _ ADJ NN _ 6 amod _ _ 6 economist _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 New _ PROPN NNP _ 12 compound _ _ 10 York _ PROPN NNP _ 12 compound _ _ 11 Stock _ PROPN NNP _ 12 compound _ _ 12 Exchange _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 is _ VERB VBZ _ 16 cop _ _ 15 a _ DET DT _ 16 det _ _ 16 professor _ NOUN NN _ 0 root _ _ 17 of _ ADP IN _ 18 case _ _ 18 economics _ NOUN NNS _ 16 nmod _ _ 19 at _ ADP IN _ 24 case _ _ 20 Pace _ PROPN NNP _ 21 compound _ _ 21 University _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 business _ NOUN NN _ 24 compound _ _ 24 school _ NOUN NN _ 16 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 New _ PROPN NNP _ 27 compound _ _ 27 York _ PROPN NNP _ 24 nmod _ _ 28 . _ PUNCT . _ 16 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 UNIFIED _ ADJ NNP _ 3 amod _ _ 3 EUROPE _ PROPN NNP _ 4 nsubj _ _ 4 poses _ VERB VBZ _ 0 root _ _ 5 labor _ NOUN NN _ 6 compound _ _ 6 problems _ NOUN NNS _ 4 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 prospects _ NOUN NNS _ 6 conj _ _ 9 for _ ADP IN _ 11 case _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 firms _ NOUN NNS _ 6 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 social _ ADJ JJ _ 4 amod _ _ 4 dimension _ NOUN NN _ 24 nsubj _ _ 5 '' _ PUNCT '' _ 4 punct _ _ 6 -- _ PUNCT : _ 8 punct _ _ 7 worker _ NOUN NN _ 8 compound _ _ 8 concerns _ NOUN NNS _ 4 dep _ _ 9 -- _ PUNCT : _ 8 punct _ _ 10 of _ ADP IN _ 15 case _ _ 11 the _ DET DT _ 13 det _ _ 12 European _ PROPN NNP _ 13 compound _ _ 13 Community _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 plan _ NOUN NN _ 4 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 open _ VERB VB _ 15 acl _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 internal _ ADJ JJ _ 20 amod _ _ 20 borders _ NOUN NNS _ 17 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 1992 _ NUM CD _ 17 nmod _ _ 23 could _ AUX MD _ 24 aux _ _ 24 set _ VERB VB _ 37 ccomp _ _ 25 the _ DET DT _ 26 det _ _ 26 effort _ NOUN NN _ 24 dobj _ _ 27 `` _ PUNCT `` _ 24 punct _ _ 28 off _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 rails _ NOUN NNS _ 24 nmod _ _ 31 '' _ PUNCT '' _ 24 punct _ _ 32 if _ SCONJ IN _ 34 mark _ _ 33 not _ ADV RB _ 34 neg _ _ 34 done _ VERB VBN _ 24 advcl _ _ 35 reasonably _ ADV RB _ 34 advmod _ _ 36 , _ PUNCT , _ 37 punct _ _ 37 says _ VERB VBZ _ 0 root _ _ 38 General _ PROPN NNP _ 44 compound _ _ 39 Electric _ PROPN NNP _ 44 compound _ _ 40 senior _ ADJ JJ _ 44 amod _ _ 41 vice _ NOUN NN _ 44 compound _ _ 42 president _ NOUN NN _ 44 compound _ _ 43 Frank _ PROPN NNP _ 44 compound _ _ 44 Doyle _ PROPN NNP _ 37 nsubj _ _ 45 . _ PUNCT . _ 37 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 companies _ NOUN NNS _ 8 nsubj _ _ 3 wanting _ VERB VBG _ 2 acl _ _ 4 to _ PART TO _ 5 mark _ _ 5 expand _ VERB VB _ 3 xcomp _ _ 6 in _ ADP IN _ 7 case _ _ 7 Europe _ PROPN NNP _ 5 nmod _ _ 8 face _ VERB NN _ 33 ccomp _ _ 9 `` _ PUNCT `` _ 11 punct _ _ 10 tough _ ADJ JJ _ 11 amod _ _ 11 pressure _ NOUN NN _ 8 dobj _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 from _ ADP IN _ 14 case _ _ 14 unions _ NOUN NNS _ 11 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 nations _ NOUN NNS _ 8 nmod _ _ 17 such _ ADJ JJ _ 20 case _ _ 18 as _ ADP IN _ 17 mwe _ _ 19 West _ PROPN NNP _ 20 compound _ _ 20 Germany _ PROPN NNP _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 play _ VERB VBP _ 16 acl:relcl _ _ 24 a _ DET DT _ 27 det _ _ 25 big _ ADJ JJ _ 27 amod _ _ 26 consulting _ NOUN NN _ 27 compound _ _ 27 role _ NOUN NN _ 23 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 management _ NOUN NN _ 30 compound _ _ 30 decisions _ NOUN NNS _ 23 nmod _ _ 31 , _ PUNCT , _ 33 punct _ _ 32 he _ PRON PRP _ 33 nsubj _ _ 33 says _ VERB VBZ _ 0 root _ _ 34 . _ PUNCT . _ 33 punct _ _ 1 FMC _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Baxter _ PROPN NNP _ 5 compound _ _ 5 International _ PROPN NNP _ 2 conj _ _ 6 say _ VERB VBP _ 0 root _ _ 7 unions _ NOUN NNS _ 11 nsubj _ _ 8 also _ ADV RB _ 11 advmod _ _ 9 wo _ AUX MD _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 like _ VERB VB _ 6 ccomp _ _ 12 plant _ NOUN NN _ 13 compound _ _ 13 relocations _ NOUN NNS _ 11 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 needed _ VERB VBN _ 16 amod _ _ 16 restructuring _ NOUN NN _ 13 conj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 which _ PRON WDT _ 19 nsubj _ _ 19 means _ VERB VBZ _ 13 acl:relcl _ _ 20 layoffs _ NOUN NNS _ 19 dobj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 employers _ NOUN NNS _ 5 nsubj _ _ 3 have _ AUX VBP _ 5 aux _ _ 4 already _ ADV RB _ 5 advmod _ _ 5 begun _ VERB VBN _ 36 dep _ _ 6 moving _ VERB VBG _ 5 xcomp _ _ 7 to _ ADP TO _ 9 case _ _ 8 southern _ ADJ JJ _ 9 amod _ _ 9 countries _ NOUN NNS _ 6 nmod _ _ 10 such _ ADJ JJ _ 12 case _ _ 11 as _ ADP IN _ 10 mwe _ _ 12 Spain _ PROPN NNP _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Italy _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 where _ ADV WRB _ 19 advmod _ _ 17 wages _ NOUN NNS _ 19 nsubj _ _ 18 are _ VERB VBP _ 19 cop _ _ 19 low _ ADJ JJ _ 9 acl:relcl _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 unions _ NOUN NNS _ 23 nsubj _ _ 22 are _ VERB VBP _ 23 cop _ _ 23 weaker _ ADJ JJR _ 19 conj _ _ 24 ; _ PUNCT : _ 5 punct _ _ 25 demand _ NOUN NN _ 32 nsubj _ _ 26 for _ ADP IN _ 28 case _ _ 27 trained _ VERB VBN _ 28 amod _ _ 28 labor _ NOUN NN _ 25 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 managers _ NOUN NNS _ 28 conj _ _ 31 will _ AUX MD _ 32 aux _ _ 32 rise _ VERB VB _ 5 parataxis _ _ 33 there _ ADV RB _ 32 advmod _ _ 34 , _ PUNCT , _ 5 punct _ _ 35 FMC _ PROPN NNP _ 36 nsubj _ _ 36 says _ VERB VBZ _ 0 root _ _ 37 . _ PUNCT . _ 36 punct _ _ 1 Pfizer _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Fluor _ PROPN NNP _ 1 conj _ _ 4 and _ CONJ CC _ 1 cc _ _ 5 GE _ PROPN NNP _ 1 conj _ _ 6 see _ VERB VBP _ 0 root _ _ 7 big _ ADJ JJ _ 12 amod _ _ 8 `` _ PUNCT `` _ 12 punct _ _ 9 EC _ PROPN NNP _ 12 compound _ _ 10 92 _ NUM CD _ 12 nummod _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 pluses _ NOUN NNS _ 6 dobj _ _ 13 : _ PUNCT : _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 push _ NOUN NN _ 12 dep _ _ 16 for _ ADP IN _ 18 case _ _ 17 job _ NOUN NN _ 18 compound _ _ 18 training _ NOUN NN _ 15 nmod _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 ease _ NOUN NN _ 15 conj _ _ 21 in _ SCONJ IN _ 22 mark _ _ 22 moving _ VERB VBG _ 20 acl _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 finding _ VERB VBG _ 22 conj _ _ 25 workers _ NOUN NNS _ 24 dobj _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 CLUBBING _ VERB VBG _ 10 csubj _ _ 2 A _ DET DT _ 3 det _ _ 3 FAN _ NOUN NN _ 1 dobj _ _ 4 was _ VERB VBD _ 10 cop _ _ 5 n't _ PART RB _ 10 neg _ _ 6 the _ DET DT _ 8 det _ _ 7 Baltimore _ PROPN NNP _ 8 compound _ _ 8 Orioles _ PROPN NNP _ 10 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 fault _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 So _ ADV RB _ 2 advmod _ _ 2 said _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 federal _ ADJ JJ _ 5 amod _ _ 5 judge _ NOUN NN _ 2 nsubj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 in _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 case _ NOUN NN _ 2 nmod _ _ 10 involving _ VERB VBG _ 9 acl _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 players _ NOUN NNS _ 10 dobj _ _ 13 for _ ADP IN _ 21 case _ _ 14 the _ DET DT _ 21 det _ _ 15 minor _ ADJ JJ _ 21 amod _ _ 16 league _ NOUN NN _ 21 compound _ _ 17 Bluefield _ PROPN NNP _ 21 dep _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Va. _ PROPN NNP _ 17 dep _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 Orioles _ PROPN NNP _ 12 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 a _ DET DT _ 26 det _ _ 24 Baltimore _ PROPN NNP _ 26 compound _ _ 25 farm _ NOUN NN _ 26 compound _ _ 26 team _ NOUN NN _ 21 appos _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 players _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 heckled _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 patron _ NOUN NN _ 4 nmod _ _ 8 during _ ADP IN _ 15 case _ _ 9 a _ DET DT _ 15 det _ _ 10 July _ PROPN NNP _ 15 dep _ _ 11 4 _ NUM CD _ 10 dep _ _ 12 , _ PUNCT , _ 10 punct _ _ 13 1988 _ NUM CD _ 10 dep _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 game _ NOUN NN _ 4 nmod _ _ 16 with _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 Martinsville _ PROPN NNP _ 19 compound _ _ 19 Phillies _ PROPN NNPS _ 15 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Like _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 parent _ NOUN NN _ 11 nmod _ _ 4 that _ DET IN _ 5 det _ _ 5 year _ NOUN NN _ 3 nmod:tmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 `` _ PUNCT `` _ 11 punct _ _ 8 Bluefield _ PROPN NNP _ 11 nsubj _ _ 9 was _ AUX VBD _ 11 aux _ _ 10 not _ PART RB _ 11 neg _ _ 11 having _ VERB VBG _ 19 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 11 nmod:tmod _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 judge _ NOUN NN _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 After _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 game _ NOUN NN _ 25 nmod _ _ 4 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 5 `` _ PUNCT `` _ 21 punct _ _ 6 Bluefield _ PROPN NNP _ 7 nsubj _ _ 7 lost _ VERB VBD _ 21 ccomp _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 9-8 _ NUM CD _ 7 advmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 stranding _ VERB VBG _ 7 xcomp _ _ 12 three _ NUM CD _ 13 nummod _ _ 13 runners _ NOUN NNS _ 11 dobj _ _ 14 in _ ADP IN _ 17 case _ _ 15 ... _ PUNCT : _ 17 punct _ _ 16 the _ DET DT _ 17 det _ _ 17 ninth _ ADJ JJ _ 11 nmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 '' _ PUNCT '' _ 21 punct _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 noted _ VERB VBD _ 25 parataxis _ _ 22 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 trouble _ NOUN NN _ 25 nsubj _ _ 25 began _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 More _ ADJ RBR _ 2 amod _ _ 2 taunting _ NOUN VBG _ 12 nsubj _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 parking _ NOUN NN _ 6 compound _ _ 6 lot _ NOUN NN _ 2 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 players _ NOUN NNS _ 10 nsubj _ _ 10 said _ VERB VBD _ 12 parataxis _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 led _ VERB VBD _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 fight _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 fan _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 punched _ VERB VBN _ 3 ccomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 kicked _ VERB VBN _ 6 conj _ _ 9 by _ ADP IN _ 11 case _ _ 10 one _ NUM CD _ 11 nummod _ _ 11 player _ NOUN NN _ 6 nmod _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 that _ SCONJ IN _ 16 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 other _ ADJ JJ _ 16 nsubj _ _ 16 broke _ VERB VBD _ 6 conj _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 jaw _ NOUN NN _ 16 dobj _ _ 19 with _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 22 det _ _ 21 baseball _ NOUN NN _ 22 compound _ _ 22 bat _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 judge _ NOUN NN _ 3 nsubj _ _ 3 dismissed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 fan _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 suit _ NOUN NN _ 3 dobj _ _ 8 against _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 team _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 however _ ADV RB _ 3 advmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 ruling _ VERB VBG _ 3 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 Orioles _ PROPN NNP _ 17 nsubj _ _ 17 innocent _ ADJ JJ _ 14 xcomp _ _ 18 of _ ADP IN _ 20 case _ _ 19 negligent _ ADJ JJ _ 20 amod _ _ 20 hiring _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 and _ CONJ CC _ 17 cc _ _ 23 not _ ADV RB _ 24 neg _ _ 24 responsible _ ADJ JJ _ 17 conj _ _ 25 for _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 fight _ NOUN NN _ 24 nmod _ _ 28 that _ PRON WDT _ 34 nsubj _ _ 29 was _ VERB VBD _ 34 cop _ _ 30 outside _ ADP IN _ 34 case _ _ 31 the _ DET DT _ 32 det _ _ 32 players _ NOUN NNS _ 34 nmod:poss _ _ 33 ' _ PART POS _ 32 case _ _ 34 employment _ NOUN NN _ 27 acl:relcl _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 PROPOSALS _ NOUN NNS _ 2 nsubj _ _ 2 ARISE _ VERB VBP _ 0 root _ _ 3 for _ SCONJ IN _ 4 mark _ _ 4 coping _ VERB VBG _ 2 advcl _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 shortage _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 nurses _ NOUN NNS _ 7 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 An _ DET DT _ 7 det _ _ 2 Association _ PROPN NNP _ 7 dep _ _ 3 of _ ADP IN _ 6 case _ _ 4 Academic _ PROPN NNP _ 6 compound _ _ 5 Health _ PROPN NNP _ 6 compound _ _ 6 Centers _ PROPN NNPS _ 2 nmod _ _ 7 report _ NOUN NN _ 8 nsubj _ _ 8 urges _ VERB VBZ _ 0 root _ _ 9 freeing _ VERB VBG _ 8 xcomp _ _ 10 nurses _ NOUN NNS _ 9 dobj _ _ 11 from _ ADP IN _ 12 case _ _ 12 duties _ NOUN NNS _ 9 nmod _ _ 13 that _ PRON WDT _ 16 nsubj _ _ 14 do _ AUX VBP _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 require _ VERB VB _ 12 acl:relcl _ _ 17 special _ ADJ JJ _ 18 amod _ _ 18 skills _ NOUN NNS _ 16 dobj _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 recommends _ VERB VBZ _ 0 root _ _ 4 better _ ADJ JJR _ 5 amod _ _ 5 retirement _ NOUN NN _ 3 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 day-care _ NOUN NN _ 8 compound _ _ 8 benefits _ NOUN NNS _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 basing _ VERB VBG _ 5 conj _ _ 12 pay _ NOUN NN _ 11 dobj _ _ 13 on _ ADP IN _ 14 case _ _ 14 education _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 experience _ NOUN NN _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 nurses _ NOUN NNS _ 22 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 demanding _ ADJ VBG _ 22 amod _ _ 21 work _ NOUN NN _ 22 compound _ _ 22 schedules _ NOUN NNS _ 14 conj _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 opposes _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 8 det _ _ 5 American _ PROPN NNP _ 8 compound _ _ 6 Medical _ PROPN NNP _ 8 compound _ _ 7 Association _ PROPN NNP _ 8 compound _ _ 8 proposal _ NOUN NN _ 3 dobj _ _ 9 for _ SCONJ IN _ 10 mark _ _ 10 creating _ VERB VBG _ 8 acl _ _ 11 a _ DET DT _ 15 det _ _ 12 `` _ PUNCT `` _ 15 punct _ _ 13 registered _ ADJ JJ _ 15 amod _ _ 14 care _ NOUN NN _ 15 compound _ _ 15 technologist _ NOUN NN _ 10 dobj _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 '' _ PUNCT '' _ 3 punct _ _ 18 as _ ADP IN _ 21 case _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 potentially _ ADV RB _ 21 advmod _ _ 21 divisive _ ADJ JJ _ 3 advcl _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 ; _ PUNCT : _ 3 punct _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 says _ VERB VBZ _ 3 parataxis _ _ 26 the _ DET DT _ 27 det _ _ 27 job _ NOUN NN _ 29 nsubj _ _ 28 would _ AUX MD _ 29 aux _ _ 29 entail _ VERB VB _ 25 ccomp _ _ 30 an _ DET DT _ 33 det _ _ 31 unwanted _ ADJ JJ _ 33 amod _ _ 32 new _ ADJ JJ _ 33 amod _ _ 33 doctor _ NOUN NN _ 38 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 `` _ PUNCT `` _ 38 punct _ _ 36 bedside _ NOUN NN _ 38 compound _ _ 37 '' _ PUNCT '' _ 38 punct _ _ 38 extension _ NOUN NN _ 29 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Over _ ADP IN _ 3 advmod _ _ 2 a _ DET DT _ 3 advmod _ _ 3 third _ ADJ JJ _ 12 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 618 _ NUM CD _ 6 nummod _ _ 6 hospitals _ NOUN NNS _ 3 nmod _ _ 7 surveyed _ VERB VBN _ 6 acl _ _ 8 by _ ADP IN _ 11 case _ _ 9 consultant _ NOUN NN _ 11 compound _ _ 10 Hewitt _ PROPN NNP _ 11 compound _ _ 11 Associates _ PROPN NNP _ 7 nmod _ _ 12 use _ VERB VB _ 0 root _ _ 13 a _ DET DT _ 16 det _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 clinical _ ADJ JJ _ 16 amod _ _ 16 ladder _ NOUN NN _ 12 dobj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 '' _ PUNCT '' _ 16 punct _ _ 19 basing _ VERB VBG _ 16 acl _ _ 20 advancement _ NOUN NN _ 19 dobj _ _ 21 on _ ADP IN _ 22 case _ _ 22 performance _ NOUN NN _ 19 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 education _ NOUN NN _ 22 conj _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 Many _ ADV JJ _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 use _ VERB VBP _ 0 root _ _ 4 recruiting _ VERB VBG _ 5 amod _ _ 5 bonuses _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 tuition _ NOUN NN _ 8 compound _ _ 8 reimbursement _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 loan _ NOUN NN _ 11 compound _ _ 11 repayment _ NOUN NN _ 5 conj _ _ 12 or _ CONJ CC _ 5 cc _ _ 13 child-care _ ADJ NN _ 14 amod _ _ 14 help _ NOUN NN _ 5 conj _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 give _ VERB VBP _ 0 root _ _ 3 lump-sum _ ADJ JJ _ 4 amod _ _ 4 incentives _ NOUN NNS _ 2 dobj _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 MRA _ PROPN NNP _ 3 compound _ _ 2 Staffing _ PROPN NNP _ 3 compound _ _ 3 Systems _ PROPN NNPS _ 4 nsubj _ _ 4 signs _ VERB NNS _ 0 root _ _ 5 up _ ADP IN _ 4 compound:prt _ _ 6 nurses _ NOUN NNS _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 paid _ VERB VBN _ 9 amod _ _ 9 travel _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 promising _ VERB JJ _ 4 advcl _ _ 12 annual _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 11 dobj _ _ 14 up _ ADP IN _ 17 case _ _ 15 to _ ADP TO _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 50,000 _ NUM CD _ 13 acl _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 free _ ADJ JJ _ 22 amod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 subsidized _ VERB JJ _ 19 conj _ _ 22 housing _ NOUN NN _ 13 conj _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 TREATING _ VERB VBG _ 6 csubj _ _ 2 EMPLOYEES _ NOUN NNS _ 1 dobj _ _ 3 with _ ADP IN _ 4 case _ _ 4 respect _ NOUN NN _ 1 nmod _ _ 5 is _ VERB VBZ _ 6 cop _ _ 6 crucial _ ADJ JJ _ 10 ccomp _ _ 7 for _ ADP IN _ 8 case _ _ 8 managers _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 consultant _ NOUN NN _ 13 compound _ _ 12 Hay _ PROPN NNP _ 13 compound _ _ 13 Group _ PROPN NNP _ 10 nsubj _ _ 14 after _ ADP IN _ 15 case _ _ 15 surveys _ NOUN NNS _ 10 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 18 advmod _ _ 18 million _ NUM CD _ 19 nummod _ _ 19 workers _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 9 nsubj _ _ 2 's _ VERB VBZ _ 9 cop _ _ 3 in _ ADP IN _ 9 case _ _ 4 their _ PRON PRP$ _ 9 nmod:poss _ _ 5 top _ ADJ JJ _ 9 amod _ _ 6 five _ NUM CD _ 9 nummod _ _ 7 `` _ PUNCT `` _ 9 punct _ _ 8 work _ NOUN NN _ 9 compound _ _ 9 values _ NOUN NNS _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 11 '' _ PUNCT '' _ 9 punct _ _ 1 Fully _ ADV RB _ 3 advmod _ _ 2 80 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 26 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 employees _ NOUN NNS _ 3 nmod _ _ 6 who _ PRON WP _ 7 nsubj _ _ 7 say _ VERB VBP _ 5 acl:relcl _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 bosses _ NOUN NNS _ 10 nsubj _ _ 10 treat _ VERB VB _ 7 ccomp _ _ 11 them _ PRON PRP _ 10 dobj _ _ 12 with _ ADP IN _ 13 case _ _ 13 respect _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 but _ CONJ CC _ 3 cc _ _ 16 only _ ADV RB _ 18 advmod _ _ 17 a _ DET DT _ 18 advmod _ _ 18 third _ ADJ JJ _ 3 conj _ _ 19 of _ ADP IN _ 20 case _ _ 20 those _ PRON DT _ 18 nmod _ _ 21 who _ PRON WP _ 24 nsubj _ _ 22 do _ AUX VBP _ 24 aux _ _ 23 n't _ PART RB _ 24 neg _ _ 24 feel _ VERB VB _ 20 acl:relcl _ _ 25 respected _ VERB JJ _ 24 xcomp _ _ 26 say _ VERB VBP _ 0 root _ _ 27 they _ PRON PRP _ 29 nsubjpass _ _ 28 're _ AUX VBP _ 29 auxpass _ _ 29 satisfied _ VERB VBN _ 26 ccomp _ _ 30 with _ SCONJ IN _ 33 mark _ _ 31 where _ ADV WRB _ 33 advmod _ _ 32 they _ PRON PRP _ 33 nsubj _ _ 33 work _ VERB VBP _ 29 advcl _ _ 34 . _ PUNCT . _ 26 punct _ _ 1 SPRUCING _ VERB VBG _ 0 root _ _ 2 UP _ ADP RP _ 1 compound:prt _ _ 3 THE _ DET DT _ 4 det _ _ 4 DIGS _ NOUN NNS _ 1 dobj _ _ 5 : _ PUNCT : _ 1 punct _ _ 6 About _ ADV RB _ 7 advmod _ _ 7 200 _ NUM CD _ 8 nummod _ _ 8 employees _ NOUN NNS _ 21 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Maryland _ PROPN NNP _ 12 compound _ _ 12 Department _ PROPN NNP _ 8 nmod _ _ 13 of _ ADP IN _ 17 case _ _ 14 Economic _ PROPN NNP _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Employment _ PROPN NNP _ 14 conj _ _ 17 Development _ PROPN NNP _ 12 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 four _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 21 nmod _ _ 21 painted _ VERB VBD _ 1 parataxis _ _ 22 walls _ NOUN NNS _ 21 dobj _ _ 23 , _ PUNCT , _ 21 punct _ _ 24 polished _ VERB VBN _ 21 conj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 carpeted _ VERB VBN _ 24 conj _ _ 27 floors _ NOUN NNS _ 24 dobj _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 bought _ VERB VBD _ 21 conj _ _ 30 plants _ NOUN NNS _ 29 dobj _ _ 31 , _ PUNCT , _ 21 punct _ _ 32 cleaned _ VERB VBD _ 21 conj _ _ 33 windows _ NOUN NNS _ 32 dobj _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 blinds _ NOUN NNS _ 33 conj _ _ 36 , _ PUNCT , _ 21 punct _ _ 37 and _ CONJ CC _ 21 cc _ _ 38 hung _ VERB VBD _ 21 conj _ _ 39 pictures _ NOUN NNS _ 38 dobj _ _ 40 at _ ADP IN _ 45 case _ _ 41 the _ DET DT _ 42 det _ _ 42 agency _ NOUN NN _ 45 nmod:poss _ _ 43 's _ PART POS _ 42 case _ _ 44 Baltimore _ PROPN NNP _ 45 compound _ _ 45 office _ NOUN NN _ 21 nmod _ _ 46 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 3,000 _ NUM CD _ 3 nummod _ _ 3 hours _ NOUN NNS _ 7 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 work _ NOUN NN _ 3 nmod _ _ 6 will _ AUX MD _ 7 aux _ _ 7 save _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 state _ NOUN NN _ 7 iobj _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 55,000 _ NUM CD _ 7 dobj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 CURBING _ VERB VBG _ 5 csubj _ _ 2 WAGE _ NOUN NNP _ 3 compound _ _ 3 BOOSTS _ NOUN VBZ _ 1 dobj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 get _ VERB VB _ 28 ccomp _ _ 6 high _ ADJ JJ _ 7 amod _ _ 7 priority _ NOUN NN _ 5 dobj _ _ 8 again _ ADV RB _ 5 advmod _ _ 9 in _ ADP IN _ 12 case _ _ 10 1990 _ NUM CD _ 12 nummod _ _ 11 collective _ ADJ JJ _ 12 amod _ _ 12 bargaining _ NOUN NN _ 5 nmod _ _ 13 , _ PUNCT , _ 28 punct _ _ 14 a _ DET DT _ 19 det _ _ 15 Bureau _ PROPN NNP _ 19 dep _ _ 16 of _ ADP IN _ 18 case _ _ 17 National _ PROPN NNP _ 18 compound _ _ 18 Affairs _ PROPN NNP _ 15 nmod _ _ 19 survey _ NOUN NN _ 28 nsubj _ _ 20 of _ ADP IN _ 22 case _ _ 21 250 _ NUM CD _ 22 nummod _ _ 22 companies _ NOUN NNS _ 19 nmod _ _ 23 with _ ADP IN _ 24 case _ _ 24 pacts _ NOUN NNS _ 22 nmod _ _ 25 expiring _ VERB VBG _ 24 acl _ _ 26 next _ ADJ JJ _ 27 amod _ _ 27 year _ NOUN NN _ 25 nmod:tmod _ _ 28 indicates _ VERB VBZ _ 0 root _ _ 29 . _ PUNCT . _ 28 punct _ _ 1 Despite _ ADP IN _ 3 case _ _ 2 labor-shortage _ NOUN NN _ 3 compound _ _ 3 warnings _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 80 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 7 nsubj _ _ 7 aim _ VERB NN _ 0 root _ _ 8 for _ ADP IN _ 11 case _ _ 9 first-year _ ADJ JJ _ 11 amod _ _ 10 wage _ NOUN NN _ 11 compound _ _ 11 increases _ NOUN NNS _ 7 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 under _ ADP IN _ 14 advmod _ _ 14 4 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 nmod _ _ 16 ; _ PUNCT : _ 7 punct _ _ 17 and _ CONJ CC _ 7 cc _ _ 18 77 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 20 nsubj _ _ 20 say _ VERB VBP _ 7 conj _ _ 21 they _ PRON PRP _ 23 nsubj _ _ 22 'd _ AUX MD _ 23 aux _ _ 23 try _ VERB VB _ 20 ccomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 replace _ VERB VB _ 23 xcomp _ _ 26 workers _ NOUN NNS _ 25 dobj _ _ 27 , _ PUNCT , _ 23 punct _ _ 28 if _ SCONJ IN _ 29 mark _ _ 29 struck _ VERB VBN _ 23 advcl _ _ 30 , _ PUNCT , _ 23 punct _ _ 31 or _ CONJ CC _ 23 cc _ _ 32 would _ AUX MD _ 33 aux _ _ 33 consider _ VERB VB _ 23 conj _ _ 34 it _ PRON PRP _ 33 dobj _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 TEMPORARY _ ADJ JJ _ 2 amod _ _ 2 WORKERS _ NOUN NNS _ 3 nsubj _ _ 3 have _ VERB VBP _ 13 ccomp _ _ 4 good _ ADJ JJ _ 5 amod _ _ 5 educations _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 the _ DET DT _ 9 det _ _ 8 National _ PROPN NNP _ 9 compound _ _ 9 Association _ PROPN NNP _ 13 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 Temporary _ PROPN NNP _ 12 compound _ _ 12 Services _ PROPN NNP _ 9 nmod _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 ; _ PUNCT : _ 13 punct _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 survey _ NOUN NN _ 21 nsubj _ _ 17 of _ ADP IN _ 20 case _ _ 18 2,508 _ NUM CD _ 20 nummod _ _ 19 such _ ADJ JJ _ 20 amod _ _ 20 employees _ NOUN NNS _ 16 nmod _ _ 21 shows _ VERB VBZ _ 13 parataxis _ _ 22 82 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dobj _ _ 24 with _ ADP IN _ 25 case _ _ 25 more _ ADJ JJR _ 23 nmod _ _ 26 than _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 high-school _ ADJ NN _ 29 amod _ _ 29 education _ NOUN NN _ 25 nmod _ _ 30 , _ PUNCT , _ 23 punct _ _ 31 and _ CONJ CC _ 23 cc _ _ 32 31 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 23 conj _ _ 34 with _ ADP IN _ 36 case _ _ 35 college _ NOUN NN _ 36 compound _ _ 36 degrees _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 1 About _ ADV IN _ 2 advmod _ _ 2 12 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 retired _ VERB VBN _ 0 root _ _ 6 from _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 full-time _ ADJ JJ _ 9 amod _ _ 9 job _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 while _ SCONJ IN _ 15 mark _ _ 12 54 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 15 nsubjpass _ _ 14 were _ AUX VBD _ 15 auxpass _ _ 15 asked _ VERB VBN _ 5 advcl _ _ 16 to _ PART TO _ 17 mark _ _ 17 stay _ VERB VB _ 15 xcomp _ _ 18 on _ ADP IN _ 17 compound:prt _ _ 19 full _ ADJ JJ _ 20 amod _ _ 20 time _ NOUN NN _ 17 dobj _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 HOME-SALE _ ADJ NNP _ 2 amod _ _ 2 LOSSES _ NOUN NNP _ 3 nsubj _ _ 3 rise _ VERB NN _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 but _ CONJ CC _ 3 cc _ _ 6 they _ PRON PRP _ 9 nsubjpass _ _ 7 're _ AUX VBP _ 9 auxpass _ _ 8 often _ ADV RB _ 9 advmod _ _ 9 covered _ VERB VBN _ 3 conj _ _ 10 by _ ADP IN _ 11 case _ _ 11 employers _ NOUN NNS _ 9 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 search _ VERB VBP _ 0 root _ _ 4 for _ ADP IN _ 5 case _ _ 5 ways _ NOUN NNS _ 3 nmod _ _ 6 to _ PART TO _ 7 mark _ _ 7 limit _ VERB VB _ 5 acl _ _ 8 the _ DET DT _ 9 det _ _ 9 damage _ NOUN NN _ 7 dobj _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 advmod _ _ 2 third _ ADJ JJ _ 12 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 439 _ NUM CD _ 5 nummod _ _ 5 companies _ NOUN NNS _ 2 nmod _ _ 6 surveyed _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 Employee _ PROPN NNP _ 11 compound _ _ 10 Relocation _ PROPN NNP _ 11 compound _ _ 11 Council _ PROPN NNP _ 6 nmod _ _ 12 report _ VERB VB _ 0 root _ _ 13 a _ DET DT _ 14 det _ _ 14 rise _ NOUN NN _ 12 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 1988 _ NUM CD _ 18 nummod _ _ 17 sales _ NOUN NNS _ 18 compound _ _ 18 losses _ NOUN NNS _ 14 nmod _ _ 19 over _ ADP IN _ 20 case _ _ 20 1987 _ NUM CD _ 14 nmod _ _ 21 . _ PUNCT . _ 12 punct _ _ 1 About _ ADV IN _ 2 advmod _ _ 2 72 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 4 nsubj _ _ 4 reimburse _ VERB VBP _ 0 root _ _ 5 for _ ADP IN _ 9 case _ _ 6 all _ DET DT _ 9 amod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 some _ DET DT _ 6 conj _ _ 9 losses _ NOUN NNS _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 1984 _ NUM CD _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 more _ ADJ RBR _ 5 amod _ _ 5 companies _ NOUN NNS _ 6 nsubj _ _ 6 give _ VERB VBP _ 18 ccomp _ _ 7 sales-loss _ ADJ JJ _ 8 amod _ _ 8 aid _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 as _ SCONJ IN _ 14 mark _ _ 11 many _ ADJ JJ _ 13 amod _ _ 12 real-estate _ NOUN NN _ 13 compound _ _ 13 values _ NOUN NNS _ 14 nsubj _ _ 14 depreciated _ VERB VBD _ 6 advcl _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 the _ DET DT _ 17 det _ _ 17 council _ NOUN NN _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 RJR _ PROPN NNP _ 2 compound _ _ 2 Nabisco _ PROPN NNP _ 3 nsubj _ _ 3 pays _ VERB VBZ _ 0 root _ _ 4 up _ ADP RP _ 6 dep _ _ 5 to _ ADP TO _ 4 mwe _ _ 6 $ _ SYM $ _ 3 dobj _ _ 7 30,000 _ NUM CD _ 6 nummod _ _ 8 of _ ADP IN _ 9 case _ _ 9 losses _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 including _ VERB VBG _ 12 case _ _ 12 improvements _ NOUN NNS _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Goodrich _ PROPN NNP _ 4 nsubj _ _ 2 wo _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 ensure _ VERB VB _ 0 root _ _ 5 loss _ NOUN NN _ 6 compound _ _ 6 coverage _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 but _ CONJ CC _ 4 cc _ _ 9 will _ AUX MD _ 10 aux _ _ 10 prevent _ VERB VB _ 4 conj _ _ 11 a _ DET DT _ 14 det _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 catastrophic _ ADJ JJ _ 14 amod _ _ 14 loss _ NOUN NN _ 10 dobj _ _ 15 '' _ PUNCT '' _ 14 punct _ _ 16 ; _ PUNCT : _ 4 punct _ _ 17 it _ PRON PRP _ 19 nsubj _ _ 18 has _ AUX VBZ _ 19 aux _ _ 19 given _ VERB VBN _ 4 parataxis _ _ 20 some _ DET DT _ 21 det _ _ 21 employees _ NOUN NNS _ 19 iobj _ _ 22 the _ DET DT _ 25 det _ _ 23 full _ ADJ JJ _ 25 amod _ _ 24 purchase _ NOUN NN _ 25 compound _ _ 25 price _ NOUN NN _ 19 dobj _ _ 26 when _ ADV WRB _ 28 advmod _ _ 27 values _ NOUN NNS _ 28 nsubj _ _ 28 fell _ VERB VBD _ 25 acl:relcl _ _ 29 from _ ADP IN _ 30 case _ _ 30 concern _ NOUN NN _ 28 nmod _ _ 31 over _ ADP IN _ 32 case _ _ 32 dangers _ NOUN NNS _ 30 nmod _ _ 33 posed _ VERB VBN _ 32 acl _ _ 34 by _ ADP IN _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 disposal _ NOUN NN _ 37 compound _ _ 37 site _ NOUN NN _ 33 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 Federal _ PROPN NNP _ 2 compound _ _ 2 Express _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Dow _ PROPN NNP _ 5 compound _ _ 5 Chemical _ PROPN NNP _ 2 conj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 Ford _ PROPN NNP _ 2 conj _ _ 8 and _ CONJ CC _ 2 cc _ _ 9 National _ PROPN NNP _ 11 compound _ _ 10 City _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 2 conj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 buy _ VERB VB _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 home _ NOUN NN _ 13 dobj _ _ 16 or _ CONJ CC _ 13 cc _ _ 17 let _ VERB VB _ 13 conj _ _ 18 the _ DET DT _ 19 det _ _ 19 worker _ NOUN NN _ 20 nsubj _ _ 20 sell _ VERB NN _ 17 ccomp _ _ 21 to _ ADP TO _ 24 case _ _ 22 an _ DET DT _ 24 det _ _ 23 outside _ ADJ JJ _ 24 amod _ _ 24 firm _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 13 punct _ _ 26 but _ CONJ CC _ 13 cc _ _ 27 usually _ ADV RB _ 30 advmod _ _ 28 wo _ AUX MD _ 30 aux _ _ 29 n't _ PART RB _ 30 neg _ _ 30 cover _ VERB VB _ 13 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 loss _ NOUN NN _ 30 dobj _ _ 33 . _ PUNCT . _ 13 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 1984 _ NUM CD _ 14 nmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 firms _ NOUN NNS _ 14 nsubj _ _ 5 offering _ VERB VBG _ 4 acl _ _ 6 prepurchase _ ADJ JJ _ 8 amod _ _ 7 house _ NOUN NN _ 8 compound _ _ 8 appraisals _ NOUN NNS _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 to _ PART TO _ 11 mark _ _ 11 deter _ VERB VB _ 5 advcl _ _ 12 overpaying _ VERB VBG _ 11 dobj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 rose _ VERB VBD _ 0 root _ _ 15 to _ ADP TO _ 17 case _ _ 16 40 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 14 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 those _ PRON DT _ 17 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 council _ NOUN NN _ 22 nsubj _ _ 22 polled _ VERB VBN _ 19 acl:relcl _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 from _ ADP IN _ 26 case _ _ 25 28 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 14 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 THE _ DET DT _ 2 det _ _ 2 CHECKOFF _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 The _ DET DT _ 6 det _ _ 5 National _ PROPN NNP _ 6 compound _ _ 6 Academy _ PROPN NNP _ 9 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 Engineering _ PROPN NNP _ 6 nmod _ _ 9 gives _ VERB VBZ _ 2 parataxis _ _ 10 two _ NUM CD _ 11 nummod _ _ 11 inventors _ NOUN NNS _ 9 iobj _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 semiconductor _ NOUN NN _ 15 compound _ _ 15 microchip _ NOUN NN _ 11 nmod _ _ 16 a _ DET DT _ 20 det _ _ 17 $ _ SYM $ _ 20 amod _ _ 18 350,000 _ NUM CD _ 17 compound _ _ 19 achievement _ NOUN NN _ 20 compound _ _ 20 award _ NOUN NN _ 9 dobj _ _ 21 ... _ PUNCT : _ 2 punct _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 5 discourse _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 that _ PRON DT _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 reactionary _ ADJ JJ _ 0 root _ _ 6 : _ PUNCT : _ 5 punct _ _ 7 Letter _ PROPN NN _ 12 compound _ _ 8 Carriers _ PROPN NNS _ 12 compound _ _ 9 union _ NOUN NN _ 12 compound _ _ 10 president _ NOUN NN _ 12 compound _ _ 11 Vincent _ PROPN NNP _ 12 compound _ _ 12 Sombrotto _ PROPN NNP _ 13 nsubj _ _ 13 accuses _ VERB VBZ _ 5 parataxis _ _ 14 Philadelphia _ PROPN NNP _ 17 compound _ _ 15 postmaster _ NOUN NN _ 17 compound _ _ 16 Charles _ PROPN NNP _ 17 compound _ _ 17 James _ PROPN NNP _ 13 dobj _ _ 18 of _ ADP IN _ 25 case _ _ 19 `` _ PUNCT `` _ 25 punct _ _ 20 12th _ ADJ JJ _ 23 amod _ _ 21 century _ NOUN NN _ 23 nmod:npmod _ _ 22 ... _ PUNCT : _ 23 punct _ _ 23 oppressive _ ADJ JJ _ 25 amod _ _ 24 management _ NOUN NN _ 25 compound _ _ 25 tactics _ NOUN NNS _ 13 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Yesterday _ NOUN NN _ 29 nsubj _ _ 2 was _ VERB VBD _ 29 cop _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 words _ NOUN NNS _ 29 dep _ _ 7 of _ ADP IN _ 16 case _ _ 8 New _ PROPN NNP _ 16 compound _ _ 9 York _ PROPN NNP _ 16 compound _ _ 10 Stock _ PROPN NNP _ 16 compound _ _ 11 Exchange _ PROPN NNP _ 16 compound _ _ 12 Chairman _ PROPN NNP _ 16 compound _ _ 13 John _ PROPN NNP _ 16 compound _ _ 14 J. _ PROPN NNP _ 16 compound _ _ 15 Phelan _ PROPN NNP _ 16 compound _ _ 16 Jr. _ PROPN NNP _ 6 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 just _ ADV RB _ 29 advmod _ _ 19 your _ PRON PRP$ _ 29 nmod:poss _ _ 20 `` _ PUNCT `` _ 29 punct _ _ 21 reasonably _ ADV RB _ 22 advmod _ _ 22 normal _ ADJ JJ _ 29 amod _ _ 23 , _ PUNCT , _ 29 punct _ _ 24 400 _ NUM CD _ 25 compound _ _ 25 million-share _ ADJ JJ _ 29 amod _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 up _ ADV IN _ 28 advmod _ _ 28 88-points _ ADJ NNS _ 29 amod _ _ 29 day _ NOUN NN _ 0 root _ _ 30 . _ PUNCT . _ 29 punct _ _ 31 '' _ PUNCT '' _ 29 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 was _ VERB VBD _ 18 advcl _ _ 4 all _ DET DT _ 3 dep _ _ 5 over _ ADV IN _ 3 advmod _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 stocks _ NOUN NNS _ 9 nsubj _ _ 8 had _ AUX VBD _ 9 aux _ _ 9 staged _ VERB VBN _ 3 conj _ _ 10 a _ DET DT _ 12 det _ _ 11 huge _ ADJ JJ _ 12 amod _ _ 12 recovery _ NOUN NN _ 9 dobj _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 Big _ PROPN NNP _ 16 compound _ _ 15 Board _ PROPN NNP _ 16 compound _ _ 16 officials _ NOUN NNS _ 18 nsubj _ _ 17 were _ VERB VBD _ 18 cop _ _ 18 self-congratulatory _ ADJ JJ _ 0 root _ _ 19 about _ SCONJ IN _ 25 mark _ _ 20 how _ ADV WRB _ 21 advmod _ _ 21 well _ ADV RB _ 25 advmod _ _ 22 the _ DET DT _ 23 det _ _ 23 day _ NOUN NN _ 25 nsubj _ _ 24 had _ AUX VBD _ 25 aux _ _ 25 gone _ VERB VBN _ 18 advcl _ _ 26 . _ PUNCT . _ 18 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 exchange _ NOUN NN _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 procedures _ NOUN NNS _ 20 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 personnel _ NOUN NNS _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 equipment _ NOUN NN _ 7 conj _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 links _ NOUN NNS _ 7 conj _ _ 14 with _ ADP IN _ 16 case _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 exchanges _ NOUN NNS _ 13 nmod _ _ 17 could _ AUX MD _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 have _ AUX VB _ 20 aux _ _ 20 performed _ VERB VBN _ 2 ccomp _ _ 21 better _ ADV RBR _ 20 advmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 had _ VERB VBD _ 13 ccomp _ _ 4 no _ DET DT _ 6 neg _ _ 5 operating _ NOUN NN _ 6 compound _ _ 6 problems _ NOUN NNS _ 3 dobj _ _ 7 at _ ADP IN _ 8 case _ _ 8 all _ DET DT _ 6 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 '' _ PUNCT '' _ 13 punct _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Phelan _ PROPN NNP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 after _ SCONJ IN _ 17 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 closed _ VERB VBD _ 13 advcl _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 All _ DET PDT _ 4 det:predet _ _ 3 the _ DET DT _ 4 det _ _ 4 things _ NOUN NNS _ 28 nsubj _ _ 5 that _ ADP IN _ 7 dobj _ _ 6 we _ PRON PRP _ 7 nsubj _ _ 7 set _ VERB VBD _ 4 acl:relcl _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 to _ PART TO _ 10 mark _ _ 10 slow _ VERB VB _ 7 ccomp _ _ 11 down _ ADP RP _ 10 compound:prt _ _ 12 the _ DET DT _ 13 det _ _ 13 process _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 to _ PART TO _ 16 mark _ _ 16 let _ VERB VB _ 10 dep _ _ 17 people _ NOUN NNS _ 16 dobj _ _ 18 know _ VERB VB _ 16 dep _ _ 19 that _ SCONJ IN _ 26 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 26 nsubj _ _ 22 was _ VERB VBD _ 26 cop _ _ 23 in _ ADP IN _ 26 case _ _ 24 an _ DET DT _ 26 det _ _ 25 extreme _ ADJ JJ _ 26 amod _ _ 26 position _ NOUN NN _ 18 ccomp _ _ 27 , _ PUNCT , _ 28 punct _ _ 28 worked _ VERB VBD _ 0 root _ _ 29 extremely _ ADV RB _ 30 advmod _ _ 30 well _ ADV RB _ 28 advmod _ _ 31 . _ PUNCT . _ 28 punct _ _ 32 '' _ PUNCT '' _ 28 punct _ _ 1 Prices _ NOUN NNS _ 14 nsubjpass _ _ 2 for _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 416.3 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 6 nummod _ _ 6 shares _ NOUN NNS _ 1 nmod _ _ 7 that _ PRON WDT _ 8 nsubj _ _ 8 changed _ VERB VBD _ 6 acl:relcl _ _ 9 hands _ NOUN NNS _ 8 dobj _ _ 10 during _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 session _ NOUN NN _ 8 nmod _ _ 13 were _ AUX VBD _ 14 auxpass _ _ 14 carried _ VERB VBN _ 27 ccomp _ _ 15 on _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 17 det _ _ 17 exchange _ NOUN NN _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 trading _ NOUN NN _ 20 compound _ _ 20 tape _ NOUN NN _ 14 nmod _ _ 21 with _ ADP IN _ 24 case _ _ 22 barely _ ADV RB _ 24 advmod _ _ 23 a _ DET DT _ 24 det _ _ 24 delay _ NOUN NN _ 14 nmod _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 officials _ NOUN NNS _ 27 nsubj _ _ 27 said _ VERB VBD _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 While _ SCONJ IN _ 2 mark _ _ 2 reaching _ VERB VBG _ 16 advcl _ _ 3 blockbuster _ NOUN NN _ 4 compound _ _ 4 proportions _ NOUN NNS _ 2 dobj _ _ 5 yesterday _ NOUN NN _ 2 nmod:tmod _ _ 6 , _ PUNCT , _ 16 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 volume _ NOUN NN _ 16 nsubj _ _ 9 was _ VERB VBD _ 16 cop _ _ 10 still _ ADV RB _ 16 advmod _ _ 11 well _ ADV RB _ 16 advmod _ _ 12 within _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 600 _ NUM CD _ 15 compound _ _ 15 million-share _ ADJ JJ _ 16 amod _ _ 16 capacity _ NOUN NN _ 0 root _ _ 17 that _ ADP IN _ 21 dobj _ _ 18 the _ DET DT _ 19 det _ _ 19 exchange _ NOUN NN _ 21 nsubj _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 said _ VERB VBD _ 16 acl:relcl _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 can _ AUX MD _ 24 aux _ _ 24 handle _ VERB VB _ 21 ccomp _ _ 25 daily _ ADV RB _ 24 advmod _ _ 26 since _ SCONJ IN _ 27 mark _ _ 27 beefing _ VERB VBG _ 24 advcl _ _ 28 up _ ADP RP _ 27 compound:prt _ _ 29 its _ PRON PRP$ _ 30 nmod:poss _ _ 30 computers _ NOUN NNS _ 27 dobj _ _ 31 after _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 October _ PROPN NNP _ 35 compound _ _ 34 1987 _ NUM CD _ 35 nummod _ _ 35 crash _ NOUN NN _ 27 nmod _ _ 36 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 so-called _ ADJ JJ _ 4 amod _ _ 3 circuit _ NOUN NN _ 4 compound _ _ 4 breakers _ NOUN NNS _ 26 nsubjpass _ _ 5 devised _ VERB VBN _ 4 acl _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Big _ PROPN NNP _ 9 compound _ _ 9 Board _ PROPN NNP _ 5 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 the _ DET DT _ 14 det _ _ 12 Chicago _ PROPN NNP _ 14 compound _ _ 13 Mercantile _ PROPN NNP _ 14 compound _ _ 14 Exchange _ PROPN NNP _ 9 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 quell _ VERB VB _ 5 xcomp _ _ 17 free _ ADJ JJ _ 18 amod _ _ 18 falls _ NOUN VBZ _ 16 dobj _ _ 19 in _ ADP IN _ 23 case _ _ 20 stock _ NOUN NN _ 23 compound _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 futures _ NOUN NNS _ 20 conj _ _ 23 prices _ NOUN NNS _ 18 nmod _ _ 24 were _ AUX VBD _ 26 auxpass _ _ 25 n't _ PART RB _ 26 neg _ _ 26 triggered _ VERB VBN _ 0 root _ _ 27 yesterday _ NOUN NN _ 26 nmod:tmod _ _ 28 because _ SCONJ IN _ 32 mark _ _ 29 the _ DET DT _ 30 det _ _ 30 markets _ NOUN NNS _ 32 nsubj _ _ 31 were _ VERB VBD _ 32 cop _ _ 32 higher _ ADJ JJR _ 26 advcl _ _ 33 for _ ADP IN _ 34 case _ _ 34 most _ ADV JJS _ 32 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 day _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 26 punct _ _ 1 Despite _ ADP IN _ 4 case _ _ 2 traders _ NOUN NNS _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 complaints _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Phelan _ PROPN NNP _ 8 nsubj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 links _ NOUN NNS _ 16 nsubj _ _ 11 with _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 Chicago _ PROPN NNP _ 15 compound _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 10 nmod _ _ 16 worked _ VERB VBD _ 8 ccomp _ _ 17 as _ ADV IN _ 18 advmod _ _ 18 planned _ VERB VBN _ 16 ccomp _ _ 19 in _ ADP IN _ 22 case _ _ 20 Friday _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 rout _ NOUN NN _ 16 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 provide _ VERB VB _ 16 xcomp _ _ 25 a _ DET DT _ 27 det _ _ 26 cooling-off _ ADJ JJ _ 27 amod _ _ 27 period _ NOUN NN _ 24 dobj _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 Of _ ADP IN _ 3 case _ _ 2 greater _ ADJ JJR _ 3 amod _ _ 3 help _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 Big _ PROPN NNP _ 8 compound _ _ 7 Board _ PROPN NNP _ 8 compound _ _ 8 chairman _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 11 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 was _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 16 det _ _ 13 `` _ PUNCT `` _ 16 punct _ _ 14 natural _ ADJ JJ _ 16 amod _ _ 15 circuit _ NOUN NN _ 16 compound _ _ 16 breaker _ NOUN NN _ 11 nsubj _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 weekend _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 provided _ VERB VBD _ 16 acl:relcl _ _ 24 a _ DET DT _ 26 det _ _ 25 breathing _ NOUN NN _ 26 compound _ _ 26 period _ NOUN NN _ 23 dobj _ _ 27 that _ ADP IN _ 29 nsubj _ _ 28 `` _ PUNCT `` _ 29 punct _ _ 29 brought _ VERB VBN _ 26 acl:relcl _ _ 30 rationality _ NOUN NN _ 29 dobj _ _ 31 back _ ADV RB _ 29 advmod _ _ 32 to _ ADP TO _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 market _ NOUN NN _ 29 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 Chicken _ NOUN NNP _ 2 compound _ _ 2 Chains _ NOUN NNP _ 3 nsubj _ _ 3 Ruffled _ VERB NNP _ 0 root _ _ 4 By _ ADP IN _ 5 case _ _ 5 Loss _ NOUN NN _ 3 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 Customers _ NOUN NNS _ 5 nmod _ _ 1 FAST-FOOD _ NOUN NN _ 3 compound _ _ 2 chicken _ NOUN NN _ 3 compound _ _ 3 chains _ NOUN NNS _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 faced _ VERB VBN _ 3 acl _ _ 6 with _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 worsening _ VERB VBG _ 10 amod _ _ 9 business _ NOUN NN _ 10 compound _ _ 10 slump _ NOUN NN _ 5 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 are _ AUX VBP _ 13 aux _ _ 13 struggling _ VERB VBG _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 hatch _ VERB VB _ 13 xcomp _ _ 16 some _ DET DT _ 19 det _ _ 17 new _ ADJ JJ _ 19 amod _ _ 18 marketing _ NOUN NN _ 19 compound _ _ 19 strategies _ NOUN NNS _ 15 dobj _ _ 20 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Crest _ PROPN NNP _ 3 compound _ _ 3 Report _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 tracks _ VERB VBZ _ 3 acl:relcl _ _ 7 consumer _ NOUN NN _ 8 compound _ _ 8 purchases _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 customer _ NOUN NN _ 12 compound _ _ 12 traffic _ NOUN NN _ 16 nsubj _ _ 13 at _ ADP IN _ 15 case _ _ 14 chicken _ NOUN NN _ 15 compound _ _ 15 restaurants _ NOUN NNS _ 12 nmod _ _ 16 fell _ VERB VBD _ 10 ccomp _ _ 17 10 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 second _ ADJ JJ _ 22 amod _ _ 22 quarter _ NOUN NN _ 16 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 while _ SCONJ IN _ 30 mark _ _ 25 the _ DET DT _ 29 det _ _ 26 overall _ ADJ JJ _ 29 amod _ _ 27 fast-food _ NOUN NN _ 29 compound _ _ 28 customer _ NOUN NN _ 29 compound _ _ 29 count _ NOUN NN _ 30 nsubj _ _ 30 was _ VERB VBD _ 16 advcl _ _ 31 down _ ADV RB _ 30 advmod _ _ 32 2 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 Chicken _ NOUN NN _ 2 compound _ _ 2 business _ NOUN NN _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 off _ ADJ RB _ 22 ccomp _ _ 5 largely _ ADV RB _ 9 advmod _ _ 6 because _ ADP IN _ 9 case _ _ 7 of _ ADP IN _ 6 mwe _ _ 8 more _ ADJ JJR _ 9 amod _ _ 9 competition _ NOUN NN _ 4 nmod _ _ 10 from _ ADP IN _ 13 case _ _ 11 grocery-store _ ADJ JJ _ 13 amod _ _ 12 convenience _ NOUN NN _ 13 compound _ _ 13 food _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 home-delivered _ ADJ JJ _ 16 amod _ _ 16 pizza _ NOUN NN _ 13 conj _ _ 17 and _ CONJ CC _ 13 cc _ _ 18 other _ ADJ JJ _ 20 amod _ _ 19 takeout _ NOUN NN _ 20 compound _ _ 20 fare _ NOUN NN _ 13 conj _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 says _ VERB VBZ _ 0 root _ _ 23 a _ DET DT _ 24 det _ _ 24 spokesman _ NOUN NN _ 22 nsubj _ _ 25 for _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 report _ NOUN NN _ 24 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 a _ DET DT _ 30 det _ _ 30 publication _ NOUN NN _ 27 appos _ _ 31 of _ ADP IN _ 33 case _ _ 32 NPD _ PROPN NNP _ 33 compound _ _ 33 Group _ PROPN NNP _ 30 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 a _ DET DT _ 38 det _ _ 36 market _ NOUN NN _ 38 compound _ _ 37 research _ NOUN NN _ 38 compound _ _ 38 firm _ NOUN NN _ 33 appos _ _ 39 in _ ADP IN _ 41 case _ _ 40 Port _ PROPN NNP _ 41 compound _ _ 41 Washington _ PROPN NNP _ 38 nmod _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 N.Y _ PROPN NNP _ 41 appos _ _ 44 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 loss _ NOUN NN _ 8 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 more _ ADJ JJR _ 5 amod _ _ 5 customers _ NOUN NNS _ 2 nmod _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 latest _ ADJ JJS _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 string _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 problems _ NOUN NNS _ 11 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Church _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Fried _ PROPN NNP _ 5 compound _ _ 4 Chicken _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 20 nsubjpass _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Popeye _ PROPN NNP _ 12 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 Famous _ PROPN NNP _ 12 compound _ _ 10 Fried _ PROPN NNP _ 12 compound _ _ 11 Chicken _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 5 conj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 which _ PRON WDT _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 merged _ VERB VBN _ 5 acl:relcl _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 are _ AUX VBP _ 20 auxpass _ _ 19 still _ ADV RB _ 20 advmod _ _ 20 troubled _ VERB VBN _ 0 root _ _ 21 by _ ADP IN _ 24 case _ _ 22 overlapping _ ADJ VBG _ 24 amod _ _ 23 restaurant _ NOUN NN _ 24 compound _ _ 24 locations _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 20 punct _ _ 1 Chicken _ NOUN NN _ 2 compound _ _ 2 chains _ NOUN NNS _ 5 nsubj _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 feeling _ VERB VBG _ 0 root _ _ 6 more _ ADJ JJR _ 7 amod _ _ 7 pressure _ NOUN NN _ 5 dobj _ _ 8 from _ ADP IN _ 11 case _ _ 9 McDonald _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 Corp. _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 introduced _ VERB VBD _ 11 acl:relcl _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 McChicken _ PROPN NNP _ 17 compound _ _ 17 sandwich _ NOUN NN _ 14 dobj _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 14 nmod:tmod _ _ 20 and _ CONJ CC _ 14 cc _ _ 21 recently _ ADV RB _ 22 advmod _ _ 22 tested _ VERB VBN _ 14 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 sale _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 individual _ ADJ JJ _ 27 amod _ _ 27 pieces _ NOUN NNS _ 24 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 chicken _ NOUN NN _ 27 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 New _ ADJ NNP _ 2 amod _ _ 2 management _ NOUN NN _ 15 nsubj _ _ 3 at _ ADP IN _ 6 case _ _ 4 Kentucky _ PROPN NNP _ 6 compound _ _ 5 Fried _ PROPN NNP _ 6 compound _ _ 6 Chicken _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 unit _ NOUN NN _ 6 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 PepsiCo _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 has _ AUX VBZ _ 15 aux _ _ 15 fought _ VERB VBN _ 0 root _ _ 16 back _ ADV RP _ 15 advmod _ _ 17 with _ ADP IN _ 23 case _ _ 18 new _ ADJ JJ _ 23 amod _ _ 19 medium _ NOUN NN _ 23 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 large _ ADJ JJ _ 19 conj _ _ 22 chicken _ NOUN NN _ 23 compound _ _ 23 sandwiches _ NOUN NNS _ 15 nmod _ _ 24 for _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 lunch _ NOUN NN _ 27 compound _ _ 27 crowd _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 15 punct _ _ 1 And _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 chain _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 testing _ VERB VBG _ 0 root _ _ 6 products _ NOUN NNS _ 5 dobj _ _ 7 that _ PRON WDT _ 10 nsubjpass _ _ 8 are _ AUX VBP _ 10 auxpass _ _ 9 n't _ PART RB _ 10 neg _ _ 10 fried _ VERB VBN _ 6 acl:relcl _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 such _ ADJ JJ _ 17 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 char-grilled _ ADJ JJ _ 17 amod _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 chicken _ NOUN NN _ 6 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 to _ PART TO _ 20 mark _ _ 20 try _ VERB VB _ 5 advcl _ _ 21 to _ PART TO _ 22 mark _ _ 22 win _ VERB VB _ 20 xcomp _ _ 23 health-conscious _ ADJ JJ _ 24 amod _ _ 24 consumers _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 Kentucky _ PROPN NNP _ 3 compound _ _ 2 Fried _ PROPN NNP _ 3 compound _ _ 3 Chicken _ PROPN NNP _ 6 nsubj _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 testing _ VERB VBG _ 0 root _ _ 7 home-delivery _ NOUN NN _ 6 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 chicken _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 which _ PRON WDT _ 15 nsubj _ _ 12 could _ AUX MD _ 15 aux _ _ 13 be _ VERB VB _ 15 cop _ _ 14 a _ DET DT _ 15 det _ _ 15 hit _ NOUN VBN _ 7 acl:relcl _ _ 16 with _ ADP IN _ 18 case _ _ 17 stay-at-home _ ADJ JJ _ 18 amod _ _ 18 diners _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 some _ DET DT _ 5 det _ _ 3 fast-food _ NOUN NN _ 5 compound _ _ 4 industry _ NOUN NN _ 5 compound _ _ 5 analysts _ NOUN NNS _ 6 nsubj _ _ 6 say _ VERB VBP _ 0 root _ _ 7 problems _ NOUN NNS _ 16 nsubjpass _ _ 8 with _ SCONJ IN _ 9 mark _ _ 9 keeping _ VERB VBG _ 7 acl _ _ 10 chicken _ NOUN NN _ 11 nsubj _ _ 11 warm _ ADJ JJ _ 9 xcomp _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 fresh _ ADJ JJ _ 11 conj _ _ 14 must _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 solved _ VERB VBN _ 6 ccomp _ _ 17 first _ ADV RB _ 16 advmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 5 det _ _ 2 Kentucky _ PROPN NNP _ 5 compound _ _ 3 Fried _ PROPN NNP _ 5 compound _ _ 4 Chicken _ PROPN NNP _ 5 compound _ _ 5 spokesman _ NOUN NN _ 9 nsubj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 however _ ADV RB _ 9 advmod _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 disputed _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 notion _ NOUN NN _ 9 dobj _ _ 12 that _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 delivery _ NOUN NN _ 15 compound _ _ 15 service _ NOUN NN _ 16 nsubj _ _ 16 experienced _ VERB VBD _ 11 ccomp _ _ 17 problems _ NOUN NNS _ 16 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 some _ DET DT _ 20 det _ _ 20 markets _ NOUN NNS _ 17 nmod _ _ 21 where _ ADV WRB _ 25 advmod _ _ 22 testing _ NOUN NN _ 25 nsubjpass _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 discontinued _ VERB VBN _ 20 acl:relcl _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 test _ NOUN NN _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 continuing _ VERB VBG _ 2 ccomp _ _ 7 in _ ADP IN _ 8 case _ _ 8 Chicago _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Columbus _ PROPN NNP _ 8 conj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Ohio _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 a _ DET DT _ 18 det _ _ 16 few _ ADJ JJ _ 18 amod _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 cities _ NOUN NNS _ 8 conj _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 advertising _ NOUN NN _ 3 compound _ _ 3 industry _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 buzzing _ VERB VBG _ 0 root _ _ 6 with _ ADP IN _ 7 case _ _ 7 rumors _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 Kentucky _ PROPN NNP _ 11 compound _ _ 10 Fried _ PROPN NNP _ 11 compound _ _ 11 Chicken _ PROPN NNP _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 drop _ VERB VB _ 7 ccomp _ _ 14 Young _ PROPN NNP _ 13 dobj _ _ 15 & _ CONJ CC _ 14 cc _ _ 16 Rubicam _ PROPN NNP _ 14 conj _ _ 17 and _ CONJ CC _ 13 cc _ _ 18 seek _ VERB VB _ 13 conj _ _ 19 a _ DET DT _ 22 det _ _ 20 new _ ADJ JJ _ 22 amod _ _ 21 ad _ NOUN NN _ 22 compound _ _ 22 agency _ NOUN NN _ 18 dobj _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 declines _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 comment _ VERB VB _ 4 xcomp _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 Emanuel _ PROPN NNP _ 2 compound _ _ 2 Goldman _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 7 det _ _ 5 PaineWebber _ PROPN NNP _ 7 compound _ _ 6 Inc. _ PROPN NNP _ 7 compound _ _ 7 analyst _ NOUN NN _ 2 appos _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 predicts _ VERB VBZ _ 0 root _ _ 10 Kentucky _ PROPN NNP _ 12 compound _ _ 11 Fried _ PROPN NNP _ 12 compound _ _ 12 Chicken _ PROPN NNP _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 post _ VERB VB _ 9 ccomp _ _ 15 an _ DET DT _ 18 det _ _ 16 11 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 drop _ NOUN NN _ 14 dobj _ _ 19 in _ ADP IN _ 22 case _ _ 20 1989 _ NUM CD _ 22 nummod _ _ 21 net _ ADJ JJ _ 22 amod _ _ 22 income _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 been _ VERB VBN _ 5 cop _ _ 5 laggard _ ADJ NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 says _ VERB VBZ _ 5 dep _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 `` _ PUNCT `` _ 5 punct _ _ 12 but _ CONJ CC _ 5 cc _ _ 13 they _ PRON PRP _ 15 nsubj _ _ 14 'll _ AUX MD _ 15 aux _ _ 15 have _ VERB VB _ 5 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 become _ VERB VB _ 15 xcomp _ _ 18 more _ ADV RBR _ 19 advmod _ _ 19 aggressive _ ADJ JJ _ 17 xcomp _ _ 20 . _ PUNCT . _ 5 punct _ _ 21 '' _ PUNCT '' _ 5 punct _ _ 1 Reluctant _ ADJ JJ _ 2 amod _ _ 2 Advertisers _ NOUN NNS _ 3 nsubj _ _ 3 Try _ VERB VB _ 0 root _ _ 4 Soft-Sell _ ADJ JJ _ 5 amod _ _ 5 Spots _ NOUN NNS _ 3 dobj _ _ 1 CALL _ VERB JJ _ 0 root _ _ 2 IT _ PRON NNP _ 3 nsubj _ _ 3 un-advertising _ NOUN NN _ 1 xcomp _ _ 4 . _ PUNCT . _ 1 punct _ _ 1 Pittsburgh _ PROPN NNP _ 4 compound _ _ 2 consultant _ NOUN NN _ 4 compound _ _ 3 David _ PROPN NNP _ 4 compound _ _ 4 Bear _ PROPN NNP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 selling _ VERB VBG _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 soft _ ADJ JJ _ 9 amod _ _ 9 approach _ NOUN NN _ 6 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 clients _ NOUN NNS _ 6 nmod _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 want _ VERB VBP _ 11 acl:relcl _ _ 14 exposure _ NOUN NN _ 13 dobj _ _ 15 yet _ CONJ RB _ 13 cc _ _ 16 shun _ VERB VBP _ 13 conj _ _ 17 pushy _ ADJ JJ _ 18 amod _ _ 18 ads _ NOUN NNS _ 16 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 His _ PRON PRP$ _ 2 nmod:poss _ _ 2 ploy _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 60-second _ ADJ JJ _ 6 amod _ _ 5 radio _ NOUN NN _ 6 compound _ _ 6 spots _ NOUN NNS _ 2 dep _ _ 7 that _ PRON WDT _ 8 nsubj _ _ 8 offer _ VERB VBP _ 6 acl:relcl _ _ 9 helpful _ ADJ JJ _ 10 amod _ _ 10 hints _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 only _ ADJ JJ _ 3 amod _ _ 3 plug _ NOUN NN _ 10 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 sponsor _ NOUN NN _ 3 nmod _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 brief _ ADJ JJ _ 10 amod _ _ 10 mention _ NOUN NN _ 0 root _ _ 11 at _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 end _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 spot _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 messages _ NOUN NNS _ 3 nsubj _ _ 3 resemble _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Business _ PROPN NN _ 6 compound _ _ 6 Traveler _ PROPN NN _ 3 xcomp _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 10 det _ _ 9 daily _ ADJ JJ _ 10 amod _ _ 10 dose _ NOUN NN _ 6 appos _ _ 11 of _ ADP IN _ 13 case _ _ 12 travel _ NOUN NN _ 13 compound _ _ 13 tips _ NOUN NNS _ 10 nmod _ _ 14 developed _ VERB VBN _ 13 dep _ _ 15 by _ ADP IN _ 17 case _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Bear _ PROPN NNP _ 14 nmod _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 sponsored _ VERB VBN _ 14 conj _ _ 20 by _ ADP IN _ 22 case _ _ 21 travel _ NOUN NN _ 22 compound _ _ 22 agencies _ NOUN NNS _ 19 nmod _ _ 23 in _ ADP IN _ 26 case _ _ 24 several _ ADJ JJ _ 26 amod _ _ 25 major _ ADJ JJ _ 26 amod _ _ 26 cities _ NOUN NNS _ 22 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 New _ ADJ NNP _ 2 amod _ _ 2 un-advertisers _ NOUN NNS _ 3 nsubj _ _ 3 include _ VERB VBP _ 0 root _ _ 4 Burt _ PROPN NNP _ 8 compound _ _ 5 Hill _ PROPN NNP _ 8 compound _ _ 6 Kosar _ PROPN NNP _ 8 compound _ _ 7 Rittlemann _ PROPN NNP _ 8 compound _ _ 8 Associates _ PROPN NNPS _ 3 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 a _ DET DT _ 16 det _ _ 11 Butler _ PROPN NNP _ 16 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Pa. _ PROPN NNP _ 11 dep _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 architectural _ ADJ JJ _ 16 amod _ _ 16 firm _ NOUN NN _ 8 appos _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Its _ PRON PRP$ _ 3 nmod:poss _ _ 2 radio _ NOUN NN _ 3 compound _ _ 3 series _ NOUN NN _ 4 nsubj _ _ 4 features _ VERB NNS _ 0 root _ _ 5 such _ ADJ JJ _ 6 amod _ _ 6 spots _ NOUN NNS _ 4 dobj _ _ 7 as _ ADP IN _ 9 case _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 Floodlights _ PROPN NNP _ 6 nmod _ _ 10 : _ PUNCT : _ 9 punct _ _ 11 Evening _ PROPN NNP _ 12 compound _ _ 12 Wear _ PROPN VB _ 9 dep _ _ 13 for _ ADP IN _ 15 case _ _ 14 Urban _ PROPN NNP _ 15 compound _ _ 15 Structures _ PROPN NNS _ 12 nmod _ _ 16 '' _ PUNCT '' _ 9 punct _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 `` _ PUNCT `` _ 19 punct _ _ 19 Building _ VERB NNP _ 9 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 Place _ NOUN NN _ 19 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 Park _ VERB NNP _ 21 acl _ _ 24 . _ PUNCT . _ 4 punct _ _ 25 '' _ PUNCT '' _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 harder _ ADJ JJR _ 3 amod _ _ 3 sell _ NOUN NN _ 16 nsubj _ _ 4 , _ PUNCT , _ 16 punct _ _ 5 says _ VERB VBZ _ 16 parataxis _ _ 6 John _ PROPN NNP _ 7 compound _ _ 7 Kosar _ PROPN NNP _ 5 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 firm _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 president _ NOUN NN _ 7 appos _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 would _ AUX MD _ 16 aux _ _ 15 `` _ PUNCT `` _ 16 punct _ _ 16 detract _ VERB VB _ 0 root _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 profession _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 16 punct _ _ 21 '' _ PUNCT '' _ 16 punct _ _ 1 Hospitals _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 signed _ VERB VBN _ 0 root _ _ 4 up _ ADP RP _ 3 compound:prt _ _ 5 to _ PART TO _ 6 mark _ _ 6 use _ VERB VB _ 3 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 messages _ NOUN NNS _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 promote _ VERB VB _ 6 advcl _ _ 11 fundraisers _ NOUN NNS _ 10 dobj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 Equitable _ PROPN NNP _ 16 compound _ _ 15 Gas _ PROPN NNP _ 16 compound _ _ 16 Co. _ PROPN NNP _ 18 nsubj _ _ 17 is _ AUX VBZ _ 18 aux _ _ 18 considering _ VERB VBG _ 3 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 format _ NOUN NN _ 18 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 offer _ VERB VB _ 18 advcl _ _ 23 energy _ NOUN NN _ 24 compound _ _ 24 tips _ NOUN NNS _ 22 dobj _ _ 25 to _ ADP TO _ 26 case _ _ 26 consumers _ NOUN NNS _ 22 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 such _ ADJ JJ _ 3 amod _ _ 3 spots _ NOUN NNS _ 7 nsubj _ _ 4 can _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 too _ ADV RB _ 7 advmod _ _ 7 soft _ ADJ JJ _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 12 ccomp _ _ 4 always _ ADV RB _ 3 advmod _ _ 5 a _ DET DT _ 6 det _ _ 6 risk _ NOUN NN _ 3 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 lost _ VERB VBN _ 9 amod _ _ 9 messages _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 John _ PROPN NNP _ 14 compound _ _ 14 Fitzgerald _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 chairman _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 20 case _ _ 18 Ketchum _ PROPN NNP _ 20 compound _ _ 19 Advertising _ PROPN NNP _ 20 compound _ _ 20 USA _ PROPN NNP _ 16 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 created _ VERB VBD _ 20 acl:relcl _ _ 24 similar _ ADJ JJ _ 26 amod _ _ 25 radio _ NOUN NN _ 26 compound _ _ 26 spots _ NOUN NNS _ 23 dobj _ _ 27 for _ ADP IN _ 30 case _ _ 28 Pittsburgh _ PROPN NNP _ 30 compound _ _ 29 National _ PROPN NNP _ 30 compound _ _ 30 Bank _ PROPN NNP _ 23 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 question _ NOUN NN _ 0 root _ _ 6 of _ SCONJ IN _ 11 mark _ _ 7 how _ ADV WRB _ 8 advmod _ _ 8 much _ ADJ JJ _ 9 amod _ _ 9 credibility _ NOUN NN _ 11 dobj _ _ 10 you _ PRON PRP _ 11 nsubj _ _ 11 gain _ VERB VB _ 5 acl _ _ 12 for _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 possible _ ADJ JJ _ 15 amod _ _ 15 loss _ NOUN NN _ 11 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 recognition _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 5 punct _ _ 19 '' _ PUNCT '' _ 5 punct _ _ 1 Retailer _ NOUN NN _ 2 nsubj _ _ 2 Sees _ VERB VBZ _ 0 root _ _ 3 Pitfalls _ NOUN NNS _ 2 dobj _ _ 4 In _ ADP IN _ 6 case _ _ 5 Environmental _ ADJ JJ _ 6 amod _ _ 6 Push _ NOUN NN _ 2 nmod _ _ 1 HERE _ ADV RB _ 2 dep _ _ 2 'S _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 retailer _ NOUN NN _ 2 nsubj _ _ 5 that _ PRON WDT _ 7 nsubj _ _ 6 's _ AUX VBZ _ 7 aux _ _ 7 getting _ VERB VBG _ 4 acl:relcl _ _ 8 tough _ ADJ JJ _ 7 xcomp _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 push _ NOUN NN _ 7 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 environmentally _ ADV RB _ 14 advmod _ _ 14 safe _ ADJ JJ _ 15 amod _ _ 15 packaging _ NOUN NN _ 11 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 products _ NOUN NNS _ 15 conj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Big _ PROPN JJ _ 4 compound _ _ 2 Bear _ PROPN NNP _ 4 compound _ _ 3 Supermarkets _ PROPN NNS _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 grocery _ NOUN NN _ 8 compound _ _ 8 chain _ NOUN NN _ 4 appos _ _ 9 based _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 12 case _ _ 11 San _ PROPN NNP _ 12 compound _ _ 12 Diego _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 plans _ VERB VBZ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 display _ VERB VB _ 14 xcomp _ _ 17 shelf _ NOUN NN _ 18 compound _ _ 18 cards _ NOUN NNS _ 16 dobj _ _ 19 and _ CONJ CC _ 16 cc _ _ 20 distribute _ VERB VB _ 16 conj _ _ 21 pamphlets _ NOUN NNS _ 20 dobj _ _ 22 recommending _ VERB VBG _ 16 dep _ _ 23 products _ NOUN NNS _ 22 dobj _ _ 24 deemed _ VERB VBD _ 23 acl _ _ 25 safe _ ADJ JJ _ 24 xcomp _ _ 26 for _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 environment _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 choices _ NOUN NNS _ 5 nsubjpass _ _ 3 will _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 based _ VERB VBN _ 0 root _ _ 6 on _ ADP IN _ 7 case _ _ 7 research _ NOUN NN _ 5 nmod _ _ 8 by _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 San _ PROPN NNP _ 14 compound _ _ 11 Diego _ PROPN NNP _ 14 compound _ _ 12 Environmental _ PROPN NNP _ 14 compound _ _ 13 Health _ PROPN NNP _ 14 compound _ _ 14 Coalition _ PROPN NNP _ 7 nmod _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 will _ AUX MD _ 17 aux _ _ 17 include _ VERB VB _ 5 conj _ _ 18 products _ NOUN NNS _ 17 dobj _ _ 19 like _ ADP IN _ 23 case _ _ 20 Murphy _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 Oil _ PROPN NN _ 23 compound _ _ 23 Soap _ PROPN NNP _ 18 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 other _ ADJ JJ _ 27 amod _ _ 26 noncorrosive _ ADJ JJ _ 27 amod _ _ 27 cleaners _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 chain _ NOUN NN _ 6 nsubj _ _ 4 is _ AUX VBZ _ 6 aux _ _ 5 quickly _ ADV RB _ 6 advmod _ _ 6 realizing _ VERB VBG _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 pitfalls _ NOUN NNS _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 such _ ADJ JJ _ 11 amod _ _ 11 endorsements _ NOUN NNS _ 8 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 recommends _ VERB VBZ _ 0 root _ _ 6 nonchlorinated _ ADJ JJ _ 8 amod _ _ 7 dishwasher _ NOUN NN _ 8 compound _ _ 8 detergent _ NOUN NN _ 5 dobj _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 puts _ VERB VBZ _ 5 conj _ _ 11 Sunlight _ PROPN NN _ 10 dobj _ _ 12 on _ ADP IN _ 16 case _ _ 13 its _ PRON PRP$ _ 16 nmod:poss _ _ 14 environmentally _ ADV RB _ 15 advmod _ _ 15 safe _ ADJ JJ _ 16 amod _ _ 16 list _ NOUN NN _ 10 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 That _ PRON DT _ 4 nsubj _ _ 2 does _ AUX VBZ _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 thrill _ VERB VB _ 0 root _ _ 5 Procter _ PROPN NNP _ 8 compound _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Gamble _ PROPN NNP _ 5 conj _ _ 8 Co. _ PROPN NNP _ 4 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 maker _ NOUN NN _ 8 appos _ _ 11 of _ ADP IN _ 14 case _ _ 12 Cascade _ PROPN NNP _ 14 compound _ _ 13 dishwasher _ NOUN NN _ 14 compound _ _ 14 detergent _ NOUN NN _ 10 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 company _ NOUN NN _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 questioned _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 validity _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 list _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 noting _ VERB VBG _ 4 advcl _ _ 12 that _ DET IN _ 15 mark _ _ 13 chlorine _ NOUN NN _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 present _ ADJ JJ _ 11 ccomp _ _ 16 in _ ADP IN _ 20 case _ _ 17 all _ DET DT _ 20 det _ _ 18 major _ ADJ JJ _ 20 amod _ _ 19 dishwasher _ NOUN NN _ 20 compound _ _ 20 detergents _ NOUN NNS _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Lever _ PROPN NNP _ 5 compound _ _ 5 Bros. _ PROPN NNP _ 6 nsubj _ _ 6 confirms _ VERB VBZ _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 Sunlight _ PROPN NN _ 10 compound _ _ 10 brand _ NOUN NN _ 12 nsubj _ _ 11 does _ AUX VBZ _ 12 aux _ _ 12 contain _ VERB VB _ 6 ccomp _ _ 13 chlorine _ NOUN NN _ 14 compound _ _ 14 bleach _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 even _ ADV RB _ 21 advmod _ _ 17 though _ SCONJ IN _ 21 mark _ _ 18 it _ PRON PRP _ 21 nsubjpass _ _ 19 is _ AUX VBZ _ 21 auxpass _ _ 20 n't _ PART RB _ 21 neg _ _ 21 listed _ VERB VBN _ 12 advcl _ _ 22 on _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 label _ NOUN NN _ 21 nmod _ _ 25 for _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 powder _ NOUN NN _ 28 compound _ _ 28 version _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Thomas _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Dahlen _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Big _ PROPN NNP _ 6 compound _ _ 6 Bear _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 executive _ ADJ JJ _ 10 amod _ _ 9 vice _ NOUN NN _ 10 compound _ _ 10 president _ NOUN NN _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 14 det _ _ 14 chain _ NOUN NN _ 17 nsubj _ _ 15 is _ AUX VBZ _ 17 aux _ _ 16 still _ ADV RB _ 17 advmod _ _ 17 reviewing _ VERB VBG _ 12 ccomp _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 product _ NOUN NN _ 20 compound _ _ 20 list _ NOUN NN _ 17 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 avoid _ VERB VB _ 17 advcl _ _ 23 such _ ADJ JJ _ 24 amod _ _ 24 problems _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 Our _ PRON PRP$ _ 3 nmod:poss _ _ 3 intent _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 13 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 promote _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 9 det _ _ 8 best _ ADJ JJS _ 9 amod _ _ 9 alternative _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 And _ CONJ CC _ 5 cc _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 important _ ADJ JJ _ 0 root _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 we _ PRON PRP _ 9 nsubj _ _ 8 be _ VERB VB _ 9 cop _ _ 9 accurate _ ADJ JJ _ 5 ccomp _ _ 10 . _ PUNCT . _ 5 punct _ _ 11 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 end _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 customers _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 wishes _ NOUN NNS _ 9 nsubj _ _ 9 are _ VERB VBP _ 0 root _ _ 10 what _ PRON WP _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 prevail _ VERB VB _ 9 ccomp _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 Big _ PROPN JJ _ 2 compound _ _ 2 Bear _ PROPN NNP _ 5 nsubj _ _ 3 does _ AUX VBZ _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 care _ VERB VB _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 disposable _ ADJ JJ _ 8 amod _ _ 8 diapers _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 13 nsubj _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 n't _ PART RB _ 13 neg _ _ 13 biodegradable _ ADJ JJ _ 8 acl:relcl _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Yet _ CONJ RB _ 3 cc _ _ 2 parents _ NOUN NNS _ 3 nsubj _ _ 3 demand _ VERB VBP _ 0 root _ _ 4 them _ PRON PRP _ 3 dobj _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Dahlen _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 `` _ PUNCT `` _ 1 punct _ _ 6 We _ PRON PRP _ 10 nsubjpass _ _ 7 'll _ AUX MD _ 10 aux _ _ 8 still _ ADV RB _ 10 advmod _ _ 9 be _ AUX VB _ 10 auxpass _ _ 10 forced _ VERB VBN _ 1 ccomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 sell _ VERB VB _ 10 xcomp _ _ 13 items _ NOUN NNS _ 12 dobj _ _ 14 we _ PRON PRP _ 18 nsubj _ _ 15 might _ AUX MD _ 18 aux _ _ 16 not _ PART RB _ 18 neg _ _ 17 philosophically _ ADV RB _ 18 advmod _ _ 18 agree _ VERB VB _ 13 acl:relcl _ _ 19 with _ ADP IN _ 18 nmod _ _ 20 . _ PUNCT . _ 1 punct _ _ 21 '' _ PUNCT '' _ 1 punct _ _ 1 Odds _ NOUN NNS _ 0 root _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Ends _ NOUN NNS _ 1 conj _ _ 1 NEATNESS _ NOUN NN _ 3 nsubj _ _ 2 does _ AUX VBZ _ 3 aux _ _ 3 count _ VERB VB _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 5 at _ ADP IN _ 10 advmod _ _ 6 least _ ADJ JJS _ 5 mwe _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 grocery _ NOUN NN _ 10 compound _ _ 10 store _ NOUN NN _ 3 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 study _ NOUN NN _ 9 nsubj _ _ 3 by _ ADP IN _ 8 case _ _ 4 Safeway _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 Scanner _ PROPN NNP _ 8 compound _ _ 7 Marketing _ PROPN NNP _ 8 compound _ _ 8 Research _ PROPN NNP _ 2 nmod _ _ 9 shows _ VERB VBZ _ 0 root _ _ 10 soap _ NOUN NN _ 11 compound _ _ 11 sales _ NOUN NNS _ 12 nsubj _ _ 12 climbed _ VERB VBD _ 9 ccomp _ _ 13 5 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 dobj _ _ 15 when _ ADV WRB _ 19 advmod _ _ 16 bars _ NOUN NNS _ 19 nsubj _ _ 17 were _ AUX VBD _ 19 aux _ _ 18 neatly _ ADV RB _ 19 advmod _ _ 19 stacked _ VERB VBN _ 12 advcl _ _ 20 on _ ADP IN _ 21 case _ _ 21 shelves _ NOUN NNS _ 19 nmod _ _ 22 instead _ ADV RB _ 19 cc _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 dumped _ VERB VBN _ 19 conj _ _ 25 in _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 wire _ NOUN NN _ 28 compound _ _ 28 basket _ NOUN NN _ 24 nmod _ _ 29 ... _ PUNCT : _ 9 punct _ _ 30 . _ PUNCT . _ 9 punct _ _ 1 Which _ DET WDT _ 3 det _ _ 2 celebrity _ NOUN NN _ 3 compound _ _ 3 endorsers _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 most _ ADV RBS _ 6 advmod _ _ 6 believable _ ADJ JJ _ 0 root _ _ 7 ? _ PUNCT . _ 6 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 year _ NOUN NN _ 10 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 row _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 consumers _ NOUN NNS _ 10 nsubj _ _ 10 voted _ VERB VBD _ 0 root _ _ 11 Bill _ PROPN NNP _ 12 compound _ _ 12 Cosby _ PROPN NNP _ 13 dep _ _ 13 first _ ADJ RB _ 10 xcomp _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 James _ PROPN NNP _ 16 compound _ _ 16 Garner _ PROPN NNP _ 17 dep _ _ 17 second _ ADJ JJ _ 13 conj _ _ 18 in _ ADP IN _ 19 case _ _ 19 persuasiveness _ NOUN NN _ 13 nmod _ _ 20 as _ ADP IN _ 21 case _ _ 21 spokesmen _ NOUN NNS _ 19 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 TV _ NOUN NN _ 24 compound _ _ 24 commercials _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 10 punct _ _ 26 according _ VERB VBG _ 30 case _ _ 27 to _ ADP TO _ 26 mwe _ _ 28 Video _ PROPN NNP _ 30 compound _ _ 29 Storyboard _ PROPN NNP _ 30 compound _ _ 30 Tests _ PROPN NNS _ 10 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 New _ PROPN NNP _ 33 compound _ _ 33 York _ PROPN NNP _ 30 appos _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 Michael _ PROPN NNP _ 3 compound _ _ 2 J. _ PROPN NNP _ 3 compound _ _ 3 Fox _ PROPN NNP _ 4 nsubj _ _ 4 replaced _ VERB VBD _ 0 root _ _ 5 Bruce _ PROPN NNP _ 6 compound _ _ 6 Willis _ PROPN NNP _ 4 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 third _ ADJ JJ _ 9 amod _ _ 9 place _ NOUN NN _ 4 nmod _ _ 10 ; _ PUNCT : _ 4 punct _ _ 11 Cher _ PROPN NNP _ 12 nsubj _ _ 12 placed _ VERB VBD _ 4 parataxis _ _ 13 fourth _ ADJ JJ _ 12 xcomp _ _ 14 for _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 second _ ADJ JJ _ 17 amod _ _ 17 time _ NOUN NN _ 12 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Health _ PROPN NNP _ 7 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Human _ PROPN NNP _ 1 conj _ _ 4 Services _ PROPN NNP _ 7 compound _ _ 5 Secretary _ PROPN NNP _ 7 compound _ _ 6 Louis _ PROPN NNP _ 7 compound _ _ 7 Sullivan _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 chosen _ VERB VBN _ 22 ccomp _ _ 10 Antonia _ PROPN NNP _ 11 compound _ _ 11 Novello _ PROPN NNP _ 9 dobj _ _ 12 to _ PART TO _ 17 mark _ _ 13 be _ VERB VB _ 17 cop _ _ 14 the _ DET DT _ 17 det _ _ 15 next _ ADJ JJ _ 17 amod _ _ 16 surgeon _ NOUN NN _ 17 compound _ _ 17 general _ NOUN JJ _ 9 xcomp _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 Bush _ PROPN NNP _ 21 compound _ _ 20 administration _ NOUN NN _ 21 compound _ _ 21 officials _ NOUN NNS _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 she _ PRON PRP _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 nominated _ VERB VBN _ 17 advcl _ _ 5 by _ ADP IN _ 7 case _ _ 6 President _ PROPN NNP _ 7 compound _ _ 7 Bush _ PROPN NNP _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 confirmed _ VERB VBN _ 4 conj _ _ 10 by _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 Senate _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 Dr. _ PROPN NNP _ 15 compound _ _ 15 Novello _ PROPN NNP _ 17 nsubj _ _ 16 would _ AUX MD _ 17 aux _ _ 17 succeed _ VERB VB _ 0 root _ _ 18 C. _ PROPN NNP _ 20 compound _ _ 19 Everett _ PROPN NNP _ 20 compound _ _ 20 Koop _ PROPN NNP _ 17 dobj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 who _ PRON WP _ 23 nsubj _ _ 23 rattled _ VERB VBD _ 20 acl:relcl _ _ 24 liberals _ NOUN NNS _ 23 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 conservatives _ NOUN NNS _ 24 conj _ _ 27 alike _ ADV RB _ 24 advmod _ _ 28 with _ ADP IN _ 31 case _ _ 29 his _ PRON PRP$ _ 31 nmod:poss _ _ 30 outspoken _ ADJ JJ _ 31 amod _ _ 31 views _ NOUN NNS _ 23 nmod _ _ 32 on _ ADP IN _ 34 case _ _ 33 a _ DET DT _ 34 det _ _ 34 range _ NOUN NN _ 31 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 health _ NOUN NN _ 37 compound _ _ 37 issues _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 17 punct _ _ 1 Dr. _ PROPN NNP _ 2 compound _ _ 2 Novello _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 an _ DET DT _ 5 det _ _ 5 expert _ NOUN NN _ 2 appos _ _ 6 on _ ADP IN _ 9 case _ _ 7 pediatric _ ADJ JJ _ 9 amod _ _ 8 kidney _ NOUN NN _ 9 compound _ _ 9 diseases _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 is _ VERB VBZ _ 13 cop _ _ 12 deputy _ ADJ JJ _ 13 amod _ _ 13 director _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 National _ PROPN NNP _ 17 compound _ _ 17 Institute _ PROPN NNP _ 13 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 Child _ PROPN NNP _ 20 compound _ _ 20 Health _ PROPN NNP _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Human _ PROPN NNP _ 23 compound _ _ 23 Development _ PROPN NNP _ 20 conj _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 She _ PRON PRP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 served _ VERB VBN _ 0 root _ _ 5 on _ ADP IN _ 8 case _ _ 6 several _ ADJ JJ _ 8 amod _ _ 7 task _ NOUN NN _ 8 compound _ _ 8 forces _ NOUN NNS _ 4 nmod _ _ 9 on _ ADP IN _ 13 case _ _ 10 acquired _ VERB VBN _ 13 amod _ _ 11 immune _ ADJ JJ _ 13 amod _ _ 12 deficiency _ NOUN NN _ 13 compound _ _ 13 syndrome _ NOUN NN _ 8 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Dr. _ PROPN NNP _ 2 compound _ _ 2 Novello _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 office _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 she _ PRON PRP _ 9 nsubj _ _ 7 would _ AUX MD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 talk _ VERB VB _ 5 ccomp _ _ 10 with _ ADP IN _ 11 case _ _ 11 reporters _ NOUN NNS _ 9 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 refused _ VERB VBD _ 5 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 release _ VERB VB _ 15 xcomp _ _ 18 any _ DET DT _ 19 det _ _ 19 information _ NOUN NN _ 17 dobj _ _ 20 about _ ADP IN _ 21 case _ _ 21 her _ PRON PRP _ 19 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 newsletter _ NOUN NN _ 3 compound _ _ 3 Medicine _ PROPN NNP _ 16 nsubj _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Health _ PROPN NNP _ 3 conj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 first _ ADV RB _ 9 advmod _ _ 9 disclosed _ VERB VBD _ 3 acl:relcl _ _ 10 her _ PRON PRP$ _ 11 nmod:poss _ _ 11 selection _ NOUN NN _ 9 dobj _ _ 12 by _ ADP IN _ 14 case _ _ 13 Dr. _ PROPN NNP _ 14 compound _ _ 14 Sullivan _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 she _ PRON PRP _ 21 nsubj _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 44 _ NUM CD _ 20 nummod _ _ 20 years _ NOUN NNS _ 21 nmod:npmod _ _ 21 old _ ADJ JJ _ 16 dep _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 she _ PRON PRP _ 24 nsubj _ _ 24 studied _ VERB VBD _ 21 conj _ _ 25 at _ ADP IN _ 31 case _ _ 26 the _ DET DT _ 31 det _ _ 27 University _ PROPN NNP _ 31 dep _ _ 28 of _ ADP IN _ 30 case _ _ 29 Puerto _ PROPN NNP _ 30 compound _ _ 30 Rico _ PROPN NNP _ 27 nmod _ _ 31 School _ PROPN NNP _ 24 nmod _ _ 32 of _ ADP IN _ 33 case _ _ 33 Medicine _ PROPN NNP _ 31 nmod _ _ 34 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 continuing _ VERB VBG _ 3 amod _ _ 3 series _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 HUD _ PROPN NNP _ 6 compound _ _ 6 scandals _ NOUN NNS _ 3 nmod _ _ 7 is _ VERB VBZ _ 11 cop _ _ 8 a _ DET DT _ 11 det _ _ 9 sadly _ ADV RB _ 10 advmod _ _ 10 predictable _ ADJ JJ _ 11 amod _ _ 11 result _ NOUN NN _ 0 root _ _ 12 of _ ADP IN _ 14 case _ _ 13 pork-barrel _ NOUN JJ _ 14 compound _ _ 14 politics _ NOUN NNS _ 11 nmod _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 Nevertheless _ ADV RB _ 15 advmod _ _ 2 , _ PUNCT , _ 15 punct _ _ 3 lobbies _ NOUN NNS _ 15 nsubj _ _ 4 such _ ADJ JJ _ 8 case _ _ 5 as _ ADP IN _ 4 mwe _ _ 6 the _ DET DT _ 8 det _ _ 7 National _ PROPN NNP _ 8 compound _ _ 8 Association _ PROPN NNP _ 3 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 Home _ PROPN NNP _ 11 compound _ _ 11 Builders _ PROPN NNPS _ 8 nmod _ _ 12 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 13 NAHB _ PROPN NN _ 8 appos _ _ 14 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 15 continue _ VERB VBP _ 0 root _ _ 16 to _ PART TO _ 17 mark _ _ 17 pressure _ VERB VB _ 15 xcomp _ _ 18 Capitol _ PROPN NNP _ 19 compound _ _ 19 Hill _ PROPN NNP _ 17 dobj _ _ 20 for _ ADP IN _ 23 case _ _ 21 more _ ADJ RBR _ 23 amod _ _ 22 special-interest _ ADJ JJ _ 23 amod _ _ 23 spending _ NOUN NN _ 17 nmod _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 Kent _ PROPN NNP _ 2 compound _ _ 2 Colton _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 NAHB _ PROPN NNP _ 7 compound _ _ 5 executive _ ADJ NN _ 7 amod _ _ 6 vice _ NOUN NN _ 7 compound _ _ 7 president _ NOUN NN _ 2 appos _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 argues _ VERB VBZ _ 0 root _ _ 10 that _ SCONJ IN _ 13 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 13 nsubj _ _ 13 faces _ VERB VBZ _ 9 ccomp _ _ 14 a _ DET DT _ 17 det _ _ 15 multifaceted _ ADJ JJ _ 17 amod _ _ 16 housing _ NOUN NN _ 17 compound _ _ 17 crisis _ NOUN NN _ 13 dobj _ _ 18 -- _ PUNCT : _ 20 punct _ _ 19 reduced _ VERB VBN _ 20 amod _ _ 20 affordability _ NOUN NN _ 17 dep _ _ 21 of _ ADP IN _ 22 case _ _ 22 homes _ NOUN NNS _ 20 nmod _ _ 23 for _ ADP IN _ 25 case _ _ 24 first-time _ ADJ JJ _ 25 amod _ _ 25 buyers _ NOUN NNS _ 22 nmod _ _ 26 , _ PUNCT , _ 20 punct _ _ 27 increased _ VERB VBD _ 28 amod _ _ 28 homelessness _ NOUN NN _ 20 conj _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 and _ CONJ CC _ 20 cc _ _ 31 lower _ ADJ JJR _ 34 amod _ _ 32 apartment _ NOUN NN _ 34 compound _ _ 33 construction _ NOUN NN _ 34 compound _ _ 34 rates _ NOUN NNS _ 20 conj _ _ 35 -- _ PUNCT : _ 20 punct _ _ 36 that _ DET WDT _ 41 nsubj _ _ 37 will _ AUX MD _ 41 aux _ _ 38 be _ VERB VB _ 41 cop _ _ 39 `` _ PUNCT `` _ 41 punct _ _ 40 very _ ADV RB _ 41 advmod _ _ 41 difficult _ ADJ JJ _ 17 acl:relcl _ _ 42 '' _ PUNCT '' _ 41 punct _ _ 43 to _ PART TO _ 44 mark _ _ 44 solve _ VERB VB _ 41 xcomp _ _ 45 `` _ PUNCT `` _ 44 punct _ _ 46 without _ ADP IN _ 49 case _ _ 47 expanded _ VERB VBN _ 49 amod _ _ 48 federal _ ADJ JJ _ 49 amod _ _ 49 resources _ NOUN NNS _ 44 nmod _ _ 50 . _ PUNCT . _ 9 punct _ _ 51 '' _ PUNCT '' _ 9 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 nothing _ NOUN NN _ 2 nsubj _ _ 4 unusual _ ADJ JJ _ 3 amod _ _ 5 about _ ADP IN _ 7 case _ _ 6 business _ NOUN NN _ 7 compound _ _ 7 groups _ NOUN NNS _ 4 nmod _ _ 8 pushing _ VERB VBG _ 7 acl _ _ 9 for _ ADP IN _ 12 case _ _ 10 more _ ADJ JJR _ 12 amod _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 spending _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 NAHB _ PROPN NNP _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 created _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 1943 _ NUM CD _ 5 nmod _ _ 8 out _ ADP IN _ 11 case _ _ 9 of _ ADP IN _ 11 case _ _ 10 an _ DET DT _ 11 det _ _ 11 organization _ NOUN NN _ 5 nmod _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 made _ VERB VBD _ 11 acl:relcl _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 name _ NOUN NN _ 13 dobj _ _ 16 fighting _ VERB VBG _ 13 xcomp _ _ 17 a _ DET DT _ 20 det _ _ 18 Roosevelt _ PROPN NNP _ 20 compound _ _ 19 administration _ NOUN NN _ 20 compound _ _ 20 proposal _ NOUN NN _ 16 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 take _ VERB VB _ 20 acl _ _ 23 over _ ADP RP _ 27 dep _ _ 24 all _ DET DT _ 27 det _ _ 25 defense _ NOUN NN _ 27 compound _ _ 26 housing _ NOUN NN _ 27 compound _ _ 27 production _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 Through _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 years _ NOUN NNS _ 10 nmod _ _ 4 the _ DET DT _ 5 det _ _ 5 association _ NOUN NN _ 10 nsubj _ _ 6 has _ AUX VBZ _ 10 aux _ _ 7 been _ VERB VBN _ 10 cop _ _ 8 an _ DET DT _ 10 det _ _ 9 active _ ADJ JJ _ 10 amod _ _ 10 member _ NOUN NN _ 0 root _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 13 det _ _ 13 taxpayer _ NOUN NN _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 coalition _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 pushing _ VERB VBG _ 10 advcl _ _ 18 for _ ADP IN _ 20 case _ _ 19 such _ ADJ JJ _ 20 amod _ _ 20 initiatives _ NOUN NNS _ 17 nmod _ _ 21 as _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 balanced-budget _ ADJ JJ _ 24 amod _ _ 24 amendment _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 Yet _ ADV RB _ 3 advmod _ _ 2 on _ ADP IN _ 3 case _ _ 3 matters _ NOUN NNS _ 0 root _ _ 4 close _ ADJ RB _ 3 amod _ _ 5 to _ ADP TO _ 9 case _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 er _ INTJ NN _ 9 discourse _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 home _ NOUN NN _ 4 nmod _ _ 10 ... _ PUNCT : _ 3 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 HUD _ PROPN NNP _ 4 compound _ _ 4 budget _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 dropped _ VERB VBN _ 16 ccomp _ _ 7 by _ ADP IN _ 11 case _ _ 8 more _ ADJ JJR _ 10 advmod _ _ 9 than _ ADP IN _ 10 advmod _ _ 10 70 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 6 nmod _ _ 12 since _ ADP IN _ 13 case _ _ 13 1980 _ NUM CD _ 6 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 argues _ VERB VBZ _ 0 root _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Colton _ PROPN NNP _ 16 nsubj _ _ 19 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 taken _ VERB VBN _ 0 root _ _ 5 more _ ADJ JJR _ 4 dobj _ _ 6 than _ ADP IN _ 9 case _ _ 7 our _ PRON PRP$ _ 9 nmod:poss _ _ 8 fair _ ADJ JJ _ 9 amod _ _ 9 share _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 would _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 have _ VERB VB _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 problem _ NOUN NN _ 4 dobj _ _ 7 if _ SCONJ IN _ 11 mark _ _ 8 other _ ADJ JJ _ 9 amod _ _ 9 programs _ NOUN NNS _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 taken _ VERB VBN _ 4 advcl _ _ 12 a _ DET DT _ 14 det _ _ 13 similar _ ADJ JJ _ 14 amod _ _ 14 hit _ NOUN NN _ 11 dobj _ _ 15 . _ PUNCT . _ 4 punct _ _ 16 '' _ PUNCT '' _ 4 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 NAHB _ PROPN NNP _ 3 compound _ _ 3 support _ NOUN NN _ 8 nsubjpass _ _ 4 for _ ADP IN _ 5 case _ _ 5 subsidies _ NOUN NNS _ 3 nmod _ _ 6 is _ AUX VBZ _ 8 auxpass _ _ 7 not _ PART RB _ 8 neg _ _ 8 related _ VERB VBN _ 0 root _ _ 9 to _ ADP TO _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 current _ ADJ JJ _ 13 amod _ _ 12 housing _ NOUN NN _ 13 compound _ _ 13 crunch _ NOUN NN _ 8 nmod _ _ 14 ; _ PUNCT : _ 8 punct _ _ 15 over _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 years _ NOUN NNS _ 21 nmod _ _ 18 the _ DET DT _ 19 det _ _ 19 NAHB _ PROPN NNP _ 21 nsubj _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 backed _ VERB VBN _ 8 parataxis _ _ 22 a _ DET DT _ 23 det _ _ 23 host _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 public _ ADJ JJ _ 26 amod _ _ 26 programs _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 once _ ADV RB _ 3 advmod _ _ 3 pushed _ VERB VBD _ 0 root _ _ 4 for _ ADP IN _ 9 case _ _ 5 a _ DET DT _ 9 det _ _ 6 national _ ADJ JJ _ 9 amod _ _ 7 housing _ NOUN NN _ 9 compound _ _ 8 production _ NOUN NN _ 9 compound _ _ 9 goal _ NOUN NN _ 3 nmod _ _ 10 set _ VERB VBN _ 9 acl _ _ 11 by _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 government _ NOUN NN _ 10 nmod _ _ 15 and _ CONJ CC _ 3 cc _ _ 16 has _ AUX VBZ _ 18 aux _ _ 17 regularly _ ADV RB _ 18 advmod _ _ 18 advanced _ VERB JJ _ 3 conj _ _ 19 anti-recession _ ADJ JJ _ 21 amod _ _ 20 housing _ NOUN NN _ 21 compound _ _ 21 measures _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Moreover _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 explains _ VERB VBZ _ 10 parataxis _ _ 4 one _ NUM CD _ 6 nummod _ _ 5 HUD _ PROPN NNP _ 6 compound _ _ 6 official _ NOUN NN _ 3 nsubj _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 NAHB _ PROPN NN _ 10 nsubj _ _ 10 remains _ VERB VBZ _ 0 root _ _ 11 susceptible _ ADJ JJ _ 10 xcomp _ _ 12 to _ ADP TO _ 14 case _ _ 13 internal _ ADJ JJ _ 14 amod _ _ 14 pressure _ NOUN NN _ 11 nmod _ _ 15 from _ ADP IN _ 16 case _ _ 16 members _ NOUN NNS _ 14 nmod _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 specialize _ VERB VBP _ 16 acl:relcl _ _ 19 in _ ADP IN _ 21 case _ _ 20 subsidized _ VERB JJ _ 21 amod _ _ 21 production _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 association _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 pushing _ VERB VBG _ 0 root _ _ 5 an _ DET DT _ 9 det _ _ 6 extensive _ ADJ JJ _ 9 amod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 expensive _ ADJ JJ _ 6 conj _ _ 9 wish-list _ NOUN NN _ 4 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 substantially _ ADV RB _ 14 advmod _ _ 14 boost _ VERB VB _ 9 acl:relcl _ _ 15 spending _ NOUN NN _ 14 dobj _ _ 16 above _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 current _ ADJ JJ _ 19 amod _ _ 19 level _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 more _ ADJ JJR _ 23 advmod _ _ 22 than _ ADP IN _ 23 advmod _ _ 23 $ _ SYM $ _ 19 nmod _ _ 24 15 _ NUM CD _ 25 compound _ _ 25 billion _ NUM CD _ 23 nummod _ _ 26 annually _ ADV RB _ 23 advmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 would _ AUX MD _ 3 aux _ _ 3 like _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 peg _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 ceiling _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 13 case _ _ 9 Federal _ PROPN NNP _ 13 compound _ _ 10 Housing _ PROPN NNP _ 13 compound _ _ 11 Administration _ PROPN NNP _ 13 compound _ _ 12 mortgage _ NOUN NN _ 13 compound _ _ 13 guarantees _ NOUN NNS _ 7 nmod _ _ 14 to _ ADP TO _ 16 case _ _ 15 95 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 5 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 median _ ADJ JJ _ 20 amod _ _ 20 price _ NOUN NN _ 16 nmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 particular _ ADJ JJ _ 24 amod _ _ 24 market _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 5 punct _ _ 26 instead _ ADV RB _ 28 mark _ _ 27 of _ SCONJ IN _ 26 mwe _ _ 28 limiting _ VERB VBG _ 5 advcl _ _ 29 it _ PRON PRP _ 28 dobj _ _ 30 to _ ADP TO _ 32 case _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 101,250 _ NUM CD _ 28 nmod _ _ 33 ; _ PUNCT : _ 5 punct _ _ 34 reduce _ VERB VB _ 5 conj _ _ 35 -LRB- _ PUNCT -LRB- _ 38 punct _ _ 36 or _ CONJ CC _ 38 cc _ _ 37 even _ ADV RB _ 38 advmod _ _ 38 eliminate _ VERB VB _ 34 dep _ _ 39 -RRB- _ PUNCT -RRB- _ 38 punct _ _ 40 FHA _ PROPN NNP _ 42 compound _ _ 41 down-payment _ NOUN NN _ 42 compound _ _ 42 requirements _ NOUN NNS _ 34 dobj _ _ 43 and _ CONJ CC _ 34 cc _ _ 44 increase _ VERB VB _ 34 conj _ _ 45 the _ DET DT _ 46 det _ _ 46 availability _ NOUN NN _ 44 dobj _ _ 47 of _ ADP IN _ 49 case _ _ 48 variable-rate _ ADJ JJ _ 49 amod _ _ 49 mortgages _ NOUN NNS _ 46 nmod _ _ 50 ; _ PUNCT : _ 5 punct _ _ 51 expand _ VERB VB _ 5 conj _ _ 52 the _ DET DT _ 58 det _ _ 53 Veterans _ PROPN NNP _ 58 compound _ _ 54 Affairs _ PROPN NNP _ 58 compound _ _ 55 Department _ PROPN NNP _ 58 compound _ _ 56 loan _ NOUN NN _ 58 compound _ _ 57 guarantee _ NOUN NN _ 58 compound _ _ 58 program _ NOUN NN _ 51 dobj _ _ 59 ; _ PUNCT : _ 5 punct _ _ 60 provide _ VERB VB _ 5 conj _ _ 61 `` _ PUNCT `` _ 64 punct _ _ 62 adequate _ ADJ JJ _ 64 amod _ _ 63 '' _ PUNCT '' _ 64 punct _ _ 64 funding _ NOUN NN _ 60 dobj _ _ 65 for _ ADP IN _ 69 case _ _ 66 the _ DET DT _ 69 det _ _ 67 Farmers _ PROPN NNP _ 69 compound _ _ 68 Home _ PROPN NNP _ 69 compound _ _ 69 Administration _ PROPN NNP _ 64 nmod _ _ 70 -LRB- _ PUNCT -LRB- _ 71 punct _ _ 71 FmHA _ PROPN NNP _ 69 appos _ _ 72 -RRB- _ PUNCT -RRB- _ 71 punct _ _ 73 ; _ PUNCT : _ 5 punct _ _ 74 increase _ VERB NN _ 5 conj _ _ 75 federal _ ADJ JJ _ 76 amod _ _ 76 funding _ NOUN NN _ 74 dobj _ _ 77 and _ CONJ CC _ 76 cc _ _ 78 tax _ NOUN NN _ 79 compound _ _ 79 incentives _ NOUN NNS _ 76 conj _ _ 80 for _ ADP IN _ 82 case _ _ 81 the _ DET DT _ 82 det _ _ 82 construction _ NOUN NN _ 76 nmod _ _ 83 of _ ADP IN _ 87 case _ _ 84 low-income _ ADJ JJ _ 87 amod _ _ 85 and _ CONJ CC _ 84 cc _ _ 86 rental _ NOUN JJ _ 84 conj _ _ 87 housing _ NOUN NN _ 82 nmod _ _ 88 , _ PUNCT , _ 76 punct _ _ 89 including _ VERB VBG _ 90 case _ _ 90 $ _ SYM $ _ 76 nmod _ _ 91 4 _ NUM CD _ 92 compound _ _ 92 billion _ NUM CD _ 90 nummod _ _ 93 in _ ADP IN _ 95 case _ _ 94 block _ NOUN NN _ 95 compound _ _ 95 grants _ NOUN NNS _ 90 nmod _ _ 96 to _ ADP TO _ 97 case _ _ 97 states _ NOUN NNS _ 95 nmod _ _ 98 and _ CONJ CC _ 97 cc _ _ 99 localities _ NOUN NNS _ 97 conj _ _ 100 ; _ PUNCT : _ 5 punct _ _ 101 and _ CONJ CC _ 5 cc _ _ 102 `` _ PUNCT `` _ 104 punct _ _ 103 fully _ ADV RB _ 104 advmod _ _ 104 fund _ VERB NN _ 5 conj _ _ 105 '' _ PUNCT '' _ 104 punct _ _ 106 the _ DET DT _ 108 det _ _ 107 McKinney _ PROPN NNP _ 108 compound _ _ 108 Act _ PROPN NNP _ 104 dobj _ _ 109 , _ PUNCT , _ 108 punct _ _ 110 a _ DET DT _ 114 det _ _ 111 $ _ SYM $ _ 114 amod _ _ 112 656 _ NUM CD _ 113 compound _ _ 113 million _ NUM CD _ 111 nummod _ _ 114 potpourri _ NOUN NN _ 108 appos _ _ 115 for _ ADP IN _ 117 case _ _ 116 the _ DET DT _ 117 det _ _ 117 homeless _ ADJ NN _ 114 nmod _ _ 118 . _ PUNCT . _ 3 punct _ _ 1 Direct _ ADJ JJ _ 3 amod _ _ 2 federal _ ADJ JJ _ 3 amod _ _ 3 subsidies _ NOUN NNS _ 8 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 housing _ NOUN NN _ 6 compound _ _ 6 construction _ NOUN NN _ 3 nmod _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 proved _ VERB VBN _ 0 root _ _ 9 intolerably _ ADV RB _ 10 advmod _ _ 10 expensive _ ADJ JJ _ 8 xcomp _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 past _ NOUN NN _ 8 nmod _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 and _ CONJ CC _ 8 cc _ _ 16 inevitably _ ADV RB _ 18 advmod _ _ 17 are _ AUX VBP _ 18 auxpass _ _ 18 twisted _ VERB VBN _ 8 conj _ _ 19 to _ ADP TO _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 benefit _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 well-connected _ ADJ JJ _ 24 amod _ _ 24 developers _ NOUN NNS _ 21 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 lobbyists _ NOUN NNS _ 24 conj _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 as _ SCONJ IN _ 29 mark _ _ 29 demonstrated _ VERB VBN _ 24 dep _ _ 30 by _ ADP IN _ 34 case _ _ 31 the _ DET DT _ 34 det _ _ 32 ongoing _ ADJ JJ _ 34 amod _ _ 33 HUD _ PROPN NNP _ 34 compound _ _ 34 scandal _ NOUN NN _ 29 nmod _ _ 35 , _ PUNCT , _ 24 punct _ _ 36 or _ CONJ CC _ 24 cc _ _ 37 congressmen _ NOUN NNS _ 24 conj _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 Indirect _ ADJ JJ _ 2 amod _ _ 2 subsidies _ NOUN NNS _ 13 nsubj _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 through _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 FHA _ PROPN NNP _ 13 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 instance _ NOUN NN _ 13 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 little _ ADV JJ _ 13 advmod _ _ 13 better _ ADJ JJR _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Though _ PROPN IN _ 4 dep _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Colton _ PROPN NNP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 47 advcl _ _ 5 expanding _ VERB VBG _ 9 csubj _ _ 6 FHA _ PROPN NNP _ 7 compound _ _ 7 lending _ NOUN NN _ 5 dobj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 result _ VERB VB _ 4 ccomp _ _ 10 in _ ADP IN _ 13 case _ _ 11 `` _ PUNCT `` _ 13 punct _ _ 12 no _ DET DT _ 13 neg _ _ 13 cost _ NOUN NN _ 9 nmod _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 government _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 47 punct _ _ 18 '' _ PUNCT '' _ 47 punct _ _ 19 the _ DET DT _ 21 det _ _ 20 mere _ ADJ JJ _ 21 amod _ _ 21 diversion _ NOUN NN _ 47 nsubj _ _ 22 of _ ADP IN _ 23 case _ _ 23 funds _ NOUN NNS _ 21 nmod _ _ 24 from _ ADP IN _ 26 case _ _ 25 other _ ADJ JJ _ 26 amod _ _ 26 parts _ NOUN NNS _ 21 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 economy _ NOUN NN _ 26 nmod _ _ 30 and _ CONJ CC _ 26 cc _ _ 31 from _ ADP IN _ 33 case _ _ 32 other _ ADJ JJ _ 33 amod _ _ 33 forms _ NOUN NNS _ 26 conj _ _ 34 of _ ADP IN _ 35 case _ _ 35 housing _ NOUN NN _ 33 nmod _ _ 36 -LRB- _ PUNCT -LRB- _ 39 punct _ _ 37 such _ ADJ JJ _ 39 case _ _ 38 as _ ADP IN _ 37 mwe _ _ 39 low-income _ NOUN JJ _ 33 nmod _ _ 40 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 41 to _ ADP TO _ 45 case _ _ 42 the _ DET DT _ 45 det _ _ 43 single-family _ ADJ JJ _ 45 amod _ _ 44 home _ NOUN NN _ 45 compound _ _ 45 market _ NOUN NN _ 21 nmod _ _ 46 would _ AUX MD _ 47 aux _ _ 47 result _ VERB VB _ 0 root _ _ 48 in _ ADP IN _ 51 case _ _ 49 a _ DET DT _ 51 det _ _ 50 major _ ADJ JJ _ 51 amod _ _ 51 expense _ NOUN NN _ 47 nmod _ _ 52 . _ PUNCT . _ 47 punct _ _ 1 More _ ADV RBR _ 2 advmod _ _ 2 important _ ADJ JJ _ 16 dep _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 housing _ NOUN NN _ 5 compound _ _ 5 programs _ NOUN NNS _ 16 nsubj _ _ 6 run _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 8 case _ _ 8 HUD _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 VA _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 FmHA _ PROPN NNP _ 8 conj _ _ 15 are _ VERB VBP _ 16 cop _ _ 16 awash _ ADV JJ _ 0 root _ _ 17 in _ ADP IN _ 19 case _ _ 18 red _ ADJ JJ _ 19 amod _ _ 19 ink _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 FHA _ PROPN NNP _ 4 nsubj _ _ 3 alone _ ADV RB _ 2 advmod _ _ 4 lost _ VERB VBD _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 4.2 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 in _ ADP IN _ 10 case _ _ 9 fiscal _ ADJ JJ _ 10 amod _ _ 10 1988 _ NUM CD _ 4 nmod _ _ 11 ; _ PUNCT : _ 4 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 government _ NOUN NN _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 equity _ NOUN NN _ 25 nsubj _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 agency _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 essentially _ ADV RB _ 23 advmod _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 reserve _ NOUN NN _ 23 compound _ _ 23 fund _ NOUN NN _ 15 appos _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 fell _ VERB VBD _ 4 parataxis _ _ 26 to _ ADP TO _ 28 case _ _ 27 minus _ ADP CC _ 28 amod _ _ 28 $ _ SYM $ _ 25 nmod _ _ 29 2.9 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 federal _ ADJ JJ _ 3 amod _ _ 3 government _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 had _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 pump _ VERB VB _ 5 xcomp _ _ 8 in _ ADP IN _ 7 compound:prt _ _ 9 $ _ SYM $ _ 7 dobj _ _ 10 2.28 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 into _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 VA _ PROPN NNP _ 16 compound _ _ 15 housing _ NOUN NN _ 16 compound _ _ 16 program _ NOUN NN _ 7 nmod _ _ 17 since _ ADP IN _ 18 case _ _ 18 1984 _ NUM CD _ 7 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 keep _ VERB VB _ 7 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 fund _ NOUN NN _ 23 nsubj _ _ 23 afloat _ ADV RB _ 20 xcomp _ _ 24 and _ CONJ CC _ 5 cc _ _ 25 the _ DET DT _ 26 det _ _ 26 VA _ PROPN NNP _ 27 nsubj _ _ 27 requested _ VERB VBD _ 5 conj _ _ 28 an _ DET DT _ 30 det _ _ 29 additional _ ADJ JJ _ 30 advmod _ _ 30 $ _ SYM $ _ 27 dobj _ _ 31 120 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 30 nummod _ _ 33 for _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 fiscal _ ADJ JJ _ 36 amod _ _ 36 year _ NOUN NN _ 27 nmod _ _ 37 just _ ADV RB _ 38 advmod _ _ 38 ended _ VERB VBD _ 36 acl _ _ 39 . _ PUNCT . _ 5 punct _ _ 1 All _ DET DT _ 8 advmod _ _ 2 told _ VERB VBD _ 1 dep _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 federal _ ADJ JJ _ 6 amod _ _ 6 government _ NOUN NN _ 8 nsubj _ _ 7 already _ ADV RB _ 8 advmod _ _ 8 guarantees _ VERB VBZ _ 0 root _ _ 9 more _ ADJ JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 $ _ SYM $ _ 8 dobj _ _ 12 900 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 of _ ADP IN _ 15 case _ _ 15 mortgages _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 its _ PRON PRP$ _ 5 nmod:poss _ _ 3 nicely _ ADV RB _ 4 advmod _ _ 4 produced _ VERB VBN _ 5 amod _ _ 5 publication _ NOUN NN _ 17 nmod _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 Where _ ADV WRB _ 11 advmod _ _ 8 Will _ AUX MD _ 11 aux _ _ 9 Our _ PRON PRP$ _ 10 nmod:poss _ _ 10 Children _ NOUN NNP _ 11 nsubj _ _ 11 Live _ VERB NNP _ 5 dep _ _ 12 ? _ PUNCT . _ 11 punct _ _ 13 '' _ PUNCT '' _ 5 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 NAHB _ PROPN NNP _ 17 nsubj _ _ 16 does _ AUX VBZ _ 17 aux _ _ 17 acknowledge _ VERB VB _ 0 root _ _ 18 that _ SCONJ IN _ 32 mark _ _ 19 `` _ PUNCT `` _ 32 punct _ _ 20 of _ ADP IN _ 21 case _ _ 21 course _ NOUN NN _ 32 nmod _ _ 22 , _ PUNCT , _ 32 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 full _ ADJ JJ _ 25 amod _ _ 25 measure _ NOUN NN _ 32 nsubjpass _ _ 26 of _ ADP IN _ 28 case _ _ 27 housing _ NOUN NN _ 28 compound _ _ 28 affordability _ NOUN NN _ 25 nmod _ _ 29 can _ AUX MD _ 32 aux _ _ 30 not _ PART RB _ 32 neg _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 provided _ VERB VBN _ 17 ccomp _ _ 33 by _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 federal _ ADJ JJ _ 36 amod _ _ 36 government _ NOUN NN _ 32 nmod _ _ 37 . _ PUNCT . _ 17 punct _ _ 38 '' _ PUNCT '' _ 17 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 points _ VERB VBZ _ 0 root _ _ 3 to _ ADP TO _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 pernicious _ ADJ JJ _ 6 amod _ _ 6 impact _ NOUN NN _ 2 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 local _ ADJ JJ _ 10 amod _ _ 9 government _ NOUN NN _ 10 compound _ _ 10 regulation _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 particularly _ ADV RB _ 13 advmod _ _ 13 zoning _ NOUN VBG _ 10 appos _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 building _ NOUN VBG _ 16 compound _ _ 16 fees _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 10 punct _ _ 18 which _ PRON WDT _ 19 nsubj _ _ 19 pushes _ VERB VBZ _ 10 acl:relcl _ _ 20 the _ DET DT _ 21 det _ _ 21 price _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 housing _ NOUN NN _ 21 nmod _ _ 24 out _ ADP IN _ 27 case _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 reach _ NOUN NN _ 19 nmod _ _ 28 of _ ADP IN _ 32 case _ _ 29 low- _ ADJ JJ _ 32 amod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 middle-income _ ADJ JJ _ 29 conj _ _ 32 people _ NOUN NNS _ 27 nmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 22 cc _ _ 2 while _ SCONJ IN _ 6 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 NAHB _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 suggested _ VERB VBN _ 22 advcl _ _ 7 actions _ NOUN NNS _ 6 dobj _ _ 8 that _ ADP WDT _ 13 dobj _ _ 9 states _ NOUN VBZ _ 13 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 localities _ NOUN NNS _ 9 conj _ _ 12 should _ AUX MD _ 13 aux _ _ 13 take _ VERB VB _ 7 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 reduce _ VERB VB _ 13 xcomp _ _ 16 regulatory _ ADJ JJ _ 17 amod _ _ 17 barriers _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 association _ NOUN NN _ 22 nsubj _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 proposed _ VERB VBN _ 0 root _ _ 23 no _ DET DT _ 26 neg _ _ 24 activist _ ADJ NN _ 26 amod _ _ 25 legislative _ ADJ JJ _ 26 amod _ _ 26 program _ NOUN NN _ 22 dobj _ _ 27 -- _ PUNCT : _ 28 punct _ _ 28 comparable _ ADJ JJ _ 26 dep _ _ 29 to _ ADP TO _ 35 case _ _ 30 , _ PUNCT , _ 31 punct _ _ 31 say _ VERB VBP _ 35 dep _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 its _ PRON PRP$ _ 35 nmod:poss _ _ 34 detailed _ VERB JJ _ 35 amod _ _ 35 request _ NOUN NN _ 28 nmod _ _ 36 for _ ADP IN _ 39 case _ _ 37 more _ ADJ JJR _ 39 amod _ _ 38 federal _ ADJ JJ _ 39 amod _ _ 39 subsidies _ NOUN NNS _ 35 nmod _ _ 40 -- _ PUNCT : _ 28 punct _ _ 41 to _ PART TO _ 42 mark _ _ 42 eliminate _ VERB VB _ 26 acl _ _ 43 counterproductive _ ADJ JJ _ 44 amod _ _ 44 controls _ NOUN NNS _ 42 dobj _ _ 45 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 association _ NOUN NN _ 23 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 majority _ NOUN NN _ 10 nsubj _ _ 6 of _ ADP IN _ 9 case _ _ 7 whose _ PRON WP$ _ 9 nmod:poss _ _ 8 156,000 _ NUM CD _ 9 nummod _ _ 9 members _ NOUN NNS _ 5 nmod _ _ 10 build _ VERB VBP _ 2 acl:relcl _ _ 11 fewer _ ADJ JJR _ 13 advmod _ _ 12 than _ ADP IN _ 13 advmod _ _ 13 25 _ NUM CD _ 14 nummod _ _ 14 units _ NOUN NNS _ 10 dobj _ _ 15 a _ DET DT _ 16 det _ _ 16 year _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 is _ VERB VBZ _ 23 cop _ _ 19 like _ ADP IN _ 23 case _ _ 20 many _ ADJ JJ _ 23 amod _ _ 21 other _ ADJ JJ _ 23 amod _ _ 22 business _ NOUN NN _ 23 compound _ _ 23 lobbies _ NOUN NNS _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Explains _ VERB NNS _ 0 root _ _ 2 Sheila _ PROPN NNP _ 3 compound _ _ 3 MacDonald _ PROPN NNP _ 1 nsubj _ _ 4 of _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 National _ PROPN NNP _ 8 compound _ _ 7 Taxpayers _ PROPN NNPS _ 8 compound _ _ 8 Union _ PROPN NNP _ 3 nmod _ _ 9 : _ PUNCT : _ 1 punct _ _ 10 `` _ PUNCT `` _ 1 punct _ _ 11 It _ PRON PRP _ 12 nsubj _ _ 12 treads _ VERB VBZ _ 1 ccomp _ _ 13 in _ ADP IN _ 15 case _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 worlds _ NOUN NNS _ 12 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 builders _ NOUN NNS _ 3 nsubj _ _ 3 like _ VERB IN _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 subsidies _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 but _ CONJ CC _ 3 cc _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 same _ ADJ JJ _ 11 amod _ _ 11 time _ NOUN NN _ 13 nmod _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 tend _ VERB VBP _ 3 conj _ _ 14 to _ PART TO _ 17 mark _ _ 15 be _ VERB VB _ 17 cop _ _ 16 fiscal _ ADJ JJ _ 17 amod _ _ 17 conservatives _ NOUN NNS _ 13 xcomp _ _ 18 in _ ADP IN _ 19 case _ _ 19 terms _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 major _ ADJ JJ _ 22 amod _ _ 22 issues _ NOUN NNS _ 19 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 such _ ADJ JJ _ 28 case _ _ 25 as _ ADP IN _ 24 mwe _ _ 26 the _ DET DT _ 28 det _ _ 27 balanced-budget _ ADJ JJ _ 28 amod _ _ 28 amendment _ NOUN NN _ 22 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 30 '' _ PUNCT '' _ 3 punct _ _ 1 Unfortunately _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 organization _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 desire _ NOUN NN _ 9 nsubj _ _ 7 for _ ADP IN _ 8 case _ _ 8 pork _ NOUN NN _ 6 nmod _ _ 9 tends _ VERB VBZ _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 override _ VERB VB _ 9 xcomp _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 commitment _ NOUN NN _ 11 dobj _ _ 14 to _ ADP TO _ 17 case _ _ 15 overall _ ADJ JJ _ 17 amod _ _ 16 fiscal _ ADJ JJ _ 17 amod _ _ 17 responsibility _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 21 advmod _ _ 4 when _ ADV WRB _ 7 advmod _ _ 5 the _ DET DT _ 6 det _ _ 6 NAHB _ PROPN NNP _ 7 nsubj _ _ 7 lobbied _ VERB VBD _ 21 advcl _ _ 8 for _ ADP IN _ 15 case _ _ 9 the _ DET DT _ 15 det _ _ 10 $ _ SYM $ _ 15 amod _ _ 11 19 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 omnibus _ NOUN NN _ 15 compound _ _ 14 housing _ NOUN NN _ 15 compound _ _ 15 bill _ NOUN NN _ 7 nmod _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 organization _ NOUN NN _ 21 nsubj _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 basically _ ADV RB _ 21 advmod _ _ 21 dropped _ VERB VBD _ 30 ccomp _ _ 22 out _ ADP IN _ 27 dep _ _ 23 of _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 25 det _ _ 25 taxpayers _ NOUN NNS _ 27 nmod:poss _ _ 26 ' _ PART POS _ 25 case _ _ 27 coalition _ NOUN NN _ 21 advcl _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 '' _ PUNCT '' _ 30 punct _ _ 30 says _ VERB VBZ _ 0 root _ _ 31 Ms. _ PROPN NNP _ 32 compound _ _ 32 MacDonald _ PROPN NNP _ 30 nsubj _ _ 33 . _ PUNCT . _ 30 punct _ _ 1 As _ SCONJ IN _ 7 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Colton _ PROPN NNP _ 7 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 NAHB _ PROPN NNP _ 3 nmod _ _ 7 acknowledges _ VERB VBZ _ 13 advcl _ _ 8 : _ PUNCT : _ 13 punct _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 Government _ PROPN NNP _ 13 nsubj _ _ 11 is _ AUX VBZ _ 13 aux _ _ 12 not _ PART RB _ 13 neg _ _ 13 going _ VERB VBG _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 solve _ VERB VB _ 13 xcomp _ _ 16 the _ DET DT _ 17 det _ _ 17 problem _ NOUN NN _ 15 dobj _ _ 18 ... _ PUNCT : _ 13 punct _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 real _ ADJ JJ _ 3 amod _ _ 3 key _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 have _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 economy _ NOUN NN _ 9 nsubj _ _ 9 working _ VERB NN _ 6 xcomp _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 interest _ NOUN NN _ 12 compound _ _ 12 rates _ NOUN NNS _ 13 dep _ _ 13 down _ ADV RB _ 9 conj _ _ 14 . _ PUNCT . _ 4 punct _ _ 15 '' _ PUNCT '' _ 4 punct _ _ 1 More _ ADJ JJR _ 2 amod _ _ 2 money _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 HUD _ PROPN NNP _ 2 nmod _ _ 5 will _ AUX MD _ 6 aux _ _ 6 increase _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 deficit _ NOUN NN _ 6 dobj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 destabilize _ VERB VB _ 6 conj _ _ 11 the _ DET DT _ 12 det _ _ 12 economy _ NOUN NN _ 10 dobj _ _ 13 ; _ PUNCT : _ 6 punct _ _ 14 more _ ADJ JJR _ 15 amod _ _ 15 money _ NOUN NN _ 27 nsubj _ _ 16 to _ ADP TO _ 17 case _ _ 17 municipalities _ NOUN NNS _ 15 nmod _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 are _ AUX VBP _ 20 aux _ _ 20 wrecking _ VERB VBG _ 17 acl:relcl _ _ 21 their _ PRON PRP$ _ 24 nmod:poss _ _ 22 local _ ADJ JJ _ 24 amod _ _ 23 housing _ NOUN NN _ 24 compound _ _ 24 markets _ NOUN NNS _ 20 dobj _ _ 25 will _ AUX MD _ 27 aux _ _ 26 further _ ADV RB _ 27 advmod _ _ 27 insulate _ VERB VB _ 6 parataxis _ _ 28 them _ PRON PRP _ 27 dobj _ _ 29 from _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 destructive _ ADJ JJ _ 32 amod _ _ 32 effects _ NOUN NNS _ 27 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 their _ PRON PRP$ _ 35 nmod:poss _ _ 35 policies _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Is _ VERB VBZ _ 0 root _ _ 2 this _ PRON DT _ 1 nsubj _ _ 3 what _ PRON WP _ 7 dobj _ _ 4 the _ DET DT _ 6 det _ _ 5 home _ NOUN NN _ 6 compound _ _ 6 builders _ NOUN NNS _ 7 nsubj _ _ 7 want _ VERB VB _ 1 dep _ _ 8 ? _ PUNCT . _ 1 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Bandow _ PROPN NNP _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 Cato _ PROPN NNP _ 7 compound _ _ 6 Institute _ PROPN NNP _ 7 compound _ _ 7 fellow _ NOUN NN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 2 punct _ _ 2 See _ VERB VB _ 0 root _ _ 3 related _ VERB JJ _ 4 amod _ _ 4 story _ NOUN NN _ 2 dobj _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 And _ CONJ CC _ 8 cc _ _ 8 Bills _ NOUN NNS _ 4 dep _ _ 9 to _ PART TO _ 10 mark _ _ 10 Make _ VERB VB _ 8 acl _ _ 11 Wishes _ NOUN NNP _ 12 nsubj _ _ 12 Come _ VERB VB _ 10 ccomp _ _ 13 True _ ADJ JJ _ 12 xcomp _ _ 14 '' _ PUNCT '' _ 8 punct _ _ 15 -- _ PUNCT : _ 8 punct _ _ 16 WSJ _ PROPN NNP _ 8 dep _ _ 17 Oct. _ PROPN NNP _ 16 nmod:tmod _ _ 18 17 _ NUM CD _ 17 nummod _ _ 19 , _ PUNCT , _ 17 punct _ _ 20 1989 _ NUM CD _ 17 nummod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 attempt _ NOUN NN _ 21 nmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 give _ VERB VB _ 3 acl _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 momentum _ NOUN NN _ 5 dobj _ _ 8 to _ ADP TO _ 11 case _ _ 9 European _ PROPN NNP _ 11 compound _ _ 10 Community _ PROPN NNP _ 11 compound _ _ 11 plans _ NOUN VBZ _ 5 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 single _ ADJ JJ _ 15 amod _ _ 15 currency _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 EC _ PROPN NNP _ 19 compound _ _ 18 government _ NOUN NN _ 19 compound _ _ 19 leaders _ NOUN NNS _ 21 nsubj _ _ 20 are _ VERB VBP _ 21 cop _ _ 21 likely _ ADJ JJ _ 0 root _ _ 22 to _ PART TO _ 23 mark _ _ 23 agree _ VERB VB _ 21 xcomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 set _ VERB VB _ 23 xcomp _ _ 26 a _ DET DT _ 27 det _ _ 27 date _ NOUN NN _ 25 dobj _ _ 28 for _ SCONJ IN _ 29 mark _ _ 29 starting _ VERB VBG _ 27 acl _ _ 30 formal _ ADJ JJ _ 31 amod _ _ 31 talks _ NOUN NNS _ 29 dobj _ _ 32 on _ SCONJ IN _ 33 mark _ _ 33 amending _ VERB VBG _ 31 acl _ _ 34 the _ DET DT _ 35 det _ _ 35 EC _ PROPN NNP _ 38 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 founding _ NOUN NN _ 38 compound _ _ 38 Treaty _ PROPN NNP _ 33 dobj _ _ 39 of _ ADP IN _ 40 case _ _ 40 Rome _ PROPN NNP _ 38 nmod _ _ 41 . _ PUNCT . _ 21 punct _ _ 1 According _ VERB VBG _ 4 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 diplomatic _ ADJ JJ _ 4 amod _ _ 4 sources _ NOUN NNS _ 11 nmod _ _ 5 in _ ADP IN _ 6 case _ _ 6 Brussels _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 most _ ADJ JJS _ 10 amod _ _ 9 EC _ PROPN NN _ 10 compound _ _ 10 leaders _ NOUN NNS _ 11 nsubj _ _ 11 agree _ VERB VBP _ 0 root _ _ 12 that _ SCONJ IN _ 15 mark _ _ 13 talks _ NOUN NNS _ 15 nsubj _ _ 14 should _ AUX MD _ 15 aux _ _ 15 begin _ VERB VB _ 11 ccomp _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 second _ ADJ JJ _ 19 amod _ _ 19 half _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 1990 _ NUM CD _ 19 nmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 and _ CONJ CC _ 15 cc _ _ 24 will _ AUX MD _ 25 aux _ _ 25 make _ VERB VB _ 15 conj _ _ 26 a _ DET DT _ 27 det _ _ 27 declaration _ NOUN NN _ 25 dobj _ _ 28 on _ ADP IN _ 29 case _ _ 29 that _ PRON DT _ 27 nmod _ _ 30 during _ ADP IN _ 33 case _ _ 31 a _ DET DT _ 33 det _ _ 32 summit _ NOUN NN _ 33 compound _ _ 33 meeting _ NOUN NN _ 25 nmod _ _ 34 in _ ADP IN _ 35 case _ _ 35 Strasbourg _ PROPN NNP _ 33 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 France _ PROPN NNP _ 35 appos _ _ 38 , _ PUNCT , _ 35 punct _ _ 39 on _ ADP IN _ 40 case _ _ 40 Dec. _ PROPN NNP _ 33 nmod _ _ 41 8 _ NUM CD _ 40 nummod _ _ 42 and _ CONJ CC _ 40 cc _ _ 43 9 _ NUM CD _ 40 conj _ _ 44 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 only _ ADJ RB _ 4 amod _ _ 3 strong _ ADJ JJ _ 4 amod _ _ 4 opposition _ NOUN NN _ 10 nsubj _ _ 5 to _ ADP TO _ 6 mark _ _ 6 changing _ VERB VBG _ 4 acl _ _ 7 the _ DET DT _ 9 det _ _ 8 EC _ PROPN NNP _ 9 compound _ _ 9 treaty _ NOUN NN _ 6 dobj _ _ 10 comes _ VERB VBZ _ 0 root _ _ 11 from _ ADP IN _ 16 case _ _ 12 British _ PROPN JJ _ 16 compound _ _ 13 Prime _ PROPN NNP _ 16 compound _ _ 14 Minister _ PROPN NNP _ 16 compound _ _ 15 Margaret _ PROPN NNP _ 16 compound _ _ 16 Thatcher _ PROPN NNP _ 10 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 who _ PRON WP _ 20 nsubjpass _ _ 19 is _ AUX VBZ _ 20 auxpass _ _ 20 opposed _ VERB VBN _ 16 acl:relcl _ _ 21 to _ ADP TO _ 22 mark _ _ 22 creating _ VERB VBG _ 20 advcl _ _ 23 a _ DET DT _ 26 det _ _ 24 single _ ADJ JJ _ 26 amod _ _ 25 EC _ PROPN NN _ 26 compound _ _ 26 currency _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 process _ NOUN NN _ 11 nsubj _ _ 4 of _ SCONJ IN _ 5 mark _ _ 5 convening _ VERB VBG _ 3 acl _ _ 6 the _ DET DT _ 8 det _ _ 7 intergovernmental _ ADJ JJ _ 8 amod _ _ 8 conference _ NOUN NN _ 5 dobj _ _ 9 does _ AUX VBZ _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 require _ VERB VB _ 0 root _ _ 12 unanimity _ NOUN NN _ 11 dobj _ _ 13 . _ PUNCT . _ 11 punct _ _ 1 Setting _ VERB VBG _ 8 csubjpass _ _ 2 a _ DET DT _ 3 det _ _ 3 date _ NOUN NN _ 1 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 start _ VERB VB _ 3 acl _ _ 6 treaty _ NOUN NN _ 7 compound _ _ 7 negotiations _ NOUN NNS _ 5 dobj _ _ 8 has _ VERB VBZ _ 0 root _ _ 9 no _ DET DT _ 11 neg _ _ 10 legal _ ADJ JJ _ 11 amod _ _ 11 significance _ NOUN NN _ 8 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 itself _ PRON PRP _ 8 nmod _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 but _ CONJ CC _ 8 cc _ _ 16 could _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 viewed _ VERB VBN _ 8 conj _ _ 19 as _ ADP IN _ 23 case _ _ 20 an _ DET DT _ 23 det _ _ 21 important _ ADJ JJ _ 23 amod _ _ 22 psychological _ ADJ JJ _ 23 amod _ _ 23 push _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 French _ PROPN NNP _ 4 compound _ _ 2 President _ PROPN NNP _ 4 compound _ _ 3 Francois _ PROPN NNP _ 4 compound _ _ 4 Mitterrand _ PROPN NNP _ 5 nsubj _ _ 5 fought _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 set _ VERB VB _ 5 xcomp _ _ 8 a _ DET DT _ 9 det _ _ 9 date _ NOUN NN _ 7 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 conference _ NOUN NN _ 9 nmod _ _ 13 during _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 EC _ PROPN NNP _ 16 compound _ _ 16 summit _ NOUN NN _ 5 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Madrid _ PROPN NNP _ 16 nmod _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 June _ PROPN NNP _ 16 nmod:tmod _ _ 21 , _ PUNCT , _ 5 punct _ _ 22 but _ CONJ CC _ 5 cc _ _ 23 the _ DET DT _ 24 det _ _ 24 move _ NOUN NN _ 26 nsubjpass _ _ 25 was _ AUX VBD _ 26 auxpass _ _ 26 scuttled _ VERB VBN _ 5 conj _ _ 27 because _ ADV IN _ 29 case _ _ 28 of _ ADP IN _ 27 mwe _ _ 29 opposition _ NOUN NN _ 26 nmod _ _ 30 by _ ADP IN _ 32 case _ _ 31 Mrs. _ PROPN NNP _ 32 compound _ _ 32 Thatcher _ PROPN NNP _ 29 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 West _ PROPN NNP _ 38 compound _ _ 35 German _ PROPN NNP _ 38 compound _ _ 36 Chancellor _ PROPN NNP _ 38 compound _ _ 37 Helmut _ PROPN NNP _ 38 compound _ _ 38 Kohl _ PROPN NNP _ 32 conj _ _ 39 . _ PUNCT . _ 5 punct _ _ 1 Diplomatic _ ADJ JJ _ 2 amod _ _ 2 sources _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Kohl _ PROPN NNP _ 8 nsubj _ _ 6 may _ AUX MD _ 8 aux _ _ 7 now _ ADV RB _ 8 advmod _ _ 8 agree _ VERB VB _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 set _ VERB VB _ 8 xcomp _ _ 11 a _ DET DT _ 12 det _ _ 12 date _ NOUN NN _ 10 dobj _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 conference _ NOUN NN _ 12 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 make _ VERB VB _ 8 xcomp _ _ 18 it _ PRON PRP _ 25 nsubjpass _ _ 19 clear _ ADJ JJ _ 25 dep _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 West _ PROPN NNP _ 22 compound _ _ 22 Germany _ PROPN NNP _ 25 nsubjpass _ _ 23 is _ AUX VBZ _ 25 auxpass _ _ 24 still _ ADV RB _ 25 advmod _ _ 25 committed _ VERB VBN _ 17 xcomp _ _ 26 to _ ADP TO _ 28 case _ _ 27 EC _ PROPN NNP _ 28 compound _ _ 28 unity _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 crewcut _ NOUN NN _ 8 nsubj _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 equities _ NOUN NNS _ 7 compound _ _ 7 markets _ NOUN NNS _ 3 nmod _ _ 8 reminds _ VERB VBZ _ 0 root _ _ 9 me _ PRON PRP _ 8 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 joke _ NOUN NN _ 8 nmod _ _ 13 T. _ PROPN NNP _ 15 compound _ _ 14 Boone _ PROPN NNP _ 15 compound _ _ 15 Pickens _ PROPN NNP _ 16 nsubj _ _ 16 tells _ VERB VBZ _ 12 acl:relcl _ _ 17 about _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 guy _ NOUN NN _ 12 nmod _ _ 20 who _ PRON WP _ 22 nsubjpass _ _ 21 was _ AUX VBD _ 22 auxpass _ _ 22 run _ VERB VBN _ 19 acl:relcl _ _ 23 over _ ADP RP _ 22 compound:prt _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 parade _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 When _ ADV WRB _ 2 advmod _ _ 2 asked _ VERB VBN _ 12 advcl _ _ 3 `` _ PUNCT `` _ 2 punct _ _ 4 What _ PRON WP _ 5 nsubj _ _ 5 went _ VERB VBD _ 2 ccomp _ _ 6 wrong _ ADJ JJ _ 5 advmod _ _ 7 ? _ PUNCT . _ 2 punct _ _ 8 '' _ PUNCT '' _ 2 punct _ _ 9 the _ DET DT _ 11 det _ _ 10 unfortunate _ ADJ JJ _ 11 amod _ _ 11 victim _ NOUN NN _ 12 nsubj _ _ 12 replied _ VERB VBD _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 `` _ PUNCT `` _ 12 punct _ _ 15 It _ PRON PRP _ 18 nsubj _ _ 16 was _ VERB VBD _ 18 cop _ _ 17 a _ DET DT _ 18 det _ _ 18 combination _ NOUN NN _ 12 ccomp _ _ 19 of _ ADP IN _ 20 case _ _ 20 things _ NOUN NNS _ 18 nmod _ _ 21 . _ PUNCT . _ 12 punct _ _ 22 '' _ PUNCT '' _ 12 punct _ _ 1 And _ CONJ CC _ 7 cc _ _ 2 so _ ADP IN _ 7 advmod _ _ 3 it _ PRON PRP _ 7 nsubj _ _ 4 was _ VERB VBD _ 7 cop _ _ 5 on _ ADP IN _ 7 case _ _ 6 Gray _ PROPN NNP _ 7 compound _ _ 7 Friday _ PROPN NNP _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 grand _ ADJ JJ _ 3 amod _ _ 3 marshal _ NOUN NN _ 8 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 this _ DET DT _ 6 det _ _ 6 parade _ NOUN NN _ 3 nmod _ _ 7 would _ AUX MD _ 8 aux _ _ 8 appear _ VERB VB _ 0 root _ _ 9 to _ PART TO _ 13 mark _ _ 10 have _ AUX VB _ 13 aux _ _ 11 been _ VERB VBN _ 13 cop _ _ 12 excess _ ADJ JJ _ 13 amod _ _ 13 leverage _ NOUN NN _ 8 xcomp _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 if _ SCONJ IN _ 4 mark _ _ 3 that _ PRON DT _ 4 nsubj _ _ 4 is _ VERB VBZ _ 13 advcl _ _ 5 so _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 however _ ADV RB _ 13 advmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 it _ PRON PRP _ 13 nsubj _ _ 10 's _ VERB VBZ _ 13 cop _ _ 11 probably _ ADV RB _ 13 advmod _ _ 12 the _ DET DT _ 13 det _ _ 13 case _ NOUN NN _ 0 root _ _ 14 that _ SCONJ IN _ 20 mark _ _ 15 no _ DET DT _ 16 neg _ _ 16 barriers _ NOUN NNS _ 20 nsubjpass _ _ 17 should _ AUX MD _ 20 aux _ _ 18 have _ AUX VB _ 20 aux _ _ 19 been _ AUX VBN _ 20 auxpass _ _ 20 erected _ VERB VBN _ 13 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 stop _ VERB VB _ 20 xcomp _ _ 23 the _ DET DT _ 24 det _ _ 24 procession _ NOUN NN _ 22 dobj _ _ 25 before _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 end _ NOUN NN _ 22 nmod _ _ 28 of _ ADP IN _ 32 case _ _ 29 the _ DET DT _ 32 det _ _ 30 rout _ NOUN NN _ 32 compound _ _ 31 -LRB- _ PUNCT -LRB- _ 32 punct _ _ 32 e _ NOUN LS _ 27 nmod _ _ 33 -RRB- _ PUNCT -RRB- _ 32 punct _ _ 34 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ceremonies _ NOUN NNS _ 3 nsubj _ _ 3 began _ VERB VBD _ 0 root _ _ 4 Friday _ PROPN NNP _ 5 compound _ _ 5 afternoon _ NOUN NN _ 3 nmod:tmod _ _ 6 when _ ADV WRB _ 8 advmod _ _ 7 word _ NOUN NN _ 8 nsubj _ _ 8 spread _ VERB NN _ 3 advcl _ _ 9 that _ SCONJ IN _ 14 mark _ _ 10 the _ DET DT _ 12 det _ _ 11 UAL _ PROPN NNP _ 12 compound _ _ 12 buy-out _ NOUN NN _ 14 nsubj _ _ 13 was _ AUX VBD _ 14 aux _ _ 14 collapsing _ VERB VBG _ 8 ccomp _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 union-bidder _ NOUN JJ _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 27 advcl _ _ 5 to _ PART TO _ 6 mark _ _ 6 patch _ VERB NN _ 4 xcomp _ _ 7 together _ ADP RB _ 6 compound:prt _ _ 8 a _ DET DT _ 10 det _ _ 9 substitute _ ADJ NN _ 10 amod _ _ 10 offer _ NOUN NN _ 6 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 consisting _ VERB VBG _ 10 acl _ _ 13 of _ ADP IN _ 15 case _ _ 14 less _ ADJ JJR _ 15 amod _ _ 15 cash _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 failure _ NOUN NN _ 27 nsubj _ _ 19 to _ PART TO _ 20 mark _ _ 20 get _ VERB VB _ 18 acl _ _ 21 cash _ NOUN NN _ 20 dobj _ _ 22 from _ ADP IN _ 26 case _ _ 23 Japanese _ ADJ JJ _ 26 amod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 American _ ADJ JJ _ 23 conj _ _ 26 banks _ NOUN NNS _ 20 nmod _ _ 27 confirmed _ VERB VBD _ 0 root _ _ 28 a _ DET DT _ 30 det _ _ 29 growing _ VERB VBG _ 30 amod _ _ 30 fear _ NOUN NN _ 27 dobj _ _ 31 among _ ADP IN _ 32 case _ _ 32 arbitragers _ NOUN NNS _ 30 nmod _ _ 33 that _ SCONJ IN _ 41 mark _ _ 34 the _ DET DT _ 35 det _ _ 35 pageant _ NOUN NN _ 41 nsubj _ _ 36 of _ ADP IN _ 39 case _ _ 37 high-leverage _ ADJ JJ _ 39 amod _ _ 38 takeover _ NOUN NN _ 39 compound _ _ 39 deals _ NOUN NNS _ 35 nmod _ _ 40 is _ AUX VBZ _ 41 aux _ _ 41 ending _ VERB VBG _ 30 dep _ _ 42 . _ PUNCT . _ 27 punct _ _ 1 Lots _ NOUN NNS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 other _ ADJ JJ _ 4 amod _ _ 4 entries _ NOUN NNS _ 1 nmod _ _ 5 made _ VERB VBD _ 0 root _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 the _ DET DT _ 8 det _ _ 8 parade _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 of _ ADP IN _ 11 case _ _ 11 course _ NOUN NN _ 5 nmod _ _ 12 -- _ PUNCT : _ 17 punct _ _ 13 notably _ ADV RB _ 17 advmod _ _ 14 a _ DET DT _ 17 det _ _ 15 surprisingly _ ADV RB _ 16 advmod _ _ 16 large _ ADJ JJ _ 17 amod _ _ 17 increase _ NOUN NN _ 5 dep _ _ 18 in _ ADP IN _ 20 case _ _ 19 producer _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 signalling _ VERB NN _ 17 acl _ _ 23 Federal _ PROPN NNP _ 25 compound _ _ 24 Reserve _ PROPN NNP _ 25 compound _ _ 25 tightness _ NOUN NN _ 22 dobj _ _ 26 ; _ PUNCT : _ 17 punct _ _ 27 and _ CONJ CC _ 17 cc _ _ 28 the _ DET DT _ 30 det _ _ 29 Bush _ PROPN NNP _ 30 compound _ _ 30 administration _ NOUN NN _ 36 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 -LRB- _ PUNCT -LRB- _ 33 punct _ _ 33 temporary _ ADJ JJ _ 36 dep _ _ 34 ? _ PUNCT . _ 33 punct _ _ 35 -RRB- _ PUNCT -RRB- _ 33 punct _ _ 36 defeat _ NOUN NN _ 17 conj _ _ 37 in _ SCONJ IN _ 38 mark _ _ 38 trying _ VERB VBG _ 36 acl _ _ 39 to _ PART TO _ 40 mark _ _ 40 lower _ VERB VB _ 38 xcomp _ _ 41 the _ DET DT _ 43 det _ _ 42 capital-gains _ NOUN NNS _ 43 compound _ _ 43 tax _ NOUN NN _ 40 dobj _ _ 44 . _ PUNCT . _ 5 punct _ _ 1 As _ ADP IN _ 2 case _ _ 2 usual _ ADJ JJ _ 8 advcl _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 few _ ADJ JJ _ 6 amod _ _ 5 favorable _ ADJ JJ _ 6 amod _ _ 6 reviews _ NOUN NNS _ 8 nsubjpass _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 heard _ VERB VBN _ 0 root _ _ 9 for _ ADP IN _ 13 case _ _ 10 that _ DET DT _ 13 det _ _ 11 ever-present _ ADJ JJ _ 13 amod _ _ 12 marching _ VERB VBG _ 13 amod _ _ 13 band _ NOUN NN _ 8 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 program _ NOUN NN _ 16 compound _ _ 16 traders _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 although _ SCONJ IN _ 22 mark _ _ 19 most _ ADJ JJS _ 21 amod _ _ 20 serious _ ADJ JJ _ 21 amod _ _ 21 studies _ NOUN NNS _ 22 nsubj _ _ 22 suggest _ VERB VBP _ 8 advcl _ _ 23 they _ PRON PRP _ 25 nsubj _ _ 24 only _ ADV RB _ 25 advmod _ _ 25 play _ VERB VBP _ 22 ccomp _ _ 26 the _ DET DT _ 27 det _ _ 27 music _ NOUN NN _ 25 dobj _ _ 28 that _ PRON WDT _ 30 dobj _ _ 29 others _ NOUN NNS _ 30 nsubj _ _ 30 write _ VERB VBP _ 27 acl:relcl _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 What _ PRON WDT _ 3 nsubj _ _ 2 really _ ADV RB _ 3 advmod _ _ 3 spooked _ VERB VBD _ 15 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 crowds _ NOUN NNS _ 3 dobj _ _ 6 along _ ADP IN _ 8 case _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 however _ ADV RB _ 15 advmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 the _ DET DT _ 15 det _ _ 14 sudden _ ADJ JJ _ 15 amod _ _ 15 concern _ NOUN NN _ 0 root _ _ 16 that _ SCONJ IN _ 28 mark _ _ 17 , _ PUNCT , _ 28 punct _ _ 18 whatever _ DET WDT _ 20 dep _ _ 19 the _ DET DT _ 20 det _ _ 20 reason _ NOUN NN _ 28 advcl _ _ 21 , _ PUNCT , _ 28 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 pool _ NOUN NN _ 28 nsubj _ _ 24 of _ ADP IN _ 26 case _ _ 25 debt _ NOUN NN _ 26 compound _ _ 26 capital _ NOUN NN _ 23 nmod _ _ 27 is _ AUX VBZ _ 28 aux _ _ 28 drying _ VERB VBG _ 15 ccomp _ _ 29 up _ ADP RP _ 28 compound:prt _ _ 30 . _ PUNCT . _ 15 punct _ _ 1 Gray _ PROPN NNP _ 2 compound _ _ 2 Friday _ PROPN NNP _ 3 nsubj _ _ 3 reflects _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 panic _ NOUN NN _ 3 dobj _ _ 6 mainly _ ADV RB _ 10 advmod _ _ 7 by _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 takeover _ NOUN NN _ 10 compound _ _ 10 arbitragers _ NOUN NNS _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 rather _ ADV RB _ 10 cc _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 the _ DET DT _ 16 det _ _ 15 small _ ADJ JJ _ 16 amod _ _ 16 investor _ NOUN NN _ 10 conj _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 as _ ADV IN _ 30 advmod _ _ 19 their _ PRON PRP$ _ 22 nmod:poss _ _ 20 highly _ ADV RB _ 21 advmod _ _ 21 margined _ VERB JJ _ 22 amod _ _ 22 investments _ NOUN NNS _ 30 nsubjpass _ _ 23 in _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 `` _ PUNCT `` _ 28 punct _ _ 26 deal _ NOUN NN _ 28 compound _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 stocks _ NOUN NNS _ 22 nmod _ _ 29 are _ AUX VBP _ 30 auxpass _ _ 30 jeopardized _ VERB VBN _ 3 dep _ _ 31 by _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 unexpected _ ADJ JJ _ 30 nmod _ _ 34 drying _ VERB VBG _ 33 amod _ _ 35 up _ ADP RB _ 33 dep _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 lubricant _ NOUN NN _ 33 nmod _ _ 39 for _ ADP IN _ 41 case _ _ 40 deal _ NOUN NN _ 41 compound _ _ 41 financing _ NOUN NN _ 38 nmod _ _ 42 . _ PUNCT . _ 3 punct _ _ 1 Deal _ NOUN NNP _ 2 compound _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 led _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 3 dobj _ _ 6 down _ ADV RB _ 3 advmod _ _ 7 as _ SCONJ IN _ 9 mark _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 absorbed _ VERB VBD _ 3 advcl _ _ 10 the _ DET DT _ 12 det _ _ 11 heaviest _ ADJ JJS _ 12 amod _ _ 12 losses _ NOUN NNS _ 9 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 UAL _ PROPN NNP _ 8 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 triggered _ VERB VBD _ 1 acl:relcl _ _ 5 the _ DET DT _ 6 det _ _ 6 slide _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 opened _ VERB VBD _ 0 root _ _ 9 Monday _ PROPN NNP _ 8 nmod:tmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 224 _ NUM CD _ 8 nmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 down _ ADV RB _ 8 advmod _ _ 15 about _ ADV RB _ 16 advmod _ _ 16 20 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 14 nmod:npmod _ _ 18 from _ ADP IN _ 21 case _ _ 19 Thursday _ PROPN NNP _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 close _ NOUN NN _ 14 nmod _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 AMR _ PROPN NNP _ 2 nsubj _ _ 2 opened _ VERB VBD _ 0 root _ _ 3 Monday _ PROPN NNP _ 2 nmod:tmod _ _ 4 at _ ADP IN _ 6 case _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 80 _ NUM CD _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 down _ ADV RB _ 2 advmod _ _ 9 nearly _ ADV RB _ 10 advmod _ _ 10 20 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 8 nmod:npmod _ _ 12 from _ ADP IN _ 15 case _ _ 13 Thursday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 close _ NOUN NN _ 8 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 3 punct _ _ 2 Both _ DET CC _ 3 nsubj _ _ 3 took _ VERB VBD _ 0 root _ _ 4 further _ ADJ JJ _ 5 amod _ _ 5 hits _ NOUN NNS _ 3 dobj _ _ 6 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 3 punct _ _ 1 Hilton _ PROPN NNP _ 2 nsubj _ _ 2 lost _ VERB VBD _ 0 root _ _ 3 20 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 on _ ADP IN _ 6 case _ _ 6 Friday _ PROPN NNP _ 2 nmod _ _ 7 ; _ PUNCT : _ 2 punct _ _ 8 Paramount _ PROPN NNP _ 9 nsubj _ _ 9 lost _ VERB VBD _ 2 parataxis _ _ 10 almost _ ADV RB _ 11 advmod _ _ 11 11 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 9 dobj _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 careful _ ADJ JJ _ 3 amod _ _ 3 look _ NOUN NN _ 4 nsubj _ _ 4 reveals _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 20 mark _ _ 6 where _ ADV WRB _ 11 advmod _ _ 7 deal _ NOUN NN _ 8 compound _ _ 8 financing _ NOUN NN _ 11 nsubjpass _ _ 9 has _ AUX VBZ _ 11 aux _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 secured _ VERB VBN _ 20 advcl _ _ 12 , _ PUNCT , _ 20 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 target _ NOUN NN _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 price _ NOUN NN _ 20 nsubjpass _ _ 18 was _ AUX VBD _ 20 auxpass _ _ 19 not _ PART RB _ 20 neg _ _ 20 affected _ VERB VBN _ 4 ccomp _ _ 21 on _ ADP IN _ 22 case _ _ 22 Friday _ PROPN NNP _ 20 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 multibillion-dollar _ ADJ JJ _ 3 amod _ _ 3 prospects _ NOUN NNS _ 22 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 where _ ADV WRB _ 9 advmod _ _ 6 the _ DET DT _ 7 det _ _ 7 bidder _ NOUN NN _ 9 nsubj _ _ 8 must _ AUX MD _ 9 aux _ _ 9 line _ VERB VB _ 3 acl:relcl _ _ 10 up _ ADP RP _ 9 compound:prt _ _ 11 a _ DET DT _ 12 det _ _ 12 consortium _ NOUN NN _ 9 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 banks _ NOUN NNS _ 12 nmod _ _ 15 and/or _ CONJ CC _ 9 cc _ _ 16 issue _ NOUN NN _ 9 conj _ _ 17 billions _ NOUN NNS _ 16 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 high-yield _ ADJ JJ _ 20 amod _ _ 20 debt _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 3 punct _ _ 22 were _ VERB VBD _ 0 root _ _ 23 where _ ADV WRB _ 27 advmod _ _ 24 the _ DET DT _ 25 det _ _ 25 damage _ NOUN NN _ 27 nsubjpass _ _ 26 was _ AUX VBD _ 27 auxpass _ _ 27 concentrated _ VERB VBN _ 22 advcl _ _ 28 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 9 nsubj _ _ 3 for _ ADP IN _ 6 case _ _ 4 so-called _ ADJ JJ _ 6 amod _ _ 5 junk _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 2 nmod _ _ 7 has _ AUX VBZ _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 setting _ VERB VBG _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 stage _ NOUN NN _ 9 dobj _ _ 12 for _ ADP IN _ 16 case _ _ 13 Friday _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 dramatic _ ADJ JJ _ 16 amod _ _ 16 march _ NOUN NN _ 9 nmod _ _ 17 for _ ADP IN _ 19 case _ _ 18 several _ ADJ JJ _ 19 amod _ _ 19 weeks _ NOUN NNS _ 9 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 growing _ VERB VBG _ 4 amod _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 difficulties _ NOUN NNS _ 27 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 recent _ ADJ JJ _ 8 amod _ _ 7 high-leverage _ ADJ JJ _ 8 amod _ _ 8 restructurings _ NOUN NNS _ 4 nmod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 takeovers _ NOUN NNS _ 8 conj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 such _ ADJ JJ _ 15 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 Resorts _ PROPN NNPS _ 15 compound _ _ 15 International _ PROPN NNP _ 8 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Integrated _ PROPN NNP _ 18 compound _ _ 18 Resources _ PROPN NNP _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 Campeau _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 retailing _ NOUN NN _ 24 compound _ _ 24 empire _ NOUN NN _ 15 conj _ _ 25 , _ PUNCT , _ 15 punct _ _ 26 have _ AUX VBP _ 27 aux _ _ 27 cast _ VERB VBN _ 0 root _ _ 28 a _ DET DT _ 29 det _ _ 29 pall _ NOUN NN _ 27 dobj _ _ 30 over _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 entire _ ADJ JJ _ 33 amod _ _ 33 market _ NOUN NN _ 27 nmod _ _ 34 for _ ADP IN _ 36 case _ _ 35 high-yield _ ADJ JJ _ 36 amod _ _ 36 securities _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 27 punct _ _ 1 Investors _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 reacted _ VERB VBN _ 0 root _ _ 4 by _ SCONJ IN _ 5 mark _ _ 5 ignoring _ VERB VBG _ 3 dep _ _ 6 recent _ ADJ JJ _ 7 amod _ _ 7 efforts _ NOUN NNS _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 float _ VERB VB _ 7 acl _ _ 10 junk _ NOUN NN _ 11 compound _ _ 11 bonds _ NOUN NNS _ 9 dobj _ _ 12 by _ ADP IN _ 14 case _ _ 13 Ohio _ PROPN NNP _ 14 compound _ _ 14 Mattress _ PROPN NNP _ 7 nmod _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 forcing _ VERB VBG _ 5 conj _ _ 18 Ramada _ PROPN NNP _ 17 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 postpone _ VERB VB _ 17 xcomp _ _ 21 indefinitely _ ADV RB _ 20 advmod _ _ 22 its _ PRON PRP$ _ 25 nmod:poss _ _ 23 planned _ VERB VBN _ 25 amod _ _ 24 junk-bond _ NOUN NN _ 25 compound _ _ 25 sale _ NOUN NN _ 20 dobj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 restructuring _ NOUN NN _ 25 conj _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 high-yield _ ADJ JJ _ 7 amod _ _ 6 mutual _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 9 nsubj _ _ 8 have _ AUX VBP _ 9 aux _ _ 9 declined _ VERB VBN _ 0 root _ _ 10 across _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 board _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 the _ DET DT _ 16 det _ _ 15 many _ ADJ JJ _ 16 amod _ _ 16 firms _ NOUN NNS _ 29 nsubj _ _ 17 planning _ VERB VBG _ 16 acl _ _ 18 to _ PART TO _ 19 mark _ _ 19 sell _ VERB VB _ 17 xcomp _ _ 20 $ _ SYM $ _ 19 dobj _ _ 21 11 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 in _ ADP IN _ 25 case _ _ 24 junk _ NOUN NN _ 25 compound _ _ 25 bonds _ NOUN NNS _ 20 nmod _ _ 26 before _ ADP IN _ 27 case _ _ 27 year-end _ NOUN NN _ 19 nmod _ _ 28 are _ AUX VBP _ 29 aux _ _ 29 experiencing _ VERB VBG _ 9 conj _ _ 30 anxious _ ADJ JJ _ 31 amod _ _ 31 times _ NOUN NNS _ 29 dobj _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 These _ PRON DT _ 5 nsubj _ _ 2 are _ VERB VBP _ 5 cop _ _ 3 all _ DET DT _ 5 dep _ _ 4 market _ NOUN NN _ 5 compound _ _ 5 excesses _ NOUN NNS _ 0 root _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 putting _ VERB VBG _ 5 dep _ _ 8 aside _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 11 det _ _ 10 artificial _ ADJ JJ _ 11 amod _ _ 11 boosts _ NOUN NNS _ 7 dobj _ _ 12 that _ ADP IN _ 16 dobj _ _ 13 the _ DET DT _ 15 det _ _ 14 tax _ NOUN NN _ 15 compound _ _ 15 code _ NOUN NN _ 16 nsubj _ _ 16 gives _ VERB VBZ _ 11 acl:relcl _ _ 17 to _ ADP TO _ 18 case _ _ 18 debt _ NOUN NN _ 16 nmod _ _ 19 over _ ADP IN _ 20 case _ _ 20 equity _ NOUN NN _ 16 nmod _ _ 21 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 22 , _ PUNCT , _ 5 punct _ _ 23 and _ CONJ CC _ 5 cc _ _ 24 what _ PRON WP _ 27 dobj _ _ 25 we _ PRON PRP _ 27 nsubj _ _ 26 've _ AUX VBP _ 27 aux _ _ 27 seen _ VERB VBN _ 28 csubj _ _ 28 is _ VERB VBZ _ 5 conj _ _ 29 the _ DET DT _ 30 det _ _ 30 market _ NOUN NN _ 31 nsubj _ _ 31 reining _ VERB VBG _ 28 dep _ _ 32 them _ PRON PRP _ 31 dobj _ _ 33 in _ ADP IN _ 31 compound:prt _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Washington _ PROPN NNP _ 8 nsubj _ _ 5 had _ AUX VBD _ 8 aux _ _ 6 n't _ PART RB _ 8 neg _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 silent _ ADJ JJ _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 days _ NOUN NNS _ 8 nmod _ _ 12 leading _ VERB VBG _ 11 acl _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 debacle _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 and _ CONJ CC _ 8 cc _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 tendency _ NOUN NN _ 27 nsubj _ _ 21 to _ PART TO _ 22 mark _ _ 22 meddle _ VERB VB _ 20 acl _ _ 23 in _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 leverage _ NOUN NN _ 26 compound _ _ 26 equation _ NOUN NN _ 22 nmod _ _ 27 remains _ VERB VBZ _ 8 conj _ _ 28 a _ DET DT _ 30 det _ _ 29 troublesome _ ADJ JJ _ 30 amod _ _ 30 prospect _ NOUN NN _ 27 xcomp _ _ 31 , _ PUNCT , _ 8 punct _ _ 32 but _ CONJ CC _ 8 cc _ _ 33 those _ DET DT _ 35 det _ _ 34 preliminary _ ADJ JJ _ 35 amod _ _ 35 steps _ NOUN NNS _ 38 nsubj _ _ 36 should _ AUX MD _ 38 aux _ _ 37 n't _ PART RB _ 38 neg _ _ 38 distract _ VERB VB _ 8 conj _ _ 39 us _ PRON PRP _ 38 dobj _ _ 40 from _ ADP IN _ 44 case _ _ 41 the _ DET DT _ 44 det _ _ 42 basic _ ADJ JJ _ 44 amod _ _ 43 market _ NOUN NN _ 44 compound _ _ 44 fundamentalism _ NOUN NN _ 38 nmod _ _ 45 that _ PRON WDT _ 48 nsubj _ _ 46 was _ VERB VBD _ 48 cop _ _ 47 at _ ADP IN _ 48 case _ _ 48 work _ NOUN NN _ 44 acl:relcl _ _ 49 on _ ADP IN _ 50 case _ _ 50 Friday _ PROPN NNP _ 48 nmod _ _ 51 . _ PUNCT . _ 8 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 correct _ ADJ JJ _ 18 dep _ _ 5 to _ PART TO _ 6 mark _ _ 6 find _ VERB VB _ 4 xcomp _ _ 7 that _ SCONJ IN _ 14 mark _ _ 8 concerns _ NOUN NNS _ 14 nsubj _ _ 9 over _ ADP IN _ 11 case _ _ 10 corporate _ ADJ JJ _ 11 amod _ _ 11 debt _ NOUN NN _ 8 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 LBOs _ NOUN NNS _ 11 conj _ _ 14 caused _ VERB VBD _ 6 ccomp _ _ 15 Gray _ PROPN NNP _ 16 compound _ _ 16 Friday _ PROPN NNP _ 14 nmod:tmod _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 what _ PRON WP _ 0 root _ _ 19 are _ VERB VBP _ 18 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 implications _ NOUN NNS _ 18 nsubj _ _ 22 for _ ADP IN _ 24 case _ _ 23 policy _ NOUN NN _ 24 compound _ _ 24 makers _ NOUN NNS _ 21 nmod _ _ 25 ? _ PUNCT . _ 18 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 all _ DET DT _ 18 advmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 stock _ NOUN NN _ 6 compound _ _ 6 market _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 response _ NOUN NN _ 18 nsubjpass _ _ 9 to _ ADP TO _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 collapse _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 UAL _ PROPN NNP _ 15 compound _ _ 15 deal _ NOUN NN _ 11 nmod _ _ 16 might _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 taken _ VERB VBN _ 0 root _ _ 19 to _ PART TO _ 20 mark _ _ 20 confirm _ VERB VB _ 18 xcomp _ _ 21 the _ DET DT _ 23 det _ _ 22 anti-debt _ ADJ JJ _ 23 amod _ _ 23 direction _ NOUN NN _ 20 dobj _ _ 24 of _ ADP IN _ 25 case _ _ 25 regulators _ NOUN NNS _ 23 nmod _ _ 26 . _ PUNCT . _ 18 punct _ _ 1 Is _ VERB VBZ _ 4 cop _ _ 2 this _ PRON DT _ 4 nsubj _ _ 3 a _ DET DT _ 4 det _ _ 4 case _ NOUN NN _ 0 root _ _ 5 where _ ADV WRB _ 9 advmod _ _ 6 private _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 approving _ VERB VBG _ 4 acl:relcl _ _ 10 of _ ADP IN _ 13 case _ _ 11 Washington _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 bashing _ NOUN VBG _ 9 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 Wall _ PROPN NNP _ 16 compound _ _ 16 Street _ PROPN NNP _ 13 nmod _ _ 17 ? _ PUNCT . _ 4 punct _ _ 1 Absolutely _ ADV RB _ 2 advmod _ _ 2 not _ PART RB _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 extent _ NOUN NN _ 20 nmod _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 Friday _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 sell-off _ NOUN NN _ 8 nsubj _ _ 8 reflected _ VERB VBD _ 3 dep _ _ 9 a _ DET DT _ 11 det _ _ 10 sudden _ ADJ JJ _ 11 amod _ _ 11 reappraisal _ NOUN NN _ 8 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 excesses _ NOUN NNS _ 11 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 leverage _ NOUN NN _ 14 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 message _ NOUN NN _ 20 nsubj _ _ 20 is _ VERB VBZ _ 0 root _ _ 21 that _ DET IN _ 30 mark _ _ 22 Wall _ PROPN NNP _ 23 compound _ _ 23 Street _ PROPN NNP _ 30 nsubj _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 the _ DET DT _ 27 det _ _ 26 private _ ADJ JJ _ 27 amod _ _ 27 markets _ NOUN NNS _ 23 conj _ _ 28 are _ VERB VBP _ 30 cop _ _ 29 fully _ ADV RB _ 30 advmod _ _ 30 capable _ ADJ JJ _ 20 ccomp _ _ 31 of _ SCONJ IN _ 32 mark _ _ 32 imposing _ VERB VBG _ 30 advcl _ _ 33 the _ DET DT _ 35 det _ _ 34 appropriate _ ADJ JJ _ 35 amod _ _ 35 incentives _ NOUN NNS _ 32 dobj _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 sanctions _ NOUN NNS _ 35 conj _ _ 38 on _ ADP IN _ 40 case _ _ 39 corporate _ ADJ JJ _ 40 amod _ _ 40 behavior _ NOUN NN _ 32 nmod _ _ 41 . _ PUNCT . _ 20 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 national _ ADJ JJ _ 4 amod _ _ 3 economic _ ADJ JJ _ 4 amod _ _ 4 interests _ NOUN NNS _ 8 nsubjpass _ _ 5 are _ AUX VBP _ 8 auxpass _ _ 6 much _ ADV RB _ 7 advmod _ _ 7 better _ ADV JJR _ 8 advmod _ _ 8 served _ VERB VBD _ 0 root _ _ 9 allowing _ VERB VBG _ 8 xcomp _ _ 10 the _ DET DT _ 12 det _ _ 11 private _ ADJ JJ _ 12 amod _ _ 12 interests _ NOUN NNS _ 20 nsubj _ _ 13 of _ ADP IN _ 14 case _ _ 14 bankers _ NOUN NNS _ 12 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 investors _ NOUN NNS _ 14 conj _ _ 17 be _ VERB VB _ 20 cop _ _ 18 the _ DET DT _ 20 det _ _ 19 ultimate _ ADJ JJ _ 20 amod _ _ 20 judges _ NOUN NNS _ 9 ccomp _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 investment _ NOUN NN _ 24 compound _ _ 24 quality _ NOUN NN _ 20 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 various _ ADJ JJ _ 28 amod _ _ 27 LBO _ PROPN NNP _ 28 compound _ _ 28 deals _ NOUN NNS _ 24 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 leveraged _ VERB JJ _ 31 amod _ _ 31 restructurings _ NOUN NNS _ 28 conj _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 difficulties _ NOUN NNS _ 17 nsubj _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 junk-bond _ NOUN NN _ 7 compound _ _ 7 markets _ NOUN NNS _ 3 nmod _ _ 8 and _ CONJ CC _ 3 cc _ _ 9 the _ DET DT _ 10 det _ _ 10 scarcity _ NOUN NN _ 3 conj _ _ 11 of _ ADP IN _ 13 case _ _ 12 bank _ NOUN NN _ 13 compound _ _ 13 capital _ NOUN NN _ 10 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 recent _ ADJ JJ _ 16 amod _ _ 16 deals _ NOUN NNS _ 13 nmod _ _ 17 underscores _ VERB VBZ _ 0 root _ _ 18 the _ DET DT _ 19 det _ _ 19 wisdom _ NOUN NN _ 17 dobj _ _ 20 of _ SCONJ IN _ 21 mark _ _ 21 letting _ VERB VBG _ 19 acl _ _ 22 the _ DET DT _ 24 det _ _ 23 free _ ADJ JJ _ 24 amod _ _ 24 markets _ NOUN NNS _ 25 nsubj _ _ 25 operate _ VERB VBP _ 21 ccomp _ _ 26 . _ PUNCT . _ 17 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 takeover _ NOUN NN _ 3 compound _ _ 3 premiums _ NOUN NNS _ 4 nsubj _ _ 4 become _ VERB VBP _ 19 advcl _ _ 5 excessive _ ADJ JJ _ 4 xcomp _ _ 6 , _ PUNCT , _ 19 punct _ _ 7 if _ SCONJ IN _ 10 mark _ _ 8 LBO _ PROPN NNP _ 9 compound _ _ 9 dealmakers _ NOUN NNS _ 10 nsubj _ _ 10 become _ VERB VBP _ 19 dep _ _ 11 too _ ADV RB _ 12 advmod _ _ 12 aggressive _ ADJ JJ _ 10 xcomp _ _ 13 , _ PUNCT , _ 19 punct _ _ 14 then _ ADV RB _ 19 advmod _ _ 15 the _ DET DT _ 17 det _ _ 16 private _ ADJ JJ _ 17 amod _ _ 17 market _ NOUN NN _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 recognize _ VERB VB _ 0 root _ _ 20 these _ DET DT _ 21 det _ _ 21 problems _ NOUN NNS _ 19 dobj _ _ 22 more _ ADV RBR _ 23 advmod _ _ 23 quickly _ ADV RB _ 19 advmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 accurately _ ADV RB _ 23 conj _ _ 26 than _ SCONJ IN _ 27 dep _ _ 27 will _ AUX MD _ 23 advcl _ _ 28 policy _ NOUN NN _ 29 compound _ _ 29 makers _ NOUN NNS _ 27 nsubj _ _ 30 , _ PUNCT , _ 19 punct _ _ 31 and _ CONJ CC _ 19 cc _ _ 32 the _ DET DT _ 33 det _ _ 33 markets _ NOUN NNS _ 35 nsubj _ _ 34 will _ AUX MD _ 35 aux _ _ 35 move _ VERB VB _ 19 conj _ _ 36 with _ ADP IN _ 38 case _ _ 37 lightning _ NOUN NN _ 38 compound _ _ 38 speed _ NOUN NN _ 35 nmod _ _ 39 to _ PART TO _ 40 mark _ _ 40 impose _ VERB VB _ 35 xcomp _ _ 41 appropriate _ ADJ JJ _ 42 amod _ _ 42 sanctions _ NOUN NNS _ 40 dobj _ _ 43 . _ PUNCT . _ 19 punct _ _ 1 Yes _ INTJ UH _ 7 discourse _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 broader _ ADJ JJR _ 5 amod _ _ 5 exchanges _ NOUN NNS _ 7 nsubjpass _ _ 6 got _ AUX VBD _ 7 auxpass _ _ 7 caught _ VERB VBN _ 0 root _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 spiral _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 but _ CONJ CC _ 7 cc _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 rode _ VERB VBD _ 7 conj _ _ 16 the _ DET DT _ 17 det _ _ 17 tiger _ NOUN NN _ 15 dobj _ _ 18 up _ ADV IN _ 15 advmod _ _ 19 all _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 15 nmod:tmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Not _ PART RB _ 2 dep _ _ 2 surprisingly _ ADV RB _ 6 advmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 he _ PRON PRP _ 6 nsubj _ _ 5 sometimes _ ADV RB _ 6 advmod _ _ 6 bites _ VERB VBZ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 arbitragers _ NOUN NNS _ 7 nsubjpass _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 initiatiors _ NOUN NNS _ 2 conj _ _ 6 got _ AUX VBD _ 7 auxpass _ _ 7 killed _ VERB VBN _ 0 root _ _ 8 on _ ADP IN _ 10 case _ _ 9 Gray _ PROPN NNP _ 10 compound _ _ 10 Friday _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 while _ SCONJ IN _ 19 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 besieged _ VERB VBN _ 15 amod _ _ 15 managers _ NOUN NNS _ 19 nsubj _ _ 16 of _ ADP IN _ 18 case _ _ 17 prospective _ ADJ JJ _ 18 amod _ _ 18 targets _ NOUN NNS _ 15 nmod _ _ 19 cheered _ VERB VBD _ 7 advcl _ _ 20 lustily _ ADV RB _ 19 advmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 identify _ VERB VBP _ 11 advcl _ _ 4 with _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 besieged _ ADJ VBN _ 7 amod _ _ 7 managers _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 you _ PRON PRP _ 11 nsubj _ _ 10 must _ AUX MD _ 11 aux _ _ 11 concede _ VERB VB _ 0 root _ _ 12 that _ SCONJ IN _ 26 mark _ _ 13 speedy _ ADJ JJ _ 16 amod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 effective _ ADJ JJ _ 13 conj _ _ 16 relief _ NOUN NN _ 26 nsubj _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 excesses _ NOUN NNS _ 16 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 takeover _ NOUN NN _ 23 compound _ _ 23 market _ NOUN NN _ 19 nmod _ _ 24 is _ VERB VBZ _ 26 cop _ _ 25 more _ ADV RBR _ 26 advmod _ _ 26 likely _ ADJ JJ _ 11 ccomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 come _ VERB VB _ 26 xcomp _ _ 29 from _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 marketplace _ NOUN NN _ 28 nmod _ _ 32 than _ ADP IN _ 34 case _ _ 33 from _ ADP IN _ 34 case _ _ 34 Washington _ PROPN NNP _ 26 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 side _ VERB VBP _ 12 advcl _ _ 4 with _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 arbitragers _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 raiders _ NOUN NNS _ 6 conj _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 you _ PRON PRP _ 12 nsubj _ _ 11 clearly _ ADV RB _ 12 advmod _ _ 12 have _ VERB VBP _ 0 root _ _ 13 more _ ADJ RBR _ 12 xcomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 fear _ VERB VB _ 13 xcomp _ _ 16 from _ ADP IN _ 18 case _ _ 17 private _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 15 nmod _ _ 19 than _ ADP IN _ 21 case _ _ 20 from _ ADP IN _ 21 case _ _ 21 regulators _ NOUN NNS _ 13 nmod _ _ 22 , _ PUNCT , _ 12 punct _ _ 23 although _ SCONJ IN _ 30 mark _ _ 24 the _ DET DT _ 26 det _ _ 25 Delaware _ PROPN NNP _ 26 compound _ _ 26 courts _ NOUN NNS _ 30 nsubjpass _ _ 27 should _ AUX MD _ 30 aux _ _ 28 never _ ADV RB _ 30 neg _ _ 29 be _ AUX VB _ 30 auxpass _ _ 30 underestimated _ VERB VBN _ 12 advcl _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 truth _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Washington _ PROPN NNP _ 6 nsubj _ _ 6 understands _ VERB VBZ _ 3 ccomp _ _ 7 politics _ NOUN NNS _ 6 dobj _ _ 8 better _ ADJ JJR _ 6 advmod _ _ 9 than _ ADP IN _ 10 case _ _ 10 economics _ NOUN NNS _ 8 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 8 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 average _ ADJ JJ _ 4 amod _ _ 4 citizen _ NOUN NN _ 8 nsubjpass _ _ 5 is _ AUX VBZ _ 8 auxpass _ _ 6 probably _ ADV RB _ 8 advmod _ _ 7 not _ PART RB _ 8 neg _ _ 8 harmed _ VERB VBN _ 28 advcl _ _ 9 too _ ADV RB _ 10 advmod _ _ 10 much _ ADV RB _ 8 advmod _ _ 11 from _ ADP IN _ 15 case _ _ 12 Washington _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 rhetorical _ ADJ JJ _ 15 amod _ _ 15 war _ NOUN NN _ 8 nmod _ _ 16 against _ ADP IN _ 18 case _ _ 17 Wall _ PROPN NNP _ 18 compound _ _ 18 Street _ PROPN NNP _ 15 nmod _ _ 19 regarding _ VERB VBG _ 15 acl _ _ 20 excessive _ ADJ JJ _ 21 amod _ _ 21 financial _ ADJ JJ _ 19 dobj _ _ 22 leveraging _ VERB VBG _ 21 amod _ _ 23 , _ PUNCT , _ 28 punct _ _ 24 actual _ ADJ JJ _ 25 amod _ _ 25 legislation _ NOUN NN _ 28 nsubj _ _ 26 would _ AUX MD _ 28 aux _ _ 27 probably _ ADV RB _ 28 advmod _ _ 28 impose _ VERB VB _ 0 root _ _ 29 considerable _ ADJ JJ _ 30 amod _ _ 30 harm _ NOUN NN _ 28 dobj _ _ 31 . _ PUNCT . _ 28 punct _ _ 1 Any _ DET DT _ 3 det _ _ 2 such _ ADJ JJ _ 3 amod _ _ 3 attempt _ NOUN NN _ 32 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 distinguish _ VERB VB _ 3 dep _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 good _ ADJ JJ _ 8 amod _ _ 8 debt _ NOUN NN _ 5 dobj _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 10 from _ ADP IN _ 13 case _ _ 11 `` _ PUNCT `` _ 13 punct _ _ 12 bad _ ADJ JJ _ 13 amod _ _ 13 debt _ NOUN NN _ 5 nmod _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 '' _ PUNCT '' _ 5 punct _ _ 16 or _ CONJ CC _ 5 cc _ _ 17 to _ PART TO _ 18 mark _ _ 18 draw _ VERB VB _ 5 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 line _ NOUN NN _ 18 dobj _ _ 21 at _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 particular _ ADJ JJ _ 24 amod _ _ 24 industry _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 29 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 the _ DET DT _ 29 det _ _ 29 airlines _ NOUN NNS _ 24 nmod _ _ 30 , _ PUNCT , _ 24 punct _ _ 31 is _ VERB VBZ _ 32 cop _ _ 32 likely _ ADJ JJ _ 0 root _ _ 33 to _ PART TO _ 34 mark _ _ 34 blunt _ VERB VB _ 32 xcomp _ _ 35 the _ DET DT _ 36 det _ _ 36 spur _ NOUN NN _ 34 dobj _ _ 37 that _ ADP IN _ 43 dobj _ _ 38 the _ DET DT _ 40 det _ _ 39 proper _ ADJ JJ _ 40 amod _ _ 40 amount _ NOUN NN _ 43 nsubj _ _ 41 of _ ADP IN _ 42 case _ _ 42 leverage _ NOUN NN _ 40 nmod _ _ 43 provides _ VERB VBZ _ 36 acl:relcl _ _ 44 both _ DET CC _ 47 dep _ _ 45 to _ ADP TO _ 47 case _ _ 46 equity _ NOUN NN _ 47 compound _ _ 47 markets _ NOUN NNS _ 43 nmod _ _ 48 and _ CONJ CC _ 47 cc _ _ 49 economic _ ADJ JJ _ 50 amod _ _ 50 efficiency _ NOUN NN _ 47 conj _ _ 51 in _ ADP IN _ 52 case _ _ 52 general _ NOUN JJ _ 50 nmod _ _ 53 . _ PUNCT . _ 32 punct _ _ 1 Far _ ADV RB _ 2 advmod _ _ 2 better _ ADV JJR _ 0 root _ _ 3 for _ SCONJ IN _ 7 mark _ _ 4 policy _ NOUN NN _ 5 compound _ _ 5 makers _ NOUN NNS _ 7 nsubj _ _ 6 to _ PART TO _ 7 mark _ _ 7 concentrate _ VERB VB _ 2 dep _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 war _ NOUN NN _ 7 nmod _ _ 11 against _ ADP IN _ 12 case _ _ 12 drugs _ NOUN NNS _ 10 nmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 Panama _ PROPN NNP _ 10 conj _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 deficit _ NOUN NN _ 10 conj _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 all _ DET DT _ 22 dep _ _ 20 of _ ADP IN _ 21 case _ _ 21 them _ DET PRP _ 19 nmod _ _ 22 parades _ NOUN NNS _ 10 conj _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 seem _ VERB VBP _ 22 acl:relcl _ _ 25 never _ ADV RB _ 27 neg _ _ 26 to _ PART TO _ 27 mark _ _ 27 end _ VERB VB _ 24 xcomp _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Jarrell _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 former _ ADJ JJ _ 6 amod _ _ 5 top _ ADJ JJ _ 6 amod _ _ 6 economist _ NOUN NN _ 2 appos _ _ 7 at _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 Securities _ PROPN NNPS _ 12 compound _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Exchange _ PROPN NNP _ 9 conj _ _ 12 Commission _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 teaches _ VERB VBZ _ 0 root _ _ 15 at _ ADP IN _ 23 case _ _ 16 the _ DET DT _ 17 det _ _ 17 University _ PROPN NNP _ 23 nmod:poss _ _ 18 of _ ADP IN _ 19 case _ _ 19 Rochester _ PROPN NNP _ 17 nmod _ _ 20 's _ PART POS _ 17 case _ _ 21 Simon _ PROPN NNP _ 23 compound _ _ 22 Business _ PROPN NNP _ 23 compound _ _ 23 School _ PROPN NNP _ 14 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 Tokyo _ PROPN NNP _ 3 compound _ _ 2 share _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 4 nsubj _ _ 4 rebounded _ VERB VBD _ 0 root _ _ 5 Tuesday _ PROPN NNP _ 6 compound _ _ 6 morning _ NOUN NN _ 4 nmod:tmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 with _ SCONJ IN _ 16 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 Nikkei _ PROPN NNP _ 11 compound _ _ 11 index _ NOUN NN _ 16 nsubj _ _ 12 of _ ADP IN _ 15 case _ _ 13 225 _ NUM CD _ 15 nummod _ _ 14 selected _ VERB VBN _ 15 amod _ _ 15 stocks _ NOUN NNS _ 11 nmod _ _ 16 rising _ VERB VBG _ 4 advcl _ _ 17 618.69 _ NUM CD _ 18 nummod _ _ 18 points _ NOUN NNS _ 16 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 close _ VERB VB _ 16 advcl _ _ 21 the _ DET DT _ 23 det _ _ 22 morning _ NOUN NN _ 23 compound _ _ 23 session _ NOUN NN _ 20 nmod:tmod _ _ 24 at _ ADP IN _ 25 case _ _ 25 35087.38 _ NUM CD _ 20 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 index _ NOUN NN _ 3 nsubj _ _ 3 slid _ VERB VBD _ 0 root _ _ 4 647.33 _ NUM CD _ 5 nummod _ _ 5 points _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 or _ CONJ CC _ 5 cc _ _ 8 1.8 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 5 conj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 on _ ADP IN _ 12 case _ _ 12 Monday _ PROPN NNP _ 3 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 25 _ NUM CD _ 5 nummod _ _ 5 minutes _ NOUN NNS _ 13 nmod _ _ 6 of _ ADP IN _ 9 case _ _ 7 Tuesday _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 trading _ NOUN VBG _ 5 nmod _ _ 10 the _ DET DT _ 12 det _ _ 11 Nikkei _ PROPN NNP _ 12 compound _ _ 12 index _ NOUN NN _ 13 nsubj _ _ 13 soared _ VERB VBD _ 0 root _ _ 14 664.83 _ NUM CD _ 15 nummod _ _ 15 points _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 to _ ADP TO _ 18 case _ _ 18 35133.83 _ NUM CD _ 13 nmod _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 10 _ NUM CD _ 9 nmod _ _ 3 a.m. _ ADV RB _ 2 advmod _ _ 4 Tokyo _ PROPN NNP _ 5 compound _ _ 5 time _ NOUN NN _ 2 dep _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 index _ NOUN NN _ 9 nsubj _ _ 9 was _ VERB VBD _ 0 root _ _ 10 up _ ADV RB _ 9 advmod _ _ 11 435.11 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 to _ ADP TO _ 15 case _ _ 15 34903.80 _ NUM CD _ 10 nmod _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 investors _ NOUN NNS _ 18 nsubj _ _ 18 hailed _ VERB VBD _ 9 advcl _ _ 19 New _ PROPN NNP _ 20 compound _ _ 20 York _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 overnight _ ADJ JJ _ 23 amod _ _ 23 rally _ NOUN NN _ 18 dobj _ _ 24 . _ PUNCT . _ 9 punct _ _ 1 Monday _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 slide _ NOUN NN _ 4 nsubj _ _ 4 came _ VERB VBD _ 0 root _ _ 5 in _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 relatively _ ADV RB _ 8 advmod _ _ 8 calm _ ADJ JJ _ 9 amod _ _ 9 session _ NOUN NN _ 4 nmod _ _ 10 that _ PRON WDT _ 13 nsubj _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 provide _ VERB VB _ 9 acl:relcl _ _ 14 much _ ADJ JJ _ 15 amod _ _ 15 direction _ NOUN NN _ 13 dobj _ _ 16 for _ ADP IN _ 18 case _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 markets _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Shares _ NOUN NNS _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 closed _ VERB VBD _ 0 root _ _ 4 sharply _ ADV RB _ 5 advmod _ _ 5 lower _ ADV JJR _ 3 advmod _ _ 6 across _ ADP IN _ 7 case _ _ 7 Europe _ PROPN NNP _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 particularly _ ADV RB _ 11 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Frankfurt _ PROPN NNP _ 3 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 although _ SCONJ IN _ 20 mark _ _ 14 London _ PROPN NNP _ 20 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 a _ DET DT _ 19 det _ _ 17 few _ ADJ JJ _ 19 amod _ _ 18 other _ ADJ JJ _ 19 amod _ _ 19 markets _ NOUN NNS _ 14 conj _ _ 20 recovered _ VERB VBD _ 3 advcl _ _ 21 some _ DET DT _ 22 det _ _ 22 ground _ NOUN NN _ 20 dobj _ _ 23 after _ SCONJ IN _ 25 mark _ _ 24 stocks _ NOUN NNS _ 25 nsubj _ _ 25 began _ VERB VBD _ 20 advcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 rebound _ VERB VB _ 25 xcomp _ _ 28 in _ ADP IN _ 30 case _ _ 29 New _ PROPN NNP _ 30 compound _ _ 30 York _ PROPN NNP _ 27 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 Other _ ADJ JJ _ 5 amod _ _ 2 Asian _ ADJ JJ _ 5 amod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Pacific _ ADJ JJ _ 2 conj _ _ 5 markets _ NOUN NNS _ 6 nsubj _ _ 6 had _ VERB VBD _ 0 root _ _ 7 sharper _ ADJ JJR _ 8 amod _ _ 8 losses _ NOUN NNS _ 6 dobj _ _ 9 than _ ADP IN _ 10 case _ _ 10 Tokyo _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 selling _ NOUN NN _ 15 compound _ _ 15 wave _ NOUN NN _ 16 nsubj _ _ 16 stopped _ VERB VBD _ 6 conj _ _ 17 short _ ADV RB _ 16 advmod _ _ 18 of _ SCONJ IN _ 19 mark _ _ 19 precipitating _ VERB VBG _ 17 advcl _ _ 20 another _ DET DT _ 22 det _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 crash _ NOUN NN _ 19 dobj _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 All _ DET DT _ 2 det _ _ 2 eyes _ NOUN NNS _ 5 nsubj _ _ 3 were _ VERB VBD _ 5 cop _ _ 4 on _ ADP IN _ 5 case _ _ 5 Tokyo _ PROPN NNP _ 0 root _ _ 6 at _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 opening _ NOUN NN _ 5 nmod _ _ 9 because _ SCONJ IN _ 15 mark _ _ 10 it _ PRON PRP _ 15 nsubj _ _ 11 was _ VERB VBD _ 15 cop _ _ 12 the _ DET DT _ 15 det _ _ 13 first _ ADJ JJ _ 15 amod _ _ 14 major _ ADJ JJ _ 15 amod _ _ 15 market _ NOUN NN _ 5 advcl _ _ 16 to _ PART TO _ 17 mark _ _ 17 trade _ VERB VB _ 15 acl _ _ 18 since _ ADP IN _ 22 case _ _ 19 Friday _ PROPN NNP _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 190.58-point _ ADJ JJ _ 22 amod _ _ 22 plunge _ NOUN NN _ 15 nmod _ _ 23 on _ ADP IN _ 25 case _ _ 24 Wall _ PROPN NNP _ 25 compound _ _ 25 Street _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 16 cc _ _ 2 rather _ ADV RB _ 4 mark _ _ 3 than _ SCONJ IN _ 2 mwe _ _ 4 set _ VERB VB _ 16 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 tone _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 other _ ADJ JJ _ 9 amod _ _ 9 markets _ NOUN NNS _ 4 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 Japan _ PROPN NNP _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 institutional _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 16 nsubj _ _ 16 chose _ VERB VBD _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 remain _ VERB VB _ 16 xcomp _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 sidelines _ NOUN NNS _ 18 nmod _ _ 22 . _ PUNCT . _ 16 punct _ _ 1 Still _ ADV RB _ 16 advmod _ _ 2 , _ PUNCT , _ 16 punct _ _ 3 despite _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 sudden _ ADJ JJ _ 6 amod _ _ 6 reappearance _ NOUN NN _ 16 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 stock-market _ ADJ NN _ 9 amod _ _ 9 turbulence _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 managers _ NOUN NNS _ 16 nsubj _ _ 12 of _ ADP IN _ 15 case _ _ 13 Japanese _ ADJ JJ _ 15 amod _ _ 14 investment _ NOUN NN _ 15 compound _ _ 15 funds _ NOUN NNS _ 11 nmod _ _ 16 said _ VERB VBD _ 0 root _ _ 17 they _ PRON PRP _ 20 nsubj _ _ 18 were _ AUX VBD _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 planning _ VERB VBG _ 16 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 unload _ VERB VB _ 20 xcomp _ _ 23 U.S. _ PROPN NNP _ 26 compound _ _ 24 or _ CONJ CC _ 23 cc _ _ 25 European _ ADJ JJ _ 23 conj _ _ 26 equities _ NOUN NNS _ 22 dobj _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 trade _ VERB VB _ 20 ccomp _ _ 6 much _ ADJ JJ _ 5 advmod _ _ 7 today _ NOUN NN _ 5 nmod:tmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 as _ SCONJ IN _ 13 mark _ _ 10 our _ PRON PRP$ _ 11 nmod:poss _ _ 11 policy _ NOUN NN _ 13 nsubj _ _ 12 now _ ADV RB _ 11 advmod _ _ 13 is _ VERB VBZ _ 5 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 wait _ VERB VB _ 13 xcomp _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 see _ VERB VB _ 15 conj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 fund _ NOUN NN _ 23 compound _ _ 23 manager _ NOUN NN _ 20 nsubj _ _ 24 at _ ADP IN _ 28 case _ _ 25 Taisho _ PROPN NNP _ 28 compound _ _ 26 Life _ PROPN NNP _ 28 compound _ _ 27 Insurance _ PROPN NNP _ 28 compound _ _ 28 Co _ PROPN NNP _ 23 nmod _ _ 29 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 like _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 wait _ VERB VB _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 see _ VERB VB _ 6 conj _ _ 9 until _ SCONJ IN _ 11 mark _ _ 10 trading _ NOUN NN _ 11 nsubj _ _ 11 goes _ VERB VBZ _ 6 advcl _ _ 12 around _ ADV IN _ 11 advmod _ _ 13 through _ ADP IN _ 14 case _ _ 14 Europe _ PROPN NNP _ 11 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 New _ PROPN NNP _ 17 compound _ _ 17 York _ PROPN NNP _ 14 conj _ _ 18 . _ PUNCT . _ 4 punct _ _ 19 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 institutions _ NOUN NNS _ 3 nsubj _ _ 3 appeared _ VERB VBD _ 0 root _ _ 4 confident _ ADJ JJ _ 3 xcomp _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 Japanese _ ADJ JJ _ 7 amod _ _ 7 regulators _ NOUN NNS _ 9 nsubj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 step _ VERB VB _ 4 ccomp _ _ 10 in _ ADV IN _ 9 advmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 ensure _ VERB VB _ 9 xcomp _ _ 13 orderly _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 12 dobj _ _ 15 if _ SCONJ IN _ 16 mark _ _ 16 necessary _ ADJ JJ _ 9 advcl _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 and _ CONJ CC _ 3 cc _ _ 19 there _ PRON EX _ 20 expl _ _ 20 was _ VERB VBD _ 3 conj _ _ 21 considerable _ ADJ JJ _ 22 amod _ _ 22 speculation _ NOUN NN _ 20 nsubj _ _ 23 during _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 day _ NOUN NN _ 22 nmod _ _ 26 that _ SCONJ IN _ 31 mark _ _ 27 the _ DET DT _ 29 det _ _ 28 Finance _ PROPN NNP _ 29 compound _ _ 29 Ministry _ PROPN NNP _ 31 nsubj _ _ 30 was _ AUX VBD _ 31 aux _ _ 31 working _ VERB VBG _ 22 dep _ _ 32 behind _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 scenes _ NOUN NNS _ 31 nmod _ _ 35 to _ PART TO _ 36 mark _ _ 36 do _ VERB VB _ 31 xcomp _ _ 37 just _ ADV RB _ 38 advmod _ _ 38 that _ DET DT _ 36 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 absence _ NOUN NN _ 14 nmod _ _ 5 of _ ADP IN _ 7 case _ _ 6 panicky _ ADJ JJ _ 7 amod _ _ 7 trading _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 presence _ NOUN NN _ 14 nsubjpass _ _ 11 was _ AUX VBD _ 14 auxpass _ _ 12 never _ ADV RB _ 14 neg _ _ 13 overtly _ ADV RB _ 14 advmod _ _ 14 felt _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 close _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 Nikkei _ PROPN NNP _ 7 compound _ _ 7 average _ NOUN NN _ 11 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 225 _ NUM CD _ 10 nummod _ _ 10 stocks _ NOUN NNS _ 7 nmod _ _ 11 stood _ VERB VBD _ 0 root _ _ 12 at _ ADP IN _ 13 case _ _ 13 34468.69 _ NUM CD _ 11 nmod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 down _ ADV RB _ 11 advmod _ _ 16 647.33 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 or _ CONJ CC _ 17 cc _ _ 20 1.8 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 17 conj _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 broader _ ADJ JJR _ 6 amod _ _ 3 Tokyo _ PROPN NNP _ 6 compound _ _ 4 Stock _ PROPN NNP _ 6 compound _ _ 5 Price _ PROPN NNP _ 6 compound _ _ 6 Index _ PROPN NNP _ 7 nsubj _ _ 7 sank _ VERB VBD _ 0 root _ _ 8 45.66 _ NUM CD _ 7 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 or _ CONJ CC _ 8 cc _ _ 11 1.7 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 8 conj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 to _ ADP TO _ 15 case _ _ 15 2600.88 _ NUM CD _ 7 nmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 day _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decline _ NOUN NN _ 8 nsubj _ _ 5 was _ VERB VBD _ 8 cop _ _ 6 generally _ ADV RB _ 8 advmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 line _ NOUN NN _ 0 root _ _ 9 with _ ADP IN _ 13 case _ _ 10 analysts _ NOUN NNS _ 13 nmod:poss _ _ 11 ' _ PART POS _ 10 case _ _ 12 weekend _ NOUN NN _ 13 compound _ _ 13 predictions _ NOUN NNS _ 8 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Declining _ VERB VBG _ 2 amod _ _ 2 issues _ NOUN NNS _ 3 nsubj _ _ 3 swamped _ VERB VBD _ 0 root _ _ 4 advancers _ NOUN NNS _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 941-105 _ NUM CD _ 3 advmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 volume _ NOUN NN _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 thin _ ADJ JJ _ 0 root _ _ 5 at _ ADP IN _ 8 case _ _ 6 526.2 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 compared _ VERB VBN _ 13 case _ _ 11 with _ ADP IN _ 13 case _ _ 12 574.7 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 4 advcl _ _ 14 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 opened _ VERB VBD _ 0 root _ _ 4 sharply _ ADV RB _ 5 advmod _ _ 5 lower _ ADV JJR _ 3 advmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 with _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Nikkei _ PROPN NNP _ 10 compound _ _ 10 average _ NOUN NN _ 3 nmod _ _ 11 down _ ADV IN _ 10 advmod _ _ 12 nearly _ ADV RB _ 13 advmod _ _ 13 600 _ NUM CD _ 11 nmod:npmod _ _ 14 after _ ADP IN _ 16 case _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 minutes _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 midmorning _ NOUN NN _ 3 compound _ _ 3 rebound _ NOUN NN _ 4 nsubj _ _ 4 brought _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 4 dobj _ _ 6 back _ ADV RB _ 4 advmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 show _ VERB VB _ 4 advcl _ _ 9 a _ DET DT _ 10 det _ _ 10 gain _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 200 _ NUM CD _ 10 nmod _ _ 14 at _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 end _ NOUN NN _ 8 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 morning _ NOUN NN _ 20 compound _ _ 20 session _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 but _ CONJ CC _ 4 cc _ _ 23 the _ DET DT _ 24 det _ _ 24 rally _ NOUN NN _ 25 nsubj _ _ 25 failed _ VERB VBD _ 4 conj _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 afternoon _ NOUN NN _ 25 nmod _ _ 29 , _ PUNCT , _ 25 punct _ _ 30 and _ CONJ CC _ 25 cc _ _ 31 the _ DET DT _ 32 det _ _ 32 market _ NOUN NN _ 33 nsubj _ _ 33 closed _ VERB VBD _ 25 conj _ _ 34 near _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 36 det _ _ 36 day _ NOUN NN _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 low _ NOUN JJ _ 33 nmod _ _ 39 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 smaller _ ADJ JJR _ 3 amod _ _ 3 stocks _ NOUN NNS _ 12 nsubj _ _ 4 in _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Tokyo _ PROPN NNP _ 7 compound _ _ 7 market _ NOUN NN _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 second _ ADJ JJ _ 10 amod _ _ 10 section _ NOUN NN _ 3 nmod _ _ 11 also _ ADV RB _ 12 advmod _ _ 12 posted _ VERB VBD _ 0 root _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 biggest _ ADJ JJS _ 15 amod _ _ 15 decline _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Tokyo _ PROPN NNP _ 5 compound _ _ 3 Stock _ PROPN NNP _ 5 compound _ _ 4 Exchange _ PROPN NNP _ 5 compound _ _ 5 index _ NOUN NN _ 10 nsubj _ _ 6 for _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 second _ ADJ JJ _ 9 amod _ _ 9 section _ NOUN NN _ 5 nmod _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 100.96 _ NUM CD _ 10 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 or _ CONJ CC _ 11 cc _ _ 14 2.7 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 conj _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 to _ ADP TO _ 18 case _ _ 18 3655.40 _ NUM CD _ 10 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 trying _ VERB VBG _ 2 acl _ _ 5 to _ PART TO _ 6 mark _ _ 6 outperform _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 indexes _ NOUN NNS _ 6 dobj _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 flocked _ VERB VBN _ 0 root _ _ 15 to _ ADP TO _ 18 case _ _ 16 these _ DET DT _ 18 det _ _ 17 small _ ADJ JJ _ 18 amod _ _ 18 issues _ NOUN NNS _ 14 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 recent _ ADJ JJ _ 21 amod _ _ 21 weeks _ NOUN NNS _ 14 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 Japanese _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 5 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 traders _ NOUN NNS _ 2 conj _ _ 5 expressed _ VERB VBD _ 0 root _ _ 6 relief _ NOUN NN _ 5 dobj _ _ 7 that _ SCONJ IN _ 13 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 Tokyo _ PROPN NNP _ 10 compound _ _ 10 market _ NOUN NN _ 13 nsubj _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 fall _ VERB VB _ 6 ccomp _ _ 14 more _ ADV JJR _ 15 advmod _ _ 15 sharply _ ADV RB _ 13 advmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 performance _ NOUN NN _ 5 nsubj _ _ 4 did _ AUX VBD _ 5 aux _ _ 5 bear _ VERB VB _ 0 root _ _ 6 some _ DET DT _ 7 det _ _ 7 resemblance _ NOUN NN _ 5 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 events _ NOUN NNS _ 7 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 years _ NOUN NNS _ 13 nmod:npmod _ _ 13 ago _ ADV RB _ 9 acl _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 during _ ADP IN _ 22 case _ _ 16 the _ DET DT _ 22 det _ _ 17 October _ PROPN NNP _ 22 compound _ _ 18 1987 _ NUM CD _ 22 nummod _ _ 19 global _ ADJ JJ _ 22 amod _ _ 20 stock _ NOUN NN _ 22 compound _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 crash _ NOUN NN _ 9 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Oct. _ PROPN NNP _ 19 nmod _ _ 3 16 _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 1987 _ NUM CD _ 2 nummod _ _ 6 -- _ PUNCT : _ 8 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Friday _ PROPN NNP _ 2 dep _ _ 9 before _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 Black _ PROPN NNP _ 13 compound _ _ 12 Monday _ PROPN NNP _ 13 compound _ _ 13 crash _ NOUN NN _ 8 nmod _ _ 14 -- _ PUNCT : _ 8 punct _ _ 15 the _ DET DT _ 18 det _ _ 16 New _ PROPN NNP _ 18 compound _ _ 17 York _ PROPN NNP _ 18 compound _ _ 18 market _ NOUN NN _ 19 nsubj _ _ 19 dropped _ VERB VBD _ 0 root _ _ 20 4.6 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 and _ CONJ CC _ 19 cc _ _ 24 Tokyo _ PROPN NNP _ 25 nsubj _ _ 25 followed _ VERB VBD _ 19 conj _ _ 26 on _ ADP IN _ 27 case _ _ 27 Monday _ PROPN NNP _ 25 nmod _ _ 28 with _ ADP IN _ 32 case _ _ 29 a _ DET DT _ 32 det _ _ 30 2.4 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 32 amod _ _ 32 drop _ NOUN NN _ 25 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 13 nmod:tmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 Wall _ PROPN NNP _ 5 compound _ _ 5 Street _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 plunge _ NOUN NN _ 13 nsubjpass _ _ 8 of _ ADP IN _ 10 case _ _ 9 6.9 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 followed _ VERB VBN _ 0 root _ _ 14 by _ ADP IN _ 19 case _ _ 15 yesterday _ NOUN NN _ 19 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 1.8 _ NUM CD _ 18 compound _ _ 18 % _ SYM NN _ 19 amod _ _ 19 loss _ NOUN NN _ 13 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 Tokyo _ PROPN NNP _ 19 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 9 advmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 Tokyo _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 biggest _ ADJ JJS _ 8 amod _ _ 8 fall _ NOUN NN _ 9 nsubj _ _ 9 came _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 day _ NOUN NN _ 9 nmod:tmod _ _ 12 after _ ADP IN _ 20 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 20 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 22.6 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 20 amod _ _ 18 Black _ PROPN JJ _ 20 compound _ _ 19 Monday _ PROPN NNP _ 20 compound _ _ 20 plunge _ NOUN NN _ 11 nmod _ _ 21 , _ PUNCT , _ 11 punct _ _ 22 when _ ADV WRB _ 26 advmod _ _ 23 the _ DET DT _ 25 det _ _ 24 Nikkei _ PROPN NNP _ 25 compound _ _ 25 average _ NOUN NN _ 26 nsubj _ _ 26 fell _ VERB VBD _ 11 acl:relcl _ _ 27 14.9 _ NUM CD _ 28 nummod _ _ 28 % _ SYM NN _ 26 dobj _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 Thus _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 participants _ NOUN NNS _ 7 nsubj _ _ 5 yesterday _ NOUN NN _ 7 nmod:tmod _ _ 6 were _ AUX VBD _ 7 aux _ _ 7 looking _ VERB VBG _ 0 root _ _ 8 ahead _ ADV RB _ 7 advmod _ _ 9 nervously _ ADV RB _ 7 advmod _ _ 10 to _ ADP TO _ 14 case _ _ 11 Wall _ PROPN NNP _ 12 compound _ _ 12 Street _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 opening _ NOUN NN _ 7 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 New _ PROPN NNP _ 4 compound _ _ 4 York _ PROPN NNP _ 12 nmod _ _ 5 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 11 det _ _ 8 Dow _ PROPN NNP _ 11 compound _ _ 9 Jones _ PROPN NNP _ 11 compound _ _ 10 Industrial _ PROPN NNP _ 11 compound _ _ 11 Average _ PROPN NNP _ 12 nsubj _ _ 12 surged _ VERB VBD _ 0 root _ _ 13 88.12 _ NUM CD _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 close _ VERB VB _ 12 advcl _ _ 16 at _ ADP IN _ 17 case _ _ 17 2657.38 _ NUM CD _ 15 nmod _ _ 18 on _ ADP IN _ 20 case _ _ 19 heavy _ ADJ JJ _ 20 amod _ _ 20 volume _ NOUN NN _ 12 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 416,290,000 _ NUM CD _ 23 nummod _ _ 23 shares _ NOUN NNS _ 20 nmod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 although _ SCONJ IN _ 29 mark _ _ 26 declining _ VERB VBG _ 27 amod _ _ 27 issues _ NOUN NNS _ 29 nsubj _ _ 28 still _ ADV RB _ 29 advmod _ _ 29 outnumbered _ VERB VBD _ 12 advcl _ _ 30 advancing _ VERB VBG _ 31 amod _ _ 31 ones _ NOUN NNS _ 29 dobj _ _ 32 on _ ADP IN _ 35 case _ _ 33 the _ DET DT _ 35 det _ _ 34 broad _ ADJ JJ _ 35 amod _ _ 35 market _ NOUN NN _ 29 nmod _ _ 36 . _ PUNCT . _ 12 punct _ _ 1 Nobuto _ PROPN NNP _ 2 compound _ _ 2 Yasuda _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 director _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 9 case _ _ 7 Yamaichi _ PROPN NNP _ 9 compound _ _ 8 Investment _ PROPN NNP _ 9 compound _ _ 9 Trust _ PROPN NNP _ 5 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Management _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 9 conj _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 called _ VERB VBN _ 0 root _ _ 15 yesterday _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 session _ NOUN NN _ 21 nsubj _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 good _ ADJ JJ _ 21 amod _ _ 21 scenario _ NOUN NN _ 14 xcomp _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 for _ ADP IN _ 24 case _ _ 24 Japan _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Now _ ADV RB _ 5 advmod _ _ 3 we _ PRON PRP _ 5 nsubj _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 looking _ VERB VBG _ 16 ccomp _ _ 6 for _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 time _ NOUN NN _ 5 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 place _ VERB VB _ 8 acl _ _ 11 buy _ NOUN NN _ 12 compound _ _ 12 orders _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 For _ ADP IN _ 5 case _ _ 3 us _ PRON PRP _ 5 dep _ _ 4 institutional _ ADJ JJ _ 5 amod _ _ 5 investors _ NOUN NNS _ 12 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 chance _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 10 case _ _ 10 buying _ VERB NN _ 8 nmod _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 come _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 1 Isao _ PROPN NNP _ 2 compound _ _ 2 Ushikubo _ PROPN NNP _ 20 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 general _ ADJ JJ _ 5 amod _ _ 5 manager _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 investment _ NOUN NN _ 10 compound _ _ 9 research _ NOUN NN _ 10 compound _ _ 10 department _ NOUN NN _ 5 nmod _ _ 11 at _ ADP IN _ 13 case _ _ 12 Toyo _ PROPN NNP _ 13 compound _ _ 13 Trust _ PROPN NNP _ 10 nmod _ _ 14 & _ CONJ CC _ 13 cc _ _ 15 Banking _ PROPN NNP _ 16 compound _ _ 16 Co. _ PROPN NNP _ 13 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 also _ ADV RB _ 20 advmod _ _ 19 was _ VERB VBD _ 20 cop _ _ 20 optimistic _ ADJ JJ _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 described _ VERB VBD _ 0 root _ _ 3 Friday _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 plunge _ NOUN NN _ 2 dobj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 5 nmod _ _ 9 as _ ADP IN _ 14 case _ _ 10 a _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 fleeting _ ADJ JJ _ 14 amod _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 event _ NOUN NN _ 2 nmod _ _ 15 resulting _ VERB VBG _ 14 acl _ _ 16 in _ ADP IN _ 17 case _ _ 17 part _ NOUN NN _ 15 nmod _ _ 18 from _ ADP IN _ 20 case _ _ 19 excessive _ ADJ JJ _ 20 amod _ _ 20 merger _ NOUN NN _ 15 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 acquisition _ NOUN NN _ 23 compound _ _ 23 activity _ NOUN NN _ 20 conj _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 Unless _ SCONJ IN _ 4 mark _ _ 3 there _ PRON EX _ 4 expl _ _ 4 is _ VERB VBZ _ 9 advcl _ _ 5 a _ DET DT _ 6 det _ _ 6 panic _ NOUN NN _ 4 nsubj _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 this _ PRON DT _ 9 nsubj _ _ 9 is _ VERB VBZ _ 26 ccomp _ _ 10 the _ DET DT _ 12 det _ _ 11 best _ ADJ JJS _ 12 amod _ _ 12 time _ NOUN NN _ 9 dep _ _ 13 to _ PART TO _ 14 mark _ _ 14 buy _ VERB VB _ 12 acl _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 as _ SCONJ IN _ 19 dep _ _ 17 was _ VERB VBD _ 19 dep _ _ 18 the _ DET DT _ 19 det _ _ 19 case _ NOUN NN _ 9 advcl _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 years _ NOUN NNS _ 22 nmod:npmod _ _ 22 ago _ ADV RB _ 19 advmod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 '' _ PUNCT '' _ 26 punct _ _ 25 he _ PRON PRP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 Those _ DET DT _ 3 det _ _ 3 shares _ NOUN NNS _ 12 nsubjpass _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 posted _ VERB VBN _ 3 acl:relcl _ _ 7 gains _ NOUN NNS _ 6 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 M&A _ PROPN NN _ 10 compound _ _ 10 speculation _ NOUN NN _ 6 nmod _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 dashed _ VERB VBN _ 0 root _ _ 13 with _ ADP IN _ 15 case _ _ 14 cold _ ADJ JJ _ 15 amod _ _ 15 water _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 but _ CONJ CC _ 12 cc _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 far _ ADV RB _ 27 advmod _ _ 20 as _ SCONJ IN _ 24 mark _ _ 21 major _ ADJ JJ _ 22 amod _ _ 22 stocks _ NOUN NNS _ 24 nsubjpass _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 concerned _ VERB VBN _ 19 advcl _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 there _ PRON EX _ 27 expl _ _ 27 is _ VERB VBZ _ 12 conj _ _ 28 n't _ PART RB _ 27 neg _ _ 29 much _ ADJ JJ _ 30 amod _ _ 30 impact _ NOUN NN _ 27 nsubj _ _ 31 . _ PUNCT . _ 12 punct _ _ 32 '' _ PUNCT '' _ 12 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 similarly _ ADV RB _ 6 advmod _ _ 6 sanguine _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 16 ccomp _ _ 4 no _ DET DT _ 5 neg _ _ 5 plans _ NOUN NNS _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 adjust _ VERB VB _ 5 acl _ _ 8 our _ PRON PRP$ _ 10 nmod:poss _ _ 9 asset _ NOUN NN _ 10 compound _ _ 10 allocation _ NOUN NN _ 7 dobj _ _ 11 in _ ADP IN _ 13 case _ _ 12 foreign _ ADJ JJ _ 13 amod _ _ 13 equities _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Masato _ PROPN NNP _ 18 compound _ _ 18 Murakami _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 chief _ ADJ JJ _ 22 amod _ _ 21 portfolio _ NOUN NN _ 22 compound _ _ 22 manager _ NOUN NN _ 18 appos _ _ 23 in _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 pension _ NOUN NN _ 28 compound _ _ 26 fund _ NOUN NN _ 28 compound _ _ 27 management _ NOUN NN _ 28 compound _ _ 28 department _ NOUN NN _ 22 nmod _ _ 29 at _ ADP IN _ 31 case _ _ 30 Yasuda _ PROPN NNP _ 31 compound _ _ 31 Trust _ PROPN NNP _ 28 nmod _ _ 32 & _ CONJ CC _ 31 cc _ _ 33 Banking _ PROPN NNP _ 34 compound _ _ 34 Co _ PROPN NNP _ 31 conj _ _ 35 . _ PUNCT . _ 16 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Friday _ PROPN NNP _ 7 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Wall _ PROPN NNP _ 7 compound _ _ 6 Street _ PROPN NNP _ 7 compound _ _ 7 decline _ NOUN NN _ 13 nsubj _ _ 8 was _ VERB VBD _ 13 cop _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 well _ ADV RB _ 13 advmod _ _ 11 within _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 range _ NOUN NN _ 2 ccomp _ _ 14 of _ ADP IN _ 15 case _ _ 15 volatility _ NOUN NN _ 13 nmod _ _ 16 '' _ PUNCT '' _ 13 punct _ _ 17 that _ ADP WDT _ 20 nmod _ _ 18 Yasuda _ PROPN NNP _ 19 compound _ _ 19 Trust _ PROPN NNP _ 20 nsubj _ _ 20 plans _ VERB VBZ _ 13 acl:relcl _ _ 21 for _ ADP IN _ 17 case _ _ 22 when _ ADV WRB _ 24 advmod _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 charts _ VERB NNS _ 20 advcl _ _ 25 its _ PRON PRP$ _ 28 nmod:poss _ _ 26 overseas _ ADJ JJ _ 28 amod _ _ 27 investment _ NOUN NN _ 28 compound _ _ 28 strategy _ NOUN NN _ 24 dobj _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 Asian _ ADJ JJ _ 11 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Pacific _ ADJ JJ _ 6 amod _ _ 6 markets _ NOUN NNS _ 3 conj _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 Malaysia _ PROPN NNP _ 11 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Singapore _ PROPN NNP _ 8 conj _ _ 11 had _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 14 det _ _ 13 biggest _ ADJ JJS _ 14 amod _ _ 14 losses _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 with _ SCONJ IN _ 24 mark _ _ 17 the _ DET DT _ 21 det _ _ 18 Kuala _ PROPN NNP _ 21 compound _ _ 19 Lumpur _ PROPN NNP _ 21 compound _ _ 20 composite _ ADJ JJ _ 21 amod _ _ 21 index _ NOUN NN _ 24 nsubj _ _ 22 in _ ADP IN _ 23 case _ _ 23 Malaysia _ PROPN NNP _ 21 nmod _ _ 24 falling _ VERB VBG _ 11 advcl _ _ 25 11.5 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 24 dobj _ _ 27 and _ CONJ CC _ 24 cc _ _ 28 Singapore _ PROPN NNP _ 33 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Straits _ PROPN NNP _ 33 compound _ _ 31 Times _ PROPN NNP _ 33 compound _ _ 32 Industrial _ PROPN NNP _ 33 compound _ _ 33 Index _ PROPN NNP _ 24 conj _ _ 34 down _ ADV IN _ 33 advmod _ _ 35 10 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 34 nmod:npmod _ _ 37 . _ PUNCT . _ 11 punct _ _ 1 Major _ ADJ JJ _ 2 amod _ _ 2 indexes _ NOUN NNS _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 more _ ADJ JJR _ 6 advmod _ _ 5 than _ ADP IN _ 4 mwe _ _ 6 8 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 3 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Australia _ PROPN NNP _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 New _ PROPN NNP _ 12 compound _ _ 12 Zealand _ PROPN NNP _ 9 conj _ _ 13 and _ CONJ CC _ 7 cc _ _ 14 6.5 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 7 conj _ _ 16 in _ ADP IN _ 18 case _ _ 17 Hong _ PROPN NNP _ 18 compound _ _ 18 Kong _ PROPN NNP _ 15 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Bangkok _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Manila _ PROPN NNP _ 1 conj _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 Seoul _ PROPN NNP _ 1 conj _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 Taipei _ PROPN NNP _ 1 conj _ _ 8 and _ CONJ CC _ 1 cc _ _ 9 Jakarta _ PROPN NNP _ 1 conj _ _ 10 escaped _ VERB VBD _ 0 root _ _ 11 with _ ADP IN _ 14 case _ _ 12 slightly _ ADV RB _ 13 advmod _ _ 13 smaller _ ADJ JJR _ 14 amod _ _ 14 losses _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Brokers _ NOUN NNS _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 fund _ NOUN NN _ 4 compound _ _ 4 managers _ NOUN NNS _ 1 conj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 region _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 markets _ NOUN NNS _ 11 nsubj _ _ 10 were _ AUX VBD _ 11 aux _ _ 11 reacting _ VERB VBG _ 5 ccomp _ _ 12 to _ ADP TO _ 17 case _ _ 13 Friday _ PROPN NNP _ 17 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 Wall _ PROPN NNP _ 17 compound _ _ 16 Street _ PROPN NNP _ 17 compound _ _ 17 plunge _ NOUN NN _ 11 nmod _ _ 18 even _ ADV RB _ 23 advmod _ _ 19 though _ SCONJ IN _ 23 mark _ _ 20 that _ DET DT _ 21 det _ _ 21 decline _ NOUN NN _ 23 nsubj _ _ 22 was _ VERB VBD _ 23 cop _ _ 23 due _ ADJ JJ _ 11 advcl _ _ 24 to _ ADP TO _ 26 case _ _ 25 local _ ADJ JJ _ 26 amod _ _ 26 factors _ NOUN NNS _ 23 nmod _ _ 27 such _ ADJ JJ _ 31 case _ _ 28 as _ ADP IN _ 27 mwe _ _ 29 failed _ VERB JJ _ 31 amod _ _ 30 corporate _ ADJ JJ _ 31 amod _ _ 31 buy-outs _ NOUN NNS _ 26 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 a _ DET DT _ 36 det _ _ 34 deteriorating _ VERB VBG _ 36 amod _ _ 35 junk-bond _ NOUN NN _ 36 compound _ _ 36 market _ NOUN NN _ 31 conj _ _ 37 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 pure _ ADJ JJ _ 5 amod _ _ 5 psychology _ NOUN NN _ 8 ccomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 William _ PROPN NNP _ 11 compound _ _ 10 Au _ PROPN NNP _ 11 compound _ _ 11 Yeung _ PROPN NNP _ 8 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 an _ DET DT _ 15 det _ _ 14 account _ NOUN NN _ 15 compound _ _ 15 executive _ NOUN NN _ 11 appos _ _ 16 for _ ADP IN _ 23 case _ _ 17 Drexel _ PROPN NNP _ 23 compound _ _ 18 Burnham _ PROPN NNP _ 23 compound _ _ 19 Lambert _ PROPN NNP _ 23 compound _ _ 20 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 21 HK _ PROPN NNP _ 23 appos _ _ 22 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 23 Ltd. _ PROPN NNP _ 15 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 Hong _ PROPN NNP _ 26 compound _ _ 26 Kong _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Markets _ NOUN NNS _ 9 nsubjpass _ _ 3 in _ ADP IN _ 5 case _ _ 4 this _ DET DT _ 5 det _ _ 5 region _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 9 auxpass _ _ 7 n't _ PART RB _ 9 neg _ _ 8 so _ ADV RB _ 9 advmod _ _ 9 geared _ VERB VBN _ 0 root _ _ 10 to _ ADP TO _ 12 case _ _ 11 leveraged _ VERB JJ _ 12 amod _ _ 12 buy-outs _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 their _ PRON PRP$ _ 16 nmod:poss _ _ 16 economies _ NOUN NNS _ 21 nsubj _ _ 17 generally _ ADV RB _ 21 advmod _ _ 18 are _ VERB VBP _ 21 cop _ _ 19 in _ ADP IN _ 21 case _ _ 20 good _ ADJ JJ _ 21 amod _ _ 21 shape _ NOUN NN _ 9 conj _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 but _ CONJ CC _ 9 cc _ _ 24 there _ PRON EX _ 25 expl _ _ 25 's _ VERB VBZ _ 9 conj _ _ 26 no _ DET DT _ 27 neg _ _ 27 doubt _ NOUN NN _ 25 nsubj _ _ 28 that _ DET WDT _ 32 mark _ _ 29 Asia _ PROPN NNP _ 32 nsubj _ _ 30 is _ AUX VBZ _ 32 aux _ _ 31 still _ ADV RB _ 32 advmod _ _ 32 following _ VERB VBG _ 27 ccomp _ _ 33 America _ PROPN NNP _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 lead _ NOUN NN _ 32 dobj _ _ 36 . _ PUNCT . _ 9 punct _ _ 37 '' _ PUNCT '' _ 9 punct _ _ 1 Several _ ADJ JJ _ 2 amod _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Malaysia _ PROPN NNP _ 7 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 Singapore _ PROPN NNP _ 4 conj _ _ 7 had _ VERB VBD _ 3 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 biggest _ ADJ JJS _ 10 amod _ _ 10 losses _ NOUN NNS _ 7 dobj _ _ 11 because _ SCONJ IN _ 15 mark _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 are _ VERB VBP _ 15 cop _ _ 14 relatively _ ADV RB _ 15 advmod _ _ 15 open _ ADJ JJ _ 7 advcl _ _ 16 to _ ADP TO _ 19 case _ _ 17 rapid _ ADJ JJ _ 19 amod _ _ 18 cash _ NOUN NN _ 19 compound _ _ 19 flows _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Hong _ PROPN NNP _ 2 compound _ _ 2 Kong _ PROPN NNP _ 10 nsubj _ _ 3 is _ VERB VBZ _ 10 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 region _ NOUN NN _ 10 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 next _ ADJ JJ _ 9 amod _ _ 8 most _ ADV RBS _ 9 advmod _ _ 9 open _ ADJ JJ _ 10 amod _ _ 10 market _ NOUN NN _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 but _ CONJ CC _ 10 cc _ _ 13 many _ ADJ JJ _ 15 amod _ _ 14 foreign _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 18 nsubj _ _ 16 have _ AUX VBP _ 18 aux _ _ 17 been _ AUX VBN _ 18 aux _ _ 18 staying _ VERB VBG _ 10 conj _ _ 19 away _ ADP RB _ 18 compound:prt _ _ 20 from _ ADP IN _ 21 case _ _ 21 it _ PRON PRP _ 18 nmod _ _ 22 since _ SCONJ IN _ 24 mark _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 plunged _ VERB VBD _ 18 advcl _ _ 25 in _ ADP IN _ 26 case _ _ 26 June _ PROPN NNP _ 24 nmod _ _ 27 amid _ ADP IN _ 29 case _ _ 28 political _ ADJ JJ _ 29 amod _ _ 29 turmoil _ NOUN NN _ 24 nmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 China _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 Singapore _ PROPN NNP _ 3 nsubj _ _ 3 took _ VERB VBD _ 24 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 hit _ NOUN NN _ 3 dobj _ _ 6 because _ ADV IN _ 15 advmod _ _ 7 when _ ADV WRB _ 9 advmod _ _ 8 people _ NOUN NNS _ 9 nsubj _ _ 9 want _ VERB VBP _ 15 advcl _ _ 10 to _ PART TO _ 11 mark _ _ 11 get _ VERB VB _ 9 xcomp _ _ 12 out _ ADP RP _ 11 compound:prt _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 tend _ VERB VBP _ 3 dep _ _ 16 to _ PART TO _ 17 mark _ _ 17 go _ VERB VB _ 15 xcomp _ _ 18 where _ ADV WRB _ 21 advmod _ _ 19 the _ DET DT _ 20 det _ _ 20 liquidity _ NOUN NN _ 21 nsubj _ _ 21 is _ VERB VBZ _ 17 advcl _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 '' _ PUNCT '' _ 24 punct _ _ 24 said _ VERB VBD _ 0 root _ _ 25 Elizabeth _ PROPN NNP _ 26 compound _ _ 26 Hambrecht _ PROPN NNP _ 24 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 regional _ ADJ JJ _ 30 amod _ _ 30 analyst _ NOUN NN _ 26 appos _ _ 31 with _ ADP IN _ 38 case _ _ 32 Baring _ PROPN NNP _ 38 compound _ _ 33 Securities _ PROPN NNP _ 38 compound _ _ 34 -LRB- _ PUNCT -LRB- _ 36 punct _ _ 35 Hong _ PROPN NNP _ 36 compound _ _ 36 Kong _ PROPN NNP _ 38 appos _ _ 37 -RRB- _ PUNCT -RRB- _ 36 punct _ _ 38 Ltd _ PROPN NNP _ 30 nmod _ _ 39 . _ PUNCT . _ 24 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 pointed _ VERB VBD _ 0 root _ _ 3 out _ ADP RP _ 2 compound:prt _ _ 4 that _ SCONJ IN _ 17 mark _ _ 5 even _ ADV RB _ 11 advmod _ _ 6 after _ ADP IN _ 11 case _ _ 7 Monday _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 10 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 11 amod _ _ 11 decline _ NOUN NN _ 17 nmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 the _ DET DT _ 16 det _ _ 14 Straits _ PROPN NNP _ 16 compound _ _ 15 Times _ PROPN NNP _ 16 compound _ _ 16 index _ NOUN NN _ 17 nsubj _ _ 17 is _ VERB VBZ _ 2 ccomp _ _ 18 up _ ADV RB _ 17 advmod _ _ 19 24 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 nmod:npmod _ _ 21 this _ DET DT _ 22 det _ _ 22 year _ NOUN NN _ 17 nmod:tmod _ _ 23 , _ PUNCT , _ 2 punct _ _ 24 so _ SCONJ IN _ 30 mark _ _ 25 investors _ NOUN NNS _ 30 nsubj _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 bailed _ VERB VBD _ 25 acl:relcl _ _ 28 out _ ADP RP _ 27 compound:prt _ _ 29 generally _ ADV RB _ 30 advmod _ _ 30 did _ VERB VBD _ 2 advcl _ _ 31 so _ ADV RB _ 30 advmod _ _ 32 profitably _ ADV RB _ 30 advmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Similarly _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 Kuala _ PROPN NNP _ 4 compound _ _ 4 Lumpur _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 composite _ ADJ JJ _ 7 amod _ _ 7 index _ NOUN NN _ 9 nsubj _ _ 8 yesterday _ NOUN NN _ 9 nmod:tmod _ _ 9 ended _ VERB VBD _ 0 root _ _ 10 27.5 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 above _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 1988 _ NUM CD _ 15 nummod _ _ 15 close _ NOUN NN _ 11 nmod _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 Hong _ PROPN NNP _ 3 compound _ _ 3 Kong _ PROPN NNP _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 Hang _ PROPN NNP _ 8 compound _ _ 7 Seng _ PROPN NNP _ 8 compound _ _ 8 Index _ PROPN NNP _ 9 nsubj _ _ 9 fell _ VERB VBD _ 0 root _ _ 10 180.60 _ NUM CD _ 9 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 finish _ VERB VB _ 9 advcl _ _ 13 at _ ADP IN _ 14 case _ _ 14 2601.70 _ NUM CD _ 12 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Trading _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 heavy _ ADJ JJ _ 0 root _ _ 4 at _ ADP IN _ 8 case _ _ 5 about _ ADV IN _ 7 advmod _ _ 6 one _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 compared _ VERB VBN _ 13 case _ _ 11 with _ ADP IN _ 13 case _ _ 12 473.9 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 8 nmod _ _ 14 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 session _ NOUN NN _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 orderly _ ADJ JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 in _ ADP IN _ 8 case _ _ 8 contrast _ NOUN NN _ 5 nmod _ _ 9 to _ ADP TO _ 14 case _ _ 10 the _ DET DT _ 11 det _ _ 11 market _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 four-day _ ADJ JJ _ 14 amod _ _ 14 closure _ NOUN NN _ 8 nmod _ _ 15 after _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 1987 _ NUM CD _ 18 nummod _ _ 18 crash _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Richard _ PROPN NNP _ 2 compound _ _ 2 Chenevix-Trench _ PROPN NNP _ 15 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 director _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 13 case _ _ 7 Hong _ PROPN NNP _ 8 amod _ _ 8 Kong-based _ ADJ JJ _ 13 amod _ _ 9 Baring _ PROPN NNP _ 13 compound _ _ 10 International _ PROPN NNP _ 13 compound _ _ 11 Fund _ PROPN NNP _ 13 compound _ _ 12 Managers _ PROPN NNPS _ 13 compound _ _ 13 Ltd. _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 the _ DET DT _ 17 det _ _ 17 market _ NOUN NN _ 21 nsubj _ _ 18 probably _ ADV RB _ 21 advmod _ _ 19 has _ AUX VBZ _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 hit _ VERB VBN _ 15 ccomp _ _ 22 bottom _ NOUN NN _ 21 dobj _ _ 23 yet _ ADV RB _ 21 advmod _ _ 24 but _ CONJ CC _ 21 cc _ _ 25 is _ VERB VBZ _ 26 cop _ _ 26 close _ ADJ RB _ 21 conj _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 32 punct _ _ 2 If _ SCONJ IN _ 7 mark _ _ 3 New _ PROPN NNP _ 4 compound _ _ 4 York _ PROPN NNP _ 7 nsubj _ _ 5 does _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 collapse _ VERB NN _ 10 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 I _ PRON PRP _ 10 nsubj _ _ 10 see _ VERB VBP _ 32 ccomp _ _ 11 maybe _ ADV RB _ 13 advmod _ _ 12 another _ DET DT _ 13 advmod _ _ 13 5 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 10 dobj _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 downside _ NOUN NN _ 10 nmod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 not _ PART RB _ 20 neg _ _ 20 counting _ VERB VBG _ 10 dep _ _ 21 the _ DET DT _ 22 det _ _ 22 risk _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 bad _ ADJ JJ _ 25 amod _ _ 25 news _ NOUN NN _ 22 nmod _ _ 26 out _ ADP IN _ 28 case _ _ 27 of _ ADP IN _ 28 case _ _ 28 China _ PROPN NNP _ 25 nmod _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 '' _ PUNCT '' _ 32 punct _ _ 31 he _ PRON PRP _ 32 nsubj _ _ 32 said _ VERB VBD _ 0 root _ _ 33 . _ PUNCT . _ 32 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Australia _ PROPN NNP _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 Sydney _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 All _ DET DT _ 8 det _ _ 7 Ordinaries _ PROPN NNP _ 8 compound _ _ 8 index _ NOUN NN _ 9 nsubj _ _ 9 closed _ VERB VBD _ 0 root _ _ 10 at _ ADP IN _ 11 case _ _ 11 1601.5 _ NUM CD _ 9 nmod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 down _ ADV RB _ 9 advmod _ _ 14 8.1 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 nmod:npmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 biggest _ ADJ JJS _ 19 amod _ _ 19 drop _ NOUN NN _ 9 nmod:npmod _ _ 20 since _ ADP IN _ 21 case _ _ 21 October _ PROPN NNP _ 19 nmod _ _ 22 1987 _ NUM CD _ 21 nummod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 volume _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 only _ ADV RB _ 3 advmod _ _ 5 to _ ADP TO _ 8 case _ _ 6 162 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 3 nmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 143 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 3 nmod _ _ 12 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Nestor _ PROPN NNP _ 2 compound _ _ 2 Hinzack _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 an _ DET DT _ 5 det _ _ 5 analyst _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 14 case _ _ 7 brokerage _ NOUN NN _ 14 compound _ _ 8 firm _ NOUN NN _ 14 compound _ _ 9 Burdett _ PROPN NNP _ 14 compound _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Buckeridge _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Young _ PROPN NNP _ 9 conj _ _ 14 Ltd. _ PROPN NNP _ 5 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 described _ VERB VBD _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 performance _ NOUN NN _ 16 dobj _ _ 21 as _ ADP IN _ 23 case _ _ 22 `` _ PUNCT `` _ 23 punct _ _ 23 sheep-like _ ADJ JJ _ 16 advcl _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 as _ SCONJ IN _ 27 mark _ _ 26 investors _ NOUN NNS _ 27 nsubj _ _ 27 fled _ VERB VBD _ 16 advcl _ _ 28 to _ ADP TO _ 31 case _ _ 29 bluechip _ ADJ NN _ 31 amod _ _ 30 Australian _ ADJ JJ _ 31 amod _ _ 31 stocks _ NOUN NNS _ 27 nmod _ _ 32 and _ CONJ CC _ 27 cc _ _ 33 shunned _ VERB VBD _ 27 conj _ _ 34 entrepreneurial _ ADJ JJ _ 35 amod _ _ 35 companies _ NOUN NNS _ 33 dobj _ _ 36 they _ PRON PRP _ 37 nsubj _ _ 37 perceived _ VERB VBN _ 35 acl:relcl _ _ 38 as _ SCONJ IN _ 39 mark _ _ 39 having _ VERB VBG _ 37 advcl _ _ 40 any _ DET DT _ 42 det _ _ 41 takeover _ NOUN NN _ 42 compound _ _ 42 premium _ NOUN NN _ 43 nsubj _ _ 43 built _ VERB VBN _ 39 ccomp _ _ 44 into _ ADP IN _ 46 case _ _ 45 the _ DET DT _ 46 det _ _ 46 price _ NOUN NN _ 43 nmod _ _ 47 . _ PUNCT . _ 16 punct _ _ 1 London _ PROPN NNP _ 7 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Financial _ PROPN NNP _ 7 compound _ _ 4 Times-Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 100-share _ ADJ JJ _ 7 amod _ _ 7 index _ NOUN NN _ 16 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 14 det _ _ 10 most _ ADV RBS _ 11 advmod _ _ 11 closely _ ADV RB _ 12 advmod _ _ 12 watched _ VERB VBN _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 barometer _ NOUN NN _ 7 appos _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 ended _ VERB VBN _ 0 root _ _ 17 at _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 intraday _ ADJ NN _ 20 amod _ _ 20 high _ NOUN JJ _ 16 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 2163.4 _ NUM CD _ 20 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 down _ ADV RB _ 16 advmod _ _ 25 70.5 _ NUM CD _ 24 nmod:npmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 or _ CONJ CC _ 25 cc _ _ 28 3.2 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 25 conj _ _ 30 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 low _ ADJ JJ _ 12 nmod _ _ 4 , _ PUNCT , _ 12 punct _ _ 5 shortly _ ADV RB _ 9 advmod _ _ 6 before _ SCONJ IN _ 9 mark _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 9 nsubj _ _ 9 opened _ VERB VBD _ 12 advcl _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 was _ VERB VBD _ 0 root _ _ 13 off _ ADJ RB _ 12 advmod _ _ 14 more _ ADV JJR _ 16 advmod _ _ 15 than _ ADP IN _ 14 mwe _ _ 16 130 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 13 dep _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Financial _ PROPN NNP _ 5 compound _ _ 3 Times _ PROPN NNP _ 5 compound _ _ 4 30-share _ ADJ JJ _ 5 amod _ _ 5 index _ NOUN NN _ 6 nsubj _ _ 6 closed _ VERB VBD _ 0 root _ _ 7 79.3 _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 9 nmod:npmod _ _ 9 lower _ ADV JJR _ 6 advmod _ _ 10 at _ ADP IN _ 11 case _ _ 11 1738.7 _ NUM CD _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Volume _ NOUN NN _ 4 nsubj _ _ 2 more _ ADV JJR _ 4 advmod _ _ 3 than _ ADP IN _ 2 case _ _ 4 doubled _ VERB VBD _ 0 root _ _ 5 to _ ADP TO _ 8 case _ _ 6 959.3 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 4 nmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 457.7 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 4 nmod _ _ 12 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Prices _ NOUN NNS _ 7 nsubj _ _ 2 on _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 Frankfurt _ PROPN NNP _ 6 compound _ _ 5 Stock _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 1 nmod _ _ 7 tumbled _ VERB VBD _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 heavy _ ADJ JJ _ 10 amod _ _ 10 trading _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 decline _ NOUN NN _ 24 nsubj _ _ 3 in _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 German _ ADJ NNP _ 7 amod _ _ 6 Stock _ PROPN NNP _ 7 compound _ _ 7 Index _ PROPN NNP _ 2 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 203.56 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 2 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 or _ CONJ CC _ 10 cc _ _ 13 12.8 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 to _ ADP TO _ 17 case _ _ 17 1385.72 _ NUM CD _ 2 nmod _ _ 18 was _ VERB VBD _ 24 cop _ _ 19 the _ DET DT _ 21 det _ _ 20 Frankfurt _ PROPN NNP _ 21 compound _ _ 21 market _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 steepest _ ADJ JJS _ 24 amod _ _ 24 fall _ NOUN NN _ 0 root _ _ 25 ever _ ADV RB _ 24 advmod _ _ 26 . _ PUNCT . _ 24 punct _ _ 1 Retail _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 3 nsubj _ _ 3 dumped _ VERB VBD _ 0 root _ _ 4 holdings _ NOUN NNS _ 3 dobj _ _ 5 on _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 massive _ ADJ JJ _ 8 amod _ _ 8 scale _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 pushing _ VERB VBG _ 3 advcl _ _ 11 some _ DET DT _ 13 det _ _ 12 blue-chip _ ADJ JJ _ 13 amod _ _ 13 shares _ NOUN NNS _ 10 dobj _ _ 14 down _ ADV RB _ 10 advmod _ _ 15 as _ ADV RB _ 18 advmod _ _ 16 much _ ADJ JJ _ 18 advmod _ _ 17 as _ ADP IN _ 18 advmod _ _ 18 20 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 14 nmod:npmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 cited _ VERB VBD _ 0 root _ _ 3 memories _ NOUN NNS _ 2 dobj _ _ 4 of _ ADP IN _ 6 case _ _ 5 two _ NUM CD _ 6 nummod _ _ 6 years _ NOUN NNS _ 3 nmod _ _ 7 ago _ ADV RB _ 6 advmod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 when _ ADV WRB _ 13 advmod _ _ 10 many _ ADJ JJ _ 12 amod _ _ 11 small _ ADJ JJ _ 12 amod _ _ 12 investors _ NOUN NNS _ 13 nsubj _ _ 13 held _ VERB VBN _ 6 acl:relcl _ _ 14 on _ ADP IN _ 17 case _ _ 15 to _ ADP TO _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 shares _ NOUN NNS _ 13 nmod _ _ 18 after _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 October _ PROPN NNP _ 21 compound _ _ 21 crash _ NOUN NN _ 13 nmod _ _ 22 but _ CONJ CC _ 13 cc _ _ 23 the _ DET DT _ 26 det _ _ 24 West _ ADJ JJ _ 25 amod _ _ 25 German _ ADJ JJ _ 26 amod _ _ 26 market _ NOUN NN _ 27 nsubj _ _ 27 continued _ VERB VBD _ 13 conj _ _ 28 to _ PART TO _ 29 mark _ _ 29 decline _ VERB VB _ 27 xcomp _ _ 30 steeply _ ADV RB _ 29 advmod _ _ 31 for _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 next _ ADJ JJ _ 35 amod _ _ 34 three _ NUM CD _ 35 nummod _ _ 35 months _ NOUN NNS _ 29 nmod _ _ 36 . _ PUNCT . _ 2 punct _ _ 1 Here _ ADV RB _ 4 nsubj _ _ 2 are _ VERB VBP _ 4 cop _ _ 3 price _ NOUN NN _ 4 compound _ _ 4 trends _ NOUN NNS _ 0 root _ _ 5 on _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 7 det _ _ 7 world _ NOUN NN _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 major _ ADJ JJ _ 11 amod _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 markets _ NOUN NNS _ 4 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 as _ SCONJ IN _ 14 mark _ _ 14 calculated _ VERB VBN _ 4 dep _ _ 15 by _ ADP IN _ 20 case _ _ 16 Morgan _ PROPN NNP _ 20 compound _ _ 17 Stanley _ PROPN NNP _ 20 compound _ _ 18 Capital _ PROPN NNP _ 20 compound _ _ 19 International _ PROPN NNP _ 20 compound _ _ 20 Perspective _ PROPN NNP _ 14 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Geneva _ PROPN NNP _ 20 appos _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 make _ VERB VB _ 10 advcl _ _ 3 them _ PRON PRP _ 5 nsubj _ _ 4 directly _ ADV RB _ 5 advmod _ _ 5 comparable _ ADJ JJ _ 2 xcomp _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 each _ DET DT _ 8 det _ _ 8 index _ NOUN NN _ 10 nsubjpass _ _ 9 is _ AUX VBZ _ 10 auxpass _ _ 10 based _ VERB VBN _ 0 root _ _ 11 on _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 close _ NOUN NN _ 16 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 1969 _ NUM CD _ 13 nmod _ _ 16 equaling _ VERB VBG _ 10 advcl _ _ 17 100 _ NUM CD _ 16 dobj _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 percentage _ NOUN NN _ 3 compound _ _ 3 change _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 since _ ADP IN _ 6 case _ _ 6 year-end _ NOUN NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Frank _ PROPN NNP _ 3 compound _ _ 2 Lloyd _ PROPN NNP _ 3 compound _ _ 3 Wright _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 reported _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 8 mark _ _ 7 have _ AUX VB _ 8 aux _ _ 8 said _ VERB VBN _ 5 xcomp _ _ 9 once _ ADV RB _ 8 advmod _ _ 10 that _ SCONJ IN _ 23 mark _ _ 11 if _ SCONJ IN _ 13 mark _ _ 12 you _ PRON PRP _ 13 nsubj _ _ 13 tipped _ VERB VBD _ 23 advcl _ _ 14 the _ DET DT _ 15 det _ _ 15 world _ NOUN NN _ 13 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 its _ PRON PRP$ _ 18 nmod:poss _ _ 18 side _ NOUN NN _ 13 nmod _ _ 19 , _ PUNCT , _ 23 punct _ _ 20 everything _ NOUN NN _ 23 nsubj _ _ 21 loose _ ADJ RB _ 20 amod _ _ 22 would _ AUX MD _ 23 aux _ _ 23 end _ VERB VB _ 8 ccomp _ _ 24 up _ ADP RP _ 23 compound:prt _ _ 25 in _ ADP IN _ 26 case _ _ 26 California _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 We _ PRON PRP _ 4 nsubj _ _ 2 've _ AUX VBP _ 4 aux _ _ 3 always _ ADV RB _ 4 advmod _ _ 4 thought _ VERB VBN _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Wright _ PROPN NNP _ 8 nsubj _ _ 8 underestimated _ VERB VBD _ 4 ccomp _ _ 9 California _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 vitality _ NOUN NN _ 8 dobj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 but _ CONJ CC _ 4 cc _ _ 14 maybe _ ADV RB _ 21 advmod _ _ 15 the _ DET DT _ 16 det _ _ 16 state _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 la-la _ ADJ JJ _ 19 amod _ _ 19 factions _ NOUN NNS _ 21 nsubj _ _ 20 are _ AUX VBP _ 21 aux _ _ 21 starting _ VERB VBG _ 4 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 overwhelm _ VERB VB _ 21 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 forces _ NOUN NNS _ 23 dobj _ _ 26 that _ PRON WDT _ 27 nsubj _ _ 27 made _ VERB VBD _ 25 acl:relcl _ _ 28 it _ PRON PRP _ 32 nsubj _ _ 29 such _ ADJ JJ _ 32 amod _ _ 30 a _ DET DT _ 32 det _ _ 31 significant _ ADJ JJ _ 32 amod _ _ 32 place _ NOUN NN _ 27 xcomp _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 What _ PRON WP _ 0 root _ _ 2 else _ ADV RB _ 1 advmod _ _ 3 is _ VERB VBZ _ 1 cop _ _ 4 one _ PRON CD _ 1 nsubj _ _ 5 to _ PART TO _ 6 mark _ _ 6 make _ VERB VB _ 1 advcl _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 whacky _ ADJ JJ _ 11 amod _ _ 10 save-the-earth _ ADJ JJ _ 11 amod _ _ 11 initiative _ NOUN NN _ 6 nmod _ _ 12 just _ ADV RB _ 13 advmod _ _ 13 proposed _ VERB VBN _ 11 dep _ _ 14 by _ ADP IN _ 18 case _ _ 15 several _ ADJ JJ _ 18 amod _ _ 16 major _ ADJ JJ _ 18 amod _ _ 17 environmental _ ADJ JJ _ 18 amod _ _ 18 groups _ NOUN NNS _ 13 nmod _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 organized _ VERB VBN _ 13 conj _ _ 21 by _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 23 det _ _ 23 state _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 attorney _ NOUN NN _ 26 compound _ _ 26 general _ NOUN NN _ 20 nmod _ _ 27 ? _ PUNCT . _ 1 punct _ _ 1 If _ SCONJ IN _ 2 mark _ _ 2 passed _ VERB VBN _ 12 advcl _ _ 3 by _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 voters _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 10 det _ _ 8 recently _ ADV RB _ 9 advmod _ _ 9 announced _ VERB VBN _ 10 amod _ _ 10 initiative _ NOUN NN _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 phase _ VERB VB _ 0 root _ _ 13 out _ ADP RP _ 12 compound:prt _ _ 14 major _ ADJ JJ _ 15 amod _ _ 15 pesticides _ NOUN NNS _ 12 dobj _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 reduce _ VERB VB _ 12 conj _ _ 18 carbon _ NOUN NN _ 20 compound _ _ 19 dioxide _ NOUN NN _ 20 compound _ _ 20 emissions _ NOUN NNS _ 17 dobj _ _ 21 by _ ADP IN _ 23 case _ _ 22 40 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 17 nmod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 ban _ VERB VB _ 12 conj _ _ 26 new _ ADJ JJ _ 28 amod _ _ 27 offshore _ ADJ JJ _ 28 amod _ _ 28 drilling _ NOUN NN _ 25 dobj _ _ 29 , _ PUNCT , _ 12 punct _ _ 30 ban _ VERB NN _ 12 conj _ _ 31 chemicals _ NOUN NNS _ 30 dobj _ _ 32 thought _ VERB VBD _ 31 acl _ _ 33 to _ PART TO _ 34 mark _ _ 34 deplete _ VERB VB _ 32 xcomp _ _ 35 the _ DET DT _ 37 det _ _ 36 ozone _ NOUN NN _ 37 compound _ _ 37 layer _ NOUN NN _ 34 dobj _ _ 38 , _ PUNCT , _ 12 punct _ _ 39 and _ CONJ CC _ 12 cc _ _ 40 create _ VERB VB _ 12 conj _ _ 41 a _ DET DT _ 45 det _ _ 42 new _ ADJ JJ _ 45 amod _ _ 43 state _ NOUN NN _ 45 compound _ _ 44 environmental _ ADJ JJ _ 45 amod _ _ 45 officer _ NOUN NN _ 40 dobj _ _ 46 armed _ VERB VBN _ 45 acl _ _ 47 with _ ADP IN _ 52 case _ _ 48 a _ DET DT _ 52 det _ _ 49 $ _ SYM $ _ 52 amod _ _ 50 40 _ NUM CD _ 51 compound _ _ 51 million _ NUM CD _ 49 nummod _ _ 52 budget _ NOUN NN _ 46 nmod _ _ 53 to _ PART TO _ 54 mark _ _ 54 sue _ VERB VB _ 52 acl _ _ 55 any _ DET DT _ 56 det _ _ 56 firm _ NOUN NN _ 54 dobj _ _ 57 or _ CONJ CC _ 56 cc _ _ 58 agency _ NOUN NN _ 56 conj _ _ 59 he _ PRON PRP _ 60 nsubj _ _ 60 thinks _ VERB VBZ _ 56 acl:relcl _ _ 61 is _ AUX VBZ _ 64 aux _ _ 62 being _ VERB VBG _ 64 cop _ _ 63 too _ ADV RB _ 64 advmod _ _ 64 dirty _ ADJ JJ _ 60 ccomp _ _ 65 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 based _ VERB VBN _ 0 root _ _ 5 largely _ ADV RB _ 4 advmod _ _ 6 on _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 wish-lists _ NOUN NNS _ 4 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 green _ ADJ JJ _ 12 amod _ _ 12 lobby _ NOUN NN _ 8 nmod _ _ 13 : _ PUNCT : _ 12 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 Sierra _ PROPN NNP _ 16 compound _ _ 16 Club _ PROPN NNP _ 12 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 League _ PROPN NNP _ 16 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 Conservation _ PROPN NNP _ 22 compound _ _ 22 Voters _ PROPN NNPS _ 19 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 the _ DET DT _ 28 det _ _ 25 Natural _ PROPN NNP _ 28 compound _ _ 26 Resources _ PROPN NNPS _ 28 compound _ _ 27 Defense _ PROPN NNP _ 28 compound _ _ 28 Council _ PROPN NNP _ 16 conj _ _ 29 , _ PUNCT , _ 16 punct _ _ 30 the _ DET DT _ 33 det _ _ 31 National _ PROPN NNP _ 33 compound _ _ 32 Toxics _ PROPN NNP _ 33 compound _ _ 33 Campaign _ PROPN NNP _ 16 conj _ _ 34 and _ CONJ CC _ 16 cc _ _ 35 the _ DET DT _ 36 det _ _ 36 Citizens _ PROPN NNPS _ 16 conj _ _ 37 for _ ADP IN _ 40 case _ _ 38 a _ DET DT _ 40 det _ _ 39 Better _ PROPN NNP _ 40 compound _ _ 40 Environment _ PROPN NNP _ 36 nmod _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 Interestingly _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 Environmental _ PROPN NNP _ 6 compound _ _ 5 Defense _ PROPN NNP _ 6 compound _ _ 6 Fund _ PROPN NNP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 having _ VERB VBG _ 0 root _ _ 9 nothing _ NOUN NN _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 do _ VERB VB _ 9 acl _ _ 12 with _ ADP IN _ 14 case _ _ 13 this _ DET DT _ 14 det _ _ 14 one _ NUM CD _ 11 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 only _ ADJ RB _ 3 cc:preconj _ _ 3 Californians _ NOUN NNPS _ 8 nsubj _ _ 4 but _ CONJ CC _ 3 cc _ _ 5 all _ DET DT _ 6 det _ _ 6 Americans _ NOUN NNPS _ 3 conj _ _ 7 would _ AUX MD _ 8 aux _ _ 8 pay _ VERB VB _ 0 root _ _ 9 if _ SCONJ IN _ 12 mark _ _ 10 this _ DET DT _ 11 det _ _ 11 thing _ NOUN NN _ 12 nsubj _ _ 12 passed _ VERB VBD _ 8 advcl _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 3 nsubj _ _ 3 bars _ VERB NNS _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 sale _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 any _ DET DT _ 8 det _ _ 8 crops _ NOUN NNS _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 California _ PROPN NNP _ 5 nmod _ _ 11 that _ PRON WDT _ 14 nsubj _ _ 12 do _ AUX VBP _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 meet _ VERB VB _ 5 acl:relcl _ _ 15 the _ DET DT _ 16 det _ _ 16 initiative _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 standards _ NOUN NNS _ 14 dobj _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Kansas _ PROPN NNP _ 3 compound _ _ 2 wheat _ NOUN NN _ 3 compound _ _ 3 farmers _ NOUN NNS _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Florida _ PROPN NNP _ 7 compound _ _ 6 fruit _ NOUN NN _ 7 compound _ _ 7 growers _ NOUN NNS _ 3 conj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 have _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 adjust _ VERB VB _ 9 xcomp _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 give _ VERB VB _ 11 conj _ _ 14 up _ ADP RP _ 13 compound:prt _ _ 15 the _ DET DT _ 17 det _ _ 16 California _ PROPN NNP _ 17 compound _ _ 17 market _ NOUN NN _ 13 dobj _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 words _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 California _ PROPN NNP _ 7 nsubj _ _ 6 is _ AUX VBZ _ 7 aux _ _ 7 presuming _ VERB VBG _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 take _ VERB VB _ 7 xcomp _ _ 10 control _ NOUN NN _ 9 dobj _ _ 11 of _ ADP IN _ 16 case _ _ 12 the _ DET DT _ 13 det _ _ 13 nation _ NOUN NN _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 farm _ NOUN NN _ 16 compound _ _ 16 policy _ NOUN NN _ 10 nmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 As _ ADP IN _ 2 case _ _ 2 usual _ ADV JJ _ 9 advcl _ _ 3 the _ DET DT _ 5 det _ _ 4 green _ ADJ JJ _ 5 amod _ _ 5 lobby _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 proposal _ NOUN NN _ 9 nsubjpass _ _ 8 is _ AUX VBZ _ 9 auxpass _ _ 9 disconnected _ VERB VBN _ 0 root _ _ 10 from _ ADP IN _ 12 case _ _ 11 scientific _ ADJ JJ _ 12 amod _ _ 12 reality _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 the _ DET DT _ 4 det _ _ 3 greenhouse-effect _ ADJ JJ _ 4 amod _ _ 4 provision _ NOUN NN _ 1 dobj _ _ 5 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 proposed _ VERB VBN _ 3 amod _ _ 3 initiative _ NOUN NN _ 5 nsubj _ _ 4 would _ AUX MD _ 5 aux _ _ 5 mandate _ VERB VB _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 reduction _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 carbon _ NOUN NN _ 10 compound _ _ 10 dioxide _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 40 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 7 nmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 if _ SCONJ IN _ 4 mark _ _ 3 one _ PRON CD _ 4 nsubj _ _ 4 buys _ VERB VBZ _ 13 advcl _ _ 5 into _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 whole _ ADJ JJ _ 9 amod _ _ 8 greenhouse _ NOUN NN _ 9 compound _ _ 9 theory _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 is _ VERB VBZ _ 13 cop _ _ 13 inconceivable _ ADJ JJ _ 0 root _ _ 14 that _ SCONJ IN _ 21 mark _ _ 15 reductions _ NOUN NNS _ 21 nsubj _ _ 16 in _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 single _ ADJ JJ _ 19 amod _ _ 19 state _ NOUN NN _ 15 nmod _ _ 20 could _ AUX MD _ 21 aux _ _ 21 have _ VERB VB _ 13 ccomp _ _ 22 any _ DET DT _ 23 det _ _ 23 impact _ NOUN NN _ 21 dobj _ _ 24 on _ SCONJ IN _ 27 mark _ _ 25 what _ PRON WP _ 27 nsubjpass _ _ 26 is _ AUX VBZ _ 27 auxpass _ _ 27 billed _ VERB VBN _ 23 acl _ _ 28 as _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 global _ ADJ JJ _ 31 amod _ _ 31 problem _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 19 cc _ _ 2 if _ SCONJ IN _ 7 mark _ _ 3 rational _ ADJ JJ _ 4 amod _ _ 4 science _ NOUN NN _ 7 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 economics _ NOUN NNS _ 4 conj _ _ 7 have _ VERB VBP _ 19 advcl _ _ 8 nothing _ NOUN NN _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 do _ VERB VB _ 8 acl _ _ 11 with _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 new _ ADJ JJ _ 15 amod _ _ 14 environment _ NOUN NN _ 15 compound _ _ 15 initiative _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 what _ PRON WP _ 19 nsubj _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 going _ VERB VBG _ 0 root _ _ 20 on _ ADP IN _ 19 compound:prt _ _ 21 ? _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 first _ ADJ JJ _ 3 amod _ _ 3 place _ NOUN NN _ 12 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 look _ VERB VB _ 3 acl _ _ 6 under _ ADP IN _ 8 case _ _ 7 these _ DET DT _ 8 det _ _ 8 circumstances _ NOUN NNS _ 12 nmod _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 ways _ NOUN NNS _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 which _ PRON WDT _ 19 nmod _ _ 15 the _ DET DT _ 16 det _ _ 16 sponsors _ NOUN NNS _ 19 nsubj _ _ 17 themselves _ PRON PRP _ 16 nmod:npmod _ _ 18 will _ AUX MD _ 19 aux _ _ 19 benefit _ VERB VB _ 12 acl:relcl _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 key _ NOUN NN _ 6 nsubj _ _ 3 here _ ADV RB _ 6 advmod _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 ambition _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 14 case _ _ 8 state _ NOUN NN _ 14 compound _ _ 9 Attorney _ PROPN NNP _ 14 compound _ _ 10 General _ PROPN NNP _ 14 compound _ _ 11 John _ PROPN NNP _ 14 compound _ _ 12 Van _ PROPN NNP _ 14 compound _ _ 13 de _ PROPN IN _ 14 compound _ _ 14 Kamp _ PROPN NNP _ 6 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 running _ VERB VBG _ 0 root _ _ 4 for _ ADP IN _ 5 case _ _ 5 governor _ NOUN NN _ 3 nmod _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 4 compound _ _ 2 Van _ PROPN NNP _ 4 compound _ _ 3 de _ PROPN IN _ 4 compound _ _ 4 Kamp _ PROPN NNP _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 one _ NUM NN _ 0 root _ _ 8 who _ PRON WP _ 9 nsubj _ _ 9 collected _ VERB VBD _ 7 acl:relcl _ _ 10 the _ DET DT _ 11 det _ _ 11 plans _ NOUN NNS _ 9 dobj _ _ 12 from _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 various _ ADJ JJ _ 17 amod _ _ 15 radical _ ADJ JJ _ 17 amod _ _ 16 environmental _ ADJ JJ _ 17 amod _ _ 17 groups _ NOUN NNS _ 9 nmod _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 cobbled _ VERB VBD _ 9 conj _ _ 20 them _ PRON PRP _ 19 dobj _ _ 21 into _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 single _ ADJ JJ _ 25 amod _ _ 24 unwieldy _ ADJ JJ _ 25 amod _ _ 25 initiative _ NOUN NN _ 19 nmod _ _ 26 to _ PART TO _ 28 mark _ _ 27 be _ AUX VB _ 28 auxpass _ _ 28 placed _ VERB VBN _ 25 acl _ _ 29 on _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 ballot _ NOUN NN _ 28 nmod _ _ 32 for _ ADP IN _ 33 case _ _ 33 election _ NOUN NN _ 28 nmod _ _ 34 on _ ADP IN _ 35 case _ _ 35 Nov. _ PROPN NNP _ 28 nmod _ _ 36 6 _ NUM CD _ 35 nummod _ _ 37 , _ PUNCT , _ 35 punct _ _ 38 1990 _ NUM CD _ 35 nummod _ _ 39 . _ PUNCT . _ 7 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 the _ DET DT _ 5 det _ _ 5 day _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 gubernatorial _ ADJ JJ _ 9 amod _ _ 9 election _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 7 mark _ _ 5 have _ AUX VB _ 7 aux _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 crafted _ VERB VBN _ 3 xcomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 include _ VERB VB _ 7 xcomp _ _ 10 all _ DET PDT _ 13 det:predet _ _ 11 the _ DET DT _ 13 det _ _ 12 hot _ ADJ JJ _ 13 amod _ _ 13 issues _ NOUN NNS _ 9 dobj _ _ 14 that _ PRON WDT _ 15 nsubj _ _ 15 set _ VERB VBD _ 13 acl:relcl _ _ 16 off _ ADP RP _ 15 compound:prt _ _ 17 the _ DET DT _ 20 det _ _ 18 wealthy _ ADJ JJ _ 20 amod _ _ 19 Hollywood _ PROPN NNP _ 20 compound _ _ 20 weepers _ NOUN NNS _ 15 dobj _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 donate _ VERB VBP _ 20 acl:relcl _ _ 23 money _ NOUN NN _ 22 dobj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 allows _ VERB VBZ _ 0 root _ _ 4 Mr. _ PROPN NNP _ 7 compound _ _ 5 Van _ PROPN NNP _ 7 compound _ _ 6 de _ PROPN IN _ 7 compound _ _ 7 Kamp _ PROPN NNP _ 3 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 get _ VERB VB _ 3 xcomp _ _ 10 around _ ADP IN _ 13 dep _ _ 11 campaign _ NOUN NN _ 13 compound _ _ 12 spending _ NOUN NN _ 13 compound _ _ 13 limits _ NOUN NNS _ 9 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 can _ AUX MD _ 3 aux _ _ 3 spend _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 legal _ ADJ JJ _ 6 amod _ _ 6 maximum _ NOUN NN _ 3 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 his _ PRON PRP$ _ 9 nmod:poss _ _ 9 campaign _ NOUN NN _ 6 nmod _ _ 10 ; _ PUNCT : _ 3 punct _ _ 11 all _ DET PDT _ 13 det:predet _ _ 12 the _ DET DT _ 13 det _ _ 13 spending _ NOUN NN _ 28 nsubj _ _ 14 for _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 19 det _ _ 16 Van _ PROPN NNP _ 19 compound _ _ 17 de _ PROPN IN _ 19 compound _ _ 18 Kamp _ PROPN NNP _ 19 compound _ _ 19 initiative _ NOUN NN _ 13 nmod _ _ 20 -LRB- _ PUNCT -LRB- _ 24 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 which _ PRON WDT _ 24 nmod _ _ 23 there _ PRON EX _ 24 expl _ _ 24 are _ VERB VBP _ 19 dep _ _ 25 no _ DET DT _ 26 neg _ _ 26 limits _ NOUN NNS _ 24 nsubj _ _ 27 -RRB- _ PUNCT -RRB- _ 24 punct _ _ 28 is _ VERB VBZ _ 3 parataxis _ _ 29 gravy _ NOUN NN _ 28 dep _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 5 nsubjpass _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 being _ AUX VBG _ 5 auxpass _ _ 5 labeled _ VERB VBN _ 0 root _ _ 6 The _ DET DT _ 8 det _ _ 7 Big _ PROPN NNP _ 8 compound _ _ 8 Green _ PROPN NNP _ 5 xcomp _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 but _ CONJ CC _ 5 cc _ _ 11 maybe _ ADV RB _ 15 advmod _ _ 12 it _ PRON PRP _ 15 nsubjpass _ _ 13 should _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 called _ VERB VBN _ 5 conj _ _ 16 The _ DET DT _ 18 det _ _ 17 Big _ PROPN JJ _ 18 compound _ _ 18 Greenback _ PROPN NN _ 15 xcomp _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 Republican _ ADJ JJ _ 4 amod _ _ 4 candidate _ NOUN NN _ 11 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Sen. _ PROPN NNP _ 8 compound _ _ 7 Pete _ PROPN NNP _ 8 compound _ _ 8 Wilson _ PROPN NNP _ 4 appos _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 playing _ VERB VBG _ 0 root _ _ 12 the _ DET DT _ 15 det _ _ 13 initiative _ NOUN NN _ 15 compound _ _ 14 fundraising _ VERB NN _ 15 amod _ _ 15 game _ NOUN NN _ 11 dobj _ _ 16 too _ ADV RB _ 11 advmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 sponsoring _ VERB VBG _ 11 advcl _ _ 19 his _ PRON PRP$ _ 22 nmod:poss _ _ 20 own _ ADJ JJ _ 22 amod _ _ 21 crime _ NOUN NN _ 22 compound _ _ 22 initiative _ NOUN NN _ 18 dobj _ _ 23 . _ PUNCT . _ 11 punct _ _ 24 -RRB- _ PUNCT -RRB- _ 11 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 possible _ ADJ JJ _ 19 advcl _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 the _ DET DT _ 9 det _ _ 7 Big _ PROPN NNP _ 9 compound _ _ 8 Green _ PROPN NNP _ 9 compound _ _ 9 initiative _ NOUN NN _ 12 nsubjpass _ _ 10 will _ AUX MD _ 12 aux _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 ruled _ VERB VBN _ 4 ccomp _ _ 13 unconstitutional _ ADJ JJ _ 12 xcomp _ _ 14 , _ PUNCT , _ 19 punct _ _ 15 it _ PRON PRP _ 19 nsubj _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 of _ ADP IN _ 19 advmod _ _ 18 course _ NOUN NN _ 17 mwe _ _ 19 conceivable _ ADJ JJ _ 0 root _ _ 20 that _ SCONJ IN _ 26 mark _ _ 21 in _ ADP IN _ 23 case _ _ 22 modern _ ADJ JJ _ 23 amod _ _ 23 California _ PROPN NNP _ 26 nmod _ _ 24 it _ PRON PRP _ 26 nsubj _ _ 25 could _ AUX MD _ 26 aux _ _ 26 slide _ VERB VB _ 19 ccomp _ _ 27 through _ ADV IN _ 26 advmod _ _ 28 . _ PUNCT . _ 19 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 the _ DET DT _ 4 det _ _ 4 state _ NOUN NN _ 0 root _ _ 5 that _ PRON WDT _ 7 nsubj _ _ 6 recently _ ADV RB _ 7 advmod _ _ 7 passed _ VERB VBD _ 4 acl:relcl _ _ 8 the _ DET DT _ 12 det _ _ 9 Prop. _ PROPN NNP _ 12 compound _ _ 10 65 _ NUM CD _ 12 nummod _ _ 11 anti-toxic _ ADJ JJ _ 12 amod _ _ 12 initiative _ NOUN NN _ 7 dobj _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 If _ SCONJ IN _ 7 mark _ _ 2 this _ DET DT _ 4 det _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 proposal _ NOUN NN _ 7 nsubj _ _ 5 ever _ ADV RB _ 7 advmod _ _ 6 does _ AUX VBZ _ 7 aux _ _ 7 become _ VERB VB _ 14 advcl _ _ 8 law _ NOUN NN _ 7 xcomp _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 green _ ADJ JJ _ 12 amod _ _ 12 lobby _ NOUN NN _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 benefit _ VERB VB _ 0 root _ _ 15 directly _ ADV RB _ 14 advmod _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 3 nsubj _ _ 3 creates _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 9 det _ _ 5 free _ ADJ JJ _ 6 amod _ _ 6 floating _ ADJ JJ _ 9 amod _ _ 7 state _ NOUN NN _ 9 compound _ _ 8 environmental _ ADJ JJ _ 9 amod _ _ 9 officer _ NOUN NN _ 3 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 sue _ VERB VB _ 9 acl _ _ 12 companies _ NOUN NNS _ 11 dobj _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 government _ NOUN NN _ 15 compound _ _ 15 agencies _ NOUN NNS _ 12 conj _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 do _ VERB VBP _ 12 acl:relcl _ _ 18 things _ NOUN NNS _ 17 dobj _ _ 19 he _ PRON PRP _ 22 nsubj _ _ 20 does _ AUX VBZ _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 like _ VERB VB _ 18 acl:relcl _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 means _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 NRDC _ PROPN NNP _ 11 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 such _ ADJ JJ _ 7 amod _ _ 7 groups _ NOUN NNS _ 4 conj _ _ 8 no _ ADV RB _ 9 neg _ _ 9 longer _ ADV RB _ 11 advmod _ _ 10 would _ AUX MD _ 11 aux _ _ 11 have _ VERB VB _ 2 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 spend _ VERB VB _ 11 xcomp _ _ 14 as _ ADP RB _ 16 amod _ _ 15 much _ ADJ JJ _ 16 amod _ _ 16 money _ NOUN NN _ 13 dobj _ _ 17 on _ ADP IN _ 18 case _ _ 18 litigation _ NOUN NN _ 13 nmod _ _ 19 ; _ PUNCT : _ 2 punct _ _ 20 taxpayers _ NOUN NNS _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 bear _ VERB VB _ 2 parataxis _ _ 23 the _ DET DT _ 24 det _ _ 24 cost _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 4 compound _ _ 2 Van _ PROPN NNP _ 4 compound _ _ 3 de _ PROPN IN _ 4 compound _ _ 4 Kamp _ PROPN NNP _ 10 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 his _ PRON PRP$ _ 7 nmod:poss _ _ 7 allies _ NOUN NNS _ 4 conj _ _ 8 may _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 aux _ _ 10 hoping _ VERB VBG _ 0 root _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 environment _ NOUN NN _ 17 nsubj _ _ 14 is _ VERB VBZ _ 17 cop _ _ 15 such _ ADJ JJ _ 17 amod _ _ 16 a _ DET DT _ 17 det _ _ 17 mom _ NOUN NN _ 10 ccomp _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 apple-pie _ NOUN JJ _ 20 compound _ _ 20 issue _ NOUN NN _ 17 conj _ _ 21 among _ ADP IN _ 23 case _ _ 22 certain _ ADJ JJ _ 23 amod _ _ 23 segments _ NOUN NNS _ 17 nmod _ _ 24 of _ ADP IN _ 27 case _ _ 25 California _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 population _ NOUN NN _ 23 nmod _ _ 28 now _ ADV RB _ 17 advmod _ _ 29 that _ SCONJ IN _ 39 mark _ _ 30 almost _ ADV RB _ 32 advmod _ _ 31 any _ DET DT _ 32 det _ _ 32 collection _ NOUN NN _ 39 nsubj _ _ 33 of _ ADP IN _ 37 case _ _ 34 anti-scientific _ ADJ JJ _ 37 amod _ _ 35 , _ PUNCT , _ 37 punct _ _ 36 anti-pocketbook _ ADJ JJ _ 37 amod _ _ 37 nonsense _ NOUN NN _ 32 nmod _ _ 38 can _ AUX MD _ 39 aux _ _ 39 pass _ VERB VB _ 17 ccomp _ _ 40 under _ ADP IN _ 42 case _ _ 41 its _ PRON PRP$ _ 42 nmod:poss _ _ 42 rubric _ NOUN NN _ 39 nmod _ _ 43 . _ PUNCT . _ 10 punct _ _ 1 Of _ ADP IN _ 11 advmod _ _ 2 course _ NOUN NN _ 1 mwe _ _ 3 the _ DET DT _ 4 det _ _ 4 state _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 liberals _ NOUN NNS _ 11 nsubj _ _ 7 are _ VERB VBP _ 11 cop _ _ 8 not _ PART RB _ 11 neg _ _ 9 yet _ ADV RB _ 11 advmod _ _ 10 a _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 0 root _ _ 12 unto _ ADP VBZ _ 13 case _ _ 13 themselves _ PRON PRP _ 11 nmod _ _ 14 . _ PUNCT . _ 11 punct _ _ 1 George _ PROPN NNP _ 2 compound _ _ 2 Bush _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 example _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 may _ AUX MD _ 8 aux _ _ 8 decide _ VERB VB _ 0 root _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 he _ PRON PRP _ 13 nsubj _ _ 11 does _ AUX VBZ _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 want _ VERB VB _ 8 ccomp _ _ 14 to _ PART TO _ 17 mark _ _ 15 be _ VERB VB _ 17 cop _ _ 16 the _ DET DT _ 17 det _ _ 17 President _ PROPN NNP _ 13 xcomp _ _ 18 who _ PRON WP _ 19 nsubj _ _ 19 lost _ VERB VBD _ 17 acl:relcl _ _ 20 control _ NOUN NN _ 19 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 interstate _ ADJ JJ _ 23 amod _ _ 23 commerce _ NOUN NN _ 20 nmod _ _ 24 to _ ADP TO _ 26 case _ _ 25 an _ DET DT _ 26 det _ _ 26 attorney _ NOUN NN _ 19 nmod _ _ 27 general _ ADJ NN _ 26 amod _ _ 28 from _ ADP IN _ 29 case _ _ 29 California _ PROPN NNP _ 26 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 14 cc _ _ 2 some _ DET DT _ 4 det _ _ 3 other _ ADJ JJ _ 4 amod _ _ 4 segments _ NOUN NNS _ 14 nsubj _ _ 5 of _ ADP IN _ 11 case _ _ 6 California _ PROPN NNP _ 11 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 political _ ADJ JJ _ 11 amod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 media _ NOUN NNS _ 8 conj _ _ 11 culture _ NOUN NN _ 4 nmod _ _ 12 may _ AUX MD _ 14 aux _ _ 13 yet _ ADV RB _ 14 advmod _ _ 14 start _ VERB VB _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 point _ VERB VB _ 14 xcomp _ _ 17 out _ ADP RP _ 16 compound:prt _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 initiative _ NOUN NN _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 impose _ VERB VB _ 16 ccomp _ _ 23 significant _ ADJ JJ _ 24 amod _ _ 24 costs _ NOUN NNS _ 22 dobj _ _ 25 on _ ADP IN _ 31 case _ _ 26 the _ DET DT _ 27 det _ _ 27 state _ NOUN NN _ 31 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 less _ ADV JJR _ 30 advmod _ _ 30 affluent _ ADJ JJ _ 31 amod _ _ 31 citizens _ NOUN NNS _ 22 nmod _ _ 32 in _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 form _ NOUN NN _ 22 nmod _ _ 35 of _ ADP IN _ 38 case _ _ 36 higher _ ADJ JJR _ 38 amod _ _ 37 food _ NOUN NN _ 38 compound _ _ 38 prices _ NOUN NNS _ 34 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 lost _ VERB VBD _ 41 amod _ _ 41 jobs _ NOUN NNS _ 38 conj _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 grandiose _ ADJ JJ _ 3 amod _ _ 3 initiative _ NOUN NN _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 help _ VERB VB _ 0 root _ _ 6 California _ PROPN NNP _ 7 nsubj _ _ 7 define _ VERB VB _ 5 ccomp _ _ 8 itself _ PRON PRP _ 7 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 future _ NOUN JJ _ 7 nmod _ _ 12 either _ CONJ CC _ 15 cc:preconj _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 state _ NOUN NN _ 7 nmod _ _ 16 still _ ADV RB _ 17 advmod _ _ 17 tethered _ VERB JJ _ 15 acl _ _ 18 to _ ADP TO _ 22 case _ _ 19 economic _ ADJ JJ _ 22 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 scientific _ ADJ JJ _ 19 conj _ _ 22 reality _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 or _ CONJ CC _ 15 cc _ _ 25 as _ ADP IN _ 26 case _ _ 26 one _ NUM CD _ 15 conj _ _ 27 being _ AUX VBG _ 28 auxpass _ _ 28 led _ VERB VBN _ 26 acl _ _ 29 to _ ADP TO _ 34 mark _ _ 30 wherever _ ADV WRB _ 34 advmod _ _ 31 its _ PRON PRP$ _ 33 nmod:poss _ _ 32 la-la _ ADJ JJ _ 33 amod _ _ 33 activists _ NOUN NNS _ 34 nsubj _ _ 34 want _ VERB VBP _ 28 advcl _ _ 35 to _ PART TO _ 36 mark _ _ 36 take _ VERB VB _ 34 xcomp _ _ 37 it _ PRON PRP _ 36 dobj _ _ 38 . _ PUNCT . _ 5 punct _ _ 1 First _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 there _ PRON EX _ 4 expl _ _ 4 was _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 death _ NOUN NN _ 7 compound _ _ 7 watch _ NOUN NN _ 4 nsubj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Then _ ADV RB _ 2 dep _ _ 2 exhilaration _ NOUN NN _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Spurred _ VERB VBN _ 16 advcl _ _ 2 by _ ADP IN _ 3 case _ _ 3 waves _ NOUN NNS _ 1 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 large-scale _ ADJ JJ _ 6 amod _ _ 6 buying _ NOUN NN _ 3 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 blue-chip _ ADJ JJ _ 9 amod _ _ 9 stocks _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 15 det _ _ 12 Dow _ PROPN NNP _ 15 compound _ _ 13 Jones _ PROPN NNP _ 15 compound _ _ 14 Industrial _ PROPN NNP _ 15 compound _ _ 15 Average _ PROPN NNP _ 16 nsubj _ _ 16 rallied _ VERB VBD _ 0 root _ _ 17 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 18 and _ CONJ CC _ 16 cc _ _ 19 erased _ VERB VBN _ 16 conj _ _ 20 about _ ADV IN _ 22 advmod _ _ 21 a _ DET DT _ 22 advmod _ _ 22 half _ NOUN NN _ 19 dobj _ _ 23 of _ ADP IN _ 27 case _ _ 24 Friday _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 190.58-point _ ADJ JJ _ 27 amod _ _ 27 plunge _ NOUN NN _ 22 nmod _ _ 28 , _ PUNCT , _ 19 punct _ _ 29 gaining _ VERB VBG _ 19 advcl _ _ 30 88.12 _ NUM CD _ 29 dobj _ _ 31 to _ ADP TO _ 32 case _ _ 32 2657.38 _ NUM CD _ 29 nmod _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 the _ DET DT _ 5 det _ _ 4 fourth-biggest _ ADJ JJ _ 5 amod _ _ 5 advance _ NOUN NN _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 average _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 30 _ NUM CD _ 12 nummod _ _ 11 blue _ ADJ JJ _ 12 amod _ _ 12 chips _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 on _ ADP IN _ 20 case _ _ 15 frenetic _ ADJ JJ _ 20 amod _ _ 16 New _ PROPN NNP _ 20 compound _ _ 17 York _ PROPN NNP _ 20 compound _ _ 18 Stock _ PROPN NNP _ 20 compound _ _ 19 Exchange _ PROPN NNP _ 20 compound _ _ 20 volume _ NOUN NN _ 5 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 416,290,000 _ NUM CD _ 23 nummod _ _ 23 shares _ NOUN NNS _ 20 nmod _ _ 24 -- _ PUNCT : _ 20 punct _ _ 25 the _ DET DT _ 26 det _ _ 26 highest _ ADJ JJS _ 20 dep _ _ 27 since _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 days _ NOUN NNS _ 26 nmod _ _ 30 after _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 1987 _ NUM CD _ 33 nummod _ _ 33 crash _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 advance _ NOUN NN _ 4 nsubj _ _ 4 cheered _ VERB VBD _ 20 advcl _ _ 5 investors _ NOUN NNS _ 4 dobj _ _ 6 who _ PRON WP _ 7 nsubj _ _ 7 feared _ VERB VBD _ 5 acl:relcl _ _ 8 a _ DET DT _ 10 det _ _ 9 1987-style _ ADJ JJ _ 10 amod _ _ 10 crash _ NOUN NN _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 occur _ VERB VB _ 7 ccomp _ _ 13 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 14 , _ PUNCT , _ 20 punct _ _ 15 it _ PRON PRP _ 20 nsubj _ _ 16 was _ VERB VBD _ 20 cop _ _ 17 strictly _ ADV RB _ 20 advmod _ _ 18 a _ DET DT _ 20 det _ _ 19 big-stock _ ADJ JJ _ 20 amod _ _ 20 rally _ NOUN NN _ 0 root _ _ 21 fed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 24 case _ _ 23 huge _ ADJ JJ _ 24 amod _ _ 24 buying _ NOUN NN _ 21 nmod _ _ 25 by _ ADP IN _ 27 case _ _ 26 bargain-hunting _ ADJ NN _ 27 amod _ _ 27 institutions _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 program _ NOUN NN _ 30 compound _ _ 30 traders _ NOUN NNS _ 27 conj _ _ 31 . _ PUNCT . _ 20 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 troubling _ VERB JJ _ 3 amod _ _ 3 sign _ NOUN NN _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 5 Declining _ VERB VBG _ 6 amod _ _ 6 stocks _ NOUN NNS _ 11 nsubj _ _ 7 on _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Big _ PROPN NNP _ 10 compound _ _ 10 Board _ PROPN NNP _ 6 nmod _ _ 11 outnumbered _ VERB VBD _ 3 dep _ _ 12 advancers _ NOUN NNS _ 11 dobj _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 975 _ NUM CD _ 16 dep _ _ 15 to _ ADP TO _ 16 dep _ _ 16 749 _ NUM CD _ 11 advmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 and _ CONJ CC _ 11 cc _ _ 19 the _ DET DT _ 21 det _ _ 20 over-the-counter _ ADJ JJ _ 21 amod _ _ 21 market _ NOUN NN _ 27 nsubj _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 includes _ VERB VBZ _ 21 acl:relcl _ _ 24 many _ ADJ JJ _ 26 amod _ _ 25 smaller _ ADJ JJR _ 26 amod _ _ 26 stocks _ NOUN NNS _ 23 dobj _ _ 27 suffered _ VERB VBD _ 11 conj _ _ 28 aftershocks _ NOUN NNS _ 27 dobj _ _ 29 of _ ADP IN _ 35 case _ _ 30 Friday _ PROPN NNP _ 35 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 late _ ADJ JJ _ 35 amod _ _ 33 Big _ PROPN NNP _ 35 compound _ _ 34 Board _ PROPN NNP _ 35 compound _ _ 35 plunge _ NOUN NN _ 28 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Nasdaq _ PROPN NNP _ 4 compound _ _ 3 OTC _ PROPN NNP _ 4 compound _ _ 4 index _ NOUN NN _ 5 nsubj _ _ 5 closed _ VERB VBD _ 0 root _ _ 6 down _ ADV RB _ 5 advmod _ _ 7 6.31 _ NUM CD _ 6 nmod:npmod _ _ 8 to _ ADP TO _ 9 case _ _ 9 460.98 _ NUM CD _ 6 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Meanwhile _ ADV RB _ 30 advmod _ _ 2 , _ PUNCT , _ 30 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 divergence _ NOUN NN _ 30 nmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 two _ NUM CD _ 5 nmod _ _ 8 of _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 most _ ADV RBS _ 13 advmod _ _ 13 important _ ADJ JJ _ 14 amod _ _ 14 indicators _ NOUN NNS _ 7 nmod _ _ 15 , _ PUNCT , _ 30 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 Dow _ PROPN NNP _ 18 compound _ _ 18 industrials _ NOUN NNS _ 21 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 sister _ NOUN NN _ 21 compound _ _ 21 average _ NOUN NN _ 30 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 the _ DET DT _ 28 det _ _ 24 20-stock _ ADJ JJ _ 28 amod _ _ 25 Dow _ PROPN NNP _ 28 compound _ _ 26 Jones _ PROPN NNP _ 28 compound _ _ 27 Transportation _ PROPN NNP _ 28 compound _ _ 28 Average _ PROPN NNP _ 21 appos _ _ 29 , _ PUNCT , _ 21 punct _ _ 30 tumbled _ VERB VBD _ 0 root _ _ 31 102.06 _ NUM CD _ 30 dobj _ _ 32 to _ ADP TO _ 33 case _ _ 33 1304.23 _ NUM CD _ 30 nmod _ _ 34 -- _ PUNCT : _ 30 punct _ _ 35 its _ PRON PRP$ _ 37 nmod:poss _ _ 36 second-worst _ ADJ JJ _ 37 amod _ _ 37 decline _ NOUN NN _ 30 nmod:npmod _ _ 38 next _ ADJ IN _ 37 amod _ _ 39 to _ ADP TO _ 42 case _ _ 40 the _ DET DT _ 42 det _ _ 41 164.78-point _ ADJ JJ _ 42 amod _ _ 42 fall _ NOUN NN _ 38 nmod _ _ 43 during _ ADP IN _ 46 case _ _ 44 the _ DET DT _ 46 det _ _ 45 1987 _ NUM CD _ 46 nummod _ _ 46 crash _ NOUN NN _ 42 nmod _ _ 47 . _ PUNCT . _ 30 punct _ _ 1 Transports _ NOUN NNS _ 2 nsubj _ _ 2 plunged _ VERB VBD _ 0 root _ _ 3 on _ ADP IN _ 5 case _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 disappointments _ NOUN NNS _ 2 nmod _ _ 6 in _ ADP IN _ 9 case _ _ 7 two _ NUM CD _ 9 nummod _ _ 8 airline _ NOUN NN _ 9 compound _ _ 9 stocks _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 UAL _ PROPN NNP _ 9 appos _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 AMR _ PROPN NNP _ 11 conj _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 which _ PRON WDT _ 17 nsubj _ _ 16 each _ DET DT _ 17 dep _ _ 17 fell _ VERB VBD _ 9 acl:relcl _ _ 18 more _ ADV JJR _ 20 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 20 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 17 dobj _ _ 22 when _ ADV WRB _ 24 advmod _ _ 23 they _ PRON PRP _ 24 nsubj _ _ 24 reopened _ VERB VBD _ 17 advcl _ _ 25 for _ ADP IN _ 26 case _ _ 26 trading _ NOUN NN _ 24 nmod _ _ 27 yesterday _ NOUN NN _ 24 nmod:tmod _ _ 28 after _ SCONJ IN _ 30 mark _ _ 29 being _ AUX VBG _ 30 auxpass _ _ 30 suspended _ VERB VBN _ 24 advcl _ _ 31 Friday _ PROPN NNP _ 32 compound _ _ 32 afternoon _ NOUN NN _ 30 nmod:tmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 UAL _ PROPN NNP _ 16 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 stock _ NOUN NN _ 1 appos _ _ 6 at _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 center _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 14 case _ _ 10 Friday _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 190.58-point _ ADJ JJ _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 plunge _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 fell _ VERB VBD _ 0 root _ _ 17 56 _ NUM CD _ 18 compound _ _ 18 7/8 _ NUM CD _ 16 dobj _ _ 19 to _ ADP TO _ 21 case _ _ 20 222 _ NUM CD _ 21 compound _ _ 21 7/8 _ NUM CD _ 16 nmod _ _ 22 on _ ADP IN _ 26 case _ _ 23 nearly _ ADV RB _ 25 advmod _ _ 24 2.3 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 26 nummod _ _ 26 shares _ NOUN NNS _ 16 nmod _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 Overall _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 `` _ PUNCT `` _ 8 punct _ _ 4 this _ PRON DT _ 8 nsubj _ _ 5 is _ VERB VBZ _ 8 cop _ _ 6 a _ DET DT _ 8 det _ _ 7 pleasant _ ADJ JJ _ 8 amod _ _ 8 rally _ NOUN NN _ 16 ccomp _ _ 9 but _ CONJ CC _ 8 cc _ _ 10 it _ PRON PRP _ 13 nsubj _ _ 11 's _ VERB VBZ _ 13 cop _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 selective _ ADJ JJ _ 8 conj _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Arthur _ PROPN NNP _ 19 compound _ _ 18 Cashin _ PROPN NNP _ 19 compound _ _ 19 Jr. _ PROPN NNP _ 16 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 a _ DET DT _ 25 det _ _ 22 veteran _ ADJ NN _ 25 amod _ _ 23 PaineWebber _ PROPN NNP _ 25 compound _ _ 24 Inc. _ PROPN NNP _ 25 compound _ _ 25 trader _ NOUN NN _ 19 appos _ _ 26 at _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Big _ PROPN NNP _ 29 compound _ _ 29 Board _ PROPN NNP _ 25 nmod _ _ 30 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 Everyone _ NOUN NN _ 6 nsubjpass _ _ 3 was _ VERB VBD _ 6 auxpass _ _ 4 a _ DET DT _ 5 det _ _ 5 little _ ADV JJ _ 6 dep _ _ 6 concerned _ VERB JJ _ 0 root _ _ 7 about _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 general _ ADJ JJ _ 10 amod _ _ 10 narrowness _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 rally _ NOUN NN _ 10 nmod _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 failure _ NOUN NN _ 10 conj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 OTC _ PROPN NNP _ 19 compound _ _ 19 market _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 get _ VERB VB _ 15 dep _ _ 22 into _ ADP IN _ 24 case _ _ 23 plus _ ADJ CC _ 24 amod _ _ 24 territory _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 's _ VERB VBZ _ 6 cop _ _ 3 just _ ADV RB _ 6 advmod _ _ 4 a _ DET DT _ 6 det _ _ 5 strange _ ADJ JJ _ 6 amod _ _ 6 feeling _ NOUN NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 think _ VERB VB _ 0 root _ _ 5 anyone _ NOUN NN _ 6 nsubj _ _ 6 left _ VERB VBD _ 4 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 place _ NOUN NN _ 6 dobj _ _ 9 whistling _ VERB VBG _ 6 xcomp _ _ 10 Dixie _ PROPN NNP _ 9 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rally _ NOUN NN _ 3 nsubj _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 credence _ NOUN NN _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 at _ ADP IN _ 3 advmod _ _ 7 least _ ADJ JJS _ 6 mwe _ _ 8 for _ ADP IN _ 9 case _ _ 9 now _ ADV RB _ 6 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 pre-trading _ ADJ JJ _ 14 amod _ _ 14 declaration _ NOUN NN _ 3 nmod _ _ 15 of _ ADP IN _ 22 case _ _ 16 Big _ PROPN NNP _ 22 compound _ _ 17 Board _ PROPN NNP _ 22 compound _ _ 18 Chairman _ PROPN NNP _ 22 compound _ _ 19 John _ PROPN NNP _ 22 compound _ _ 20 J. _ PROPN NNP _ 22 compound _ _ 21 Phelan _ PROPN NNP _ 22 compound _ _ 22 Jr. _ PROPN NNP _ 14 nmod _ _ 23 that _ SCONJ WDT _ 32 mark _ _ 24 Friday _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 debacle _ NOUN NN _ 32 nsubj _ _ 28 was _ VERB VBD _ 32 cop _ _ 29 `` _ PUNCT `` _ 32 punct _ _ 30 an _ DET DT _ 32 det _ _ 31 abnormal _ ADJ JJ _ 32 amod _ _ 32 condition _ NOUN NN _ 14 dep _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 and _ CONJ CC _ 32 cc _ _ 35 not _ ADV RB _ 37 neg _ _ 36 a _ DET DT _ 37 det _ _ 37 disaster _ NOUN NN _ 32 conj _ _ 38 . _ PUNCT . _ 3 punct _ _ 39 '' _ PUNCT '' _ 3 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 to _ ADP TO _ 3 case _ _ 3 traders _ NOUN NNS _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 looked _ VERB VBD _ 0 root _ _ 7 like _ ADP IN _ 8 case _ _ 8 disaster _ NOUN NN _ 6 nmod _ _ 9 on _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 9:30 _ NUM CD _ 14 nummod _ _ 12 a.m. _ NOUN NN _ 14 compound _ _ 13 opening _ VERB NN _ 14 amod _ _ 14 bell _ NOUN NN _ 6 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Dow _ PROPN NNP _ 5 compound _ _ 3 Jones _ PROPN NNP _ 5 compound _ _ 4 Industrial _ PROPN NNP _ 5 compound _ _ 5 Average _ PROPN NNP _ 6 nsubj _ _ 6 opened _ VERB VBD _ 0 root _ _ 7 down _ ADV RP _ 6 advmod _ _ 8 1.64 _ NUM CD _ 7 nmod:npmod _ _ 9 shortly _ ADV RB _ 11 advmod _ _ 10 after _ ADP IN _ 11 case _ _ 11 9:30 _ NUM CD _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 21 cc _ _ 2 most _ ADJ JJS _ 21 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 30 _ NUM CD _ 7 nummod _ _ 6 blue-chip _ ADJ JJ _ 7 amod _ _ 7 stocks _ NOUN NNS _ 2 nmod _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 average _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 including _ VERB VBG _ 14 case _ _ 13 Eastman _ PROPN NNP _ 14 compound _ _ 14 Kodak _ PROPN NNP _ 2 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 General _ PROPN NNP _ 17 compound _ _ 17 Motors _ PROPN NNPS _ 14 conj _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 could _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 trade _ VERB VB _ 0 root _ _ 22 because _ ADV IN _ 26 case _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 the _ DET DT _ 26 det _ _ 25 heavy _ ADJ JJ _ 26 amod _ _ 26 backlog _ NOUN NN _ 21 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 sell _ NOUN NN _ 29 compound _ _ 29 orders _ NOUN NNS _ 26 nmod _ _ 30 left _ VERB VBD _ 29 acl _ _ 31 over _ ADP RP _ 30 compound:prt _ _ 32 from _ ADP IN _ 36 case _ _ 33 Friday _ PROPN NNP _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 late-afternoon _ ADJ JJ _ 36 amod _ _ 36 rout _ NOUN NN _ 30 nmod _ _ 37 . _ PUNCT . _ 21 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 9:45 _ NUM CD _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 Procter _ PROPN NNP _ 18 nsubj _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Gamble _ PROPN NNP _ 4 conj _ _ 7 -- _ PUNCT : _ 8 punct _ _ 8 one _ NUM CD _ 4 dep _ _ 9 of _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 most _ ADV RBS _ 12 advmod _ _ 12 important _ ADJ JJ _ 14 amod _ _ 13 Dow _ PROPN NNP _ 14 compound _ _ 14 bellwethers _ NOUN NNS _ 8 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 late _ ADJ JJ _ 8 acl _ _ 17 -- _ PUNCT : _ 8 punct _ _ 18 opened _ VERB VBD _ 0 root _ _ 19 down _ ADV RP _ 18 advmod _ _ 20 2 _ NUM CD _ 21 compound _ _ 21 3/4 _ NUM CD _ 19 nmod:npmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 117 _ NUM CD _ 19 nmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 3 nsubj _ _ 3 dropped _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 quick _ ADJ JJ _ 8 amod _ _ 7 27-point _ ADJ JJ _ 8 amod _ _ 8 loss _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 and _ CONJ CC _ 3 cc _ _ 11 to _ ADP TO _ 13 case _ _ 12 many _ ADJ JJ _ 13 amod _ _ 13 traders _ NOUN NNS _ 15 nmod _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 looked _ VERB VBD _ 3 conj _ _ 16 as _ SCONJ IN _ 20 mark _ _ 17 if _ SCONJ IN _ 16 mwe _ _ 18 stocks _ NOUN NNS _ 20 nsubjpass _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 headed _ VERB VBN _ 15 advcl _ _ 21 for _ ADP IN _ 25 case _ _ 22 yet _ ADV RB _ 25 advmod _ _ 23 another _ DET DT _ 25 det _ _ 24 big _ ADJ JJ _ 25 amod _ _ 25 tumble _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 More _ ADJ RBR _ 2 amod _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 opened _ VERB VBD _ 0 root _ _ 4 over _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 ensuing _ VERB VBG _ 8 amod _ _ 7 half _ ADJ NN _ 8 amod _ _ 8 hour _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 as _ SCONJ IN _ 24 mark _ _ 11 the _ DET DT _ 16 det _ _ 12 49 _ NUM CD _ 16 nummod _ _ 13 Big _ PROPN NNP _ 16 compound _ _ 14 Board _ PROPN NNP _ 16 compound _ _ 15 specialist _ NOUN NN _ 16 compound _ _ 16 firms _ NOUN NNS _ 24 nsubj _ _ 17 in _ ADP IN _ 18 case _ _ 18 charge _ NOUN NN _ 16 nmod _ _ 19 of _ SCONJ IN _ 20 mark _ _ 20 keeping _ VERB VBG _ 18 acl _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 orderly _ ADV JJ _ 20 xcomp _ _ 24 groped _ VERB VBN _ 3 advcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 find _ VERB VB _ 24 xcomp _ _ 27 buy _ NOUN NN _ 28 compound _ _ 28 orders _ NOUN NNS _ 26 dobj _ _ 29 from _ ADP IN _ 32 case _ _ 30 major _ ADJ JJ _ 32 amod _ _ 31 brokerage _ NOUN NN _ 32 compound _ _ 32 firms _ NOUN NNS _ 28 nmod _ _ 33 to _ PART TO _ 34 mark _ _ 34 match _ VERB VB _ 28 acl _ _ 35 the _ DET DT _ 37 det _ _ 36 selling _ NOUN NN _ 37 compound _ _ 37 flood _ NOUN NN _ 34 dobj _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Then _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 to _ PART TO _ 4 mark _ _ 4 make _ VERB VB _ 11 advcl _ _ 5 matters _ NOUN NNS _ 4 dobj _ _ 6 worse _ ADJ RBR _ 4 xcomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 computerized _ VERB JJ _ 10 amod _ _ 9 sell _ NOUN NN _ 10 compound _ _ 10 programs _ NOUN NNS _ 11 nsubj _ _ 11 kicked _ VERB VBD _ 0 root _ _ 12 in _ ADP IN _ 11 compound:prt _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 hammering _ VERB VBG _ 11 xcomp _ _ 15 stocks _ NOUN NNS _ 14 dobj _ _ 16 into _ ADP IN _ 18 case _ _ 17 steeper _ ADJ JJR _ 18 amod _ _ 18 losses _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 was _ VERB VBD _ 0 root _ _ 3 heavy _ ADJ JJ _ 5 amod _ _ 4 stock-index _ ADJ NN _ 5 amod _ _ 5 arbitrage _ NOUN NN _ 2 nsubj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 as _ SCONJ IN _ 9 mark _ _ 8 traders _ NOUN NNS _ 9 nsubj _ _ 9 sold _ VERB VBD _ 2 advcl _ _ 10 big _ ADJ JJ _ 11 amod _ _ 11 baskets _ NOUN NNS _ 9 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 stock _ NOUN NN _ 11 nmod _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 bought _ VERB VBD _ 9 conj _ _ 16 stock-index _ ADJ NN _ 17 amod _ _ 17 futures _ NOUN NNS _ 15 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 profit _ VERB VB _ 15 advcl _ _ 20 from _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 price _ NOUN NN _ 23 compound _ _ 23 discrepancies _ NOUN NNS _ 19 nmod _ _ 24 between _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 markets _ NOUN NNS _ 23 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 a _ DET DT _ 4 det _ _ 4 hangover _ NOUN NN _ 0 root _ _ 5 from _ ADP IN _ 6 case _ _ 6 Friday _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 when _ ADV WRB _ 17 advmod _ _ 9 Standard _ PROPN NNP _ 15 nmod:poss _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Poor _ PROPN NNP _ 9 conj _ _ 12 's _ PART POS _ 9 case _ _ 13 500-stock _ ADJ JJ _ 15 amod _ _ 14 index _ NOUN NN _ 15 compound _ _ 15 futures _ NOUN NNS _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 closed _ VERB VBN _ 6 acl:relcl _ _ 18 at _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 sharp _ ADJ JJ _ 21 amod _ _ 21 discount _ NOUN NN _ 17 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 stocks _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 onslaught _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 program _ NOUN NN _ 6 compound _ _ 6 selling _ NOUN NN _ 2 nmod _ _ 7 dashed _ VERB VBN _ 0 root _ _ 8 any _ DET DT _ 9 det _ _ 9 hopes _ NOUN NNS _ 7 dobj _ _ 10 that _ SCONJ IN _ 19 mark _ _ 11 some _ DET DT _ 19 nsubj _ _ 12 of _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 big _ ADJ JJ _ 17 amod _ _ 15 program _ NOUN NN _ 17 compound _ _ 16 trading _ NOUN NN _ 17 compound _ _ 17 firms _ NOUN NNS _ 11 nmod _ _ 18 would _ AUX MD _ 19 aux _ _ 19 hold _ VERB VB _ 9 ccomp _ _ 20 off _ ADP RP _ 19 compound:prt _ _ 21 until _ SCONJ IN _ 24 mark _ _ 22 the _ DET DT _ 23 det _ _ 23 market _ NOUN NN _ 24 nsubj _ _ 24 stabilized _ VERB VBD _ 19 advcl _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 did _ VERB VBD _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 3 nsubj _ _ 3 accelerated _ VERB VBD _ 0 root _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 slide _ NOUN NN _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 losing _ VERB VBG _ 3 advcl _ _ 8 63.52 _ NUM CD _ 7 dobj _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 first _ ADJ JJ _ 13 amod _ _ 12 40 _ NUM CD _ 13 nummod _ _ 13 minutes _ NOUN NNS _ 7 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 trading _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 With _ SCONJ IN _ 3 mark _ _ 2 program _ NOUN NN _ 3 compound _ _ 3 traders _ NOUN NNS _ 9 advcl _ _ 4 seemingly _ ADV RB _ 6 advmod _ _ 5 in _ ADP IN _ 6 case _ _ 6 charge _ NOUN NN _ 3 dep _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 buyers _ NOUN NNS _ 9 nsubj _ _ 9 backed _ VERB VBD _ 0 root _ _ 10 away _ ADP RB _ 9 compound:prt _ _ 11 from _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 watched _ VERB VBD _ 9 conj _ _ 16 stocks _ NOUN NNS _ 17 nsubj _ _ 17 fall _ VERB VB _ 15 ccomp _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Then _ ADV RB _ 7 advmod _ _ 2 at _ ADP IN _ 3 case _ _ 3 10:15 _ NUM CD _ 7 nmod _ _ 4 the _ DET DT _ 5 det _ _ 5 Dow _ PROPN NNP _ 7 nsubj _ _ 6 suddenly _ ADV RB _ 7 advmod _ _ 7 started _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 rebound _ VERB VB _ 7 xcomp _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 and _ CONJ CC _ 7 cc _ _ 12 when _ ADV WRB _ 14 advmod _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 shot _ VERB VBD _ 17 advcl _ _ 15 upward _ ADV RB _ 14 advmod _ _ 16 it _ PRON PRP _ 17 nsubj _ _ 17 did _ VERB VBD _ 7 conj _ _ 18 so _ ADV RB _ 17 advmod _ _ 19 even _ ADV RB _ 20 advmod _ _ 20 faster _ ADV RBR _ 17 advmod _ _ 21 than _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 early-morning _ ADJ JJ _ 24 amod _ _ 24 fall _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 And _ CONJ CC _ 11 cc _ _ 2 this _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 11 nmod:tmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 it _ PRON PRP _ 11 nsubj _ _ 6 was _ VERB VBD _ 11 cop _ _ 7 n't _ PART RB _ 11 neg _ _ 8 just _ ADV RB _ 11 advmod _ _ 9 the _ DET DT _ 11 det _ _ 10 program _ NOUN NN _ 11 compound _ _ 11 traders _ NOUN NNS _ 0 root _ _ 12 who _ PRON WP _ 14 nsubj _ _ 13 were _ VERB VBD _ 14 cop _ _ 14 responsible _ ADJ JJ _ 11 acl:relcl _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 All _ DET PDT _ 3 det:predet _ _ 2 the _ DET DT _ 3 det _ _ 3 selling _ NOUN NN _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 pushed _ VERB VBN _ 0 root _ _ 6 stocks _ NOUN NNS _ 5 dobj _ _ 7 to _ ADP TO _ 10 case _ _ 8 such _ ADJ JJ _ 10 amod _ _ 9 cheap _ ADJ JJ _ 10 amod _ _ 10 values _ NOUN NNS _ 5 nmod _ _ 11 that _ SCONJ WDT _ 20 mark _ _ 12 big _ ADJ JJ _ 14 amod _ _ 13 investment _ NOUN NN _ 14 compound _ _ 14 banks _ NOUN NNS _ 20 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 major _ ADJ JJ _ 19 amod _ _ 17 money _ NOUN NN _ 19 compound _ _ 18 management _ NOUN NN _ 19 compound _ _ 19 firms _ NOUN NNS _ 14 conj _ _ 20 started _ VERB VBD _ 10 dep _ _ 21 buying _ VERB VBG _ 20 xcomp _ _ 22 stocks _ NOUN NNS _ 21 dobj _ _ 23 heavily _ ADV RB _ 21 advmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 program _ NOUN NN _ 3 compound _ _ 3 traders _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 in _ ADV IN _ 6 advmod _ _ 6 there _ ADV RB _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 too _ ADV RB _ 6 advmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 of _ ADP IN _ 11 case _ _ 11 course _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 according _ VERB VBG _ 5 case _ _ 3 to _ ADP TO _ 2 mwe _ _ 4 one _ NUM CD _ 5 nummod _ _ 5 trader _ NOUN NN _ 12 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 programmers _ NOUN NNS _ 12 nsubj _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 did _ AUX VBD _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 look _ VERB VB _ 0 root _ _ 13 as _ ADV IN _ 14 advmod _ _ 14 dominant _ ADJ JJ _ 12 xcomp _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 upside _ ADV NN _ 14 nmod _ _ 18 as _ ADP IN _ 21 case _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 downside _ NOUN NN _ 14 nmod _ _ 22 because _ SCONJ IN _ 24 mark _ _ 23 there _ PRON EX _ 24 expl _ _ 24 was _ VERB VBD _ 12 advcl _ _ 25 -LCB- _ PUNCT -LRB- _ 24 punct _ _ 26 also _ ADV RB _ 24 advmod _ _ 27 -RCB- _ PUNCT -RRB- _ 24 punct _ _ 28 a _ DET DT _ 29 det _ _ 29 lot _ NOUN NN _ 24 nsubj _ _ 30 of _ ADP IN _ 31 case _ _ 31 bargain-hunting _ NOUN NN _ 29 nmod _ _ 32 '' _ PUNCT '' _ 31 punct _ _ 33 by _ ADP IN _ 34 case _ _ 34 institutions _ NOUN NNS _ 31 nmod _ _ 35 . _ PUNCT . _ 12 punct _ _ 1 Roland _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Machold _ PROPN NNP _ 22 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 director _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 Jersey _ PROPN NNP _ 10 compound _ _ 10 Division _ PROPN NNP _ 5 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Investment _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 oversees _ VERB VBZ _ 10 acl:relcl _ _ 16 $ _ SYM $ _ 15 dobj _ _ 17 29 _ NUM CD _ 18 compound _ _ 18 billion _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 20 case _ _ 20 investments _ NOUN NNS _ 16 nmod _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 the _ DET DT _ 26 det _ _ 24 `` _ PUNCT `` _ 26 punct _ _ 25 first _ ADJ JJ _ 26 amod _ _ 26 thing _ NOUN NN _ 29 nsubj _ _ 27 we _ PRON PRP _ 28 nsubj _ _ 28 did _ VERB VBD _ 26 acl:relcl _ _ 29 was _ VERB VBD _ 22 ccomp _ _ 30 to _ PART TO _ 31 mark _ _ 31 double _ VERB VB _ 29 xcomp _ _ 32 our _ PRON PRP$ _ 33 nmod:poss _ _ 33 orders _ NOUN NNS _ 31 dobj _ _ 34 '' _ PUNCT '' _ 31 punct _ _ 35 yesterday _ NOUN NN _ 36 compound _ _ 36 morning _ NOUN NN _ 31 nmod:tmod _ _ 37 . _ PUNCT . _ 22 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 With _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 5 dep _ _ 5 down _ ADV RP _ 12 advcl _ _ 6 like _ ADP IN _ 7 case _ _ 7 this _ PRON DT _ 5 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 we _ PRON PRP _ 12 nsubj _ _ 10 'll _ AUX MD _ 12 aux _ _ 11 probably _ ADV RB _ 12 advmod _ _ 12 take _ VERB VB _ 0 root _ _ 13 another _ DET DT _ 14 advmod _ _ 14 $ _ SYM $ _ 12 dobj _ _ 15 50 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 and _ CONJ CC _ 12 cc _ _ 18 put _ VERB VBD _ 12 conj _ _ 19 it _ PRON PRP _ 18 dobj _ _ 20 in _ ADP IN _ 23 case _ _ 21 '' _ PUNCT '' _ 23 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 market _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 12 punct _ _ 1 Trading _ NOUN NN _ 7 nsubj _ _ 2 in _ ADP IN _ 5 case _ _ 3 Walt _ PROPN NNP _ 5 compound _ _ 4 Disney _ PROPN NNP _ 5 compound _ _ 5 Co. _ PROPN NNP _ 1 nmod _ _ 6 particularly _ ADV RB _ 1 advmod _ _ 7 caught _ VERB VBD _ 0 root _ _ 8 traders _ NOUN NNS _ 10 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 eyes _ NOUN NNS _ 7 dobj _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 According _ VERB VBG _ 5 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 Big _ PROPN NNP _ 5 compound _ _ 4 Board _ PROPN NNP _ 5 compound _ _ 5 officials _ NOUN NNS _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Disney _ PROPN NNP _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 one _ NUM CD _ 8 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 biggest _ ADJ JJS _ 14 amod _ _ 13 sell-order _ ADJ NN _ 14 amod _ _ 14 imbalances _ NOUN NNS _ 9 nmod _ _ 15 on _ ADP IN _ 16 case _ _ 16 Friday _ PROPN NNP _ 8 nmod _ _ 17 ; _ PUNCT : _ 8 punct _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 was _ VERB VBD _ 20 cop _ _ 20 one _ NUM CD _ 8 parataxis _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 seven _ NUM CD _ 24 nummod _ _ 24 stocks _ NOUN NNS _ 20 nmod _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 could _ AUX MD _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 finish _ VERB VB _ 24 acl:relcl _ _ 29 trading _ NOUN NN _ 28 dobj _ _ 30 that _ DET WDT _ 31 det _ _ 31 day _ NOUN NN _ 28 nmod:tmod _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stock _ NOUN NN _ 3 nsubj _ _ 3 opened _ VERB VBD _ 0 root _ _ 4 late _ ADV RB _ 3 advmod _ _ 5 at _ ADP IN _ 7 case _ _ 6 114 _ NUM CD _ 7 compound _ _ 7 1/2 _ NUM CD _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 down _ ADV RB _ 3 advmod _ _ 10 8 _ NUM CD _ 11 compound _ _ 11 1/2 _ NUM CD _ 9 nmod:npmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 then _ ADV RB _ 4 advmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 shot _ VERB VBD _ 20 ccomp _ _ 5 upward _ ADV RB _ 4 advmod _ _ 6 7 _ NUM CD _ 7 compound _ _ 7 1/2 _ NUM CD _ 5 nmod:npmod _ _ 8 as _ SCONJ IN _ 14 mark _ _ 9 Goldman _ PROPN NNP _ 14 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Sachs _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Co. _ PROPN NNP _ 9 conj _ _ 14 stepped _ VERB VBD _ 4 advcl _ _ 15 in _ ADV IN _ 14 advmod _ _ 16 and _ CONJ CC _ 14 cc _ _ 17 bought _ VERB VBD _ 14 conj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 traders _ NOUN NNS _ 20 nsubj _ _ 20 said _ VERB VBD _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 However _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 Disney _ PROPN NNP _ 6 compound _ _ 4 specialist _ NOUN NN _ 6 compound _ _ 5 Robert _ PROPN NNP _ 6 compound _ _ 6 Fagenson _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 `` _ PUNCT `` _ 7 punct _ _ 10 I _ PRON PRP _ 13 nsubjpass _ _ 11 would _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 surprised _ VERB VBN _ 7 ccomp _ _ 14 if _ SCONJ IN _ 16 mark _ _ 15 Goldman _ PROPN NNP _ 16 nsubj _ _ 16 represented _ VERB VBD _ 13 advcl _ _ 17 4 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 opening _ NOUN NN _ 22 compound _ _ 22 volume _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 24 '' _ PUNCT '' _ 7 punct _ _ 1 Around _ ADP IN _ 3 case _ _ 2 Wall _ PROPN NNP _ 3 compound _ _ 3 Street _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 trading _ NOUN NN _ 6 compound _ _ 6 desks _ NOUN NNS _ 8 nsubjpass _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 relieved _ VERB VBN _ 0 root _ _ 9 that _ SCONJ IN _ 14 mark _ _ 10 they _ PRON PRP _ 14 nsubj _ _ 11 could _ AUX MD _ 14 aux _ _ 12 at _ ADP IN _ 14 advmod _ _ 13 least _ ADJ JJS _ 12 mwe _ _ 14 play _ VERB VB _ 8 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 14 dobj _ _ 17 yesterday _ NOUN NN _ 14 nmod:tmod _ _ 18 , _ PUNCT , _ 14 punct _ _ 19 in _ ADP IN _ 20 case _ _ 20 contrast _ NOUN NN _ 14 nmod _ _ 21 to _ ADP TO _ 24 case _ _ 22 Friday _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 gridlock _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 7 case _ _ 2 Donaldson _ PROPN NNP _ 7 compound _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Lufkin _ PROPN NNP _ 2 conj _ _ 5 & _ CONJ CC _ 2 cc _ _ 6 Jenrette _ PROPN NNP _ 2 conj _ _ 7 Inc. _ PROPN NNP _ 14 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 head _ NOUN NN _ 13 compound _ _ 10 equity _ NOUN NN _ 13 compound _ _ 11 trader _ NOUN NN _ 13 compound _ _ 12 Dudley _ PROPN NNP _ 13 compound _ _ 13 Eppel _ PROPN NNP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 : _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 14 punct _ _ 17 I _ PRON PRP _ 18 nsubj _ _ 18 think _ VERB VBP _ 14 ccomp _ _ 19 the _ DET DT _ 20 det _ _ 20 opening _ NOUN NN _ 22 nsubj _ _ 21 was _ VERB VBD _ 22 cop _ _ 22 constructive _ ADJ JJ _ 18 ccomp _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 orderly _ ADJ JJ _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 put _ VERB VBD _ 0 root _ _ 3 some _ DET DT _ 4 det _ _ 4 orders _ NOUN NNS _ 2 dobj _ _ 5 together _ ADV RB _ 2 advmod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 There _ ADV EX _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 n't _ PART RB _ 5 neg _ _ 4 a _ DET DT _ 5 det _ _ 5 lot _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 8 case _ _ 7 panic _ NOUN NN _ 8 compound _ _ 8 selling _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 either _ DET CC _ 11 cc:preconj _ _ 11 domestically _ ADV RB _ 5 advmod _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 internationally _ ADV RB _ 11 conj _ _ 14 ... _ PUNCT : _ 5 punct _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Not _ ADV RB _ 3 neg _ _ 2 like _ ADP IN _ 3 case _ _ 3 Friday _ PROPN NNP _ 0 root _ _ 4 where _ ADV WRB _ 7 advmod _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 just _ ADV RB _ 7 advmod _ _ 7 took _ VERB VBD _ 3 acl:relcl _ _ 8 -LCB- _ PUNCT -LRB- _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 7 dobj _ _ 11 -RCB- _ PUNCT -RRB- _ 7 punct _ _ 12 apart _ ADV RB _ 7 advmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 8 nsubj _ _ 5 had _ AUX VBD _ 8 aux _ _ 6 n't _ PART RB _ 8 neg _ _ 7 yet _ ADV RB _ 8 advmod _ _ 8 crossed _ VERB VBN _ 0 root _ _ 9 into _ ADP IN _ 11 case _ _ 10 positive _ ADJ JJ _ 11 amod _ _ 11 territory _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 traders _ NOUN NNS _ 16 nsubj _ _ 15 were _ VERB VBD _ 16 cop _ _ 16 glum _ ADJ NN _ 8 conj _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 in _ ADP IN _ 5 case _ _ 3 another _ DET DT _ 5 det _ _ 4 dramatic _ ADJ JJ _ 5 amod _ _ 5 burst _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Dow _ PROPN NNP _ 9 nsubj _ _ 9 tacked _ VERB VBD _ 0 root _ _ 10 on _ ADP RP _ 12 dep _ _ 11 42 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 five _ NUM CD _ 15 nummod _ _ 15 minutes _ NOUN NNS _ 9 nmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 at _ ADP IN _ 19 case _ _ 19 10:25 _ NUM CD _ 22 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 index _ NOUN NN _ 22 nsubj _ _ 22 showed _ VERB VBD _ 9 conj _ _ 23 a _ DET DT _ 24 det _ _ 24 gain _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 26 case _ _ 26 5.74 _ NUM CD _ 24 nmod _ _ 27 . _ PUNCT . _ 9 punct _ _ 1 On _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 Big _ PROPN NNP _ 5 compound _ _ 4 Board _ PROPN NNP _ 5 compound _ _ 5 floor _ NOUN NN _ 12 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 on _ ADP IN _ 9 case _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 desks _ NOUN NNS _ 5 conj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 traders _ NOUN NNS _ 12 nsubj _ _ 12 yelped _ VERB VBD _ 0 root _ _ 13 their _ PRON PRP$ _ 14 nmod:poss _ _ 14 approval _ NOUN NN _ 12 dobj _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 Grinned _ VERB NNP _ 0 root _ _ 2 Griffith _ PROPN NNP _ 3 compound _ _ 3 Peck _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 trader _ NOUN NN _ 3 appos _ _ 7 in _ ADP IN _ 14 case _ _ 8 Shearson _ PROPN NNP _ 11 compound _ _ 9 Lehman _ PROPN NNP _ 11 compound _ _ 10 Hutton _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 OTC _ PROPN NNP _ 14 compound _ _ 14 department _ NOUN NN _ 6 nmod _ _ 15 : _ PUNCT : _ 1 punct _ _ 16 `` _ PUNCT `` _ 1 punct _ _ 17 I _ PRON PRP _ 18 nsubj _ _ 18 tell _ VERB VBP _ 1 ccomp _ _ 19 you _ PRON PRP _ 18 dobj _ _ 20 , _ PUNCT , _ 18 punct _ _ 21 this _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 acts _ VERB VBZ _ 18 ccomp _ _ 24 healthy _ ADJ JJ _ 23 xcomp _ _ 25 . _ PUNCT . _ 1 punct _ _ 26 '' _ PUNCT '' _ 1 punct _ _ 1 Around _ ADP IN _ 2 case _ _ 2 him _ PRON PRP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 scores _ NOUN NNS _ 7 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 traders _ NOUN NNS _ 4 nmod _ _ 7 seemed _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 get _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 11 det _ _ 11 burst _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 energy _ NOUN NN _ 11 nmod _ _ 14 ; _ PUNCT : _ 7 punct _ _ 15 their _ PRON PRP$ _ 16 nmod:poss _ _ 16 boss _ NOUN NN _ 17 nsubj _ _ 17 broke _ VERB VBD _ 7 parataxis _ _ 18 out _ ADP RP _ 17 compound:prt _ _ 19 bottles _ NOUN NNS _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 Perrier _ PROPN NNP _ 22 compound _ _ 22 water _ NOUN NN _ 19 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 cool _ VERB VB _ 17 advcl _ _ 25 them _ PRON PRP _ 24 dobj _ _ 26 off _ ADP RP _ 24 compound:prt _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 Big _ PROPN NNP _ 4 compound _ _ 3 Board _ PROPN NNP _ 4 compound _ _ 4 specialists _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 cry _ NOUN NN _ 8 nsubj _ _ 8 was _ VERB VBD _ 0 root _ _ 9 `` _ PUNCT `` _ 8 punct _ _ 10 Pull _ VERB VB _ 8 ccomp _ _ 11 your _ PRON PRP$ _ 12 nmod:poss _ _ 12 offers _ NOUN NNS _ 10 dobj _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 14 -- _ PUNCT : _ 15 punct _ _ 15 meaning _ VERB VBG _ 8 parataxis _ _ 16 that _ SCONJ IN _ 19 mark _ _ 17 specialists _ NOUN NNS _ 19 nsubj _ _ 18 soon _ ADV RB _ 19 advmod _ _ 19 expected _ VERB VBN _ 15 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 get _ VERB VB _ 19 xcomp _ _ 22 higher _ ADJ JJR _ 23 amod _ _ 23 prices _ NOUN NNS _ 21 dobj _ _ 24 for _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 shares _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 bedlam _ NOUN NN _ 10 ccomp _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 upside _ ADJ NN _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Big _ PROPN NNP _ 14 compound _ _ 13 Board _ PROPN NNP _ 14 compound _ _ 14 specialist _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 not _ ADV RB _ 3 neg _ _ 3 everybody _ NOUN NN _ 5 nsubj _ _ 4 was _ AUX VBD _ 5 aux _ _ 5 making _ VERB VBG _ 0 root _ _ 6 money _ NOUN NN _ 5 dobj _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 carnage _ NOUN NN _ 18 nsubj _ _ 3 on _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det _ _ 5 Chicago _ PROPN NNP _ 8 compound _ _ 6 Board _ PROPN NNP _ 8 compound _ _ 7 Options _ PROPN NNPS _ 8 compound _ _ 8 Exchange _ PROPN NNP _ 2 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 options _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 8 appos _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 was _ VERB VBD _ 18 cop _ _ 18 heavy _ ADJ JJ _ 0 root _ _ 19 after _ SCONJ IN _ 28 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 trading _ NOUN NN _ 28 nsubjpass _ _ 22 in _ ADP IN _ 26 case _ _ 23 S&P _ PROPN NNP _ 26 compound _ _ 24 100 _ NUM CD _ 26 nummod _ _ 25 stock-index _ ADJ NN _ 26 amod _ _ 26 options _ NOUN NNS _ 21 nmod _ _ 27 was _ AUX VBD _ 28 auxpass _ _ 28 halted _ VERB VBN _ 18 advcl _ _ 29 Friday _ PROPN NNP _ 28 nmod:tmod _ _ 30 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 makers _ NOUN NNS _ 11 nsubj _ _ 4 in _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 10 det _ _ 6 S&P _ PROPN NNP _ 10 compound _ _ 7 100 _ NUM CD _ 10 nummod _ _ 8 index _ NOUN NN _ 10 compound _ _ 9 options _ NOUN NNS _ 10 compound _ _ 10 contract _ NOUN NN _ 3 nmod _ _ 11 had _ VERB VBD _ 0 root _ _ 12 bullish _ ADJ JJ _ 13 amod _ _ 13 positions _ NOUN NNS _ 11 dobj _ _ 14 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 when _ ADV WRB _ 20 advmod _ _ 18 the _ DET DT _ 19 det _ _ 19 shutdown _ NOUN NN _ 20 nsubj _ _ 20 came _ VERB VBD _ 23 advcl _ _ 21 they _ PRON PRP _ 23 nsubjpass _ _ 22 were _ AUX VBD _ 23 auxpass _ _ 23 frozen _ VERB VBN _ 11 conj _ _ 24 with _ ADP IN _ 26 case _ _ 25 huge _ ADJ JJ _ 26 amod _ _ 26 losses _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 Over _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 weekend _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 clearing _ NOUN NN _ 6 compound _ _ 6 firms _ NOUN NNS _ 7 nsubj _ _ 7 told _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 11 det _ _ 9 Chicago _ PROPN NNP _ 11 compound _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 makers _ NOUN NNS _ 7 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 get _ VERB VB _ 7 xcomp _ _ 14 out _ ADP IN _ 17 case _ _ 15 of _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 positions _ NOUN NNS _ 13 nmod _ _ 18 at _ ADP IN _ 20 case _ _ 19 any _ DET DT _ 20 det _ _ 20 cost _ NOUN NN _ 13 nmod _ _ 21 Monday _ PROPN NNP _ 22 compound _ _ 22 morning _ NOUN NN _ 13 nmod:tmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 absolutely _ ADV RB _ 5 advmod _ _ 5 killed _ VERB VBN _ 10 ccomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 slaughtered _ VERB VBN _ 5 dep _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Chicago-based _ ADJ JJ _ 14 amod _ _ 13 options _ NOUN NNS _ 14 compound _ _ 14 trader _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 22 mark _ _ 5 the _ DET DT _ 10 det _ _ 6 closely _ ADV RB _ 7 advmod _ _ 7 watched _ VERB VBN _ 10 amod _ _ 8 Major _ PROPN NNP _ 10 compound _ _ 9 Market _ PROPN NNP _ 10 compound _ _ 10 Index _ PROPN NNP _ 22 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 whose _ PRON WP$ _ 14 nmod:poss _ _ 13 20 _ NUM CD _ 14 nummod _ _ 14 stocks _ NOUN NNS _ 15 nsubj _ _ 15 mimic _ VERB VBP _ 10 acl:relcl _ _ 16 the _ DET DT _ 18 det _ _ 17 Dow _ PROPN NNP _ 18 compound _ _ 18 industrials _ NOUN NNS _ 15 dobj _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 did _ AUX VBD _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 lead _ VERB VB _ 3 ccomp _ _ 23 yesterday _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 big _ ADJ JJ _ 26 amod _ _ 26 rally _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Gallagher _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 partner _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 8 case _ _ 7 specialist _ NOUN NN _ 8 compound _ _ 8 Fowler _ PROPN NNP _ 5 nmod _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Rosenau _ PROPN NNP _ 8 conj _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 The _ DET DT _ 16 det _ _ 16 difference _ NOUN NN _ 36 nsubj _ _ 17 between _ ADP IN _ 18 case _ _ 18 today _ NOUN NN _ 16 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 years _ NOUN NNS _ 18 conj _ _ 22 ago _ ADV RB _ 21 advmod _ _ 23 '' _ PUNCT '' _ 21 punct _ _ 24 -- _ PUNCT : _ 27 punct _ _ 25 `` _ PUNCT `` _ 27 punct _ _ 26 Terrible _ PROPN JJ _ 27 compound _ _ 27 Tuesday _ PROPN NNP _ 21 dep _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 '' _ PUNCT '' _ 27 punct _ _ 30 Oct. _ PROPN NNP _ 27 nmod:tmod _ _ 31 20 _ NUM CD _ 30 nummod _ _ 32 , _ PUNCT , _ 30 punct _ _ 33 1987 _ NUM CD _ 30 nummod _ _ 34 -- _ PUNCT : _ 27 punct _ _ 35 `` _ PUNCT `` _ 36 punct _ _ 36 is _ VERB VBZ _ 12 ccomp _ _ 37 that _ DET DT _ 40 mark _ _ 38 then _ ADV RB _ 40 advmod _ _ 39 we _ PRON PRP _ 40 nsubj _ _ 40 needed _ VERB VBD _ 36 ccomp _ _ 41 a _ DET DT _ 42 det _ _ 42 savior _ NOUN NN _ 40 dobj _ _ 43 to _ PART TO _ 44 mark _ _ 44 go _ VERB VB _ 40 xcomp _ _ 45 into _ ADP IN _ 49 case _ _ 46 the _ DET DT _ 49 det _ _ 47 Major _ PROPN NNP _ 49 compound _ _ 48 Market _ PROPN NNP _ 49 compound _ _ 49 Index _ PROPN NNP _ 44 nmod _ _ 50 , _ PUNCT , _ 44 punct _ _ 51 spend _ VERB VBP _ 44 conj _ _ 52 $ _ SYM $ _ 51 dobj _ _ 53 2 _ NUM CD _ 54 compound _ _ 54 million _ NUM CD _ 52 nummod _ _ 55 and _ CONJ CC _ 44 cc _ _ 56 get _ VERB VB _ 44 conj _ _ 57 the _ DET DT _ 59 det _ _ 58 program _ NOUN NN _ 59 compound _ _ 59 rally _ NOUN NN _ 60 nsubj _ _ 60 started _ VERB VBD _ 56 ccomp _ _ 61 . _ PUNCT . _ 12 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 6 nmod:tmod _ _ 3 -LCB- _ PUNCT -LRB- _ 6 punct _ _ 4 institutions _ NOUN NNS _ 6 nsubj _ _ 5 -RCB- _ PUNCT -RRB- _ 6 punct _ _ 6 saw _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 programs _ NOUN NNS _ 9 nsubj _ _ 9 coming _ VERB VBG _ 6 dep _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 backed _ VERB VBD _ 6 conj _ _ 12 away _ ADV RB _ 11 advmod _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 backed _ VERB VBD _ 6 conj _ _ 15 away _ ADV RB _ 14 advmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Then _ ADV RB _ 14 advmod _ _ 2 when _ ADV WRB _ 9 advmod _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 9 nsubj _ _ 5 was _ VERB VBD _ 9 cop _ _ 6 at _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 technical _ ADJ JJ _ 9 amod _ _ 9 level _ NOUN NN _ 14 advcl _ _ 10 to _ PART TO _ 11 mark _ _ 11 buy _ VERB VB _ 9 acl _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 came _ VERB VBD _ 0 root _ _ 15 in _ ADV IN _ 14 advmod _ _ 16 with _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 vengeance _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 14 punct _ _ 20 '' _ PUNCT '' _ 14 punct _ _ 1 However _ ADV RB _ 21 advmod _ _ 2 , _ PUNCT , _ 21 punct _ _ 3 according _ VERB VBG _ 6 case _ _ 4 to _ ADP TO _ 3 mwe _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 analyst _ NOUN NN _ 21 nmod _ _ 7 , _ PUNCT , _ 21 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 timing _ NOUN NN _ 21 nsubj _ _ 10 of _ ADP IN _ 15 case _ _ 11 Major _ PROPN NNP _ 15 compound _ _ 12 Market _ PROPN NNP _ 15 compound _ _ 13 Index _ PROPN NNP _ 15 compound _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 buying _ NOUN VBG _ 9 nmod _ _ 16 just _ ADV RB _ 19 advmod _ _ 17 before _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 turnaround _ NOUN NN _ 21 nmod _ _ 20 was _ VERB VBD _ 21 cop _ _ 21 similar _ ADJ JJ _ 0 root _ _ 22 to _ ADP TO _ 23 case _ _ 23 that _ PRON DT _ 21 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 Terrible _ PROPN JJ _ 26 compound _ _ 26 Tuesday _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Futures _ NOUN NNS _ 4 nsubj _ _ 3 were _ AUX VBD _ 4 aux _ _ 4 pulling _ VERB VBG _ 11 ccomp _ _ 5 the _ DET DT _ 7 det _ _ 6 stock _ NOUN NN _ 7 compound _ _ 7 market _ NOUN NN _ 4 dobj _ _ 8 higher _ ADV JJR _ 4 advmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Donald _ PROPN NNP _ 13 compound _ _ 13 Selkin _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 head _ NOUN NN _ 13 appos _ _ 16 of _ ADP IN _ 19 case _ _ 17 stock-index _ ADJ NN _ 19 amod _ _ 18 futures _ NOUN NNS _ 19 compound _ _ 19 research _ NOUN NN _ 15 nmod _ _ 20 at _ ADP IN _ 23 case _ _ 21 Prudential-Bache _ PROPN NNP _ 23 compound _ _ 22 Securities _ PROPN NNPS _ 23 compound _ _ 23 Inc _ PROPN NNP _ 19 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 Although _ SCONJ IN _ 8 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 Big _ PROPN NNP _ 4 compound _ _ 4 Board _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 specialist _ NOUN NN _ 7 compound _ _ 7 firms _ NOUN NNS _ 8 nsubj _ _ 8 struggled _ VERB VBD _ 20 advcl _ _ 9 through _ ADP IN _ 14 case _ _ 10 another _ DET DT _ 14 det _ _ 11 highly _ ADV RB _ 12 advmod _ _ 12 volatile _ ADJ JJ _ 14 amod _ _ 13 trading _ NOUN NN _ 14 compound _ _ 14 session _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 performance _ NOUN NN _ 20 nsubj _ _ 18 yesterday _ NOUN NN _ 20 nmod:tmod _ _ 19 was _ VERB VBD _ 20 cop _ _ 20 better _ ADV JJR _ 0 root _ _ 21 than _ ADP IN _ 26 case _ _ 22 during _ ADP IN _ 26 case _ _ 23 Friday _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 late-afternoon _ ADJ JJ _ 26 amod _ _ 26 chaos _ NOUN NN _ 20 nmod _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 according _ VERB VBG _ 30 case _ _ 29 to _ ADP TO _ 28 mwe _ _ 30 traders _ NOUN NNS _ 20 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 brokers _ NOUN NNS _ 30 conj _ _ 33 who _ PRON WP _ 34 nsubj _ _ 34 work _ VERB VBP _ 30 acl:relcl _ _ 35 with _ ADP IN _ 36 case _ _ 36 them _ PRON PRP _ 34 nmod _ _ 37 . _ PUNCT . _ 20 punct _ _ 1 Specialists _ NOUN NNS _ 3 nsubjpass _ _ 2 were _ AUX VBD _ 3 auxpass _ _ 3 criticized _ VERB VBN _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 their _ PRON PRP$ _ 6 nmod:poss _ _ 6 inability _ NOUN NN _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 maintain _ VERB VB _ 6 acl _ _ 9 orderly _ ADJ JJ _ 10 amod _ _ 10 markets _ NOUN NNS _ 8 dobj _ _ 11 during _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Friday _ PROPN NNP _ 14 compound _ _ 14 plunge _ NOUN NN _ 8 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 yesterday _ NOUN NN _ 17 dep _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 even _ ADV RB _ 6 advmod _ _ 5 with _ ADP IN _ 6 case _ _ 6 halts _ NOUN NNS _ 17 nmod _ _ 7 in _ ADP IN _ 11 case _ _ 8 such _ ADJ JJ _ 11 amod _ _ 9 major _ ADJ JJ _ 11 amod _ _ 10 blue-chip _ ADJ JJ _ 11 amod _ _ 11 stocks _ NOUN NNS _ 6 nmod _ _ 12 as _ ADP IN _ 13 case _ _ 13 Merck _ PROPN NNP _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 we _ PRON PRP _ 17 nsubj _ _ 17 expected _ VERB VBD _ 30 dep _ _ 18 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 halts _ NOUN NNS _ 17 dobj _ _ 21 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 22 and _ CONJ CC _ 17 cc _ _ 23 it _ PRON PRP _ 27 nsubj _ _ 24 was _ VERB VBD _ 27 cop _ _ 25 n't _ PART RB _ 27 neg _ _ 26 too _ ADV RB _ 27 advmod _ _ 27 bad _ ADJ JJ _ 17 conj _ _ 28 , _ PUNCT , _ 17 punct _ _ 29 '' _ PUNCT '' _ 17 punct _ _ 30 said _ VERB VBD _ 0 root _ _ 31 Donaldson _ PROPN NNP _ 34 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 Mr. _ PROPN NNP _ 34 compound _ _ 34 Eppel _ PROPN NNP _ 30 nsubj _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 who _ PRON WP _ 39 nsubj _ _ 37 had _ AUX VBD _ 39 aux _ _ 38 been _ VERB VBN _ 39 cop _ _ 39 critical _ ADJ JJ _ 34 acl:relcl _ _ 40 of _ ADP IN _ 44 case _ _ 41 the _ DET DT _ 42 det _ _ 42 specialists _ NOUN NNS _ 44 nmod:poss _ _ 43 ' _ PART POS _ 42 case _ _ 44 performance _ NOUN NN _ 39 nmod _ _ 45 on _ ADP IN _ 46 case _ _ 46 Friday _ PROPN NNP _ 44 nmod _ _ 47 . _ PUNCT . _ 30 punct _ _ 1 According _ VERB VBG _ 6 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 a _ DET DT _ 6 det _ _ 4 Big _ PROPN NNP _ 6 compound _ _ 5 Board _ PROPN NNP _ 6 compound _ _ 6 official _ NOUN NN _ 15 nmod _ _ 7 , _ PUNCT , _ 15 punct _ _ 8 while _ SCONJ IN _ 11 mark _ _ 9 many _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 11 nsubj _ _ 11 opened _ VERB VBD _ 15 advcl _ _ 12 late _ ADV RB _ 11 advmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 there _ PRON EX _ 15 expl _ _ 15 were _ VERB VBD _ 0 root _ _ 16 subsequent _ ADJ JJ _ 18 amod _ _ 17 trading _ VERB NN _ 18 amod _ _ 18 halts _ NOUN NNS _ 15 nsubj _ _ 19 in _ ADP IN _ 22 case _ _ 20 only _ ADV RB _ 22 advmod _ _ 21 three _ NUM CD _ 22 nummod _ _ 22 issues _ NOUN NNS _ 15 nmod _ _ 23 -- _ PUNCT : _ 22 punct _ _ 24 AMR _ PROPN NNP _ 22 dep _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Merck _ PROPN NNP _ 24 conj _ _ 27 and _ CONJ CC _ 24 cc _ _ 28 Valero _ PROPN NNP _ 29 compound _ _ 29 Energy _ PROPN NNP _ 24 conj _ _ 30 . _ PUNCT . _ 15 punct _ _ 1 Merck _ PROPN NNP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 one _ NUM CD _ 0 root _ _ 4 of _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 most _ ADV RBS _ 7 advmod _ _ 7 important _ ADJ JJ _ 8 amod _ _ 8 stocks _ NOUN NNS _ 3 nmod _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 Major _ PROPN NNP _ 13 compound _ _ 12 Market _ PROPN NNP _ 13 compound _ _ 13 Index _ PROPN NNP _ 8 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 sector _ NOUN NN _ 8 nsubjpass _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 2 nmod _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 spared _ VERB VBN _ 0 root _ _ 9 during _ ADP IN _ 15 case _ _ 10 the _ DET DT _ 13 det _ _ 11 past _ ADJ JJ _ 13 amod _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 days _ NOUN NNS _ 15 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 gyrations _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Yet _ ADV RB _ 21 advmod _ _ 2 from _ ADP IN _ 7 case _ _ 3 the _ DET DT _ 5 det _ _ 4 Dow _ PROPN NNP _ 5 compound _ _ 5 industrials _ NOUN NNS _ 7 nmod:poss _ _ 6 ' _ PART POS _ 5 case _ _ 7 high _ NOUN JJ _ 21 nmod _ _ 8 on _ ADP IN _ 9 case _ _ 9 Oct. _ PROPN NNP _ 7 nmod _ _ 10 9 _ NUM CD _ 9 nummod _ _ 11 through _ ADP IN _ 14 case _ _ 12 Friday _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 plunge _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 21 punct _ _ 16 relatively _ ADV RB _ 18 advmod _ _ 17 good _ ADJ JJ _ 18 amod _ _ 18 performances _ NOUN NNS _ 21 nsubjpass _ _ 19 have _ AUX VBP _ 21 aux _ _ 20 been _ AUX VBN _ 21 auxpass _ _ 21 turned _ VERB VBN _ 0 root _ _ 22 in _ ADP RP _ 21 compound:prt _ _ 23 by _ ADP IN _ 24 case _ _ 24 real-estate _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 utilities _ NOUN NNS _ 24 conj _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 precious _ ADJ JJ _ 29 amod _ _ 29 metals _ NOUN NNS _ 24 conj _ _ 30 and _ CONJ CC _ 24 cc _ _ 31 life _ NOUN NN _ 33 compound _ _ 32 insurance _ NOUN NN _ 33 compound _ _ 33 stocks _ NOUN NNS _ 24 conj _ _ 34 . _ PUNCT . _ 21 punct _ _ 1 And _ CONJ CC _ 13 cc _ _ 2 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 the _ DET DT _ 8 det _ _ 5 top _ ADJ JJ _ 8 amod _ _ 6 performing _ NOUN VBG _ 8 compound _ _ 7 industry _ NOUN NN _ 8 compound _ _ 8 group _ NOUN NN _ 13 nsubj _ _ 9 was _ VERB VBD _ 13 cop _ _ 10 oil _ NOUN NN _ 13 compound _ _ 11 field _ NOUN NN _ 13 compound _ _ 12 equipment _ NOUN NN _ 13 compound _ _ 13 issues _ NOUN NNS _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Halliburton _ PROPN NNP _ 5 nsubj _ _ 5 jumped _ VERB VBD _ 0 root _ _ 6 3 _ NUM CD _ 7 compound _ _ 7 1/4 _ NUM CD _ 5 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 38 _ NUM CD _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 Schlumberger _ PROPN NNP _ 12 nsubj _ _ 12 rose _ VERB VBD _ 5 conj _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 1/2 _ NUM CD _ 12 dobj _ _ 15 to _ ADP TO _ 17 case _ _ 16 43 _ NUM CD _ 17 compound _ _ 17 1/4 _ NUM CD _ 12 nmod _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 Baker _ PROPN NNP _ 20 compound _ _ 20 Hughes _ PROPN NNP _ 21 nsubj _ _ 21 rose _ VERB VBD _ 5 conj _ _ 22 1 _ NUM CD _ 23 compound _ _ 23 1/8 _ NUM CD _ 21 dobj _ _ 24 to _ ADP TO _ 25 case _ _ 25 22 _ NUM CD _ 21 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Because _ ADP IN _ 7 case _ _ 2 of _ ADP IN _ 1 mwe _ _ 3 the _ DET DT _ 7 det _ _ 4 UAL _ PROPN NNP _ 7 compound _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 AMR _ PROPN NNP _ 4 conj _ _ 7 tumbles _ NOUN VBZ _ 13 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 airlines _ NOUN NNS _ 13 nsubj _ _ 10 were _ VERB VBD _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 weakest _ ADJ JJS _ 13 amod _ _ 13 sector _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 13 nmod _ _ 17 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Philip _ PROPN NNP _ 2 compound _ _ 2 Morris _ PROPN NNP _ 10 nsubj _ _ 3 was _ VERB VBD _ 10 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 Big _ PROPN NNP _ 6 compound _ _ 6 Board _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 most _ ADV RBS _ 9 advmod _ _ 9 active _ ADJ JJ _ 10 amod _ _ 10 issue _ NOUN NN _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 rising _ VERB VBG _ 10 advcl _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 1/4 _ NUM CD _ 12 dobj _ _ 15 to _ ADP TO _ 17 case _ _ 16 43 _ NUM CD _ 17 compound _ _ 17 1/4 _ NUM CD _ 12 nmod _ _ 18 on _ ADP IN _ 22 case _ _ 19 nearly _ ADV RB _ 21 advmod _ _ 20 eight _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 22 nummod _ _ 22 shares _ NOUN NNS _ 12 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 other _ ADJ JJ _ 4 amod _ _ 3 major _ ADJ JJ _ 4 amod _ _ 4 issues _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Coca-Cola _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 8 nsubj _ _ 8 closed _ VERB VBD _ 0 root _ _ 9 up _ ADV RB _ 8 advmod _ _ 10 2 _ NUM CD _ 9 nmod:npmod _ _ 11 at _ ADP IN _ 13 case _ _ 12 66 _ NUM CD _ 13 compound _ _ 13 3/4 _ NUM CD _ 8 nmod _ _ 14 on _ ADP IN _ 17 case _ _ 15 1.7 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 17 nummod _ _ 17 shares _ NOUN NNS _ 8 nmod _ _ 18 and _ CONJ CC _ 8 cc _ _ 19 American _ PROPN NNP _ 20 compound _ _ 20 Telephone _ PROPN NNP _ 23 nsubj _ _ 21 & _ CONJ CC _ 20 cc _ _ 22 Telegraph _ PROPN NNP _ 20 conj _ _ 23 rose _ VERB VBD _ 8 conj _ _ 24 3 _ NUM CD _ 25 compound _ _ 25 1/4 _ NUM CD _ 23 dobj _ _ 26 to _ ADP TO _ 27 case _ _ 27 43 _ NUM CD _ 23 nmod _ _ 28 on _ ADP IN _ 32 case _ _ 29 nearly _ ADV RB _ 31 advmod _ _ 30 7.8 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 32 nummod _ _ 32 shares _ NOUN NNS _ 23 nmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Shares _ PROPN NNS _ 12 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 International _ PROPN NNP _ 5 compound _ _ 4 Business _ PROPN NNP _ 5 compound _ _ 5 Machines _ PROPN NNPS _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 reported _ VERB VBD _ 5 acl:relcl _ _ 9 earnings _ NOUN NNS _ 8 dobj _ _ 10 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 finished _ VERB VBD _ 0 root _ _ 13 at _ ADP IN _ 14 case _ _ 14 103 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 up _ ADV RB _ 12 advmod _ _ 17 1 _ NUM CD _ 16 nmod:npmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 after _ SCONJ IN _ 20 mark _ _ 20 slipping _ VERB VBG _ 12 advcl _ _ 21 below _ ADP IN _ 22 case _ _ 22 100 _ NUM CD _ 20 nmod _ _ 23 during _ ADP IN _ 26 case _ _ 24 Friday _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 session _ NOUN NN _ 20 nmod _ _ 27 for _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 first _ ADJ JJ _ 30 amod _ _ 30 time _ NOUN NN _ 20 nmod _ _ 31 in _ ADP IN _ 33 case _ _ 32 five _ NUM CD _ 33 nummod _ _ 33 years _ NOUN NNS _ 30 nmod _ _ 34 . _ PUNCT . _ 12 punct _ _ 1 Shares _ NOUN NNS _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 three _ NUM CD _ 5 nummod _ _ 4 brokerage _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 1 nmod _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 after _ SCONJ IN _ 9 mark _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 reported _ VERB VBD _ 6 advcl _ _ 10 earnings _ NOUN NNS _ 9 dobj _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 1 _ NUM CD _ 5 compound _ _ 5 3/4 _ NUM CD _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 28 _ NUM CD _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 PaineWebber _ PROPN NNP _ 10 nsubj _ _ 10 rose _ VERB VBD _ 3 conj _ _ 11 3/4 _ NUM CD _ 10 dobj _ _ 12 to _ ADP TO _ 14 case _ _ 13 18 _ NUM CD _ 14 compound _ _ 14 1/2 _ NUM CD _ 10 nmod _ _ 15 and _ CONJ CC _ 3 cc _ _ 16 Bear _ PROPN NNP _ 17 compound _ _ 17 Stearns _ PROPN NNP _ 18 nsubj _ _ 18 rose _ VERB VBD _ 3 conj _ _ 19 3/8 _ NUM CD _ 18 dobj _ _ 20 to _ ADP TO _ 22 case _ _ 21 14 _ NUM CD _ 22 compound _ _ 22 1/4 _ NUM CD _ 18 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Federal _ PROPN NNP _ 4 compound _ _ 2 National _ PROPN NNP _ 4 compound _ _ 3 Mortgage _ PROPN NNP _ 4 compound _ _ 4 Association _ PROPN NNP _ 11 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 9 det _ _ 7 recently _ ADV RB _ 8 advmod _ _ 8 hot _ ADJ JJ _ 9 amod _ _ 9 stock _ NOUN NN _ 4 appos _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 climbed _ VERB VBD _ 0 root _ _ 12 4 _ NUM CD _ 11 dobj _ _ 13 to _ ADP TO _ 14 case _ _ 14 124 _ NUM CD _ 11 nmod _ _ 15 on _ ADP IN _ 19 case _ _ 16 nearly _ ADV RB _ 18 advmod _ _ 17 1.6 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 19 nummod _ _ 19 shares _ NOUN NNS _ 11 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 news _ NOUN NN _ 4 compound _ _ 4 conference _ NOUN NN _ 22 nmod _ _ 5 after _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 close _ NOUN NN _ 22 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 trading _ NOUN NN _ 7 nmod _ _ 10 yesterday _ NOUN NN _ 22 nmod:tmod _ _ 11 , _ PUNCT , _ 22 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 Big _ PROPN NNP _ 14 compound _ _ 14 Board _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Phelan _ PROPN NNP _ 22 nsubj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 other _ ADJ JJ _ 21 amod _ _ 20 exchange _ NOUN NN _ 21 compound _ _ 21 officials _ NOUN NNS _ 17 conj _ _ 22 praised _ VERB VBD _ 0 root _ _ 23 the _ DET DT _ 24 det _ _ 24 performance _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 their _ PRON PRP$ _ 27 nmod:poss _ _ 27 computers _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 personnel _ NOUN NNS _ 27 conj _ _ 30 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ DET IN _ 10 mark _ _ 5 program _ NOUN NN _ 7 compound _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 strategies _ NOUN NNS _ 10 nsubj _ _ 8 were _ VERB VBD _ 10 cop _ _ 9 n't _ PART RB _ 10 neg _ _ 10 responsible _ ADJ JJ _ 3 ccomp _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 triggering _ VERB VBG _ 10 advcl _ _ 13 Friday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 decline _ NOUN NN _ 12 dobj _ _ 16 despite _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 jump _ NOUN NN _ 10 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 use _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 computer-driven _ ADJ JJ _ 25 amod _ _ 25 strategies _ NOUN NNS _ 21 nmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 months _ NOUN NNS _ 18 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 3 advmod _ _ 2 24 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 32 nsubj _ _ 4 of _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 10 det _ _ 6 more _ ADJ JJR _ 9 advmod _ _ 7 than _ ADP IN _ 6 mwe _ _ 8 100 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 shares _ NOUN NNS _ 3 nmod _ _ 11 traded _ VERB VBN _ 10 acl _ _ 12 in _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 final _ ADJ JJ _ 16 amod _ _ 15 90 _ NUM CD _ 16 nummod _ _ 16 minutes _ NOUN NNS _ 11 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 Friday _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 session _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 when _ ADV WRB _ 29 advmod _ _ 23 the _ DET DT _ 24 det _ _ 24 plunge _ NOUN NN _ 29 nsubjpass _ _ 25 in _ ADP IN _ 27 case _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 prices _ NOUN NNS _ 24 nmod _ _ 28 was _ AUX VBD _ 29 auxpass _ _ 29 concentrated _ VERB VBN _ 16 acl:relcl _ _ 30 , _ PUNCT , _ 16 punct _ _ 31 were _ VERB VBD _ 32 cop _ _ 32 program-related _ ADJ JJ _ 35 ccomp _ _ 33 , _ PUNCT , _ 35 punct _ _ 34 he _ PRON PRP _ 35 nsubj _ _ 35 said _ VERB VBD _ 0 root _ _ 36 . _ PUNCT . _ 35 punct _ _ 1 Program _ NOUN NN _ 2 compound _ _ 2 trades _ NOUN NNS _ 3 nsubj _ _ 3 make _ VERB VBP _ 0 root _ _ 4 up _ ADP RP _ 3 compound:prt _ _ 5 10 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 3 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 9 det _ _ 9 exchange _ NOUN NN _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 volume _ NOUN NN _ 6 nmod _ _ 12 on _ ADP IN _ 15 case _ _ 13 an _ DET DT _ 15 det _ _ 14 average _ ADJ JJ _ 15 amod _ _ 15 day _ NOUN NN _ 3 nmod _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 but _ CONJ CC _ 3 cc _ _ 18 despite _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 increase _ NOUN NN _ 28 nmod _ _ 21 Friday _ PROPN NNP _ 20 nmod:tmod _ _ 22 , _ PUNCT , _ 28 punct _ _ 23 it _ PRON PRP _ 28 nsubj _ _ 24 was _ VERB VBD _ 28 cop _ _ 25 `` _ PUNCT `` _ 28 punct _ _ 26 certainly _ ADV RB _ 28 advmod _ _ 27 not _ PART RB _ 28 neg _ _ 28 something _ NOUN NN _ 40 ccomp _ _ 29 you _ PRON PRP _ 31 nsubj _ _ 30 would _ AUX MD _ 31 aux _ _ 31 say _ VERB VB _ 28 acl:relcl _ _ 32 precipitated _ VERB VBD _ 31 ccomp _ _ 33 the _ DET DT _ 35 det _ _ 34 market _ NOUN NN _ 35 compound _ _ 35 decline _ NOUN NN _ 32 dobj _ _ 36 , _ PUNCT , _ 40 punct _ _ 37 '' _ PUNCT '' _ 40 punct _ _ 38 Mr. _ PROPN NNP _ 39 compound _ _ 39 Phelan _ PROPN NNP _ 40 nsubj _ _ 40 said _ VERB VBD _ 3 conj _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 expressed _ VERB VBD _ 0 root _ _ 4 relief _ NOUN NN _ 3 dobj _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 rebounded _ VERB VBD _ 4 ccomp _ _ 9 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 Obviously _ ADV RB _ 15 advmod _ _ 3 , _ PUNCT , _ 15 punct _ _ 4 every _ DET DT _ 5 det _ _ 5 time _ NOUN NN _ 15 nmod:tmod _ _ 6 we _ PRON PRP _ 7 nsubj _ _ 7 get _ VERB VBP _ 5 acl:relcl _ _ 8 this _ DET DT _ 9 det _ _ 9 kind _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 reaction _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 's _ AUX VBZ _ 15 aux _ _ 15 going _ VERB VBG _ 26 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 make _ VERB VB _ 15 xcomp _ _ 18 everybody _ NOUN NN _ 19 nsubj _ _ 19 nervous _ ADJ JJ _ 17 xcomp _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 including _ VERB VBG _ 22 case _ _ 22 me _ PRON PRP _ 19 dep _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 '' _ PUNCT '' _ 26 punct _ _ 25 he _ PRON PRP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 exchange _ NOUN NN _ 5 compound _ _ 5 officials _ NOUN NNS _ 6 nsubj _ _ 6 had _ VERB VBD _ 2 ccomp _ _ 7 conversations _ NOUN NNS _ 6 dobj _ _ 8 with _ ADP IN _ 11 case _ _ 9 Wall _ PROPN NNP _ 11 compound _ _ 10 Street _ PROPN NNP _ 11 compound _ _ 11 firms _ NOUN NNS _ 7 nmod _ _ 12 throughout _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 weekend _ NOUN NN _ 6 nmod _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 that _ SCONJ IN _ 21 mark _ _ 17 `` _ PUNCT `` _ 21 punct _ _ 18 all _ DET PDT _ 20 det:predet _ _ 19 the _ DET DT _ 20 det _ _ 20 participants _ NOUN NNS _ 21 nsubj _ _ 21 behaved _ VERB VBD _ 6 conj _ _ 22 very _ ADV RB _ 25 advmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 responsibly _ ADV RB _ 21 advmod _ _ 26 today _ NOUN NN _ 21 nmod:tmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 28 '' _ PUNCT '' _ 2 punct _ _ 1 Meanwhile _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 Peter _ PROPN NNP _ 4 compound _ _ 4 DaPuzzo _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Shearson _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 head _ NOUN NN _ 4 appos _ _ 9 of _ ADP IN _ 12 case _ _ 10 retail _ ADJ JJ _ 12 amod _ _ 11 equity _ NOUN NN _ 12 compound _ _ 12 trading _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 praised _ VERB VBD _ 0 root _ _ 15 institutional _ ADJ JJ _ 16 amod _ _ 16 investors _ NOUN NNS _ 14 dobj _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 OTC _ PROPN NNP _ 20 compound _ _ 20 market _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 who _ PRON WP _ 25 nsubj _ _ 23 were _ VERB VBD _ 25 cop _ _ 24 heavy _ ADJ JJ _ 25 amod _ _ 25 buyers _ NOUN NNS _ 16 acl:relcl _ _ 26 of _ ADP IN _ 32 case _ _ 27 the _ DET DT _ 28 det _ _ 28 Nasdaq _ PROPN NNP _ 32 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 biggest _ ADJ JJS _ 32 amod _ _ 31 technology _ NOUN NN _ 32 compound _ _ 32 issues _ NOUN NNS _ 25 nmod _ _ 33 yesterday _ NOUN NN _ 25 nmod:tmod _ _ 34 amid _ ADP IN _ 36 case _ _ 35 a _ DET DT _ 36 det _ _ 36 flood _ NOUN NN _ 25 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 selling _ NOUN NN _ 36 nmod _ _ 39 by _ ADP IN _ 41 case _ _ 40 other _ ADJ JJ _ 41 amod _ _ 41 investors _ NOUN NNS _ 38 nmod _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 institutions _ NOUN NNS _ 7 nsubjpass _ _ 4 ca _ AUX MD _ 7 aux _ _ 5 n't _ PART RB _ 7 neg _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 criticized _ VERB VBN _ 15 ccomp _ _ 8 for _ ADP IN _ 10 case _ _ 9 their _ PRON PRP$ _ 10 nmod:poss _ _ 10 behavior _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 '' _ PUNCT '' _ 15 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 DaPuzzo _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 in _ ADP IN _ 18 case _ _ 17 an _ DET DT _ 18 det _ _ 18 interview _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 opposite _ NOUN NN _ 0 root _ _ 6 of _ SCONJ IN _ 8 mark _ _ 7 what _ PRON WP _ 8 nsubj _ _ 8 happened _ VERB VBD _ 5 acl _ _ 9 on _ ADP IN _ 10 case _ _ 10 Oct. _ PROPN NNP _ 8 nmod _ _ 11 19 _ NUM CD _ 10 nummod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 used _ VERB VBD _ 0 root _ _ 3 their _ PRON PRP$ _ 4 nmod:poss _ _ 4 judgment _ NOUN NN _ 2 dobj _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 panic _ NOUN NN _ 0 root _ _ 5 during _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 round _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 selling _ NOUN VBG _ 8 nmod _ _ 11 this _ DET DT _ 12 det _ _ 12 morning _ NOUN NN _ 4 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Instead _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 bought _ VERB VBD _ 0 root _ _ 5 on _ ADP IN _ 6 case _ _ 6 weakness _ NOUN NN _ 4 nmod _ _ 7 and _ CONJ CC _ 4 cc _ _ 8 sold _ VERB VBN _ 4 conj _ _ 9 into _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 strength _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 kept _ VERB VBD _ 4 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 orderly _ ADJ JJ _ 14 xcomp _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Maybe _ ADV RB _ 3 advmod _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 learned _ VERB VBD _ 0 root _ _ 4 from _ ADP IN _ 5 case _ _ 5 experience _ NOUN NN _ 3 nmod _ _ 6 . _ PUNCT . _ 3 punct _ _ 7 '' _ PUNCT '' _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 performance _ NOUN NN _ 13 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 specialists _ NOUN NNS _ 5 nmod _ _ 8 during _ ADP IN _ 11 case _ _ 9 Friday _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 plunge _ NOUN NN _ 5 nmod _ _ 12 was _ VERB VBD _ 13 cop _ _ 13 admirable _ ADJ JJ _ 3 ccomp _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 because _ SCONJ IN _ 30 mark _ _ 16 out _ ADP IN _ 22 case _ _ 17 of _ ADP IN _ 22 case _ _ 18 1,640 _ NUM CD _ 22 nummod _ _ 19 Big _ PROPN NNP _ 22 compound _ _ 20 Board _ PROPN NNP _ 22 compound _ _ 21 common _ ADJ JJ _ 22 amod _ _ 22 stocks _ NOUN NNS _ 30 nmod _ _ 23 traded _ VERB VBN _ 22 acl _ _ 24 during _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 day _ NOUN NN _ 23 nmod _ _ 27 only _ ADV RB _ 28 advmod _ _ 28 seven _ NUM CD _ 30 nsubjpass _ _ 29 were _ AUX VBD _ 30 auxpass _ _ 30 closed _ VERB VBN _ 13 advcl _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 were _ AUX VBD _ 34 auxpass _ _ 33 n't _ PART RB _ 34 neg _ _ 34 reopened _ VERB VBN _ 30 conj _ _ 35 before _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 close _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 They _ PRON PRP _ 3 nsubj _ _ 3 did _ VERB VBD _ 11 ccomp _ _ 4 an _ DET DT _ 6 det _ _ 5 excellent _ ADJ JJ _ 6 amod _ _ 6 job _ NOUN NN _ 3 dobj _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 '' _ PUNCT '' _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Phelan _ PROPN NNP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 specialists _ NOUN NNS _ 11 nmod _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 Wall _ PROPN NNP _ 3 compound _ _ 2 Street _ PROPN NNP _ 3 compound _ _ 3 traders _ NOUN NNS _ 7 nsubj _ _ 4 on _ ADP IN _ 5 case _ _ 5 Friday _ PROPN NNP _ 7 nmod _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 complained _ VERB VBN _ 0 root _ _ 8 about _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 trading _ VERB NN _ 11 amod _ _ 11 suspensions _ NOUN NNS _ 7 nmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 James _ PROPN NNP _ 3 compound _ _ 2 A. _ PROPN NNP _ 3 compound _ _ 3 White _ PROPN NNP _ 7 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Sonja _ PROPN NNP _ 6 compound _ _ 6 Steptoe _ PROPN NNP _ 3 conj _ _ 7 contributed _ VERB VBD _ 0 root _ _ 8 to _ ADP TO _ 10 case _ _ 9 this _ DET DT _ 10 det _ _ 10 article _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 West _ PROPN NNP _ 2 compound _ _ 2 Germany _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 Green _ PROPN NNP _ 5 compound _ _ 5 Party _ PROPN NNP _ 6 nsubj _ _ 6 joined _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 ideological _ ADJ JJ _ 9 amod _ _ 9 soulmates _ NOUN NNS _ 6 dobj _ _ 10 Jeremy _ PROPN NNP _ 11 compound _ _ 11 Rifkin _ PROPN NNP _ 9 dep _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 Christic _ PROPN NNP _ 15 compound _ _ 15 Institute _ PROPN NNP _ 11 conj _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 legal _ ADJ JJ _ 19 amod _ _ 19 battle _ NOUN NN _ 6 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 ground _ VERB VB _ 19 acl _ _ 22 the _ DET DT _ 24 det _ _ 23 Atlantis _ PROPN NNP _ 24 compound _ _ 24 shuttle _ NOUN NN _ 21 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 its _ PRON PRP$ _ 29 nmod:poss _ _ 27 plutonium-powered _ ADJ JJ _ 29 amod _ _ 28 Galileo _ PROPN NNP _ 29 compound _ _ 29 probe _ NOUN NN _ 24 conj _ _ 30 to _ ADP TO _ 31 case _ _ 31 Jupiter _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 anti-defense _ ADJ JJ _ 3 amod _ _ 3 Greens _ NOUN NNP _ 4 nsubj _ _ 4 wanted _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 9 det _ _ 6 Washington _ PROPN NNP _ 9 compound _ _ 7 federal _ ADJ JJ _ 9 amod _ _ 8 appeals _ NOUN NNS _ 9 compound _ _ 9 court _ NOUN NN _ 4 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 block _ VERB VB _ 4 xcomp _ _ 12 today _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 scheduled _ VERB VBN _ 15 amod _ _ 15 liftoff _ NOUN NN _ 11 dobj _ _ 16 long _ ADV RB _ 17 advmod _ _ 17 enough _ ADV RB _ 11 advmod _ _ 18 for _ SCONJ IN _ 21 mark _ _ 19 them _ PRON PRP _ 21 nsubj _ _ 20 to _ PART TO _ 21 mark _ _ 21 ask _ VERB VB _ 17 advcl _ _ 22 the _ DET DT _ 24 det _ _ 23 World _ PROPN NNP _ 24 compound _ _ 24 Court _ PROPN NNP _ 21 dobj _ _ 25 to _ PART TO _ 27 mark _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 order _ VERB VB _ 21 xcomp _ _ 28 '' _ PUNCT '' _ 27 punct _ _ 29 a _ DET DT _ 31 det _ _ 30 permanent _ ADJ JJ _ 31 amod _ _ 31 cancellation _ NOUN NN _ 27 dobj _ _ 32 of _ ADP IN _ 37 case _ _ 33 the _ DET DT _ 37 det _ _ 34 $ _ SYM $ _ 37 amod _ _ 35 1.5 _ NUM CD _ 36 compound _ _ 36 billion _ NUM CD _ 34 nummod _ _ 37 flight _ NOUN NN _ 31 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 three-judge _ ADJ JJ _ 4 amod _ _ 3 appeals _ NOUN NNS _ 4 compound _ _ 4 panel _ NOUN NN _ 6 nsubj _ _ 5 yesterday _ NOUN NN _ 6 nmod:tmod _ _ 6 refused _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 comply _ VERB VB _ 6 xcomp _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 though _ SCONJ IN _ 15 mark _ _ 11 liberal _ ADJ JJ _ 14 amod _ _ 12 Judge _ PROPN NNP _ 14 compound _ _ 13 Pat _ PROPN NNP _ 14 compound _ _ 14 Wald _ PROPN NNP _ 15 nsubj _ _ 15 went _ VERB VBD _ 6 advcl _ _ 16 out _ ADP IN _ 19 case _ _ 17 of _ ADP IN _ 19 case _ _ 18 her _ PRON PRP$ _ 19 nmod:poss _ _ 19 way _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 deny _ VERB VB _ 15 xcomp _ _ 22 that _ SCONJ IN _ 29 mark _ _ 23 this _ PRON DT _ 29 nsubj _ _ 24 was _ VERB VBD _ 29 cop _ _ 25 a _ DET DT _ 29 det _ _ 26 `` _ PUNCT `` _ 29 punct _ _ 27 frivolous _ ADJ JJ _ 29 amod _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 case _ NOUN NN _ 21 ccomp _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 4 nmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 was _ VERB VBD _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 NASA _ PROPN NNP _ 4 nsubj _ _ 2 should _ AUX MD _ 4 aux _ _ 3 now _ ADV RB _ 4 advmod _ _ 4 sue _ VERB VB _ 0 root _ _ 5 for _ ADP IN _ 6 case _ _ 6 fines _ NOUN NNS _ 4 nmod _ _ 7 against _ ADP IN _ 10 case _ _ 8 all _ DET DT _ 10 det _ _ 9 three _ NUM CD _ 10 nummod _ _ 10 politico-plaintiffs _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 foreign _ ADJ JJ _ 10 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 domestic _ ADJ JJ _ 12 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 for _ SCONJ IN _ 17 mark _ _ 17 bringing _ VERB VBG _ 6 acl _ _ 18 this _ DET DT _ 20 det _ _ 19 mischievous _ ADJ JJ _ 20 amod _ _ 20 case _ NOUN NN _ 17 dobj _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 House-Senate _ ADJ NNP _ 3 amod _ _ 3 conference _ NOUN NN _ 4 nsubj _ _ 4 approved _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 8 det _ _ 6 permanent _ ADJ JJ _ 8 amod _ _ 7 smoking _ NOUN NN _ 8 compound _ _ 8 ban _ NOUN NN _ 4 dobj _ _ 9 on _ ADP IN _ 13 case _ _ 10 all _ DET DT _ 13 det _ _ 11 domestic _ ADJ JJ _ 13 amod _ _ 12 airline _ NOUN NN _ 13 compound _ _ 13 routes _ NOUN NNS _ 8 nmod _ _ 14 within _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 continental _ ADJ JJ _ 17 amod _ _ 17 U.S. _ PROPN NNP _ 13 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 on _ ADP IN _ 21 case _ _ 20 all _ DET DT _ 21 det _ _ 21 flights _ NOUN NNS _ 13 conj _ _ 22 of _ ADP IN _ 24 case _ _ 23 six _ NUM CD _ 24 nummod _ _ 24 hours _ NOUN NNS _ 21 nmod _ _ 25 or _ CONJ CC _ 26 cc _ _ 26 less _ ADJ JJR _ 24 nummod _ _ 27 to _ ADP TO _ 28 case _ _ 28 Alaska _ PROPN NNP _ 21 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 Hawaii _ PROPN NNP _ 28 conj _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 restrictions _ NOUN NNS _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 cover _ VERB VB _ 0 root _ _ 5 all _ DET DT _ 4 dobj _ _ 6 but _ CONJ CC _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 small _ ADJ JJ _ 9 amod _ _ 9 percentage _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 domestic _ ADJ JJ _ 13 amod _ _ 12 air _ NOUN NN _ 13 compound _ _ 13 traffic _ NOUN NN _ 5 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 represent _ VERB VBP _ 4 conj _ _ 17 a _ DET DT _ 19 det _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 expansion _ NOUN NN _ 16 dobj _ _ 20 of _ ADP IN _ 24 case _ _ 21 the _ DET DT _ 24 det _ _ 22 current _ ADJ JJ _ 24 amod _ _ 23 smoking _ NOUN NN _ 24 compound _ _ 24 ban _ NOUN NN _ 19 nmod _ _ 25 on _ ADP IN _ 26 case _ _ 26 flights _ NOUN NNS _ 24 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 two _ NUM CD _ 29 nummod _ _ 29 hours _ NOUN NNS _ 26 nmod _ _ 30 or _ CONJ CC _ 31 cc _ _ 31 less _ ADJ JJR _ 29 nummod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 exemption _ NOUN NN _ 11 nsubj _ _ 3 allowed _ VERB VBN _ 2 acl _ _ 4 on _ ADP IN _ 6 case _ _ 5 longer _ ADJ JJR _ 6 amod _ _ 6 flights _ NOUN NNS _ 3 nmod _ _ 7 to _ ADP TO _ 8 case _ _ 8 Alaska _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Hawaii _ PROPN NNP _ 8 conj _ _ 11 appears _ VERB VBZ _ 0 root _ _ 12 to _ PART TO _ 17 mark _ _ 13 be _ VERB VB _ 17 cop _ _ 14 largely _ ADV RB _ 17 advmod _ _ 15 a _ DET DT _ 17 det _ _ 16 face-saving _ ADJ JJ _ 17 amod _ _ 17 concession _ NOUN NN _ 11 xcomp _ _ 18 for _ ADP IN _ 23 case _ _ 19 the _ DET DT _ 23 det _ _ 20 traditionally _ ADV RB _ 21 advmod _ _ 21 powerful _ ADJ JJ _ 23 amod _ _ 22 tobacco _ NOUN NN _ 23 compound _ _ 23 industry _ NOUN NN _ 17 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 which _ PRON WDT _ 27 nsubj _ _ 26 has _ AUX VBZ _ 27 aux _ _ 27 found _ VERB VBN _ 23 acl:relcl _ _ 28 itself _ PRON PRP _ 30 nsubj _ _ 29 increasingly _ ADV RB _ 30 advmod _ _ 30 isolated _ VERB VBD _ 27 xcomp _ _ 31 in _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 face _ NOUN NN _ 27 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 public _ ADJ JJ _ 36 amod _ _ 36 pressure _ NOUN NN _ 33 nmod _ _ 37 in _ ADP IN _ 39 case _ _ 38 recent _ ADJ JJ _ 39 amod _ _ 39 years _ NOUN NNS _ 27 nmod _ _ 40 . _ PUNCT . _ 11 punct _ _ 1 By _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 6-4 _ NUM JJ _ 4 nummod _ _ 4 margin _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 House _ PROPN NNP _ 7 compound _ _ 7 negotiators _ NOUN NNS _ 9 nsubj _ _ 8 initially _ ADV RB _ 9 advmod _ _ 9 rejected _ VERB VBD _ 0 root _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 night _ NOUN NN _ 9 nmod:tmod _ _ 12 a _ DET DT _ 14 det _ _ 13 Senate _ PROPN NNP _ 14 compound _ _ 14 provision _ NOUN NN _ 9 dobj _ _ 15 covering _ VERB VBG _ 14 acl _ _ 16 all _ DET DT _ 18 det _ _ 17 domestic _ ADJ JJ _ 18 amod _ _ 18 flights _ NOUN NNS _ 15 dobj _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 six-hour _ ADJ JJ _ 4 amod _ _ 4 compromise _ NOUN NN _ 7 nsubjpass _ _ 5 was _ AUX VBD _ 7 auxpass _ _ 6 soon _ ADV RB _ 7 advmod _ _ 7 agreed _ VERB VBN _ 0 root _ _ 8 to _ ADP TO _ 7 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 subsequent _ ADJ JJ _ 11 amod _ _ 11 discussions _ NOUN NNS _ 7 nmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 As _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 practical _ ADJ JJ _ 4 amod _ _ 4 matter _ NOUN NN _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 flights _ NOUN NNS _ 15 nsubjpass _ _ 7 from _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 West _ PROPN NNP _ 10 compound _ _ 10 Coast _ PROPN NNP _ 6 nmod _ _ 11 to _ ADP TO _ 12 case _ _ 12 Hawaii _ PROPN NNP _ 6 nmod _ _ 13 would _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 covered _ VERB VBN _ 0 root _ _ 16 as _ SCONJ IN _ 22 mark _ _ 17 they _ PRON PRP _ 22 nsubj _ _ 18 are _ VERB VBP _ 22 cop _ _ 19 under _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 time _ NOUN NN _ 22 compound _ _ 22 limit _ NOUN NN _ 15 advcl _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 but _ CONJ CC _ 15 cc _ _ 25 the _ DET DT _ 26 det _ _ 26 language _ NOUN NN _ 28 nsubj _ _ 27 would _ AUX MD _ 28 aux _ _ 28 exempt _ VERB VB _ 15 conj _ _ 29 longer _ ADJ JJR _ 30 amod _ _ 30 routes _ NOUN NNS _ 28 dobj _ _ 31 beginning _ VERB VBG _ 30 acl _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 for _ ADP IN _ 34 case _ _ 34 example _ NOUN NN _ 31 nmod _ _ 35 , _ PUNCT , _ 31 punct _ _ 36 in _ ADP IN _ 37 case _ _ 37 Chicago _ PROPN NNP _ 31 nmod _ _ 38 or _ CONJ CC _ 37 cc _ _ 39 on _ ADP IN _ 42 case _ _ 40 the _ DET DT _ 42 det _ _ 41 East _ PROPN NNP _ 42 compound _ _ 42 Coast _ PROPN NNP _ 37 conj _ _ 43 . _ PUNCT . _ 15 punct _ _ 1 Within _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 Senate _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 ban _ NOUN NN _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 had _ VERB VBN _ 0 root _ _ 9 aggressive _ ADJ JJ _ 10 amod _ _ 10 support _ NOUN NN _ 8 dobj _ _ 11 from _ ADP IN _ 14 case _ _ 12 Sen. _ PROPN NNP _ 14 compound _ _ 13 Frank _ PROPN NNP _ 14 compound _ _ 14 Lautenberg _ PROPN NNP _ 10 nmod _ _ 15 -LRB- _ PUNCT -LRB- _ 16 punct _ _ 16 D. _ PROPN NNP _ 14 appos _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 N.J. _ PROPN NNP _ 16 dep _ _ 19 -RRB- _ PUNCT -RRB- _ 16 punct _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 who _ PRON WP _ 23 nsubj _ _ 22 has _ AUX VBZ _ 23 aux _ _ 23 used _ VERB VBN _ 14 acl:relcl _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 position _ NOUN NN _ 23 dobj _ _ 26 as _ ADP IN _ 31 case _ _ 27 a _ DET DT _ 31 det _ _ 28 Senate _ PROPN NNP _ 31 compound _ _ 29 Appropriations _ PROPN NNP _ 31 compound _ _ 30 subcommittee _ NOUN NN _ 31 compound _ _ 31 chairman _ NOUN NN _ 25 nmod _ _ 32 to _ PART TO _ 33 mark _ _ 33 garner _ VERB VB _ 23 advcl _ _ 34 votes _ NOUN NNS _ 33 dobj _ _ 35 for _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 initiative _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 attached _ VERB VBN _ 0 root _ _ 5 to _ ADP TO _ 15 case _ _ 6 the _ DET DT _ 15 det _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 $ _ SYM $ _ 15 amod _ _ 10 26 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 fiscal _ ADJ JJ _ 15 amod _ _ 13 1990 _ NUM CD _ 15 nummod _ _ 14 transportation _ NOUN NN _ 15 compound _ _ 15 bill _ NOUN NN _ 4 nmod _ _ 16 within _ ADP IN _ 20 case _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Lautenberg _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 jurisdiction _ NOUN NN _ 15 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 and _ CONJ CC _ 4 cc _ _ 23 the _ DET DT _ 25 det _ _ 24 final _ ADJ JJ _ 25 amod _ _ 25 compromise _ NOUN NN _ 27 nsubjpass _ _ 26 is _ AUX VBZ _ 27 auxpass _ _ 27 laced _ VERB VBN _ 4 conj _ _ 28 with _ ADP IN _ 31 case _ _ 29 more _ ADJ JJR _ 31 advmod _ _ 30 than _ ADP IN _ 29 mwe _ _ 31 $ _ SYM $ _ 27 nmod _ _ 32 205 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 in _ ADP IN _ 36 case _ _ 35 road _ NOUN NN _ 36 compound _ _ 36 projects _ NOUN NNS _ 31 nmod _ _ 37 earmarked _ VERB VBN _ 31 acl _ _ 38 by _ ADP IN _ 39 case _ _ 39 members _ NOUN NNS _ 37 nmod _ _ 40 as _ ADV RB _ 31 cc _ _ 41 well _ ADV RB _ 40 mwe _ _ 42 as _ ADP IN _ 40 mwe _ _ 43 funds _ NOUN NNS _ 31 conj _ _ 44 sought _ VERB VBN _ 43 acl _ _ 45 by _ ADP IN _ 47 case _ _ 46 major _ ADJ JJ _ 47 amod _ _ 47 airports _ NOUN NNS _ 44 nmod _ _ 48 , _ PUNCT , _ 47 punct _ _ 49 including _ VERB VBG _ 50 case _ _ 50 Denver _ PROPN NNP _ 47 nmod _ _ 51 . _ PUNCT . _ 4 punct _ _ 1 From _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 outset _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 tobacco _ NOUN NN _ 7 compound _ _ 7 industry _ NOUN NN _ 10 nsubj _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ VERB VBN _ 10 cop _ _ 10 uncertain _ ADJ JJ _ 0 root _ _ 11 as _ ADP IN _ 16 case _ _ 12 to _ ADP TO _ 16 mark _ _ 13 what _ PRON WP _ 14 det _ _ 14 strategy _ NOUN NN _ 16 nsubj _ _ 15 to _ PART TO _ 16 mark _ _ 16 follow _ VERB VB _ 10 dep _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 industry _ NOUN NN _ 4 nsubj _ _ 4 retains _ VERB VBZ _ 0 root _ _ 5 support _ NOUN NN _ 4 dobj _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 House _ PROPN NNP _ 9 compound _ _ 9 leadership _ NOUN NN _ 4 nmod _ _ 10 through _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 influence _ NOUN NN _ 4 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 grower _ NOUN NN _ 15 compound _ _ 15 states _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 such _ ADJ JJ _ 20 case _ _ 18 as _ ADP IN _ 17 mwe _ _ 19 North _ PROPN NNP _ 20 compound _ _ 20 Carolina _ PROPN NNP _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 Majority _ PROPN NNP _ 4 compound _ _ 2 Whip _ PROPN NNP _ 4 compound _ _ 3 William _ PROPN NNP _ 4 compound _ _ 4 Gray _ PROPN NNP _ 5 nsubj _ _ 5 owes _ VERB VBZ _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 political _ ADJ JJ _ 8 amod _ _ 8 debt _ NOUN NN _ 5 dobj _ _ 9 to _ ADP TO _ 12 case _ _ 10 Southern _ ADJ NNP _ 12 amod _ _ 11 agriculture _ NOUN NN _ 12 compound _ _ 12 lawmakers _ NOUN NNS _ 5 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 his _ PRON PRP$ _ 15 nmod:poss _ _ 15 rise _ NOUN NN _ 5 nmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 House _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 and _ CONJ CC _ 5 cc _ _ 21 the _ DET DT _ 23 det _ _ 22 Philadelphia _ PROPN NNP _ 23 compound _ _ 23 Democrat _ PROPN NNP _ 24 nsubj _ _ 24 used _ VERB VBD _ 5 conj _ _ 25 his _ PRON PRP$ _ 26 nmod:poss _ _ 26 position _ NOUN NN _ 24 dobj _ _ 27 in _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 conference _ NOUN NN _ 26 nmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 salvage _ VERB VB _ 24 advcl _ _ 32 the _ DET DT _ 33 det _ _ 33 exemption _ NOUN NN _ 31 dobj _ _ 34 from _ ADP IN _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 total _ ADJ JJ _ 37 amod _ _ 37 ban _ NOUN NN _ 31 nmod _ _ 38 . _ PUNCT . _ 5 punct _ _ 1 Although _ SCONJ IN _ 6 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 smoking _ NOUN NN _ 4 compound _ _ 4 provision _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 attracted _ VERB VBN _ 17 advcl _ _ 7 the _ DET DT _ 10 det _ _ 8 most _ ADV RBS _ 10 advmod _ _ 9 public _ ADJ JJ _ 10 amod _ _ 10 interest _ NOUN NN _ 6 dobj _ _ 11 , _ PUNCT , _ 17 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 underlying _ ADJ JJ _ 14 amod _ _ 14 bill _ NOUN NN _ 17 nsubj _ _ 15 was _ VERB VBD _ 17 cop _ _ 16 the _ DET DT _ 17 det _ _ 17 subject _ NOUN NN _ 0 root _ _ 18 of _ ADP IN _ 19 case _ _ 19 behind-the-scenes _ ADJ JJ _ 17 nmod _ _ 20 lobbying _ VERB NN _ 19 amod _ _ 21 because _ ADP IN _ 24 case _ _ 22 of _ ADP IN _ 21 mwe _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 impact _ NOUN NN _ 17 nmod _ _ 25 on _ ADP IN _ 27 case _ _ 26 air _ NOUN NN _ 27 compound _ _ 27 transportation _ NOUN NN _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 the _ DET DT _ 37 det _ _ 30 more _ ADV RBR _ 31 advmod _ _ 31 mundane _ ADJ JJ _ 37 amod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 but _ CONJ CC _ 31 cc _ _ 34 politically _ ADV RB _ 35 advmod _ _ 35 important _ ADJ JJ _ 31 conj _ _ 36 , _ PUNCT , _ 31 punct _ _ 37 projects _ NOUN NNS _ 27 conj _ _ 38 of _ ADP IN _ 39 case _ _ 39 members _ NOUN NNS _ 37 nmod _ _ 40 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 stark _ ADJ JJ _ 4 amod _ _ 4 lesson _ NOUN NN _ 16 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 power _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 appropriations _ NOUN NNS _ 11 compound _ _ 11 committees _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 House _ PROPN NNP _ 16 nsubj _ _ 15 deliberately _ ADV RB _ 16 advmod _ _ 16 killed _ VERB VBD _ 0 root _ _ 17 a _ DET DT _ 18 det _ _ 18 handful _ NOUN NN _ 16 dobj _ _ 19 of _ ADP IN _ 20 case _ _ 20 projects _ NOUN NNS _ 18 nmod _ _ 21 backed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 23 case _ _ 23 lawmakers _ NOUN NNS _ 21 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Florida _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Illinois _ PROPN NNP _ 25 conj _ _ 28 and _ CONJ CC _ 25 cc _ _ 29 Pennsylvania _ PROPN NNP _ 25 conj _ _ 30 who _ PRON WP _ 32 nsubj _ _ 31 had _ AUX VBD _ 32 aux _ _ 32 voted _ VERB VBN _ 23 acl:relcl _ _ 33 against _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 panel _ NOUN NN _ 36 compound _ _ 36 leadership _ NOUN NN _ 32 nmod _ _ 37 on _ ADP IN _ 40 case _ _ 38 the _ DET DT _ 40 det _ _ 39 House _ PROPN NNP _ 40 compound _ _ 40 floor _ NOUN NN _ 32 nmod _ _ 41 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Anybody _ NOUN NN _ 4 nsubj _ _ 3 can _ AUX MD _ 4 aux _ _ 4 vote _ VERB VB _ 10 ccomp _ _ 5 as _ SCONJ IN _ 7 mark _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 want _ VERB VBP _ 4 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 Rep. _ PROPN NNP _ 13 compound _ _ 12 William _ PROPN NNP _ 13 compound _ _ 13 Lehman _ PROPN NNP _ 10 nsubj _ _ 14 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 15 D. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Fla. _ PROPN NNP _ 15 dep _ _ 18 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 head _ NOUN NN _ 13 appos _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 House _ PROPN NNP _ 24 compound _ _ 24 conferees _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 But _ CONJ CC _ 11 cc _ _ 3 if _ SCONJ IN _ 5 mark _ _ 4 you _ PRON PRP _ 5 nsubj _ _ 5 make _ VERB VBP _ 11 advcl _ _ 6 a _ DET DT _ 7 det _ _ 7 request _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 you _ PRON PRP _ 11 nsubj _ _ 10 should _ AUX MD _ 11 aux _ _ 11 support _ VERB VB _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 committee _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 11 punct _ _ 15 '' _ PUNCT '' _ 11 punct _ _ 1 Within _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 Federal _ PROPN NNP _ 5 compound _ _ 4 Aviation _ PROPN NNP _ 5 compound _ _ 5 Administration _ PROPN NNP _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 9 det _ _ 8 final _ ADJ JJ _ 9 amod _ _ 9 bill _ NOUN NN _ 10 nsubj _ _ 10 promises _ VERB VBZ _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 increase _ VERB VB _ 10 xcomp _ _ 13 spending _ NOUN NN _ 12 dobj _ _ 14 for _ ADP IN _ 15 case _ _ 15 facilities _ NOUN NNS _ 13 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 equipment _ NOUN NN _ 15 conj _ _ 18 by _ ADP IN _ 22 case _ _ 19 more _ ADJ JJR _ 21 advmod _ _ 20 than _ ADP IN _ 19 mwe _ _ 21 20 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 12 nmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 last _ ADJ JJ _ 25 amod _ _ 25 year _ NOUN NN _ 12 nmod _ _ 26 , _ PUNCT , _ 10 punct _ _ 27 and _ CONJ CC _ 10 cc _ _ 28 total _ ADJ JJ _ 29 amod _ _ 29 operations _ NOUN NNS _ 31 nsubj _ _ 30 would _ AUX MD _ 31 aux _ _ 31 rise _ VERB VB _ 10 conj _ _ 32 to _ ADP TO _ 33 case _ _ 33 $ _ SYM $ _ 31 nmod _ _ 34 3.84 _ NUM CD _ 35 compound _ _ 35 billion _ NUM CD _ 33 nummod _ _ 36 -- _ PUNCT : _ 33 punct _ _ 37 a _ DET DT _ 40 det _ _ 38 12 _ NUM CD _ 39 compound _ _ 39 % _ SYM NN _ 40 amod _ _ 40 boost _ NOUN NN _ 33 dep _ _ 41 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 facilities _ NOUN NNS _ 3 compound _ _ 3 account _ NOUN VBP _ 4 nsubj _ _ 4 includes _ VERB VBZ _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 40 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 for _ ADP IN _ 13 case _ _ 9 Denver _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 ambitious _ ADJ JJ _ 13 amod _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 airport _ NOUN NN _ 5 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 competition _ NOUN NN _ 21 nsubj _ _ 18 for _ ADP IN _ 20 case _ _ 19 these _ DET DT _ 20 det _ _ 20 funds _ NOUN NNS _ 17 nmod _ _ 21 created _ VERB VBN _ 4 conj _ _ 22 shifting _ VERB VBG _ 23 amod _ _ 23 alliances _ NOUN NNS _ 21 dobj _ _ 24 between _ ADP IN _ 26 case _ _ 25 urban _ ADJ JJ _ 26 amod _ _ 26 lawmakers _ NOUN NNS _ 23 nmod _ _ 27 representing _ VERB VBG _ 26 acl _ _ 28 established _ VERB JJ _ 29 amod _ _ 29 airports _ NOUN NNS _ 27 dobj _ _ 30 in _ ADP IN _ 31 case _ _ 31 Philadelphia _ PROPN NNP _ 29 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 Michigan _ PROPN NNP _ 31 conj _ _ 34 and _ CONJ CC _ 29 cc _ _ 35 the _ DET DT _ 37 det _ _ 36 major _ ADJ JJ _ 37 amod _ _ 37 carriers _ NOUN NNS _ 29 conj _ _ 38 to _ ADP TO _ 39 case _ _ 39 Denver _ PROPN NNP _ 37 nmod _ _ 40 , _ PUNCT , _ 37 punct _ _ 41 United _ PROPN NNP _ 37 appos _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 Continental _ PROPN NNP _ 41 conj _ _ 44 . _ PUNCT . _ 4 punct _ _ 1 Leery _ ADJ JJ _ 16 dep _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 costs _ NOUN NNS _ 1 nmod _ _ 5 -- _ PUNCT : _ 9 punct _ _ 6 and _ CONJ CC _ 9 cc _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 critics _ NOUN NNS _ 9 nsubj _ _ 9 say _ VERB VBP _ 4 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 competition _ NOUN NN _ 9 dep _ _ 12 -- _ PUNCT : _ 9 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 airlines _ NOUN NNS _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 sought _ VERB VBN _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 gain _ VERB VB _ 16 xcomp _ _ 19 leverage _ NOUN NN _ 18 dobj _ _ 20 over _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 city _ NOUN NN _ 19 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 Denver _ PROPN NNP _ 22 nmod _ _ 25 . _ PUNCT . _ 16 punct _ _ 1 Texas _ PROPN NNP _ 3 compound _ _ 2 Air _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 owns _ VERB VBZ _ 3 acl:relcl _ _ 7 Continental _ PROPN NNP _ 6 dobj _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 the _ DET DT _ 13 det _ _ 11 Air _ PROPN NNP _ 13 compound _ _ 12 Transport _ PROPN NNP _ 13 compound _ _ 13 Association _ PROPN NNP _ 3 conj _ _ 14 were _ VERB VBD _ 15 cop _ _ 15 prominent _ ADJ JJ _ 0 root _ _ 16 in _ ADP IN _ 17 case _ _ 17 the _ DET DT _ 15 nmod _ _ 18 lobbying _ VERB NN _ 17 amod _ _ 19 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 industry _ NOUN NN _ 3 nsubj _ _ 3 sought _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 impose _ VERB VB _ 3 xcomp _ _ 6 conditions _ NOUN NNS _ 5 dobj _ _ 7 that _ PRON WDT _ 10 nsubj _ _ 8 would _ AUX MD _ 10 aux _ _ 9 have _ AUX VB _ 10 aux _ _ 10 delayed _ VERB VBN _ 6 acl:relcl _ _ 11 funds _ NOUN NNS _ 10 dobj _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 project _ NOUN NN _ 11 nmod _ _ 15 until _ SCONJ IN _ 21 mark _ _ 16 Denver _ PROPN NNP _ 21 nsubj _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 airlines _ NOUN NNS _ 16 conj _ _ 20 had _ AUX VBD _ 21 aux _ _ 21 agreed _ VERB VBN _ 10 advcl _ _ 22 to _ ADP TO _ 23 case _ _ 23 leases _ NOUN NNS _ 21 nmod _ _ 24 for _ ADP IN _ 26 case _ _ 25 50 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 gates _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 this _ PRON DT _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 rejected _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 favor _ NOUN NN _ 4 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 much _ ADV JJ _ 9 advmod _ _ 9 looser _ ADJ JJR _ 10 amod _ _ 10 language _ NOUN NN _ 6 nmod _ _ 11 directing _ VERB VBG _ 10 acl _ _ 12 the _ DET DT _ 14 det _ _ 13 Transportation _ PROPN NNP _ 14 compound _ _ 14 Department _ PROPN NNP _ 11 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 review _ VERB VB _ 11 advcl _ _ 17 the _ DET DT _ 18 det _ _ 18 costs _ NOUN NNS _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 first _ ADJ JJ _ 22 amod _ _ 22 phase _ NOUN NN _ 18 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 expected _ VERB VBN _ 22 acl _ _ 25 to _ PART TO _ 26 mark _ _ 26 cost _ VERB VB _ 24 xcomp _ _ 27 about _ ADV IN _ 28 advmod _ _ 28 $ _ SYM $ _ 26 dobj _ _ 29 2 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 Though _ SCONJ IN _ 2 mark _ _ 2 smaller _ ADJ JJR _ 9 advcl _ _ 3 in _ ADP IN _ 5 case _ _ 4 total _ ADJ JJ _ 5 amod _ _ 5 dollars _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 conference _ NOUN NN _ 9 nsubj _ _ 9 agreed _ VERB VBD _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 preserve _ VERB VB _ 9 xcomp _ _ 12 an _ DET DT _ 14 det _ _ 13 estimated _ VERB VBN _ 14 amod _ _ 14 $ _ SYM $ _ 11 dobj _ _ 15 30.6 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 in _ ADP IN _ 19 case _ _ 18 controversial _ ADJ JJ _ 19 amod _ _ 19 subsidies _ NOUN NNS _ 14 nmod _ _ 20 to _ ADP TO _ 21 case _ _ 21 carriers _ NOUN NNS _ 19 nmod _ _ 22 serving _ VERB VBG _ 21 acl _ _ 23 rural _ ADJ JJ _ 26 amod _ _ 24 or _ CONJ CC _ 23 cc _ _ 25 isolated _ VERB VBN _ 23 conj _ _ 26 airports _ NOUN NNS _ 22 dobj _ _ 27 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 sum _ NOUN NN _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 more _ ADV RBR _ 0 root _ _ 5 than _ ADP IN _ 6 case _ _ 6 double _ ADV JJ _ 4 nmod _ _ 7 what _ PRON WP _ 11 dobj _ _ 8 the _ DET DT _ 9 det _ _ 9 House _ PROPN NNP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 approved _ VERB VBN _ 6 acl:relcl _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 program _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 but _ CONJ CC _ 4 cc _ _ 17 the _ DET DT _ 18 det _ _ 18 list _ NOUN NN _ 24 nsubjpass _ _ 19 of _ ADP IN _ 21 case _ _ 20 qualified _ VERB VBN _ 21 amod _ _ 21 airports _ NOUN NNS _ 18 nmod _ _ 22 would _ AUX MD _ 24 aux _ _ 23 be _ AUX VB _ 24 auxpass _ _ 24 cut _ VERB VBN _ 4 conj _ _ 25 by _ ADP IN _ 26 case _ _ 26 22 _ NUM CD _ 24 nmod _ _ 27 under _ ADP IN _ 30 case _ _ 28 new _ ADJ JJ _ 30 amod _ _ 29 distance _ NOUN NN _ 30 compound _ _ 30 requirements _ NOUN NNS _ 24 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 limits _ NOUN NNS _ 30 conj _ _ 33 on _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 level _ NOUN NN _ 32 nmod _ _ 36 of _ ADP IN _ 37 case _ _ 37 subsidy _ NOUN NN _ 35 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 Congress _ PROPN NNP _ 3 nsubj _ _ 2 previously _ ADV RB _ 3 advmod _ _ 3 cut _ VERB VBD _ 0 root _ _ 4 six _ NUM CD _ 5 nummod _ _ 5 airports _ NOUN NNS _ 3 dobj _ _ 6 this _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 3 nmod:tmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 impact _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 changes _ NOUN NNS _ 2 nmod _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 eliminate _ VERB VB _ 6 xcomp _ _ 9 many _ ADJ JJ _ 8 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 most _ ADV RBS _ 14 advmod _ _ 13 excessive _ ADJ JJ _ 14 amod _ _ 14 cases _ NOUN NNS _ 9 nmod _ _ 15 where _ ADV WRB _ 20 advmod _ _ 16 the _ DET DT _ 17 det _ _ 17 government _ NOUN NN _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 paying _ VERB VBG _ 14 acl:relcl _ _ 21 more _ ADJ JJR _ 23 advmod _ _ 22 than _ ADP IN _ 21 mwe _ _ 23 $ _ SYM $ _ 20 dobj _ _ 24 200 _ NUM CD _ 23 nummod _ _ 25 for _ ADP IN _ 27 case _ _ 26 each _ DET DT _ 27 det _ _ 27 passenger _ NOUN NN _ 20 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 subsidies _ NOUN NNS _ 20 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Among _ ADP IN _ 5 case _ _ 2 rail _ NOUN NN _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 highway _ NOUN NN _ 2 conj _ _ 5 accounts _ NOUN NNS _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 agreement _ NOUN NN _ 9 nsubj _ _ 9 provides _ VERB VBZ _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 615 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 for _ ADP IN _ 14 case _ _ 14 Amtrak _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 including _ VERB VBG _ 17 case _ _ 17 $ _ SYM $ _ 10 nmod _ _ 18 85 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 for _ ADP IN _ 22 case _ _ 21 capital _ NOUN NN _ 22 compound _ _ 22 improvements _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 10 cc _ _ 2 federal-formula _ ADJ JJ _ 3 amod _ _ 3 grants _ NOUN NNS _ 10 nsubjpass _ _ 4 for _ ADP IN _ 6 case _ _ 5 mass _ NOUN NN _ 6 compound _ _ 6 transit _ NOUN NN _ 3 nmod _ _ 7 would _ AUX MD _ 10 aux _ _ 8 be _ AUX VB _ 10 auxpass _ _ 9 effectively _ ADV RB _ 10 advmod _ _ 10 frozen _ VERB VBN _ 0 root _ _ 11 at _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 1.625 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 $ _ SYM $ _ 12 conj _ _ 18 20 _ NUM CD _ 17 compound _ _ 19 million _ NUM CD _ 17 compound _ _ 20 more _ ADJ JJR _ 17 advmod _ _ 21 than _ ADP IN _ 24 case _ _ 22 last _ ADJ JJ _ 23 amod _ _ 23 fiscal _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 17 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 Enjoying _ VERB VBG _ 16 dep _ _ 2 several _ ADJ JJ _ 5 amod _ _ 3 blockbuster _ NOUN NN _ 5 compound _ _ 4 movie _ NOUN NN _ 5 compound _ _ 5 hits _ NOUN VBZ _ 1 dobj _ _ 6 including _ VERB VBG _ 8 case _ _ 7 `` _ PUNCT `` _ 8 punct _ _ 8 Batman _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 11 Los _ PROPN NNP _ 12 amod _ _ 12 Angeles-based _ ADJ JJ _ 15 amod _ _ 13 Guber-Peters _ PROPN NNP _ 15 compound _ _ 14 Entertainment _ PROPN NNP _ 15 compound _ _ 15 Co. _ PROPN NNP _ 16 nsubj _ _ 16 reported _ VERB VBD _ 0 root _ _ 17 earnings _ NOUN NNS _ 16 dobj _ _ 18 for _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 first _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 17 nmod _ _ 22 ended _ VERB VBN _ 21 acl _ _ 23 Aug. _ PROPN NNP _ 22 nmod:tmod _ _ 24 31 _ NUM CD _ 23 nummod _ _ 25 of _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 17 nmod _ _ 27 5.8 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 or _ CONJ CC _ 26 cc _ _ 31 50 _ NUM CD _ 32 nummod _ _ 32 cents _ NOUN NNS _ 26 conj _ _ 33 a _ DET DT _ 34 det _ _ 34 share _ NOUN NN _ 32 nmod:npmod _ _ 35 , _ PUNCT , _ 26 punct _ _ 36 compared _ VERB VBN _ 40 case _ _ 37 with _ ADP IN _ 40 case _ _ 38 a _ DET DT _ 40 det _ _ 39 year-earlier _ ADJ JJ _ 40 amod _ _ 40 loss _ NOUN NN _ 26 conj _ _ 41 . _ PUNCT . _ 16 punct _ _ 1 Sony _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 offered _ VERB VBN _ 2 acl:relcl _ _ 7 to _ PART TO _ 8 mark _ _ 8 acquire _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 11 det _ _ 10 movie-production _ ADJ NN _ 11 amod _ _ 11 company _ NOUN NN _ 8 dobj _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 seeking _ VERB VBG _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 free _ VERB VB _ 14 xcomp _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 top _ ADJ JJ _ 19 amod _ _ 19 executives _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Peter _ PROPN NNP _ 22 compound _ _ 22 Guber _ PROPN NNP _ 19 appos _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 Jon _ PROPN NNP _ 25 compound _ _ 25 Peters _ PROPN NNP _ 22 conj _ _ 26 , _ PUNCT , _ 19 punct _ _ 27 from _ ADP IN _ 30 case _ _ 28 an _ DET DT _ 30 det _ _ 29 exclusive _ ADJ JJ _ 30 amod _ _ 30 agreement _ NOUN NN _ 16 nmod _ _ 31 with _ ADP IN _ 38 case _ _ 32 Time _ PROPN NNP _ 34 compound _ _ 33 Warner _ PROPN NNP _ 34 compound _ _ 34 Inc. _ PROPN NNP _ 38 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 Warner _ PROPN NNP _ 38 compound _ _ 37 Communications _ PROPN NNPS _ 38 compound _ _ 38 Inc. _ PROPN NNP _ 30 nmod _ _ 39 so _ SCONJ IN _ 42 mark _ _ 40 they _ PRON PRP _ 42 nsubj _ _ 41 can _ AUX MD _ 42 aux _ _ 42 run _ VERB VB _ 14 advcl _ _ 43 Columbia _ PROPN NNP _ 46 compound _ _ 44 Pictures _ PROPN NNP _ 46 compound _ _ 45 Entertainment _ PROPN NNP _ 46 compound _ _ 46 Inc _ PROPN NNP _ 42 dobj _ _ 47 . _ PUNCT . _ 14 punct _ _ 1 Sony _ PROPN NNP _ 5 nsubj _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 weeks _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV IN _ 5 advmod _ _ 5 agreed _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 acquire _ VERB VB _ 5 xcomp _ _ 8 Columbia _ PROPN NNP _ 7 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 7 nmod _ _ 11 3.4 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 27 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Warner _ PROPN NNP _ 2 nsubj _ _ 2 sued _ VERB VBD _ 0 root _ _ 3 Sony _ PROPN NNP _ 2 dobj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Guber-Peters _ NOUN NNP _ 3 conj _ _ 6 late _ ADJ RB _ 8 amod _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 week _ NOUN NN _ 2 nmod:tmod _ _ 9 ; _ PUNCT : _ 2 punct _ _ 10 Sony _ PROPN NNP _ 14 nsubj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Guber-Peters _ NOUN NNP _ 10 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 countersued _ VERB VBN _ 2 parataxis _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 charging _ VERB VBG _ 14 xcomp _ _ 17 Warner _ PROPN NNP _ 16 dobj _ _ 18 with _ SCONJ IN _ 19 mark _ _ 19 attempting _ VERB VBG _ 16 advcl _ _ 20 to _ PART TO _ 21 mark _ _ 21 interfere _ VERB VB _ 19 xcomp _ _ 22 in _ ADP IN _ 25 case _ _ 23 Sony _ PROPN NNP _ 25 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 acquisition _ NOUN NN _ 21 nmod _ _ 26 of _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 two _ NUM CD _ 29 nummod _ _ 29 companies _ NOUN NNS _ 25 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 Guber-Peters _ NOUN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 net _ ADJ JJ _ 4 amod _ _ 4 income _ NOUN NN _ 9 nsubj _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 latest _ ADJ JJS _ 8 amod _ _ 8 quarter _ NOUN NN _ 4 nmod _ _ 9 compared _ VERB VBN _ 0 root _ _ 10 with _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 6.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 62 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 in _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 year-earlier _ ADJ JJ _ 28 amod _ _ 28 period _ NOUN NN _ 13 nmod _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 revenue _ NOUN NN _ 5 nsubj _ _ 5 rose _ VERB VBD _ 3 ccomp _ _ 6 138 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 to _ ADP TO _ 10 case _ _ 10 $ _ SYM $ _ 5 nmod _ _ 11 10.9 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 5 nmod _ _ 15 4.6 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 reflecting _ VERB VBG _ 5 advcl _ _ 19 the _ DET DT _ 20 det _ _ 20 success _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 movies _ NOUN NNS _ 20 nmod _ _ 24 `` _ PUNCT `` _ 25 punct _ _ 25 Gorillas _ PROPN NNP _ 23 dep _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 Mist _ PROPN NNP _ 25 nmod _ _ 29 '' _ PUNCT '' _ 25 punct _ _ 30 and _ CONJ CC _ 25 cc _ _ 31 `` _ PUNCT `` _ 25 punct _ _ 32 Rainman _ PROPN NNP _ 25 conj _ _ 33 , _ PUNCT , _ 25 punct _ _ 34 '' _ PUNCT '' _ 25 punct _ _ 35 as _ ADV RB _ 23 cc _ _ 36 well _ ADV RB _ 35 mwe _ _ 37 as _ ADP IN _ 35 mwe _ _ 38 the _ DET DT _ 40 det _ _ 39 box-office _ NOUN NN _ 40 compound _ _ 40 smash _ NOUN VBP _ 23 conj _ _ 41 `` _ PUNCT `` _ 40 punct _ _ 42 Batman _ PROPN NNP _ 40 dep _ _ 43 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 12 nsubj _ _ 3 including _ VERB VBG _ 6 case _ _ 4 Jon _ PROPN NNP _ 6 compound _ _ 5 M. _ PROPN NNP _ 6 compound _ _ 6 Huntsman _ PROPN NNP _ 2 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 Salt _ PROPN NNP _ 10 compound _ _ 9 Lake _ PROPN NNP _ 10 compound _ _ 10 City _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 boosted _ VERB VBD _ 12 ccomp _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 stake _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 20 case _ _ 18 Aristech _ PROPN NNP _ 20 compound _ _ 19 Chemical _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 16 nmod _ _ 21 to _ ADP TO _ 23 case _ _ 22 8.36 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 14 nmod _ _ 24 of _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det:predet _ _ 26 the _ DET DT _ 28 det _ _ 27 common _ ADJ JJ _ 28 amod _ _ 28 shares _ NOUN NNS _ 23 nmod _ _ 29 outstanding _ ADJ JJ _ 28 amod _ _ 30 . _ PUNCT . _ 12 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 previously _ ADV RB _ 3 advmod _ _ 3 reported _ VERB VBN _ 21 advcl _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 Huntsman _ PROPN NNP _ 7 compound _ _ 6 Holdings _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 21 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 owned _ VERB VBN _ 7 acl _ _ 10 by _ ADP IN _ 13 case _ _ 11 Jon _ PROPN NNP _ 13 compound _ _ 12 M. _ PROPN NNP _ 13 compound _ _ 13 Huntsman _ PROPN NNP _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 members _ NOUN NNS _ 13 conj _ _ 17 of _ ADP IN _ 19 case _ _ 18 his _ PRON PRP$ _ 19 nmod:poss _ _ 19 family _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 proposed _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 32 mark _ _ 23 Banstar _ PROPN NNP _ 24 compound _ _ 24 Corp. _ PROPN NNP _ 32 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 an _ DET DT _ 27 det _ _ 27 affiliate _ NOUN NN _ 24 appos _ _ 28 of _ ADP IN _ 30 case _ _ 29 Huntsman _ PROPN NNP _ 30 compound _ _ 30 Holdings _ PROPN NNPS _ 27 nmod _ _ 31 , _ PUNCT , _ 24 punct _ _ 32 acquire _ VERB VB _ 21 ccomp _ _ 33 Aristech _ PROPN NNP _ 32 dobj _ _ 34 in _ ADP IN _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 friendly _ ADJ JJ _ 37 amod _ _ 37 transaction _ NOUN NN _ 32 nmod _ _ 38 for _ ADP IN _ 40 case _ _ 39 $ _ SYM $ _ 40 dep _ _ 40 25-a-share _ ADJ JJ _ 32 nmod _ _ 41 in _ ADP IN _ 42 case _ _ 42 cash _ NOUN NN _ 40 nmod _ _ 43 , _ PUNCT , _ 40 punct _ _ 44 or _ CONJ CC _ 40 cc _ _ 45 $ _ SYM $ _ 40 conj _ _ 46 817.5 _ NUM CD _ 47 compound _ _ 47 million _ NUM CD _ 45 nummod _ _ 48 . _ PUNCT . _ 21 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 filing _ NOUN NN _ 14 nmod _ _ 4 with _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 Securities _ PROPN NNPS _ 9 compound _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Exchange _ PROPN NNP _ 6 conj _ _ 9 Commission _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 Huntsman _ PROPN NNP _ 13 compound _ _ 13 group _ NOUN NN _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 controls _ VERB VBZ _ 14 ccomp _ _ 17 2,720,675 _ NUM CD _ 20 nummod _ _ 18 Aristech _ PROPN NNP _ 20 compound _ _ 19 common _ ADJ JJ _ 20 amod _ _ 20 shares _ NOUN NNS _ 16 dobj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 including _ VERB VBG _ 24 case _ _ 23 306,000 _ NUM CD _ 24 nummod _ _ 24 shares _ NOUN NNS _ 20 nmod _ _ 25 bought _ VERB VBD _ 24 acl _ _ 26 from _ ADP IN _ 27 case _ _ 27 Aug. _ PROPN NNP _ 25 nmod _ _ 28 21 _ NUM CD _ 27 nummod _ _ 29 to _ ADP TO _ 30 case _ _ 30 Oct. _ PROPN NNP _ 27 nmod _ _ 31 13 _ NUM CD _ 30 nummod _ _ 32 for _ ADP IN _ 36 case _ _ 33 $ _ SYM $ _ 36 dep _ _ 34 20 _ NUM CD _ 36 compound _ _ 35 to _ ADP TO _ 36 dep _ _ 36 $ _ SYM $ _ 25 nmod _ _ 37 20.875 _ NUM CD _ 36 nummod _ _ 38 per _ ADP IN _ 39 case _ _ 39 share _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 14 punct _ _ 1 Officials _ NOUN NNS _ 9 nsubj _ _ 2 at _ ADP IN _ 3 case _ _ 3 Aristech _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 based _ VERB VBN _ 3 acl _ _ 6 in _ ADP IN _ 7 case _ _ 7 Pittsburgh _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 declined _ VERB VBD _ 0 root _ _ 10 comment _ NOUN NN _ 9 dobj _ _ 11 . _ PUNCT . _ 9 punct _ _ 1 Congress _ PROPN NNP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ VERB VBN _ 4 cop _ _ 4 critical _ ADJ JJ _ 0 root _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Bush _ PROPN NNP _ 8 compound _ _ 8 administration _ NOUN NN _ 4 nmod _ _ 9 for _ SCONJ IN _ 11 mark _ _ 10 not _ PART RB _ 11 neg _ _ 11 sending _ VERB VBG _ 4 advcl _ _ 12 enough _ ADJ JJ _ 13 amod _ _ 13 aid _ NOUN NN _ 11 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 Poland _ PROPN NNP _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 so _ SCONJ IN _ 20 mark _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 is _ AUX VBZ _ 20 aux _ _ 20 getting _ VERB VBG _ 4 advcl _ _ 21 ready _ ADJ JJ _ 20 xcomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 send _ VERB VB _ 21 xcomp _ _ 24 its _ PRON PRP$ _ 26 nmod:poss _ _ 25 own _ ADJ JJ _ 26 amod _ _ 26 version _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 CARE _ PROPN NNP _ 30 compound _ _ 30 package _ NOUN NN _ 26 nmod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 month _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 Senate _ PROPN NNP _ 6 nsubj _ _ 6 voted _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 send _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 10 det _ _ 10 delegation _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 congressional _ ADJ JJ _ 13 amod _ _ 13 staffers _ NOUN NNS _ 10 nmod _ _ 14 to _ ADP TO _ 15 case _ _ 15 Poland _ PROPN NNP _ 8 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 assist _ VERB VB _ 8 advcl _ _ 18 its _ PRON PRP$ _ 19 nmod:poss _ _ 19 legislature _ NOUN NN _ 17 dobj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 Sejm _ PROPN NNP _ 19 appos _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 in _ ADP IN _ 26 case _ _ 25 democratic _ ADJ JJ _ 26 amod _ _ 26 procedures _ NOUN NNS _ 17 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Senator _ PROPN NNP _ 3 compound _ _ 2 Pete _ PROPN NNP _ 3 compound _ _ 3 Domenici _ PROPN NNP _ 4 nsubj _ _ 4 calls _ VERB VBZ _ 0 root _ _ 5 this _ DET DT _ 6 det _ _ 6 effort _ NOUN NN _ 10 nsubj _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 first _ ADJ JJ _ 10 amod _ _ 10 gift _ NOUN NN _ 4 xcomp _ _ 11 of _ ADP IN _ 12 case _ _ 12 democracy _ NOUN NN _ 10 nmod _ _ 13 . _ PUNCT . _ 10 punct _ _ 14 '' _ PUNCT '' _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Poles _ NOUN NNPS _ 4 nsubj _ _ 3 might _ AUX MD _ 4 aux _ _ 4 do _ VERB VB _ 0 root _ _ 5 better _ ADV JJR _ 4 advmod _ _ 6 to _ PART TO _ 7 mark _ _ 7 view _ VERB VB _ 4 xcomp _ _ 8 it _ PRON PRP _ 7 dobj _ _ 9 as _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 Trojan _ PROPN NNP _ 12 compound _ _ 12 Horse _ PROPN NNP _ 7 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 is _ VERB VBZ _ 6 cop _ _ 3 the _ DET DT _ 6 det _ _ 4 vast _ ADJ JJ _ 6 amod _ _ 5 shadow _ NOUN NN _ 6 compound _ _ 6 government _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 15,000 _ NUM CD _ 10 nummod _ _ 9 congressional _ ADJ JJ _ 10 amod _ _ 10 staffers _ NOUN NNS _ 6 nmod _ _ 11 that _ ADP WDT _ 12 nsubj _ _ 12 helps _ VERB VBZ _ 6 acl:relcl _ _ 13 create _ VERB VB _ 12 ccomp _ _ 14 such _ ADJ JJ _ 16 amod _ _ 15 legislative _ ADJ JJ _ 16 amod _ _ 16 atrocities _ NOUN NNS _ 13 dobj _ _ 17 as _ ADP IN _ 24 case _ _ 18 the _ DET DT _ 24 det _ _ 19 1,376 _ NUM CD _ 24 nummod _ _ 20 page _ NOUN NN _ 24 compound _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 13-pound _ ADJ JJ _ 24 amod _ _ 23 reconciliation _ NOUN NN _ 24 compound _ _ 24 bill _ NOUN NN _ 16 nmod _ _ 25 that _ PRON WDT _ 26 nsubj _ _ 26 claimed _ VERB VBD _ 24 acl:relcl _ _ 27 to _ PART TO _ 30 mark _ _ 28 be _ VERB VB _ 30 cop _ _ 29 the _ DET DT _ 30 det _ _ 30 budget _ NOUN NN _ 26 xcomp _ _ 31 of _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 United _ PROPN NNP _ 34 compound _ _ 34 States _ PROPN NNPS _ 30 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 Maybe _ ADV RB _ 15 advmod _ _ 2 after _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 staffers _ NOUN NNS _ 5 nsubj _ _ 5 explain _ VERB VBP _ 15 advcl _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 work _ NOUN NN _ 5 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 Poles _ NOUN NNPS _ 5 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 'd _ AUX MD _ 15 aux _ _ 14 be _ VERB VB _ 15 cop _ _ 15 willing _ ADJ JJ _ 0 root _ _ 16 to _ PART TO _ 17 mark _ _ 17 come _ VERB VB _ 15 xcomp _ _ 18 back _ ADV RB _ 17 advmod _ _ 19 and _ CONJ CC _ 17 cc _ _ 20 do _ VERB VB _ 17 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 same _ ADJ JJ _ 20 dobj _ _ 23 for _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 American _ ADJ JJ _ 26 amod _ _ 26 people _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 Waterford _ PROPN NNP _ 3 compound _ _ 2 Wedgwood _ PROPN NNP _ 3 compound _ _ 3 PLC _ PROPN NNP _ 17 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 9 det _ _ 6 financially _ ADV RB _ 7 advmod _ _ 7 troubled _ VERB JJ _ 9 amod _ _ 8 Irish _ ADJ JJ _ 9 amod _ _ 9 maker _ NOUN NN _ 3 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 fine _ ADJ NN _ 12 amod _ _ 12 crystal _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Wedgwood _ PROPN NNP _ 15 compound _ _ 15 china _ NOUN NN _ 12 conj _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 reported _ VERB VBD _ 0 root _ _ 18 that _ DET IN _ 27 mark _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 pretax _ ADJ JJ _ 21 amod _ _ 21 loss _ NOUN NN _ 27 nsubj _ _ 22 for _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 first _ ADJ JJ _ 26 amod _ _ 25 six _ NUM CD _ 26 nummod _ _ 26 months _ NOUN NNS _ 21 nmod _ _ 27 widened _ VERB VBD _ 17 ccomp _ _ 28 to _ ADP TO _ 32 case _ _ 29 10.6 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 32 nummod _ _ 31 Irish _ ADJ JJ _ 32 amod _ _ 32 punts _ NOUN NNS _ 27 nmod _ _ 33 -LRB- _ PUNCT -LRB- _ 34 punct _ _ 34 $ _ SYM $ _ 32 dep _ _ 35 14.9 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 -RRB- _ PUNCT -RRB- _ 34 punct _ _ 38 from _ ADP IN _ 42 case _ _ 39 5.8 _ NUM CD _ 40 compound _ _ 40 million _ NUM CD _ 42 nummod _ _ 41 Irish _ ADJ JJ _ 42 amod _ _ 42 punts _ NOUN NNS _ 27 nmod _ _ 43 a _ DET DT _ 44 det _ _ 44 year _ NOUN NN _ 45 nmod:npmod _ _ 45 earlier _ ADV RBR _ 42 advmod _ _ 46 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 results _ NOUN NNS _ 7 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 half _ NOUN NN _ 2 nmod _ _ 6 were _ VERB VBD _ 7 cop _ _ 7 worse _ ADJ JJR _ 0 root _ _ 8 than _ ADP IN _ 10 case _ _ 9 market _ NOUN NN _ 10 compound _ _ 10 expectations _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 13 nsubj _ _ 13 suggested _ VERB VBD _ 10 acl:relcl _ _ 14 an _ DET DT _ 16 det _ _ 15 interim _ ADJ JJ _ 16 amod _ _ 16 loss _ NOUN NN _ 13 dobj _ _ 17 of _ ADP IN _ 22 case _ _ 18 around _ ADV IN _ 20 advmod _ _ 19 10 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 22 nummod _ _ 21 Irish _ ADJ JJ _ 22 amod _ _ 22 punts _ NOUN NNS _ 16 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 a _ DET DT _ 6 det _ _ 3 sharply _ ADV RB _ 4 advmod _ _ 4 weaker _ ADJ JJR _ 6 amod _ _ 5 London _ PROPN NNP _ 6 compound _ _ 6 market _ NOUN NN _ 17 nmod _ _ 7 yesterday _ NOUN NN _ 17 nmod:tmod _ _ 8 , _ PUNCT , _ 17 punct _ _ 9 Waterford _ PROPN NNP _ 10 compound _ _ 10 shares _ NOUN NNS _ 17 nsubj _ _ 11 were _ VERB VBD _ 17 cop _ _ 12 down _ ADV RB _ 17 advmod _ _ 13 15 _ NUM CD _ 14 nummod _ _ 14 pence _ NOUN NN _ 12 nmod:npmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 50 _ NUM CD _ 17 nummod _ _ 17 pence _ NOUN NN _ 0 root _ _ 18 -LRB- _ PUNCT -LRB- _ 20 punct _ _ 19 79 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 17 appos _ _ 21 -RRB- _ PUNCT -RRB- _ 20 punct _ _ 22 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 loss _ NOUN NN _ 3 dobj _ _ 6 after _ ADP IN _ 10 case _ _ 7 taxation _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 minority _ NOUN NN _ 7 conj _ _ 10 interests _ NOUN NNS _ 5 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 14 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 15 nummod _ _ 14 Irish _ ADJ JJ _ 15 amod _ _ 15 punts _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 compared _ VERB VBN _ 20 case _ _ 18 with _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 loss _ NOUN NN _ 5 nmod _ _ 21 of _ ADP IN _ 25 case _ _ 22 9.3 _ NUM CD _ 25 nummod _ _ 23 million _ ADJ CD _ 22 advmod _ _ 24 Irish _ PROPN JJ _ 25 compound _ _ 25 punts _ NOUN NNS _ 20 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 year-earlier _ ADJ JJ _ 29 amod _ _ 29 period _ NOUN NN _ 20 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 any _ DET DT _ 6 det _ _ 5 extraordinary _ ADJ JJ _ 6 amod _ _ 6 items _ NOUN NNS _ 2 nsubj _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 Sales _ NOUN NNS _ 6 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 total _ ADJ JJ _ 5 amod _ _ 5 group _ NOUN NN _ 1 nmod _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 27 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 to _ ADP TO _ 13 case _ _ 10 168.1 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 13 nummod _ _ 12 Irish _ ADJ JJ _ 13 amod _ _ 13 punts _ NOUN NNS _ 6 nmod _ _ 14 compared _ VERB VBN _ 19 case _ _ 15 with _ ADP IN _ 19 case _ _ 16 132.6 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 19 nummod _ _ 18 Irish _ ADJ JJ _ 19 amod _ _ 19 punts _ NOUN NNS _ 6 advcl _ _ 20 a _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 22 nmod:npmod _ _ 22 ago _ ADV RB _ 19 advmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Waterford _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 decided _ VERB VBN _ 0 root _ _ 4 against _ SCONJ IN _ 5 mark _ _ 5 paying _ VERB VBG _ 3 advcl _ _ 6 an _ DET DT _ 8 det _ _ 7 interim _ ADJ JJ _ 8 amod _ _ 8 dividend _ NOUN NN _ 5 dobj _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Waterford _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 appointment _ NOUN NN _ 19 nsubjpass _ _ 5 of _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 new _ ADJ JJ _ 9 amod _ _ 8 management _ NOUN NN _ 9 compound _ _ 9 team _ NOUN NN _ 4 nmod _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 the _ DET DT _ 12 det _ _ 12 signing _ NOUN NN _ 4 conj _ _ 13 of _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 comprehensive _ ADJ JJ _ 17 amod _ _ 16 labor _ NOUN NN _ 17 compound _ _ 17 agreement _ NOUN NN _ 12 nmod _ _ 18 are _ AUX VBP _ 19 auxpass _ _ 19 expected _ VERB VBN _ 2 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 enhance _ VERB VB _ 19 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 company _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 long-term _ ADJ JJ _ 26 amod _ _ 26 prospects _ NOUN NNS _ 21 dobj _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 sudden _ ADJ JJ _ 4 amod _ _ 3 `` _ PUNCT `` _ 4 punct _ _ 4 flight _ NOUN NN _ 16 nsubjpass _ _ 5 to _ ADP TO _ 6 case _ _ 6 quality _ NOUN NN _ 4 nmod _ _ 7 '' _ PUNCT '' _ 4 punct _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 triggered _ VERB VBD _ 4 acl:relcl _ _ 10 Friday _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 explosive _ ADJ JJ _ 14 amod _ _ 13 bond-market _ ADJ NN _ 14 amod _ _ 14 rally _ NOUN NN _ 9 dobj _ _ 15 was _ AUX VBD _ 16 auxpass _ _ 16 reversed _ VERB VBN _ 0 root _ _ 17 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 18 in _ ADP IN _ 25 case _ _ 19 a _ DET DT _ 25 det _ _ 20 `` _ PUNCT `` _ 25 punct _ _ 21 flight _ NOUN NN _ 25 dep _ _ 22 from _ ADP IN _ 23 case _ _ 23 quality _ NOUN NN _ 21 nmod _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 rout _ NOUN NN _ 16 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 setback _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 in _ ADP IN _ 5 case _ _ 5 which _ PRON WDT _ 9 nmod _ _ 6 Treasury _ PROPN NNP _ 8 compound _ _ 7 bond _ NOUN NN _ 8 compound _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 plummeted _ VERB VBD _ 2 acl:relcl _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 reflected _ VERB VBD _ 0 root _ _ 12 a _ DET DT _ 13 det _ _ 13 rebound _ NOUN NN _ 11 dobj _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 profit-taking _ NOUN NN _ 13 conj _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 It _ PRON PRP _ 7 nsubj _ _ 3 was _ VERB VBD _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 pretty _ ADV RB _ 6 advmod _ _ 6 wild _ ADJ JJ _ 7 amod _ _ 7 day _ NOUN NN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 Our _ PRON PRP$ _ 2 nmod:poss _ _ 2 markets _ NOUN NNS _ 5 nsubjpass _ _ 3 were _ AUX VBD _ 5 auxpass _ _ 4 closely _ ADV RB _ 5 advmod _ _ 5 tied _ VERB VBN _ 12 dep _ _ 6 to _ ADP TO _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 stock _ NOUN NN _ 9 compound _ _ 9 market _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 '' _ PUNCT '' _ 5 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Joel _ PROPN NNP _ 14 compound _ _ 14 Kazis _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 manager _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 18 case _ _ 18 trading _ NOUN NN _ 16 nmod _ _ 19 at _ ADP IN _ 24 case _ _ 20 Smith _ PROPN NNP _ 24 compound _ _ 21 Barney _ PROPN NNP _ 24 compound _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 Harris _ PROPN NNP _ 24 conj _ _ 24 Upham _ PROPN NNP _ 16 nmod _ _ 25 & _ CONJ CC _ 24 cc _ _ 26 Co _ PROPN NNP _ 24 conj _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 flight _ NOUN NN _ 10 nsubjpass _ _ 5 to _ ADP TO _ 6 case _ _ 6 quality _ NOUN NN _ 4 nmod _ _ 7 was _ AUX VBD _ 10 auxpass _ _ 8 no _ DET RB _ 9 neg _ _ 9 longer _ ADV RBR _ 10 advmod _ _ 10 needed _ VERB VBN _ 21 dep _ _ 11 once _ SCONJ RB _ 15 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 stock _ NOUN NN _ 14 compound _ _ 14 market _ NOUN NN _ 15 nsubj _ _ 15 found _ VERB VBD _ 10 advcl _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 legs _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 '' _ PUNCT '' _ 10 punct _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 fixed-income _ ADJ JJ _ 3 amod _ _ 3 investors _ NOUN NNS _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 further _ ADJ JJ _ 8 amod _ _ 8 drop _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 after _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 nearly _ ADV RB _ 15 advmod _ _ 15 200-point _ ADJ JJ _ 16 amod _ _ 16 drop _ NOUN NN _ 5 nmod _ _ 17 in _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 Dow _ PROPN NNP _ 22 compound _ _ 20 Jones _ PROPN NNP _ 22 compound _ _ 21 Industrial _ PROPN NNP _ 22 compound _ _ 22 Average _ PROPN NNP _ 16 nmod _ _ 23 on _ ADP IN _ 24 case _ _ 24 Friday _ PROPN NNP _ 16 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 That _ ADP DT _ 2 nsubj _ _ 2 caused _ VERB VBD _ 0 root _ _ 3 investors _ NOUN NNS _ 2 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 flee _ VERB VB _ 2 xcomp _ _ 6 stocks _ NOUN NNS _ 5 dobj _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 buy _ VERB VB _ 5 conj _ _ 9 high-quality _ ADJ JJ _ 11 amod _ _ 10 Treasury _ PROPN NNP _ 11 compound _ _ 11 bonds _ NOUN NNS _ 8 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 15 nsubj _ _ 14 are _ VERB VBP _ 15 cop _ _ 15 safer _ ADJ JJR _ 11 acl:relcl _ _ 16 than _ ADP IN _ 18 case _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 types _ NOUN NNS _ 15 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 securities _ NOUN NNS _ 18 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 when _ ADV WRB _ 4 advmod _ _ 3 stocks _ NOUN NNS _ 4 nsubj _ _ 4 began _ VERB VBD _ 13 advcl _ _ 5 to _ PART TO _ 6 mark _ _ 6 climb _ VERB VB _ 4 xcomp _ _ 7 instead _ ADV RB _ 6 advmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 prices _ NOUN NNS _ 13 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 Treasury _ PROPN NNP _ 12 compound _ _ 12 bonds _ NOUN NNS _ 9 nmod _ _ 13 declined _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Contributing _ VERB VBG _ 0 root _ _ 2 to _ ADP TO _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 selling _ NOUN NN _ 5 compound _ _ 5 pressure _ NOUN NN _ 1 nmod _ _ 6 were _ VERB VBD _ 1 aux _ _ 7 dispatches _ NOUN NNS _ 1 nsubj _ _ 8 by _ ADP IN _ 11 case _ _ 9 several _ ADJ JJ _ 11 amod _ _ 10 investment _ NOUN NN _ 11 compound _ _ 11 firms _ NOUN NNS _ 7 nmod _ _ 12 advising _ VERB VBG _ 7 acl _ _ 13 clients _ NOUN NNS _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 boost _ VERB VB _ 12 xcomp _ _ 16 their _ PRON PRP$ _ 18 nmod:poss _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 holdings _ NOUN NNS _ 15 dobj _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 reduce _ VERB VB _ 15 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 size _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 their _ PRON PRP$ _ 25 nmod:poss _ _ 25 cash _ NOUN NN _ 22 nmod _ _ 26 or _ CONJ CC _ 25 cc _ _ 27 bond _ NOUN NN _ 28 compound _ _ 28 portfolios _ NOUN NNS _ 25 conj _ _ 29 . _ PUNCT . _ 1 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 firms _ NOUN NNS _ 4 nmod _ _ 4 were _ VERB VBD _ 0 root _ _ 5 Merrill _ PROPN NNP _ 6 compound _ _ 6 Lynch _ PROPN NNP _ 4 nsubj _ _ 7 & _ CONJ CC _ 6 cc _ _ 8 Co. _ PROPN NNP _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 Dean _ PROPN NNP _ 13 compound _ _ 11 Witter _ PROPN NNP _ 13 compound _ _ 12 Reynolds _ PROPN NNP _ 13 compound _ _ 13 Inc _ PROPN NNP _ 6 conj _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 bond _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 seemed _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 ignore _ VERB VB _ 4 xcomp _ _ 7 evidence _ NOUN NN _ 6 dobj _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 Federal _ PROPN NNP _ 11 compound _ _ 11 Reserve _ PROPN NNP _ 12 nsubj _ _ 12 eased _ VERB VBD _ 7 ccomp _ _ 13 credit _ NOUN NN _ 14 compound _ _ 14 conditions _ NOUN NNS _ 12 dobj _ _ 15 slightly _ ADV RB _ 12 advmod _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 allowing _ VERB VBG _ 12 advcl _ _ 18 the _ DET DT _ 21 det _ _ 19 federal _ ADJ JJ _ 21 amod _ _ 20 funds _ NOUN NNS _ 21 compound _ _ 21 rate _ NOUN NN _ 17 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 drift _ VERB VB _ 17 xcomp _ _ 24 as _ ADV RB _ 25 advmod _ _ 25 low _ ADJ JJ _ 23 xcomp _ _ 26 as _ ADP IN _ 29 case _ _ 27 8 _ NUM CD _ 28 compound _ _ 28 1/2 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 25 nmod _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 closely _ ADV RB _ 3 advmod _ _ 3 watched _ VERB VBN _ 4 amod _ _ 4 rate _ NOUN NN _ 15 nsubj _ _ 5 on _ ADP IN _ 7 case _ _ 6 federal _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 or _ CONJ CC _ 7 cc _ _ 10 overnight _ ADJ JJ _ 11 amod _ _ 11 loans _ NOUN NNS _ 7 conj _ _ 12 between _ ADP IN _ 13 case _ _ 13 banks _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 slid _ VERB VBD _ 0 root _ _ 16 to _ ADP TO _ 20 case _ _ 17 about _ ADV IN _ 19 advmod _ _ 18 8 _ NUM CD _ 19 compound _ _ 19 3/4 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 15 nmod _ _ 21 last _ ADJ JJ _ 22 amod _ _ 22 week _ NOUN NN _ 15 nmod:tmod _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 down _ ADV RB _ 15 advmod _ _ 25 from _ ADP IN _ 29 case _ _ 26 its _ PRON PRP$ _ 29 nmod:poss _ _ 27 perceived _ VERB VBN _ 29 amod _ _ 28 target _ NOUN NN _ 29 compound _ _ 29 level _ NOUN NN _ 24 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 about _ ADV IN _ 32 advmod _ _ 32 9 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 29 nmod _ _ 34 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rate _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 considered _ VERB VBN _ 0 root _ _ 5 an _ DET DT _ 7 det _ _ 6 early _ ADJ JJ _ 7 amod _ _ 7 signal _ NOUN NN _ 4 xcomp _ _ 8 of _ ADP IN _ 9 case _ _ 9 changes _ NOUN NNS _ 7 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 Fed _ PROPN NNP _ 12 compound _ _ 12 policy _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 yesterday _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 modest _ ADJ JJ _ 6 amod _ _ 6 easing _ NOUN VBG _ 9 nsubj _ _ 7 did _ AUX VBD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 stir _ VERB VB _ 2 ccomp _ _ 10 much _ ADJ JJ _ 11 amod _ _ 11 enthusiasm _ NOUN NN _ 9 dobj _ _ 12 because _ SCONJ IN _ 17 mark _ _ 13 it _ PRON PRP _ 17 nsubjpass _ _ 14 had _ AUX VBD _ 17 aux _ _ 15 been _ AUX VBN _ 17 auxpass _ _ 16 widely _ ADV RB _ 17 advmod _ _ 17 expected _ VERB VBN _ 9 advcl _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 some _ DET DT _ 5 det _ _ 5 economists _ NOUN NNS _ 6 nsubj _ _ 6 contend _ VERB VBP _ 0 root _ _ 7 that _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 latest _ ADJ JJS _ 10 amod _ _ 10 easing _ NOUN VBG _ 11 nsubj _ _ 11 started _ VERB VBN _ 6 ccomp _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 week _ NOUN NN _ 11 nmod:tmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Others _ NOUN NNS _ 2 nsubj _ _ 2 note _ VERB VBP _ 0 root _ _ 3 that _ SCONJ IN _ 7 mark _ _ 4 some _ DET DT _ 5 det _ _ 5 investors _ NOUN NNS _ 7 nsubjpass _ _ 6 were _ AUX VBD _ 7 auxpass _ _ 7 disappointed _ VERB JJ _ 2 ccomp _ _ 8 because _ SCONJ IN _ 11 mark _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 expected _ VERB VBN _ 7 advcl _ _ 12 a _ DET DT _ 15 det _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 aggressive _ ADJ JJ _ 15 amod _ _ 15 easing _ NOUN VBG _ 11 dobj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Treasury _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 benchmark _ NOUN JJ _ 6 compound _ _ 5 30-year _ ADJ JJ _ 6 amod _ _ 6 bond _ NOUN NN _ 8 nsubj _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 ended _ VERB VBD _ 0 root _ _ 9 about _ ADV IN _ 11 advmod _ _ 10 1 _ NUM CD _ 11 compound _ _ 11 3/4 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 13 nmod:npmod _ _ 13 lower _ ADV JJR _ 8 xcomp _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 down _ ADV RB _ 13 advmod _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 $ _ SYM $ _ 16 nmod:npmod _ _ 19 17.50 _ NUM CD _ 18 nummod _ _ 20 for _ ADP IN _ 25 case _ _ 21 each _ DET DT _ 25 det _ _ 22 $ _ SYM $ _ 25 amod _ _ 23 1,000 _ NUM CD _ 22 compound _ _ 24 face _ NOUN NN _ 25 compound _ _ 25 amount _ NOUN NN _ 18 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 reversal _ NOUN NN _ 6 nsubj _ _ 3 was _ VERB VBD _ 6 cop _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 more _ ADV RBR _ 6 advmod _ _ 6 evident _ ADJ JJ _ 0 root _ _ 7 among _ ADP IN _ 10 case _ _ 8 shorter-term _ ADJ JJ _ 10 amod _ _ 9 Treasury _ PROPN NNP _ 10 compound _ _ 10 securities _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 Treasury _ PROPN NNP _ 4 compound _ _ 3 bill _ NOUN NN _ 4 compound _ _ 4 rates _ NOUN NNS _ 5 nsubj _ _ 5 plummeted _ VERB VBD _ 16 advcl _ _ 6 as _ ADV RB _ 9 advmod _ _ 7 much _ ADV JJ _ 9 advmod _ _ 8 as _ ADP IN _ 9 advmod _ _ 9 0.70 _ NUM CD _ 11 nummod _ _ 10 percentage _ NOUN NN _ 11 compound _ _ 11 point _ NOUN NN _ 5 dobj _ _ 12 on _ ADP IN _ 13 case _ _ 13 Friday _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 gave _ VERB VBD _ 0 root _ _ 17 back _ ADV RB _ 16 advmod _ _ 18 three-fourths _ ADJ JJ _ 16 xcomp _ _ 19 of _ ADP IN _ 21 case _ _ 20 that _ DET DT _ 21 det _ _ 21 amount _ NOUN NN _ 18 nmod _ _ 22 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 bond-equivalent _ ADJ JJ _ 3 amod _ _ 3 yield _ NOUN NN _ 13 nsubjpass _ _ 4 on _ ADP IN _ 7 case _ _ 5 three-month _ ADJ JJ _ 7 amod _ _ 6 Treasury _ PROPN NNP _ 7 compound _ _ 7 bills _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 for _ ADP IN _ 10 case _ _ 10 example _ NOUN NN _ 13 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 quoted _ VERB VBN _ 0 root _ _ 14 late _ ADJ RB _ 15 amod _ _ 15 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 16 at _ ADP IN _ 18 case _ _ 17 7.72 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 13 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 7.16 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 13 advcl _ _ 24 Friday _ PROPN NNP _ 23 nmod:tmod _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 Investment-grade _ ADJ JJ _ 3 amod _ _ 2 corporate _ ADJ JJ _ 3 amod _ _ 3 bonds _ NOUN NNS _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 mortgage-backed _ ADJ JJ _ 6 amod _ _ 6 securities _ NOUN NNS _ 3 conj _ _ 7 and _ CONJ CC _ 3 cc _ _ 8 municipal _ ADJ JJ _ 9 amod _ _ 9 bonds _ NOUN NNS _ 3 conj _ _ 10 also _ ADV RB _ 11 advmod _ _ 11 fell _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 But _ CONJ CC _ 16 cc _ _ 2 prices _ NOUN NNS _ 16 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 junk _ NOUN NN _ 5 compound _ _ 5 bonds _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 battered _ VERB VBN _ 5 acl:relcl _ _ 10 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 11 in _ ADP IN _ 14 case _ _ 12 near _ ADJ JJ _ 13 amod _ _ 13 standstill _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 rebounded _ VERB VBD _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 post _ VERB VB _ 16 xcomp _ _ 19 small _ ADJ JJ _ 20 amod _ _ 20 gains _ NOUN NNS _ 18 dobj _ _ 21 after _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 volatile _ ADJ JJ _ 25 amod _ _ 24 trading _ NOUN NN _ 25 compound _ _ 25 session _ NOUN NN _ 18 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 Junk _ NOUN NN _ 2 compound _ _ 2 bonds _ NOUN NNS _ 3 nsubj _ _ 3 opened _ VERB VBD _ 0 root _ _ 4 as _ ADV RB _ 7 advmod _ _ 5 much _ ADV JJ _ 7 advmod _ _ 6 as _ ADP IN _ 7 advmod _ _ 7 four _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 9 nmod:npmod _ _ 9 lower _ ADV JJR _ 3 xcomp _ _ 10 but _ CONJ CC _ 3 cc _ _ 11 staged _ VERB VBD _ 3 conj _ _ 12 a _ DET DT _ 14 det _ _ 13 modest _ ADJ JJ _ 14 amod _ _ 14 comeback _ NOUN NN _ 11 dobj _ _ 15 as _ SCONJ IN _ 18 mark _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 18 nsubj _ _ 18 firmed _ VERB VBD _ 11 advcl _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 high-yield _ ADJ JJ _ 6 amod _ _ 6 market _ NOUN NN _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 helped _ VERB VBN _ 3 ccomp _ _ 9 by _ ADP IN _ 12 case _ _ 10 active _ ADJ JJ _ 12 amod _ _ 11 institutional _ ADJ JJ _ 12 amod _ _ 12 buying _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 particular _ ADJ JJ _ 18 advcl _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 said _ VERB VBD _ 18 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 firms _ NOUN NNS _ 18 nsubj _ _ 8 such _ ADJ JJ _ 12 case _ _ 9 as _ ADP IN _ 8 mwe _ _ 10 First _ PROPN NNP _ 12 compound _ _ 11 Boston _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 7 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Drexel _ PROPN NNP _ 17 compound _ _ 15 Burnham _ PROPN NNP _ 17 compound _ _ 16 Lambert _ PROPN NNP _ 17 compound _ _ 17 Inc. _ PROPN NNP _ 12 conj _ _ 18 began _ VERB VBD _ 0 root _ _ 19 making _ VERB VBG _ 18 xcomp _ _ 20 a _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 19 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 junk _ NOUN NN _ 24 compound _ _ 24 issues _ NOUN NNS _ 21 nmod _ _ 25 early _ ADV RB _ 19 advmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 session _ NOUN NN _ 25 nmod _ _ 29 when _ ADV WRB _ 31 advmod _ _ 30 prices _ NOUN NNS _ 31 nsubj _ _ 31 hit _ VERB VBD _ 19 advcl _ _ 32 severely _ ADV RB _ 33 advmod _ _ 33 depressed _ VERB JJ _ 34 amod _ _ 34 levels _ NOUN NNS _ 31 dobj _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 23 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 willingness _ NOUN NN _ 15 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 securities _ NOUN NNS _ 8 compound _ _ 8 companies _ NOUN NNS _ 5 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 make _ VERB VB _ 5 acl _ _ 11 markets _ NOUN NNS _ 10 dobj _ _ 12 for _ ADP IN _ 14 case _ _ 13 high-yield _ ADJ JJ _ 14 amod _ _ 14 issues _ NOUN NNS _ 10 nmod _ _ 15 improved _ VERB VBD _ 3 ccomp _ _ 16 the _ DET DT _ 17 det _ _ 17 sentiment _ NOUN NN _ 15 dobj _ _ 18 for _ ADP IN _ 20 case _ _ 19 junk _ NOUN NN _ 20 compound _ _ 20 bonds _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 3 punct _ _ 22 '' _ PUNCT '' _ 3 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 John _ PROPN NNP _ 25 compound _ _ 25 Lonski _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 an _ DET DT _ 28 det _ _ 28 economist _ NOUN NN _ 25 appos _ _ 29 at _ ADP IN _ 34 case _ _ 30 Moody _ PROPN NNP _ 34 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 Investors _ PROPN NNPS _ 34 compound _ _ 33 Service _ PROPN NNP _ 34 compound _ _ 34 Inc _ PROPN NNP _ 28 nmod _ _ 35 . _ PUNCT . _ 23 punct _ _ 1 U.S. _ PROPN NNP _ 3 compound _ _ 2 Treasury _ PROPN NNP _ 3 compound _ _ 3 bonds _ NOUN NNS _ 5 nsubj _ _ 4 were _ VERB VBD _ 5 cop _ _ 5 higher _ ADJ JJR _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 overnight _ ADJ JJ _ 8 amod _ _ 8 trading _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Japan _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 which _ PRON WDT _ 13 nsubj _ _ 13 opened _ VERB VBD _ 8 acl:relcl _ _ 14 at _ ADP IN _ 18 case _ _ 15 about _ ADV IN _ 18 advmod _ _ 16 7:30 _ NUM CD _ 18 nummod _ _ 17 p.m. _ NOUN RB _ 18 compound _ _ 18 EDT _ PROPN NNP _ 13 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 benchmark _ NOUN JJ _ 4 compound _ _ 3 30-year _ ADJ JJ _ 4 amod _ _ 4 bond _ NOUN NN _ 8 nsubj _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 for _ ADP IN _ 7 case _ _ 7 example _ NOUN NN _ 8 nmod _ _ 8 rose _ VERB VBD _ 0 root _ _ 9 one _ NUM CD _ 10 nummod _ _ 10 point _ NOUN NN _ 8 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 early _ ADJ JJ _ 14 amod _ _ 13 Japanese _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 8 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 reaction _ NOUN NN _ 8 nmod _ _ 17 to _ ADP TO _ 21 case _ _ 18 a _ DET DT _ 21 det _ _ 19 quick _ ADJ JJ _ 21 amod _ _ 20 600-point _ ADJ JJ _ 21 amod _ _ 21 drop _ NOUN NN _ 16 nmod _ _ 22 in _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Tokyo _ PROPN NNP _ 26 compound _ _ 25 stock _ NOUN NN _ 26 compound _ _ 26 market _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 as _ SCONJ IN _ 5 mark _ _ 3 Japanese _ ADJ JJ _ 4 amod _ _ 4 stocks _ NOUN NNS _ 5 nsubj _ _ 5 rebounded _ VERB VBD _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Treasurys _ PROPN NNPS _ 8 nsubj _ _ 8 retreated _ VERB VBD _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 ended _ VERB VBD _ 8 conj _ _ 11 just _ ADV RB _ 13 advmod _ _ 12 modestly _ ADV RB _ 13 advmod _ _ 13 higher _ ADV JJR _ 10 advmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Many _ ADJ JJ _ 4 amod _ _ 2 U.S. _ PROPN NNP _ 4 compound _ _ 3 trading _ NOUN NN _ 4 compound _ _ 4 operations _ NOUN NNS _ 27 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 wanting _ VERB VBG _ 4 acl _ _ 7 to _ PART TO _ 8 mark _ _ 8 keep _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 11 det _ _ 10 watchful _ ADJ JJ _ 11 amod _ _ 11 eye _ NOUN NN _ 8 dobj _ _ 12 on _ ADP IN _ 14 case _ _ 13 Japanese _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 8 nmod _ _ 15 as _ ADP IN _ 17 case _ _ 16 an _ DET DT _ 17 det _ _ 17 indication _ NOUN NN _ 14 nmod _ _ 18 of _ SCONJ IN _ 23 mark _ _ 19 where _ ADV WRB _ 23 advmod _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 trading _ NOUN NN _ 23 nsubj _ _ 22 would _ AUX MD _ 23 aux _ _ 23 begin _ VERB VB _ 17 acl _ _ 24 , _ PUNCT , _ 4 punct _ _ 25 were _ AUX VBD _ 27 auxpass _ _ 26 fully _ ADV RB _ 27 advmod _ _ 27 staffed _ VERB VBN _ 0 root _ _ 28 during _ ADP IN _ 32 case _ _ 29 the _ DET DT _ 32 det _ _ 30 Tokyo _ PROPN NNP _ 32 compound _ _ 31 trading _ NOUN NN _ 32 compound _ _ 32 session _ NOUN NN _ 27 nmod _ _ 33 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Most _ ADJ JJS _ 10 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 action _ NOUN NN _ 2 nmod _ _ 6 was _ VERB VBD _ 10 cop _ _ 7 during _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 night _ NOUN NN _ 10 compound _ _ 10 session _ NOUN NN _ 13 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Michael _ PROPN NNP _ 15 compound _ _ 15 Moore _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 trading _ NOUN NN _ 18 compound _ _ 18 manager _ NOUN NN _ 15 appos _ _ 19 at _ ADP IN _ 21 case _ _ 20 Continental _ PROPN NNP _ 21 compound _ _ 21 Bank _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Jay _ PROPN NNP _ 2 compound _ _ 2 Goldinger _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 6 nsubj _ _ 5 often _ ADV RB _ 6 advmod _ _ 6 trades _ VERB VBZ _ 2 acl:relcl _ _ 7 overnight _ ADV JJ _ 6 advmod _ _ 8 for _ ADP IN _ 11 case _ _ 9 Capital _ PROPN NNP _ 11 compound _ _ 10 Insight _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 6 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Beverly _ PROPN NNP _ 14 compound _ _ 14 Hills _ PROPN NNP _ 11 appos _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Calif. _ PROPN NNP _ 14 appos _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 trading _ NOUN NN _ 25 nsubj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Tokyo _ PROPN NNP _ 19 nmod _ _ 22 was _ VERB VBD _ 25 cop _ _ 23 `` _ PUNCT `` _ 25 punct _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 active _ ADJ JJ _ 18 ccomp _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 but _ CONJ CC _ 25 cc _ _ 28 highly _ ADV RB _ 29 advmod _ _ 29 volatile _ ADJ JJ _ 25 conj _ _ 30 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 went _ VERB VBD _ 28 dep _ _ 4 down _ ADV RB _ 3 advmod _ _ 5 3/4 _ NUM CD _ 6 nummod _ _ 6 point _ NOUN NN _ 4 nmod:npmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 10 _ NUM CD _ 9 nummod _ _ 9 minutes _ NOUN NNS _ 3 nmod _ _ 10 right _ ADV RB _ 12 advmod _ _ 11 before _ ADP IN _ 12 case _ _ 12 lunch _ NOUN NN _ 3 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 then _ ADV RB _ 18 advmod _ _ 15 after _ ADP IN _ 16 case _ _ 16 lunch _ NOUN NN _ 18 nmod _ _ 17 we _ PRON PRP _ 18 nsubj _ _ 18 went _ VERB VBD _ 3 parataxis _ _ 19 up _ ADV RB _ 18 advmod _ _ 20 3/4 _ NUM CD _ 21 nummod _ _ 21 point _ NOUN NN _ 19 nmod:npmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 12 _ NUM CD _ 24 nummod _ _ 24 minutes _ NOUN NNS _ 18 nmod _ _ 25 , _ PUNCT , _ 3 punct _ _ 26 '' _ PUNCT '' _ 3 punct _ _ 27 he _ PRON PRP _ 28 nsubj _ _ 28 said _ VERB VBD _ 0 root _ _ 29 . _ PUNCT . _ 28 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Tokyo _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 trading _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 halted _ VERB VBN _ 0 root _ _ 7 during _ ADP IN _ 8 case _ _ 8 lunchtime _ NOUN NN _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 Tokyo _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 turned _ VERB VBD _ 0 root _ _ 5 out _ ADP RP _ 4 compound:prt _ _ 6 to _ PART TO _ 10 mark _ _ 7 be _ VERB VB _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 bad _ ADJ JJ _ 10 amod _ _ 10 bellwether _ NOUN NN _ 4 xcomp _ _ 11 for _ ADP IN _ 13 case _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 trading _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 opened _ VERB VBD _ 9 advcl _ _ 5 here _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 bonds _ NOUN NNS _ 8 compound _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 fell _ VERB VBD _ 0 root _ _ 10 as _ SCONJ IN _ 14 mark _ _ 11 the _ DET DT _ 13 det _ _ 12 stock _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 14 nsubj _ _ 14 regained _ VERB VBD _ 9 advcl _ _ 15 strength _ NOUN NN _ 14 dobj _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 bond _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 focus _ NOUN NN _ 11 nsubj _ _ 6 on _ ADP IN _ 8 case _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 activity _ NOUN NN _ 5 nmod _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 so _ ADV RB _ 11 advmod _ _ 11 strong _ ADJ JJ _ 0 root _ _ 12 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 13 that _ SCONJ IN _ 15 mark _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 overshadowed _ VERB VBD _ 11 ccomp _ _ 16 today _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 slate _ NOUN NN _ 15 dobj _ _ 19 of _ ADP IN _ 21 case _ _ 20 economic _ ADJ JJ _ 21 amod _ _ 21 data _ NOUN NNS _ 18 nmod _ _ 22 , _ PUNCT , _ 18 punct _ _ 23 which _ PRON WDT _ 24 nsubj _ _ 24 includes _ VERB VBZ _ 18 acl:relcl _ _ 25 the _ DET DT _ 26 det _ _ 26 government _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 report _ NOUN NN _ 24 dobj _ _ 29 on _ ADP IN _ 33 case _ _ 30 August _ PROPN NNP _ 33 compound _ _ 31 U.S. _ PROPN NNP _ 33 compound _ _ 32 merchandise _ NOUN NN _ 33 compound _ _ 33 trade _ NOUN NN _ 28 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 September _ PROPN NNP _ 37 compound _ _ 36 industrial _ ADJ JJ _ 37 amod _ _ 37 production _ NOUN NN _ 33 conj _ _ 38 . _ PUNCT . _ 11 punct _ _ 1 Industrial _ ADJ JJ _ 2 amod _ _ 2 production _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 have _ AUX VB _ 7 aux _ _ 7 declined _ VERB VBN _ 4 xcomp _ _ 8 0.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 according _ VERB VBG _ 14 case _ _ 12 to _ ADP TO _ 11 mwe _ _ 13 a _ DET DT _ 14 det _ _ 14 consensus _ NOUN NN _ 4 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 economists _ NOUN NNS _ 14 nmod _ _ 17 surveyed _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 23 case _ _ 19 Dow _ PROPN NNP _ 23 compound _ _ 20 Jones _ PROPN NNP _ 23 compound _ _ 21 Capital _ PROPN NNP _ 23 compound _ _ 22 Markets _ PROPN NNPS _ 23 compound _ _ 23 Report _ PROPN NNP _ 17 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 August _ PROPN NNP _ 4 compound _ _ 3 trade _ NOUN NN _ 4 compound _ _ 4 deficit _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 9 mark _ _ 8 have _ AUX VB _ 9 aux _ _ 9 widened _ VERB VBN _ 6 xcomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 9.1 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 9 nmod _ _ 16 7.58 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 19 case _ _ 19 July _ PROPN NNP _ 15 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 widening _ NOUN NN _ 18 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 that _ DET DT _ 5 det _ _ 5 magnitude _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 said _ VERB VBD _ 18 parataxis _ _ 8 one _ NUM CD _ 11 nummod _ _ 9 New _ PROPN NNP _ 11 compound _ _ 10 York _ PROPN NNP _ 11 compound _ _ 11 trader _ NOUN NN _ 7 nsubj _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 is _ VERB VBZ _ 18 cop _ _ 14 `` _ PUNCT `` _ 18 punct _ _ 15 not _ ADV RB _ 18 neg _ _ 16 a _ DET DT _ 18 det _ _ 17 favorable _ ADJ JJ _ 18 amod _ _ 18 number _ NOUN NN _ 0 root _ _ 19 ... _ PUNCT : _ 18 punct _ _ 20 . _ PUNCT . _ 18 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 could _ AUX MD _ 3 aux _ _ 3 do _ VERB VB _ 0 root _ _ 4 damage _ NOUN VB _ 3 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 us _ PRON PRP _ 4 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 agency _ NOUN NN _ 4 compound _ _ 4 supply _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 weigh _ VERB VB _ 6 xcomp _ _ 9 heavily _ ADV RB _ 8 advmod _ _ 10 on _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 market _ NOUN NN _ 8 nmod _ _ 13 today _ NOUN NN _ 8 nmod:tmod _ _ 14 when _ ADV WRB _ 20 advmod _ _ 15 the _ DET DT _ 19 det _ _ 16 Federal _ PROPN NNP _ 19 compound _ _ 17 Home _ PROPN NNP _ 19 compound _ _ 18 Loan _ PROPN NNP _ 19 compound _ _ 19 Bank _ PROPN NNP _ 20 nsubj _ _ 20 prices _ VERB NNS _ 13 acl:relcl _ _ 21 a _ DET DT _ 25 det _ _ 22 $ _ SYM $ _ 25 amod _ _ 23 2.3 _ NUM CD _ 24 compound _ _ 24 billion _ NUM CD _ 22 nummod _ _ 25 offering _ NOUN NN _ 20 dobj _ _ 26 of _ ADP IN _ 34 case _ _ 27 one-year _ ADJ JJ _ 34 amod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 three-year _ ADJ JJ _ 27 conj _ _ 30 , _ PUNCT , _ 27 punct _ _ 31 five-year _ ADJ JJ _ 27 conj _ _ 32 and _ CONJ CC _ 27 cc _ _ 33 10-year _ ADJ JJ _ 27 conj _ _ 34 maturities _ NOUN NNS _ 25 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 Tomorrow _ NOUN NN _ 8 nmod:tmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 Resolution _ PROPN NNP _ 6 compound _ _ 5 Funding _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 provide _ VERB VB _ 0 root _ _ 9 details _ NOUN NNS _ 8 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 its _ PRON PRP$ _ 14 nmod:poss _ _ 12 first _ ADJ JJ _ 14 amod _ _ 13 bond _ NOUN NN _ 14 compound _ _ 14 issue _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 18 nsubjpass _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 expected _ VERB VBN _ 14 acl:relcl _ _ 19 to _ PART TO _ 20 mark _ _ 20 total _ VERB VB _ 18 xcomp _ _ 21 between _ ADP IN _ 22 advmod _ _ 22 $ _ SYM $ _ 20 dobj _ _ 23 4 _ NUM CD _ 24 compound _ _ 24 billion _ NUM CD _ 22 nummod _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 $ _ SYM $ _ 22 conj _ _ 27 6 _ NUM CD _ 28 compound _ _ 28 billion _ NUM CD _ 26 nummod _ _ 29 and _ CONJ CC _ 20 cc _ _ 30 carry _ VERB VB _ 20 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 maturity _ NOUN NN _ 30 dobj _ _ 33 greater _ ADJ JJR _ 32 amod _ _ 34 than _ ADP IN _ 36 case _ _ 35 20 _ NUM CD _ 36 nummod _ _ 36 years _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 8 punct _ _ 1 Resolution _ PROPN NNP _ 2 compound _ _ 2 Funding _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 division _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 Resolution _ PROPN NNP _ 9 compound _ _ 8 Trust _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 the _ DET DT _ 14 det _ _ 12 new _ ADJ JJ _ 14 amod _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 agency _ NOUN NN _ 9 appos _ _ 15 created _ VERB VBN _ 14 acl _ _ 16 to _ PART TO _ 17 mark _ _ 17 bail _ VERB VB _ 15 xcomp _ _ 18 out _ ADP RP _ 17 compound:prt _ _ 19 the _ DET DT _ 20 det _ _ 20 nation _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 troubled _ VERB JJ _ 23 amod _ _ 23 thrifts _ NOUN NNS _ 17 dobj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 8 cc _ _ 2 this _ DET DT _ 3 det _ _ 3 week _ NOUN NN _ 8 nmod:tmod _ _ 4 the _ DET DT _ 7 det _ _ 5 Tennessee _ PROPN NNP _ 7 compound _ _ 6 Valley _ PROPN NNP _ 7 compound _ _ 7 Authority _ PROPN NNP _ 8 nsubj _ _ 8 plans _ VERB VBZ _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 price _ VERB VB _ 8 xcomp _ _ 11 a _ DET DT _ 15 det _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 3 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 offering _ NOUN NN _ 10 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 its _ PRON PRP$ _ 21 nmod:poss _ _ 18 first _ ADJ JJ _ 21 amod _ _ 19 public _ NOUN JJ _ 21 compound _ _ 20 debt _ NOUN NN _ 21 compound _ _ 21 borrowing _ NOUN NN _ 15 appos _ _ 22 in _ ADP IN _ 24 case _ _ 23 15 _ NUM CD _ 24 nummod _ _ 24 years _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 There _ PRON EX _ 4 expl _ _ 3 's _ PART VBZ _ 4 dep _ _ 4 lots _ NOUN NNS _ 13 ccomp _ _ 5 of _ ADP IN _ 6 case _ _ 6 supply _ NOUN NN _ 4 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 '' _ PUNCT '' _ 13 punct _ _ 9 the _ DET DT _ 12 det _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 trader _ NOUN NN _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 couple _ NOUN NN _ 9 nummod _ _ 6 or _ CONJ CC _ 5 cc _ _ 7 three _ NUM CD _ 5 conj _ _ 8 tough _ ADJ JJ _ 9 amod _ _ 9 weeks _ NOUN NNS _ 10 nsubj _ _ 10 coming _ VERB VBG _ 3 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 Treasury _ PROPN NNP _ 2 compound _ _ 2 Securities _ PROPN NNPS _ 0 root _ _ 1 Prices _ PROPN NNS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 Treasury _ PROPN NNP _ 4 compound _ _ 4 bonds _ NOUN NNS _ 1 nmod _ _ 5 tumbled _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 10 case _ _ 7 moderate _ ADJ JJ _ 10 amod _ _ 8 to _ ADP TO _ 9 case _ _ 9 active _ ADJ JJ _ 7 advcl _ _ 10 trading _ NOUN NN _ 5 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 benchmark _ NOUN JJ _ 5 compound _ _ 3 30-year _ ADJ JJ _ 5 amod _ _ 4 Treasury _ PROPN NNP _ 5 compound _ _ 5 bond _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 quoted _ VERB VBN _ 0 root _ _ 8 late _ ADV RB _ 7 advmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 price _ NOUN NN _ 7 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 101 _ NUM CD _ 14 compound _ _ 14 19/32 _ NUM CD _ 11 nmod _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 compared _ VERB VBN _ 20 case _ _ 17 with _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 closing _ NOUN NN _ 20 compound _ _ 20 price _ NOUN NN _ 7 advcl _ _ 21 of _ ADP IN _ 23 case _ _ 22 103 _ NUM CD _ 23 compound _ _ 23 12/32 _ NUM CD _ 20 nmod _ _ 24 Friday _ PROPN NNP _ 20 nmod:tmod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 yield _ NOUN NN _ 7 nsubj _ _ 3 on _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 benchmark _ NOUN JJ _ 6 compound _ _ 6 issue _ NOUN NN _ 2 nmod _ _ 7 rose _ VERB VBD _ 0 root _ _ 8 to _ ADP TO _ 10 case _ _ 9 7.97 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 from _ ADP IN _ 13 case _ _ 12 7.82 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 7 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 latest _ ADJ JJS _ 4 amod _ _ 3 10-year _ ADJ JJ _ 4 amod _ _ 4 notes _ NOUN NNS _ 6 nsubjpass _ _ 5 were _ AUX VBD _ 6 auxpass _ _ 6 quoted _ VERB VBN _ 0 root _ _ 7 late _ ADV RB _ 6 advmod _ _ 8 at _ ADP IN _ 10 case _ _ 9 100 _ NUM CD _ 10 compound _ _ 10 3/32 _ NUM CD _ 6 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 yield _ NOUN NN _ 6 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 7.97 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 compared _ VERB VBN _ 21 case _ _ 19 with _ ADP IN _ 21 case _ _ 20 101 _ NUM CD _ 21 compound _ _ 21 9/32 _ NUM CD _ 6 advcl _ _ 22 to _ PART TO _ 23 mark _ _ 23 yield _ VERB VB _ 21 acl _ _ 24 7.84 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 23 dobj _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 Short-term _ ADJ JJ _ 3 amod _ _ 2 interest _ NOUN NN _ 3 compound _ _ 3 rates _ NOUN NNS _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 yesterday _ NOUN NN _ 4 nmod:tmod _ _ 6 at _ ADP IN _ 13 case _ _ 7 the _ DET DT _ 8 det _ _ 8 government _ NOUN NN _ 13 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 weekly _ ADJ JJ _ 13 amod _ _ 11 Treasury _ PROPN NNP _ 13 compound _ _ 12 bill _ NOUN NN _ 13 compound _ _ 13 auction _ NOUN NN _ 4 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 average _ ADJ JJ _ 4 amod _ _ 3 discount _ NOUN NN _ 4 compound _ _ 4 rate _ NOUN NN _ 12 nsubj _ _ 5 on _ ADP IN _ 9 case _ _ 6 new _ ADJ JJ _ 9 amod _ _ 7 three-month _ ADJ JJ _ 9 amod _ _ 8 Treasury _ PROPN NNP _ 9 compound _ _ 9 bills _ NOUN NNS _ 4 nmod _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 7.37 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 lowest _ ADJ JJS _ 12 appos _ _ 16 since _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 average _ NOUN NN _ 15 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 7.36 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 at _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 auction _ NOUN NN _ 18 nmod _ _ 25 on _ ADP IN _ 26 case _ _ 26 Oct. _ PROPN NNP _ 24 nmod _ _ 27 17 _ NUM CD _ 26 nummod _ _ 28 , _ PUNCT , _ 26 punct _ _ 29 1988 _ NUM CD _ 26 nummod _ _ 30 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 average _ ADJ JJ _ 4 amod _ _ 3 discount _ NOUN NN _ 4 compound _ _ 4 rate _ NOUN NN _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 7.42 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 0 root _ _ 8 on _ ADP IN _ 11 case _ _ 9 new _ ADJ JJ _ 11 amod _ _ 10 six-month _ ADJ JJ _ 11 amod _ _ 11 bills _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 lowest _ ADJ JJS _ 7 appos _ _ 15 since _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 average _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 7.35 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 17 nmod _ _ 21 at _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 auction _ NOUN NN _ 20 nmod _ _ 24 on _ ADP IN _ 25 case _ _ 25 July _ PROPN NNP _ 23 nmod _ _ 26 31 _ NUM CD _ 25 nummod _ _ 27 , _ PUNCT , _ 25 punct _ _ 28 1989 _ NUM CD _ 25 nummod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Here _ ADV RB _ 4 nsubj _ _ 2 are _ VERB VBP _ 4 cop _ _ 3 auction _ NOUN NN _ 4 compound _ _ 4 details _ NOUN NNS _ 0 root _ _ 5 : _ PUNCT : _ 4 punct _ _ 1 Rates _ NOUN NNS _ 3 nsubjpass _ _ 2 are _ AUX VBP _ 3 auxpass _ _ 3 determined _ VERB VBN _ 0 root _ _ 4 by _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 difference _ NOUN NN _ 3 nmod _ _ 7 between _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 purchase _ NOUN NN _ 10 compound _ _ 10 price _ NOUN NN _ 6 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 face _ NOUN NN _ 13 compound _ _ 13 value _ NOUN NN _ 10 conj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Thus _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 higher _ ADJ JJR _ 4 amod _ _ 4 bidding _ NOUN NN _ 5 nsubj _ _ 5 narrows _ VERB VBZ _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 investor _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 return _ NOUN NN _ 5 dobj _ _ 10 while _ SCONJ IN _ 13 mark _ _ 11 lower _ ADJ JJR _ 12 amod _ _ 12 bidding _ NOUN NN _ 13 nsubj _ _ 13 widens _ VERB VBZ _ 5 advcl _ _ 14 it _ PRON PRP _ 13 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 percentage _ NOUN NN _ 3 compound _ _ 3 rates _ NOUN NNS _ 5 nsubjpass _ _ 4 are _ AUX VBP _ 5 auxpass _ _ 5 calculated _ VERB VBN _ 0 root _ _ 6 on _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 360-day _ ADJ JJ _ 9 amod _ _ 9 year _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 while _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 coupon-equivalent _ ADJ JJ _ 14 amod _ _ 14 yield _ NOUN NN _ 16 nsubjpass _ _ 15 is _ AUX VBZ _ 16 auxpass _ _ 16 based _ VERB VBN _ 5 advcl _ _ 17 on _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 365-day _ ADJ JJ _ 20 amod _ _ 20 year _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Both _ DET DT _ 2 det _ _ 2 issues _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 dated _ VERB VBN _ 0 root _ _ 5 Oct. _ PROPN NNP _ 4 nmod:tmod _ _ 6 19 _ NUM CD _ 5 nummod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 13-week _ ADJ JJ _ 3 amod _ _ 3 bills _ NOUN NNS _ 4 nsubj _ _ 4 mature _ VERB VBP _ 0 root _ _ 5 Jan. _ NOUN NNP _ 4 nmod:tmod _ _ 6 18 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1990 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 the _ DET DT _ 13 det _ _ 12 26-week _ ADJ JJ _ 13 amod _ _ 13 bills _ NOUN NNS _ 14 nsubj _ _ 14 mature _ VERB VBP _ 4 conj _ _ 15 April _ PROPN NNP _ 14 nmod:tmod _ _ 16 19 _ NUM CD _ 15 nummod _ _ 17 , _ PUNCT , _ 15 punct _ _ 18 1990 _ NUM CD _ 15 nummod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Corporate _ ADJ JJ _ 2 amod _ _ 2 Issues _ NOUN NNS _ 0 root _ _ 1 Investment-grade _ ADJ JJ _ 3 amod _ _ 2 corporate _ ADJ JJ _ 3 amod _ _ 3 bonds _ NOUN NNS _ 4 nsubj _ _ 4 ended _ VERB VBD _ 0 root _ _ 5 one _ NUM CD _ 8 compound _ _ 6 to _ ADP TO _ 8 dep _ _ 7 1 _ NUM CD _ 8 compound _ _ 8 1/2 _ NUM CD _ 9 nummod _ _ 9 point _ NOUN NN _ 10 nmod:npmod _ _ 10 lower _ ADV JJR _ 4 xcomp _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 issues _ NOUN NNS _ 2 nsubj _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 Foreign _ ADJ JJ _ 2 amod _ _ 2 Bonds _ NOUN NNS _ 0 root _ _ 1 Foreign _ ADJ JJ _ 2 amod _ _ 2 bonds _ NOUN NNS _ 3 nsubj _ _ 3 surged _ VERB VBD _ 0 root _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 dollar _ NOUN NN _ 7 nsubj _ _ 7 weakened _ VERB VBD _ 3 advcl _ _ 8 against _ ADP IN _ 11 case _ _ 9 most _ ADJ JJS _ 11 amod _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 currencies _ NOUN NNS _ 7 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 benchmark _ NOUN JJ _ 3 compound _ _ 3 issues _ NOUN NNS _ 15 nmod _ _ 4 : _ PUNCT : _ 15 punct _ _ 5 -- _ PUNCT : _ 15 punct _ _ 6 Japan _ PROPN NNP _ 12 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 No. _ NOUN NN _ 12 compound _ _ 9 111 _ NUM CD _ 12 nummod _ _ 10 4.6 _ NUM CD _ 11 compound _ _ 11 % _ SYM NN _ 12 amod _ _ 12 bond _ NOUN NN _ 15 nsubj _ _ 13 due _ ADJ JJ _ 12 amod _ _ 14 1998 _ NUM CD _ 13 nmod:tmod _ _ 15 ended _ VERB VBN _ 0 root _ _ 16 on _ ADP IN _ 18 case _ _ 17 brokers _ NOUN NNS _ 18 compound _ _ 18 screens _ NOUN NNS _ 15 nmod _ _ 19 at _ ADP IN _ 20 case _ _ 20 96.15 _ NUM CD _ 15 nmod _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 up _ ADV RB _ 15 advmod _ _ 23 1.17 _ NUM CD _ 24 nummod _ _ 24 point _ NOUN NN _ 22 nmod:npmod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 yield _ NOUN NN _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 5.245 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 -- _ PUNCT : _ 12 punct _ _ 2 West _ PROPN NNP _ 3 compound _ _ 3 Germany _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 6 _ NUM CD _ 6 compound _ _ 6 3/4 _ NUM CD _ 7 dep _ _ 7 % _ SYM NN _ 8 dep _ _ 8 issue _ NOUN NN _ 12 nsubj _ _ 9 due _ ADJ JJ _ 8 amod _ _ 10 June _ PROPN NNP _ 9 nmod:tmod _ _ 11 1999 _ NUM CD _ 10 nummod _ _ 12 ended _ VERB VBD _ 0 root _ _ 13 at _ ADP IN _ 14 case _ _ 14 98.30 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 up _ ADV RB _ 12 advmod _ _ 17 0.91 _ NUM CD _ 18 nummod _ _ 18 point _ NOUN NN _ 16 nmod:npmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 yield _ VERB VB _ 12 xcomp _ _ 21 6.99 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 20 dobj _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 -- _ PUNCT : _ 10 punct _ _ 2 Britain _ PROPN NNP _ 7 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 11 _ NUM CD _ 5 compound _ _ 5 3/4 _ NUM CD _ 6 dep _ _ 6 % _ SYM NN _ 7 dep _ _ 7 bond _ NOUN NN _ 10 nsubj _ _ 8 due _ ADJ JJ _ 7 amod _ _ 9 2003/2007 _ NUM CD _ 8 nmod:tmod _ _ 10 ended _ VERB VBD _ 0 root _ _ 11 1 _ NUM CD _ 12 compound _ _ 12 1/8 _ NUM CD _ 13 nmod:npmod _ _ 13 higher _ ADV JJR _ 10 advmod _ _ 14 at _ ADP IN _ 16 case _ _ 15 111 _ NUM CD _ 16 compound _ _ 16 19/32 _ NUM CD _ 10 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 yield _ VERB VB _ 10 xcomp _ _ 19 10.12 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 while _ SCONJ IN _ 30 mark _ _ 23 the _ DET DT _ 27 det _ _ 24 11 _ NUM CD _ 25 compound _ _ 25 3/4 _ NUM CD _ 26 dep _ _ 26 % _ SYM NN _ 27 dep _ _ 27 notes _ NOUN NNS _ 30 nsubj _ _ 28 due _ ADJ JJ _ 27 amod _ _ 29 1991 _ NUM CD _ 28 nmod:tmod _ _ 30 rose _ VERB VBD _ 10 advcl _ _ 31 21/32 _ NUM CD _ 30 dobj _ _ 32 to _ ADP TO _ 34 case _ _ 33 98 _ NUM CD _ 34 compound _ _ 34 26/32 _ NUM CD _ 30 nmod _ _ 35 to _ PART TO _ 36 mark _ _ 36 yield _ VERB VB _ 30 advcl _ _ 37 12.74 _ NUM CD _ 38 nummod _ _ 38 % _ SYM NN _ 36 dobj _ _ 39 . _ PUNCT . _ 10 punct _ _ 1 Mortgage-Backed _ ADJ NNP _ 2 amod _ _ 2 Securities _ NOUN NNPS _ 0 root _ _ 1 Mortgage _ NOUN NN _ 2 compound _ _ 2 securities _ NOUN NNS _ 3 nsubj _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 up _ ADP RP _ 3 compound:prt _ _ 5 most _ ADJ JJS _ 3 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 Friday _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 gains _ NOUN NNS _ 5 nmod _ _ 10 as _ SCONJ IN _ 13 mark _ _ 11 active _ ADJ JJ _ 12 amod _ _ 12 issues _ NOUN NNS _ 13 nsubj _ _ 13 ended _ VERB VBD _ 3 advcl _ _ 14 24/32 _ NUM CD _ 16 compound _ _ 15 to _ ADP TO _ 16 dep _ _ 16 30/32 _ NUM CD _ 17 nummod _ _ 17 point _ NOUN NN _ 18 nmod:npmod _ _ 18 lower _ ADV JJR _ 13 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Dealers _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 morning _ NOUN NN _ 4 compound _ _ 4 activity _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 hectic _ ADJ JJ _ 2 dep _ _ 7 as _ SCONJ IN _ 9 mark _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 dropped _ VERB VBD _ 6 dep _ _ 10 in _ ADP IN _ 11 case _ _ 11 response _ NOUN NN _ 9 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 gains _ NOUN NNS _ 11 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 losses _ NOUN NNS _ 13 conj _ _ 20 in _ ADP IN _ 22 case _ _ 21 Treasury _ PROPN NNP _ 22 compound _ _ 22 securities _ NOUN NNS _ 19 nmod _ _ 23 , _ PUNCT , _ 6 punct _ _ 24 but _ CONJ CC _ 6 cc _ _ 25 trading _ NOUN NN _ 26 nsubj _ _ 26 slowed _ VERB VBD _ 6 conj _ _ 27 to _ ADP TO _ 29 case _ _ 28 moderate _ ADJ JJ _ 29 amod _ _ 29 levels _ NOUN NNS _ 26 nmod _ _ 30 in _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 afternoon _ NOUN NN _ 26 nmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Government _ PROPN NNP _ 7 compound _ _ 2 National _ PROPN NNP _ 7 compound _ _ 3 Mortgage _ PROPN NNP _ 7 compound _ _ 4 Association _ PROPN NNP _ 7 compound _ _ 5 9 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 securities _ NOUN NNS _ 12 nsubjpass _ _ 8 for _ ADP IN _ 10 case _ _ 9 November _ PROPN NNP _ 10 compound _ _ 10 delivery _ NOUN NN _ 7 nmod _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 quoted _ VERB VBN _ 0 root _ _ 13 late _ ADJ RB _ 14 amod _ _ 14 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 98 _ NUM CD _ 17 compound _ _ 17 4/32 _ NUM CD _ 12 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 down _ ADV RB _ 12 advmod _ _ 20 30/32 _ NUM CD _ 19 nmod:npmod _ _ 21 from _ ADP IN _ 22 case _ _ 22 Friday _ PROPN NNP _ 19 nmod _ _ 23 ; _ PUNCT : _ 12 punct _ _ 24 9 _ NUM CD _ 25 compound _ _ 25 1/2 _ NUM CD _ 26 dep _ _ 26 % _ SYM NN _ 27 dep _ _ 27 securities _ NOUN NNS _ 33 nsubj _ _ 28 were _ VERB VBD _ 33 cop _ _ 29 down _ ADV RB _ 33 advmod _ _ 30 27/32 _ NUM CD _ 29 nmod:npmod _ _ 31 at _ ADP IN _ 33 case _ _ 32 100 _ NUM CD _ 33 compound _ _ 33 5/32 _ NUM CD _ 12 conj _ _ 34 ; _ PUNCT : _ 12 punct _ _ 35 and _ CONJ CC _ 12 cc _ _ 36 10 _ NUM CD _ 37 compound _ _ 37 % _ SYM NN _ 38 amod _ _ 38 securities _ NOUN NNS _ 42 nsubj _ _ 39 were _ VERB VBD _ 42 cop _ _ 40 at _ ADP IN _ 42 case _ _ 41 102 _ NUM CD _ 42 compound _ _ 42 2/32 _ NUM CD _ 12 conj _ _ 43 , _ PUNCT , _ 42 punct _ _ 44 off _ ADJ RB _ 42 advmod _ _ 45 24/32 _ NUM CD _ 44 dep _ _ 46 . _ PUNCT . _ 12 punct _ _ 1 Federal _ PROPN NNP _ 8 compound _ _ 2 Home _ PROPN NNP _ 8 compound _ _ 3 Loan _ PROPN NNP _ 8 compound _ _ 4 Mortgage _ PROPN NNP _ 8 compound _ _ 5 Corp. _ PROPN NNP _ 8 compound _ _ 6 9 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 8 amod _ _ 8 securities _ NOUN NNS _ 12 nsubj _ _ 9 were _ VERB VBD _ 12 cop _ _ 10 at _ ADP IN _ 12 case _ _ 11 97 _ NUM CD _ 12 compound _ _ 12 1/4 _ NUM CD _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 down _ ADV RB _ 12 advmod _ _ 15 3/4 _ NUM CD _ 14 nmod:npmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Friday _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 mortgage _ NOUN NN _ 5 compound _ _ 5 issues _ NOUN NNS _ 6 nsubj _ _ 6 gained _ VERB VBD _ 0 root _ _ 7 as _ ADV RB _ 8 advmod _ _ 8 much _ ADV JJ _ 6 advmod _ _ 9 as _ ADP IN _ 11 case _ _ 10 1 _ NUM CD _ 11 compound _ _ 11 5/32 _ NUM CD _ 8 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Late _ ADJ RB _ 2 amod _ _ 2 yesterday _ NOUN NN _ 9 nmod:tmod _ _ 3 Ginnie _ PROPN NNP _ 7 compound _ _ 4 Mae _ PROPN NNP _ 7 compound _ _ 5 9 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 securities _ NOUN NNS _ 9 nsubj _ _ 8 were _ AUX VBD _ 9 aux _ _ 9 yielding _ VERB VBG _ 0 root _ _ 10 9.39 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 to _ ADP TO _ 17 case _ _ 13 a _ DET DT _ 17 det _ _ 14 12-year _ ADJ JJ _ 17 amod _ _ 15 average _ NOUN JJ _ 17 compound _ _ 16 life _ NOUN NN _ 17 compound _ _ 17 assumption _ NOUN NN _ 9 nmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 as _ SCONJ IN _ 27 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 spread _ NOUN NN _ 27 nsubj _ _ 22 above _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Treasury _ PROPN NNP _ 26 compound _ _ 25 10-year _ ADJ JJ _ 26 amod _ _ 26 note _ NOUN NN _ 21 nmod _ _ 27 narrowed _ VERB VBD _ 9 advcl _ _ 28 0.01 _ NUM CD _ 30 nummod _ _ 29 percentage _ NOUN NN _ 30 compound _ _ 30 point _ NOUN NN _ 27 dobj _ _ 31 to _ ADP TO _ 32 case _ _ 32 1.42 _ NUM CD _ 27 nmod _ _ 33 . _ PUNCT . _ 9 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 there _ PRON EX _ 4 expl _ _ 4 were _ VERB VBD _ 2 ccomp _ _ 5 some _ DET DT _ 7 det _ _ 6 busy _ ADJ JJ _ 7 amod _ _ 7 dealings _ NOUN NNS _ 4 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 Freddie _ PROPN NNP _ 10 compound _ _ 10 Mac _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Federal _ PROPN NNP _ 16 compound _ _ 13 National _ PROPN NNP _ 16 compound _ _ 14 Mortgage _ PROPN NNP _ 16 compound _ _ 15 Association _ PROPN NNP _ 16 compound _ _ 16 securities _ NOUN NNS _ 10 conj _ _ 17 because _ SCONJ IN _ 32 mark _ _ 18 underwriters _ NOUN NNS _ 32 nsubj _ _ 19 from _ ADP IN _ 24 case _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 week _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 heavy _ ADJ JJ _ 24 amod _ _ 24 slate _ NOUN NN _ 18 nmod _ _ 25 of _ ADP IN _ 31 case _ _ 26 real _ ADJ JJ _ 31 amod _ _ 27 estate _ NOUN NN _ 31 compound _ _ 28 mortgage _ NOUN NN _ 31 compound _ _ 29 investment _ NOUN NN _ 31 compound _ _ 30 conduit _ NOUN NN _ 31 compound _ _ 31 issues _ NOUN NNS _ 24 nmod _ _ 32 moved _ VERB VBD _ 4 advcl _ _ 33 to _ PART TO _ 34 mark _ _ 34 gather _ VERB VB _ 32 xcomp _ _ 35 collateral _ NOUN NN _ 34 dobj _ _ 36 for _ ADP IN _ 38 case _ _ 37 new _ ADJ JJ _ 38 amod _ _ 38 deals _ NOUN NNS _ 35 nmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Offsetting _ VERB VBG _ 0 root _ _ 2 the _ DET DT _ 4 det _ _ 3 Remic-related _ ADJ JJ _ 4 amod _ _ 4 purchases _ NOUN NNS _ 1 dobj _ _ 5 were _ VERB VBD _ 1 aux _ _ 6 continued _ VERB VBN _ 8 amod _ _ 7 heavy _ ADJ JJ _ 8 amod _ _ 8 sales _ NOUN NNS _ 1 nsubj _ _ 9 by _ ADP IN _ 11 case _ _ 10 mortgage _ NOUN NN _ 11 compound _ _ 11 originators _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 which _ PRON WDT _ 15 nsubj _ _ 14 are _ AUX VBP _ 15 aux _ _ 15 producing _ VERB VBG _ 8 acl:relcl _ _ 16 increased _ VERB VBN _ 17 amod _ _ 17 amounts _ NOUN NNS _ 15 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 fixed-rate _ ADJ JJ _ 21 amod _ _ 20 mortgage-backed _ ADJ JJ _ 21 amod _ _ 21 issues _ NOUN NNS _ 17 nmod _ _ 22 with _ ADP IN _ 24 case _ _ 23 lower _ ADJ JJR _ 24 amod _ _ 24 rates _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 1 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 was _ VERB VBD _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 new-issue _ ADJ JJ _ 5 amod _ _ 5 activity _ NOUN NN _ 2 nsubj _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 derivative _ ADJ JJ _ 9 amod _ _ 9 market _ NOUN NN _ 2 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 Municipals _ NOUN NNS _ 0 root _ _ 1 Rebounding _ VERB VBG _ 2 amod _ _ 2 stocks _ NOUN NNS _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 weaker _ ADJ JJR _ 6 amod _ _ 5 Treasury _ PROPN NNP _ 6 compound _ _ 6 prices _ NOUN NNS _ 2 conj _ _ 7 drove _ VERB VBD _ 0 root _ _ 8 municipal _ ADJ JJ _ 9 amod _ _ 9 bonds _ NOUN NNS _ 7 dobj _ _ 10 1/4 _ NUM CD _ 12 compound _ _ 11 to _ ADP TO _ 12 dep _ _ 12 3/4 _ NUM CD _ 13 nummod _ _ 13 point _ NOUN NN _ 14 nmod:npmod _ _ 14 lower _ ADV RBR _ 7 advmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 late _ ADJ JJ _ 17 amod _ _ 17 dealings _ NOUN NNS _ 7 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 session _ NOUN NN _ 3 compound _ _ 3 losses _ NOUN NNS _ 4 nsubj _ _ 4 left _ VERB VBD _ 0 root _ _ 5 municipal _ ADJ JJ _ 7 amod _ _ 6 dollar _ NOUN NN _ 7 compound _ _ 7 bonds _ NOUN NNS _ 8 nsubj _ _ 8 close _ ADJ JJ _ 4 xcomp _ _ 9 to _ ADP TO _ 12 mark _ _ 10 where _ ADV WRB _ 12 advmod _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 were _ VERB VBD _ 8 advcl _ _ 13 before _ SCONJ IN _ 24 mark _ _ 14 the _ DET DT _ 16 det _ _ 15 190.58-point _ ADJ JJ _ 16 amod _ _ 16 drop _ NOUN NN _ 24 nsubj _ _ 17 in _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 Dow _ PROPN NNP _ 22 compound _ _ 20 Jones _ PROPN NNP _ 22 compound _ _ 21 Industrial _ PROPN NNP _ 22 compound _ _ 22 Average _ PROPN NNP _ 16 nmod _ _ 23 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 24 prompted _ VERB VBD _ 12 advcl _ _ 25 a _ DET DT _ 28 det _ _ 26 capital _ NOUN NN _ 28 compound _ _ 27 markets _ NOUN NNS _ 28 compound _ _ 28 rally _ NOUN NN _ 24 dobj _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Trading _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 hectic _ ADJ JJ _ 0 root _ _ 4 during _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 morning _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 with _ SCONJ IN _ 10 mark _ _ 9 players _ NOUN NNS _ 10 nsubj _ _ 10 trying _ VERB VBG _ 3 advcl _ _ 11 to _ PART TO _ 12 mark _ _ 12 gauge _ VERB VB _ 10 xcomp _ _ 13 whether _ SCONJ IN _ 16 mark _ _ 14 equities _ NOUN NNS _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 continue _ VERB VB _ 12 ccomp _ _ 17 Friday _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 free _ ADJ JJ _ 20 amod _ _ 20 fall _ NOUN NN _ 16 nmod:tmod _ _ 21 or _ CONJ CC _ 16 cc _ _ 22 stabilize _ VERB VB _ 16 conj _ _ 23 after _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 brief _ ADJ JJ _ 26 amod _ _ 26 spot _ NOUN NN _ 22 nmod _ _ 27 of _ ADP IN _ 28 case _ _ 28 weakness _ NOUN NN _ 26 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Tax-exempts _ NOUN NNS _ 2 nsubj _ _ 2 started _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 session _ NOUN NN _ 2 dobj _ _ 5 flat _ ADJ JJ _ 2 xcomp _ _ 6 to _ ADP TO _ 9 case _ _ 7 a _ DET DT _ 8 det _ _ 8 touch _ NOUN NN _ 9 nmod:npmod _ _ 9 higher _ ADV JJR _ 5 advcl _ _ 10 on _ ADP IN _ 11 case _ _ 11 anticipation _ NOUN NN _ 2 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 further _ ADJ JJ _ 16 amod _ _ 14 stock _ NOUN NN _ 16 compound _ _ 15 market _ NOUN NN _ 16 compound _ _ 16 erosion _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 but _ CONJ CC _ 2 cc _ _ 19 bond _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 22 nsubj _ _ 21 rapidly _ ADV RB _ 22 advmod _ _ 22 turned _ VERB VBD _ 2 conj _ _ 23 south _ ADJ RB _ 22 advmod _ _ 24 as _ SCONJ IN _ 26 mark _ _ 25 it _ PRON PRP _ 26 nsubj _ _ 26 became _ VERB VBD _ 22 advcl _ _ 27 more _ ADV RBR _ 28 advmod _ _ 28 clear _ ADJ JJ _ 26 xcomp _ _ 29 that _ SCONJ IN _ 40 mark _ _ 30 a _ DET DT _ 31 det _ _ 31 repeat _ NOUN NN _ 40 nsubj _ _ 32 of _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 October _ PROPN NNP _ 36 compound _ _ 35 1987 _ NUM CD _ 36 nummod _ _ 36 crash _ NOUN NN _ 31 nmod _ _ 37 was _ VERB VBD _ 40 cop _ _ 38 n't _ PART RB _ 40 neg _ _ 39 at _ ADP IN _ 40 case _ _ 40 hand _ NOUN NN _ 28 ccomp _ _ 41 . _ PUNCT . _ 2 punct _ _ 1 Professionals _ NOUN NNS _ 2 nsubj _ _ 2 dominated _ VERB VBD _ 0 root _ _ 3 municipal _ ADJ JJ _ 4 amod _ _ 4 trading _ NOUN NN _ 2 dobj _ _ 5 throughout _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 session _ NOUN NN _ 2 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 retail _ ADJ JJ _ 4 amod _ _ 4 investors _ NOUN NNS _ 5 nsubj _ _ 5 seemed _ VERB VBD _ 2 ccomp _ _ 6 to _ PART TO _ 8 mark _ _ 7 be _ AUX VB _ 8 aux _ _ 8 hugging _ VERB VBG _ 5 xcomp _ _ 9 the _ DET DT _ 10 det _ _ 10 sidelines _ NOUN NNS _ 8 dobj _ _ 11 until _ SCONJ IN _ 17 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 measure _ NOUN NN _ 17 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 volatility _ NOUN NN _ 13 nmod _ _ 16 is _ AUX VBZ _ 17 aux _ _ 17 wrung _ VERB VBN _ 8 advcl _ _ 18 out _ ADP IN _ 17 compound:prt _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 Jersey _ PROPN NNP _ 4 compound _ _ 3 Turnpike _ PROPN NNP _ 4 compound _ _ 4 Authority _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 7.20 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 8 amod _ _ 8 issue _ NOUN NN _ 17 nsubj _ _ 9 of _ ADP IN _ 10 case _ _ 10 2018 _ NUM CD _ 8 nmod _ _ 11 was _ VERB VBD _ 17 cop _ _ 12 off _ ADJ RB _ 17 advmod _ _ 13 3/4 _ NUM CD _ 12 dep _ _ 14 at _ ADP IN _ 17 case _ _ 15 98 _ NUM CD _ 16 compound _ _ 16 1/2 _ NUM CD _ 17 nummod _ _ 17 bid _ NOUN NN _ 0 root _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 yielding _ VERB VBG _ 17 xcomp _ _ 20 7.32 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 up _ ADV IN _ 19 advmod _ _ 24 0.07 _ NUM CD _ 26 nummod _ _ 25 percentage _ NOUN NN _ 26 compound _ _ 26 point _ NOUN NN _ 23 nmod:npmod _ _ 27 from _ ADP IN _ 29 case _ _ 28 late _ ADJ JJ _ 29 amod _ _ 29 Friday _ PROPN NNP _ 23 nmod _ _ 30 . _ PUNCT . _ 17 punct _ _ 1 Florida _ PROPN NNP _ 2 compound _ _ 2 Board _ PROPN NNP _ 9 nmod:poss _ _ 3 of _ ADP IN _ 4 case _ _ 4 Education _ PROPN NNP _ 2 nmod _ _ 5 's _ PART POS _ 2 case _ _ 6 7 _ NUM CD _ 7 compound _ _ 7 1/4 _ NUM CD _ 8 dep _ _ 8 % _ SYM NN _ 9 dep _ _ 9 issue _ NOUN NN _ 15 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 2023 _ NUM CD _ 9 nmod _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 5/8 _ NUM CD _ 14 nummod _ _ 14 point _ NOUN NN _ 15 nmod:npmod _ _ 15 weaker _ ADJ JJR _ 0 root _ _ 16 at _ ADP IN _ 19 case _ _ 17 99 _ NUM CD _ 18 compound _ _ 18 1/2 _ NUM CD _ 19 nummod _ _ 19 bid _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 7 _ NUM CD _ 3 compound _ _ 3 1/8 _ NUM CD _ 4 dep _ _ 4 % _ SYM NN _ 5 dep _ _ 5 issue _ NOUN NN _ 25 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 Triborough _ PROPN NNP _ 8 compound _ _ 8 Bridge _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Tunnel _ PROPN NN _ 11 compound _ _ 11 Authority _ PROPN NNP _ 8 conj _ _ 12 of _ ADP IN _ 14 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 8 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 due _ ADJ JJ _ 5 amod _ _ 17 2019 _ NUM CD _ 16 nmod:tmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 was _ VERB VBD _ 25 cop _ _ 20 off _ ADJ RB _ 25 advmod _ _ 21 5/8 _ NUM CD _ 20 dep _ _ 22 at _ ADP IN _ 25 case _ _ 23 98 _ NUM CD _ 24 compound _ _ 24 1/8 _ NUM CD _ 25 nummod _ _ 25 bid _ NOUN NN _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 And _ CONJ CC _ 22 cc _ _ 2 Fairfax _ PROPN NNP _ 8 dep _ _ 3 County _ PROPN NNP _ 2 compound _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 Va. _ PROPN NNP _ 2 dep _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 Water _ PROPN NNP _ 8 compound _ _ 8 Authority _ PROPN NNP _ 13 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 7 _ NUM CD _ 11 compound _ _ 11 1/4 _ NUM CD _ 12 dep _ _ 12 % _ SYM NN _ 13 dep _ _ 13 issue _ NOUN NN _ 22 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 2027 _ NUM CD _ 13 nmod _ _ 16 was _ VERB VBD _ 22 cop _ _ 17 down _ ADV RB _ 22 advmod _ _ 18 3/4 _ NUM CD _ 17 nmod:npmod _ _ 19 at _ ADP IN _ 22 case _ _ 20 99 _ NUM CD _ 21 compound _ _ 21 7/8 _ NUM CD _ 22 nummod _ _ 22 bid _ NOUN NN _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 Serial _ ADJ JJ _ 3 amod _ _ 2 bond _ NOUN NN _ 3 compound _ _ 3 yields _ NOUN NNS _ 4 nsubj _ _ 4 were _ VERB VBD _ 0 root _ _ 5 up _ ADV RB _ 4 advmod _ _ 6 about _ ADV RB _ 7 advmod _ _ 7 0.05 _ NUM CD _ 9 nummod _ _ 8 percentage _ NOUN NN _ 9 compound _ _ 9 point _ NOUN NN _ 5 nmod:npmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 BMA _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Kansas _ PROPN NNP _ 5 compound _ _ 5 City _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mo. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 's _ AUX VBZ _ 12 aux _ _ 12 weighing _ VERB VBG _ 9 ccomp _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 strategic _ ADJ JJ _ 15 amod _ _ 15 alternatives _ NOUN NNS _ 12 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 '' _ PUNCT '' _ 15 punct _ _ 18 for _ ADP IN _ 25 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 Business _ PROPN NN _ 21 compound _ _ 21 Men _ PROPN NN _ 25 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 Assurance _ PROPN NNP _ 25 compound _ _ 24 Co. _ PROPN NNP _ 25 compound _ _ 25 unit _ NOUN NN _ 15 nmod _ _ 26 , _ PUNCT , _ 12 punct _ _ 27 and _ CONJ CC _ 12 cc _ _ 28 is _ AUX VBZ _ 29 aux _ _ 29 contacting _ VERB VBG _ 12 conj _ _ 30 possible _ ADJ JJ _ 31 amod _ _ 31 buyers _ NOUN NNS _ 29 dobj _ _ 32 of _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 life _ NOUN NN _ 31 nmod _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 health _ NOUN NN _ 38 compound _ _ 37 insurance _ NOUN NN _ 38 compound _ _ 38 operation _ NOUN NN _ 34 conj _ _ 39 . _ PUNCT . _ 9 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 BMA _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 `` _ PUNCT `` _ 11 punct _ _ 6 runaway _ ADJ JJ _ 8 amod _ _ 7 medical _ ADJ JJ _ 8 amod _ _ 8 costs _ NOUN NNS _ 11 nsubj _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 made _ VERB VBN _ 4 dep _ _ 12 health _ NOUN NN _ 13 compound _ _ 13 insurance _ NOUN NN _ 17 dep _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 significant _ ADJ JJ _ 17 amod _ _ 17 challenge _ NOUN NN _ 11 xcomp _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 '' _ PUNCT '' _ 17 punct _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 margins _ NOUN NNS _ 25 nsubjpass _ _ 22 also _ ADV RB _ 25 advmod _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 pinched _ VERB VBN _ 11 conj _ _ 26 by _ ADP IN _ 27 case _ _ 27 changes _ NOUN NNS _ 25 nmod _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 mix _ NOUN NN _ 27 nmod _ _ 31 of _ ADP IN _ 33 case _ _ 32 life-insurance _ ADJ NN _ 33 amod _ _ 33 products _ NOUN NNS _ 30 nmod _ _ 34 consumers _ NOUN NNS _ 36 nsubj _ _ 35 now _ ADV RB _ 36 advmod _ _ 36 demand _ VERB VBP _ 33 acl:relcl _ _ 37 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Business _ PROPN NN _ 3 compound _ _ 3 Men _ PROPN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Assurance _ PROPN NNP _ 6 compound _ _ 6 unit _ NOUN NN _ 7 nsubj _ _ 7 represented _ VERB VBD _ 35 ccomp _ _ 8 about _ ADV IN _ 9 advmod _ _ 9 $ _ SYM $ _ 7 dobj _ _ 10 288 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 9 nmod _ _ 15 's _ PART POS _ 14 case _ _ 16 $ _ SYM $ _ 14 nummod _ _ 17 488 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 21 case _ _ 20 1988 _ NUM CD _ 21 nummod _ _ 21 revenue _ NOUN NN _ 14 nmod _ _ 22 , _ PUNCT , _ 7 punct _ _ 23 and _ CONJ CC _ 7 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 unit _ NOUN NN _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 operating _ VERB NN _ 28 amod _ _ 28 income _ NOUN NN _ 31 nsubj _ _ 29 was _ VERB VBD _ 31 cop _ _ 30 about _ ADV IN _ 31 advmod _ _ 31 $ _ SYM $ _ 7 conj _ _ 32 10 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 , _ PUNCT , _ 35 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 the _ DET DT _ 37 det _ _ 37 spokesman _ NOUN NN _ 35 nsubj _ _ 38 . _ PUNCT . _ 35 punct _ _ 1 BMA _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 investment _ NOUN NN _ 4 compound _ _ 4 banker _ NOUN NN _ 15 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Alex _ PROPN NNP _ 8 compound _ _ 7 . _ PUNCT . _ 8 punct _ _ 8 Brown _ PROPN NNP _ 4 appos _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Sons _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 authorized _ VERB VBN _ 0 root _ _ 16 to _ PART TO _ 17 mark _ _ 17 contact _ VERB VB _ 15 xcomp _ _ 18 possible _ ADJ JJ _ 19 amod _ _ 19 buyers _ NOUN NNS _ 17 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 unit _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 15 punct _ _ 1 Laidlaw _ PROPN NNP _ 3 compound _ _ 2 Transportation _ PROPN NNP _ 3 compound _ _ 3 Ltd. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 raised _ VERB VBD _ 4 ccomp _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 stake _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 ADT _ PROPN NN _ 11 compound _ _ 11 Ltd. _ PROPN NNP _ 8 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 Bermuda _ PROPN NNP _ 11 nmod _ _ 14 to _ ADP TO _ 16 case _ _ 15 29.4 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 6 nmod _ _ 17 from _ ADP IN _ 19 case _ _ 18 28 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 6 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Laidlaw _ PROPN NNP _ 2 nmod _ _ 5 declined _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 disclose _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 price _ NOUN NN _ 7 dobj _ _ 10 the _ DET DT _ 12 det _ _ 11 Toronto _ PROPN NNP _ 12 compound _ _ 12 transportation _ NOUN NN _ 17 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 waste _ NOUN NN _ 16 compound _ _ 15 services _ NOUN NNS _ 16 compound _ _ 16 concern _ NOUN NN _ 12 conj _ _ 17 paid _ VERB VBN _ 9 acl:relcl _ _ 18 for _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 additional _ ADJ JJ _ 21 amod _ _ 21 shares _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 which _ PRON WDT _ 25 dobj _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 said _ VERB VBD _ 21 acl:relcl _ _ 26 were _ AUX VBD _ 27 auxpass _ _ 27 acquired _ VERB VBN _ 25 ccomp _ _ 28 `` _ PUNCT `` _ 32 punct _ _ 29 over _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 last _ ADJ JJ _ 32 amod _ _ 32 couple _ NOUN NN _ 27 nmod _ _ 33 of _ ADP IN _ 34 case _ _ 34 weeks _ NOUN NNS _ 32 nmod _ _ 35 . _ PUNCT . _ 32 punct _ _ 36 '' _ PUNCT '' _ 32 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Laidlaw _ PROPN NNP _ 7 nsubj _ _ 5 would _ AUX MD _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 increase _ VERB VB _ 3 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 stake _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 ADT _ PROPN NN _ 9 nmod _ _ 12 beyond _ ADP IN _ 14 case _ _ 13 30 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 7 nmod _ _ 15 `` _ PUNCT `` _ 19 punct _ _ 16 without _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 great _ ADJ JJ _ 19 amod _ _ 19 deal _ NOUN NN _ 7 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 thought _ NOUN NN _ 19 nmod _ _ 22 '' _ PUNCT '' _ 19 punct _ _ 23 because _ ADP IN _ 27 case _ _ 24 of _ ADP IN _ 23 mwe _ _ 25 British _ ADJ JJ _ 27 amod _ _ 26 takeover _ NOUN NN _ 27 compound _ _ 27 regulations _ NOUN NNS _ 7 nmod _ _ 28 that _ PRON WDT _ 29 nsubj _ _ 29 require _ VERB VBP _ 27 acl:relcl _ _ 30 a _ DET DT _ 31 det _ _ 31 company _ NOUN NN _ 29 dobj _ _ 32 acquiring _ VERB VBG _ 31 acl _ _ 33 more _ ADJ JJR _ 35 advmod _ _ 34 than _ ADP IN _ 33 mwe _ _ 35 30 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 32 dobj _ _ 37 to _ PART TO _ 38 mark _ _ 38 extend _ VERB VB _ 29 xcomp _ _ 39 an _ DET DT _ 40 det _ _ 40 offer _ NOUN NN _ 38 dobj _ _ 41 to _ ADP TO _ 43 case _ _ 42 the _ DET DT _ 43 det _ _ 43 rest _ NOUN NN _ 38 nmod _ _ 44 of _ ADP IN _ 48 case _ _ 45 the _ DET DT _ 46 det _ _ 46 company _ NOUN NN _ 48 nmod:poss _ _ 47 's _ PART POS _ 46 case _ _ 48 shareholders _ NOUN NNS _ 43 nmod _ _ 49 . _ PUNCT . _ 3 punct _ _ 1 ADT _ PROPN NN _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 security _ NOUN NN _ 5 compound _ _ 5 services _ NOUN NNS _ 1 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 auctions _ NOUN NNS _ 8 compound _ _ 8 company _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 trades _ VERB NNS _ 0 root _ _ 11 on _ ADP IN _ 15 case _ _ 12 London _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 Stock _ PROPN NNP _ 15 compound _ _ 15 Exchange _ PROPN NNP _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 Laidlaw _ PROPN NNP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 47%-controlled _ NUM JJ _ 0 root _ _ 4 by _ ADP IN _ 7 case _ _ 5 Canadian _ PROPN NNP _ 7 compound _ _ 6 Pacific _ PROPN NNP _ 7 compound _ _ 7 Ltd. _ PROPN NNP _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 13 det _ _ 10 Montreal _ PROPN NNP _ 13 compound _ _ 11 transportation _ NOUN NN _ 13 compound _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 resources _ NOUN NNS _ 7 appos _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 industrial _ ADJ JJ _ 17 amod _ _ 16 holding _ VERB NN _ 17 amod _ _ 17 concern _ NOUN NN _ 13 conj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Nintendo _ PROPN NNP _ 2 compound _ _ 2 Co. _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 Japanese _ ADJ JJ _ 6 amod _ _ 6 maker _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 video _ ADJ NN _ 9 amod _ _ 9 games _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 electronic _ ADJ JJ _ 13 amod _ _ 12 information _ NOUN NN _ 13 compound _ _ 13 systems _ NOUN NNS _ 9 conj _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 playing _ NOUN VBG _ 16 compound _ _ 16 cards _ NOUN NNS _ 9 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 posted _ VERB VBD _ 0 root _ _ 19 a _ DET DT _ 23 det _ _ 20 23 _ NUM CD _ 21 compound _ _ 21 % _ SYM NN _ 23 amod _ _ 22 unconsolidated _ VERB JJ _ 23 amod _ _ 23 surge _ NOUN NN _ 18 dobj _ _ 24 in _ ADP IN _ 26 case _ _ 25 pretax _ ADJ JJ _ 26 amod _ _ 26 profit _ NOUN NN _ 23 nmod _ _ 27 to _ ADP TO _ 30 case _ _ 28 61.41 _ NUM CD _ 29 compound _ _ 29 billion _ NUM CD _ 30 nummod _ _ 30 yen _ NOUN NNS _ 23 nmod _ _ 31 -LRB- _ PUNCT -LRB- _ 30 punct _ _ 32 $ _ SYM $ _ 30 dep _ _ 33 429 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 -RRB- _ PUNCT -RRB- _ 30 punct _ _ 36 from _ ADP IN _ 39 case _ _ 37 50 _ NUM CD _ 38 compound _ _ 38 billion _ NUM CD _ 39 nummod _ _ 39 yen _ NOUN NNS _ 23 nmod _ _ 40 -LRB- _ PUNCT -LRB- _ 39 punct _ _ 41 $ _ SYM $ _ 39 dep _ _ 42 349.9 _ NUM CD _ 43 compound _ _ 43 million _ NUM CD _ 41 nummod _ _ 44 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 45 for _ ADP IN _ 48 case _ _ 46 the _ DET DT _ 48 det _ _ 47 fiscal _ ADJ JJ _ 48 amod _ _ 48 year _ NOUN NN _ 18 nmod _ _ 49 ended _ VERB VBN _ 48 acl _ _ 50 Aug. _ PROPN NNP _ 49 nmod:tmod _ _ 51 31 _ NUM CD _ 50 nummod _ _ 52 . _ PUNCT . _ 18 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 surged _ VERB VBD _ 0 root _ _ 3 40 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 8 case _ _ 6 250.17 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 8 nummod _ _ 8 yen _ NOUN NNS _ 2 nmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 178.61 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 2 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 Net _ ADJ JJ _ 2 amod _ _ 2 income _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 11 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 9 case _ _ 7 29.62 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 9 nummod _ _ 9 yen _ NOUN NNS _ 3 nmod _ _ 10 from _ ADP IN _ 12 case _ _ 11 26.68 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 3 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Pershare _ ADJ JJ _ 2 amod _ _ 2 net _ ADJ NN _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 6 case _ _ 5 423.3 _ NUM CD _ 6 nummod _ _ 6 yen _ NOUN NNS _ 3 nmod _ _ 7 from _ ADP IN _ 9 case _ _ 8 457.7 _ NUM CD _ 9 nummod _ _ 9 yen _ NOUN NNS _ 3 nmod _ _ 10 because _ ADP IN _ 12 case _ _ 11 of _ ADP IN _ 10 mwe _ _ 12 expenses _ NOUN NNS _ 3 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 capital _ NOUN NN _ 15 compound _ _ 15 adjustments _ NOUN NNS _ 12 conj _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Without _ SCONJ IN _ 2 mark _ _ 2 detailing _ VERB VBG _ 8 advcl _ _ 3 specific _ ADJ JJ _ 5 amod _ _ 4 product _ NOUN NN _ 5 compound _ _ 5 breakdowns _ NOUN NNS _ 2 dobj _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Nintendo _ PROPN NNP _ 8 nsubj _ _ 8 credited _ VERB VBD _ 0 root _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 bullish _ ADJ JJ _ 11 amod _ _ 11 upsurge _ NOUN NN _ 8 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 sales _ NOUN NNS _ 11 nmod _ _ 14 -- _ PUNCT : _ 13 punct _ _ 15 including _ VERB VBG _ 18 case _ _ 16 advanced _ VERB VBN _ 18 amod _ _ 17 computer _ NOUN NN _ 18 compound _ _ 18 games _ NOUN NNS _ 13 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 television _ NOUN NN _ 22 compound _ _ 21 entertainment _ NOUN NN _ 22 compound _ _ 22 systems _ NOUN NNS _ 18 conj _ _ 23 -- _ PUNCT : _ 13 punct _ _ 24 to _ ADP TO _ 29 case _ _ 25 surging _ ADJ VBG _ 29 amod _ _ 26 `` _ PUNCT `` _ 29 punct _ _ 27 leisure-oriented _ ADJ JJ _ 29 amod _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 sales _ NOUN NNS _ 8 nmod _ _ 30 in _ ADP IN _ 32 case _ _ 31 foreign _ ADJ JJ _ 32 amod _ _ 32 markets _ NOUN NNS _ 29 nmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Export _ NOUN NN _ 2 compound _ _ 2 sales _ NOUN NNS _ 11 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 leisure _ NOUN NN _ 5 compound _ _ 5 items _ NOUN NNS _ 2 nmod _ _ 6 alone _ ADV RB _ 5 advmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 instance _ NOUN NN _ 11 nmod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 totaled _ VERB VBD _ 0 root _ _ 12 184.74 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 14 nummod _ _ 14 yen _ NOUN NNS _ 11 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 12 _ NUM CD _ 18 nummod _ _ 18 months _ NOUN NNS _ 11 nmod _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 up _ ADV RB _ 11 advmod _ _ 21 from _ ADP IN _ 23 case _ _ 22 106.06 _ NUM CD _ 23 compound _ _ 23 billion _ NUM CD _ 20 nmod _ _ 24 in _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 previous _ ADJ JJ _ 27 amod _ _ 27 fiscal _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 11 punct _ _ 1 Domestic _ ADJ JJ _ 3 amod _ _ 2 leisure _ NOUN NN _ 3 compound _ _ 3 sales _ NOUN NNS _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 however _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 were _ VERB VBD _ 8 cop _ _ 8 lower _ ADJ JJR _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 Hertz _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 9 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Park _ PROPN NNP _ 5 compound _ _ 5 Ridge _ PROPN NNP _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 N.J. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 retained _ VERB VBD _ 9 ccomp _ _ 12 Merrill _ PROPN NNP _ 15 compound _ _ 13 Lynch _ PROPN NNP _ 15 compound _ _ 14 Capital _ PROPN NNP _ 15 compound _ _ 15 Markets _ PROPN NNP _ 11 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 sell _ VERB VB _ 11 advcl _ _ 18 its _ PRON PRP$ _ 23 nmod:poss _ _ 19 Hertz _ PROPN NNP _ 23 compound _ _ 20 Equipment _ PROPN NNP _ 23 compound _ _ 21 Rental _ PROPN JJ _ 23 compound _ _ 22 Corp. _ PROPN NNP _ 23 compound _ _ 23 unit _ NOUN NN _ 17 dobj _ _ 24 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 35 dep _ _ 4 no _ DET DT _ 6 neg _ _ 5 pressing _ VERB VBG _ 6 amod _ _ 6 need _ NOUN NN _ 3 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 sell _ VERB VB _ 6 acl _ _ 9 the _ DET DT _ 10 det _ _ 10 unit _ NOUN NN _ 8 dobj _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 but _ CONJ CC _ 3 cc _ _ 13 we _ PRON PRP _ 15 nsubj _ _ 14 are _ AUX VBP _ 15 aux _ _ 15 doing _ VERB VBG _ 3 conj _ _ 16 it _ PRON PRP _ 15 dobj _ _ 17 so _ SCONJ IN _ 20 mark _ _ 18 we _ PRON PRP _ 20 nsubj _ _ 19 can _ AUX MD _ 20 aux _ _ 20 concentrate _ VERB VB _ 15 advcl _ _ 21 on _ ADP IN _ 24 case _ _ 22 our _ PRON PRP$ _ 24 nmod:poss _ _ 23 core _ NOUN NN _ 24 compound _ _ 24 business _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 renting _ VERB VBG _ 24 dep _ _ 27 automobiles _ NOUN NNS _ 26 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 U.S. _ PROPN NNP _ 26 dep _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 abroad _ ADV RB _ 30 conj _ _ 33 , _ PUNCT , _ 3 punct _ _ 34 '' _ PUNCT '' _ 3 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 William _ PROPN NNP _ 37 compound _ _ 37 Slider _ PROPN NNP _ 35 nsubj _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 Hertz _ PROPN NNP _ 43 nmod:poss _ _ 40 's _ PART POS _ 39 case _ _ 41 executive _ ADJ JJ _ 43 amod _ _ 42 vice _ NOUN NN _ 43 compound _ _ 43 president _ NOUN NN _ 37 appos _ _ 44 . _ PUNCT . _ 35 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 are _ AUX VBP _ 5 aux _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 going _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 sell _ VERB VB _ 5 xcomp _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 right _ ADJ JJ _ 11 amod _ _ 11 price _ NOUN NN _ 7 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 13 '' _ PUNCT '' _ 5 punct _ _ 1 Hertz _ PROPN NNP _ 2 compound _ _ 2 Equipment _ PROPN NNP _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 operating _ NOUN NN _ 5 compound _ _ 5 profit _ NOUN NN _ 3 dobj _ _ 6 before _ ADP IN _ 7 case _ _ 7 depreciation _ NOUN NN _ 5 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 5 nmod _ _ 10 90 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 on _ ADP IN _ 13 case _ _ 13 revenue _ NOUN NN _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 150 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 19 case _ _ 19 1988 _ NUM CD _ 13 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 closely _ ADV RB _ 3 advmod _ _ 3 held _ VERB VBN _ 5 amod _ _ 4 Hertz _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 6 nsubj _ _ 6 had _ VERB VBD _ 0 root _ _ 7 annual _ ADJ JJ _ 8 amod _ _ 8 revenue _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 close _ ADJ JJ _ 8 acl _ _ 11 to _ ADP TO _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 1988 _ NUM CD _ 12 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 of _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 24 nmod _ _ 20 $ _ SYM $ _ 24 nsubjpass _ _ 21 1.7 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 contributed _ VERB VBN _ 8 acl:relcl _ _ 25 by _ ADP IN _ 31 case _ _ 26 its _ PRON PRP$ _ 31 nmod:poss _ _ 27 Hertz _ PROPN NNP _ 31 compound _ _ 28 Rent _ PROPN NNP _ 30 dep _ _ 29 A _ DET NNP _ 30 det _ _ 30 Car _ PROPN NNP _ 31 dep _ _ 31 operations _ NOUN NNS _ 24 nmod _ _ 32 world-wide _ ADJ JJ _ 31 amod _ _ 33 . _ PUNCT . _ 6 punct _ _ 1 Hertz _ PROPN NNP _ 2 compound _ _ 2 Equipment _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 major _ ADJ JJ _ 6 amod _ _ 6 supplier _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 rental _ ADJ JJ _ 9 amod _ _ 9 equipment _ NOUN NN _ 6 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 France _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 Spain _ PROPN NNP _ 12 conj _ _ 17 and _ CONJ CC _ 12 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 U.K _ PROPN NNP _ 12 conj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 supplies _ VERB VBZ _ 0 root _ _ 3 commercial _ ADJ JJ _ 6 amod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 industrial _ ADJ JJ _ 3 conj _ _ 6 equipment _ NOUN NN _ 2 dobj _ _ 7 including _ VERB VBG _ 15 case _ _ 8 earth-moving _ ADJ JJ _ 15 amod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 aerial _ ADJ JJ _ 8 conj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 compaction _ NOUN NN _ 8 conj _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 electrical _ ADJ JJ _ 8 conj _ _ 15 equipment _ NOUN NN _ 6 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 compressors _ NOUN NNS _ 15 conj _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 cranes _ NOUN NNS _ 15 conj _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 forklifts _ NOUN NNS _ 15 conj _ _ 22 and _ CONJ CC _ 15 cc _ _ 23 trucks _ NOUN NNS _ 15 conj _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 Interspec _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 net _ ADJ JJ _ 6 amod _ _ 6 loss _ NOUN NN _ 3 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 2.4 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 for _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 fiscal _ ADJ JJ _ 15 amod _ _ 14 third _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 6 nmod _ _ 16 ended _ VERB VBN _ 15 acl _ _ 17 Aug. _ PROPN NNP _ 16 nmod:tmod _ _ 18 31 _ NUM CD _ 17 nummod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 loss _ NOUN NN _ 5 nsubj _ _ 5 resulted _ VERB VBD _ 2 ccomp _ _ 6 from _ ADP IN _ 10 case _ _ 7 startup _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 introduction _ NOUN NN _ 7 conj _ _ 10 costs _ NOUN NNS _ 5 nmod _ _ 11 related _ VERB VBN _ 10 acl _ _ 12 to _ ADP TO _ 18 case _ _ 13 a _ DET DT _ 18 det _ _ 14 new _ ADJ JJ _ 18 amod _ _ 15 medical _ ADJ JJ _ 18 amod _ _ 16 ultrasound _ NOUN NN _ 18 compound _ _ 17 equipment _ NOUN NN _ 18 compound _ _ 18 system _ NOUN NN _ 11 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 8 nsubj _ _ 8 reported _ VERB VBD _ 0 root _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 955,000 _ NUM CD _ 10 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 15 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 13 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 manufacturer _ NOUN NN _ 14 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 ultrasound _ NOUN NN _ 6 compound _ _ 5 diagnostic _ ADJ JJ _ 6 amod _ _ 6 systems _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 based _ VERB VBN _ 2 acl _ _ 9 in _ ADP IN _ 10 case _ _ 10 Ambler _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Pa. _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 reported _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 18 det _ _ 16 nine-month _ ADJ JJ _ 18 amod _ _ 17 net _ ADJ JJ _ 18 amod _ _ 18 loss _ NOUN NN _ 14 dobj _ _ 19 of _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 18 nmod _ _ 21 2.43 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 compared _ VERB VBN _ 26 case _ _ 24 with _ ADP IN _ 26 case _ _ 25 net _ ADJ JJ _ 26 amod _ _ 26 income _ NOUN NN _ 18 nmod _ _ 27 of _ ADP IN _ 28 case _ _ 28 $ _ SYM $ _ 26 nmod _ _ 29 2.71 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 or _ CONJ CC _ 28 cc _ _ 33 44 _ NUM CD _ 34 nummod _ _ 34 cents _ NOUN NNS _ 28 conj _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 , _ PUNCT , _ 28 punct _ _ 38 for _ ADP IN _ 41 case _ _ 39 the _ DET DT _ 41 det _ _ 40 nine-month _ ADJ JJ _ 41 amod _ _ 41 period _ NOUN NN _ 26 nmod _ _ 42 a _ DET DT _ 43 det _ _ 43 year _ NOUN NN _ 44 nmod:npmod _ _ 44 earlier _ ADV RBR _ 41 advmod _ _ 45 . _ PUNCT . _ 14 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 over-the-counter _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Interspec _ PROPN NNP _ 6 nsubj _ _ 6 fell _ VERB VBD _ 0 root _ _ 7 37.5 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 6 dobj _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 4.25 _ NUM CD _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Allegheny _ PROPN NNP _ 3 compound _ _ 2 Ludlum _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 47 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 report _ VERB VB _ 4 xcomp _ _ 7 third-quarter _ ADJ JJ _ 8 amod _ _ 8 net _ ADJ NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 about _ ADV IN _ 11 advmod _ _ 11 $ _ SYM $ _ 8 nmod _ _ 12 34 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.50 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 down _ ADV RB _ 8 advmod _ _ 22 from _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 38.4 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 $ _ SYM $ _ 29 dep _ _ 29 1.70 _ NUM CD _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 a _ DET DT _ 34 det _ _ 34 year _ NOUN NN _ 35 nmod:npmod _ _ 35 earlier _ ADV RBR _ 23 advmod _ _ 36 , _ PUNCT , _ 47 punct _ _ 37 Richard _ PROPN NNP _ 39 compound _ _ 38 P. _ PROPN NNP _ 39 compound _ _ 39 Simmons _ PROPN NNP _ 47 nsubj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 chairman _ NOUN NN _ 39 appos _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 chief _ ADJ JJ _ 44 amod _ _ 44 executive _ ADJ JJ _ 45 amod _ _ 45 officer _ NOUN NN _ 41 conj _ _ 46 , _ PUNCT , _ 39 punct _ _ 47 told _ VERB VBD _ 0 root _ _ 48 institutional _ ADJ JJ _ 49 amod _ _ 49 investors _ NOUN NNS _ 47 dobj _ _ 50 in _ ADP IN _ 52 case _ _ 51 New _ PROPN NNP _ 52 compound _ _ 52 York _ PROPN NNP _ 49 nmod _ _ 53 . _ PUNCT . _ 47 punct _ _ 1 Sales _ NOUN NNS _ 12 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 Pittsburgh-based _ ADJ JJ _ 5 amod _ _ 5 producer _ NOUN NN _ 1 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 specialty _ NOUN NN _ 8 compound _ _ 8 steels _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 materials _ NOUN NNS _ 8 conj _ _ 12 fell _ VERB VBD _ 31 ccomp _ _ 13 to _ ADP TO _ 15 case _ _ 14 about _ ADV IN _ 15 advmod _ _ 15 $ _ SYM $ _ 12 nmod _ _ 16 265 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 15 nmod _ _ 22 from _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 12 nmod _ _ 24 320.5 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 a _ DET DT _ 27 det _ _ 27 year _ NOUN NN _ 28 nmod:npmod _ _ 28 earlier _ ADV RBR _ 23 advmod _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 he _ PRON PRP _ 31 nsubj _ _ 31 said _ VERB VBD _ 0 root _ _ 32 . _ PUNCT . _ 31 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 third-quarter _ ADJ JJ _ 5 amod _ _ 5 estimate _ NOUN NN _ 6 nsubj _ _ 6 indicates _ VERB VBZ _ 2 ccomp _ _ 7 profit _ NOUN NN _ 6 dobj _ _ 8 for _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 nine _ NUM CD _ 11 nummod _ _ 11 months _ NOUN NNS _ 7 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 4.65 _ NUM CD _ 7 nmod _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 `` _ PUNCT `` _ 20 punct _ _ 19 almost _ ADV RB _ 20 advmod _ _ 20 equal _ ADJ JJ _ 7 amod _ _ 21 to _ ADP TO _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 full-year _ ADJ JJ _ 25 amod _ _ 24 1988 _ NUM CD _ 25 nummod _ _ 25 earnings _ NOUN NNS _ 20 nmod _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 of _ ADP IN _ 28 case _ _ 28 $ _ SYM $ _ 25 nmod _ _ 29 108.6 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 or _ CONJ CC _ 28 cc _ _ 33 $ _ SYM $ _ 34 dep _ _ 34 4.81 _ NUM CD _ 28 conj _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 nine _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 11 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 1988 _ NUM CD _ 5 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 net _ ADJ NN _ 11 nsubj _ _ 10 was _ VERB VBD _ 11 cop _ _ 11 $ _ SYM $ _ 0 root _ _ 12 85 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 3.76 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Simmons _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 third-quarter _ ADJ JJ _ 6 amod _ _ 6 results _ NOUN NNS _ 7 nsubj _ _ 7 reflect _ VERB VBP _ 3 ccomp _ _ 8 continued _ VERB VBN _ 9 amod _ _ 9 improvements _ NOUN NNS _ 7 dobj _ _ 10 in _ ADP IN _ 14 case _ _ 11 productivity _ NOUN NN _ 14 compound _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 operating _ NOUN VBG _ 11 conj _ _ 14 margins _ NOUN NNS _ 9 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 capital _ NOUN NN _ 4 compound _ _ 4 spending _ NOUN NN _ 8 nsubj _ _ 5 next _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 4 nmod:tmod _ _ 7 will _ AUX MD _ 8 aux _ _ 8 rise _ VERB VB _ 2 ccomp _ _ 9 to _ ADP TO _ 11 case _ _ 10 about _ ADV IN _ 11 advmod _ _ 11 $ _ SYM $ _ 8 nmod _ _ 12 45 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 from _ ADP IN _ 16 case _ _ 15 about _ ADV IN _ 16 advmod _ _ 16 $ _ SYM $ _ 8 nmod _ _ 17 35 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 16 nmod:tmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 U.S. _ PROPN NNP _ 3 compound _ _ 2 Banknote _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 again _ ADV RB _ 7 advmod _ _ 7 extended _ VERB VBD _ 4 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 expiration _ NOUN NN _ 10 compound _ _ 10 date _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 16 case _ _ 12 its _ PRON PRP$ _ 16 nmod:poss _ _ 13 $ _ SYM $ _ 16 amod _ _ 14 7-a-share _ ADJ JJ _ 13 dep _ _ 15 tender _ NOUN NN _ 16 compound _ _ 16 offer _ NOUN NN _ 10 nmod _ _ 17 for _ ADP IN _ 20 case _ _ 18 International _ PROPN NNP _ 20 compound _ _ 19 Banknote _ PROPN NNP _ 20 compound _ _ 20 Co. _ PROPN NNP _ 16 nmod _ _ 21 to _ ADP TO _ 23 case _ _ 22 Nov. _ VERB NNP _ 23 dep _ _ 23 15 _ NUM CD _ 7 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 in _ ADP IN _ 7 case _ _ 7 negotiations _ NOUN NNS _ 3 dep _ _ 8 to _ PART TO _ 9 mark _ _ 9 sell _ VERB VB _ 7 acl _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 certain _ ADJ JJ _ 12 amod _ _ 12 facilities _ NOUN NNS _ 9 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 15 which _ PRON WDT _ 19 dobj _ _ 16 it _ PRON PRP _ 19 nsubj _ _ 17 did _ AUX VBD _ 19 aux _ _ 18 n't _ PART RB _ 19 neg _ _ 19 name _ VERB NN _ 12 acl:relcl _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 to _ ADP TO _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 third _ ADJ JJ _ 24 amod _ _ 24 party _ NOUN NN _ 9 nmod _ _ 25 , _ PUNCT , _ 7 punct _ _ 26 and _ CONJ CC _ 7 cc _ _ 27 it _ PRON PRP _ 28 nsubj _ _ 28 needs _ VERB VBZ _ 7 conj _ _ 29 the _ DET DT _ 30 det _ _ 30 extension _ NOUN NN _ 28 dobj _ _ 31 to _ PART TO _ 32 mark _ _ 32 try _ VERB VB _ 28 advcl _ _ 33 to _ PART TO _ 34 mark _ _ 34 reach _ VERB VB _ 32 xcomp _ _ 35 a _ DET DT _ 37 det _ _ 36 definitive _ ADJ JJ _ 37 amod _ _ 37 agreement _ NOUN NN _ 34 dobj _ _ 38 on _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 sale _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 believes _ VERB VBZ _ 3 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 sale _ NOUN NN _ 14 nsubj _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 if _ SCONJ IN _ 10 mark _ _ 10 completed _ VERB VBN _ 14 dep _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 apparently _ ADV RB _ 14 advmod _ _ 13 would _ AUX MD _ 14 aux _ _ 14 satisfy _ VERB VB _ 5 ccomp _ _ 15 antitrust _ ADJ JJ _ 16 amod _ _ 16 issues _ NOUN NNS _ 14 dobj _ _ 17 raised _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 U.S. _ PROPN NNP _ 22 compound _ _ 21 Justice _ PROPN NNP _ 22 compound _ _ 22 Department _ PROPN NNP _ 17 nmod _ _ 23 about _ ADP IN _ 27 case _ _ 24 U.S. _ PROPN NNP _ 25 compound _ _ 25 Banknote _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 offer _ NOUN NN _ 16 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 buy _ VERB VB _ 27 acl _ _ 30 International _ PROPN NNP _ 31 compound _ _ 31 Banknote _ PROPN NNP _ 29 dobj _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 Both _ DET DT _ 7 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 New _ PROPN NNP _ 6 compound _ _ 5 York-based _ ADJ JJ _ 6 amod _ _ 6 companies _ NOUN NNS _ 1 nmod _ _ 7 print _ VERB VBP _ 0 root _ _ 8 stock _ NOUN NN _ 9 compound _ _ 9 certificates _ NOUN NNS _ 7 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 currency _ NOUN NN _ 9 conj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 `` _ PUNCT `` _ 9 punct _ _ 5 there _ PRON EX _ 9 expl _ _ 6 can _ AUX MD _ 9 aux _ _ 7 be _ VERB VB _ 9 cop _ _ 8 no _ DET DT _ 9 neg _ _ 9 assurance _ NOUN NN _ 3 ccomp _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 a _ DET DT _ 13 det _ _ 12 sale _ NOUN NN _ 13 compound _ _ 13 agreement _ NOUN NN _ 16 nsubjpass _ _ 14 would _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 concluded _ VERB VBN _ 9 ccomp _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 tender _ NOUN NN _ 6 compound _ _ 6 offer _ NOUN NN _ 9 nsubj _ _ 7 would _ AUX MD _ 9 aux _ _ 8 probably _ ADV RB _ 9 advmod _ _ 9 have _ VERB VB _ 3 ccomp _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 extended _ VERB VBN _ 9 xcomp _ _ 13 further _ ADV RB _ 12 advmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 complete _ VERB VB _ 12 xcomp _ _ 16 financing _ NOUN NN _ 17 compound _ _ 17 arrangements _ NOUN NNS _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Citibank _ PROPN NNP _ 5 nsubj _ _ 5 extended _ VERB VBD _ 3 ccomp _ _ 6 the _ DET DT _ 8 det _ _ 7 expiration _ NOUN NN _ 8 compound _ _ 8 date _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 commitment _ NOUN NN _ 8 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 senior _ ADJ JJ _ 15 amod _ _ 14 secured _ VERB VBN _ 15 amod _ _ 15 financing _ NOUN NN _ 11 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 Nov. _ PROPN NNP _ 5 nmod _ _ 18 15 _ NUM CD _ 17 nummod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 10 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 made _ VERB VBN _ 2 acl _ _ 5 June _ PROPN NNP _ 4 nmod:tmod _ _ 6 1 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 auxpass _ _ 10 extended _ VERB VBN _ 0 root _ _ 11 several _ ADJ JJ _ 12 amod _ _ 12 times _ NOUN NNS _ 10 nmod:tmod _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 Closely _ ADV RB _ 2 advmod _ _ 2 held _ VERB VBN _ 4 amod _ _ 3 U.S. _ PROPN NNP _ 4 compound _ _ 4 Banknote _ PROPN NNP _ 5 nsubj _ _ 5 offered _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 7 _ NUM CD _ 5 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 share _ NOUN NN _ 8 nmod:npmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 $ _ SYM $ _ 8 conj _ _ 14 126 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 for _ ADP IN _ 23 case _ _ 18 as _ ADV RB _ 22 advmod _ _ 19 many _ ADJ JJ _ 22 advmod _ _ 20 as _ ADP IN _ 22 advmod _ _ 21 14.9 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 23 nummod _ _ 23 shares _ NOUN NNS _ 5 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 or _ CONJ CC _ 23 cc _ _ 26 78.6 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 23 conj _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 of _ ADP IN _ 33 case _ _ 30 International _ PROPN NNP _ 31 compound _ _ 31 Banknote _ PROPN NNP _ 33 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 shares _ NOUN NNS _ 23 conj _ _ 34 outstanding _ ADJ JJ _ 33 amod _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 27 mark _ _ 5 as _ ADP IN _ 7 case _ _ 6 of _ ADP IN _ 7 case _ _ 7 Oct. _ PROPN NNP _ 27 nmod _ _ 8 13 _ NUM CD _ 7 nummod _ _ 9 , _ PUNCT , _ 27 punct _ _ 10 16.1 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 12 nummod _ _ 12 shares _ NOUN NNS _ 27 nsubjpass _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 about _ ADV IN _ 16 advmod _ _ 16 84.3 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 12 conj _ _ 18 of _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 fully _ ADV RB _ 21 advmod _ _ 21 diluted _ VERB VBN _ 22 amod _ _ 22 shares _ NOUN NNS _ 17 nmod _ _ 23 outstanding _ ADJ JJ _ 22 amod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 had _ AUX VBD _ 27 aux _ _ 26 been _ AUX VBN _ 27 auxpass _ _ 27 tendered _ VERB VBN _ 3 ccomp _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Gitano _ PROPN NNP _ 3 compound _ _ 2 Group _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 agreed _ VERB VBD _ 4 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 6 xcomp _ _ 9 50 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 Regatta _ PROPN NNP _ 14 compound _ _ 13 Sport _ PROPN NNP _ 14 compound _ _ 14 Ltd. _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 20 det _ _ 17 closely _ ADV RB _ 18 advmod _ _ 18 held _ VERB VBN _ 20 amod _ _ 19 apparel _ NOUN NN _ 20 compound _ _ 20 maker _ NOUN NN _ 14 appos _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 with _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 assumption _ NOUN NN _ 8 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 24 nmod _ _ 27 3 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 of _ ADP IN _ 31 case _ _ 30 contingent _ ADJ JJ _ 31 amod _ _ 31 debt _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 terms _ NOUN NNS _ 11 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 contract _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 New _ PROPN NNP _ 9 amod _ _ 9 York-based _ ADJ JJ _ 10 amod _ _ 10 Gitano _ PROPN NNP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 option _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 acquire _ VERB VB _ 13 acl _ _ 16 the _ DET DT _ 19 det _ _ 17 remaining _ ADJ VBG _ 19 amod _ _ 18 50 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 15 dobj _ _ 20 of _ ADP IN _ 21 case _ _ 21 Regatta _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 maker _ NOUN NN _ 21 appos _ _ 25 of _ ADP IN _ 31 case _ _ 26 men _ NOUN NNS _ 31 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 and _ CONJ CC _ 26 cc _ _ 29 women _ NOUN NNS _ 26 conj _ _ 30 's _ PART POS _ 29 case _ _ 31 clothes _ NOUN NNS _ 24 nmod _ _ 32 sold _ VERB VBD _ 31 acl _ _ 33 primarily _ ADV RB _ 36 advmod _ _ 34 in _ ADP IN _ 36 case _ _ 35 department _ NOUN NN _ 36 compound _ _ 36 stores _ NOUN NNS _ 32 nmod _ _ 37 , _ PUNCT , _ 21 punct _ _ 38 under _ ADP IN _ 40 case _ _ 39 certain _ ADJ JJ _ 40 amod _ _ 40 conditions _ NOUN NNS _ 15 nmod _ _ 41 . _ PUNCT . _ 11 punct _ _ 1 That _ DET IN _ 3 det _ _ 2 50 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 now _ ADV RB _ 6 advmod _ _ 6 held _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 9 case _ _ 8 Clifford _ PROPN NNP _ 9 compound _ _ 9 Parker _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Regatta _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 president _ NOUN NN _ 9 appos _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 chief _ ADJ JJ _ 17 amod _ _ 16 executive _ ADJ JJ _ 17 amod _ _ 17 officer _ NOUN NN _ 13 conj _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 who _ PRON WP _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 continue _ VERB VB _ 9 acl:relcl _ _ 22 to _ PART TO _ 23 mark _ _ 23 manage _ VERB VB _ 21 xcomp _ _ 24 Regatta _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 operations _ NOUN NNS _ 23 dobj _ _ 27 under _ ADP IN _ 28 case _ _ 28 Gitano _ PROPN NNP _ 23 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1989 _ NUM CD _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Regatta _ PROPN NNP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 have _ VERB VB _ 24 ccomp _ _ 7 sales _ NOUN NNS _ 6 dobj _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 in _ ADP IN _ 10 case _ _ 10 excess _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 10 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 '' _ PUNCT '' _ 10 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 will _ AUX MD _ 18 aux _ _ 18 show _ VERB VB _ 6 conj _ _ 19 a _ DET DT _ 20 det _ _ 20 profit _ NOUN NN _ 18 dobj _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Parker _ PROPN NNP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 Gitano _ PROPN NNP _ 18 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 makes _ VERB VBZ _ 1 acl:relcl _ _ 5 budget-priced _ ADJ JJ _ 6 amod _ _ 6 apparel _ NOUN NN _ 4 dobj _ _ 7 sold _ VERB VBN _ 6 acl _ _ 8 mainly _ ADV RB _ 7 advmod _ _ 9 through _ ADP IN _ 11 case _ _ 10 mass _ NOUN NN _ 11 compound _ _ 11 merchandisers _ NOUN NNS _ 7 nmod _ _ 12 like _ ADP IN _ 14 case _ _ 13 K _ PROPN NNP _ 14 compound _ _ 14 mart _ PROPN NNP _ 11 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Wal-Mart _ PROPN NNP _ 14 conj _ _ 17 , _ PUNCT , _ 1 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 21 det _ _ 20 Regatta _ PROPN NNP _ 21 compound _ _ 21 acquisition _ NOUN NN _ 23 nsubj _ _ 22 will _ AUX MD _ 23 aux _ _ 23 enhance _ VERB VB _ 18 ccomp _ _ 24 its _ PRON PRP$ _ 25 nmod:poss _ _ 25 strategy _ NOUN NN _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 expand _ VERB VB _ 25 acl _ _ 28 into _ ADP IN _ 30 case _ _ 29 department _ NOUN NN _ 30 compound _ _ 30 stores _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 fall _ NOUN NN _ 5 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Gitano _ PROPN NNP _ 5 nsubj _ _ 5 began _ VERB VBD _ 0 root _ _ 6 manufacturing _ VERB VBG _ 5 xcomp _ _ 7 moderately _ ADV RB _ 8 advmod _ _ 8 priced _ VERB VBN _ 9 amod _ _ 9 clothes _ NOUN NNS _ 6 dobj _ _ 10 aimed _ VERB VBN _ 9 acl _ _ 11 at _ ADP IN _ 13 case _ _ 12 department _ NOUN NN _ 13 compound _ _ 13 stores _ NOUN NNS _ 10 nmod _ _ 14 under _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 Gloria _ PROPN NNP _ 18 compound _ _ 17 Vanderbilt _ PROPN NNP _ 18 compound _ _ 18 trademark _ NOUN NN _ 6 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 23 dobj _ _ 21 Gitano _ PROPN NNP _ 23 nsubj _ _ 22 recently _ ADV RB _ 23 advmod _ _ 23 acquired _ VERB VBD _ 18 acl:relcl _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Enron _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 6 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Houston _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 sale _ NOUN NN _ 25 nsubj _ _ 9 of _ ADP IN _ 11 case _ _ 10 preference _ NOUN NN _ 11 compound _ _ 11 units _ NOUN NNS _ 8 nmod _ _ 12 of _ ADP IN _ 23 case _ _ 13 its _ PRON PRP$ _ 23 nmod:poss _ _ 14 newly _ ADV RB _ 15 advmod _ _ 15 formed _ VERB VBN _ 23 amod _ _ 16 Enron _ PROPN NNP _ 23 compound _ _ 17 NGL _ PROPN NNP _ 23 compound _ _ 18 Partners _ PROPN NNPS _ 23 compound _ _ 19 L.P. _ PROPN NNP _ 23 compound _ _ 20 master _ NOUN NN _ 23 compound _ _ 21 limited _ VERB JJ _ 23 amod _ _ 22 partnership _ NOUN NN _ 23 compound _ _ 23 subsidiary _ NOUN NN _ 11 nmod _ _ 24 will _ AUX MD _ 25 aux _ _ 25 result _ VERB VB _ 6 ccomp _ _ 26 in _ ADP IN _ 29 case _ _ 27 an _ DET DT _ 29 det _ _ 28 undetermined _ ADJ JJ _ 29 amod _ _ 29 gain _ NOUN NN _ 25 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 fourth _ ADJ JJ _ 33 amod _ _ 33 quarter _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-ago _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 natural _ ADJ JJ _ 9 amod _ _ 8 gas _ NOUN NN _ 9 compound _ _ 9 concern _ NOUN NN _ 10 nsubj _ _ 10 had _ VERB VBD _ 0 root _ _ 11 net _ ADJ JJ _ 12 amod _ _ 12 income _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 12 nmod _ _ 15 25.2 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 34 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 14 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 on _ ADP IN _ 25 case _ _ 25 revenue _ NOUN NN _ 12 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 about _ ADV IN _ 28 advmod _ _ 28 $ _ SYM $ _ 25 nmod _ _ 29 1.46 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 . _ PUNCT . _ 10 punct _ _ 1 Those _ DET DT _ 2 det _ _ 2 results _ NOUN NNS _ 3 nsubj _ _ 3 included _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 2.7 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 charge _ NOUN NN _ 3 dobj _ _ 9 related _ VERB VBN _ 8 acl _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 retirement _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 debt _ NOUN NN _ 12 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 related _ VERB JJ _ 4 amod _ _ 4 move _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Enron _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 increased _ VERB VBD _ 7 ccomp _ _ 10 the _ DET DT _ 11 det _ _ 11 number _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 14 det _ _ 14 partnership _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 units _ NOUN NNS _ 11 nmod _ _ 17 it _ PRON PRP _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 offer _ VERB VB _ 16 acl:relcl _ _ 20 to _ ADP TO _ 21 case _ _ 21 6,930,000 _ NUM CD _ 9 nmod _ _ 22 from _ ADP IN _ 23 case _ _ 23 5,500,000 _ NUM CD _ 9 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 old _ ADJ JJ _ 5 amod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 revised _ VERB JJ _ 2 conj _ _ 5 numbers _ NOUN NNS _ 7 nsubj _ _ 6 both _ DET CC _ 5 dep _ _ 7 include _ VERB VBP _ 0 root _ _ 8 over-allotment _ ADJ NN _ 9 amod _ _ 9 provisions _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 Enron _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 each _ DET DT _ 4 det _ _ 4 unit _ NOUN NN _ 7 nsubjpass _ _ 5 will _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 priced _ VERB VBN _ 2 ccomp _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 $ _ SYM $ _ 12 amod _ _ 11 19-to-$21 _ ADJ CD _ 10 dep _ _ 12 range _ NOUN NN _ 7 nmod _ _ 13 and _ CONJ CC _ 7 cc _ _ 14 will _ AUX MD _ 15 aux _ _ 15 represent _ VERB VB _ 7 conj _ _ 16 about _ ADV IN _ 17 advmod _ _ 17 80 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 partnership _ NOUN NN _ 22 compound _ _ 22 equity _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 Net _ ADJ JJ _ 2 amod _ _ 2 proceeds _ NOUN NNS _ 7 nsubjpass _ _ 3 from _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 offering _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 10 mark _ _ 9 be _ VERB VB _ 10 cop _ _ 10 close _ ADJ JJ _ 7 xcomp _ _ 11 to _ ADP TO _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 200 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Goldman _ PROPN NNP _ 14 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Sachs _ PROPN NNP _ 1 conj _ _ 4 & _ CONJ CC _ 1 cc _ _ 5 Co. _ PROPN NNP _ 1 conj _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 and _ CONJ CC _ 1 cc _ _ 8 Drexel _ PROPN NNP _ 11 compound _ _ 9 Burnham _ PROPN NNP _ 11 compound _ _ 10 Lambert _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 1 conj _ _ 12 are _ VERB VBP _ 14 cop _ _ 13 lead _ ADJ JJ _ 14 amod _ _ 14 underwriters _ NOUN NNS _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Arthur _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Goldberg _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 extended _ VERB VBD _ 4 ccomp _ _ 7 his _ PRON PRP$ _ 10 nmod:poss _ _ 8 unsolicited _ ADJ JJ _ 10 amod _ _ 9 tender _ NOUN NN _ 10 compound _ _ 10 offer _ NOUN NN _ 6 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 32 _ NUM CD _ 10 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 tender _ NOUN NN _ 17 dep _ _ 17 offer _ NOUN NN _ 15 dep _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 or _ CONJ CC _ 13 cc _ _ 20 $ _ SYM $ _ 13 conj _ _ 21 154.3 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 , _ PUNCT , _ 13 punct _ _ 24 for _ ADP IN _ 27 case _ _ 25 Di _ PROPN NNP _ 27 compound _ _ 26 Giorgio _ PROPN NNP _ 27 compound _ _ 27 Corp. _ PROPN NNP _ 10 nmod _ _ 28 to _ ADP TO _ 29 case _ _ 29 Nov. _ PROPN NNP _ 6 nmod _ _ 30 1 _ NUM CD _ 29 nummod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 DIG _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 New _ PROPN NNP _ 8 compound _ _ 7 Jersey _ PROPN NNP _ 8 compound _ _ 8 investor _ NOUN NN _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 acquisition _ NOUN NN _ 11 compound _ _ 11 vehicle _ NOUN NN _ 3 appos _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 that _ SCONJ IN _ 27 mark _ _ 15 as _ ADP IN _ 18 case _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 close _ NOUN NN _ 27 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 business _ NOUN NN _ 18 nmod _ _ 21 yesterday _ NOUN NN _ 18 nmod:tmod _ _ 22 , _ PUNCT , _ 27 punct _ _ 23 560,839 _ NUM CD _ 24 nummod _ _ 24 shares _ NOUN NNS _ 27 nsubjpass _ _ 25 had _ AUX VBD _ 27 aux _ _ 26 been _ AUX VBN _ 27 auxpass _ _ 27 tendered _ VERB VBN _ 13 ccomp _ _ 28 . _ PUNCT . _ 13 punct _ _ 1 Including _ VERB VBG _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 stake _ NOUN NN _ 9 nmod _ _ 4 DIG _ PROPN NNP _ 6 nsubj _ _ 5 already _ ADV RB _ 6 advmod _ _ 6 held _ VERB VBD _ 3 acl:relcl _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 DIG _ PROPN NNP _ 9 nsubj _ _ 9 holds _ VERB VBZ _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 total _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 15 case _ _ 13 about _ ADV IN _ 14 advmod _ _ 14 25 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 Di _ PROPN NNP _ 18 compound _ _ 18 Giorgio _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 shares _ NOUN NNS _ 15 nmod _ _ 21 on _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 fully _ ADV RB _ 24 advmod _ _ 24 diluted _ VERB VBN _ 25 amod _ _ 25 basis _ NOUN NN _ 9 nmod _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 also _ ADV RB _ 6 advmod _ _ 6 includes _ VERB VBZ _ 2 acl:relcl _ _ 7 common _ ADJ JJ _ 12 amod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 preferred _ VERB JJ _ 7 conj _ _ 10 stock _ NOUN NN _ 12 compound _ _ 11 purchase _ NOUN NN _ 12 compound _ _ 12 rights _ NOUN NNS _ 6 dobj _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 was _ VERB VBD _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 expire _ VERB VB _ 14 xcomp _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 night _ NOUN NN _ 16 nmod:tmod _ _ 19 at _ ADP IN _ 20 case _ _ 20 midnight _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 expiration _ NOUN NN _ 4 compound _ _ 4 date _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 date _ NOUN NN _ 0 root _ _ 8 on _ ADP IN _ 9 case _ _ 9 which _ PRON WDT _ 22 nmod _ _ 10 DIG _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 financing _ VERB NN _ 13 amod _ _ 13 commitments _ NOUN NNS _ 22 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 16 nsubj _ _ 16 total _ VERB VBP _ 13 acl:relcl _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 $ _ SYM $ _ 16 dobj _ _ 19 240 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 are _ VERB VBP _ 7 acl:relcl _ _ 23 to _ PART TO _ 24 mark _ _ 24 expire _ VERB VB _ 22 xcomp _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 DIG _ PROPN NNP _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 a _ DET DT _ 4 det _ _ 4 unit _ NOUN NN _ 0 root _ _ 5 of _ ADP IN _ 8 case _ _ 6 DIG _ PROPN NNP _ 8 compound _ _ 7 Holding _ PROPN NNP _ 8 compound _ _ 8 Corp. _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 a _ DET DT _ 11 det _ _ 11 unit _ NOUN NN _ 8 appos _ _ 12 of _ ADP IN _ 15 case _ _ 13 Rose _ PROPN NNP _ 15 compound _ _ 14 Partners _ PROPN NNPS _ 15 compound _ _ 15 L.P _ PROPN NNP _ 11 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Goldberg _ PROPN NNP _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 the _ DET DT _ 7 det _ _ 5 sole _ ADJ JJ _ 7 amod _ _ 6 general _ ADJ JJ _ 7 amod _ _ 7 partner _ NOUN NN _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 Rose _ PROPN NNP _ 10 compound _ _ 10 Partners _ PROPN NNPS _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 August _ PROPN NNP _ 20 nmod _ _ 3 , _ PUNCT , _ 20 punct _ _ 4 Di _ PROPN NNP _ 5 compound _ _ 5 Giorgio _ PROPN NNP _ 20 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 11 det _ _ 8 San _ PROPN NNP _ 11 compound _ _ 9 Francisco _ PROPN NNP _ 11 compound _ _ 10 food _ NOUN NN _ 11 compound _ _ 11 products _ NOUN NNS _ 5 appos _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 building _ NOUN NN _ 15 compound _ _ 14 materials _ NOUN NNS _ 15 compound _ _ 15 marketing _ NOUN NN _ 11 conj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 distribution _ NOUN NN _ 18 compound _ _ 18 company _ NOUN NN _ 11 conj _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 rejected _ VERB VBD _ 0 root _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Goldberg _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 offer _ NOUN NN _ 20 dobj _ _ 25 as _ ADP IN _ 26 case _ _ 26 inadequate _ ADJ JJ _ 20 advcl _ _ 27 . _ PUNCT . _ 20 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN JJ _ 7 compound _ _ 7 trading _ NOUN NN _ 12 nmod _ _ 8 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 Di _ PROPN NNP _ 11 compound _ _ 11 Giorgio _ PROPN NNP _ 12 nsubj _ _ 12 closed _ VERB VBD _ 0 root _ _ 13 at _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 31.50 _ NUM CD _ 12 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 down _ ADV RB _ 12 advmod _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.75 _ NUM CD _ 19 nmod:npmod _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 What _ PRON WP _ 4 nsubj _ _ 2 does _ AUX VBZ _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 belong _ VERB VB _ 0 root _ _ 5 here _ ADV RB _ 4 advmod _ _ 6 ? _ PUNCT . _ 4 punct _ _ 1 A. _ X NN _ 3 dep _ _ 2 manual _ ADJ JJ _ 3 amod _ _ 3 typewriters _ NOUN NNS _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 B. _ X NNP _ 7 dep _ _ 6 black-and-white _ ADJ JJ _ 7 amod _ _ 7 snapshots _ NOUN NNS _ 3 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 C. _ X FW _ 12 dep _ _ 10 radio _ NOUN NN _ 12 compound _ _ 11 adventure _ NOUN NN _ 12 compound _ _ 12 shows _ NOUN NNS _ 3 appos _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 guessed _ VERB VBD _ 9 advcl _ _ 4 black-and-white _ ADJ JJ _ 5 amod _ _ 5 snapshots _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 you _ PRON PRP _ 9 nsubj _ _ 8 're _ VERB VBP _ 9 cop _ _ 9 right _ ADJ RB _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 years _ NOUN NNS _ 12 nmod _ _ 3 of _ SCONJ IN _ 4 case _ _ 4 fading _ NOUN JJ _ 2 acl _ _ 5 into _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 background _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 two-tone _ ADJ JJ _ 10 amod _ _ 10 photography _ NOUN NN _ 12 nsubj _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 coming _ VERB VBG _ 0 root _ _ 13 back _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 Trendy _ ADJ JJ _ 3 amod _ _ 2 magazine _ NOUN NN _ 3 compound _ _ 3 advertisements _ NOUN NNS _ 4 nsubj _ _ 4 feature _ VERB VBP _ 0 root _ _ 5 stark _ ADJ JJ _ 7 amod _ _ 6 black-and-white _ ADJ JJ _ 7 amod _ _ 7 photos _ NOUN NNS _ 4 dobj _ _ 8 of _ SCONJ IN _ 11 mark _ _ 9 Hollywood _ PROPN NNP _ 10 compound _ _ 10 celebrities _ NOUN NNS _ 11 nsubj _ _ 11 pitching _ VERB VBG _ 7 acl _ _ 12 jeans _ NOUN NNS _ 11 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 shoes _ NOUN NNS _ 12 conj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 liquor _ NOUN NN _ 12 conj _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Portrait _ NOUN NN _ 2 compound _ _ 2 studios _ NOUN NNS _ 9 nsubj _ _ 3 accustomed _ VERB VBN _ 2 acl _ _ 4 to _ ADP TO _ 5 mark _ _ 5 shooting _ VERB VBG _ 3 advcl _ _ 6 only _ ADV RB _ 8 advmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 color _ NOUN NN _ 5 nmod _ _ 9 report _ VERB NN _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 rush _ NOUN NN _ 9 dobj _ _ 12 to _ ADP TO _ 15 case _ _ 13 black-and-white _ ADJ JJ _ 15 amod _ _ 14 portrait _ NOUN NN _ 15 compound _ _ 15 orders _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 black-and-white _ ADJ JJ _ 4 amod _ _ 3 photography _ NOUN NN _ 4 compound _ _ 4 classes _ NOUN NNS _ 6 nsubjpass _ _ 5 are _ AUX VBP _ 6 auxpass _ _ 6 crowded _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 8 case _ _ 8 students _ NOUN NNS _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 happening _ VERB VBG _ 6 csubj _ _ 4 in _ ADP IN _ 5 case _ _ 5 photography _ NOUN NN _ 3 nmod _ _ 6 mirrors _ VERB VBZ _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 popularity _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 black _ ADJ JJ _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 white _ ADJ JJ _ 10 conj _ _ 13 in _ ADP IN _ 14 case _ _ 14 fashion _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 home _ NOUN NN _ 17 compound _ _ 17 furnishings _ NOUN NNS _ 14 conj _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 cinematography _ NOUN NN _ 14 conj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Seventh _ PROPN NNP _ 3 compound _ _ 3 Avenue _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 designers _ NOUN NNS _ 8 nsubj _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ AUX VBN _ 8 aux _ _ 8 advancing _ VERB VBG _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 monochrome _ ADJ JJ _ 11 amod _ _ 11 look _ NOUN NN _ 8 dobj _ _ 12 with _ ADP IN _ 14 case _ _ 13 clothing _ NOUN NN _ 14 compound _ _ 14 collections _ NOUN NNS _ 8 nmod _ _ 15 done _ VERB VBN _ 14 acl _ _ 16 entirely _ ADV RB _ 15 advmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 black _ ADJ JJ _ 15 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 white _ ADJ JJ _ 18 conj _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 classic _ ADJ JJ _ 4 amod _ _ 3 black-and-white _ ADJ JJ _ 4 amod _ _ 4 movies _ NOUN NNS _ 6 nsubj _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 enjoying _ VERB VBG _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 comeback _ NOUN NN _ 6 dobj _ _ 9 on _ ADP IN _ 11 case _ _ 10 videocassette _ NOUN NN _ 11 compound _ _ 11 tapes _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 spurred _ VERB VBN _ 8 acl _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 in _ ADP IN _ 16 case _ _ 16 part _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 by _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 backlash _ NOUN NN _ 13 nmod _ _ 21 against _ ADP IN _ 22 case _ _ 22 colorization _ NOUN NN _ 20 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 old _ ADJ JJ _ 25 amod _ _ 25 films _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 pendulum _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 swinging _ VERB VBG _ 13 dep _ _ 6 back _ ADV RB _ 5 advmod _ _ 7 to _ ADP TO _ 8 case _ _ 8 black _ NOUN JJ _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 white _ NOUN JJ _ 8 conj _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 Richard _ PROPN NNP _ 15 compound _ _ 15 DeMoulin _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 general _ ADJ JJ _ 19 amod _ _ 19 manager _ NOUN NN _ 15 appos _ _ 20 of _ ADP IN _ 27 case _ _ 21 Eastman _ PROPN NNP _ 23 compound _ _ 22 Kodak _ PROPN NNP _ 23 compound _ _ 23 Co. _ PROPN NNP _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 professional _ ADJ JJ _ 27 amod _ _ 26 photography _ NOUN NN _ 27 compound _ _ 27 division _ NOUN NN _ 19 nmod _ _ 28 . _ PUNCT . _ 13 punct _ _ 1 Until _ ADP IN _ 4 case _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV RB _ 12 advcl _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 sales _ NOUN NNS _ 12 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 6 nmod _ _ 10 had _ AUX VBD _ 12 aux _ _ 11 been _ AUX VBN _ 12 aux _ _ 12 declining _ VERB VBG _ 0 root _ _ 13 steadily _ ADV RB _ 12 advmod _ _ 14 since _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 1960s _ NUM NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 year _ NOUN NN _ 17 nmod:tmod _ _ 4 , _ PUNCT , _ 17 punct _ _ 5 buoyed _ VERB VBN _ 17 advcl _ _ 6 by _ ADP IN _ 8 case _ _ 7 increased _ VERB VBN _ 8 amod _ _ 8 use _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 advertising _ VERB NN _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 other _ ADJ JJ _ 14 amod _ _ 13 commercial _ ADJ JJ _ 14 amod _ _ 14 applications _ NOUN NNS _ 10 conj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 sales _ NOUN NNS _ 17 nsubj _ _ 17 increased _ VERB VBD _ 0 root _ _ 18 5 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 and _ CONJ CC _ 17 cc _ _ 22 they _ PRON PRP _ 24 nsubjpass _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 expected _ VERB VBN _ 17 conj _ _ 25 to _ PART TO _ 26 mark _ _ 26 jump _ VERB VB _ 24 xcomp _ _ 27 at _ ADP IN _ 28 case _ _ 28 least _ ADJ JJS _ 30 advmod _ _ 29 that _ DET WDT _ 30 det _ _ 30 much _ ADV RB _ 26 dobj _ _ 31 again _ ADV RB _ 26 advmod _ _ 32 this _ DET DT _ 33 det _ _ 33 year _ NOUN NN _ 26 nmod:tmod _ _ 34 . _ PUNCT . _ 17 punct _ _ 1 Photographic _ ADJ JJ _ 2 amod _ _ 2 companies _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 scrambling _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 tap _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 9 det _ _ 8 resurging _ VERB VBG _ 9 amod _ _ 9 market _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 reviving _ VERB VBG _ 4 ccomp _ _ 12 some _ DET DT _ 15 det _ _ 13 black-and-white _ ADJ JJ _ 15 amod _ _ 14 product _ NOUN NN _ 15 compound _ _ 15 lines _ NOUN NNS _ 11 dobj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 developing _ VERB VBG _ 11 conj _ _ 18 new _ ADJ JJ _ 19 amod _ _ 19 ones _ NOUN NNS _ 17 dobj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Kodak _ PROPN NNP _ 16 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 largely _ ADV RB _ 6 advmod _ _ 6 ignored _ VERB VBD _ 2 acl:relcl _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 years _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 black-and-white _ ADJ JJ _ 14 amod _ _ 13 film _ NOUN NN _ 14 compound _ _ 14 sales _ NOUN NNS _ 16 nsubj _ _ 15 now _ ADV RB _ 16 advmod _ _ 16 account _ VERB VBP _ 0 root _ _ 17 for _ ADP IN _ 20 case _ _ 18 nearly _ ADV RB _ 19 advmod _ _ 19 15 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 16 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 company _ NOUN NN _ 20 nmod _ _ 24 's _ PART POS _ 23 case _ _ 25 $ _ SYM $ _ 23 nummod _ _ 26 3 _ NUM CD _ 27 compound _ _ 27 billion _ NUM CD _ 25 nummod _ _ 28 in _ ADP IN _ 32 case _ _ 29 film _ NOUN NN _ 32 compound _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 paper _ NOUN NN _ 29 conj _ _ 32 sales _ NOUN NNS _ 23 nmod _ _ 33 annually _ ADV RB _ 23 advmod _ _ 34 , _ PUNCT , _ 20 punct _ _ 35 up _ ADP RB _ 20 advmod _ _ 36 from _ ADP IN _ 38 case _ _ 37 10 _ NUM CD _ 38 nummod _ _ 38 % _ SYM NN _ 35 nmod _ _ 39 three _ NUM CD _ 40 nummod _ _ 40 years _ NOUN NNS _ 41 nmod:npmod _ _ 41 ago _ ADV RB _ 38 advmod _ _ 42 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 7 det _ _ 2 Rochester _ PROPN NNP _ 7 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.Y. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 photographic _ ADJ JJ _ 7 amod _ _ 7 giant _ NOUN NN _ 9 nsubj _ _ 8 recently _ ADV RB _ 9 advmod _ _ 9 began _ VERB VBD _ 0 root _ _ 10 marketing _ VERB VBG _ 9 xcomp _ _ 11 T-Max _ PROPN JJ _ 10 dobj _ _ 12 3200 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 one _ NUM CD _ 11 appos _ _ 15 of _ ADP IN _ 22 case _ _ 16 the _ DET DT _ 22 det _ _ 17 fastest _ ADJ JJS _ 20 dep _ _ 18 and _ CONJ CC _ 20 cc _ _ 19 most _ ADV RBS _ 20 advmod _ _ 20 sensitive _ ADJ JJ _ 22 amod _ _ 21 monochrome _ ADJ JJ _ 22 amod _ _ 22 films _ NOUN NNS _ 14 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Aimed _ VERB VBN _ 10 advcl _ _ 2 at _ ADP IN _ 4 case _ _ 3 commercial _ ADJ JJ _ 4 amod _ _ 4 photographers _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 film _ NOUN NN _ 10 nsubjpass _ _ 8 can _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 auxpass _ _ 10 used _ VERB VBN _ 19 dep _ _ 11 in _ ADP IN _ 14 case _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 low _ ADJ JJ _ 14 amod _ _ 14 light _ NOUN NN _ 10 nmod _ _ 15 without _ SCONJ IN _ 16 mark _ _ 16 sacrificing _ VERB VBG _ 10 advcl _ _ 17 quality _ NOUN NN _ 16 dobj _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Donald _ PROPN NNP _ 21 compound _ _ 21 Franz _ PROPN NNP _ 19 nsubj _ _ 22 of _ ADP IN _ 24 case _ _ 23 Photofinishing _ PROPN NNP _ 24 compound _ _ 24 Newsletter _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 19 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 trying _ VERB VBG _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 snare _ VERB VB _ 2 xcomp _ _ 5 a _ DET DT _ 6 det _ _ 6 portion _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 $ _ SYM $ _ 12 amod _ _ 10 2 _ NUM CD _ 9 compound _ _ 11 billion-a-year _ ADJ JJ _ 9 dep _ _ 12 industry _ NOUN NN _ 6 nmod _ _ 13 is _ VERB VBZ _ 2 aux _ _ 14 Agfa _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 2 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 unit _ NOUN NN _ 15 appos _ _ 19 of _ ADP IN _ 21 case _ _ 20 Bayer _ PROPN NNP _ 21 compound _ _ 21 AG _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Agfa _ PROPN NNP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 signed _ VERB VBD _ 0 root _ _ 4 Olympic _ ADJ NNP _ 8 amod _ _ 5 gold _ NOUN NN _ 8 compound _ _ 6 medalist _ NOUN NN _ 8 compound _ _ 7 Florence _ PROPN NNP _ 8 compound _ _ 8 Griffith-Joyner _ PROPN NNP _ 3 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 endorse _ VERB VB _ 3 xcomp _ _ 11 a _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 line _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 black-and-white _ ADJ JJ _ 16 amod _ _ 16 paper _ NOUN NN _ 13 nmod _ _ 17 that _ PRON WDT _ 19 nsubjpass _ _ 18 's _ AUX VBZ _ 19 auxpass _ _ 19 geared _ VERB VBN _ 13 acl:relcl _ _ 20 to _ ADP TO _ 21 case _ _ 21 consumers _ NOUN NNS _ 19 nmod _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 will _ AUX MD _ 24 aux _ _ 24 compete _ VERB VB _ 19 conj _ _ 25 directly _ ADV RB _ 24 advmod _ _ 26 with _ ADP IN _ 29 case _ _ 27 Kodak _ PROPN NNP _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 papers _ NOUN NNS _ 24 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Slated _ VERB VBN _ 17 dep _ _ 2 for _ ADP IN _ 3 case _ _ 3 market _ NOUN NN _ 1 nmod _ _ 4 by _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 end _ NOUN NN _ 1 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 paper _ NOUN NN _ 17 nsubjpass _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 could _ AUX MD _ 17 aux _ _ 15 have _ AUX VB _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 introduced _ VERB VBN _ 31 dep _ _ 18 a _ DET DT _ 20 det _ _ 19 long _ ADJ JJ _ 20 amod _ _ 20 time _ NOUN NN _ 21 nmod:npmod _ _ 21 ago _ ADV IN _ 17 advmod _ _ 22 but _ CONJ CC _ 17 cc _ _ 23 the _ DET DT _ 24 det _ _ 24 market _ NOUN NN _ 25 nsubj _ _ 25 was _ VERB VBD _ 17 conj _ _ 26 n't _ PART RB _ 25 neg _ _ 27 there _ ADV RB _ 25 advmod _ _ 28 then _ ADV RB _ 25 advmod _ _ 29 , _ PUNCT , _ 17 punct _ _ 30 '' _ PUNCT '' _ 17 punct _ _ 31 says _ VERB VBZ _ 0 root _ _ 32 an _ DET DT _ 34 det _ _ 33 Agfa _ PROPN NNP _ 34 compound _ _ 34 spokesman _ NOUN NN _ 31 nsubj _ _ 35 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 biggest _ ADJ JJS _ 3 amod _ _ 3 beneficiary _ NOUN NN _ 9 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 black-and-white _ ADJ JJ _ 7 amod _ _ 7 revival _ NOUN NN _ 3 nmod _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 likely _ ADJ JJ _ 0 root _ _ 10 to _ PART TO _ 17 mark _ _ 11 be _ VERB VB _ 17 cop _ _ 12 International _ PROPN NNP _ 14 compound _ _ 13 Paper _ PROPN NNP _ 14 compound _ _ 14 Co. _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Ilford _ PROPN NNP _ 17 compound _ _ 17 division _ NOUN NN _ 9 xcomp _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 known _ VERB VBN _ 17 acl _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 industry _ NOUN NN _ 19 nmod _ _ 23 for _ ADP IN _ 26 case _ _ 24 its _ PRON PRP$ _ 26 nmod:poss _ _ 25 premium _ NOUN NN _ 26 compound _ _ 26 products _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 9 punct _ _ 1 Sales _ NOUN NNS _ 13 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 Ilford _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 four _ NUM CD _ 6 nummod _ _ 6 varieties _ NOUN NNS _ 1 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 6 nmod _ _ 10 this _ DET DT _ 11 det _ _ 11 year _ NOUN NN _ 13 nmod:tmod _ _ 12 are _ AUX VBP _ 13 aux _ _ 13 outpacing _ VERB VBG _ 0 root _ _ 14 growth _ NOUN NN _ 13 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 overall _ ADJ JJ _ 18 amod _ _ 18 market _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 although _ SCONJ IN _ 25 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 25 nsubj _ _ 23 wo _ AUX MD _ 25 aux _ _ 24 n't _ PART RB _ 25 neg _ _ 25 say _ VERB VB _ 13 advcl _ _ 26 by _ ADP IN _ 29 case _ _ 27 exactly _ ADV RB _ 29 advmod _ _ 28 how _ ADV WRB _ 29 advmod _ _ 29 much _ ADJ RB _ 25 nmod _ _ 30 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 hope _ VERB VBP _ 9 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 trend _ NOUN NN _ 6 nsubj _ _ 6 lasts _ VERB VBZ _ 3 ccomp _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 Laurie _ PROPN NNP _ 11 compound _ _ 11 DiCara _ PROPN NNP _ 9 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Ilford _ PROPN NNP _ 17 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 marketing _ NOUN NN _ 17 compound _ _ 16 communications _ NOUN NNS _ 17 compound _ _ 17 director _ NOUN NN _ 11 appos _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Why _ ADV WRB _ 4 dep _ _ 2 all _ DET PDT _ 4 det:predet _ _ 3 the _ DET DT _ 4 det _ _ 4 interest _ NOUN NN _ 0 root _ _ 5 ? _ PUNCT . _ 4 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 baby _ NOUN NN _ 3 compound _ _ 3 boomers _ NOUN NNS _ 15 nmod _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 grew _ VERB VBD _ 3 acl:relcl _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 being _ AUX VBG _ 8 auxpass _ _ 8 photographed _ VERB VBN _ 5 xcomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 color _ NOUN NN _ 8 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 black _ NOUN JJ _ 15 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 white _ NOUN JJ _ 12 conj _ _ 15 seems _ VERB VBZ _ 0 root _ _ 16 eye-catching _ ADJ JJ _ 15 xcomp _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 exotic _ ADJ JJ _ 16 conj _ _ 19 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 has _ VERB VBZ _ 14 dep _ _ 4 an _ DET DT _ 9 det _ _ 5 archival _ ADJ JJ _ 9 amod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 almost _ ADV RB _ 8 advmod _ _ 8 nostalgic _ ADJ JJ _ 9 amod _ _ 9 quality _ NOUN NN _ 3 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 it _ PRON PRP _ 9 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Owen _ PROPN NNP _ 17 compound _ _ 16 B. _ PROPN NNP _ 17 compound _ _ 17 Butler _ PROPN NNP _ 14 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 chairman _ NOUN NN _ 17 appos _ _ 21 of _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 applied _ VERB VBN _ 25 amod _ _ 24 photography _ NOUN NN _ 25 compound _ _ 25 department _ NOUN NN _ 20 nmod _ _ 26 at _ ADP IN _ 28 case _ _ 27 Rochester _ PROPN NNP _ 28 compound _ _ 28 Institute _ PROPN NNP _ 25 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 Technology _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 You _ PRON PRP _ 4 nsubj _ _ 3 can _ AUX MD _ 4 aux _ _ 4 shift _ VERB VB _ 15 dep _ _ 5 out _ ADP IN _ 7 case _ _ 6 of _ ADP IN _ 7 case _ _ 7 reality _ NOUN NN _ 4 nmod _ _ 8 with _ ADP IN _ 9 case _ _ 9 black _ NOUN JJ _ 4 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 white _ NOUN JJ _ 9 conj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 '' _ PUNCT '' _ 4 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 adds _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Such _ ADJ JJ _ 2 amod _ _ 2 features _ NOUN NNS _ 6 nsubj _ _ 3 have _ AUX VBP _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 especially _ ADV RB _ 6 advmod _ _ 6 attractive _ ADJ JJ _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 professional _ ADJ JJ _ 9 amod _ _ 9 photographers _ NOUN NNS _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 marketing _ NOUN NN _ 12 compound _ _ 12 executives _ NOUN NNS _ 9 conj _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 who _ PRON WP _ 18 nsubj _ _ 15 have _ AUX VBP _ 18 aux _ _ 16 been _ AUX VBN _ 18 aux _ _ 17 steadily _ ADV RB _ 18 advmod _ _ 18 increasing _ VERB VBG _ 9 acl:relcl _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 use _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 22 case _ _ 22 black _ NOUN JJ _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 white _ NOUN JJ _ 22 conj _ _ 25 in _ ADP IN _ 26 case _ _ 26 advertising _ NOUN NN _ 20 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Processing _ VERB NN _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 black-and-white _ ADJ JJ _ 5 amod _ _ 4 commercial _ ADJ JJ _ 5 amod _ _ 5 film _ NOUN NN _ 1 nmod _ _ 6 jumped _ VERB VBD _ 0 root _ _ 7 24 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 year _ NOUN NN _ 6 nmod:tmod _ _ 11 to _ ADP TO _ 14 case _ _ 12 18.7 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 14 nummod _ _ 14 rolls _ NOUN NNS _ 6 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 Gap _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 1 dobj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 whose _ PRON WP$ _ 8 nmod:poss _ _ 6 latest _ ADJ JJS _ 8 amod _ _ 7 ad _ NOUN NN _ 8 compound _ _ 8 campaign _ NOUN NN _ 9 nsubj _ _ 9 features _ VERB VBZ _ 3 acl:relcl _ _ 10 black-and-white _ ADJ JJ _ 11 amod _ _ 11 shots _ NOUN NNS _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 Hollywood _ PROPN NNP _ 14 compound _ _ 14 stars _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 artists _ NOUN NNS _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 other _ ADJ JJ _ 19 amod _ _ 19 well-known _ ADJ JJ _ 20 amod _ _ 20 personalities _ NOUN NNS _ 14 conj _ _ 21 modeling _ VERB NN _ 14 acl _ _ 22 the _ DET DT _ 23 det _ _ 23 retailer _ NOUN NN _ 25 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 jeans _ NOUN NNS _ 21 dobj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 T-shirts _ NOUN NNS _ 25 conj _ _ 28 . _ PUNCT . _ 1 punct _ _ 1 Richard _ PROPN NNP _ 2 compound _ _ 2 Crisman _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 account _ NOUN NN _ 6 compound _ _ 6 manager _ NOUN NN _ 2 appos _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 campaign _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 Gap _ PROPN NN _ 16 nsubj _ _ 13 did _ AUX VBD _ 16 aux _ _ 14 n't _ PART RB _ 16 neg _ _ 15 intentionally _ ADV RB _ 16 advmod _ _ 16 choose _ VERB VB _ 11 ccomp _ _ 17 black _ ADJ JJ _ 16 dobj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 white _ ADJ JJ _ 17 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 distinguish _ VERB VB _ 16 xcomp _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 ads _ NOUN NNS _ 21 dobj _ _ 24 from _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 color _ NOUN NN _ 27 compound _ _ 27 spreads _ NOUN NNS _ 21 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 competitors _ NOUN NNS _ 27 nmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 wanted _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 highlight _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 individual _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 not _ ADV RB _ 11 neg _ _ 10 the _ DET DT _ 11 det _ _ 11 environment _ NOUN NN _ 7 appos _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 3 dep _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 `` _ PUNCT `` _ 3 punct _ _ 18 and _ CONJ CC _ 3 cc _ _ 19 black _ NOUN JJ _ 22 nsubj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 white _ NOUN JJ _ 19 conj _ _ 22 allows _ VERB VBZ _ 3 conj _ _ 23 you _ PRON PRP _ 22 dobj _ _ 24 to _ PART TO _ 25 mark _ _ 25 do _ VERB VB _ 22 xcomp _ _ 26 that _ PRON IN _ 25 dobj _ _ 27 better _ ADV JJR _ 25 advmod _ _ 28 than _ ADP IN _ 29 case _ _ 29 color _ NOUN NN _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 31 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 campaign _ NOUN NN _ 3 nsubj _ _ 3 won _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 Cleo _ PROPN NNP _ 6 compound _ _ 6 award _ NOUN NN _ 3 dobj _ _ 7 as _ ADP IN _ 12 case _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 best _ ADJ JJS _ 12 amod _ _ 12 ad _ NOUN NN _ 6 nmod _ _ 13 by _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 specialty _ NOUN NN _ 16 compound _ _ 16 retailer _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Even _ ADV RB _ 3 advmod _ _ 2 food _ NOUN NN _ 3 compound _ _ 3 products _ NOUN NNS _ 15 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 automobiles _ NOUN NNS _ 3 conj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 which _ PRON WDT _ 10 nsubj _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 long _ ADV JJ _ 10 advmod _ _ 10 depended _ VERB VBD _ 3 acl:relcl _ _ 11 on _ ADP IN _ 12 case _ _ 12 color _ NOUN NN _ 10 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 are _ AUX VBP _ 15 aux _ _ 15 making _ VERB VBG _ 0 root _ _ 16 the _ DET DT _ 17 det _ _ 17 switch _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 15 punct _ _ 1 Companies _ NOUN NNS _ 3 nsubj _ _ 2 `` _ PUNCT `` _ 3 punct _ _ 3 feel _ VERB VBP _ 14 dep _ _ 4 black _ NOUN JJ _ 8 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 white _ NOUN JJ _ 4 conj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 convey _ VERB VB _ 3 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 stronger _ ADJ JJR _ 11 amod _ _ 11 statement _ NOUN NN _ 8 dobj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Marc _ PROPN NNP _ 17 compound _ _ 16 L. _ PROPN NNP _ 17 compound _ _ 17 Hauser _ PROPN NNP _ 14 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 Chicago _ PROPN NNP _ 21 compound _ _ 21 photographer _ NOUN NNP _ 17 appos _ _ 22 who _ PRON WP _ 24 nsubj _ _ 23 is _ AUX VBZ _ 24 aux _ _ 24 working _ VERB VBG _ 21 acl:relcl _ _ 25 on _ ADP IN _ 29 case _ _ 26 a _ DET DT _ 29 det _ _ 27 black-and-white _ ADJ JJ _ 29 amod _ _ 28 print _ NOUN NN _ 29 compound _ _ 29 ad _ NOUN NN _ 24 nmod _ _ 30 for _ ADP IN _ 36 case _ _ 31 Stouffer _ PROPN NNP _ 33 compound _ _ 32 Food _ PROPN NNP _ 33 compound _ _ 33 Corp. _ PROPN NNP _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 Lean _ PROPN VB _ 36 compound _ _ 36 Cuisine _ PROPN NNP _ 29 nmod _ _ 37 . _ PUNCT . _ 14 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 companies _ NOUN NNS _ 9 nsubj _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 are _ AUX VBP _ 6 aux _ _ 5 currently _ ADV RB _ 6 advmod _ _ 6 using _ VERB VBG _ 2 acl:relcl _ _ 7 two-tone _ ADJ JJ _ 8 amod _ _ 8 ads _ NOUN NNS _ 6 dobj _ _ 9 include _ VERB VBP _ 0 root _ _ 10 American _ PROPN NNP _ 12 compound _ _ 11 Express _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 9 dobj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Epson _ PROPN NNP _ 16 compound _ _ 15 America _ PROPN NNP _ 16 compound _ _ 16 Inc _ PROPN NNP _ 12 conj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Portrait _ NOUN NN _ 2 compound _ _ 2 studios _ NOUN NNS _ 5 nsubj _ _ 3 have _ AUX VBP _ 5 aux _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 latched _ VERB VBN _ 0 root _ _ 6 onto _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 trend _ NOUN NN _ 5 nmod _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 Using _ VERB VBG _ 9 dep _ _ 2 black _ NOUN JJ _ 1 dobj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 white _ NOUN JJ _ 2 conj _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 we _ PRON PRP _ 9 nsubj _ _ 8 can _ AUX MD _ 9 aux _ _ 9 make _ VERB VB _ 16 dep _ _ 10 housewives _ NOUN NNS _ 11 nsubj _ _ 11 look _ VERB VB _ 9 ccomp _ _ 12 like _ ADP IN _ 13 case _ _ 13 stars _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 '' _ PUNCT '' _ 9 punct _ _ 16 says _ VERB VBZ _ 0 root _ _ 17 John _ PROPN NNP _ 18 compound _ _ 18 Perrin _ PROPN NNP _ 16 nsubj _ _ 19 . _ PUNCT . _ 16 punct _ _ 1 His _ PRON PRP$ _ 4 nmod:poss _ _ 2 On-Broadway _ PROPN NNP _ 4 compound _ _ 3 Photography _ PROPN NNP _ 4 compound _ _ 4 studio _ NOUN NN _ 10 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 Portland _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Ore. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 doubled _ VERB VBD _ 0 root _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 business _ NOUN NN _ 10 dobj _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 nmod:tmod _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 10 parataxis _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 is _ AUX VBZ _ 21 auxpass _ _ 21 booked _ VERB VBN _ 10 conj _ _ 22 solid _ ADJ JJ _ 21 xcomp _ _ 23 for _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 next _ ADJ JJ _ 26 amod _ _ 26 five _ NUM CD _ 21 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 customer _ NOUN NN _ 7 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Dayna _ PROPN NNP _ 5 compound _ _ 5 Brunsdon _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 says _ VERB VBZ _ 0 root _ _ 8 she _ PRON PRP _ 9 nsubj _ _ 9 spurned _ VERB VBD _ 7 ccomp _ _ 10 a _ DET DT _ 12 det _ _ 11 color _ NOUN NN _ 12 compound _ _ 12 portrait _ NOUN NN _ 9 dobj _ _ 13 for _ ADP IN _ 14 case _ _ 14 black _ ADJ JJ _ 9 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 white _ ADJ JJ _ 14 conj _ _ 17 because _ SCONJ IN _ 22 mark _ _ 18 `` _ PUNCT `` _ 22 punct _ _ 19 it _ PRON PRP _ 22 nsubj _ _ 20 's _ VERB VBZ _ 22 cop _ _ 21 more _ ADV JJR _ 22 advmod _ _ 22 dramatic _ ADJ JJ _ 9 advcl _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 show _ VERB VBP _ 0 root _ _ 3 it _ PRON PRP _ 2 dobj _ _ 4 to _ ADP TO _ 6 case _ _ 5 my _ PRON PRP$ _ 6 nmod:poss _ _ 6 friends _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 and _ CONJ CC _ 2 cc _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 all _ DET DT _ 9 det _ _ 11 say _ VERB VBP _ 2 conj _ _ 12 ` _ PUNCT `` _ 11 punct _ _ 13 wow _ INTJ NN _ 11 dobj _ _ 14 . _ PUNCT . _ 11 punct _ _ 15 ' _ PUNCT '' _ 11 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 n't _ PART RB _ 4 neg _ _ 4 ordinary _ ADJ JJ _ 0 root _ _ 5 like _ ADP IN _ 6 case _ _ 6 color _ NOUN NN _ 4 nmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 8 '' _ PUNCT '' _ 4 punct _ _ 1 Still _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 most _ ADJ RBS _ 4 amod _ _ 4 consumers _ NOUN NNS _ 7 nsubj _ _ 5 are _ AUX VBP _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 plunking _ VERB VBG _ 0 root _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 7 dobj _ _ 10 into _ ADP IN _ 12 case _ _ 11 their _ PRON PRP$ _ 12 nmod:poss _ _ 12 cameras _ NOUN NNS _ 7 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 take _ VERB VB _ 7 advcl _ _ 15 family _ NOUN NN _ 16 compound _ _ 16 snapshots _ NOUN NNS _ 14 dobj _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 obstacle _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 few _ ADJ JJ _ 7 amod _ _ 7 drugstores _ NOUN NNS _ 8 nsubj _ _ 8 develop _ VERB VBP _ 4 ccomp _ _ 9 the _ DET DT _ 10 det _ _ 10 film _ NOUN NN _ 8 dobj _ _ 11 anymore _ ADV RB _ 8 advmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Typically _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 it _ PRON PRP _ 6 nsubjpass _ _ 4 must _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 mailed _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 handful _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 processors _ NOUN NNS _ 9 nmod _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 may _ AUX MD _ 14 aux _ _ 14 take _ VERB VB _ 6 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:tmod _ _ 17 or _ CONJ CC _ 18 cc _ _ 18 more _ ADJ JJR _ 16 nummod _ _ 19 to _ PART TO _ 21 mark _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 processed _ VERB VBN _ 14 xcomp _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 returned _ VERB VBN _ 21 conj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Black-and-white _ ADJ JJ _ 2 amod _ _ 2 film _ NOUN NN _ 3 nsubj _ _ 3 costs _ VERB NNS _ 0 root _ _ 4 consumers _ NOUN NNS _ 3 iobj _ _ 5 a _ DET DT _ 6 det _ _ 6 little _ ADV JJ _ 7 nmod:npmod _ _ 7 less _ ADJ JJR _ 3 dobj _ _ 8 than _ ADP IN _ 10 case _ _ 9 color _ NOUN NN _ 10 compound _ _ 10 film _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 and _ CONJ CC _ 3 cc _ _ 13 processing _ NOUN NN _ 14 nsubj _ _ 14 costs _ VERB VBZ _ 3 conj _ _ 15 the _ DET DT _ 16 det _ _ 16 same _ ADJ JJ _ 14 dobj _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 for _ ADP IN _ 3 case _ _ 3 photofinishers _ NOUN NNS _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 developing _ NOUN VBG _ 6 compound _ _ 6 costs _ NOUN NNS _ 11 nsubj _ _ 7 for _ ADP IN _ 9 case _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 6 nmod _ _ 10 are _ VERB VBP _ 11 cop _ _ 11 higher _ ADJ JJR _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 companies _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 starting _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 tackle _ VERB VB _ 4 xcomp _ _ 7 that _ DET DT _ 8 det _ _ 8 problem _ NOUN NN _ 6 dobj _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Ilford _ PROPN NNP _ 7 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 example _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 recently _ ADV RB _ 7 advmod _ _ 7 introduced _ VERB VBD _ 0 root _ _ 8 a _ DET DT _ 10 det _ _ 9 black-and-white _ ADJ JJ _ 10 amod _ _ 10 film _ NOUN NN _ 7 dobj _ _ 11 that _ PRON WDT _ 14 nsubjpass _ _ 12 can _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 processed _ VERB VBN _ 10 acl:relcl _ _ 15 quickly _ ADV RB _ 14 advmod _ _ 16 by _ ADP IN _ 18 case _ _ 17 color _ NOUN NN _ 18 compound _ _ 18 labs _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 Intent _ NOUN NN _ 10 ccomp _ _ 2 on _ SCONJ IN _ 3 mark _ _ 3 wooing _ VERB VBG _ 1 advcl _ _ 4 customers _ NOUN NNS _ 3 dobj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 10 nsubj _ _ 8 is _ AUX VBZ _ 10 aux _ _ 9 also _ ADV RB _ 10 advmod _ _ 10 increasing _ VERB VBG _ 0 root _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 sponsorship _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 black-and-white _ ADJ JJ _ 16 amod _ _ 15 photography _ NOUN NN _ 16 compound _ _ 16 classes _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 Similarly _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Agfa _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 sponsoring _ VERB VBG _ 0 root _ _ 6 scores _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 photography _ NOUN NN _ 9 compound _ _ 9 contests _ NOUN NNS _ 6 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 high _ ADJ JJ _ 12 amod _ _ 12 schools _ NOUN NNS _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 colleges _ NOUN NNS _ 12 conj _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 offering _ VERB VBG _ 5 advcl _ _ 17 free _ ADJ JJ _ 19 amod _ _ 18 black-and-white _ ADJ JJ _ 19 amod _ _ 19 film _ NOUN NN _ 16 dobj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 paper _ NOUN NN _ 19 conj _ _ 22 as _ ADP IN _ 23 case _ _ 23 prizes _ NOUN NNS _ 16 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 Kodak _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 distributing _ VERB VBG _ 0 root _ _ 5 an _ DET DT _ 7 det _ _ 6 instructional _ ADJ JJ _ 7 amod _ _ 7 video _ NOUN NN _ 4 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 processors _ NOUN NNS _ 4 nmod _ _ 10 on _ SCONJ IN _ 13 mark _ _ 11 how _ ADV WRB _ 13 advmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 develop _ VERB VB _ 4 advcl _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 monochrome _ ADJ JJ _ 16 amod _ _ 16 film _ NOUN NN _ 13 dobj _ _ 17 more _ ADV RBR _ 18 advmod _ _ 18 efficiently _ ADV RB _ 13 advmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 companies _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 introducing _ VERB VBG _ 0 root _ _ 5 related _ VERB JJ _ 6 amod _ _ 6 products _ NOUN NNS _ 4 dobj _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 Charles _ PROPN NNP _ 3 compound _ _ 2 Beseler _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 7 det _ _ 6 leading _ VERB VBG _ 7 amod _ _ 7 maker _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 10 case _ _ 9 photographic _ ADJ JJ _ 10 amod _ _ 10 enlargers _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 introduced _ VERB VBN _ 0 root _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 month _ NOUN NN _ 12 nmod:tmod _ _ 15 a _ DET DT _ 19 det _ _ 16 complete _ ADJ JJ _ 19 amod _ _ 17 darkroom _ NOUN NN _ 19 compound _ _ 18 starter _ NOUN JJ _ 19 compound _ _ 19 kit _ NOUN NN _ 12 dobj _ _ 20 targeted _ VERB VBN _ 19 acl _ _ 21 at _ ADP IN _ 22 case _ _ 22 teen-agers _ NOUN NNS _ 20 nmod _ _ 23 who _ PRON WP _ 24 nsubj _ _ 24 want _ VERB VBP _ 22 acl:relcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 process _ VERB VB _ 24 xcomp _ _ 27 their _ PRON PRP$ _ 30 nmod:poss _ _ 28 own _ ADJ JJ _ 30 amod _ _ 29 black-and-white _ ADJ JJ _ 30 amod _ _ 30 photographs _ NOUN NNS _ 26 dobj _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 kit _ NOUN NN _ 21 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 has _ VERB VBZ _ 2 acl:relcl _ _ 6 a _ DET DT _ 9 det _ _ 7 suggested _ VERB VBN _ 9 amod _ _ 8 retail _ ADJ JJ _ 9 amod _ _ 9 price _ NOUN NN _ 5 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 250 _ NUM CD _ 9 nmod _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 already _ ADV RB _ 16 advmod _ _ 16 become _ VERB VB _ 5 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 bestseller _ NOUN NN _ 16 xcomp _ _ 19 , _ PUNCT , _ 2 punct _ _ 20 was _ AUX VBD _ 21 auxpass _ _ 21 introduced _ VERB VBN _ 0 root _ _ 22 after _ SCONJ IN _ 24 mark _ _ 23 retailers _ NOUN NNS _ 24 nsubj _ _ 24 noticed _ VERB VBD _ 21 advcl _ _ 25 numerous _ ADJ JJ _ 26 amod _ _ 26 requests _ NOUN NNS _ 24 dobj _ _ 27 from _ ADP IN _ 28 case _ _ 28 parents _ NOUN NNS _ 26 nmod _ _ 29 for _ ADP IN _ 33 case _ _ 30 children _ NOUN NNS _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 photography _ NOUN NN _ 33 compound _ _ 33 equipment _ NOUN NN _ 26 nmod _ _ 34 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 11 dep _ _ 4 computers _ NOUN NNS _ 8 nsubj _ _ 5 as _ ADP IN _ 6 case _ _ 6 hobbies _ NOUN NNS _ 4 nmod _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 waned _ VERB VBN _ 3 ccomp _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 '' _ PUNCT '' _ 3 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 Ian _ PROPN NNP _ 13 compound _ _ 13 Brightman _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Beseler _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 chairman _ NOUN NN _ 13 appos _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 chief _ ADJ JJ _ 21 amod _ _ 20 executive _ ADJ JJ _ 21 amod _ _ 21 officer _ NOUN NN _ 17 conj _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 some _ DET DT _ 4 det _ _ 3 industry _ NOUN NN _ 4 compound _ _ 4 observers _ NOUN NNS _ 5 nsubj _ _ 5 believe _ VERB VBP _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 resurgence _ NOUN NN _ 15 nsubj _ _ 8 of _ ADP IN _ 9 case _ _ 9 black _ NOUN JJ _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 white _ NOUN JJ _ 9 conj _ _ 12 is _ VERB VBZ _ 15 cop _ _ 13 only _ ADV RB _ 15 advmod _ _ 14 a _ DET DT _ 15 det _ _ 15 fad _ NOUN NN _ 5 ccomp _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 cite _ VERB VBP _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 emergence _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 still _ ADJ RB _ 8 amod _ _ 7 electronic _ ADJ JJ _ 8 amod _ _ 8 photography _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 more _ ADJ JJR _ 11 amod _ _ 11 newspapers _ NOUN NNS _ 12 nsubj _ _ 12 turning _ VERB VBG _ 4 conj _ _ 13 to _ ADP TO _ 14 case _ _ 14 color _ VERB NN _ 12 nmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 pages _ NOUN NNS _ 12 nmod _ _ 18 and _ CONJ CC _ 4 cc _ _ 19 measurable _ ADJ JJ _ 20 amod _ _ 20 improvements _ NOUN NNS _ 4 conj _ _ 21 in _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 quality _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 color _ NOUN NN _ 26 compound _ _ 26 prints _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 Black _ NOUN JJ _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 white _ NOUN JJ _ 2 conj _ _ 5 has _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 made _ VERB VBN _ 19 ccomp _ _ 8 the _ DET DT _ 11 det _ _ 9 same _ ADJ JJ _ 11 amod _ _ 10 quantum _ NOUN NN _ 11 compound _ _ 11 leaps _ NOUN VBZ _ 7 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 technological _ ADJ JJ _ 14 amod _ _ 14 development _ NOUN NN _ 11 nmod _ _ 15 as _ ADP IN _ 16 case _ _ 16 color _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Butler _ PROPN NNP _ 19 nsubj _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 Rochester _ PROPN NNP _ 25 compound _ _ 25 Institute _ PROPN NNP _ 21 nmod _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 color _ NOUN NN _ 4 compound _ _ 4 print _ NOUN NN _ 8 nsubj _ _ 5 today _ NOUN NN _ 8 nmod:tmod _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 far _ ADV RB _ 8 advmod _ _ 8 superior _ ADJ JJ _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 prints _ NOUN NNS _ 8 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 10 _ NUM CD _ 13 nummod _ _ 13 years _ NOUN NNS _ 14 nmod:npmod _ _ 14 ago _ ADV RB _ 10 acl _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 You _ PRON PRP _ 4 nsubj _ _ 2 ca _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 say _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 same _ ADJ JJ _ 4 dobj _ _ 7 with _ ADP IN _ 8 case _ _ 8 black _ ADJ JJ _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 white _ ADJ JJ _ 8 conj _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 But _ CONJ CC _ 32 cc _ _ 2 when _ ADV WRB _ 12 advmod _ _ 3 Popular _ PROPN NNP _ 4 compound _ _ 4 Photography _ PROPN NNP _ 12 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 leading _ VERB VBG _ 8 amod _ _ 8 magazine _ NOUN NN _ 4 appos _ _ 9 for _ ADP IN _ 10 case _ _ 10 photographers _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 selected _ VERB VBN _ 32 advcl _ _ 13 15 _ NUM CD _ 12 dobj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 greatest _ ADJ JJS _ 17 amod _ _ 17 photos _ NOUN NNS _ 13 nmod _ _ 18 ever _ ADV RB _ 19 advmod _ _ 19 made _ VERB VBN _ 17 acl _ _ 20 for _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 latest _ ADJ JJS _ 23 amod _ _ 23 issue _ NOUN NN _ 12 nmod _ _ 24 celebrating _ VERB VBG _ 23 acl _ _ 25 photography _ NOUN NN _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 150th _ ADJ JJ _ 28 amod _ _ 28 anniversary _ NOUN NN _ 24 dobj _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 all _ DET DT _ 32 nsubj _ _ 31 were _ VERB VBD _ 32 cop _ _ 32 black _ NOUN JJ _ 0 root _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 white _ NOUN JJ _ 32 conj _ _ 35 . _ PUNCT . _ 32 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 It _ PRON PRP _ 4 nsubjpass _ _ 3 's _ AUX VBZ _ 4 auxpass _ _ 4 got _ VERB VBD _ 14 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 classic _ ADJ JJ _ 7 amod _ _ 7 spirit _ NOUN NN _ 4 dobj _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 carries _ VERB VBZ _ 4 conj _ _ 10 over _ ADP IN _ 9 compound:prt _ _ 11 emotionally _ ADV RB _ 9 advmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Alfred _ PROPN NNP _ 16 compound _ _ 16 DeBat _ PROPN NNP _ 14 nsubj _ _ 17 of _ ADP IN _ 19 case _ _ 18 Professional _ PROPN NNP _ 19 compound _ _ 19 Photographers _ PROPN NNPS _ 16 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 America _ PROPN NNP _ 19 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 That _ PRON DT _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 appeal _ NOUN NN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 McClatchy _ PROPN NNP _ 3 compound _ _ 2 Newspapers _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 improvements _ NOUN NNS _ 11 nsubj _ _ 6 in _ ADP IN _ 10 case _ _ 7 advertising _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 subscription _ NOUN NN _ 7 conj _ _ 10 revenue _ NOUN NN _ 5 nmod _ _ 11 led _ VERB VBD _ 4 ccomp _ _ 12 to _ ADP TO _ 16 case _ _ 13 a _ DET DT _ 16 det _ _ 14 21 _ NUM CD _ 15 compound _ _ 15 % _ SYM NN _ 16 amod _ _ 16 gain _ NOUN NN _ 11 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 third-quarter _ ADJ JJ _ 19 amod _ _ 19 profit _ NOUN NN _ 16 nmod _ _ 20 to _ ADP TO _ 21 case _ _ 21 $ _ SYM $ _ 16 nmod _ _ 22 8.8 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 or _ CONJ CC _ 21 cc _ _ 26 31 _ NUM CD _ 27 nummod _ _ 27 cents _ NOUN NNS _ 21 conj _ _ 28 a _ DET DT _ 29 det _ _ 29 share _ NOUN NN _ 27 nmod:npmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 from _ ADP IN _ 32 case _ _ 32 $ _ SYM $ _ 16 nmod _ _ 33 7.2 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 , _ PUNCT , _ 32 punct _ _ 36 or _ CONJ CC _ 32 cc _ _ 37 25 _ NUM CD _ 38 nummod _ _ 38 cents _ NOUN NNS _ 32 conj _ _ 39 a _ DET DT _ 40 det _ _ 40 share _ NOUN NN _ 38 nmod:npmod _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 more _ ADV JJR _ 5 advmod _ _ 4 than _ ADP IN _ 3 mwe _ _ 5 7 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 2 dobj _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 2 nmod _ _ 9 94.9 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 from _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 2 nmod _ _ 13 88.3 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Sacramento _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Calif. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 company _ NOUN NN _ 8 nsubj _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 attributed _ VERB VBD _ 0 root _ _ 9 improved _ VERB JJ _ 10 amod _ _ 10 performance _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 16 case _ _ 12 a _ DET DT _ 16 det _ _ 13 lower _ ADJ JJR _ 16 amod _ _ 14 effective _ ADJ JJ _ 16 amod _ _ 15 tax _ NOUN NN _ 16 compound _ _ 16 rate _ NOUN NN _ 8 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 higher _ ADJ JJR _ 20 amod _ _ 19 interest _ NOUN NN _ 20 compound _ _ 20 income _ NOUN NN _ 16 conj _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 newspaper _ NOUN NN _ 8 compound _ _ 8 chain _ NOUN NN _ 9 nsubj _ _ 9 had _ VERB VBD _ 0 root _ _ 10 almost _ ADV RB _ 14 advmod _ _ 11 a _ DET DT _ 14 det _ _ 12 23 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 increase _ NOUN NN _ 9 dobj _ _ 15 in _ ADP IN _ 16 case _ _ 16 profit _ NOUN NN _ 14 nmod _ _ 17 to _ ADP TO _ 18 case _ _ 18 $ _ SYM $ _ 14 nmod _ _ 19 23.6 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 or _ CONJ CC _ 18 cc _ _ 23 83 _ NUM CD _ 24 nummod _ _ 24 cents _ NOUN NNS _ 18 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 24 nmod:npmod _ _ 27 , _ PUNCT , _ 18 punct _ _ 28 from _ ADP IN _ 29 case _ _ 29 $ _ SYM $ _ 14 nmod _ _ 30 19.2 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 , _ PUNCT , _ 29 punct _ _ 33 or _ CONJ CC _ 29 cc _ _ 34 68 _ NUM CD _ 35 nummod _ _ 35 cents _ NOUN NNS _ 29 conj _ _ 36 a _ DET DT _ 37 det _ _ 37 share _ NOUN NN _ 35 nmod:npmod _ _ 38 . _ PUNCT . _ 9 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 grew _ VERB VBD _ 0 root _ _ 3 almost _ ADV RB _ 4 advmod _ _ 4 7 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 2 nmod _ _ 8 279.1 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 from _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 2 nmod _ _ 12 261.3 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 McClatchy _ PROPN NNP _ 2 nsubj _ _ 2 publishes _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 9 det _ _ 4 Sacramento _ PROPN NNP _ 9 dep _ _ 5 -LRB- _ PUNCT -LRB- _ 4 punct _ _ 6 Calif _ PROPN NNP _ 4 dep _ _ 7 . _ PUNCT . _ 4 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 4 punct _ _ 9 Bee _ PROPN NN _ 2 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Tacoma _ PROPN NNP _ 17 dep _ _ 12 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 13 Wash _ PROPN NNP _ 11 dep _ _ 14 . _ PUNCT . _ 11 punct _ _ 15 -RRB- _ PUNCT -RRB- _ 11 punct _ _ 16 News _ PROPN NNP _ 17 compound _ _ 17 Tribune _ PROPN NNP _ 9 conj _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 and _ CONJ CC _ 9 cc _ _ 20 other _ ADJ JJ _ 21 amod _ _ 21 papers _ NOUN NNS _ 9 conj _ _ 22 in _ ADP IN _ 24 case _ _ 23 Western _ ADJ JJ _ 24 amod _ _ 24 states _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 composite _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 13 nmod _ _ 4 on _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 New _ PROPN NNP _ 9 compound _ _ 7 York _ PROPN NNP _ 9 compound _ _ 8 Stock _ PROPN NNP _ 9 compound _ _ 9 Exchange _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 25.25 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 down _ ADV RB _ 13 advmod _ _ 21 25 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 20 nmod:npmod _ _ 23 . _ PUNCT . _ 13 punct _ _ 1 Agip _ PROPN NNP _ 4 compound _ _ 2 S.p _ PROPN NNP _ 4 compound _ _ 3 . _ PUNCT . _ 4 punct _ _ 4 A. _ PROPN NN _ 22 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 Societe _ PROPN NNP _ 9 compound _ _ 7 National _ PROPN NNP _ 9 compound _ _ 8 Elf _ PROPN NNP _ 9 compound _ _ 9 Aquitaine _ PROPN NNP _ 4 conj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 the _ DET DT _ 14 det _ _ 12 state _ NOUN NN _ 14 compound _ _ 13 oil _ NOUN NN _ 14 compound _ _ 14 companies _ NOUN NNS _ 4 appos _ _ 15 of _ ADP IN _ 16 case _ _ 16 Italy _ PROPN NNP _ 14 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 France _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 respectively _ ADV RB _ 14 advmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 submitted _ VERB VBD _ 0 root _ _ 23 an _ DET DT _ 24 det _ _ 24 offer _ NOUN NN _ 22 dobj _ _ 25 to _ PART TO _ 26 mark _ _ 26 buy _ VERB VB _ 24 acl _ _ 27 Gatoil _ PROPN NNP _ 29 compound _ _ 28 Suisse _ PROPN NNP _ 29 compound _ _ 29 S.A _ PROPN NNP _ 26 dobj _ _ 30 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 price _ NOUN NN _ 5 nsubjpass _ _ 3 was _ AUX VBD _ 5 auxpass _ _ 4 n't _ PART RB _ 5 neg _ _ 5 disclosed _ VERB VBN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Gatoil _ PROPN NNP _ 2 nmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 the _ DET DT _ 10 det _ _ 8 Swiss _ PROPN JJ _ 10 compound _ _ 9 oil _ NOUN NN _ 10 compound _ _ 10 concern _ NOUN NN _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 examining _ VERB VBG _ 5 ccomp _ _ 13 the _ DET DT _ 14 det _ _ 14 offer _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 16 punct _ _ 16 submitted _ VERB VBN _ 14 dep _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 along _ ADP IN _ 24 case _ _ 21 with _ ADP IN _ 24 case _ _ 22 two _ NUM CD _ 24 nummod _ _ 23 other _ ADJ JJ _ 24 amod _ _ 24 offers _ NOUN NNS _ 14 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 also _ ADV RB _ 27 advmod _ _ 27 submitted _ VERB VBN _ 24 acl _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 week _ NOUN NN _ 27 nmod:tmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Those _ DET DT _ 3 det _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 offers _ NOUN NNS _ 5 nsubj _ _ 4 were _ VERB VBD _ 5 cop _ _ 5 private _ ADJ JJ _ 0 root _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 the _ DET DT _ 8 det _ _ 8 spokesman _ NOUN NN _ 9 nsubj _ _ 9 refused _ VERB VBD _ 5 conj _ _ 10 to _ PART TO _ 11 mark _ _ 11 identify _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 14 det _ _ 13 bidding _ VERB NN _ 14 amod _ _ 14 companies _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 4 nsubj _ _ 3 further _ ADV RB _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 at _ ADP IN _ 7 case _ _ 7 least _ ADJ JJS _ 8 nmod:npmod _ _ 8 two _ NUM CD _ 10 nummod _ _ 9 more _ ADJ JJR _ 8 advmod _ _ 10 offers _ NOUN NNS _ 12 nsubjpass _ _ 11 are _ AUX VBP _ 12 auxpass _ _ 12 expected _ VERB VBN _ 4 ccomp _ _ 13 from _ ADP IN _ 15 case _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 companies _ NOUN NNS _ 12 nmod _ _ 16 within _ ADP IN _ 18 case _ _ 17 two _ NUM CD _ 18 nummod _ _ 18 weeks _ NOUN NNS _ 12 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Gatoil _ PROPN NNP _ 2 compound _ _ 2 Suisse _ PROPN NNP _ 3 nsubj _ _ 3 owns _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 6 det _ _ 5 oil _ NOUN NN _ 6 compound _ _ 6 refinery _ NOUN NN _ 3 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 Switzerland _ PROPN NNP _ 6 nmod _ _ 9 with _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 capacity _ NOUN NN _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 70,000 _ NUM CD _ 14 nummod _ _ 14 barrels _ NOUN NNS _ 11 nmod _ _ 15 a _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 along _ ADP IN _ 21 case _ _ 19 with _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 network _ NOUN NN _ 3 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 gasoline _ NOUN NN _ 25 compound _ _ 24 retailing _ VERB NN _ 25 amod _ _ 25 outlets _ NOUN NNS _ 21 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 7 mark _ _ 2 Friday _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 plunging _ VERB VBG _ 6 amod _ _ 5 stock _ NOUN NN _ 6 compound _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 prompted _ VERB VBD _ 34 advcl _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 fears _ NOUN NNS _ 7 dobj _ _ 10 about _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 12 det _ _ 12 economy _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 prospects _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 34 punct _ _ 16 a _ DET DT _ 18 det _ _ 17 little-known _ ADJ JJ _ 18 amod _ _ 18 indicator _ NOUN NN _ 34 nsubj _ _ 19 that _ PRON WDT _ 22 nsubj _ _ 20 has _ AUX VBZ _ 22 aux _ _ 21 faithfully _ ADV RB _ 22 advmod _ _ 22 foreshadowed _ VERB VBN _ 18 acl:relcl _ _ 23 the _ DET DT _ 24 det _ _ 24 economy _ NOUN NN _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 ups _ NOUN NNS _ 22 dobj _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 downs _ NOUN NNS _ 26 conj _ _ 29 by _ ADP IN _ 33 case _ _ 30 exceptionally _ ADV RB _ 31 advmod _ _ 31 long _ ADJ JJ _ 33 amod _ _ 32 lead _ NOUN JJ _ 33 compound _ _ 33 times _ NOUN NNS _ 22 nmod _ _ 34 points _ VERB NNS _ 0 root _ _ 35 to _ ADP TO _ 38 case _ _ 36 a _ DET DT _ 38 det _ _ 37 sustained _ ADJ JJ _ 38 amod _ _ 38 rise _ NOUN NN _ 34 nmod _ _ 39 in _ ADP IN _ 42 case _ _ 40 overall _ ADJ JJ _ 42 amod _ _ 41 business _ NOUN NN _ 42 compound _ _ 42 activity _ NOUN NN _ 38 nmod _ _ 43 . _ PUNCT . _ 34 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 barometer _ NOUN NN _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 developed _ VERB VBN _ 2 acl _ _ 5 by _ ADP IN _ 6 case _ _ 6 analysts _ NOUN NNS _ 4 nmod _ _ 7 at _ ADP IN _ 11 case _ _ 8 Columbia _ PROPN NNP _ 9 compound _ _ 9 University _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 Center _ PROPN NNP _ 6 nmod _ _ 12 for _ ADP IN _ 16 case _ _ 13 International _ PROPN NNP _ 16 compound _ _ 14 Business _ PROPN NNP _ 16 compound _ _ 15 Cycle _ PROPN NNP _ 16 compound _ _ 16 Research _ PROPN NNP _ 11 nmod _ _ 17 here _ ADV RB _ 4 advmod _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 reached _ VERB VBD _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 record _ NOUN NN _ 19 dobj _ _ 22 high _ ADJ NN _ 21 amod _ _ 23 of _ ADP IN _ 24 case _ _ 24 223.0 _ NUM CD _ 21 nmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 August _ PROPN NNP _ 19 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 the _ DET DT _ 30 det _ _ 29 latest _ ADJ JJS _ 30 amod _ _ 30 month _ NOUN NN _ 26 appos _ _ 31 available _ ADJ JJ _ 30 amod _ _ 32 , _ PUNCT , _ 26 punct _ _ 33 and _ CONJ CC _ 19 cc _ _ 34 the _ DET DT _ 36 det _ _ 35 Columbia _ PROPN NNP _ 36 compound _ _ 36 researchers _ NOUN NNS _ 37 nsubj _ _ 37 estimate _ VERB VBP _ 19 conj _ _ 38 that _ SCONJ IN _ 41 mark _ _ 39 it _ PRON PRP _ 41 nsubj _ _ 40 has _ AUX VBZ _ 41 aux _ _ 41 moved _ VERB VBN _ 37 ccomp _ _ 42 even _ ADV RB _ 43 advmod _ _ 43 higher _ ADV JJR _ 41 advmod _ _ 44 since _ ADP IN _ 45 case _ _ 45 then _ ADV RB _ 41 nmod _ _ 46 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 reading _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 223.0 _ NUM CD _ 3 nmod _ _ 6 was _ VERB VBD _ 0 root _ _ 7 up _ ADV RB _ 6 advmod _ _ 8 from _ ADP IN _ 9 case _ _ 9 222.3 _ NUM CD _ 7 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 July _ PROPN NNP _ 9 nmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 215.3 _ NUM CD _ 9 conj _ _ 14 as _ ADV IN _ 15 advmod _ _ 15 recently _ ADV RB _ 13 advmod _ _ 16 as _ ADP IN _ 17 case _ _ 17 March _ PROPN NNP _ 15 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 August _ PROPN NNP _ 3 compound _ _ 3 rise _ NOUN NN _ 4 nsubj _ _ 4 marked _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 9 det _ _ 6 fifth _ ADJ JJ _ 9 amod _ _ 7 straight _ ADJ JJ _ 9 amod _ _ 8 monthly _ ADJ JJ _ 9 amod _ _ 9 gain _ NOUN NN _ 4 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 indicator _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 uses _ VERB VBZ _ 12 acl:relcl _ _ 16 the _ DET DT _ 18 det _ _ 17 1967 _ NUM CD _ 18 nummod _ _ 18 average _ NOUN NN _ 15 dobj _ _ 19 as _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 base _ NOUN NN _ 15 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 100 _ NUM CD _ 21 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 contrast _ NOUN NN _ 21 nmod _ _ 3 , _ PUNCT , _ 21 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 Commerce _ PROPN NNP _ 6 compound _ _ 6 Department _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 widely _ ADV RB _ 9 advmod _ _ 9 followed _ VERB JJ _ 10 amod _ _ 10 index _ NOUN NN _ 21 nsubj _ _ 11 of _ ADP IN _ 13 case _ _ 12 leading _ VERB VBG _ 13 amod _ _ 13 indicators _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 21 punct _ _ 15 while _ SCONJ IN _ 16 mark _ _ 16 up _ ADV RB _ 21 dep _ _ 17 in _ ADP IN _ 18 case _ _ 18 August _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 fallen _ VERB VBN _ 0 root _ _ 22 repeatedly _ ADV RB _ 21 advmod _ _ 23 since _ SCONJ IN _ 24 mark _ _ 24 reaching _ VERB VBG _ 21 advcl _ _ 25 a _ DET DT _ 26 det _ _ 26 high _ ADJ JJ _ 24 dobj _ _ 27 early _ ADV JJ _ 29 advmod _ _ 28 this _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 24 nmod:tmod _ _ 30 . _ PUNCT . _ 21 punct _ _ 1 Its _ PRON PRP$ _ 3 nmod:poss _ _ 2 ragged _ ADJ JJ _ 3 amod _ _ 3 behavior _ NOUN NN _ 9 nsubj _ _ 4 through _ ADP IN _ 5 case _ _ 5 much _ ADJ JJ _ 3 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 1989 _ NUM CD _ 5 nmod _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 prompted _ VERB VBN _ 0 root _ _ 10 some _ DET DT _ 11 det _ _ 11 forecasters _ NOUN NNS _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 anticipate _ VERB VB _ 9 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 start _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 new _ ADJ JJ _ 19 amod _ _ 19 recession _ NOUN NN _ 15 nmod _ _ 20 perhaps _ ADV RB _ 24 advmod _ _ 21 before _ ADP IN _ 24 case _ _ 22 year _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 end _ NOUN NN _ 13 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 far _ ADV RB _ 4 advmod _ _ 4 stronger _ ADJ JJR _ 5 amod _ _ 5 showing _ NOUN NN _ 11 nsubj _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Columbia _ PROPN NNP _ 9 compound _ _ 9 index _ NOUN NN _ 5 nmod _ _ 10 `` _ PUNCT `` _ 11 punct _ _ 11 makes _ VERB VBZ _ 21 dep _ _ 12 a _ DET DT _ 13 det _ _ 13 recession _ NOUN NN _ 18 nsubj _ _ 14 any _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 13 nmod:tmod _ _ 16 soon _ ADV RB _ 15 advmod _ _ 17 highly _ ADV RB _ 18 advmod _ _ 18 unlikely _ ADJ JJ _ 11 xcomp _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 '' _ PUNCT '' _ 11 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 Geoffrey _ PROPN NNP _ 24 compound _ _ 23 H. _ PROPN NNP _ 24 compound _ _ 24 Moore _ PROPN NNP _ 21 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 the _ DET DT _ 27 det _ _ 27 director _ NOUN NN _ 24 appos _ _ 28 of _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Columbia _ PROPN NNP _ 31 compound _ _ 31 facility _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 21 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 leading _ VERB VBG _ 3 amod _ _ 3 authority _ NOUN NN _ 14 ccomp _ _ 4 on _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 business _ NOUN NN _ 7 compound _ _ 7 cycle _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Moore _ PROPN NNP _ 14 nsubj _ _ 11 also _ ADV RB _ 14 advmod _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 a _ DET DT _ 14 det _ _ 14 member _ NOUN NN _ 0 root _ _ 15 of _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 Business _ PROPN NN _ 20 compound _ _ 18 Cycle _ PROPN NNP _ 20 compound _ _ 19 Dating _ PROPN NNP _ 20 compound _ _ 20 Group _ PROPN NNP _ 14 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 panel _ NOUN NN _ 20 appos _ _ 24 of _ ADP IN _ 26 case _ _ 25 private _ ADJ JJ _ 26 amod _ _ 26 economists _ NOUN NNS _ 23 nmod _ _ 27 that _ PRON WDT _ 28 nsubj _ _ 28 decides _ VERB VBZ _ 23 acl:relcl _ _ 29 for _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 government _ NOUN NN _ 28 nmod _ _ 32 when _ ADV WRB _ 36 advmod _ _ 33 expansions _ NOUN NNS _ 36 nsubj _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 recessions _ NOUN NNS _ 33 conj _ _ 36 begin _ VERB VB _ 28 advcl _ _ 37 and _ CONJ CC _ 36 cc _ _ 38 end _ VERB VB _ 36 conj _ _ 39 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 4 nsubj _ _ 3 normally _ ADV RB _ 4 advmod _ _ 4 convenes _ VERB VBZ _ 0 root _ _ 5 only _ ADV RB _ 15 advmod _ _ 6 when _ ADV WRB _ 15 advmod _ _ 7 a _ DET DT _ 8 det _ _ 8 change _ NOUN NN _ 15 nsubj _ _ 9 in _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 general _ ADJ JJ _ 14 amod _ _ 14 course _ NOUN NN _ 8 nmod _ _ 15 seems _ VERB VBZ _ 4 advcl _ _ 16 likely _ ADV RB _ 15 xcomp _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 No _ DET DT _ 3 neg _ _ 3 meeting _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 scheduled _ VERB VBN _ 21 dep _ _ 6 because _ SCONJ IN _ 9 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 expansion _ NOUN NN _ 9 nsubj _ _ 9 shows _ VERB VBZ _ 5 advcl _ _ 10 no _ DET DT _ 11 neg _ _ 11 sign _ NOUN NN _ 9 dobj _ _ 12 of _ SCONJ IN _ 13 mark _ _ 13 going _ VERB VBG _ 11 acl _ _ 14 off _ ADP RP _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 tracks _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 '' _ PUNCT '' _ 5 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Moore _ PROPN NNP _ 21 nsubj _ _ 21 reports _ VERB NNS _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 Based _ VERB VBN _ 20 advcl _ _ 2 largely _ ADV RB _ 1 advmod _ _ 3 on _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 recent _ ADJ JJ _ 6 amod _ _ 6 strength _ NOUN NN _ 1 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 index _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 called _ VERB VBD _ 9 acl _ _ 12 the _ DET DT _ 15 det _ _ 13 long _ ADJ JJ _ 15 amod _ _ 14 leading _ VERB VBG _ 15 amod _ _ 15 indicator _ NOUN NN _ 11 xcomp _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 Columbia _ PROPN NNP _ 19 compound _ _ 19 analysts _ NOUN NNS _ 20 nsubj _ _ 20 foresee _ VERB VBP _ 0 root _ _ 21 uninterrupted _ ADJ JJ _ 22 amod _ _ 22 economic _ ADJ JJ _ 23 amod _ _ 23 growth _ NOUN NN _ 20 dobj _ _ 24 through _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 rest _ NOUN NN _ 20 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 this _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 26 nmod _ _ 30 and _ CONJ CC _ 26 cc _ _ 31 next _ ADJ JJ _ 32 amod _ _ 32 year _ NOUN NN _ 26 conj _ _ 33 as _ ADV RB _ 32 advmod _ _ 34 well _ ADV RB _ 33 mwe _ _ 35 . _ PUNCT . _ 20 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 expect _ VERB VBP _ 0 root _ _ 3 a _ DET DT _ 6 det _ _ 4 2.6 _ NUM CD _ 5 compound _ _ 5 % _ SYM NN _ 6 amod _ _ 6 rise _ NOUN NN _ 2 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 1990 _ NUM CD _ 6 nmod _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 gross _ ADJ JJ _ 13 amod _ _ 12 national _ ADJ JJ _ 13 amod _ _ 13 product _ NOUN NN _ 6 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 after _ ADP IN _ 16 case _ _ 16 adjustment _ NOUN NN _ 2 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 inflation _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Underlying _ VERB VBG _ 0 root _ _ 2 this _ DET DT _ 3 det _ _ 3 optimism _ NOUN NN _ 1 dobj _ _ 4 is _ VERB VBZ _ 1 aux _ _ 5 the _ DET DT _ 6 det _ _ 6 index _ NOUN NN _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 longstanding _ ADJ JJ _ 9 amod _ _ 9 ability _ NOUN NN _ 1 nsubj _ _ 10 to _ PART TO _ 11 mark _ _ 11 signal _ VERB VB _ 9 acl _ _ 12 recessions _ NOUN NNS _ 11 dobj _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 recoveries _ NOUN NNS _ 12 conj _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 as _ SCONJ IN _ 20 mark _ _ 17 the _ DET DT _ 18 det _ _ 18 case _ NOUN NN _ 20 nsubj _ _ 19 may _ AUX MD _ 20 aux _ _ 20 be _ VERB VB _ 11 parataxis _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 by _ ADP IN _ 25 case _ _ 23 substantially _ ADV RB _ 24 advmod _ _ 24 greater _ ADJ JJR _ 25 amod _ _ 25 periods _ NOUN NNS _ 11 nmod _ _ 26 than _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Commerce _ PROPN NNP _ 29 compound _ _ 29 Department _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 index _ NOUN NN _ 25 nmod _ _ 32 of _ ADP IN _ 34 case _ _ 33 leading _ VERB VBG _ 34 amod _ _ 34 indicators _ NOUN NNS _ 31 nmod _ _ 35 . _ PUNCT . _ 1 punct _ _ 1 Over _ ADP IN _ 7 case _ _ 2 the _ DET DT _ 7 det _ _ 3 full _ ADJ JJ _ 7 amod _ _ 4 post-World _ PROPN JJ _ 7 compound _ _ 5 War _ PROPN NN _ 7 compound _ _ 6 II _ PROPN CD _ 7 compound _ _ 7 era _ NOUN NN _ 18 nmod _ _ 8 , _ PUNCT , _ 18 punct _ _ 9 the _ DET DT _ 11 det _ _ 10 Columbia _ PROPN NNP _ 11 compound _ _ 11 index _ NOUN NN _ 18 nsubj _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 on _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 average _ NOUN NN _ 18 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 has _ AUX VBZ _ 18 aux _ _ 18 entered _ VERB VBN _ 0 root _ _ 19 sustained _ VERB JJ _ 20 amod _ _ 20 declines _ NOUN NNS _ 18 dobj _ _ 21 14 _ NUM CD _ 22 nummod _ _ 22 months _ NOUN NNS _ 18 nmod:tmod _ _ 23 before _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 onset _ NOUN NN _ 22 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 recessions _ NOUN NNS _ 25 nmod _ _ 28 and _ CONJ CC _ 18 cc _ _ 29 turned _ VERB VBD _ 18 conj _ _ 30 up _ ADP RP _ 29 compound:prt _ _ 31 eight _ NUM CD _ 32 nummod _ _ 32 months _ NOUN NNS _ 29 nmod:tmod _ _ 33 before _ ADP IN _ 34 case _ _ 34 recoveries _ NOUN NNS _ 32 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 comparable _ ADJ JJ _ 4 amod _ _ 3 lead _ NOUN NN _ 4 compound _ _ 4 times _ NOUN NNS _ 19 nsubj _ _ 5 for _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Commerce _ PROPN NNP _ 8 compound _ _ 8 index _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 whose _ PRON WP$ _ 11 nmod:poss _ _ 11 components _ NOUN NNS _ 12 nsubj _ _ 12 include _ VERB VBP _ 8 acl:relcl _ _ 13 the _ DET DT _ 15 det _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 are _ VERB VBP _ 19 cop _ _ 18 far _ ADV RB _ 19 advmod _ _ 19 shorter _ ADJ JJR _ 0 root _ _ 20 -- _ PUNCT : _ 19 punct _ _ 21 10 _ NUM CD _ 22 nummod _ _ 22 months _ NOUN NNS _ 19 nmod:tmod _ _ 23 before _ ADP IN _ 24 case _ _ 24 recessions _ NOUN NNS _ 22 nmod _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 only _ ADV RB _ 28 advmod _ _ 27 three _ NUM CD _ 28 nummod _ _ 28 months _ NOUN NNS _ 22 conj _ _ 29 before _ ADP IN _ 30 case _ _ 30 recoveries _ NOUN NNS _ 28 nmod _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Columbia _ PROPN NNP _ 3 compound _ _ 3 economists _ NOUN NNS _ 6 nsubj _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 reconstructed _ VERB VBN _ 0 root _ _ 7 how _ ADV WRB _ 14 advmod _ _ 8 the _ DET DT _ 11 det _ _ 9 long _ ADJ JJ _ 11 amod _ _ 10 leading _ VERB VBG _ 11 amod _ _ 11 index _ NOUN NN _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 have _ AUX VB _ 14 aux _ _ 14 behaved _ VERB VBN _ 6 ccomp _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 had _ AUX VBD _ 18 aux _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 existed _ VERB VBD _ 14 advcl _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 in _ ADP IN _ 21 case _ _ 21 1929 _ NUM CD _ 14 dep _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 before _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 stock _ NOUN NN _ 27 compound _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 crash _ NOUN NN _ 14 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 October _ PROPN NNP _ 27 nmod _ _ 30 that _ PRON WDT _ 31 nsubj _ _ 31 ushered _ VERB VBD _ 27 acl:relcl _ _ 32 in _ ADP IN _ 31 compound:prt _ _ 33 the _ DET DT _ 35 det _ _ 34 Great _ PROPN NNP _ 35 compound _ _ 35 Depression _ PROPN NNP _ 31 dobj _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 indicator _ NOUN NN _ 3 nsubj _ _ 3 reached _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 peak _ NOUN NN _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 January _ PROPN NNP _ 3 nmod _ _ 8 1929 _ NUM CD _ 7 nummod _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 then _ ADV RB _ 11 advmod _ _ 11 fell _ VERB VBD _ 3 conj _ _ 12 steadily _ ADV RB _ 11 advmod _ _ 13 up _ ADP RB _ 14 case _ _ 14 to _ ADP TO _ 18 nmod _ _ 15 and _ CONJ CC _ 18 cc _ _ 16 through _ ADP IN _ 18 conj _ _ 17 the _ DET DT _ 18 det _ _ 18 crash _ NOUN NN _ 11 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 It _ PRON PRP _ 7 nsubj _ _ 3 was _ VERB VBD _ 7 cop _ _ 4 an _ DET DT _ 7 det _ _ 5 entirely _ ADV RB _ 7 advmod _ _ 6 different _ ADJ JJ _ 7 amod _ _ 7 pattern _ NOUN NN _ 18 dep _ _ 8 from _ SCONJ IN _ 12 mark _ _ 9 what _ PRON WP _ 12 dobj _ _ 10 we _ PRON PRP _ 12 nsubj _ _ 11 're _ AUX VBP _ 12 aux _ _ 12 seeing _ VERB VBG _ 7 acl _ _ 13 now _ ADV RB _ 12 advmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 '' _ PUNCT '' _ 7 punct _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Moore _ PROPN NNP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 source _ NOUN NN _ 16 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 recent _ ADJ JJ _ 7 amod _ _ 7 strength _ NOUN NN _ 3 nmod _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 long _ ADJ JJ _ 12 amod _ _ 11 leading _ VERB VBG _ 12 amod _ _ 12 indicator _ NOUN NN _ 7 nmod _ _ 13 has _ AUX VBZ _ 16 aux _ _ 14 been _ VERB VBN _ 16 cop _ _ 15 the _ DET DT _ 16 det _ _ 16 performance _ NOUN NN _ 0 root _ _ 17 of _ ADP IN _ 23 case _ _ 18 the _ DET DT _ 23 det _ _ 19 Dow _ PROPN NNP _ 23 compound _ _ 20 Jones _ PROPN NNP _ 23 compound _ _ 21 corporate _ ADJ JJ _ 23 amod _ _ 22 bond-price _ ADJ JJ _ 23 amod _ _ 23 index _ NOUN NN _ 16 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 which _ PRON WDT _ 29 nsubj _ _ 26 is _ VERB VBZ _ 29 cop _ _ 27 not _ PART RB _ 29 neg _ _ 28 a _ DET DT _ 29 det _ _ 29 part _ NOUN NN _ 23 acl:relcl _ _ 30 of _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 Commerce _ PROPN NNP _ 33 compound _ _ 33 index _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 16 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 August _ PROPN NNP _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 bond _ NOUN NN _ 6 compound _ _ 6 measure _ NOUN NN _ 12 nsubj _ _ 7 was _ VERB VBD _ 12 cop _ _ 8 at _ ADP IN _ 12 case _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 highest _ ADJ JJS _ 11 dep _ _ 11 monthly _ ADJ JJ _ 12 amod _ _ 12 average _ NOUN NN _ 0 root _ _ 13 since _ ADP IN _ 15 case _ _ 14 early _ ADJ JJ _ 15 amod _ _ 15 1987 _ NUM CD _ 12 nmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 last _ ADJ JJ _ 5 amod _ _ 5 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 while _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 11 nsubj _ _ 11 sagged _ VERB VBD _ 3 advcl _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 components _ NOUN NNS _ 8 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 long _ ADJ JJ _ 7 amod _ _ 6 leading _ VERB VBG _ 7 amod _ _ 7 indicator _ NOUN NN _ 2 nmod _ _ 8 include _ VERB VBP _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 ratio _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 prices _ NOUN NNS _ 10 nmod _ _ 13 to _ ADP TO _ 16 case _ _ 14 unit _ NOUN NN _ 16 compound _ _ 15 labor _ NOUN NN _ 16 compound _ _ 16 costs _ NOUN NNS _ 12 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 manufacturing _ VERB VBG _ 19 amod _ _ 19 industries _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 10 punct _ _ 21 the _ DET DT _ 23 det _ _ 22 M2 _ NUM NN _ 23 nummod _ _ 23 version _ NOUN NN _ 10 conj _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 money _ NOUN NN _ 27 compound _ _ 27 supply _ NOUN NN _ 23 nmod _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 adjusted _ VERB VBN _ 23 acl _ _ 30 for _ ADP IN _ 31 case _ _ 31 inflation _ NOUN NN _ 29 nmod _ _ 32 , _ PUNCT , _ 10 punct _ _ 33 and _ CONJ CC _ 10 cc _ _ 34 the _ DET DT _ 35 det _ _ 35 volume _ NOUN NN _ 10 conj _ _ 36 of _ ADP IN _ 39 case _ _ 37 new _ ADJ JJ _ 39 amod _ _ 38 home-building _ ADJ NN _ 39 amod _ _ 39 permits _ NOUN NNS _ 35 nmod _ _ 40 . _ PUNCT . _ 8 punct _ _ 1 Notably _ ADV RB _ 2 advmod _ _ 2 absent _ ADJ JJ _ 7 dep _ _ 3 from _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Columbia _ PROPN NNP _ 6 compound _ _ 6 index _ NOUN NN _ 2 nmod _ _ 7 is _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 7 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 15 dobj _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Moore _ PROPN NNP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 10 acl:relcl _ _ 16 `` _ PUNCT `` _ 24 punct _ _ 17 is _ VERB VBZ _ 24 cop _ _ 18 simply _ ADV RB _ 24 advmod _ _ 19 no _ DET RB _ 20 neg _ _ 20 longer _ ADV RBR _ 24 nmod:tmod _ _ 21 such _ ADJ PDT _ 24 amod _ _ 22 a _ DET DT _ 24 det _ _ 23 good _ ADJ JJ _ 24 amod _ _ 24 indicator _ NOUN NN _ 15 ccomp _ _ 25 of _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 27 det _ _ 27 economy _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 long-range _ ADJ JJ _ 30 amod _ _ 30 prospects _ NOUN NNS _ 24 nmod _ _ 31 , _ PUNCT , _ 24 punct _ _ 32 though _ SCONJ IN _ 36 mark _ _ 33 it _ PRON PRP _ 36 nsubj _ _ 34 still _ ADV RB _ 36 advmod _ _ 35 is _ VERB VBZ _ 36 cop _ _ 36 useful _ ADJ JJ _ 24 advcl _ _ 37 for _ SCONJ IN _ 38 mark _ _ 38 anticipating _ VERB VBG _ 36 advcl _ _ 39 some _ DET DT _ 41 det _ _ 40 short-run _ ADJ JJ _ 41 amod _ _ 41 twists _ NOUN NNS _ 38 dobj _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 turns _ NOUN NNS _ 41 conj _ _ 44 . _ PUNCT . _ 7 punct _ _ 45 '' _ PUNCT '' _ 7 punct _ _ 1 As _ ADV IN _ 2 advmod _ _ 2 recently _ ADV RB _ 25 advmod _ _ 3 as _ ADP IN _ 4 case _ _ 4 1975 _ NUM CD _ 2 nmod _ _ 5 , _ PUNCT , _ 25 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 25 nsubjpass _ _ 9 -- _ PUNCT : _ 11 punct _ _ 10 as _ SCONJ IN _ 11 mark _ _ 11 reflected _ VERB VBN _ 8 dep _ _ 12 in _ ADP IN _ 18 case _ _ 13 the _ DET DT _ 18 det _ _ 14 Standard _ PROPN NNP _ 18 nmod:poss _ _ 15 & _ CONJ CC _ 14 cc _ _ 16 Poor _ PROPN NNP _ 14 conj _ _ 17 's _ PART POS _ 14 case _ _ 18 index _ NOUN NN _ 11 nmod _ _ 19 of _ ADP IN _ 22 case _ _ 20 500 _ NUM CD _ 22 nummod _ _ 21 common _ ADJ JJ _ 22 amod _ _ 22 stocks _ NOUN NNS _ 18 nmod _ _ 23 -- _ PUNCT : _ 11 punct _ _ 24 was _ AUX VBD _ 25 auxpass _ _ 25 rated _ VERB VBN _ 0 root _ _ 26 by _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 National _ PROPN NNP _ 29 compound _ _ 29 Bureau _ PROPN NNP _ 25 nmod _ _ 30 of _ ADP IN _ 32 case _ _ 31 Economic _ PROPN NNP _ 32 compound _ _ 32 Research _ PROPN NNP _ 29 nmod _ _ 33 as _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 best _ ADJ JJS _ 25 nmod _ _ 36 of _ ADP IN _ 40 case _ _ 37 the _ DET DT _ 40 det _ _ 38 12 _ NUM CD _ 40 nummod _ _ 39 leading _ VERB JJ _ 40 amod _ _ 40 indicators _ NOUN NNS _ 35 nmod _ _ 41 that _ PRON WDT _ 43 nsubj _ _ 42 then _ ADV RB _ 43 advmod _ _ 43 made _ VERB VBD _ 40 acl:relcl _ _ 44 up _ ADP RP _ 43 compound:prt _ _ 45 the _ DET DT _ 47 det _ _ 46 Commerce _ PROPN NNP _ 47 compound _ _ 47 index _ NOUN NN _ 43 dobj _ _ 48 . _ PUNCT . _ 25 punct _ _ 1 It _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 assigned _ VERB VBN _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 mark _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 80 _ NUM CD _ 5 nmod _ _ 8 out _ ADP IN _ 12 case _ _ 9 of _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 possible _ ADJ JJ _ 12 amod _ _ 12 100 _ NUM CD _ 7 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 compared _ VERB VBN _ 16 case _ _ 15 with _ ADP IN _ 16 case _ _ 16 scores _ NOUN NNS _ 3 advcl _ _ 17 ranging _ VERB VBG _ 16 acl _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 low _ ADJ JJ _ 17 advmod _ _ 20 as _ ADP IN _ 21 case _ _ 21 69 _ NUM CD _ 19 nmod _ _ 22 for _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 other _ ADJ JJ _ 25 amod _ _ 25 components _ NOUN NNS _ 16 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 lost _ VERB VBN _ 0 root _ _ 6 some _ DET DT _ 8 det _ _ 7 precursory _ ADJ JJ _ 8 amod _ _ 8 power _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 analysts _ NOUN NNS _ 15 nsubj _ _ 11 at _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Columbia _ PROPN NNP _ 14 compound _ _ 14 center _ NOUN NN _ 10 nmod _ _ 15 claim _ NOUN NN _ 5 parataxis _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 because _ ADP IN _ 21 case _ _ 18 of _ ADP IN _ 17 mwe _ _ 19 the _ DET DT _ 21 det _ _ 20 growing _ VERB VBG _ 21 amod _ _ 21 impact _ NOUN NN _ 5 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 international _ ADJ JJ _ 24 amod _ _ 24 developments _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 Stocks _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 become _ VERB VBN _ 20 dep _ _ 5 more _ ADV RBR _ 6 advmod _ _ 6 sensitive _ ADJ JJ _ 4 xcomp _ _ 7 to _ ADP TO _ 8 case _ _ 8 factors _ NOUN NNS _ 6 nmod _ _ 9 not _ PART RB _ 11 neg _ _ 10 directly _ ADV RB _ 11 advmod _ _ 11 tied _ VERB VBN _ 8 acl _ _ 12 to _ ADP TO _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 domestic _ ADJ JJ _ 15 amod _ _ 15 economy _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 18 Mr. _ PROPN NNP _ 19 compound _ _ 19 Moore _ PROPN NNP _ 20 nsubj _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 citing _ VERB VBG _ 20 xcomp _ _ 23 the _ DET DT _ 25 det _ _ 24 exchange _ NOUN NN _ 25 compound _ _ 25 rate _ NOUN NN _ 22 dobj _ _ 26 for _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 dollar _ NOUN NN _ 25 nmod _ _ 29 on _ ADP IN _ 31 case _ _ 30 currency _ NOUN NN _ 31 compound _ _ 31 markets _ NOUN NNS _ 25 nmod _ _ 32 , _ PUNCT , _ 25 punct _ _ 33 the _ DET DT _ 35 det _ _ 34 foreign-trade _ ADJ JJ _ 35 amod _ _ 35 balance _ NOUN NN _ 25 conj _ _ 36 and _ CONJ CC _ 25 cc _ _ 37 inflows _ NOUN NNS _ 25 conj _ _ 38 of _ ADP IN _ 40 case _ _ 39 foreign _ ADJ JJ _ 40 amod _ _ 40 capital _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 feels _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 15 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 rise _ NOUN NN _ 15 nsubj _ _ 7 of _ ADP IN _ 10 case _ _ 8 such _ ADJ JJ _ 9 amod _ _ 9 computer-based _ ADJ JJ _ 10 amod _ _ 10 practices _ NOUN NNS _ 6 nmod _ _ 11 as _ ADP IN _ 13 case _ _ 12 program _ NOUN NN _ 13 compound _ _ 13 trading _ NOUN NN _ 10 nmod _ _ 14 has _ AUX VBZ _ 15 aux _ _ 15 diminished _ VERB VBN _ 3 ccomp _ _ 16 the _ DET DT _ 18 det _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 relevancy _ NOUN NN _ 15 dobj _ _ 21 to _ ADP TO _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 economic _ ADJ JJ _ 24 amod _ _ 24 outlook _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 BSN _ PROPN NNP _ 2 compound _ _ 2 S.A. _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 8 det _ _ 5 leading _ VERB VBG _ 8 amod _ _ 6 French _ ADJ JJ _ 8 amod _ _ 7 food _ NOUN NN _ 8 compound _ _ 8 group _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 agreed _ VERB VBD _ 10 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 acquire _ VERB VB _ 12 xcomp _ _ 15 Birkel _ PROPN NNP _ 18 compound _ _ 16 G.m.b _ PROPN NNP _ 18 compound _ _ 17 . _ PUNCT . _ 18 punct _ _ 18 H. _ PROPN NNP _ 14 dobj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 a _ DET DT _ 24 det _ _ 21 West _ ADJ JJ _ 22 amod _ _ 22 German _ ADJ JJ _ 24 amod _ _ 23 pasta _ NOUN NN _ 24 compound _ _ 24 maker _ NOUN NN _ 18 appos _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 value _ NOUN NN _ 8 nsubjpass _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 acquisition _ NOUN NN _ 2 nmod _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 n't _ PART RB _ 8 neg _ _ 8 disclosed _ VERB VBN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 in _ ADP IN _ 5 case _ _ 5 line _ NOUN NN _ 0 root _ _ 6 with _ ADP IN _ 9 case _ _ 7 BSN _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 strategy _ NOUN NN _ 5 nmod _ _ 10 of _ SCONJ IN _ 12 mark _ _ 11 gradually _ ADV RB _ 12 advmod _ _ 12 building _ VERB VBG _ 9 acl _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 share _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 European _ ADJ JJ _ 19 amod _ _ 18 pasta _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 14 nmod _ _ 20 through _ ADP IN _ 22 case _ _ 21 external _ ADJ JJ _ 22 amod _ _ 22 growth _ NOUN NN _ 12 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 BSN _ PROPN NNP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 initially _ ADV RB _ 4 advmod _ _ 4 acquire _ VERB VB _ 0 root _ _ 5 a _ DET DT _ 8 det _ _ 6 15 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 8 amod _ _ 8 interest _ NOUN NN _ 4 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Birkel _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 15 det _ _ 13 closely _ ADV RB _ 14 advmod _ _ 14 held _ VERB JJ _ 15 amod _ _ 15 concern _ NOUN NN _ 10 appos _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 4 nsubj _ _ 4 has _ VERB VBZ _ 31 dep _ _ 5 an _ DET DT _ 6 det _ _ 6 agreement _ NOUN NN _ 4 dobj _ _ 7 giving _ VERB VBG _ 6 acl _ _ 8 it _ PRON PRP _ 7 iobj _ _ 9 the _ DET DT _ 10 det _ _ 10 right _ NOUN NN _ 7 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 buy _ VERB VB _ 10 acl _ _ 13 all _ DET PDT _ 15 det:predet _ _ 14 the _ DET DT _ 15 det _ _ 15 shares _ NOUN NNS _ 12 dobj _ _ 16 outstanding _ ADJ JJ _ 15 amod _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 and _ CONJ CC _ 4 cc _ _ 19 this _ PRON DT _ 22 nsubjpass _ _ 20 could _ AUX MD _ 22 aux _ _ 21 be _ AUX VB _ 22 auxpass _ _ 22 completed _ VERB VBN _ 4 conj _ _ 23 within _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 few _ ADJ JJ _ 26 amod _ _ 26 months _ NOUN NNS _ 22 nmod _ _ 27 , _ PUNCT , _ 4 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 BSN _ PROPN NNP _ 30 compound _ _ 30 spokeswoman _ NOUN NN _ 31 nsubj _ _ 31 said _ VERB VBD _ 0 root _ _ 32 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 takeover _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 submitted _ VERB VBN _ 15 ccomp _ _ 5 for _ ADP IN _ 6 case _ _ 6 approval _ NOUN NN _ 4 nmod _ _ 7 by _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 West _ ADJ JJ _ 10 amod _ _ 10 German _ ADJ JJ _ 12 amod _ _ 11 cartel _ NOUN NN _ 12 compound _ _ 12 office _ NOUN NN _ 4 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 BSN _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Birkel _ PROPN NNP _ 7 nsubj _ _ 2 is _ VERB VBZ _ 7 cop _ _ 3 West _ PROPN NNP _ 4 compound _ _ 4 Germany _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 second-biggest _ ADJ JJ _ 7 amod _ _ 7 producer _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 9 case _ _ 9 pasta _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 with _ ADP IN _ 12 case _ _ 12 sales _ NOUN NNS _ 7 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 250 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 16 nummod _ _ 16 marks _ NOUN NNS _ 12 nmod _ _ 17 -LRB- _ PUNCT -LRB- _ 18 punct _ _ 18 $ _ SYM $ _ 16 dep _ _ 19 133.4 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 -RRB- _ PUNCT -RRB- _ 18 punct _ _ 22 in _ ADP IN _ 23 case _ _ 23 1988 _ NUM CD _ 12 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 has _ VERB VBZ _ 0 root _ _ 3 750 _ NUM CD _ 4 nummod _ _ 4 workers _ NOUN NNS _ 2 dobj _ _ 5 at _ ADP IN _ 8 case _ _ 6 three _ NUM CD _ 8 nummod _ _ 7 production _ NOUN NN _ 8 compound _ _ 8 units _ NOUN NNS _ 2 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 southwest _ ADJ NN _ 11 amod _ _ 11 Germany _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 and _ CONJ CC _ 2 cc _ _ 14 is _ VERB VBZ _ 19 cop _ _ 15 that _ DET IN _ 16 det _ _ 16 nation _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 leading _ VERB VBG _ 19 amod _ _ 19 producer _ NOUN NN _ 2 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 pasta _ NOUN NN _ 22 compound _ _ 22 sauces _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 acquisition _ NOUN NN _ 3 nsubj _ _ 3 strengthens _ VERB VBZ _ 0 root _ _ 4 BSN _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 position _ NOUN NN _ 3 dobj _ _ 7 in _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 European _ ADJ JJ _ 11 amod _ _ 10 pasta _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 5 nsubj _ _ 4 currently _ ADV RB _ 5 advmod _ _ 5 ranks _ VERB VBZ _ 0 root _ _ 6 second _ ADJ JJ _ 5 advmod _ _ 7 after _ ADP IN _ 9 case _ _ 8 Barilla _ PROPN NNP _ 9 compound _ _ 9 Group _ PROPN NNP _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 Italy _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 whose _ PRON WP$ _ 14 nmod:poss _ _ 14 sales _ NOUN NNS _ 20 nsubj _ _ 15 are _ VERB VBP _ 20 cop _ _ 16 chiefly _ ADV RB _ 20 advmod _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 Italian _ ADJ JJ _ 20 amod _ _ 20 market _ NOUN NN _ 9 appos _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Moody _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNPS _ 5 compound _ _ 4 Service _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 reduced _ VERB VBD _ 6 ccomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 rating _ NOUN NN _ 8 dobj _ _ 11 on _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 281 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 of _ ADP IN _ 19 case _ _ 16 senior _ ADJ JJ _ 19 amod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 subordinated _ VERB JJ _ 16 conj _ _ 19 debt _ NOUN NN _ 12 nmod _ _ 20 of _ ADP IN _ 24 case _ _ 21 this _ DET DT _ 24 det _ _ 22 thrift _ NOUN NN _ 24 compound _ _ 23 holding _ VERB VBG _ 24 amod _ _ 24 company _ NOUN NN _ 19 nmod _ _ 25 , _ PUNCT , _ 8 punct _ _ 26 to _ ADP TO _ 27 case _ _ 27 C _ PROPN NN _ 8 nmod _ _ 28 from _ ADP IN _ 29 case _ _ 29 Ca _ PROPN NN _ 8 nmod _ _ 30 , _ PUNCT , _ 8 punct _ _ 31 saying _ VERB VBG _ 6 xcomp _ _ 32 it _ PRON PRP _ 33 nsubj _ _ 33 believes _ VERB VBZ _ 31 ccomp _ _ 34 bondholders _ NOUN NNS _ 36 nsubj _ _ 35 will _ AUX MD _ 36 aux _ _ 36 recover _ VERB VB _ 33 ccomp _ _ 37 only _ ADV RB _ 40 advmod _ _ 38 `` _ PUNCT `` _ 40 punct _ _ 39 negligible _ ADJ JJ _ 40 amod _ _ 40 principal _ NOUN NN _ 36 dobj _ _ 41 . _ PUNCT . _ 6 punct _ _ 42 '' _ PUNCT '' _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 confirmed _ VERB VBD _ 3 ccomp _ _ 6 American _ PROPN NNP _ 7 compound _ _ 7 Continental _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 preferred _ VERB JJ _ 11 amod _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 rating _ NOUN NN _ 5 dobj _ _ 12 at _ ADP IN _ 13 case _ _ 13 C _ PROPN NN _ 5 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 American _ PROPN JJ _ 2 compound _ _ 2 Continental _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 thrift _ NOUN NN _ 5 compound _ _ 5 unit _ NOUN NN _ 17 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Los _ PROPN NNP _ 8 amod _ _ 8 Angeles-based _ ADJ JJ _ 10 amod _ _ 9 Lincoln _ PROPN NNP _ 10 compound _ _ 10 Savings _ PROPN NNPS _ 5 appos _ _ 11 & _ CONJ CC _ 10 cc _ _ 12 Loan _ PROPN NNP _ 13 compound _ _ 13 Association _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 is _ VERB VBZ _ 17 cop _ _ 16 in _ ADP IN _ 17 case _ _ 17 receivership _ NOUN NN _ 0 root _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 the _ DET DT _ 21 det _ _ 20 parent _ NOUN NN _ 21 compound _ _ 21 company _ NOUN NN _ 23 nsubj _ _ 22 has _ AUX VBZ _ 23 aux _ _ 23 filed _ VERB VBN _ 17 conj _ _ 24 for _ ADP IN _ 25 case _ _ 25 protection _ NOUN NN _ 23 nmod _ _ 26 from _ ADP IN _ 28 case _ _ 27 creditor _ NOUN NN _ 28 compound _ _ 28 lawsuits _ NOUN NNS _ 25 nmod _ _ 29 under _ ADP IN _ 30 case _ _ 30 Chapter _ PROPN NN _ 23 nmod _ _ 31 11 _ NUM CD _ 30 nummod _ _ 32 of _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 federal _ ADJ JJ _ 36 amod _ _ 35 Bankruptcy _ PROPN NNP _ 36 compound _ _ 36 Code _ PROPN NNP _ 30 nmod _ _ 37 . _ PUNCT . _ 17 punct _ _ 1 CENTRUST _ PROPN NNP _ 3 compound _ _ 2 SAVINGS _ PROPN NNP _ 3 compound _ _ 3 BANK _ PROPN NNP _ 0 root _ _ 4 -LRB- _ PUNCT -LRB- _ 5 punct _ _ 5 Miami _ PROPN NNP _ 3 appos _ _ 6 -RRB- _ PUNCT -RRB- _ 5 punct _ _ 7 -- _ PUNCT : _ 3 punct _ _ 1 Moody _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNPS _ 5 compound _ _ 4 Service _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 downgraded _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 ratings _ NOUN NNS _ 6 dobj _ _ 9 on _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 subordinated _ VERB JJ _ 12 amod _ _ 12 debt _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 CenTrust _ PROPN NNP _ 12 nmod _ _ 15 to _ ADP TO _ 16 case _ _ 16 Caa _ PROPN NNP _ 6 nmod _ _ 17 from _ ADP IN _ 18 case _ _ 18 B-3 _ PROPN NN _ 6 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 rating _ NOUN NN _ 3 compound _ _ 3 agency _ NOUN NN _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 reduced _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 ratings _ NOUN NNS _ 5 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 long-term _ ADJ JJ _ 10 amod _ _ 10 deposits _ NOUN NNS _ 7 nmod _ _ 11 to _ ADP TO _ 12 case _ _ 12 B-3 _ PROPN JJ _ 5 nmod _ _ 13 from _ ADP IN _ 14 case _ _ 14 Ba-3 _ NUM JJ _ 5 nmod _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 for _ ADP IN _ 18 case _ _ 17 preferred _ VERB JJ _ 18 amod _ _ 18 stock _ NOUN NN _ 5 conj _ _ 19 to _ ADP TO _ 20 case _ _ 20 Ca _ PROPN NN _ 18 nmod _ _ 21 from _ ADP IN _ 22 case _ _ 22 Caa _ PROPN NNP _ 18 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 rating _ NOUN NN _ 3 compound _ _ 3 agency _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 about _ ADV IN _ 6 advmod _ _ 6 $ _ SYM $ _ 12 nsubjpass _ _ 7 85 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 10 case _ _ 10 securities _ NOUN NNS _ 6 nmod _ _ 11 was _ AUX VBD _ 12 auxpass _ _ 12 affected _ VERB VBN _ 4 ccomp _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 downgrades _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 prompted _ VERB VBN _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Moody _ PROPN NNP _ 8 nsubj _ _ 7 's _ PART POS _ 6 case _ _ 8 said _ VERB VBD _ 4 parataxis _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 by _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 continuing _ VERB VBG _ 13 amod _ _ 13 turmoil _ NOUN NN _ 4 nmod _ _ 14 in _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 junk _ NOUN NN _ 18 compound _ _ 17 bond _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 13 nmod _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 suspension _ NOUN NN _ 13 conj _ _ 22 of _ ADP IN _ 23 case _ _ 23 dividends _ NOUN NNS _ 21 nmod _ _ 24 on _ ADP IN _ 28 case _ _ 25 CenTrust _ PROPN NNP _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 preferred _ VERB JJ _ 28 amod _ _ 28 stock _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Moody _ PROPN NNP _ 4 nsubj _ _ 2 's _ PART POS _ 1 case _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 believed _ VERB VBD _ 4 ccomp _ _ 7 the _ DET DT _ 9 det _ _ 8 proposed _ VERB VBN _ 9 amod _ _ 9 sale _ NOUN NN _ 23 nsubj _ _ 10 of _ ADP IN _ 13 case _ _ 11 63 _ NUM CD _ 13 nummod _ _ 12 CenTrust _ PROPN NNP _ 13 compound _ _ 13 branches _ NOUN NNS _ 9 nmod _ _ 14 to _ ADP TO _ 17 case _ _ 15 Great _ ADJ NNP _ 17 amod _ _ 16 Western _ PROPN NNP _ 17 compound _ _ 17 Bank _ PROPN NNP _ 9 nmod _ _ 18 could _ AUX MD _ 23 aux _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 if _ SCONJ IN _ 21 mark _ _ 21 completed _ VERB VBN _ 23 parataxis _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 endanger _ VERB VBP _ 6 ccomp _ _ 24 the _ DET DT _ 25 det _ _ 25 thrift _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 funding _ NOUN NN _ 23 dobj _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 market _ NOUN NN _ 30 compound _ _ 30 position _ NOUN NN _ 27 conj _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 THE _ DET DT _ 3 det _ _ 2 STOCK _ NOUN NNP _ 3 compound _ _ 3 MARKET _ NOUN NNP _ 4 nsubj _ _ 4 AVOIDED _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 repeat _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 Black _ PROPN NNP _ 9 compound _ _ 9 Monday _ PROPN NNP _ 6 nmod _ _ 10 as _ SCONJ IN _ 12 mark _ _ 11 prices _ NOUN NNS _ 12 nsubj _ _ 12 recovered _ VERB VBN _ 4 advcl _ _ 13 from _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 early _ ADJ JJ _ 16 amod _ _ 16 slide _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 spurred _ VERB VBN _ 12 dep _ _ 19 by _ ADP IN _ 21 case _ _ 20 bargain-hunting _ ADJ NN _ 21 amod _ _ 21 institutions _ NOUN NNS _ 18 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 program _ NOUN NN _ 24 compound _ _ 24 traders _ NOUN NNS _ 21 conj _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Dow _ PROPN NNP _ 4 compound _ _ 3 Jones _ PROPN NNP _ 4 compound _ _ 4 industrials _ NOUN NNS _ 5 nsubj _ _ 5 closed _ VERB VBD _ 0 root _ _ 6 up _ ADV RB _ 5 advmod _ _ 7 88.12 _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 6 nmod:npmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 at _ ADP IN _ 11 case _ _ 11 2657.38 _ NUM CD _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 the _ DET DT _ 15 det _ _ 14 fourth-biggest _ ADJ JJ _ 15 amod _ _ 15 gain _ NOUN NN _ 11 appos _ _ 16 ever _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 after _ SCONJ IN _ 28 mark _ _ 19 being _ VERB VBG _ 28 cop _ _ 20 down _ ADV RP _ 28 advmod _ _ 21 as _ ADV RB _ 24 advmod _ _ 22 much _ ADJ RB _ 24 advmod _ _ 23 as _ ADP IN _ 24 advmod _ _ 24 63.52 _ NUM CD _ 25 nummod _ _ 25 points _ NOUN NNS _ 20 nmod:npmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 morning _ NOUN NN _ 5 advcl _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rally _ NOUN NN _ 3 nsubj _ _ 3 erased _ VERB VBD _ 0 root _ _ 4 about _ ADV IN _ 5 advmod _ _ 5 half _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 10 case _ _ 7 Friday _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 190.58-point _ ADJ JJ _ 10 amod _ _ 10 plunge _ NOUN NN _ 5 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 but _ CONJ CC _ 3 cc _ _ 13 analysts _ NOUN NNS _ 15 nsubj _ _ 14 are _ VERB VBP _ 15 cop _ _ 15 cautious _ ADJ JJ _ 3 conj _ _ 16 about _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 outlook _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 rebounded _ VERB VBD _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 while _ SCONJ IN _ 9 mark _ _ 7 bond _ NOUN NN _ 8 compound _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 plummeted _ VERB VBD _ 4 advcl _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Treasury _ PROPN NNP _ 13 compound _ _ 12 bill _ NOUN NN _ 13 compound _ _ 13 rates _ NOUN NNS _ 14 nsubj _ _ 14 soared _ VERB VBD _ 9 conj _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Junk _ NOUN NN _ 2 compound _ _ 2 bonds _ NOUN NNS _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 recovered _ VERB VBD _ 0 root _ _ 5 somewhat _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 though _ SCONJ IN _ 9 mark _ _ 8 trading _ NOUN NN _ 9 nsubj _ _ 9 remained _ VERB VBD _ 4 advcl _ _ 10 stalled _ ADJ VBN _ 9 xcomp _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Gold _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Tokyo _ PROPN NNP _ 3 compound _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 4 nsubj _ _ 4 bounced _ VERB VBD _ 0 root _ _ 5 back _ ADV RP _ 4 advmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 early _ ADJ JJ _ 8 amod _ _ 8 trading _ NOUN NN _ 4 nmod _ _ 9 Tuesday _ PROPN NNP _ 8 nmod:tmod _ _ 10 following _ VERB VBG _ 4 xcomp _ _ 11 a _ DET DT _ 14 det _ _ 12 1.8 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 plunge _ NOUN NN _ 10 dobj _ _ 15 on _ ADP IN _ 16 case _ _ 16 Monday _ PROPN NNP _ 14 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 moved _ VERB VBD _ 0 root _ _ 5 higher _ ADV RBR _ 4 advmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 Tokyo _ PROPN NNP _ 4 nmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Donald _ PROPN NNP _ 2 compound _ _ 2 Trump _ PROPN NNP _ 3 nsubj _ _ 3 withdrew _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 8 nmod:poss _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 7.54 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 offer _ NOUN NN _ 3 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 American _ PROPN NNP _ 11 compound _ _ 11 Air _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 citing _ VERB VBG _ 3 advcl _ _ 14 the _ DET DT _ 17 det _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 recent _ ADJ JJ _ 17 amod _ _ 17 change _ NOUN NN _ 13 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 conditions _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 22 '' _ PUNCT '' _ 3 punct _ _ 1 AMR _ PROPN NNP _ 2 nsubj _ _ 2 slid _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 4 dep _ _ 4 22.125 _ NUM CD _ 2 dobj _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 to _ ADP TO _ 8 case _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 76.50 _ NUM CD _ 2 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 UAL _ PROPN NNP _ 5 compound _ _ 5 group _ NOUN NN _ 6 nsubj _ _ 6 tried _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 xcomp _ _ 9 financing _ NOUN NN _ 8 dobj _ _ 10 for _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 lower _ ADJ JJR _ 13 amod _ _ 13 bid _ NOUN NN _ 8 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 possibly _ ADV RB _ 17 advmod _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 250 _ NUM CD _ 13 appos _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 UAL _ PROPN NNP _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 4 dep _ _ 4 56.875 _ NUM CD _ 2 dobj _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 to _ ADP TO _ 8 case _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 222.875 _ NUM CD _ 2 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Leveraged _ VERB JJ _ 2 amod _ _ 2 buy-outs _ NOUN NNS _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 airlines _ NOUN NNS _ 2 nmod _ _ 5 would _ AUX MD _ 7 aux _ _ 6 be _ VERB VB _ 7 cop _ _ 7 subject _ ADJ JJ _ 0 root _ _ 8 to _ ADP TO _ 9 case _ _ 9 approval _ NOUN NN _ 7 nmod _ _ 10 by _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 transportation _ NOUN NN _ 13 compound _ _ 13 secretary _ NOUN NN _ 9 nmod _ _ 14 under _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 bill _ NOUN NN _ 7 nmod _ _ 17 passed _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 House _ PROPN NNP _ 21 compound _ _ 21 subcommittee _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 7 punct _ _ 1 IBM _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 earnings _ NOUN NNS _ 4 nsubj _ _ 4 tumbled _ VERB VBD _ 0 root _ _ 5 30 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 4 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 slightly _ ADV RB _ 13 advmod _ _ 13 more _ ADJ JJR _ 4 xcomp _ _ 14 than _ ADP IN _ 15 case _ _ 15 expected _ VERB VBN _ 13 advcl _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 giant _ NOUN NN _ 5 nsubj _ _ 4 partly _ ADV RB _ 5 advmod _ _ 5 cited _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 stronger _ ADJ JJR _ 8 amod _ _ 8 dollar _ NOUN NN _ 5 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 a _ DET DT _ 11 det _ _ 11 delay _ NOUN NN _ 8 conj _ _ 12 in _ SCONJ IN _ 13 mark _ _ 13 shipping _ VERB VBG _ 11 acl _ _ 14 a _ DET DT _ 18 det _ _ 15 new _ ADJ JJ _ 18 amod _ _ 16 high-end _ ADJ JJ _ 18 amod _ _ 17 disk _ NOUN NN _ 18 compound _ _ 18 drive _ NOUN NN _ 13 dobj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 are _ VERB VBP _ 3 cop _ _ 3 downbeat _ ADJ JJ _ 0 root _ _ 4 about _ ADP IN _ 7 case _ _ 5 IBM _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 outlook _ NOUN NN _ 3 nmod _ _ 8 for _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 next _ ADJ JJ _ 12 amod _ _ 11 few _ ADJ JJ _ 12 amod _ _ 12 quarters _ NOUN NNS _ 7 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 3 compound _ _ 2 auto _ NOUN NN _ 3 compound _ _ 3 makers _ NOUN NNS _ 4 nsubj _ _ 4 plan _ VERB VBP _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 decrease _ VERB VB _ 4 xcomp _ _ 7 car _ NOUN NN _ 8 compound _ _ 8 production _ NOUN NN _ 6 iobj _ _ 9 10.4 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 6 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 fourth _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 with _ SCONJ IN _ 21 mark _ _ 17 virtually _ ADV RB _ 20 advmod _ _ 18 all _ DET PDT _ 20 det:predet _ _ 19 the _ DET DT _ 20 det _ _ 20 decline _ NOUN NN _ 21 nsubj _ _ 21 coming _ VERB VBG _ 6 advcl _ _ 22 from _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Big _ PROPN NNP _ 21 nmod _ _ 25 Three _ NUM CD _ 24 nummod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Output _ NOUN NN _ 11 nsubj _ _ 2 at _ ADP IN _ 6 case _ _ 3 Japanese-owned _ ADJ JJ _ 6 amod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 managed _ VERB VBD _ 3 conj _ _ 6 plants _ NOUN NNS _ 1 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 6 nmod _ _ 10 is _ VERB VBZ _ 11 cop _ _ 11 due _ ADJ JJ _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 rise _ VERB VB _ 11 xcomp _ _ 14 42 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dobj _ _ 16 . _ PUNCT . _ 11 punct _ _ 1 Budget _ NOUN NNP _ 3 compound _ _ 2 director _ NOUN NN _ 3 compound _ _ 3 Darman _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 8 nsubj _ _ 6 wo _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 give _ VERB VB _ 4 ccomp _ _ 9 federal _ ADJ JJ _ 10 amod _ _ 10 agencies _ NOUN NNS _ 8 iobj _ _ 11 much _ ADJ JJ _ 12 amod _ _ 12 leeway _ NOUN NN _ 8 dobj _ _ 13 in _ SCONJ IN _ 14 mark _ _ 14 coping _ VERB VBG _ 12 acl _ _ 15 with _ ADP IN _ 18 case _ _ 16 Gramm-Rudman _ PROPN NNP _ 18 compound _ _ 17 spending _ NOUN NN _ 18 compound _ _ 18 cuts _ NOUN NNS _ 14 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 21 nsubj _ _ 21 took _ VERB VBD _ 18 acl:relcl _ _ 22 effect _ NOUN NN _ 21 dobj _ _ 23 yesterday _ NOUN NN _ 21 nmod:tmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Darman _ PROPN NNP _ 2 nsubj _ _ 2 hopes _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 prod _ VERB VB _ 2 xcomp _ _ 5 Congress _ PROPN NNP _ 4 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 finish _ VERB VB _ 4 xcomp _ _ 8 a _ DET DT _ 10 det _ _ 9 deficit _ NOUN NN _ 10 compound _ _ 10 plan _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 S&L _ PROPN NN _ 4 compound _ _ 3 bailout _ NOUN NN _ 4 compound _ _ 4 agency _ NOUN NN _ 7 nsubjpass _ _ 5 would _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 restricted _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 bill _ NOUN NN _ 7 nmod _ _ 12 in _ SCONJ IN _ 15 mark _ _ 13 how _ ADV WRB _ 15 advmod _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 raises _ VERB VBZ _ 7 advcl _ _ 16 capital _ NOUN NN _ 15 dobj _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Ways _ PROPN NNP _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Means _ PROPN NNP _ 2 conj _ _ 5 plan _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 create _ VERB VB _ 0 root _ _ 8 another _ DET DT _ 10 det _ _ 9 possible _ ADJ JJ _ 10 amod _ _ 10 obstacle _ NOUN NN _ 7 dobj _ _ 11 to _ ADP TO _ 12 mark _ _ 12 selling _ VERB VBG _ 10 acl _ _ 13 sick _ ADJ JJ _ 14 amod _ _ 14 thrifts _ NOUN NNS _ 12 dobj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 natural _ ADJ JJ _ 4 amod _ _ 3 gas _ NOUN NN _ 4 compound _ _ 4 rule _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 struck _ VERB VBN _ 0 root _ _ 7 down _ ADP RP _ 6 compound:prt _ _ 8 by _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 federal _ ADJ JJ _ 12 amod _ _ 11 appeals _ NOUN NNS _ 12 compound _ _ 12 court _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 regulation _ NOUN NN _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 prevented _ VERB VBN _ 0 root _ _ 5 pipeline _ NOUN NN _ 6 compound _ _ 6 firms _ NOUN NNS _ 4 dobj _ _ 7 from _ SCONJ IN _ 8 mark _ _ 8 passing _ VERB VBG _ 4 advcl _ _ 9 part _ NOUN NN _ 8 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 1 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 in _ ADP IN _ 15 case _ _ 15 costs _ NOUN NNS _ 11 nmod _ _ 16 along _ ADP IN _ 18 case _ _ 17 to _ ADP TO _ 18 case _ _ 18 customers _ NOUN NNS _ 8 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Supreme _ PROPN NNP _ 3 compound _ _ 3 Court _ PROPN NNP _ 4 nsubj _ _ 4 agreed _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 decide _ VERB VB _ 4 xcomp _ _ 7 whether _ SCONJ IN _ 12 mark _ _ 8 a _ DET DT _ 10 det _ _ 9 federal _ ADJ JJ _ 10 amod _ _ 10 court _ NOUN NN _ 12 nsubj _ _ 11 may _ AUX MD _ 12 aux _ _ 12 dismantle _ VERB VB _ 6 ccomp _ _ 13 a _ DET DT _ 14 det _ _ 14 merger _ NOUN NN _ 12 dobj _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 won _ VERB VBN _ 14 acl:relcl _ _ 18 regulatory _ ADJ JJ _ 19 amod _ _ 19 approval _ NOUN NN _ 17 dobj _ _ 20 but _ CONJ CC _ 17 cc _ _ 21 been _ AUX VBN _ 22 auxpass _ _ 22 ruled _ VERB VBN _ 17 conj _ _ 23 anticompetitive _ ADJ JJ _ 22 xcomp _ _ 24 in _ ADP IN _ 27 case _ _ 25 a _ DET DT _ 27 det _ _ 26 private _ ADJ JJ _ 27 amod _ _ 27 suit _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 profit _ NOUN NN _ 5 nsubj _ _ 5 slid _ VERB VBD _ 0 root _ _ 6 37 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 third _ ADJ JJ _ 11 amod _ _ 11 quarter _ NOUN NN _ 5 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 3 nsubj _ _ 3 posted _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 7.5 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 gain _ NOUN NN _ 3 dobj _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 while _ SCONJ IN _ 11 mark _ _ 10 PaineWebber _ PROPN NNP _ 11 nsubj _ _ 11 had _ VERB VBD _ 3 advcl _ _ 12 a _ DET DT _ 13 det _ _ 13 decline _ NOUN NN _ 11 dobj _ _ 14 due _ ADJ JJ _ 13 amod _ _ 15 to _ ADP TO _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 year-ago _ ADJ JJ _ 18 amod _ _ 18 gain _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Blue _ PROPN NNP _ 2 compound _ _ 2 Arrow _ PROPN NNP _ 5 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 Britain _ PROPN NNP _ 2 nmod _ _ 5 plans _ VERB VBZ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 return _ VERB VB _ 5 xcomp _ _ 8 to _ ADP TO _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 name _ NOUN NN _ 11 compound _ _ 11 Manpower _ PROPN NN _ 7 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 take _ VERB VB _ 7 conj _ _ 14 a _ DET DT _ 16 det _ _ 15 big _ ADJ JJ _ 16 amod _ _ 16 write-off _ NOUN NN _ 13 dobj _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 moves _ NOUN NNS _ 4 nsubj _ _ 3 may _ AUX MD _ 4 aux _ _ 4 help _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 firm _ NOUN NN _ 7 nsubj _ _ 7 solidify _ VERB VB _ 4 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 dominance _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 U.S. _ PROPN NNP _ 14 compound _ _ 13 temporary-help _ ADJ NN _ 14 amod _ _ 14 market _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 3 nsubj _ _ 3 posted _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 1.82 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 loss _ NOUN NN _ 3 dobj _ _ 9 for _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 third _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 reflecting _ VERB VBG _ 3 advcl _ _ 15 a _ DET DT _ 17 det _ _ 16 big _ ADJ JJ _ 17 amod _ _ 17 addition _ NOUN NN _ 14 dobj _ _ 18 to _ ADP TO _ 20 case _ _ 19 loan-loss _ ADJ JJ _ 20 amod _ _ 20 reserves _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 profit _ NOUN NN _ 6 nsubj _ _ 4 more _ ADV JJR _ 6 advmod _ _ 5 than _ ADP IN _ 4 case _ _ 6 doubled _ VERB VBD _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 K _ PROPN NNP _ 2 compound _ _ 2 mart _ PROPN NNP _ 3 nsubj _ _ 3 agreed _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 acquire _ VERB VB _ 3 xcomp _ _ 6 Pace _ PROPN NNP _ 8 compound _ _ 7 Membership _ PROPN NN _ 8 compound _ _ 8 Warehouse _ PROPN NNP _ 5 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 5 nmod _ _ 11 322 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 expanding _ VERB VBG _ 3 xcomp _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 presence _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 21 case _ _ 18 the _ DET DT _ 21 det _ _ 19 growing _ VERB VBG _ 21 amod _ _ 20 wholesale-store _ ADJ NN _ 21 amod _ _ 21 business _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Markets _ NOUN NNS _ 0 root _ _ 2 -- _ PUNCT : _ 1 punct _ _ 1 Stocks _ NOUN NNS _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Volume _ NOUN NN _ 1 dep _ _ 4 416,290,000 _ NUM CD _ 5 nummod _ _ 5 shares _ NOUN NNS _ 3 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 Dow _ PROPN NNP _ 3 compound _ _ 2 Jones _ PROPN NNP _ 3 compound _ _ 3 industrials _ NOUN NNS _ 0 root _ _ 4 2657.38 _ NUM CD _ 3 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 up _ ADV RB _ 4 advmod _ _ 7 88.12 _ NUM CD _ 6 nmod:npmod _ _ 8 ; _ PUNCT : _ 3 punct _ _ 9 transportation _ NOUN NN _ 3 dep _ _ 10 1304.23 _ NUM CD _ 9 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 off _ ADJ RB _ 10 advmod _ _ 13 102.06 _ NUM CD _ 12 dep _ _ 14 ; _ PUNCT : _ 3 punct _ _ 15 utilities _ NOUN NNS _ 3 dep _ _ 16 214.73 _ NUM CD _ 15 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 up _ ADV RB _ 16 advmod _ _ 19 2.77 _ NUM CD _ 18 nmod:npmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Bonds _ NOUN NNS _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Shearson _ PROPN NNP _ 7 compound _ _ 4 Lehman _ PROPN NNP _ 7 compound _ _ 5 Hutton _ PROPN NNP _ 7 compound _ _ 6 Treasury _ PROPN NNP _ 7 compound _ _ 7 index _ NOUN NN _ 1 dep _ _ 8 3393.51 _ NUM CD _ 7 dep _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 off _ ADJ RB _ 8 advmod _ _ 1 Commodities _ NOUN NNS _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Dow _ PROPN NNP _ 6 compound _ _ 4 Jones _ PROPN NNP _ 6 compound _ _ 5 futures _ NOUN NNS _ 6 compound _ _ 6 index _ NOUN NN _ 1 dep _ _ 7 129.72 _ NUM CD _ 6 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 off _ ADJ RB _ 7 advmod _ _ 10 0.15 _ NUM CD _ 9 dep _ _ 11 ; _ PUNCT : _ 6 punct _ _ 12 spot _ NOUN NN _ 13 compound _ _ 13 index _ NOUN NN _ 6 dep _ _ 14 130.16 _ NUM CD _ 13 dep _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 up _ ADV RB _ 14 advmod _ _ 17 0.91 _ NUM CD _ 16 nmod:npmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 Dollar _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 141.85 _ NUM CD _ 4 nummod _ _ 4 yen _ NOUN NN _ 1 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 off _ ADP IN _ 7 case _ _ 7 0.25 _ NUM CD _ 4 advmod _ _ 8 ; _ PUNCT : _ 4 punct _ _ 9 1.8685 _ NUM CD _ 10 nummod _ _ 10 marks _ NOUN NNS _ 4 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 off _ ADP IN _ 13 case _ _ 13 0.0055 _ NUM CD _ 10 advmod _ _ 14 . _ PUNCT . _ 1 punct _ _ 1 Monday _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 October _ PROPN NNP _ 1 appos _ _ 4 16 _ NUM CD _ 3 nummod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 1989 _ NUM CD _ 3 nummod _ _ 1 The _ DET DT _ 8 det _ _ 2 key _ ADJ JJ _ 8 amod _ _ 3 U.S. _ PROPN NNP _ 8 compound _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 foreign _ ADJ JJ _ 3 conj _ _ 6 annual _ ADJ JJ _ 8 amod _ _ 7 interest _ NOUN NN _ 8 compound _ _ 8 rates _ NOUN NNS _ 12 nsubj _ _ 9 below _ ADV RB _ 8 advmod _ _ 10 are _ VERB VBP _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 guide _ NOUN NN _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 general _ ADJ JJ _ 15 amod _ _ 15 levels _ NOUN NNS _ 12 nmod _ _ 16 but _ CONJ CC _ 12 cc _ _ 17 do _ AUX VBP _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 always _ ADV RB _ 20 advmod _ _ 20 represent _ VERB VB _ 12 conj _ _ 21 actual _ ADJ JJ _ 22 amod _ _ 22 transactions _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 PRIME _ PROPN JJ _ 2 compound _ _ 2 RATE _ PROPN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 10 _ NUM CD _ 5 compound _ _ 5 1/2 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 2 dep _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 base _ NOUN NN _ 3 compound _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 on _ ADP IN _ 6 case _ _ 5 corporate _ ADJ JJ _ 6 amod _ _ 6 loans _ NOUN NNS _ 3 nmod _ _ 7 at _ ADP IN _ 13 case _ _ 8 large _ ADJ JJ _ 13 amod _ _ 9 U.S. _ PROPN NNP _ 13 compound _ _ 10 money _ NOUN NN _ 13 compound _ _ 11 center _ NOUN NN _ 13 compound _ _ 12 commercial _ ADJ JJ _ 13 amod _ _ 13 banks _ NOUN NNS _ 3 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 FEDERAL _ PROPN JJ _ 2 compound _ _ 2 FUNDS _ PROPN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 8 _ NUM CD _ 5 compound _ _ 5 3/4 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 2 dep _ _ 7 high _ ADJ JJ _ 6 amod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 8 _ NUM CD _ 10 compound _ _ 10 1/2 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 6 appos _ _ 12 low _ ADJ JJ _ 11 amod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 8 _ NUM CD _ 15 compound _ _ 15 5/8 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 6 appos _ _ 17 near _ ADP IN _ 19 case _ _ 18 closing _ VERB NN _ 19 amod _ _ 19 bid _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 8 _ NUM CD _ 22 compound _ _ 22 3/4 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 6 appos _ _ 24 offered _ VERB VBN _ 23 acl _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Reserves _ NOUN NNS _ 2 nsubj _ _ 2 traded _ VERB VBN _ 0 root _ _ 3 among _ ADP IN _ 5 case _ _ 4 commercial _ ADJ JJ _ 5 amod _ _ 5 banks _ NOUN NNS _ 2 nmod _ _ 6 for _ ADP IN _ 8 case _ _ 7 overnight _ ADJ JJ _ 8 amod _ _ 8 use _ NOUN NN _ 2 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 amounts _ NOUN NNS _ 2 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 1 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 more _ ADJ JJR _ 12 conj _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Fulton _ PROPN NNP _ 9 compound _ _ 4 Prebon _ PROPN NNP _ 9 compound _ _ 5 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 6 U.S.A _ PROPN NNP _ 9 compound _ _ 7 . _ PUNCT . _ 9 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 9 Inc _ PROPN NNP _ 1 dep _ _ 10 . _ PUNCT . _ 1 punct _ _ 1 DISCOUNT _ PROPN NN _ 2 compound _ _ 2 RATE _ PROPN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 7 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dep _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 7 case _ _ 6 depository _ ADJ NN _ 7 amod _ _ 7 institutions _ NOUN NNS _ 4 nmod _ _ 8 by _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 New _ PROPN NNP _ 14 compound _ _ 11 York _ PROPN NNP _ 14 compound _ _ 12 Federal _ PROPN NNP _ 14 compound _ _ 13 Reserve _ PROPN NNP _ 14 compound _ _ 14 Bank _ PROPN NNP _ 4 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 CALL _ NOUN JJ _ 2 compound _ _ 2 MONEY _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 9 _ NUM CD _ 9 compound _ _ 5 3/4 _ NUM CD _ 9 compound _ _ 6 % _ SYM NN _ 9 dep _ _ 7 to _ ADP TO _ 9 dep _ _ 8 10 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 2 dep _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 6 case _ _ 6 brokers _ NOUN NNS _ 4 nmod _ _ 7 on _ ADP IN _ 10 case _ _ 8 stock _ NOUN NN _ 10 compound _ _ 9 exchange _ NOUN NN _ 10 compound _ _ 10 collateral _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 placed _ VERB VBN _ 2 acl _ _ 4 directly _ ADV RB _ 3 advmod _ _ 5 by _ ADP IN _ 9 case _ _ 6 General _ PROPN NNP _ 9 compound _ _ 7 Motors _ PROPN NNPS _ 9 compound _ _ 8 Acceptance _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 3 nmod _ _ 10 : _ PUNCT : _ 2 punct _ _ 11 8.30 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 5 _ NUM CD _ 15 compound _ _ 14 to _ ADP TO _ 15 dep _ _ 15 44 _ NUM CD _ 16 nummod _ _ 16 days _ NOUN NNS _ 12 nmod:npmod _ _ 17 ; _ PUNCT : _ 12 punct _ _ 18 8.20 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 12 dep _ _ 20 45 _ NUM CD _ 22 compound _ _ 21 to _ ADP TO _ 22 dep _ _ 22 59 _ NUM CD _ 23 nummod _ _ 23 days _ NOUN NNS _ 19 nmod:npmod _ _ 24 ; _ PUNCT : _ 12 punct _ _ 25 8 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 12 dep _ _ 27 60 _ NUM CD _ 29 compound _ _ 28 to _ ADP TO _ 29 dep _ _ 29 89 _ NUM CD _ 30 nummod _ _ 30 days _ NOUN NNS _ 26 nmod:npmod _ _ 31 ; _ PUNCT : _ 12 punct _ _ 32 7.875 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 12 dep _ _ 34 90 _ NUM CD _ 36 compound _ _ 35 to _ ADP TO _ 36 dep _ _ 36 119 _ NUM CD _ 37 nummod _ _ 37 days _ NOUN NNS _ 33 nmod:npmod _ _ 38 ; _ PUNCT : _ 12 punct _ _ 39 7.75 _ NUM CD _ 40 nummod _ _ 40 % _ SYM NN _ 12 dep _ _ 41 120 _ NUM CD _ 43 compound _ _ 42 to _ ADP TO _ 43 dep _ _ 43 149 _ NUM CD _ 44 nummod _ _ 44 days _ NOUN NNS _ 40 nmod:npmod _ _ 45 ; _ PUNCT : _ 12 punct _ _ 46 7.625 _ NUM CD _ 47 nummod _ _ 47 % _ SYM NN _ 12 dep _ _ 48 150 _ NUM CD _ 50 compound _ _ 49 to _ ADP TO _ 50 dep _ _ 50 179 _ NUM CD _ 51 nummod _ _ 51 days _ NOUN NNS _ 47 nmod:npmod _ _ 52 ; _ PUNCT : _ 12 punct _ _ 53 7.375 _ NUM CD _ 54 nummod _ _ 54 % _ SYM NN _ 12 dep _ _ 55 180 _ NUM CD _ 57 compound _ _ 56 to _ ADP TO _ 57 dep _ _ 57 270 _ NUM CD _ 58 nummod _ _ 58 days _ NOUN NNS _ 54 nmod:npmod _ _ 59 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 High-grade _ ADJ JJ _ 5 amod _ _ 5 unsecured _ ADJ JJ _ 6 amod _ _ 6 notes _ NOUN NNS _ 2 dep _ _ 7 sold _ VERB VBN _ 6 acl _ _ 8 through _ ADP IN _ 9 case _ _ 9 dealers _ NOUN NNS _ 7 nmod _ _ 10 by _ ADP IN _ 12 case _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 corporations _ NOUN NNS _ 7 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 multiples _ NOUN NNS _ 7 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1,000 _ NUM CD _ 14 nmod _ _ 18 : _ PUNCT : _ 6 punct _ _ 19 8.40 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 6 dep _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 days _ NOUN NNS _ 20 nmod:npmod _ _ 23 ; _ PUNCT : _ 20 punct _ _ 24 8.33 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 20 dep _ _ 26 60 _ NUM CD _ 27 nummod _ _ 27 days _ NOUN NNS _ 25 nmod:npmod _ _ 28 ; _ PUNCT : _ 20 punct _ _ 29 8.26 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 20 dep _ _ 31 90 _ NUM CD _ 32 nummod _ _ 32 days _ NOUN NNS _ 30 nmod:npmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 CERTIFICATES _ NOUN NNS _ 0 root _ _ 2 OF _ ADP IN _ 3 case _ _ 3 DEPOSIT _ NOUN NN _ 1 nmod _ _ 4 : _ PUNCT : _ 1 punct _ _ 5 8.05 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 1 dep _ _ 7 one _ NUM CD _ 8 nummod _ _ 8 month _ NOUN NN _ 6 nmod:npmod _ _ 9 ; _ PUNCT : _ 6 punct _ _ 10 8.02 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 6 dep _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 months _ NOUN NNS _ 11 nmod:npmod _ _ 14 ; _ PUNCT : _ 6 punct _ _ 15 8 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 6 dep _ _ 17 three _ NUM CD _ 18 nummod _ _ 18 months _ NOUN NNS _ 16 nmod:npmod _ _ 19 ; _ PUNCT : _ 6 punct _ _ 20 7.98 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 6 dep _ _ 22 six _ NUM CD _ 23 nummod _ _ 23 months _ NOUN NNS _ 21 nmod:npmod _ _ 24 ; _ PUNCT : _ 6 punct _ _ 25 7.95 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 6 dep _ _ 27 one _ NUM CD _ 28 nummod _ _ 28 year _ NOUN NN _ 26 dep _ _ 29 . _ PUNCT . _ 1 punct _ _ 1 Average _ NOUN JJ _ 0 root _ _ 2 of _ ADP IN _ 4 case _ _ 3 top _ ADJ JJ _ 4 amod _ _ 4 rates _ NOUN NNS _ 1 nmod _ _ 5 paid _ VERB VBN _ 4 acl _ _ 6 by _ ADP IN _ 10 case _ _ 7 major _ ADJ JJ _ 10 amod _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 York _ PROPN NNP _ 10 compound _ _ 10 banks _ NOUN NNS _ 5 nmod _ _ 11 on _ ADP IN _ 14 case _ _ 12 primary _ ADJ JJ _ 13 amod _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 issues _ NOUN NNS _ 5 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 negotiable _ ADJ JJ _ 17 amod _ _ 17 C.D.s _ NOUN NNS _ 14 nmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 usually _ ADV RB _ 21 advmod _ _ 20 on _ ADP IN _ 21 case _ _ 21 amounts _ NOUN NNS _ 5 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 1 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 more _ ADJ JJR _ 23 conj _ _ 28 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 minimum _ NOUN JJ _ 3 compound _ _ 3 unit _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 100,000 _ NUM CD _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Typical _ ADJ JJ _ 2 amod _ _ 2 rates _ NOUN NNS _ 0 root _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 secondary _ ADJ JJ _ 6 amod _ _ 6 market _ NOUN NN _ 2 nmod _ _ 7 : _ PUNCT : _ 2 punct _ _ 8 8.40 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 2 dep _ _ 10 one _ NUM CD _ 11 nummod _ _ 11 month _ NOUN NN _ 9 nmod:npmod _ _ 12 ; _ PUNCT : _ 9 punct _ _ 13 8.40 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 9 dep _ _ 15 three _ NUM CD _ 16 nummod _ _ 16 months _ NOUN NNS _ 14 nmod:npmod _ _ 17 ; _ PUNCT : _ 9 punct _ _ 18 8.40 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 9 dep _ _ 20 six _ NUM CD _ 21 nummod _ _ 21 months _ NOUN NNS _ 19 nmod:npmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 BANKERS _ NOUN NNS _ 2 compound _ _ 2 ACCEPTANCES _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 8.40 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dep _ _ 6 30 _ NUM CD _ 7 nummod _ _ 7 days _ NOUN NNS _ 5 nmod:npmod _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 8.35 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 5 dep _ _ 11 60 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 10 nmod:npmod _ _ 13 ; _ PUNCT : _ 5 punct _ _ 14 8.27 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 5 dep _ _ 16 90 _ NUM CD _ 17 nummod _ _ 17 days _ NOUN NNS _ 15 nmod:npmod _ _ 18 ; _ PUNCT : _ 5 punct _ _ 19 8.20 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 5 dep _ _ 21 120 _ NUM CD _ 22 nummod _ _ 22 days _ NOUN NNS _ 20 nmod:npmod _ _ 23 ; _ PUNCT : _ 5 punct _ _ 24 8.15 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 5 dep _ _ 26 150 _ NUM CD _ 27 nummod _ _ 27 days _ NOUN NNS _ 25 nmod:npmod _ _ 28 ; _ PUNCT : _ 5 punct _ _ 29 8.02 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 5 dep _ _ 31 180 _ NUM CD _ 32 nummod _ _ 32 days _ NOUN NNS _ 30 nmod:npmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Negotiable _ ADJ JJ _ 3 amod _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 bank-backed _ ADJ JJ _ 6 amod _ _ 4 business _ NOUN NN _ 6 compound _ _ 5 credit _ NOUN NN _ 6 compound _ _ 6 instruments _ NOUN NNS _ 0 root _ _ 7 typically _ ADV RB _ 8 advmod _ _ 8 financing _ VERB VBG _ 6 acl _ _ 9 an _ DET DT _ 11 det _ _ 10 import _ NOUN NN _ 11 compound _ _ 11 order _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 LONDON _ PROPN NNP _ 3 compound _ _ 2 LATE _ ADJ JJ _ 3 amod _ _ 3 EURODOLLARS _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 5 8 _ NUM CD _ 11 compound _ _ 6 5/8 _ NUM CD _ 11 compound _ _ 7 % _ SYM NN _ 11 dep _ _ 8 to _ ADP TO _ 11 dep _ _ 9 8 _ NUM CD _ 11 compound _ _ 10 1/2 _ NUM CD _ 11 compound _ _ 11 % _ SYM NN _ 3 dep _ _ 12 one _ NUM CD _ 13 nummod _ _ 13 month _ NOUN NN _ 11 nmod:npmod _ _ 14 ; _ PUNCT : _ 11 punct _ _ 15 8 _ NUM CD _ 21 compound _ _ 16 5/8 _ NUM CD _ 21 compound _ _ 17 % _ SYM NN _ 21 dep _ _ 18 to _ ADP TO _ 21 dep _ _ 19 8 _ NUM CD _ 21 compound _ _ 20 1/2 _ NUM CD _ 21 compound _ _ 21 % _ SYM NN _ 11 dep _ _ 22 two _ NUM CD _ 23 nummod _ _ 23 months _ NOUN NNS _ 21 nmod:npmod _ _ 24 ; _ PUNCT : _ 11 punct _ _ 25 8 _ NUM CD _ 31 compound _ _ 26 9/16 _ NUM CD _ 31 compound _ _ 27 % _ SYM NN _ 31 dep _ _ 28 to _ ADP TO _ 31 dep _ _ 29 8 _ NUM CD _ 31 compound _ _ 30 7/16 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 11 dep _ _ 32 three _ NUM CD _ 33 nummod _ _ 33 months _ NOUN NNS _ 31 nmod:npmod _ _ 34 ; _ PUNCT : _ 11 punct _ _ 35 8 _ NUM CD _ 41 compound _ _ 36 1/2 _ NUM CD _ 41 compound _ _ 37 % _ SYM NN _ 41 dep _ _ 38 to _ ADP TO _ 41 dep _ _ 39 8 _ NUM CD _ 41 compound _ _ 40 3/8 _ NUM CD _ 41 compound _ _ 41 % _ SYM NN _ 11 dep _ _ 42 four _ NUM CD _ 43 nummod _ _ 43 months _ NOUN NNS _ 41 nmod:npmod _ _ 44 ; _ PUNCT : _ 11 punct _ _ 45 8 _ NUM CD _ 51 compound _ _ 46 1/2 _ NUM CD _ 51 compound _ _ 47 % _ SYM NN _ 51 dep _ _ 48 to _ ADP TO _ 51 dep _ _ 49 8 _ NUM CD _ 51 compound _ _ 50 3/8 _ NUM CD _ 51 compound _ _ 51 % _ SYM NN _ 11 dep _ _ 52 five _ NUM CD _ 53 nummod _ _ 53 months _ NOUN NNS _ 51 nmod:npmod _ _ 54 ; _ PUNCT : _ 11 punct _ _ 55 8 _ NUM CD _ 61 compound _ _ 56 1/2 _ NUM CD _ 61 compound _ _ 57 % _ SYM NN _ 61 dep _ _ 58 to _ ADP TO _ 61 dep _ _ 59 8 _ NUM CD _ 61 compound _ _ 60 3/8 _ NUM CD _ 61 compound _ _ 61 % _ SYM NN _ 11 dep _ _ 62 six _ NUM CD _ 63 nummod _ _ 63 months _ NOUN NNS _ 61 nmod:npmod _ _ 64 . _ PUNCT . _ 3 punct _ _ 1 LONDON _ PROPN NNP _ 4 compound _ _ 2 INTERBANK _ PROPN NNP _ 4 compound _ _ 3 OFFERED _ VERB NNP _ 4 amod _ _ 4 RATES _ NOUN NNPS _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 LIBOR _ PROPN NNP _ 4 appos _ _ 7 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 8 : _ PUNCT : _ 4 punct _ _ 9 8 _ NUM CD _ 10 compound _ _ 10 1/2 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 4 dep _ _ 12 one _ NUM CD _ 13 nummod _ _ 13 month _ NOUN NN _ 11 nmod:npmod _ _ 14 ; _ PUNCT : _ 11 punct _ _ 15 8 _ NUM CD _ 16 compound _ _ 16 1/2 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 11 dep _ _ 18 three _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 11 punct _ _ 21 8 _ NUM CD _ 22 compound _ _ 22 7/16 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 11 dep _ _ 24 six _ NUM CD _ 25 nummod _ _ 25 months _ NOUN NNS _ 23 nmod:npmod _ _ 26 ; _ PUNCT : _ 11 punct _ _ 27 8 _ NUM CD _ 28 compound _ _ 28 3/8 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 11 dep _ _ 30 one _ NUM CD _ 31 nummod _ _ 31 year _ NOUN NN _ 29 dep _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 average _ NOUN NN _ 0 root _ _ 3 of _ ADP IN _ 6 case _ _ 4 interbank _ NOUN NN _ 6 compound _ _ 5 offered _ VERB VBN _ 6 amod _ _ 6 rates _ NOUN NNS _ 2 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 dollar _ NOUN NN _ 9 compound _ _ 9 deposits _ NOUN NNS _ 6 nmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 London _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 9 nmod _ _ 14 based _ VERB VBN _ 2 acl _ _ 15 on _ ADP IN _ 16 case _ _ 16 quotations _ NOUN NNS _ 14 nmod _ _ 17 at _ ADP IN _ 20 case _ _ 18 five _ NUM CD _ 20 nummod _ _ 19 major _ ADJ JJ _ 20 amod _ _ 20 banks _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 FOREIGN _ PROPN JJ _ 3 compound _ _ 2 PRIME _ PROPN JJ _ 3 compound _ _ 3 RATES _ PROPN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 5 Canada _ PROPN NNP _ 3 dep _ _ 6 13.50 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dep _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 Germany _ PROPN NNP _ 5 dep _ _ 10 8.50 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dep _ _ 12 ; _ PUNCT : _ 5 punct _ _ 13 Japan _ PROPN NNP _ 5 dep _ _ 14 4.875 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dep _ _ 16 ; _ PUNCT : _ 5 punct _ _ 17 Switzerland _ PROPN NNP _ 5 dep _ _ 18 8.50 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dep _ _ 20 ; _ PUNCT : _ 5 punct _ _ 21 Britain _ PROPN NNP _ 5 dep _ _ 22 15 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dep _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 These _ DET DT _ 3 det _ _ 2 rate _ NOUN NN _ 3 compound _ _ 3 indications _ NOUN NNS _ 7 nsubj _ _ 4 are _ VERB VBP _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 directly _ ADV RB _ 7 advmod _ _ 7 comparable _ ADJ JJ _ 0 root _ _ 8 ; _ PUNCT : _ 7 punct _ _ 9 lending _ NOUN NN _ 10 compound _ _ 10 practices _ NOUN NNS _ 11 nsubj _ _ 11 vary _ VERB VBP _ 7 parataxis _ _ 12 widely _ ADV RB _ 11 advmod _ _ 13 by _ ADP IN _ 14 case _ _ 14 location _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 TREASURY _ PROPN NN _ 2 compound _ _ 2 BILLS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 Results _ NOUN NNS _ 2 dep _ _ 5 of _ ADP IN _ 14 case _ _ 6 the _ DET DT _ 14 det _ _ 7 Monday _ PROPN NNP _ 14 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 October _ PROPN NNP _ 7 dep _ _ 10 16 _ NUM CD _ 7 dep _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 1989 _ NUM CD _ 7 dep _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 auction _ NOUN NN _ 4 nmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 short-term _ ADJ JJ _ 19 amod _ _ 17 U.S. _ PROPN NNP _ 19 compound _ _ 18 government _ NOUN NN _ 19 compound _ _ 19 bills _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 sold _ VERB VBN _ 19 acl _ _ 22 at _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 discount _ NOUN NN _ 21 nmod _ _ 25 from _ ADP IN _ 27 case _ _ 26 face _ NOUN NN _ 27 compound _ _ 27 value _ NOUN NN _ 24 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 units _ NOUN NNS _ 21 nmod _ _ 30 of _ ADP IN _ 34 case _ _ 31 $ _ SYM $ _ 34 dep _ _ 32 10,000 _ NUM CD _ 34 compound _ _ 33 to _ ADP TO _ 34 dep _ _ 34 $ _ SYM $ _ 29 nmod _ _ 35 1 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 : _ PUNCT : _ 4 punct _ _ 38 7.37 _ NUM CD _ 39 nummod _ _ 39 % _ SYM NN _ 4 dep _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 13 _ NUM CD _ 42 nummod _ _ 42 weeks _ NOUN NNS _ 39 appos _ _ 43 ; _ PUNCT : _ 39 punct _ _ 44 7.42 _ NUM CD _ 45 nummod _ _ 45 % _ SYM NN _ 39 dep _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 26 _ NUM CD _ 48 nummod _ _ 48 weeks _ NOUN NNS _ 45 appos _ _ 49 . _ PUNCT . _ 2 punct _ _ 1 FEDERAL _ PROPN NNP _ 5 compound _ _ 2 HOME _ PROPN NNP _ 5 compound _ _ 3 LOAN _ PROPN NNP _ 5 compound _ _ 4 MORTGAGE _ PROPN NNP _ 5 compound _ _ 5 CORP _ PROPN NNP _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 8 Freddie _ PROPN NNP _ 9 compound _ _ 9 Mac _ PROPN NNP _ 5 appos _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 : _ PUNCT : _ 5 punct _ _ 12 Posted _ VERB VBN _ 13 amod _ _ 13 yields _ NOUN NNS _ 5 dep _ _ 14 on _ ADP IN _ 17 case _ _ 15 30-year _ NUM JJ _ 17 nummod _ _ 16 mortgage _ NOUN NN _ 17 compound _ _ 17 commitments _ NOUN NNS _ 13 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 delivery _ NOUN NN _ 13 nmod _ _ 20 within _ ADP IN _ 22 case _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 days. _ NOUN NN _ 19 nmod _ _ 1 9.83 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 standard _ ADJ JJ _ 7 amod _ _ 5 conventional _ ADJ JJ _ 7 amod _ _ 6 fixedrate _ ADJ JJ _ 7 amod _ _ 7 mortgages _ NOUN NNS _ 2 appos _ _ 8 ; _ PUNCT : _ 2 punct _ _ 9 7.875 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 2 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 2 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 dep _ _ 14 rate _ NOUN NN _ 19 amod _ _ 15 capped _ VERB VBD _ 14 dep _ _ 16 one-year _ ADJ JJ _ 19 amod _ _ 17 adjustable _ ADJ JJ _ 19 amod _ _ 18 rate _ NOUN NN _ 19 compound _ _ 19 mortgages _ NOUN NNS _ 10 appos _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNPS _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 FEDERAL _ PROPN NNP _ 4 compound _ _ 2 NATIONAL _ PROPN NNP _ 4 compound _ _ 3 MORTGAGE _ PROPN NNP _ 4 compound _ _ 4 ASSOCIATION _ PROPN NNP _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 6 Fannie _ PROPN NNP _ 7 compound _ _ 7 Mae _ PROPN NNP _ 4 appos _ _ 8 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 9 : _ PUNCT : _ 4 punct _ _ 10 Posted _ VERB VBN _ 11 amod _ _ 11 yields _ NOUN NNS _ 4 dep _ _ 12 on _ ADP IN _ 16 case _ _ 13 30 _ NUM CD _ 16 nummod _ _ 14 year _ NOUN NN _ 16 compound _ _ 15 mortgage _ NOUN NN _ 16 compound _ _ 16 commitments _ NOUN NNS _ 11 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 delivery _ NOUN NN _ 11 nmod _ _ 19 within _ ADP IN _ 21 case _ _ 20 30 _ NUM CD _ 21 nummod _ _ 21 days _ NOUN NNS _ 18 nmod _ _ 22 -LRB- _ PUNCT -LRB- _ 23 punct _ _ 23 priced _ VERB VBN _ 11 dep _ _ 24 at _ ADP IN _ 25 case _ _ 25 par _ NOUN NN _ 23 nmod _ _ 26 -RRB- _ PUNCT -RRB- _ 23 punct _ _ 27 .9.82 _ NUM CD _ 28 nummod _ _ 28 % _ SYM NN _ 11 dep _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 standard _ ADJ JJ _ 33 amod _ _ 31 conventional _ ADJ JJ _ 33 amod _ _ 32 fixed _ VERB VBN _ 33 amod _ _ 33 rate-mortgages _ NOUN NNS _ 28 appos _ _ 34 ; _ PUNCT : _ 28 punct _ _ 35 8.70 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 28 dep _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 6/2 _ NUM CD _ 44 nummod _ _ 39 rate _ NOUN NN _ 40 dep _ _ 40 capped _ VERB VBD _ 44 amod _ _ 41 one-year _ ADJ JJ _ 44 amod _ _ 42 adjustable _ ADJ JJ _ 44 amod _ _ 43 rate _ NOUN NN _ 44 compound _ _ 44 mortgages _ NOUN NNS _ 36 appos _ _ 45 . _ PUNCT . _ 4 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNPS _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 MERRILL _ PROPN NNP _ 5 compound _ _ 2 LYNCH _ PROPN NNP _ 5 compound _ _ 3 READY _ PROPN NNP _ 5 compound _ _ 4 ASSETS _ PROPN NNPS _ 5 compound _ _ 5 TRUST _ PROPN NNP _ 0 root _ _ 6 : _ PUNCT : _ 5 punct _ _ 7 8.49 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 5 dep _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 Annualized _ VERB JJ _ 3 amod _ _ 2 average _ ADJ JJ _ 3 amod _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 of _ ADP IN _ 5 case _ _ 5 return _ NOUN NN _ 3 nmod _ _ 6 after _ ADP IN _ 7 case _ _ 7 expenses _ NOUN NNS _ 3 nmod _ _ 8 for _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 past _ ADJ JJ _ 12 amod _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 3 nmod _ _ 13 ; _ PUNCT : _ 3 punct _ _ 14 not _ ADV RB _ 16 neg _ _ 15 a _ DET DT _ 16 det _ _ 16 forecast _ NOUN NN _ 3 dep _ _ 17 of _ ADP IN _ 19 case _ _ 18 future _ ADJ JJ _ 19 amod _ _ 19 returns _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Intel _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 reached _ VERB VBD _ 3 ccomp _ _ 6 an _ DET DT _ 7 det _ _ 7 agreement _ NOUN NN _ 5 dobj _ _ 8 with _ ADP IN _ 12 case _ _ 9 Alliant _ PROPN NNP _ 12 compound _ _ 10 Computer _ PROPN NNP _ 12 compound _ _ 11 Systems _ PROPN NNPS _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 7 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 develop _ VERB VB _ 7 acl _ _ 15 software _ NOUN NN _ 16 compound _ _ 16 standards _ NOUN NNS _ 14 dobj _ _ 17 for _ ADP IN _ 21 case _ _ 18 Intel _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 i860 _ NOUN NN _ 21 compound _ _ 21 microprocessor _ NOUN NN _ 14 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 i860 _ NOUN NN _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 introduced _ VERB VBN _ 2 acl _ _ 5 earlier _ ADV RBR _ 7 advmod _ _ 6 this _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 4 nmod:tmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 Intel _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 entry _ NOUN NN _ 0 root _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 crowded _ VERB JJ _ 16 amod _ _ 16 market _ NOUN NN _ 12 nmod _ _ 17 for _ ADP IN _ 26 case _ _ 18 reduced _ VERB VBN _ 26 amod _ _ 19 instruction _ NOUN NN _ 26 compound _ _ 20 set _ NOUN NN _ 26 compound _ _ 21 computing _ VERB NN _ 26 amod _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 or _ CONJ CC _ 24 cc _ _ 24 RISC _ PROPN NNP _ 26 dep _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 computers _ NOUN NNS _ 16 nmod _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 Intel _ PROPN NNP _ 13 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 based _ VERB VBN _ 1 acl _ _ 4 in _ ADP IN _ 6 case _ _ 5 Santa _ PROPN NNP _ 6 compound _ _ 6 Clara _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Calif. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 market _ NOUN NN _ 13 compound _ _ 13 leader _ NOUN NN _ 0 root _ _ 14 for _ ADP IN _ 16 case _ _ 15 traditional _ ADJ JJ _ 16 amod _ _ 16 microprocessors _ NOUN NNS _ 13 nmod _ _ 17 with _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 8086 _ NUM CD _ 20 nummod _ _ 20 family _ NOUN NN _ 16 nmod _ _ 21 that _ PRON WDT _ 22 nsubj _ _ 22 forms _ VERB VBZ _ 20 acl:relcl _ _ 23 the _ DET DT _ 24 det _ _ 24 heart _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 28 case _ _ 26 IBM-compatible _ ADJ JJ _ 28 amod _ _ 27 personal _ ADJ JJ _ 28 amod _ _ 28 computers _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Intel _ PROPN NNP _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 invest _ VERB VB _ 0 root _ _ 8 $ _ SYM $ _ 7 dobj _ _ 9 3 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 to _ PART TO _ 12 mark _ _ 12 acquire _ VERB VB _ 7 advcl _ _ 13 a _ DET DT _ 16 det _ _ 14 4 _ NUM CD _ 15 compound _ _ 15 % _ SYM NN _ 16 amod _ _ 16 stake _ NOUN NN _ 12 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 Alliant _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 a _ DET DT _ 21 det _ _ 21 maker _ NOUN NN _ 18 appos _ _ 22 of _ ADP IN _ 23 case _ _ 23 minisupercomputers _ NOUN NNS _ 21 nmod _ _ 24 for _ ADP IN _ 25 case _ _ 25 scientists _ NOUN NNS _ 23 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 engineers _ NOUN NNS _ 25 conj _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 Alliant _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 based _ VERB VBN _ 1 acl _ _ 4 in _ ADP IN _ 5 case _ _ 5 Littleton _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mass. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 license _ VERB VB _ 0 root _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 parallel-computing _ ADJ JJ _ 13 amod _ _ 13 technologies _ NOUN NNS _ 10 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 Intel _ PROPN NNP _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 providing _ VERB VBG _ 10 advcl _ _ 18 users _ NOUN NNS _ 17 iobj _ _ 19 a _ DET DT _ 20 det _ _ 20 way _ NOUN NN _ 17 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 let _ VERB VB _ 20 acl _ _ 23 many _ ADJ JJ _ 25 amod _ _ 24 i860 _ NOUN JJ _ 25 compound _ _ 25 microprocessors _ NOUN NNS _ 30 nsubj _ _ 26 in _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 single _ ADJ JJ _ 29 amod _ _ 29 computer _ NOUN NN _ 25 nmod _ _ 30 work _ VERB NN _ 22 ccomp _ _ 31 on _ ADP IN _ 33 case _ _ 32 a _ DET DT _ 33 det _ _ 33 problem _ NOUN NN _ 30 nmod _ _ 34 simultaneously _ ADV RB _ 30 advmod _ _ 35 . _ PUNCT . _ 10 punct _ _ 1 Alliant _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 plans _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 use _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 microprocessor _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 future _ ADJ JJ _ 11 amod _ _ 11 products _ NOUN NNS _ 6 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 discuss _ VERB VB _ 2 xcomp _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 plans _ NOUN NNS _ 4 dobj _ _ 7 for _ SCONJ IN _ 8 mark _ _ 8 upgrading _ VERB VBG _ 6 acl _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 current _ ADJ JJ _ 12 amod _ _ 11 product _ NOUN NN _ 12 compound _ _ 12 line _ NOUN NN _ 8 dobj _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Omnicare _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 intends _ VERB VBZ _ 2 acl:relcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 expand _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 position _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 15 case _ _ 11 the _ DET DT _ 15 det _ _ 12 medical _ ADJ JJ _ 15 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 dental _ ADJ JJ _ 12 conj _ _ 15 markets _ NOUN NNS _ 9 nmod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 it _ PRON PRP _ 19 nsubj _ _ 19 acquired _ VERB VBD _ 17 ccomp _ _ 20 a _ DET DT _ 21 det _ _ 21 cotton _ NOUN NN _ 19 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 gauze _ NOUN NN _ 25 compound _ _ 24 products _ NOUN NNS _ 25 compound _ _ 25 division _ NOUN NN _ 21 conj _ _ 26 from _ ADP IN _ 31 case _ _ 27 closely _ ADV RB _ 28 advmod _ _ 28 held _ VERB VBN _ 31 amod _ _ 29 Sterile _ PROPN NNP _ 31 compound _ _ 30 Products _ PROPN NNPS _ 31 compound _ _ 31 Corp. _ PROPN NNP _ 19 nmod _ _ 32 for _ ADP IN _ 33 case _ _ 33 $ _ SYM $ _ 19 nmod _ _ 34 8.2 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 17 punct _ _ 1 Omnicare _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 division _ NOUN NN _ 8 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 add _ VERB VB _ 4 ccomp _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 substantial _ ADJ JJ _ 12 amod _ _ 11 sales _ NOUN NNS _ 12 compound _ _ 12 volume _ NOUN NN _ 8 dobj _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 8 conj _ _ 16 a _ DET DT _ 18 det _ _ 17 positive _ ADJ JJ _ 18 amod _ _ 18 contribution _ NOUN NN _ 15 dobj _ _ 19 to _ ADP TO _ 21 case _ _ 20 our _ PRON PRP$ _ 21 nmod:poss _ _ 21 earnings _ NOUN NNS _ 18 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 1990 _ NUM CD _ 15 dep _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 beyond _ ADP IN _ 23 conj _ _ 26 . _ PUNCT . _ 2 punct _ _ 27 '' _ PUNCT '' _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1988 _ NUM CD _ 6 nmod _ _ 3 the _ DET DT _ 5 det _ _ 4 Cincinnati _ PROPN NNP _ 5 compound _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 earned _ VERB VBD _ 0 root _ _ 7 $ _ SYM $ _ 6 dobj _ _ 8 3.1 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 or _ CONJ CC _ 7 cc _ _ 12 32 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 7 conj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 on _ ADP IN _ 18 case _ _ 18 revenue _ NOUN NN _ 6 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 18 nmod _ _ 21 148.5 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Omnicare _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 division _ NOUN NN _ 5 nsubj _ _ 5 operates _ VERB VBZ _ 2 ccomp _ _ 6 under _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 trade _ NOUN NN _ 10 compound _ _ 9 name _ NOUN NN _ 10 compound _ _ 10 ACCO _ PROPN NNP _ 5 nmod _ _ 11 and _ CONJ CC _ 5 cc _ _ 12 supplies _ VERB VBZ _ 5 conj _ _ 13 the _ DET DT _ 17 det _ _ 14 medical _ ADJ JJ _ 17 amod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 dental _ ADJ JJ _ 14 conj _ _ 17 markets _ NOUN NNS _ 12 dobj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 business _ NOUN NN _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 St. _ PROPN NNP _ 7 compound _ _ 7 Louis _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 had _ VERB VBD _ 26 ccomp _ _ 10 sales _ NOUN NNS _ 9 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 more _ ADJ JJR _ 14 advmod _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 $ _ SYM $ _ 10 nmod _ _ 15 14 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 fiscal _ ADJ JJ _ 20 amod _ _ 20 year _ NOUN NN _ 9 nmod _ _ 21 ended _ VERB VBD _ 20 acl _ _ 22 March _ PROPN NNP _ 21 nmod:tmod _ _ 23 31 _ NUM CD _ 22 nummod _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 Omnicare _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Burmah _ PROPN NNP _ 3 compound _ _ 2 Oil _ PROPN NNP _ 3 compound _ _ 3 PLC _ PROPN NNP _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 8 det _ _ 6 British _ PROPN JJ _ 8 compound _ _ 7 independent _ ADJ JJ _ 8 amod _ _ 8 oil _ NOUN NN _ 3 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 specialty _ NOUN NN _ 13 compound _ _ 11 chemicals _ NOUN NNS _ 13 compound _ _ 12 marketing _ NOUN VBG _ 13 compound _ _ 13 concern _ NOUN NN _ 8 conj _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 SHV _ PROPN NNP _ 18 compound _ _ 17 Holdings _ PROPN NNP _ 18 compound _ _ 18 N.V. _ PROPN NNP _ 23 nsubj _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 Netherlands _ PROPN NNP _ 18 nmod _ _ 22 has _ AUX VBZ _ 23 aux _ _ 23 built _ VERB VBN _ 15 ccomp _ _ 24 up _ ADP RP _ 23 compound:prt _ _ 25 a _ DET DT _ 28 det _ _ 26 6.7 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 28 amod _ _ 28 stake _ NOUN NN _ 23 dobj _ _ 29 in _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 company _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 15 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Alexander _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 Burmah _ PROPN NNP _ 6 compound _ _ 6 spokesman _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 SHV _ PROPN NNP _ 12 nsubj _ _ 10 had _ AUX VBD _ 12 aux _ _ 11 previously _ ADV RB _ 12 advmod _ _ 12 owned _ VERB VBN _ 8 ccomp _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 a _ DET DT _ 17 advmod _ _ 15 little _ ADJ JJ _ 17 advmod _ _ 16 under _ ADP IN _ 17 advmod _ _ 17 5 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 12 dobj _ _ 19 '' _ PUNCT '' _ 18 punct _ _ 20 of _ ADP IN _ 21 case _ _ 21 Burmah _ PROPN NNP _ 18 nmod _ _ 22 for _ ADP IN _ 25 case _ _ 23 about _ ADV IN _ 24 advmod _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 years _ NOUN NNS _ 12 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Dutch _ PROPN JJ _ 3 compound _ _ 3 company _ NOUN NN _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 notified _ VERB VBN _ 17 ccomp _ _ 7 Burmah _ PROPN NNP _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 reason _ NOUN NN _ 6 nmod _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 increasing _ VERB VBG _ 10 acl _ _ 13 the _ DET DT _ 14 det _ _ 14 stake _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 SHV _ PROPN NNP _ 23 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 6 nsubj _ _ 4 last _ ADJ JJ _ 5 amod _ _ 5 year _ NOUN NN _ 6 dep _ _ 6 merged _ VERB VBD _ 1 acl:relcl _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 North _ PROPN NNP _ 10 compound _ _ 9 Sea _ PROPN NNP _ 10 compound _ _ 10 oil _ NOUN NN _ 6 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 gas _ NOUN NN _ 13 compound _ _ 13 operations _ NOUN NNS _ 10 conj _ _ 14 with _ ADP IN _ 15 case _ _ 15 those _ PRON DT _ 6 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 Calor _ PROPN NNP _ 19 compound _ _ 18 Group _ PROPN NNP _ 19 compound _ _ 19 PLC _ PROPN NNP _ 15 nmod _ _ 20 , _ PUNCT , _ 1 punct _ _ 21 has _ AUX VBZ _ 23 aux _ _ 22 been _ AUX VBN _ 23 auxpass _ _ 23 pegged _ VERB VBN _ 0 root _ _ 24 by _ ADP IN _ 25 case _ _ 25 speculators _ NOUN NNS _ 23 nmod _ _ 26 as _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 possible _ ADJ JJ _ 29 amod _ _ 29 suitor _ NOUN NN _ 23 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 Burmah _ PROPN NNP _ 32 compound _ _ 32 Oil _ PROPN NNP _ 29 nmod _ _ 33 in _ ADP IN _ 35 case _ _ 34 recent _ ADJ JJ _ 35 amod _ _ 35 weeks _ NOUN NNS _ 23 nmod _ _ 36 . _ PUNCT . _ 23 punct _ _ 1 SHV _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 owns _ VERB VBZ _ 0 root _ _ 4 40 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 Calor _ PROPN NNP _ 5 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Burmah _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 owns _ VERB VBZ _ 1 acl:relcl _ _ 5 the _ DET DT _ 7 det _ _ 6 Castrol _ PROPN NNP _ 7 compound _ _ 7 brand _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 lubricant _ ADJ NN _ 10 amod _ _ 10 oils _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 reported _ VERB VBD _ 0 root _ _ 13 a _ DET DT _ 16 det _ _ 14 17 _ NUM CD _ 15 compound _ _ 15 % _ SYM NN _ 16 amod _ _ 16 rise _ NOUN NN _ 12 dobj _ _ 17 in _ ADP IN _ 19 case _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 income _ NOUN NN _ 16 nmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 # _ SYM # _ 23 compound _ _ 22 43.5 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 16 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 25 punct _ _ 25 $ _ SYM $ _ 23 dep _ _ 26 68.3 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 -RRB- _ PUNCT -RRB- _ 25 punct _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 first _ ADJ JJ _ 32 amod _ _ 32 half _ NOUN NN _ 16 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 J.P. _ PROPN NNP _ 3 compound _ _ 2 Industries _ PROPN NNPS _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 signed _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 definitive _ ADJ JJ _ 9 amod _ _ 9 agreement _ NOUN NN _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 9 acl _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 Builders _ PROPN NNS _ 16 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 Hardware _ PROPN NNP _ 16 compound _ _ 16 Group _ PROPN NNP _ 11 dobj _ _ 17 to _ ADP TO _ 21 case _ _ 18 closely _ ADV RB _ 19 advmod _ _ 19 held _ VERB JJ _ 21 amod _ _ 20 Nalcor _ PROPN NNP _ 21 compound _ _ 21 Inc. _ PROPN NNP _ 11 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 Beverly _ PROPN NNP _ 24 compound _ _ 24 Hills _ PROPN NNP _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Calif _ PROPN NNP _ 24 appos _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 but _ CONJ CC _ 4 cc _ _ 7 a _ DET DT _ 10 det _ _ 8 J.P. _ PROPN NNP _ 10 compound _ _ 9 Industries _ PROPN NNP _ 10 compound _ _ 10 spokesman _ NOUN NN _ 11 nsubj _ _ 11 said _ VERB VBD _ 4 conj _ _ 12 the _ DET DT _ 13 det _ _ 13 amount _ NOUN NN _ 25 nsubj _ _ 14 J.P. _ PROPN NNP _ 15 compound _ _ 15 Industries _ PROPN NNP _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 get _ VERB VB _ 13 acl:relcl _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 group _ NOUN NN _ 17 nmod _ _ 21 is _ VERB VBZ _ 25 cop _ _ 22 `` _ PUNCT `` _ 25 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 little _ ADV RB _ 25 nmod:npmod _ _ 25 better _ ADV JJR _ 11 dep _ _ 26 than _ SCONJ IN _ 27 mark _ _ 27 expected _ VERB VBN _ 25 ccomp _ _ 28 by _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 marketplace _ NOUN NN _ 27 nmod _ _ 31 , _ PUNCT , _ 25 punct _ _ 32 and _ CONJ CC _ 25 cc _ _ 33 the _ DET DT _ 34 det _ _ 34 marketplace _ NOUN NN _ 37 nsubj _ _ 35 had _ AUX VBD _ 37 aux _ _ 36 been _ AUX VBN _ 37 aux _ _ 37 expecting _ VERB VBG _ 25 conj _ _ 38 $ _ SYM $ _ 42 dep _ _ 39 25 _ NUM CD _ 42 compound _ _ 40 million _ NUM CD _ 42 compound _ _ 41 to _ ADP TO _ 42 dep _ _ 42 $ _ SYM $ _ 37 dobj _ _ 43 30 _ NUM CD _ 44 compound _ _ 44 million _ NUM CD _ 42 nummod _ _ 45 . _ PUNCT . _ 4 punct _ _ 46 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 3 nsubj _ _ 3 consists _ VERB VBZ _ 0 root _ _ 4 of _ ADP IN _ 6 case _ _ 5 Weslock _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 JPI _ PROPN NNP _ 10 compound _ _ 9 Modern _ PROPN NNP _ 10 compound _ _ 10 Inc _ PROPN NNP _ 6 conj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Industries _ PROPN NNPS _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 based _ VERB VBN _ 2 acl:relcl _ _ 7 in _ ADP IN _ 9 case _ _ 8 Ann _ PROPN NNP _ 9 compound _ _ 9 Arbor _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Mich. _ PROPN NNP _ 9 appos _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 sale _ NOUN NN _ 16 nsubj _ _ 16 completes _ VERB VBZ _ 13 ccomp _ _ 17 a _ DET DT _ 20 det _ _ 18 previously _ ADV RB _ 19 advmod _ _ 19 announced _ VERB VBN _ 20 amod _ _ 20 program _ NOUN NN _ 16 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 divest _ VERB VB _ 20 acl _ _ 23 itself _ PRON PRP _ 22 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 hardware _ NOUN NN _ 22 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 plumbing _ NOUN NN _ 30 compound _ _ 29 supplies _ NOUN NNS _ 30 compound _ _ 30 operations _ NOUN NNS _ 26 conj _ _ 31 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 remaining _ ADJ VBG _ 5 amod _ _ 5 business _ NOUN NN _ 8 nsubj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 manufacture _ NOUN NN _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 sale _ NOUN NN _ 8 conj _ _ 11 of _ ADP IN _ 15 case _ _ 12 engine _ NOUN NN _ 15 compound _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 transmissions _ NOUN NNS _ 12 conj _ _ 15 products _ NOUN NNS _ 8 nmod _ _ 16 for _ ADP IN _ 20 case _ _ 17 industrial _ ADJ JJ _ 20 amod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 transportation _ NOUN NN _ 17 conj _ _ 20 applications _ NOUN NNS _ 15 nmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 Citing _ VERB VBG _ 15 advcl _ _ 2 a _ DET DT _ 6 det _ _ 3 $ _ SYM $ _ 6 amod _ _ 4 3.1 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 provision _ NOUN NN _ 1 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 doubtful _ ADJ JJ _ 9 amod _ _ 9 accounts _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 Dallas-based _ ADJ JJ _ 14 amod _ _ 12 National _ PROPN NNP _ 14 compound _ _ 13 Heritage _ PROPN NNP _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 15 nsubj _ _ 15 posted _ VERB VBD _ 0 root _ _ 16 a _ DET DT _ 17 det _ _ 17 loss _ NOUN NN _ 15 dobj _ _ 18 for _ ADP IN _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 fourth _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 17 nmod _ _ 22 ended _ VERB VBD _ 21 acl _ _ 23 June _ PROPN NNP _ 22 nmod:tmod _ _ 24 30 _ NUM CD _ 23 nummod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 unit _ NOUN NN _ 16 ccomp _ _ 3 of _ ADP IN _ 6 case _ _ 4 troubled _ VERB JJ _ 6 amod _ _ 5 Southmark _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 16 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 operator _ NOUN NN _ 16 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 nursing _ NOUN NN _ 12 compound _ _ 12 homes _ NOUN NNS _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 retirement _ NOUN NN _ 15 compound _ _ 15 centers _ NOUN NNS _ 12 conj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 sustained _ VERB VBD _ 16 ccomp _ _ 19 a _ DET DT _ 21 det _ _ 20 net _ ADJ JJ _ 21 amod _ _ 21 loss _ NOUN NN _ 18 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 1.6 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 nine _ NUM CD _ 29 nummod _ _ 29 cents _ NOUN NNS _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 compared _ VERB VBN _ 36 case _ _ 34 with _ ADP IN _ 36 case _ _ 35 net _ ADJ JJ _ 36 amod _ _ 36 income _ NOUN NN _ 18 advcl _ _ 37 of _ ADP IN _ 38 case _ _ 38 $ _ SYM $ _ 36 nmod _ _ 39 1.3 _ NUM CD _ 40 compound _ _ 40 million _ NUM CD _ 38 nummod _ _ 41 , _ PUNCT , _ 38 punct _ _ 42 or _ CONJ CC _ 38 cc _ _ 43 eight _ NUM CD _ 44 nummod _ _ 44 cents _ NOUN NNS _ 38 conj _ _ 45 a _ DET DT _ 46 det _ _ 46 share _ NOUN NN _ 44 nmod:npmod _ _ 47 , _ PUNCT , _ 38 punct _ _ 48 a _ DET DT _ 49 det _ _ 49 year _ NOUN NN _ 50 nmod:npmod _ _ 50 earlier _ ADV RBR _ 38 advmod _ _ 51 . _ PUNCT . _ 16 punct _ _ 1 Operating _ NOUN VBG _ 2 compound _ _ 2 revenue _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 13 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 3 nmod _ _ 8 22.2 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 from _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 3 nmod _ _ 12 19.7 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 year-earlier _ ADJ JJ _ 17 amod _ _ 17 quarter _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 3.1 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 reserve _ NOUN NN _ 10 nsubjpass _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 created _ VERB VBN _ 3 ccomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 reflect _ VERB VB _ 10 xcomp _ _ 13 doubt _ NOUN NN _ 12 dobj _ _ 14 about _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 collectability _ NOUN NN _ 13 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 receivables _ NOUN NN _ 16 nmod _ _ 19 owed _ VERB VBN _ 18 acl _ _ 20 to _ ADP TO _ 22 case _ _ 21 National _ PROPN NNP _ 22 compound _ _ 22 Heritage _ PROPN NNP _ 19 nmod _ _ 23 by _ ADP IN _ 24 case _ _ 24 some _ DET DT _ 19 nmod _ _ 25 of _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 real _ ADJ JJ _ 29 amod _ _ 28 estate _ NOUN NN _ 29 compound _ _ 29 partnerships _ NOUN NNS _ 24 nmod _ _ 30 it _ PRON PRP _ 31 nsubj _ _ 31 manages _ VERB VBZ _ 29 acl:relcl _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 expenses _ NOUN NNS _ 20 nsubjpass _ _ 6 incurred _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 previous _ ADJ JJ _ 10 amod _ _ 10 board _ NOUN NN _ 6 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 management _ NOUN NN _ 10 conj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 recent _ ADJ JJ _ 16 amod _ _ 16 contest _ NOUN NN _ 6 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 control _ NOUN NN _ 16 nmod _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 recognized _ VERB VBN _ 4 ccomp _ _ 21 primarily _ ADV RB _ 20 advmod _ _ 22 in _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 first _ ADJ JJ _ 25 amod _ _ 25 quarter _ NOUN NN _ 20 nmod _ _ 26 ended _ VERB VBN _ 25 acl _ _ 27 Sept. _ PROPN NNP _ 26 nmod:tmod _ _ 28 30 _ NUM CD _ 27 nummod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 National _ PROPN NNP _ 3 compound _ _ 2 Heritage _ PROPN NNP _ 3 compound _ _ 3 stock _ NOUN NN _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 12.5 _ NUM CD _ 6 nummod _ _ 6 cents _ NOUN NNS _ 4 dobj _ _ 7 yesterday _ NOUN NN _ 4 nmod:tmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 close _ VERB VB _ 4 advcl _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 1.375 _ NUM CD _ 9 nmod _ _ 13 a _ DET DT _ 14 det _ _ 14 share _ NOUN NN _ 12 nmod:npmod _ _ 15 in _ ADP IN _ 21 case _ _ 16 New _ PROPN NNP _ 21 compound _ _ 17 York _ PROPN NNP _ 21 compound _ _ 18 Stock _ PROPN NNP _ 21 compound _ _ 19 Exchange _ PROPN NNP _ 21 compound _ _ 20 composite _ ADJ JJ _ 21 amod _ _ 21 trading _ NOUN NN _ 9 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 United _ PROPN NNP _ 6 compound _ _ 2 Biscuits _ PROPN NNPS _ 6 compound _ _ 3 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 4 Holdings _ PROPN NNS _ 6 compound _ _ 5 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 6 PLC _ PROPN NNP _ 13 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 11 det _ _ 9 British _ ADJ JJ _ 11 amod _ _ 10 food _ NOUN NN _ 11 compound _ _ 11 producer _ NOUN NN _ 6 appos _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 announced _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 creation _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 European _ ADJ JJ _ 19 amod _ _ 19 group _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 bring _ VERB VB _ 19 acl _ _ 22 together _ ADV RB _ 21 advmod _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 trading _ NOUN NN _ 25 compound _ _ 25 interests _ NOUN NNS _ 21 dobj _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 region _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 comprise _ VERB VB _ 0 root _ _ 6 all _ DET DT _ 5 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 United _ PROPN NNP _ 9 compound _ _ 9 Biscuit _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 manufacturing _ NOUN NN _ 6 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 marketing _ NOUN NN _ 14 compound _ _ 14 operations _ NOUN NNS _ 11 conj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 food _ NOUN NN _ 18 compound _ _ 18 sector _ NOUN NN _ 11 nmod _ _ 19 apart _ ADV RB _ 11 advmod _ _ 20 from _ ADP IN _ 21 case _ _ 21 those _ PRON DT _ 19 nmod _ _ 22 based _ VERB VBN _ 21 acl _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.S. _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 United _ PROPN NNP _ 2 compound _ _ 2 Biscuits _ PROPN NNPS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 combined _ VERB JJ _ 6 amod _ _ 6 group _ NOUN NN _ 22 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 include _ VERB VB _ 6 acl:relcl _ _ 11 businesses _ NOUN NNS _ 10 dobj _ _ 12 such _ ADJ JJ _ 15 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 McVities _ PROPN NNP _ 15 compound _ _ 15 biscuits _ NOUN NNS _ 11 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Terry _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 confectionery _ NOUN NN _ 15 conj _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 will _ AUX MD _ 22 aux _ _ 22 have _ VERB VB _ 3 ccomp _ _ 23 annual _ ADJ JJ _ 24 amod _ _ 24 sales _ NOUN NNS _ 22 dobj _ _ 25 of _ ADP IN _ 30 case _ _ 26 more _ ADJ JJR _ 30 advmod _ _ 27 than _ ADP IN _ 26 mwe _ _ 28 # _ SYM # _ 30 compound _ _ 29 1.5 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 24 nmod _ _ 31 -LRB- _ PUNCT -LRB- _ 32 punct _ _ 32 $ _ SYM $ _ 30 dep _ _ 33 2.35 _ NUM CD _ 34 compound _ _ 34 billion _ NUM CD _ 32 nummod _ _ 35 -RRB- _ PUNCT -RRB- _ 32 punct _ _ 36 and _ CONJ CC _ 24 cc _ _ 37 trading _ NOUN NN _ 38 compound _ _ 38 profit _ NOUN NN _ 24 conj _ _ 39 of _ ADP IN _ 44 case _ _ 40 more _ ADJ JJR _ 44 advmod _ _ 41 than _ ADP IN _ 40 mwe _ _ 42 # _ SYM # _ 44 compound _ _ 43 160 _ NUM CD _ 44 compound _ _ 44 million _ NUM CD _ 38 nmod _ _ 45 -LRB- _ PUNCT -LRB- _ 46 punct _ _ 46 $ _ SYM $ _ 44 dep _ _ 47 251 _ NUM CD _ 48 compound _ _ 48 million _ NUM CD _ 46 nummod _ _ 49 -RRB- _ PUNCT -RRB- _ 46 punct _ _ 50 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 structure _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 enable _ VERB VB _ 22 dep _ _ 7 United _ PROPN NNP _ 8 compound _ _ 8 Biscuits _ PROPN NNPS _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 focus _ VERB VB _ 6 xcomp _ _ 11 clearly _ ADV RB _ 10 advmod _ _ 12 upon _ ADP IN _ 13 case _ _ 13 opportunities _ NOUN NNS _ 10 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 planned _ VERB JJ _ 16 amod _ _ 16 growth _ NOUN NN _ 13 nmod _ _ 17 during _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 1990s _ NOUN CD _ 16 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 '' _ PUNCT '' _ 6 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Bob _ PROPN NNP _ 24 compound _ _ 24 Clarke _ PROPN NNP _ 22 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 deputy _ ADJ NN _ 27 amod _ _ 27 chairman _ NOUN NN _ 24 appos _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 group _ NOUN NN _ 31 compound _ _ 30 chief _ ADJ JJ _ 31 amod _ _ 31 executive _ NOUN NN _ 27 conj _ _ 32 . _ PUNCT . _ 22 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 month _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 United _ PROPN NNP _ 5 compound _ _ 5 Biscuits _ PROPN NNPS _ 6 nsubj _ _ 6 agreed _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 sell _ VERB VB _ 6 xcomp _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 entire _ ADJ JJ _ 12 amod _ _ 11 restaurant _ NOUN NN _ 12 compound _ _ 12 operations _ NOUN NNS _ 8 dobj _ _ 13 to _ ADP TO _ 16 case _ _ 14 Grand _ PROPN NNP _ 16 compound _ _ 15 Metropolitan _ PROPN NNP _ 16 compound _ _ 16 PLC _ PROPN NNP _ 8 nmod _ _ 17 for _ ADP IN _ 20 case _ _ 18 # _ SYM # _ 20 compound _ _ 19 180 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 8 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 An _ DET DT _ 3 det _ _ 2 American _ ADJ JJ _ 3 amod _ _ 3 journalist _ NOUN NN _ 6 nsubj _ _ 4 now _ ADV RB _ 6 advmod _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 standing _ VERB VBG _ 0 root _ _ 7 trial _ NOUN NN _ 6 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Namibia _ PROPN NNP _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 the _ DET DT _ 4 det _ _ 4 place _ NOUN NN _ 0 root _ _ 5 that _ DET WDT _ 10 nmod _ _ 6 world _ NOUN NN _ 7 compound _ _ 7 opinion _ NOUN NN _ 10 nsubj _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 aux _ _ 10 celebrating _ VERB VBG _ 4 acl:relcl _ _ 11 over _ ADP IN _ 5 case _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 expectation _ NOUN NN _ 10 nmod _ _ 15 that _ SCONJ IN _ 18 mark _ _ 16 it _ PRON PRP _ 18 nsubj _ _ 17 's _ AUX VBZ _ 18 aux _ _ 18 going _ VERB VBG _ 14 ccomp _ _ 19 to _ PART TO _ 20 mark _ _ 20 hold _ VERB VB _ 18 xcomp _ _ 21 an _ DET DT _ 22 det _ _ 22 election _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 likely _ ADJ JJ _ 4 amod _ _ 4 winner _ NOUN NN _ 10 nsubj _ _ 5 will _ AUX MD _ 10 aux _ _ 6 be _ VERB VB _ 10 cop _ _ 7 the _ DET DT _ 10 det _ _ 8 Marxist-dominated _ ADJ JJ _ 10 amod _ _ 9 SWAPO _ PROPN NNP _ 10 compound _ _ 10 rebels _ NOUN NNS _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 U.S. _ PROPN NNP _ 3 compound _ _ 3 journalist _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 crime _ NOUN NN _ 9 nsubj _ _ 7 '' _ PUNCT '' _ 6 punct _ _ 8 was _ AUX VBD _ 9 aux _ _ 9 writing _ VERB VBG _ 0 root _ _ 10 that _ SCONJ IN _ 29 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 head _ NOUN NN _ 29 nsubj _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 commission _ NOUN NN _ 12 nmod _ _ 16 charged _ VERB VBN _ 12 acl _ _ 17 with _ SCONJ IN _ 18 mark _ _ 18 overseeing _ VERB VBG _ 16 advcl _ _ 19 the _ DET DT _ 20 det _ _ 20 election _ NOUN NN _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 fairness _ NOUN NN _ 18 dobj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 Bryan _ PROPN NNP _ 25 compound _ _ 25 O'Linn _ PROPN NNP _ 12 appos _ _ 26 , _ PUNCT , _ 12 punct _ _ 27 was _ VERB VBD _ 29 cop _ _ 28 openly _ ADV RB _ 29 advmod _ _ 29 sympathetic _ ADJ JJ _ 9 ccomp _ _ 30 to _ ADP TO _ 31 case _ _ 31 SWAPO _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 Shortly _ ADV RB _ 3 advmod _ _ 2 after _ ADP IN _ 3 case _ _ 3 that _ PRON DT _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 O'Linn _ PROPN NNP _ 7 nsubj _ _ 7 had _ VERB VBD _ 0 root _ _ 8 Scott _ PROPN NNP _ 9 compound _ _ 9 Stanley _ PROPN NNP _ 10 nsubj _ _ 10 arrested _ VERB VBN _ 7 xcomp _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 passport _ NOUN NN _ 14 nsubj _ _ 14 confiscated _ VERB VBN _ 10 conj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 on _ ADP IN _ 5 case _ _ 5 trial _ NOUN NN _ 0 root _ _ 6 over _ ADP IN _ 7 case _ _ 7 charges _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 violated _ VERB VBD _ 7 ccomp _ _ 11 a _ DET DT _ 12 det _ _ 12 proclamation _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 issued _ VERB VBN _ 12 acl _ _ 15 by _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 South _ ADJ JJ _ 18 amod _ _ 18 African _ ADJ JJ _ 20 amod _ _ 19 administrator _ NOUN NN _ 20 compound _ _ 20 general _ NOUN JJ _ 14 nmod _ _ 21 earlier _ ADV RBR _ 23 advmod _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 14 nmod:tmod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 which _ PRON WDT _ 26 nsubj _ _ 26 made _ VERB VBD _ 12 acl:relcl _ _ 27 it _ PRON PRP _ 41 nsubj _ _ 28 a _ DET DT _ 29 det _ _ 29 crime _ NOUN NN _ 41 dep _ _ 30 punishable _ ADJ JJ _ 29 amod _ _ 31 by _ ADP IN _ 33 case _ _ 32 two _ NUM CD _ 33 nummod _ _ 33 years _ NOUN NNS _ 30 nmod _ _ 34 in _ ADP IN _ 35 case _ _ 35 prison _ NOUN NN _ 33 nmod _ _ 36 for _ SCONJ IN _ 41 mark _ _ 37 any _ DET DT _ 38 det _ _ 38 person _ NOUN NN _ 41 nsubj _ _ 39 to _ PART TO _ 41 mark _ _ 40 `` _ PUNCT `` _ 41 punct _ _ 41 insult _ VERB NN _ 26 xcomp _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 disparate _ ADJ JJ _ 41 conj _ _ 44 or _ CONJ CC _ 41 cc _ _ 45 belittle _ VERB JJ _ 41 conj _ _ 46 '' _ PUNCT '' _ 41 punct _ _ 47 the _ DET DT _ 49 det _ _ 48 election _ NOUN NN _ 49 compound _ _ 49 commission _ NOUN NN _ 41 conj _ _ 50 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Stanley _ PROPN NNP _ 3 compound _ _ 3 affair _ NOUN NN _ 6 nsubj _ _ 4 does _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 bode _ VERB VB _ 0 root _ _ 7 well _ ADV RB _ 6 advmod _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 future _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 democracy _ NOUN NN _ 10 nmod _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 freedom _ NOUN NN _ 12 conj _ _ 15 of _ ADP IN _ 16 case _ _ 16 anything _ NOUN NN _ 14 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Namibia _ PROPN NNP _ 12 nmod _ _ 19 when _ ADV WRB _ 21 advmod _ _ 20 SWAPO _ PROPN NNP _ 21 nsubj _ _ 21 starts _ VERB VBZ _ 6 advcl _ _ 22 running _ VERB VBG _ 21 xcomp _ _ 23 the _ DET DT _ 24 det _ _ 24 government _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 extent _ NOUN NN _ 13 nmod _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Stanley _ PROPN NNP _ 7 nsubj _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 done _ VERB VBN _ 3 ccomp _ _ 8 anything _ NOUN NN _ 7 dobj _ _ 9 wrong _ ADJ JJ _ 8 amod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 may _ AUX MD _ 13 aux _ _ 13 be _ VERB VB _ 0 root _ _ 14 that _ SCONJ IN _ 19 mark _ _ 15 he _ PRON PRP _ 19 nsubj _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 out _ ADP IN _ 19 case _ _ 18 of _ ADP IN _ 19 case _ _ 19 step _ NOUN NN _ 13 ccomp _ _ 20 with _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 consensus _ NOUN NN _ 19 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 world _ NOUN NN _ 25 compound _ _ 25 intellectuals _ NOUN NNS _ 22 nmod _ _ 26 that _ SCONJ IN _ 35 mark _ _ 27 the _ DET DT _ 29 det _ _ 28 Namibian _ ADJ JJ _ 29 amod _ _ 29 guerrillas _ NOUN NNS _ 35 nsubj _ _ 30 were _ VERB VBD _ 35 cop _ _ 31 above _ ADP IN _ 33 case _ _ 32 all _ DET DT _ 33 det _ _ 33 else _ ADV RB _ 35 nmod _ _ 34 the _ DET DT _ 35 det _ _ 35 victims _ NOUN NNS _ 22 dep _ _ 36 of _ ADP IN _ 37 case _ _ 37 suppression _ NOUN NN _ 35 nmod _ _ 38 by _ ADP IN _ 41 case _ _ 39 neighboring _ ADJ VBG _ 41 amod _ _ 40 South _ PROPN NNP _ 41 compound _ _ 41 Africa _ PROPN NNP _ 37 nmod _ _ 42 . _ PUNCT . _ 13 punct _ _ 1 SWAPO _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 enjoyed _ VERB VBN _ 0 root _ _ 4 favorable _ ADJ JJ _ 7 amod _ _ 5 Western _ ADJ JJ _ 7 amod _ _ 6 media _ NOUN NNS _ 7 compound _ _ 7 treatment _ NOUN NN _ 3 dobj _ _ 8 ever _ ADV RB _ 14 advmod _ _ 9 since _ SCONJ IN _ 14 mark _ _ 10 the _ DET DT _ 13 det _ _ 11 U.N. _ PROPN NNP _ 13 compound _ _ 12 General _ PROPN NNP _ 13 compound _ _ 13 Assembly _ PROPN NNP _ 14 nsubj _ _ 14 declared _ VERB VBD _ 3 advcl _ _ 15 it _ PRON PRP _ 21 nsubj _ _ 16 the _ DET DT _ 21 det _ _ 17 `` _ PUNCT `` _ 21 punct _ _ 18 sole _ ADJ JJ _ 21 amod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 authentic _ ADJ JJ _ 21 amod _ _ 21 representative _ NOUN NN _ 14 xcomp _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 of _ ADP IN _ 26 case _ _ 24 Namibia _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 people _ NOUN NNS _ 21 nmod _ _ 27 in _ ADP IN _ 21 dep _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 year _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 6 nsubj _ _ 6 brokered _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 peace _ NOUN NN _ 9 compound _ _ 9 settlement _ NOUN NN _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 remove _ VERB VB _ 6 advcl _ _ 12 Cuba _ PROPN NNP _ 16 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 Afrika _ PROPN FW _ 16 compound _ _ 16 Korps _ PROPN FW _ 11 dobj _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 from _ ADP IN _ 19 case _ _ 19 Angola _ PROPN NNP _ 11 nmod _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 hold _ VERB VB _ 11 conj _ _ 22 `` _ PUNCT `` _ 27 punct _ _ 23 free _ ADJ JJ _ 27 amod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 fair _ ADJ JJ _ 23 conj _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 elections _ NOUN NNS _ 21 dobj _ _ 28 that _ PRON WDT _ 30 nsubj _ _ 29 would _ AUX MD _ 30 aux _ _ 30 end _ VERB VB _ 27 acl:relcl _ _ 31 South _ PROPN NNP _ 32 compound _ _ 32 Africa _ PROPN NNP _ 34 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 control _ NOUN NN _ 30 dobj _ _ 35 of _ ADP IN _ 36 case _ _ 36 Namibia _ PROPN NNP _ 34 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 elections _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 set _ VERB VBN _ 0 root _ _ 5 for _ ADP IN _ 6 case _ _ 6 Nov. _ PROPN NNP _ 4 nmod _ _ 7 7 _ NUM CD _ 6 nummod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 20 nmod _ _ 3 , _ PUNCT , _ 20 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Stanley _ PROPN NNP _ 20 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 editor _ NOUN NN _ 5 appos _ _ 8 of _ ADP IN _ 11 case _ _ 9 American _ PROPN NNP _ 11 compound _ _ 10 Press _ PROPN NNP _ 11 compound _ _ 11 International _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 a _ DET DT _ 18 det _ _ 14 Washington _ PROPN NNP _ 15 amod _ _ 15 D.C.-based _ ADJ JJ _ 18 amod _ _ 16 conservative _ ADJ JJ _ 18 amod _ _ 17 wire _ NOUN NN _ 18 compound _ _ 18 service _ NOUN NN _ 11 appos _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 visited _ VERB VBD _ 0 root _ _ 21 Namibia _ PROPN NNP _ 20 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 report _ VERB VB _ 20 advcl _ _ 24 on _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 U.N.-monitored _ ADJ JJ _ 28 amod _ _ 27 election _ NOUN NN _ 28 compound _ _ 28 campaign _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 interviewed _ VERB VBD _ 0 root _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 O'Linn _ PROPN NNP _ 2 dobj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 head _ NOUN NN _ 4 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 commission _ NOUN NN _ 6 nmod _ _ 10 charged _ VERB VBN _ 9 acl _ _ 11 with _ SCONJ IN _ 12 mark _ _ 12 investigating _ VERB VBG _ 10 advcl _ _ 13 electoral _ ADJ JJ _ 14 amod _ _ 14 intimidation _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 and _ CONJ CC _ 2 cc _ _ 17 reported _ VERB VBD _ 2 conj _ _ 18 that _ SCONJ IN _ 23 mark _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 O'Linn _ PROPN NNP _ 23 nsubj _ _ 21 was _ VERB VBD _ 23 cop _ _ 22 openly _ ADV RB _ 23 advmod _ _ 23 sympathetic _ ADJ JJ _ 17 ccomp _ _ 24 to _ ADP TO _ 25 case _ _ 25 SWAPO _ PROPN NNP _ 23 nmod _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 indeed _ ADV RB _ 29 advmod _ _ 28 had _ AUX VBD _ 29 aux _ _ 29 defended _ VERB VBN _ 23 conj _ _ 30 its _ PRON PRP$ _ 31 nmod:poss _ _ 31 leaders _ NOUN NNS _ 29 dobj _ _ 32 in _ ADP IN _ 33 case _ _ 33 court _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 After _ SCONJ IN _ 7 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Stanley _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 article _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 published _ VERB VBN _ 18 advcl _ _ 8 in _ ADP IN _ 11 case _ _ 9 two _ NUM CD _ 11 nummod _ _ 10 Namibian _ ADJ JJ _ 11 amod _ _ 11 newspapers _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 O'Linn _ PROPN NNP _ 18 nsubj _ _ 15 had _ AUX VBD _ 18 aux _ _ 16 criminal _ ADJ JJ _ 17 amod _ _ 17 charges _ NOUN NNS _ 18 dobj _ _ 18 brought _ VERB VBN _ 0 root _ _ 19 against _ ADP IN _ 21 case _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 editors _ NOUN NNS _ 18 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 publisher _ NOUN NN _ 21 conj _ _ 24 and _ CONJ CC _ 21 cc _ _ 25 lawyer _ NOUN NN _ 21 conj _ _ 26 . _ PUNCT . _ 18 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 arrested _ VERB VBN _ 0 root _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 charged _ VERB VBN _ 4 conj _ _ 7 along _ ADP RP _ 4 advmod _ _ 8 with _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 others _ NOUN NNS _ 7 nmod _ _ 11 when _ ADV WRB _ 13 advmod _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 returned _ VERB VBD _ 4 advcl _ _ 14 to _ ADP TO _ 15 case _ _ 15 Namibia _ PROPN NNP _ 13 nmod _ _ 16 this _ DET DT _ 17 det _ _ 17 month _ NOUN NN _ 13 nmod:tmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Both _ DET CC _ 4 cc:preconj _ _ 2 the _ DET DT _ 4 det _ _ 3 State _ PROPN NNP _ 4 compound _ _ 4 Department _ PROPN NNP _ 15 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 the _ DET DT _ 8 det _ _ 7 Lawyers _ PROPN NNP _ 8 compound _ _ 8 Committee _ PROPN NNP _ 4 conj _ _ 9 for _ ADP IN _ 10 case _ _ 10 Freedom _ PROPN NNP _ 8 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 Press _ PROPN NNP _ 10 nmod _ _ 14 have _ AUX VBP _ 15 aux _ _ 15 protested _ VERB VBN _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Stanley _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 detention _ NOUN NN _ 15 dobj _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 arrest _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 latest _ ADJ JJS _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 series _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 incidents _ NOUN NNS _ 10 nmod _ _ 13 that _ PRON WDT _ 14 nsubj _ _ 14 threaten _ VERB VBP _ 12 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 derail _ VERB VB _ 14 xcomp _ _ 17 Namibia _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 elections _ NOUN NNS _ 16 dobj _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 Both _ DET DT _ 6 cc:preconj _ _ 2 South _ PROPN NNP _ 3 compound _ _ 3 African _ PROPN NNP _ 6 compound _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 SWAPO _ PROPN NNP _ 3 conj _ _ 6 extremists _ NOUN NNS _ 8 nsubj _ _ 7 are _ AUX VBP _ 8 aux _ _ 8 intimidating _ VERB VBG _ 0 root _ _ 9 voters _ NOUN NNS _ 8 dobj _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 habit _ NOUN NN _ 0 root _ _ 7 of _ SCONJ IN _ 8 mark _ _ 8 arranging _ VERB VBG _ 6 acl _ _ 9 peace _ NOUN NN _ 10 compound _ _ 10 settlements _ NOUN NNS _ 8 dobj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 then _ ADV RB _ 13 advmod _ _ 13 washing _ VERB VBG _ 8 conj _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 hands _ NOUN NNS _ 13 dobj _ _ 16 over _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 tragic _ ADJ JJ _ 19 amod _ _ 19 results _ NOUN NNS _ 13 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 now _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 chance _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 redress _ VERB VB _ 5 acl _ _ 8 that _ DET IN _ 9 det _ _ 9 record _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 Namibia _ PROPN NNP _ 7 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 State _ PROPN NN _ 7 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 the _ DET DT _ 5 det _ _ 4 human-rights _ ADJ JJ _ 5 amod _ _ 5 community _ NOUN NN _ 1 conj _ _ 6 should _ AUX MD _ 7 aux _ _ 7 insist _ VERB VB _ 0 root _ _ 8 that _ SCONJ IN _ 16 mark _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Stanley _ PROPN NNP _ 16 nsubjpass _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 his _ PRON PRP$ _ 14 nmod:poss _ _ 13 fellow _ ADJ JJ _ 14 amod _ _ 14 defendants _ NOUN NNS _ 10 conj _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 released _ VERB VBN _ 7 ccomp _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 that _ SCONJ IN _ 24 mark _ _ 19 the _ DET DT _ 21 det _ _ 20 United _ PROPN NNP _ 21 compound _ _ 21 Nation _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 monitors _ NOUN NNS _ 24 nsubj _ _ 24 make _ VERB VBP _ 16 conj _ _ 25 certain _ ADJ JJ _ 24 xcomp _ _ 26 that _ SCONJ IN _ 30 mark _ _ 27 Mr. _ PROPN NNP _ 29 compound _ _ 28 O'Linn's _ PROPN NNP _ 29 compound _ _ 29 commission _ NOUN NN _ 30 nsubj _ _ 30 investigates _ VERB VBZ _ 25 ccomp _ _ 31 election _ NOUN NN _ 32 compound _ _ 32 complaints _ NOUN NNS _ 30 dobj _ _ 33 from _ ADP IN _ 35 case _ _ 34 all _ DET DT _ 35 det _ _ 35 sides _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 Commodity _ NOUN NNP _ 3 compound _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 prices _ NOUN NNS _ 5 nsubj _ _ 4 generally _ ADV RB _ 5 advmod _ _ 5 reflected _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 stability _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 7 nmod _ _ 12 following _ VERB VBG _ 14 case _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 plunge _ NOUN NN _ 5 nmod _ _ 15 Friday _ PROPN NNP _ 14 nmod:tmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 Yesterday _ NOUN NN _ 10 nmod:tmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 influence _ NOUN NN _ 10 nsubj _ _ 8 at _ ADP IN _ 9 case _ _ 9 first _ ADJ JJ _ 10 advcl _ _ 10 created _ VERB VBN _ 0 root _ _ 11 nervousness _ NOUN NN _ 10 dobj _ _ 12 . _ PUNCT . _ 10 punct _ _ 1 Later _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 however _ ADV RB _ 6 advmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 became _ VERB VBD _ 0 root _ _ 7 more _ ADJ JJR _ 6 xcomp _ _ 8 of _ ADP IN _ 10 case _ _ 9 an _ DET DT _ 10 det _ _ 10 undercurrent _ NOUN NN _ 7 nmod _ _ 11 than _ ADP IN _ 14 case _ _ 12 a _ DET DT _ 14 det _ _ 13 dominating _ ADJ VBG _ 14 amod _ _ 14 force _ NOUN NN _ 7 nmod _ _ 15 as _ SCONJ IN _ 18 mark _ _ 16 individual _ ADJ JJ _ 17 amod _ _ 17 markets _ NOUN NNS _ 18 nsubj _ _ 18 reacted _ VERB VBD _ 6 advcl _ _ 19 more _ ADV JJR _ 18 advmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 their _ PRON PRP$ _ 23 nmod:poss _ _ 22 own _ ADJ JJ _ 23 amod _ _ 23 factors _ NOUN NNS _ 18 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Gold _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 traditional _ ADJ JJ _ 5 amod _ _ 5 haven _ NOUN NN _ 1 appos _ _ 6 in _ ADP IN _ 7 case _ _ 7 times _ NOUN NNS _ 5 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 financial _ ADJ JJ _ 10 amod _ _ 10 crisis _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 continued _ VERB VBD _ 0 root _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 inverse _ ADJ JJ _ 15 amod _ _ 15 lockstep _ NOUN NN _ 12 dobj _ _ 16 with _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 dollar _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 rising _ VERB VBG _ 12 dep _ _ 21 early _ ADV RB _ 20 advmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 day _ NOUN NN _ 21 nmod _ _ 25 as _ SCONJ IN _ 28 mark _ _ 26 the _ DET DT _ 27 det _ _ 27 currency _ NOUN NN _ 28 nsubj _ _ 28 fell _ VERB VBD _ 20 advcl _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 and _ CONJ CC _ 20 cc _ _ 31 then _ ADV RB _ 32 advmod _ _ 32 giving _ VERB VBG _ 20 conj _ _ 33 up _ ADP RP _ 32 compound:prt _ _ 34 some _ DET DT _ 32 dobj _ _ 35 of _ ADP IN _ 37 case _ _ 36 its _ PRON PRP$ _ 37 nmod:poss _ _ 37 gains _ NOUN NNS _ 34 nmod _ _ 38 as _ SCONJ IN _ 41 mark _ _ 39 the _ DET DT _ 40 det _ _ 40 dollar _ NOUN NN _ 41 nsubj _ _ 41 recovered _ VERB VBD _ 32 advcl _ _ 42 . _ PUNCT . _ 12 punct _ _ 1 Copper _ NOUN NN _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 crude _ NOUN JJ _ 4 compound _ _ 4 oil _ NOUN NN _ 1 conj _ _ 5 reacted _ VERB VBD _ 0 root _ _ 6 sharply _ ADV RB _ 5 advmod _ _ 7 to _ ADP TO _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 concern _ NOUN NN _ 5 nmod _ _ 10 that _ SCONJ IN _ 15 mark _ _ 11 a _ DET DT _ 12 det _ _ 12 crash _ NOUN NN _ 15 nsubj _ _ 13 yesterday _ NOUN NN _ 15 nmod:tmod _ _ 14 could _ AUX MD _ 15 aux _ _ 15 have _ VERB VB _ 9 ccomp _ _ 16 a _ DET DT _ 19 det _ _ 17 potentially _ ADV RB _ 18 advmod _ _ 18 devastating _ VERB JJ _ 19 amod _ _ 19 effect _ NOUN NN _ 15 dobj _ _ 20 on _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 economy _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 Copper _ PROPN NN _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 showed _ VERB VBD _ 2 conj _ _ 5 little _ ADJ JJ _ 6 amod _ _ 6 rebound _ NOUN NN _ 4 dobj _ _ 7 through _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 day _ NOUN NN _ 4 nmod _ _ 10 as _ SCONJ IN _ 22 mark _ _ 11 one _ NUM CD _ 22 nsubj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 major _ ADJ JJ _ 16 amod _ _ 15 supply _ NOUN NN _ 16 compound _ _ 16 problems _ NOUN NNS _ 11 nmod _ _ 17 that _ PRON WDT _ 20 nsubj _ _ 18 had _ AUX VBD _ 20 aux _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 supporting _ VERB VBG _ 11 acl:relcl _ _ 21 prices _ NOUN NNS _ 20 dobj _ _ 22 appeared _ VERB VBD _ 4 advcl _ _ 23 to _ PART TO _ 25 mark _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 solved _ VERB VBN _ 22 xcomp _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 Crude _ ADJ JJ _ 2 amod _ _ 2 oil _ NOUN NN _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 early _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 but _ CONJ CC _ 3 cc _ _ 7 as _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 11 nsubj _ _ 11 retained _ VERB VBD _ 19 advcl _ _ 12 early _ ADJ JJ _ 13 amod _ _ 13 gains _ NOUN NNS _ 11 dobj _ _ 14 , _ PUNCT , _ 19 punct _ _ 15 it _ PRON PRP _ 19 nsubj _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 too _ ADV RB _ 19 advmod _ _ 18 , _ PUNCT , _ 19 punct _ _ 19 became _ VERB VBD _ 3 conj _ _ 20 stronger _ ADJ JJR _ 19 xcomp _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 ending _ VERB VBG _ 19 xcomp _ _ 23 with _ ADP IN _ 27 case _ _ 24 a _ DET DT _ 27 det _ _ 25 small _ ADJ JJ _ 27 amod _ _ 26 net _ NOUN JJ _ 27 compound _ _ 27 loss _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Trading _ NOUN NN _ 7 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 cotton _ NOUN NN _ 1 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 sugar _ NOUN NN _ 3 conj _ _ 6 was _ VERB VBD _ 7 cop _ _ 7 nervous _ ADJ JJ _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 showed _ VERB VBD _ 7 conj _ _ 10 small _ ADJ JJ _ 11 amod _ _ 11 declines _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Chicago _ PROPN NNP _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 grain _ NOUN NN _ 7 compound _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 soybean _ NOUN NN _ 4 conj _ _ 7 prices _ NOUN NNS _ 8 nsubj _ _ 8 rose _ VERB VBD _ 0 root _ _ 9 slightly _ ADV RB _ 8 advmod _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 Livestock _ NOUN NN _ 4 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 meat _ NOUN NN _ 1 conj _ _ 4 prices _ NOUN NNS _ 8 nsubj _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 however _ ADV RB _ 8 advmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 dropped _ VERB VBD _ 0 root _ _ 9 on _ ADP IN _ 10 case _ _ 10 concern _ NOUN NN _ 8 nmod _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 a _ DET DT _ 14 det _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 crisis _ NOUN NN _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 cut _ VERB VB _ 10 ccomp _ _ 17 consumption _ NOUN NN _ 16 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 beef _ NOUN NN _ 17 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 pork _ NOUN NN _ 19 conj _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 commodity _ NOUN NN _ 3 compound _ _ 3 markets _ NOUN NNS _ 4 nmod _ _ 4 yesterday _ NOUN NN _ 0 root _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 PRECIOUS _ ADJ NNP _ 7 amod _ _ 7 METALS _ NOUN NNPS _ 4 dep _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 Futures _ NOUN NNS _ 10 compound _ _ 10 prices _ NOUN NNS _ 13 nsubj _ _ 11 were _ VERB VBD _ 13 cop _ _ 12 moderately _ ADV RB _ 13 advmod _ _ 13 higher _ ADJ JJR _ 7 dep _ _ 14 as _ SCONJ IN _ 16 mark _ _ 15 gold _ NOUN NN _ 16 nsubj _ _ 16 gave _ VERB VBD _ 13 advcl _ _ 17 up _ ADP RP _ 16 compound:prt _ _ 18 some _ DET DT _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 early _ ADJ JJ _ 22 amod _ _ 22 gains _ NOUN NNS _ 18 nmod _ _ 23 and _ CONJ CC _ 16 cc _ _ 24 platinum _ NOUN NN _ 25 nsubj _ _ 25 behaved _ VERB VBD _ 16 conj _ _ 26 independently _ ADV RB _ 25 advmod _ _ 27 , _ PUNCT , _ 25 punct _ _ 28 first _ ADV JJ _ 29 advmod _ _ 29 falling _ VERB VBG _ 25 ccomp _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 then _ ADV RB _ 33 advmod _ _ 32 later _ ADV RB _ 33 advmod _ _ 33 rising _ VERB VBG _ 29 conj _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Silver _ NOUN JJ _ 2 nsubj _ _ 2 performed _ VERB VBN _ 0 root _ _ 3 quietly _ ADV RB _ 2 advmod _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 spot _ NOUN NN _ 5 compound _ _ 3 October _ PROPN NNP _ 5 compound _ _ 4 gold _ NOUN NN _ 5 compound _ _ 5 price _ NOUN NN _ 6 nsubj _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 4 _ NUM CD _ 6 dobj _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 367.30 _ NUM CD _ 6 nmod _ _ 12 an _ DET DT _ 13 det _ _ 13 ounce _ NOUN NN _ 11 nmod:npmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 more _ ADV RBR _ 3 advmod _ _ 3 active _ ADJ JJ _ 6 amod _ _ 4 December _ PROPN NNP _ 6 compound _ _ 5 delivery _ NOUN NN _ 6 compound _ _ 6 gold _ NOUN NN _ 7 nsubj _ _ 7 settled _ VERB VBN _ 0 root _ _ 8 with _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 gain _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 3.90 _ NUM CD _ 10 nmod _ _ 14 an _ DET DT _ 15 det _ _ 15 ounce _ NOUN NN _ 13 nmod:npmod _ _ 16 at _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 371.20 _ NUM CD _ 7 nmod _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 after _ SCONJ IN _ 21 mark _ _ 21 trading _ VERB VBG _ 7 advcl _ _ 22 as _ ADV RB _ 23 advmod _ _ 23 high _ ADJ JJ _ 21 advmod _ _ 24 as _ ADP IN _ 26 case _ _ 25 $ _ SYM $ _ 26 dep _ _ 26 374 _ NUM CD _ 23 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 December _ PROPN NNP _ 2 compound _ _ 2 silver _ NOUN NN _ 11 nsubj _ _ 3 was _ VERB VBD _ 11 cop _ _ 4 up _ ADV RB _ 11 advmod _ _ 5 2.3 _ NUM CD _ 6 nummod _ _ 6 cents _ NOUN NNS _ 4 nmod:npmod _ _ 7 an _ DET DT _ 8 det _ _ 8 ounce _ NOUN NN _ 6 nmod:npmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 5.163 _ NUM CD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Platinum _ NOUN NN _ 2 nsubj _ _ 2 behaved _ VERB VBD _ 0 root _ _ 3 more _ ADV JJR _ 7 advmod _ _ 4 like _ ADP IN _ 7 case _ _ 5 an _ DET DT _ 7 det _ _ 6 industrial _ ADJ JJ _ 7 amod _ _ 7 metal _ NOUN NN _ 2 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 easing _ VERB VBG _ 2 ccomp _ _ 10 early _ ADV RB _ 9 advmod _ _ 11 on _ ADP IN _ 12 case _ _ 12 concern _ NOUN NN _ 9 nmod _ _ 13 over _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 possible _ ADJ JJ _ 17 amod _ _ 16 weaker _ ADJ JJR _ 15 dep _ _ 17 economy _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 but _ CONJ CC _ 9 cc _ _ 20 recovering _ VERB VBG _ 9 conj _ _ 21 later _ ADV RB _ 20 advmod _ _ 22 , _ PUNCT , _ 20 punct _ _ 23 as _ SCONJ IN _ 27 mark _ _ 24 the _ DET DT _ 26 det _ _ 25 stock _ NOUN NN _ 26 compound _ _ 26 market _ NOUN NN _ 27 nsubj _ _ 27 strengthened _ VERB VBD _ 20 advcl _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Gold _ PROPN NN _ 6 nsubj _ _ 2 was _ VERB VBD _ 6 cop _ _ 3 nowhere _ ADV RB _ 6 advmod _ _ 4 the _ DET DT _ 6 det _ _ 5 spectacular _ ADJ JJ _ 6 amod _ _ 6 performer _ ADJ NN _ 0 root _ _ 7 it _ PRON PRP _ 14 nsubj _ _ 8 was _ VERB VBD _ 14 cop _ _ 9 two _ NUM CD _ 10 nummod _ _ 10 years _ NOUN NNS _ 11 nmod:npmod _ _ 11 ago _ ADV RB _ 14 advmod _ _ 12 on _ ADP IN _ 14 case _ _ 13 Black _ PROPN NNP _ 14 compound _ _ 14 Monday _ PROPN NNP _ 6 acl:relcl _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 thing _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 precious _ ADJ JJ _ 10 amod _ _ 9 metals _ NOUN NNS _ 10 compound _ _ 10 markets _ NOUN NNS _ 11 nsubj _ _ 11 closed _ VERB VBD _ 0 root _ _ 12 before _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 16 nsubj _ _ 16 went _ VERB VBD _ 11 advcl _ _ 17 into _ ADP IN _ 21 case _ _ 18 its _ PRON PRP$ _ 21 nmod:poss _ _ 19 late-in-the-day _ ADJ JJ _ 21 amod _ _ 20 nose _ NOUN NN _ 21 compound _ _ 21 dive _ NOUN NN _ 16 nmod _ _ 22 , _ PUNCT , _ 11 punct _ _ 23 so _ SCONJ IN _ 27 mark _ _ 24 it _ PRON PRP _ 27 nsubj _ _ 25 could _ AUX MD _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 react _ VERB VB _ 11 advcl _ _ 28 to _ ADP TO _ 29 case _ _ 29 it _ PRON PRP _ 27 nmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 Back _ ADV RB _ 13 advmod _ _ 2 on _ ADP IN _ 3 case _ _ 3 Friday _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Oct. _ PROPN NNP _ 3 appos _ _ 6 16 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 l987 _ NUM NN _ 5 nummod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 13 nsubj _ _ 13 declined _ VERB VBD _ 0 root _ _ 14 during _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 gold _ ADJ NN _ 20 amod _ _ 20 prices _ NOUN NNS _ 21 nsubj _ _ 21 surged _ VERB VBD _ 13 conj _ _ 22 as _ SCONJ IN _ 26 mark _ _ 23 the _ DET DT _ 25 det _ _ 24 stock _ NOUN NN _ 25 compound _ _ 25 market _ NOUN NN _ 26 nsubj _ _ 26 fell _ VERB VBD _ 21 advcl _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 October _ PROPN NNP _ 4 compound _ _ 3 1987 _ NUM CD _ 4 nummod _ _ 4 contract _ NOUN NN _ 7 nsubj _ _ 5 that _ DET WDT _ 6 det _ _ 6 day _ NOUN NN _ 7 nmod:tmod _ _ 7 rose _ VERB VBD _ 0 root _ _ 8 as _ ADV RB _ 11 advmod _ _ 9 much _ ADV JJ _ 11 advmod _ _ 10 as _ ADP IN _ 11 advmod _ _ 11 $ _ SYM $ _ 7 dobj _ _ 12 8.70 _ NUM CD _ 11 nummod _ _ 13 to _ ADP TO _ 17 case _ _ 14 as _ ADV RB _ 17 advmod _ _ 15 high _ ADJ JJ _ 17 advmod _ _ 16 as _ ADP IN _ 17 advmod _ _ 17 $ _ SYM $ _ 7 nmod _ _ 18 471.60 _ NUM CD _ 17 nummod _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 and _ CONJ CC _ 7 cc _ _ 21 the _ DET DT _ 24 det _ _ 22 more _ ADV RBR _ 24 advmod _ _ 23 deferred _ ADJ JJ _ 24 amod _ _ 24 positions _ NOUN NNS _ 35 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 due _ ADJ JJ _ 24 amod _ _ 27 to _ PART TO _ 28 mark _ _ 28 mature _ VERB VB _ 26 xcomp _ _ 29 as _ ADV IN _ 30 advmod _ _ 30 late _ ADV JJ _ 28 advmod _ _ 31 as _ ADP IN _ 32 case _ _ 32 March _ PROPN NNP _ 30 nmod _ _ 33 1989 _ NUM CD _ 32 nummod _ _ 34 , _ PUNCT , _ 24 punct _ _ 35 rose _ VERB VBD _ 7 conj _ _ 36 as _ ADV RB _ 39 advmod _ _ 37 much _ ADV JJ _ 39 advmod _ _ 38 as _ ADP IN _ 39 advmod _ _ 39 $ _ SYM $ _ 35 dobj _ _ 40 9.60 _ NUM CD _ 39 nummod _ _ 41 . _ PUNCT . _ 7 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Black _ PROPN NNP _ 3 compound _ _ 3 Monday _ PROPN NNP _ 13 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Oct. _ PROPN NNP _ 3 appos _ _ 6 19 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1987 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 October _ PROPN NNP _ 12 compound _ _ 12 contract _ NOUN NN _ 13 nsubj _ _ 13 tacked _ VERB VBD _ 0 root _ _ 14 on _ ADP RP _ 13 compound:prt _ _ 15 further _ ADJ JJ _ 16 amod _ _ 16 gains _ NOUN NNS _ 13 dobj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 rising _ VERB VBG _ 13 advcl _ _ 19 to _ ADP TO _ 23 case _ _ 20 as _ ADV RB _ 23 advmod _ _ 21 high _ ADJ JJ _ 23 advmod _ _ 22 as _ ADP IN _ 23 advmod _ _ 23 $ _ SYM $ _ 18 nmod _ _ 24 491.50 _ NUM CD _ 23 nummod _ _ 25 for _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 gain _ NOUN NN _ 18 nmod _ _ 28 of _ ADP IN _ 30 case _ _ 29 almost _ ADV RB _ 30 advmod _ _ 30 $ _ SYM $ _ 27 nmod _ _ 31 20 _ NUM CD _ 30 nummod _ _ 32 on _ ADP IN _ 33 case _ _ 33 top _ NOUN NN _ 30 nmod _ _ 34 of _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 Friday _ PROPN NNP _ 37 compound _ _ 37 advances _ NOUN NNS _ 33 nmod _ _ 38 , _ PUNCT , _ 18 punct _ _ 39 before _ SCONJ IN _ 40 mark _ _ 40 giving _ VERB VBG _ 18 advcl _ _ 41 up _ ADP RP _ 40 compound:prt _ _ 42 almost _ ADV RB _ 43 advmod _ _ 43 $ _ SYM $ _ 40 dobj _ _ 44 10 _ NUM CD _ 43 nummod _ _ 45 of _ ADP IN _ 46 case _ _ 46 that _ PRON DT _ 43 nmod _ _ 47 at _ ADP IN _ 49 case _ _ 48 the _ DET DT _ 49 det _ _ 49 close _ NOUN NN _ 40 nmod _ _ 50 . _ PUNCT . _ 13 punct _ _ 1 Yesterday _ NOUN NN _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 October _ PROPN NNP _ 4 compound _ _ 4 gain _ NOUN NN _ 9 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 $ _ SYM $ _ 7 dep _ _ 7 4 _ NUM CD _ 4 nmod _ _ 8 was _ VERB VBD _ 9 cop _ _ 9 miniscule _ NOUN JJ _ 0 root _ _ 10 compared _ VERB VBN _ 12 case _ _ 11 with _ ADP IN _ 12 case _ _ 12 that _ PRON DT _ 9 advcl _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 analyst _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Peter _ PROPN NNP _ 5 compound _ _ 5 Cardillo _ PROPN NNP _ 2 appos _ _ 6 of _ ADP IN _ 7 case _ _ 7 Josephthal _ PROPN NNP _ 5 nmod _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Co. _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 New _ PROPN NNP _ 12 compound _ _ 12 York _ PROPN NNP _ 7 appos _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 gold _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 19 nsubj _ _ 18 already _ ADV RB _ 19 advmod _ _ 19 had _ VERB VBD _ 14 ccomp _ _ 20 some _ DET DT _ 24 det _ _ 21 good _ ADJ JJ _ 24 amod _ _ 22 price-supporting _ ADJ JJ _ 24 amod _ _ 23 technical _ ADJ JJ _ 24 amod _ _ 24 factors _ NOUN NNS _ 19 dobj _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 would _ AUX MD _ 28 aux _ _ 27 have _ AUX VB _ 28 aux _ _ 28 caused _ VERB VBN _ 24 acl:relcl _ _ 29 prices _ NOUN NNS _ 28 dobj _ _ 30 to _ PART TO _ 31 mark _ _ 31 rise _ VERB VB _ 28 xcomp _ _ 32 , _ PUNCT , _ 28 punct _ _ 33 with _ ADP IN _ 38 case _ _ 34 or _ CONJ CC _ 33 cc _ _ 35 without _ ADP IN _ 33 conj _ _ 36 the _ DET DT _ 38 det _ _ 37 stock _ NOUN NN _ 38 compound _ _ 38 market _ NOUN NN _ 28 nmod _ _ 39 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 What _ PRON WP _ 6 dobj _ _ 3 the _ DET DT _ 5 det _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 6 nsubj _ _ 6 did _ VERB VBD _ 8 csubj _ _ 7 was _ AUX VBD _ 8 aux _ _ 8 cause _ VERB VB _ 22 dep _ _ 9 the _ DET DT _ 10 det _ _ 10 rise _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 take _ VERB VB _ 8 xcomp _ _ 13 place _ NOUN NN _ 12 dobj _ _ 14 earlier _ ADV JJR _ 12 advmod _ _ 15 than _ SCONJ IN _ 19 mark _ _ 16 it _ PRON PRP _ 19 nsubj _ _ 17 would _ AUX MD _ 19 aux _ _ 18 have _ AUX VB _ 19 aux _ _ 19 happened _ VERB VBN _ 14 advcl _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 '' _ PUNCT '' _ 8 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Cardillo _ PROPN NNP _ 22 nsubj _ _ 25 . _ PUNCT . _ 22 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 's _ VERB VBZ _ 17 ccomp _ _ 3 a _ DET DT _ 5 det _ _ 4 good _ ADJ JJ _ 5 amod _ _ 5 chance _ NOUN NN _ 2 nsubj _ _ 6 that _ DET WDT _ 9 mark _ _ 7 gold _ NOUN NN _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 retain _ VERB VB _ 5 ccomp _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 gains _ NOUN NNS _ 9 dobj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 rise _ VERB VB _ 9 conj _ _ 14 further _ ADV RB _ 13 advmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 drop _ NOUN NN _ 2 dobj _ _ 5 in _ ADP IN _ 7 case _ _ 6 interest _ NOUN NN _ 7 compound _ _ 7 rates _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 which _ PRON WDT _ 11 nsubj _ _ 10 would _ AUX MD _ 11 aux _ _ 11 help _ VERB VB _ 4 acl:relcl _ _ 12 gold _ NOUN NN _ 11 dobj _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 keeping _ VERB VBG _ 11 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 dollar _ NOUN NN _ 14 dobj _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 rising _ VERB VBG _ 14 advcl _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Finally _ ADV RB _ 16 advmod _ _ 2 , _ PUNCT , _ 16 punct _ _ 3 according _ VERB VBG _ 6 case _ _ 4 to _ ADP TO _ 3 mwe _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Cardillo _ PROPN NNP _ 16 nmod _ _ 7 , _ PUNCT , _ 16 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 impact _ NOUN NN _ 16 nsubjpass _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 strong _ ADJ JJ _ 13 amod _ _ 13 dollar _ NOUN NN _ 9 nmod _ _ 14 should _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 reflected _ VERB VBN _ 0 root _ _ 17 in _ ADP IN _ 19 case _ _ 18 reduced _ VERB VBN _ 19 amod _ _ 19 exports _ NOUN NNS _ 16 nmod _ _ 20 in _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 August _ PROPN NNP _ 25 compound _ _ 23 merchandise _ NOUN NN _ 25 compound _ _ 24 trade _ NOUN NN _ 25 compound _ _ 25 deficit _ NOUN NN _ 19 nmod _ _ 26 , _ PUNCT , _ 16 punct _ _ 27 when _ ADV WRB _ 31 advmod _ _ 28 the _ DET DT _ 29 det _ _ 29 figures _ NOUN NNS _ 31 nsubjpass _ _ 30 are _ AUX VBP _ 31 auxpass _ _ 31 released _ VERB VBN _ 16 advcl _ _ 32 today _ NOUN NN _ 31 nmod:tmod _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 would _ AUX MD _ 4 aux _ _ 3 be _ VERB VB _ 4 cop _ _ 4 damaging _ VERB VBG _ 14 ccomp _ _ 5 to _ ADP TO _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 dollar _ NOUN NN _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 supportive _ ADJ JJ _ 4 conj _ _ 10 for _ ADP IN _ 11 case _ _ 11 gold _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 ENERGY _ PROPN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Worried _ VERB JJ _ 24 advcl _ _ 2 that _ SCONJ IN _ 12 mark _ _ 3 Friday _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 190-point _ ADJ JJ _ 8 amod _ _ 6 stock _ NOUN NN _ 8 compound _ _ 7 market _ NOUN NN _ 8 compound _ _ 8 plunge _ NOUN NN _ 12 nsubj _ _ 9 might _ AUX MD _ 12 aux _ _ 10 be _ VERB VB _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 harbinger _ NOUN NN _ 1 ccomp _ _ 13 of _ ADP IN _ 14 case _ _ 14 things _ NOUN NNS _ 12 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 come _ VERB VB _ 14 acl _ _ 17 for _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 economy _ NOUN NN _ 14 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 petroleum _ NOUN NN _ 23 compound _ _ 22 futures _ NOUN NNS _ 23 compound _ _ 23 traders _ NOUN NNS _ 24 nsubj _ _ 24 called _ VERB VBD _ 0 root _ _ 25 a _ DET DT _ 26 det _ _ 26 halt _ NOUN NN _ 24 dobj _ _ 27 to _ ADP TO _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 recent _ ADJ JJ _ 30 amod _ _ 30 string _ NOUN NN _ 26 nmod _ _ 31 of _ ADP IN _ 32 case _ _ 32 increases _ NOUN NNS _ 30 nmod _ _ 33 in _ ADP IN _ 37 case _ _ 34 crude _ ADJ JJ _ 37 amod _ _ 35 oil _ NOUN NN _ 37 compound _ _ 36 futures _ NOUN NNS _ 37 compound _ _ 37 prices _ NOUN NNS _ 32 nmod _ _ 38 . _ PUNCT . _ 24 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 U.S. _ PROPN NNP _ 4 compound _ _ 3 benchmark _ NOUN NN _ 4 compound _ _ 4 crude _ NOUN NN _ 10 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 West _ PROPN NNP _ 8 compound _ _ 7 Texas _ PROPN NNP _ 8 compound _ _ 8 Intermediate _ PROPN NNP _ 4 appos _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 closed _ VERB VBD _ 0 root _ _ 11 at _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 20.59 _ NUM CD _ 10 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 barrel _ NOUN NN _ 13 nmod:npmod _ _ 16 for _ ADP IN _ 18 case _ _ 17 November _ PROPN NNP _ 18 compound _ _ 18 delivery _ NOUN NN _ 13 nmod _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 down _ ADV IN _ 10 advmod _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 20 nmod:npmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 crude _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 due _ ADJ JJ _ 3 ccomp _ _ 7 for _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 correction _ NOUN NN _ 6 nmod _ _ 10 anyhow _ ADV RB _ 6 advmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 following _ VERB VBG _ 14 case _ _ 13 several _ ADJ JJ _ 14 amod _ _ 14 days _ NOUN NNS _ 6 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 significant _ ADJ JJ _ 17 amod _ _ 17 gains _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 most _ ADJ JJS _ 4 amod _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 observers _ NOUN NNS _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 Friday _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 stock _ NOUN NN _ 11 compound _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 drop _ NOUN NN _ 12 nsubj _ _ 12 is _ VERB VBZ _ 5 ccomp _ _ 13 what _ PRON WP _ 14 nsubj _ _ 14 dampened _ VERB VBD _ 12 ccomp _ _ 15 spirits _ NOUN NNS _ 14 dobj _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 petroleum _ NOUN NN _ 19 compound _ _ 19 pits _ NOUN NNS _ 15 nmod _ _ 20 yesterday _ NOUN NN _ 14 nmod:tmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 yesterday _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 futures _ NOUN NNS _ 5 compound _ _ 5 prices _ NOUN NNS _ 8 nsubjpass _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 headed _ VERB VBN _ 0 root _ _ 9 up _ ADV RP _ 8 advmod _ _ 10 on _ ADP IN _ 11 case _ _ 11 expectations _ NOUN NNS _ 8 nmod _ _ 12 that _ SCONJ IN _ 17 mark _ _ 13 world _ NOUN NN _ 15 compound _ _ 14 oil _ NOUN NN _ 15 compound _ _ 15 demand _ NOUN NN _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 continue _ VERB VB _ 11 ccomp _ _ 18 to _ PART TO _ 20 mark _ _ 19 be _ VERB VB _ 20 cop _ _ 20 strong _ ADJ JJ _ 17 xcomp _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Organization _ PROPN NNP _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 Petroleum _ PROPN NNP _ 6 compound _ _ 5 Exporting _ PROPN NNP _ 6 compound _ _ 6 Countries _ PROPN NNPS _ 2 nmod _ _ 7 increased _ VERB VBD _ 0 root _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 production _ NOUN NN _ 10 compound _ _ 10 ceiling _ NOUN NN _ 7 dobj _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 fourth _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 10 nmod _ _ 15 based _ VERB VBN _ 7 dep _ _ 16 on _ ADP IN _ 17 case _ _ 17 projections _ NOUN NNS _ 15 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 robust _ ADJ JJ _ 20 amod _ _ 20 demand _ NOUN NN _ 17 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 So _ ADP IN _ 17 dep _ _ 2 any _ DET DT _ 4 det _ _ 3 bearish _ ADJ JJ _ 4 amod _ _ 4 indicator _ NOUN NN _ 17 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 such _ ADJ JJ _ 11 case _ _ 7 as _ ADP IN _ 6 mwe _ _ 8 Friday _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 precipitous _ ADJ JJ _ 11 amod _ _ 11 drop _ NOUN NN _ 4 nmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 sends _ VERB VBZ _ 0 root _ _ 18 shivers _ NOUN NNS _ 17 dobj _ _ 19 through _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 oil _ NOUN NN _ 22 compound _ _ 22 markets _ NOUN NNS _ 17 nmod _ _ 23 as _ ADV RB _ 17 advmod _ _ 24 well _ ADV RB _ 23 mwe _ _ 25 . _ PUNCT . _ 17 punct _ _ 1 Indeed _ ADV RB _ 17 advmod _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 after _ SCONJ IN _ 4 mark _ _ 4 reacting _ VERB VBG _ 17 advcl _ _ 5 early _ ADV RB _ 4 advmod _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 day _ NOUN NN _ 5 nmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 plummet _ NOUN VB _ 4 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 futures _ NOUN NNS _ 16 compound _ _ 16 prices _ NOUN NNS _ 17 nsubj _ _ 17 firmed _ VERB VBD _ 0 root _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 again _ ADV RB _ 17 advmod _ _ 20 as _ SCONJ IN _ 22 mark _ _ 21 traders _ NOUN NNS _ 22 nsubj _ _ 22 took _ VERB VBD _ 17 advcl _ _ 23 note _ NOUN NN _ 22 dobj _ _ 24 of _ ADP IN _ 30 case _ _ 25 the _ DET DT _ 27 det _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 market _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 partial _ ADJ JJ _ 30 amod _ _ 30 recovery _ NOUN NN _ 22 nmod _ _ 31 yesterday _ NOUN NN _ 22 nmod:tmod _ _ 32 . _ PUNCT . _ 17 punct _ _ 1 COPPER _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 showed _ VERB VBD _ 3 conj _ _ 6 little _ ADJ JJ _ 7 amod _ _ 7 rebound _ NOUN NN _ 5 dobj _ _ 8 as _ SCONJ IN _ 18 mark _ _ 9 one _ NUM CD _ 12 nummod _ _ 10 major _ ADJ JJ _ 12 amod _ _ 11 labor _ NOUN NN _ 12 compound _ _ 12 problem _ NOUN NN _ 18 nsubj _ _ 13 that _ PRON WDT _ 16 nsubj _ _ 14 had _ AUX VBD _ 16 aux _ _ 15 been _ AUX VBN _ 16 aux _ _ 16 underpinning _ VERB VBG _ 12 acl:relcl _ _ 17 prices _ NOUN NNS _ 16 dobj _ _ 18 appeared _ VERB VBD _ 5 advcl _ _ 19 to _ PART TO _ 21 mark _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 solved _ VERB VBN _ 18 xcomp _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 December _ PROPN NNP _ 3 compound _ _ 3 contract _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 0 root _ _ 5 3.05 _ NUM CD _ 6 nummod _ _ 6 cents _ NOUN NNS _ 4 dobj _ _ 7 a _ DET DT _ 8 det _ _ 8 pound _ NOUN NN _ 6 nmod:npmod _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 1.2745 _ NUM CD _ 4 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Prices _ NOUN NNS _ 6 nsubj _ _ 2 were _ VERB VBD _ 6 cop _ _ 3 down _ ADV RB _ 6 advmod _ _ 4 from _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 outset _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 trading _ NOUN NN _ 6 nmod _ _ 9 on _ ADP IN _ 10 case _ _ 10 concern _ NOUN NN _ 6 nmod _ _ 11 that _ SCONJ IN _ 19 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 drop _ NOUN NN _ 19 nsubj _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 might _ AUX MD _ 19 aux _ _ 19 create _ VERB VB _ 10 ccomp _ _ 20 a _ DET DT _ 22 det _ _ 21 weakened _ VERB JJ _ 22 amod _ _ 22 economy _ NOUN NN _ 19 dobj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 a _ DET DT _ 26 det _ _ 25 consequent _ ADJ JJ _ 26 amod _ _ 26 reduction _ NOUN NN _ 22 conj _ _ 27 in _ ADP IN _ 29 case _ _ 28 copper _ NOUN NN _ 29 compound _ _ 29 use _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 recovery _ NOUN NN _ 8 nsubj _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 stock _ NOUN NN _ 7 compound _ _ 7 market _ NOUN NN _ 3 nmod _ _ 8 provided _ VERB VBD _ 0 root _ _ 9 little _ ADJ JJ _ 10 amod _ _ 10 help _ NOUN NN _ 8 dobj _ _ 11 for _ ADP IN _ 12 case _ _ 12 copper _ NOUN NN _ 10 nmod _ _ 13 as _ SCONJ IN _ 15 mark _ _ 14 word _ NOUN NN _ 15 nsubj _ _ 15 spread _ VERB NN _ 8 advcl _ _ 16 that _ SCONJ IN _ 28 mark _ _ 17 a _ DET DT _ 19 det _ _ 18 three-month _ ADJ JJ _ 19 amod _ _ 19 strike _ NOUN NN _ 28 nsubj _ _ 20 at _ ADP IN _ 24 case _ _ 21 the _ DET DT _ 24 det _ _ 22 Highland _ PROPN NNP _ 24 compound _ _ 23 Valley _ PROPN NNP _ 24 compound _ _ 24 mine _ NOUN NN _ 19 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 British _ PROPN NNP _ 27 compound _ _ 27 Columbia _ PROPN NNP _ 24 nmod _ _ 28 was _ VERB VBD _ 15 ccomp _ _ 29 about _ ADV RB _ 30 advmod _ _ 30 over _ ADV RB _ 28 advmod _ _ 31 , _ PUNCT , _ 8 punct _ _ 32 according _ VERB VBG _ 35 case _ _ 33 to _ ADP TO _ 32 mwe _ _ 34 an _ DET DT _ 35 det _ _ 35 analyst _ NOUN NN _ 8 nmod _ _ 36 . _ PUNCT . _ 8 punct _ _ 1 Highland _ PROPN NNP _ 2 compound _ _ 2 Valley _ PROPN NNP _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 large _ ADJ JJ _ 7 amod _ _ 6 Canadian _ ADJ JJ _ 7 amod _ _ 7 producer _ NOUN NN _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 principal _ ADJ JJ _ 10 amod _ _ 10 supplier _ NOUN NN _ 7 conj _ _ 11 to _ ADP TO _ 12 case _ _ 12 Japan _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 which _ PRON WDT _ 16 nsubj _ _ 15 recently _ ADV RB _ 16 advmod _ _ 16 began _ VERB VBD _ 7 acl:relcl _ _ 17 seeking _ VERB VBG _ 16 xcomp _ _ 18 copper _ NOUN NN _ 17 dobj _ _ 19 elsewhere _ ADV RB _ 17 advmod _ _ 20 as _ SCONJ IN _ 23 mark _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 inventories _ NOUN NNS _ 23 nsubj _ _ 23 shrank _ VERB VBD _ 17 advcl _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 5 nmod:tmod _ _ 3 it _ PRON PRP _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 reported _ VERB VBN _ 0 root _ _ 6 that _ SCONJ DT _ 12 mark _ _ 7 company _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 union _ NOUN NN _ 7 conj _ _ 10 negotiations _ NOUN NNS _ 12 nsubj _ _ 11 had _ AUX VBD _ 12 aux _ _ 12 overcome _ VERB VBN _ 5 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 major _ ADJ JJ _ 15 amod _ _ 15 hurdle _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 contracting _ NOUN NN _ 15 appos _ _ 19 out _ ADP IN _ 18 dep _ _ 20 of _ ADP IN _ 21 case _ _ 21 work _ NOUN NN _ 18 nmod _ _ 22 by _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 company _ NOUN NN _ 18 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 Now _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 analyst _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 10 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 only _ ADV RB _ 9 advmod _ _ 8 minor _ ADJ JJ _ 9 amod _ _ 9 points _ NOUN NNS _ 10 nsubj _ _ 10 remain _ VERB VBP _ 0 root _ _ 11 to _ PART TO _ 13 mark _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 cleaned _ VERB VBN _ 10 xcomp _ _ 14 up _ ADP RP _ 13 compound:prt _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 For _ ADP IN _ 4 case _ _ 3 all _ DET DT _ 4 det _ _ 4 intents _ NOUN NNS _ 10 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 purposes _ NOUN NNS _ 4 conj _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 an _ DET DT _ 9 det _ _ 9 agreement _ NOUN NN _ 10 nsubj _ _ 10 appears _ VERB VBZ _ 18 ccomp _ _ 11 to _ PART TO _ 14 mark _ _ 12 have _ AUX VB _ 14 aux _ _ 13 been _ AUX VBN _ 14 auxpass _ _ 14 achieved _ VERB VBN _ 10 xcomp _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Copper _ NOUN NN _ 2 compound _ _ 2 inventories _ NOUN NNS _ 10 nsubj _ _ 3 in _ ADP IN _ 9 case _ _ 4 New _ PROPN NNP _ 5 compound _ _ 5 York _ PROPN NNP _ 9 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Commodity _ PROPN NNP _ 9 compound _ _ 8 Exchange _ PROPN NNP _ 9 compound _ _ 9 warehouses _ NOUN NNS _ 2 nmod _ _ 10 rose _ VERB VBD _ 0 root _ _ 11 yesterday _ NOUN NN _ 10 nmod:tmod _ _ 12 by _ ADP IN _ 14 case _ _ 13 516 _ NUM CD _ 14 nummod _ _ 14 tons _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 to _ ADP TO _ 18 case _ _ 17 10,004 _ NUM CD _ 18 nummod _ _ 18 tons _ NOUN NNS _ 10 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 London _ PROPN NNP _ 5 compound _ _ 2 Metal _ PROPN NNP _ 5 compound _ _ 3 Exchange _ PROPN NNP _ 5 compound _ _ 4 copper _ NOUN NN _ 5 compound _ _ 5 inventories _ NOUN NNS _ 8 nsubj _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 8 nmod:tmod _ _ 8 declined _ VERB VBD _ 0 root _ _ 9 13,575 _ NUM CD _ 10 nummod _ _ 10 tons _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 to _ ADP TO _ 14 case _ _ 13 89,300 _ NUM CD _ 14 nummod _ _ 14 tons _ NOUN NNS _ 8 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 LME _ PROPN NNP _ 4 compound _ _ 3 stocks _ NOUN NNS _ 4 compound _ _ 4 decline _ NOUN VBP _ 5 nsubj _ _ 5 was _ VERB VBD _ 0 root _ _ 6 about _ ADV RB _ 8 advmod _ _ 7 as _ ADV RB _ 8 advmod _ _ 8 expected _ VERB VBN _ 5 ccomp _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 but _ CONJ CC _ 5 cc _ _ 11 the _ DET DT _ 13 det _ _ 12 Comex _ PROPN NNP _ 13 compound _ _ 13 gain _ NOUN NN _ 14 nsubj _ _ 14 was _ VERB VBD _ 5 conj _ _ 15 n't _ PART RB _ 14 neg _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 However _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 this _ PRON DT _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 brushed _ VERB VBN _ 16 ccomp _ _ 6 aside _ ADV RB _ 5 advmod _ _ 7 by _ ADP IN _ 8 case _ _ 8 concern _ NOUN NN _ 5 nmod _ _ 9 over _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 analyst _ NOUN NN _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 point _ NOUN NN _ 17 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 futures _ NOUN NNS _ 6 compound _ _ 6 trading _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 as _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 12 nsubj _ _ 12 firmed _ VERB VBD _ 17 advcl _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 December _ PROPN NNP _ 16 compound _ _ 16 contract _ NOUN NN _ 17 nsubj _ _ 17 rose _ VERB VBD _ 0 root _ _ 18 to _ ADP TO _ 22 case _ _ 19 as _ ADV RB _ 22 advmod _ _ 20 high _ ADJ JJ _ 22 advmod _ _ 21 as _ ADP IN _ 22 advmod _ _ 22 $ _ SYM $ _ 17 nmod _ _ 23 1.2965 _ NUM CD _ 22 nummod _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 but _ CONJ CC _ 17 cc _ _ 26 it _ PRON PRP _ 29 nsubj _ _ 27 was _ VERB VBD _ 29 cop _ _ 28 n't _ PART RB _ 29 neg _ _ 29 able _ ADJ JJ _ 17 conj _ _ 30 to _ PART TO _ 31 mark _ _ 31 sustain _ VERB VB _ 29 xcomp _ _ 32 the _ DET DT _ 33 det _ _ 33 gain _ NOUN NN _ 31 dobj _ _ 34 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubjpass _ _ 3 was _ VERB VBD _ 5 auxpass _ _ 4 simply _ ADV RB _ 5 advmod _ _ 5 overbought _ VERB VBN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 said _ VERB VBD _ 5 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 5 cc _ _ 12 selling _ VERB NN _ 19 nsubj _ _ 13 by _ ADP IN _ 14 case _ _ 14 funds _ NOUN NNS _ 12 nmod _ _ 15 that _ PRON WDT _ 18 nsubjpass _ _ 16 are _ VERB VBP _ 18 auxpass _ _ 17 computer _ NOUN NN _ 18 dep _ _ 18 guided _ VERB VBD _ 14 acl:relcl _ _ 19 helped _ VERB VBN _ 5 conj _ _ 20 depress _ VERB VB _ 19 ccomp _ _ 21 prices _ NOUN NNS _ 20 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 COTTON _ PROPN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 eased _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 more _ ADV RBR _ 7 advmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 reaction _ NOUN NN _ 3 nmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 Hurricane _ PROPN NNP _ 10 compound _ _ 10 Jerry _ PROPN NNP _ 7 nmod _ _ 11 than _ ADP IN _ 14 case _ _ 12 to _ ADP TO _ 14 case _ _ 13 any _ DET DT _ 14 det _ _ 14 influence _ NOUN NN _ 7 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 December _ PROPN NNP _ 3 compound _ _ 3 contract _ NOUN NN _ 4 nsubj _ _ 4 ended _ VERB VBD _ 0 root _ _ 5 with _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 loss _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 0.22 _ NUM CD _ 10 nummod _ _ 10 cent _ NOUN NN _ 7 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 pound _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 at _ ADP IN _ 16 case _ _ 15 74.48 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 4 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Technical _ ADJ NNP _ 2 amod _ _ 2 considerations _ NOUN NNS _ 16 nsubj _ _ 3 following _ VERB VBG _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 hurricane _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 10 nsubj _ _ 8 was _ VERB VBD _ 10 cop _ _ 9 a _ DET DT _ 10 det _ _ 10 factor _ NOUN NN _ 5 acl:relcl _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 10 nmod _ _ 14 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 caused _ VERB VBD _ 22 ccomp _ _ 17 prices _ NOUN NNS _ 16 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 decline _ VERB VB _ 16 xcomp _ _ 20 yesterday _ NOUN NN _ 19 nmod:tmod _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Ernest _ PROPN NNP _ 24 compound _ _ 24 Simon _ PROPN NNP _ 22 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 cotton _ NOUN NN _ 27 compound _ _ 27 specialist _ NOUN NN _ 24 appos _ _ 28 for _ ADP IN _ 30 case _ _ 29 Prudential-Bache _ PROPN NNP _ 30 compound _ _ 30 Securities _ PROPN NNPS _ 27 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 New _ PROPN NNP _ 33 compound _ _ 33 York _ PROPN NNP _ 30 appos _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 Prices _ NOUN NNS _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 sharply _ ADV RB _ 2 advmod _ _ 4 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 5 as _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 storm _ NOUN NN _ 8 nsubj _ _ 8 approached _ VERB VBD _ 2 advcl _ _ 9 Texas _ PROPN NNP _ 8 nmod:tmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Louisiana _ PROPN NNP _ 9 conj _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 which _ PRON WDT _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 part _ NOUN NN _ 9 acl:relcl _ _ 16 of _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 21 det _ _ 18 Mississippi _ PROPN NNP _ 21 compound _ _ 19 Delta _ PROPN NNP _ 21 compound _ _ 20 cotton-growing _ ADJ JJ _ 21 amod _ _ 21 area _ NOUN NN _ 15 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 However _ ADV RB _ 13 advmod _ _ 2 , _ PUNCT , _ 13 punct _ _ 3 after _ SCONJ IN _ 4 mark _ _ 4 absorbing _ VERB VBG _ 13 advcl _ _ 5 the _ DET DT _ 7 det _ _ 6 potential _ ADJ JJ _ 7 amod _ _ 7 effect _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 hurricane _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 prices _ NOUN NNS _ 13 nsubj _ _ 13 began _ VERB VBD _ 21 ccomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 slip _ VERB VB _ 13 xcomp _ _ 16 late _ ADJ JJ _ 17 amod _ _ 17 Friday _ PROPN NNP _ 15 nmod:tmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Simon _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 selling _ NOUN VBG _ 3 nsubj _ _ 3 continued _ VERB VBN _ 12 ccomp _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 and _ CONJ CC _ 3 cc _ _ 6 kept _ VERB VBD _ 3 conj _ _ 7 prices _ NOUN NNS _ 6 xcomp _ _ 8 under _ ADP IN _ 9 case _ _ 9 pressure _ NOUN NN _ 7 dep _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Colder _ ADJ JJR _ 2 amod _ _ 2 weather _ NOUN NN _ 5 nsubjpass _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 being _ AUX VBG _ 5 auxpass _ _ 5 predicted _ VERB VBN _ 26 ccomp _ _ 6 for _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 high _ ADJ JJ _ 9 amod _ _ 9 plains _ NOUN NNS _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 Texas _ PROPN NNP _ 9 nmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 northern _ ADJ JJ _ 15 amod _ _ 15 states _ NOUN NNS _ 9 conj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 Delta _ PROPN NN _ 15 nmod _ _ 19 during _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 coming _ VERB VBG _ 22 amod _ _ 22 weekend _ NOUN NN _ 5 nmod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Simon _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 has _ AUX VBZ _ 5 aux _ _ 3 n't _ PART RB _ 5 neg _ _ 4 yet _ ADV RB _ 5 advmod _ _ 5 captured _ VERB VBN _ 11 ccomp _ _ 6 traders _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 attention _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 added _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 SUGAR _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 March _ PROPN NNP _ 3 compound _ _ 3 contract _ NOUN NN _ 12 nsubj _ _ 4 was _ VERB VBD _ 12 cop _ _ 5 off _ ADJ RB _ 12 advmod _ _ 6 0.32 _ NUM CD _ 7 nummod _ _ 7 cent _ NOUN NN _ 5 dep _ _ 8 a _ DET DT _ 9 det _ _ 9 pound _ NOUN NN _ 7 nmod:npmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 13.97 _ NUM CD _ 12 nummod _ _ 12 cents _ NOUN NNS _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 point _ NOUN NN _ 10 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 early _ ADV JJ _ 6 advmod _ _ 6 trading _ NOUN NN _ 3 nmod _ _ 7 the _ DET DT _ 9 det _ _ 8 March _ PROPN NNP _ 9 compound _ _ 9 price _ NOUN NN _ 10 nsubj _ _ 10 rose _ VERB VBD _ 0 root _ _ 11 to _ ADP TO _ 16 case _ _ 12 as _ ADV RB _ 15 advmod _ _ 13 high _ ADJ JJ _ 15 advmod _ _ 14 as _ ADP IN _ 15 advmod _ _ 15 14.22 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 nmod _ _ 17 when _ ADV WRB _ 21 advmod _ _ 18 the _ DET DT _ 20 det _ _ 19 stock _ NOUN NN _ 20 compound _ _ 20 market _ NOUN NN _ 21 nsubj _ _ 21 recovered _ VERB VBD _ 10 advcl _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 price _ NOUN NN _ 27 nsubj _ _ 26 then _ ADV RB _ 27 advmod _ _ 27 fell _ VERB VBD _ 10 conj _ _ 28 back _ ADV RB _ 27 advmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 price-depressing _ ADJ JJ _ 3 amod _ _ 3 factor _ NOUN NN _ 9 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 analyst _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 was _ VERB VBD _ 0 root _ _ 10 that _ SCONJ IN _ 31 mark _ _ 11 India _ PROPN NNP _ 31 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 16 nsubjpass _ _ 14 had _ AUX VBD _ 16 aux _ _ 15 been _ AUX VBN _ 16 auxpass _ _ 16 expected _ VERB VBN _ 11 acl:relcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 buy _ VERB VB _ 16 xcomp _ _ 19 around _ ADV IN _ 20 advmod _ _ 20 200,000 _ NUM CD _ 21 nummod _ _ 21 tons _ NOUN NNS _ 18 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 sugar _ NOUN NN _ 21 nmod _ _ 24 in _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 world _ NOUN NN _ 27 compound _ _ 27 market _ NOUN NN _ 18 nmod _ _ 28 , _ PUNCT , _ 11 punct _ _ 29 did _ AUX VBD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 make _ VERB VB _ 9 ccomp _ _ 32 any _ DET DT _ 33 det _ _ 33 purchases _ NOUN NNS _ 31 dobj _ _ 34 . _ PUNCT . _ 9 punct _ _ 1 India _ PROPN NNP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 bought _ VERB VBD _ 15 ccomp _ _ 4 200,000 _ NUM CD _ 5 nummod _ _ 5 tons _ NOUN NNS _ 3 dobj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 expected _ VERB VBN _ 3 conj _ _ 9 to _ PART TO _ 10 mark _ _ 10 buy _ VERB VB _ 8 xcomp _ _ 11 more _ ADJ JJR _ 10 dobj _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 analyst _ NOUN NN _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Another _ DET DT _ 2 det _ _ 2 analyst _ NOUN NN _ 3 nsubj _ _ 3 thought _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 India _ PROPN NNP _ 8 nsubj _ _ 6 may _ AUX MD _ 8 aux _ _ 7 have _ AUX VB _ 8 aux _ _ 8 pulled _ VERB VBN _ 3 ccomp _ _ 9 back _ ADV RB _ 8 advmod _ _ 10 because _ ADP IN _ 13 case _ _ 11 of _ ADP IN _ 10 mwe _ _ 12 the _ DET DT _ 13 det _ _ 13 concern _ NOUN NN _ 8 nmod _ _ 14 over _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 30 punct _ _ 2 India _ PROPN NNP _ 5 nsubj _ _ 3 may _ AUX MD _ 5 aux _ _ 4 have _ AUX VB _ 5 aux _ _ 5 felt _ VERB VBN _ 30 ccomp _ _ 6 that _ SCONJ IN _ 24 mark _ _ 7 if _ SCONJ IN _ 9 mark _ _ 8 there _ PRON EX _ 9 expl _ _ 9 was _ VERB VBD _ 24 advcl _ _ 10 a _ DET DT _ 12 det _ _ 11 severe _ ADJ JJ _ 12 amod _ _ 12 drop _ NOUN NN _ 9 nsubj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 market _ NOUN NN _ 12 nmod _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 it _ PRON PRP _ 19 nsubj _ _ 19 affected _ VERB VBD _ 9 conj _ _ 20 sugar _ NOUN NN _ 19 dobj _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 could _ AUX MD _ 24 aux _ _ 24 buy _ VERB VB _ 5 ccomp _ _ 25 at _ ADP IN _ 27 case _ _ 26 lower _ ADJ JJR _ 27 amod _ _ 27 prices _ NOUN NNS _ 24 nmod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 '' _ PUNCT '' _ 30 punct _ _ 30 said _ VERB VBD _ 0 root _ _ 31 Judith _ PROPN NNP _ 32 compound _ _ 32 Ganes _ PROPN NNP _ 30 nsubj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 analyst _ NOUN NN _ 32 appos _ _ 35 for _ ADP IN _ 38 case _ _ 36 Shearson _ PROPN NNP _ 38 compound _ _ 37 Lehman _ PROPN NNP _ 38 compound _ _ 38 Hutton _ PROPN NNP _ 34 nmod _ _ 39 , _ PUNCT , _ 38 punct _ _ 40 New _ PROPN NNP _ 41 compound _ _ 41 York _ PROPN NNP _ 38 appos _ _ 42 . _ PUNCT . _ 30 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 rate _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 she _ PRON PRP _ 6 nsubj _ _ 6 added _ VERB VBD _ 10 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 India _ PROPN NNP _ 10 nsubj _ _ 10 needs _ VERB VBZ _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 sugar _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 so _ ADP IN _ 17 dep _ _ 15 it _ PRON PRP _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 be _ VERB VB _ 10 parataxis _ _ 18 in _ ADV IN _ 17 advmod _ _ 19 sooner _ ADV RBR _ 17 advmod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 later _ ADV RBR _ 19 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 buy _ VERB VB _ 17 xcomp _ _ 24 it _ PRON PRP _ 23 dobj _ _ 25 . _ PUNCT . _ 10 punct _ _ 26 '' _ PUNCT '' _ 10 punct _ _ 1 FARM _ NOUN NN _ 2 compound _ _ 2 PRODUCTS _ NOUN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 prices _ NOUN NNS _ 9 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 cattle _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 hog _ NOUN NN _ 8 compound _ _ 7 futures _ NOUN NNS _ 8 compound _ _ 8 contracts _ NOUN NNS _ 4 conj _ _ 9 dropped _ VERB VBD _ 0 root _ _ 10 sharply _ ADV RB _ 9 advmod _ _ 11 because _ SCONJ IN _ 13 mark _ _ 12 traders _ NOUN NNS _ 13 nsubj _ _ 13 speculated _ VERB VBD _ 9 advcl _ _ 14 that _ SCONJ IN _ 21 mark _ _ 15 the _ DET DT _ 18 det _ _ 16 stock _ NOUN NN _ 18 compound _ _ 17 market _ NOUN NN _ 18 compound _ _ 18 plunge _ NOUN NN _ 21 nsubj _ _ 19 Friday _ PROPN NNP _ 21 nmod:tmod _ _ 20 will _ AUX MD _ 21 aux _ _ 21 linger _ VERB VB _ 13 ccomp _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 minds _ NOUN NNS _ 21 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 U.S. _ PROPN NNP _ 27 compound _ _ 27 consumers _ NOUN NNS _ 24 nmod _ _ 28 long _ ADV RB _ 29 advmod _ _ 29 enough _ ADV RB _ 21 advmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 prompt _ VERB VB _ 29 dep _ _ 32 them _ PRON PRP _ 31 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 rein _ VERB VB _ 31 xcomp _ _ 35 in _ ADP RP _ 34 nmod _ _ 36 their _ PRON PRP$ _ 37 nmod:poss _ _ 37 spending _ NOUN NN _ 34 dobj _ _ 38 at _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 supermarket _ NOUN NN _ 37 nmod _ _ 41 , _ PUNCT , _ 34 punct _ _ 42 which _ PRON WDT _ 44 nsubj _ _ 43 would _ AUX MD _ 44 aux _ _ 44 hurt _ VERB VB _ 34 dep _ _ 45 demand _ NOUN NN _ 44 dobj _ _ 46 for _ ADP IN _ 47 case _ _ 47 beef _ NOUN NN _ 45 nmod _ _ 48 and _ CONJ CC _ 47 cc _ _ 49 pork _ NOUN NN _ 47 conj _ _ 50 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 price _ NOUN NN _ 10 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 hog _ NOUN NN _ 6 compound _ _ 6 contract _ NOUN NN _ 2 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 October _ PROPN NNP _ 9 compound _ _ 9 delivery _ NOUN NN _ 6 nmod _ _ 10 dropped _ VERB VBD _ 0 root _ _ 11 its _ PRON PRP$ _ 15 nmod:poss _ _ 12 maximum _ NOUN NN _ 13 nmod:npmod _ _ 13 permissible _ ADJ JJ _ 15 amod _ _ 14 daily _ ADJ JJ _ 15 amod _ _ 15 limit _ NOUN NN _ 10 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 1.5 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 pound _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 prices _ NOUN NNS _ 8 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 most _ ADJ JJS _ 7 amod _ _ 5 grain _ NOUN NN _ 7 compound _ _ 6 futures _ NOUN NNS _ 7 compound _ _ 7 contracts _ NOUN NNS _ 2 nmod _ _ 8 rose _ VERB VBD _ 0 root _ _ 9 slightly _ ADV RB _ 8 advmod _ _ 10 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 11 out _ ADP IN _ 13 case _ _ 12 of _ ADP IN _ 13 case _ _ 13 relief _ NOUN NN _ 8 nmod _ _ 14 that _ SCONJ IN _ 19 mark _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 19 nsubj _ _ 18 was _ AUX VBD _ 19 aux _ _ 19 showing _ VERB VBG _ 13 ccomp _ _ 20 signs _ NOUN NNS _ 19 dobj _ _ 21 of _ SCONJ IN _ 22 mark _ _ 22 recovering _ VERB VBG _ 20 acl _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 Earlier _ ADV RBR _ 4 advmod _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 session _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 prices _ NOUN NNS _ 12 nsubj _ _ 8 of _ ADP IN _ 11 case _ _ 9 several _ ADJ JJ _ 11 amod _ _ 10 soybean _ NOUN NN _ 11 compound _ _ 11 contracts _ NOUN NNS _ 7 nmod _ _ 12 set _ VERB VBD _ 0 root _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 lows _ NOUN NNS _ 12 dobj _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 broad _ ADJ JJ _ 3 amod _ _ 3 rally _ NOUN NN _ 4 nsubj _ _ 4 began _ VERB VBD _ 0 root _ _ 5 when _ ADV WRB _ 9 advmod _ _ 6 several _ ADJ JJ _ 8 amod _ _ 7 major _ ADJ JJ _ 8 amod _ _ 8 processors _ NOUN NNS _ 9 nsubj _ _ 9 began _ VERB VBD _ 4 advcl _ _ 10 buying _ VERB VBG _ 9 xcomp _ _ 11 futures _ NOUN NNS _ 12 compound _ _ 12 contracts _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 apparently _ ADV RB _ 16 advmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 take _ VERB VB _ 10 advcl _ _ 17 advantage _ NOUN NN _ 16 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 price _ NOUN NN _ 21 compound _ _ 21 dip _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 Knight-Ridder _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 report _ VERB VB _ 3 ccomp _ _ 7 increased _ VERB VBN _ 8 amod _ _ 8 earnings _ NOUN NNS _ 6 dobj _ _ 9 per _ ADP IN _ 10 case _ _ 10 share _ NOUN NN _ 8 nmod _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 contrary _ ADJ NN _ 6 xcomp _ _ 17 to _ ADP TO _ 21 case _ _ 18 reported _ VERB VBN _ 21 amod _ _ 19 analysts _ NOUN NNS _ 21 nmod:poss _ _ 20 ' _ PART POS _ 19 case _ _ 21 comments _ NOUN NNS _ 16 nmod _ _ 22 that _ SCONJ IN _ 29 mark _ _ 23 the _ DET DT _ 25 det _ _ 24 publishing _ VERB NN _ 25 amod _ _ 25 company _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 earnings _ NOUN NNS _ 29 nsubj _ _ 28 would _ AUX MD _ 29 aux _ _ 29 be _ VERB VB _ 21 ccomp _ _ 30 down _ ADV RB _ 29 advmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 company _ NOUN NN _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 believed _ VERB VBD _ 4 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 confusion _ NOUN NN _ 10 nsubjpass _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 caused _ VERB VBN _ 6 ccomp _ _ 11 when _ ADV WRB _ 22 advmod _ _ 12 James _ PROPN NNP _ 13 compound _ _ 13 Batten _ PROPN NNP _ 22 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Knight-Ridder _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 chairman _ NOUN NN _ 13 appos _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 chief _ ADJ JJ _ 20 amod _ _ 20 executive _ NOUN NN _ 17 conj _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 told _ VERB VBD _ 10 advcl _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 analysts _ NOUN NNS _ 22 dobj _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 weeks _ NOUN NNS _ 28 nmod:npmod _ _ 28 ago _ ADV IN _ 22 advmod _ _ 29 that _ SCONJ DT _ 48 mark _ _ 30 Knight-Ridder _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 earnings _ NOUN NNS _ 48 nsubj _ _ 33 per _ ADP IN _ 34 case _ _ 34 share _ NOUN NN _ 32 nmod _ _ 35 for _ ADP IN _ 39 case _ _ 36 the _ DET DT _ 39 det _ _ 37 first _ ADJ JJ _ 39 amod _ _ 38 nine _ NUM CD _ 39 nummod _ _ 39 months _ NOUN NNS _ 32 nmod _ _ 40 of _ ADP IN _ 41 case _ _ 41 1989 _ NUM CD _ 39 nmod _ _ 42 would _ AUX MD _ 48 aux _ _ 43 `` _ PUNCT `` _ 48 punct _ _ 44 be _ VERB VB _ 48 cop _ _ 45 behind _ ADP IN _ 48 case _ _ 46 a _ DET DT _ 48 det _ _ 47 little _ ADJ JJ _ 48 amod _ _ 48 bit _ NOUN NN _ 22 ccomp _ _ 49 '' _ PUNCT '' _ 48 punct _ _ 50 from _ ADP IN _ 52 case _ _ 51 like _ ADJ JJ _ 52 amod _ _ 52 period _ NOUN NN _ 48 nmod _ _ 53 of _ ADP IN _ 52 dep _ _ 1 The _ DET DT _ 3 det _ _ 2 Knight-Ridder _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 third-quarter _ ADJ JJ _ 7 amod _ _ 7 earnings _ NOUN NNS _ 17 nsubjpass _ _ 8 that _ ADP IN _ 11 dobj _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 11 nsubj _ _ 11 plans _ VERB VBZ _ 7 acl:relcl _ _ 12 to _ PART TO _ 13 mark _ _ 13 report _ VERB VB _ 11 xcomp _ _ 14 Oct. _ PROPN NNP _ 13 nmod:tmod _ _ 15 24 _ NUM CD _ 14 nummod _ _ 16 are _ AUX VBP _ 17 auxpass _ _ 17 expected _ VERB VBN _ 4 ccomp _ _ 18 to _ PART TO _ 19 mark _ _ 19 be _ VERB VB _ 17 xcomp _ _ 20 up _ ADV RB _ 19 advmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 comfortable _ ADJ JJ _ 3 ccomp _ _ 8 '' _ PUNCT '' _ 7 punct _ _ 9 with _ ADP IN _ 13 case _ _ 10 revised _ VERB VBN _ 13 amod _ _ 11 analysts _ NOUN NNS _ 13 nmod:poss _ _ 12 ' _ PART POS _ 11 case _ _ 13 projections _ NOUN NNS _ 7 nmod _ _ 14 that _ SCONJ IN _ 18 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nsubj _ _ 17 would _ AUX MD _ 18 aux _ _ 18 report _ VERB VB _ 13 ccomp _ _ 19 earnings _ NOUN NNS _ 18 dobj _ _ 20 of _ ADP IN _ 23 case _ _ 21 between _ ADP IN _ 23 amod _ _ 22 62 _ NUM CD _ 23 nummod _ _ 23 cents _ NOUN NNS _ 19 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 64 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 23 conj _ _ 27 a _ DET DT _ 28 det _ _ 28 share _ NOUN NN _ 23 nmod:npmod _ _ 29 , _ PUNCT , _ 18 punct _ _ 30 compared _ VERB VBN _ 34 case _ _ 31 with _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 53 _ NUM CD _ 34 nummod _ _ 34 cents _ NOUN NNS _ 18 advcl _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 it _ PRON PRP _ 38 nsubj _ _ 38 reported _ VERB VBD _ 34 acl:relcl _ _ 39 for _ ADP IN _ 43 case _ _ 40 the _ DET DT _ 43 det _ _ 41 1988 _ NUM CD _ 43 nummod _ _ 42 third _ ADJ JJ _ 43 amod _ _ 43 quarter _ NOUN NN _ 38 nmod _ _ 44 . _ PUNCT . _ 3 punct _ _ 1 Knight-Ridder _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 agreed _ VERB VBD _ 2 ccomp _ _ 5 with _ ADP IN _ 6 case _ _ 6 estimates _ NOUN NNS _ 4 nmod _ _ 7 that _ SCONJ WDT _ 18 mark _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 18 nsubj _ _ 10 for _ ADP IN _ 11 case _ _ 11 all _ DET DT _ 9 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 1989 _ NUM CD _ 11 nmod _ _ 14 would _ AUX MD _ 18 aux _ _ 15 be _ VERB VB _ 18 cop _ _ 16 around _ ADV RB _ 18 advmod _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 2.86 _ NUM CD _ 6 ccomp _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 compared _ VERB VBN _ 25 case _ _ 23 with _ ADP IN _ 25 case _ _ 24 $ _ SYM $ _ 25 dep _ _ 25 2.59 _ NUM CD _ 18 advcl _ _ 26 a _ DET DT _ 27 det _ _ 27 share _ NOUN NN _ 25 nmod:npmod _ _ 28 a _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 30 nmod:npmod _ _ 30 earlier _ ADV RBR _ 25 advmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ ADJ JJ _ 7 amod _ _ 7 trading _ NOUN NN _ 11 nmod _ _ 8 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 Knight-Ridder _ PROPN NNP _ 11 nsubj _ _ 11 closed _ VERB VBD _ 0 root _ _ 12 at _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 51.75 _ NUM CD _ 11 nmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 down _ ADV RB _ 11 advmod _ _ 17 37.5 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 DD _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 extended _ VERB VBD _ 4 ccomp _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 $ _ SYM $ _ 10 amod _ _ 9 45-a-share _ ADJ JJ _ 8 dep _ _ 10 offer _ NOUN NN _ 6 dobj _ _ 11 for _ ADP IN _ 15 case _ _ 12 Dunkin _ PROPN NNP _ 15 compound _ _ 13 ' _ PUNCT '' _ 15 punct _ _ 14 Donuts _ PROPN NNP _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 10 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 Nov. _ PROPN NNP _ 6 nmod _ _ 18 1 _ NUM CD _ 17 nummod _ _ 19 from _ ADP IN _ 20 case _ _ 20 yesterday _ NOUN NN _ 6 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 3 nsubj _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 6 det _ _ 5 indicated _ VERB JJ _ 6 amod _ _ 6 value _ NOUN NN _ 3 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 268 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 DD _ PROPN NNP _ 2 compound _ _ 2 Acquisition _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 partnership _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 14 case _ _ 7 Unicorp _ PROPN NNP _ 9 compound _ _ 8 Canada _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 14 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 Kingsbridge _ PROPN NNP _ 14 compound _ _ 12 Capital _ PROPN NNP _ 14 compound _ _ 13 Group _ PROPN NNP _ 14 compound _ _ 14 unit _ NOUN NN _ 5 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Cara _ PROPN NNP _ 18 compound _ _ 17 Operations _ PROPN NNP _ 18 compound _ _ 18 Ltd _ PROPN NNP _ 14 conj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 previously _ ADV RB _ 3 advmod _ _ 3 reported _ VERB VBN _ 19 advcl _ _ 4 , _ PUNCT , _ 19 punct _ _ 5 under _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 terms _ NOUN NNS _ 19 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 confidentiality _ NOUN NN _ 11 compound _ _ 11 agreement _ NOUN NN _ 7 nmod _ _ 12 with _ ADP IN _ 15 case _ _ 13 Dunkin _ PROPN NNP _ 15 compound _ _ 14 ' _ PUNCT '' _ 15 punct _ _ 15 Donuts _ PROPN NNP _ 11 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 partners _ NOUN NNS _ 19 nsubj _ _ 19 agreed _ VERB VBD _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 keep _ VERB VB _ 19 ccomp _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 offer _ NOUN NN _ 24 nsubj _ _ 24 open _ ADJ JJ _ 21 xcomp _ _ 25 until _ ADP IN _ 26 case _ _ 26 Nov. _ PROPN NNP _ 24 nmod _ _ 27 1 _ NUM CD _ 26 nummod _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 and _ CONJ CC _ 21 cc _ _ 30 not _ PART RB _ 32 neg _ _ 31 to _ PART TO _ 32 mark _ _ 32 acquire _ VERB VB _ 21 conj _ _ 33 any _ DET DT _ 35 det _ _ 34 additional _ ADJ JJ _ 35 amod _ _ 35 shares _ NOUN NNS _ 32 dobj _ _ 36 except _ ADP IN _ 40 case _ _ 37 through _ ADP IN _ 40 case _ _ 38 a _ DET DT _ 40 det _ _ 39 tender _ NOUN NN _ 40 compound _ _ 40 offer _ NOUN NN _ 32 nmod _ _ 41 expiring _ VERB VBG _ 40 acl _ _ 42 on _ ADP IN _ 44 case _ _ 43 that _ DET DT _ 44 det _ _ 44 date _ NOUN NN _ 41 nmod _ _ 45 . _ PUNCT . _ 19 punct _ _ 1 DD _ PROPN NNP _ 2 compound _ _ 2 Acquisition _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 already _ ADV RB _ 7 advmod _ _ 7 owns _ VERB VBZ _ 3 ccomp _ _ 8 15 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 common _ ADJ JJ _ 13 amod _ _ 13 shares _ NOUN NNS _ 9 nmod _ _ 14 of _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 doughnut _ NOUN NN _ 18 compound _ _ 17 shop _ NOUN NN _ 18 compound _ _ 18 chain _ NOUN NN _ 13 nmod _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 that _ SCONJ IN _ 34 mark _ _ 21 as _ ADV IN _ 24 advmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 close _ NOUN NN _ 34 advcl _ _ 25 of _ ADP IN _ 26 case _ _ 26 business _ NOUN NN _ 24 nmod _ _ 27 Friday _ PROPN NNP _ 24 nmod:tmod _ _ 28 an _ DET DT _ 31 det _ _ 29 additional _ ADJ JJ _ 30 advmod _ _ 30 11 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 34 nsubjpass _ _ 32 had _ AUX VBD _ 34 aux _ _ 33 been _ AUX VBN _ 34 auxpass _ _ 34 tendered _ VERB VBN _ 7 conj _ _ 35 to _ ADP TO _ 37 case _ _ 36 its _ PRON PRP$ _ 37 nmod:poss _ _ 37 offer _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Dunkin _ PROPN NNP _ 3 compound _ _ 2 ' _ PUNCT '' _ 3 punct _ _ 3 Donuts _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 based _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 Randolph _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Mass _ PROPN NNP _ 7 appos _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Cara _ PROPN NNP _ 2 compound _ _ 2 Operations _ PROPN NNP _ 27 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 7 det _ _ 5 food _ NOUN NN _ 7 compound _ _ 6 services _ NOUN NNS _ 7 compound _ _ 7 concern _ NOUN NN _ 2 appos _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 Unicorp _ PROPN NNP _ 2 conj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 holding _ VERB VBG _ 14 amod _ _ 14 company _ NOUN NN _ 10 appos _ _ 15 with _ ADP IN _ 16 case _ _ 16 interests _ NOUN NNS _ 14 nmod _ _ 17 in _ ADP IN _ 21 case _ _ 18 oil _ NOUN NN _ 21 compound _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 natural _ ADJ JJ _ 18 conj _ _ 21 gas _ NOUN NN _ 16 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 financial _ ADJ JJ _ 24 amod _ _ 24 services _ NOUN NNS _ 21 conj _ _ 25 , _ PUNCT , _ 10 punct _ _ 26 are _ AUX VBP _ 27 auxpass _ _ 27 based _ VERB VBN _ 0 root _ _ 28 in _ ADP IN _ 29 case _ _ 29 Toronto _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 27 punct _ _ 1 Golden _ PROPN NNP _ 4 compound _ _ 2 West _ PROPN NNP _ 4 compound _ _ 3 Financial _ PROPN NNP _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 19 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 riding _ VERB VBG _ 4 acl _ _ 7 above _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 turbulence _ NOUN NN _ 6 nmod _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 troubled _ VERB VBN _ 9 acl:relcl _ _ 13 most _ ADJ JJS _ 12 dobj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 thrift _ NOUN NN _ 17 compound _ _ 17 industry _ NOUN NN _ 13 nmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 posted _ VERB VBD _ 0 root _ _ 20 a _ DET DT _ 23 det _ _ 21 16 _ NUM CD _ 22 compound _ _ 22 % _ SYM NN _ 23 amod _ _ 23 increase _ NOUN NN _ 19 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 third-quarter _ ADJ JJ _ 26 amod _ _ 26 earnings _ NOUN NNS _ 23 nmod _ _ 27 to _ ADP TO _ 28 case _ _ 28 $ _ SYM $ _ 19 nmod _ _ 29 41.8 _ NUM CD _ 28 compound _ _ 30 millon _ NOUN NN _ 28 dep _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 or _ CONJ CC _ 28 cc _ _ 33 66 _ NUM CD _ 34 nummod _ _ 34 cents _ NOUN NNS _ 28 conj _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 earned _ VERB VBD _ 0 root _ _ 4 $ _ SYM $ _ 3 dobj _ _ 5 36 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 or _ CONJ CC _ 4 cc _ _ 9 57 _ NUM CD _ 10 nummod _ _ 10 cents _ NOUN NNS _ 4 conj _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 year-ago _ ADJ JJ _ 17 amod _ _ 17 quarter _ NOUN NN _ 3 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Herbert _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Sandler _ PROPN NNP _ 20 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chairman _ NOUN NN _ 3 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 chief _ ADJ JJ _ 9 amod _ _ 8 executive _ ADJ JJ _ 9 amod _ _ 9 officer _ NOUN NN _ 5 conj _ _ 10 of _ ADP IN _ 18 case _ _ 11 the _ DET DT _ 18 det _ _ 12 Oakland _ PROPN NNP _ 18 dep _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 Calif. _ PROPN NNP _ 12 dep _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 savings-and-loan _ ADJ JJ _ 18 amod _ _ 17 holding _ VERB VBG _ 18 amod _ _ 18 company _ NOUN NN _ 5 nmod _ _ 19 , _ PUNCT , _ 3 punct _ _ 20 credited _ VERB VBD _ 0 root _ _ 21 the _ DET DT _ 23 det _ _ 22 high _ ADJ JJ _ 23 amod _ _ 23 number _ NOUN NN _ 20 dobj _ _ 24 of _ ADP IN _ 25 case _ _ 25 loans _ NOUN NNS _ 23 nmod _ _ 26 added _ VERB VBN _ 25 acl _ _ 27 to _ ADP TO _ 31 case _ _ 28 the _ DET DT _ 29 det _ _ 29 company _ NOUN NN _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 portfolio _ NOUN NN _ 26 nmod _ _ 32 over _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 last _ ADJ JJ _ 36 amod _ _ 35 12 _ NUM CD _ 36 nummod _ _ 36 months _ NOUN NNS _ 26 nmod _ _ 37 for _ SCONJ IN _ 38 mark _ _ 38 broadening _ VERB VBG _ 20 advcl _ _ 39 its _ PRON PRP$ _ 42 nmod:poss _ _ 40 earning _ NOUN NN _ 42 compound _ _ 41 asset _ NOUN NN _ 42 compound _ _ 42 base _ NOUN NN _ 38 dobj _ _ 43 and _ CONJ CC _ 38 cc _ _ 44 improving _ VERB VBG _ 38 conj _ _ 45 profit _ NOUN NN _ 46 compound _ _ 46 performance _ NOUN NN _ 44 dobj _ _ 47 . _ PUNCT . _ 20 punct _ _ 1 However _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 executive _ NOUN NN _ 5 nsubj _ _ 5 noted _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 slackening _ VERB VBG _ 8 amod _ _ 8 demand _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 mortgages _ NOUN NNS _ 8 nmod _ _ 12 depressed _ VERB VBD _ 5 ccomp _ _ 13 new _ ADJ JJ _ 15 amod _ _ 14 loan _ NOUN NN _ 15 compound _ _ 15 originations _ NOUN NNS _ 12 dobj _ _ 16 to _ ADP TO _ 17 case _ _ 17 $ _ SYM $ _ 12 nmod _ _ 18 1 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 17 appos _ _ 23 below _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 same _ ADJ JJ _ 26 amod _ _ 26 period _ NOUN NN _ 22 nmod _ _ 27 last _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 26 nmod:tmod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 savings _ NOUN NNS _ 3 compound _ _ 3 activity _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Sandler _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 consumer _ NOUN NN _ 9 compound _ _ 9 deposits _ NOUN NNS _ 11 nsubj _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 enjoyed _ VERB VBN _ 7 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 steady _ ADJ JJ _ 14 amod _ _ 14 increase _ NOUN NN _ 11 dobj _ _ 15 throughout _ ADP IN _ 16 case _ _ 16 1989 _ NUM CD _ 11 nmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 and _ CONJ CC _ 11 cc _ _ 19 topped _ VERB VBD _ 11 conj _ _ 20 $ _ SYM $ _ 19 dobj _ _ 21 11 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 at _ ADP IN _ 26 case _ _ 24 quarter _ NOUN NN _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 end _ NOUN NN _ 19 nmod _ _ 27 for _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 first _ ADJ JJ _ 30 amod _ _ 30 time _ NOUN NN _ 19 nmod _ _ 31 in _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 33 det _ _ 33 company _ NOUN NN _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 history _ NOUN NN _ 30 nmod _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 Deposit _ NOUN NNP _ 2 compound _ _ 2 growth _ NOUN NN _ 3 nsubj _ _ 3 amounted _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 5 case _ _ 5 $ _ SYM $ _ 3 nmod _ _ 6 393 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 more _ ADV JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 double _ ADV RB _ 14 nummod _ _ 12 the _ DET DT _ 14 det _ _ 13 year-ago _ ADJ JJ _ 14 amod _ _ 14 figure _ NOUN NN _ 5 appos _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Whirlpool _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Benton _ PROPN NNP _ 5 compound _ _ 5 Harbor _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mich. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 developed _ VERB VBN _ 9 ccomp _ _ 13 a _ DET DT _ 14 det _ _ 14 process _ NOUN NN _ 12 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 recover _ VERB VB _ 14 acl _ _ 17 environmentally _ ADV RB _ 18 advmod _ _ 18 harmful _ ADJ JJ _ 19 amod _ _ 19 chlorofluorocarbons _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 or _ CONJ CC _ 19 cc _ _ 22 CFCs _ NOUN NNP _ 19 conj _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 that _ PRON WDT _ 26 nsubj _ _ 25 previously _ ADV RB _ 26 advmod _ _ 26 entered _ VERB VBD _ 19 acl:relcl _ _ 27 the _ DET DT _ 28 det _ _ 28 atmosphere _ NOUN NN _ 26 dobj _ _ 29 during _ ADP IN _ 31 case _ _ 30 in-home _ ADJ JJ _ 31 amod _ _ 31 repair _ NOUN NN _ 26 nmod _ _ 32 of _ ADP IN _ 33 case _ _ 33 refrigerators _ NOUN NNS _ 31 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 freezers _ NOUN NNS _ 33 conj _ _ 36 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 maker _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 home _ NOUN NN _ 5 compound _ _ 5 appliances _ NOUN NNS _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 process _ NOUN NN _ 37 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 11 nsubj _ _ 11 involves _ VERB VBZ _ 8 acl:relcl _ _ 12 the _ DET DT _ 13 det _ _ 13 use _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 multilayer _ ADJ JJ _ 18 amod _ _ 17 plastic _ NOUN NN _ 18 compound _ _ 18 bag _ NOUN NN _ 13 nmod _ _ 19 during _ ADP IN _ 20 case _ _ 20 repairs _ NOUN NNS _ 13 nmod _ _ 21 to _ PART TO _ 22 mark _ _ 22 capture _ VERB VB _ 13 acl _ _ 23 the _ DET DT _ 25 det _ _ 24 gaseous _ ADJ JJ _ 25 amod _ _ 25 substance _ NOUN NN _ 22 dobj _ _ 26 and _ CONJ CC _ 22 cc _ _ 27 transport _ NOUN NN _ 22 conj _ _ 28 it _ PRON PRP _ 27 dobj _ _ 29 to _ ADP TO _ 32 case _ _ 30 a _ DET DT _ 32 det _ _ 31 recycling _ VERB VBG _ 32 amod _ _ 32 center _ NOUN NN _ 27 nmod _ _ 33 , _ PUNCT , _ 8 punct _ _ 34 is _ VERB VBZ _ 37 cop _ _ 35 already _ ADV RB _ 37 advmod _ _ 36 in _ ADP IN _ 37 case _ _ 37 use _ NOUN NN _ 6 ccomp _ _ 38 at _ ADP IN _ 40 case _ _ 39 a _ DET DT _ 40 det _ _ 40 number _ NOUN NN _ 37 nmod _ _ 41 of _ ADP IN _ 44 case _ _ 42 its _ PRON PRP$ _ 44 nmod:poss _ _ 43 service _ NOUN NN _ 44 compound _ _ 44 centers _ NOUN NNS _ 40 nmod _ _ 45 , _ PUNCT , _ 37 punct _ _ 46 and _ CONJ CC _ 37 cc _ _ 47 will _ AUX MD _ 49 aux _ _ 48 be _ VERB VB _ 49 cop _ _ 49 available _ ADJ JJ _ 37 conj _ _ 50 to _ ADP TO _ 54 case _ _ 51 all _ DET DT _ 54 det _ _ 52 authorized _ VERB VBN _ 54 amod _ _ 53 repair _ NOUN NN _ 54 compound _ _ 54 centers _ NOUN NNS _ 49 nmod _ _ 55 by _ ADP IN _ 56 case _ _ 56 spring _ NOUN NN _ 49 nmod _ _ 57 . _ PUNCT . _ 6 punct _ _ 1 Earlier _ ADJ JJR _ 2 amod _ _ 2 repairs _ NOUN NNS _ 3 nsubj _ _ 3 vented _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 CFCs _ NOUN NNP _ 3 dobj _ _ 6 out _ ADP IN _ 9 case _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 home _ NOUN NN _ 3 nmod _ _ 10 through _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 hose _ NOUN NN _ 3 nmod _ _ 13 directly _ ADV RB _ 16 advmod _ _ 14 into _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 atmosphere _ NOUN NN _ 3 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 CFCs _ NOUN NNS _ 4 nsubjpass _ _ 2 are _ AUX VBP _ 4 auxpass _ _ 3 widely _ ADV RB _ 4 advmod _ _ 4 used _ VERB VBN _ 0 root _ _ 5 as _ ADP IN _ 6 case _ _ 6 solvents _ NOUN NNS _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 coolants _ NOUN NNS _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 fire _ NOUN NN _ 11 compound _ _ 11 suppressants _ NOUN NNS _ 6 conj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 their _ PRON PRP$ _ 3 nmod:poss _ _ 3 use _ NOUN NN _ 6 nsubjpass _ _ 4 has _ AUX VBZ _ 6 aux _ _ 5 been _ AUX VBN _ 6 auxpass _ _ 6 linked _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 potentially _ ADV RB _ 10 advmod _ _ 10 dangerous _ ADJ JJ _ 11 amod _ _ 11 depletion _ NOUN NN _ 6 nmod _ _ 12 of _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 14 det _ _ 14 Earth _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 ozone _ NOUN NN _ 17 compound _ _ 17 layer _ NOUN NN _ 11 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 and _ CONJ CC _ 6 cc _ _ 20 a _ DET DT _ 21 det _ _ 21 number _ NOUN NN _ 25 nsubj _ _ 22 of _ ADP IN _ 23 case _ _ 23 companies _ NOUN NNS _ 21 nmod _ _ 24 are _ AUX VBP _ 25 aux _ _ 25 seeking _ VERB VBG _ 6 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 curtail _ VERB VB _ 25 xcomp _ _ 28 use _ NOUN NN _ 27 dobj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 or _ CONJ CC _ 28 cc _ _ 31 at _ ADP IN _ 32 case _ _ 32 least _ ADJ JJS _ 33 advmod _ _ 33 emission _ NOUN NN _ 28 conj _ _ 34 , _ PUNCT , _ 28 punct _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 substance _ NOUN NN _ 28 conj _ _ 38 . _ PUNCT . _ 6 punct _ _ 1 Whirpool _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 `` _ PUNCT `` _ 6 punct _ _ 5 We _ PRON PRP _ 6 nsubj _ _ 6 see _ VERB VBP _ 2 ccomp _ _ 7 this _ DET DT _ 8 det _ _ 8 process _ NOUN NN _ 6 dobj _ _ 9 as _ ADP IN _ 14 case _ _ 10 a _ DET DT _ 14 det _ _ 11 small _ ADJ JJ _ 14 amod _ _ 12 but _ CONJ CC _ 11 cc _ _ 13 important _ ADJ JJ _ 11 conj _ _ 14 step _ NOUN NN _ 6 nmod _ _ 15 toward _ ADP IN _ 17 case _ _ 16 eventual _ ADJ JJ _ 17 amod _ _ 17 elimination _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 CFC _ PROPN NNP _ 20 compound _ _ 20 use _ NOUN NN _ 17 nmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 appliance _ NOUN NN _ 23 compound _ _ 23 manufacture _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 Maxus _ PROPN NNP _ 3 compound _ _ 2 Energy _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 7 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Dallas _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 discovered _ VERB VBD _ 7 ccomp _ _ 10 a _ DET DT _ 13 det _ _ 11 new _ ADJ JJ _ 13 amod _ _ 12 oil _ NOUN NN _ 13 compound _ _ 13 field _ NOUN NN _ 9 dobj _ _ 14 northeast _ NOUN NN _ 9 advmod _ _ 15 of _ ADP IN _ 20 case _ _ 16 its _ PRON PRP$ _ 20 nmod:poss _ _ 17 previously _ ADV RB _ 18 advmod _ _ 18 discovered _ VERB VBN _ 20 amod _ _ 19 Intan _ PROPN NNP _ 20 compound _ _ 20 Field _ PROPN NNP _ 14 nmod _ _ 21 in _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 southeast _ ADJ NN _ 25 amod _ _ 24 Sumatra _ PROPN NNP _ 25 compound _ _ 25 area _ NOUN NN _ 20 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 Indonesia _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 Maxus _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 did _ AUX VBD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 run _ VERB VB _ 2 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 production _ NOUN NN _ 9 compound _ _ 9 test _ NOUN NN _ 6 dobj _ _ 10 on _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 three _ NUM CD _ 14 nummod _ _ 13 discovery _ NOUN NN _ 14 compound _ _ 14 wells _ NOUN NNS _ 6 nmod _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 drilled _ VERB VBD _ 14 acl:relcl _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 field _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 25 nsubj _ _ 22 is _ VERB VBZ _ 25 cop _ _ 23 about _ ADV IN _ 24 advmod _ _ 24 1.6 _ NUM CD _ 25 nummod _ _ 25 miles _ NOUN NNS _ 19 acl:relcl _ _ 26 from _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Intan _ PROPN NNP _ 29 compound _ _ 29 Field _ PROPN NNP _ 25 nmod _ _ 30 , _ PUNCT , _ 19 punct _ _ 31 because _ SCONJ IN _ 35 mark _ _ 32 the _ DET DT _ 33 det _ _ 33 wells _ NOUN NNS _ 35 nsubj _ _ 34 are _ VERB VBP _ 35 cop _ _ 35 similar _ ADJ JJ _ 6 advcl _ _ 36 to _ ADP TO _ 37 case _ _ 37 others _ NOUN NNS _ 35 nmod _ _ 38 drilled _ VERB VBD _ 37 acl _ _ 39 at _ ADP IN _ 41 case _ _ 40 its _ PRON PRP$ _ 41 nmod:poss _ _ 41 Intan _ PROPN NNP _ 38 nmod _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 Widuri _ PROPN NNP _ 44 compound _ _ 44 fields _ NOUN NNS _ 41 conj _ _ 45 . _ PUNCT . _ 2 punct _ _ 1 However _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Maxus _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 believes _ VERB VBZ _ 4 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 reserves _ NOUN NNS _ 16 nsubj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 field _ NOUN NN _ 8 nmod _ _ 12 are _ VERB VBP _ 16 cop _ _ 13 about _ ADV IN _ 15 advmod _ _ 14 10 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 16 nummod _ _ 16 barrels _ NOUN NNS _ 6 ccomp _ _ 17 of _ ADP IN _ 18 case _ _ 18 oil _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Intan _ PROPN NNP _ 3 compound _ _ 3 Field _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 estimated _ VERB VBN _ 0 root _ _ 6 reserves _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 50 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 barrels _ NOUN NNS _ 6 nmod _ _ 11 and _ CONJ CC _ 5 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 Widuri _ PROPN NNP _ 14 compound _ _ 14 Field _ PROPN NNP _ 16 nsubj _ _ 15 has _ AUX VBZ _ 16 aux _ _ 16 estimated _ VERB VBN _ 5 conj _ _ 17 reserves _ NOUN NNS _ 16 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 225 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 barrels _ NOUN NNS _ 17 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Maxus _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 an _ DET DT _ 5 det _ _ 4 independent _ ADJ JJ _ 5 amod _ _ 5 oil _ NOUN NN _ 1 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 gas _ NOUN NN _ 8 compound _ _ 8 concern _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ VERB VBZ _ 12 cop _ _ 11 the _ DET DT _ 12 det _ _ 12 operator _ NOUN NN _ 0 root _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 owns _ VERB VBZ _ 12 conj _ _ 15 a _ DET DT _ 18 det _ _ 16 56 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 interest _ NOUN NN _ 14 dobj _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 new _ ADJ JJ _ 22 amod _ _ 22 field _ NOUN NN _ 18 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 called _ VERB VBN _ 22 acl _ _ 25 Northeast _ PROPN NNP _ 26 compound _ _ 26 Intan _ PROPN NNP _ 24 xcomp _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 interests _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 owned _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 12 case _ _ 6 BP _ PROPN NNP _ 12 compound _ _ 7 Petroleum _ PROPN NNP _ 12 compound _ _ 8 Development _ PROPN NNP _ 12 compound _ _ 9 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 10 SES _ PROPN NNP _ 12 appos _ _ 11 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 12 Ltd. _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 C. _ PROPN NNP _ 18 compound _ _ 15 Itoh _ PROPN NNP _ 18 compound _ _ 16 Energy _ PROPN NNP _ 18 compound _ _ 17 Co. _ PROPN NNP _ 18 compound _ _ 18 Ltd. _ PROPN NNP _ 12 conj _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 Deminex _ PROPN NNP _ 25 compound _ _ 21 Sumatra _ PROPN NNP _ 25 compound _ _ 22 OEL _ PROPN NNP _ 25 compound _ _ 23 G.m.b _ PROPN NNP _ 25 compound _ _ 24 . _ PUNCT . _ 25 punct _ _ 25 H. _ PROPN NNP _ 12 conj _ _ 26 , _ PUNCT , _ 12 punct _ _ 27 Hispanoil _ PROPN NNP _ 32 compound _ _ 28 -LRB- _ PUNCT -LRB- _ 29 punct _ _ 29 Sumatra _ PROPN NNP _ 32 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 29 punct _ _ 31 Production _ PROPN NNP _ 32 compound _ _ 32 Ltd. _ PROPN NNP _ 12 conj _ _ 33 , _ PUNCT , _ 12 punct _ _ 34 Hudbay _ PROPN NNP _ 39 compound _ _ 35 Oil _ PROPN NNP _ 39 compound _ _ 36 -LRB- _ PUNCT -LRB- _ 37 punct _ _ 37 Indonesia _ PROPN NNP _ 39 dep _ _ 38 -RRB- _ PUNCT -RRB- _ 37 punct _ _ 39 Ltd. _ PROPN NNP _ 12 conj _ _ 40 , _ PUNCT , _ 12 punct _ _ 41 Inpex _ PROPN NNP _ 44 compound _ _ 42 Sumatra _ PROPN NNP _ 44 compound _ _ 43 Co. _ PROPN NNP _ 44 compound _ _ 44 Ltd. _ PROPN NNP _ 12 conj _ _ 45 , _ PUNCT , _ 12 punct _ _ 46 Lasmo _ PROPN NNP _ 48 compound _ _ 47 Sumatra _ PROPN NNP _ 48 compound _ _ 48 Ltd. _ PROPN NNP _ 12 conj _ _ 49 , _ PUNCT , _ 12 punct _ _ 50 Sunda _ PROPN NNP _ 51 compound _ _ 51 Shell _ PROPN NNP _ 12 conj _ _ 52 , _ PUNCT , _ 12 punct _ _ 53 TCR _ PROPN NN _ 55 compound _ _ 54 Sumat _ PROPN NNP _ 55 compound _ _ 55 A.G. _ PROPN NNP _ 12 conj _ _ 56 and _ CONJ CC _ 12 cc _ _ 57 Warrior _ PROPN NNP _ 59 compound _ _ 58 Oil _ PROPN NNP _ 59 compound _ _ 59 Co _ PROPN NNP _ 12 conj _ _ 60 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 production-sharing _ ADJ JJ _ 4 amod _ _ 3 contract _ NOUN NN _ 4 compound _ _ 4 area _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 held _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 8 case _ _ 8 Pertamina _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 14 det _ _ 11 Indonesian _ ADJ JJ _ 14 amod _ _ 12 state _ NOUN NN _ 14 compound _ _ 13 oil _ NOUN NN _ 14 compound _ _ 14 company _ NOUN NN _ 8 appos _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Environmental _ PROPN NNP _ 3 compound _ _ 2 Systems _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 is _ AUX VBZ _ 7 aux _ _ 7 restating _ VERB VBG _ 4 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 results _ NOUN NNS _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 reduce _ VERB VB _ 7 advcl _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 reported _ VERB VBN _ 15 amod _ _ 14 net _ ADJ JJ _ 15 amod _ _ 15 income _ NOUN NN _ 11 dobj _ _ 16 for _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 first _ ADJ JJ _ 20 amod _ _ 19 nine _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 15 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 fiscal _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 20 nmod _ _ 25 after _ SCONJ IN _ 26 mark _ _ 26 discovering _ VERB VBG _ 7 advcl _ _ 27 it _ PRON PRP _ 28 nsubj _ _ 28 took _ VERB VBD _ 26 ccomp _ _ 29 tax _ NOUN NN _ 30 compound _ _ 30 credits _ NOUN NNS _ 28 dobj _ _ 31 that _ PRON WDT _ 35 nsubjpass _ _ 32 already _ ADV RB _ 35 advmod _ _ 33 had _ AUX VBD _ 35 aux _ _ 34 been _ AUX VBN _ 35 auxpass _ _ 35 taken _ VERB VBN _ 30 acl:relcl _ _ 36 last _ ADJ JJ _ 37 amod _ _ 37 year _ NOUN NN _ 35 nmod:tmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 9 det _ _ 2 Little _ PROPN NNP _ 9 dep _ _ 3 Rock _ PROPN NNP _ 2 compound _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 Ark. _ PROPN NNP _ 2 dep _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 hazardous-waste _ ADJ JJ _ 9 amod _ _ 8 services _ NOUN NNS _ 9 compound _ _ 9 company _ NOUN NN _ 10 nsubj _ _ 10 said _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 restatement _ NOUN NN _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 reduce _ VERB VB _ 10 ccomp _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 net _ ADJ NN _ 14 dobj _ _ 17 for _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 nine _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 16 nmod _ _ 21 ended _ VERB VBN _ 20 acl _ _ 22 July _ PROPN NNP _ 21 nmod:tmod _ _ 23 31 _ NUM CD _ 22 nummod _ _ 24 to _ ADP TO _ 25 case _ _ 25 $ _ SYM $ _ 14 nmod _ _ 26 2.5 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 17 _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 25 punct _ _ 35 from _ ADP IN _ 36 case _ _ 36 $ _ SYM $ _ 14 nmod _ _ 37 3.7 _ NUM CD _ 38 compound _ _ 38 million _ NUM CD _ 36 nummod _ _ 39 , _ PUNCT , _ 36 punct _ _ 40 or _ CONJ CC _ 36 cc _ _ 41 26 _ NUM CD _ 42 nummod _ _ 42 cents _ NOUN NNS _ 36 conj _ _ 43 a _ DET DT _ 44 det _ _ 44 share _ NOUN NN _ 42 nmod:npmod _ _ 45 . _ PUNCT . _ 10 punct _ _ 1 Net _ ADJ NN _ 10 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 restated _ VERB VBN _ 1 acl _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 $ _ SYM $ _ 0 root _ _ 11 1.6 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 10 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 previously _ ADV RB _ 4 advmod _ _ 4 reported _ VERB VBD _ 0 root _ _ 5 net _ ADJ NN _ 4 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 2.3 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 or _ CONJ CC _ 7 cc _ _ 12 15 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 7 conj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 12 mark _ _ 5 for _ ADP IN _ 8 case _ _ 6 financial _ ADJ JJ _ 8 amod _ _ 7 reporting _ NOUN NN _ 8 compound _ _ 8 purposes _ NOUN NNS _ 12 nmod _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 year _ NOUN NN _ 12 nmod:tmod _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 took _ VERB VBD _ 3 ccomp _ _ 13 tax _ NOUN NN _ 14 compound _ _ 14 credits _ NOUN NNS _ 12 dobj _ _ 15 that _ PRON WDT _ 18 nsubjpass _ _ 16 will _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 recognized _ VERB VBN _ 14 acl:relcl _ _ 19 for _ ADP IN _ 21 case _ _ 20 tax _ NOUN NN _ 21 compound _ _ 21 purposes _ NOUN NNS _ 18 nmod _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 18 nmod:tmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 because _ ADP IN _ 4 case _ _ 3 of _ ADP IN _ 2 mwe _ _ 4 confusion _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 took _ VERB VBD _ 0 root _ _ 8 those _ DET DT _ 9 det _ _ 9 credits _ NOUN NNS _ 7 dobj _ _ 10 again _ ADV RB _ 7 advmod _ _ 11 in _ SCONJ IN _ 12 mark _ _ 12 reporting _ VERB VBG _ 7 advcl _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 results _ NOUN NNS _ 12 dobj _ _ 15 through _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 first _ ADJ JJ _ 19 amod _ _ 18 nine _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 14 nmod _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 Jack _ PROPN NNP _ 3 compound _ _ 2 W. _ PROPN NNP _ 3 compound _ _ 3 Forrest _ PROPN NNP _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Environmental _ PROPN NNP _ 7 compound _ _ 6 Systems _ PROPN NNPS _ 7 dep _ _ 7 president _ NOUN NN _ 3 appos _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 chief _ ADJ JJ _ 11 amod _ _ 10 executive _ ADJ JJ _ 11 amod _ _ 11 officer _ NOUN NN _ 7 conj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 change _ NOUN NN _ 16 nsubj _ _ 16 increases _ VERB VBZ _ 13 ccomp _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 22 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 effective _ ADJ JJ _ 22 amod _ _ 21 tax _ NOUN NN _ 22 compound _ _ 22 rate _ NOUN NN _ 16 dobj _ _ 23 to _ ADP TO _ 26 case _ _ 24 about _ ADV IN _ 25 advmod _ _ 25 35 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 16 nmod _ _ 27 from _ ADP IN _ 29 case _ _ 28 20 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 16 nmod _ _ 30 . _ PUNCT . _ 13 punct _ _ 1 Memotec _ PROPN NNP _ 3 compound _ _ 2 Data _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 signed _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 10 det _ _ 8 definitive _ ADJ JJ _ 10 amod _ _ 9 merger _ NOUN NN _ 10 compound _ _ 10 agreement _ NOUN NN _ 6 dobj _ _ 11 with _ ADP IN _ 14 case _ _ 12 ISI _ PROPN NNP _ 14 compound _ _ 13 Systems _ PROPN NNPS _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 10 nmod _ _ 15 under _ ADP IN _ 16 case _ _ 16 which _ PRON WDT _ 19 nmod _ _ 17 Memotec _ PROPN NNP _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 acquire _ VERB VB _ 10 acl:relcl _ _ 20 ISI _ PROPN NNP _ 19 dobj _ _ 21 for _ ADP IN _ 23 case _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 20 _ NUM CD _ 19 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 25 punct _ _ 25 U.S. _ PROPN NNP _ 23 appos _ _ 26 . _ PUNCT . _ 25 punct _ _ 27 -RRB- _ PUNCT -RRB- _ 25 punct _ _ 28 a _ DET DT _ 29 det _ _ 29 share _ NOUN NN _ 23 nmod:npmod _ _ 30 , _ PUNCT , _ 23 punct _ _ 31 or _ CONJ CC _ 23 cc _ _ 32 about _ ADV IN _ 33 advmod _ _ 33 $ _ SYM $ _ 23 conj _ _ 34 130 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 , _ PUNCT , _ 33 punct _ _ 37 in _ ADP IN _ 38 case _ _ 38 cash _ NOUN NN _ 33 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 securities _ NOUN NNS _ 38 conj _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 American _ PROPN NNP _ 6 compound _ _ 3 Stock _ PROPN NNP _ 6 compound _ _ 4 Exchange _ PROPN NNP _ 6 compound _ _ 5 composite _ ADJ JJ _ 6 amod _ _ 6 trading _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 ISI _ PROPN NNP _ 9 nsubj _ _ 9 closed _ VERB VBD _ 0 root _ _ 10 up _ ADV RB _ 9 advmod _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 3.125 _ NUM CD _ 10 nmod:npmod _ _ 13 at _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 18.625 _ NUM CD _ 9 nmod _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 Montreal _ PROPN NNP _ 4 compound _ _ 3 Exchange _ PROPN NNP _ 4 compound _ _ 4 trading _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Memotec _ PROPN NNP _ 7 nsubj _ _ 7 closed _ VERB VBD _ 0 root _ _ 8 unchanged _ ADJ JJ _ 7 advmod _ _ 9 at _ ADP IN _ 12 case _ _ 10 10.625 _ NUM CD _ 12 nummod _ _ 11 Canadian _ ADJ JJ _ 12 amod _ _ 12 dollars _ NOUN NNS _ 7 nmod _ _ 13 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 14 US$ _ SYM $ _ 15 dep _ _ 15 9.05 _ NUM CD _ 12 appos _ _ 16 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 Memotec _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 under _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 agreement _ NOUN NN _ 26 nmod _ _ 6 , _ PUNCT , _ 26 punct _ _ 7 ISI _ PROPN NNP _ 26 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 14 det _ _ 10 Braintree _ PROPN NNP _ 14 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Mass. _ PROPN NNP _ 10 dep _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 provider _ NOUN NN _ 7 appos _ _ 15 of _ ADP IN _ 17 case _ _ 16 computer _ NOUN NN _ 17 compound _ _ 17 software _ NOUN NN _ 14 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 services _ NOUN NNS _ 17 conj _ _ 20 to _ ADP TO _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 insurance _ NOUN NN _ 23 compound _ _ 23 industry _ NOUN NN _ 14 nmod _ _ 24 , _ PUNCT , _ 7 punct _ _ 25 will _ AUX MD _ 26 aux _ _ 26 merge _ VERB VB _ 2 ccomp _ _ 27 with _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 U.S. _ PROPN NNP _ 30 compound _ _ 30 unit _ NOUN NN _ 26 nmod _ _ 31 of _ ADP IN _ 32 case _ _ 32 Memotec _ PROPN NNP _ 30 nmod _ _ 33 created _ VERB VBN _ 30 acl _ _ 34 for _ ADP IN _ 36 case _ _ 35 that _ DET DT _ 36 det _ _ 36 purpose _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 Memotec _ PROPN NNP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 a _ DET DT _ 5 det _ _ 4 Montreal-based _ ADJ JJ _ 5 amod _ _ 5 maker _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 8 case _ _ 7 telecommunications _ NOUN NN _ 8 compound _ _ 8 products _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 provider _ NOUN NN _ 5 conj _ _ 11 of _ ADP IN _ 12 case _ _ 12 telecommunications _ NOUN NNS _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 services _ NOUN NNS _ 12 conj _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 Memotec _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 5 nsubj _ _ 5 calls _ VERB VBZ _ 2 ccomp _ _ 6 for _ SCONJ IN _ 9 mark _ _ 7 it _ PRON PRP _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 make _ VERB VB _ 5 advcl _ _ 10 a _ DET DT _ 15 det _ _ 11 $ _ SYM $ _ 15 amod _ _ 12 20-a-share _ ADJ JJ _ 11 dep _ _ 13 cash _ NOUN NN _ 15 compound _ _ 14 tender _ NOUN NN _ 15 compound _ _ 15 offer _ NOUN NN _ 9 dobj _ _ 16 for _ ADP IN _ 18 case _ _ 17 all _ DET DT _ 18 det _ _ 18 shares _ NOUN NNS _ 15 nmod _ _ 19 outstanding _ ADJ JJ _ 18 amod _ _ 20 of _ ADP IN _ 21 case _ _ 21 ISI _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Charles _ PROPN NNP _ 5 compound _ _ 5 Johnston _ PROPN NNP _ 12 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 ISI _ PROPN NNP _ 8 compound _ _ 8 chairman _ NOUN NN _ 5 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 president _ NOUN NN _ 8 conj _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 agreed _ VERB VBD _ 3 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 sell _ VERB VB _ 12 xcomp _ _ 15 his _ PRON PRP$ _ 18 nmod:poss _ _ 16 60 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 stake _ NOUN NN _ 14 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 ISI _ PROPN NNP _ 18 nmod _ _ 21 to _ ADP TO _ 22 case _ _ 22 Memotec _ PROPN NNP _ 14 nmod _ _ 23 upon _ ADP IN _ 24 case _ _ 24 completion _ NOUN NN _ 14 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 tender _ NOUN NN _ 28 compound _ _ 28 offer _ NOUN NN _ 24 nmod _ _ 29 for _ ADP IN _ 31 case _ _ 30 a _ DET DT _ 31 det _ _ 31 combination _ NOUN NN _ 14 nmod _ _ 32 of _ ADP IN _ 33 case _ _ 33 cash _ NOUN NN _ 31 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 Memotec _ PROPN NNP _ 36 compound _ _ 36 stock _ NOUN NN _ 33 conj _ _ 37 and _ CONJ CC _ 33 cc _ _ 38 debentures _ NOUN NNS _ 33 conj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Memotec _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 tender _ NOUN NN _ 5 compound _ _ 5 offer _ NOUN NN _ 7 nsubjpass _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 conditioned _ VERB VBN _ 2 ccomp _ _ 8 on _ ADP IN _ 14 case _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 among _ ADP IN _ 12 case _ _ 11 other _ ADJ JJ _ 12 amod _ _ 12 things _ NOUN NNS _ 14 dep _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 holders _ NOUN NNS _ 7 nmod _ _ 15 tendering _ VERB VBG _ 14 acl _ _ 16 at _ ADP IN _ 17 case _ _ 17 least _ ADJ JJS _ 18 nmod:npmod _ _ 18 15 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 15 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 shares _ NOUN NNS _ 19 nmod _ _ 23 outstanding _ ADJ JJ _ 22 amod _ _ 24 , _ PUNCT , _ 22 punct _ _ 25 other _ ADJ JJ _ 22 amod _ _ 26 than _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 shares _ NOUN NNS _ 25 nmod _ _ 29 held _ VERB VBN _ 28 acl _ _ 30 by _ ADP IN _ 32 case _ _ 31 Mr. _ PROPN NNP _ 32 compound _ _ 32 Johnston _ PROPN NNP _ 29 nmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 ISI _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 board _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 instructed _ VERB VBN _ 2 ccomp _ _ 7 management _ NOUN NN _ 6 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 accept _ VERB VB _ 6 advcl _ _ 10 inquiries _ NOUN NNS _ 9 dobj _ _ 11 from _ ADP IN _ 13 case _ _ 12 any _ DET DT _ 13 det _ _ 13 others _ NOUN NNS _ 10 nmod _ _ 14 interested _ VERB JJ _ 13 acl _ _ 15 in _ SCONJ IN _ 16 mark _ _ 16 making _ VERB VBG _ 14 advcl _ _ 17 a _ DET DT _ 18 det _ _ 18 bid _ NOUN NN _ 16 dobj _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 ISI _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 withdraw _ VERB VB _ 2 ccomp _ _ 6 from _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 merger _ NOUN NN _ 9 compound _ _ 9 agreement _ NOUN NN _ 5 nmod _ _ 10 with _ ADP IN _ 11 case _ _ 11 Memotec _ PROPN NNP _ 9 nmod _ _ 12 if _ SCONJ IN _ 16 mark _ _ 13 a _ DET DT _ 15 det _ _ 14 better _ ADJ JJR _ 15 amod _ _ 15 bid _ NOUN NN _ 16 nsubj _ _ 16 surfaces _ VERB NNS _ 5 advcl _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 CMS _ PROPN NNP _ 3 compound _ _ 2 Energy _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 9 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Jackson _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mich. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 resumed _ VERB VBN _ 9 ccomp _ _ 13 the _ DET DT _ 14 det _ _ 14 purchase _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 common _ ADJ JJ _ 18 amod _ _ 18 stock _ NOUN NN _ 14 nmod _ _ 19 under _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 program _ NOUN NN _ 12 nmod _ _ 22 approved _ VERB VBN _ 21 acl _ _ 23 by _ ADP IN _ 25 case _ _ 24 its _ PRON PRP$ _ 25 nmod:poss _ _ 25 directors _ NOUN NNS _ 22 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1987 _ NUM CD _ 22 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 10 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 original _ ADJ JJ _ 7 amod _ _ 7 announcement _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 CMS _ PROPN NNP _ 10 nsubj _ _ 10 said _ VERB VBD _ 0 root _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 board _ NOUN NN _ 13 nsubj _ _ 13 authorized _ VERB VBD _ 10 ccomp _ _ 14 the _ DET DT _ 15 det _ _ 15 purchase _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 21 case _ _ 17 as _ ADV RB _ 21 advmod _ _ 18 many _ ADJ JJ _ 21 advmod _ _ 19 as _ ADP IN _ 21 advmod _ _ 20 five _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 15 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 shares _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 2.6 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 6 nummod _ _ 6 shares _ NOUN NNS _ 9 nsubjpass _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 been _ AUX VBN _ 9 auxpass _ _ 9 purchased _ VERB VBN _ 3 ccomp _ _ 10 since _ ADP IN _ 11 case _ _ 11 then _ ADV RB _ 9 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 buy _ VERB VB _ 3 ccomp _ _ 7 additional _ ADJ JJ _ 8 amod _ _ 8 shares _ NOUN NNS _ 6 dobj _ _ 9 `` _ PUNCT `` _ 6 punct _ _ 10 from _ ADP IN _ 11 case _ _ 11 time _ NOUN NN _ 6 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 time _ NOUN NN _ 11 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 open _ ADJ JJ _ 17 amod _ _ 17 market _ NOUN NN _ 6 nmod _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 in _ ADP IN _ 21 case _ _ 20 private _ ADJ JJ _ 21 amod _ _ 21 transactions _ NOUN NNS _ 17 conj _ _ 22 at _ ADP IN _ 25 case _ _ 23 prevailing _ VERB VBG _ 25 amod _ _ 24 market _ NOUN NN _ 25 compound _ _ 25 prices _ NOUN NNS _ 6 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 27 '' _ PUNCT '' _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 composite _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 13 nmod _ _ 4 on _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 New _ PROPN NNP _ 9 compound _ _ 7 York _ PROPN NNP _ 9 compound _ _ 8 Stock _ PROPN NNP _ 9 compound _ _ 9 Exchange _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 CMS _ PROPN NNP _ 12 compound _ _ 12 Energy _ PROPN NNP _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 34.375 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 down _ ADV RB _ 13 advmod _ _ 21 62.5 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 from _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 closing _ VERB NN _ 27 amod _ _ 27 price _ NOUN NN _ 20 nmod _ _ 28 of _ ADP IN _ 30 case _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 37.375 _ NUM CD _ 27 nmod _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 on _ ADP IN _ 34 case _ _ 34 Thursday _ PROPN NNP _ 27 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 before _ ADP IN _ 39 case _ _ 37 Friday _ PROPN NNP _ 39 nmod:poss _ _ 38 's _ PART POS _ 37 case _ _ 39 plunge _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 utility _ NOUN NN _ 3 compound _ _ 3 company _ NOUN NN _ 5 nsubj _ _ 4 currently _ ADV RB _ 5 advmod _ _ 5 has _ VERB VBZ _ 0 root _ _ 6 about _ ADV IN _ 8 advmod _ _ 7 82.1 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 9 nummod _ _ 9 shares _ NOUN NNS _ 5 dobj _ _ 10 outstanding _ ADJ JJ _ 9 amod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 Morgan _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 6 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 act _ VERB VB _ 0 root _ _ 7 as _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 exclusive _ ADJ JJ _ 10 amod _ _ 10 broker _ NOUN NN _ 6 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 repurchase _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Hughes _ PROPN NNP _ 3 compound _ _ 2 Aircraft _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 unit _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 General _ PROPN NNP _ 10 compound _ _ 9 Motors _ PROPN NNPS _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 agreed _ VERB VBD _ 12 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 purchase _ VERB VB _ 14 xcomp _ _ 17 the _ DET DT _ 20 det _ _ 18 Electro-Optics _ PROPN NNP _ 20 compound _ _ 19 Technology _ PROPN NNP _ 20 compound _ _ 20 division _ NOUN NN _ 16 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 Perkin-Elmer _ PROPN NNP _ 23 compound _ _ 23 Corp _ PROPN NNP _ 20 nmod _ _ 24 . _ PUNCT . _ 12 punct _ _ 1 Terms _ NOUN NNS _ 7 nsubjpass _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 1 nmod _ _ 5 were _ AUX VBD _ 7 auxpass _ _ 6 n't _ PART RB _ 7 neg _ _ 7 disclosed _ VERB VBN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 26 cc _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 fiscal _ ADJ JJ _ 5 amod _ _ 5 year _ NOUN NN _ 26 nmod _ _ 6 ended _ VERB VBN _ 5 acl _ _ 7 July _ PROPN NNP _ 6 nmod:tmod _ _ 8 31 _ NUM CD _ 7 nummod _ _ 9 , _ PUNCT , _ 7 punct _ _ 10 1988 _ NUM CD _ 7 nummod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 the _ DET DT _ 15 det _ _ 13 most _ ADV RBS _ 15 advmod _ _ 14 recent _ ADJ JJ _ 15 amod _ _ 15 period _ NOUN NN _ 5 appos _ _ 16 for _ ADP IN _ 17 case _ _ 17 which _ PRON WDT _ 20 nmod _ _ 18 results _ NOUN NNS _ 20 nsubjpass _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 broken _ VERB VBN _ 15 acl:relcl _ _ 21 out _ ADP RP _ 20 compound:prt _ _ 22 , _ PUNCT , _ 5 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 Perkin-Elmer _ PROPN NNP _ 25 compound _ _ 25 unit _ NOUN NN _ 26 nsubj _ _ 26 accounted _ VERB VBD _ 0 root _ _ 27 for _ ADP IN _ 32 case _ _ 28 more _ ADJ JJR _ 32 advmod _ _ 29 than _ ADP IN _ 28 mwe _ _ 30 half _ DET PDT _ 32 advmod _ _ 31 the _ DET DT _ 32 advmod _ _ 32 $ _ SYM $ _ 26 nmod _ _ 33 145 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 in _ ADP IN _ 36 case _ _ 36 sales _ NOUN NNS _ 32 nmod _ _ 37 recorded _ VERB VBN _ 32 acl _ _ 38 by _ ADP IN _ 44 case _ _ 39 the _ DET DT _ 40 det _ _ 40 company _ NOUN NN _ 44 nmod:poss _ _ 41 's _ PART POS _ 40 case _ _ 42 government _ NOUN NN _ 44 compound _ _ 43 systems _ NOUN NNS _ 44 compound _ _ 44 sector _ NOUN NN _ 37 nmod _ _ 45 . _ PUNCT . _ 26 punct _ _ 1 Perkin-Elmer _ PROPN NNP _ 11 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 based _ VERB VBN _ 1 acl:relcl _ _ 6 in _ ADP IN _ 7 case _ _ 7 Norwalk _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Conn. _ PROPN NNP _ 7 appos _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 sale _ NOUN NN _ 22 nsubj _ _ 14 of _ ADP IN _ 20 case _ _ 15 the _ DET DT _ 20 det _ _ 16 Danbury _ PROPN NNP _ 20 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Conn. _ PROPN NNP _ 16 dep _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 unit _ NOUN NN _ 13 nmod _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 consistent _ ADJ JJ _ 11 ccomp _ _ 23 with _ ADP IN _ 26 case _ _ 24 its _ PRON PRP$ _ 26 nmod:poss _ _ 25 restructuring _ VERB NN _ 26 amod _ _ 26 strategy _ NOUN NN _ 22 nmod _ _ 27 announced _ VERB VBD _ 26 acl _ _ 28 in _ ADP IN _ 29 case _ _ 29 April _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 to _ ADP TO _ 4 mark _ _ 4 making _ VERB VBG _ 2 acl _ _ 5 electro-optical _ ADJ JJ _ 6 amod _ _ 6 systems _ NOUN NNS _ 4 dobj _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 unit _ NOUN NN _ 11 nsubj _ _ 10 also _ ADV RB _ 11 advmod _ _ 11 makes _ VERB VBZ _ 0 root _ _ 12 laser _ NOUN NN _ 14 compound _ _ 13 warning _ NOUN NN _ 14 compound _ _ 14 receivers _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 These _ PRON DT _ 3 nsubjpass _ _ 2 are _ AUX VBP _ 3 auxpass _ _ 3 used _ VERB VBN _ 0 root _ _ 4 aboard _ ADP IN _ 6 case _ _ 5 military _ ADJ JJ _ 6 amod _ _ 6 helicopters _ NOUN NNS _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 warn _ VERB VB _ 3 xcomp _ _ 9 pilots _ NOUN NNS _ 8 dobj _ _ 10 that _ SCONJ IN _ 16 mark _ _ 11 a _ DET DT _ 13 det _ _ 12 laser _ NOUN NN _ 13 compound _ _ 13 weapon _ NOUN NN _ 16 nsubjpass _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 been _ AUX VBN _ 16 auxpass _ _ 16 focused _ VERB VBN _ 8 ccomp _ _ 17 on _ ADP IN _ 18 case _ _ 18 them _ PRON PRP _ 16 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Hughes _ PROPN NNP _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 Los _ PROPN NNP _ 4 compound _ _ 4 Angeles _ PROPN NNP _ 1 nmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 PerkinElmer _ PROPN NNP _ 8 compound _ _ 8 unit _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 work _ NOUN NN _ 11 nsubj _ _ 11 complements _ VERB VBZ _ 5 ccomp _ _ 12 efforts _ NOUN NNS _ 11 dobj _ _ 13 by _ ADP IN _ 19 case _ _ 14 its _ PRON PRP$ _ 19 nmod:poss _ _ 15 Electro-Optical _ PROPN NNP _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Data _ PROPN NNP _ 15 conj _ _ 18 Systems _ PROPN NNPS _ 19 compound _ _ 19 group _ NOUN NN _ 12 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 makes _ VERB VBZ _ 19 acl:relcl _ _ 23 infrared _ ADJ JJ _ 24 amod _ _ 24 sensors _ NOUN NNS _ 22 dobj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 military _ ADJ JJ _ 27 amod _ _ 27 lasers _ NOUN NNS _ 24 conj _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 night _ NOUN NN _ 31 compound _ _ 30 vision _ NOUN NN _ 31 compound _ _ 31 equipment _ NOUN NN _ 24 conj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Hughes _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 sale _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 close _ VERB VB _ 4 xcomp _ _ 9 by _ ADP IN _ 11 case _ _ 10 year _ NOUN NN _ 11 compound _ _ 11 end _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Communications _ PROPN NNP _ 3 compound _ _ 3 Workers _ PROPN NNPS _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 America _ PROPN NNP _ 3 nmod _ _ 6 ratified _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 10 det _ _ 8 new _ ADJ JJ _ 10 amod _ _ 9 regional _ ADJ JJ _ 10 amod _ _ 10 contract _ NOUN NN _ 6 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 all _ DET DT _ 14 dep _ _ 13 but _ CONJ CC _ 12 cc _ _ 14 one _ NUM CD _ 10 conj _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 local _ ADJ JJ _ 18 amod _ _ 18 agreements _ NOUN NNS _ 14 nmod _ _ 19 with _ ADP IN _ 22 case _ _ 20 Bell _ PROPN NNP _ 22 compound _ _ 21 Atlantic _ PROPN NNP _ 22 compound _ _ 22 Corp _ PROPN NNP _ 18 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 CWA _ PROPN NNP _ 6 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 New _ PROPN NNP _ 6 compound _ _ 4 Jersey _ PROPN NNP _ 6 compound _ _ 5 Commercial _ PROPN NNP _ 6 compound _ _ 6 local _ NOUN JJ _ 18 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 9 nsubj _ _ 9 represents _ VERB VBZ _ 6 acl:relcl _ _ 10 about _ ADV IN _ 11 advmod _ _ 11 2,500 _ NUM CD _ 13 nummod _ _ 12 service _ NOUN NN _ 13 compound _ _ 13 representatives _ NOUN NNS _ 9 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 marketing _ NOUN NN _ 16 compound _ _ 16 employees _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 rejected _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 21 det _ _ 20 tentative _ ADJ JJ _ 21 amod _ _ 21 agreement _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 Both _ DET CC _ 3 cc:preconj _ _ 2 the _ DET DT _ 3 det _ _ 3 union _ NOUN NN _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 the _ DET DT _ 8 det _ _ 6 regional _ ADJ JJ _ 8 amod _ _ 7 telephone _ NOUN NN _ 8 compound _ _ 8 company _ NOUN NN _ 3 conj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 they _ PRON PRP _ 12 nsubj _ _ 11 were _ AUX VBD _ 12 aux _ _ 12 working _ VERB VBG _ 9 ccomp _ _ 13 together _ ADV RB _ 12 advmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 resolve _ VERB VB _ 12 xcomp _ _ 16 differences _ NOUN NNS _ 15 dobj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 three-year _ ADJ JJ _ 4 amod _ _ 4 contracts _ NOUN NNS _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 7 nsubj _ _ 7 replace _ VERB VBP _ 4 acl:relcl _ _ 8 ones _ NOUN NNS _ 7 dobj _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 expired _ VERB VBD _ 8 acl:relcl _ _ 11 Aug. _ PROPN NNP _ 10 nmod:tmod _ _ 12 5 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 cover _ VERB NN _ 0 root _ _ 15 41,000 _ NUM CD _ 18 nummod _ _ 16 Bell _ PROPN NNP _ 18 compound _ _ 17 Atlantic _ PROPN NNP _ 18 compound _ _ 18 employees _ NOUN NNS _ 14 dobj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ratification _ NOUN NN _ 3 nsubj _ _ 3 follows _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 23-day _ ADJ JJ _ 6 amod _ _ 6 strike _ NOUN NN _ 3 dobj _ _ 7 against _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Philadelphia-based _ ADJ JJ _ 10 amod _ _ 10 company _ NOUN NN _ 6 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 CWA _ PROPN NNP _ 11 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 International _ PROPN NNP _ 6 compound _ _ 6 Brotherhood _ PROPN NNP _ 3 conj _ _ 7 of _ ADP IN _ 10 case _ _ 8 Electrical _ PROPN JJ _ 10 compound _ _ 9 Workers _ PROPN NNS _ 10 compound _ _ 10 members _ NOUN NNS _ 6 nmod _ _ 11 remain _ VERB VBP _ 0 root _ _ 12 on _ ADP IN _ 13 case _ _ 13 strike _ NOUN NN _ 11 nmod _ _ 14 against _ ADP IN _ 16 case _ _ 15 Nynex _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 13 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 the _ DET DT _ 23 det _ _ 19 New _ PROPN NNP _ 20 amod _ _ 20 York-based _ ADJ JJ _ 23 amod _ _ 21 regional _ ADJ JJ _ 23 amod _ _ 22 phone _ NOUN NN _ 23 compound _ _ 23 company _ NOUN NN _ 16 appos _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 unions _ NOUN NNS _ 8 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 2 conj _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 8 nmod:tmod _ _ 8 agreed _ VERB VBD _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 mediation _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 CWA _ PROPN NNP _ 3 nsubj _ _ 3 represents _ VERB VBZ _ 0 root _ _ 4 40,000 _ NUM CD _ 6 nummod _ _ 5 Nynex _ PROPN NNP _ 6 compound _ _ 6 workers _ NOUN NNS _ 3 dobj _ _ 7 and _ CONJ CC _ 3 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 IBEW _ PROPN NNP _ 10 nsubj _ _ 10 represents _ VERB VBZ _ 3 conj _ _ 11 20,000 _ NUM CD _ 12 nummod _ _ 12 workers _ NOUN NNS _ 10 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 moment _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 at _ ADP IN _ 10 advmod _ _ 6 least _ ADJ JJS _ 5 mwe _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 euphoria _ NOUN NN _ 10 nsubj _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 replaced _ VERB VBN _ 0 root _ _ 11 anxiety _ NOUN NN _ 10 dobj _ _ 12 on _ ADP IN _ 14 case _ _ 13 Wall _ PROPN NNP _ 14 compound _ _ 14 Street _ PROPN NNP _ 10 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Dow _ PROPN NNP _ 5 compound _ _ 3 Jones _ PROPN NNP _ 5 compound _ _ 4 Industrial _ PROPN NNP _ 5 compound _ _ 5 Average _ PROPN NNP _ 6 nsubj _ _ 6 jumped _ VERB VBD _ 0 root _ _ 7 sharply _ ADV RB _ 6 advmod _ _ 8 yesterday _ NOUN NN _ 6 nmod:tmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 close _ VERB VB _ 6 xcomp _ _ 11 at _ ADP IN _ 12 case _ _ 12 2657.38 _ NUM CD _ 10 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 panic _ NOUN NN _ 17 nsubj _ _ 15 did _ AUX VBD _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 sweep _ VERB NN _ 6 ccomp _ _ 18 the _ DET DT _ 19 det _ _ 19 world _ NOUN NN _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 markets _ NOUN NNS _ 17 dobj _ _ 22 , _ PUNCT , _ 6 punct _ _ 23 and _ CONJ CC _ 6 cc _ _ 24 investors _ NOUN NNS _ 28 nsubj _ _ 25 large _ ADJ JJ _ 24 amod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 small _ ADJ JJ _ 25 conj _ _ 28 seemed _ VERB VBD _ 6 conj _ _ 29 to _ PART TO _ 30 mark _ _ 30 accept _ VERB VB _ 28 xcomp _ _ 31 Friday _ PROPN NNP _ 35 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 dizzying _ VERB JJ _ 35 amod _ _ 34 190-point _ ADJ JJ _ 35 amod _ _ 35 plunge _ NOUN NN _ 30 dobj _ _ 36 as _ ADP IN _ 39 case _ _ 37 a _ DET DT _ 39 det _ _ 38 sharp _ ADJ JJ _ 39 amod _ _ 39 correction _ NOUN NN _ 30 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 not _ ADV RB _ 43 neg _ _ 42 a _ DET DT _ 43 det _ _ 43 calamity _ NOUN NN _ 39 appos _ _ 44 . _ PUNCT . _ 6 punct _ _ 1 Many _ ADJ JJ _ 2 nsubj _ _ 2 went _ VERB VBD _ 0 root _ _ 3 bargain-hunting _ NOUN NN _ 2 dobj _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 Among _ ADP IN _ 2 case _ _ 2 those _ PRON DT _ 6 nmod _ _ 3 sighing _ VERB VBG _ 2 acl _ _ 4 with _ ADP IN _ 5 case _ _ 5 relief _ NOUN NN _ 3 nmod _ _ 6 was _ VERB VBD _ 0 root _ _ 7 John _ PROPN NNP _ 9 compound _ _ 8 H. _ PROPN NNP _ 9 compound _ _ 9 Gutfreund _ PROPN NNP _ 6 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 chairman _ NOUN NN _ 9 appos _ _ 12 of _ ADP IN _ 14 case _ _ 13 Salomon _ PROPN NNP _ 14 compound _ _ 14 Brothers _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 who _ PRON WP _ 17 nsubj _ _ 17 took _ VERB VBD _ 9 acl:relcl _ _ 18 to _ ADP TO _ 23 case _ _ 19 the _ DET DT _ 20 det _ _ 20 firm _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 trading _ NOUN NN _ 23 compound _ _ 23 floor _ NOUN NN _ 17 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 monitor _ VERB VB _ 17 xcomp _ _ 26 yesterday _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 events _ NOUN NNS _ 25 dobj _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 rally _ NOUN NN _ 4 nsubj _ _ 4 gained _ VERB VBD _ 11 advcl _ _ 5 strength _ NOUN NN _ 4 dobj _ _ 6 at _ ADP IN _ 8 case _ _ 7 3:15 _ NUM CD _ 8 nummod _ _ 8 p.m. _ NOUN RB _ 4 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 smiled _ VERB VBD _ 0 root _ _ 12 broadly _ ADV RB _ 11 advmod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 brandished _ VERB VBD _ 11 conj _ _ 15 his _ PRON PRP$ _ 17 nmod:poss _ _ 16 unlit _ NOUN JJ _ 17 compound _ _ 17 cigar _ NOUN NN _ 14 dobj _ _ 18 and _ CONJ CC _ 11 cc _ _ 19 slapped _ VERB VBD _ 11 conj _ _ 20 Stanley _ PROPN NNP _ 21 compound _ _ 21 Shopkorn _ PROPN NNP _ 19 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 his _ PRON PRP$ _ 26 nmod:poss _ _ 24 top _ ADJ JJ _ 26 amod _ _ 25 stock _ NOUN NN _ 26 compound _ _ 26 trader _ NOUN NN _ 21 appos _ _ 27 , _ PUNCT , _ 21 punct _ _ 28 on _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 back _ NOUN NN _ 19 nmod _ _ 31 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 first _ ADJ RB _ 5 advcl _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 seemed _ VERB VBD _ 0 root _ _ 6 as _ SCONJ IN _ 10 mark _ _ 7 if _ SCONJ IN _ 6 mwe _ _ 8 history _ NOUN NN _ 10 nsubj _ _ 9 might _ AUX MD _ 10 aux _ _ 10 repeat _ VERB VB _ 5 advcl _ _ 11 itself _ PRON PRP _ 10 dobj _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 trading _ NOUN NN _ 3 nsubj _ _ 3 opened _ VERB VBD _ 22 advcl _ _ 4 yesterday _ NOUN NN _ 5 compound _ _ 5 morning _ NOUN NN _ 3 nmod:tmod _ _ 6 on _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Big _ PROPN NNP _ 9 compound _ _ 9 Board _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 22 punct _ _ 11 stocks _ NOUN NNS _ 22 nsubj _ _ 12 of _ ADP IN _ 13 case _ _ 13 many _ ADJ JJ _ 11 nmod _ _ 14 of _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 16 det _ _ 16 nation _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 biggest _ ADJ JJS _ 19 amod _ _ 19 companies _ NOUN NNS _ 13 nmod _ _ 20 could _ AUX MD _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 open _ VERB VB _ 0 root _ _ 23 for _ ADP IN _ 24 case _ _ 24 trading _ NOUN NN _ 22 nmod _ _ 25 because _ SCONJ IN _ 32 mark _ _ 26 a _ DET DT _ 27 det _ _ 27 wave _ NOUN NN _ 32 nsubj _ _ 28 of _ ADP IN _ 30 case _ _ 29 sell _ NOUN NN _ 30 compound _ _ 30 orders _ NOUN NNS _ 27 nmod _ _ 31 was _ AUX VBD _ 32 aux _ _ 32 overwhelming _ VERB JJ _ 22 advcl _ _ 33 buyers _ NOUN NNS _ 32 dobj _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 10:10 _ NUM CD _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 Dow _ PROPN NNP _ 6 compound _ _ 6 Industrials _ PROPN NNP _ 7 nsubj _ _ 7 were _ VERB VBD _ 0 root _ _ 8 off _ ADJ RB _ 7 advmod _ _ 9 63.52 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 8 dep _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 stock _ NOUN NN _ 31 nsubj _ _ 15 of _ ADP IN _ 17 case _ _ 16 UAL _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 whose _ PRON WP$ _ 20 nmod:poss _ _ 20 troubles _ NOUN NNS _ 22 nsubj _ _ 21 had _ AUX VBD _ 22 aux _ _ 22 kicked _ VERB VBN _ 17 acl:relcl _ _ 23 off _ ADP RP _ 22 compound:prt _ _ 24 Friday _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 plunge _ NOUN NN _ 22 dobj _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 still _ ADV RB _ 31 advmod _ _ 29 had _ AUX VBD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 opened _ VERB VBN _ 7 conj _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 then _ ADV RB _ 13 advmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 as _ ADV RB _ 5 advmod _ _ 5 quickly _ ADV RB _ 13 advmod _ _ 6 as _ SCONJ IN _ 10 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 Dow _ PROPN NNP _ 10 nsubj _ _ 9 had _ AUX VBD _ 10 aux _ _ 10 fallen _ VERB VBN _ 5 advcl _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 it _ PRON PRP _ 13 nsubj _ _ 13 began _ VERB VBD _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 turn _ VERB VB _ 13 xcomp _ _ 16 around _ ADP RP _ 15 compound:prt _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 ended _ VERB VBD _ 0 root _ _ 3 with _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 gain _ NOUN NN _ 2 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 88.12 _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 5 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 By _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 close _ NOUN NN _ 13 nmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 volume _ NOUN NN _ 13 nsubj _ _ 8 on _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 exchange _ NOUN NN _ 7 nmod _ _ 13 totaled _ VERB VBD _ 0 root _ _ 14 more _ ADJ JJR _ 17 advmod _ _ 15 than _ ADP IN _ 14 mwe _ _ 16 416 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 13 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 fourth _ ADJ JJ _ 17 appos _ _ 21 highest _ ADJ JJS _ 20 amod _ _ 22 on _ ADP IN _ 23 case _ _ 23 record _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Big _ PROPN NNP _ 3 compound _ _ 3 Board _ PROPN NNP _ 4 nsubj _ _ 4 handled _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 huge _ ADJ JJ _ 7 amod _ _ 7 volume _ NOUN NN _ 4 dobj _ _ 8 without _ ADP IN _ 11 case _ _ 9 any _ DET DT _ 11 det _ _ 10 obvious _ ADJ JJ _ 11 amod _ _ 11 strain _ NOUN NN _ 4 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 in _ ADP IN _ 15 case _ _ 14 sharp _ ADJ JJ _ 15 amod _ _ 15 contrast _ NOUN NN _ 4 nmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 Black _ PROPN NNP _ 18 compound _ _ 18 Monday _ PROPN NNP _ 15 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 1987 _ NUM CD _ 18 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 rally _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 largely _ ADV RB _ 6 advmod _ _ 6 confined _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 blue-chip _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 16 nsubjpass _ _ 13 had _ AUX VBD _ 16 aux _ _ 14 been _ AUX VBN _ 16 auxpass _ _ 15 hard _ ADV RB _ 16 advmod _ _ 16 hit _ VERB VBN _ 10 acl:relcl _ _ 17 during _ ADP IN _ 21 case _ _ 18 Friday _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 selling _ NOUN NN _ 21 compound _ _ 21 frenzy _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Overall _ ADJ RB _ 7 dep _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 more _ ADJ JJR _ 6 amod _ _ 4 Big _ PROPN NNP _ 6 compound _ _ 5 Board _ PROPN NNP _ 6 compound _ _ 6 stocks _ NOUN NNS _ 7 nsubj _ _ 7 lost _ VERB VBD _ 0 root _ _ 8 money _ NOUN NN _ 7 dobj _ _ 9 than _ SCONJ IN _ 10 mark _ _ 10 gained _ VERB VBN _ 7 advcl _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 arbitragers _ NOUN NNS _ 18 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 already _ ADV RB _ 6 advmod _ _ 6 reeling _ VERB VBG _ 3 acl _ _ 7 from _ ADP IN _ 10 case _ _ 8 Friday _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 collapse _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 UAL _ PROPN NNP _ 14 compound _ _ 14 deal _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 were _ VERB VBD _ 18 auxpass _ _ 17 further _ ADV RB _ 18 advmod _ _ 18 hurt _ VERB VBN _ 0 root _ _ 19 yesterday _ NOUN NN _ 18 nmod:tmod _ _ 20 when _ ADV WRB _ 34 advmod _ _ 21 a _ DET DT _ 23 det _ _ 22 proposed _ VERB VBN _ 23 amod _ _ 23 takeover _ NOUN NN _ 34 nsubj _ _ 24 of _ ADP IN _ 26 case _ _ 25 AMR _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 23 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 parent _ NOUN NN _ 26 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 American _ PROPN NNP _ 32 compound _ _ 32 Airlines _ PROPN NNPS _ 29 nmod _ _ 33 , _ PUNCT , _ 26 punct _ _ 34 collapsed _ VERB VBD _ 18 advcl _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 Indeed _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 7 det _ _ 4 Dow _ PROPN NNP _ 7 compound _ _ 5 Jones _ PROPN NNP _ 7 compound _ _ 6 Transportation _ PROPN NNP _ 7 compound _ _ 7 Average _ PROPN NNP _ 8 nsubj _ _ 8 plunged _ VERB VBD _ 0 root _ _ 9 102.06 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 second-worst _ ADJ JJ _ 14 amod _ _ 14 drop _ NOUN NN _ 8 nmod:npmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 history _ NOUN NN _ 14 nmod _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 World-wide _ ADJ JJ _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 trading _ NOUN NN _ 6 nsubj _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 generally _ ADV RB _ 6 advmod _ _ 6 manageable _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Frankfurt _ PROPN NNP _ 4 compound _ _ 3 stock _ NOUN NN _ 4 compound _ _ 4 exchange _ NOUN NN _ 7 nsubjpass _ _ 5 was _ AUX VBD _ 7 auxpass _ _ 6 hardest _ ADV RBS _ 7 advmod _ _ 7 hit _ VERB VBN _ 0 root _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 markets _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 with _ SCONJ IN _ 17 mark _ _ 14 blue _ ADJ JJ _ 15 amod _ _ 15 chips _ NOUN NNS _ 17 nsubj _ _ 16 there _ ADV RB _ 17 nsubj _ _ 17 falling _ VERB VBG _ 7 advcl _ _ 18 12.8 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 London _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 midday _ NOUN NN _ 6 compound _ _ 6 rally _ NOUN NN _ 7 nsubj _ _ 7 left _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 index _ NOUN NN _ 7 xcomp _ _ 13 off _ ADP IN _ 15 case _ _ 14 3.2 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 12 advmod _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 and _ CONJ CC _ 7 cc _ _ 18 Tokyo _ PROPN NNP _ 22 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 leading _ VERB VBG _ 22 amod _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 index _ NOUN NN _ 23 nsubj _ _ 23 fell _ VERB VBD _ 7 conj _ _ 24 only _ ADV RB _ 25 advmod _ _ 25 1.8 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 dobj _ _ 27 in _ ADP IN _ 30 case _ _ 28 surprisingly _ ADV RB _ 30 advmod _ _ 29 lackluster _ NOUN JJ _ 30 compound _ _ 30 trading _ NOUN NN _ 23 nmod _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 Other _ ADJ JJ _ 7 amod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 more _ ADV RBR _ 5 advmod _ _ 4 thinly _ ADV RB _ 5 advmod _ _ 5 traded _ VERB VBN _ 7 amod _ _ 6 Asian _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 hit _ VERB VBN _ 0 root _ _ 10 harder _ ADV JJR _ 9 advmod _ _ 11 than _ ADP IN _ 12 case _ _ 12 Tokyo _ PROPN NNP _ 10 nmod _ _ 13 's _ PART POS _ 12 case _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 but _ CONJ CC _ 9 cc _ _ 16 there _ PRON EX _ 17 expl _ _ 17 were _ VERB VBD _ 9 conj _ _ 18 no _ DET DT _ 20 neg _ _ 19 free-fall _ ADJ NN _ 20 amod _ _ 20 declines _ NOUN VBZ _ 17 nsubj _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Investors _ NOUN NNS _ 5 nsubj _ _ 2 big _ ADJ JJ _ 1 amod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 small _ ADJ JJ _ 2 conj _ _ 5 say _ VERB VBP _ 0 root _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 learned _ VERB VBD _ 5 ccomp _ _ 8 valuable _ ADJ JJ _ 9 amod _ _ 9 lessons _ NOUN NNS _ 7 dobj _ _ 10 since _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 1987 _ NUM CD _ 13 nummod _ _ 13 crash _ NOUN NN _ 7 nmod _ _ 14 : _ PUNCT : _ 5 punct _ _ 15 In _ ADP IN _ 17 case _ _ 16 this _ DET DT _ 17 det _ _ 17 age _ NOUN NN _ 34 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 computerized _ VERB JJ _ 20 amod _ _ 20 trading _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 34 punct _ _ 22 huge _ ADJ JJ _ 23 amod _ _ 23 corrections _ NOUN NNS _ 34 nsubjpass _ _ 24 or _ CONJ CC _ 23 cc _ _ 25 runups _ NOUN NNS _ 23 conj _ _ 26 in _ ADP IN _ 31 case _ _ 27 a _ DET DT _ 29 det _ _ 28 few _ ADJ JJ _ 29 amod _ _ 29 hours _ NOUN NNS _ 31 nmod:poss _ _ 30 ' _ PART POS _ 29 case _ _ 31 time _ NOUN NN _ 25 nmod _ _ 32 must _ AUX MD _ 34 aux _ _ 33 be _ AUX VB _ 34 auxpass _ _ 34 expected _ VERB VBN _ 5 parataxis _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 more _ ADJ JJR _ 9 advcl _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 such _ ADJ JJ _ 7 amod _ _ 6 short-term _ ADJ JJ _ 7 amod _ _ 7 cataclysms _ NOUN NNS _ 9 nsubj _ _ 8 are _ VERB VBP _ 9 cop _ _ 9 survivable _ ADJ JJ _ 0 root _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 no _ DET DT _ 13 neg _ _ 13 cause _ NOUN NN _ 9 conj _ _ 14 for _ ADP IN _ 16 case _ _ 15 panic _ NOUN NN _ 16 compound _ _ 16 selling _ NOUN VBG _ 13 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Stephen _ PROPN NNP _ 2 compound _ _ 2 Boesel _ PROPN NNP _ 15 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 7 det _ _ 5 major _ ADJ JJ _ 7 amod _ _ 6 money _ NOUN NN _ 7 compound _ _ 7 manager _ NOUN NN _ 2 appos _ _ 8 for _ ADP IN _ 11 case _ _ 9 T. _ PROPN NNP _ 11 compound _ _ 10 Rowe _ PROPN NNP _ 11 compound _ _ 11 Price _ PROPN NNP _ 7 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 Baltimore _ PROPN NNP _ 11 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 There _ PRON EX _ 19 expl _ _ 19 was _ VERB VBD _ 15 xcomp _ _ 20 less _ ADJ JJR _ 21 amod _ _ 21 panic _ NOUN NN _ 19 nsubj _ _ 22 than _ ADP IN _ 24 case _ _ 23 in _ ADP IN _ 24 case _ _ 24 1987 _ NUM CD _ 21 nmod _ _ 25 : _ PUNCT : _ 19 punct _ _ 26 We _ PRON PRP _ 30 nsubj _ _ 27 had _ AUX VBD _ 30 aux _ _ 28 been _ VERB VBN _ 30 cop _ _ 29 through _ ADP IN _ 30 case _ _ 30 it _ PRON PRP _ 19 parataxis _ _ 31 once _ ADV RB _ 30 advmod _ _ 32 . _ PUNCT . _ 15 punct _ _ 33 '' _ PUNCT '' _ 15 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Somerset _ PROPN NNP _ 25 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Wis. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Adrian _ PROPN NNP _ 7 compound _ _ 7 Sween _ PROPN NNP _ 25 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 who _ PRON WP _ 10 nsubj _ _ 10 owns _ VERB VBZ _ 7 acl:relcl _ _ 11 a _ DET DT _ 12 det _ _ 12 supplier _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 nursing-home _ NOUN NN _ 15 compound _ _ 15 equipment _ NOUN NN _ 12 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 active _ ADJ JJ _ 10 conj _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 stock _ NOUN NN _ 23 compound _ _ 23 market _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 7 punct _ _ 25 agrees _ VERB VBZ _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 look _ VERB VBP _ 13 dep _ _ 4 at _ ADP IN _ 5 case _ _ 5 it _ PRON PRP _ 3 nmod _ _ 6 as _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 ho-hum _ ADJ JJ _ 9 amod _ _ 9 matter _ NOUN NN _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 '' _ PUNCT '' _ 3 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 factors _ NOUN NNS _ 4 nsubj _ _ 4 played _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 part _ NOUN NN _ 4 dobj _ _ 7 in _ ADP IN _ 10 case _ _ 8 yesterday _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 comeback _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Federal _ PROPN NNP _ 3 compound _ _ 3 Reserve _ PROPN NNP _ 4 nsubj _ _ 4 signaled _ VERB VBD _ 0 root _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 willingness _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 provide _ VERB VB _ 6 acl _ _ 9 liquidity _ NOUN NN _ 8 dobj _ _ 10 ; _ PUNCT : _ 4 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 interest _ NOUN NN _ 13 compound _ _ 13 rate _ NOUN NN _ 20 nsubj _ _ 14 on _ ADP IN _ 16 case _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 loans _ NOUN NNS _ 13 nmod _ _ 17 to _ ADP TO _ 19 case _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 banks _ NOUN NNS _ 16 nmod _ _ 20 inched _ VERB VBD _ 4 parataxis _ _ 21 downward _ ADV RB _ 20 advmod _ _ 22 early _ ADJ JJ _ 20 advmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 day _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Foreign _ ADJ JJ _ 3 amod _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 markets _ NOUN NNS _ 16 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 kicked _ VERB VBD _ 3 acl:relcl _ _ 7 off _ ADP RP _ 6 compound:prt _ _ 8 Black _ PROPN NNP _ 9 compound _ _ 9 Monday _ PROPN NNP _ 6 nmod:tmod _ _ 10 with _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 huge _ ADJ JJ _ 14 amod _ _ 13 selling _ NOUN NN _ 14 compound _ _ 14 spree _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 began _ VERB VBD _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 day _ NOUN NN _ 16 nmod:tmod _ _ 19 off _ ADJ RP _ 16 advmod _ _ 20 by _ ADP IN _ 23 case _ _ 21 relatively _ ADV RB _ 23 advmod _ _ 22 modest _ ADJ JJ _ 23 amod _ _ 23 amounts _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 after _ SCONJ IN _ 5 mark _ _ 5 falling _ VERB VBG _ 14 advcl _ _ 6 sharply _ ADV RB _ 5 advmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 overnight _ ADJ JJ _ 9 amod _ _ 9 trading _ NOUN NN _ 5 nmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 139.10 _ NUM CD _ 12 nummod _ _ 12 yen _ NOUN NN _ 5 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 bounced _ VERB VBD _ 0 root _ _ 15 back _ ADV RP _ 14 advmod _ _ 16 strongly _ ADV RB _ 14 advmod _ _ 17 to _ ADP TO _ 18 case _ _ 18 141.8 _ NUM CD _ 14 nmod _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 thus _ ADV RB _ 21 advmod _ _ 21 easing _ VERB VBG _ 14 ccomp _ _ 22 fears _ NOUN NNS _ 21 dobj _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 foreigners _ NOUN NNS _ 26 nsubj _ _ 25 would _ AUX MD _ 26 aux _ _ 26 unload _ VERB VB _ 22 ccomp _ _ 27 U.S. _ PROPN NNP _ 28 compound _ _ 28 stocks _ NOUN NNS _ 26 dobj _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 widely _ ADV RB _ 4 advmod _ _ 4 disseminated _ VERB VBN _ 5 amod _ _ 5 opinion _ NOUN NN _ 18 nsubj _ _ 6 among _ ADP IN _ 9 case _ _ 7 most _ ADJ JJS _ 9 amod _ _ 8 market _ NOUN NN _ 9 compound _ _ 9 experts _ NOUN NNS _ 5 nmod _ _ 10 that _ SCONJ IN _ 16 mark _ _ 11 a _ DET DT _ 12 det _ _ 12 crash _ NOUN NN _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 n't _ PART RB _ 16 neg _ _ 15 in _ ADP IN _ 16 case _ _ 16 store _ NOUN NN _ 5 dep _ _ 17 also _ ADV RB _ 18 advmod _ _ 18 helped _ VERB VBD _ 0 root _ _ 19 calm _ VERB JJ _ 18 xcomp _ _ 20 investors _ NOUN NNS _ 19 dobj _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 institutions _ NOUN NNS _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 example _ NOUN NN _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 came _ VERB VBD _ 0 root _ _ 9 into _ ADP IN _ 10 case _ _ 10 work _ NOUN NN _ 8 nmod _ _ 11 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 12 ready _ ADJ JJ _ 8 xcomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 buy _ VERB VB _ 12 xcomp _ _ 15 some _ DET DT _ 14 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 blue _ ADJ JJ _ 19 amod _ _ 19 chips _ NOUN NNS _ 15 nmod _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 felt _ VERB VBD _ 19 acl:relcl _ _ 22 had _ AUX VBD _ 25 aux _ _ 23 been _ AUX VBN _ 25 auxpass _ _ 24 sharply _ ADV RB _ 25 advmod _ _ 25 undervalued _ VERB VBN _ 21 ccomp _ _ 26 on _ ADP IN _ 27 case _ _ 27 Friday _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 Still _ ADV RB _ 19 advmod _ _ 2 , _ PUNCT , _ 19 punct _ _ 3 amid _ ADP IN _ 5 case _ _ 4 all _ DET PDT _ 5 dep _ _ 5 the _ DET DT _ 19 nmod _ _ 6 backslapping _ VERB NN _ 5 amod _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 signs _ NOUN NNS _ 5 conj _ _ 9 of _ ADP IN _ 10 case _ _ 10 relief _ NOUN NN _ 8 nmod _ _ 11 over _ ADP IN _ 14 case _ _ 12 yesterday _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 events _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 some _ DET DT _ 18 det _ _ 17 market _ NOUN NN _ 18 compound _ _ 18 professionals _ NOUN NNS _ 19 nsubj _ _ 19 cautioned _ VERB VBD _ 0 root _ _ 20 that _ SCONJ IN _ 22 mark _ _ 21 there _ PRON EX _ 22 expl _ _ 22 is _ VERB VBZ _ 19 ccomp _ _ 23 nothing _ NOUN NN _ 22 nsubj _ _ 24 present _ ADJ JJ _ 23 amod _ _ 25 in _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 current _ ADJ JJ _ 29 amod _ _ 28 market _ NOUN NN _ 29 compound _ _ 29 system _ NOUN NN _ 24 nmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 prevent _ VERB VB _ 23 acl _ _ 32 another _ DET DT _ 34 det _ _ 33 dizzying _ ADJ JJ _ 34 amod _ _ 34 drop _ NOUN NN _ 31 dobj _ _ 35 such _ ADJ JJ _ 37 case _ _ 36 as _ ADP IN _ 35 mwe _ _ 37 Friday _ PROPN NNP _ 34 nmod _ _ 38 's _ PART POS _ 37 case _ _ 39 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 9 dep _ _ 4 too _ ADV RB _ 5 advmod _ _ 5 much _ ADJ JJ _ 6 amod _ _ 6 complacency _ NOUN NN _ 3 nsubj _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 money _ NOUN NN _ 13 compound _ _ 11 manager _ NOUN NN _ 13 compound _ _ 12 Barry _ PROPN NNP _ 13 compound _ _ 13 Schrager _ PROPN NNP _ 9 nsubj _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 Computers _ NOUN NNS _ 4 nsubj _ _ 2 have _ AUX VBP _ 4 aux _ _ 3 increasingly _ ADV RB _ 4 advmod _ _ 4 connected _ ADJ JJ _ 0 root _ _ 5 securities _ NOUN NNS _ 6 compound _ _ 6 markets _ NOUN NNS _ 4 dobj _ _ 7 world-wide _ ADJ RB _ 6 amod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 so _ ADV IN _ 21 mark _ _ 10 that _ SCONJ IN _ 9 mwe _ _ 11 a _ DET DT _ 15 det _ _ 12 buying _ NOUN NN _ 15 compound _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 selling _ NOUN VBG _ 12 conj _ _ 15 wave _ NOUN NN _ 21 nsubjpass _ _ 16 in _ ADP IN _ 18 case _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 market _ NOUN NN _ 15 nmod _ _ 19 is _ AUX VBZ _ 21 auxpass _ _ 20 often _ ADV RB _ 21 advmod _ _ 21 passed _ VERB VBN _ 4 advcl _ _ 22 around _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 globe _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 So _ ADV IN _ 5 advmod _ _ 2 investors _ NOUN NNS _ 5 nsubj _ _ 3 everywhere _ ADV RB _ 2 advmod _ _ 4 nervously _ ADV RB _ 5 advmod _ _ 5 eyed _ VERB VBN _ 0 root _ _ 6 yesterday _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 opening _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Tokyo _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 where _ ADV WRB _ 20 advmod _ _ 13 the _ DET DT _ 15 det _ _ 14 Nikkei _ PROPN NNP _ 15 compound _ _ 15 average _ NOUN NN _ 20 nsubj _ _ 16 of _ ADP IN _ 19 case _ _ 17 225 _ NUM CD _ 19 nummod _ _ 18 blue-chip _ ADJ JJ _ 19 amod _ _ 19 stocks _ NOUN NNS _ 15 nmod _ _ 20 got _ VERB VBD _ 10 acl:relcl _ _ 21 off _ ADP RP _ 20 compound:prt _ _ 22 to _ ADP TO _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 rocky _ ADJ JJ _ 25 amod _ _ 25 start _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 average _ NOUN JJ _ 3 nsubj _ _ 3 plunged _ VERB VBD _ 0 root _ _ 4 some _ DET DT _ 5 advmod _ _ 5 600 _ NUM CD _ 6 nummod _ _ 6 points _ NOUN NNS _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 or _ CONJ CC _ 6 cc _ _ 9 1.7 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 6 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 in _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 first _ ADJ JJ _ 16 amod _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 minutes _ NOUN NNS _ 3 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 trading _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 selling _ NOUN NN _ 4 compound _ _ 4 wave _ NOUN NN _ 5 nsubj _ _ 5 had _ VERB VBD _ 0 root _ _ 6 no _ DET DT _ 7 neg _ _ 7 conviction _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 the _ DET DT _ 11 det _ _ 11 market _ NOUN NN _ 13 nsubj _ _ 12 first _ ADV RB _ 13 advmod _ _ 13 surged _ VERB VBD _ 5 conj _ _ 14 upward _ ADV RB _ 13 advmod _ _ 15 by _ ADP IN _ 17 case _ _ 16 200 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 then _ ADV RB _ 20 advmod _ _ 20 drifted _ VERB VBD _ 13 dep _ _ 21 lower _ ADV JJR _ 20 advmod _ _ 22 , _ PUNCT , _ 20 punct _ _ 23 closing _ VERB VBG _ 20 xcomp _ _ 24 down _ ADV RP _ 23 advmod _ _ 25 647 _ NUM CD _ 24 nmod:npmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 12 nmod _ _ 4 ago _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 most _ ADJ JJS _ 12 nsubj _ _ 7 of _ ADP IN _ 11 case _ _ 8 Japan _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 investors _ NOUN NNS _ 6 nmod _ _ 12 chose _ VERB VBD _ 0 root _ _ 13 to _ PART TO _ 14 mark _ _ 14 sit _ VERB VB _ 12 xcomp _ _ 15 this _ DET DT _ 16 det _ _ 16 calamity _ NOUN NN _ 14 dobj _ _ 17 out _ ADP RP _ 14 compound:prt _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 In _ ADP IN _ 9 case _ _ 2 Merrill _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 9 nmod:poss _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Co. _ PROPN NNP _ 3 conj _ _ 6 's _ PART POS _ 5 case _ _ 7 Tokyo _ PROPN NNP _ 9 compound _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 room _ NOUN NN _ 16 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 some _ DET DT _ 12 advmod _ _ 12 40 _ NUM CD _ 13 nummod _ _ 13 traders _ NOUN NNS _ 16 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 assistants _ NOUN NNS _ 13 conj _ _ 16 sat _ VERB VBD _ 0 root _ _ 17 quietly _ ADV RB _ 16 advmod _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 with _ ADP IN _ 21 case _ _ 20 few _ ADJ JJ _ 21 amod _ _ 21 orders _ NOUN NNS _ 16 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 process _ NOUN NN _ 21 nmod _ _ 24 . _ PUNCT . _ 16 punct _ _ 1 Clients _ NOUN NNS _ 5 nsubj _ _ 2 `` _ PUNCT `` _ 5 punct _ _ 3 are _ AUX VBP _ 5 aux _ _ 4 all _ DET DT _ 5 dep _ _ 5 staying _ VERB VBG _ 15 ccomp _ _ 6 out _ ADP RP _ 10 case _ _ 7 '' _ PUNCT '' _ 10 punct _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 5 advcl _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 one _ NUM CD _ 14 nummod _ _ 13 Merrill _ PROPN NN _ 14 compound _ _ 14 trader _ NOUN NN _ 15 nsubj _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 relative _ ADJ JJ _ 3 amod _ _ 3 calm _ NOUN NN _ 6 nsubj _ _ 4 in _ ADP IN _ 5 case _ _ 5 Tokyo _ PROPN NNP _ 3 nmod _ _ 6 proved _ VERB VBD _ 0 root _ _ 7 little _ ADJ JJ _ 8 amod _ _ 8 comfort _ NOUN NN _ 6 dobj _ _ 9 to _ ADP TO _ 10 case _ _ 10 markets _ NOUN NNS _ 8 nmod _ _ 11 opening _ VERB VBG _ 10 acl _ _ 12 up _ ADP RP _ 11 compound:prt _ _ 13 in _ ADP IN _ 14 case _ _ 14 Europe _ PROPN NNP _ 11 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Frankfurt _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 opening _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 delayed _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 half _ ADJ JJ _ 8 amod _ _ 8 hour _ NOUN NN _ 5 nmod:tmod _ _ 9 because _ ADP IN _ 12 case _ _ 10 of _ ADP IN _ 9 mwe _ _ 11 a _ DET DT _ 12 det _ _ 12 crush _ NOUN NN _ 5 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 sell _ NOUN NN _ 15 compound _ _ 15 orders _ NOUN NNS _ 12 nmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 beginning _ NOUN NN _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 chaotic _ ADJ JJ _ 8 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 8 says _ VERB VBZ _ 0 root _ _ 9 Nigel _ PROPN NNP _ 10 compound _ _ 10 Longley _ PROPN NNP _ 8 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 13 det _ _ 13 broker _ NOUN NN _ 10 appos _ _ 14 for _ ADP IN _ 15 case _ _ 15 Commerzbank _ PROPN NNP _ 13 nmod _ _ 1 In _ ADP IN _ 2 case _ _ 2 London _ PROPN NNP _ 22 nmod _ _ 3 , _ PUNCT , _ 22 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 view _ NOUN NN _ 22 nsubj _ _ 6 from _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 floor _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 14 case _ _ 11 an _ DET DT _ 14 det _ _ 12 American _ ADJ JJ _ 14 amod _ _ 13 securities _ NOUN NNS _ 14 compound _ _ 14 firm _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Jefferies _ PROPN NNP _ 14 appos _ _ 17 & _ CONJ CC _ 16 cc _ _ 18 Co. _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 also _ ADV RB _ 22 advmod _ _ 21 was _ VERB VBD _ 22 cop _ _ 22 troubling _ ADJ JJ _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 screen _ NOUN NN _ 8 nsubj _ _ 4 displaying _ VERB VBG _ 3 acl _ _ 5 100 _ NUM CD _ 7 nummod _ _ 6 blue-chip _ ADJ JJ _ 7 amod _ _ 7 stocks _ NOUN NNS _ 4 dobj _ _ 8 colors _ NOUN NNS _ 0 root _ _ 9 each _ DET DT _ 10 det _ _ 10 one _ NUM CD _ 8 dobj _ _ 11 red _ NOUN NN _ 8 xcomp _ _ 12 when _ ADV WRB _ 16 advmod _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 price _ NOUN NN _ 16 nsubj _ _ 15 is _ AUX VBZ _ 16 aux _ _ 16 falling _ VERB VBG _ 8 advcl _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 screen _ NOUN NN _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 sea _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 red _ NOUN NN _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 see _ VERB VBP _ 14 dep _ _ 4 concern _ NOUN NN _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 but _ CONJ CC _ 3 cc _ _ 7 I _ PRON PRP _ 10 nsubj _ _ 8 do _ AUX VBP _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 see _ VERB VB _ 3 conj _ _ 11 panic _ NOUN NN _ 10 dobj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 J. _ PROPN NNP _ 17 compound _ _ 16 Francis _ PROPN NNP _ 17 compound _ _ 17 Palamara _ PROPN NNP _ 14 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 New _ PROPN NNP _ 21 compound _ _ 21 Yorker _ PROPN NNP _ 17 appos _ _ 22 who _ PRON WP _ 23 nsubj _ _ 23 runs _ VERB VBZ _ 21 acl:relcl _ _ 24 the _ DET DT _ 26 det _ _ 25 15-trader _ ADJ JJ _ 26 amod _ _ 26 office _ NOUN NN _ 23 dobj _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 London _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 blue-chip _ ADJ JJ _ 5 amod _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 index _ NOUN NN _ 6 nsubj _ _ 6 turned _ VERB VBD _ 0 root _ _ 7 up _ ADV RP _ 6 advmod _ _ 8 just _ ADV RB _ 11 advmod _ _ 9 before _ ADP IN _ 11 case _ _ 10 8 _ NUM CD _ 11 nummod _ _ 11 a.m _ NOUN RB _ 6 nmod _ _ 12 . _ PUNCT . _ 11 punct _ _ 13 New _ PROPN NNP _ 15 compound _ _ 14 York _ PROPN NNP _ 15 compound _ _ 15 time _ NOUN NN _ 11 dep _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 sending _ VERB VBG _ 6 xcomp _ _ 18 an _ DET DT _ 20 det _ _ 19 encouraging _ ADJ JJ _ 20 amod _ _ 20 message _ NOUN NN _ 17 dobj _ _ 21 to _ ADP TO _ 23 case _ _ 22 Wall _ PROPN NNP _ 23 compound _ _ 23 Street _ PROPN NNP _ 17 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 trading _ NOUN VBG _ 3 nsubj _ _ 3 opened _ VERB VBN _ 13 advcl _ _ 4 in _ ADP IN _ 6 case _ _ 5 New _ PROPN NNP _ 6 compound _ _ 6 York _ PROPN NNP _ 3 nmod _ _ 7 at _ ADP IN _ 10 case _ _ 8 9:30 _ NUM CD _ 10 nummod _ _ 9 a.m. _ NOUN RB _ 10 compound _ _ 10 EDT _ PROPN NNP _ 3 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 stocks _ NOUN NNS _ 13 nsubj _ _ 13 fell _ VERB VBD _ 0 root _ _ 14 sharply _ ADV RB _ 13 advmod _ _ 15 -- _ PUNCT : _ 13 punct _ _ 16 as _ SCONJ IN _ 17 mark _ _ 17 expected _ VERB VBN _ 13 advcl _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 markets _ NOUN NNS _ 6 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 Chicago _ PROPN NNP _ 2 nmod _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 opened _ VERB VBN _ 0 root _ _ 7 at _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 level _ NOUN NN _ 6 nmod _ _ 10 suggesting _ VERB VBG _ 9 acl _ _ 11 the _ DET DT _ 12 det _ _ 12 Dow _ PROPN NNP _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 fall _ VERB VB _ 10 ccomp _ _ 15 by _ ADP IN _ 18 case _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 60 _ NUM CD _ 18 nummod _ _ 18 points _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 With _ SCONJ IN _ 4 mark _ _ 2 sell _ NOUN NN _ 3 compound _ _ 3 orders _ NOUN NNS _ 4 nsubj _ _ 4 piled _ VERB VBD _ 18 advcl _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 from _ ADP IN _ 7 case _ _ 7 Friday _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 18 punct _ _ 9 about _ ADV IN _ 10 advmod _ _ 10 half _ DET PDT _ 12 nummod _ _ 11 the _ DET DT _ 12 det _ _ 12 stocks _ NOUN NNS _ 18 nsubj _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 Dow _ PROPN NNP _ 12 nmod _ _ 16 could _ AUX MD _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 open _ VERB VB _ 0 root _ _ 19 on _ ADP IN _ 20 case _ _ 20 time _ NOUN NN _ 18 nmod _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 9:45 _ NUM CD _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 industrial _ ADJ JJ _ 6 amod _ _ 6 average _ NOUN NN _ 8 nsubj _ _ 7 had _ AUX VBD _ 8 aux _ _ 8 dropped _ VERB VBN _ 0 root _ _ 9 27 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 10 _ NUM CD _ 3 nummod _ _ 3 a.m. _ NOUN RB _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 was _ VERB VBD _ 0 root _ _ 7 down _ ADV RB _ 6 advmod _ _ 8 49 _ NUM CD _ 7 nmod:npmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 Ten _ NUM CD _ 2 nummod _ _ 2 minutes _ NOUN NNS _ 3 nmod:npmod _ _ 3 later _ ADV RB _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Dow _ PROPN NNP _ 7 nsubj _ _ 7 hit _ VERB VBD _ 0 root _ _ 8 bottom _ NOUN NN _ 7 dobj _ _ 9 - _ PUNCT : _ 7 punct _ _ 10 down _ ADV IN _ 7 advmod _ _ 11 63.52 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 another _ DET DT _ 15 advmod _ _ 15 2.5 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 appos _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 shortly _ ADV RB _ 4 advmod _ _ 3 before _ ADP IN _ 4 case _ _ 4 then _ ADV RB _ 13 nmod _ _ 5 , _ PUNCT , _ 13 punct _ _ 6 some _ DET DT _ 13 nsubj _ _ 7 of _ ADP IN _ 12 case _ _ 8 Wall _ PROPN NNP _ 9 compound _ _ 9 Street _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 sharpest _ ADJ JJS _ 12 amod _ _ 12 traders _ NOUN NNS _ 6 nmod _ _ 13 say _ VERB VBP _ 0 root _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 sensed _ VERB VBD _ 13 ccomp _ _ 17 a _ DET DT _ 18 det _ _ 18 turn _ NOUN NN _ 16 dobj _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 first _ ADJ JJ _ 4 amod _ _ 4 thing _ NOUN NN _ 12 nsubj _ _ 5 that _ PRON WDT _ 6 nsubj _ _ 6 caught _ VERB VBD _ 4 acl:relcl _ _ 7 my _ PRON PRP$ _ 8 nmod:poss _ _ 8 eye _ NOUN NN _ 6 dobj _ _ 9 that _ PRON WDT _ 11 nsubj _ _ 10 was _ AUX VBD _ 11 aux _ _ 11 encouraging _ VERB VBG _ 4 acl:relcl _ _ 12 was _ VERB VBD _ 19 dep _ _ 13 Treasury _ PROPN NNP _ 14 compound _ _ 14 bonds _ NOUN NNS _ 15 nsubj _ _ 15 were _ VERB VBD _ 12 ccomp _ _ 16 off _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 '' _ PUNCT '' _ 12 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Austin _ PROPN NNP _ 21 compound _ _ 21 George _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 head _ NOUN NN _ 21 appos _ _ 24 of _ ADP IN _ 25 case _ _ 25 stock _ NOUN NN _ 23 nmod _ _ 26 trading _ VERB NN _ 25 amod _ _ 27 at _ ADP IN _ 30 case _ _ 28 T. _ PROPN NNP _ 30 compound _ _ 29 Rowe _ PROPN NNP _ 30 compound _ _ 30 Price _ PROPN NNP _ 23 nmod _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 meant _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 people _ NOUN NNS _ 8 nsubj _ _ 6 were _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 running _ VERB VBG _ 3 ccomp _ _ 9 pell-mell _ NOUN NN _ 8 advmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 safety _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 bonds _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 16 '' _ PUNCT '' _ 3 punct _ _ 1 Shortly _ ADV RB _ 4 advmod _ _ 2 after _ ADP IN _ 4 case _ _ 3 10 _ NUM CD _ 4 nummod _ _ 4 a.m. _ NOUN RB _ 27 nmod _ _ 5 , _ PUNCT , _ 27 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 Major _ PROPN NNP _ 9 compound _ _ 8 Market _ PROPN NNP _ 9 compound _ _ 9 Index _ PROPN NNP _ 27 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 16 det _ _ 12 Chicago _ PROPN NNP _ 16 dep _ _ 13 Board _ PROPN NNP _ 12 dep _ _ 14 of _ ADP IN _ 15 case _ _ 15 Trade _ PROPN NNP _ 12 nmod _ _ 16 futures _ NOUN NNS _ 9 appos _ _ 17 contract _ VERB NN _ 16 dep _ _ 18 of _ ADP IN _ 20 case _ _ 19 20 _ NUM CD _ 20 nummod _ _ 20 stocks _ NOUN NNS _ 16 nmod _ _ 21 designed _ VERB VBN _ 20 acl _ _ 22 to _ PART TO _ 23 mark _ _ 23 mimic _ VERB VB _ 21 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 DJIA _ PROPN NNP _ 23 dobj _ _ 26 , _ PUNCT , _ 9 punct _ _ 27 exploded _ VERB VBD _ 0 root _ _ 28 upward _ ADV RB _ 27 advmod _ _ 29 . _ PUNCT . _ 27 punct _ _ 1 Stock _ NOUN NN _ 2 compound _ _ 2 traders _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 buoyed _ VERB VBN _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 because _ SCONJ IN _ 14 mark _ _ 7 an _ DET DT _ 8 det _ _ 8 upturn _ NOUN NN _ 14 nsubj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 MMI _ PROPN NNP _ 8 nmod _ _ 12 had _ AUX VBD _ 14 aux _ _ 13 also _ ADV RB _ 14 advmod _ _ 14 started _ VERB VBN _ 4 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 recovery _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 Tuesday _ PROPN NNP _ 14 nmod _ _ 22 following _ NOUN VBG _ 24 dep _ _ 23 Black _ PROPN NNP _ 24 compound _ _ 24 Monday _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 MMI _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 gone _ VERB VBN _ 9 dep _ _ 6 better _ ADV RB _ 5 advmod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 '' _ PUNCT '' _ 5 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 trader _ NOUN NN _ 9 nsubj _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 London _ PROPN NNP _ 15 compound _ _ 15 office _ NOUN NN _ 11 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 Shearson _ PROPN NNP _ 19 compound _ _ 18 Lehman _ PROPN NNP _ 19 compound _ _ 19 Hutton _ PROPN NNP _ 15 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 Shearson _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 London _ PROPN NNP _ 5 compound _ _ 4 trading _ VERB NN _ 5 amod _ _ 5 room _ NOUN NN _ 6 nsubj _ _ 6 went _ VERB VBD _ 0 root _ _ 7 wild _ ADJ JJ _ 6 xcomp _ _ 8 . _ PUNCT . _ 6 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 shouted _ VERB VBD _ 0 root _ _ 3 out _ ADP RP _ 2 compound:prt _ _ 4 as _ ADV IN _ 12 advmod _ _ 5 their _ PRON PRP$ _ 11 nmod:poss _ _ 6 Reuters _ PROPN NNP _ 11 compound _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Quotron _ PROPN NNP _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 Telerate _ PROPN NNP _ 6 conj _ _ 11 screens _ NOUN NNS _ 12 nsubj _ _ 12 posted _ VERB VBD _ 2 ccomp _ _ 13 an _ DET DT _ 15 det _ _ 14 ever-narrowing _ ADJ JJ _ 15 amod _ _ 15 loss _ NOUN NN _ 12 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 Wall _ PROPN NNP _ 18 compound _ _ 18 Street _ PROPN NNP _ 15 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Then _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 minutes _ NOUN NNS _ 5 nmod:npmod _ _ 5 later _ ADV RB _ 10 advmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 10 nsubj _ _ 9 suddenly _ ADV RB _ 10 advmod _ _ 10 rebounded _ VERB VBD _ 0 root _ _ 11 to _ ADP TO _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 gain _ NOUN NN _ 10 nmod _ _ 14 on _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Rally _ VERB NNP _ 9 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 rally _ VERB NN _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 rally _ VERB NN _ 2 dep _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 Shearson _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 Andy _ PROPN NNP _ 13 compound _ _ 13 Rosen _ PROPN NNP _ 9 nsubj _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 This _ PRON DT _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 panic _ NOUN NN _ 5 compound _ _ 5 buying _ NOUN NN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 1 Major _ ADJ JJ _ 3 amod _ _ 2 blue-chip _ ADJ JJ _ 3 amod _ _ 3 stocks _ NOUN NNS _ 14 nsubj _ _ 4 like _ ADP IN _ 6 case _ _ 5 Philip _ PROPN NNP _ 6 compound _ _ 6 Morris _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 General _ PROPN NNP _ 9 compound _ _ 9 Motors _ PROPN NNPS _ 6 conj _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 Proctor _ PROPN NNP _ 6 conj _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Gamble _ PROPN NNP _ 11 conj _ _ 14 led _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 rally _ NOUN NN _ 14 dobj _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 Japanese _ PROPN JJ _ 3 nsubjpass _ _ 2 were _ AUX VBD _ 3 auxpass _ _ 3 said _ VERB VBN _ 0 root _ _ 4 to _ PART TO _ 7 mark _ _ 5 be _ VERB VB _ 7 cop _ _ 6 heavy _ NOUN JJ _ 7 compound _ _ 7 buyers _ NOUN NNS _ 3 xcomp _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 German _ PROPN JJ _ 4 amod _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Dutch _ PROPN JJ _ 1 conj _ _ 4 investors _ NOUN NNS _ 6 nsubj _ _ 5 reportedly _ ADV RB _ 6 advmod _ _ 6 loaded _ VERB VBN _ 0 root _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 on _ ADP IN _ 10 case _ _ 9 Kellogg _ PROPN NNP _ 10 compound _ _ 10 Co _ PROPN NNP _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Then _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 traders _ NOUN NNS _ 4 nsubj _ _ 4 say _ VERB VBP _ 11 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 corporations _ NOUN NNS _ 11 nsubj _ _ 7 with _ ADP IN _ 10 case _ _ 8 share _ NOUN NN _ 10 compound _ _ 9 buy-back _ ADJ JJ _ 10 amod _ _ 10 programs _ NOUN NNS _ 6 nmod _ _ 11 kicked _ VERB VBD _ 0 root _ _ 12 into _ ADP IN _ 14 case _ _ 13 high _ ADJ JJ _ 14 amod _ _ 14 gear _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 triggering _ VERB VBG _ 11 xcomp _ _ 17 gains _ NOUN NNS _ 16 dobj _ _ 18 in _ ADP IN _ 25 case _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 among _ ADP IN _ 22 case _ _ 21 other _ ADJ JJ _ 22 amod _ _ 22 issues _ NOUN NNS _ 25 dep _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 Alcan _ PROPN NNP _ 25 compound _ _ 25 Aluminium _ PROPN NNP _ 17 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 McDonald _ PROPN NNP _ 25 conj _ _ 28 's _ PART POS _ 27 case _ _ 29 . _ PUNCT . _ 11 punct _ _ 1 Walt _ PROPN NNP _ 3 compound _ _ 2 Disney _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 30 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 had _ VERB VBD _ 3 acl:relcl _ _ 7 one _ NOUN CD _ 6 dobj _ _ 8 of _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 biggest _ ADJ JJS _ 12 amod _ _ 11 sell-order _ ADJ NN _ 12 amod _ _ 12 imbalances _ NOUN NNS _ 7 nmod _ _ 13 on _ ADP IN _ 14 case _ _ 14 Friday _ PROPN NNP _ 6 nmod _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 was _ VERB VBD _ 17 cop _ _ 17 one _ NUM CD _ 6 conj _ _ 18 of _ ADP IN _ 20 case _ _ 19 seven _ NUM CD _ 20 nummod _ _ 20 stocks _ NOUN NNS _ 17 nmod _ _ 21 that _ PRON WDT _ 22 nsubj _ _ 22 halted _ VERB VBD _ 20 acl:relcl _ _ 23 trading _ NOUN NN _ 22 dobj _ _ 24 and _ CONJ CC _ 22 cc _ _ 25 never _ ADV RB _ 26 neg _ _ 26 reopened _ VERB VBD _ 22 conj _ _ 27 that _ DET DT _ 28 det _ _ 28 day _ NOUN NN _ 26 nmod:tmod _ _ 29 , _ PUNCT , _ 3 punct _ _ 30 opened _ VERB VBD _ 0 root _ _ 31 yesterday _ NOUN NN _ 30 nmod:tmod _ _ 32 late _ ADV RB _ 30 advmod _ _ 33 at _ ADP IN _ 34 case _ _ 34 114.5 _ NUM CD _ 30 nmod _ _ 35 , _ PUNCT , _ 30 punct _ _ 36 down _ ADV RB _ 30 advmod _ _ 37 8.5 _ NUM CD _ 36 nmod:npmod _ _ 38 . _ PUNCT . _ 30 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 then _ ADV RB _ 5 advmod _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 suddenly _ ADV RB _ 5 advmod _ _ 5 burst _ VERB VBP _ 24 ccomp _ _ 6 upward _ ADV RB _ 5 advmod _ _ 7 7.5 _ NUM CD _ 5 dobj _ _ 8 as _ SCONJ IN _ 14 mark _ _ 9 Goldman _ PROPN NNP _ 14 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Sachs _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Co. _ PROPN NNP _ 9 conj _ _ 14 stepped _ VERB VBD _ 5 advcl _ _ 15 in _ ADV IN _ 14 advmod _ _ 16 and _ CONJ CC _ 14 cc _ _ 17 bought _ VERB VBD _ 14 conj _ _ 18 almost _ ADV RB _ 21 advmod _ _ 19 every _ DET DT _ 21 det _ _ 20 share _ NOUN NN _ 21 compound _ _ 21 offer _ NOUN NN _ 17 dobj _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 traders _ NOUN NNS _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 10:25 _ NUM CD _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 Dow _ PROPN NNP _ 7 nsubj _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 turned _ VERB VBN _ 0 root _ _ 8 up _ ADP RP _ 7 advmod _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 day _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 prompting _ VERB VBG _ 7 xcomp _ _ 14 cheers _ NOUN NNS _ 13 dobj _ _ 15 on _ ADP IN _ 17 case _ _ 16 trading _ VERB NN _ 17 amod _ _ 17 desks _ NOUN NNS _ 13 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 exchange _ NOUN NN _ 20 compound _ _ 20 floors _ NOUN NNS _ 17 conj _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 Big _ PROPN NNP _ 4 compound _ _ 3 Board _ PROPN NNP _ 4 compound _ _ 4 specialists _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 cry _ NOUN NN _ 8 nsubj _ _ 8 was _ VERB VBD _ 0 root _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 Pull _ VERB VB _ 8 ccomp _ _ 11 your _ PRON PRP$ _ 12 nmod:poss _ _ 12 offers _ NOUN NNS _ 10 dobj _ _ 13 '' _ PUNCT '' _ 10 punct _ _ 14 -- _ PUNCT : _ 8 punct _ _ 15 meaning _ NOUN VBG _ 8 ccomp _ _ 16 that _ SCONJ IN _ 19 mark _ _ 17 specialists _ NOUN NNS _ 19 nsubj _ _ 18 soon _ ADV RB _ 19 advmod _ _ 19 expected _ VERB VBN _ 15 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 get _ VERB VB _ 19 xcomp _ _ 22 higher _ ADJ JJR _ 23 amod _ _ 23 prices _ NOUN NNS _ 21 dobj _ _ 24 for _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 shares _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 bedlam _ NOUN NN _ 10 dep _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 upside _ ADV NN _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 '' _ PUNCT '' _ 4 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Big _ PROPN NNP _ 14 compound _ _ 13 Board _ PROPN NNP _ 14 compound _ _ 14 specialist _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 What _ PRON WP _ 4 dobj _ _ 3 we _ PRON PRP _ 4 nsubj _ _ 4 had _ VERB VBD _ 10 csubj _ _ 5 was _ VERB VBD _ 10 cop _ _ 6 a _ DET DT _ 10 det _ _ 7 real _ ADJ JJ _ 10 amod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 old-fashioned _ ADJ JJ _ 10 amod _ _ 10 rally _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 technical _ ADJ JJ _ 3 amod _ _ 3 strength _ NOUN NN _ 4 nsubj _ _ 4 spurred _ VERB VBN _ 0 root _ _ 5 buying _ NOUN VBG _ 4 dobj _ _ 6 from _ ADP IN _ 12 case _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 12 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 black _ ADJ JJ _ 12 amod _ _ 12 boxes _ NOUN NNS _ 5 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 15 computer _ NOUN NN _ 16 compound _ _ 16 programs _ NOUN NNS _ 12 dep _ _ 17 designed _ VERB VBN _ 16 acl _ _ 18 to _ PART TO _ 19 mark _ _ 19 trigger _ VERB VB _ 17 xcomp _ _ 20 large _ ADJ JJ _ 22 amod _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 purchases _ NOUN NNS _ 19 dobj _ _ 23 during _ ADP IN _ 25 case _ _ 24 bullish _ ADJ JJ _ 25 amod _ _ 25 periods _ NOUN NNS _ 19 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Typical _ ADJ JJ _ 5 dep _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 perhaps _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 was _ VERB VBD _ 0 root _ _ 6 Batterymarch _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 Dean _ PROPN NNP _ 9 compound _ _ 9 LeBaron _ PROPN NNP _ 5 nsubj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 LeBaron _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 manages _ VERB VBZ _ 2 acl:relcl _ _ 6 $ _ SYM $ _ 5 dobj _ _ 7 10 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 We _ PRON PRP _ 14 nsubj _ _ 14 turned _ VERB VBD _ 10 xcomp _ _ 15 the _ DET DT _ 17 det _ _ 16 trading _ NOUN NN _ 17 compound _ _ 17 system _ NOUN NN _ 14 dobj _ _ 18 on _ ADP IN _ 14 compound:prt _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 and _ CONJ CC _ 14 cc _ _ 21 it _ PRON PRP _ 22 nsubj _ _ 22 did _ VERB VBD _ 14 conj _ _ 23 whatever _ DET WDT _ 28 dobj _ _ 24 it _ PRON PRP _ 26 nsubjpass _ _ 25 was _ AUX VBD _ 26 auxpass _ _ 26 programmed _ VERB VBN _ 22 ccomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 do _ VERB VB _ 26 xcomp _ _ 29 . _ PUNCT . _ 14 punct _ _ 30 '' _ PUNCT '' _ 14 punct _ _ 1 Asked _ VERB VBN _ 11 advcl _ _ 2 what _ PRON WP _ 6 dobj _ _ 3 stocks _ VERB NNS _ 2 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 computer _ NOUN NN _ 6 nsubj _ _ 6 bought _ VERB VBD _ 1 ccomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 money _ NOUN NN _ 10 compound _ _ 10 manager _ NOUN NN _ 11 nsubj _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 I _ PRON PRP _ 17 nsubj _ _ 15 do _ AUX VBP _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 know _ VERB VB _ 11 ccomp _ _ 18 . _ PUNCT . _ 11 punct _ _ 19 '' _ PUNCT '' _ 11 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 everybody _ NOUN NN _ 4 nsubj _ _ 3 was _ AUX VBD _ 4 aux _ _ 4 making _ VERB VBG _ 0 root _ _ 5 money _ NOUN NN _ 4 dobj _ _ 6 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 carnage _ NOUN NN _ 18 nsubj _ _ 3 on _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det _ _ 5 Chicago _ PROPN NNP _ 8 compound _ _ 6 Board _ PROPN NNP _ 8 compound _ _ 7 Options _ PROPN NNPS _ 8 compound _ _ 8 Exchange _ PROPN NNP _ 2 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 options _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 8 appos _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 was _ VERB VBD _ 18 cop _ _ 18 heavy _ ADJ JJ _ 0 root _ _ 19 after _ SCONJ IN _ 28 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 trading _ NOUN NN _ 28 nsubjpass _ _ 22 in _ ADP IN _ 26 case _ _ 23 S&P _ PROPN NNP _ 26 compound _ _ 24 100 _ NUM CD _ 26 nummod _ _ 25 stock-index _ ADJ NN _ 26 amod _ _ 26 options _ NOUN NNS _ 21 nmod _ _ 27 was _ AUX VBD _ 28 auxpass _ _ 28 halted _ VERB VBN _ 18 advcl _ _ 29 Friday _ PROPN NNP _ 28 nmod:tmod _ _ 30 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 makers _ NOUN NNS _ 11 nsubj _ _ 4 in _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 10 det _ _ 6 S&P _ PROPN NNP _ 10 compound _ _ 7 100 _ NUM CD _ 10 nummod _ _ 8 index _ NOUN NN _ 10 compound _ _ 9 options _ NOUN NNS _ 10 compound _ _ 10 contract _ NOUN NN _ 3 nmod _ _ 11 had _ VERB VBD _ 0 root _ _ 12 bullish _ ADJ JJ _ 13 amod _ _ 13 positions _ NOUN NNS _ 11 dobj _ _ 14 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 when _ ADV WRB _ 20 advmod _ _ 18 the _ DET DT _ 19 det _ _ 19 shutdown _ NOUN NN _ 20 nsubj _ _ 20 came _ VERB VBD _ 23 advcl _ _ 21 they _ PRON PRP _ 23 nsubjpass _ _ 22 were _ AUX VBD _ 23 auxpass _ _ 23 frozen _ VERB VBN _ 11 conj _ _ 24 with _ ADP IN _ 26 case _ _ 25 huge _ ADJ JJ _ 26 amod _ _ 26 losses _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 Over _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 weekend _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 clearing _ NOUN NN _ 6 compound _ _ 6 firms _ NOUN NNS _ 7 nsubj _ _ 7 told _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 11 det _ _ 9 Chicago _ PROPN NNP _ 11 compound _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 makers _ NOUN NNS _ 7 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 get _ VERB VB _ 7 xcomp _ _ 14 out _ ADP IN _ 17 case _ _ 15 of _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 positions _ NOUN NNS _ 13 nmod _ _ 18 at _ ADP IN _ 20 case _ _ 19 any _ DET DT _ 20 det _ _ 20 cost _ NOUN NN _ 13 nmod _ _ 21 Monday _ PROPN NNP _ 22 compound _ _ 22 morning _ NOUN NN _ 13 nmod:tmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 absolutely _ ADV RB _ 5 advmod _ _ 5 killed _ VERB VBN _ 10 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 slaughtered _ VERB VBN _ 5 dep _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Chicago-based _ ADJ JJ _ 14 amod _ _ 13 options _ NOUN NNS _ 14 compound _ _ 14 trader _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Meanwhile _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 a _ DET DT _ 4 det _ _ 4 test _ NOUN NN _ 11 nsubj _ _ 5 of _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 rally _ NOUN NN _ 4 nmod _ _ 11 came _ VERB VBD _ 0 root _ _ 12 at _ ADP IN _ 15 case _ _ 13 about _ ADV RB _ 15 advmod _ _ 14 2 _ NUM CD _ 15 nummod _ _ 15 p.m. _ NOUN RB _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 Dow _ PROPN NNP _ 11 nmod _ _ 20 at _ ADP IN _ 21 case _ _ 21 2600 _ NUM CD _ 19 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 up _ ADV RB _ 21 advmod _ _ 24 31 _ NUM CD _ 25 nummod _ _ 25 points _ NOUN NNS _ 23 nmod:npmod _ _ 26 on _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 day _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 11 punct _ _ 1 Charles _ PROPN NNP _ 2 compound _ _ 2 Clough _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 strategist _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 8 case _ _ 7 Merrill _ PROPN NNP _ 8 compound _ _ 8 Lynch _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 bargain _ NOUN NN _ 12 compound _ _ 12 hunting _ NOUN NN _ 14 nsubj _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 explained _ VERB VBN _ 10 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 Dow _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 strength _ NOUN NN _ 14 dobj _ _ 19 up _ ADP IN _ 22 case _ _ 20 to _ ADP TO _ 22 case _ _ 21 that _ DET DT _ 22 det _ _ 22 point _ NOUN NN _ 14 nmod _ _ 23 and _ CONJ CC _ 14 cc _ _ 24 that _ DET IN _ 29 mark _ _ 25 many _ ADJ JJ _ 27 amod _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 professionals _ NOUN NNS _ 29 nsubj _ _ 28 were _ AUX VBD _ 29 aux _ _ 29 anticipating _ VERB VBG _ 14 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 drop _ NOUN NN _ 29 dobj _ _ 32 in _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 Dow _ PROPN NNP _ 31 nmod _ _ 35 . _ PUNCT . _ 10 punct _ _ 1 Moreover _ ADV RB _ 24 advmod _ _ 2 , _ PUNCT , _ 24 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 announcement _ NOUN NN _ 24 nsubjpass _ _ 5 that _ SCONJ WDT _ 15 mark _ _ 6 real _ ADJ JJ _ 8 amod _ _ 7 estate _ NOUN NN _ 8 compound _ _ 8 magnate _ NOUN NN _ 15 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 sometime _ ADJ RB _ 13 amod _ _ 11 raider _ NOUN NN _ 13 compound _ _ 12 Donald _ PROPN NNP _ 13 compound _ _ 13 Trump _ PROPN NNP _ 8 conj _ _ 14 was _ AUX VBD _ 15 aux _ _ 15 withdrawing _ VERB VBG _ 4 ccomp _ _ 16 his _ PRON PRP$ _ 17 nmod:poss _ _ 17 offer _ NOUN NN _ 15 dobj _ _ 18 for _ ADP IN _ 20 case _ _ 19 AMR _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 17 nmod _ _ 21 might _ AUX MD _ 24 aux _ _ 22 have _ AUX VB _ 24 aux _ _ 23 been _ AUX VBN _ 24 auxpass _ _ 24 expected _ VERB VBN _ 0 root _ _ 25 to _ PART TO _ 26 mark _ _ 26 rattle _ VERB VB _ 24 xcomp _ _ 27 traders _ NOUN NNS _ 26 dobj _ _ 28 . _ PUNCT . _ 24 punct _ _ 1 Instead _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 rally _ NOUN NN _ 6 nsubj _ _ 5 only _ ADV RB _ 6 advmod _ _ 6 paused _ VERB VBD _ 0 root _ _ 7 for _ ADP IN _ 10 case _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 25 _ NUM CD _ 10 nummod _ _ 10 minutes _ NOUN NNS _ 6 nmod _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 then _ ADV RB _ 13 advmod _ _ 13 steamed _ VERB VBD _ 6 conj _ _ 14 forward _ ADV RB _ 13 advmod _ _ 15 as _ SCONJ IN _ 17 mark _ _ 16 institutions _ NOUN NNS _ 17 nsubj _ _ 17 resumed _ VERB VBD _ 13 advcl _ _ 18 buying _ VERB NN _ 17 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 closed _ VERB VBD _ 0 root _ _ 4 minutes _ NOUN NNS _ 3 nmod:tmod _ _ 5 after _ SCONJ IN _ 6 mark _ _ 6 reaching _ VERB VBG _ 4 acl _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 high _ NOUN JJ _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 day _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 8 dep _ _ 1 Across _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 country _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 many _ ADJ JJ _ 6 amod _ _ 6 people _ NOUN NNS _ 7 nsubj _ _ 7 took _ VERB VBD _ 0 root _ _ 8 yesterday _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 events _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 stride _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 while _ SCONJ IN _ 15 mark _ _ 15 remaining _ VERB VBG _ 7 advcl _ _ 16 generally _ ADV RB _ 17 advmod _ _ 17 uneasy _ ADJ JJ _ 15 xcomp _ _ 18 about _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 stock _ NOUN NN _ 21 compound _ _ 21 market _ NOUN NN _ 17 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 general _ NOUN JJ _ 21 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 James _ PROPN NNP _ 3 compound _ _ 3 Norman _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 mayor _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 8 case _ _ 8 Ava _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Mo. _ PROPN NNP _ 8 appos _ _ 11 : _ PUNCT : _ 1 punct _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 I _ PRON PRP _ 16 nsubj _ _ 14 do _ AUX VBP _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 invest _ VERB VB _ 1 dep _ _ 17 in _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 I _ PRON PRP _ 3 nsubj _ _ 2 much _ ADV RB _ 3 advmod _ _ 3 prefer _ VERB VBP _ 0 root _ _ 4 money _ NOUN NN _ 3 dobj _ _ 5 I _ PRON PRP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 put _ VERB VB _ 4 acl:relcl _ _ 8 my _ PRON PRP$ _ 9 nmod:poss _ _ 9 hands _ NOUN NNS _ 7 dobj _ _ 10 on _ ADP IN _ 7 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 Mayor _ PROPN NNP _ 3 compound _ _ 3 Norman _ PROPN NNP _ 4 nsubj _ _ 4 found _ VERB VBD _ 16 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 performance _ NOUN NN _ 10 nsubj _ _ 9 Monday _ PROPN NNP _ 10 nmod:tmod _ _ 10 reassuring _ VERB VBG _ 4 dep _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 16 parataxis _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 remains _ VERB VBZ _ 0 root _ _ 17 uneasy _ ADJ JJ _ 16 xcomp _ _ 18 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 half _ DET PDT _ 6 det:predet _ _ 5 the _ DET DT _ 6 det _ _ 6 experts _ NOUN NNS _ 7 nsubj _ _ 7 saying _ VERB VBG _ 3 xcomp _ _ 8 one _ NUM CD _ 9 nummod _ _ 9 thing _ NOUN NN _ 7 dobj _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 half _ NOUN PDT _ 13 dep _ _ 12 the _ DET DT _ 13 det _ _ 13 other _ ADJ JJ _ 7 conj _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 about _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 course _ NOUN NN _ 7 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 economy _ NOUN NN _ 17 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Ralph _ PROPN NNP _ 2 compound _ _ 2 Holzfaster _ PROPN NNP _ 15 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 farmer _ NOUN NN _ 2 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 farm-supply _ ADJ JJ _ 9 amod _ _ 8 store _ NOUN NN _ 9 compound _ _ 9 operator _ NOUN NN _ 5 conj _ _ 10 in _ ADP IN _ 11 case _ _ 11 Ogallala _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Neb. _ PROPN NNP _ 11 appos _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 of _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 21 det _ _ 18 last _ ADJ JJ _ 19 amod _ _ 19 few _ ADJ JJ _ 21 amod _ _ 20 days _ NOUN NNS _ 21 compound _ _ 21 events _ NOUN NNS _ 15 nmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 `` _ PUNCT `` _ 34 punct _ _ 24 If _ SCONJ IN _ 27 mark _ _ 25 anything _ NOUN NN _ 27 nsubj _ _ 26 good _ ADJ JJ _ 25 amod _ _ 27 comes _ VERB VBZ _ 34 advcl _ _ 28 out _ ADP IN _ 30 case _ _ 29 of _ ADP IN _ 30 case _ _ 30 this _ PRON DT _ 27 nmod _ _ 31 , _ PUNCT , _ 34 punct _ _ 32 it _ PRON PRP _ 34 nsubj _ _ 33 might _ AUX MD _ 34 aux _ _ 34 be _ VERB VB _ 15 ccomp _ _ 35 that _ SCONJ IN _ 37 mark _ _ 36 it _ PRON PRP _ 37 nsubj _ _ 37 puts _ VERB VBZ _ 34 ccomp _ _ 38 some _ DET DT _ 37 dobj _ _ 39 of _ ADP IN _ 41 case _ _ 40 these _ DET DT _ 41 det _ _ 41 LBOs _ NOUN NNS _ 38 nmod _ _ 42 on _ ADP IN _ 44 case _ _ 43 the _ DET DT _ 44 det _ _ 44 skids _ NOUN NNS _ 37 nmod _ _ 45 . _ PUNCT . _ 34 punct _ _ 46 '' _ PUNCT '' _ 34 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 Gordon _ PROPN NNP _ 3 compound _ _ 3 Fines _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 7 det _ _ 6 money _ NOUN NN _ 7 compound _ _ 7 manager _ NOUN NN _ 3 appos _ _ 8 at _ ADP IN _ 11 case _ _ 9 IDS _ PROPN NNP _ 11 compound _ _ 10 Financial _ PROPN NNP _ 11 compound _ _ 11 Services _ PROPN NNPS _ 7 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 Minneapolis _ PROPN NNP _ 11 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 `` _ PUNCT `` _ 21 punct _ _ 16 You _ PRON PRP _ 21 nsubj _ _ 17 're _ VERB VBP _ 21 cop _ _ 18 on _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 roller _ NOUN NN _ 21 compound _ _ 21 coaster _ NOUN NN _ 1 ccomp _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 and _ CONJ CC _ 21 cc _ _ 24 that _ PRON DT _ 26 nsubj _ _ 25 may _ AUX MD _ 26 aux _ _ 26 last _ VERB VB _ 21 conj _ _ 27 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 public _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 cautious _ ADJ JJ _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 Skipper _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Inc. _ PROPN NNP _ 9 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Bellevue _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Wash. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 signed _ VERB VBD _ 9 ccomp _ _ 12 a _ DET DT _ 15 det _ _ 13 definitive _ ADJ JJ _ 15 amod _ _ 14 merger _ NOUN NN _ 15 compound _ _ 15 agreement _ NOUN NN _ 11 dobj _ _ 16 for _ SCONJ IN _ 23 mark _ _ 17 a _ DET DT _ 21 det _ _ 18 National _ PROPN NNP _ 21 compound _ _ 19 Pizza _ PROPN NNP _ 21 compound _ _ 20 Corp. _ PROPN NNP _ 21 compound _ _ 21 unit _ NOUN NN _ 23 nsubj _ _ 22 to _ PART TO _ 23 mark _ _ 23 acquire _ VERB VB _ 15 acl _ _ 24 the _ DET DT _ 26 det _ _ 25 90.6 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 dobj _ _ 27 of _ ADP IN _ 30 case _ _ 28 Skipper _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Inc. _ PROPN NNP _ 26 nmod _ _ 31 it _ PRON PRP _ 34 nsubj _ _ 32 does _ AUX VBZ _ 34 aux _ _ 33 n't _ PART RB _ 34 neg _ _ 34 own _ VERB VB _ 26 acl:relcl _ _ 35 for _ ADP IN _ 37 case _ _ 36 $ _ SYM $ _ 37 dep _ _ 37 11.50 _ NUM CD _ 23 nmod _ _ 38 a _ DET DT _ 39 det _ _ 39 share _ NOUN NN _ 37 nmod:npmod _ _ 40 , _ PUNCT , _ 37 punct _ _ 41 or _ CONJ CC _ 37 cc _ _ 42 about _ ADV IN _ 43 advmod _ _ 43 $ _ SYM $ _ 37 conj _ _ 44 28.1 _ NUM CD _ 45 compound _ _ 45 million _ NUM CD _ 43 nummod _ _ 46 . _ PUNCT . _ 9 punct _ _ 1 NP _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 8 det _ _ 6 National _ PROPN NNP _ 8 compound _ _ 7 Pizza _ PROPN NNP _ 8 compound _ _ 8 unit _ NOUN NN _ 3 appos _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 plans _ VERB VBZ _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 begin _ VERB VB _ 10 xcomp _ _ 13 a _ DET DT _ 15 det _ _ 14 tender _ NOUN NN _ 15 compound _ _ 15 offer _ NOUN NN _ 12 dobj _ _ 16 for _ ADP IN _ 17 case _ _ 17 Skipper _ PROPN NNP _ 15 nmod _ _ 18 's _ PART POS _ 17 case _ _ 19 on _ ADP IN _ 20 case _ _ 20 Friday _ PROPN NNP _ 12 nmod _ _ 21 , _ PUNCT , _ 12 punct _ _ 22 conditioned _ VERB VBN _ 26 case _ _ 23 on _ ADP IN _ 26 case _ _ 24 at _ ADP IN _ 25 case _ _ 25 least _ ADJ JJS _ 26 nmod:npmod _ _ 26 two-thirds _ NOUN NNS _ 12 advcl _ _ 27 of _ ADP IN _ 30 case _ _ 28 Skipper _ PROPN NN _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 shares _ NOUN NNS _ 26 nmod _ _ 31 being _ AUX VBG _ 32 auxpass _ _ 32 tendered _ VERB VBN _ 30 acl _ _ 33 . _ PUNCT . _ 10 punct _ _ 1 Pittsburg _ PROPN NNP _ 3 amod _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 Kan.-based _ ADJ JJ _ 5 amod _ _ 4 National _ PROPN NNP _ 5 compound _ _ 5 Pizza _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 transaction _ NOUN NN _ 11 nsubjpass _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 financed _ VERB VBN _ 6 ccomp _ _ 12 under _ ADP IN _ 16 case _ _ 13 its _ PRON PRP$ _ 16 nmod:poss _ _ 14 revolving _ ADJ JJ _ 16 amod _ _ 15 credit _ NOUN NN _ 16 compound _ _ 16 agreement _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 national _ ADJ JJ _ 4 amod _ _ 3 over-the-counter _ ADJ JJ _ 4 amod _ _ 4 trading _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Skipper _ PROPN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 shares _ NOUN NNS _ 9 nsubj _ _ 9 rose _ VERB VBD _ 0 root _ _ 10 50 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 9 dobj _ _ 12 to _ ADP TO _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 11 _ NUM CD _ 9 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Skipper _ PROPN NN _ 3 nsubj _ _ 2 's _ PART POS _ 1 case _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 merger _ NOUN NN _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 help _ VERB VB _ 3 ccomp _ _ 8 finance _ VERB VB _ 7 ccomp _ _ 9 remodeling _ NOUN NN _ 8 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 future _ ADJ JJ _ 12 amod _ _ 12 growth _ NOUN NN _ 9 conj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Skipper _ PROPN NN _ 4 nsubj _ _ 2 's _ PART POS _ 1 case _ _ 3 previously _ ADV RB _ 4 advmod _ _ 4 turned _ VERB VBN _ 0 root _ _ 5 down _ ADP RP _ 4 compound:prt _ _ 6 a _ DET DT _ 9 det _ _ 7 $ _ SYM $ _ 9 amod _ _ 8 10-a-share _ ADJ JJ _ 7 dep _ _ 9 proposal _ NOUN NN _ 4 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 National _ PROPN NNP _ 12 compound _ _ 12 Pizza _ PROPN NNP _ 9 nmod _ _ 13 and _ CONJ CC _ 4 cc _ _ 14 Pizza _ PROPN NNP _ 16 compound _ _ 15 Hut _ PROPN NNP _ 16 compound _ _ 16 Inc. _ PROPN NNP _ 17 nsubj _ _ 17 questioned _ VERB VBD _ 4 conj _ _ 18 whether _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 purchase _ NOUN NN _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 violate _ VERB VB _ 17 ccomp _ _ 23 National _ PROPN NNP _ 24 compound _ _ 24 Pizza _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 franchise _ NOUN NN _ 27 compound _ _ 27 agreements _ NOUN NNS _ 22 dobj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 National _ PROPN NNP _ 2 compound _ _ 2 Pizza _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 settled _ VERB VBD _ 3 ccomp _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 dispute _ NOUN NN _ 5 dobj _ _ 8 with _ ADP IN _ 10 case _ _ 9 Pizza _ PROPN NNP _ 10 compound _ _ 10 Hut _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 allowing _ VERB VBG _ 5 advcl _ _ 13 it _ PRON PRP _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 12 xcomp _ _ 16 the _ DET DT _ 17 det _ _ 17 purchase _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 Skipper _ PROPN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 results _ NOUN NNS _ 6 nsubj _ _ 6 began _ VERB VBD _ 18 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 turn _ VERB VB _ 6 xcomp _ _ 9 around _ ADP RP _ 8 compound:prt _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 permitting _ VERB VBG _ 8 xcomp _ _ 12 a _ DET DT _ 14 det _ _ 13 higher _ ADJ JJR _ 14 amod _ _ 14 offer _ NOUN NN _ 11 dobj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 National _ PROPN NNP _ 17 compound _ _ 17 Pizza _ PROPN NNP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 12 _ NUM CD _ 4 nummod _ _ 4 weeks _ NOUN NNS _ 11 nmod _ _ 5 ended _ VERB VBN _ 4 acl _ _ 6 Sept. _ PROPN NNP _ 5 nmod:tmod _ _ 7 3 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Skipper _ PROPN NNP _ 11 nsubj _ _ 10 's _ PART POS _ 9 case _ _ 11 had _ VERB VBD _ 0 root _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 361,000 _ NUM CD _ 13 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 or _ CONJ CC _ 16 cc _ _ 19 13 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 16 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 compared _ VERB VBN _ 28 case _ _ 25 with _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 net _ ADJ JJ _ 28 amod _ _ 28 loss _ NOUN NN _ 11 advcl _ _ 29 a _ DET DT _ 30 det _ _ 30 year _ NOUN NN _ 31 nmod:npmod _ _ 31 earlier _ ADV RBR _ 28 advmod _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 Revenue _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 $ _ SYM $ _ 0 root _ _ 4 19.9 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 EAST _ NOUN NNP _ 2 compound _ _ 2 GERMANS _ NOUN NNS _ 3 nsubj _ _ 3 RALLIED _ VERB VBD _ 0 root _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 officials _ NOUN NNS _ 7 nsubj _ _ 6 reportedly _ ADV RB _ 7 advmod _ _ 7 sought _ VERB VBD _ 3 advcl _ _ 8 Honecker _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 ouster _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 In _ SCONJ IN _ 4 mark _ _ 2 what _ PRON WP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 considered _ VERB VBN _ 20 advcl _ _ 5 the _ DET DT _ 7 det _ _ 6 largest _ ADJ JJS _ 7 amod _ _ 7 protest _ NOUN NN _ 4 xcomp _ _ 8 in _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Communist _ ADJ JJ _ 11 amod _ _ 11 state _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 40-year _ ADJ JJ _ 14 amod _ _ 14 history _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 at _ ADP IN _ 17 case _ _ 17 least _ ADJ JJS _ 18 nmod:npmod _ _ 18 120,000 _ NUM CD _ 19 nummod _ _ 19 demonstrators _ NOUN NNS _ 20 nsubj _ _ 20 marched _ VERB VBD _ 36 advcl _ _ 21 through _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 southern _ ADJ JJ _ 24 amod _ _ 24 city _ NOUN NN _ 20 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 Leipzig _ PROPN NNP _ 24 nmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 press _ VERB VB _ 20 xcomp _ _ 29 demands _ NOUN NNS _ 28 dobj _ _ 30 for _ ADP IN _ 32 case _ _ 31 democratic _ ADJ JJ _ 32 amod _ _ 32 freedoms _ NOUN NNS _ 29 nmod _ _ 33 , _ PUNCT , _ 36 punct _ _ 34 opposition _ NOUN NN _ 35 compound _ _ 35 activists _ NOUN NNS _ 36 nsubj _ _ 36 said _ VERB VBD _ 0 root _ _ 37 . _ PUNCT . _ 36 punct _ _ 1 Police _ NOUN NNS _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 intervene _ VERB VB _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Meanwhile _ ADV RB _ 28 advmod _ _ 2 , _ PUNCT , _ 28 punct _ _ 3 as _ SCONJ IN _ 20 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 first _ ADJ JJ _ 20 nsubj _ _ 6 of _ ADP IN _ 11 case _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 1,300 _ NUM CD _ 11 nummod _ _ 10 East _ NOUN NNS _ 11 compound _ _ 11 Germans _ NOUN NNS _ 5 nmod _ _ 12 trying _ VERB VBG _ 11 acl _ _ 13 to _ PART TO _ 14 mark _ _ 14 flee _ VERB VB _ 12 xcomp _ _ 15 to _ ADP TO _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 West _ PROPN NNP _ 14 nmod _ _ 18 through _ ADP IN _ 19 case _ _ 19 Poland _ PROPN NNP _ 14 nmod _ _ 20 renounced _ VERB VBD _ 28 advcl _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 citizenship _ NOUN NN _ 20 dobj _ _ 23 , _ PUNCT , _ 28 punct _ _ 24 a _ DET DT _ 27 det _ _ 25 West _ ADJ JJ _ 26 amod _ _ 26 German _ ADJ JJ _ 27 amod _ _ 27 newspaper _ NOUN NN _ 28 nsubj _ _ 28 reported _ VERB VBD _ 0 root _ _ 29 that _ SCONJ IN _ 33 mark _ _ 30 regional _ ADJ JJ _ 32 amod _ _ 31 Communist _ ADJ JJ _ 32 amod _ _ 32 officials _ NOUN NNS _ 33 nsubj _ _ 33 demanded _ VERB VBD _ 28 ccomp _ _ 34 the _ DET DT _ 35 det _ _ 35 dismissal _ NOUN NN _ 33 dobj _ _ 36 of _ ADP IN _ 39 case _ _ 37 hard-line _ ADJ JJ _ 39 amod _ _ 38 leader _ NOUN NN _ 39 compound _ _ 39 Honecker _ PROPN NNP _ 35 nmod _ _ 40 . _ PUNCT . _ 28 punct _ _ 1 Secretary _ PROPN NNP _ 4 dep _ _ 2 of _ ADP IN _ 3 case _ _ 3 State _ PROPN NNP _ 1 nmod _ _ 4 Baker _ PROPN NNP _ 12 nsubj _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 in _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 foreign _ ADJ JJ _ 10 amod _ _ 9 policy _ NOUN NN _ 10 compound _ _ 10 speech _ NOUN NN _ 12 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 called _ VERB VBN _ 0 root _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 reunification _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 Germany _ PROPN NNP _ 15 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 saying _ VERB VBG _ 12 xcomp _ _ 20 it _ PRON PRP _ 25 nsubj _ _ 21 was _ VERB VBD _ 25 cop _ _ 22 the _ DET DT _ 25 det _ _ 23 `` _ PUNCT `` _ 25 punct _ _ 24 legitimate _ ADJ JJ _ 25 amod _ _ 25 right _ NOUN NN _ 19 ccomp _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 of _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 German _ ADJ JJ _ 30 amod _ _ 30 people _ NOUN NNS _ 25 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 Gorbachev _ PROPN NNP _ 2 nsubj _ _ 2 blamed _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Soviet _ PROPN NNP _ 5 compound _ _ 5 Union _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 press _ NOUN NN _ 2 dobj _ _ 8 for _ SCONJ IN _ 9 mark _ _ 9 contributing _ VERB VBG _ 2 advcl _ _ 10 to _ ADP TO _ 15 case _ _ 11 the _ DET DT _ 12 det _ _ 12 nation _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 mounting _ VERB VBG _ 15 amod _ _ 15 problems _ NOUN NNS _ 9 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 meeting _ NOUN NN _ 9 nmod _ _ 4 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 Kremlin _ PROPN NNP _ 8 compound _ _ 8 leader _ NOUN NN _ 9 nsubj _ _ 9 complained _ VERB VBD _ 0 root _ _ 10 about _ ADP IN _ 12 case _ _ 11 recent _ ADJ JJ _ 12 amod _ _ 12 articles _ NOUN NNS _ 9 nmod _ _ 13 that _ PRON WDT _ 14 nsubj _ _ 14 raised _ VERB VBD _ 12 acl:relcl _ _ 15 the _ DET DT _ 16 det _ _ 16 possiblity _ NOUN NN _ 14 dobj _ _ 17 of _ ADP IN _ 19 case _ _ 18 civil _ ADJ JJ _ 19 amod _ _ 19 unrest _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 and _ CONJ CC _ 9 cc _ _ 22 accused _ VERB VBD _ 9 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 media _ NOUN NNS _ 22 dobj _ _ 25 of _ SCONJ IN _ 26 mark _ _ 26 fueling _ VERB VBG _ 24 acl _ _ 27 panic _ NOUN NN _ 26 dobj _ _ 28 buying _ VERB NN _ 27 amod _ _ 29 of _ ADP IN _ 30 case _ _ 30 goods _ NOUN NNS _ 27 nmod _ _ 31 by _ SCONJ IN _ 32 mark _ _ 32 publishing _ VERB VBG _ 26 advcl _ _ 33 stories _ NOUN NNS _ 32 dobj _ _ 34 about _ ADP IN _ 36 case _ _ 35 impending _ VERB VBG _ 36 amod _ _ 36 shortages _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 9 punct _ _ 1 House-Senate _ ADJ NNP _ 2 amod _ _ 2 conferees _ NOUN NNS _ 3 nsubj _ _ 3 approved _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 permanent _ ADJ JJ _ 7 amod _ _ 6 smoking _ NOUN NN _ 7 compound _ _ 7 ban _ NOUN NN _ 3 dobj _ _ 8 on _ ADP IN _ 11 case _ _ 9 domestic _ ADJ JJ _ 11 amod _ _ 10 airline _ NOUN NN _ 11 compound _ _ 11 routes _ NOUN NNS _ 7 nmod _ _ 12 within _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 continental _ ADJ JJ _ 15 amod _ _ 15 U.S. _ PROPN NNP _ 11 nmod _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 on _ ADP IN _ 18 case _ _ 18 flights _ NOUN NNS _ 11 conj _ _ 19 of _ ADP IN _ 23 case _ _ 20 less _ ADJ JJR _ 22 advmod _ _ 21 than _ ADP IN _ 20 mwe _ _ 22 six _ NUM CD _ 23 nummod _ _ 23 hours _ NOUN NNS _ 18 nmod _ _ 24 to _ ADP TO _ 25 case _ _ 25 Alaska _ PROPN NNP _ 18 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Hawaii _ PROPN NNP _ 25 conj _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 curbs _ NOUN NNS _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 cover _ VERB VB _ 0 root _ _ 5 all _ DET DT _ 4 dobj _ _ 6 but _ CONJ CC _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 small _ ADJ JJ _ 9 amod _ _ 9 percentage _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 flights _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 and _ CONJ CC _ 4 cc _ _ 14 represent _ VERB VBP _ 4 conj _ _ 15 an _ DET DT _ 16 det _ _ 16 expansion _ NOUN NN _ 14 dobj _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 current _ ADJ JJ _ 20 amod _ _ 20 ban _ NOUN NN _ 16 nmod _ _ 21 on _ ADP IN _ 22 case _ _ 22 flights _ NOUN NNS _ 20 nmod _ _ 23 of _ ADP IN _ 27 case _ _ 24 less _ ADJ JJR _ 26 advmod _ _ 25 than _ ADP IN _ 24 mwe _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 hours _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 E. _ PROPN NNP _ 3 compound _ _ 2 Robert _ PROPN NNP _ 3 compound _ _ 3 Wallach _ PROPN NNP _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 sentenced _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 U.S. _ PROPN NNP _ 9 compound _ _ 9 judge _ NOUN NN _ 5 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 New _ PROPN NNP _ 12 compound _ _ 12 York _ PROPN NNP _ 9 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 six _ NUM CD _ 15 nummod _ _ 15 years _ NOUN NNS _ 5 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 prison _ NOUN NN _ 15 nmod _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 fined _ VERB VBN _ 5 conj _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 250,000 _ NUM CD _ 19 dobj _ _ 22 for _ ADP IN _ 25 case _ _ 23 his _ PRON PRP$ _ 25 nmod:poss _ _ 24 racketeering _ NOUN NN _ 25 compound _ _ 25 conviction _ NOUN NN _ 19 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Wedtech _ PROPN NNP _ 29 compound _ _ 29 scandal _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Wallach _ PROPN NNP _ 11 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 an _ DET DT _ 4 det _ _ 4 associate _ NOUN NN _ 1 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 ex-Attorney _ PROPN NNP _ 8 compound _ _ 7 General _ PROPN NNP _ 8 compound _ _ 8 Meese _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 was _ AUX VBD _ 11 auxpass _ _ 11 found _ VERB VBN _ 0 root _ _ 12 guilty _ ADJ JJ _ 11 xcomp _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 11 nmod _ _ 15 of _ SCONJ IN _ 16 mark _ _ 16 taking _ VERB VBG _ 11 advcl _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 425,000 _ NUM CD _ 16 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 illegal _ ADJ JJ _ 21 amod _ _ 21 payoffs _ NOUN NNS _ 18 nmod _ _ 22 from _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 now-defunct _ ADJ JJ _ 26 amod _ _ 25 defense _ NOUN NN _ 26 compound _ _ 26 contractor _ NOUN NN _ 16 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 NASA _ PROPN NNP _ 2 nsubj _ _ 2 resumed _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 countdown _ NOUN NN _ 2 dobj _ _ 5 for _ ADP IN _ 8 case _ _ 6 today _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 launch _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 space _ NOUN NN _ 13 compound _ _ 12 shuttle _ NOUN NN _ 13 compound _ _ 13 Atlantis _ PROPN NNP _ 8 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 and _ CONJ CC _ 2 cc _ _ 16 a _ DET DT _ 19 det _ _ 17 federal _ ADJ JJ _ 19 amod _ _ 18 appeals _ NOUN NNS _ 19 compound _ _ 19 court _ NOUN NN _ 22 nsubj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Washington _ PROPN NNP _ 19 nmod _ _ 22 dismissed _ VERB VBD _ 2 conj _ _ 23 a _ DET DT _ 24 det _ _ 24 lawsuit _ NOUN NN _ 22 dobj _ _ 25 by _ ADP IN _ 27 case _ _ 26 anti-nuclear _ ADJ JJ _ 27 amod _ _ 27 groups _ NOUN NNS _ 24 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 delay _ VERB VB _ 24 acl _ _ 30 the _ DET DT _ 31 det _ _ 31 flight _ NOUN NN _ 29 dobj _ _ 32 because _ SCONJ IN _ 38 mark _ _ 33 the _ DET DT _ 37 det _ _ 34 plutonium-powered _ ADJ JJ _ 37 amod _ _ 35 Galileo _ PROPN NNP _ 37 compound _ _ 36 space _ NOUN NN _ 37 compound _ _ 37 probe _ NOUN NN _ 38 nsubj _ _ 38 was _ VERB VBD _ 29 advcl _ _ 39 aboard _ ADV IN _ 38 advmod _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 space _ NOUN NN _ 3 compound _ _ 3 agency _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 did _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 expect _ VERB VB _ 4 ccomp _ _ 9 weather _ NOUN NN _ 8 dobj _ _ 10 or _ CONJ CC _ 9 cc _ _ 11 protesters _ NOUN NNS _ 9 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 block _ VERB VB _ 8 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 liftoff _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 preparing _ VERB VBG _ 21 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 extend _ VERB VB _ 5 xcomp _ _ 8 a _ DET DT _ 9 det _ _ 9 ban _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 12 case _ _ 11 federal _ ADJ JJ _ 12 amod _ _ 12 financing _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 research _ NOUN NN _ 12 nmod _ _ 15 using _ VERB VBG _ 14 acl _ _ 16 fetal _ ADJ JJ _ 17 amod _ _ 17 tissue _ NOUN NN _ 15 dobj _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 government _ NOUN NN _ 20 compound _ _ 20 sources _ NOUN NNS _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 temporary _ ADJ JJ _ 3 amod _ _ 3 prohibition _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 imposed _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 March _ PROPN NNP _ 5 nmod _ _ 8 1988 _ NUM CD _ 7 nummod _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 anti-abortion _ ADJ JJ _ 3 amod _ _ 3 groups _ NOUN NNS _ 5 nsubjpass _ _ 4 are _ AUX VBP _ 5 auxpass _ _ 5 opposed _ VERB VBN _ 12 advcl _ _ 6 to _ ADP TO _ 8 case _ _ 7 such _ ADJ JJ _ 8 amod _ _ 8 research _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 scientists _ NOUN NNS _ 12 nsubj _ _ 11 have _ AUX VBP _ 12 aux _ _ 12 said _ VERB VBN _ 0 root _ _ 13 transplanting _ VERB VBG _ 18 csubj _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 tissue _ NOUN NN _ 13 dobj _ _ 16 could _ AUX MD _ 18 aux _ _ 17 be _ VERB VB _ 18 cop _ _ 18 effective _ ADJ JJ _ 12 ccomp _ _ 19 in _ SCONJ IN _ 20 mark _ _ 20 treating _ VERB VBG _ 18 advcl _ _ 21 diabetes _ NOUN NN _ 20 dobj _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 Delegates _ NOUN NNPS _ 5 nsubj _ _ 2 from _ ADP IN _ 4 case _ _ 3 91 _ NUM CD _ 4 nummod _ _ 4 nations _ NOUN NNS _ 1 nmod _ _ 5 endorsed _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 ban _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 11 case _ _ 9 world _ NOUN NN _ 11 compound _ _ 10 ivory _ NOUN NN _ 11 compound _ _ 11 trade _ NOUN NN _ 7 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 an _ DET DT _ 14 det _ _ 14 attempt _ NOUN NN _ 5 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 rescue _ VERB VB _ 14 acl _ _ 17 the _ DET DT _ 19 det _ _ 18 endangered _ VERB VBN _ 19 amod _ _ 19 elephant _ NOUN NN _ 16 dobj _ _ 20 from _ ADP IN _ 21 case _ _ 21 extinction _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Five _ NUM CD _ 3 nummod _ _ 2 African _ ADJ JJ _ 3 amod _ _ 3 nations _ NOUN NNS _ 7 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 said _ VERB VBD _ 0 root _ _ 8 they _ PRON PRP _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 continue _ VERB VB _ 7 ccomp _ _ 11 selling _ VERB VBG _ 10 xcomp _ _ 12 the _ DET DT _ 14 det _ _ 13 valuable _ ADJ JJ _ 14 amod _ _ 14 tusks _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Mubarak _ PROPN NNP _ 2 nsubj _ _ 2 held _ VERB VBD _ 0 root _ _ 3 reconciliation _ NOUN NN _ 4 compound _ _ 4 talks _ NOUN NNS _ 2 dobj _ _ 5 with _ ADP IN _ 6 case _ _ 6 Gadhafi _ PROPN NNP _ 2 nmod _ _ 7 at _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Egyptian _ ADJ JJ _ 10 amod _ _ 10 resort _ NOUN NN _ 2 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 Mersa _ PROPN NNP _ 13 compound _ _ 13 Metruh _ PROPN NNP _ 10 nmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 8 nsubj _ _ 2 was _ VERB VBD _ 8 cop _ _ 3 the _ DET DT _ 5 det _ _ 4 Libyan _ ADJ JJ _ 5 amod _ _ 5 leader _ NOUN NN _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 trip _ NOUN NN _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 Egypt _ PROPN NNP _ 8 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 16 _ NUM CD _ 13 nummod _ _ 13 years _ NOUN NNS _ 8 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 announced _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 reduction _ NOUN NN _ 2 dobj _ _ 5 in _ ADP IN _ 6 case _ _ 6 formalities _ NOUN NNS _ 4 nmod _ _ 7 for _ ADP IN _ 8 case _ _ 8 travel _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 but _ CONJ CC _ 2 cc _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 show _ VERB VB _ 2 conj _ _ 14 any _ DET DT _ 16 det _ _ 15 real _ ADJ JJ _ 16 amod _ _ 16 signs _ NOUN NNS _ 13 dobj _ _ 17 of _ SCONJ IN _ 18 mark _ _ 18 resuming _ VERB VBG _ 16 acl _ _ 19 full _ ADJ JJ _ 21 amod _ _ 20 diplomatic _ ADJ JJ _ 21 amod _ _ 21 ties _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Egyptian _ ADJ JJ _ 3 amod _ _ 3 president _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 visit _ VERB VB _ 4 ccomp _ _ 8 Libya _ PROPN NNP _ 7 dobj _ _ 9 today _ NOUN NN _ 7 nmod:tmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 resume _ VERB VB _ 7 advcl _ _ 12 the _ DET DT _ 13 det _ _ 13 talks _ NOUN NNS _ 11 dobj _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Seoul _ PROPN NNP _ 4 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Pyongyang _ PROPN NNP _ 1 conj _ _ 4 reached _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 tentative _ ADJ JJ _ 7 amod _ _ 7 agreement _ NOUN NN _ 4 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 allow _ VERB VB _ 7 acl _ _ 10 visits _ NOUN NNS _ 9 dobj _ _ 11 between _ ADP IN _ 12 case _ _ 12 families _ NOUN NNS _ 10 nmod _ _ 13 on _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 divided _ VERB JJ _ 17 amod _ _ 16 Korean _ ADJ JJ _ 17 amod _ _ 17 peninsula _ NOUN NN _ 9 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Such _ ADJ JJ _ 3 amod _ _ 2 family _ NOUN NN _ 3 compound _ _ 3 reunions _ NOUN NNS _ 7 nsubj _ _ 4 would _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 second _ ADJ JJ _ 0 root _ _ 8 since _ ADP IN _ 9 case _ _ 9 1945 _ NUM CD _ 7 nmod _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 Differences _ NOUN NNS _ 2 nsubj _ _ 2 remained _ VERB VBD _ 0 root _ _ 3 between _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 North _ ADJ NNP _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 South _ ADJ NNP _ 9 amod _ _ 8 Korean _ ADJ JJ _ 9 amod _ _ 9 governments _ NOUN NNS _ 5 conj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 however _ ADV RB _ 2 advmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 over _ ADP IN _ 14 case _ _ 14 conditions _ NOUN NNS _ 2 nmod _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 exchanges _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Freed _ VERB NNP _ 3 amod _ _ 2 black _ ADJ JJ _ 3 amod _ _ 3 nationalists _ NOUN NNS _ 4 nsubj _ _ 4 resumed _ VERB VBD _ 0 root _ _ 5 political _ ADJ JJ _ 6 amod _ _ 6 activity _ NOUN NN _ 4 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 South _ PROPN NNP _ 9 compound _ _ 9 Africa _ PROPN NNP _ 4 nmod _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 vowed _ VERB VBD _ 4 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 fight _ VERB VB _ 11 xcomp _ _ 14 against _ ADP IN _ 15 case _ _ 15 apartheid _ NOUN NN _ 13 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 raising _ VERB VBG _ 4 advcl _ _ 18 fears _ NOUN NNS _ 17 dobj _ _ 19 of _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 possible _ ADJ JJ _ 23 amod _ _ 22 white _ ADJ JJ _ 23 amod _ _ 23 backlash _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 nation _ NOUN NN _ 7 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 main _ ADJ JJ _ 7 amod _ _ 5 white _ ADJ JJ _ 7 amod _ _ 6 opposition _ NOUN NN _ 7 compound _ _ 7 party _ NOUN NN _ 8 nsubj _ _ 8 warned _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 20 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 government _ NOUN NN _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 release _ NOUN NN _ 20 nsubj _ _ 14 Sunday _ PROPN NNP _ 13 nmod:tmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 eight _ NUM CD _ 19 nummod _ _ 17 black _ ADJ JJ _ 19 amod _ _ 18 political _ ADJ JJ _ 19 amod _ _ 19 prisoners _ NOUN NNS _ 13 nmod _ _ 20 risked _ VERB VBD _ 8 ccomp _ _ 21 bringing _ VERB VBG _ 20 xcomp _ _ 22 chaos _ NOUN NN _ 21 dobj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 eventual _ ADJ JJ _ 27 amod _ _ 25 black _ ADJ JJ _ 27 amod _ _ 26 Marxist _ ADJ JJ _ 27 amod _ _ 27 rule _ NOUN NN _ 22 conj _ _ 28 to _ ADP TO _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 nation _ NOUN NN _ 21 nmod _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 White _ PROPN NNP _ 3 compound _ _ 3 House _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Bush _ PROPN NNP _ 9 nsubjpass _ _ 6 is _ AUX VBZ _ 9 auxpass _ _ 7 `` _ PUNCT `` _ 9 punct _ _ 8 fully _ ADV RB _ 9 advmod _ _ 9 satisfied _ VERB JJ _ 4 ccomp _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 with _ ADP IN _ 14 case _ _ 12 CIA _ PROPN NNP _ 14 compound _ _ 13 Director _ PROPN NNP _ 14 compound _ _ 14 Webster _ PROPN NNP _ 9 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 the _ DET DT _ 18 det _ _ 17 intelligence _ NOUN NN _ 18 compound _ _ 18 agency _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 performance _ NOUN NN _ 14 conj _ _ 21 during _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 26 det _ _ 23 Oct. _ PROPN NNP _ 26 compound _ _ 24 3 _ NUM CD _ 26 nummod _ _ 25 failed _ VERB VBD _ 26 amod _ _ 26 coup _ NOUN NN _ 20 nmod _ _ 27 in _ ADP IN _ 28 case _ _ 28 Panama _ PROPN NNP _ 26 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Washington _ PROPN NNP _ 3 compound _ _ 3 Post _ PROPN NNP _ 4 nsubj _ _ 4 reported _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 11 mark _ _ 6 unidentified _ ADJ JJ _ 9 amod _ _ 7 senior _ ADJ JJ _ 9 amod _ _ 8 administration _ NOUN NN _ 9 compound _ _ 9 officials _ NOUN NNS _ 11 nsubjpass _ _ 10 were _ AUX VBD _ 11 auxpass _ _ 11 frustrated _ VERB VBN _ 4 ccomp _ _ 12 with _ ADP IN _ 16 case _ _ 13 Webster _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 low-profile _ ADJ JJ _ 16 amod _ _ 16 activities _ NOUN NNS _ 11 nmod _ _ 17 during _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 insurrection _ NOUN NN _ 16 nmod _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 wanted _ VERB VBD _ 11 conj _ _ 22 him _ PRON PRP _ 23 nsubj _ _ 23 replaced _ VERB VBN _ 21 dep _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Poland _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 legislature _ NOUN NN _ 4 nsubj _ _ 4 approved _ VERB VBD _ 0 root _ _ 5 limits _ NOUN NNS _ 4 dobj _ _ 6 on _ ADP IN _ 9 case _ _ 7 automatic _ ADJ JJ _ 9 amod _ _ 8 wage _ NOUN NN _ 9 compound _ _ 9 increases _ NOUN NNS _ 5 nmod _ _ 10 without _ ADP IN _ 12 case _ _ 11 special _ ADJ JJ _ 12 amod _ _ 12 provisions _ NOUN NNS _ 4 nmod _ _ 13 for _ ADP IN _ 16 case _ _ 14 food _ NOUN NN _ 16 compound _ _ 15 price _ NOUN NN _ 16 compound _ _ 16 rises _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 vote _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 considered _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 test _ NOUN NN _ 4 xcomp _ _ 7 of _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Solidarity-led _ ADJ JJ _ 10 amod _ _ 10 government _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 resolve _ NOUN NN _ 6 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 proceed _ VERB VB _ 12 acl _ _ 15 with _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 harsh _ ADJ JJ _ 19 amod _ _ 18 economic-restructuring _ ADJ JJ _ 19 amod _ _ 19 program _ NOUN NN _ 14 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Norway _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 King _ PROPN NNP _ 5 compound _ _ 4 Olav _ PROPN NNP _ 5 compound _ _ 5 V _ PROPN NNP _ 6 nsubj _ _ 6 installed _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 10 det _ _ 8 three-party _ ADJ JJ _ 10 amod _ _ 9 non-Socialist _ ADJ JJ _ 10 amod _ _ 10 government _ NOUN NN _ 6 dobj _ _ 11 as _ SCONJ IN _ 19 mark _ _ 12 Gro _ PROPN NNP _ 14 compound _ _ 13 Harlem _ PROPN NNP _ 14 compound _ _ 14 Brundtland _ PROPN NNP _ 18 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 three-year-old _ ADJ JJ _ 18 amod _ _ 17 Labor _ PROPN NN _ 18 compound _ _ 18 regime _ NOUN NN _ 19 nsubj _ _ 19 relinquished _ VERB VBD _ 6 advcl _ _ 20 power _ NOUN NN _ 19 dobj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 19-member _ ADJ JJ _ 3 amod _ _ 3 cabinet _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 led _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 10 case _ _ 7 Prime _ PROPN NNP _ 10 compound _ _ 8 Minister _ PROPN NNP _ 10 compound _ _ 9 Jan _ PROPN NNP _ 10 compound _ _ 10 Syse _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 acknowledged _ VERB VBD _ 10 acl:relcl _ _ 14 a _ DET DT _ 17 det _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 difficult _ ADJ JJ _ 17 amod _ _ 17 situation _ NOUN NN _ 13 dobj _ _ 18 '' _ PUNCT '' _ 17 punct _ _ 19 since _ SCONJ IN _ 22 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 coalition _ NOUN NN _ 22 nsubj _ _ 22 controls _ VERB VBZ _ 13 advcl _ _ 23 only _ ADV RB _ 25 advmod _ _ 24 62 _ NUM CD _ 25 nummod _ _ 25 seats _ NOUN NNS _ 22 dobj _ _ 26 in _ ADP IN _ 30 case _ _ 27 Oslo _ NOUN NNP _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 165-member _ ADJ JJ _ 30 amod _ _ 30 legislature _ NOUN NN _ 25 nmod _ _ 31 . _ PUNCT . _ 5 punct _ _ 1 El _ PROPN NNP _ 2 compound _ _ 2 Salvador _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 government _ NOUN NN _ 5 nsubj _ _ 5 opened _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 round _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 talks _ NOUN NNS _ 8 nmod _ _ 11 with _ ADP IN _ 16 case _ _ 12 the _ DET DT _ 13 det _ _ 13 country _ NOUN NN _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 leftist _ ADJ JJ _ 16 amod _ _ 16 rebels _ NOUN NNS _ 10 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 an _ DET DT _ 19 det _ _ 19 effort _ NOUN NN _ 5 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 end _ VERB VB _ 19 acl _ _ 22 a _ DET DT _ 25 det _ _ 23 decade-long _ ADJ JJ _ 25 amod _ _ 24 civil _ ADJ JJ _ 25 amod _ _ 25 war _ NOUN NN _ 21 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 guerrillas _ NOUN NNS _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 present _ VERB VB _ 3 ccomp _ _ 8 a _ DET DT _ 10 det _ _ 9 cease-fire _ NOUN NN _ 10 compound _ _ 10 proposal _ NOUN NN _ 7 dobj _ _ 11 during _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 negotiations _ NOUN NNS _ 7 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 Costa _ PROPN NNP _ 16 compound _ _ 16 Rica _ PROPN NNP _ 13 nmod _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 includes _ VERB VBZ _ 7 dep _ _ 19 constitutional _ ADJ JJ _ 22 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 economic _ ADJ JJ _ 19 conj _ _ 22 changes _ NOUN NNS _ 18 dobj _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 State _ PROPN NNP _ 3 compound _ _ 3 Department _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 there _ PRON EX _ 6 expl _ _ 6 was _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 possibility _ NOUN NN _ 6 nsubj _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 some _ DET DT _ 14 det _ _ 13 Nicaraguan _ ADJ JJ _ 14 amod _ _ 14 rebels _ NOUN NNS _ 16 nsubj _ _ 15 were _ AUX VBD _ 16 aux _ _ 16 selling _ VERB VBG _ 9 ccomp _ _ 17 their _ PRON PRP$ _ 19 nmod:poss _ _ 18 U.S.-supplied _ ADJ JJ _ 19 amod _ _ 19 arms _ NOUN NNS _ 16 dobj _ _ 20 to _ ADP TO _ 22 case _ _ 21 Salvadoran _ ADJ JJ _ 22 amod _ _ 22 guerrillas _ NOUN NNS _ 16 nmod _ _ 23 , _ PUNCT , _ 4 punct _ _ 24 but _ CONJ CC _ 4 cc _ _ 25 insisted _ VERB VBD _ 4 conj _ _ 26 it _ PRON PRP _ 31 nsubj _ _ 27 was _ VERB VBD _ 31 cop _ _ 28 n't _ PART RB _ 31 neg _ _ 29 an _ DET DT _ 31 det _ _ 30 organized _ VERB VBN _ 31 amod _ _ 31 effort _ NOUN NN _ 25 ccomp _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Separately _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 Secretary _ PROPN NNP _ 6 dep _ _ 4 of _ ADP IN _ 5 case _ _ 5 State _ PROPN NNP _ 3 nmod _ _ 6 Baker _ PROPN NNP _ 7 nsubj _ _ 7 complained _ VERB VBD _ 0 root _ _ 8 about _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 U.N. _ PROPN NNP _ 11 compound _ _ 11 aide _ NOUN NN _ 7 nmod _ _ 12 who _ PRON WP _ 15 nsubj _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 week _ NOUN NN _ 15 dep _ _ 15 told _ VERB VBD _ 11 acl:relcl _ _ 16 the _ DET DT _ 17 det _ _ 17 Contras _ NOUN NNPS _ 15 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 disband _ VERB VB _ 15 xcomp _ _ 20 as _ ADP IN _ 21 case _ _ 21 part _ NOUN NN _ 15 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 a _ DET DT _ 26 det _ _ 24 regional _ ADJ JJ _ 26 amod _ _ 25 peace _ NOUN NN _ 26 compound _ _ 26 accord _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Died _ VERB VBN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Cornel _ PROPN NNP _ 4 compound _ _ 4 Wilde _ PROPN NNP _ 1 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 74 _ NUM CD _ 4 amod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 actor _ NOUN NN _ 4 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 director _ NOUN NN _ 8 conj _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 in _ ADP IN _ 14 case _ _ 13 Los _ PROPN NNP _ 14 compound _ _ 14 Angeles _ PROPN NNP _ 1 dep _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 of _ ADP IN _ 17 case _ _ 17 leukemia _ NOUN NN _ 1 dep _ _ 18 ... _ PUNCT : _ 1 punct _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 Danilo _ PROPN NNP _ 2 compound _ _ 2 Kis _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 54 _ NUM CD _ 2 amod _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Yugoslav-born _ ADJ JJ _ 7 amod _ _ 7 novelist _ NOUN NN _ 2 appos _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 essayist _ NOUN NN _ 7 conj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 Sunday _ PROPN NNP _ 2 dep _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 in _ ADP IN _ 14 case _ _ 14 Paris _ PROPN NNP _ 2 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 of _ ADP IN _ 17 case _ _ 17 cancer _ NOUN NN _ 2 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 British _ ADJ JJ _ 4 amod _ _ 2 retail _ ADJ JJ _ 4 amod _ _ 3 sales _ NOUN NNS _ 4 compound _ _ 4 volume _ NOUN NN _ 5 nsubj _ _ 5 rose _ VERB VBD _ 29 ccomp _ _ 6 a _ DET DT _ 9 det _ _ 7 provisional _ ADJ JJ _ 9 amod _ _ 8 0.4 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 5 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 5 nmod _ _ 12 from _ ADP IN _ 13 case _ _ 13 August _ PROPN NNP _ 5 nmod _ _ 14 and _ CONJ CC _ 5 cc _ _ 15 was _ VERB VBD _ 20 cop _ _ 16 up _ ADV RB _ 20 advmod _ _ 17 2.2 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 nmod:npmod _ _ 19 from _ ADP IN _ 20 case _ _ 20 September _ PROPN NNP _ 5 conj _ _ 21 1988 _ NUM CD _ 20 nummod _ _ 22 , _ PUNCT , _ 29 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 Department _ PROPN NNP _ 29 nsubj _ _ 25 of _ ADP IN _ 26 case _ _ 26 Trade _ PROPN NNP _ 24 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 Industry _ PROPN NNP _ 26 conj _ _ 29 said _ VERB VBD _ 0 root _ _ 30 . _ PUNCT . _ 29 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 three _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 12 nmod _ _ 5 ended _ VERB VBN _ 4 acl _ _ 6 in _ ADP IN _ 7 case _ _ 7 September _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 retail _ ADJ JJ _ 11 amod _ _ 10 sales _ NOUN NNS _ 11 compound _ _ 11 volume _ NOUN NN _ 12 nsubj _ _ 12 was _ VERB VBD _ 0 root _ _ 13 down _ ADV RB _ 21 advmod _ _ 14 0.5 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 nmod:npmod _ _ 16 from _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 previous _ ADJ JJ _ 20 amod _ _ 19 three _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 13 nmod _ _ 21 and _ CONJ CC _ 12 advmod _ _ 22 up _ ADV IN _ 21 advmod _ _ 23 1.2 _ NUM CD _ 24 nummod _ _ 24 % _ SYM NN _ 22 nmod:npmod _ _ 25 from _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 27 det _ _ 27 year _ NOUN NN _ 28 nmod:npmod _ _ 28 earlier _ ADV RBR _ 22 advcl _ _ 29 . _ PUNCT . _ 12 punct _ _ 1 Chicago _ PROPN NNP _ 4 compound _ _ 2 investor _ NOUN NN _ 4 compound _ _ 3 William _ PROPN NNP _ 4 compound _ _ 4 Farley _ PROPN NNP _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 sell _ VERB VB _ 5 xcomp _ _ 8 three _ NUM CD _ 9 nummod _ _ 9 divisions _ NOUN NNS _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 Cluett _ PROPN NNP _ 12 compound _ _ 12 Peabody _ PROPN NNP _ 9 nmod _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Co. _ PROPN NNP _ 12 conj _ _ 15 for _ ADP IN _ 17 case _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 $ _ SYM $ _ 7 nmod _ _ 18 600 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 to _ ADP TO _ 22 case _ _ 21 Bidermann _ PROPN NNP _ 22 compound _ _ 22 S.A. _ PROPN NNP _ 7 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 a _ DET DT _ 28 det _ _ 25 closely _ ADV RB _ 26 advmod _ _ 26 held _ VERB VBN _ 28 amod _ _ 27 clothing _ NOUN NN _ 28 compound _ _ 28 maker _ NOUN NN _ 22 appos _ _ 29 based _ VERB VBN _ 28 acl _ _ 30 in _ ADP IN _ 31 case _ _ 31 Paris _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Shortly _ ADV RB _ 3 advmod _ _ 2 after _ SCONJ IN _ 3 mark _ _ 3 completing _ VERB VBG _ 25 advcl _ _ 4 the _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 1.56 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 acquisition _ NOUN NN _ 3 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 West _ PROPN NNP _ 12 compound _ _ 11 Point-Pepperell _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 8 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 April _ PROPN NNP _ 3 nmod _ _ 15 , _ PUNCT , _ 25 punct _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Farley _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 holding _ VERB VBG _ 20 amod _ _ 20 company _ NOUN NN _ 25 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Farley _ PROPN NNP _ 23 compound _ _ 23 Inc. _ PROPN NNP _ 20 appos _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 it _ PRON PRP _ 28 nsubj _ _ 27 was _ AUX VBD _ 28 aux _ _ 28 considering _ VERB VBG _ 25 ccomp _ _ 29 the _ DET DT _ 30 det _ _ 30 sale _ NOUN NN _ 28 dobj _ _ 31 of _ ADP IN _ 32 case _ _ 32 Cluett _ PROPN NNP _ 30 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 a _ DET DT _ 37 det _ _ 35 leading _ ADJ VBG _ 37 amod _ _ 36 shirt _ NOUN NN _ 37 compound _ _ 37 maker _ NOUN NN _ 32 appos _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 one _ NUM CD _ 37 conj _ _ 40 of _ ADP IN _ 45 case _ _ 41 West _ PROPN NNP _ 42 compound _ _ 42 Point-Pepperell _ PROPN NNP _ 45 nmod:poss _ _ 43 's _ PART POS _ 42 case _ _ 44 biggest _ ADJ JJS _ 45 amod _ _ 45 units _ NOUN NNS _ 39 nmod _ _ 46 . _ PUNCT . _ 25 punct _ _ 1 Included _ VERB VBN _ 0 root _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 sale _ NOUN NN _ 1 nmod _ _ 5 are _ AUX VBP _ 1 auxpass _ _ 6 Cluett _ PROPN NNP _ 7 compound _ _ 7 units _ NOUN NNS _ 1 nsubjpass _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 make _ VERB VBP _ 7 acl:relcl _ _ 10 men _ NOUN NNS _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 shirts _ NOUN NNS _ 9 dobj _ _ 13 under _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 Arrow _ PROPN NNP _ 16 compound _ _ 16 name _ NOUN NN _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 socks _ NOUN NNS _ 9 conj _ _ 19 under _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 Gold _ PROPN NN _ 23 compound _ _ 22 Toe _ PROPN NN _ 23 compound _ _ 23 name _ NOUN NN _ 18 nmod _ _ 24 and _ CONJ CC _ 9 cc _ _ 25 menswear _ NOUN NN _ 9 conj _ _ 26 through _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Schoeneman _ PROPN NNP _ 29 compound _ _ 29 division _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 companies _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 agreement _ NOUN NN _ 7 nsubj _ _ 6 is _ VERB VBZ _ 7 cop _ _ 7 subject _ ADJ JJ _ 3 ccomp _ _ 8 to _ ADP TO _ 11 case _ _ 9 Bidermann _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 receipt _ NOUN NN _ 7 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 financing _ NOUN NN _ 11 nmod _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 to _ ADP TO _ 19 case _ _ 16 regulatory _ ADJ JJ _ 19 amod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 other _ ADJ JJ _ 16 conj _ _ 19 approvals _ NOUN NNS _ 11 conj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 sale _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 2 ccomp _ _ 7 to _ PART TO _ 9 mark _ _ 8 be _ AUX VB _ 9 auxpass _ _ 9 concluded _ VERB VBN _ 6 xcomp _ _ 10 by _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 end _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 November _ PROPN NNP _ 12 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Farley _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 sale _ NOUN NN _ 27 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 three _ NUM CD _ 5 nmod _ _ 8 of _ ADP IN _ 13 case _ _ 9 Cluett _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 four _ NUM CD _ 13 nummod _ _ 12 main _ ADJ JJ _ 13 amod _ _ 13 divisions _ NOUN NNS _ 7 nmod _ _ 14 plus _ CONJ CC _ 5 cc _ _ 15 other _ ADJ JJ _ 22 amod _ _ 16 `` _ PUNCT `` _ 22 punct _ _ 17 anticipated _ VERB VBN _ 22 amod _ _ 18 '' _ PUNCT '' _ 22 punct _ _ 19 West _ PROPN NNP _ 22 compound _ _ 20 Point-Pepperell _ PROPN NNP _ 22 compound _ _ 21 asset _ NOUN NN _ 22 compound _ _ 22 sales _ NOUN NNS _ 5 conj _ _ 23 by _ ADP IN _ 24 case _ _ 24 December _ PROPN NNP _ 5 nmod _ _ 25 , _ PUNCT , _ 5 punct _ _ 26 should _ AUX MD _ 27 aux _ _ 27 bring _ VERB VB _ 3 ccomp _ _ 28 in _ ADP RP _ 27 compound:prt _ _ 29 a _ DET DT _ 30 det _ _ 30 total _ NOUN NN _ 27 dobj _ _ 31 of _ ADP IN _ 33 case _ _ 32 about _ ADV IN _ 33 advmod _ _ 33 $ _ SYM $ _ 30 nmod _ _ 34 700 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 elaborate _ VERB VB _ 0 root _ _ 5 on _ ADP IN _ 8 case _ _ 6 other _ ADJ JJ _ 8 amod _ _ 7 asset _ NOUN NN _ 8 compound _ _ 8 sales _ NOUN NNS _ 4 nmod _ _ 9 being _ AUX VBG _ 10 auxpass _ _ 10 considered _ VERB VBN _ 8 acl _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Farley _ PROPN NNP _ 3 nsubj _ _ 3 followed _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 similar _ ADJ JJ _ 6 amod _ _ 6 pattern _ NOUN NN _ 3 dobj _ _ 7 when _ ADV WRB _ 9 advmod _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 acquired _ VERB VBD _ 3 advcl _ _ 10 Northwest _ PROPN NNP _ 12 compound _ _ 11 Industries _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 9 dobj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 then _ ADV RB _ 15 advmod _ _ 15 sold _ VERB VBD _ 9 conj _ _ 16 much _ ADJ JJ _ 15 dobj _ _ 17 of _ ADP IN _ 19 case _ _ 18 its _ PRON PRP$ _ 19 nmod:poss _ _ 19 assets _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 he _ PRON PRP _ 3 nsubj _ _ 3 kept _ VERB VBD _ 0 root _ _ 4 Fruit _ PROPN NNP _ 3 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Loom _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 underwear _ NOUN NN _ 12 compound _ _ 12 maker _ NOUN NN _ 4 appos _ _ 13 that _ ADP IN _ 16 dobj _ _ 14 he _ PRON PRP _ 16 nsubj _ _ 15 still _ ADV RB _ 16 advmod _ _ 16 controls _ VERB VBZ _ 12 acl:relcl _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 serves _ VERB VBZ _ 16 conj _ _ 19 as _ ADP IN _ 20 case _ _ 20 chairman _ NOUN NN _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 chief _ ADJ JJ _ 23 amod _ _ 23 executive _ NOUN NN _ 20 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Cluett _ PROPN NNP _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 an _ DET DT _ 5 det _ _ 4 independent _ ADJ JJ _ 5 amod _ _ 5 company _ NOUN NN _ 0 root _ _ 6 until _ SCONJ IN _ 9 mark _ _ 7 West _ PROPN NNP _ 8 compound _ _ 8 Point-Pepperell _ PROPN NNP _ 9 nsubj _ _ 9 acquired _ VERB VBD _ 5 advcl _ _ 10 it _ PRON PRP _ 9 dobj _ _ 11 for _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 9 nmod _ _ 13 375 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 cash _ NOUN NN _ 12 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 stock _ NOUN NN _ 16 conj _ _ 19 in _ ADP IN _ 20 case _ _ 20 1986 _ NUM CD _ 9 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 fiscal _ ADJ JJ _ 4 amod _ _ 4 year _ NOUN NN _ 12 nmod _ _ 5 ended _ VERB VBN _ 4 acl _ _ 6 Sept. _ PROPN NNP _ 5 nmod:tmod _ _ 7 30 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 1988 _ NUM CD _ 6 nummod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 Cluett _ PROPN NNP _ 12 nsubj _ _ 12 had _ VERB VBD _ 0 root _ _ 13 operating _ NOUN NN _ 14 compound _ _ 14 profit _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 $ _ SYM $ _ 14 nmod _ _ 17 37 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 on _ ADP IN _ 20 case _ _ 20 sales _ NOUN NNS _ 14 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 757 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 Bidermann _ PROPN NNP _ 2 nsubj _ _ 2 sells _ VERB VBZ _ 0 root _ _ 3 clothes _ NOUN NNS _ 2 dobj _ _ 4 under _ ADP IN _ 6 case _ _ 5 various _ ADJ JJ _ 6 amod _ _ 6 labels _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 including _ VERB VBG _ 11 case _ _ 9 Yves _ PROPN NNP _ 11 compound _ _ 10 Saint _ PROPN NNP _ 11 compound _ _ 11 Laurent _ PROPN NNP _ 6 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Bill _ PROPN NNP _ 14 compound _ _ 14 Robinson _ PROPN NNP _ 11 conj _ _ 15 for _ ADP IN _ 16 case _ _ 16 men _ NOUN NNS _ 14 nmod _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 Ralph _ PROPN NNP _ 19 compound _ _ 19 Lauren _ PROPN NNP _ 11 conj _ _ 20 for _ ADP IN _ 21 case _ _ 21 women _ NOUN NNS _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 had _ VERB VBD _ 3 ccomp _ _ 7 sales _ NOUN NNS _ 6 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 400 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 in _ ADP IN _ 13 case _ _ 13 1988 _ NUM CD _ 6 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ ADJ JJ _ 7 amod _ _ 7 trading _ NOUN NN _ 11 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 West _ PROPN NNP _ 10 compound _ _ 10 Point-Pepperell _ PROPN NNP _ 11 nsubj _ _ 11 fell _ VERB VBD _ 0 root _ _ 12 25 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 11 dobj _ _ 14 to _ ADP TO _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 53.875 _ NUM CD _ 11 nmod _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 Britain _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Blue _ PROPN NNP _ 5 compound _ _ 4 Arrow _ PROPN NNP _ 5 compound _ _ 5 PLC _ PROPN NNP _ 6 nsubj _ _ 6 intends _ VERB VBZ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 change _ VERB VB _ 6 xcomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 name _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 Manpower _ PROPN NNP _ 13 compound _ _ 13 PLC _ PROPN NNP _ 8 nmod _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 write _ VERB VB _ 8 conj _ _ 16 off _ ADP RP _ 15 compound:prt _ _ 17 a _ DET DT _ 18 det _ _ 18 chunk _ NOUN NN _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 nearly _ ADV RB _ 22 advmod _ _ 22 $ _ SYM $ _ 18 nmod _ _ 23 1.2 _ NUM CD _ 24 compound _ _ 24 billion _ NUM CD _ 22 nummod _ _ 25 in _ ADP IN _ 27 case _ _ 26 good _ ADJ JJ _ 27 amod _ _ 27 will _ NOUN MD _ 22 nmod _ _ 28 realized _ VERB VBN _ 27 acl _ _ 29 in _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 takeover _ NOUN NN _ 28 nmod _ _ 32 of _ ADP IN _ 35 case _ _ 33 U.S.-based _ ADJ JJ _ 35 amod _ _ 34 Manpower _ PROPN NNP _ 35 compound _ _ 35 Inc _ PROPN NNP _ 31 nmod _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Blue _ PROPN NNP _ 5 compound _ _ 2 Arrow _ PROPN NNP _ 5 compound _ _ 3 Chairman _ PROPN NNP _ 5 compound _ _ 4 Mitchell _ PROPN NNP _ 5 compound _ _ 5 Fromstein _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 an _ DET DT _ 9 det _ _ 9 interview _ NOUN NN _ 6 nmod _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 the _ DET DT _ 13 det _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 steps _ NOUN NNS _ 17 nsubj _ _ 14 may _ AUX MD _ 17 aux _ _ 15 be _ VERB VB _ 17 cop _ _ 16 a _ DET DT _ 17 det _ _ 17 prelude _ NOUN NN _ 6 ccomp _ _ 18 to _ ADP TO _ 19 mark _ _ 19 reincorporating _ VERB VBG _ 17 acl _ _ 20 the _ DET DT _ 21 det _ _ 21 world _ NOUN NN _ 25 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 biggest _ ADJ JJS _ 25 amod _ _ 24 employment-services _ ADJ NNS _ 25 amod _ _ 25 group _ NOUN NN _ 19 dobj _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 U.S. _ PROPN NNP _ 25 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Fromstein _ PROPN NNP _ 3 nsubj _ _ 3 disclosed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 planned _ VERB JJ _ 6 amod _ _ 6 steps _ NOUN NNS _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 expected _ VERB VBN _ 6 acl _ _ 9 within _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 few _ ADJ JJ _ 12 amod _ _ 12 months _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 as _ SCONJ IN _ 17 mark _ _ 15 Blue _ PROPN NNP _ 16 compound _ _ 16 Arrow _ PROPN NNP _ 17 nsubj _ _ 17 posted _ VERB VBD _ 3 advcl _ _ 18 a _ DET DT _ 21 det _ _ 19 2.5 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 21 amod _ _ 21 drop _ NOUN NN _ 17 dobj _ _ 22 in _ ADP IN _ 26 case _ _ 23 its _ PRON PRP$ _ 26 nmod:poss _ _ 24 third-quarter _ ADJ JJ _ 26 amod _ _ 25 pretax _ ADJ JJ _ 26 amod _ _ 26 earnings _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 name _ NOUN NN _ 3 compound _ _ 3 change _ NOUN NN _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 good _ ADJ JJ _ 7 amod _ _ 6 will _ NOUN MD _ 7 compound _ _ 7 write-off _ NOUN NN _ 3 conj _ _ 8 could _ AUX MD _ 9 aux _ _ 9 help _ VERB VB _ 0 root _ _ 10 solidify _ VERB VB _ 9 ccomp _ _ 11 Blue _ PROPN NNP _ 12 compound _ _ 12 Arrow _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 dominance _ NOUN NN _ 10 dobj _ _ 15 of _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 U.S. _ PROPN NNP _ 19 compound _ _ 18 temporary-help _ ADJ NN _ 19 amod _ _ 19 market _ NOUN NN _ 14 nmod _ _ 20 and _ CONJ CC _ 10 cc _ _ 21 give _ VERB VB _ 10 conj _ _ 22 it _ PRON PRP _ 21 iobj _ _ 23 a _ DET DT _ 26 det _ _ 24 more _ ADV RBR _ 25 advmod _ _ 25 American _ ADJ JJ _ 26 amod _ _ 26 image _ NOUN NN _ 21 dobj _ _ 27 as _ SCONJ IN _ 30 mark _ _ 28 U.S. _ PROPN NNP _ 29 compound _ _ 29 investors _ NOUN NNS _ 30 nsubj _ _ 30 turn _ VERB VB _ 10 advcl _ _ 31 jittery _ ADJ JJ _ 30 xcomp _ _ 32 about _ ADP IN _ 34 case _ _ 33 foreign _ ADJ JJ _ 34 amod _ _ 34 stocks _ NOUN NNS _ 31 nmod _ _ 35 after _ ADP IN _ 39 case _ _ 36 Friday _ PROPN NNP _ 39 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 market _ NOUN NN _ 39 compound _ _ 39 plunge _ NOUN NN _ 30 nmod _ _ 40 . _ PUNCT . _ 9 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 holders _ NOUN NNS _ 4 nsubj _ _ 3 now _ ADV RB _ 4 advmod _ _ 4 own _ VERB VBP _ 0 root _ _ 5 more _ ADJ JJR _ 7 advmod _ _ 6 than _ ADP IN _ 5 mwe _ _ 7 60 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 4 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 Blue _ PROPN NNP _ 11 compound _ _ 11 Arrow _ PROPN NNP _ 8 nmod _ _ 12 compared _ VERB VBN _ 15 case _ _ 13 with _ ADP IN _ 15 case _ _ 14 9 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 4 advcl _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 January _ PROPN NNP _ 15 nmod:tmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 In _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 U.S. _ PROPN NNP _ 5 compound _ _ 5 market _ NOUN NN _ 15 nmod _ _ 6 , _ PUNCT , _ 15 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 recognition _ NOUN NN _ 15 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Manpower _ PROPN NNP _ 12 compound _ _ 12 name _ NOUN NN _ 8 nmod _ _ 13 is _ VERB VBZ _ 15 cop _ _ 14 infinitely _ ADV RB _ 15 advmod _ _ 15 stronger _ ADJ JJR _ 23 dep _ _ 16 than _ ADP IN _ 18 case _ _ 17 Blue _ PROPN JJ _ 18 compound _ _ 18 Arrow _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 '' _ PUNCT '' _ 15 punct _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Fromstein _ PROPN NNP _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 moves _ NOUN NNS _ 5 nsubj _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 could _ AUX MD _ 5 aux _ _ 5 erase _ VERB VB _ 0 root _ _ 6 shareholders _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 perception _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 Blue _ PROPN NNP _ 11 compound _ _ 11 Arrow _ PROPN NNP _ 8 nmod _ _ 12 as _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 8 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 turmoil _ NOUN NN _ 14 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 further _ ADV RB _ 4 advmod _ _ 4 reinforces _ VERB VBZ _ 18 dep _ _ 5 the _ DET DT _ 6 det _ _ 6 concept _ NOUN NN _ 4 dobj _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 Blue _ PROPN NNP _ 9 compound _ _ 9 Arrow _ PROPN NNP _ 12 nsubj _ _ 10 is _ VERB VBZ _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 thing _ NOUN NN _ 6 ccomp _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 past _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Doug _ PROPN NNP _ 20 compound _ _ 20 Arthur _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 an _ DET DT _ 23 det _ _ 23 analyst _ NOUN NN _ 20 appos _ _ 24 at _ ADP IN _ 26 case _ _ 25 Kidder _ PROPN NNP _ 26 compound _ _ 26 Peabody _ PROPN NNP _ 23 nmod _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Co. _ PROPN NNP _ 26 conj _ _ 29 in _ ADP IN _ 31 case _ _ 30 New _ PROPN NNP _ 31 compound _ _ 31 York _ PROPN NNP _ 26 nmod _ _ 32 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 proposed _ VERB VBN _ 3 amod _ _ 3 changes _ NOUN NNS _ 6 nsubj _ _ 4 `` _ PUNCT `` _ 3 punct _ _ 5 all _ DET DT _ 3 dep _ _ 6 make _ VERB VBP _ 16 dep _ _ 7 a _ DET DT _ 8 det _ _ 8 lot _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 sense _ NOUN NN _ 8 nmod _ _ 11 to _ ADP TO _ 12 case _ _ 12 me _ PRON PRP _ 6 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 '' _ PUNCT '' _ 6 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 added _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 a _ DET DT _ 6 det _ _ 3 widely _ ADV RB _ 4 advmod _ _ 4 publicized _ VERB VBN _ 6 amod _ _ 5 boardroom _ NOUN NN _ 6 compound _ _ 6 coup _ NOUN NN _ 10 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Fromstein _ PROPN NNP _ 10 nsubj _ _ 10 ousted _ VERB VBD _ 0 root _ _ 11 Antony _ PROPN NNP _ 12 compound _ _ 12 Berry _ PROPN NNP _ 10 dobj _ _ 13 as _ ADP IN _ 17 case _ _ 14 Blue _ PROPN NNP _ 17 compound _ _ 15 Arrow _ PROPN NNP _ 17 compound _ _ 16 chief _ ADJ JJ _ 17 amod _ _ 17 executive _ NOUN NN _ 10 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 January _ PROPN NNP _ 10 nmod _ _ 20 , _ PUNCT , _ 10 punct _ _ 21 a _ DET DT _ 22 det _ _ 22 month _ NOUN NN _ 27 dep _ _ 23 after _ SCONJ IN _ 27 mark _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Berry _ PROPN NNP _ 27 nsubj _ _ 26 had _ AUX VBD _ 27 aux _ _ 27 forced _ VERB VBN _ 10 advcl _ _ 28 Mr. _ PROPN NNP _ 29 compound _ _ 29 Fromstein _ PROPN NNP _ 27 dobj _ _ 30 out _ ADV RP _ 27 advmod _ _ 31 as _ ADP IN _ 36 case _ _ 32 the _ DET DT _ 36 det _ _ 33 $ _ SYM $ _ 36 amod _ _ 34 1 _ NUM CD _ 33 compound _ _ 35 million-a-year _ ADJ JJ _ 33 dep _ _ 36 chief _ NOUN NN _ 27 nmod _ _ 37 of _ ADP IN _ 39 case _ _ 38 Milwaukee-based _ ADJ JJ _ 39 amod _ _ 39 Manpower _ PROPN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 10 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Fromstein _ PROPN NNP _ 3 nsubj _ _ 3 solidified _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 control _ NOUN NN _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 April _ PROPN NNP _ 3 nmod _ _ 8 by _ SCONJ IN _ 9 mark _ _ 9 taking _ VERB VBG _ 3 advcl _ _ 10 over _ ADP RP _ 9 compound:prt _ _ 11 from _ ADP IN _ 13 case _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Berry _ PROPN NNP _ 9 nmod _ _ 14 as _ ADP IN _ 15 case _ _ 15 chairman _ NOUN NN _ 9 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 Blue _ PROPN NNP _ 5 compound _ _ 4 Arrow _ PROPN NNP _ 5 compound _ _ 5 tumult _ NOUN NN _ 6 nsubj _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 n't _ PART RB _ 6 neg _ _ 8 over _ ADV RB _ 6 advmod _ _ 9 yet _ ADV RB _ 6 advmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 as _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 British _ ADJ JJ _ 14 amod _ _ 14 government _ NOUN NN _ 16 nsubj _ _ 15 is _ AUX VBZ _ 16 aux _ _ 16 investigating _ VERB VBG _ 6 advcl _ _ 17 a _ DET DT _ 27 det _ _ 18 disputed _ VERB VBN _ 27 amod _ _ 19 # _ SYM # _ 21 compound _ _ 20 25 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 27 dep _ _ 22 -LRB- _ PUNCT -LRB- _ 23 punct _ _ 23 $ _ SYM $ _ 21 dep _ _ 24 39.4 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 -RRB- _ PUNCT -RRB- _ 23 punct _ _ 27 loan _ NOUN NN _ 16 dobj _ _ 28 which _ PRON WDT _ 32 dobj _ _ 29 Mr. _ PROPN NNP _ 30 compound _ _ 30 Fromstein _ PROPN NNP _ 32 nsubj _ _ 31 has _ AUX VBZ _ 32 aux _ _ 32 said _ VERB VBN _ 27 acl:relcl _ _ 33 was _ AUX VBD _ 34 auxpass _ _ 34 made _ VERB VBN _ 32 ccomp _ _ 35 under _ ADP IN _ 39 case _ _ 36 Mr. _ PROPN NNP _ 37 compound _ _ 37 Berry _ PROPN NNP _ 39 nmod:poss _ _ 38 's _ PART POS _ 37 case _ _ 39 direction _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 Blue _ PROPN NNP _ 2 compound _ _ 2 Arrow _ PROPN NNP _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 able _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 pull _ VERB VB _ 4 xcomp _ _ 7 off _ ADP RP _ 6 compound:prt _ _ 8 the _ DET DT _ 12 det _ _ 9 $ _ SYM $ _ 12 amod _ _ 10 1.34 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 takeover _ NOUN NN _ 6 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 Manpower _ PROPN NN _ 12 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 1987 _ NUM CD _ 6 nmod _ _ 17 largely _ ADV RB _ 25 advmod _ _ 18 because _ SCONJ IN _ 25 mark _ _ 19 different _ ADJ JJ _ 24 amod _ _ 20 British _ ADJ JJ _ 24 amod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 American _ ADJ JJ _ 20 conj _ _ 23 accounting _ NOUN NN _ 24 compound _ _ 24 standards _ NOUN NNS _ 25 nsubj _ _ 25 produce _ VERB VBP _ 4 advcl _ _ 26 higher _ ADJ JJR _ 28 amod _ _ 27 reported _ VERB VBD _ 28 amod _ _ 28 earnings _ NOUN NNS _ 25 dobj _ _ 29 for _ ADP IN _ 31 case _ _ 30 British _ ADJ JJ _ 31 amod _ _ 31 companies _ NOUN NNS _ 25 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 British _ ADJ JJ _ 3 amod _ _ 3 rules _ NOUN NNS _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 Blue _ PROPN NNP _ 6 compound _ _ 6 Arrow _ PROPN NNP _ 8 nsubj _ _ 7 was _ VERB VBD _ 8 cop _ _ 8 able _ ADJ JJ _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 write _ VERB VB _ 8 xcomp _ _ 11 off _ ADP RP _ 10 compound:prt _ _ 12 at _ ADP IN _ 13 case _ _ 13 once _ ADV RB _ 10 nmod _ _ 14 the _ DET DT _ 15 det _ _ 15 $ _ SYM $ _ 10 dobj _ _ 16 1.15 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 20 case _ _ 19 good _ ADJ JJ _ 20 amod _ _ 20 will _ NOUN MD _ 15 nmod _ _ 21 arising _ VERB VBG _ 15 acl _ _ 22 from _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 purchase _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 As _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 U.S.-based _ ADJ JJ _ 4 amod _ _ 4 company _ NOUN NN _ 9 ccomp _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Blue _ PROPN NNP _ 7 compound _ _ 7 Arrow _ PROPN NNP _ 9 nsubj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 have _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 amortize _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 will _ NOUN NN _ 11 dobj _ _ 15 over _ ADP IN _ 20 case _ _ 16 as _ ADV RB _ 19 advmod _ _ 17 many _ ADJ JJ _ 19 advmod _ _ 18 as _ ADP IN _ 19 advmod _ _ 19 40 _ NUM CD _ 20 nummod _ _ 20 years _ NOUN NNS _ 11 nmod _ _ 21 , _ PUNCT , _ 9 punct _ _ 22 creating _ VERB VBG _ 9 xcomp _ _ 23 a _ DET DT _ 25 det _ _ 24 continuing _ VERB VBG _ 25 amod _ _ 25 drag _ NOUN NN _ 22 dobj _ _ 26 on _ ADP IN _ 28 case _ _ 27 reported _ VERB VBN _ 28 amod _ _ 28 earnings _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 Good _ ADJ JJ _ 2 amod _ _ 2 will _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 excess _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 cost _ NOUN NN _ 5 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 acquired _ VERB VBN _ 11 amod _ _ 11 firm _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 operating _ VERB VBG _ 14 amod _ _ 14 unit _ NOUN NN _ 11 conj _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 assets _ NOUN NNS _ 11 conj _ _ 17 over _ ADP IN _ 23 case _ _ 18 the _ DET DT _ 23 det _ _ 19 current _ ADJ JJ _ 23 amod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 fair _ ADJ JJ _ 19 conj _ _ 22 market _ NOUN NN _ 23 compound _ _ 23 value _ NOUN NN _ 5 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 those _ DET DT _ 26 det _ _ 26 assets _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 with _ ADP IN _ 5 case _ _ 3 so _ ADV RB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 shares _ NOUN NNS _ 14 nmod _ _ 6 now _ ADV RB _ 7 advmod _ _ 7 held _ VERB VBN _ 5 acl _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 U.S. _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 Blue _ PROPN NNP _ 13 compound _ _ 13 Arrow _ PROPN NNP _ 14 nsubj _ _ 14 reports _ VERB VBZ _ 0 root _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 earnings _ NOUN NNS _ 14 dep _ _ 17 two _ NUM CD _ 18 nummod _ _ 18 ways _ NOUN NNS _ 14 dobj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 based _ VERB VBN _ 23 case _ _ 21 on _ ADP IN _ 23 case _ _ 22 both _ DET DT _ 23 cc:preconj _ _ 23 U.K. _ PROPN NNP _ 14 advcl _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 U.S. _ PROPN NNP _ 27 compound _ _ 26 accounting _ NOUN NN _ 27 compound _ _ 27 standards _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 Our _ PRON PRP$ _ 4 nmod:poss _ _ 3 balance _ NOUN NN _ 4 compound _ _ 4 sheets _ NOUN NNS _ 5 nsubj _ _ 5 look _ VERB VBP _ 17 dep _ _ 6 like _ SCONJ IN _ 8 mark _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 came _ VERB VBD _ 5 advcl _ _ 9 from _ ADP IN _ 12 case _ _ 10 Alice _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 wonderland _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 '' _ PUNCT '' _ 5 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Fromstein _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 British _ ADJ JJ _ 3 amod _ _ 3 version _ NOUN NN _ 4 nsubj _ _ 4 shows _ VERB VBZ _ 0 root _ _ 5 `` _ PUNCT `` _ 7 punct _ _ 6 a _ DET DT _ 7 det _ _ 7 handful _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 pounds _ NOUN NNS _ 7 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 net _ ADJ JJ _ 12 amod _ _ 12 worth _ NOUN NN _ 9 nmod _ _ 13 '' _ PUNCT '' _ 7 punct _ _ 14 following _ VERB VBG _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 1987 _ NUM CD _ 17 nummod _ _ 17 write-off _ NOUN NN _ 4 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 good _ ADJ JJ _ 20 amod _ _ 20 will _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 while _ SCONJ IN _ 26 mark _ _ 23 the _ DET DT _ 25 det _ _ 24 American _ ADJ JJ _ 25 amod _ _ 25 version _ NOUN NN _ 26 nsubj _ _ 26 reflects _ VERB VBZ _ 4 advcl _ _ 27 `` _ PUNCT `` _ 28 punct _ _ 28 $ _ SYM $ _ 26 dobj _ _ 29 1 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 of _ ADP IN _ 33 case _ _ 32 net _ ADJ JJ _ 33 amod _ _ 33 worth _ NOUN NN _ 28 nmod _ _ 34 because _ SCONJ IN _ 45 mark _ _ 35 almost _ ADV RB _ 36 advmod _ _ 36 none _ NOUN NN _ 45 nsubjpass _ _ 37 of _ ADP IN _ 41 case _ _ 38 -LCB- _ PUNCT -LRB- _ 41 punct _ _ 39 the _ DET DT _ 41 det _ _ 40 good _ NOUN NN _ 41 compound _ _ 41 will _ NOUN MD _ 36 nmod _ _ 42 -RCB- _ PUNCT -RRB- _ 41 punct _ _ 43 has _ AUX VBZ _ 45 aux _ _ 44 been _ AUX VBN _ 45 auxpass _ _ 45 written _ VERB VBN _ 26 advcl _ _ 46 off _ ADP RP _ 45 compound:prt _ _ 47 . _ PUNCT . _ 4 punct _ _ 48 '' _ PUNCT '' _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Fromstein _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 hopes _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 eradicate _ VERB VB _ 5 xcomp _ _ 8 some _ DET DT _ 7 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 good _ ADJ NN _ 12 amod _ _ 12 will _ NOUN MD _ 8 nmod _ _ 13 left _ VERB RB _ 12 acl _ _ 14 on _ ADP IN _ 19 case _ _ 15 Blue _ PROPN NNP _ 16 compound _ _ 16 Arrow _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 U.S. _ PROPN NNP _ 19 compound _ _ 19 books _ NOUN NNS _ 13 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 one _ NUM CD _ 23 nummod _ _ 22 fell _ ADJ VBD _ 23 amod _ _ 23 swoop _ NOUN NN _ 7 nmod _ _ 24 , _ PUNCT , _ 3 punct _ _ 25 but _ CONJ CC _ 3 cc _ _ 26 would _ AUX MD _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 specify _ VERB VB _ 3 conj _ _ 29 how _ ADV WRB _ 30 advmod _ _ 30 much _ ADV JJ _ 28 dobj _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 People _ NOUN NNS _ 6 nsubj _ _ 2 close _ ADJ RB _ 1 amod _ _ 3 to _ ADP TO _ 5 case _ _ 4 Blue _ PROPN NNP _ 5 compound _ _ 5 Arrow _ PROPN NNP _ 2 nmod _ _ 6 suggested _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 write-down _ NOUN NN _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 represent _ VERB VB _ 6 ccomp _ _ 11 a _ DET DT _ 13 det _ _ 12 sizable _ ADJ JJ _ 13 amod _ _ 13 chunk _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 with _ SCONJ IN _ 17 mark _ _ 16 executives _ NOUN NNS _ 17 nsubj _ _ 17 claiming _ VERB VBG _ 10 advcl _ _ 18 prior _ ADJ JJ _ 19 amod _ _ 19 management _ NOUN NN _ 20 nsubj _ _ 20 overstated _ VERB VBD _ 17 ccomp _ _ 21 the _ DET DT _ 22 det _ _ 22 extent _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 27 case _ _ 24 Manpower _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 good _ ADJ JJ _ 27 amod _ _ 27 will _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 along _ ADP IN _ 7 case _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 return _ NOUN NN _ 14 nmod _ _ 8 to _ ADP TO _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Manpower _ PROPN NNP _ 11 compound _ _ 11 name _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 could _ AUX MD _ 14 aux _ _ 14 bolster _ VERB VB _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 prospects _ NOUN NNS _ 14 dobj _ _ 19 during _ ADP IN _ 22 case _ _ 20 possibly _ ADV RB _ 21 advmod _ _ 21 difficult _ ADJ JJ _ 22 amod _ _ 22 times _ NOUN NNS _ 14 nmod _ _ 23 for _ ADP IN _ 25 case _ _ 24 temporary _ ADJ JJ _ 25 amod _ _ 25 help _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 number _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 U.S. _ PROPN NNP _ 6 compound _ _ 5 temporary _ ADJ JJ _ 6 amod _ _ 6 workers _ NOUN NNS _ 2 nmod _ _ 7 fell _ VERB VBD _ 27 ccomp _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 1 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 12 _ NUM CD _ 14 nummod _ _ 14 months _ NOUN NNS _ 7 nmod _ _ 15 ending _ VERB VBG _ 14 acl _ _ 16 Aug. _ PROPN NNP _ 15 nmod:tmod _ _ 17 31 _ NUM CD _ 16 nummod _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 after _ SCONJ IN _ 20 mark _ _ 20 sliding _ VERB VBG _ 7 advcl _ _ 21 nearly _ ADV RB _ 22 advmod _ _ 22 3.5 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 20 dobj _ _ 24 in _ ADP IN _ 25 case _ _ 25 July _ PROPN NNP _ 20 nmod _ _ 26 , _ PUNCT , _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Kidder _ PROPN NNP _ 29 compound _ _ 29 Peabody _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 Mr. _ PROPN NNP _ 32 compound _ _ 32 Arthur _ PROPN NNP _ 27 nsubj _ _ 33 . _ PUNCT . _ 27 punct _ _ 1 Blue _ PROPN NNP _ 2 compound _ _ 2 Arrow _ PROPN NNP _ 3 nsubj _ _ 3 blamed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 7 det _ _ 5 pretax _ ADJ JJ _ 7 amod _ _ 6 profit _ NOUN NN _ 7 compound _ _ 7 drop _ NOUN NN _ 3 dobj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 quarter _ NOUN NN _ 7 nmod _ _ 11 ended _ VERB VBN _ 10 acl _ _ 12 July _ PROPN NNP _ 11 nmod:tmod _ _ 13 31 _ NUM CD _ 12 nummod _ _ 14 partly _ ADV RB _ 3 advmod _ _ 15 on _ ADP IN _ 18 case _ _ 16 slower _ ADJ JJR _ 18 amod _ _ 17 earnings _ NOUN NNS _ 18 compound _ _ 18 growth _ NOUN NN _ 3 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 non-Manpower _ ADJ JJ _ 21 amod _ _ 21 units _ NOUN NNS _ 18 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 Britain _ PROPN NNP _ 21 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Overall _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 pretax _ ADJ JJ _ 4 amod _ _ 4 profit _ NOUN NN _ 5 nsubj _ _ 5 slid _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 9 case _ _ 7 # _ SYM # _ 9 compound _ _ 8 18.49 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 5 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 quarter _ NOUN NN _ 9 nmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 # _ SYM # _ 16 compound _ _ 15 18.98 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 5 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 19 nmod:npmod _ _ 19 earlier _ ADV RBR _ 16 advmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Richard _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Sim _ PROPN NNP _ 28 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 man _ NOUN NN _ 3 appos _ _ 7 credited _ VERB VBN _ 6 acl _ _ 8 with _ SCONJ IN _ 9 mark _ _ 9 transforming _ VERB VBG _ 7 advcl _ _ 10 Applied _ PROPN NNP _ 12 compound _ _ 11 Power _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 9 dobj _ _ 13 from _ ADP IN _ 15 case _ _ 14 an _ DET DT _ 15 det _ _ 15 underachiever _ NOUN NN _ 9 nmod _ _ 16 into _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 feisty _ ADJ JJ _ 19 amod _ _ 19 player _ NOUN NN _ 9 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 global _ ADJ JJ _ 23 amod _ _ 23 market _ NOUN NN _ 19 nmod _ _ 24 for _ ADP IN _ 26 case _ _ 25 hydraulic _ ADJ JJ _ 26 amod _ _ 26 tools _ NOUN NNS _ 23 nmod _ _ 27 , _ PUNCT , _ 3 punct _ _ 28 hopes _ VERB VBZ _ 0 root _ _ 29 to _ PART TO _ 30 mark _ _ 30 guide _ VERB VB _ 28 xcomp _ _ 31 a _ DET DT _ 33 det _ _ 32 similar _ ADJ JJ _ 33 amod _ _ 33 turnaround _ NOUN NN _ 30 dobj _ _ 34 at _ ADP IN _ 39 case _ _ 35 the _ DET DT _ 36 det _ _ 36 company _ NOUN NN _ 39 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 latest _ ADJ JJS _ 39 amod _ _ 39 acquisition _ NOUN NN _ 33 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Barry _ PROPN NNP _ 43 compound _ _ 42 Wright _ PROPN NNP _ 43 compound _ _ 43 Corp _ PROPN NNP _ 39 appos _ _ 44 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 7 det _ _ 2 45-year-old _ ADJ JJ _ 7 amod _ _ 3 former _ ADJ JJ _ 7 amod _ _ 4 General _ PROPN NNP _ 7 compound _ _ 5 Electric _ PROPN NNP _ 7 compound _ _ 6 Co. _ PROPN NNP _ 7 compound _ _ 7 executive _ NOUN NN _ 8 nsubj _ _ 8 figures _ VERB VBZ _ 0 root _ _ 9 it _ PRON PRP _ 12 nsubj _ _ 10 will _ AUX MD _ 12 aux _ _ 11 be _ VERB VB _ 12 cop _ _ 12 easier _ ADJ RBR _ 8 ccomp _ _ 13 this _ DET DT _ 14 det _ _ 14 time _ NOUN NN _ 12 nmod:tmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 analysts _ NOUN NNS _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 while _ SCONJ IN _ 5 mark _ _ 5 applauding _ VERB VBG _ 9 dep _ _ 6 the _ DET DT _ 7 det _ _ 7 acquisition _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 say _ VERB VBP _ 0 root _ _ 10 Applied _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 chief _ ADJ JJ _ 13 amod _ _ 13 executive _ NOUN NN _ 14 nsubj _ _ 14 faces _ VERB VBZ _ 9 ccomp _ _ 15 a _ DET DT _ 17 det _ _ 16 tough _ ADJ JJ _ 17 amod _ _ 17 challenge _ NOUN NN _ 14 dobj _ _ 18 in _ SCONJ IN _ 19 mark _ _ 19 integrating _ VERB VBG _ 17 acl _ _ 20 the _ DET DT _ 22 det _ _ 21 two _ NUM CD _ 22 nummod _ _ 22 companies _ NOUN NNS _ 19 dobj _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Barry _ PROPN NNP _ 2 compound _ _ 2 Wright _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 acquired _ VERB VBN _ 2 acl _ _ 5 by _ ADP IN _ 6 case _ _ 6 Applied _ PROPN NNP _ 4 nmod _ _ 7 for _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 147 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 makes _ VERB VBZ _ 0 root _ _ 13 computer-room _ ADJ JJ _ 14 amod _ _ 14 equipment _ NOUN NN _ 12 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 vibration-control _ ADJ NN _ 17 amod _ _ 17 systems _ NOUN NNS _ 14 conj _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Watertown _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Mass. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 company _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 sales _ NOUN NNS _ 11 nsubj _ _ 9 have _ AUX VBP _ 11 aux _ _ 10 been _ VERB VBN _ 11 cop _ _ 11 dormant _ ADJ JJ _ 0 root _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 profits _ NOUN NNS _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 dropped _ VERB VBN _ 11 conj _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 year _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 earnings _ NOUN NNS _ 23 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 $ _ SYM $ _ 4 nmod _ _ 7 1.3 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 including _ VERB VBG _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 815,000 _ NUM CD _ 4 nmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 restructuring _ NOUN NN _ 16 compound _ _ 16 gain _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 were _ VERB VBD _ 23 cop _ _ 19 far _ ADV RB _ 23 advmod _ _ 20 below _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 $ _ SYM $ _ 0 root _ _ 24 8.4 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 . _ PUNCT . _ 23 punct _ _ 1 Besides _ SCONJ IN _ 2 mark _ _ 2 spurring _ VERB VBG _ 19 advcl _ _ 3 Barry _ PROPN NNP _ 4 compound _ _ 4 Wright _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 sales _ NOUN NNS _ 2 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 10 nsubj _ _ 9 were _ VERB VBD _ 10 cop _ _ 10 $ _ SYM $ _ 6 acl:relcl _ _ 11 201.7 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 in _ ADP IN _ 14 case _ _ 14 1988 _ NUM CD _ 10 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Sim _ PROPN NNP _ 19 nsubj _ _ 18 must _ AUX MD _ 19 aux _ _ 19 pare _ VERB VB _ 0 root _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 costs _ NOUN NNS _ 19 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 product _ NOUN NN _ 24 compound _ _ 24 line _ NOUN NN _ 21 conj _ _ 25 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 question _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 20 ccomp _ _ 5 how _ ADV WRB _ 6 advmod _ _ 6 long _ ADJ JJ _ 9 advmod _ _ 7 it _ PRON PRP _ 9 nsubj _ _ 8 's _ AUX VBZ _ 9 aux _ _ 9 going _ VERB VBG _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 take _ VERB VB _ 9 xcomp _ _ 12 Barry _ PROPN NNP _ 13 compound _ _ 13 Wright _ PROPN NNP _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 11 advcl _ _ 16 a _ DET DT _ 17 det _ _ 17 contribution _ NOUN NN _ 15 dobj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 F. _ PROPN NNP _ 23 compound _ _ 22 John _ PROPN NNP _ 23 compound _ _ 23 Mirek _ PROPN NNP _ 20 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 an _ DET DT _ 26 det _ _ 26 analyst _ NOUN NN _ 23 appos _ _ 27 at _ ADP IN _ 30 case _ _ 28 Blunt _ PROPN NNP _ 30 compound _ _ 29 Ellis _ PROPN NNP _ 30 compound _ _ 30 Loewi _ PROPN NNP _ 26 nmod _ _ 31 in _ ADP IN _ 32 case _ _ 32 Milwaukee _ PROPN NNP _ 30 nmod _ _ 33 . _ PUNCT . _ 20 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 answer _ NOUN NN _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 help _ VERB VB _ 0 root _ _ 5 determine _ VERB VB _ 4 ccomp _ _ 6 whether _ SCONJ IN _ 8 mark _ _ 7 Applied _ VERB NNP _ 8 nsubj _ _ 8 continues _ VERB VBZ _ 5 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 reach _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 13 det _ _ 12 ambitious _ ADJ JJ _ 13 amod _ _ 13 goals _ NOUN NNS _ 10 dobj _ _ 14 set _ VERB VBN _ 13 acl _ _ 15 by _ ADP IN _ 17 case _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Sim _ PROPN NNP _ 14 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Butler _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Wis. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 manufacturer _ NOUN NN _ 7 nsubj _ _ 7 went _ VERB VBD _ 0 root _ _ 8 public _ ADJ JJ _ 7 xcomp _ _ 9 at _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 15.75 _ NUM CD _ 7 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 August _ PROPN NNP _ 7 nmod _ _ 16 1987 _ NUM CD _ 15 nummod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 and _ CONJ CC _ 7 cc _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Sim _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 goal _ NOUN NN _ 29 nsubj _ _ 23 then _ ADV RB _ 29 advmod _ _ 24 was _ VERB VBD _ 29 cop _ _ 25 a _ DET DT _ 29 det _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 29 _ NUM CD _ 26 compound _ _ 28 per-share _ ADJ JJ _ 26 dep _ _ 29 price _ NOUN NN _ 7 conj _ _ 30 by _ ADP IN _ 31 case _ _ 31 1992 _ NUM CD _ 29 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 Strong _ ADJ JJ _ 3 amod _ _ 2 earnings _ NOUN NNS _ 3 compound _ _ 3 growth _ NOUN NN _ 4 nsubj _ _ 4 helped _ VERB VBD _ 0 root _ _ 5 achieve _ VERB VB _ 4 ccomp _ _ 6 that _ DET DT _ 7 det _ _ 7 price _ NOUN NN _ 5 dobj _ _ 8 far _ ADV RB _ 9 advmod _ _ 9 ahead _ ADV RB _ 5 advmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 schedule _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 5 nmod _ _ 15 1988 _ NUM CD _ 14 nummod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stock _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 since _ ADP IN _ 5 advmod _ _ 5 softened _ VERB VBN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 trading _ VERB VBG _ 5 ccomp _ _ 8 around _ ADV IN _ 9 advmod _ _ 9 $ _ SYM $ _ 7 dobj _ _ 10 25 _ NUM CD _ 9 nummod _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 9 nmod:npmod _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 week _ NOUN NN _ 7 nmod:tmod _ _ 15 and _ CONJ CC _ 7 cc _ _ 16 closing _ VERB NN _ 7 conj _ _ 17 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 18 at _ ADP IN _ 20 case _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 23.00 _ NUM CD _ 16 nmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 national _ ADJ JJ _ 24 amod _ _ 23 over-the-counter _ ADJ JJ _ 24 amod _ _ 24 trading _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Sim _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 set _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 fresh _ ADJ JJ _ 8 amod _ _ 8 target _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 50 _ NUM CD _ 8 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 by _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 end _ NOUN NN _ 5 nmod _ _ 17 of _ ADP IN _ 16 dep _ _ 1 Reaching _ VERB VBG _ 17 csubj _ _ 2 that _ DET DT _ 3 det _ _ 3 goal _ NOUN NN _ 1 dobj _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 says _ VERB VBZ _ 17 parataxis _ _ 6 Robert _ PROPN NNP _ 8 compound _ _ 7 T. _ PROPN NNP _ 8 compound _ _ 8 Foote _ PROPN NNP _ 5 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Applied _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 chief _ ADJ JJ _ 14 amod _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 officer _ NOUN NN _ 8 appos _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 will _ AUX MD _ 17 aux _ _ 17 require _ VERB VB _ 0 root _ _ 18 `` _ PUNCT `` _ 20 punct _ _ 19 efficient _ ADJ JJ _ 20 amod _ _ 20 reinvestment _ NOUN NN _ 17 dobj _ _ 21 '' _ PUNCT '' _ 20 punct _ _ 22 of _ ADP IN _ 23 case _ _ 23 cash _ NOUN NN _ 20 nmod _ _ 24 by _ ADP IN _ 25 case _ _ 25 Applied _ PROPN NNP _ 20 nmod _ _ 26 and _ CONJ CC _ 20 cc _ _ 27 continuation _ NOUN NN _ 20 conj _ _ 28 of _ ADP IN _ 33 case _ _ 29 its _ PRON PRP$ _ 33 nmod:poss _ _ 30 healthy _ ADJ JJ _ 33 amod _ _ 31 19 _ NUM CD _ 32 compound _ _ 32 % _ SYM NN _ 33 amod _ _ 33 rate _ NOUN NN _ 27 nmod _ _ 34 of _ ADP IN _ 35 case _ _ 35 return _ NOUN NN _ 33 nmod _ _ 36 on _ ADP IN _ 38 case _ _ 37 operating _ NOUN NN _ 38 compound _ _ 38 capital _ NOUN NN _ 35 nmod _ _ 39 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 Barry _ PROPN NNP _ 3 compound _ _ 3 Wright _ PROPN NNP _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Sim _ PROPN NNP _ 7 nsubj _ _ 7 sees _ VERB VBZ _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 situation _ NOUN NN _ 7 dobj _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 very _ ADV RB _ 12 advmod _ _ 12 similar _ ADJ JJ _ 9 amod _ _ 13 '' _ PUNCT '' _ 12 punct _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 one _ NUM NN _ 12 nmod _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 faced _ VERB VBD _ 16 acl:relcl _ _ 19 when _ ADV WRB _ 21 advmod _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 joined _ VERB VBD _ 18 advcl _ _ 22 Applied _ PROPN NNP _ 21 dobj _ _ 23 as _ ADP IN _ 24 case _ _ 24 president _ NOUN NN _ 21 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 chief _ NOUN NN _ 28 compound _ _ 27 operating _ VERB VBG _ 28 amod _ _ 28 officer _ NOUN NN _ 24 conj _ _ 29 in _ ADP IN _ 30 case _ _ 30 1985 _ NUM CD _ 21 nmod _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 Applied _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 then _ ADV RB _ 7 dep _ _ 4 a _ DET DT _ 7 det _ _ 5 closely _ ADV RB _ 6 advmod _ _ 6 held _ VERB VBN _ 7 amod _ _ 7 company _ NOUN NN _ 1 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 was _ AUX VBD _ 10 aux _ _ 10 stagnating _ VERB VBG _ 0 root _ _ 11 under _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 management _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 controlling _ VERB VBG _ 17 amod _ _ 17 family _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 While _ SCONJ IN _ 2 mark _ _ 2 profitable _ ADJ JJ _ 8 advcl _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 it _ PRON PRP _ 8 nsubj _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 was _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 growing _ VERB VBG _ 22 dep _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 was _ AUX VBD _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 providing _ VERB VBG _ 8 conj _ _ 13 a _ DET DT _ 15 det _ _ 14 satisfactory _ ADJ JJ _ 15 amod _ _ 15 return _ NOUN NN _ 12 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 invested _ VERB VBN _ 18 amod _ _ 18 capital _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 '' _ PUNCT '' _ 8 punct _ _ 21 he _ PRON PRP _ 22 nsubj _ _ 22 says _ VERB VBZ _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sim _ PROPN NNP _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 confident _ ADJ JJ _ 0 root _ _ 5 that _ SCONJ IN _ 14 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 drive _ NOUN NN _ 14 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 dominate _ VERB VB _ 7 acl _ _ 10 certain _ ADJ JJ _ 12 amod _ _ 11 niche _ NOUN NN _ 12 compound _ _ 12 markets _ NOUN NNS _ 9 dobj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 work _ VERB VB _ 4 ccomp _ _ 15 at _ ADP IN _ 17 case _ _ 16 Barry _ PROPN NNP _ 17 compound _ _ 17 Wright _ PROPN NNP _ 14 nmod _ _ 18 as _ SCONJ IN _ 22 mark _ _ 19 it _ PRON PRP _ 22 nsubj _ _ 20 has _ AUX VBZ _ 22 aux _ _ 21 at _ ADP IN _ 22 case _ _ 22 Applied _ PROPN NNP _ 14 advcl _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 professes _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 8 det _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 evangelical _ ADJ JJ _ 8 amod _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 fervor _ NOUN NN _ 3 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 develop _ VERB VB _ 8 acl _ _ 11 a _ DET DT _ 13 det _ _ 12 corporate _ ADJ JJ _ 13 amod _ _ 13 culture _ NOUN NN _ 10 dobj _ _ 14 that _ PRON WDT _ 15 nsubj _ _ 15 rewards _ VERB VBZ _ 13 acl:relcl _ _ 16 managers _ NOUN NNS _ 15 dobj _ _ 17 who _ PRON WP _ 18 nsubj _ _ 18 produce _ VERB VBP _ 16 acl:relcl _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 where _ ADV WRB _ 23 advmod _ _ 21 decision-making _ NOUN NN _ 23 nsubjpass _ _ 22 is _ AUX VBZ _ 23 auxpass _ _ 23 shared _ VERB VBN _ 15 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sim _ PROPN NNP _ 3 nsubj _ _ 3 considers _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 new _ ADJ JJ _ 6 amod _ _ 6 unit _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 operations _ NOUN NNS _ 11 dep _ _ 9 `` _ PUNCT `` _ 11 punct _ _ 10 fundamentally _ ADV RB _ 11 advmod _ _ 11 sound _ ADJ JJ _ 3 xcomp _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 adds _ VERB VBZ _ 3 conj _ _ 15 that _ SCONJ IN _ 21 mark _ _ 16 Barry _ PROPN NNP _ 17 compound _ _ 17 Wright _ PROPN NNP _ 21 nsubj _ _ 18 has _ AUX VBZ _ 21 aux _ _ 19 been _ VERB VBN _ 21 cop _ _ 20 fairly _ ADV RB _ 21 advmod _ _ 21 successful _ ADJ JJ _ 14 ccomp _ _ 22 in _ SCONJ IN _ 23 mark _ _ 23 moving _ VERB VBG _ 21 advcl _ _ 24 into _ ADP IN _ 25 case _ _ 25 markets _ NOUN NNS _ 23 nmod _ _ 26 that _ PRON WDT _ 29 nsubj _ _ 27 have _ AUX VBP _ 29 aux _ _ 28 n't _ PART RB _ 29 neg _ _ 29 interested _ VERB JJ _ 25 acl:relcl _ _ 30 larger _ ADJ JJR _ 31 amod _ _ 31 competitors _ NOUN NNS _ 29 dobj _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 With _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 4 det _ _ 4 little _ ADJ JJ _ 5 nmod:npmod _ _ 5 patience _ NOUN NN _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 these _ DET DT _ 8 det _ _ 8 businesses _ NOUN NNS _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 perform _ VERB VB _ 17 ccomp _ _ 11 very _ ADV RB _ 12 advmod _ _ 12 satisfactorily _ ADV RB _ 10 advmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 '' _ PUNCT '' _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Sim _ PROPN NNP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Within _ ADP IN _ 4 case _ _ 2 about _ ADV RB _ 3 advmod _ _ 3 six _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 `` _ PUNCT `` _ 10 punct _ _ 7 things _ NOUN NNS _ 10 nsubj _ _ 8 will _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 aux _ _ 10 moving _ VERB VBG _ 18 dep _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 right _ ADJ JJ _ 14 amod _ _ 14 direction _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 '' _ PUNCT '' _ 10 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 predicts _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sim _ PROPN NNP _ 3 nsubj _ _ 3 figures _ VERB VBZ _ 0 root _ _ 4 it _ PRON PRP _ 7 nsubj _ _ 5 will _ AUX MD _ 7 aux _ _ 6 be _ VERB VB _ 7 cop _ _ 7 easier _ ADJ JJR _ 3 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 turn _ VERB VB _ 7 xcomp _ _ 10 Barry _ PROPN NNP _ 11 compound _ _ 11 Wright _ PROPN NNP _ 9 dobj _ _ 12 around _ ADP IN _ 9 compound:prt _ _ 13 since _ SCONJ IN _ 21 mark _ _ 14 he _ PRON PRP _ 21 nsubj _ _ 15 's _ VERB VBZ _ 21 cop _ _ 16 now _ ADV RB _ 21 advmod _ _ 17 in _ ADP IN _ 21 case _ _ 18 the _ DET DT _ 19 det _ _ 19 driver _ NOUN NN _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 seat _ NOUN NN _ 7 advcl _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 he _ PRON PRP _ 3 nsubj _ _ 3 came _ VERB VBD _ 11 advcl _ _ 4 to _ ADP TO _ 5 case _ _ 5 Applied _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 `` _ PUNCT `` _ 11 punct _ _ 8 I _ PRON PRP _ 11 nsubj _ _ 9 did _ AUX VBD _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 have _ VERB VB _ 23 dep _ _ 12 the _ DET DT _ 13 det _ _ 13 power _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 execute _ VERB VB _ 13 acl _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 I _ PRON PRP _ 18 nsubj _ _ 18 do _ VERB VBP _ 15 advcl _ _ 19 today _ NOUN NN _ 18 nmod:tmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 '' _ PUNCT '' _ 11 punct _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 He _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 named _ VERB VBN _ 0 root _ _ 4 chief _ ADJ JJ _ 6 amod _ _ 5 executive _ ADJ JJ _ 6 amod _ _ 6 officer _ NOUN NN _ 3 xcomp _ _ 7 of _ ADP IN _ 8 case _ _ 8 Applied _ PROPN NNP _ 6 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 1986 _ NUM CD _ 3 nmod _ _ 11 and _ CONJ CC _ 3 cc _ _ 12 became _ VERB VBD _ 3 conj _ _ 13 chairman _ NOUN NN _ 12 xcomp _ _ 14 last _ ADJ JJ _ 15 amod _ _ 15 November _ PROPN NNP _ 12 nmod:tmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Applied _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Sim _ PROPN NNP _ 6 nsubj _ _ 6 set _ VERB VBD _ 0 root _ _ 7 growth _ NOUN NN _ 6 dobj _ _ 8 as _ ADP IN _ 11 case _ _ 9 his _ PRON PRP$ _ 11 nmod:poss _ _ 10 first _ ADJ JJ _ 11 amod _ _ 11 objective _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 took _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 public _ NOUN NN _ 2 xcomp _ _ 6 in _ ADP IN _ 8 case _ _ 7 an _ DET DT _ 8 det _ _ 8 offering _ NOUN NN _ 2 nmod _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 netted _ VERB VBD _ 8 acl:relcl _ _ 11 Applied _ PROPN NNP _ 10 iobj _ _ 12 about _ ADV IN _ 13 advmod _ _ 13 $ _ SYM $ _ 10 dobj _ _ 14 12.6 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 which _ PRON WDT _ 18 nsubj _ _ 18 helped _ VERB VBD _ 8 acl:relcl _ _ 19 launch _ VERB VB _ 18 ccomp _ _ 20 the _ DET DT _ 21 det _ _ 21 company _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 acquisition _ NOUN NN _ 24 compound _ _ 24 program _ NOUN NN _ 19 dobj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 climbed _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 6 case _ _ 4 an _ DET DT _ 6 det _ _ 5 estimated _ VERB VBN _ 6 amod _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 245 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 fiscal _ ADJ JJ _ 11 amod _ _ 11 1989 _ NUM CD _ 6 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 ended _ VERB VBN _ 11 acl _ _ 14 Aug. _ PROPN NNP _ 13 nmod:tmod _ _ 15 31 _ NUM CD _ 14 nummod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 from _ ADP IN _ 18 case _ _ 18 $ _ SYM $ _ 2 nmod _ _ 19 99.9 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 in _ ADP IN _ 23 case _ _ 22 fiscal _ ADJ JJ _ 23 amod _ _ 23 1985 _ NUM CD _ 18 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 16 mark _ _ 5 earnings _ NOUN NNS _ 16 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 have _ AUX VBP _ 9 aux _ _ 9 marched _ VERB VBN _ 5 acl:relcl _ _ 10 steadily _ ADV RB _ 9 advmod _ _ 11 upward _ ADV RB _ 9 advmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 recent _ ADJ JJ _ 14 amod _ _ 14 years _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 reached _ VERB VBD _ 3 ccomp _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 $ _ SYM $ _ 16 dobj _ _ 19 20.8 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 or _ CONJ CC _ 18 cc _ _ 23 $ _ SYM $ _ 24 dep _ _ 24 1.58 _ NUM CD _ 18 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 24 nmod:npmod _ _ 27 , _ PUNCT , _ 18 punct _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 fiscal _ ADJ JJ _ 31 amod _ _ 31 year _ NOUN NN _ 16 nmod _ _ 32 just _ ADV RB _ 33 advmod _ _ 33 ended _ VERB VBD _ 31 acl _ _ 34 , _ PUNCT , _ 16 punct _ _ 35 up _ ADV RB _ 16 advmod _ _ 36 from _ ADP IN _ 37 case _ _ 37 $ _ SYM $ _ 35 nmod _ _ 38 15.2 _ NUM CD _ 39 compound _ _ 39 million _ NUM CD _ 37 nummod _ _ 40 in _ ADP IN _ 42 case _ _ 41 fiscal _ ADJ JJ _ 42 amod _ _ 42 1988 _ NUM CD _ 37 nmod _ _ 43 and _ CONJ CC _ 37 cc _ _ 44 $ _ SYM $ _ 37 conj _ _ 45 3.9 _ NUM CD _ 46 compound _ _ 46 million _ NUM CD _ 44 nummod _ _ 47 in _ ADP IN _ 48 case _ _ 48 1985 _ NUM CD _ 44 nmod _ _ 49 . _ PUNCT . _ 3 punct _ _ ================================================ FILE: a3/data/dev.gold.conll ================================================ 1 Influential _ ADJ JJ _ 2 amod _ _ 2 members _ NOUN NNS _ 10 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 House _ PROPN NNP _ 6 compound _ _ 6 Ways _ PROPN NNP _ 2 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Means _ PROPN NNP _ 9 compound _ _ 9 Committee _ PROPN NNP _ 6 conj _ _ 10 introduced _ VERB VBD _ 0 root _ _ 11 legislation _ NOUN NN _ 10 dobj _ _ 12 that _ PRON WDT _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 restrict _ VERB VB _ 11 acl:relcl _ _ 15 how _ ADV WRB _ 22 advmod _ _ 16 the _ DET DT _ 20 det _ _ 17 new _ ADJ JJ _ 20 amod _ _ 18 savings-and-loan _ NOUN NN _ 20 compound _ _ 19 bailout _ NOUN NN _ 20 compound _ _ 20 agency _ NOUN NN _ 22 nsubj _ _ 21 can _ AUX MD _ 22 aux _ _ 22 raise _ VERB VB _ 14 ccomp _ _ 23 capital _ NOUN NN _ 22 dobj _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 creating _ VERB VBG _ 14 xcomp _ _ 26 another _ DET DT _ 28 det _ _ 27 potential _ ADJ JJ _ 28 amod _ _ 28 obstacle _ NOUN NN _ 25 dobj _ _ 29 to _ ADP TO _ 33 case _ _ 30 the _ DET DT _ 31 det _ _ 31 government _ NOUN NN _ 33 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 sale _ NOUN NN _ 28 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 sick _ ADJ JJ _ 36 amod _ _ 36 thrifts _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 whose _ PRON WP$ _ 5 nmod:poss _ _ 5 backers _ NOUN NNS _ 6 nsubj _ _ 6 include _ VERB VBP _ 2 acl:relcl _ _ 7 Chairman _ PROPN NNP _ 9 compound _ _ 8 Dan _ PROPN NNP _ 9 compound _ _ 9 Rostenkowski _ PROPN NNP _ 6 dobj _ _ 10 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 11 D. _ PROPN NNP _ 9 appos _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Ill. _ PROPN NNP _ 11 dep _ _ 14 -RRB- _ PUNCT -RRB- _ 11 punct _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 would _ AUX MD _ 17 aux _ _ 17 prevent _ VERB VB _ 0 root _ _ 18 the _ DET DT _ 21 det _ _ 19 Resolution _ PROPN NNP _ 21 compound _ _ 20 Trust _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 17 dobj _ _ 22 from _ SCONJ IN _ 23 mark _ _ 23 raising _ VERB VBG _ 17 advcl _ _ 24 temporary _ ADJ JJ _ 26 amod _ _ 25 working _ VERB VBG _ 26 amod _ _ 26 capital _ NOUN NN _ 23 dobj _ _ 27 by _ SCONJ IN _ 28 mark _ _ 28 having _ VERB VBG _ 17 advcl _ _ 29 an _ DET DT _ 31 det _ _ 30 RTC-owned _ ADJ JJ _ 31 amod _ _ 31 bank _ NOUN NN _ 28 dobj _ _ 32 or _ CONJ CC _ 31 cc _ _ 33 thrift _ NOUN NN _ 35 compound _ _ 34 issue _ NOUN NN _ 35 compound _ _ 35 debt _ NOUN NN _ 31 conj _ _ 36 that _ PRON WDT _ 40 nsubjpass _ _ 37 would _ AUX MD _ 40 aux _ _ 38 n't _ PART RB _ 40 neg _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 counted _ VERB VBN _ 31 acl:relcl _ _ 41 on _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 federal _ ADJ JJ _ 44 amod _ _ 44 budget _ NOUN NN _ 40 nmod _ _ 45 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 3 nsubj _ _ 3 intends _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 restrict _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 RTC _ PROPN NNP _ 5 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 Treasury _ PROPN NNP _ 10 compound _ _ 10 borrowings _ NOUN NNS _ 5 nmod _ _ 11 only _ ADV RB _ 10 advmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 unless _ SCONJ IN _ 16 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 agency _ NOUN NN _ 16 nsubj _ _ 16 receives _ VERB VBZ _ 3 advcl _ _ 17 specific _ ADJ JJ _ 19 amod _ _ 18 congressional _ ADJ JJ _ 19 amod _ _ 19 authorization _ NOUN NN _ 16 dobj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 Such _ ADJ JJ _ 7 amod _ _ 3 agency _ NOUN NN _ 7 compound _ _ 4 ` _ PUNCT `` _ 7 punct _ _ 5 self-help _ NOUN NN _ 7 compound _ _ 6 ' _ PUNCT '' _ 7 punct _ _ 7 borrowing _ NOUN NN _ 9 nsubj _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 unauthorized _ ADJ JJ _ 22 ccomp _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 expensive _ ADJ JJ _ 9 conj _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 far _ ADV RB _ 15 advmod _ _ 14 more _ ADV RBR _ 15 advmod _ _ 15 expensive _ ADJ JJ _ 9 dep _ _ 16 than _ ADP IN _ 19 case _ _ 17 direct _ ADJ JJ _ 19 amod _ _ 18 Treasury _ PROPN NNP _ 19 compound _ _ 19 borrowing _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 22 punct _ _ 21 '' _ PUNCT '' _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Rep. _ PROPN NNP _ 25 compound _ _ 24 Fortney _ PROPN NNP _ 25 compound _ _ 25 Stark _ PROPN NNP _ 22 nsubj _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 D. _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Calif. _ PROPN NNP _ 27 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 31 , _ PUNCT , _ 25 punct _ _ 32 the _ DET DT _ 33 det _ _ 33 bill _ NOUN NN _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 chief _ ADJ JJ _ 36 amod _ _ 36 sponsor _ NOUN NN _ 25 appos _ _ 37 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 complex _ ADJ JJ _ 4 amod _ _ 3 financing _ NOUN NN _ 4 compound _ _ 4 plan _ NOUN NN _ 10 nsubj _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 S&L _ NOUN NN _ 9 compound _ _ 8 bailout _ NOUN NN _ 9 compound _ _ 9 law _ NOUN NN _ 4 nmod _ _ 10 includes _ VERB VBZ _ 0 root _ _ 11 raising _ VERB VBG _ 10 xcomp _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 30 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 from _ ADP IN _ 16 case _ _ 16 debt _ NOUN NN _ 11 nmod _ _ 17 issued _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 newly _ ADV RB _ 21 advmod _ _ 21 created _ VERB VBN _ 22 amod _ _ 22 RTC _ PROPN NNP _ 17 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 financing _ NOUN NN _ 3 compound _ _ 3 system _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 created _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 law _ NOUN NN _ 5 nmod _ _ 10 in _ SCONJ IN _ 13 mark _ _ 11 order _ NOUN NN _ 10 mwe _ _ 12 to _ PART TO _ 13 mark _ _ 13 keep _ VERB VB _ 5 advcl _ _ 14 the _ DET DT _ 16 det _ _ 15 bailout _ NOUN NN _ 16 compound _ _ 16 spending _ NOUN NN _ 13 dobj _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 swelling _ VERB VBG _ 13 advcl _ _ 19 the _ DET DT _ 21 det _ _ 20 budget _ NOUN NN _ 21 compound _ _ 21 deficit _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Another _ DET DT _ 2 advmod _ _ 2 $ _ SYM $ _ 7 nsubjpass _ _ 3 20 _ NUM CD _ 4 compound _ _ 4 billion _ NUM CD _ 2 nummod _ _ 5 would _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 raised _ VERB VBN _ 0 root _ _ 8 through _ ADP IN _ 10 case _ _ 9 Treasury _ PROPN NNP _ 10 compound _ _ 10 bonds _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 13 nsubj _ _ 13 pay _ VERB VBP _ 10 acl:relcl _ _ 14 lower _ ADJ JJR _ 16 amod _ _ 15 interest _ NOUN NN _ 16 compound _ _ 16 rates _ NOUN NNS _ 13 dobj _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 RTC _ PROPN NNP _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 requires _ VERB VBZ _ 0 root _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 working _ NOUN NN _ 9 compound _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 capital _ NOUN NN _ 5 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 maintain _ VERB VB _ 9 acl _ _ 12 the _ DET DT _ 14 det _ _ 13 bad _ ADJ JJ _ 14 amod _ _ 14 assets _ NOUN NNS _ 11 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 thrifts _ NOUN NNS _ 14 nmod _ _ 17 that _ PRON WDT _ 19 nsubjpass _ _ 18 are _ AUX VBP _ 19 auxpass _ _ 19 sold _ VERB VBN _ 16 acl:relcl _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 until _ SCONJ IN _ 26 mark _ _ 22 the _ DET DT _ 23 det _ _ 23 assets _ NOUN NNS _ 26 nsubjpass _ _ 24 can _ AUX MD _ 26 aux _ _ 25 be _ AUX VB _ 26 auxpass _ _ 26 sold _ VERB VBN _ 11 advcl _ _ 27 separately _ ADV RB _ 26 advmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 debt _ NOUN NN _ 5 nsubjpass _ _ 3 would _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 paid _ VERB VBN _ 0 root _ _ 6 off _ ADP RP _ 5 compound:prt _ _ 7 as _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 assets _ NOUN NNS _ 11 nsubjpass _ _ 10 are _ AUX VBP _ 11 auxpass _ _ 11 sold _ VERB VBN _ 5 advcl _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 leaving _ VERB VBG _ 5 xcomp _ _ 14 the _ DET DT _ 16 det _ _ 15 total _ ADJ JJ _ 16 amod _ _ 16 spending _ NOUN NN _ 13 dobj _ _ 17 for _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 bailout _ NOUN NN _ 16 nmod _ _ 20 at _ ADP IN _ 21 case _ _ 21 $ _ SYM $ _ 13 nmod _ _ 22 50 _ NUM CD _ 23 compound _ _ 23 billion _ NUM CD _ 21 nummod _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 or _ CONJ CC _ 21 cc _ _ 26 $ _ SYM $ _ 21 conj _ _ 27 166 _ NUM CD _ 28 compound _ _ 28 billion _ NUM CD _ 26 nummod _ _ 29 including _ VERB VBG _ 30 case _ _ 30 interest _ NOUN NN _ 26 nmod _ _ 31 over _ ADP IN _ 33 case _ _ 32 10 _ NUM CD _ 33 nummod _ _ 33 years _ NOUN NNS _ 30 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 problem _ NOUN NN _ 14 ccomp _ _ 6 that _ PRON WDT _ 8 nsubj _ _ 7 clearly _ ADV RB _ 8 advmod _ _ 8 has _ VERB VBZ _ 5 acl:relcl _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 resolved _ VERB VBN _ 8 xcomp _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 David _ PROPN NNP _ 16 compound _ _ 16 Cooke _ PROPN NNP _ 14 nsubj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 executive _ ADJ JJ _ 19 amod _ _ 19 director _ NOUN NN _ 16 appos _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 RTC _ PROPN NNP _ 19 nmod _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 already _ ADV RB _ 5 advmod _ _ 5 spent _ VERB VBN _ 0 root _ _ 6 roughly _ ADV RB _ 7 advmod _ _ 7 $ _ SYM $ _ 5 dobj _ _ 8 19 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 selling _ VERB VBG _ 5 xcomp _ _ 11 34 _ NUM CD _ 13 nummod _ _ 12 insolvent _ ADJ JJ _ 13 amod _ _ 13 S&Ls _ NOUN NNS _ 10 dobj _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 it _ PRON PRP _ 18 nsubj _ _ 17 is _ VERB VBZ _ 18 cop _ _ 18 likely _ ADJ JJ _ 5 conj _ _ 19 to _ PART TO _ 20 mark _ _ 20 sell _ VERB VB _ 18 xcomp _ _ 21 or _ CONJ CC _ 20 cc _ _ 22 merge _ VERB VB _ 20 conj _ _ 23 600 _ NUM CD _ 20 dobj _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 time _ NOUN NN _ 20 nmod _ _ 27 the _ DET DT _ 28 det _ _ 28 bailout _ NOUN NN _ 29 nsubj _ _ 29 concludes _ VERB VBZ _ 26 acl:relcl _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Absent _ VERB VB _ 13 dep _ _ 2 other _ ADJ JJ _ 4 amod _ _ 3 working _ NOUN NN _ 4 compound _ _ 4 capital _ NOUN NN _ 1 dep _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 said _ VERB VBD _ 13 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 RTC _ PROPN NNP _ 13 nsubjpass _ _ 11 would _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 forced _ VERB VBN _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 delay _ VERB VB _ 13 xcomp _ _ 16 other _ ADJ JJ _ 18 amod _ _ 17 thrift _ NOUN NN _ 18 compound _ _ 18 resolutions _ NOUN NNS _ 15 dobj _ _ 19 until _ SCONJ IN _ 23 mark _ _ 20 cash _ NOUN NN _ 23 nsubjpass _ _ 21 could _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 raised _ VERB VBN _ 15 advcl _ _ 24 by _ SCONJ IN _ 25 mark _ _ 25 selling _ VERB VBG _ 23 advcl _ _ 26 the _ DET DT _ 28 det _ _ 27 bad _ ADJ JJ _ 28 amod _ _ 28 assets _ NOUN NNS _ 25 dobj _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 have _ VERB VB _ 22 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 wait _ VERB VB _ 4 xcomp _ _ 7 until _ SCONJ IN _ 10 mark _ _ 8 we _ PRON PRP _ 10 nsubj _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 collected _ VERB VBN _ 6 advcl _ _ 11 on _ ADP IN _ 13 case _ _ 12 those _ DET DT _ 13 det _ _ 13 assets _ NOUN NNS _ 10 nmod _ _ 14 before _ SCONJ IN _ 17 mark _ _ 15 we _ PRON PRP _ 17 nsubj _ _ 16 can _ AUX MD _ 17 aux _ _ 17 move _ VERB VB _ 6 advcl _ _ 18 forward _ ADV RB _ 17 advmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 '' _ PUNCT '' _ 22 punct _ _ 21 he _ PRON PRP _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 complicated _ VERB VBN _ 3 amod _ _ 3 language _ NOUN NN _ 10 nsubj _ _ 4 in _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 huge _ ADJ JJ _ 8 amod _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 law _ NOUN NN _ 3 nmod _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 muddied _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 fight _ NOUN NN _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 law _ NOUN NN _ 4 nsubj _ _ 3 does _ AUX VBZ _ 4 aux _ _ 4 allow _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 borrow _ VERB VB _ 4 xcomp _ _ 9 from _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 Treasury _ PROPN NNP _ 8 nmod _ _ 12 up _ ADP IN _ 14 dep _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 $ _ SYM $ _ 8 dobj _ _ 15 5 _ NUM CD _ 16 compound _ _ 16 billion _ NUM CD _ 14 nummod _ _ 17 at _ ADP IN _ 19 case _ _ 18 any _ DET DT _ 19 det _ _ 19 time _ NOUN NN _ 8 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Moreover _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 total _ ADJ JJ _ 9 amod _ _ 9 obligations _ NOUN NNS _ 12 nsubj _ _ 10 may _ AUX MD _ 12 aux _ _ 11 not _ PART RB _ 12 neg _ _ 12 exceed _ VERB VB _ 4 ccomp _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 50 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 but _ CONJ CC _ 4 cc _ _ 18 that _ DET DT _ 19 det _ _ 19 figure _ NOUN NN _ 21 nsubjpass _ _ 20 is _ AUX VBZ _ 21 auxpass _ _ 21 derived _ VERB VBN _ 4 conj _ _ 22 after _ SCONJ IN _ 23 mark _ _ 23 including _ VERB VBG _ 21 advcl _ _ 24 notes _ NOUN NNS _ 23 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 other _ ADJ JJ _ 27 amod _ _ 27 debt _ NOUN NN _ 24 conj _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 and _ CONJ CC _ 23 cc _ _ 30 subtracting _ VERB VBG _ 23 conj _ _ 31 from _ ADP IN _ 32 case _ _ 32 it _ PRON PRP _ 30 nmod _ _ 33 the _ DET DT _ 35 det _ _ 34 market _ NOUN NN _ 35 compound _ _ 35 value _ NOUN NN _ 30 dobj _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 assets _ NOUN NNS _ 35 nmod _ _ 39 the _ DET DT _ 40 det _ _ 40 RTC _ PROPN NNP _ 41 nsubj _ _ 41 holds _ VERB VBZ _ 38 acl:relcl _ _ 42 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 Congress _ PROPN NNP _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 anticipate _ VERB VB _ 12 ccomp _ _ 6 or _ CONJ CC _ 5 cc _ _ 7 intend _ VERB VB _ 5 conj _ _ 8 more _ ADJ JJR _ 10 amod _ _ 9 public _ ADJ JJ _ 10 amod _ _ 10 debt _ NOUN NN _ 5 dobj _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 say _ VERB VBP _ 0 root _ _ 13 opponents _ NOUN NNS _ 12 nsubj _ _ 14 of _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 16 det _ _ 16 RTC _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 working-capital _ ADJ JJ _ 19 amod _ _ 19 plan _ NOUN NN _ 13 nmod _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 and _ CONJ CC _ 12 cc _ _ 22 Rep. _ PROPN NNP _ 24 compound _ _ 23 Charles _ PROPN NNP _ 24 compound _ _ 24 Schumer _ PROPN NNP _ 31 nsubj _ _ 25 -LRB- _ PUNCT -LRB- _ 26 punct _ _ 26 D. _ PROPN NNP _ 24 appos _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 N.Y _ PROPN NNP _ 26 dep _ _ 29 . _ PUNCT . _ 28 punct _ _ 30 -RRB- _ PUNCT -RRB- _ 26 punct _ _ 31 said _ VERB VBD _ 12 conj _ _ 32 the _ DET DT _ 35 det _ _ 33 RTC _ PROPN NNP _ 35 compound _ _ 34 Oversight _ PROPN NNP _ 35 compound _ _ 35 Board _ PROPN NNP _ 38 nsubj _ _ 36 has _ AUX VBZ _ 38 aux _ _ 37 been _ VERB VBN _ 38 cop _ _ 38 remiss _ ADJ JJ _ 31 ccomp _ _ 39 in _ SCONJ IN _ 41 mark _ _ 40 not _ PART RB _ 41 neg _ _ 41 keeping _ VERB VBG _ 38 advcl _ _ 42 Congress _ PROPN NNP _ 43 nsubj _ _ 43 informed _ VERB VBN _ 41 xcomp _ _ 44 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 That _ DET DT _ 3 det _ _ 3 secrecy _ NOUN NN _ 4 nsubj _ _ 4 leads _ VERB VBZ _ 26 ccomp _ _ 5 to _ ADP TO _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 proposal _ NOUN NN _ 4 nmod _ _ 8 like _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 one _ NUM CD _ 7 nmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 Ways _ PROPN NNP _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Means _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 seems _ VERB VBZ _ 10 acl:relcl _ _ 18 to _ ADP TO _ 19 case _ _ 19 me _ PRON PRP _ 17 nmod _ _ 20 sort _ NOUN NN _ 22 advmod _ _ 21 of _ ADP IN _ 20 case _ _ 22 draconian _ ADJ JJ _ 17 xcomp _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 '' _ PUNCT '' _ 26 punct _ _ 25 he _ PRON PRP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 RTC _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 going _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 have _ VERB VB _ 5 xcomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 pay _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 11 det _ _ 11 price _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 prior _ ADJ JJ _ 14 amod _ _ 14 consultation _ NOUN NN _ 11 nmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Hill _ PROPN NNP _ 14 nmod _ _ 18 if _ SCONJ IN _ 20 mark _ _ 19 they _ PRON PRP _ 20 nsubj _ _ 20 want _ VERB VBP _ 5 advcl _ _ 21 that _ DET DT _ 22 det _ _ 22 kind _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 24 case _ _ 24 flexibility _ NOUN NN _ 22 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 26 '' _ PUNCT '' _ 5 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Ways _ PROPN NNP _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Means _ PROPN NNP _ 2 conj _ _ 5 Committee _ PROPN NNP _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 hold _ VERB VB _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 hearing _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 bill _ NOUN NN _ 9 nmod _ _ 13 next _ ADP IN _ 14 amod _ _ 14 Tuesday _ PROPN NNP _ 7 nmod:tmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 We _ PRON PRP _ 3 nsubj _ _ 2 're _ AUX VBP _ 3 aux _ _ 3 about _ ADP IN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 see _ VERB VB _ 3 xcomp _ _ 6 if _ SCONJ IN _ 8 mark _ _ 7 advertising _ NOUN NN _ 8 nsubj _ _ 8 works _ VERB VBZ _ 5 advcl _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Hard _ ADV RB _ 24 advmod _ _ 2 on _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 heels _ NOUN NNS _ 1 nmod _ _ 5 of _ ADP IN _ 10 case _ _ 6 Friday _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 190-point _ ADJ JJ _ 10 amod _ _ 9 stock-market _ NOUN NN _ 10 compound _ _ 10 plunge _ NOUN NN _ 4 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 13 det _ _ 13 uncertainty _ NOUN NN _ 10 conj _ _ 14 that _ PRON WDT _ 16 nsubjpass _ _ 15 's _ AUX VBZ _ 16 auxpass _ _ 16 followed _ VERB VBN _ 13 acl:relcl _ _ 17 , _ PUNCT , _ 24 punct _ _ 18 a _ DET DT _ 22 det _ _ 19 few _ ADJ JJ _ 22 amod _ _ 20 big _ ADJ JJ _ 22 amod _ _ 21 brokerage _ NOUN NN _ 22 compound _ _ 22 firms _ NOUN NNS _ 24 nsubj _ _ 23 are _ AUX VBP _ 24 aux _ _ 24 rolling _ VERB VBG _ 0 root _ _ 25 out _ ADP RP _ 24 compound:prt _ _ 26 new _ ADJ JJ _ 27 amod _ _ 27 ads _ NOUN NNS _ 24 dobj _ _ 28 trumpeting _ VERB VBG _ 27 acl _ _ 29 a _ DET DT _ 31 det _ _ 30 familiar _ ADJ JJ _ 31 amod _ _ 31 message _ NOUN NN _ 28 dobj _ _ 32 : _ PUNCT : _ 31 punct _ _ 33 Keep _ VERB VB _ 31 dep _ _ 34 on _ ADP RP _ 33 compound:prt _ _ 35 investing _ VERB VBG _ 33 xcomp _ _ 36 , _ PUNCT , _ 33 punct _ _ 37 the _ DET DT _ 38 det _ _ 38 market _ NOUN NN _ 41 nsubj _ _ 39 's _ VERB VBZ _ 41 cop _ _ 40 just _ ADV RB _ 41 advmod _ _ 41 fine _ ADJ JJ _ 33 parataxis _ _ 42 . _ PUNCT . _ 24 punct _ _ 1 Their _ PRON PRP$ _ 2 nmod:poss _ _ 2 mission _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 keep _ VERB VB _ 3 xcomp _ _ 6 clients _ NOUN NNS _ 5 dobj _ _ 7 from _ SCONJ IN _ 8 mark _ _ 8 fleeing _ VERB VBG _ 5 advcl _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 as _ SCONJ IN _ 15 mark _ _ 13 individual _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 15 nsubj _ _ 15 did _ VERB VBD _ 8 advcl _ _ 16 in _ ADP IN _ 17 case _ _ 17 droves _ NOUN NNS _ 15 nmod _ _ 18 after _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 crash _ NOUN NN _ 15 nmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 October _ PROPN NNP _ 20 nmod _ _ 1 Just _ ADV RB _ 2 advmod _ _ 2 days _ NOUN NNS _ 11 nmod _ _ 3 after _ ADP IN _ 2 case _ _ 4 the _ DET DT _ 6 det _ _ 5 1987 _ NUM CD _ 6 nummod _ _ 6 crash _ NOUN NN _ 2 dep _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 major _ ADJ JJ _ 10 amod _ _ 9 brokerage _ NOUN NN _ 10 compound _ _ 10 firms _ NOUN NNS _ 11 nsubj _ _ 11 rushed _ VERB VBN _ 0 root _ _ 12 out _ ADP RP _ 11 compound:prt _ _ 13 ads _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 calm _ VERB VB _ 11 advcl _ _ 16 investors _ NOUN NNS _ 15 dobj _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 7 nmod:tmod _ _ 3 around _ ADP RP _ 2 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 're _ AUX VBP _ 7 aux _ _ 7 moving _ VERB VBG _ 0 root _ _ 8 even _ ADV RB _ 9 advmod _ _ 9 faster _ ADV RBR _ 7 advmod _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 PaineWebber _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 filmed _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 new _ ADJ JJ _ 7 amod _ _ 6 television _ NOUN NN _ 7 compound _ _ 7 commercial _ NOUN NN _ 3 dobj _ _ 8 at _ ADP IN _ 11 case _ _ 9 4 _ NUM CD _ 11 nummod _ _ 10 p.m. _ NOUN NN _ 11 compound _ _ 11 EDT _ PROPN NNP _ 3 nmod _ _ 12 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 had _ VERB VBD _ 3 conj _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 air _ NOUN NN _ 14 nmod _ _ 19 by _ ADP IN _ 21 case _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 night _ NOUN NN _ 14 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Fidelity _ PROPN NNP _ 2 compound _ _ 2 Investments _ PROPN NNP _ 3 nsubj _ _ 3 placed _ VERB VBD _ 0 root _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 ads _ NOUN NNS _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 newspapers _ NOUN NNS _ 3 nmod _ _ 8 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 and _ CONJ CC _ 3 cc _ _ 11 wrote _ VERB VBD _ 3 conj _ _ 12 another _ DET DT _ 14 det _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 ad _ NOUN NN _ 11 dobj _ _ 15 appearing _ VERB VBG _ 14 acl _ _ 16 today _ NOUN NN _ 15 nmod:tmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Shearson _ PROPN NNP _ 4 compound _ _ 2 Lehman _ PROPN NNP _ 4 compound _ _ 3 Hutton _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 10 nsubj _ _ 5 by _ ADP IN _ 7 case _ _ 6 yesterday _ NOUN NN _ 7 compound _ _ 7 afternoon _ NOUN NN _ 10 nmod _ _ 8 had _ AUX VBD _ 10 aux _ _ 9 already _ ADV RB _ 10 advmod _ _ 10 written _ VERB VBN _ 0 root _ _ 11 new _ ADJ JJ _ 13 amod _ _ 12 TV _ NOUN NN _ 13 compound _ _ 13 ads _ NOUN NNS _ 10 dobj _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 considered _ VERB VBD _ 0 root _ _ 3 running _ VERB VBG _ 2 xcomp _ _ 4 them _ PRON PRP _ 3 dobj _ _ 5 during _ ADP IN _ 11 case _ _ 6 tomorrow _ NOUN NN _ 7 compound _ _ 7 night _ NOUN NN _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 World _ PROPN NNP _ 11 compound _ _ 10 Series _ PROPN NNP _ 11 compound _ _ 11 broadcast _ NOUN NN _ 3 nmod _ _ 12 but _ CONJ CC _ 2 cc _ _ 13 decided _ VERB VBD _ 2 conj _ _ 14 not _ ADV RB _ 15 neg _ _ 15 to _ PART TO _ 13 xcomp _ _ 16 when _ ADV WRB _ 19 advmod _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 19 nsubj _ _ 19 recovered _ VERB VBD _ 13 advcl _ _ 20 yesterday _ NOUN NN _ 19 nmod:tmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 brokerage _ NOUN NN _ 3 compound _ _ 3 firms _ NOUN NNS _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 including _ VERB VBG _ 7 case _ _ 6 Merrill _ PROPN NNP _ 7 compound _ _ 7 Lynch _ PROPN NNP _ 3 nmod _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Co. _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 were _ AUX VBD _ 12 aux _ _ 12 plotting _ VERB VBG _ 0 root _ _ 13 out _ ADP RP _ 12 compound:prt _ _ 14 potential _ ADJ JJ _ 17 amod _ _ 15 new _ ADJ JJ _ 17 amod _ _ 16 ad _ NOUN NN _ 17 compound _ _ 17 strategies _ NOUN NNS _ 12 dobj _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 brokerage _ NOUN NN _ 3 compound _ _ 3 firms _ NOUN NNS _ 4 nsubj _ _ 4 learned _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 lesson _ NOUN NN _ 4 dobj _ _ 7 the _ DET DT _ 9 det _ _ 8 last _ ADJ JJ _ 9 amod _ _ 9 time _ NOUN NN _ 4 nmod:tmod _ _ 10 around _ ADP RP _ 9 advmod _ _ 11 , _ PUNCT , _ 9 punct _ _ 12 when _ ADV WRB _ 15 advmod _ _ 13 frightened _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 15 nsubj _ _ 15 flooded _ VERB VBD _ 9 acl:relcl _ _ 16 the _ DET DT _ 18 det _ _ 17 phone _ NOUN NN _ 18 compound _ _ 18 lines _ NOUN NNS _ 15 dobj _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 fled _ VERB VBD _ 15 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 20 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 a _ DET DT _ 25 det _ _ 25 panic _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 firms _ NOUN NNS _ 7 nsubj _ _ 6 were _ VERB VBD _ 7 cop _ _ 7 ready _ ADJ JJ _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 Fidelity _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 example _ NOUN NN _ 6 nmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 prepared _ VERB VBN _ 0 root _ _ 7 ads _ NOUN NNS _ 6 dobj _ _ 8 several _ ADJ JJ _ 9 amod _ _ 9 months _ NOUN NNS _ 10 nmod:npmod _ _ 10 ago _ ADV RB _ 6 advmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 case _ NOUN NN _ 6 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 market _ NOUN NN _ 16 compound _ _ 16 plunge _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 went _ VERB VBD _ 15 advcl _ _ 5 into _ ADP IN _ 8 case _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 free _ ADJ JJ _ 8 amod _ _ 8 fall _ NOUN NN _ 4 nmod _ _ 9 Friday _ PROPN NNP _ 10 compound _ _ 10 afternoon _ NOUN NN _ 4 nmod:tmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 investment _ NOUN NN _ 14 compound _ _ 14 firm _ NOUN NN _ 15 nsubj _ _ 15 ordered _ VERB VBD _ 0 root _ _ 16 full _ ADJ JJ _ 17 amod _ _ 17 pages _ NOUN NNS _ 15 dobj _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Monday _ PROPN NNP _ 21 compound _ _ 21 editions _ NOUN NNS _ 17 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 half _ DET PDT _ 25 advmod _ _ 24 a _ DET DT _ 25 advmod _ _ 25 dozen _ NOUN NN _ 26 nummod _ _ 26 newspapers _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ads _ NOUN NNS _ 3 nsubj _ _ 3 touted _ VERB VBD _ 0 root _ _ 4 Fidelity _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 automated _ VERB VBN _ 7 amod _ _ 7 800-number _ NOUN NN _ 3 dobj _ _ 8 beneath _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 huge _ ADJ JJ _ 11 amod _ _ 11 headline _ NOUN NN _ 3 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 11 punct _ _ 14 Fidelity _ PROPN NNP _ 16 nsubj _ _ 15 Is _ VERB VBZ _ 16 cop _ _ 16 Ready _ ADJ JJ _ 11 dep _ _ 17 For _ ADP IN _ 19 case _ _ 18 Your _ PRON PRP$ _ 19 nmod:poss _ _ 19 Call _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 21 '' _ PUNCT '' _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Fidelity _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 says _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 800-line _ NOUN NN _ 21 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 11 nsubj _ _ 9 already _ ADV RB _ 11 advmod _ _ 10 was _ AUX VBD _ 11 aux _ _ 11 operating _ VERB VBG _ 6 acl:relcl _ _ 12 but _ CONJ CC _ 11 cc _ _ 13 which _ PRON WDT _ 18 nmod _ _ 14 many _ ADJ JJ _ 15 amod _ _ 15 clients _ NOUN NNS _ 18 nsubj _ _ 16 did _ AUX VBD _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 know _ VERB VB _ 11 conj _ _ 19 about _ ADP IN _ 13 case _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 received _ VERB VBN _ 4 ccomp _ _ 22 about _ ADV RB _ 23 advmod _ _ 23 double _ ADV RB _ 26 nummod _ _ 24 the _ DET DT _ 26 det _ _ 25 usual _ ADJ JJ _ 26 amod _ _ 26 volume _ NOUN NN _ 21 dobj _ _ 27 of _ ADP IN _ 28 case _ _ 28 calls _ NOUN NNS _ 26 nmod _ _ 29 over _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 weekend _ NOUN NN _ 21 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 A _ DET DT _ 3 det _ _ 3 lot _ NOUN NN _ 7 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 investor _ NOUN NN _ 6 compound _ _ 6 confidence _ NOUN NN _ 3 nmod _ _ 7 comes _ VERB VBZ _ 20 ccomp _ _ 8 from _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 fact _ NOUN NN _ 7 nmod _ _ 11 that _ SCONJ IN _ 14 mark _ _ 12 they _ PRON PRP _ 14 nsubj _ _ 13 can _ AUX MD _ 14 aux _ _ 14 speak _ VERB VB _ 10 ccomp _ _ 15 to _ ADP TO _ 16 case _ _ 16 us _ PRON PRP _ 14 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 '' _ PUNCT '' _ 20 punct _ _ 19 he _ PRON PRP _ 20 nsubj _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 To _ PART TO _ 3 mark _ _ 3 maintain _ VERB VB _ 8 csubj _ _ 4 that _ DET DT _ 5 det _ _ 5 dialogue _ NOUN NN _ 3 dobj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 absolutely _ ADV RB _ 8 advmod _ _ 8 crucial _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 would _ AUX MD _ 6 aux _ _ 3 have _ AUX VB _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 too _ ADV RB _ 6 advmod _ _ 6 late _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 think _ VERB VB _ 6 ccomp _ _ 9 about _ ADP IN _ 8 nmod _ _ 10 on _ ADP IN _ 11 case _ _ 11 Friday _ PROPN NNP _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 had _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 think _ VERB VB _ 2 xcomp _ _ 5 about _ ADP IN _ 6 case _ _ 6 it _ PRON PRP _ 4 nmod _ _ 7 ahead _ ADV RB _ 4 advmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 time _ NOUN NN _ 7 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 Today _ NOUN NN _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Fidelity _ PROPN NNP _ 4 compound _ _ 4 ad _ NOUN NN _ 5 nsubj _ _ 5 goes _ VERB VBZ _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 step _ NOUN NN _ 5 dobj _ _ 8 further _ ADV RBR _ 7 advmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 encouraging _ VERB VBG _ 5 advcl _ _ 11 investors _ NOUN NNS _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 stay _ VERB VB _ 10 ccomp _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 13 nmod _ _ 17 or _ CONJ CC _ 13 cc _ _ 18 even _ ADV RB _ 20 advmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 plunge _ VERB VB _ 13 conj _ _ 21 in _ ADP RP _ 20 compound:prt _ _ 22 with _ ADP IN _ 23 case _ _ 23 Fidelity _ PROPN NNP _ 20 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Underneath _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 headline _ NOUN NN _ 9 nmod _ _ 4 `` _ PUNCT `` _ 3 punct _ _ 5 Diversification _ NOUN NN _ 3 dep _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 '' _ PUNCT '' _ 9 punct _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 counsels _ VERB VBZ _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 `` _ PUNCT `` _ 9 punct _ _ 12 Based _ VERB VBN _ 15 case _ _ 13 on _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 events _ NOUN NNS _ 23 advcl _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 past _ ADJ JJ _ 19 amod _ _ 19 week _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 23 punct _ _ 21 all _ DET DT _ 22 det _ _ 22 investors _ NOUN NNS _ 23 nsubj _ _ 23 need _ VERB VBP _ 9 ccomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 know _ VERB VB _ 23 xcomp _ _ 26 their _ PRON PRP$ _ 27 nmod:poss _ _ 27 portfolios _ NOUN NNS _ 29 nsubjpass _ _ 28 are _ AUX VBP _ 29 auxpass _ _ 29 balanced _ VERB VBN _ 25 ccomp _ _ 30 to _ PART TO _ 31 mark _ _ 31 help _ VERB VB _ 29 xcomp _ _ 32 protect _ VERB VB _ 31 ccomp _ _ 33 them _ PRON PRP _ 32 dobj _ _ 34 against _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 36 det _ _ 36 market _ NOUN NN _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 volatility _ NOUN NN _ 32 nmod _ _ 39 . _ PUNCT . _ 9 punct _ _ 40 '' _ PUNCT '' _ 9 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 goes _ VERB VBZ _ 0 root _ _ 3 on _ ADV RB _ 2 advmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 plug _ VERB VB _ 2 xcomp _ _ 6 a _ DET DT _ 10 det _ _ 7 few _ ADJ JJ _ 10 amod _ _ 8 diversified _ ADJ JJ _ 10 amod _ _ 9 Fidelity _ PROPN NNP _ 10 compound _ _ 10 funds _ NOUN NNS _ 5 dobj _ _ 11 by _ ADP IN _ 12 case _ _ 12 name _ NOUN NN _ 5 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 PaineWebber _ NOUN NN _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 able _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 gear _ VERB VB _ 4 xcomp _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 quickly _ ADV RB _ 6 advmod _ _ 9 thanks _ NOUN NNS _ 4 nmod:npmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 1987 _ NUM CD _ 13 nummod _ _ 13 crash _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 aftermath _ NOUN NN _ 12 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 debacle _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 11 det _ _ 10 brokerage _ NOUN NN _ 11 compound _ _ 11 firm _ NOUN NN _ 12 nsubj _ _ 12 began _ VERB VBD _ 0 root _ _ 13 taping _ VERB VBG _ 12 xcomp _ _ 14 commercials _ NOUN NNS _ 13 dobj _ _ 15 in-house _ ADJ JJ _ 13 advmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 ultimately _ ADV RB _ 18 advmod _ _ 18 getting _ VERB VBG _ 12 xcomp _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 timing _ NOUN NN _ 18 dobj _ _ 21 down _ ADP RP _ 18 compound:prt _ _ 22 fast _ ADJ JJ _ 23 advmod _ _ 23 enough _ ADV RB _ 18 advmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 tape _ VERB VB _ 23 dep _ _ 26 a _ DET DT _ 27 det _ _ 27 commercial _ NOUN NN _ 25 dobj _ _ 28 after _ SCONJ IN _ 31 mark _ _ 29 the _ DET DT _ 30 det _ _ 30 market _ NOUN NN _ 31 nsubj _ _ 31 closed _ VERB VBN _ 25 advcl _ _ 32 and _ CONJ CC _ 25 cc _ _ 33 rush _ VERB VB _ 25 conj _ _ 34 it _ PRON PRP _ 33 dobj _ _ 35 on _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 air _ NOUN NN _ 33 nmod _ _ 38 that _ DET DT _ 39 det _ _ 39 night _ NOUN NN _ 33 nmod:tmod _ _ 40 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 negotiated _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 5 det _ _ 5 arrangement _ NOUN NN _ 3 dobj _ _ 6 with _ ADP IN _ 9 case _ _ 7 Cable _ PROPN NNP _ 9 compound _ _ 8 News _ PROPN NNP _ 9 compound _ _ 9 Network _ PROPN NNP _ 5 nmod _ _ 10 under _ ADP IN _ 11 case _ _ 11 which _ PRON WDT _ 14 nmod _ _ 12 CNN _ PROPN NNP _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 agree _ VERB VB _ 5 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 air _ VERB VB _ 14 xcomp _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 last-minute _ ADJ JJ _ 19 amod _ _ 19 creations _ NOUN NNS _ 16 dobj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 PaineWebber _ PROPN NNP _ 4 compound _ _ 4 commercial _ NOUN NN _ 15 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 created _ VERB VBN _ 4 acl _ _ 7 with _ ADP IN _ 10 case _ _ 8 ad _ NOUN NN _ 10 compound _ _ 9 agency _ NOUN NN _ 10 compound _ _ 10 Saatchi _ PROPN NNP _ 6 nmod _ _ 11 & _ CONJ CC _ 10 cc _ _ 12 Saatchi _ PROPN NNP _ 13 compound _ _ 13 Co. _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 features _ VERB VBZ _ 0 root _ _ 16 Mary _ PROPN NNP _ 17 compound _ _ 17 Farrell _ PROPN NNP _ 15 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 one _ NUM CD _ 17 appos _ _ 20 of _ ADP IN _ 27 case _ _ 21 the _ DET DT _ 27 det _ _ 22 firm _ NOUN NN _ 27 nmod:poss _ _ 23 's _ VERB VBZ _ 22 case _ _ 24 most _ ADV RBS _ 25 advmod _ _ 25 visible _ ADJ JJ _ 27 amod _ _ 26 investment _ NOUN NN _ 27 compound _ _ 27 strategists _ NOUN NNS _ 19 nmod _ _ 28 , _ PUNCT , _ 17 punct _ _ 29 sounding _ VERB VBG _ 17 acl _ _ 30 particularly _ ADV RB _ 31 advmod _ _ 31 bullish _ ADJ JJ _ 29 xcomp _ _ 32 . _ PUNCT . _ 15 punct _ _ 1 Taped _ VERB VBN _ 10 advcl _ _ 2 just _ ADV RB _ 6 advmod _ _ 3 as _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 6 nsubj _ _ 6 closed _ VERB VBD _ 1 advcl _ _ 7 yesterday _ NOUN NN _ 6 nmod:tmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 offers _ VERB VBZ _ 0 root _ _ 11 Ms. _ PROPN NNP _ 12 compound _ _ 12 Farrell _ PROPN NNP _ 10 dobj _ _ 13 advising _ NOUN NN _ 12 dep _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 `` _ PUNCT `` _ 13 punct _ _ 16 We _ PRON PRP _ 17 nsubj _ _ 17 view _ VERB VBP _ 13 ccomp _ _ 18 the _ DET DT _ 19 det _ _ 19 market _ NOUN NN _ 17 dobj _ _ 20 here _ ADV RB _ 17 advmod _ _ 21 as _ SCONJ IN _ 22 mark _ _ 22 going _ VERB VBG _ 17 advcl _ _ 23 through _ ADP IN _ 27 case _ _ 24 a _ DET DT _ 27 det _ _ 25 relatively _ ADV RB _ 26 advmod _ _ 26 normal _ ADJ JJ _ 27 amod _ _ 27 cycle _ NOUN NN _ 22 nmod _ _ 28 ... _ PUNCT : _ 10 punct _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 continue _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 feel _ VERB VB _ 2 xcomp _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 12 nsubj _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 still _ ADV RB _ 12 advmod _ _ 11 the _ DET DT _ 12 det _ _ 12 place _ NOUN NN _ 4 ccomp _ _ 13 to _ PART TO _ 17 mark _ _ 14 be _ VERB VB _ 17 cop _ _ 15 for _ ADP IN _ 17 case _ _ 16 long-term _ ADJ JJ _ 17 amod _ _ 17 appreciation _ NOUN NN _ 12 acl _ _ 18 . _ PUNCT . _ 2 punct _ _ 19 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spot _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 scheduled _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 appear _ VERB VB _ 4 xcomp _ _ 7 three _ NUM CD _ 8 nummod _ _ 8 times _ NOUN NNS _ 6 nmod:npmod _ _ 9 on _ ADP IN _ 10 case _ _ 10 CNN _ PROPN NNP _ 6 nmod _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 night _ NOUN NN _ 6 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 PaineWebber _ PROPN NNP _ 2 nsubj _ _ 2 considered _ VERB VBD _ 0 root _ _ 3 an _ DET DT _ 6 det _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 harder _ ADJ JJR _ 6 amod _ _ 6 sell _ NOUN NN _ 2 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 recommending _ VERB VBG _ 6 dep _ _ 9 specific _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 Instead _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 settled _ VERB VBD _ 0 root _ _ 5 on _ ADP RP _ 7 dep _ _ 6 just _ ADV RB _ 7 advmod _ _ 7 urging _ VERB VBG _ 4 advcl _ _ 8 the _ DET DT _ 9 det _ _ 9 clients _ NOUN NNS _ 7 dobj _ _ 10 who _ PRON WP _ 13 nsubj _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 lifeline _ NOUN NN _ 9 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 keep _ VERB VB _ 7 xcomp _ _ 16 that _ DET DT _ 17 det _ _ 17 money _ NOUN NN _ 15 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 32 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 saying _ VERB VBG _ 32 ccomp _ _ 5 the _ DET DT _ 7 det _ _ 6 worst _ ADJ JJS _ 7 amod _ _ 7 thing _ NOUN NN _ 12 nsubj _ _ 8 that _ ADP IN _ 11 dobj _ _ 9 anyone _ NOUN NN _ 11 nsubj _ _ 10 can _ AUX MD _ 11 aux _ _ 11 do _ VERB VB _ 7 acl:relcl _ _ 12 is _ VERB VBZ _ 4 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 see _ VERB VB _ 12 xcomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 go _ VERB VB _ 14 ccomp _ _ 18 down _ ADV RB _ 17 advmod _ _ 19 and _ CONJ CC _ 17 cc _ _ 20 dump _ VERB VB _ 17 conj _ _ 21 everything _ NOUN NN _ 20 dobj _ _ 22 , _ PUNCT , _ 17 punct _ _ 23 which _ PRON WDT _ 25 nsubj _ _ 24 just _ ADV RB _ 25 advmod _ _ 25 drives _ VERB VBZ _ 17 ccomp _ _ 26 the _ DET DT _ 27 det _ _ 27 prices _ NOUN NNS _ 25 dobj _ _ 28 down _ ADP IN _ 25 advmod _ _ 29 further _ ADV RBR _ 25 advmod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 '' _ PUNCT '' _ 32 punct _ _ 32 says _ VERB VBZ _ 0 root _ _ 33 John _ PROPN NNP _ 34 compound _ _ 34 Lampe _ PROPN NNP _ 32 nsubj _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 PaineWebber _ PROPN NNP _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 director _ NOUN NN _ 34 appos _ _ 39 of _ ADP IN _ 40 case _ _ 40 advertising _ NOUN NN _ 38 nmod _ _ 41 . _ PUNCT . _ 32 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 owned _ VERB VBD _ 16 advcl _ _ 5 it _ PRON PRP _ 4 dobj _ _ 6 and _ CONJ CC _ 4 cc _ _ 7 liked _ VERB VBD _ 4 conj _ _ 8 it _ PRON PRP _ 7 dobj _ _ 9 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 true _ ADJ JJ _ 13 amod _ _ 13 value _ NOUN NN _ 16 nsubj _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 changed _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 18 '' _ PUNCT '' _ 16 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 adds _ VERB VBZ _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 `` _ PUNCT `` _ 2 punct _ _ 5 This _ PRON DT _ 8 nsubj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 n't _ PART RB _ 8 neg _ _ 8 1987 _ NUM CD _ 2 ccomp _ _ 9 revisited _ VERB VBN _ 8 acl _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 With _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 fluctuating _ VERB VBG _ 17 advcl _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 then _ ADV RB _ 7 advmod _ _ 7 closing _ VERB VBG _ 4 conj _ _ 8 up _ ADV RB _ 7 advmod _ _ 9 more _ ADV RBR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 88 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 8 nmod:npmod _ _ 13 yesterday _ NOUN NN _ 17 nmod:tmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 investment _ NOUN NN _ 16 compound _ _ 16 firms _ NOUN NNS _ 17 nsubj _ _ 17 had _ VERB VBD _ 0 root _ _ 18 to _ PART TO _ 20 mark _ _ 19 constantly _ ADV RB _ 20 advmod _ _ 20 revise _ VERB VB _ 17 xcomp _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 approach _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 17 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Shearson _ PROPN NNP _ 3 compound _ _ 3 Lehman _ PROPN NNP _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 executives _ NOUN NNS _ 6 nsubj _ _ 6 created _ VERB VBD _ 0 root _ _ 7 potential _ ADJ JJ _ 9 amod _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 commercials _ NOUN NNS _ 6 dobj _ _ 10 Friday _ PROPN NNP _ 11 compound _ _ 11 night _ NOUN NN _ 6 nmod:tmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 throughout _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 weekend _ NOUN NN _ 11 conj _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 then _ ADV RB _ 18 advmod _ _ 18 had _ VERB VBD _ 6 dep _ _ 19 to _ PART TO _ 20 mark _ _ 20 regroup _ VERB VB _ 18 xcomp _ _ 21 yesterday _ NOUN NN _ 22 compound _ _ 22 afternoon _ NOUN NN _ 20 nmod:tmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 been _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 make _ VERB VB _ 4 xcomp _ _ 7 one _ NUM CD _ 6 dobj _ _ 8 of _ ADP IN _ 19 case _ _ 9 Shearson _ PROPN NNP _ 19 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 easy-to-film _ ADJ JJ _ 19 amod _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 black-and-white _ ADJ JJ _ 19 amod _ _ 14 `` _ PUNCT `` _ 19 punct _ _ 15 Where _ ADV WRB _ 17 advmod _ _ 16 We _ PRON PRP _ 17 nsubj _ _ 17 Stand _ VERB VBP _ 19 ccomp _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 commercials _ NOUN NNS _ 7 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 24 nsubj _ _ 22 have _ AUX VBP _ 24 aux _ _ 23 been _ AUX VBN _ 24 aux _ _ 24 running _ VERB VBG _ 19 acl:relcl _ _ 25 occasionally _ ADV RB _ 24 advmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 response _ NOUN NN _ 24 nmod _ _ 28 to _ ADP TO _ 30 case _ _ 29 news _ NOUN NN _ 30 compound _ _ 30 events _ NOUN NNS _ 27 nmod _ _ 31 since _ ADP IN _ 32 case _ _ 32 1985 _ NUM CD _ 24 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ad _ NOUN NN _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 have _ AUX VB _ 5 aux _ _ 5 run _ VERB VBN _ 0 root _ _ 6 during _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 World _ PROPN NNP _ 9 compound _ _ 9 Series _ PROPN NNP _ 5 nmod _ _ 10 tomorrow _ NOUN NN _ 5 nmod:tmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 replacing _ VERB VBG _ 5 advcl _ _ 13 the _ DET DT _ 15 det _ _ 14 debut _ NOUN NN _ 15 compound _ _ 15 commercial _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 21 case _ _ 17 Shearson _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 new _ ADJ JJ _ 21 amod _ _ 20 ad _ NOUN NN _ 21 compound _ _ 21 campaign _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 `` _ PUNCT `` _ 21 punct _ _ 24 Leadership _ NOUN NN _ 21 dep _ _ 25 by _ ADP IN _ 26 case _ _ 26 Example _ NOUN NN _ 24 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 28 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 meeting _ NOUN NN _ 13 nmod _ _ 5 after _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 closed _ VERB VBD _ 13 advcl _ _ 9 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Shearson _ PROPN NNP _ 12 compound _ _ 12 executives _ NOUN NNS _ 13 nsubj _ _ 13 decided _ VERB VBD _ 0 root _ _ 14 not _ ADV RB _ 16 neg _ _ 15 to _ PART TO _ 16 mark _ _ 16 go _ VERB VB _ 13 xcomp _ _ 17 ahead _ ADV RB _ 16 advmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 stock-market _ NOUN NN _ 21 compound _ _ 21 ad _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 think _ VERB VB _ 0 root _ _ 6 at _ ADP IN _ 8 case _ _ 7 this _ DET DT _ 8 det _ _ 8 point _ NOUN NN _ 5 nmod _ _ 9 anything _ NOUN NN _ 10 nsubj _ _ 10 needs _ VERB VBZ _ 5 ccomp _ _ 11 to _ PART TO _ 13 mark _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 said _ VERB VBD _ 10 xcomp _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 17 ccomp _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ AUX VB _ 6 aux _ _ 6 straightening _ VERB VBG _ 3 xcomp _ _ 7 out _ ADP RP _ 6 compound:prt _ _ 8 ; _ PUNCT : _ 3 punct _ _ 9 we _ PRON PRP _ 11 nsubj _ _ 10 're _ AUX VBP _ 11 aux _ _ 11 taking _ VERB VBG _ 3 parataxis _ _ 12 a _ DET DT _ 14 det _ _ 13 wait-and-see _ ADJ JJ _ 14 amod _ _ 14 attitude _ NOUN NN _ 11 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 Cathleen _ PROPN NNP _ 20 compound _ _ 19 B. _ PROPN NNP _ 20 compound _ _ 20 Stewart _ PROPN NNP _ 17 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 executive _ ADJ JJ _ 24 amod _ _ 23 vice _ NOUN NN _ 24 compound _ _ 24 president _ NOUN NN _ 20 appos _ _ 25 of _ ADP IN _ 26 case _ _ 26 marketing _ NOUN NN _ 24 nmod _ _ 27 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 brokerage _ NOUN NN _ 7 compound _ _ 7 firms _ NOUN NNS _ 10 nsubj _ _ 8 are _ AUX VBP _ 10 aux _ _ 9 clearly _ ADV RB _ 10 advmod _ _ 10 moving _ VERB VBG _ 0 root _ _ 11 faster _ ADV RBR _ 10 advmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 create _ VERB VB _ 10 xcomp _ _ 14 new _ ADJ JJ _ 15 amod _ _ 15 ads _ NOUN NNS _ 13 dobj _ _ 16 than _ SCONJ IN _ 18 mark _ _ 17 they _ PRON PRP _ 18 nsubj _ _ 18 did _ VERB VBD _ 10 advcl _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 fall _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 1987 _ NUM CD _ 21 nmod _ _ 24 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 remains _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 seen _ VERB VBN _ 3 xcomp _ _ 7 whether _ SCONJ IN _ 14 mark _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 ads _ NOUN NNS _ 14 nsubj _ _ 10 will _ AUX MD _ 14 aux _ _ 11 be _ VERB VB _ 14 cop _ _ 12 any _ DET DT _ 13 dep _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 effective _ ADJ JJ _ 3 ccomp _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 despite _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 barrage _ NOUN NN _ 18 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 ads _ NOUN NNS _ 6 nmod _ _ 9 from _ ADP IN _ 10 case _ _ 10 most _ ADJ JJS _ 8 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 investment _ NOUN NN _ 15 compound _ _ 15 firms _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 individuals _ NOUN NNS _ 18 nsubj _ _ 18 ran _ VERB VBD _ 0 root _ _ 19 from _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 18 nmod _ _ 22 en _ X FW _ 23 compound _ _ 23 masse _ X FW _ 18 advmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 Now _ ADV RB _ 5 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 firms _ NOUN NNS _ 5 nsubj _ _ 4 must _ AUX MD _ 5 aux _ _ 5 try _ VERB VB _ 0 root _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 hardest _ ADJ JJS _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 prove _ VERB VB _ 5 advcl _ _ 10 that _ DET DT _ 13 mark _ _ 11 advertising _ NOUN NN _ 13 nsubj _ _ 12 can _ AUX MD _ 13 aux _ _ 13 work _ VERB VB _ 9 ccomp _ _ 14 this _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 13 nmod:tmod _ _ 16 around _ ADP RP _ 15 advmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 Ad _ NOUN NN _ 2 compound _ _ 2 Notes _ NOUN NNS _ 0 root _ _ 3 ... _ PUNCT : _ 2 punct _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 ARNOLD _ PROPN NNP _ 2 compound _ _ 2 ADVERTISING _ PROPN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 Edward _ PROPN NNP _ 2 compound _ _ 2 Eskandarian _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 former _ ADJ JJ _ 5 amod _ _ 5 chairman _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 11 case _ _ 7 Della _ PROPN NNP _ 11 compound _ _ 8 Femina _ PROPN NNP _ 11 compound _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 McNamee _ PROPN NNP _ 11 appos _ _ 11 WCRS/Boston _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 reached _ VERB VBD _ 0 root _ _ 14 an _ DET DT _ 15 det _ _ 15 agreement _ NOUN NN _ 13 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 principle _ NOUN NN _ 15 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 acquire _ VERB VB _ 15 acl _ _ 20 a _ DET DT _ 22 det _ _ 21 majority _ ADJ JJ _ 22 amod _ _ 22 stake _ NOUN NN _ 19 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 Arnold _ PROPN NNP _ 25 compound _ _ 25 Advertising _ PROPN NNP _ 22 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 30 det _ _ 28 small _ ADJ JJ _ 30 amod _ _ 29 Boston _ PROPN NNP _ 30 compound _ _ 30 shop _ NOUN NN _ 25 appos _ _ 31 . _ PUNCT . _ 13 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Eskandarian _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 resigned _ VERB VBD _ 2 acl:relcl _ _ 6 his _ PRON PRP$ _ 9 nmod:poss _ _ 7 Della _ PROPN NNP _ 9 compound _ _ 8 Femina _ PROPN NNP _ 9 compound _ _ 9 post _ NOUN NN _ 5 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 becomes _ VERB VBZ _ 0 root _ _ 14 chairman _ NOUN NN _ 13 xcomp _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 chief _ ADJ JJ _ 17 amod _ _ 17 executive _ NOUN NN _ 14 conj _ _ 18 of _ ADP IN _ 19 case _ _ 19 Arnold _ PROPN NNP _ 14 nmod _ _ 20 . _ PUNCT . _ 13 punct _ _ 1 John _ PROPN NNP _ 2 compound _ _ 2 Verret _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 agency _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 president _ NOUN NN _ 2 appos _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 chief _ ADJ JJ _ 10 amod _ _ 10 executive _ NOUN NN _ 7 conj _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 will _ AUX MD _ 13 aux _ _ 13 retain _ VERB VB _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 title _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 president _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Separately _ PROPN NNP _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 McDonald _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Corp. _ PROPN NNP _ 12 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Oak _ PROPN NNP _ 8 compound _ _ 8 Brook _ PROPN NNP _ 5 appos _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Ill. _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 named _ VERB VBD _ 0 root _ _ 13 Arnold _ PROPN NNP _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 handle _ VERB VB _ 12 xcomp _ _ 16 its _ PRON PRP$ _ 23 nmod:poss _ _ 17 estimated _ VERB VBN _ 23 amod _ _ 18 $ _ SYM $ _ 23 amod _ _ 19 4 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 cooperative _ ADJ JJ _ 23 amod _ _ 22 ad _ NOUN NN _ 23 compound _ _ 23 account _ NOUN NN _ 15 dobj _ _ 24 for _ ADP IN _ 30 case _ _ 25 the _ DET DT _ 30 det _ _ 26 Hartford _ PROPN NNP _ 30 dep _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Conn. _ PROPN NNP _ 26 dep _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 area _ NOUN NN _ 23 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 account _ NOUN NN _ 5 nsubjpass _ _ 3 had _ AUX VBD _ 5 aux _ _ 4 been _ AUX VBN _ 5 auxpass _ _ 5 handled _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 11 case _ _ 7 Della _ PROPN NNP _ 11 compound _ _ 8 Femina _ PROPN NNP _ 11 compound _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 McNamee _ PROPN NNP _ 11 appos _ _ 11 WCRS _ PROPN NNP _ 5 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 EDUCATION _ NOUN NN _ 2 compound _ _ 2 ADS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 142-page _ ADJ JJ _ 4 amod _ _ 3 ad _ NOUN NN _ 4 compound _ _ 4 supplement _ NOUN NN _ 15 nsubj _ _ 5 to _ ADP TO _ 14 case _ _ 6 Business _ PROPN NNP _ 7 compound _ _ 7 Week _ PROPN NNP _ 14 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 special _ ADJ JJ _ 14 amod _ _ 10 `` _ PUNCT `` _ 14 punct _ _ 11 Corporate _ PROPN NNP _ 14 compound _ _ 12 Elite _ PROPN NNP _ 14 compound _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 issue _ NOUN NN _ 4 nmod _ _ 15 calls _ VERB VBZ _ 0 root _ _ 16 on _ ADP IN _ 18 case _ _ 17 business _ NOUN NN _ 18 compound _ _ 18 leaders _ NOUN NNS _ 15 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 use _ VERB VB _ 15 xcomp _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 clout _ NOUN NN _ 20 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 help _ VERB VB _ 20 advcl _ _ 25 solve _ VERB VB _ 24 ccomp _ _ 26 the _ DET DT _ 27 det _ _ 27 nation _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 education _ NOUN NN _ 30 compound _ _ 30 crisis _ NOUN NN _ 25 dobj _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 supplement _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 largest _ ADJ JJS _ 2 appos _ _ 6 ever _ ADV RB _ 5 advmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 magazine _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 includes _ VERB VBZ _ 0 root _ _ 12 ads _ NOUN NNS _ 11 dobj _ _ 13 from _ ADP IN _ 16 case _ _ 14 52 _ NUM CD _ 16 nummod _ _ 15 corporate _ ADJ JJ _ 16 amod _ _ 16 advertisers _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 kicks _ NOUN NNS _ 11 conj _ _ 19 off _ ADP RP _ 18 compound:prt _ _ 20 a _ DET DT _ 24 det _ _ 21 two-year _ ADJ JJ _ 24 amod _ _ 22 Business _ PROPN NNP _ 24 compound _ _ 23 Week _ PROPN NNP _ 24 compound _ _ 24 initiative _ NOUN NN _ 18 dobj _ _ 25 on _ ADP IN _ 26 case _ _ 26 education _ NOUN NN _ 24 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 magazine _ NOUN NN _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 distribute _ VERB VB _ 0 root _ _ 5 10 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 gross _ ADJ JJ _ 10 amod _ _ 10 revenues _ NOUN NNS _ 6 nmod _ _ 11 from _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 supplement _ NOUN NN _ 10 nmod _ _ 14 as _ ADP IN _ 15 case _ _ 15 grants _ NOUN NNS _ 4 nmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 innovative _ ADJ JJ _ 18 amod _ _ 18 teachers _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 You _ PRON PRP _ 2 nsubj _ _ 2 know _ VERB VBP _ 0 root _ _ 3 what _ PRON WP _ 8 dobj _ _ 4 the _ DET DT _ 5 det _ _ 5 law _ NOUN NN _ 8 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 averages _ NOUN NNS _ 5 nmod _ _ 8 is _ VERB VBZ _ 2 ccomp _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 do _ VERB VBP _ 2 parataxis _ _ 11 n't _ PART RB _ 10 neg _ _ 12 you _ PRON PRP _ 10 nsubj _ _ 13 ? _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 what _ PRON WP _ 6 dep _ _ 4 1 _ X LS _ 6 dep _ _ 5 -RRB- _ PUNCT -RRB- _ 4 punct _ _ 6 explains _ VERB VBZ _ 2 dep _ _ 7 why _ ADV WRB _ 14 advmod _ _ 8 we _ PRON PRP _ 14 nsubj _ _ 9 are _ VERB VBP _ 14 cop _ _ 10 like _ ADJ JJ _ 14 case _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 well _ ADV RB _ 14 discourse _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 ourselves _ PRON PRP _ 6 advcl _ _ 15 rather _ ADV RB _ 14 cc _ _ 16 than _ ADP IN _ 15 mwe _ _ 17 Bo _ PROPN NNP _ 18 compound _ _ 18 Jackson _ PROPN NNP _ 14 conj _ _ 19 ; _ PUNCT : _ 6 punct _ _ 20 2 _ X LS _ 22 dep _ _ 21 -RRB- _ PUNCT -RRB- _ 20 punct _ _ 22 cautions _ VERB VBZ _ 6 conj _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 it _ PRON PRP _ 26 nsubj _ _ 25 's _ VERB VBZ _ 26 cop _ _ 26 possible _ ADJ JJ _ 22 ccomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 drown _ VERB VB _ 26 xcomp _ _ 29 in _ ADP IN _ 31 case _ _ 30 a _ DET DT _ 31 det _ _ 31 lake _ NOUN NN _ 28 nmod _ _ 32 that _ PRON WDT _ 33 nsubj _ _ 33 averages _ VERB VBZ _ 31 acl:relcl _ _ 34 two _ NUM CD _ 35 nummod _ _ 35 feet _ NOUN NNS _ 33 dobj _ _ 36 deep _ ADV RB _ 35 amod _ _ 37 ; _ PUNCT : _ 6 punct _ _ 38 and _ CONJ CC _ 6 cc _ _ 39 3 _ X LS _ 41 dep _ _ 40 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 41 predicts _ VERB VBZ _ 6 conj _ _ 42 that _ SCONJ IN _ 50 mark _ _ 43 10,000 _ NUM CD _ 44 nummod _ _ 44 monkeys _ NOUN NNS _ 50 nsubj _ _ 45 placed _ VERB VBN _ 44 acl _ _ 46 before _ ADP IN _ 48 case _ _ 47 10,000 _ NUM CD _ 48 nummod _ _ 48 pianos _ NOUN NNS _ 45 nmod _ _ 49 would _ AUX MD _ 50 aux _ _ 50 produce _ VERB VB _ 41 ccomp _ _ 51 1,118 _ NUM CD _ 53 nummod _ _ 52 publishable _ ADJ JJ _ 53 amod _ _ 53 rock _ NOUN NN _ 50 dobj _ _ 54 'n' _ CONJ CC _ 53 cc _ _ 55 roll _ NOUN NN _ 56 compound _ _ 56 tunes _ NOUN NNS _ 53 conj _ _ 57 . _ PUNCT . _ 2 punct _ _ 1 Baseball _ NOUN NN _ 13 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 that _ DET DT _ 4 det _ _ 4 game _ NOUN NN _ 1 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 long _ ADJ JJ _ 8 amod _ _ 8 haul _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 quintessential _ ADJ JJ _ 13 amod _ _ 13 sport _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 mean _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 the _ DET DT _ 22 det _ _ 20 mean _ ADJ JJ _ 22 amod _ _ 21 ol' _ ADJ JJ _ 22 amod _ _ 22 law _ NOUN NN _ 23 nsubj _ _ 23 caught _ VERB VBD _ 13 conj _ _ 24 up _ ADP RP _ 23 compound:prt _ _ 25 with _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 San _ PROPN NNP _ 29 compound _ _ 28 Francisco _ PROPN NNP _ 29 compound _ _ 29 Giants _ PROPN NNP _ 23 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 World _ PROPN NNP _ 33 compound _ _ 33 Series _ PROPN NNP _ 23 nmod _ _ 34 last _ ADJ JJ _ 35 amod _ _ 35 weekend _ NOUN NN _ 23 nmod:tmod _ _ 36 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 team _ NOUN NN _ 19 nsubjpass _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 dumped _ VERB VBD _ 2 acl:relcl _ _ 5 runs _ NOUN NNS _ 4 dobj _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 bushel _ NOUN NN _ 4 nmod _ _ 9 on _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Chicago _ PROPN NNP _ 12 compound _ _ 12 Cubs _ PROPN NNP _ 4 nmod _ _ 13 in _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 National _ PROPN NNP _ 17 compound _ _ 16 League _ PROPN NNP _ 17 compound _ _ 17 playoffs _ NOUN NNS _ 4 nmod _ _ 18 was _ AUX VBD _ 19 auxpass _ _ 19 held _ VERB VBN _ 0 root _ _ 20 to _ ADP TO _ 22 case _ _ 21 just _ ADV RB _ 22 advmod _ _ 22 one _ NUM CD _ 19 nmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 games _ NOUN NNS _ 19 nmod _ _ 26 by _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 31 det _ _ 28 home-team _ ADJ JJ _ 31 amod _ _ 29 Oakland _ PROPN NNP _ 31 compound _ _ 30 A _ PROPN NNP _ 31 compound _ _ 31 's _ PROPN NNP _ 19 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 the _ DET DT _ 34 det _ _ 34 gang _ NOUN NN _ 31 appos _ _ 35 that _ PRON WDT _ 38 nsubjpass _ _ 36 had _ AUX VBD _ 38 aux _ _ 37 been _ AUX VBN _ 38 auxpass _ _ 38 done _ VERB VBN _ 34 acl:relcl _ _ 39 unto _ ADP RP _ 38 advcl _ _ 40 similarly _ ADV RB _ 38 advmod _ _ 41 by _ ADP IN _ 45 case _ _ 42 the _ DET DT _ 45 det _ _ 43 Los _ PROPN NNP _ 45 compound _ _ 44 Angeles _ PROPN NNP _ 45 compound _ _ 45 Dodgers _ PROPN NNP _ 38 nmod _ _ 46 and _ CONJ CC _ 45 cc _ _ 47 Orel _ PROPN NNP _ 48 compound _ _ 48 Hershiser _ PROPN NNP _ 45 conj _ _ 49 in _ ADP IN _ 53 case _ _ 50 last _ ADJ JJ _ 51 amod _ _ 51 year _ NOUN NN _ 53 nmod:poss _ _ 52 's _ PART POS _ 51 case _ _ 53 tournament _ NOUN NN _ 38 nmod _ _ 54 . _ PUNCT . _ 19 punct _ _ 1 Morever _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 much _ ADJ JJ _ 8 nsubjpass _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 damage _ NOUN NN _ 3 nmod _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 accomplished _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 11 case _ _ 10 A _ PROPN NNP _ 11 compound _ _ 11 's _ PROPN NNP _ 8 nmod _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 had _ VERB VBD _ 11 acl:relcl _ _ 14 some _ DET DT _ 13 dobj _ _ 15 catching _ VERB VBG _ 14 amod _ _ 16 up _ ADP RP _ 14 dep _ _ 17 to _ PART TO _ 18 mark _ _ 18 do _ VERB VB _ 14 acl _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 game _ NOUN NN _ 24 nmod _ _ 3 two _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 24 punct _ _ 5 on _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 cool _ ADJ JJ _ 9 amod _ _ 8 Sunday _ PROPN NNP _ 9 compound _ _ 9 evening _ NOUN NN _ 24 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 land _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 perpetual _ ADJ JJ _ 15 amod _ _ 15 autumn _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 24 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 lot _ NOUN NN _ 24 nsubjpass _ _ 19 of _ ADP IN _ 20 case _ _ 20 the _ DET DT _ 18 nmod _ _ 21 catching _ VERB VBG _ 20 amod _ _ 22 up _ ADP RP _ 20 dep _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 done _ VERB VBN _ 0 root _ _ 25 by _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 A _ PROPN NNP _ 29 compound _ _ 28 's _ PROPN NNP _ 29 compound _ _ 29 catcher _ NOUN NN _ 24 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 Terry _ PROPN NNP _ 32 compound _ _ 32 Steinbach _ PROPN NNP _ 29 appos _ _ 33 . _ PUNCT . _ 24 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 hit _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 2-0 _ NUM CD _ 5 nummod _ _ 5 pitch _ NOUN NN _ 2 dobj _ _ 6 from _ ADP IN _ 8 case _ _ 7 Rick _ PROPN NNP _ 8 compound _ _ 8 Reuschel _ PROPN NNP _ 5 nmod _ _ 9 into _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 left-field _ ADJ JJ _ 12 amod _ _ 12 stands _ NOUN NNS _ 2 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 inning _ NOUN NN _ 2 nmod _ _ 15 four _ NUM CD _ 14 nummod _ _ 16 to _ PART TO _ 17 mark _ _ 17 stretch _ VERB VB _ 2 advcl _ _ 18 his _ PRON PRP$ _ 19 nmod:poss _ _ 19 team _ NOUN NN _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 lead _ NOUN NN _ 17 dobj _ _ 22 from _ ADP IN _ 23 case _ _ 23 2-1 _ NUM CD _ 17 nmod _ _ 24 to _ ADP TO _ 27 case _ _ 25 a _ DET DT _ 27 det _ _ 26 decisive _ ADJ JJ _ 27 amod _ _ 27 5-1 _ NUM CD _ 17 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 where _ ADV WRB _ 31 advmod _ _ 30 it _ PRON PRP _ 31 nsubj _ _ 31 stayed _ VERB VBD _ 27 acl:relcl _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 So _ ADV RB _ 0 root _ _ 2 what _ PRON WP _ 1 dep _ _ 3 if _ SCONJ IN _ 6 mark _ _ 4 Steinbach _ PROPN NNP _ 6 nsubj _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 struck _ VERB VBN _ 1 dep _ _ 7 just _ ADV RB _ 10 advmod _ _ 8 seven _ NUM CD _ 10 nummod _ _ 9 home _ NOUN NN _ 10 compound _ _ 10 runs _ NOUN NNS _ 6 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 130 _ NUM CD _ 14 nummod _ _ 13 regular-season _ ADJ JJ _ 14 amod _ _ 14 games _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 batted _ VERB VBD _ 6 conj _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 seventh _ ADJ JJ _ 21 amod _ _ 21 position _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 A _ PROPN NNP _ 26 compound _ _ 25 's _ PROPN NNP _ 26 compound _ _ 26 lineup _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 1 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 get _ VERB VBP _ 16 advcl _ _ 5 your _ PRON PRP$ _ 6 nmod:poss _ _ 6 pitch _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 take _ VERB VBP _ 4 conj _ _ 10 a _ DET DT _ 12 det _ _ 11 good _ ADJ JJ _ 12 amod _ _ 12 swing _ NOUN NN _ 9 dobj _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 anything _ NOUN NN _ 16 nsubj _ _ 15 can _ AUX MD _ 16 aux _ _ 16 happen _ VERB VB _ 21 ccomp _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 '' _ PUNCT '' _ 21 punct _ _ 19 he _ PRON PRP _ 21 nsubj _ _ 20 later _ ADV RBR _ 21 advmod _ _ 21 remarked _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Saturday _ PROPN NNP _ 3 compound _ _ 3 night _ NOUN NN _ 15 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 quite _ ADV RB _ 7 advmod _ _ 6 a _ DET DT _ 7 det _ _ 7 few _ ADJ JJ _ 15 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 boys _ NOUN NNS _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 green _ NOUN NN _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 gold _ NOUN NN _ 12 conj _ _ 15 salted _ VERB VBD _ 0 root _ _ 16 away _ ADP RP _ 15 compound:prt _ _ 17 successes _ NOUN NNS _ 15 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 salve _ VERB VB _ 15 advcl _ _ 20 the _ DET DT _ 21 det _ _ 21 pain _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 30 case _ _ 23 past _ ADJ JJ _ 29 dep _ _ 24 and _ CONJ CC _ 29 cc _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 no _ DET DT _ 27 neg _ _ 27 doubt _ NOUN NN _ 29 dep _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 future _ ADJ JJ _ 30 amod _ _ 30 droughts _ NOUN NNS _ 21 nmod _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 Mark _ PROPN NNP _ 2 compound _ _ 2 McGwire _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 10 det _ _ 5 big _ ADJ JJ _ 10 amod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 red-haired _ ADJ JJ _ 10 amod _ _ 8 Oakland _ PROPN NNP _ 10 compound _ _ 9 first _ ADJ JJ _ 10 amod _ _ 10 baseman _ NOUN NN _ 2 appos _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 had _ VERB VBD _ 0 root _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 hits _ NOUN NNS _ 12 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 four _ NUM CD _ 18 nummod _ _ 17 at _ NOUN NN _ 18 compound _ _ 18 bats _ NOUN NNS _ 12 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 more _ ADJ JJR _ 12 dobj _ _ 22 than _ SCONJ IN _ 25 mark _ _ 23 he _ PRON PRP _ 25 nsubj _ _ 24 'd _ AUX VBD _ 25 aux _ _ 25 had _ VERB VBN _ 21 advcl _ _ 26 in _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 five-game _ ADJ JJ _ 30 amod _ _ 29 Dodger _ PROPN NNP _ 30 compound _ _ 30 series _ NOUN NN _ 25 nmod _ _ 31 in _ ADP IN _ 32 case _ _ 32 which _ PRON WDT _ 35 nmod _ _ 33 he _ PRON PRP _ 35 nsubj _ _ 34 'd _ AUX MD _ 35 aux _ _ 35 gone _ VERB VBN _ 30 acl:relcl _ _ 36 1-for-17 _ NOUN NN _ 35 advmod _ _ 37 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 A-men _ NOUN NNS _ 18 nsubj _ _ 3 batting _ VERB VBG _ 2 acl _ _ 4 Nos. _ NOUN NNS _ 3 dobj _ _ 5 6 _ NUM CD _ 4 nummod _ _ 6 through _ ADP IN _ 4 amod _ _ 7 9 _ NUM CD _ 4 nummod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 a.k.a. _ ADJ JJ _ 12 dep _ _ 10 the _ DET DT _ 12 det _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 bottom _ NOUN NN _ 4 dep _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 order _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 '' _ PUNCT '' _ 12 punct _ _ 18 got _ VERB VBD _ 0 root _ _ 19 seven _ NUM CD _ 18 dobj _ _ 20 of _ ADP IN _ 25 case _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 team _ NOUN NN _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 11 _ NUM CD _ 25 nummod _ _ 25 hits _ NOUN NNS _ 19 nmod _ _ 26 and _ CONJ CC _ 18 cc _ _ 27 scored _ VERB VBD _ 18 conj _ _ 28 four _ NUM CD _ 27 dobj _ _ 29 of _ ADP IN _ 31 case _ _ 30 its _ PRON PRP$ _ 31 nmod:poss _ _ 31 runs _ NOUN NNS _ 28 nmod _ _ 32 in _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 5-0 _ NUM CD _ 35 nummod _ _ 35 decision _ NOUN NN _ 27 nmod _ _ 36 . _ PUNCT . _ 18 punct _ _ 1 Right-hander _ ADJ JJ _ 3 amod _ _ 2 Dave _ PROPN NNP _ 3 compound _ _ 3 Stewart _ PROPN NNP _ 4 nsubj _ _ 4 held _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 Giants _ PROPN NNP _ 4 dobj _ _ 7 to _ ADP TO _ 9 case _ _ 8 five _ NUM CD _ 9 nummod _ _ 9 hits _ NOUN NNS _ 4 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 account _ VERB VB _ 4 advcl _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 zero _ NOUN NN _ 11 nmod _ _ 15 on _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 side _ NOUN NN _ 14 nmod _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 Saturday _ PROPN NNP _ 22 compound _ _ 22 ledger _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 That _ SCONJ IN _ 8 mark _ _ 2 he _ PRON PRP _ 8 nsubj _ _ 3 was _ VERB VBD _ 8 cop _ _ 4 the _ DET DT _ 8 det _ _ 5 A _ PROPN NNP _ 8 compound _ _ 6 's _ PROPN NNP _ 8 compound _ _ 7 winningest _ ADJ JJS _ 8 amod _ _ 8 pitcher _ NOUN NN _ 28 csubj _ _ 9 during _ ADP IN _ 13 case _ _ 10 its _ PRON PRP$ _ 13 nmod:poss _ _ 11 American _ PROPN NNP _ 13 compound _ _ 12 League _ PROPN NNP _ 13 compound _ _ 13 campaign _ NOUN NN _ 8 nmod _ _ 14 with _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 21-9 _ NUM CD _ 17 nummod _ _ 17 mark _ NOUN NN _ 8 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 plus _ ADP IN _ 17 amod _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 wins _ NOUN NNS _ 17 dep _ _ 22 over _ ADP IN _ 23 case _ _ 23 Toronto _ PROPN NNP _ 21 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 playoffs _ NOUN NNS _ 21 nmod _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 indicates _ VERB VBZ _ 0 root _ _ 29 he _ PRON PRP _ 31 nsubj _ _ 30 may _ AUX MD _ 31 aux _ _ 31 have _ VERB VB _ 28 ccomp _ _ 32 some _ DET DT _ 33 det _ _ 33 evening _ NOUN NN _ 31 dobj _ _ 34 up _ ADP RP _ 33 dep _ _ 35 coming _ VERB VBG _ 33 acl _ _ 36 , _ PUNCT , _ 28 punct _ _ 37 but _ CONJ CC _ 28 cc _ _ 38 with _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 way _ NOUN NN _ 50 nmod _ _ 41 his _ PRON PRP$ _ 43 nmod:poss _ _ 42 split-fingered _ ADJ JJ _ 43 amod _ _ 43 fastball _ NOUN NN _ 45 nsubj _ _ 44 is _ AUX VBZ _ 45 aux _ _ 45 behaving _ VERB VBG _ 40 acl:relcl _ _ 46 , _ PUNCT , _ 50 punct _ _ 47 that _ ADP IN _ 50 nsubj _ _ 48 might _ AUX MD _ 50 aux _ _ 49 not _ PART RB _ 50 neg _ _ 50 be _ VERB VB _ 28 conj _ _ 51 this _ DET DT _ 52 det _ _ 52 week _ NOUN NN _ 50 nmod:tmod _ _ 53 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 same _ ADJ JJ _ 3 nsubj _ _ 3 goes _ VERB VBZ _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 Mike _ PROPN NNP _ 6 compound _ _ 6 Moore _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 another _ DET DT _ 9 det _ _ 9 veteran _ NOUN NN _ 6 appos _ _ 10 who _ PRON WP _ 11 nsubj _ _ 11 overcame _ VERB VBD _ 9 acl:relcl _ _ 12 early _ ADJ JJ _ 13 amod _ _ 13 struggles _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 permit _ VERB VB _ 11 advcl _ _ 16 the _ DET DT _ 17 det _ _ 17 Giants _ PROPN NNP _ 15 iobj _ _ 18 but _ ADV RB _ 20 advmod _ _ 19 a _ DET DT _ 20 det _ _ 20 run _ NOUN NN _ 15 dobj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 four _ NUM CD _ 23 nummod _ _ 23 hits _ NOUN NNS _ 20 conj _ _ 24 in _ ADP IN _ 26 case _ _ 25 seven _ NUM CD _ 26 nummod _ _ 26 innings _ NOUN NNS _ 15 nmod _ _ 27 in _ ADP IN _ 30 case _ _ 28 Sunday _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 contest _ NOUN NN _ 15 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 Every _ DET DT _ 3 det _ _ 3 guy _ NOUN NN _ 8 nsubj _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 put _ VERB VBD _ 3 acl:relcl _ _ 6 out _ ADV RB _ 7 advmod _ _ 7 there _ ADV RB _ 5 advmod _ _ 8 had _ VERB VBD _ 18 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 better _ ADJ JJR _ 11 amod _ _ 11 split-finger _ NOUN NN _ 8 dobj _ _ 12 than _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 guy _ NOUN NN _ 11 nmod _ _ 15 before _ ADV RB _ 14 advmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 marveled _ VERB VBD _ 0 root _ _ 19 Giant _ ADJ JJ _ 22 amod _ _ 20 manager _ NOUN NN _ 22 compound _ _ 21 Roger _ PROPN NNP _ 22 compound _ _ 22 Craig _ PROPN NNP _ 18 nsubj _ _ 23 . _ PUNCT . _ 18 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 's _ VERB VBZ _ 4 cop _ _ 3 an _ DET DT _ 4 det _ _ 4 ex-hurler _ NOUN NN _ 0 root _ _ 5 who _ PRON WP _ 7 nsubj _ _ 6 's _ VERB VBZ _ 7 cop _ _ 7 one _ NUM CD _ 4 acl:relcl _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 leading _ VERB VBG _ 11 amod _ _ 11 gurus _ NOUN NNS _ 7 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 fashionable _ ADJ JJ _ 15 amod _ _ 15 delivery _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 18 nsubj _ _ 18 looks _ VERB VBZ _ 15 acl:relcl _ _ 19 like _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 fastball _ NOUN NN _ 18 nmod _ _ 22 until _ SCONJ IN _ 24 mark _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 dives _ VERB VBZ _ 18 advcl _ _ 25 beneath _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 lunging _ VERB VBG _ 28 amod _ _ 28 bat _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 upshot _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 downshoot _ NOUN NN _ 2 nmod _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 that _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 A _ PROPN NNP _ 10 compound _ _ 10 's _ PROPN NNP _ 11 nsubj _ _ 11 go _ VERB VBP _ 6 ccomp _ _ 12 into _ ADP IN _ 17 case _ _ 13 San _ PROPN NNP _ 14 compound _ _ 14 Francisco _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Candlestick _ PROPN NNP _ 17 compound _ _ 17 Park _ PROPN NNP _ 11 nmod _ _ 18 tonight _ ADV RB _ 11 nmod:tmod _ _ 19 up _ ADP IN _ 21 case _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 games _ NOUN NNS _ 11 advmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 none _ NOUN NN _ 21 nmod _ _ 24 in _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 best-of-seven _ ADJ JJ _ 27 amod _ _ 27 fest _ NOUN NN _ 21 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stat _ NOUN NN _ 7 nsubj _ _ 3 to _ PART TO _ 4 mark _ _ 4 reckon _ VERB VB _ 2 acl _ _ 5 with _ ADP RP _ 4 advcl _ _ 6 here _ ADV RB _ 4 advmod _ _ 7 says _ VERB VBZ _ 0 root _ _ 8 that _ SCONJ IN _ 24 mark _ _ 9 about _ ADV RB _ 12 advmod _ _ 10 three _ NUM CD _ 12 compound _ _ 11 of _ ADP IN _ 12 advmod _ _ 12 four _ NUM CD _ 13 nummod _ _ 13 clubs _ NOUN NNS _ 24 nsubj _ _ 14 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 15 29 _ NUM CD _ 17 compound _ _ 16 of _ ADP IN _ 17 advmod _ _ 17 39 _ NUM CD _ 13 dep _ _ 18 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 19 that _ PRON WDT _ 20 nsubj _ _ 20 took _ VERB VBD _ 13 acl:relcl _ _ 21 2-0 _ NUM CD _ 23 nummod _ _ 22 Series _ PROPN NNP _ 23 compound _ _ 23 leads _ NOUN NNS _ 20 dobj _ _ 24 went _ VERB VBD _ 7 ccomp _ _ 25 on _ ADP RP _ 24 compound:prt _ _ 26 to _ PART TO _ 27 mark _ _ 27 win _ VERB VB _ 24 xcomp _ _ 28 it _ PRON PRP _ 27 dobj _ _ 29 all _ DET DT _ 28 det _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 not _ PART RB _ 5 neg _ _ 4 an _ DET DT _ 5 det _ _ 5 average _ NOUN NN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 soothe _ VERB VB _ 5 acl _ _ 8 Giant _ PROPN NNP _ 9 compound _ _ 9 rooters _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 One _ NOUN NN _ 3 nsubj _ _ 2 might _ AUX MD _ 3 aux _ _ 3 think _ VERB VB _ 0 root _ _ 4 that _ SCONJ IN _ 40 mark _ _ 5 the _ DET DT _ 7 det _ _ 6 home _ NOUN NN _ 7 compound _ _ 7 fans _ NOUN NNS _ 40 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 this _ DET DT _ 10 det _ _ 10 Series _ PROPN NNP _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 Subway _ PROPN NNP _ 10 nmod _ _ 14 Called _ VERB VBN _ 13 acl _ _ 15 BART _ PROPN NNP _ 14 xcomp _ _ 16 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 17 that _ PRON DT _ 21 nsubj _ _ 18 's _ VERB VBZ _ 21 cop _ _ 19 a _ DET DT _ 21 det _ _ 20 better _ ADJ JJR _ 21 amod _ _ 21 name _ NOUN NN _ 15 dep _ _ 22 for _ ADP IN _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 public _ ADJ JJ _ 25 amod _ _ 25 conveyance _ NOUN NN _ 21 nmod _ _ 26 than _ ADP IN _ 28 case _ _ 27 `` _ PUNCT `` _ 28 punct _ _ 28 Desire _ NOUN NN _ 21 nmod _ _ 29 , _ PUNCT , _ 21 punct _ _ 30 '' _ PUNCT '' _ 21 punct _ _ 31 do _ AUX VBP _ 34 aux _ _ 32 n't _ PART RB _ 34 neg _ _ 33 you _ PRON PRP _ 34 nsubj _ _ 34 think _ VERB VBP _ 21 parataxis _ _ 35 ? _ PUNCT . _ 34 punct _ _ 36 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 37 would _ AUX MD _ 40 aux _ _ 38 have _ AUX VB _ 40 aux _ _ 39 been _ VERB VBN _ 40 cop _ _ 40 ecstatic _ ADJ JJ _ 3 ccomp _ _ 41 over _ ADP IN _ 43 case _ _ 42 the _ DET DT _ 43 det _ _ 43 proceedings _ NOUN NNS _ 40 nmod _ _ 44 , _ PUNCT , _ 3 punct _ _ 45 but _ CONJ CC _ 3 cc _ _ 46 they _ PRON PRP _ 47 nsubj _ _ 47 observe _ VERB VBP _ 3 conj _ _ 48 them _ PRON PRP _ 47 dobj _ _ 49 in _ ADP IN _ 51 case _ _ 50 relative _ ADJ JJ _ 51 amod _ _ 51 calm _ NOUN NN _ 47 nmod _ _ 52 . _ PUNCT . _ 3 punct _ _ 1 Partisans _ NOUN NNS _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 two _ NUM CD _ 5 nummod _ _ 5 combatants _ NOUN NNS _ 1 nmod _ _ 6 sat _ VERB VBD _ 0 root _ _ 7 side _ NOUN NN _ 9 dep _ _ 8 by _ ADP IN _ 9 case _ _ 9 side _ NOUN NN _ 6 advmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 49,000-plus _ ADJ JJ _ 13 amod _ _ 13 seats _ NOUN NNS _ 6 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 Oakland _ PROPN NNP _ 16 compound _ _ 16 Coliseum _ PROPN NNP _ 13 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 and _ CONJ CC _ 6 cc _ _ 19 while _ SCONJ IN _ 21 mark _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 cheered _ VERB VBD _ 30 advcl _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 favorites _ NOUN NNS _ 21 dobj _ _ 24 and _ CONJ CC _ 21 cc _ _ 25 booed _ VERB VBD _ 21 conj _ _ 26 the _ DET DT _ 27 det _ _ 27 opposition _ NOUN NN _ 25 dobj _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 hostilities _ NOUN NNS _ 30 nsubj _ _ 30 advanced _ VERB VBD _ 6 conj _ _ 31 no _ DET DT _ 32 neg _ _ 32 further _ ADV RBR _ 30 advmod _ _ 33 , _ PUNCT , _ 30 punct _ _ 34 at _ ADP IN _ 30 advmod _ _ 35 least _ ADJ JJS _ 34 mwe _ _ 36 as _ ADV RB _ 37 advmod _ _ 37 far _ ADV RB _ 34 advmod _ _ 38 as _ SCONJ IN _ 41 mark _ _ 39 I _ PRON PRP _ 41 nsubj _ _ 40 could _ AUX MD _ 41 aux _ _ 41 see _ VERB VB _ 34 advcl _ _ 42 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 few _ ADJ JJ _ 3 amod _ _ 3 folks _ NOUN NNS _ 5 nsubj _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 showed _ VERB VBD _ 0 root _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 wearing _ VERB VBG _ 5 xcomp _ _ 8 caps _ NOUN NNS _ 7 dobj _ _ 9 bearing _ VERB VBG _ 8 acl _ _ 10 the _ DET DT _ 11 det _ _ 11 colors _ NOUN NNS _ 9 dobj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 emblems _ NOUN NNS _ 11 conj _ _ 14 of _ ADP IN _ 16 case _ _ 15 both _ DET DT _ 16 det _ _ 16 teams _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 I _ PRON PRP _ 6 nsubj _ _ 3 'm _ VERB VBP _ 6 cop _ _ 4 for _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 Giants _ PROPN NNP _ 0 root _ _ 7 today _ NOUN NN _ 6 nmod:tmod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 but _ CONJ CC _ 6 cc _ _ 10 only _ ADV RB _ 13 advmod _ _ 11 because _ SCONJ IN _ 13 mark _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 lost _ VERB VBD _ 6 advcl _ _ 14 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 love _ VERB VBP _ 0 root _ _ 3 'em _ PRON PRP _ 2 dobj _ _ 4 both _ DET DT _ 3 det _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 only _ ADJ JJ _ 3 amod _ _ 3 thing _ NOUN NN _ 8 nsubj _ _ 4 I _ PRON PRP _ 6 nsubj _ _ 5 'm _ AUX VBP _ 6 aux _ _ 6 rooting _ VERB VBG _ 3 acl:relcl _ _ 7 for _ ADP IN _ 6 nmod _ _ 8 is _ VERB VBZ _ 18 ccomp _ _ 9 for _ SCONJ IN _ 13 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 Series _ PROPN NNP _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 go _ VERB VB _ 8 advcl _ _ 14 seven _ NUM CD _ 15 nummod _ _ 15 games _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 David _ PROPN NNP _ 20 compound _ _ 20 Williams _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 24 det _ _ 23 Sacramento _ PROPN NNP _ 24 compound _ _ 24 septuagenarian _ NOUN NN _ 20 appos _ _ 25 , _ PUNCT , _ 20 punct _ _ 26 at _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 Coliseum _ NOUN NN _ 18 nmod _ _ 29 before _ ADP IN _ 32 case _ _ 30 Sunday _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 go _ NOUN NN _ 18 nmod _ _ 33 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 above _ ADJ JJ _ 3 nsubj _ _ 3 represents _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 triumph _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 either _ DET DT _ 8 cc:preconj _ _ 8 apathy _ NOUN NN _ 5 nmod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 civility _ NOUN NN _ 8 conj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 choose _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 believe _ VERB VB _ 2 xcomp _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 's _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 latter _ ADJ JJ _ 4 ccomp _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 although _ SCONJ IN _ 13 mark _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 probably _ ADV RB _ 13 advmod _ _ 13 springs _ VERB VBZ _ 2 advcl _ _ 14 from _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 fact _ NOUN NN _ 13 nmod _ _ 17 that _ SCONJ IN _ 35 mark _ _ 18 just _ ADV RB _ 20 advmod _ _ 19 about _ ADV RB _ 20 advmod _ _ 20 everyone _ NOUN NN _ 35 nsubj _ _ 21 out _ ADP IN _ 22 case _ _ 22 here _ ADV RB _ 20 nmod _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 including _ VERB VBG _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 A _ PROPN NNP _ 27 compound _ _ 27 's _ PROPN NNP _ 20 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 Giants _ PROPN NNP _ 27 conj _ _ 30 , _ PUNCT , _ 20 punct _ _ 31 is _ VERB VBZ _ 35 cop _ _ 32 originally _ ADV RB _ 35 advmod _ _ 33 from _ ADP IN _ 35 case _ _ 34 somewhere _ ADV RB _ 35 advmod _ _ 35 else _ ADV RB _ 16 ccomp _ _ 36 . _ PUNCT . _ 2 punct _ _ 1 Suffice _ VERB VB _ 0 root _ _ 2 it _ PRON PRP _ 1 dobj _ _ 3 to _ PART TO _ 4 mark _ _ 4 say _ VERB VB _ 1 advcl _ _ 5 that _ SCONJ IN _ 34 mark _ _ 6 if _ SCONJ IN _ 13 mark _ _ 7 this _ PRON DT _ 13 nsubj _ _ 8 were _ VERB VBD _ 13 cop _ _ 9 a _ DET DT _ 13 det _ _ 10 New _ PROPN NNP _ 13 compound _ _ 11 York _ PROPN NNP _ 13 compound _ _ 12 Yankees-Mets _ ADJ JJ _ 13 amod _ _ 13 series _ NOUN NN _ 34 advcl _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 one _ NUM CD _ 13 conj _ _ 17 between _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 Chicago _ PROPN NNP _ 20 compound _ _ 20 Cubs _ PROPN NNP _ 16 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 White _ PROPN NNP _ 23 compound _ _ 23 Sox _ PROPN NNP _ 20 conj _ _ 24 -LRB- _ PUNCT -LRB- _ 29 punct _ _ 25 hey _ INTJ UH _ 29 discourse _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 it _ PRON PRP _ 29 nsubj _ _ 28 's _ VERB VBZ _ 29 cop _ _ 29 possible _ ADJ JJ _ 16 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 29 punct _ _ 31 , _ PUNCT , _ 34 punct _ _ 32 you _ PRON PRP _ 34 nsubj _ _ 33 'd _ AUX MD _ 34 aux _ _ 34 need _ VERB VB _ 4 ccomp _ _ 35 uniformed _ ADJ JJ _ 36 amod _ _ 36 police _ NOUN NNS _ 34 dobj _ _ 37 in _ ADP IN _ 40 case _ _ 38 every _ DET DT _ 40 det _ _ 39 other _ ADJ JJ _ 40 amod _ _ 40 seat _ NOUN NN _ 34 nmod _ _ 41 to _ PART TO _ 42 mark _ _ 42 separate _ VERB VB _ 34 advcl _ _ 43 opposing _ VERB VBG _ 44 amod _ _ 44 fans _ NOUN NNS _ 42 dobj _ _ 45 , _ PUNCT , _ 34 punct _ _ 46 and _ CONJ CC _ 34 cc _ _ 47 only _ ADV RB _ 49 advmod _ _ 48 the _ DET DT _ 49 det _ _ 49 suicidal _ ADJ JJ _ 51 nsubj _ _ 50 would _ AUX MD _ 51 aux _ _ 51 bifurcate _ VERB VB _ 34 conj _ _ 52 their _ PRON PRP$ _ 53 nmod:poss _ _ 53 bonnets _ NOUN NNS _ 51 dobj _ _ 54 . _ PUNCT . _ 1 punct _ _ 1 Anyway _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 A _ PROPN NNP _ 5 compound _ _ 5 's _ PROPN NNP _ 6 nsubj _ _ 6 gave _ VERB VBD _ 0 root _ _ 7 you _ PRON PRP _ 6 iobj _ _ 8 a _ DET DT _ 9 det _ _ 9 lot _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 heroes _ NOUN NNS _ 9 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 root _ VERB VB _ 11 acl _ _ 14 for _ ADP RP _ 13 advcl _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 opening _ ADJ JJ _ 4 amod _ _ 4 game _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 besides _ ADP IN _ 7 case _ _ 7 Steinbach _ PROPN NNP _ 12 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Stewart _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 there _ PRON EX _ 12 expl _ _ 12 was _ VERB VBD _ 0 root _ _ 13 Walt _ PROPN NNP _ 14 compound _ _ 14 Weiss _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 20 det _ _ 17 twiggy-looking _ ADJ JJ _ 20 amod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 second-year _ ADJ JJ _ 20 amod _ _ 20 shortstop _ NOUN NN _ 14 appos _ _ 21 who _ PRON WP _ 23 nsubj _ _ 22 had _ AUX VBD _ 23 aux _ _ 23 lost _ VERB VBN _ 20 acl:relcl _ _ 24 a _ DET DT _ 26 det _ _ 25 couple _ NOUN NN _ 26 compound _ _ 26 months _ NOUN NNS _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 season _ NOUN NN _ 26 nmod _ _ 30 to _ ADP TO _ 32 case _ _ 31 knee _ NOUN NN _ 32 compound _ _ 32 surgery _ NOUN NN _ 23 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 flawless _ ADJ JJ _ 0 root _ _ 4 afield _ ADV RB _ 3 advmod _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 ditto _ NOUN NN _ 3 dep _ _ 7 in _ ADP IN _ 8 case _ _ 8 game _ NOUN NN _ 6 nmod _ _ 9 two _ NUM CD _ 8 nummod _ _ 10 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 moved _ VERB VBD _ 3 conj _ _ 13 a _ DET DT _ 14 det _ _ 14 runner _ NOUN NN _ 12 dobj _ _ 15 along _ ADP IN _ 12 advmod _ _ 16 in _ ADP IN _ 22 case _ _ 17 the _ DET DT _ 22 det _ _ 18 A _ PROPN NNP _ 22 compound _ _ 19 's _ PROPN NNP _ 22 compound _ _ 20 three-run _ ADJ JJ _ 22 amod _ _ 21 second _ ADJ JJ _ 22 amod _ _ 22 inning _ NOUN NN _ 12 nmod _ _ 23 , _ PUNCT , _ 3 punct _ _ 24 and _ CONJ CC _ 3 cc _ _ 25 homered _ VERB VBD _ 3 conj _ _ 26 for _ ADP IN _ 31 case _ _ 27 his _ PRON PRP$ _ 28 nmod:poss _ _ 28 team _ NOUN NN _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 final _ ADJ JJ _ 31 amod _ _ 31 tally _ NOUN NN _ 25 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 Such _ ADJ JJ _ 2 dep _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 reputation _ NOUN NN _ 2 nsubj _ _ 5 among _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 East _ PROPN NNP _ 9 compound _ _ 8 Bay _ PROPN NNP _ 9 compound _ _ 9 Bashers _ PROPN NNP _ 4 nmod _ _ 10 that _ SCONJ IN _ 27 mark _ _ 11 when _ ADV WRB _ 13 advmod _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 hit _ VERB VBD _ 27 advcl _ _ 14 his _ PRON PRP$ _ 18 nmod:poss _ _ 15 first _ ADJ JJ _ 18 amod _ _ 16 career _ NOUN NN _ 18 compound _ _ 17 home _ NOUN NN _ 18 compound _ _ 18 run _ NOUN NN _ 13 dobj _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 season _ NOUN NN _ 13 nmod:tmod _ _ 21 , _ PUNCT , _ 27 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 fan _ NOUN NN _ 27 nsubj _ _ 24 who _ PRON WP _ 25 nsubj _ _ 25 caught _ VERB VBD _ 23 acl:relcl _ _ 26 it _ PRON PRP _ 25 dobj _ _ 27 agreed _ VERB VBD _ 2 dep _ _ 28 to _ PART TO _ 29 mark _ _ 29 turn _ VERB VB _ 27 xcomp _ _ 30 the _ DET DT _ 31 det _ _ 31 ball _ NOUN NN _ 29 dobj _ _ 32 over _ ADP RP _ 29 compound:prt _ _ 33 to _ ADP TO _ 34 case _ _ 34 him _ PRON PRP _ 29 nmod _ _ 35 in _ ADP IN _ 36 case _ _ 36 return _ NOUN NN _ 29 nmod _ _ 37 for _ ADP IN _ 39 case _ _ 38 an _ DET DT _ 39 det _ _ 39 autograph _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 Not _ ADV RB _ 3 neg _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 autograph _ NOUN NN _ 0 root _ _ 4 ; _ PUNCT : _ 3 punct _ _ 5 power-hitter _ NOUN NN _ 6 compound _ _ 6 McGwire _ NOUN NN _ 3 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 An _ DET DT _ 4 det _ _ 2 A _ PROPN NNP _ 4 compound _ _ 3 's _ PROPN NNP _ 4 compound _ _ 4 co-hero _ NOUN NN _ 11 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 second _ ADJ JJ _ 8 amod _ _ 8 game _ NOUN NN _ 4 nmod _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 Rickey _ PROPN NNP _ 11 compound _ _ 11 Henderson _ PROPN NNP _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 who _ PRON WP _ 14 nsubj _ _ 14 exemplifies _ VERB VBZ _ 11 acl:relcl _ _ 15 the _ DET DT _ 17 det _ _ 16 hot _ ADJ JJ _ 17 amod _ _ 17 side _ NOUN NN _ 14 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 hot-cold _ ADJ JJ _ 21 amod _ _ 21 equation _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 smoked _ VERB VBD _ 0 root _ _ 3 Toronto _ PROPN NNP _ 2 dobj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 playoffs _ NOUN NNS _ 2 nmod _ _ 7 with _ ADP IN _ 9 case _ _ 8 six _ NUM CD _ 9 nummod _ _ 9 hits _ NOUN NNS _ 2 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 seven _ NUM CD _ 12 nummod _ _ 12 walks _ NOUN NNS _ 9 conj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 eight _ NUM CD _ 16 nummod _ _ 15 stolen _ VERB VBN _ 16 amod _ _ 16 bases _ NOUN NNS _ 9 conj _ _ 17 in _ ADP IN _ 20 case _ _ 18 22 _ NUM CD _ 20 nummod _ _ 19 at _ ADP IN _ 20 amod _ _ 20 bats _ NOUN NNS _ 9 nmod _ _ 21 , _ PUNCT , _ 2 punct _ _ 22 and _ CONJ CC _ 2 cc _ _ 23 continued _ VERB VBD _ 2 conj _ _ 24 that _ PRON DT _ 23 dobj _ _ 25 by _ SCONJ IN _ 26 mark _ _ 26 going _ VERB VBG _ 23 advcl _ _ 27 3-for-3 _ ADJ JJ _ 26 advmod _ _ 28 at _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 plate _ NOUN NN _ 26 nmod _ _ 31 Sunday _ PROPN NNP _ 26 nmod:tmod _ _ 32 , _ PUNCT , _ 26 punct _ _ 33 along _ ADP IN _ 26 cc _ _ 34 with _ ADP IN _ 33 dep _ _ 35 walking _ VERB VBG _ 26 conj _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 stealing _ VERB VBG _ 35 conj _ _ 38 a _ DET DT _ 39 det _ _ 39 base _ NOUN NN _ 37 dobj _ _ 40 and _ CONJ CC _ 35 cc _ _ 41 scoring _ VERB VBG _ 35 conj _ _ 42 a _ DET DT _ 43 det _ _ 43 run _ NOUN NN _ 41 dobj _ _ 44 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 When _ ADV WRB _ 7 advmod _ _ 3 you _ PRON PRP _ 7 nsubj _ _ 4 're _ VERB VBP _ 7 cop _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 groove _ NOUN NN _ 10 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 you _ PRON PRP _ 10 nsubj _ _ 10 see _ VERB VBP _ 17 ccomp _ _ 11 every _ DET DT _ 12 det _ _ 12 ball _ NOUN NN _ 10 dobj _ _ 13 tremendously _ ADV RB _ 10 advmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 lectured _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 cold _ ADJ JJ _ 3 amod _ _ 3 guys _ NOUN NNS _ 9 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 set _ NOUN NN _ 3 nmod _ _ 7 were _ VERB VBD _ 9 cop _ _ 8 Will _ PROPN NNP _ 9 compound _ _ 9 Clark _ PROPN NNP _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Kevin _ PROPN NNP _ 12 compound _ _ 12 Mitchell _ PROPN NNP _ 9 conj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 Matt _ PROPN NNP _ 15 compound _ _ 15 Williams _ PROPN NNP _ 9 conj _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 Giants _ PROPN NNP _ 21 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 3-4-5 _ NUM CD _ 21 nummod _ _ 21 hitters _ NOUN NNS _ 9 appos _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 combined _ VERB VBD _ 0 root _ _ 3 for _ ADP IN _ 5 case _ _ 4 25 _ NUM CD _ 5 nummod _ _ 5 hits _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 six _ NUM CD _ 9 nummod _ _ 8 home _ NOUN NN _ 9 compound _ _ 9 runs _ NOUN NNS _ 5 conj _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 24 _ NUM CD _ 12 nummod _ _ 12 runs _ NOUN NNS _ 5 conj _ _ 13 batted _ VERB VBN _ 12 acl _ _ 14 in _ ADP RP _ 13 compound:prt _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 five _ NUM CD _ 18 nummod _ _ 18 games _ NOUN NNS _ 2 nmod _ _ 19 against _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 Cubs _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 went _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 collective _ ADJ JJ _ 5 amod _ _ 5 5-for-24 _ NUM CD _ 2 dobj _ _ 6 here _ ADV RB _ 2 advmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 with _ ADP IN _ 10 case _ _ 9 zero _ NUM CD _ 10 nummod _ _ 10 homers _ NOUN NNS _ 2 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 ribbies _ NOUN NNS _ 10 conj _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 's _ PART POS _ 5 dep _ _ 3 that _ DET DT _ 5 det _ _ 4 last _ ADJ JJ _ 5 amod _ _ 5 set _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 numbers _ NOUN NNS _ 5 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 as _ ADV RB _ 10 advmod _ _ 10 much _ ADJ JJ _ 5 dep _ _ 11 as _ ADP IN _ 12 case _ _ 12 anything _ NOUN NN _ 10 nmod _ _ 13 else _ ADV RB _ 12 amod _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 that _ PRON WDT _ 16 nsubj _ _ 16 gives _ VERB VBZ _ 5 dep _ _ 17 the _ DET DT _ 18 det _ _ 18 Giants _ PROPN NNP _ 16 iobj _ _ 19 hope _ NOUN NN _ 16 dobj _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 Series _ PROPN NNP _ 23 compound _ _ 23 games _ NOUN NNS _ 19 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 come _ VERB VB _ 23 acl _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 believe _ VERB VBP _ 11 ccomp _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 law _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 averages _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 declared _ VERB VBD _ 0 root _ _ 12 San _ PROPN NNP _ 17 compound _ _ 13 Francisco _ PROPN NNP _ 17 compound _ _ 14 batting _ NOUN NN _ 17 compound _ _ 15 coach _ NOUN NN _ 17 compound _ _ 16 Dusty _ PROPN NNP _ 17 compound _ _ 17 Baker _ PROPN NNP _ 11 nsubj _ _ 18 after _ ADP IN _ 19 case _ _ 19 game _ NOUN NN _ 11 nmod _ _ 20 two _ NUM CD _ 19 nummod _ _ 21 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'd _ AUX MD _ 5 aux _ _ 4 rather _ ADV RB _ 5 advmod _ _ 5 see _ VERB VB _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 so-so _ ADJ JJ _ 8 amod _ _ 8 hitter _ NOUN NN _ 12 nsubj _ _ 9 who _ PRON WP _ 11 nsubj _ _ 10 's _ VERB VBZ _ 11 cop _ _ 11 hot _ ADJ JJ _ 8 acl:relcl _ _ 12 come _ VERB VB _ 5 ccomp _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 for _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 other _ ADJ JJ _ 17 amod _ _ 17 side _ NOUN NN _ 12 nmod _ _ 18 than _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 good _ ADJ JJ _ 21 amod _ _ 21 hitter _ NOUN NN _ 5 nmod _ _ 22 who _ PRON WP _ 24 nsubj _ _ 23 's _ VERB VBZ _ 24 cop _ _ 24 cold _ ADJ JJ _ 21 acl:relcl _ _ 25 . _ PUNCT . _ 5 punct _ _ 26 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 old _ ADJ JJ _ 5 amod _ _ 4 Dodger _ PROPN NNP _ 5 compound _ _ 5 slugger _ NOUN NN _ 7 nsubj _ _ 6 wisely _ ADV RB _ 7 advmod _ _ 7 offered _ VERB VBD _ 0 root _ _ 8 no _ DET DT _ 9 neg _ _ 9 prediction _ NOUN NN _ 7 dobj _ _ 10 about _ SCONJ IN _ 15 mark _ _ 11 when _ ADV WRB _ 15 advmod _ _ 12 good _ ADJ JJ _ 13 amod _ _ 13 times _ NOUN NNS _ 15 nsubj _ _ 14 would _ AUX MD _ 15 aux _ _ 15 return _ VERB VB _ 9 acl _ _ 16 to _ ADP TO _ 18 case _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 side _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 When _ ADV WRB _ 4 advmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 goes _ VERB VBZ _ 8 advcl _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 you _ PRON PRP _ 8 nsubj _ _ 7 never _ ADV RB _ 8 neg _ _ 8 know _ VERB VBP _ 18 ccomp _ _ 9 when _ ADV WRB _ 12 advmod _ _ 10 you _ PRON PRP _ 12 nsubj _ _ 11 'll _ AUX MD _ 12 aux _ _ 12 get _ VERB VB _ 8 ccomp _ _ 13 it _ PRON PRP _ 12 dobj _ _ 14 back _ ADV RB _ 12 advmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 That _ PRON DT _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 baseball _ NOUN NN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 NCR _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 10 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 drop _ NOUN NN _ 3 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 third-quarter _ ADJ JJ _ 11 amod _ _ 10 net _ ADJ JJ _ 11 amod _ _ 11 income _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 citing _ VERB VBG _ 3 advcl _ _ 14 intense _ ADJ JJ _ 15 amod _ _ 15 competition _ NOUN NN _ 13 dobj _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 caused _ VERB VBD _ 15 acl:relcl _ _ 18 its _ PRON PRP$ _ 21 nmod:poss _ _ 19 gross _ ADJ JJ _ 21 amod _ _ 20 profit _ NOUN NN _ 21 compound _ _ 21 margins _ NOUN NNS _ 17 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 dip _ VERB VB _ 17 xcomp _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Net _ ADJ JJ _ 2 amod _ _ 2 income _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 quarter _ NOUN NN _ 2 nmod _ _ 6 fell _ VERB VBD _ 0 root _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 93.1 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 from _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 6 nmod _ _ 13 103.1 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 roughly _ ADV RB _ 17 advmod _ _ 17 what _ PRON WP _ 20 dobj _ _ 18 analysts _ NOUN NNS _ 20 nsubj _ _ 19 had _ AUX VBD _ 20 aux _ _ 20 expected _ VERB VBN _ 6 ccomp _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 per-share _ ADJ JJ _ 3 amod _ _ 3 profit _ NOUN NN _ 4 nsubj _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 only _ ADV RB _ 6 advmod _ _ 6 2 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 4 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 1.23 _ NUM CD _ 4 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 from _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 1.26 _ NUM CD _ 4 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 as _ SCONJ IN _ 22 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 company _ NOUN NN _ 22 nsubj _ _ 22 continued _ VERB VBD _ 4 advcl _ _ 23 its _ PRON PRP$ _ 26 nmod:poss _ _ 24 stock _ NOUN NN _ 26 compound _ _ 25 buy-back _ ADJ JJ _ 26 amod _ _ 26 plan _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Average _ ADJ JJ _ 2 amod _ _ 2 shares _ NOUN NNS _ 4 nsubj _ _ 3 outstanding _ ADJ JJ _ 2 amod _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 75.8 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 4 nmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 82.1 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 1 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 1.39 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 1.41 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 maker _ NOUN NN _ 17 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 sells _ VERB VBZ _ 3 acl:relcl _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 half _ NOUN NN _ 11 nummod _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 goods _ NOUN NNS _ 6 dobj _ _ 12 outside _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 also _ ADV RB _ 17 advmod _ _ 17 said _ VERB VBD _ 0 root _ _ 18 the _ DET DT _ 20 det _ _ 19 negative _ ADJ JJ _ 20 amod _ _ 20 effect _ NOUN NN _ 29 nsubj _ _ 21 of _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 stronger _ ADJ JJR _ 25 amod _ _ 24 U.S. _ PROPN NNP _ 25 compound _ _ 25 dollar _ NOUN NN _ 20 nmod _ _ 26 will _ AUX MD _ 29 aux _ _ 27 `` _ PUNCT `` _ 29 punct _ _ 28 adversely _ ADV RB _ 29 advmod _ _ 29 affect _ VERB VB _ 17 ccomp _ _ 30 '' _ PUNCT '' _ 29 punct _ _ 31 its _ PRON PRP$ _ 33 nmod:poss _ _ 32 fourth-quarter _ ADJ JJ _ 33 amod _ _ 33 performance _ NOUN NN _ 29 dobj _ _ 34 and _ CONJ CC _ 29 cc _ _ 35 `` _ PUNCT `` _ 36 punct _ _ 36 make _ VERB VB _ 29 conj _ _ 37 it _ PRON PRP _ 41 nsubj _ _ 38 difficult _ ADJ JJ _ 41 dep _ _ 39 '' _ PUNCT '' _ 41 punct _ _ 40 to _ PART TO _ 41 mark _ _ 41 better _ VERB VB _ 36 xcomp _ _ 42 1988 _ NUM CD _ 43 nummod _ _ 43 results _ NOUN NNS _ 41 dobj _ _ 44 . _ PUNCT . _ 17 punct _ _ 1 NCR _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 2 ccomp _ _ 5 both _ DET DT _ 4 dep _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 5 dep _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 overseas _ ADV RB _ 5 conj _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 reflecting _ VERB VBG _ 4 xcomp _ _ 13 a _ DET DT _ 15 det _ _ 14 world-wide _ ADJ JJ _ 15 amod _ _ 15 softening _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 computer _ NOUN NN _ 19 compound _ _ 19 markets _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 said _ VERB VBD _ 0 root _ _ 7 orders _ NOUN NNS _ 11 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 U.S. _ PROPN NNP _ 7 nmod _ _ 11 showed _ VERB VBD _ 6 ccomp _ _ 12 `` _ PUNCT `` _ 11 punct _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 gains _ NOUN NNS _ 11 dobj _ _ 15 '' _ PUNCT '' _ 11 punct _ _ 16 during _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 latest _ ADJ JJS _ 19 amod _ _ 19 quarter _ NOUN NN _ 11 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 estimate _ VERB VBP _ 0 root _ _ 3 those _ DET DT _ 4 det _ _ 4 gains _ NOUN NNS _ 2 dobj _ _ 5 at _ ADP IN _ 10 case _ _ 6 12 _ NUM CD _ 10 compound _ _ 7 % _ SYM NN _ 10 dep _ _ 8 to _ ADP TO _ 10 dep _ _ 9 13 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 2 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 part _ NOUN NN _ 17 nsubj _ _ 15 of _ ADP IN _ 16 case _ _ 16 it _ PRON PRP _ 14 nmod _ _ 17 coming _ VERB VBG _ 2 advcl _ _ 18 from _ ADP IN _ 20 case _ _ 19 large _ ADJ JJ _ 20 amod _ _ 20 orders _ NOUN NNS _ 17 nmod _ _ 21 placed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 few _ ADJ JJ _ 21 nmod _ _ 25 of _ ADP IN _ 29 case _ _ 26 NCR _ PROPN NNP _ 29 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 major _ ADJ JJ _ 29 amod _ _ 29 customers _ NOUN NNS _ 24 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 26 nmod _ _ 3 to _ ADP TO _ 6 case _ _ 4 a _ DET DT _ 6 det _ _ 5 general _ ADJ JJ _ 6 amod _ _ 6 slowing _ NOUN NN _ 2 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 computer _ NOUN NN _ 10 compound _ _ 10 industry _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 26 punct _ _ 12 NCR _ PROPN NNP _ 26 nsubjpass _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 sells _ VERB VBZ _ 12 acl:relcl _ _ 16 automated _ VERB VBN _ 18 amod _ _ 17 teller _ NOUN NN _ 18 compound _ _ 18 machines _ NOUN NNS _ 15 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 computerized _ VERB VBN _ 22 amod _ _ 21 cash _ NOUN NN _ 22 compound _ _ 22 registers _ NOUN NNS _ 18 conj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 is _ AUX VBZ _ 26 auxpass _ _ 25 also _ ADV RB _ 26 advmod _ _ 26 affected _ VERB VBN _ 47 ccomp _ _ 27 by _ ADP IN _ 32 case _ _ 28 the _ DET DT _ 32 det _ _ 29 retail _ ADJ JJ _ 32 amod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 financial _ ADJ JJ _ 29 conj _ _ 32 sectors _ NOUN NNS _ 26 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 `` _ PUNCT `` _ 32 punct _ _ 35 areas _ NOUN NNS _ 32 dep _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 economy _ NOUN NN _ 35 nmod _ _ 39 that _ PRON WDT _ 44 nsubj _ _ 40 have _ AUX VBP _ 44 aux _ _ 41 generally _ ADV RB _ 44 advmod _ _ 42 not _ PART RB _ 44 neg _ _ 43 been _ VERB VBN _ 44 cop _ _ 44 robust _ ADJ JJ _ 35 acl:relcl _ _ 45 , _ PUNCT , _ 47 punct _ _ 46 '' _ PUNCT '' _ 47 punct _ _ 47 notes _ VERB VBZ _ 0 root _ _ 48 Sanjiv _ PROPN NNP _ 50 compound _ _ 49 G. _ PROPN NNP _ 50 compound _ _ 50 Hingorani _ PROPN NNP _ 47 nsubj _ _ 51 , _ PUNCT , _ 50 punct _ _ 52 an _ DET DT _ 53 det _ _ 53 analyst _ NOUN NN _ 50 appos _ _ 54 for _ ADP IN _ 57 case _ _ 55 Salomon _ PROPN NNP _ 57 compound _ _ 56 Brothers _ PROPN NNP _ 57 compound _ _ 57 Inc _ PROPN NNP _ 53 nmod _ _ 58 . _ PUNCT . _ 47 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 factors _ NOUN NNS _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 combined _ VERB VBN _ 8 case _ _ 5 with _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 strong _ ADJ JJ _ 8 amod _ _ 8 dollar _ NOUN NN _ 2 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 should _ AUX MD _ 12 aux _ _ 11 negatively _ ADV RB _ 12 advmod _ _ 12 affect _ VERB VB _ 20 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 current _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 results _ NOUN NNS _ 12 dobj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 NCR _ PROPN NNP _ 20 nsubj _ _ 20 said _ VERB VBD _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 year-earlier _ ADJ JJ _ 5 amod _ _ 4 fourth _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 NCR _ PROPN NNP _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 profit _ NOUN NN _ 8 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 149.6 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.85 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 revenue _ NOUN NN _ 8 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 1.8 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Hingorani _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 lowered _ VERB VBD _ 3 ccomp _ _ 6 his _ PRON PRP$ _ 8 nmod:poss _ _ 7 full-year _ ADJ JJ _ 8 amod _ _ 8 estimates _ NOUN NNS _ 5 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 1989 _ NUM CD _ 8 nmod _ _ 11 to _ ADP TO _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 5.35 _ NUM CD _ 5 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 from _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 5.50 _ NUM CD _ 5 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Revenue _ NOUN NN _ 2 compound _ _ 2 projections _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 slashed _ VERB VBN _ 0 root _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 4 nmod _ _ 7 6.03 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 4 nmod _ _ 11 6.20 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 year _ NOUN NN _ 5 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 NCR _ PROPN NNP _ 5 nsubj _ _ 5 had _ VERB VBD _ 0 root _ _ 6 net _ ADJ JJ _ 7 amod _ _ 7 income _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 439.3 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 5.33 _ NUM CD _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 5 nmod _ _ 21 5.99 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 in _ ADP IN _ 24 case _ _ 24 revenue _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 earnings _ NOUN NNS _ 10 nsubj _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 9 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 to _ ADP TO _ 14 case _ _ 14 $ _ SYM $ _ 10 nmod _ _ 15 264.6 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 3.40 _ NUM CD _ 14 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 from _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 10 nmod _ _ 26 289.7 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 3.49 _ NUM CD _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 Revenues _ NOUN NNS _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 1 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 4.17 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 4.19 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN NN _ 7 compound _ _ 7 trading _ NOUN NN _ 12 nmod _ _ 8 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 NCR _ PROPN NNP _ 11 compound _ _ 11 shares _ NOUN NNS _ 12 nsubj _ _ 12 fell _ VERB VBD _ 0 root _ _ 13 75 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 12 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 close _ VERB VB _ 12 advcl _ _ 17 at _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 57 _ NUM CD _ 16 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 Concerning _ VERB VBG _ 20 dep _ _ 2 your _ PRON PRP$ _ 5 nmod:poss _ _ 3 Sept. _ PROPN NNP _ 5 compound _ _ 4 19 _ NUM CD _ 5 nummod _ _ 5 article _ NOUN NN _ 1 dobj _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 Wall _ PROPN NNP _ 9 compound _ _ 8 Street _ PROPN NNP _ 9 compound _ _ 9 Firms _ PROPN NNP _ 10 nsubj _ _ 10 Link _ VERB VBP _ 5 dep _ _ 11 Analysts _ PROPN NNP _ 13 nmod:poss _ _ 12 ' _ PART POS _ 11 case _ _ 13 Pay _ NOUN NN _ 10 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 Performance _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 '' _ PUNCT '' _ 20 punct _ _ 18 I _ PRON PRP _ 20 nsubjpass _ _ 19 'm _ VERB VBP _ 20 auxpass _ _ 20 delighted _ VERB VBN _ 0 root _ _ 21 that _ SCONJ IN _ 26 mark _ _ 22 Wall _ PROPN NNP _ 23 compound _ _ 23 Street _ PROPN NNP _ 26 nsubj _ _ 24 is _ AUX VBZ _ 26 aux _ _ 25 finally _ ADV RB _ 26 advmod _ _ 26 tuning _ VERB VBG _ 20 ccomp _ _ 27 in _ ADP RP _ 26 compound:prt _ _ 28 to _ ADP TO _ 33 case _ _ 29 the _ DET DT _ 33 det _ _ 30 hard _ ADJ JJ _ 33 amod _ _ 31 , _ PUNCT , _ 33 punct _ _ 32 cold _ ADJ JJ _ 33 amod _ _ 33 facts _ NOUN NNS _ 26 nmod _ _ 34 of _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 38 det _ _ 36 real _ ADJ JJ _ 38 amod _ _ 37 working _ NOUN NN _ 38 compound _ _ 38 world _ NOUN NN _ 33 nmod _ _ 39 . _ PUNCT . _ 20 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 firms _ NOUN NNS _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 serious _ ADJ JJ _ 10 dep _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 however _ ADV RB _ 10 advmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 why _ ADV WRB _ 10 advmod _ _ 10 limit _ VERB VB _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 practice _ NOUN NN _ 10 dobj _ _ 13 to _ ADP TO _ 18 case _ _ 14 the _ DET DT _ 18 det _ _ 15 poor _ ADJ JJ _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 maligned _ VERB VBN _ 18 amod _ _ 18 analysts _ NOUN NNS _ 10 nmod _ _ 19 whose _ PRON WP$ _ 20 nmod:poss _ _ 20 ability _ NOUN NN _ 27 nsubj _ _ 21 to _ PART TO _ 22 mark _ _ 22 see _ VERB VB _ 20 dep _ _ 23 into _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 future _ NOUN NN _ 22 nmod _ _ 26 is _ VERB VBZ _ 27 cop _ _ 27 fragile _ ADJ JJ _ 18 acl:relcl _ _ 28 at _ ADP IN _ 29 case _ _ 29 best _ ADV RBS _ 27 nmod _ _ 30 ? _ PUNCT . _ 10 punct _ _ 1 Why _ ADV WRB _ 2 advmod _ _ 2 not _ ADV RB _ 3 advmod _ _ 3 extend _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 7 det _ _ 5 same _ ADJ JJ _ 7 amod _ _ 6 harsh _ ADJ JJ _ 7 amod _ _ 7 standards _ NOUN NNS _ 3 dobj _ _ 8 to _ ADP TO _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 sales _ NOUN NNS _ 11 compound _ _ 11 force _ NOUN NN _ 3 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 pay _ VERB VB _ 3 conj _ _ 15 brokers _ NOUN NNS _ 14 iobj _ _ 16 a _ DET DT _ 18 det _ _ 17 base _ NOUN NN _ 18 compound _ _ 18 salary _ NOUN NN _ 14 dobj _ _ 19 with _ ADP IN _ 21 case _ _ 20 annual _ ADJ JJ _ 21 amod _ _ 21 bonus _ NOUN NN _ 18 nmod _ _ 22 based _ VERB VBN _ 21 acl _ _ 23 on _ SCONJ IN _ 28 mark _ _ 24 how _ ADV WRB _ 25 advmod _ _ 25 much _ ADJ JJ _ 26 advmod _ _ 26 money _ NOUN NN _ 28 dobj _ _ 27 they _ PRON PRP _ 28 nsubj _ _ 28 made _ VERB VBD _ 22 advcl _ _ 29 for _ ADP IN _ 31 case _ _ 30 their _ PRON PRP$ _ 31 nmod:poss _ _ 31 clients _ NOUN NNS _ 28 nmod _ _ 32 during _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 year _ NOUN NN _ 28 nmod _ _ 35 ? _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 should _ AUX MD _ 3 aux _ _ 3 stop _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 lot _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 account-churning _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 produce _ VERB VB _ 3 conj _ _ 11 a _ DET DT _ 13 det _ _ 12 stock _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 10 dobj _ _ 14 driven _ VERB VBN _ 13 acl _ _ 15 only _ ADV RB _ 14 advmod _ _ 16 by _ ADP IN _ 18 case _ _ 17 professional _ ADJ JJ _ 18 amod _ _ 18 concern _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 careful _ ADJ JJ _ 21 amod _ _ 21 thought _ NOUN NN _ 18 conj _ _ 22 and _ CONJ CC _ 18 cc _ _ 23 good _ ADJ JJ _ 24 amod _ _ 24 sense _ NOUN NN _ 18 conj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 8 discourse _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 would _ AUX MD _ 8 aux _ _ 4 n't _ PART RB _ 8 neg _ _ 5 that _ PRON DT _ 8 nsubj _ _ 6 be _ VERB VB _ 8 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 novelty _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 Phyllis _ PROPN NNP _ 3 compound _ _ 2 Kyle _ PROPN NNP _ 3 compound _ _ 3 Stephenson _ PROPN NNP _ 0 root _ _ 4 Newport _ PROPN NNP _ 5 compound _ _ 5 News _ PROPN NNP _ 3 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Va _ PROPN NNP _ 5 appos _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Steve _ PROPN NNP _ 2 compound _ _ 2 Clark _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 9 det _ _ 5 Shearson _ PROPN NNP _ 9 compound _ _ 6 Lehman _ PROPN NNP _ 9 compound _ _ 7 Hutton _ PROPN NNP _ 9 compound _ _ 8 Inc. _ PROPN NNP _ 9 compound _ _ 9 trader _ NOUN NN _ 2 appos _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 reported _ VERB VBD _ 0 root _ _ 12 for _ ADP IN _ 13 case _ _ 13 work _ NOUN NN _ 11 nmod _ _ 14 at _ ADP IN _ 16 case _ _ 15 5 _ NUM CD _ 16 nummod _ _ 16 a.m. _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 two _ NUM CD _ 22 nummod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 a _ DET DT _ 21 det _ _ 21 half _ NOUN NN _ 18 conj _ _ 22 hours _ NOUN NNS _ 16 nmod _ _ 23 before _ ADP IN _ 22 case _ _ 24 the _ DET DT _ 29 det _ _ 25 usual _ ADJ JJ _ 29 amod _ _ 26 Monday _ PROPN NNP _ 29 compound _ _ 27 morning _ NOUN NN _ 29 compound _ _ 28 strategy _ NOUN NN _ 29 compound _ _ 29 meeting _ NOUN NN _ 22 dep _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Jefferies _ PROPN NNP _ 11 nmod _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 J. _ PROPN NNP _ 8 compound _ _ 7 Francis _ PROPN NNP _ 8 compound _ _ 8 Palamara _ PROPN NNP _ 11 nsubj _ _ 9 did _ AUX VBD _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 reach _ VERB VB _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 office _ NOUN NN _ 11 dobj _ _ 14 until _ ADP IN _ 16 case _ _ 15 5:30 _ NUM CD _ 16 nummod _ _ 16 a.m. _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 but _ CONJ CC _ 11 cc _ _ 19 then _ ADV RB _ 29 advmod _ _ 20 he _ PRON PRP _ 29 nsubj _ _ 21 had _ AUX VBD _ 29 aux _ _ 22 been _ VERB VBN _ 29 cop _ _ 23 up _ ADV RB _ 29 advmod _ _ 24 most _ ADV RBS _ 29 nmod:tmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 night _ NOUN NN _ 24 nmod _ _ 28 at _ ADP IN _ 29 case _ _ 29 home _ NOUN NN _ 11 conj _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 had _ VERB VBD _ 14 ccomp _ _ 4 calls _ NOUN NNS _ 3 dobj _ _ 5 all _ DET DT _ 6 det _ _ 6 night _ NOUN NN _ 7 nmod:npmod _ _ 7 long _ ADV RB _ 3 advmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 States _ PROPN NNP _ 3 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 '' _ PUNCT '' _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 woken _ VERB VBN _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 every _ DET DT _ 7 det _ _ 7 hour _ NOUN NN _ 4 dobj _ _ 8 -- _ PUNCT : _ 7 punct _ _ 9 1:30 _ NUM CD _ 15 nummod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 2:30 _ NUM CD _ 15 nummod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 3:30 _ NUM CD _ 15 nummod _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 4:30 _ NUM CD _ 7 dep _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 People _ NOUN NNS _ 3 nsubj _ _ 2 are _ AUX VBP _ 3 aux _ _ 3 looking _ VERB VBG _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 possible _ ADJ JJ _ 6 amod _ _ 6 opportunities _ NOUN NNS _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 6 acl _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 but _ CONJ CC _ 3 cc _ _ 11 nobody _ NOUN NN _ 12 nsubj _ _ 12 wants _ VERB VBZ _ 3 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 stick _ VERB VB _ 12 xcomp _ _ 15 their _ PRON PRP$ _ 16 nmod:poss _ _ 16 chin _ NOUN NN _ 14 dobj _ _ 17 out _ ADP RP _ 14 compound:prt _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 '' _ PUNCT '' _ 3 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 many _ ADJ JJ _ 12 nmod _ _ 3 of _ ADP IN _ 7 case _ _ 4 London _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 securities _ NOUN NNS _ 7 compound _ _ 7 traders _ NOUN NNS _ 2 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 it _ PRON PRP _ 12 nsubj _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 day _ NOUN NN _ 0 root _ _ 13 that _ PRON WDT _ 14 nsubj _ _ 14 started _ VERB VBD _ 12 acl:relcl _ _ 15 nervously _ ADV RB _ 14 advmod _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 small _ ADJ JJ _ 19 amod _ _ 19 hours _ NOUN NNS _ 14 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 lunchtime _ NOUN NN _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 selling _ NOUN NN _ 9 nsubj _ _ 6 was _ VERB VBD _ 9 cop _ _ 7 at _ ADP IN _ 9 case _ _ 8 near-panic _ ADJ JJ _ 9 amod _ _ 9 fever _ NOUN NN _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 as _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 day _ NOUN NN _ 5 nsubj _ _ 5 ended _ VERB VBD _ 15 advcl _ _ 6 in _ ADP IN _ 11 case _ _ 7 a _ DET DT _ 11 det _ _ 8 frantic _ ADJ JJ _ 11 amod _ _ 9 Wall _ PROPN NNP _ 11 compound _ _ 10 Street-inspired _ ADJ JJ _ 11 amod _ _ 11 rally _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 City _ PROPN NNP _ 15 nsubj _ _ 15 breathed _ VERB VBD _ 0 root _ _ 16 a _ DET DT _ 17 det _ _ 17 sigh _ NOUN NN _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 relief _ NOUN NN _ 17 nmod _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 So _ ADP IN _ 3 dep _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 went _ VERB VBD _ 0 root _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 rooms _ NOUN NNS _ 3 nmod _ _ 9 of _ ADP IN _ 13 case _ _ 10 London _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 financial _ ADJ JJ _ 13 amod _ _ 13 district _ NOUN NN _ 8 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 wake _ NOUN NN _ 16 nmod _ _ 4 of _ ADP IN _ 8 case _ _ 5 Wall _ PROPN NNP _ 6 compound _ _ 6 Street _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 plunge _ NOUN NN _ 3 nmod _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 Friday _ PROPN NNP _ 8 nmod:tmod _ _ 11 , _ PUNCT , _ 16 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 London _ PROPN NNP _ 14 compound _ _ 14 market _ NOUN NN _ 16 nsubjpass _ _ 15 was _ AUX VBD _ 16 auxpass _ _ 16 considered _ VERB VBN _ 0 root _ _ 17 especially _ ADV RB _ 18 advmod _ _ 18 vulnerable _ ADJ JJ _ 16 xcomp _ _ 19 . _ PUNCT . _ 16 punct _ _ 1 And _ CONJ CC _ 15 cc _ _ 2 before _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 opening _ NOUN NN _ 15 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 trading _ NOUN NN _ 4 nmod _ _ 7 here _ ADV RB _ 4 advmod _ _ 8 yesterday _ NOUN NN _ 4 nmod:tmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 all _ DET DT _ 11 det _ _ 11 eyes _ NOUN NNS _ 15 nsubj _ _ 12 were _ VERB VBD _ 15 cop _ _ 13 on _ ADP IN _ 15 case _ _ 14 early _ ADJ JJ _ 15 amod _ _ 15 trading _ NOUN NN _ 0 root _ _ 16 in _ ADP IN _ 17 case _ _ 17 Tokyo _ PROPN NNP _ 15 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 clue _ NOUN NN _ 15 nmod _ _ 21 as _ ADP IN _ 28 case _ _ 22 to _ ADP TO _ 28 mark _ _ 23 how _ ADV WRB _ 24 advmod _ _ 24 widespread _ ADJ JJ _ 28 dep _ _ 25 the _ DET DT _ 26 det _ _ 26 fallout _ NOUN NN _ 28 nsubj _ _ 27 might _ AUX MD _ 28 aux _ _ 28 be _ VERB VB _ 20 acl _ _ 29 . _ PUNCT . _ 15 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 17 nmod _ _ 4 trading _ NOUN NN _ 6 nsubj _ _ 5 officially _ ADV RB _ 6 advmod _ _ 6 got _ VERB VBD _ 3 acl:relcl _ _ 7 under _ ADP IN _ 8 case _ _ 8 way _ NOUN NN _ 6 nmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 9 _ NUM CD _ 11 nummod _ _ 11 a.m. _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 news _ NOUN NN _ 17 nsubj _ _ 15 from _ ADP IN _ 16 case _ _ 16 Asia _ PROPN NNP _ 14 nmod _ _ 17 was _ VERB VBD _ 0 root _ _ 18 in _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 17 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 left _ VERB VBD _ 0 root _ _ 4 mixed _ ADJ JJ _ 5 amod _ _ 5 signals _ NOUN NNS _ 3 dobj _ _ 6 for _ ADP IN _ 7 case _ _ 7 London _ PROPN NNP _ 3 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Tokyo _ PROPN NNP _ 2 compound _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 closed _ VERB VBN _ 0 root _ _ 4 off _ ADJ JJ _ 3 advmod _ _ 5 a _ DET DT _ 10 det _ _ 6 significant _ ADJ JJ _ 10 amod _ _ 7 but _ CONJ CC _ 6 cc _ _ 8 less-than-alarming _ ADJ JJ _ 6 conj _ _ 9 1.8 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 4 dep _ _ 11 on _ ADP IN _ 13 case _ _ 12 thin _ ADJ JJ _ 13 amod _ _ 13 volume _ NOUN NN _ 4 nmod _ _ 14 ; _ PUNCT : _ 3 punct _ _ 15 Hong _ PROPN NNP _ 17 compound _ _ 16 Kong _ PROPN NNP _ 17 compound _ _ 17 stocks _ NOUN NNS _ 18 nsubj _ _ 18 declined _ VERB VBD _ 3 parataxis _ _ 19 6.5 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 in _ ADP IN _ 23 case _ _ 22 orderly _ ADJ JJ _ 23 amod _ _ 23 trading _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 5 case _ _ 2 Jefferies _ PROPN NNP _ 5 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 trading _ VERB VBG _ 5 amod _ _ 5 room _ NOUN NN _ 24 nmod _ _ 6 on _ ADP IN _ 8 case _ _ 7 Finsbury _ PROPN NNP _ 8 compound _ _ 8 Circus _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 a _ DET DT _ 12 det _ _ 11 stately _ ADJ JJ _ 12 amod _ _ 12 circle _ NOUN NN _ 8 appos _ _ 13 at _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 edge _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 financial _ ADJ JJ _ 19 amod _ _ 19 district _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 desktop _ NOUN NN _ 23 compound _ _ 22 computer _ NOUN NN _ 23 compound _ _ 23 screens _ NOUN NNS _ 24 nsubj _ _ 24 displayed _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 27 det _ _ 26 London _ PROPN NNP _ 27 compound _ _ 27 market _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 major _ ADJ JJ _ 30 amod _ _ 30 barometer _ NOUN NN _ 24 dobj _ _ 31 -- _ PUNCT : _ 30 punct _ _ 32 the _ DET DT _ 38 det _ _ 33 Financial _ PROPN NNP _ 38 compound _ _ 34 Times-Stock _ PROPN NNP _ 38 compound _ _ 35 Exchange _ PROPN NNP _ 38 compound _ _ 36 100 _ NUM CD _ 38 nummod _ _ 37 Share _ PROPN NNP _ 38 compound _ _ 38 Index _ PROPN NNP _ 30 dep _ _ 39 . _ PUNCT . _ 24 punct _ _ 1 Red _ ADJ JJ _ 2 amod _ _ 2 figures _ NOUN NNS _ 6 nsubj _ _ 3 on _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 screens _ NOUN NNS _ 2 nmod _ _ 6 indicated _ VERB VBD _ 0 root _ _ 7 falling _ VERB VBG _ 8 amod _ _ 8 stocks _ NOUN NNS _ 6 dobj _ _ 9 ; _ PUNCT : _ 6 punct _ _ 10 blue _ ADJ JJ _ 11 amod _ _ 11 figures _ NOUN NNS _ 14 dep _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 rising _ VERB VBG _ 14 amod _ _ 14 stocks _ NOUN NNS _ 6 parataxis _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Right _ ADV RB _ 2 advmod _ _ 2 away _ ADV RB _ 6 advmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 reds _ NOUN NNS _ 6 nsubj _ _ 6 outnumbered _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 blues _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 80 _ NUM CD _ 12 dep _ _ 11 to _ ADP TO _ 12 dep _ _ 12 20 _ NUM CD _ 6 advmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 as _ SCONJ IN _ 17 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 index _ NOUN NN _ 17 nsubj _ _ 17 opened _ VERB VBD _ 6 advcl _ _ 18 at _ ADP IN _ 19 case _ _ 19 2076.8 _ NUM CD _ 17 nmod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 off _ ADP IN _ 23 case _ _ 22 157.1 _ NUM CD _ 23 nummod _ _ 23 points _ NOUN NNS _ 17 advmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 or _ CONJ CC _ 23 cc _ _ 26 7 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 23 conj _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 see _ VERB VBP _ 15 ccomp _ _ 4 concern _ NOUN NN _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 but _ CONJ CC _ 3 cc _ _ 7 I _ PRON PRP _ 10 nsubj _ _ 8 do _ AUX VBP _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 see _ VERB VB _ 3 conj _ _ 11 any _ DET DT _ 12 det _ _ 12 panic _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Palamara _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 25 det _ _ 20 big _ ADJ JJ _ 25 amod _ _ 21 , _ PUNCT , _ 25 punct _ _ 22 good-humored _ ADJ JJ _ 25 amod _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 native _ NOUN NN _ 17 appos _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 runs _ VERB VBZ _ 25 acl:relcl _ _ 28 the _ DET DT _ 30 det _ _ 29 15-trader _ ADJ JJ _ 30 amod _ _ 30 office _ NOUN NN _ 27 dobj _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Jefferies _ PROPN NNP _ 3 compound _ _ 3 office _ NOUN NN _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 branch _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 Los _ PROPN NNP _ 11 compound _ _ 10 Angeles-based _ ADJ JJ _ 11 amod _ _ 11 firm _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 played _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 13 dobj _ _ 15 conservatively _ ADV RB _ 13 advmod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 seeking _ VERB VBG _ 13 advcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 avoid _ VERB VB _ 17 xcomp _ _ 20 risk _ NOUN NN _ 19 dobj _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 not _ PART RB _ 6 neg _ _ 5 the _ DET DT _ 6 det _ _ 6 sort _ NOUN NN _ 17 ccomp _ _ 7 of _ ADP IN _ 8 case _ _ 8 market _ NOUN NN _ 6 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 have _ VERB VB _ 6 acl _ _ 11 a _ DET DT _ 13 det _ _ 12 big _ ADJ JJ _ 13 amod _ _ 13 position _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 10 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 David _ PROPN NNP _ 19 compound _ _ 19 Smith _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 heads _ VERB VBZ _ 19 acl:relcl _ _ 23 trading _ NOUN NN _ 22 dobj _ _ 24 in _ ADP IN _ 27 case _ _ 25 all _ DET DT _ 27 det _ _ 26 non-U.S. _ ADJ JJ _ 27 amod _ _ 27 stocks _ NOUN NNS _ 23 nmod _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 tend _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 run _ VERB VB _ 3 xcomp _ _ 6 a _ DET DT _ 9 det _ _ 7 very _ ADV RB _ 8 advmod _ _ 8 tight _ ADJ JJ _ 9 amod _ _ 9 book _ NOUN NN _ 5 dobj _ _ 10 . _ PUNCT . _ 3 punct _ _ 11 '' _ PUNCT '' _ 3 punct _ _ 1 Jefferies _ PROPN NNP _ 2 nsubj _ _ 2 spent _ VERB VBD _ 0 root _ _ 3 most _ ADJ JJS _ 2 dobj _ _ 4 of _ ADP IN _ 6 case _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 energies _ NOUN NNS _ 3 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 morning _ NOUN NN _ 2 nmod _ _ 10 trying _ VERB VBG _ 2 xcomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 match _ VERB VB _ 10 xcomp _ _ 13 buyers _ NOUN NNS _ 12 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 sellers _ NOUN NNS _ 13 conj _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 and _ CONJ CC _ 2 cc _ _ 18 there _ PRON EX _ 19 expl _ _ 19 were _ VERB VBD _ 2 conj _ _ 20 n't _ PART RB _ 19 neg _ _ 21 many _ ADJ JJ _ 22 amod _ _ 22 buyers _ NOUN NNS _ 19 nsubj _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 All _ DET DT _ 5 det:predet _ _ 3 the _ DET DT _ 5 det _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 stocks _ NOUN NNS _ 19 nsubjpass _ _ 6 -- _ PUNCT : _ 5 punct _ _ 7 Scottish _ PROPN NNP _ 5 dep _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Newcastle _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 B.A.T _ PROPN NNP _ 7 appos _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 DRG _ PROPN NNP _ 7 appos _ _ 14 -- _ PUNCT : _ 5 punct _ _ 15 are _ AUX VBP _ 19 aux _ _ 16 getting _ AUX VBG _ 19 auxpass _ _ 17 pretty _ ADV RB _ 18 advmod _ _ 18 well _ ADV RB _ 19 advmod _ _ 19 pasted _ VERB VBN _ 26 ccomp _ _ 20 this _ DET DT _ 21 det _ _ 21 morning _ NOUN NN _ 19 nmod:tmod _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 '' _ PUNCT '' _ 26 punct _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Smith _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Seconds _ NOUN NNS _ 2 nmod:npmod _ _ 2 later _ ADV RBR _ 14 advmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 a _ DET DT _ 9 det _ _ 5 7,500-share _ ADJ JJ _ 9 amod _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 sell _ NOUN NN _ 9 compound _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 order _ NOUN NN _ 14 nsubj _ _ 10 for _ ADP IN _ 11 case _ _ 11 Scottish _ PROPN NNP _ 9 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Newcastle _ PROPN NNP _ 11 conj _ _ 14 came _ VERB VBD _ 0 root _ _ 15 in _ ADP RP _ 14 compound:prt _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 15 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 15 _ NUM CD _ 7 nummod _ _ 7 minutes _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 15 punct _ _ 9 a _ DET DT _ 10 det _ _ 10 trader _ NOUN NN _ 15 nsubj _ _ 11 next _ ADJ JJ _ 10 advmod _ _ 12 to _ ADP TO _ 14 case _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Smith _ PROPN NNP _ 11 nmod _ _ 15 left _ VERB VBD _ 0 root _ _ 16 the _ DET DT _ 18 det _ _ 17 no-smoking _ ADJ JJ _ 18 amod _ _ 18 area _ NOUN NN _ 15 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 have _ VERB VB _ 15 advcl _ _ 21 a _ DET DT _ 22 det _ _ 22 cigarette _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 15 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 screens _ NOUN NNS _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 only _ ADV RB _ 9 advmod _ _ 6 two _ NUM CD _ 9 nummod _ _ 7 forlorn _ ADJ JJ _ 9 amod _ _ 8 blue _ ADJ JJ _ 9 amod _ _ 9 figures _ NOUN NNS _ 10 nsubj _ _ 10 remained _ VERB VBD _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 but _ CONJ CC _ 10 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 index _ NOUN NN _ 16 nsubj _ _ 15 had _ AUX VBD _ 16 aux _ _ 16 recovered _ VERB VBN _ 10 conj _ _ 17 a _ DET DT _ 19 det _ _ 18 few _ ADJ JJ _ 19 amod _ _ 19 points _ NOUN NNS _ 16 dobj _ _ 20 and _ CONJ CC _ 16 cc _ _ 21 was _ VERB VBD _ 16 conj _ _ 22 off _ ADV RB _ 21 advmod _ _ 23 about _ ADV RB _ 24 advmod _ _ 24 140 _ NUM CD _ 22 nmod:npmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 Because _ SCONJ IN _ 6 mark _ _ 3 Tokyo _ PROPN NNP _ 6 nsubj _ _ 4 did _ AUX VBD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 collapse _ VERB VB _ 8 advcl _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 let _ VERB VB _ 19 ccomp _ _ 9 's _ PART POS _ 10 nsubj _ _ 10 pick _ VERB VB _ 8 ccomp _ _ 11 up _ ADP RP _ 10 compound:prt _ _ 12 a _ DET DT _ 14 det _ _ 13 little _ ADJ JJ _ 14 amod _ _ 14 stock _ NOUN NN _ 10 dobj _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Smith _ PROPN NNP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 targeted _ VERB VBD _ 0 root _ _ 3 7,500 _ NUM CD _ 4 nummod _ _ 4 shares _ NOUN NNS _ 2 dobj _ _ 5 of _ ADP IN _ 6 case _ _ 6 Reuters _ PROPN NNP _ 4 nmod _ _ 7 and _ CONJ CC _ 2 cc _ _ 8 punched _ VERB VBD _ 2 conj _ _ 9 a _ DET DT _ 10 det _ _ 10 button _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 call _ VERB VB _ 8 advcl _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 on _ ADP IN _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 screen _ NOUN NN _ 12 nmod _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 dealers _ NOUN NNS _ 21 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 price _ NOUN NN _ 21 compound _ _ 21 quotes _ NOUN NNS _ 12 dobj _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 vivid _ ADJ JJ _ 4 amod _ _ 3 yellow _ ADJ JJ _ 4 amod _ _ 4 figures _ NOUN NNS _ 5 nsubj _ _ 5 showed _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 best _ ADJ JJS _ 8 amod _ _ 8 price _ NOUN NN _ 5 dobj _ _ 9 at _ ADP IN _ 11 case _ _ 10 845 _ NUM CD _ 11 nummod _ _ 11 pence _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 13.27 _ NUM CD _ 11 appos _ _ 16 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 17 and _ CONJ CC _ 5 cc _ _ 18 Mr. _ PROPN NNP _ 19 compound _ _ 19 Smith _ PROPN NNP _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 traders _ NOUN NNS _ 22 nsubj _ _ 22 started _ VERB VBD _ 5 conj _ _ 23 putting _ VERB VBG _ 22 xcomp _ _ 24 out _ ADP RP _ 23 compound:prt _ _ 25 feelers _ NOUN NNS _ 23 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 sensed _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 serious _ ADJ JJ _ 7 amod _ _ 7 buyer _ NOUN NN _ 4 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 day _ NOUN NN _ 7 nmod _ _ 11 dominated _ VERB VBN _ 10 acl _ _ 12 by _ ADP IN _ 13 case _ _ 13 selling _ NOUN NN _ 11 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 quotes _ NOUN NNS _ 19 nsubj _ _ 18 immediately _ ADV RB _ 19 advmod _ _ 19 jumped _ VERB VBD _ 4 conj _ _ 20 to _ ADP TO _ 22 case _ _ 21 850 _ NUM CD _ 22 nummod _ _ 22 pence _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 When _ ADV WRB _ 4 advmod _ _ 3 I _ PRON PRP _ 4 nsubj _ _ 4 want _ VERB VBP _ 9 advcl _ _ 5 to _ PART TO _ 6 mark _ _ 6 buy _ VERB VB _ 4 xcomp _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 run _ VERB VBP _ 22 ccomp _ _ 10 from _ ADP IN _ 11 case _ _ 11 you _ PRON PRP _ 9 nmod _ _ 12 -- _ PUNCT : _ 9 punct _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 keep _ VERB VBP _ 9 parataxis _ _ 15 changing _ VERB VBG _ 14 xcomp _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 prices _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 '' _ PUNCT '' _ 22 punct _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Smith _ PROPN NNP _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 very _ ADV RB _ 5 advmod _ _ 5 frustrating _ ADJ JJ _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 temporarily _ ADV RB _ 3 advmod _ _ 3 abandoned _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 search _ NOUN NN _ 3 dobj _ _ 6 for _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Reuters _ PROPN NNP _ 9 compound _ _ 9 shares _ NOUN NNS _ 5 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 was _ VERB VBD _ 8 cop _ _ 7 4:30 _ NUM CD _ 8 nummod _ _ 8 a.m. _ NOUN NN _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 New _ PROPN NNP _ 11 compound _ _ 11 York _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Smith _ PROPN NNP _ 16 nsubj _ _ 16 fielded _ VERB VBD _ 8 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 call _ NOUN NN _ 16 dobj _ _ 19 from _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 New _ PROPN NNP _ 23 compound _ _ 22 York _ PROPN NNP _ 23 compound _ _ 23 customer _ NOUN NN _ 18 nmod _ _ 24 wanting _ VERB VBG _ 23 acl _ _ 25 an _ DET DT _ 26 det _ _ 26 opinion _ NOUN NN _ 24 dobj _ _ 27 on _ ADP IN _ 31 case _ _ 28 the _ DET DT _ 31 det _ _ 29 British _ ADJ JJ _ 31 amod _ _ 30 stock _ NOUN NN _ 31 compound _ _ 31 market _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 which _ PRON WDT _ 36 nsubj _ _ 34 had _ AUX VBD _ 36 aux _ _ 35 been _ AUX VBN _ 36 aux _ _ 36 having _ VERB VBG _ 31 acl:relcl _ _ 37 troubles _ NOUN NNS _ 36 dobj _ _ 38 of _ ADP IN _ 40 case _ _ 39 its _ PRON PRP$ _ 40 nmod:poss _ _ 40 own _ ADJ JJ _ 37 nmod _ _ 41 even _ ADV RB _ 48 advmod _ _ 42 before _ ADP IN _ 48 case _ _ 43 Friday _ PROPN NNP _ 48 nmod:poss _ _ 44 's _ PART POS _ 43 case _ _ 45 New _ PROPN NNP _ 48 compound _ _ 46 York _ PROPN NNP _ 48 compound _ _ 47 market _ NOUN NN _ 48 compound _ _ 48 break _ NOUN NN _ 36 nmod _ _ 49 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 Fundamentally _ ADV RB _ 3 advmod _ _ 3 dangerous _ ADJ JJ _ 0 root _ _ 4 ... _ PUNCT : _ 3 punct _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 '' _ PUNCT '' _ 3 punct _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Smith _ PROPN NNP _ 9 nsubj _ _ 9 said _ VERB VBD _ 3 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 almost _ ADV RB _ 14 advmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 whisper _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 `` _ PUNCT `` _ 3 punct _ _ 17 ... _ PUNCT : _ 3 punct _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 fundamentally _ ADV RB _ 20 advmod _ _ 20 weak _ ADJ JJ _ 3 dep _ _ 21 ... _ PUNCT : _ 20 punct _ _ 22 fairly _ ADV RB _ 23 advmod _ _ 23 vulnerable _ ADJ JJ _ 20 dep _ _ 24 still _ ADV RB _ 23 advmod _ _ 25 ... _ PUNCT : _ 20 punct _ _ 26 extremely _ ADV RB _ 28 advmod _ _ 27 dangerously _ ADV RB _ 28 advmod _ _ 28 poised _ VERB VBN _ 20 dep _ _ 29 ... _ PUNCT : _ 3 punct _ _ 1 we _ PRON PRP _ 6 nsubj _ _ 2 're _ VERB VBP _ 6 cop _ _ 3 in _ ADP IN _ 6 case _ _ 4 for _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 lot _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 turbulence _ NOUN NN _ 6 nmod _ _ 9 ... _ PUNCT : _ 6 punct _ _ 10 . _ PUNCT . _ 6 punct _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 right _ ADJ JJ _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 midday _ NOUN NN _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 London _ PROPN NNP _ 6 compound _ _ 6 market _ NOUN NN _ 10 nsubj _ _ 7 was _ VERB VBD _ 10 cop _ _ 8 in _ ADP IN _ 10 case _ _ 9 full _ ADJ JJ _ 10 amod _ _ 10 retreat _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ AUX VBZ _ 4 aux _ _ 4 falling _ VERB VBG _ 10 ccomp _ _ 5 like _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 stone _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 Danny _ PROPN NNP _ 12 compound _ _ 12 Linger _ PROPN NNP _ 10 nsubj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 16 det _ _ 15 pit _ NOUN NN _ 16 compound _ _ 16 trader _ NOUN NN _ 12 appos _ _ 17 who _ PRON WP _ 19 nsubj _ _ 18 was _ AUX VBD _ 19 aux _ _ 19 standing _ VERB VBG _ 16 acl:relcl _ _ 20 outside _ ADP IN _ 26 case _ _ 21 the _ DET DT _ 26 det _ _ 22 London _ PROPN NNP _ 26 compound _ _ 23 International _ PROPN NNP _ 26 compound _ _ 24 Financial _ PROPN NNP _ 26 compound _ _ 25 Futures _ PROPN NNP _ 26 compound _ _ 26 Exchange _ PROPN NNP _ 19 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 Only _ ADV RB _ 2 advmod _ _ 2 half _ NOUN NN _ 6 nummod _ _ 3 the _ DET DT _ 6 det _ _ 4 usual _ ADJ JJ _ 6 amod _ _ 5 lunchtime _ NOUN NN _ 6 compound _ _ 6 crowd _ NOUN NN _ 7 nsubj _ _ 7 gathered _ VERB VBD _ 0 root _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 tony _ ADJ JJ _ 11 amod _ _ 11 Corney _ PROPN NNP _ 7 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Barrow _ PROPN NNP _ 15 compound _ _ 14 wine _ NOUN NN _ 15 compound _ _ 15 bar _ NOUN NN _ 11 conj _ _ 16 on _ ADP IN _ 19 case _ _ 17 Old _ PROPN NNP _ 19 compound _ _ 18 Broad _ PROPN NNP _ 19 compound _ _ 19 Street _ PROPN NNP _ 11 nmod _ _ 20 nearby _ ADV RB _ 11 advmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Conversation _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 subdued _ ADJ JJ _ 0 root _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 most _ ADJ JJS _ 6 amod _ _ 6 patrons _ NOUN NNS _ 7 nsubj _ _ 7 watched _ VERB VBD _ 3 advcl _ _ 8 the _ DET DT _ 11 det _ _ 9 latest _ ADJ JJS _ 11 amod _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 statistics _ NOUN NNS _ 7 dobj _ _ 12 on _ ADP IN _ 13 case _ _ 13 television _ NOUN NN _ 7 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 12:49 _ NUM CD _ 3 nummod _ _ 3 p.m. _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 index _ NOUN NN _ 7 nsubj _ _ 7 hit _ VERB VBD _ 0 root _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 low _ ADJ JJ _ 7 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 2029.7 _ NUM CD _ 9 amod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 off _ ADP IN _ 15 case _ _ 14 204.2 _ NUM CD _ 15 nummod _ _ 15 points _ NOUN NNS _ 9 advmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 France _ PROPN NNP _ 3 nsubj _ _ 3 opened _ VERB VBD _ 33 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 limit _ NOUN NN _ 3 dobj _ _ 6 down _ ADV RB _ 3 advmod _ _ 7 , _ PUNCT , _ 16 punct _ _ 8 off _ ADP IN _ 12 case _ _ 9 at _ ADP IN _ 10 case _ _ 10 least _ ADJ JJS _ 11 nmod:npmod _ _ 11 10 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 16 dep _ _ 13 if _ SCONJ IN _ 16 mark _ _ 14 you _ PRON PRP _ 16 nsubj _ _ 15 could _ AUX MD _ 16 aux _ _ 16 calculate _ VERB VB _ 3 parataxis _ _ 17 the _ DET DT _ 18 det _ _ 18 index _ NOUN NN _ 16 dobj _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 which _ PRON WDT _ 22 dobj _ _ 21 you _ PRON PRP _ 22 nsubj _ _ 22 could _ AUX MD _ 16 dep _ _ 23 n't _ PART RB _ 22 neg _ _ 24 , _ PUNCT , _ 33 punct _ _ 25 '' _ PUNCT '' _ 33 punct _ _ 26 Mr. _ PROPN NNP _ 27 compound _ _ 27 Clark _ PROPN NNP _ 33 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 the _ DET DT _ 31 det _ _ 30 Shearson _ PROPN NNP _ 31 compound _ _ 31 trader _ NOUN NN _ 27 appos _ _ 32 , _ PUNCT , _ 27 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 early _ ADV RB _ 33 advmod _ _ 35 in _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 afternoon _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 33 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 Spain _ PROPN NNP _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 down _ ADV RB _ 7 advmod _ _ 5 10 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 nmod:npmod _ _ 7 and _ CONJ CC _ 3 advmod _ _ 8 suspended _ VERB VBN _ 7 conj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 Sweden _ PROPN NNP _ 11 nsubj _ _ 11 's _ VERB VBZ _ 3 parataxis _ _ 12 down _ ADV RB _ 11 advmod _ _ 13 8 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 nmod:npmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 Norway _ PROPN NNP _ 18 dep _ _ 17 11 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 11 parataxis _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 7 nsubjpass _ _ 3 has _ AUX VBZ _ 7 aux _ _ 4 been _ AUX VBN _ 7 auxpass _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 badly _ ADV RB _ 7 advmod _ _ 7 damaged _ VERB VBN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 9 '' _ PUNCT '' _ 7 punct _ _ 1 As _ SCONJ IN _ 11 mark _ _ 2 2:30 _ NUM CD _ 3 nummod _ _ 3 p.m. _ NOUN NN _ 11 nsubj _ _ 4 -- _ PUNCT : _ 3 punct _ _ 5 Wall _ PROPN NNP _ 6 compound _ _ 6 Street _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 opening _ VERB VBG _ 9 amod _ _ 9 time _ NOUN NN _ 3 dep _ _ 10 -- _ PUNCT : _ 3 punct _ _ 11 neared _ VERB VBD _ 17 advcl _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 Shearson _ PROPN NNP _ 14 compound _ _ 14 traders _ NOUN NNS _ 17 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 salesmen _ NOUN NNS _ 14 conj _ _ 17 traded _ VERB VBD _ 0 root _ _ 18 bets _ NOUN NNS _ 17 dobj _ _ 19 on _ SCONJ IN _ 27 mark _ _ 20 how _ ADV WRB _ 21 advmod _ _ 21 low _ ADJ JJ _ 27 advmod _ _ 22 the _ DET DT _ 25 det _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 market _ NOUN NN _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 open _ VERB VB _ 18 acl _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 center _ NOUN NN _ 16 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 floor _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 16 punct _ _ 9 chief _ ADJ JJ _ 12 amod _ _ 10 trader _ NOUN NN _ 12 compound _ _ 11 Roger _ PROPN NNP _ 12 compound _ _ 12 Streeter _ PROPN NNP _ 16 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 colleagues _ NOUN NNS _ 12 conj _ _ 16 scrambled _ VERB VBD _ 0 root _ _ 17 for _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 telephones _ NOUN NNS _ 16 nmod _ _ 20 as _ ADV RB _ 21 advmod _ _ 21 soon _ ADV RB _ 16 advmod _ _ 22 as _ SCONJ IN _ 27 mark _ _ 23 the _ DET DT _ 26 det _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 York _ PROPN NNP _ 26 compound _ _ 26 market _ NOUN NN _ 27 nsubj _ _ 27 opened _ VERB VBD _ 21 advcl _ _ 28 -- _ PUNCT : _ 27 punct _ _ 29 plummeting _ VERB VBG _ 27 parataxis _ _ 30 more _ ADV RBR _ 32 advmod _ _ 31 than _ ADP IN _ 30 mwe _ _ 32 60 _ NUM CD _ 33 nummod _ _ 33 points _ NOUN NNS _ 29 dobj _ _ 34 in _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 38 det _ _ 36 first _ ADJ JJ _ 38 amod _ _ 37 few _ ADJ JJ _ 38 amod _ _ 38 minutes _ NOUN NNS _ 29 nmod _ _ 39 . _ PUNCT . _ 16 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 saw _ VERB VBD _ 0 root _ _ 3 an _ DET DT _ 4 det _ _ 4 opportunity _ NOUN NN _ 2 dobj _ _ 5 created _ VERB VBN _ 4 acl _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 sell-off _ NOUN NN _ 5 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 Wall _ PROPN NNP _ 4 compound _ _ 3 Street _ PROPN NNP _ 4 compound _ _ 4 traders _ NOUN NNS _ 5 nsubj _ _ 5 dumped _ VERB VBD _ 19 advcl _ _ 6 American _ PROPN NNP _ 8 compound _ _ 7 Depositary _ PROPN NNP _ 8 compound _ _ 8 Receipts _ PROPN NNP _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 Jaguar _ PROPN NNP _ 11 compound _ _ 11 PLC _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Streeter _ PROPN NNP _ 19 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 trader _ NOUN NN _ 18 compound _ _ 17 Sam _ PROPN NNP _ 18 compound _ _ 18 Ruiz _ PROPN NNP _ 14 conj _ _ 19 bought _ VERB VBD _ 0 root _ _ 20 them _ PRON PRP _ 19 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 resell _ VERB VB _ 19 advcl _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.K _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 Investors _ NOUN NNS _ 4 nsubj _ _ 2 here _ ADV RB _ 1 advmod _ _ 3 still _ ADV RB _ 4 advmod _ _ 4 expect _ VERB VB _ 0 root _ _ 5 Ford _ PROPN NNP _ 7 compound _ _ 6 Motor _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 4 dobj _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 General _ PROPN NNP _ 11 compound _ _ 10 Motors _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 7 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 bid _ VERB VB _ 4 xcomp _ _ 14 for _ ADP IN _ 15 case _ _ 15 Jaguar _ PROPN NNP _ 13 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Suddenly _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 after _ ADP IN _ 6 case _ _ 4 about _ ADV RB _ 5 advmod _ _ 5 45 _ NUM CD _ 6 nummod _ _ 6 minutes _ NOUN NNS _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 U.S. _ PROPN NNP _ 10 compound _ _ 10 markets _ NOUN NNS _ 11 nsubj _ _ 11 rallied _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 MMI _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 gone _ VERB VBN _ 9 ccomp _ _ 6 better _ ADV RBR _ 5 xcomp _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 one _ NUM CD _ 11 nummod _ _ 11 trader _ NOUN NN _ 9 nsubj _ _ 12 at _ ADP IN _ 16 case _ _ 13 about _ ADV RB _ 16 advmod _ _ 14 3:15 _ NUM CD _ 16 nummod _ _ 15 London _ PROPN NNP _ 16 compound _ _ 16 time _ NOUN NN _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 as _ SCONJ IN _ 26 mark _ _ 19 the _ DET DT _ 24 det _ _ 20 U.S. _ PROPN NNP _ 24 compound _ _ 21 Major _ PROPN NNP _ 24 compound _ _ 22 Markets _ PROPN NNP _ 24 compound _ _ 23 Index _ PROPN NNP _ 24 compound _ _ 24 contract _ NOUN NN _ 26 nsubj _ _ 25 suddenly _ ADV RB _ 26 advmod _ _ 26 indicated _ VERB VBD _ 9 dep _ _ 27 a _ DET DT _ 28 det _ _ 28 turnabout _ NOUN NN _ 26 dobj _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 Wall _ PROPN NNP _ 3 compound _ _ 3 Street _ PROPN NNP _ 4 nsubj _ _ 4 strengthened _ VERB VBD _ 10 advcl _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 London _ PROPN NNP _ 9 compound _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 room _ NOUN NN _ 10 nsubj _ _ 10 went _ VERB VBD _ 0 root _ _ 11 wild _ ADJ JJ _ 10 xcomp _ _ 12 . _ PUNCT . _ 10 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 shouted _ VERB VBD _ 0 root _ _ 3 as _ SCONJ IN _ 6 mark _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 screens _ NOUN NNS _ 6 nsubj _ _ 6 posted _ VERB VBD _ 2 advcl _ _ 7 an _ DET DT _ 9 det _ _ 8 ever-narrowing _ ADJ JJ _ 9 amod _ _ 9 loss _ NOUN NN _ 6 dobj _ _ 10 on _ ADP IN _ 12 case _ _ 11 Wall _ PROPN NNP _ 12 compound _ _ 12 Street _ PROPN NNP _ 9 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Then _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 minutes _ NOUN NNS _ 5 nmod:npmod _ _ 5 later _ ADV RBR _ 10 advmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 10 nsubj _ _ 9 suddenly _ ADV RB _ 10 advmod _ _ 10 rebounded _ VERB VBD _ 0 root _ _ 11 to _ ADP TO _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 gain _ NOUN NN _ 10 nmod _ _ 14 on _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Rally _ NOUN NN _ 9 dep _ _ 3 ! _ PUNCT . _ 2 punct _ _ 4 Rally _ NOUN NN _ 2 dep _ _ 5 ! _ PUNCT . _ 4 punct _ _ 6 Rally _ NOUN NN _ 2 dep _ _ 7 ! _ PUNCT . _ 6 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 Shearson _ PROPN NNP _ 13 compound _ _ 11 trader _ NOUN NN _ 13 compound _ _ 12 Andy _ PROPN NNP _ 13 compound _ _ 13 Rosen _ PROPN NNP _ 9 nsubj _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 selling _ VERB VBG _ 9 advcl _ _ 16 more _ ADJ JJR _ 18 amod _ _ 17 Jaguar _ PROPN NNP _ 18 compound _ _ 18 shares _ NOUN NNS _ 15 dobj _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 This _ PRON DT _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 panic _ NOUN NN _ 5 compound _ _ 5 buying _ NOUN NN _ 0 root _ _ 6 ! _ PUNCT . _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 London _ PROPN NNP _ 4 compound _ _ 4 market _ NOUN NN _ 5 nsubj _ _ 5 rallied _ VERB VBD _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 some _ DET DT _ 8 nsubj _ _ 8 wondered _ VERB VBD _ 0 root _ _ 9 whether _ SCONJ IN _ 19 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 weekend _ NOUN NN _ 19 nsubj _ _ 12 of _ ADP IN _ 13 case _ _ 13 worrying _ VERB VBG _ 11 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 jitters _ NOUN NNS _ 13 conj _ _ 16 had _ AUX VBD _ 19 aux _ _ 17 been _ VERB VBN _ 19 cop _ _ 18 worth _ ADJ JJ _ 19 case _ _ 19 it _ PRON PRP _ 8 ccomp _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 London _ PROPN NNP _ 3 compound _ _ 3 index _ NOUN NN _ 4 nsubj _ _ 4 closed _ VERB VBD _ 0 root _ _ 5 at _ ADP IN _ 6 case _ _ 6 2163.4 _ NUM CD _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 high _ NOUN NN _ 6 appos _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 day _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 off _ ADP IN _ 15 case _ _ 15 70.5 _ NUM CD _ 4 advmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 or _ CONJ CC _ 15 cc _ _ 18 about _ ADV RB _ 19 advmod _ _ 19 3.3 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 15 conj _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 Ambassador _ PROPN NNP _ 3 compound _ _ 2 Paul _ PROPN NNP _ 3 compound _ _ 3 Nitze _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 statement _ NOUN NN _ 53 nsubj _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 Notable _ PROPN NNP _ 5 dep _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Quotable _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 Sept. _ PROPN NNP _ 7 nmod:tmod _ _ 12 20 _ NUM CD _ 11 nummod _ _ 13 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 `` _ PUNCT `` _ 7 punct _ _ 16 If _ SCONJ IN _ 18 mark _ _ 17 you _ PRON PRP _ 18 nsubj _ _ 18 have _ VERB VBP _ 40 advcl _ _ 19 a _ DET DT _ 21 det _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 people _ NOUN NNS _ 18 dobj _ _ 22 working _ VERB VBG _ 21 acl _ _ 23 for _ ADP IN _ 24 case _ _ 24 you _ PRON PRP _ 22 nmod _ _ 25 , _ PUNCT , _ 40 punct _ _ 26 every _ DET DT _ 28 det _ _ 27 bad _ ADJ JJ _ 28 amod _ _ 28 thing _ NOUN NN _ 40 nsubj _ _ 29 that _ PRON WDT _ 30 nsubj _ _ 30 has _ VERB VBZ _ 28 acl:relcl _ _ 31 one _ NUM CD _ 32 nummod _ _ 32 chance _ NOUN NN _ 30 dobj _ _ 33 in _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 million _ NUM CD _ 32 nmod _ _ 36 of _ SCONJ IN _ 37 mark _ _ 37 going _ VERB VBG _ 32 acl _ _ 38 wrong _ NOUN NN _ 37 advmod _ _ 39 will _ AUX MD _ 40 aux _ _ 40 go _ VERB VB _ 5 dep _ _ 41 wrong _ ADJ JJ _ 40 advmod _ _ 42 at _ ADP IN _ 46 advmod _ _ 43 least _ ADJ JJS _ 42 mwe _ _ 44 once _ ADP IN _ 46 case _ _ 45 a _ DET DT _ 46 det _ _ 46 year _ NOUN NN _ 40 advmod _ _ 47 , _ PUNCT , _ 5 punct _ _ 48 '' _ PUNCT '' _ 5 punct _ _ 49 is _ VERB VBZ _ 53 cop _ _ 50 a _ DET DT _ 53 det _ _ 51 pretty _ ADV RB _ 52 advmod _ _ 52 negative _ ADJ JJ _ 53 amod _ _ 53 way _ NOUN NN _ 0 root _ _ 54 of _ SCONJ IN _ 55 mark _ _ 55 looking _ VERB VBG _ 53 acl _ _ 56 at _ ADP IN _ 57 case _ _ 57 things _ NOUN NNS _ 55 nmod _ _ 58 . _ PUNCT . _ 53 punct _ _ 1 Is _ VERB VBZ _ 6 cop _ _ 2 n't _ PART RB _ 6 neg _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 just _ ADV RB _ 6 advmod _ _ 5 as _ ADV RB _ 6 advmod _ _ 6 fair _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 say _ VERB VB _ 6 dep _ _ 9 that _ SCONJ IN _ 34 mark _ _ 10 if _ SCONJ IN _ 12 mark _ _ 11 you _ PRON PRP _ 12 nsubj _ _ 12 have _ VERB VBP _ 34 advcl _ _ 13 a _ DET DT _ 15 det _ _ 14 million _ NUM CD _ 15 nummod _ _ 15 people _ NOUN NNS _ 12 dobj _ _ 16 working _ VERB VBG _ 15 acl _ _ 17 for _ ADP IN _ 18 case _ _ 18 you _ PRON PRP _ 16 nmod _ _ 19 , _ PUNCT , _ 34 punct _ _ 20 every _ DET DT _ 22 det _ _ 21 good _ ADJ JJ _ 22 amod _ _ 22 thing _ NOUN NN _ 34 nsubj _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 has _ VERB VBZ _ 22 acl:relcl _ _ 25 one _ NUM CD _ 26 nummod _ _ 26 chance _ NOUN NN _ 24 dobj _ _ 27 in _ ADP IN _ 29 case _ _ 28 a _ DET DT _ 29 det _ _ 29 million _ NUM CD _ 26 nmod _ _ 30 of _ SCONJ IN _ 31 mark _ _ 31 going _ VERB VBG _ 26 acl _ _ 32 right _ NOUN NN _ 31 advmod _ _ 33 will _ AUX MD _ 34 aux _ _ 34 go _ VERB VB _ 8 ccomp _ _ 35 right _ ADV RB _ 34 advmod _ _ 36 at _ ADP IN _ 40 advmod _ _ 37 least _ ADJ JJS _ 36 mwe _ _ 38 once _ ADP IN _ 40 case _ _ 39 a _ DET DT _ 40 det _ _ 40 year _ NOUN NN _ 34 advmod _ _ 41 ? _ PUNCT . _ 6 punct _ _ 1 Do _ AUX VBP _ 6 aux _ _ 2 n't _ PART RB _ 6 neg _ _ 3 be _ VERB VB _ 6 cop _ _ 4 such _ ADJ JJ _ 6 amod _ _ 5 a _ DET DT _ 6 det _ _ 6 pessimist _ NOUN NN _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Ambassador _ PROPN NNP _ 6 dep _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 Frank _ PROPN NNP _ 2 compound _ _ 2 Tremdine _ PROPN NNP _ 0 root _ _ 1 The _ DET DT _ 4 det _ _ 2 House _ PROPN NNP _ 4 compound _ _ 3 Aviation _ PROPN NNP _ 4 compound _ _ 4 Subcommittee _ PROPN NNP _ 5 nsubj _ _ 5 approved _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 bill _ NOUN NN _ 5 dobj _ _ 8 that _ PRON WDT _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 give _ VERB VB _ 7 acl:relcl _ _ 11 the _ DET DT _ 13 det _ _ 12 transportation _ NOUN NN _ 13 compound _ _ 13 secretary _ NOUN NN _ 10 iobj _ _ 14 authority _ NOUN NN _ 10 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 review _ VERB VB _ 14 acl _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 approve _ VERB VB _ 16 conj _ _ 19 leveraged _ VERB VBN _ 20 amod _ _ 20 buy-outs _ NOUN NNS _ 16 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 major _ ADJ JJ _ 24 amod _ _ 23 U.S. _ PROPN NNP _ 24 compound _ _ 24 airlines _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 collapsed _ VERB VBN _ 3 amod _ _ 3 plan _ NOUN NN _ 14 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 acquire _ VERB VB _ 3 acl _ _ 6 UAL _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 5 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 parent _ NOUN NN _ 7 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 United _ PROPN NNP _ 12 compound _ _ 12 Airlines _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 spurred _ VERB VBD _ 0 root _ _ 15 quick _ ADJ JJ _ 16 amod _ _ 16 action _ NOUN NN _ 14 dobj _ _ 17 on _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 legislation _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 introduced _ VERB VBD _ 19 dep _ _ 22 Wednesday _ PROPN NNP _ 21 nmod:tmod _ _ 23 and _ CONJ CC _ 21 cc _ _ 24 approved _ VERB VBD _ 21 conj _ _ 25 by _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 subcommittee _ NOUN NN _ 24 nmod _ _ 28 on _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 voice _ NOUN NN _ 31 compound _ _ 31 vote _ NOUN NN _ 24 nmod _ _ 32 yesterday _ NOUN NN _ 24 nmod:tmod _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 taken _ VERB VBN _ 4 xcomp _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 by _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Public _ PROPN NNP _ 12 compound _ _ 12 Works _ PROPN NNP _ 7 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Transportation _ PROPN NNP _ 15 compound _ _ 15 Committee _ PROPN NNP _ 12 conj _ _ 16 tomorrow _ NOUN NN _ 7 nmod:tmod _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 and _ CONJ CC _ 4 cc _ _ 19 a _ DET DT _ 21 det _ _ 20 floor _ NOUN NN _ 21 compound _ _ 21 vote _ NOUN NN _ 27 nsubjpass _ _ 22 by _ ADP IN _ 24 case _ _ 23 next _ ADJ JJ _ 24 amod _ _ 24 week _ NOUN NN _ 21 nmod _ _ 25 will _ AUX MD _ 27 aux _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 urged _ VERB VBN _ 4 conj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 3 nsubj _ _ 3 drew _ VERB VBD _ 0 root _ _ 4 criticism _ NOUN NN _ 3 dobj _ _ 5 from _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Bush _ PROPN NNP _ 8 compound _ _ 8 administration _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 a _ DET DT _ 12 det _ _ 11 parting _ VERB VBG _ 12 amod _ _ 12 shot _ NOUN NN _ 4 conj _ _ 13 from _ ADP IN _ 16 case _ _ 14 financier _ NOUN NN _ 16 compound _ _ 15 Donald _ PROPN NNP _ 16 compound _ _ 16 Trump _ PROPN NNP _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 who _ PRON WP _ 20 nsubj _ _ 19 yesterday _ NOUN NN _ 20 dep _ _ 20 withdrew _ VERB VBD _ 16 acl:relcl _ _ 21 his _ PRON PRP$ _ 23 nmod:poss _ _ 22 takeover _ NOUN NN _ 23 compound _ _ 23 bid _ NOUN NN _ 20 dobj _ _ 24 for _ ADP IN _ 26 case _ _ 25 AMR _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 23 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 parent _ NOUN NN _ 26 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 American _ PROPN NNP _ 32 compound _ _ 32 Airlines _ PROPN NNP _ 29 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 letter _ NOUN NN _ 17 nmod _ _ 4 to _ ADP TO _ 8 case _ _ 5 subcommittee _ NOUN NN _ 8 compound _ _ 6 Chairman _ PROPN NNP _ 8 compound _ _ 7 James _ PROPN NNP _ 8 compound _ _ 8 Oberstar _ PROPN NNP _ 3 nmod _ _ 9 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 10 D. _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Minn. _ PROPN NNP _ 10 dep _ _ 13 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Trump _ PROPN NNP _ 17 nsubj _ _ 17 criticized _ VERB VBD _ 0 root _ _ 18 the _ DET DT _ 19 det _ _ 19 bill _ NOUN NN _ 17 dobj _ _ 20 as _ ADP IN _ 23 case _ _ 21 an _ DET DT _ 23 det _ _ 22 explicit _ ADJ JJ _ 23 amod _ _ 23 effort _ NOUN NN _ 17 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 thwart _ VERB VB _ 23 acl _ _ 26 his _ PRON PRP$ _ 27 nmod:poss _ _ 27 bid _ NOUN NN _ 25 dobj _ _ 28 for _ ADP IN _ 29 case _ _ 29 AMR _ PROPN NNP _ 27 nmod _ _ 30 , _ PUNCT , _ 17 punct _ _ 31 and _ CONJ CC _ 17 cc _ _ 32 said _ VERB VBD _ 17 conj _ _ 33 it _ PRON PRP _ 34 nsubj _ _ 34 contributed _ VERB VBD _ 32 ccomp _ _ 35 to _ ADP TO _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 collapse _ NOUN NN _ 34 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 deal _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 17 punct _ _ 1 Elaine _ PROPN NNP _ 2 compound _ _ 2 Chao _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 deputy _ NOUN NN _ 6 compound _ _ 5 transportation _ NOUN NN _ 6 compound _ _ 6 secretary _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 also _ ADV RB _ 9 advmod _ _ 9 sent _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 letter _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 express _ VERB VB _ 11 acl _ _ 14 the _ DET DT _ 15 det _ _ 15 administration _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 opposition _ NOUN NN _ 13 dobj _ _ 18 to _ ADP TO _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 bill _ NOUN NN _ 17 nmod _ _ 21 `` _ PUNCT `` _ 20 punct _ _ 22 in _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 present _ ADJ JJ _ 25 amod _ _ 25 form _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 9 punct _ _ 27 '' _ PUNCT '' _ 9 punct _ _ 1 Rep. _ PROPN NNP _ 2 compound _ _ 2 Oberstar _ PROPN NNP _ 3 nsubj _ _ 3 brushed _ VERB VBD _ 0 root _ _ 4 off _ ADP RP _ 3 compound:prt _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Trump _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 allegations _ NOUN NNS _ 3 dobj _ _ 9 as _ ADP IN _ 12 case _ _ 10 an _ DET DT _ 12 det _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 excuse _ NOUN NN _ 3 nmod _ _ 13 for _ SCONJ IN _ 17 mark _ _ 14 his _ PRON PRP$ _ 16 nmod:poss _ _ 15 own _ ADJ JJ _ 16 amod _ _ 16 deal _ NOUN NN _ 17 nsubj _ _ 17 failing _ VERB VBG _ 12 acl _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 fact _ NOUN NN _ 18 nsubj _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 other _ ADJ JJ _ 9 amod _ _ 9 letter _ NOUN NN _ 12 nsubj _ _ 10 had _ AUX VBD _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 come _ VERB VBN _ 5 ccomp _ _ 13 from _ ADP IN _ 17 case _ _ 14 Transportation _ PROPN NNP _ 17 compound _ _ 15 Secretary _ PROPN NNP _ 17 compound _ _ 16 Samuel _ PROPN NNP _ 17 compound _ _ 17 Skinner _ PROPN NNP _ 12 nmod _ _ 18 indicated _ VERB VBD _ 3 ccomp _ _ 19 there _ PRON EX _ 20 expl _ _ 20 is _ VERB VBZ _ 18 ccomp _ _ 21 `` _ PUNCT `` _ 20 punct _ _ 22 wiggle _ NOUN NN _ 23 compound _ _ 23 room _ NOUN NN _ 20 nsubj _ _ 24 '' _ PUNCT '' _ 20 punct _ _ 25 in _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 27 det _ _ 27 administration _ NOUN NN _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 position _ NOUN NN _ 20 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Oberstar _ PROPN NNP _ 8 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 other _ ADJ JJ _ 6 amod _ _ 5 committee _ NOUN NN _ 6 compound _ _ 6 members _ NOUN NNS _ 2 conj _ _ 7 repeatedly _ ADV RB _ 8 advmod _ _ 8 stressed _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 legislation _ NOUN NN _ 15 nsubj _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 n't _ PART RB _ 15 neg _ _ 14 a _ DET DT _ 15 det _ _ 15 response _ NOUN NN _ 8 ccomp _ _ 16 to _ ADP TO _ 20 case _ _ 17 any _ DET DT _ 20 det _ _ 18 particular _ ADJ JJ _ 20 amod _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 situation _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 cited _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 8 det _ _ 5 UAL _ PROPN NNP _ 8 compound _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 AMR _ PROPN NNP _ 5 conj _ _ 8 examples _ NOUN NNS _ 3 dobj _ _ 9 as _ ADP IN _ 10 case _ _ 10 reasons _ NOUN NNS _ 3 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 move _ VERB VB _ 10 acl _ _ 13 quickly _ ADV RB _ 12 advmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 enact _ VERB VB _ 12 xcomp _ _ 16 this _ DET DT _ 17 det _ _ 17 legislation _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Aides _ NOUN NNS _ 8 nsubj _ _ 2 both _ DET DT _ 5 dep _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 House _ PROPN NNP _ 1 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Senate _ PROPN NNP _ 5 conj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 withdrawal _ NOUN NN _ 19 nsubj _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Trump _ PROPN NNP _ 14 compound _ _ 14 bid _ NOUN NN _ 10 nmod _ _ 15 for _ ADP IN _ 16 case _ _ 16 AMR _ PROPN NNP _ 14 nmod _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 likely _ ADJ JJ _ 8 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 deflate _ VERB VB _ 19 xcomp _ _ 22 efforts _ NOUN NNS _ 21 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 push _ VERB VB _ 22 acl _ _ 25 the _ DET DT _ 26 det _ _ 26 legislation _ NOUN NN _ 24 dobj _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 It _ PRON PRP _ 8 nsubj _ _ 3 's _ VERB VBZ _ 8 cop _ _ 4 still _ ADV RB _ 8 advmod _ _ 5 on _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 fast _ ADJ JJ _ 8 amod _ _ 8 track _ NOUN NN _ 18 ccomp _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 we _ PRON PRP _ 12 nsubj _ _ 11 still _ ADV RB _ 12 advmod _ _ 12 want _ VERB VBP _ 8 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 do _ VERB VB _ 12 xcomp _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 one _ NUM CD _ 21 nummod _ _ 20 Senate _ PROPN NNP _ 21 compound _ _ 21 aide _ NOUN NN _ 18 nsubj _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 aimed _ VERB VBN _ 0 root _ _ 5 at _ SCONJ IN _ 6 mark _ _ 6 addressing _ VERB VBG _ 4 advcl _ _ 7 the _ DET DT _ 8 det _ _ 8 concern _ NOUN NN _ 6 dobj _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 an _ DET DT _ 11 det _ _ 11 airline _ NOUN NN _ 13 nsubj _ _ 12 might _ AUX MD _ 13 aux _ _ 13 sacrifice _ VERB VB _ 8 ccomp _ _ 14 costly _ ADJ JJ _ 16 amod _ _ 15 safety _ NOUN NN _ 16 compound _ _ 16 measures _ NOUN NNS _ 13 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 pay _ VERB VB _ 13 advcl _ _ 19 off _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 21 det _ _ 21 debt _ NOUN NN _ 18 dobj _ _ 22 incurred _ VERB VBN _ 21 acl _ _ 23 in _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 leveraged _ VERB VBN _ 26 amod _ _ 26 buy-out _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Currently _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 transportation _ NOUN NN _ 5 compound _ _ 5 secretary _ NOUN NN _ 8 nsubj _ _ 6 does _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 have _ VERB VB _ 0 root _ _ 9 clearly _ ADV RB _ 10 advmod _ _ 10 established _ VERB VBN _ 11 amod _ _ 11 authority _ NOUN NN _ 8 dobj _ _ 12 to _ ADP TO _ 14 case _ _ 13 block _ NOUN NN _ 14 compound _ _ 14 mergers _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 but _ CONJ CC _ 8 cc _ _ 17 can _ AUX MD _ 18 aux _ _ 18 take _ VERB VB _ 8 conj _ _ 19 the _ DET DT _ 21 det _ _ 20 drastic _ ADJ JJ _ 21 amod _ _ 21 step _ NOUN NN _ 18 dobj _ _ 22 of _ SCONJ IN _ 23 mark _ _ 23 revoking _ VERB VBG _ 21 acl _ _ 24 the _ DET DT _ 26 det _ _ 25 operating _ NOUN NN _ 26 compound _ _ 26 certificate _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 any _ DET DT _ 29 det _ _ 29 carrier _ NOUN NN _ 26 nmod _ _ 30 the _ DET DT _ 31 det _ _ 31 official _ NOUN NN _ 32 nsubj _ _ 32 considers _ VERB VBZ _ 29 acl:relcl _ _ 33 unfit _ ADJ JJ _ 32 xcomp _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 Supporters _ NOUN NNS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 legislation _ NOUN NN _ 1 nmod _ _ 5 view _ VERB VBP _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 bill _ NOUN NN _ 5 dobj _ _ 8 as _ ADP IN _ 10 case _ _ 9 an _ DET DT _ 10 det _ _ 10 effort _ NOUN NN _ 5 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 add _ VERB VB _ 10 dep _ _ 13 stability _ NOUN NN _ 12 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 certainty _ NOUN NN _ 13 conj _ _ 16 to _ ADP TO _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 airline-acquisition _ ADJ JJ _ 19 amod _ _ 19 process _ NOUN NN _ 12 nmod _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 and _ CONJ CC _ 12 cc _ _ 22 to _ PART TO _ 23 mark _ _ 23 preserve _ VERB VB _ 12 conj _ _ 24 the _ DET DT _ 25 det _ _ 25 safety _ NOUN NN _ 23 dobj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 fitness _ NOUN NN _ 25 conj _ _ 28 of _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 industry _ NOUN NN _ 25 nmod _ _ 31 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 general _ ADJ JJ _ 7 advcl _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 bill _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 give _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 Transportation _ PROPN NNP _ 10 compound _ _ 10 Department _ PROPN NNP _ 7 iobj _ _ 11 a _ DET DT _ 14 det _ _ 12 30-day _ ADJ JJ _ 14 amod _ _ 13 review _ NOUN NN _ 14 compound _ _ 14 period _ NOUN NN _ 7 dobj _ _ 15 before _ SCONJ IN _ 32 mark _ _ 16 15 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 32 nsubjpass _ _ 18 or _ CONJ CC _ 19 cc _ _ 19 more _ ADJ JJR _ 17 nummod _ _ 20 of _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 voting _ NOUN NN _ 23 compound _ _ 23 stock _ NOUN NN _ 17 nmod _ _ 24 of _ ADP IN _ 29 case _ _ 25 a _ DET DT _ 29 det _ _ 26 major _ ADJ JJ _ 29 amod _ _ 27 U.S. _ PROPN NNP _ 29 compound _ _ 28 air _ NOUN NN _ 29 compound _ _ 29 carrier _ NOUN NN _ 23 nmod _ _ 30 could _ AUX MD _ 32 aux _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 acquired _ VERB VBN _ 7 advcl _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 would _ AUX MD _ 4 aux _ _ 4 require _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 acquiring _ VERB VBG _ 7 amod _ _ 7 party _ NOUN NN _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 notify _ VERB VB _ 4 ccomp _ _ 10 the _ DET DT _ 12 det _ _ 11 transportation _ NOUN NN _ 12 compound _ _ 12 secretary _ NOUN NN _ 9 dobj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 to _ PART TO _ 15 mark _ _ 15 provide _ VERB VB _ 9 conj _ _ 16 all _ DET DT _ 17 det _ _ 17 information _ NOUN NN _ 15 dobj _ _ 18 relevant _ ADJ JJ _ 17 amod _ _ 19 to _ ADP TO _ 20 mark _ _ 20 determining _ VERB VBG _ 18 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 intent _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 acquisition _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bill _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 allow _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 secretary _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 reject _ VERB VB _ 4 xcomp _ _ 9 a _ DET DT _ 10 det _ _ 10 buy-out _ NOUN NN _ 8 dobj _ _ 11 if _ SCONJ IN _ 17 mark _ _ 12 sufficient _ ADJ JJ _ 13 amod _ _ 13 information _ NOUN NN _ 17 nsubjpass _ _ 14 has _ AUX VBZ _ 17 aux _ _ 15 n't _ PART RB _ 17 neg _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 provided _ VERB VBN _ 8 advcl _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 or _ CONJ CC _ 17 cc _ _ 20 if _ SCONJ IN _ 24 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 buy-out _ NOUN NN _ 24 nsubj _ _ 23 is _ VERB VBZ _ 24 cop _ _ 24 likely _ ADJ JJ _ 17 conj _ _ 25 to _ PART TO _ 26 mark _ _ 26 weaken _ VERB VB _ 24 xcomp _ _ 27 the _ DET DT _ 28 det _ _ 28 carrier _ NOUN NN _ 26 dobj _ _ 29 financially _ ADV RB _ 26 advmod _ _ 30 , _ PUNCT , _ 26 punct _ _ 31 result _ VERB VB _ 26 conj _ _ 32 in _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 substantial _ ADJ JJ _ 35 amod _ _ 35 reduction _ NOUN NN _ 31 nmod _ _ 36 in _ ADP IN _ 37 case _ _ 37 size _ NOUN NN _ 35 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 airline _ NOUN NN _ 37 nmod _ _ 41 through _ ADP IN _ 42 case _ _ 42 disposal _ NOUN NN _ 31 nmod _ _ 43 of _ ADP IN _ 44 case _ _ 44 assets _ NOUN NNS _ 42 nmod _ _ 45 , _ PUNCT , _ 26 punct _ _ 46 or _ CONJ CC _ 26 cc _ _ 47 give _ VERB VB _ 26 conj _ _ 48 control _ NOUN NN _ 47 dobj _ _ 49 to _ ADP TO _ 52 case _ _ 50 a _ DET DT _ 52 det _ _ 51 foreign _ ADJ JJ _ 52 amod _ _ 52 interest _ NOUN NN _ 47 nmod _ _ 53 . _ PUNCT . _ 4 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 more _ ADJ JJR _ 3 amod _ _ 3 information _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 needed _ VERB VBN _ 10 advcl _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 secretary _ NOUN NN _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 have _ VERB VB _ 0 root _ _ 11 authority _ NOUN NN _ 10 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 extend _ VERB VB _ 11 acl _ _ 14 the _ DET DT _ 16 det _ _ 15 review _ NOUN NN _ 16 compound _ _ 16 period _ NOUN NN _ 13 dobj _ _ 17 20 _ NUM CD _ 18 nummod _ _ 18 days _ NOUN NNS _ 13 nmod:tmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 All _ DET DT _ 3 det:predet _ _ 2 the _ DET DT _ 3 det _ _ 3 witnesses _ NOUN NNS _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 both _ DET DT _ 6 cc:preconj _ _ 6 congressmen _ NOUN NNS _ 3 appos _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 industry _ NOUN NN _ 9 compound _ _ 9 experts _ NOUN NNS _ 6 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 expressed _ VERB VBD _ 0 root _ _ 12 support _ NOUN NN _ 11 dobj _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 bill _ NOUN NN _ 12 nmod _ _ 16 in _ SCONJ IN _ 19 mark _ _ 17 order _ NOUN NN _ 16 mwe _ _ 18 to _ PART TO _ 19 mark _ _ 19 prevent _ VERB VB _ 11 advcl _ _ 20 profiteers _ NOUN NNS _ 19 dobj _ _ 21 from _ SCONJ IN _ 22 mark _ _ 22 cashing _ VERB VBG _ 19 advcl _ _ 23 in _ ADP RP _ 22 compound:prt _ _ 24 on _ ADP IN _ 26 case _ _ 25 airline _ NOUN NN _ 26 compound _ _ 26 profits _ NOUN NNS _ 22 nmod _ _ 27 at _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 expense _ NOUN NN _ 22 nmod _ _ 30 of _ ADP IN _ 34 case _ _ 31 safe _ ADJ JJ _ 34 amod _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 cost-effective _ ADJ JJ _ 34 amod _ _ 34 service _ NOUN NN _ 29 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 several _ ADJ JJ _ 4 amod _ _ 3 committee _ NOUN NN _ 4 compound _ _ 4 members _ NOUN NNS _ 5 nsubj _ _ 5 disapproved _ VERB VBD _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 some _ DET DT _ 8 nsubj _ _ 8 backing _ VERB VBG _ 5 dep _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Trump _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 claim _ NOUN NN _ 8 dobj _ _ 13 that _ SCONJ IN _ 18 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 threat _ NOUN NN _ 18 nsubj _ _ 16 of _ ADP IN _ 17 case _ _ 17 regulation _ NOUN NN _ 15 nmod _ _ 18 caused _ VERB VBD _ 12 ccomp _ _ 19 the _ DET DT _ 20 det _ _ 20 failure _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 UAL _ PROPN NNP _ 24 compound _ _ 24 deal _ NOUN NN _ 20 nmod _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 the _ DET DT _ 28 det _ _ 27 stock-market _ NOUN NN _ 28 compound _ _ 28 plunge _ NOUN NN _ 20 conj _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 10 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 major _ ADJ JJ _ 5 amod _ _ 5 concerns _ NOUN NNS _ 1 nmod _ _ 6 expressed _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 dissenters _ NOUN NNS _ 6 nmod _ _ 10 was _ VERB VBD _ 0 root _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 large _ ADJ JJ _ 13 amod _ _ 13 airlines _ NOUN NNS _ 16 nsubjpass _ _ 14 would _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 prohibited _ VERB VBN _ 10 ccomp _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 divesting _ VERB VBG _ 16 advcl _ _ 19 themselves _ PRON PRP _ 18 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 smaller _ ADJ JJR _ 22 amod _ _ 22 entities _ NOUN NNS _ 18 nmod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 producing _ VERB VBG _ 18 conj _ _ 25 independent _ ADJ JJ _ 27 amod _ _ 26 spin-off _ ADJ JJ _ 27 amod _ _ 27 companies _ NOUN NNS _ 24 dobj _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 possible _ ADJ JJ _ 4 amod _ _ 4 prelude _ NOUN NN _ 22 nmod _ _ 5 to _ ADP TO _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 resumption _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 talks _ NOUN NNS _ 7 nmod _ _ 10 between _ ADP IN _ 12 case _ _ 11 Boeing _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 striking _ VERB VBG _ 17 amod _ _ 15 Machinists _ NOUN NNS _ 17 compound _ _ 16 union _ NOUN NN _ 17 compound _ _ 17 members _ NOUN NNS _ 12 conj _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 federal _ ADJ JJ _ 21 amod _ _ 21 mediator _ NOUN NN _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 representatives _ NOUN NNS _ 29 nsubj _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 sides _ NOUN NNS _ 23 nmod _ _ 28 will _ AUX MD _ 29 aux _ _ 29 meet _ VERB VB _ 22 ccomp _ _ 30 with _ ADP IN _ 31 case _ _ 31 him _ PRON PRP _ 29 nmod _ _ 32 tomorrow _ NOUN NN _ 29 nmod:tmod _ _ 33 . _ PUNCT . _ 22 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 It _ PRON PRP _ 7 nsubj _ _ 3 could _ AUX MD _ 7 aux _ _ 4 be _ VERB VB _ 7 cop _ _ 5 a _ DET DT _ 7 det _ _ 6 long _ ADJ JJ _ 7 amod _ _ 7 meeting _ NOUN NN _ 17 ccomp _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 it _ PRON PRP _ 14 nsubj _ _ 10 could _ AUX MD _ 14 aux _ _ 11 be _ VERB VB _ 14 cop _ _ 12 a _ DET DT _ 14 det _ _ 13 short _ ADJ JJ _ 14 amod _ _ 14 one _ NUM CD _ 7 conj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Doug _ PROPN NNP _ 19 compound _ _ 19 Hammond _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 mediator _ NOUN NN _ 19 appos _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 who _ PRON WP _ 25 nsubj _ _ 25 called _ VERB VBD _ 19 acl:relcl _ _ 26 the _ DET DT _ 27 det _ _ 27 agreement _ NOUN NN _ 32 nsubj _ _ 28 to _ PART TO _ 29 mark _ _ 29 meet _ VERB VB _ 27 acl _ _ 30 a _ DET DT _ 32 det _ _ 31 first _ ADJ JJ _ 32 amod _ _ 32 step _ NOUN NN _ 25 xcomp _ _ 33 toward _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 resumption _ NOUN NN _ 32 nmod _ _ 36 of _ ADP IN _ 37 case _ _ 37 negotiations _ NOUN NNS _ 35 nmod _ _ 38 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 We _ PRON PRP _ 4 nsubjpass _ _ 3 're _ AUX VBP _ 4 auxpass _ _ 4 encouraged _ VERB VBN _ 26 ccomp _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 talks _ NOUN NNS _ 8 nsubjpass _ _ 7 are _ AUX VBP _ 8 auxpass _ _ 8 scheduled _ VERB VBN _ 4 ccomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 but _ CONJ CC _ 4 cc _ _ 11 beyond _ ADP IN _ 12 case _ _ 12 that _ PRON DT _ 16 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 we _ PRON PRP _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 made _ VERB VBN _ 4 conj _ _ 17 no _ DET DT _ 18 neg _ _ 18 expression _ NOUN NN _ 16 dobj _ _ 19 of _ ADP IN _ 20 case _ _ 20 expectations _ NOUN NNS _ 18 nmod _ _ 21 , _ PUNCT , _ 26 punct _ _ 22 '' _ PUNCT '' _ 26 punct _ _ 23 a _ DET DT _ 25 det _ _ 24 Boeing _ VERB VBG _ 25 amod _ _ 25 spokesman _ NOUN NN _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Machinists _ PROPN NNP _ 3 compound _ _ 3 union _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 rejected _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 9 det _ _ 7 three-year _ ADJ JJ _ 9 amod _ _ 8 contract _ NOUN NN _ 9 compound _ _ 9 offer _ NOUN NN _ 5 dobj _ _ 10 that _ PRON WDT _ 13 nsubj _ _ 11 would _ AUX MD _ 13 aux _ _ 12 have _ AUX VB _ 13 aux _ _ 13 provided _ VERB VBN _ 9 acl:relcl _ _ 14 a _ DET DT _ 18 det _ _ 15 10 _ NUM CD _ 16 compound _ _ 16 % _ SYM NN _ 18 amod _ _ 17 wage _ NOUN NN _ 18 compound _ _ 18 increase _ NOUN NN _ 13 dobj _ _ 19 over _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 life _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 pact _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 18 punct _ _ 26 plus _ CONJ CC _ 18 cc _ _ 27 some _ DET DT _ 28 det _ _ 28 bonuses _ NOUN NNS _ 18 conj _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Currently _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 average _ ADJ JJ _ 4 amod _ _ 4 pay _ NOUN NN _ 9 nsubj _ _ 5 for _ ADP IN _ 6 case _ _ 6 machinists _ NOUN NNS _ 4 nmod _ _ 7 is _ VERB VBZ _ 9 cop _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 13.39 _ NUM CD _ 14 ccomp _ _ 10 an _ DET DT _ 11 det _ _ 11 hour _ NOUN NN _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 Boeing _ VERB VBG _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Now _ ADV RB _ 5 advmod _ _ 2 in _ ADP IN _ 5 case _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 13th _ ADJ JJ _ 5 amod _ _ 5 day _ NOUN NN _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 strike _ NOUN NN _ 10 nsubj _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 idled _ VERB VBN _ 0 root _ _ 11 about _ ADV RB _ 12 advmod _ _ 12 55,000 _ NUM CD _ 13 nummod _ _ 13 machinists _ NOUN NNS _ 10 dobj _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 has _ AUX VBZ _ 16 aux _ _ 16 started _ VERB VBN _ 10 conj _ _ 17 to _ PART TO _ 18 mark _ _ 18 delay _ VERB VB _ 16 xcomp _ _ 19 delivery _ NOUN NN _ 18 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 some _ DET DT _ 22 det _ _ 22 jetliners _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 With _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 strike _ NOUN NN _ 4 compound _ _ 4 fund _ NOUN NN _ 14 nmod _ _ 5 of _ ADP IN _ 7 case _ _ 6 about _ ADV RB _ 7 advmod _ _ 7 $ _ SYM $ _ 4 nmod _ _ 8 100 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 union _ NOUN NN _ 14 nsubj _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 said _ VERB VBD _ 0 root _ _ 15 it _ PRON PRP _ 17 nsubjpass _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 prepared _ VERB VBN _ 14 ccomp _ _ 18 for _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 long _ ADJ JJ _ 21 amod _ _ 21 strike _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 week _ NOUN NN _ 11 nmod _ _ 5 on _ ADP IN _ 6 case _ _ 6 strike _ NOUN NN _ 4 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 union _ NOUN NN _ 9 compound _ _ 9 members _ NOUN NNS _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 begin _ VERB VB _ 0 root _ _ 12 receiving _ VERB VBG _ 11 xcomp _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 100 _ NUM CD _ 12 dobj _ _ 15 a _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:npmod _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 fund _ NOUN NN _ 12 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 Work _ NOUN NN _ 4 nsubj _ _ 2 at _ ADP IN _ 3 case _ _ 3 Boeing _ PROPN NNP _ 1 nmod _ _ 4 continues _ VERB VBZ _ 0 root _ _ 5 with _ SCONJ IN _ 11 mark _ _ 6 supervisors _ NOUN NNS _ 11 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 other _ ADJ JJ _ 10 amod _ _ 9 non-striking _ ADJ JJ _ 10 amod _ _ 10 personnel _ NOUN NNS _ 6 conj _ _ 11 manning _ VERB VBG _ 4 advcl _ _ 12 the _ DET DT _ 13 det _ _ 13 lines _ NOUN NNS _ 11 dobj _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 And _ CONJ CC _ 23 cc _ _ 2 at _ ADP IN _ 10 case _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 10 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 Wichita _ PROPN NNP _ 10 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Kan. _ PROPN NNP _ 6 dep _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 plant _ NOUN NN _ 20 nmod _ _ 11 , _ PUNCT , _ 20 punct _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 2,400 _ NUM CD _ 20 nsubj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 11,700 _ NUM CD _ 17 nummod _ _ 17 machinists _ NOUN NNS _ 13 nmod _ _ 18 still _ ADV RB _ 20 advmod _ _ 19 are _ AUX VBP _ 20 aux _ _ 20 working _ VERB VBG _ 23 dep _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 Boeing _ PROPN NNP _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Under _ ADP IN _ 4 case _ _ 2 Kansas _ PROPN NNP _ 4 compound _ _ 3 right-to-work _ ADJ JJ _ 4 amod _ _ 4 laws _ NOUN NNS _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 contracts _ NOUN NNS _ 9 nsubj _ _ 7 can _ AUX MD _ 9 aux _ _ 8 not _ PART RB _ 9 neg _ _ 9 require _ VERB VB _ 0 root _ _ 10 workers _ NOUN NNS _ 9 dobj _ _ 11 to _ PART TO _ 14 mark _ _ 12 be _ VERB VB _ 14 cop _ _ 13 union _ NOUN NN _ 14 compound _ _ 14 members _ NOUN NNS _ 9 xcomp _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Boeing _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 declined _ VERB VBN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 say _ VERB VB _ 3 xcomp _ _ 6 how _ ADV WRB _ 7 advmod _ _ 7 many _ ADJ JJ _ 8 advmod _ _ 8 employees _ NOUN NNS _ 10 nsubj _ _ 9 are _ AUX VBP _ 10 aux _ _ 10 working _ VERB VBG _ 5 ccomp _ _ 11 at _ ADP IN _ 18 case _ _ 12 its _ PRON PRP$ _ 18 nmod:poss _ _ 13 giant _ ADJ JJ _ 18 amod _ _ 14 Renton _ PROPN NNP _ 18 dep _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Wash. _ PROPN NNP _ 14 dep _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 plant _ NOUN NN _ 10 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Union _ NOUN NN _ 2 compound _ _ 2 officials _ NOUN NNS _ 6 nsubjpass _ _ 3 could _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 reached _ VERB VBN _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 comment _ NOUN NN _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 DPC _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Partners _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 7 det _ _ 6 hostile _ ADJ JJ _ 7 amod _ _ 7 suitor _ NOUN NN _ 3 appos _ _ 8 for _ ADP IN _ 10 case _ _ 9 Dataproducts _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 intends _ VERB VBZ _ 12 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 launch _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 19 det _ _ 18 tender _ NOUN NN _ 19 compound _ _ 19 offer _ NOUN NN _ 16 dobj _ _ 20 for _ ADP IN _ 27 case _ _ 21 the _ DET DT _ 24 det _ _ 22 computer _ NOUN NN _ 24 compound _ _ 23 printer _ NOUN NN _ 24 compound _ _ 24 maker _ NOUN NN _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 common _ ADJ JJ _ 27 amod _ _ 27 stock _ NOUN NN _ 19 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 DPC _ PROPN NNP _ 16 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 a _ DET DT _ 4 det _ _ 4 group _ NOUN NN _ 1 appos _ _ 5 led _ VERB VBD _ 4 acl _ _ 6 by _ ADP IN _ 13 case _ _ 7 the _ DET DT _ 13 det _ _ 8 New _ PROPN NNP _ 13 compound _ _ 9 York _ PROPN NNP _ 13 compound _ _ 10 investment _ NOUN NN _ 13 compound _ _ 11 firm _ NOUN NN _ 13 compound _ _ 12 Crescott _ PROPN NNP _ 13 compound _ _ 13 Inc. _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 also _ ADV RB _ 16 advmod _ _ 16 said _ VERB VBD _ 0 root _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 plans _ VERB VBZ _ 16 ccomp _ _ 19 to _ PART TO _ 20 mark _ _ 20 file _ VERB VB _ 18 xcomp _ _ 21 preliminary _ ADJ JJ _ 22 amod _ _ 22 materials _ NOUN NNS _ 20 dobj _ _ 23 with _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 Securities _ PROPN NNP _ 28 compound _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Exchange _ PROPN NNP _ 25 conj _ _ 28 Commission _ PROPN NNP _ 20 nmod _ _ 29 regarding _ VERB VBG _ 20 dep _ _ 30 a _ DET DT _ 32 det _ _ 31 shareholder _ NOUN NN _ 32 compound _ _ 32 solicitation _ NOUN NN _ 29 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 oust _ VERB VB _ 32 acl _ _ 35 Dataproducts _ PROPN NNP _ 37 nmod:poss _ _ 36 ' _ PART POS _ 35 case _ _ 37 board _ NOUN NN _ 34 dobj _ _ 38 . _ PUNCT . _ 16 punct _ _ 1 DPC _ PROPN NNP _ 2 nsubj _ _ 2 holds _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 6 det _ _ 4 7.8 _ NUM CD _ 5 compound _ _ 5 % _ SYM NN _ 6 amod _ _ 6 stake _ NOUN NN _ 2 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 Dataproducts _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 made _ VERB VBD _ 2 conj _ _ 11 a _ DET DT _ 14 det _ _ 12 $ _ SYM $ _ 14 amod _ _ 13 15-a-share _ ADJ JJ _ 12 dep _ _ 14 bid _ NOUN NN _ 10 dobj _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 company _ NOUN NN _ 14 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 May _ PROPN NNP _ 10 nmod _ _ 20 , _ PUNCT , _ 2 punct _ _ 21 but _ CONJ CC _ 2 cc _ _ 22 Dataproducts _ PROPN NNP _ 23 compound _ _ 23 management _ NOUN NN _ 24 nsubj _ _ 24 considered _ VERB VBD _ 2 conj _ _ 25 the _ DET DT _ 29 det _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 283.7 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 proposal _ NOUN NN _ 30 nsubj _ _ 30 unacceptable _ ADJ JJ _ 24 xcomp _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 DPC _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 elaborate _ VERB VB _ 4 xcomp _ _ 7 on _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 9 det _ _ 9 group _ NOUN NN _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 new _ ADJ JJ _ 12 amod _ _ 12 plan _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 American _ PROPN NNP _ 6 compound _ _ 3 Stock _ PROPN NNP _ 6 compound _ _ 4 Exchange _ PROPN NNP _ 6 compound _ _ 5 composite _ NOUN NN _ 6 compound _ _ 6 trading _ NOUN NN _ 11 nmod _ _ 7 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Dataproducts _ PROPN NNP _ 10 compound _ _ 10 shares _ NOUN NNS _ 11 nsubj _ _ 11 jumped _ VERB VBD _ 0 root _ _ 12 62.5 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 close _ VERB VB _ 11 advcl _ _ 16 at _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 9.375 _ NUM CD _ 15 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 Dataproducts _ PROPN NNP _ 13 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 aux _ _ 6 seeking _ VERB VBG _ 1 acl:relcl _ _ 7 a _ DET DT _ 8 det _ _ 8 buyer _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 several _ ADJ JJ _ 11 amod _ _ 11 months _ NOUN NNS _ 6 nmod _ _ 12 , _ PUNCT , _ 1 punct _ _ 13 announced _ VERB VBD _ 0 root _ _ 14 a _ DET DT _ 16 det _ _ 15 restructuring _ NOUN NN _ 16 compound _ _ 16 plan _ NOUN NN _ 13 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 September _ PROPN NNP _ 13 nmod _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 took _ VERB VBD _ 13 conj _ _ 21 itself _ PRON PRP _ 20 dobj _ _ 22 off _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 auction _ NOUN NN _ 25 compound _ _ 25 block _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 restructuring _ NOUN NN _ 5 nsubj _ _ 5 includes _ VERB VBZ _ 0 root _ _ 6 plans _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 split _ VERB VB _ 6 dep _ _ 9 into _ ADP IN _ 11 case _ _ 10 three _ NUM CD _ 11 nummod _ _ 11 sectors _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 phase _ NOUN NN _ 8 conj _ _ 15 out _ ADP RP _ 14 compound:prt _ _ 16 domestic _ ADJ JJ _ 19 amod _ _ 17 printer _ NOUN NN _ 19 compound _ _ 18 manufacturing _ VERB VBG _ 19 amod _ _ 19 operations _ NOUN NNS _ 14 dobj _ _ 20 and _ CONJ CC _ 8 cc _ _ 21 to _ PART TO _ 22 mark _ _ 22 sell _ VERB VB _ 8 conj _ _ 23 its _ PRON PRP$ _ 26 nmod:poss _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 England _ PROPN NNP _ 26 compound _ _ 26 subsidiary _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 As _ ADP IN _ 2 case _ _ 2 part _ NOUN NN _ 8 nmod _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 plan _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Dataproducts _ PROPN NNP _ 8 nsubj _ _ 8 announced _ VERB VBD _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 pact _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 sell _ VERB VB _ 10 acl _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 63 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 of _ ADP IN _ 20 case _ _ 17 its _ PRON PRP$ _ 20 nmod:poss _ _ 18 real _ ADJ JJ _ 20 amod _ _ 19 estate _ NOUN NN _ 20 compound _ _ 20 holdings _ NOUN NNS _ 13 nmod _ _ 21 to _ ADP TO _ 24 case _ _ 22 Trizec _ PROPN NNP _ 24 compound _ _ 23 Properties _ PROPN NNP _ 24 compound _ _ 24 Inc. _ PROPN NNP _ 12 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 a _ DET DT _ 27 det _ _ 27 unit _ NOUN NN _ 24 appos _ _ 28 of _ ADP IN _ 32 case _ _ 29 Canada _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 Trizec _ PROPN NNP _ 32 compound _ _ 32 Corp _ PROPN NNP _ 27 nmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Jack _ PROPN NNP _ 2 compound _ _ 2 Davis _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Dataproducts _ PROPN NNP _ 6 nmod:poss _ _ 5 ' _ PART POS _ 4 case _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 chairman _ NOUN NN _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 chief _ ADJ JJ _ 12 amod _ _ 11 executive _ ADJ JJ _ 12 amod _ _ 12 officer _ NOUN NN _ 6 conj _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 21 nsubj _ _ 17 `` _ PUNCT `` _ 21 punct _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 at _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 loss _ NOUN NN _ 14 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 understand _ VERB VB _ 21 xcomp _ _ 24 DPC _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 intentions _ NOUN NNS _ 23 dobj _ _ 27 . _ PUNCT . _ 14 punct _ _ 28 '' _ PUNCT '' _ 14 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 called _ VERB VBD _ 0 root _ _ 3 today _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 announcement _ NOUN NN _ 7 dep _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 opportunistic _ ADJ JJ _ 2 xcomp _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 disruptive _ ADJ JJ _ 7 conj _ _ 10 '' _ PUNCT '' _ 7 punct _ _ 11 and _ CONJ CC _ 2 cc _ _ 12 said _ VERB VBD _ 2 conj _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 15 nsubj _ _ 15 intends _ VERB VBZ _ 12 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 proceed _ VERB VB _ 15 xcomp _ _ 18 with _ ADP IN _ 20 case _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 restructuring _ NOUN NN _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Share _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 plummeted _ VERB VBD _ 0 root _ _ 4 across _ ADP IN _ 5 case _ _ 5 Europe _ PROPN NNP _ 3 nmod _ _ 6 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 response _ NOUN NN _ 3 nmod _ _ 9 to _ ADP TO _ 14 case _ _ 10 Friday _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 New _ PROPN NNP _ 14 compound _ _ 13 York _ PROPN NNP _ 14 compound _ _ 14 sell-off _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 but _ CONJ CC _ 3 cc _ _ 17 some _ DET DT _ 18 det _ _ 18 issues _ NOUN NNS _ 19 nsubj _ _ 19 staged _ VERB VBD _ 3 conj _ _ 20 a _ DET DT _ 22 det _ _ 21 late _ ADJ JJ _ 22 amod _ _ 22 comeback _ NOUN NN _ 19 dobj _ _ 23 after _ SCONJ IN _ 26 mark _ _ 24 Wall _ PROPN NNP _ 25 compound _ _ 25 Street _ PROPN NNP _ 26 nsubj _ _ 26 opened _ VERB VBD _ 19 advcl _ _ 27 without _ ADP IN _ 29 case _ _ 28 another _ DET DT _ 29 det _ _ 29 rout _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 European _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 further _ ADJ JJ _ 5 amod _ _ 5 reason _ NOUN NN _ 3 dobj _ _ 6 for _ ADP IN _ 7 case _ _ 7 optimism _ NOUN NN _ 5 nmod _ _ 8 today _ NOUN NN _ 3 nmod:tmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 after _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 rebound _ NOUN NN _ 3 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Frankfurt _ PROPN NNP _ 4 compound _ _ 3 Stock _ PROPN NNP _ 4 compound _ _ 4 Exchange _ PROPN NNP _ 18 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 7 nsubj _ _ 7 closed _ VERB VBD _ 4 acl:relcl _ _ 8 before _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 12 det _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 exchanges _ NOUN NNS _ 13 nsubj _ _ 13 opened _ VERB VBD _ 7 advcl _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 was _ VERB VBD _ 18 cop _ _ 16 the _ DET DT _ 18 det _ _ 17 hardest _ ADJ JJS _ 18 amod _ _ 18 hit _ NOUN NN _ 0 root _ _ 19 of _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 major _ ADJ JJ _ 23 amod _ _ 22 European _ ADJ JJ _ 23 amod _ _ 23 markets _ NOUN NNS _ 18 nmod _ _ 24 , _ PUNCT , _ 18 punct _ _ 25 with _ SCONJ IN _ 29 mark _ _ 26 the _ DET DT _ 28 det _ _ 27 DAX _ PROPN NNP _ 28 compound _ _ 28 Index _ PROPN NNP _ 29 nsubj _ _ 29 dropping _ VERB VBG _ 18 advcl _ _ 30 12.8 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 29 dobj _ _ 32 . _ PUNCT . _ 18 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 London _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 prices _ NOUN NNS _ 5 nsubj _ _ 5 plummeted _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 early _ ADJ JJ _ 8 amod _ _ 8 trading _ NOUN NN _ 5 nmod _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 were _ VERB VBD _ 11 cop _ _ 11 off _ ADJ JJ _ 5 conj _ _ 12 as _ ADV RB _ 15 advmod _ _ 13 much _ ADJ JJ _ 15 advmod _ _ 14 as _ ADP IN _ 15 advmod _ _ 15 9 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 11 dep _ _ 17 before _ SCONJ IN _ 18 mark _ _ 18 coming _ VERB VBG _ 11 advcl _ _ 19 back _ ADV RB _ 18 advmod _ _ 20 strong _ ADJ JJ _ 18 xcomp _ _ 21 after _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 opening _ NOUN NN _ 18 nmod _ _ 26 to _ PART TO _ 27 mark _ _ 27 close _ VERB VB _ 18 xcomp _ _ 28 down _ ADV RB _ 27 advmod _ _ 29 only _ ADV RB _ 30 advmod _ _ 30 3.2 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 28 nmod:npmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 West _ ADJ JJ _ 6 amod _ _ 2 German _ ADJ JJ _ 6 amod _ _ 3 Economics _ PROPN NNP _ 6 compound _ _ 4 Minister _ PROPN NNP _ 6 compound _ _ 5 Helmut _ PROPN NNP _ 6 compound _ _ 6 Haussmann _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 7 punct _ _ 10 In _ ADP IN _ 12 case _ _ 11 my _ PRON PRP$ _ 12 nmod:poss _ _ 12 view _ NOUN NN _ 18 nmod _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 market _ NOUN NN _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 stabilize _ VERB VB _ 7 ccomp _ _ 19 relatively _ ADV RB _ 20 advmod _ _ 20 quickly _ ADV RB _ 18 advmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 There _ PRON EX _ 10 expl _ _ 2 may _ AUX MD _ 10 aux _ _ 3 be _ VERB VB _ 10 cop _ _ 4 one _ NUM CD _ 7 compound _ _ 5 or _ CONJ CC _ 7 cc _ _ 6 other _ ADJ JJ _ 7 conj _ _ 7 psychological _ ADJ JJ _ 10 amod _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 technical _ ADJ JJ _ 7 conj _ _ 10 reactions _ NOUN NNS _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 but _ CONJ CC _ 10 cc _ _ 13 they _ PRON PRP _ 16 nsubjpass _ _ 14 are _ AUX VBP _ 16 auxpass _ _ 15 n't _ PART RB _ 16 neg _ _ 16 based _ VERB VBN _ 10 conj _ _ 17 on _ ADP IN _ 18 case _ _ 18 fundamentals _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 economy _ NOUN NN _ 15 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 West _ PROPN NNP _ 5 compound _ _ 5 Germany _ PROPN NNP _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 the _ DET DT _ 8 det _ _ 8 EC _ PROPN NNP _ 5 conj _ _ 9 -LCB- _ PUNCT -LRB- _ 11 punct _ _ 10 European _ PROPN NNP _ 11 compound _ _ 11 Community _ PROPN NNP _ 8 appos _ _ 12 -RCB- _ PUNCT -RRB- _ 11 punct _ _ 13 is _ VERB VBZ _ 15 cop _ _ 14 highly _ ADV RB _ 15 advmod _ _ 15 stable _ ADJ JJ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 17 '' _ PUNCT '' _ 15 punct _ _ 1 Paris _ PROPN NNP _ 18 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 been _ VERB VBN _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 center _ NOUN NN _ 1 acl:relcl _ _ 8 of _ ADP IN _ 10 case _ _ 9 speculation _ NOUN NN _ 10 compound _ _ 10 fever _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 recent _ ADJ JJ _ 13 amod _ _ 13 weeks _ NOUN NNS _ 7 nmod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 also _ ADV RB _ 18 advmod _ _ 16 was _ AUX VBD _ 18 auxpass _ _ 17 hard _ ADV RB _ 18 advmod _ _ 18 hit _ VERB VBN _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Share _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 in _ ADP IN _ 5 case _ _ 5 Milan _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Amsterdam _ PROPN NNP _ 5 conj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 Zurich _ PROPN NNP _ 5 conj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 Madrid _ PROPN NNP _ 5 conj _ _ 12 and _ CONJ CC _ 5 cc _ _ 13 Stockholm _ PROPN NNP _ 5 conj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Prices _ PROPN NNP _ 13 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 Brussels _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 where _ ADV WRB _ 9 advmod _ _ 6 a _ DET DT _ 8 det _ _ 7 computer _ NOUN NN _ 8 compound _ _ 8 breakdown _ NOUN NN _ 9 nsubj _ _ 9 disrupted _ VERB VBD _ 3 acl:relcl _ _ 10 trading _ NOUN NN _ 9 dobj _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 also _ ADV RB _ 13 advmod _ _ 13 tumbled _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Following _ VERB VBG _ 4 dep _ _ 2 is _ VERB VBZ _ 4 dep _ _ 3 a _ DET DT _ 4 det _ _ 4 breakdown _ NOUN NN _ 0 root _ _ 5 of _ ADP IN _ 8 case _ _ 6 major _ ADJ JJ _ 8 amod _ _ 7 market _ NOUN NN _ 8 compound _ _ 8 activity _ NOUN NN _ 4 nmod _ _ 9 : _ PUNCT : _ 4 punct _ _ 1 FRANKFURT _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 One _ NUM CD _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 sharpest _ ADJ JJS _ 5 amod _ _ 5 declines _ NOUN NNS _ 1 nmod _ _ 6 came _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 financial _ ADJ JJ _ 10 amod _ _ 10 center _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 Europe _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 strongest _ ADJ JJS _ 15 amod _ _ 15 economy _ NOUN NN _ 10 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 DAX _ PROPN NNP _ 3 compound _ _ 3 Index _ PROPN NNP _ 10 nsubj _ _ 4 of _ ADP IN _ 9 case _ _ 5 30 _ NUM CD _ 9 nummod _ _ 6 West _ ADJ JJ _ 9 amod _ _ 7 German _ ADJ JJ _ 9 amod _ _ 8 blue _ ADJ JJ _ 9 amod _ _ 9 chips _ NOUN NNS _ 3 nmod _ _ 10 plunged _ VERB VBD _ 0 root _ _ 11 12.8 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 16 det _ _ 15 one-day _ ADJ JJ _ 16 amod _ _ 16 record _ NOUN NN _ 12 appos _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 wiping _ VERB VBG _ 10 xcomp _ _ 19 out _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 21 det _ _ 21 summer _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 gains _ NOUN NNS _ 18 dobj _ _ 24 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 index _ NOUN NN _ 3 nsubj _ _ 3 closed _ VERB VBD _ 0 root _ _ 4 at _ ADP IN _ 5 case _ _ 5 1385.72 _ NUM CD _ 3 nmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 down _ ADV RB _ 3 advmod _ _ 8 203.56 _ NUM CD _ 9 nummod _ _ 9 points _ NOUN NNS _ 7 nmod:npmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 comparison _ NOUN NN _ 16 nmod _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 two _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 ago _ ADV RB _ 16 advmod _ _ 7 on _ ADP IN _ 9 case _ _ 8 Black _ PROPN NNP _ 9 compound _ _ 9 Monday _ PROPN NNP _ 16 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 index _ NOUN NN _ 16 nsubj _ _ 14 would _ AUX MD _ 16 aux _ _ 15 have _ AUX VB _ 16 aux _ _ 16 dropped _ VERB VBN _ 0 root _ _ 17 9.4 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 according _ VERB VBG _ 23 case _ _ 21 to _ ADP TO _ 20 mwe _ _ 22 a _ DET DT _ 23 det _ _ 23 projection _ NOUN NN _ 16 nmod _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 exchange _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 Investors _ NOUN NNS _ 4 nsubj _ _ 2 may _ AUX MD _ 4 aux _ _ 3 have _ AUX VB _ 4 aux _ _ 4 reacted _ VERB VBD _ 0 root _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 strongly _ ADV RB _ 4 advmod _ _ 7 to _ ADP TO _ 13 case _ _ 8 Friday _ PROPN NNP _ 13 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 U.S. _ PROPN NNP _ 13 compound _ _ 11 stock _ NOUN NN _ 13 compound _ _ 12 market _ NOUN NN _ 13 compound _ _ 13 loss _ NOUN NN _ 4 nmod _ _ 14 because _ SCONJ IN _ 16 mark _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 had _ VERB VBD _ 4 advcl _ _ 17 vivid _ ADJ JJ _ 18 amod _ _ 18 memories _ NOUN NNS _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 Frankfurt _ PROPN NNP _ 22 compound _ _ 22 exchange _ NOUN NN _ 18 nmod _ _ 23 's _ PART POS _ 22 case _ _ 24 losing _ VERB VBG _ 22 dep _ _ 25 35 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 24 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 value _ NOUN NN _ 26 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 1987 _ NUM CD _ 33 nummod _ _ 33 crash _ NOUN NN _ 24 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 its _ PRON PRP$ _ 36 nmod:poss _ _ 36 wake _ NOUN NN _ 33 conj _ _ 37 . _ PUNCT . _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 12 nmod:tmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 however _ ADV RB _ 12 advmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 many _ ADJ JJ _ 8 amod _ _ 7 small _ ADJ JJ _ 8 amod _ _ 8 investors _ NOUN NNS _ 12 nsubjpass _ _ 9 may _ AUX MD _ 12 aux _ _ 10 have _ AUX VB _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 hurt _ VERB VBN _ 0 root _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 acting _ VERB VBG _ 12 advcl _ _ 15 so _ ADV RB _ 16 advmod _ _ 16 swiftly _ ADV RB _ 14 advmod _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 They _ PRON PRP _ 4 nsubj _ _ 3 all _ DET DT _ 2 det _ _ 4 went _ VERB VBD _ 11 ccomp _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 wrong _ ADJ JJ _ 8 amod _ _ 8 direction _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Andreas _ PROPN NNP _ 13 compound _ _ 13 Insam _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 an _ DET DT _ 17 det _ _ 16 investment _ NOUN NN _ 17 compound _ _ 17 adviser _ NOUN NN _ 13 appos _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 Bank _ PROPN NNP _ 17 nmod _ _ 21 in _ ADP IN _ 25 case _ _ 22 Liechtenstein _ PROPN NNP _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 Frankfurt _ PROPN NNP _ 25 compound _ _ 25 branch _ NOUN NN _ 17 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 told _ VERB VBD _ 2 ccomp _ _ 5 clients _ NOUN NNS _ 4 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 4 xcomp _ _ 8 selected _ VERB VBN _ 12 amod _ _ 9 West _ ADJ JJ _ 12 amod _ _ 10 German _ ADJ JJ _ 12 amod _ _ 11 blue _ ADJ JJ _ 12 amod _ _ 12 chips _ NOUN NNS _ 7 dobj _ _ 13 after _ SCONJ IN _ 15 mark _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 fell _ VERB VBD _ 7 advcl _ _ 16 by _ ADP IN _ 19 case _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 10 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 15 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 opening _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 delayed _ VERB VBN _ 23 advcl _ _ 6 30 _ NUM CD _ 7 nummod _ _ 7 minutes _ NOUN NNS _ 5 dobj _ _ 8 because _ ADV RB _ 11 case _ _ 9 of _ ADP IN _ 8 mwe _ _ 10 the _ DET DT _ 11 det _ _ 11 crush _ NOUN NN _ 5 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 sell _ NOUN NN _ 14 compound _ _ 14 orders _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 23 punct _ _ 16 Frankfurt _ PROPN NNP _ 21 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 normal _ ADJ JJ _ 21 amod _ _ 19 two-hour _ ADJ JJ _ 21 amod _ _ 20 trading _ NOUN NN _ 21 compound _ _ 21 session _ NOUN NN _ 23 nsubjpass _ _ 22 was _ AUX VBD _ 23 auxpass _ _ 23 extended _ VERB VBN _ 0 root _ _ 24 75 _ NUM CD _ 25 nummod _ _ 25 minutes _ NOUN NNS _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 handle _ VERB VB _ 23 advcl _ _ 28 the _ DET DT _ 30 det _ _ 29 heavy _ ADJ JJ _ 30 amod _ _ 30 volume _ NOUN NN _ 27 dobj _ _ 31 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 beginning _ NOUN NN _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 chaotic _ ADJ JJ _ 8 ccomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 Nigel _ PROPN NNP _ 10 compound _ _ 10 Longley _ PROPN NNP _ 8 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 13 det _ _ 13 broker _ NOUN NN _ 10 appos _ _ 14 for _ ADP IN _ 16 case _ _ 15 Commerzbank _ PROPN NNP _ 16 compound _ _ 16 AG _ PROPN NNP _ 13 nmod _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 took _ VERB VBD _ 0 root _ _ 4 three-quarters _ NOUN NNS _ 3 dobj _ _ 5 of _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 hour _ NOUN NN _ 4 nmod _ _ 8 before _ SCONJ IN _ 13 mark _ _ 9 enough _ ADJ JJ _ 10 amod _ _ 10 prices _ NOUN NNS _ 13 nsubjpass _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 worked _ VERB VBN _ 3 advcl _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 13 xcomp _ _ 17 a _ DET DT _ 18 det _ _ 18 reading _ NOUN NN _ 16 dobj _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 23 '' _ PUNCT '' _ 3 punct _ _ 1 Institutional _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 23 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 bankers _ NOUN NNS _ 2 conj _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 many _ DET DT _ 9 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 whom _ PRON WP _ 6 nmod _ _ 9 spent _ VERB VBD _ 2 acl:relcl _ _ 10 the _ DET DT _ 11 det _ _ 11 night _ NOUN NN _ 9 nmod:tmod _ _ 12 before _ ADV RB _ 11 advmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 offices _ NOUN NNS _ 9 nmod _ _ 16 watching _ VERB VBG _ 9 xcomp _ _ 17 Far _ ADJ JJ _ 19 amod _ _ 18 Eastern _ ADJ JJ _ 19 amod _ _ 19 markets _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 2 punct _ _ 21 were _ VERB VBD _ 23 cop _ _ 22 cautiously _ ADV RB _ 23 advmod _ _ 23 optimistic _ ADJ JJ _ 0 root _ _ 24 after _ ADP IN _ 29 case _ _ 25 the _ DET DT _ 29 det _ _ 26 mild _ ADJ JJ _ 29 amod _ _ 27 1.8 _ NUM CD _ 28 compound _ _ 28 % _ SYM NN _ 29 amod _ _ 29 decline _ NOUN NN _ 23 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 Tokyo _ PROPN NNP _ 33 compound _ _ 32 stock _ NOUN NN _ 33 compound _ _ 33 prices _ NOUN NNS _ 29 nmod _ _ 34 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 Everybody _ NOUN NN _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 confident _ ADJ JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 including _ VERB VBG _ 10 case _ _ 8 most _ ADJ JJS _ 10 amod _ _ 9 institutional _ ADJ JJ _ 10 amod _ _ 10 investors _ NOUN NNS _ 5 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 is _ VERB VBZ _ 21 ccomp _ _ 3 why _ ADV WRB _ 8 advmod _ _ 4 everybody _ NOUN NN _ 8 nsubjpass _ _ 5 was _ AUX VBD _ 8 auxpass _ _ 6 a _ DET DT _ 7 det _ _ 7 little _ ADV RB _ 8 nmod:npmod _ _ 8 surprised _ VERB VBN _ 2 advcl _ _ 9 by _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 storm _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 sell _ NOUN NN _ 14 compound _ _ 14 orders _ NOUN NNS _ 11 nmod _ _ 15 from _ ADP IN _ 18 case _ _ 16 small _ ADJ JJ _ 18 amod _ _ 17 private _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 14 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Norbert _ PROPN NNP _ 23 compound _ _ 23 Braeuer _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 a _ DET DT _ 27 det _ _ 26 senior _ ADJ JJ _ 27 amod _ _ 27 trader _ NOUN NN _ 23 appos _ _ 28 for _ ADP IN _ 30 case _ _ 29 Hessische _ PROPN NNP _ 30 compound _ _ 30 Landesbank _ PROPN NNP _ 27 nmod _ _ 31 . _ PUNCT . _ 21 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 institutions _ NOUN NNS _ 8 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 including _ VERB VBG _ 6 case _ _ 6 banks _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 began _ VERB VBD _ 0 root _ _ 9 picking _ VERB VBG _ 8 xcomp _ _ 10 up _ ADP RP _ 9 compound:prt _ _ 11 lower-priced _ ADJ JJ _ 12 amod _ _ 12 shares _ NOUN NNS _ 9 dobj _ _ 13 late _ ADV RB _ 8 advmod _ _ 14 yesterday _ NOUN NN _ 13 nmod:npmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 but _ CONJ CC _ 8 cc _ _ 17 most _ ADJ JJS _ 18 amod _ _ 18 investors _ NOUN NNS _ 19 nsubj _ _ 19 wanted _ VERB VBD _ 8 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 see _ VERB VB _ 19 xcomp _ _ 22 what _ PRON WP _ 24 nsubj _ _ 23 would _ AUX MD _ 24 aux _ _ 24 happen _ VERB VB _ 21 ccomp _ _ 25 in _ ADP IN _ 27 case _ _ 26 New _ PROPN NNP _ 27 compound _ _ 27 York _ PROPN NNP _ 24 nmod _ _ 28 before _ SCONJ IN _ 29 mark _ _ 29 acting _ VERB VBG _ 21 advcl _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 even _ ADV RB _ 6 advmod _ _ 3 if _ SCONJ IN _ 6 mark _ _ 4 Wall _ PROPN NNP _ 5 compound _ _ 5 Street _ PROPN NNP _ 6 nsubj _ _ 6 continues _ VERB VBZ _ 12 advcl _ _ 7 to _ PART TO _ 8 mark _ _ 8 stabilize _ VERB VB _ 6 xcomp _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 analysts _ NOUN NNS _ 12 nsubj _ _ 11 here _ ADV RB _ 10 advmod _ _ 12 say _ VERB VBP _ 0 root _ _ 13 the _ DET DT _ 15 det _ _ 14 latest _ ADJ JJS _ 15 amod _ _ 15 blow _ NOUN NN _ 20 nsubj _ _ 16 to _ ADP TO _ 18 case _ _ 17 investor _ NOUN NN _ 18 compound _ _ 18 confidence _ NOUN NN _ 15 nmod _ _ 19 could _ AUX MD _ 20 aux _ _ 20 inhibit _ VERB VB _ 12 ccomp _ _ 21 a _ DET DT _ 23 det _ _ 22 swift _ NOUN NN _ 23 compound _ _ 23 recovery _ NOUN NN _ 20 dobj _ _ 24 for _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 Frankfurt _ PROPN NNP _ 27 compound _ _ 27 exchange _ NOUN NN _ 23 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 which _ PRON WDT _ 32 nsubj _ _ 30 already _ ADV RB _ 32 advmod _ _ 31 was _ AUX VBD _ 32 aux _ _ 32 showing _ VERB VBG _ 27 acl:relcl _ _ 33 signs _ NOUN NNS _ 32 dobj _ _ 34 of _ ADP IN _ 35 case _ _ 35 weakness _ NOUN NN _ 33 nmod _ _ 36 after _ SCONJ IN _ 40 mark _ _ 37 the _ DET DT _ 38 det _ _ 38 DAX _ PROPN NNP _ 40 nsubj _ _ 39 had _ AUX VBD _ 40 aux _ _ 40 slipped _ VERB VBN _ 32 advcl _ _ 41 from _ ADP IN _ 44 case _ _ 42 a _ DET DT _ 44 det _ _ 43 1989 _ NUM CD _ 44 nummod _ _ 44 high _ NOUN NN _ 40 nmod _ _ 45 of _ ADP IN _ 46 case _ _ 46 1657.61 _ NUM CD _ 44 nmod _ _ 47 on _ ADP IN _ 48 case _ _ 48 Sept. _ PROPN NNP _ 40 nmod _ _ 49 8 _ NUM CD _ 48 nummod _ _ 50 . _ PUNCT . _ 12 punct _ _ 1 Some _ DET DT _ 8 nsubj _ _ 2 of _ ADP IN _ 7 case _ _ 3 West _ PROPN NNP _ 4 compound _ _ 4 Germany _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 bluest _ ADJ JJS _ 7 amod _ _ 7 chips _ NOUN NNS _ 1 nmod _ _ 8 took _ VERB VBD _ 0 root _ _ 9 some _ DET DT _ 8 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 biggest _ ADJ JJS _ 13 amod _ _ 13 hits _ NOUN NNS _ 9 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 16.3 _ NUM CD _ 3 compound _ _ 3 % _ SYM NN _ 4 amod _ _ 4 drop _ NOUN NN _ 18 nsubj _ _ 5 for _ ADP IN _ 7 case _ _ 6 Mannesmann _ PROPN NNP _ 7 compound _ _ 7 AG _ PROPN NNP _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 Dresdner _ PROPN NNP _ 11 compound _ _ 10 Bank _ PROPN NNP _ 11 compound _ _ 11 AG _ PROPN NNP _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 9.6 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 decline _ NOUN NN _ 4 conj _ _ 16 were _ VERB VBD _ 18 cop _ _ 17 especially _ ADV RB _ 18 advmod _ _ 18 problematic _ ADJ JJ _ 0 root _ _ 19 for _ ADP IN _ 22 case _ _ 20 their _ PRON PRP$ _ 22 nmod:poss _ _ 21 respective _ ADJ JJ _ 22 amod _ _ 22 boards _ NOUN NNS _ 18 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 whose _ PRON WP$ _ 25 nmod:poss _ _ 25 plans _ NOUN NNS _ 36 nsubj _ _ 26 for _ ADP IN _ 29 case _ _ 27 major _ ADJ JJ _ 29 amod _ _ 28 rights _ NOUN NNS _ 29 compound _ _ 29 issues _ NOUN NNS _ 25 nmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 November _ PROPN NNP _ 29 nmod _ _ 32 could _ AUX MD _ 36 aux _ _ 33 now _ ADV RB _ 36 advmod _ _ 34 be _ VERB VB _ 36 cop _ _ 35 in _ ADP IN _ 36 case _ _ 36 jeopardy _ NOUN NN _ 22 acl:relcl _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 Dresdner _ PROPN NNP _ 2 compound _ _ 2 Bank _ PROPN NNP _ 5 nsubj _ _ 3 last _ ADJ JJ _ 4 amod _ _ 4 month _ NOUN NN _ 5 nmod:tmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 hoped _ VERB VBD _ 5 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 raise _ VERB VB _ 7 xcomp _ _ 10 1.2 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 12 nummod _ _ 12 marks _ NOUN NNS _ 9 dobj _ _ 13 -LRB- _ PUNCT -LRB- _ 14 punct _ _ 14 $ _ SYM $ _ 12 dep _ _ 15 642.2 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 -RRB- _ PUNCT -RRB- _ 14 punct _ _ 18 by _ SCONJ IN _ 19 mark _ _ 19 issuing _ VERB VBG _ 9 advcl _ _ 20 four _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 22 nummod _ _ 22 shares _ NOUN NNS _ 19 dobj _ _ 23 at _ ADP IN _ 25 case _ _ 24 300 _ NUM CD _ 25 nummod _ _ 25 marks _ NOUN NNS _ 19 nmod _ _ 26 each _ DET DT _ 25 nmod:npmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 Yet _ ADV RB _ 5 advmod _ _ 2 yesterday _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 market _ NOUN NN _ 5 nsubj _ _ 5 cropped _ VERB VBD _ 0 root _ _ 6 Dresdner _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 share _ NOUN NN _ 9 compound _ _ 9 price _ NOUN NN _ 5 dobj _ _ 10 by _ ADP IN _ 12 case _ _ 11 33 _ NUM CD _ 12 nummod _ _ 12 marks _ NOUN NNS _ 5 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 309 _ NUM CD _ 15 nummod _ _ 15 marks _ NOUN NNS _ 5 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 leaving _ VERB VBG _ 5 advcl _ _ 20 little _ ADJ JJ _ 21 amod _ _ 21 incentive _ NOUN NN _ 19 dobj _ _ 22 for _ SCONJ IN _ 25 mark _ _ 23 investors _ NOUN NNS _ 25 nsubj _ _ 24 to _ PART TO _ 25 mark _ _ 25 subscribe _ VERB VB _ 21 acl _ _ 26 to _ ADP TO _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 standing _ NOUN NN _ 29 compound _ _ 29 price _ NOUN NN _ 25 nmod _ _ 30 unless _ SCONJ IN _ 33 mark _ _ 31 the _ DET DT _ 32 det _ _ 32 market _ NOUN NN _ 33 nsubj _ _ 33 recovers _ VERB VBZ _ 25 advcl _ _ 34 quickly _ ADV RB _ 33 advmod _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 LONDON _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Headed _ VERB VBN _ 13 advcl _ _ 2 toward _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 5 det _ _ 4 record _ NOUN NN _ 5 compound _ _ 5 drop _ NOUN NN _ 1 nmod _ _ 6 at _ ADP IN _ 7 case _ _ 7 midday _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 the _ DET DT _ 12 det _ _ 10 London _ PROPN NNP _ 12 compound _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 13 nsubj _ _ 13 recouped _ VERB VBD _ 0 root _ _ 14 two-thirds _ NOUN NNS _ 13 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 losses _ NOUN NNS _ 14 nmod _ _ 18 in _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 wake _ NOUN NN _ 13 nmod _ _ 21 of _ ADP IN _ 26 case _ _ 22 New _ PROPN NNP _ 23 compound _ _ 23 York _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 early _ ADJ JJ _ 26 amod _ _ 26 rally _ NOUN NN _ 20 nmod _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 7 det _ _ 2 Financial _ PROPN NNP _ 7 compound _ _ 3 Times-Stock _ PROPN NNP _ 7 compound _ _ 4 Exchange _ PROPN NNP _ 7 compound _ _ 5 100 _ NUM CD _ 7 nummod _ _ 6 Share _ PROPN NNP _ 7 compound _ _ 7 Index _ PROPN NNP _ 8 nsubj _ _ 8 closed _ VERB VBD _ 0 root _ _ 9 off _ ADV RB _ 8 advmod _ _ 10 70.5 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 at _ ADP IN _ 14 case _ _ 14 2163.4 _ NUM CD _ 8 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 high _ NOUN NN _ 14 appos _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 day _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 after _ SCONJ IN _ 24 mark _ _ 23 having _ AUX VBG _ 24 aux _ _ 24 plunged _ VERB VBD _ 8 advcl _ _ 25 204.2 _ NUM CD _ 26 nummod _ _ 26 points _ NOUN NNS _ 24 dobj _ _ 27 at _ ADP IN _ 29 case _ _ 28 12:49 _ NUM CD _ 29 nummod _ _ 29 p.m _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 big _ ADJ JJ _ 4 amod _ _ 4 institutions _ NOUN NNS _ 0 root _ _ 5 such _ ADJ JJ _ 10 case _ _ 6 as _ ADP IN _ 5 mwe _ _ 7 Norwich _ PROPN NNP _ 10 compound _ _ 8 Union _ PROPN NNP _ 10 compound _ _ 9 Insurance _ PROPN NNP _ 10 compound _ _ 10 Group _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Scottish _ PROPN NNP _ 15 compound _ _ 13 Amicable _ PROPN NNP _ 15 compound _ _ 14 Investment _ PROPN NNP _ 15 compound _ _ 15 Managers _ PROPN NNP _ 10 conj _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 Standard _ PROPN NNP _ 20 compound _ _ 18 Life _ PROPN NNP _ 20 compound _ _ 19 Assurance _ PROPN NNP _ 20 compound _ _ 20 Co. _ PROPN NNP _ 10 conj _ _ 21 that _ PRON WDT _ 22 nsubj _ _ 22 spearheaded _ VERB VBD _ 4 dep _ _ 23 the _ DET DT _ 24 det _ _ 24 rally _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 Attracted _ VERB VBN _ 14 advcl _ _ 2 by _ ADP IN _ 4 case _ _ 3 low _ ADJ JJ _ 4 amod _ _ 4 prices _ NOUN NNS _ 1 nmod _ _ 5 and _ CONJ CC _ 1 cc _ _ 6 encouraged _ VERB VBN _ 1 conj _ _ 7 by _ ADP IN _ 11 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 York _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 performance _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 scooped _ VERB VBD _ 0 root _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 equities _ NOUN NNS _ 14 dobj _ _ 17 across _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 board _ NOUN NN _ 14 nmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Volume _ NOUN NN _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 959.3 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 5 nummod _ _ 5 shares _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 triple _ ADJ JJ _ 11 nummod _ _ 10 recent _ ADJ JJ _ 11 amod _ _ 11 levels _ NOUN NNS _ 5 appos _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 PARIS _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Late _ ADJ JJ _ 2 amod _ _ 2 buying _ NOUN NN _ 3 nsubj _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Paris _ PROPN NNP _ 6 compound _ _ 6 Bourse _ PROPN NNP _ 3 iobj _ _ 7 a _ DET DT _ 8 det _ _ 8 parachute _ NOUN NN _ 3 dobj _ _ 9 after _ ADP IN _ 12 case _ _ 10 its _ PRON PRP$ _ 12 nmod:poss _ _ 11 free _ ADJ JJ _ 12 amod _ _ 12 fall _ NOUN NN _ 3 nmod _ _ 13 early _ ADV RB _ 12 advmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 CAC _ PROPN NNP _ 4 compound _ _ 3 General _ PROPN NNP _ 4 compound _ _ 4 Index _ PROPN NNP _ 5 nsubj _ _ 5 ended _ VERB VBD _ 0 root _ _ 6 down _ ADV RB _ 5 advmod _ _ 7 5.4 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 nmod:npmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 523.6 _ NUM CD _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 13 det _ _ 13 drop _ NOUN NN _ 10 appos _ _ 14 of _ ADP IN _ 16 case _ _ 15 29.6 _ NUM CD _ 16 nummod _ _ 16 points _ NOUN NNS _ 13 nmod _ _ 17 from _ ADP IN _ 18 case _ _ 18 Friday _ PROPN NNP _ 13 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 was _ VERB VBD _ 17 ccomp _ _ 4 a _ DET DT _ 5 det _ _ 5 volatility _ NOUN NN _ 3 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 5 nmod _ _ 9 that _ ADP IN _ 13 dobj _ _ 10 I _ PRON PRP _ 13 nsubj _ _ 11 have _ AUX VBP _ 13 aux _ _ 12 never _ ADV RB _ 13 neg _ _ 13 seen _ VERB VBN _ 5 acl:relcl _ _ 14 before _ ADV RB _ 13 advmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Michel _ PROPN NNP _ 19 compound _ _ 19 Vigier _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 a _ DET DT _ 22 det _ _ 22 partner _ NOUN NN _ 19 appos _ _ 23 in _ ADP IN _ 27 case _ _ 24 brokerage _ NOUN NN _ 27 compound _ _ 25 firm _ NOUN NN _ 27 compound _ _ 26 Cholet _ PROPN NNP _ 27 compound _ _ 27 Dupont _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 When _ ADV WRB _ 5 advmod _ _ 3 Wall _ PROPN NNP _ 4 compound _ _ 4 Street _ PROPN NNP _ 5 nsubj _ _ 5 turned _ VERB VBD _ 13 advcl _ _ 6 around _ ADV RB _ 5 advmod _ _ 7 shortly _ ADV RB _ 10 advmod _ _ 8 after _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 opening _ NOUN NN _ 5 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 there _ PRON EX _ 13 expl _ _ 13 was _ VERB VBD _ 0 root _ _ 14 panic _ NOUN NN _ 15 compound _ _ 15 buying _ NOUN NN _ 13 nsubj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Paris _ PROPN NNP _ 13 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 19 '' _ PUNCT '' _ 13 punct _ _ 1 Brokers _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 23 mark _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 news _ NOUN NN _ 7 nsubj _ _ 7 spread _ VERB VBD _ 23 advcl _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 Wall _ PROPN NNP _ 10 compound _ _ 10 Street _ PROPN NNP _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 moving _ VERB VBG _ 7 ccomp _ _ 13 up _ ADV RB _ 12 compound:prt _ _ 14 , _ PUNCT , _ 23 punct _ _ 15 traders _ NOUN NNS _ 23 nsubj _ _ 16 who _ PRON WP _ 18 nsubj _ _ 17 had _ AUX VBD _ 18 aux _ _ 18 called _ VERB VBN _ 15 acl:relcl _ _ 19 to _ PART TO _ 20 mark _ _ 20 place _ VERB VB _ 18 xcomp _ _ 21 sell _ NOUN NN _ 22 compound _ _ 22 orders _ NOUN NNS _ 20 dobj _ _ 23 changed _ VERB VBD _ 2 ccomp _ _ 24 their _ PRON PRP$ _ 25 nmod:poss _ _ 25 line _ NOUN NN _ 23 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 mid-conversation _ NOUN NN _ 23 nmod _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 ordering _ VERB VBG _ 23 advcl _ _ 30 buys _ NOUN NNS _ 29 dobj _ _ 31 instead _ ADV RB _ 29 advmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 Trading _ NOUN NN _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 driven _ VERB VBN _ 0 root _ _ 4 primarily _ ADV RB _ 3 advmod _ _ 5 by _ ADP IN _ 7 case _ _ 6 small _ ADJ JJ _ 7 amod _ _ 7 investors _ NOUN NNS _ 3 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 speculators _ NOUN NNS _ 7 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 with _ SCONJ IN _ 14 mark _ _ 12 large _ ADJ JJ _ 13 amod _ _ 13 institutions _ NOUN NNS _ 14 nsubj _ _ 14 waiting _ VERB VBG _ 3 advcl _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 sidelines _ NOUN NNS _ 14 nmod _ _ 18 until _ ADP IN _ 19 case _ _ 19 late _ ADJ JJ _ 14 advcl _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 day _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 Wall _ PROPN NNP _ 3 compound _ _ 3 Street _ PROPN NNP _ 4 nsubj _ _ 4 turned _ VERB VBD _ 11 advcl _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 however _ ADV RB _ 11 advmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 big _ ADJ JJ _ 10 amod _ _ 10 boys _ NOUN NNS _ 11 nsubj _ _ 11 entered _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 11 dobj _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 looking _ VERB VBG _ 11 advcl _ _ 16 for _ ADP IN _ 17 case _ _ 17 bargains _ NOUN NNS _ 15 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 5 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 swung _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 loss _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 third _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 5 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 while _ SCONJ IN _ 17 mark _ _ 15 NCNB _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 17 nsubj _ _ 17 reported _ VERB VBD _ 5 advcl _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 income _ NOUN NN _ 22 nsubj _ _ 20 more _ ADV RBR _ 22 advmod _ _ 21 than _ ADP IN _ 20 case _ _ 22 doubled _ VERB VBD _ 17 ccomp _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 and _ CONJ CC _ 17 cc _ _ 25 Security _ PROPN NNP _ 28 compound _ _ 26 Pacific _ PROPN NNP _ 28 compound _ _ 27 Corp. _ PROPN NNP _ 28 compound _ _ 28 net _ NOUN NN _ 29 nsubj _ _ 29 rose _ VERB VBD _ 17 conj _ _ 30 10 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 29 dobj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 0 root _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co _ PROPN NNP _ 2 conj _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 7 nsubj _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 as _ SCONJ IN _ 5 mark _ _ 5 expected _ VERB VBN _ 7 dep _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 posted _ VERB VBD _ 0 root _ _ 8 a _ DET DT _ 13 det _ _ 9 $ _ SYM $ _ 13 amod _ _ 10 1.82 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 net _ NOUN NN _ 13 compound _ _ 13 loss _ NOUN NN _ 7 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 quarter _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 reflecting _ VERB VBG _ 7 advcl _ _ 19 the _ DET DT _ 22 det _ _ 20 New _ PROPN NNP _ 22 compound _ _ 21 York _ PROPN NNP _ 22 compound _ _ 22 bank _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 decision _ NOUN NN _ 18 dobj _ _ 25 last _ ADJ JJ _ 26 amod _ _ 26 month _ NOUN NN _ 24 nmod:tmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 add _ VERB VB _ 24 acl _ _ 29 $ _ SYM $ _ 28 dobj _ _ 30 2 _ NUM CD _ 31 compound _ _ 31 billion _ NUM CD _ 29 nummod _ _ 32 to _ ADP TO _ 33 case _ _ 33 reserves _ NOUN NNS _ 28 nmod _ _ 34 for _ ADP IN _ 35 case _ _ 35 losses _ NOUN NNS _ 28 nmod _ _ 36 on _ ADP IN _ 37 case _ _ 37 loans _ NOUN NNS _ 35 nmod _ _ 38 to _ ADP TO _ 40 case _ _ 39 less-developed _ ADJ JJ _ 40 amod _ _ 40 countries _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 reserve _ NOUN NN _ 3 compound _ _ 3 addition _ NOUN NN _ 4 nsubj _ _ 4 placed _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 parent _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 Morgan _ PROPN NNP _ 11 compound _ _ 9 Guaranty _ PROPN NNP _ 11 compound _ _ 10 Trust _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 6 nmod _ _ 12 among _ ADP IN _ 17 case _ _ 13 a _ DET DT _ 17 det _ _ 14 few _ ADJ JJ _ 17 amod _ _ 15 major _ ADJ JJ _ 17 amod _ _ 16 U.S. _ PROPN NNP _ 17 compound _ _ 17 banks _ NOUN NNS _ 4 nmod _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 covered _ VERB VBN _ 17 acl:relcl _ _ 21 nearly _ ADV RB _ 27 advmod _ _ 22 all _ DET DT _ 27 det:predet _ _ 23 their _ PRON PRP$ _ 27 nmod:poss _ _ 24 medium _ NOUN NN _ 27 amod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 long-term _ ADJ JJ _ 24 conj _ _ 27 portfolios _ NOUN NNS _ 20 dobj _ _ 28 to _ ADP TO _ 30 case _ _ 29 less-developed _ ADJ JJ _ 30 amod _ _ 30 countries _ NOUN NNS _ 27 nmod _ _ 31 with _ ADP IN _ 32 case _ _ 32 reserves _ NOUN NNS _ 20 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 quarter _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 loss _ NOUN NN _ 6 nsubj _ _ 6 equals _ VERB VBZ _ 0 root _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 9.92 _ NUM CD _ 6 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 share _ NOUN NN _ 8 nmod:npmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Morgan _ PROPN NNP _ 7 nsubj _ _ 7 earned _ VERB VBD _ 0 root _ _ 8 $ _ SYM $ _ 7 dobj _ _ 9 233.6 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 1.25 _ NUM CD _ 8 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 George _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Salem _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 analyst _ NOUN NN _ 3 appos _ _ 6 at _ ADP IN _ 9 case _ _ 7 Prudential-Bache _ PROPN NNP _ 9 compound _ _ 8 Securities _ PROPN NNP _ 9 compound _ _ 9 Inc. _ PROPN NNP _ 5 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 called _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 results _ NOUN NNS _ 16 dep _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 mildly _ ADV RB _ 16 advmod _ _ 16 disappointing _ ADJ JJ _ 11 xcomp _ _ 17 . _ PUNCT . _ 11 punct _ _ 18 '' _ PUNCT '' _ 11 punct _ _ 1 Excluding _ VERB VBG _ 19 advcl _ _ 2 the _ DET DT _ 6 det _ _ 3 $ _ SYM $ _ 6 amod _ _ 4 2 _ NUM CD _ 5 compound _ _ 5 billion _ NUM CD _ 3 nummod _ _ 6 provision _ NOUN NN _ 1 dobj _ _ 7 and _ CONJ CC _ 1 cc _ _ 8 allowing _ VERB VBG _ 1 conj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 taxes _ NOUN NNS _ 8 nmod _ _ 12 Morgan _ PROPN NNP _ 13 nsubj _ _ 13 paid _ VERB VBD _ 11 acl:relcl _ _ 14 , _ PUNCT , _ 19 punct _ _ 15 earnings _ NOUN NNS _ 19 nsubj _ _ 16 were _ VERB VBD _ 19 cop _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 65 _ NUM CD _ 19 nummod _ _ 19 cents _ NOUN NNS _ 25 ccomp _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Salem _ PROPN NNP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN NN _ 7 compound _ _ 7 trading _ NOUN NN _ 11 nmod _ _ 8 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 Morgan _ PROPN NNP _ 11 nsubj _ _ 11 climbed _ VERB VBD _ 0 root _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 1.50 _ NUM CD _ 11 dobj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 44.125 _ NUM CD _ 11 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 Net _ ADJ JJ _ 3 amod _ _ 2 interest _ NOUN NN _ 3 compound _ _ 3 income _ NOUN NN _ 4 nsubj _ _ 4 sank _ VERB VBD _ 0 root _ _ 5 27 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 quarter _ NOUN NN _ 4 nmod _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 4 nmod _ _ 12 254 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 4 nmod _ _ 16 347 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 interest _ NOUN NN _ 3 compound _ _ 3 rate _ NOUN NN _ 21 nsubj _ _ 4 on _ ADP IN _ 6 case _ _ 5 short-term _ ADJ JJ _ 6 amod _ _ 6 funds _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 10 dobj _ _ 9 banks _ NOUN NNS _ 10 nsubj _ _ 10 borrow _ VERB VBP _ 6 acl:relcl _ _ 11 to _ PART TO _ 12 mark _ _ 12 finance _ VERB VB _ 10 xcomp _ _ 13 longer-term _ ADJ JJ _ 14 amod _ _ 14 loans _ NOUN NNS _ 12 dobj _ _ 15 to _ ADP TO _ 16 case _ _ 16 customers _ NOUN NNS _ 14 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 was _ VERB VBD _ 21 cop _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 sharply _ ADV RB _ 21 advmod _ _ 21 higher _ ADJ JJR _ 25 ccomp _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 Morgan _ PROPN NNP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Morgan _ PROPN NNP _ 2 nsubj _ _ 2 received _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 2 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 of _ ADP IN _ 8 case _ _ 7 interest _ NOUN NN _ 8 compound _ _ 8 payments _ NOUN NNS _ 3 nmod _ _ 9 on _ ADP IN _ 15 case _ _ 10 its _ PRON PRP$ _ 15 nmod:poss _ _ 11 medium _ ADJ JJ _ 15 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 long-term _ ADJ JJ _ 11 conj _ _ 14 Brazilian _ ADJ JJ _ 15 amod _ _ 15 loans _ NOUN NNS _ 8 nmod _ _ 16 ; _ PUNCT : _ 2 punct _ _ 17 had _ AUX VBD _ 20 aux _ _ 18 they _ PRON PRP _ 20 nsubj _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 accruing _ VERB VBG _ 32 advcl _ _ 21 interest _ NOUN NN _ 20 dobj _ _ 22 , _ PUNCT , _ 32 punct _ _ 23 net _ ADJ JJ _ 25 amod _ _ 24 interest _ NOUN NN _ 25 compound _ _ 25 income _ NOUN NN _ 32 nsubj _ _ 26 would _ AUX MD _ 32 aux _ _ 27 have _ AUX VB _ 32 aux _ _ 28 been _ VERB VBN _ 32 cop _ _ 29 $ _ SYM $ _ 32 nmod:npmod _ _ 30 35 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 higher _ ADJ JJR _ 38 ccomp _ _ 33 in _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 quarter _ NOUN NN _ 32 nmod _ _ 36 , _ PUNCT , _ 38 punct _ _ 37 Morgan _ PROPN NNP _ 38 nsubj _ _ 38 said _ VERB VBD _ 2 parataxis _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Such _ ADJ JJ _ 2 amod _ _ 2 loans _ NOUN NNS _ 6 nsubj _ _ 3 to _ ADP TO _ 4 case _ _ 4 Argentina _ PROPN NNP _ 2 nmod _ _ 5 also _ ADV RB _ 6 advmod _ _ 6 remain _ VERB VBP _ 0 root _ _ 7 classified _ ADJ JJ _ 6 xcomp _ _ 8 as _ ADP IN _ 9 case _ _ 9 non-accruing _ ADJ JJ _ 7 advcl _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 costing _ VERB VBG _ 6 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 bank _ NOUN NN _ 11 iobj _ _ 14 $ _ SYM $ _ 11 dobj _ _ 15 10 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 of _ ADP IN _ 19 case _ _ 18 interest _ NOUN NN _ 19 compound _ _ 19 income _ NOUN NN _ 14 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 period _ NOUN NN _ 11 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Income _ NOUN NN _ 7 nsubj _ _ 2 from _ ADP IN _ 3 case _ _ 3 sources _ NOUN NNS _ 1 nmod _ _ 4 other _ ADJ JJ _ 3 amod _ _ 5 than _ ADP IN _ 6 case _ _ 6 interest _ NOUN NN _ 4 nmod _ _ 7 climbed _ VERB VBD _ 0 root _ _ 8 12 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 7 nmod _ _ 12 414 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 reflecting _ VERB VBG _ 7 advcl _ _ 16 higher _ ADJ JJR _ 20 amod _ _ 17 corporate-finance _ NOUN NN _ 20 compound _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 other _ ADJ JJ _ 17 conj _ _ 20 fees _ NOUN NNS _ 15 dobj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 gains _ NOUN NNS _ 20 conj _ _ 23 on _ ADP IN _ 24 case _ _ 24 sales _ NOUN NNS _ 22 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 investment _ NOUN NN _ 27 compound _ _ 27 securities _ NOUN NNS _ 24 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 These _ DET DT _ 3 det _ _ 3 increases _ NOUN NNS _ 6 nsubjpass _ _ 4 were _ AUX VBD _ 6 auxpass _ _ 5 partly _ ADV RB _ 6 advmod _ _ 6 offset _ VERB VBN _ 15 ccomp _ _ 7 by _ ADP IN _ 11 case _ _ 8 lower _ ADJ JJR _ 11 amod _ _ 9 trading-related _ ADJ JJ _ 11 amod _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 income _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 bank _ NOUN NN _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Non-interest _ ADJ JJ _ 2 amod _ _ 2 expenses _ NOUN NNS _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 16 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 3 nmod _ _ 8 496 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 2 compound _ _ 2 Corp _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 NCNB _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 net _ ADJ JJ _ 5 amod _ _ 5 income _ NOUN NN _ 8 nsubj _ _ 6 more _ ADV RBR _ 8 advmod _ _ 7 than _ ADP IN _ 6 case _ _ 8 doubled _ VERB VBD _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 period _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 largely _ ADV RB _ 18 advmod _ _ 14 because _ ADP IN _ 18 case _ _ 15 of _ ADP IN _ 14 mwe _ _ 16 continued _ VERB VBN _ 18 amod _ _ 17 strong _ ADJ JJ _ 18 amod _ _ 18 performance _ NOUN NN _ 8 nmod _ _ 19 by _ ADP IN _ 24 case _ _ 20 the _ DET DT _ 21 det _ _ 21 bank _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 Texas _ PROPN NNP _ 24 compound _ _ 24 operations _ NOUN NNS _ 18 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Charlotte _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.C. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 earnings _ NOUN NNS _ 9 nsubj _ _ 9 rose _ VERB VBD _ 7 ccomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 143.6 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.45 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 from _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 9 nmod _ _ 23 58.9 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 or _ CONJ CC _ 22 cc _ _ 27 69 _ NUM CD _ 28 nummod _ _ 28 cents _ NOUN NNS _ 22 conj _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 , _ PUNCT , _ 22 punct _ _ 32 a _ DET DT _ 33 det _ _ 33 year _ NOUN NN _ 34 nmod:npmod _ _ 34 earlier _ ADV RBR _ 22 advmod _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 quarter _ NOUN NN _ 4 nsubj _ _ 4 included _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 gain _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 56.1 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 59 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 8 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 related _ VERB VBN _ 6 amod _ _ 19 to _ ADP TO _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 purchase _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 remaining _ ADJ JJ _ 26 amod _ _ 25 51 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 21 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 NCNB _ PROPN NNP _ 31 compound _ _ 29 Texas _ PROPN NNP _ 31 compound _ _ 30 National _ PROPN NNP _ 31 compound _ _ 31 Bank _ PROPN NNP _ 26 nmod _ _ 32 from _ ADP IN _ 37 case _ _ 33 the _ DET DT _ 37 det _ _ 34 Federal _ PROPN NNP _ 37 compound _ _ 35 Deposit _ PROPN NNP _ 37 compound _ _ 36 Insurance _ PROPN NNP _ 37 compound _ _ 37 Corp _ PROPN NNP _ 21 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 strong _ ADJ JJ _ 3 amod _ _ 3 performance _ NOUN NN _ 7 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 contrasted _ VERB VBD _ 0 root _ _ 8 with _ ADP IN _ 12 case _ _ 9 an _ DET DT _ 12 det _ _ 10 unexpectedly _ ADV RB _ 11 advmod _ _ 11 large _ ADJ JJ _ 12 amod _ _ 12 increase _ NOUN NN _ 7 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 size _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 NCNB _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 problem _ NOUN NN _ 20 compound _ _ 20 loans _ NOUN NNS _ 15 nmod _ _ 21 , _ PUNCT , _ 7 punct _ _ 22 particularly _ ADV RB _ 25 advmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 Southeast _ PROPN NNP _ 7 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 nonperforming _ VERB VBG _ 7 amod _ _ 7 assets _ NOUN NNS _ 8 nsubj _ _ 8 jumped _ VERB VBD _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 $ _ SYM $ _ 8 nmod _ _ 11 474.1 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 1.43 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 10 conj _ _ 17 of _ ADP IN _ 19 case _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 loans _ NOUN NNS _ 16 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 leases _ NOUN NNS _ 19 conj _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 from _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 8 nmod _ _ 25 232.8 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 1.13 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 24 conj _ _ 31 in _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 second _ ADJ JJ _ 34 amod _ _ 34 quarter _ NOUN NN _ 24 nmod _ _ 35 . _ PUNCT . _ 8 punct _ _ 1 Nonperformers _ NOUN NNS _ 2 nsubj _ _ 2 totaled _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 230.8 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 or _ CONJ CC _ 3 cc _ _ 8 1.27 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 3 conj _ _ 10 in _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 year-ago _ ADJ JJ _ 14 amod _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 2 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Included _ VERB VBN _ 0 root _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 increase _ NOUN NN _ 1 nmod _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 most _ ADV RBS _ 8 advmod _ _ 8 recent _ ADJ JJ _ 9 amod _ _ 9 quarter _ NOUN NN _ 4 nmod _ _ 10 is _ AUX VBZ _ 1 auxpass _ _ 11 a _ DET DT _ 15 det _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 33 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 loan _ NOUN NN _ 1 nsubjpass _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 19 dobj _ _ 18 NCNB _ PROPN NNP _ 19 nsubj _ _ 19 said _ VERB VBD _ 15 acl:relcl _ _ 20 it _ PRON PRP _ 22 nsubj _ _ 21 `` _ PUNCT `` _ 22 punct _ _ 22 expects _ VERB VBZ _ 19 ccomp _ _ 23 to _ PART TO _ 26 mark _ _ 24 be _ AUX VB _ 26 auxpass _ _ 25 fully _ ADV RB _ 26 advmod _ _ 26 repaid _ VERB VBN _ 22 xcomp _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 with _ ADP IN _ 30 case _ _ 29 no _ DET DT _ 30 neg _ _ 30 loss _ NOUN NN _ 26 nmod _ _ 31 , _ PUNCT , _ 26 punct _ _ 32 early _ ADV RB _ 26 advmod _ _ 33 in _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 fourth _ ADJ JJ _ 36 amod _ _ 36 quarter _ NOUN NN _ 32 nmod _ _ 37 . _ PUNCT . _ 1 punct _ _ 38 '' _ PUNCT '' _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 deterioration _ NOUN NN _ 6 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 credit _ NOUN NN _ 5 compound _ _ 5 quality _ NOUN NN _ 2 nmod _ _ 6 offset _ VERB VBD _ 0 root _ _ 7 strong _ ADJ JJ _ 9 amod _ _ 8 loan _ NOUN NN _ 9 compound _ _ 9 growth _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 17 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 9 nmod _ _ 13 in _ ADP IN _ 17 case _ _ 14 NCNB _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Southeast _ PROPN NNP _ 17 compound _ _ 17 operations _ NOUN NNS _ 9 nmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 as _ ADV RB _ 9 cc _ _ 20 well _ ADV RB _ 19 mwe _ _ 21 as _ ADP IN _ 19 mwe _ _ 22 a _ DET DT _ 25 det _ _ 23 28 _ NUM CD _ 24 compound _ _ 24 % _ SYM NN _ 25 amod _ _ 25 growth _ NOUN NN _ 9 conj _ _ 26 in _ ADP IN _ 27 case _ _ 27 deposits _ NOUN NNS _ 25 nmod _ _ 28 resulting _ VERB VBG _ 25 acl _ _ 29 from _ ADP IN _ 33 case _ _ 30 an _ DET DT _ 33 det _ _ 31 aggressive _ ADJ JJ _ 33 amod _ _ 32 marketing _ NOUN NN _ 33 compound _ _ 33 campaign _ NOUN NN _ 28 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 higher _ ADJ JJR _ 3 amod _ _ 3 rates _ NOUN NNS _ 8 nsubj _ _ 4 paid _ VERB VBN _ 3 acl _ _ 5 on _ ADP IN _ 6 case _ _ 6 deposits _ NOUN NNS _ 4 nmod _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 helped _ VERB VBD _ 0 root _ _ 9 squeeze _ VERB VB _ 8 ccomp _ _ 10 NCNB _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 net _ ADJ JJ _ 14 amod _ _ 13 interest _ NOUN NN _ 14 compound _ _ 14 margin _ NOUN NN _ 9 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Southeast _ PROPN NNP _ 14 nmod _ _ 18 to _ ADP TO _ 20 case _ _ 19 3.38 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 9 nmod _ _ 21 from _ ADP IN _ 23 case _ _ 22 3.80 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 9 nmod _ _ 24 a _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 26 nmod:npmod _ _ 26 earlier _ ADV RBR _ 23 advmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 Big _ PROPN NNP _ 5 compound _ _ 3 Board _ PROPN NNP _ 5 compound _ _ 4 composite _ NOUN NN _ 5 compound _ _ 5 trading _ NOUN NN _ 9 nmod _ _ 6 yesterday _ NOUN NN _ 9 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 NCNB _ PROPN NNP _ 9 nsubj _ _ 9 jumped _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 3.50 _ NUM CD _ 9 dobj _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 to _ ADP TO _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 51 _ NUM CD _ 9 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Results _ NOUN NNS _ 3 nsubjpass _ _ 2 were _ AUX VBD _ 3 auxpass _ _ 3 released _ VERB VBN _ 0 root _ _ 4 after _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 closed _ VERB VBD _ 3 advcl _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 3 compound _ _ 2 Texas _ PROPN NNP _ 3 compound _ _ 3 National _ PROPN NNP _ 19 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 formed _ VERB VBN _ 3 acl _ _ 6 from _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 remnants _ NOUN NNS _ 5 nmod _ _ 9 of _ ADP IN _ 8 dep _ _ 10 of _ ADP IN _ 15 case _ _ 11 the _ DET DT _ 15 det _ _ 12 failed _ VERB VBN _ 15 amod _ _ 13 First _ PROPN NNP _ 15 compound _ _ 14 RepublicBank _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 8 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 Dallas _ PROPN NNP _ 15 nmod _ _ 18 , _ PUNCT , _ 3 punct _ _ 19 contributed _ VERB VBD _ 0 root _ _ 20 $ _ SYM $ _ 19 dobj _ _ 21 76.9 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 to _ ADP TO _ 27 case _ _ 24 NCNB _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 bottom _ ADJ JJ _ 27 amod _ _ 27 line _ NOUN NN _ 19 nmod _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 third _ ADJ JJ _ 31 amod _ _ 31 quarter _ NOUN NN _ 19 nmod _ _ 32 . _ PUNCT . _ 19 punct _ _ 1 NCNB _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 third-quarter _ NOUN NN _ 5 compound _ _ 5 results _ NOUN NNS _ 6 nsubj _ _ 6 reflect _ VERB VBP _ 2 ccomp _ _ 7 100 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 earnings _ NOUN NNS _ 8 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Texas _ PROPN NNP _ 14 compound _ _ 14 operation _ NOUN NN _ 10 nmod _ _ 15 since _ ADP IN _ 16 case _ _ 16 Aug. _ PROPN NNP _ 10 nmod _ _ 17 1 _ NUM CD _ 16 nummod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 NCNB _ PROPN NNP _ 2 nsubj _ _ 2 raised _ VERB VBD _ 0 root _ _ 3 some _ DET DT _ 4 advmod _ _ 4 $ _ SYM $ _ 2 dobj _ _ 5 1.9 _ NUM CD _ 6 compound _ _ 6 billion _ NUM CD _ 4 nummod _ _ 7 in _ ADP IN _ 9 case _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 capital _ NOUN NN _ 4 nmod _ _ 10 during _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 quarter _ NOUN NN _ 2 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 complete _ VERB VB _ 2 dep _ _ 15 the _ DET DT _ 18 det _ _ 16 NCNB _ PROPN NNP _ 18 compound _ _ 17 Texas _ PROPN NNP _ 18 compound _ _ 18 purchase _ NOUN NN _ 14 dobj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 and _ CONJ CC _ 14 cc _ _ 21 to _ PART TO _ 22 mark _ _ 22 acquire _ VERB VB _ 14 conj _ _ 23 several _ ADJ JJ _ 26 amod _ _ 24 small _ ADJ JJ _ 26 amod _ _ 25 failed _ VERB VBN _ 26 amod _ _ 26 thrifts _ NOUN NNS _ 22 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 fill _ VERB VB _ 22 advcl _ _ 29 out _ ADP RP _ 28 compound:prt _ _ 30 its _ PRON PRP$ _ 32 nmod:poss _ _ 31 regional _ ADJ JJ _ 32 amod _ _ 32 franchise _ NOUN NN _ 28 dobj _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 banking _ NOUN NN _ 6 compound _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 purchased _ VERB VBD _ 7 ccomp _ _ 10 both _ DET DT _ 12 cc:preconj _ _ 11 Freedom _ PROPN NNP _ 12 compound _ _ 12 Savings _ PROPN NNP _ 9 dobj _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Loan _ PROPN NNP _ 15 compound _ _ 15 Association _ PROPN NNP _ 12 conj _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 Tampa _ PROPN NNP _ 12 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Fla. _ PROPN NNP _ 17 appos _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 and _ CONJ CC _ 12 cc _ _ 22 University _ PROPN NNP _ 25 compound _ _ 23 Federal _ PROPN NNP _ 25 compound _ _ 24 Savings _ PROPN NNP _ 25 compound _ _ 25 Association _ PROPN NNP _ 12 conj _ _ 26 of _ ADP IN _ 28 case _ _ 27 San _ PROPN NNP _ 28 compound _ _ 28 Antonio _ PROPN NNP _ 25 nmod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 Texas _ PROPN NNP _ 28 appos _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 for _ ADP IN _ 33 case _ _ 33 $ _ SYM $ _ 9 nmod _ _ 34 169.4 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 nine _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 11 nmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 NCNB _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 11 nsubj _ _ 11 climbed _ VERB VBD _ 0 root _ _ 12 65 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 $ _ SYM $ _ 11 nmod _ _ 16 310.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 3.30 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 from _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 11 nmod _ _ 27 188.2 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 or _ CONJ CC _ 26 cc _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 2.22 _ NUM CD _ 26 conj _ _ 33 a _ DET DT _ 34 det _ _ 34 share _ NOUN NN _ 32 nmod:npmod _ _ 35 , _ PUNCT , _ 26 punct _ _ 36 a _ DET DT _ 37 det _ _ 37 year _ NOUN NN _ 38 nmod:npmod _ _ 38 earlier _ ADV RBR _ 26 advmod _ _ 39 . _ PUNCT . _ 11 punct _ _ 1 Security _ PROPN NNP _ 3 compound _ _ 2 Pacific _ PROPN NNP _ 3 compound _ _ 3 Corp _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Security _ PROPN NNP _ 2 compound _ _ 2 Pacific _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 earnings _ NOUN NNS _ 5 compound _ _ 5 growth _ NOUN NN _ 6 nsubj _ _ 6 slowed _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 18 det _ _ 14 Los _ PROPN NNP _ 18 compound _ _ 15 Angeles _ PROPN NNP _ 18 compound _ _ 16 bank _ NOUN NN _ 18 compound _ _ 17 holding _ VERB VBG _ 18 amod _ _ 18 company _ NOUN NN _ 21 nsubj _ _ 19 was _ VERB VBD _ 21 cop _ _ 20 still _ ADV RB _ 21 advmod _ _ 21 able _ ADJ JJ _ 6 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 post _ VERB VB _ 21 xcomp _ _ 24 a _ DET DT _ 27 det _ _ 25 10 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 27 amod _ _ 27 increase _ NOUN NN _ 23 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 net _ ADJ JJ _ 30 amod _ _ 30 income _ NOUN NN _ 27 nmod _ _ 31 because _ ADP IN _ 34 case _ _ 32 of _ ADP IN _ 31 mwe _ _ 33 robust _ ADJ JJ _ 34 amod _ _ 34 growth _ NOUN NN _ 23 nmod _ _ 35 in _ ADP IN _ 37 case _ _ 36 residential _ ADJ JJ _ 37 amod _ _ 37 real-estate _ NOUN NN _ 34 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 consumer _ NOUN NN _ 40 compound _ _ 40 loans _ NOUN NNS _ 37 conj _ _ 41 . _ PUNCT . _ 6 punct _ _ 1 Net _ ADJ JJ _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 185.1 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 or _ CONJ CC _ 4 cc _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 1.55 _ NUM CD _ 4 conj _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 2 nmod _ _ 16 167.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.47 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 a _ DET DT _ 26 det _ _ 26 year _ NOUN NN _ 27 nmod:npmod _ _ 27 earlier _ ADV RBR _ 15 advmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 gain _ NOUN NN _ 6 nsubj _ _ 6 resulted _ VERB VBD _ 3 ccomp _ _ 7 mainly _ ADV RB _ 6 advmod _ _ 8 from _ ADP IN _ 13 case _ _ 9 a _ DET DT _ 13 det _ _ 10 $ _ SYM $ _ 13 amod _ _ 11 54 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 increase _ NOUN NN _ 6 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 net _ ADJ JJ _ 17 amod _ _ 16 interest _ NOUN NN _ 17 compound _ _ 17 income _ NOUN NN _ 13 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 reflecting _ VERB VBG _ 6 xcomp _ _ 20 a _ DET DT _ 23 det _ _ 21 33 _ NUM CD _ 22 compound _ _ 22 % _ SYM NN _ 23 amod _ _ 23 increase _ NOUN NN _ 19 dobj _ _ 24 in _ ADP IN _ 27 case _ _ 25 real _ NOUN NN _ 27 compound _ _ 26 estate _ NOUN NN _ 27 compound _ _ 27 loans _ NOUN NNS _ 23 nmod _ _ 28 -LRB- _ PUNCT -LRB- _ 30 punct _ _ 29 mainly _ ADV RB _ 30 advmod _ _ 30 residential _ ADJ JJ _ 27 dep _ _ 31 -RRB- _ PUNCT -RRB- _ 30 punct _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 and _ CONJ CC _ 23 cc _ _ 34 a _ DET DT _ 37 det _ _ 35 19 _ NUM CD _ 36 compound _ _ 36 % _ SYM NN _ 37 amod _ _ 37 rise _ NOUN NN _ 23 conj _ _ 38 in _ ADP IN _ 40 case _ _ 39 consumer _ NOUN NN _ 40 compound _ _ 40 loans _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 These _ DET DT _ 3 det _ _ 2 high-yielding _ ADJ JJ _ 3 amod _ _ 3 loans _ NOUN NNS _ 6 nsubj _ _ 4 in _ ADP IN _ 5 case _ _ 5 effect _ NOUN NN _ 6 advmod _ _ 6 replaced _ VERB VBD _ 0 root _ _ 7 some _ DET DT _ 9 det _ _ 8 low-yielding _ ADJ JJ _ 9 amod _ _ 9 assets _ NOUN NNS _ 6 dobj _ _ 10 such _ ADJ JJ _ 13 case _ _ 11 as _ ADP IN _ 10 mwe _ _ 12 inter-bank _ ADJ JJ _ 13 amod _ _ 13 loans _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 17 nsubjpass _ _ 16 were _ AUX VBD _ 17 auxpass _ _ 17 allowed _ VERB VBN _ 13 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 decrease _ VERB VB _ 17 xcomp _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 Security _ PROPN NNP _ 6 compound _ _ 6 Pacific _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 net _ ADJ JJ _ 10 amod _ _ 9 interest _ NOUN NN _ 10 compound _ _ 10 margin _ NOUN NN _ 11 nsubj _ _ 11 fell _ VERB VBD _ 0 root _ _ 12 only _ ADV RB _ 13 advmod _ _ 13 13 _ NUM CD _ 15 nummod _ _ 14 basis _ NOUN NN _ 15 compound _ _ 15 points _ NOUN NNS _ 11 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 20 det _ _ 18 more _ ADV RBR _ 19 advmod _ _ 19 mild _ ADJ JJ _ 20 amod _ _ 20 decrease _ NOUN NN _ 15 appos _ _ 21 than _ ADP IN _ 24 case _ _ 22 some _ DET DT _ 24 det _ _ 23 major _ ADJ JJ _ 24 amod _ _ 24 banks _ NOUN NNS _ 20 nmod _ _ 25 outside _ ADP IN _ 26 case _ _ 26 California _ PROPN NNP _ 24 nmod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 which _ PRON WDT _ 31 nsubj _ _ 29 have _ AUX VBP _ 31 aux _ _ 30 been _ AUX VBN _ 31 aux _ _ 31 reporting _ VERB VBG _ 24 acl:relcl _ _ 32 more _ ADV RBR _ 33 advmod _ _ 33 sluggish _ ADJ JJ _ 34 amod _ _ 34 earnings _ NOUN NNS _ 31 dobj _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 Security _ PROPN NNP _ 3 compound _ _ 2 Pacific _ PROPN NNP _ 3 compound _ _ 3 shares _ NOUN NNS _ 4 nsubj _ _ 4 closed _ VERB VBD _ 0 root _ _ 5 at _ ADP IN _ 7 case _ _ 6 $ _ SYM $ _ 7 dep _ _ 7 44.625 _ NUM CD _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 down _ ADV RB _ 4 advmod _ _ 10 37.5 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 in _ ADP IN _ 17 case _ _ 14 Big _ PROPN NNP _ 17 compound _ _ 15 Board _ PROPN NNP _ 17 compound _ _ 16 composite _ ADJ JJ _ 17 amod _ _ 17 trading _ NOUN NN _ 4 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 earnings _ NOUN NNS _ 3 nsubj _ _ 3 represent _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 0.89 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 return _ NOUN NN _ 3 dobj _ _ 8 on _ ADP IN _ 9 case _ _ 9 assets _ NOUN NNS _ 7 nmod _ _ 10 for _ ADP IN _ 12 case _ _ 11 Security _ PROPN NNP _ 12 compound _ _ 12 Pacific _ PROPN NNP _ 7 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 and _ CONJ CC _ 7 cc _ _ 15 an _ DET DT _ 18 det _ _ 16 18.9 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 return _ NOUN NN _ 7 conj _ _ 19 on _ ADP IN _ 20 case _ _ 20 equity _ NOUN NN _ 18 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 loan _ NOUN NN _ 3 compound _ _ 3 growth _ NOUN NN _ 4 nsubj _ _ 4 offset _ VERB VBD _ 0 root _ _ 5 continuing _ VERB VBG _ 8 amod _ _ 6 real-estate _ NOUN NN _ 8 compound _ _ 7 loan _ NOUN NN _ 8 compound _ _ 8 losses _ NOUN NNS _ 4 dobj _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 depressed _ VERB VBN _ 13 amod _ _ 12 Arizona _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 8 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Security _ PROPN NNP _ 2 compound _ _ 2 Pacific _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 33 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 increase _ NOUN NN _ 3 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 net _ ADJ JJ _ 11 amod _ _ 10 credit _ NOUN NN _ 11 compound _ _ 11 losses _ NOUN NNS _ 7 nmod _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 quarter _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 to _ ADP TO _ 17 case _ _ 17 $ _ SYM $ _ 7 nmod _ _ 18 109 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 from _ ADP IN _ 21 case _ _ 21 $ _ SYM $ _ 7 nmod _ _ 22 81.9 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 in _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 year-ago _ ADJ JJ _ 27 amod _ _ 27 period _ NOUN NN _ 21 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Nonperforming _ VERB VBG _ 2 amod _ _ 2 loans _ NOUN NNS _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 slightly _ ADV RB _ 3 advmod _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 3 nmod _ _ 7 1.75 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 at _ ADP IN _ 10 case _ _ 10 Sept. _ PROPN NNP _ 6 nmod _ _ 11 30 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 3 nmod _ _ 15 1.7 _ NUM CD _ 16 compound _ _ 16 billion _ NUM CD _ 14 nummod _ _ 17 a _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 19 nmod:npmod _ _ 19 ago _ ADV RB _ 14 advmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Security _ PROPN NNP _ 2 compound _ _ 2 Pacific _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 loan-loss _ ADJ JJ _ 5 amod _ _ 5 provision _ NOUN NN _ 6 nsubj _ _ 6 was _ VERB VBD _ 0 root _ _ 7 down _ ADV RB _ 6 advmod _ _ 8 22 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 nmod:npmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 or _ CONJ CC _ 9 cc _ _ 12 $ _ SYM $ _ 9 conj _ _ 13 30.4 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 because _ SCONJ IN _ 18 mark _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 added _ VERB VBD _ 6 advcl _ _ 19 to _ ADP TO _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 foreign-debt _ ADJ JJ _ 22 amod _ _ 22 reserve _ NOUN NN _ 18 nmod _ _ 23 the _ DET DT _ 24 det _ _ 24 year _ NOUN NN _ 25 nmod:npmod _ _ 25 before _ ADV RB _ 18 advmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 Non-interest _ ADJ JJ _ 2 amod _ _ 2 income _ NOUN NN _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 6 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 quarter _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 mainly _ ADV RB _ 15 advmod _ _ 11 because _ ADP IN _ 15 case _ _ 12 of _ ADP IN _ 11 mwe _ _ 13 an _ DET DT _ 15 det _ _ 14 unusual _ ADJ JJ _ 15 amod _ _ 15 gain _ NOUN NN _ 3 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 year _ NOUN NN _ 18 nmod:npmod _ _ 18 earlier _ ADV RBR _ 15 advmod _ _ 19 from _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 sale _ NOUN NN _ 15 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 Hong _ PROPN NNP _ 26 compound _ _ 24 Kong _ PROPN NNP _ 26 compound _ _ 25 banking _ NOUN NN _ 26 compound _ _ 26 operations _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Non-interest _ ADJ JJ _ 2 amod _ _ 2 expense _ NOUN NN _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 4 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 3 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 period _ NOUN NN _ 3 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 net _ ADJ JJ _ 7 nsubj _ _ 7 rose _ VERB VBD _ 0 root _ _ 8 17 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 to _ ADP TO _ 13 case _ _ 11 $ _ SYM $ _ 13 dep _ _ 12 548.9 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 7 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 4.67 _ NUM CD _ 13 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 13 punct _ _ 21 from _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 7 nmod _ _ 23 469.4 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 or _ CONJ CC _ 22 cc _ _ 27 $ _ SYM $ _ 28 dep _ _ 28 4.13 _ NUM CD _ 22 conj _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 , _ PUNCT , _ 22 punct _ _ 32 a _ DET DT _ 33 det _ _ 33 year _ NOUN NN _ 34 nmod:npmod _ _ 34 earlier _ ADV RBR _ 22 advmod _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 LIN _ PROPN NNP _ 3 compound _ _ 2 Broadcasting _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 wo _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 take _ VERB VB _ 4 ccomp _ _ 9 a _ DET DT _ 10 det _ _ 10 position _ NOUN NN _ 8 dobj _ _ 11 on _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 revised _ VERB VBN _ 15 amod _ _ 14 tender _ NOUN NN _ 15 compound _ _ 15 offer _ NOUN NN _ 10 nmod _ _ 16 by _ ADP IN _ 20 case _ _ 17 McCaw _ PROPN NNP _ 20 compound _ _ 18 Cellular _ PROPN NNP _ 20 compound _ _ 19 Communications _ PROPN NNP _ 20 compound _ _ 20 Inc. _ PROPN NNP _ 15 nmod _ _ 21 to _ PART TO _ 22 mark _ _ 22 buy _ VERB VB _ 15 acl _ _ 23 LIN _ PROPN NNP _ 22 dobj _ _ 24 and _ CONJ CC _ 8 cc _ _ 25 has _ AUX VBZ _ 26 aux _ _ 26 asked _ VERB VBN _ 8 conj _ _ 27 for _ ADP IN _ 28 case _ _ 28 clarification _ NOUN NN _ 26 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 offer _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 offer _ NOUN NN _ 19 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 seeks _ VERB VBZ _ 3 acl:relcl _ _ 7 50.3 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 of _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 cellular _ ADJ JJ _ 14 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 broadcasting _ NOUN NN _ 11 conj _ _ 14 concern _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 for _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 125 _ NUM CD _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 for _ ADP IN _ 26 case _ _ 23 22 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 26 nummod _ _ 25 LIN _ PROPN NNP _ 26 compound _ _ 26 shares _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 19 punct _ _ 1 McCaw _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 revised _ VERB VBN _ 5 amod _ _ 4 tender _ NOUN NN _ 5 compound _ _ 5 offer _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 require _ VERB VB _ 0 root _ _ 8 McCaw _ PROPN NNP _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 begin _ VERB VB _ 7 xcomp _ _ 11 an _ DET DT _ 13 det _ _ 12 auction _ NOUN NN _ 13 compound _ _ 13 process _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 July _ PROPN NNP _ 10 nmod _ _ 16 1994 _ NUM CD _ 15 nummod _ _ 17 that _ PRON WDT _ 19 nsubj _ _ 18 would _ AUX MD _ 19 aux _ _ 19 buy _ VERB VB _ 10 dep _ _ 20 out _ ADP RP _ 19 compound:prt _ _ 21 remaining _ ADJ JJ _ 22 amod _ _ 22 holders _ NOUN NNS _ 19 dobj _ _ 23 at _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 per-share _ ADJ JJ _ 26 amod _ _ 26 price _ NOUN NN _ 19 nmod _ _ 27 roughly _ ADV RB _ 28 advmod _ _ 28 equivalent _ ADJ JJ _ 26 amod _ _ 29 to _ ADP TO _ 36 mark _ _ 30 what _ PRON WP _ 38 dobj _ _ 31 a _ DET DT _ 33 det _ _ 32 third _ ADJ JJ _ 33 amod _ _ 33 party _ NOUN NN _ 36 nsubj _ _ 34 might _ AUX MD _ 36 aux _ _ 35 then _ ADV RB _ 36 advmod _ _ 36 have _ VERB VB _ 28 advcl _ _ 37 to _ PART TO _ 38 mark _ _ 38 pay _ VERB VB _ 36 xcomp _ _ 39 for _ ADP IN _ 40 case _ _ 40 all _ DET DT _ 38 nmod _ _ 41 of _ ADP IN _ 42 case _ _ 42 LIN _ PROPN NNP _ 40 nmod _ _ 43 . _ PUNCT . _ 7 punct _ _ 1 LIN _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 asking _ VERB VBG _ 0 root _ _ 4 McCaw _ PROPN NNP _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 clarify _ VERB VB _ 3 xcomp _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 tender _ NOUN NN _ 9 compound _ _ 9 offer _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 12 nsubj _ _ 12 challenges _ VERB VBZ _ 9 acl:relcl _ _ 13 an _ DET DT _ 14 det _ _ 14 agreement _ NOUN NN _ 12 dobj _ _ 15 between _ ADP IN _ 17 case _ _ 16 BellSouth _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 14 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 LIN _ PROPN NNP _ 17 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 merge _ VERB VB _ 14 acl _ _ 22 their _ PRON PRP$ _ 24 nmod:poss _ _ 23 cellular-telephone _ ADJ JJ _ 24 amod _ _ 24 businesses _ NOUN NNS _ 21 dobj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 BellSouth _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 notified _ VERB VBN _ 0 root _ _ 4 LIN _ PROPN NNP _ 3 dobj _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 it _ PRON PRP _ 10 nsubj _ _ 7 would _ AUX MD _ 10 aux _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 shortly _ ADV RB _ 10 advmod _ _ 10 respond _ VERB VB _ 3 ccomp _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 McCaw _ PROPN NNP _ 14 compound _ _ 14 proposal _ NOUN NN _ 10 nmod _ _ 15 in _ ADP IN _ 21 case _ _ 16 as _ ADV RB _ 17 advmod _ _ 17 full _ ADJ JJ _ 21 amod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 effective _ ADJ JJ _ 17 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 manner _ NOUN NN _ 10 nmod _ _ 22 as _ SCONJ IN _ 24 mark _ _ 23 is _ AUX VBZ _ 24 auxpass _ _ 24 warranted _ VERB VBN _ 21 dep _ _ 25 . _ PUNCT . _ 3 punct _ _ 26 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 LIN _ PROPN NNP _ 3 compound _ _ 3 board _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 holders _ NOUN NNS _ 8 nsubjpass _ _ 6 may _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 misled _ VERB VBN _ 4 ccomp _ _ 9 by _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 provision _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 McCaw _ PROPN NNP _ 15 compound _ _ 15 proposal _ NOUN NN _ 11 nmod _ _ 16 that _ ADP IN _ 18 nsubj _ _ 17 `` _ PUNCT `` _ 18 punct _ _ 18 guarantees _ NOUN NNS _ 11 acl:relcl _ _ 19 '' _ PUNCT '' _ 18 punct _ _ 20 private _ ADJ JJ _ 22 amod _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 value _ NOUN NN _ 18 dobj _ _ 23 after _ ADP IN _ 25 case _ _ 24 five _ NUM CD _ 25 nummod _ _ 25 years _ NOUN NNS _ 18 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 remaining _ ADJ JJ _ 29 amod _ _ 29 shares _ NOUN NNS _ 18 nmod _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 McCaw _ PROPN NNP _ 2 nsubj _ _ 2 has _ VERB VBZ _ 22 ccomp _ _ 3 `` _ PUNCT `` _ 2 punct _ _ 4 no _ DET DT _ 5 neg _ _ 5 obligation _ NOUN NN _ 2 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 purchase _ NOUN NN _ 5 acl _ _ 8 and _ CONJ CC _ 2 cc _ _ 9 the _ DET DT _ 10 det _ _ 10 definition _ NOUN NN _ 16 nsubj _ _ 11 of _ ADP IN _ 14 case _ _ 12 private _ ADJ JJ _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 value _ NOUN NN _ 10 nmod _ _ 15 is _ VERB VBZ _ 16 cop _ _ 16 uncertain _ ADJ JJ _ 2 conj _ _ 17 , _ PUNCT , _ 22 punct _ _ 18 '' _ PUNCT '' _ 22 punct _ _ 19 the _ DET DT _ 21 det _ _ 20 LIN _ PROPN NNP _ 21 compound _ _ 21 board _ NOUN NN _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 board _ NOUN NN _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 McCaw _ PROPN NNP _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 able _ ADJ JJ _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 control _ VERB VB _ 8 xcomp _ _ 11 LIN _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 operations _ NOUN NNS _ 10 dobj _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 could _ AUX MD _ 20 aux _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 `` _ PUNCT `` _ 20 punct _ _ 18 therefore _ ADV RB _ 20 advmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 operate _ VERB VB _ 8 conj _ _ 21 LIN _ PROPN NNP _ 20 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 manner _ NOUN NN _ 20 nmod _ _ 25 which _ PRON WDT _ 27 nsubj _ _ 26 could _ AUX MD _ 27 aux _ _ 27 diminish _ VERB VB _ 24 acl:relcl _ _ 28 its _ PRON PRP$ _ 31 nmod:poss _ _ 29 private _ ADJ JJ _ 31 amod _ _ 30 market _ NOUN NN _ 31 compound _ _ 31 value _ NOUN NN _ 27 dobj _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 attractiveness _ NOUN NN _ 31 conj _ _ 34 to _ ADP TO _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 third-party _ ADJ JJ _ 37 amod _ _ 37 purchaser _ NOUN NN _ 33 nmod _ _ 38 in _ ADP IN _ 40 case _ _ 39 five _ NUM CD _ 40 nummod _ _ 40 years _ NOUN NNS _ 27 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 42 '' _ PUNCT '' _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 national _ ADJ JJ _ 4 amod _ _ 3 over-the-counter _ ADJ JJ _ 4 amod _ _ 4 trading _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 LIN _ PROPN NNP _ 7 nsubj _ _ 7 closed _ VERB VBD _ 0 root _ _ 8 at _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 104.75 _ NUM CD _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 down _ ADV RB _ 7 advmod _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 2.75 _ NUM CD _ 12 nmod:npmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 institutional _ ADJ JJ _ 5 amod _ _ 5 investors _ NOUN NNS _ 2 nmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 Telerate _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 5 nmod _ _ 9 said _ VERB VBD _ 0 root _ _ 10 that _ SCONJ IN _ 29 mark _ _ 11 Dow _ PROPN NNP _ 12 compound _ _ 12 Jones _ PROPN NNP _ 18 nmod:poss _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Co. _ PROPN NNP _ 12 conj _ _ 15 's _ PART POS _ 14 case _ _ 16 $ _ SYM $ _ 18 amod _ _ 17 18-a-share _ ADJ JJ _ 16 dep _ _ 18 offer _ NOUN NN _ 29 nsubj _ _ 19 for _ ADP IN _ 25 case _ _ 20 the _ DET DT _ 25 det _ _ 21 electronic _ ADJ JJ _ 25 amod _ _ 22 financial _ ADJ JJ _ 25 amod _ _ 23 information _ NOUN NN _ 25 compound _ _ 24 services _ NOUN NNS _ 25 compound _ _ 25 company _ NOUN NN _ 18 nmod _ _ 26 is _ VERB VBZ _ 29 cop _ _ 27 `` _ PUNCT `` _ 29 punct _ _ 28 grossly _ ADV RB _ 29 advmod _ _ 29 inadequate _ ADJ JJ _ 9 ccomp _ _ 30 . _ PUNCT . _ 9 punct _ _ 31 '' _ PUNCT '' _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 letter _ NOUN NN _ 32 nmod _ _ 4 filed _ VERB VBN _ 3 acl _ _ 5 with _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 10 det _ _ 7 Securities _ PROPN NNP _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Exchange _ PROPN NNP _ 7 conj _ _ 10 Commission _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 32 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 group _ NOUN NN _ 32 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 16 nsubj _ _ 16 holds _ VERB VBZ _ 13 acl:relcl _ _ 17 about _ ADV RB _ 19 advmod _ _ 18 4.5 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 21 nummod _ _ 20 Telerate _ PROPN NNP _ 21 compound _ _ 21 shares _ NOUN NNS _ 16 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 or _ CONJ CC _ 21 cc _ _ 24 about _ ADV RB _ 25 advmod _ _ 25 4.7 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 21 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 shares _ NOUN NNS _ 26 nmod _ _ 30 outstanding _ ADJ JJ _ 29 amod _ _ 31 , _ PUNCT , _ 13 punct _ _ 32 said _ VERB VBD _ 0 root _ _ 33 `` _ PUNCT `` _ 32 punct _ _ 34 ... _ PUNCT : _ 32 punct _ _ 35 at _ ADP IN _ 36 case _ _ 36 present _ ADJ JJ _ 40 nmod _ _ 37 none _ NOUN NN _ 40 nsubj _ _ 38 of _ ADP IN _ 39 case _ _ 39 us _ PRON PRP _ 37 nmod _ _ 40 believes _ VERB VBZ _ 32 parataxis _ _ 41 an _ DET DT _ 42 det _ _ 42 offer _ NOUN NN _ 52 nsubj _ _ 43 for _ ADP IN _ 46 case _ _ 44 less _ ADJ JJR _ 46 advmod _ _ 45 than _ ADP IN _ 44 mwe _ _ 46 $ _ SYM $ _ 42 nmod _ _ 47 25 _ NUM CD _ 46 nummod _ _ 48 per _ ADP IN _ 49 case _ _ 49 share _ NOUN NN _ 46 nmod _ _ 50 would _ AUX MD _ 52 aux _ _ 51 be _ VERB VB _ 52 cop _ _ 52 fair _ ADJ JJ _ 40 ccomp _ _ 53 and _ CONJ CC _ 40 cc _ _ 54 some _ DET DT _ 55 nsubj _ _ 55 believe _ VERB VBP _ 40 conj _ _ 56 that _ DET DT _ 61 mark _ _ 57 $ _ SYM $ _ 58 dep _ _ 58 25 _ NUM CD _ 61 nsubj _ _ 59 is _ VERB VBZ _ 61 cop _ _ 60 too _ ADV RB _ 61 advmod _ _ 61 low _ ADJ JJ _ 55 ccomp _ _ 62 . _ PUNCT . _ 32 punct _ _ 63 '' _ PUNCT '' _ 32 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 letter _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 dated _ VERB VBN _ 0 root _ _ 5 Oct. _ PROPN NNP _ 4 nmod:tmod _ _ 6 6 _ NUM CD _ 5 nummod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 composite _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 13 nmod _ _ 4 on _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 New _ PROPN NNP _ 9 compound _ _ 7 York _ PROPN NNP _ 9 compound _ _ 8 Stock _ PROPN NNP _ 9 compound _ _ 9 Exchange _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Telerate _ PROPN NNP _ 12 compound _ _ 12 shares _ NOUN NNS _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 18.875 _ NUM CD _ 13 nmod _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 down _ ADV RB _ 13 advmod _ _ 20 75 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 19 nmod:npmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 Dow _ PROPN NNP _ 2 compound _ _ 2 Jones _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 publisher _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 9 case _ _ 6 The _ DET DT _ 9 det _ _ 7 Wall _ PROPN NNP _ 9 compound _ _ 8 Street _ PROPN NNP _ 9 compound _ _ 9 Journal _ PROPN NNP _ 4 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 launched _ VERB VBN _ 0 root _ _ 13 an _ DET DT _ 23 det _ _ 14 $ _ SYM $ _ 23 amod _ _ 15 18-a-share _ ADJ JJ _ 14 dep _ _ 16 , _ PUNCT , _ 14 punct _ _ 17 or _ CONJ CC _ 14 cc _ _ 18 $ _ SYM $ _ 14 conj _ _ 19 576 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 tender _ NOUN NN _ 23 compound _ _ 23 offer _ NOUN NN _ 12 dobj _ _ 24 to _ PART TO _ 25 mark _ _ 25 acquire _ VERB VB _ 23 acl _ _ 26 the _ DET DT _ 29 det _ _ 27 remaining _ ADJ JJ _ 29 amod _ _ 28 Telerate _ PROPN NNP _ 29 compound _ _ 29 shares _ NOUN NNS _ 25 dobj _ _ 30 outstanding _ ADJ JJ _ 29 amod _ _ 31 ; _ PUNCT : _ 12 punct _ _ 32 Dow _ PROPN NNP _ 33 compound _ _ 33 Jones _ PROPN NNP _ 34 nsubj _ _ 34 owns _ VERB VBZ _ 12 parataxis _ _ 35 67 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 34 dobj _ _ 37 of _ ADP IN _ 38 case _ _ 38 Telerate _ PROPN NNP _ 36 nmod _ _ 39 . _ PUNCT . _ 12 punct _ _ 1 Telerate _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 rejected _ VERB VBN _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 offer _ NOUN NN _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 expires _ VERB VBZ _ 5 acl:relcl _ _ 9 Nov. _ PROPN NNP _ 8 nmod:tmod _ _ 10 3 _ NUM CD _ 9 nummod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 3 nsubj _ _ 3 includes _ VERB VBZ _ 0 root _ _ 4 Putnam _ PROPN NNP _ 5 compound _ _ 5 Cos. _ PROPN NNP _ 3 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 various _ ADJ JJ _ 8 amod _ _ 8 affiliates _ NOUN NNS _ 5 conj _ _ 9 based _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 11 case _ _ 11 Boston _ PROPN NNP _ 9 nmod _ _ 12 ; _ PUNCT : _ 5 punct _ _ 13 Wells _ PROPN NNP _ 15 compound _ _ 14 Fargo _ PROPN NNP _ 15 compound _ _ 15 Bank _ PROPN NNP _ 5 conj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 San _ PROPN NNP _ 18 compound _ _ 18 Francisco _ PROPN NNP _ 15 appos _ _ 19 ; _ PUNCT : _ 5 punct _ _ 20 the _ DET DT _ 25 det _ _ 21 California _ PROPN NNP _ 25 compound _ _ 22 Public _ PROPN NNP _ 25 compound _ _ 23 Employees _ PROPN NNP _ 25 compound _ _ 24 Retirement _ PROPN NNP _ 25 compound _ _ 25 System _ PROPN NNP _ 5 conj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Sacramento _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Calif. _ PROPN NNP _ 27 appos _ _ 30 , _ PUNCT , _ 5 punct _ _ 31 and _ CONJ CC _ 5 cc _ _ 32 T. _ PROPN NNP _ 36 compound _ _ 33 Rowe _ PROPN NNP _ 36 compound _ _ 34 Price _ PROPN NNP _ 36 compound _ _ 35 Associates _ PROPN NNP _ 36 compound _ _ 36 Inc. _ PROPN NNP _ 5 conj _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 Baltimore _ PROPN NNP _ 36 appos _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 issues _ NOUN NNS _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 group _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 letter _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 9 ccomp _ _ 12 `` _ PUNCT `` _ 11 punct _ _ 13 concerns _ VERB VBZ _ 11 dobj _ _ 14 as _ ADP IN _ 21 case _ _ 15 to _ ADP TO _ 21 mark _ _ 16 whether _ SCONJ IN _ 21 mark _ _ 17 Dow _ PROPN NNP _ 18 compound _ _ 18 Jones _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 offer _ NOUN NN _ 21 nsubj _ _ 21 meets _ VERB VBZ _ 13 acl _ _ 22 the _ DET DT _ 24 det _ _ 23 applicable _ ADJ JJ _ 24 amod _ _ 24 requirements _ NOUN NNS _ 21 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 procedural _ ADJ JJ _ 27 amod _ _ 27 fairness _ NOUN NN _ 24 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 29 '' _ PUNCT '' _ 9 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 Dow _ PROPN NNP _ 5 compound _ _ 5 Jones _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 he _ PRON PRP _ 10 nsubj _ _ 8 had _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 seen _ VERB VBN _ 6 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 group _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 filing _ NOUN NN _ 10 dobj _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 but _ CONJ CC _ 6 cc _ _ 17 added _ VERB VBD _ 6 conj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 `` _ PUNCT `` _ 17 punct _ _ 20 obviously _ ADV RB _ 23 advmod _ _ 21 Dow _ PROPN NNP _ 22 compound _ _ 22 Jones _ PROPN NNP _ 23 nsubj _ _ 23 disagrees _ VERB VBZ _ 17 ccomp _ _ 24 with _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 conclusions _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Our _ PRON PRP$ _ 2 nmod:poss _ _ 2 offer _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 buy _ VERB VB _ 3 xcomp _ _ 6 any _ DET DT _ 9 amod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 all _ DET DT _ 6 conj _ _ 9 shares _ NOUN NNS _ 5 dobj _ _ 10 tendered _ VERB VBN _ 9 acl _ _ 11 at _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 18 _ NUM CD _ 10 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 5 compound _ _ 2 Trade _ PROPN NNP _ 5 compound _ _ 3 Representative _ PROPN NNP _ 5 compound _ _ 4 Carla _ PROPN NNP _ 5 compound _ _ 5 Hills _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 10 det _ _ 8 first _ ADJ JJ _ 10 amod _ _ 9 dispute-settlement _ ADJ JJ _ 10 amod _ _ 10 panel _ NOUN NN _ 22 nsubj _ _ 11 set _ VERB VBD _ 10 acl _ _ 12 up _ ADP RP _ 11 compound:prt _ _ 13 under _ ADP IN _ 20 case _ _ 14 the _ DET DT _ 20 det _ _ 15 U.S.-Canadian _ ADJ JJ _ 20 amod _ _ 16 `` _ PUNCT `` _ 20 punct _ _ 17 free _ ADJ JJ _ 20 amod _ _ 18 trade _ NOUN NN _ 20 compound _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 agreement _ NOUN NN _ 11 nmod _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 ruled _ VERB VBN _ 6 ccomp _ _ 23 that _ SCONJ IN _ 34 mark _ _ 24 Canada _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 restrictions _ NOUN NNS _ 34 nsubj _ _ 27 on _ ADP IN _ 28 case _ _ 28 exports _ NOUN NNS _ 26 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 Pacific _ PROPN NNP _ 31 compound _ _ 31 salmon _ NOUN NN _ 28 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 herring _ NOUN NN _ 31 conj _ _ 34 violate _ VERB VBP _ 22 ccomp _ _ 35 the _ DET DT _ 36 det _ _ 36 accord _ NOUN NN _ 34 dobj _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 8 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Canada _ PROPN NNP _ 5 conj _ _ 8 have _ VERB VBP _ 3 ccomp _ _ 9 until _ ADP IN _ 10 case _ _ 10 Nov. _ PROPN NNP _ 8 nmod _ _ 11 13 _ NUM CD _ 10 nummod _ _ 12 to _ PART TO _ 13 mark _ _ 13 resolve _ VERB VB _ 8 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 dispute _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 6 mark _ _ 2 a _ DET DT _ 3 det _ _ 3 solution _ NOUN NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 n't _ PART RB _ 6 neg _ _ 6 reached _ VERB VBN _ 16 advcl _ _ 7 by _ ADP IN _ 8 case _ _ 8 then _ ADV RB _ 6 nmod _ _ 9 , _ PUNCT , _ 16 punct _ _ 10 she _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 16 parataxis _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 have _ VERB VB _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 right _ NOUN NN _ 16 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 suspend _ VERB VB _ 18 acl _ _ 21 some _ DET DT _ 23 det _ _ 22 trade _ NOUN NN _ 23 compound _ _ 23 concessions _ NOUN NNS _ 20 dobj _ _ 24 to _ ADP TO _ 25 case _ _ 25 Canada _ PROPN NNP _ 23 nmod _ _ 26 equivalent _ NOUN NN _ 23 amod _ _ 27 in _ ADP IN _ 28 case _ _ 28 value _ NOUN NN _ 26 nmod _ _ 29 to _ ADP TO _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 losses _ NOUN NNS _ 26 nmod _ _ 32 suffered _ VERB VBN _ 31 acl _ _ 33 by _ ADP IN _ 36 case _ _ 34 U.S. _ PROPN NNP _ 36 compound _ _ 35 fish-processing _ ADJ JJ _ 36 amod _ _ 36 companies _ NOUN NNS _ 32 nmod _ _ 37 in _ ADP IN _ 38 case _ _ 38 Alaska _ PROPN NNP _ 36 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 the _ DET DT _ 42 det _ _ 41 Pacific _ PROPN NNP _ 42 compound _ _ 42 Northwest _ PROPN NNP _ 38 conj _ _ 43 . _ PUNCT . _ 16 punct _ _ 1 However _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 in _ ADP IN _ 4 case _ _ 4 Ottawa _ PROPN NNP _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 Canadian _ PROPN NNP _ 10 compound _ _ 7 Trade _ PROPN NNP _ 10 compound _ _ 8 Minister _ PROPN NNP _ 10 compound _ _ 9 John _ PROPN NNP _ 10 compound _ _ 10 Crosbie _ PROPN NNP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 14 det _ _ 13 dispute-settlement _ ADJ JJ _ 14 amod _ _ 14 panel _ NOUN NN _ 15 nsubj _ _ 15 accepted _ VERB VBD _ 11 ccomp _ _ 16 the _ DET DT _ 18 det _ _ 17 `` _ PUNCT `` _ 18 punct _ _ 18 legitimacy _ NOUN NN _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 Canada _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 position _ NOUN NN _ 18 nmod _ _ 23 on _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 use _ NOUN NN _ 22 nmod _ _ 26 of _ ADP IN _ 29 case _ _ 27 these _ DET DT _ 29 det _ _ 28 landing _ NOUN NN _ 29 compound _ _ 29 requirements _ NOUN NNS _ 25 nmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 conserve _ VERB VB _ 25 acl _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 manage _ VERB VB _ 31 conj _ _ 34 these _ DET DT _ 36 det _ _ 35 important _ ADJ JJ _ 36 amod _ _ 36 fisheries _ NOUN NNS _ 31 dobj _ _ 37 . _ PUNCT . _ 11 punct _ _ 38 '' _ PUNCT '' _ 11 punct _ _ 1 Questioned _ VERB VBN _ 24 advcl _ _ 2 about _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 seeming _ ADJ JJ _ 5 amod _ _ 5 contradiction _ NOUN NN _ 1 nmod _ _ 6 in _ ADP IN _ 12 case _ _ 7 the _ DET DT _ 12 det _ _ 8 U.S. _ PROPN NNP _ 12 compound _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Canadian _ ADJ JJ _ 8 conj _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 views _ NOUN NNS _ 5 nmod _ _ 13 of _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 15 det _ _ 15 panel _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 report _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 24 punct _ _ 19 an _ DET DT _ 20 det _ _ 20 aide _ NOUN NN _ 24 nsubj _ _ 21 for _ ADP IN _ 23 case _ _ 22 Mrs. _ PROPN NNP _ 23 compound _ _ 23 Hills _ PROPN NNP _ 20 nmod _ _ 24 said _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 26 det _ _ 26 panel _ NOUN NN _ 29 nsubj _ _ 27 had _ AUX VBD _ 29 aux _ _ 28 clearly _ ADV RB _ 29 advmod _ _ 29 ruled _ VERB VBN _ 24 ccomp _ _ 30 that _ SCONJ IN _ 37 mark _ _ 31 the _ DET DT _ 34 det _ _ 32 Canadian _ ADJ JJ _ 34 amod _ _ 33 trade _ NOUN NN _ 34 compound _ _ 34 restrictions _ NOUN NNS _ 37 nsubj _ _ 35 `` _ PUNCT `` _ 37 punct _ _ 36 are _ VERB VBP _ 37 cop _ _ 37 illegal _ ADJ JJ _ 29 ccomp _ _ 38 . _ PUNCT . _ 24 punct _ _ 39 '' _ PUNCT '' _ 24 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 U.S. _ PROPN NNP _ 4 compound _ _ 3 trade _ NOUN NN _ 4 compound _ _ 4 representative _ NOUN NN _ 5 nsubj _ _ 5 declined _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 put _ VERB VB _ 5 xcomp _ _ 8 a _ DET DT _ 10 det _ _ 9 dollar _ NOUN NN _ 10 compound _ _ 10 estimate _ NOUN NN _ 7 dobj _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 losses _ NOUN NNS _ 7 nmod _ _ 14 resulting _ VERB VBG _ 13 acl _ _ 15 from _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 Canadian _ ADJ JJ _ 19 amod _ _ 18 export _ NOUN NN _ 19 compound _ _ 19 restrictions _ NOUN NNS _ 14 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Canada _ PROPN NNP _ 3 nsubj _ _ 2 initially _ ADV RB _ 3 advmod _ _ 3 had _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 6 det _ _ 5 export _ NOUN NN _ 6 compound _ _ 6 prohibition _ NOUN NN _ 3 dobj _ _ 7 that _ PRON WDT _ 9 nsubjpass _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 replaced _ VERB VBN _ 6 acl:relcl _ _ 10 by _ ADP IN _ 11 case _ _ 11 regulations _ NOUN NNS _ 9 nmod _ _ 12 requiring _ VERB VBG _ 11 acl _ _ 13 that _ DET DT _ 16 mark _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 fish _ NOUN NN _ 16 nsubj _ _ 16 had _ VERB VBD _ 12 ccomp _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 brought _ VERB VBN _ 16 xcomp _ _ 20 ashore _ ADV RB _ 19 advmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 British _ PROPN NNP _ 23 compound _ _ 23 Columbia _ PROPN NNP _ 19 nmod _ _ 24 by _ ADP IN _ 26 case _ _ 25 commercial _ ADJ JJ _ 26 amod _ _ 26 fishermen _ NOUN NNS _ 19 nmod _ _ 27 prior _ ADV RB _ 19 advmod _ _ 28 to _ ADP TO _ 29 case _ _ 29 export _ VERB VB _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 action _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 defended _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Canadian _ ADJ JJ _ 8 amod _ _ 8 government _ NOUN NN _ 4 nmod _ _ 9 on _ ADP IN _ 11 case _ _ 10 conservation _ NOUN NN _ 11 compound _ _ 11 grounds _ NOUN NNS _ 4 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 dispute-settlement _ ADJ JJ _ 8 amod _ _ 8 panel _ NOUN NN _ 9 nsubj _ _ 9 rejected _ VERB VBD _ 3 ccomp _ _ 10 this _ DET DT _ 13 det _ _ 11 Canadian _ ADJ JJ _ 13 amod _ _ 12 government _ NOUN NN _ 13 compound _ _ 13 argument _ NOUN NN _ 9 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 fully _ ADV RB _ 4 advmod _ _ 4 expect _ VERB VBP _ 27 ccomp _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 Canada _ PROPN NNP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 comply _ VERB VB _ 4 ccomp _ _ 9 with _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 11 det _ _ 11 panel _ NOUN NN _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 ruling _ NOUN NN _ 8 nmod _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 that _ SCONJ IN _ 24 mark _ _ 16 the _ DET DT _ 19 det _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 landing _ NOUN NN _ 19 compound _ _ 19 requirement _ NOUN NN _ 24 nsubjpass _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 also _ ADV RB _ 24 advmod _ _ 22 must _ AUX MD _ 24 aux _ _ 23 be _ AUX VB _ 24 auxpass _ _ 24 ended _ VERB VBN _ 13 ccomp _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 she _ PRON PRP _ 27 nsubj _ _ 27 said _ VERB VBD _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 Earlier _ ADV RBR _ 21 advmod _ _ 2 , _ PUNCT , _ 21 punct _ _ 3 an _ DET DT _ 5 det _ _ 4 international _ ADJ JJ _ 5 amod _ _ 5 panel _ NOUN NN _ 21 nsubj _ _ 6 set _ VERB VBN _ 5 acl _ _ 7 up _ PROPN NNP _ 6 compound:prt _ _ 8 under _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 rules _ NOUN NNS _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 General _ PROPN NNP _ 14 compound _ _ 14 Agreement _ PROPN NNP _ 10 nmod _ _ 15 on _ ADP IN _ 16 case _ _ 16 Tariffs _ PROPN NNP _ 14 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 Trade _ PROPN NNP _ 16 conj _ _ 19 in _ ADP IN _ 20 case _ _ 20 Geneva _ PROPN NNP _ 14 nmod _ _ 21 determined _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 28 mark _ _ 23 the _ DET DT _ 27 det _ _ 24 original _ ADJ JJ _ 27 amod _ _ 25 Canadian _ ADJ JJ _ 27 amod _ _ 26 fish-export _ ADJ JJ _ 27 amod _ _ 27 restrictions _ NOUN NNS _ 28 nsubj _ _ 28 violated _ VERB VBD _ 21 ccomp _ _ 29 GATT _ PROPN NNP _ 30 compound _ _ 30 rules _ NOUN NNS _ 28 dobj _ _ 31 . _ PUNCT . _ 21 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 8 nsubj _ _ 6 wo _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 accept _ VERB VB _ 3 ccomp _ _ 9 any _ DET DT _ 10 det _ _ 10 delays _ NOUN NNS _ 8 dobj _ _ 11 after _ ADP IN _ 12 case _ _ 12 Nov. _ PROPN NNP _ 8 nmod _ _ 13 13 _ NUM CD _ 12 nummod _ _ 14 because _ SCONJ IN _ 18 mark _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 fish-processing _ ADJ JJ _ 17 amod _ _ 17 firms _ NOUN NNS _ 18 nsubj _ _ 18 enter _ VERB VBP _ 8 advcl _ _ 19 into _ ADP IN _ 20 case _ _ 20 contracts _ NOUN NNS _ 18 nmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 fall _ NOUN NN _ 18 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 purchase _ VERB VB _ 18 xcomp _ _ 26 the _ DET DT _ 28 det _ _ 27 next _ ADJ JJ _ 28 amod _ _ 28 season _ NOUN NN _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 catch _ NOUN NN _ 25 dobj _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Canadian _ ADJ JJ _ 5 amod _ _ 5 restrictions _ NOUN NNS _ 8 nsubjpass _ _ 6 must _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 removed _ VERB VBN _ 2 ccomp _ _ 9 before _ SCONJ IN _ 13 mark _ _ 10 such _ ADJ JJ _ 11 amod _ _ 11 contracts _ NOUN NNS _ 13 nsubjpass _ _ 12 are _ AUX VBP _ 13 auxpass _ _ 13 concluded _ VERB VBN _ 8 advcl _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Idle _ ADJ JJ _ 2 amod _ _ 2 Thought _ NOUN NN _ 0 root _ _ 1 To _ PART TO _ 2 mark _ _ 2 spend _ VERB VB _ 26 dep _ _ 3 a _ DET DT _ 7 det _ _ 4 carefree _ ADJ JJ _ 7 amod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 idle _ ADJ JJ _ 7 amod _ _ 7 day _ NOUN NN _ 2 nmod:tmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 When _ ADV WRB _ 11 advmod _ _ 10 duty _ NOUN NN _ 11 nsubj _ _ 11 calls _ VERB VBZ _ 14 advcl _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 pay _ VERB VB _ 2 dep _ _ 15 no _ DET DT _ 16 neg _ _ 16 heed _ NOUN NN _ 14 dobj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 To _ PART TO _ 19 mark _ _ 19 while _ VERB VB _ 2 dep _ _ 20 the _ DET DT _ 22 det _ _ 21 precious _ ADJ JJ _ 22 amod _ _ 22 hours _ NOUN NNS _ 19 dobj _ _ 23 away _ ADV RB _ 19 compound:prt _ _ 24 -- _ PUNCT : _ 26 punct _ _ 25 Character _ NOUN NN _ 26 nsubj _ _ 26 is _ VERB VBZ _ 0 root _ _ 27 what _ PRON WP _ 29 dobj _ _ 28 you _ PRON PRP _ 29 nsubj _ _ 29 need _ VERB VBP _ 26 ccomp _ _ 30 . _ PUNCT . _ 26 punct _ _ 1 -- _ PUNCT : _ 3 punct _ _ 2 May _ PROPN NNP _ 3 compound _ _ 3 Richstone _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Telecussed _ VERB VBD _ 0 root _ _ 1 The _ DET DT _ 2 det _ _ 2 guy _ NOUN NN _ 14 nsubjpass _ _ 3 who _ PRON WP _ 4 nsubj _ _ 4 throws _ VERB VBZ _ 2 acl:relcl _ _ 5 an _ DET DT _ 6 det _ _ 6 intercept _ NOUN NN _ 4 dobj _ _ 7 'Cause _ SCONJ IN _ 10 mark _ _ 8 his _ PRON PRP$ _ 9 nmod:poss _ _ 9 receiver _ NOUN NN _ 10 nsubj _ _ 10 slips _ VERB VBZ _ 4 advcl _ _ 11 Should _ AUX MD _ 14 aux _ _ 12 somehow _ ADV RB _ 14 advmod _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 advised _ VERB VBN _ 0 root _ _ 15 that _ SCONJ IN _ 20 mark _ _ 16 we _ PRON PRP _ 20 nsubj _ _ 17 At _ ADP IN _ 18 case _ _ 18 home _ NOUN NN _ 16 nmod _ _ 19 can _ AUX MD _ 20 aux _ _ 20 read _ VERB VB _ 14 ccomp _ _ 21 his _ PRON PRP$ _ 22 nmod:poss _ _ 22 lips _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 -- _ PUNCT : _ 3 punct _ _ 2 Dick _ PROPN NNP _ 3 compound _ _ 3 Emmons _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 BancOklahoma _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 completed _ VERB VBD _ 3 ccomp _ _ 6 a _ DET DT _ 8 det _ _ 7 restructuring _ NOUN NN _ 8 compound _ _ 8 agreement _ NOUN NN _ 5 dobj _ _ 9 previously _ ADV RB _ 10 advmod _ _ 10 agreed _ VERB VBN _ 8 acl _ _ 11 to _ ADP TO _ 10 nmod _ _ 12 by _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 Federal _ PROPN NNP _ 17 compound _ _ 15 Deposit _ PROPN NNP _ 17 compound _ _ 16 Insurance _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 10 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 creditor _ NOUN NN _ 20 compound _ _ 20 banks _ NOUN NNS _ 17 conj _ _ 21 and _ CONJ CC _ 17 cc _ _ 22 subordinated _ VERB VBN _ 24 amod _ _ 23 debenture _ NOUN NN _ 24 compound _ _ 24 holders _ NOUN NNS _ 17 conj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 permit _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 8 det _ _ 6 bank _ NOUN NN _ 8 compound _ _ 7 holding _ VERB VBG _ 8 amod _ _ 8 company _ NOUN NN _ 4 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 retire _ VERB VB _ 4 xcomp _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 bank _ NOUN NN _ 10 dobj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 debenture _ NOUN NN _ 15 compound _ _ 15 obligations _ NOUN NNS _ 12 conj _ _ 16 through _ ADP IN _ 17 case _ _ 17 exchanges _ NOUN NNS _ 10 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 cash _ NOUN NN _ 17 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 equity _ NOUN NN _ 19 conj _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 FDIC _ PROPN NNP _ 25 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 7 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 1986 _ NUM CD _ 7 nmod _ _ 7 provided _ VERB VBD _ 2 acl:relcl _ _ 8 $ _ SYM $ _ 7 dobj _ _ 9 130 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 in _ ADP IN _ 13 case _ _ 12 open-bank _ ADJ JJ _ 13 amod _ _ 13 assistance _ NOUN NN _ 8 nmod _ _ 14 to _ ADP TO _ 23 case _ _ 15 BancOklahoma _ PROPN NNP _ 23 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 Bank _ PROPN NNP _ 23 dep _ _ 18 of _ ADP IN _ 19 case _ _ 19 Oklahoma _ PROPN NNP _ 17 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Tulsa _ PROPN NNP _ 19 appos _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 unit _ NOUN NN _ 7 nmod _ _ 24 will _ AUX MD _ 25 aux _ _ 25 continue _ VERB VB _ 0 root _ _ 26 to _ PART TO _ 27 mark _ _ 27 maintain _ VERB VB _ 25 xcomp _ _ 28 $ _ SYM $ _ 27 dobj _ _ 29 90 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 in _ ADP IN _ 33 case _ _ 32 preferred _ VERB VBN _ 33 amod _ _ 33 stock _ NOUN NN _ 28 nmod _ _ 34 in _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 38 det _ _ 36 Tulsa _ PROPN NNP _ 38 compound _ _ 37 bank _ NOUN NN _ 38 compound _ _ 38 unit _ NOUN NN _ 27 nmod _ _ 39 . _ PUNCT . _ 25 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 exchange _ NOUN NN _ 13 nmod _ _ 3 for _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 other _ ADJ JJ _ 6 amod _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 40 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 FDIC _ PROPN NNP _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 receive _ VERB VB _ 0 root _ _ 14 additional _ ADJ JJ _ 15 amod _ _ 15 warrants _ NOUN NNS _ 13 dobj _ _ 16 entitling _ VERB VBG _ 15 acl _ _ 17 it _ PRON PRP _ 16 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 buy _ VERB VB _ 16 xcomp _ _ 20 60 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 of _ ADP IN _ 26 case _ _ 23 BancOklahoma _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 common _ ADJ JJ _ 26 amod _ _ 26 stock _ NOUN NN _ 21 nmod _ _ 27 outstanding _ ADJ JJ _ 26 amod _ _ 28 , _ PUNCT , _ 19 punct _ _ 29 up _ ADV RB _ 19 advmod _ _ 30 from _ ADP IN _ 34 case _ _ 31 the _ DET DT _ 34 det _ _ 32 55 _ NUM CD _ 33 compound _ _ 33 % _ SYM NN _ 34 amod _ _ 34 option _ NOUN NN _ 29 nmod _ _ 35 the _ DET DT _ 36 det _ _ 36 FDIC _ PROPN NNP _ 37 nsubj _ _ 37 received _ VERB VBD _ 34 acl:relcl _ _ 38 under _ ADP IN _ 39 case _ _ 39 terms _ NOUN NNS _ 37 nmod _ _ 40 of _ ADP IN _ 44 case _ _ 41 the _ DET DT _ 44 det _ _ 42 1986 _ NUM CD _ 44 nummod _ _ 43 capital _ NOUN NN _ 44 compound _ _ 44 infusion _ NOUN NN _ 39 nmod _ _ 45 . _ PUNCT . _ 13 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 exchange _ NOUN NN _ 15 nmod _ _ 3 for _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 $ _ SYM $ _ 2 nmod _ _ 6 76 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 they _ PRON PRP _ 10 nsubjpass _ _ 9 are _ AUX VBP _ 10 auxpass _ _ 10 owed _ VERB VBN _ 5 acl:relcl _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 creditor _ NOUN NN _ 13 compound _ _ 13 banks _ NOUN NNS _ 15 nsubj _ _ 14 will _ AUX MD _ 15 aux _ _ 15 receive _ VERB VB _ 42 ccomp _ _ 16 3.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 18 nummod _ _ 18 shares _ NOUN NNS _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 BancOklahoma _ PROPN NNP _ 22 compound _ _ 21 common _ ADJ JJ _ 22 amod _ _ 22 stock _ NOUN NN _ 18 nmod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 proceeds _ NOUN NNS _ 18 conj _ _ 26 from _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 future _ ADJ JJ _ 29 amod _ _ 29 sales _ NOUN NNS _ 25 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 four _ NUM CD _ 33 nummod _ _ 32 subsidiary _ ADJ JJ _ 33 amod _ _ 33 banks _ NOUN NNS _ 29 nmod _ _ 34 to _ ADP TO _ 36 case _ _ 35 private _ ADJ JJ _ 36 amod _ _ 36 buyers _ NOUN NNS _ 29 nmod _ _ 37 , _ PUNCT , _ 42 punct _ _ 38 the _ DET DT _ 41 det _ _ 39 bank _ NOUN NN _ 41 compound _ _ 40 holding _ VERB VBG _ 41 amod _ _ 41 company _ NOUN NN _ 42 nsubj _ _ 42 said _ VERB VBD _ 0 root _ _ 43 . _ PUNCT . _ 42 punct _ _ 1 Also _ ADV RB _ 4 advmod _ _ 2 under _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 debenture _ NOUN NN _ 7 compound _ _ 7 holders _ NOUN NNS _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 get _ VERB VB _ 50 ccomp _ _ 10 one _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 12 nummod _ _ 12 shares _ NOUN NNS _ 9 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 common _ ADJ JJ _ 15 amod _ _ 15 stock _ NOUN NN _ 12 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 exchange _ NOUN NN _ 9 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 $ _ SYM $ _ 17 nmod _ _ 20 7.7 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 in _ ADP IN _ 23 case _ _ 23 debentures _ NOUN NNS _ 19 nmod _ _ 24 and _ CONJ CC _ 9 cc _ _ 25 holders _ NOUN NNS _ 34 nsubj _ _ 26 of _ ADP IN _ 32 case _ _ 27 BancOklahoma _ PROPN NNP _ 32 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 series _ NOUN NN _ 32 compound _ _ 30 A _ DET DT _ 32 det _ _ 31 preferred _ ADJ JJ _ 32 amod _ _ 32 stock _ NOUN NN _ 25 nmod _ _ 33 will _ AUX MD _ 34 aux _ _ 34 receive _ VERB VB _ 9 conj _ _ 35 1.25 _ NUM CD _ 36 nummod _ _ 36 shares _ NOUN NNS _ 34 dobj _ _ 37 of _ ADP IN _ 39 case _ _ 38 common _ ADJ JJ _ 39 amod _ _ 39 stock _ NOUN NN _ 36 nmod _ _ 40 for _ ADP IN _ 42 case _ _ 41 every _ DET DT _ 42 det _ _ 42 share _ NOUN NN _ 36 nmod _ _ 43 of _ ADP IN _ 44 case _ _ 44 preferred _ VERB VBN _ 42 nmod _ _ 45 they _ PRON PRP _ 46 nsubj _ _ 46 own _ VERB VBP _ 42 acl:relcl _ _ 47 , _ PUNCT , _ 50 punct _ _ 48 the _ DET DT _ 49 det _ _ 49 company _ NOUN NN _ 50 nsubj _ _ 50 said _ VERB VBD _ 0 root _ _ 51 . _ PUNCT . _ 50 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 chief _ ADJ JJ _ 5 amod _ _ 5 economist _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Lawrence _ PROPN NNP _ 8 compound _ _ 8 Kudlow _ PROPN NNP _ 5 appos _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 in _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 Sept. _ PROPN NNP _ 14 compound _ _ 13 29 _ NUM CD _ 14 nummod _ _ 14 issue _ NOUN NN _ 5 nmod _ _ 15 of _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 17 det _ _ 17 firm _ NOUN NN _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Global _ PROPN NNP _ 20 compound _ _ 20 Spectator _ PROPN NNP _ 14 nmod _ _ 21 : _ PUNCT : _ 5 punct _ _ 1 Were _ VERB VB _ 3 cop _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 true _ ADJ JJ _ 21 advcl _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 a _ DET DT _ 7 det _ _ 6 weak _ ADJ JJ _ 7 amod _ _ 7 currency _ NOUN NN _ 8 nsubj _ _ 8 paves _ VERB VBZ _ 3 dep _ _ 9 the _ DET DT _ 10 det _ _ 10 way _ NOUN NN _ 8 dobj _ _ 11 for _ ADP IN _ 13 case _ _ 12 trade _ NOUN NN _ 13 compound _ _ 13 surpluses _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 21 punct _ _ 15 then _ ADV RB _ 21 advmod _ _ 16 presumably _ ADV RB _ 21 advmod _ _ 17 Argentina _ NOUN NN _ 21 nsubj _ _ 18 would _ AUX MD _ 21 aux _ _ 19 be _ VERB VB _ 21 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 center _ NOUN NN _ 0 root _ _ 22 of _ ADP IN _ 26 case _ _ 23 today _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 global _ ADJ JJ _ 26 amod _ _ 26 economy _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 21 punct _ _ 1 BSN _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 begin _ VERB VB _ 3 ccomp _ _ 7 an _ DET DT _ 8 det _ _ 8 offer _ NOUN NN _ 6 dobj _ _ 9 tomorrow _ NOUN NN _ 6 nmod:tmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 exchange _ VERB VB _ 6 advcl _ _ 12 up _ ADP IN _ 15 dep _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 one _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 11 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 common _ ADJ JJ _ 19 amod _ _ 19 shares _ NOUN NNS _ 15 nmod _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 all _ DET DT _ 15 conj _ _ 22 of _ ADP IN _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 $ _ SYM $ _ 21 nmod _ _ 25 16.6 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 in _ ADP IN _ 32 case _ _ 28 7 _ NUM CD _ 29 compound _ _ 29 3/4 _ NUM CD _ 30 dep _ _ 30 % _ SYM NN _ 32 dep _ _ 31 convertible _ ADJ JJ _ 32 amod _ _ 32 debentures _ NOUN NNS _ 24 nmod _ _ 33 due _ ADJ JJ _ 24 amod _ _ 34 2001 _ NUM CD _ 33 nmod:tmod _ _ 35 for _ ADP IN _ 37 case _ _ 36 a _ DET DT _ 37 det _ _ 37 package _ NOUN NN _ 11 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 new _ ADJ JJ _ 40 amod _ _ 40 debt _ NOUN NN _ 37 nmod _ _ 41 and _ CONJ CC _ 40 cc _ _ 42 common _ ADJ JJ _ 44 amod _ _ 43 stock _ NOUN NN _ 44 compound _ _ 44 warrants _ NOUN NNS _ 40 conj _ _ 45 . _ PUNCT . _ 3 punct _ _ 1 Under _ ADP IN _ 2 case _ _ 2 terms _ NOUN NNS _ 12 nmod _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 offer _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 10 det _ _ 8 sporting _ NOUN NN _ 10 compound _ _ 9 goods _ NOUN NNS _ 10 compound _ _ 10 maker _ NOUN NN _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 swap _ VERB VB _ 0 root _ _ 13 $ _ SYM $ _ 16 amod _ _ 14 9 _ NUM CD _ 13 compound _ _ 15 face _ NOUN NN _ 16 compound _ _ 16 amount _ NOUN NN _ 12 dobj _ _ 17 of _ ADP IN _ 22 case _ _ 18 9 _ NUM CD _ 19 compound _ _ 19 1/4 _ NUM CD _ 20 dep _ _ 20 % _ SYM NN _ 22 dep _ _ 21 subordinated _ VERB VBD _ 22 amod _ _ 22 notes _ NOUN NNS _ 16 nmod _ _ 23 due _ ADJ JJ _ 22 amod _ _ 24 1996 _ NUM CD _ 23 nmod:tmod _ _ 25 and _ CONJ CC _ 16 cc _ _ 26 one _ NUM CD _ 27 nummod _ _ 27 warrant _ NOUN NN _ 16 conj _ _ 28 for _ ADP IN _ 31 case _ _ 29 each _ DET DT _ 31 det _ _ 30 common _ ADJ JJ _ 31 amod _ _ 31 share _ NOUN NN _ 12 nmod _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 Each _ DET DT _ 2 det _ _ 2 warrant _ NOUN NN _ 3 nsubj _ _ 3 allows _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 holder _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 3 xcomp _ _ 8 one _ NUM CD _ 10 nummod _ _ 9 BSN _ PROPN NNP _ 10 compound _ _ 10 share _ NOUN NN _ 7 dobj _ _ 11 for _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 10.75 _ NUM CD _ 7 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 at _ ADP IN _ 18 case _ _ 17 any _ DET DT _ 18 det _ _ 18 time _ NOUN NN _ 7 nmod _ _ 19 over _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 next _ ADJ JJ _ 23 amod _ _ 22 seven _ NUM CD _ 23 nummod _ _ 23 years _ NOUN NNS _ 18 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 BSN _ PROPN NNP _ 3 nsubj _ _ 2 currently _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 4.6 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 7 nummod _ _ 6 common _ ADJ JJ _ 7 amod _ _ 7 shares _ NOUN NNS _ 3 dobj _ _ 8 outstanding _ ADJ JJ _ 7 amod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 BSN _ PROPN NNP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 offering _ VERB VBG _ 0 root _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 850 _ NUM CD _ 5 compound _ _ 7 face _ NOUN NN _ 8 compound _ _ 8 amount _ NOUN NN _ 4 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 notes _ NOUN NNS _ 8 nmod _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 64 _ NUM CD _ 15 nummod _ _ 14 common-stock _ ADJ JJ _ 15 amod _ _ 15 warrants _ NOUN NNS _ 8 conj _ _ 16 for _ ADP IN _ 21 case _ _ 17 each _ DET DT _ 21 det _ _ 18 $ _ SYM $ _ 21 amod _ _ 19 1,000 _ NUM CD _ 18 compound _ _ 20 face _ NOUN NN _ 21 compound _ _ 21 amount _ NOUN NN _ 4 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 convertible _ ADJ JJ _ 25 amod _ _ 25 debt _ NOUN NN _ 21 nmod _ _ 26 outstanding _ ADJ JJ _ 25 amod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 can _ AUX MD _ 6 aux _ _ 6 redeem _ VERB VB _ 3 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 warrants _ NOUN NNS _ 6 dobj _ _ 9 at _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 option _ NOUN NN _ 6 nmod _ _ 12 for _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 1 _ NUM CD _ 6 nmod _ _ 15 each _ DET DT _ 14 nmod:npmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 n't _ PART RB _ 5 neg _ _ 5 contingent _ ADJ JJ _ 0 root _ _ 6 on _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 certain _ ADJ JJ _ 9 amod _ _ 9 amount _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 debt _ NOUN NN _ 9 nmod _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 stock _ NOUN NN _ 11 conj _ _ 14 being _ AUX VBG _ 15 auxpass _ _ 15 exchanged _ VERB VBN _ 9 acl _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 BSN _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 making _ VERB VBG _ 2 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 offer _ NOUN NN _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 shrink _ VERB VB _ 5 advcl _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 capital _ NOUN NN _ 9 dobj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 increase _ VERB VB _ 9 conj _ _ 14 shareholder _ NOUN NN _ 15 compound _ _ 15 value _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 If _ SCONJ IN _ 12 mark _ _ 2 all _ DET DT _ 4 det _ _ 3 the _ DET DT _ 4 det _ _ 4 bondholders _ NOUN NNS _ 12 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 holders _ NOUN NNS _ 4 conj _ _ 7 of _ ADP IN _ 11 case _ _ 8 one _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 11 nummod _ _ 10 common _ ADJ JJ _ 11 amod _ _ 11 shares _ NOUN NNS _ 4 nmod _ _ 12 accept _ VERB VBP _ 18 advcl _ _ 13 the _ DET DT _ 14 det _ _ 14 offer _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 BSN _ PROPN NNP _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 increase _ VERB VB _ 42 ccomp _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 debt _ NOUN NN _ 18 dobj _ _ 21 by _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 18 nmod _ _ 23 9 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 , _ PUNCT , _ 18 punct _ _ 26 but _ CONJ CC _ 18 cc _ _ 27 it _ PRON PRP _ 30 nsubj _ _ 28 also _ ADV RB _ 30 advmod _ _ 29 will _ AUX MD _ 30 aux _ _ 30 recognize _ VERB VB _ 18 conj _ _ 31 a _ DET DT _ 35 det _ _ 32 $ _ SYM $ _ 35 amod _ _ 33 2 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 gain _ NOUN NN _ 30 dobj _ _ 36 from _ SCONJ IN _ 37 mark _ _ 37 retiring _ VERB VBG _ 35 acl _ _ 38 the _ DET DT _ 40 det _ _ 39 old _ ADJ JJ _ 40 amod _ _ 40 debt _ NOUN NN _ 37 dobj _ _ 41 , _ PUNCT , _ 42 punct _ _ 42 said _ VERB VBD _ 0 root _ _ 43 Michael _ PROPN NNP _ 45 compound _ _ 44 J. _ PROPN NNP _ 45 compound _ _ 45 Blumenfeld _ PROPN NNP _ 42 nsubj _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 president _ NOUN NN _ 45 appos _ _ 48 . _ PUNCT . _ 42 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 13 ccomp _ _ 4 sufficient _ ADJ JJ _ 6 amod _ _ 5 cash _ NOUN NN _ 6 compound _ _ 6 flow _ NOUN NN _ 3 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 handle _ VERB VB _ 6 acl _ _ 9 that _ PRON DT _ 8 dobj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offers _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 scheduled _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 expire _ VERB VB _ 4 xcomp _ _ 7 in _ ADP IN _ 11 case _ _ 8 mid _ ADJ JJ _ 10 amod _ _ 9 to _ ADP TO _ 10 dep _ _ 10 late _ ADJ JJ _ 11 amod _ _ 11 November _ PROPN NNP _ 6 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 7 nmod:poss _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 's _ PART POS _ 4 case _ _ 6 net _ ADJ JJ _ 7 amod _ _ 7 income _ NOUN NN _ 8 nsubj _ _ 8 dropped _ VERB VBD _ 0 root _ _ 9 37 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 while _ SCONJ IN _ 16 mark _ _ 13 Bear _ PROPN NNP _ 15 compound _ _ 14 Stearns _ PROPN NNP _ 15 compound _ _ 15 Cos. _ PROPN NNP _ 16 nsubj _ _ 16 posted _ VERB VBD _ 8 advcl _ _ 17 a _ DET DT _ 20 det _ _ 18 7.5 _ NUM CD _ 19 compound _ _ 19 % _ SYM NN _ 20 amod _ _ 20 gain _ NOUN NN _ 16 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 net _ ADJ JJ _ 20 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 and _ CONJ CC _ 16 cc _ _ 25 PaineWebber _ PROPN NNP _ 27 compound _ _ 26 Group _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 profit _ NOUN NN _ 30 nsubj _ _ 30 fell _ VERB VBD _ 16 conj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 but _ CONJ CC _ 30 cc _ _ 33 would _ AUX MD _ 35 aux _ _ 34 have _ AUX VB _ 35 aux _ _ 35 risen _ VERB VBN _ 30 conj _ _ 36 without _ ADP IN _ 39 case _ _ 37 a _ DET DT _ 39 det _ _ 38 special _ ADJ JJ _ 39 amod _ _ 39 gain _ NOUN NN _ 35 nmod _ _ 40 a _ DET DT _ 41 det _ _ 41 year _ NOUN NN _ 42 nmod:npmod _ _ 42 ago _ ADV RB _ 35 advmod _ _ 43 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Merrill _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 third-period _ ADJ JJ _ 6 amod _ _ 6 net _ ADJ JJ _ 8 nsubj _ _ 7 was _ VERB VBD _ 8 cop _ _ 8 $ _ SYM $ _ 0 root _ _ 9 41 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 34 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 8 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 down _ ADV RB _ 8 advmod _ _ 19 from _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 18 nmod _ _ 21 65.6 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 or _ CONJ CC _ 20 cc _ _ 25 58 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 20 conj _ _ 27 a _ DET DT _ 28 det _ _ 28 share _ NOUN NN _ 26 nmod:npmod _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 a _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 32 nmod:npmod _ _ 32 ago _ ADV RB _ 20 advmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Total _ ADJ JJ _ 2 amod _ _ 2 revenue _ NOUN NN _ 3 nsubj _ _ 3 reached _ VERB VBN _ 0 root _ _ 4 $ _ SYM $ _ 3 dobj _ _ 5 2.83 _ NUM CD _ 6 compound _ _ 6 billion _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 up _ ADV RB _ 3 advmod _ _ 9 10 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 nmod:npmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 8 nmod _ _ 13 2.57 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 firm _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 drop _ NOUN NN _ 7 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 net _ ADJ JJ _ 4 nmod _ _ 7 reflected _ VERB VBD _ 0 root _ _ 8 weaker _ ADJ JJR _ 9 amod _ _ 9 revenue _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 transactions _ NOUN NNS _ 9 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 own _ ADJ JJ _ 15 amod _ _ 15 account _ NOUN NN _ 11 nmod _ _ 16 -- _ PUNCT : _ 9 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 decline _ NOUN NN _ 9 dep _ _ 19 of _ ADP IN _ 21 case _ _ 20 19 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 $ _ SYM $ _ 18 nmod _ _ 24 314.6 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 on _ ADP IN _ 28 case _ _ 27 reduced _ VERB VBN _ 28 amod _ _ 28 revenue _ NOUN NN _ 18 nmod _ _ 29 from _ SCONJ IN _ 30 mark _ _ 30 trading _ VERB VBG _ 28 acl _ _ 31 fixed-income _ ADJ JJ _ 32 amod _ _ 32 securities _ NOUN NNS _ 30 dobj _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 Investment _ NOUN NN _ 3 compound _ _ 2 banking _ VERB VBG _ 3 amod _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 22 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 296.6 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 on _ ADP IN _ 16 case _ _ 12 fewer _ ADJ JJR _ 16 amod _ _ 13 equity _ NOUN NN _ 16 compound _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 municipal _ ADJ JJ _ 13 conj _ _ 16 underwritings _ NOUN NNS _ 4 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 commission _ NOUN NN _ 5 compound _ _ 5 revenue _ NOUN NN _ 6 nsubj _ _ 6 grew _ VERB VBD _ 0 root _ _ 7 21 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 however _ ADV RB _ 6 advmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 to _ ADP TO _ 13 case _ _ 13 $ _ SYM $ _ 6 nmod _ _ 14 462.8 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 on _ ADP IN _ 20 case _ _ 18 higher _ ADJ JJR _ 20 amod _ _ 19 share _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 6 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 volume _ NOUN NN _ 20 conj _ _ 23 and _ CONJ CC _ 20 cc _ _ 24 on _ ADP IN _ 26 case _ _ 25 strong _ ADJ JJ _ 26 amod _ _ 26 sales _ NOUN NNS _ 20 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 mutual _ ADJ JJ _ 29 amod _ _ 29 funds _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Revenue _ NOUN NN _ 7 nsubj _ _ 2 derived _ VERB VBN _ 1 acl _ _ 3 from _ ADP IN _ 4 case _ _ 4 interest _ NOUN NN _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 dividends _ NOUN NNS _ 4 conj _ _ 7 jumped _ VERB VBD _ 0 root _ _ 8 30 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 7 nmod _ _ 12 1.4 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Asset-management _ ADJ JJ _ 3 amod _ _ 2 fee _ NOUN NN _ 3 compound _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 grew _ VERB VBD _ 0 root _ _ 5 12 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 151 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 brokerage _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 reported _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 loss _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 2.2 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 from _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 discontinued _ VERB VBN _ 14 amod _ _ 14 operations _ NOUN NNS _ 6 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 disposal _ NOUN NN _ 14 conj _ _ 17 of _ ADP IN _ 25 case _ _ 18 its _ PRON PRP$ _ 25 nmod:poss _ _ 19 Fine _ PROPN NNP _ 25 compound _ _ 20 Homes _ PROPN NNP _ 25 compound _ _ 21 International _ PROPN NNP _ 25 compound _ _ 22 Limited _ PROPN NNP _ 25 compound _ _ 23 Partnership _ PROPN NNP _ 25 compound _ _ 24 real-estate _ NOUN NN _ 25 compound _ _ 25 subsidiary _ NOUN NN _ 14 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 net _ NOUN NN _ 12 nsubj _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 quarter _ NOUN NN _ 4 nmod _ _ 9 ended _ VERB VBN _ 8 acl _ _ 10 Sept. _ PROPN NNP _ 9 nmod:tmod _ _ 11 29 _ NUM CD _ 10 nummod _ _ 12 reached _ VERB VBD _ 3 ccomp _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 22.1 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 or _ CONJ CC _ 13 cc _ _ 18 23 _ NUM CD _ 19 nummod _ _ 19 cents _ NOUN NNS _ 13 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 , _ PUNCT , _ 13 punct _ _ 23 from _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 12 nmod _ _ 25 20.5 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 20 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 24 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 , _ PUNCT , _ 24 punct _ _ 34 in _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 year-earlier _ ADJ JJ _ 37 amod _ _ 37 quarter _ NOUN NN _ 24 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Gross _ ADJ JJ _ 2 amod _ _ 2 revenue _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 21 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 3 nmod _ _ 8 580.4 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 from _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 3 nmod _ _ 12 478.9 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Profit _ NOUN NN _ 8 nsubj _ _ 2 from _ ADP IN _ 3 case _ _ 3 trading _ NOUN NN _ 1 nmod _ _ 4 for _ ADP IN _ 7 case _ _ 5 its _ PRON PRP$ _ 7 nmod:poss _ _ 6 own _ ADJ JJ _ 7 amod _ _ 7 account _ NOUN NN _ 3 nmod _ _ 8 dropped _ VERB VBD _ 13 ccomp _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 securities _ NOUN NNS _ 12 compound _ _ 12 firm _ NOUN NN _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Investment _ NOUN NN _ 3 compound _ _ 2 banking _ NOUN NN _ 3 compound _ _ 3 revenue _ NOUN NN _ 4 nsubj _ _ 4 climbed _ VERB VBD _ 0 root _ _ 5 25 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 while _ SCONJ IN _ 11 mark _ _ 9 commission _ NOUN NN _ 10 compound _ _ 10 revenue _ NOUN NN _ 11 nsubj _ _ 11 advanced _ VERB VBD _ 4 advcl _ _ 12 31 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 on _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 stronger _ ADJ JJR _ 18 amod _ _ 17 retail _ ADJ JJ _ 18 amod _ _ 18 market _ NOUN NN _ 11 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 holding _ VERB VBG _ 6 amod _ _ 6 company _ NOUN NN _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 Bear _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Stearns _ PROPN NNP _ 8 conj _ _ 11 & _ CONJ CC _ 8 cc _ _ 12 Co. _ PROPN NNP _ 8 conj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 investment _ NOUN NN _ 16 compound _ _ 16 banking _ NOUN NN _ 8 appos _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 brokerage _ NOUN NN _ 19 compound _ _ 19 firm _ NOUN NN _ 16 conj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN NN _ 7 compound _ _ 7 trading _ NOUN NN _ 13 nmod _ _ 8 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 Bear _ PROPN NNP _ 12 compound _ _ 11 Stearns _ PROPN NNP _ 12 compound _ _ 12 shares _ NOUN NNS _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 13.625 _ NUM CD _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 down _ ADV RB _ 13 advmod _ _ 19 25 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 Separately _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 PaineWebber _ PROPN NNP _ 4 nsubj _ _ 4 posted _ VERB VBD _ 0 root _ _ 5 net _ ADJ JJ _ 6 amod _ _ 6 income _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 6 nmod _ _ 13 16.8 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 41 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 12 conj _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 12 punct _ _ 22 reflecting _ VERB VBG _ 4 xcomp _ _ 23 a _ DET DT _ 26 det _ _ 24 `` _ PUNCT `` _ 26 punct _ _ 25 broad-based _ ADJ JJ _ 26 amod _ _ 26 improvement _ NOUN NN _ 22 dobj _ _ 27 '' _ PUNCT '' _ 26 punct _ _ 28 in _ ADP IN _ 33 case _ _ 29 the _ DET DT _ 30 det _ _ 30 company _ NOUN NN _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 core _ NOUN NN _ 33 compound _ _ 33 businesses _ NOUN NNS _ 26 nmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Retail _ ADJ JJ _ 2 amod _ _ 2 profit _ NOUN NN _ 3 nsubj _ _ 3 surged _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 but _ CONJ CC _ 3 cc _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 8 nsubj _ _ 8 said _ VERB VBD _ 3 conj _ _ 9 it _ PRON PRP _ 15 nsubj _ _ 10 was _ VERB VBD _ 15 cop _ _ 11 only _ ADV RB _ 15 advmod _ _ 12 a _ DET DT _ 15 det _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 modest _ ADJ JJ _ 15 amod _ _ 15 contributor _ NOUN NN _ 8 ccomp _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 to _ ADP TO _ 19 case _ _ 18 third-quarter _ ADJ JJ _ 19 amod _ _ 19 results _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 14 advmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 net _ NOUN NN _ 14 nsubj _ _ 6 at _ ADP IN _ 12 case _ _ 7 the _ DET DT _ 12 det _ _ 8 New _ PROPN NNP _ 12 compound _ _ 9 York _ PROPN NNP _ 12 compound _ _ 10 investment _ NOUN NN _ 12 compound _ _ 11 banking _ VERB VBG _ 12 amod _ _ 12 firm _ NOUN NN _ 5 nmod _ _ 13 was _ VERB VBD _ 14 cop _ _ 14 $ _ SYM $ _ 0 root _ _ 15 20.9 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 50 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 14 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 including _ VERB VBG _ 28 case _ _ 25 a _ DET DT _ 28 det _ _ 26 special _ ADJ JJ _ 28 amod _ _ 27 pretax _ ADJ JJ _ 28 amod _ _ 28 gain _ NOUN NN _ 14 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 $ _ SYM $ _ 28 nmod _ _ 31 46.3 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 30 nummod _ _ 33 from _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 sale _ NOUN NN _ 28 nmod _ _ 36 of _ ADP IN _ 40 case _ _ 37 the _ DET DT _ 38 det _ _ 38 company _ NOUN NN _ 40 nmod:poss _ _ 39 's _ PART POS _ 38 case _ _ 40 interest _ NOUN NN _ 35 nmod _ _ 41 in _ ADP IN _ 46 case _ _ 42 National _ PROPN NNP _ 46 compound _ _ 43 Car _ PROPN NNP _ 46 compound _ _ 44 Rental _ PROPN NNP _ 46 compound _ _ 45 Systems _ PROPN NNP _ 46 compound _ _ 46 Inc _ PROPN NNP _ 40 nmod _ _ 47 . _ PUNCT . _ 14 punct _ _ 1 Revenue _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 $ _ SYM $ _ 0 root _ _ 4 444.9 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 including _ VERB VBG _ 9 case _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 interest _ NOUN NN _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 down _ ADV RB _ 12 advmod _ _ 12 slightly _ ADV RB _ 3 advmod _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 12 nmod _ _ 15 450.7 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 Big _ PROPN NNP _ 5 compound _ _ 3 Board _ PROPN NNP _ 5 compound _ _ 4 composite _ NOUN NN _ 5 compound _ _ 5 trading _ NOUN NN _ 9 nmod _ _ 6 yesterday _ ADV RB _ 9 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 PaineWebber _ PROPN NNP _ 9 nsubj _ _ 9 closed _ VERB VBD _ 0 root _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 18.50 _ NUM CD _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 up _ ADV RB _ 9 advmod _ _ 15 75 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 14 nmod:npmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Seafirst _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 signed _ VERB VBD _ 3 ccomp _ _ 6 an _ DET DT _ 7 det _ _ 7 agreement _ NOUN NN _ 5 dobj _ _ 8 with _ ADP IN _ 11 case _ _ 9 builder _ NOUN NN _ 11 compound _ _ 10 Martin _ PROPN NNP _ 11 compound _ _ 11 Selig _ PROPN NNP _ 7 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 purchase _ VERB VB _ 7 acl _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 headquarters _ NOUN NN _ 16 compound _ _ 16 building _ NOUN NN _ 13 dobj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 the _ DET DT _ 21 det _ _ 19 Columbia _ PROPN NNP _ 21 compound _ _ 20 Seafirst _ PROPN NNP _ 21 compound _ _ 21 Center _ PROPN NNP _ 16 appos _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 for _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 13 nmod _ _ 25 354 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Purchase _ NOUN NN _ 7 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 76-story _ ADJ JJ _ 5 amod _ _ 5 structure _ NOUN NN _ 1 nmod _ _ 6 is _ VERB VBZ _ 7 cop _ _ 7 subject _ ADJ JJ _ 0 root _ _ 8 to _ ADP TO _ 9 case _ _ 9 execution _ NOUN NN _ 7 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 definitive _ ADJ JJ _ 13 amod _ _ 13 agreement _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 approval _ NOUN NN _ 9 conj _ _ 16 by _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 boards _ NOUN NNS _ 15 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 Seafirst _ PROPN NNP _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 its _ PRON PRP$ _ 26 nmod:poss _ _ 23 parent _ NOUN NN _ 26 compound _ _ 24 company _ NOUN NN _ 26 compound _ _ 25 BankAmerica _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 20 conj _ _ 27 , _ PUNCT , _ 9 punct _ _ 28 and _ CONJ CC _ 9 cc _ _ 29 approval _ NOUN NN _ 9 conj _ _ 30 by _ ADP IN _ 31 case _ _ 31 regulators _ NOUN NNS _ 29 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 upheaval _ NOUN NN _ 7 nsubj _ _ 4 apparently _ ADV RB _ 7 advmod _ _ 5 has _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 triggered _ VERB VBN _ 0 root _ _ 8 any _ DET DT _ 10 det _ _ 9 cash _ NOUN NN _ 10 compound _ _ 10 crunch _ NOUN NN _ 7 dobj _ _ 11 -- _ PUNCT : _ 7 punct _ _ 12 yet _ ADV RB _ 7 advmod _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 Individual _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 investment _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 2 conj _ _ 6 and _ CONJ CC _ 2 cc _ _ 7 arbitragers _ NOUN NNS _ 2 conj _ _ 8 who _ PRON WP _ 9 nsubj _ _ 9 speculate _ VERB VBP _ 2 acl:relcl _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 stocks _ NOUN NNS _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 takeover _ NOUN NN _ 15 compound _ _ 15 candidates _ NOUN NNS _ 12 nmod _ _ 16 can _ AUX MD _ 17 aux _ _ 17 suffer _ VERB VB _ 0 root _ _ 18 liquidity _ NOUN NN _ 21 compound _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 payment _ NOUN NN _ 18 conj _ _ 21 problems _ NOUN NNS _ 17 dobj _ _ 22 when _ ADV WRB _ 24 advmod _ _ 23 stocks _ NOUN NNS _ 24 nsubj _ _ 24 dive _ VERB VBP _ 17 advcl _ _ 25 ; _ PUNCT : _ 17 punct _ _ 26 those _ DET DT _ 27 det _ _ 27 investors _ NOUN NNS _ 29 nsubj _ _ 28 often _ ADV RB _ 29 advmod _ _ 29 borrow _ VERB VBP _ 17 parataxis _ _ 30 heavily _ ADV RB _ 29 advmod _ _ 31 to _ PART TO _ 32 mark _ _ 32 buy _ VERB VB _ 29 xcomp _ _ 33 their _ PRON PRP$ _ 34 nmod:poss _ _ 34 holdings _ NOUN NNS _ 32 dobj _ _ 35 and _ CONJ CC _ 29 cc _ _ 36 use _ VERB VB _ 29 conj _ _ 37 the _ DET DT _ 38 det _ _ 38 stocks _ NOUN NNS _ 36 dobj _ _ 39 as _ ADP IN _ 40 case _ _ 40 collateral _ NOUN NN _ 36 nmod _ _ 41 for _ ADP IN _ 42 case _ _ 42 loans _ NOUN NNS _ 40 nmod _ _ 43 . _ PUNCT . _ 17 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 several _ ADJ JJ _ 4 amod _ _ 3 large _ ADJ JJ _ 4 amod _ _ 4 banks _ NOUN NNS _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 yesterday _ NOUN NN _ 5 nmod:tmod _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 detected _ VERB VBD _ 5 ccomp _ _ 9 no _ DET DT _ 10 neg _ _ 10 signs _ NOUN NNS _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 unusual _ ADJ JJ _ 13 amod _ _ 13 demand _ NOUN NN _ 10 nmod _ _ 14 for _ ADP IN _ 15 case _ _ 15 credit _ NOUN NN _ 13 nmod _ _ 16 that _ PRON WDT _ 18 nsubj _ _ 17 would _ AUX MD _ 18 aux _ _ 18 signal _ VERB VB _ 10 acl:relcl _ _ 19 such _ ADJ JJ _ 20 amod _ _ 20 difficulties _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 seeing _ VERB VBG _ 12 ccomp _ _ 5 nothing _ NOUN NN _ 4 dobj _ _ 6 out _ ADP IN _ 9 case _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 ordinary _ ADJ JJ _ 5 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 one _ NUM CD _ 14 nummod _ _ 14 official _ NOUN NN _ 12 nsubj _ _ 15 at _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 Top _ ADJ JJ _ 19 amod _ _ 18 10 _ NUM CD _ 19 nummod _ _ 19 bank _ NOUN NN _ 14 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 That _ PRON DT _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 good _ ADJ JJ _ 5 amod _ _ 5 news _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 because _ SCONJ IN _ 10 mark _ _ 8 we _ PRON PRP _ 10 nsubj _ _ 9 all _ DET DT _ 8 det _ _ 10 swim _ VERB VBP _ 5 advcl _ _ 11 in _ ADP IN _ 13 case _ _ 12 this _ DET DT _ 13 det _ _ 13 water _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 15 '' _ PUNCT '' _ 5 punct _ _ 1 Added _ VERB VBD _ 0 root _ _ 2 another _ DET DT _ 3 det _ _ 3 executive _ NOUN NN _ 1 nsubj _ _ 4 at _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 big _ ADJ JJ _ 7 amod _ _ 7 bank _ NOUN NN _ 3 nmod _ _ 8 : _ PUNCT : _ 1 punct _ _ 9 `` _ PUNCT `` _ 1 punct _ _ 10 We _ PRON PRP _ 15 nsubj _ _ 11 were _ VERB VBD _ 15 cop _ _ 12 all _ DET DT _ 15 dep _ _ 13 a _ DET DT _ 14 det _ _ 14 little _ ADJ JJ _ 15 nmod:npmod _ _ 15 goosey _ ADJ JJ _ 1 ccomp _ _ 16 over _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 weekend _ NOUN NN _ 15 nmod _ _ 19 trying _ VERB VBG _ 15 xcomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 forecast _ VERB VB _ 19 xcomp _ _ 22 what _ PRON WP _ 24 nsubj _ _ 23 would _ AUX MD _ 24 aux _ _ 24 happen _ VERB VB _ 21 ccomp _ _ 25 -LCB- _ PUNCT -LRB- _ 24 punct _ _ 26 Monday _ PROPN NNP _ 24 nmod:tmod _ _ 27 -RCB- _ PUNCT -RRB- _ 24 punct _ _ 28 , _ PUNCT , _ 15 punct _ _ 29 but _ CONJ CC _ 15 cc _ _ 30 it _ PRON PRP _ 34 nsubjpass _ _ 31 's _ AUX VBZ _ 34 auxpass _ _ 32 been _ VERB VBN _ 34 cop _ _ 33 very _ ADV RB _ 34 advmod _ _ 34 quiet _ ADJ JJ _ 15 conj _ _ 35 . _ PUNCT . _ 1 punct _ _ 1 Now _ ADV RB _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 as _ ADP IN _ 5 case _ _ 4 for _ ADP IN _ 5 case _ _ 5 tomorrow _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 hell _ INTJ UH _ 1 discourse _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 who _ PRON WP _ 10 nsubj _ _ 10 knows _ VERB VBZ _ 1 dep _ _ 11 ? _ PUNCT . _ 1 punct _ _ 1 What _ PRON WP _ 2 nsubj _ _ 2 happened _ VERB VBD _ 4 csubj _ _ 3 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 4 shows _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 financial _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 12 nsubjpass _ _ 8 are _ AUX VBP _ 12 auxpass _ _ 9 not _ PART RB _ 12 neg _ _ 10 yet _ ADV RB _ 12 advmod _ _ 11 sufficiently _ ADV RB _ 12 advmod _ _ 12 coordinated _ VERB VBN _ 4 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 handle _ VERB VB _ 12 xcomp _ _ 15 another _ DET DT _ 16 det _ _ 16 meltdown _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 prices _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 fiddling _ NOUN NN _ 9 nsubj _ _ 3 with _ ADP IN _ 4 case _ _ 4 systems _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 procedures _ NOUN NNS _ 4 conj _ _ 7 will _ AUX MD _ 9 aux _ _ 8 ever _ ADV RB _ 9 advmod _ _ 9 prevent _ VERB VB _ 0 root _ _ 10 markets _ NOUN NNS _ 9 dobj _ _ 11 from _ SCONJ IN _ 12 mark _ _ 12 suffering _ VERB VBG _ 9 advcl _ _ 13 a _ DET DT _ 15 det _ _ 14 panic _ NOUN NN _ 15 compound _ _ 15 wave _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 selling _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 markets _ NOUN NNS _ 4 nsubj _ _ 3 can _ AUX MD _ 4 aux _ _ 4 operate _ VERB VB _ 0 root _ _ 5 with _ ADP IN _ 9 case _ _ 6 greater _ ADJ JJR _ 9 amod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 lesser _ ADJ JJR _ 6 conj _ _ 9 efficiency _ NOUN NN _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 1987 _ NUM CD _ 4 nummod _ _ 4 plunge _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 markets _ NOUN NNS _ 7 nsubj _ _ 7 agreed _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 it _ PRON PRP _ 12 nsubj _ _ 10 would _ AUX MD _ 12 aux _ _ 11 be _ VERB VB _ 12 cop _ _ 12 wise _ ADJ JJ _ 7 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 halt _ VERB VB _ 12 xcomp _ _ 15 trading _ NOUN NN _ 14 dobj _ _ 16 whenever _ ADV WRB _ 19 advmod _ _ 17 panic _ NOUN NN _ 18 compound _ _ 18 conditions _ NOUN NNS _ 19 nsubj _ _ 19 arose _ VERB VBD _ 14 advcl _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 6 nsubj _ _ 6 adopted _ VERB VBD _ 0 root _ _ 7 two _ NUM CD _ 10 nummod _ _ 8 specific _ ADJ JJ _ 10 amod _ _ 9 circuit _ NOUN NN _ 10 compound _ _ 10 breakers _ NOUN NNS _ 6 dobj _ _ 11 : _ PUNCT : _ 10 punct _ _ 12 If _ SCONJ IN _ 17 mark _ _ 13 the _ DET DT _ 16 det _ _ 14 Dow _ PROPN NNP _ 16 compound _ _ 15 Jones _ PROPN NNP _ 16 compound _ _ 16 index _ NOUN NN _ 17 nsubj _ _ 17 falls _ VERB VBZ _ 27 advcl _ _ 18 250 _ NUM CD _ 19 nummod _ _ 19 points _ NOUN NNS _ 17 dobj _ _ 20 in _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 day _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 27 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 exchange _ NOUN NN _ 27 nsubj _ _ 26 will _ AUX MD _ 27 aux _ _ 27 halt _ NOUN NN _ 10 dep _ _ 28 trading _ VERB VBG _ 27 dobj _ _ 29 for _ ADP IN _ 31 case _ _ 30 one _ NUM CD _ 31 nummod _ _ 31 hour _ NOUN NN _ 27 nmod _ _ 32 ; _ PUNCT : _ 27 punct _ _ 33 if _ SCONJ IN _ 36 mark _ _ 34 the _ DET DT _ 35 det _ _ 35 decline _ NOUN NN _ 36 nsubj _ _ 36 hits _ VERB VBZ _ 43 advcl _ _ 37 400 _ NUM CD _ 38 nummod _ _ 38 points _ NOUN NNS _ 36 dobj _ _ 39 , _ PUNCT , _ 43 punct _ _ 40 the _ DET DT _ 41 det _ _ 41 exchange _ NOUN NN _ 43 nsubj _ _ 42 will _ AUX MD _ 43 aux _ _ 43 close _ VERB VB _ 27 parataxis _ _ 44 for _ ADP IN _ 48 case _ _ 45 an _ DET DT _ 48 det _ _ 46 additional _ ADJ JJ _ 48 amod _ _ 47 two _ NUM CD _ 48 nummod _ _ 48 hours _ NOUN NNS _ 43 nmod _ _ 49 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rationale _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 10 mark _ _ 5 an _ DET DT _ 6 det _ _ 6 interruption _ NOUN NN _ 10 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 trading _ NOUN NN _ 6 nmod _ _ 9 will _ AUX MD _ 10 aux _ _ 10 allow _ VERB VB _ 3 ccomp _ _ 11 investors _ NOUN NNS _ 10 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 reconsider _ VERB VB _ 10 xcomp _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 strategies _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 calm _ VERB VB _ 13 conj _ _ 18 sellers _ NOUN NNS _ 17 dobj _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 lead _ VERB VB _ 13 conj _ _ 21 buyers _ NOUN NNS _ 20 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 enter _ VERB VB _ 20 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 market _ NOUN NN _ 23 dobj _ _ 26 at _ ADP IN _ 30 case _ _ 27 indicated _ VERB VBN _ 30 amod _ _ 28 new _ ADJ JJ _ 30 amod _ _ 29 price _ NOUN NN _ 30 compound _ _ 30 levels _ NOUN NNS _ 23 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 impossible _ ADJ JJ _ 0 root _ _ 4 to _ ADP TO _ 5 dep _ _ 5 know _ VERB VB _ 3 ccomp _ _ 6 whether _ SCONJ IN _ 10 mark _ _ 7 that _ DET DT _ 8 det _ _ 8 theory _ NOUN NN _ 10 nsubj _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 realistic _ ADJ JJ _ 5 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 temporary _ ADJ JJ _ 3 amod _ _ 3 cessation _ NOUN NN _ 8 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 trading _ NOUN NN _ 3 nmod _ _ 6 may _ AUX MD _ 8 aux _ _ 7 indeed _ ADV RB _ 8 advmod _ _ 8 discourage _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 selling _ NOUN NN _ 11 compound _ _ 11 panic _ NOUN NN _ 8 dobj _ _ 12 from _ SCONJ IN _ 13 mark _ _ 13 feeding _ VERB VBG _ 8 advcl _ _ 14 on _ ADP IN _ 15 case _ _ 15 itself _ PRON PRP _ 13 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 there _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 also _ ADV RB _ 3 advmod _ _ 5 the _ DET DT _ 6 det _ _ 6 possibility _ NOUN NN _ 3 nsubj _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 shutting _ VERB VBG _ 12 csubj _ _ 9 down _ ADP RP _ 8 compound:prt _ _ 10 markets _ NOUN NNS _ 8 dobj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 intensify _ VERB VB _ 6 ccomp _ _ 13 fears _ NOUN NNS _ 12 dobj _ _ 14 and _ CONJ CC _ 12 cc _ _ 15 cause _ VERB VB _ 12 conj _ _ 16 an _ DET DT _ 20 det _ _ 17 even _ ADV RB _ 19 advmod _ _ 18 more _ ADV RBR _ 19 advmod _ _ 19 abrupt _ ADJ JJ _ 20 amod _ _ 20 slide _ NOUN NN _ 15 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 prices _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 What _ PRON WP _ 2 nsubj _ _ 2 happened _ VERB VBD _ 6 csubj _ _ 3 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 worst _ ADJ JJS _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 all _ DET DT _ 9 det _ _ 9 worlds _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 exchanges _ NOUN NNS _ 4 nsubj _ _ 4 followed _ VERB VBD _ 0 root _ _ 5 their _ PRON PRP$ _ 9 nmod:poss _ _ 6 own _ ADJ JJ _ 9 amod _ _ 7 pre-set _ ADJ JJ _ 9 amod _ _ 8 circuit _ NOUN NN _ 9 compound _ _ 9 breakers _ NOUN NNS _ 4 dobj _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 shut _ VERB VBD _ 4 conj _ _ 12 down _ ADP RP _ 11 compound:prt _ _ 13 at _ ADP IN _ 16 case _ _ 14 about _ ADV RB _ 16 advmod _ _ 15 3 _ NUM CD _ 16 nummod _ _ 16 p.m. _ NOUN NN _ 11 nmod _ _ 17 for _ ADP IN _ 19 case _ _ 18 30 _ NUM CD _ 19 nummod _ _ 19 minutes _ NOUN NNS _ 11 nmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 after _ SCONJ IN _ 31 mark _ _ 22 the _ DET DT _ 23 det _ _ 23 Standard _ PROPN NNP _ 29 nmod:poss _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Poor _ PROPN NNP _ 23 conj _ _ 26 's _ PART POS _ 23 case _ _ 27 500 _ NUM CD _ 29 nummod _ _ 28 stock _ NOUN NN _ 29 compound _ _ 29 index _ NOUN NN _ 31 nsubj _ _ 30 had _ AUX VBD _ 31 aux _ _ 31 fallen _ VERB VBN _ 11 advcl _ _ 32 12 _ NUM CD _ 33 nummod _ _ 33 points _ NOUN NNS _ 31 dobj _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 or _ CONJ CC _ 33 cc _ _ 36 about _ ADV RB _ 37 advmod _ _ 37 100 _ NUM CD _ 38 nummod _ _ 38 points _ NOUN NNS _ 33 conj _ _ 39 on _ ADP IN _ 43 case _ _ 40 the _ DET DT _ 43 det _ _ 41 Dow _ PROPN NNP _ 43 compound _ _ 42 Jones _ PROPN NNP _ 43 compound _ _ 43 index _ NOUN NN _ 38 nmod _ _ 44 . _ PUNCT . _ 4 punct _ _ 1 Options _ NOUN NNS _ 2 compound _ _ 2 markets _ NOUN NNS _ 3 nsubj _ _ 3 stopped _ VERB VBD _ 0 root _ _ 4 trading _ NOUN NN _ 3 dobj _ _ 5 in _ ADP IN _ 7 case _ _ 6 many _ ADJ JJ _ 7 amod _ _ 7 securities _ NOUN NNS _ 4 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 12 nsubj _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 under _ ADP IN _ 10 case _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 own _ ADJ JJ _ 10 amod _ _ 10 rules _ NOUN NNS _ 12 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 remained _ VERB VBD _ 0 root _ _ 13 open _ ADJ JJ _ 12 xcomp _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 With _ ADP IN _ 3 case _ _ 2 nowhere _ ADV RB _ 3 advmod _ _ 3 else _ ADV RB _ 14 nmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 go _ VERB VB _ 3 acl _ _ 6 , _ PUNCT , _ 14 punct _ _ 7 sellers _ NOUN NNS _ 14 nsubj _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 and _ CONJ CC _ 12 cc _ _ 10 particularly _ ADV RB _ 12 dep _ _ 11 program _ NOUN NN _ 12 compound _ _ 12 traders _ NOUN NNS _ 7 dep _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 focused _ VERB VBD _ 0 root _ _ 15 all _ DET DT _ 17 det:predet _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 selling _ NOUN NN _ 14 dobj _ _ 18 on _ ADP IN _ 23 case _ _ 19 the _ DET DT _ 23 det _ _ 20 New _ PROPN NNP _ 23 compound _ _ 21 York _ PROPN NNP _ 23 compound _ _ 22 Stock _ PROPN NNP _ 23 compound _ _ 23 Exchange _ PROPN NNP _ 14 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 As _ SCONJ IN _ 6 mark _ _ 2 liquidity _ NOUN NN _ 6 nsubj _ _ 3 on _ ADP IN _ 5 case _ _ 4 that _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 2 nmod _ _ 6 weakened _ VERB VBD _ 9 advcl _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 fell _ VERB VBD _ 0 root _ _ 10 sharply _ ADV RB _ 9 advmod _ _ 11 . _ PUNCT . _ 9 punct _ _ 1 Had _ AUX VBD _ 8 aux _ _ 2 the _ DET DT _ 3 det _ _ 3 futures _ NOUN NNS _ 8 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 options _ NOUN NNS _ 6 compound _ _ 6 markets _ NOUN NNS _ 3 conj _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 open _ ADJ JJ _ 15 dep _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 additional _ ADJ JJ _ 11 amod _ _ 11 liquidity _ NOUN NN _ 15 nsubjpass _ _ 12 would _ AUX MD _ 15 aux _ _ 13 have _ AUX VB _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 provided _ VERB VBN _ 0 root _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 the _ DET DT _ 18 det _ _ 18 decline _ NOUN NN _ 27 nsubj _ _ 19 , _ PUNCT , _ 27 punct _ _ 20 most _ ADV RBS _ 21 advmod _ _ 21 probably _ ADV RB _ 27 advmod _ _ 22 , _ PUNCT , _ 27 punct _ _ 23 would _ AUX MD _ 27 aux _ _ 24 have _ AUX VB _ 27 aux _ _ 25 been _ VERB VBN _ 27 cop _ _ 26 less _ ADV RBR _ 27 advmod _ _ 27 intense _ ADJ JJ _ 15 conj _ _ 28 . _ PUNCT . _ 15 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 3:30 _ NUM CD _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 after _ ADP IN _ 7 case _ _ 5 intense _ ADJ JJ _ 7 amod _ _ 6 telephone _ NOUN NN _ 7 compound _ _ 7 negotiations _ NOUN NNS _ 18 nmod _ _ 8 between _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 trading _ NOUN NN _ 11 compound _ _ 11 markets _ NOUN NNS _ 7 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Washington _ PROPN NNP _ 11 conj _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 futures _ NOUN NNS _ 17 compound _ _ 17 exchanges _ NOUN NNS _ 18 nsubj _ _ 18 reopened _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 trading _ NOUN NN _ 7 nsubjpass _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 however _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 halted _ VERB VBN _ 0 root _ _ 8 altogether _ ADV RB _ 7 advmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 3:45 _ NUM CD _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 after _ SCONJ IN _ 17 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 markets _ NOUN NNS _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 dropped _ VERB VBN _ 7 advcl _ _ 18 an _ DET DT _ 21 det _ _ 19 additional _ ADJ JJ _ 21 amod _ _ 20 30 _ NUM CD _ 21 nummod _ _ 21 points _ NOUN NNS _ 17 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 which _ PRON WDT _ 27 nsubj _ _ 24 is _ VERB VBZ _ 27 cop _ _ 25 the _ DET DT _ 27 det _ _ 26 daily _ ADJ JJ _ 27 amod _ _ 27 limit _ NOUN NN _ 21 acl:relcl _ _ 28 for _ ADP IN _ 30 case _ _ 29 price _ NOUN NN _ 30 compound _ _ 30 declines _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 point _ NOUN NN _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 options _ NOUN NNS _ 7 compound _ _ 7 markets _ NOUN NNS _ 9 nsubj _ _ 8 also _ ADV RB _ 9 advmod _ _ 9 shut _ VERB VBD _ 0 root _ _ 10 down _ ADP RP _ 9 compound:prt _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 once _ ADV RB _ 13 advmod _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 left _ VERB VBD _ 9 conj _ _ 15 all _ DET DT _ 16 det _ _ 16 sales _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 handled _ VERB VBN _ 14 xcomp _ _ 20 by _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 New _ PROPN NNP _ 25 compound _ _ 23 York _ PROPN NNP _ 25 compound _ _ 24 Stock _ PROPN NNP _ 25 compound _ _ 25 Exchange _ PROPN NNP _ 19 nmod _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 time _ NOUN NN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 recognize _ VERB VB _ 3 acl _ _ 6 that _ SCONJ IN _ 27 mark _ _ 7 the _ DET DT _ 11 det _ _ 8 New _ PROPN NNP _ 11 compound _ _ 9 York _ PROPN NNP _ 11 compound _ _ 10 Stock _ PROPN NNP _ 11 compound _ _ 11 Exchange _ PROPN NNP _ 27 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 the _ DET DT _ 15 det _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 markets _ NOUN NNS _ 11 conj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 the _ DET DT _ 19 det _ _ 18 options _ NOUN NNS _ 19 compound _ _ 19 markets _ NOUN NNS _ 11 conj _ _ 20 , _ PUNCT , _ 27 punct _ _ 21 though _ ADP IN _ 23 case _ _ 22 physically _ ADV RB _ 23 advmod _ _ 23 separate _ ADJ JJ _ 27 advmod _ _ 24 , _ PUNCT , _ 27 punct _ _ 25 have _ AUX VBP _ 27 aux _ _ 26 actually _ ADV RB _ 27 advmod _ _ 27 become _ VERB VBN _ 5 ccomp _ _ 28 so _ ADV RB _ 29 advmod _ _ 29 closely _ ADV RB _ 30 advmod _ _ 30 intertwined _ VERB VBN _ 27 xcomp _ _ 31 as _ SCONJ IN _ 33 mark _ _ 32 to _ PART TO _ 33 mark _ _ 33 constitute _ VERB VB _ 30 advcl _ _ 34 one _ NUM CD _ 35 nummod _ _ 35 market _ NOUN NN _ 33 dobj _ _ 36 effectively _ ADV RB _ 33 advmod _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 Traders _ NOUN NNS _ 3 nsubj _ _ 2 can _ AUX MD _ 3 aux _ _ 3 vary _ VERB VB _ 0 root _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 strategies _ NOUN NNS _ 3 dobj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 execute _ VERB VB _ 3 conj _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 orders _ NOUN NNS _ 7 dobj _ _ 10 in _ ADP IN _ 12 case _ _ 11 any _ DET DT _ 12 det _ _ 12 one _ NUM CD _ 7 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 them _ PRON PRP _ 12 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 therefore _ ADV RB _ 3 advmod _ _ 3 makes _ VERB VBZ _ 0 root _ _ 4 no _ DET DT _ 5 neg _ _ 5 sense _ NOUN NN _ 3 dobj _ _ 6 for _ SCONJ IN _ 10 mark _ _ 7 each _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 10 nsubj _ _ 9 to _ PART TO _ 10 mark _ _ 10 adopt _ VERB VB _ 3 advcl _ _ 11 different _ ADJ JJ _ 13 amod _ _ 12 circuit _ NOUN NN _ 13 compound _ _ 13 breakers _ NOUN NNS _ 10 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 achieve _ VERB VB _ 0 root _ _ 3 maximum _ NOUN NN _ 4 compound _ _ 4 liquidity _ NOUN NN _ 2 dobj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 minimize _ VERB VB _ 2 conj _ _ 7 price _ NOUN NN _ 8 compound _ _ 8 volatility _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 either _ CONJ CC _ 2 cc:preconj _ _ 11 all _ DET DT _ 12 det _ _ 12 markets _ NOUN NNS _ 15 nsubj _ _ 13 should _ AUX MD _ 15 aux _ _ 14 be _ VERB VB _ 15 cop _ _ 15 open _ ADJ JJ _ 2 conj _ _ 16 to _ ADP TO _ 17 case _ _ 17 trading _ NOUN NN _ 15 nmod _ _ 18 or _ CONJ CC _ 2 cc _ _ 19 none _ NOUN NN _ 2 conj _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Synchronized _ VERB VBN _ 3 amod _ _ 2 circuit _ NOUN NN _ 3 compound _ _ 3 breakers _ NOUN NNS _ 7 nsubj _ _ 4 would _ AUX MD _ 7 aux _ _ 5 not _ PART RB _ 7 neg _ _ 6 have _ AUX VB _ 7 aux _ _ 7 halted _ VERB VBN _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 slide _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 prices _ NOUN NNS _ 9 nmod _ _ 12 on _ ADP IN _ 13 case _ _ 13 Friday _ PROPN NNP _ 9 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 but _ CONJ CC _ 7 cc _ _ 16 they _ PRON PRP _ 20 nsubj _ _ 17 probably _ ADV RB _ 20 advmod _ _ 18 would _ AUX MD _ 20 aux _ _ 19 have _ AUX VB _ 20 aux _ _ 20 made _ VERB VBN _ 7 conj _ _ 21 for _ ADP IN _ 26 case _ _ 22 smoother _ ADJ JJR _ 26 amod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 less _ ADV RBR _ 25 advmod _ _ 25 volatile _ ADJ JJ _ 26 amod _ _ 26 executions _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ PART POS _ 3 dep _ _ 3 time _ NOUN NN _ 0 root _ _ 4 for _ SCONJ IN _ 14 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 exchanges _ NOUN NNS _ 14 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 12 det _ _ 9 Securities _ PROPN NNP _ 12 compound _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Exchange _ PROPN NNP _ 9 conj _ _ 12 Commission _ PROPN NNP _ 6 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 agree _ VERB VB _ 3 acl:relcl _ _ 15 on _ ADP IN _ 17 case _ _ 16 joint _ ADJ JJ _ 17 amod _ _ 17 conditions _ NOUN NNS _ 14 nmod _ _ 18 for _ SCONJ IN _ 19 mark _ _ 19 halting _ VERB VBG _ 17 acl _ _ 20 trading _ NOUN NN _ 19 dobj _ _ 21 or _ CONJ CC _ 19 cc _ _ 22 staying _ VERB VBG _ 19 conj _ _ 23 open _ ADJ JJ _ 22 xcomp _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Let _ VERB VB _ 0 root _ _ 2 's _ PRON PRP _ 1 dobj _ _ 3 not _ PART RB _ 4 neg _ _ 4 have _ VERB VB _ 1 dep _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 shut _ VERB VBD _ 4 xcomp _ _ 8 down _ ADP RP _ 7 compound:prt _ _ 9 for _ ADP IN _ 11 case _ _ 10 30 _ NUM CD _ 11 nummod _ _ 11 minutes _ NOUN NNS _ 7 nmod _ _ 12 when _ ADV WRB _ 15 advmod _ _ 13 the _ DET DT _ 14 det _ _ 14 Dow _ PROPN NNP _ 15 nsubj _ _ 15 declines _ VERB VBZ _ 7 advcl _ _ 16 100 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 15 dobj _ _ 18 and _ CONJ CC _ 7 cc _ _ 19 another _ DET DT _ 20 nsubj _ _ 20 shut _ VERB VBD _ 7 conj _ _ 21 down _ ADP RP _ 20 compound:prt _ _ 22 for _ ADP IN _ 24 case _ _ 23 an _ DET DT _ 24 det _ _ 24 hour _ NOUN NN _ 20 nmod _ _ 25 after _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 250-point _ ADJ JJ _ 28 amod _ _ 28 decline _ NOUN NN _ 20 nmod _ _ 29 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 need _ NOUN NN _ 12 nsubj _ _ 3 for _ ADP IN _ 7 case _ _ 4 hurried _ ADJ JJ _ 7 amod _ _ 5 last-minute _ ADJ JJ _ 7 amod _ _ 6 telephone _ NOUN NN _ 7 compound _ _ 7 negotiations _ NOUN NNS _ 2 nmod _ _ 8 among _ ADP IN _ 10 case _ _ 9 market _ NOUN NN _ 10 compound _ _ 10 officials _ NOUN NNS _ 7 nmod _ _ 11 will _ AUX MD _ 12 aux _ _ 12 disappear _ VERB VB _ 0 root _ _ 13 once _ SCONJ IN _ 17 mark _ _ 14 rules _ NOUN NNS _ 17 nsubj _ _ 15 are _ VERB VBP _ 17 cop _ _ 16 in _ ADP IN _ 17 case _ _ 17 place _ NOUN NN _ 12 advcl _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 synchronize _ VERB VBP _ 17 ccomp _ _ 20 circuit _ NOUN NN _ 21 compound _ _ 21 breakers _ NOUN NNS _ 19 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 all _ DET DT _ 24 det _ _ 24 markets _ NOUN NNS _ 19 nmod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 circuit _ NOUN NN _ 4 compound _ _ 4 breakers _ NOUN NNS _ 16 nsubj _ _ 5 , _ PUNCT , _ 16 punct _ _ 6 if _ SCONJ IN _ 8 mark _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 are _ VERB VBP _ 16 dep _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 applied _ VERB VBN _ 8 xcomp _ _ 12 at _ ADP IN _ 13 case _ _ 13 all _ DET DT _ 11 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 will _ AUX MD _ 16 aux _ _ 16 require _ VERB VB _ 0 root _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 futures _ NOUN NNS _ 22 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 options _ NOUN NNS _ 21 compound _ _ 21 trading _ NOUN NN _ 18 conj _ _ 22 continue _ VERB VB _ 16 ccomp _ _ 23 as _ ADV RB _ 24 advmod _ _ 24 long _ ADV RB _ 22 advmod _ _ 25 as _ SCONJ IN _ 31 mark _ _ 26 the _ DET DT _ 30 det _ _ 27 New _ PROPN NNP _ 30 compound _ _ 28 York _ PROPN NNP _ 30 compound _ _ 29 Stock _ PROPN NNP _ 30 compound _ _ 30 Exchange _ PROPN NNP _ 31 nsubj _ _ 31 remains _ VERB VBZ _ 24 advcl _ _ 32 open _ ADJ JJ _ 31 xcomp _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rules _ NOUN NNS _ 5 nsubjpass _ _ 3 should _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 established _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 7 case _ _ 7 agreement _ NOUN NN _ 5 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 officials _ NOUN NNS _ 7 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 all _ DET DT _ 14 det _ _ 13 affected _ VERB VBN _ 14 amod _ _ 14 exchanges _ NOUN NNS _ 10 nmod _ _ 15 acting _ VERB VBG _ 10 acl _ _ 16 under _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 oversight _ NOUN NN _ 15 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 with _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 approval _ NOUN NN _ 18 conj _ _ 23 of _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 government _ NOUN NN _ 27 compound _ _ 26 regulatory _ ADJ JJ _ 27 amod _ _ 27 agencies _ NOUN NNS _ 18 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 Should _ AUX MD _ 24 aux _ _ 2 the _ DET DT _ 3 det _ _ 3 SEC _ PROPN NNP _ 24 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 the _ DET DT _ 9 det _ _ 6 Commodities _ PROPN NNP _ 9 compound _ _ 7 Futures _ PROPN NNP _ 9 compound _ _ 8 Trading _ PROPN NNP _ 9 compound _ _ 9 Commission _ PROPN NNP _ 3 conj _ _ 10 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 11 which _ PRON WDT _ 17 nsubj _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 with _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 SEC _ PROPN NNP _ 17 nmod _ _ 16 , _ PUNCT , _ 17 punct _ _ 17 regulates _ VERB VBZ _ 9 dep _ _ 18 the _ DET DT _ 21 det _ _ 19 Chicago _ PROPN NNP _ 21 compound _ _ 20 stock-index _ ADJ JJ _ 21 amod _ _ 21 markets _ NOUN NNS _ 17 dobj _ _ 22 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 23 be _ VERB VB _ 24 cop _ _ 24 unable _ ADJ JJ _ 31 advcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 agree _ VERB VB _ 24 xcomp _ _ 27 , _ PUNCT , _ 31 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 issue _ NOUN NN _ 31 nsubj _ _ 30 may _ AUX MD _ 31 aux _ _ 31 have _ VERB VB _ 0 root _ _ 32 to _ PART TO _ 34 mark _ _ 33 be _ AUX VB _ 34 auxpass _ _ 34 resolved _ VERB VBN _ 31 xcomp _ _ 35 by _ ADP IN _ 36 case _ _ 36 decision _ NOUN NN _ 34 nmod _ _ 37 of _ ADP IN _ 40 case _ _ 38 the _ DET DT _ 40 det _ _ 39 Treasury _ PROPN NNP _ 40 compound _ _ 40 secretary _ NOUN NN _ 36 nmod _ _ 41 . _ PUNCT . _ 31 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 ways _ NOUN NNS _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 our _ PRON PRP$ _ 7 nmod:poss _ _ 6 financial _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 10 nsubjpass _ _ 8 are _ VERB VBP _ 10 auxpass _ _ 9 better _ ADV RBR _ 10 advmod _ _ 10 prepared _ VERB VBN _ 0 root _ _ 11 today _ ADV RB _ 10 nmod:tmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 handle _ VERB VB _ 10 xcomp _ _ 14 a _ DET DT _ 15 det _ _ 15 decline _ NOUN NN _ 13 dobj _ _ 16 than _ SCONJ IN _ 18 mark _ _ 17 they _ PRON PRP _ 18 nsubj _ _ 18 were _ VERB VBD _ 10 advcl _ _ 19 two _ NUM CD _ 20 nummod _ _ 20 years _ NOUN NNS _ 21 nmod:npmod _ _ 21 ago _ ADV RB _ 18 advmod _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 7 nsubj _ _ 6 now _ ADV RB _ 7 advmod _ _ 7 has _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 capacity _ NOUN NN _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 handle _ VERB VB _ 9 acl _ _ 12 a _ DET DT _ 13 det _ _ 13 volume _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 18 case _ _ 15 nearly _ ADV RB _ 17 advmod _ _ 16 a _ DET DT _ 17 advmod _ _ 17 billion _ NUM CD _ 18 nummod _ _ 18 shares _ NOUN NNS _ 13 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 day _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Telephone _ NOUN NN _ 2 compound _ _ 2 service _ NOUN NN _ 5 nsubjpass _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ AUX VBN _ 5 auxpass _ _ 5 improved _ VERB VBN _ 0 root _ _ 6 for _ ADP IN _ 7 case _ _ 7 customers _ NOUN NNS _ 5 nmod _ _ 8 trying _ VERB VBG _ 7 acl _ _ 9 to _ PART TO _ 10 mark _ _ 10 reach _ VERB VB _ 8 xcomp _ _ 11 their _ PRON PRP$ _ 12 nmod:poss _ _ 12 brokers _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 and _ CONJ CC _ 5 cc _ _ 15 specialists _ NOUN NNS _ 31 nsubj _ _ 16 -- _ PUNCT : _ 15 punct _ _ 17 who _ PRON WP _ 19 dobj _ _ 18 I _ PRON PRP _ 19 nsubj _ _ 19 believe _ VERB VBP _ 15 acl:relcl _ _ 20 should _ AUX MD _ 21 aux _ _ 21 stay _ VERB VB _ 19 ccomp _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 despite _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 urgings _ NOUN NNS _ 19 nmod _ _ 26 of _ ADP IN _ 29 case _ _ 27 some _ DET DT _ 29 det _ _ 28 post-crash _ ADJ JJ _ 29 amod _ _ 29 critics _ NOUN NNS _ 25 nmod _ _ 30 -- _ PUNCT : _ 15 punct _ _ 31 have _ VERB VB _ 5 conj _ _ 32 larger _ ADJ JJR _ 34 amod _ _ 33 capital _ NOUN NN _ 34 compound _ _ 34 positions _ NOUN NNS _ 31 dobj _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 2 Of _ ADP IN _ 3 case _ _ 3 course _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 specialists _ NOUN NNS _ 7 nmod:poss _ _ 6 ' _ PART POS _ 5 case _ _ 7 actions _ NOUN NNS _ 11 nsubj _ _ 8 alone _ ADV RB _ 7 advmod _ _ 9 can _ AUX MD _ 11 aux _ _ 10 never _ ADV RB _ 11 neg _ _ 11 prevent _ VERB VB _ 0 root _ _ 12 a _ DET DT _ 14 det _ _ 13 major _ ADJ JJ _ 14 amod _ _ 14 crack _ NOUN NN _ 11 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 1 Witness _ VERB VB _ 0 root _ _ 2 the _ DET DT _ 3 det _ _ 3 fact _ NOUN NN _ 1 dobj _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 trading _ NOUN NN _ 9 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 some _ DET DT _ 8 det _ _ 8 stocks _ NOUN NNS _ 5 nmod _ _ 9 closed _ VERB VBD _ 3 ccomp _ _ 10 early _ ADJ JJ _ 11 advmod _ _ 11 Friday _ PROPN NNP _ 9 advmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 opened _ VERB VBD _ 9 conj _ _ 14 late _ ADJ JJ _ 15 advmod _ _ 15 Monday _ PROPN NNP _ 13 advmod _ _ 16 because _ ADP IN _ 19 case _ _ 17 of _ ADP IN _ 16 mwe _ _ 18 an _ DET DT _ 19 det _ _ 19 excess _ NOUN NN _ 9 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 sell _ NOUN NN _ 22 compound _ _ 22 orders _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 1 punct _ _ 24 -RRB- _ PUNCT -RRB- _ 1 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 task _ NOUN NN _ 8 nsubj _ _ 4 of _ SCONJ IN _ 5 mark _ _ 5 improving _ VERB VBG _ 3 acl _ _ 6 market _ NOUN NN _ 7 compound _ _ 7 performance _ NOUN NN _ 5 dobj _ _ 8 remains _ VERB VBZ _ 0 root _ _ 9 unfinished _ ADJ JJ _ 8 xcomp _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Freund _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 former _ ADJ JJ _ 6 amod _ _ 5 chief _ ADJ JJ _ 6 amod _ _ 6 economist _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 New _ PROPN NNP _ 12 compound _ _ 10 York _ PROPN NNP _ 12 compound _ _ 11 Stock _ PROPN NNP _ 12 compound _ _ 12 Exchange _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 is _ VERB VBZ _ 16 cop _ _ 15 a _ DET DT _ 16 det _ _ 16 professor _ NOUN NN _ 0 root _ _ 17 of _ ADP IN _ 18 case _ _ 18 economics _ NOUN NNS _ 16 nmod _ _ 19 at _ ADP IN _ 24 case _ _ 20 Pace _ PROPN NNP _ 21 compound _ _ 21 University _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 business _ NOUN NN _ 24 compound _ _ 24 school _ NOUN NN _ 16 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 New _ PROPN NNP _ 27 compound _ _ 27 York _ PROPN NNP _ 24 nmod _ _ 28 . _ PUNCT . _ 16 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 UNIFIED _ ADJ JJ _ 3 amod _ _ 3 EUROPE _ PROPN NNP _ 4 nsubj _ _ 4 poses _ VERB VBZ _ 0 root _ _ 5 labor _ NOUN NN _ 6 compound _ _ 6 problems _ NOUN NNS _ 4 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 prospects _ NOUN NNS _ 6 conj _ _ 9 for _ ADP IN _ 11 case _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 firms _ NOUN NNS _ 6 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 social _ ADJ JJ _ 4 amod _ _ 4 dimension _ NOUN NN _ 24 nsubj _ _ 5 '' _ PUNCT '' _ 4 punct _ _ 6 -- _ PUNCT : _ 8 punct _ _ 7 worker _ NOUN NN _ 8 compound _ _ 8 concerns _ NOUN NNS _ 4 dep _ _ 9 -- _ PUNCT : _ 8 punct _ _ 10 of _ ADP IN _ 15 case _ _ 11 the _ DET DT _ 13 det _ _ 12 European _ PROPN NNP _ 13 compound _ _ 13 Community _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 plan _ NOUN NN _ 4 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 open _ VERB VB _ 15 acl _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 internal _ ADJ JJ _ 20 amod _ _ 20 borders _ NOUN NNS _ 17 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 1992 _ NUM CD _ 17 nmod _ _ 23 could _ AUX MD _ 24 aux _ _ 24 set _ VERB VB _ 37 ccomp _ _ 25 the _ DET DT _ 26 det _ _ 26 effort _ NOUN NN _ 24 dobj _ _ 27 `` _ PUNCT `` _ 24 punct _ _ 28 off _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 rails _ NOUN NNS _ 24 nmod _ _ 31 '' _ PUNCT '' _ 24 punct _ _ 32 if _ SCONJ IN _ 34 mark _ _ 33 not _ ADV RB _ 34 neg _ _ 34 done _ VERB VBN _ 24 advcl _ _ 35 reasonably _ ADV RB _ 34 advmod _ _ 36 , _ PUNCT , _ 37 punct _ _ 37 says _ VERB VBZ _ 0 root _ _ 38 General _ PROPN NNP _ 44 compound _ _ 39 Electric _ PROPN NNP _ 44 compound _ _ 40 senior _ ADJ JJ _ 44 amod _ _ 41 vice _ NOUN NN _ 44 compound _ _ 42 president _ NOUN NN _ 44 compound _ _ 43 Frank _ PROPN NNP _ 44 compound _ _ 44 Doyle _ PROPN NNP _ 37 nsubj _ _ 45 . _ PUNCT . _ 37 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 companies _ NOUN NNS _ 8 nsubj _ _ 3 wanting _ VERB VBG _ 2 acl _ _ 4 to _ PART TO _ 5 mark _ _ 5 expand _ VERB VB _ 3 xcomp _ _ 6 in _ ADP IN _ 7 case _ _ 7 Europe _ PROPN NNP _ 5 nmod _ _ 8 face _ VERB VBP _ 33 ccomp _ _ 9 `` _ PUNCT `` _ 11 punct _ _ 10 tough _ ADJ JJ _ 11 amod _ _ 11 pressure _ NOUN NN _ 8 dobj _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 from _ ADP IN _ 14 case _ _ 14 unions _ NOUN NNS _ 11 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 nations _ NOUN NNS _ 8 nmod _ _ 17 such _ ADJ JJ _ 20 case _ _ 18 as _ ADP IN _ 17 mwe _ _ 19 West _ PROPN NNP _ 20 compound _ _ 20 Germany _ PROPN NNP _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 play _ VERB VBP _ 16 acl:relcl _ _ 24 a _ DET DT _ 27 det _ _ 25 big _ ADJ JJ _ 27 amod _ _ 26 consulting _ NOUN NN _ 27 compound _ _ 27 role _ NOUN NN _ 23 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 management _ NOUN NN _ 30 compound _ _ 30 decisions _ NOUN NNS _ 23 nmod _ _ 31 , _ PUNCT , _ 33 punct _ _ 32 he _ PRON PRP _ 33 nsubj _ _ 33 says _ VERB VBZ _ 0 root _ _ 34 . _ PUNCT . _ 33 punct _ _ 1 FMC _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Baxter _ PROPN NNP _ 5 compound _ _ 5 International _ PROPN NNP _ 2 conj _ _ 6 say _ VERB VBP _ 0 root _ _ 7 unions _ NOUN NNS _ 11 nsubj _ _ 8 also _ ADV RB _ 11 advmod _ _ 9 wo _ AUX MD _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 like _ VERB VB _ 6 ccomp _ _ 12 plant _ NOUN NN _ 13 compound _ _ 13 relocations _ NOUN NNS _ 11 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 needed _ VERB VBN _ 16 amod _ _ 16 restructuring _ NOUN NN _ 13 conj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 which _ PRON WDT _ 19 nsubj _ _ 19 means _ VERB VBZ _ 13 acl:relcl _ _ 20 layoffs _ NOUN NNS _ 19 dobj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 employers _ NOUN NNS _ 5 nsubj _ _ 3 have _ AUX VBP _ 5 aux _ _ 4 already _ ADV RB _ 5 advmod _ _ 5 begun _ VERB VBN _ 36 dep _ _ 6 moving _ VERB VBG _ 5 xcomp _ _ 7 to _ ADP TO _ 9 case _ _ 8 southern _ ADJ JJ _ 9 amod _ _ 9 countries _ NOUN NNS _ 6 nmod _ _ 10 such _ ADJ JJ _ 12 case _ _ 11 as _ ADP IN _ 10 mwe _ _ 12 Spain _ PROPN NNP _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Italy _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 where _ ADV WRB _ 19 advmod _ _ 17 wages _ NOUN NNS _ 19 nsubj _ _ 18 are _ VERB VBP _ 19 cop _ _ 19 low _ ADJ JJ _ 9 acl:relcl _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 unions _ NOUN NNS _ 23 nsubj _ _ 22 are _ VERB VBP _ 23 cop _ _ 23 weaker _ ADJ JJR _ 19 conj _ _ 24 ; _ PUNCT : _ 5 punct _ _ 25 demand _ NOUN NN _ 32 nsubj _ _ 26 for _ ADP IN _ 28 case _ _ 27 trained _ VERB VBN _ 28 amod _ _ 28 labor _ NOUN NN _ 25 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 managers _ NOUN NNS _ 28 conj _ _ 31 will _ AUX MD _ 32 aux _ _ 32 rise _ VERB VB _ 5 parataxis _ _ 33 there _ ADV RB _ 32 advmod _ _ 34 , _ PUNCT , _ 5 punct _ _ 35 FMC _ PROPN NNP _ 36 nsubj _ _ 36 says _ VERB VBZ _ 0 root _ _ 37 . _ PUNCT . _ 36 punct _ _ 1 Pfizer _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Fluor _ PROPN NNP _ 1 conj _ _ 4 and _ CONJ CC _ 1 cc _ _ 5 GE _ PROPN NNP _ 1 conj _ _ 6 see _ VERB VBP _ 0 root _ _ 7 big _ ADJ JJ _ 12 amod _ _ 8 `` _ PUNCT `` _ 12 punct _ _ 9 EC _ PROPN NNP _ 12 compound _ _ 10 92 _ NUM CD _ 12 nummod _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 pluses _ NOUN NNS _ 6 dobj _ _ 13 : _ PUNCT : _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 push _ NOUN NN _ 12 dep _ _ 16 for _ ADP IN _ 18 case _ _ 17 job _ NOUN NN _ 18 compound _ _ 18 training _ NOUN NN _ 15 nmod _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 ease _ NOUN NN _ 15 conj _ _ 21 in _ SCONJ IN _ 22 mark _ _ 22 moving _ VERB VBG _ 20 acl _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 finding _ VERB VBG _ 22 conj _ _ 25 workers _ NOUN NNS _ 24 dobj _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 CLUBBING _ VERB VBG _ 10 csubj _ _ 2 A _ DET DT _ 3 det _ _ 3 FAN _ NOUN NN _ 1 dobj _ _ 4 was _ VERB VBD _ 10 cop _ _ 5 n't _ PART RB _ 10 neg _ _ 6 the _ DET DT _ 8 det _ _ 7 Baltimore _ PROPN NNP _ 8 compound _ _ 8 Orioles _ PROPN NNP _ 10 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 fault _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 So _ ADV RB _ 2 advmod _ _ 2 said _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 federal _ ADJ JJ _ 5 amod _ _ 5 judge _ NOUN NN _ 2 nsubj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 in _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 case _ NOUN NN _ 2 nmod _ _ 10 involving _ VERB VBG _ 9 acl _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 players _ NOUN NNS _ 10 dobj _ _ 13 for _ ADP IN _ 21 case _ _ 14 the _ DET DT _ 21 det _ _ 15 minor _ ADJ JJ _ 21 amod _ _ 16 league _ NOUN NN _ 21 compound _ _ 17 Bluefield _ PROPN NNP _ 21 dep _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Va. _ PROPN NNP _ 17 dep _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 Orioles _ PROPN NNP _ 12 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 a _ DET DT _ 26 det _ _ 24 Baltimore _ PROPN NNP _ 26 compound _ _ 25 farm _ NOUN NN _ 26 compound _ _ 26 team _ NOUN NN _ 21 appos _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 players _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 heckled _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 patron _ NOUN NN _ 4 nmod _ _ 8 during _ ADP IN _ 15 case _ _ 9 a _ DET DT _ 15 det _ _ 10 July _ PROPN NNP _ 15 dep _ _ 11 4 _ NUM CD _ 10 dep _ _ 12 , _ PUNCT , _ 10 punct _ _ 13 1988 _ NUM CD _ 10 dep _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 game _ NOUN NN _ 4 nmod _ _ 16 with _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 Martinsville _ PROPN NNP _ 19 compound _ _ 19 Phillies _ PROPN NNP _ 15 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Like _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 parent _ NOUN NN _ 11 nmod _ _ 4 that _ DET DT _ 5 det _ _ 5 year _ NOUN NN _ 3 nmod:tmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 `` _ PUNCT `` _ 11 punct _ _ 8 Bluefield _ PROPN NNP _ 11 nsubj _ _ 9 was _ AUX VBD _ 11 aux _ _ 10 not _ PART RB _ 11 neg _ _ 11 having _ VERB VBG _ 19 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 11 nmod:tmod _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 judge _ NOUN NN _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 After _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 game _ NOUN NN _ 25 nmod _ _ 4 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 5 `` _ PUNCT `` _ 21 punct _ _ 6 Bluefield _ PROPN NNP _ 7 nsubj _ _ 7 lost _ VERB VBD _ 21 ccomp _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 9-8 _ NUM CD _ 7 advmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 stranding _ VERB VBG _ 7 xcomp _ _ 12 three _ NUM CD _ 13 nummod _ _ 13 runners _ NOUN NNS _ 11 dobj _ _ 14 in _ ADP IN _ 17 case _ _ 15 ... _ PUNCT : _ 17 punct _ _ 16 the _ DET DT _ 17 det _ _ 17 ninth _ ADJ JJ _ 11 nmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 '' _ PUNCT '' _ 21 punct _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 noted _ VERB VBD _ 25 parataxis _ _ 22 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 trouble _ NOUN NN _ 25 nsubj _ _ 25 began _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 More _ ADJ JJR _ 2 amod _ _ 2 taunting _ NOUN NN _ 12 nsubj _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 parking _ NOUN NN _ 6 compound _ _ 6 lot _ NOUN NN _ 2 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 players _ NOUN NNS _ 10 nsubj _ _ 10 said _ VERB VBD _ 12 parataxis _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 led _ VERB VBD _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 fight _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 fan _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 punched _ VERB VBN _ 3 ccomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 kicked _ VERB VBN _ 6 conj _ _ 9 by _ ADP IN _ 11 case _ _ 10 one _ NUM CD _ 11 nummod _ _ 11 player _ NOUN NN _ 6 nmod _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 that _ SCONJ IN _ 16 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 other _ ADJ JJ _ 16 nsubj _ _ 16 broke _ VERB VBD _ 6 conj _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 jaw _ NOUN NN _ 16 dobj _ _ 19 with _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 22 det _ _ 21 baseball _ NOUN NN _ 22 compound _ _ 22 bat _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 judge _ NOUN NN _ 3 nsubj _ _ 3 dismissed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 fan _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 suit _ NOUN NN _ 3 dobj _ _ 8 against _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 team _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 however _ ADV RB _ 3 advmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 ruling _ VERB VBG _ 3 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 Orioles _ PROPN NNP _ 17 nsubj _ _ 17 innocent _ ADJ JJ _ 14 xcomp _ _ 18 of _ ADP IN _ 20 case _ _ 19 negligent _ ADJ JJ _ 20 amod _ _ 20 hiring _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 and _ CONJ CC _ 17 cc _ _ 23 not _ ADV RB _ 24 neg _ _ 24 responsible _ ADJ JJ _ 17 conj _ _ 25 for _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 fight _ NOUN NN _ 24 nmod _ _ 28 that _ PRON WDT _ 34 nsubj _ _ 29 was _ VERB VBD _ 34 cop _ _ 30 outside _ ADP IN _ 34 case _ _ 31 the _ DET DT _ 32 det _ _ 32 players _ NOUN NNS _ 34 nmod:poss _ _ 33 ' _ PART POS _ 32 case _ _ 34 employment _ NOUN NN _ 27 acl:relcl _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 PROPOSALS _ NOUN NNS _ 2 nsubj _ _ 2 ARISE _ VERB VBP _ 0 root _ _ 3 for _ SCONJ IN _ 4 mark _ _ 4 coping _ VERB VBG _ 2 advcl _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 shortage _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 nurses _ NOUN NNS _ 7 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 An _ DET DT _ 7 det _ _ 2 Association _ PROPN NNP _ 7 dep _ _ 3 of _ ADP IN _ 6 case _ _ 4 Academic _ PROPN NNP _ 6 compound _ _ 5 Health _ PROPN NNP _ 6 compound _ _ 6 Centers _ PROPN NNP _ 2 nmod _ _ 7 report _ NOUN NN _ 8 nsubj _ _ 8 urges _ VERB VBZ _ 0 root _ _ 9 freeing _ VERB VBG _ 8 xcomp _ _ 10 nurses _ NOUN NNS _ 9 dobj _ _ 11 from _ ADP IN _ 12 case _ _ 12 duties _ NOUN NNS _ 9 nmod _ _ 13 that _ PRON WDT _ 16 nsubj _ _ 14 do _ AUX VBP _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 require _ VERB VB _ 12 acl:relcl _ _ 17 special _ ADJ JJ _ 18 amod _ _ 18 skills _ NOUN NNS _ 16 dobj _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 recommends _ VERB VBZ _ 0 root _ _ 4 better _ ADJ JJR _ 5 amod _ _ 5 retirement _ NOUN NN _ 3 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 day-care _ NOUN NN _ 8 compound _ _ 8 benefits _ NOUN NNS _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 basing _ VERB VBG _ 5 conj _ _ 12 pay _ NOUN NN _ 11 dobj _ _ 13 on _ ADP IN _ 14 case _ _ 14 education _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 experience _ NOUN NN _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 nurses _ NOUN NNS _ 22 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 demanding _ ADJ JJ _ 22 amod _ _ 21 work _ NOUN NN _ 22 compound _ _ 22 schedules _ NOUN NNS _ 14 conj _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 opposes _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 8 det _ _ 5 American _ PROPN NNP _ 8 compound _ _ 6 Medical _ PROPN NNP _ 8 compound _ _ 7 Association _ PROPN NNP _ 8 compound _ _ 8 proposal _ NOUN NN _ 3 dobj _ _ 9 for _ SCONJ IN _ 10 mark _ _ 10 creating _ VERB VBG _ 8 acl _ _ 11 a _ DET DT _ 15 det _ _ 12 `` _ PUNCT `` _ 15 punct _ _ 13 registered _ ADJ JJ _ 15 amod _ _ 14 care _ NOUN NN _ 15 compound _ _ 15 technologist _ NOUN NN _ 10 dobj _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 '' _ PUNCT '' _ 3 punct _ _ 18 as _ ADP IN _ 21 case _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 potentially _ ADV RB _ 21 advmod _ _ 21 divisive _ ADJ JJ _ 3 advcl _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 ; _ PUNCT : _ 3 punct _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 says _ VERB VBZ _ 3 parataxis _ _ 26 the _ DET DT _ 27 det _ _ 27 job _ NOUN NN _ 29 nsubj _ _ 28 would _ AUX MD _ 29 aux _ _ 29 entail _ VERB VB _ 25 ccomp _ _ 30 an _ DET DT _ 33 det _ _ 31 unwanted _ ADJ JJ _ 33 amod _ _ 32 new _ ADJ JJ _ 33 amod _ _ 33 doctor _ NOUN NN _ 38 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 `` _ PUNCT `` _ 38 punct _ _ 36 bedside _ NOUN NN _ 38 compound _ _ 37 '' _ PUNCT '' _ 38 punct _ _ 38 extension _ NOUN NN _ 29 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Over _ ADP IN _ 3 advmod _ _ 2 a _ DET DT _ 3 advmod _ _ 3 third _ ADJ JJ _ 12 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 618 _ NUM CD _ 6 nummod _ _ 6 hospitals _ NOUN NNS _ 3 nmod _ _ 7 surveyed _ VERB VBN _ 6 acl _ _ 8 by _ ADP IN _ 11 case _ _ 9 consultant _ NOUN NN _ 11 compound _ _ 10 Hewitt _ PROPN NNP _ 11 compound _ _ 11 Associates _ PROPN NNP _ 7 nmod _ _ 12 use _ VERB VBP _ 0 root _ _ 13 a _ DET DT _ 16 det _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 clinical _ ADJ JJ _ 16 amod _ _ 16 ladder _ NOUN NN _ 12 dobj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 '' _ PUNCT '' _ 16 punct _ _ 19 basing _ VERB VBG _ 16 acl _ _ 20 advancement _ NOUN NN _ 19 dobj _ _ 21 on _ ADP IN _ 22 case _ _ 22 performance _ NOUN NN _ 19 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 education _ NOUN NN _ 22 conj _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 Many _ ADV RB _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 use _ VERB VB _ 0 root _ _ 4 recruiting _ VERB VBG _ 5 amod _ _ 5 bonuses _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 tuition _ NOUN NN _ 8 compound _ _ 8 reimbursement _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 loan _ NOUN NN _ 11 compound _ _ 11 repayment _ NOUN NN _ 5 conj _ _ 12 or _ CONJ CC _ 5 cc _ _ 13 child-care _ ADJ JJ _ 14 amod _ _ 14 help _ NOUN NN _ 5 conj _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 give _ VERB VBP _ 0 root _ _ 3 lump-sum _ ADJ JJ _ 4 amod _ _ 4 incentives _ NOUN NNS _ 2 dobj _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 MRA _ PROPN NNP _ 3 compound _ _ 2 Staffing _ PROPN NNP _ 3 compound _ _ 3 Systems _ PROPN NNP _ 4 nsubj _ _ 4 signs _ VERB VBZ _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 nurses _ NOUN NNS _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 paid _ VERB VBN _ 9 amod _ _ 9 travel _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 promising _ VERB VBG _ 4 advcl _ _ 12 annual _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 11 dobj _ _ 14 up _ ADP IN _ 17 case _ _ 15 to _ ADP TO _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 50,000 _ NUM CD _ 13 acl _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 free _ ADJ JJ _ 22 amod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 subsidized _ VERB VBN _ 19 conj _ _ 22 housing _ NOUN NN _ 13 conj _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 TREATING _ VERB VBG _ 6 csubj _ _ 2 EMPLOYEES _ NOUN NNS _ 1 dobj _ _ 3 with _ ADP IN _ 4 case _ _ 4 respect _ NOUN NN _ 1 nmod _ _ 5 is _ VERB VBZ _ 6 cop _ _ 6 crucial _ ADJ JJ _ 10 ccomp _ _ 7 for _ ADP IN _ 8 case _ _ 8 managers _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 consultant _ NOUN NN _ 13 compound _ _ 12 Hay _ PROPN NNP _ 13 compound _ _ 13 Group _ PROPN NNP _ 10 nsubj _ _ 14 after _ ADP IN _ 15 case _ _ 15 surveys _ NOUN NNS _ 10 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 18 advmod _ _ 18 million _ NUM CD _ 19 nummod _ _ 19 workers _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 9 nsubj _ _ 2 's _ VERB VBZ _ 9 cop _ _ 3 in _ ADP IN _ 9 case _ _ 4 their _ PRON PRP$ _ 9 nmod:poss _ _ 5 top _ ADJ JJ _ 9 amod _ _ 6 five _ NUM CD _ 9 nummod _ _ 7 `` _ PUNCT `` _ 9 punct _ _ 8 work _ NOUN NN _ 9 compound _ _ 9 values _ NOUN NNS _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 11 '' _ PUNCT '' _ 9 punct _ _ 1 Fully _ ADV RB _ 3 advmod _ _ 2 80 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 26 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 employees _ NOUN NNS _ 3 nmod _ _ 6 who _ PRON WP _ 7 nsubj _ _ 7 say _ VERB VBP _ 5 acl:relcl _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 bosses _ NOUN NNS _ 10 nsubj _ _ 10 treat _ VERB VBP _ 7 ccomp _ _ 11 them _ PRON PRP _ 10 dobj _ _ 12 with _ ADP IN _ 13 case _ _ 13 respect _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 but _ CONJ CC _ 3 cc _ _ 16 only _ ADV RB _ 18 advmod _ _ 17 a _ DET DT _ 18 advmod _ _ 18 third _ ADJ JJ _ 3 conj _ _ 19 of _ ADP IN _ 20 case _ _ 20 those _ PRON DT _ 18 nmod _ _ 21 who _ PRON WP _ 24 nsubj _ _ 22 do _ AUX VBP _ 24 aux _ _ 23 n't _ PART RB _ 24 neg _ _ 24 feel _ VERB VB _ 20 acl:relcl _ _ 25 respected _ VERB VBN _ 24 xcomp _ _ 26 say _ VERB VBP _ 0 root _ _ 27 they _ PRON PRP _ 29 nsubjpass _ _ 28 're _ AUX VBP _ 29 auxpass _ _ 29 satisfied _ VERB VBN _ 26 ccomp _ _ 30 with _ SCONJ IN _ 33 mark _ _ 31 where _ ADV WRB _ 33 advmod _ _ 32 they _ PRON PRP _ 33 nsubj _ _ 33 work _ VERB VBP _ 29 advcl _ _ 34 . _ PUNCT . _ 26 punct _ _ 1 SPRUCING _ VERB VBG _ 0 root _ _ 2 UP _ ADP RP _ 1 compound:prt _ _ 3 THE _ DET DT _ 4 det _ _ 4 DIGS _ NOUN NNS _ 1 dobj _ _ 5 : _ PUNCT : _ 1 punct _ _ 6 About _ ADV RB _ 7 advmod _ _ 7 200 _ NUM CD _ 8 nummod _ _ 8 employees _ NOUN NNS _ 21 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Maryland _ PROPN NNP _ 12 compound _ _ 12 Department _ PROPN NNP _ 8 nmod _ _ 13 of _ ADP IN _ 17 case _ _ 14 Economic _ PROPN NNP _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Employment _ PROPN NNP _ 14 conj _ _ 17 Development _ PROPN NNP _ 12 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 four _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 21 nmod _ _ 21 painted _ VERB VBD _ 1 parataxis _ _ 22 walls _ NOUN NNS _ 21 dobj _ _ 23 , _ PUNCT , _ 21 punct _ _ 24 polished _ VERB VBD _ 21 conj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 carpeted _ VERB VBD _ 24 conj _ _ 27 floors _ NOUN NNS _ 24 dobj _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 bought _ VERB VBD _ 21 conj _ _ 30 plants _ NOUN NNS _ 29 dobj _ _ 31 , _ PUNCT , _ 21 punct _ _ 32 cleaned _ VERB VBD _ 21 conj _ _ 33 windows _ NOUN NNS _ 32 dobj _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 blinds _ NOUN NNS _ 33 conj _ _ 36 , _ PUNCT , _ 21 punct _ _ 37 and _ CONJ CC _ 21 cc _ _ 38 hung _ VERB VBD _ 21 conj _ _ 39 pictures _ NOUN NNS _ 38 dobj _ _ 40 at _ ADP IN _ 45 case _ _ 41 the _ DET DT _ 42 det _ _ 42 agency _ NOUN NN _ 45 nmod:poss _ _ 43 's _ PART POS _ 42 case _ _ 44 Baltimore _ PROPN NNP _ 45 compound _ _ 45 office _ NOUN NN _ 21 nmod _ _ 46 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 3,000 _ NUM CD _ 3 nummod _ _ 3 hours _ NOUN NNS _ 7 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 work _ NOUN NN _ 3 nmod _ _ 6 will _ AUX MD _ 7 aux _ _ 7 save _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 state _ NOUN NN _ 7 iobj _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 55,000 _ NUM CD _ 7 dobj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 CURBING _ VERB VBG _ 5 csubj _ _ 2 WAGE _ NOUN NN _ 3 compound _ _ 3 BOOSTS _ NOUN NNS _ 1 dobj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 get _ VERB VB _ 28 ccomp _ _ 6 high _ ADJ JJ _ 7 amod _ _ 7 priority _ NOUN NN _ 5 dobj _ _ 8 again _ ADV RB _ 5 advmod _ _ 9 in _ ADP IN _ 12 case _ _ 10 1990 _ NUM CD _ 12 nummod _ _ 11 collective _ ADJ JJ _ 12 amod _ _ 12 bargaining _ NOUN NN _ 5 nmod _ _ 13 , _ PUNCT , _ 28 punct _ _ 14 a _ DET DT _ 19 det _ _ 15 Bureau _ PROPN NNP _ 19 dep _ _ 16 of _ ADP IN _ 18 case _ _ 17 National _ PROPN NNP _ 18 compound _ _ 18 Affairs _ PROPN NNP _ 15 nmod _ _ 19 survey _ NOUN NN _ 28 nsubj _ _ 20 of _ ADP IN _ 22 case _ _ 21 250 _ NUM CD _ 22 nummod _ _ 22 companies _ NOUN NNS _ 19 nmod _ _ 23 with _ ADP IN _ 24 case _ _ 24 pacts _ NOUN NNS _ 22 nmod _ _ 25 expiring _ VERB VBG _ 24 acl _ _ 26 next _ ADJ JJ _ 27 amod _ _ 27 year _ NOUN NN _ 25 nmod:tmod _ _ 28 indicates _ VERB VBZ _ 0 root _ _ 29 . _ PUNCT . _ 28 punct _ _ 1 Despite _ ADP IN _ 3 case _ _ 2 labor-shortage _ NOUN NN _ 3 compound _ _ 3 warnings _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 80 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 7 nsubj _ _ 7 aim _ VERB VBP _ 0 root _ _ 8 for _ ADP IN _ 11 case _ _ 9 first-year _ ADJ JJ _ 11 amod _ _ 10 wage _ NOUN NN _ 11 compound _ _ 11 increases _ NOUN NNS _ 7 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 under _ ADP IN _ 14 advmod _ _ 14 4 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 nmod _ _ 16 ; _ PUNCT : _ 7 punct _ _ 17 and _ CONJ CC _ 7 cc _ _ 18 77 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 20 nsubj _ _ 20 say _ VERB VBP _ 7 conj _ _ 21 they _ PRON PRP _ 23 nsubj _ _ 22 'd _ AUX MD _ 23 aux _ _ 23 try _ VERB VB _ 20 ccomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 replace _ VERB VB _ 23 xcomp _ _ 26 workers _ NOUN NNS _ 25 dobj _ _ 27 , _ PUNCT , _ 23 punct _ _ 28 if _ SCONJ IN _ 29 mark _ _ 29 struck _ VERB VBN _ 23 advcl _ _ 30 , _ PUNCT , _ 23 punct _ _ 31 or _ CONJ CC _ 23 cc _ _ 32 would _ AUX MD _ 33 aux _ _ 33 consider _ VERB VB _ 23 conj _ _ 34 it _ PRON PRP _ 33 dobj _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 TEMPORARY _ ADJ JJ _ 2 amod _ _ 2 WORKERS _ NOUN NNS _ 3 nsubj _ _ 3 have _ VERB VBP _ 13 ccomp _ _ 4 good _ ADJ JJ _ 5 amod _ _ 5 educations _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 the _ DET DT _ 9 det _ _ 8 National _ PROPN NNP _ 9 compound _ _ 9 Association _ PROPN NNP _ 13 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 Temporary _ PROPN NNP _ 12 compound _ _ 12 Services _ PROPN NNP _ 9 nmod _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 ; _ PUNCT : _ 13 punct _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 survey _ NOUN NN _ 21 nsubj _ _ 17 of _ ADP IN _ 20 case _ _ 18 2,508 _ NUM CD _ 20 nummod _ _ 19 such _ ADJ JJ _ 20 amod _ _ 20 employees _ NOUN NNS _ 16 nmod _ _ 21 shows _ VERB VBZ _ 13 parataxis _ _ 22 82 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dobj _ _ 24 with _ ADP IN _ 25 case _ _ 25 more _ ADJ JJR _ 23 nmod _ _ 26 than _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 high-school _ ADJ JJ _ 29 amod _ _ 29 education _ NOUN NN _ 25 nmod _ _ 30 , _ PUNCT , _ 23 punct _ _ 31 and _ CONJ CC _ 23 cc _ _ 32 31 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 23 conj _ _ 34 with _ ADP IN _ 36 case _ _ 35 college _ NOUN NN _ 36 compound _ _ 36 degrees _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 1 About _ ADV RB _ 2 advmod _ _ 2 12 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 retired _ VERB VBN _ 0 root _ _ 6 from _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 full-time _ ADJ JJ _ 9 amod _ _ 9 job _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 while _ SCONJ IN _ 15 mark _ _ 12 54 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 15 nsubjpass _ _ 14 were _ AUX VBD _ 15 auxpass _ _ 15 asked _ VERB VBN _ 5 advcl _ _ 16 to _ PART TO _ 17 mark _ _ 17 stay _ VERB VB _ 15 xcomp _ _ 18 on _ ADP RP _ 17 compound:prt _ _ 19 full _ ADJ JJ _ 20 amod _ _ 20 time _ NOUN NN _ 17 dobj _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 HOME-SALE _ ADJ JJ _ 2 amod _ _ 2 LOSSES _ NOUN NNS _ 3 nsubj _ _ 3 rise _ VERB VBP _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 but _ CONJ CC _ 3 cc _ _ 6 they _ PRON PRP _ 9 nsubjpass _ _ 7 're _ AUX VBP _ 9 auxpass _ _ 8 often _ ADV RB _ 9 advmod _ _ 9 covered _ VERB VBN _ 3 conj _ _ 10 by _ ADP IN _ 11 case _ _ 11 employers _ NOUN NNS _ 9 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 search _ VERB VBP _ 0 root _ _ 4 for _ ADP IN _ 5 case _ _ 5 ways _ NOUN NNS _ 3 nmod _ _ 6 to _ PART TO _ 7 mark _ _ 7 limit _ VERB VB _ 5 acl _ _ 8 the _ DET DT _ 9 det _ _ 9 damage _ NOUN NN _ 7 dobj _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 advmod _ _ 2 third _ ADJ JJ _ 12 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 439 _ NUM CD _ 5 nummod _ _ 5 companies _ NOUN NNS _ 2 nmod _ _ 6 surveyed _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 Employee _ PROPN NNP _ 11 compound _ _ 10 Relocation _ PROPN NNP _ 11 compound _ _ 11 Council _ PROPN NNP _ 6 nmod _ _ 12 report _ VERB VBP _ 0 root _ _ 13 a _ DET DT _ 14 det _ _ 14 rise _ NOUN NN _ 12 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 1988 _ NUM CD _ 18 nummod _ _ 17 sales _ NOUN NNS _ 18 compound _ _ 18 losses _ NOUN NNS _ 14 nmod _ _ 19 over _ ADP IN _ 20 case _ _ 20 1987 _ NUM CD _ 14 nmod _ _ 21 . _ PUNCT . _ 12 punct _ _ 1 About _ ADV RB _ 2 advmod _ _ 2 72 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 4 nsubj _ _ 4 reimburse _ VERB VBP _ 0 root _ _ 5 for _ ADP IN _ 9 case _ _ 6 all _ DET DT _ 9 amod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 some _ DET DT _ 6 conj _ _ 9 losses _ NOUN NNS _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 1984 _ NUM CD _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 more _ ADJ JJR _ 5 amod _ _ 5 companies _ NOUN NNS _ 6 nsubj _ _ 6 give _ VERB VBP _ 18 ccomp _ _ 7 sales-loss _ ADJ JJ _ 8 amod _ _ 8 aid _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 as _ SCONJ IN _ 14 mark _ _ 11 many _ ADJ JJ _ 13 amod _ _ 12 real-estate _ NOUN NN _ 13 compound _ _ 13 values _ NOUN NNS _ 14 nsubj _ _ 14 depreciated _ VERB VBD _ 6 advcl _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 the _ DET DT _ 17 det _ _ 17 council _ NOUN NN _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 RJR _ PROPN NNP _ 2 compound _ _ 2 Nabisco _ PROPN NNP _ 3 nsubj _ _ 3 pays _ VERB VBZ _ 0 root _ _ 4 up _ ADP IN _ 6 dep _ _ 5 to _ ADP TO _ 4 mwe _ _ 6 $ _ SYM $ _ 3 dobj _ _ 7 30,000 _ NUM CD _ 6 nummod _ _ 8 of _ ADP IN _ 9 case _ _ 9 losses _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 including _ VERB VBG _ 12 case _ _ 12 improvements _ NOUN NNS _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Goodrich _ PROPN NNP _ 4 nsubj _ _ 2 wo _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 ensure _ VERB VB _ 0 root _ _ 5 loss _ NOUN NN _ 6 compound _ _ 6 coverage _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 but _ CONJ CC _ 4 cc _ _ 9 will _ AUX MD _ 10 aux _ _ 10 prevent _ VERB VB _ 4 conj _ _ 11 a _ DET DT _ 14 det _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 catastrophic _ ADJ JJ _ 14 amod _ _ 14 loss _ NOUN NN _ 10 dobj _ _ 15 '' _ PUNCT '' _ 14 punct _ _ 16 ; _ PUNCT : _ 4 punct _ _ 17 it _ PRON PRP _ 19 nsubj _ _ 18 has _ AUX VBZ _ 19 aux _ _ 19 given _ VERB VBN _ 4 parataxis _ _ 20 some _ DET DT _ 21 det _ _ 21 employees _ NOUN NNS _ 19 iobj _ _ 22 the _ DET DT _ 25 det _ _ 23 full _ ADJ JJ _ 25 amod _ _ 24 purchase _ NOUN NN _ 25 compound _ _ 25 price _ NOUN NN _ 19 dobj _ _ 26 when _ ADV WRB _ 28 advmod _ _ 27 values _ NOUN NNS _ 28 nsubj _ _ 28 fell _ VERB VBD _ 25 acl:relcl _ _ 29 from _ ADP IN _ 30 case _ _ 30 concern _ NOUN NN _ 28 nmod _ _ 31 over _ ADP IN _ 32 case _ _ 32 dangers _ NOUN NNS _ 30 nmod _ _ 33 posed _ VERB VBN _ 32 acl _ _ 34 by _ ADP IN _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 disposal _ NOUN NN _ 37 compound _ _ 37 site _ NOUN NN _ 33 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 Federal _ PROPN NNP _ 2 compound _ _ 2 Express _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Dow _ PROPN NNP _ 5 compound _ _ 5 Chemical _ PROPN NNP _ 2 conj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 Ford _ PROPN NNP _ 2 conj _ _ 8 and _ CONJ CC _ 2 cc _ _ 9 National _ PROPN NNP _ 11 compound _ _ 10 City _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 2 conj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 buy _ VERB VB _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 home _ NOUN NN _ 13 dobj _ _ 16 or _ CONJ CC _ 13 cc _ _ 17 let _ VERB VB _ 13 conj _ _ 18 the _ DET DT _ 19 det _ _ 19 worker _ NOUN NN _ 20 nsubj _ _ 20 sell _ VERB VB _ 17 ccomp _ _ 21 to _ ADP TO _ 24 case _ _ 22 an _ DET DT _ 24 det _ _ 23 outside _ ADJ JJ _ 24 amod _ _ 24 firm _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 13 punct _ _ 26 but _ CONJ CC _ 13 cc _ _ 27 usually _ ADV RB _ 30 advmod _ _ 28 wo _ AUX MD _ 30 aux _ _ 29 n't _ PART RB _ 30 neg _ _ 30 cover _ VERB VB _ 13 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 loss _ NOUN NN _ 30 dobj _ _ 33 . _ PUNCT . _ 13 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 1984 _ NUM CD _ 14 nmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 firms _ NOUN NNS _ 14 nsubj _ _ 5 offering _ VERB VBG _ 4 acl _ _ 6 prepurchase _ ADJ JJ _ 8 amod _ _ 7 house _ NOUN NN _ 8 compound _ _ 8 appraisals _ NOUN NNS _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 to _ PART TO _ 11 mark _ _ 11 deter _ VERB VB _ 5 advcl _ _ 12 overpaying _ VERB VBG _ 11 dobj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 rose _ VERB VBD _ 0 root _ _ 15 to _ ADP TO _ 17 case _ _ 16 40 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 14 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 those _ PRON DT _ 17 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 council _ NOUN NN _ 22 nsubj _ _ 22 polled _ VERB VBD _ 19 acl:relcl _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 from _ ADP IN _ 26 case _ _ 25 28 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 14 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 THE _ DET DT _ 2 det _ _ 2 CHECKOFF _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 The _ DET DT _ 6 det _ _ 5 National _ PROPN NNP _ 6 compound _ _ 6 Academy _ PROPN NNP _ 9 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 Engineering _ PROPN NNP _ 6 nmod _ _ 9 gives _ VERB VBZ _ 2 parataxis _ _ 10 two _ NUM CD _ 11 nummod _ _ 11 inventors _ NOUN NNS _ 9 iobj _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 semiconductor _ NOUN NN _ 15 compound _ _ 15 microchip _ NOUN NN _ 11 nmod _ _ 16 a _ DET DT _ 20 det _ _ 17 $ _ SYM $ _ 20 amod _ _ 18 350,000 _ NUM CD _ 17 compound _ _ 19 achievement _ NOUN NN _ 20 compound _ _ 20 award _ NOUN NN _ 9 dobj _ _ 21 ... _ PUNCT : _ 2 punct _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 5 discourse _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 that _ PRON DT _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 reactionary _ ADJ JJ _ 0 root _ _ 6 : _ PUNCT : _ 5 punct _ _ 7 Letter _ PROPN NNP _ 12 compound _ _ 8 Carriers _ PROPN NNP _ 12 compound _ _ 9 union _ NOUN NN _ 12 compound _ _ 10 president _ NOUN NN _ 12 compound _ _ 11 Vincent _ PROPN NNP _ 12 compound _ _ 12 Sombrotto _ PROPN NNP _ 13 nsubj _ _ 13 accuses _ VERB VBZ _ 5 parataxis _ _ 14 Philadelphia _ PROPN NNP _ 17 compound _ _ 15 postmaster _ NOUN NN _ 17 compound _ _ 16 Charles _ PROPN NNP _ 17 compound _ _ 17 James _ PROPN NNP _ 13 dobj _ _ 18 of _ ADP IN _ 25 case _ _ 19 `` _ PUNCT `` _ 25 punct _ _ 20 12th _ ADJ JJ _ 23 amod _ _ 21 century _ NOUN NN _ 23 nmod:npmod _ _ 22 ... _ PUNCT : _ 23 punct _ _ 23 oppressive _ ADJ JJ _ 25 amod _ _ 24 management _ NOUN NN _ 25 compound _ _ 25 tactics _ NOUN NNS _ 13 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Yesterday _ NOUN NN _ 29 nsubj _ _ 2 was _ VERB VBD _ 29 cop _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 words _ NOUN NNS _ 29 dep _ _ 7 of _ ADP IN _ 16 case _ _ 8 New _ PROPN NNP _ 16 compound _ _ 9 York _ PROPN NNP _ 16 compound _ _ 10 Stock _ PROPN NNP _ 16 compound _ _ 11 Exchange _ PROPN NNP _ 16 compound _ _ 12 Chairman _ PROPN NNP _ 16 compound _ _ 13 John _ PROPN NNP _ 16 compound _ _ 14 J. _ PROPN NNP _ 16 compound _ _ 15 Phelan _ PROPN NNP _ 16 compound _ _ 16 Jr. _ PROPN NNP _ 6 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 just _ ADV RB _ 29 advmod _ _ 19 your _ PRON PRP$ _ 29 nmod:poss _ _ 20 `` _ PUNCT `` _ 29 punct _ _ 21 reasonably _ ADV RB _ 22 advmod _ _ 22 normal _ ADJ JJ _ 29 amod _ _ 23 , _ PUNCT , _ 29 punct _ _ 24 400 _ NUM CD _ 25 compound _ _ 25 million-share _ ADJ JJ _ 29 amod _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 up _ ADV RB _ 28 advmod _ _ 28 88-points _ ADJ JJ _ 29 amod _ _ 29 day _ NOUN NN _ 0 root _ _ 30 . _ PUNCT . _ 29 punct _ _ 31 '' _ PUNCT '' _ 29 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 was _ VERB VBD _ 18 advcl _ _ 4 all _ DET DT _ 3 dep _ _ 5 over _ ADV RB _ 3 advmod _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 stocks _ NOUN NNS _ 9 nsubj _ _ 8 had _ AUX VBD _ 9 aux _ _ 9 staged _ VERB VBN _ 3 conj _ _ 10 a _ DET DT _ 12 det _ _ 11 huge _ ADJ JJ _ 12 amod _ _ 12 recovery _ NOUN NN _ 9 dobj _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 Big _ PROPN NNP _ 16 compound _ _ 15 Board _ PROPN NNP _ 16 compound _ _ 16 officials _ NOUN NNS _ 18 nsubj _ _ 17 were _ VERB VBD _ 18 cop _ _ 18 self-congratulatory _ ADJ JJ _ 0 root _ _ 19 about _ SCONJ IN _ 25 mark _ _ 20 how _ ADV WRB _ 21 advmod _ _ 21 well _ ADV RB _ 25 advmod _ _ 22 the _ DET DT _ 23 det _ _ 23 day _ NOUN NN _ 25 nsubj _ _ 24 had _ AUX VBD _ 25 aux _ _ 25 gone _ VERB VBN _ 18 advcl _ _ 26 . _ PUNCT . _ 18 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 exchange _ NOUN NN _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 procedures _ NOUN NNS _ 20 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 personnel _ NOUN NNS _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 equipment _ NOUN NN _ 7 conj _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 links _ NOUN NNS _ 7 conj _ _ 14 with _ ADP IN _ 16 case _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 exchanges _ NOUN NNS _ 13 nmod _ _ 17 could _ AUX MD _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 have _ AUX VB _ 20 aux _ _ 20 performed _ VERB VBN _ 2 ccomp _ _ 21 better _ ADV RBR _ 20 advmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 had _ VERB VBD _ 13 ccomp _ _ 4 no _ DET DT _ 6 neg _ _ 5 operating _ NOUN NN _ 6 compound _ _ 6 problems _ NOUN NNS _ 3 dobj _ _ 7 at _ ADP IN _ 8 case _ _ 8 all _ DET DT _ 6 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 '' _ PUNCT '' _ 13 punct _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Phelan _ PROPN NNP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 after _ SCONJ IN _ 17 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 closed _ VERB VBD _ 13 advcl _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 All _ DET DT _ 4 det:predet _ _ 3 the _ DET DT _ 4 det _ _ 4 things _ NOUN NNS _ 28 nsubj _ _ 5 that _ ADP IN _ 7 dobj _ _ 6 we _ PRON PRP _ 7 nsubj _ _ 7 set _ VERB VBD _ 4 acl:relcl _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 to _ PART TO _ 10 mark _ _ 10 slow _ VERB VB _ 7 ccomp _ _ 11 down _ ADP RP _ 10 compound:prt _ _ 12 the _ DET DT _ 13 det _ _ 13 process _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 to _ PART TO _ 16 mark _ _ 16 let _ VERB VB _ 10 dep _ _ 17 people _ NOUN NNS _ 16 dobj _ _ 18 know _ VERB VB _ 16 dep _ _ 19 that _ SCONJ IN _ 26 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 26 nsubj _ _ 22 was _ VERB VBD _ 26 cop _ _ 23 in _ ADP IN _ 26 case _ _ 24 an _ DET DT _ 26 det _ _ 25 extreme _ ADJ JJ _ 26 amod _ _ 26 position _ NOUN NN _ 18 ccomp _ _ 27 , _ PUNCT , _ 28 punct _ _ 28 worked _ VERB VBD _ 0 root _ _ 29 extremely _ ADV RB _ 30 advmod _ _ 30 well _ ADV RB _ 28 advmod _ _ 31 . _ PUNCT . _ 28 punct _ _ 32 '' _ PUNCT '' _ 28 punct _ _ 1 Prices _ NOUN NNS _ 14 nsubjpass _ _ 2 for _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 416.3 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 6 nummod _ _ 6 shares _ NOUN NNS _ 1 nmod _ _ 7 that _ PRON WDT _ 8 nsubj _ _ 8 changed _ VERB VBD _ 6 acl:relcl _ _ 9 hands _ NOUN NNS _ 8 dobj _ _ 10 during _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 session _ NOUN NN _ 8 nmod _ _ 13 were _ AUX VBD _ 14 auxpass _ _ 14 carried _ VERB VBN _ 27 ccomp _ _ 15 on _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 17 det _ _ 17 exchange _ NOUN NN _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 trading _ NOUN NN _ 20 compound _ _ 20 tape _ NOUN NN _ 14 nmod _ _ 21 with _ ADP IN _ 24 case _ _ 22 barely _ ADV RB _ 24 advmod _ _ 23 a _ DET DT _ 24 det _ _ 24 delay _ NOUN NN _ 14 nmod _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 officials _ NOUN NNS _ 27 nsubj _ _ 27 said _ VERB VBD _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 While _ SCONJ IN _ 2 mark _ _ 2 reaching _ VERB VBG _ 16 advcl _ _ 3 blockbuster _ NOUN NN _ 4 compound _ _ 4 proportions _ NOUN NNS _ 2 dobj _ _ 5 yesterday _ NOUN NN _ 2 nmod:tmod _ _ 6 , _ PUNCT , _ 16 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 volume _ NOUN NN _ 16 nsubj _ _ 9 was _ VERB VBD _ 16 cop _ _ 10 still _ ADV RB _ 16 advmod _ _ 11 well _ ADV RB _ 16 advmod _ _ 12 within _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 600 _ NUM CD _ 15 compound _ _ 15 million-share _ ADJ JJ _ 16 amod _ _ 16 capacity _ NOUN NN _ 0 root _ _ 17 that _ ADP IN _ 21 dobj _ _ 18 the _ DET DT _ 19 det _ _ 19 exchange _ NOUN NN _ 21 nsubj _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 said _ VERB VBD _ 16 acl:relcl _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 can _ AUX MD _ 24 aux _ _ 24 handle _ VERB VB _ 21 ccomp _ _ 25 daily _ ADV RB _ 24 advmod _ _ 26 since _ SCONJ IN _ 27 mark _ _ 27 beefing _ VERB VBG _ 24 advcl _ _ 28 up _ ADP RP _ 27 compound:prt _ _ 29 its _ PRON PRP$ _ 30 nmod:poss _ _ 30 computers _ NOUN NNS _ 27 dobj _ _ 31 after _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 October _ PROPN NNP _ 35 compound _ _ 34 1987 _ NUM CD _ 35 nummod _ _ 35 crash _ NOUN NN _ 27 nmod _ _ 36 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 so-called _ ADJ JJ _ 4 amod _ _ 3 circuit _ NOUN NN _ 4 compound _ _ 4 breakers _ NOUN NNS _ 26 nsubjpass _ _ 5 devised _ VERB VBN _ 4 acl _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Big _ PROPN NNP _ 9 compound _ _ 9 Board _ PROPN NNP _ 5 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 the _ DET DT _ 14 det _ _ 12 Chicago _ PROPN NNP _ 14 compound _ _ 13 Mercantile _ PROPN NNP _ 14 compound _ _ 14 Exchange _ PROPN NNP _ 9 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 quell _ VERB VB _ 5 xcomp _ _ 17 free _ ADJ JJ _ 18 amod _ _ 18 falls _ NOUN NNS _ 16 dobj _ _ 19 in _ ADP IN _ 23 case _ _ 20 stock _ NOUN NN _ 23 compound _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 futures _ NOUN NNS _ 20 conj _ _ 23 prices _ NOUN NNS _ 18 nmod _ _ 24 were _ AUX VBD _ 26 auxpass _ _ 25 n't _ PART RB _ 26 neg _ _ 26 triggered _ VERB VBN _ 0 root _ _ 27 yesterday _ NOUN NN _ 26 nmod:tmod _ _ 28 because _ SCONJ IN _ 32 mark _ _ 29 the _ DET DT _ 30 det _ _ 30 markets _ NOUN NNS _ 32 nsubj _ _ 31 were _ VERB VBD _ 32 cop _ _ 32 higher _ ADJ JJR _ 26 advcl _ _ 33 for _ ADP IN _ 34 case _ _ 34 most _ ADV RBS _ 32 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 day _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 26 punct _ _ 1 Despite _ ADP IN _ 4 case _ _ 2 traders _ NOUN NNS _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 complaints _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Phelan _ PROPN NNP _ 8 nsubj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 links _ NOUN NNS _ 16 nsubj _ _ 11 with _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 Chicago _ PROPN NNP _ 15 compound _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 10 nmod _ _ 16 worked _ VERB VBD _ 8 ccomp _ _ 17 as _ ADV RB _ 18 advmod _ _ 18 planned _ VERB VBN _ 16 ccomp _ _ 19 in _ ADP IN _ 22 case _ _ 20 Friday _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 rout _ NOUN NN _ 16 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 provide _ VERB VB _ 16 xcomp _ _ 25 a _ DET DT _ 27 det _ _ 26 cooling-off _ ADJ JJ _ 27 amod _ _ 27 period _ NOUN NN _ 24 dobj _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 Of _ ADP IN _ 3 case _ _ 2 greater _ ADJ JJR _ 3 amod _ _ 3 help _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 Big _ PROPN NNP _ 8 compound _ _ 7 Board _ PROPN NNP _ 8 compound _ _ 8 chairman _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 11 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 was _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 16 det _ _ 13 `` _ PUNCT `` _ 16 punct _ _ 14 natural _ ADJ JJ _ 16 amod _ _ 15 circuit _ NOUN NN _ 16 compound _ _ 16 breaker _ NOUN NN _ 11 nsubj _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 weekend _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 provided _ VERB VBD _ 16 acl:relcl _ _ 24 a _ DET DT _ 26 det _ _ 25 breathing _ NOUN NN _ 26 compound _ _ 26 period _ NOUN NN _ 23 dobj _ _ 27 that _ ADP IN _ 29 nsubj _ _ 28 `` _ PUNCT `` _ 29 punct _ _ 29 brought _ VERB VBN _ 26 acl:relcl _ _ 30 rationality _ NOUN NN _ 29 dobj _ _ 31 back _ ADV RB _ 29 advmod _ _ 32 to _ ADP TO _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 market _ NOUN NN _ 29 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 Chicken _ NOUN NN _ 2 compound _ _ 2 Chains _ NOUN NNS _ 3 nsubj _ _ 3 Ruffled _ VERB VBN _ 0 root _ _ 4 By _ ADP IN _ 5 case _ _ 5 Loss _ NOUN NN _ 3 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 Customers _ NOUN NNS _ 5 nmod _ _ 1 FAST-FOOD _ NOUN NN _ 3 compound _ _ 2 chicken _ NOUN NN _ 3 compound _ _ 3 chains _ NOUN NNS _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 faced _ VERB VBN _ 3 acl _ _ 6 with _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 worsening _ VERB VBG _ 10 amod _ _ 9 business _ NOUN NN _ 10 compound _ _ 10 slump _ NOUN NN _ 5 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 are _ AUX VBP _ 13 aux _ _ 13 struggling _ VERB VBG _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 hatch _ VERB VB _ 13 xcomp _ _ 16 some _ DET DT _ 19 det _ _ 17 new _ ADJ JJ _ 19 amod _ _ 18 marketing _ NOUN NN _ 19 compound _ _ 19 strategies _ NOUN NNS _ 15 dobj _ _ 20 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Crest _ PROPN NNP _ 3 compound _ _ 3 Report _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 tracks _ VERB VBZ _ 3 acl:relcl _ _ 7 consumer _ NOUN NN _ 8 compound _ _ 8 purchases _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 customer _ NOUN NN _ 12 compound _ _ 12 traffic _ NOUN NN _ 16 nsubj _ _ 13 at _ ADP IN _ 15 case _ _ 14 chicken _ NOUN NN _ 15 compound _ _ 15 restaurants _ NOUN NNS _ 12 nmod _ _ 16 fell _ VERB VBD _ 10 ccomp _ _ 17 10 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 second _ ADJ JJ _ 22 amod _ _ 22 quarter _ NOUN NN _ 16 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 while _ SCONJ IN _ 30 mark _ _ 25 the _ DET DT _ 29 det _ _ 26 overall _ ADJ JJ _ 29 amod _ _ 27 fast-food _ NOUN NN _ 29 compound _ _ 28 customer _ NOUN NN _ 29 compound _ _ 29 count _ NOUN NN _ 30 nsubj _ _ 30 was _ VERB VBD _ 16 advcl _ _ 31 down _ ADV RB _ 30 advmod _ _ 32 2 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 Chicken _ NOUN NN _ 2 compound _ _ 2 business _ NOUN NN _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 off _ ADJ JJ _ 22 ccomp _ _ 5 largely _ ADV RB _ 9 advmod _ _ 6 because _ ADP IN _ 9 case _ _ 7 of _ ADP IN _ 6 mwe _ _ 8 more _ ADJ JJR _ 9 amod _ _ 9 competition _ NOUN NN _ 4 nmod _ _ 10 from _ ADP IN _ 13 case _ _ 11 grocery-store _ ADJ JJ _ 13 amod _ _ 12 convenience _ NOUN NN _ 13 compound _ _ 13 food _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 home-delivered _ ADJ JJ _ 16 amod _ _ 16 pizza _ NOUN NN _ 13 conj _ _ 17 and _ CONJ CC _ 13 cc _ _ 18 other _ ADJ JJ _ 20 amod _ _ 19 takeout _ NOUN NN _ 20 compound _ _ 20 fare _ NOUN NN _ 13 conj _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 says _ VERB VBZ _ 0 root _ _ 23 a _ DET DT _ 24 det _ _ 24 spokesman _ NOUN NN _ 22 nsubj _ _ 25 for _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 report _ NOUN NN _ 24 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 a _ DET DT _ 30 det _ _ 30 publication _ NOUN NN _ 27 appos _ _ 31 of _ ADP IN _ 33 case _ _ 32 NPD _ PROPN NNP _ 33 compound _ _ 33 Group _ PROPN NNP _ 30 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 a _ DET DT _ 38 det _ _ 36 market _ NOUN NN _ 38 compound _ _ 37 research _ NOUN NN _ 38 compound _ _ 38 firm _ NOUN NN _ 33 appos _ _ 39 in _ ADP IN _ 41 case _ _ 40 Port _ PROPN NNP _ 41 compound _ _ 41 Washington _ PROPN NNP _ 38 nmod _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 N.Y _ PROPN NNP _ 41 appos _ _ 44 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 loss _ NOUN NN _ 8 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 more _ ADJ JJR _ 5 amod _ _ 5 customers _ NOUN NNS _ 2 nmod _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 latest _ ADJ JJS _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 string _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 problems _ NOUN NNS _ 11 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Church _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Fried _ PROPN NNP _ 5 compound _ _ 4 Chicken _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 20 nsubjpass _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Popeye _ PROPN NNP _ 12 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 Famous _ PROPN NNP _ 12 compound _ _ 10 Fried _ PROPN NNP _ 12 compound _ _ 11 Chicken _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 5 conj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 which _ PRON WDT _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 merged _ VERB VBN _ 5 acl:relcl _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 are _ AUX VBP _ 20 auxpass _ _ 19 still _ ADV RB _ 20 advmod _ _ 20 troubled _ VERB VBN _ 0 root _ _ 21 by _ ADP IN _ 24 case _ _ 22 overlapping _ ADJ JJ _ 24 amod _ _ 23 restaurant _ NOUN NN _ 24 compound _ _ 24 locations _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 20 punct _ _ 1 Chicken _ NOUN NN _ 2 compound _ _ 2 chains _ NOUN NNS _ 5 nsubj _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 feeling _ VERB VBG _ 0 root _ _ 6 more _ ADJ JJR _ 7 amod _ _ 7 pressure _ NOUN NN _ 5 dobj _ _ 8 from _ ADP IN _ 11 case _ _ 9 McDonald _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 Corp. _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 introduced _ VERB VBD _ 11 acl:relcl _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 McChicken _ PROPN NNP _ 17 compound _ _ 17 sandwich _ NOUN NN _ 14 dobj _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 14 nmod:tmod _ _ 20 and _ CONJ CC _ 14 cc _ _ 21 recently _ ADV RB _ 22 advmod _ _ 22 tested _ VERB VBD _ 14 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 sale _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 individual _ ADJ JJ _ 27 amod _ _ 27 pieces _ NOUN NNS _ 24 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 chicken _ NOUN NN _ 27 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 New _ ADJ JJ _ 2 amod _ _ 2 management _ NOUN NN _ 15 nsubj _ _ 3 at _ ADP IN _ 6 case _ _ 4 Kentucky _ PROPN NNP _ 6 compound _ _ 5 Fried _ PROPN NNP _ 6 compound _ _ 6 Chicken _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 unit _ NOUN NN _ 6 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 PepsiCo _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 has _ AUX VBZ _ 15 aux _ _ 15 fought _ VERB VBN _ 0 root _ _ 16 back _ ADV RB _ 15 advmod _ _ 17 with _ ADP IN _ 23 case _ _ 18 new _ ADJ JJ _ 23 amod _ _ 19 medium _ NOUN NN _ 23 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 large _ ADJ JJ _ 19 conj _ _ 22 chicken _ NOUN NN _ 23 compound _ _ 23 sandwiches _ NOUN NNS _ 15 nmod _ _ 24 for _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 lunch _ NOUN NN _ 27 compound _ _ 27 crowd _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 15 punct _ _ 1 And _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 chain _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 testing _ VERB VBG _ 0 root _ _ 6 products _ NOUN NNS _ 5 dobj _ _ 7 that _ PRON WDT _ 10 nsubjpass _ _ 8 are _ AUX VBP _ 10 auxpass _ _ 9 n't _ PART RB _ 10 neg _ _ 10 fried _ VERB VBN _ 6 acl:relcl _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 such _ ADJ JJ _ 17 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 char-grilled _ ADJ JJ _ 17 amod _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 chicken _ NOUN NN _ 6 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 to _ PART TO _ 20 mark _ _ 20 try _ VERB VB _ 5 advcl _ _ 21 to _ PART TO _ 22 mark _ _ 22 win _ VERB VB _ 20 xcomp _ _ 23 health-conscious _ ADJ JJ _ 24 amod _ _ 24 consumers _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 Kentucky _ PROPN NNP _ 3 compound _ _ 2 Fried _ PROPN NNP _ 3 compound _ _ 3 Chicken _ PROPN NNP _ 6 nsubj _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 testing _ VERB VBG _ 0 root _ _ 7 home-delivery _ NOUN NN _ 6 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 chicken _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 which _ PRON WDT _ 15 nsubj _ _ 12 could _ AUX MD _ 15 aux _ _ 13 be _ VERB VB _ 15 cop _ _ 14 a _ DET DT _ 15 det _ _ 15 hit _ NOUN NN _ 7 acl:relcl _ _ 16 with _ ADP IN _ 18 case _ _ 17 stay-at-home _ ADJ JJ _ 18 amod _ _ 18 diners _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 some _ DET DT _ 5 det _ _ 3 fast-food _ NOUN NN _ 5 compound _ _ 4 industry _ NOUN NN _ 5 compound _ _ 5 analysts _ NOUN NNS _ 6 nsubj _ _ 6 say _ VERB VBP _ 0 root _ _ 7 problems _ NOUN NNS _ 16 nsubjpass _ _ 8 with _ SCONJ IN _ 9 mark _ _ 9 keeping _ VERB VBG _ 7 acl _ _ 10 chicken _ NOUN NN _ 11 nsubj _ _ 11 warm _ ADJ JJ _ 9 xcomp _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 fresh _ ADJ JJ _ 11 conj _ _ 14 must _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 solved _ VERB VBN _ 6 ccomp _ _ 17 first _ ADV RB _ 16 advmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 5 det _ _ 2 Kentucky _ PROPN NNP _ 5 compound _ _ 3 Fried _ PROPN NNP _ 5 compound _ _ 4 Chicken _ PROPN NNP _ 5 compound _ _ 5 spokesman _ NOUN NN _ 9 nsubj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 however _ ADV RB _ 9 advmod _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 disputed _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 notion _ NOUN NN _ 9 dobj _ _ 12 that _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 delivery _ NOUN NN _ 15 compound _ _ 15 service _ NOUN NN _ 16 nsubj _ _ 16 experienced _ VERB VBD _ 11 ccomp _ _ 17 problems _ NOUN NNS _ 16 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 some _ DET DT _ 20 det _ _ 20 markets _ NOUN NNS _ 17 nmod _ _ 21 where _ ADV WRB _ 25 advmod _ _ 22 testing _ NOUN NN _ 25 nsubjpass _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 discontinued _ VERB VBN _ 20 acl:relcl _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 test _ NOUN NN _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 continuing _ VERB VBG _ 2 ccomp _ _ 7 in _ ADP IN _ 8 case _ _ 8 Chicago _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Columbus _ PROPN NNP _ 8 conj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Ohio _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 a _ DET DT _ 18 det _ _ 16 few _ ADJ JJ _ 18 amod _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 cities _ NOUN NNS _ 8 conj _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 advertising _ NOUN NN _ 3 compound _ _ 3 industry _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 buzzing _ VERB VBG _ 0 root _ _ 6 with _ ADP IN _ 7 case _ _ 7 rumors _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 Kentucky _ PROPN NNP _ 11 compound _ _ 10 Fried _ PROPN NNP _ 11 compound _ _ 11 Chicken _ PROPN NNP _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 drop _ VERB VB _ 7 ccomp _ _ 14 Young _ PROPN NNP _ 13 dobj _ _ 15 & _ CONJ CC _ 14 cc _ _ 16 Rubicam _ PROPN NNP _ 14 conj _ _ 17 and _ CONJ CC _ 13 cc _ _ 18 seek _ VERB VB _ 13 conj _ _ 19 a _ DET DT _ 22 det _ _ 20 new _ ADJ JJ _ 22 amod _ _ 21 ad _ NOUN NN _ 22 compound _ _ 22 agency _ NOUN NN _ 18 dobj _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 declines _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 comment _ VERB VB _ 4 xcomp _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 Emanuel _ PROPN NNP _ 2 compound _ _ 2 Goldman _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 7 det _ _ 5 PaineWebber _ PROPN NNP _ 7 compound _ _ 6 Inc. _ PROPN NNP _ 7 compound _ _ 7 analyst _ NOUN NN _ 2 appos _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 predicts _ VERB VBZ _ 0 root _ _ 10 Kentucky _ PROPN NNP _ 12 compound _ _ 11 Fried _ PROPN NNP _ 12 compound _ _ 12 Chicken _ PROPN NNP _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 post _ VERB VB _ 9 ccomp _ _ 15 an _ DET DT _ 18 det _ _ 16 11 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 drop _ NOUN NN _ 14 dobj _ _ 19 in _ ADP IN _ 22 case _ _ 20 1989 _ NUM CD _ 22 nummod _ _ 21 net _ ADJ JJ _ 22 amod _ _ 22 income _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 been _ VERB VBN _ 5 cop _ _ 5 laggard _ ADJ JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 says _ VERB VBZ _ 5 dep _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 `` _ PUNCT `` _ 5 punct _ _ 12 but _ CONJ CC _ 5 cc _ _ 13 they _ PRON PRP _ 15 nsubj _ _ 14 'll _ AUX MD _ 15 aux _ _ 15 have _ VERB VB _ 5 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 become _ VERB VB _ 15 xcomp _ _ 18 more _ ADV RBR _ 19 advmod _ _ 19 aggressive _ ADJ JJ _ 17 xcomp _ _ 20 . _ PUNCT . _ 5 punct _ _ 21 '' _ PUNCT '' _ 5 punct _ _ 1 Reluctant _ ADJ JJ _ 2 amod _ _ 2 Advertisers _ NOUN NNS _ 3 nsubj _ _ 3 Try _ VERB VBP _ 0 root _ _ 4 Soft-Sell _ ADJ JJ _ 5 amod _ _ 5 Spots _ NOUN NNS _ 3 dobj _ _ 1 CALL _ VERB VB _ 0 root _ _ 2 IT _ PRON PRP _ 3 nsubj _ _ 3 un-advertising _ NOUN NN _ 1 xcomp _ _ 4 . _ PUNCT . _ 1 punct _ _ 1 Pittsburgh _ PROPN NNP _ 4 compound _ _ 2 consultant _ NOUN NN _ 4 compound _ _ 3 David _ PROPN NNP _ 4 compound _ _ 4 Bear _ PROPN NNP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 selling _ VERB VBG _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 soft _ ADJ JJ _ 9 amod _ _ 9 approach _ NOUN NN _ 6 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 clients _ NOUN NNS _ 6 nmod _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 want _ VERB VBP _ 11 acl:relcl _ _ 14 exposure _ NOUN NN _ 13 dobj _ _ 15 yet _ CONJ CC _ 13 cc _ _ 16 shun _ VERB VBP _ 13 conj _ _ 17 pushy _ ADJ JJ _ 18 amod _ _ 18 ads _ NOUN NNS _ 16 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 His _ PRON PRP$ _ 2 nmod:poss _ _ 2 ploy _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 60-second _ ADJ JJ _ 6 amod _ _ 5 radio _ NOUN NN _ 6 compound _ _ 6 spots _ NOUN NNS _ 2 dep _ _ 7 that _ PRON WDT _ 8 nsubj _ _ 8 offer _ VERB VBP _ 6 acl:relcl _ _ 9 helpful _ ADJ JJ _ 10 amod _ _ 10 hints _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 only _ ADJ JJ _ 3 amod _ _ 3 plug _ NOUN NN _ 10 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 sponsor _ NOUN NN _ 3 nmod _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 brief _ ADJ JJ _ 10 amod _ _ 10 mention _ NOUN NN _ 0 root _ _ 11 at _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 end _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 spot _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 messages _ NOUN NNS _ 3 nsubj _ _ 3 resemble _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Business _ PROPN NNP _ 6 compound _ _ 6 Traveler _ PROPN NNP _ 3 xcomp _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 10 det _ _ 9 daily _ ADJ JJ _ 10 amod _ _ 10 dose _ NOUN NN _ 6 appos _ _ 11 of _ ADP IN _ 13 case _ _ 12 travel _ NOUN NN _ 13 compound _ _ 13 tips _ NOUN NNS _ 10 nmod _ _ 14 developed _ VERB VBN _ 13 dep _ _ 15 by _ ADP IN _ 17 case _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Bear _ PROPN NNP _ 14 nmod _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 sponsored _ VERB VBN _ 14 conj _ _ 20 by _ ADP IN _ 22 case _ _ 21 travel _ NOUN NN _ 22 compound _ _ 22 agencies _ NOUN NNS _ 19 nmod _ _ 23 in _ ADP IN _ 26 case _ _ 24 several _ ADJ JJ _ 26 amod _ _ 25 major _ ADJ JJ _ 26 amod _ _ 26 cities _ NOUN NNS _ 22 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 New _ ADJ JJ _ 2 amod _ _ 2 un-advertisers _ NOUN NNS _ 3 nsubj _ _ 3 include _ VERB VBP _ 0 root _ _ 4 Burt _ PROPN NNP _ 8 compound _ _ 5 Hill _ PROPN NNP _ 8 compound _ _ 6 Kosar _ PROPN NNP _ 8 compound _ _ 7 Rittlemann _ PROPN NNP _ 8 compound _ _ 8 Associates _ PROPN NNP _ 3 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 a _ DET DT _ 16 det _ _ 11 Butler _ PROPN NNP _ 16 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Pa. _ PROPN NNP _ 11 dep _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 architectural _ ADJ JJ _ 16 amod _ _ 16 firm _ NOUN NN _ 8 appos _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Its _ PRON PRP$ _ 3 nmod:poss _ _ 2 radio _ NOUN NN _ 3 compound _ _ 3 series _ NOUN NN _ 4 nsubj _ _ 4 features _ VERB VBZ _ 0 root _ _ 5 such _ ADJ JJ _ 6 amod _ _ 6 spots _ NOUN NNS _ 4 dobj _ _ 7 as _ ADP IN _ 9 case _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 Floodlights _ PROPN NNP _ 6 nmod _ _ 10 : _ PUNCT : _ 9 punct _ _ 11 Evening _ PROPN NNP _ 12 compound _ _ 12 Wear _ PROPN NNP _ 9 dep _ _ 13 for _ ADP IN _ 15 case _ _ 14 Urban _ PROPN NNP _ 15 compound _ _ 15 Structures _ PROPN NNP _ 12 nmod _ _ 16 '' _ PUNCT '' _ 9 punct _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 `` _ PUNCT `` _ 19 punct _ _ 19 Building _ VERB VBG _ 9 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 Place _ NOUN NN _ 19 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 Park _ VERB VB _ 21 acl _ _ 24 . _ PUNCT . _ 4 punct _ _ 25 '' _ PUNCT '' _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 harder _ ADJ JJR _ 3 amod _ _ 3 sell _ NOUN NN _ 16 nsubj _ _ 4 , _ PUNCT , _ 16 punct _ _ 5 says _ VERB VBZ _ 16 parataxis _ _ 6 John _ PROPN NNP _ 7 compound _ _ 7 Kosar _ PROPN NNP _ 5 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 firm _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 president _ NOUN NN _ 7 appos _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 would _ AUX MD _ 16 aux _ _ 15 `` _ PUNCT `` _ 16 punct _ _ 16 detract _ VERB VB _ 0 root _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 profession _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 16 punct _ _ 21 '' _ PUNCT '' _ 16 punct _ _ 1 Hospitals _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 signed _ VERB VBN _ 0 root _ _ 4 up _ ADP RP _ 3 compound:prt _ _ 5 to _ PART TO _ 6 mark _ _ 6 use _ VERB VB _ 3 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 messages _ NOUN NNS _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 promote _ VERB VB _ 6 advcl _ _ 11 fundraisers _ NOUN NNS _ 10 dobj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 Equitable _ PROPN NNP _ 16 compound _ _ 15 Gas _ PROPN NNP _ 16 compound _ _ 16 Co. _ PROPN NNP _ 18 nsubj _ _ 17 is _ AUX VBZ _ 18 aux _ _ 18 considering _ VERB VBG _ 3 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 format _ NOUN NN _ 18 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 offer _ VERB VB _ 18 advcl _ _ 23 energy _ NOUN NN _ 24 compound _ _ 24 tips _ NOUN NNS _ 22 dobj _ _ 25 to _ ADP TO _ 26 case _ _ 26 consumers _ NOUN NNS _ 22 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 such _ ADJ JJ _ 3 amod _ _ 3 spots _ NOUN NNS _ 7 nsubj _ _ 4 can _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 too _ ADV RB _ 7 advmod _ _ 7 soft _ ADJ JJ _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 12 ccomp _ _ 4 always _ ADV RB _ 3 advmod _ _ 5 a _ DET DT _ 6 det _ _ 6 risk _ NOUN NN _ 3 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 lost _ VERB VBN _ 9 amod _ _ 9 messages _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 John _ PROPN NNP _ 14 compound _ _ 14 Fitzgerald _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 chairman _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 20 case _ _ 18 Ketchum _ PROPN NNP _ 20 compound _ _ 19 Advertising _ PROPN NNP _ 20 compound _ _ 20 USA _ PROPN NNP _ 16 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 created _ VERB VBD _ 20 acl:relcl _ _ 24 similar _ ADJ JJ _ 26 amod _ _ 25 radio _ NOUN NN _ 26 compound _ _ 26 spots _ NOUN NNS _ 23 dobj _ _ 27 for _ ADP IN _ 30 case _ _ 28 Pittsburgh _ PROPN NNP _ 30 compound _ _ 29 National _ PROPN NNP _ 30 compound _ _ 30 Bank _ PROPN NNP _ 23 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 question _ NOUN NN _ 0 root _ _ 6 of _ SCONJ IN _ 11 mark _ _ 7 how _ ADV WRB _ 8 advmod _ _ 8 much _ ADJ JJ _ 9 amod _ _ 9 credibility _ NOUN NN _ 11 dobj _ _ 10 you _ PRON PRP _ 11 nsubj _ _ 11 gain _ VERB VBP _ 5 acl _ _ 12 for _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 possible _ ADJ JJ _ 15 amod _ _ 15 loss _ NOUN NN _ 11 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 recognition _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 5 punct _ _ 19 '' _ PUNCT '' _ 5 punct _ _ 1 Retailer _ NOUN NN _ 2 nsubj _ _ 2 Sees _ VERB VBZ _ 0 root _ _ 3 Pitfalls _ NOUN NNS _ 2 dobj _ _ 4 In _ ADP IN _ 6 case _ _ 5 Environmental _ ADJ JJ _ 6 amod _ _ 6 Push _ NOUN NN _ 2 nmod _ _ 1 HERE _ ADV RB _ 2 dep _ _ 2 'S _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 retailer _ NOUN NN _ 2 nsubj _ _ 5 that _ PRON WDT _ 7 nsubj _ _ 6 's _ AUX VBZ _ 7 aux _ _ 7 getting _ VERB VBG _ 4 acl:relcl _ _ 8 tough _ ADJ JJ _ 7 xcomp _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 push _ NOUN NN _ 7 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 environmentally _ ADV RB _ 14 advmod _ _ 14 safe _ ADJ JJ _ 15 amod _ _ 15 packaging _ NOUN NN _ 11 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 products _ NOUN NNS _ 15 conj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Big _ PROPN NNP _ 4 compound _ _ 2 Bear _ PROPN NNP _ 4 compound _ _ 3 Supermarkets _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 grocery _ NOUN NN _ 8 compound _ _ 8 chain _ NOUN NN _ 4 appos _ _ 9 based _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 12 case _ _ 11 San _ PROPN NNP _ 12 compound _ _ 12 Diego _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 plans _ VERB VBZ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 display _ VERB VB _ 14 xcomp _ _ 17 shelf _ NOUN NN _ 18 compound _ _ 18 cards _ NOUN NNS _ 16 dobj _ _ 19 and _ CONJ CC _ 16 cc _ _ 20 distribute _ VERB VB _ 16 conj _ _ 21 pamphlets _ NOUN NNS _ 20 dobj _ _ 22 recommending _ VERB VBG _ 16 dep _ _ 23 products _ NOUN NNS _ 22 dobj _ _ 24 deemed _ VERB VBN _ 23 acl _ _ 25 safe _ ADJ JJ _ 24 xcomp _ _ 26 for _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 environment _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 choices _ NOUN NNS _ 5 nsubjpass _ _ 3 will _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 based _ VERB VBN _ 0 root _ _ 6 on _ ADP IN _ 7 case _ _ 7 research _ NOUN NN _ 5 nmod _ _ 8 by _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 San _ PROPN NNP _ 14 compound _ _ 11 Diego _ PROPN NNP _ 14 compound _ _ 12 Environmental _ PROPN NNP _ 14 compound _ _ 13 Health _ PROPN NNP _ 14 compound _ _ 14 Coalition _ PROPN NNP _ 7 nmod _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 will _ AUX MD _ 17 aux _ _ 17 include _ VERB VB _ 5 conj _ _ 18 products _ NOUN NNS _ 17 dobj _ _ 19 like _ ADP IN _ 23 case _ _ 20 Murphy _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 Oil _ PROPN NNP _ 23 compound _ _ 23 Soap _ PROPN NNP _ 18 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 other _ ADJ JJ _ 27 amod _ _ 26 noncorrosive _ ADJ JJ _ 27 amod _ _ 27 cleaners _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 chain _ NOUN NN _ 6 nsubj _ _ 4 is _ AUX VBZ _ 6 aux _ _ 5 quickly _ ADV RB _ 6 advmod _ _ 6 realizing _ VERB VBG _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 pitfalls _ NOUN NNS _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 such _ ADJ JJ _ 11 amod _ _ 11 endorsements _ NOUN NNS _ 8 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 recommends _ VERB VBZ _ 0 root _ _ 6 nonchlorinated _ ADJ JJ _ 8 amod _ _ 7 dishwasher _ NOUN NN _ 8 compound _ _ 8 detergent _ NOUN NN _ 5 dobj _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 puts _ VERB VBZ _ 5 conj _ _ 11 Sunlight _ PROPN NNP _ 10 dobj _ _ 12 on _ ADP IN _ 16 case _ _ 13 its _ PRON PRP$ _ 16 nmod:poss _ _ 14 environmentally _ ADV RB _ 15 advmod _ _ 15 safe _ ADJ JJ _ 16 amod _ _ 16 list _ NOUN NN _ 10 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 That _ PRON DT _ 4 nsubj _ _ 2 does _ AUX VBZ _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 thrill _ VERB VB _ 0 root _ _ 5 Procter _ PROPN NNP _ 8 compound _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Gamble _ PROPN NNP _ 5 conj _ _ 8 Co. _ PROPN NNP _ 4 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 maker _ NOUN NN _ 8 appos _ _ 11 of _ ADP IN _ 14 case _ _ 12 Cascade _ PROPN NNP _ 14 compound _ _ 13 dishwasher _ NOUN NN _ 14 compound _ _ 14 detergent _ NOUN NN _ 10 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 company _ NOUN NN _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 questioned _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 validity _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 list _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 noting _ VERB VBG _ 4 advcl _ _ 12 that _ DET DT _ 15 mark _ _ 13 chlorine _ NOUN NN _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 present _ ADJ JJ _ 11 ccomp _ _ 16 in _ ADP IN _ 20 case _ _ 17 all _ DET DT _ 20 det _ _ 18 major _ ADJ JJ _ 20 amod _ _ 19 dishwasher _ NOUN NN _ 20 compound _ _ 20 detergents _ NOUN NNS _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Lever _ PROPN NNP _ 5 compound _ _ 5 Bros. _ PROPN NNP _ 6 nsubj _ _ 6 confirms _ VERB VBZ _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 Sunlight _ PROPN NNP _ 10 compound _ _ 10 brand _ NOUN NN _ 12 nsubj _ _ 11 does _ AUX VBZ _ 12 aux _ _ 12 contain _ VERB VB _ 6 ccomp _ _ 13 chlorine _ NOUN NN _ 14 compound _ _ 14 bleach _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 even _ ADV RB _ 21 advmod _ _ 17 though _ SCONJ IN _ 21 mark _ _ 18 it _ PRON PRP _ 21 nsubjpass _ _ 19 is _ AUX VBZ _ 21 auxpass _ _ 20 n't _ PART RB _ 21 neg _ _ 21 listed _ VERB VBN _ 12 advcl _ _ 22 on _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 label _ NOUN NN _ 21 nmod _ _ 25 for _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 powder _ NOUN NN _ 28 compound _ _ 28 version _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Thomas _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Dahlen _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Big _ PROPN NNP _ 6 compound _ _ 6 Bear _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 executive _ ADJ JJ _ 10 amod _ _ 9 vice _ NOUN NN _ 10 compound _ _ 10 president _ NOUN NN _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 14 det _ _ 14 chain _ NOUN NN _ 17 nsubj _ _ 15 is _ AUX VBZ _ 17 aux _ _ 16 still _ ADV RB _ 17 advmod _ _ 17 reviewing _ VERB VBG _ 12 ccomp _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 product _ NOUN NN _ 20 compound _ _ 20 list _ NOUN NN _ 17 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 avoid _ VERB VB _ 17 advcl _ _ 23 such _ ADJ JJ _ 24 amod _ _ 24 problems _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 Our _ PRON PRP$ _ 3 nmod:poss _ _ 3 intent _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 13 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 promote _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 9 det _ _ 8 best _ ADJ JJS _ 9 amod _ _ 9 alternative _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 And _ CONJ CC _ 5 cc _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 important _ ADJ JJ _ 0 root _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 we _ PRON PRP _ 9 nsubj _ _ 8 be _ VERB VB _ 9 cop _ _ 9 accurate _ ADJ JJ _ 5 ccomp _ _ 10 . _ PUNCT . _ 5 punct _ _ 11 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 end _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 customers _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 wishes _ NOUN NNS _ 9 nsubj _ _ 9 are _ VERB VBP _ 0 root _ _ 10 what _ PRON WP _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 prevail _ VERB VB _ 9 ccomp _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 Big _ PROPN NNP _ 2 compound _ _ 2 Bear _ PROPN NNP _ 5 nsubj _ _ 3 does _ AUX VBZ _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 care _ VERB VB _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 disposable _ ADJ JJ _ 8 amod _ _ 8 diapers _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 13 nsubj _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 n't _ PART RB _ 13 neg _ _ 13 biodegradable _ ADJ JJ _ 8 acl:relcl _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Yet _ CONJ CC _ 3 cc _ _ 2 parents _ NOUN NNS _ 3 nsubj _ _ 3 demand _ VERB VBP _ 0 root _ _ 4 them _ PRON PRP _ 3 dobj _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Dahlen _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 `` _ PUNCT `` _ 1 punct _ _ 6 We _ PRON PRP _ 10 nsubjpass _ _ 7 'll _ AUX MD _ 10 aux _ _ 8 still _ ADV RB _ 10 advmod _ _ 9 be _ AUX VB _ 10 auxpass _ _ 10 forced _ VERB VBN _ 1 ccomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 sell _ VERB VB _ 10 xcomp _ _ 13 items _ NOUN NNS _ 12 dobj _ _ 14 we _ PRON PRP _ 18 nsubj _ _ 15 might _ AUX MD _ 18 aux _ _ 16 not _ PART RB _ 18 neg _ _ 17 philosophically _ ADV RB _ 18 advmod _ _ 18 agree _ VERB VB _ 13 acl:relcl _ _ 19 with _ ADP IN _ 18 nmod _ _ 20 . _ PUNCT . _ 1 punct _ _ 21 '' _ PUNCT '' _ 1 punct _ _ 1 Odds _ NOUN NNS _ 0 root _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Ends _ NOUN NNS _ 1 conj _ _ 1 NEATNESS _ NOUN NN _ 3 nsubj _ _ 2 does _ AUX VBZ _ 3 aux _ _ 3 count _ VERB VB _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 5 at _ ADP IN _ 10 advmod _ _ 6 least _ ADJ JJS _ 5 mwe _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 grocery _ NOUN NN _ 10 compound _ _ 10 store _ NOUN NN _ 3 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 study _ NOUN NN _ 9 nsubj _ _ 3 by _ ADP IN _ 8 case _ _ 4 Safeway _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 Scanner _ PROPN NNP _ 8 compound _ _ 7 Marketing _ PROPN NNP _ 8 compound _ _ 8 Research _ PROPN NNP _ 2 nmod _ _ 9 shows _ VERB VBZ _ 0 root _ _ 10 soap _ NOUN NN _ 11 compound _ _ 11 sales _ NOUN NNS _ 12 nsubj _ _ 12 climbed _ VERB VBD _ 9 ccomp _ _ 13 5 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 dobj _ _ 15 when _ ADV WRB _ 19 advmod _ _ 16 bars _ NOUN NNS _ 19 nsubj _ _ 17 were _ AUX VBD _ 19 aux _ _ 18 neatly _ ADV RB _ 19 advmod _ _ 19 stacked _ VERB VBN _ 12 advcl _ _ 20 on _ ADP IN _ 21 case _ _ 21 shelves _ NOUN NNS _ 19 nmod _ _ 22 instead _ ADV RB _ 19 cc _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 dumped _ VERB VBD _ 19 conj _ _ 25 in _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 wire _ NOUN NN _ 28 compound _ _ 28 basket _ NOUN NN _ 24 nmod _ _ 29 ... _ PUNCT : _ 9 punct _ _ 30 . _ PUNCT . _ 9 punct _ _ 1 Which _ DET WDT _ 3 det _ _ 2 celebrity _ NOUN NN _ 3 compound _ _ 3 endorsers _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 most _ ADV RBS _ 6 advmod _ _ 6 believable _ ADJ JJ _ 0 root _ _ 7 ? _ PUNCT . _ 6 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 year _ NOUN NN _ 10 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 row _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 consumers _ NOUN NNS _ 10 nsubj _ _ 10 voted _ VERB VBD _ 0 root _ _ 11 Bill _ PROPN NNP _ 12 compound _ _ 12 Cosby _ PROPN NNP _ 13 dep _ _ 13 first _ ADJ JJ _ 10 xcomp _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 James _ PROPN NNP _ 16 compound _ _ 16 Garner _ PROPN NNP _ 17 dep _ _ 17 second _ ADJ JJ _ 13 conj _ _ 18 in _ ADP IN _ 19 case _ _ 19 persuasiveness _ NOUN NN _ 13 nmod _ _ 20 as _ ADP IN _ 21 case _ _ 21 spokesmen _ NOUN NNS _ 19 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 TV _ NOUN NN _ 24 compound _ _ 24 commercials _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 10 punct _ _ 26 according _ VERB VBG _ 30 case _ _ 27 to _ ADP TO _ 26 mwe _ _ 28 Video _ PROPN NNP _ 30 compound _ _ 29 Storyboard _ PROPN NNP _ 30 compound _ _ 30 Tests _ PROPN NNP _ 10 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 New _ PROPN NNP _ 33 compound _ _ 33 York _ PROPN NNP _ 30 appos _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 Michael _ PROPN NNP _ 3 compound _ _ 2 J. _ PROPN NNP _ 3 compound _ _ 3 Fox _ PROPN NNP _ 4 nsubj _ _ 4 replaced _ VERB VBD _ 0 root _ _ 5 Bruce _ PROPN NNP _ 6 compound _ _ 6 Willis _ PROPN NNP _ 4 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 third _ ADJ JJ _ 9 amod _ _ 9 place _ NOUN NN _ 4 nmod _ _ 10 ; _ PUNCT : _ 4 punct _ _ 11 Cher _ PROPN NNP _ 12 nsubj _ _ 12 placed _ VERB VBD _ 4 parataxis _ _ 13 fourth _ ADJ JJ _ 12 xcomp _ _ 14 for _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 second _ ADJ JJ _ 17 amod _ _ 17 time _ NOUN NN _ 12 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Health _ PROPN NNP _ 7 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Human _ PROPN NNP _ 1 conj _ _ 4 Services _ PROPN NNP _ 7 compound _ _ 5 Secretary _ PROPN NNP _ 7 compound _ _ 6 Louis _ PROPN NNP _ 7 compound _ _ 7 Sullivan _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 chosen _ VERB VBN _ 22 ccomp _ _ 10 Antonia _ PROPN NNP _ 11 compound _ _ 11 Novello _ PROPN NNP _ 9 dobj _ _ 12 to _ PART TO _ 17 mark _ _ 13 be _ VERB VB _ 17 cop _ _ 14 the _ DET DT _ 17 det _ _ 15 next _ ADJ JJ _ 17 amod _ _ 16 surgeon _ NOUN NN _ 17 compound _ _ 17 general _ NOUN NN _ 9 xcomp _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 Bush _ PROPN NNP _ 21 compound _ _ 20 administration _ NOUN NN _ 21 compound _ _ 21 officials _ NOUN NNS _ 22 nsubj _ _ 22 said _ VERB VBD _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 she _ PRON PRP _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 nominated _ VERB VBN _ 17 advcl _ _ 5 by _ ADP IN _ 7 case _ _ 6 President _ PROPN NNP _ 7 compound _ _ 7 Bush _ PROPN NNP _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 confirmed _ VERB VBN _ 4 conj _ _ 10 by _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 Senate _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 Dr. _ PROPN NNP _ 15 compound _ _ 15 Novello _ PROPN NNP _ 17 nsubj _ _ 16 would _ AUX MD _ 17 aux _ _ 17 succeed _ VERB VB _ 0 root _ _ 18 C. _ PROPN NNP _ 20 compound _ _ 19 Everett _ PROPN NNP _ 20 compound _ _ 20 Koop _ PROPN NNP _ 17 dobj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 who _ PRON WP _ 23 nsubj _ _ 23 rattled _ VERB VBD _ 20 acl:relcl _ _ 24 liberals _ NOUN NNS _ 23 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 conservatives _ NOUN NNS _ 24 conj _ _ 27 alike _ ADV RB _ 24 advmod _ _ 28 with _ ADP IN _ 31 case _ _ 29 his _ PRON PRP$ _ 31 nmod:poss _ _ 30 outspoken _ ADJ JJ _ 31 amod _ _ 31 views _ NOUN NNS _ 23 nmod _ _ 32 on _ ADP IN _ 34 case _ _ 33 a _ DET DT _ 34 det _ _ 34 range _ NOUN NN _ 31 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 health _ NOUN NN _ 37 compound _ _ 37 issues _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 17 punct _ _ 1 Dr. _ PROPN NNP _ 2 compound _ _ 2 Novello _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 an _ DET DT _ 5 det _ _ 5 expert _ NOUN NN _ 2 appos _ _ 6 on _ ADP IN _ 9 case _ _ 7 pediatric _ ADJ JJ _ 9 amod _ _ 8 kidney _ NOUN NN _ 9 compound _ _ 9 diseases _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 is _ VERB VBZ _ 13 cop _ _ 12 deputy _ ADJ JJ _ 13 amod _ _ 13 director _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 National _ PROPN NNP _ 17 compound _ _ 17 Institute _ PROPN NNP _ 13 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 Child _ PROPN NNP _ 20 compound _ _ 20 Health _ PROPN NNP _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Human _ PROPN NNP _ 23 compound _ _ 23 Development _ PROPN NNP _ 20 conj _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 She _ PRON PRP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 served _ VERB VBN _ 0 root _ _ 5 on _ ADP IN _ 8 case _ _ 6 several _ ADJ JJ _ 8 amod _ _ 7 task _ NOUN NN _ 8 compound _ _ 8 forces _ NOUN NNS _ 4 nmod _ _ 9 on _ ADP IN _ 13 case _ _ 10 acquired _ VERB VBN _ 13 amod _ _ 11 immune _ ADJ JJ _ 13 amod _ _ 12 deficiency _ NOUN NN _ 13 compound _ _ 13 syndrome _ NOUN NN _ 8 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Dr. _ PROPN NNP _ 2 compound _ _ 2 Novello _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 office _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 she _ PRON PRP _ 9 nsubj _ _ 7 would _ AUX MD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 talk _ VERB VB _ 5 ccomp _ _ 10 with _ ADP IN _ 11 case _ _ 11 reporters _ NOUN NNS _ 9 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 refused _ VERB VBD _ 5 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 release _ VERB VB _ 15 xcomp _ _ 18 any _ DET DT _ 19 det _ _ 19 information _ NOUN NN _ 17 dobj _ _ 20 about _ ADP IN _ 21 case _ _ 21 her _ PRON PRP _ 19 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 newsletter _ NOUN NN _ 3 compound _ _ 3 Medicine _ PROPN NNP _ 16 nsubj _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Health _ PROPN NNP _ 3 conj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 first _ ADV RB _ 9 advmod _ _ 9 disclosed _ VERB VBD _ 3 acl:relcl _ _ 10 her _ PRON PRP$ _ 11 nmod:poss _ _ 11 selection _ NOUN NN _ 9 dobj _ _ 12 by _ ADP IN _ 14 case _ _ 13 Dr. _ PROPN NNP _ 14 compound _ _ 14 Sullivan _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 she _ PRON PRP _ 21 nsubj _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 44 _ NUM CD _ 20 nummod _ _ 20 years _ NOUN NNS _ 21 nmod:npmod _ _ 21 old _ ADJ JJ _ 16 dep _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 she _ PRON PRP _ 24 nsubj _ _ 24 studied _ VERB VBD _ 21 conj _ _ 25 at _ ADP IN _ 31 case _ _ 26 the _ DET DT _ 31 det _ _ 27 University _ PROPN NNP _ 31 dep _ _ 28 of _ ADP IN _ 30 case _ _ 29 Puerto _ PROPN NNP _ 30 compound _ _ 30 Rico _ PROPN NNP _ 27 nmod _ _ 31 School _ PROPN NNP _ 24 nmod _ _ 32 of _ ADP IN _ 33 case _ _ 33 Medicine _ PROPN NNP _ 31 nmod _ _ 34 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 continuing _ VERB VBG _ 3 amod _ _ 3 series _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 HUD _ PROPN NNP _ 6 compound _ _ 6 scandals _ NOUN NNS _ 3 nmod _ _ 7 is _ VERB VBZ _ 11 cop _ _ 8 a _ DET DT _ 11 det _ _ 9 sadly _ ADV RB _ 10 advmod _ _ 10 predictable _ ADJ JJ _ 11 amod _ _ 11 result _ NOUN NN _ 0 root _ _ 12 of _ ADP IN _ 14 case _ _ 13 pork-barrel _ NOUN NN _ 14 compound _ _ 14 politics _ NOUN NNS _ 11 nmod _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 Nevertheless _ ADV RB _ 15 advmod _ _ 2 , _ PUNCT , _ 15 punct _ _ 3 lobbies _ NOUN NNS _ 15 nsubj _ _ 4 such _ ADJ JJ _ 8 case _ _ 5 as _ ADP IN _ 4 mwe _ _ 6 the _ DET DT _ 8 det _ _ 7 National _ PROPN NNP _ 8 compound _ _ 8 Association _ PROPN NNP _ 3 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 Home _ PROPN NNP _ 11 compound _ _ 11 Builders _ PROPN NNP _ 8 nmod _ _ 12 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 13 NAHB _ PROPN NNP _ 8 appos _ _ 14 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 15 continue _ VERB VBP _ 0 root _ _ 16 to _ PART TO _ 17 mark _ _ 17 pressure _ VERB VB _ 15 xcomp _ _ 18 Capitol _ PROPN NNP _ 19 compound _ _ 19 Hill _ PROPN NNP _ 17 dobj _ _ 20 for _ ADP IN _ 23 case _ _ 21 more _ ADJ JJR _ 23 amod _ _ 22 special-interest _ ADJ JJ _ 23 amod _ _ 23 spending _ NOUN NN _ 17 nmod _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 Kent _ PROPN NNP _ 2 compound _ _ 2 Colton _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 NAHB _ PROPN NNP _ 7 compound _ _ 5 executive _ ADJ JJ _ 7 amod _ _ 6 vice _ NOUN NN _ 7 compound _ _ 7 president _ NOUN NN _ 2 appos _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 argues _ VERB VBZ _ 0 root _ _ 10 that _ SCONJ IN _ 13 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 13 nsubj _ _ 13 faces _ VERB VBZ _ 9 ccomp _ _ 14 a _ DET DT _ 17 det _ _ 15 multifaceted _ ADJ JJ _ 17 amod _ _ 16 housing _ NOUN NN _ 17 compound _ _ 17 crisis _ NOUN NN _ 13 dobj _ _ 18 -- _ PUNCT : _ 20 punct _ _ 19 reduced _ VERB VBN _ 20 amod _ _ 20 affordability _ NOUN NN _ 17 dep _ _ 21 of _ ADP IN _ 22 case _ _ 22 homes _ NOUN NNS _ 20 nmod _ _ 23 for _ ADP IN _ 25 case _ _ 24 first-time _ ADJ JJ _ 25 amod _ _ 25 buyers _ NOUN NNS _ 22 nmod _ _ 26 , _ PUNCT , _ 20 punct _ _ 27 increased _ VERB VBN _ 28 amod _ _ 28 homelessness _ NOUN NN _ 20 conj _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 and _ CONJ CC _ 20 cc _ _ 31 lower _ ADJ JJR _ 34 amod _ _ 32 apartment _ NOUN NN _ 34 compound _ _ 33 construction _ NOUN NN _ 34 compound _ _ 34 rates _ NOUN NNS _ 20 conj _ _ 35 -- _ PUNCT : _ 20 punct _ _ 36 that _ DET DT _ 41 nsubj _ _ 37 will _ AUX MD _ 41 aux _ _ 38 be _ VERB VB _ 41 cop _ _ 39 `` _ PUNCT `` _ 41 punct _ _ 40 very _ ADV RB _ 41 advmod _ _ 41 difficult _ ADJ JJ _ 17 acl:relcl _ _ 42 '' _ PUNCT '' _ 41 punct _ _ 43 to _ PART TO _ 44 mark _ _ 44 solve _ VERB VB _ 41 xcomp _ _ 45 `` _ PUNCT `` _ 44 punct _ _ 46 without _ ADP IN _ 49 case _ _ 47 expanded _ VERB VBN _ 49 amod _ _ 48 federal _ ADJ JJ _ 49 amod _ _ 49 resources _ NOUN NNS _ 44 nmod _ _ 50 . _ PUNCT . _ 9 punct _ _ 51 '' _ PUNCT '' _ 9 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 nothing _ NOUN NN _ 2 nsubj _ _ 4 unusual _ ADJ JJ _ 3 amod _ _ 5 about _ ADP IN _ 7 case _ _ 6 business _ NOUN NN _ 7 compound _ _ 7 groups _ NOUN NNS _ 4 nmod _ _ 8 pushing _ VERB VBG _ 7 acl _ _ 9 for _ ADP IN _ 12 case _ _ 10 more _ ADJ JJR _ 12 amod _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 spending _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 NAHB _ PROPN NNP _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 created _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 1943 _ NUM CD _ 5 nmod _ _ 8 out _ ADP IN _ 11 case _ _ 9 of _ ADP IN _ 11 case _ _ 10 an _ DET DT _ 11 det _ _ 11 organization _ NOUN NN _ 5 nmod _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 made _ VERB VBD _ 11 acl:relcl _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 name _ NOUN NN _ 13 dobj _ _ 16 fighting _ VERB VBG _ 13 xcomp _ _ 17 a _ DET DT _ 20 det _ _ 18 Roosevelt _ PROPN NNP _ 20 compound _ _ 19 administration _ NOUN NN _ 20 compound _ _ 20 proposal _ NOUN NN _ 16 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 take _ VERB VB _ 20 acl _ _ 23 over _ ADP RP _ 27 dep _ _ 24 all _ DET DT _ 27 det _ _ 25 defense _ NOUN NN _ 27 compound _ _ 26 housing _ NOUN NN _ 27 compound _ _ 27 production _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 Through _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 years _ NOUN NNS _ 10 nmod _ _ 4 the _ DET DT _ 5 det _ _ 5 association _ NOUN NN _ 10 nsubj _ _ 6 has _ AUX VBZ _ 10 aux _ _ 7 been _ VERB VBN _ 10 cop _ _ 8 an _ DET DT _ 10 det _ _ 9 active _ ADJ JJ _ 10 amod _ _ 10 member _ NOUN NN _ 0 root _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 13 det _ _ 13 taxpayer _ NOUN NN _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 coalition _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 pushing _ VERB VBG _ 10 advcl _ _ 18 for _ ADP IN _ 20 case _ _ 19 such _ ADJ JJ _ 20 amod _ _ 20 initiatives _ NOUN NNS _ 17 nmod _ _ 21 as _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 balanced-budget _ ADJ JJ _ 24 amod _ _ 24 amendment _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 Yet _ ADV RB _ 3 advmod _ _ 2 on _ ADP IN _ 3 case _ _ 3 matters _ NOUN NNS _ 0 root _ _ 4 close _ ADJ JJ _ 3 amod _ _ 5 to _ ADP TO _ 9 case _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 er _ INTJ UH _ 9 discourse _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 home _ NOUN NN _ 4 nmod _ _ 10 ... _ PUNCT : _ 3 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 HUD _ PROPN NNP _ 4 compound _ _ 4 budget _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 dropped _ VERB VBN _ 16 ccomp _ _ 7 by _ ADP IN _ 11 case _ _ 8 more _ ADJ JJ _ 10 advmod _ _ 9 than _ ADP IN _ 10 advmod _ _ 10 70 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 6 nmod _ _ 12 since _ ADP IN _ 13 case _ _ 13 1980 _ NUM CD _ 6 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 argues _ VERB VBZ _ 0 root _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Colton _ PROPN NNP _ 16 nsubj _ _ 19 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 taken _ VERB VBN _ 0 root _ _ 5 more _ ADJ JJR _ 4 dobj _ _ 6 than _ ADP IN _ 9 case _ _ 7 our _ PRON PRP$ _ 9 nmod:poss _ _ 8 fair _ ADJ JJ _ 9 amod _ _ 9 share _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 would _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 have _ VERB VB _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 problem _ NOUN NN _ 4 dobj _ _ 7 if _ SCONJ IN _ 11 mark _ _ 8 other _ ADJ JJ _ 9 amod _ _ 9 programs _ NOUN NNS _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 taken _ VERB VBN _ 4 advcl _ _ 12 a _ DET DT _ 14 det _ _ 13 similar _ ADJ JJ _ 14 amod _ _ 14 hit _ NOUN NN _ 11 dobj _ _ 15 . _ PUNCT . _ 4 punct _ _ 16 '' _ PUNCT '' _ 4 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 NAHB _ PROPN NNP _ 3 compound _ _ 3 support _ NOUN NN _ 8 nsubjpass _ _ 4 for _ ADP IN _ 5 case _ _ 5 subsidies _ NOUN NNS _ 3 nmod _ _ 6 is _ AUX VBZ _ 8 auxpass _ _ 7 not _ PART RB _ 8 neg _ _ 8 related _ VERB VBN _ 0 root _ _ 9 to _ ADP TO _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 current _ ADJ JJ _ 13 amod _ _ 12 housing _ NOUN NN _ 13 compound _ _ 13 crunch _ NOUN NN _ 8 nmod _ _ 14 ; _ PUNCT : _ 8 punct _ _ 15 over _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 years _ NOUN NNS _ 21 nmod _ _ 18 the _ DET DT _ 19 det _ _ 19 NAHB _ PROPN NNP _ 21 nsubj _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 backed _ VERB VBN _ 8 parataxis _ _ 22 a _ DET DT _ 23 det _ _ 23 host _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 public _ ADJ JJ _ 26 amod _ _ 26 programs _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 once _ ADV RB _ 3 advmod _ _ 3 pushed _ VERB VBD _ 0 root _ _ 4 for _ ADP IN _ 9 case _ _ 5 a _ DET DT _ 9 det _ _ 6 national _ ADJ JJ _ 9 amod _ _ 7 housing _ NOUN NN _ 9 compound _ _ 8 production _ NOUN NN _ 9 compound _ _ 9 goal _ NOUN NN _ 3 nmod _ _ 10 set _ VERB VBN _ 9 acl _ _ 11 by _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 government _ NOUN NN _ 10 nmod _ _ 15 and _ CONJ CC _ 3 cc _ _ 16 has _ AUX VBZ _ 18 aux _ _ 17 regularly _ ADV RB _ 18 advmod _ _ 18 advanced _ VERB VBN _ 3 conj _ _ 19 anti-recession _ ADJ JJ _ 21 amod _ _ 20 housing _ NOUN NN _ 21 compound _ _ 21 measures _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Moreover _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 explains _ VERB VBZ _ 10 parataxis _ _ 4 one _ NUM CD _ 6 nummod _ _ 5 HUD _ PROPN NNP _ 6 compound _ _ 6 official _ NOUN NN _ 3 nsubj _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 NAHB _ PROPN NNP _ 10 nsubj _ _ 10 remains _ VERB VBZ _ 0 root _ _ 11 susceptible _ ADJ JJ _ 10 xcomp _ _ 12 to _ ADP TO _ 14 case _ _ 13 internal _ ADJ JJ _ 14 amod _ _ 14 pressure _ NOUN NN _ 11 nmod _ _ 15 from _ ADP IN _ 16 case _ _ 16 members _ NOUN NNS _ 14 nmod _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 specialize _ VERB VBP _ 16 acl:relcl _ _ 19 in _ ADP IN _ 21 case _ _ 20 subsidized _ VERB VBN _ 21 amod _ _ 21 production _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 association _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 pushing _ VERB VBG _ 0 root _ _ 5 an _ DET DT _ 9 det _ _ 6 extensive _ ADJ JJ _ 9 amod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 expensive _ ADJ JJ _ 6 conj _ _ 9 wish-list _ NOUN NN _ 4 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 substantially _ ADV RB _ 14 advmod _ _ 14 boost _ VERB VB _ 9 acl:relcl _ _ 15 spending _ NOUN NN _ 14 dobj _ _ 16 above _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 current _ ADJ JJ _ 19 amod _ _ 19 level _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 more _ ADJ JJ _ 23 advmod _ _ 22 than _ ADP IN _ 23 advmod _ _ 23 $ _ SYM $ _ 19 nmod _ _ 24 15 _ NUM CD _ 25 compound _ _ 25 billion _ NUM CD _ 23 nummod _ _ 26 annually _ ADV RB _ 23 advmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 would _ AUX MD _ 3 aux _ _ 3 like _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 peg _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 ceiling _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 13 case _ _ 9 Federal _ PROPN NNP _ 13 compound _ _ 10 Housing _ PROPN NNP _ 13 compound _ _ 11 Administration _ PROPN NNP _ 13 compound _ _ 12 mortgage _ NOUN NN _ 13 compound _ _ 13 guarantees _ NOUN NNS _ 7 nmod _ _ 14 to _ ADP TO _ 16 case _ _ 15 95 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 5 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 median _ ADJ JJ _ 20 amod _ _ 20 price _ NOUN NN _ 16 nmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 particular _ ADJ JJ _ 24 amod _ _ 24 market _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 5 punct _ _ 26 instead _ ADV RB _ 28 mark _ _ 27 of _ SCONJ IN _ 26 mwe _ _ 28 limiting _ VERB VBG _ 5 advcl _ _ 29 it _ PRON PRP _ 28 dobj _ _ 30 to _ ADP TO _ 32 case _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 101,250 _ NUM CD _ 28 nmod _ _ 33 ; _ PUNCT : _ 5 punct _ _ 34 reduce _ VERB VB _ 5 conj _ _ 35 -LRB- _ PUNCT -LRB- _ 38 punct _ _ 36 or _ CONJ CC _ 38 cc _ _ 37 even _ ADV RB _ 38 advmod _ _ 38 eliminate _ VERB VB _ 34 dep _ _ 39 -RRB- _ PUNCT -RRB- _ 38 punct _ _ 40 FHA _ PROPN NNP _ 42 compound _ _ 41 down-payment _ NOUN NN _ 42 compound _ _ 42 requirements _ NOUN NNS _ 34 dobj _ _ 43 and _ CONJ CC _ 34 cc _ _ 44 increase _ VERB VB _ 34 conj _ _ 45 the _ DET DT _ 46 det _ _ 46 availability _ NOUN NN _ 44 dobj _ _ 47 of _ ADP IN _ 49 case _ _ 48 variable-rate _ ADJ JJ _ 49 amod _ _ 49 mortgages _ NOUN NNS _ 46 nmod _ _ 50 ; _ PUNCT : _ 5 punct _ _ 51 expand _ VERB VB _ 5 conj _ _ 52 the _ DET DT _ 58 det _ _ 53 Veterans _ PROPN NNP _ 58 compound _ _ 54 Affairs _ PROPN NNP _ 58 compound _ _ 55 Department _ PROPN NNP _ 58 compound _ _ 56 loan _ NOUN NN _ 58 compound _ _ 57 guarantee _ NOUN NN _ 58 compound _ _ 58 program _ NOUN NN _ 51 dobj _ _ 59 ; _ PUNCT : _ 5 punct _ _ 60 provide _ VERB VB _ 5 conj _ _ 61 `` _ PUNCT `` _ 64 punct _ _ 62 adequate _ ADJ JJ _ 64 amod _ _ 63 '' _ PUNCT '' _ 64 punct _ _ 64 funding _ NOUN NN _ 60 dobj _ _ 65 for _ ADP IN _ 69 case _ _ 66 the _ DET DT _ 69 det _ _ 67 Farmers _ PROPN NNP _ 69 compound _ _ 68 Home _ PROPN NNP _ 69 compound _ _ 69 Administration _ PROPN NNP _ 64 nmod _ _ 70 -LRB- _ PUNCT -LRB- _ 71 punct _ _ 71 FmHA _ PROPN NNP _ 69 appos _ _ 72 -RRB- _ PUNCT -RRB- _ 71 punct _ _ 73 ; _ PUNCT : _ 5 punct _ _ 74 increase _ VERB VB _ 5 conj _ _ 75 federal _ ADJ JJ _ 76 amod _ _ 76 funding _ NOUN NN _ 74 dobj _ _ 77 and _ CONJ CC _ 76 cc _ _ 78 tax _ NOUN NN _ 79 compound _ _ 79 incentives _ NOUN NNS _ 76 conj _ _ 80 for _ ADP IN _ 82 case _ _ 81 the _ DET DT _ 82 det _ _ 82 construction _ NOUN NN _ 76 nmod _ _ 83 of _ ADP IN _ 87 case _ _ 84 low-income _ ADJ JJ _ 87 amod _ _ 85 and _ CONJ CC _ 84 cc _ _ 86 rental _ NOUN NN _ 84 conj _ _ 87 housing _ NOUN NN _ 82 nmod _ _ 88 , _ PUNCT , _ 76 punct _ _ 89 including _ VERB VBG _ 90 case _ _ 90 $ _ SYM $ _ 76 nmod _ _ 91 4 _ NUM CD _ 92 compound _ _ 92 billion _ NUM CD _ 90 nummod _ _ 93 in _ ADP IN _ 95 case _ _ 94 block _ NOUN NN _ 95 compound _ _ 95 grants _ NOUN NNS _ 90 nmod _ _ 96 to _ ADP TO _ 97 case _ _ 97 states _ NOUN NNS _ 95 nmod _ _ 98 and _ CONJ CC _ 97 cc _ _ 99 localities _ NOUN NNS _ 97 conj _ _ 100 ; _ PUNCT : _ 5 punct _ _ 101 and _ CONJ CC _ 5 cc _ _ 102 `` _ PUNCT `` _ 104 punct _ _ 103 fully _ ADV RB _ 104 advmod _ _ 104 fund _ VERB VB _ 5 conj _ _ 105 '' _ PUNCT '' _ 104 punct _ _ 106 the _ DET DT _ 108 det _ _ 107 McKinney _ PROPN NNP _ 108 compound _ _ 108 Act _ PROPN NNP _ 104 dobj _ _ 109 , _ PUNCT , _ 108 punct _ _ 110 a _ DET DT _ 114 det _ _ 111 $ _ SYM $ _ 114 amod _ _ 112 656 _ NUM CD _ 113 compound _ _ 113 million _ NUM CD _ 111 nummod _ _ 114 potpourri _ NOUN NN _ 108 appos _ _ 115 for _ ADP IN _ 117 case _ _ 116 the _ DET DT _ 117 det _ _ 117 homeless _ ADJ JJ _ 114 nmod _ _ 118 . _ PUNCT . _ 3 punct _ _ 1 Direct _ ADJ JJ _ 3 amod _ _ 2 federal _ ADJ JJ _ 3 amod _ _ 3 subsidies _ NOUN NNS _ 8 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 housing _ NOUN NN _ 6 compound _ _ 6 construction _ NOUN NN _ 3 nmod _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 proved _ VERB VBN _ 0 root _ _ 9 intolerably _ ADV RB _ 10 advmod _ _ 10 expensive _ ADJ JJ _ 8 xcomp _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 past _ NOUN NN _ 8 nmod _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 and _ CONJ CC _ 8 cc _ _ 16 inevitably _ ADV RB _ 18 advmod _ _ 17 are _ AUX VBP _ 18 auxpass _ _ 18 twisted _ VERB VBN _ 8 conj _ _ 19 to _ ADP TO _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 benefit _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 well-connected _ ADJ JJ _ 24 amod _ _ 24 developers _ NOUN NNS _ 21 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 lobbyists _ NOUN NNS _ 24 conj _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 as _ SCONJ IN _ 29 mark _ _ 29 demonstrated _ VERB VBN _ 24 dep _ _ 30 by _ ADP IN _ 34 case _ _ 31 the _ DET DT _ 34 det _ _ 32 ongoing _ ADJ JJ _ 34 amod _ _ 33 HUD _ PROPN NNP _ 34 compound _ _ 34 scandal _ NOUN NN _ 29 nmod _ _ 35 , _ PUNCT , _ 24 punct _ _ 36 or _ CONJ CC _ 24 cc _ _ 37 congressmen _ NOUN NNS _ 24 conj _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 Indirect _ ADJ JJ _ 2 amod _ _ 2 subsidies _ NOUN NNS _ 13 nsubj _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 through _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 FHA _ PROPN NNP _ 13 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 instance _ NOUN NN _ 13 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 little _ ADV RB _ 13 advmod _ _ 13 better _ ADJ JJR _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Though _ PROPN NNP _ 4 dep _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Colton _ PROPN NNP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 47 advcl _ _ 5 expanding _ VERB VBG _ 9 csubj _ _ 6 FHA _ PROPN NNP _ 7 compound _ _ 7 lending _ NOUN NN _ 5 dobj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 result _ VERB VB _ 4 ccomp _ _ 10 in _ ADP IN _ 13 case _ _ 11 `` _ PUNCT `` _ 13 punct _ _ 12 no _ DET DT _ 13 neg _ _ 13 cost _ NOUN NN _ 9 nmod _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 government _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 47 punct _ _ 18 '' _ PUNCT '' _ 47 punct _ _ 19 the _ DET DT _ 21 det _ _ 20 mere _ ADJ JJ _ 21 amod _ _ 21 diversion _ NOUN NN _ 47 nsubj _ _ 22 of _ ADP IN _ 23 case _ _ 23 funds _ NOUN NNS _ 21 nmod _ _ 24 from _ ADP IN _ 26 case _ _ 25 other _ ADJ JJ _ 26 amod _ _ 26 parts _ NOUN NNS _ 21 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 economy _ NOUN NN _ 26 nmod _ _ 30 and _ CONJ CC _ 26 cc _ _ 31 from _ ADP IN _ 33 case _ _ 32 other _ ADJ JJ _ 33 amod _ _ 33 forms _ NOUN NNS _ 26 conj _ _ 34 of _ ADP IN _ 35 case _ _ 35 housing _ NOUN NN _ 33 nmod _ _ 36 -LRB- _ PUNCT -LRB- _ 39 punct _ _ 37 such _ ADJ JJ _ 39 case _ _ 38 as _ ADP IN _ 37 mwe _ _ 39 low-income _ NOUN NN _ 33 nmod _ _ 40 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 41 to _ ADP TO _ 45 case _ _ 42 the _ DET DT _ 45 det _ _ 43 single-family _ ADJ JJ _ 45 amod _ _ 44 home _ NOUN NN _ 45 compound _ _ 45 market _ NOUN NN _ 21 nmod _ _ 46 would _ AUX MD _ 47 aux _ _ 47 result _ VERB VB _ 0 root _ _ 48 in _ ADP IN _ 51 case _ _ 49 a _ DET DT _ 51 det _ _ 50 major _ ADJ JJ _ 51 amod _ _ 51 expense _ NOUN NN _ 47 nmod _ _ 52 . _ PUNCT . _ 47 punct _ _ 1 More _ ADV RBR _ 2 advmod _ _ 2 important _ ADJ JJ _ 16 dep _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 housing _ NOUN NN _ 5 compound _ _ 5 programs _ NOUN NNS _ 16 nsubj _ _ 6 run _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 8 case _ _ 8 HUD _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 VA _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 FmHA _ PROPN NNP _ 8 conj _ _ 15 are _ VERB VBP _ 16 cop _ _ 16 awash _ ADV RB _ 0 root _ _ 17 in _ ADP IN _ 19 case _ _ 18 red _ ADJ JJ _ 19 amod _ _ 19 ink _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 FHA _ PROPN NNP _ 4 nsubj _ _ 3 alone _ ADV RB _ 2 advmod _ _ 4 lost _ VERB VBD _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 4.2 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 in _ ADP IN _ 10 case _ _ 9 fiscal _ ADJ JJ _ 10 amod _ _ 10 1988 _ NUM CD _ 4 nmod _ _ 11 ; _ PUNCT : _ 4 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 government _ NOUN NN _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 equity _ NOUN NN _ 25 nsubj _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 agency _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 essentially _ ADV RB _ 23 advmod _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 reserve _ NOUN NN _ 23 compound _ _ 23 fund _ NOUN NN _ 15 appos _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 fell _ VERB VBD _ 4 parataxis _ _ 26 to _ ADP TO _ 28 case _ _ 27 minus _ ADP IN _ 28 amod _ _ 28 $ _ SYM $ _ 25 nmod _ _ 29 2.9 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 federal _ ADJ JJ _ 3 amod _ _ 3 government _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 had _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 pump _ VERB VB _ 5 xcomp _ _ 8 in _ ADP RP _ 7 compound:prt _ _ 9 $ _ SYM $ _ 7 dobj _ _ 10 2.28 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 into _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 VA _ PROPN NNP _ 16 compound _ _ 15 housing _ NOUN NN _ 16 compound _ _ 16 program _ NOUN NN _ 7 nmod _ _ 17 since _ ADP IN _ 18 case _ _ 18 1984 _ NUM CD _ 7 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 keep _ VERB VB _ 7 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 fund _ NOUN NN _ 23 nsubj _ _ 23 afloat _ ADV RB _ 20 xcomp _ _ 24 and _ CONJ CC _ 5 cc _ _ 25 the _ DET DT _ 26 det _ _ 26 VA _ PROPN NNP _ 27 nsubj _ _ 27 requested _ VERB VBD _ 5 conj _ _ 28 an _ DET DT _ 30 det _ _ 29 additional _ ADJ JJ _ 30 advmod _ _ 30 $ _ SYM $ _ 27 dobj _ _ 31 120 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 30 nummod _ _ 33 for _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 fiscal _ ADJ JJ _ 36 amod _ _ 36 year _ NOUN NN _ 27 nmod _ _ 37 just _ ADV RB _ 38 advmod _ _ 38 ended _ VERB VBD _ 36 acl _ _ 39 . _ PUNCT . _ 5 punct _ _ 1 All _ DET DT _ 8 advmod _ _ 2 told _ VERB VBD _ 1 dep _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 federal _ ADJ JJ _ 6 amod _ _ 6 government _ NOUN NN _ 8 nsubj _ _ 7 already _ ADV RB _ 8 advmod _ _ 8 guarantees _ VERB VBZ _ 0 root _ _ 9 more _ ADJ JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 $ _ SYM $ _ 8 dobj _ _ 12 900 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 of _ ADP IN _ 15 case _ _ 15 mortgages _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 its _ PRON PRP$ _ 5 nmod:poss _ _ 3 nicely _ ADV RB _ 4 advmod _ _ 4 produced _ VERB VBN _ 5 amod _ _ 5 publication _ NOUN NN _ 17 nmod _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 Where _ ADV WRB _ 11 advmod _ _ 8 Will _ AUX MD _ 11 aux _ _ 9 Our _ PRON PRP$ _ 10 nmod:poss _ _ 10 Children _ NOUN NNS _ 11 nsubj _ _ 11 Live _ VERB VB _ 5 dep _ _ 12 ? _ PUNCT . _ 11 punct _ _ 13 '' _ PUNCT '' _ 5 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 NAHB _ PROPN NNP _ 17 nsubj _ _ 16 does _ AUX VBZ _ 17 aux _ _ 17 acknowledge _ VERB VB _ 0 root _ _ 18 that _ SCONJ IN _ 32 mark _ _ 19 `` _ PUNCT `` _ 32 punct _ _ 20 of _ ADP IN _ 21 case _ _ 21 course _ NOUN NN _ 32 nmod _ _ 22 , _ PUNCT , _ 32 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 full _ ADJ JJ _ 25 amod _ _ 25 measure _ NOUN NN _ 32 nsubjpass _ _ 26 of _ ADP IN _ 28 case _ _ 27 housing _ NOUN NN _ 28 compound _ _ 28 affordability _ NOUN NN _ 25 nmod _ _ 29 can _ AUX MD _ 32 aux _ _ 30 not _ PART RB _ 32 neg _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 provided _ VERB VBN _ 17 ccomp _ _ 33 by _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 federal _ ADJ JJ _ 36 amod _ _ 36 government _ NOUN NN _ 32 nmod _ _ 37 . _ PUNCT . _ 17 punct _ _ 38 '' _ PUNCT '' _ 17 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 points _ VERB VBZ _ 0 root _ _ 3 to _ ADP TO _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 pernicious _ ADJ JJ _ 6 amod _ _ 6 impact _ NOUN NN _ 2 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 local _ ADJ JJ _ 10 amod _ _ 9 government _ NOUN NN _ 10 compound _ _ 10 regulation _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 particularly _ ADV RB _ 13 advmod _ _ 13 zoning _ NOUN NN _ 10 appos _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 building _ NOUN NN _ 16 compound _ _ 16 fees _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 10 punct _ _ 18 which _ PRON WDT _ 19 nsubj _ _ 19 pushes _ VERB VBZ _ 10 acl:relcl _ _ 20 the _ DET DT _ 21 det _ _ 21 price _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 housing _ NOUN NN _ 21 nmod _ _ 24 out _ ADP IN _ 27 case _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 reach _ NOUN NN _ 19 nmod _ _ 28 of _ ADP IN _ 32 case _ _ 29 low- _ ADJ JJ _ 32 amod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 middle-income _ ADJ JJ _ 29 conj _ _ 32 people _ NOUN NNS _ 27 nmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 22 cc _ _ 2 while _ SCONJ IN _ 6 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 NAHB _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 suggested _ VERB VBN _ 22 advcl _ _ 7 actions _ NOUN NNS _ 6 dobj _ _ 8 that _ ADP IN _ 13 dobj _ _ 9 states _ NOUN NNS _ 13 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 localities _ NOUN NNS _ 9 conj _ _ 12 should _ AUX MD _ 13 aux _ _ 13 take _ VERB VB _ 7 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 reduce _ VERB VB _ 13 xcomp _ _ 16 regulatory _ ADJ JJ _ 17 amod _ _ 17 barriers _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 association _ NOUN NN _ 22 nsubj _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 proposed _ VERB VBN _ 0 root _ _ 23 no _ DET DT _ 26 neg _ _ 24 activist _ ADJ JJ _ 26 amod _ _ 25 legislative _ ADJ JJ _ 26 amod _ _ 26 program _ NOUN NN _ 22 dobj _ _ 27 -- _ PUNCT : _ 28 punct _ _ 28 comparable _ ADJ JJ _ 26 dep _ _ 29 to _ ADP TO _ 35 case _ _ 30 , _ PUNCT , _ 31 punct _ _ 31 say _ VERB VB _ 35 dep _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 its _ PRON PRP$ _ 35 nmod:poss _ _ 34 detailed _ VERB VBN _ 35 amod _ _ 35 request _ NOUN NN _ 28 nmod _ _ 36 for _ ADP IN _ 39 case _ _ 37 more _ ADJ JJR _ 39 amod _ _ 38 federal _ ADJ JJ _ 39 amod _ _ 39 subsidies _ NOUN NNS _ 35 nmod _ _ 40 -- _ PUNCT : _ 28 punct _ _ 41 to _ PART TO _ 42 mark _ _ 42 eliminate _ VERB VB _ 26 acl _ _ 43 counterproductive _ ADJ JJ _ 44 amod _ _ 44 controls _ NOUN NNS _ 42 dobj _ _ 45 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 association _ NOUN NN _ 23 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 majority _ NOUN NN _ 10 nsubj _ _ 6 of _ ADP IN _ 9 case _ _ 7 whose _ PRON WP$ _ 9 nmod:poss _ _ 8 156,000 _ NUM CD _ 9 nummod _ _ 9 members _ NOUN NNS _ 5 nmod _ _ 10 build _ VERB VBP _ 2 acl:relcl _ _ 11 fewer _ ADJ JJR _ 13 advmod _ _ 12 than _ ADP IN _ 13 advmod _ _ 13 25 _ NUM CD _ 14 nummod _ _ 14 units _ NOUN NNS _ 10 dobj _ _ 15 a _ DET DT _ 16 det _ _ 16 year _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 is _ VERB VBZ _ 23 cop _ _ 19 like _ ADP IN _ 23 case _ _ 20 many _ ADJ JJ _ 23 amod _ _ 21 other _ ADJ JJ _ 23 amod _ _ 22 business _ NOUN NN _ 23 compound _ _ 23 lobbies _ NOUN NNS _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Explains _ VERB VBZ _ 0 root _ _ 2 Sheila _ PROPN NNP _ 3 compound _ _ 3 MacDonald _ PROPN NNP _ 1 nsubj _ _ 4 of _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 National _ PROPN NNP _ 8 compound _ _ 7 Taxpayers _ PROPN NNP _ 8 compound _ _ 8 Union _ PROPN NNP _ 3 nmod _ _ 9 : _ PUNCT : _ 1 punct _ _ 10 `` _ PUNCT `` _ 1 punct _ _ 11 It _ PRON PRP _ 12 nsubj _ _ 12 treads _ VERB VBZ _ 1 ccomp _ _ 13 in _ ADP IN _ 15 case _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 worlds _ NOUN NNS _ 12 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 builders _ NOUN NNS _ 3 nsubj _ _ 3 like _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 subsidies _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 but _ CONJ CC _ 3 cc _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 same _ ADJ JJ _ 11 amod _ _ 11 time _ NOUN NN _ 13 nmod _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 tend _ VERB VBP _ 3 conj _ _ 14 to _ PART TO _ 17 mark _ _ 15 be _ VERB VB _ 17 cop _ _ 16 fiscal _ ADJ JJ _ 17 amod _ _ 17 conservatives _ NOUN NNS _ 13 xcomp _ _ 18 in _ ADP IN _ 19 case _ _ 19 terms _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 major _ ADJ JJ _ 22 amod _ _ 22 issues _ NOUN NNS _ 19 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 such _ ADJ JJ _ 28 case _ _ 25 as _ ADP IN _ 24 mwe _ _ 26 the _ DET DT _ 28 det _ _ 27 balanced-budget _ ADJ JJ _ 28 amod _ _ 28 amendment _ NOUN NN _ 22 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 30 '' _ PUNCT '' _ 3 punct _ _ 1 Unfortunately _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 organization _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 desire _ NOUN NN _ 9 nsubj _ _ 7 for _ ADP IN _ 8 case _ _ 8 pork _ NOUN NN _ 6 nmod _ _ 9 tends _ VERB VBZ _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 override _ VERB VB _ 9 xcomp _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 commitment _ NOUN NN _ 11 dobj _ _ 14 to _ ADP TO _ 17 case _ _ 15 overall _ ADJ JJ _ 17 amod _ _ 16 fiscal _ ADJ JJ _ 17 amod _ _ 17 responsibility _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 21 advmod _ _ 4 when _ ADV WRB _ 7 advmod _ _ 5 the _ DET DT _ 6 det _ _ 6 NAHB _ PROPN NNP _ 7 nsubj _ _ 7 lobbied _ VERB VBD _ 21 advcl _ _ 8 for _ ADP IN _ 15 case _ _ 9 the _ DET DT _ 15 det _ _ 10 $ _ SYM $ _ 15 amod _ _ 11 19 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 omnibus _ NOUN NN _ 15 compound _ _ 14 housing _ NOUN NN _ 15 compound _ _ 15 bill _ NOUN NN _ 7 nmod _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 organization _ NOUN NN _ 21 nsubj _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 basically _ ADV RB _ 21 advmod _ _ 21 dropped _ VERB VBD _ 30 ccomp _ _ 22 out _ ADP RP _ 27 dep _ _ 23 of _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 25 det _ _ 25 taxpayers _ NOUN NNS _ 27 nmod:poss _ _ 26 ' _ PART POS _ 25 case _ _ 27 coalition _ NOUN NN _ 21 advcl _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 '' _ PUNCT '' _ 30 punct _ _ 30 says _ VERB VBZ _ 0 root _ _ 31 Ms. _ PROPN NNP _ 32 compound _ _ 32 MacDonald _ PROPN NNP _ 30 nsubj _ _ 33 . _ PUNCT . _ 30 punct _ _ 1 As _ SCONJ IN _ 7 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Colton _ PROPN NNP _ 7 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 NAHB _ PROPN NNP _ 3 nmod _ _ 7 acknowledges _ VERB VBZ _ 13 advcl _ _ 8 : _ PUNCT : _ 13 punct _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 Government _ PROPN NNP _ 13 nsubj _ _ 11 is _ AUX VBZ _ 13 aux _ _ 12 not _ PART RB _ 13 neg _ _ 13 going _ VERB VBG _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 solve _ VERB VB _ 13 xcomp _ _ 16 the _ DET DT _ 17 det _ _ 17 problem _ NOUN NN _ 15 dobj _ _ 18 ... _ PUNCT : _ 13 punct _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 real _ ADJ JJ _ 3 amod _ _ 3 key _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 have _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 economy _ NOUN NN _ 9 nsubj _ _ 9 working _ VERB VBG _ 6 xcomp _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 interest _ NOUN NN _ 12 compound _ _ 12 rates _ NOUN NNS _ 13 dep _ _ 13 down _ ADV RB _ 9 conj _ _ 14 . _ PUNCT . _ 4 punct _ _ 15 '' _ PUNCT '' _ 4 punct _ _ 1 More _ ADJ JJR _ 2 amod _ _ 2 money _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 HUD _ PROPN NNP _ 2 nmod _ _ 5 will _ AUX MD _ 6 aux _ _ 6 increase _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 deficit _ NOUN NN _ 6 dobj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 destabilize _ VERB VB _ 6 conj _ _ 11 the _ DET DT _ 12 det _ _ 12 economy _ NOUN NN _ 10 dobj _ _ 13 ; _ PUNCT : _ 6 punct _ _ 14 more _ ADJ JJR _ 15 amod _ _ 15 money _ NOUN NN _ 27 nsubj _ _ 16 to _ ADP TO _ 17 case _ _ 17 municipalities _ NOUN NNS _ 15 nmod _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 are _ AUX VBP _ 20 aux _ _ 20 wrecking _ VERB VBG _ 17 acl:relcl _ _ 21 their _ PRON PRP$ _ 24 nmod:poss _ _ 22 local _ ADJ JJ _ 24 amod _ _ 23 housing _ NOUN NN _ 24 compound _ _ 24 markets _ NOUN NNS _ 20 dobj _ _ 25 will _ AUX MD _ 27 aux _ _ 26 further _ ADV RBR _ 27 advmod _ _ 27 insulate _ VERB VB _ 6 parataxis _ _ 28 them _ PRON PRP _ 27 dobj _ _ 29 from _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 destructive _ ADJ JJ _ 32 amod _ _ 32 effects _ NOUN NNS _ 27 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 their _ PRON PRP$ _ 35 nmod:poss _ _ 35 policies _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Is _ VERB VBZ _ 0 root _ _ 2 this _ PRON DT _ 1 nsubj _ _ 3 what _ PRON WP _ 7 dobj _ _ 4 the _ DET DT _ 6 det _ _ 5 home _ NOUN NN _ 6 compound _ _ 6 builders _ NOUN NNS _ 7 nsubj _ _ 7 want _ VERB VBP _ 1 dep _ _ 8 ? _ PUNCT . _ 1 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Bandow _ PROPN NNP _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 Cato _ PROPN NNP _ 7 compound _ _ 6 Institute _ PROPN NNP _ 7 compound _ _ 7 fellow _ NOUN NN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 2 punct _ _ 2 See _ VERB VB _ 0 root _ _ 3 related _ VERB VBN _ 4 amod _ _ 4 story _ NOUN NN _ 2 dobj _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 And _ CONJ CC _ 8 cc _ _ 8 Bills _ NOUN NNS _ 4 dep _ _ 9 to _ PART TO _ 10 mark _ _ 10 Make _ VERB VB _ 8 acl _ _ 11 Wishes _ NOUN NNS _ 12 nsubj _ _ 12 Come _ VERB VB _ 10 ccomp _ _ 13 True _ ADJ JJ _ 12 xcomp _ _ 14 '' _ PUNCT '' _ 8 punct _ _ 15 -- _ PUNCT : _ 8 punct _ _ 16 WSJ _ PROPN NNP _ 8 dep _ _ 17 Oct. _ PROPN NNP _ 16 nmod:tmod _ _ 18 17 _ NUM CD _ 17 nummod _ _ 19 , _ PUNCT , _ 17 punct _ _ 20 1989 _ NUM CD _ 17 nummod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 attempt _ NOUN NN _ 21 nmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 give _ VERB VB _ 3 acl _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 momentum _ NOUN NN _ 5 dobj _ _ 8 to _ ADP TO _ 11 case _ _ 9 European _ PROPN NNP _ 11 compound _ _ 10 Community _ PROPN NNP _ 11 compound _ _ 11 plans _ NOUN NNS _ 5 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 single _ ADJ JJ _ 15 amod _ _ 15 currency _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 EC _ PROPN NNP _ 19 compound _ _ 18 government _ NOUN NN _ 19 compound _ _ 19 leaders _ NOUN NNS _ 21 nsubj _ _ 20 are _ VERB VBP _ 21 cop _ _ 21 likely _ ADJ JJ _ 0 root _ _ 22 to _ PART TO _ 23 mark _ _ 23 agree _ VERB VB _ 21 xcomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 set _ VERB VB _ 23 xcomp _ _ 26 a _ DET DT _ 27 det _ _ 27 date _ NOUN NN _ 25 dobj _ _ 28 for _ SCONJ IN _ 29 mark _ _ 29 starting _ VERB VBG _ 27 acl _ _ 30 formal _ ADJ JJ _ 31 amod _ _ 31 talks _ NOUN NNS _ 29 dobj _ _ 32 on _ SCONJ IN _ 33 mark _ _ 33 amending _ VERB VBG _ 31 acl _ _ 34 the _ DET DT _ 35 det _ _ 35 EC _ PROPN NNP _ 38 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 founding _ NOUN NN _ 38 compound _ _ 38 Treaty _ PROPN NNP _ 33 dobj _ _ 39 of _ ADP IN _ 40 case _ _ 40 Rome _ PROPN NNP _ 38 nmod _ _ 41 . _ PUNCT . _ 21 punct _ _ 1 According _ VERB VBG _ 4 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 diplomatic _ ADJ JJ _ 4 amod _ _ 4 sources _ NOUN NNS _ 11 nmod _ _ 5 in _ ADP IN _ 6 case _ _ 6 Brussels _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 most _ ADJ JJS _ 10 amod _ _ 9 EC _ PROPN NNP _ 10 compound _ _ 10 leaders _ NOUN NNS _ 11 nsubj _ _ 11 agree _ VERB VBP _ 0 root _ _ 12 that _ SCONJ IN _ 15 mark _ _ 13 talks _ NOUN NNS _ 15 nsubj _ _ 14 should _ AUX MD _ 15 aux _ _ 15 begin _ VERB VB _ 11 ccomp _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 second _ ADJ JJ _ 19 amod _ _ 19 half _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 1990 _ NUM CD _ 19 nmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 and _ CONJ CC _ 15 cc _ _ 24 will _ AUX MD _ 25 aux _ _ 25 make _ VERB VB _ 15 conj _ _ 26 a _ DET DT _ 27 det _ _ 27 declaration _ NOUN NN _ 25 dobj _ _ 28 on _ ADP IN _ 29 case _ _ 29 that _ PRON DT _ 27 nmod _ _ 30 during _ ADP IN _ 33 case _ _ 31 a _ DET DT _ 33 det _ _ 32 summit _ NOUN NN _ 33 compound _ _ 33 meeting _ NOUN NN _ 25 nmod _ _ 34 in _ ADP IN _ 35 case _ _ 35 Strasbourg _ PROPN NNP _ 33 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 France _ PROPN NNP _ 35 appos _ _ 38 , _ PUNCT , _ 35 punct _ _ 39 on _ ADP IN _ 40 case _ _ 40 Dec. _ PROPN NNP _ 33 nmod _ _ 41 8 _ NUM CD _ 40 nummod _ _ 42 and _ CONJ CC _ 40 cc _ _ 43 9 _ NUM CD _ 40 conj _ _ 44 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 only _ ADJ JJ _ 4 amod _ _ 3 strong _ ADJ JJ _ 4 amod _ _ 4 opposition _ NOUN NN _ 10 nsubj _ _ 5 to _ ADP TO _ 6 mark _ _ 6 changing _ VERB VBG _ 4 acl _ _ 7 the _ DET DT _ 9 det _ _ 8 EC _ PROPN NNP _ 9 compound _ _ 9 treaty _ NOUN NN _ 6 dobj _ _ 10 comes _ VERB VBZ _ 0 root _ _ 11 from _ ADP IN _ 16 case _ _ 12 British _ PROPN NNP _ 16 compound _ _ 13 Prime _ PROPN NNP _ 16 compound _ _ 14 Minister _ PROPN NNP _ 16 compound _ _ 15 Margaret _ PROPN NNP _ 16 compound _ _ 16 Thatcher _ PROPN NNP _ 10 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 who _ PRON WP _ 20 nsubjpass _ _ 19 is _ AUX VBZ _ 20 auxpass _ _ 20 opposed _ VERB VBN _ 16 acl:relcl _ _ 21 to _ ADP TO _ 22 mark _ _ 22 creating _ VERB VBG _ 20 advcl _ _ 23 a _ DET DT _ 26 det _ _ 24 single _ ADJ JJ _ 26 amod _ _ 25 EC _ PROPN NNP _ 26 compound _ _ 26 currency _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 process _ NOUN NN _ 11 nsubj _ _ 4 of _ SCONJ IN _ 5 mark _ _ 5 convening _ VERB VBG _ 3 acl _ _ 6 the _ DET DT _ 8 det _ _ 7 intergovernmental _ ADJ JJ _ 8 amod _ _ 8 conference _ NOUN NN _ 5 dobj _ _ 9 does _ AUX VBZ _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 require _ VERB VB _ 0 root _ _ 12 unanimity _ NOUN NN _ 11 dobj _ _ 13 . _ PUNCT . _ 11 punct _ _ 1 Setting _ VERB VBG _ 8 csubjpass _ _ 2 a _ DET DT _ 3 det _ _ 3 date _ NOUN NN _ 1 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 start _ VERB VB _ 3 acl _ _ 6 treaty _ NOUN NN _ 7 compound _ _ 7 negotiations _ NOUN NNS _ 5 dobj _ _ 8 has _ VERB VBZ _ 0 root _ _ 9 no _ DET DT _ 11 neg _ _ 10 legal _ ADJ JJ _ 11 amod _ _ 11 significance _ NOUN NN _ 8 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 itself _ PRON PRP _ 8 nmod _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 but _ CONJ CC _ 8 cc _ _ 16 could _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 viewed _ VERB VBN _ 8 conj _ _ 19 as _ ADP IN _ 23 case _ _ 20 an _ DET DT _ 23 det _ _ 21 important _ ADJ JJ _ 23 amod _ _ 22 psychological _ ADJ JJ _ 23 amod _ _ 23 push _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 French _ PROPN NNP _ 4 compound _ _ 2 President _ PROPN NNP _ 4 compound _ _ 3 Francois _ PROPN NNP _ 4 compound _ _ 4 Mitterrand _ PROPN NNP _ 5 nsubj _ _ 5 fought _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 set _ VERB VB _ 5 xcomp _ _ 8 a _ DET DT _ 9 det _ _ 9 date _ NOUN NN _ 7 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 conference _ NOUN NN _ 9 nmod _ _ 13 during _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 EC _ PROPN NNP _ 16 compound _ _ 16 summit _ NOUN NN _ 5 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Madrid _ PROPN NNP _ 16 nmod _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 June _ PROPN NNP _ 16 nmod:tmod _ _ 21 , _ PUNCT , _ 5 punct _ _ 22 but _ CONJ CC _ 5 cc _ _ 23 the _ DET DT _ 24 det _ _ 24 move _ NOUN NN _ 26 nsubjpass _ _ 25 was _ AUX VBD _ 26 auxpass _ _ 26 scuttled _ VERB VBN _ 5 conj _ _ 27 because _ ADV RB _ 29 case _ _ 28 of _ ADP IN _ 27 mwe _ _ 29 opposition _ NOUN NN _ 26 nmod _ _ 30 by _ ADP IN _ 32 case _ _ 31 Mrs. _ PROPN NNP _ 32 compound _ _ 32 Thatcher _ PROPN NNP _ 29 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 West _ PROPN NNP _ 38 compound _ _ 35 German _ PROPN NNP _ 38 compound _ _ 36 Chancellor _ PROPN NNP _ 38 compound _ _ 37 Helmut _ PROPN NNP _ 38 compound _ _ 38 Kohl _ PROPN NNP _ 32 conj _ _ 39 . _ PUNCT . _ 5 punct _ _ 1 Diplomatic _ ADJ JJ _ 2 amod _ _ 2 sources _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Kohl _ PROPN NNP _ 8 nsubj _ _ 6 may _ AUX MD _ 8 aux _ _ 7 now _ ADV RB _ 8 advmod _ _ 8 agree _ VERB VB _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 set _ VERB VB _ 8 xcomp _ _ 11 a _ DET DT _ 12 det _ _ 12 date _ NOUN NN _ 10 dobj _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 conference _ NOUN NN _ 12 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 make _ VERB VB _ 8 xcomp _ _ 18 it _ PRON PRP _ 25 nsubjpass _ _ 19 clear _ ADJ JJ _ 25 dep _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 West _ PROPN NNP _ 22 compound _ _ 22 Germany _ PROPN NNP _ 25 nsubjpass _ _ 23 is _ AUX VBZ _ 25 auxpass _ _ 24 still _ ADV RB _ 25 advmod _ _ 25 committed _ VERB VBN _ 17 xcomp _ _ 26 to _ ADP TO _ 28 case _ _ 27 EC _ PROPN NNP _ 28 compound _ _ 28 unity _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 crewcut _ NOUN NN _ 8 nsubj _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 equities _ NOUN NNS _ 7 compound _ _ 7 markets _ NOUN NNS _ 3 nmod _ _ 8 reminds _ VERB VBZ _ 0 root _ _ 9 me _ PRON PRP _ 8 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 joke _ NOUN NN _ 8 nmod _ _ 13 T. _ PROPN NNP _ 15 compound _ _ 14 Boone _ PROPN NNP _ 15 compound _ _ 15 Pickens _ PROPN NNP _ 16 nsubj _ _ 16 tells _ VERB VBZ _ 12 acl:relcl _ _ 17 about _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 guy _ NOUN NN _ 12 nmod _ _ 20 who _ PRON WP _ 22 nsubjpass _ _ 21 was _ AUX VBD _ 22 auxpass _ _ 22 run _ VERB VBN _ 19 acl:relcl _ _ 23 over _ ADP RP _ 22 compound:prt _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 parade _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 When _ ADV WRB _ 2 advmod _ _ 2 asked _ VERB VBD _ 12 advcl _ _ 3 `` _ PUNCT `` _ 2 punct _ _ 4 What _ PRON WP _ 5 nsubj _ _ 5 went _ VERB VBD _ 2 ccomp _ _ 6 wrong _ ADJ JJ _ 5 advmod _ _ 7 ? _ PUNCT . _ 2 punct _ _ 8 '' _ PUNCT '' _ 2 punct _ _ 9 the _ DET DT _ 11 det _ _ 10 unfortunate _ ADJ JJ _ 11 amod _ _ 11 victim _ NOUN NN _ 12 nsubj _ _ 12 replied _ VERB VBD _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 `` _ PUNCT `` _ 12 punct _ _ 15 It _ PRON PRP _ 18 nsubj _ _ 16 was _ VERB VBD _ 18 cop _ _ 17 a _ DET DT _ 18 det _ _ 18 combination _ NOUN NN _ 12 ccomp _ _ 19 of _ ADP IN _ 20 case _ _ 20 things _ NOUN NNS _ 18 nmod _ _ 21 . _ PUNCT . _ 12 punct _ _ 22 '' _ PUNCT '' _ 12 punct _ _ 1 And _ CONJ CC _ 7 cc _ _ 2 so _ ADP IN _ 7 advmod _ _ 3 it _ PRON PRP _ 7 nsubj _ _ 4 was _ VERB VBD _ 7 cop _ _ 5 on _ ADP IN _ 7 case _ _ 6 Gray _ PROPN NNP _ 7 compound _ _ 7 Friday _ PROPN NNP _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 grand _ ADJ JJ _ 3 amod _ _ 3 marshal _ NOUN NN _ 8 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 this _ DET DT _ 6 det _ _ 6 parade _ NOUN NN _ 3 nmod _ _ 7 would _ AUX MD _ 8 aux _ _ 8 appear _ VERB VB _ 0 root _ _ 9 to _ PART TO _ 13 mark _ _ 10 have _ AUX VB _ 13 aux _ _ 11 been _ VERB VBN _ 13 cop _ _ 12 excess _ ADJ JJ _ 13 amod _ _ 13 leverage _ NOUN NN _ 8 xcomp _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 if _ SCONJ IN _ 4 mark _ _ 3 that _ PRON DT _ 4 nsubj _ _ 4 is _ VERB VBZ _ 13 advcl _ _ 5 so _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 however _ ADV RB _ 13 advmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 it _ PRON PRP _ 13 nsubj _ _ 10 's _ VERB VBZ _ 13 cop _ _ 11 probably _ ADV RB _ 13 advmod _ _ 12 the _ DET DT _ 13 det _ _ 13 case _ NOUN NN _ 0 root _ _ 14 that _ SCONJ IN _ 20 mark _ _ 15 no _ DET DT _ 16 neg _ _ 16 barriers _ NOUN NNS _ 20 nsubjpass _ _ 17 should _ AUX MD _ 20 aux _ _ 18 have _ AUX VB _ 20 aux _ _ 19 been _ AUX VBN _ 20 auxpass _ _ 20 erected _ VERB VBN _ 13 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 stop _ VERB VB _ 20 xcomp _ _ 23 the _ DET DT _ 24 det _ _ 24 procession _ NOUN NN _ 22 dobj _ _ 25 before _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 end _ NOUN NN _ 22 nmod _ _ 28 of _ ADP IN _ 32 case _ _ 29 the _ DET DT _ 32 det _ _ 30 rout _ NOUN NN _ 32 compound _ _ 31 -LRB- _ PUNCT -LRB- _ 32 punct _ _ 32 e _ NOUN NN _ 27 nmod _ _ 33 -RRB- _ PUNCT -RRB- _ 32 punct _ _ 34 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ceremonies _ NOUN NNS _ 3 nsubj _ _ 3 began _ VERB VBD _ 0 root _ _ 4 Friday _ PROPN NNP _ 5 compound _ _ 5 afternoon _ NOUN NN _ 3 nmod:tmod _ _ 6 when _ ADV WRB _ 8 advmod _ _ 7 word _ NOUN NN _ 8 nsubj _ _ 8 spread _ VERB VBD _ 3 advcl _ _ 9 that _ SCONJ IN _ 14 mark _ _ 10 the _ DET DT _ 12 det _ _ 11 UAL _ PROPN NNP _ 12 compound _ _ 12 buy-out _ NOUN NN _ 14 nsubj _ _ 13 was _ AUX VBD _ 14 aux _ _ 14 collapsing _ VERB VBG _ 8 ccomp _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 union-bidder _ NOUN NN _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 27 advcl _ _ 5 to _ PART TO _ 6 mark _ _ 6 patch _ VERB VB _ 4 xcomp _ _ 7 together _ ADP RP _ 6 compound:prt _ _ 8 a _ DET DT _ 10 det _ _ 9 substitute _ ADJ JJ _ 10 amod _ _ 10 offer _ NOUN NN _ 6 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 consisting _ VERB VBG _ 10 acl _ _ 13 of _ ADP IN _ 15 case _ _ 14 less _ ADJ JJR _ 15 amod _ _ 15 cash _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 failure _ NOUN NN _ 27 nsubj _ _ 19 to _ PART TO _ 20 mark _ _ 20 get _ VERB VB _ 18 acl _ _ 21 cash _ NOUN NN _ 20 dobj _ _ 22 from _ ADP IN _ 26 case _ _ 23 Japanese _ ADJ JJ _ 26 amod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 American _ ADJ JJ _ 23 conj _ _ 26 banks _ NOUN NNS _ 20 nmod _ _ 27 confirmed _ VERB VBD _ 0 root _ _ 28 a _ DET DT _ 30 det _ _ 29 growing _ VERB VBG _ 30 amod _ _ 30 fear _ NOUN NN _ 27 dobj _ _ 31 among _ ADP IN _ 32 case _ _ 32 arbitragers _ NOUN NNS _ 30 nmod _ _ 33 that _ SCONJ IN _ 41 mark _ _ 34 the _ DET DT _ 35 det _ _ 35 pageant _ NOUN NN _ 41 nsubj _ _ 36 of _ ADP IN _ 39 case _ _ 37 high-leverage _ ADJ JJ _ 39 amod _ _ 38 takeover _ NOUN NN _ 39 compound _ _ 39 deals _ NOUN NNS _ 35 nmod _ _ 40 is _ AUX VBZ _ 41 aux _ _ 41 ending _ VERB VBG _ 30 dep _ _ 42 . _ PUNCT . _ 27 punct _ _ 1 Lots _ NOUN NNS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 other _ ADJ JJ _ 4 amod _ _ 4 entries _ NOUN NNS _ 1 nmod _ _ 5 made _ VERB VBN _ 0 root _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 the _ DET DT _ 8 det _ _ 8 parade _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 of _ ADP IN _ 11 case _ _ 11 course _ NOUN NN _ 5 nmod _ _ 12 -- _ PUNCT : _ 17 punct _ _ 13 notably _ ADV RB _ 17 advmod _ _ 14 a _ DET DT _ 17 det _ _ 15 surprisingly _ ADV RB _ 16 advmod _ _ 16 large _ ADJ JJ _ 17 amod _ _ 17 increase _ NOUN NN _ 5 dep _ _ 18 in _ ADP IN _ 20 case _ _ 19 producer _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 signalling _ VERB VBG _ 17 acl _ _ 23 Federal _ PROPN NNP _ 25 compound _ _ 24 Reserve _ PROPN NNP _ 25 compound _ _ 25 tightness _ NOUN NN _ 22 dobj _ _ 26 ; _ PUNCT : _ 17 punct _ _ 27 and _ CONJ CC _ 17 cc _ _ 28 the _ DET DT _ 30 det _ _ 29 Bush _ PROPN NNP _ 30 compound _ _ 30 administration _ NOUN NN _ 36 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 -LRB- _ PUNCT -LRB- _ 33 punct _ _ 33 temporary _ ADJ JJ _ 36 dep _ _ 34 ? _ PUNCT . _ 33 punct _ _ 35 -RRB- _ PUNCT -RRB- _ 33 punct _ _ 36 defeat _ NOUN NN _ 17 conj _ _ 37 in _ SCONJ IN _ 38 mark _ _ 38 trying _ VERB VBG _ 36 acl _ _ 39 to _ PART TO _ 40 mark _ _ 40 lower _ VERB VB _ 38 xcomp _ _ 41 the _ DET DT _ 43 det _ _ 42 capital-gains _ NOUN NNS _ 43 compound _ _ 43 tax _ NOUN NN _ 40 dobj _ _ 44 . _ PUNCT . _ 5 punct _ _ 1 As _ ADP IN _ 2 case _ _ 2 usual _ ADJ JJ _ 8 advcl _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 few _ ADJ JJ _ 6 amod _ _ 5 favorable _ ADJ JJ _ 6 amod _ _ 6 reviews _ NOUN NNS _ 8 nsubjpass _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 heard _ VERB VBN _ 0 root _ _ 9 for _ ADP IN _ 13 case _ _ 10 that _ DET DT _ 13 det _ _ 11 ever-present _ ADJ JJ _ 13 amod _ _ 12 marching _ VERB VBG _ 13 amod _ _ 13 band _ NOUN NN _ 8 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 program _ NOUN NN _ 16 compound _ _ 16 traders _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 although _ SCONJ IN _ 22 mark _ _ 19 most _ ADJ JJS _ 21 amod _ _ 20 serious _ ADJ JJ _ 21 amod _ _ 21 studies _ NOUN NNS _ 22 nsubj _ _ 22 suggest _ VERB VBP _ 8 advcl _ _ 23 they _ PRON PRP _ 25 nsubj _ _ 24 only _ ADV RB _ 25 advmod _ _ 25 play _ VERB VB _ 22 ccomp _ _ 26 the _ DET DT _ 27 det _ _ 27 music _ NOUN NN _ 25 dobj _ _ 28 that _ PRON WDT _ 30 dobj _ _ 29 others _ NOUN NNS _ 30 nsubj _ _ 30 write _ VERB VBP _ 27 acl:relcl _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 really _ ADV RB _ 3 advmod _ _ 3 spooked _ VERB VBD _ 15 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 crowds _ NOUN NNS _ 3 dobj _ _ 6 along _ ADP IN _ 8 case _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 however _ ADV RB _ 15 advmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 the _ DET DT _ 15 det _ _ 14 sudden _ ADJ JJ _ 15 amod _ _ 15 concern _ NOUN NN _ 0 root _ _ 16 that _ SCONJ IN _ 28 mark _ _ 17 , _ PUNCT , _ 28 punct _ _ 18 whatever _ DET WDT _ 20 dep _ _ 19 the _ DET DT _ 20 det _ _ 20 reason _ NOUN NN _ 28 advcl _ _ 21 , _ PUNCT , _ 28 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 pool _ NOUN NN _ 28 nsubj _ _ 24 of _ ADP IN _ 26 case _ _ 25 debt _ NOUN NN _ 26 compound _ _ 26 capital _ NOUN NN _ 23 nmod _ _ 27 is _ AUX VBZ _ 28 aux _ _ 28 drying _ VERB VBG _ 15 ccomp _ _ 29 up _ ADP RP _ 28 compound:prt _ _ 30 . _ PUNCT . _ 15 punct _ _ 1 Gray _ PROPN NNP _ 2 compound _ _ 2 Friday _ PROPN NNP _ 3 nsubj _ _ 3 reflects _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 panic _ NOUN NN _ 3 dobj _ _ 6 mainly _ ADV RB _ 10 advmod _ _ 7 by _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 takeover _ NOUN NN _ 10 compound _ _ 10 arbitragers _ NOUN NNS _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 rather _ ADV RB _ 10 cc _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 the _ DET DT _ 16 det _ _ 15 small _ ADJ JJ _ 16 amod _ _ 16 investor _ NOUN NN _ 10 conj _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 as _ ADV RB _ 30 advmod _ _ 19 their _ PRON PRP$ _ 22 nmod:poss _ _ 20 highly _ ADV RB _ 21 advmod _ _ 21 margined _ VERB VBN _ 22 amod _ _ 22 investments _ NOUN NNS _ 30 nsubjpass _ _ 23 in _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 `` _ PUNCT `` _ 28 punct _ _ 26 deal _ NOUN NN _ 28 compound _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 stocks _ NOUN NNS _ 22 nmod _ _ 29 are _ AUX VBP _ 30 auxpass _ _ 30 jeopardized _ VERB VBN _ 3 dep _ _ 31 by _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 unexpected _ ADJ JJ _ 30 nmod _ _ 34 drying _ VERB VBG _ 33 amod _ _ 35 up _ ADP RP _ 33 dep _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 lubricant _ NOUN NN _ 33 nmod _ _ 39 for _ ADP IN _ 41 case _ _ 40 deal _ NOUN NN _ 41 compound _ _ 41 financing _ NOUN NN _ 38 nmod _ _ 42 . _ PUNCT . _ 3 punct _ _ 1 Deal _ NOUN NN _ 2 compound _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 led _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 3 dobj _ _ 6 down _ ADV RB _ 3 advmod _ _ 7 as _ SCONJ IN _ 9 mark _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 absorbed _ VERB VBD _ 3 advcl _ _ 10 the _ DET DT _ 12 det _ _ 11 heaviest _ ADJ JJS _ 12 amod _ _ 12 losses _ NOUN NNS _ 9 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 UAL _ PROPN NNP _ 8 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 triggered _ VERB VBD _ 1 acl:relcl _ _ 5 the _ DET DT _ 6 det _ _ 6 slide _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 opened _ VERB VBD _ 0 root _ _ 9 Monday _ PROPN NNP _ 8 nmod:tmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 224 _ NUM CD _ 8 nmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 down _ ADV RB _ 8 advmod _ _ 15 about _ ADV RB _ 16 advmod _ _ 16 20 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 14 nmod:npmod _ _ 18 from _ ADP IN _ 21 case _ _ 19 Thursday _ PROPN NNP _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 close _ NOUN NN _ 14 nmod _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 AMR _ PROPN NNP _ 2 nsubj _ _ 2 opened _ VERB VBD _ 0 root _ _ 3 Monday _ PROPN NNP _ 2 nmod:tmod _ _ 4 at _ ADP IN _ 6 case _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 80 _ NUM CD _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 down _ ADV RB _ 2 advmod _ _ 9 nearly _ ADV RB _ 10 advmod _ _ 10 20 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 8 nmod:npmod _ _ 12 from _ ADP IN _ 15 case _ _ 13 Thursday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 close _ NOUN NN _ 8 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 3 punct _ _ 2 Both _ DET DT _ 3 nsubj _ _ 3 took _ VERB VBD _ 0 root _ _ 4 further _ ADJ JJ _ 5 amod _ _ 5 hits _ NOUN NNS _ 3 dobj _ _ 6 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 3 punct _ _ 1 Hilton _ PROPN NNP _ 2 nsubj _ _ 2 lost _ VERB VBD _ 0 root _ _ 3 20 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 on _ ADP IN _ 6 case _ _ 6 Friday _ PROPN NNP _ 2 nmod _ _ 7 ; _ PUNCT : _ 2 punct _ _ 8 Paramount _ PROPN NNP _ 9 nsubj _ _ 9 lost _ VERB VBD _ 2 parataxis _ _ 10 almost _ ADV RB _ 11 advmod _ _ 11 11 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 9 dobj _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 careful _ ADJ JJ _ 3 amod _ _ 3 look _ NOUN NN _ 4 nsubj _ _ 4 reveals _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 20 mark _ _ 6 where _ ADV WRB _ 11 advmod _ _ 7 deal _ NOUN NN _ 8 compound _ _ 8 financing _ NOUN NN _ 11 nsubjpass _ _ 9 has _ AUX VBZ _ 11 aux _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 secured _ VERB VBN _ 20 advcl _ _ 12 , _ PUNCT , _ 20 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 target _ NOUN NN _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 price _ NOUN NN _ 20 nsubjpass _ _ 18 was _ AUX VBD _ 20 auxpass _ _ 19 not _ PART RB _ 20 neg _ _ 20 affected _ VERB VBN _ 4 ccomp _ _ 21 on _ ADP IN _ 22 case _ _ 22 Friday _ PROPN NNP _ 20 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 multibillion-dollar _ ADJ JJ _ 3 amod _ _ 3 prospects _ NOUN NNS _ 22 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 where _ ADV WRB _ 9 advmod _ _ 6 the _ DET DT _ 7 det _ _ 7 bidder _ NOUN NN _ 9 nsubj _ _ 8 must _ AUX MD _ 9 aux _ _ 9 line _ VERB VB _ 3 acl:relcl _ _ 10 up _ ADP RP _ 9 compound:prt _ _ 11 a _ DET DT _ 12 det _ _ 12 consortium _ NOUN NN _ 9 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 banks _ NOUN NNS _ 12 nmod _ _ 15 and/or _ CONJ CC _ 9 cc _ _ 16 issue _ NOUN NN _ 9 conj _ _ 17 billions _ NOUN NNS _ 16 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 high-yield _ ADJ JJ _ 20 amod _ _ 20 debt _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 3 punct _ _ 22 were _ VERB VBD _ 0 root _ _ 23 where _ ADV WRB _ 27 advmod _ _ 24 the _ DET DT _ 25 det _ _ 25 damage _ NOUN NN _ 27 nsubjpass _ _ 26 was _ AUX VBD _ 27 auxpass _ _ 27 concentrated _ VERB VBN _ 22 advcl _ _ 28 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 9 nsubj _ _ 3 for _ ADP IN _ 6 case _ _ 4 so-called _ ADJ JJ _ 6 amod _ _ 5 junk _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 2 nmod _ _ 7 has _ AUX VBZ _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 setting _ VERB VBG _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 stage _ NOUN NN _ 9 dobj _ _ 12 for _ ADP IN _ 16 case _ _ 13 Friday _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 dramatic _ ADJ JJ _ 16 amod _ _ 16 march _ NOUN NN _ 9 nmod _ _ 17 for _ ADP IN _ 19 case _ _ 18 several _ ADJ JJ _ 19 amod _ _ 19 weeks _ NOUN NNS _ 9 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 growing _ VERB VBG _ 4 amod _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 difficulties _ NOUN NNS _ 27 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 recent _ ADJ JJ _ 8 amod _ _ 7 high-leverage _ ADJ JJ _ 8 amod _ _ 8 restructurings _ NOUN NNS _ 4 nmod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 takeovers _ NOUN NNS _ 8 conj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 such _ ADJ JJ _ 15 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 Resorts _ PROPN NNP _ 15 compound _ _ 15 International _ PROPN NNP _ 8 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Integrated _ PROPN NNP _ 18 compound _ _ 18 Resources _ PROPN NNP _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 Campeau _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 retailing _ NOUN NN _ 24 compound _ _ 24 empire _ NOUN NN _ 15 conj _ _ 25 , _ PUNCT , _ 15 punct _ _ 26 have _ AUX VBP _ 27 aux _ _ 27 cast _ VERB VBN _ 0 root _ _ 28 a _ DET DT _ 29 det _ _ 29 pall _ NOUN NN _ 27 dobj _ _ 30 over _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 entire _ ADJ JJ _ 33 amod _ _ 33 market _ NOUN NN _ 27 nmod _ _ 34 for _ ADP IN _ 36 case _ _ 35 high-yield _ ADJ JJ _ 36 amod _ _ 36 securities _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 27 punct _ _ 1 Investors _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 reacted _ VERB VBN _ 0 root _ _ 4 by _ SCONJ IN _ 5 mark _ _ 5 ignoring _ VERB VBG _ 3 dep _ _ 6 recent _ ADJ JJ _ 7 amod _ _ 7 efforts _ NOUN NNS _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 float _ VERB VB _ 7 acl _ _ 10 junk _ NOUN NN _ 11 compound _ _ 11 bonds _ NOUN NNS _ 9 dobj _ _ 12 by _ ADP IN _ 14 case _ _ 13 Ohio _ PROPN NNP _ 14 compound _ _ 14 Mattress _ PROPN NNP _ 7 nmod _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 forcing _ VERB VBG _ 5 conj _ _ 18 Ramada _ PROPN NNP _ 17 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 postpone _ VERB VB _ 17 xcomp _ _ 21 indefinitely _ ADV RB _ 20 advmod _ _ 22 its _ PRON PRP$ _ 25 nmod:poss _ _ 23 planned _ VERB VBN _ 25 amod _ _ 24 junk-bond _ NOUN NN _ 25 compound _ _ 25 sale _ NOUN NN _ 20 dobj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 restructuring _ NOUN NN _ 25 conj _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 high-yield _ ADJ JJ _ 7 amod _ _ 6 mutual _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 9 nsubj _ _ 8 have _ AUX VBP _ 9 aux _ _ 9 declined _ VERB VBN _ 0 root _ _ 10 across _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 board _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 the _ DET DT _ 16 det _ _ 15 many _ ADJ JJ _ 16 amod _ _ 16 firms _ NOUN NNS _ 29 nsubj _ _ 17 planning _ VERB VBG _ 16 acl _ _ 18 to _ PART TO _ 19 mark _ _ 19 sell _ VERB VB _ 17 xcomp _ _ 20 $ _ SYM $ _ 19 dobj _ _ 21 11 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 in _ ADP IN _ 25 case _ _ 24 junk _ NOUN NN _ 25 compound _ _ 25 bonds _ NOUN NNS _ 20 nmod _ _ 26 before _ ADP IN _ 27 case _ _ 27 year-end _ NOUN NN _ 19 nmod _ _ 28 are _ AUX VBP _ 29 aux _ _ 29 experiencing _ VERB VBG _ 9 conj _ _ 30 anxious _ ADJ JJ _ 31 amod _ _ 31 times _ NOUN NNS _ 29 dobj _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 These _ PRON DT _ 5 nsubj _ _ 2 are _ VERB VBP _ 5 cop _ _ 3 all _ DET DT _ 5 dep _ _ 4 market _ NOUN NN _ 5 compound _ _ 5 excesses _ NOUN NNS _ 0 root _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 putting _ VERB VBG _ 5 dep _ _ 8 aside _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 11 det _ _ 10 artificial _ ADJ JJ _ 11 amod _ _ 11 boosts _ NOUN NNS _ 7 dobj _ _ 12 that _ ADP IN _ 16 dobj _ _ 13 the _ DET DT _ 15 det _ _ 14 tax _ NOUN NN _ 15 compound _ _ 15 code _ NOUN NN _ 16 nsubj _ _ 16 gives _ VERB VBZ _ 11 acl:relcl _ _ 17 to _ ADP TO _ 18 case _ _ 18 debt _ NOUN NN _ 16 nmod _ _ 19 over _ ADP IN _ 20 case _ _ 20 equity _ NOUN NN _ 16 nmod _ _ 21 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 22 , _ PUNCT , _ 5 punct _ _ 23 and _ CONJ CC _ 5 cc _ _ 24 what _ PRON WP _ 27 dobj _ _ 25 we _ PRON PRP _ 27 nsubj _ _ 26 've _ AUX VBP _ 27 aux _ _ 27 seen _ VERB VBN _ 28 csubj _ _ 28 is _ VERB VBZ _ 5 conj _ _ 29 the _ DET DT _ 30 det _ _ 30 market _ NOUN NN _ 31 nsubj _ _ 31 reining _ VERB VBG _ 28 dep _ _ 32 them _ PRON PRP _ 31 dobj _ _ 33 in _ ADP RP _ 31 compound:prt _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Washington _ PROPN NNP _ 8 nsubj _ _ 5 had _ AUX VBD _ 8 aux _ _ 6 n't _ PART RB _ 8 neg _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 silent _ ADJ JJ _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 days _ NOUN NNS _ 8 nmod _ _ 12 leading _ VERB VBG _ 11 acl _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 debacle _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 and _ CONJ CC _ 8 cc _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 tendency _ NOUN NN _ 27 nsubj _ _ 21 to _ PART TO _ 22 mark _ _ 22 meddle _ VERB VB _ 20 acl _ _ 23 in _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 leverage _ NOUN NN _ 26 compound _ _ 26 equation _ NOUN NN _ 22 nmod _ _ 27 remains _ VERB VBZ _ 8 conj _ _ 28 a _ DET DT _ 30 det _ _ 29 troublesome _ ADJ JJ _ 30 amod _ _ 30 prospect _ NOUN NN _ 27 xcomp _ _ 31 , _ PUNCT , _ 8 punct _ _ 32 but _ CONJ CC _ 8 cc _ _ 33 those _ DET DT _ 35 det _ _ 34 preliminary _ ADJ JJ _ 35 amod _ _ 35 steps _ NOUN NNS _ 38 nsubj _ _ 36 should _ AUX MD _ 38 aux _ _ 37 n't _ PART RB _ 38 neg _ _ 38 distract _ VERB VB _ 8 conj _ _ 39 us _ PRON PRP _ 38 dobj _ _ 40 from _ ADP IN _ 44 case _ _ 41 the _ DET DT _ 44 det _ _ 42 basic _ ADJ JJ _ 44 amod _ _ 43 market _ NOUN NN _ 44 compound _ _ 44 fundamentalism _ NOUN NN _ 38 nmod _ _ 45 that _ PRON WDT _ 48 nsubj _ _ 46 was _ VERB VBD _ 48 cop _ _ 47 at _ ADP IN _ 48 case _ _ 48 work _ NOUN NN _ 44 acl:relcl _ _ 49 on _ ADP IN _ 50 case _ _ 50 Friday _ PROPN NNP _ 48 nmod _ _ 51 . _ PUNCT . _ 8 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 correct _ ADJ JJ _ 18 dep _ _ 5 to _ PART TO _ 6 mark _ _ 6 find _ VERB VB _ 4 xcomp _ _ 7 that _ SCONJ IN _ 14 mark _ _ 8 concerns _ NOUN NNS _ 14 nsubj _ _ 9 over _ ADP IN _ 11 case _ _ 10 corporate _ ADJ JJ _ 11 amod _ _ 11 debt _ NOUN NN _ 8 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 LBOs _ NOUN NNS _ 11 conj _ _ 14 caused _ VERB VBD _ 6 ccomp _ _ 15 Gray _ PROPN NNP _ 16 compound _ _ 16 Friday _ PROPN NNP _ 14 nmod:tmod _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 what _ PRON WP _ 0 root _ _ 19 are _ VERB VBP _ 18 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 implications _ NOUN NNS _ 18 nsubj _ _ 22 for _ ADP IN _ 24 case _ _ 23 policy _ NOUN NN _ 24 compound _ _ 24 makers _ NOUN NNS _ 21 nmod _ _ 25 ? _ PUNCT . _ 18 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 all _ DET DT _ 18 advmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 stock _ NOUN NN _ 6 compound _ _ 6 market _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 response _ NOUN NN _ 18 nsubjpass _ _ 9 to _ ADP TO _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 collapse _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 UAL _ PROPN NNP _ 15 compound _ _ 15 deal _ NOUN NN _ 11 nmod _ _ 16 might _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 taken _ VERB VBN _ 0 root _ _ 19 to _ PART TO _ 20 mark _ _ 20 confirm _ VERB VB _ 18 xcomp _ _ 21 the _ DET DT _ 23 det _ _ 22 anti-debt _ ADJ JJ _ 23 amod _ _ 23 direction _ NOUN NN _ 20 dobj _ _ 24 of _ ADP IN _ 25 case _ _ 25 regulators _ NOUN NNS _ 23 nmod _ _ 26 . _ PUNCT . _ 18 punct _ _ 1 Is _ VERB VBZ _ 4 cop _ _ 2 this _ PRON DT _ 4 nsubj _ _ 3 a _ DET DT _ 4 det _ _ 4 case _ NOUN NN _ 0 root _ _ 5 where _ ADV WRB _ 9 advmod _ _ 6 private _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 approving _ VERB VBG _ 4 acl:relcl _ _ 10 of _ ADP IN _ 13 case _ _ 11 Washington _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 bashing _ NOUN NN _ 9 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 Wall _ PROPN NNP _ 16 compound _ _ 16 Street _ PROPN NNP _ 13 nmod _ _ 17 ? _ PUNCT . _ 4 punct _ _ 1 Absolutely _ ADV RB _ 2 advmod _ _ 2 not _ PART RB _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 extent _ NOUN NN _ 20 nmod _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 Friday _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 sell-off _ NOUN NN _ 8 nsubj _ _ 8 reflected _ VERB VBD _ 3 dep _ _ 9 a _ DET DT _ 11 det _ _ 10 sudden _ ADJ JJ _ 11 amod _ _ 11 reappraisal _ NOUN NN _ 8 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 excesses _ NOUN NNS _ 11 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 leverage _ NOUN NN _ 14 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 message _ NOUN NN _ 20 nsubj _ _ 20 is _ VERB VBZ _ 0 root _ _ 21 that _ DET DT _ 30 mark _ _ 22 Wall _ PROPN NNP _ 23 compound _ _ 23 Street _ PROPN NNP _ 30 nsubj _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 the _ DET DT _ 27 det _ _ 26 private _ ADJ JJ _ 27 amod _ _ 27 markets _ NOUN NNS _ 23 conj _ _ 28 are _ VERB VBP _ 30 cop _ _ 29 fully _ ADV RB _ 30 advmod _ _ 30 capable _ ADJ JJ _ 20 ccomp _ _ 31 of _ SCONJ IN _ 32 mark _ _ 32 imposing _ VERB VBG _ 30 advcl _ _ 33 the _ DET DT _ 35 det _ _ 34 appropriate _ ADJ JJ _ 35 amod _ _ 35 incentives _ NOUN NNS _ 32 dobj _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 sanctions _ NOUN NNS _ 35 conj _ _ 38 on _ ADP IN _ 40 case _ _ 39 corporate _ ADJ JJ _ 40 amod _ _ 40 behavior _ NOUN NN _ 32 nmod _ _ 41 . _ PUNCT . _ 20 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 national _ ADJ JJ _ 4 amod _ _ 3 economic _ ADJ JJ _ 4 amod _ _ 4 interests _ NOUN NNS _ 8 nsubjpass _ _ 5 are _ AUX VBP _ 8 auxpass _ _ 6 much _ ADV RB _ 7 advmod _ _ 7 better _ ADV RB _ 8 advmod _ _ 8 served _ VERB VBN _ 0 root _ _ 9 allowing _ VERB VBG _ 8 xcomp _ _ 10 the _ DET DT _ 12 det _ _ 11 private _ ADJ JJ _ 12 amod _ _ 12 interests _ NOUN NNS _ 20 nsubj _ _ 13 of _ ADP IN _ 14 case _ _ 14 bankers _ NOUN NNS _ 12 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 investors _ NOUN NNS _ 14 conj _ _ 17 be _ VERB VB _ 20 cop _ _ 18 the _ DET DT _ 20 det _ _ 19 ultimate _ ADJ JJ _ 20 amod _ _ 20 judges _ NOUN NNS _ 9 ccomp _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 investment _ NOUN NN _ 24 compound _ _ 24 quality _ NOUN NN _ 20 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 various _ ADJ JJ _ 28 amod _ _ 27 LBO _ PROPN NNP _ 28 compound _ _ 28 deals _ NOUN NNS _ 24 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 leveraged _ VERB VBN _ 31 amod _ _ 31 restructurings _ NOUN NNS _ 28 conj _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 difficulties _ NOUN NNS _ 17 nsubj _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 junk-bond _ NOUN NN _ 7 compound _ _ 7 markets _ NOUN NNS _ 3 nmod _ _ 8 and _ CONJ CC _ 3 cc _ _ 9 the _ DET DT _ 10 det _ _ 10 scarcity _ NOUN NN _ 3 conj _ _ 11 of _ ADP IN _ 13 case _ _ 12 bank _ NOUN NN _ 13 compound _ _ 13 capital _ NOUN NN _ 10 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 recent _ ADJ JJ _ 16 amod _ _ 16 deals _ NOUN NNS _ 13 nmod _ _ 17 underscores _ VERB VBZ _ 0 root _ _ 18 the _ DET DT _ 19 det _ _ 19 wisdom _ NOUN NN _ 17 dobj _ _ 20 of _ SCONJ IN _ 21 mark _ _ 21 letting _ VERB VBG _ 19 acl _ _ 22 the _ DET DT _ 24 det _ _ 23 free _ ADJ JJ _ 24 amod _ _ 24 markets _ NOUN NNS _ 25 nsubj _ _ 25 operate _ VERB VB _ 21 ccomp _ _ 26 . _ PUNCT . _ 17 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 takeover _ NOUN NN _ 3 compound _ _ 3 premiums _ NOUN NNS _ 4 nsubj _ _ 4 become _ VERB VBP _ 19 advcl _ _ 5 excessive _ ADJ JJ _ 4 xcomp _ _ 6 , _ PUNCT , _ 19 punct _ _ 7 if _ SCONJ IN _ 10 mark _ _ 8 LBO _ PROPN NNP _ 9 compound _ _ 9 dealmakers _ NOUN NNS _ 10 nsubj _ _ 10 become _ VERB VBP _ 19 dep _ _ 11 too _ ADV RB _ 12 advmod _ _ 12 aggressive _ ADJ JJ _ 10 xcomp _ _ 13 , _ PUNCT , _ 19 punct _ _ 14 then _ ADV RB _ 19 advmod _ _ 15 the _ DET DT _ 17 det _ _ 16 private _ ADJ JJ _ 17 amod _ _ 17 market _ NOUN NN _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 recognize _ VERB VB _ 0 root _ _ 20 these _ DET DT _ 21 det _ _ 21 problems _ NOUN NNS _ 19 dobj _ _ 22 more _ ADV RBR _ 23 advmod _ _ 23 quickly _ ADV RB _ 19 advmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 accurately _ ADV RB _ 23 conj _ _ 26 than _ SCONJ IN _ 27 dep _ _ 27 will _ AUX MD _ 23 advcl _ _ 28 policy _ NOUN NN _ 29 compound _ _ 29 makers _ NOUN NNS _ 27 nsubj _ _ 30 , _ PUNCT , _ 19 punct _ _ 31 and _ CONJ CC _ 19 cc _ _ 32 the _ DET DT _ 33 det _ _ 33 markets _ NOUN NNS _ 35 nsubj _ _ 34 will _ AUX MD _ 35 aux _ _ 35 move _ VERB VB _ 19 conj _ _ 36 with _ ADP IN _ 38 case _ _ 37 lightning _ NOUN NN _ 38 compound _ _ 38 speed _ NOUN NN _ 35 nmod _ _ 39 to _ PART TO _ 40 mark _ _ 40 impose _ VERB VB _ 35 xcomp _ _ 41 appropriate _ ADJ JJ _ 42 amod _ _ 42 sanctions _ NOUN NNS _ 40 dobj _ _ 43 . _ PUNCT . _ 19 punct _ _ 1 Yes _ INTJ UH _ 7 discourse _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 broader _ ADJ JJR _ 5 amod _ _ 5 exchanges _ NOUN NNS _ 7 nsubjpass _ _ 6 got _ AUX VBD _ 7 auxpass _ _ 7 caught _ VERB VBN _ 0 root _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 spiral _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 but _ CONJ CC _ 7 cc _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 rode _ VERB VBD _ 7 conj _ _ 16 the _ DET DT _ 17 det _ _ 17 tiger _ NOUN NN _ 15 dobj _ _ 18 up _ ADV RB _ 15 advmod _ _ 19 all _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 15 nmod:tmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Not _ PART RB _ 2 dep _ _ 2 surprisingly _ ADV RB _ 6 advmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 he _ PRON PRP _ 6 nsubj _ _ 5 sometimes _ ADV RB _ 6 advmod _ _ 6 bites _ VERB VBZ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 arbitragers _ NOUN NNS _ 7 nsubjpass _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 initiatiors _ NOUN NNS _ 2 conj _ _ 6 got _ AUX VBD _ 7 auxpass _ _ 7 killed _ VERB VBN _ 0 root _ _ 8 on _ ADP IN _ 10 case _ _ 9 Gray _ PROPN NNP _ 10 compound _ _ 10 Friday _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 while _ SCONJ IN _ 19 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 besieged _ VERB VBN _ 15 amod _ _ 15 managers _ NOUN NNS _ 19 nsubj _ _ 16 of _ ADP IN _ 18 case _ _ 17 prospective _ ADJ JJ _ 18 amod _ _ 18 targets _ NOUN NNS _ 15 nmod _ _ 19 cheered _ VERB VBD _ 7 advcl _ _ 20 lustily _ ADV RB _ 19 advmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 identify _ VERB VBP _ 11 advcl _ _ 4 with _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 besieged _ ADJ JJ _ 7 amod _ _ 7 managers _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 you _ PRON PRP _ 11 nsubj _ _ 10 must _ AUX MD _ 11 aux _ _ 11 concede _ VERB VB _ 0 root _ _ 12 that _ SCONJ IN _ 26 mark _ _ 13 speedy _ ADJ JJ _ 16 amod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 effective _ ADJ JJ _ 13 conj _ _ 16 relief _ NOUN NN _ 26 nsubj _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 excesses _ NOUN NNS _ 16 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 takeover _ NOUN NN _ 23 compound _ _ 23 market _ NOUN NN _ 19 nmod _ _ 24 is _ VERB VBZ _ 26 cop _ _ 25 more _ ADV RBR _ 26 advmod _ _ 26 likely _ ADJ JJ _ 11 ccomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 come _ VERB VB _ 26 xcomp _ _ 29 from _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 marketplace _ NOUN NN _ 28 nmod _ _ 32 than _ ADP IN _ 34 case _ _ 33 from _ ADP IN _ 34 case _ _ 34 Washington _ PROPN NNP _ 26 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 side _ VERB VBP _ 12 advcl _ _ 4 with _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 arbitragers _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 raiders _ NOUN NNS _ 6 conj _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 you _ PRON PRP _ 12 nsubj _ _ 11 clearly _ ADV RB _ 12 advmod _ _ 12 have _ VERB VBP _ 0 root _ _ 13 more _ ADJ JJR _ 12 xcomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 fear _ VERB VB _ 13 xcomp _ _ 16 from _ ADP IN _ 18 case _ _ 17 private _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 15 nmod _ _ 19 than _ ADP IN _ 21 case _ _ 20 from _ ADP IN _ 21 case _ _ 21 regulators _ NOUN NNS _ 13 nmod _ _ 22 , _ PUNCT , _ 12 punct _ _ 23 although _ SCONJ IN _ 30 mark _ _ 24 the _ DET DT _ 26 det _ _ 25 Delaware _ PROPN NNP _ 26 compound _ _ 26 courts _ NOUN NNS _ 30 nsubjpass _ _ 27 should _ AUX MD _ 30 aux _ _ 28 never _ ADV RB _ 30 neg _ _ 29 be _ AUX VB _ 30 auxpass _ _ 30 underestimated _ VERB VBN _ 12 advcl _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 truth _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Washington _ PROPN NNP _ 6 nsubj _ _ 6 understands _ VERB VBZ _ 3 ccomp _ _ 7 politics _ NOUN NNS _ 6 dobj _ _ 8 better _ ADJ JJR _ 6 advmod _ _ 9 than _ ADP IN _ 10 case _ _ 10 economics _ NOUN NNS _ 8 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 8 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 average _ ADJ JJ _ 4 amod _ _ 4 citizen _ NOUN NN _ 8 nsubjpass _ _ 5 is _ AUX VBZ _ 8 auxpass _ _ 6 probably _ ADV RB _ 8 advmod _ _ 7 not _ PART RB _ 8 neg _ _ 8 harmed _ VERB VBN _ 28 advcl _ _ 9 too _ ADV RB _ 10 advmod _ _ 10 much _ ADV RB _ 8 advmod _ _ 11 from _ ADP IN _ 15 case _ _ 12 Washington _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 rhetorical _ ADJ JJ _ 15 amod _ _ 15 war _ NOUN NN _ 8 nmod _ _ 16 against _ ADP IN _ 18 case _ _ 17 Wall _ PROPN NNP _ 18 compound _ _ 18 Street _ PROPN NNP _ 15 nmod _ _ 19 regarding _ VERB VBG _ 15 acl _ _ 20 excessive _ ADJ JJ _ 21 amod _ _ 21 financial _ ADJ JJ _ 19 dobj _ _ 22 leveraging _ VERB VBG _ 21 amod _ _ 23 , _ PUNCT , _ 28 punct _ _ 24 actual _ ADJ JJ _ 25 amod _ _ 25 legislation _ NOUN NN _ 28 nsubj _ _ 26 would _ AUX MD _ 28 aux _ _ 27 probably _ ADV RB _ 28 advmod _ _ 28 impose _ VERB VB _ 0 root _ _ 29 considerable _ ADJ JJ _ 30 amod _ _ 30 harm _ NOUN NN _ 28 dobj _ _ 31 . _ PUNCT . _ 28 punct _ _ 1 Any _ DET DT _ 3 det _ _ 2 such _ ADJ JJ _ 3 amod _ _ 3 attempt _ NOUN NN _ 32 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 distinguish _ VERB VB _ 3 dep _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 good _ ADJ JJ _ 8 amod _ _ 8 debt _ NOUN NN _ 5 dobj _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 10 from _ ADP IN _ 13 case _ _ 11 `` _ PUNCT `` _ 13 punct _ _ 12 bad _ ADJ JJ _ 13 amod _ _ 13 debt _ NOUN NN _ 5 nmod _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 '' _ PUNCT '' _ 5 punct _ _ 16 or _ CONJ CC _ 5 cc _ _ 17 to _ PART TO _ 18 mark _ _ 18 draw _ VERB VB _ 5 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 line _ NOUN NN _ 18 dobj _ _ 21 at _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 particular _ ADJ JJ _ 24 amod _ _ 24 industry _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 29 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 the _ DET DT _ 29 det _ _ 29 airlines _ NOUN NNS _ 24 nmod _ _ 30 , _ PUNCT , _ 24 punct _ _ 31 is _ VERB VBZ _ 32 cop _ _ 32 likely _ ADJ JJ _ 0 root _ _ 33 to _ PART TO _ 34 mark _ _ 34 blunt _ VERB VB _ 32 xcomp _ _ 35 the _ DET DT _ 36 det _ _ 36 spur _ NOUN NN _ 34 dobj _ _ 37 that _ ADP IN _ 43 dobj _ _ 38 the _ DET DT _ 40 det _ _ 39 proper _ ADJ JJ _ 40 amod _ _ 40 amount _ NOUN NN _ 43 nsubj _ _ 41 of _ ADP IN _ 42 case _ _ 42 leverage _ NOUN NN _ 40 nmod _ _ 43 provides _ VERB VBZ _ 36 acl:relcl _ _ 44 both _ DET DT _ 47 dep _ _ 45 to _ ADP TO _ 47 case _ _ 46 equity _ NOUN NN _ 47 compound _ _ 47 markets _ NOUN NNS _ 43 nmod _ _ 48 and _ CONJ CC _ 47 cc _ _ 49 economic _ ADJ JJ _ 50 amod _ _ 50 efficiency _ NOUN NN _ 47 conj _ _ 51 in _ ADP IN _ 52 case _ _ 52 general _ NOUN NN _ 50 nmod _ _ 53 . _ PUNCT . _ 32 punct _ _ 1 Far _ ADV RB _ 2 advmod _ _ 2 better _ ADV RBR _ 0 root _ _ 3 for _ SCONJ IN _ 7 mark _ _ 4 policy _ NOUN NN _ 5 compound _ _ 5 makers _ NOUN NNS _ 7 nsubj _ _ 6 to _ PART TO _ 7 mark _ _ 7 concentrate _ VERB VB _ 2 dep _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 war _ NOUN NN _ 7 nmod _ _ 11 against _ ADP IN _ 12 case _ _ 12 drugs _ NOUN NNS _ 10 nmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 Panama _ PROPN NNP _ 10 conj _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 deficit _ NOUN NN _ 10 conj _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 all _ DET DT _ 22 dep _ _ 20 of _ ADP IN _ 21 case _ _ 21 them _ DET DT _ 19 nmod _ _ 22 parades _ NOUN NNS _ 10 conj _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 seem _ VERB VBP _ 22 acl:relcl _ _ 25 never _ ADV RB _ 27 neg _ _ 26 to _ PART TO _ 27 mark _ _ 27 end _ VERB VB _ 24 xcomp _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Jarrell _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 former _ ADJ JJ _ 6 amod _ _ 5 top _ ADJ JJ _ 6 amod _ _ 6 economist _ NOUN NN _ 2 appos _ _ 7 at _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 Securities _ PROPN NNP _ 12 compound _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Exchange _ PROPN NNP _ 9 conj _ _ 12 Commission _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 teaches _ VERB VBZ _ 0 root _ _ 15 at _ ADP IN _ 23 case _ _ 16 the _ DET DT _ 17 det _ _ 17 University _ PROPN NNP _ 23 nmod:poss _ _ 18 of _ ADP IN _ 19 case _ _ 19 Rochester _ PROPN NNP _ 17 nmod _ _ 20 's _ PART POS _ 17 case _ _ 21 Simon _ PROPN NNP _ 23 compound _ _ 22 Business _ PROPN NNP _ 23 compound _ _ 23 School _ PROPN NNP _ 14 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 Tokyo _ PROPN NNP _ 3 compound _ _ 2 share _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 4 nsubj _ _ 4 rebounded _ VERB VBD _ 0 root _ _ 5 Tuesday _ PROPN NNP _ 6 compound _ _ 6 morning _ NOUN NN _ 4 nmod:tmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 with _ SCONJ IN _ 16 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 Nikkei _ PROPN NNP _ 11 compound _ _ 11 index _ NOUN NN _ 16 nsubj _ _ 12 of _ ADP IN _ 15 case _ _ 13 225 _ NUM CD _ 15 nummod _ _ 14 selected _ VERB VBN _ 15 amod _ _ 15 stocks _ NOUN NNS _ 11 nmod _ _ 16 rising _ VERB VBG _ 4 advcl _ _ 17 618.69 _ NUM CD _ 18 nummod _ _ 18 points _ NOUN NNS _ 16 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 close _ VERB VB _ 16 advcl _ _ 21 the _ DET DT _ 23 det _ _ 22 morning _ NOUN NN _ 23 compound _ _ 23 session _ NOUN NN _ 20 nmod:tmod _ _ 24 at _ ADP IN _ 25 case _ _ 25 35087.38 _ NUM CD _ 20 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 index _ NOUN NN _ 3 nsubj _ _ 3 slid _ VERB VBD _ 0 root _ _ 4 647.33 _ NUM CD _ 5 nummod _ _ 5 points _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 or _ CONJ CC _ 5 cc _ _ 8 1.8 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 5 conj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 on _ ADP IN _ 12 case _ _ 12 Monday _ PROPN NNP _ 3 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 25 _ NUM CD _ 5 nummod _ _ 5 minutes _ NOUN NNS _ 13 nmod _ _ 6 of _ ADP IN _ 9 case _ _ 7 Tuesday _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 trading _ NOUN NN _ 5 nmod _ _ 10 the _ DET DT _ 12 det _ _ 11 Nikkei _ PROPN NNP _ 12 compound _ _ 12 index _ NOUN NN _ 13 nsubj _ _ 13 soared _ VERB VBD _ 0 root _ _ 14 664.83 _ NUM CD _ 15 nummod _ _ 15 points _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 to _ ADP TO _ 18 case _ _ 18 35133.83 _ NUM CD _ 13 nmod _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 10 _ NUM CD _ 9 nmod _ _ 3 a.m. _ ADV RB _ 2 advmod _ _ 4 Tokyo _ PROPN NNP _ 5 compound _ _ 5 time _ NOUN NN _ 2 dep _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 index _ NOUN NN _ 9 nsubj _ _ 9 was _ VERB VBD _ 0 root _ _ 10 up _ ADV RB _ 9 advmod _ _ 11 435.11 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 to _ ADP TO _ 15 case _ _ 15 34903.80 _ NUM CD _ 10 nmod _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 investors _ NOUN NNS _ 18 nsubj _ _ 18 hailed _ VERB VBD _ 9 advcl _ _ 19 New _ PROPN NNP _ 20 compound _ _ 20 York _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 overnight _ ADJ JJ _ 23 amod _ _ 23 rally _ NOUN NN _ 18 dobj _ _ 24 . _ PUNCT . _ 9 punct _ _ 1 Monday _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 slide _ NOUN NN _ 4 nsubj _ _ 4 came _ VERB VBD _ 0 root _ _ 5 in _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 relatively _ ADV RB _ 8 advmod _ _ 8 calm _ ADJ JJ _ 9 amod _ _ 9 session _ NOUN NN _ 4 nmod _ _ 10 that _ PRON WDT _ 13 nsubj _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 provide _ VERB VB _ 9 acl:relcl _ _ 14 much _ ADJ JJ _ 15 amod _ _ 15 direction _ NOUN NN _ 13 dobj _ _ 16 for _ ADP IN _ 18 case _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 markets _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Shares _ NOUN NNS _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 closed _ VERB VBN _ 0 root _ _ 4 sharply _ ADV RB _ 5 advmod _ _ 5 lower _ ADV RBR _ 3 advmod _ _ 6 across _ ADP IN _ 7 case _ _ 7 Europe _ PROPN NNP _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 particularly _ ADV RB _ 11 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Frankfurt _ PROPN NNP _ 3 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 although _ SCONJ IN _ 20 mark _ _ 14 London _ PROPN NNP _ 20 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 a _ DET DT _ 19 det _ _ 17 few _ ADJ JJ _ 19 amod _ _ 18 other _ ADJ JJ _ 19 amod _ _ 19 markets _ NOUN NNS _ 14 conj _ _ 20 recovered _ VERB VBD _ 3 advcl _ _ 21 some _ DET DT _ 22 det _ _ 22 ground _ NOUN NN _ 20 dobj _ _ 23 after _ SCONJ IN _ 25 mark _ _ 24 stocks _ NOUN NNS _ 25 nsubj _ _ 25 began _ VERB VBD _ 20 advcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 rebound _ VERB VB _ 25 xcomp _ _ 28 in _ ADP IN _ 30 case _ _ 29 New _ PROPN NNP _ 30 compound _ _ 30 York _ PROPN NNP _ 27 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 Other _ ADJ JJ _ 5 amod _ _ 2 Asian _ ADJ JJ _ 5 amod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Pacific _ ADJ JJ _ 2 conj _ _ 5 markets _ NOUN NNS _ 6 nsubj _ _ 6 had _ VERB VBD _ 0 root _ _ 7 sharper _ ADJ JJR _ 8 amod _ _ 8 losses _ NOUN NNS _ 6 dobj _ _ 9 than _ ADP IN _ 10 case _ _ 10 Tokyo _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 selling _ NOUN NN _ 15 compound _ _ 15 wave _ NOUN NN _ 16 nsubj _ _ 16 stopped _ VERB VBD _ 6 conj _ _ 17 short _ ADV RB _ 16 advmod _ _ 18 of _ SCONJ IN _ 19 mark _ _ 19 precipitating _ VERB VBG _ 17 advcl _ _ 20 another _ DET DT _ 22 det _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 crash _ NOUN NN _ 19 dobj _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 All _ DET DT _ 2 det _ _ 2 eyes _ NOUN NNS _ 5 nsubj _ _ 3 were _ VERB VBD _ 5 cop _ _ 4 on _ ADP IN _ 5 case _ _ 5 Tokyo _ PROPN NNP _ 0 root _ _ 6 at _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 opening _ NOUN NN _ 5 nmod _ _ 9 because _ SCONJ IN _ 15 mark _ _ 10 it _ PRON PRP _ 15 nsubj _ _ 11 was _ VERB VBD _ 15 cop _ _ 12 the _ DET DT _ 15 det _ _ 13 first _ ADJ JJ _ 15 amod _ _ 14 major _ ADJ JJ _ 15 amod _ _ 15 market _ NOUN NN _ 5 advcl _ _ 16 to _ PART TO _ 17 mark _ _ 17 trade _ VERB VB _ 15 acl _ _ 18 since _ ADP IN _ 22 case _ _ 19 Friday _ PROPN NNP _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 190.58-point _ ADJ JJ _ 22 amod _ _ 22 plunge _ NOUN NN _ 15 nmod _ _ 23 on _ ADP IN _ 25 case _ _ 24 Wall _ PROPN NNP _ 25 compound _ _ 25 Street _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 16 cc _ _ 2 rather _ ADV RB _ 4 mark _ _ 3 than _ SCONJ IN _ 2 mwe _ _ 4 set _ VERB VB _ 16 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 tone _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 other _ ADJ JJ _ 9 amod _ _ 9 markets _ NOUN NNS _ 4 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 Japan _ PROPN NNP _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 institutional _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 16 nsubj _ _ 16 chose _ VERB VBD _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 remain _ VERB VB _ 16 xcomp _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 sidelines _ NOUN NNS _ 18 nmod _ _ 22 . _ PUNCT . _ 16 punct _ _ 1 Still _ ADV RB _ 16 advmod _ _ 2 , _ PUNCT , _ 16 punct _ _ 3 despite _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 sudden _ ADJ JJ _ 6 amod _ _ 6 reappearance _ NOUN NN _ 16 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 stock-market _ ADJ JJ _ 9 amod _ _ 9 turbulence _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 managers _ NOUN NNS _ 16 nsubj _ _ 12 of _ ADP IN _ 15 case _ _ 13 Japanese _ ADJ JJ _ 15 amod _ _ 14 investment _ NOUN NN _ 15 compound _ _ 15 funds _ NOUN NNS _ 11 nmod _ _ 16 said _ VERB VBD _ 0 root _ _ 17 they _ PRON PRP _ 20 nsubj _ _ 18 were _ AUX VBD _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 planning _ VERB VBG _ 16 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 unload _ VERB VB _ 20 xcomp _ _ 23 U.S. _ PROPN NNP _ 26 compound _ _ 24 or _ CONJ CC _ 23 cc _ _ 25 European _ ADJ JJ _ 23 conj _ _ 26 equities _ NOUN NNS _ 22 dobj _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 trade _ VERB VB _ 20 ccomp _ _ 6 much _ ADJ JJ _ 5 advmod _ _ 7 today _ NOUN NN _ 5 nmod:tmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 as _ SCONJ IN _ 13 mark _ _ 10 our _ PRON PRP$ _ 11 nmod:poss _ _ 11 policy _ NOUN NN _ 13 nsubj _ _ 12 now _ ADV RB _ 11 advmod _ _ 13 is _ VERB VBZ _ 5 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 wait _ VERB VB _ 13 xcomp _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 see _ VERB VB _ 15 conj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 fund _ NOUN NN _ 23 compound _ _ 23 manager _ NOUN NN _ 20 nsubj _ _ 24 at _ ADP IN _ 28 case _ _ 25 Taisho _ PROPN NNP _ 28 compound _ _ 26 Life _ PROPN NNP _ 28 compound _ _ 27 Insurance _ PROPN NNP _ 28 compound _ _ 28 Co _ PROPN NNP _ 23 nmod _ _ 29 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 like _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 wait _ VERB VB _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 see _ VERB VB _ 6 conj _ _ 9 until _ SCONJ IN _ 11 mark _ _ 10 trading _ NOUN NN _ 11 nsubj _ _ 11 goes _ VERB VBZ _ 6 advcl _ _ 12 around _ ADV RB _ 11 advmod _ _ 13 through _ ADP IN _ 14 case _ _ 14 Europe _ PROPN NNP _ 11 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 New _ PROPN NNP _ 17 compound _ _ 17 York _ PROPN NNP _ 14 conj _ _ 18 . _ PUNCT . _ 4 punct _ _ 19 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 institutions _ NOUN NNS _ 3 nsubj _ _ 3 appeared _ VERB VBD _ 0 root _ _ 4 confident _ ADJ JJ _ 3 xcomp _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 Japanese _ ADJ JJ _ 7 amod _ _ 7 regulators _ NOUN NNS _ 9 nsubj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 step _ VERB VB _ 4 ccomp _ _ 10 in _ ADV RB _ 9 advmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 ensure _ VERB VB _ 9 xcomp _ _ 13 orderly _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 12 dobj _ _ 15 if _ SCONJ IN _ 16 mark _ _ 16 necessary _ ADJ JJ _ 9 advcl _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 and _ CONJ CC _ 3 cc _ _ 19 there _ PRON EX _ 20 expl _ _ 20 was _ VERB VBD _ 3 conj _ _ 21 considerable _ ADJ JJ _ 22 amod _ _ 22 speculation _ NOUN NN _ 20 nsubj _ _ 23 during _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 day _ NOUN NN _ 22 nmod _ _ 26 that _ SCONJ IN _ 31 mark _ _ 27 the _ DET DT _ 29 det _ _ 28 Finance _ PROPN NNP _ 29 compound _ _ 29 Ministry _ PROPN NNP _ 31 nsubj _ _ 30 was _ AUX VBD _ 31 aux _ _ 31 working _ VERB VBG _ 22 dep _ _ 32 behind _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 scenes _ NOUN NNS _ 31 nmod _ _ 35 to _ PART TO _ 36 mark _ _ 36 do _ VERB VB _ 31 xcomp _ _ 37 just _ ADV RB _ 38 advmod _ _ 38 that _ DET DT _ 36 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 absence _ NOUN NN _ 14 nmod _ _ 5 of _ ADP IN _ 7 case _ _ 6 panicky _ ADJ JJ _ 7 amod _ _ 7 trading _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 presence _ NOUN NN _ 14 nsubjpass _ _ 11 was _ AUX VBD _ 14 auxpass _ _ 12 never _ ADV RB _ 14 neg _ _ 13 overtly _ ADV RB _ 14 advmod _ _ 14 felt _ VERB VBN _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 close _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 Nikkei _ PROPN NNP _ 7 compound _ _ 7 average _ NOUN NN _ 11 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 225 _ NUM CD _ 10 nummod _ _ 10 stocks _ NOUN NNS _ 7 nmod _ _ 11 stood _ VERB VBD _ 0 root _ _ 12 at _ ADP IN _ 13 case _ _ 13 34468.69 _ NUM CD _ 11 nmod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 down _ ADV RB _ 11 advmod _ _ 16 647.33 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 or _ CONJ CC _ 17 cc _ _ 20 1.8 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 17 conj _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 broader _ ADJ JJR _ 6 amod _ _ 3 Tokyo _ PROPN NNP _ 6 compound _ _ 4 Stock _ PROPN NNP _ 6 compound _ _ 5 Price _ PROPN NNP _ 6 compound _ _ 6 Index _ PROPN NNP _ 7 nsubj _ _ 7 sank _ VERB VBD _ 0 root _ _ 8 45.66 _ NUM CD _ 7 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 or _ CONJ CC _ 8 cc _ _ 11 1.7 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 8 conj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 to _ ADP TO _ 15 case _ _ 15 2600.88 _ NUM CD _ 7 nmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 day _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decline _ NOUN NN _ 8 nsubj _ _ 5 was _ VERB VBD _ 8 cop _ _ 6 generally _ ADV RB _ 8 advmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 line _ NOUN NN _ 0 root _ _ 9 with _ ADP IN _ 13 case _ _ 10 analysts _ NOUN NNS _ 13 nmod:poss _ _ 11 ' _ PART POS _ 10 case _ _ 12 weekend _ NOUN NN _ 13 compound _ _ 13 predictions _ NOUN NNS _ 8 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Declining _ VERB VBG _ 2 amod _ _ 2 issues _ NOUN NNS _ 3 nsubj _ _ 3 swamped _ VERB VBD _ 0 root _ _ 4 advancers _ NOUN NNS _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 941-105 _ NUM CD _ 3 advmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 volume _ NOUN NN _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 thin _ ADJ JJ _ 0 root _ _ 5 at _ ADP IN _ 8 case _ _ 6 526.2 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 compared _ VERB VBN _ 13 case _ _ 11 with _ ADP IN _ 13 case _ _ 12 574.7 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 4 advcl _ _ 14 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 opened _ VERB VBD _ 0 root _ _ 4 sharply _ ADV RB _ 5 advmod _ _ 5 lower _ ADV RBR _ 3 advmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 with _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Nikkei _ PROPN NNP _ 10 compound _ _ 10 average _ NOUN NN _ 3 nmod _ _ 11 down _ ADV RB _ 10 advmod _ _ 12 nearly _ ADV RB _ 13 advmod _ _ 13 600 _ NUM CD _ 11 nmod:npmod _ _ 14 after _ ADP IN _ 16 case _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 minutes _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 midmorning _ NOUN NN _ 3 compound _ _ 3 rebound _ NOUN NN _ 4 nsubj _ _ 4 brought _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 4 dobj _ _ 6 back _ ADV RB _ 4 advmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 show _ VERB VB _ 4 advcl _ _ 9 a _ DET DT _ 10 det _ _ 10 gain _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 200 _ NUM CD _ 10 nmod _ _ 14 at _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 end _ NOUN NN _ 8 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 morning _ NOUN NN _ 20 compound _ _ 20 session _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 but _ CONJ CC _ 4 cc _ _ 23 the _ DET DT _ 24 det _ _ 24 rally _ NOUN NN _ 25 nsubj _ _ 25 failed _ VERB VBD _ 4 conj _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 afternoon _ NOUN NN _ 25 nmod _ _ 29 , _ PUNCT , _ 25 punct _ _ 30 and _ CONJ CC _ 25 cc _ _ 31 the _ DET DT _ 32 det _ _ 32 market _ NOUN NN _ 33 nsubj _ _ 33 closed _ VERB VBD _ 25 conj _ _ 34 near _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 36 det _ _ 36 day _ NOUN NN _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 low _ NOUN NN _ 33 nmod _ _ 39 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 smaller _ ADJ JJR _ 3 amod _ _ 3 stocks _ NOUN NNS _ 12 nsubj _ _ 4 in _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Tokyo _ PROPN NNP _ 7 compound _ _ 7 market _ NOUN NN _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 second _ ADJ JJ _ 10 amod _ _ 10 section _ NOUN NN _ 3 nmod _ _ 11 also _ ADV RB _ 12 advmod _ _ 12 posted _ VERB VBD _ 0 root _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 biggest _ ADJ JJS _ 15 amod _ _ 15 decline _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Tokyo _ PROPN NNP _ 5 compound _ _ 3 Stock _ PROPN NNP _ 5 compound _ _ 4 Exchange _ PROPN NNP _ 5 compound _ _ 5 index _ NOUN NN _ 10 nsubj _ _ 6 for _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 second _ ADJ JJ _ 9 amod _ _ 9 section _ NOUN NN _ 5 nmod _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 100.96 _ NUM CD _ 10 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 or _ CONJ CC _ 11 cc _ _ 14 2.7 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 conj _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 to _ ADP TO _ 18 case _ _ 18 3655.40 _ NUM CD _ 10 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 trying _ VERB VBG _ 2 acl _ _ 5 to _ PART TO _ 6 mark _ _ 6 outperform _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 indexes _ NOUN NNS _ 6 dobj _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 flocked _ VERB VBN _ 0 root _ _ 15 to _ ADP TO _ 18 case _ _ 16 these _ DET DT _ 18 det _ _ 17 small _ ADJ JJ _ 18 amod _ _ 18 issues _ NOUN NNS _ 14 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 recent _ ADJ JJ _ 21 amod _ _ 21 weeks _ NOUN NNS _ 14 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 Japanese _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 5 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 traders _ NOUN NNS _ 2 conj _ _ 5 expressed _ VERB VBD _ 0 root _ _ 6 relief _ NOUN NN _ 5 dobj _ _ 7 that _ SCONJ IN _ 13 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 Tokyo _ PROPN NNP _ 10 compound _ _ 10 market _ NOUN NN _ 13 nsubj _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 fall _ VERB VB _ 6 ccomp _ _ 14 more _ ADV RBR _ 15 advmod _ _ 15 sharply _ ADV RB _ 13 advmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 performance _ NOUN NN _ 5 nsubj _ _ 4 did _ AUX VBD _ 5 aux _ _ 5 bear _ VERB VB _ 0 root _ _ 6 some _ DET DT _ 7 det _ _ 7 resemblance _ NOUN NN _ 5 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 events _ NOUN NNS _ 7 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 years _ NOUN NNS _ 13 nmod:npmod _ _ 13 ago _ ADV RB _ 9 acl _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 during _ ADP IN _ 22 case _ _ 16 the _ DET DT _ 22 det _ _ 17 October _ PROPN NNP _ 22 compound _ _ 18 1987 _ NUM CD _ 22 nummod _ _ 19 global _ ADJ JJ _ 22 amod _ _ 20 stock _ NOUN NN _ 22 compound _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 crash _ NOUN NN _ 9 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Oct. _ PROPN NNP _ 19 nmod _ _ 3 16 _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 1987 _ NUM CD _ 2 nummod _ _ 6 -- _ PUNCT : _ 8 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Friday _ PROPN NNP _ 2 dep _ _ 9 before _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 Black _ PROPN NNP _ 13 compound _ _ 12 Monday _ PROPN NNP _ 13 compound _ _ 13 crash _ NOUN NN _ 8 nmod _ _ 14 -- _ PUNCT : _ 8 punct _ _ 15 the _ DET DT _ 18 det _ _ 16 New _ PROPN NNP _ 18 compound _ _ 17 York _ PROPN NNP _ 18 compound _ _ 18 market _ NOUN NN _ 19 nsubj _ _ 19 dropped _ VERB VBD _ 0 root _ _ 20 4.6 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 and _ CONJ CC _ 19 cc _ _ 24 Tokyo _ PROPN NNP _ 25 nsubj _ _ 25 followed _ VERB VBD _ 19 conj _ _ 26 on _ ADP IN _ 27 case _ _ 27 Monday _ PROPN NNP _ 25 nmod _ _ 28 with _ ADP IN _ 32 case _ _ 29 a _ DET DT _ 32 det _ _ 30 2.4 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 32 amod _ _ 32 drop _ NOUN NN _ 25 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 13 nmod:tmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 Wall _ PROPN NNP _ 5 compound _ _ 5 Street _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 plunge _ NOUN NN _ 13 nsubjpass _ _ 8 of _ ADP IN _ 10 case _ _ 9 6.9 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 followed _ VERB VBN _ 0 root _ _ 14 by _ ADP IN _ 19 case _ _ 15 yesterday _ NOUN NN _ 19 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 1.8 _ NUM CD _ 18 compound _ _ 18 % _ SYM NN _ 19 amod _ _ 19 loss _ NOUN NN _ 13 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 Tokyo _ PROPN NNP _ 19 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 9 advmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 Tokyo _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 biggest _ ADJ JJS _ 8 amod _ _ 8 fall _ NOUN NN _ 9 nsubj _ _ 9 came _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 day _ NOUN NN _ 9 nmod:tmod _ _ 12 after _ ADP IN _ 20 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 20 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 22.6 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 20 amod _ _ 18 Black _ PROPN NNP _ 20 compound _ _ 19 Monday _ PROPN NNP _ 20 compound _ _ 20 plunge _ NOUN NN _ 11 nmod _ _ 21 , _ PUNCT , _ 11 punct _ _ 22 when _ ADV WRB _ 26 advmod _ _ 23 the _ DET DT _ 25 det _ _ 24 Nikkei _ PROPN NNP _ 25 compound _ _ 25 average _ NOUN NN _ 26 nsubj _ _ 26 fell _ VERB VBD _ 11 acl:relcl _ _ 27 14.9 _ NUM CD _ 28 nummod _ _ 28 % _ SYM NN _ 26 dobj _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 Thus _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 participants _ NOUN NNS _ 7 nsubj _ _ 5 yesterday _ NOUN NN _ 7 nmod:tmod _ _ 6 were _ AUX VBD _ 7 aux _ _ 7 looking _ VERB VBG _ 0 root _ _ 8 ahead _ ADV RB _ 7 advmod _ _ 9 nervously _ ADV RB _ 7 advmod _ _ 10 to _ ADP TO _ 14 case _ _ 11 Wall _ PROPN NNP _ 12 compound _ _ 12 Street _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 opening _ NOUN NN _ 7 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 in _ ADP IN _ 4 case _ _ 3 New _ PROPN NNP _ 4 compound _ _ 4 York _ PROPN NNP _ 12 nmod _ _ 5 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 11 det _ _ 8 Dow _ PROPN NNP _ 11 compound _ _ 9 Jones _ PROPN NNP _ 11 compound _ _ 10 Industrial _ PROPN NNP _ 11 compound _ _ 11 Average _ PROPN NNP _ 12 nsubj _ _ 12 surged _ VERB VBD _ 0 root _ _ 13 88.12 _ NUM CD _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 close _ VERB VB _ 12 advcl _ _ 16 at _ ADP IN _ 17 case _ _ 17 2657.38 _ NUM CD _ 15 nmod _ _ 18 on _ ADP IN _ 20 case _ _ 19 heavy _ ADJ JJ _ 20 amod _ _ 20 volume _ NOUN NN _ 12 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 416,290,000 _ NUM CD _ 23 nummod _ _ 23 shares _ NOUN NNS _ 20 nmod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 although _ SCONJ IN _ 29 mark _ _ 26 declining _ VERB VBG _ 27 amod _ _ 27 issues _ NOUN NNS _ 29 nsubj _ _ 28 still _ ADV RB _ 29 advmod _ _ 29 outnumbered _ VERB VBD _ 12 advcl _ _ 30 advancing _ VERB VBG _ 31 amod _ _ 31 ones _ NOUN NNS _ 29 dobj _ _ 32 on _ ADP IN _ 35 case _ _ 33 the _ DET DT _ 35 det _ _ 34 broad _ ADJ JJ _ 35 amod _ _ 35 market _ NOUN NN _ 29 nmod _ _ 36 . _ PUNCT . _ 12 punct _ _ 1 Nobuto _ PROPN NNP _ 2 compound _ _ 2 Yasuda _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 director _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 9 case _ _ 7 Yamaichi _ PROPN NNP _ 9 compound _ _ 8 Investment _ PROPN NNP _ 9 compound _ _ 9 Trust _ PROPN NNP _ 5 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Management _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 9 conj _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 called _ VERB VBD _ 0 root _ _ 15 yesterday _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 session _ NOUN NN _ 21 nsubj _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 good _ ADJ JJ _ 21 amod _ _ 21 scenario _ NOUN NN _ 14 xcomp _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 for _ ADP IN _ 24 case _ _ 24 Japan _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Now _ ADV RB _ 5 advmod _ _ 3 we _ PRON PRP _ 5 nsubj _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 looking _ VERB VBG _ 16 ccomp _ _ 6 for _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 time _ NOUN NN _ 5 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 place _ VERB VB _ 8 acl _ _ 11 buy _ NOUN NN _ 12 compound _ _ 12 orders _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 For _ ADP IN _ 5 case _ _ 3 us _ PRON PRP _ 5 dep _ _ 4 institutional _ ADJ JJ _ 5 amod _ _ 5 investors _ NOUN NNS _ 12 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 chance _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 10 case _ _ 10 buying _ VERB VBG _ 8 nmod _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 come _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 1 Isao _ PROPN NNP _ 2 compound _ _ 2 Ushikubo _ PROPN NNP _ 20 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 general _ ADJ JJ _ 5 amod _ _ 5 manager _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 investment _ NOUN NN _ 10 compound _ _ 9 research _ NOUN NN _ 10 compound _ _ 10 department _ NOUN NN _ 5 nmod _ _ 11 at _ ADP IN _ 13 case _ _ 12 Toyo _ PROPN NNP _ 13 compound _ _ 13 Trust _ PROPN NNP _ 10 nmod _ _ 14 & _ CONJ CC _ 13 cc _ _ 15 Banking _ PROPN NNP _ 16 compound _ _ 16 Co. _ PROPN NNP _ 13 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 also _ ADV RB _ 20 advmod _ _ 19 was _ VERB VBD _ 20 cop _ _ 20 optimistic _ ADJ JJ _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 described _ VERB VBD _ 0 root _ _ 3 Friday _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 plunge _ NOUN NN _ 2 dobj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 5 nmod _ _ 9 as _ ADP IN _ 14 case _ _ 10 a _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 fleeting _ ADJ JJ _ 14 amod _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 event _ NOUN NN _ 2 nmod _ _ 15 resulting _ VERB VBG _ 14 acl _ _ 16 in _ ADP IN _ 17 case _ _ 17 part _ NOUN NN _ 15 nmod _ _ 18 from _ ADP IN _ 20 case _ _ 19 excessive _ ADJ JJ _ 20 amod _ _ 20 merger _ NOUN NN _ 15 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 acquisition _ NOUN NN _ 23 compound _ _ 23 activity _ NOUN NN _ 20 conj _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 Unless _ SCONJ IN _ 4 mark _ _ 3 there _ PRON EX _ 4 expl _ _ 4 is _ VERB VBZ _ 9 advcl _ _ 5 a _ DET DT _ 6 det _ _ 6 panic _ NOUN NN _ 4 nsubj _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 this _ PRON DT _ 9 nsubj _ _ 9 is _ VERB VBZ _ 26 ccomp _ _ 10 the _ DET DT _ 12 det _ _ 11 best _ ADJ JJS _ 12 amod _ _ 12 time _ NOUN NN _ 9 dep _ _ 13 to _ PART TO _ 14 mark _ _ 14 buy _ VERB VB _ 12 acl _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 as _ SCONJ IN _ 19 dep _ _ 17 was _ VERB VBD _ 19 dep _ _ 18 the _ DET DT _ 19 det _ _ 19 case _ NOUN NN _ 9 advcl _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 years _ NOUN NNS _ 22 nmod:npmod _ _ 22 ago _ ADV RB _ 19 advmod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 '' _ PUNCT '' _ 26 punct _ _ 25 he _ PRON PRP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 Those _ DET DT _ 3 det _ _ 3 shares _ NOUN NNS _ 12 nsubjpass _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 posted _ VERB VBN _ 3 acl:relcl _ _ 7 gains _ NOUN NNS _ 6 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 M&A _ PROPN NNP _ 10 compound _ _ 10 speculation _ NOUN NN _ 6 nmod _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 dashed _ VERB VBN _ 0 root _ _ 13 with _ ADP IN _ 15 case _ _ 14 cold _ ADJ JJ _ 15 amod _ _ 15 water _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 but _ CONJ CC _ 12 cc _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 far _ ADV RB _ 27 advmod _ _ 20 as _ SCONJ IN _ 24 mark _ _ 21 major _ ADJ JJ _ 22 amod _ _ 22 stocks _ NOUN NNS _ 24 nsubjpass _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 concerned _ VERB VBN _ 19 advcl _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 there _ PRON EX _ 27 expl _ _ 27 is _ VERB VBZ _ 12 conj _ _ 28 n't _ PART RB _ 27 neg _ _ 29 much _ ADJ JJ _ 30 amod _ _ 30 impact _ NOUN NN _ 27 nsubj _ _ 31 . _ PUNCT . _ 12 punct _ _ 32 '' _ PUNCT '' _ 12 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 similarly _ ADV RB _ 6 advmod _ _ 6 sanguine _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 16 ccomp _ _ 4 no _ DET DT _ 5 neg _ _ 5 plans _ NOUN NNS _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 adjust _ VERB VB _ 5 acl _ _ 8 our _ PRON PRP$ _ 10 nmod:poss _ _ 9 asset _ NOUN NN _ 10 compound _ _ 10 allocation _ NOUN NN _ 7 dobj _ _ 11 in _ ADP IN _ 13 case _ _ 12 foreign _ ADJ JJ _ 13 amod _ _ 13 equities _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Masato _ PROPN NNP _ 18 compound _ _ 18 Murakami _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 chief _ ADJ JJ _ 22 amod _ _ 21 portfolio _ NOUN NN _ 22 compound _ _ 22 manager _ NOUN NN _ 18 appos _ _ 23 in _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 pension _ NOUN NN _ 28 compound _ _ 26 fund _ NOUN NN _ 28 compound _ _ 27 management _ NOUN NN _ 28 compound _ _ 28 department _ NOUN NN _ 22 nmod _ _ 29 at _ ADP IN _ 31 case _ _ 30 Yasuda _ PROPN NNP _ 31 compound _ _ 31 Trust _ PROPN NNP _ 28 nmod _ _ 32 & _ CONJ CC _ 31 cc _ _ 33 Banking _ PROPN NNP _ 34 compound _ _ 34 Co _ PROPN NNP _ 31 conj _ _ 35 . _ PUNCT . _ 16 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Friday _ PROPN NNP _ 7 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Wall _ PROPN NNP _ 7 compound _ _ 6 Street _ PROPN NNP _ 7 compound _ _ 7 decline _ NOUN NN _ 13 nsubj _ _ 8 was _ VERB VBD _ 13 cop _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 well _ ADV RB _ 13 advmod _ _ 11 within _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 range _ NOUN NN _ 2 ccomp _ _ 14 of _ ADP IN _ 15 case _ _ 15 volatility _ NOUN NN _ 13 nmod _ _ 16 '' _ PUNCT '' _ 13 punct _ _ 17 that _ ADP IN _ 20 nmod _ _ 18 Yasuda _ PROPN NNP _ 19 compound _ _ 19 Trust _ PROPN NNP _ 20 nsubj _ _ 20 plans _ VERB VBZ _ 13 acl:relcl _ _ 21 for _ ADP IN _ 17 case _ _ 22 when _ ADV WRB _ 24 advmod _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 charts _ VERB VBZ _ 20 advcl _ _ 25 its _ PRON PRP$ _ 28 nmod:poss _ _ 26 overseas _ ADJ JJ _ 28 amod _ _ 27 investment _ NOUN NN _ 28 compound _ _ 28 strategy _ NOUN NN _ 24 dobj _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 Asian _ ADJ JJ _ 11 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Pacific _ ADJ JJ _ 6 amod _ _ 6 markets _ NOUN NNS _ 3 conj _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 Malaysia _ PROPN NNP _ 11 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Singapore _ PROPN NNP _ 8 conj _ _ 11 had _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 14 det _ _ 13 biggest _ ADJ JJS _ 14 amod _ _ 14 losses _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 with _ SCONJ IN _ 24 mark _ _ 17 the _ DET DT _ 21 det _ _ 18 Kuala _ PROPN NNP _ 21 compound _ _ 19 Lumpur _ PROPN NNP _ 21 compound _ _ 20 composite _ ADJ JJ _ 21 amod _ _ 21 index _ NOUN NN _ 24 nsubj _ _ 22 in _ ADP IN _ 23 case _ _ 23 Malaysia _ PROPN NNP _ 21 nmod _ _ 24 falling _ VERB VBG _ 11 advcl _ _ 25 11.5 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 24 dobj _ _ 27 and _ CONJ CC _ 24 cc _ _ 28 Singapore _ PROPN NNP _ 33 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Straits _ PROPN NNP _ 33 compound _ _ 31 Times _ PROPN NNP _ 33 compound _ _ 32 Industrial _ PROPN NNP _ 33 compound _ _ 33 Index _ PROPN NNP _ 24 conj _ _ 34 down _ ADV RB _ 33 advmod _ _ 35 10 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 34 nmod:npmod _ _ 37 . _ PUNCT . _ 11 punct _ _ 1 Major _ ADJ JJ _ 2 amod _ _ 2 indexes _ NOUN NNS _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 more _ ADJ JJR _ 6 advmod _ _ 5 than _ ADP IN _ 4 mwe _ _ 6 8 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 3 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Australia _ PROPN NNP _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 New _ PROPN NNP _ 12 compound _ _ 12 Zealand _ PROPN NNP _ 9 conj _ _ 13 and _ CONJ CC _ 7 cc _ _ 14 6.5 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 7 conj _ _ 16 in _ ADP IN _ 18 case _ _ 17 Hong _ PROPN NNP _ 18 compound _ _ 18 Kong _ PROPN NNP _ 15 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Bangkok _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Manila _ PROPN NNP _ 1 conj _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 Seoul _ PROPN NNP _ 1 conj _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 Taipei _ PROPN NNP _ 1 conj _ _ 8 and _ CONJ CC _ 1 cc _ _ 9 Jakarta _ PROPN NNP _ 1 conj _ _ 10 escaped _ VERB VBD _ 0 root _ _ 11 with _ ADP IN _ 14 case _ _ 12 slightly _ ADV RB _ 13 advmod _ _ 13 smaller _ ADJ JJR _ 14 amod _ _ 14 losses _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Brokers _ NOUN NNS _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 fund _ NOUN NN _ 4 compound _ _ 4 managers _ NOUN NNS _ 1 conj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 region _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 markets _ NOUN NNS _ 11 nsubj _ _ 10 were _ AUX VBD _ 11 aux _ _ 11 reacting _ VERB VBG _ 5 ccomp _ _ 12 to _ ADP TO _ 17 case _ _ 13 Friday _ PROPN NNP _ 17 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 Wall _ PROPN NNP _ 17 compound _ _ 16 Street _ PROPN NNP _ 17 compound _ _ 17 plunge _ NOUN NN _ 11 nmod _ _ 18 even _ ADV RB _ 23 advmod _ _ 19 though _ SCONJ IN _ 23 mark _ _ 20 that _ DET DT _ 21 det _ _ 21 decline _ NOUN NN _ 23 nsubj _ _ 22 was _ VERB VBD _ 23 cop _ _ 23 due _ ADJ JJ _ 11 advcl _ _ 24 to _ ADP TO _ 26 case _ _ 25 local _ ADJ JJ _ 26 amod _ _ 26 factors _ NOUN NNS _ 23 nmod _ _ 27 such _ ADJ JJ _ 31 case _ _ 28 as _ ADP IN _ 27 mwe _ _ 29 failed _ VERB VBN _ 31 amod _ _ 30 corporate _ ADJ JJ _ 31 amod _ _ 31 buy-outs _ NOUN NNS _ 26 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 a _ DET DT _ 36 det _ _ 34 deteriorating _ VERB VBG _ 36 amod _ _ 35 junk-bond _ NOUN NN _ 36 compound _ _ 36 market _ NOUN NN _ 31 conj _ _ 37 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 pure _ ADJ JJ _ 5 amod _ _ 5 psychology _ NOUN NN _ 8 ccomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 William _ PROPN NNP _ 11 compound _ _ 10 Au _ PROPN NNP _ 11 compound _ _ 11 Yeung _ PROPN NNP _ 8 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 an _ DET DT _ 15 det _ _ 14 account _ NOUN NN _ 15 compound _ _ 15 executive _ NOUN NN _ 11 appos _ _ 16 for _ ADP IN _ 23 case _ _ 17 Drexel _ PROPN NNP _ 23 compound _ _ 18 Burnham _ PROPN NNP _ 23 compound _ _ 19 Lambert _ PROPN NNP _ 23 compound _ _ 20 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 21 HK _ PROPN NNP _ 23 appos _ _ 22 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 23 Ltd. _ PROPN NNP _ 15 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 Hong _ PROPN NNP _ 26 compound _ _ 26 Kong _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Markets _ NOUN NNS _ 9 nsubjpass _ _ 3 in _ ADP IN _ 5 case _ _ 4 this _ DET DT _ 5 det _ _ 5 region _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 9 auxpass _ _ 7 n't _ PART RB _ 9 neg _ _ 8 so _ ADV RB _ 9 advmod _ _ 9 geared _ VERB VBN _ 0 root _ _ 10 to _ ADP TO _ 12 case _ _ 11 leveraged _ VERB VBN _ 12 amod _ _ 12 buy-outs _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 their _ PRON PRP$ _ 16 nmod:poss _ _ 16 economies _ NOUN NNS _ 21 nsubj _ _ 17 generally _ ADV RB _ 21 advmod _ _ 18 are _ VERB VBP _ 21 cop _ _ 19 in _ ADP IN _ 21 case _ _ 20 good _ ADJ JJ _ 21 amod _ _ 21 shape _ NOUN NN _ 9 conj _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 but _ CONJ CC _ 9 cc _ _ 24 there _ PRON EX _ 25 expl _ _ 25 's _ VERB VBZ _ 9 conj _ _ 26 no _ DET DT _ 27 neg _ _ 27 doubt _ NOUN NN _ 25 nsubj _ _ 28 that _ DET DT _ 32 mark _ _ 29 Asia _ PROPN NNP _ 32 nsubj _ _ 30 is _ AUX VBZ _ 32 aux _ _ 31 still _ ADV RB _ 32 advmod _ _ 32 following _ VERB VBG _ 27 ccomp _ _ 33 America _ PROPN NNP _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 lead _ NOUN NN _ 32 dobj _ _ 36 . _ PUNCT . _ 9 punct _ _ 37 '' _ PUNCT '' _ 9 punct _ _ 1 Several _ ADJ JJ _ 2 amod _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Malaysia _ PROPN NNP _ 7 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 Singapore _ PROPN NNP _ 4 conj _ _ 7 had _ VERB VBD _ 3 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 biggest _ ADJ JJS _ 10 amod _ _ 10 losses _ NOUN NNS _ 7 dobj _ _ 11 because _ SCONJ IN _ 15 mark _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 are _ VERB VBP _ 15 cop _ _ 14 relatively _ ADV RB _ 15 advmod _ _ 15 open _ ADJ JJ _ 7 advcl _ _ 16 to _ ADP TO _ 19 case _ _ 17 rapid _ ADJ JJ _ 19 amod _ _ 18 cash _ NOUN NN _ 19 compound _ _ 19 flows _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Hong _ PROPN NNP _ 2 compound _ _ 2 Kong _ PROPN NNP _ 10 nsubj _ _ 3 is _ VERB VBZ _ 10 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 region _ NOUN NN _ 10 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 next _ ADJ JJ _ 9 amod _ _ 8 most _ ADV RBS _ 9 advmod _ _ 9 open _ ADJ JJ _ 10 amod _ _ 10 market _ NOUN NN _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 but _ CONJ CC _ 10 cc _ _ 13 many _ ADJ JJ _ 15 amod _ _ 14 foreign _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 18 nsubj _ _ 16 have _ AUX VBP _ 18 aux _ _ 17 been _ AUX VBN _ 18 aux _ _ 18 staying _ VERB VBG _ 10 conj _ _ 19 away _ ADP RP _ 18 compound:prt _ _ 20 from _ ADP IN _ 21 case _ _ 21 it _ PRON PRP _ 18 nmod _ _ 22 since _ SCONJ IN _ 24 mark _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 plunged _ VERB VBD _ 18 advcl _ _ 25 in _ ADP IN _ 26 case _ _ 26 June _ PROPN NNP _ 24 nmod _ _ 27 amid _ ADP IN _ 29 case _ _ 28 political _ ADJ JJ _ 29 amod _ _ 29 turmoil _ NOUN NN _ 24 nmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 China _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 Singapore _ PROPN NNP _ 3 nsubj _ _ 3 took _ VERB VBD _ 24 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 hit _ NOUN NN _ 3 dobj _ _ 6 because _ ADV RB _ 15 advmod _ _ 7 when _ ADV WRB _ 9 advmod _ _ 8 people _ NOUN NNS _ 9 nsubj _ _ 9 want _ VERB VBP _ 15 advcl _ _ 10 to _ PART TO _ 11 mark _ _ 11 get _ VERB VB _ 9 xcomp _ _ 12 out _ ADP RP _ 11 compound:prt _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 tend _ VERB VBP _ 3 dep _ _ 16 to _ PART TO _ 17 mark _ _ 17 go _ VERB VB _ 15 xcomp _ _ 18 where _ ADV WRB _ 21 advmod _ _ 19 the _ DET DT _ 20 det _ _ 20 liquidity _ NOUN NN _ 21 nsubj _ _ 21 is _ VERB VBZ _ 17 advcl _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 '' _ PUNCT '' _ 24 punct _ _ 24 said _ VERB VBD _ 0 root _ _ 25 Elizabeth _ PROPN NNP _ 26 compound _ _ 26 Hambrecht _ PROPN NNP _ 24 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 regional _ ADJ JJ _ 30 amod _ _ 30 analyst _ NOUN NN _ 26 appos _ _ 31 with _ ADP IN _ 38 case _ _ 32 Baring _ PROPN NNP _ 38 compound _ _ 33 Securities _ PROPN NNP _ 38 compound _ _ 34 -LRB- _ PUNCT -LRB- _ 36 punct _ _ 35 Hong _ PROPN NNP _ 36 compound _ _ 36 Kong _ PROPN NNP _ 38 appos _ _ 37 -RRB- _ PUNCT -RRB- _ 36 punct _ _ 38 Ltd _ PROPN NNP _ 30 nmod _ _ 39 . _ PUNCT . _ 24 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 pointed _ VERB VBD _ 0 root _ _ 3 out _ ADP RP _ 2 compound:prt _ _ 4 that _ SCONJ IN _ 17 mark _ _ 5 even _ ADV RB _ 11 advmod _ _ 6 after _ ADP IN _ 11 case _ _ 7 Monday _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 10 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 11 amod _ _ 11 decline _ NOUN NN _ 17 nmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 the _ DET DT _ 16 det _ _ 14 Straits _ PROPN NNP _ 16 compound _ _ 15 Times _ PROPN NNP _ 16 compound _ _ 16 index _ NOUN NN _ 17 nsubj _ _ 17 is _ VERB VBZ _ 2 ccomp _ _ 18 up _ ADV RB _ 17 advmod _ _ 19 24 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 nmod:npmod _ _ 21 this _ DET DT _ 22 det _ _ 22 year _ NOUN NN _ 17 nmod:tmod _ _ 23 , _ PUNCT , _ 2 punct _ _ 24 so _ SCONJ IN _ 30 mark _ _ 25 investors _ NOUN NNS _ 30 nsubj _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 bailed _ VERB VBD _ 25 acl:relcl _ _ 28 out _ ADP RP _ 27 compound:prt _ _ 29 generally _ ADV RB _ 30 advmod _ _ 30 did _ VERB VBD _ 2 advcl _ _ 31 so _ ADV RB _ 30 advmod _ _ 32 profitably _ ADV RB _ 30 advmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Similarly _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 Kuala _ PROPN NNP _ 4 compound _ _ 4 Lumpur _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 composite _ ADJ JJ _ 7 amod _ _ 7 index _ NOUN NN _ 9 nsubj _ _ 8 yesterday _ NOUN NN _ 9 nmod:tmod _ _ 9 ended _ VERB VBD _ 0 root _ _ 10 27.5 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 above _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 1988 _ NUM CD _ 15 nummod _ _ 15 close _ NOUN NN _ 11 nmod _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 Hong _ PROPN NNP _ 3 compound _ _ 3 Kong _ PROPN NNP _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 Hang _ PROPN NNP _ 8 compound _ _ 7 Seng _ PROPN NNP _ 8 compound _ _ 8 Index _ PROPN NNP _ 9 nsubj _ _ 9 fell _ VERB VBD _ 0 root _ _ 10 180.60 _ NUM CD _ 9 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 finish _ VERB VB _ 9 advcl _ _ 13 at _ ADP IN _ 14 case _ _ 14 2601.70 _ NUM CD _ 12 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Trading _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 heavy _ ADJ JJ _ 0 root _ _ 4 at _ ADP IN _ 8 case _ _ 5 about _ ADV RB _ 7 advmod _ _ 6 one _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 compared _ VERB VBN _ 13 case _ _ 11 with _ ADP IN _ 13 case _ _ 12 473.9 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 8 nmod _ _ 14 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 session _ NOUN NN _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 orderly _ ADJ JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 in _ ADP IN _ 8 case _ _ 8 contrast _ NOUN NN _ 5 nmod _ _ 9 to _ ADP TO _ 14 case _ _ 10 the _ DET DT _ 11 det _ _ 11 market _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 four-day _ ADJ JJ _ 14 amod _ _ 14 closure _ NOUN NN _ 8 nmod _ _ 15 after _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 1987 _ NUM CD _ 18 nummod _ _ 18 crash _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Richard _ PROPN NNP _ 2 compound _ _ 2 Chenevix-Trench _ PROPN NNP _ 15 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 director _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 13 case _ _ 7 Hong _ PROPN NNP _ 8 amod _ _ 8 Kong-based _ ADJ JJ _ 13 amod _ _ 9 Baring _ PROPN NNP _ 13 compound _ _ 10 International _ PROPN NNP _ 13 compound _ _ 11 Fund _ PROPN NNP _ 13 compound _ _ 12 Managers _ PROPN NNP _ 13 compound _ _ 13 Ltd. _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 the _ DET DT _ 17 det _ _ 17 market _ NOUN NN _ 21 nsubj _ _ 18 probably _ ADV RB _ 21 advmod _ _ 19 has _ AUX VBZ _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 hit _ VERB VBD _ 15 ccomp _ _ 22 bottom _ NOUN NN _ 21 dobj _ _ 23 yet _ ADV RB _ 21 advmod _ _ 24 but _ CONJ CC _ 21 cc _ _ 25 is _ VERB VBZ _ 26 cop _ _ 26 close _ ADJ JJ _ 21 conj _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 32 punct _ _ 2 If _ SCONJ IN _ 7 mark _ _ 3 New _ PROPN NNP _ 4 compound _ _ 4 York _ PROPN NNP _ 7 nsubj _ _ 5 does _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 collapse _ VERB VB _ 10 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 I _ PRON PRP _ 10 nsubj _ _ 10 see _ VERB VBP _ 32 ccomp _ _ 11 maybe _ ADV RB _ 13 advmod _ _ 12 another _ DET DT _ 13 advmod _ _ 13 5 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 10 dobj _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 downside _ NOUN NN _ 10 nmod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 not _ PART RB _ 20 neg _ _ 20 counting _ VERB VBG _ 10 dep _ _ 21 the _ DET DT _ 22 det _ _ 22 risk _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 bad _ ADJ JJ _ 25 amod _ _ 25 news _ NOUN NN _ 22 nmod _ _ 26 out _ ADP IN _ 28 case _ _ 27 of _ ADP IN _ 28 case _ _ 28 China _ PROPN NNP _ 25 nmod _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 '' _ PUNCT '' _ 32 punct _ _ 31 he _ PRON PRP _ 32 nsubj _ _ 32 said _ VERB VBD _ 0 root _ _ 33 . _ PUNCT . _ 32 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Australia _ PROPN NNP _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 Sydney _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 All _ DET DT _ 8 det _ _ 7 Ordinaries _ PROPN NNP _ 8 compound _ _ 8 index _ NOUN NN _ 9 nsubj _ _ 9 closed _ VERB VBD _ 0 root _ _ 10 at _ ADP IN _ 11 case _ _ 11 1601.5 _ NUM CD _ 9 nmod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 down _ ADV RB _ 9 advmod _ _ 14 8.1 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 nmod:npmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 biggest _ ADJ JJS _ 19 amod _ _ 19 drop _ NOUN NN _ 9 nmod:npmod _ _ 20 since _ ADP IN _ 21 case _ _ 21 October _ PROPN NNP _ 19 nmod _ _ 22 1987 _ NUM CD _ 21 nummod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 volume _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 only _ ADV RB _ 3 advmod _ _ 5 to _ ADP TO _ 8 case _ _ 6 162 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 3 nmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 143 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 3 nmod _ _ 12 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Nestor _ PROPN NNP _ 2 compound _ _ 2 Hinzack _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 an _ DET DT _ 5 det _ _ 5 analyst _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 14 case _ _ 7 brokerage _ NOUN NN _ 14 compound _ _ 8 firm _ NOUN NN _ 14 compound _ _ 9 Burdett _ PROPN NNP _ 14 compound _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Buckeridge _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Young _ PROPN NNP _ 9 conj _ _ 14 Ltd. _ PROPN NNP _ 5 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 described _ VERB VBD _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 performance _ NOUN NN _ 16 dobj _ _ 21 as _ ADP IN _ 23 case _ _ 22 `` _ PUNCT `` _ 23 punct _ _ 23 sheep-like _ ADJ JJ _ 16 advcl _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 as _ SCONJ IN _ 27 mark _ _ 26 investors _ NOUN NNS _ 27 nsubj _ _ 27 fled _ VERB VBD _ 16 advcl _ _ 28 to _ ADP TO _ 31 case _ _ 29 bluechip _ ADJ JJ _ 31 amod _ _ 30 Australian _ ADJ JJ _ 31 amod _ _ 31 stocks _ NOUN NNS _ 27 nmod _ _ 32 and _ CONJ CC _ 27 cc _ _ 33 shunned _ VERB VBD _ 27 conj _ _ 34 entrepreneurial _ ADJ JJ _ 35 amod _ _ 35 companies _ NOUN NNS _ 33 dobj _ _ 36 they _ PRON PRP _ 37 nsubj _ _ 37 perceived _ VERB VBD _ 35 acl:relcl _ _ 38 as _ SCONJ IN _ 39 mark _ _ 39 having _ VERB VBG _ 37 advcl _ _ 40 any _ DET DT _ 42 det _ _ 41 takeover _ NOUN NN _ 42 compound _ _ 42 premium _ NOUN NN _ 43 nsubj _ _ 43 built _ VERB VBN _ 39 ccomp _ _ 44 into _ ADP IN _ 46 case _ _ 45 the _ DET DT _ 46 det _ _ 46 price _ NOUN NN _ 43 nmod _ _ 47 . _ PUNCT . _ 16 punct _ _ 1 London _ PROPN NNP _ 7 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Financial _ PROPN NNP _ 7 compound _ _ 4 Times-Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 100-share _ ADJ JJ _ 7 amod _ _ 7 index _ NOUN NN _ 16 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 14 det _ _ 10 most _ ADV RBS _ 11 advmod _ _ 11 closely _ ADV RB _ 12 advmod _ _ 12 watched _ VERB VBN _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 barometer _ NOUN NN _ 7 appos _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 ended _ VERB VBD _ 0 root _ _ 17 at _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 intraday _ ADJ JJ _ 20 amod _ _ 20 high _ NOUN NN _ 16 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 2163.4 _ NUM CD _ 20 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 down _ ADV RB _ 16 advmod _ _ 25 70.5 _ NUM CD _ 24 nmod:npmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 or _ CONJ CC _ 25 cc _ _ 28 3.2 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 25 conj _ _ 30 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 low _ ADJ JJ _ 12 nmod _ _ 4 , _ PUNCT , _ 12 punct _ _ 5 shortly _ ADV RB _ 9 advmod _ _ 6 before _ SCONJ IN _ 9 mark _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 9 nsubj _ _ 9 opened _ VERB VBD _ 12 advcl _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 was _ VERB VBD _ 0 root _ _ 13 off _ ADJ JJ _ 12 advmod _ _ 14 more _ ADV RBR _ 16 advmod _ _ 15 than _ ADP IN _ 14 mwe _ _ 16 130 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 13 dep _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Financial _ PROPN NNP _ 5 compound _ _ 3 Times _ PROPN NNP _ 5 compound _ _ 4 30-share _ ADJ JJ _ 5 amod _ _ 5 index _ NOUN NN _ 6 nsubj _ _ 6 closed _ VERB VBD _ 0 root _ _ 7 79.3 _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 9 nmod:npmod _ _ 9 lower _ ADV RBR _ 6 advmod _ _ 10 at _ ADP IN _ 11 case _ _ 11 1738.7 _ NUM CD _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Volume _ NOUN NN _ 4 nsubj _ _ 2 more _ ADV RBR _ 4 advmod _ _ 3 than _ ADP IN _ 2 case _ _ 4 doubled _ VERB VBD _ 0 root _ _ 5 to _ ADP TO _ 8 case _ _ 6 959.3 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 shares _ NOUN NNS _ 4 nmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 457.7 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 4 nmod _ _ 12 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Prices _ NOUN NNS _ 7 nsubj _ _ 2 on _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 Frankfurt _ PROPN NNP _ 6 compound _ _ 5 Stock _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 1 nmod _ _ 7 tumbled _ VERB VBD _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 heavy _ ADJ JJ _ 10 amod _ _ 10 trading _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 decline _ NOUN NN _ 24 nsubj _ _ 3 in _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 German _ ADJ JJ _ 7 amod _ _ 6 Stock _ PROPN NNP _ 7 compound _ _ 7 Index _ PROPN NNP _ 2 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 203.56 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 2 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 or _ CONJ CC _ 10 cc _ _ 13 12.8 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 to _ ADP TO _ 17 case _ _ 17 1385.72 _ NUM CD _ 2 nmod _ _ 18 was _ VERB VBD _ 24 cop _ _ 19 the _ DET DT _ 21 det _ _ 20 Frankfurt _ PROPN NNP _ 21 compound _ _ 21 market _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 steepest _ ADJ JJS _ 24 amod _ _ 24 fall _ NOUN NN _ 0 root _ _ 25 ever _ ADV RB _ 24 advmod _ _ 26 . _ PUNCT . _ 24 punct _ _ 1 Retail _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 3 nsubj _ _ 3 dumped _ VERB VBD _ 0 root _ _ 4 holdings _ NOUN NNS _ 3 dobj _ _ 5 on _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 massive _ ADJ JJ _ 8 amod _ _ 8 scale _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 pushing _ VERB VBG _ 3 advcl _ _ 11 some _ DET DT _ 13 det _ _ 12 blue-chip _ ADJ JJ _ 13 amod _ _ 13 shares _ NOUN NNS _ 10 dobj _ _ 14 down _ ADV RB _ 10 advmod _ _ 15 as _ ADV RB _ 18 advmod _ _ 16 much _ ADJ JJ _ 18 advmod _ _ 17 as _ ADP IN _ 18 advmod _ _ 18 20 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 14 nmod:npmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 cited _ VERB VBD _ 0 root _ _ 3 memories _ NOUN NNS _ 2 dobj _ _ 4 of _ ADP IN _ 6 case _ _ 5 two _ NUM CD _ 6 nummod _ _ 6 years _ NOUN NNS _ 3 nmod _ _ 7 ago _ ADV RB _ 6 advmod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 when _ ADV WRB _ 13 advmod _ _ 10 many _ ADJ JJ _ 12 amod _ _ 11 small _ ADJ JJ _ 12 amod _ _ 12 investors _ NOUN NNS _ 13 nsubj _ _ 13 held _ VERB VBD _ 6 acl:relcl _ _ 14 on _ ADP IN _ 17 case _ _ 15 to _ ADP TO _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 shares _ NOUN NNS _ 13 nmod _ _ 18 after _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 October _ PROPN NNP _ 21 compound _ _ 21 crash _ NOUN NN _ 13 nmod _ _ 22 but _ CONJ CC _ 13 cc _ _ 23 the _ DET DT _ 26 det _ _ 24 West _ ADJ JJ _ 25 amod _ _ 25 German _ ADJ JJ _ 26 amod _ _ 26 market _ NOUN NN _ 27 nsubj _ _ 27 continued _ VERB VBD _ 13 conj _ _ 28 to _ PART TO _ 29 mark _ _ 29 decline _ VERB VB _ 27 xcomp _ _ 30 steeply _ ADV RB _ 29 advmod _ _ 31 for _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 next _ ADJ JJ _ 35 amod _ _ 34 three _ NUM CD _ 35 nummod _ _ 35 months _ NOUN NNS _ 29 nmod _ _ 36 . _ PUNCT . _ 2 punct _ _ 1 Here _ ADV RB _ 4 nsubj _ _ 2 are _ VERB VBP _ 4 cop _ _ 3 price _ NOUN NN _ 4 compound _ _ 4 trends _ NOUN NNS _ 0 root _ _ 5 on _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 7 det _ _ 7 world _ NOUN NN _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 major _ ADJ JJ _ 11 amod _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 markets _ NOUN NNS _ 4 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 as _ SCONJ IN _ 14 mark _ _ 14 calculated _ VERB VBN _ 4 dep _ _ 15 by _ ADP IN _ 20 case _ _ 16 Morgan _ PROPN NNP _ 20 compound _ _ 17 Stanley _ PROPN NNP _ 20 compound _ _ 18 Capital _ PROPN NNP _ 20 compound _ _ 19 International _ PROPN NNP _ 20 compound _ _ 20 Perspective _ PROPN NNP _ 14 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Geneva _ PROPN NNP _ 20 appos _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 make _ VERB VB _ 10 advcl _ _ 3 them _ PRON PRP _ 5 nsubj _ _ 4 directly _ ADV RB _ 5 advmod _ _ 5 comparable _ ADJ JJ _ 2 xcomp _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 each _ DET DT _ 8 det _ _ 8 index _ NOUN NN _ 10 nsubjpass _ _ 9 is _ AUX VBZ _ 10 auxpass _ _ 10 based _ VERB VBN _ 0 root _ _ 11 on _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 close _ NOUN NN _ 16 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 1969 _ NUM CD _ 13 nmod _ _ 16 equaling _ VERB VBG _ 10 advcl _ _ 17 100 _ NUM CD _ 16 dobj _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 percentage _ NOUN NN _ 3 compound _ _ 3 change _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 since _ ADP IN _ 6 case _ _ 6 year-end _ NOUN NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Frank _ PROPN NNP _ 3 compound _ _ 2 Lloyd _ PROPN NNP _ 3 compound _ _ 3 Wright _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 reported _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 8 mark _ _ 7 have _ AUX VB _ 8 aux _ _ 8 said _ VERB VBD _ 5 xcomp _ _ 9 once _ ADV RB _ 8 advmod _ _ 10 that _ SCONJ IN _ 23 mark _ _ 11 if _ SCONJ IN _ 13 mark _ _ 12 you _ PRON PRP _ 13 nsubj _ _ 13 tipped _ VERB VBD _ 23 advcl _ _ 14 the _ DET DT _ 15 det _ _ 15 world _ NOUN NN _ 13 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 its _ PRON PRP$ _ 18 nmod:poss _ _ 18 side _ NOUN NN _ 13 nmod _ _ 19 , _ PUNCT , _ 23 punct _ _ 20 everything _ NOUN NN _ 23 nsubj _ _ 21 loose _ ADJ JJ _ 20 amod _ _ 22 would _ AUX MD _ 23 aux _ _ 23 end _ VERB VB _ 8 ccomp _ _ 24 up _ ADP RP _ 23 compound:prt _ _ 25 in _ ADP IN _ 26 case _ _ 26 California _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 We _ PRON PRP _ 4 nsubj _ _ 2 've _ AUX VBP _ 4 aux _ _ 3 always _ ADV RB _ 4 advmod _ _ 4 thought _ VERB VBN _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Wright _ PROPN NNP _ 8 nsubj _ _ 8 underestimated _ VERB VBD _ 4 ccomp _ _ 9 California _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 vitality _ NOUN NN _ 8 dobj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 but _ CONJ CC _ 4 cc _ _ 14 maybe _ ADV RB _ 21 advmod _ _ 15 the _ DET DT _ 16 det _ _ 16 state _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 la-la _ ADJ JJ _ 19 amod _ _ 19 factions _ NOUN NNS _ 21 nsubj _ _ 20 are _ AUX VBP _ 21 aux _ _ 21 starting _ VERB VBG _ 4 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 overwhelm _ VERB VB _ 21 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 forces _ NOUN NNS _ 23 dobj _ _ 26 that _ PRON WDT _ 27 nsubj _ _ 27 made _ VERB VBD _ 25 acl:relcl _ _ 28 it _ PRON PRP _ 32 nsubj _ _ 29 such _ ADJ JJ _ 32 amod _ _ 30 a _ DET DT _ 32 det _ _ 31 significant _ ADJ JJ _ 32 amod _ _ 32 place _ NOUN NN _ 27 xcomp _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 What _ PRON WP _ 0 root _ _ 2 else _ ADV RB _ 1 advmod _ _ 3 is _ VERB VBZ _ 1 cop _ _ 4 one _ PRON PRP _ 1 nsubj _ _ 5 to _ PART TO _ 6 mark _ _ 6 make _ VERB VB _ 1 advcl _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 whacky _ ADJ JJ _ 11 amod _ _ 10 save-the-earth _ ADJ JJ _ 11 amod _ _ 11 initiative _ NOUN NN _ 6 nmod _ _ 12 just _ ADV RB _ 13 advmod _ _ 13 proposed _ VERB VBN _ 11 dep _ _ 14 by _ ADP IN _ 18 case _ _ 15 several _ ADJ JJ _ 18 amod _ _ 16 major _ ADJ JJ _ 18 amod _ _ 17 environmental _ ADJ JJ _ 18 amod _ _ 18 groups _ NOUN NNS _ 13 nmod _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 organized _ VERB VBN _ 13 conj _ _ 21 by _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 23 det _ _ 23 state _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 attorney _ NOUN NN _ 26 compound _ _ 26 general _ NOUN NN _ 20 nmod _ _ 27 ? _ PUNCT . _ 1 punct _ _ 1 If _ SCONJ IN _ 2 mark _ _ 2 passed _ VERB VBN _ 12 advcl _ _ 3 by _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 voters _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 10 det _ _ 8 recently _ ADV RB _ 9 advmod _ _ 9 announced _ VERB VBN _ 10 amod _ _ 10 initiative _ NOUN NN _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 phase _ VERB VB _ 0 root _ _ 13 out _ ADP RP _ 12 compound:prt _ _ 14 major _ ADJ JJ _ 15 amod _ _ 15 pesticides _ NOUN NNS _ 12 dobj _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 reduce _ VERB VB _ 12 conj _ _ 18 carbon _ NOUN NN _ 20 compound _ _ 19 dioxide _ NOUN NN _ 20 compound _ _ 20 emissions _ NOUN NNS _ 17 dobj _ _ 21 by _ ADP IN _ 23 case _ _ 22 40 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 17 nmod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 ban _ VERB VB _ 12 conj _ _ 26 new _ ADJ JJ _ 28 amod _ _ 27 offshore _ ADJ JJ _ 28 amod _ _ 28 drilling _ NOUN NN _ 25 dobj _ _ 29 , _ PUNCT , _ 12 punct _ _ 30 ban _ VERB VB _ 12 conj _ _ 31 chemicals _ NOUN NNS _ 30 dobj _ _ 32 thought _ VERB VBN _ 31 acl _ _ 33 to _ PART TO _ 34 mark _ _ 34 deplete _ VERB VB _ 32 xcomp _ _ 35 the _ DET DT _ 37 det _ _ 36 ozone _ NOUN NN _ 37 compound _ _ 37 layer _ NOUN NN _ 34 dobj _ _ 38 , _ PUNCT , _ 12 punct _ _ 39 and _ CONJ CC _ 12 cc _ _ 40 create _ VERB VB _ 12 conj _ _ 41 a _ DET DT _ 45 det _ _ 42 new _ ADJ JJ _ 45 amod _ _ 43 state _ NOUN NN _ 45 compound _ _ 44 environmental _ ADJ JJ _ 45 amod _ _ 45 officer _ NOUN NN _ 40 dobj _ _ 46 armed _ VERB VBN _ 45 acl _ _ 47 with _ ADP IN _ 52 case _ _ 48 a _ DET DT _ 52 det _ _ 49 $ _ SYM $ _ 52 amod _ _ 50 40 _ NUM CD _ 51 compound _ _ 51 million _ NUM CD _ 49 nummod _ _ 52 budget _ NOUN NN _ 46 nmod _ _ 53 to _ PART TO _ 54 mark _ _ 54 sue _ VERB VB _ 52 acl _ _ 55 any _ DET DT _ 56 det _ _ 56 firm _ NOUN NN _ 54 dobj _ _ 57 or _ CONJ CC _ 56 cc _ _ 58 agency _ NOUN NN _ 56 conj _ _ 59 he _ PRON PRP _ 60 nsubj _ _ 60 thinks _ VERB VBZ _ 56 acl:relcl _ _ 61 is _ AUX VBZ _ 64 aux _ _ 62 being _ VERB VBG _ 64 cop _ _ 63 too _ ADV RB _ 64 advmod _ _ 64 dirty _ ADJ JJ _ 60 ccomp _ _ 65 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 based _ VERB VBN _ 0 root _ _ 5 largely _ ADV RB _ 4 advmod _ _ 6 on _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 wish-lists _ NOUN NNS _ 4 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 green _ ADJ JJ _ 12 amod _ _ 12 lobby _ NOUN NN _ 8 nmod _ _ 13 : _ PUNCT : _ 12 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 Sierra _ PROPN NNP _ 16 compound _ _ 16 Club _ PROPN NNP _ 12 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 League _ PROPN NNP _ 16 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 Conservation _ PROPN NNP _ 22 compound _ _ 22 Voters _ PROPN NNP _ 19 nmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 the _ DET DT _ 28 det _ _ 25 Natural _ PROPN NNP _ 28 compound _ _ 26 Resources _ PROPN NNP _ 28 compound _ _ 27 Defense _ PROPN NNP _ 28 compound _ _ 28 Council _ PROPN NNP _ 16 conj _ _ 29 , _ PUNCT , _ 16 punct _ _ 30 the _ DET DT _ 33 det _ _ 31 National _ PROPN NNP _ 33 compound _ _ 32 Toxics _ PROPN NNP _ 33 compound _ _ 33 Campaign _ PROPN NNP _ 16 conj _ _ 34 and _ CONJ CC _ 16 cc _ _ 35 the _ DET DT _ 36 det _ _ 36 Citizens _ PROPN NNP _ 16 conj _ _ 37 for _ ADP IN _ 40 case _ _ 38 a _ DET DT _ 40 det _ _ 39 Better _ PROPN NNP _ 40 compound _ _ 40 Environment _ PROPN NNP _ 36 nmod _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 Interestingly _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 Environmental _ PROPN NNP _ 6 compound _ _ 5 Defense _ PROPN NNP _ 6 compound _ _ 6 Fund _ PROPN NNP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 having _ VERB VBG _ 0 root _ _ 9 nothing _ NOUN NN _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 do _ VERB VB _ 9 acl _ _ 12 with _ ADP IN _ 14 case _ _ 13 this _ DET DT _ 14 det _ _ 14 one _ NUM CD _ 11 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 only _ ADJ JJ _ 3 cc:preconj _ _ 3 Californians _ NOUN NNS _ 8 nsubj _ _ 4 but _ CONJ CC _ 3 cc _ _ 5 all _ DET DT _ 6 det _ _ 6 Americans _ NOUN NNS _ 3 conj _ _ 7 would _ AUX MD _ 8 aux _ _ 8 pay _ VERB VB _ 0 root _ _ 9 if _ SCONJ IN _ 12 mark _ _ 10 this _ DET DT _ 11 det _ _ 11 thing _ NOUN NN _ 12 nsubj _ _ 12 passed _ VERB VBD _ 8 advcl _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 3 nsubj _ _ 3 bars _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 sale _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 any _ DET DT _ 8 det _ _ 8 crops _ NOUN NNS _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 California _ PROPN NNP _ 5 nmod _ _ 11 that _ PRON WDT _ 14 nsubj _ _ 12 do _ AUX VBP _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 meet _ VERB VB _ 5 acl:relcl _ _ 15 the _ DET DT _ 16 det _ _ 16 initiative _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 standards _ NOUN NNS _ 14 dobj _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Kansas _ PROPN NNP _ 3 compound _ _ 2 wheat _ NOUN NN _ 3 compound _ _ 3 farmers _ NOUN NNS _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Florida _ PROPN NNP _ 7 compound _ _ 6 fruit _ NOUN NN _ 7 compound _ _ 7 growers _ NOUN NNS _ 3 conj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 have _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 adjust _ VERB VB _ 9 xcomp _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 give _ VERB VB _ 11 conj _ _ 14 up _ ADP RP _ 13 compound:prt _ _ 15 the _ DET DT _ 17 det _ _ 16 California _ PROPN NNP _ 17 compound _ _ 17 market _ NOUN NN _ 13 dobj _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 words _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 California _ PROPN NNP _ 7 nsubj _ _ 6 is _ AUX VBZ _ 7 aux _ _ 7 presuming _ VERB VBG _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 take _ VERB VB _ 7 xcomp _ _ 10 control _ NOUN NN _ 9 dobj _ _ 11 of _ ADP IN _ 16 case _ _ 12 the _ DET DT _ 13 det _ _ 13 nation _ NOUN NN _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 farm _ NOUN NN _ 16 compound _ _ 16 policy _ NOUN NN _ 10 nmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 As _ ADP IN _ 2 case _ _ 2 usual _ ADV RB _ 9 advcl _ _ 3 the _ DET DT _ 5 det _ _ 4 green _ ADJ JJ _ 5 amod _ _ 5 lobby _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 proposal _ NOUN NN _ 9 nsubjpass _ _ 8 is _ AUX VBZ _ 9 auxpass _ _ 9 disconnected _ VERB VBN _ 0 root _ _ 10 from _ ADP IN _ 12 case _ _ 11 scientific _ ADJ JJ _ 12 amod _ _ 12 reality _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 the _ DET DT _ 4 det _ _ 3 greenhouse-effect _ ADJ JJ _ 4 amod _ _ 4 provision _ NOUN NN _ 1 dobj _ _ 5 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 proposed _ VERB VBN _ 3 amod _ _ 3 initiative _ NOUN NN _ 5 nsubj _ _ 4 would _ AUX MD _ 5 aux _ _ 5 mandate _ VERB VB _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 reduction _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 carbon _ NOUN NN _ 10 compound _ _ 10 dioxide _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 40 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 7 nmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 if _ SCONJ IN _ 4 mark _ _ 3 one _ PRON PRP _ 4 nsubj _ _ 4 buys _ VERB VBZ _ 13 advcl _ _ 5 into _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 whole _ ADJ JJ _ 9 amod _ _ 8 greenhouse _ NOUN NN _ 9 compound _ _ 9 theory _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 is _ VERB VBZ _ 13 cop _ _ 13 inconceivable _ ADJ JJ _ 0 root _ _ 14 that _ SCONJ IN _ 21 mark _ _ 15 reductions _ NOUN NNS _ 21 nsubj _ _ 16 in _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 single _ ADJ JJ _ 19 amod _ _ 19 state _ NOUN NN _ 15 nmod _ _ 20 could _ AUX MD _ 21 aux _ _ 21 have _ VERB VB _ 13 ccomp _ _ 22 any _ DET DT _ 23 det _ _ 23 impact _ NOUN NN _ 21 dobj _ _ 24 on _ SCONJ IN _ 27 mark _ _ 25 what _ PRON WP _ 27 nsubjpass _ _ 26 is _ AUX VBZ _ 27 auxpass _ _ 27 billed _ VERB VBN _ 23 acl _ _ 28 as _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 global _ ADJ JJ _ 31 amod _ _ 31 problem _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 19 cc _ _ 2 if _ SCONJ IN _ 7 mark _ _ 3 rational _ ADJ JJ _ 4 amod _ _ 4 science _ NOUN NN _ 7 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 economics _ NOUN NNS _ 4 conj _ _ 7 have _ VERB VBP _ 19 advcl _ _ 8 nothing _ NOUN NN _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 do _ VERB VB _ 8 acl _ _ 11 with _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 new _ ADJ JJ _ 15 amod _ _ 14 environment _ NOUN NN _ 15 compound _ _ 15 initiative _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 what _ PRON WP _ 19 nsubj _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 going _ VERB VBG _ 0 root _ _ 20 on _ ADP RP _ 19 compound:prt _ _ 21 ? _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 first _ ADJ JJ _ 3 amod _ _ 3 place _ NOUN NN _ 12 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 look _ VERB VB _ 3 acl _ _ 6 under _ ADP IN _ 8 case _ _ 7 these _ DET DT _ 8 det _ _ 8 circumstances _ NOUN NNS _ 12 nmod _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 ways _ NOUN NNS _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 which _ PRON WDT _ 19 nmod _ _ 15 the _ DET DT _ 16 det _ _ 16 sponsors _ NOUN NNS _ 19 nsubj _ _ 17 themselves _ PRON PRP _ 16 nmod:npmod _ _ 18 will _ AUX MD _ 19 aux _ _ 19 benefit _ VERB VB _ 12 acl:relcl _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 key _ NOUN NN _ 6 nsubj _ _ 3 here _ ADV RB _ 6 advmod _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 ambition _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 14 case _ _ 8 state _ NOUN NN _ 14 compound _ _ 9 Attorney _ PROPN NNP _ 14 compound _ _ 10 General _ PROPN NNP _ 14 compound _ _ 11 John _ PROPN NNP _ 14 compound _ _ 12 Van _ PROPN NNP _ 14 compound _ _ 13 de _ PROPN NNP _ 14 compound _ _ 14 Kamp _ PROPN NNP _ 6 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 running _ VERB VBG _ 0 root _ _ 4 for _ ADP IN _ 5 case _ _ 5 governor _ NOUN NN _ 3 nmod _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 4 compound _ _ 2 Van _ PROPN NNP _ 4 compound _ _ 3 de _ PROPN NNP _ 4 compound _ _ 4 Kamp _ PROPN NNP _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 one _ NUM CD _ 0 root _ _ 8 who _ PRON WP _ 9 nsubj _ _ 9 collected _ VERB VBD _ 7 acl:relcl _ _ 10 the _ DET DT _ 11 det _ _ 11 plans _ NOUN NNS _ 9 dobj _ _ 12 from _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 various _ ADJ JJ _ 17 amod _ _ 15 radical _ ADJ JJ _ 17 amod _ _ 16 environmental _ ADJ JJ _ 17 amod _ _ 17 groups _ NOUN NNS _ 9 nmod _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 cobbled _ VERB VBD _ 9 conj _ _ 20 them _ PRON PRP _ 19 dobj _ _ 21 into _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 single _ ADJ JJ _ 25 amod _ _ 24 unwieldy _ ADJ JJ _ 25 amod _ _ 25 initiative _ NOUN NN _ 19 nmod _ _ 26 to _ PART TO _ 28 mark _ _ 27 be _ AUX VB _ 28 auxpass _ _ 28 placed _ VERB VBN _ 25 acl _ _ 29 on _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 ballot _ NOUN NN _ 28 nmod _ _ 32 for _ ADP IN _ 33 case _ _ 33 election _ NOUN NN _ 28 nmod _ _ 34 on _ ADP IN _ 35 case _ _ 35 Nov. _ PROPN NNP _ 28 nmod _ _ 36 6 _ NUM CD _ 35 nummod _ _ 37 , _ PUNCT , _ 35 punct _ _ 38 1990 _ NUM CD _ 35 nummod _ _ 39 . _ PUNCT . _ 7 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 the _ DET DT _ 5 det _ _ 5 day _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 gubernatorial _ ADJ JJ _ 9 amod _ _ 9 election _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 7 mark _ _ 5 have _ AUX VB _ 7 aux _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 crafted _ VERB VBN _ 3 xcomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 include _ VERB VB _ 7 xcomp _ _ 10 all _ DET DT _ 13 det:predet _ _ 11 the _ DET DT _ 13 det _ _ 12 hot _ ADJ JJ _ 13 amod _ _ 13 issues _ NOUN NNS _ 9 dobj _ _ 14 that _ PRON WDT _ 15 nsubj _ _ 15 set _ VERB VBD _ 13 acl:relcl _ _ 16 off _ ADP RP _ 15 compound:prt _ _ 17 the _ DET DT _ 20 det _ _ 18 wealthy _ ADJ JJ _ 20 amod _ _ 19 Hollywood _ PROPN NNP _ 20 compound _ _ 20 weepers _ NOUN NNS _ 15 dobj _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 donate _ VERB VBP _ 20 acl:relcl _ _ 23 money _ NOUN NN _ 22 dobj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 allows _ VERB VBZ _ 0 root _ _ 4 Mr. _ PROPN NNP _ 7 compound _ _ 5 Van _ PROPN NNP _ 7 compound _ _ 6 de _ PROPN NNP _ 7 compound _ _ 7 Kamp _ PROPN NNP _ 3 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 get _ VERB VB _ 3 xcomp _ _ 10 around _ ADP RP _ 13 dep _ _ 11 campaign _ NOUN NN _ 13 compound _ _ 12 spending _ NOUN NN _ 13 compound _ _ 13 limits _ NOUN NNS _ 9 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 can _ AUX MD _ 3 aux _ _ 3 spend _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 legal _ ADJ JJ _ 6 amod _ _ 6 maximum _ NOUN NN _ 3 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 his _ PRON PRP$ _ 9 nmod:poss _ _ 9 campaign _ NOUN NN _ 6 nmod _ _ 10 ; _ PUNCT : _ 3 punct _ _ 11 all _ DET DT _ 13 det:predet _ _ 12 the _ DET DT _ 13 det _ _ 13 spending _ NOUN NN _ 28 nsubj _ _ 14 for _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 19 det _ _ 16 Van _ PROPN NNP _ 19 compound _ _ 17 de _ PROPN NNP _ 19 compound _ _ 18 Kamp _ PROPN NNP _ 19 compound _ _ 19 initiative _ NOUN NN _ 13 nmod _ _ 20 -LRB- _ PUNCT -LRB- _ 24 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 which _ PRON WDT _ 24 nmod _ _ 23 there _ PRON EX _ 24 expl _ _ 24 are _ VERB VBP _ 19 dep _ _ 25 no _ DET DT _ 26 neg _ _ 26 limits _ NOUN NNS _ 24 nsubj _ _ 27 -RRB- _ PUNCT -RRB- _ 24 punct _ _ 28 is _ VERB VBZ _ 3 parataxis _ _ 29 gravy _ NOUN NN _ 28 dep _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 5 nsubjpass _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 being _ AUX VBG _ 5 auxpass _ _ 5 labeled _ VERB VBN _ 0 root _ _ 6 The _ DET DT _ 8 det _ _ 7 Big _ PROPN NNP _ 8 compound _ _ 8 Green _ PROPN NNP _ 5 xcomp _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 but _ CONJ CC _ 5 cc _ _ 11 maybe _ ADV RB _ 15 advmod _ _ 12 it _ PRON PRP _ 15 nsubjpass _ _ 13 should _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 called _ VERB VBN _ 5 conj _ _ 16 The _ DET DT _ 18 det _ _ 17 Big _ PROPN NNP _ 18 compound _ _ 18 Greenback _ PROPN NNP _ 15 xcomp _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 Republican _ ADJ JJ _ 4 amod _ _ 4 candidate _ NOUN NN _ 11 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Sen. _ PROPN NNP _ 8 compound _ _ 7 Pete _ PROPN NNP _ 8 compound _ _ 8 Wilson _ PROPN NNP _ 4 appos _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 playing _ VERB VBG _ 0 root _ _ 12 the _ DET DT _ 15 det _ _ 13 initiative _ NOUN NN _ 15 compound _ _ 14 fundraising _ VERB VBG _ 15 amod _ _ 15 game _ NOUN NN _ 11 dobj _ _ 16 too _ ADV RB _ 11 advmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 sponsoring _ VERB VBG _ 11 advcl _ _ 19 his _ PRON PRP$ _ 22 nmod:poss _ _ 20 own _ ADJ JJ _ 22 amod _ _ 21 crime _ NOUN NN _ 22 compound _ _ 22 initiative _ NOUN NN _ 18 dobj _ _ 23 . _ PUNCT . _ 11 punct _ _ 24 -RRB- _ PUNCT -RRB- _ 11 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 possible _ ADJ JJ _ 19 advcl _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 the _ DET DT _ 9 det _ _ 7 Big _ PROPN NNP _ 9 compound _ _ 8 Green _ PROPN NNP _ 9 compound _ _ 9 initiative _ NOUN NN _ 12 nsubjpass _ _ 10 will _ AUX MD _ 12 aux _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 ruled _ VERB VBN _ 4 ccomp _ _ 13 unconstitutional _ ADJ JJ _ 12 xcomp _ _ 14 , _ PUNCT , _ 19 punct _ _ 15 it _ PRON PRP _ 19 nsubj _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 of _ ADP IN _ 19 advmod _ _ 18 course _ NOUN NN _ 17 mwe _ _ 19 conceivable _ ADJ JJ _ 0 root _ _ 20 that _ SCONJ IN _ 26 mark _ _ 21 in _ ADP IN _ 23 case _ _ 22 modern _ ADJ JJ _ 23 amod _ _ 23 California _ PROPN NNP _ 26 nmod _ _ 24 it _ PRON PRP _ 26 nsubj _ _ 25 could _ AUX MD _ 26 aux _ _ 26 slide _ VERB VB _ 19 ccomp _ _ 27 through _ ADV RB _ 26 advmod _ _ 28 . _ PUNCT . _ 19 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 the _ DET DT _ 4 det _ _ 4 state _ NOUN NN _ 0 root _ _ 5 that _ PRON WDT _ 7 nsubj _ _ 6 recently _ ADV RB _ 7 advmod _ _ 7 passed _ VERB VBD _ 4 acl:relcl _ _ 8 the _ DET DT _ 12 det _ _ 9 Prop. _ PROPN NNP _ 12 compound _ _ 10 65 _ NUM CD _ 12 nummod _ _ 11 anti-toxic _ ADJ JJ _ 12 amod _ _ 12 initiative _ NOUN NN _ 7 dobj _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 If _ SCONJ IN _ 7 mark _ _ 2 this _ DET DT _ 4 det _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 proposal _ NOUN NN _ 7 nsubj _ _ 5 ever _ ADV RB _ 7 advmod _ _ 6 does _ AUX VBZ _ 7 aux _ _ 7 become _ VERB VBN _ 14 advcl _ _ 8 law _ NOUN NN _ 7 xcomp _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 green _ ADJ JJ _ 12 amod _ _ 12 lobby _ NOUN NN _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 benefit _ VERB VB _ 0 root _ _ 15 directly _ ADV RB _ 14 advmod _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 initiative _ NOUN NN _ 3 nsubj _ _ 3 creates _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 9 det _ _ 5 free _ ADJ JJ _ 6 amod _ _ 6 floating _ ADJ JJ _ 9 amod _ _ 7 state _ NOUN NN _ 9 compound _ _ 8 environmental _ ADJ JJ _ 9 amod _ _ 9 officer _ NOUN NN _ 3 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 sue _ VERB VB _ 9 acl _ _ 12 companies _ NOUN NNS _ 11 dobj _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 government _ NOUN NN _ 15 compound _ _ 15 agencies _ NOUN NNS _ 12 conj _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 do _ VERB VBP _ 12 acl:relcl _ _ 18 things _ NOUN NNS _ 17 dobj _ _ 19 he _ PRON PRP _ 22 nsubj _ _ 20 does _ AUX VBZ _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 like _ VERB VB _ 18 acl:relcl _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 means _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 NRDC _ PROPN NNP _ 11 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 such _ ADJ JJ _ 7 amod _ _ 7 groups _ NOUN NNS _ 4 conj _ _ 8 no _ ADV RB _ 9 neg _ _ 9 longer _ ADV RBR _ 11 advmod _ _ 10 would _ AUX MD _ 11 aux _ _ 11 have _ VERB VB _ 2 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 spend _ VERB VB _ 11 xcomp _ _ 14 as _ ADP IN _ 16 amod _ _ 15 much _ ADJ JJ _ 16 amod _ _ 16 money _ NOUN NN _ 13 dobj _ _ 17 on _ ADP IN _ 18 case _ _ 18 litigation _ NOUN NN _ 13 nmod _ _ 19 ; _ PUNCT : _ 2 punct _ _ 20 taxpayers _ NOUN NNS _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 bear _ VERB VB _ 2 parataxis _ _ 23 the _ DET DT _ 24 det _ _ 24 cost _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 4 compound _ _ 2 Van _ PROPN NNP _ 4 compound _ _ 3 de _ PROPN NNP _ 4 compound _ _ 4 Kamp _ PROPN NNP _ 10 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 his _ PRON PRP$ _ 7 nmod:poss _ _ 7 allies _ NOUN NNS _ 4 conj _ _ 8 may _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 aux _ _ 10 hoping _ VERB VBG _ 0 root _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 environment _ NOUN NN _ 17 nsubj _ _ 14 is _ VERB VBZ _ 17 cop _ _ 15 such _ ADJ JJ _ 17 amod _ _ 16 a _ DET DT _ 17 det _ _ 17 mom _ NOUN NN _ 10 ccomp _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 apple-pie _ NOUN NN _ 20 compound _ _ 20 issue _ NOUN NN _ 17 conj _ _ 21 among _ ADP IN _ 23 case _ _ 22 certain _ ADJ JJ _ 23 amod _ _ 23 segments _ NOUN NNS _ 17 nmod _ _ 24 of _ ADP IN _ 27 case _ _ 25 California _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 population _ NOUN NN _ 23 nmod _ _ 28 now _ ADV RB _ 17 advmod _ _ 29 that _ SCONJ IN _ 39 mark _ _ 30 almost _ ADV RB _ 32 advmod _ _ 31 any _ DET DT _ 32 det _ _ 32 collection _ NOUN NN _ 39 nsubj _ _ 33 of _ ADP IN _ 37 case _ _ 34 anti-scientific _ ADJ JJ _ 37 amod _ _ 35 , _ PUNCT , _ 37 punct _ _ 36 anti-pocketbook _ ADJ JJ _ 37 amod _ _ 37 nonsense _ NOUN NN _ 32 nmod _ _ 38 can _ AUX MD _ 39 aux _ _ 39 pass _ VERB VB _ 17 ccomp _ _ 40 under _ ADP IN _ 42 case _ _ 41 its _ PRON PRP$ _ 42 nmod:poss _ _ 42 rubric _ NOUN NN _ 39 nmod _ _ 43 . _ PUNCT . _ 10 punct _ _ 1 Of _ ADP IN _ 11 advmod _ _ 2 course _ NOUN NN _ 1 mwe _ _ 3 the _ DET DT _ 4 det _ _ 4 state _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 liberals _ NOUN NNS _ 11 nsubj _ _ 7 are _ VERB VBP _ 11 cop _ _ 8 not _ PART RB _ 11 neg _ _ 9 yet _ ADV RB _ 11 advmod _ _ 10 a _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 0 root _ _ 12 unto _ ADP IN _ 13 case _ _ 13 themselves _ PRON PRP _ 11 nmod _ _ 14 . _ PUNCT . _ 11 punct _ _ 1 George _ PROPN NNP _ 2 compound _ _ 2 Bush _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 example _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 may _ AUX MD _ 8 aux _ _ 8 decide _ VERB VB _ 0 root _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 he _ PRON PRP _ 13 nsubj _ _ 11 does _ AUX VBZ _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 want _ VERB VB _ 8 ccomp _ _ 14 to _ PART TO _ 17 mark _ _ 15 be _ VERB VB _ 17 cop _ _ 16 the _ DET DT _ 17 det _ _ 17 President _ PROPN NNP _ 13 xcomp _ _ 18 who _ PRON WP _ 19 nsubj _ _ 19 lost _ VERB VBD _ 17 acl:relcl _ _ 20 control _ NOUN NN _ 19 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 interstate _ ADJ JJ _ 23 amod _ _ 23 commerce _ NOUN NN _ 20 nmod _ _ 24 to _ ADP TO _ 26 case _ _ 25 an _ DET DT _ 26 det _ _ 26 attorney _ NOUN NN _ 19 nmod _ _ 27 general _ ADJ JJ _ 26 amod _ _ 28 from _ ADP IN _ 29 case _ _ 29 California _ PROPN NNP _ 26 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 14 cc _ _ 2 some _ DET DT _ 4 det _ _ 3 other _ ADJ JJ _ 4 amod _ _ 4 segments _ NOUN NNS _ 14 nsubj _ _ 5 of _ ADP IN _ 11 case _ _ 6 California _ PROPN NNP _ 11 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 political _ ADJ JJ _ 11 amod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 media _ NOUN NNS _ 8 conj _ _ 11 culture _ NOUN NN _ 4 nmod _ _ 12 may _ AUX MD _ 14 aux _ _ 13 yet _ ADV RB _ 14 advmod _ _ 14 start _ VERB VB _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 point _ VERB VB _ 14 xcomp _ _ 17 out _ ADP RP _ 16 compound:prt _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 initiative _ NOUN NN _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 impose _ VERB VB _ 16 ccomp _ _ 23 significant _ ADJ JJ _ 24 amod _ _ 24 costs _ NOUN NNS _ 22 dobj _ _ 25 on _ ADP IN _ 31 case _ _ 26 the _ DET DT _ 27 det _ _ 27 state _ NOUN NN _ 31 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 less _ ADV RBR _ 30 advmod _ _ 30 affluent _ ADJ JJ _ 31 amod _ _ 31 citizens _ NOUN NNS _ 22 nmod _ _ 32 in _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 form _ NOUN NN _ 22 nmod _ _ 35 of _ ADP IN _ 38 case _ _ 36 higher _ ADJ JJR _ 38 amod _ _ 37 food _ NOUN NN _ 38 compound _ _ 38 prices _ NOUN NNS _ 34 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 lost _ VERB VBN _ 41 amod _ _ 41 jobs _ NOUN NNS _ 38 conj _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 grandiose _ ADJ JJ _ 3 amod _ _ 3 initiative _ NOUN NN _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 help _ VERB VB _ 0 root _ _ 6 California _ PROPN NNP _ 7 nsubj _ _ 7 define _ VERB VB _ 5 ccomp _ _ 8 itself _ PRON PRP _ 7 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 future _ NOUN NN _ 7 nmod _ _ 12 either _ CONJ CC _ 15 cc:preconj _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 state _ NOUN NN _ 7 nmod _ _ 16 still _ ADV RB _ 17 advmod _ _ 17 tethered _ VERB VBN _ 15 acl _ _ 18 to _ ADP TO _ 22 case _ _ 19 economic _ ADJ JJ _ 22 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 scientific _ ADJ JJ _ 19 conj _ _ 22 reality _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 or _ CONJ CC _ 15 cc _ _ 25 as _ ADP IN _ 26 case _ _ 26 one _ NUM CD _ 15 conj _ _ 27 being _ AUX VBG _ 28 auxpass _ _ 28 led _ VERB VBN _ 26 acl _ _ 29 to _ ADP TO _ 34 mark _ _ 30 wherever _ ADV WRB _ 34 advmod _ _ 31 its _ PRON PRP$ _ 33 nmod:poss _ _ 32 la-la _ ADJ JJ _ 33 amod _ _ 33 activists _ NOUN NNS _ 34 nsubj _ _ 34 want _ VERB VBP _ 28 advcl _ _ 35 to _ PART TO _ 36 mark _ _ 36 take _ VERB VB _ 34 xcomp _ _ 37 it _ PRON PRP _ 36 dobj _ _ 38 . _ PUNCT . _ 5 punct _ _ 1 First _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 there _ PRON EX _ 4 expl _ _ 4 was _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 death _ NOUN NN _ 7 compound _ _ 7 watch _ NOUN NN _ 4 nsubj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Then _ ADV RB _ 2 dep _ _ 2 exhilaration _ NOUN NN _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Spurred _ VERB VBN _ 16 advcl _ _ 2 by _ ADP IN _ 3 case _ _ 3 waves _ NOUN NNS _ 1 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 large-scale _ ADJ JJ _ 6 amod _ _ 6 buying _ NOUN NN _ 3 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 blue-chip _ ADJ JJ _ 9 amod _ _ 9 stocks _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 15 det _ _ 12 Dow _ PROPN NNP _ 15 compound _ _ 13 Jones _ PROPN NNP _ 15 compound _ _ 14 Industrial _ PROPN NNP _ 15 compound _ _ 15 Average _ PROPN NNP _ 16 nsubj _ _ 16 rallied _ VERB VBD _ 0 root _ _ 17 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 18 and _ CONJ CC _ 16 cc _ _ 19 erased _ VERB VBN _ 16 conj _ _ 20 about _ ADV RB _ 22 advmod _ _ 21 a _ DET DT _ 22 advmod _ _ 22 half _ NOUN NN _ 19 dobj _ _ 23 of _ ADP IN _ 27 case _ _ 24 Friday _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 190.58-point _ ADJ JJ _ 27 amod _ _ 27 plunge _ NOUN NN _ 22 nmod _ _ 28 , _ PUNCT , _ 19 punct _ _ 29 gaining _ VERB VBG _ 19 advcl _ _ 30 88.12 _ NUM CD _ 29 dobj _ _ 31 to _ ADP TO _ 32 case _ _ 32 2657.38 _ NUM CD _ 29 nmod _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 the _ DET DT _ 5 det _ _ 4 fourth-biggest _ ADJ JJ _ 5 amod _ _ 5 advance _ NOUN NN _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 average _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 30 _ NUM CD _ 12 nummod _ _ 11 blue _ ADJ JJ _ 12 amod _ _ 12 chips _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 on _ ADP IN _ 20 case _ _ 15 frenetic _ ADJ JJ _ 20 amod _ _ 16 New _ PROPN NNP _ 20 compound _ _ 17 York _ PROPN NNP _ 20 compound _ _ 18 Stock _ PROPN NNP _ 20 compound _ _ 19 Exchange _ PROPN NNP _ 20 compound _ _ 20 volume _ NOUN NN _ 5 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 416,290,000 _ NUM CD _ 23 nummod _ _ 23 shares _ NOUN NNS _ 20 nmod _ _ 24 -- _ PUNCT : _ 20 punct _ _ 25 the _ DET DT _ 26 det _ _ 26 highest _ ADJ JJS _ 20 dep _ _ 27 since _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 days _ NOUN NNS _ 26 nmod _ _ 30 after _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 1987 _ NUM CD _ 33 nummod _ _ 33 crash _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 advance _ NOUN NN _ 4 nsubj _ _ 4 cheered _ VERB VBD _ 20 advcl _ _ 5 investors _ NOUN NNS _ 4 dobj _ _ 6 who _ PRON WP _ 7 nsubj _ _ 7 feared _ VERB VBD _ 5 acl:relcl _ _ 8 a _ DET DT _ 10 det _ _ 9 1987-style _ ADJ JJ _ 10 amod _ _ 10 crash _ NOUN NN _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 occur _ VERB VB _ 7 ccomp _ _ 13 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 14 , _ PUNCT , _ 20 punct _ _ 15 it _ PRON PRP _ 20 nsubj _ _ 16 was _ VERB VBD _ 20 cop _ _ 17 strictly _ ADV RB _ 20 advmod _ _ 18 a _ DET DT _ 20 det _ _ 19 big-stock _ ADJ JJ _ 20 amod _ _ 20 rally _ NOUN NN _ 0 root _ _ 21 fed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 24 case _ _ 23 huge _ ADJ JJ _ 24 amod _ _ 24 buying _ NOUN NN _ 21 nmod _ _ 25 by _ ADP IN _ 27 case _ _ 26 bargain-hunting _ ADJ JJ _ 27 amod _ _ 27 institutions _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 program _ NOUN NN _ 30 compound _ _ 30 traders _ NOUN NNS _ 27 conj _ _ 31 . _ PUNCT . _ 20 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 troubling _ VERB VBG _ 3 amod _ _ 3 sign _ NOUN NN _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 5 Declining _ VERB VBG _ 6 amod _ _ 6 stocks _ NOUN NNS _ 11 nsubj _ _ 7 on _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Big _ PROPN NNP _ 10 compound _ _ 10 Board _ PROPN NNP _ 6 nmod _ _ 11 outnumbered _ VERB VBD _ 3 dep _ _ 12 advancers _ NOUN NNS _ 11 dobj _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 975 _ NUM CD _ 16 dep _ _ 15 to _ ADP TO _ 16 dep _ _ 16 749 _ NUM CD _ 11 advmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 and _ CONJ CC _ 11 cc _ _ 19 the _ DET DT _ 21 det _ _ 20 over-the-counter _ ADJ JJ _ 21 amod _ _ 21 market _ NOUN NN _ 27 nsubj _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 includes _ VERB VBZ _ 21 acl:relcl _ _ 24 many _ ADJ JJ _ 26 amod _ _ 25 smaller _ ADJ JJR _ 26 amod _ _ 26 stocks _ NOUN NNS _ 23 dobj _ _ 27 suffered _ VERB VBD _ 11 conj _ _ 28 aftershocks _ NOUN NNS _ 27 dobj _ _ 29 of _ ADP IN _ 35 case _ _ 30 Friday _ PROPN NNP _ 35 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 late _ ADJ JJ _ 35 amod _ _ 33 Big _ PROPN NNP _ 35 compound _ _ 34 Board _ PROPN NNP _ 35 compound _ _ 35 plunge _ NOUN NN _ 28 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Nasdaq _ PROPN NNP _ 4 compound _ _ 3 OTC _ PROPN NNP _ 4 compound _ _ 4 index _ NOUN NN _ 5 nsubj _ _ 5 closed _ VERB VBN _ 0 root _ _ 6 down _ ADV RB _ 5 advmod _ _ 7 6.31 _ NUM CD _ 6 nmod:npmod _ _ 8 to _ ADP TO _ 9 case _ _ 9 460.98 _ NUM CD _ 6 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Meanwhile _ ADV RB _ 30 advmod _ _ 2 , _ PUNCT , _ 30 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 divergence _ NOUN NN _ 30 nmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 two _ NUM CD _ 5 nmod _ _ 8 of _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 most _ ADV RBS _ 13 advmod _ _ 13 important _ ADJ JJ _ 14 amod _ _ 14 indicators _ NOUN NNS _ 7 nmod _ _ 15 , _ PUNCT , _ 30 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 Dow _ PROPN NNP _ 18 compound _ _ 18 industrials _ NOUN NNS _ 21 nmod:poss _ _ 19 ' _ PART POS _ 18 case _ _ 20 sister _ NOUN NN _ 21 compound _ _ 21 average _ NOUN NN _ 30 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 the _ DET DT _ 28 det _ _ 24 20-stock _ ADJ JJ _ 28 amod _ _ 25 Dow _ PROPN NNP _ 28 compound _ _ 26 Jones _ PROPN NNP _ 28 compound _ _ 27 Transportation _ PROPN NNP _ 28 compound _ _ 28 Average _ PROPN NNP _ 21 appos _ _ 29 , _ PUNCT , _ 21 punct _ _ 30 tumbled _ VERB VBD _ 0 root _ _ 31 102.06 _ NUM CD _ 30 dobj _ _ 32 to _ ADP TO _ 33 case _ _ 33 1304.23 _ NUM CD _ 30 nmod _ _ 34 -- _ PUNCT : _ 30 punct _ _ 35 its _ PRON PRP$ _ 37 nmod:poss _ _ 36 second-worst _ ADJ JJ _ 37 amod _ _ 37 decline _ NOUN NN _ 30 nmod:npmod _ _ 38 next _ ADJ JJ _ 37 amod _ _ 39 to _ ADP TO _ 42 case _ _ 40 the _ DET DT _ 42 det _ _ 41 164.78-point _ ADJ JJ _ 42 amod _ _ 42 fall _ NOUN NN _ 38 nmod _ _ 43 during _ ADP IN _ 46 case _ _ 44 the _ DET DT _ 46 det _ _ 45 1987 _ NUM CD _ 46 nummod _ _ 46 crash _ NOUN NN _ 42 nmod _ _ 47 . _ PUNCT . _ 30 punct _ _ 1 Transports _ NOUN NNS _ 2 nsubj _ _ 2 plunged _ VERB VBD _ 0 root _ _ 3 on _ ADP IN _ 5 case _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 disappointments _ NOUN NNS _ 2 nmod _ _ 6 in _ ADP IN _ 9 case _ _ 7 two _ NUM CD _ 9 nummod _ _ 8 airline _ NOUN NN _ 9 compound _ _ 9 stocks _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 UAL _ PROPN NNP _ 9 appos _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 AMR _ PROPN NNP _ 11 conj _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 which _ PRON WDT _ 17 nsubj _ _ 16 each _ DET DT _ 17 dep _ _ 17 fell _ VERB VBD _ 9 acl:relcl _ _ 18 more _ ADV RBR _ 20 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 20 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 17 dobj _ _ 22 when _ ADV WRB _ 24 advmod _ _ 23 they _ PRON PRP _ 24 nsubj _ _ 24 reopened _ VERB VBD _ 17 advcl _ _ 25 for _ ADP IN _ 26 case _ _ 26 trading _ NOUN NN _ 24 nmod _ _ 27 yesterday _ NOUN NN _ 24 nmod:tmod _ _ 28 after _ SCONJ IN _ 30 mark _ _ 29 being _ AUX VBG _ 30 auxpass _ _ 30 suspended _ VERB VBN _ 24 advcl _ _ 31 Friday _ PROPN NNP _ 32 compound _ _ 32 afternoon _ NOUN NN _ 30 nmod:tmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 UAL _ PROPN NNP _ 16 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 stock _ NOUN NN _ 1 appos _ _ 6 at _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 center _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 14 case _ _ 10 Friday _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 190.58-point _ ADJ JJ _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 plunge _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 fell _ VERB VBD _ 0 root _ _ 17 56 _ NUM CD _ 18 compound _ _ 18 7/8 _ NUM CD _ 16 dobj _ _ 19 to _ ADP TO _ 21 case _ _ 20 222 _ NUM CD _ 21 compound _ _ 21 7/8 _ NUM CD _ 16 nmod _ _ 22 on _ ADP IN _ 26 case _ _ 23 nearly _ ADV RB _ 25 advmod _ _ 24 2.3 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 26 nummod _ _ 26 shares _ NOUN NNS _ 16 nmod _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 Overall _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 `` _ PUNCT `` _ 8 punct _ _ 4 this _ PRON DT _ 8 nsubj _ _ 5 is _ VERB VBZ _ 8 cop _ _ 6 a _ DET DT _ 8 det _ _ 7 pleasant _ ADJ JJ _ 8 amod _ _ 8 rally _ NOUN NN _ 16 ccomp _ _ 9 but _ CONJ CC _ 8 cc _ _ 10 it _ PRON PRP _ 13 nsubj _ _ 11 's _ VERB VBZ _ 13 cop _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 selective _ ADJ JJ _ 8 conj _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Arthur _ PROPN NNP _ 19 compound _ _ 18 Cashin _ PROPN NNP _ 19 compound _ _ 19 Jr. _ PROPN NNP _ 16 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 a _ DET DT _ 25 det _ _ 22 veteran _ ADJ JJ _ 25 amod _ _ 23 PaineWebber _ PROPN NNP _ 25 compound _ _ 24 Inc. _ PROPN NNP _ 25 compound _ _ 25 trader _ NOUN NN _ 19 appos _ _ 26 at _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Big _ PROPN NNP _ 29 compound _ _ 29 Board _ PROPN NNP _ 25 nmod _ _ 30 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 Everyone _ NOUN NN _ 6 nsubjpass _ _ 3 was _ VERB VBD _ 6 auxpass _ _ 4 a _ DET DT _ 5 det _ _ 5 little _ ADV RB _ 6 dep _ _ 6 concerned _ VERB VBN _ 0 root _ _ 7 about _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 general _ ADJ JJ _ 10 amod _ _ 10 narrowness _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 rally _ NOUN NN _ 10 nmod _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 failure _ NOUN NN _ 10 conj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 OTC _ PROPN NNP _ 19 compound _ _ 19 market _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 get _ VERB VB _ 15 dep _ _ 22 into _ ADP IN _ 24 case _ _ 23 plus _ ADJ JJ _ 24 amod _ _ 24 territory _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 's _ VERB VBZ _ 6 cop _ _ 3 just _ ADV RB _ 6 advmod _ _ 4 a _ DET DT _ 6 det _ _ 5 strange _ ADJ JJ _ 6 amod _ _ 6 feeling _ NOUN NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 think _ VERB VBP _ 0 root _ _ 5 anyone _ NOUN NN _ 6 nsubj _ _ 6 left _ VERB VBD _ 4 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 place _ NOUN NN _ 6 dobj _ _ 9 whistling _ VERB VBG _ 6 xcomp _ _ 10 Dixie _ PROPN NNP _ 9 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rally _ NOUN NN _ 3 nsubj _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 credence _ NOUN NN _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 at _ ADP IN _ 3 advmod _ _ 7 least _ ADJ JJS _ 6 mwe _ _ 8 for _ ADP IN _ 9 case _ _ 9 now _ ADV RB _ 6 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 pre-trading _ ADJ JJ _ 14 amod _ _ 14 declaration _ NOUN NN _ 3 nmod _ _ 15 of _ ADP IN _ 22 case _ _ 16 Big _ PROPN NNP _ 22 compound _ _ 17 Board _ PROPN NNP _ 22 compound _ _ 18 Chairman _ PROPN NNP _ 22 compound _ _ 19 John _ PROPN NNP _ 22 compound _ _ 20 J. _ PROPN NNP _ 22 compound _ _ 21 Phelan _ PROPN NNP _ 22 compound _ _ 22 Jr. _ PROPN NNP _ 14 nmod _ _ 23 that _ SCONJ IN _ 32 mark _ _ 24 Friday _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 debacle _ NOUN NN _ 32 nsubj _ _ 28 was _ VERB VBD _ 32 cop _ _ 29 `` _ PUNCT `` _ 32 punct _ _ 30 an _ DET DT _ 32 det _ _ 31 abnormal _ ADJ JJ _ 32 amod _ _ 32 condition _ NOUN NN _ 14 dep _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 and _ CONJ CC _ 32 cc _ _ 35 not _ ADV RB _ 37 neg _ _ 36 a _ DET DT _ 37 det _ _ 37 disaster _ NOUN NN _ 32 conj _ _ 38 . _ PUNCT . _ 3 punct _ _ 39 '' _ PUNCT '' _ 3 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 to _ ADP TO _ 3 case _ _ 3 traders _ NOUN NNS _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 looked _ VERB VBD _ 0 root _ _ 7 like _ ADP IN _ 8 case _ _ 8 disaster _ NOUN NN _ 6 nmod _ _ 9 on _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 9:30 _ NUM CD _ 14 nummod _ _ 12 a.m. _ NOUN NN _ 14 compound _ _ 13 opening _ VERB VBG _ 14 amod _ _ 14 bell _ NOUN NN _ 6 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Dow _ PROPN NNP _ 5 compound _ _ 3 Jones _ PROPN NNP _ 5 compound _ _ 4 Industrial _ PROPN NNP _ 5 compound _ _ 5 Average _ PROPN NNP _ 6 nsubj _ _ 6 opened _ VERB VBD _ 0 root _ _ 7 down _ ADV RB _ 6 advmod _ _ 8 1.64 _ NUM CD _ 7 nmod:npmod _ _ 9 shortly _ ADV RB _ 11 advmod _ _ 10 after _ ADP IN _ 11 case _ _ 11 9:30 _ NUM CD _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 21 cc _ _ 2 most _ ADJ JJS _ 21 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 30 _ NUM CD _ 7 nummod _ _ 6 blue-chip _ ADJ JJ _ 7 amod _ _ 7 stocks _ NOUN NNS _ 2 nmod _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 average _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 including _ VERB VBG _ 14 case _ _ 13 Eastman _ PROPN NNP _ 14 compound _ _ 14 Kodak _ PROPN NNP _ 2 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 General _ PROPN NNP _ 17 compound _ _ 17 Motors _ PROPN NNP _ 14 conj _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 could _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 trade _ VERB VB _ 0 root _ _ 22 because _ ADV RB _ 26 case _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 the _ DET DT _ 26 det _ _ 25 heavy _ ADJ JJ _ 26 amod _ _ 26 backlog _ NOUN NN _ 21 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 sell _ NOUN NN _ 29 compound _ _ 29 orders _ NOUN NNS _ 26 nmod _ _ 30 left _ VERB VBD _ 29 acl _ _ 31 over _ ADP RP _ 30 compound:prt _ _ 32 from _ ADP IN _ 36 case _ _ 33 Friday _ PROPN NNP _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 late-afternoon _ ADJ JJ _ 36 amod _ _ 36 rout _ NOUN NN _ 30 nmod _ _ 37 . _ PUNCT . _ 21 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 9:45 _ NUM CD _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 Procter _ PROPN NNP _ 18 nsubj _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Gamble _ PROPN NNP _ 4 conj _ _ 7 -- _ PUNCT : _ 8 punct _ _ 8 one _ NUM CD _ 4 dep _ _ 9 of _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 most _ ADV RBS _ 12 advmod _ _ 12 important _ ADJ JJ _ 14 amod _ _ 13 Dow _ PROPN NNP _ 14 compound _ _ 14 bellwethers _ NOUN NNS _ 8 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 late _ ADJ JJ _ 8 acl _ _ 17 -- _ PUNCT : _ 8 punct _ _ 18 opened _ VERB VBN _ 0 root _ _ 19 down _ ADV RB _ 18 advmod _ _ 20 2 _ NUM CD _ 21 compound _ _ 21 3/4 _ NUM CD _ 19 nmod:npmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 117 _ NUM CD _ 19 nmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 3 nsubj _ _ 3 dropped _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 quick _ ADJ JJ _ 8 amod _ _ 7 27-point _ ADJ JJ _ 8 amod _ _ 8 loss _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 and _ CONJ CC _ 3 cc _ _ 11 to _ ADP TO _ 13 case _ _ 12 many _ ADJ JJ _ 13 amod _ _ 13 traders _ NOUN NNS _ 15 nmod _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 looked _ VERB VBD _ 3 conj _ _ 16 as _ SCONJ IN _ 20 mark _ _ 17 if _ SCONJ IN _ 16 mwe _ _ 18 stocks _ NOUN NNS _ 20 nsubjpass _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 headed _ VERB VBN _ 15 advcl _ _ 21 for _ ADP IN _ 25 case _ _ 22 yet _ ADV RB _ 25 advmod _ _ 23 another _ DET DT _ 25 det _ _ 24 big _ ADJ JJ _ 25 amod _ _ 25 tumble _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 More _ ADJ JJR _ 2 amod _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 opened _ VERB VBN _ 0 root _ _ 4 over _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 ensuing _ VERB VBG _ 8 amod _ _ 7 half _ ADJ JJ _ 8 amod _ _ 8 hour _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 as _ SCONJ IN _ 24 mark _ _ 11 the _ DET DT _ 16 det _ _ 12 49 _ NUM CD _ 16 nummod _ _ 13 Big _ PROPN NNP _ 16 compound _ _ 14 Board _ PROPN NNP _ 16 compound _ _ 15 specialist _ NOUN NN _ 16 compound _ _ 16 firms _ NOUN NNS _ 24 nsubj _ _ 17 in _ ADP IN _ 18 case _ _ 18 charge _ NOUN NN _ 16 nmod _ _ 19 of _ SCONJ IN _ 20 mark _ _ 20 keeping _ VERB VBG _ 18 acl _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 orderly _ ADV RB _ 20 xcomp _ _ 24 groped _ VERB VBD _ 3 advcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 find _ VERB VB _ 24 xcomp _ _ 27 buy _ NOUN NN _ 28 compound _ _ 28 orders _ NOUN NNS _ 26 dobj _ _ 29 from _ ADP IN _ 32 case _ _ 30 major _ ADJ JJ _ 32 amod _ _ 31 brokerage _ NOUN NN _ 32 compound _ _ 32 firms _ NOUN NNS _ 28 nmod _ _ 33 to _ PART TO _ 34 mark _ _ 34 match _ VERB VB _ 28 acl _ _ 35 the _ DET DT _ 37 det _ _ 36 selling _ NOUN NN _ 37 compound _ _ 37 flood _ NOUN NN _ 34 dobj _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Then _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 to _ PART TO _ 4 mark _ _ 4 make _ VERB VB _ 11 advcl _ _ 5 matters _ NOUN NNS _ 4 dobj _ _ 6 worse _ ADJ JJR _ 4 xcomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 computerized _ VERB VBN _ 10 amod _ _ 9 sell _ NOUN NN _ 10 compound _ _ 10 programs _ NOUN NNS _ 11 nsubj _ _ 11 kicked _ VERB VBD _ 0 root _ _ 12 in _ ADP RP _ 11 compound:prt _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 hammering _ VERB VBG _ 11 xcomp _ _ 15 stocks _ NOUN NNS _ 14 dobj _ _ 16 into _ ADP IN _ 18 case _ _ 17 steeper _ ADJ JJR _ 18 amod _ _ 18 losses _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 was _ VERB VBD _ 0 root _ _ 3 heavy _ ADJ JJ _ 5 amod _ _ 4 stock-index _ ADJ JJ _ 5 amod _ _ 5 arbitrage _ NOUN NN _ 2 nsubj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 as _ SCONJ IN _ 9 mark _ _ 8 traders _ NOUN NNS _ 9 nsubj _ _ 9 sold _ VERB VBD _ 2 advcl _ _ 10 big _ ADJ JJ _ 11 amod _ _ 11 baskets _ NOUN NNS _ 9 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 stock _ NOUN NN _ 11 nmod _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 bought _ VERB VBD _ 9 conj _ _ 16 stock-index _ ADJ JJ _ 17 amod _ _ 17 futures _ NOUN NNS _ 15 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 profit _ VERB VB _ 15 advcl _ _ 20 from _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 price _ NOUN NN _ 23 compound _ _ 23 discrepancies _ NOUN NNS _ 19 nmod _ _ 24 between _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 markets _ NOUN NNS _ 23 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 a _ DET DT _ 4 det _ _ 4 hangover _ NOUN NN _ 0 root _ _ 5 from _ ADP IN _ 6 case _ _ 6 Friday _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 when _ ADV WRB _ 17 advmod _ _ 9 Standard _ PROPN NNP _ 15 nmod:poss _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Poor _ PROPN NNP _ 9 conj _ _ 12 's _ PART POS _ 9 case _ _ 13 500-stock _ ADJ JJ _ 15 amod _ _ 14 index _ NOUN NN _ 15 compound _ _ 15 futures _ NOUN NNS _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 closed _ VERB VBN _ 6 acl:relcl _ _ 18 at _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 sharp _ ADJ JJ _ 21 amod _ _ 21 discount _ NOUN NN _ 17 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 stocks _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 onslaught _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 program _ NOUN NN _ 6 compound _ _ 6 selling _ NOUN NN _ 2 nmod _ _ 7 dashed _ VERB VBN _ 0 root _ _ 8 any _ DET DT _ 9 det _ _ 9 hopes _ NOUN NNS _ 7 dobj _ _ 10 that _ SCONJ IN _ 19 mark _ _ 11 some _ DET DT _ 19 nsubj _ _ 12 of _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 big _ ADJ JJ _ 17 amod _ _ 15 program _ NOUN NN _ 17 compound _ _ 16 trading _ NOUN NN _ 17 compound _ _ 17 firms _ NOUN NNS _ 11 nmod _ _ 18 would _ AUX MD _ 19 aux _ _ 19 hold _ VERB VB _ 9 ccomp _ _ 20 off _ ADP RP _ 19 compound:prt _ _ 21 until _ SCONJ IN _ 24 mark _ _ 22 the _ DET DT _ 23 det _ _ 23 market _ NOUN NN _ 24 nsubj _ _ 24 stabilized _ VERB VBD _ 19 advcl _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 did _ VERB VBD _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 3 nsubj _ _ 3 accelerated _ VERB VBD _ 0 root _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 slide _ NOUN NN _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 losing _ VERB VBG _ 3 advcl _ _ 8 63.52 _ NUM CD _ 7 dobj _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 first _ ADJ JJ _ 13 amod _ _ 12 40 _ NUM CD _ 13 nummod _ _ 13 minutes _ NOUN NNS _ 7 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 trading _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 With _ SCONJ IN _ 3 mark _ _ 2 program _ NOUN NN _ 3 compound _ _ 3 traders _ NOUN NNS _ 9 advcl _ _ 4 seemingly _ ADV RB _ 6 advmod _ _ 5 in _ ADP IN _ 6 case _ _ 6 charge _ NOUN NN _ 3 dep _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 buyers _ NOUN NNS _ 9 nsubj _ _ 9 backed _ VERB VBD _ 0 root _ _ 10 away _ ADP RP _ 9 compound:prt _ _ 11 from _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 watched _ VERB VBD _ 9 conj _ _ 16 stocks _ NOUN NNS _ 17 nsubj _ _ 17 fall _ VERB VB _ 15 ccomp _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Then _ ADV RB _ 7 advmod _ _ 2 at _ ADP IN _ 3 case _ _ 3 10:15 _ NUM CD _ 7 nmod _ _ 4 the _ DET DT _ 5 det _ _ 5 Dow _ PROPN NNP _ 7 nsubj _ _ 6 suddenly _ ADV RB _ 7 advmod _ _ 7 started _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 rebound _ VERB VB _ 7 xcomp _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 and _ CONJ CC _ 7 cc _ _ 12 when _ ADV WRB _ 14 advmod _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 shot _ VERB VBD _ 17 advcl _ _ 15 upward _ ADV RB _ 14 advmod _ _ 16 it _ PRON PRP _ 17 nsubj _ _ 17 did _ VERB VBD _ 7 conj _ _ 18 so _ ADV RB _ 17 advmod _ _ 19 even _ ADV RB _ 20 advmod _ _ 20 faster _ ADV RBR _ 17 advmod _ _ 21 than _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 early-morning _ ADJ JJ _ 24 amod _ _ 24 fall _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 And _ CONJ CC _ 11 cc _ _ 2 this _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 11 nmod:tmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 it _ PRON PRP _ 11 nsubj _ _ 6 was _ VERB VBD _ 11 cop _ _ 7 n't _ PART RB _ 11 neg _ _ 8 just _ ADV RB _ 11 advmod _ _ 9 the _ DET DT _ 11 det _ _ 10 program _ NOUN NN _ 11 compound _ _ 11 traders _ NOUN NNS _ 0 root _ _ 12 who _ PRON WP _ 14 nsubj _ _ 13 were _ VERB VBD _ 14 cop _ _ 14 responsible _ ADJ JJ _ 11 acl:relcl _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 All _ DET DT _ 3 det:predet _ _ 2 the _ DET DT _ 3 det _ _ 3 selling _ NOUN NN _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 pushed _ VERB VBN _ 0 root _ _ 6 stocks _ NOUN NNS _ 5 dobj _ _ 7 to _ ADP TO _ 10 case _ _ 8 such _ ADJ JJ _ 10 amod _ _ 9 cheap _ ADJ JJ _ 10 amod _ _ 10 values _ NOUN NNS _ 5 nmod _ _ 11 that _ SCONJ IN _ 20 mark _ _ 12 big _ ADJ JJ _ 14 amod _ _ 13 investment _ NOUN NN _ 14 compound _ _ 14 banks _ NOUN NNS _ 20 nsubj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 major _ ADJ JJ _ 19 amod _ _ 17 money _ NOUN NN _ 19 compound _ _ 18 management _ NOUN NN _ 19 compound _ _ 19 firms _ NOUN NNS _ 14 conj _ _ 20 started _ VERB VBD _ 10 dep _ _ 21 buying _ VERB VBG _ 20 xcomp _ _ 22 stocks _ NOUN NNS _ 21 dobj _ _ 23 heavily _ ADV RB _ 21 advmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 program _ NOUN NN _ 3 compound _ _ 3 traders _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 in _ ADV RB _ 6 advmod _ _ 6 there _ ADV RB _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 too _ ADV RB _ 6 advmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 of _ ADP IN _ 11 case _ _ 11 course _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 according _ VERB VBG _ 5 case _ _ 3 to _ ADP TO _ 2 mwe _ _ 4 one _ NUM CD _ 5 nummod _ _ 5 trader _ NOUN NN _ 12 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 programmers _ NOUN NNS _ 12 nsubj _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 did _ AUX VBD _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 look _ VERB VB _ 0 root _ _ 13 as _ ADV RB _ 14 advmod _ _ 14 dominant _ ADJ JJ _ 12 xcomp _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 upside _ ADV RB _ 14 nmod _ _ 18 as _ ADP IN _ 21 case _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 downside _ NOUN NN _ 14 nmod _ _ 22 because _ SCONJ IN _ 24 mark _ _ 23 there _ PRON EX _ 24 expl _ _ 24 was _ VERB VBD _ 12 advcl _ _ 25 -LCB- _ PUNCT -LRB- _ 24 punct _ _ 26 also _ ADV RB _ 24 advmod _ _ 27 -RCB- _ PUNCT -RRB- _ 24 punct _ _ 28 a _ DET DT _ 29 det _ _ 29 lot _ NOUN NN _ 24 nsubj _ _ 30 of _ ADP IN _ 31 case _ _ 31 bargain-hunting _ NOUN NN _ 29 nmod _ _ 32 '' _ PUNCT '' _ 31 punct _ _ 33 by _ ADP IN _ 34 case _ _ 34 institutions _ NOUN NNS _ 31 nmod _ _ 35 . _ PUNCT . _ 12 punct _ _ 1 Roland _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Machold _ PROPN NNP _ 22 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 director _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 Jersey _ PROPN NNP _ 10 compound _ _ 10 Division _ PROPN NNP _ 5 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Investment _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 oversees _ VERB VBZ _ 10 acl:relcl _ _ 16 $ _ SYM $ _ 15 dobj _ _ 17 29 _ NUM CD _ 18 compound _ _ 18 billion _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 20 case _ _ 20 investments _ NOUN NNS _ 16 nmod _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 the _ DET DT _ 26 det _ _ 24 `` _ PUNCT `` _ 26 punct _ _ 25 first _ ADJ JJ _ 26 amod _ _ 26 thing _ NOUN NN _ 29 nsubj _ _ 27 we _ PRON PRP _ 28 nsubj _ _ 28 did _ VERB VBD _ 26 acl:relcl _ _ 29 was _ VERB VBD _ 22 ccomp _ _ 30 to _ PART TO _ 31 mark _ _ 31 double _ VERB VB _ 29 xcomp _ _ 32 our _ PRON PRP$ _ 33 nmod:poss _ _ 33 orders _ NOUN NNS _ 31 dobj _ _ 34 '' _ PUNCT '' _ 31 punct _ _ 35 yesterday _ NOUN NN _ 36 compound _ _ 36 morning _ NOUN NN _ 31 nmod:tmod _ _ 37 . _ PUNCT . _ 22 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 With _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 5 dep _ _ 5 down _ ADV RB _ 12 advcl _ _ 6 like _ ADP IN _ 7 case _ _ 7 this _ PRON DT _ 5 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 we _ PRON PRP _ 12 nsubj _ _ 10 'll _ AUX MD _ 12 aux _ _ 11 probably _ ADV RB _ 12 advmod _ _ 12 take _ VERB VB _ 0 root _ _ 13 another _ DET DT _ 14 advmod _ _ 14 $ _ SYM $ _ 12 dobj _ _ 15 50 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 and _ CONJ CC _ 12 cc _ _ 18 put _ VERB VBD _ 12 conj _ _ 19 it _ PRON PRP _ 18 dobj _ _ 20 in _ ADP IN _ 23 case _ _ 21 '' _ PUNCT '' _ 23 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 market _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 12 punct _ _ 1 Trading _ NOUN NN _ 7 nsubj _ _ 2 in _ ADP IN _ 5 case _ _ 3 Walt _ PROPN NNP _ 5 compound _ _ 4 Disney _ PROPN NNP _ 5 compound _ _ 5 Co. _ PROPN NNP _ 1 nmod _ _ 6 particularly _ ADV RB _ 1 advmod _ _ 7 caught _ VERB VBD _ 0 root _ _ 8 traders _ NOUN NNS _ 10 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 eyes _ NOUN NNS _ 7 dobj _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 According _ VERB VBG _ 5 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 Big _ PROPN NNP _ 5 compound _ _ 4 Board _ PROPN NNP _ 5 compound _ _ 5 officials _ NOUN NNS _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Disney _ PROPN NNP _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 one _ NUM CD _ 8 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 biggest _ ADJ JJS _ 14 amod _ _ 13 sell-order _ ADJ JJ _ 14 amod _ _ 14 imbalances _ NOUN NNS _ 9 nmod _ _ 15 on _ ADP IN _ 16 case _ _ 16 Friday _ PROPN NNP _ 8 nmod _ _ 17 ; _ PUNCT : _ 8 punct _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 was _ VERB VBD _ 20 cop _ _ 20 one _ NUM CD _ 8 parataxis _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 seven _ NUM CD _ 24 nummod _ _ 24 stocks _ NOUN NNS _ 20 nmod _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 could _ AUX MD _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 finish _ VERB VB _ 24 acl:relcl _ _ 29 trading _ NOUN NN _ 28 dobj _ _ 30 that _ DET DT _ 31 det _ _ 31 day _ NOUN NN _ 28 nmod:tmod _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stock _ NOUN NN _ 3 nsubj _ _ 3 opened _ VERB VBD _ 0 root _ _ 4 late _ ADV RB _ 3 advmod _ _ 5 at _ ADP IN _ 7 case _ _ 6 114 _ NUM CD _ 7 compound _ _ 7 1/2 _ NUM CD _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 down _ ADV RB _ 3 advmod _ _ 10 8 _ NUM CD _ 11 compound _ _ 11 1/2 _ NUM CD _ 9 nmod:npmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 then _ ADV RB _ 4 advmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 shot _ VERB VBD _ 20 ccomp _ _ 5 upward _ ADV RB _ 4 advmod _ _ 6 7 _ NUM CD _ 7 compound _ _ 7 1/2 _ NUM CD _ 5 nmod:npmod _ _ 8 as _ SCONJ IN _ 14 mark _ _ 9 Goldman _ PROPN NNP _ 14 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Sachs _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Co. _ PROPN NNP _ 9 conj _ _ 14 stepped _ VERB VBD _ 4 advcl _ _ 15 in _ ADV RB _ 14 advmod _ _ 16 and _ CONJ CC _ 14 cc _ _ 17 bought _ VERB VBD _ 14 conj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 traders _ NOUN NNS _ 20 nsubj _ _ 20 said _ VERB VBD _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 However _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 Disney _ PROPN NNP _ 6 compound _ _ 4 specialist _ NOUN NN _ 6 compound _ _ 5 Robert _ PROPN NNP _ 6 compound _ _ 6 Fagenson _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 `` _ PUNCT `` _ 7 punct _ _ 10 I _ PRON PRP _ 13 nsubjpass _ _ 11 would _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 surprised _ VERB VBN _ 7 ccomp _ _ 14 if _ SCONJ IN _ 16 mark _ _ 15 Goldman _ PROPN NNP _ 16 nsubj _ _ 16 represented _ VERB VBD _ 13 advcl _ _ 17 4 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 opening _ NOUN NN _ 22 compound _ _ 22 volume _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 24 '' _ PUNCT '' _ 7 punct _ _ 1 Around _ ADP IN _ 3 case _ _ 2 Wall _ PROPN NNP _ 3 compound _ _ 3 Street _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 trading _ NOUN NN _ 6 compound _ _ 6 desks _ NOUN NNS _ 8 nsubjpass _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 relieved _ VERB VBN _ 0 root _ _ 9 that _ SCONJ IN _ 14 mark _ _ 10 they _ PRON PRP _ 14 nsubj _ _ 11 could _ AUX MD _ 14 aux _ _ 12 at _ ADP IN _ 14 advmod _ _ 13 least _ ADJ JJS _ 12 mwe _ _ 14 play _ VERB VB _ 8 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 14 dobj _ _ 17 yesterday _ NOUN NN _ 14 nmod:tmod _ _ 18 , _ PUNCT , _ 14 punct _ _ 19 in _ ADP IN _ 20 case _ _ 20 contrast _ NOUN NN _ 14 nmod _ _ 21 to _ ADP TO _ 24 case _ _ 22 Friday _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 gridlock _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 7 case _ _ 2 Donaldson _ PROPN NNP _ 7 compound _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Lufkin _ PROPN NNP _ 2 conj _ _ 5 & _ CONJ CC _ 2 cc _ _ 6 Jenrette _ PROPN NNP _ 2 conj _ _ 7 Inc. _ PROPN NNP _ 14 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 head _ NOUN NN _ 13 compound _ _ 10 equity _ NOUN NN _ 13 compound _ _ 11 trader _ NOUN NN _ 13 compound _ _ 12 Dudley _ PROPN NNP _ 13 compound _ _ 13 Eppel _ PROPN NNP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 : _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 14 punct _ _ 17 I _ PRON PRP _ 18 nsubj _ _ 18 think _ VERB VBP _ 14 ccomp _ _ 19 the _ DET DT _ 20 det _ _ 20 opening _ NOUN NN _ 22 nsubj _ _ 21 was _ VERB VBD _ 22 cop _ _ 22 constructive _ ADJ JJ _ 18 ccomp _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 orderly _ ADJ JJ _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 put _ VERB VBP _ 0 root _ _ 3 some _ DET DT _ 4 det _ _ 4 orders _ NOUN NNS _ 2 dobj _ _ 5 together _ ADV RB _ 2 advmod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 There _ ADV RB _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 n't _ PART RB _ 5 neg _ _ 4 a _ DET DT _ 5 det _ _ 5 lot _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 8 case _ _ 7 panic _ NOUN NN _ 8 compound _ _ 8 selling _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 either _ DET DT _ 11 cc:preconj _ _ 11 domestically _ ADV RB _ 5 advmod _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 internationally _ ADV RB _ 11 conj _ _ 14 ... _ PUNCT : _ 5 punct _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Not _ ADV RB _ 3 neg _ _ 2 like _ ADP IN _ 3 case _ _ 3 Friday _ PROPN NNP _ 0 root _ _ 4 where _ ADV WRB _ 7 advmod _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 just _ ADV RB _ 7 advmod _ _ 7 took _ VERB VBD _ 3 acl:relcl _ _ 8 -LCB- _ PUNCT -LRB- _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 7 dobj _ _ 11 -RCB- _ PUNCT -RRB- _ 7 punct _ _ 12 apart _ ADV RB _ 7 advmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 8 nsubj _ _ 5 had _ AUX VBD _ 8 aux _ _ 6 n't _ PART RB _ 8 neg _ _ 7 yet _ ADV RB _ 8 advmod _ _ 8 crossed _ VERB VBN _ 0 root _ _ 9 into _ ADP IN _ 11 case _ _ 10 positive _ ADJ JJ _ 11 amod _ _ 11 territory _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 traders _ NOUN NNS _ 16 nsubj _ _ 15 were _ VERB VBD _ 16 cop _ _ 16 glum _ ADJ JJ _ 8 conj _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 in _ ADP IN _ 5 case _ _ 3 another _ DET DT _ 5 det _ _ 4 dramatic _ ADJ JJ _ 5 amod _ _ 5 burst _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Dow _ PROPN NNP _ 9 nsubj _ _ 9 tacked _ VERB VBD _ 0 root _ _ 10 on _ ADP RP _ 12 dep _ _ 11 42 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 five _ NUM CD _ 15 nummod _ _ 15 minutes _ NOUN NNS _ 9 nmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 at _ ADP IN _ 19 case _ _ 19 10:25 _ NUM CD _ 22 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 index _ NOUN NN _ 22 nsubj _ _ 22 showed _ VERB VBD _ 9 conj _ _ 23 a _ DET DT _ 24 det _ _ 24 gain _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 26 case _ _ 26 5.74 _ NUM CD _ 24 nmod _ _ 27 . _ PUNCT . _ 9 punct _ _ 1 On _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 Big _ PROPN NNP _ 5 compound _ _ 4 Board _ PROPN NNP _ 5 compound _ _ 5 floor _ NOUN NN _ 12 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 on _ ADP IN _ 9 case _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 desks _ NOUN NNS _ 5 conj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 traders _ NOUN NNS _ 12 nsubj _ _ 12 yelped _ VERB VBD _ 0 root _ _ 13 their _ PRON PRP$ _ 14 nmod:poss _ _ 14 approval _ NOUN NN _ 12 dobj _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 Grinned _ VERB VBD _ 0 root _ _ 2 Griffith _ PROPN NNP _ 3 compound _ _ 3 Peck _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 trader _ NOUN NN _ 3 appos _ _ 7 in _ ADP IN _ 14 case _ _ 8 Shearson _ PROPN NNP _ 11 compound _ _ 9 Lehman _ PROPN NNP _ 11 compound _ _ 10 Hutton _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 OTC _ PROPN NNP _ 14 compound _ _ 14 department _ NOUN NN _ 6 nmod _ _ 15 : _ PUNCT : _ 1 punct _ _ 16 `` _ PUNCT `` _ 1 punct _ _ 17 I _ PRON PRP _ 18 nsubj _ _ 18 tell _ VERB VBP _ 1 ccomp _ _ 19 you _ PRON PRP _ 18 dobj _ _ 20 , _ PUNCT , _ 18 punct _ _ 21 this _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 acts _ VERB VBZ _ 18 ccomp _ _ 24 healthy _ ADJ JJ _ 23 xcomp _ _ 25 . _ PUNCT . _ 1 punct _ _ 26 '' _ PUNCT '' _ 1 punct _ _ 1 Around _ ADP IN _ 2 case _ _ 2 him _ PRON PRP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 scores _ NOUN NNS _ 7 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 traders _ NOUN NNS _ 4 nmod _ _ 7 seemed _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 get _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 11 det _ _ 11 burst _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 energy _ NOUN NN _ 11 nmod _ _ 14 ; _ PUNCT : _ 7 punct _ _ 15 their _ PRON PRP$ _ 16 nmod:poss _ _ 16 boss _ NOUN NN _ 17 nsubj _ _ 17 broke _ VERB VBD _ 7 parataxis _ _ 18 out _ ADP RP _ 17 compound:prt _ _ 19 bottles _ NOUN NNS _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 Perrier _ PROPN NNP _ 22 compound _ _ 22 water _ NOUN NN _ 19 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 cool _ VERB VB _ 17 advcl _ _ 25 them _ PRON PRP _ 24 dobj _ _ 26 off _ ADP RP _ 24 compound:prt _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 Big _ PROPN NNP _ 4 compound _ _ 3 Board _ PROPN NNP _ 4 compound _ _ 4 specialists _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 cry _ NOUN NN _ 8 nsubj _ _ 8 was _ VERB VBD _ 0 root _ _ 9 `` _ PUNCT `` _ 8 punct _ _ 10 Pull _ VERB VB _ 8 ccomp _ _ 11 your _ PRON PRP$ _ 12 nmod:poss _ _ 12 offers _ NOUN NNS _ 10 dobj _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 14 -- _ PUNCT : _ 15 punct _ _ 15 meaning _ VERB VBG _ 8 parataxis _ _ 16 that _ SCONJ IN _ 19 mark _ _ 17 specialists _ NOUN NNS _ 19 nsubj _ _ 18 soon _ ADV RB _ 19 advmod _ _ 19 expected _ VERB VBN _ 15 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 get _ VERB VB _ 19 xcomp _ _ 22 higher _ ADJ JJR _ 23 amod _ _ 23 prices _ NOUN NNS _ 21 dobj _ _ 24 for _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 shares _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 bedlam _ NOUN NN _ 10 ccomp _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 upside _ ADJ JJ _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Big _ PROPN NNP _ 14 compound _ _ 13 Board _ PROPN NNP _ 14 compound _ _ 14 specialist _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 not _ ADV RB _ 3 neg _ _ 3 everybody _ NOUN NN _ 5 nsubj _ _ 4 was _ AUX VBD _ 5 aux _ _ 5 making _ VERB VBG _ 0 root _ _ 6 money _ NOUN NN _ 5 dobj _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 carnage _ NOUN NN _ 18 nsubj _ _ 3 on _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det _ _ 5 Chicago _ PROPN NNP _ 8 compound _ _ 6 Board _ PROPN NNP _ 8 compound _ _ 7 Options _ PROPN NNP _ 8 compound _ _ 8 Exchange _ PROPN NNP _ 2 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 options _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 8 appos _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 was _ VERB VBD _ 18 cop _ _ 18 heavy _ ADJ JJ _ 0 root _ _ 19 after _ SCONJ IN _ 28 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 trading _ NOUN NN _ 28 nsubjpass _ _ 22 in _ ADP IN _ 26 case _ _ 23 S&P _ PROPN NNP _ 26 compound _ _ 24 100 _ NUM CD _ 26 nummod _ _ 25 stock-index _ ADJ JJ _ 26 amod _ _ 26 options _ NOUN NNS _ 21 nmod _ _ 27 was _ AUX VBD _ 28 auxpass _ _ 28 halted _ VERB VBN _ 18 advcl _ _ 29 Friday _ PROPN NNP _ 28 nmod:tmod _ _ 30 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 makers _ NOUN NNS _ 11 nsubj _ _ 4 in _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 10 det _ _ 6 S&P _ PROPN NNP _ 10 compound _ _ 7 100 _ NUM CD _ 10 nummod _ _ 8 index _ NOUN NN _ 10 compound _ _ 9 options _ NOUN NNS _ 10 compound _ _ 10 contract _ NOUN NN _ 3 nmod _ _ 11 had _ VERB VBD _ 0 root _ _ 12 bullish _ ADJ JJ _ 13 amod _ _ 13 positions _ NOUN NNS _ 11 dobj _ _ 14 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 when _ ADV WRB _ 20 advmod _ _ 18 the _ DET DT _ 19 det _ _ 19 shutdown _ NOUN NN _ 20 nsubj _ _ 20 came _ VERB VBD _ 23 advcl _ _ 21 they _ PRON PRP _ 23 nsubjpass _ _ 22 were _ AUX VBD _ 23 auxpass _ _ 23 frozen _ VERB VBN _ 11 conj _ _ 24 with _ ADP IN _ 26 case _ _ 25 huge _ ADJ JJ _ 26 amod _ _ 26 losses _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 Over _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 weekend _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 clearing _ NOUN NN _ 6 compound _ _ 6 firms _ NOUN NNS _ 7 nsubj _ _ 7 told _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 11 det _ _ 9 Chicago _ PROPN NNP _ 11 compound _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 makers _ NOUN NNS _ 7 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 get _ VERB VB _ 7 xcomp _ _ 14 out _ ADP IN _ 17 case _ _ 15 of _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 positions _ NOUN NNS _ 13 nmod _ _ 18 at _ ADP IN _ 20 case _ _ 19 any _ DET DT _ 20 det _ _ 20 cost _ NOUN NN _ 13 nmod _ _ 21 Monday _ PROPN NNP _ 22 compound _ _ 22 morning _ NOUN NN _ 13 nmod:tmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 absolutely _ ADV RB _ 5 advmod _ _ 5 killed _ VERB VBN _ 10 ccomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 slaughtered _ VERB VBN _ 5 dep _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Chicago-based _ ADJ JJ _ 14 amod _ _ 13 options _ NOUN NNS _ 14 compound _ _ 14 trader _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 22 mark _ _ 5 the _ DET DT _ 10 det _ _ 6 closely _ ADV RB _ 7 advmod _ _ 7 watched _ VERB VBN _ 10 amod _ _ 8 Major _ PROPN NNP _ 10 compound _ _ 9 Market _ PROPN NNP _ 10 compound _ _ 10 Index _ PROPN NNP _ 22 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 whose _ PRON WP$ _ 14 nmod:poss _ _ 13 20 _ NUM CD _ 14 nummod _ _ 14 stocks _ NOUN NNS _ 15 nsubj _ _ 15 mimic _ VERB VBP _ 10 acl:relcl _ _ 16 the _ DET DT _ 18 det _ _ 17 Dow _ PROPN NNP _ 18 compound _ _ 18 industrials _ NOUN NNS _ 15 dobj _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 did _ AUX VBD _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 lead _ VERB VB _ 3 ccomp _ _ 23 yesterday _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 big _ ADJ JJ _ 26 amod _ _ 26 rally _ NOUN NN _ 22 dobj _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Gallagher _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 partner _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 8 case _ _ 7 specialist _ NOUN NN _ 8 compound _ _ 8 Fowler _ PROPN NNP _ 5 nmod _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Rosenau _ PROPN NNP _ 8 conj _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 The _ DET DT _ 16 det _ _ 16 difference _ NOUN NN _ 36 nsubj _ _ 17 between _ ADP IN _ 18 case _ _ 18 today _ NOUN NN _ 16 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 years _ NOUN NNS _ 18 conj _ _ 22 ago _ ADV RB _ 21 advmod _ _ 23 '' _ PUNCT '' _ 21 punct _ _ 24 -- _ PUNCT : _ 27 punct _ _ 25 `` _ PUNCT `` _ 27 punct _ _ 26 Terrible _ PROPN NNP _ 27 compound _ _ 27 Tuesday _ PROPN NNP _ 21 dep _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 '' _ PUNCT '' _ 27 punct _ _ 30 Oct. _ PROPN NNP _ 27 nmod:tmod _ _ 31 20 _ NUM CD _ 30 nummod _ _ 32 , _ PUNCT , _ 30 punct _ _ 33 1987 _ NUM CD _ 30 nummod _ _ 34 -- _ PUNCT : _ 27 punct _ _ 35 `` _ PUNCT `` _ 36 punct _ _ 36 is _ VERB VBZ _ 12 ccomp _ _ 37 that _ DET DT _ 40 mark _ _ 38 then _ ADV RB _ 40 advmod _ _ 39 we _ PRON PRP _ 40 nsubj _ _ 40 needed _ VERB VBD _ 36 ccomp _ _ 41 a _ DET DT _ 42 det _ _ 42 savior _ NOUN NN _ 40 dobj _ _ 43 to _ PART TO _ 44 mark _ _ 44 go _ VERB VB _ 40 xcomp _ _ 45 into _ ADP IN _ 49 case _ _ 46 the _ DET DT _ 49 det _ _ 47 Major _ PROPN NNP _ 49 compound _ _ 48 Market _ PROPN NNP _ 49 compound _ _ 49 Index _ PROPN NNP _ 44 nmod _ _ 50 , _ PUNCT , _ 44 punct _ _ 51 spend _ VERB VB _ 44 conj _ _ 52 $ _ SYM $ _ 51 dobj _ _ 53 2 _ NUM CD _ 54 compound _ _ 54 million _ NUM CD _ 52 nummod _ _ 55 and _ CONJ CC _ 44 cc _ _ 56 get _ VERB VB _ 44 conj _ _ 57 the _ DET DT _ 59 det _ _ 58 program _ NOUN NN _ 59 compound _ _ 59 rally _ NOUN NN _ 60 nsubj _ _ 60 started _ VERB VBD _ 56 ccomp _ _ 61 . _ PUNCT . _ 12 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 6 nmod:tmod _ _ 3 -LCB- _ PUNCT -LRB- _ 6 punct _ _ 4 institutions _ NOUN NNS _ 6 nsubj _ _ 5 -RCB- _ PUNCT -RRB- _ 6 punct _ _ 6 saw _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 programs _ NOUN NNS _ 9 nsubj _ _ 9 coming _ VERB VBG _ 6 dep _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 backed _ VERB VBD _ 6 conj _ _ 12 away _ ADV RB _ 11 advmod _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 backed _ VERB VBD _ 6 conj _ _ 15 away _ ADV RB _ 14 advmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Then _ ADV RB _ 14 advmod _ _ 2 when _ ADV WRB _ 9 advmod _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 9 nsubj _ _ 5 was _ VERB VBD _ 9 cop _ _ 6 at _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 technical _ ADJ JJ _ 9 amod _ _ 9 level _ NOUN NN _ 14 advcl _ _ 10 to _ PART TO _ 11 mark _ _ 11 buy _ VERB VB _ 9 acl _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 came _ VERB VBD _ 0 root _ _ 15 in _ ADV RB _ 14 advmod _ _ 16 with _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 vengeance _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 14 punct _ _ 20 '' _ PUNCT '' _ 14 punct _ _ 1 However _ ADV RB _ 21 advmod _ _ 2 , _ PUNCT , _ 21 punct _ _ 3 according _ VERB VBG _ 6 case _ _ 4 to _ ADP TO _ 3 mwe _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 analyst _ NOUN NN _ 21 nmod _ _ 7 , _ PUNCT , _ 21 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 timing _ NOUN NN _ 21 nsubj _ _ 10 of _ ADP IN _ 15 case _ _ 11 Major _ PROPN NNP _ 15 compound _ _ 12 Market _ PROPN NNP _ 15 compound _ _ 13 Index _ PROPN NNP _ 15 compound _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 buying _ NOUN NN _ 9 nmod _ _ 16 just _ ADV RB _ 19 advmod _ _ 17 before _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 turnaround _ NOUN NN _ 21 nmod _ _ 20 was _ VERB VBD _ 21 cop _ _ 21 similar _ ADJ JJ _ 0 root _ _ 22 to _ ADP TO _ 23 case _ _ 23 that _ PRON DT _ 21 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 Terrible _ PROPN NNP _ 26 compound _ _ 26 Tuesday _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Futures _ NOUN NNS _ 4 nsubj _ _ 3 were _ AUX VBD _ 4 aux _ _ 4 pulling _ VERB VBG _ 11 ccomp _ _ 5 the _ DET DT _ 7 det _ _ 6 stock _ NOUN NN _ 7 compound _ _ 7 market _ NOUN NN _ 4 dobj _ _ 8 higher _ ADV RBR _ 4 advmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Donald _ PROPN NNP _ 13 compound _ _ 13 Selkin _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 head _ NOUN NN _ 13 appos _ _ 16 of _ ADP IN _ 19 case _ _ 17 stock-index _ ADJ JJ _ 19 amod _ _ 18 futures _ NOUN NNS _ 19 compound _ _ 19 research _ NOUN NN _ 15 nmod _ _ 20 at _ ADP IN _ 23 case _ _ 21 Prudential-Bache _ PROPN NNP _ 23 compound _ _ 22 Securities _ PROPN NNP _ 23 compound _ _ 23 Inc _ PROPN NNP _ 19 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 Although _ SCONJ IN _ 8 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 Big _ PROPN NNP _ 4 compound _ _ 4 Board _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 specialist _ NOUN NN _ 7 compound _ _ 7 firms _ NOUN NNS _ 8 nsubj _ _ 8 struggled _ VERB VBD _ 20 advcl _ _ 9 through _ ADP IN _ 14 case _ _ 10 another _ DET DT _ 14 det _ _ 11 highly _ ADV RB _ 12 advmod _ _ 12 volatile _ ADJ JJ _ 14 amod _ _ 13 trading _ NOUN NN _ 14 compound _ _ 14 session _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 performance _ NOUN NN _ 20 nsubj _ _ 18 yesterday _ NOUN NN _ 20 nmod:tmod _ _ 19 was _ VERB VBD _ 20 cop _ _ 20 better _ ADV RBR _ 0 root _ _ 21 than _ ADP IN _ 26 case _ _ 22 during _ ADP IN _ 26 case _ _ 23 Friday _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 late-afternoon _ ADJ JJ _ 26 amod _ _ 26 chaos _ NOUN NN _ 20 nmod _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 according _ VERB VBG _ 30 case _ _ 29 to _ ADP TO _ 28 mwe _ _ 30 traders _ NOUN NNS _ 20 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 brokers _ NOUN NNS _ 30 conj _ _ 33 who _ PRON WP _ 34 nsubj _ _ 34 work _ VERB VBP _ 30 acl:relcl _ _ 35 with _ ADP IN _ 36 case _ _ 36 them _ PRON PRP _ 34 nmod _ _ 37 . _ PUNCT . _ 20 punct _ _ 1 Specialists _ NOUN NNS _ 3 nsubjpass _ _ 2 were _ AUX VBD _ 3 auxpass _ _ 3 criticized _ VERB VBN _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 their _ PRON PRP$ _ 6 nmod:poss _ _ 6 inability _ NOUN NN _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 maintain _ VERB VB _ 6 acl _ _ 9 orderly _ ADJ JJ _ 10 amod _ _ 10 markets _ NOUN NNS _ 8 dobj _ _ 11 during _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Friday _ PROPN NNP _ 14 compound _ _ 14 plunge _ NOUN NN _ 8 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 yesterday _ NOUN NN _ 17 dep _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 even _ ADV RB _ 6 advmod _ _ 5 with _ ADP IN _ 6 case _ _ 6 halts _ NOUN NNS _ 17 nmod _ _ 7 in _ ADP IN _ 11 case _ _ 8 such _ ADJ JJ _ 11 amod _ _ 9 major _ ADJ JJ _ 11 amod _ _ 10 blue-chip _ ADJ JJ _ 11 amod _ _ 11 stocks _ NOUN NNS _ 6 nmod _ _ 12 as _ ADP IN _ 13 case _ _ 13 Merck _ PROPN NNP _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 we _ PRON PRP _ 17 nsubj _ _ 17 expected _ VERB VBD _ 30 dep _ _ 18 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 halts _ NOUN NNS _ 17 dobj _ _ 21 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 22 and _ CONJ CC _ 17 cc _ _ 23 it _ PRON PRP _ 27 nsubj _ _ 24 was _ VERB VBD _ 27 cop _ _ 25 n't _ PART RB _ 27 neg _ _ 26 too _ ADV RB _ 27 advmod _ _ 27 bad _ ADJ JJ _ 17 conj _ _ 28 , _ PUNCT , _ 17 punct _ _ 29 '' _ PUNCT '' _ 17 punct _ _ 30 said _ VERB VBD _ 0 root _ _ 31 Donaldson _ PROPN NNP _ 34 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 Mr. _ PROPN NNP _ 34 compound _ _ 34 Eppel _ PROPN NNP _ 30 nsubj _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 who _ PRON WP _ 39 nsubj _ _ 37 had _ AUX VBD _ 39 aux _ _ 38 been _ VERB VBN _ 39 cop _ _ 39 critical _ ADJ JJ _ 34 acl:relcl _ _ 40 of _ ADP IN _ 44 case _ _ 41 the _ DET DT _ 42 det _ _ 42 specialists _ NOUN NNS _ 44 nmod:poss _ _ 43 ' _ PART POS _ 42 case _ _ 44 performance _ NOUN NN _ 39 nmod _ _ 45 on _ ADP IN _ 46 case _ _ 46 Friday _ PROPN NNP _ 44 nmod _ _ 47 . _ PUNCT . _ 30 punct _ _ 1 According _ VERB VBG _ 6 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 a _ DET DT _ 6 det _ _ 4 Big _ PROPN NNP _ 6 compound _ _ 5 Board _ PROPN NNP _ 6 compound _ _ 6 official _ NOUN NN _ 15 nmod _ _ 7 , _ PUNCT , _ 15 punct _ _ 8 while _ SCONJ IN _ 11 mark _ _ 9 many _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 11 nsubj _ _ 11 opened _ VERB VBD _ 15 advcl _ _ 12 late _ ADV RB _ 11 advmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 there _ PRON EX _ 15 expl _ _ 15 were _ VERB VBD _ 0 root _ _ 16 subsequent _ ADJ JJ _ 18 amod _ _ 17 trading _ VERB VBG _ 18 amod _ _ 18 halts _ NOUN NNS _ 15 nsubj _ _ 19 in _ ADP IN _ 22 case _ _ 20 only _ ADV RB _ 22 advmod _ _ 21 three _ NUM CD _ 22 nummod _ _ 22 issues _ NOUN NNS _ 15 nmod _ _ 23 -- _ PUNCT : _ 22 punct _ _ 24 AMR _ PROPN NNP _ 22 dep _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Merck _ PROPN NNP _ 24 conj _ _ 27 and _ CONJ CC _ 24 cc _ _ 28 Valero _ PROPN NNP _ 29 compound _ _ 29 Energy _ PROPN NNP _ 24 conj _ _ 30 . _ PUNCT . _ 15 punct _ _ 1 Merck _ PROPN NNP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 one _ NUM CD _ 0 root _ _ 4 of _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 most _ ADV RBS _ 7 advmod _ _ 7 important _ ADJ JJ _ 8 amod _ _ 8 stocks _ NOUN NNS _ 3 nmod _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 Major _ PROPN NNP _ 13 compound _ _ 12 Market _ PROPN NNP _ 13 compound _ _ 13 Index _ PROPN NNP _ 8 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 sector _ NOUN NN _ 8 nsubjpass _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 2 nmod _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 spared _ VERB VBN _ 0 root _ _ 9 during _ ADP IN _ 15 case _ _ 10 the _ DET DT _ 13 det _ _ 11 past _ ADJ JJ _ 13 amod _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 days _ NOUN NNS _ 15 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 gyrations _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Yet _ ADV RB _ 21 advmod _ _ 2 from _ ADP IN _ 7 case _ _ 3 the _ DET DT _ 5 det _ _ 4 Dow _ PROPN NNP _ 5 compound _ _ 5 industrials _ NOUN NNS _ 7 nmod:poss _ _ 6 ' _ PART POS _ 5 case _ _ 7 high _ NOUN NN _ 21 nmod _ _ 8 on _ ADP IN _ 9 case _ _ 9 Oct. _ PROPN NNP _ 7 nmod _ _ 10 9 _ NUM CD _ 9 nummod _ _ 11 through _ ADP IN _ 14 case _ _ 12 Friday _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 plunge _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 21 punct _ _ 16 relatively _ ADV RB _ 18 advmod _ _ 17 good _ ADJ JJ _ 18 amod _ _ 18 performances _ NOUN NNS _ 21 nsubjpass _ _ 19 have _ AUX VBP _ 21 aux _ _ 20 been _ AUX VBN _ 21 auxpass _ _ 21 turned _ VERB VBN _ 0 root _ _ 22 in _ ADP RP _ 21 compound:prt _ _ 23 by _ ADP IN _ 24 case _ _ 24 real-estate _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 utilities _ NOUN NNS _ 24 conj _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 precious _ ADJ JJ _ 29 amod _ _ 29 metals _ NOUN NNS _ 24 conj _ _ 30 and _ CONJ CC _ 24 cc _ _ 31 life _ NOUN NN _ 33 compound _ _ 32 insurance _ NOUN NN _ 33 compound _ _ 33 stocks _ NOUN NNS _ 24 conj _ _ 34 . _ PUNCT . _ 21 punct _ _ 1 And _ CONJ CC _ 13 cc _ _ 2 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 the _ DET DT _ 8 det _ _ 5 top _ ADJ JJ _ 8 amod _ _ 6 performing _ NOUN NN _ 8 compound _ _ 7 industry _ NOUN NN _ 8 compound _ _ 8 group _ NOUN NN _ 13 nsubj _ _ 9 was _ VERB VBD _ 13 cop _ _ 10 oil _ NOUN NN _ 13 compound _ _ 11 field _ NOUN NN _ 13 compound _ _ 12 equipment _ NOUN NN _ 13 compound _ _ 13 issues _ NOUN NNS _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Halliburton _ PROPN NNP _ 5 nsubj _ _ 5 jumped _ VERB VBD _ 0 root _ _ 6 3 _ NUM CD _ 7 compound _ _ 7 1/4 _ NUM CD _ 5 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 38 _ NUM CD _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 Schlumberger _ PROPN NNP _ 12 nsubj _ _ 12 rose _ VERB VBD _ 5 conj _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 1/2 _ NUM CD _ 12 dobj _ _ 15 to _ ADP TO _ 17 case _ _ 16 43 _ NUM CD _ 17 compound _ _ 17 1/4 _ NUM CD _ 12 nmod _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 Baker _ PROPN NNP _ 20 compound _ _ 20 Hughes _ PROPN NNP _ 21 nsubj _ _ 21 rose _ VERB VBD _ 5 conj _ _ 22 1 _ NUM CD _ 23 compound _ _ 23 1/8 _ NUM CD _ 21 dobj _ _ 24 to _ ADP TO _ 25 case _ _ 25 22 _ NUM CD _ 21 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Because _ ADP IN _ 7 case _ _ 2 of _ ADP IN _ 1 mwe _ _ 3 the _ DET DT _ 7 det _ _ 4 UAL _ PROPN NNP _ 7 compound _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 AMR _ PROPN NNP _ 4 conj _ _ 7 tumbles _ NOUN NNS _ 13 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 airlines _ NOUN NNS _ 13 nsubj _ _ 10 were _ VERB VBD _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 weakest _ ADJ JJS _ 13 amod _ _ 13 sector _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 13 nmod _ _ 17 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Philip _ PROPN NNP _ 2 compound _ _ 2 Morris _ PROPN NNP _ 10 nsubj _ _ 3 was _ VERB VBD _ 10 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 Big _ PROPN NNP _ 6 compound _ _ 6 Board _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 most _ ADV RBS _ 9 advmod _ _ 9 active _ ADJ JJ _ 10 amod _ _ 10 issue _ NOUN NN _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 rising _ VERB VBG _ 10 advcl _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 1/4 _ NUM CD _ 12 dobj _ _ 15 to _ ADP TO _ 17 case _ _ 16 43 _ NUM CD _ 17 compound _ _ 17 1/4 _ NUM CD _ 12 nmod _ _ 18 on _ ADP IN _ 22 case _ _ 19 nearly _ ADV RB _ 21 advmod _ _ 20 eight _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 22 nummod _ _ 22 shares _ NOUN NNS _ 12 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 other _ ADJ JJ _ 4 amod _ _ 3 major _ ADJ JJ _ 4 amod _ _ 4 issues _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Coca-Cola _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 8 nsubj _ _ 8 closed _ VERB VBD _ 0 root _ _ 9 up _ ADV RB _ 8 advmod _ _ 10 2 _ NUM CD _ 9 nmod:npmod _ _ 11 at _ ADP IN _ 13 case _ _ 12 66 _ NUM CD _ 13 compound _ _ 13 3/4 _ NUM CD _ 8 nmod _ _ 14 on _ ADP IN _ 17 case _ _ 15 1.7 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 17 nummod _ _ 17 shares _ NOUN NNS _ 8 nmod _ _ 18 and _ CONJ CC _ 8 cc _ _ 19 American _ PROPN NNP _ 20 compound _ _ 20 Telephone _ PROPN NNP _ 23 nsubj _ _ 21 & _ CONJ CC _ 20 cc _ _ 22 Telegraph _ PROPN NNP _ 20 conj _ _ 23 rose _ VERB VBD _ 8 conj _ _ 24 3 _ NUM CD _ 25 compound _ _ 25 1/4 _ NUM CD _ 23 dobj _ _ 26 to _ ADP TO _ 27 case _ _ 27 43 _ NUM CD _ 23 nmod _ _ 28 on _ ADP IN _ 32 case _ _ 29 nearly _ ADV RB _ 31 advmod _ _ 30 7.8 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 32 nummod _ _ 32 shares _ NOUN NNS _ 23 nmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Shares _ PROPN NNP _ 12 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 International _ PROPN NNP _ 5 compound _ _ 4 Business _ PROPN NNP _ 5 compound _ _ 5 Machines _ PROPN NNP _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 reported _ VERB VBD _ 5 acl:relcl _ _ 9 earnings _ NOUN NNS _ 8 dobj _ _ 10 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 finished _ VERB VBN _ 0 root _ _ 13 at _ ADP IN _ 14 case _ _ 14 103 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 up _ ADV RB _ 12 advmod _ _ 17 1 _ NUM CD _ 16 nmod:npmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 after _ SCONJ IN _ 20 mark _ _ 20 slipping _ VERB VBG _ 12 advcl _ _ 21 below _ ADP IN _ 22 case _ _ 22 100 _ NUM CD _ 20 nmod _ _ 23 during _ ADP IN _ 26 case _ _ 24 Friday _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 session _ NOUN NN _ 20 nmod _ _ 27 for _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 first _ ADJ JJ _ 30 amod _ _ 30 time _ NOUN NN _ 20 nmod _ _ 31 in _ ADP IN _ 33 case _ _ 32 five _ NUM CD _ 33 nummod _ _ 33 years _ NOUN NNS _ 30 nmod _ _ 34 . _ PUNCT . _ 12 punct _ _ 1 Shares _ NOUN NNS _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 three _ NUM CD _ 5 nummod _ _ 4 brokerage _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 1 nmod _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 after _ SCONJ IN _ 9 mark _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 reported _ VERB VBD _ 6 advcl _ _ 10 earnings _ NOUN NNS _ 9 dobj _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 1 _ NUM CD _ 5 compound _ _ 5 3/4 _ NUM CD _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 28 _ NUM CD _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 PaineWebber _ PROPN NNP _ 10 nsubj _ _ 10 rose _ VERB VBD _ 3 conj _ _ 11 3/4 _ NUM CD _ 10 dobj _ _ 12 to _ ADP TO _ 14 case _ _ 13 18 _ NUM CD _ 14 compound _ _ 14 1/2 _ NUM CD _ 10 nmod _ _ 15 and _ CONJ CC _ 3 cc _ _ 16 Bear _ PROPN NNP _ 17 compound _ _ 17 Stearns _ PROPN NNP _ 18 nsubj _ _ 18 rose _ VERB VBD _ 3 conj _ _ 19 3/8 _ NUM CD _ 18 dobj _ _ 20 to _ ADP TO _ 22 case _ _ 21 14 _ NUM CD _ 22 compound _ _ 22 1/4 _ NUM CD _ 18 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Federal _ PROPN NNP _ 4 compound _ _ 2 National _ PROPN NNP _ 4 compound _ _ 3 Mortgage _ PROPN NNP _ 4 compound _ _ 4 Association _ PROPN NNP _ 11 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 9 det _ _ 7 recently _ ADV RB _ 8 advmod _ _ 8 hot _ ADJ JJ _ 9 amod _ _ 9 stock _ NOUN NN _ 4 appos _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 climbed _ VERB VBD _ 0 root _ _ 12 4 _ NUM CD _ 11 dobj _ _ 13 to _ ADP TO _ 14 case _ _ 14 124 _ NUM CD _ 11 nmod _ _ 15 on _ ADP IN _ 19 case _ _ 16 nearly _ ADV RB _ 18 advmod _ _ 17 1.6 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 19 nummod _ _ 19 shares _ NOUN NNS _ 11 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 news _ NOUN NN _ 4 compound _ _ 4 conference _ NOUN NN _ 22 nmod _ _ 5 after _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 close _ NOUN NN _ 22 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 trading _ NOUN NN _ 7 nmod _ _ 10 yesterday _ NOUN NN _ 22 nmod:tmod _ _ 11 , _ PUNCT , _ 22 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 Big _ PROPN NNP _ 14 compound _ _ 14 Board _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Phelan _ PROPN NNP _ 22 nsubj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 other _ ADJ JJ _ 21 amod _ _ 20 exchange _ NOUN NN _ 21 compound _ _ 21 officials _ NOUN NNS _ 17 conj _ _ 22 praised _ VERB VBD _ 0 root _ _ 23 the _ DET DT _ 24 det _ _ 24 performance _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 their _ PRON PRP$ _ 27 nmod:poss _ _ 27 computers _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 personnel _ NOUN NNS _ 27 conj _ _ 30 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ DET DT _ 10 mark _ _ 5 program _ NOUN NN _ 7 compound _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 strategies _ NOUN NNS _ 10 nsubj _ _ 8 were _ VERB VBD _ 10 cop _ _ 9 n't _ PART RB _ 10 neg _ _ 10 responsible _ ADJ JJ _ 3 ccomp _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 triggering _ VERB VBG _ 10 advcl _ _ 13 Friday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 decline _ NOUN NN _ 12 dobj _ _ 16 despite _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 jump _ NOUN NN _ 10 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 use _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 computer-driven _ ADJ JJ _ 25 amod _ _ 25 strategies _ NOUN NNS _ 21 nmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 months _ NOUN NNS _ 18 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 3 advmod _ _ 2 24 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 32 nsubj _ _ 4 of _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 10 det _ _ 6 more _ ADJ JJR _ 9 advmod _ _ 7 than _ ADP IN _ 6 mwe _ _ 8 100 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 shares _ NOUN NNS _ 3 nmod _ _ 11 traded _ VERB VBN _ 10 acl _ _ 12 in _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 final _ ADJ JJ _ 16 amod _ _ 15 90 _ NUM CD _ 16 nummod _ _ 16 minutes _ NOUN NNS _ 11 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 Friday _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 session _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 when _ ADV WRB _ 29 advmod _ _ 23 the _ DET DT _ 24 det _ _ 24 plunge _ NOUN NN _ 29 nsubjpass _ _ 25 in _ ADP IN _ 27 case _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 prices _ NOUN NNS _ 24 nmod _ _ 28 was _ AUX VBD _ 29 auxpass _ _ 29 concentrated _ VERB VBN _ 16 acl:relcl _ _ 30 , _ PUNCT , _ 16 punct _ _ 31 were _ VERB VBD _ 32 cop _ _ 32 program-related _ ADJ JJ _ 35 ccomp _ _ 33 , _ PUNCT , _ 35 punct _ _ 34 he _ PRON PRP _ 35 nsubj _ _ 35 said _ VERB VBD _ 0 root _ _ 36 . _ PUNCT . _ 35 punct _ _ 1 Program _ NOUN NN _ 2 compound _ _ 2 trades _ NOUN NNS _ 3 nsubj _ _ 3 make _ VERB VBP _ 0 root _ _ 4 up _ ADP RP _ 3 compound:prt _ _ 5 10 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 3 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 9 det _ _ 9 exchange _ NOUN NN _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 volume _ NOUN NN _ 6 nmod _ _ 12 on _ ADP IN _ 15 case _ _ 13 an _ DET DT _ 15 det _ _ 14 average _ ADJ JJ _ 15 amod _ _ 15 day _ NOUN NN _ 3 nmod _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 but _ CONJ CC _ 3 cc _ _ 18 despite _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 increase _ NOUN NN _ 28 nmod _ _ 21 Friday _ PROPN NNP _ 20 nmod:tmod _ _ 22 , _ PUNCT , _ 28 punct _ _ 23 it _ PRON PRP _ 28 nsubj _ _ 24 was _ VERB VBD _ 28 cop _ _ 25 `` _ PUNCT `` _ 28 punct _ _ 26 certainly _ ADV RB _ 28 advmod _ _ 27 not _ PART RB _ 28 neg _ _ 28 something _ NOUN NN _ 40 ccomp _ _ 29 you _ PRON PRP _ 31 nsubj _ _ 30 would _ AUX MD _ 31 aux _ _ 31 say _ VERB VB _ 28 acl:relcl _ _ 32 precipitated _ VERB VBD _ 31 ccomp _ _ 33 the _ DET DT _ 35 det _ _ 34 market _ NOUN NN _ 35 compound _ _ 35 decline _ NOUN NN _ 32 dobj _ _ 36 , _ PUNCT , _ 40 punct _ _ 37 '' _ PUNCT '' _ 40 punct _ _ 38 Mr. _ PROPN NNP _ 39 compound _ _ 39 Phelan _ PROPN NNP _ 40 nsubj _ _ 40 said _ VERB VBD _ 3 conj _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 expressed _ VERB VBD _ 0 root _ _ 4 relief _ NOUN NN _ 3 dobj _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 rebounded _ VERB VBD _ 4 ccomp _ _ 9 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 Obviously _ ADV RB _ 15 advmod _ _ 3 , _ PUNCT , _ 15 punct _ _ 4 every _ DET DT _ 5 det _ _ 5 time _ NOUN NN _ 15 nmod:tmod _ _ 6 we _ PRON PRP _ 7 nsubj _ _ 7 get _ VERB VBP _ 5 acl:relcl _ _ 8 this _ DET DT _ 9 det _ _ 9 kind _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 reaction _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 's _ AUX VBZ _ 15 aux _ _ 15 going _ VERB VBG _ 26 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 make _ VERB VB _ 15 xcomp _ _ 18 everybody _ NOUN NN _ 19 nsubj _ _ 19 nervous _ ADJ JJ _ 17 xcomp _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 including _ VERB VBG _ 22 case _ _ 22 me _ PRON PRP _ 19 dep _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 '' _ PUNCT '' _ 26 punct _ _ 25 he _ PRON PRP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 exchange _ NOUN NN _ 5 compound _ _ 5 officials _ NOUN NNS _ 6 nsubj _ _ 6 had _ VERB VBD _ 2 ccomp _ _ 7 conversations _ NOUN NNS _ 6 dobj _ _ 8 with _ ADP IN _ 11 case _ _ 9 Wall _ PROPN NNP _ 11 compound _ _ 10 Street _ PROPN NNP _ 11 compound _ _ 11 firms _ NOUN NNS _ 7 nmod _ _ 12 throughout _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 weekend _ NOUN NN _ 6 nmod _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 that _ SCONJ IN _ 21 mark _ _ 17 `` _ PUNCT `` _ 21 punct _ _ 18 all _ DET DT _ 20 det:predet _ _ 19 the _ DET DT _ 20 det _ _ 20 participants _ NOUN NNS _ 21 nsubj _ _ 21 behaved _ VERB VBD _ 6 conj _ _ 22 very _ ADV RB _ 25 advmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 responsibly _ ADV RB _ 21 advmod _ _ 26 today _ NOUN NN _ 21 nmod:tmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 28 '' _ PUNCT '' _ 2 punct _ _ 1 Meanwhile _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 Peter _ PROPN NNP _ 4 compound _ _ 4 DaPuzzo _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Shearson _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 head _ NOUN NN _ 4 appos _ _ 9 of _ ADP IN _ 12 case _ _ 10 retail _ ADJ JJ _ 12 amod _ _ 11 equity _ NOUN NN _ 12 compound _ _ 12 trading _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 praised _ VERB VBD _ 0 root _ _ 15 institutional _ ADJ JJ _ 16 amod _ _ 16 investors _ NOUN NNS _ 14 dobj _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 OTC _ PROPN NNP _ 20 compound _ _ 20 market _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 who _ PRON WP _ 25 nsubj _ _ 23 were _ VERB VBD _ 25 cop _ _ 24 heavy _ ADJ JJ _ 25 amod _ _ 25 buyers _ NOUN NNS _ 16 acl:relcl _ _ 26 of _ ADP IN _ 32 case _ _ 27 the _ DET DT _ 28 det _ _ 28 Nasdaq _ PROPN NNP _ 32 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 biggest _ ADJ JJS _ 32 amod _ _ 31 technology _ NOUN NN _ 32 compound _ _ 32 issues _ NOUN NNS _ 25 nmod _ _ 33 yesterday _ NOUN NN _ 25 nmod:tmod _ _ 34 amid _ ADP IN _ 36 case _ _ 35 a _ DET DT _ 36 det _ _ 36 flood _ NOUN NN _ 25 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 selling _ NOUN NN _ 36 nmod _ _ 39 by _ ADP IN _ 41 case _ _ 40 other _ ADJ JJ _ 41 amod _ _ 41 investors _ NOUN NNS _ 38 nmod _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 institutions _ NOUN NNS _ 7 nsubjpass _ _ 4 ca _ AUX MD _ 7 aux _ _ 5 n't _ PART RB _ 7 neg _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 criticized _ VERB VBN _ 15 ccomp _ _ 8 for _ ADP IN _ 10 case _ _ 9 their _ PRON PRP$ _ 10 nmod:poss _ _ 10 behavior _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 '' _ PUNCT '' _ 15 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 DaPuzzo _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 in _ ADP IN _ 18 case _ _ 17 an _ DET DT _ 18 det _ _ 18 interview _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 opposite _ NOUN NN _ 0 root _ _ 6 of _ SCONJ IN _ 8 mark _ _ 7 what _ PRON WP _ 8 nsubj _ _ 8 happened _ VERB VBD _ 5 acl _ _ 9 on _ ADP IN _ 10 case _ _ 10 Oct. _ PROPN NNP _ 8 nmod _ _ 11 19 _ NUM CD _ 10 nummod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 used _ VERB VBD _ 0 root _ _ 3 their _ PRON PRP$ _ 4 nmod:poss _ _ 4 judgment _ NOUN NN _ 2 dobj _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 panic _ NOUN NN _ 0 root _ _ 5 during _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 round _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 selling _ NOUN NN _ 8 nmod _ _ 11 this _ DET DT _ 12 det _ _ 12 morning _ NOUN NN _ 4 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Instead _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 bought _ VERB VBD _ 0 root _ _ 5 on _ ADP IN _ 6 case _ _ 6 weakness _ NOUN NN _ 4 nmod _ _ 7 and _ CONJ CC _ 4 cc _ _ 8 sold _ VERB VBD _ 4 conj _ _ 9 into _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 strength _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 kept _ VERB VBD _ 4 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 orderly _ ADJ JJ _ 14 xcomp _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Maybe _ ADV RB _ 3 advmod _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 learned _ VERB VBD _ 0 root _ _ 4 from _ ADP IN _ 5 case _ _ 5 experience _ NOUN NN _ 3 nmod _ _ 6 . _ PUNCT . _ 3 punct _ _ 7 '' _ PUNCT '' _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 performance _ NOUN NN _ 13 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 specialists _ NOUN NNS _ 5 nmod _ _ 8 during _ ADP IN _ 11 case _ _ 9 Friday _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 plunge _ NOUN NN _ 5 nmod _ _ 12 was _ VERB VBD _ 13 cop _ _ 13 admirable _ ADJ JJ _ 3 ccomp _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 because _ SCONJ IN _ 30 mark _ _ 16 out _ ADP IN _ 22 case _ _ 17 of _ ADP IN _ 22 case _ _ 18 1,640 _ NUM CD _ 22 nummod _ _ 19 Big _ PROPN NNP _ 22 compound _ _ 20 Board _ PROPN NNP _ 22 compound _ _ 21 common _ ADJ JJ _ 22 amod _ _ 22 stocks _ NOUN NNS _ 30 nmod _ _ 23 traded _ VERB VBN _ 22 acl _ _ 24 during _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 day _ NOUN NN _ 23 nmod _ _ 27 only _ ADV RB _ 28 advmod _ _ 28 seven _ NUM CD _ 30 nsubjpass _ _ 29 were _ AUX VBD _ 30 auxpass _ _ 30 closed _ VERB VBN _ 13 advcl _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 were _ AUX VBD _ 34 auxpass _ _ 33 n't _ PART RB _ 34 neg _ _ 34 reopened _ VERB VBN _ 30 conj _ _ 35 before _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 close _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 They _ PRON PRP _ 3 nsubj _ _ 3 did _ VERB VBD _ 11 ccomp _ _ 4 an _ DET DT _ 6 det _ _ 5 excellent _ ADJ JJ _ 6 amod _ _ 6 job _ NOUN NN _ 3 dobj _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 '' _ PUNCT '' _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Phelan _ PROPN NNP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 specialists _ NOUN NNS _ 11 nmod _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 Wall _ PROPN NNP _ 3 compound _ _ 2 Street _ PROPN NNP _ 3 compound _ _ 3 traders _ NOUN NNS _ 7 nsubj _ _ 4 on _ ADP IN _ 5 case _ _ 5 Friday _ PROPN NNP _ 7 nmod _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 complained _ VERB VBN _ 0 root _ _ 8 about _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 trading _ VERB VBG _ 11 amod _ _ 11 suspensions _ NOUN NNS _ 7 nmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 James _ PROPN NNP _ 3 compound _ _ 2 A. _ PROPN NNP _ 3 compound _ _ 3 White _ PROPN NNP _ 7 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Sonja _ PROPN NNP _ 6 compound _ _ 6 Steptoe _ PROPN NNP _ 3 conj _ _ 7 contributed _ VERB VBD _ 0 root _ _ 8 to _ ADP TO _ 10 case _ _ 9 this _ DET DT _ 10 det _ _ 10 article _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 West _ PROPN NNP _ 2 compound _ _ 2 Germany _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 Green _ PROPN NNP _ 5 compound _ _ 5 Party _ PROPN NNP _ 6 nsubj _ _ 6 joined _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 ideological _ ADJ JJ _ 9 amod _ _ 9 soulmates _ NOUN NNS _ 6 dobj _ _ 10 Jeremy _ PROPN NNP _ 11 compound _ _ 11 Rifkin _ PROPN NNP _ 9 dep _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 Christic _ PROPN NNP _ 15 compound _ _ 15 Institute _ PROPN NNP _ 11 conj _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 legal _ ADJ JJ _ 19 amod _ _ 19 battle _ NOUN NN _ 6 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 ground _ VERB VB _ 19 acl _ _ 22 the _ DET DT _ 24 det _ _ 23 Atlantis _ PROPN NNP _ 24 compound _ _ 24 shuttle _ NOUN NN _ 21 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 its _ PRON PRP$ _ 29 nmod:poss _ _ 27 plutonium-powered _ ADJ JJ _ 29 amod _ _ 28 Galileo _ PROPN NNP _ 29 compound _ _ 29 probe _ NOUN NN _ 24 conj _ _ 30 to _ ADP TO _ 31 case _ _ 31 Jupiter _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 anti-defense _ ADJ JJ _ 3 amod _ _ 3 Greens _ NOUN NNS _ 4 nsubj _ _ 4 wanted _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 9 det _ _ 6 Washington _ PROPN NNP _ 9 compound _ _ 7 federal _ ADJ JJ _ 9 amod _ _ 8 appeals _ NOUN NNS _ 9 compound _ _ 9 court _ NOUN NN _ 4 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 block _ VERB VB _ 4 xcomp _ _ 12 today _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 scheduled _ VERB VBN _ 15 amod _ _ 15 liftoff _ NOUN NN _ 11 dobj _ _ 16 long _ ADV RB _ 17 advmod _ _ 17 enough _ ADV RB _ 11 advmod _ _ 18 for _ SCONJ IN _ 21 mark _ _ 19 them _ PRON PRP _ 21 nsubj _ _ 20 to _ PART TO _ 21 mark _ _ 21 ask _ VERB VB _ 17 advcl _ _ 22 the _ DET DT _ 24 det _ _ 23 World _ PROPN NNP _ 24 compound _ _ 24 Court _ PROPN NNP _ 21 dobj _ _ 25 to _ PART TO _ 27 mark _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 order _ VERB VB _ 21 xcomp _ _ 28 '' _ PUNCT '' _ 27 punct _ _ 29 a _ DET DT _ 31 det _ _ 30 permanent _ ADJ JJ _ 31 amod _ _ 31 cancellation _ NOUN NN _ 27 dobj _ _ 32 of _ ADP IN _ 37 case _ _ 33 the _ DET DT _ 37 det _ _ 34 $ _ SYM $ _ 37 amod _ _ 35 1.5 _ NUM CD _ 36 compound _ _ 36 billion _ NUM CD _ 34 nummod _ _ 37 flight _ NOUN NN _ 31 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 three-judge _ ADJ JJ _ 4 amod _ _ 3 appeals _ NOUN NNS _ 4 compound _ _ 4 panel _ NOUN NN _ 6 nsubj _ _ 5 yesterday _ NOUN NN _ 6 nmod:tmod _ _ 6 refused _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 comply _ VERB VB _ 6 xcomp _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 though _ SCONJ IN _ 15 mark _ _ 11 liberal _ ADJ JJ _ 14 amod _ _ 12 Judge _ PROPN NNP _ 14 compound _ _ 13 Pat _ PROPN NNP _ 14 compound _ _ 14 Wald _ PROPN NNP _ 15 nsubj _ _ 15 went _ VERB VBD _ 6 advcl _ _ 16 out _ ADP IN _ 19 case _ _ 17 of _ ADP IN _ 19 case _ _ 18 her _ PRON PRP$ _ 19 nmod:poss _ _ 19 way _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 deny _ VERB VB _ 15 xcomp _ _ 22 that _ SCONJ IN _ 29 mark _ _ 23 this _ PRON DT _ 29 nsubj _ _ 24 was _ VERB VBD _ 29 cop _ _ 25 a _ DET DT _ 29 det _ _ 26 `` _ PUNCT `` _ 29 punct _ _ 27 frivolous _ ADJ JJ _ 29 amod _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 case _ NOUN NN _ 21 ccomp _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 4 nmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 was _ VERB VBD _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 NASA _ PROPN NNP _ 4 nsubj _ _ 2 should _ AUX MD _ 4 aux _ _ 3 now _ ADV RB _ 4 advmod _ _ 4 sue _ VERB VB _ 0 root _ _ 5 for _ ADP IN _ 6 case _ _ 6 fines _ NOUN NNS _ 4 nmod _ _ 7 against _ ADP IN _ 10 case _ _ 8 all _ DET DT _ 10 det _ _ 9 three _ NUM CD _ 10 nummod _ _ 10 politico-plaintiffs _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 foreign _ ADJ JJ _ 10 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 domestic _ ADJ JJ _ 12 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 for _ SCONJ IN _ 17 mark _ _ 17 bringing _ VERB VBG _ 6 acl _ _ 18 this _ DET DT _ 20 det _ _ 19 mischievous _ ADJ JJ _ 20 amod _ _ 20 case _ NOUN NN _ 17 dobj _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 House-Senate _ ADJ JJ _ 3 amod _ _ 3 conference _ NOUN NN _ 4 nsubj _ _ 4 approved _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 8 det _ _ 6 permanent _ ADJ JJ _ 8 amod _ _ 7 smoking _ NOUN NN _ 8 compound _ _ 8 ban _ NOUN NN _ 4 dobj _ _ 9 on _ ADP IN _ 13 case _ _ 10 all _ DET DT _ 13 det _ _ 11 domestic _ ADJ JJ _ 13 amod _ _ 12 airline _ NOUN NN _ 13 compound _ _ 13 routes _ NOUN NNS _ 8 nmod _ _ 14 within _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 continental _ ADJ JJ _ 17 amod _ _ 17 U.S. _ PROPN NNP _ 13 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 on _ ADP IN _ 21 case _ _ 20 all _ DET DT _ 21 det _ _ 21 flights _ NOUN NNS _ 13 conj _ _ 22 of _ ADP IN _ 24 case _ _ 23 six _ NUM CD _ 24 nummod _ _ 24 hours _ NOUN NNS _ 21 nmod _ _ 25 or _ CONJ CC _ 26 cc _ _ 26 less _ ADJ JJR _ 24 nummod _ _ 27 to _ ADP TO _ 28 case _ _ 28 Alaska _ PROPN NNP _ 21 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 Hawaii _ PROPN NNP _ 28 conj _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 restrictions _ NOUN NNS _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 cover _ VERB VB _ 0 root _ _ 5 all _ DET DT _ 4 dobj _ _ 6 but _ CONJ CC _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 small _ ADJ JJ _ 9 amod _ _ 9 percentage _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 domestic _ ADJ JJ _ 13 amod _ _ 12 air _ NOUN NN _ 13 compound _ _ 13 traffic _ NOUN NN _ 5 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 represent _ VERB VB _ 4 conj _ _ 17 a _ DET DT _ 19 det _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 expansion _ NOUN NN _ 16 dobj _ _ 20 of _ ADP IN _ 24 case _ _ 21 the _ DET DT _ 24 det _ _ 22 current _ ADJ JJ _ 24 amod _ _ 23 smoking _ NOUN NN _ 24 compound _ _ 24 ban _ NOUN NN _ 19 nmod _ _ 25 on _ ADP IN _ 26 case _ _ 26 flights _ NOUN NNS _ 24 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 two _ NUM CD _ 29 nummod _ _ 29 hours _ NOUN NNS _ 26 nmod _ _ 30 or _ CONJ CC _ 31 cc _ _ 31 less _ ADJ JJR _ 29 nummod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 exemption _ NOUN NN _ 11 nsubj _ _ 3 allowed _ VERB VBN _ 2 acl _ _ 4 on _ ADP IN _ 6 case _ _ 5 longer _ ADJ JJR _ 6 amod _ _ 6 flights _ NOUN NNS _ 3 nmod _ _ 7 to _ ADP TO _ 8 case _ _ 8 Alaska _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Hawaii _ PROPN NNP _ 8 conj _ _ 11 appears _ VERB VBZ _ 0 root _ _ 12 to _ PART TO _ 17 mark _ _ 13 be _ VERB VB _ 17 cop _ _ 14 largely _ ADV RB _ 17 advmod _ _ 15 a _ DET DT _ 17 det _ _ 16 face-saving _ ADJ JJ _ 17 amod _ _ 17 concession _ NOUN NN _ 11 xcomp _ _ 18 for _ ADP IN _ 23 case _ _ 19 the _ DET DT _ 23 det _ _ 20 traditionally _ ADV RB _ 21 advmod _ _ 21 powerful _ ADJ JJ _ 23 amod _ _ 22 tobacco _ NOUN NN _ 23 compound _ _ 23 industry _ NOUN NN _ 17 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 which _ PRON WDT _ 27 nsubj _ _ 26 has _ AUX VBZ _ 27 aux _ _ 27 found _ VERB VBN _ 23 acl:relcl _ _ 28 itself _ PRON PRP _ 30 nsubj _ _ 29 increasingly _ ADV RB _ 30 advmod _ _ 30 isolated _ VERB VBN _ 27 xcomp _ _ 31 in _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 face _ NOUN NN _ 27 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 public _ ADJ JJ _ 36 amod _ _ 36 pressure _ NOUN NN _ 33 nmod _ _ 37 in _ ADP IN _ 39 case _ _ 38 recent _ ADJ JJ _ 39 amod _ _ 39 years _ NOUN NNS _ 27 nmod _ _ 40 . _ PUNCT . _ 11 punct _ _ 1 By _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 6-4 _ NUM CD _ 4 nummod _ _ 4 margin _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 House _ PROPN NNP _ 7 compound _ _ 7 negotiators _ NOUN NNS _ 9 nsubj _ _ 8 initially _ ADV RB _ 9 advmod _ _ 9 rejected _ VERB VBD _ 0 root _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 night _ NOUN NN _ 9 nmod:tmod _ _ 12 a _ DET DT _ 14 det _ _ 13 Senate _ PROPN NNP _ 14 compound _ _ 14 provision _ NOUN NN _ 9 dobj _ _ 15 covering _ VERB VBG _ 14 acl _ _ 16 all _ DET DT _ 18 det _ _ 17 domestic _ ADJ JJ _ 18 amod _ _ 18 flights _ NOUN NNS _ 15 dobj _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 six-hour _ ADJ JJ _ 4 amod _ _ 4 compromise _ NOUN NN _ 7 nsubjpass _ _ 5 was _ AUX VBD _ 7 auxpass _ _ 6 soon _ ADV RB _ 7 advmod _ _ 7 agreed _ VERB VBN _ 0 root _ _ 8 to _ ADP TO _ 7 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 subsequent _ ADJ JJ _ 11 amod _ _ 11 discussions _ NOUN NNS _ 7 nmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 As _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 practical _ ADJ JJ _ 4 amod _ _ 4 matter _ NOUN NN _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 flights _ NOUN NNS _ 15 nsubjpass _ _ 7 from _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 West _ PROPN NNP _ 10 compound _ _ 10 Coast _ PROPN NNP _ 6 nmod _ _ 11 to _ ADP TO _ 12 case _ _ 12 Hawaii _ PROPN NNP _ 6 nmod _ _ 13 would _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 covered _ VERB VBN _ 0 root _ _ 16 as _ SCONJ IN _ 22 mark _ _ 17 they _ PRON PRP _ 22 nsubj _ _ 18 are _ VERB VBP _ 22 cop _ _ 19 under _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 time _ NOUN NN _ 22 compound _ _ 22 limit _ NOUN NN _ 15 advcl _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 but _ CONJ CC _ 15 cc _ _ 25 the _ DET DT _ 26 det _ _ 26 language _ NOUN NN _ 28 nsubj _ _ 27 would _ AUX MD _ 28 aux _ _ 28 exempt _ VERB VB _ 15 conj _ _ 29 longer _ ADJ JJR _ 30 amod _ _ 30 routes _ NOUN NNS _ 28 dobj _ _ 31 beginning _ VERB VBG _ 30 acl _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 for _ ADP IN _ 34 case _ _ 34 example _ NOUN NN _ 31 nmod _ _ 35 , _ PUNCT , _ 31 punct _ _ 36 in _ ADP IN _ 37 case _ _ 37 Chicago _ PROPN NNP _ 31 nmod _ _ 38 or _ CONJ CC _ 37 cc _ _ 39 on _ ADP IN _ 42 case _ _ 40 the _ DET DT _ 42 det _ _ 41 East _ PROPN NNP _ 42 compound _ _ 42 Coast _ PROPN NNP _ 37 conj _ _ 43 . _ PUNCT . _ 15 punct _ _ 1 Within _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 Senate _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 ban _ NOUN NN _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 had _ VERB VBD _ 0 root _ _ 9 aggressive _ ADJ JJ _ 10 amod _ _ 10 support _ NOUN NN _ 8 dobj _ _ 11 from _ ADP IN _ 14 case _ _ 12 Sen. _ PROPN NNP _ 14 compound _ _ 13 Frank _ PROPN NNP _ 14 compound _ _ 14 Lautenberg _ PROPN NNP _ 10 nmod _ _ 15 -LRB- _ PUNCT -LRB- _ 16 punct _ _ 16 D. _ PROPN NNP _ 14 appos _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 N.J. _ PROPN NNP _ 16 dep _ _ 19 -RRB- _ PUNCT -RRB- _ 16 punct _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 who _ PRON WP _ 23 nsubj _ _ 22 has _ AUX VBZ _ 23 aux _ _ 23 used _ VERB VBN _ 14 acl:relcl _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 position _ NOUN NN _ 23 dobj _ _ 26 as _ ADP IN _ 31 case _ _ 27 a _ DET DT _ 31 det _ _ 28 Senate _ PROPN NNP _ 31 compound _ _ 29 Appropriations _ PROPN NNP _ 31 compound _ _ 30 subcommittee _ NOUN NN _ 31 compound _ _ 31 chairman _ NOUN NN _ 25 nmod _ _ 32 to _ PART TO _ 33 mark _ _ 33 garner _ VERB VB _ 23 advcl _ _ 34 votes _ NOUN NNS _ 33 dobj _ _ 35 for _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 initiative _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 attached _ VERB VBN _ 0 root _ _ 5 to _ ADP TO _ 15 case _ _ 6 the _ DET DT _ 15 det _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 $ _ SYM $ _ 15 amod _ _ 10 26 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 fiscal _ ADJ JJ _ 15 amod _ _ 13 1990 _ NUM CD _ 15 nummod _ _ 14 transportation _ NOUN NN _ 15 compound _ _ 15 bill _ NOUN NN _ 4 nmod _ _ 16 within _ ADP IN _ 20 case _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Lautenberg _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 jurisdiction _ NOUN NN _ 15 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 and _ CONJ CC _ 4 cc _ _ 23 the _ DET DT _ 25 det _ _ 24 final _ ADJ JJ _ 25 amod _ _ 25 compromise _ NOUN NN _ 27 nsubjpass _ _ 26 is _ AUX VBZ _ 27 auxpass _ _ 27 laced _ VERB VBN _ 4 conj _ _ 28 with _ ADP IN _ 31 case _ _ 29 more _ ADJ JJR _ 31 advmod _ _ 30 than _ ADP IN _ 29 mwe _ _ 31 $ _ SYM $ _ 27 nmod _ _ 32 205 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 in _ ADP IN _ 36 case _ _ 35 road _ NOUN NN _ 36 compound _ _ 36 projects _ NOUN NNS _ 31 nmod _ _ 37 earmarked _ VERB VBN _ 31 acl _ _ 38 by _ ADP IN _ 39 case _ _ 39 members _ NOUN NNS _ 37 nmod _ _ 40 as _ ADV RB _ 31 cc _ _ 41 well _ ADV RB _ 40 mwe _ _ 42 as _ ADP IN _ 40 mwe _ _ 43 funds _ NOUN NNS _ 31 conj _ _ 44 sought _ VERB VBD _ 43 acl _ _ 45 by _ ADP IN _ 47 case _ _ 46 major _ ADJ JJ _ 47 amod _ _ 47 airports _ NOUN NNS _ 44 nmod _ _ 48 , _ PUNCT , _ 47 punct _ _ 49 including _ VERB VBG _ 50 case _ _ 50 Denver _ PROPN NNP _ 47 nmod _ _ 51 . _ PUNCT . _ 4 punct _ _ 1 From _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 outset _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 tobacco _ NOUN NN _ 7 compound _ _ 7 industry _ NOUN NN _ 10 nsubj _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ VERB VBN _ 10 cop _ _ 10 uncertain _ ADJ JJ _ 0 root _ _ 11 as _ ADP IN _ 16 case _ _ 12 to _ ADP TO _ 16 mark _ _ 13 what _ PRON WP _ 14 det _ _ 14 strategy _ NOUN NN _ 16 nsubj _ _ 15 to _ PART TO _ 16 mark _ _ 16 follow _ VERB VB _ 10 dep _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 industry _ NOUN NN _ 4 nsubj _ _ 4 retains _ VERB VBZ _ 0 root _ _ 5 support _ NOUN NN _ 4 dobj _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 House _ PROPN NNP _ 9 compound _ _ 9 leadership _ NOUN NN _ 4 nmod _ _ 10 through _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 influence _ NOUN NN _ 4 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 grower _ NOUN NN _ 15 compound _ _ 15 states _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 such _ ADJ JJ _ 20 case _ _ 18 as _ ADP IN _ 17 mwe _ _ 19 North _ PROPN NNP _ 20 compound _ _ 20 Carolina _ PROPN NNP _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 Majority _ PROPN NNP _ 4 compound _ _ 2 Whip _ PROPN NNP _ 4 compound _ _ 3 William _ PROPN NNP _ 4 compound _ _ 4 Gray _ PROPN NNP _ 5 nsubj _ _ 5 owes _ VERB VBZ _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 political _ ADJ JJ _ 8 amod _ _ 8 debt _ NOUN NN _ 5 dobj _ _ 9 to _ ADP TO _ 12 case _ _ 10 Southern _ ADJ JJ _ 12 amod _ _ 11 agriculture _ NOUN NN _ 12 compound _ _ 12 lawmakers _ NOUN NNS _ 5 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 his _ PRON PRP$ _ 15 nmod:poss _ _ 15 rise _ NOUN NN _ 5 nmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 House _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 and _ CONJ CC _ 5 cc _ _ 21 the _ DET DT _ 23 det _ _ 22 Philadelphia _ PROPN NNP _ 23 compound _ _ 23 Democrat _ PROPN NNP _ 24 nsubj _ _ 24 used _ VERB VBD _ 5 conj _ _ 25 his _ PRON PRP$ _ 26 nmod:poss _ _ 26 position _ NOUN NN _ 24 dobj _ _ 27 in _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 conference _ NOUN NN _ 26 nmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 salvage _ VERB VB _ 24 advcl _ _ 32 the _ DET DT _ 33 det _ _ 33 exemption _ NOUN NN _ 31 dobj _ _ 34 from _ ADP IN _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 total _ ADJ JJ _ 37 amod _ _ 37 ban _ NOUN NN _ 31 nmod _ _ 38 . _ PUNCT . _ 5 punct _ _ 1 Although _ SCONJ IN _ 6 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 smoking _ NOUN NN _ 4 compound _ _ 4 provision _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 attracted _ VERB VBN _ 17 advcl _ _ 7 the _ DET DT _ 10 det _ _ 8 most _ ADV RBS _ 10 advmod _ _ 9 public _ ADJ JJ _ 10 amod _ _ 10 interest _ NOUN NN _ 6 dobj _ _ 11 , _ PUNCT , _ 17 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 underlying _ ADJ JJ _ 14 amod _ _ 14 bill _ NOUN NN _ 17 nsubj _ _ 15 was _ VERB VBD _ 17 cop _ _ 16 the _ DET DT _ 17 det _ _ 17 subject _ NOUN NN _ 0 root _ _ 18 of _ ADP IN _ 19 case _ _ 19 behind-the-scenes _ ADJ JJ _ 17 nmod _ _ 20 lobbying _ VERB VBG _ 19 amod _ _ 21 because _ ADP IN _ 24 case _ _ 22 of _ ADP IN _ 21 mwe _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 impact _ NOUN NN _ 17 nmod _ _ 25 on _ ADP IN _ 27 case _ _ 26 air _ NOUN NN _ 27 compound _ _ 27 transportation _ NOUN NN _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 the _ DET DT _ 37 det _ _ 30 more _ ADV RBR _ 31 advmod _ _ 31 mundane _ ADJ JJ _ 37 amod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 but _ CONJ CC _ 31 cc _ _ 34 politically _ ADV RB _ 35 advmod _ _ 35 important _ ADJ JJ _ 31 conj _ _ 36 , _ PUNCT , _ 31 punct _ _ 37 projects _ NOUN NNS _ 27 conj _ _ 38 of _ ADP IN _ 39 case _ _ 39 members _ NOUN NNS _ 37 nmod _ _ 40 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 stark _ ADJ JJ _ 4 amod _ _ 4 lesson _ NOUN NN _ 16 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 power _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 appropriations _ NOUN NNS _ 11 compound _ _ 11 committees _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 House _ PROPN NNP _ 16 nsubj _ _ 15 deliberately _ ADV RB _ 16 advmod _ _ 16 killed _ VERB VBD _ 0 root _ _ 17 a _ DET DT _ 18 det _ _ 18 handful _ NOUN NN _ 16 dobj _ _ 19 of _ ADP IN _ 20 case _ _ 20 projects _ NOUN NNS _ 18 nmod _ _ 21 backed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 23 case _ _ 23 lawmakers _ NOUN NNS _ 21 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Florida _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Illinois _ PROPN NNP _ 25 conj _ _ 28 and _ CONJ CC _ 25 cc _ _ 29 Pennsylvania _ PROPN NNP _ 25 conj _ _ 30 who _ PRON WP _ 32 nsubj _ _ 31 had _ AUX VBD _ 32 aux _ _ 32 voted _ VERB VBN _ 23 acl:relcl _ _ 33 against _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 panel _ NOUN NN _ 36 compound _ _ 36 leadership _ NOUN NN _ 32 nmod _ _ 37 on _ ADP IN _ 40 case _ _ 38 the _ DET DT _ 40 det _ _ 39 House _ PROPN NNP _ 40 compound _ _ 40 floor _ NOUN NN _ 32 nmod _ _ 41 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Anybody _ NOUN NN _ 4 nsubj _ _ 3 can _ AUX MD _ 4 aux _ _ 4 vote _ VERB VB _ 10 ccomp _ _ 5 as _ SCONJ IN _ 7 mark _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 want _ VERB VBP _ 4 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 Rep. _ PROPN NNP _ 13 compound _ _ 12 William _ PROPN NNP _ 13 compound _ _ 13 Lehman _ PROPN NNP _ 10 nsubj _ _ 14 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 15 D. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Fla. _ PROPN NNP _ 15 dep _ _ 18 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 head _ NOUN NN _ 13 appos _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 House _ PROPN NNP _ 24 compound _ _ 24 conferees _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 But _ CONJ CC _ 11 cc _ _ 3 if _ SCONJ IN _ 5 mark _ _ 4 you _ PRON PRP _ 5 nsubj _ _ 5 make _ VERB VBP _ 11 advcl _ _ 6 a _ DET DT _ 7 det _ _ 7 request _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 you _ PRON PRP _ 11 nsubj _ _ 10 should _ AUX MD _ 11 aux _ _ 11 support _ VERB VB _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 committee _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 11 punct _ _ 15 '' _ PUNCT '' _ 11 punct _ _ 1 Within _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 Federal _ PROPN NNP _ 5 compound _ _ 4 Aviation _ PROPN NNP _ 5 compound _ _ 5 Administration _ PROPN NNP _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 9 det _ _ 8 final _ ADJ JJ _ 9 amod _ _ 9 bill _ NOUN NN _ 10 nsubj _ _ 10 promises _ VERB VBZ _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 increase _ VERB VB _ 10 xcomp _ _ 13 spending _ NOUN NN _ 12 dobj _ _ 14 for _ ADP IN _ 15 case _ _ 15 facilities _ NOUN NNS _ 13 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 equipment _ NOUN NN _ 15 conj _ _ 18 by _ ADP IN _ 22 case _ _ 19 more _ ADJ JJR _ 21 advmod _ _ 20 than _ ADP IN _ 19 mwe _ _ 21 20 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 12 nmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 last _ ADJ JJ _ 25 amod _ _ 25 year _ NOUN NN _ 12 nmod _ _ 26 , _ PUNCT , _ 10 punct _ _ 27 and _ CONJ CC _ 10 cc _ _ 28 total _ ADJ JJ _ 29 amod _ _ 29 operations _ NOUN NNS _ 31 nsubj _ _ 30 would _ AUX MD _ 31 aux _ _ 31 rise _ VERB VB _ 10 conj _ _ 32 to _ ADP TO _ 33 case _ _ 33 $ _ SYM $ _ 31 nmod _ _ 34 3.84 _ NUM CD _ 35 compound _ _ 35 billion _ NUM CD _ 33 nummod _ _ 36 -- _ PUNCT : _ 33 punct _ _ 37 a _ DET DT _ 40 det _ _ 38 12 _ NUM CD _ 39 compound _ _ 39 % _ SYM NN _ 40 amod _ _ 40 boost _ NOUN NN _ 33 dep _ _ 41 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 facilities _ NOUN NNS _ 3 compound _ _ 3 account _ NOUN NN _ 4 nsubj _ _ 4 includes _ VERB VBZ _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 40 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 for _ ADP IN _ 13 case _ _ 9 Denver _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 ambitious _ ADJ JJ _ 13 amod _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 airport _ NOUN NN _ 5 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 competition _ NOUN NN _ 21 nsubj _ _ 18 for _ ADP IN _ 20 case _ _ 19 these _ DET DT _ 20 det _ _ 20 funds _ NOUN NNS _ 17 nmod _ _ 21 created _ VERB VBD _ 4 conj _ _ 22 shifting _ VERB VBG _ 23 amod _ _ 23 alliances _ NOUN NNS _ 21 dobj _ _ 24 between _ ADP IN _ 26 case _ _ 25 urban _ ADJ JJ _ 26 amod _ _ 26 lawmakers _ NOUN NNS _ 23 nmod _ _ 27 representing _ VERB VBG _ 26 acl _ _ 28 established _ VERB VBN _ 29 amod _ _ 29 airports _ NOUN NNS _ 27 dobj _ _ 30 in _ ADP IN _ 31 case _ _ 31 Philadelphia _ PROPN NNP _ 29 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 Michigan _ PROPN NNP _ 31 conj _ _ 34 and _ CONJ CC _ 29 cc _ _ 35 the _ DET DT _ 37 det _ _ 36 major _ ADJ JJ _ 37 amod _ _ 37 carriers _ NOUN NNS _ 29 conj _ _ 38 to _ ADP TO _ 39 case _ _ 39 Denver _ PROPN NNP _ 37 nmod _ _ 40 , _ PUNCT , _ 37 punct _ _ 41 United _ PROPN NNP _ 37 appos _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 Continental _ PROPN NNP _ 41 conj _ _ 44 . _ PUNCT . _ 4 punct _ _ 1 Leery _ ADJ JJ _ 16 dep _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 costs _ NOUN NNS _ 1 nmod _ _ 5 -- _ PUNCT : _ 9 punct _ _ 6 and _ CONJ CC _ 9 cc _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 critics _ NOUN NNS _ 9 nsubj _ _ 9 say _ VERB VBP _ 4 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 competition _ NOUN NN _ 9 dep _ _ 12 -- _ PUNCT : _ 9 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 airlines _ NOUN NNS _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 sought _ VERB VBN _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 gain _ VERB VB _ 16 xcomp _ _ 19 leverage _ NOUN NN _ 18 dobj _ _ 20 over _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 city _ NOUN NN _ 19 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 Denver _ PROPN NNP _ 22 nmod _ _ 25 . _ PUNCT . _ 16 punct _ _ 1 Texas _ PROPN NNP _ 3 compound _ _ 2 Air _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 owns _ VERB VBZ _ 3 acl:relcl _ _ 7 Continental _ PROPN NNP _ 6 dobj _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 the _ DET DT _ 13 det _ _ 11 Air _ PROPN NNP _ 13 compound _ _ 12 Transport _ PROPN NNP _ 13 compound _ _ 13 Association _ PROPN NNP _ 3 conj _ _ 14 were _ VERB VBD _ 15 cop _ _ 15 prominent _ ADJ JJ _ 0 root _ _ 16 in _ ADP IN _ 17 case _ _ 17 the _ DET DT _ 15 nmod _ _ 18 lobbying _ VERB VBG _ 17 amod _ _ 19 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 industry _ NOUN NN _ 3 nsubj _ _ 3 sought _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 impose _ VERB VB _ 3 xcomp _ _ 6 conditions _ NOUN NNS _ 5 dobj _ _ 7 that _ PRON WDT _ 10 nsubj _ _ 8 would _ AUX MD _ 10 aux _ _ 9 have _ AUX VB _ 10 aux _ _ 10 delayed _ VERB VBN _ 6 acl:relcl _ _ 11 funds _ NOUN NNS _ 10 dobj _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 project _ NOUN NN _ 11 nmod _ _ 15 until _ SCONJ IN _ 21 mark _ _ 16 Denver _ PROPN NNP _ 21 nsubj _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 airlines _ NOUN NNS _ 16 conj _ _ 20 had _ AUX VBD _ 21 aux _ _ 21 agreed _ VERB VBN _ 10 advcl _ _ 22 to _ ADP TO _ 23 case _ _ 23 leases _ NOUN NNS _ 21 nmod _ _ 24 for _ ADP IN _ 26 case _ _ 25 50 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 gates _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 this _ PRON DT _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 rejected _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 favor _ NOUN NN _ 4 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 much _ ADV RB _ 9 advmod _ _ 9 looser _ ADJ JJR _ 10 amod _ _ 10 language _ NOUN NN _ 6 nmod _ _ 11 directing _ VERB VBG _ 10 acl _ _ 12 the _ DET DT _ 14 det _ _ 13 Transportation _ PROPN NNP _ 14 compound _ _ 14 Department _ PROPN NNP _ 11 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 review _ VERB VB _ 11 advcl _ _ 17 the _ DET DT _ 18 det _ _ 18 costs _ NOUN NNS _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 first _ ADJ JJ _ 22 amod _ _ 22 phase _ NOUN NN _ 18 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 expected _ VERB VBN _ 22 acl _ _ 25 to _ PART TO _ 26 mark _ _ 26 cost _ VERB VB _ 24 xcomp _ _ 27 about _ ADV RB _ 28 advmod _ _ 28 $ _ SYM $ _ 26 dobj _ _ 29 2 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 Though _ SCONJ IN _ 2 mark _ _ 2 smaller _ ADJ JJR _ 9 advcl _ _ 3 in _ ADP IN _ 5 case _ _ 4 total _ ADJ JJ _ 5 amod _ _ 5 dollars _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 conference _ NOUN NN _ 9 nsubj _ _ 9 agreed _ VERB VBD _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 preserve _ VERB VB _ 9 xcomp _ _ 12 an _ DET DT _ 14 det _ _ 13 estimated _ VERB VBN _ 14 amod _ _ 14 $ _ SYM $ _ 11 dobj _ _ 15 30.6 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 in _ ADP IN _ 19 case _ _ 18 controversial _ ADJ JJ _ 19 amod _ _ 19 subsidies _ NOUN NNS _ 14 nmod _ _ 20 to _ ADP TO _ 21 case _ _ 21 carriers _ NOUN NNS _ 19 nmod _ _ 22 serving _ VERB VBG _ 21 acl _ _ 23 rural _ ADJ JJ _ 26 amod _ _ 24 or _ CONJ CC _ 23 cc _ _ 25 isolated _ VERB VBN _ 23 conj _ _ 26 airports _ NOUN NNS _ 22 dobj _ _ 27 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 sum _ NOUN NN _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 more _ ADV RBR _ 0 root _ _ 5 than _ ADP IN _ 6 case _ _ 6 double _ ADV RB _ 4 nmod _ _ 7 what _ PRON WP _ 11 dobj _ _ 8 the _ DET DT _ 9 det _ _ 9 House _ PROPN NNP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 approved _ VERB VBN _ 6 acl:relcl _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 program _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 but _ CONJ CC _ 4 cc _ _ 17 the _ DET DT _ 18 det _ _ 18 list _ NOUN NN _ 24 nsubjpass _ _ 19 of _ ADP IN _ 21 case _ _ 20 qualified _ VERB VBN _ 21 amod _ _ 21 airports _ NOUN NNS _ 18 nmod _ _ 22 would _ AUX MD _ 24 aux _ _ 23 be _ AUX VB _ 24 auxpass _ _ 24 cut _ VERB VBN _ 4 conj _ _ 25 by _ ADP IN _ 26 case _ _ 26 22 _ NUM CD _ 24 nmod _ _ 27 under _ ADP IN _ 30 case _ _ 28 new _ ADJ JJ _ 30 amod _ _ 29 distance _ NOUN NN _ 30 compound _ _ 30 requirements _ NOUN NNS _ 24 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 limits _ NOUN NNS _ 30 conj _ _ 33 on _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 level _ NOUN NN _ 32 nmod _ _ 36 of _ ADP IN _ 37 case _ _ 37 subsidy _ NOUN NN _ 35 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 Congress _ PROPN NNP _ 3 nsubj _ _ 2 previously _ ADV RB _ 3 advmod _ _ 3 cut _ VERB VBD _ 0 root _ _ 4 six _ NUM CD _ 5 nummod _ _ 5 airports _ NOUN NNS _ 3 dobj _ _ 6 this _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 3 nmod:tmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 impact _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 changes _ NOUN NNS _ 2 nmod _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 eliminate _ VERB VB _ 6 xcomp _ _ 9 many _ ADJ JJ _ 8 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 most _ ADV RBS _ 14 advmod _ _ 13 excessive _ ADJ JJ _ 14 amod _ _ 14 cases _ NOUN NNS _ 9 nmod _ _ 15 where _ ADV WRB _ 20 advmod _ _ 16 the _ DET DT _ 17 det _ _ 17 government _ NOUN NN _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 paying _ VERB VBG _ 14 acl:relcl _ _ 21 more _ ADJ JJR _ 23 advmod _ _ 22 than _ ADP IN _ 21 mwe _ _ 23 $ _ SYM $ _ 20 dobj _ _ 24 200 _ NUM CD _ 23 nummod _ _ 25 for _ ADP IN _ 27 case _ _ 26 each _ DET DT _ 27 det _ _ 27 passenger _ NOUN NN _ 20 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 subsidies _ NOUN NNS _ 20 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Among _ ADP IN _ 5 case _ _ 2 rail _ NOUN NN _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 highway _ NOUN NN _ 2 conj _ _ 5 accounts _ NOUN NNS _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 agreement _ NOUN NN _ 9 nsubj _ _ 9 provides _ VERB VBZ _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 615 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 for _ ADP IN _ 14 case _ _ 14 Amtrak _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 including _ VERB VBG _ 17 case _ _ 17 $ _ SYM $ _ 10 nmod _ _ 18 85 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 for _ ADP IN _ 22 case _ _ 21 capital _ NOUN NN _ 22 compound _ _ 22 improvements _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 10 cc _ _ 2 federal-formula _ ADJ JJ _ 3 amod _ _ 3 grants _ NOUN NNS _ 10 nsubjpass _ _ 4 for _ ADP IN _ 6 case _ _ 5 mass _ NOUN NN _ 6 compound _ _ 6 transit _ NOUN NN _ 3 nmod _ _ 7 would _ AUX MD _ 10 aux _ _ 8 be _ AUX VB _ 10 auxpass _ _ 9 effectively _ ADV RB _ 10 advmod _ _ 10 frozen _ VERB VBN _ 0 root _ _ 11 at _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 1.625 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 $ _ SYM $ _ 12 conj _ _ 18 20 _ NUM CD _ 17 compound _ _ 19 million _ NUM CD _ 17 compound _ _ 20 more _ ADJ JJR _ 17 advmod _ _ 21 than _ ADP IN _ 24 case _ _ 22 last _ ADJ JJ _ 23 amod _ _ 23 fiscal _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 17 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 Enjoying _ VERB VBG _ 16 dep _ _ 2 several _ ADJ JJ _ 5 amod _ _ 3 blockbuster _ NOUN NN _ 5 compound _ _ 4 movie _ NOUN NN _ 5 compound _ _ 5 hits _ NOUN NNS _ 1 dobj _ _ 6 including _ VERB VBG _ 8 case _ _ 7 `` _ PUNCT `` _ 8 punct _ _ 8 Batman _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 11 Los _ PROPN NNP _ 12 amod _ _ 12 Angeles-based _ ADJ JJ _ 15 amod _ _ 13 Guber-Peters _ PROPN NNP _ 15 compound _ _ 14 Entertainment _ PROPN NNP _ 15 compound _ _ 15 Co. _ PROPN NNP _ 16 nsubj _ _ 16 reported _ VERB VBD _ 0 root _ _ 17 earnings _ NOUN NNS _ 16 dobj _ _ 18 for _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 first _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 17 nmod _ _ 22 ended _ VERB VBN _ 21 acl _ _ 23 Aug. _ PROPN NNP _ 22 nmod:tmod _ _ 24 31 _ NUM CD _ 23 nummod _ _ 25 of _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 17 nmod _ _ 27 5.8 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 or _ CONJ CC _ 26 cc _ _ 31 50 _ NUM CD _ 32 nummod _ _ 32 cents _ NOUN NNS _ 26 conj _ _ 33 a _ DET DT _ 34 det _ _ 34 share _ NOUN NN _ 32 nmod:npmod _ _ 35 , _ PUNCT , _ 26 punct _ _ 36 compared _ VERB VBN _ 40 case _ _ 37 with _ ADP IN _ 40 case _ _ 38 a _ DET DT _ 40 det _ _ 39 year-earlier _ ADJ JJ _ 40 amod _ _ 40 loss _ NOUN NN _ 26 conj _ _ 41 . _ PUNCT . _ 16 punct _ _ 1 Sony _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 offered _ VERB VBN _ 2 acl:relcl _ _ 7 to _ PART TO _ 8 mark _ _ 8 acquire _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 11 det _ _ 10 movie-production _ ADJ JJ _ 11 amod _ _ 11 company _ NOUN NN _ 8 dobj _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 seeking _ VERB VBG _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 free _ VERB VB _ 14 xcomp _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 top _ ADJ JJ _ 19 amod _ _ 19 executives _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Peter _ PROPN NNP _ 22 compound _ _ 22 Guber _ PROPN NNP _ 19 appos _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 Jon _ PROPN NNP _ 25 compound _ _ 25 Peters _ PROPN NNP _ 22 conj _ _ 26 , _ PUNCT , _ 19 punct _ _ 27 from _ ADP IN _ 30 case _ _ 28 an _ DET DT _ 30 det _ _ 29 exclusive _ ADJ JJ _ 30 amod _ _ 30 agreement _ NOUN NN _ 16 nmod _ _ 31 with _ ADP IN _ 38 case _ _ 32 Time _ PROPN NNP _ 34 compound _ _ 33 Warner _ PROPN NNP _ 34 compound _ _ 34 Inc. _ PROPN NNP _ 38 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 Warner _ PROPN NNP _ 38 compound _ _ 37 Communications _ PROPN NNP _ 38 compound _ _ 38 Inc. _ PROPN NNP _ 30 nmod _ _ 39 so _ SCONJ IN _ 42 mark _ _ 40 they _ PRON PRP _ 42 nsubj _ _ 41 can _ AUX MD _ 42 aux _ _ 42 run _ VERB VB _ 14 advcl _ _ 43 Columbia _ PROPN NNP _ 46 compound _ _ 44 Pictures _ PROPN NNP _ 46 compound _ _ 45 Entertainment _ PROPN NNP _ 46 compound _ _ 46 Inc _ PROPN NNP _ 42 dobj _ _ 47 . _ PUNCT . _ 14 punct _ _ 1 Sony _ PROPN NNP _ 5 nsubj _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 weeks _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV RB _ 5 advmod _ _ 5 agreed _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 acquire _ VERB VB _ 5 xcomp _ _ 8 Columbia _ PROPN NNP _ 7 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 7 nmod _ _ 11 3.4 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 27 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Warner _ PROPN NNP _ 2 nsubj _ _ 2 sued _ VERB VBD _ 0 root _ _ 3 Sony _ PROPN NNP _ 2 dobj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Guber-Peters _ NOUN NNS _ 3 conj _ _ 6 late _ ADJ JJ _ 8 amod _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 week _ NOUN NN _ 2 nmod:tmod _ _ 9 ; _ PUNCT : _ 2 punct _ _ 10 Sony _ PROPN NNP _ 14 nsubj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Guber-Peters _ NOUN NNS _ 10 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 countersued _ VERB VBN _ 2 parataxis _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 charging _ VERB VBG _ 14 xcomp _ _ 17 Warner _ PROPN NNP _ 16 dobj _ _ 18 with _ SCONJ IN _ 19 mark _ _ 19 attempting _ VERB VBG _ 16 advcl _ _ 20 to _ PART TO _ 21 mark _ _ 21 interfere _ VERB VB _ 19 xcomp _ _ 22 in _ ADP IN _ 25 case _ _ 23 Sony _ PROPN NNP _ 25 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 acquisition _ NOUN NN _ 21 nmod _ _ 26 of _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 two _ NUM CD _ 29 nummod _ _ 29 companies _ NOUN NNS _ 25 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 Guber-Peters _ NOUN NNS _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 net _ ADJ JJ _ 4 amod _ _ 4 income _ NOUN NN _ 9 nsubj _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 latest _ ADJ JJS _ 8 amod _ _ 8 quarter _ NOUN NN _ 4 nmod _ _ 9 compared _ VERB VBN _ 0 root _ _ 10 with _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 6.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 62 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 in _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 year-earlier _ ADJ JJ _ 28 amod _ _ 28 period _ NOUN NN _ 13 nmod _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 revenue _ NOUN NN _ 5 nsubj _ _ 5 rose _ VERB VBD _ 3 ccomp _ _ 6 138 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 to _ ADP TO _ 10 case _ _ 10 $ _ SYM $ _ 5 nmod _ _ 11 10.9 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 5 nmod _ _ 15 4.6 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 reflecting _ VERB VBG _ 5 advcl _ _ 19 the _ DET DT _ 20 det _ _ 20 success _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 movies _ NOUN NNS _ 20 nmod _ _ 24 `` _ PUNCT `` _ 25 punct _ _ 25 Gorillas _ PROPN NNP _ 23 dep _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 Mist _ PROPN NNP _ 25 nmod _ _ 29 '' _ PUNCT '' _ 25 punct _ _ 30 and _ CONJ CC _ 25 cc _ _ 31 `` _ PUNCT `` _ 25 punct _ _ 32 Rainman _ PROPN NNP _ 25 conj _ _ 33 , _ PUNCT , _ 25 punct _ _ 34 '' _ PUNCT '' _ 25 punct _ _ 35 as _ ADV RB _ 23 cc _ _ 36 well _ ADV RB _ 35 mwe _ _ 37 as _ ADP IN _ 35 mwe _ _ 38 the _ DET DT _ 40 det _ _ 39 box-office _ NOUN NN _ 40 compound _ _ 40 smash _ NOUN NN _ 23 conj _ _ 41 `` _ PUNCT `` _ 40 punct _ _ 42 Batman _ PROPN NNP _ 40 dep _ _ 43 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 12 nsubj _ _ 3 including _ VERB VBG _ 6 case _ _ 4 Jon _ PROPN NNP _ 6 compound _ _ 5 M. _ PROPN NNP _ 6 compound _ _ 6 Huntsman _ PROPN NNP _ 2 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 Salt _ PROPN NNP _ 10 compound _ _ 9 Lake _ PROPN NNP _ 10 compound _ _ 10 City _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 boosted _ VERB VBD _ 12 ccomp _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 stake _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 20 case _ _ 18 Aristech _ PROPN NNP _ 20 compound _ _ 19 Chemical _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 16 nmod _ _ 21 to _ ADP TO _ 23 case _ _ 22 8.36 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 14 nmod _ _ 24 of _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det:predet _ _ 26 the _ DET DT _ 28 det _ _ 27 common _ ADJ JJ _ 28 amod _ _ 28 shares _ NOUN NNS _ 23 nmod _ _ 29 outstanding _ ADJ JJ _ 28 amod _ _ 30 . _ PUNCT . _ 12 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 previously _ ADV RB _ 3 advmod _ _ 3 reported _ VERB VBN _ 21 advcl _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 Huntsman _ PROPN NNP _ 7 compound _ _ 6 Holdings _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 21 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 owned _ VERB VBN _ 7 acl _ _ 10 by _ ADP IN _ 13 case _ _ 11 Jon _ PROPN NNP _ 13 compound _ _ 12 M. _ PROPN NNP _ 13 compound _ _ 13 Huntsman _ PROPN NNP _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 members _ NOUN NNS _ 13 conj _ _ 17 of _ ADP IN _ 19 case _ _ 18 his _ PRON PRP$ _ 19 nmod:poss _ _ 19 family _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 proposed _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 32 mark _ _ 23 Banstar _ PROPN NNP _ 24 compound _ _ 24 Corp. _ PROPN NNP _ 32 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 an _ DET DT _ 27 det _ _ 27 affiliate _ NOUN NN _ 24 appos _ _ 28 of _ ADP IN _ 30 case _ _ 29 Huntsman _ PROPN NNP _ 30 compound _ _ 30 Holdings _ PROPN NNP _ 27 nmod _ _ 31 , _ PUNCT , _ 24 punct _ _ 32 acquire _ VERB VB _ 21 ccomp _ _ 33 Aristech _ PROPN NNP _ 32 dobj _ _ 34 in _ ADP IN _ 37 case _ _ 35 a _ DET DT _ 37 det _ _ 36 friendly _ ADJ JJ _ 37 amod _ _ 37 transaction _ NOUN NN _ 32 nmod _ _ 38 for _ ADP IN _ 40 case _ _ 39 $ _ SYM $ _ 40 dep _ _ 40 25-a-share _ ADJ JJ _ 32 nmod _ _ 41 in _ ADP IN _ 42 case _ _ 42 cash _ NOUN NN _ 40 nmod _ _ 43 , _ PUNCT , _ 40 punct _ _ 44 or _ CONJ CC _ 40 cc _ _ 45 $ _ SYM $ _ 40 conj _ _ 46 817.5 _ NUM CD _ 47 compound _ _ 47 million _ NUM CD _ 45 nummod _ _ 48 . _ PUNCT . _ 21 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 filing _ NOUN NN _ 14 nmod _ _ 4 with _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 Securities _ PROPN NNP _ 9 compound _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Exchange _ PROPN NNP _ 6 conj _ _ 9 Commission _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 Huntsman _ PROPN NNP _ 13 compound _ _ 13 group _ NOUN NN _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 controls _ VERB VBZ _ 14 ccomp _ _ 17 2,720,675 _ NUM CD _ 20 nummod _ _ 18 Aristech _ PROPN NNP _ 20 compound _ _ 19 common _ ADJ JJ _ 20 amod _ _ 20 shares _ NOUN NNS _ 16 dobj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 including _ VERB VBG _ 24 case _ _ 23 306,000 _ NUM CD _ 24 nummod _ _ 24 shares _ NOUN NNS _ 20 nmod _ _ 25 bought _ VERB VBN _ 24 acl _ _ 26 from _ ADP IN _ 27 case _ _ 27 Aug. _ PROPN NNP _ 25 nmod _ _ 28 21 _ NUM CD _ 27 nummod _ _ 29 to _ ADP TO _ 30 case _ _ 30 Oct. _ PROPN NNP _ 27 nmod _ _ 31 13 _ NUM CD _ 30 nummod _ _ 32 for _ ADP IN _ 36 case _ _ 33 $ _ SYM $ _ 36 dep _ _ 34 20 _ NUM CD _ 36 compound _ _ 35 to _ ADP TO _ 36 dep _ _ 36 $ _ SYM $ _ 25 nmod _ _ 37 20.875 _ NUM CD _ 36 nummod _ _ 38 per _ ADP IN _ 39 case _ _ 39 share _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 14 punct _ _ 1 Officials _ NOUN NNS _ 9 nsubj _ _ 2 at _ ADP IN _ 3 case _ _ 3 Aristech _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 based _ VERB VBN _ 3 acl _ _ 6 in _ ADP IN _ 7 case _ _ 7 Pittsburgh _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 declined _ VERB VBD _ 0 root _ _ 10 comment _ NOUN NN _ 9 dobj _ _ 11 . _ PUNCT . _ 9 punct _ _ 1 Congress _ PROPN NNP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ VERB VBN _ 4 cop _ _ 4 critical _ ADJ JJ _ 0 root _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Bush _ PROPN NNP _ 8 compound _ _ 8 administration _ NOUN NN _ 4 nmod _ _ 9 for _ SCONJ IN _ 11 mark _ _ 10 not _ PART RB _ 11 neg _ _ 11 sending _ VERB VBG _ 4 advcl _ _ 12 enough _ ADJ JJ _ 13 amod _ _ 13 aid _ NOUN NN _ 11 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 Poland _ PROPN NNP _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 so _ SCONJ IN _ 20 mark _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 is _ AUX VBZ _ 20 aux _ _ 20 getting _ VERB VBG _ 4 advcl _ _ 21 ready _ ADJ JJ _ 20 xcomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 send _ VERB VB _ 21 xcomp _ _ 24 its _ PRON PRP$ _ 26 nmod:poss _ _ 25 own _ ADJ JJ _ 26 amod _ _ 26 version _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 CARE _ PROPN NNP _ 30 compound _ _ 30 package _ NOUN NN _ 26 nmod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 month _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 Senate _ PROPN NNP _ 6 nsubj _ _ 6 voted _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 send _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 10 det _ _ 10 delegation _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 congressional _ ADJ JJ _ 13 amod _ _ 13 staffers _ NOUN NNS _ 10 nmod _ _ 14 to _ ADP TO _ 15 case _ _ 15 Poland _ PROPN NNP _ 8 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 assist _ VERB VB _ 8 advcl _ _ 18 its _ PRON PRP$ _ 19 nmod:poss _ _ 19 legislature _ NOUN NN _ 17 dobj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 Sejm _ PROPN NNP _ 19 appos _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 in _ ADP IN _ 26 case _ _ 25 democratic _ ADJ JJ _ 26 amod _ _ 26 procedures _ NOUN NNS _ 17 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Senator _ PROPN NNP _ 3 compound _ _ 2 Pete _ PROPN NNP _ 3 compound _ _ 3 Domenici _ PROPN NNP _ 4 nsubj _ _ 4 calls _ VERB VBZ _ 0 root _ _ 5 this _ DET DT _ 6 det _ _ 6 effort _ NOUN NN _ 10 nsubj _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 first _ ADJ JJ _ 10 amod _ _ 10 gift _ NOUN NN _ 4 xcomp _ _ 11 of _ ADP IN _ 12 case _ _ 12 democracy _ NOUN NN _ 10 nmod _ _ 13 . _ PUNCT . _ 10 punct _ _ 14 '' _ PUNCT '' _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Poles _ NOUN NNS _ 4 nsubj _ _ 3 might _ AUX MD _ 4 aux _ _ 4 do _ VERB VB _ 0 root _ _ 5 better _ ADV RBR _ 4 advmod _ _ 6 to _ PART TO _ 7 mark _ _ 7 view _ VERB VB _ 4 xcomp _ _ 8 it _ PRON PRP _ 7 dobj _ _ 9 as _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 Trojan _ PROPN NNP _ 12 compound _ _ 12 Horse _ PROPN NNP _ 7 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 is _ VERB VBZ _ 6 cop _ _ 3 the _ DET DT _ 6 det _ _ 4 vast _ ADJ JJ _ 6 amod _ _ 5 shadow _ NOUN NN _ 6 compound _ _ 6 government _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 15,000 _ NUM CD _ 10 nummod _ _ 9 congressional _ ADJ JJ _ 10 amod _ _ 10 staffers _ NOUN NNS _ 6 nmod _ _ 11 that _ ADP IN _ 12 nsubj _ _ 12 helps _ VERB VBZ _ 6 acl:relcl _ _ 13 create _ VERB VB _ 12 ccomp _ _ 14 such _ ADJ JJ _ 16 amod _ _ 15 legislative _ ADJ JJ _ 16 amod _ _ 16 atrocities _ NOUN NNS _ 13 dobj _ _ 17 as _ ADP IN _ 24 case _ _ 18 the _ DET DT _ 24 det _ _ 19 1,376 _ NUM CD _ 24 nummod _ _ 20 page _ NOUN NN _ 24 compound _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 13-pound _ ADJ JJ _ 24 amod _ _ 23 reconciliation _ NOUN NN _ 24 compound _ _ 24 bill _ NOUN NN _ 16 nmod _ _ 25 that _ PRON WDT _ 26 nsubj _ _ 26 claimed _ VERB VBD _ 24 acl:relcl _ _ 27 to _ PART TO _ 30 mark _ _ 28 be _ VERB VB _ 30 cop _ _ 29 the _ DET DT _ 30 det _ _ 30 budget _ NOUN NN _ 26 xcomp _ _ 31 of _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 United _ PROPN NNP _ 34 compound _ _ 34 States _ PROPN NNP _ 30 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 Maybe _ ADV RB _ 15 advmod _ _ 2 after _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 staffers _ NOUN NNS _ 5 nsubj _ _ 5 explain _ VERB VBP _ 15 advcl _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 work _ NOUN NN _ 5 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 Poles _ NOUN NNS _ 5 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 'd _ AUX MD _ 15 aux _ _ 14 be _ VERB VB _ 15 cop _ _ 15 willing _ ADJ JJ _ 0 root _ _ 16 to _ PART TO _ 17 mark _ _ 17 come _ VERB VB _ 15 xcomp _ _ 18 back _ ADV RB _ 17 advmod _ _ 19 and _ CONJ CC _ 17 cc _ _ 20 do _ VERB VB _ 17 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 same _ ADJ JJ _ 20 dobj _ _ 23 for _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 American _ ADJ JJ _ 26 amod _ _ 26 people _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 Waterford _ PROPN NNP _ 3 compound _ _ 2 Wedgwood _ PROPN NNP _ 3 compound _ _ 3 PLC _ PROPN NNP _ 17 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 9 det _ _ 6 financially _ ADV RB _ 7 advmod _ _ 7 troubled _ VERB VBN _ 9 amod _ _ 8 Irish _ ADJ JJ _ 9 amod _ _ 9 maker _ NOUN NN _ 3 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 fine _ ADJ JJ _ 12 amod _ _ 12 crystal _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Wedgwood _ PROPN NNP _ 15 compound _ _ 15 china _ NOUN NN _ 12 conj _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 reported _ VERB VBD _ 0 root _ _ 18 that _ DET DT _ 27 mark _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 pretax _ ADJ JJ _ 21 amod _ _ 21 loss _ NOUN NN _ 27 nsubj _ _ 22 for _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 first _ ADJ JJ _ 26 amod _ _ 25 six _ NUM CD _ 26 nummod _ _ 26 months _ NOUN NNS _ 21 nmod _ _ 27 widened _ VERB VBD _ 17 ccomp _ _ 28 to _ ADP TO _ 32 case _ _ 29 10.6 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 32 nummod _ _ 31 Irish _ ADJ JJ _ 32 amod _ _ 32 punts _ NOUN NNS _ 27 nmod _ _ 33 -LRB- _ PUNCT -LRB- _ 34 punct _ _ 34 $ _ SYM $ _ 32 dep _ _ 35 14.9 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 -RRB- _ PUNCT -RRB- _ 34 punct _ _ 38 from _ ADP IN _ 42 case _ _ 39 5.8 _ NUM CD _ 40 compound _ _ 40 million _ NUM CD _ 42 nummod _ _ 41 Irish _ ADJ JJ _ 42 amod _ _ 42 punts _ NOUN NNS _ 27 nmod _ _ 43 a _ DET DT _ 44 det _ _ 44 year _ NOUN NN _ 45 nmod:npmod _ _ 45 earlier _ ADV RBR _ 42 advmod _ _ 46 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 results _ NOUN NNS _ 7 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 half _ NOUN NN _ 2 nmod _ _ 6 were _ VERB VBD _ 7 cop _ _ 7 worse _ ADJ JJR _ 0 root _ _ 8 than _ ADP IN _ 10 case _ _ 9 market _ NOUN NN _ 10 compound _ _ 10 expectations _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 13 nsubj _ _ 13 suggested _ VERB VBD _ 10 acl:relcl _ _ 14 an _ DET DT _ 16 det _ _ 15 interim _ ADJ JJ _ 16 amod _ _ 16 loss _ NOUN NN _ 13 dobj _ _ 17 of _ ADP IN _ 22 case _ _ 18 around _ ADV RB _ 20 advmod _ _ 19 10 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 22 nummod _ _ 21 Irish _ ADJ JJ _ 22 amod _ _ 22 punts _ NOUN NNS _ 16 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 a _ DET DT _ 6 det _ _ 3 sharply _ ADV RB _ 4 advmod _ _ 4 weaker _ ADJ JJR _ 6 amod _ _ 5 London _ PROPN NNP _ 6 compound _ _ 6 market _ NOUN NN _ 17 nmod _ _ 7 yesterday _ NOUN NN _ 17 nmod:tmod _ _ 8 , _ PUNCT , _ 17 punct _ _ 9 Waterford _ PROPN NNP _ 10 compound _ _ 10 shares _ NOUN NNS _ 17 nsubj _ _ 11 were _ VERB VBD _ 17 cop _ _ 12 down _ ADV RB _ 17 advmod _ _ 13 15 _ NUM CD _ 14 nummod _ _ 14 pence _ NOUN NNS _ 12 nmod:npmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 50 _ NUM CD _ 17 nummod _ _ 17 pence _ NOUN NNS _ 0 root _ _ 18 -LRB- _ PUNCT -LRB- _ 20 punct _ _ 19 79 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 17 appos _ _ 21 -RRB- _ PUNCT -RRB- _ 20 punct _ _ 22 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 loss _ NOUN NN _ 3 dobj _ _ 6 after _ ADP IN _ 10 case _ _ 7 taxation _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 minority _ NOUN NN _ 7 conj _ _ 10 interests _ NOUN NNS _ 5 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 14 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 15 nummod _ _ 14 Irish _ ADJ JJ _ 15 amod _ _ 15 punts _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 compared _ VERB VBN _ 20 case _ _ 18 with _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 loss _ NOUN NN _ 5 nmod _ _ 21 of _ ADP IN _ 25 case _ _ 22 9.3 _ NUM CD _ 25 nummod _ _ 23 million _ ADJ JJ _ 22 advmod _ _ 24 Irish _ PROPN NNP _ 25 compound _ _ 25 punts _ NOUN NNS _ 20 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 year-earlier _ ADJ JJ _ 29 amod _ _ 29 period _ NOUN NN _ 20 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 any _ DET DT _ 6 det _ _ 5 extraordinary _ ADJ JJ _ 6 amod _ _ 6 items _ NOUN NNS _ 2 nsubj _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 Sales _ NOUN NNS _ 6 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 total _ ADJ JJ _ 5 amod _ _ 5 group _ NOUN NN _ 1 nmod _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 27 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 to _ ADP TO _ 13 case _ _ 10 168.1 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 13 nummod _ _ 12 Irish _ ADJ JJ _ 13 amod _ _ 13 punts _ NOUN NNS _ 6 nmod _ _ 14 compared _ VERB VBN _ 19 case _ _ 15 with _ ADP IN _ 19 case _ _ 16 132.6 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 19 nummod _ _ 18 Irish _ ADJ JJ _ 19 amod _ _ 19 punts _ NOUN NNS _ 6 advcl _ _ 20 a _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 22 nmod:npmod _ _ 22 ago _ ADV RB _ 19 advmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Waterford _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 decided _ VERB VBN _ 0 root _ _ 4 against _ SCONJ IN _ 5 mark _ _ 5 paying _ VERB VBG _ 3 advcl _ _ 6 an _ DET DT _ 8 det _ _ 7 interim _ ADJ JJ _ 8 amod _ _ 8 dividend _ NOUN NN _ 5 dobj _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Waterford _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 appointment _ NOUN NN _ 19 nsubjpass _ _ 5 of _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 new _ ADJ JJ _ 9 amod _ _ 8 management _ NOUN NN _ 9 compound _ _ 9 team _ NOUN NN _ 4 nmod _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 the _ DET DT _ 12 det _ _ 12 signing _ NOUN NN _ 4 conj _ _ 13 of _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 comprehensive _ ADJ JJ _ 17 amod _ _ 16 labor _ NOUN NN _ 17 compound _ _ 17 agreement _ NOUN NN _ 12 nmod _ _ 18 are _ AUX VBP _ 19 auxpass _ _ 19 expected _ VERB VBN _ 2 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 enhance _ VERB VB _ 19 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 company _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 long-term _ ADJ JJ _ 26 amod _ _ 26 prospects _ NOUN NNS _ 21 dobj _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 sudden _ ADJ JJ _ 4 amod _ _ 3 `` _ PUNCT `` _ 4 punct _ _ 4 flight _ NOUN NN _ 16 nsubjpass _ _ 5 to _ ADP TO _ 6 case _ _ 6 quality _ NOUN NN _ 4 nmod _ _ 7 '' _ PUNCT '' _ 4 punct _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 triggered _ VERB VBD _ 4 acl:relcl _ _ 10 Friday _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 explosive _ ADJ JJ _ 14 amod _ _ 13 bond-market _ ADJ JJ _ 14 amod _ _ 14 rally _ NOUN NN _ 9 dobj _ _ 15 was _ AUX VBD _ 16 auxpass _ _ 16 reversed _ VERB VBN _ 0 root _ _ 17 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 18 in _ ADP IN _ 25 case _ _ 19 a _ DET DT _ 25 det _ _ 20 `` _ PUNCT `` _ 25 punct _ _ 21 flight _ NOUN NN _ 25 dep _ _ 22 from _ ADP IN _ 23 case _ _ 23 quality _ NOUN NN _ 21 nmod _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 rout _ NOUN NN _ 16 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 setback _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 in _ ADP IN _ 5 case _ _ 5 which _ PRON WDT _ 9 nmod _ _ 6 Treasury _ PROPN NNP _ 8 compound _ _ 7 bond _ NOUN NN _ 8 compound _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 plummeted _ VERB VBD _ 2 acl:relcl _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 reflected _ VERB VBD _ 0 root _ _ 12 a _ DET DT _ 13 det _ _ 13 rebound _ NOUN NN _ 11 dobj _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 profit-taking _ NOUN NN _ 13 conj _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 It _ PRON PRP _ 7 nsubj _ _ 3 was _ VERB VBD _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 pretty _ ADV RB _ 6 advmod _ _ 6 wild _ ADJ JJ _ 7 amod _ _ 7 day _ NOUN NN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 Our _ PRON PRP$ _ 2 nmod:poss _ _ 2 markets _ NOUN NNS _ 5 nsubjpass _ _ 3 were _ AUX VBD _ 5 auxpass _ _ 4 closely _ ADV RB _ 5 advmod _ _ 5 tied _ VERB VBN _ 12 dep _ _ 6 to _ ADP TO _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 stock _ NOUN NN _ 9 compound _ _ 9 market _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 '' _ PUNCT '' _ 5 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Joel _ PROPN NNP _ 14 compound _ _ 14 Kazis _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 manager _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 18 case _ _ 18 trading _ NOUN NN _ 16 nmod _ _ 19 at _ ADP IN _ 24 case _ _ 20 Smith _ PROPN NNP _ 24 compound _ _ 21 Barney _ PROPN NNP _ 24 compound _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 Harris _ PROPN NNP _ 24 conj _ _ 24 Upham _ PROPN NNP _ 16 nmod _ _ 25 & _ CONJ CC _ 24 cc _ _ 26 Co _ PROPN NNP _ 24 conj _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 flight _ NOUN NN _ 10 nsubjpass _ _ 5 to _ ADP TO _ 6 case _ _ 6 quality _ NOUN NN _ 4 nmod _ _ 7 was _ AUX VBD _ 10 auxpass _ _ 8 no _ DET DT _ 9 neg _ _ 9 longer _ ADV RBR _ 10 advmod _ _ 10 needed _ VERB VBN _ 21 dep _ _ 11 once _ SCONJ IN _ 15 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 stock _ NOUN NN _ 14 compound _ _ 14 market _ NOUN NN _ 15 nsubj _ _ 15 found _ VERB VBD _ 10 advcl _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 legs _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 '' _ PUNCT '' _ 10 punct _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 fixed-income _ ADJ JJ _ 3 amod _ _ 3 investors _ NOUN NNS _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 further _ ADJ JJ _ 8 amod _ _ 8 drop _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 after _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 nearly _ ADV RB _ 15 advmod _ _ 15 200-point _ ADJ JJ _ 16 amod _ _ 16 drop _ NOUN NN _ 5 nmod _ _ 17 in _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 Dow _ PROPN NNP _ 22 compound _ _ 20 Jones _ PROPN NNP _ 22 compound _ _ 21 Industrial _ PROPN NNP _ 22 compound _ _ 22 Average _ PROPN NNP _ 16 nmod _ _ 23 on _ ADP IN _ 24 case _ _ 24 Friday _ PROPN NNP _ 16 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 That _ ADP IN _ 2 nsubj _ _ 2 caused _ VERB VBN _ 0 root _ _ 3 investors _ NOUN NNS _ 2 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 flee _ VERB VB _ 2 xcomp _ _ 6 stocks _ NOUN NNS _ 5 dobj _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 buy _ VERB VB _ 5 conj _ _ 9 high-quality _ ADJ JJ _ 11 amod _ _ 10 Treasury _ PROPN NNP _ 11 compound _ _ 11 bonds _ NOUN NNS _ 8 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 15 nsubj _ _ 14 are _ VERB VBP _ 15 cop _ _ 15 safer _ ADJ JJR _ 11 acl:relcl _ _ 16 than _ ADP IN _ 18 case _ _ 17 other _ ADJ JJ _ 18 amod _ _ 18 types _ NOUN NNS _ 15 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 securities _ NOUN NNS _ 18 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 when _ ADV WRB _ 4 advmod _ _ 3 stocks _ NOUN NNS _ 4 nsubj _ _ 4 began _ VERB VBD _ 13 advcl _ _ 5 to _ PART TO _ 6 mark _ _ 6 climb _ VERB VB _ 4 xcomp _ _ 7 instead _ ADV RB _ 6 advmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 prices _ NOUN NNS _ 13 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 Treasury _ PROPN NNP _ 12 compound _ _ 12 bonds _ NOUN NNS _ 9 nmod _ _ 13 declined _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Contributing _ VERB VBG _ 0 root _ _ 2 to _ ADP TO _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 selling _ NOUN NN _ 5 compound _ _ 5 pressure _ NOUN NN _ 1 nmod _ _ 6 were _ VERB VBD _ 1 aux _ _ 7 dispatches _ NOUN NNS _ 1 nsubj _ _ 8 by _ ADP IN _ 11 case _ _ 9 several _ ADJ JJ _ 11 amod _ _ 10 investment _ NOUN NN _ 11 compound _ _ 11 firms _ NOUN NNS _ 7 nmod _ _ 12 advising _ VERB VBG _ 7 acl _ _ 13 clients _ NOUN NNS _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 boost _ VERB VB _ 12 xcomp _ _ 16 their _ PRON PRP$ _ 18 nmod:poss _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 holdings _ NOUN NNS _ 15 dobj _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 reduce _ VERB VB _ 15 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 size _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 their _ PRON PRP$ _ 25 nmod:poss _ _ 25 cash _ NOUN NN _ 22 nmod _ _ 26 or _ CONJ CC _ 25 cc _ _ 27 bond _ NOUN NN _ 28 compound _ _ 28 portfolios _ NOUN NNS _ 25 conj _ _ 29 . _ PUNCT . _ 1 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 firms _ NOUN NNS _ 4 nmod _ _ 4 were _ VERB VBD _ 0 root _ _ 5 Merrill _ PROPN NNP _ 6 compound _ _ 6 Lynch _ PROPN NNP _ 4 nsubj _ _ 7 & _ CONJ CC _ 6 cc _ _ 8 Co. _ PROPN NNP _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 Dean _ PROPN NNP _ 13 compound _ _ 11 Witter _ PROPN NNP _ 13 compound _ _ 12 Reynolds _ PROPN NNP _ 13 compound _ _ 13 Inc _ PROPN NNP _ 6 conj _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 bond _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 seemed _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 ignore _ VERB VB _ 4 xcomp _ _ 7 evidence _ NOUN NN _ 6 dobj _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 Federal _ PROPN NNP _ 11 compound _ _ 11 Reserve _ PROPN NNP _ 12 nsubj _ _ 12 eased _ VERB VBD _ 7 ccomp _ _ 13 credit _ NOUN NN _ 14 compound _ _ 14 conditions _ NOUN NNS _ 12 dobj _ _ 15 slightly _ ADV RB _ 12 advmod _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 allowing _ VERB VBG _ 12 advcl _ _ 18 the _ DET DT _ 21 det _ _ 19 federal _ ADJ JJ _ 21 amod _ _ 20 funds _ NOUN NNS _ 21 compound _ _ 21 rate _ NOUN NN _ 17 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 drift _ VERB VB _ 17 xcomp _ _ 24 as _ ADV RB _ 25 advmod _ _ 25 low _ ADJ JJ _ 23 xcomp _ _ 26 as _ ADP IN _ 29 case _ _ 27 8 _ NUM CD _ 28 compound _ _ 28 1/2 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 25 nmod _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 closely _ ADV RB _ 3 advmod _ _ 3 watched _ VERB VBN _ 4 amod _ _ 4 rate _ NOUN NN _ 15 nsubj _ _ 5 on _ ADP IN _ 7 case _ _ 6 federal _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 or _ CONJ CC _ 7 cc _ _ 10 overnight _ ADJ JJ _ 11 amod _ _ 11 loans _ NOUN NNS _ 7 conj _ _ 12 between _ ADP IN _ 13 case _ _ 13 banks _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 slid _ VERB VBD _ 0 root _ _ 16 to _ ADP TO _ 20 case _ _ 17 about _ ADV RB _ 19 advmod _ _ 18 8 _ NUM CD _ 19 compound _ _ 19 3/4 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 15 nmod _ _ 21 last _ ADJ JJ _ 22 amod _ _ 22 week _ NOUN NN _ 15 nmod:tmod _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 down _ ADV RB _ 15 advmod _ _ 25 from _ ADP IN _ 29 case _ _ 26 its _ PRON PRP$ _ 29 nmod:poss _ _ 27 perceived _ VERB VBN _ 29 amod _ _ 28 target _ NOUN NN _ 29 compound _ _ 29 level _ NOUN NN _ 24 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 about _ ADV RB _ 32 advmod _ _ 32 9 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 29 nmod _ _ 34 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rate _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 considered _ VERB VBN _ 0 root _ _ 5 an _ DET DT _ 7 det _ _ 6 early _ ADJ JJ _ 7 amod _ _ 7 signal _ NOUN NN _ 4 xcomp _ _ 8 of _ ADP IN _ 9 case _ _ 9 changes _ NOUN NNS _ 7 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 Fed _ PROPN NNP _ 12 compound _ _ 12 policy _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 yesterday _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 modest _ ADJ JJ _ 6 amod _ _ 6 easing _ NOUN NN _ 9 nsubj _ _ 7 did _ AUX VBD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 stir _ VERB VB _ 2 ccomp _ _ 10 much _ ADJ JJ _ 11 amod _ _ 11 enthusiasm _ NOUN NN _ 9 dobj _ _ 12 because _ SCONJ IN _ 17 mark _ _ 13 it _ PRON PRP _ 17 nsubjpass _ _ 14 had _ AUX VBD _ 17 aux _ _ 15 been _ AUX VBN _ 17 auxpass _ _ 16 widely _ ADV RB _ 17 advmod _ _ 17 expected _ VERB VBN _ 9 advcl _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 some _ DET DT _ 5 det _ _ 5 economists _ NOUN NNS _ 6 nsubj _ _ 6 contend _ VERB VBP _ 0 root _ _ 7 that _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 latest _ ADJ JJS _ 10 amod _ _ 10 easing _ NOUN NN _ 11 nsubj _ _ 11 started _ VERB VBD _ 6 ccomp _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 week _ NOUN NN _ 11 nmod:tmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Others _ NOUN NNS _ 2 nsubj _ _ 2 note _ VERB VBP _ 0 root _ _ 3 that _ SCONJ IN _ 7 mark _ _ 4 some _ DET DT _ 5 det _ _ 5 investors _ NOUN NNS _ 7 nsubjpass _ _ 6 were _ AUX VBD _ 7 auxpass _ _ 7 disappointed _ VERB VBN _ 2 ccomp _ _ 8 because _ SCONJ IN _ 11 mark _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 expected _ VERB VBN _ 7 advcl _ _ 12 a _ DET DT _ 15 det _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 aggressive _ ADJ JJ _ 15 amod _ _ 15 easing _ NOUN NN _ 11 dobj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Treasury _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 benchmark _ NOUN NN _ 6 compound _ _ 5 30-year _ ADJ JJ _ 6 amod _ _ 6 bond _ NOUN NN _ 8 nsubj _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 ended _ VERB VBD _ 0 root _ _ 9 about _ ADV RB _ 11 advmod _ _ 10 1 _ NUM CD _ 11 compound _ _ 11 3/4 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 13 nmod:npmod _ _ 13 lower _ ADV RBR _ 8 xcomp _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 down _ ADV RB _ 13 advmod _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 $ _ SYM $ _ 16 nmod:npmod _ _ 19 17.50 _ NUM CD _ 18 nummod _ _ 20 for _ ADP IN _ 25 case _ _ 21 each _ DET DT _ 25 det _ _ 22 $ _ SYM $ _ 25 amod _ _ 23 1,000 _ NUM CD _ 22 compound _ _ 24 face _ NOUN NN _ 25 compound _ _ 25 amount _ NOUN NN _ 18 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 reversal _ NOUN NN _ 6 nsubj _ _ 3 was _ VERB VBD _ 6 cop _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 more _ ADV RBR _ 6 advmod _ _ 6 evident _ ADJ JJ _ 0 root _ _ 7 among _ ADP IN _ 10 case _ _ 8 shorter-term _ ADJ JJ _ 10 amod _ _ 9 Treasury _ PROPN NNP _ 10 compound _ _ 10 securities _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 Treasury _ PROPN NNP _ 4 compound _ _ 3 bill _ NOUN NN _ 4 compound _ _ 4 rates _ NOUN NNS _ 5 nsubj _ _ 5 plummeted _ VERB VBD _ 16 advcl _ _ 6 as _ ADV RB _ 9 advmod _ _ 7 much _ ADV RB _ 9 advmod _ _ 8 as _ ADP IN _ 9 advmod _ _ 9 0.70 _ NUM CD _ 11 nummod _ _ 10 percentage _ NOUN NN _ 11 compound _ _ 11 point _ NOUN NN _ 5 dobj _ _ 12 on _ ADP IN _ 13 case _ _ 13 Friday _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 gave _ VERB VBD _ 0 root _ _ 17 back _ ADV RB _ 16 advmod _ _ 18 three-fourths _ ADJ JJ _ 16 xcomp _ _ 19 of _ ADP IN _ 21 case _ _ 20 that _ DET DT _ 21 det _ _ 21 amount _ NOUN NN _ 18 nmod _ _ 22 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 bond-equivalent _ ADJ JJ _ 3 amod _ _ 3 yield _ NOUN NN _ 13 nsubjpass _ _ 4 on _ ADP IN _ 7 case _ _ 5 three-month _ ADJ JJ _ 7 amod _ _ 6 Treasury _ PROPN NNP _ 7 compound _ _ 7 bills _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 for _ ADP IN _ 10 case _ _ 10 example _ NOUN NN _ 13 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 quoted _ VERB VBN _ 0 root _ _ 14 late _ ADJ JJ _ 15 amod _ _ 15 yesterday _ NOUN NN _ 13 nmod:tmod _ _ 16 at _ ADP IN _ 18 case _ _ 17 7.72 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 13 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 7.16 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 13 advcl _ _ 24 Friday _ PROPN NNP _ 23 nmod:tmod _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 Investment-grade _ ADJ JJ _ 3 amod _ _ 2 corporate _ ADJ JJ _ 3 amod _ _ 3 bonds _ NOUN NNS _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 mortgage-backed _ ADJ JJ _ 6 amod _ _ 6 securities _ NOUN NNS _ 3 conj _ _ 7 and _ CONJ CC _ 3 cc _ _ 8 municipal _ ADJ JJ _ 9 amod _ _ 9 bonds _ NOUN NNS _ 3 conj _ _ 10 also _ ADV RB _ 11 advmod _ _ 11 fell _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 But _ CONJ CC _ 16 cc _ _ 2 prices _ NOUN NNS _ 16 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 junk _ NOUN NN _ 5 compound _ _ 5 bonds _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 battered _ VERB VBN _ 5 acl:relcl _ _ 10 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 11 in _ ADP IN _ 14 case _ _ 12 near _ ADJ JJ _ 13 amod _ _ 13 standstill _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 rebounded _ VERB VBD _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 post _ VERB VB _ 16 xcomp _ _ 19 small _ ADJ JJ _ 20 amod _ _ 20 gains _ NOUN NNS _ 18 dobj _ _ 21 after _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 volatile _ ADJ JJ _ 25 amod _ _ 24 trading _ NOUN NN _ 25 compound _ _ 25 session _ NOUN NN _ 18 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 Junk _ NOUN NN _ 2 compound _ _ 2 bonds _ NOUN NNS _ 3 nsubj _ _ 3 opened _ VERB VBD _ 0 root _ _ 4 as _ ADV RB _ 7 advmod _ _ 5 much _ ADV RB _ 7 advmod _ _ 6 as _ ADP IN _ 7 advmod _ _ 7 four _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 9 nmod:npmod _ _ 9 lower _ ADV RBR _ 3 xcomp _ _ 10 but _ CONJ CC _ 3 cc _ _ 11 staged _ VERB VBD _ 3 conj _ _ 12 a _ DET DT _ 14 det _ _ 13 modest _ ADJ JJ _ 14 amod _ _ 14 comeback _ NOUN NN _ 11 dobj _ _ 15 as _ SCONJ IN _ 18 mark _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 18 nsubj _ _ 18 firmed _ VERB VBD _ 11 advcl _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 high-yield _ ADJ JJ _ 6 amod _ _ 6 market _ NOUN NN _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 helped _ VERB VBN _ 3 ccomp _ _ 9 by _ ADP IN _ 12 case _ _ 10 active _ ADJ JJ _ 12 amod _ _ 11 institutional _ ADJ JJ _ 12 amod _ _ 12 buying _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 particular _ ADJ JJ _ 18 advcl _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 said _ VERB VBD _ 18 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 firms _ NOUN NNS _ 18 nsubj _ _ 8 such _ ADJ JJ _ 12 case _ _ 9 as _ ADP IN _ 8 mwe _ _ 10 First _ PROPN NNP _ 12 compound _ _ 11 Boston _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 7 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Drexel _ PROPN NNP _ 17 compound _ _ 15 Burnham _ PROPN NNP _ 17 compound _ _ 16 Lambert _ PROPN NNP _ 17 compound _ _ 17 Inc. _ PROPN NNP _ 12 conj _ _ 18 began _ VERB VBD _ 0 root _ _ 19 making _ VERB VBG _ 18 xcomp _ _ 20 a _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 19 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 junk _ NOUN NN _ 24 compound _ _ 24 issues _ NOUN NNS _ 21 nmod _ _ 25 early _ ADV RB _ 19 advmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 session _ NOUN NN _ 25 nmod _ _ 29 when _ ADV WRB _ 31 advmod _ _ 30 prices _ NOUN NNS _ 31 nsubj _ _ 31 hit _ VERB VBD _ 19 advcl _ _ 32 severely _ ADV RB _ 33 advmod _ _ 33 depressed _ VERB VBN _ 34 amod _ _ 34 levels _ NOUN NNS _ 31 dobj _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 23 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 willingness _ NOUN NN _ 15 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 securities _ NOUN NNS _ 8 compound _ _ 8 companies _ NOUN NNS _ 5 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 make _ VERB VB _ 5 acl _ _ 11 markets _ NOUN NNS _ 10 dobj _ _ 12 for _ ADP IN _ 14 case _ _ 13 high-yield _ ADJ JJ _ 14 amod _ _ 14 issues _ NOUN NNS _ 10 nmod _ _ 15 improved _ VERB VBD _ 3 ccomp _ _ 16 the _ DET DT _ 17 det _ _ 17 sentiment _ NOUN NN _ 15 dobj _ _ 18 for _ ADP IN _ 20 case _ _ 19 junk _ NOUN NN _ 20 compound _ _ 20 bonds _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 3 punct _ _ 22 '' _ PUNCT '' _ 3 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 John _ PROPN NNP _ 25 compound _ _ 25 Lonski _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 an _ DET DT _ 28 det _ _ 28 economist _ NOUN NN _ 25 appos _ _ 29 at _ ADP IN _ 34 case _ _ 30 Moody _ PROPN NNP _ 34 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 Investors _ PROPN NNP _ 34 compound _ _ 33 Service _ PROPN NNP _ 34 compound _ _ 34 Inc _ PROPN NNP _ 28 nmod _ _ 35 . _ PUNCT . _ 23 punct _ _ 1 U.S. _ PROPN NNP _ 3 compound _ _ 2 Treasury _ PROPN NNP _ 3 compound _ _ 3 bonds _ NOUN NNS _ 5 nsubj _ _ 4 were _ VERB VBD _ 5 cop _ _ 5 higher _ ADJ JJR _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 overnight _ ADJ JJ _ 8 amod _ _ 8 trading _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Japan _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 which _ PRON WDT _ 13 nsubj _ _ 13 opened _ VERB VBD _ 8 acl:relcl _ _ 14 at _ ADP IN _ 18 case _ _ 15 about _ ADV RB _ 18 advmod _ _ 16 7:30 _ NUM CD _ 18 nummod _ _ 17 p.m. _ NOUN NN _ 18 compound _ _ 18 EDT _ PROPN NNP _ 13 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 benchmark _ NOUN NN _ 4 compound _ _ 3 30-year _ ADJ JJ _ 4 amod _ _ 4 bond _ NOUN NN _ 8 nsubj _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 for _ ADP IN _ 7 case _ _ 7 example _ NOUN NN _ 8 nmod _ _ 8 rose _ VERB VBD _ 0 root _ _ 9 one _ NUM CD _ 10 nummod _ _ 10 point _ NOUN NN _ 8 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 early _ ADJ JJ _ 14 amod _ _ 13 Japanese _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 8 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 reaction _ NOUN NN _ 8 nmod _ _ 17 to _ ADP TO _ 21 case _ _ 18 a _ DET DT _ 21 det _ _ 19 quick _ ADJ JJ _ 21 amod _ _ 20 600-point _ ADJ JJ _ 21 amod _ _ 21 drop _ NOUN NN _ 16 nmod _ _ 22 in _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Tokyo _ PROPN NNP _ 26 compound _ _ 25 stock _ NOUN NN _ 26 compound _ _ 26 market _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 as _ SCONJ IN _ 5 mark _ _ 3 Japanese _ ADJ JJ _ 4 amod _ _ 4 stocks _ NOUN NNS _ 5 nsubj _ _ 5 rebounded _ VERB VBD _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Treasurys _ PROPN NNPS _ 8 nsubj _ _ 8 retreated _ VERB VBD _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 ended _ VERB VBD _ 8 conj _ _ 11 just _ ADV RB _ 13 advmod _ _ 12 modestly _ ADV RB _ 13 advmod _ _ 13 higher _ ADV RBR _ 10 advmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 Many _ ADJ JJ _ 4 amod _ _ 2 U.S. _ PROPN NNP _ 4 compound _ _ 3 trading _ NOUN NN _ 4 compound _ _ 4 operations _ NOUN NNS _ 27 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 wanting _ VERB VBG _ 4 acl _ _ 7 to _ PART TO _ 8 mark _ _ 8 keep _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 11 det _ _ 10 watchful _ ADJ JJ _ 11 amod _ _ 11 eye _ NOUN NN _ 8 dobj _ _ 12 on _ ADP IN _ 14 case _ _ 13 Japanese _ ADJ JJ _ 14 amod _ _ 14 trading _ NOUN NN _ 8 nmod _ _ 15 as _ ADP IN _ 17 case _ _ 16 an _ DET DT _ 17 det _ _ 17 indication _ NOUN NN _ 14 nmod _ _ 18 of _ SCONJ IN _ 23 mark _ _ 19 where _ ADV WRB _ 23 advmod _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 trading _ NOUN NN _ 23 nsubj _ _ 22 would _ AUX MD _ 23 aux _ _ 23 begin _ VERB VB _ 17 acl _ _ 24 , _ PUNCT , _ 4 punct _ _ 25 were _ AUX VBD _ 27 auxpass _ _ 26 fully _ ADV RB _ 27 advmod _ _ 27 staffed _ VERB VBN _ 0 root _ _ 28 during _ ADP IN _ 32 case _ _ 29 the _ DET DT _ 32 det _ _ 30 Tokyo _ PROPN NNP _ 32 compound _ _ 31 trading _ NOUN NN _ 32 compound _ _ 32 session _ NOUN NN _ 27 nmod _ _ 33 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Most _ ADJ JJS _ 10 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 action _ NOUN NN _ 2 nmod _ _ 6 was _ VERB VBD _ 10 cop _ _ 7 during _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 night _ NOUN NN _ 10 compound _ _ 10 session _ NOUN NN _ 13 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Michael _ PROPN NNP _ 15 compound _ _ 15 Moore _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 trading _ NOUN NN _ 18 compound _ _ 18 manager _ NOUN NN _ 15 appos _ _ 19 at _ ADP IN _ 21 case _ _ 20 Continental _ PROPN NNP _ 21 compound _ _ 21 Bank _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Jay _ PROPN NNP _ 2 compound _ _ 2 Goldinger _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 6 nsubj _ _ 5 often _ ADV RB _ 6 advmod _ _ 6 trades _ VERB VBZ _ 2 acl:relcl _ _ 7 overnight _ ADV RB _ 6 advmod _ _ 8 for _ ADP IN _ 11 case _ _ 9 Capital _ PROPN NNP _ 11 compound _ _ 10 Insight _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 6 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Beverly _ PROPN NNP _ 14 compound _ _ 14 Hills _ PROPN NNP _ 11 appos _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Calif. _ PROPN NNP _ 14 appos _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 trading _ NOUN NN _ 25 nsubj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Tokyo _ PROPN NNP _ 19 nmod _ _ 22 was _ VERB VBD _ 25 cop _ _ 23 `` _ PUNCT `` _ 25 punct _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 active _ ADJ JJ _ 18 ccomp _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 but _ CONJ CC _ 25 cc _ _ 28 highly _ ADV RB _ 29 advmod _ _ 29 volatile _ ADJ JJ _ 25 conj _ _ 30 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 went _ VERB VBD _ 28 dep _ _ 4 down _ ADV RB _ 3 advmod _ _ 5 3/4 _ NUM CD _ 6 nummod _ _ 6 point _ NOUN NN _ 4 nmod:npmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 10 _ NUM CD _ 9 nummod _ _ 9 minutes _ NOUN NNS _ 3 nmod _ _ 10 right _ ADV RB _ 12 advmod _ _ 11 before _ ADP IN _ 12 case _ _ 12 lunch _ NOUN NN _ 3 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 then _ ADV RB _ 18 advmod _ _ 15 after _ ADP IN _ 16 case _ _ 16 lunch _ NOUN NN _ 18 nmod _ _ 17 we _ PRON PRP _ 18 nsubj _ _ 18 went _ VERB VBD _ 3 parataxis _ _ 19 up _ ADV RB _ 18 advmod _ _ 20 3/4 _ NUM CD _ 21 nummod _ _ 21 point _ NOUN NN _ 19 nmod:npmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 12 _ NUM CD _ 24 nummod _ _ 24 minutes _ NOUN NNS _ 18 nmod _ _ 25 , _ PUNCT , _ 3 punct _ _ 26 '' _ PUNCT '' _ 3 punct _ _ 27 he _ PRON PRP _ 28 nsubj _ _ 28 said _ VERB VBD _ 0 root _ _ 29 . _ PUNCT . _ 28 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Tokyo _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 trading _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 halted _ VERB VBN _ 0 root _ _ 7 during _ ADP IN _ 8 case _ _ 8 lunchtime _ NOUN NN _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 Tokyo _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 turned _ VERB VBD _ 0 root _ _ 5 out _ ADP RP _ 4 compound:prt _ _ 6 to _ PART TO _ 10 mark _ _ 7 be _ VERB VB _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 bad _ ADJ JJ _ 10 amod _ _ 10 bellwether _ NOUN NN _ 4 xcomp _ _ 11 for _ ADP IN _ 13 case _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 trading _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 opened _ VERB VBD _ 9 advcl _ _ 5 here _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 bonds _ NOUN NNS _ 8 compound _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 fell _ VERB VBD _ 0 root _ _ 10 as _ SCONJ IN _ 14 mark _ _ 11 the _ DET DT _ 13 det _ _ 12 stock _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 14 nsubj _ _ 14 regained _ VERB VBD _ 9 advcl _ _ 15 strength _ NOUN NN _ 14 dobj _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 bond _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 focus _ NOUN NN _ 11 nsubj _ _ 6 on _ ADP IN _ 8 case _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 activity _ NOUN NN _ 5 nmod _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 so _ ADV RB _ 11 advmod _ _ 11 strong _ ADJ JJ _ 0 root _ _ 12 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 13 that _ SCONJ IN _ 15 mark _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 overshadowed _ VERB VBD _ 11 ccomp _ _ 16 today _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 slate _ NOUN NN _ 15 dobj _ _ 19 of _ ADP IN _ 21 case _ _ 20 economic _ ADJ JJ _ 21 amod _ _ 21 data _ NOUN NNS _ 18 nmod _ _ 22 , _ PUNCT , _ 18 punct _ _ 23 which _ PRON WDT _ 24 nsubj _ _ 24 includes _ VERB VBZ _ 18 acl:relcl _ _ 25 the _ DET DT _ 26 det _ _ 26 government _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 report _ NOUN NN _ 24 dobj _ _ 29 on _ ADP IN _ 33 case _ _ 30 August _ PROPN NNP _ 33 compound _ _ 31 U.S. _ PROPN NNP _ 33 compound _ _ 32 merchandise _ NOUN NN _ 33 compound _ _ 33 trade _ NOUN NN _ 28 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 September _ PROPN NNP _ 37 compound _ _ 36 industrial _ ADJ JJ _ 37 amod _ _ 37 production _ NOUN NN _ 33 conj _ _ 38 . _ PUNCT . _ 11 punct _ _ 1 Industrial _ ADJ JJ _ 2 amod _ _ 2 production _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 have _ AUX VB _ 7 aux _ _ 7 declined _ VERB VBN _ 4 xcomp _ _ 8 0.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 according _ VERB VBG _ 14 case _ _ 12 to _ ADP TO _ 11 mwe _ _ 13 a _ DET DT _ 14 det _ _ 14 consensus _ NOUN NN _ 4 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 economists _ NOUN NNS _ 14 nmod _ _ 17 surveyed _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 23 case _ _ 19 Dow _ PROPN NNP _ 23 compound _ _ 20 Jones _ PROPN NNP _ 23 compound _ _ 21 Capital _ PROPN NNP _ 23 compound _ _ 22 Markets _ PROPN NNP _ 23 compound _ _ 23 Report _ PROPN NNP _ 17 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 August _ PROPN NNP _ 4 compound _ _ 3 trade _ NOUN NN _ 4 compound _ _ 4 deficit _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 9 mark _ _ 8 have _ AUX VB _ 9 aux _ _ 9 widened _ VERB VBN _ 6 xcomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 9.1 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 9 nmod _ _ 16 7.58 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 19 case _ _ 19 July _ PROPN NNP _ 15 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 widening _ NOUN NN _ 18 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 that _ DET DT _ 5 det _ _ 5 magnitude _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 said _ VERB VBD _ 18 parataxis _ _ 8 one _ NUM CD _ 11 nummod _ _ 9 New _ PROPN NNP _ 11 compound _ _ 10 York _ PROPN NNP _ 11 compound _ _ 11 trader _ NOUN NN _ 7 nsubj _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 is _ VERB VBZ _ 18 cop _ _ 14 `` _ PUNCT `` _ 18 punct _ _ 15 not _ ADV RB _ 18 neg _ _ 16 a _ DET DT _ 18 det _ _ 17 favorable _ ADJ JJ _ 18 amod _ _ 18 number _ NOUN NN _ 0 root _ _ 19 ... _ PUNCT : _ 18 punct _ _ 20 . _ PUNCT . _ 18 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 could _ AUX MD _ 3 aux _ _ 3 do _ VERB VB _ 0 root _ _ 4 damage _ NOUN NN _ 3 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 us _ PRON PRP _ 4 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 agency _ NOUN NN _ 4 compound _ _ 4 supply _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 weigh _ VERB VB _ 6 xcomp _ _ 9 heavily _ ADV RB _ 8 advmod _ _ 10 on _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 market _ NOUN NN _ 8 nmod _ _ 13 today _ NOUN NN _ 8 nmod:tmod _ _ 14 when _ ADV WRB _ 20 advmod _ _ 15 the _ DET DT _ 19 det _ _ 16 Federal _ PROPN NNP _ 19 compound _ _ 17 Home _ PROPN NNP _ 19 compound _ _ 18 Loan _ PROPN NNP _ 19 compound _ _ 19 Bank _ PROPN NNP _ 20 nsubj _ _ 20 prices _ VERB VBZ _ 13 acl:relcl _ _ 21 a _ DET DT _ 25 det _ _ 22 $ _ SYM $ _ 25 amod _ _ 23 2.3 _ NUM CD _ 24 compound _ _ 24 billion _ NUM CD _ 22 nummod _ _ 25 offering _ NOUN NN _ 20 dobj _ _ 26 of _ ADP IN _ 34 case _ _ 27 one-year _ ADJ JJ _ 34 amod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 three-year _ ADJ JJ _ 27 conj _ _ 30 , _ PUNCT , _ 27 punct _ _ 31 five-year _ ADJ JJ _ 27 conj _ _ 32 and _ CONJ CC _ 27 cc _ _ 33 10-year _ ADJ JJ _ 27 conj _ _ 34 maturities _ NOUN NNS _ 25 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 Tomorrow _ NOUN NN _ 8 nmod:tmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 Resolution _ PROPN NNP _ 6 compound _ _ 5 Funding _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 provide _ VERB VB _ 0 root _ _ 9 details _ NOUN NNS _ 8 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 its _ PRON PRP$ _ 14 nmod:poss _ _ 12 first _ ADJ JJ _ 14 amod _ _ 13 bond _ NOUN NN _ 14 compound _ _ 14 issue _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 18 nsubjpass _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 expected _ VERB VBN _ 14 acl:relcl _ _ 19 to _ PART TO _ 20 mark _ _ 20 total _ VERB VB _ 18 xcomp _ _ 21 between _ ADP IN _ 22 advmod _ _ 22 $ _ SYM $ _ 20 dobj _ _ 23 4 _ NUM CD _ 24 compound _ _ 24 billion _ NUM CD _ 22 nummod _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 $ _ SYM $ _ 22 conj _ _ 27 6 _ NUM CD _ 28 compound _ _ 28 billion _ NUM CD _ 26 nummod _ _ 29 and _ CONJ CC _ 20 cc _ _ 30 carry _ VERB VB _ 20 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 maturity _ NOUN NN _ 30 dobj _ _ 33 greater _ ADJ JJR _ 32 amod _ _ 34 than _ ADP IN _ 36 case _ _ 35 20 _ NUM CD _ 36 nummod _ _ 36 years _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 8 punct _ _ 1 Resolution _ PROPN NNP _ 2 compound _ _ 2 Funding _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 division _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 Resolution _ PROPN NNP _ 9 compound _ _ 8 Trust _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 the _ DET DT _ 14 det _ _ 12 new _ ADJ JJ _ 14 amod _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 agency _ NOUN NN _ 9 appos _ _ 15 created _ VERB VBN _ 14 acl _ _ 16 to _ PART TO _ 17 mark _ _ 17 bail _ VERB VB _ 15 xcomp _ _ 18 out _ ADP RP _ 17 compound:prt _ _ 19 the _ DET DT _ 20 det _ _ 20 nation _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 troubled _ VERB VBN _ 23 amod _ _ 23 thrifts _ NOUN NNS _ 17 dobj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 8 cc _ _ 2 this _ DET DT _ 3 det _ _ 3 week _ NOUN NN _ 8 nmod:tmod _ _ 4 the _ DET DT _ 7 det _ _ 5 Tennessee _ PROPN NNP _ 7 compound _ _ 6 Valley _ PROPN NNP _ 7 compound _ _ 7 Authority _ PROPN NNP _ 8 nsubj _ _ 8 plans _ VERB VBZ _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 price _ VERB VB _ 8 xcomp _ _ 11 a _ DET DT _ 15 det _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 3 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 offering _ NOUN NN _ 10 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 its _ PRON PRP$ _ 21 nmod:poss _ _ 18 first _ ADJ JJ _ 21 amod _ _ 19 public _ NOUN NN _ 21 compound _ _ 20 debt _ NOUN NN _ 21 compound _ _ 21 borrowing _ NOUN NN _ 15 appos _ _ 22 in _ ADP IN _ 24 case _ _ 23 15 _ NUM CD _ 24 nummod _ _ 24 years _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 There _ PRON EX _ 4 expl _ _ 3 's _ PART POS _ 4 dep _ _ 4 lots _ NOUN NNS _ 13 ccomp _ _ 5 of _ ADP IN _ 6 case _ _ 6 supply _ NOUN NN _ 4 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 '' _ PUNCT '' _ 13 punct _ _ 9 the _ DET DT _ 12 det _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 trader _ NOUN NN _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 couple _ NOUN NN _ 9 nummod _ _ 6 or _ CONJ CC _ 5 cc _ _ 7 three _ NUM CD _ 5 conj _ _ 8 tough _ ADJ JJ _ 9 amod _ _ 9 weeks _ NOUN NNS _ 10 nsubj _ _ 10 coming _ VERB VBG _ 3 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 Treasury _ PROPN NNP _ 2 compound _ _ 2 Securities _ PROPN NNP _ 0 root _ _ 1 Prices _ PROPN NNP _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 Treasury _ PROPN NNP _ 4 compound _ _ 4 bonds _ NOUN NNS _ 1 nmod _ _ 5 tumbled _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 10 case _ _ 7 moderate _ ADJ JJ _ 10 amod _ _ 8 to _ ADP TO _ 9 case _ _ 9 active _ ADJ JJ _ 7 advcl _ _ 10 trading _ NOUN NN _ 5 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 benchmark _ NOUN NN _ 5 compound _ _ 3 30-year _ ADJ JJ _ 5 amod _ _ 4 Treasury _ PROPN NNP _ 5 compound _ _ 5 bond _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 quoted _ VERB VBN _ 0 root _ _ 8 late _ ADV RB _ 7 advmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 price _ NOUN NN _ 7 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 101 _ NUM CD _ 14 compound _ _ 14 19/32 _ NUM CD _ 11 nmod _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 compared _ VERB VBN _ 20 case _ _ 17 with _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 closing _ NOUN NN _ 20 compound _ _ 20 price _ NOUN NN _ 7 advcl _ _ 21 of _ ADP IN _ 23 case _ _ 22 103 _ NUM CD _ 23 compound _ _ 23 12/32 _ NUM CD _ 20 nmod _ _ 24 Friday _ PROPN NNP _ 20 nmod:tmod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 yield _ NOUN NN _ 7 nsubj _ _ 3 on _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 benchmark _ NOUN NN _ 6 compound _ _ 6 issue _ NOUN NN _ 2 nmod _ _ 7 rose _ VERB VBD _ 0 root _ _ 8 to _ ADP TO _ 10 case _ _ 9 7.97 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 from _ ADP IN _ 13 case _ _ 12 7.82 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 7 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 latest _ ADJ JJS _ 4 amod _ _ 3 10-year _ ADJ JJ _ 4 amod _ _ 4 notes _ NOUN NNS _ 6 nsubjpass _ _ 5 were _ AUX VBD _ 6 auxpass _ _ 6 quoted _ VERB VBN _ 0 root _ _ 7 late _ ADV RB _ 6 advmod _ _ 8 at _ ADP IN _ 10 case _ _ 9 100 _ NUM CD _ 10 compound _ _ 10 3/32 _ NUM CD _ 6 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 yield _ NOUN NN _ 6 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 7.97 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 compared _ VERB VBN _ 21 case _ _ 19 with _ ADP IN _ 21 case _ _ 20 101 _ NUM CD _ 21 compound _ _ 21 9/32 _ NUM CD _ 6 advcl _ _ 22 to _ PART TO _ 23 mark _ _ 23 yield _ VERB VB _ 21 acl _ _ 24 7.84 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 23 dobj _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 Short-term _ ADJ JJ _ 3 amod _ _ 2 interest _ NOUN NN _ 3 compound _ _ 3 rates _ NOUN NNS _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 yesterday _ NOUN NN _ 4 nmod:tmod _ _ 6 at _ ADP IN _ 13 case _ _ 7 the _ DET DT _ 8 det _ _ 8 government _ NOUN NN _ 13 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 weekly _ ADJ JJ _ 13 amod _ _ 11 Treasury _ PROPN NNP _ 13 compound _ _ 12 bill _ NOUN NN _ 13 compound _ _ 13 auction _ NOUN NN _ 4 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 average _ ADJ JJ _ 4 amod _ _ 3 discount _ NOUN NN _ 4 compound _ _ 4 rate _ NOUN NN _ 12 nsubj _ _ 5 on _ ADP IN _ 9 case _ _ 6 new _ ADJ JJ _ 9 amod _ _ 7 three-month _ ADJ JJ _ 9 amod _ _ 8 Treasury _ PROPN NNP _ 9 compound _ _ 9 bills _ NOUN NNS _ 4 nmod _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 7.37 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 lowest _ ADJ JJS _ 12 appos _ _ 16 since _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 average _ NOUN NN _ 15 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 7.36 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 at _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 auction _ NOUN NN _ 18 nmod _ _ 25 on _ ADP IN _ 26 case _ _ 26 Oct. _ PROPN NNP _ 24 nmod _ _ 27 17 _ NUM CD _ 26 nummod _ _ 28 , _ PUNCT , _ 26 punct _ _ 29 1988 _ NUM CD _ 26 nummod _ _ 30 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 average _ ADJ JJ _ 4 amod _ _ 3 discount _ NOUN NN _ 4 compound _ _ 4 rate _ NOUN NN _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 7.42 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 0 root _ _ 8 on _ ADP IN _ 11 case _ _ 9 new _ ADJ JJ _ 11 amod _ _ 10 six-month _ ADJ JJ _ 11 amod _ _ 11 bills _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 lowest _ ADJ JJS _ 7 appos _ _ 15 since _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 average _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 7.35 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 17 nmod _ _ 21 at _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 auction _ NOUN NN _ 20 nmod _ _ 24 on _ ADP IN _ 25 case _ _ 25 July _ PROPN NNP _ 23 nmod _ _ 26 31 _ NUM CD _ 25 nummod _ _ 27 , _ PUNCT , _ 25 punct _ _ 28 1989 _ NUM CD _ 25 nummod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Here _ ADV RB _ 4 nsubj _ _ 2 are _ VERB VBP _ 4 cop _ _ 3 auction _ NOUN NN _ 4 compound _ _ 4 details _ NOUN NNS _ 0 root _ _ 5 : _ PUNCT : _ 4 punct _ _ 1 Rates _ NOUN NNS _ 3 nsubjpass _ _ 2 are _ AUX VBP _ 3 auxpass _ _ 3 determined _ VERB VBN _ 0 root _ _ 4 by _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 difference _ NOUN NN _ 3 nmod _ _ 7 between _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 purchase _ NOUN NN _ 10 compound _ _ 10 price _ NOUN NN _ 6 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 face _ NOUN NN _ 13 compound _ _ 13 value _ NOUN NN _ 10 conj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Thus _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 higher _ ADJ JJR _ 4 amod _ _ 4 bidding _ NOUN NN _ 5 nsubj _ _ 5 narrows _ VERB VBZ _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 investor _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 return _ NOUN NN _ 5 dobj _ _ 10 while _ SCONJ IN _ 13 mark _ _ 11 lower _ ADJ JJR _ 12 amod _ _ 12 bidding _ NOUN NN _ 13 nsubj _ _ 13 widens _ VERB VBZ _ 5 advcl _ _ 14 it _ PRON PRP _ 13 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 percentage _ NOUN NN _ 3 compound _ _ 3 rates _ NOUN NNS _ 5 nsubjpass _ _ 4 are _ AUX VBP _ 5 auxpass _ _ 5 calculated _ VERB VBN _ 0 root _ _ 6 on _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 360-day _ ADJ JJ _ 9 amod _ _ 9 year _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 while _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 coupon-equivalent _ ADJ JJ _ 14 amod _ _ 14 yield _ NOUN NN _ 16 nsubjpass _ _ 15 is _ AUX VBZ _ 16 auxpass _ _ 16 based _ VERB VBN _ 5 advcl _ _ 17 on _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 365-day _ ADJ JJ _ 20 amod _ _ 20 year _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Both _ DET DT _ 2 det _ _ 2 issues _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 dated _ VERB VBN _ 0 root _ _ 5 Oct. _ PROPN NNP _ 4 nmod:tmod _ _ 6 19 _ NUM CD _ 5 nummod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 13-week _ ADJ JJ _ 3 amod _ _ 3 bills _ NOUN NNS _ 4 nsubj _ _ 4 mature _ VERB VBP _ 0 root _ _ 5 Jan. _ NOUN NN _ 4 nmod:tmod _ _ 6 18 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1990 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 the _ DET DT _ 13 det _ _ 12 26-week _ ADJ JJ _ 13 amod _ _ 13 bills _ NOUN NNS _ 14 nsubj _ _ 14 mature _ VERB VBP _ 4 conj _ _ 15 April _ PROPN NNP _ 14 nmod:tmod _ _ 16 19 _ NUM CD _ 15 nummod _ _ 17 , _ PUNCT , _ 15 punct _ _ 18 1990 _ NUM CD _ 15 nummod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Corporate _ ADJ JJ _ 2 amod _ _ 2 Issues _ NOUN NNS _ 0 root _ _ 1 Investment-grade _ ADJ JJ _ 3 amod _ _ 2 corporate _ ADJ JJ _ 3 amod _ _ 3 bonds _ NOUN NNS _ 4 nsubj _ _ 4 ended _ VERB VBD _ 0 root _ _ 5 one _ NUM CD _ 8 compound _ _ 6 to _ ADP TO _ 8 dep _ _ 7 1 _ NUM CD _ 8 compound _ _ 8 1/2 _ NUM CD _ 9 nummod _ _ 9 point _ NOUN NN _ 10 nmod:npmod _ _ 10 lower _ ADV RBR _ 4 xcomp _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 issues _ NOUN NNS _ 2 nsubj _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 Foreign _ ADJ JJ _ 2 amod _ _ 2 Bonds _ NOUN NNS _ 0 root _ _ 1 Foreign _ ADJ JJ _ 2 amod _ _ 2 bonds _ NOUN NNS _ 3 nsubj _ _ 3 surged _ VERB VBD _ 0 root _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 dollar _ NOUN NN _ 7 nsubj _ _ 7 weakened _ VERB VBD _ 3 advcl _ _ 8 against _ ADP IN _ 11 case _ _ 9 most _ ADJ JJS _ 11 amod _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 currencies _ NOUN NNS _ 7 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 benchmark _ NOUN NN _ 3 compound _ _ 3 issues _ NOUN NNS _ 15 nmod _ _ 4 : _ PUNCT : _ 15 punct _ _ 5 -- _ PUNCT : _ 15 punct _ _ 6 Japan _ PROPN NNP _ 12 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 No. _ NOUN NN _ 12 compound _ _ 9 111 _ NUM CD _ 12 nummod _ _ 10 4.6 _ NUM CD _ 11 compound _ _ 11 % _ SYM NN _ 12 amod _ _ 12 bond _ NOUN NN _ 15 nsubj _ _ 13 due _ ADJ JJ _ 12 amod _ _ 14 1998 _ NUM CD _ 13 nmod:tmod _ _ 15 ended _ VERB VBD _ 0 root _ _ 16 on _ ADP IN _ 18 case _ _ 17 brokers _ NOUN NNS _ 18 compound _ _ 18 screens _ NOUN NNS _ 15 nmod _ _ 19 at _ ADP IN _ 20 case _ _ 20 96.15 _ NUM CD _ 15 nmod _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 up _ ADV RB _ 15 advmod _ _ 23 1.17 _ NUM CD _ 24 nummod _ _ 24 point _ NOUN NN _ 22 nmod:npmod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 yield _ NOUN NN _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 5.245 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 -- _ PUNCT : _ 12 punct _ _ 2 West _ PROPN NNP _ 3 compound _ _ 3 Germany _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 6 _ NUM CD _ 6 compound _ _ 6 3/4 _ NUM CD _ 7 dep _ _ 7 % _ SYM NN _ 8 dep _ _ 8 issue _ NOUN NN _ 12 nsubj _ _ 9 due _ ADJ JJ _ 8 amod _ _ 10 June _ PROPN NNP _ 9 nmod:tmod _ _ 11 1999 _ NUM CD _ 10 nummod _ _ 12 ended _ VERB VBD _ 0 root _ _ 13 at _ ADP IN _ 14 case _ _ 14 98.30 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 up _ ADV RB _ 12 advmod _ _ 17 0.91 _ NUM CD _ 18 nummod _ _ 18 point _ NOUN NN _ 16 nmod:npmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 yield _ VERB VB _ 12 xcomp _ _ 21 6.99 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 20 dobj _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 -- _ PUNCT : _ 10 punct _ _ 2 Britain _ PROPN NNP _ 7 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 11 _ NUM CD _ 5 compound _ _ 5 3/4 _ NUM CD _ 6 dep _ _ 6 % _ SYM NN _ 7 dep _ _ 7 bond _ NOUN NN _ 10 nsubj _ _ 8 due _ ADJ JJ _ 7 amod _ _ 9 2003/2007 _ NUM CD _ 8 nmod:tmod _ _ 10 ended _ VERB VBD _ 0 root _ _ 11 1 _ NUM CD _ 12 compound _ _ 12 1/8 _ NUM CD _ 13 nmod:npmod _ _ 13 higher _ ADV RBR _ 10 advmod _ _ 14 at _ ADP IN _ 16 case _ _ 15 111 _ NUM CD _ 16 compound _ _ 16 19/32 _ NUM CD _ 10 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 yield _ VERB VB _ 10 xcomp _ _ 19 10.12 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 while _ SCONJ IN _ 30 mark _ _ 23 the _ DET DT _ 27 det _ _ 24 11 _ NUM CD _ 25 compound _ _ 25 3/4 _ NUM CD _ 26 dep _ _ 26 % _ SYM NN _ 27 dep _ _ 27 notes _ NOUN NNS _ 30 nsubj _ _ 28 due _ ADJ JJ _ 27 amod _ _ 29 1991 _ NUM CD _ 28 nmod:tmod _ _ 30 rose _ VERB VBD _ 10 advcl _ _ 31 21/32 _ NUM CD _ 30 dobj _ _ 32 to _ ADP TO _ 34 case _ _ 33 98 _ NUM CD _ 34 compound _ _ 34 26/32 _ NUM CD _ 30 nmod _ _ 35 to _ PART TO _ 36 mark _ _ 36 yield _ VERB VB _ 30 advcl _ _ 37 12.74 _ NUM CD _ 38 nummod _ _ 38 % _ SYM NN _ 36 dobj _ _ 39 . _ PUNCT . _ 10 punct _ _ 1 Mortgage-Backed _ ADJ JJ _ 2 amod _ _ 2 Securities _ NOUN NNS _ 0 root _ _ 1 Mortgage _ NOUN NN _ 2 compound _ _ 2 securities _ NOUN NNS _ 3 nsubj _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 up _ ADP RP _ 3 compound:prt _ _ 5 most _ ADJ JJS _ 3 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 Friday _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 gains _ NOUN NNS _ 5 nmod _ _ 10 as _ SCONJ IN _ 13 mark _ _ 11 active _ ADJ JJ _ 12 amod _ _ 12 issues _ NOUN NNS _ 13 nsubj _ _ 13 ended _ VERB VBD _ 3 advcl _ _ 14 24/32 _ NUM CD _ 16 compound _ _ 15 to _ ADP TO _ 16 dep _ _ 16 30/32 _ NUM CD _ 17 nummod _ _ 17 point _ NOUN NN _ 18 nmod:npmod _ _ 18 lower _ ADV RBR _ 13 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Dealers _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 morning _ NOUN NN _ 4 compound _ _ 4 activity _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 hectic _ ADJ JJ _ 2 dep _ _ 7 as _ SCONJ IN _ 9 mark _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 dropped _ VERB VBD _ 6 dep _ _ 10 in _ ADP IN _ 11 case _ _ 11 response _ NOUN NN _ 9 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 gains _ NOUN NNS _ 11 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 losses _ NOUN NNS _ 13 conj _ _ 20 in _ ADP IN _ 22 case _ _ 21 Treasury _ PROPN NNP _ 22 compound _ _ 22 securities _ NOUN NNS _ 19 nmod _ _ 23 , _ PUNCT , _ 6 punct _ _ 24 but _ CONJ CC _ 6 cc _ _ 25 trading _ NOUN NN _ 26 nsubj _ _ 26 slowed _ VERB VBD _ 6 conj _ _ 27 to _ ADP TO _ 29 case _ _ 28 moderate _ ADJ JJ _ 29 amod _ _ 29 levels _ NOUN NNS _ 26 nmod _ _ 30 in _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 afternoon _ NOUN NN _ 26 nmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Government _ PROPN NNP _ 7 compound _ _ 2 National _ PROPN NNP _ 7 compound _ _ 3 Mortgage _ PROPN NNP _ 7 compound _ _ 4 Association _ PROPN NNP _ 7 compound _ _ 5 9 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 securities _ NOUN NNS _ 12 nsubjpass _ _ 8 for _ ADP IN _ 10 case _ _ 9 November _ PROPN NNP _ 10 compound _ _ 10 delivery _ NOUN NN _ 7 nmod _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 quoted _ VERB VBN _ 0 root _ _ 13 late _ ADJ JJ _ 14 amod _ _ 14 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 98 _ NUM CD _ 17 compound _ _ 17 4/32 _ NUM CD _ 12 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 down _ ADV RB _ 12 advmod _ _ 20 30/32 _ NUM CD _ 19 nmod:npmod _ _ 21 from _ ADP IN _ 22 case _ _ 22 Friday _ PROPN NNP _ 19 nmod _ _ 23 ; _ PUNCT : _ 12 punct _ _ 24 9 _ NUM CD _ 25 compound _ _ 25 1/2 _ NUM CD _ 26 dep _ _ 26 % _ SYM NN _ 27 dep _ _ 27 securities _ NOUN NNS _ 33 nsubj _ _ 28 were _ VERB VBD _ 33 cop _ _ 29 down _ ADV RB _ 33 advmod _ _ 30 27/32 _ NUM CD _ 29 nmod:npmod _ _ 31 at _ ADP IN _ 33 case _ _ 32 100 _ NUM CD _ 33 compound _ _ 33 5/32 _ NUM CD _ 12 conj _ _ 34 ; _ PUNCT : _ 12 punct _ _ 35 and _ CONJ CC _ 12 cc _ _ 36 10 _ NUM CD _ 37 compound _ _ 37 % _ SYM NN _ 38 amod _ _ 38 securities _ NOUN NNS _ 42 nsubj _ _ 39 were _ VERB VBD _ 42 cop _ _ 40 at _ ADP IN _ 42 case _ _ 41 102 _ NUM CD _ 42 compound _ _ 42 2/32 _ NUM CD _ 12 conj _ _ 43 , _ PUNCT , _ 42 punct _ _ 44 off _ ADJ JJ _ 42 advmod _ _ 45 24/32 _ NUM CD _ 44 dep _ _ 46 . _ PUNCT . _ 12 punct _ _ 1 Federal _ PROPN NNP _ 8 compound _ _ 2 Home _ PROPN NNP _ 8 compound _ _ 3 Loan _ PROPN NNP _ 8 compound _ _ 4 Mortgage _ PROPN NNP _ 8 compound _ _ 5 Corp. _ PROPN NNP _ 8 compound _ _ 6 9 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 8 amod _ _ 8 securities _ NOUN NNS _ 12 nsubj _ _ 9 were _ VERB VBD _ 12 cop _ _ 10 at _ ADP IN _ 12 case _ _ 11 97 _ NUM CD _ 12 compound _ _ 12 1/4 _ NUM CD _ 0 root _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 down _ ADV RB _ 12 advmod _ _ 15 3/4 _ NUM CD _ 14 nmod:npmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Friday _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 mortgage _ NOUN NN _ 5 compound _ _ 5 issues _ NOUN NNS _ 6 nsubj _ _ 6 gained _ VERB VBD _ 0 root _ _ 7 as _ ADV RB _ 8 advmod _ _ 8 much _ ADV RB _ 6 advmod _ _ 9 as _ ADP IN _ 11 case _ _ 10 1 _ NUM CD _ 11 compound _ _ 11 5/32 _ NUM CD _ 8 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Late _ ADJ JJ _ 2 amod _ _ 2 yesterday _ NOUN NN _ 9 nmod:tmod _ _ 3 Ginnie _ PROPN NNP _ 7 compound _ _ 4 Mae _ PROPN NNP _ 7 compound _ _ 5 9 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 securities _ NOUN NNS _ 9 nsubj _ _ 8 were _ AUX VBD _ 9 aux _ _ 9 yielding _ VERB VBG _ 0 root _ _ 10 9.39 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 to _ ADP TO _ 17 case _ _ 13 a _ DET DT _ 17 det _ _ 14 12-year _ ADJ JJ _ 17 amod _ _ 15 average _ NOUN NN _ 17 compound _ _ 16 life _ NOUN NN _ 17 compound _ _ 17 assumption _ NOUN NN _ 9 nmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 as _ SCONJ IN _ 27 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 spread _ NOUN NN _ 27 nsubj _ _ 22 above _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Treasury _ PROPN NNP _ 26 compound _ _ 25 10-year _ ADJ JJ _ 26 amod _ _ 26 note _ NOUN NN _ 21 nmod _ _ 27 narrowed _ VERB VBD _ 9 advcl _ _ 28 0.01 _ NUM CD _ 30 nummod _ _ 29 percentage _ NOUN NN _ 30 compound _ _ 30 point _ NOUN NN _ 27 dobj _ _ 31 to _ ADP TO _ 32 case _ _ 32 1.42 _ NUM CD _ 27 nmod _ _ 33 . _ PUNCT . _ 9 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 there _ PRON EX _ 4 expl _ _ 4 were _ VERB VBD _ 2 ccomp _ _ 5 some _ DET DT _ 7 det _ _ 6 busy _ ADJ JJ _ 7 amod _ _ 7 dealings _ NOUN NNS _ 4 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 Freddie _ PROPN NNP _ 10 compound _ _ 10 Mac _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Federal _ PROPN NNP _ 16 compound _ _ 13 National _ PROPN NNP _ 16 compound _ _ 14 Mortgage _ PROPN NNP _ 16 compound _ _ 15 Association _ PROPN NNP _ 16 compound _ _ 16 securities _ NOUN NNS _ 10 conj _ _ 17 because _ SCONJ IN _ 32 mark _ _ 18 underwriters _ NOUN NNS _ 32 nsubj _ _ 19 from _ ADP IN _ 24 case _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 week _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 heavy _ ADJ JJ _ 24 amod _ _ 24 slate _ NOUN NN _ 18 nmod _ _ 25 of _ ADP IN _ 31 case _ _ 26 real _ ADJ JJ _ 31 amod _ _ 27 estate _ NOUN NN _ 31 compound _ _ 28 mortgage _ NOUN NN _ 31 compound _ _ 29 investment _ NOUN NN _ 31 compound _ _ 30 conduit _ NOUN NN _ 31 compound _ _ 31 issues _ NOUN NNS _ 24 nmod _ _ 32 moved _ VERB VBD _ 4 advcl _ _ 33 to _ PART TO _ 34 mark _ _ 34 gather _ VERB VB _ 32 xcomp _ _ 35 collateral _ NOUN NN _ 34 dobj _ _ 36 for _ ADP IN _ 38 case _ _ 37 new _ ADJ JJ _ 38 amod _ _ 38 deals _ NOUN NNS _ 35 nmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Offsetting _ VERB VBG _ 0 root _ _ 2 the _ DET DT _ 4 det _ _ 3 Remic-related _ ADJ JJ _ 4 amod _ _ 4 purchases _ NOUN NNS _ 1 dobj _ _ 5 were _ VERB VBD _ 1 aux _ _ 6 continued _ VERB VBN _ 8 amod _ _ 7 heavy _ ADJ JJ _ 8 amod _ _ 8 sales _ NOUN NNS _ 1 nsubj _ _ 9 by _ ADP IN _ 11 case _ _ 10 mortgage _ NOUN NN _ 11 compound _ _ 11 originators _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 which _ PRON WDT _ 15 nsubj _ _ 14 are _ AUX VBP _ 15 aux _ _ 15 producing _ VERB VBG _ 8 acl:relcl _ _ 16 increased _ VERB VBN _ 17 amod _ _ 17 amounts _ NOUN NNS _ 15 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 fixed-rate _ ADJ JJ _ 21 amod _ _ 20 mortgage-backed _ ADJ JJ _ 21 amod _ _ 21 issues _ NOUN NNS _ 17 nmod _ _ 22 with _ ADP IN _ 24 case _ _ 23 lower _ ADJ JJR _ 24 amod _ _ 24 rates _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 1 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 was _ VERB VBD _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 new-issue _ ADJ JJ _ 5 amod _ _ 5 activity _ NOUN NN _ 2 nsubj _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 derivative _ ADJ JJ _ 9 amod _ _ 9 market _ NOUN NN _ 2 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 Municipals _ NOUN NNS _ 0 root _ _ 1 Rebounding _ VERB VBG _ 2 amod _ _ 2 stocks _ NOUN NNS _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 weaker _ ADJ JJR _ 6 amod _ _ 5 Treasury _ PROPN NNP _ 6 compound _ _ 6 prices _ NOUN NNS _ 2 conj _ _ 7 drove _ VERB VBD _ 0 root _ _ 8 municipal _ ADJ JJ _ 9 amod _ _ 9 bonds _ NOUN NNS _ 7 dobj _ _ 10 1/4 _ NUM CD _ 12 compound _ _ 11 to _ ADP TO _ 12 dep _ _ 12 3/4 _ NUM CD _ 13 nummod _ _ 13 point _ NOUN NN _ 14 nmod:npmod _ _ 14 lower _ ADV RBR _ 7 advmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 late _ ADJ JJ _ 17 amod _ _ 17 dealings _ NOUN NNS _ 7 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 session _ NOUN NN _ 3 compound _ _ 3 losses _ NOUN NNS _ 4 nsubj _ _ 4 left _ VERB VBD _ 0 root _ _ 5 municipal _ ADJ JJ _ 7 amod _ _ 6 dollar _ NOUN NN _ 7 compound _ _ 7 bonds _ NOUN NNS _ 8 nsubj _ _ 8 close _ ADJ JJ _ 4 xcomp _ _ 9 to _ ADP TO _ 12 mark _ _ 10 where _ ADV WRB _ 12 advmod _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 were _ VERB VBD _ 8 advcl _ _ 13 before _ SCONJ IN _ 24 mark _ _ 14 the _ DET DT _ 16 det _ _ 15 190.58-point _ ADJ JJ _ 16 amod _ _ 16 drop _ NOUN NN _ 24 nsubj _ _ 17 in _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 Dow _ PROPN NNP _ 22 compound _ _ 20 Jones _ PROPN NNP _ 22 compound _ _ 21 Industrial _ PROPN NNP _ 22 compound _ _ 22 Average _ PROPN NNP _ 16 nmod _ _ 23 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 24 prompted _ VERB VBD _ 12 advcl _ _ 25 a _ DET DT _ 28 det _ _ 26 capital _ NOUN NN _ 28 compound _ _ 27 markets _ NOUN NNS _ 28 compound _ _ 28 rally _ NOUN NN _ 24 dobj _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Trading _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 hectic _ ADJ JJ _ 0 root _ _ 4 during _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 morning _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 with _ SCONJ IN _ 10 mark _ _ 9 players _ NOUN NNS _ 10 nsubj _ _ 10 trying _ VERB VBG _ 3 advcl _ _ 11 to _ PART TO _ 12 mark _ _ 12 gauge _ VERB VB _ 10 xcomp _ _ 13 whether _ SCONJ IN _ 16 mark _ _ 14 equities _ NOUN NNS _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 continue _ VERB VB _ 12 ccomp _ _ 17 Friday _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 free _ ADJ JJ _ 20 amod _ _ 20 fall _ NOUN NN _ 16 nmod:tmod _ _ 21 or _ CONJ CC _ 16 cc _ _ 22 stabilize _ VERB VB _ 16 conj _ _ 23 after _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 brief _ ADJ JJ _ 26 amod _ _ 26 spot _ NOUN NN _ 22 nmod _ _ 27 of _ ADP IN _ 28 case _ _ 28 weakness _ NOUN NN _ 26 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Tax-exempts _ NOUN NNS _ 2 nsubj _ _ 2 started _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 session _ NOUN NN _ 2 dobj _ _ 5 flat _ ADJ JJ _ 2 xcomp _ _ 6 to _ ADP TO _ 9 case _ _ 7 a _ DET DT _ 8 det _ _ 8 touch _ NOUN NN _ 9 nmod:npmod _ _ 9 higher _ ADV RBR _ 5 advcl _ _ 10 on _ ADP IN _ 11 case _ _ 11 anticipation _ NOUN NN _ 2 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 further _ ADJ JJ _ 16 amod _ _ 14 stock _ NOUN NN _ 16 compound _ _ 15 market _ NOUN NN _ 16 compound _ _ 16 erosion _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 but _ CONJ CC _ 2 cc _ _ 19 bond _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 22 nsubj _ _ 21 rapidly _ ADV RB _ 22 advmod _ _ 22 turned _ VERB VBD _ 2 conj _ _ 23 south _ ADJ JJ _ 22 advmod _ _ 24 as _ SCONJ IN _ 26 mark _ _ 25 it _ PRON PRP _ 26 nsubj _ _ 26 became _ VERB VBD _ 22 advcl _ _ 27 more _ ADV RBR _ 28 advmod _ _ 28 clear _ ADJ JJ _ 26 xcomp _ _ 29 that _ SCONJ IN _ 40 mark _ _ 30 a _ DET DT _ 31 det _ _ 31 repeat _ NOUN NN _ 40 nsubj _ _ 32 of _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 October _ PROPN NNP _ 36 compound _ _ 35 1987 _ NUM CD _ 36 nummod _ _ 36 crash _ NOUN NN _ 31 nmod _ _ 37 was _ VERB VBD _ 40 cop _ _ 38 n't _ PART RB _ 40 neg _ _ 39 at _ ADP IN _ 40 case _ _ 40 hand _ NOUN NN _ 28 ccomp _ _ 41 . _ PUNCT . _ 2 punct _ _ 1 Professionals _ NOUN NNS _ 2 nsubj _ _ 2 dominated _ VERB VBD _ 0 root _ _ 3 municipal _ ADJ JJ _ 4 amod _ _ 4 trading _ NOUN NN _ 2 dobj _ _ 5 throughout _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 session _ NOUN NN _ 2 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 retail _ ADJ JJ _ 4 amod _ _ 4 investors _ NOUN NNS _ 5 nsubj _ _ 5 seemed _ VERB VBD _ 2 ccomp _ _ 6 to _ PART TO _ 8 mark _ _ 7 be _ AUX VB _ 8 aux _ _ 8 hugging _ VERB VBG _ 5 xcomp _ _ 9 the _ DET DT _ 10 det _ _ 10 sidelines _ NOUN NNS _ 8 dobj _ _ 11 until _ SCONJ IN _ 17 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 measure _ NOUN NN _ 17 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 volatility _ NOUN NN _ 13 nmod _ _ 16 is _ AUX VBZ _ 17 aux _ _ 17 wrung _ VERB VB _ 8 advcl _ _ 18 out _ ADP RP _ 17 compound:prt _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 Jersey _ PROPN NNP _ 4 compound _ _ 3 Turnpike _ PROPN NNP _ 4 compound _ _ 4 Authority _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 7.20 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 8 amod _ _ 8 issue _ NOUN NN _ 17 nsubj _ _ 9 of _ ADP IN _ 10 case _ _ 10 2018 _ NUM CD _ 8 nmod _ _ 11 was _ VERB VBD _ 17 cop _ _ 12 off _ ADJ JJ _ 17 advmod _ _ 13 3/4 _ NUM CD _ 12 dep _ _ 14 at _ ADP IN _ 17 case _ _ 15 98 _ NUM CD _ 16 compound _ _ 16 1/2 _ NUM CD _ 17 nummod _ _ 17 bid _ NOUN NN _ 0 root _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 yielding _ VERB VBG _ 17 xcomp _ _ 20 7.32 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 up _ ADV RB _ 19 advmod _ _ 24 0.07 _ NUM CD _ 26 nummod _ _ 25 percentage _ NOUN NN _ 26 compound _ _ 26 point _ NOUN NN _ 23 nmod:npmod _ _ 27 from _ ADP IN _ 29 case _ _ 28 late _ ADJ JJ _ 29 amod _ _ 29 Friday _ PROPN NNP _ 23 nmod _ _ 30 . _ PUNCT . _ 17 punct _ _ 1 Florida _ PROPN NNP _ 2 compound _ _ 2 Board _ PROPN NNP _ 9 nmod:poss _ _ 3 of _ ADP IN _ 4 case _ _ 4 Education _ PROPN NNP _ 2 nmod _ _ 5 's _ PART POS _ 2 case _ _ 6 7 _ NUM CD _ 7 compound _ _ 7 1/4 _ NUM CD _ 8 dep _ _ 8 % _ SYM NN _ 9 dep _ _ 9 issue _ NOUN NN _ 15 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 2023 _ NUM CD _ 9 nmod _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 5/8 _ NUM CD _ 14 nummod _ _ 14 point _ NOUN NN _ 15 nmod:npmod _ _ 15 weaker _ ADJ JJR _ 0 root _ _ 16 at _ ADP IN _ 19 case _ _ 17 99 _ NUM CD _ 18 compound _ _ 18 1/2 _ NUM CD _ 19 nummod _ _ 19 bid _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 7 _ NUM CD _ 3 compound _ _ 3 1/8 _ NUM CD _ 4 dep _ _ 4 % _ SYM NN _ 5 dep _ _ 5 issue _ NOUN NN _ 25 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 Triborough _ PROPN NNP _ 8 compound _ _ 8 Bridge _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Tunnel _ PROPN NNP _ 11 compound _ _ 11 Authority _ PROPN NNP _ 8 conj _ _ 12 of _ ADP IN _ 14 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 8 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 due _ ADJ JJ _ 5 amod _ _ 17 2019 _ NUM CD _ 16 nmod:tmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 was _ VERB VBD _ 25 cop _ _ 20 off _ ADJ JJ _ 25 advmod _ _ 21 5/8 _ NUM CD _ 20 dep _ _ 22 at _ ADP IN _ 25 case _ _ 23 98 _ NUM CD _ 24 compound _ _ 24 1/8 _ NUM CD _ 25 nummod _ _ 25 bid _ NOUN NN _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 And _ CONJ CC _ 22 cc _ _ 2 Fairfax _ PROPN NNP _ 8 dep _ _ 3 County _ PROPN NNP _ 2 compound _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 Va. _ PROPN NNP _ 2 dep _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 Water _ PROPN NNP _ 8 compound _ _ 8 Authority _ PROPN NNP _ 13 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 7 _ NUM CD _ 11 compound _ _ 11 1/4 _ NUM CD _ 12 dep _ _ 12 % _ SYM NN _ 13 dep _ _ 13 issue _ NOUN NN _ 22 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 2027 _ NUM CD _ 13 nmod _ _ 16 was _ VERB VBD _ 22 cop _ _ 17 down _ ADV RB _ 22 advmod _ _ 18 3/4 _ NUM CD _ 17 nmod:npmod _ _ 19 at _ ADP IN _ 22 case _ _ 20 99 _ NUM CD _ 21 compound _ _ 21 7/8 _ NUM CD _ 22 nummod _ _ 22 bid _ NOUN NN _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 Serial _ ADJ JJ _ 3 amod _ _ 2 bond _ NOUN NN _ 3 compound _ _ 3 yields _ NOUN NNS _ 4 nsubj _ _ 4 were _ VERB VBD _ 0 root _ _ 5 up _ ADV RB _ 4 advmod _ _ 6 about _ ADV RB _ 7 advmod _ _ 7 0.05 _ NUM CD _ 9 nummod _ _ 8 percentage _ NOUN NN _ 9 compound _ _ 9 point _ NOUN NN _ 5 nmod:npmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 BMA _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Kansas _ PROPN NNP _ 5 compound _ _ 5 City _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mo. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 's _ AUX VBZ _ 12 aux _ _ 12 weighing _ VERB VBG _ 9 ccomp _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 strategic _ ADJ JJ _ 15 amod _ _ 15 alternatives _ NOUN NNS _ 12 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 '' _ PUNCT '' _ 15 punct _ _ 18 for _ ADP IN _ 25 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 Business _ PROPN NNP _ 21 compound _ _ 21 Men _ PROPN NNP _ 25 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 Assurance _ PROPN NNP _ 25 compound _ _ 24 Co. _ PROPN NNP _ 25 compound _ _ 25 unit _ NOUN NN _ 15 nmod _ _ 26 , _ PUNCT , _ 12 punct _ _ 27 and _ CONJ CC _ 12 cc _ _ 28 is _ AUX VBZ _ 29 aux _ _ 29 contacting _ VERB VBG _ 12 conj _ _ 30 possible _ ADJ JJ _ 31 amod _ _ 31 buyers _ NOUN NNS _ 29 dobj _ _ 32 of _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 life _ NOUN NN _ 31 nmod _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 health _ NOUN NN _ 38 compound _ _ 37 insurance _ NOUN NN _ 38 compound _ _ 38 operation _ NOUN NN _ 34 conj _ _ 39 . _ PUNCT . _ 9 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 BMA _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 `` _ PUNCT `` _ 11 punct _ _ 6 runaway _ ADJ JJ _ 8 amod _ _ 7 medical _ ADJ JJ _ 8 amod _ _ 8 costs _ NOUN NNS _ 11 nsubj _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 made _ VERB VBN _ 4 dep _ _ 12 health _ NOUN NN _ 13 compound _ _ 13 insurance _ NOUN NN _ 17 dep _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 significant _ ADJ JJ _ 17 amod _ _ 17 challenge _ NOUN NN _ 11 xcomp _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 '' _ PUNCT '' _ 17 punct _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 margins _ NOUN NNS _ 25 nsubjpass _ _ 22 also _ ADV RB _ 25 advmod _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 pinched _ VERB VBN _ 11 conj _ _ 26 by _ ADP IN _ 27 case _ _ 27 changes _ NOUN NNS _ 25 nmod _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 mix _ NOUN NN _ 27 nmod _ _ 31 of _ ADP IN _ 33 case _ _ 32 life-insurance _ ADJ JJ _ 33 amod _ _ 33 products _ NOUN NNS _ 30 nmod _ _ 34 consumers _ NOUN NNS _ 36 nsubj _ _ 35 now _ ADV RB _ 36 advmod _ _ 36 demand _ VERB VBP _ 33 acl:relcl _ _ 37 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Business _ PROPN NNP _ 3 compound _ _ 3 Men _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Assurance _ PROPN NNP _ 6 compound _ _ 6 unit _ NOUN NN _ 7 nsubj _ _ 7 represented _ VERB VBD _ 35 ccomp _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 $ _ SYM $ _ 7 dobj _ _ 10 288 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 9 nmod _ _ 15 's _ PART POS _ 14 case _ _ 16 $ _ SYM $ _ 14 nummod _ _ 17 488 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 21 case _ _ 20 1988 _ NUM CD _ 21 nummod _ _ 21 revenue _ NOUN NN _ 14 nmod _ _ 22 , _ PUNCT , _ 7 punct _ _ 23 and _ CONJ CC _ 7 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 unit _ NOUN NN _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 operating _ VERB VBG _ 28 amod _ _ 28 income _ NOUN NN _ 31 nsubj _ _ 29 was _ VERB VBD _ 31 cop _ _ 30 about _ ADV RB _ 31 advmod _ _ 31 $ _ SYM $ _ 7 conj _ _ 32 10 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 , _ PUNCT , _ 35 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 the _ DET DT _ 37 det _ _ 37 spokesman _ NOUN NN _ 35 nsubj _ _ 38 . _ PUNCT . _ 35 punct _ _ 1 BMA _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 investment _ NOUN NN _ 4 compound _ _ 4 banker _ NOUN NN _ 15 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Alex _ PROPN NNP _ 8 compound _ _ 7 . _ PUNCT . _ 8 punct _ _ 8 Brown _ PROPN NNP _ 4 appos _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Sons _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 authorized _ VERB VBN _ 0 root _ _ 16 to _ PART TO _ 17 mark _ _ 17 contact _ VERB VB _ 15 xcomp _ _ 18 possible _ ADJ JJ _ 19 amod _ _ 19 buyers _ NOUN NNS _ 17 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 unit _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 15 punct _ _ 1 Laidlaw _ PROPN NNP _ 3 compound _ _ 2 Transportation _ PROPN NNP _ 3 compound _ _ 3 Ltd. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 raised _ VERB VBD _ 4 ccomp _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 stake _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 ADT _ PROPN NNP _ 11 compound _ _ 11 Ltd. _ PROPN NNP _ 8 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 Bermuda _ PROPN NNP _ 11 nmod _ _ 14 to _ ADP TO _ 16 case _ _ 15 29.4 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 6 nmod _ _ 17 from _ ADP IN _ 19 case _ _ 18 28 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 6 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Laidlaw _ PROPN NNP _ 2 nmod _ _ 5 declined _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 disclose _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 price _ NOUN NN _ 7 dobj _ _ 10 the _ DET DT _ 12 det _ _ 11 Toronto _ PROPN NNP _ 12 compound _ _ 12 transportation _ NOUN NN _ 17 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 waste _ NOUN NN _ 16 compound _ _ 15 services _ NOUN NNS _ 16 compound _ _ 16 concern _ NOUN NN _ 12 conj _ _ 17 paid _ VERB VBD _ 9 acl:relcl _ _ 18 for _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 additional _ ADJ JJ _ 21 amod _ _ 21 shares _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 which _ PRON WDT _ 25 dobj _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 said _ VERB VBD _ 21 acl:relcl _ _ 26 were _ AUX VBD _ 27 auxpass _ _ 27 acquired _ VERB VBD _ 25 ccomp _ _ 28 `` _ PUNCT `` _ 32 punct _ _ 29 over _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 last _ ADJ JJ _ 32 amod _ _ 32 couple _ NOUN NN _ 27 nmod _ _ 33 of _ ADP IN _ 34 case _ _ 34 weeks _ NOUN NNS _ 32 nmod _ _ 35 . _ PUNCT . _ 32 punct _ _ 36 '' _ PUNCT '' _ 32 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Laidlaw _ PROPN NNP _ 7 nsubj _ _ 5 would _ AUX MD _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 increase _ VERB VB _ 3 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 stake _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 ADT _ PROPN NNP _ 9 nmod _ _ 12 beyond _ ADP IN _ 14 case _ _ 13 30 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 7 nmod _ _ 15 `` _ PUNCT `` _ 19 punct _ _ 16 without _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 great _ ADJ JJ _ 19 amod _ _ 19 deal _ NOUN NN _ 7 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 thought _ NOUN NN _ 19 nmod _ _ 22 '' _ PUNCT '' _ 19 punct _ _ 23 because _ ADP IN _ 27 case _ _ 24 of _ ADP IN _ 23 mwe _ _ 25 British _ ADJ JJ _ 27 amod _ _ 26 takeover _ NOUN NN _ 27 compound _ _ 27 regulations _ NOUN NNS _ 7 nmod _ _ 28 that _ PRON WDT _ 29 nsubj _ _ 29 require _ VERB VBP _ 27 acl:relcl _ _ 30 a _ DET DT _ 31 det _ _ 31 company _ NOUN NN _ 29 dobj _ _ 32 acquiring _ VERB VBG _ 31 acl _ _ 33 more _ ADJ JJR _ 35 advmod _ _ 34 than _ ADP IN _ 33 mwe _ _ 35 30 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 32 dobj _ _ 37 to _ PART TO _ 38 mark _ _ 38 extend _ VERB VB _ 29 xcomp _ _ 39 an _ DET DT _ 40 det _ _ 40 offer _ NOUN NN _ 38 dobj _ _ 41 to _ ADP TO _ 43 case _ _ 42 the _ DET DT _ 43 det _ _ 43 rest _ NOUN NN _ 38 nmod _ _ 44 of _ ADP IN _ 48 case _ _ 45 the _ DET DT _ 46 det _ _ 46 company _ NOUN NN _ 48 nmod:poss _ _ 47 's _ PART POS _ 46 case _ _ 48 shareholders _ NOUN NNS _ 43 nmod _ _ 49 . _ PUNCT . _ 3 punct _ _ 1 ADT _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 security _ NOUN NN _ 5 compound _ _ 5 services _ NOUN NNS _ 1 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 auctions _ NOUN NNS _ 8 compound _ _ 8 company _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 trades _ VERB VBZ _ 0 root _ _ 11 on _ ADP IN _ 15 case _ _ 12 London _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 Stock _ PROPN NNP _ 15 compound _ _ 15 Exchange _ PROPN NNP _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 Laidlaw _ PROPN NNP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 47%-controlled _ NUM CD _ 0 root _ _ 4 by _ ADP IN _ 7 case _ _ 5 Canadian _ PROPN NNP _ 7 compound _ _ 6 Pacific _ PROPN NNP _ 7 compound _ _ 7 Ltd. _ PROPN NNP _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 13 det _ _ 10 Montreal _ PROPN NNP _ 13 compound _ _ 11 transportation _ NOUN NN _ 13 compound _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 resources _ NOUN NNS _ 7 appos _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 industrial _ ADJ JJ _ 17 amod _ _ 16 holding _ VERB VBG _ 17 amod _ _ 17 concern _ NOUN NN _ 13 conj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Nintendo _ PROPN NNP _ 2 compound _ _ 2 Co. _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 Japanese _ ADJ JJ _ 6 amod _ _ 6 maker _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 video _ ADJ JJ _ 9 amod _ _ 9 games _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 electronic _ ADJ JJ _ 13 amod _ _ 12 information _ NOUN NN _ 13 compound _ _ 13 systems _ NOUN NNS _ 9 conj _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 playing _ NOUN NN _ 16 compound _ _ 16 cards _ NOUN NNS _ 9 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 posted _ VERB VBD _ 0 root _ _ 19 a _ DET DT _ 23 det _ _ 20 23 _ NUM CD _ 21 compound _ _ 21 % _ SYM NN _ 23 amod _ _ 22 unconsolidated _ VERB VBD _ 23 amod _ _ 23 surge _ NOUN NN _ 18 dobj _ _ 24 in _ ADP IN _ 26 case _ _ 25 pretax _ ADJ JJ _ 26 amod _ _ 26 profit _ NOUN NN _ 23 nmod _ _ 27 to _ ADP TO _ 30 case _ _ 28 61.41 _ NUM CD _ 29 compound _ _ 29 billion _ NUM CD _ 30 nummod _ _ 30 yen _ NOUN NNS _ 23 nmod _ _ 31 -LRB- _ PUNCT -LRB- _ 30 punct _ _ 32 $ _ SYM $ _ 30 dep _ _ 33 429 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 -RRB- _ PUNCT -RRB- _ 30 punct _ _ 36 from _ ADP IN _ 39 case _ _ 37 50 _ NUM CD _ 38 compound _ _ 38 billion _ NUM CD _ 39 nummod _ _ 39 yen _ NOUN NNS _ 23 nmod _ _ 40 -LRB- _ PUNCT -LRB- _ 39 punct _ _ 41 $ _ SYM $ _ 39 dep _ _ 42 349.9 _ NUM CD _ 43 compound _ _ 43 million _ NUM CD _ 41 nummod _ _ 44 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 45 for _ ADP IN _ 48 case _ _ 46 the _ DET DT _ 48 det _ _ 47 fiscal _ ADJ JJ _ 48 amod _ _ 48 year _ NOUN NN _ 18 nmod _ _ 49 ended _ VERB VBN _ 48 acl _ _ 50 Aug. _ PROPN NNP _ 49 nmod:tmod _ _ 51 31 _ NUM CD _ 50 nummod _ _ 52 . _ PUNCT . _ 18 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 surged _ VERB VBD _ 0 root _ _ 3 40 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 8 case _ _ 6 250.17 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 8 nummod _ _ 8 yen _ NOUN NNS _ 2 nmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 178.61 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 2 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 Net _ ADJ JJ _ 2 amod _ _ 2 income _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 11 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 9 case _ _ 7 29.62 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 9 nummod _ _ 9 yen _ NOUN NNS _ 3 nmod _ _ 10 from _ ADP IN _ 12 case _ _ 11 26.68 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 3 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Pershare _ ADJ JJ _ 2 amod _ _ 2 net _ ADJ JJ _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 6 case _ _ 5 423.3 _ NUM CD _ 6 nummod _ _ 6 yen _ NOUN NNS _ 3 nmod _ _ 7 from _ ADP IN _ 9 case _ _ 8 457.7 _ NUM CD _ 9 nummod _ _ 9 yen _ NOUN NNS _ 3 nmod _ _ 10 because _ ADP IN _ 12 case _ _ 11 of _ ADP IN _ 10 mwe _ _ 12 expenses _ NOUN NNS _ 3 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 capital _ NOUN NN _ 15 compound _ _ 15 adjustments _ NOUN NNS _ 12 conj _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Without _ SCONJ IN _ 2 mark _ _ 2 detailing _ VERB VBG _ 8 advcl _ _ 3 specific _ ADJ JJ _ 5 amod _ _ 4 product _ NOUN NN _ 5 compound _ _ 5 breakdowns _ NOUN NNS _ 2 dobj _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Nintendo _ PROPN NNP _ 8 nsubj _ _ 8 credited _ VERB VBD _ 0 root _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 bullish _ ADJ JJ _ 11 amod _ _ 11 upsurge _ NOUN NN _ 8 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 sales _ NOUN NNS _ 11 nmod _ _ 14 -- _ PUNCT : _ 13 punct _ _ 15 including _ VERB VBG _ 18 case _ _ 16 advanced _ VERB VBN _ 18 amod _ _ 17 computer _ NOUN NN _ 18 compound _ _ 18 games _ NOUN NNS _ 13 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 television _ NOUN NN _ 22 compound _ _ 21 entertainment _ NOUN NN _ 22 compound _ _ 22 systems _ NOUN NNS _ 18 conj _ _ 23 -- _ PUNCT : _ 13 punct _ _ 24 to _ ADP TO _ 29 case _ _ 25 surging _ ADJ JJ _ 29 amod _ _ 26 `` _ PUNCT `` _ 29 punct _ _ 27 leisure-oriented _ ADJ JJ _ 29 amod _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 sales _ NOUN NNS _ 8 nmod _ _ 30 in _ ADP IN _ 32 case _ _ 31 foreign _ ADJ JJ _ 32 amod _ _ 32 markets _ NOUN NNS _ 29 nmod _ _ 33 . _ PUNCT . _ 8 punct _ _ 1 Export _ NOUN NN _ 2 compound _ _ 2 sales _ NOUN NNS _ 11 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 leisure _ NOUN NN _ 5 compound _ _ 5 items _ NOUN NNS _ 2 nmod _ _ 6 alone _ ADV RB _ 5 advmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 instance _ NOUN NN _ 11 nmod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 totaled _ VERB VBD _ 0 root _ _ 12 184.74 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 14 nummod _ _ 14 yen _ NOUN NNS _ 11 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 12 _ NUM CD _ 18 nummod _ _ 18 months _ NOUN NNS _ 11 nmod _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 up _ ADV RB _ 11 advmod _ _ 21 from _ ADP IN _ 23 case _ _ 22 106.06 _ NUM CD _ 23 compound _ _ 23 billion _ NUM CD _ 20 nmod _ _ 24 in _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 previous _ ADJ JJ _ 27 amod _ _ 27 fiscal _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 11 punct _ _ 1 Domestic _ ADJ JJ _ 3 amod _ _ 2 leisure _ NOUN NN _ 3 compound _ _ 3 sales _ NOUN NNS _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 however _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 were _ VERB VBD _ 8 cop _ _ 8 lower _ ADJ JJR _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 Hertz _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 9 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Park _ PROPN NNP _ 5 compound _ _ 5 Ridge _ PROPN NNP _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 N.J. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 retained _ VERB VBD _ 9 ccomp _ _ 12 Merrill _ PROPN NNP _ 15 compound _ _ 13 Lynch _ PROPN NNP _ 15 compound _ _ 14 Capital _ PROPN NNP _ 15 compound _ _ 15 Markets _ PROPN NNP _ 11 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 sell _ VERB VB _ 11 advcl _ _ 18 its _ PRON PRP$ _ 23 nmod:poss _ _ 19 Hertz _ PROPN NNP _ 23 compound _ _ 20 Equipment _ PROPN NNP _ 23 compound _ _ 21 Rental _ PROPN NNP _ 23 compound _ _ 22 Corp. _ PROPN NNP _ 23 compound _ _ 23 unit _ NOUN NN _ 17 dobj _ _ 24 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 35 dep _ _ 4 no _ DET DT _ 6 neg _ _ 5 pressing _ VERB VBG _ 6 amod _ _ 6 need _ NOUN NN _ 3 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 sell _ VERB VB _ 6 acl _ _ 9 the _ DET DT _ 10 det _ _ 10 unit _ NOUN NN _ 8 dobj _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 but _ CONJ CC _ 3 cc _ _ 13 we _ PRON PRP _ 15 nsubj _ _ 14 are _ AUX VBP _ 15 aux _ _ 15 doing _ VERB VBG _ 3 conj _ _ 16 it _ PRON PRP _ 15 dobj _ _ 17 so _ SCONJ IN _ 20 mark _ _ 18 we _ PRON PRP _ 20 nsubj _ _ 19 can _ AUX MD _ 20 aux _ _ 20 concentrate _ VERB VB _ 15 advcl _ _ 21 on _ ADP IN _ 24 case _ _ 22 our _ PRON PRP$ _ 24 nmod:poss _ _ 23 core _ NOUN NN _ 24 compound _ _ 24 business _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 renting _ VERB VBG _ 24 dep _ _ 27 automobiles _ NOUN NNS _ 26 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 U.S. _ PROPN NNP _ 26 dep _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 abroad _ ADV RB _ 30 conj _ _ 33 , _ PUNCT , _ 3 punct _ _ 34 '' _ PUNCT '' _ 3 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 William _ PROPN NNP _ 37 compound _ _ 37 Slider _ PROPN NNP _ 35 nsubj _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 Hertz _ PROPN NNP _ 43 nmod:poss _ _ 40 's _ PART POS _ 39 case _ _ 41 executive _ ADJ JJ _ 43 amod _ _ 42 vice _ NOUN NN _ 43 compound _ _ 43 president _ NOUN NN _ 37 appos _ _ 44 . _ PUNCT . _ 35 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 are _ AUX VBP _ 5 aux _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 going _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 sell _ VERB VB _ 5 xcomp _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 right _ ADJ JJ _ 11 amod _ _ 11 price _ NOUN NN _ 7 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 13 '' _ PUNCT '' _ 5 punct _ _ 1 Hertz _ PROPN NNP _ 2 compound _ _ 2 Equipment _ PROPN NNP _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 operating _ NOUN NN _ 5 compound _ _ 5 profit _ NOUN NN _ 3 dobj _ _ 6 before _ ADP IN _ 7 case _ _ 7 depreciation _ NOUN NN _ 5 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 5 nmod _ _ 10 90 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 on _ ADP IN _ 13 case _ _ 13 revenue _ NOUN NN _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 150 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 19 case _ _ 19 1988 _ NUM CD _ 13 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 closely _ ADV RB _ 3 advmod _ _ 3 held _ VERB VBN _ 5 amod _ _ 4 Hertz _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 6 nsubj _ _ 6 had _ VERB VBD _ 0 root _ _ 7 annual _ ADJ JJ _ 8 amod _ _ 8 revenue _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 close _ ADJ JJ _ 8 acl _ _ 11 to _ ADP TO _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 1988 _ NUM CD _ 12 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 of _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 24 nmod _ _ 20 $ _ SYM $ _ 24 nsubjpass _ _ 21 1.7 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 contributed _ VERB VBN _ 8 acl:relcl _ _ 25 by _ ADP IN _ 31 case _ _ 26 its _ PRON PRP$ _ 31 nmod:poss _ _ 27 Hertz _ PROPN NNP _ 31 compound _ _ 28 Rent _ PROPN NNP _ 30 dep _ _ 29 A _ DET DT _ 30 det _ _ 30 Car _ PROPN NNP _ 31 dep _ _ 31 operations _ NOUN NNS _ 24 nmod _ _ 32 world-wide _ ADJ JJ _ 31 amod _ _ 33 . _ PUNCT . _ 6 punct _ _ 1 Hertz _ PROPN NNP _ 2 compound _ _ 2 Equipment _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 major _ ADJ JJ _ 6 amod _ _ 6 supplier _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 rental _ ADJ JJ _ 9 amod _ _ 9 equipment _ NOUN NN _ 6 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 France _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 Spain _ PROPN NNP _ 12 conj _ _ 17 and _ CONJ CC _ 12 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 U.K _ PROPN NNP _ 12 conj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 supplies _ VERB VBZ _ 0 root _ _ 3 commercial _ ADJ JJ _ 6 amod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 industrial _ ADJ JJ _ 3 conj _ _ 6 equipment _ NOUN NN _ 2 dobj _ _ 7 including _ VERB VBG _ 15 case _ _ 8 earth-moving _ ADJ JJ _ 15 amod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 aerial _ ADJ JJ _ 8 conj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 compaction _ NOUN NN _ 8 conj _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 electrical _ ADJ JJ _ 8 conj _ _ 15 equipment _ NOUN NN _ 6 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 compressors _ NOUN NNS _ 15 conj _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 cranes _ NOUN NNS _ 15 conj _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 forklifts _ NOUN NNS _ 15 conj _ _ 22 and _ CONJ CC _ 15 cc _ _ 23 trucks _ NOUN NNS _ 15 conj _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 Interspec _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 net _ ADJ JJ _ 6 amod _ _ 6 loss _ NOUN NN _ 3 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 2.4 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 for _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 fiscal _ ADJ JJ _ 15 amod _ _ 14 third _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 6 nmod _ _ 16 ended _ VERB VBN _ 15 acl _ _ 17 Aug. _ PROPN NNP _ 16 nmod:tmod _ _ 18 31 _ NUM CD _ 17 nummod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 loss _ NOUN NN _ 5 nsubj _ _ 5 resulted _ VERB VBD _ 2 ccomp _ _ 6 from _ ADP IN _ 10 case _ _ 7 startup _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 introduction _ NOUN NN _ 7 conj _ _ 10 costs _ NOUN NNS _ 5 nmod _ _ 11 related _ VERB VBN _ 10 acl _ _ 12 to _ ADP TO _ 18 case _ _ 13 a _ DET DT _ 18 det _ _ 14 new _ ADJ JJ _ 18 amod _ _ 15 medical _ ADJ JJ _ 18 amod _ _ 16 ultrasound _ NOUN NN _ 18 compound _ _ 17 equipment _ NOUN NN _ 18 compound _ _ 18 system _ NOUN NN _ 11 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 8 nsubj _ _ 8 reported _ VERB VBD _ 0 root _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 955,000 _ NUM CD _ 10 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 15 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 13 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 manufacturer _ NOUN NN _ 14 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 ultrasound _ NOUN NN _ 6 compound _ _ 5 diagnostic _ ADJ JJ _ 6 amod _ _ 6 systems _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 based _ VERB VBN _ 2 acl _ _ 9 in _ ADP IN _ 10 case _ _ 10 Ambler _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Pa. _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 reported _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 18 det _ _ 16 nine-month _ ADJ JJ _ 18 amod _ _ 17 net _ ADJ JJ _ 18 amod _ _ 18 loss _ NOUN NN _ 14 dobj _ _ 19 of _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 18 nmod _ _ 21 2.43 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 compared _ VERB VBN _ 26 case _ _ 24 with _ ADP IN _ 26 case _ _ 25 net _ ADJ JJ _ 26 amod _ _ 26 income _ NOUN NN _ 18 nmod _ _ 27 of _ ADP IN _ 28 case _ _ 28 $ _ SYM $ _ 26 nmod _ _ 29 2.71 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 or _ CONJ CC _ 28 cc _ _ 33 44 _ NUM CD _ 34 nummod _ _ 34 cents _ NOUN NNS _ 28 conj _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 , _ PUNCT , _ 28 punct _ _ 38 for _ ADP IN _ 41 case _ _ 39 the _ DET DT _ 41 det _ _ 40 nine-month _ ADJ JJ _ 41 amod _ _ 41 period _ NOUN NN _ 26 nmod _ _ 42 a _ DET DT _ 43 det _ _ 43 year _ NOUN NN _ 44 nmod:npmod _ _ 44 earlier _ ADV RBR _ 41 advmod _ _ 45 . _ PUNCT . _ 14 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 over-the-counter _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Interspec _ PROPN NNP _ 6 nsubj _ _ 6 fell _ VERB VBD _ 0 root _ _ 7 37.5 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 6 dobj _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 4.25 _ NUM CD _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Allegheny _ PROPN NNP _ 3 compound _ _ 2 Ludlum _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 47 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 report _ VERB VB _ 4 xcomp _ _ 7 third-quarter _ ADJ JJ _ 8 amod _ _ 8 net _ ADJ JJ _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 about _ ADV RB _ 11 advmod _ _ 11 $ _ SYM $ _ 8 nmod _ _ 12 34 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.50 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 down _ ADV RB _ 8 advmod _ _ 22 from _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 38.4 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 $ _ SYM $ _ 29 dep _ _ 29 1.70 _ NUM CD _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 a _ DET DT _ 34 det _ _ 34 year _ NOUN NN _ 35 nmod:npmod _ _ 35 earlier _ ADV RB _ 23 advmod _ _ 36 , _ PUNCT , _ 47 punct _ _ 37 Richard _ PROPN NNP _ 39 compound _ _ 38 P. _ PROPN NNP _ 39 compound _ _ 39 Simmons _ PROPN NNP _ 47 nsubj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 chairman _ NOUN NN _ 39 appos _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 chief _ ADJ JJ _ 44 amod _ _ 44 executive _ ADJ JJ _ 45 amod _ _ 45 officer _ NOUN NN _ 41 conj _ _ 46 , _ PUNCT , _ 39 punct _ _ 47 told _ VERB VBD _ 0 root _ _ 48 institutional _ ADJ JJ _ 49 amod _ _ 49 investors _ NOUN NNS _ 47 dobj _ _ 50 in _ ADP IN _ 52 case _ _ 51 New _ PROPN NNP _ 52 compound _ _ 52 York _ PROPN NNP _ 49 nmod _ _ 53 . _ PUNCT . _ 47 punct _ _ 1 Sales _ NOUN NNS _ 12 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 Pittsburgh-based _ ADJ JJ _ 5 amod _ _ 5 producer _ NOUN NN _ 1 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 specialty _ NOUN NN _ 8 compound _ _ 8 steels _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 materials _ NOUN NNS _ 8 conj _ _ 12 fell _ VERB VBD _ 31 ccomp _ _ 13 to _ ADP TO _ 15 case _ _ 14 about _ ADV RB _ 15 advmod _ _ 15 $ _ SYM $ _ 12 nmod _ _ 16 265 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 15 nmod _ _ 22 from _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 12 nmod _ _ 24 320.5 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 a _ DET DT _ 27 det _ _ 27 year _ NOUN NN _ 28 nmod:npmod _ _ 28 earlier _ ADV RBR _ 23 advmod _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 he _ PRON PRP _ 31 nsubj _ _ 31 said _ VERB VBD _ 0 root _ _ 32 . _ PUNCT . _ 31 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 third-quarter _ ADJ JJ _ 5 amod _ _ 5 estimate _ NOUN NN _ 6 nsubj _ _ 6 indicates _ VERB VBZ _ 2 ccomp _ _ 7 profit _ NOUN NN _ 6 dobj _ _ 8 for _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 nine _ NUM CD _ 11 nummod _ _ 11 months _ NOUN NNS _ 7 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 4.65 _ NUM CD _ 7 nmod _ _ 15 a _ DET DT _ 16 det _ _ 16 share _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 `` _ PUNCT `` _ 20 punct _ _ 19 almost _ ADV RB _ 20 advmod _ _ 20 equal _ ADJ JJ _ 7 amod _ _ 21 to _ ADP TO _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 full-year _ ADJ JJ _ 25 amod _ _ 24 1988 _ NUM CD _ 25 nummod _ _ 25 earnings _ NOUN NNS _ 20 nmod _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 of _ ADP IN _ 28 case _ _ 28 $ _ SYM $ _ 25 nmod _ _ 29 108.6 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 or _ CONJ CC _ 28 cc _ _ 33 $ _ SYM $ _ 34 dep _ _ 34 4.81 _ NUM CD _ 28 conj _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 nine _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 11 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 1988 _ NUM CD _ 5 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 net _ ADJ JJ _ 11 nsubj _ _ 10 was _ VERB VBD _ 11 cop _ _ 11 $ _ SYM $ _ 0 root _ _ 12 85 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 3.76 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Simmons _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 third-quarter _ ADJ JJ _ 6 amod _ _ 6 results _ NOUN NNS _ 7 nsubj _ _ 7 reflect _ VERB VBP _ 3 ccomp _ _ 8 continued _ VERB VBN _ 9 amod _ _ 9 improvements _ NOUN NNS _ 7 dobj _ _ 10 in _ ADP IN _ 14 case _ _ 11 productivity _ NOUN NN _ 14 compound _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 operating _ NOUN NN _ 11 conj _ _ 14 margins _ NOUN NNS _ 9 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 capital _ NOUN NN _ 4 compound _ _ 4 spending _ NOUN NN _ 8 nsubj _ _ 5 next _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 4 nmod:tmod _ _ 7 will _ AUX MD _ 8 aux _ _ 8 rise _ VERB VB _ 2 ccomp _ _ 9 to _ ADP TO _ 11 case _ _ 10 about _ ADV RB _ 11 advmod _ _ 11 $ _ SYM $ _ 8 nmod _ _ 12 45 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 from _ ADP IN _ 16 case _ _ 15 about _ ADV RB _ 16 advmod _ _ 16 $ _ SYM $ _ 8 nmod _ _ 17 35 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 16 nmod:tmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 U.S. _ PROPN NNP _ 3 compound _ _ 2 Banknote _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 again _ ADV RB _ 7 advmod _ _ 7 extended _ VERB VBD _ 4 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 expiration _ NOUN NN _ 10 compound _ _ 10 date _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 16 case _ _ 12 its _ PRON PRP$ _ 16 nmod:poss _ _ 13 $ _ SYM $ _ 16 amod _ _ 14 7-a-share _ ADJ JJ _ 13 dep _ _ 15 tender _ NOUN NN _ 16 compound _ _ 16 offer _ NOUN NN _ 10 nmod _ _ 17 for _ ADP IN _ 20 case _ _ 18 International _ PROPN NNP _ 20 compound _ _ 19 Banknote _ PROPN NNP _ 20 compound _ _ 20 Co. _ PROPN NNP _ 16 nmod _ _ 21 to _ ADP TO _ 23 case _ _ 22 Nov. _ VERB VB _ 23 dep _ _ 23 15 _ NUM CD _ 7 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 in _ ADP IN _ 7 case _ _ 7 negotiations _ NOUN NNS _ 3 dep _ _ 8 to _ PART TO _ 9 mark _ _ 9 sell _ VERB VB _ 7 acl _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 certain _ ADJ JJ _ 12 amod _ _ 12 facilities _ NOUN NNS _ 9 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 15 which _ PRON WDT _ 19 dobj _ _ 16 it _ PRON PRP _ 19 nsubj _ _ 17 did _ AUX VBD _ 19 aux _ _ 18 n't _ PART RB _ 19 neg _ _ 19 name _ VERB VB _ 12 acl:relcl _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 to _ ADP TO _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 third _ ADJ JJ _ 24 amod _ _ 24 party _ NOUN NN _ 9 nmod _ _ 25 , _ PUNCT , _ 7 punct _ _ 26 and _ CONJ CC _ 7 cc _ _ 27 it _ PRON PRP _ 28 nsubj _ _ 28 needs _ VERB VBZ _ 7 conj _ _ 29 the _ DET DT _ 30 det _ _ 30 extension _ NOUN NN _ 28 dobj _ _ 31 to _ PART TO _ 32 mark _ _ 32 try _ VERB VB _ 28 advcl _ _ 33 to _ PART TO _ 34 mark _ _ 34 reach _ VERB VB _ 32 xcomp _ _ 35 a _ DET DT _ 37 det _ _ 36 definitive _ ADJ JJ _ 37 amod _ _ 37 agreement _ NOUN NN _ 34 dobj _ _ 38 on _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 sale _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 believes _ VERB VBZ _ 3 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 sale _ NOUN NN _ 14 nsubj _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 if _ SCONJ IN _ 10 mark _ _ 10 completed _ VERB VBN _ 14 dep _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 apparently _ ADV RB _ 14 advmod _ _ 13 would _ AUX MD _ 14 aux _ _ 14 satisfy _ VERB VB _ 5 ccomp _ _ 15 antitrust _ ADJ JJ _ 16 amod _ _ 16 issues _ NOUN NNS _ 14 dobj _ _ 17 raised _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 U.S. _ PROPN NNP _ 22 compound _ _ 21 Justice _ PROPN NNP _ 22 compound _ _ 22 Department _ PROPN NNP _ 17 nmod _ _ 23 about _ ADP IN _ 27 case _ _ 24 U.S. _ PROPN NNP _ 25 compound _ _ 25 Banknote _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 offer _ NOUN NN _ 16 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 buy _ VERB VB _ 27 acl _ _ 30 International _ PROPN NNP _ 31 compound _ _ 31 Banknote _ PROPN NNP _ 29 dobj _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 Both _ DET DT _ 7 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 New _ PROPN NNP _ 6 compound _ _ 5 York-based _ ADJ JJ _ 6 amod _ _ 6 companies _ NOUN NNS _ 1 nmod _ _ 7 print _ VERB VBP _ 0 root _ _ 8 stock _ NOUN NN _ 9 compound _ _ 9 certificates _ NOUN NNS _ 7 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 currency _ NOUN NN _ 9 conj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 `` _ PUNCT `` _ 9 punct _ _ 5 there _ PRON EX _ 9 expl _ _ 6 can _ AUX MD _ 9 aux _ _ 7 be _ VERB VB _ 9 cop _ _ 8 no _ DET DT _ 9 neg _ _ 9 assurance _ NOUN NN _ 3 ccomp _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 a _ DET DT _ 13 det _ _ 12 sale _ NOUN NN _ 13 compound _ _ 13 agreement _ NOUN NN _ 16 nsubjpass _ _ 14 would _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 concluded _ VERB VBN _ 9 ccomp _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 tender _ NOUN NN _ 6 compound _ _ 6 offer _ NOUN NN _ 9 nsubj _ _ 7 would _ AUX MD _ 9 aux _ _ 8 probably _ ADV RB _ 9 advmod _ _ 9 have _ VERB VB _ 3 ccomp _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 extended _ VERB VBN _ 9 xcomp _ _ 13 further _ ADV RBR _ 12 advmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 complete _ VERB VB _ 12 xcomp _ _ 16 financing _ NOUN NN _ 17 compound _ _ 17 arrangements _ NOUN NNS _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Citibank _ PROPN NNP _ 5 nsubj _ _ 5 extended _ VERB VBD _ 3 ccomp _ _ 6 the _ DET DT _ 8 det _ _ 7 expiration _ NOUN NN _ 8 compound _ _ 8 date _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 commitment _ NOUN NN _ 8 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 senior _ ADJ JJ _ 15 amod _ _ 14 secured _ VERB VBN _ 15 amod _ _ 15 financing _ NOUN NN _ 11 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 Nov. _ PROPN NNP _ 5 nmod _ _ 18 15 _ NUM CD _ 17 nummod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 10 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 made _ VERB VBD _ 2 acl _ _ 5 June _ PROPN NNP _ 4 nmod:tmod _ _ 6 1 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 auxpass _ _ 10 extended _ VERB VBN _ 0 root _ _ 11 several _ ADJ JJ _ 12 amod _ _ 12 times _ NOUN NNS _ 10 nmod:tmod _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 Closely _ ADV RB _ 2 advmod _ _ 2 held _ VERB VBN _ 4 amod _ _ 3 U.S. _ PROPN NNP _ 4 compound _ _ 4 Banknote _ PROPN NNP _ 5 nsubj _ _ 5 offered _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 7 _ NUM CD _ 5 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 share _ NOUN NN _ 8 nmod:npmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 or _ CONJ CC _ 8 cc _ _ 13 $ _ SYM $ _ 8 conj _ _ 14 126 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 for _ ADP IN _ 23 case _ _ 18 as _ ADV RB _ 22 advmod _ _ 19 many _ ADJ JJ _ 22 advmod _ _ 20 as _ ADP IN _ 22 advmod _ _ 21 14.9 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 23 nummod _ _ 23 shares _ NOUN NNS _ 5 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 or _ CONJ CC _ 23 cc _ _ 26 78.6 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 23 conj _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 of _ ADP IN _ 33 case _ _ 30 International _ PROPN NNP _ 31 compound _ _ 31 Banknote _ PROPN NNP _ 33 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 shares _ NOUN NNS _ 23 conj _ _ 34 outstanding _ ADJ JJ _ 33 amod _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 Banknote _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 27 mark _ _ 5 as _ ADP IN _ 7 case _ _ 6 of _ ADP IN _ 7 case _ _ 7 Oct. _ PROPN NNP _ 27 nmod _ _ 8 13 _ NUM CD _ 7 nummod _ _ 9 , _ PUNCT , _ 27 punct _ _ 10 16.1 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 12 nummod _ _ 12 shares _ NOUN NNS _ 27 nsubjpass _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 about _ ADV RB _ 16 advmod _ _ 16 84.3 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 12 conj _ _ 18 of _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 fully _ ADV RB _ 21 advmod _ _ 21 diluted _ VERB VBN _ 22 amod _ _ 22 shares _ NOUN NNS _ 17 nmod _ _ 23 outstanding _ ADJ JJ _ 22 amod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 had _ AUX VBD _ 27 aux _ _ 26 been _ AUX VBN _ 27 auxpass _ _ 27 tendered _ VERB VBN _ 3 ccomp _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Gitano _ PROPN NNP _ 3 compound _ _ 2 Group _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 agreed _ VERB VBD _ 4 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 6 xcomp _ _ 9 50 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 Regatta _ PROPN NNP _ 14 compound _ _ 13 Sport _ PROPN NNP _ 14 compound _ _ 14 Ltd. _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 20 det _ _ 17 closely _ ADV RB _ 18 advmod _ _ 18 held _ VERB VBN _ 20 amod _ _ 19 apparel _ NOUN NN _ 20 compound _ _ 20 maker _ NOUN NN _ 14 appos _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 with _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 assumption _ NOUN NN _ 8 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 24 nmod _ _ 27 3 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 of _ ADP IN _ 31 case _ _ 30 contingent _ ADJ JJ _ 31 amod _ _ 31 debt _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 terms _ NOUN NNS _ 11 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 contract _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 New _ PROPN NNP _ 9 amod _ _ 9 York-based _ ADJ JJ _ 10 amod _ _ 10 Gitano _ PROPN NNP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 option _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 acquire _ VERB VB _ 13 acl _ _ 16 the _ DET DT _ 19 det _ _ 17 remaining _ ADJ JJ _ 19 amod _ _ 18 50 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 15 dobj _ _ 20 of _ ADP IN _ 21 case _ _ 21 Regatta _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 maker _ NOUN NN _ 21 appos _ _ 25 of _ ADP IN _ 31 case _ _ 26 men _ NOUN NNS _ 31 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 and _ CONJ CC _ 26 cc _ _ 29 women _ NOUN NNS _ 26 conj _ _ 30 's _ PART POS _ 29 case _ _ 31 clothes _ NOUN NNS _ 24 nmod _ _ 32 sold _ VERB VBN _ 31 acl _ _ 33 primarily _ ADV RB _ 36 advmod _ _ 34 in _ ADP IN _ 36 case _ _ 35 department _ NOUN NN _ 36 compound _ _ 36 stores _ NOUN NNS _ 32 nmod _ _ 37 , _ PUNCT , _ 21 punct _ _ 38 under _ ADP IN _ 40 case _ _ 39 certain _ ADJ JJ _ 40 amod _ _ 40 conditions _ NOUN NNS _ 15 nmod _ _ 41 . _ PUNCT . _ 11 punct _ _ 1 That _ DET DT _ 3 det _ _ 2 50 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 now _ ADV RB _ 6 advmod _ _ 6 held _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 9 case _ _ 8 Clifford _ PROPN NNP _ 9 compound _ _ 9 Parker _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Regatta _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 president _ NOUN NN _ 9 appos _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 chief _ ADJ JJ _ 17 amod _ _ 16 executive _ ADJ JJ _ 17 amod _ _ 17 officer _ NOUN NN _ 13 conj _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 who _ PRON WP _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 continue _ VERB VB _ 9 acl:relcl _ _ 22 to _ PART TO _ 23 mark _ _ 23 manage _ VERB VB _ 21 xcomp _ _ 24 Regatta _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 operations _ NOUN NNS _ 23 dobj _ _ 27 under _ ADP IN _ 28 case _ _ 28 Gitano _ PROPN NNP _ 23 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1989 _ NUM CD _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Regatta _ PROPN NNP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 have _ VERB VB _ 24 ccomp _ _ 7 sales _ NOUN NNS _ 6 dobj _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 in _ ADP IN _ 10 case _ _ 10 excess _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 10 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 '' _ PUNCT '' _ 10 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 will _ AUX MD _ 18 aux _ _ 18 show _ VERB VB _ 6 conj _ _ 19 a _ DET DT _ 20 det _ _ 20 profit _ NOUN NN _ 18 dobj _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Parker _ PROPN NNP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 Gitano _ PROPN NNP _ 18 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 makes _ VERB VBZ _ 1 acl:relcl _ _ 5 budget-priced _ ADJ JJ _ 6 amod _ _ 6 apparel _ NOUN NN _ 4 dobj _ _ 7 sold _ VERB VBN _ 6 acl _ _ 8 mainly _ ADV RB _ 7 advmod _ _ 9 through _ ADP IN _ 11 case _ _ 10 mass _ NOUN NN _ 11 compound _ _ 11 merchandisers _ NOUN NNS _ 7 nmod _ _ 12 like _ ADP IN _ 14 case _ _ 13 K _ PROPN NNP _ 14 compound _ _ 14 mart _ PROPN NNP _ 11 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Wal-Mart _ PROPN NNP _ 14 conj _ _ 17 , _ PUNCT , _ 1 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 21 det _ _ 20 Regatta _ PROPN NNP _ 21 compound _ _ 21 acquisition _ NOUN NN _ 23 nsubj _ _ 22 will _ AUX MD _ 23 aux _ _ 23 enhance _ VERB VB _ 18 ccomp _ _ 24 its _ PRON PRP$ _ 25 nmod:poss _ _ 25 strategy _ NOUN NN _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 expand _ VERB VB _ 25 acl _ _ 28 into _ ADP IN _ 30 case _ _ 29 department _ NOUN NN _ 30 compound _ _ 30 stores _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 fall _ NOUN NN _ 5 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Gitano _ PROPN NNP _ 5 nsubj _ _ 5 began _ VERB VBD _ 0 root _ _ 6 manufacturing _ VERB VBG _ 5 xcomp _ _ 7 moderately _ ADV RB _ 8 advmod _ _ 8 priced _ VERB VBN _ 9 amod _ _ 9 clothes _ NOUN NNS _ 6 dobj _ _ 10 aimed _ VERB VBN _ 9 acl _ _ 11 at _ ADP IN _ 13 case _ _ 12 department _ NOUN NN _ 13 compound _ _ 13 stores _ NOUN NNS _ 10 nmod _ _ 14 under _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 Gloria _ PROPN NNP _ 18 compound _ _ 17 Vanderbilt _ PROPN NNP _ 18 compound _ _ 18 trademark _ NOUN NN _ 6 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 23 dobj _ _ 21 Gitano _ PROPN NNP _ 23 nsubj _ _ 22 recently _ ADV RB _ 23 advmod _ _ 23 acquired _ VERB VBD _ 18 acl:relcl _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Enron _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 6 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Houston _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 sale _ NOUN NN _ 25 nsubj _ _ 9 of _ ADP IN _ 11 case _ _ 10 preference _ NOUN NN _ 11 compound _ _ 11 units _ NOUN NNS _ 8 nmod _ _ 12 of _ ADP IN _ 23 case _ _ 13 its _ PRON PRP$ _ 23 nmod:poss _ _ 14 newly _ ADV RB _ 15 advmod _ _ 15 formed _ VERB VBN _ 23 amod _ _ 16 Enron _ PROPN NNP _ 23 compound _ _ 17 NGL _ PROPN NNP _ 23 compound _ _ 18 Partners _ PROPN NNP _ 23 compound _ _ 19 L.P. _ PROPN NNP _ 23 compound _ _ 20 master _ NOUN NN _ 23 compound _ _ 21 limited _ VERB VBN _ 23 amod _ _ 22 partnership _ NOUN NN _ 23 compound _ _ 23 subsidiary _ NOUN NN _ 11 nmod _ _ 24 will _ AUX MD _ 25 aux _ _ 25 result _ VERB VB _ 6 ccomp _ _ 26 in _ ADP IN _ 29 case _ _ 27 an _ DET DT _ 29 det _ _ 28 undetermined _ ADJ JJ _ 29 amod _ _ 29 gain _ NOUN NN _ 25 nmod _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 fourth _ ADJ JJ _ 33 amod _ _ 33 quarter _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-ago _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 natural _ ADJ JJ _ 9 amod _ _ 8 gas _ NOUN NN _ 9 compound _ _ 9 concern _ NOUN NN _ 10 nsubj _ _ 10 had _ VERB VBD _ 0 root _ _ 11 net _ ADJ JJ _ 12 amod _ _ 12 income _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 12 nmod _ _ 15 25.2 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 34 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 14 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 14 punct _ _ 24 on _ ADP IN _ 25 case _ _ 25 revenue _ NOUN NN _ 12 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 about _ ADV RB _ 28 advmod _ _ 28 $ _ SYM $ _ 25 nmod _ _ 29 1.46 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 . _ PUNCT . _ 10 punct _ _ 1 Those _ DET DT _ 2 det _ _ 2 results _ NOUN NNS _ 3 nsubj _ _ 3 included _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 2.7 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 charge _ NOUN NN _ 3 dobj _ _ 9 related _ VERB VBN _ 8 acl _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 retirement _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 debt _ NOUN NN _ 12 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 related _ VERB VBN _ 4 amod _ _ 4 move _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Enron _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 increased _ VERB VBD _ 7 ccomp _ _ 10 the _ DET DT _ 11 det _ _ 11 number _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 14 det _ _ 14 partnership _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 units _ NOUN NNS _ 11 nmod _ _ 17 it _ PRON PRP _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 offer _ VERB VB _ 16 acl:relcl _ _ 20 to _ ADP TO _ 21 case _ _ 21 6,930,000 _ NUM CD _ 9 nmod _ _ 22 from _ ADP IN _ 23 case _ _ 23 5,500,000 _ NUM CD _ 9 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 old _ ADJ JJ _ 5 amod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 revised _ VERB VBN _ 2 conj _ _ 5 numbers _ NOUN NNS _ 7 nsubj _ _ 6 both _ DET DT _ 5 dep _ _ 7 include _ VERB VBP _ 0 root _ _ 8 over-allotment _ ADJ JJ _ 9 amod _ _ 9 provisions _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 Enron _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 each _ DET DT _ 4 det _ _ 4 unit _ NOUN NN _ 7 nsubjpass _ _ 5 will _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 priced _ VERB VBN _ 2 ccomp _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 $ _ SYM $ _ 12 amod _ _ 11 19-to-$21 _ ADJ JJ _ 10 dep _ _ 12 range _ NOUN NN _ 7 nmod _ _ 13 and _ CONJ CC _ 7 cc _ _ 14 will _ AUX MD _ 15 aux _ _ 15 represent _ VERB VB _ 7 conj _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 80 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 partnership _ NOUN NN _ 22 compound _ _ 22 equity _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 Net _ ADJ JJ _ 2 amod _ _ 2 proceeds _ NOUN NNS _ 7 nsubjpass _ _ 3 from _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 offering _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 10 mark _ _ 9 be _ VERB VB _ 10 cop _ _ 10 close _ ADJ JJ _ 7 xcomp _ _ 11 to _ ADP TO _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 200 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Goldman _ PROPN NNP _ 14 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Sachs _ PROPN NNP _ 1 conj _ _ 4 & _ CONJ CC _ 1 cc _ _ 5 Co. _ PROPN NNP _ 1 conj _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 and _ CONJ CC _ 1 cc _ _ 8 Drexel _ PROPN NNP _ 11 compound _ _ 9 Burnham _ PROPN NNP _ 11 compound _ _ 10 Lambert _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 1 conj _ _ 12 are _ VERB VBP _ 14 cop _ _ 13 lead _ ADJ JJ _ 14 amod _ _ 14 underwriters _ NOUN NNS _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Arthur _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Goldberg _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 extended _ VERB VBD _ 4 ccomp _ _ 7 his _ PRON PRP$ _ 10 nmod:poss _ _ 8 unsolicited _ ADJ JJ _ 10 amod _ _ 9 tender _ NOUN NN _ 10 compound _ _ 10 offer _ NOUN NN _ 6 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 32 _ NUM CD _ 10 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 tender _ NOUN NN _ 17 dep _ _ 17 offer _ NOUN NN _ 15 dep _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 or _ CONJ CC _ 13 cc _ _ 20 $ _ SYM $ _ 13 conj _ _ 21 154.3 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 , _ PUNCT , _ 13 punct _ _ 24 for _ ADP IN _ 27 case _ _ 25 Di _ PROPN NNP _ 27 compound _ _ 26 Giorgio _ PROPN NNP _ 27 compound _ _ 27 Corp. _ PROPN NNP _ 10 nmod _ _ 28 to _ ADP TO _ 29 case _ _ 29 Nov. _ PROPN NNP _ 6 nmod _ _ 30 1 _ NUM CD _ 29 nummod _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 DIG _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 New _ PROPN NNP _ 8 compound _ _ 7 Jersey _ PROPN NNP _ 8 compound _ _ 8 investor _ NOUN NN _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 acquisition _ NOUN NN _ 11 compound _ _ 11 vehicle _ NOUN NN _ 3 appos _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 that _ SCONJ IN _ 27 mark _ _ 15 as _ ADP IN _ 18 case _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 close _ NOUN NN _ 27 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 business _ NOUN NN _ 18 nmod _ _ 21 yesterday _ NOUN NN _ 18 nmod:tmod _ _ 22 , _ PUNCT , _ 27 punct _ _ 23 560,839 _ NUM CD _ 24 nummod _ _ 24 shares _ NOUN NNS _ 27 nsubjpass _ _ 25 had _ AUX VBD _ 27 aux _ _ 26 been _ AUX VBN _ 27 auxpass _ _ 27 tendered _ VERB VBN _ 13 ccomp _ _ 28 . _ PUNCT . _ 13 punct _ _ 1 Including _ VERB VBG _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 stake _ NOUN NN _ 9 nmod _ _ 4 DIG _ PROPN NNP _ 6 nsubj _ _ 5 already _ ADV RB _ 6 advmod _ _ 6 held _ VERB VBD _ 3 acl:relcl _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 DIG _ PROPN NNP _ 9 nsubj _ _ 9 holds _ VERB VBZ _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 total _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 15 case _ _ 13 about _ ADV RB _ 14 advmod _ _ 14 25 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 Di _ PROPN NNP _ 18 compound _ _ 18 Giorgio _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 shares _ NOUN NNS _ 15 nmod _ _ 21 on _ ADP IN _ 25 case _ _ 22 a _ DET DT _ 25 det _ _ 23 fully _ ADV RB _ 24 advmod _ _ 24 diluted _ VERB VBN _ 25 amod _ _ 25 basis _ NOUN NN _ 9 nmod _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 also _ ADV RB _ 6 advmod _ _ 6 includes _ VERB VBZ _ 2 acl:relcl _ _ 7 common _ ADJ JJ _ 12 amod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 preferred _ VERB VBN _ 7 conj _ _ 10 stock _ NOUN NN _ 12 compound _ _ 11 purchase _ NOUN NN _ 12 compound _ _ 12 rights _ NOUN NNS _ 6 dobj _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 was _ VERB VBD _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 expire _ VERB VB _ 14 xcomp _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 night _ NOUN NN _ 16 nmod:tmod _ _ 19 at _ ADP IN _ 20 case _ _ 20 midnight _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 expiration _ NOUN NN _ 4 compound _ _ 4 date _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 date _ NOUN NN _ 0 root _ _ 8 on _ ADP IN _ 9 case _ _ 9 which _ PRON WDT _ 22 nmod _ _ 10 DIG _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 financing _ VERB VBG _ 13 amod _ _ 13 commitments _ NOUN NNS _ 22 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 16 nsubj _ _ 16 total _ VERB VBP _ 13 acl:relcl _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 $ _ SYM $ _ 16 dobj _ _ 19 240 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 are _ VERB VBP _ 7 acl:relcl _ _ 23 to _ PART TO _ 24 mark _ _ 24 expire _ VERB VB _ 22 xcomp _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 DIG _ PROPN NNP _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 a _ DET DT _ 4 det _ _ 4 unit _ NOUN NN _ 0 root _ _ 5 of _ ADP IN _ 8 case _ _ 6 DIG _ PROPN NNP _ 8 compound _ _ 7 Holding _ PROPN NNP _ 8 compound _ _ 8 Corp. _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 a _ DET DT _ 11 det _ _ 11 unit _ NOUN NN _ 8 appos _ _ 12 of _ ADP IN _ 15 case _ _ 13 Rose _ PROPN NNP _ 15 compound _ _ 14 Partners _ PROPN NNP _ 15 compound _ _ 15 L.P _ PROPN NNP _ 11 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Goldberg _ PROPN NNP _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 the _ DET DT _ 7 det _ _ 5 sole _ ADJ JJ _ 7 amod _ _ 6 general _ ADJ JJ _ 7 amod _ _ 7 partner _ NOUN NN _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 Rose _ PROPN NNP _ 10 compound _ _ 10 Partners _ PROPN NNP _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 August _ PROPN NNP _ 20 nmod _ _ 3 , _ PUNCT , _ 20 punct _ _ 4 Di _ PROPN NNP _ 5 compound _ _ 5 Giorgio _ PROPN NNP _ 20 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 11 det _ _ 8 San _ PROPN NNP _ 11 compound _ _ 9 Francisco _ PROPN NNP _ 11 compound _ _ 10 food _ NOUN NN _ 11 compound _ _ 11 products _ NOUN NNS _ 5 appos _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 building _ NOUN NN _ 15 compound _ _ 14 materials _ NOUN NNS _ 15 compound _ _ 15 marketing _ NOUN NN _ 11 conj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 distribution _ NOUN NN _ 18 compound _ _ 18 company _ NOUN NN _ 11 conj _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 rejected _ VERB VBD _ 0 root _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Goldberg _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 offer _ NOUN NN _ 20 dobj _ _ 25 as _ ADP IN _ 26 case _ _ 26 inadequate _ ADJ JJ _ 20 advcl _ _ 27 . _ PUNCT . _ 20 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ NOUN NN _ 7 compound _ _ 7 trading _ NOUN NN _ 12 nmod _ _ 8 yesterday _ NOUN NN _ 12 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 Di _ PROPN NNP _ 11 compound _ _ 11 Giorgio _ PROPN NNP _ 12 nsubj _ _ 12 closed _ VERB VBD _ 0 root _ _ 13 at _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 31.50 _ NUM CD _ 12 nmod _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 down _ ADV RB _ 12 advmod _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.75 _ NUM CD _ 19 nmod:npmod _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 What _ PRON WP _ 4 nsubj _ _ 2 does _ AUX VBZ _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 belong _ VERB VB _ 0 root _ _ 5 here _ ADV RB _ 4 advmod _ _ 6 ? _ PUNCT . _ 4 punct _ _ 1 A. _ X LS _ 3 dep _ _ 2 manual _ ADJ JJ _ 3 amod _ _ 3 typewriters _ NOUN NNS _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 B. _ X LS _ 7 dep _ _ 6 black-and-white _ ADJ JJ _ 7 amod _ _ 7 snapshots _ NOUN NNS _ 3 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 C. _ X LS _ 12 dep _ _ 10 radio _ NOUN NN _ 12 compound _ _ 11 adventure _ NOUN NN _ 12 compound _ _ 12 shows _ NOUN NNS _ 3 appos _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 guessed _ VERB VBD _ 9 advcl _ _ 4 black-and-white _ ADJ JJ _ 5 amod _ _ 5 snapshots _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 you _ PRON PRP _ 9 nsubj _ _ 8 're _ VERB VBP _ 9 cop _ _ 9 right _ ADJ JJ _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 years _ NOUN NNS _ 12 nmod _ _ 3 of _ SCONJ IN _ 4 case _ _ 4 fading _ NOUN NN _ 2 acl _ _ 5 into _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 background _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 two-tone _ ADJ JJ _ 10 amod _ _ 10 photography _ NOUN NN _ 12 nsubj _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 coming _ VERB VBG _ 0 root _ _ 13 back _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 Trendy _ ADJ JJ _ 3 amod _ _ 2 magazine _ NOUN NN _ 3 compound _ _ 3 advertisements _ NOUN NNS _ 4 nsubj _ _ 4 feature _ VERB VBP _ 0 root _ _ 5 stark _ ADJ JJ _ 7 amod _ _ 6 black-and-white _ ADJ JJ _ 7 amod _ _ 7 photos _ NOUN NNS _ 4 dobj _ _ 8 of _ SCONJ IN _ 11 mark _ _ 9 Hollywood _ PROPN NNP _ 10 compound _ _ 10 celebrities _ NOUN NNS _ 11 nsubj _ _ 11 pitching _ VERB VBG _ 7 acl _ _ 12 jeans _ NOUN NNS _ 11 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 shoes _ NOUN NNS _ 12 conj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 liquor _ NOUN NN _ 12 conj _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Portrait _ NOUN NN _ 2 compound _ _ 2 studios _ NOUN NNS _ 9 nsubj _ _ 3 accustomed _ VERB VBN _ 2 acl _ _ 4 to _ ADP TO _ 5 mark _ _ 5 shooting _ VERB VBG _ 3 advcl _ _ 6 only _ ADV RB _ 8 advmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 color _ NOUN NN _ 5 nmod _ _ 9 report _ VERB VBP _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 rush _ NOUN NN _ 9 dobj _ _ 12 to _ ADP TO _ 15 case _ _ 13 black-and-white _ ADJ JJ _ 15 amod _ _ 14 portrait _ NOUN NN _ 15 compound _ _ 15 orders _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 black-and-white _ ADJ JJ _ 4 amod _ _ 3 photography _ NOUN NN _ 4 compound _ _ 4 classes _ NOUN NNS _ 6 nsubjpass _ _ 5 are _ AUX VBP _ 6 auxpass _ _ 6 crowded _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 8 case _ _ 8 students _ NOUN NNS _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 happening _ VERB VBG _ 6 csubj _ _ 4 in _ ADP IN _ 5 case _ _ 5 photography _ NOUN NN _ 3 nmod _ _ 6 mirrors _ VERB VBZ _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 popularity _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 black _ ADJ JJ _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 white _ ADJ JJ _ 10 conj _ _ 13 in _ ADP IN _ 14 case _ _ 14 fashion _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 home _ NOUN NN _ 17 compound _ _ 17 furnishings _ NOUN NNS _ 14 conj _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 cinematography _ NOUN NN _ 14 conj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Seventh _ PROPN NNP _ 3 compound _ _ 3 Avenue _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 designers _ NOUN NNS _ 8 nsubj _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ AUX VBN _ 8 aux _ _ 8 advancing _ VERB VBG _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 monochrome _ ADJ JJ _ 11 amod _ _ 11 look _ NOUN NN _ 8 dobj _ _ 12 with _ ADP IN _ 14 case _ _ 13 clothing _ NOUN NN _ 14 compound _ _ 14 collections _ NOUN NNS _ 8 nmod _ _ 15 done _ VERB VBN _ 14 acl _ _ 16 entirely _ ADV RB _ 15 advmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 black _ ADJ JJ _ 15 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 white _ ADJ JJ _ 18 conj _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 classic _ ADJ JJ _ 4 amod _ _ 3 black-and-white _ ADJ JJ _ 4 amod _ _ 4 movies _ NOUN NNS _ 6 nsubj _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 enjoying _ VERB VBG _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 comeback _ NOUN NN _ 6 dobj _ _ 9 on _ ADP IN _ 11 case _ _ 10 videocassette _ NOUN NN _ 11 compound _ _ 11 tapes _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 spurred _ VERB VBD _ 8 acl _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 in _ ADP IN _ 16 case _ _ 16 part _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 by _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 backlash _ NOUN NN _ 13 nmod _ _ 21 against _ ADP IN _ 22 case _ _ 22 colorization _ NOUN NN _ 20 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 old _ ADJ JJ _ 25 amod _ _ 25 films _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 pendulum _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 swinging _ VERB VBG _ 13 dep _ _ 6 back _ ADV RB _ 5 advmod _ _ 7 to _ ADP TO _ 8 case _ _ 8 black _ NOUN NN _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 white _ NOUN NN _ 8 conj _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 Richard _ PROPN NNP _ 15 compound _ _ 15 DeMoulin _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 general _ ADJ JJ _ 19 amod _ _ 19 manager _ NOUN NN _ 15 appos _ _ 20 of _ ADP IN _ 27 case _ _ 21 Eastman _ PROPN NNP _ 23 compound _ _ 22 Kodak _ PROPN NNP _ 23 compound _ _ 23 Co. _ PROPN NNP _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 professional _ ADJ JJ _ 27 amod _ _ 26 photography _ NOUN NN _ 27 compound _ _ 27 division _ NOUN NN _ 19 nmod _ _ 28 . _ PUNCT . _ 13 punct _ _ 1 Until _ ADP IN _ 4 case _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV RB _ 12 advcl _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 sales _ NOUN NNS _ 12 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 6 nmod _ _ 10 had _ AUX VBD _ 12 aux _ _ 11 been _ AUX VBN _ 12 aux _ _ 12 declining _ VERB VBG _ 0 root _ _ 13 steadily _ ADV RB _ 12 advmod _ _ 14 since _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 1960s _ NUM CD _ 12 nmod _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 year _ NOUN NN _ 17 nmod:tmod _ _ 4 , _ PUNCT , _ 17 punct _ _ 5 buoyed _ VERB VBN _ 17 advcl _ _ 6 by _ ADP IN _ 8 case _ _ 7 increased _ VERB VBN _ 8 amod _ _ 8 use _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 advertising _ VERB VBG _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 other _ ADJ JJ _ 14 amod _ _ 13 commercial _ ADJ JJ _ 14 amod _ _ 14 applications _ NOUN NNS _ 10 conj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 sales _ NOUN NNS _ 17 nsubj _ _ 17 increased _ VERB VBD _ 0 root _ _ 18 5 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 and _ CONJ CC _ 17 cc _ _ 22 they _ PRON PRP _ 24 nsubjpass _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 expected _ VERB VBN _ 17 conj _ _ 25 to _ PART TO _ 26 mark _ _ 26 jump _ VERB VB _ 24 xcomp _ _ 27 at _ ADP IN _ 28 case _ _ 28 least _ ADJ JJS _ 30 advmod _ _ 29 that _ DET DT _ 30 det _ _ 30 much _ ADV RB _ 26 dobj _ _ 31 again _ ADV RB _ 26 advmod _ _ 32 this _ DET DT _ 33 det _ _ 33 year _ NOUN NN _ 26 nmod:tmod _ _ 34 . _ PUNCT . _ 17 punct _ _ 1 Photographic _ ADJ JJ _ 2 amod _ _ 2 companies _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 scrambling _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 tap _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 9 det _ _ 8 resurging _ VERB VBG _ 9 amod _ _ 9 market _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 reviving _ VERB VBG _ 4 ccomp _ _ 12 some _ DET DT _ 15 det _ _ 13 black-and-white _ ADJ JJ _ 15 amod _ _ 14 product _ NOUN NN _ 15 compound _ _ 15 lines _ NOUN NNS _ 11 dobj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 developing _ VERB VBG _ 11 conj _ _ 18 new _ ADJ JJ _ 19 amod _ _ 19 ones _ NOUN NNS _ 17 dobj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Kodak _ PROPN NNP _ 16 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 largely _ ADV RB _ 6 advmod _ _ 6 ignored _ VERB VBD _ 2 acl:relcl _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 years _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 black-and-white _ ADJ JJ _ 14 amod _ _ 13 film _ NOUN NN _ 14 compound _ _ 14 sales _ NOUN NNS _ 16 nsubj _ _ 15 now _ ADV RB _ 16 advmod _ _ 16 account _ VERB VBP _ 0 root _ _ 17 for _ ADP IN _ 20 case _ _ 18 nearly _ ADV RB _ 19 advmod _ _ 19 15 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 16 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 company _ NOUN NN _ 20 nmod _ _ 24 's _ PART POS _ 23 case _ _ 25 $ _ SYM $ _ 23 nummod _ _ 26 3 _ NUM CD _ 27 compound _ _ 27 billion _ NUM CD _ 25 nummod _ _ 28 in _ ADP IN _ 32 case _ _ 29 film _ NOUN NN _ 32 compound _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 paper _ NOUN NN _ 29 conj _ _ 32 sales _ NOUN NNS _ 23 nmod _ _ 33 annually _ ADV RB _ 23 advmod _ _ 34 , _ PUNCT , _ 20 punct _ _ 35 up _ ADP IN _ 20 advmod _ _ 36 from _ ADP IN _ 38 case _ _ 37 10 _ NUM CD _ 38 nummod _ _ 38 % _ SYM NN _ 35 nmod _ _ 39 three _ NUM CD _ 40 nummod _ _ 40 years _ NOUN NNS _ 41 nmod:npmod _ _ 41 ago _ ADV RB _ 38 advmod _ _ 42 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 7 det _ _ 2 Rochester _ PROPN NNP _ 7 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.Y. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 photographic _ ADJ JJ _ 7 amod _ _ 7 giant _ NOUN NN _ 9 nsubj _ _ 8 recently _ ADV RB _ 9 advmod _ _ 9 began _ VERB VBD _ 0 root _ _ 10 marketing _ VERB VBG _ 9 xcomp _ _ 11 T-Max _ PROPN NNP _ 10 dobj _ _ 12 3200 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 one _ NUM CD _ 11 appos _ _ 15 of _ ADP IN _ 22 case _ _ 16 the _ DET DT _ 22 det _ _ 17 fastest _ ADJ JJS _ 20 dep _ _ 18 and _ CONJ CC _ 20 cc _ _ 19 most _ ADV RBS _ 20 advmod _ _ 20 sensitive _ ADJ JJ _ 22 amod _ _ 21 monochrome _ ADJ JJ _ 22 amod _ _ 22 films _ NOUN NNS _ 14 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Aimed _ VERB VBN _ 10 advcl _ _ 2 at _ ADP IN _ 4 case _ _ 3 commercial _ ADJ JJ _ 4 amod _ _ 4 photographers _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 film _ NOUN NN _ 10 nsubjpass _ _ 8 can _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 auxpass _ _ 10 used _ VERB VBN _ 19 dep _ _ 11 in _ ADP IN _ 14 case _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 low _ ADJ JJ _ 14 amod _ _ 14 light _ NOUN NN _ 10 nmod _ _ 15 without _ SCONJ IN _ 16 mark _ _ 16 sacrificing _ VERB VBG _ 10 advcl _ _ 17 quality _ NOUN NN _ 16 dobj _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Donald _ PROPN NNP _ 21 compound _ _ 21 Franz _ PROPN NNP _ 19 nsubj _ _ 22 of _ ADP IN _ 24 case _ _ 23 Photofinishing _ PROPN NNP _ 24 compound _ _ 24 Newsletter _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 19 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 trying _ VERB VBG _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 snare _ VERB VB _ 2 xcomp _ _ 5 a _ DET DT _ 6 det _ _ 6 portion _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 $ _ SYM $ _ 12 amod _ _ 10 2 _ NUM CD _ 9 compound _ _ 11 billion-a-year _ ADJ JJ _ 9 dep _ _ 12 industry _ NOUN NN _ 6 nmod _ _ 13 is _ VERB VBZ _ 2 aux _ _ 14 Agfa _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 2 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 unit _ NOUN NN _ 15 appos _ _ 19 of _ ADP IN _ 21 case _ _ 20 Bayer _ PROPN NNP _ 21 compound _ _ 21 AG _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Agfa _ PROPN NNP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 signed _ VERB VBD _ 0 root _ _ 4 Olympic _ ADJ JJ _ 8 amod _ _ 5 gold _ NOUN NN _ 8 compound _ _ 6 medalist _ NOUN NN _ 8 compound _ _ 7 Florence _ PROPN NNP _ 8 compound _ _ 8 Griffith-Joyner _ PROPN NNP _ 3 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 endorse _ VERB VB _ 3 xcomp _ _ 11 a _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 line _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 black-and-white _ ADJ JJ _ 16 amod _ _ 16 paper _ NOUN NN _ 13 nmod _ _ 17 that _ PRON WDT _ 19 nsubjpass _ _ 18 's _ AUX VBZ _ 19 auxpass _ _ 19 geared _ VERB VBN _ 13 acl:relcl _ _ 20 to _ ADP TO _ 21 case _ _ 21 consumers _ NOUN NNS _ 19 nmod _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 will _ AUX MD _ 24 aux _ _ 24 compete _ VERB VB _ 19 conj _ _ 25 directly _ ADV RB _ 24 advmod _ _ 26 with _ ADP IN _ 29 case _ _ 27 Kodak _ PROPN NNP _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 papers _ NOUN NNS _ 24 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Slated _ VERB VBN _ 17 dep _ _ 2 for _ ADP IN _ 3 case _ _ 3 market _ NOUN NN _ 1 nmod _ _ 4 by _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 end _ NOUN NN _ 1 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 paper _ NOUN NN _ 17 nsubjpass _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 could _ AUX MD _ 17 aux _ _ 15 have _ AUX VB _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 introduced _ VERB VBN _ 31 dep _ _ 18 a _ DET DT _ 20 det _ _ 19 long _ ADJ JJ _ 20 amod _ _ 20 time _ NOUN NN _ 21 nmod:npmod _ _ 21 ago _ ADV RB _ 17 advmod _ _ 22 but _ CONJ CC _ 17 cc _ _ 23 the _ DET DT _ 24 det _ _ 24 market _ NOUN NN _ 25 nsubj _ _ 25 was _ VERB VBD _ 17 conj _ _ 26 n't _ PART RB _ 25 neg _ _ 27 there _ ADV RB _ 25 advmod _ _ 28 then _ ADV RB _ 25 advmod _ _ 29 , _ PUNCT , _ 17 punct _ _ 30 '' _ PUNCT '' _ 17 punct _ _ 31 says _ VERB VBZ _ 0 root _ _ 32 an _ DET DT _ 34 det _ _ 33 Agfa _ PROPN NNP _ 34 compound _ _ 34 spokesman _ NOUN NN _ 31 nsubj _ _ 35 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 biggest _ ADJ JJS _ 3 amod _ _ 3 beneficiary _ NOUN NN _ 9 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 black-and-white _ ADJ JJ _ 7 amod _ _ 7 revival _ NOUN NN _ 3 nmod _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 likely _ ADJ JJ _ 0 root _ _ 10 to _ PART TO _ 17 mark _ _ 11 be _ VERB VB _ 17 cop _ _ 12 International _ PROPN NNP _ 14 compound _ _ 13 Paper _ PROPN NNP _ 14 compound _ _ 14 Co. _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 Ilford _ PROPN NNP _ 17 compound _ _ 17 division _ NOUN NN _ 9 xcomp _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 known _ VERB VBN _ 17 acl _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 industry _ NOUN NN _ 19 nmod _ _ 23 for _ ADP IN _ 26 case _ _ 24 its _ PRON PRP$ _ 26 nmod:poss _ _ 25 premium _ NOUN NN _ 26 compound _ _ 26 products _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 9 punct _ _ 1 Sales _ NOUN NNS _ 13 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 Ilford _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 four _ NUM CD _ 6 nummod _ _ 6 varieties _ NOUN NNS _ 1 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 6 nmod _ _ 10 this _ DET DT _ 11 det _ _ 11 year _ NOUN NN _ 13 nmod:tmod _ _ 12 are _ AUX VBP _ 13 aux _ _ 13 outpacing _ VERB VBG _ 0 root _ _ 14 growth _ NOUN NN _ 13 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 overall _ ADJ JJ _ 18 amod _ _ 18 market _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 although _ SCONJ IN _ 25 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 25 nsubj _ _ 23 wo _ AUX MD _ 25 aux _ _ 24 n't _ PART RB _ 25 neg _ _ 25 say _ VERB VB _ 13 advcl _ _ 26 by _ ADP IN _ 29 case _ _ 27 exactly _ ADV RB _ 29 advmod _ _ 28 how _ ADV WRB _ 29 advmod _ _ 29 much _ ADJ JJ _ 25 nmod _ _ 30 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 hope _ VERB VBP _ 9 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 trend _ NOUN NN _ 6 nsubj _ _ 6 lasts _ VERB VBZ _ 3 ccomp _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 Laurie _ PROPN NNP _ 11 compound _ _ 11 DiCara _ PROPN NNP _ 9 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Ilford _ PROPN NNP _ 17 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 marketing _ NOUN NN _ 17 compound _ _ 16 communications _ NOUN NNS _ 17 compound _ _ 17 director _ NOUN NN _ 11 appos _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Why _ ADV WRB _ 4 dep _ _ 2 all _ DET DT _ 4 det:predet _ _ 3 the _ DET DT _ 4 det _ _ 4 interest _ NOUN NN _ 0 root _ _ 5 ? _ PUNCT . _ 4 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 baby _ NOUN NN _ 3 compound _ _ 3 boomers _ NOUN NNS _ 15 nmod _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 grew _ VERB VBD _ 3 acl:relcl _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 being _ AUX VBG _ 8 auxpass _ _ 8 photographed _ VERB VBN _ 5 xcomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 color _ NOUN NN _ 8 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 black _ NOUN NN _ 15 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 white _ NOUN NN _ 12 conj _ _ 15 seems _ VERB VBZ _ 0 root _ _ 16 eye-catching _ ADJ JJ _ 15 xcomp _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 exotic _ ADJ JJ _ 16 conj _ _ 19 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 has _ VERB VBZ _ 14 dep _ _ 4 an _ DET DT _ 9 det _ _ 5 archival _ ADJ JJ _ 9 amod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 almost _ ADV RB _ 8 advmod _ _ 8 nostalgic _ ADJ JJ _ 9 amod _ _ 9 quality _ NOUN NN _ 3 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 it _ PRON PRP _ 9 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Owen _ PROPN NNP _ 17 compound _ _ 16 B. _ PROPN NNP _ 17 compound _ _ 17 Butler _ PROPN NNP _ 14 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 chairman _ NOUN NN _ 17 appos _ _ 21 of _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 applied _ VERB VBN _ 25 amod _ _ 24 photography _ NOUN NN _ 25 compound _ _ 25 department _ NOUN NN _ 20 nmod _ _ 26 at _ ADP IN _ 28 case _ _ 27 Rochester _ PROPN NNP _ 28 compound _ _ 28 Institute _ PROPN NNP _ 25 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 Technology _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 You _ PRON PRP _ 4 nsubj _ _ 3 can _ AUX MD _ 4 aux _ _ 4 shift _ VERB VB _ 15 dep _ _ 5 out _ ADP IN _ 7 case _ _ 6 of _ ADP IN _ 7 case _ _ 7 reality _ NOUN NN _ 4 nmod _ _ 8 with _ ADP IN _ 9 case _ _ 9 black _ NOUN NN _ 4 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 white _ NOUN NN _ 9 conj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 '' _ PUNCT '' _ 4 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 adds _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Such _ ADJ JJ _ 2 amod _ _ 2 features _ NOUN NNS _ 6 nsubj _ _ 3 have _ AUX VBP _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 especially _ ADV RB _ 6 advmod _ _ 6 attractive _ ADJ JJ _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 professional _ ADJ JJ _ 9 amod _ _ 9 photographers _ NOUN NNS _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 marketing _ NOUN NN _ 12 compound _ _ 12 executives _ NOUN NNS _ 9 conj _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 who _ PRON WP _ 18 nsubj _ _ 15 have _ AUX VBP _ 18 aux _ _ 16 been _ AUX VBN _ 18 aux _ _ 17 steadily _ ADV RB _ 18 advmod _ _ 18 increasing _ VERB VBG _ 9 acl:relcl _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 use _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 22 case _ _ 22 black _ NOUN NN _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 white _ NOUN NN _ 22 conj _ _ 25 in _ ADP IN _ 26 case _ _ 26 advertising _ NOUN NN _ 20 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Processing _ VERB VBG _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 black-and-white _ ADJ JJ _ 5 amod _ _ 4 commercial _ ADJ JJ _ 5 amod _ _ 5 film _ NOUN NN _ 1 nmod _ _ 6 jumped _ VERB VBD _ 0 root _ _ 7 24 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 year _ NOUN NN _ 6 nmod:tmod _ _ 11 to _ ADP TO _ 14 case _ _ 12 18.7 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 14 nummod _ _ 14 rolls _ NOUN NNS _ 6 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 Gap _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 1 dobj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 whose _ PRON WP$ _ 8 nmod:poss _ _ 6 latest _ ADJ JJS _ 8 amod _ _ 7 ad _ NOUN NN _ 8 compound _ _ 8 campaign _ NOUN NN _ 9 nsubj _ _ 9 features _ VERB VBZ _ 3 acl:relcl _ _ 10 black-and-white _ ADJ JJ _ 11 amod _ _ 11 shots _ NOUN NNS _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 Hollywood _ PROPN NNP _ 14 compound _ _ 14 stars _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 artists _ NOUN NNS _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 other _ ADJ JJ _ 19 amod _ _ 19 well-known _ ADJ JJ _ 20 amod _ _ 20 personalities _ NOUN NNS _ 14 conj _ _ 21 modeling _ VERB VBG _ 14 acl _ _ 22 the _ DET DT _ 23 det _ _ 23 retailer _ NOUN NN _ 25 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 jeans _ NOUN NNS _ 21 dobj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 T-shirts _ NOUN NNS _ 25 conj _ _ 28 . _ PUNCT . _ 1 punct _ _ 1 Richard _ PROPN NNP _ 2 compound _ _ 2 Crisman _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 account _ NOUN NN _ 6 compound _ _ 6 manager _ NOUN NN _ 2 appos _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 campaign _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 Gap _ PROPN NNP _ 16 nsubj _ _ 13 did _ AUX VBD _ 16 aux _ _ 14 n't _ PART RB _ 16 neg _ _ 15 intentionally _ ADV RB _ 16 advmod _ _ 16 choose _ VERB VB _ 11 ccomp _ _ 17 black _ ADJ JJ _ 16 dobj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 white _ ADJ JJ _ 17 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 distinguish _ VERB VB _ 16 xcomp _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 ads _ NOUN NNS _ 21 dobj _ _ 24 from _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 color _ NOUN NN _ 27 compound _ _ 27 spreads _ NOUN NNS _ 21 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 competitors _ NOUN NNS _ 27 nmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 wanted _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 highlight _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 individual _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 not _ ADV RB _ 11 neg _ _ 10 the _ DET DT _ 11 det _ _ 11 environment _ NOUN NN _ 7 appos _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 3 dep _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 `` _ PUNCT `` _ 3 punct _ _ 18 and _ CONJ CC _ 3 cc _ _ 19 black _ NOUN NN _ 22 nsubj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 white _ NOUN NN _ 19 conj _ _ 22 allows _ VERB VBZ _ 3 conj _ _ 23 you _ PRON PRP _ 22 dobj _ _ 24 to _ PART TO _ 25 mark _ _ 25 do _ VERB VB _ 22 xcomp _ _ 26 that _ PRON DT _ 25 dobj _ _ 27 better _ ADV RBR _ 25 advmod _ _ 28 than _ ADP IN _ 29 case _ _ 29 color _ NOUN NN _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 31 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 campaign _ NOUN NN _ 3 nsubj _ _ 3 won _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 Cleo _ PROPN NNP _ 6 compound _ _ 6 award _ NOUN NN _ 3 dobj _ _ 7 as _ ADP IN _ 12 case _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 best _ ADJ JJS _ 12 amod _ _ 12 ad _ NOUN NN _ 6 nmod _ _ 13 by _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 specialty _ NOUN NN _ 16 compound _ _ 16 retailer _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Even _ ADV RB _ 3 advmod _ _ 2 food _ NOUN NN _ 3 compound _ _ 3 products _ NOUN NNS _ 15 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 automobiles _ NOUN NNS _ 3 conj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 which _ PRON WDT _ 10 nsubj _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 long _ ADV RB _ 10 advmod _ _ 10 depended _ VERB VBN _ 3 acl:relcl _ _ 11 on _ ADP IN _ 12 case _ _ 12 color _ NOUN NN _ 10 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 are _ AUX VBP _ 15 aux _ _ 15 making _ VERB VBG _ 0 root _ _ 16 the _ DET DT _ 17 det _ _ 17 switch _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 15 punct _ _ 1 Companies _ NOUN NNS _ 3 nsubj _ _ 2 `` _ PUNCT `` _ 3 punct _ _ 3 feel _ VERB VBP _ 14 dep _ _ 4 black _ NOUN NN _ 8 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 white _ NOUN NN _ 4 conj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 convey _ VERB VB _ 3 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 stronger _ ADJ JJR _ 11 amod _ _ 11 statement _ NOUN NN _ 8 dobj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Marc _ PROPN NNP _ 17 compound _ _ 16 L. _ PROPN NNP _ 17 compound _ _ 17 Hauser _ PROPN NNP _ 14 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 Chicago _ PROPN NNP _ 21 compound _ _ 21 photographer _ NOUN NN _ 17 appos _ _ 22 who _ PRON WP _ 24 nsubj _ _ 23 is _ AUX VBZ _ 24 aux _ _ 24 working _ VERB VBG _ 21 acl:relcl _ _ 25 on _ ADP IN _ 29 case _ _ 26 a _ DET DT _ 29 det _ _ 27 black-and-white _ ADJ JJ _ 29 amod _ _ 28 print _ NOUN NN _ 29 compound _ _ 29 ad _ NOUN NN _ 24 nmod _ _ 30 for _ ADP IN _ 36 case _ _ 31 Stouffer _ PROPN NNP _ 33 compound _ _ 32 Food _ PROPN NNP _ 33 compound _ _ 33 Corp. _ PROPN NNP _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 Lean _ PROPN NNP _ 36 compound _ _ 36 Cuisine _ PROPN NNP _ 29 nmod _ _ 37 . _ PUNCT . _ 14 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 companies _ NOUN NNS _ 9 nsubj _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 are _ AUX VBP _ 6 aux _ _ 5 currently _ ADV RB _ 6 advmod _ _ 6 using _ VERB VBG _ 2 acl:relcl _ _ 7 two-tone _ ADJ JJ _ 8 amod _ _ 8 ads _ NOUN NNS _ 6 dobj _ _ 9 include _ VERB VBP _ 0 root _ _ 10 American _ PROPN NNP _ 12 compound _ _ 11 Express _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 9 dobj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Epson _ PROPN NNP _ 16 compound _ _ 15 America _ PROPN NNP _ 16 compound _ _ 16 Inc _ PROPN NNP _ 12 conj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Portrait _ NOUN NN _ 2 compound _ _ 2 studios _ NOUN NNS _ 5 nsubj _ _ 3 have _ AUX VBP _ 5 aux _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 latched _ VERB VBN _ 0 root _ _ 6 onto _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 trend _ NOUN NN _ 5 nmod _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 Using _ VERB VBG _ 9 dep _ _ 2 black _ NOUN NN _ 1 dobj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 white _ NOUN NN _ 2 conj _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 we _ PRON PRP _ 9 nsubj _ _ 8 can _ AUX MD _ 9 aux _ _ 9 make _ VERB VB _ 16 dep _ _ 10 housewives _ NOUN NNS _ 11 nsubj _ _ 11 look _ VERB VB _ 9 ccomp _ _ 12 like _ ADP IN _ 13 case _ _ 13 stars _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 '' _ PUNCT '' _ 9 punct _ _ 16 says _ VERB VBZ _ 0 root _ _ 17 John _ PROPN NNP _ 18 compound _ _ 18 Perrin _ PROPN NNP _ 16 nsubj _ _ 19 . _ PUNCT . _ 16 punct _ _ 1 His _ PRON PRP$ _ 4 nmod:poss _ _ 2 On-Broadway _ PROPN NNP _ 4 compound _ _ 3 Photography _ PROPN NNP _ 4 compound _ _ 4 studio _ NOUN NN _ 10 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 Portland _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Ore. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 doubled _ VERB VBD _ 0 root _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 business _ NOUN NN _ 10 dobj _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 nmod:tmod _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 10 parataxis _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 is _ AUX VBZ _ 21 auxpass _ _ 21 booked _ VERB VBN _ 10 conj _ _ 22 solid _ ADJ JJ _ 21 xcomp _ _ 23 for _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 next _ ADJ JJ _ 26 amod _ _ 26 five _ NUM CD _ 21 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 customer _ NOUN NN _ 7 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Dayna _ PROPN NNP _ 5 compound _ _ 5 Brunsdon _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 says _ VERB VBZ _ 0 root _ _ 8 she _ PRON PRP _ 9 nsubj _ _ 9 spurned _ VERB VBD _ 7 ccomp _ _ 10 a _ DET DT _ 12 det _ _ 11 color _ NOUN NN _ 12 compound _ _ 12 portrait _ NOUN NN _ 9 dobj _ _ 13 for _ ADP IN _ 14 case _ _ 14 black _ ADJ JJ _ 9 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 white _ ADJ JJ _ 14 conj _ _ 17 because _ SCONJ IN _ 22 mark _ _ 18 `` _ PUNCT `` _ 22 punct _ _ 19 it _ PRON PRP _ 22 nsubj _ _ 20 's _ VERB VBZ _ 22 cop _ _ 21 more _ ADV RBR _ 22 advmod _ _ 22 dramatic _ ADJ JJ _ 9 advcl _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 show _ VERB VBP _ 0 root _ _ 3 it _ PRON PRP _ 2 dobj _ _ 4 to _ ADP TO _ 6 case _ _ 5 my _ PRON PRP$ _ 6 nmod:poss _ _ 6 friends _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 and _ CONJ CC _ 2 cc _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 all _ DET DT _ 9 det _ _ 11 say _ VERB VBP _ 2 conj _ _ 12 ` _ PUNCT `` _ 11 punct _ _ 13 wow _ INTJ UH _ 11 dobj _ _ 14 . _ PUNCT . _ 11 punct _ _ 15 ' _ PUNCT '' _ 11 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 n't _ PART RB _ 4 neg _ _ 4 ordinary _ ADJ JJ _ 0 root _ _ 5 like _ ADP IN _ 6 case _ _ 6 color _ NOUN NN _ 4 nmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 8 '' _ PUNCT '' _ 4 punct _ _ 1 Still _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 most _ ADJ JJS _ 4 amod _ _ 4 consumers _ NOUN NNS _ 7 nsubj _ _ 5 are _ AUX VBP _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 plunking _ VERB VBG _ 0 root _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 7 dobj _ _ 10 into _ ADP IN _ 12 case _ _ 11 their _ PRON PRP$ _ 12 nmod:poss _ _ 12 cameras _ NOUN NNS _ 7 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 take _ VERB VB _ 7 advcl _ _ 15 family _ NOUN NN _ 16 compound _ _ 16 snapshots _ NOUN NNS _ 14 dobj _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 obstacle _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 few _ ADJ JJ _ 7 amod _ _ 7 drugstores _ NOUN NNS _ 8 nsubj _ _ 8 develop _ VERB VBP _ 4 ccomp _ _ 9 the _ DET DT _ 10 det _ _ 10 film _ NOUN NN _ 8 dobj _ _ 11 anymore _ ADV RB _ 8 advmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Typically _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 it _ PRON PRP _ 6 nsubjpass _ _ 4 must _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 mailed _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 handful _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 processors _ NOUN NNS _ 9 nmod _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 may _ AUX MD _ 14 aux _ _ 14 take _ VERB VB _ 6 conj _ _ 15 a _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:tmod _ _ 17 or _ CONJ CC _ 18 cc _ _ 18 more _ ADJ JJR _ 16 nummod _ _ 19 to _ PART TO _ 21 mark _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 processed _ VERB VBN _ 14 xcomp _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 returned _ VERB VBN _ 21 conj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Black-and-white _ ADJ JJ _ 2 amod _ _ 2 film _ NOUN NN _ 3 nsubj _ _ 3 costs _ VERB VBZ _ 0 root _ _ 4 consumers _ NOUN NNS _ 3 iobj _ _ 5 a _ DET DT _ 6 det _ _ 6 little _ ADV RB _ 7 nmod:npmod _ _ 7 less _ ADJ JJR _ 3 dobj _ _ 8 than _ ADP IN _ 10 case _ _ 9 color _ NOUN NN _ 10 compound _ _ 10 film _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 and _ CONJ CC _ 3 cc _ _ 13 processing _ NOUN NN _ 14 nsubj _ _ 14 costs _ VERB VBZ _ 3 conj _ _ 15 the _ DET DT _ 16 det _ _ 16 same _ ADJ JJ _ 14 dobj _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 for _ ADP IN _ 3 case _ _ 3 photofinishers _ NOUN NNS _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 developing _ NOUN NN _ 6 compound _ _ 6 costs _ NOUN NNS _ 11 nsubj _ _ 7 for _ ADP IN _ 9 case _ _ 8 black-and-white _ ADJ JJ _ 9 amod _ _ 9 film _ NOUN NN _ 6 nmod _ _ 10 are _ VERB VBP _ 11 cop _ _ 11 higher _ ADJ JJR _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 companies _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 starting _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 tackle _ VERB VB _ 4 xcomp _ _ 7 that _ DET DT _ 8 det _ _ 8 problem _ NOUN NN _ 6 dobj _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Ilford _ PROPN NNP _ 7 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 example _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 recently _ ADV RB _ 7 advmod _ _ 7 introduced _ VERB VBD _ 0 root _ _ 8 a _ DET DT _ 10 det _ _ 9 black-and-white _ ADJ JJ _ 10 amod _ _ 10 film _ NOUN NN _ 7 dobj _ _ 11 that _ PRON WDT _ 14 nsubjpass _ _ 12 can _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 processed _ VERB VBN _ 10 acl:relcl _ _ 15 quickly _ ADV RB _ 14 advmod _ _ 16 by _ ADP IN _ 18 case _ _ 17 color _ NOUN NN _ 18 compound _ _ 18 labs _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 Intent _ NOUN NN _ 10 ccomp _ _ 2 on _ SCONJ IN _ 3 mark _ _ 3 wooing _ VERB VBG _ 1 advcl _ _ 4 customers _ NOUN NNS _ 3 dobj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 10 nsubj _ _ 8 is _ AUX VBZ _ 10 aux _ _ 9 also _ ADV RB _ 10 advmod _ _ 10 increasing _ VERB VBG _ 0 root _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 sponsorship _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 black-and-white _ ADJ JJ _ 16 amod _ _ 15 photography _ NOUN NN _ 16 compound _ _ 16 classes _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 Similarly _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Agfa _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 sponsoring _ VERB VBG _ 0 root _ _ 6 scores _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 photography _ NOUN NN _ 9 compound _ _ 9 contests _ NOUN NNS _ 6 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 high _ ADJ JJ _ 12 amod _ _ 12 schools _ NOUN NNS _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 colleges _ NOUN NNS _ 12 conj _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 offering _ VERB VBG _ 5 advcl _ _ 17 free _ ADJ JJ _ 19 amod _ _ 18 black-and-white _ ADJ JJ _ 19 amod _ _ 19 film _ NOUN NN _ 16 dobj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 paper _ NOUN NN _ 19 conj _ _ 22 as _ ADP IN _ 23 case _ _ 23 prizes _ NOUN NNS _ 16 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 Kodak _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 distributing _ VERB VBG _ 0 root _ _ 5 an _ DET DT _ 7 det _ _ 6 instructional _ ADJ JJ _ 7 amod _ _ 7 video _ NOUN NN _ 4 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 processors _ NOUN NNS _ 4 nmod _ _ 10 on _ SCONJ IN _ 13 mark _ _ 11 how _ ADV WRB _ 13 advmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 develop _ VERB VB _ 4 advcl _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 monochrome _ ADJ JJ _ 16 amod _ _ 16 film _ NOUN NN _ 13 dobj _ _ 17 more _ ADV RBR _ 18 advmod _ _ 18 efficiently _ ADV RB _ 13 advmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 companies _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 introducing _ VERB VBG _ 0 root _ _ 5 related _ VERB VBN _ 6 amod _ _ 6 products _ NOUN NNS _ 4 dobj _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 Charles _ PROPN NNP _ 3 compound _ _ 2 Beseler _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 7 det _ _ 6 leading _ VERB VBG _ 7 amod _ _ 7 maker _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 10 case _ _ 9 photographic _ ADJ JJ _ 10 amod _ _ 10 enlargers _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 introduced _ VERB VBD _ 0 root _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 month _ NOUN NN _ 12 nmod:tmod _ _ 15 a _ DET DT _ 19 det _ _ 16 complete _ ADJ JJ _ 19 amod _ _ 17 darkroom _ NOUN NN _ 19 compound _ _ 18 starter _ NOUN NN _ 19 compound _ _ 19 kit _ NOUN NN _ 12 dobj _ _ 20 targeted _ VERB VBN _ 19 acl _ _ 21 at _ ADP IN _ 22 case _ _ 22 teen-agers _ NOUN NNS _ 20 nmod _ _ 23 who _ PRON WP _ 24 nsubj _ _ 24 want _ VERB VBP _ 22 acl:relcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 process _ VERB VB _ 24 xcomp _ _ 27 their _ PRON PRP$ _ 30 nmod:poss _ _ 28 own _ ADJ JJ _ 30 amod _ _ 29 black-and-white _ ADJ JJ _ 30 amod _ _ 30 photographs _ NOUN NNS _ 26 dobj _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 kit _ NOUN NN _ 21 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 has _ VERB VBZ _ 2 acl:relcl _ _ 6 a _ DET DT _ 9 det _ _ 7 suggested _ VERB VBN _ 9 amod _ _ 8 retail _ ADJ JJ _ 9 amod _ _ 9 price _ NOUN NN _ 5 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 250 _ NUM CD _ 9 nmod _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 already _ ADV RB _ 16 advmod _ _ 16 become _ VERB VBN _ 5 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 bestseller _ NOUN NN _ 16 xcomp _ _ 19 , _ PUNCT , _ 2 punct _ _ 20 was _ AUX VBD _ 21 auxpass _ _ 21 introduced _ VERB VBN _ 0 root _ _ 22 after _ SCONJ IN _ 24 mark _ _ 23 retailers _ NOUN NNS _ 24 nsubj _ _ 24 noticed _ VERB VBD _ 21 advcl _ _ 25 numerous _ ADJ JJ _ 26 amod _ _ 26 requests _ NOUN NNS _ 24 dobj _ _ 27 from _ ADP IN _ 28 case _ _ 28 parents _ NOUN NNS _ 26 nmod _ _ 29 for _ ADP IN _ 33 case _ _ 30 children _ NOUN NNS _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 photography _ NOUN NN _ 33 compound _ _ 33 equipment _ NOUN NN _ 26 nmod _ _ 34 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 11 dep _ _ 4 computers _ NOUN NNS _ 8 nsubj _ _ 5 as _ ADP IN _ 6 case _ _ 6 hobbies _ NOUN NNS _ 4 nmod _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 waned _ VERB VBN _ 3 ccomp _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 '' _ PUNCT '' _ 3 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 Ian _ PROPN NNP _ 13 compound _ _ 13 Brightman _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Beseler _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 chairman _ NOUN NN _ 13 appos _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 chief _ ADJ JJ _ 21 amod _ _ 20 executive _ ADJ JJ _ 21 amod _ _ 21 officer _ NOUN NN _ 17 conj _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 some _ DET DT _ 4 det _ _ 3 industry _ NOUN NN _ 4 compound _ _ 4 observers _ NOUN NNS _ 5 nsubj _ _ 5 believe _ VERB VBP _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 resurgence _ NOUN NN _ 15 nsubj _ _ 8 of _ ADP IN _ 9 case _ _ 9 black _ NOUN NN _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 white _ NOUN NN _ 9 conj _ _ 12 is _ VERB VBZ _ 15 cop _ _ 13 only _ ADV RB _ 15 advmod _ _ 14 a _ DET DT _ 15 det _ _ 15 fad _ NOUN NN _ 5 ccomp _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 cite _ VERB VBP _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 emergence _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 still _ ADJ JJ _ 8 amod _ _ 7 electronic _ ADJ JJ _ 8 amod _ _ 8 photography _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 more _ ADJ JJR _ 11 amod _ _ 11 newspapers _ NOUN NNS _ 12 nsubj _ _ 12 turning _ VERB VBG _ 4 conj _ _ 13 to _ ADP TO _ 14 case _ _ 14 color _ VERB VB _ 12 nmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 pages _ NOUN NNS _ 12 nmod _ _ 18 and _ CONJ CC _ 4 cc _ _ 19 measurable _ ADJ JJ _ 20 amod _ _ 20 improvements _ NOUN NNS _ 4 conj _ _ 21 in _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 quality _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 color _ NOUN NN _ 26 compound _ _ 26 prints _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 Black _ NOUN NN _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 white _ NOUN NN _ 2 conj _ _ 5 has _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 made _ VERB VBD _ 19 ccomp _ _ 8 the _ DET DT _ 11 det _ _ 9 same _ ADJ JJ _ 11 amod _ _ 10 quantum _ NOUN NN _ 11 compound _ _ 11 leaps _ NOUN NNS _ 7 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 technological _ ADJ JJ _ 14 amod _ _ 14 development _ NOUN NN _ 11 nmod _ _ 15 as _ ADP IN _ 16 case _ _ 16 color _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Butler _ PROPN NNP _ 19 nsubj _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 Rochester _ PROPN NNP _ 25 compound _ _ 25 Institute _ PROPN NNP _ 21 nmod _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 color _ NOUN NN _ 4 compound _ _ 4 print _ NOUN NN _ 8 nsubj _ _ 5 today _ NOUN NN _ 8 nmod:tmod _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 far _ ADV RB _ 8 advmod _ _ 8 superior _ ADJ JJ _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 prints _ NOUN NNS _ 8 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 10 _ NUM CD _ 13 nummod _ _ 13 years _ NOUN NNS _ 14 nmod:npmod _ _ 14 ago _ ADV RB _ 10 acl _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 You _ PRON PRP _ 4 nsubj _ _ 2 ca _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 say _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 same _ ADJ JJ _ 4 dobj _ _ 7 with _ ADP IN _ 8 case _ _ 8 black _ ADJ JJ _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 white _ ADJ JJ _ 8 conj _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 But _ CONJ CC _ 32 cc _ _ 2 when _ ADV WRB _ 12 advmod _ _ 3 Popular _ PROPN NNP _ 4 compound _ _ 4 Photography _ PROPN NNP _ 12 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 leading _ VERB VBG _ 8 amod _ _ 8 magazine _ NOUN NN _ 4 appos _ _ 9 for _ ADP IN _ 10 case _ _ 10 photographers _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 selected _ VERB VBD _ 32 advcl _ _ 13 15 _ NUM CD _ 12 dobj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 greatest _ ADJ JJS _ 17 amod _ _ 17 photos _ NOUN NNS _ 13 nmod _ _ 18 ever _ ADV RB _ 19 advmod _ _ 19 made _ VERB VBN _ 17 acl _ _ 20 for _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 latest _ ADJ JJS _ 23 amod _ _ 23 issue _ NOUN NN _ 12 nmod _ _ 24 celebrating _ VERB VBG _ 23 acl _ _ 25 photography _ NOUN NN _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 150th _ ADJ JJ _ 28 amod _ _ 28 anniversary _ NOUN NN _ 24 dobj _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 all _ DET DT _ 32 nsubj _ _ 31 were _ VERB VBD _ 32 cop _ _ 32 black _ NOUN NN _ 0 root _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 white _ NOUN NN _ 32 conj _ _ 35 . _ PUNCT . _ 32 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 It _ PRON PRP _ 4 nsubjpass _ _ 3 's _ AUX VBZ _ 4 auxpass _ _ 4 got _ VERB VBD _ 14 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 classic _ ADJ JJ _ 7 amod _ _ 7 spirit _ NOUN NN _ 4 dobj _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 carries _ VERB VBZ _ 4 conj _ _ 10 over _ ADP RP _ 9 compound:prt _ _ 11 emotionally _ ADV RB _ 9 advmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Alfred _ PROPN NNP _ 16 compound _ _ 16 DeBat _ PROPN NNP _ 14 nsubj _ _ 17 of _ ADP IN _ 19 case _ _ 18 Professional _ PROPN NNP _ 19 compound _ _ 19 Photographers _ PROPN NNP _ 16 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 America _ PROPN NNP _ 19 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 That _ PRON DT _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 appeal _ NOUN NN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 McClatchy _ PROPN NNP _ 3 compound _ _ 2 Newspapers _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 improvements _ NOUN NNS _ 11 nsubj _ _ 6 in _ ADP IN _ 10 case _ _ 7 advertising _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 subscription _ NOUN NN _ 7 conj _ _ 10 revenue _ NOUN NN _ 5 nmod _ _ 11 led _ VERB VBD _ 4 ccomp _ _ 12 to _ ADP TO _ 16 case _ _ 13 a _ DET DT _ 16 det _ _ 14 21 _ NUM CD _ 15 compound _ _ 15 % _ SYM NN _ 16 amod _ _ 16 gain _ NOUN NN _ 11 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 third-quarter _ ADJ JJ _ 19 amod _ _ 19 profit _ NOUN NN _ 16 nmod _ _ 20 to _ ADP TO _ 21 case _ _ 21 $ _ SYM $ _ 16 nmod _ _ 22 8.8 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 or _ CONJ CC _ 21 cc _ _ 26 31 _ NUM CD _ 27 nummod _ _ 27 cents _ NOUN NNS _ 21 conj _ _ 28 a _ DET DT _ 29 det _ _ 29 share _ NOUN NN _ 27 nmod:npmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 from _ ADP IN _ 32 case _ _ 32 $ _ SYM $ _ 16 nmod _ _ 33 7.2 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 , _ PUNCT , _ 32 punct _ _ 36 or _ CONJ CC _ 32 cc _ _ 37 25 _ NUM CD _ 38 nummod _ _ 38 cents _ NOUN NNS _ 32 conj _ _ 39 a _ DET DT _ 40 det _ _ 40 share _ NOUN NN _ 38 nmod:npmod _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 more _ ADV RBR _ 5 advmod _ _ 4 than _ ADP IN _ 3 mwe _ _ 5 7 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 2 dobj _ _ 7 to _ ADP TO _ 8 case _ _ 8 $ _ SYM $ _ 2 nmod _ _ 9 94.9 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 from _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 2 nmod _ _ 13 88.3 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Sacramento _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Calif. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 company _ NOUN NN _ 8 nsubj _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 attributed _ VERB VBD _ 0 root _ _ 9 improved _ VERB VBN _ 10 amod _ _ 10 performance _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 16 case _ _ 12 a _ DET DT _ 16 det _ _ 13 lower _ ADJ JJR _ 16 amod _ _ 14 effective _ ADJ JJ _ 16 amod _ _ 15 tax _ NOUN NN _ 16 compound _ _ 16 rate _ NOUN NN _ 8 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 higher _ ADJ JJR _ 20 amod _ _ 19 interest _ NOUN NN _ 20 compound _ _ 20 income _ NOUN NN _ 16 conj _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 newspaper _ NOUN NN _ 8 compound _ _ 8 chain _ NOUN NN _ 9 nsubj _ _ 9 had _ VERB VBD _ 0 root _ _ 10 almost _ ADV RB _ 14 advmod _ _ 11 a _ DET DT _ 14 det _ _ 12 23 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 increase _ NOUN NN _ 9 dobj _ _ 15 in _ ADP IN _ 16 case _ _ 16 profit _ NOUN NN _ 14 nmod _ _ 17 to _ ADP TO _ 18 case _ _ 18 $ _ SYM $ _ 14 nmod _ _ 19 23.6 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 or _ CONJ CC _ 18 cc _ _ 23 83 _ NUM CD _ 24 nummod _ _ 24 cents _ NOUN NNS _ 18 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 24 nmod:npmod _ _ 27 , _ PUNCT , _ 18 punct _ _ 28 from _ ADP IN _ 29 case _ _ 29 $ _ SYM $ _ 14 nmod _ _ 30 19.2 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 , _ PUNCT , _ 29 punct _ _ 33 or _ CONJ CC _ 29 cc _ _ 34 68 _ NUM CD _ 35 nummod _ _ 35 cents _ NOUN NNS _ 29 conj _ _ 36 a _ DET DT _ 37 det _ _ 37 share _ NOUN NN _ 35 nmod:npmod _ _ 38 . _ PUNCT . _ 9 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 grew _ VERB VBD _ 0 root _ _ 3 almost _ ADV RB _ 4 advmod _ _ 4 7 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 2 nmod _ _ 8 279.1 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 from _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 2 nmod _ _ 12 261.3 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 McClatchy _ PROPN NNP _ 2 nsubj _ _ 2 publishes _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 9 det _ _ 4 Sacramento _ PROPN NNP _ 9 dep _ _ 5 -LRB- _ PUNCT -LRB- _ 4 punct _ _ 6 Calif _ PROPN NNP _ 4 dep _ _ 7 . _ PUNCT . _ 4 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 4 punct _ _ 9 Bee _ PROPN NNP _ 2 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Tacoma _ PROPN NNP _ 17 dep _ _ 12 -LRB- _ PUNCT -LRB- _ 11 punct _ _ 13 Wash _ PROPN NNP _ 11 dep _ _ 14 . _ PUNCT . _ 11 punct _ _ 15 -RRB- _ PUNCT -RRB- _ 11 punct _ _ 16 News _ PROPN NNP _ 17 compound _ _ 17 Tribune _ PROPN NNP _ 9 conj _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 and _ CONJ CC _ 9 cc _ _ 20 other _ ADJ JJ _ 21 amod _ _ 21 papers _ NOUN NNS _ 9 conj _ _ 22 in _ ADP IN _ 24 case _ _ 23 Western _ ADJ JJ _ 24 amod _ _ 24 states _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 composite _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 13 nmod _ _ 4 on _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 New _ PROPN NNP _ 9 compound _ _ 7 York _ PROPN NNP _ 9 compound _ _ 8 Stock _ PROPN NNP _ 9 compound _ _ 9 Exchange _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 25.25 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 down _ ADV RB _ 13 advmod _ _ 21 25 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 20 nmod:npmod _ _ 23 . _ PUNCT . _ 13 punct _ _ 1 Agip _ PROPN NNP _ 4 compound _ _ 2 S.p _ PROPN NNP _ 4 compound _ _ 3 . _ PUNCT . _ 4 punct _ _ 4 A. _ PROPN NNP _ 22 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 Societe _ PROPN NNP _ 9 compound _ _ 7 National _ PROPN NNP _ 9 compound _ _ 8 Elf _ PROPN NNP _ 9 compound _ _ 9 Aquitaine _ PROPN NNP _ 4 conj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 the _ DET DT _ 14 det _ _ 12 state _ NOUN NN _ 14 compound _ _ 13 oil _ NOUN NN _ 14 compound _ _ 14 companies _ NOUN NNS _ 4 appos _ _ 15 of _ ADP IN _ 16 case _ _ 16 Italy _ PROPN NNP _ 14 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 France _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 respectively _ ADV RB _ 14 advmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 submitted _ VERB VBD _ 0 root _ _ 23 an _ DET DT _ 24 det _ _ 24 offer _ NOUN NN _ 22 dobj _ _ 25 to _ PART TO _ 26 mark _ _ 26 buy _ VERB VB _ 24 acl _ _ 27 Gatoil _ PROPN NNP _ 29 compound _ _ 28 Suisse _ PROPN NNP _ 29 compound _ _ 29 S.A _ PROPN NNP _ 26 dobj _ _ 30 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 price _ NOUN NN _ 5 nsubjpass _ _ 3 was _ AUX VBD _ 5 auxpass _ _ 4 n't _ PART RB _ 5 neg _ _ 5 disclosed _ VERB VBD _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Gatoil _ PROPN NNP _ 2 nmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 the _ DET DT _ 10 det _ _ 8 Swiss _ PROPN NNP _ 10 compound _ _ 9 oil _ NOUN NN _ 10 compound _ _ 10 concern _ NOUN NN _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 examining _ VERB VBG _ 5 ccomp _ _ 13 the _ DET DT _ 14 det _ _ 14 offer _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 16 punct _ _ 16 submitted _ VERB VBD _ 14 dep _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 along _ ADP IN _ 24 case _ _ 21 with _ ADP IN _ 24 case _ _ 22 two _ NUM CD _ 24 nummod _ _ 23 other _ ADJ JJ _ 24 amod _ _ 24 offers _ NOUN NNS _ 14 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 also _ ADV RB _ 27 advmod _ _ 27 submitted _ VERB VBN _ 24 acl _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 week _ NOUN NN _ 27 nmod:tmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Those _ DET DT _ 3 det _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 offers _ NOUN NNS _ 5 nsubj _ _ 4 were _ VERB VBD _ 5 cop _ _ 5 private _ ADJ JJ _ 0 root _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 the _ DET DT _ 8 det _ _ 8 spokesman _ NOUN NN _ 9 nsubj _ _ 9 refused _ VERB VBD _ 5 conj _ _ 10 to _ PART TO _ 11 mark _ _ 11 identify _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 14 det _ _ 13 bidding _ VERB VBG _ 14 amod _ _ 14 companies _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 4 nsubj _ _ 3 further _ ADV RBR _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 at _ ADP IN _ 7 case _ _ 7 least _ ADJ JJS _ 8 nmod:npmod _ _ 8 two _ NUM CD _ 10 nummod _ _ 9 more _ ADJ JJR _ 8 advmod _ _ 10 offers _ NOUN NNS _ 12 nsubjpass _ _ 11 are _ AUX VBP _ 12 auxpass _ _ 12 expected _ VERB VBN _ 4 ccomp _ _ 13 from _ ADP IN _ 15 case _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 companies _ NOUN NNS _ 12 nmod _ _ 16 within _ ADP IN _ 18 case _ _ 17 two _ NUM CD _ 18 nummod _ _ 18 weeks _ NOUN NNS _ 12 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Gatoil _ PROPN NNP _ 2 compound _ _ 2 Suisse _ PROPN NNP _ 3 nsubj _ _ 3 owns _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 6 det _ _ 5 oil _ NOUN NN _ 6 compound _ _ 6 refinery _ NOUN NN _ 3 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 Switzerland _ PROPN NNP _ 6 nmod _ _ 9 with _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 capacity _ NOUN NN _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 70,000 _ NUM CD _ 14 nummod _ _ 14 barrels _ NOUN NNS _ 11 nmod _ _ 15 a _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 14 nmod:npmod _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 along _ ADP IN _ 21 case _ _ 19 with _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 network _ NOUN NN _ 3 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 gasoline _ NOUN NN _ 25 compound _ _ 24 retailing _ VERB VBG _ 25 amod _ _ 25 outlets _ NOUN NNS _ 21 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 7 mark _ _ 2 Friday _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 plunging _ VERB VBG _ 6 amod _ _ 5 stock _ NOUN NN _ 6 compound _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 prompted _ VERB VBD _ 34 advcl _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 fears _ NOUN NNS _ 7 dobj _ _ 10 about _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 12 det _ _ 12 economy _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 prospects _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 34 punct _ _ 16 a _ DET DT _ 18 det _ _ 17 little-known _ ADJ JJ _ 18 amod _ _ 18 indicator _ NOUN NN _ 34 nsubj _ _ 19 that _ PRON WDT _ 22 nsubj _ _ 20 has _ AUX VBZ _ 22 aux _ _ 21 faithfully _ ADV RB _ 22 advmod _ _ 22 foreshadowed _ VERB VBN _ 18 acl:relcl _ _ 23 the _ DET DT _ 24 det _ _ 24 economy _ NOUN NN _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 ups _ NOUN NNS _ 22 dobj _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 downs _ NOUN NNS _ 26 conj _ _ 29 by _ ADP IN _ 33 case _ _ 30 exceptionally _ ADV RB _ 31 advmod _ _ 31 long _ ADJ JJ _ 33 amod _ _ 32 lead _ NOUN NN _ 33 compound _ _ 33 times _ NOUN NNS _ 22 nmod _ _ 34 points _ VERB VBZ _ 0 root _ _ 35 to _ ADP TO _ 38 case _ _ 36 a _ DET DT _ 38 det _ _ 37 sustained _ ADJ JJ _ 38 amod _ _ 38 rise _ NOUN NN _ 34 nmod _ _ 39 in _ ADP IN _ 42 case _ _ 40 overall _ ADJ JJ _ 42 amod _ _ 41 business _ NOUN NN _ 42 compound _ _ 42 activity _ NOUN NN _ 38 nmod _ _ 43 . _ PUNCT . _ 34 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 barometer _ NOUN NN _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 developed _ VERB VBN _ 2 acl _ _ 5 by _ ADP IN _ 6 case _ _ 6 analysts _ NOUN NNS _ 4 nmod _ _ 7 at _ ADP IN _ 11 case _ _ 8 Columbia _ PROPN NNP _ 9 compound _ _ 9 University _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 Center _ PROPN NNP _ 6 nmod _ _ 12 for _ ADP IN _ 16 case _ _ 13 International _ PROPN NNP _ 16 compound _ _ 14 Business _ PROPN NNP _ 16 compound _ _ 15 Cycle _ PROPN NNP _ 16 compound _ _ 16 Research _ PROPN NNP _ 11 nmod _ _ 17 here _ ADV RB _ 4 advmod _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 reached _ VERB VBD _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 record _ NOUN NN _ 19 dobj _ _ 22 high _ ADJ JJ _ 21 amod _ _ 23 of _ ADP IN _ 24 case _ _ 24 223.0 _ NUM CD _ 21 nmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 August _ PROPN NNP _ 19 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 the _ DET DT _ 30 det _ _ 29 latest _ ADJ JJS _ 30 amod _ _ 30 month _ NOUN NN _ 26 appos _ _ 31 available _ ADJ JJ _ 30 amod _ _ 32 , _ PUNCT , _ 26 punct _ _ 33 and _ CONJ CC _ 19 cc _ _ 34 the _ DET DT _ 36 det _ _ 35 Columbia _ PROPN NNP _ 36 compound _ _ 36 researchers _ NOUN NNS _ 37 nsubj _ _ 37 estimate _ VERB VBP _ 19 conj _ _ 38 that _ SCONJ IN _ 41 mark _ _ 39 it _ PRON PRP _ 41 nsubj _ _ 40 has _ AUX VBZ _ 41 aux _ _ 41 moved _ VERB VBN _ 37 ccomp _ _ 42 even _ ADV RB _ 43 advmod _ _ 43 higher _ ADV RBR _ 41 advmod _ _ 44 since _ ADP IN _ 45 case _ _ 45 then _ ADV RB _ 41 nmod _ _ 46 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 latest _ ADJ JJS _ 3 amod _ _ 3 reading _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 223.0 _ NUM CD _ 3 nmod _ _ 6 was _ VERB VBD _ 0 root _ _ 7 up _ ADV RB _ 6 advmod _ _ 8 from _ ADP IN _ 9 case _ _ 9 222.3 _ NUM CD _ 7 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 July _ PROPN NNP _ 9 nmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 215.3 _ NUM CD _ 9 conj _ _ 14 as _ ADV RB _ 15 advmod _ _ 15 recently _ ADV RB _ 13 advmod _ _ 16 as _ ADP IN _ 17 case _ _ 17 March _ PROPN NNP _ 15 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 August _ PROPN NNP _ 3 compound _ _ 3 rise _ NOUN NN _ 4 nsubj _ _ 4 marked _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 9 det _ _ 6 fifth _ ADJ JJ _ 9 amod _ _ 7 straight _ ADJ JJ _ 9 amod _ _ 8 monthly _ ADJ JJ _ 9 amod _ _ 9 gain _ NOUN NN _ 4 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 indicator _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 uses _ VERB VBZ _ 12 acl:relcl _ _ 16 the _ DET DT _ 18 det _ _ 17 1967 _ NUM CD _ 18 nummod _ _ 18 average _ NOUN NN _ 15 dobj _ _ 19 as _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 base _ NOUN NN _ 15 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 100 _ NUM CD _ 21 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 contrast _ NOUN NN _ 21 nmod _ _ 3 , _ PUNCT , _ 21 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 Commerce _ PROPN NNP _ 6 compound _ _ 6 Department _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 widely _ ADV RB _ 9 advmod _ _ 9 followed _ VERB VBN _ 10 amod _ _ 10 index _ NOUN NN _ 21 nsubj _ _ 11 of _ ADP IN _ 13 case _ _ 12 leading _ VERB VBG _ 13 amod _ _ 13 indicators _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 21 punct _ _ 15 while _ SCONJ IN _ 16 mark _ _ 16 up _ ADV RB _ 21 dep _ _ 17 in _ ADP IN _ 18 case _ _ 18 August _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 fallen _ VERB VBN _ 0 root _ _ 22 repeatedly _ ADV RB _ 21 advmod _ _ 23 since _ SCONJ IN _ 24 mark _ _ 24 reaching _ VERB VBG _ 21 advcl _ _ 25 a _ DET DT _ 26 det _ _ 26 high _ ADJ JJ _ 24 dobj _ _ 27 early _ ADV RB _ 29 advmod _ _ 28 this _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 24 nmod:tmod _ _ 30 . _ PUNCT . _ 21 punct _ _ 1 Its _ PRON PRP$ _ 3 nmod:poss _ _ 2 ragged _ ADJ JJ _ 3 amod _ _ 3 behavior _ NOUN NN _ 9 nsubj _ _ 4 through _ ADP IN _ 5 case _ _ 5 much _ ADJ JJ _ 3 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 1989 _ NUM CD _ 5 nmod _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 prompted _ VERB VBN _ 0 root _ _ 10 some _ DET DT _ 11 det _ _ 11 forecasters _ NOUN NNS _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 anticipate _ VERB VB _ 9 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 start _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 new _ ADJ JJ _ 19 amod _ _ 19 recession _ NOUN NN _ 15 nmod _ _ 20 perhaps _ ADV RB _ 24 advmod _ _ 21 before _ ADP IN _ 24 case _ _ 22 year _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 end _ NOUN NN _ 13 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 far _ ADV RB _ 4 advmod _ _ 4 stronger _ ADJ JJR _ 5 amod _ _ 5 showing _ NOUN NN _ 11 nsubj _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Columbia _ PROPN NNP _ 9 compound _ _ 9 index _ NOUN NN _ 5 nmod _ _ 10 `` _ PUNCT `` _ 11 punct _ _ 11 makes _ VERB VBZ _ 21 dep _ _ 12 a _ DET DT _ 13 det _ _ 13 recession _ NOUN NN _ 18 nsubj _ _ 14 any _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 13 nmod:tmod _ _ 16 soon _ ADV RB _ 15 advmod _ _ 17 highly _ ADV RB _ 18 advmod _ _ 18 unlikely _ ADJ JJ _ 11 xcomp _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 '' _ PUNCT '' _ 11 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 Geoffrey _ PROPN NNP _ 24 compound _ _ 23 H. _ PROPN NNP _ 24 compound _ _ 24 Moore _ PROPN NNP _ 21 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 the _ DET DT _ 27 det _ _ 27 director _ NOUN NN _ 24 appos _ _ 28 of _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Columbia _ PROPN NNP _ 31 compound _ _ 31 facility _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 21 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 leading _ VERB VBG _ 3 amod _ _ 3 authority _ NOUN NN _ 14 ccomp _ _ 4 on _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 business _ NOUN NN _ 7 compound _ _ 7 cycle _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Moore _ PROPN NNP _ 14 nsubj _ _ 11 also _ ADV RB _ 14 advmod _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 a _ DET DT _ 14 det _ _ 14 member _ NOUN NN _ 0 root _ _ 15 of _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 Business _ PROPN NNP _ 20 compound _ _ 18 Cycle _ PROPN NNP _ 20 compound _ _ 19 Dating _ PROPN NNP _ 20 compound _ _ 20 Group _ PROPN NNP _ 14 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 panel _ NOUN NN _ 20 appos _ _ 24 of _ ADP IN _ 26 case _ _ 25 private _ ADJ JJ _ 26 amod _ _ 26 economists _ NOUN NNS _ 23 nmod _ _ 27 that _ PRON WDT _ 28 nsubj _ _ 28 decides _ VERB VBZ _ 23 acl:relcl _ _ 29 for _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 government _ NOUN NN _ 28 nmod _ _ 32 when _ ADV WRB _ 36 advmod _ _ 33 expansions _ NOUN NNS _ 36 nsubj _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 recessions _ NOUN NNS _ 33 conj _ _ 36 begin _ VERB VBP _ 28 advcl _ _ 37 and _ CONJ CC _ 36 cc _ _ 38 end _ VERB VBP _ 36 conj _ _ 39 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 4 nsubj _ _ 3 normally _ ADV RB _ 4 advmod _ _ 4 convenes _ VERB VBZ _ 0 root _ _ 5 only _ ADV RB _ 15 advmod _ _ 6 when _ ADV WRB _ 15 advmod _ _ 7 a _ DET DT _ 8 det _ _ 8 change _ NOUN NN _ 15 nsubj _ _ 9 in _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 general _ ADJ JJ _ 14 amod _ _ 14 course _ NOUN NN _ 8 nmod _ _ 15 seems _ VERB VBZ _ 4 advcl _ _ 16 likely _ ADV RB _ 15 xcomp _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 No _ DET DT _ 3 neg _ _ 3 meeting _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 scheduled _ VERB VBN _ 21 dep _ _ 6 because _ SCONJ IN _ 9 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 expansion _ NOUN NN _ 9 nsubj _ _ 9 shows _ VERB VBZ _ 5 advcl _ _ 10 no _ DET DT _ 11 neg _ _ 11 sign _ NOUN NN _ 9 dobj _ _ 12 of _ SCONJ IN _ 13 mark _ _ 13 going _ VERB VBG _ 11 acl _ _ 14 off _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 tracks _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 '' _ PUNCT '' _ 5 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Moore _ PROPN NNP _ 21 nsubj _ _ 21 reports _ VERB VBZ _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 Based _ VERB VBN _ 20 advcl _ _ 2 largely _ ADV RB _ 1 advmod _ _ 3 on _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 recent _ ADJ JJ _ 6 amod _ _ 6 strength _ NOUN NN _ 1 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 index _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 called _ VERB VBN _ 9 acl _ _ 12 the _ DET DT _ 15 det _ _ 13 long _ ADJ JJ _ 15 amod _ _ 14 leading _ VERB VBG _ 15 amod _ _ 15 indicator _ NOUN NN _ 11 xcomp _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 Columbia _ PROPN NNP _ 19 compound _ _ 19 analysts _ NOUN NNS _ 20 nsubj _ _ 20 foresee _ VERB VBP _ 0 root _ _ 21 uninterrupted _ ADJ JJ _ 22 amod _ _ 22 economic _ ADJ JJ _ 23 amod _ _ 23 growth _ NOUN NN _ 20 dobj _ _ 24 through _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 rest _ NOUN NN _ 20 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 this _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 26 nmod _ _ 30 and _ CONJ CC _ 26 cc _ _ 31 next _ ADJ JJ _ 32 amod _ _ 32 year _ NOUN NN _ 26 conj _ _ 33 as _ ADV RB _ 32 advmod _ _ 34 well _ ADV RB _ 33 mwe _ _ 35 . _ PUNCT . _ 20 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 expect _ VERB VBP _ 0 root _ _ 3 a _ DET DT _ 6 det _ _ 4 2.6 _ NUM CD _ 5 compound _ _ 5 % _ SYM NN _ 6 amod _ _ 6 rise _ NOUN NN _ 2 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 1990 _ NUM CD _ 6 nmod _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 gross _ ADJ JJ _ 13 amod _ _ 12 national _ ADJ JJ _ 13 amod _ _ 13 product _ NOUN NN _ 6 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 after _ ADP IN _ 16 case _ _ 16 adjustment _ NOUN NN _ 2 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 inflation _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Underlying _ VERB VBG _ 0 root _ _ 2 this _ DET DT _ 3 det _ _ 3 optimism _ NOUN NN _ 1 dobj _ _ 4 is _ VERB VBZ _ 1 aux _ _ 5 the _ DET DT _ 6 det _ _ 6 index _ NOUN NN _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 longstanding _ ADJ JJ _ 9 amod _ _ 9 ability _ NOUN NN _ 1 nsubj _ _ 10 to _ PART TO _ 11 mark _ _ 11 signal _ VERB VB _ 9 acl _ _ 12 recessions _ NOUN NNS _ 11 dobj _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 recoveries _ NOUN NNS _ 12 conj _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 as _ SCONJ IN _ 20 mark _ _ 17 the _ DET DT _ 18 det _ _ 18 case _ NOUN NN _ 20 nsubj _ _ 19 may _ AUX MD _ 20 aux _ _ 20 be _ VERB VB _ 11 parataxis _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 by _ ADP IN _ 25 case _ _ 23 substantially _ ADV RB _ 24 advmod _ _ 24 greater _ ADJ JJR _ 25 amod _ _ 25 periods _ NOUN NNS _ 11 nmod _ _ 26 than _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Commerce _ PROPN NNP _ 29 compound _ _ 29 Department _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 index _ NOUN NN _ 25 nmod _ _ 32 of _ ADP IN _ 34 case _ _ 33 leading _ VERB VBG _ 34 amod _ _ 34 indicators _ NOUN NNS _ 31 nmod _ _ 35 . _ PUNCT . _ 1 punct _ _ 1 Over _ ADP IN _ 7 case _ _ 2 the _ DET DT _ 7 det _ _ 3 full _ ADJ JJ _ 7 amod _ _ 4 post-World _ PROPN NNP _ 7 compound _ _ 5 War _ PROPN NNP _ 7 compound _ _ 6 II _ PROPN NNP _ 7 compound _ _ 7 era _ NOUN NN _ 18 nmod _ _ 8 , _ PUNCT , _ 18 punct _ _ 9 the _ DET DT _ 11 det _ _ 10 Columbia _ PROPN NNP _ 11 compound _ _ 11 index _ NOUN NN _ 18 nsubj _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 on _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 average _ NOUN NN _ 18 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 has _ AUX VBZ _ 18 aux _ _ 18 entered _ VERB VBN _ 0 root _ _ 19 sustained _ VERB VBN _ 20 amod _ _ 20 declines _ NOUN NNS _ 18 dobj _ _ 21 14 _ NUM CD _ 22 nummod _ _ 22 months _ NOUN NNS _ 18 nmod:tmod _ _ 23 before _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 onset _ NOUN NN _ 22 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 recessions _ NOUN NNS _ 25 nmod _ _ 28 and _ CONJ CC _ 18 cc _ _ 29 turned _ VERB VBD _ 18 conj _ _ 30 up _ ADP RP _ 29 compound:prt _ _ 31 eight _ NUM CD _ 32 nummod _ _ 32 months _ NOUN NNS _ 29 nmod:tmod _ _ 33 before _ ADP IN _ 34 case _ _ 34 recoveries _ NOUN NNS _ 32 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 comparable _ ADJ JJ _ 4 amod _ _ 3 lead _ NOUN NN _ 4 compound _ _ 4 times _ NOUN NNS _ 19 nsubj _ _ 5 for _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Commerce _ PROPN NNP _ 8 compound _ _ 8 index _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 whose _ PRON WP$ _ 11 nmod:poss _ _ 11 components _ NOUN NNS _ 12 nsubj _ _ 12 include _ VERB VBP _ 8 acl:relcl _ _ 13 the _ DET DT _ 15 det _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 are _ VERB VBP _ 19 cop _ _ 18 far _ ADV RB _ 19 advmod _ _ 19 shorter _ ADJ JJR _ 0 root _ _ 20 -- _ PUNCT : _ 19 punct _ _ 21 10 _ NUM CD _ 22 nummod _ _ 22 months _ NOUN NNS _ 19 nmod:tmod _ _ 23 before _ ADP IN _ 24 case _ _ 24 recessions _ NOUN NNS _ 22 nmod _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 only _ ADV RB _ 28 advmod _ _ 27 three _ NUM CD _ 28 nummod _ _ 28 months _ NOUN NNS _ 22 conj _ _ 29 before _ ADP IN _ 30 case _ _ 30 recoveries _ NOUN NNS _ 28 nmod _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Columbia _ PROPN NNP _ 3 compound _ _ 3 economists _ NOUN NNS _ 6 nsubj _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 reconstructed _ VERB VBN _ 0 root _ _ 7 how _ ADV WRB _ 14 advmod _ _ 8 the _ DET DT _ 11 det _ _ 9 long _ ADJ JJ _ 11 amod _ _ 10 leading _ VERB VBG _ 11 amod _ _ 11 index _ NOUN NN _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 have _ AUX VB _ 14 aux _ _ 14 behaved _ VERB VBN _ 6 ccomp _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 had _ AUX VBD _ 18 aux _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 existed _ VERB VBD _ 14 advcl _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 in _ ADP IN _ 21 case _ _ 21 1929 _ NUM CD _ 14 dep _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 before _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 stock _ NOUN NN _ 27 compound _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 crash _ NOUN NN _ 14 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 October _ PROPN NNP _ 27 nmod _ _ 30 that _ PRON WDT _ 31 nsubj _ _ 31 ushered _ VERB VBD _ 27 acl:relcl _ _ 32 in _ ADP RP _ 31 compound:prt _ _ 33 the _ DET DT _ 35 det _ _ 34 Great _ PROPN NNP _ 35 compound _ _ 35 Depression _ PROPN NNP _ 31 dobj _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 indicator _ NOUN NN _ 3 nsubj _ _ 3 reached _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 peak _ NOUN NN _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 January _ PROPN NNP _ 3 nmod _ _ 8 1929 _ NUM CD _ 7 nummod _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 then _ ADV RB _ 11 advmod _ _ 11 fell _ VERB VBD _ 3 conj _ _ 12 steadily _ ADV RB _ 11 advmod _ _ 13 up _ ADP IN _ 14 case _ _ 14 to _ ADP TO _ 18 nmod _ _ 15 and _ CONJ CC _ 18 cc _ _ 16 through _ ADP IN _ 18 conj _ _ 17 the _ DET DT _ 18 det _ _ 18 crash _ NOUN NN _ 11 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 It _ PRON PRP _ 7 nsubj _ _ 3 was _ VERB VBD _ 7 cop _ _ 4 an _ DET DT _ 7 det _ _ 5 entirely _ ADV RB _ 7 advmod _ _ 6 different _ ADJ JJ _ 7 amod _ _ 7 pattern _ NOUN NN _ 18 dep _ _ 8 from _ SCONJ IN _ 12 mark _ _ 9 what _ PRON WP _ 12 dobj _ _ 10 we _ PRON PRP _ 12 nsubj _ _ 11 're _ AUX VBP _ 12 aux _ _ 12 seeing _ VERB VBG _ 7 acl _ _ 13 now _ ADV RB _ 12 advmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 '' _ PUNCT '' _ 7 punct _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Moore _ PROPN NNP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 source _ NOUN NN _ 16 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 recent _ ADJ JJ _ 7 amod _ _ 7 strength _ NOUN NN _ 3 nmod _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 long _ ADJ JJ _ 12 amod _ _ 11 leading _ VERB VBG _ 12 amod _ _ 12 indicator _ NOUN NN _ 7 nmod _ _ 13 has _ AUX VBZ _ 16 aux _ _ 14 been _ VERB VBN _ 16 cop _ _ 15 the _ DET DT _ 16 det _ _ 16 performance _ NOUN NN _ 0 root _ _ 17 of _ ADP IN _ 23 case _ _ 18 the _ DET DT _ 23 det _ _ 19 Dow _ PROPN NNP _ 23 compound _ _ 20 Jones _ PROPN NNP _ 23 compound _ _ 21 corporate _ ADJ JJ _ 23 amod _ _ 22 bond-price _ ADJ JJ _ 23 amod _ _ 23 index _ NOUN NN _ 16 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 which _ PRON WDT _ 29 nsubj _ _ 26 is _ VERB VBZ _ 29 cop _ _ 27 not _ PART RB _ 29 neg _ _ 28 a _ DET DT _ 29 det _ _ 29 part _ NOUN NN _ 23 acl:relcl _ _ 30 of _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 Commerce _ PROPN NNP _ 33 compound _ _ 33 index _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 16 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 August _ PROPN NNP _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 bond _ NOUN NN _ 6 compound _ _ 6 measure _ NOUN NN _ 12 nsubj _ _ 7 was _ VERB VBD _ 12 cop _ _ 8 at _ ADP IN _ 12 case _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 highest _ ADJ JJS _ 11 dep _ _ 11 monthly _ ADJ JJ _ 12 amod _ _ 12 average _ NOUN NN _ 0 root _ _ 13 since _ ADP IN _ 15 case _ _ 14 early _ ADJ JJ _ 15 amod _ _ 15 1987 _ NUM CD _ 12 nmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 last _ ADJ JJ _ 5 amod _ _ 5 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 while _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 11 nsubj _ _ 11 sagged _ VERB VBD _ 3 advcl _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 components _ NOUN NNS _ 8 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 long _ ADJ JJ _ 7 amod _ _ 6 leading _ VERB VBG _ 7 amod _ _ 7 indicator _ NOUN NN _ 2 nmod _ _ 8 include _ VERB VBP _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 ratio _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 prices _ NOUN NNS _ 10 nmod _ _ 13 to _ ADP TO _ 16 case _ _ 14 unit _ NOUN NN _ 16 compound _ _ 15 labor _ NOUN NN _ 16 compound _ _ 16 costs _ NOUN NNS _ 12 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 manufacturing _ VERB VBG _ 19 amod _ _ 19 industries _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 10 punct _ _ 21 the _ DET DT _ 23 det _ _ 22 M2 _ NUM CD _ 23 nummod _ _ 23 version _ NOUN NN _ 10 conj _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 money _ NOUN NN _ 27 compound _ _ 27 supply _ NOUN NN _ 23 nmod _ _ 28 , _ PUNCT , _ 23 punct _ _ 29 adjusted _ VERB VBN _ 23 acl _ _ 30 for _ ADP IN _ 31 case _ _ 31 inflation _ NOUN NN _ 29 nmod _ _ 32 , _ PUNCT , _ 10 punct _ _ 33 and _ CONJ CC _ 10 cc _ _ 34 the _ DET DT _ 35 det _ _ 35 volume _ NOUN NN _ 10 conj _ _ 36 of _ ADP IN _ 39 case _ _ 37 new _ ADJ JJ _ 39 amod _ _ 38 home-building _ ADJ JJ _ 39 amod _ _ 39 permits _ NOUN NNS _ 35 nmod _ _ 40 . _ PUNCT . _ 8 punct _ _ 1 Notably _ ADV RB _ 2 advmod _ _ 2 absent _ ADJ JJ _ 7 dep _ _ 3 from _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Columbia _ PROPN NNP _ 6 compound _ _ 6 index _ NOUN NN _ 2 nmod _ _ 7 is _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 7 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 15 dobj _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Moore _ PROPN NNP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 10 acl:relcl _ _ 16 `` _ PUNCT `` _ 24 punct _ _ 17 is _ VERB VBZ _ 24 cop _ _ 18 simply _ ADV RB _ 24 advmod _ _ 19 no _ DET DT _ 20 neg _ _ 20 longer _ ADV RBR _ 24 nmod:tmod _ _ 21 such _ ADJ JJ _ 24 amod _ _ 22 a _ DET DT _ 24 det _ _ 23 good _ ADJ JJ _ 24 amod _ _ 24 indicator _ NOUN NN _ 15 ccomp _ _ 25 of _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 27 det _ _ 27 economy _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 long-range _ ADJ JJ _ 30 amod _ _ 30 prospects _ NOUN NNS _ 24 nmod _ _ 31 , _ PUNCT , _ 24 punct _ _ 32 though _ SCONJ IN _ 36 mark _ _ 33 it _ PRON PRP _ 36 nsubj _ _ 34 still _ ADV RB _ 36 advmod _ _ 35 is _ VERB VBZ _ 36 cop _ _ 36 useful _ ADJ JJ _ 24 advcl _ _ 37 for _ SCONJ IN _ 38 mark _ _ 38 anticipating _ VERB VBG _ 36 advcl _ _ 39 some _ DET DT _ 41 det _ _ 40 short-run _ ADJ JJ _ 41 amod _ _ 41 twists _ NOUN NNS _ 38 dobj _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 turns _ NOUN NNS _ 41 conj _ _ 44 . _ PUNCT . _ 7 punct _ _ 45 '' _ PUNCT '' _ 7 punct _ _ 1 As _ ADV RB _ 2 advmod _ _ 2 recently _ ADV RB _ 25 advmod _ _ 3 as _ ADP IN _ 4 case _ _ 4 1975 _ NUM CD _ 2 nmod _ _ 5 , _ PUNCT , _ 25 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 25 nsubjpass _ _ 9 -- _ PUNCT : _ 11 punct _ _ 10 as _ SCONJ IN _ 11 mark _ _ 11 reflected _ VERB VBN _ 8 dep _ _ 12 in _ ADP IN _ 18 case _ _ 13 the _ DET DT _ 18 det _ _ 14 Standard _ PROPN NNP _ 18 nmod:poss _ _ 15 & _ CONJ CC _ 14 cc _ _ 16 Poor _ PROPN NNP _ 14 conj _ _ 17 's _ PART POS _ 14 case _ _ 18 index _ NOUN NN _ 11 nmod _ _ 19 of _ ADP IN _ 22 case _ _ 20 500 _ NUM CD _ 22 nummod _ _ 21 common _ ADJ JJ _ 22 amod _ _ 22 stocks _ NOUN NNS _ 18 nmod _ _ 23 -- _ PUNCT : _ 11 punct _ _ 24 was _ AUX VBD _ 25 auxpass _ _ 25 rated _ VERB VBN _ 0 root _ _ 26 by _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 National _ PROPN NNP _ 29 compound _ _ 29 Bureau _ PROPN NNP _ 25 nmod _ _ 30 of _ ADP IN _ 32 case _ _ 31 Economic _ PROPN NNP _ 32 compound _ _ 32 Research _ PROPN NNP _ 29 nmod _ _ 33 as _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 best _ ADJ JJS _ 25 nmod _ _ 36 of _ ADP IN _ 40 case _ _ 37 the _ DET DT _ 40 det _ _ 38 12 _ NUM CD _ 40 nummod _ _ 39 leading _ VERB VBG _ 40 amod _ _ 40 indicators _ NOUN NNS _ 35 nmod _ _ 41 that _ PRON WDT _ 43 nsubj _ _ 42 then _ ADV RB _ 43 advmod _ _ 43 made _ VERB VBD _ 40 acl:relcl _ _ 44 up _ ADP RP _ 43 compound:prt _ _ 45 the _ DET DT _ 47 det _ _ 46 Commerce _ PROPN NNP _ 47 compound _ _ 47 index _ NOUN NN _ 43 dobj _ _ 48 . _ PUNCT . _ 25 punct _ _ 1 It _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 assigned _ VERB VBN _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 mark _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 80 _ NUM CD _ 5 nmod _ _ 8 out _ ADP IN _ 12 case _ _ 9 of _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 possible _ ADJ JJ _ 12 amod _ _ 12 100 _ NUM CD _ 7 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 compared _ VERB VBN _ 16 case _ _ 15 with _ ADP IN _ 16 case _ _ 16 scores _ NOUN NNS _ 3 advcl _ _ 17 ranging _ VERB VBG _ 16 acl _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 low _ ADJ JJ _ 17 advmod _ _ 20 as _ ADP IN _ 21 case _ _ 21 69 _ NUM CD _ 19 nmod _ _ 22 for _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 other _ ADJ JJ _ 25 amod _ _ 25 components _ NOUN NNS _ 16 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 lost _ VERB VBN _ 0 root _ _ 6 some _ DET DT _ 8 det _ _ 7 precursory _ ADJ JJ _ 8 amod _ _ 8 power _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 analysts _ NOUN NNS _ 15 nsubj _ _ 11 at _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Columbia _ PROPN NNP _ 14 compound _ _ 14 center _ NOUN NN _ 10 nmod _ _ 15 claim _ NOUN NN _ 5 parataxis _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 because _ ADP IN _ 21 case _ _ 18 of _ ADP IN _ 17 mwe _ _ 19 the _ DET DT _ 21 det _ _ 20 growing _ VERB VBG _ 21 amod _ _ 21 impact _ NOUN NN _ 5 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 international _ ADJ JJ _ 24 amod _ _ 24 developments _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 Stocks _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 become _ VERB VBN _ 20 dep _ _ 5 more _ ADV RBR _ 6 advmod _ _ 6 sensitive _ ADJ JJ _ 4 xcomp _ _ 7 to _ ADP TO _ 8 case _ _ 8 factors _ NOUN NNS _ 6 nmod _ _ 9 not _ PART RB _ 11 neg _ _ 10 directly _ ADV RB _ 11 advmod _ _ 11 tied _ VERB VBN _ 8 acl _ _ 12 to _ ADP TO _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 domestic _ ADJ JJ _ 15 amod _ _ 15 economy _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 18 Mr. _ PROPN NNP _ 19 compound _ _ 19 Moore _ PROPN NNP _ 20 nsubj _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 citing _ VERB VBG _ 20 xcomp _ _ 23 the _ DET DT _ 25 det _ _ 24 exchange _ NOUN NN _ 25 compound _ _ 25 rate _ NOUN NN _ 22 dobj _ _ 26 for _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 dollar _ NOUN NN _ 25 nmod _ _ 29 on _ ADP IN _ 31 case _ _ 30 currency _ NOUN NN _ 31 compound _ _ 31 markets _ NOUN NNS _ 25 nmod _ _ 32 , _ PUNCT , _ 25 punct _ _ 33 the _ DET DT _ 35 det _ _ 34 foreign-trade _ ADJ JJ _ 35 amod _ _ 35 balance _ NOUN NN _ 25 conj _ _ 36 and _ CONJ CC _ 25 cc _ _ 37 inflows _ NOUN NNS _ 25 conj _ _ 38 of _ ADP IN _ 40 case _ _ 39 foreign _ ADJ JJ _ 40 amod _ _ 40 capital _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 feels _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 15 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 rise _ NOUN NN _ 15 nsubj _ _ 7 of _ ADP IN _ 10 case _ _ 8 such _ ADJ JJ _ 9 amod _ _ 9 computer-based _ ADJ JJ _ 10 amod _ _ 10 practices _ NOUN NNS _ 6 nmod _ _ 11 as _ ADP IN _ 13 case _ _ 12 program _ NOUN NN _ 13 compound _ _ 13 trading _ NOUN NN _ 10 nmod _ _ 14 has _ AUX VBZ _ 15 aux _ _ 15 diminished _ VERB VBN _ 3 ccomp _ _ 16 the _ DET DT _ 18 det _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 relevancy _ NOUN NN _ 15 dobj _ _ 21 to _ ADP TO _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 economic _ ADJ JJ _ 24 amod _ _ 24 outlook _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 BSN _ PROPN NNP _ 2 compound _ _ 2 S.A. _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 8 det _ _ 5 leading _ VERB VBG _ 8 amod _ _ 6 French _ ADJ JJ _ 8 amod _ _ 7 food _ NOUN NN _ 8 compound _ _ 8 group _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 agreed _ VERB VBD _ 10 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 acquire _ VERB VB _ 12 xcomp _ _ 15 Birkel _ PROPN NNP _ 18 compound _ _ 16 G.m.b _ PROPN NNP _ 18 compound _ _ 17 . _ PUNCT . _ 18 punct _ _ 18 H. _ PROPN NNP _ 14 dobj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 a _ DET DT _ 24 det _ _ 21 West _ ADJ JJ _ 22 amod _ _ 22 German _ ADJ JJ _ 24 amod _ _ 23 pasta _ NOUN NN _ 24 compound _ _ 24 maker _ NOUN NN _ 18 appos _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 value _ NOUN NN _ 8 nsubjpass _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 acquisition _ NOUN NN _ 2 nmod _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 n't _ PART RB _ 8 neg _ _ 8 disclosed _ VERB VBD _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 in _ ADP IN _ 5 case _ _ 5 line _ NOUN NN _ 0 root _ _ 6 with _ ADP IN _ 9 case _ _ 7 BSN _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 strategy _ NOUN NN _ 5 nmod _ _ 10 of _ SCONJ IN _ 12 mark _ _ 11 gradually _ ADV RB _ 12 advmod _ _ 12 building _ VERB VBG _ 9 acl _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 share _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 European _ ADJ JJ _ 19 amod _ _ 18 pasta _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 14 nmod _ _ 20 through _ ADP IN _ 22 case _ _ 21 external _ ADJ JJ _ 22 amod _ _ 22 growth _ NOUN NN _ 12 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 BSN _ PROPN NNP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 initially _ ADV RB _ 4 advmod _ _ 4 acquire _ VERB VB _ 0 root _ _ 5 a _ DET DT _ 8 det _ _ 6 15 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 8 amod _ _ 8 interest _ NOUN NN _ 4 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Birkel _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 15 det _ _ 13 closely _ ADV RB _ 14 advmod _ _ 14 held _ VERB VBN _ 15 amod _ _ 15 concern _ NOUN NN _ 10 appos _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 4 nsubj _ _ 4 has _ VERB VBZ _ 31 dep _ _ 5 an _ DET DT _ 6 det _ _ 6 agreement _ NOUN NN _ 4 dobj _ _ 7 giving _ VERB VBG _ 6 acl _ _ 8 it _ PRON PRP _ 7 iobj _ _ 9 the _ DET DT _ 10 det _ _ 10 right _ NOUN NN _ 7 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 buy _ VERB VB _ 10 acl _ _ 13 all _ DET DT _ 15 det:predet _ _ 14 the _ DET DT _ 15 det _ _ 15 shares _ NOUN NNS _ 12 dobj _ _ 16 outstanding _ ADJ JJ _ 15 amod _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 and _ CONJ CC _ 4 cc _ _ 19 this _ PRON DT _ 22 nsubjpass _ _ 20 could _ AUX MD _ 22 aux _ _ 21 be _ AUX VB _ 22 auxpass _ _ 22 completed _ VERB VBN _ 4 conj _ _ 23 within _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 few _ ADJ JJ _ 26 amod _ _ 26 months _ NOUN NNS _ 22 nmod _ _ 27 , _ PUNCT , _ 4 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 BSN _ PROPN NNP _ 30 compound _ _ 30 spokeswoman _ NOUN NN _ 31 nsubj _ _ 31 said _ VERB VBD _ 0 root _ _ 32 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 takeover _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 submitted _ VERB VBN _ 15 ccomp _ _ 5 for _ ADP IN _ 6 case _ _ 6 approval _ NOUN NN _ 4 nmod _ _ 7 by _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 West _ ADJ JJ _ 10 amod _ _ 10 German _ ADJ JJ _ 12 amod _ _ 11 cartel _ NOUN NN _ 12 compound _ _ 12 office _ NOUN NN _ 4 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 BSN _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Birkel _ PROPN NNP _ 7 nsubj _ _ 2 is _ VERB VBZ _ 7 cop _ _ 3 West _ PROPN NNP _ 4 compound _ _ 4 Germany _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 second-biggest _ ADJ JJ _ 7 amod _ _ 7 producer _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 9 case _ _ 9 pasta _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 with _ ADP IN _ 12 case _ _ 12 sales _ NOUN NNS _ 7 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 250 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 16 nummod _ _ 16 marks _ NOUN NNS _ 12 nmod _ _ 17 -LRB- _ PUNCT -LRB- _ 18 punct _ _ 18 $ _ SYM $ _ 16 dep _ _ 19 133.4 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 -RRB- _ PUNCT -RRB- _ 18 punct _ _ 22 in _ ADP IN _ 23 case _ _ 23 1988 _ NUM CD _ 12 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 has _ VERB VBZ _ 0 root _ _ 3 750 _ NUM CD _ 4 nummod _ _ 4 workers _ NOUN NNS _ 2 dobj _ _ 5 at _ ADP IN _ 8 case _ _ 6 three _ NUM CD _ 8 nummod _ _ 7 production _ NOUN NN _ 8 compound _ _ 8 units _ NOUN NNS _ 2 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 southwest _ ADJ JJS _ 11 amod _ _ 11 Germany _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 and _ CONJ CC _ 2 cc _ _ 14 is _ VERB VBZ _ 19 cop _ _ 15 that _ DET DT _ 16 det _ _ 16 nation _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 leading _ VERB VBG _ 19 amod _ _ 19 producer _ NOUN NN _ 2 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 pasta _ NOUN NN _ 22 compound _ _ 22 sauces _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 acquisition _ NOUN NN _ 3 nsubj _ _ 3 strengthens _ VERB VBZ _ 0 root _ _ 4 BSN _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 position _ NOUN NN _ 3 dobj _ _ 7 in _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 European _ ADJ JJ _ 11 amod _ _ 10 pasta _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 5 nsubj _ _ 4 currently _ ADV RB _ 5 advmod _ _ 5 ranks _ VERB VBZ _ 0 root _ _ 6 second _ ADJ JJ _ 5 advmod _ _ 7 after _ ADP IN _ 9 case _ _ 8 Barilla _ PROPN NNP _ 9 compound _ _ 9 Group _ PROPN NNP _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 Italy _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 whose _ PRON WP$ _ 14 nmod:poss _ _ 14 sales _ NOUN NNS _ 20 nsubj _ _ 15 are _ VERB VBP _ 20 cop _ _ 16 chiefly _ ADV RB _ 20 advmod _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 Italian _ ADJ JJ _ 20 amod _ _ 20 market _ NOUN NN _ 9 appos _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Moody _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNP _ 5 compound _ _ 4 Service _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 reduced _ VERB VBD _ 6 ccomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 rating _ NOUN NN _ 8 dobj _ _ 11 on _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 281 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 of _ ADP IN _ 19 case _ _ 16 senior _ ADJ JJ _ 19 amod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 subordinated _ VERB VBN _ 16 conj _ _ 19 debt _ NOUN NN _ 12 nmod _ _ 20 of _ ADP IN _ 24 case _ _ 21 this _ DET DT _ 24 det _ _ 22 thrift _ NOUN NN _ 24 compound _ _ 23 holding _ VERB VBG _ 24 amod _ _ 24 company _ NOUN NN _ 19 nmod _ _ 25 , _ PUNCT , _ 8 punct _ _ 26 to _ ADP TO _ 27 case _ _ 27 C _ PROPN NNP _ 8 nmod _ _ 28 from _ ADP IN _ 29 case _ _ 29 Ca _ PROPN NNP _ 8 nmod _ _ 30 , _ PUNCT , _ 8 punct _ _ 31 saying _ VERB VBG _ 6 xcomp _ _ 32 it _ PRON PRP _ 33 nsubj _ _ 33 believes _ VERB VBZ _ 31 ccomp _ _ 34 bondholders _ NOUN NNS _ 36 nsubj _ _ 35 will _ AUX MD _ 36 aux _ _ 36 recover _ VERB VB _ 33 ccomp _ _ 37 only _ ADV RB _ 40 advmod _ _ 38 `` _ PUNCT `` _ 40 punct _ _ 39 negligible _ ADJ JJ _ 40 amod _ _ 40 principal _ NOUN NN _ 36 dobj _ _ 41 . _ PUNCT . _ 6 punct _ _ 42 '' _ PUNCT '' _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 confirmed _ VERB VBD _ 3 ccomp _ _ 6 American _ PROPN NNP _ 7 compound _ _ 7 Continental _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 preferred _ VERB VBN _ 11 amod _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 rating _ NOUN NN _ 5 dobj _ _ 12 at _ ADP IN _ 13 case _ _ 13 C _ PROPN NNP _ 5 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 American _ PROPN NNP _ 2 compound _ _ 2 Continental _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 thrift _ NOUN NN _ 5 compound _ _ 5 unit _ NOUN NN _ 17 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Los _ PROPN NNP _ 8 amod _ _ 8 Angeles-based _ ADJ JJ _ 10 amod _ _ 9 Lincoln _ PROPN NNP _ 10 compound _ _ 10 Savings _ PROPN NNP _ 5 appos _ _ 11 & _ CONJ CC _ 10 cc _ _ 12 Loan _ PROPN NNP _ 13 compound _ _ 13 Association _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 is _ VERB VBZ _ 17 cop _ _ 16 in _ ADP IN _ 17 case _ _ 17 receivership _ NOUN NN _ 0 root _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 the _ DET DT _ 21 det _ _ 20 parent _ NOUN NN _ 21 compound _ _ 21 company _ NOUN NN _ 23 nsubj _ _ 22 has _ AUX VBZ _ 23 aux _ _ 23 filed _ VERB VBN _ 17 conj _ _ 24 for _ ADP IN _ 25 case _ _ 25 protection _ NOUN NN _ 23 nmod _ _ 26 from _ ADP IN _ 28 case _ _ 27 creditor _ NOUN NN _ 28 compound _ _ 28 lawsuits _ NOUN NNS _ 25 nmod _ _ 29 under _ ADP IN _ 30 case _ _ 30 Chapter _ PROPN NNP _ 23 nmod _ _ 31 11 _ NUM CD _ 30 nummod _ _ 32 of _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 federal _ ADJ JJ _ 36 amod _ _ 35 Bankruptcy _ PROPN NNP _ 36 compound _ _ 36 Code _ PROPN NNP _ 30 nmod _ _ 37 . _ PUNCT . _ 17 punct _ _ 1 CENTRUST _ PROPN NNP _ 3 compound _ _ 2 SAVINGS _ PROPN NNP _ 3 compound _ _ 3 BANK _ PROPN NNP _ 0 root _ _ 4 -LRB- _ PUNCT -LRB- _ 5 punct _ _ 5 Miami _ PROPN NNP _ 3 appos _ _ 6 -RRB- _ PUNCT -RRB- _ 5 punct _ _ 7 -- _ PUNCT : _ 3 punct _ _ 1 Moody _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNP _ 5 compound _ _ 4 Service _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 downgraded _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 ratings _ NOUN NNS _ 6 dobj _ _ 9 on _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 subordinated _ VERB VBN _ 12 amod _ _ 12 debt _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 CenTrust _ PROPN NNP _ 12 nmod _ _ 15 to _ ADP TO _ 16 case _ _ 16 Caa _ PROPN NNP _ 6 nmod _ _ 17 from _ ADP IN _ 18 case _ _ 18 B-3 _ PROPN NNP _ 6 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 rating _ NOUN NN _ 3 compound _ _ 3 agency _ NOUN NN _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 reduced _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 ratings _ NOUN NNS _ 5 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 long-term _ ADJ JJ _ 10 amod _ _ 10 deposits _ NOUN NNS _ 7 nmod _ _ 11 to _ ADP TO _ 12 case _ _ 12 B-3 _ PROPN NNP _ 5 nmod _ _ 13 from _ ADP IN _ 14 case _ _ 14 Ba-3 _ NUM CD _ 5 nmod _ _ 15 and _ CONJ CC _ 5 cc _ _ 16 for _ ADP IN _ 18 case _ _ 17 preferred _ VERB VBN _ 18 amod _ _ 18 stock _ NOUN NN _ 5 conj _ _ 19 to _ ADP TO _ 20 case _ _ 20 Ca _ PROPN NNP _ 18 nmod _ _ 21 from _ ADP IN _ 22 case _ _ 22 Caa _ PROPN NNP _ 18 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 rating _ NOUN NN _ 3 compound _ _ 3 agency _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 $ _ SYM $ _ 12 nsubjpass _ _ 7 85 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 10 case _ _ 10 securities _ NOUN NNS _ 6 nmod _ _ 11 was _ AUX VBD _ 12 auxpass _ _ 12 affected _ VERB VBN _ 4 ccomp _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 downgrades _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 prompted _ VERB VBN _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Moody _ PROPN NNP _ 8 nsubj _ _ 7 's _ PART POS _ 6 case _ _ 8 said _ VERB VBD _ 4 parataxis _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 by _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 continuing _ VERB VBG _ 13 amod _ _ 13 turmoil _ NOUN NN _ 4 nmod _ _ 14 in _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 junk _ NOUN NN _ 18 compound _ _ 17 bond _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 13 nmod _ _ 19 and _ CONJ CC _ 13 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 suspension _ NOUN NN _ 13 conj _ _ 22 of _ ADP IN _ 23 case _ _ 23 dividends _ NOUN NNS _ 21 nmod _ _ 24 on _ ADP IN _ 28 case _ _ 25 CenTrust _ PROPN NNP _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 preferred _ VERB VBN _ 28 amod _ _ 28 stock _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Moody _ PROPN NNP _ 4 nsubj _ _ 2 's _ PART POS _ 1 case _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 believed _ VERB VBD _ 4 ccomp _ _ 7 the _ DET DT _ 9 det _ _ 8 proposed _ VERB VBN _ 9 amod _ _ 9 sale _ NOUN NN _ 23 nsubj _ _ 10 of _ ADP IN _ 13 case _ _ 11 63 _ NUM CD _ 13 nummod _ _ 12 CenTrust _ PROPN NNP _ 13 compound _ _ 13 branches _ NOUN NNS _ 9 nmod _ _ 14 to _ ADP TO _ 17 case _ _ 15 Great _ ADJ JJ _ 17 amod _ _ 16 Western _ PROPN NNP _ 17 compound _ _ 17 Bank _ PROPN NNP _ 9 nmod _ _ 18 could _ AUX MD _ 23 aux _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 if _ SCONJ IN _ 21 mark _ _ 21 completed _ VERB VBN _ 23 parataxis _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 endanger _ VERB VB _ 6 ccomp _ _ 24 the _ DET DT _ 25 det _ _ 25 thrift _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 funding _ NOUN NN _ 23 dobj _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 market _ NOUN NN _ 30 compound _ _ 30 position _ NOUN NN _ 27 conj _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 THE _ DET DT _ 3 det _ _ 2 STOCK _ NOUN NN _ 3 compound _ _ 3 MARKET _ NOUN NN _ 4 nsubj _ _ 4 AVOIDED _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 repeat _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 Black _ PROPN NNP _ 9 compound _ _ 9 Monday _ PROPN NNP _ 6 nmod _ _ 10 as _ SCONJ IN _ 12 mark _ _ 11 prices _ NOUN NNS _ 12 nsubj _ _ 12 recovered _ VERB VBD _ 4 advcl _ _ 13 from _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 early _ ADJ JJ _ 16 amod _ _ 16 slide _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 spurred _ VERB VBN _ 12 dep _ _ 19 by _ ADP IN _ 21 case _ _ 20 bargain-hunting _ ADJ JJ _ 21 amod _ _ 21 institutions _ NOUN NNS _ 18 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 program _ NOUN NN _ 24 compound _ _ 24 traders _ NOUN NNS _ 21 conj _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Dow _ PROPN NNP _ 4 compound _ _ 3 Jones _ PROPN NNP _ 4 compound _ _ 4 industrials _ NOUN NNS _ 5 nsubj _ _ 5 closed _ VERB VBD _ 0 root _ _ 6 up _ ADV RB _ 5 advmod _ _ 7 88.12 _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 6 nmod:npmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 at _ ADP IN _ 11 case _ _ 11 2657.38 _ NUM CD _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 the _ DET DT _ 15 det _ _ 14 fourth-biggest _ ADJ JJ _ 15 amod _ _ 15 gain _ NOUN NN _ 11 appos _ _ 16 ever _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 after _ SCONJ IN _ 28 mark _ _ 19 being _ VERB VBG _ 28 cop _ _ 20 down _ ADV RB _ 28 advmod _ _ 21 as _ ADV RB _ 24 advmod _ _ 22 much _ ADJ JJ _ 24 advmod _ _ 23 as _ ADP IN _ 24 advmod _ _ 24 63.52 _ NUM CD _ 25 nummod _ _ 25 points _ NOUN NNS _ 20 nmod:npmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 morning _ NOUN NN _ 5 advcl _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rally _ NOUN NN _ 3 nsubj _ _ 3 erased _ VERB VBN _ 0 root _ _ 4 about _ ADV RB _ 5 advmod _ _ 5 half _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 10 case _ _ 7 Friday _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 190.58-point _ ADJ JJ _ 10 amod _ _ 10 plunge _ NOUN NN _ 5 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 but _ CONJ CC _ 3 cc _ _ 13 analysts _ NOUN NNS _ 15 nsubj _ _ 14 are _ VERB VBP _ 15 cop _ _ 15 cautious _ ADJ JJ _ 3 conj _ _ 16 about _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 outlook _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 rebounded _ VERB VBD _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 while _ SCONJ IN _ 9 mark _ _ 7 bond _ NOUN NN _ 8 compound _ _ 8 prices _ NOUN NNS _ 9 nsubj _ _ 9 plummeted _ VERB VBD _ 4 advcl _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Treasury _ PROPN NNP _ 13 compound _ _ 12 bill _ NOUN NN _ 13 compound _ _ 13 rates _ NOUN NNS _ 14 nsubj _ _ 14 soared _ VERB VBD _ 9 conj _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Junk _ NOUN NN _ 2 compound _ _ 2 bonds _ NOUN NNS _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 recovered _ VERB VBD _ 0 root _ _ 5 somewhat _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 though _ SCONJ IN _ 9 mark _ _ 8 trading _ NOUN NN _ 9 nsubj _ _ 9 remained _ VERB VBD _ 4 advcl _ _ 10 stalled _ ADJ JJ _ 9 xcomp _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Gold _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Tokyo _ PROPN NNP _ 3 compound _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 4 nsubj _ _ 4 bounced _ VERB VBD _ 0 root _ _ 5 back _ ADV RB _ 4 advmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 early _ ADJ JJ _ 8 amod _ _ 8 trading _ NOUN NN _ 4 nmod _ _ 9 Tuesday _ PROPN NNP _ 8 nmod:tmod _ _ 10 following _ VERB VBG _ 4 xcomp _ _ 11 a _ DET DT _ 14 det _ _ 12 1.8 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 plunge _ NOUN NN _ 10 dobj _ _ 15 on _ ADP IN _ 16 case _ _ 16 Monday _ PROPN NNP _ 14 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 moved _ VERB VBD _ 0 root _ _ 5 higher _ ADV RBR _ 4 advmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 Tokyo _ PROPN NNP _ 4 nmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Donald _ PROPN NNP _ 2 compound _ _ 2 Trump _ PROPN NNP _ 3 nsubj _ _ 3 withdrew _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 8 nmod:poss _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 7.54 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 offer _ NOUN NN _ 3 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 American _ PROPN NNP _ 11 compound _ _ 11 Air _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 citing _ VERB VBG _ 3 advcl _ _ 14 the _ DET DT _ 17 det _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 recent _ ADJ JJ _ 17 amod _ _ 17 change _ NOUN NN _ 13 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 conditions _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 22 '' _ PUNCT '' _ 3 punct _ _ 1 AMR _ PROPN NNP _ 2 nsubj _ _ 2 slid _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 4 dep _ _ 4 22.125 _ NUM CD _ 2 dobj _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 to _ ADP TO _ 8 case _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 76.50 _ NUM CD _ 2 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 UAL _ PROPN NNP _ 5 compound _ _ 5 group _ NOUN NN _ 6 nsubj _ _ 6 tried _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 xcomp _ _ 9 financing _ NOUN NN _ 8 dobj _ _ 10 for _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 lower _ ADJ JJR _ 13 amod _ _ 13 bid _ NOUN NN _ 8 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 possibly _ ADV RB _ 17 advmod _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 250 _ NUM CD _ 13 appos _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 UAL _ PROPN NNP _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 4 dep _ _ 4 56.875 _ NUM CD _ 2 dobj _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 to _ ADP TO _ 8 case _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 222.875 _ NUM CD _ 2 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Leveraged _ VERB VBN _ 2 amod _ _ 2 buy-outs _ NOUN NNS _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 airlines _ NOUN NNS _ 2 nmod _ _ 5 would _ AUX MD _ 7 aux _ _ 6 be _ VERB VB _ 7 cop _ _ 7 subject _ ADJ JJ _ 0 root _ _ 8 to _ ADP TO _ 9 case _ _ 9 approval _ NOUN NN _ 7 nmod _ _ 10 by _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 transportation _ NOUN NN _ 13 compound _ _ 13 secretary _ NOUN NN _ 9 nmod _ _ 14 under _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 bill _ NOUN NN _ 7 nmod _ _ 17 passed _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 House _ PROPN NNP _ 21 compound _ _ 21 subcommittee _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 7 punct _ _ 1 IBM _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 earnings _ NOUN NNS _ 4 nsubj _ _ 4 tumbled _ VERB VBD _ 0 root _ _ 5 30 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 4 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 slightly _ ADV RB _ 13 advmod _ _ 13 more _ ADJ JJR _ 4 xcomp _ _ 14 than _ ADP IN _ 15 case _ _ 15 expected _ VERB VBN _ 13 advcl _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 giant _ NOUN NN _ 5 nsubj _ _ 4 partly _ ADV RB _ 5 advmod _ _ 5 cited _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 stronger _ ADJ JJR _ 8 amod _ _ 8 dollar _ NOUN NN _ 5 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 a _ DET DT _ 11 det _ _ 11 delay _ NOUN NN _ 8 conj _ _ 12 in _ SCONJ IN _ 13 mark _ _ 13 shipping _ VERB VBG _ 11 acl _ _ 14 a _ DET DT _ 18 det _ _ 15 new _ ADJ JJ _ 18 amod _ _ 16 high-end _ ADJ JJ _ 18 amod _ _ 17 disk _ NOUN NN _ 18 compound _ _ 18 drive _ NOUN NN _ 13 dobj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 are _ VERB VBP _ 3 cop _ _ 3 downbeat _ ADJ JJ _ 0 root _ _ 4 about _ ADP IN _ 7 case _ _ 5 IBM _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 outlook _ NOUN NN _ 3 nmod _ _ 8 for _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 next _ ADJ JJ _ 12 amod _ _ 11 few _ ADJ JJ _ 12 amod _ _ 12 quarters _ NOUN NNS _ 7 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 U.S. _ PROPN NNP _ 3 compound _ _ 2 auto _ NOUN NN _ 3 compound _ _ 3 makers _ NOUN NNS _ 4 nsubj _ _ 4 plan _ VERB VBP _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 decrease _ VERB VB _ 4 xcomp _ _ 7 car _ NOUN NN _ 8 compound _ _ 8 production _ NOUN NN _ 6 iobj _ _ 9 10.4 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 6 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 fourth _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 with _ SCONJ IN _ 21 mark _ _ 17 virtually _ ADV RB _ 20 advmod _ _ 18 all _ DET DT _ 20 det:predet _ _ 19 the _ DET DT _ 20 det _ _ 20 decline _ NOUN NN _ 21 nsubj _ _ 21 coming _ VERB VBG _ 6 advcl _ _ 22 from _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Big _ PROPN NNP _ 21 nmod _ _ 25 Three _ NUM CD _ 24 nummod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Output _ NOUN NN _ 11 nsubj _ _ 2 at _ ADP IN _ 6 case _ _ 3 Japanese-owned _ ADJ JJ _ 6 amod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 managed _ VERB VBN _ 3 conj _ _ 6 plants _ NOUN NNS _ 1 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 6 nmod _ _ 10 is _ VERB VBZ _ 11 cop _ _ 11 due _ ADJ JJ _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 rise _ VERB VB _ 11 xcomp _ _ 14 42 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dobj _ _ 16 . _ PUNCT . _ 11 punct _ _ 1 Budget _ NOUN NN _ 3 compound _ _ 2 director _ NOUN NN _ 3 compound _ _ 3 Darman _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 8 nsubj _ _ 6 wo _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 give _ VERB VB _ 4 ccomp _ _ 9 federal _ ADJ JJ _ 10 amod _ _ 10 agencies _ NOUN NNS _ 8 iobj _ _ 11 much _ ADJ JJ _ 12 amod _ _ 12 leeway _ NOUN NN _ 8 dobj _ _ 13 in _ SCONJ IN _ 14 mark _ _ 14 coping _ VERB VBG _ 12 acl _ _ 15 with _ ADP IN _ 18 case _ _ 16 Gramm-Rudman _ PROPN NNP _ 18 compound _ _ 17 spending _ NOUN NN _ 18 compound _ _ 18 cuts _ NOUN NNS _ 14 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 21 nsubj _ _ 21 took _ VERB VBD _ 18 acl:relcl _ _ 22 effect _ NOUN NN _ 21 dobj _ _ 23 yesterday _ NOUN NN _ 21 nmod:tmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Darman _ PROPN NNP _ 2 nsubj _ _ 2 hopes _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 prod _ VERB VB _ 2 xcomp _ _ 5 Congress _ PROPN NNP _ 4 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 finish _ VERB VB _ 4 xcomp _ _ 8 a _ DET DT _ 10 det _ _ 9 deficit _ NOUN NN _ 10 compound _ _ 10 plan _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 S&L _ PROPN NNP _ 4 compound _ _ 3 bailout _ NOUN NN _ 4 compound _ _ 4 agency _ NOUN NN _ 7 nsubjpass _ _ 5 would _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 restricted _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 bill _ NOUN NN _ 7 nmod _ _ 12 in _ SCONJ IN _ 15 mark _ _ 13 how _ ADV WRB _ 15 advmod _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 raises _ VERB VBZ _ 7 advcl _ _ 16 capital _ NOUN NN _ 15 dobj _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Ways _ PROPN NNP _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Means _ PROPN NNP _ 2 conj _ _ 5 plan _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 create _ VERB VB _ 0 root _ _ 8 another _ DET DT _ 10 det _ _ 9 possible _ ADJ JJ _ 10 amod _ _ 10 obstacle _ NOUN NN _ 7 dobj _ _ 11 to _ ADP TO _ 12 mark _ _ 12 selling _ VERB VBG _ 10 acl _ _ 13 sick _ ADJ JJ _ 14 amod _ _ 14 thrifts _ NOUN NNS _ 12 dobj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 natural _ ADJ JJ _ 4 amod _ _ 3 gas _ NOUN NN _ 4 compound _ _ 4 rule _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 struck _ VERB VBN _ 0 root _ _ 7 down _ ADP RP _ 6 compound:prt _ _ 8 by _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 federal _ ADJ JJ _ 12 amod _ _ 11 appeals _ NOUN NNS _ 12 compound _ _ 12 court _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 regulation _ NOUN NN _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 prevented _ VERB VBN _ 0 root _ _ 5 pipeline _ NOUN NN _ 6 compound _ _ 6 firms _ NOUN NNS _ 4 dobj _ _ 7 from _ SCONJ IN _ 8 mark _ _ 8 passing _ VERB VBG _ 4 advcl _ _ 9 part _ NOUN NN _ 8 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 1 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 in _ ADP IN _ 15 case _ _ 15 costs _ NOUN NNS _ 11 nmod _ _ 16 along _ ADP IN _ 18 case _ _ 17 to _ ADP TO _ 18 case _ _ 18 customers _ NOUN NNS _ 8 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Supreme _ PROPN NNP _ 3 compound _ _ 3 Court _ PROPN NNP _ 4 nsubj _ _ 4 agreed _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 decide _ VERB VB _ 4 xcomp _ _ 7 whether _ SCONJ IN _ 12 mark _ _ 8 a _ DET DT _ 10 det _ _ 9 federal _ ADJ JJ _ 10 amod _ _ 10 court _ NOUN NN _ 12 nsubj _ _ 11 may _ AUX MD _ 12 aux _ _ 12 dismantle _ VERB VB _ 6 ccomp _ _ 13 a _ DET DT _ 14 det _ _ 14 merger _ NOUN NN _ 12 dobj _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 won _ VERB VBN _ 14 acl:relcl _ _ 18 regulatory _ ADJ JJ _ 19 amod _ _ 19 approval _ NOUN NN _ 17 dobj _ _ 20 but _ CONJ CC _ 17 cc _ _ 21 been _ AUX VBN _ 22 auxpass _ _ 22 ruled _ VERB VBN _ 17 conj _ _ 23 anticompetitive _ ADJ JJ _ 22 xcomp _ _ 24 in _ ADP IN _ 27 case _ _ 25 a _ DET DT _ 27 det _ _ 26 private _ ADJ JJ _ 27 amod _ _ 27 suit _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 profit _ NOUN NN _ 5 nsubj _ _ 5 slid _ VERB VBD _ 0 root _ _ 6 37 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 third _ ADJ JJ _ 11 amod _ _ 11 quarter _ NOUN NN _ 5 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Bear _ PROPN NNP _ 2 compound _ _ 2 Stearns _ PROPN NNP _ 3 nsubj _ _ 3 posted _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 7.5 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 gain _ NOUN NN _ 3 dobj _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 while _ SCONJ IN _ 11 mark _ _ 10 PaineWebber _ PROPN NNP _ 11 nsubj _ _ 11 had _ VERB VBD _ 3 advcl _ _ 12 a _ DET DT _ 13 det _ _ 13 decline _ NOUN NN _ 11 dobj _ _ 14 due _ ADJ JJ _ 13 amod _ _ 15 to _ ADP TO _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 year-ago _ ADJ JJ _ 18 amod _ _ 18 gain _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Blue _ PROPN NNP _ 2 compound _ _ 2 Arrow _ PROPN NNP _ 5 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 Britain _ PROPN NNP _ 2 nmod _ _ 5 plans _ VERB VBZ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 return _ VERB VB _ 5 xcomp _ _ 8 to _ ADP TO _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 name _ NOUN NN _ 11 compound _ _ 11 Manpower _ PROPN NNP _ 7 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 take _ VERB VB _ 7 conj _ _ 14 a _ DET DT _ 16 det _ _ 15 big _ ADJ JJ _ 16 amod _ _ 16 write-off _ NOUN NN _ 13 dobj _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 moves _ NOUN NNS _ 4 nsubj _ _ 3 may _ AUX MD _ 4 aux _ _ 4 help _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 firm _ NOUN NN _ 7 nsubj _ _ 7 solidify _ VERB VB _ 4 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 dominance _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 U.S. _ PROPN NNP _ 14 compound _ _ 13 temporary-help _ ADJ JJ _ 14 amod _ _ 14 market _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Morgan _ PROPN NNP _ 3 nsubj _ _ 3 posted _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 1.82 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 loss _ NOUN NN _ 3 dobj _ _ 9 for _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 third _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 reflecting _ VERB VBG _ 3 advcl _ _ 15 a _ DET DT _ 17 det _ _ 16 big _ ADJ JJ _ 17 amod _ _ 17 addition _ NOUN NN _ 14 dobj _ _ 18 to _ ADP TO _ 20 case _ _ 19 loan-loss _ ADJ JJ _ 20 amod _ _ 20 reserves _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 profit _ NOUN NN _ 6 nsubj _ _ 4 more _ ADV RBR _ 6 advmod _ _ 5 than _ ADP IN _ 4 case _ _ 6 doubled _ VERB VBD _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 K _ PROPN NNP _ 2 compound _ _ 2 mart _ PROPN NNP _ 3 nsubj _ _ 3 agreed _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 acquire _ VERB VB _ 3 xcomp _ _ 6 Pace _ PROPN NNP _ 8 compound _ _ 7 Membership _ PROPN NNP _ 8 compound _ _ 8 Warehouse _ PROPN NNP _ 5 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 5 nmod _ _ 11 322 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 expanding _ VERB VBG _ 3 xcomp _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 presence _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 21 case _ _ 18 the _ DET DT _ 21 det _ _ 19 growing _ VERB VBG _ 21 amod _ _ 20 wholesale-store _ ADJ JJ _ 21 amod _ _ 21 business _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Markets _ NOUN NNS _ 0 root _ _ 2 -- _ PUNCT : _ 1 punct _ _ 1 Stocks _ NOUN NNS _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Volume _ NOUN NN _ 1 dep _ _ 4 416,290,000 _ NUM CD _ 5 nummod _ _ 5 shares _ NOUN NNS _ 3 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 Dow _ PROPN NNP _ 3 compound _ _ 2 Jones _ PROPN NNP _ 3 compound _ _ 3 industrials _ NOUN NNS _ 0 root _ _ 4 2657.38 _ NUM CD _ 3 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 up _ ADV RB _ 4 advmod _ _ 7 88.12 _ NUM CD _ 6 nmod:npmod _ _ 8 ; _ PUNCT : _ 3 punct _ _ 9 transportation _ NOUN NN _ 3 dep _ _ 10 1304.23 _ NUM CD _ 9 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 off _ ADJ JJ _ 10 advmod _ _ 13 102.06 _ NUM CD _ 12 dep _ _ 14 ; _ PUNCT : _ 3 punct _ _ 15 utilities _ NOUN NNS _ 3 dep _ _ 16 214.73 _ NUM CD _ 15 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 up _ ADV RB _ 16 advmod _ _ 19 2.77 _ NUM CD _ 18 nmod:npmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Bonds _ NOUN NNS _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Shearson _ PROPN NNP _ 7 compound _ _ 4 Lehman _ PROPN NNP _ 7 compound _ _ 5 Hutton _ PROPN NNP _ 7 compound _ _ 6 Treasury _ PROPN NNP _ 7 compound _ _ 7 index _ NOUN NN _ 1 dep _ _ 8 3393.51 _ NUM CD _ 7 dep _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 off _ ADJ JJ _ 8 advmod _ _ 1 Commodities _ NOUN NNS _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Dow _ PROPN NNP _ 6 compound _ _ 4 Jones _ PROPN NNP _ 6 compound _ _ 5 futures _ NOUN NNS _ 6 compound _ _ 6 index _ NOUN NN _ 1 dep _ _ 7 129.72 _ NUM CD _ 6 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 off _ ADJ JJ _ 7 advmod _ _ 10 0.15 _ NUM CD _ 9 dep _ _ 11 ; _ PUNCT : _ 6 punct _ _ 12 spot _ NOUN NN _ 13 compound _ _ 13 index _ NOUN NN _ 6 dep _ _ 14 130.16 _ NUM CD _ 13 dep _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 up _ ADV RB _ 14 advmod _ _ 17 0.91 _ NUM CD _ 16 nmod:npmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 Dollar _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 141.85 _ NUM CD _ 4 nummod _ _ 4 yen _ NOUN NNS _ 1 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 off _ ADP IN _ 7 case _ _ 7 0.25 _ NUM CD _ 4 advmod _ _ 8 ; _ PUNCT : _ 4 punct _ _ 9 1.8685 _ NUM CD _ 10 nummod _ _ 10 marks _ NOUN NNS _ 4 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 off _ ADP IN _ 13 case _ _ 13 0.0055 _ NUM CD _ 10 advmod _ _ 14 . _ PUNCT . _ 1 punct _ _ 1 Monday _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 October _ PROPN NNP _ 1 appos _ _ 4 16 _ NUM CD _ 3 nummod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 1989 _ NUM CD _ 3 nummod _ _ 1 The _ DET DT _ 8 det _ _ 2 key _ ADJ JJ _ 8 amod _ _ 3 U.S. _ PROPN NNP _ 8 compound _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 foreign _ ADJ JJ _ 3 conj _ _ 6 annual _ ADJ JJ _ 8 amod _ _ 7 interest _ NOUN NN _ 8 compound _ _ 8 rates _ NOUN NNS _ 12 nsubj _ _ 9 below _ ADV RB _ 8 advmod _ _ 10 are _ VERB VBP _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 guide _ NOUN NN _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 general _ ADJ JJ _ 15 amod _ _ 15 levels _ NOUN NNS _ 12 nmod _ _ 16 but _ CONJ CC _ 12 cc _ _ 17 do _ AUX VBP _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 always _ ADV RB _ 20 advmod _ _ 20 represent _ VERB VB _ 12 conj _ _ 21 actual _ ADJ JJ _ 22 amod _ _ 22 transactions _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 PRIME _ PROPN NNP _ 2 compound _ _ 2 RATE _ PROPN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 10 _ NUM CD _ 5 compound _ _ 5 1/2 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 2 dep _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 base _ NOUN NN _ 3 compound _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 on _ ADP IN _ 6 case _ _ 5 corporate _ ADJ JJ _ 6 amod _ _ 6 loans _ NOUN NNS _ 3 nmod _ _ 7 at _ ADP IN _ 13 case _ _ 8 large _ ADJ JJ _ 13 amod _ _ 9 U.S. _ PROPN NNP _ 13 compound _ _ 10 money _ NOUN NN _ 13 compound _ _ 11 center _ NOUN NN _ 13 compound _ _ 12 commercial _ ADJ JJ _ 13 amod _ _ 13 banks _ NOUN NNS _ 3 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 FEDERAL _ PROPN NNP _ 2 compound _ _ 2 FUNDS _ PROPN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 8 _ NUM CD _ 5 compound _ _ 5 3/4 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 2 dep _ _ 7 high _ ADJ JJ _ 6 amod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 8 _ NUM CD _ 10 compound _ _ 10 1/2 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 6 appos _ _ 12 low _ ADJ JJ _ 11 amod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 8 _ NUM CD _ 15 compound _ _ 15 5/8 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 6 appos _ _ 17 near _ ADP IN _ 19 case _ _ 18 closing _ VERB VBG _ 19 amod _ _ 19 bid _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 8 _ NUM CD _ 22 compound _ _ 22 3/4 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 6 appos _ _ 24 offered _ VERB VBN _ 23 acl _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Reserves _ NOUN NNS _ 2 nsubj _ _ 2 traded _ VERB VBN _ 0 root _ _ 3 among _ ADP IN _ 5 case _ _ 4 commercial _ ADJ JJ _ 5 amod _ _ 5 banks _ NOUN NNS _ 2 nmod _ _ 6 for _ ADP IN _ 8 case _ _ 7 overnight _ ADJ JJ _ 8 amod _ _ 8 use _ NOUN NN _ 2 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 amounts _ NOUN NNS _ 2 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 1 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 more _ ADJ JJR _ 12 conj _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Fulton _ PROPN NNP _ 9 compound _ _ 4 Prebon _ PROPN NNP _ 9 compound _ _ 5 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 6 U.S.A _ PROPN NNP _ 9 compound _ _ 7 . _ PUNCT . _ 9 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 9 Inc _ PROPN NNP _ 1 dep _ _ 10 . _ PUNCT . _ 1 punct _ _ 1 DISCOUNT _ PROPN NNP _ 2 compound _ _ 2 RATE _ PROPN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 7 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dep _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 7 case _ _ 6 depository _ ADJ JJ _ 7 amod _ _ 7 institutions _ NOUN NNS _ 4 nmod _ _ 8 by _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 New _ PROPN NNP _ 14 compound _ _ 11 York _ PROPN NNP _ 14 compound _ _ 12 Federal _ PROPN NNP _ 14 compound _ _ 13 Reserve _ PROPN NNP _ 14 compound _ _ 14 Bank _ PROPN NNP _ 4 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 CALL _ NOUN NN _ 2 compound _ _ 2 MONEY _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 9 _ NUM CD _ 9 compound _ _ 5 3/4 _ NUM CD _ 9 compound _ _ 6 % _ SYM NN _ 9 dep _ _ 7 to _ ADP TO _ 9 dep _ _ 8 10 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 2 dep _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 6 case _ _ 6 brokers _ NOUN NNS _ 4 nmod _ _ 7 on _ ADP IN _ 10 case _ _ 8 stock _ NOUN NN _ 10 compound _ _ 9 exchange _ NOUN NN _ 10 compound _ _ 10 collateral _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 placed _ VERB VBN _ 2 acl _ _ 4 directly _ ADV RB _ 3 advmod _ _ 5 by _ ADP IN _ 9 case _ _ 6 General _ PROPN NNP _ 9 compound _ _ 7 Motors _ PROPN NNP _ 9 compound _ _ 8 Acceptance _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 3 nmod _ _ 10 : _ PUNCT : _ 2 punct _ _ 11 8.30 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 5 _ NUM CD _ 15 compound _ _ 14 to _ ADP TO _ 15 dep _ _ 15 44 _ NUM CD _ 16 nummod _ _ 16 days _ NOUN NNS _ 12 nmod:npmod _ _ 17 ; _ PUNCT : _ 12 punct _ _ 18 8.20 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 12 dep _ _ 20 45 _ NUM CD _ 22 compound _ _ 21 to _ ADP TO _ 22 dep _ _ 22 59 _ NUM CD _ 23 nummod _ _ 23 days _ NOUN NNS _ 19 nmod:npmod _ _ 24 ; _ PUNCT : _ 12 punct _ _ 25 8 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 12 dep _ _ 27 60 _ NUM CD _ 29 compound _ _ 28 to _ ADP TO _ 29 dep _ _ 29 89 _ NUM CD _ 30 nummod _ _ 30 days _ NOUN NNS _ 26 nmod:npmod _ _ 31 ; _ PUNCT : _ 12 punct _ _ 32 7.875 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 12 dep _ _ 34 90 _ NUM CD _ 36 compound _ _ 35 to _ ADP TO _ 36 dep _ _ 36 119 _ NUM CD _ 37 nummod _ _ 37 days _ NOUN NNS _ 33 nmod:npmod _ _ 38 ; _ PUNCT : _ 12 punct _ _ 39 7.75 _ NUM CD _ 40 nummod _ _ 40 % _ SYM NN _ 12 dep _ _ 41 120 _ NUM CD _ 43 compound _ _ 42 to _ ADP TO _ 43 dep _ _ 43 149 _ NUM CD _ 44 nummod _ _ 44 days _ NOUN NNS _ 40 nmod:npmod _ _ 45 ; _ PUNCT : _ 12 punct _ _ 46 7.625 _ NUM CD _ 47 nummod _ _ 47 % _ SYM NN _ 12 dep _ _ 48 150 _ NUM CD _ 50 compound _ _ 49 to _ ADP TO _ 50 dep _ _ 50 179 _ NUM CD _ 51 nummod _ _ 51 days _ NOUN NNS _ 47 nmod:npmod _ _ 52 ; _ PUNCT : _ 12 punct _ _ 53 7.375 _ NUM CD _ 54 nummod _ _ 54 % _ SYM NN _ 12 dep _ _ 55 180 _ NUM CD _ 57 compound _ _ 56 to _ ADP TO _ 57 dep _ _ 57 270 _ NUM CD _ 58 nummod _ _ 58 days _ NOUN NNS _ 54 nmod:npmod _ _ 59 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 High-grade _ ADJ JJ _ 5 amod _ _ 5 unsecured _ ADJ JJ _ 6 amod _ _ 6 notes _ NOUN NNS _ 2 dep _ _ 7 sold _ VERB VBN _ 6 acl _ _ 8 through _ ADP IN _ 9 case _ _ 9 dealers _ NOUN NNS _ 7 nmod _ _ 10 by _ ADP IN _ 12 case _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 corporations _ NOUN NNS _ 7 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 multiples _ NOUN NNS _ 7 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1,000 _ NUM CD _ 14 nmod _ _ 18 : _ PUNCT : _ 6 punct _ _ 19 8.40 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 6 dep _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 days _ NOUN NNS _ 20 nmod:npmod _ _ 23 ; _ PUNCT : _ 20 punct _ _ 24 8.33 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 20 dep _ _ 26 60 _ NUM CD _ 27 nummod _ _ 27 days _ NOUN NNS _ 25 nmod:npmod _ _ 28 ; _ PUNCT : _ 20 punct _ _ 29 8.26 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 20 dep _ _ 31 90 _ NUM CD _ 32 nummod _ _ 32 days _ NOUN NNS _ 30 nmod:npmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 CERTIFICATES _ NOUN NNS _ 0 root _ _ 2 OF _ ADP IN _ 3 case _ _ 3 DEPOSIT _ NOUN NN _ 1 nmod _ _ 4 : _ PUNCT : _ 1 punct _ _ 5 8.05 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 1 dep _ _ 7 one _ NUM CD _ 8 nummod _ _ 8 month _ NOUN NN _ 6 nmod:npmod _ _ 9 ; _ PUNCT : _ 6 punct _ _ 10 8.02 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 6 dep _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 months _ NOUN NNS _ 11 nmod:npmod _ _ 14 ; _ PUNCT : _ 6 punct _ _ 15 8 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 6 dep _ _ 17 three _ NUM CD _ 18 nummod _ _ 18 months _ NOUN NNS _ 16 nmod:npmod _ _ 19 ; _ PUNCT : _ 6 punct _ _ 20 7.98 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 6 dep _ _ 22 six _ NUM CD _ 23 nummod _ _ 23 months _ NOUN NNS _ 21 nmod:npmod _ _ 24 ; _ PUNCT : _ 6 punct _ _ 25 7.95 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 6 dep _ _ 27 one _ NUM CD _ 28 nummod _ _ 28 year _ NOUN NN _ 26 dep _ _ 29 . _ PUNCT . _ 1 punct _ _ 1 Average _ NOUN NN _ 0 root _ _ 2 of _ ADP IN _ 4 case _ _ 3 top _ ADJ JJ _ 4 amod _ _ 4 rates _ NOUN NNS _ 1 nmod _ _ 5 paid _ VERB VBN _ 4 acl _ _ 6 by _ ADP IN _ 10 case _ _ 7 major _ ADJ JJ _ 10 amod _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 York _ PROPN NNP _ 10 compound _ _ 10 banks _ NOUN NNS _ 5 nmod _ _ 11 on _ ADP IN _ 14 case _ _ 12 primary _ ADJ JJ _ 13 amod _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 issues _ NOUN NNS _ 5 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 negotiable _ ADJ JJ _ 17 amod _ _ 17 C.D.s _ NOUN NNS _ 14 nmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 usually _ ADV RB _ 21 advmod _ _ 20 on _ ADP IN _ 21 case _ _ 21 amounts _ NOUN NNS _ 5 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 1 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 more _ ADJ JJR _ 23 conj _ _ 28 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 minimum _ NOUN NN _ 3 compound _ _ 3 unit _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 100,000 _ NUM CD _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Typical _ ADJ JJ _ 2 amod _ _ 2 rates _ NOUN NNS _ 0 root _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 secondary _ ADJ JJ _ 6 amod _ _ 6 market _ NOUN NN _ 2 nmod _ _ 7 : _ PUNCT : _ 2 punct _ _ 8 8.40 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 2 dep _ _ 10 one _ NUM CD _ 11 nummod _ _ 11 month _ NOUN NN _ 9 nmod:npmod _ _ 12 ; _ PUNCT : _ 9 punct _ _ 13 8.40 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 9 dep _ _ 15 three _ NUM CD _ 16 nummod _ _ 16 months _ NOUN NNS _ 14 nmod:npmod _ _ 17 ; _ PUNCT : _ 9 punct _ _ 18 8.40 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 9 dep _ _ 20 six _ NUM CD _ 21 nummod _ _ 21 months _ NOUN NNS _ 19 nmod:npmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 BANKERS _ NOUN NNS _ 2 compound _ _ 2 ACCEPTANCES _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 8.40 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dep _ _ 6 30 _ NUM CD _ 7 nummod _ _ 7 days _ NOUN NNS _ 5 nmod:npmod _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 8.35 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 5 dep _ _ 11 60 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 10 nmod:npmod _ _ 13 ; _ PUNCT : _ 5 punct _ _ 14 8.27 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 5 dep _ _ 16 90 _ NUM CD _ 17 nummod _ _ 17 days _ NOUN NNS _ 15 nmod:npmod _ _ 18 ; _ PUNCT : _ 5 punct _ _ 19 8.20 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 5 dep _ _ 21 120 _ NUM CD _ 22 nummod _ _ 22 days _ NOUN NNS _ 20 nmod:npmod _ _ 23 ; _ PUNCT : _ 5 punct _ _ 24 8.15 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 5 dep _ _ 26 150 _ NUM CD _ 27 nummod _ _ 27 days _ NOUN NNS _ 25 nmod:npmod _ _ 28 ; _ PUNCT : _ 5 punct _ _ 29 8.02 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 5 dep _ _ 31 180 _ NUM CD _ 32 nummod _ _ 32 days _ NOUN NNS _ 30 nmod:npmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Negotiable _ ADJ JJ _ 3 amod _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 bank-backed _ ADJ JJ _ 6 amod _ _ 4 business _ NOUN NN _ 6 compound _ _ 5 credit _ NOUN NN _ 6 compound _ _ 6 instruments _ NOUN NNS _ 0 root _ _ 7 typically _ ADV RB _ 8 advmod _ _ 8 financing _ VERB VBG _ 6 acl _ _ 9 an _ DET DT _ 11 det _ _ 10 import _ NOUN NN _ 11 compound _ _ 11 order _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 LONDON _ PROPN NNP _ 3 compound _ _ 2 LATE _ ADJ JJ _ 3 amod _ _ 3 EURODOLLARS _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 5 8 _ NUM CD _ 11 compound _ _ 6 5/8 _ NUM CD _ 11 compound _ _ 7 % _ SYM NN _ 11 dep _ _ 8 to _ ADP TO _ 11 dep _ _ 9 8 _ NUM CD _ 11 compound _ _ 10 1/2 _ NUM CD _ 11 compound _ _ 11 % _ SYM NN _ 3 dep _ _ 12 one _ NUM CD _ 13 nummod _ _ 13 month _ NOUN NN _ 11 nmod:npmod _ _ 14 ; _ PUNCT : _ 11 punct _ _ 15 8 _ NUM CD _ 21 compound _ _ 16 5/8 _ NUM CD _ 21 compound _ _ 17 % _ SYM NN _ 21 dep _ _ 18 to _ ADP TO _ 21 dep _ _ 19 8 _ NUM CD _ 21 compound _ _ 20 1/2 _ NUM CD _ 21 compound _ _ 21 % _ SYM NN _ 11 dep _ _ 22 two _ NUM CD _ 23 nummod _ _ 23 months _ NOUN NNS _ 21 nmod:npmod _ _ 24 ; _ PUNCT : _ 11 punct _ _ 25 8 _ NUM CD _ 31 compound _ _ 26 9/16 _ NUM CD _ 31 compound _ _ 27 % _ SYM NN _ 31 dep _ _ 28 to _ ADP TO _ 31 dep _ _ 29 8 _ NUM CD _ 31 compound _ _ 30 7/16 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 11 dep _ _ 32 three _ NUM CD _ 33 nummod _ _ 33 months _ NOUN NNS _ 31 nmod:npmod _ _ 34 ; _ PUNCT : _ 11 punct _ _ 35 8 _ NUM CD _ 41 compound _ _ 36 1/2 _ NUM CD _ 41 compound _ _ 37 % _ SYM NN _ 41 dep _ _ 38 to _ ADP TO _ 41 dep _ _ 39 8 _ NUM CD _ 41 compound _ _ 40 3/8 _ NUM CD _ 41 compound _ _ 41 % _ SYM NN _ 11 dep _ _ 42 four _ NUM CD _ 43 nummod _ _ 43 months _ NOUN NNS _ 41 nmod:npmod _ _ 44 ; _ PUNCT : _ 11 punct _ _ 45 8 _ NUM CD _ 51 compound _ _ 46 1/2 _ NUM CD _ 51 compound _ _ 47 % _ SYM NN _ 51 dep _ _ 48 to _ ADP TO _ 51 dep _ _ 49 8 _ NUM CD _ 51 compound _ _ 50 3/8 _ NUM CD _ 51 compound _ _ 51 % _ SYM NN _ 11 dep _ _ 52 five _ NUM CD _ 53 nummod _ _ 53 months _ NOUN NNS _ 51 nmod:npmod _ _ 54 ; _ PUNCT : _ 11 punct _ _ 55 8 _ NUM CD _ 61 compound _ _ 56 1/2 _ NUM CD _ 61 compound _ _ 57 % _ SYM NN _ 61 dep _ _ 58 to _ ADP TO _ 61 dep _ _ 59 8 _ NUM CD _ 61 compound _ _ 60 3/8 _ NUM CD _ 61 compound _ _ 61 % _ SYM NN _ 11 dep _ _ 62 six _ NUM CD _ 63 nummod _ _ 63 months _ NOUN NNS _ 61 nmod:npmod _ _ 64 . _ PUNCT . _ 3 punct _ _ 1 LONDON _ PROPN NNP _ 4 compound _ _ 2 INTERBANK _ PROPN NNP _ 4 compound _ _ 3 OFFERED _ VERB VBN _ 4 amod _ _ 4 RATES _ NOUN NNS _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 LIBOR _ PROPN NNP _ 4 appos _ _ 7 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 8 : _ PUNCT : _ 4 punct _ _ 9 8 _ NUM CD _ 10 compound _ _ 10 1/2 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 4 dep _ _ 12 one _ NUM CD _ 13 nummod _ _ 13 month _ NOUN NN _ 11 nmod:npmod _ _ 14 ; _ PUNCT : _ 11 punct _ _ 15 8 _ NUM CD _ 16 compound _ _ 16 1/2 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 11 dep _ _ 18 three _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 11 punct _ _ 21 8 _ NUM CD _ 22 compound _ _ 22 7/16 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 11 dep _ _ 24 six _ NUM CD _ 25 nummod _ _ 25 months _ NOUN NNS _ 23 nmod:npmod _ _ 26 ; _ PUNCT : _ 11 punct _ _ 27 8 _ NUM CD _ 28 compound _ _ 28 3/8 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 11 dep _ _ 30 one _ NUM CD _ 31 nummod _ _ 31 year _ NOUN NN _ 29 dep _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 average _ NOUN NN _ 0 root _ _ 3 of _ ADP IN _ 6 case _ _ 4 interbank _ NOUN NN _ 6 compound _ _ 5 offered _ VERB VBN _ 6 amod _ _ 6 rates _ NOUN NNS _ 2 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 dollar _ NOUN NN _ 9 compound _ _ 9 deposits _ NOUN NNS _ 6 nmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 London _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 9 nmod _ _ 14 based _ VERB VBN _ 2 acl _ _ 15 on _ ADP IN _ 16 case _ _ 16 quotations _ NOUN NNS _ 14 nmod _ _ 17 at _ ADP IN _ 20 case _ _ 18 five _ NUM CD _ 20 nummod _ _ 19 major _ ADJ JJ _ 20 amod _ _ 20 banks _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 FOREIGN _ PROPN NNP _ 3 compound _ _ 2 PRIME _ PROPN NNP _ 3 compound _ _ 3 RATES _ PROPN NNP _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 5 Canada _ PROPN NNP _ 3 dep _ _ 6 13.50 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dep _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 Germany _ PROPN NNP _ 5 dep _ _ 10 8.50 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dep _ _ 12 ; _ PUNCT : _ 5 punct _ _ 13 Japan _ PROPN NNP _ 5 dep _ _ 14 4.875 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dep _ _ 16 ; _ PUNCT : _ 5 punct _ _ 17 Switzerland _ PROPN NNP _ 5 dep _ _ 18 8.50 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dep _ _ 20 ; _ PUNCT : _ 5 punct _ _ 21 Britain _ PROPN NNP _ 5 dep _ _ 22 15 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dep _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 These _ DET DT _ 3 det _ _ 2 rate _ NOUN NN _ 3 compound _ _ 3 indications _ NOUN NNS _ 7 nsubj _ _ 4 are _ VERB VBP _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 directly _ ADV RB _ 7 advmod _ _ 7 comparable _ ADJ JJ _ 0 root _ _ 8 ; _ PUNCT : _ 7 punct _ _ 9 lending _ NOUN NN _ 10 compound _ _ 10 practices _ NOUN NNS _ 11 nsubj _ _ 11 vary _ VERB VBP _ 7 parataxis _ _ 12 widely _ ADV RB _ 11 advmod _ _ 13 by _ ADP IN _ 14 case _ _ 14 location _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 TREASURY _ PROPN NNP _ 2 compound _ _ 2 BILLS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 Results _ NOUN NNS _ 2 dep _ _ 5 of _ ADP IN _ 14 case _ _ 6 the _ DET DT _ 14 det _ _ 7 Monday _ PROPN NNP _ 14 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 October _ PROPN NNP _ 7 dep _ _ 10 16 _ NUM CD _ 7 dep _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 1989 _ NUM CD _ 7 dep _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 auction _ NOUN NN _ 4 nmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 short-term _ ADJ JJ _ 19 amod _ _ 17 U.S. _ PROPN NNP _ 19 compound _ _ 18 government _ NOUN NN _ 19 compound _ _ 19 bills _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 sold _ VERB VBN _ 19 acl _ _ 22 at _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 discount _ NOUN NN _ 21 nmod _ _ 25 from _ ADP IN _ 27 case _ _ 26 face _ NOUN NN _ 27 compound _ _ 27 value _ NOUN NN _ 24 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 units _ NOUN NNS _ 21 nmod _ _ 30 of _ ADP IN _ 34 case _ _ 31 $ _ SYM $ _ 34 dep _ _ 32 10,000 _ NUM CD _ 34 compound _ _ 33 to _ ADP TO _ 34 dep _ _ 34 $ _ SYM $ _ 29 nmod _ _ 35 1 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 : _ PUNCT : _ 4 punct _ _ 38 7.37 _ NUM CD _ 39 nummod _ _ 39 % _ SYM NN _ 4 dep _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 13 _ NUM CD _ 42 nummod _ _ 42 weeks _ NOUN NNS _ 39 appos _ _ 43 ; _ PUNCT : _ 39 punct _ _ 44 7.42 _ NUM CD _ 45 nummod _ _ 45 % _ SYM NN _ 39 dep _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 26 _ NUM CD _ 48 nummod _ _ 48 weeks _ NOUN NNS _ 45 appos _ _ 49 . _ PUNCT . _ 2 punct _ _ 1 FEDERAL _ PROPN NNP _ 5 compound _ _ 2 HOME _ PROPN NNP _ 5 compound _ _ 3 LOAN _ PROPN NNP _ 5 compound _ _ 4 MORTGAGE _ PROPN NNP _ 5 compound _ _ 5 CORP _ PROPN NNP _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 8 Freddie _ PROPN NNP _ 9 compound _ _ 9 Mac _ PROPN NNP _ 5 appos _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 : _ PUNCT : _ 5 punct _ _ 12 Posted _ VERB VBN _ 13 amod _ _ 13 yields _ NOUN NNS _ 5 dep _ _ 14 on _ ADP IN _ 17 case _ _ 15 30-year _ NUM CD _ 17 nummod _ _ 16 mortgage _ NOUN NN _ 17 compound _ _ 17 commitments _ NOUN NNS _ 13 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 delivery _ NOUN NN _ 13 nmod _ _ 20 within _ ADP IN _ 22 case _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 days. _ NOUN NNS _ 19 nmod _ _ 1 9.83 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 standard _ ADJ JJ _ 7 amod _ _ 5 conventional _ ADJ JJ _ 7 amod _ _ 6 fixedrate _ ADJ JJ _ 7 amod _ _ 7 mortgages _ NOUN NNS _ 2 appos _ _ 8 ; _ PUNCT : _ 2 punct _ _ 9 7.875 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 2 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 2 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 dep _ _ 14 rate _ NOUN NN _ 19 amod _ _ 15 capped _ VERB VBD _ 14 dep _ _ 16 one-year _ ADJ JJ _ 19 amod _ _ 17 adjustable _ ADJ JJ _ 19 amod _ _ 18 rate _ NOUN NN _ 19 compound _ _ 19 mortgages _ NOUN NNS _ 10 appos _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNP _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 FEDERAL _ PROPN NNP _ 4 compound _ _ 2 NATIONAL _ PROPN NNP _ 4 compound _ _ 3 MORTGAGE _ PROPN NNP _ 4 compound _ _ 4 ASSOCIATION _ PROPN NNP _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 6 Fannie _ PROPN NNP _ 7 compound _ _ 7 Mae _ PROPN NNP _ 4 appos _ _ 8 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 9 : _ PUNCT : _ 4 punct _ _ 10 Posted _ VERB VBN _ 11 amod _ _ 11 yields _ NOUN NNS _ 4 dep _ _ 12 on _ ADP IN _ 16 case _ _ 13 30 _ NUM CD _ 16 nummod _ _ 14 year _ NOUN NN _ 16 compound _ _ 15 mortgage _ NOUN NN _ 16 compound _ _ 16 commitments _ NOUN NNS _ 11 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 delivery _ NOUN NN _ 11 nmod _ _ 19 within _ ADP IN _ 21 case _ _ 20 30 _ NUM CD _ 21 nummod _ _ 21 days _ NOUN NNS _ 18 nmod _ _ 22 -LRB- _ PUNCT -LRB- _ 23 punct _ _ 23 priced _ VERB VBN _ 11 dep _ _ 24 at _ ADP IN _ 25 case _ _ 25 par _ NOUN NN _ 23 nmod _ _ 26 -RRB- _ PUNCT -RRB- _ 23 punct _ _ 27 .9.82 _ NUM CD _ 28 nummod _ _ 28 % _ SYM NN _ 11 dep _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 standard _ ADJ JJ _ 33 amod _ _ 31 conventional _ ADJ JJ _ 33 amod _ _ 32 fixed _ VERB VBN _ 33 amod _ _ 33 rate-mortgages _ NOUN NN _ 28 appos _ _ 34 ; _ PUNCT : _ 28 punct _ _ 35 8.70 _ NUM CD _ 36 nummod _ _ 36 % _ SYM NN _ 28 dep _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 6/2 _ NUM CD _ 44 nummod _ _ 39 rate _ NOUN NN _ 40 dep _ _ 40 capped _ VERB VBN _ 44 amod _ _ 41 one-year _ ADJ JJ _ 44 amod _ _ 42 adjustable _ ADJ JJ _ 44 amod _ _ 43 rate _ NOUN NN _ 44 compound _ _ 44 mortgages _ NOUN NNS _ 36 appos _ _ 45 . _ PUNCT . _ 4 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNP _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 MERRILL _ PROPN NNP _ 5 compound _ _ 2 LYNCH _ PROPN NNP _ 5 compound _ _ 3 READY _ PROPN NNP _ 5 compound _ _ 4 ASSETS _ PROPN NNP _ 5 compound _ _ 5 TRUST _ PROPN NNP _ 0 root _ _ 6 : _ PUNCT : _ 5 punct _ _ 7 8.49 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 5 dep _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 Annualized _ VERB VBN _ 3 amod _ _ 2 average _ ADJ JJ _ 3 amod _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 of _ ADP IN _ 5 case _ _ 5 return _ NOUN NN _ 3 nmod _ _ 6 after _ ADP IN _ 7 case _ _ 7 expenses _ NOUN NNS _ 3 nmod _ _ 8 for _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 past _ ADJ JJ _ 12 amod _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 3 nmod _ _ 13 ; _ PUNCT : _ 3 punct _ _ 14 not _ ADV RB _ 16 neg _ _ 15 a _ DET DT _ 16 det _ _ 16 forecast _ NOUN NN _ 3 dep _ _ 17 of _ ADP IN _ 19 case _ _ 18 future _ ADJ JJ _ 19 amod _ _ 19 returns _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Intel _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 reached _ VERB VBD _ 3 ccomp _ _ 6 an _ DET DT _ 7 det _ _ 7 agreement _ NOUN NN _ 5 dobj _ _ 8 with _ ADP IN _ 12 case _ _ 9 Alliant _ PROPN NNP _ 12 compound _ _ 10 Computer _ PROPN NNP _ 12 compound _ _ 11 Systems _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 7 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 develop _ VERB VB _ 7 acl _ _ 15 software _ NOUN NN _ 16 compound _ _ 16 standards _ NOUN NNS _ 14 dobj _ _ 17 for _ ADP IN _ 21 case _ _ 18 Intel _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 i860 _ NOUN NN _ 21 compound _ _ 21 microprocessor _ NOUN NN _ 14 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 i860 _ NOUN NN _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 introduced _ VERB VBN _ 2 acl _ _ 5 earlier _ ADV RBR _ 7 advmod _ _ 6 this _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 4 nmod:tmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 Intel _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 entry _ NOUN NN _ 0 root _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 crowded _ VERB VBN _ 16 amod _ _ 16 market _ NOUN NN _ 12 nmod _ _ 17 for _ ADP IN _ 26 case _ _ 18 reduced _ VERB VBN _ 26 amod _ _ 19 instruction _ NOUN NN _ 26 compound _ _ 20 set _ NOUN NN _ 26 compound _ _ 21 computing _ VERB VBG _ 26 amod _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 or _ CONJ CC _ 24 cc _ _ 24 RISC _ PROPN NNP _ 26 dep _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 computers _ NOUN NNS _ 16 nmod _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 Intel _ PROPN NNP _ 13 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 based _ VERB VBN _ 1 acl _ _ 4 in _ ADP IN _ 6 case _ _ 5 Santa _ PROPN NNP _ 6 compound _ _ 6 Clara _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Calif. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 market _ NOUN NN _ 13 compound _ _ 13 leader _ NOUN NN _ 0 root _ _ 14 for _ ADP IN _ 16 case _ _ 15 traditional _ ADJ JJ _ 16 amod _ _ 16 microprocessors _ NOUN NNS _ 13 nmod _ _ 17 with _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 8086 _ NUM CD _ 20 nummod _ _ 20 family _ NOUN NN _ 16 nmod _ _ 21 that _ PRON WDT _ 22 nsubj _ _ 22 forms _ VERB VBZ _ 20 acl:relcl _ _ 23 the _ DET DT _ 24 det _ _ 24 heart _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 28 case _ _ 26 IBM-compatible _ ADJ JJ _ 28 amod _ _ 27 personal _ ADJ JJ _ 28 amod _ _ 28 computers _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Intel _ PROPN NNP _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 invest _ VERB VB _ 0 root _ _ 8 $ _ SYM $ _ 7 dobj _ _ 9 3 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 to _ PART TO _ 12 mark _ _ 12 acquire _ VERB VB _ 7 advcl _ _ 13 a _ DET DT _ 16 det _ _ 14 4 _ NUM CD _ 15 compound _ _ 15 % _ SYM NN _ 16 amod _ _ 16 stake _ NOUN NN _ 12 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 Alliant _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 a _ DET DT _ 21 det _ _ 21 maker _ NOUN NN _ 18 appos _ _ 22 of _ ADP IN _ 23 case _ _ 23 minisupercomputers _ NOUN NNS _ 21 nmod _ _ 24 for _ ADP IN _ 25 case _ _ 25 scientists _ NOUN NNS _ 23 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 engineers _ NOUN NNS _ 25 conj _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 Alliant _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 based _ VERB VBN _ 1 acl _ _ 4 in _ ADP IN _ 5 case _ _ 5 Littleton _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mass. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 license _ VERB VB _ 0 root _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 parallel-computing _ ADJ JJ _ 13 amod _ _ 13 technologies _ NOUN NNS _ 10 dobj _ _ 14 to _ ADP TO _ 15 case _ _ 15 Intel _ PROPN NNP _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 providing _ VERB VBG _ 10 advcl _ _ 18 users _ NOUN NNS _ 17 iobj _ _ 19 a _ DET DT _ 20 det _ _ 20 way _ NOUN NN _ 17 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 let _ VERB VB _ 20 acl _ _ 23 many _ ADJ JJ _ 25 amod _ _ 24 i860 _ NOUN NN _ 25 compound _ _ 25 microprocessors _ NOUN NNS _ 30 nsubj _ _ 26 in _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 single _ ADJ JJ _ 29 amod _ _ 29 computer _ NOUN NN _ 25 nmod _ _ 30 work _ VERB VB _ 22 ccomp _ _ 31 on _ ADP IN _ 33 case _ _ 32 a _ DET DT _ 33 det _ _ 33 problem _ NOUN NN _ 30 nmod _ _ 34 simultaneously _ ADV RB _ 30 advmod _ _ 35 . _ PUNCT . _ 10 punct _ _ 1 Alliant _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 plans _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 use _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 microprocessor _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 future _ ADJ JJ _ 11 amod _ _ 11 products _ NOUN NNS _ 6 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 discuss _ VERB VB _ 2 xcomp _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 plans _ NOUN NNS _ 4 dobj _ _ 7 for _ SCONJ IN _ 8 mark _ _ 8 upgrading _ VERB VBG _ 6 acl _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 current _ ADJ JJ _ 12 amod _ _ 11 product _ NOUN NN _ 12 compound _ _ 12 line _ NOUN NN _ 8 dobj _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Omnicare _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 intends _ VERB VBZ _ 2 acl:relcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 expand _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 position _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 15 case _ _ 11 the _ DET DT _ 15 det _ _ 12 medical _ ADJ JJ _ 15 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 dental _ ADJ JJ _ 12 conj _ _ 15 markets _ NOUN NNS _ 9 nmod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 it _ PRON PRP _ 19 nsubj _ _ 19 acquired _ VERB VBD _ 17 ccomp _ _ 20 a _ DET DT _ 21 det _ _ 21 cotton _ NOUN NN _ 19 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 gauze _ NOUN NN _ 25 compound _ _ 24 products _ NOUN NNS _ 25 compound _ _ 25 division _ NOUN NN _ 21 conj _ _ 26 from _ ADP IN _ 31 case _ _ 27 closely _ ADV RB _ 28 advmod _ _ 28 held _ VERB VBN _ 31 amod _ _ 29 Sterile _ PROPN NNP _ 31 compound _ _ 30 Products _ PROPN NNP _ 31 compound _ _ 31 Corp. _ PROPN NNP _ 19 nmod _ _ 32 for _ ADP IN _ 33 case _ _ 33 $ _ SYM $ _ 19 nmod _ _ 34 8.2 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 17 punct _ _ 1 Omnicare _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 division _ NOUN NN _ 8 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 add _ VERB VB _ 4 ccomp _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 substantial _ ADJ JJ _ 12 amod _ _ 11 sales _ NOUN NNS _ 12 compound _ _ 12 volume _ NOUN NN _ 8 dobj _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 8 conj _ _ 16 a _ DET DT _ 18 det _ _ 17 positive _ ADJ JJ _ 18 amod _ _ 18 contribution _ NOUN NN _ 15 dobj _ _ 19 to _ ADP TO _ 21 case _ _ 20 our _ PRON PRP$ _ 21 nmod:poss _ _ 21 earnings _ NOUN NNS _ 18 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 1990 _ NUM CD _ 15 dep _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 beyond _ ADP IN _ 23 conj _ _ 26 . _ PUNCT . _ 2 punct _ _ 27 '' _ PUNCT '' _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1988 _ NUM CD _ 6 nmod _ _ 3 the _ DET DT _ 5 det _ _ 4 Cincinnati _ PROPN NNP _ 5 compound _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 earned _ VERB VBD _ 0 root _ _ 7 $ _ SYM $ _ 6 dobj _ _ 8 3.1 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 or _ CONJ CC _ 7 cc _ _ 12 32 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 7 conj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 on _ ADP IN _ 18 case _ _ 18 revenue _ NOUN NN _ 6 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 18 nmod _ _ 21 148.5 _ NUM CD _ 22 compound _ _ 22 million _ NUM CD _ 20 nummod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Omnicare _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 division _ NOUN NN _ 5 nsubj _ _ 5 operates _ VERB VBZ _ 2 ccomp _ _ 6 under _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 trade _ NOUN NN _ 10 compound _ _ 9 name _ NOUN NN _ 10 compound _ _ 10 ACCO _ PROPN NNP _ 5 nmod _ _ 11 and _ CONJ CC _ 5 cc _ _ 12 supplies _ VERB VBZ _ 5 conj _ _ 13 the _ DET DT _ 17 det _ _ 14 medical _ ADJ JJ _ 17 amod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 dental _ ADJ JJ _ 14 conj _ _ 17 markets _ NOUN NNS _ 12 dobj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 business _ NOUN NN _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 St. _ PROPN NNP _ 7 compound _ _ 7 Louis _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 had _ VERB VBD _ 26 ccomp _ _ 10 sales _ NOUN NNS _ 9 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 more _ ADJ JJR _ 14 advmod _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 $ _ SYM $ _ 10 nmod _ _ 15 14 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 fiscal _ ADJ JJ _ 20 amod _ _ 20 year _ NOUN NN _ 9 nmod _ _ 21 ended _ VERB VBN _ 20 acl _ _ 22 March _ PROPN NNP _ 21 nmod:tmod _ _ 23 31 _ NUM CD _ 22 nummod _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 Omnicare _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Burmah _ PROPN NNP _ 3 compound _ _ 2 Oil _ PROPN NNP _ 3 compound _ _ 3 PLC _ PROPN NNP _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 8 det _ _ 6 British _ PROPN NNP _ 8 compound _ _ 7 independent _ ADJ JJ _ 8 amod _ _ 8 oil _ NOUN NN _ 3 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 specialty _ NOUN NN _ 13 compound _ _ 11 chemicals _ NOUN NNS _ 13 compound _ _ 12 marketing _ NOUN NN _ 13 compound _ _ 13 concern _ NOUN NN _ 8 conj _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 SHV _ PROPN NNP _ 18 compound _ _ 17 Holdings _ PROPN NNP _ 18 compound _ _ 18 N.V. _ PROPN NNP _ 23 nsubj _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 Netherlands _ PROPN NNP _ 18 nmod _ _ 22 has _ AUX VBZ _ 23 aux _ _ 23 built _ VERB VBN _ 15 ccomp _ _ 24 up _ ADP RP _ 23 compound:prt _ _ 25 a _ DET DT _ 28 det _ _ 26 6.7 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 28 amod _ _ 28 stake _ NOUN NN _ 23 dobj _ _ 29 in _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 company _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 15 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Alexander _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 Burmah _ PROPN NNP _ 6 compound _ _ 6 spokesman _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 SHV _ PROPN NNP _ 12 nsubj _ _ 10 had _ AUX VBD _ 12 aux _ _ 11 previously _ ADV RB _ 12 advmod _ _ 12 owned _ VERB VBN _ 8 ccomp _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 a _ DET DT _ 17 advmod _ _ 15 little _ ADJ JJ _ 17 advmod _ _ 16 under _ ADP IN _ 17 advmod _ _ 17 5 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 12 dobj _ _ 19 '' _ PUNCT '' _ 18 punct _ _ 20 of _ ADP IN _ 21 case _ _ 21 Burmah _ PROPN NNP _ 18 nmod _ _ 22 for _ ADP IN _ 25 case _ _ 23 about _ ADV RB _ 24 advmod _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 years _ NOUN NNS _ 12 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Dutch _ PROPN NNP _ 3 compound _ _ 3 company _ NOUN NN _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 notified _ VERB VBN _ 17 ccomp _ _ 7 Burmah _ PROPN NNP _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 reason _ NOUN NN _ 6 nmod _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 increasing _ VERB VBG _ 10 acl _ _ 13 the _ DET DT _ 14 det _ _ 14 stake _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 SHV _ PROPN NNP _ 23 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 6 nsubj _ _ 4 last _ ADJ JJ _ 5 amod _ _ 5 year _ NOUN NN _ 6 dep _ _ 6 merged _ VERB VBD _ 1 acl:relcl _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 North _ PROPN NNP _ 10 compound _ _ 9 Sea _ PROPN NNP _ 10 compound _ _ 10 oil _ NOUN NN _ 6 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 gas _ NOUN NN _ 13 compound _ _ 13 operations _ NOUN NNS _ 10 conj _ _ 14 with _ ADP IN _ 15 case _ _ 15 those _ PRON DT _ 6 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 Calor _ PROPN NNP _ 19 compound _ _ 18 Group _ PROPN NNP _ 19 compound _ _ 19 PLC _ PROPN NNP _ 15 nmod _ _ 20 , _ PUNCT , _ 1 punct _ _ 21 has _ AUX VBZ _ 23 aux _ _ 22 been _ AUX VBN _ 23 auxpass _ _ 23 pegged _ VERB VBN _ 0 root _ _ 24 by _ ADP IN _ 25 case _ _ 25 speculators _ NOUN NNS _ 23 nmod _ _ 26 as _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 possible _ ADJ JJ _ 29 amod _ _ 29 suitor _ NOUN NN _ 23 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 Burmah _ PROPN NNP _ 32 compound _ _ 32 Oil _ PROPN NNP _ 29 nmod _ _ 33 in _ ADP IN _ 35 case _ _ 34 recent _ ADJ JJ _ 35 amod _ _ 35 weeks _ NOUN NNS _ 23 nmod _ _ 36 . _ PUNCT . _ 23 punct _ _ 1 SHV _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 owns _ VERB VBZ _ 0 root _ _ 4 40 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 Calor _ PROPN NNP _ 5 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Burmah _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 owns _ VERB VBZ _ 1 acl:relcl _ _ 5 the _ DET DT _ 7 det _ _ 6 Castrol _ PROPN NNP _ 7 compound _ _ 7 brand _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 lubricant _ ADJ JJ _ 10 amod _ _ 10 oils _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 reported _ VERB VBD _ 0 root _ _ 13 a _ DET DT _ 16 det _ _ 14 17 _ NUM CD _ 15 compound _ _ 15 % _ SYM NN _ 16 amod _ _ 16 rise _ NOUN NN _ 12 dobj _ _ 17 in _ ADP IN _ 19 case _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 income _ NOUN NN _ 16 nmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 # _ SYM # _ 23 compound _ _ 22 43.5 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 16 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 25 punct _ _ 25 $ _ SYM $ _ 23 dep _ _ 26 68.3 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 -RRB- _ PUNCT -RRB- _ 25 punct _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 first _ ADJ JJ _ 32 amod _ _ 32 half _ NOUN NN _ 16 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 J.P. _ PROPN NNP _ 3 compound _ _ 2 Industries _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 signed _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 definitive _ ADJ JJ _ 9 amod _ _ 9 agreement _ NOUN NN _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 9 acl _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 Builders _ PROPN NNP _ 16 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 Hardware _ PROPN NNP _ 16 compound _ _ 16 Group _ PROPN NNP _ 11 dobj _ _ 17 to _ ADP TO _ 21 case _ _ 18 closely _ ADV RB _ 19 advmod _ _ 19 held _ VERB VBN _ 21 amod _ _ 20 Nalcor _ PROPN NNP _ 21 compound _ _ 21 Inc. _ PROPN NNP _ 11 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 Beverly _ PROPN NNP _ 24 compound _ _ 24 Hills _ PROPN NNP _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Calif _ PROPN NNP _ 24 appos _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 but _ CONJ CC _ 4 cc _ _ 7 a _ DET DT _ 10 det _ _ 8 J.P. _ PROPN NNP _ 10 compound _ _ 9 Industries _ PROPN NNP _ 10 compound _ _ 10 spokesman _ NOUN NN _ 11 nsubj _ _ 11 said _ VERB VBD _ 4 conj _ _ 12 the _ DET DT _ 13 det _ _ 13 amount _ NOUN NN _ 25 nsubj _ _ 14 J.P. _ PROPN NNP _ 15 compound _ _ 15 Industries _ PROPN NNP _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 get _ VERB VB _ 13 acl:relcl _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 group _ NOUN NN _ 17 nmod _ _ 21 is _ VERB VBZ _ 25 cop _ _ 22 `` _ PUNCT `` _ 25 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 little _ ADV RB _ 25 nmod:npmod _ _ 25 better _ ADV RBR _ 11 dep _ _ 26 than _ SCONJ IN _ 27 mark _ _ 27 expected _ VERB VBN _ 25 ccomp _ _ 28 by _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 marketplace _ NOUN NN _ 27 nmod _ _ 31 , _ PUNCT , _ 25 punct _ _ 32 and _ CONJ CC _ 25 cc _ _ 33 the _ DET DT _ 34 det _ _ 34 marketplace _ NOUN NN _ 37 nsubj _ _ 35 had _ AUX VBD _ 37 aux _ _ 36 been _ AUX VBN _ 37 aux _ _ 37 expecting _ VERB VBG _ 25 conj _ _ 38 $ _ SYM $ _ 42 dep _ _ 39 25 _ NUM CD _ 42 compound _ _ 40 million _ NUM CD _ 42 compound _ _ 41 to _ ADP TO _ 42 dep _ _ 42 $ _ SYM $ _ 37 dobj _ _ 43 30 _ NUM CD _ 44 compound _ _ 44 million _ NUM CD _ 42 nummod _ _ 45 . _ PUNCT . _ 4 punct _ _ 46 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 3 nsubj _ _ 3 consists _ VERB VBZ _ 0 root _ _ 4 of _ ADP IN _ 6 case _ _ 5 Weslock _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 JPI _ PROPN NNP _ 10 compound _ _ 9 Modern _ PROPN NNP _ 10 compound _ _ 10 Inc _ PROPN NNP _ 6 conj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 J.P. _ PROPN NNP _ 2 compound _ _ 2 Industries _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 based _ VERB VBN _ 2 acl:relcl _ _ 7 in _ ADP IN _ 9 case _ _ 8 Ann _ PROPN NNP _ 9 compound _ _ 9 Arbor _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Mich. _ PROPN NNP _ 9 appos _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 sale _ NOUN NN _ 16 nsubj _ _ 16 completes _ VERB VBZ _ 13 ccomp _ _ 17 a _ DET DT _ 20 det _ _ 18 previously _ ADV RB _ 19 advmod _ _ 19 announced _ VERB VBN _ 20 amod _ _ 20 program _ NOUN NN _ 16 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 divest _ VERB VB _ 20 acl _ _ 23 itself _ PRON PRP _ 22 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 hardware _ NOUN NN _ 22 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 plumbing _ NOUN NN _ 30 compound _ _ 29 supplies _ NOUN NNS _ 30 compound _ _ 30 operations _ NOUN NNS _ 26 conj _ _ 31 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 remaining _ ADJ JJ _ 5 amod _ _ 5 business _ NOUN NN _ 8 nsubj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 manufacture _ NOUN NN _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 sale _ NOUN NN _ 8 conj _ _ 11 of _ ADP IN _ 15 case _ _ 12 engine _ NOUN NN _ 15 compound _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 transmissions _ NOUN NNS _ 12 conj _ _ 15 products _ NOUN NNS _ 8 nmod _ _ 16 for _ ADP IN _ 20 case _ _ 17 industrial _ ADJ JJ _ 20 amod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 transportation _ NOUN NN _ 17 conj _ _ 20 applications _ NOUN NNS _ 15 nmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 Citing _ VERB VBG _ 15 advcl _ _ 2 a _ DET DT _ 6 det _ _ 3 $ _ SYM $ _ 6 amod _ _ 4 3.1 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 provision _ NOUN NN _ 1 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 doubtful _ ADJ JJ _ 9 amod _ _ 9 accounts _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 Dallas-based _ ADJ JJ _ 14 amod _ _ 12 National _ PROPN NNP _ 14 compound _ _ 13 Heritage _ PROPN NNP _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 15 nsubj _ _ 15 posted _ VERB VBD _ 0 root _ _ 16 a _ DET DT _ 17 det _ _ 17 loss _ NOUN NN _ 15 dobj _ _ 18 for _ ADP IN _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 fourth _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 17 nmod _ _ 22 ended _ VERB VBN _ 21 acl _ _ 23 June _ PROPN NNP _ 22 nmod:tmod _ _ 24 30 _ NUM CD _ 23 nummod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 unit _ NOUN NN _ 16 ccomp _ _ 3 of _ ADP IN _ 6 case _ _ 4 troubled _ VERB VBN _ 6 amod _ _ 5 Southmark _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 16 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 operator _ NOUN NN _ 16 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 nursing _ NOUN NN _ 12 compound _ _ 12 homes _ NOUN NNS _ 9 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 retirement _ NOUN NN _ 15 compound _ _ 15 centers _ NOUN NNS _ 12 conj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 sustained _ VERB VBD _ 16 ccomp _ _ 19 a _ DET DT _ 21 det _ _ 20 net _ ADJ JJ _ 21 amod _ _ 21 loss _ NOUN NN _ 18 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 1.6 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 nine _ NUM CD _ 29 nummod _ _ 29 cents _ NOUN NNS _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 compared _ VERB VBN _ 36 case _ _ 34 with _ ADP IN _ 36 case _ _ 35 net _ ADJ JJ _ 36 amod _ _ 36 income _ NOUN NN _ 18 advcl _ _ 37 of _ ADP IN _ 38 case _ _ 38 $ _ SYM $ _ 36 nmod _ _ 39 1.3 _ NUM CD _ 40 compound _ _ 40 million _ NUM CD _ 38 nummod _ _ 41 , _ PUNCT , _ 38 punct _ _ 42 or _ CONJ CC _ 38 cc _ _ 43 eight _ NUM CD _ 44 nummod _ _ 44 cents _ NOUN NNS _ 38 conj _ _ 45 a _ DET DT _ 46 det _ _ 46 share _ NOUN NN _ 44 nmod:npmod _ _ 47 , _ PUNCT , _ 38 punct _ _ 48 a _ DET DT _ 49 det _ _ 49 year _ NOUN NN _ 50 nmod:npmod _ _ 50 earlier _ ADV RBR _ 38 advmod _ _ 51 . _ PUNCT . _ 16 punct _ _ 1 Operating _ NOUN NN _ 2 compound _ _ 2 revenue _ NOUN NN _ 3 nsubj _ _ 3 rose _ VERB VBD _ 0 root _ _ 4 13 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 to _ ADP TO _ 7 case _ _ 7 $ _ SYM $ _ 3 nmod _ _ 8 22.2 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 from _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 3 nmod _ _ 12 19.7 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 year-earlier _ ADJ JJ _ 17 amod _ _ 17 quarter _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 3.1 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 reserve _ NOUN NN _ 10 nsubjpass _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 created _ VERB VBN _ 3 ccomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 reflect _ VERB VB _ 10 xcomp _ _ 13 doubt _ NOUN NN _ 12 dobj _ _ 14 about _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 collectability _ NOUN NN _ 13 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 receivables _ NOUN NNS _ 16 nmod _ _ 19 owed _ VERB VBN _ 18 acl _ _ 20 to _ ADP TO _ 22 case _ _ 21 National _ PROPN NNP _ 22 compound _ _ 22 Heritage _ PROPN NNP _ 19 nmod _ _ 23 by _ ADP IN _ 24 case _ _ 24 some _ DET DT _ 19 nmod _ _ 25 of _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 real _ ADJ JJ _ 29 amod _ _ 28 estate _ NOUN NN _ 29 compound _ _ 29 partnerships _ NOUN NNS _ 24 nmod _ _ 30 it _ PRON PRP _ 31 nsubj _ _ 31 manages _ VERB VBZ _ 29 acl:relcl _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 expenses _ NOUN NNS _ 20 nsubjpass _ _ 6 incurred _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 previous _ ADJ JJ _ 10 amod _ _ 10 board _ NOUN NN _ 6 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 management _ NOUN NN _ 10 conj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 recent _ ADJ JJ _ 16 amod _ _ 16 contest _ NOUN NN _ 6 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 control _ NOUN NN _ 16 nmod _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 recognized _ VERB VBN _ 4 ccomp _ _ 21 primarily _ ADV RB _ 20 advmod _ _ 22 in _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 first _ ADJ JJ _ 25 amod _ _ 25 quarter _ NOUN NN _ 20 nmod _ _ 26 ended _ VERB VBN _ 25 acl _ _ 27 Sept. _ PROPN NNP _ 26 nmod:tmod _ _ 28 30 _ NUM CD _ 27 nummod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 National _ PROPN NNP _ 3 compound _ _ 2 Heritage _ PROPN NNP _ 3 compound _ _ 3 stock _ NOUN NN _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 12.5 _ NUM CD _ 6 nummod _ _ 6 cents _ NOUN NNS _ 4 dobj _ _ 7 yesterday _ NOUN NN _ 4 nmod:tmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 close _ VERB VB _ 4 advcl _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 1.375 _ NUM CD _ 9 nmod _ _ 13 a _ DET DT _ 14 det _ _ 14 share _ NOUN NN _ 12 nmod:npmod _ _ 15 in _ ADP IN _ 21 case _ _ 16 New _ PROPN NNP _ 21 compound _ _ 17 York _ PROPN NNP _ 21 compound _ _ 18 Stock _ PROPN NNP _ 21 compound _ _ 19 Exchange _ PROPN NNP _ 21 compound _ _ 20 composite _ ADJ JJ _ 21 amod _ _ 21 trading _ NOUN NN _ 9 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 United _ PROPN NNP _ 6 compound _ _ 2 Biscuits _ PROPN NNP _ 6 compound _ _ 3 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 4 Holdings _ PROPN NNP _ 6 compound _ _ 5 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 6 PLC _ PROPN NNP _ 13 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 11 det _ _ 9 British _ ADJ JJ _ 11 amod _ _ 10 food _ NOUN NN _ 11 compound _ _ 11 producer _ NOUN NN _ 6 appos _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 announced _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 creation _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 European _ ADJ JJ _ 19 amod _ _ 19 group _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 bring _ VERB VB _ 19 acl _ _ 22 together _ ADV RB _ 21 advmod _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 trading _ NOUN NN _ 25 compound _ _ 25 interests _ NOUN NNS _ 21 dobj _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 region _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 comprise _ VERB VB _ 0 root _ _ 6 all _ DET DT _ 5 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 United _ PROPN NNP _ 9 compound _ _ 9 Biscuit _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 manufacturing _ NOUN NN _ 6 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 marketing _ NOUN NN _ 14 compound _ _ 14 operations _ NOUN NNS _ 11 conj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 food _ NOUN NN _ 18 compound _ _ 18 sector _ NOUN NN _ 11 nmod _ _ 19 apart _ ADV RB _ 11 advmod _ _ 20 from _ ADP IN _ 21 case _ _ 21 those _ PRON DT _ 19 nmod _ _ 22 based _ VERB VBN _ 21 acl _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.S. _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 United _ PROPN NNP _ 2 compound _ _ 2 Biscuits _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 combined _ VERB VBN _ 6 amod _ _ 6 group _ NOUN NN _ 22 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 include _ VERB VB _ 6 acl:relcl _ _ 11 businesses _ NOUN NNS _ 10 dobj _ _ 12 such _ ADJ JJ _ 15 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 McVities _ PROPN NNP _ 15 compound _ _ 15 biscuits _ NOUN NNS _ 11 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Terry _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 confectionery _ NOUN NN _ 15 conj _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 will _ AUX MD _ 22 aux _ _ 22 have _ VERB VB _ 3 ccomp _ _ 23 annual _ ADJ JJ _ 24 amod _ _ 24 sales _ NOUN NNS _ 22 dobj _ _ 25 of _ ADP IN _ 30 case _ _ 26 more _ ADJ JJR _ 30 advmod _ _ 27 than _ ADP IN _ 26 mwe _ _ 28 # _ SYM # _ 30 compound _ _ 29 1.5 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 24 nmod _ _ 31 -LRB- _ PUNCT -LRB- _ 32 punct _ _ 32 $ _ SYM $ _ 30 dep _ _ 33 2.35 _ NUM CD _ 34 compound _ _ 34 billion _ NUM CD _ 32 nummod _ _ 35 -RRB- _ PUNCT -RRB- _ 32 punct _ _ 36 and _ CONJ CC _ 24 cc _ _ 37 trading _ NOUN NN _ 38 compound _ _ 38 profit _ NOUN NN _ 24 conj _ _ 39 of _ ADP IN _ 44 case _ _ 40 more _ ADJ JJR _ 44 advmod _ _ 41 than _ ADP IN _ 40 mwe _ _ 42 # _ SYM # _ 44 compound _ _ 43 160 _ NUM CD _ 44 compound _ _ 44 million _ NUM CD _ 38 nmod _ _ 45 -LRB- _ PUNCT -LRB- _ 46 punct _ _ 46 $ _ SYM $ _ 44 dep _ _ 47 251 _ NUM CD _ 48 compound _ _ 48 million _ NUM CD _ 46 nummod _ _ 49 -RRB- _ PUNCT -RRB- _ 46 punct _ _ 50 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 structure _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 enable _ VERB VB _ 22 dep _ _ 7 United _ PROPN NNP _ 8 compound _ _ 8 Biscuits _ PROPN NNP _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 focus _ VERB VB _ 6 xcomp _ _ 11 clearly _ ADV RB _ 10 advmod _ _ 12 upon _ ADP IN _ 13 case _ _ 13 opportunities _ NOUN NNS _ 10 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 planned _ VERB VBN _ 16 amod _ _ 16 growth _ NOUN NN _ 13 nmod _ _ 17 during _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 1990s _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 '' _ PUNCT '' _ 6 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Bob _ PROPN NNP _ 24 compound _ _ 24 Clarke _ PROPN NNP _ 22 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 deputy _ ADJ JJ _ 27 amod _ _ 27 chairman _ NOUN NN _ 24 appos _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 group _ NOUN NN _ 31 compound _ _ 30 chief _ ADJ JJ _ 31 amod _ _ 31 executive _ NOUN NN _ 27 conj _ _ 32 . _ PUNCT . _ 22 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 month _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 United _ PROPN NNP _ 5 compound _ _ 5 Biscuits _ PROPN NNP _ 6 nsubj _ _ 6 agreed _ VERB VBD _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 sell _ VERB VB _ 6 xcomp _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 entire _ ADJ JJ _ 12 amod _ _ 11 restaurant _ NOUN NN _ 12 compound _ _ 12 operations _ NOUN NNS _ 8 dobj _ _ 13 to _ ADP TO _ 16 case _ _ 14 Grand _ PROPN NNP _ 16 compound _ _ 15 Metropolitan _ PROPN NNP _ 16 compound _ _ 16 PLC _ PROPN NNP _ 8 nmod _ _ 17 for _ ADP IN _ 20 case _ _ 18 # _ SYM # _ 20 compound _ _ 19 180 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 8 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 An _ DET DT _ 3 det _ _ 2 American _ ADJ JJ _ 3 amod _ _ 3 journalist _ NOUN NN _ 6 nsubj _ _ 4 now _ ADV RB _ 6 advmod _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 standing _ VERB VBG _ 0 root _ _ 7 trial _ NOUN NN _ 6 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Namibia _ PROPN NNP _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 the _ DET DT _ 4 det _ _ 4 place _ NOUN NN _ 0 root _ _ 5 that _ DET DT _ 10 nmod _ _ 6 world _ NOUN NN _ 7 compound _ _ 7 opinion _ NOUN NN _ 10 nsubj _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 aux _ _ 10 celebrating _ VERB VBG _ 4 acl:relcl _ _ 11 over _ ADP IN _ 5 case _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 expectation _ NOUN NN _ 10 nmod _ _ 15 that _ SCONJ IN _ 18 mark _ _ 16 it _ PRON PRP _ 18 nsubj _ _ 17 's _ AUX VBZ _ 18 aux _ _ 18 going _ VERB VBG _ 14 ccomp _ _ 19 to _ PART TO _ 20 mark _ _ 20 hold _ VERB VB _ 18 xcomp _ _ 21 an _ DET DT _ 22 det _ _ 22 election _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 likely _ ADJ JJ _ 4 amod _ _ 4 winner _ NOUN NN _ 10 nsubj _ _ 5 will _ AUX MD _ 10 aux _ _ 6 be _ VERB VB _ 10 cop _ _ 7 the _ DET DT _ 10 det _ _ 8 Marxist-dominated _ ADJ JJ _ 10 amod _ _ 9 SWAPO _ PROPN NNP _ 10 compound _ _ 10 rebels _ NOUN NNS _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 U.S. _ PROPN NNP _ 3 compound _ _ 3 journalist _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 crime _ NOUN NN _ 9 nsubj _ _ 7 '' _ PUNCT '' _ 6 punct _ _ 8 was _ AUX VBD _ 9 aux _ _ 9 writing _ VERB VBG _ 0 root _ _ 10 that _ SCONJ IN _ 29 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 head _ NOUN NN _ 29 nsubj _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 commission _ NOUN NN _ 12 nmod _ _ 16 charged _ VERB VBN _ 12 acl _ _ 17 with _ SCONJ IN _ 18 mark _ _ 18 overseeing _ VERB VBG _ 16 advcl _ _ 19 the _ DET DT _ 20 det _ _ 20 election _ NOUN NN _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 fairness _ NOUN NN _ 18 dobj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 Bryan _ PROPN NNP _ 25 compound _ _ 25 O'Linn _ PROPN NNP _ 12 appos _ _ 26 , _ PUNCT , _ 12 punct _ _ 27 was _ VERB VBD _ 29 cop _ _ 28 openly _ ADV RB _ 29 advmod _ _ 29 sympathetic _ ADJ JJ _ 9 ccomp _ _ 30 to _ ADP TO _ 31 case _ _ 31 SWAPO _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 Shortly _ ADV RB _ 3 advmod _ _ 2 after _ ADP IN _ 3 case _ _ 3 that _ PRON DT _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 O'Linn _ PROPN NNP _ 7 nsubj _ _ 7 had _ VERB VBD _ 0 root _ _ 8 Scott _ PROPN NNP _ 9 compound _ _ 9 Stanley _ PROPN NNP _ 10 nsubj _ _ 10 arrested _ VERB VBN _ 7 xcomp _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 passport _ NOUN NN _ 14 nsubj _ _ 14 confiscated _ VERB VBN _ 10 conj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 on _ ADP IN _ 5 case _ _ 5 trial _ NOUN NN _ 0 root _ _ 6 over _ ADP IN _ 7 case _ _ 7 charges _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 violated _ VERB VBD _ 7 ccomp _ _ 11 a _ DET DT _ 12 det _ _ 12 proclamation _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 issued _ VERB VBN _ 12 acl _ _ 15 by _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 South _ ADJ JJ _ 18 amod _ _ 18 African _ ADJ JJ _ 20 amod _ _ 19 administrator _ NOUN NN _ 20 compound _ _ 20 general _ NOUN NN _ 14 nmod _ _ 21 earlier _ ADV RBR _ 23 advmod _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 14 nmod:tmod _ _ 24 , _ PUNCT , _ 12 punct _ _ 25 which _ PRON WDT _ 26 nsubj _ _ 26 made _ VERB VBD _ 12 acl:relcl _ _ 27 it _ PRON PRP _ 41 nsubj _ _ 28 a _ DET DT _ 29 det _ _ 29 crime _ NOUN NN _ 41 dep _ _ 30 punishable _ ADJ JJ _ 29 amod _ _ 31 by _ ADP IN _ 33 case _ _ 32 two _ NUM CD _ 33 nummod _ _ 33 years _ NOUN NNS _ 30 nmod _ _ 34 in _ ADP IN _ 35 case _ _ 35 prison _ NOUN NN _ 33 nmod _ _ 36 for _ SCONJ IN _ 41 mark _ _ 37 any _ DET DT _ 38 det _ _ 38 person _ NOUN NN _ 41 nsubj _ _ 39 to _ PART TO _ 41 mark _ _ 40 `` _ PUNCT `` _ 41 punct _ _ 41 insult _ VERB VB _ 26 xcomp _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 disparate _ ADJ JJ _ 41 conj _ _ 44 or _ CONJ CC _ 41 cc _ _ 45 belittle _ VERB VB _ 41 conj _ _ 46 '' _ PUNCT '' _ 41 punct _ _ 47 the _ DET DT _ 49 det _ _ 48 election _ NOUN NN _ 49 compound _ _ 49 commission _ NOUN NN _ 41 conj _ _ 50 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Stanley _ PROPN NNP _ 3 compound _ _ 3 affair _ NOUN NN _ 6 nsubj _ _ 4 does _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 bode _ VERB VB _ 0 root _ _ 7 well _ ADV RB _ 6 advmod _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 future _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 democracy _ NOUN NN _ 10 nmod _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 freedom _ NOUN NN _ 12 conj _ _ 15 of _ ADP IN _ 16 case _ _ 16 anything _ NOUN NN _ 14 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Namibia _ PROPN NNP _ 12 nmod _ _ 19 when _ ADV WRB _ 21 advmod _ _ 20 SWAPO _ PROPN NNP _ 21 nsubj _ _ 21 starts _ VERB VBZ _ 6 advcl _ _ 22 running _ VERB VBG _ 21 xcomp _ _ 23 the _ DET DT _ 24 det _ _ 24 government _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 extent _ NOUN NN _ 13 nmod _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Stanley _ PROPN NNP _ 7 nsubj _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 done _ VERB VBN _ 3 ccomp _ _ 8 anything _ NOUN NN _ 7 dobj _ _ 9 wrong _ ADJ JJ _ 8 amod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 may _ AUX MD _ 13 aux _ _ 13 be _ VERB VB _ 0 root _ _ 14 that _ SCONJ IN _ 19 mark _ _ 15 he _ PRON PRP _ 19 nsubj _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 out _ ADP IN _ 19 case _ _ 18 of _ ADP IN _ 19 case _ _ 19 step _ NOUN NN _ 13 ccomp _ _ 20 with _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 consensus _ NOUN NN _ 19 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 world _ NOUN NN _ 25 compound _ _ 25 intellectuals _ NOUN NNS _ 22 nmod _ _ 26 that _ SCONJ IN _ 35 mark _ _ 27 the _ DET DT _ 29 det _ _ 28 Namibian _ ADJ JJ _ 29 amod _ _ 29 guerrillas _ NOUN NNS _ 35 nsubj _ _ 30 were _ VERB VBD _ 35 cop _ _ 31 above _ ADP IN _ 33 case _ _ 32 all _ DET DT _ 33 det _ _ 33 else _ ADV RB _ 35 nmod _ _ 34 the _ DET DT _ 35 det _ _ 35 victims _ NOUN NNS _ 22 dep _ _ 36 of _ ADP IN _ 37 case _ _ 37 suppression _ NOUN NN _ 35 nmod _ _ 38 by _ ADP IN _ 41 case _ _ 39 neighboring _ ADJ JJ _ 41 amod _ _ 40 South _ PROPN NNP _ 41 compound _ _ 41 Africa _ PROPN NNP _ 37 nmod _ _ 42 . _ PUNCT . _ 13 punct _ _ 1 SWAPO _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 enjoyed _ VERB VBN _ 0 root _ _ 4 favorable _ ADJ JJ _ 7 amod _ _ 5 Western _ ADJ JJ _ 7 amod _ _ 6 media _ NOUN NNS _ 7 compound _ _ 7 treatment _ NOUN NN _ 3 dobj _ _ 8 ever _ ADV RB _ 14 advmod _ _ 9 since _ SCONJ IN _ 14 mark _ _ 10 the _ DET DT _ 13 det _ _ 11 U.N. _ PROPN NNP _ 13 compound _ _ 12 General _ PROPN NNP _ 13 compound _ _ 13 Assembly _ PROPN NNP _ 14 nsubj _ _ 14 declared _ VERB VBD _ 3 advcl _ _ 15 it _ PRON PRP _ 21 nsubj _ _ 16 the _ DET DT _ 21 det _ _ 17 `` _ PUNCT `` _ 21 punct _ _ 18 sole _ ADJ JJ _ 21 amod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 authentic _ ADJ JJ _ 21 amod _ _ 21 representative _ NOUN NN _ 14 xcomp _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 of _ ADP IN _ 26 case _ _ 24 Namibia _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 people _ NOUN NNS _ 21 nmod _ _ 27 in _ ADP IN _ 21 dep _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 year _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 6 nsubj _ _ 6 brokered _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 peace _ NOUN NN _ 9 compound _ _ 9 settlement _ NOUN NN _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 remove _ VERB VB _ 6 advcl _ _ 12 Cuba _ PROPN NNP _ 16 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 Afrika _ PROPN NNP _ 16 compound _ _ 16 Korps _ PROPN NNP _ 11 dobj _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 from _ ADP IN _ 19 case _ _ 19 Angola _ PROPN NNP _ 11 nmod _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 hold _ VERB VB _ 11 conj _ _ 22 `` _ PUNCT `` _ 27 punct _ _ 23 free _ ADJ JJ _ 27 amod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 fair _ ADJ JJ _ 23 conj _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 elections _ NOUN NNS _ 21 dobj _ _ 28 that _ PRON WDT _ 30 nsubj _ _ 29 would _ AUX MD _ 30 aux _ _ 30 end _ VERB VB _ 27 acl:relcl _ _ 31 South _ PROPN NNP _ 32 compound _ _ 32 Africa _ PROPN NNP _ 34 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 control _ NOUN NN _ 30 dobj _ _ 35 of _ ADP IN _ 36 case _ _ 36 Namibia _ PROPN NNP _ 34 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 elections _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 set _ VERB VBN _ 0 root _ _ 5 for _ ADP IN _ 6 case _ _ 6 Nov. _ PROPN NNP _ 4 nmod _ _ 7 7 _ NUM CD _ 6 nummod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 20 nmod _ _ 3 , _ PUNCT , _ 20 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Stanley _ PROPN NNP _ 20 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 editor _ NOUN NN _ 5 appos _ _ 8 of _ ADP IN _ 11 case _ _ 9 American _ PROPN NNP _ 11 compound _ _ 10 Press _ PROPN NNP _ 11 compound _ _ 11 International _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 a _ DET DT _ 18 det _ _ 14 Washington _ PROPN NNP _ 15 amod _ _ 15 D.C.-based _ ADJ JJ _ 18 amod _ _ 16 conservative _ ADJ JJ _ 18 amod _ _ 17 wire _ NOUN NN _ 18 compound _ _ 18 service _ NOUN NN _ 11 appos _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 visited _ VERB VBD _ 0 root _ _ 21 Namibia _ PROPN NNP _ 20 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 report _ VERB VB _ 20 advcl _ _ 24 on _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 U.N.-monitored _ ADJ JJ _ 28 amod _ _ 27 election _ NOUN NN _ 28 compound _ _ 28 campaign _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 interviewed _ VERB VBD _ 0 root _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 O'Linn _ PROPN NNP _ 2 dobj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 head _ NOUN NN _ 4 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 commission _ NOUN NN _ 6 nmod _ _ 10 charged _ VERB VBN _ 9 acl _ _ 11 with _ SCONJ IN _ 12 mark _ _ 12 investigating _ VERB VBG _ 10 advcl _ _ 13 electoral _ ADJ JJ _ 14 amod _ _ 14 intimidation _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 and _ CONJ CC _ 2 cc _ _ 17 reported _ VERB VBD _ 2 conj _ _ 18 that _ SCONJ IN _ 23 mark _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 O'Linn _ PROPN NNP _ 23 nsubj _ _ 21 was _ VERB VBD _ 23 cop _ _ 22 openly _ ADV RB _ 23 advmod _ _ 23 sympathetic _ ADJ JJ _ 17 ccomp _ _ 24 to _ ADP TO _ 25 case _ _ 25 SWAPO _ PROPN NNP _ 23 nmod _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 indeed _ ADV RB _ 29 advmod _ _ 28 had _ AUX VBD _ 29 aux _ _ 29 defended _ VERB VBN _ 23 conj _ _ 30 its _ PRON PRP$ _ 31 nmod:poss _ _ 31 leaders _ NOUN NNS _ 29 dobj _ _ 32 in _ ADP IN _ 33 case _ _ 33 court _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 After _ SCONJ IN _ 7 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Stanley _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 article _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 published _ VERB VBN _ 18 advcl _ _ 8 in _ ADP IN _ 11 case _ _ 9 two _ NUM CD _ 11 nummod _ _ 10 Namibian _ ADJ JJ _ 11 amod _ _ 11 newspapers _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 O'Linn _ PROPN NNP _ 18 nsubj _ _ 15 had _ AUX VBD _ 18 aux _ _ 16 criminal _ ADJ JJ _ 17 amod _ _ 17 charges _ NOUN NNS _ 18 dobj _ _ 18 brought _ VERB VBN _ 0 root _ _ 19 against _ ADP IN _ 21 case _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 editors _ NOUN NNS _ 18 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 publisher _ NOUN NN _ 21 conj _ _ 24 and _ CONJ CC _ 21 cc _ _ 25 lawyer _ NOUN NN _ 21 conj _ _ 26 . _ PUNCT . _ 18 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 arrested _ VERB VBN _ 0 root _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 charged _ VERB VBN _ 4 conj _ _ 7 along _ ADP IN _ 4 advmod _ _ 8 with _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 others _ NOUN NNS _ 7 nmod _ _ 11 when _ ADV WRB _ 13 advmod _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 returned _ VERB VBD _ 4 advcl _ _ 14 to _ ADP TO _ 15 case _ _ 15 Namibia _ PROPN NNP _ 13 nmod _ _ 16 this _ DET DT _ 17 det _ _ 17 month _ NOUN NN _ 13 nmod:tmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Both _ DET DT _ 4 cc:preconj _ _ 2 the _ DET DT _ 4 det _ _ 3 State _ PROPN NNP _ 4 compound _ _ 4 Department _ PROPN NNP _ 15 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 the _ DET DT _ 8 det _ _ 7 Lawyers _ PROPN NNP _ 8 compound _ _ 8 Committee _ PROPN NNP _ 4 conj _ _ 9 for _ ADP IN _ 10 case _ _ 10 Freedom _ PROPN NNP _ 8 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 Press _ PROPN NNP _ 10 nmod _ _ 14 have _ AUX VBP _ 15 aux _ _ 15 protested _ VERB VBN _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Stanley _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 detention _ NOUN NN _ 15 dobj _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 arrest _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 latest _ ADJ JJS _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 series _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 incidents _ NOUN NNS _ 10 nmod _ _ 13 that _ PRON WDT _ 14 nsubj _ _ 14 threaten _ VERB VBP _ 12 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 derail _ VERB VB _ 14 xcomp _ _ 17 Namibia _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 elections _ NOUN NNS _ 16 dobj _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 Both _ DET DT _ 6 cc:preconj _ _ 2 South _ PROPN NNP _ 3 compound _ _ 3 African _ PROPN NNP _ 6 compound _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 SWAPO _ PROPN NNP _ 3 conj _ _ 6 extremists _ NOUN NNS _ 8 nsubj _ _ 7 are _ AUX VBP _ 8 aux _ _ 8 intimidating _ VERB VBG _ 0 root _ _ 9 voters _ NOUN NNS _ 8 dobj _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 habit _ NOUN NN _ 0 root _ _ 7 of _ SCONJ IN _ 8 mark _ _ 8 arranging _ VERB VBG _ 6 acl _ _ 9 peace _ NOUN NN _ 10 compound _ _ 10 settlements _ NOUN NNS _ 8 dobj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 then _ ADV RB _ 13 advmod _ _ 13 washing _ VERB VBG _ 8 conj _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 hands _ NOUN NNS _ 13 dobj _ _ 16 over _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 tragic _ ADJ JJ _ 19 amod _ _ 19 results _ NOUN NNS _ 13 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 now _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 chance _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 redress _ VERB VB _ 5 acl _ _ 8 that _ DET DT _ 9 det _ _ 9 record _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 Namibia _ PROPN NNP _ 7 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 State _ PROPN NNP _ 7 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 the _ DET DT _ 5 det _ _ 4 human-rights _ ADJ JJ _ 5 amod _ _ 5 community _ NOUN NN _ 1 conj _ _ 6 should _ AUX MD _ 7 aux _ _ 7 insist _ VERB VB _ 0 root _ _ 8 that _ SCONJ IN _ 16 mark _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Stanley _ PROPN NNP _ 16 nsubjpass _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 his _ PRON PRP$ _ 14 nmod:poss _ _ 13 fellow _ ADJ JJ _ 14 amod _ _ 14 defendants _ NOUN NNS _ 10 conj _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 released _ VERB VBN _ 7 ccomp _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 that _ SCONJ IN _ 24 mark _ _ 19 the _ DET DT _ 21 det _ _ 20 United _ PROPN NNP _ 21 compound _ _ 21 Nation _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 monitors _ NOUN NNS _ 24 nsubj _ _ 24 make _ VERB VB _ 16 conj _ _ 25 certain _ ADJ JJ _ 24 xcomp _ _ 26 that _ SCONJ IN _ 30 mark _ _ 27 Mr. _ PROPN NNP _ 29 compound _ _ 28 O'Linn's _ PROPN NNP _ 29 compound _ _ 29 commission _ NOUN NN _ 30 nsubj _ _ 30 investigates _ VERB VBZ _ 25 ccomp _ _ 31 election _ NOUN NN _ 32 compound _ _ 32 complaints _ NOUN NNS _ 30 dobj _ _ 33 from _ ADP IN _ 35 case _ _ 34 all _ DET DT _ 35 det _ _ 35 sides _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 Commodity _ NOUN NN _ 3 compound _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 prices _ NOUN NNS _ 5 nsubj _ _ 4 generally _ ADV RB _ 5 advmod _ _ 5 reflected _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 stability _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 7 nmod _ _ 12 following _ VERB VBG _ 14 case _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 plunge _ NOUN NN _ 5 nmod _ _ 15 Friday _ PROPN NNP _ 14 nmod:tmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 Yesterday _ NOUN NN _ 10 nmod:tmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 influence _ NOUN NN _ 10 nsubj _ _ 8 at _ ADP IN _ 9 case _ _ 9 first _ ADJ JJ _ 10 advcl _ _ 10 created _ VERB VBD _ 0 root _ _ 11 nervousness _ NOUN NN _ 10 dobj _ _ 12 . _ PUNCT . _ 10 punct _ _ 1 Later _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 however _ ADV RB _ 6 advmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 became _ VERB VBD _ 0 root _ _ 7 more _ ADJ JJR _ 6 xcomp _ _ 8 of _ ADP IN _ 10 case _ _ 9 an _ DET DT _ 10 det _ _ 10 undercurrent _ NOUN NN _ 7 nmod _ _ 11 than _ ADP IN _ 14 case _ _ 12 a _ DET DT _ 14 det _ _ 13 dominating _ ADJ JJ _ 14 amod _ _ 14 force _ NOUN NN _ 7 nmod _ _ 15 as _ SCONJ IN _ 18 mark _ _ 16 individual _ ADJ JJ _ 17 amod _ _ 17 markets _ NOUN NNS _ 18 nsubj _ _ 18 reacted _ VERB VBD _ 6 advcl _ _ 19 more _ ADV RBR _ 18 advmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 their _ PRON PRP$ _ 23 nmod:poss _ _ 22 own _ ADJ JJ _ 23 amod _ _ 23 factors _ NOUN NNS _ 18 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Gold _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 traditional _ ADJ JJ _ 5 amod _ _ 5 haven _ NOUN NN _ 1 appos _ _ 6 in _ ADP IN _ 7 case _ _ 7 times _ NOUN NNS _ 5 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 financial _ ADJ JJ _ 10 amod _ _ 10 crisis _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 continued _ VERB VBD _ 0 root _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 inverse _ ADJ JJ _ 15 amod _ _ 15 lockstep _ NOUN NN _ 12 dobj _ _ 16 with _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 dollar _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 rising _ VERB VBG _ 12 dep _ _ 21 early _ ADV RB _ 20 advmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 day _ NOUN NN _ 21 nmod _ _ 25 as _ SCONJ IN _ 28 mark _ _ 26 the _ DET DT _ 27 det _ _ 27 currency _ NOUN NN _ 28 nsubj _ _ 28 fell _ VERB VBD _ 20 advcl _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 and _ CONJ CC _ 20 cc _ _ 31 then _ ADV RB _ 32 advmod _ _ 32 giving _ VERB VBG _ 20 conj _ _ 33 up _ ADP RP _ 32 compound:prt _ _ 34 some _ DET DT _ 32 dobj _ _ 35 of _ ADP IN _ 37 case _ _ 36 its _ PRON PRP$ _ 37 nmod:poss _ _ 37 gains _ NOUN NNS _ 34 nmod _ _ 38 as _ SCONJ IN _ 41 mark _ _ 39 the _ DET DT _ 40 det _ _ 40 dollar _ NOUN NN _ 41 nsubj _ _ 41 recovered _ VERB VBD _ 32 advcl _ _ 42 . _ PUNCT . _ 12 punct _ _ 1 Copper _ NOUN NN _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 crude _ NOUN NN _ 4 compound _ _ 4 oil _ NOUN NN _ 1 conj _ _ 5 reacted _ VERB VBD _ 0 root _ _ 6 sharply _ ADV RB _ 5 advmod _ _ 7 to _ ADP TO _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 concern _ NOUN NN _ 5 nmod _ _ 10 that _ SCONJ IN _ 15 mark _ _ 11 a _ DET DT _ 12 det _ _ 12 crash _ NOUN NN _ 15 nsubj _ _ 13 yesterday _ NOUN NN _ 15 nmod:tmod _ _ 14 could _ AUX MD _ 15 aux _ _ 15 have _ VERB VB _ 9 ccomp _ _ 16 a _ DET DT _ 19 det _ _ 17 potentially _ ADV RB _ 18 advmod _ _ 18 devastating _ VERB VBG _ 19 amod _ _ 19 effect _ NOUN NN _ 15 dobj _ _ 20 on _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 economy _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 Copper _ PROPN NNP _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 showed _ VERB VBD _ 2 conj _ _ 5 little _ ADJ JJ _ 6 amod _ _ 6 rebound _ NOUN NN _ 4 dobj _ _ 7 through _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 day _ NOUN NN _ 4 nmod _ _ 10 as _ SCONJ IN _ 22 mark _ _ 11 one _ NUM CD _ 22 nsubj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 major _ ADJ JJ _ 16 amod _ _ 15 supply _ NOUN NN _ 16 compound _ _ 16 problems _ NOUN NNS _ 11 nmod _ _ 17 that _ PRON WDT _ 20 nsubj _ _ 18 had _ AUX VBD _ 20 aux _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 supporting _ VERB VBG _ 11 acl:relcl _ _ 21 prices _ NOUN NNS _ 20 dobj _ _ 22 appeared _ VERB VBD _ 4 advcl _ _ 23 to _ PART TO _ 25 mark _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 solved _ VERB VBN _ 22 xcomp _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 Crude _ ADJ JJ _ 2 amod _ _ 2 oil _ NOUN NN _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 early _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 but _ CONJ CC _ 3 cc _ _ 7 as _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 11 nsubj _ _ 11 retained _ VERB VBD _ 19 advcl _ _ 12 early _ ADJ JJ _ 13 amod _ _ 13 gains _ NOUN NNS _ 11 dobj _ _ 14 , _ PUNCT , _ 19 punct _ _ 15 it _ PRON PRP _ 19 nsubj _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 too _ ADV RB _ 19 advmod _ _ 18 , _ PUNCT , _ 19 punct _ _ 19 became _ VERB VBD _ 3 conj _ _ 20 stronger _ ADJ JJR _ 19 xcomp _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 ending _ VERB VBG _ 19 xcomp _ _ 23 with _ ADP IN _ 27 case _ _ 24 a _ DET DT _ 27 det _ _ 25 small _ ADJ JJ _ 27 amod _ _ 26 net _ NOUN NN _ 27 compound _ _ 27 loss _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Trading _ NOUN NN _ 7 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 cotton _ NOUN NN _ 1 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 sugar _ NOUN NN _ 3 conj _ _ 6 was _ VERB VBD _ 7 cop _ _ 7 nervous _ ADJ JJ _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 showed _ VERB VBD _ 7 conj _ _ 10 small _ ADJ JJ _ 11 amod _ _ 11 declines _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Chicago _ PROPN NNP _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 grain _ NOUN NN _ 7 compound _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 soybean _ NOUN NN _ 4 conj _ _ 7 prices _ NOUN NNS _ 8 nsubj _ _ 8 rose _ VERB VBD _ 0 root _ _ 9 slightly _ ADV RB _ 8 advmod _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 Livestock _ NOUN NN _ 4 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 meat _ NOUN NN _ 1 conj _ _ 4 prices _ NOUN NNS _ 8 nsubj _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 however _ ADV RB _ 8 advmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 dropped _ VERB VBD _ 0 root _ _ 9 on _ ADP IN _ 10 case _ _ 10 concern _ NOUN NN _ 8 nmod _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 a _ DET DT _ 14 det _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 crisis _ NOUN NN _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 cut _ VERB VB _ 10 ccomp _ _ 17 consumption _ NOUN NN _ 16 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 beef _ NOUN NN _ 17 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 pork _ NOUN NN _ 19 conj _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 commodity _ NOUN NN _ 3 compound _ _ 3 markets _ NOUN NNS _ 4 nmod _ _ 4 yesterday _ NOUN NN _ 0 root _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 PRECIOUS _ ADJ JJ _ 7 amod _ _ 7 METALS _ NOUN NNS _ 4 dep _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 Futures _ NOUN NNS _ 10 compound _ _ 10 prices _ NOUN NNS _ 13 nsubj _ _ 11 were _ VERB VBD _ 13 cop _ _ 12 moderately _ ADV RB _ 13 advmod _ _ 13 higher _ ADJ JJR _ 7 dep _ _ 14 as _ SCONJ IN _ 16 mark _ _ 15 gold _ NOUN NN _ 16 nsubj _ _ 16 gave _ VERB VBD _ 13 advcl _ _ 17 up _ ADP RP _ 16 compound:prt _ _ 18 some _ DET DT _ 16 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 early _ ADJ JJ _ 22 amod _ _ 22 gains _ NOUN NNS _ 18 nmod _ _ 23 and _ CONJ CC _ 16 cc _ _ 24 platinum _ NOUN NN _ 25 nsubj _ _ 25 behaved _ VERB VBD _ 16 conj _ _ 26 independently _ ADV RB _ 25 advmod _ _ 27 , _ PUNCT , _ 25 punct _ _ 28 first _ ADV RB _ 29 advmod _ _ 29 falling _ VERB VBG _ 25 ccomp _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 then _ ADV RB _ 33 advmod _ _ 32 later _ ADV RBR _ 33 advmod _ _ 33 rising _ VERB VBG _ 29 conj _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Silver _ NOUN NN _ 2 nsubj _ _ 2 performed _ VERB VBD _ 0 root _ _ 3 quietly _ ADV RB _ 2 advmod _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 spot _ NOUN NN _ 5 compound _ _ 3 October _ PROPN NNP _ 5 compound _ _ 4 gold _ NOUN NN _ 5 compound _ _ 5 price _ NOUN NN _ 6 nsubj _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 4 _ NUM CD _ 6 dobj _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 367.30 _ NUM CD _ 6 nmod _ _ 12 an _ DET DT _ 13 det _ _ 13 ounce _ NOUN NN _ 11 nmod:npmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 more _ ADV RBR _ 3 advmod _ _ 3 active _ ADJ JJ _ 6 amod _ _ 4 December _ PROPN NNP _ 6 compound _ _ 5 delivery _ NOUN NN _ 6 compound _ _ 6 gold _ NOUN NN _ 7 nsubj _ _ 7 settled _ VERB VBN _ 0 root _ _ 8 with _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 gain _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 3.90 _ NUM CD _ 10 nmod _ _ 14 an _ DET DT _ 15 det _ _ 15 ounce _ NOUN NN _ 13 nmod:npmod _ _ 16 at _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 371.20 _ NUM CD _ 7 nmod _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 after _ SCONJ IN _ 21 mark _ _ 21 trading _ VERB VBG _ 7 advcl _ _ 22 as _ ADV RB _ 23 advmod _ _ 23 high _ ADJ JJ _ 21 advmod _ _ 24 as _ ADP IN _ 26 case _ _ 25 $ _ SYM $ _ 26 dep _ _ 26 374 _ NUM CD _ 23 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 December _ PROPN NNP _ 2 compound _ _ 2 silver _ NOUN NN _ 11 nsubj _ _ 3 was _ VERB VBD _ 11 cop _ _ 4 up _ ADV RB _ 11 advmod _ _ 5 2.3 _ NUM CD _ 6 nummod _ _ 6 cents _ NOUN NNS _ 4 nmod:npmod _ _ 7 an _ DET DT _ 8 det _ _ 8 ounce _ NOUN NN _ 6 nmod:npmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 5.163 _ NUM CD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Platinum _ NOUN NN _ 2 nsubj _ _ 2 behaved _ VERB VBD _ 0 root _ _ 3 more _ ADV RBR _ 7 advmod _ _ 4 like _ ADP IN _ 7 case _ _ 5 an _ DET DT _ 7 det _ _ 6 industrial _ ADJ JJ _ 7 amod _ _ 7 metal _ NOUN NN _ 2 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 easing _ VERB VBG _ 2 ccomp _ _ 10 early _ ADV RB _ 9 advmod _ _ 11 on _ ADP IN _ 12 case _ _ 12 concern _ NOUN NN _ 9 nmod _ _ 13 over _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 possible _ ADJ JJ _ 17 amod _ _ 16 weaker _ ADJ JJR _ 15 dep _ _ 17 economy _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 but _ CONJ CC _ 9 cc _ _ 20 recovering _ VERB VBG _ 9 conj _ _ 21 later _ ADV RBR _ 20 advmod _ _ 22 , _ PUNCT , _ 20 punct _ _ 23 as _ SCONJ IN _ 27 mark _ _ 24 the _ DET DT _ 26 det _ _ 25 stock _ NOUN NN _ 26 compound _ _ 26 market _ NOUN NN _ 27 nsubj _ _ 27 strengthened _ VERB VBD _ 20 advcl _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Gold _ PROPN NNP _ 6 nsubj _ _ 2 was _ VERB VBD _ 6 cop _ _ 3 nowhere _ ADV RB _ 6 advmod _ _ 4 the _ DET DT _ 6 det _ _ 5 spectacular _ ADJ JJ _ 6 amod _ _ 6 performer _ ADJ JJ _ 0 root _ _ 7 it _ PRON PRP _ 14 nsubj _ _ 8 was _ VERB VBD _ 14 cop _ _ 9 two _ NUM CD _ 10 nummod _ _ 10 years _ NOUN NNS _ 11 nmod:npmod _ _ 11 ago _ ADV RB _ 14 advmod _ _ 12 on _ ADP IN _ 14 case _ _ 13 Black _ PROPN NNP _ 14 compound _ _ 14 Monday _ PROPN NNP _ 6 acl:relcl _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 thing _ NOUN NN _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 precious _ ADJ JJ _ 10 amod _ _ 9 metals _ NOUN NNS _ 10 compound _ _ 10 markets _ NOUN NNS _ 11 nsubj _ _ 11 closed _ VERB VBD _ 0 root _ _ 12 before _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 15 det _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 16 nsubj _ _ 16 went _ VERB VBD _ 11 advcl _ _ 17 into _ ADP IN _ 21 case _ _ 18 its _ PRON PRP$ _ 21 nmod:poss _ _ 19 late-in-the-day _ ADJ JJ _ 21 amod _ _ 20 nose _ NOUN NN _ 21 compound _ _ 21 dive _ NOUN NN _ 16 nmod _ _ 22 , _ PUNCT , _ 11 punct _ _ 23 so _ SCONJ IN _ 27 mark _ _ 24 it _ PRON PRP _ 27 nsubj _ _ 25 could _ AUX MD _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 react _ VERB VB _ 11 advcl _ _ 28 to _ ADP TO _ 29 case _ _ 29 it _ PRON PRP _ 27 nmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 Back _ ADV RB _ 13 advmod _ _ 2 on _ ADP IN _ 3 case _ _ 3 Friday _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Oct. _ PROPN NNP _ 3 appos _ _ 6 16 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 l987 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 13 nsubj _ _ 13 declined _ VERB VBD _ 0 root _ _ 14 during _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 gold _ ADJ JJ _ 20 amod _ _ 20 prices _ NOUN NNS _ 21 nsubj _ _ 21 surged _ VERB VBD _ 13 conj _ _ 22 as _ SCONJ IN _ 26 mark _ _ 23 the _ DET DT _ 25 det _ _ 24 stock _ NOUN NN _ 25 compound _ _ 25 market _ NOUN NN _ 26 nsubj _ _ 26 fell _ VERB VBD _ 21 advcl _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 October _ PROPN NNP _ 4 compound _ _ 3 1987 _ NUM CD _ 4 nummod _ _ 4 contract _ NOUN NN _ 7 nsubj _ _ 5 that _ DET DT _ 6 det _ _ 6 day _ NOUN NN _ 7 nmod:tmod _ _ 7 rose _ VERB VBD _ 0 root _ _ 8 as _ ADV RB _ 11 advmod _ _ 9 much _ ADV RB _ 11 advmod _ _ 10 as _ ADP IN _ 11 advmod _ _ 11 $ _ SYM $ _ 7 dobj _ _ 12 8.70 _ NUM CD _ 11 nummod _ _ 13 to _ ADP TO _ 17 case _ _ 14 as _ ADV RB _ 17 advmod _ _ 15 high _ ADJ JJ _ 17 advmod _ _ 16 as _ ADP IN _ 17 advmod _ _ 17 $ _ SYM $ _ 7 nmod _ _ 18 471.60 _ NUM CD _ 17 nummod _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 and _ CONJ CC _ 7 cc _ _ 21 the _ DET DT _ 24 det _ _ 22 more _ ADV RBR _ 24 advmod _ _ 23 deferred _ ADJ JJ _ 24 amod _ _ 24 positions _ NOUN NNS _ 35 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 due _ ADJ JJ _ 24 amod _ _ 27 to _ PART TO _ 28 mark _ _ 28 mature _ VERB VB _ 26 xcomp _ _ 29 as _ ADV RB _ 30 advmod _ _ 30 late _ ADV RB _ 28 advmod _ _ 31 as _ ADP IN _ 32 case _ _ 32 March _ PROPN NNP _ 30 nmod _ _ 33 1989 _ NUM CD _ 32 nummod _ _ 34 , _ PUNCT , _ 24 punct _ _ 35 rose _ VERB VBD _ 7 conj _ _ 36 as _ ADV RB _ 39 advmod _ _ 37 much _ ADV RB _ 39 advmod _ _ 38 as _ ADP IN _ 39 advmod _ _ 39 $ _ SYM $ _ 35 dobj _ _ 40 9.60 _ NUM CD _ 39 nummod _ _ 41 . _ PUNCT . _ 7 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Black _ PROPN NNP _ 3 compound _ _ 3 Monday _ PROPN NNP _ 13 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Oct. _ PROPN NNP _ 3 appos _ _ 6 19 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1987 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 October _ PROPN NNP _ 12 compound _ _ 12 contract _ NOUN NN _ 13 nsubj _ _ 13 tacked _ VERB VBD _ 0 root _ _ 14 on _ ADP RP _ 13 compound:prt _ _ 15 further _ ADJ JJ _ 16 amod _ _ 16 gains _ NOUN NNS _ 13 dobj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 rising _ VERB VBG _ 13 advcl _ _ 19 to _ ADP TO _ 23 case _ _ 20 as _ ADV RB _ 23 advmod _ _ 21 high _ ADJ JJ _ 23 advmod _ _ 22 as _ ADP IN _ 23 advmod _ _ 23 $ _ SYM $ _ 18 nmod _ _ 24 491.50 _ NUM CD _ 23 nummod _ _ 25 for _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 gain _ NOUN NN _ 18 nmod _ _ 28 of _ ADP IN _ 30 case _ _ 29 almost _ ADV RB _ 30 advmod _ _ 30 $ _ SYM $ _ 27 nmod _ _ 31 20 _ NUM CD _ 30 nummod _ _ 32 on _ ADP IN _ 33 case _ _ 33 top _ NOUN NN _ 30 nmod _ _ 34 of _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 Friday _ PROPN NNP _ 37 compound _ _ 37 advances _ NOUN NNS _ 33 nmod _ _ 38 , _ PUNCT , _ 18 punct _ _ 39 before _ SCONJ IN _ 40 mark _ _ 40 giving _ VERB VBG _ 18 advcl _ _ 41 up _ ADP RP _ 40 compound:prt _ _ 42 almost _ ADV RB _ 43 advmod _ _ 43 $ _ SYM $ _ 40 dobj _ _ 44 10 _ NUM CD _ 43 nummod _ _ 45 of _ ADP IN _ 46 case _ _ 46 that _ PRON DT _ 43 nmod _ _ 47 at _ ADP IN _ 49 case _ _ 48 the _ DET DT _ 49 det _ _ 49 close _ NOUN NN _ 40 nmod _ _ 50 . _ PUNCT . _ 13 punct _ _ 1 Yesterday _ NOUN NN _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 October _ PROPN NNP _ 4 compound _ _ 4 gain _ NOUN NN _ 9 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 $ _ SYM $ _ 7 dep _ _ 7 4 _ NUM CD _ 4 nmod _ _ 8 was _ VERB VBD _ 9 cop _ _ 9 miniscule _ NOUN NN _ 0 root _ _ 10 compared _ VERB VBN _ 12 case _ _ 11 with _ ADP IN _ 12 case _ _ 12 that _ PRON DT _ 9 advcl _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 analyst _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Peter _ PROPN NNP _ 5 compound _ _ 5 Cardillo _ PROPN NNP _ 2 appos _ _ 6 of _ ADP IN _ 7 case _ _ 7 Josephthal _ PROPN NNP _ 5 nmod _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Co. _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 New _ PROPN NNP _ 12 compound _ _ 12 York _ PROPN NNP _ 7 appos _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 gold _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 19 nsubj _ _ 18 already _ ADV RB _ 19 advmod _ _ 19 had _ VERB VBD _ 14 ccomp _ _ 20 some _ DET DT _ 24 det _ _ 21 good _ ADJ JJ _ 24 amod _ _ 22 price-supporting _ ADJ JJ _ 24 amod _ _ 23 technical _ ADJ JJ _ 24 amod _ _ 24 factors _ NOUN NNS _ 19 dobj _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 would _ AUX MD _ 28 aux _ _ 27 have _ AUX VB _ 28 aux _ _ 28 caused _ VERB VBN _ 24 acl:relcl _ _ 29 prices _ NOUN NNS _ 28 dobj _ _ 30 to _ PART TO _ 31 mark _ _ 31 rise _ VERB VB _ 28 xcomp _ _ 32 , _ PUNCT , _ 28 punct _ _ 33 with _ ADP IN _ 38 case _ _ 34 or _ CONJ CC _ 33 cc _ _ 35 without _ ADP IN _ 33 conj _ _ 36 the _ DET DT _ 38 det _ _ 37 stock _ NOUN NN _ 38 compound _ _ 38 market _ NOUN NN _ 28 nmod _ _ 39 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 What _ PRON WP _ 6 dobj _ _ 3 the _ DET DT _ 5 det _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 6 nsubj _ _ 6 did _ VERB VBD _ 8 csubj _ _ 7 was _ AUX VBD _ 8 aux _ _ 8 cause _ VERB VB _ 22 dep _ _ 9 the _ DET DT _ 10 det _ _ 10 rise _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 take _ VERB VB _ 8 xcomp _ _ 13 place _ NOUN NN _ 12 dobj _ _ 14 earlier _ ADV RBR _ 12 advmod _ _ 15 than _ SCONJ IN _ 19 mark _ _ 16 it _ PRON PRP _ 19 nsubj _ _ 17 would _ AUX MD _ 19 aux _ _ 18 have _ AUX VB _ 19 aux _ _ 19 happened _ VERB VBN _ 14 advcl _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 '' _ PUNCT '' _ 8 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Cardillo _ PROPN NNP _ 22 nsubj _ _ 25 . _ PUNCT . _ 22 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 's _ VERB VBZ _ 17 ccomp _ _ 3 a _ DET DT _ 5 det _ _ 4 good _ ADJ JJ _ 5 amod _ _ 5 chance _ NOUN NN _ 2 nsubj _ _ 6 that _ DET DT _ 9 mark _ _ 7 gold _ NOUN NN _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 retain _ VERB VB _ 5 ccomp _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 gains _ NOUN NNS _ 9 dobj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 rise _ VERB VB _ 9 conj _ _ 14 further _ ADV RBR _ 13 advmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 drop _ NOUN NN _ 2 dobj _ _ 5 in _ ADP IN _ 7 case _ _ 6 interest _ NOUN NN _ 7 compound _ _ 7 rates _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 which _ PRON WDT _ 11 nsubj _ _ 10 would _ AUX MD _ 11 aux _ _ 11 help _ VERB VB _ 4 acl:relcl _ _ 12 gold _ NOUN NN _ 11 dobj _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 keeping _ VERB VBG _ 11 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 dollar _ NOUN NN _ 14 dobj _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 rising _ VERB VBG _ 14 advcl _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Finally _ ADV RB _ 16 advmod _ _ 2 , _ PUNCT , _ 16 punct _ _ 3 according _ VERB VBG _ 6 case _ _ 4 to _ ADP TO _ 3 mwe _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Cardillo _ PROPN NNP _ 16 nmod _ _ 7 , _ PUNCT , _ 16 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 impact _ NOUN NN _ 16 nsubjpass _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 strong _ ADJ JJ _ 13 amod _ _ 13 dollar _ NOUN NN _ 9 nmod _ _ 14 should _ AUX MD _ 16 aux _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 reflected _ VERB VBN _ 0 root _ _ 17 in _ ADP IN _ 19 case _ _ 18 reduced _ VERB VBN _ 19 amod _ _ 19 exports _ NOUN NNS _ 16 nmod _ _ 20 in _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 August _ PROPN NNP _ 25 compound _ _ 23 merchandise _ NOUN NN _ 25 compound _ _ 24 trade _ NOUN NN _ 25 compound _ _ 25 deficit _ NOUN NN _ 19 nmod _ _ 26 , _ PUNCT , _ 16 punct _ _ 27 when _ ADV WRB _ 31 advmod _ _ 28 the _ DET DT _ 29 det _ _ 29 figures _ NOUN NNS _ 31 nsubjpass _ _ 30 are _ AUX VBP _ 31 auxpass _ _ 31 released _ VERB VBN _ 16 advcl _ _ 32 today _ NOUN NN _ 31 nmod:tmod _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 would _ AUX MD _ 4 aux _ _ 3 be _ VERB VB _ 4 cop _ _ 4 damaging _ VERB VBG _ 14 ccomp _ _ 5 to _ ADP TO _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 dollar _ NOUN NN _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 supportive _ ADJ JJ _ 4 conj _ _ 10 for _ ADP IN _ 11 case _ _ 11 gold _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 ENERGY _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Worried _ VERB VBN _ 24 advcl _ _ 2 that _ SCONJ IN _ 12 mark _ _ 3 Friday _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 190-point _ ADJ JJ _ 8 amod _ _ 6 stock _ NOUN NN _ 8 compound _ _ 7 market _ NOUN NN _ 8 compound _ _ 8 plunge _ NOUN NN _ 12 nsubj _ _ 9 might _ AUX MD _ 12 aux _ _ 10 be _ VERB VB _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 harbinger _ NOUN NN _ 1 ccomp _ _ 13 of _ ADP IN _ 14 case _ _ 14 things _ NOUN NNS _ 12 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 come _ VERB VB _ 14 acl _ _ 17 for _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 economy _ NOUN NN _ 14 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 petroleum _ NOUN NN _ 23 compound _ _ 22 futures _ NOUN NNS _ 23 compound _ _ 23 traders _ NOUN NNS _ 24 nsubj _ _ 24 called _ VERB VBD _ 0 root _ _ 25 a _ DET DT _ 26 det _ _ 26 halt _ NOUN NN _ 24 dobj _ _ 27 to _ ADP TO _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 recent _ ADJ JJ _ 30 amod _ _ 30 string _ NOUN NN _ 26 nmod _ _ 31 of _ ADP IN _ 32 case _ _ 32 increases _ NOUN NNS _ 30 nmod _ _ 33 in _ ADP IN _ 37 case _ _ 34 crude _ ADJ JJ _ 37 amod _ _ 35 oil _ NOUN NN _ 37 compound _ _ 36 futures _ NOUN NNS _ 37 compound _ _ 37 prices _ NOUN NNS _ 32 nmod _ _ 38 . _ PUNCT . _ 24 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 U.S. _ PROPN NNP _ 4 compound _ _ 3 benchmark _ NOUN NN _ 4 compound _ _ 4 crude _ NOUN NN _ 10 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 West _ PROPN NNP _ 8 compound _ _ 7 Texas _ PROPN NNP _ 8 compound _ _ 8 Intermediate _ PROPN NNP _ 4 appos _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 closed _ VERB VBD _ 0 root _ _ 11 at _ ADP IN _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 20.59 _ NUM CD _ 10 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 barrel _ NOUN NN _ 13 nmod:npmod _ _ 16 for _ ADP IN _ 18 case _ _ 17 November _ PROPN NNP _ 18 compound _ _ 18 delivery _ NOUN NN _ 13 nmod _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 down _ ADV RB _ 10 advmod _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 20 nmod:npmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 crude _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 due _ ADJ JJ _ 3 ccomp _ _ 7 for _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 correction _ NOUN NN _ 6 nmod _ _ 10 anyhow _ ADV RB _ 6 advmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 following _ VERB VBG _ 14 case _ _ 13 several _ ADJ JJ _ 14 amod _ _ 14 days _ NOUN NNS _ 6 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 significant _ ADJ JJ _ 17 amod _ _ 17 gains _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 most _ ADJ JJS _ 4 amod _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 observers _ NOUN NNS _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 Friday _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 stock _ NOUN NN _ 11 compound _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 drop _ NOUN NN _ 12 nsubj _ _ 12 is _ VERB VBZ _ 5 ccomp _ _ 13 what _ PRON WP _ 14 nsubj _ _ 14 dampened _ VERB VBD _ 12 ccomp _ _ 15 spirits _ NOUN NNS _ 14 dobj _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 petroleum _ NOUN NN _ 19 compound _ _ 19 pits _ NOUN NNS _ 15 nmod _ _ 20 yesterday _ NOUN NN _ 14 nmod:tmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 yesterday _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 futures _ NOUN NNS _ 5 compound _ _ 5 prices _ NOUN NNS _ 8 nsubjpass _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 headed _ VERB VBN _ 0 root _ _ 9 up _ ADV RB _ 8 advmod _ _ 10 on _ ADP IN _ 11 case _ _ 11 expectations _ NOUN NNS _ 8 nmod _ _ 12 that _ SCONJ IN _ 17 mark _ _ 13 world _ NOUN NN _ 15 compound _ _ 14 oil _ NOUN NN _ 15 compound _ _ 15 demand _ NOUN NN _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 continue _ VERB VB _ 11 ccomp _ _ 18 to _ PART TO _ 20 mark _ _ 19 be _ VERB VB _ 20 cop _ _ 20 strong _ ADJ JJ _ 17 xcomp _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Organization _ PROPN NNP _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 Petroleum _ PROPN NNP _ 6 compound _ _ 5 Exporting _ PROPN NNP _ 6 compound _ _ 6 Countries _ PROPN NNP _ 2 nmod _ _ 7 increased _ VERB VBD _ 0 root _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 production _ NOUN NN _ 10 compound _ _ 10 ceiling _ NOUN NN _ 7 dobj _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 fourth _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 10 nmod _ _ 15 based _ VERB VBN _ 7 dep _ _ 16 on _ ADP IN _ 17 case _ _ 17 projections _ NOUN NNS _ 15 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 robust _ ADJ JJ _ 20 amod _ _ 20 demand _ NOUN NN _ 17 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 So _ ADP IN _ 17 dep _ _ 2 any _ DET DT _ 4 det _ _ 3 bearish _ ADJ JJ _ 4 amod _ _ 4 indicator _ NOUN NN _ 17 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 such _ ADJ JJ _ 11 case _ _ 7 as _ ADP IN _ 6 mwe _ _ 8 Friday _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 precipitous _ ADJ JJ _ 11 amod _ _ 11 drop _ NOUN NN _ 4 nmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 sends _ VERB VBZ _ 0 root _ _ 18 shivers _ NOUN NNS _ 17 dobj _ _ 19 through _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 oil _ NOUN NN _ 22 compound _ _ 22 markets _ NOUN NNS _ 17 nmod _ _ 23 as _ ADV RB _ 17 advmod _ _ 24 well _ ADV RB _ 23 mwe _ _ 25 . _ PUNCT . _ 17 punct _ _ 1 Indeed _ ADV RB _ 17 advmod _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 after _ SCONJ IN _ 4 mark _ _ 4 reacting _ VERB VBG _ 17 advcl _ _ 5 early _ ADV RB _ 4 advmod _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 day _ NOUN NN _ 5 nmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 plummet _ NOUN NN _ 4 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 futures _ NOUN NNS _ 16 compound _ _ 16 prices _ NOUN NNS _ 17 nsubj _ _ 17 firmed _ VERB VBD _ 0 root _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 again _ ADV RB _ 17 advmod _ _ 20 as _ SCONJ IN _ 22 mark _ _ 21 traders _ NOUN NNS _ 22 nsubj _ _ 22 took _ VERB VBD _ 17 advcl _ _ 23 note _ NOUN NN _ 22 dobj _ _ 24 of _ ADP IN _ 30 case _ _ 25 the _ DET DT _ 27 det _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 market _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 partial _ ADJ JJ _ 30 amod _ _ 30 recovery _ NOUN NN _ 22 nmod _ _ 31 yesterday _ NOUN NN _ 22 nmod:tmod _ _ 32 . _ PUNCT . _ 17 punct _ _ 1 COPPER _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 showed _ VERB VBD _ 3 conj _ _ 6 little _ ADJ JJ _ 7 amod _ _ 7 rebound _ NOUN NN _ 5 dobj _ _ 8 as _ SCONJ IN _ 18 mark _ _ 9 one _ NUM CD _ 12 nummod _ _ 10 major _ ADJ JJ _ 12 amod _ _ 11 labor _ NOUN NN _ 12 compound _ _ 12 problem _ NOUN NN _ 18 nsubj _ _ 13 that _ PRON WDT _ 16 nsubj _ _ 14 had _ AUX VBD _ 16 aux _ _ 15 been _ AUX VBN _ 16 aux _ _ 16 underpinning _ VERB VBG _ 12 acl:relcl _ _ 17 prices _ NOUN NNS _ 16 dobj _ _ 18 appeared _ VERB VBD _ 5 advcl _ _ 19 to _ PART TO _ 21 mark _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 solved _ VERB VBN _ 18 xcomp _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 December _ PROPN NNP _ 3 compound _ _ 3 contract _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 0 root _ _ 5 3.05 _ NUM CD _ 6 nummod _ _ 6 cents _ NOUN NNS _ 4 dobj _ _ 7 a _ DET DT _ 8 det _ _ 8 pound _ NOUN NN _ 6 nmod:npmod _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 1.2745 _ NUM CD _ 4 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Prices _ NOUN NNS _ 6 nsubj _ _ 2 were _ VERB VBD _ 6 cop _ _ 3 down _ ADV RB _ 6 advmod _ _ 4 from _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 outset _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 trading _ NOUN NN _ 6 nmod _ _ 9 on _ ADP IN _ 10 case _ _ 10 concern _ NOUN NN _ 6 nmod _ _ 11 that _ SCONJ IN _ 19 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 drop _ NOUN NN _ 19 nsubj _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 might _ AUX MD _ 19 aux _ _ 19 create _ VERB VB _ 10 ccomp _ _ 20 a _ DET DT _ 22 det _ _ 21 weakened _ VERB VBN _ 22 amod _ _ 22 economy _ NOUN NN _ 19 dobj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 a _ DET DT _ 26 det _ _ 25 consequent _ ADJ JJ _ 26 amod _ _ 26 reduction _ NOUN NN _ 22 conj _ _ 27 in _ ADP IN _ 29 case _ _ 28 copper _ NOUN NN _ 29 compound _ _ 29 use _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 recovery _ NOUN NN _ 8 nsubj _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 stock _ NOUN NN _ 7 compound _ _ 7 market _ NOUN NN _ 3 nmod _ _ 8 provided _ VERB VBD _ 0 root _ _ 9 little _ ADJ JJ _ 10 amod _ _ 10 help _ NOUN NN _ 8 dobj _ _ 11 for _ ADP IN _ 12 case _ _ 12 copper _ NOUN NN _ 10 nmod _ _ 13 as _ SCONJ IN _ 15 mark _ _ 14 word _ NOUN NN _ 15 nsubj _ _ 15 spread _ VERB VBD _ 8 advcl _ _ 16 that _ SCONJ IN _ 28 mark _ _ 17 a _ DET DT _ 19 det _ _ 18 three-month _ ADJ JJ _ 19 amod _ _ 19 strike _ NOUN NN _ 28 nsubj _ _ 20 at _ ADP IN _ 24 case _ _ 21 the _ DET DT _ 24 det _ _ 22 Highland _ PROPN NNP _ 24 compound _ _ 23 Valley _ PROPN NNP _ 24 compound _ _ 24 mine _ NOUN NN _ 19 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 British _ PROPN NNP _ 27 compound _ _ 27 Columbia _ PROPN NNP _ 24 nmod _ _ 28 was _ VERB VBD _ 15 ccomp _ _ 29 about _ ADV RB _ 30 advmod _ _ 30 over _ ADV RB _ 28 advmod _ _ 31 , _ PUNCT , _ 8 punct _ _ 32 according _ VERB VBG _ 35 case _ _ 33 to _ ADP TO _ 32 mwe _ _ 34 an _ DET DT _ 35 det _ _ 35 analyst _ NOUN NN _ 8 nmod _ _ 36 . _ PUNCT . _ 8 punct _ _ 1 Highland _ PROPN NNP _ 2 compound _ _ 2 Valley _ PROPN NNP _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 large _ ADJ JJ _ 7 amod _ _ 6 Canadian _ ADJ JJ _ 7 amod _ _ 7 producer _ NOUN NN _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 principal _ ADJ JJ _ 10 amod _ _ 10 supplier _ NOUN NN _ 7 conj _ _ 11 to _ ADP TO _ 12 case _ _ 12 Japan _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 which _ PRON WDT _ 16 nsubj _ _ 15 recently _ ADV RB _ 16 advmod _ _ 16 began _ VERB VBD _ 7 acl:relcl _ _ 17 seeking _ VERB VBG _ 16 xcomp _ _ 18 copper _ NOUN NN _ 17 dobj _ _ 19 elsewhere _ ADV RB _ 17 advmod _ _ 20 as _ SCONJ IN _ 23 mark _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 inventories _ NOUN NNS _ 23 nsubj _ _ 23 shrank _ VERB VBD _ 17 advcl _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 5 nmod:tmod _ _ 3 it _ PRON PRP _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 reported _ VERB VBN _ 0 root _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 company _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 union _ NOUN NN _ 7 conj _ _ 10 negotiations _ NOUN NNS _ 12 nsubj _ _ 11 had _ AUX VBD _ 12 aux _ _ 12 overcome _ VERB VBN _ 5 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 major _ ADJ JJ _ 15 amod _ _ 15 hurdle _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 contracting _ NOUN NN _ 15 appos _ _ 19 out _ ADP RP _ 18 dep _ _ 20 of _ ADP IN _ 21 case _ _ 21 work _ NOUN NN _ 18 nmod _ _ 22 by _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 company _ NOUN NN _ 18 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 Now _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 analyst _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 10 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 only _ ADV RB _ 9 advmod _ _ 8 minor _ ADJ JJ _ 9 amod _ _ 9 points _ NOUN NNS _ 10 nsubj _ _ 10 remain _ VERB VBP _ 0 root _ _ 11 to _ PART TO _ 13 mark _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 cleaned _ VERB VBN _ 10 xcomp _ _ 14 up _ ADP RP _ 13 compound:prt _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 For _ ADP IN _ 4 case _ _ 3 all _ DET DT _ 4 det _ _ 4 intents _ NOUN NNS _ 10 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 purposes _ NOUN NNS _ 4 conj _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 an _ DET DT _ 9 det _ _ 9 agreement _ NOUN NN _ 10 nsubj _ _ 10 appears _ VERB VBZ _ 18 ccomp _ _ 11 to _ PART TO _ 14 mark _ _ 12 have _ AUX VB _ 14 aux _ _ 13 been _ AUX VBN _ 14 auxpass _ _ 14 achieved _ VERB VBN _ 10 xcomp _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Copper _ NOUN NN _ 2 compound _ _ 2 inventories _ NOUN NNS _ 10 nsubj _ _ 3 in _ ADP IN _ 9 case _ _ 4 New _ PROPN NNP _ 5 compound _ _ 5 York _ PROPN NNP _ 9 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Commodity _ PROPN NNP _ 9 compound _ _ 8 Exchange _ PROPN NNP _ 9 compound _ _ 9 warehouses _ NOUN NNS _ 2 nmod _ _ 10 rose _ VERB VBD _ 0 root _ _ 11 yesterday _ NOUN NN _ 10 nmod:tmod _ _ 12 by _ ADP IN _ 14 case _ _ 13 516 _ NUM CD _ 14 nummod _ _ 14 tons _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 to _ ADP TO _ 18 case _ _ 17 10,004 _ NUM CD _ 18 nummod _ _ 18 tons _ NOUN NNS _ 10 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 London _ PROPN NNP _ 5 compound _ _ 2 Metal _ PROPN NNP _ 5 compound _ _ 3 Exchange _ PROPN NNP _ 5 compound _ _ 4 copper _ NOUN NN _ 5 compound _ _ 5 inventories _ NOUN NNS _ 8 nsubj _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 8 nmod:tmod _ _ 8 declined _ VERB VBD _ 0 root _ _ 9 13,575 _ NUM CD _ 10 nummod _ _ 10 tons _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 to _ ADP TO _ 14 case _ _ 13 89,300 _ NUM CD _ 14 nummod _ _ 14 tons _ NOUN NNS _ 8 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 LME _ PROPN NNP _ 4 compound _ _ 3 stocks _ NOUN NNS _ 4 compound _ _ 4 decline _ NOUN NN _ 5 nsubj _ _ 5 was _ VERB VBD _ 0 root _ _ 6 about _ ADV RB _ 8 advmod _ _ 7 as _ ADV RB _ 8 advmod _ _ 8 expected _ VERB VBN _ 5 ccomp _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 but _ CONJ CC _ 5 cc _ _ 11 the _ DET DT _ 13 det _ _ 12 Comex _ PROPN NNP _ 13 compound _ _ 13 gain _ NOUN NN _ 14 nsubj _ _ 14 was _ VERB VBD _ 5 conj _ _ 15 n't _ PART RB _ 14 neg _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 However _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 this _ PRON DT _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 brushed _ VERB VBN _ 16 ccomp _ _ 6 aside _ ADV RB _ 5 advmod _ _ 7 by _ ADP IN _ 8 case _ _ 8 concern _ NOUN NN _ 5 nmod _ _ 9 over _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 analyst _ NOUN NN _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 point _ NOUN NN _ 17 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 futures _ NOUN NNS _ 6 compound _ _ 6 trading _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 as _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 12 nsubj _ _ 12 firmed _ VERB VBD _ 17 advcl _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 December _ PROPN NNP _ 16 compound _ _ 16 contract _ NOUN NN _ 17 nsubj _ _ 17 rose _ VERB VBD _ 0 root _ _ 18 to _ ADP TO _ 22 case _ _ 19 as _ ADV RB _ 22 advmod _ _ 20 high _ ADJ JJ _ 22 advmod _ _ 21 as _ ADP IN _ 22 advmod _ _ 22 $ _ SYM $ _ 17 nmod _ _ 23 1.2965 _ NUM CD _ 22 nummod _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 but _ CONJ CC _ 17 cc _ _ 26 it _ PRON PRP _ 29 nsubj _ _ 27 was _ VERB VBD _ 29 cop _ _ 28 n't _ PART RB _ 29 neg _ _ 29 able _ ADJ JJ _ 17 conj _ _ 30 to _ PART TO _ 31 mark _ _ 31 sustain _ VERB VB _ 29 xcomp _ _ 32 the _ DET DT _ 33 det _ _ 33 gain _ NOUN NN _ 31 dobj _ _ 34 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 It _ PRON PRP _ 5 nsubjpass _ _ 3 was _ VERB VBD _ 5 auxpass _ _ 4 simply _ ADV RB _ 5 advmod _ _ 5 overbought _ VERB VBN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 said _ VERB VBD _ 5 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 5 cc _ _ 12 selling _ VERB VBG _ 19 nsubj _ _ 13 by _ ADP IN _ 14 case _ _ 14 funds _ NOUN NNS _ 12 nmod _ _ 15 that _ PRON WDT _ 18 nsubjpass _ _ 16 are _ VERB VBP _ 18 auxpass _ _ 17 computer _ NOUN NN _ 18 dep _ _ 18 guided _ VERB VBN _ 14 acl:relcl _ _ 19 helped _ VERB VBD _ 5 conj _ _ 20 depress _ VERB VB _ 19 ccomp _ _ 21 prices _ NOUN NNS _ 20 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 COTTON _ PROPN NNP _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 eased _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 more _ ADV RBR _ 7 advmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 reaction _ NOUN NN _ 3 nmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 Hurricane _ PROPN NNP _ 10 compound _ _ 10 Jerry _ PROPN NNP _ 7 nmod _ _ 11 than _ ADP IN _ 14 case _ _ 12 to _ ADP TO _ 14 case _ _ 13 any _ DET DT _ 14 det _ _ 14 influence _ NOUN NN _ 7 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 December _ PROPN NNP _ 3 compound _ _ 3 contract _ NOUN NN _ 4 nsubj _ _ 4 ended _ VERB VBD _ 0 root _ _ 5 with _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 loss _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 0.22 _ NUM CD _ 10 nummod _ _ 10 cent _ NOUN NN _ 7 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 pound _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 at _ ADP IN _ 16 case _ _ 15 74.48 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 4 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Technical _ ADJ JJ _ 2 amod _ _ 2 considerations _ NOUN NNS _ 16 nsubj _ _ 3 following _ VERB VBG _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 hurricane _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 10 nsubj _ _ 8 was _ VERB VBD _ 10 cop _ _ 9 a _ DET DT _ 10 det _ _ 10 factor _ NOUN NN _ 5 acl:relcl _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 10 nmod _ _ 14 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 caused _ VERB VBD _ 22 ccomp _ _ 17 prices _ NOUN NNS _ 16 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 decline _ VERB VB _ 16 xcomp _ _ 20 yesterday _ NOUN NN _ 19 nmod:tmod _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Ernest _ PROPN NNP _ 24 compound _ _ 24 Simon _ PROPN NNP _ 22 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 cotton _ NOUN NN _ 27 compound _ _ 27 specialist _ NOUN NN _ 24 appos _ _ 28 for _ ADP IN _ 30 case _ _ 29 Prudential-Bache _ PROPN NNP _ 30 compound _ _ 30 Securities _ PROPN NNP _ 27 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 New _ PROPN NNP _ 33 compound _ _ 33 York _ PROPN NNP _ 30 appos _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 Prices _ NOUN NNS _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 sharply _ ADV RB _ 2 advmod _ _ 4 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 5 as _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 storm _ NOUN NN _ 8 nsubj _ _ 8 approached _ VERB VBD _ 2 advcl _ _ 9 Texas _ PROPN NNP _ 8 nmod:tmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Louisiana _ PROPN NNP _ 9 conj _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 which _ PRON WDT _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 part _ NOUN NN _ 9 acl:relcl _ _ 16 of _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 21 det _ _ 18 Mississippi _ PROPN NNP _ 21 compound _ _ 19 Delta _ PROPN NNP _ 21 compound _ _ 20 cotton-growing _ ADJ JJ _ 21 amod _ _ 21 area _ NOUN NN _ 15 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 However _ ADV RB _ 13 advmod _ _ 2 , _ PUNCT , _ 13 punct _ _ 3 after _ SCONJ IN _ 4 mark _ _ 4 absorbing _ VERB VBG _ 13 advcl _ _ 5 the _ DET DT _ 7 det _ _ 6 potential _ ADJ JJ _ 7 amod _ _ 7 effect _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 hurricane _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 prices _ NOUN NNS _ 13 nsubj _ _ 13 began _ VERB VBD _ 21 ccomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 slip _ VERB VB _ 13 xcomp _ _ 16 late _ ADJ JJ _ 17 amod _ _ 17 Friday _ PROPN NNP _ 15 nmod:tmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Simon _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 selling _ NOUN NN _ 3 nsubj _ _ 3 continued _ VERB VBD _ 12 ccomp _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 and _ CONJ CC _ 3 cc _ _ 6 kept _ VERB VBD _ 3 conj _ _ 7 prices _ NOUN NNS _ 6 xcomp _ _ 8 under _ ADP IN _ 9 case _ _ 9 pressure _ NOUN NN _ 7 dep _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Colder _ ADJ JJR _ 2 amod _ _ 2 weather _ NOUN NN _ 5 nsubjpass _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 being _ AUX VBG _ 5 auxpass _ _ 5 predicted _ VERB VBN _ 26 ccomp _ _ 6 for _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 high _ ADJ JJ _ 9 amod _ _ 9 plains _ NOUN NNS _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 Texas _ PROPN NNP _ 9 nmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 northern _ ADJ JJ _ 15 amod _ _ 15 states _ NOUN NNS _ 9 conj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 Delta _ PROPN NNP _ 15 nmod _ _ 19 during _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 coming _ VERB VBG _ 22 amod _ _ 22 weekend _ NOUN NN _ 5 nmod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Simon _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 has _ AUX VBZ _ 5 aux _ _ 3 n't _ PART RB _ 5 neg _ _ 4 yet _ ADV RB _ 5 advmod _ _ 5 captured _ VERB VBN _ 11 ccomp _ _ 6 traders _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 attention _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 added _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 SUGAR _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 March _ PROPN NNP _ 3 compound _ _ 3 contract _ NOUN NN _ 12 nsubj _ _ 4 was _ VERB VBD _ 12 cop _ _ 5 off _ ADJ JJ _ 12 advmod _ _ 6 0.32 _ NUM CD _ 7 nummod _ _ 7 cent _ NOUN NN _ 5 dep _ _ 8 a _ DET DT _ 9 det _ _ 9 pound _ NOUN NN _ 7 nmod:npmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 13.97 _ NUM CD _ 12 nummod _ _ 12 cents _ NOUN NNS _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 point _ NOUN NN _ 10 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 early _ ADV RB _ 6 advmod _ _ 6 trading _ NOUN NN _ 3 nmod _ _ 7 the _ DET DT _ 9 det _ _ 8 March _ PROPN NNP _ 9 compound _ _ 9 price _ NOUN NN _ 10 nsubj _ _ 10 rose _ VERB VBD _ 0 root _ _ 11 to _ ADP TO _ 16 case _ _ 12 as _ ADV RB _ 15 advmod _ _ 13 high _ ADJ JJ _ 15 advmod _ _ 14 as _ ADP IN _ 15 advmod _ _ 15 14.22 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 nmod _ _ 17 when _ ADV WRB _ 21 advmod _ _ 18 the _ DET DT _ 20 det _ _ 19 stock _ NOUN NN _ 20 compound _ _ 20 market _ NOUN NN _ 21 nsubj _ _ 21 recovered _ VERB VBN _ 10 advcl _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 price _ NOUN NN _ 27 nsubj _ _ 26 then _ ADV RB _ 27 advmod _ _ 27 fell _ VERB VBD _ 10 conj _ _ 28 back _ ADV RB _ 27 advmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 price-depressing _ ADJ JJ _ 3 amod _ _ 3 factor _ NOUN NN _ 9 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 analyst _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 was _ VERB VBD _ 0 root _ _ 10 that _ SCONJ IN _ 31 mark _ _ 11 India _ PROPN NNP _ 31 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 16 nsubjpass _ _ 14 had _ AUX VBD _ 16 aux _ _ 15 been _ AUX VBN _ 16 auxpass _ _ 16 expected _ VERB VBN _ 11 acl:relcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 buy _ VERB VB _ 16 xcomp _ _ 19 around _ ADV RB _ 20 advmod _ _ 20 200,000 _ NUM CD _ 21 nummod _ _ 21 tons _ NOUN NNS _ 18 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 sugar _ NOUN NN _ 21 nmod _ _ 24 in _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 world _ NOUN NN _ 27 compound _ _ 27 market _ NOUN NN _ 18 nmod _ _ 28 , _ PUNCT , _ 11 punct _ _ 29 did _ AUX VBD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 make _ VERB VB _ 9 ccomp _ _ 32 any _ DET DT _ 33 det _ _ 33 purchases _ NOUN NNS _ 31 dobj _ _ 34 . _ PUNCT . _ 9 punct _ _ 1 India _ PROPN NNP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 bought _ VERB VBD _ 15 ccomp _ _ 4 200,000 _ NUM CD _ 5 nummod _ _ 5 tons _ NOUN NNS _ 3 dobj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 expected _ VERB VBN _ 3 conj _ _ 9 to _ PART TO _ 10 mark _ _ 10 buy _ VERB VB _ 8 xcomp _ _ 11 more _ ADJ JJR _ 10 dobj _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 analyst _ NOUN NN _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Another _ DET DT _ 2 det _ _ 2 analyst _ NOUN NN _ 3 nsubj _ _ 3 thought _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 India _ PROPN NNP _ 8 nsubj _ _ 6 may _ AUX MD _ 8 aux _ _ 7 have _ AUX VB _ 8 aux _ _ 8 pulled _ VERB VBN _ 3 ccomp _ _ 9 back _ ADV RB _ 8 advmod _ _ 10 because _ ADP IN _ 13 case _ _ 11 of _ ADP IN _ 10 mwe _ _ 12 the _ DET DT _ 13 det _ _ 13 concern _ NOUN NN _ 8 nmod _ _ 14 over _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 30 punct _ _ 2 India _ PROPN NNP _ 5 nsubj _ _ 3 may _ AUX MD _ 5 aux _ _ 4 have _ AUX VB _ 5 aux _ _ 5 felt _ VERB VBD _ 30 ccomp _ _ 6 that _ SCONJ IN _ 24 mark _ _ 7 if _ SCONJ IN _ 9 mark _ _ 8 there _ PRON EX _ 9 expl _ _ 9 was _ VERB VBD _ 24 advcl _ _ 10 a _ DET DT _ 12 det _ _ 11 severe _ ADJ JJ _ 12 amod _ _ 12 drop _ NOUN NN _ 9 nsubj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 market _ NOUN NN _ 12 nmod _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 it _ PRON PRP _ 19 nsubj _ _ 19 affected _ VERB VBD _ 9 conj _ _ 20 sugar _ NOUN NN _ 19 dobj _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 could _ AUX MD _ 24 aux _ _ 24 buy _ VERB VB _ 5 ccomp _ _ 25 at _ ADP IN _ 27 case _ _ 26 lower _ ADJ JJR _ 27 amod _ _ 27 prices _ NOUN NNS _ 24 nmod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 '' _ PUNCT '' _ 30 punct _ _ 30 said _ VERB VBD _ 0 root _ _ 31 Judith _ PROPN NNP _ 32 compound _ _ 32 Ganes _ PROPN NNP _ 30 nsubj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 analyst _ NOUN NN _ 32 appos _ _ 35 for _ ADP IN _ 38 case _ _ 36 Shearson _ PROPN NNP _ 38 compound _ _ 37 Lehman _ PROPN NNP _ 38 compound _ _ 38 Hutton _ PROPN NNP _ 34 nmod _ _ 39 , _ PUNCT , _ 38 punct _ _ 40 New _ PROPN NNP _ 41 compound _ _ 41 York _ PROPN NNP _ 38 appos _ _ 42 . _ PUNCT . _ 30 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 rate _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 she _ PRON PRP _ 6 nsubj _ _ 6 added _ VERB VBD _ 10 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 India _ PROPN NNP _ 10 nsubj _ _ 10 needs _ VERB VBZ _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 sugar _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 so _ ADP IN _ 17 dep _ _ 15 it _ PRON PRP _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 be _ VERB VB _ 10 parataxis _ _ 18 in _ ADV RB _ 17 advmod _ _ 19 sooner _ ADV RBR _ 17 advmod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 later _ ADV RBR _ 19 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 buy _ VERB VB _ 17 xcomp _ _ 24 it _ PRON PRP _ 23 dobj _ _ 25 . _ PUNCT . _ 10 punct _ _ 26 '' _ PUNCT '' _ 10 punct _ _ 1 FARM _ NOUN NN _ 2 compound _ _ 2 PRODUCTS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 prices _ NOUN NNS _ 9 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 cattle _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 hog _ NOUN NN _ 8 compound _ _ 7 futures _ NOUN NNS _ 8 compound _ _ 8 contracts _ NOUN NNS _ 4 conj _ _ 9 dropped _ VERB VBD _ 0 root _ _ 10 sharply _ ADV RB _ 9 advmod _ _ 11 because _ SCONJ IN _ 13 mark _ _ 12 traders _ NOUN NNS _ 13 nsubj _ _ 13 speculated _ VERB VBD _ 9 advcl _ _ 14 that _ SCONJ IN _ 21 mark _ _ 15 the _ DET DT _ 18 det _ _ 16 stock _ NOUN NN _ 18 compound _ _ 17 market _ NOUN NN _ 18 compound _ _ 18 plunge _ NOUN NN _ 21 nsubj _ _ 19 Friday _ PROPN NNP _ 21 nmod:tmod _ _ 20 will _ AUX MD _ 21 aux _ _ 21 linger _ VERB VB _ 13 ccomp _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 minds _ NOUN NNS _ 21 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 U.S. _ PROPN NNP _ 27 compound _ _ 27 consumers _ NOUN NNS _ 24 nmod _ _ 28 long _ ADV RB _ 29 advmod _ _ 29 enough _ ADV RB _ 21 advmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 prompt _ VERB VB _ 29 dep _ _ 32 them _ PRON PRP _ 31 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 rein _ VERB VB _ 31 xcomp _ _ 35 in _ ADP IN _ 34 nmod _ _ 36 their _ PRON PRP$ _ 37 nmod:poss _ _ 37 spending _ NOUN NN _ 34 dobj _ _ 38 at _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 supermarket _ NOUN NN _ 37 nmod _ _ 41 , _ PUNCT , _ 34 punct _ _ 42 which _ PRON WDT _ 44 nsubj _ _ 43 would _ AUX MD _ 44 aux _ _ 44 hurt _ VERB VB _ 34 dep _ _ 45 demand _ NOUN NN _ 44 dobj _ _ 46 for _ ADP IN _ 47 case _ _ 47 beef _ NOUN NN _ 45 nmod _ _ 48 and _ CONJ CC _ 47 cc _ _ 49 pork _ NOUN NN _ 47 conj _ _ 50 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 price _ NOUN NN _ 10 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 hog _ NOUN NN _ 6 compound _ _ 6 contract _ NOUN NN _ 2 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 October _ PROPN NNP _ 9 compound _ _ 9 delivery _ NOUN NN _ 6 nmod _ _ 10 dropped _ VERB VBD _ 0 root _ _ 11 its _ PRON PRP$ _ 15 nmod:poss _ _ 12 maximum _ NOUN NN _ 13 nmod:npmod _ _ 13 permissible _ ADJ JJ _ 15 amod _ _ 14 daily _ ADJ JJ _ 15 amod _ _ 15 limit _ NOUN NN _ 10 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 1.5 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 pound _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 prices _ NOUN NNS _ 8 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 most _ ADJ JJS _ 7 amod _ _ 5 grain _ NOUN NN _ 7 compound _ _ 6 futures _ NOUN NNS _ 7 compound _ _ 7 contracts _ NOUN NNS _ 2 nmod _ _ 8 rose _ VERB VBD _ 0 root _ _ 9 slightly _ ADV RB _ 8 advmod _ _ 10 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 11 out _ ADP IN _ 13 case _ _ 12 of _ ADP IN _ 13 case _ _ 13 relief _ NOUN NN _ 8 nmod _ _ 14 that _ SCONJ IN _ 19 mark _ _ 15 the _ DET DT _ 17 det _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 19 nsubj _ _ 18 was _ AUX VBD _ 19 aux _ _ 19 showing _ VERB VBG _ 13 ccomp _ _ 20 signs _ NOUN NNS _ 19 dobj _ _ 21 of _ SCONJ IN _ 22 mark _ _ 22 recovering _ VERB VBG _ 20 acl _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 Earlier _ ADV RBR _ 4 advmod _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 session _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 prices _ NOUN NNS _ 12 nsubj _ _ 8 of _ ADP IN _ 11 case _ _ 9 several _ ADJ JJ _ 11 amod _ _ 10 soybean _ NOUN NN _ 11 compound _ _ 11 contracts _ NOUN NNS _ 7 nmod _ _ 12 set _ VERB VBD _ 0 root _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 lows _ NOUN NNS _ 12 dobj _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 broad _ ADJ JJ _ 3 amod _ _ 3 rally _ NOUN NN _ 4 nsubj _ _ 4 began _ VERB VBD _ 0 root _ _ 5 when _ ADV WRB _ 9 advmod _ _ 6 several _ ADJ JJ _ 8 amod _ _ 7 major _ ADJ JJ _ 8 amod _ _ 8 processors _ NOUN NNS _ 9 nsubj _ _ 9 began _ VERB VBD _ 4 advcl _ _ 10 buying _ VERB VBG _ 9 xcomp _ _ 11 futures _ NOUN NNS _ 12 compound _ _ 12 contracts _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 apparently _ ADV RB _ 16 advmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 take _ VERB VB _ 10 advcl _ _ 17 advantage _ NOUN NN _ 16 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 price _ NOUN NN _ 21 compound _ _ 21 dip _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 Knight-Ridder _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 report _ VERB VB _ 3 ccomp _ _ 7 increased _ VERB VBN _ 8 amod _ _ 8 earnings _ NOUN NNS _ 6 dobj _ _ 9 per _ ADP IN _ 10 case _ _ 10 share _ NOUN NN _ 8 nmod _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 contrary _ ADJ JJ _ 6 xcomp _ _ 17 to _ ADP TO _ 21 case _ _ 18 reported _ VERB VBN _ 21 amod _ _ 19 analysts _ NOUN NNS _ 21 nmod:poss _ _ 20 ' _ PART POS _ 19 case _ _ 21 comments _ NOUN NNS _ 16 nmod _ _ 22 that _ SCONJ IN _ 29 mark _ _ 23 the _ DET DT _ 25 det _ _ 24 publishing _ VERB VBG _ 25 amod _ _ 25 company _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 earnings _ NOUN NNS _ 29 nsubj _ _ 28 would _ AUX MD _ 29 aux _ _ 29 be _ VERB VB _ 21 ccomp _ _ 30 down _ ADV RB _ 29 advmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 company _ NOUN NN _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 believed _ VERB VBD _ 4 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 confusion _ NOUN NN _ 10 nsubjpass _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 caused _ VERB VBN _ 6 ccomp _ _ 11 when _ ADV WRB _ 22 advmod _ _ 12 James _ PROPN NNP _ 13 compound _ _ 13 Batten _ PROPN NNP _ 22 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Knight-Ridder _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 chairman _ NOUN NN _ 13 appos _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 chief _ ADJ JJ _ 20 amod _ _ 20 executive _ NOUN NN _ 17 conj _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 told _ VERB VBD _ 10 advcl _ _ 23 New _ PROPN NNP _ 25 compound _ _ 24 York _ PROPN NNP _ 25 compound _ _ 25 analysts _ NOUN NNS _ 22 dobj _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 weeks _ NOUN NNS _ 28 nmod:npmod _ _ 28 ago _ ADV RB _ 22 advmod _ _ 29 that _ SCONJ IN _ 48 mark _ _ 30 Knight-Ridder _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 earnings _ NOUN NNS _ 48 nsubj _ _ 33 per _ ADP IN _ 34 case _ _ 34 share _ NOUN NN _ 32 nmod _ _ 35 for _ ADP IN _ 39 case _ _ 36 the _ DET DT _ 39 det _ _ 37 first _ ADJ JJ _ 39 amod _ _ 38 nine _ NUM CD _ 39 nummod _ _ 39 months _ NOUN NNS _ 32 nmod _ _ 40 of _ ADP IN _ 41 case _ _ 41 1989 _ NUM CD _ 39 nmod _ _ 42 would _ AUX MD _ 48 aux _ _ 43 `` _ PUNCT `` _ 48 punct _ _ 44 be _ VERB VB _ 48 cop _ _ 45 behind _ ADP IN _ 48 case _ _ 46 a _ DET DT _ 48 det _ _ 47 little _ ADJ JJ _ 48 amod _ _ 48 bit _ NOUN NN _ 22 ccomp _ _ 49 '' _ PUNCT '' _ 48 punct _ _ 50 from _ ADP IN _ 52 case _ _ 51 like _ ADJ JJ _ 52 amod _ _ 52 period _ NOUN NN _ 48 nmod _ _ 53 of _ ADP IN _ 52 dep _ _ 1 The _ DET DT _ 3 det _ _ 2 Knight-Ridder _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 third-quarter _ ADJ JJ _ 7 amod _ _ 7 earnings _ NOUN NNS _ 17 nsubjpass _ _ 8 that _ ADP IN _ 11 dobj _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 11 nsubj _ _ 11 plans _ VERB VBZ _ 7 acl:relcl _ _ 12 to _ PART TO _ 13 mark _ _ 13 report _ VERB VB _ 11 xcomp _ _ 14 Oct. _ PROPN NNP _ 13 nmod:tmod _ _ 15 24 _ NUM CD _ 14 nummod _ _ 16 are _ AUX VBP _ 17 auxpass _ _ 17 expected _ VERB VBN _ 4 ccomp _ _ 18 to _ PART TO _ 19 mark _ _ 19 be _ VERB VB _ 17 xcomp _ _ 20 up _ ADV RB _ 19 advmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 comfortable _ ADJ JJ _ 3 ccomp _ _ 8 '' _ PUNCT '' _ 7 punct _ _ 9 with _ ADP IN _ 13 case _ _ 10 revised _ VERB VBN _ 13 amod _ _ 11 analysts _ NOUN NNS _ 13 nmod:poss _ _ 12 ' _ PART POS _ 11 case _ _ 13 projections _ NOUN NNS _ 7 nmod _ _ 14 that _ SCONJ IN _ 18 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nsubj _ _ 17 would _ AUX MD _ 18 aux _ _ 18 report _ VERB VB _ 13 ccomp _ _ 19 earnings _ NOUN NNS _ 18 dobj _ _ 20 of _ ADP IN _ 23 case _ _ 21 between _ ADP IN _ 23 amod _ _ 22 62 _ NUM CD _ 23 nummod _ _ 23 cents _ NOUN NNS _ 19 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 64 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 23 conj _ _ 27 a _ DET DT _ 28 det _ _ 28 share _ NOUN NN _ 23 nmod:npmod _ _ 29 , _ PUNCT , _ 18 punct _ _ 30 compared _ VERB VBN _ 34 case _ _ 31 with _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 53 _ NUM CD _ 34 nummod _ _ 34 cents _ NOUN NNS _ 18 advcl _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 it _ PRON PRP _ 38 nsubj _ _ 38 reported _ VERB VBD _ 34 acl:relcl _ _ 39 for _ ADP IN _ 43 case _ _ 40 the _ DET DT _ 43 det _ _ 41 1988 _ NUM CD _ 43 nummod _ _ 42 third _ ADJ JJ _ 43 amod _ _ 43 quarter _ NOUN NN _ 38 nmod _ _ 44 . _ PUNCT . _ 3 punct _ _ 1 Knight-Ridder _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 agreed _ VERB VBD _ 2 ccomp _ _ 5 with _ ADP IN _ 6 case _ _ 6 estimates _ NOUN NNS _ 4 nmod _ _ 7 that _ SCONJ IN _ 18 mark _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 18 nsubj _ _ 10 for _ ADP IN _ 11 case _ _ 11 all _ DET DT _ 9 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 1989 _ NUM CD _ 11 nmod _ _ 14 would _ AUX MD _ 18 aux _ _ 15 be _ VERB VB _ 18 cop _ _ 16 around _ ADV RB _ 18 advmod _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 2.86 _ NUM CD _ 6 ccomp _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 compared _ VERB VBN _ 25 case _ _ 23 with _ ADP IN _ 25 case _ _ 24 $ _ SYM $ _ 25 dep _ _ 25 2.59 _ NUM CD _ 18 advcl _ _ 26 a _ DET DT _ 27 det _ _ 27 share _ NOUN NN _ 25 nmod:npmod _ _ 28 a _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 30 nmod:npmod _ _ 30 earlier _ ADV RBR _ 25 advmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ ADJ JJ _ 7 amod _ _ 7 trading _ NOUN NN _ 11 nmod _ _ 8 yesterday _ NOUN NN _ 11 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 Knight-Ridder _ PROPN NNP _ 11 nsubj _ _ 11 closed _ VERB VBD _ 0 root _ _ 12 at _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 51.75 _ NUM CD _ 11 nmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 down _ ADV RB _ 11 advmod _ _ 17 37.5 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 DD _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 extended _ VERB VBD _ 4 ccomp _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 $ _ SYM $ _ 10 amod _ _ 9 45-a-share _ ADJ JJ _ 8 dep _ _ 10 offer _ NOUN NN _ 6 dobj _ _ 11 for _ ADP IN _ 15 case _ _ 12 Dunkin _ PROPN NNP _ 15 compound _ _ 13 ' _ PUNCT '' _ 15 punct _ _ 14 Donuts _ PROPN NNP _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 10 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 Nov. _ PROPN NNP _ 6 nmod _ _ 18 1 _ NUM CD _ 17 nummod _ _ 19 from _ ADP IN _ 20 case _ _ 20 yesterday _ NOUN NN _ 6 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 3 nsubj _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 6 det _ _ 5 indicated _ VERB VBN _ 6 amod _ _ 6 value _ NOUN NN _ 3 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 268 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 DD _ PROPN NNP _ 2 compound _ _ 2 Acquisition _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 partnership _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 14 case _ _ 7 Unicorp _ PROPN NNP _ 9 compound _ _ 8 Canada _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 14 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 Kingsbridge _ PROPN NNP _ 14 compound _ _ 12 Capital _ PROPN NNP _ 14 compound _ _ 13 Group _ PROPN NNP _ 14 compound _ _ 14 unit _ NOUN NN _ 5 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Cara _ PROPN NNP _ 18 compound _ _ 17 Operations _ PROPN NNP _ 18 compound _ _ 18 Ltd _ PROPN NNP _ 14 conj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 previously _ ADV RB _ 3 advmod _ _ 3 reported _ VERB VBN _ 19 advcl _ _ 4 , _ PUNCT , _ 19 punct _ _ 5 under _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 terms _ NOUN NNS _ 19 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 confidentiality _ NOUN NN _ 11 compound _ _ 11 agreement _ NOUN NN _ 7 nmod _ _ 12 with _ ADP IN _ 15 case _ _ 13 Dunkin _ PROPN NNP _ 15 compound _ _ 14 ' _ PUNCT '' _ 15 punct _ _ 15 Donuts _ PROPN NNP _ 11 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 partners _ NOUN NNS _ 19 nsubj _ _ 19 agreed _ VERB VBD _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 keep _ VERB VB _ 19 ccomp _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 offer _ NOUN NN _ 24 nsubj _ _ 24 open _ ADJ JJ _ 21 xcomp _ _ 25 until _ ADP IN _ 26 case _ _ 26 Nov. _ PROPN NNP _ 24 nmod _ _ 27 1 _ NUM CD _ 26 nummod _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 and _ CONJ CC _ 21 cc _ _ 30 not _ PART RB _ 32 neg _ _ 31 to _ PART TO _ 32 mark _ _ 32 acquire _ VERB VB _ 21 conj _ _ 33 any _ DET DT _ 35 det _ _ 34 additional _ ADJ JJ _ 35 amod _ _ 35 shares _ NOUN NNS _ 32 dobj _ _ 36 except _ ADP IN _ 40 case _ _ 37 through _ ADP IN _ 40 case _ _ 38 a _ DET DT _ 40 det _ _ 39 tender _ NOUN NN _ 40 compound _ _ 40 offer _ NOUN NN _ 32 nmod _ _ 41 expiring _ VERB VBG _ 40 acl _ _ 42 on _ ADP IN _ 44 case _ _ 43 that _ DET DT _ 44 det _ _ 44 date _ NOUN NN _ 41 nmod _ _ 45 . _ PUNCT . _ 19 punct _ _ 1 DD _ PROPN NNP _ 2 compound _ _ 2 Acquisition _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 already _ ADV RB _ 7 advmod _ _ 7 owns _ VERB VBZ _ 3 ccomp _ _ 8 15 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 common _ ADJ JJ _ 13 amod _ _ 13 shares _ NOUN NNS _ 9 nmod _ _ 14 of _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 doughnut _ NOUN NN _ 18 compound _ _ 17 shop _ NOUN NN _ 18 compound _ _ 18 chain _ NOUN NN _ 13 nmod _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 that _ SCONJ IN _ 34 mark _ _ 21 as _ ADV RB _ 24 advmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 close _ NOUN NN _ 34 advcl _ _ 25 of _ ADP IN _ 26 case _ _ 26 business _ NOUN NN _ 24 nmod _ _ 27 Friday _ PROPN NNP _ 24 nmod:tmod _ _ 28 an _ DET DT _ 31 det _ _ 29 additional _ ADJ JJ _ 30 advmod _ _ 30 11 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 34 nsubjpass _ _ 32 had _ AUX VBD _ 34 aux _ _ 33 been _ AUX VBN _ 34 auxpass _ _ 34 tendered _ VERB VBN _ 7 conj _ _ 35 to _ ADP TO _ 37 case _ _ 36 its _ PRON PRP$ _ 37 nmod:poss _ _ 37 offer _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Dunkin _ PROPN NNP _ 3 compound _ _ 2 ' _ PUNCT '' _ 3 punct _ _ 3 Donuts _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 based _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 Randolph _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Mass _ PROPN NNP _ 7 appos _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Cara _ PROPN NNP _ 2 compound _ _ 2 Operations _ PROPN NNP _ 27 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 7 det _ _ 5 food _ NOUN NN _ 7 compound _ _ 6 services _ NOUN NNS _ 7 compound _ _ 7 concern _ NOUN NN _ 2 appos _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 Unicorp _ PROPN NNP _ 2 conj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 holding _ VERB VBG _ 14 amod _ _ 14 company _ NOUN NN _ 10 appos _ _ 15 with _ ADP IN _ 16 case _ _ 16 interests _ NOUN NNS _ 14 nmod _ _ 17 in _ ADP IN _ 21 case _ _ 18 oil _ NOUN NN _ 21 compound _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 natural _ ADJ JJ _ 18 conj _ _ 21 gas _ NOUN NN _ 16 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 financial _ ADJ JJ _ 24 amod _ _ 24 services _ NOUN NNS _ 21 conj _ _ 25 , _ PUNCT , _ 10 punct _ _ 26 are _ AUX VBP _ 27 auxpass _ _ 27 based _ VERB VBN _ 0 root _ _ 28 in _ ADP IN _ 29 case _ _ 29 Toronto _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 27 punct _ _ 1 Golden _ PROPN NNP _ 4 compound _ _ 2 West _ PROPN NNP _ 4 compound _ _ 3 Financial _ PROPN NNP _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 19 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 riding _ VERB VBG _ 4 acl _ _ 7 above _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 turbulence _ NOUN NN _ 6 nmod _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 troubled _ VERB VBN _ 9 acl:relcl _ _ 13 most _ ADJ JJS _ 12 dobj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 thrift _ NOUN NN _ 17 compound _ _ 17 industry _ NOUN NN _ 13 nmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 posted _ VERB VBD _ 0 root _ _ 20 a _ DET DT _ 23 det _ _ 21 16 _ NUM CD _ 22 compound _ _ 22 % _ SYM NN _ 23 amod _ _ 23 increase _ NOUN NN _ 19 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 third-quarter _ ADJ JJ _ 26 amod _ _ 26 earnings _ NOUN NNS _ 23 nmod _ _ 27 to _ ADP TO _ 28 case _ _ 28 $ _ SYM $ _ 19 nmod _ _ 29 41.8 _ NUM CD _ 28 compound _ _ 30 millon _ NOUN NN _ 28 dep _ _ 31 , _ PUNCT , _ 28 punct _ _ 32 or _ CONJ CC _ 28 cc _ _ 33 66 _ NUM CD _ 34 nummod _ _ 34 cents _ NOUN NNS _ 28 conj _ _ 35 a _ DET DT _ 36 det _ _ 36 share _ NOUN NN _ 34 nmod:npmod _ _ 37 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 earned _ VERB VBD _ 0 root _ _ 4 $ _ SYM $ _ 3 dobj _ _ 5 36 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 or _ CONJ CC _ 4 cc _ _ 9 57 _ NUM CD _ 10 nummod _ _ 10 cents _ NOUN NNS _ 4 conj _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 year-ago _ ADJ JJ _ 17 amod _ _ 17 quarter _ NOUN NN _ 3 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Herbert _ PROPN NNP _ 3 compound _ _ 2 M. _ PROPN NNP _ 3 compound _ _ 3 Sandler _ PROPN NNP _ 20 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chairman _ NOUN NN _ 3 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 chief _ ADJ JJ _ 9 amod _ _ 8 executive _ ADJ JJ _ 9 amod _ _ 9 officer _ NOUN NN _ 5 conj _ _ 10 of _ ADP IN _ 18 case _ _ 11 the _ DET DT _ 18 det _ _ 12 Oakland _ PROPN NNP _ 18 dep _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 Calif. _ PROPN NNP _ 12 dep _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 savings-and-loan _ ADJ JJ _ 18 amod _ _ 17 holding _ VERB VBG _ 18 amod _ _ 18 company _ NOUN NN _ 5 nmod _ _ 19 , _ PUNCT , _ 3 punct _ _ 20 credited _ VERB VBD _ 0 root _ _ 21 the _ DET DT _ 23 det _ _ 22 high _ ADJ JJ _ 23 amod _ _ 23 number _ NOUN NN _ 20 dobj _ _ 24 of _ ADP IN _ 25 case _ _ 25 loans _ NOUN NNS _ 23 nmod _ _ 26 added _ VERB VBN _ 25 acl _ _ 27 to _ ADP TO _ 31 case _ _ 28 the _ DET DT _ 29 det _ _ 29 company _ NOUN NN _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 portfolio _ NOUN NN _ 26 nmod _ _ 32 over _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 last _ ADJ JJ _ 36 amod _ _ 35 12 _ NUM CD _ 36 nummod _ _ 36 months _ NOUN NNS _ 26 nmod _ _ 37 for _ SCONJ IN _ 38 mark _ _ 38 broadening _ VERB VBG _ 20 advcl _ _ 39 its _ PRON PRP$ _ 42 nmod:poss _ _ 40 earning _ NOUN NN _ 42 compound _ _ 41 asset _ NOUN NN _ 42 compound _ _ 42 base _ NOUN NN _ 38 dobj _ _ 43 and _ CONJ CC _ 38 cc _ _ 44 improving _ VERB VBG _ 38 conj _ _ 45 profit _ NOUN NN _ 46 compound _ _ 46 performance _ NOUN NN _ 44 dobj _ _ 47 . _ PUNCT . _ 20 punct _ _ 1 However _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 executive _ NOUN NN _ 5 nsubj _ _ 5 noted _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 slackening _ VERB VBG _ 8 amod _ _ 8 demand _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 mortgages _ NOUN NNS _ 8 nmod _ _ 12 depressed _ VERB VBD _ 5 ccomp _ _ 13 new _ ADJ JJ _ 15 amod _ _ 14 loan _ NOUN NN _ 15 compound _ _ 15 originations _ NOUN NNS _ 12 dobj _ _ 16 to _ ADP TO _ 17 case _ _ 17 $ _ SYM $ _ 12 nmod _ _ 18 1 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 30 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 17 appos _ _ 23 below _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 same _ ADJ JJ _ 26 amod _ _ 26 period _ NOUN NN _ 22 nmod _ _ 27 last _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 26 nmod:tmod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 savings _ NOUN NN _ 3 compound _ _ 3 activity _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Sandler _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 consumer _ NOUN NN _ 9 compound _ _ 9 deposits _ NOUN NNS _ 11 nsubj _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 enjoyed _ VERB VBN _ 7 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 steady _ ADJ JJ _ 14 amod _ _ 14 increase _ NOUN NN _ 11 dobj _ _ 15 throughout _ ADP IN _ 16 case _ _ 16 1989 _ NUM CD _ 11 nmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 and _ CONJ CC _ 11 cc _ _ 19 topped _ VERB VBD _ 11 conj _ _ 20 $ _ SYM $ _ 19 dobj _ _ 21 11 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 at _ ADP IN _ 26 case _ _ 24 quarter _ NOUN NN _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 end _ NOUN NN _ 19 nmod _ _ 27 for _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 first _ ADJ JJ _ 30 amod _ _ 30 time _ NOUN NN _ 19 nmod _ _ 31 in _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 33 det _ _ 33 company _ NOUN NN _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 history _ NOUN NN _ 30 nmod _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 Deposit _ NOUN NN _ 2 compound _ _ 2 growth _ NOUN NN _ 3 nsubj _ _ 3 amounted _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 5 case _ _ 5 $ _ SYM $ _ 3 nmod _ _ 6 393 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 more _ ADV RBR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 double _ ADV RB _ 14 nummod _ _ 12 the _ DET DT _ 14 det _ _ 13 year-ago _ ADJ JJ _ 14 amod _ _ 14 figure _ NOUN NN _ 5 appos _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Whirlpool _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Benton _ PROPN NNP _ 5 compound _ _ 5 Harbor _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mich. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 developed _ VERB VBN _ 9 ccomp _ _ 13 a _ DET DT _ 14 det _ _ 14 process _ NOUN NN _ 12 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 recover _ VERB VB _ 14 acl _ _ 17 environmentally _ ADV RB _ 18 advmod _ _ 18 harmful _ ADJ JJ _ 19 amod _ _ 19 chlorofluorocarbons _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 or _ CONJ CC _ 19 cc _ _ 22 CFCs _ NOUN NNS _ 19 conj _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 that _ PRON WDT _ 26 nsubj _ _ 25 previously _ ADV RB _ 26 advmod _ _ 26 entered _ VERB VBD _ 19 acl:relcl _ _ 27 the _ DET DT _ 28 det _ _ 28 atmosphere _ NOUN NN _ 26 dobj _ _ 29 during _ ADP IN _ 31 case _ _ 30 in-home _ ADJ JJ _ 31 amod _ _ 31 repair _ NOUN NN _ 26 nmod _ _ 32 of _ ADP IN _ 33 case _ _ 33 refrigerators _ NOUN NNS _ 31 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 freezers _ NOUN NNS _ 33 conj _ _ 36 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 maker _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 home _ NOUN NN _ 5 compound _ _ 5 appliances _ NOUN NNS _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 process _ NOUN NN _ 37 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 11 nsubj _ _ 11 involves _ VERB VBZ _ 8 acl:relcl _ _ 12 the _ DET DT _ 13 det _ _ 13 use _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 multilayer _ ADJ JJ _ 18 amod _ _ 17 plastic _ NOUN NN _ 18 compound _ _ 18 bag _ NOUN NN _ 13 nmod _ _ 19 during _ ADP IN _ 20 case _ _ 20 repairs _ NOUN NNS _ 13 nmod _ _ 21 to _ PART TO _ 22 mark _ _ 22 capture _ VERB VB _ 13 acl _ _ 23 the _ DET DT _ 25 det _ _ 24 gaseous _ ADJ JJ _ 25 amod _ _ 25 substance _ NOUN NN _ 22 dobj _ _ 26 and _ CONJ CC _ 22 cc _ _ 27 transport _ NOUN NN _ 22 conj _ _ 28 it _ PRON PRP _ 27 dobj _ _ 29 to _ ADP TO _ 32 case _ _ 30 a _ DET DT _ 32 det _ _ 31 recycling _ VERB VBG _ 32 amod _ _ 32 center _ NOUN NN _ 27 nmod _ _ 33 , _ PUNCT , _ 8 punct _ _ 34 is _ VERB VBZ _ 37 cop _ _ 35 already _ ADV RB _ 37 advmod _ _ 36 in _ ADP IN _ 37 case _ _ 37 use _ NOUN NN _ 6 ccomp _ _ 38 at _ ADP IN _ 40 case _ _ 39 a _ DET DT _ 40 det _ _ 40 number _ NOUN NN _ 37 nmod _ _ 41 of _ ADP IN _ 44 case _ _ 42 its _ PRON PRP$ _ 44 nmod:poss _ _ 43 service _ NOUN NN _ 44 compound _ _ 44 centers _ NOUN NNS _ 40 nmod _ _ 45 , _ PUNCT , _ 37 punct _ _ 46 and _ CONJ CC _ 37 cc _ _ 47 will _ AUX MD _ 49 aux _ _ 48 be _ VERB VB _ 49 cop _ _ 49 available _ ADJ JJ _ 37 conj _ _ 50 to _ ADP TO _ 54 case _ _ 51 all _ DET DT _ 54 det _ _ 52 authorized _ VERB VBN _ 54 amod _ _ 53 repair _ NOUN NN _ 54 compound _ _ 54 centers _ NOUN NNS _ 49 nmod _ _ 55 by _ ADP IN _ 56 case _ _ 56 spring _ NOUN NN _ 49 nmod _ _ 57 . _ PUNCT . _ 6 punct _ _ 1 Earlier _ ADJ JJR _ 2 amod _ _ 2 repairs _ NOUN NNS _ 3 nsubj _ _ 3 vented _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 CFCs _ NOUN NNS _ 3 dobj _ _ 6 out _ ADP IN _ 9 case _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 home _ NOUN NN _ 3 nmod _ _ 10 through _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 hose _ NOUN NN _ 3 nmod _ _ 13 directly _ ADV RB _ 16 advmod _ _ 14 into _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 atmosphere _ NOUN NN _ 3 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 CFCs _ NOUN NNS _ 4 nsubjpass _ _ 2 are _ AUX VBP _ 4 auxpass _ _ 3 widely _ ADV RB _ 4 advmod _ _ 4 used _ VERB VBN _ 0 root _ _ 5 as _ ADP IN _ 6 case _ _ 6 solvents _ NOUN NNS _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 coolants _ NOUN NNS _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 fire _ NOUN NN _ 11 compound _ _ 11 suppressants _ NOUN NNS _ 6 conj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 their _ PRON PRP$ _ 3 nmod:poss _ _ 3 use _ NOUN NN _ 6 nsubjpass _ _ 4 has _ AUX VBZ _ 6 aux _ _ 5 been _ AUX VBN _ 6 auxpass _ _ 6 linked _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 potentially _ ADV RB _ 10 advmod _ _ 10 dangerous _ ADJ JJ _ 11 amod _ _ 11 depletion _ NOUN NN _ 6 nmod _ _ 12 of _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 14 det _ _ 14 Earth _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 ozone _ NOUN NN _ 17 compound _ _ 17 layer _ NOUN NN _ 11 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 and _ CONJ CC _ 6 cc _ _ 20 a _ DET DT _ 21 det _ _ 21 number _ NOUN NN _ 25 nsubj _ _ 22 of _ ADP IN _ 23 case _ _ 23 companies _ NOUN NNS _ 21 nmod _ _ 24 are _ AUX VBP _ 25 aux _ _ 25 seeking _ VERB VBG _ 6 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 curtail _ VERB VB _ 25 xcomp _ _ 28 use _ NOUN NN _ 27 dobj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 or _ CONJ CC _ 28 cc _ _ 31 at _ ADP IN _ 32 case _ _ 32 least _ ADJ JJS _ 33 advmod _ _ 33 emission _ NOUN NN _ 28 conj _ _ 34 , _ PUNCT , _ 28 punct _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 substance _ NOUN NN _ 28 conj _ _ 38 . _ PUNCT . _ 6 punct _ _ 1 Whirpool _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 `` _ PUNCT `` _ 6 punct _ _ 5 We _ PRON PRP _ 6 nsubj _ _ 6 see _ VERB VBP _ 2 ccomp _ _ 7 this _ DET DT _ 8 det _ _ 8 process _ NOUN NN _ 6 dobj _ _ 9 as _ ADP IN _ 14 case _ _ 10 a _ DET DT _ 14 det _ _ 11 small _ ADJ JJ _ 14 amod _ _ 12 but _ CONJ CC _ 11 cc _ _ 13 important _ ADJ JJ _ 11 conj _ _ 14 step _ NOUN NN _ 6 nmod _ _ 15 toward _ ADP IN _ 17 case _ _ 16 eventual _ ADJ JJ _ 17 amod _ _ 17 elimination _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 CFC _ PROPN NNP _ 20 compound _ _ 20 use _ NOUN NN _ 17 nmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 appliance _ NOUN NN _ 23 compound _ _ 23 manufacture _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 Maxus _ PROPN NNP _ 3 compound _ _ 2 Energy _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 7 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Dallas _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 discovered _ VERB VBD _ 7 ccomp _ _ 10 a _ DET DT _ 13 det _ _ 11 new _ ADJ JJ _ 13 amod _ _ 12 oil _ NOUN NN _ 13 compound _ _ 13 field _ NOUN NN _ 9 dobj _ _ 14 northeast _ NOUN NN _ 9 advmod _ _ 15 of _ ADP IN _ 20 case _ _ 16 its _ PRON PRP$ _ 20 nmod:poss _ _ 17 previously _ ADV RB _ 18 advmod _ _ 18 discovered _ VERB VBN _ 20 amod _ _ 19 Intan _ PROPN NNP _ 20 compound _ _ 20 Field _ PROPN NNP _ 14 nmod _ _ 21 in _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 southeast _ ADJ JJ _ 25 amod _ _ 24 Sumatra _ PROPN NNP _ 25 compound _ _ 25 area _ NOUN NN _ 20 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 Indonesia _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 Maxus _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 did _ AUX VBD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 run _ VERB VB _ 2 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 production _ NOUN NN _ 9 compound _ _ 9 test _ NOUN NN _ 6 dobj _ _ 10 on _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 three _ NUM CD _ 14 nummod _ _ 13 discovery _ NOUN NN _ 14 compound _ _ 14 wells _ NOUN NNS _ 6 nmod _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 drilled _ VERB VBD _ 14 acl:relcl _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 field _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 25 nsubj _ _ 22 is _ VERB VBZ _ 25 cop _ _ 23 about _ ADV RB _ 24 advmod _ _ 24 1.6 _ NUM CD _ 25 nummod _ _ 25 miles _ NOUN NNS _ 19 acl:relcl _ _ 26 from _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Intan _ PROPN NNP _ 29 compound _ _ 29 Field _ PROPN NNP _ 25 nmod _ _ 30 , _ PUNCT , _ 19 punct _ _ 31 because _ SCONJ IN _ 35 mark _ _ 32 the _ DET DT _ 33 det _ _ 33 wells _ NOUN NNS _ 35 nsubj _ _ 34 are _ VERB VBP _ 35 cop _ _ 35 similar _ ADJ JJ _ 6 advcl _ _ 36 to _ ADP TO _ 37 case _ _ 37 others _ NOUN NNS _ 35 nmod _ _ 38 drilled _ VERB VBN _ 37 acl _ _ 39 at _ ADP IN _ 41 case _ _ 40 its _ PRON PRP$ _ 41 nmod:poss _ _ 41 Intan _ PROPN NNP _ 38 nmod _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 Widuri _ PROPN NNP _ 44 compound _ _ 44 fields _ NOUN NNS _ 41 conj _ _ 45 . _ PUNCT . _ 2 punct _ _ 1 However _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Maxus _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 believes _ VERB VBZ _ 4 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 reserves _ NOUN NNS _ 16 nsubj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 field _ NOUN NN _ 8 nmod _ _ 12 are _ VERB VBP _ 16 cop _ _ 13 about _ ADV RB _ 15 advmod _ _ 14 10 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 16 nummod _ _ 16 barrels _ NOUN NNS _ 6 ccomp _ _ 17 of _ ADP IN _ 18 case _ _ 18 oil _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Intan _ PROPN NNP _ 3 compound _ _ 3 Field _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 estimated _ VERB VBN _ 0 root _ _ 6 reserves _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 50 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 barrels _ NOUN NNS _ 6 nmod _ _ 11 and _ CONJ CC _ 5 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 Widuri _ PROPN NNP _ 14 compound _ _ 14 Field _ PROPN NNP _ 16 nsubj _ _ 15 has _ AUX VBZ _ 16 aux _ _ 16 estimated _ VERB VBN _ 5 conj _ _ 17 reserves _ NOUN NNS _ 16 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 225 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 barrels _ NOUN NNS _ 17 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Maxus _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 an _ DET DT _ 5 det _ _ 4 independent _ ADJ JJ _ 5 amod _ _ 5 oil _ NOUN NN _ 1 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 gas _ NOUN NN _ 8 compound _ _ 8 concern _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ VERB VBZ _ 12 cop _ _ 11 the _ DET DT _ 12 det _ _ 12 operator _ NOUN NN _ 0 root _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 owns _ VERB VBZ _ 12 conj _ _ 15 a _ DET DT _ 18 det _ _ 16 56 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 interest _ NOUN NN _ 14 dobj _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 new _ ADJ JJ _ 22 amod _ _ 22 field _ NOUN NN _ 18 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 called _ VERB VBD _ 22 acl _ _ 25 Northeast _ PROPN NNP _ 26 compound _ _ 26 Intan _ PROPN NNP _ 24 xcomp _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 interests _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 owned _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 12 case _ _ 6 BP _ PROPN NNP _ 12 compound _ _ 7 Petroleum _ PROPN NNP _ 12 compound _ _ 8 Development _ PROPN NNP _ 12 compound _ _ 9 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 10 SES _ PROPN NNP _ 12 appos _ _ 11 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 12 Ltd. _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 C. _ PROPN NNP _ 18 compound _ _ 15 Itoh _ PROPN NNP _ 18 compound _ _ 16 Energy _ PROPN NNP _ 18 compound _ _ 17 Co. _ PROPN NNP _ 18 compound _ _ 18 Ltd. _ PROPN NNP _ 12 conj _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 Deminex _ PROPN NNP _ 25 compound _ _ 21 Sumatra _ PROPN NNP _ 25 compound _ _ 22 OEL _ PROPN NNP _ 25 compound _ _ 23 G.m.b _ PROPN NNP _ 25 compound _ _ 24 . _ PUNCT . _ 25 punct _ _ 25 H. _ PROPN NNP _ 12 conj _ _ 26 , _ PUNCT , _ 12 punct _ _ 27 Hispanoil _ PROPN NNP _ 32 compound _ _ 28 -LRB- _ PUNCT -LRB- _ 29 punct _ _ 29 Sumatra _ PROPN NNP _ 32 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 29 punct _ _ 31 Production _ PROPN NNP _ 32 compound _ _ 32 Ltd. _ PROPN NNP _ 12 conj _ _ 33 , _ PUNCT , _ 12 punct _ _ 34 Hudbay _ PROPN NNP _ 39 compound _ _ 35 Oil _ PROPN NNP _ 39 compound _ _ 36 -LRB- _ PUNCT -LRB- _ 37 punct _ _ 37 Indonesia _ PROPN NNP _ 39 dep _ _ 38 -RRB- _ PUNCT -RRB- _ 37 punct _ _ 39 Ltd. _ PROPN NNP _ 12 conj _ _ 40 , _ PUNCT , _ 12 punct _ _ 41 Inpex _ PROPN NNP _ 44 compound _ _ 42 Sumatra _ PROPN NNP _ 44 compound _ _ 43 Co. _ PROPN NNP _ 44 compound _ _ 44 Ltd. _ PROPN NNP _ 12 conj _ _ 45 , _ PUNCT , _ 12 punct _ _ 46 Lasmo _ PROPN NNP _ 48 compound _ _ 47 Sumatra _ PROPN NNP _ 48 compound _ _ 48 Ltd. _ PROPN NNP _ 12 conj _ _ 49 , _ PUNCT , _ 12 punct _ _ 50 Sunda _ PROPN NNP _ 51 compound _ _ 51 Shell _ PROPN NNP _ 12 conj _ _ 52 , _ PUNCT , _ 12 punct _ _ 53 TCR _ PROPN NNP _ 55 compound _ _ 54 Sumat _ PROPN NNP _ 55 compound _ _ 55 A.G. _ PROPN NNP _ 12 conj _ _ 56 and _ CONJ CC _ 12 cc _ _ 57 Warrior _ PROPN NNP _ 59 compound _ _ 58 Oil _ PROPN NNP _ 59 compound _ _ 59 Co _ PROPN NNP _ 12 conj _ _ 60 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 production-sharing _ ADJ JJ _ 4 amod _ _ 3 contract _ NOUN NN _ 4 compound _ _ 4 area _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 held _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 8 case _ _ 8 Pertamina _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 14 det _ _ 11 Indonesian _ ADJ JJ _ 14 amod _ _ 12 state _ NOUN NN _ 14 compound _ _ 13 oil _ NOUN NN _ 14 compound _ _ 14 company _ NOUN NN _ 8 appos _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Environmental _ PROPN NNP _ 3 compound _ _ 2 Systems _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 is _ AUX VBZ _ 7 aux _ _ 7 restating _ VERB VBG _ 4 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 results _ NOUN NNS _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 reduce _ VERB VB _ 7 advcl _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 reported _ VERB VBN _ 15 amod _ _ 14 net _ ADJ JJ _ 15 amod _ _ 15 income _ NOUN NN _ 11 dobj _ _ 16 for _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 first _ ADJ JJ _ 20 amod _ _ 19 nine _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 15 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 fiscal _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 20 nmod _ _ 25 after _ SCONJ IN _ 26 mark _ _ 26 discovering _ VERB VBG _ 7 advcl _ _ 27 it _ PRON PRP _ 28 nsubj _ _ 28 took _ VERB VBD _ 26 ccomp _ _ 29 tax _ NOUN NN _ 30 compound _ _ 30 credits _ NOUN NNS _ 28 dobj _ _ 31 that _ PRON WDT _ 35 nsubjpass _ _ 32 already _ ADV RB _ 35 advmod _ _ 33 had _ AUX VBD _ 35 aux _ _ 34 been _ AUX VBN _ 35 auxpass _ _ 35 taken _ VERB VBN _ 30 acl:relcl _ _ 36 last _ ADJ JJ _ 37 amod _ _ 37 year _ NOUN NN _ 35 nmod:tmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 9 det _ _ 2 Little _ PROPN NNP _ 9 dep _ _ 3 Rock _ PROPN NNP _ 2 compound _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 Ark. _ PROPN NNP _ 2 dep _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 hazardous-waste _ ADJ JJ _ 9 amod _ _ 8 services _ NOUN NNS _ 9 compound _ _ 9 company _ NOUN NN _ 10 nsubj _ _ 10 said _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 restatement _ NOUN NN _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 reduce _ VERB VB _ 10 ccomp _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 net _ ADJ JJ _ 14 dobj _ _ 17 for _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 nine _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 16 nmod _ _ 21 ended _ VERB VBN _ 20 acl _ _ 22 July _ PROPN NNP _ 21 nmod:tmod _ _ 23 31 _ NUM CD _ 22 nummod _ _ 24 to _ ADP TO _ 25 case _ _ 25 $ _ SYM $ _ 14 nmod _ _ 26 2.5 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 17 _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 25 punct _ _ 35 from _ ADP IN _ 36 case _ _ 36 $ _ SYM $ _ 14 nmod _ _ 37 3.7 _ NUM CD _ 38 compound _ _ 38 million _ NUM CD _ 36 nummod _ _ 39 , _ PUNCT , _ 36 punct _ _ 40 or _ CONJ CC _ 36 cc _ _ 41 26 _ NUM CD _ 42 nummod _ _ 42 cents _ NOUN NNS _ 36 conj _ _ 43 a _ DET DT _ 44 det _ _ 44 share _ NOUN NN _ 42 nmod:npmod _ _ 45 . _ PUNCT . _ 10 punct _ _ 1 Net _ ADJ JJ _ 10 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 restated _ VERB VBN _ 1 acl _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 $ _ SYM $ _ 0 root _ _ 11 1.6 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 10 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 previously _ ADV RB _ 4 advmod _ _ 4 reported _ VERB VBN _ 0 root _ _ 5 net _ ADJ JJ _ 4 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 2.3 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 or _ CONJ CC _ 7 cc _ _ 12 15 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 7 conj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 12 mark _ _ 5 for _ ADP IN _ 8 case _ _ 6 financial _ ADJ JJ _ 8 amod _ _ 7 reporting _ NOUN NN _ 8 compound _ _ 8 purposes _ NOUN NNS _ 12 nmod _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 year _ NOUN NN _ 12 nmod:tmod _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 took _ VERB VBD _ 3 ccomp _ _ 13 tax _ NOUN NN _ 14 compound _ _ 14 credits _ NOUN NNS _ 12 dobj _ _ 15 that _ PRON WDT _ 18 nsubjpass _ _ 16 will _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 recognized _ VERB VBN _ 14 acl:relcl _ _ 19 for _ ADP IN _ 21 case _ _ 20 tax _ NOUN NN _ 21 compound _ _ 21 purposes _ NOUN NNS _ 18 nmod _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 18 nmod:tmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 because _ ADP IN _ 4 case _ _ 3 of _ ADP IN _ 2 mwe _ _ 4 confusion _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 took _ VERB VBD _ 0 root _ _ 8 those _ DET DT _ 9 det _ _ 9 credits _ NOUN NNS _ 7 dobj _ _ 10 again _ ADV RB _ 7 advmod _ _ 11 in _ SCONJ IN _ 12 mark _ _ 12 reporting _ VERB VBG _ 7 advcl _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 results _ NOUN NNS _ 12 dobj _ _ 15 through _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 first _ ADJ JJ _ 19 amod _ _ 18 nine _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 14 nmod _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 Jack _ PROPN NNP _ 3 compound _ _ 2 W. _ PROPN NNP _ 3 compound _ _ 3 Forrest _ PROPN NNP _ 13 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Environmental _ PROPN NNP _ 7 compound _ _ 6 Systems _ PROPN NNP _ 7 dep _ _ 7 president _ NOUN NN _ 3 appos _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 chief _ ADJ JJ _ 11 amod _ _ 10 executive _ ADJ JJ _ 11 amod _ _ 11 officer _ NOUN NN _ 7 conj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 change _ NOUN NN _ 16 nsubj _ _ 16 increases _ VERB VBZ _ 13 ccomp _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 22 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 effective _ ADJ JJ _ 22 amod _ _ 21 tax _ NOUN NN _ 22 compound _ _ 22 rate _ NOUN NN _ 16 dobj _ _ 23 to _ ADP TO _ 26 case _ _ 24 about _ ADV RB _ 25 advmod _ _ 25 35 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 16 nmod _ _ 27 from _ ADP IN _ 29 case _ _ 28 20 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 16 nmod _ _ 30 . _ PUNCT . _ 13 punct _ _ 1 Memotec _ PROPN NNP _ 3 compound _ _ 2 Data _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 signed _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 10 det _ _ 8 definitive _ ADJ JJ _ 10 amod _ _ 9 merger _ NOUN NN _ 10 compound _ _ 10 agreement _ NOUN NN _ 6 dobj _ _ 11 with _ ADP IN _ 14 case _ _ 12 ISI _ PROPN NNP _ 14 compound _ _ 13 Systems _ PROPN NNP _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 10 nmod _ _ 15 under _ ADP IN _ 16 case _ _ 16 which _ PRON WDT _ 19 nmod _ _ 17 Memotec _ PROPN NNP _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 acquire _ VERB VB _ 10 acl:relcl _ _ 20 ISI _ PROPN NNP _ 19 dobj _ _ 21 for _ ADP IN _ 23 case _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 20 _ NUM CD _ 19 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 25 punct _ _ 25 U.S. _ PROPN NNP _ 23 appos _ _ 26 . _ PUNCT . _ 25 punct _ _ 27 -RRB- _ PUNCT -RRB- _ 25 punct _ _ 28 a _ DET DT _ 29 det _ _ 29 share _ NOUN NN _ 23 nmod:npmod _ _ 30 , _ PUNCT , _ 23 punct _ _ 31 or _ CONJ CC _ 23 cc _ _ 32 about _ ADV RB _ 33 advmod _ _ 33 $ _ SYM $ _ 23 conj _ _ 34 130 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 , _ PUNCT , _ 33 punct _ _ 37 in _ ADP IN _ 38 case _ _ 38 cash _ NOUN NN _ 33 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 securities _ NOUN NNS _ 38 conj _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 American _ PROPN NNP _ 6 compound _ _ 3 Stock _ PROPN NNP _ 6 compound _ _ 4 Exchange _ PROPN NNP _ 6 compound _ _ 5 composite _ ADJ JJ _ 6 amod _ _ 6 trading _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 ISI _ PROPN NNP _ 9 nsubj _ _ 9 closed _ VERB VBD _ 0 root _ _ 10 up _ ADV RB _ 9 advmod _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 3.125 _ NUM CD _ 10 nmod:npmod _ _ 13 at _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 18.625 _ NUM CD _ 9 nmod _ _ 16 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 Montreal _ PROPN NNP _ 4 compound _ _ 3 Exchange _ PROPN NNP _ 4 compound _ _ 4 trading _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Memotec _ PROPN NNP _ 7 nsubj _ _ 7 closed _ VERB VBD _ 0 root _ _ 8 unchanged _ ADJ JJ _ 7 advmod _ _ 9 at _ ADP IN _ 12 case _ _ 10 10.625 _ NUM CD _ 12 nummod _ _ 11 Canadian _ ADJ JJ _ 12 amod _ _ 12 dollars _ NOUN NNS _ 7 nmod _ _ 13 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 14 US$ _ SYM $ _ 15 dep _ _ 15 9.05 _ NUM CD _ 12 appos _ _ 16 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 Memotec _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 under _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 agreement _ NOUN NN _ 26 nmod _ _ 6 , _ PUNCT , _ 26 punct _ _ 7 ISI _ PROPN NNP _ 26 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 14 det _ _ 10 Braintree _ PROPN NNP _ 14 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Mass. _ PROPN NNP _ 10 dep _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 provider _ NOUN NN _ 7 appos _ _ 15 of _ ADP IN _ 17 case _ _ 16 computer _ NOUN NN _ 17 compound _ _ 17 software _ NOUN NN _ 14 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 services _ NOUN NNS _ 17 conj _ _ 20 to _ ADP TO _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 insurance _ NOUN NN _ 23 compound _ _ 23 industry _ NOUN NN _ 14 nmod _ _ 24 , _ PUNCT , _ 7 punct _ _ 25 will _ AUX MD _ 26 aux _ _ 26 merge _ VERB VB _ 2 ccomp _ _ 27 with _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 U.S. _ PROPN NNP _ 30 compound _ _ 30 unit _ NOUN NN _ 26 nmod _ _ 31 of _ ADP IN _ 32 case _ _ 32 Memotec _ PROPN NNP _ 30 nmod _ _ 33 created _ VERB VBN _ 30 acl _ _ 34 for _ ADP IN _ 36 case _ _ 35 that _ DET DT _ 36 det _ _ 36 purpose _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 Memotec _ PROPN NNP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 a _ DET DT _ 5 det _ _ 4 Montreal-based _ ADJ JJ _ 5 amod _ _ 5 maker _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 8 case _ _ 7 telecommunications _ NOUN NNS _ 8 compound _ _ 8 products _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 provider _ NOUN NN _ 5 conj _ _ 11 of _ ADP IN _ 12 case _ _ 12 telecommunications _ NOUN NNS _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 services _ NOUN NNS _ 12 conj _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 Memotec _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 5 nsubj _ _ 5 calls _ VERB VBZ _ 2 ccomp _ _ 6 for _ SCONJ IN _ 9 mark _ _ 7 it _ PRON PRP _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 make _ VERB VB _ 5 advcl _ _ 10 a _ DET DT _ 15 det _ _ 11 $ _ SYM $ _ 15 amod _ _ 12 20-a-share _ ADJ JJ _ 11 dep _ _ 13 cash _ NOUN NN _ 15 compound _ _ 14 tender _ NOUN NN _ 15 compound _ _ 15 offer _ NOUN NN _ 9 dobj _ _ 16 for _ ADP IN _ 18 case _ _ 17 all _ DET DT _ 18 det _ _ 18 shares _ NOUN NNS _ 15 nmod _ _ 19 outstanding _ ADJ JJ _ 18 amod _ _ 20 of _ ADP IN _ 21 case _ _ 21 ISI _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Charles _ PROPN NNP _ 5 compound _ _ 5 Johnston _ PROPN NNP _ 12 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 ISI _ PROPN NNP _ 8 compound _ _ 8 chairman _ NOUN NN _ 5 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 president _ NOUN NN _ 8 conj _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 agreed _ VERB VBD _ 3 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 sell _ VERB VB _ 12 xcomp _ _ 15 his _ PRON PRP$ _ 18 nmod:poss _ _ 16 60 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 amod _ _ 18 stake _ NOUN NN _ 14 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 ISI _ PROPN NNP _ 18 nmod _ _ 21 to _ ADP TO _ 22 case _ _ 22 Memotec _ PROPN NNP _ 14 nmod _ _ 23 upon _ ADP IN _ 24 case _ _ 24 completion _ NOUN NN _ 14 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 tender _ NOUN NN _ 28 compound _ _ 28 offer _ NOUN NN _ 24 nmod _ _ 29 for _ ADP IN _ 31 case _ _ 30 a _ DET DT _ 31 det _ _ 31 combination _ NOUN NN _ 14 nmod _ _ 32 of _ ADP IN _ 33 case _ _ 33 cash _ NOUN NN _ 31 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 Memotec _ PROPN NNP _ 36 compound _ _ 36 stock _ NOUN NN _ 33 conj _ _ 37 and _ CONJ CC _ 33 cc _ _ 38 debentures _ NOUN NNS _ 33 conj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Memotec _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 tender _ NOUN NN _ 5 compound _ _ 5 offer _ NOUN NN _ 7 nsubjpass _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 conditioned _ VERB VBN _ 2 ccomp _ _ 8 on _ ADP IN _ 14 case _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 among _ ADP IN _ 12 case _ _ 11 other _ ADJ JJ _ 12 amod _ _ 12 things _ NOUN NNS _ 14 dep _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 holders _ NOUN NNS _ 7 nmod _ _ 15 tendering _ VERB VBG _ 14 acl _ _ 16 at _ ADP IN _ 17 case _ _ 17 least _ ADJ JJS _ 18 nmod:npmod _ _ 18 15 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 15 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 shares _ NOUN NNS _ 19 nmod _ _ 23 outstanding _ ADJ JJ _ 22 amod _ _ 24 , _ PUNCT , _ 22 punct _ _ 25 other _ ADJ JJ _ 22 amod _ _ 26 than _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 shares _ NOUN NNS _ 25 nmod _ _ 29 held _ VERB VBN _ 28 acl _ _ 30 by _ ADP IN _ 32 case _ _ 31 Mr. _ PROPN NNP _ 32 compound _ _ 32 Johnston _ PROPN NNP _ 29 nmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 ISI _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 board _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 instructed _ VERB VBN _ 2 ccomp _ _ 7 management _ NOUN NN _ 6 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 accept _ VERB VB _ 6 advcl _ _ 10 inquiries _ NOUN NNS _ 9 dobj _ _ 11 from _ ADP IN _ 13 case _ _ 12 any _ DET DT _ 13 det _ _ 13 others _ NOUN NNS _ 10 nmod _ _ 14 interested _ VERB VBN _ 13 acl _ _ 15 in _ SCONJ IN _ 16 mark _ _ 16 making _ VERB VBG _ 14 advcl _ _ 17 a _ DET DT _ 18 det _ _ 18 bid _ NOUN NN _ 16 dobj _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 ISI _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 withdraw _ VERB VB _ 2 ccomp _ _ 6 from _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 merger _ NOUN NN _ 9 compound _ _ 9 agreement _ NOUN NN _ 5 nmod _ _ 10 with _ ADP IN _ 11 case _ _ 11 Memotec _ PROPN NNP _ 9 nmod _ _ 12 if _ SCONJ IN _ 16 mark _ _ 13 a _ DET DT _ 15 det _ _ 14 better _ ADJ JJR _ 15 amod _ _ 15 bid _ NOUN NN _ 16 nsubj _ _ 16 surfaces _ VERB VBZ _ 5 advcl _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 CMS _ PROPN NNP _ 3 compound _ _ 2 Energy _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 9 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Jackson _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Mich. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 resumed _ VERB VBN _ 9 ccomp _ _ 13 the _ DET DT _ 14 det _ _ 14 purchase _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 common _ ADJ JJ _ 18 amod _ _ 18 stock _ NOUN NN _ 14 nmod _ _ 19 under _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 program _ NOUN NN _ 12 nmod _ _ 22 approved _ VERB VBN _ 21 acl _ _ 23 by _ ADP IN _ 25 case _ _ 24 its _ PRON PRP$ _ 25 nmod:poss _ _ 25 directors _ NOUN NNS _ 22 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1987 _ NUM CD _ 22 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 10 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 original _ ADJ JJ _ 7 amod _ _ 7 announcement _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 CMS _ PROPN NNP _ 10 nsubj _ _ 10 said _ VERB VBD _ 0 root _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 board _ NOUN NN _ 13 nsubj _ _ 13 authorized _ VERB VBD _ 10 ccomp _ _ 14 the _ DET DT _ 15 det _ _ 15 purchase _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 21 case _ _ 17 as _ ADV RB _ 21 advmod _ _ 18 many _ ADJ JJ _ 21 advmod _ _ 19 as _ ADP IN _ 21 advmod _ _ 20 five _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 15 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 shares _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 2.6 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 6 nummod _ _ 6 shares _ NOUN NNS _ 9 nsubjpass _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 been _ AUX VBN _ 9 auxpass _ _ 9 purchased _ VERB VBN _ 3 ccomp _ _ 10 since _ ADP IN _ 11 case _ _ 11 then _ ADV RB _ 9 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 buy _ VERB VB _ 3 ccomp _ _ 7 additional _ ADJ JJ _ 8 amod _ _ 8 shares _ NOUN NNS _ 6 dobj _ _ 9 `` _ PUNCT `` _ 6 punct _ _ 10 from _ ADP IN _ 11 case _ _ 11 time _ NOUN NN _ 6 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 time _ NOUN NN _ 11 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 open _ ADJ JJ _ 17 amod _ _ 17 market _ NOUN NN _ 6 nmod _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 in _ ADP IN _ 21 case _ _ 20 private _ ADJ JJ _ 21 amod _ _ 21 transactions _ NOUN NNS _ 17 conj _ _ 22 at _ ADP IN _ 25 case _ _ 23 prevailing _ VERB VBG _ 25 amod _ _ 24 market _ NOUN NN _ 25 compound _ _ 25 prices _ NOUN NNS _ 6 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 27 '' _ PUNCT '' _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 composite _ ADJ JJ _ 3 amod _ _ 3 trading _ NOUN NN _ 13 nmod _ _ 4 on _ ADP IN _ 9 case _ _ 5 the _ DET DT _ 9 det _ _ 6 New _ PROPN NNP _ 9 compound _ _ 7 York _ PROPN NNP _ 9 compound _ _ 8 Stock _ PROPN NNP _ 9 compound _ _ 9 Exchange _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 CMS _ PROPN NNP _ 12 compound _ _ 12 Energy _ PROPN NNP _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 34.375 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 down _ ADV RB _ 13 advmod _ _ 21 62.5 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 from _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 closing _ VERB VBG _ 27 amod _ _ 27 price _ NOUN NN _ 20 nmod _ _ 28 of _ ADP IN _ 30 case _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 37.375 _ NUM CD _ 27 nmod _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 on _ ADP IN _ 34 case _ _ 34 Thursday _ PROPN NNP _ 27 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 before _ ADP IN _ 39 case _ _ 37 Friday _ PROPN NNP _ 39 nmod:poss _ _ 38 's _ PART POS _ 37 case _ _ 39 plunge _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 utility _ NOUN NN _ 3 compound _ _ 3 company _ NOUN NN _ 5 nsubj _ _ 4 currently _ ADV RB _ 5 advmod _ _ 5 has _ VERB VBZ _ 0 root _ _ 6 about _ ADV RB _ 8 advmod _ _ 7 82.1 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 9 nummod _ _ 9 shares _ NOUN NNS _ 5 dobj _ _ 10 outstanding _ ADJ JJ _ 9 amod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 Morgan _ PROPN NNP _ 2 compound _ _ 2 Stanley _ PROPN NNP _ 6 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 2 conj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 act _ VERB VB _ 0 root _ _ 7 as _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 exclusive _ ADJ JJ _ 10 amod _ _ 10 broker _ NOUN NN _ 6 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 repurchase _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Hughes _ PROPN NNP _ 3 compound _ _ 2 Aircraft _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 unit _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 General _ PROPN NNP _ 10 compound _ _ 9 Motors _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 agreed _ VERB VBD _ 12 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 purchase _ VERB VB _ 14 xcomp _ _ 17 the _ DET DT _ 20 det _ _ 18 Electro-Optics _ PROPN NNP _ 20 compound _ _ 19 Technology _ PROPN NNP _ 20 compound _ _ 20 division _ NOUN NN _ 16 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 Perkin-Elmer _ PROPN NNP _ 23 compound _ _ 23 Corp _ PROPN NNP _ 20 nmod _ _ 24 . _ PUNCT . _ 12 punct _ _ 1 Terms _ NOUN NNS _ 7 nsubjpass _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 1 nmod _ _ 5 were _ AUX VBD _ 7 auxpass _ _ 6 n't _ PART RB _ 7 neg _ _ 7 disclosed _ VERB VBN _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 26 cc _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 fiscal _ ADJ JJ _ 5 amod _ _ 5 year _ NOUN NN _ 26 nmod _ _ 6 ended _ VERB VBN _ 5 acl _ _ 7 July _ PROPN NNP _ 6 nmod:tmod _ _ 8 31 _ NUM CD _ 7 nummod _ _ 9 , _ PUNCT , _ 7 punct _ _ 10 1988 _ NUM CD _ 7 nummod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 the _ DET DT _ 15 det _ _ 13 most _ ADV RBS _ 15 advmod _ _ 14 recent _ ADJ JJ _ 15 amod _ _ 15 period _ NOUN NN _ 5 appos _ _ 16 for _ ADP IN _ 17 case _ _ 17 which _ PRON WDT _ 20 nmod _ _ 18 results _ NOUN NNS _ 20 nsubjpass _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 broken _ VERB VBN _ 15 acl:relcl _ _ 21 out _ ADP RP _ 20 compound:prt _ _ 22 , _ PUNCT , _ 5 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 Perkin-Elmer _ PROPN NNP _ 25 compound _ _ 25 unit _ NOUN NN _ 26 nsubj _ _ 26 accounted _ VERB VBD _ 0 root _ _ 27 for _ ADP IN _ 32 case _ _ 28 more _ ADJ JJR _ 32 advmod _ _ 29 than _ ADP IN _ 28 mwe _ _ 30 half _ DET PDT _ 32 advmod _ _ 31 the _ DET DT _ 32 advmod _ _ 32 $ _ SYM $ _ 26 nmod _ _ 33 145 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 32 nummod _ _ 35 in _ ADP IN _ 36 case _ _ 36 sales _ NOUN NNS _ 32 nmod _ _ 37 recorded _ VERB VBN _ 32 acl _ _ 38 by _ ADP IN _ 44 case _ _ 39 the _ DET DT _ 40 det _ _ 40 company _ NOUN NN _ 44 nmod:poss _ _ 41 's _ PART POS _ 40 case _ _ 42 government _ NOUN NN _ 44 compound _ _ 43 systems _ NOUN NNS _ 44 compound _ _ 44 sector _ NOUN NN _ 37 nmod _ _ 45 . _ PUNCT . _ 26 punct _ _ 1 Perkin-Elmer _ PROPN NNP _ 11 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 based _ VERB VBN _ 1 acl:relcl _ _ 6 in _ ADP IN _ 7 case _ _ 7 Norwalk _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Conn. _ PROPN NNP _ 7 appos _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 sale _ NOUN NN _ 22 nsubj _ _ 14 of _ ADP IN _ 20 case _ _ 15 the _ DET DT _ 20 det _ _ 16 Danbury _ PROPN NNP _ 20 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Conn. _ PROPN NNP _ 16 dep _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 unit _ NOUN NN _ 13 nmod _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 consistent _ ADJ JJ _ 11 ccomp _ _ 23 with _ ADP IN _ 26 case _ _ 24 its _ PRON PRP$ _ 26 nmod:poss _ _ 25 restructuring _ VERB VBG _ 26 amod _ _ 26 strategy _ NOUN NN _ 22 nmod _ _ 27 announced _ VERB VBD _ 26 acl _ _ 28 in _ ADP IN _ 29 case _ _ 29 April _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 to _ ADP TO _ 4 mark _ _ 4 making _ VERB VBG _ 2 acl _ _ 5 electro-optical _ ADJ JJ _ 6 amod _ _ 6 systems _ NOUN NNS _ 4 dobj _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 unit _ NOUN NN _ 11 nsubj _ _ 10 also _ ADV RB _ 11 advmod _ _ 11 makes _ VERB VBZ _ 0 root _ _ 12 laser _ NOUN NN _ 14 compound _ _ 13 warning _ NOUN NN _ 14 compound _ _ 14 receivers _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 These _ PRON DT _ 3 nsubjpass _ _ 2 are _ AUX VBP _ 3 auxpass _ _ 3 used _ VERB VBN _ 0 root _ _ 4 aboard _ ADP IN _ 6 case _ _ 5 military _ ADJ JJ _ 6 amod _ _ 6 helicopters _ NOUN NNS _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 warn _ VERB VB _ 3 xcomp _ _ 9 pilots _ NOUN NNS _ 8 dobj _ _ 10 that _ SCONJ IN _ 16 mark _ _ 11 a _ DET DT _ 13 det _ _ 12 laser _ NOUN NN _ 13 compound _ _ 13 weapon _ NOUN NN _ 16 nsubjpass _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 been _ AUX VBN _ 16 auxpass _ _ 16 focused _ VERB VBN _ 8 ccomp _ _ 17 on _ ADP IN _ 18 case _ _ 18 them _ PRON PRP _ 16 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Hughes _ PROPN NNP _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 Los _ PROPN NNP _ 4 compound _ _ 4 Angeles _ PROPN NNP _ 1 nmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 PerkinElmer _ PROPN NNP _ 8 compound _ _ 8 unit _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 work _ NOUN NN _ 11 nsubj _ _ 11 complements _ VERB VBZ _ 5 ccomp _ _ 12 efforts _ NOUN NNS _ 11 dobj _ _ 13 by _ ADP IN _ 19 case _ _ 14 its _ PRON PRP$ _ 19 nmod:poss _ _ 15 Electro-Optical _ PROPN NNP _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Data _ PROPN NNP _ 15 conj _ _ 18 Systems _ PROPN NNP _ 19 compound _ _ 19 group _ NOUN NN _ 12 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 makes _ VERB VBZ _ 19 acl:relcl _ _ 23 infrared _ ADJ JJ _ 24 amod _ _ 24 sensors _ NOUN NNS _ 22 dobj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 military _ ADJ JJ _ 27 amod _ _ 27 lasers _ NOUN NNS _ 24 conj _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 night _ NOUN NN _ 31 compound _ _ 30 vision _ NOUN NN _ 31 compound _ _ 31 equipment _ NOUN NN _ 24 conj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Hughes _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 sale _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 close _ VERB VB _ 4 xcomp _ _ 9 by _ ADP IN _ 11 case _ _ 10 year _ NOUN NN _ 11 compound _ _ 11 end _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Communications _ PROPN NNP _ 3 compound _ _ 3 Workers _ PROPN NNP _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 America _ PROPN NNP _ 3 nmod _ _ 6 ratified _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 10 det _ _ 8 new _ ADJ JJ _ 10 amod _ _ 9 regional _ ADJ JJ _ 10 amod _ _ 10 contract _ NOUN NN _ 6 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 all _ DET DT _ 14 dep _ _ 13 but _ CONJ CC _ 12 cc _ _ 14 one _ NUM CD _ 10 conj _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 local _ ADJ JJ _ 18 amod _ _ 18 agreements _ NOUN NNS _ 14 nmod _ _ 19 with _ ADP IN _ 22 case _ _ 20 Bell _ PROPN NNP _ 22 compound _ _ 21 Atlantic _ PROPN NNP _ 22 compound _ _ 22 Corp _ PROPN NNP _ 18 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 CWA _ PROPN NNP _ 6 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 New _ PROPN NNP _ 6 compound _ _ 4 Jersey _ PROPN NNP _ 6 compound _ _ 5 Commercial _ PROPN NNP _ 6 compound _ _ 6 local _ NOUN NN _ 18 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 9 nsubj _ _ 9 represents _ VERB VBZ _ 6 acl:relcl _ _ 10 about _ ADV RB _ 11 advmod _ _ 11 2,500 _ NUM CD _ 13 nummod _ _ 12 service _ NOUN NN _ 13 compound _ _ 13 representatives _ NOUN NNS _ 9 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 marketing _ NOUN NN _ 16 compound _ _ 16 employees _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 rejected _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 21 det _ _ 20 tentative _ ADJ JJ _ 21 amod _ _ 21 agreement _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 Both _ DET DT _ 3 cc:preconj _ _ 2 the _ DET DT _ 3 det _ _ 3 union _ NOUN NN _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 the _ DET DT _ 8 det _ _ 6 regional _ ADJ JJ _ 8 amod _ _ 7 telephone _ NOUN NN _ 8 compound _ _ 8 company _ NOUN NN _ 3 conj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 they _ PRON PRP _ 12 nsubj _ _ 11 were _ AUX VBD _ 12 aux _ _ 12 working _ VERB VBG _ 9 ccomp _ _ 13 together _ ADV RB _ 12 advmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 resolve _ VERB VB _ 12 xcomp _ _ 16 differences _ NOUN NNS _ 15 dobj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 new _ ADJ JJ _ 4 amod _ _ 3 three-year _ ADJ JJ _ 4 amod _ _ 4 contracts _ NOUN NNS _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 7 nsubj _ _ 7 replace _ VERB VBP _ 4 acl:relcl _ _ 8 ones _ NOUN NNS _ 7 dobj _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 expired _ VERB VBD _ 8 acl:relcl _ _ 11 Aug. _ PROPN NNP _ 10 nmod:tmod _ _ 12 5 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 cover _ VERB VBP _ 0 root _ _ 15 41,000 _ NUM CD _ 18 nummod _ _ 16 Bell _ PROPN NNP _ 18 compound _ _ 17 Atlantic _ PROPN NNP _ 18 compound _ _ 18 employees _ NOUN NNS _ 14 dobj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 ratification _ NOUN NN _ 3 nsubj _ _ 3 follows _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 23-day _ ADJ JJ _ 6 amod _ _ 6 strike _ NOUN NN _ 3 dobj _ _ 7 against _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Philadelphia-based _ ADJ JJ _ 10 amod _ _ 10 company _ NOUN NN _ 6 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 CWA _ PROPN NNP _ 11 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 International _ PROPN NNP _ 6 compound _ _ 6 Brotherhood _ PROPN NNP _ 3 conj _ _ 7 of _ ADP IN _ 10 case _ _ 8 Electrical _ PROPN NNP _ 10 compound _ _ 9 Workers _ PROPN NNP _ 10 compound _ _ 10 members _ NOUN NNS _ 6 nmod _ _ 11 remain _ VERB VBP _ 0 root _ _ 12 on _ ADP IN _ 13 case _ _ 13 strike _ NOUN NN _ 11 nmod _ _ 14 against _ ADP IN _ 16 case _ _ 15 Nynex _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 13 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 the _ DET DT _ 23 det _ _ 19 New _ PROPN NNP _ 20 amod _ _ 20 York-based _ ADJ JJ _ 23 amod _ _ 21 regional _ ADJ JJ _ 23 amod _ _ 22 phone _ NOUN NN _ 23 compound _ _ 23 company _ NOUN NN _ 16 appos _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 unions _ NOUN NNS _ 8 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 2 conj _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 8 nmod:tmod _ _ 8 agreed _ VERB VBD _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 mediation _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 CWA _ PROPN NNP _ 3 nsubj _ _ 3 represents _ VERB VBZ _ 0 root _ _ 4 40,000 _ NUM CD _ 6 nummod _ _ 5 Nynex _ PROPN NNP _ 6 compound _ _ 6 workers _ NOUN NNS _ 3 dobj _ _ 7 and _ CONJ CC _ 3 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 IBEW _ PROPN NNP _ 10 nsubj _ _ 10 represents _ VERB VBZ _ 3 conj _ _ 11 20,000 _ NUM CD _ 12 nummod _ _ 12 workers _ NOUN NNS _ 10 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 moment _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 at _ ADP IN _ 10 advmod _ _ 6 least _ ADJ JJS _ 5 mwe _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 euphoria _ NOUN NN _ 10 nsubj _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 replaced _ VERB VBN _ 0 root _ _ 11 anxiety _ NOUN NN _ 10 dobj _ _ 12 on _ ADP IN _ 14 case _ _ 13 Wall _ PROPN NNP _ 14 compound _ _ 14 Street _ PROPN NNP _ 10 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Dow _ PROPN NNP _ 5 compound _ _ 3 Jones _ PROPN NNP _ 5 compound _ _ 4 Industrial _ PROPN NNP _ 5 compound _ _ 5 Average _ PROPN NNP _ 6 nsubj _ _ 6 jumped _ VERB VBD _ 0 root _ _ 7 sharply _ ADV RB _ 6 advmod _ _ 8 yesterday _ NOUN NN _ 6 nmod:tmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 close _ VERB VB _ 6 xcomp _ _ 11 at _ ADP IN _ 12 case _ _ 12 2657.38 _ NUM CD _ 10 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 panic _ NOUN NN _ 17 nsubj _ _ 15 did _ AUX VBD _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 sweep _ VERB VB _ 6 ccomp _ _ 18 the _ DET DT _ 19 det _ _ 19 world _ NOUN NN _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 markets _ NOUN NNS _ 17 dobj _ _ 22 , _ PUNCT , _ 6 punct _ _ 23 and _ CONJ CC _ 6 cc _ _ 24 investors _ NOUN NNS _ 28 nsubj _ _ 25 large _ ADJ JJ _ 24 amod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 small _ ADJ JJ _ 25 conj _ _ 28 seemed _ VERB VBD _ 6 conj _ _ 29 to _ PART TO _ 30 mark _ _ 30 accept _ VERB VB _ 28 xcomp _ _ 31 Friday _ PROPN NNP _ 35 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 dizzying _ VERB VBG _ 35 amod _ _ 34 190-point _ ADJ JJ _ 35 amod _ _ 35 plunge _ NOUN NN _ 30 dobj _ _ 36 as _ ADP IN _ 39 case _ _ 37 a _ DET DT _ 39 det _ _ 38 sharp _ ADJ JJ _ 39 amod _ _ 39 correction _ NOUN NN _ 30 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 not _ ADV RB _ 43 neg _ _ 42 a _ DET DT _ 43 det _ _ 43 calamity _ NOUN NN _ 39 appos _ _ 44 . _ PUNCT . _ 6 punct _ _ 1 Many _ ADJ JJ _ 2 nsubj _ _ 2 went _ VERB VBD _ 0 root _ _ 3 bargain-hunting _ NOUN NN _ 2 dobj _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 Among _ ADP IN _ 2 case _ _ 2 those _ PRON DT _ 6 nmod _ _ 3 sighing _ VERB VBG _ 2 acl _ _ 4 with _ ADP IN _ 5 case _ _ 5 relief _ NOUN NN _ 3 nmod _ _ 6 was _ VERB VBD _ 0 root _ _ 7 John _ PROPN NNP _ 9 compound _ _ 8 H. _ PROPN NNP _ 9 compound _ _ 9 Gutfreund _ PROPN NNP _ 6 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 chairman _ NOUN NN _ 9 appos _ _ 12 of _ ADP IN _ 14 case _ _ 13 Salomon _ PROPN NNP _ 14 compound _ _ 14 Brothers _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 who _ PRON WP _ 17 nsubj _ _ 17 took _ VERB VBD _ 9 acl:relcl _ _ 18 to _ ADP TO _ 23 case _ _ 19 the _ DET DT _ 20 det _ _ 20 firm _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 trading _ NOUN NN _ 23 compound _ _ 23 floor _ NOUN NN _ 17 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 monitor _ VERB VB _ 17 xcomp _ _ 26 yesterday _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 events _ NOUN NNS _ 25 dobj _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 rally _ NOUN NN _ 4 nsubj _ _ 4 gained _ VERB VBD _ 11 advcl _ _ 5 strength _ NOUN NN _ 4 dobj _ _ 6 at _ ADP IN _ 8 case _ _ 7 3:15 _ NUM CD _ 8 nummod _ _ 8 p.m. _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 smiled _ VERB VBD _ 0 root _ _ 12 broadly _ ADV RB _ 11 advmod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 brandished _ VERB VBD _ 11 conj _ _ 15 his _ PRON PRP$ _ 17 nmod:poss _ _ 16 unlit _ NOUN NN _ 17 compound _ _ 17 cigar _ NOUN NN _ 14 dobj _ _ 18 and _ CONJ CC _ 11 cc _ _ 19 slapped _ VERB VBD _ 11 conj _ _ 20 Stanley _ PROPN NNP _ 21 compound _ _ 21 Shopkorn _ PROPN NNP _ 19 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 his _ PRON PRP$ _ 26 nmod:poss _ _ 24 top _ ADJ JJ _ 26 amod _ _ 25 stock _ NOUN NN _ 26 compound _ _ 26 trader _ NOUN NN _ 21 appos _ _ 27 , _ PUNCT , _ 21 punct _ _ 28 on _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 back _ NOUN NN _ 19 nmod _ _ 31 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 first _ ADJ JJ _ 5 advcl _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 seemed _ VERB VBD _ 0 root _ _ 6 as _ SCONJ IN _ 10 mark _ _ 7 if _ SCONJ IN _ 6 mwe _ _ 8 history _ NOUN NN _ 10 nsubj _ _ 9 might _ AUX MD _ 10 aux _ _ 10 repeat _ VERB VB _ 5 advcl _ _ 11 itself _ PRON PRP _ 10 dobj _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 trading _ NOUN NN _ 3 nsubj _ _ 3 opened _ VERB VBD _ 22 advcl _ _ 4 yesterday _ NOUN NN _ 5 compound _ _ 5 morning _ NOUN NN _ 3 nmod:tmod _ _ 6 on _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Big _ PROPN NNP _ 9 compound _ _ 9 Board _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 22 punct _ _ 11 stocks _ NOUN NNS _ 22 nsubj _ _ 12 of _ ADP IN _ 13 case _ _ 13 many _ ADJ JJ _ 11 nmod _ _ 14 of _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 16 det _ _ 16 nation _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 biggest _ ADJ JJS _ 19 amod _ _ 19 companies _ NOUN NNS _ 13 nmod _ _ 20 could _ AUX MD _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 open _ VERB VB _ 0 root _ _ 23 for _ ADP IN _ 24 case _ _ 24 trading _ NOUN NN _ 22 nmod _ _ 25 because _ SCONJ IN _ 32 mark _ _ 26 a _ DET DT _ 27 det _ _ 27 wave _ NOUN NN _ 32 nsubj _ _ 28 of _ ADP IN _ 30 case _ _ 29 sell _ NOUN NN _ 30 compound _ _ 30 orders _ NOUN NNS _ 27 nmod _ _ 31 was _ AUX VBD _ 32 aux _ _ 32 overwhelming _ VERB VBG _ 22 advcl _ _ 33 buyers _ NOUN NNS _ 32 dobj _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 10:10 _ NUM CD _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 Dow _ PROPN NNP _ 6 compound _ _ 6 Industrials _ PROPN NNP _ 7 nsubj _ _ 7 were _ VERB VBD _ 0 root _ _ 8 off _ ADJ JJ _ 7 advmod _ _ 9 63.52 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 8 dep _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 stock _ NOUN NN _ 31 nsubj _ _ 15 of _ ADP IN _ 17 case _ _ 16 UAL _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 whose _ PRON WP$ _ 20 nmod:poss _ _ 20 troubles _ NOUN NNS _ 22 nsubj _ _ 21 had _ AUX VBD _ 22 aux _ _ 22 kicked _ VERB VBN _ 17 acl:relcl _ _ 23 off _ ADP RP _ 22 compound:prt _ _ 24 Friday _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 plunge _ NOUN NN _ 22 dobj _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 still _ ADV RB _ 31 advmod _ _ 29 had _ AUX VBD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 opened _ VERB VBN _ 7 conj _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 then _ ADV RB _ 13 advmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 as _ ADV RB _ 5 advmod _ _ 5 quickly _ ADV RB _ 13 advmod _ _ 6 as _ SCONJ IN _ 10 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 Dow _ PROPN NNP _ 10 nsubj _ _ 9 had _ AUX VBD _ 10 aux _ _ 10 fallen _ VERB VBN _ 5 advcl _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 it _ PRON PRP _ 13 nsubj _ _ 13 began _ VERB VBD _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 turn _ VERB VB _ 13 xcomp _ _ 16 around _ ADP RP _ 15 compound:prt _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 ended _ VERB VBD _ 0 root _ _ 3 with _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 gain _ NOUN NN _ 2 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 88.12 _ NUM CD _ 8 nummod _ _ 8 points _ NOUN NNS _ 5 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 By _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 close _ NOUN NN _ 13 nmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 volume _ NOUN NN _ 13 nsubj _ _ 8 on _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 exchange _ NOUN NN _ 7 nmod _ _ 13 totaled _ VERB VBD _ 0 root _ _ 14 more _ ADJ JJR _ 17 advmod _ _ 15 than _ ADP IN _ 14 mwe _ _ 16 416 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 13 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 fourth _ ADJ JJ _ 17 appos _ _ 21 highest _ ADJ JJS _ 20 amod _ _ 22 on _ ADP IN _ 23 case _ _ 23 record _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Big _ PROPN NNP _ 3 compound _ _ 3 Board _ PROPN NNP _ 4 nsubj _ _ 4 handled _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 huge _ ADJ JJ _ 7 amod _ _ 7 volume _ NOUN NN _ 4 dobj _ _ 8 without _ ADP IN _ 11 case _ _ 9 any _ DET DT _ 11 det _ _ 10 obvious _ ADJ JJ _ 11 amod _ _ 11 strain _ NOUN NN _ 4 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 in _ ADP IN _ 15 case _ _ 14 sharp _ ADJ JJ _ 15 amod _ _ 15 contrast _ NOUN NN _ 4 nmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 Black _ PROPN NNP _ 18 compound _ _ 18 Monday _ PROPN NNP _ 15 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 1987 _ NUM CD _ 18 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 rally _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 largely _ ADV RB _ 6 advmod _ _ 6 confined _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 blue-chip _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 16 nsubjpass _ _ 13 had _ AUX VBD _ 16 aux _ _ 14 been _ AUX VBN _ 16 auxpass _ _ 15 hard _ ADV RB _ 16 advmod _ _ 16 hit _ VERB VBN _ 10 acl:relcl _ _ 17 during _ ADP IN _ 21 case _ _ 18 Friday _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 selling _ NOUN NN _ 21 compound _ _ 21 frenzy _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Overall _ ADJ JJ _ 7 dep _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 more _ ADJ JJR _ 6 amod _ _ 4 Big _ PROPN NNP _ 6 compound _ _ 5 Board _ PROPN NNP _ 6 compound _ _ 6 stocks _ NOUN NNS _ 7 nsubj _ _ 7 lost _ VERB VBD _ 0 root _ _ 8 money _ NOUN NN _ 7 dobj _ _ 9 than _ SCONJ IN _ 10 mark _ _ 10 gained _ VERB VBN _ 7 advcl _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 arbitragers _ NOUN NNS _ 18 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 already _ ADV RB _ 6 advmod _ _ 6 reeling _ VERB VBG _ 3 acl _ _ 7 from _ ADP IN _ 10 case _ _ 8 Friday _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 collapse _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 UAL _ PROPN NNP _ 14 compound _ _ 14 deal _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 were _ VERB VBD _ 18 auxpass _ _ 17 further _ ADV RBR _ 18 advmod _ _ 18 hurt _ VERB VBN _ 0 root _ _ 19 yesterday _ NOUN NN _ 18 nmod:tmod _ _ 20 when _ ADV WRB _ 34 advmod _ _ 21 a _ DET DT _ 23 det _ _ 22 proposed _ VERB VBN _ 23 amod _ _ 23 takeover _ NOUN NN _ 34 nsubj _ _ 24 of _ ADP IN _ 26 case _ _ 25 AMR _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 23 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 parent _ NOUN NN _ 26 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 American _ PROPN NNP _ 32 compound _ _ 32 Airlines _ PROPN NNP _ 29 nmod _ _ 33 , _ PUNCT , _ 26 punct _ _ 34 collapsed _ VERB VBD _ 18 advcl _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 Indeed _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 7 det _ _ 4 Dow _ PROPN NNP _ 7 compound _ _ 5 Jones _ PROPN NNP _ 7 compound _ _ 6 Transportation _ PROPN NNP _ 7 compound _ _ 7 Average _ PROPN NNP _ 8 nsubj _ _ 8 plunged _ VERB VBD _ 0 root _ _ 9 102.06 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 second-worst _ ADJ JJ _ 14 amod _ _ 14 drop _ NOUN NN _ 8 nmod:npmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 history _ NOUN NN _ 14 nmod _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 World-wide _ ADJ JJ _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 trading _ NOUN NN _ 6 nsubj _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 generally _ ADV RB _ 6 advmod _ _ 6 manageable _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Frankfurt _ PROPN NNP _ 4 compound _ _ 3 stock _ NOUN NN _ 4 compound _ _ 4 exchange _ NOUN NN _ 7 nsubjpass _ _ 5 was _ AUX VBD _ 7 auxpass _ _ 6 hardest _ ADV RBS _ 7 advmod _ _ 7 hit _ VERB VBN _ 0 root _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 markets _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 with _ SCONJ IN _ 17 mark _ _ 14 blue _ ADJ JJ _ 15 amod _ _ 15 chips _ NOUN NNS _ 17 nsubj _ _ 16 there _ ADV RB _ 17 nsubj _ _ 17 falling _ VERB VBG _ 7 advcl _ _ 18 12.8 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 London _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 midday _ NOUN NN _ 6 compound _ _ 6 rally _ NOUN NN _ 7 nsubj _ _ 7 left _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 index _ NOUN NN _ 7 xcomp _ _ 13 off _ ADP IN _ 15 case _ _ 14 3.2 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 12 advmod _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 and _ CONJ CC _ 7 cc _ _ 18 Tokyo _ PROPN NNP _ 22 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 leading _ VERB VBG _ 22 amod _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 index _ NOUN NN _ 23 nsubj _ _ 23 fell _ VERB VBD _ 7 conj _ _ 24 only _ ADV RB _ 25 advmod _ _ 25 1.8 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 dobj _ _ 27 in _ ADP IN _ 30 case _ _ 28 surprisingly _ ADV RB _ 30 advmod _ _ 29 lackluster _ NOUN NN _ 30 compound _ _ 30 trading _ NOUN NN _ 23 nmod _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 Other _ ADJ JJ _ 7 amod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 more _ ADV RBR _ 5 advmod _ _ 4 thinly _ ADV RB _ 5 advmod _ _ 5 traded _ VERB VBN _ 7 amod _ _ 6 Asian _ ADJ JJ _ 7 amod _ _ 7 markets _ NOUN NNS _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 hit _ VERB VBN _ 0 root _ _ 10 harder _ ADV RBR _ 9 advmod _ _ 11 than _ ADP IN _ 12 case _ _ 12 Tokyo _ PROPN NNP _ 10 nmod _ _ 13 's _ PART POS _ 12 case _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 but _ CONJ CC _ 9 cc _ _ 16 there _ PRON EX _ 17 expl _ _ 17 were _ VERB VBD _ 9 conj _ _ 18 no _ DET DT _ 20 neg _ _ 19 free-fall _ ADJ JJ _ 20 amod _ _ 20 declines _ NOUN NNS _ 17 nsubj _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Investors _ NOUN NNS _ 5 nsubj _ _ 2 big _ ADJ JJ _ 1 amod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 small _ ADJ JJ _ 2 conj _ _ 5 say _ VERB VBP _ 0 root _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 learned _ VERB VBD _ 5 ccomp _ _ 8 valuable _ ADJ JJ _ 9 amod _ _ 9 lessons _ NOUN NNS _ 7 dobj _ _ 10 since _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 1987 _ NUM CD _ 13 nummod _ _ 13 crash _ NOUN NN _ 7 nmod _ _ 14 : _ PUNCT : _ 5 punct _ _ 15 In _ ADP IN _ 17 case _ _ 16 this _ DET DT _ 17 det _ _ 17 age _ NOUN NN _ 34 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 computerized _ VERB VBN _ 20 amod _ _ 20 trading _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 34 punct _ _ 22 huge _ ADJ JJ _ 23 amod _ _ 23 corrections _ NOUN NNS _ 34 nsubjpass _ _ 24 or _ CONJ CC _ 23 cc _ _ 25 runups _ NOUN NNS _ 23 conj _ _ 26 in _ ADP IN _ 31 case _ _ 27 a _ DET DT _ 29 det _ _ 28 few _ ADJ JJ _ 29 amod _ _ 29 hours _ NOUN NNS _ 31 nmod:poss _ _ 30 ' _ PART POS _ 29 case _ _ 31 time _ NOUN NN _ 25 nmod _ _ 32 must _ AUX MD _ 34 aux _ _ 33 be _ AUX VB _ 34 auxpass _ _ 34 expected _ VERB VBN _ 5 parataxis _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 more _ ADJ JJR _ 9 advcl _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 such _ ADJ JJ _ 7 amod _ _ 6 short-term _ ADJ JJ _ 7 amod _ _ 7 cataclysms _ NOUN NNS _ 9 nsubj _ _ 8 are _ VERB VBP _ 9 cop _ _ 9 survivable _ ADJ JJ _ 0 root _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 no _ DET DT _ 13 neg _ _ 13 cause _ NOUN NN _ 9 conj _ _ 14 for _ ADP IN _ 16 case _ _ 15 panic _ NOUN NN _ 16 compound _ _ 16 selling _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Stephen _ PROPN NNP _ 2 compound _ _ 2 Boesel _ PROPN NNP _ 15 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 7 det _ _ 5 major _ ADJ JJ _ 7 amod _ _ 6 money _ NOUN NN _ 7 compound _ _ 7 manager _ NOUN NN _ 2 appos _ _ 8 for _ ADP IN _ 11 case _ _ 9 T. _ PROPN NNP _ 11 compound _ _ 10 Rowe _ PROPN NNP _ 11 compound _ _ 11 Price _ PROPN NNP _ 7 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 Baltimore _ PROPN NNP _ 11 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 There _ PRON EX _ 19 expl _ _ 19 was _ VERB VBD _ 15 xcomp _ _ 20 less _ ADJ JJR _ 21 amod _ _ 21 panic _ NOUN NN _ 19 nsubj _ _ 22 than _ ADP IN _ 24 case _ _ 23 in _ ADP IN _ 24 case _ _ 24 1987 _ NUM CD _ 21 nmod _ _ 25 : _ PUNCT : _ 19 punct _ _ 26 We _ PRON PRP _ 30 nsubj _ _ 27 had _ AUX VBD _ 30 aux _ _ 28 been _ VERB VBN _ 30 cop _ _ 29 through _ ADP IN _ 30 case _ _ 30 it _ PRON PRP _ 19 parataxis _ _ 31 once _ ADV RB _ 30 advmod _ _ 32 . _ PUNCT . _ 15 punct _ _ 33 '' _ PUNCT '' _ 15 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Somerset _ PROPN NNP _ 25 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Wis. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Adrian _ PROPN NNP _ 7 compound _ _ 7 Sween _ PROPN NNP _ 25 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 who _ PRON WP _ 10 nsubj _ _ 10 owns _ VERB VBZ _ 7 acl:relcl _ _ 11 a _ DET DT _ 12 det _ _ 12 supplier _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 nursing-home _ NOUN NN _ 15 compound _ _ 15 equipment _ NOUN NN _ 12 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 active _ ADJ JJ _ 10 conj _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 stock _ NOUN NN _ 23 compound _ _ 23 market _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 7 punct _ _ 25 agrees _ VERB VBZ _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 look _ VERB VBP _ 13 dep _ _ 4 at _ ADP IN _ 5 case _ _ 5 it _ PRON PRP _ 3 nmod _ _ 6 as _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 ho-hum _ ADJ JJ _ 9 amod _ _ 9 matter _ NOUN NN _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 '' _ PUNCT '' _ 3 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 other _ ADJ JJ _ 3 amod _ _ 3 factors _ NOUN NNS _ 4 nsubj _ _ 4 played _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 part _ NOUN NN _ 4 dobj _ _ 7 in _ ADP IN _ 10 case _ _ 8 yesterday _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 comeback _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Federal _ PROPN NNP _ 3 compound _ _ 3 Reserve _ PROPN NNP _ 4 nsubj _ _ 4 signaled _ VERB VBD _ 0 root _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 willingness _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 provide _ VERB VB _ 6 acl _ _ 9 liquidity _ NOUN NN _ 8 dobj _ _ 10 ; _ PUNCT : _ 4 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 interest _ NOUN NN _ 13 compound _ _ 13 rate _ NOUN NN _ 20 nsubj _ _ 14 on _ ADP IN _ 16 case _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 loans _ NOUN NNS _ 13 nmod _ _ 17 to _ ADP TO _ 19 case _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 banks _ NOUN NNS _ 16 nmod _ _ 20 inched _ VERB VBD _ 4 parataxis _ _ 21 downward _ ADV RB _ 20 advmod _ _ 22 early _ ADJ JJ _ 20 advmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 day _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Foreign _ ADJ JJ _ 3 amod _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 markets _ NOUN NNS _ 16 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 kicked _ VERB VBD _ 3 acl:relcl _ _ 7 off _ ADP RP _ 6 compound:prt _ _ 8 Black _ PROPN NNP _ 9 compound _ _ 9 Monday _ PROPN NNP _ 6 nmod:tmod _ _ 10 with _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 huge _ ADJ JJ _ 14 amod _ _ 13 selling _ NOUN NN _ 14 compound _ _ 14 spree _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 began _ VERB VBD _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 day _ NOUN NN _ 16 nmod:tmod _ _ 19 off _ ADJ JJ _ 16 advmod _ _ 20 by _ ADP IN _ 23 case _ _ 21 relatively _ ADV RB _ 23 advmod _ _ 22 modest _ ADJ JJ _ 23 amod _ _ 23 amounts _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 after _ SCONJ IN _ 5 mark _ _ 5 falling _ VERB VBG _ 14 advcl _ _ 6 sharply _ ADV RB _ 5 advmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 overnight _ ADJ JJ _ 9 amod _ _ 9 trading _ NOUN NN _ 5 nmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 139.10 _ NUM CD _ 12 nummod _ _ 12 yen _ NOUN NNS _ 5 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 bounced _ VERB VBD _ 0 root _ _ 15 back _ ADV RB _ 14 advmod _ _ 16 strongly _ ADV RB _ 14 advmod _ _ 17 to _ ADP TO _ 18 case _ _ 18 141.8 _ NUM CD _ 14 nmod _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 thus _ ADV RB _ 21 advmod _ _ 21 easing _ VERB VBG _ 14 ccomp _ _ 22 fears _ NOUN NNS _ 21 dobj _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 foreigners _ NOUN NNS _ 26 nsubj _ _ 25 would _ AUX MD _ 26 aux _ _ 26 unload _ VERB VB _ 22 ccomp _ _ 27 U.S. _ PROPN NNP _ 28 compound _ _ 28 stocks _ NOUN NNS _ 26 dobj _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 widely _ ADV RB _ 4 advmod _ _ 4 disseminated _ VERB VBN _ 5 amod _ _ 5 opinion _ NOUN NN _ 18 nsubj _ _ 6 among _ ADP IN _ 9 case _ _ 7 most _ ADJ JJS _ 9 amod _ _ 8 market _ NOUN NN _ 9 compound _ _ 9 experts _ NOUN NNS _ 5 nmod _ _ 10 that _ SCONJ IN _ 16 mark _ _ 11 a _ DET DT _ 12 det _ _ 12 crash _ NOUN NN _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 n't _ PART RB _ 16 neg _ _ 15 in _ ADP IN _ 16 case _ _ 16 store _ NOUN NN _ 5 dep _ _ 17 also _ ADV RB _ 18 advmod _ _ 18 helped _ VERB VBD _ 0 root _ _ 19 calm _ VERB VB _ 18 xcomp _ _ 20 investors _ NOUN NNS _ 19 dobj _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 institutions _ NOUN NNS _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 example _ NOUN NN _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 came _ VERB VBD _ 0 root _ _ 9 into _ ADP IN _ 10 case _ _ 10 work _ NOUN NN _ 8 nmod _ _ 11 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 12 ready _ ADJ JJ _ 8 xcomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 buy _ VERB VB _ 12 xcomp _ _ 15 some _ DET DT _ 14 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 blue _ ADJ JJ _ 19 amod _ _ 19 chips _ NOUN NNS _ 15 nmod _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 felt _ VERB VBD _ 19 acl:relcl _ _ 22 had _ AUX VBD _ 25 aux _ _ 23 been _ AUX VBN _ 25 auxpass _ _ 24 sharply _ ADV RB _ 25 advmod _ _ 25 undervalued _ VERB VBN _ 21 ccomp _ _ 26 on _ ADP IN _ 27 case _ _ 27 Friday _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 Still _ ADV RB _ 19 advmod _ _ 2 , _ PUNCT , _ 19 punct _ _ 3 amid _ ADP IN _ 5 case _ _ 4 all _ DET DT _ 5 dep _ _ 5 the _ DET DT _ 19 nmod _ _ 6 backslapping _ VERB VBG _ 5 amod _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 signs _ NOUN NNS _ 5 conj _ _ 9 of _ ADP IN _ 10 case _ _ 10 relief _ NOUN NN _ 8 nmod _ _ 11 over _ ADP IN _ 14 case _ _ 12 yesterday _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 events _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 some _ DET DT _ 18 det _ _ 17 market _ NOUN NN _ 18 compound _ _ 18 professionals _ NOUN NNS _ 19 nsubj _ _ 19 cautioned _ VERB VBD _ 0 root _ _ 20 that _ SCONJ IN _ 22 mark _ _ 21 there _ PRON EX _ 22 expl _ _ 22 is _ VERB VBZ _ 19 ccomp _ _ 23 nothing _ NOUN NN _ 22 nsubj _ _ 24 present _ ADJ JJ _ 23 amod _ _ 25 in _ ADP IN _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 current _ ADJ JJ _ 29 amod _ _ 28 market _ NOUN NN _ 29 compound _ _ 29 system _ NOUN NN _ 24 nmod _ _ 30 to _ PART TO _ 31 mark _ _ 31 prevent _ VERB VB _ 23 acl _ _ 32 another _ DET DT _ 34 det _ _ 33 dizzying _ ADJ JJ _ 34 amod _ _ 34 drop _ NOUN NN _ 31 dobj _ _ 35 such _ ADJ JJ _ 37 case _ _ 36 as _ ADP IN _ 35 mwe _ _ 37 Friday _ PROPN NNP _ 34 nmod _ _ 38 's _ PART POS _ 37 case _ _ 39 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 9 dep _ _ 4 too _ ADV RB _ 5 advmod _ _ 5 much _ ADJ JJ _ 6 amod _ _ 6 complacency _ NOUN NN _ 3 nsubj _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 money _ NOUN NN _ 13 compound _ _ 11 manager _ NOUN NN _ 13 compound _ _ 12 Barry _ PROPN NNP _ 13 compound _ _ 13 Schrager _ PROPN NNP _ 9 nsubj _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 Computers _ NOUN NNS _ 4 nsubj _ _ 2 have _ AUX VBP _ 4 aux _ _ 3 increasingly _ ADV RB _ 4 advmod _ _ 4 connected _ ADJ JJ _ 0 root _ _ 5 securities _ NOUN NNS _ 6 compound _ _ 6 markets _ NOUN NNS _ 4 dobj _ _ 7 world-wide _ ADJ JJ _ 6 amod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 so _ ADV RB _ 21 mark _ _ 10 that _ SCONJ IN _ 9 mwe _ _ 11 a _ DET DT _ 15 det _ _ 12 buying _ NOUN NN _ 15 compound _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 selling _ NOUN NN _ 12 conj _ _ 15 wave _ NOUN NN _ 21 nsubjpass _ _ 16 in _ ADP IN _ 18 case _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 market _ NOUN NN _ 15 nmod _ _ 19 is _ AUX VBZ _ 21 auxpass _ _ 20 often _ ADV RB _ 21 advmod _ _ 21 passed _ VERB VBN _ 4 advcl _ _ 22 around _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 globe _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 So _ ADV RB _ 5 advmod _ _ 2 investors _ NOUN NNS _ 5 nsubj _ _ 3 everywhere _ ADV RB _ 2 advmod _ _ 4 nervously _ ADV RB _ 5 advmod _ _ 5 eyed _ VERB VBD _ 0 root _ _ 6 yesterday _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 opening _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Tokyo _ PROPN NNP _ 8 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 where _ ADV WRB _ 20 advmod _ _ 13 the _ DET DT _ 15 det _ _ 14 Nikkei _ PROPN NNP _ 15 compound _ _ 15 average _ NOUN NN _ 20 nsubj _ _ 16 of _ ADP IN _ 19 case _ _ 17 225 _ NUM CD _ 19 nummod _ _ 18 blue-chip _ ADJ JJ _ 19 amod _ _ 19 stocks _ NOUN NNS _ 15 nmod _ _ 20 got _ VERB VBD _ 10 acl:relcl _ _ 21 off _ ADP RP _ 20 compound:prt _ _ 22 to _ ADP TO _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 rocky _ ADJ JJ _ 25 amod _ _ 25 start _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 average _ NOUN NN _ 3 nsubj _ _ 3 plunged _ VERB VBD _ 0 root _ _ 4 some _ DET DT _ 5 advmod _ _ 5 600 _ NUM CD _ 6 nummod _ _ 6 points _ NOUN NNS _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 or _ CONJ CC _ 6 cc _ _ 9 1.7 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 6 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 in _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 first _ ADJ JJ _ 16 amod _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 minutes _ NOUN NNS _ 3 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 trading _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 selling _ NOUN NN _ 4 compound _ _ 4 wave _ NOUN NN _ 5 nsubj _ _ 5 had _ VERB VBD _ 0 root _ _ 6 no _ DET DT _ 7 neg _ _ 7 conviction _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 the _ DET DT _ 11 det _ _ 11 market _ NOUN NN _ 13 nsubj _ _ 12 first _ ADV RB _ 13 advmod _ _ 13 surged _ VERB VBD _ 5 conj _ _ 14 upward _ ADV RB _ 13 advmod _ _ 15 by _ ADP IN _ 17 case _ _ 16 200 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 then _ ADV RB _ 20 advmod _ _ 20 drifted _ VERB VBD _ 13 dep _ _ 21 lower _ ADV RBR _ 20 advmod _ _ 22 , _ PUNCT , _ 20 punct _ _ 23 closing _ VERB VBG _ 20 xcomp _ _ 24 down _ ADV RB _ 23 advmod _ _ 25 647 _ NUM CD _ 24 nmod:npmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 12 nmod _ _ 4 ago _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 most _ ADJ JJS _ 12 nsubj _ _ 7 of _ ADP IN _ 11 case _ _ 8 Japan _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 investors _ NOUN NNS _ 6 nmod _ _ 12 chose _ VERB VBD _ 0 root _ _ 13 to _ PART TO _ 14 mark _ _ 14 sit _ VERB VB _ 12 xcomp _ _ 15 this _ DET DT _ 16 det _ _ 16 calamity _ NOUN NN _ 14 dobj _ _ 17 out _ ADP RP _ 14 compound:prt _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 In _ ADP IN _ 9 case _ _ 2 Merrill _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 9 nmod:poss _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Co. _ PROPN NNP _ 3 conj _ _ 6 's _ PART POS _ 5 case _ _ 7 Tokyo _ PROPN NNP _ 9 compound _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 room _ NOUN NN _ 16 nmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 some _ DET DT _ 12 advmod _ _ 12 40 _ NUM CD _ 13 nummod _ _ 13 traders _ NOUN NNS _ 16 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 assistants _ NOUN NNS _ 13 conj _ _ 16 sat _ VERB VBD _ 0 root _ _ 17 quietly _ ADV RB _ 16 advmod _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 with _ ADP IN _ 21 case _ _ 20 few _ ADJ JJ _ 21 amod _ _ 21 orders _ NOUN NNS _ 16 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 process _ NOUN NN _ 21 nmod _ _ 24 . _ PUNCT . _ 16 punct _ _ 1 Clients _ NOUN NNS _ 5 nsubj _ _ 2 `` _ PUNCT `` _ 5 punct _ _ 3 are _ AUX VBP _ 5 aux _ _ 4 all _ DET DT _ 5 dep _ _ 5 staying _ VERB VBG _ 15 ccomp _ _ 6 out _ ADP IN _ 10 case _ _ 7 '' _ PUNCT '' _ 10 punct _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 5 advcl _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 one _ NUM CD _ 14 nummod _ _ 13 Merrill _ PROPN NNP _ 14 compound _ _ 14 trader _ NOUN NN _ 15 nsubj _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 relative _ ADJ JJ _ 3 amod _ _ 3 calm _ NOUN NN _ 6 nsubj _ _ 4 in _ ADP IN _ 5 case _ _ 5 Tokyo _ PROPN NNP _ 3 nmod _ _ 6 proved _ VERB VBD _ 0 root _ _ 7 little _ ADJ JJ _ 8 amod _ _ 8 comfort _ NOUN NN _ 6 dobj _ _ 9 to _ ADP TO _ 10 case _ _ 10 markets _ NOUN NNS _ 8 nmod _ _ 11 opening _ VERB VBG _ 10 acl _ _ 12 up _ ADP RP _ 11 compound:prt _ _ 13 in _ ADP IN _ 14 case _ _ 14 Europe _ PROPN NNP _ 11 nmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 Frankfurt _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 opening _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 delayed _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 half _ ADJ JJ _ 8 amod _ _ 8 hour _ NOUN NN _ 5 nmod:tmod _ _ 9 because _ ADP IN _ 12 case _ _ 10 of _ ADP IN _ 9 mwe _ _ 11 a _ DET DT _ 12 det _ _ 12 crush _ NOUN NN _ 5 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 sell _ NOUN NN _ 15 compound _ _ 15 orders _ NOUN NNS _ 12 nmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 beginning _ NOUN NN _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 chaotic _ ADJ JJ _ 8 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 8 says _ VERB VBZ _ 0 root _ _ 9 Nigel _ PROPN NNP _ 10 compound _ _ 10 Longley _ PROPN NNP _ 8 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 13 det _ _ 13 broker _ NOUN NN _ 10 appos _ _ 14 for _ ADP IN _ 15 case _ _ 15 Commerzbank _ PROPN NNP _ 13 nmod _ _ 1 In _ ADP IN _ 2 case _ _ 2 London _ PROPN NNP _ 22 nmod _ _ 3 , _ PUNCT , _ 22 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 view _ NOUN NN _ 22 nsubj _ _ 6 from _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 trading _ NOUN NN _ 9 compound _ _ 9 floor _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 14 case _ _ 11 an _ DET DT _ 14 det _ _ 12 American _ ADJ JJ _ 14 amod _ _ 13 securities _ NOUN NNS _ 14 compound _ _ 14 firm _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Jefferies _ PROPN NNP _ 14 appos _ _ 17 & _ CONJ CC _ 16 cc _ _ 18 Co. _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 also _ ADV RB _ 22 advmod _ _ 21 was _ VERB VBD _ 22 cop _ _ 22 troubling _ ADJ JJ _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 screen _ NOUN NN _ 8 nsubj _ _ 4 displaying _ VERB VBG _ 3 acl _ _ 5 100 _ NUM CD _ 7 nummod _ _ 6 blue-chip _ ADJ JJ _ 7 amod _ _ 7 stocks _ NOUN NNS _ 4 dobj _ _ 8 colors _ NOUN NNS _ 0 root _ _ 9 each _ DET DT _ 10 det _ _ 10 one _ NUM CD _ 8 dobj _ _ 11 red _ NOUN NN _ 8 xcomp _ _ 12 when _ ADV WRB _ 16 advmod _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 price _ NOUN NN _ 16 nsubj _ _ 15 is _ AUX VBZ _ 16 aux _ _ 16 falling _ VERB VBG _ 8 advcl _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 screen _ NOUN NN _ 5 nsubj _ _ 3 was _ VERB VBD _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 sea _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 red _ NOUN NN _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 see _ VERB VBP _ 14 dep _ _ 4 concern _ NOUN NN _ 3 dobj _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 but _ CONJ CC _ 3 cc _ _ 7 I _ PRON PRP _ 10 nsubj _ _ 8 do _ AUX VBP _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 see _ VERB VB _ 3 conj _ _ 11 panic _ NOUN NN _ 10 dobj _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 J. _ PROPN NNP _ 17 compound _ _ 16 Francis _ PROPN NNP _ 17 compound _ _ 17 Palamara _ PROPN NNP _ 14 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 New _ PROPN NNP _ 21 compound _ _ 21 Yorker _ PROPN NNP _ 17 appos _ _ 22 who _ PRON WP _ 23 nsubj _ _ 23 runs _ VERB VBZ _ 21 acl:relcl _ _ 24 the _ DET DT _ 26 det _ _ 25 15-trader _ ADJ JJ _ 26 amod _ _ 26 office _ NOUN NN _ 23 dobj _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 London _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 blue-chip _ ADJ JJ _ 5 amod _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 index _ NOUN NN _ 6 nsubj _ _ 6 turned _ VERB VBD _ 0 root _ _ 7 up _ ADV RB _ 6 advmod _ _ 8 just _ ADV RB _ 11 advmod _ _ 9 before _ ADP IN _ 11 case _ _ 10 8 _ NUM CD _ 11 nummod _ _ 11 a.m _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 11 punct _ _ 13 New _ PROPN NNP _ 15 compound _ _ 14 York _ PROPN NNP _ 15 compound _ _ 15 time _ NOUN NN _ 11 dep _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 sending _ VERB VBG _ 6 xcomp _ _ 18 an _ DET DT _ 20 det _ _ 19 encouraging _ ADJ JJ _ 20 amod _ _ 20 message _ NOUN NN _ 17 dobj _ _ 21 to _ ADP TO _ 23 case _ _ 22 Wall _ PROPN NNP _ 23 compound _ _ 23 Street _ PROPN NNP _ 17 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 trading _ NOUN NN _ 3 nsubj _ _ 3 opened _ VERB VBD _ 13 advcl _ _ 4 in _ ADP IN _ 6 case _ _ 5 New _ PROPN NNP _ 6 compound _ _ 6 York _ PROPN NNP _ 3 nmod _ _ 7 at _ ADP IN _ 10 case _ _ 8 9:30 _ NUM CD _ 10 nummod _ _ 9 a.m. _ NOUN NN _ 10 compound _ _ 10 EDT _ PROPN NNP _ 3 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 stocks _ NOUN NNS _ 13 nsubj _ _ 13 fell _ VERB VBD _ 0 root _ _ 14 sharply _ ADV RB _ 13 advmod _ _ 15 -- _ PUNCT : _ 13 punct _ _ 16 as _ SCONJ IN _ 17 mark _ _ 17 expected _ VERB VBN _ 13 advcl _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 markets _ NOUN NNS _ 6 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 Chicago _ PROPN NNP _ 2 nmod _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 opened _ VERB VBN _ 0 root _ _ 7 at _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 level _ NOUN NN _ 6 nmod _ _ 10 suggesting _ VERB VBG _ 9 acl _ _ 11 the _ DET DT _ 12 det _ _ 12 Dow _ PROPN NNP _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 fall _ VERB VB _ 10 ccomp _ _ 15 by _ ADP IN _ 18 case _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 60 _ NUM CD _ 18 nummod _ _ 18 points _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 With _ SCONJ IN _ 4 mark _ _ 2 sell _ NOUN NN _ 3 compound _ _ 3 orders _ NOUN NNS _ 4 nsubj _ _ 4 piled _ VERB VBD _ 18 advcl _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 from _ ADP IN _ 7 case _ _ 7 Friday _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 18 punct _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 half _ DET PDT _ 12 nummod _ _ 11 the _ DET DT _ 12 det _ _ 12 stocks _ NOUN NNS _ 18 nsubj _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 Dow _ PROPN NNP _ 12 nmod _ _ 16 could _ AUX MD _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 open _ VERB VB _ 0 root _ _ 19 on _ ADP IN _ 20 case _ _ 20 time _ NOUN NN _ 18 nmod _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 9:45 _ NUM CD _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 6 det _ _ 5 industrial _ ADJ JJ _ 6 amod _ _ 6 average _ NOUN NN _ 8 nsubj _ _ 7 had _ AUX VBD _ 8 aux _ _ 8 dropped _ VERB VBN _ 0 root _ _ 9 27 _ NUM CD _ 10 nummod _ _ 10 points _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 10 _ NUM CD _ 3 nummod _ _ 3 a.m. _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 was _ VERB VBD _ 0 root _ _ 7 down _ ADV RB _ 6 advmod _ _ 8 49 _ NUM CD _ 7 nmod:npmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 Ten _ NUM CD _ 2 nummod _ _ 2 minutes _ NOUN NNS _ 3 nmod:npmod _ _ 3 later _ ADV RBR _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Dow _ PROPN NNP _ 7 nsubj _ _ 7 hit _ VERB VBD _ 0 root _ _ 8 bottom _ NOUN NN _ 7 dobj _ _ 9 - _ PUNCT : _ 7 punct _ _ 10 down _ ADV RB _ 7 advmod _ _ 11 63.52 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 another _ DET DT _ 15 advmod _ _ 15 2.5 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 appos _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 shortly _ ADV RB _ 4 advmod _ _ 3 before _ ADP IN _ 4 case _ _ 4 then _ ADV RB _ 13 nmod _ _ 5 , _ PUNCT , _ 13 punct _ _ 6 some _ DET DT _ 13 nsubj _ _ 7 of _ ADP IN _ 12 case _ _ 8 Wall _ PROPN NNP _ 9 compound _ _ 9 Street _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 sharpest _ ADJ JJS _ 12 amod _ _ 12 traders _ NOUN NNS _ 6 nmod _ _ 13 say _ VERB VBP _ 0 root _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 sensed _ VERB VBD _ 13 ccomp _ _ 17 a _ DET DT _ 18 det _ _ 18 turn _ NOUN NN _ 16 dobj _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 first _ ADJ JJ _ 4 amod _ _ 4 thing _ NOUN NN _ 12 nsubj _ _ 5 that _ PRON WDT _ 6 nsubj _ _ 6 caught _ VERB VBD _ 4 acl:relcl _ _ 7 my _ PRON PRP$ _ 8 nmod:poss _ _ 8 eye _ NOUN NN _ 6 dobj _ _ 9 that _ PRON WDT _ 11 nsubj _ _ 10 was _ AUX VBD _ 11 aux _ _ 11 encouraging _ VERB VBG _ 4 acl:relcl _ _ 12 was _ VERB VBD _ 19 dep _ _ 13 Treasury _ PROPN NNP _ 14 compound _ _ 14 bonds _ NOUN NNS _ 15 nsubj _ _ 15 were _ VERB VBD _ 12 ccomp _ _ 16 off _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 '' _ PUNCT '' _ 12 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Austin _ PROPN NNP _ 21 compound _ _ 21 George _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 head _ NOUN NN _ 21 appos _ _ 24 of _ ADP IN _ 25 case _ _ 25 stock _ NOUN NN _ 23 nmod _ _ 26 trading _ VERB VBG _ 25 amod _ _ 27 at _ ADP IN _ 30 case _ _ 28 T. _ PROPN NNP _ 30 compound _ _ 29 Rowe _ PROPN NNP _ 30 compound _ _ 30 Price _ PROPN NNP _ 23 nmod _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 meant _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 people _ NOUN NNS _ 8 nsubj _ _ 6 were _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 running _ VERB VBG _ 3 ccomp _ _ 9 pell-mell _ NOUN NN _ 8 advmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 safety _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 bonds _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 16 '' _ PUNCT '' _ 3 punct _ _ 1 Shortly _ ADV RB _ 4 advmod _ _ 2 after _ ADP IN _ 4 case _ _ 3 10 _ NUM CD _ 4 nummod _ _ 4 a.m. _ NOUN NN _ 27 nmod _ _ 5 , _ PUNCT , _ 27 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 Major _ PROPN NNP _ 9 compound _ _ 8 Market _ PROPN NNP _ 9 compound _ _ 9 Index _ PROPN NNP _ 27 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 16 det _ _ 12 Chicago _ PROPN NNP _ 16 dep _ _ 13 Board _ PROPN NNP _ 12 dep _ _ 14 of _ ADP IN _ 15 case _ _ 15 Trade _ PROPN NNP _ 12 nmod _ _ 16 futures _ NOUN NNS _ 9 appos _ _ 17 contract _ VERB VB _ 16 dep _ _ 18 of _ ADP IN _ 20 case _ _ 19 20 _ NUM CD _ 20 nummod _ _ 20 stocks _ NOUN NNS _ 16 nmod _ _ 21 designed _ VERB VBN _ 20 acl _ _ 22 to _ PART TO _ 23 mark _ _ 23 mimic _ VERB VB _ 21 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 DJIA _ PROPN NNP _ 23 dobj _ _ 26 , _ PUNCT , _ 9 punct _ _ 27 exploded _ VERB VBD _ 0 root _ _ 28 upward _ ADV RB _ 27 advmod _ _ 29 . _ PUNCT . _ 27 punct _ _ 1 Stock _ NOUN NN _ 2 compound _ _ 2 traders _ NOUN NNS _ 4 nsubjpass _ _ 3 were _ AUX VBD _ 4 auxpass _ _ 4 buoyed _ VERB VBN _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 because _ SCONJ IN _ 14 mark _ _ 7 an _ DET DT _ 8 det _ _ 8 upturn _ NOUN NN _ 14 nsubj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 MMI _ PROPN NNP _ 8 nmod _ _ 12 had _ AUX VBD _ 14 aux _ _ 13 also _ ADV RB _ 14 advmod _ _ 14 started _ VERB VBN _ 4 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 recovery _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 on _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 Tuesday _ PROPN NNP _ 14 nmod _ _ 22 following _ NOUN NN _ 24 dep _ _ 23 Black _ PROPN NNP _ 24 compound _ _ 24 Monday _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 MMI _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 gone _ VERB VBN _ 9 dep _ _ 6 better _ ADV RB _ 5 advmod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 '' _ PUNCT '' _ 5 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 trader _ NOUN NN _ 9 nsubj _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 London _ PROPN NNP _ 15 compound _ _ 15 office _ NOUN NN _ 11 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 Shearson _ PROPN NNP _ 19 compound _ _ 18 Lehman _ PROPN NNP _ 19 compound _ _ 19 Hutton _ PROPN NNP _ 15 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 Shearson _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 London _ PROPN NNP _ 5 compound _ _ 4 trading _ VERB VBG _ 5 amod _ _ 5 room _ NOUN NN _ 6 nsubj _ _ 6 went _ VERB VBD _ 0 root _ _ 7 wild _ ADJ JJ _ 6 xcomp _ _ 8 . _ PUNCT . _ 6 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 shouted _ VERB VBD _ 0 root _ _ 3 out _ ADP RP _ 2 compound:prt _ _ 4 as _ ADV RB _ 12 advmod _ _ 5 their _ PRON PRP$ _ 11 nmod:poss _ _ 6 Reuters _ PROPN NNP _ 11 compound _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Quotron _ PROPN NNP _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 Telerate _ PROPN NNP _ 6 conj _ _ 11 screens _ NOUN NNS _ 12 nsubj _ _ 12 posted _ VERB VBD _ 2 ccomp _ _ 13 an _ DET DT _ 15 det _ _ 14 ever-narrowing _ ADJ JJ _ 15 amod _ _ 15 loss _ NOUN NN _ 12 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 Wall _ PROPN NNP _ 18 compound _ _ 18 Street _ PROPN NNP _ 15 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Then _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 minutes _ NOUN NNS _ 5 nmod:npmod _ _ 5 later _ ADV RB _ 10 advmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 10 nsubj _ _ 9 suddenly _ ADV RB _ 10 advmod _ _ 10 rebounded _ VERB VB _ 0 root _ _ 11 to _ ADP TO _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 gain _ NOUN NN _ 10 nmod _ _ 14 on _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 day _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Rally _ VERB VB _ 9 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 rally _ VERB VB _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 rally _ VERB VB _ 2 dep _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 shouted _ VERB VBD _ 0 root _ _ 10 Shearson _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 Andy _ PROPN NNP _ 13 compound _ _ 13 Rosen _ PROPN NNP _ 9 nsubj _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 This _ PRON DT _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 panic _ NOUN NN _ 5 compound _ _ 5 buying _ NOUN NN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 '' _ PUNCT '' _ 5 punct _ _ 1 Major _ ADJ JJ _ 3 amod _ _ 2 blue-chip _ ADJ JJ _ 3 amod _ _ 3 stocks _ NOUN NNS _ 14 nsubj _ _ 4 like _ ADP IN _ 6 case _ _ 5 Philip _ PROPN NNP _ 6 compound _ _ 6 Morris _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 General _ PROPN NNP _ 9 compound _ _ 9 Motors _ PROPN NNP _ 6 conj _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 Proctor _ PROPN NNP _ 6 conj _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Gamble _ PROPN NNP _ 11 conj _ _ 14 led _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 rally _ NOUN NN _ 14 dobj _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 Japanese _ PROPN NNP _ 3 nsubjpass _ _ 2 were _ AUX VBD _ 3 auxpass _ _ 3 said _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 7 mark _ _ 5 be _ VERB VB _ 7 cop _ _ 6 heavy _ NOUN NN _ 7 compound _ _ 7 buyers _ NOUN NNS _ 3 xcomp _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 German _ PROPN NNP _ 4 amod _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Dutch _ PROPN NNP _ 1 conj _ _ 4 investors _ NOUN NNS _ 6 nsubj _ _ 5 reportedly _ ADV RB _ 6 advmod _ _ 6 loaded _ VERB VBD _ 0 root _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 on _ ADP IN _ 10 case _ _ 9 Kellogg _ PROPN NNP _ 10 compound _ _ 10 Co _ PROPN NNP _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Then _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 traders _ NOUN NNS _ 4 nsubj _ _ 4 say _ VERB VB _ 11 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 corporations _ NOUN NNS _ 11 nsubj _ _ 7 with _ ADP IN _ 10 case _ _ 8 share _ NOUN NN _ 10 compound _ _ 9 buy-back _ ADJ JJ _ 10 amod _ _ 10 programs _ NOUN NNS _ 6 nmod _ _ 11 kicked _ VERB VBN _ 0 root _ _ 12 into _ ADP IN _ 14 case _ _ 13 high _ ADJ JJ _ 14 amod _ _ 14 gear _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 triggering _ VERB VBG _ 11 xcomp _ _ 17 gains _ NOUN NNS _ 16 dobj _ _ 18 in _ ADP IN _ 25 case _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 among _ ADP IN _ 22 case _ _ 21 other _ ADJ JJ _ 22 amod _ _ 22 issues _ NOUN NNS _ 25 dep _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 Alcan _ PROPN NNP _ 25 compound _ _ 25 Aluminium _ PROPN NNP _ 17 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 McDonald _ PROPN NNP _ 25 conj _ _ 28 's _ PART POS _ 27 case _ _ 29 . _ PUNCT . _ 11 punct _ _ 1 Walt _ PROPN NNP _ 3 compound _ _ 2 Disney _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 30 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 had _ VERB VBD _ 3 acl:relcl _ _ 7 one _ NOUN NN _ 6 dobj _ _ 8 of _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 biggest _ ADJ JJS _ 12 amod _ _ 11 sell-order _ ADJ JJ _ 12 amod _ _ 12 imbalances _ NOUN NNS _ 7 nmod _ _ 13 on _ ADP IN _ 14 case _ _ 14 Friday _ PROPN NNP _ 6 nmod _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 was _ VERB VBD _ 17 cop _ _ 17 one _ NUM CD _ 6 conj _ _ 18 of _ ADP IN _ 20 case _ _ 19 seven _ NUM CD _ 20 nummod _ _ 20 stocks _ NOUN NNS _ 17 nmod _ _ 21 that _ PRON WDT _ 22 nsubj _ _ 22 halted _ VERB VBD _ 20 acl:relcl _ _ 23 trading _ NOUN NN _ 22 dobj _ _ 24 and _ CONJ CC _ 22 cc _ _ 25 never _ ADV RB _ 26 neg _ _ 26 reopened _ VERB VBD _ 22 conj _ _ 27 that _ DET DT _ 28 det _ _ 28 day _ NOUN NN _ 26 nmod:tmod _ _ 29 , _ PUNCT , _ 3 punct _ _ 30 opened _ VERB VBD _ 0 root _ _ 31 yesterday _ NOUN NN _ 30 nmod:tmod _ _ 32 late _ ADV RB _ 30 advmod _ _ 33 at _ ADP IN _ 34 case _ _ 34 114.5 _ NUM CD _ 30 nmod _ _ 35 , _ PUNCT , _ 30 punct _ _ 36 down _ ADV RB _ 30 advmod _ _ 37 8.5 _ NUM CD _ 36 nmod:npmod _ _ 38 . _ PUNCT . _ 30 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 then _ ADV RB _ 5 advmod _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 suddenly _ ADV RB _ 5 advmod _ _ 5 burst _ VERB VBD _ 24 ccomp _ _ 6 upward _ ADV RB _ 5 advmod _ _ 7 7.5 _ NUM CD _ 5 dobj _ _ 8 as _ SCONJ IN _ 14 mark _ _ 9 Goldman _ PROPN NNP _ 14 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Sachs _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Co. _ PROPN NNP _ 9 conj _ _ 14 stepped _ VERB VBD _ 5 advcl _ _ 15 in _ ADV RB _ 14 advmod _ _ 16 and _ CONJ CC _ 14 cc _ _ 17 bought _ VERB VBD _ 14 conj _ _ 18 almost _ ADV RB _ 21 advmod _ _ 19 every _ DET DT _ 21 det _ _ 20 share _ NOUN NN _ 21 compound _ _ 21 offer _ NOUN NN _ 17 dobj _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 traders _ NOUN NNS _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 10:25 _ NUM CD _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 Dow _ PROPN NNP _ 7 nsubj _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 turned _ VERB VBN _ 0 root _ _ 8 up _ ADP IN _ 7 advmod _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 day _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 prompting _ VERB VBG _ 7 xcomp _ _ 14 cheers _ NOUN NNS _ 13 dobj _ _ 15 on _ ADP IN _ 17 case _ _ 16 trading _ VERB VBG _ 17 amod _ _ 17 desks _ NOUN NNS _ 13 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 exchange _ NOUN NN _ 20 compound _ _ 20 floors _ NOUN NNS _ 17 conj _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 Big _ PROPN NNP _ 4 compound _ _ 3 Board _ PROPN NNP _ 4 compound _ _ 4 specialists _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 cry _ NOUN NN _ 8 nsubj _ _ 8 was _ VERB VBD _ 0 root _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 Pull _ VERB VB _ 8 ccomp _ _ 11 your _ PRON PRP$ _ 12 nmod:poss _ _ 12 offers _ NOUN NNS _ 10 dobj _ _ 13 '' _ PUNCT '' _ 10 punct _ _ 14 -- _ PUNCT : _ 8 punct _ _ 15 meaning _ NOUN NN _ 8 ccomp _ _ 16 that _ SCONJ IN _ 19 mark _ _ 17 specialists _ NOUN NNS _ 19 nsubj _ _ 18 soon _ ADV RB _ 19 advmod _ _ 19 expected _ VERB VBN _ 15 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 get _ VERB VB _ 19 xcomp _ _ 22 higher _ ADJ JJR _ 23 amod _ _ 23 prices _ NOUN NNS _ 21 dobj _ _ 24 for _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 shares _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 bedlam _ NOUN NN _ 10 dep _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 upside _ ADV RB _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 '' _ PUNCT '' _ 4 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Big _ PROPN NNP _ 14 compound _ _ 13 Board _ PROPN NNP _ 14 compound _ _ 14 specialist _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 What _ PRON WP _ 4 dobj _ _ 3 we _ PRON PRP _ 4 nsubj _ _ 4 had _ VERB VBD _ 10 csubj _ _ 5 was _ VERB VBD _ 10 cop _ _ 6 a _ DET DT _ 10 det _ _ 7 real _ ADJ JJ _ 10 amod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 old-fashioned _ ADJ JJ _ 10 amod _ _ 10 rally _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 technical _ ADJ JJ _ 3 amod _ _ 3 strength _ NOUN NN _ 4 nsubj _ _ 4 spurred _ VERB VBD _ 0 root _ _ 5 buying _ NOUN NN _ 4 dobj _ _ 6 from _ ADP IN _ 12 case _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 12 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 black _ ADJ JJ _ 12 amod _ _ 12 boxes _ NOUN NNS _ 5 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 15 computer _ NOUN NN _ 16 compound _ _ 16 programs _ NOUN NNS _ 12 dep _ _ 17 designed _ VERB VBN _ 16 acl _ _ 18 to _ PART TO _ 19 mark _ _ 19 trigger _ VERB VB _ 17 xcomp _ _ 20 large _ ADJ JJ _ 22 amod _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 purchases _ NOUN NNS _ 19 dobj _ _ 23 during _ ADP IN _ 25 case _ _ 24 bullish _ ADJ JJ _ 25 amod _ _ 25 periods _ NOUN NNS _ 19 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Typical _ ADJ JJ _ 5 dep _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 perhaps _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 was _ VERB VBD _ 0 root _ _ 6 Batterymarch _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 Dean _ PROPN NNP _ 9 compound _ _ 9 LeBaron _ PROPN NNP _ 5 nsubj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 LeBaron _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 manages _ VERB VBZ _ 2 acl:relcl _ _ 6 $ _ SYM $ _ 5 dobj _ _ 7 10 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 We _ PRON PRP _ 14 nsubj _ _ 14 turned _ VERB VBD _ 10 xcomp _ _ 15 the _ DET DT _ 17 det _ _ 16 trading _ NOUN NN _ 17 compound _ _ 17 system _ NOUN NN _ 14 dobj _ _ 18 on _ ADP RP _ 14 compound:prt _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 and _ CONJ CC _ 14 cc _ _ 21 it _ PRON PRP _ 22 nsubj _ _ 22 did _ VERB VBD _ 14 conj _ _ 23 whatever _ DET WDT _ 28 dobj _ _ 24 it _ PRON PRP _ 26 nsubjpass _ _ 25 was _ AUX VBD _ 26 auxpass _ _ 26 programmed _ VERB VBN _ 22 ccomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 do _ VERB VB _ 26 xcomp _ _ 29 . _ PUNCT . _ 14 punct _ _ 30 '' _ PUNCT '' _ 14 punct _ _ 1 Asked _ VERB VBN _ 11 advcl _ _ 2 what _ PRON WP _ 6 dobj _ _ 3 stocks _ VERB VBZ _ 2 dep _ _ 4 the _ DET DT _ 5 det _ _ 5 computer _ NOUN NN _ 6 nsubj _ _ 6 bought _ VERB VBD _ 1 ccomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 money _ NOUN NN _ 10 compound _ _ 10 manager _ NOUN NN _ 11 nsubj _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 I _ PRON PRP _ 17 nsubj _ _ 15 do _ AUX VBP _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 know _ VERB VB _ 11 ccomp _ _ 18 . _ PUNCT . _ 11 punct _ _ 19 '' _ PUNCT '' _ 11 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 everybody _ NOUN NN _ 4 nsubj _ _ 3 was _ AUX VBD _ 4 aux _ _ 4 making _ VERB VBG _ 0 root _ _ 5 money _ NOUN NN _ 4 dobj _ _ 6 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 carnage _ NOUN NN _ 18 nsubj _ _ 3 on _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det _ _ 5 Chicago _ PROPN NNP _ 8 compound _ _ 6 Board _ PROPN NNP _ 8 compound _ _ 7 Options _ PROPN NNP _ 8 compound _ _ 8 Exchange _ PROPN NNP _ 2 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 15 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 options _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 8 appos _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 was _ VERB VBD _ 18 cop _ _ 18 heavy _ ADJ JJ _ 0 root _ _ 19 after _ SCONJ IN _ 28 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 trading _ NOUN NN _ 28 nsubjpass _ _ 22 in _ ADP IN _ 26 case _ _ 23 S&P _ PROPN NNP _ 26 compound _ _ 24 100 _ NUM CD _ 26 nummod _ _ 25 stock-index _ ADJ JJ _ 26 amod _ _ 26 options _ NOUN NNS _ 21 nmod _ _ 27 was _ AUX VBD _ 28 auxpass _ _ 28 halted _ VERB VBN _ 18 advcl _ _ 29 Friday _ PROPN NNP _ 28 nmod:tmod _ _ 30 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 makers _ NOUN NNS _ 11 nsubj _ _ 4 in _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 10 det _ _ 6 S&P _ PROPN NNP _ 10 compound _ _ 7 100 _ NUM CD _ 10 nummod _ _ 8 index _ NOUN NN _ 10 compound _ _ 9 options _ NOUN NNS _ 10 compound _ _ 10 contract _ NOUN NN _ 3 nmod _ _ 11 had _ VERB VBD _ 0 root _ _ 12 bullish _ ADJ JJ _ 13 amod _ _ 13 positions _ NOUN NNS _ 11 dobj _ _ 14 Friday _ PROPN NNP _ 11 nmod:tmod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 when _ ADV WRB _ 20 advmod _ _ 18 the _ DET DT _ 19 det _ _ 19 shutdown _ NOUN NN _ 20 nsubj _ _ 20 came _ VERB VBD _ 23 advcl _ _ 21 they _ PRON PRP _ 23 nsubjpass _ _ 22 were _ AUX VBD _ 23 auxpass _ _ 23 frozen _ VERB VBN _ 11 conj _ _ 24 with _ ADP IN _ 26 case _ _ 25 huge _ ADJ JJ _ 26 amod _ _ 26 losses _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 Over _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 weekend _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 clearing _ NOUN NN _ 6 compound _ _ 6 firms _ NOUN NNS _ 7 nsubj _ _ 7 told _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 11 det _ _ 9 Chicago _ PROPN NNP _ 11 compound _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 makers _ NOUN NNS _ 7 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 get _ VERB VB _ 7 xcomp _ _ 14 out _ ADP IN _ 17 case _ _ 15 of _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 positions _ NOUN NNS _ 13 nmod _ _ 18 at _ ADP IN _ 20 case _ _ 19 any _ DET DT _ 20 det _ _ 20 cost _ NOUN NN _ 13 nmod _ _ 21 Monday _ PROPN NNP _ 22 compound _ _ 22 morning _ NOUN NN _ 13 nmod:tmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 absolutely _ ADV RB _ 5 advmod _ _ 5 killed _ VERB VBN _ 10 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 slaughtered _ VERB VBN _ 5 dep _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 one _ NUM CD _ 14 nummod _ _ 12 Chicago-based _ ADJ JJ _ 14 amod _ _ 13 options _ NOUN NNS _ 14 compound _ _ 14 trader _ NOUN NN _ 10 nsubj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Meanwhile _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 a _ DET DT _ 4 det _ _ 4 test _ NOUN NN _ 11 nsubj _ _ 5 of _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 rally _ NOUN NN _ 4 nmod _ _ 11 came _ VERB VBD _ 0 root _ _ 12 at _ ADP IN _ 15 case _ _ 13 about _ ADV RB _ 15 advmod _ _ 14 2 _ NUM CD _ 15 nummod _ _ 15 p.m. _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 Dow _ PROPN NNP _ 11 nmod _ _ 20 at _ ADP IN _ 21 case _ _ 21 2600 _ NUM CD _ 19 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 up _ ADV RB _ 21 advmod _ _ 24 31 _ NUM CD _ 25 nummod _ _ 25 points _ NOUN NNS _ 23 nmod:npmod _ _ 26 on _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 day _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 11 punct _ _ 1 Charles _ PROPN NNP _ 2 compound _ _ 2 Clough _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 strategist _ NOUN NN _ 2 appos _ _ 6 at _ ADP IN _ 8 case _ _ 7 Merrill _ PROPN NNP _ 8 compound _ _ 8 Lynch _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 bargain _ NOUN NN _ 12 compound _ _ 12 hunting _ NOUN NN _ 14 nsubj _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 explained _ VERB VBN _ 10 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 Dow _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 strength _ NOUN NN _ 14 dobj _ _ 19 up _ ADP IN _ 22 case _ _ 20 to _ ADP TO _ 22 case _ _ 21 that _ DET DT _ 22 det _ _ 22 point _ NOUN NN _ 14 nmod _ _ 23 and _ CONJ CC _ 14 cc _ _ 24 that _ DET DT _ 29 mark _ _ 25 many _ ADJ JJ _ 27 amod _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 professionals _ NOUN NNS _ 29 nsubj _ _ 28 were _ AUX VBD _ 29 aux _ _ 29 anticipating _ VERB VBG _ 14 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 drop _ NOUN NN _ 29 dobj _ _ 32 in _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 Dow _ PROPN NNP _ 31 nmod _ _ 35 . _ PUNCT . _ 10 punct _ _ 1 Moreover _ ADV RB _ 24 advmod _ _ 2 , _ PUNCT , _ 24 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 announcement _ NOUN NN _ 24 nsubjpass _ _ 5 that _ SCONJ IN _ 15 mark _ _ 6 real _ ADJ JJ _ 8 amod _ _ 7 estate _ NOUN NN _ 8 compound _ _ 8 magnate _ NOUN NN _ 15 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 sometime _ ADJ JJ _ 13 amod _ _ 11 raider _ NOUN NN _ 13 compound _ _ 12 Donald _ PROPN NNP _ 13 compound _ _ 13 Trump _ PROPN NNP _ 8 conj _ _ 14 was _ AUX VBD _ 15 aux _ _ 15 withdrawing _ VERB VBG _ 4 ccomp _ _ 16 his _ PRON PRP$ _ 17 nmod:poss _ _ 17 offer _ NOUN NN _ 15 dobj _ _ 18 for _ ADP IN _ 20 case _ _ 19 AMR _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 17 nmod _ _ 21 might _ AUX MD _ 24 aux _ _ 22 have _ AUX VB _ 24 aux _ _ 23 been _ AUX VBN _ 24 auxpass _ _ 24 expected _ VERB VBN _ 0 root _ _ 25 to _ PART TO _ 26 mark _ _ 26 rattle _ VERB VB _ 24 xcomp _ _ 27 traders _ NOUN NNS _ 26 dobj _ _ 28 . _ PUNCT . _ 24 punct _ _ 1 Instead _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 rally _ NOUN NN _ 6 nsubj _ _ 5 only _ ADV RB _ 6 advmod _ _ 6 paused _ VERB VBD _ 0 root _ _ 7 for _ ADP IN _ 10 case _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 25 _ NUM CD _ 10 nummod _ _ 10 minutes _ NOUN NNS _ 6 nmod _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 then _ ADV RB _ 13 advmod _ _ 13 steamed _ VERB VBD _ 6 conj _ _ 14 forward _ ADV RB _ 13 advmod _ _ 15 as _ SCONJ IN _ 17 mark _ _ 16 institutions _ NOUN NNS _ 17 nsubj _ _ 17 resumed _ VERB VBD _ 13 advcl _ _ 18 buying _ VERB VBG _ 17 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 closed _ VERB VBD _ 0 root _ _ 4 minutes _ NOUN NNS _ 3 nmod:tmod _ _ 5 after _ SCONJ IN _ 6 mark _ _ 6 reaching _ VERB VBG _ 4 acl _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 high _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 day _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 8 dep _ _ 1 Across _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 country _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 many _ ADJ JJ _ 6 amod _ _ 6 people _ NOUN NNS _ 7 nsubj _ _ 7 took _ VERB VBD _ 0 root _ _ 8 yesterday _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 events _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 stride _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 while _ SCONJ IN _ 15 mark _ _ 15 remaining _ VERB VBG _ 7 advcl _ _ 16 generally _ ADV RB _ 17 advmod _ _ 17 uneasy _ ADJ JJ _ 15 xcomp _ _ 18 about _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 stock _ NOUN NN _ 21 compound _ _ 21 market _ NOUN NN _ 17 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 general _ NOUN NN _ 21 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 James _ PROPN NNP _ 3 compound _ _ 3 Norman _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 mayor _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 8 case _ _ 8 Ava _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Mo. _ PROPN NNP _ 8 appos _ _ 11 : _ PUNCT : _ 1 punct _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 I _ PRON PRP _ 16 nsubj _ _ 14 do _ AUX VBP _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 invest _ VERB VB _ 1 dep _ _ 17 in _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 I _ PRON PRP _ 3 nsubj _ _ 2 much _ ADV RB _ 3 advmod _ _ 3 prefer _ VERB VBP _ 0 root _ _ 4 money _ NOUN NN _ 3 dobj _ _ 5 I _ PRON PRP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 put _ VERB VB _ 4 acl:relcl _ _ 8 my _ PRON PRP$ _ 9 nmod:poss _ _ 9 hands _ NOUN NNS _ 7 dobj _ _ 10 on _ ADP IN _ 7 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 Mayor _ PROPN NNP _ 3 compound _ _ 3 Norman _ PROPN NNP _ 4 nsubj _ _ 4 found _ VERB VBD _ 16 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 performance _ NOUN NN _ 10 nsubj _ _ 9 Monday _ PROPN NNP _ 10 nmod:tmod _ _ 10 reassuring _ VERB VBG _ 4 dep _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 16 parataxis _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 remains _ VERB VBZ _ 0 root _ _ 17 uneasy _ ADJ JJ _ 16 xcomp _ _ 18 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 half _ DET PDT _ 6 det:predet _ _ 5 the _ DET DT _ 6 det _ _ 6 experts _ NOUN NNS _ 7 nsubj _ _ 7 saying _ VERB VBG _ 3 xcomp _ _ 8 one _ NUM CD _ 9 nummod _ _ 9 thing _ NOUN NN _ 7 dobj _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 half _ NOUN NN _ 13 dep _ _ 12 the _ DET DT _ 13 det _ _ 13 other _ ADJ JJ _ 7 conj _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 about _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 course _ NOUN NN _ 7 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 economy _ NOUN NN _ 17 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Ralph _ PROPN NNP _ 2 compound _ _ 2 Holzfaster _ PROPN NNP _ 15 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 farmer _ NOUN NN _ 2 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 farm-supply _ ADJ JJ _ 9 amod _ _ 8 store _ NOUN NN _ 9 compound _ _ 9 operator _ NOUN NN _ 5 conj _ _ 10 in _ ADP IN _ 11 case _ _ 11 Ogallala _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Neb. _ PROPN NNP _ 11 appos _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 of _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 21 det _ _ 18 last _ ADJ JJ _ 19 amod _ _ 19 few _ ADJ JJ _ 21 amod _ _ 20 days _ NOUN NNS _ 21 compound _ _ 21 events _ NOUN NNS _ 15 nmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 `` _ PUNCT `` _ 34 punct _ _ 24 If _ SCONJ IN _ 27 mark _ _ 25 anything _ NOUN NN _ 27 nsubj _ _ 26 good _ ADJ JJ _ 25 amod _ _ 27 comes _ VERB VBZ _ 34 advcl _ _ 28 out _ ADP IN _ 30 case _ _ 29 of _ ADP IN _ 30 case _ _ 30 this _ PRON DT _ 27 nmod _ _ 31 , _ PUNCT , _ 34 punct _ _ 32 it _ PRON PRP _ 34 nsubj _ _ 33 might _ AUX MD _ 34 aux _ _ 34 be _ VERB VB _ 15 ccomp _ _ 35 that _ SCONJ IN _ 37 mark _ _ 36 it _ PRON PRP _ 37 nsubj _ _ 37 puts _ VERB VBZ _ 34 ccomp _ _ 38 some _ DET DT _ 37 dobj _ _ 39 of _ ADP IN _ 41 case _ _ 40 these _ DET DT _ 41 det _ _ 41 LBOs _ NOUN NNS _ 38 nmod _ _ 42 on _ ADP IN _ 44 case _ _ 43 the _ DET DT _ 44 det _ _ 44 skids _ NOUN NNS _ 37 nmod _ _ 45 . _ PUNCT . _ 34 punct _ _ 46 '' _ PUNCT '' _ 34 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 Gordon _ PROPN NNP _ 3 compound _ _ 3 Fines _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 7 det _ _ 6 money _ NOUN NN _ 7 compound _ _ 7 manager _ NOUN NN _ 3 appos _ _ 8 at _ ADP IN _ 11 case _ _ 9 IDS _ PROPN NNP _ 11 compound _ _ 10 Financial _ PROPN NNP _ 11 compound _ _ 11 Services _ PROPN NNP _ 7 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 Minneapolis _ PROPN NNP _ 11 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 `` _ PUNCT `` _ 21 punct _ _ 16 You _ PRON PRP _ 21 nsubj _ _ 17 're _ VERB VBP _ 21 cop _ _ 18 on _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 roller _ NOUN NN _ 21 compound _ _ 21 coaster _ NOUN NN _ 1 ccomp _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 and _ CONJ CC _ 21 cc _ _ 24 that _ PRON DT _ 26 nsubj _ _ 25 may _ AUX MD _ 26 aux _ _ 26 last _ VERB VB _ 21 conj _ _ 27 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 public _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 cautious _ ADJ JJ _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 Skipper _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Inc. _ PROPN NNP _ 9 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Bellevue _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Wash. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 signed _ VERB VBD _ 9 ccomp _ _ 12 a _ DET DT _ 15 det _ _ 13 definitive _ ADJ JJ _ 15 amod _ _ 14 merger _ NOUN NN _ 15 compound _ _ 15 agreement _ NOUN NN _ 11 dobj _ _ 16 for _ SCONJ IN _ 23 mark _ _ 17 a _ DET DT _ 21 det _ _ 18 National _ PROPN NNP _ 21 compound _ _ 19 Pizza _ PROPN NNP _ 21 compound _ _ 20 Corp. _ PROPN NNP _ 21 compound _ _ 21 unit _ NOUN NN _ 23 nsubj _ _ 22 to _ PART TO _ 23 mark _ _ 23 acquire _ VERB VB _ 15 acl _ _ 24 the _ DET DT _ 26 det _ _ 25 90.6 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 dobj _ _ 27 of _ ADP IN _ 30 case _ _ 28 Skipper _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Inc. _ PROPN NNP _ 26 nmod _ _ 31 it _ PRON PRP _ 34 nsubj _ _ 32 does _ AUX VBZ _ 34 aux _ _ 33 n't _ PART RB _ 34 neg _ _ 34 own _ VERB VB _ 26 acl:relcl _ _ 35 for _ ADP IN _ 37 case _ _ 36 $ _ SYM $ _ 37 dep _ _ 37 11.50 _ NUM CD _ 23 nmod _ _ 38 a _ DET DT _ 39 det _ _ 39 share _ NOUN NN _ 37 nmod:npmod _ _ 40 , _ PUNCT , _ 37 punct _ _ 41 or _ CONJ CC _ 37 cc _ _ 42 about _ ADV RB _ 43 advmod _ _ 43 $ _ SYM $ _ 37 conj _ _ 44 28.1 _ NUM CD _ 45 compound _ _ 45 million _ NUM CD _ 43 nummod _ _ 46 . _ PUNCT . _ 9 punct _ _ 1 NP _ PROPN NNP _ 3 compound _ _ 2 Acquisition _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 8 det _ _ 6 National _ PROPN NNP _ 8 compound _ _ 7 Pizza _ PROPN NNP _ 8 compound _ _ 8 unit _ NOUN NN _ 3 appos _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 plans _ VERB VBZ _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 begin _ VERB VB _ 10 xcomp _ _ 13 a _ DET DT _ 15 det _ _ 14 tender _ NOUN NN _ 15 compound _ _ 15 offer _ NOUN NN _ 12 dobj _ _ 16 for _ ADP IN _ 17 case _ _ 17 Skipper _ PROPN NNP _ 15 nmod _ _ 18 's _ PART POS _ 17 case _ _ 19 on _ ADP IN _ 20 case _ _ 20 Friday _ PROPN NNP _ 12 nmod _ _ 21 , _ PUNCT , _ 12 punct _ _ 22 conditioned _ VERB VBN _ 26 case _ _ 23 on _ ADP IN _ 26 case _ _ 24 at _ ADP IN _ 25 case _ _ 25 least _ ADJ JJS _ 26 nmod:npmod _ _ 26 two-thirds _ NOUN NNS _ 12 advcl _ _ 27 of _ ADP IN _ 30 case _ _ 28 Skipper _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 shares _ NOUN NNS _ 26 nmod _ _ 31 being _ AUX VBG _ 32 auxpass _ _ 32 tendered _ VERB VBN _ 30 acl _ _ 33 . _ PUNCT . _ 10 punct _ _ 1 Pittsburg _ PROPN NNP _ 3 amod _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 Kan.-based _ ADJ JJ _ 5 amod _ _ 4 National _ PROPN NNP _ 5 compound _ _ 5 Pizza _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 transaction _ NOUN NN _ 11 nsubjpass _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 financed _ VERB VBN _ 6 ccomp _ _ 12 under _ ADP IN _ 16 case _ _ 13 its _ PRON PRP$ _ 16 nmod:poss _ _ 14 revolving _ ADJ JJ _ 16 amod _ _ 15 credit _ NOUN NN _ 16 compound _ _ 16 agreement _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 national _ ADJ JJ _ 4 amod _ _ 3 over-the-counter _ ADJ JJ _ 4 amod _ _ 4 trading _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Skipper _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 shares _ NOUN NNS _ 9 nsubj _ _ 9 rose _ VERB VBD _ 0 root _ _ 10 50 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 9 dobj _ _ 12 to _ ADP TO _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 11 _ NUM CD _ 9 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Skipper _ PROPN NNP _ 3 nsubj _ _ 2 's _ PART POS _ 1 case _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 merger _ NOUN NN _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 help _ VERB VB _ 3 ccomp _ _ 8 finance _ VERB VB _ 7 ccomp _ _ 9 remodeling _ NOUN NN _ 8 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 future _ ADJ JJ _ 12 amod _ _ 12 growth _ NOUN NN _ 9 conj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Skipper _ PROPN NNP _ 4 nsubj _ _ 2 's _ PART POS _ 1 case _ _ 3 previously _ ADV RB _ 4 advmod _ _ 4 turned _ VERB VBD _ 0 root _ _ 5 down _ ADP RP _ 4 compound:prt _ _ 6 a _ DET DT _ 9 det _ _ 7 $ _ SYM $ _ 9 amod _ _ 8 10-a-share _ ADJ JJ _ 7 dep _ _ 9 proposal _ NOUN NN _ 4 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 National _ PROPN NNP _ 12 compound _ _ 12 Pizza _ PROPN NNP _ 9 nmod _ _ 13 and _ CONJ CC _ 4 cc _ _ 14 Pizza _ PROPN NNP _ 16 compound _ _ 15 Hut _ PROPN NNP _ 16 compound _ _ 16 Inc. _ PROPN NNP _ 17 nsubj _ _ 17 questioned _ VERB VBD _ 4 conj _ _ 18 whether _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 purchase _ NOUN NN _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 violate _ VERB VB _ 17 ccomp _ _ 23 National _ PROPN NNP _ 24 compound _ _ 24 Pizza _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 franchise _ NOUN NN _ 27 compound _ _ 27 agreements _ NOUN NNS _ 22 dobj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 National _ PROPN NNP _ 2 compound _ _ 2 Pizza _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 settled _ VERB VBD _ 3 ccomp _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 dispute _ NOUN NN _ 5 dobj _ _ 8 with _ ADP IN _ 10 case _ _ 9 Pizza _ PROPN NNP _ 10 compound _ _ 10 Hut _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 allowing _ VERB VBG _ 5 advcl _ _ 13 it _ PRON PRP _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 12 xcomp _ _ 16 the _ DET DT _ 17 det _ _ 17 purchase _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 Skipper _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 results _ NOUN NNS _ 6 nsubj _ _ 6 began _ VERB VBD _ 18 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 turn _ VERB VB _ 6 xcomp _ _ 9 around _ ADP RP _ 8 compound:prt _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 permitting _ VERB VBG _ 8 xcomp _ _ 12 a _ DET DT _ 14 det _ _ 13 higher _ ADJ JJR _ 14 amod _ _ 14 offer _ NOUN NN _ 11 dobj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 National _ PROPN NNP _ 17 compound _ _ 17 Pizza _ PROPN NNP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 12 _ NUM CD _ 4 nummod _ _ 4 weeks _ NOUN NNS _ 11 nmod _ _ 5 ended _ VERB VBN _ 4 acl _ _ 6 Sept. _ PROPN NNP _ 5 nmod:tmod _ _ 7 3 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Skipper _ PROPN NNP _ 11 nsubj _ _ 10 's _ PART POS _ 9 case _ _ 11 had _ VERB VBD _ 0 root _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 361,000 _ NUM CD _ 13 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 or _ CONJ CC _ 16 cc _ _ 19 13 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 16 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 16 punct _ _ 24 compared _ VERB VBN _ 28 case _ _ 25 with _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 net _ ADJ JJ _ 28 amod _ _ 28 loss _ NOUN NN _ 11 advcl _ _ 29 a _ DET DT _ 30 det _ _ 30 year _ NOUN NN _ 31 nmod:npmod _ _ 31 earlier _ ADV RBR _ 28 advmod _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 Revenue _ NOUN NN _ 3 nsubj _ _ 2 was _ VERB VBD _ 3 cop _ _ 3 $ _ SYM $ _ 0 root _ _ 4 19.9 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 EAST _ NOUN NNS _ 2 compound _ _ 2 GERMANS _ NOUN NNS _ 3 nsubj _ _ 3 RALLIED _ VERB VBD _ 0 root _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 officials _ NOUN NNS _ 7 nsubj _ _ 6 reportedly _ ADV RB _ 7 advmod _ _ 7 sought _ VERB VBD _ 3 advcl _ _ 8 Honecker _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 ouster _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 In _ SCONJ IN _ 4 mark _ _ 2 what _ PRON WP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 considered _ VERB VBN _ 20 advcl _ _ 5 the _ DET DT _ 7 det _ _ 6 largest _ ADJ JJS _ 7 amod _ _ 7 protest _ NOUN NN _ 4 xcomp _ _ 8 in _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Communist _ ADJ JJ _ 11 amod _ _ 11 state _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 40-year _ ADJ JJ _ 14 amod _ _ 14 history _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 at _ ADP IN _ 17 case _ _ 17 least _ ADJ JJS _ 18 nmod:npmod _ _ 18 120,000 _ NUM CD _ 19 nummod _ _ 19 demonstrators _ NOUN NNS _ 20 nsubj _ _ 20 marched _ VERB VBN _ 36 advcl _ _ 21 through _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 southern _ ADJ JJ _ 24 amod _ _ 24 city _ NOUN NN _ 20 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 Leipzig _ PROPN NNP _ 24 nmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 press _ VERB VB _ 20 xcomp _ _ 29 demands _ NOUN NNS _ 28 dobj _ _ 30 for _ ADP IN _ 32 case _ _ 31 democratic _ ADJ JJ _ 32 amod _ _ 32 freedoms _ NOUN NNS _ 29 nmod _ _ 33 , _ PUNCT , _ 36 punct _ _ 34 opposition _ NOUN NN _ 35 compound _ _ 35 activists _ NOUN NNS _ 36 nsubj _ _ 36 said _ VERB VBD _ 0 root _ _ 37 . _ PUNCT . _ 36 punct _ _ 1 Police _ NOUN NNS _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 intervene _ VERB VB _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Meanwhile _ ADV RB _ 28 advmod _ _ 2 , _ PUNCT , _ 28 punct _ _ 3 as _ SCONJ IN _ 20 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 first _ ADJ JJ _ 20 nsubj _ _ 6 of _ ADP IN _ 11 case _ _ 7 more _ ADJ JJR _ 9 advmod _ _ 8 than _ ADP IN _ 7 mwe _ _ 9 1,300 _ NUM CD _ 11 nummod _ _ 10 East _ NOUN NNS _ 11 compound _ _ 11 Germans _ NOUN NNS _ 5 nmod _ _ 12 trying _ VERB VBG _ 11 acl _ _ 13 to _ PART TO _ 14 mark _ _ 14 flee _ VERB VB _ 12 xcomp _ _ 15 to _ ADP TO _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 West _ PROPN NNP _ 14 nmod _ _ 18 through _ ADP IN _ 19 case _ _ 19 Poland _ PROPN NNP _ 14 nmod _ _ 20 renounced _ VERB VBD _ 28 advcl _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 citizenship _ NOUN NN _ 20 dobj _ _ 23 , _ PUNCT , _ 28 punct _ _ 24 a _ DET DT _ 27 det _ _ 25 West _ ADJ JJ _ 26 amod _ _ 26 German _ ADJ JJ _ 27 amod _ _ 27 newspaper _ NOUN NN _ 28 nsubj _ _ 28 reported _ VERB VBD _ 0 root _ _ 29 that _ SCONJ IN _ 33 mark _ _ 30 regional _ ADJ JJ _ 32 amod _ _ 31 Communist _ ADJ JJ _ 32 amod _ _ 32 officials _ NOUN NNS _ 33 nsubj _ _ 33 demanded _ VERB VBD _ 28 ccomp _ _ 34 the _ DET DT _ 35 det _ _ 35 dismissal _ NOUN NN _ 33 dobj _ _ 36 of _ ADP IN _ 39 case _ _ 37 hard-line _ ADJ JJ _ 39 amod _ _ 38 leader _ NOUN NN _ 39 compound _ _ 39 Honecker _ PROPN NNP _ 35 nmod _ _ 40 . _ PUNCT . _ 28 punct _ _ 1 Secretary _ PROPN NNP _ 4 dep _ _ 2 of _ ADP IN _ 3 case _ _ 3 State _ PROPN NNP _ 1 nmod _ _ 4 Baker _ PROPN NNP _ 12 nsubj _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 in _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 foreign _ ADJ JJ _ 10 amod _ _ 9 policy _ NOUN NN _ 10 compound _ _ 10 speech _ NOUN NN _ 12 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 called _ VERB VBD _ 0 root _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 reunification _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 Germany _ PROPN NNP _ 15 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 saying _ VERB VBG _ 12 xcomp _ _ 20 it _ PRON PRP _ 25 nsubj _ _ 21 was _ VERB VBD _ 25 cop _ _ 22 the _ DET DT _ 25 det _ _ 23 `` _ PUNCT `` _ 25 punct _ _ 24 legitimate _ ADJ JJ _ 25 amod _ _ 25 right _ NOUN NN _ 19 ccomp _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 of _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 German _ ADJ JJ _ 30 amod _ _ 30 people _ NOUN NNS _ 25 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 Gorbachev _ PROPN NNP _ 2 nsubj _ _ 2 blamed _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Soviet _ PROPN NNP _ 5 compound _ _ 5 Union _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 press _ NOUN NN _ 2 dobj _ _ 8 for _ SCONJ IN _ 9 mark _ _ 9 contributing _ VERB VBG _ 2 advcl _ _ 10 to _ ADP TO _ 15 case _ _ 11 the _ DET DT _ 12 det _ _ 12 nation _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 mounting _ VERB VBG _ 15 amod _ _ 15 problems _ NOUN NNS _ 9 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 meeting _ NOUN NN _ 9 nmod _ _ 4 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 Kremlin _ PROPN NNP _ 8 compound _ _ 8 leader _ NOUN NN _ 9 nsubj _ _ 9 complained _ VERB VBD _ 0 root _ _ 10 about _ ADP IN _ 12 case _ _ 11 recent _ ADJ JJ _ 12 amod _ _ 12 articles _ NOUN NNS _ 9 nmod _ _ 13 that _ PRON WDT _ 14 nsubj _ _ 14 raised _ VERB VBD _ 12 acl:relcl _ _ 15 the _ DET DT _ 16 det _ _ 16 possiblity _ NOUN NN _ 14 dobj _ _ 17 of _ ADP IN _ 19 case _ _ 18 civil _ ADJ JJ _ 19 amod _ _ 19 unrest _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 and _ CONJ CC _ 9 cc _ _ 22 accused _ VERB VBD _ 9 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 media _ NOUN NNS _ 22 dobj _ _ 25 of _ SCONJ IN _ 26 mark _ _ 26 fueling _ VERB VBG _ 24 acl _ _ 27 panic _ NOUN NN _ 26 dobj _ _ 28 buying _ VERB VBG _ 27 amod _ _ 29 of _ ADP IN _ 30 case _ _ 30 goods _ NOUN NNS _ 27 nmod _ _ 31 by _ SCONJ IN _ 32 mark _ _ 32 publishing _ VERB VBG _ 26 advcl _ _ 33 stories _ NOUN NNS _ 32 dobj _ _ 34 about _ ADP IN _ 36 case _ _ 35 impending _ VERB VBG _ 36 amod _ _ 36 shortages _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 9 punct _ _ 1 House-Senate _ ADJ JJ _ 2 amod _ _ 2 conferees _ NOUN NNS _ 3 nsubj _ _ 3 approved _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 permanent _ ADJ JJ _ 7 amod _ _ 6 smoking _ NOUN NN _ 7 compound _ _ 7 ban _ NOUN NN _ 3 dobj _ _ 8 on _ ADP IN _ 11 case _ _ 9 domestic _ ADJ JJ _ 11 amod _ _ 10 airline _ NOUN NN _ 11 compound _ _ 11 routes _ NOUN NNS _ 7 nmod _ _ 12 within _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 continental _ ADJ JJ _ 15 amod _ _ 15 U.S. _ PROPN NNP _ 11 nmod _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 on _ ADP IN _ 18 case _ _ 18 flights _ NOUN NNS _ 11 conj _ _ 19 of _ ADP IN _ 23 case _ _ 20 less _ ADJ JJR _ 22 advmod _ _ 21 than _ ADP IN _ 20 mwe _ _ 22 six _ NUM CD _ 23 nummod _ _ 23 hours _ NOUN NNS _ 18 nmod _ _ 24 to _ ADP TO _ 25 case _ _ 25 Alaska _ PROPN NNP _ 18 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Hawaii _ PROPN NNP _ 25 conj _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 curbs _ NOUN NNS _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 cover _ VERB VB _ 0 root _ _ 5 all _ DET DT _ 4 dobj _ _ 6 but _ CONJ CC _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 small _ ADJ JJ _ 9 amod _ _ 9 percentage _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 flights _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 and _ CONJ CC _ 4 cc _ _ 14 represent _ VERB VB _ 4 conj _ _ 15 an _ DET DT _ 16 det _ _ 16 expansion _ NOUN NN _ 14 dobj _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 current _ ADJ JJ _ 20 amod _ _ 20 ban _ NOUN NN _ 16 nmod _ _ 21 on _ ADP IN _ 22 case _ _ 22 flights _ NOUN NNS _ 20 nmod _ _ 23 of _ ADP IN _ 27 case _ _ 24 less _ ADJ JJR _ 26 advmod _ _ 25 than _ ADP IN _ 24 mwe _ _ 26 two _ NUM CD _ 27 nummod _ _ 27 hours _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 E. _ PROPN NNP _ 3 compound _ _ 2 Robert _ PROPN NNP _ 3 compound _ _ 3 Wallach _ PROPN NNP _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 sentenced _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 U.S. _ PROPN NNP _ 9 compound _ _ 9 judge _ NOUN NN _ 5 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 New _ PROPN NNP _ 12 compound _ _ 12 York _ PROPN NNP _ 9 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 six _ NUM CD _ 15 nummod _ _ 15 years _ NOUN NNS _ 5 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 prison _ NOUN NN _ 15 nmod _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 fined _ VERB VBN _ 5 conj _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 250,000 _ NUM CD _ 19 dobj _ _ 22 for _ ADP IN _ 25 case _ _ 23 his _ PRON PRP$ _ 25 nmod:poss _ _ 24 racketeering _ NOUN NN _ 25 compound _ _ 25 conviction _ NOUN NN _ 19 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Wedtech _ PROPN NNP _ 29 compound _ _ 29 scandal _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Wallach _ PROPN NNP _ 11 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 an _ DET DT _ 4 det _ _ 4 associate _ NOUN NN _ 1 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 ex-Attorney _ PROPN NNP _ 8 compound _ _ 7 General _ PROPN NNP _ 8 compound _ _ 8 Meese _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 was _ AUX VBD _ 11 auxpass _ _ 11 found _ VERB VBN _ 0 root _ _ 12 guilty _ ADJ JJ _ 11 xcomp _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 11 nmod _ _ 15 of _ SCONJ IN _ 16 mark _ _ 16 taking _ VERB VBG _ 11 advcl _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 425,000 _ NUM CD _ 16 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 illegal _ ADJ JJ _ 21 amod _ _ 21 payoffs _ NOUN NNS _ 18 nmod _ _ 22 from _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 now-defunct _ ADJ JJ _ 26 amod _ _ 25 defense _ NOUN NN _ 26 compound _ _ 26 contractor _ NOUN NN _ 16 nmod _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 NASA _ PROPN NNP _ 2 nsubj _ _ 2 resumed _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 countdown _ NOUN NN _ 2 dobj _ _ 5 for _ ADP IN _ 8 case _ _ 6 today _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 launch _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 space _ NOUN NN _ 13 compound _ _ 12 shuttle _ NOUN NN _ 13 compound _ _ 13 Atlantis _ PROPN NNP _ 8 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 and _ CONJ CC _ 2 cc _ _ 16 a _ DET DT _ 19 det _ _ 17 federal _ ADJ JJ _ 19 amod _ _ 18 appeals _ NOUN NNS _ 19 compound _ _ 19 court _ NOUN NN _ 22 nsubj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Washington _ PROPN NNP _ 19 nmod _ _ 22 dismissed _ VERB VBD _ 2 conj _ _ 23 a _ DET DT _ 24 det _ _ 24 lawsuit _ NOUN NN _ 22 dobj _ _ 25 by _ ADP IN _ 27 case _ _ 26 anti-nuclear _ ADJ JJ _ 27 amod _ _ 27 groups _ NOUN NNS _ 24 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 delay _ VERB VB _ 24 acl _ _ 30 the _ DET DT _ 31 det _ _ 31 flight _ NOUN NN _ 29 dobj _ _ 32 because _ SCONJ IN _ 38 mark _ _ 33 the _ DET DT _ 37 det _ _ 34 plutonium-powered _ ADJ JJ _ 37 amod _ _ 35 Galileo _ PROPN NNP _ 37 compound _ _ 36 space _ NOUN NN _ 37 compound _ _ 37 probe _ NOUN NN _ 38 nsubj _ _ 38 was _ VERB VBD _ 29 advcl _ _ 39 aboard _ ADV RB _ 38 advmod _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 space _ NOUN NN _ 3 compound _ _ 3 agency _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 did _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 expect _ VERB VB _ 4 ccomp _ _ 9 weather _ NOUN NN _ 8 dobj _ _ 10 or _ CONJ CC _ 9 cc _ _ 11 protesters _ NOUN NNS _ 9 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 block _ VERB VB _ 8 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 liftoff _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 preparing _ VERB VBG _ 21 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 extend _ VERB VB _ 5 xcomp _ _ 8 a _ DET DT _ 9 det _ _ 9 ban _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 12 case _ _ 11 federal _ ADJ JJ _ 12 amod _ _ 12 financing _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 research _ NOUN NN _ 12 nmod _ _ 15 using _ VERB VBG _ 14 acl _ _ 16 fetal _ ADJ JJ _ 17 amod _ _ 17 tissue _ NOUN NN _ 15 dobj _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 government _ NOUN NN _ 20 compound _ _ 20 sources _ NOUN NNS _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 temporary _ ADJ JJ _ 3 amod _ _ 3 prohibition _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 imposed _ VERB VBN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 March _ PROPN NNP _ 5 nmod _ _ 8 1988 _ NUM CD _ 7 nummod _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 anti-abortion _ ADJ JJ _ 3 amod _ _ 3 groups _ NOUN NNS _ 5 nsubjpass _ _ 4 are _ AUX VBP _ 5 auxpass _ _ 5 opposed _ VERB VBN _ 12 advcl _ _ 6 to _ ADP TO _ 8 case _ _ 7 such _ ADJ JJ _ 8 amod _ _ 8 research _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 scientists _ NOUN NNS _ 12 nsubj _ _ 11 have _ AUX VBP _ 12 aux _ _ 12 said _ VERB VBD _ 0 root _ _ 13 transplanting _ VERB VBG _ 18 csubj _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 tissue _ NOUN NN _ 13 dobj _ _ 16 could _ AUX MD _ 18 aux _ _ 17 be _ VERB VB _ 18 cop _ _ 18 effective _ ADJ JJ _ 12 ccomp _ _ 19 in _ SCONJ IN _ 20 mark _ _ 20 treating _ VERB VBG _ 18 advcl _ _ 21 diabetes _ NOUN NN _ 20 dobj _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 Delegates _ NOUN NNS _ 5 nsubj _ _ 2 from _ ADP IN _ 4 case _ _ 3 91 _ NUM CD _ 4 nummod _ _ 4 nations _ NOUN NNS _ 1 nmod _ _ 5 endorsed _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 ban _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 11 case _ _ 9 world _ NOUN NN _ 11 compound _ _ 10 ivory _ NOUN NN _ 11 compound _ _ 11 trade _ NOUN NN _ 7 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 an _ DET DT _ 14 det _ _ 14 attempt _ NOUN NN _ 5 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 rescue _ VERB VB _ 14 acl _ _ 17 the _ DET DT _ 19 det _ _ 18 endangered _ VERB VBN _ 19 amod _ _ 19 elephant _ NOUN NN _ 16 dobj _ _ 20 from _ ADP IN _ 21 case _ _ 21 extinction _ NOUN NN _ 16 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Five _ NUM CD _ 3 nummod _ _ 2 African _ ADJ JJ _ 3 amod _ _ 3 nations _ NOUN NNS _ 7 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 said _ VERB VBD _ 0 root _ _ 8 they _ PRON PRP _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 continue _ VERB VB _ 7 ccomp _ _ 11 selling _ VERB VBG _ 10 xcomp _ _ 12 the _ DET DT _ 14 det _ _ 13 valuable _ ADJ JJ _ 14 amod _ _ 14 tusks _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Mubarak _ PROPN NNP _ 2 nsubj _ _ 2 held _ VERB VBD _ 0 root _ _ 3 reconciliation _ NOUN NN _ 4 compound _ _ 4 talks _ NOUN NNS _ 2 dobj _ _ 5 with _ ADP IN _ 6 case _ _ 6 Gadhafi _ PROPN NNP _ 2 nmod _ _ 7 at _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Egyptian _ ADJ JJ _ 10 amod _ _ 10 resort _ NOUN NN _ 2 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 Mersa _ PROPN NNP _ 13 compound _ _ 13 Metruh _ PROPN NNP _ 10 nmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 8 nsubj _ _ 2 was _ VERB VBD _ 8 cop _ _ 3 the _ DET DT _ 5 det _ _ 4 Libyan _ ADJ JJ _ 5 amod _ _ 5 leader _ NOUN NN _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 trip _ NOUN NN _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 Egypt _ PROPN NNP _ 8 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 16 _ NUM CD _ 13 nummod _ _ 13 years _ NOUN NNS _ 8 nmod _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 announced _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 reduction _ NOUN NN _ 2 dobj _ _ 5 in _ ADP IN _ 6 case _ _ 6 formalities _ NOUN NNS _ 4 nmod _ _ 7 for _ ADP IN _ 8 case _ _ 8 travel _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 but _ CONJ CC _ 2 cc _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 show _ VERB VB _ 2 conj _ _ 14 any _ DET DT _ 16 det _ _ 15 real _ ADJ JJ _ 16 amod _ _ 16 signs _ NOUN NNS _ 13 dobj _ _ 17 of _ SCONJ IN _ 18 mark _ _ 18 resuming _ VERB VBG _ 16 acl _ _ 19 full _ ADJ JJ _ 21 amod _ _ 20 diplomatic _ ADJ JJ _ 21 amod _ _ 21 ties _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Egyptian _ ADJ JJ _ 3 amod _ _ 3 president _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 visit _ VERB VB _ 4 ccomp _ _ 8 Libya _ PROPN NNP _ 7 dobj _ _ 9 today _ NOUN NN _ 7 nmod:tmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 resume _ VERB VB _ 7 advcl _ _ 12 the _ DET DT _ 13 det _ _ 13 talks _ NOUN NNS _ 11 dobj _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Seoul _ PROPN NNP _ 4 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Pyongyang _ PROPN NNP _ 1 conj _ _ 4 reached _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 tentative _ ADJ JJ _ 7 amod _ _ 7 agreement _ NOUN NN _ 4 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 allow _ VERB VB _ 7 acl _ _ 10 visits _ NOUN NNS _ 9 dobj _ _ 11 between _ ADP IN _ 12 case _ _ 12 families _ NOUN NNS _ 10 nmod _ _ 13 on _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 divided _ VERB VBN _ 17 amod _ _ 16 Korean _ ADJ JJ _ 17 amod _ _ 17 peninsula _ NOUN NN _ 9 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Such _ ADJ JJ _ 3 amod _ _ 2 family _ NOUN NN _ 3 compound _ _ 3 reunions _ NOUN NNS _ 7 nsubj _ _ 4 would _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 second _ ADJ JJ _ 0 root _ _ 8 since _ ADP IN _ 9 case _ _ 9 1945 _ NUM CD _ 7 nmod _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 Differences _ NOUN NNS _ 2 nsubj _ _ 2 remained _ VERB VBD _ 0 root _ _ 3 between _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 North _ ADJ JJ _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 South _ ADJ JJ _ 9 amod _ _ 8 Korean _ ADJ JJ _ 9 amod _ _ 9 governments _ NOUN NNS _ 5 conj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 however _ ADV RB _ 2 advmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 over _ ADP IN _ 14 case _ _ 14 conditions _ NOUN NNS _ 2 nmod _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 exchanges _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Freed _ VERB VBN _ 3 amod _ _ 2 black _ ADJ JJ _ 3 amod _ _ 3 nationalists _ NOUN NNS _ 4 nsubj _ _ 4 resumed _ VERB VBD _ 0 root _ _ 5 political _ ADJ JJ _ 6 amod _ _ 6 activity _ NOUN NN _ 4 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 South _ PROPN NNP _ 9 compound _ _ 9 Africa _ PROPN NNP _ 4 nmod _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 vowed _ VERB VBD _ 4 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 fight _ VERB VB _ 11 xcomp _ _ 14 against _ ADP IN _ 15 case _ _ 15 apartheid _ NOUN NN _ 13 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 raising _ VERB VBG _ 4 advcl _ _ 18 fears _ NOUN NNS _ 17 dobj _ _ 19 of _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 possible _ ADJ JJ _ 23 amod _ _ 22 white _ ADJ JJ _ 23 amod _ _ 23 backlash _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 nation _ NOUN NN _ 7 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 main _ ADJ JJ _ 7 amod _ _ 5 white _ ADJ JJ _ 7 amod _ _ 6 opposition _ NOUN NN _ 7 compound _ _ 7 party _ NOUN NN _ 8 nsubj _ _ 8 warned _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 20 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 government _ NOUN NN _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 release _ NOUN NN _ 20 nsubj _ _ 14 Sunday _ PROPN NNP _ 13 nmod:tmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 eight _ NUM CD _ 19 nummod _ _ 17 black _ ADJ JJ _ 19 amod _ _ 18 political _ ADJ JJ _ 19 amod _ _ 19 prisoners _ NOUN NNS _ 13 nmod _ _ 20 risked _ VERB VBD _ 8 ccomp _ _ 21 bringing _ VERB VBG _ 20 xcomp _ _ 22 chaos _ NOUN NN _ 21 dobj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 eventual _ ADJ JJ _ 27 amod _ _ 25 black _ ADJ JJ _ 27 amod _ _ 26 Marxist _ ADJ JJ _ 27 amod _ _ 27 rule _ NOUN NN _ 22 conj _ _ 28 to _ ADP TO _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 nation _ NOUN NN _ 21 nmod _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 White _ PROPN NNP _ 3 compound _ _ 3 House _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Bush _ PROPN NNP _ 9 nsubjpass _ _ 6 is _ AUX VBZ _ 9 auxpass _ _ 7 `` _ PUNCT `` _ 9 punct _ _ 8 fully _ ADV RB _ 9 advmod _ _ 9 satisfied _ VERB VBN _ 4 ccomp _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 with _ ADP IN _ 14 case _ _ 12 CIA _ PROPN NNP _ 14 compound _ _ 13 Director _ PROPN NNP _ 14 compound _ _ 14 Webster _ PROPN NNP _ 9 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 the _ DET DT _ 18 det _ _ 17 intelligence _ NOUN NN _ 18 compound _ _ 18 agency _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 performance _ NOUN NN _ 14 conj _ _ 21 during _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 26 det _ _ 23 Oct. _ PROPN NNP _ 26 compound _ _ 24 3 _ NUM CD _ 26 nummod _ _ 25 failed _ VERB VBN _ 26 amod _ _ 26 coup _ NOUN NN _ 20 nmod _ _ 27 in _ ADP IN _ 28 case _ _ 28 Panama _ PROPN NNP _ 26 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Washington _ PROPN NNP _ 3 compound _ _ 3 Post _ PROPN NNP _ 4 nsubj _ _ 4 reported _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 11 mark _ _ 6 unidentified _ ADJ JJ _ 9 amod _ _ 7 senior _ ADJ JJ _ 9 amod _ _ 8 administration _ NOUN NN _ 9 compound _ _ 9 officials _ NOUN NNS _ 11 nsubjpass _ _ 10 were _ AUX VBD _ 11 auxpass _ _ 11 frustrated _ VERB VBN _ 4 ccomp _ _ 12 with _ ADP IN _ 16 case _ _ 13 Webster _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 low-profile _ ADJ JJ _ 16 amod _ _ 16 activities _ NOUN NNS _ 11 nmod _ _ 17 during _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 insurrection _ NOUN NN _ 16 nmod _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 wanted _ VERB VBD _ 11 conj _ _ 22 him _ PRON PRP _ 23 nsubj _ _ 23 replaced _ VERB VBN _ 21 dep _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Poland _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 legislature _ NOUN NN _ 4 nsubj _ _ 4 approved _ VERB VBD _ 0 root _ _ 5 limits _ NOUN NNS _ 4 dobj _ _ 6 on _ ADP IN _ 9 case _ _ 7 automatic _ ADJ JJ _ 9 amod _ _ 8 wage _ NOUN NN _ 9 compound _ _ 9 increases _ NOUN NNS _ 5 nmod _ _ 10 without _ ADP IN _ 12 case _ _ 11 special _ ADJ JJ _ 12 amod _ _ 12 provisions _ NOUN NNS _ 4 nmod _ _ 13 for _ ADP IN _ 16 case _ _ 14 food _ NOUN NN _ 16 compound _ _ 15 price _ NOUN NN _ 16 compound _ _ 16 rises _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 vote _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 considered _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 test _ NOUN NN _ 4 xcomp _ _ 7 of _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Solidarity-led _ ADJ JJ _ 10 amod _ _ 10 government _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 resolve _ NOUN NN _ 6 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 proceed _ VERB VB _ 12 acl _ _ 15 with _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 harsh _ ADJ JJ _ 19 amod _ _ 18 economic-restructuring _ ADJ JJ _ 19 amod _ _ 19 program _ NOUN NN _ 14 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Norway _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 King _ PROPN NNP _ 5 compound _ _ 4 Olav _ PROPN NNP _ 5 compound _ _ 5 V _ PROPN NNP _ 6 nsubj _ _ 6 installed _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 10 det _ _ 8 three-party _ ADJ JJ _ 10 amod _ _ 9 non-Socialist _ ADJ JJ _ 10 amod _ _ 10 government _ NOUN NN _ 6 dobj _ _ 11 as _ SCONJ IN _ 19 mark _ _ 12 Gro _ PROPN NNP _ 14 compound _ _ 13 Harlem _ PROPN NNP _ 14 compound _ _ 14 Brundtland _ PROPN NNP _ 18 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 three-year-old _ ADJ JJ _ 18 amod _ _ 17 Labor _ PROPN NNP _ 18 compound _ _ 18 regime _ NOUN NN _ 19 nsubj _ _ 19 relinquished _ VERB VBD _ 6 advcl _ _ 20 power _ NOUN NN _ 19 dobj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 19-member _ ADJ JJ _ 3 amod _ _ 3 cabinet _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 led _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 10 case _ _ 7 Prime _ PROPN NNP _ 10 compound _ _ 8 Minister _ PROPN NNP _ 10 compound _ _ 9 Jan _ PROPN NNP _ 10 compound _ _ 10 Syse _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 acknowledged _ VERB VBD _ 10 acl:relcl _ _ 14 a _ DET DT _ 17 det _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 difficult _ ADJ JJ _ 17 amod _ _ 17 situation _ NOUN NN _ 13 dobj _ _ 18 '' _ PUNCT '' _ 17 punct _ _ 19 since _ SCONJ IN _ 22 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 coalition _ NOUN NN _ 22 nsubj _ _ 22 controls _ VERB VBZ _ 13 advcl _ _ 23 only _ ADV RB _ 25 advmod _ _ 24 62 _ NUM CD _ 25 nummod _ _ 25 seats _ NOUN NNS _ 22 dobj _ _ 26 in _ ADP IN _ 30 case _ _ 27 Oslo _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 165-member _ ADJ JJ _ 30 amod _ _ 30 legislature _ NOUN NN _ 25 nmod _ _ 31 . _ PUNCT . _ 5 punct _ _ 1 El _ PROPN NNP _ 2 compound _ _ 2 Salvador _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 government _ NOUN NN _ 5 nsubj _ _ 5 opened _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 round _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 talks _ NOUN NNS _ 8 nmod _ _ 11 with _ ADP IN _ 16 case _ _ 12 the _ DET DT _ 13 det _ _ 13 country _ NOUN NN _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 leftist _ ADJ JJ _ 16 amod _ _ 16 rebels _ NOUN NNS _ 10 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 an _ DET DT _ 19 det _ _ 19 effort _ NOUN NN _ 5 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 end _ VERB VB _ 19 acl _ _ 22 a _ DET DT _ 25 det _ _ 23 decade-long _ ADJ JJ _ 25 amod _ _ 24 civil _ ADJ JJ _ 25 amod _ _ 25 war _ NOUN NN _ 21 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 guerrillas _ NOUN NNS _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 present _ VERB VB _ 3 ccomp _ _ 8 a _ DET DT _ 10 det _ _ 9 cease-fire _ NOUN NN _ 10 compound _ _ 10 proposal _ NOUN NN _ 7 dobj _ _ 11 during _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 negotiations _ NOUN NNS _ 7 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 Costa _ PROPN NNP _ 16 compound _ _ 16 Rica _ PROPN NNP _ 13 nmod _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 includes _ VERB VBZ _ 7 dep _ _ 19 constitutional _ ADJ JJ _ 22 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 economic _ ADJ JJ _ 19 conj _ _ 22 changes _ NOUN NNS _ 18 dobj _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 State _ PROPN NNP _ 3 compound _ _ 3 Department _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 there _ PRON EX _ 6 expl _ _ 6 was _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 possibility _ NOUN NN _ 6 nsubj _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 some _ DET DT _ 14 det _ _ 13 Nicaraguan _ ADJ JJ _ 14 amod _ _ 14 rebels _ NOUN NNS _ 16 nsubj _ _ 15 were _ AUX VBD _ 16 aux _ _ 16 selling _ VERB VBG _ 9 ccomp _ _ 17 their _ PRON PRP$ _ 19 nmod:poss _ _ 18 U.S.-supplied _ ADJ JJ _ 19 amod _ _ 19 arms _ NOUN NNS _ 16 dobj _ _ 20 to _ ADP TO _ 22 case _ _ 21 Salvadoran _ ADJ JJ _ 22 amod _ _ 22 guerrillas _ NOUN NNS _ 16 nmod _ _ 23 , _ PUNCT , _ 4 punct _ _ 24 but _ CONJ CC _ 4 cc _ _ 25 insisted _ VERB VBD _ 4 conj _ _ 26 it _ PRON PRP _ 31 nsubj _ _ 27 was _ VERB VBD _ 31 cop _ _ 28 n't _ PART RB _ 31 neg _ _ 29 an _ DET DT _ 31 det _ _ 30 organized _ VERB VBN _ 31 amod _ _ 31 effort _ NOUN NN _ 25 ccomp _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Separately _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 Secretary _ PROPN NNP _ 6 dep _ _ 4 of _ ADP IN _ 5 case _ _ 5 State _ PROPN NNP _ 3 nmod _ _ 6 Baker _ PROPN NNP _ 7 nsubj _ _ 7 complained _ VERB VBD _ 0 root _ _ 8 about _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 U.N. _ PROPN NNP _ 11 compound _ _ 11 aide _ NOUN NN _ 7 nmod _ _ 12 who _ PRON WP _ 15 nsubj _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 week _ NOUN NN _ 15 dep _ _ 15 told _ VERB VBD _ 11 acl:relcl _ _ 16 the _ DET DT _ 17 det _ _ 17 Contras _ NOUN NNS _ 15 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 disband _ VERB VB _ 15 xcomp _ _ 20 as _ ADP IN _ 21 case _ _ 21 part _ NOUN NN _ 15 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 a _ DET DT _ 26 det _ _ 24 regional _ ADJ JJ _ 26 amod _ _ 25 peace _ NOUN NN _ 26 compound _ _ 26 accord _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Died _ VERB VBN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Cornel _ PROPN NNP _ 4 compound _ _ 4 Wilde _ PROPN NNP _ 1 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 74 _ NUM CD _ 4 amod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 actor _ NOUN NN _ 4 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 director _ NOUN NN _ 8 conj _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 in _ ADP IN _ 14 case _ _ 13 Los _ PROPN NNP _ 14 compound _ _ 14 Angeles _ PROPN NNP _ 1 dep _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 of _ ADP IN _ 17 case _ _ 17 leukemia _ NOUN NN _ 1 dep _ _ 18 ... _ PUNCT : _ 1 punct _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 Danilo _ PROPN NNP _ 2 compound _ _ 2 Kis _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 54 _ NUM CD _ 2 amod _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Yugoslav-born _ ADJ JJ _ 7 amod _ _ 7 novelist _ NOUN NN _ 2 appos _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 essayist _ NOUN NN _ 7 conj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 Sunday _ PROPN NNP _ 2 dep _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 in _ ADP IN _ 14 case _ _ 14 Paris _ PROPN NNP _ 2 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 of _ ADP IN _ 17 case _ _ 17 cancer _ NOUN NN _ 2 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 British _ ADJ JJ _ 4 amod _ _ 2 retail _ ADJ JJ _ 4 amod _ _ 3 sales _ NOUN NNS _ 4 compound _ _ 4 volume _ NOUN NN _ 5 nsubj _ _ 5 rose _ VERB VBD _ 29 ccomp _ _ 6 a _ DET DT _ 9 det _ _ 7 provisional _ ADJ JJ _ 9 amod _ _ 8 0.4 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 5 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 5 nmod _ _ 12 from _ ADP IN _ 13 case _ _ 13 August _ PROPN NNP _ 5 nmod _ _ 14 and _ CONJ CC _ 5 cc _ _ 15 was _ VERB VBD _ 20 cop _ _ 16 up _ ADV RB _ 20 advmod _ _ 17 2.2 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 nmod:npmod _ _ 19 from _ ADP IN _ 20 case _ _ 20 September _ PROPN NNP _ 5 conj _ _ 21 1988 _ NUM CD _ 20 nummod _ _ 22 , _ PUNCT , _ 29 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 Department _ PROPN NNP _ 29 nsubj _ _ 25 of _ ADP IN _ 26 case _ _ 26 Trade _ PROPN NNP _ 24 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 Industry _ PROPN NNP _ 26 conj _ _ 29 said _ VERB VBD _ 0 root _ _ 30 . _ PUNCT . _ 29 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 three _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 12 nmod _ _ 5 ended _ VERB VBN _ 4 acl _ _ 6 in _ ADP IN _ 7 case _ _ 7 September _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 retail _ ADJ JJ _ 11 amod _ _ 10 sales _ NOUN NNS _ 11 compound _ _ 11 volume _ NOUN NN _ 12 nsubj _ _ 12 was _ VERB VBD _ 0 root _ _ 13 down _ ADV RB _ 21 advmod _ _ 14 0.5 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 nmod:npmod _ _ 16 from _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 previous _ ADJ JJ _ 20 amod _ _ 19 three _ NUM CD _ 20 nummod _ _ 20 months _ NOUN NNS _ 13 nmod _ _ 21 and _ CONJ CC _ 12 advmod _ _ 22 up _ ADV RB _ 21 advmod _ _ 23 1.2 _ NUM CD _ 24 nummod _ _ 24 % _ SYM NN _ 22 nmod:npmod _ _ 25 from _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 27 det _ _ 27 year _ NOUN NN _ 28 nmod:npmod _ _ 28 earlier _ ADV RBR _ 22 advcl _ _ 29 . _ PUNCT . _ 12 punct _ _ 1 Chicago _ PROPN NNP _ 4 compound _ _ 2 investor _ NOUN NN _ 4 compound _ _ 3 William _ PROPN NNP _ 4 compound _ _ 4 Farley _ PROPN NNP _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 sell _ VERB VB _ 5 xcomp _ _ 8 three _ NUM CD _ 9 nummod _ _ 9 divisions _ NOUN NNS _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 Cluett _ PROPN NNP _ 12 compound _ _ 12 Peabody _ PROPN NNP _ 9 nmod _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Co. _ PROPN NNP _ 12 conj _ _ 15 for _ ADP IN _ 17 case _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 $ _ SYM $ _ 7 nmod _ _ 18 600 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 to _ ADP TO _ 22 case _ _ 21 Bidermann _ PROPN NNP _ 22 compound _ _ 22 S.A. _ PROPN NNP _ 7 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 a _ DET DT _ 28 det _ _ 25 closely _ ADV RB _ 26 advmod _ _ 26 held _ VERB VBN _ 28 amod _ _ 27 clothing _ NOUN NN _ 28 compound _ _ 28 maker _ NOUN NN _ 22 appos _ _ 29 based _ VERB VBN _ 28 acl _ _ 30 in _ ADP IN _ 31 case _ _ 31 Paris _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Shortly _ ADV RB _ 3 advmod _ _ 2 after _ SCONJ IN _ 3 mark _ _ 3 completing _ VERB VBG _ 25 advcl _ _ 4 the _ DET DT _ 8 det _ _ 5 $ _ SYM $ _ 8 amod _ _ 6 1.56 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 acquisition _ NOUN NN _ 3 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 West _ PROPN NNP _ 12 compound _ _ 11 Point-Pepperell _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 8 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 April _ PROPN NNP _ 3 nmod _ _ 15 , _ PUNCT , _ 25 punct _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Farley _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 holding _ VERB VBG _ 20 amod _ _ 20 company _ NOUN NN _ 25 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Farley _ PROPN NNP _ 23 compound _ _ 23 Inc. _ PROPN NNP _ 20 appos _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 it _ PRON PRP _ 28 nsubj _ _ 27 was _ AUX VBD _ 28 aux _ _ 28 considering _ VERB VBG _ 25 ccomp _ _ 29 the _ DET DT _ 30 det _ _ 30 sale _ NOUN NN _ 28 dobj _ _ 31 of _ ADP IN _ 32 case _ _ 32 Cluett _ PROPN NNP _ 30 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 a _ DET DT _ 37 det _ _ 35 leading _ ADJ JJ _ 37 amod _ _ 36 shirt _ NOUN NN _ 37 compound _ _ 37 maker _ NOUN NN _ 32 appos _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 one _ NUM CD _ 37 conj _ _ 40 of _ ADP IN _ 45 case _ _ 41 West _ PROPN NNP _ 42 compound _ _ 42 Point-Pepperell _ PROPN NNP _ 45 nmod:poss _ _ 43 's _ PART POS _ 42 case _ _ 44 biggest _ ADJ JJS _ 45 amod _ _ 45 units _ NOUN NNS _ 39 nmod _ _ 46 . _ PUNCT . _ 25 punct _ _ 1 Included _ VERB VBN _ 0 root _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 sale _ NOUN NN _ 1 nmod _ _ 5 are _ AUX VBP _ 1 auxpass _ _ 6 Cluett _ PROPN NNP _ 7 compound _ _ 7 units _ NOUN NNS _ 1 nsubjpass _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 make _ VERB VBP _ 7 acl:relcl _ _ 10 men _ NOUN NNS _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 shirts _ NOUN NNS _ 9 dobj _ _ 13 under _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 Arrow _ PROPN NNP _ 16 compound _ _ 16 name _ NOUN NN _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 socks _ NOUN NNS _ 9 conj _ _ 19 under _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 Gold _ PROPN NNP _ 23 compound _ _ 22 Toe _ PROPN NNP _ 23 compound _ _ 23 name _ NOUN NN _ 18 nmod _ _ 24 and _ CONJ CC _ 9 cc _ _ 25 menswear _ NOUN NN _ 9 conj _ _ 26 through _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Schoeneman _ PROPN NNP _ 29 compound _ _ 29 division _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 companies _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 agreement _ NOUN NN _ 7 nsubj _ _ 6 is _ VERB VBZ _ 7 cop _ _ 7 subject _ ADJ JJ _ 3 ccomp _ _ 8 to _ ADP TO _ 11 case _ _ 9 Bidermann _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 receipt _ NOUN NN _ 7 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 financing _ NOUN NN _ 11 nmod _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 to _ ADP TO _ 19 case _ _ 16 regulatory _ ADJ JJ _ 19 amod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 other _ ADJ JJ _ 16 conj _ _ 19 approvals _ NOUN NNS _ 11 conj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 sale _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 2 ccomp _ _ 7 to _ PART TO _ 9 mark _ _ 8 be _ AUX VB _ 9 auxpass _ _ 9 concluded _ VERB VBN _ 6 xcomp _ _ 10 by _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 end _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 November _ PROPN NNP _ 12 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Farley _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 sale _ NOUN NN _ 27 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 three _ NUM CD _ 5 nmod _ _ 8 of _ ADP IN _ 13 case _ _ 9 Cluett _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 four _ NUM CD _ 13 nummod _ _ 12 main _ ADJ JJ _ 13 amod _ _ 13 divisions _ NOUN NNS _ 7 nmod _ _ 14 plus _ CONJ CC _ 5 cc _ _ 15 other _ ADJ JJ _ 22 amod _ _ 16 `` _ PUNCT `` _ 22 punct _ _ 17 anticipated _ VERB VBN _ 22 amod _ _ 18 '' _ PUNCT '' _ 22 punct _ _ 19 West _ PROPN NNP _ 22 compound _ _ 20 Point-Pepperell _ PROPN NNP _ 22 compound _ _ 21 asset _ NOUN NN _ 22 compound _ _ 22 sales _ NOUN NNS _ 5 conj _ _ 23 by _ ADP IN _ 24 case _ _ 24 December _ PROPN NNP _ 5 nmod _ _ 25 , _ PUNCT , _ 5 punct _ _ 26 should _ AUX MD _ 27 aux _ _ 27 bring _ VERB VB _ 3 ccomp _ _ 28 in _ ADP RP _ 27 compound:prt _ _ 29 a _ DET DT _ 30 det _ _ 30 total _ NOUN NN _ 27 dobj _ _ 31 of _ ADP IN _ 33 case _ _ 32 about _ ADV RB _ 33 advmod _ _ 33 $ _ SYM $ _ 30 nmod _ _ 34 700 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 elaborate _ VERB VB _ 0 root _ _ 5 on _ ADP IN _ 8 case _ _ 6 other _ ADJ JJ _ 8 amod _ _ 7 asset _ NOUN NN _ 8 compound _ _ 8 sales _ NOUN NNS _ 4 nmod _ _ 9 being _ AUX VBG _ 10 auxpass _ _ 10 considered _ VERB VBN _ 8 acl _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Farley _ PROPN NNP _ 3 nsubj _ _ 3 followed _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 similar _ ADJ JJ _ 6 amod _ _ 6 pattern _ NOUN NN _ 3 dobj _ _ 7 when _ ADV WRB _ 9 advmod _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 acquired _ VERB VBD _ 3 advcl _ _ 10 Northwest _ PROPN NNP _ 12 compound _ _ 11 Industries _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 9 dobj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 then _ ADV RB _ 15 advmod _ _ 15 sold _ VERB VBN _ 9 conj _ _ 16 much _ ADJ JJ _ 15 dobj _ _ 17 of _ ADP IN _ 19 case _ _ 18 its _ PRON PRP$ _ 19 nmod:poss _ _ 19 assets _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 he _ PRON PRP _ 3 nsubj _ _ 3 kept _ VERB VBD _ 0 root _ _ 4 Fruit _ PROPN NNP _ 3 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Loom _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 underwear _ NOUN NN _ 12 compound _ _ 12 maker _ NOUN NN _ 4 appos _ _ 13 that _ ADP IN _ 16 dobj _ _ 14 he _ PRON PRP _ 16 nsubj _ _ 15 still _ ADV RB _ 16 advmod _ _ 16 controls _ VERB VBZ _ 12 acl:relcl _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 serves _ VERB VBZ _ 16 conj _ _ 19 as _ ADP IN _ 20 case _ _ 20 chairman _ NOUN NN _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 chief _ ADJ JJ _ 23 amod _ _ 23 executive _ NOUN NN _ 20 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Cluett _ PROPN NNP _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 an _ DET DT _ 5 det _ _ 4 independent _ ADJ JJ _ 5 amod _ _ 5 company _ NOUN NN _ 0 root _ _ 6 until _ SCONJ IN _ 9 mark _ _ 7 West _ PROPN NNP _ 8 compound _ _ 8 Point-Pepperell _ PROPN NNP _ 9 nsubj _ _ 9 acquired _ VERB VBD _ 5 advcl _ _ 10 it _ PRON PRP _ 9 dobj _ _ 11 for _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 9 nmod _ _ 13 375 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 cash _ NOUN NN _ 12 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 stock _ NOUN NN _ 16 conj _ _ 19 in _ ADP IN _ 20 case _ _ 20 1986 _ NUM CD _ 9 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 fiscal _ ADJ JJ _ 4 amod _ _ 4 year _ NOUN NN _ 12 nmod _ _ 5 ended _ VERB VBN _ 4 acl _ _ 6 Sept. _ PROPN NNP _ 5 nmod:tmod _ _ 7 30 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 1988 _ NUM CD _ 6 nummod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 Cluett _ PROPN NNP _ 12 nsubj _ _ 12 had _ VERB VBD _ 0 root _ _ 13 operating _ NOUN NN _ 14 compound _ _ 14 profit _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 $ _ SYM $ _ 14 nmod _ _ 17 37 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 on _ ADP IN _ 20 case _ _ 20 sales _ NOUN NNS _ 14 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 757 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 Bidermann _ PROPN NNP _ 2 nsubj _ _ 2 sells _ VERB VBZ _ 0 root _ _ 3 clothes _ NOUN NNS _ 2 dobj _ _ 4 under _ ADP IN _ 6 case _ _ 5 various _ ADJ JJ _ 6 amod _ _ 6 labels _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 including _ VERB VBG _ 11 case _ _ 9 Yves _ PROPN NNP _ 11 compound _ _ 10 Saint _ PROPN NNP _ 11 compound _ _ 11 Laurent _ PROPN NNP _ 6 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Bill _ PROPN NNP _ 14 compound _ _ 14 Robinson _ PROPN NNP _ 11 conj _ _ 15 for _ ADP IN _ 16 case _ _ 16 men _ NOUN NNS _ 14 nmod _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 Ralph _ PROPN NNP _ 19 compound _ _ 19 Lauren _ PROPN NNP _ 11 conj _ _ 20 for _ ADP IN _ 21 case _ _ 21 women _ NOUN NNS _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 had _ VERB VBD _ 3 ccomp _ _ 7 sales _ NOUN NNS _ 6 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 400 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 in _ ADP IN _ 13 case _ _ 13 1988 _ NUM CD _ 6 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 7 case _ _ 2 New _ PROPN NNP _ 7 compound _ _ 3 York _ PROPN NNP _ 7 compound _ _ 4 Stock _ PROPN NNP _ 7 compound _ _ 5 Exchange _ PROPN NNP _ 7 compound _ _ 6 composite _ ADJ JJ _ 7 amod _ _ 7 trading _ NOUN NN _ 11 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 West _ PROPN NNP _ 10 compound _ _ 10 Point-Pepperell _ PROPN NNP _ 11 nsubj _ _ 11 fell _ VERB VBD _ 0 root _ _ 12 25 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 11 dobj _ _ 14 to _ ADP TO _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 53.875 _ NUM CD _ 11 nmod _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 Britain _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Blue _ PROPN NNP _ 5 compound _ _ 4 Arrow _ PROPN NNP _ 5 compound _ _ 5 PLC _ PROPN NNP _ 6 nsubj _ _ 6 intends _ VERB VBZ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 change _ VERB VB _ 6 xcomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 name _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 Manpower _ PROPN NNP _ 13 compound _ _ 13 PLC _ PROPN NNP _ 8 nmod _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 write _ VERB VB _ 8 conj _ _ 16 off _ ADP RP _ 15 compound:prt _ _ 17 a _ DET DT _ 18 det _ _ 18 chunk _ NOUN NN _ 15 dobj _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 nearly _ ADV RB _ 22 advmod _ _ 22 $ _ SYM $ _ 18 nmod _ _ 23 1.2 _ NUM CD _ 24 compound _ _ 24 billion _ NUM CD _ 22 nummod _ _ 25 in _ ADP IN _ 27 case _ _ 26 good _ ADJ JJ _ 27 amod _ _ 27 will _ NOUN NN _ 22 nmod _ _ 28 realized _ VERB VBN _ 27 acl _ _ 29 in _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 takeover _ NOUN NN _ 28 nmod _ _ 32 of _ ADP IN _ 35 case _ _ 33 U.S.-based _ ADJ JJ _ 35 amod _ _ 34 Manpower _ PROPN NNP _ 35 compound _ _ 35 Inc _ PROPN NNP _ 31 nmod _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Blue _ PROPN NNP _ 5 compound _ _ 2 Arrow _ PROPN NNP _ 5 compound _ _ 3 Chairman _ PROPN NNP _ 5 compound _ _ 4 Mitchell _ PROPN NNP _ 5 compound _ _ 5 Fromstein _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 an _ DET DT _ 9 det _ _ 9 interview _ NOUN NN _ 6 nmod _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 the _ DET DT _ 13 det _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 steps _ NOUN NNS _ 17 nsubj _ _ 14 may _ AUX MD _ 17 aux _ _ 15 be _ VERB VB _ 17 cop _ _ 16 a _ DET DT _ 17 det _ _ 17 prelude _ NOUN NN _ 6 ccomp _ _ 18 to _ ADP TO _ 19 mark _ _ 19 reincorporating _ VERB VBG _ 17 acl _ _ 20 the _ DET DT _ 21 det _ _ 21 world _ NOUN NN _ 25 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 biggest _ ADJ JJS _ 25 amod _ _ 24 employment-services _ ADJ JJ _ 25 amod _ _ 25 group _ NOUN NN _ 19 dobj _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 U.S. _ PROPN NNP _ 25 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Fromstein _ PROPN NNP _ 3 nsubj _ _ 3 disclosed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 planned _ VERB VBN _ 6 amod _ _ 6 steps _ NOUN NNS _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 expected _ VERB VBN _ 6 acl _ _ 9 within _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 few _ ADJ JJ _ 12 amod _ _ 12 months _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 as _ SCONJ IN _ 17 mark _ _ 15 Blue _ PROPN NNP _ 16 compound _ _ 16 Arrow _ PROPN NNP _ 17 nsubj _ _ 17 posted _ VERB VBD _ 3 advcl _ _ 18 a _ DET DT _ 21 det _ _ 19 2.5 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 21 amod _ _ 21 drop _ NOUN NN _ 17 dobj _ _ 22 in _ ADP IN _ 26 case _ _ 23 its _ PRON PRP$ _ 26 nmod:poss _ _ 24 third-quarter _ ADJ JJ _ 26 amod _ _ 25 pretax _ ADJ JJ _ 26 amod _ _ 26 earnings _ NOUN NNS _ 21 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 name _ NOUN NN _ 3 compound _ _ 3 change _ NOUN NN _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 good _ ADJ JJ _ 7 amod _ _ 6 will _ NOUN NN _ 7 compound _ _ 7 write-off _ NOUN NN _ 3 conj _ _ 8 could _ AUX MD _ 9 aux _ _ 9 help _ VERB VB _ 0 root _ _ 10 solidify _ VERB VB _ 9 ccomp _ _ 11 Blue _ PROPN NNP _ 12 compound _ _ 12 Arrow _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 dominance _ NOUN NN _ 10 dobj _ _ 15 of _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 U.S. _ PROPN NNP _ 19 compound _ _ 18 temporary-help _ ADJ JJ _ 19 amod _ _ 19 market _ NOUN NN _ 14 nmod _ _ 20 and _ CONJ CC _ 10 cc _ _ 21 give _ VERB VB _ 10 conj _ _ 22 it _ PRON PRP _ 21 iobj _ _ 23 a _ DET DT _ 26 det _ _ 24 more _ ADV RBR _ 25 advmod _ _ 25 American _ ADJ JJ _ 26 amod _ _ 26 image _ NOUN NN _ 21 dobj _ _ 27 as _ SCONJ IN _ 30 mark _ _ 28 U.S. _ PROPN NNP _ 29 compound _ _ 29 investors _ NOUN NNS _ 30 nsubj _ _ 30 turn _ VERB VBP _ 10 advcl _ _ 31 jittery _ ADJ JJ _ 30 xcomp _ _ 32 about _ ADP IN _ 34 case _ _ 33 foreign _ ADJ JJ _ 34 amod _ _ 34 stocks _ NOUN NNS _ 31 nmod _ _ 35 after _ ADP IN _ 39 case _ _ 36 Friday _ PROPN NNP _ 39 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 market _ NOUN NN _ 39 compound _ _ 39 plunge _ NOUN NN _ 30 nmod _ _ 40 . _ PUNCT . _ 9 punct _ _ 1 U.S. _ PROPN NNP _ 2 compound _ _ 2 holders _ NOUN NNS _ 4 nsubj _ _ 3 now _ ADV RB _ 4 advmod _ _ 4 own _ VERB VBP _ 0 root _ _ 5 more _ ADJ JJR _ 7 advmod _ _ 6 than _ ADP IN _ 5 mwe _ _ 7 60 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 4 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 Blue _ PROPN NNP _ 11 compound _ _ 11 Arrow _ PROPN NNP _ 8 nmod _ _ 12 compared _ VERB VBN _ 15 case _ _ 13 with _ ADP IN _ 15 case _ _ 14 9 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 4 advcl _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 January _ PROPN NNP _ 15 nmod:tmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 In _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 U.S. _ PROPN NNP _ 5 compound _ _ 5 market _ NOUN NN _ 15 nmod _ _ 6 , _ PUNCT , _ 15 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 recognition _ NOUN NN _ 15 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Manpower _ PROPN NNP _ 12 compound _ _ 12 name _ NOUN NN _ 8 nmod _ _ 13 is _ VERB VBZ _ 15 cop _ _ 14 infinitely _ ADV RB _ 15 advmod _ _ 15 stronger _ ADJ JJR _ 23 dep _ _ 16 than _ ADP IN _ 18 case _ _ 17 Blue _ PROPN NNP _ 18 compound _ _ 18 Arrow _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 '' _ PUNCT '' _ 15 punct _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Fromstein _ PROPN NNP _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 moves _ NOUN NNS _ 5 nsubj _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 could _ AUX MD _ 5 aux _ _ 5 erase _ VERB VB _ 0 root _ _ 6 shareholders _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 perception _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 Blue _ PROPN NNP _ 11 compound _ _ 11 Arrow _ PROPN NNP _ 8 nmod _ _ 12 as _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 8 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 turmoil _ NOUN NN _ 14 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 further _ ADV RBR _ 4 advmod _ _ 4 reinforces _ VERB VBZ _ 18 dep _ _ 5 the _ DET DT _ 6 det _ _ 6 concept _ NOUN NN _ 4 dobj _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 Blue _ PROPN NNP _ 9 compound _ _ 9 Arrow _ PROPN NNP _ 12 nsubj _ _ 10 is _ VERB VBZ _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 thing _ NOUN NN _ 6 ccomp _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 past _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Doug _ PROPN NNP _ 20 compound _ _ 20 Arthur _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 an _ DET DT _ 23 det _ _ 23 analyst _ NOUN NN _ 20 appos _ _ 24 at _ ADP IN _ 26 case _ _ 25 Kidder _ PROPN NNP _ 26 compound _ _ 26 Peabody _ PROPN NNP _ 23 nmod _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Co. _ PROPN NNP _ 26 conj _ _ 29 in _ ADP IN _ 31 case _ _ 30 New _ PROPN NNP _ 31 compound _ _ 31 York _ PROPN NNP _ 26 nmod _ _ 32 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 proposed _ VERB VBN _ 3 amod _ _ 3 changes _ NOUN NNS _ 6 nsubj _ _ 4 `` _ PUNCT `` _ 3 punct _ _ 5 all _ DET DT _ 3 dep _ _ 6 make _ VERB VBP _ 16 dep _ _ 7 a _ DET DT _ 8 det _ _ 8 lot _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 sense _ NOUN NN _ 8 nmod _ _ 11 to _ ADP TO _ 12 case _ _ 12 me _ PRON PRP _ 6 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 '' _ PUNCT '' _ 6 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 added _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 a _ DET DT _ 6 det _ _ 3 widely _ ADV RB _ 4 advmod _ _ 4 publicized _ VERB VBN _ 6 amod _ _ 5 boardroom _ NOUN NN _ 6 compound _ _ 6 coup _ NOUN NN _ 10 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Fromstein _ PROPN NNP _ 10 nsubj _ _ 10 ousted _ VERB VBD _ 0 root _ _ 11 Antony _ PROPN NNP _ 12 compound _ _ 12 Berry _ PROPN NNP _ 10 dobj _ _ 13 as _ ADP IN _ 17 case _ _ 14 Blue _ PROPN NNP _ 17 compound _ _ 15 Arrow _ PROPN NNP _ 17 compound _ _ 16 chief _ ADJ JJ _ 17 amod _ _ 17 executive _ NOUN NN _ 10 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 January _ PROPN NNP _ 10 nmod _ _ 20 , _ PUNCT , _ 10 punct _ _ 21 a _ DET DT _ 22 det _ _ 22 month _ NOUN NN _ 27 dep _ _ 23 after _ SCONJ IN _ 27 mark _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Berry _ PROPN NNP _ 27 nsubj _ _ 26 had _ AUX VBD _ 27 aux _ _ 27 forced _ VERB VBN _ 10 advcl _ _ 28 Mr. _ PROPN NNP _ 29 compound _ _ 29 Fromstein _ PROPN NNP _ 27 dobj _ _ 30 out _ ADV RB _ 27 advmod _ _ 31 as _ ADP IN _ 36 case _ _ 32 the _ DET DT _ 36 det _ _ 33 $ _ SYM $ _ 36 amod _ _ 34 1 _ NUM CD _ 33 compound _ _ 35 million-a-year _ ADJ JJ _ 33 dep _ _ 36 chief _ NOUN NN _ 27 nmod _ _ 37 of _ ADP IN _ 39 case _ _ 38 Milwaukee-based _ ADJ JJ _ 39 amod _ _ 39 Manpower _ PROPN NNP _ 36 nmod _ _ 40 . _ PUNCT . _ 10 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Fromstein _ PROPN NNP _ 3 nsubj _ _ 3 solidified _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 control _ NOUN NN _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 April _ PROPN NNP _ 3 nmod _ _ 8 by _ SCONJ IN _ 9 mark _ _ 9 taking _ VERB VBG _ 3 advcl _ _ 10 over _ ADP RP _ 9 compound:prt _ _ 11 from _ ADP IN _ 13 case _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Berry _ PROPN NNP _ 9 nmod _ _ 14 as _ ADP IN _ 15 case _ _ 15 chairman _ NOUN NN _ 9 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 Blue _ PROPN NNP _ 5 compound _ _ 4 Arrow _ PROPN NNP _ 5 compound _ _ 5 tumult _ NOUN NN _ 6 nsubj _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 n't _ PART RB _ 6 neg _ _ 8 over _ ADV RB _ 6 advmod _ _ 9 yet _ ADV RB _ 6 advmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 as _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 British _ ADJ JJ _ 14 amod _ _ 14 government _ NOUN NN _ 16 nsubj _ _ 15 is _ AUX VBZ _ 16 aux _ _ 16 investigating _ VERB VBG _ 6 advcl _ _ 17 a _ DET DT _ 27 det _ _ 18 disputed _ VERB VBN _ 27 amod _ _ 19 # _ SYM # _ 21 compound _ _ 20 25 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 27 dep _ _ 22 -LRB- _ PUNCT -LRB- _ 23 punct _ _ 23 $ _ SYM $ _ 21 dep _ _ 24 39.4 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 -RRB- _ PUNCT -RRB- _ 23 punct _ _ 27 loan _ NOUN NN _ 16 dobj _ _ 28 which _ PRON WDT _ 32 dobj _ _ 29 Mr. _ PROPN NNP _ 30 compound _ _ 30 Fromstein _ PROPN NNP _ 32 nsubj _ _ 31 has _ AUX VBZ _ 32 aux _ _ 32 said _ VERB VBD _ 27 acl:relcl _ _ 33 was _ AUX VBD _ 34 auxpass _ _ 34 made _ VERB VBN _ 32 ccomp _ _ 35 under _ ADP IN _ 39 case _ _ 36 Mr. _ PROPN NNP _ 37 compound _ _ 37 Berry _ PROPN NNP _ 39 nmod:poss _ _ 38 's _ PART POS _ 37 case _ _ 39 direction _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 Blue _ PROPN NNP _ 2 compound _ _ 2 Arrow _ PROPN NNP _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 able _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 pull _ VERB VB _ 4 xcomp _ _ 7 off _ ADP RP _ 6 compound:prt _ _ 8 the _ DET DT _ 12 det _ _ 9 $ _ SYM $ _ 12 amod _ _ 10 1.34 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 takeover _ NOUN NN _ 6 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 Manpower _ PROPN NNP _ 12 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 1987 _ NUM CD _ 6 nmod _ _ 17 largely _ ADV RB _ 25 advmod _ _ 18 because _ SCONJ IN _ 25 mark _ _ 19 different _ ADJ JJ _ 24 amod _ _ 20 British _ ADJ JJ _ 24 amod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 American _ ADJ JJ _ 20 conj _ _ 23 accounting _ NOUN NN _ 24 compound _ _ 24 standards _ NOUN NNS _ 25 nsubj _ _ 25 produce _ VERB VBP _ 4 advcl _ _ 26 higher _ ADJ JJR _ 28 amod _ _ 27 reported _ VERB VBN _ 28 amod _ _ 28 earnings _ NOUN NNS _ 25 dobj _ _ 29 for _ ADP IN _ 31 case _ _ 30 British _ ADJ JJ _ 31 amod _ _ 31 companies _ NOUN NNS _ 25 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 British _ ADJ JJ _ 3 amod _ _ 3 rules _ NOUN NNS _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 Blue _ PROPN NNP _ 6 compound _ _ 6 Arrow _ PROPN NNP _ 8 nsubj _ _ 7 was _ VERB VBD _ 8 cop _ _ 8 able _ ADJ JJ _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 write _ VERB VB _ 8 xcomp _ _ 11 off _ ADP RP _ 10 compound:prt _ _ 12 at _ ADP IN _ 13 case _ _ 13 once _ ADV RB _ 10 nmod _ _ 14 the _ DET DT _ 15 det _ _ 15 $ _ SYM $ _ 10 dobj _ _ 16 1.15 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 20 case _ _ 19 good _ ADJ JJ _ 20 amod _ _ 20 will _ NOUN NN _ 15 nmod _ _ 21 arising _ VERB VBG _ 15 acl _ _ 22 from _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 purchase _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 As _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 U.S.-based _ ADJ JJ _ 4 amod _ _ 4 company _ NOUN NN _ 9 ccomp _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Blue _ PROPN NNP _ 7 compound _ _ 7 Arrow _ PROPN NNP _ 9 nsubj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 have _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 amortize _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 will _ NOUN NN _ 11 dobj _ _ 15 over _ ADP IN _ 20 case _ _ 16 as _ ADV RB _ 19 advmod _ _ 17 many _ ADJ JJ _ 19 advmod _ _ 18 as _ ADP IN _ 19 advmod _ _ 19 40 _ NUM CD _ 20 nummod _ _ 20 years _ NOUN NNS _ 11 nmod _ _ 21 , _ PUNCT , _ 9 punct _ _ 22 creating _ VERB VBG _ 9 xcomp _ _ 23 a _ DET DT _ 25 det _ _ 24 continuing _ VERB VBG _ 25 amod _ _ 25 drag _ NOUN NN _ 22 dobj _ _ 26 on _ ADP IN _ 28 case _ _ 27 reported _ VERB VBN _ 28 amod _ _ 28 earnings _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 Good _ ADJ JJ _ 2 amod _ _ 2 will _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 excess _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 cost _ NOUN NN _ 5 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 acquired _ VERB VBN _ 11 amod _ _ 11 firm _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 operating _ VERB VBG _ 14 amod _ _ 14 unit _ NOUN NN _ 11 conj _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 assets _ NOUN NNS _ 11 conj _ _ 17 over _ ADP IN _ 23 case _ _ 18 the _ DET DT _ 23 det _ _ 19 current _ ADJ JJ _ 23 amod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 fair _ ADJ JJ _ 19 conj _ _ 22 market _ NOUN NN _ 23 compound _ _ 23 value _ NOUN NN _ 5 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 those _ DET DT _ 26 det _ _ 26 assets _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 with _ ADP IN _ 5 case _ _ 3 so _ ADV RB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 shares _ NOUN NNS _ 14 nmod _ _ 6 now _ ADV RB _ 7 advmod _ _ 7 held _ VERB VBN _ 5 acl _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 U.S. _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 Blue _ PROPN NNP _ 13 compound _ _ 13 Arrow _ PROPN NNP _ 14 nsubj _ _ 14 reports _ VERB VBZ _ 0 root _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 earnings _ NOUN NNS _ 14 dep _ _ 17 two _ NUM CD _ 18 nummod _ _ 18 ways _ NOUN NNS _ 14 dobj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 based _ VERB VBN _ 23 case _ _ 21 on _ ADP IN _ 23 case _ _ 22 both _ DET DT _ 23 cc:preconj _ _ 23 U.K. _ PROPN NNP _ 14 advcl _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 U.S. _ PROPN NNP _ 27 compound _ _ 26 accounting _ NOUN NN _ 27 compound _ _ 27 standards _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 Our _ PRON PRP$ _ 4 nmod:poss _ _ 3 balance _ NOUN NN _ 4 compound _ _ 4 sheets _ NOUN NNS _ 5 nsubj _ _ 5 look _ VERB VBP _ 17 dep _ _ 6 like _ SCONJ IN _ 8 mark _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 came _ VERB VBD _ 5 advcl _ _ 9 from _ ADP IN _ 12 case _ _ 10 Alice _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 wonderland _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 '' _ PUNCT '' _ 5 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Fromstein _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 British _ ADJ JJ _ 3 amod _ _ 3 version _ NOUN NN _ 4 nsubj _ _ 4 shows _ VERB VBZ _ 0 root _ _ 5 `` _ PUNCT `` _ 7 punct _ _ 6 a _ DET DT _ 7 det _ _ 7 handful _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 pounds _ NOUN NNS _ 7 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 net _ ADJ JJ _ 12 amod _ _ 12 worth _ NOUN NN _ 9 nmod _ _ 13 '' _ PUNCT '' _ 7 punct _ _ 14 following _ VERB VBG _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 1987 _ NUM CD _ 17 nummod _ _ 17 write-off _ NOUN NN _ 4 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 good _ ADJ JJ _ 20 amod _ _ 20 will _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 while _ SCONJ IN _ 26 mark _ _ 23 the _ DET DT _ 25 det _ _ 24 American _ ADJ JJ _ 25 amod _ _ 25 version _ NOUN NN _ 26 nsubj _ _ 26 reflects _ VERB VBZ _ 4 advcl _ _ 27 `` _ PUNCT `` _ 28 punct _ _ 28 $ _ SYM $ _ 26 dobj _ _ 29 1 _ NUM CD _ 30 compound _ _ 30 billion _ NUM CD _ 28 nummod _ _ 31 of _ ADP IN _ 33 case _ _ 32 net _ ADJ JJ _ 33 amod _ _ 33 worth _ NOUN NN _ 28 nmod _ _ 34 because _ SCONJ IN _ 45 mark _ _ 35 almost _ ADV RB _ 36 advmod _ _ 36 none _ NOUN NN _ 45 nsubjpass _ _ 37 of _ ADP IN _ 41 case _ _ 38 -LCB- _ PUNCT -LRB- _ 41 punct _ _ 39 the _ DET DT _ 41 det _ _ 40 good _ NOUN NN _ 41 compound _ _ 41 will _ NOUN NN _ 36 nmod _ _ 42 -RCB- _ PUNCT -RRB- _ 41 punct _ _ 43 has _ AUX VBZ _ 45 aux _ _ 44 been _ AUX VBN _ 45 auxpass _ _ 45 written _ VERB VBN _ 26 advcl _ _ 46 off _ ADP RP _ 45 compound:prt _ _ 47 . _ PUNCT . _ 4 punct _ _ 48 '' _ PUNCT '' _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Fromstein _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 hopes _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 eradicate _ VERB VB _ 5 xcomp _ _ 8 some _ DET DT _ 7 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 good _ ADJ JJ _ 12 amod _ _ 12 will _ NOUN NN _ 8 nmod _ _ 13 left _ VERB VBN _ 12 acl _ _ 14 on _ ADP IN _ 19 case _ _ 15 Blue _ PROPN NNP _ 16 compound _ _ 16 Arrow _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 U.S. _ PROPN NNP _ 19 compound _ _ 19 books _ NOUN NNS _ 13 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 one _ NUM CD _ 23 nummod _ _ 22 fell _ ADJ JJ _ 23 amod _ _ 23 swoop _ NOUN NN _ 7 nmod _ _ 24 , _ PUNCT , _ 3 punct _ _ 25 but _ CONJ CC _ 3 cc _ _ 26 would _ AUX MD _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 specify _ VERB VB _ 3 conj _ _ 29 how _ ADV WRB _ 30 advmod _ _ 30 much _ ADV RB _ 28 dobj _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 People _ NOUN NNS _ 6 nsubj _ _ 2 close _ ADJ JJ _ 1 amod _ _ 3 to _ ADP TO _ 5 case _ _ 4 Blue _ PROPN NNP _ 5 compound _ _ 5 Arrow _ PROPN NNP _ 2 nmod _ _ 6 suggested _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 write-down _ NOUN NN _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 represent _ VERB VB _ 6 ccomp _ _ 11 a _ DET DT _ 13 det _ _ 12 sizable _ ADJ JJ _ 13 amod _ _ 13 chunk _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 with _ SCONJ IN _ 17 mark _ _ 16 executives _ NOUN NNS _ 17 nsubj _ _ 17 claiming _ VERB VBG _ 10 advcl _ _ 18 prior _ ADJ JJ _ 19 amod _ _ 19 management _ NOUN NN _ 20 nsubj _ _ 20 overstated _ VERB VBD _ 17 ccomp _ _ 21 the _ DET DT _ 22 det _ _ 22 extent _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 27 case _ _ 24 Manpower _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 good _ ADJ JJ _ 27 amod _ _ 27 will _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 along _ ADP IN _ 7 case _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 return _ NOUN NN _ 14 nmod _ _ 8 to _ ADP TO _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Manpower _ PROPN NNP _ 11 compound _ _ 11 name _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 could _ AUX MD _ 14 aux _ _ 14 bolster _ VERB VB _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 prospects _ NOUN NNS _ 14 dobj _ _ 19 during _ ADP IN _ 22 case _ _ 20 possibly _ ADV RB _ 21 advmod _ _ 21 difficult _ ADJ JJ _ 22 amod _ _ 22 times _ NOUN NNS _ 14 nmod _ _ 23 for _ ADP IN _ 25 case _ _ 24 temporary _ ADJ JJ _ 25 amod _ _ 25 help _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 number _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 U.S. _ PROPN NNP _ 6 compound _ _ 5 temporary _ ADJ JJ _ 6 amod _ _ 6 workers _ NOUN NNS _ 2 nmod _ _ 7 fell _ VERB VBD _ 27 ccomp _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 1 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 12 _ NUM CD _ 14 nummod _ _ 14 months _ NOUN NNS _ 7 nmod _ _ 15 ending _ VERB VBG _ 14 acl _ _ 16 Aug. _ PROPN NNP _ 15 nmod:tmod _ _ 17 31 _ NUM CD _ 16 nummod _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 after _ SCONJ IN _ 20 mark _ _ 20 sliding _ VERB VBG _ 7 advcl _ _ 21 nearly _ ADV RB _ 22 advmod _ _ 22 3.5 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 20 dobj _ _ 24 in _ ADP IN _ 25 case _ _ 25 July _ PROPN NNP _ 20 nmod _ _ 26 , _ PUNCT , _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Kidder _ PROPN NNP _ 29 compound _ _ 29 Peabody _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 Mr. _ PROPN NNP _ 32 compound _ _ 32 Arthur _ PROPN NNP _ 27 nsubj _ _ 33 . _ PUNCT . _ 27 punct _ _ 1 Blue _ PROPN NNP _ 2 compound _ _ 2 Arrow _ PROPN NNP _ 3 nsubj _ _ 3 blamed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 7 det _ _ 5 pretax _ ADJ JJ _ 7 amod _ _ 6 profit _ NOUN NN _ 7 compound _ _ 7 drop _ NOUN NN _ 3 dobj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 quarter _ NOUN NN _ 7 nmod _ _ 11 ended _ VERB VBN _ 10 acl _ _ 12 July _ PROPN NNP _ 11 nmod:tmod _ _ 13 31 _ NUM CD _ 12 nummod _ _ 14 partly _ ADV RB _ 3 advmod _ _ 15 on _ ADP IN _ 18 case _ _ 16 slower _ ADJ JJR _ 18 amod _ _ 17 earnings _ NOUN NNS _ 18 compound _ _ 18 growth _ NOUN NN _ 3 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 non-Manpower _ ADJ JJ _ 21 amod _ _ 21 units _ NOUN NNS _ 18 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 Britain _ PROPN NNP _ 21 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Overall _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 pretax _ ADJ JJ _ 4 amod _ _ 4 profit _ NOUN NN _ 5 nsubj _ _ 5 slid _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 9 case _ _ 7 # _ SYM # _ 9 compound _ _ 8 18.49 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 5 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 quarter _ NOUN NN _ 9 nmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 # _ SYM # _ 16 compound _ _ 15 18.98 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 5 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 19 nmod:npmod _ _ 19 earlier _ ADV RBR _ 16 advmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Richard _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Sim _ PROPN NNP _ 28 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 man _ NOUN NN _ 3 appos _ _ 7 credited _ VERB VBN _ 6 acl _ _ 8 with _ SCONJ IN _ 9 mark _ _ 9 transforming _ VERB VBG _ 7 advcl _ _ 10 Applied _ PROPN NNP _ 12 compound _ _ 11 Power _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 9 dobj _ _ 13 from _ ADP IN _ 15 case _ _ 14 an _ DET DT _ 15 det _ _ 15 underachiever _ NOUN NN _ 9 nmod _ _ 16 into _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 feisty _ ADJ JJ _ 19 amod _ _ 19 player _ NOUN NN _ 9 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 global _ ADJ JJ _ 23 amod _ _ 23 market _ NOUN NN _ 19 nmod _ _ 24 for _ ADP IN _ 26 case _ _ 25 hydraulic _ ADJ JJ _ 26 amod _ _ 26 tools _ NOUN NNS _ 23 nmod _ _ 27 , _ PUNCT , _ 3 punct _ _ 28 hopes _ VERB VBZ _ 0 root _ _ 29 to _ PART TO _ 30 mark _ _ 30 guide _ VERB VB _ 28 xcomp _ _ 31 a _ DET DT _ 33 det _ _ 32 similar _ ADJ JJ _ 33 amod _ _ 33 turnaround _ NOUN NN _ 30 dobj _ _ 34 at _ ADP IN _ 39 case _ _ 35 the _ DET DT _ 36 det _ _ 36 company _ NOUN NN _ 39 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 latest _ ADJ JJS _ 39 amod _ _ 39 acquisition _ NOUN NN _ 33 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Barry _ PROPN NNP _ 43 compound _ _ 42 Wright _ PROPN NNP _ 43 compound _ _ 43 Corp _ PROPN NNP _ 39 appos _ _ 44 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 7 det _ _ 2 45-year-old _ ADJ JJ _ 7 amod _ _ 3 former _ ADJ JJ _ 7 amod _ _ 4 General _ PROPN NNP _ 7 compound _ _ 5 Electric _ PROPN NNP _ 7 compound _ _ 6 Co. _ PROPN NNP _ 7 compound _ _ 7 executive _ NOUN NN _ 8 nsubj _ _ 8 figures _ VERB VBZ _ 0 root _ _ 9 it _ PRON PRP _ 12 nsubj _ _ 10 will _ AUX MD _ 12 aux _ _ 11 be _ VERB VB _ 12 cop _ _ 12 easier _ ADJ JJR _ 8 ccomp _ _ 13 this _ DET DT _ 14 det _ _ 14 time _ NOUN NN _ 12 nmod:tmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 analysts _ NOUN NNS _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 while _ SCONJ IN _ 5 mark _ _ 5 applauding _ VERB VBG _ 9 dep _ _ 6 the _ DET DT _ 7 det _ _ 7 acquisition _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 say _ VERB VBP _ 0 root _ _ 10 Applied _ PROPN NNP _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 chief _ ADJ JJ _ 13 amod _ _ 13 executive _ NOUN NN _ 14 nsubj _ _ 14 faces _ VERB VBZ _ 9 ccomp _ _ 15 a _ DET DT _ 17 det _ _ 16 tough _ ADJ JJ _ 17 amod _ _ 17 challenge _ NOUN NN _ 14 dobj _ _ 18 in _ SCONJ IN _ 19 mark _ _ 19 integrating _ VERB VBG _ 17 acl _ _ 20 the _ DET DT _ 22 det _ _ 21 two _ NUM CD _ 22 nummod _ _ 22 companies _ NOUN NNS _ 19 dobj _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Barry _ PROPN NNP _ 2 compound _ _ 2 Wright _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 acquired _ VERB VBN _ 2 acl _ _ 5 by _ ADP IN _ 6 case _ _ 6 Applied _ PROPN NNP _ 4 nmod _ _ 7 for _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 147 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 makes _ VERB VBZ _ 0 root _ _ 13 computer-room _ ADJ JJ _ 14 amod _ _ 14 equipment _ NOUN NN _ 12 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 vibration-control _ ADJ JJ _ 17 amod _ _ 17 systems _ NOUN NNS _ 14 conj _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Watertown _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Mass. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 company _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 sales _ NOUN NNS _ 11 nsubj _ _ 9 have _ AUX VBP _ 11 aux _ _ 10 been _ VERB VBN _ 11 cop _ _ 11 dormant _ ADJ JJ _ 0 root _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 profits _ NOUN NNS _ 16 nsubj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 dropped _ VERB VBN _ 11 conj _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 year _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 earnings _ NOUN NNS _ 23 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 $ _ SYM $ _ 4 nmod _ _ 7 1.3 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 including _ VERB VBG _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 815,000 _ NUM CD _ 4 nmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 restructuring _ NOUN NN _ 16 compound _ _ 16 gain _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 were _ VERB VBD _ 23 cop _ _ 19 far _ ADV RB _ 23 advmod _ _ 20 below _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 $ _ SYM $ _ 0 root _ _ 24 8.4 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 . _ PUNCT . _ 23 punct _ _ 1 Besides _ SCONJ IN _ 2 mark _ _ 2 spurring _ VERB VBG _ 19 advcl _ _ 3 Barry _ PROPN NNP _ 4 compound _ _ 4 Wright _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 sales _ NOUN NNS _ 2 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 10 nsubj _ _ 9 were _ VERB VBD _ 10 cop _ _ 10 $ _ SYM $ _ 6 acl:relcl _ _ 11 201.7 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 in _ ADP IN _ 14 case _ _ 14 1988 _ NUM CD _ 10 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Sim _ PROPN NNP _ 19 nsubj _ _ 18 must _ AUX MD _ 19 aux _ _ 19 pare _ VERB VB _ 0 root _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 costs _ NOUN NNS _ 19 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 product _ NOUN NN _ 24 compound _ _ 24 line _ NOUN NN _ 21 conj _ _ 25 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 question _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 20 ccomp _ _ 5 how _ ADV WRB _ 6 advmod _ _ 6 long _ ADJ JJ _ 9 advmod _ _ 7 it _ PRON PRP _ 9 nsubj _ _ 8 's _ AUX VBZ _ 9 aux _ _ 9 going _ VERB VBG _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 take _ VERB VB _ 9 xcomp _ _ 12 Barry _ PROPN NNP _ 13 compound _ _ 13 Wright _ PROPN NNP _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 11 advcl _ _ 16 a _ DET DT _ 17 det _ _ 17 contribution _ NOUN NN _ 15 dobj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 F. _ PROPN NNP _ 23 compound _ _ 22 John _ PROPN NNP _ 23 compound _ _ 23 Mirek _ PROPN NNP _ 20 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 an _ DET DT _ 26 det _ _ 26 analyst _ NOUN NN _ 23 appos _ _ 27 at _ ADP IN _ 30 case _ _ 28 Blunt _ PROPN NNP _ 30 compound _ _ 29 Ellis _ PROPN NNP _ 30 compound _ _ 30 Loewi _ PROPN NNP _ 26 nmod _ _ 31 in _ ADP IN _ 32 case _ _ 32 Milwaukee _ PROPN NNP _ 30 nmod _ _ 33 . _ PUNCT . _ 20 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 answer _ NOUN NN _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 help _ VERB VB _ 0 root _ _ 5 determine _ VERB VB _ 4 ccomp _ _ 6 whether _ SCONJ IN _ 8 mark _ _ 7 Applied _ VERB VBN _ 8 nsubj _ _ 8 continues _ VERB VBZ _ 5 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 reach _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 13 det _ _ 12 ambitious _ ADJ JJ _ 13 amod _ _ 13 goals _ NOUN NNS _ 10 dobj _ _ 14 set _ VERB VBN _ 13 acl _ _ 15 by _ ADP IN _ 17 case _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Sim _ PROPN NNP _ 14 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 6 det _ _ 2 Butler _ PROPN NNP _ 6 dep _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Wis. _ PROPN NNP _ 2 dep _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 manufacturer _ NOUN NN _ 7 nsubj _ _ 7 went _ VERB VBD _ 0 root _ _ 8 public _ ADJ JJ _ 7 xcomp _ _ 9 at _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 15.75 _ NUM CD _ 7 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 August _ PROPN NNP _ 7 nmod _ _ 16 1987 _ NUM CD _ 15 nummod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 and _ CONJ CC _ 7 cc _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Sim _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 goal _ NOUN NN _ 29 nsubj _ _ 23 then _ ADV RB _ 29 advmod _ _ 24 was _ VERB VBD _ 29 cop _ _ 25 a _ DET DT _ 29 det _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 29 _ NUM CD _ 26 compound _ _ 28 per-share _ ADJ JJ _ 26 dep _ _ 29 price _ NOUN NN _ 7 conj _ _ 30 by _ ADP IN _ 31 case _ _ 31 1992 _ NUM CD _ 29 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 Strong _ ADJ JJ _ 3 amod _ _ 2 earnings _ NOUN NNS _ 3 compound _ _ 3 growth _ NOUN NN _ 4 nsubj _ _ 4 helped _ VERB VBD _ 0 root _ _ 5 achieve _ VERB VB _ 4 ccomp _ _ 6 that _ DET DT _ 7 det _ _ 7 price _ NOUN NN _ 5 dobj _ _ 8 far _ ADV RB _ 9 advmod _ _ 9 ahead _ ADV RB _ 5 advmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 schedule _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 5 nmod _ _ 15 1988 _ NUM CD _ 14 nummod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stock _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 since _ ADP IN _ 5 advmod _ _ 5 softened _ VERB VBN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 trading _ VERB VBG _ 5 ccomp _ _ 8 around _ ADV RB _ 9 advmod _ _ 9 $ _ SYM $ _ 7 dobj _ _ 10 25 _ NUM CD _ 9 nummod _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 9 nmod:npmod _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 week _ NOUN NN _ 7 nmod:tmod _ _ 15 and _ CONJ CC _ 7 cc _ _ 16 closing _ VERB VBG _ 7 conj _ _ 17 yesterday _ NOUN NN _ 16 nmod:tmod _ _ 18 at _ ADP IN _ 20 case _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 23.00 _ NUM CD _ 16 nmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 national _ ADJ JJ _ 24 amod _ _ 23 over-the-counter _ ADJ JJ _ 24 amod _ _ 24 trading _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Sim _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 set _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 fresh _ ADJ JJ _ 8 amod _ _ 8 target _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 50 _ NUM CD _ 8 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 by _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 end _ NOUN NN _ 5 nmod _ _ 17 of _ ADP IN _ 16 dep _ _ 1 Reaching _ VERB VBG _ 17 csubj _ _ 2 that _ DET DT _ 3 det _ _ 3 goal _ NOUN NN _ 1 dobj _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 says _ VERB VBZ _ 17 parataxis _ _ 6 Robert _ PROPN NNP _ 8 compound _ _ 7 T. _ PROPN NNP _ 8 compound _ _ 8 Foote _ PROPN NNP _ 5 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Applied _ PROPN NNP _ 14 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 chief _ ADJ JJ _ 14 amod _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 officer _ NOUN NN _ 8 appos _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 will _ AUX MD _ 17 aux _ _ 17 require _ VERB VB _ 0 root _ _ 18 `` _ PUNCT `` _ 20 punct _ _ 19 efficient _ ADJ JJ _ 20 amod _ _ 20 reinvestment _ NOUN NN _ 17 dobj _ _ 21 '' _ PUNCT '' _ 20 punct _ _ 22 of _ ADP IN _ 23 case _ _ 23 cash _ NOUN NN _ 20 nmod _ _ 24 by _ ADP IN _ 25 case _ _ 25 Applied _ PROPN NNP _ 20 nmod _ _ 26 and _ CONJ CC _ 20 cc _ _ 27 continuation _ NOUN NN _ 20 conj _ _ 28 of _ ADP IN _ 33 case _ _ 29 its _ PRON PRP$ _ 33 nmod:poss _ _ 30 healthy _ ADJ JJ _ 33 amod _ _ 31 19 _ NUM CD _ 32 compound _ _ 32 % _ SYM NN _ 33 amod _ _ 33 rate _ NOUN NN _ 27 nmod _ _ 34 of _ ADP IN _ 35 case _ _ 35 return _ NOUN NN _ 33 nmod _ _ 36 on _ ADP IN _ 38 case _ _ 37 operating _ NOUN NN _ 38 compound _ _ 38 capital _ NOUN NN _ 35 nmod _ _ 39 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 Barry _ PROPN NNP _ 3 compound _ _ 3 Wright _ PROPN NNP _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Sim _ PROPN NNP _ 7 nsubj _ _ 7 sees _ VERB VBZ _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 situation _ NOUN NN _ 7 dobj _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 very _ ADV RB _ 12 advmod _ _ 12 similar _ ADJ JJ _ 9 amod _ _ 13 '' _ PUNCT '' _ 12 punct _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 one _ NUM CD _ 12 nmod _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 faced _ VERB VBD _ 16 acl:relcl _ _ 19 when _ ADV WRB _ 21 advmod _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 joined _ VERB VBD _ 18 advcl _ _ 22 Applied _ PROPN NNP _ 21 dobj _ _ 23 as _ ADP IN _ 24 case _ _ 24 president _ NOUN NN _ 21 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 chief _ NOUN NN _ 28 compound _ _ 27 operating _ VERB VBG _ 28 amod _ _ 28 officer _ NOUN NN _ 24 conj _ _ 29 in _ ADP IN _ 30 case _ _ 30 1985 _ NUM CD _ 21 nmod _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 Applied _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 then _ ADV RB _ 7 dep _ _ 4 a _ DET DT _ 7 det _ _ 5 closely _ ADV RB _ 6 advmod _ _ 6 held _ VERB VBN _ 7 amod _ _ 7 company _ NOUN NN _ 1 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 was _ AUX VBD _ 10 aux _ _ 10 stagnating _ VERB VBG _ 0 root _ _ 11 under _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 management _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 controlling _ VERB VBG _ 17 amod _ _ 17 family _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 While _ SCONJ IN _ 2 mark _ _ 2 profitable _ ADJ JJ _ 8 advcl _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 it _ PRON PRP _ 8 nsubj _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 was _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 growing _ VERB VBG _ 22 dep _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 was _ AUX VBD _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 providing _ VERB VBG _ 8 conj _ _ 13 a _ DET DT _ 15 det _ _ 14 satisfactory _ ADJ JJ _ 15 amod _ _ 15 return _ NOUN NN _ 12 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 invested _ VERB VBN _ 18 amod _ _ 18 capital _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 '' _ PUNCT '' _ 8 punct _ _ 21 he _ PRON PRP _ 22 nsubj _ _ 22 says _ VERB VBZ _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sim _ PROPN NNP _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 confident _ ADJ JJ _ 0 root _ _ 5 that _ SCONJ IN _ 14 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 drive _ NOUN NN _ 14 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 dominate _ VERB VB _ 7 acl _ _ 10 certain _ ADJ JJ _ 12 amod _ _ 11 niche _ NOUN NN _ 12 compound _ _ 12 markets _ NOUN NNS _ 9 dobj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 work _ VERB VB _ 4 ccomp _ _ 15 at _ ADP IN _ 17 case _ _ 16 Barry _ PROPN NNP _ 17 compound _ _ 17 Wright _ PROPN NNP _ 14 nmod _ _ 18 as _ SCONJ IN _ 22 mark _ _ 19 it _ PRON PRP _ 22 nsubj _ _ 20 has _ AUX VBZ _ 22 aux _ _ 21 at _ ADP IN _ 22 case _ _ 22 Applied _ PROPN NNP _ 14 advcl _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 professes _ VERB VBZ _ 0 root _ _ 4 an _ DET DT _ 8 det _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 evangelical _ ADJ JJ _ 8 amod _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 fervor _ NOUN NN _ 3 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 develop _ VERB VB _ 8 acl _ _ 11 a _ DET DT _ 13 det _ _ 12 corporate _ ADJ JJ _ 13 amod _ _ 13 culture _ NOUN NN _ 10 dobj _ _ 14 that _ PRON WDT _ 15 nsubj _ _ 15 rewards _ VERB VBZ _ 13 acl:relcl _ _ 16 managers _ NOUN NNS _ 15 dobj _ _ 17 who _ PRON WP _ 18 nsubj _ _ 18 produce _ VERB VBP _ 16 acl:relcl _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 where _ ADV WRB _ 23 advmod _ _ 21 decision-making _ NOUN NN _ 23 nsubjpass _ _ 22 is _ AUX VBZ _ 23 auxpass _ _ 23 shared _ VERB VBN _ 15 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sim _ PROPN NNP _ 3 nsubj _ _ 3 considers _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 new _ ADJ JJ _ 6 amod _ _ 6 unit _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 operations _ NOUN NNS _ 11 dep _ _ 9 `` _ PUNCT `` _ 11 punct _ _ 10 fundamentally _ ADV RB _ 11 advmod _ _ 11 sound _ ADJ JJ _ 3 xcomp _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 adds _ VERB VBZ _ 3 conj _ _ 15 that _ SCONJ IN _ 21 mark _ _ 16 Barry _ PROPN NNP _ 17 compound _ _ 17 Wright _ PROPN NNP _ 21 nsubj _ _ 18 has _ AUX VBZ _ 21 aux _ _ 19 been _ VERB VBN _ 21 cop _ _ 20 fairly _ ADV RB _ 21 advmod _ _ 21 successful _ ADJ JJ _ 14 ccomp _ _ 22 in _ SCONJ IN _ 23 mark _ _ 23 moving _ VERB VBG _ 21 advcl _ _ 24 into _ ADP IN _ 25 case _ _ 25 markets _ NOUN NNS _ 23 nmod _ _ 26 that _ PRON WDT _ 29 nsubj _ _ 27 have _ AUX VBP _ 29 aux _ _ 28 n't _ PART RB _ 29 neg _ _ 29 interested _ VERB VBN _ 25 acl:relcl _ _ 30 larger _ ADJ JJR _ 31 amod _ _ 31 competitors _ NOUN NNS _ 29 dobj _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 With _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 4 det _ _ 4 little _ ADJ JJ _ 5 nmod:npmod _ _ 5 patience _ NOUN NN _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 these _ DET DT _ 8 det _ _ 8 businesses _ NOUN NNS _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 perform _ VERB VB _ 17 ccomp _ _ 11 very _ ADV RB _ 12 advmod _ _ 12 satisfactorily _ ADV RB _ 10 advmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 '' _ PUNCT '' _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Sim _ PROPN NNP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Within _ ADP IN _ 4 case _ _ 2 about _ ADV RB _ 3 advmod _ _ 3 six _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 `` _ PUNCT `` _ 10 punct _ _ 7 things _ NOUN NNS _ 10 nsubj _ _ 8 will _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 aux _ _ 10 moving _ VERB VBG _ 18 dep _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 right _ ADJ JJ _ 14 amod _ _ 14 direction _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 '' _ PUNCT '' _ 10 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 predicts _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sim _ PROPN NNP _ 3 nsubj _ _ 3 figures _ VERB VBZ _ 0 root _ _ 4 it _ PRON PRP _ 7 nsubj _ _ 5 will _ AUX MD _ 7 aux _ _ 6 be _ VERB VB _ 7 cop _ _ 7 easier _ ADJ JJR _ 3 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 turn _ VERB VB _ 7 xcomp _ _ 10 Barry _ PROPN NNP _ 11 compound _ _ 11 Wright _ PROPN NNP _ 9 dobj _ _ 12 around _ ADP IN _ 9 compound:prt _ _ 13 since _ SCONJ IN _ 21 mark _ _ 14 he _ PRON PRP _ 21 nsubj _ _ 15 's _ VERB VBZ _ 21 cop _ _ 16 now _ ADV RB _ 21 advmod _ _ 17 in _ ADP IN _ 21 case _ _ 18 the _ DET DT _ 19 det _ _ 19 driver _ NOUN NN _ 21 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 seat _ NOUN NN _ 7 advcl _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 he _ PRON PRP _ 3 nsubj _ _ 3 came _ VERB VBD _ 11 advcl _ _ 4 to _ ADP TO _ 5 case _ _ 5 Applied _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 `` _ PUNCT `` _ 11 punct _ _ 8 I _ PRON PRP _ 11 nsubj _ _ 9 did _ AUX VBD _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 have _ VERB VB _ 23 dep _ _ 12 the _ DET DT _ 13 det _ _ 13 power _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 execute _ VERB VB _ 13 acl _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 I _ PRON PRP _ 18 nsubj _ _ 18 do _ VERB VBP _ 15 advcl _ _ 19 today _ NOUN NN _ 18 nmod:tmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 '' _ PUNCT '' _ 11 punct _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 He _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 named _ VERB VBN _ 0 root _ _ 4 chief _ ADJ JJ _ 6 amod _ _ 5 executive _ ADJ JJ _ 6 amod _ _ 6 officer _ NOUN NN _ 3 xcomp _ _ 7 of _ ADP IN _ 8 case _ _ 8 Applied _ PROPN NNP _ 6 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 1986 _ NUM CD _ 3 nmod _ _ 11 and _ CONJ CC _ 3 cc _ _ 12 became _ VERB VBD _ 3 conj _ _ 13 chairman _ NOUN NN _ 12 xcomp _ _ 14 last _ ADJ JJ _ 15 amod _ _ 15 November _ PROPN NNP _ 12 nmod:tmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Applied _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Sim _ PROPN NNP _ 6 nsubj _ _ 6 set _ VERB VBD _ 0 root _ _ 7 growth _ NOUN NN _ 6 dobj _ _ 8 as _ ADP IN _ 11 case _ _ 9 his _ PRON PRP$ _ 11 nmod:poss _ _ 10 first _ ADJ JJ _ 11 amod _ _ 11 objective _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 took _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 public _ NOUN NN _ 2 xcomp _ _ 6 in _ ADP IN _ 8 case _ _ 7 an _ DET DT _ 8 det _ _ 8 offering _ NOUN NN _ 2 nmod _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 netted _ VERB VBD _ 8 acl:relcl _ _ 11 Applied _ PROPN NNP _ 10 iobj _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 $ _ SYM $ _ 10 dobj _ _ 14 12.6 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 which _ PRON WDT _ 18 nsubj _ _ 18 helped _ VERB VBD _ 8 acl:relcl _ _ 19 launch _ VERB VB _ 18 ccomp _ _ 20 the _ DET DT _ 21 det _ _ 21 company _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 acquisition _ NOUN NN _ 24 compound _ _ 24 program _ NOUN NN _ 19 dobj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Sales _ NOUN NNS _ 2 nsubj _ _ 2 climbed _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 6 case _ _ 4 an _ DET DT _ 6 det _ _ 5 estimated _ VERB VBN _ 6 amod _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 245 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 fiscal _ ADJ JJ _ 11 amod _ _ 11 1989 _ NUM CD _ 6 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 ended _ VERB VBN _ 11 acl _ _ 14 Aug. _ PROPN NNP _ 13 nmod:tmod _ _ 15 31 _ NUM CD _ 14 nummod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 from _ ADP IN _ 18 case _ _ 18 $ _ SYM $ _ 2 nmod _ _ 19 99.9 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 in _ ADP IN _ 23 case _ _ 22 fiscal _ ADJ JJ _ 23 amod _ _ 23 1985 _ NUM CD _ 18 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 16 mark _ _ 5 earnings _ NOUN NNS _ 16 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 have _ AUX VBP _ 9 aux _ _ 9 marched _ VERB VBN _ 5 acl:relcl _ _ 10 steadily _ ADV RB _ 9 advmod _ _ 11 upward _ ADV RB _ 9 advmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 recent _ ADJ JJ _ 14 amod _ _ 14 years _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 reached _ VERB VBD _ 3 ccomp _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 $ _ SYM $ _ 16 dobj _ _ 19 20.8 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 or _ CONJ CC _ 18 cc _ _ 23 $ _ SYM $ _ 24 dep _ _ 24 1.58 _ NUM CD _ 18 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 24 nmod:npmod _ _ 27 , _ PUNCT , _ 18 punct _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 fiscal _ ADJ JJ _ 31 amod _ _ 31 year _ NOUN NN _ 16 nmod _ _ 32 just _ ADV RB _ 33 advmod _ _ 33 ended _ VERB VBD _ 31 acl _ _ 34 , _ PUNCT , _ 16 punct _ _ 35 up _ ADV RB _ 16 advmod _ _ 36 from _ ADP IN _ 37 case _ _ 37 $ _ SYM $ _ 35 nmod _ _ 38 15.2 _ NUM CD _ 39 compound _ _ 39 million _ NUM CD _ 37 nummod _ _ 40 in _ ADP IN _ 42 case _ _ 41 fiscal _ ADJ JJ _ 42 amod _ _ 42 1988 _ NUM CD _ 37 nmod _ _ 43 and _ CONJ CC _ 37 cc _ _ 44 $ _ SYM $ _ 37 conj _ _ 45 3.9 _ NUM CD _ 46 compound _ _ 46 million _ NUM CD _ 44 nummod _ _ 47 in _ ADP IN _ 48 case _ _ 48 1985 _ NUM CD _ 44 nmod _ _ 49 . _ PUNCT . _ 3 punct _ _ ================================================ FILE: a3/data/en-cw.txt ================================================ [File too large to display: 57.7 MB] ================================================ FILE: a3/data/test.conll ================================================ 1 No _ ADV DT _ 7 discourse _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 it _ PRON PRP _ 7 nsubj _ _ 4 was _ VERB VBD _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 Black _ PROPN JJ _ 7 compound _ _ 7 Monday _ PROPN NNP _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 33 cc _ _ 2 while _ SCONJ IN _ 10 mark _ _ 3 the _ DET DT _ 7 det _ _ 4 New _ PROPN NNP _ 7 compound _ _ 5 York _ PROPN NNP _ 7 compound _ _ 6 Stock _ PROPN NNP _ 7 compound _ _ 7 Exchange _ PROPN NNP _ 10 nsubj _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 fall _ VERB VB _ 33 advcl _ _ 11 apart _ ADV RB _ 10 advmod _ _ 12 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 13 as _ SCONJ IN _ 19 mark _ _ 14 the _ DET DT _ 18 det _ _ 15 Dow _ PROPN NNP _ 18 compound _ _ 16 Jones _ PROPN NNP _ 18 compound _ _ 17 Industrial _ PROPN NNP _ 18 compound _ _ 18 Average _ PROPN NNP _ 19 nsubj _ _ 19 plunged _ VERB VBD _ 10 advcl _ _ 20 190.58 _ NUM CD _ 21 nummod _ _ 21 points _ NOUN NNS _ 19 dobj _ _ 22 -- _ PUNCT : _ 23 punct _ _ 23 most _ ADJ JJS _ 21 dep _ _ 24 of _ ADP IN _ 25 case _ _ 25 it _ PRON PRP _ 23 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 final _ ADJ JJ _ 29 amod _ _ 29 hour _ NOUN NN _ 23 nmod _ _ 30 -- _ PUNCT : _ 23 punct _ _ 31 it _ PRON PRP _ 33 nsubj _ _ 32 barely _ ADV RB _ 33 advmod _ _ 33 managed _ VERB VBD _ 0 root _ _ 34 to _ PART TO _ 35 mark _ _ 35 stay _ VERB VB _ 33 xcomp _ _ 36 this _ DET DT _ 37 det _ _ 37 side _ NOUN NN _ 35 dobj _ _ 38 of _ ADP IN _ 39 case _ _ 39 chaos _ NOUN NN _ 37 nmod _ _ 40 . _ PUNCT . _ 33 punct _ _ 1 Some _ DET DT _ 4 det _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 circuit _ NOUN NN _ 4 compound _ _ 4 breakers _ NOUN NNS _ 12 nsubj _ _ 5 '' _ PUNCT '' _ 4 punct _ _ 6 installed _ VERB VBN _ 4 acl _ _ 7 after _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 October _ PROPN NNP _ 11 compound _ _ 10 1987 _ NUM CD _ 11 nummod _ _ 11 crash _ NOUN NN _ 6 nmod _ _ 12 failed _ VERB VBD _ 0 root _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 first _ ADJ JJ _ 15 amod _ _ 15 test _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 traders _ NOUN NNS _ 18 nsubj _ _ 18 say _ VERB VBP _ 12 parataxis _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 unable _ ADJ JJ _ 12 xcomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 cool _ VERB VB _ 20 xcomp _ _ 23 the _ DET DT _ 25 det _ _ 24 selling _ NOUN NN _ 25 compound _ _ 25 panic _ NOUN NN _ 22 dobj _ _ 26 in _ ADP IN _ 28 case _ _ 27 both _ DET DT _ 28 cc:preconj _ _ 28 stocks _ NOUN NNS _ 25 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 futures _ NOUN NNS _ 28 conj _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 49 _ NUM CD _ 5 nummod _ _ 3 stock _ NOUN NN _ 5 compound _ _ 4 specialist _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 31 nsubj _ _ 6 on _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 Big _ PROPN NNP _ 10 compound _ _ 9 Board _ PROPN NNP _ 10 compound _ _ 10 floor _ NOUN NN _ 5 nmod _ _ 11 -- _ PUNCT : _ 5 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 buyers _ NOUN NNS _ 5 dep _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 sellers _ NOUN NNS _ 13 conj _ _ 16 of _ ADP IN _ 18 case _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 resort _ NOUN NN _ 13 nmod _ _ 19 who _ PRON WP _ 21 nsubjpass _ _ 20 were _ AUX VBD _ 21 auxpass _ _ 21 criticized _ VERB VBN _ 13 acl:relcl _ _ 22 after _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 1987 _ NUM CD _ 25 nummod _ _ 25 crash _ NOUN NN _ 21 nmod _ _ 26 -- _ PUNCT : _ 5 punct _ _ 27 once _ ADV RB _ 28 advmod _ _ 28 again _ ADV RB _ 31 advmod _ _ 29 could _ AUX MD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 handle _ VERB VB _ 0 root _ _ 32 the _ DET DT _ 34 det _ _ 33 selling _ NOUN NN _ 34 compound _ _ 34 pressure _ NOUN NN _ 31 dobj _ _ 35 . _ PUNCT . _ 31 punct _ _ 1 Big _ ADJ JJ _ 3 amod _ _ 2 investment _ NOUN NN _ 3 compound _ _ 3 banks _ NOUN NNS _ 4 nsubj _ _ 4 refused _ VERB VBD _ 25 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 step _ VERB VB _ 4 xcomp _ _ 7 up _ ADP RP _ 6 advmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 plate _ NOUN NN _ 7 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 support _ VERB VB _ 6 xcomp _ _ 13 the _ DET DT _ 16 det _ _ 14 beleaguered _ ADJ JJ _ 16 amod _ _ 15 floor _ NOUN NN _ 16 compound _ _ 16 traders _ NOUN NNS _ 12 dobj _ _ 17 by _ SCONJ IN _ 18 mark _ _ 18 buying _ VERB VBG _ 12 advcl _ _ 19 big _ ADJ JJ _ 20 amod _ _ 20 blocks _ NOUN NNS _ 18 dobj _ _ 21 of _ ADP IN _ 22 case _ _ 22 stock _ NOUN NN _ 20 nmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 traders _ NOUN NNS _ 25 nsubj _ _ 25 say _ VERB VBP _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Heavy _ ADJ JJ _ 2 amod _ _ 2 selling _ NOUN NN _ 14 nsubj _ _ 3 of _ ADP IN _ 10 case _ _ 4 Standard _ PROPN NNP _ 10 nmod:poss _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Poor _ PROPN NNP _ 4 conj _ _ 7 's _ PART POS _ 4 case _ _ 8 500-stock _ ADJ JJ _ 10 amod _ _ 9 index _ NOUN NN _ 10 compound _ _ 10 futures _ NOUN NNS _ 2 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Chicago _ PROPN NNP _ 2 nmod _ _ 13 relentlessly _ ADV RB _ 14 advmod _ _ 14 beat _ VERB VBD _ 0 root _ _ 15 stocks _ NOUN NNS _ 14 dobj _ _ 16 downward _ ADV RB _ 14 advmod _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 Seven _ NUM NNP _ 4 nummod _ _ 2 Big _ PROPN NNP _ 4 compound _ _ 3 Board _ PROPN NNP _ 4 compound _ _ 4 stocks _ NOUN NNS _ 25 nsubj _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 UAL _ PROPN NNP _ 4 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 AMR _ PROPN NNP _ 6 conj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 BankAmerica _ PROPN NNP _ 6 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 Walt _ PROPN NNP _ 13 compound _ _ 13 Disney _ PROPN NNP _ 6 conj _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 Capital _ PROPN NNP _ 16 compound _ _ 16 Cities/ABC _ PROPN NNP _ 6 conj _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 Philip _ PROPN NNP _ 19 compound _ _ 19 Morris _ PROPN NNP _ 6 conj _ _ 20 and _ CONJ CC _ 6 cc _ _ 21 Pacific _ PROPN NNP _ 23 compound _ _ 22 Telesis _ PROPN NNP _ 23 compound _ _ 23 Group _ PROPN NNP _ 6 conj _ _ 24 -- _ PUNCT : _ 4 punct _ _ 25 stopped _ VERB VBD _ 0 root _ _ 26 trading _ VERB NN _ 25 xcomp _ _ 27 and _ CONJ CC _ 25 cc _ _ 28 never _ ADV RB _ 29 neg _ _ 29 resumed _ VERB VBN _ 25 conj _ _ 30 . _ PUNCT . _ 25 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 finger-pointing _ NOUN JJ _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 already _ ADV RB _ 5 advmod _ _ 5 begun _ VERB VBN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 equity _ NOUN NN _ 4 compound _ _ 4 market _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 illiquid _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Once _ ADV RB _ 2 advmod _ _ 2 again _ ADV RB _ 9 advmod _ _ 3 -LCB- _ PUNCT -LRB- _ 9 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 specialists _ NOUN NNS _ 9 nsubj _ _ 6 -RCB- _ PUNCT -RRB- _ 9 punct _ _ 7 were _ VERB VBD _ 9 cop _ _ 8 not _ PART RB _ 9 neg _ _ 9 able _ ADJ JJ _ 25 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 handle _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 imbalances _ NOUN NNS _ 11 dobj _ _ 14 on _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 floor _ NOUN NN _ 13 nmod _ _ 17 of _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 New _ PROPN NNP _ 22 compound _ _ 20 York _ PROPN NNP _ 22 compound _ _ 21 Stock _ PROPN NNP _ 22 compound _ _ 22 Exchange _ PROPN NNP _ 16 nmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Christopher _ PROPN NNP _ 27 compound _ _ 27 Pedersen _ PROPN NNP _ 25 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 senior _ ADJ JJ _ 31 amod _ _ 30 vice _ NOUN NN _ 31 compound _ _ 31 president _ NOUN NN _ 27 appos _ _ 32 at _ ADP IN _ 35 case _ _ 33 Twenty-First _ PROPN NNP _ 35 compound _ _ 34 Securities _ PROPN NNP _ 35 compound _ _ 35 Corp _ PROPN NNP _ 31 nmod _ _ 36 . _ PUNCT . _ 25 punct _ _ 1 Countered _ VERB VBN _ 0 root _ _ 2 James _ PROPN NNP _ 3 compound _ _ 3 Maguire _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chairman _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 10 case _ _ 7 specialists _ NOUN NNS _ 10 compound _ _ 8 Henderson _ PROPN NNP _ 10 compound _ _ 9 Brothers _ PROPN NNPS _ 10 compound _ _ 10 Inc. _ PROPN NNP _ 5 nmod _ _ 11 : _ PUNCT : _ 1 punct _ _ 12 `` _ PUNCT `` _ 1 punct _ _ 13 It _ PRON PRP _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 easy _ ADJ JJ _ 1 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 say _ VERB VB _ 15 xcomp _ _ 18 the _ DET DT _ 19 det _ _ 19 specialist _ NOUN NN _ 22 nsubj _ _ 20 is _ AUX VBZ _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 doing _ VERB VBG _ 17 ccomp _ _ 23 his _ PRON PRP$ _ 24 nmod:poss _ _ 24 job _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 1 punct _ _ 1 When _ ADV WRB _ 7 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 dollar _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 free-fall _ NOUN NN _ 14 advcl _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 even _ ADV RB _ 11 advmod _ _ 10 central _ ADJ JJ _ 11 amod _ _ 11 banks _ NOUN NNS _ 14 nsubj _ _ 12 ca _ AUX MD _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 stop _ VERB VB _ 0 root _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 Speculators _ NOUN NNS _ 3 nsubj _ _ 2 are _ AUX VBP _ 3 aux _ _ 3 calling _ VERB VBG _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 degree _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 liquidity _ NOUN NN _ 6 nmod _ _ 9 that _ PRON WDT _ 15 nsubj _ _ 10 is _ VERB VBZ _ 15 cop _ _ 11 not _ PART RB _ 15 neg _ _ 12 there _ ADV RB _ 15 advmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 6 acl:relcl _ _ 16 . _ PUNCT . _ 3 punct _ _ 17 '' _ PUNCT '' _ 3 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 money _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 some _ DET DT _ 6 det _ _ 6 traders _ NOUN NNS _ 3 conj _ _ 7 had _ AUX VBD _ 9 aux _ _ 8 already _ ADV RB _ 9 advmod _ _ 9 left _ VERB VBN _ 0 root _ _ 10 their _ PRON PRP$ _ 11 nmod:poss _ _ 11 offices _ NOUN NNS _ 9 dobj _ _ 12 early _ ADV RB _ 14 advmod _ _ 13 Friday _ PROPN NNP _ 14 compound _ _ 14 afternoon _ NOUN NN _ 9 nmod:tmod _ _ 15 on _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 warm _ ADJ JJ _ 19 amod _ _ 18 autumn _ NOUN NN _ 19 compound _ _ 19 day _ NOUN NN _ 9 nmod _ _ 20 -- _ PUNCT : _ 9 punct _ _ 21 because _ SCONJ IN _ 27 mark _ _ 22 the _ DET DT _ 24 det _ _ 23 stock _ NOUN NN _ 24 compound _ _ 24 market _ NOUN NN _ 27 nsubj _ _ 25 was _ VERB VBD _ 27 cop _ _ 26 so _ ADV RB _ 27 advmod _ _ 27 quiet _ ADJ JJ _ 9 advcl _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 Then _ ADV RB _ 15 advmod _ _ 2 in _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 5 det _ _ 4 lightning _ NOUN NN _ 5 compound _ _ 5 plunge _ NOUN NN _ 15 nmod _ _ 6 , _ PUNCT , _ 15 punct _ _ 7 the _ DET DT _ 10 det _ _ 8 Dow _ PROPN NNP _ 10 compound _ _ 9 Jones _ PROPN NNP _ 10 compound _ _ 10 industrials _ NOUN NNS _ 15 nsubj _ _ 11 in _ ADP IN _ 14 case _ _ 12 barely _ ADV RB _ 13 advmod _ _ 13 an _ DET DT _ 14 nummod _ _ 14 hour _ NOUN NN _ 15 nmod _ _ 15 surrendered _ VERB VBD _ 0 root _ _ 16 about _ ADV IN _ 17 advmod _ _ 17 a _ DET DT _ 18 nummod _ _ 18 third _ ADJ JJ _ 15 dobj _ _ 19 of _ ADP IN _ 21 case _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 gains _ NOUN NNS _ 18 nmod _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 21 nmod:tmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 chalking _ VERB VBG _ 15 advcl _ _ 26 up _ ADP RP _ 25 compound:prt _ _ 27 a _ DET DT _ 34 det _ _ 28 190.58-point _ ADJ JJ _ 34 amod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 or _ CONJ CC _ 28 cc _ _ 31 6.9 _ NUM CD _ 32 compound _ _ 32 % _ SYM NN _ 28 conj _ _ 33 , _ PUNCT , _ 28 punct _ _ 34 loss _ NOUN NN _ 25 dobj _ _ 35 on _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 day _ NOUN NN _ 34 nmod _ _ 38 in _ ADP IN _ 41 case _ _ 39 gargantuan _ ADJ JJ _ 41 amod _ _ 40 trading _ NOUN NN _ 41 compound _ _ 41 volume _ NOUN NN _ 25 nmod _ _ 42 . _ PUNCT . _ 15 punct _ _ 1 Final-hour _ ADJ JJ _ 2 amod _ _ 2 trading _ NOUN NN _ 3 nsubj _ _ 3 accelerated _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 7 case _ _ 5 108.1 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 7 nummod _ _ 7 shares _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 10 det _ _ 10 record _ NOUN NN _ 7 appos _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Big _ PROPN NNP _ 14 compound _ _ 14 Board _ PROPN NNP _ 10 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 end _ NOUN NN _ 12 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 day _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 251.2 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 shares _ NOUN NNS _ 12 nsubjpass _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 traded _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Dow _ PROPN NNP _ 4 compound _ _ 3 Jones _ PROPN NNP _ 4 compound _ _ 4 industrials _ NOUN NNS _ 5 nsubj _ _ 5 closed _ VERB VBD _ 0 root _ _ 6 at _ ADP IN _ 7 case _ _ 7 2569.26 _ NUM CD _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decline _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 second _ ADJ JJ _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 point _ NOUN NN _ 9 compound _ _ 9 terms _ NOUN NNS _ 6 nmod _ _ 10 only _ ADV RB _ 16 advmod _ _ 11 to _ ADP TO _ 16 case _ _ 12 the _ DET DT _ 16 det _ _ 13 508-point _ ADJ JJ _ 16 amod _ _ 14 Black _ PROPN NNP _ 16 compound _ _ 15 Monday _ PROPN NNP _ 16 compound _ _ 16 crash _ NOUN NN _ 6 nmod _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 occurred _ VERB VBD _ 16 acl:relcl _ _ 19 Oct. _ PROPN NNP _ 18 nmod:tmod _ _ 20 19 _ NUM CD _ 19 nummod _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 1987 _ NUM CD _ 19 nummod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 percentage _ NOUN NN _ 3 compound _ _ 3 terms _ NOUN NNS _ 13 nmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 however _ ADV RB _ 13 advmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Dow _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 dive _ NOUN NN _ 13 nsubj _ _ 11 was _ VERB VBD _ 13 cop _ _ 12 the _ DET DT _ 13 det _ _ 13 12th-worst _ ADJ JJ _ 0 root _ _ 14 ever _ ADV RB _ 13 advmod _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 sharpest _ ADJ JJS _ 13 conj _ _ 18 since _ SCONJ IN _ 21 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 21 nsubj _ _ 21 fell _ VERB VBD _ 17 acl _ _ 22 156.83 _ NUM CD _ 21 dobj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 8 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 22 conj _ _ 27 , _ PUNCT , _ 21 punct _ _ 28 a _ DET DT _ 29 det _ _ 29 week _ NOUN NN _ 21 nmod _ _ 30 after _ ADP IN _ 29 case _ _ 31 Black _ PROPN NNP _ 32 compound _ _ 32 Monday _ PROPN NNP _ 29 dep _ _ 33 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 22.6 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 on _ ADP IN _ 8 case _ _ 7 Black _ PROPN NNP _ 8 compound _ _ 8 Monday _ PROPN NNP _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Shares _ PROPN NNS _ 13 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 UAL _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 parent _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 United _ PROPN NNP _ 9 compound _ _ 9 Airlines _ PROPN NNPS _ 6 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 were _ VERB VBD _ 13 cop _ _ 12 extremely _ ADV RB _ 13 advmod _ _ 13 active _ ADJ JJ _ 0 root _ _ 14 all _ DET DT _ 15 det _ _ 15 day _ NOUN NN _ 13 nmod:tmod _ _ 16 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 reacting _ VERB VBG _ 13 advcl _ _ 19 to _ ADP TO _ 20 case _ _ 20 news _ NOUN NN _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 rumors _ NOUN NNS _ 20 conj _ _ 23 about _ ADP IN _ 29 case _ _ 24 the _ DET DT _ 29 det _ _ 25 proposed _ VERB VBN _ 29 amod _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 6.79 _ NUM CD _ 28 compound _ _ 28 billion _ NUM CD _ 26 nummod _ _ 29 buy-out _ NOUN NN _ 20 nmod _ _ 30 of _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 airline _ NOUN NN _ 29 nmod _ _ 33 by _ ADP IN _ 36 case _ _ 34 an _ DET DT _ 36 det _ _ 35 employee-management _ ADJ NN _ 36 amod _ _ 36 group _ NOUN NN _ 29 nmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 1 Wall _ PROPN NNP _ 2 compound _ _ 2 Street _ PROPN NNP _ 10 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 takeover-stock _ ADJ NN _ 5 amod _ _ 5 speculators _ NOUN NNS _ 10 conj _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 or _ CONJ CC _ 10 cc _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 risk _ NOUN NN _ 10 compound _ _ 10 arbitragers _ NOUN NNS _ 14 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 placed _ VERB VBN _ 0 root _ _ 15 unusually _ ADV RB _ 16 advmod _ _ 16 large _ ADJ JJ _ 17 amod _ _ 17 bets _ NOUN NNS _ 14 dobj _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 a _ DET DT _ 20 det _ _ 20 takeover _ NOUN NN _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 succeed _ VERB VB _ 17 ccomp _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 UAL _ PROPN NNP _ 25 compound _ _ 25 stock _ NOUN NN _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 rise _ VERB VB _ 22 conj _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 2:43 _ NUM CD _ 4 nummod _ _ 3 p.m. _ ADV RB _ 4 advmod _ _ 4 EDT _ PROPN NNP _ 6 dep _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 came _ VERB VBD _ 15 dep _ _ 7 the _ DET DT _ 9 det _ _ 8 sickening _ ADJ JJ _ 9 amod _ _ 9 news _ NOUN NN _ 6 nsubj _ _ 10 : _ PUNCT : _ 15 punct _ _ 11 The _ DET DT _ 13 det _ _ 12 Big _ PROPN NNP _ 13 compound _ _ 13 Board _ PROPN NNP _ 15 nsubj _ _ 14 was _ AUX VBD _ 15 aux _ _ 15 halting _ VERB VBG _ 0 root _ _ 16 trading _ VERB NN _ 15 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 UAL _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 `` _ PUNCT `` _ 15 punct _ _ 21 pending _ VERB VBG _ 22 case _ _ 22 news _ NOUN NN _ 15 nmod _ _ 23 . _ PUNCT . _ 15 punct _ _ 24 '' _ PUNCT '' _ 15 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 exchange _ NOUN NN _ 4 compound _ _ 4 floor _ NOUN NN _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 `` _ PUNCT `` _ 15 punct _ _ 7 as _ ADV RB _ 8 advmod _ _ 8 soon _ ADV RB _ 15 advmod _ _ 9 as _ SCONJ IN _ 11 mark _ _ 10 UAL _ PROPN NNP _ 11 nsubj _ _ 11 stopped _ VERB VBD _ 8 advcl _ _ 12 trading _ VERB NN _ 11 xcomp _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 we _ PRON PRP _ 15 nsubj _ _ 15 braced _ VERB VBD _ 21 ccomp _ _ 16 for _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 panic _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 one _ NUM CD _ 25 nummod _ _ 23 top _ ADJ JJ _ 25 amod _ _ 24 floor _ NOUN NN _ 25 compound _ _ 25 trader _ NOUN NN _ 21 nsubj _ _ 26 . _ PUNCT . _ 21 punct _ _ 1 Several _ ADJ JJ _ 2 amod _ _ 2 traders _ NOUN NNS _ 5 nsubjpass _ _ 3 could _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 seen _ VERB VBN _ 0 root _ _ 6 shaking _ VERB VBG _ 5 xcomp _ _ 7 their _ PRON PRP$ _ 8 nmod:poss _ _ 8 heads _ NOUN NNS _ 6 dobj _ _ 9 when _ ADV WRB _ 12 advmod _ _ 10 the _ DET DT _ 11 det _ _ 11 news _ NOUN NN _ 12 nsubj _ _ 12 flashed _ VERB VBD _ 5 advcl _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 weeks _ NOUN NNS _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 8 nsubj _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 nervous _ ADJ JJ _ 0 root _ _ 9 about _ ADP IN _ 10 case _ _ 10 takeovers _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 after _ SCONJ IN _ 18 mark _ _ 13 Campeau _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 cash _ NOUN NN _ 17 compound _ _ 17 crunch _ NOUN NN _ 18 nsubj _ _ 18 spurred _ VERB VBD _ 8 advcl _ _ 19 concern _ NOUN NN _ 18 dobj _ _ 20 about _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 prospects _ NOUN NNS _ 19 nmod _ _ 23 for _ ADP IN _ 27 case _ _ 24 future _ ADJ JJ _ 27 amod _ _ 25 highly _ ADV RB _ 26 advmod _ _ 26 leveraged _ ADJ JJ _ 27 amod _ _ 27 takeovers _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 9 cc _ _ 2 10 _ NUM CD _ 3 nummod _ _ 3 minutes _ NOUN NNS _ 9 nmod _ _ 4 after _ ADP IN _ 3 case _ _ 5 the _ DET DT _ 8 det _ _ 6 UAL _ PROPN NNP _ 8 compound _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 halt _ NOUN NN _ 3 dep _ _ 9 came _ VERB VBD _ 0 root _ _ 10 news _ NOUN NN _ 9 nsubj _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 UAL _ PROPN NNP _ 14 compound _ _ 14 group _ NOUN NN _ 17 nsubj _ _ 15 could _ AUX MD _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 get _ VERB VB _ 10 ccomp _ _ 18 financing _ NOUN VBG _ 17 dobj _ _ 19 for _ ADP IN _ 21 case _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 bid _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 point _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Dow _ PROPN NNP _ 7 nsubj _ _ 7 was _ VERB VBD _ 0 root _ _ 8 down _ ADV RB _ 7 advmod _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 35 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 8 nmod:npmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 crumbled _ VERB VBD _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Arbitragers _ NOUN NNS _ 4 nsubj _ _ 2 could _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 dump _ VERB VB _ 0 root _ _ 5 their _ PRON PRP$ _ 7 nmod:poss _ _ 6 UAL _ PROPN NNP _ 7 compound _ _ 7 stock _ NOUN NN _ 4 dobj _ _ 8 -- _ PUNCT : _ 4 punct _ _ 9 but _ CONJ CC _ 4 cc _ _ 10 they _ PRON PRP _ 11 nsubj _ _ 11 rid _ VERB VBP _ 4 conj _ _ 12 themselves _ PRON PRP _ 11 dobj _ _ 13 of _ ADP IN _ 19 case _ _ 14 nearly _ ADV RB _ 15 advmod _ _ 15 every _ DET DT _ 19 amod _ _ 16 `` _ PUNCT `` _ 19 punct _ _ 17 rumor _ NOUN NN _ 19 compound _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 stock _ NOUN NN _ 11 nmod _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 had _ VERB VBD _ 19 acl:relcl _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 selling _ NOUN NN _ 6 nsubj _ _ 6 caused _ VERB VBN _ 0 root _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 halts _ NOUN NNS _ 6 dobj _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 declared _ VERB VBN _ 6 xcomp _ _ 12 in _ ADP IN _ 14 case _ _ 13 USAir _ PROPN NNP _ 14 compound _ _ 14 Group _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 closed _ VERB VBD _ 14 acl:relcl _ _ 18 down _ ADV RB _ 17 advmod _ _ 19 3 _ NUM CD _ 20 compound _ _ 20 7/8 _ NUM CD _ 18 nmod:npmod _ _ 21 to _ ADP TO _ 23 case _ _ 22 41 _ NUM CD _ 23 compound _ _ 23 1/2 _ NUM CD _ 18 nmod _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 Delta _ PROPN NNP _ 27 compound _ _ 26 Air _ PROPN NNP _ 27 compound _ _ 27 Lines _ PROPN NNPS _ 14 conj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 which _ PRON WDT _ 30 nsubj _ _ 30 fell _ VERB VBD _ 27 acl:relcl _ _ 31 7 _ NUM CD _ 32 compound _ _ 32 3/4 _ NUM CD _ 30 dobj _ _ 33 to _ ADP TO _ 35 case _ _ 34 69 _ NUM CD _ 35 compound _ _ 35 1/4 _ NUM CD _ 30 nmod _ _ 36 , _ PUNCT , _ 14 punct _ _ 37 and _ CONJ CC _ 14 cc _ _ 38 Philips _ PROPN NNP _ 39 compound _ _ 39 Industries _ PROPN NNPS _ 14 conj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 which _ PRON WDT _ 42 nsubj _ _ 42 sank _ VERB VBD _ 39 acl:relcl _ _ 43 3 _ NUM CD _ 42 dobj _ _ 44 to _ ADP TO _ 46 case _ _ 45 21 _ NUM CD _ 46 compound _ _ 46 1/2 _ NUM CD _ 42 nmod _ _ 47 . _ PUNCT . _ 6 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 stocks _ NOUN NNS _ 4 nsubj _ _ 3 eventually _ ADV RB _ 4 advmod _ _ 4 reopened _ VERB VBD _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 as _ SCONJ IN _ 4 mark _ _ 3 panic _ NOUN NN _ 4 nsubj _ _ 4 spread _ VERB NN _ 7 advcl _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 speculators _ NOUN NNS _ 7 nsubj _ _ 7 began _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 sell _ VERB VB _ 7 xcomp _ _ 10 blue-chip _ ADJ JJ _ 11 amod _ _ 11 stocks _ NOUN NNS _ 9 dobj _ _ 12 such _ ADJ JJ _ 15 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 Philip _ PROPN NNP _ 15 compound _ _ 15 Morris _ PROPN NNP _ 11 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 International _ PROPN NNP _ 19 compound _ _ 18 Business _ PROPN NNP _ 19 compound _ _ 19 Machines _ PROPN NNPS _ 15 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 offset _ VERB VB _ 9 advcl _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 losses _ NOUN NNS _ 21 dobj _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 trading _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 halted _ VERB VBN _ 12 advcl _ _ 5 in _ ADP IN _ 7 case _ _ 6 Philip _ PROPN NNP _ 7 compound _ _ 7 Morris _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 stock _ NOUN NN _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 trading _ VERB VBG _ 0 root _ _ 13 at _ ADP IN _ 14 case _ _ 14 41 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 down _ ADV RB _ 12 advmod _ _ 17 3 _ NUM CD _ 18 compound _ _ 18 3/8 _ NUM CD _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 while _ SCONJ IN _ 22 mark _ _ 21 IBM _ PROPN NNP _ 22 nsubj _ _ 22 closed _ VERB VBD _ 12 advcl _ _ 23 5 _ NUM CD _ 24 compound _ _ 24 5/8 _ NUM CD _ 25 nmod:npmod _ _ 25 lower _ ADJ JJR _ 22 advmod _ _ 26 at _ ADP IN _ 27 case _ _ 27 102 _ NUM CD _ 22 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 Selling _ NOUN VBG _ 2 nsubj _ _ 2 snowballed _ VERB VBD _ 0 root _ _ 3 because _ ADP IN _ 5 case _ _ 4 of _ ADP IN _ 3 mwe _ _ 5 waves _ NOUN NNS _ 2 nmod _ _ 6 of _ ADP IN _ 11 case _ _ 7 automatic _ ADJ JJ _ 11 amod _ _ 8 `` _ PUNCT `` _ 11 punct _ _ 9 stop-loss _ ADJ NN _ 11 amod _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 orders _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 15 nsubjpass _ _ 14 are _ AUX VBP _ 15 auxpass _ _ 15 triggered _ VERB VBN _ 11 acl:relcl _ _ 16 by _ ADP IN _ 17 case _ _ 17 computer _ NOUN NN _ 15 nmod _ _ 18 when _ ADV WRB _ 20 advmod _ _ 19 prices _ NOUN NNS _ 20 nsubj _ _ 20 fall _ VERB VBP _ 15 advcl _ _ 21 to _ ADP TO _ 23 case _ _ 22 certain _ ADJ JJ _ 23 amod _ _ 23 levels _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 Most _ ADJ JJS _ 7 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 stock _ NOUN NN _ 6 compound _ _ 5 selling _ NOUN NN _ 6 compound _ _ 6 pressure _ NOUN NN _ 1 nmod _ _ 7 came _ VERB VBD _ 0 root _ _ 8 from _ ADP IN _ 11 case _ _ 9 Wall _ PROPN NNP _ 11 compound _ _ 10 Street _ PROPN NNP _ 11 compound _ _ 11 professionals _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 including _ VERB VBG _ 16 case _ _ 14 computer-guided _ ADJ JJ _ 16 amod _ _ 15 program _ NOUN NN _ 16 compound _ _ 16 traders _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 most _ ADJ JJS _ 15 nsubj _ _ 4 of _ ADP IN _ 8 case _ _ 5 their _ PRON PRP$ _ 8 nmod:poss _ _ 6 major _ ADJ JJ _ 8 amod _ _ 7 institutional _ ADJ JJ _ 8 amod _ _ 8 investors _ NOUN NNS _ 3 nmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 on _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 other _ ADJ JJ _ 13 amod _ _ 13 hand _ NOUN NN _ 15 nmod _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 sat _ VERB VBD _ 2 ccomp _ _ 16 tight _ ADV JJ _ 15 advmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 15 advmod _ _ 2 , _ PUNCT , _ 15 punct _ _ 3 at _ ADP IN _ 4 case _ _ 4 3:07 _ NUM CD _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 one _ NUM CD _ 15 nsubj _ _ 7 of _ ADP IN _ 13 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 post-crash _ ADJ JJ _ 13 amod _ _ 12 `` _ PUNCT `` _ 13 punct _ _ 13 reforms _ NOUN NNS _ 6 nmod _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 took _ VERB VBD _ 0 root _ _ 16 hold _ NOUN NN _ 15 dobj _ _ 17 as _ SCONJ IN _ 24 mark _ _ 18 the _ DET DT _ 22 det _ _ 19 S&P _ PROPN NNP _ 22 compound _ _ 20 500 _ NUM CD _ 22 nummod _ _ 21 futures _ NOUN NNS _ 22 compound _ _ 22 contract _ NOUN NN _ 24 nsubj _ _ 23 had _ AUX VBD _ 24 aux _ _ 24 plunged _ VERB VBN _ 15 advcl _ _ 25 12 _ NUM CD _ 26 nummod _ _ 26 points _ NOUN NNS _ 24 dobj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 equivalent _ ADJ JJ _ 26 amod _ _ 29 to _ ADP TO _ 33 case _ _ 30 around _ ADP IN _ 32 advmod _ _ 31 a _ DET DT _ 32 advmod _ _ 32 100-point _ ADJ JJ _ 33 nummod _ _ 33 drop _ NOUN NN _ 28 nmod _ _ 34 in _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 Dow _ PROPN NNP _ 37 compound _ _ 37 industrials _ NOUN NNS _ 33 nmod _ _ 38 . _ PUNCT . _ 15 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 18 nmod _ _ 4 signed _ VERB VBN _ 3 acl _ _ 5 by _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Big _ PROPN NNP _ 8 compound _ _ 8 Board _ PROPN NNP _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 the _ DET DT _ 13 det _ _ 11 Chicago _ PROPN NNP _ 13 compound _ _ 12 Mercantile _ PROPN NNP _ 13 compound _ _ 13 Exchange _ PROPN NNP _ 8 conj _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 trading _ NOUN NN _ 18 nsubjpass _ _ 16 was _ AUX VBD _ 18 auxpass _ _ 17 temporarily _ ADV RB _ 18 advmod _ _ 18 halted _ VERB VBN _ 0 root _ _ 19 in _ ADP IN _ 20 case _ _ 20 Chicago _ PROPN NNP _ 18 nmod _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 trading _ NOUN NN _ 4 compound _ _ 4 halt _ NOUN NN _ 16 nmod _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 S&P _ PROPN NNP _ 9 compound _ _ 8 500 _ NUM CD _ 9 nummod _ _ 9 pit _ NOUN NN _ 4 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Chicago _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 waves _ NOUN NNS _ 16 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 selling _ NOUN VBG _ 13 nmod _ _ 16 continued _ VERB VBN _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 hit _ VERB VB _ 16 xcomp _ _ 19 stocks _ NOUN NNS _ 18 dobj _ _ 20 themselves _ PRON PRP _ 19 nmod:npmod _ _ 21 on _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 Big _ PROPN NNP _ 24 compound _ _ 24 Board _ PROPN NNP _ 18 nmod _ _ 25 , _ PUNCT , _ 16 punct _ _ 26 and _ CONJ CC _ 16 cc _ _ 27 specialists _ NOUN NNS _ 28 nsubj _ _ 28 continued _ VERB VBD _ 16 conj _ _ 29 to _ PART TO _ 30 mark _ _ 30 notch _ VERB VB _ 28 xcomp _ _ 31 prices _ NOUN NNS _ 30 dobj _ _ 32 down _ ADP RB _ 30 advmod _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 13 nmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 link _ NOUN NN _ 13 nsubj _ _ 7 between _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 futures _ NOUN NNS _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 markets _ NOUN NNS _ 9 conj _ _ 13 ripped _ VERB VBD _ 0 root _ _ 14 apart _ ADV RB _ 13 advmod _ _ 15 . _ PUNCT . _ 13 punct _ _ 1 Without _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 guidepost _ NOUN NN _ 24 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 stock-index _ ADJ NN _ 6 amod _ _ 6 futures _ NOUN NNS _ 3 nmod _ _ 7 -- _ PUNCT : _ 6 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 barometer _ NOUN NN _ 6 dep _ _ 10 of _ SCONJ IN _ 13 mark _ _ 11 where _ ADV WRB _ 13 advmod _ _ 12 traders _ NOUN NNS _ 13 nsubj _ _ 13 think _ VERB VBP _ 9 acl _ _ 14 the _ DET DT _ 17 det _ _ 15 overall _ ADJ JJ _ 17 amod _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 19 nsubjpass _ _ 18 is _ AUX VBZ _ 19 auxpass _ _ 19 headed _ VERB VBN _ 13 ccomp _ _ 20 -- _ PUNCT : _ 6 punct _ _ 21 many _ ADJ JJ _ 22 amod _ _ 22 traders _ NOUN NNS _ 24 nsubj _ _ 23 were _ VERB VBD _ 24 cop _ _ 24 afraid _ ADJ JJ _ 0 root _ _ 25 to _ PART TO _ 26 mark _ _ 26 trust _ VERB VB _ 24 xcomp _ _ 27 stock _ NOUN NN _ 28 compound _ _ 28 prices _ NOUN NNS _ 26 dobj _ _ 29 quoted _ VERB VBN _ 28 acl _ _ 30 on _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 Big _ PROPN NNP _ 33 compound _ _ 33 Board _ PROPN NNP _ 29 nmod _ _ 34 . _ PUNCT . _ 24 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 halt _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 even _ ADV RB _ 6 advmod _ _ 6 assailed _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 11 case _ _ 8 Big _ PROPN NNP _ 11 compound _ _ 9 Board _ PROPN NNP _ 11 compound _ _ 10 floor _ NOUN NN _ 11 compound _ _ 11 traders _ NOUN NNS _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 screwed _ VERB VBD _ 8 ccomp _ _ 4 things _ NOUN NNS _ 3 dobj _ _ 5 up _ ADP RP _ 3 compound:prt _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 one _ NUM CD _ 11 nummod _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 specialist _ NOUN NN _ 8 nsubj _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 confusion _ NOUN NN _ 4 nsubj _ _ 3 effectively _ ADV RB _ 4 advmod _ _ 4 halted _ VERB VBD _ 0 root _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 form _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 program _ NOUN NN _ 9 compound _ _ 9 trading _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 stock _ NOUN NN _ 13 compound _ _ 12 index _ NOUN NN _ 13 compound _ _ 13 arbitrage _ NOUN NN _ 6 appos _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 closely _ ADV RB _ 17 advmod _ _ 17 links _ VERB VBZ _ 6 acl:relcl _ _ 18 the _ DET DT _ 19 det _ _ 19 futures _ NOUN NNS _ 17 dobj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 markets _ NOUN NNS _ 19 conj _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 and _ CONJ CC _ 17 cc _ _ 25 has _ AUX VBZ _ 27 aux _ _ 26 been _ AUX VBN _ 27 auxpass _ _ 27 blamed _ VERB VBN _ 17 conj _ _ 28 by _ ADP IN _ 29 case _ _ 29 some _ DET DT _ 27 nmod _ _ 30 for _ ADP IN _ 35 case _ _ 31 the _ DET DT _ 32 det _ _ 32 market _ NOUN NN _ 35 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 big _ ADJ JJ _ 35 amod _ _ 35 swings _ NOUN NNS _ 27 nmod _ _ 36 . _ PUNCT . _ 4 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 2 In _ ADP IN _ 7 case _ _ 3 a _ DET DT _ 7 det _ _ 4 stock-index _ ADJ NN _ 7 amod _ _ 5 arbitrage _ NOUN NN _ 7 compound _ _ 6 sell _ NOUN VBP _ 7 compound _ _ 7 program _ NOUN NN _ 10 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 traders _ NOUN NNS _ 10 nsubj _ _ 10 buy _ VERB VBP _ 0 root _ _ 11 or _ CONJ CC _ 10 cc _ _ 12 sell _ VERB VBP _ 10 conj _ _ 13 big _ ADJ JJ _ 14 amod _ _ 14 baskets _ NOUN NNS _ 10 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 stocks _ NOUN NNS _ 14 nmod _ _ 17 and _ CONJ CC _ 10 cc _ _ 18 offset _ VERB VBP _ 10 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 trade _ NOUN NN _ 18 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 futures _ NOUN NNS _ 20 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 lock _ VERB VB _ 18 advcl _ _ 25 in _ ADP RP _ 24 compound:prt _ _ 26 a _ DET DT _ 28 det _ _ 27 price _ NOUN NN _ 28 compound _ _ 28 difference _ NOUN NN _ 24 dobj _ _ 29 . _ PUNCT . _ 10 punct _ _ 30 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 When _ ADV WRB _ 6 advmod _ _ 3 the _ DET DT _ 5 det _ _ 4 airline _ NOUN NN _ 5 compound _ _ 5 information _ NOUN NN _ 6 nsubj _ _ 6 came _ VERB VBD _ 10 advcl _ _ 7 through _ ADP IN _ 6 compound:prt _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 cracked _ VERB VBD _ 20 ccomp _ _ 11 every _ DET DT _ 12 det _ _ 12 model _ NOUN NN _ 10 dobj _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 had _ VERB VBD _ 12 acl:relcl _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 marketplace _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 managing _ NOUN NN _ 23 compound _ _ 23 director _ NOUN NN _ 20 dep _ _ 24 at _ ADP IN _ 25 case _ _ 25 one _ NUM CD _ 23 nmod _ _ 26 of _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 largest _ ADJ JJS _ 30 amod _ _ 29 program-trading _ NOUN JJ _ 30 compound _ _ 30 firms _ NOUN NNS _ 25 nmod _ _ 31 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 did _ AUX VBD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 even _ ADV RB _ 6 advmod _ _ 6 get _ VERB VB _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 chance _ NOUN NN _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 do _ VERB VB _ 8 acl _ _ 11 the _ DET DT _ 12 det _ _ 12 programs _ NOUN NNS _ 10 dobj _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 wanted _ VERB VBD _ 12 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 do _ VERB VB _ 14 xcomp _ _ 17 . _ PUNCT . _ 6 punct _ _ 18 '' _ PUNCT '' _ 6 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 kept _ VERB VBD _ 0 root _ _ 4 falling _ VERB VBG _ 3 xcomp _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Dow _ PROPN NNP _ 3 compound _ _ 3 industrials _ NOUN NNS _ 9 nsubj _ _ 4 were _ VERB VBD _ 9 cop _ _ 5 down _ ADV RB _ 9 advmod _ _ 6 55 _ NUM CD _ 7 nummod _ _ 7 points _ NOUN NNS _ 5 nmod:npmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 3 _ NUM CD _ 0 root _ _ 10 p.m. _ ADV NN _ 9 advmod _ _ 11 before _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 futures-trading _ ADJ JJ _ 14 amod _ _ 14 halt _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 3:30 _ NUM CD _ 18 nmod _ _ 3 p.m. _ ADV RB _ 2 advmod _ _ 4 , _ PUNCT , _ 18 punct _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 end _ NOUN NN _ 18 nmod _ _ 8 of _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 `` _ PUNCT `` _ 14 punct _ _ 11 cooling _ VERB VBG _ 14 amod _ _ 12 off _ ADP RP _ 14 dep _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 period _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 the _ DET DT _ 17 det _ _ 17 average _ NOUN NN _ 18 nsubj _ _ 18 was _ VERB VBD _ 0 root _ _ 19 down _ ADV RB _ 18 advmod _ _ 20 114.76 _ NUM CD _ 21 nummod _ _ 21 points _ NOUN NNS _ 19 nmod:npmod _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 Meanwhile _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 during _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det:predet _ _ 5 the _ DET DT _ 8 det _ _ 6 S&P _ PROPN NNP _ 8 compound _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 halt _ NOUN NN _ 14 nmod _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 S&P _ PROPN NNP _ 13 compound _ _ 11 futures _ NOUN NNS _ 13 compound _ _ 12 sell _ NOUN VBP _ 13 compound _ _ 13 orders _ NOUN NNS _ 14 nsubj _ _ 14 began _ VERB VBD _ 0 root _ _ 15 piling _ VERB VBG _ 14 xcomp _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 while _ SCONJ IN _ 23 mark _ _ 19 stocks _ NOUN NNS _ 23 nsubj _ _ 20 in _ ADP IN _ 22 case _ _ 21 New _ PROPN NNP _ 22 compound _ _ 22 York _ PROPN NNP _ 19 nmod _ _ 23 kept _ VERB VBD _ 14 advcl _ _ 24 falling _ VERB VBG _ 23 xcomp _ _ 25 sharply _ ADV RB _ 24 advmod _ _ 26 . _ PUNCT . _ 14 punct _ _ 1 Big _ PROPN NNP _ 6 compound _ _ 2 Board _ PROPN NNP _ 6 compound _ _ 3 Chairman _ PROPN NNP _ 6 compound _ _ 4 John _ PROPN NNP _ 6 compound _ _ 5 J. _ PROPN NNP _ 6 compound _ _ 6 Phelan _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 yesterday _ NOUN NN _ 7 nmod:tmod _ _ 9 the _ DET DT _ 11 det _ _ 10 circuit _ NOUN NN _ 11 compound _ _ 11 breaker _ NOUN NN _ 13 nsubj _ _ 12 `` _ PUNCT `` _ 13 punct _ _ 13 worked _ VERB VBD _ 7 ccomp _ _ 14 well _ ADV RB _ 13 advmod _ _ 15 mechanically _ ADV RB _ 13 advmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 3 nsubj _ _ 2 just _ ADV RB _ 3 advmod _ _ 3 think _ VERB VBP _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 's _ VERB VBZ _ 6 cop _ _ 6 nonproductive _ ADJ JJ _ 3 ccomp _ _ 7 at _ ADP IN _ 9 case _ _ 8 this _ DET DT _ 9 det _ _ 9 point _ NOUN NN _ 6 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 get _ VERB VB _ 6 xcomp _ _ 12 into _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 debate _ NOUN NN _ 11 nmod _ _ 15 if _ SCONJ IN _ 20 mark _ _ 16 index _ NOUN NN _ 17 compound _ _ 17 arbitrage _ NOUN NN _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 have _ AUX VB _ 20 aux _ _ 20 helped _ VERB VBN _ 14 ccomp _ _ 21 or _ CONJ CC _ 20 cc _ _ 22 hurt _ VERB VBN _ 20 conj _ _ 23 things _ NOUN NNS _ 20 dobj _ _ 24 . _ PUNCT . _ 3 punct _ _ 25 '' _ PUNCT '' _ 3 punct _ _ 1 Under _ ADP IN _ 4 case _ _ 2 another _ DET DT _ 4 det _ _ 3 post-crash _ ADJ JJ _ 4 amod _ _ 4 system _ NOUN NN _ 25 nmod _ _ 5 , _ PUNCT , _ 25 punct _ _ 6 Big _ PROPN NNP _ 10 compound _ _ 7 Board _ PROPN NNP _ 10 compound _ _ 8 President _ PROPN NNP _ 10 compound _ _ 9 Richard _ PROPN NNP _ 10 compound _ _ 10 Grasso _ PROPN NNP _ 25 nsubj _ _ 11 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Phelan _ PROPN NNP _ 15 nsubj _ _ 14 was _ AUX VBD _ 15 aux _ _ 15 flying _ VERB VBG _ 25 parataxis _ _ 16 to _ ADP TO _ 17 case _ _ 17 Bangkok _ PROPN NNP _ 15 nmod _ _ 18 as _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 22 nsubj _ _ 21 was _ AUX VBD _ 22 aux _ _ 22 falling _ VERB VBG _ 15 advcl _ _ 23 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 24 was _ AUX VBD _ 25 aux _ _ 25 talking _ VERB VBG _ 0 root _ _ 26 on _ ADP IN _ 31 case _ _ 27 an _ DET DT _ 31 det _ _ 28 `` _ PUNCT `` _ 31 punct _ _ 29 inter-exchange _ ADJ JJ _ 31 amod _ _ 30 hot _ ADJ JJ _ 31 amod _ _ 31 line _ NOUN NN _ 25 nmod _ _ 32 '' _ PUNCT '' _ 31 punct _ _ 33 to _ ADP TO _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 other _ ADJ JJ _ 36 amod _ _ 36 exchanges _ NOUN NNS _ 31 nmod _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 the _ DET DT _ 42 det _ _ 39 Securities _ PROPN NNPS _ 42 compound _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 Exchange _ PROPN NNP _ 39 conj _ _ 42 Commission _ PROPN NNP _ 36 conj _ _ 43 and _ CONJ CC _ 36 cc _ _ 44 the _ DET DT _ 47 det _ _ 45 Federal _ PROPN NNP _ 47 compound _ _ 46 Reserve _ PROPN NNP _ 47 compound _ _ 47 Board _ PROPN NNP _ 36 conj _ _ 48 . _ PUNCT . _ 25 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 camped _ VERB VBD _ 0 root _ _ 3 out _ ADP RP _ 2 compound:prt _ _ 4 at _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 high-tech _ ADJ JJ _ 8 amod _ _ 7 nerve _ NOUN NN _ 8 compound _ _ 8 center _ NOUN NN _ 2 nmod _ _ 9 on _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 floor _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Big _ PROPN NNP _ 15 compound _ _ 15 Board _ PROPN NNP _ 11 nmod _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 where _ ADV WRB _ 20 advmod _ _ 18 he _ PRON PRP _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 watch _ VERB VB _ 8 acl:relcl _ _ 21 updates _ NOUN NNS _ 20 dobj _ _ 22 on _ ADP IN _ 23 case _ _ 23 prices _ NOUN NNS _ 21 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 pending _ VERB VBG _ 27 amod _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 orders _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 5 case _ _ 2 about _ ADV IN _ 5 advmod _ _ 3 3:30 _ NUM CD _ 5 nummod _ _ 4 p.m. _ ADV RB _ 5 advmod _ _ 5 EDT _ PROPN NNP _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 S&P _ PROPN NNP _ 8 compound _ _ 8 futures _ NOUN NNS _ 9 nsubj _ _ 9 resumed _ VERB VBD _ 0 root _ _ 10 trading _ VERB NN _ 9 xcomp _ _ 11 , _ PUNCT , _ 9 punct _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 for _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 brief _ ADJ JJ _ 16 amod _ _ 16 time _ NOUN NN _ 22 nmod _ _ 17 the _ DET DT _ 18 det _ _ 18 futures _ NOUN NNS _ 22 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 stock _ NOUN NN _ 21 compound _ _ 21 markets _ NOUN NNS _ 18 conj _ _ 22 started _ VERB VBD _ 9 conj _ _ 23 to _ PART TO _ 24 mark _ _ 24 come _ VERB VB _ 22 xcomp _ _ 25 back _ ADV RB _ 24 advmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 line _ NOUN NN _ 25 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 Buyers _ NOUN NNS _ 2 nsubj _ _ 2 stepped _ VERB VBD _ 0 root _ _ 3 in _ ADP IN _ 2 advmod _ _ 4 to _ ADP TO _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 futures _ NOUN NNS _ 7 compound _ _ 7 pit _ NOUN NN _ 3 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 build-up _ NOUN NN _ 9 nsubj _ _ 4 of _ ADP IN _ 8 case _ _ 5 S&P _ PROPN NNP _ 8 compound _ _ 6 futures _ NOUN NNS _ 8 compound _ _ 7 sell _ NOUN VBP _ 8 compound _ _ 8 orders _ NOUN NNS _ 3 nmod _ _ 9 weighed _ VERB VBD _ 0 root _ _ 10 on _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 market _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 the _ DET DT _ 16 det _ _ 16 link _ NOUN NN _ 19 nsubj _ _ 17 with _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 began _ VERB VBD _ 9 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 fray _ VERB NN _ 19 xcomp _ _ 22 again _ ADV RB _ 21 advmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 about _ ADV IN _ 3 advmod _ _ 3 3:45 _ NUM CD _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 S&P _ PROPN NNP _ 7 compound _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 careened _ VERB VBD _ 0 root _ _ 9 to _ ADP TO _ 12 case _ _ 10 still _ ADV RB _ 11 advmod _ _ 11 another _ DET DT _ 12 amod _ _ 12 limit _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 of _ ADP IN _ 16 case _ _ 15 30 _ NUM CD _ 16 nummod _ _ 16 points _ NOUN NNS _ 12 nmod _ _ 17 down _ ADV RB _ 16 advmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 and _ CONJ CC _ 8 cc _ _ 20 trading _ NOUN NN _ 22 nsubjpass _ _ 21 was _ AUX VBD _ 22 auxpass _ _ 22 locked _ VERB VBN _ 8 conj _ _ 23 again _ ADV RB _ 22 advmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 say _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 S&P _ PROPN NNP _ 7 nsubj _ _ 6 was _ AUX VBD _ 7 aux _ _ 7 signaling _ VERB VBG _ 3 ccomp _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 Dow _ PROPN NNP _ 12 nsubj _ _ 11 could _ AUX MD _ 12 aux _ _ 12 fall _ VERB VB _ 7 ccomp _ _ 13 as _ ADV RB _ 14 advmod _ _ 14 much _ ADJ JJ _ 12 dobj _ _ 15 as _ ADP IN _ 17 case _ _ 16 200 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 During _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 small _ ADJ JJ _ 6 amod _ _ 6 investors _ NOUN NNS _ 7 nsubj _ _ 7 began _ VERB VBD _ 0 root _ _ 8 ringing _ VERB VBG _ 7 xcomp _ _ 9 their _ PRON PRP$ _ 10 nmod:poss _ _ 10 brokers _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 wondering _ VERB VBG _ 7 xcomp _ _ 13 whether _ SCONJ IN _ 17 mark _ _ 14 another _ DET DT _ 15 det _ _ 15 crash _ NOUN NN _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 begun _ VERB VBN _ 12 ccomp _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 Prudential-Bache _ PROPN NNP _ 4 compound _ _ 3 Securities _ PROPN NNPS _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 18 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 trying _ VERB VBG _ 4 acl:relcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 cater _ VERB VB _ 8 xcomp _ _ 11 to _ ADP TO _ 13 case _ _ 12 small _ ADJ JJ _ 13 amod _ _ 13 investors _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 some _ DET DT _ 17 det _ _ 16 demoralized _ ADJ VBN _ 17 amod _ _ 17 brokers _ NOUN NNS _ 18 nsubj _ _ 18 thought _ VERB VBD _ 0 root _ _ 19 this _ PRON DT _ 24 nsubj _ _ 20 would _ AUX MD _ 24 aux _ _ 21 be _ VERB VB _ 24 cop _ _ 22 the _ DET DT _ 24 det _ _ 23 final _ ADJ JJ _ 24 amod _ _ 24 confidence-crusher _ NOUN NN _ 18 ccomp _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 when _ ADV WRB _ 18 advmod _ _ 4 George _ PROPN NNP _ 6 compound _ _ 5 L. _ PROPN NNP _ 6 compound _ _ 6 Ball _ PROPN NNP _ 18 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 chairman _ NOUN NN _ 6 appos _ _ 9 of _ ADP IN _ 16 case _ _ 10 the _ DET DT _ 16 det _ _ 11 Prudential _ PROPN NNP _ 16 dep _ _ 12 Insurance _ PROPN NNP _ 11 compound _ _ 13 Co. _ PROPN NNP _ 11 dep _ _ 14 of _ ADP IN _ 15 case _ _ 15 America _ PROPN NNP _ 11 nmod _ _ 16 unit _ NOUN NN _ 8 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 took _ VERB VBD _ 2 advcl _ _ 19 to _ ADP TO _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 internal _ ADJ JJ _ 23 amod _ _ 22 intercom _ NOUN NN _ 23 compound _ _ 23 system _ NOUN NN _ 18 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 declare _ VERB VB _ 18 xcomp _ _ 26 that _ SCONJ IN _ 32 mark _ _ 27 the _ DET DT _ 28 det _ _ 28 plunge _ NOUN NN _ 32 nsubj _ _ 29 was _ VERB VBD _ 32 cop _ _ 30 only _ ADV RB _ 32 advmod _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 mechanical _ ADJ JJ _ 25 ccomp _ _ 33 . _ PUNCT . _ 2 punct _ _ 34 '' _ PUNCT '' _ 2 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 hunch _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 this _ DET DT _ 9 det _ _ 8 particular _ ADJ JJ _ 9 amod _ _ 9 decline _ NOUN NN _ 12 nsubj _ _ 10 today _ NOUN NN _ 9 nmod:tmod _ _ 11 is _ VERB VBZ _ 12 cop _ _ 12 something _ NOUN NN _ 5 ccomp _ _ 13 ` _ PUNCT `` _ 12 punct _ _ 14 more _ ADJ RBR _ 15 amod _ _ 15 ado _ NOUN JJ _ 12 dep _ _ 16 about _ ADP IN _ 17 case _ _ 17 less _ ADJ JJR _ 15 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 ' _ PUNCT '' _ 3 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 would _ AUX MD _ 5 aux _ _ 3 be _ VERB VB _ 5 cop _ _ 4 my _ PRON PRP$ _ 5 nmod:poss _ _ 5 inclination _ NOUN NN _ 24 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 advise _ VERB VB _ 5 advcl _ _ 8 clients _ NOUN NNS _ 7 dobj _ _ 9 not _ PART RB _ 11 neg _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 7 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 look _ VERB VB _ 11 dep _ _ 15 for _ ADP IN _ 17 case _ _ 16 an _ DET DT _ 17 det _ _ 17 opportunity _ NOUN NN _ 14 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 buy _ VERB VB _ 17 acl _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 '' _ PUNCT '' _ 24 punct _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Ball _ PROPN NNP _ 24 nsubj _ _ 24 told _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 26 det _ _ 26 brokers _ NOUN NNS _ 24 dobj _ _ 27 . _ PUNCT . _ 24 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Merrill _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 18 nmod _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Co. _ PROPN NNP _ 3 conj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 nation _ NOUN NN _ 12 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 biggest _ ADJ JJS _ 12 amod _ _ 11 brokerage _ NOUN NN _ 12 compound _ _ 12 firm _ NOUN NN _ 3 appos _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 a _ DET DT _ 16 det _ _ 15 news _ NOUN NN _ 16 compound _ _ 16 release _ NOUN NN _ 18 nsubjpass _ _ 17 was _ AUX VBD _ 18 auxpass _ _ 18 prepared _ VERB JJ _ 0 root _ _ 19 headlined _ VERB VBN _ 18 dep _ _ 20 `` _ PUNCT `` _ 23 punct _ _ 21 Merrill _ PROPN NNP _ 22 compound _ _ 22 Lynch _ PROPN NNP _ 23 nsubj _ _ 23 Comments _ PROPN NNS _ 19 xcomp _ _ 24 on _ ADP IN _ 26 case _ _ 25 Market _ PROPN NN _ 26 compound _ _ 26 Drop _ PROPN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 18 punct _ _ 28 '' _ PUNCT '' _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 release _ NOUN NN _ 3 nsubj _ _ 3 cautioned _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 `` _ PUNCT `` _ 7 punct _ _ 6 there _ PRON EX _ 7 expl _ _ 7 are _ VERB VBP _ 3 ccomp _ _ 8 significant _ ADJ JJ _ 9 amod _ _ 9 differences _ NOUN NNS _ 7 nsubj _ _ 10 between _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 current _ ADJ JJ _ 13 amod _ _ 13 environment _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 that _ ADP IN _ 13 conj _ _ 16 of _ ADP IN _ 17 case _ _ 17 October _ PROPN NNP _ 15 nmod _ _ 18 1987 _ NUM CD _ 17 nummod _ _ 19 '' _ PUNCT '' _ 7 punct _ _ 20 and _ CONJ CC _ 7 cc _ _ 21 that _ SCONJ IN _ 23 mark _ _ 22 there _ PRON EX _ 23 expl _ _ 23 are _ VERB VBP _ 7 conj _ _ 24 still _ ADV RB _ 23 advmod _ _ 25 `` _ PUNCT `` _ 28 punct _ _ 26 attractive _ ADJ JJ _ 28 amod _ _ 27 investment _ NOUN NN _ 28 compound _ _ 28 opportunities _ NOUN NNS _ 23 nsubj _ _ 29 '' _ PUNCT '' _ 28 punct _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 stock _ NOUN NN _ 33 compound _ _ 33 market _ NOUN NN _ 28 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 However _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 Jeffrey _ PROPN NNP _ 5 compound _ _ 4 B. _ PROPN NNP _ 5 compound _ _ 5 Lane _ PROPN NNP _ 14 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 president _ NOUN NN _ 5 appos _ _ 8 of _ ADP IN _ 12 case _ _ 9 Shearson _ PROPN NNP _ 12 compound _ _ 10 Lehman _ PROPN NNP _ 12 compound _ _ 11 Hutton _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 7 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 that _ SCONJ IN _ 21 mark _ _ 16 Friday _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 plunge _ NOUN NN _ 21 nsubj _ _ 19 is _ AUX VBZ _ 21 aux _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 going _ VERB VBG _ 14 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 set _ VERB VB _ 21 xcomp _ _ 24 back _ ADP RP _ 23 compound:prt _ _ 25 '' _ PUNCT '' _ 23 punct _ _ 26 relations _ NOUN NNS _ 23 dobj _ _ 27 with _ ADP IN _ 28 case _ _ 28 customers _ NOUN NNS _ 26 nmod _ _ 29 , _ PUNCT , _ 21 punct _ _ 30 `` _ PUNCT `` _ 21 punct _ _ 31 because _ SCONJ IN _ 33 mark _ _ 32 it _ PRON PRP _ 33 nsubj _ _ 33 reinforces _ VERB VBZ _ 21 advcl _ _ 34 the _ DET DT _ 35 det _ _ 35 concern _ NOUN NN _ 33 dobj _ _ 36 of _ ADP IN _ 37 case _ _ 37 volatility _ NOUN NN _ 35 nmod _ _ 38 . _ PUNCT . _ 14 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 lot _ NOUN NN _ 9 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 people _ NOUN NNS _ 5 nmod _ _ 8 will _ AUX MD _ 9 aux _ _ 9 harp _ VERB VB _ 3 ccomp _ _ 10 on _ ADP IN _ 12 case _ _ 11 program _ NOUN NN _ 12 compound _ _ 12 trading _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 bring _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 debate _ NOUN NN _ 5 dobj _ _ 8 right _ ADV RB _ 9 advmod _ _ 9 back _ ADV RB _ 5 advmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 forefront _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 Dow _ PROPN NNP _ 5 nsubj _ _ 4 average _ ADJ NN _ 3 amod _ _ 5 ground _ NOUN NN _ 16 advcl _ _ 6 to _ ADP TO _ 10 case _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 final _ ADJ JJ _ 10 amod _ _ 9 190.58 _ NUM CD _ 10 nummod _ _ 10 loss _ NOUN NN _ 5 nmod _ _ 11 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 the _ DET DT _ 15 det _ _ 14 S&P _ PROPN NNP _ 15 compound _ _ 15 pit _ NOUN NN _ 16 nsubj _ _ 16 stayed _ VERB VBD _ 0 root _ _ 17 locked _ ADJ VBN _ 16 xcomp _ _ 18 at _ ADP IN _ 22 case _ _ 19 its _ PRON PRP$ _ 22 nmod:poss _ _ 20 30-point _ ADJ JJ _ 22 amod _ _ 21 trading _ NOUN NN _ 22 compound _ _ 22 limit _ NOUN NN _ 17 nmod _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 Jeffrey _ PROPN NNP _ 2 compound _ _ 2 Yass _ PROPN NNP _ 9 nsubj _ _ 3 of _ ADP IN _ 8 case _ _ 4 program _ NOUN NN _ 8 compound _ _ 5 trader _ NOUN NN _ 8 compound _ _ 6 Susquehanna _ PROPN NNP _ 8 compound _ _ 7 Investment _ PROPN NNP _ 8 compound _ _ 8 Group _ PROPN NNP _ 2 nmod _ _ 9 said _ VERB VBD _ 0 root _ _ 10 2,000 _ NUM CD _ 12 nummod _ _ 11 S&P _ PROPN NNP _ 12 compound _ _ 12 contracts _ NOUN NNS _ 21 nsubj _ _ 13 were _ VERB VBD _ 21 cop _ _ 14 for _ ADP IN _ 15 case _ _ 15 sale _ NOUN NN _ 21 nmod _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 close _ NOUN NN _ 21 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 equivalent _ NOUN NN _ 9 ccomp _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 330 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 in _ ADP IN _ 27 case _ _ 27 stock _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 there _ PRON EX _ 3 expl _ _ 3 were _ VERB VBD _ 0 root _ _ 4 no _ DET DT _ 5 neg _ _ 5 buyers _ NOUN NNS _ 3 nsubj _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 debacle _ NOUN NN _ 5 nsubj _ _ 5 involved _ VERB VBN _ 14 advcl _ _ 6 mainly _ ADV RB _ 5 advmod _ _ 7 professional _ ADJ JJ _ 8 amod _ _ 8 traders _ NOUN NNS _ 5 dobj _ _ 9 rather _ ADV RB _ 11 case _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 investors _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 left _ VERB VBD _ 25 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 vulnerable _ ADJ JJ _ 14 xcomp _ _ 18 to _ ADP TO _ 20 case _ _ 19 continued _ ADJ VBN _ 20 amod _ _ 20 selling _ NOUN VBG _ 17 nmod _ _ 21 this _ DET DT _ 22 det _ _ 22 morning _ NOUN NN _ 17 dep _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 traders _ NOUN NNS _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Stock-index _ ADJ NN _ 3 amod _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 contracts _ NOUN NNS _ 4 nsubj _ _ 4 settled _ VERB VBD _ 0 root _ _ 5 at _ ADP IN _ 8 case _ _ 6 much _ ADV RB _ 7 advmod _ _ 7 lower _ ADJ JJR _ 8 amod _ _ 8 prices _ NOUN NNS _ 4 nmod _ _ 9 than _ ADP IN _ 10 case _ _ 10 indexes _ NOUN NNS _ 8 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 stock _ NOUN NN _ 14 compound _ _ 14 market _ NOUN NN _ 10 nmod _ _ 15 itself _ PRON PRP _ 14 nmod:npmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 those _ DET DT _ 3 det _ _ 3 levels _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 stocks _ NOUN NNS _ 7 nsubjpass _ _ 6 are _ AUX VBP _ 7 auxpass _ _ 7 set _ VERB VBN _ 0 root _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 hammered _ VERB VBN _ 7 xcomp _ _ 12 by _ ADP IN _ 14 case _ _ 13 index _ NOUN NN _ 14 compound _ _ 14 arbitragers _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 who _ PRON WP _ 17 nsubj _ _ 17 lock _ VERB VBP _ 14 acl:relcl _ _ 18 in _ ADP RP _ 17 compound:prt _ _ 19 profits _ NOUN NNS _ 17 dobj _ _ 20 by _ SCONJ IN _ 21 mark _ _ 21 buying _ VERB VBG _ 17 advcl _ _ 22 futures _ NOUN NNS _ 21 dobj _ _ 23 when _ ADV WRB _ 26 advmod _ _ 24 futures _ NOUN NNS _ 25 compound _ _ 25 prices _ NOUN NNS _ 26 nsubj _ _ 26 fall _ VERB VBP _ 21 advcl _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 and _ CONJ CC _ 17 cc _ _ 29 simultaneously _ ADV RB _ 30 advmod _ _ 30 sell _ VERB VB _ 17 conj _ _ 31 off _ ADP RP _ 30 compound:prt _ _ 32 stocks _ NOUN NNS _ 30 dobj _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 nobody _ NOUN NN _ 3 nsubj _ _ 3 knows _ VERB VBZ _ 0 root _ _ 4 at _ ADP IN _ 6 case _ _ 5 what _ PRON WDT _ 6 det _ _ 6 level _ NOUN NN _ 12 nmod _ _ 7 the _ DET DT _ 8 det _ _ 8 futures _ NOUN NNS _ 12 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 stocks _ NOUN NNS _ 8 conj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 open _ VERB VB _ 3 ccomp _ _ 13 today _ NOUN NN _ 12 nmod:tmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 de-linkage _ NOUN NN _ 12 nsubj _ _ 3 between _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det _ _ 5 stock _ NOUN NN _ 8 compound _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 futures _ NOUN NNS _ 5 conj _ _ 8 markets _ NOUN NNS _ 2 nmod _ _ 9 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 10 will _ AUX MD _ 12 aux _ _ 11 undoubtedly _ ADV RB _ 12 advmod _ _ 12 cause _ NOUN VB _ 0 root _ _ 13 renewed _ ADJ VBN _ 14 amod _ _ 14 debate _ NOUN NN _ 12 dobj _ _ 15 about _ SCONJ IN _ 21 mark _ _ 16 whether _ SCONJ IN _ 21 mark _ _ 17 Wall _ PROPN NNP _ 18 compound _ _ 18 Street _ PROPN NNP _ 21 nsubj _ _ 19 is _ VERB VBZ _ 21 cop _ _ 20 properly _ ADV RB _ 21 advmod _ _ 21 prepared _ ADJ VBN _ 14 acl _ _ 22 for _ ADP IN _ 25 case _ _ 23 another _ DET DT _ 25 det _ _ 24 crash _ NOUN NN _ 25 compound _ _ 25 situation _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Big _ PROPN NNP _ 3 compound _ _ 3 Board _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Grasso _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 14 punct _ _ 10 Our _ PRON PRP$ _ 12 nmod:poss _ _ 11 systemic _ ADJ JJ _ 12 amod _ _ 12 performance _ NOUN NN _ 14 nsubj _ _ 13 was _ VERB VBD _ 14 cop _ _ 14 good _ ADJ JJ _ 7 ccomp _ _ 15 . _ PUNCT . _ 7 punct _ _ 16 '' _ PUNCT '' _ 7 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 exchange _ NOUN NN _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 look _ VERB VB _ 0 root _ _ 7 at _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 performance _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 all _ DET DT _ 12 det _ _ 12 specialists _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 all _ DET DT _ 15 det _ _ 15 stocks _ NOUN NNS _ 9 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Obviously _ ADV RB _ 4 advmod _ _ 2 we _ PRON PRP _ 4 nsubj _ _ 3 'll _ AUX MD _ 4 aux _ _ 4 take _ VERB VB _ 24 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 close _ ADJ JJ _ 7 amod _ _ 7 look _ NOUN NN _ 4 dobj _ _ 8 at _ ADP IN _ 10 case _ _ 9 any _ DET DT _ 10 det _ _ 10 situation _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 which _ PRON WDT _ 14 nmod _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 think _ VERB VBP _ 10 acl:relcl _ _ 15 the _ DET DT _ 17 det _ _ 16 dealer-community _ ADJ NN _ 17 amod _ _ 17 obligations _ NOUN NNS _ 20 nsubjpass _ _ 18 were _ AUX VBD _ 20 auxpass _ _ 19 n't _ PART RB _ 20 neg _ _ 20 met _ VERB VBN _ 14 ccomp _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 '' _ PUNCT '' _ 24 punct _ _ 23 he _ PRON PRP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 2 punct _ _ 2 See _ VERB VB _ 0 root _ _ 3 related _ ADJ JJ _ 4 amod _ _ 4 story _ NOUN NN _ 2 dobj _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 `` _ PUNCT `` _ 15 punct _ _ 7 Fed _ PROPN NNP _ 8 dep _ _ 8 Ready _ ADJ NNP _ 15 dep _ _ 9 to _ PART TO _ 10 mark _ _ 10 Inject _ VERB VB _ 8 xcomp _ _ 11 Big _ ADJ JJ _ 12 amod _ _ 12 Funds _ NOUN NNS _ 10 dobj _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 -- _ PUNCT : _ 15 punct _ _ 15 WSJ _ PROPN NNP _ 4 dep _ _ 16 Oct. _ PROPN NNP _ 15 nmod:tmod _ _ 17 16 _ NUM CD _ 16 nummod _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 1989 _ NUM CD _ 16 nummod _ _ 20 -RRB- _ PUNCT -RRB- _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 specialists _ NOUN NNS _ 3 nsubj _ _ 3 complain _ VERB VBP _ 0 root _ _ 4 privately _ ADV RB _ 3 advmod _ _ 5 that _ SCONJ IN _ 33 mark _ _ 6 just _ ADV RB _ 11 advmod _ _ 7 as _ ADP RB _ 6 case _ _ 8 in _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 1987 _ NUM CD _ 11 nummod _ _ 11 crash _ NOUN NN _ 33 nmod _ _ 12 , _ PUNCT , _ 33 punct _ _ 13 the _ DET DT _ 17 det _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 upstairs _ ADJ NN _ 17 amod _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 firms _ NOUN NNS _ 33 nsubj _ _ 18 -- _ PUNCT : _ 17 punct _ _ 19 big _ ADJ JJ _ 21 amod _ _ 20 investment _ NOUN NN _ 21 compound _ _ 21 banks _ NOUN NNS _ 17 dep _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 support _ VERB VBP _ 21 acl:relcl _ _ 24 the _ DET DT _ 25 det _ _ 25 market _ NOUN NN _ 23 dobj _ _ 26 by _ SCONJ IN _ 27 mark _ _ 27 trading _ VERB VBG _ 23 advcl _ _ 28 big _ ADJ JJ _ 29 amod _ _ 29 blocks _ NOUN NNS _ 27 dobj _ _ 30 of _ ADP IN _ 31 case _ _ 31 stock _ NOUN NN _ 29 nmod _ _ 32 -- _ PUNCT : _ 17 punct _ _ 33 stayed _ VERB VBD _ 3 ccomp _ _ 34 on _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 sidelines _ NOUN NNS _ 33 nmod _ _ 37 during _ ADP IN _ 40 case _ _ 38 Friday _ PROPN NNP _ 40 nmod:poss _ _ 39 's _ PART POS _ 38 case _ _ 40 blood-letting _ NOUN NN _ 33 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 It _ PRON PRP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 take _ VERB VB _ 3 ccomp _ _ 9 another _ DET DT _ 10 det _ _ 10 day _ NOUN NN _ 8 nmod:tmod _ _ 11 or _ CONJ CC _ 12 cc _ _ 12 two _ NUM CD _ 10 nummod _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 14 to _ PART TO _ 15 mark _ _ 15 analyze _ VERB VB _ 8 advcl _ _ 16 who _ PRON WP _ 18 nsubj _ _ 17 was _ AUX VBD _ 18 aux _ _ 18 buying _ VERB VBG _ 15 ccomp _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 selling _ VERB VBG _ 18 conj _ _ 21 Friday _ PROPN NNP _ 18 nmod:tmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Concerning _ VERB VBG _ 6 case _ _ 2 your _ PRON PRP$ _ 6 nmod:poss _ _ 3 Sept. _ PROPN NNP _ 6 compound _ _ 4 21 _ NUM CD _ 6 nummod _ _ 5 page-one _ ADJ NN _ 6 amod _ _ 6 article _ NOUN NN _ 19 nmod _ _ 7 on _ ADP IN _ 9 case _ _ 8 Prince _ PROPN NNP _ 9 compound _ _ 9 Charles _ PROPN NNP _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 the _ DET DT _ 12 det _ _ 12 leeches _ NOUN NNS _ 9 conj _ _ 13 : _ PUNCT : _ 19 punct _ _ 14 It _ PRON PRP _ 19 nsubj _ _ 15 's _ VERB VBZ _ 19 cop _ _ 16 a _ DET DT _ 18 advmod _ _ 17 few _ ADJ JJ _ 18 advmod _ _ 18 hundred _ NUM CD _ 19 nummod _ _ 19 years _ NOUN NNS _ 0 root _ _ 20 since _ SCONJ IN _ 25 mark _ _ 21 England _ PROPN NNP _ 25 nsubj _ _ 22 has _ AUX VBZ _ 25 aux _ _ 23 been _ VERB VBN _ 25 cop _ _ 24 a _ DET DT _ 25 det _ _ 25 kingdom _ NOUN NN _ 19 advcl _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 's _ VERB VBZ _ 6 cop _ _ 3 now _ ADV RB _ 6 advmod _ _ 4 the _ DET DT _ 6 det _ _ 5 United _ PROPN NNP _ 6 compound _ _ 6 Kingdom _ PROPN NNP _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 Great _ PROPN NNP _ 9 compound _ _ 9 Britain _ PROPN NNP _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Northern _ PROPN NNP _ 12 compound _ _ 12 Ireland _ PROPN NNP _ 9 conj _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 comprising _ VERB VBG _ 15 case _ _ 15 Wales _ PROPN NNP _ 6 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Northern _ PROPN NNP _ 18 compound _ _ 18 Ireland _ PROPN NNP _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 Scotland _ PROPN NNP _ 15 conj _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 and _ CONJ CC _ 15 cc _ _ 23 ... _ PUNCT : _ 15 punct _ _ 24 oh _ INTJ UH _ 15 discourse _ _ 25 yes _ INTJ UH _ 24 dep _ _ 26 , _ PUNCT , _ 15 punct _ _ 27 England _ PROPN NNP _ 15 conj _ _ 28 , _ PUNCT , _ 15 punct _ _ 29 too _ ADV RB _ 15 advmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Just _ ADV RB _ 2 advmod _ _ 2 thought _ VERB VBN _ 0 root _ _ 3 you _ PRON PRP _ 5 nsubj _ _ 4 'd _ AUX MD _ 5 aux _ _ 5 like _ VERB VB _ 2 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 know _ VERB VB _ 5 xcomp _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 George _ PROPN NNP _ 2 compound _ _ 2 Morton _ PROPN NNP _ 0 root _ _ 1 Ports _ PROPN NNS _ 4 dep _ _ 2 of _ ADP IN _ 3 case _ _ 3 Call _ PROPN NNP _ 1 nmod _ _ 4 Inc. _ PROPN NNP _ 5 nsubj _ _ 5 reached _ VERB VBD _ 0 root _ _ 6 agreements _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 sell _ VERB VB _ 6 acl _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 remaining _ VERB VBG _ 12 amod _ _ 11 seven _ NUM CD _ 12 nummod _ _ 12 aircraft _ NOUN NN _ 8 dobj _ _ 13 to _ ADP TO _ 14 case _ _ 14 buyers _ NOUN NNS _ 8 nmod _ _ 15 that _ PRON WDT _ 18 nsubjpass _ _ 16 were _ AUX VBD _ 18 auxpass _ _ 17 n't _ PART RB _ 18 neg _ _ 18 disclosed _ VERB VBN _ 14 acl:relcl _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agreements _ NOUN NNS _ 3 nsubj _ _ 3 bring _ VERB VBP _ 0 root _ _ 4 to _ ADP TO _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 total _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 nine _ NUM CD _ 6 nmod _ _ 9 the _ DET DT _ 10 det _ _ 10 number _ NOUN NN _ 3 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 planes _ NOUN NNS _ 10 nmod _ _ 13 the _ DET DT _ 15 det _ _ 14 travel _ NOUN NN _ 15 compound _ _ 15 company _ NOUN NN _ 17 nsubj _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 sold _ VERB VBN _ 10 acl:relcl _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 17 nmod:tmod _ _ 20 as _ ADP IN _ 21 case _ _ 21 part _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 restructuring _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 portion _ NOUN NN _ 17 nsubjpass _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 $ _ SYM $ _ 5 nmod _ _ 9 32 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 realized _ VERB VBN _ 8 acl _ _ 12 from _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 sales _ NOUN NNS _ 11 nmod _ _ 15 will _ AUX MD _ 17 aux _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 used _ VERB VBN _ 3 ccomp _ _ 18 to _ PART TO _ 19 mark _ _ 19 repay _ VERB VB _ 17 xcomp _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 bank _ NOUN NN _ 22 compound _ _ 22 debt _ NOUN NN _ 19 dobj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 other _ ADJ JJ _ 25 amod _ _ 25 obligations _ NOUN NNS _ 22 conj _ _ 26 resulting _ VERB VBG _ 25 acl _ _ 27 from _ ADP IN _ 32 case _ _ 28 the _ DET DT _ 32 det _ _ 29 currently _ ADV RB _ 30 advmod _ _ 30 suspended _ VERB VBN _ 32 amod _ _ 31 air-charter _ ADJ JJ _ 32 amod _ _ 32 operations _ NOUN NNS _ 26 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Earlier _ ADV JJR _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 announced _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 sell _ VERB VB _ 4 ccomp _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 aging _ VERB NN _ 10 amod _ _ 10 fleet _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 Boeing _ PROPN NNP _ 14 compound _ _ 13 Co. _ PROPN NNP _ 14 compound _ _ 14 707s _ PROPN NNS _ 10 nmod _ _ 15 because _ ADP IN _ 19 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 increasing _ VERB VBG _ 19 amod _ _ 18 maintenance _ NOUN NN _ 19 compound _ _ 19 costs _ NOUN NNS _ 7 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 consortium _ NOUN NN _ 11 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 private _ ADJ JJ _ 5 amod _ _ 5 investors _ NOUN NNS _ 2 nmod _ _ 6 operating _ VERB VBG _ 2 acl _ _ 7 as _ ADP IN _ 10 case _ _ 8 LJH _ PROPN NNP _ 10 compound _ _ 9 Funding _ PROPN NNP _ 10 compound _ _ 10 Co. _ PROPN NNP _ 6 nmod _ _ 11 said _ VERB VBD _ 0 root _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 has _ AUX VBZ _ 14 aux _ _ 14 made _ VERB VBN _ 11 ccomp _ _ 15 a _ DET DT _ 20 det _ _ 16 $ _ SYM $ _ 20 amod _ _ 17 409 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 cash _ NOUN NN _ 20 compound _ _ 20 bid _ NOUN NN _ 14 dobj _ _ 21 for _ ADP IN _ 22 case _ _ 22 most _ ADJ JJS _ 20 nmod _ _ 23 of _ ADP IN _ 28 case _ _ 24 L.J. _ PROPN NNP _ 26 compound _ _ 25 Hooker _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 real-estate _ NOUN NN _ 22 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 shopping-center _ NOUN NN _ 31 compound _ _ 31 holdings _ NOUN NNS _ 28 conj _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 $ _ SYM $ _ 5 amod _ _ 3 409 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 2 nummod _ _ 5 bid _ NOUN NN _ 6 nsubj _ _ 6 includes _ VERB VBZ _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 assumption _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 an _ DET DT _ 12 det _ _ 11 estimated _ ADJ VBN _ 12 amod _ _ 12 $ _ SYM $ _ 8 nmod _ _ 13 300 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 17 case _ _ 16 secured _ ADJ VBN _ 17 amod _ _ 17 liabilities _ NOUN NNS _ 12 nmod _ _ 18 on _ ADP IN _ 20 case _ _ 19 those _ DET DT _ 20 det _ _ 20 properties _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 6 punct _ _ 22 according _ VERB VBG _ 24 case _ _ 23 to _ ADP TO _ 22 mwe _ _ 24 those _ PRON DT _ 6 nmod _ _ 25 making _ VERB VBG _ 24 acl _ _ 26 the _ DET DT _ 27 det _ _ 27 bid _ NOUN NN _ 25 dobj _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 led _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 Jay _ PROPN NNP _ 7 compound _ _ 7 Shidler _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 chief _ ADJ JJ _ 11 amod _ _ 10 executive _ ADJ NN _ 11 amod _ _ 11 officer _ NOUN NN _ 7 appos _ _ 12 of _ ADP IN _ 15 case _ _ 13 Shidler _ PROPN NNP _ 15 compound _ _ 14 Investment _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 11 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 Honolulu _ PROPN NNP _ 15 nmod _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 A. _ PROPN NN _ 22 compound _ _ 21 Boyd _ PROPN NNP _ 22 compound _ _ 22 Simpson _ PROPN NNP _ 7 conj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 chief _ ADJ JJ _ 25 amod _ _ 25 executive _ NOUN NN _ 22 appos _ _ 26 of _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 31 det _ _ 28 Atlanta-based _ ADJ JJ _ 31 amod _ _ 29 Simpson _ PROPN NNP _ 31 compound _ _ 30 Organization _ PROPN NNP _ 31 compound _ _ 31 Inc _ PROPN NNP _ 25 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Shidler _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 specializes _ VERB VBZ _ 0 root _ _ 6 in _ ADP IN _ 9 case _ _ 7 commercial _ ADJ JJ _ 9 amod _ _ 8 real-estate _ NOUN NN _ 9 compound _ _ 9 investment _ NOUN NN _ 5 nmod _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 claims _ VERB VBZ _ 5 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 have _ VERB VB _ 11 xcomp _ _ 14 $ _ SYM $ _ 13 dobj _ _ 15 1 _ NUM CD _ 16 compound _ _ 16 billion _ NUM CD _ 14 nummod _ _ 17 in _ ADP IN _ 18 case _ _ 18 assets _ NOUN NNS _ 14 nmod _ _ 19 ; _ PUNCT : _ 5 punct _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Simpson _ PROPN NNP _ 24 nsubj _ _ 22 is _ VERB VBZ _ 24 cop _ _ 23 a _ DET DT _ 24 det _ _ 24 developer _ NOUN NN _ 5 parataxis _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 a _ DET DT _ 29 det _ _ 27 former _ ADJ JJ _ 29 amod _ _ 28 senior _ ADJ JJ _ 29 amod _ _ 29 executive _ NOUN NN _ 24 conj _ _ 30 of _ ADP IN _ 32 case _ _ 31 L.J. _ PROPN NNP _ 32 compound _ _ 32 Hooker _ PROPN NNP _ 29 nmod _ _ 33 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 assets _ NOUN NNS _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 good _ ADJ JJ _ 26 ccomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 but _ CONJ CC _ 5 cc _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 require _ VERB VBP _ 5 conj _ _ 10 more _ ADJ JJR _ 11 amod _ _ 11 money _ NOUN NN _ 9 dobj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 management _ NOUN NN _ 11 conj _ _ 14 '' _ PUNCT '' _ 11 punct _ _ 15 than _ SCONJ IN _ 18 mark _ _ 16 can _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 provided _ VERB VBN _ 11 dep _ _ 19 in _ ADP IN _ 24 case _ _ 20 L.J. _ PROPN NNP _ 21 compound _ _ 21 Hooker _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 current _ ADJ JJ _ 24 amod _ _ 24 situation _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Simpson _ PROPN NNP _ 26 nsubj _ _ 29 in _ ADP IN _ 31 case _ _ 30 an _ DET DT _ 31 det _ _ 31 interview _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 26 punct _ _ 33 `` _ PUNCT `` _ 26 punct _ _ 1 Hooker _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 philosophy _ NOUN NN _ 4 nsubj _ _ 4 was _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 build _ VERB VB _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 sell _ VERB VB _ 6 conj _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 want _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 build _ VERB VB _ 2 xcomp _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 hold _ VERB VB _ 4 conj _ _ 7 . _ PUNCT . _ 2 punct _ _ 8 '' _ PUNCT '' _ 2 punct _ _ 1 L.J. _ PROPN NNP _ 2 compound _ _ 2 Hooker _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 6 case _ _ 6 Atlanta _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 is _ AUX VBZ _ 9 aux _ _ 9 operating _ VERB VBG _ 0 root _ _ 10 with _ ADP IN _ 11 case _ _ 11 protection _ NOUN NN _ 9 nmod _ _ 12 from _ ADP IN _ 14 case _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 creditors _ NOUN NNS _ 11 nmod _ _ 15 under _ ADP IN _ 16 case _ _ 16 Chapter _ PROPN NN _ 11 nmod _ _ 17 11 _ NUM CD _ 16 nummod _ _ 18 of _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 U.S. _ PROPN NNP _ 22 compound _ _ 21 Bankruptcy _ PROPN NNP _ 22 compound _ _ 22 Code _ PROPN NNP _ 16 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Its _ PRON PRP$ _ 3 nmod:poss _ _ 2 parent _ NOUN NN _ 3 compound _ _ 3 company _ NOUN NN _ 15 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Hooker _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 3 appos _ _ 7 of _ ADP IN _ 8 case _ _ 8 Sydney _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Australia _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 is _ AUX VBZ _ 15 aux _ _ 13 currently _ ADV RB _ 15 advmod _ _ 14 being _ AUX VBG _ 15 auxpass _ _ 15 managed _ VERB VBN _ 0 root _ _ 16 by _ ADP IN _ 20 case _ _ 17 a _ DET DT _ 20 det _ _ 18 court-appointed _ ADJ JJ _ 20 amod _ _ 19 provisional _ ADJ JJ _ 20 amod _ _ 20 liquidator _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 Sanford _ PROPN NNP _ 2 compound _ _ 2 Sigoloff _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 chief _ ADJ JJ _ 5 amod _ _ 5 executive _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 8 case _ _ 7 L.J. _ PROPN NNP _ 8 compound _ _ 8 Hooker _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 yesterday _ NOUN NN _ 10 nmod:tmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 statement _ NOUN NN _ 10 nmod _ _ 15 that _ SCONJ IN _ 20 mark _ _ 16 he _ PRON PRP _ 20 nsubj _ _ 17 has _ AUX VBZ _ 20 aux _ _ 18 not _ PART RB _ 20 neg _ _ 19 yet _ ADV RB _ 20 advmod _ _ 20 seen _ VERB VBN _ 10 ccomp _ _ 21 the _ DET DT _ 22 det _ _ 22 bid _ NOUN NN _ 20 dobj _ _ 23 but _ CONJ CC _ 20 cc _ _ 24 that _ SCONJ IN _ 27 mark _ _ 25 he _ PRON PRP _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 review _ VERB VB _ 20 conj _ _ 28 it _ PRON PRP _ 27 dobj _ _ 29 and _ CONJ CC _ 27 cc _ _ 30 bring _ VERB VB _ 27 conj _ _ 31 it _ PRON PRP _ 30 dobj _ _ 32 to _ ADP TO _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 attention _ NOUN NN _ 30 nmod _ _ 35 of _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 creditors _ NOUN NNS _ 38 compound _ _ 38 committee _ NOUN NN _ 34 nmod _ _ 39 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 $ _ SYM $ _ 5 amod _ _ 3 409 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 2 nummod _ _ 5 bid _ NOUN NN _ 7 nsubjpass _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 estimated _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 10 case _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Simpson _ PROPN NNP _ 7 nmod _ _ 11 as _ SCONJ IN _ 12 mark _ _ 12 representing _ VERB VBG _ 7 advcl _ _ 13 75 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 value _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 22 case _ _ 19 all _ DET DT _ 22 det _ _ 20 Hooker _ PROPN NNP _ 22 compound _ _ 21 real-estate _ NOUN NN _ 22 compound _ _ 22 holdings _ NOUN NNS _ 17 nmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.S. _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 Not _ PART RB _ 2 neg _ _ 2 included _ VERB VBN _ 0 root _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 bid _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 2 auxpass _ _ 7 Bonwit _ PROPN NNP _ 8 compound _ _ 8 Teller _ PROPN NNP _ 2 nsubjpass _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 B. _ PROPN NNP _ 11 compound _ _ 11 Altman _ PROPN NNP _ 8 conj _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Co. _ PROPN NNP _ 11 conj _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 L.J. _ PROPN NNP _ 16 compound _ _ 16 Hooker _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 department-store _ NOUN NN _ 19 compound _ _ 19 chains _ NOUN NNS _ 8 appos _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 3 nsubj _ _ 3 covers _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 10 det _ _ 5 massive _ ADJ JJ _ 10 amod _ _ 6 1.8 _ NUM CD _ 10 nummod _ _ 7 million-square-foot _ ADJ JJ _ 10 amod _ _ 8 Forest _ PROPN NN _ 10 compound _ _ 9 Fair _ PROPN NN _ 10 compound _ _ 10 Mall _ PROPN NN _ 3 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 Cincinnati _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 the _ DET DT _ 19 det _ _ 15 800,000 _ NUM CD _ 19 nummod _ _ 16 square-foot _ ADJ JJ _ 19 amod _ _ 17 Richland _ PROPN NNP _ 19 compound _ _ 18 Fashion _ PROPN NNP _ 19 compound _ _ 19 Mall _ PROPN NN _ 10 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Columbia _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 S.C. _ PROPN NNP _ 21 appos _ _ 24 , _ PUNCT , _ 10 punct _ _ 25 and _ CONJ CC _ 10 cc _ _ 26 the _ DET DT _ 32 det _ _ 27 700,000 _ NUM CD _ 32 nummod _ _ 28 square-foot _ ADJ JJ _ 32 amod _ _ 29 Thornton _ PROPN NNP _ 32 compound _ _ 30 Town _ PROPN NNP _ 32 compound _ _ 31 Center _ PROPN NNP _ 32 compound _ _ 32 mall _ NOUN NN _ 10 conj _ _ 33 in _ ADP IN _ 34 case _ _ 34 Thornton _ PROPN NNP _ 32 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 Colo _ PROPN NNP _ 34 appos _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Thornton _ PROPN NNP _ 3 compound _ _ 3 mall _ NOUN NN _ 4 nsubj _ _ 4 opened _ VERB VBD _ 0 root _ _ 5 Sept. _ PROPN NNP _ 4 nmod:tmod _ _ 6 19 _ NUM CD _ 5 nummod _ _ 7 with _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 Bigg _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 hypermarket _ NOUN NN _ 4 nmod _ _ 12 as _ ADP IN _ 14 case _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 anchor _ NOUN NN _ 11 nmod _ _ 15 ; _ PUNCT : _ 4 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 Columbia _ PROPN NNP _ 18 compound _ _ 18 mall _ NOUN NN _ 20 nsubjpass _ _ 19 is _ AUX VBZ _ 20 auxpass _ _ 20 expected _ VERB VBN _ 4 parataxis _ _ 21 to _ PART TO _ 22 mark _ _ 22 open _ VERB VB _ 20 xcomp _ _ 23 Nov. _ PROPN NNP _ 22 nmod:tmod _ _ 24 15 _ NUM CD _ 23 nummod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 Hooker _ PROPN NNP _ 3 compound _ _ 3 properties _ NOUN NNS _ 9 nsubj _ _ 4 included _ VERB VBD _ 3 acl _ _ 5 are _ VERB VBP _ 9 cop _ _ 6 a _ DET DT _ 9 det _ _ 7 20-story _ ADJ JJ _ 9 amod _ _ 8 office _ NOUN NN _ 9 compound _ _ 9 tower _ NOUN NN _ 0 root _ _ 10 in _ ADP IN _ 12 case _ _ 11 midtown _ ADJ NN _ 12 amod _ _ 12 Atlanta _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 expected _ VERB VBN _ 9 acl _ _ 15 to _ PART TO _ 17 mark _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 completed _ VERB VBN _ 14 xcomp _ _ 18 next _ ADP JJ _ 19 amod _ _ 19 February _ PROPN NNP _ 17 nmod:tmod _ _ 20 ; _ PUNCT : _ 9 punct _ _ 21 vacant _ ADJ JJ _ 23 amod _ _ 22 land _ NOUN NN _ 23 compound _ _ 23 sites _ NOUN NNS _ 9 conj _ _ 24 in _ ADP IN _ 25 case _ _ 25 Florida _ PROPN NNP _ 23 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Ohio _ PROPN NNP _ 25 conj _ _ 28 ; _ PUNCT : _ 9 punct _ _ 29 L.J. _ PROPN NNP _ 31 compound _ _ 30 Hooker _ PROPN NNP _ 31 compound _ _ 31 International _ PROPN NNP _ 9 conj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 the _ DET DT _ 37 det _ _ 34 commercial _ ADJ JJ _ 37 amod _ _ 35 real-estate _ NOUN NN _ 37 compound _ _ 36 brokerage _ NOUN NN _ 37 compound _ _ 37 company _ NOUN NN _ 31 appos _ _ 38 that _ PRON WDT _ 40 nsubj _ _ 39 once _ ADV RB _ 40 advmod _ _ 40 did _ VERB VBD _ 37 acl:relcl _ _ 41 business _ NOUN NN _ 40 dobj _ _ 42 as _ ADP IN _ 47 case _ _ 43 Merrill _ PROPN NNP _ 47 compound _ _ 44 Lynch _ PROPN NNP _ 47 compound _ _ 45 Commercial _ PROPN NNP _ 47 compound _ _ 46 Real _ PROPN NNP _ 47 compound _ _ 47 Estate _ PROPN NNP _ 40 nmod _ _ 48 , _ PUNCT , _ 9 punct _ _ 49 plus _ CONJ CC _ 9 cc _ _ 50 other _ ADJ JJ _ 52 amod _ _ 51 shopping _ NOUN NN _ 52 compound _ _ 52 centers _ NOUN NNS _ 9 conj _ _ 53 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 consortium _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 put _ VERB VBN _ 0 root _ _ 5 together _ ADV RB _ 4 advmod _ _ 6 by _ ADP IN _ 8 case _ _ 7 Hoare _ PROPN NNP _ 8 compound _ _ 8 Govett _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 14 det _ _ 11 London-based _ ADJ JJ _ 14 amod _ _ 12 investment _ NOUN NN _ 14 compound _ _ 13 banking _ NOUN NN _ 14 compound _ _ 14 company _ NOUN NN _ 8 appos _ _ 15 that _ PRON WDT _ 18 nsubj _ _ 16 is _ VERB VBZ _ 18 cop _ _ 17 a _ DET DT _ 18 det _ _ 18 subsidiary _ NOUN NN _ 14 acl:relcl _ _ 19 of _ ADP IN _ 22 case _ _ 20 Security _ PROPN NNP _ 22 compound _ _ 21 Pacific _ PROPN NNP _ 22 compound _ _ 22 Corp _ PROPN NNP _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 anticipate _ VERB VB _ 17 ccomp _ _ 6 any _ DET DT _ 7 det _ _ 7 problems _ NOUN NNS _ 5 dobj _ _ 8 in _ SCONJ IN _ 9 mark _ _ 9 raising _ VERB VBG _ 7 acl _ _ 10 the _ DET DT _ 11 det _ _ 11 funding _ NOUN NN _ 9 dobj _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 bid _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Allan _ PROPN NNP _ 19 compound _ _ 19 Campbell _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 head _ NOUN NN _ 19 appos _ _ 23 of _ ADP IN _ 24 case _ _ 24 mergers _ NOUN NNS _ 22 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 acquisitions _ NOUN NNS _ 24 conj _ _ 27 at _ ADP IN _ 29 case _ _ 28 Hoare _ PROPN NNP _ 29 compound _ _ 29 Govett _ PROPN NNP _ 22 nmod _ _ 30 , _ PUNCT , _ 17 punct _ _ 31 in _ ADP IN _ 33 case _ _ 32 an _ DET DT _ 33 det _ _ 33 interview _ NOUN NN _ 17 nmod _ _ 34 . _ PUNCT . _ 17 punct _ _ 1 Hoare _ PROPN NNP _ 2 compound _ _ 2 Govett _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 acting _ VERB VBG _ 0 root _ _ 5 as _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 7 det _ _ 7 consortium _ NOUN NN _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 investment _ NOUN NN _ 10 compound _ _ 10 bankers _ NOUN NNS _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 According _ VERB VBG _ 3 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 people _ NOUN NNS _ 12 nmod _ _ 4 familiar _ ADJ JJ _ 3 amod _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 consortium _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 bid _ NOUN NN _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 code-named _ ADJ NNP _ 0 root _ _ 13 Project _ PROPN NNP _ 14 compound _ _ 14 Klute _ PROPN NNP _ 12 xcomp _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 17 det _ _ 17 reference _ NOUN NN _ 14 appos _ _ 18 to _ ADP TO _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 film _ NOUN NN _ 22 dep _ _ 21 `` _ PUNCT `` _ 22 punct _ _ 22 Klute _ PROPN NNP _ 17 nmod _ _ 23 '' _ PUNCT '' _ 22 punct _ _ 24 in _ ADP IN _ 25 case _ _ 25 which _ PRON WDT _ 34 nmod _ _ 26 a _ DET DT _ 27 det _ _ 27 prostitute _ NOUN NN _ 34 nsubjpass _ _ 28 played _ VERB VBN _ 27 acl _ _ 29 by _ ADP IN _ 32 case _ _ 30 actress _ NOUN NN _ 32 compound _ _ 31 Jane _ PROPN NNP _ 32 compound _ _ 32 Fonda _ PROPN NNP _ 28 nmod _ _ 33 is _ AUX VBZ _ 34 auxpass _ _ 34 saved _ VERB VBN _ 22 acl:relcl _ _ 35 from _ ADP IN _ 38 case _ _ 36 a _ DET DT _ 38 det _ _ 37 psychotic _ ADJ JJ _ 38 amod _ _ 38 businessman _ NOUN NN _ 34 nmod _ _ 39 by _ ADP IN _ 42 case _ _ 40 a _ DET DT _ 42 det _ _ 41 police _ NOUN NN _ 42 compound _ _ 42 officer _ NOUN NN _ 34 nmod _ _ 43 named _ VERB VBD _ 42 acl _ _ 44 John _ PROPN NNP _ 45 compound _ _ 45 Klute _ PROPN NNP _ 43 xcomp _ _ 46 . _ PUNCT . _ 12 punct _ _ 1 L.J. _ PROPN NNP _ 2 compound _ _ 2 Hooker _ PROPN NNP _ 7 nsubj _ _ 3 was _ VERB VBD _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 small _ ADJ JJ _ 7 amod _ _ 6 home-building _ ADJ JJ _ 7 amod _ _ 7 company _ NOUN NN _ 0 root _ _ 8 based _ VERB VBN _ 7 acl _ _ 9 in _ ADP IN _ 10 case _ _ 10 Atlanta _ PROPN NNP _ 8 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 1979 _ NUM CD _ 7 nmod _ _ 13 when _ ADV WRB _ 17 advmod _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Simpson _ PROPN NNP _ 17 nsubjpass _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 hired _ VERB VBN _ 12 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 push _ VERB VB _ 17 xcomp _ _ 20 it _ PRON PRP _ 19 dobj _ _ 21 into _ ADP IN _ 23 case _ _ 22 commercial _ ADJ JJ _ 23 amod _ _ 23 development _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 modestly _ ADV RB _ 3 advmod _ _ 5 until _ ADP IN _ 6 case _ _ 6 1986 _ NUM CD _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 when _ ADV WRB _ 16 advmod _ _ 9 a _ DET DT _ 11 det _ _ 10 majority _ NOUN NN _ 11 compound _ _ 11 position _ NOUN NN _ 16 nsubjpass _ _ 12 in _ ADP IN _ 14 case _ _ 13 Hooker _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 11 nmod _ _ 15 was _ AUX VBD _ 16 auxpass _ _ 16 acquired _ VERB VBN _ 6 acl:relcl _ _ 17 by _ ADP IN _ 21 case _ _ 18 Australian _ ADJ JJ _ 21 amod _ _ 19 developer _ NOUN NN _ 21 compound _ _ 20 George _ PROPN NNP _ 21 compound _ _ 21 Herscu _ PROPN NNP _ 16 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 currently _ ADV RB _ 26 advmod _ _ 24 Hooker _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 chairman _ NOUN NN _ 21 appos _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Herscu _ PROPN NNP _ 3 nsubj _ _ 3 proceeded _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 launch _ VERB VB _ 3 xcomp _ _ 6 an _ DET DT _ 16 det _ _ 7 ambitious _ ADJ JJ _ 16 amod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 but _ CONJ CC _ 7 cc _ _ 10 ill-fated _ ADJ JJ _ 7 conj _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 $ _ SYM $ _ 16 amod _ _ 13 1 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 acquisition _ NOUN NN _ 16 compound _ _ 16 binge _ NOUN NN _ 5 dobj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 included _ VERB VBD _ 16 acl:relcl _ _ 19 Bonwit _ PROPN NNP _ 20 compound _ _ 20 Teller _ PROPN NNP _ 18 dobj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 B. _ PROPN NNP _ 23 compound _ _ 23 Altman _ PROPN NNP _ 20 conj _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Co. _ PROPN NNP _ 23 conj _ _ 26 , _ PUNCT , _ 20 punct _ _ 27 as _ ADV RB _ 20 cc _ _ 28 well _ ADV RB _ 27 mwe _ _ 29 as _ ADP IN _ 27 mwe _ _ 30 majority _ NOUN NN _ 31 compound _ _ 31 positions _ NOUN NNS _ 20 conj _ _ 32 in _ ADP IN _ 34 case _ _ 33 Merksamer _ PROPN NNP _ 34 compound _ _ 34 Jewelers _ PROPN NNPS _ 31 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 a _ DET DT _ 38 det _ _ 37 Sacramento _ PROPN NNP _ 38 compound _ _ 38 chain _ NOUN NN _ 34 appos _ _ 39 ; _ PUNCT : _ 34 punct _ _ 40 Sakowitz _ PROPN NNP _ 41 compound _ _ 41 Inc. _ PROPN NNP _ 34 conj _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 the _ DET DT _ 45 det _ _ 44 Houston-based _ ADJ JJ _ 45 amod _ _ 45 retailer _ NOUN NN _ 41 appos _ _ 46 , _ PUNCT , _ 34 punct _ _ 47 and _ CONJ CC _ 34 cc _ _ 48 Parisian _ PROPN NNP _ 49 compound _ _ 49 Inc. _ PROPN NNP _ 34 conj _ _ 50 , _ PUNCT , _ 49 punct _ _ 51 the _ DET DT _ 54 det _ _ 52 Southeast _ PROPN NNP _ 54 compound _ _ 53 department-store _ NOUN NN _ 54 compound _ _ 54 chain _ NOUN NN _ 49 appos _ _ 55 . _ PUNCT . _ 3 punct _ _ 1 Eventually _ ADV RB _ 7 advmod _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Simpson _ PROPN NNP _ 7 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Herscu _ PROPN NNP _ 3 conj _ _ 7 had _ VERB VBD _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 falling _ NOUN VBG _ 7 dobj _ _ 10 out _ ADP RP _ 9 dep _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 direction _ NOUN NN _ 7 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 and _ CONJ CC _ 7 cc _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Simpson _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 7 conj _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 resigned _ VERB VBD _ 21 ccomp _ _ 24 in _ ADP IN _ 25 case _ _ 25 1988 _ NUM CD _ 23 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 then _ ADV RB _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 Hooker _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 7 nsubj _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 sold _ VERB VBN _ 0 root _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 interest _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Parisian _ ADJ JJ _ 13 amod _ _ 13 chain _ NOUN NN _ 9 nmod _ _ 14 back _ ADV RB _ 7 advmod _ _ 15 to _ ADP TO _ 18 case _ _ 16 Parisian _ ADJ NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 management _ NOUN NN _ 14 nmod _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 is _ AUX VBZ _ 22 aux _ _ 21 currently _ ADV RB _ 22 advmod _ _ 22 attempting _ VERB VBG _ 7 conj _ _ 23 to _ PART TO _ 24 mark _ _ 24 sell _ VERB VB _ 22 xcomp _ _ 25 the _ DET DT _ 27 det _ _ 26 B. _ PROPN NNP _ 27 compound _ _ 27 Altman _ PROPN NNP _ 24 dobj _ _ 28 & _ CONJ CC _ 27 cc _ _ 29 Co. _ PROPN NNP _ 30 compound _ _ 30 chain _ NOUN NN _ 27 conj _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 15 nmod _ _ 3 , _ PUNCT , _ 15 punct _ _ 4 Robert _ PROPN NNP _ 5 compound _ _ 5 Sakowitz _ PROPN NNP _ 15 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 chief _ ADJ JJ _ 8 amod _ _ 8 executive _ NOUN NN _ 5 appos _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Sakowitz _ PROPN NNP _ 12 compound _ _ 12 chain _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 is _ AUX VBZ _ 15 aux _ _ 15 seeking _ VERB VBG _ 0 root _ _ 16 funds _ NOUN NNS _ 15 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 buy _ VERB VB _ 16 acl _ _ 19 out _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 22 det _ _ 21 Hooker _ PROPN NNP _ 22 compound _ _ 22 interest _ NOUN NN _ 18 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 company _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Merksamer _ PROPN NNP _ 3 compound _ _ 3 chain _ NOUN NN _ 7 nsubjpass _ _ 4 is _ AUX VBZ _ 7 aux _ _ 5 currently _ ADV RB _ 7 advmod _ _ 6 being _ AUX VBG _ 7 auxpass _ _ 7 offered _ VERB VBN _ 0 root _ _ 8 for _ ADP IN _ 9 case _ _ 9 sale _ NOUN NN _ 7 nmod _ _ 10 by _ ADP IN _ 13 case _ _ 11 First _ PROPN NNP _ 13 compound _ _ 12 Boston _ PROPN NNP _ 13 compound _ _ 13 Corp _ PROPN NNP _ 7 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Reached _ VERB VBN _ 7 advcl _ _ 2 in _ ADP IN _ 3 case _ _ 3 Honolulu _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Shidler _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 believes _ VERB VBZ _ 7 ccomp _ _ 11 the _ DET DT _ 14 det _ _ 12 various _ ADJ JJ _ 14 amod _ _ 13 Hooker _ PROPN NNP _ 14 compound _ _ 14 malls _ NOUN NNS _ 16 nsubj _ _ 15 can _ AUX MD _ 16 aux _ _ 16 become _ VERB VB _ 10 ccomp _ _ 17 profitable _ ADJ JJ _ 16 xcomp _ _ 18 with _ ADP IN _ 20 case _ _ 19 new _ ADJ JJ _ 20 amod _ _ 20 management _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 These _ PRON DT _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 mature _ ADJ JJ _ 6 amod _ _ 6 assets _ NOUN NNS _ 18 ccomp _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 but _ CONJ CC _ 6 cc _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 have _ VERB VBP _ 6 conj _ _ 11 the _ DET DT _ 12 det _ _ 12 potential _ NOUN JJ _ 10 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 be _ VERB VB _ 12 acl _ _ 15 so _ ADV RB _ 14 advmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Shidler _ PROPN NNP _ 18 nsubj _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 Managed _ VERB VBD _ 13 advcl _ _ 3 properly _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 and _ CONJ CC _ 2 advmod _ _ 6 with _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 long-term _ ADJ JJ _ 9 amod _ _ 9 outlook _ NOUN NN _ 5 conj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 these _ PRON DT _ 13 nsubj _ _ 12 can _ AUX MD _ 13 aux _ _ 13 become _ VERB VB _ 0 root _ _ 14 investment-grade _ ADJ JJ _ 16 amod _ _ 15 quality _ NOUN NN _ 16 compound _ _ 16 properties _ NOUN NNS _ 13 xcomp _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 Canadian _ ADJ JJ _ 3 amod _ _ 2 steel-ingot _ NOUN NN _ 3 compound _ _ 3 production _ NOUN NN _ 4 nsubj _ _ 4 totaled _ VERB VBD _ 35 ccomp _ _ 5 291,890 _ NUM CD _ 7 nummod _ _ 6 metric _ ADJ JJ _ 7 amod _ _ 7 tons _ NOUN NNS _ 4 dobj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 week _ NOUN NN _ 4 nmod _ _ 11 ended _ VERB VBN _ 10 acl _ _ 12 Oct. _ PROPN NNP _ 11 nmod:tmod _ _ 13 7 _ NUM CD _ 12 nummod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 up _ ADV RB _ 4 advmod _ _ 16 14.8 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 15 nmod:npmod _ _ 18 from _ ADP IN _ 23 case _ _ 19 the _ DET DT _ 21 det _ _ 20 preceding _ ADJ VBG _ 21 amod _ _ 21 week _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 total _ NOUN NN _ 15 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 254,280 _ NUM CD _ 26 nummod _ _ 26 tons _ NOUN NNS _ 23 nmod _ _ 27 , _ PUNCT , _ 35 punct _ _ 28 Statistics _ PROPN NNPS _ 29 compound _ _ 29 Canada _ PROPN NNP _ 35 nsubj _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 a _ DET DT _ 33 det _ _ 32 federal _ ADJ JJ _ 33 amod _ _ 33 agency _ NOUN NN _ 29 appos _ _ 34 , _ PUNCT , _ 29 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 . _ PUNCT . _ 35 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 week _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 total _ NOUN NN _ 5 nsubj _ _ 5 was _ VERB VBD _ 0 root _ _ 6 up _ ADV RB _ 5 advmod _ _ 7 6.2 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 nmod:npmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 274,963 _ NUM CD _ 11 nummod _ _ 11 tons _ NOUN NNS _ 6 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 year _ NOUN NN _ 14 nmod:npmod _ _ 14 earlier _ ADV RBR _ 11 advmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 year-to-date _ ADJ JJ _ 3 amod _ _ 3 total _ NOUN NN _ 6 nsubj _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 12,006,883 _ NUM CD _ 6 nummod _ _ 6 tons _ NOUN NNS _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 up _ ADV IN _ 6 advmod _ _ 9 7.8 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 nmod:npmod _ _ 11 from _ ADP IN _ 13 case _ _ 12 11,141,711 _ NUM CD _ 13 nummod _ _ 13 tons _ NOUN NNS _ 8 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 year _ NOUN NN _ 16 nmod:npmod _ _ 16 earlier _ ADV RBR _ 13 advmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Treasury _ PROPN NNP _ 3 nsubj _ _ 3 plans _ NOUN NNS _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 raise _ VERB VB _ 3 xcomp _ _ 6 $ _ SYM $ _ 5 dobj _ _ 7 175 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 cash _ NOUN NN _ 6 nmod _ _ 12 Thursday _ PROPN NNP _ 5 nmod:tmod _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 selling _ VERB VBG _ 5 advcl _ _ 15 about _ ADV RB _ 16 advmod _ _ 16 $ _ SYM $ _ 14 dobj _ _ 17 9.75 _ NUM CD _ 18 compound _ _ 18 billion _ NUM CD _ 16 nummod _ _ 19 of _ ADP IN _ 21 case _ _ 20 52-week _ ADJ JJ _ 21 amod _ _ 21 bills _ NOUN NNS _ 16 nmod _ _ 22 and _ CONJ CC _ 14 cc _ _ 23 redeeming _ VERB JJ _ 14 conj _ _ 24 $ _ SYM $ _ 26 dep _ _ 25 9.58 _ NUM CD _ 26 nummod _ _ 26 billion _ NUM CD _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 maturing _ VERB VBG _ 29 amod _ _ 29 bills _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bills _ NOUN NNS _ 5 nsubjpass _ _ 3 will _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 dated _ VERB VBN _ 0 root _ _ 6 Oct. _ PROPN NNP _ 5 xcomp _ _ 7 26 _ NUM CD _ 6 nummod _ _ 8 and _ CONJ CC _ 5 cc _ _ 9 will _ AUX MD _ 10 aux _ _ 10 mature _ VERB VB _ 5 conj _ _ 11 Oct. _ PROPN NNP _ 10 nmod:tmod _ _ 12 25 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 1990 _ NUM CD _ 11 nummod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 be _ VERB VB _ 4 cop _ _ 4 available _ ADJ JJ _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 minimum _ ADJ JJ _ 7 amod _ _ 7 denominations _ NOUN NNS _ 4 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 10,000 _ NUM CD _ 7 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Bids _ NOUN NNS _ 4 nsubjpass _ _ 2 must _ AUX MD _ 4 aux _ _ 3 be _ AUX VB _ 4 auxpass _ _ 4 received _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 8 case _ _ 6 1 _ NUM CD _ 8 nummod _ _ 7 p.m. _ ADV RB _ 8 advmod _ _ 8 EDT _ PROPN NNP _ 4 nmod _ _ 9 Thursday _ PROPN NNP _ 4 nmod:tmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 Treasury _ PROPN NNP _ 4 nmod _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 at _ ADP IN _ 17 case _ _ 15 Federal _ PROPN NNP _ 17 compound _ _ 16 Reserve _ PROPN NNP _ 17 compound _ _ 17 banks _ NOUN NNS _ 12 conj _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 branches _ NOUN NNS _ 17 conj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 small _ ADJ JJ _ 3 amod _ _ 3 investors _ NOUN NNS _ 4 nsubj _ _ 4 peppered _ VERB VBD _ 18 advcl _ _ 5 their _ PRON PRP$ _ 7 nmod:poss _ _ 6 mutual _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 4 dobj _ _ 8 with _ ADP IN _ 10 case _ _ 9 phone _ NOUN NN _ 10 compound _ _ 10 calls _ NOUN NNS _ 4 nmod _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 weekend _ NOUN NN _ 4 nmod _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 big _ ADJ JJ _ 17 amod _ _ 16 fund _ NOUN NN _ 17 compound _ _ 17 managers _ NOUN NNS _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 they _ PRON PRP _ 20 nsubj _ _ 20 have _ VERB VBP _ 18 ccomp _ _ 21 a _ DET DT _ 23 det _ _ 22 strong _ ADJ JJ _ 23 amod _ _ 23 defense _ NOUN NN _ 20 dobj _ _ 24 against _ ADP IN _ 26 case _ _ 25 any _ DET DT _ 26 det _ _ 26 wave _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 28 case _ _ 28 withdrawals _ NOUN NNS _ 26 nmod _ _ 29 : _ PUNCT : _ 23 punct _ _ 30 cash _ NOUN NN _ 23 dep _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 weekend _ NOUN NN _ 12 nmod _ _ 4 before _ ADP IN _ 6 case _ _ 5 Black _ PROPN NNP _ 6 compound _ _ 6 Monday _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 funds _ NOUN NNS _ 12 nsubjpass _ _ 10 were _ AUX VBD _ 12 auxpass _ _ 11 n't _ PART RB _ 12 neg _ _ 12 swamped _ VERB VBN _ 0 root _ _ 13 with _ ADP IN _ 16 case _ _ 14 heavy _ ADJ JJ _ 16 amod _ _ 15 withdrawal _ NOUN NN _ 16 compound _ _ 16 requests _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 many _ ADJ JJ _ 4 amod _ _ 3 fund _ NOUN NN _ 4 compound _ _ 4 managers _ NOUN NNS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 built _ VERB VBN _ 0 root _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 cash _ NOUN NN _ 9 compound _ _ 9 levels _ NOUN NNS _ 6 dobj _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 say _ VERB VBP _ 6 conj _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 will _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 aux _ _ 15 buying _ VERB VBG _ 11 ccomp _ _ 16 stock _ NOUN NN _ 15 dobj _ _ 17 this _ DET DT _ 18 det _ _ 18 week _ NOUN NN _ 15 nmod:tmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Fidelity _ PROPN NNP _ 3 compound _ _ 3 Investments _ PROPN NNP _ 14 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 nation _ NOUN NN _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 largest _ ADJ JJS _ 10 amod _ _ 9 fund _ NOUN NN _ 10 compound _ _ 10 company _ NOUN NN _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 telephone _ NOUN NN _ 13 compound _ _ 13 volume _ NOUN NN _ 14 nsubj _ _ 14 was _ VERB VBD _ 0 root _ _ 15 up _ ADV RB _ 16 advmod _ _ 16 sharply _ ADV RB _ 14 advmod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 but _ CONJ CC _ 14 cc _ _ 19 it _ PRON PRP _ 26 nsubj _ _ 20 was _ VERB VBD _ 26 cop _ _ 21 still _ ADV RB _ 26 advmod _ _ 22 at _ ADP IN _ 26 case _ _ 23 just _ ADV RB _ 24 advmod _ _ 24 half _ DET PDT _ 26 nummod _ _ 25 the _ DET DT _ 26 det _ _ 26 level _ NOUN NN _ 14 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 weekend _ NOUN NN _ 26 nmod _ _ 30 preceding _ VERB VBG _ 29 acl _ _ 31 Black _ PROPN NNP _ 32 compound _ _ 32 Monday _ PROPN NNP _ 30 nmod:tmod _ _ 33 in _ ADP IN _ 34 case _ _ 34 1987 _ NUM CD _ 29 nmod _ _ 35 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Boston _ PROPN NNP _ 3 compound _ _ 3 firm _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 stock-fund _ NOUN NN _ 6 compound _ _ 6 redemptions _ NOUN NNS _ 8 nsubj _ _ 7 were _ AUX VBD _ 8 aux _ _ 8 running _ VERB VBG _ 4 ccomp _ _ 9 at _ ADP IN _ 14 case _ _ 10 less _ ADJ JJR _ 12 advmod _ _ 11 than _ ADP IN _ 10 mwe _ _ 12 one-third _ NOUN JJ _ 14 nummod _ _ 13 the _ DET DT _ 14 det _ _ 14 level _ NOUN NN _ 8 nmod _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 17 nmod:npmod _ _ 17 ago _ ADV RB _ 14 advmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 As _ ADP IN _ 4 case _ _ 2 of _ ADP IN _ 4 case _ _ 3 yesterday _ NOUN NN _ 4 compound _ _ 4 afternoon _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 redemptions _ NOUN NNS _ 8 nsubj _ _ 8 represented _ VERB VBD _ 0 root _ _ 9 less _ ADJ JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 15 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 8 dobj _ _ 13 of _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 total _ ADJ JJ _ 17 amod _ _ 16 cash _ NOUN NN _ 17 compound _ _ 17 position _ NOUN NN _ 12 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 about _ ADV IN _ 20 advmod _ _ 20 $ _ SYM $ _ 17 nmod _ _ 21 2 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 of _ ADP IN _ 27 case _ _ 24 Fidelity _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 funds _ NOUN NNS _ 17 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 Two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV IN _ 6 advmod _ _ 5 there _ PRON EX _ 6 expl _ _ 6 were _ VERB VBD _ 21 ccomp _ _ 7 massive _ ADJ JJ _ 9 amod _ _ 8 redemption _ NOUN NN _ 9 compound _ _ 9 levels _ NOUN NNS _ 6 nsubj _ _ 10 over _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 weekend _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 a _ DET DT _ 15 det _ _ 15 lot _ NOUN NN _ 9 conj _ _ 16 of _ ADP IN _ 17 case _ _ 17 fear _ NOUN NN _ 15 nmod _ _ 18 around _ ADV IN _ 15 advmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 C. _ PROPN NNP _ 24 compound _ _ 23 Bruce _ PROPN NNP _ 24 compound _ _ 24 Johnstone _ PROPN NNP _ 21 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 runs _ VERB VBZ _ 24 acl:relcl _ _ 28 Fidelity _ PROPN NNP _ 29 compound _ _ 29 Investments _ PROPN NNP _ 35 nmod:poss _ _ 30 ' _ PART POS _ 29 case _ _ 31 $ _ SYM $ _ 35 amod _ _ 32 5 _ NUM CD _ 33 compound _ _ 33 billion _ NUM CD _ 31 nummod _ _ 34 Equity-Income _ PROPN NNP _ 35 compound _ _ 35 Fund _ PROPN NNP _ 27 dobj _ _ 36 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 This _ PRON DT _ 3 nsubj _ _ 3 feels _ VERB VBZ _ 0 root _ _ 4 more _ ADV JJR _ 8 advmod _ _ 5 like _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 one-shot _ ADJ JJ _ 8 amod _ _ 8 deal _ NOUN NN _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 People _ NOUN NNS _ 4 nsubj _ _ 2 are _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 panicking _ VERB JJ _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 6 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 test _ NOUN NN _ 4 nsubj _ _ 3 may _ AUX MD _ 4 aux _ _ 4 come _ VERB VB _ 0 root _ _ 5 today _ NOUN NN _ 4 nmod:tmod _ _ 6 . _ PUNCT . _ 4 punct _ _ 1 Friday _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 stock _ NOUN NN _ 5 compound _ _ 4 market _ NOUN NN _ 5 compound _ _ 5 sell-off _ NOUN NN _ 6 nsubj _ _ 6 came _ VERB VBD _ 0 root _ _ 7 too _ ADV RB _ 8 advmod _ _ 8 late _ ADV JJ _ 6 advmod _ _ 9 for _ SCONJ IN _ 13 mark _ _ 10 many _ ADJ JJ _ 11 amod _ _ 11 investors _ NOUN NNS _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 act _ VERB VB _ 8 dep _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 shareholders _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 held _ VERB VBN _ 0 root _ _ 5 off _ ADP RP _ 4 compound:prt _ _ 6 until _ ADP IN _ 7 case _ _ 7 today _ NOUN NN _ 4 nmod _ _ 8 because _ SCONJ IN _ 18 mark _ _ 9 any _ DET DT _ 11 det _ _ 10 fund _ NOUN NN _ 11 compound _ _ 11 exchanges _ NOUN NNS _ 18 nsubj _ _ 12 made _ VERB VBN _ 11 acl _ _ 13 after _ ADP IN _ 16 case _ _ 14 Friday _ PROPN NNP _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 close _ NOUN NN _ 12 nmod _ _ 17 would _ AUX MD _ 18 aux _ _ 18 take _ VERB VB _ 4 advcl _ _ 19 place _ NOUN NN _ 18 dobj _ _ 20 at _ ADP IN _ 24 case _ _ 21 today _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 closing _ NOUN NN _ 24 compound _ _ 24 prices _ NOUN NNS _ 18 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 Stock _ NOUN NNP _ 3 compound _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 redemptions _ NOUN NNS _ 10 nsubj _ _ 4 during _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 debacle _ NOUN NN _ 10 nmod _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 begin _ VERB VB _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 snowball _ VERB NN _ 10 xcomp _ _ 13 until _ SCONJ IN _ 17 mark _ _ 14 after _ SCONJ IN _ 17 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 opened _ VERB VBD _ 10 advcl _ _ 18 on _ ADP IN _ 20 case _ _ 19 Black _ PROPN NNP _ 20 compound _ _ 20 Monday _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 4 nsubj _ _ 4 say _ VERB VBP _ 0 root _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 're _ VERB VBP _ 7 cop _ _ 7 ready _ ADJ JJ _ 4 ccomp _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Many _ ADJ JJ _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 raised _ VERB VBN _ 0 root _ _ 4 cash _ NOUN NN _ 5 compound _ _ 5 levels _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 act _ VERB VBP _ 5 acl:relcl _ _ 9 as _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 buffer _ NOUN NN _ 8 nmod _ _ 12 against _ ADP IN _ 15 case _ _ 13 steep _ ADJ JJ _ 15 amod _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 declines _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Mario _ PROPN NNP _ 2 compound _ _ 2 Gabelli _ PROPN NNP _ 7 nsubj _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 instance _ NOUN NN _ 7 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 holds _ VERB VBZ _ 0 root _ _ 8 cash _ NOUN NN _ 9 compound _ _ 9 positions _ NOUN NNS _ 7 dobj _ _ 10 well _ ADV RB _ 13 advmod _ _ 11 above _ ADP IN _ 13 case _ _ 12 20 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 9 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 several _ ADJ JJ _ 7 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 funds _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 Windsor _ PROPN NNP _ 2 compound _ _ 2 Fund _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 John _ PROPN NNP _ 5 compound _ _ 5 Neff _ PROPN NNP _ 12 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Mutual _ PROPN NNP _ 8 compound _ _ 8 Series _ PROPN NNP _ 11 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 Michael _ PROPN NNP _ 11 compound _ _ 11 Price _ PROPN NNP _ 5 conj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 they _ PRON PRP _ 15 nsubj _ _ 14 had _ AUX VBD _ 15 aux _ _ 15 raised _ VERB VBN _ 12 ccomp _ _ 16 their _ PRON PRP$ _ 18 nmod:poss _ _ 17 cash _ NOUN NN _ 18 compound _ _ 18 levels _ NOUN NNS _ 15 dobj _ _ 19 to _ ADP TO _ 26 case _ _ 20 more _ ADJ JJR _ 26 advmod _ _ 21 than _ ADP IN _ 20 mwe _ _ 22 20 _ NUM CD _ 26 compound _ _ 23 % _ SYM NN _ 26 dep _ _ 24 and _ CONJ CC _ 26 cc _ _ 25 30 _ NUM CD _ 26 conj _ _ 26 % _ SYM NN _ 15 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 respectively _ ADV RB _ 26 advmod _ _ 29 , _ PUNCT , _ 15 punct _ _ 30 this _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 15 nmod:tmod _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 Even _ ADV RB _ 3 advmod _ _ 2 Peter _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 22 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 manager _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 13 case _ _ 7 Fidelity _ PROPN NNP _ 13 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 $ _ SYM $ _ 13 amod _ _ 10 12.7 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 Magellan _ PROPN NNP _ 13 compound _ _ 13 Fund _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 the _ DET DT _ 16 det _ _ 16 nation _ NOUN NN _ 20 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 largest _ ADJ JJS _ 20 amod _ _ 19 stock _ NOUN NN _ 20 compound _ _ 20 fund _ NOUN NN _ 13 appos _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 built _ VERB VBN _ 0 root _ _ 23 up _ ADP RP _ 22 compound:prt _ _ 24 cash _ NOUN NN _ 22 dobj _ _ 25 to _ ADP TO _ 27 case _ _ 26 7 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 22 nmod _ _ 28 or _ CONJ CC _ 27 cc _ _ 29 $ _ SYM $ _ 27 conj _ _ 30 850 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 . _ PUNCT . _ 22 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 reason _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 that _ DET IN _ 15 mark _ _ 5 after _ ADP IN _ 7 case _ _ 6 two _ NUM CD _ 7 nummod _ _ 7 years _ NOUN NNS _ 15 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 monthly _ ADJ JJ _ 11 amod _ _ 10 net _ ADJ JJ _ 11 amod _ _ 11 redemptions _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 fund _ NOUN NN _ 15 nsubj _ _ 15 posted _ VERB VBD _ 3 ccomp _ _ 16 net _ ADJ JJ _ 17 amod _ _ 17 inflows _ NOUN NNS _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 money _ NOUN NN _ 17 nmod _ _ 20 from _ ADP IN _ 21 case _ _ 21 investors _ NOUN NNS _ 17 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 August _ PROPN NNP _ 15 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 September _ PROPN NNP _ 23 conj _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 let _ VERB VB _ 13 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 money _ NOUN NN _ 7 nsubj _ _ 7 build _ VERB VB _ 4 ccomp _ _ 8 up _ ADP RB _ 7 compound:prt _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 '' _ PUNCT '' _ 13 punct _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Lynch _ PROPN NNP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 who _ PRON WP _ 16 nsubj _ _ 16 added _ VERB VBD _ 13 ccomp _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 he _ PRON PRP _ 20 nsubj _ _ 19 has _ AUX VBZ _ 20 aux _ _ 20 had _ VERB VBN _ 16 ccomp _ _ 21 trouble _ NOUN NN _ 20 dobj _ _ 22 finding _ VERB VBG _ 20 xcomp _ _ 23 stocks _ NOUN NNS _ 22 dobj _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 likes _ VERB VBZ _ 23 acl:relcl _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 all _ DET DT _ 3 amod _ _ 3 funds _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 raised _ VERB VBN _ 0 root _ _ 6 cash _ NOUN NN _ 7 compound _ _ 7 levels _ NOUN NNS _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 of _ ADP IN _ 10 case _ _ 10 course _ NOUN NN _ 5 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 group _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 stock _ NOUN NN _ 6 compound _ _ 6 funds _ NOUN NNS _ 7 nsubj _ _ 7 held _ VERB VBD _ 0 root _ _ 8 10.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 assets _ NOUN NNS _ 9 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 cash _ NOUN NN _ 7 nmod _ _ 14 as _ ADP IN _ 16 case _ _ 15 of _ ADP IN _ 16 case _ _ 16 August _ PROPN NNP _ 7 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 the _ DET DT _ 20 det _ _ 19 latest _ ADJ JJS _ 20 amod _ _ 20 figures _ NOUN NNS _ 7 dobj _ _ 21 available _ ADJ JJ _ 20 amod _ _ 22 from _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Investment _ PROPN NNP _ 26 compound _ _ 25 Company _ PROPN NNP _ 26 compound _ _ 26 Institute _ PROPN NNP _ 21 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 That _ PRON DT _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 modestly _ ADV RB _ 4 advmod _ _ 4 higher _ ADJ JJR _ 0 root _ _ 5 than _ ADP IN _ 12 case _ _ 6 the _ DET DT _ 12 det _ _ 7 8.8 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 12 nummod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 9.2 _ NUM CD _ 11 nummod _ _ 11 % _ ADJ NN _ 8 conj _ _ 12 levels _ NOUN NNS _ 4 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 12 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 September _ PROPN NNP _ 14 conj _ _ 17 of _ ADP IN _ 18 case _ _ 18 1987 _ NUM CD _ 14 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 persistent _ ADJ JJ _ 4 amod _ _ 4 redemptions _ NOUN NNS _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 force _ VERB VB _ 0 root _ _ 7 some _ DET DT _ 9 det _ _ 8 fund _ NOUN NN _ 9 compound _ _ 9 managers _ NOUN NNS _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 dump _ VERB VB _ 6 xcomp _ _ 12 stocks _ NOUN NNS _ 11 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 raise _ VERB VB _ 11 advcl _ _ 15 cash _ NOUN NN _ 14 dobj _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 18 cc _ _ 2 a _ DET DT _ 4 det _ _ 3 strong _ ADJ JJ _ 4 amod _ _ 4 level _ NOUN NN _ 11 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 investor _ NOUN NN _ 7 compound _ _ 7 withdrawals _ NOUN NNS _ 4 nmod _ _ 8 is _ VERB VBZ _ 11 cop _ _ 9 much _ ADV RB _ 10 advmod _ _ 10 more _ ADV RBR _ 11 advmod _ _ 11 unlikely _ ADJ JJ _ 18 dep _ _ 12 this _ DET DT _ 13 det _ _ 13 time _ NOUN NN _ 11 nmod:tmod _ _ 14 around _ ADV RP _ 13 advmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 fund _ NOUN NN _ 17 compound _ _ 17 managers _ NOUN NNS _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 reason _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 investors _ NOUN NNS _ 10 nsubj _ _ 7 already _ ADV RB _ 10 advmod _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 sharply _ ADV RB _ 10 advmod _ _ 10 scaled _ VERB VBN _ 4 ccomp _ _ 11 back _ ADP RP _ 10 compound:prt _ _ 12 their _ PRON PRP$ _ 13 nmod:poss _ _ 13 purchases _ NOUN NNS _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 funds _ NOUN NNS _ 13 nmod _ _ 17 since _ ADP IN _ 19 case _ _ 18 Black _ PROPN NNP _ 19 compound _ _ 19 Monday _ PROPN NNP _ 10 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Stock-fund _ ADJ NN _ 2 amod _ _ 2 sales _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 rebounded _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 recent _ ADJ JJ _ 7 amod _ _ 7 months _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 but _ CONJ CC _ 4 cc _ _ 10 monthly _ ADJ JJ _ 12 amod _ _ 11 net _ ADJ JJ _ 12 amod _ _ 12 purchases _ NOUN NNS _ 15 nsubj _ _ 13 are _ AUX VBP _ 15 aux _ _ 14 still _ ADV RB _ 15 advmod _ _ 15 running _ VERB VBG _ 4 conj _ _ 16 at _ ADP IN _ 21 case _ _ 17 less _ ADJ JJR _ 19 advmod _ _ 18 than _ ADP IN _ 17 mwe _ _ 19 half _ NOUN DT _ 21 nummod _ _ 20 1987 _ NUM CD _ 21 nummod _ _ 21 levels _ NOUN NNS _ 15 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 11 ccomp _ _ 4 not _ PART RB _ 3 neg _ _ 5 nearly _ ADV RB _ 7 advmod _ _ 6 as _ ADP RB _ 7 dep _ _ 7 much _ ADJ JJ _ 8 amod _ _ 8 froth _ NOUN NN _ 3 nsubj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 John _ PROPN NNP _ 13 compound _ _ 13 Bogle _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 chairman _ NOUN NN _ 13 appos _ _ 16 of _ ADP IN _ 19 case _ _ 17 Vanguard _ PROPN NNP _ 19 compound _ _ 18 Group _ PROPN NNP _ 19 compound _ _ 19 Inc. _ PROPN NNP _ 15 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 a _ DET DT _ 29 det _ _ 22 big _ ADJ JJ _ 29 amod _ _ 23 Valley _ PROPN NNP _ 29 dep _ _ 24 Forge _ PROPN NNP _ 23 compound _ _ 25 , _ PUNCT , _ 23 punct _ _ 26 Pa. _ PROPN NNP _ 23 dep _ _ 27 , _ PUNCT , _ 23 punct _ _ 28 fund _ NOUN NN _ 29 compound _ _ 29 company _ NOUN NN _ 19 appos _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 4 nsubj _ _ 4 argue _ VERB VBP _ 0 root _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 now _ ADV RB _ 9 nsubj _ _ 7 's _ VERB VBZ _ 9 cop _ _ 8 the _ DET DT _ 9 det _ _ 9 time _ NOUN NN _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 buy _ VERB VB _ 9 acl _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Vincent _ PROPN NNP _ 2 compound _ _ 2 Bajakian _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 manager _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 11 det _ _ 7 $ _ SYM $ _ 11 amod _ _ 8 1.8 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 Wellington _ PROPN NNP _ 11 compound _ _ 11 Fund _ PROPN NNP _ 4 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 added _ VERB VBD _ 0 root _ _ 14 to _ ADP TO _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 positions _ NOUN NNS _ 13 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 Bristol-Myers _ PROPN NNP _ 19 compound _ _ 19 Squibb _ PROPN NNP _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Woolworth _ PROPN NNP _ 19 conj _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 Dun _ PROPN NNP _ 19 conj _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Bradstreet _ PROPN NNP _ 23 conj _ _ 26 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 today _ NOUN NN _ 6 nmod:tmod _ _ 3 he _ PRON PRP _ 6 nsubj _ _ 4 'll _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 aux _ _ 6 looking _ VERB VBG _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 6 xcomp _ _ 9 drug _ NOUN NN _ 10 compound _ _ 10 stocks _ NOUN NNS _ 8 dobj _ _ 11 like _ ADP IN _ 13 case _ _ 12 Eli _ PROPN NNP _ 13 compound _ _ 13 Lilly _ PROPN NNP _ 10 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Pfizer _ PROPN NNP _ 13 conj _ _ 16 and _ CONJ CC _ 13 cc _ _ 17 American _ PROPN NNP _ 19 compound _ _ 18 Home _ PROPN NNP _ 19 compound _ _ 19 Products _ PROPN NNPS _ 13 conj _ _ 20 whose _ PRON WP$ _ 22 nmod:poss _ _ 21 dividend _ NOUN NN _ 22 compound _ _ 22 yields _ NOUN NNS _ 25 nsubjpass _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 bolstered _ VERB VBN _ 13 acl:relcl _ _ 26 by _ ADP IN _ 28 case _ _ 27 stock _ NOUN NN _ 28 compound _ _ 28 declines _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Fidelity _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 Lynch _ PROPN NNP _ 10 nsubj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 for _ ADP IN _ 8 case _ _ 7 his _ PRON PRP$ _ 8 nmod:poss _ _ 8 part _ NOUN NN _ 10 nmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 snapped _ VERB VBD _ 0 root _ _ 11 up _ ADP RP _ 10 compound:prt _ _ 12 Southern _ PROPN NNP _ 14 compound _ _ 13 Co. _ PROPN NNP _ 14 compound _ _ 14 shares _ NOUN NNS _ 10 dobj _ _ 15 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 16 after _ SCONJ IN _ 20 mark _ _ 17 the _ DET DT _ 18 det _ _ 18 stock _ NOUN NN _ 20 nsubjpass _ _ 19 got _ AUX VBD _ 20 auxpass _ _ 20 hammered _ VERB VBN _ 10 advcl _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 drops _ VERB VBZ _ 9 advcl _ _ 5 further _ ADV RB _ 4 advmod _ _ 6 today _ NOUN NN _ 4 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 he _ PRON PRP _ 13 nsubj _ _ 11 'll _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 aux _ _ 13 buying _ VERB VBG _ 9 ccomp _ _ 14 blue _ ADJ JJ _ 15 amod _ _ 15 chips _ NOUN NNS _ 13 dobj _ _ 16 such _ ADJ JJ _ 18 case _ _ 17 as _ ADP IN _ 16 mwe _ _ 18 Bristol-Myers _ PROPN NNP _ 15 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 Kellogg _ PROPN NNP _ 18 conj _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 croak _ VERB VBP _ 14 advcl _ _ 5 stocks _ NOUN NNS _ 4 dobj _ _ 6 like _ ADP IN _ 7 case _ _ 7 that _ PRON DT _ 5 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 14 parataxis _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 presents _ VERB VBZ _ 0 root _ _ 15 an _ DET DT _ 16 det _ _ 16 opportunity _ NOUN NN _ 14 dobj _ _ 17 that _ PRON WDT _ 21 nsubj _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 kind _ NOUN NN _ 16 acl:relcl _ _ 22 of _ ADP IN _ 23 case _ _ 23 thing _ NOUN NN _ 21 nmod _ _ 24 you _ PRON PRP _ 25 nsubj _ _ 25 dream _ VERB VBP _ 21 acl:relcl _ _ 26 about _ ADP RB _ 25 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 28 '' _ PUNCT '' _ 14 punct _ _ 1 Major _ ADJ JJ _ 3 amod _ _ 2 mutual-fund _ NOUN JJ _ 3 compound _ _ 3 groups _ NOUN NNS _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 phone _ NOUN NN _ 6 compound _ _ 6 calls _ NOUN NNS _ 8 nsubj _ _ 7 were _ AUX VBD _ 8 aux _ _ 8 arriving _ VERB VBG _ 4 ccomp _ _ 9 at _ ADP IN _ 14 case _ _ 10 twice _ ADV RB _ 14 advmod _ _ 11 the _ DET DT _ 14 det _ _ 12 normal _ ADJ JJ _ 14 amod _ _ 13 weekend _ NOUN NN _ 14 compound _ _ 14 pace _ NOUN NN _ 8 nmod _ _ 15 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 most _ ADJ JJS _ 3 amod _ _ 3 investors _ NOUN NNS _ 5 nsubj _ _ 4 were _ AUX VBD _ 5 aux _ _ 5 seeking _ VERB VBG _ 0 root _ _ 6 share _ NOUN NN _ 7 compound _ _ 7 prices _ NOUN NNS _ 5 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 other _ ADJ JJ _ 10 amod _ _ 10 information _ NOUN NN _ 7 conj _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 Trading _ NOUN NN _ 2 compound _ _ 2 volume _ NOUN NN _ 6 nsubj _ _ 3 was _ VERB VBD _ 6 cop _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 modestly _ ADV RB _ 6 advmod _ _ 6 higher _ ADJ JJR _ 0 root _ _ 7 than _ ADP IN _ 8 case _ _ 8 normal _ ADJ JJ _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 Still _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 fund _ NOUN NN _ 4 compound _ _ 4 groups _ NOUN NNS _ 7 nsubj _ _ 5 are _ AUX VBP _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 taking _ VERB VBG _ 0 root _ _ 8 any _ DET DT _ 9 det _ _ 9 chances _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 hope _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 avoid _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 8 det _ _ 6 jammed _ ADJ VBN _ 8 amod _ _ 7 phone _ NOUN NN _ 8 compound _ _ 8 lines _ NOUN NNS _ 4 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 snags _ NOUN NNS _ 8 conj _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 infuriated _ VERB VBD _ 8 acl:relcl _ _ 14 some _ DET DT _ 16 det _ _ 15 fund _ NOUN NN _ 16 compound _ _ 16 investors _ NOUN NNS _ 13 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 October _ PROPN NNP _ 13 nmod _ _ 19 1987 _ NUM CD _ 18 nummod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Fidelity _ PROPN NNP _ 4 nsubj _ _ 2 on _ ADP IN _ 3 case _ _ 3 Saturday _ PROPN NNP _ 4 nmod _ _ 4 opened _ VERB VBD _ 0 root _ _ 5 its _ PRON PRP$ _ 9 nmod:poss _ _ 6 54 _ NUM CD _ 9 nummod _ _ 7 walk-in _ ADJ JJ _ 9 amod _ _ 8 investor _ NOUN NN _ 9 compound _ _ 9 centers _ NOUN NNS _ 4 dobj _ _ 10 across _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 country _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 centers _ NOUN NNS _ 5 nsubj _ _ 3 normally _ ADV RB _ 5 advmod _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 closed _ ADJ VBN _ 0 root _ _ 6 through _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 weekend _ NOUN NN _ 5 nmod _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 East _ PROPN NNP _ 6 compound _ _ 5 Coast _ PROPN NNP _ 6 compound _ _ 6 centers _ NOUN NNS _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 open _ VERB VB _ 0 root _ _ 9 at _ ADP IN _ 11 case _ _ 10 7:30 _ NUM CD _ 11 nummod _ _ 11 EDT _ PROPN NNP _ 8 nmod _ _ 12 this _ DET DT _ 13 det _ _ 13 morning _ NOUN NN _ 8 nmod:tmod _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 instead _ ADV RB _ 19 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 the _ DET DT _ 19 det _ _ 18 normal _ ADJ JJ _ 19 amod _ _ 19 8:30 _ NUM CD _ 8 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 T. _ PROPN NNP _ 5 compound _ _ 2 Rowe _ PROPN NNP _ 5 compound _ _ 3 Price _ PROPN NNP _ 5 compound _ _ 4 Associates _ PROPN NNPS _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 increased _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 staff _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 phone _ NOUN NN _ 11 compound _ _ 11 representatives _ NOUN NNS _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 handle _ VERB VB _ 11 acl _ _ 14 investor _ NOUN NN _ 15 compound _ _ 15 requests _ NOUN NNS _ 13 dobj _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Baltimore-based _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 4 nsubj _ _ 4 noted _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 some _ DET DT _ 7 det _ _ 7 investors _ NOUN NNS _ 8 nsubj _ _ 8 moved _ VERB VBD _ 4 ccomp _ _ 9 money _ NOUN NN _ 8 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 funds _ NOUN NNS _ 8 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 money-market _ NOUN JJ _ 15 compound _ _ 15 funds _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 most _ ADJ JJS _ 3 amod _ _ 3 investors _ NOUN NNS _ 4 nsubj _ _ 4 seemed _ VERB VBD _ 20 ccomp _ _ 5 to _ PART TO _ 11 mark _ _ 6 be _ VERB VB _ 11 cop _ _ 7 `` _ PUNCT `` _ 11 punct _ _ 8 in _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 information _ NOUN NN _ 11 compound _ _ 11 mode _ NOUN NN _ 4 xcomp _ _ 12 rather _ ADV RB _ 11 cc _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 in _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 transaction _ NOUN NN _ 17 compound _ _ 17 mode _ NOUN NN _ 11 conj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 Steven _ PROPN NNP _ 22 compound _ _ 22 Norwitz _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 a _ DET DT _ 26 det _ _ 25 vice _ NOUN NN _ 26 compound _ _ 26 president _ NOUN NN _ 22 appos _ _ 27 . _ PUNCT . _ 20 punct _ _ 1 And _ CONJ CC _ 8 cc _ _ 2 Vanguard _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 among _ ADP IN _ 6 case _ _ 5 other _ ADJ JJ _ 6 amod _ _ 6 groups _ NOUN NNS _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 it _ PRON PRP _ 11 nsubj _ _ 10 was _ AUX VBD _ 11 aux _ _ 11 adding _ VERB VBG _ 8 ccomp _ _ 12 more _ ADJ JJR _ 14 amod _ _ 13 phone _ NOUN NN _ 14 compound _ _ 14 representatives _ NOUN NNS _ 11 dobj _ _ 15 today _ NOUN NN _ 11 nmod:tmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 help _ VERB VB _ 11 advcl _ _ 18 investors _ NOUN NNS _ 19 nsubj _ _ 19 get _ VERB VB _ 17 ccomp _ _ 20 through _ ADP IN _ 19 compound:prt _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 an _ DET DT _ 4 det _ _ 3 unusual _ ADJ JJ _ 4 amod _ _ 4 move _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 several _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 8 nsubj _ _ 8 moved _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 calm _ VERB VB _ 8 xcomp _ _ 11 investors _ NOUN NNS _ 10 dobj _ _ 12 with _ ADP IN _ 13 case _ _ 13 recordings _ NOUN NNS _ 10 nmod _ _ 14 on _ ADP IN _ 18 case _ _ 15 their _ PRON PRP$ _ 18 nmod:poss _ _ 16 toll-free _ ADJ JJ _ 18 amod _ _ 17 phone _ NOUN NN _ 18 compound _ _ 18 lines _ NOUN NNS _ 10 nmod _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 view _ VERB VBP _ 28 ccomp _ _ 4 -LCB- _ PUNCT -LRB- _ 5 punct _ _ 5 Friday _ PROPN NNP _ 9 appos _ _ 6 's _ PART POS _ 5 case _ _ 7 -RCB- _ PUNCT -RRB- _ 5 punct _ _ 8 market _ NOUN NN _ 9 compound _ _ 9 decline _ NOUN NN _ 3 dobj _ _ 10 as _ SCONJ IN _ 11 mark _ _ 11 offering _ VERB VBG _ 3 advcl _ _ 12 us _ PRON PRP _ 11 iobj _ _ 13 a _ DET DT _ 15 det _ _ 14 buying _ NOUN NN _ 15 compound _ _ 15 opportunity _ NOUN NN _ 11 dobj _ _ 16 as _ ADP IN _ 18 case _ _ 17 long-term _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 11 nmod _ _ 19 , _ PUNCT , _ 28 punct _ _ 20 '' _ PUNCT '' _ 28 punct _ _ 21 a _ DET DT _ 22 det _ _ 22 recording _ NOUN NN _ 28 nsubj _ _ 23 at _ ADP IN _ 27 case _ _ 24 Gabelli _ PROPN NNP _ 27 compound _ _ 25 & _ CONJ CC _ 24 cc _ _ 26 Co. _ PROPN NNP _ 24 conj _ _ 27 funds _ NOUN NNS _ 22 nmod _ _ 28 said _ VERB VBD _ 0 root _ _ 29 over _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 weekend _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Janus _ PROPN NN _ 3 compound _ _ 3 Group _ PROPN NN _ 4 nsubj _ _ 4 had _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 similar _ ADJ JJ _ 7 amod _ _ 7 recording _ NOUN NN _ 4 dobj _ _ 8 for _ ADP IN _ 9 case _ _ 9 investors _ NOUN NNS _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 Several _ ADJ JJ _ 3 amod _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 4 nsubj _ _ 4 expect _ VERB VBP _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 rough _ ADJ JJ _ 7 amod _ _ 7 market _ NOUN NN _ 4 dobj _ _ 8 this _ DET DT _ 9 det _ _ 9 morning _ NOUN NN _ 7 nmod:tmod _ _ 10 before _ SCONJ IN _ 12 mark _ _ 11 prices _ NOUN NNS _ 12 nsubj _ _ 12 stabilize _ VERB VBP _ 4 advcl _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 early _ ADJ JJ _ 3 amod _ _ 3 selling _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 likely _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 stem _ VERB VB _ 5 xcomp _ _ 8 from _ ADP IN _ 9 case _ _ 9 investors _ NOUN NNS _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 portfolio _ NOUN NN _ 12 compound _ _ 12 managers _ NOUN NNS _ 9 conj _ _ 13 who _ PRON WP _ 14 nsubj _ _ 14 want _ VERB VBP _ 9 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 lock _ VERB VB _ 14 xcomp _ _ 17 in _ ADP RP _ 16 compound:prt _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 fat _ ADJ JJ _ 22 amod _ _ 22 profits _ NOUN NNS _ 16 dobj _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 Stock _ NOUN NNP _ 2 compound _ _ 2 funds _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 averaged _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 staggering _ ADJ JJ _ 7 amod _ _ 7 gain _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 25 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 through _ ADP IN _ 12 case _ _ 12 September _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 according _ VERB VBG _ 19 case _ _ 15 to _ ADP TO _ 14 mwe _ _ 16 Lipper _ PROPN NNP _ 19 compound _ _ 17 Analytical _ PROPN NNP _ 19 compound _ _ 18 Services _ PROPN NNPS _ 19 compound _ _ 19 Inc _ PROPN NNP _ 4 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Elaine _ PROPN NNP _ 2 compound _ _ 2 Garzarelli _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 runs _ VERB VBZ _ 2 acl:relcl _ _ 6 Shearson _ PROPN NNP _ 9 compound _ _ 7 Lehman _ PROPN NNP _ 9 compound _ _ 8 Hutton _ PROPN NNP _ 9 compound _ _ 9 Inc. _ PROPN NNP _ 16 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 $ _ SYM $ _ 16 amod _ _ 12 335 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 Sector _ PROPN NNP _ 16 compound _ _ 15 Analysis _ PROPN NNP _ 16 compound _ _ 16 Portfolio _ PROPN NNP _ 5 dobj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 predicts _ VERB VBZ _ 0 root _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 22 nsubj _ _ 21 will _ AUX MD _ 22 aux _ _ 22 open _ VERB VB _ 18 ccomp _ _ 23 down _ ADV RP _ 22 advmod _ _ 24 at _ ADP IN _ 25 case _ _ 25 least _ ADJ JJS _ 26 nmod:npmod _ _ 26 50 _ NUM CD _ 27 nummod _ _ 27 points _ NOUN NNS _ 23 nmod:npmod _ _ 28 on _ ADP IN _ 30 case _ _ 29 technical _ ADJ JJ _ 30 amod _ _ 30 factors _ NOUN NNS _ 23 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 `` _ PUNCT `` _ 30 punct _ _ 33 some _ DET DT _ 35 det _ _ 34 panic _ NOUN NN _ 35 compound _ _ 35 selling _ NOUN VBG _ 30 conj _ _ 36 . _ PUNCT . _ 18 punct _ _ 37 '' _ PUNCT '' _ 18 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 prices _ NOUN NNS _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 rebound _ VERB VB _ 3 xcomp _ _ 7 soon _ ADV RB _ 6 advmod _ _ 8 and _ CONJ CC _ 3 cc _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 telling _ VERB VBG _ 3 conj _ _ 11 investors _ NOUN NNS _ 10 dobj _ _ 12 she _ PRON PRP _ 13 nsubj _ _ 13 expects _ VERB VBZ _ 10 ccomp _ _ 14 the _ DET DT _ 16 det _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 market _ NOUN NN _ 19 nsubj _ _ 17 wo _ AUX MD _ 19 aux _ _ 18 n't _ PART RB _ 19 neg _ _ 19 decline _ VERB VB _ 13 ccomp _ _ 20 more _ ADJ JJR _ 26 advmod _ _ 21 than _ ADP IN _ 20 mwe _ _ 22 10 _ NUM CD _ 26 compound _ _ 23 % _ SYM NN _ 26 dep _ _ 24 to _ ADP TO _ 26 dep _ _ 25 15 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 19 dobj _ _ 27 from _ ADP IN _ 29 case _ _ 28 recent _ ADJ JJ _ 29 amod _ _ 29 highs _ NOUN NNS _ 19 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 This _ PRON DT _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 not _ PART RB _ 7 neg _ _ 5 a _ DET DT _ 7 det _ _ 6 major _ ADJ JJ _ 7 amod _ _ 7 crash _ NOUN NN _ 11 ccomp _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 she _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Nevertheless _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Ms. _ PROPN NNP _ 4 compound _ _ 4 Garzarelli _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 she _ PRON PRP _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 swamped _ VERB VBN _ 5 ccomp _ _ 9 with _ ADP IN _ 11 case _ _ 10 phone _ NOUN NN _ 11 compound _ _ 11 calls _ NOUN NNS _ 8 nmod _ _ 12 over _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 weekend _ NOUN NN _ 8 nmod _ _ 15 from _ ADP IN _ 17 case _ _ 16 nervous _ ADJ JJ _ 17 amod _ _ 17 shareholders _ NOUN NNS _ 8 nmod _ _ 18 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 Half _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 them _ PRON PRP _ 2 nmod _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 really _ ADV RB _ 7 advmod _ _ 7 scared _ ADJ JJ _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 want _ VERB VBP _ 7 conj _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 9 xcomp _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 she _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 7 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 `` _ PUNCT `` _ 7 punct _ _ 18 but _ CONJ CC _ 7 cc _ _ 19 I _ PRON PRP _ 21 nsubj _ _ 20 'm _ AUX VBP _ 21 aux _ _ 21 trying _ VERB VBG _ 7 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 talk _ VERB VB _ 21 xcomp _ _ 24 them _ PRON PRP _ 23 dobj _ _ 25 out _ ADP IN _ 23 advmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 it _ PRON PRP _ 25 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 29 '' _ PUNCT '' _ 7 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 `` _ PUNCT `` _ 15 punct _ _ 5 If _ SCONJ IN _ 9 mark _ _ 6 they _ PRON PRP _ 9 nsubj _ _ 7 all _ DET DT _ 9 dep _ _ 8 were _ VERB VBD _ 9 cop _ _ 9 bullish _ ADJ JJ _ 15 advcl _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 I _ PRON PRP _ 15 nsubj _ _ 12 'd _ AUX MD _ 15 aux _ _ 13 really _ ADV RB _ 15 advmod _ _ 14 be _ VERB VB _ 15 cop _ _ 15 upset _ ADJ VBN _ 2 ccomp _ _ 16 . _ PUNCT . _ 2 punct _ _ 17 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 backdrop _ NOUN NN _ 9 nsubj _ _ 3 to _ ADP TO _ 6 case _ _ 4 Friday _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 slide _ NOUN NN _ 2 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 markedly _ ADV RB _ 9 advmod _ _ 9 different _ ADJ JJ _ 20 ccomp _ _ 10 from _ ADP IN _ 11 case _ _ 11 that _ PRON DT _ 9 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 October _ PROPN NNP _ 16 compound _ _ 15 1987 _ NUM CD _ 16 nummod _ _ 16 crash _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 fund _ NOUN NN _ 19 compound _ _ 19 managers _ NOUN NNS _ 20 nsubj _ _ 20 argue _ VERB VBP _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 11 advmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 unlike _ ADP IN _ 6 case _ _ 6 today _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 dollar _ NOUN NN _ 11 nsubj _ _ 10 was _ VERB VBD _ 11 cop _ _ 11 weak _ ADJ JJ _ 25 ccomp _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 interest _ NOUN NN _ 14 compound _ _ 14 rates _ NOUN NNS _ 16 nsubj _ _ 15 were _ AUX VBD _ 16 aux _ _ 16 rising _ VERB VBG _ 11 conj _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 market _ NOUN NN _ 22 nsubj _ _ 20 was _ VERB VBD _ 22 cop _ _ 21 very _ ADV RB _ 22 advmod _ _ 22 overvalued _ ADJ VBN _ 11 conj _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 they _ PRON PRP _ 25 nsubj _ _ 25 say _ VERB VBP _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 From _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 4 det _ _ 4 investors _ NOUN NNS _ 6 nmod:poss _ _ 5 ' _ PART POS _ 4 case _ _ 6 standpoint _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 institutions _ NOUN NNS _ 11 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 individuals _ NOUN NNS _ 8 conj _ _ 11 learned _ VERB VBD _ 26 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 painful _ ADJ JJ _ 14 amod _ _ 14 lesson _ NOUN NN _ 11 dobj _ _ 15 ... _ PUNCT : _ 11 punct _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 selling _ VERB VBG _ 11 advcl _ _ 18 at _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 lows _ NOUN NNS _ 17 nmod _ _ 21 '' _ PUNCT '' _ 17 punct _ _ 22 on _ ADP IN _ 24 case _ _ 23 Black _ PROPN NNP _ 24 compound _ _ 24 Monday _ PROPN NNP _ 17 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 Stephen _ PROPN NNP _ 28 compound _ _ 28 Boesel _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 manager _ NOUN NN _ 28 appos _ _ 31 of _ ADP IN _ 39 case _ _ 32 the _ DET DT _ 39 det _ _ 33 $ _ SYM $ _ 39 amod _ _ 34 580 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 T. _ PROPN NNP _ 39 compound _ _ 37 Rowe _ PROPN NNP _ 39 compound _ _ 38 Price _ PROPN NNP _ 39 compound _ _ 39 Growth _ PROPN NNP _ 30 nmod _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 Income _ PROPN NNP _ 42 compound _ _ 42 Fund _ PROPN NNP _ 39 conj _ _ 43 . _ PUNCT . _ 26 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 8 nmod:tmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 `` _ PUNCT `` _ 8 punct _ _ 5 I _ PRON PRP _ 8 nsubj _ _ 6 do _ AUX VBP _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 think _ VERB VB _ 0 root _ _ 9 we _ PRON PRP _ 11 nsubj _ _ 10 'll _ AUX MD _ 11 aux _ _ 11 get _ VERB VB _ 8 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 panic _ NOUN NN _ 14 compound _ _ 14 reaction _ NOUN NN _ 11 dobj _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Newport _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 fiscal-first-quarter _ ADJ JJ _ 9 amod _ _ 9 earnings _ NOUN NNS _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 between _ ADP IN _ 13 amod _ _ 12 15 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 19 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 13 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 13 nmod:npmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 somewhat _ ADV RB _ 24 advmod _ _ 21 below _ ADP IN _ 24 case _ _ 22 analysts _ NOUN NNS _ 24 nmod:poss _ _ 23 ' _ PART POS _ 22 case _ _ 24 estimates _ NOUN NNS _ 13 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 19 _ NUM CD _ 27 nummod _ _ 27 cents _ NOUN NNS _ 24 nmod _ _ 28 to _ ADP TO _ 27 dep _ _ 29 23 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 27 dep _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 maker _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 scientific _ ADJ JJ _ 5 amod _ _ 5 instruments _ NOUN NNS _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 laser _ NOUN NN _ 8 compound _ _ 8 parts _ NOUN NNS _ 5 conj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 orders _ NOUN NNS _ 11 nsubj _ _ 11 fell _ VERB VBD _ 9 ccomp _ _ 12 below _ ADP IN _ 13 case _ _ 13 expectations _ NOUN NNS _ 11 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 recent _ ADJ JJ _ 16 amod _ _ 16 months _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 12 mark _ _ 5 sales _ NOUN NNS _ 12 nsubj _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 current _ ADJ JJ _ 9 amod _ _ 9 quarter _ NOUN NN _ 5 nmod _ _ 10 will _ NOUN MD _ 12 dep _ _ 11 about _ ADV RB _ 12 advmod _ _ 12 equal _ VERB VB _ 3 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 yearearlier _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 figure _ NOUN NN _ 12 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 when _ ADV WRB _ 21 advmod _ _ 20 Newport _ PROPN NNP _ 21 nsubj _ _ 21 reported _ VERB VBD _ 17 acl:relcl _ _ 22 net _ ADJ JJ _ 23 amod _ _ 23 income _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 1.7 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 21 _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 23 punct _ _ 35 on _ ADP IN _ 36 case _ _ 36 $ _ SYM $ _ 23 nmod _ _ 37 14.1 _ NUM CD _ 38 compound _ _ 38 million _ NUM CD _ 36 nummod _ _ 39 in _ ADP IN _ 40 case _ _ 40 sales _ NOUN NNS _ 36 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Ripples _ NOUN NNS _ 13 nsubj _ _ 2 from _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 strike _ NOUN NN _ 1 nmod _ _ 5 by _ ADP IN _ 9 case _ _ 6 55,000 _ NUM CD _ 9 nummod _ _ 7 Machinists _ PROPN NNS _ 9 compound _ _ 8 union _ NOUN NN _ 9 compound _ _ 9 members _ NOUN NNS _ 4 nmod _ _ 10 against _ ADP IN _ 12 case _ _ 11 Boeing _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 4 nmod _ _ 13 reached _ VERB VBD _ 0 root _ _ 14 air _ NOUN NN _ 15 compound _ _ 15 carriers _ NOUN NNS _ 13 dobj _ _ 16 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 17 as _ SCONJ IN _ 21 mark _ _ 18 America _ PROPN NNP _ 20 compound _ _ 19 West _ PROPN NNP _ 20 compound _ _ 20 Airlines _ PROPN NNP _ 21 nsubj _ _ 21 announced _ VERB VBD _ 13 advcl _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 will _ AUX MD _ 24 aux _ _ 24 postpone _ VERB VB _ 21 ccomp _ _ 25 its _ PRON PRP$ _ 27 nmod:poss _ _ 26 new _ ADJ JJ _ 27 amod _ _ 27 service _ NOUN NN _ 24 dobj _ _ 28 out _ ADP IN _ 30 case _ _ 29 of _ ADP IN _ 30 case _ _ 30 Houston _ PROPN NNP _ 27 nmod _ _ 31 because _ ADP IN _ 33 case _ _ 32 of _ ADP IN _ 31 mwe _ _ 33 delays _ NOUN NNS _ 24 nmod _ _ 34 in _ SCONJ IN _ 35 mark _ _ 35 receiving _ VERB VBG _ 33 acl _ _ 36 aircraft _ NOUN NN _ 35 dobj _ _ 37 from _ ADP IN _ 41 case _ _ 38 the _ DET DT _ 41 det _ _ 39 Seattle _ PROPN NNP _ 41 compound _ _ 40 jet _ NOUN NN _ 41 compound _ _ 41 maker _ NOUN NN _ 35 nmod _ _ 42 . _ PUNCT . _ 13 punct _ _ 1 Peter _ PROPN NNP _ 2 compound _ _ 2 Otradovec _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 vice _ NOUN NN _ 5 compound _ _ 5 president _ NOUN NN _ 2 appos _ _ 6 for _ ADP IN _ 7 case _ _ 7 planning _ NOUN VBG _ 5 nmod _ _ 8 at _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 Phoenix _ PROPN NNP _ 14 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Ariz. _ PROPN NNP _ 10 dep _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 carrier _ NOUN NN _ 5 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 in _ ADP IN _ 19 case _ _ 18 an _ DET DT _ 19 det _ _ 19 interview _ NOUN NN _ 16 nmod _ _ 20 that _ SCONJ IN _ 35 mark _ _ 21 the _ DET DT _ 23 det _ _ 22 work _ NOUN NN _ 23 compound _ _ 23 stoppage _ NOUN NN _ 35 nsubj _ _ 24 at _ ADP IN _ 25 case _ _ 25 Boeing _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 now _ ADV RB _ 28 advmod _ _ 28 entering _ VERB VBG _ 23 acl _ _ 29 its _ PRON PRP$ _ 31 nmod:poss _ _ 30 13th _ ADJ JJ _ 31 amod _ _ 31 day _ NOUN NN _ 28 nmod:tmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 `` _ PUNCT `` _ 35 punct _ _ 34 has _ AUX VBZ _ 35 aux _ _ 35 caused _ VERB VBN _ 16 ccomp _ _ 36 some _ DET DT _ 37 det _ _ 37 turmoil _ NOUN NN _ 35 dobj _ _ 38 in _ ADP IN _ 40 case _ _ 39 our _ PRON PRP$ _ 40 nmod:poss _ _ 40 scheduling _ NOUN NN _ 37 nmod _ _ 41 '' _ PUNCT '' _ 35 punct _ _ 42 and _ CONJ CC _ 35 cc _ _ 43 that _ SCONJ IN _ 62 mark _ _ 44 more _ ADJ JJR _ 46 advmod _ _ 45 than _ ADP IN _ 44 mwe _ _ 46 500 _ NUM CD _ 47 nummod _ _ 47 passengers _ NOUN NNS _ 62 nsubjpass _ _ 48 who _ PRON WP _ 50 nsubjpass _ _ 49 were _ AUX VBD _ 50 auxpass _ _ 50 booked _ VERB VBN _ 47 acl:relcl _ _ 51 to _ PART TO _ 52 mark _ _ 52 fly _ VERB VB _ 50 xcomp _ _ 53 out _ ADP RB _ 55 case _ _ 54 of _ ADP IN _ 55 case _ _ 55 Houston _ PROPN NNP _ 52 nmod _ _ 56 on _ ADP IN _ 58 case _ _ 57 America _ PROPN NNP _ 58 compound _ _ 58 West _ PROPN NNP _ 52 nmod _ _ 59 would _ AUX MD _ 62 aux _ _ 60 now _ ADV RB _ 62 advmod _ _ 61 be _ AUX VB _ 62 auxpass _ _ 62 put _ VERB VBN _ 35 conj _ _ 63 on _ ADP IN _ 65 case _ _ 64 other _ ADJ JJ _ 65 amod _ _ 65 airlines _ NOUN NNS _ 62 nmod _ _ 66 . _ PUNCT . _ 16 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Otradovec _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Boeing _ PROPN NNP _ 5 nsubj _ _ 5 told _ VERB VBD _ 3 ccomp _ _ 6 America _ PROPN NNP _ 7 compound _ _ 7 West _ PROPN NNP _ 5 dobj _ _ 8 that _ SCONJ IN _ 21 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 757 _ PROPN CD _ 21 nsubjpass _ _ 11 it _ PRON PRP _ 13 nsubjpass _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 supposed _ VERB VBN _ 10 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 get _ VERB VB _ 13 xcomp _ _ 16 this _ DET DT _ 17 det _ _ 17 Thursday _ PROPN NNP _ 15 nmod:tmod _ _ 18 would _ AUX MD _ 21 aux _ _ 19 n't _ PART RB _ 21 neg _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 delivered _ VERB VBN _ 5 ccomp _ _ 22 until _ ADP IN _ 23 case _ _ 23 Nov. _ PROPN NNP _ 21 nmod _ _ 24 7 _ NUM CD _ 23 nummod _ _ 25 -- _ PUNCT : _ 23 punct _ _ 26 the _ DET DT _ 27 det _ _ 27 day _ NOUN NN _ 23 dep _ _ 28 after _ SCONJ IN _ 33 mark _ _ 29 the _ DET DT _ 30 det _ _ 30 airline _ NOUN NN _ 33 nsubj _ _ 31 had _ AUX VBD _ 33 aux _ _ 32 been _ AUX VBN _ 33 aux _ _ 33 planning _ VERB VBG _ 27 acl _ _ 34 to _ PART TO _ 35 mark _ _ 35 initiate _ VERB VB _ 33 xcomp _ _ 36 service _ NOUN NN _ 35 dobj _ _ 37 at _ ADP IN _ 38 case _ _ 38 Houston _ PROPN NNP _ 36 nmod _ _ 39 with _ ADP IN _ 42 case _ _ 40 four _ NUM CD _ 42 nummod _ _ 41 daily _ ADJ JJ _ 42 amod _ _ 42 flights _ NOUN NNS _ 35 nmod _ _ 43 , _ PUNCT , _ 42 punct _ _ 44 including _ VERB VBG _ 46 case _ _ 45 three _ NUM CD _ 46 nummod _ _ 46 nonstops _ NOUN NNS _ 42 nmod _ _ 47 to _ ADP TO _ 48 case _ _ 48 Phoenix _ PROPN NNP _ 46 nmod _ _ 49 and _ CONJ CC _ 46 cc _ _ 50 one _ NUM CD _ 51 nummod _ _ 51 nonstop _ NOUN JJ _ 46 conj _ _ 52 to _ ADP TO _ 54 case _ _ 53 Las _ PROPN NNP _ 54 compound _ _ 54 Vegas _ PROPN NNP _ 51 nmod _ _ 55 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 those _ DET DT _ 4 det _ _ 4 routes _ NOUN NNS _ 7 nsubjpass _ _ 5 are _ AUX VBP _ 7 auxpass _ _ 6 n't _ PART RB _ 7 neg _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 begin _ VERB VB _ 7 xcomp _ _ 10 until _ ADP IN _ 11 case _ _ 11 Jan _ PROPN NNP _ 7 nmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 Boeing _ PROPN NNP _ 4 nsubjpass _ _ 2 is _ AUX VBZ _ 4 auxpass _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 supposed _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 send _ VERB VB _ 4 xcomp _ _ 7 to _ ADP TO _ 9 case _ _ 8 America _ PROPN NNP _ 9 compound _ _ 9 West _ PROPN NNP _ 6 nmod _ _ 10 another _ DET DT _ 13 det _ _ 11 757 _ NUM CD _ 13 nummod _ _ 12 twin-engine _ ADJ NN _ 13 amod _ _ 13 aircraft _ NOUN NN _ 6 dobj _ _ 14 as _ ADV RB _ 13 cc _ _ 15 well _ ADV RB _ 14 mwe _ _ 16 as _ ADP IN _ 14 mwe _ _ 17 a _ DET DT _ 18 det _ _ 18 737 _ NUM CD _ 13 conj _ _ 19 by _ ADP IN _ 22 case _ _ 20 year _ NOUN NN _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 end _ NOUN NN _ 6 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Those _ PRON DT _ 7 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 too _ ADV RB _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 almost _ ADV RB _ 7 advmod _ _ 7 certain _ ADJ JJ _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 arrive _ VERB VB _ 7 xcomp _ _ 10 late _ ADV RB _ 9 advmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 point _ NOUN NN _ 32 nmod _ _ 4 , _ PUNCT , _ 32 punct _ _ 5 no _ DET DT _ 9 neg _ _ 6 other _ ADJ JJ _ 9 amod _ _ 7 America _ PROPN NNP _ 9 compound _ _ 8 West _ PROPN NNP _ 9 compound _ _ 9 flights _ NOUN NNS _ 32 nsubjpass _ _ 10 -- _ PUNCT : _ 9 punct _ _ 11 including _ VERB VBG _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 service _ NOUN NN _ 9 nmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 San _ PROPN NNP _ 17 compound _ _ 17 Antonio _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Texas _ PROPN NNP _ 17 appos _ _ 20 ; _ PUNCT : _ 17 punct _ _ 21 Newark _ PROPN NNP _ 17 conj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 N.J. _ PROPN NNP _ 21 appos _ _ 24 ; _ PUNCT : _ 17 punct _ _ 25 and _ CONJ CC _ 17 cc _ _ 26 Palmdale _ PROPN NNP _ 17 conj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Calif. _ PROPN NNP _ 26 appos _ _ 29 -- _ PUNCT : _ 9 punct _ _ 30 have _ AUX VBP _ 32 aux _ _ 31 been _ AUX VBN _ 32 auxpass _ _ 32 affected _ VERB VBN _ 0 root _ _ 33 by _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 delays _ NOUN NNS _ 32 nmod _ _ 36 in _ ADP IN _ 38 case _ _ 37 Boeing _ PROPN NNP _ 38 compound _ _ 38 deliveries _ NOUN NNS _ 35 nmod _ _ 39 . _ PUNCT . _ 32 punct _ _ 1 Nevertheless _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 reaction _ NOUN NN _ 7 nsubj _ _ 7 underscores _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 domino _ NOUN NN _ 10 compound _ _ 10 effect _ NOUN NN _ 7 dobj _ _ 11 that _ ADP IN _ 19 dobj _ _ 12 a _ DET DT _ 14 det _ _ 13 huge _ ADJ JJ _ 14 amod _ _ 14 manufacturer _ NOUN NN _ 19 nsubj _ _ 15 such _ ADJ JJ _ 17 case _ _ 16 as _ ADP IN _ 15 mwe _ _ 17 Boeing _ PROPN NNP _ 14 nmod _ _ 18 can _ AUX MD _ 19 aux _ _ 19 have _ VERB VB _ 10 acl:relcl _ _ 20 on _ ADP IN _ 22 case _ _ 21 other _ ADJ JJ _ 22 amod _ _ 22 parts _ NOUN NNS _ 10 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 economy _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 sure _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 help _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 machinists _ NOUN NNS _ 9 nsubj _ _ 9 put _ VERB VBD _ 6 ccomp _ _ 10 added _ ADJ VBN _ 11 amod _ _ 11 pressure _ NOUN NN _ 9 dobj _ _ 12 on _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 I _ PRON PRP _ 6 nsubj _ _ 3 just _ ADV RB _ 6 advmod _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 feel _ VERB VB _ 31 ccomp _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 12 nsubj _ _ 10 can _ AUX MD _ 12 aux _ _ 11 really _ ADV RB _ 12 advmod _ _ 12 stand _ VERB VB _ 6 ccomp _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 would _ AUX MD _ 15 aux _ _ 15 want _ VERB VB _ 12 conj _ _ 16 a _ DET DT _ 18 det _ _ 17 prolonged _ ADJ JJ _ 18 amod _ _ 18 walkout _ NOUN NN _ 12 dobj _ _ 19 , _ PUNCT , _ 31 punct _ _ 20 '' _ PUNCT '' _ 31 punct _ _ 21 Tom _ PROPN NNP _ 22 compound _ _ 22 Baker _ PROPN NNP _ 31 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 president _ NOUN NN _ 22 appos _ _ 25 of _ ADP IN _ 28 case _ _ 26 Machinists _ PROPN NNS _ 28 nmod:poss _ _ 27 ' _ PART POS _ 26 case _ _ 28 District _ PROPN NNP _ 24 nmod _ _ 29 751 _ NUM CD _ 28 nummod _ _ 30 , _ PUNCT , _ 22 punct _ _ 31 said _ VERB VBD _ 0 root _ _ 32 in _ ADP IN _ 34 case _ _ 33 an _ DET DT _ 34 det _ _ 34 interview _ NOUN NN _ 31 nmod _ _ 35 yesterday _ NOUN NN _ 31 nmod:tmod _ _ 36 . _ PUNCT . _ 31 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 think _ VERB VB _ 0 root _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 customers _ NOUN NNS _ 9 nsubj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 like _ VERB VB _ 5 ccomp _ _ 10 it _ PRON PRP _ 9 dobj _ _ 11 very _ ADV RB _ 12 advmod _ _ 12 much _ ADV RB _ 9 advmod _ _ 13 . _ PUNCT . _ 5 punct _ _ 14 '' _ PUNCT '' _ 5 punct _ _ 1 America _ PROPN NNP _ 2 compound _ _ 2 West _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 though _ ADV RB _ 9 advmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 a _ DET DT _ 9 det _ _ 8 smaller _ ADJ JJR _ 9 amod _ _ 9 airline _ NOUN NN _ 0 root _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 therefore _ ADV RB _ 13 advmod _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 affected _ VERB VBN _ 9 conj _ _ 14 by _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 delayed _ ADJ VBN _ 17 amod _ _ 17 delivery _ NOUN NN _ 13 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 single _ ADJ JJ _ 21 amod _ _ 21 plane _ NOUN NN _ 17 nmod _ _ 22 than _ SCONJ IN _ 28 mark _ _ 23 many _ ADJ JJ _ 28 nsubj _ _ 24 of _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 competitors _ NOUN NNS _ 23 nmod _ _ 27 would _ AUX MD _ 28 aux _ _ 28 be _ VERB VB _ 13 ccomp _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 figure _ VERB VBP _ 33 ccomp _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 American _ PROPN JJ _ 9 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 United _ PROPN NNP _ 5 conj _ _ 8 probably _ ADV RB _ 9 advmod _ _ 9 have _ VERB VBP _ 3 ccomp _ _ 10 such _ DET JJ _ 13 det:predet _ _ 11 a _ DET DT _ 13 det _ _ 12 hard _ ADJ JJ _ 13 amod _ _ 13 time _ NOUN NN _ 9 dobj _ _ 14 counting _ VERB VBG _ 13 dep _ _ 15 all _ DET PDT _ 17 det:predet _ _ 16 the _ DET DT _ 17 det _ _ 17 planes _ NOUN NNS _ 14 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 fleets _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 they _ PRON PRP _ 25 nsubj _ _ 23 might _ AUX MD _ 25 aux _ _ 24 not _ PART RB _ 25 neg _ _ 25 miss _ VERB VB _ 13 acl:relcl _ _ 26 one _ NUM CD _ 25 dobj _ _ 27 at _ ADP IN _ 28 case _ _ 28 all _ DET DT _ 25 nmod _ _ 29 , _ PUNCT , _ 33 punct _ _ 30 '' _ PUNCT '' _ 33 punct _ _ 31 Mr. _ PROPN NNP _ 32 compound _ _ 32 Otradovec _ PROPN NNP _ 33 nsubj _ _ 33 said _ VERB VBD _ 0 root _ _ 34 . _ PUNCT . _ 33 punct _ _ 1 Indeed _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 random _ ADJ JJ _ 5 amod _ _ 5 check _ NOUN NN _ 9 nsubj _ _ 6 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 7 did _ AUX VBD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 seem _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 indicate _ VERB VB _ 9 xcomp _ _ 12 that _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 14 det _ _ 14 strike _ NOUN NN _ 16 nsubj _ _ 15 was _ AUX VBD _ 16 aux _ _ 16 having _ VERB VBG _ 11 ccomp _ _ 17 much _ ADJ RB _ 16 dobj _ _ 18 of _ ADP IN _ 20 case _ _ 19 an _ DET DT _ 20 det _ _ 20 effect _ NOUN NN _ 17 nmod _ _ 21 on _ ADP IN _ 24 case _ _ 22 other _ ADJ JJ _ 24 amod _ _ 23 airline _ NOUN NN _ 24 compound _ _ 24 operations _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 Southwest _ PROPN NNP _ 2 compound _ _ 2 Airlines _ PROPN NNPS _ 3 nsubj _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 Boeing _ PROPN NNP _ 6 compound _ _ 6 737-300 _ PROPN CD _ 3 dobj _ _ 7 set _ NOUN VBN _ 6 amod _ _ 8 for _ ADP IN _ 9 case _ _ 9 delivery _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 end _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 this _ DET DT _ 15 det _ _ 15 month _ NOUN NN _ 12 nmod _ _ 16 and _ CONJ CC _ 3 cc _ _ 17 expects _ VERB VBZ _ 3 conj _ _ 18 to _ PART TO _ 19 mark _ _ 19 have _ VERB VB _ 17 xcomp _ _ 20 the _ DET DT _ 21 det _ _ 21 plane _ NOUN NN _ 19 dobj _ _ 22 on _ ADP IN _ 23 case _ _ 23 time _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 close _ ADV JJ _ 21 ccomp _ _ 6 to _ ADP TO _ 7 case _ _ 7 completion _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 Boeing _ PROPN NNP _ 11 nsubjpass _ _ 10 's _ AUX POS _ 11 auxpass _ _ 11 told _ VERB VBD _ 5 ccomp _ _ 12 us _ PRON PRP _ 11 dobj _ _ 13 there _ PRON EX _ 18 expl _ _ 14 wo _ AUX MD _ 18 aux _ _ 15 n't _ PART RB _ 18 neg _ _ 16 be _ VERB VB _ 18 cop _ _ 17 a _ DET DT _ 18 det _ _ 18 problem _ NOUN NN _ 11 ccomp _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 a _ DET DT _ 24 det _ _ 23 Southwest _ PROPN NNP _ 24 compound _ _ 24 spokesman _ NOUN NN _ 21 nsubj _ _ 25 . _ PUNCT . _ 21 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 AMR _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 Boeing _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 assured _ VERB VBN _ 6 ccomp _ _ 10 American _ PROPN NNP _ 11 compound _ _ 11 Airlines _ PROPN NNPS _ 9 dobj _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 deliver _ VERB VB _ 9 dep _ _ 15 a _ DET DT _ 16 det _ _ 16 757 _ PROPN CD _ 14 dobj _ _ 17 on _ ADP IN _ 18 case _ _ 18 time _ NOUN NN _ 14 nmod _ _ 19 later _ ADV RB _ 21 advmod _ _ 20 this _ DET DT _ 21 det _ _ 21 month _ NOUN NN _ 14 nmod:tmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 American _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 preparing _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 take _ VERB VB _ 3 xcomp _ _ 6 delivery _ NOUN NN _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 another _ DET DT _ 9 det _ _ 9 757 _ PROPN CD _ 5 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 early _ ADJ JJ _ 12 amod _ _ 12 December _ PROPN NNP _ 5 nmod _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 20 _ NUM CD _ 5 conj _ _ 15 more _ ADJ JJR _ 14 advmod _ _ 16 next _ ADJ JJ _ 17 amod _ _ 17 year _ NOUN NN _ 14 nmod:tmod _ _ 18 and _ CONJ CC _ 3 cc _ _ 19 is _ AUX VBZ _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 anticipating _ VERB VBG _ 3 conj _ _ 22 any _ DET DT _ 23 det _ _ 23 changes _ NOUN NNS _ 21 dobj _ _ 24 in _ ADP IN _ 26 case _ _ 25 that _ DET DT _ 26 det _ _ 26 timetable _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Seattle _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 Boeing _ PROPN NNP _ 6 compound _ _ 6 spokesman _ NOUN NN _ 7 nsubj _ _ 7 explained _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 15 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 15 nsubj _ _ 11 has _ AUX VBZ _ 15 aux _ _ 12 been _ VERB VBN _ 15 cop _ _ 13 in _ ADP IN _ 15 case _ _ 14 constant _ ADJ JJ _ 15 amod _ _ 15 communication _ NOUN NN _ 7 ccomp _ _ 16 with _ ADP IN _ 17 case _ _ 17 all _ DET DT _ 15 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 customers _ NOUN NNS _ 17 nmod _ _ 21 and _ CONJ CC _ 15 cc _ _ 22 that _ SCONJ IN _ 25 mark _ _ 23 it _ PRON PRP _ 25 nsubj _ _ 24 was _ VERB VBD _ 25 cop _ _ 25 impossible _ ADJ JJ _ 15 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 predict _ VERB VB _ 25 xcomp _ _ 28 what _ PRON WP _ 30 det _ _ 29 further _ ADJ RB _ 30 amod _ _ 30 disruptions _ NOUN NNS _ 33 nsubjpass _ _ 31 might _ AUX MD _ 33 aux _ _ 32 be _ AUX VB _ 33 auxpass _ _ 33 triggered _ VERB VBN _ 27 ccomp _ _ 34 by _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 strike _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 7 punct _ _ 1 Meanwhile _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 supervisors _ NOUN NNS _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 non-striking _ ADJ JJ _ 6 amod _ _ 6 employees _ NOUN NNS _ 3 conj _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 trying _ VERB VBG _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 finish _ VERB VB _ 9 xcomp _ _ 12 some _ ADV DT _ 13 advmod _ _ 13 40 _ NUM CD _ 14 nummod _ _ 14 aircraft _ NOUN NN _ 11 dobj _ _ 15 -- _ PUNCT : _ 17 punct _ _ 16 mostly _ ADV RB _ 17 advmod _ _ 17 747 _ PROPN CD _ 14 dep _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 767 _ PROPN CD _ 21 compound _ _ 20 jumbo _ ADJ JJ _ 21 amod _ _ 21 jets _ NOUN NNS _ 17 conj _ _ 22 at _ ADP IN _ 30 case _ _ 23 the _ DET DT _ 24 det _ _ 24 company _ NOUN NN _ 30 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 Everett _ PROPN NNP _ 30 dep _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Wash. _ PROPN NNP _ 26 dep _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 plant _ NOUN NN _ 17 nmod _ _ 31 -- _ PUNCT : _ 17 punct _ _ 32 that _ PRON WDT _ 36 nsubjpass _ _ 33 were _ AUX VBD _ 36 auxpass _ _ 34 all _ ADV DT _ 36 advmod _ _ 35 but _ ADV CC _ 34 mwe _ _ 36 completed _ VERB VBN _ 14 acl:relcl _ _ 37 before _ ADP IN _ 39 case _ _ 38 the _ DET DT _ 39 det _ _ 39 walkout _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 9 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 of _ ADP IN _ 3 case _ _ 3 Friday _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 four _ NUM CD _ 8 nsubjpass _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 delivered _ VERB VBN _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 a _ DET DT _ 12 det _ _ 11 fifth _ ADJ JJ _ 12 amod _ _ 12 plane _ NOUN NN _ 18 nsubjpass _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 747-400 _ PROPN JJ _ 12 appos _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 was _ AUX VBD _ 18 auxpass _ _ 18 supposed _ VERB VBN _ 8 conj _ _ 19 to _ PART TO _ 21 mark _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 flown _ VERB VBN _ 18 xcomp _ _ 22 out _ ADP RP _ 21 compound:prt _ _ 23 over _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 weekend _ NOUN NN _ 21 nmod _ _ 26 to _ ADP TO _ 28 case _ _ 27 Air _ PROPN NNP _ 28 compound _ _ 28 China _ PROPN NNP _ 21 nmod _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 date _ NOUN NN _ 6 nsubjpass _ _ 3 has _ AUX VBZ _ 6 aux _ _ 4 yet _ ADV RB _ 6 advmod _ _ 5 been _ AUX VBN _ 6 auxpass _ _ 6 set _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 ccomp _ _ 9 back _ ADV RB _ 8 advmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 bargaining _ NOUN NN _ 13 compound _ _ 13 table _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 want _ VERB VBP _ 18 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 make _ VERB VB _ 3 xcomp _ _ 6 sure _ ADJ JJ _ 8 dep _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 know _ VERB VBP _ 5 xcomp _ _ 9 what _ PRON WP _ 11 dobj _ _ 10 they _ PRON PRP _ 11 nsubj _ _ 11 want _ VERB VBP _ 8 ccomp _ _ 12 before _ SCONJ IN _ 14 mark _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 come _ VERB VBP _ 11 advcl _ _ 15 back _ ADP RB _ 14 advmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Doug _ PROPN NNP _ 20 compound _ _ 20 Hammond _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 the _ DET DT _ 24 det _ _ 23 federal _ ADJ JJ _ 24 amod _ _ 24 mediator _ NOUN NN _ 20 appos _ _ 25 who _ PRON WP _ 29 nsubj _ _ 26 has _ AUX VBZ _ 29 aux _ _ 27 been _ VERB VBN _ 29 cop _ _ 28 in _ ADP IN _ 29 case _ _ 29 contact _ NOUN NN _ 24 acl:relcl _ _ 30 with _ ADP IN _ 32 case _ _ 31 both _ DET DT _ 32 det _ _ 32 sides _ NOUN NNS _ 29 nmod _ _ 33 since _ SCONJ IN _ 36 mark _ _ 34 the _ DET DT _ 35 det _ _ 35 strike _ NOUN NN _ 36 nsubj _ _ 36 began _ VERB VBD _ 29 advcl _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 investment _ NOUN NN _ 3 compound _ _ 3 community _ NOUN NN _ 10 nsubj _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 one _ NUM CD _ 10 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 aux _ _ 10 anticipating _ VERB VBG _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 speedy _ ADJ JJ _ 13 amod _ _ 13 resolution _ NOUN NN _ 10 dobj _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 Though _ PROPN IN _ 7 dep _ _ 2 Boeing _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 price _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 battered _ VERB VBN _ 20 advcl _ _ 8 along _ ADP IN _ 7 advmod _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 rest _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 market _ NOUN NN _ 11 nmod _ _ 15 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 it _ PRON PRP _ 20 nsubj _ _ 18 actually _ ADV RB _ 20 advmod _ _ 19 has _ AUX VBZ _ 20 aux _ _ 20 risen _ VERB VBN _ 0 root _ _ 21 over _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 last _ ADJ JJ _ 25 amod _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 weeks _ NOUN NNS _ 20 nmod _ _ 26 on _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 strength _ NOUN NN _ 20 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 new _ ADJ JJ _ 31 amod _ _ 31 orders _ NOUN NNS _ 28 nmod _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 34 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 taken _ VERB VBN _ 34 ccomp _ _ 6 two _ NUM CD _ 7 nummod _ _ 7 views _ NOUN NNS _ 5 dobj _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 the _ DET DT _ 12 det _ _ 11 labor _ NOUN NN _ 12 compound _ _ 12 situation _ NOUN NN _ 15 nsubjpass _ _ 13 will _ AUX MD _ 15 aux _ _ 14 get _ AUX VB _ 15 auxpass _ _ 15 settled _ VERB VBN _ 7 dep _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 short _ ADJ JJ _ 19 amod _ _ 19 term _ NOUN NN _ 15 nmod _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 that _ SCONJ IN _ 23 mark _ _ 22 things _ NOUN NNS _ 23 nsubj _ _ 23 look _ VERB VBP _ 15 conj _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 rosy _ ADJ JJ _ 23 xcomp _ _ 26 for _ ADP IN _ 27 case _ _ 27 Boeing _ PROPN NNP _ 23 nmod _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 long _ ADJ JJ _ 31 amod _ _ 31 term _ NOUN NN _ 23 nmod _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 '' _ PUNCT '' _ 34 punct _ _ 34 said _ VERB VBD _ 0 root _ _ 35 Howard _ PROPN NNP _ 36 compound _ _ 36 Rubel _ PROPN NNP _ 34 nsubj _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 an _ DET DT _ 39 det _ _ 39 analyst _ NOUN NN _ 36 appos _ _ 40 at _ ADP IN _ 44 case _ _ 41 Cyrus _ PROPN NNP _ 44 compound _ _ 42 J. _ PROPN NNP _ 44 compound _ _ 43 Lawrence _ PROPN NNP _ 44 compound _ _ 44 Inc _ PROPN NNP _ 39 nmod _ _ 45 . _ PUNCT . _ 34 punct _ _ 1 Boeing _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 shares _ NOUN NNS _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 4 _ NUM CD _ 4 dobj _ _ 7 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 close _ VERB VB _ 4 advcl _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 57.375 _ NUM CD _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 composite _ ADJ JJ _ 15 amod _ _ 15 trading _ NOUN NN _ 4 nmod _ _ 16 on _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 21 det _ _ 18 New _ PROPN NNP _ 21 compound _ _ 19 York _ PROPN NNP _ 21 compound _ _ 20 Stock _ PROPN NNP _ 21 compound _ _ 21 Exchange _ PROPN NNP _ 4 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Baker _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 thinks _ VERB VBZ _ 4 ccomp _ _ 7 the _ DET DT _ 17 nsubj _ _ 8 earliest _ ADV JJS _ 7 advmod _ _ 9 a _ DET DT _ 10 det _ _ 10 pact _ NOUN NN _ 13 nsubjpass _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 struck _ VERB VBN _ 7 acl:relcl _ _ 14 would _ AUX MD _ 17 aux _ _ 15 be _ VERB VB _ 17 cop _ _ 16 the _ DET DT _ 17 det _ _ 17 end _ NOUN NN _ 6 ccomp _ _ 18 of _ ADP IN _ 20 case _ _ 19 this _ DET DT _ 20 det _ _ 20 month _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 hinting _ VERB VBG _ 4 xcomp _ _ 23 that _ SCONJ IN _ 29 mark _ _ 24 the _ DET DT _ 25 det _ _ 25 company _ NOUN NN _ 29 nsubj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 union _ NOUN NN _ 25 conj _ _ 28 may _ AUX MD _ 29 aux _ _ 29 resume _ VERB VB _ 22 ccomp _ _ 30 negotiations _ NOUN NNS _ 29 dobj _ _ 31 as _ ADV RB _ 32 advmod _ _ 32 early _ ADV RB _ 29 advmod _ _ 33 as _ ADP IN _ 35 case _ _ 34 this _ DET DT _ 35 det _ _ 35 week _ NOUN NN _ 32 nmod _ _ 36 . _ PUNCT . _ 4 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 said _ VERB VBD _ 8 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 's _ VERB VBZ _ 8 cop _ _ 8 possible _ ADJ JJ _ 0 root _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 strike _ NOUN NN _ 13 nsubj _ _ 12 could _ AUX MD _ 13 aux _ _ 13 last _ VERB VB _ 8 ccomp _ _ 14 considerably _ ADV RB _ 15 advmod _ _ 15 longer _ ADV RB _ 13 advmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 expect _ VERB VB _ 0 root _ _ 6 an _ DET DT _ 8 det _ _ 7 immediate _ ADJ JJ _ 8 amod _ _ 8 resolution _ NOUN NN _ 5 dobj _ _ 9 to _ ADP TO _ 10 case _ _ 10 anything _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 8 nmod:tmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Boeing _ PROPN NNP _ 7 compound _ _ 5 Chairman _ PROPN NNP _ 7 compound _ _ 6 Frank _ PROPN NNP _ 7 compound _ _ 7 Shrontz _ PROPN NNP _ 8 nsubj _ _ 8 sent _ VERB VBD _ 0 root _ _ 9 striking _ VERB JJ _ 10 amod _ _ 10 workers _ NOUN NNS _ 8 iobj _ _ 11 a _ DET DT _ 12 det _ _ 12 letter _ NOUN NN _ 8 dobj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 saying _ VERB VBG _ 8 advcl _ _ 15 that _ SCONJ IN _ 24 mark _ _ 16 `` _ PUNCT `` _ 24 punct _ _ 17 to _ ADP TO _ 19 case _ _ 18 my _ PRON PRP$ _ 19 nmod:poss _ _ 19 knowledge _ NOUN NN _ 24 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 Boeing _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 offer _ NOUN NN _ 24 nsubj _ _ 24 represents _ VERB VBZ _ 14 ccomp _ _ 25 the _ DET DT _ 29 det _ _ 26 best _ ADJ JJS _ 29 amod _ _ 27 overall _ ADJ JJ _ 29 amod _ _ 28 three-year _ ADJ JJ _ 29 amod _ _ 29 contract _ NOUN NN _ 24 dobj _ _ 30 of _ ADP IN _ 35 case _ _ 31 any _ DET DT _ 35 det _ _ 32 major _ ADJ JJ _ 35 amod _ _ 33 U.S. _ PROPN NNP _ 35 compound _ _ 34 industrial _ ADJ JJ _ 35 amod _ _ 35 firm _ NOUN NN _ 29 nmod _ _ 36 in _ ADP IN _ 38 case _ _ 37 recent _ ADJ JJ _ 38 amod _ _ 38 history _ NOUN NN _ 29 nmod _ _ 39 . _ PUNCT . _ 8 punct _ _ 40 '' _ PUNCT '' _ 8 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Baker _ PROPN NNP _ 4 nsubj _ _ 4 called _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 letter _ NOUN NN _ 31 dep _ _ 7 -- _ PUNCT : _ 6 punct _ _ 8 and _ CONJ CC _ 6 cc _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 offer _ NOUN NN _ 6 conj _ _ 13 of _ ADP IN _ 18 case _ _ 14 a _ DET DT _ 18 det _ _ 15 10 _ NUM CD _ 16 compound _ _ 16 % _ SYM NN _ 18 amod _ _ 17 wage _ NOUN NN _ 18 compound _ _ 18 increase _ NOUN NN _ 12 nmod _ _ 19 over _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 life _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 pact _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 18 punct _ _ 26 plus _ CONJ CC _ 18 cc _ _ 27 bonuses _ NOUN NNS _ 18 conj _ _ 28 -- _ PUNCT : _ 6 punct _ _ 29 `` _ PUNCT `` _ 31 punct _ _ 30 very _ ADV RB _ 31 advmod _ _ 31 weak _ ADJ JJ _ 4 xcomp _ _ 32 . _ PUNCT . _ 4 punct _ _ 33 '' _ PUNCT '' _ 4 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 miscalculated _ VERB VBD _ 2 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 union _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 resolve _ NOUN NN _ 6 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 13 det _ _ 13 workers _ NOUN NNS _ 15 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 disgust _ NOUN NN _ 10 conj _ _ 16 with _ SCONJ IN _ 18 mark _ _ 17 being _ AUX VBG _ 18 auxpass _ _ 18 forced _ VERB VBN _ 15 acl _ _ 19 to _ PART TO _ 20 mark _ _ 20 work _ VERB VB _ 18 xcomp _ _ 21 many _ ADJ JJ _ 22 amod _ _ 22 hours _ NOUN NNS _ 20 dobj _ _ 23 overtime _ ADV RB _ 20 advmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 separate _ ADJ JJ _ 3 amod _ _ 3 developments _ NOUN NNS _ 8 nmod _ _ 4 : _ PUNCT : _ 8 punct _ _ 5 -- _ PUNCT : _ 8 punct _ _ 6 Talks _ NOUN NNS _ 8 nsubj _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 broken _ VERB VBN _ 0 root _ _ 9 off _ ADP RP _ 8 compound:prt _ _ 10 between _ ADP IN _ 12 case _ _ 11 Machinists _ PROPN NNS _ 12 compound _ _ 12 representatives _ NOUN NNS _ 8 nmod _ _ 13 at _ ADP IN _ 15 case _ _ 14 Lockheed _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 12 nmod _ _ 16 and _ CONJ CC _ 12 cc _ _ 17 the _ DET DT _ 23 det _ _ 18 Calabasas _ PROPN NNP _ 23 dep _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Calif. _ PROPN NNP _ 18 dep _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 aerospace _ NOUN NN _ 23 compound _ _ 23 company _ NOUN NN _ 12 conj _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 union _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 continuing _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 work _ VERB VB _ 4 xcomp _ _ 7 through _ ADP IN _ 10 case _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 expired _ ADJ VBN _ 10 amod _ _ 10 contract _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 however _ ADV RB _ 4 advmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 had _ AUX VBD _ 3 aux _ _ 3 planned _ VERB VBN _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 strike _ NOUN NN _ 6 compound _ _ 6 vote _ NOUN NN _ 3 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 Sunday _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 but _ CONJ CC _ 3 cc _ _ 12 that _ ADP DT _ 15 nsubjpass _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 pushed _ VERB VBN _ 3 conj _ _ 16 back _ ADP RB _ 15 compound:prt _ _ 17 indefinitely _ ADV RB _ 15 advmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 -- _ PUNCT : _ 23 punct _ _ 2 United _ PROPN NNP _ 6 compound _ _ 3 Auto _ PROPN NNP _ 6 compound _ _ 4 Workers _ PROPN NNP _ 6 compound _ _ 5 Local _ PROPN NNP _ 6 compound _ _ 6 1069 _ PROPN CD _ 23 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 9 nsubj _ _ 9 represents _ VERB VBZ _ 6 acl:relcl _ _ 10 3,000 _ NUM CD _ 11 nummod _ _ 11 workers _ NOUN NNS _ 9 dobj _ _ 12 at _ ADP IN _ 16 case _ _ 13 Boeing _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 helicopter _ NOUN NN _ 16 compound _ _ 16 unit _ NOUN NN _ 11 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 Delaware _ PROPN NNP _ 19 compound _ _ 19 County _ PROPN NNP _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Pa. _ PROPN NNP _ 19 appos _ _ 22 , _ PUNCT , _ 6 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 agreed _ VERB VBD _ 23 ccomp _ _ 26 to _ PART TO _ 27 mark _ _ 27 extend _ VERB VB _ 25 xcomp _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 contract _ NOUN NN _ 27 dobj _ _ 30 on _ ADP IN _ 33 case _ _ 31 a _ DET DT _ 33 det _ _ 32 day-by-day _ ADJ JJ _ 33 amod _ _ 33 basis _ NOUN NN _ 27 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 with _ ADP IN _ 38 case _ _ 36 a _ DET DT _ 38 det _ _ 37 10-day _ ADJ JJ _ 38 amod _ _ 38 notification _ NOUN NN _ 33 nmod _ _ 39 to _ PART TO _ 40 mark _ _ 40 cancel _ VERB VB _ 38 acl _ _ 41 , _ PUNCT , _ 27 punct _ _ 42 while _ SCONJ IN _ 44 mark _ _ 43 it _ PRON PRP _ 44 nsubj _ _ 44 continues _ VERB VBZ _ 27 advcl _ _ 45 bargaining _ VERB NN _ 44 xcomp _ _ 46 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 accord _ NOUN NN _ 3 nsubj _ _ 3 expired _ VERB VBD _ 0 root _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 -- _ PUNCT : _ 6 punct _ _ 2 And _ CONJ CC _ 6 cc _ _ 3 Boeing _ PROPN NNP _ 6 nsubj _ _ 4 on _ ADP IN _ 5 case _ _ 5 Friday _ PROPN NNP _ 6 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 received _ VERB VBD _ 6 ccomp _ _ 9 an _ DET DT _ 10 det _ _ 10 order _ NOUN NN _ 8 dobj _ _ 11 from _ ADP IN _ 13 case _ _ 12 Martinair _ PROPN NNP _ 13 compound _ _ 13 Holland _ PROPN NNP _ 8 nmod _ _ 14 for _ ADP IN _ 19 case _ _ 15 four _ NUM CD _ 19 nummod _ _ 16 model _ ADJ NN _ 19 amod _ _ 17 767-300 _ PROPN CD _ 19 compound _ _ 18 wide-body _ ADJ JJ _ 19 amod _ _ 19 jetliners _ NOUN NNS _ 8 nmod _ _ 20 valued _ VERB VBN _ 19 acl _ _ 21 at _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 total _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 about _ ADV IN _ 26 advmod _ _ 26 $ _ SYM $ _ 23 nmod _ _ 27 326 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 planes _ NOUN NNS _ 14 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 long _ ADJ JJ _ 6 amod _ _ 5 range _ NOUN NN _ 6 compound _ _ 6 versions _ NOUN NNS _ 2 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 medium-haul _ ADJ JJ _ 10 amod _ _ 10 twin-jet _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 will _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 delivered _ VERB VBN _ 0 root _ _ 15 with _ ADP IN _ 20 case _ _ 16 Pratt _ PROPN NNP _ 20 compound _ _ 17 & _ CONJ CC _ 16 cc _ _ 18 Whitney _ PROPN NNP _ 16 conj _ _ 19 PW4060 _ PROPN NNP _ 20 compound _ _ 20 engines _ NOUN NNS _ 14 nmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 Pratt _ PROPN NNP _ 6 nsubj _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Whitney _ PROPN NNP _ 1 conj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 a _ DET DT _ 6 det _ _ 6 unit _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 United _ PROPN NNP _ 10 compound _ _ 9 Technologies _ PROPN NNPS _ 10 compound _ _ 10 Inc _ PROPN NNP _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Martinair _ PROPN NNP _ 2 compound _ _ 2 Holland _ PROPN NNP _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 based _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 Amsterdam _ PROPN NNP _ 4 nmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Boeing _ PROPN NNP _ 3 compound _ _ 3 spokeswoman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 delivery _ NOUN NN _ 7 compound _ _ 7 date _ NOUN NN _ 14 nsubjpass _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 planes _ NOUN NNS _ 7 nmod _ _ 11 is _ AUX VBZ _ 14 aux _ _ 12 still _ ADV RB _ 14 advmod _ _ 13 being _ AUX VBG _ 14 auxpass _ _ 14 worked _ VERB VBN _ 4 ccomp _ _ 15 out _ ADP RP _ 14 compound:prt _ _ 16 `` _ PUNCT `` _ 14 punct _ _ 17 for _ ADP IN _ 19 case _ _ 18 a _ DET DT _ 19 det _ _ 19 variety _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 reasons _ NOUN NNS _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 but _ CONJ CC _ 19 cc _ _ 24 not _ ADV RB _ 28 neg _ _ 25 because _ ADP IN _ 28 case _ _ 26 of _ ADP IN _ 25 mwe _ _ 27 the _ DET DT _ 28 det _ _ 28 strike _ NOUN NN _ 19 conj _ _ 29 . _ PUNCT . _ 4 punct _ _ 30 '' _ PUNCT '' _ 4 punct _ _ 1 Bridget _ PROPN NNP _ 2 compound _ _ 2 O'Brian _ PROPN NNP _ 3 nsubj _ _ 3 contributed _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 6 case _ _ 5 this _ DET DT _ 6 det _ _ 6 article _ NOUN NN _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 Atco _ PROPN NNP _ 2 compound _ _ 2 Ltd. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 its _ PRON PRP$ _ 6 nmod:poss _ _ 5 utilities _ NOUN NNS _ 6 compound _ _ 6 arm _ NOUN NN _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 considering _ VERB VBG _ 3 ccomp _ _ 9 building _ VERB VBG _ 8 advcl _ _ 10 new _ ADJ JJ _ 13 amod _ _ 11 electric _ ADJ JJ _ 13 amod _ _ 12 power _ NOUN NN _ 13 compound _ _ 13 plants _ NOUN NNS _ 9 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 some _ DET DT _ 13 appos _ _ 16 valued _ VERB VBN _ 15 acl _ _ 17 at _ ADP IN _ 23 case _ _ 18 more _ ADJ JJR _ 21 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 one _ NUM CD _ 21 compound _ _ 21 billion _ NUM CD _ 23 nummod _ _ 22 Canadian _ ADJ JJ _ 23 amod _ _ 23 dollars _ NOUN NNS _ 16 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 25 punct _ _ 25 US$ _ SYM $ _ 23 dep _ _ 26 851 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 -RRB- _ PUNCT -RRB- _ 25 punct _ _ 29 , _ PUNCT , _ 13 punct _ _ 30 in _ ADP IN _ 32 case _ _ 31 Great _ PROPN NNP _ 32 compound _ _ 32 Britain _ PROPN NNP _ 13 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 elsewhere _ ADV RB _ 32 conj _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 C.S. _ PROPN NNP _ 2 compound _ _ 2 Richardson _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Atco _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 senior _ ADJ JJ _ 8 amod _ _ 7 vice _ NOUN NN _ 8 compound _ _ 8 president _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 finance _ NOUN NN _ 8 appos _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 its _ PRON PRP$ _ 18 nmod:poss _ _ 14 50.1%-owned _ ADJ JJ _ 18 amod _ _ 15 Canadian _ PROPN JJ _ 18 compound _ _ 16 Utilities _ PROPN NNS _ 18 compound _ _ 17 Ltd. _ PROPN NNP _ 18 compound _ _ 18 unit _ NOUN NN _ 20 nsubj _ _ 19 is _ AUX VBZ _ 20 aux _ _ 20 reviewing _ VERB VBG _ 12 ccomp _ _ 21 cogeneration _ NOUN NN _ 22 compound _ _ 22 projects _ NOUN NNS _ 20 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 eastern _ ADJ JJ _ 25 amod _ _ 25 Canada _ PROPN NNP _ 22 nmod _ _ 26 , _ PUNCT , _ 22 punct _ _ 27 and _ CONJ CC _ 22 cc _ _ 28 conventional _ ADJ JJ _ 32 amod _ _ 29 electric _ ADJ JJ _ 32 amod _ _ 30 power _ NOUN NN _ 32 compound _ _ 31 generating _ NOUN VBG _ 32 compound _ _ 32 plants _ NOUN NNS _ 22 conj _ _ 33 elsewhere _ ADV RB _ 32 advmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 including _ VERB VBG _ 36 case _ _ 36 Britain _ PROPN NNP _ 33 nmod _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 where _ ADV WRB _ 42 advmod _ _ 39 the _ DET DT _ 41 det _ _ 40 British _ ADJ JJ _ 41 amod _ _ 41 government _ NOUN NN _ 42 nsubj _ _ 42 plans _ NOUN NNS _ 36 acl:relcl _ _ 43 to _ PART TO _ 44 mark _ _ 44 allow _ VERB VB _ 42 xcomp _ _ 45 limited _ ADJ JJ _ 46 amod _ _ 46 competition _ NOUN NN _ 44 dobj _ _ 47 in _ ADP IN _ 49 case _ _ 48 electrical _ ADJ JJ _ 49 amod _ _ 49 generation _ NOUN NN _ 46 nmod _ _ 50 from _ ADP IN _ 52 case _ _ 51 private-sector _ ADJ JJ _ 52 amod _ _ 52 suppliers _ NOUN NNS _ 46 nmod _ _ 53 as _ ADP IN _ 54 case _ _ 54 part _ NOUN NN _ 42 nmod _ _ 55 of _ ADP IN _ 58 case _ _ 56 its _ PRON PRP$ _ 58 nmod:poss _ _ 57 privatization _ NOUN NN _ 58 compound _ _ 58 program _ NOUN NN _ 54 nmod _ _ 59 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 projects _ NOUN NNS _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 big _ ADJ JJ _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 can _ AUX MD _ 4 aux _ _ 3 be _ VERB VB _ 4 cop _ _ 4 C$ _ SYM $ _ 12 ccomp _ _ 5 1 _ NUM CD _ 6 compound _ _ 6 billion _ NUM CD _ 4 nummod _ _ 7 plus _ ADV CC _ 4 advmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 '' _ PUNCT '' _ 12 punct _ _ 10 Mr. _ PROPN NNP _ 11 compound _ _ 11 Richardson _ PROPN NNP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 But _ CONJ CC _ 6 cc _ _ 3 we _ PRON PRP _ 6 nsubj _ _ 4 would _ AUX MD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 go _ VERB VB _ 23 ccomp _ _ 7 into _ ADP IN _ 8 case _ _ 8 them _ PRON PRP _ 6 nmod _ _ 9 alone _ ADV RB _ 6 advmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 Canadian _ PROPN JJ _ 14 compound _ _ 14 Utilities _ PROPN NNS _ 17 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 equity _ NOUN NN _ 17 compound _ _ 17 stake _ NOUN NN _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 be _ VERB VB _ 20 cop _ _ 20 small _ ADJ JJ _ 6 conj _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 Ideally _ ADV RB _ 6 advmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 we _ PRON PRP _ 6 nsubj _ _ 5 'd _ AUX MD _ 6 aux _ _ 6 like _ VERB VB _ 0 root _ _ 7 to _ PART TO _ 10 mark _ _ 8 be _ VERB VB _ 10 cop _ _ 9 the _ DET DT _ 10 det _ _ 10 operator _ NOUN NN _ 6 xcomp _ _ 11 -LCB- _ PUNCT -LRB- _ 14 punct _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 project _ NOUN NN _ 10 nmod _ _ 15 -RCB- _ PUNCT -RRB- _ 14 punct _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 a _ DET DT _ 20 det _ _ 18 modest _ ADJ JJ _ 20 amod _ _ 19 equity _ NOUN NN _ 20 compound _ _ 20 investor _ NOUN NN _ 10 conj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 Our _ PRON PRP$ _ 3 nmod:poss _ _ 2 long _ ADJ JJ _ 3 amod _ _ 3 suit _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 our _ PRON PRP$ _ 7 nmod:poss _ _ 6 proven _ ADJ VBN _ 7 amod _ _ 7 ability _ NOUN NN _ 15 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 operate _ VERB VB _ 7 acl _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 power _ NOUN NN _ 12 compound _ _ 12 plants _ NOUN NNS _ 9 dobj _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Richardson _ PROPN NNP _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 offer _ VERB VB _ 0 root _ _ 6 specifics _ NOUN NNS _ 5 dobj _ _ 7 regarding _ VERB VBG _ 6 acl _ _ 8 Atco _ PROPN NNP _ 12 nmod:poss _ _ 9 's _ VERB POS _ 8 case _ _ 10 proposed _ VERB VBN _ 12 amod _ _ 11 British _ ADJ JJ _ 12 amod _ _ 12 project _ NOUN NN _ 7 dobj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 but _ CONJ CC _ 5 cc _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 5 conj _ _ 17 it _ PRON PRP _ 19 nsubj _ _ 18 would _ AUX MD _ 19 aux _ _ 19 compete _ VERB VB _ 16 ccomp _ _ 20 for _ ADP IN _ 21 case _ _ 21 customers _ NOUN NNS _ 19 nmod _ _ 22 with _ ADP IN _ 28 case _ _ 23 two _ NUM CD _ 28 nummod _ _ 24 huge _ ADJ JJ _ 28 amod _ _ 25 British _ ADJ JJ _ 28 amod _ _ 26 power _ NOUN NN _ 28 compound _ _ 27 generating _ NOUN VBG _ 28 compound _ _ 28 companies _ NOUN NNS _ 19 nmod _ _ 29 that _ PRON WDT _ 32 nsubjpass _ _ 30 would _ AUX MD _ 32 aux _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 formed _ VERB VBN _ 28 acl:relcl _ _ 33 under _ ADP IN _ 37 case _ _ 34 the _ DET DT _ 35 det _ _ 35 country _ NOUN NN _ 37 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 plan _ NOUN NN _ 32 nmod _ _ 38 to _ PART TO _ 39 mark _ _ 39 privatize _ VERB VB _ 37 acl _ _ 40 its _ PRON PRP$ _ 45 nmod:poss _ _ 41 massive _ ADJ JJ _ 45 amod _ _ 42 water _ NOUN NN _ 45 compound _ _ 43 and _ CONJ CC _ 42 cc _ _ 44 electric _ ADJ JJ _ 42 conj _ _ 45 utilities _ NOUN NNS _ 39 dobj _ _ 46 . _ PUNCT . _ 5 punct _ _ 1 Britain _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 government _ NOUN NN _ 4 nsubj _ _ 4 plans _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 raise _ VERB VB _ 4 xcomp _ _ 7 about _ ADV RB _ 10 advmod _ _ 8 # _ SYM # _ 10 compound _ _ 9 20 _ NUM CD _ 10 compound _ _ 10 billion _ NUM CD _ 6 dobj _ _ 11 -LRB- _ PUNCT -LRB- _ 12 punct _ _ 12 $ _ SYM $ _ 10 dep _ _ 13 31.05 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 -RRB- _ PUNCT -RRB- _ 12 punct _ _ 16 from _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 sale _ NOUN NN _ 6 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 most _ ADJ JJS _ 18 nmod _ _ 21 of _ ADP IN _ 27 case _ _ 22 its _ PRON PRP$ _ 27 nmod:poss _ _ 23 giant _ ADJ JJ _ 27 amod _ _ 24 water _ NOUN NN _ 27 compound _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 electric _ ADJ JJ _ 24 conj _ _ 27 utilities _ NOUN NNS _ 20 nmod _ _ 28 , _ PUNCT , _ 6 punct _ _ 29 beginning _ VERB VBG _ 31 case _ _ 30 next _ ADJ JJ _ 31 amod _ _ 31 month _ NOUN NN _ 6 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 planned _ ADJ VBN _ 5 amod _ _ 3 electric _ ADJ JJ _ 5 amod _ _ 4 utility _ NOUN NN _ 5 compound _ _ 5 sale _ NOUN NN _ 14 nsubjpass _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 scheduled _ VERB VBN _ 5 acl _ _ 8 for _ ADP IN _ 10 case _ _ 9 next _ ADJ JJ _ 10 amod _ _ 10 year _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 is _ AUX VBZ _ 14 auxpass _ _ 13 alone _ ADV RB _ 14 advmod _ _ 14 expected _ VERB VBN _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 raise _ VERB VB _ 14 xcomp _ _ 17 # _ SYM # _ 19 compound _ _ 18 13 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 16 dobj _ _ 20 , _ PUNCT , _ 16 punct _ _ 21 making _ VERB VBG _ 16 advcl _ _ 22 it _ PRON PRP _ 28 nsubj _ _ 23 the _ DET DT _ 24 det _ _ 24 world _ NOUN NN _ 28 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 largest _ ADJ JJS _ 28 amod _ _ 27 public _ ADJ JJ _ 28 amod _ _ 28 offering _ NOUN NN _ 21 xcomp _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 Under _ ADP IN _ 2 case _ _ 2 terms _ NOUN NNS _ 11 nmod _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 plan _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 independent _ ADJ JJ _ 8 amod _ _ 8 generators _ NOUN NNS _ 11 nsubj _ _ 9 would _ AUX MD _ 11 aux _ _ 10 be _ VERB VB _ 11 cop _ _ 11 able _ ADJ JJ _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 compete _ VERB VB _ 11 xcomp _ _ 14 for _ ADP IN _ 16 case _ _ 15 15 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 customers _ NOUN NNS _ 16 nmod _ _ 19 until _ ADP IN _ 20 case _ _ 20 1994 _ NUM CD _ 13 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 for _ ADP IN _ 26 case _ _ 24 another _ DET DT _ 26 det _ _ 25 10 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 13 conj _ _ 27 between _ ADP IN _ 28 case _ _ 28 1994 _ NUM CD _ 26 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 1998 _ NUM CD _ 28 conj _ _ 31 . _ PUNCT . _ 11 punct _ _ 1 Canadian _ PROPN JJ _ 2 compound _ _ 2 Utilities _ PROPN NNS _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 1988 _ NUM CD _ 5 nummod _ _ 5 revenue _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 C$ _ SYM $ _ 5 nmod _ _ 8 1.16 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 mainly _ ADV RB _ 15 advmod _ _ 12 from _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 natural _ ADJ JJ _ 15 amod _ _ 15 gas _ NOUN NN _ 3 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 electric _ ADJ JJ _ 19 amod _ _ 18 utility _ NOUN NN _ 19 compound _ _ 19 businesses _ NOUN NNS _ 15 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Alberta _ PROPN NNP _ 15 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 where _ ADV WRB _ 26 advmod _ _ 24 the _ DET DT _ 25 det _ _ 25 company _ NOUN NN _ 26 nsubj _ _ 26 serves _ VERB VBZ _ 21 acl:relcl _ _ 27 about _ ADV IN _ 28 advmod _ _ 28 800,000 _ NUM CD _ 29 nummod _ _ 29 customers _ NOUN NNS _ 26 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 seems _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 7 mark _ _ 5 be _ VERB VB _ 7 cop _ _ 6 a _ DET DT _ 7 det _ _ 7 move _ NOUN NN _ 3 xcomp _ _ 8 around _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 world _ NOUN NN _ 7 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 deregulate _ VERB VB _ 7 advcl _ _ 13 the _ DET DT _ 14 det _ _ 14 generation _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 electricity _ NOUN NN _ 14 nmod _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 '' _ PUNCT '' _ 21 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Richardson _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 3 dep _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 and _ CONJ CC _ 3 cc _ _ 24 Canadian _ PROPN NNP _ 25 compound _ _ 25 Utilities _ PROPN NNP _ 26 nsubj _ _ 26 hopes _ VERB VBZ _ 3 conj _ _ 27 to _ PART TO _ 28 mark _ _ 28 capitalize _ VERB VB _ 26 xcomp _ _ 29 on _ ADP IN _ 30 case _ _ 30 it _ PRON PRP _ 28 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 real _ ADJ JJ _ 6 amod _ _ 6 thrust _ NOUN NN _ 14 ccomp _ _ 7 on _ ADP IN _ 10 case _ _ 8 our _ PRON PRP$ _ 10 nmod:poss _ _ 9 utility _ NOUN NN _ 10 compound _ _ 10 side _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 '' _ PUNCT '' _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 adding _ VERB VBG _ 14 xcomp _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 Canadian _ PROPN JJ _ 19 compound _ _ 19 Utilities _ PROPN NNS _ 22 nsubj _ _ 20 is _ AUX VBZ _ 22 aux _ _ 21 also _ ADV RB _ 22 advmod _ _ 22 mulling _ VERB VBG _ 16 ccomp _ _ 23 projects _ NOUN NNS _ 22 dobj _ _ 24 in _ ADP IN _ 26 case _ _ 25 underdeveloped _ ADJ JJ _ 26 amod _ _ 26 countries _ NOUN NNS _ 23 nmod _ _ 27 , _ PUNCT , _ 16 punct _ _ 28 though _ SCONJ IN _ 32 mark _ _ 29 he _ PRON PRP _ 32 nsubj _ _ 30 would _ AUX MD _ 32 aux _ _ 31 be _ VERB VB _ 32 cop _ _ 32 specific _ ADJ JJ _ 16 advcl _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 Canadian _ PROPN JJ _ 2 compound _ _ 2 Utilities _ PROPN NNS _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 n't _ PART RB _ 5 neg _ _ 5 alone _ ADV RB _ 0 root _ _ 6 in _ SCONJ IN _ 7 mark _ _ 7 exploring _ VERB VBG _ 5 advcl _ _ 8 power _ NOUN NN _ 10 compound _ _ 9 generation _ NOUN NN _ 10 compound _ _ 10 opportunities _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 Britain _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 in _ ADP IN _ 15 case _ _ 15 anticipation _ NOUN NN _ 7 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 privatization _ NOUN NN _ 19 compound _ _ 19 program _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 're _ AUX VBP _ 5 aux _ _ 4 certainly _ ADV RB _ 5 advmod _ _ 5 looking _ VERB VBG _ 15 ccomp _ _ 6 at _ ADP IN _ 10 case _ _ 7 some _ DET DT _ 10 det _ _ 8 power _ NOUN NN _ 10 compound _ _ 9 generating _ NOUN VBG _ 10 compound _ _ 10 projects _ NOUN NNS _ 5 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 England _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Bruce _ PROPN NNP _ 17 compound _ _ 17 Stram _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 vice _ NOUN NN _ 20 compound _ _ 20 president _ NOUN NN _ 17 appos _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 corporate _ ADJ JJ _ 23 amod _ _ 23 strategy _ NOUN NN _ 20 appos _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 corporate _ ADJ JJ _ 26 amod _ _ 26 planning _ NOUN NN _ 23 conj _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 with _ ADP IN _ 30 case _ _ 29 Enron _ PROPN NNP _ 30 compound _ _ 30 Corp. _ PROPN NNP _ 17 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 Houston _ PROPN NNP _ 30 appos _ _ 33 , _ PUNCT , _ 30 punct _ _ 34 a _ DET DT _ 38 det _ _ 35 big _ ADJ JJ _ 38 amod _ _ 36 natural _ ADJ JJ _ 38 amod _ _ 37 gas _ NOUN NN _ 38 compound _ _ 38 producer _ NOUN NN _ 30 appos _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 pipeline _ NOUN NN _ 41 compound _ _ 41 operator _ NOUN NN _ 38 conj _ _ 42 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stram _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Enron _ PROPN NNP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 considering _ VERB VBG _ 3 ccomp _ _ 7 building _ VERB VBG _ 6 advcl _ _ 8 gas-fired _ ADJ JJ _ 10 amod _ _ 9 power _ NOUN NN _ 10 compound _ _ 10 plants _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.K. _ PROPN NNP _ 7 nmod _ _ 14 capable _ ADJ JJ _ 7 xcomp _ _ 15 of _ SCONJ IN _ 16 mark _ _ 16 producing _ VERB VBG _ 14 advcl _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 500 _ NUM CD _ 19 nummod _ _ 19 megawatts _ NOUN NNS _ 16 dobj _ _ 20 of _ ADP IN _ 21 case _ _ 21 power _ NOUN NN _ 19 nmod _ _ 22 at _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 cost _ NOUN NN _ 7 nmod _ _ 25 of _ ADP IN _ 31 case _ _ 26 about _ ADV IN _ 31 advmod _ _ 27 $ _ SYM $ _ 31 dep _ _ 28 300 _ NUM CD _ 31 compound _ _ 29 million _ NUM CD _ 31 compound _ _ 30 to _ ADP TO _ 31 dep _ _ 31 $ _ SYM $ _ 24 nmod _ _ 32 400 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 PSE _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 third _ ADJ JJ _ 9 amod _ _ 9 earnings _ NOUN NNS _ 7 dobj _ _ 10 of _ ADP IN _ 15 case _ _ 11 $ _ SYM $ _ 15 dep _ _ 12 1.3 _ NUM CD _ 15 compound _ _ 13 million _ NUM CD _ 15 compound _ _ 14 to _ ADP TO _ 15 dep _ _ 15 $ _ SYM $ _ 9 nmod _ _ 16 1.7 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 14 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 15 conj _ _ 22 to _ ADP TO _ 21 dep _ _ 23 18 _ NUM CD _ 24 nummod _ _ 24 cents _ NOUN NNS _ 21 dep _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 21 nmod:npmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-ago _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 17 nmod _ _ 5 , _ PUNCT , _ 17 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 designer _ NOUN NN _ 17 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 operator _ NOUN NN _ 7 conj _ _ 10 of _ ADP IN _ 16 case _ _ 11 cogeneration _ NOUN NN _ 16 compound _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 waste _ NOUN NN _ 11 conj _ _ 14 heat _ NOUN NN _ 16 compound _ _ 15 recovery _ NOUN NN _ 16 compound _ _ 16 plants _ NOUN NNS _ 7 nmod _ _ 17 had _ VERB VBD _ 0 root _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 income _ NOUN NN _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 $ _ SYM $ _ 22 dep _ _ 22 326,000 _ NUM CD _ 19 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 four _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 22 conj _ _ 27 a _ DET DT _ 28 det _ _ 28 share _ NOUN NN _ 26 nmod:npmod _ _ 29 , _ PUNCT , _ 17 punct _ _ 30 on _ ADP IN _ 31 case _ _ 31 revenue _ NOUN NN _ 17 nmod _ _ 32 of _ ADP IN _ 34 case _ _ 33 about _ ADV IN _ 34 advmod _ _ 34 $ _ SYM $ _ 31 nmod _ _ 35 41.4 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 improvement _ NOUN NN _ 7 nsubjpass _ _ 6 is _ VERB VBZ _ 7 auxpass _ _ 7 related _ VERB VBN _ 3 ccomp _ _ 8 to _ ADP TO _ 11 case _ _ 9 additional _ ADJ JJ _ 11 amod _ _ 10 cogeneration _ NOUN NN _ 11 compound _ _ 11 facilities _ NOUN NNS _ 7 nmod _ _ 12 that _ PRON WDT _ 15 nsubjpass _ _ 13 have _ AUX VBP _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 put _ VERB VBN _ 11 acl:relcl _ _ 16 into _ ADP IN _ 17 case _ _ 17 operation _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 CONCORDE _ PROPN NNP _ 3 compound _ _ 2 trans-Atlantic _ ADJ JJ _ 3 amod _ _ 3 flights _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 2,400 _ NUM CD _ 0 root _ _ 7 to _ ADP TO _ 8 case _ _ 8 Paris _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 3,200 _ NUM CD _ 6 conj _ _ 12 to _ ADP TO _ 13 case _ _ 13 London _ PROPN NNP _ 11 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 a _ DET DT _ 5 det _ _ 3 Centennial _ PROPN NNP _ 5 compound _ _ 4 Journal _ PROPN NNP _ 5 compound _ _ 5 article _ NOUN NN _ 12 nmod _ _ 6 Oct. _ PROPN NNP _ 12 nmod:tmod _ _ 7 5 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 fares _ NOUN NNS _ 12 nsubjpass _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 reversed _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Diamond _ PROPN NNP _ 4 compound _ _ 2 Shamrock _ PROPN NNP _ 4 compound _ _ 3 Offshore _ PROPN NNP _ 4 compound _ _ 4 Partners _ PROPN NNPS _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 had _ AUX VBD _ 8 aux _ _ 8 discovered _ VERB VBN _ 5 ccomp _ _ 9 gas _ NOUN NN _ 8 dobj _ _ 10 offshore _ ADV RB _ 8 advmod _ _ 11 Louisiana _ PROPN NNP _ 10 nmod:npmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 well _ ADV NN _ 3 nsubj _ _ 3 flowed _ VERB VBD _ 0 root _ _ 4 at _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 rate _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 11 case _ _ 8 2.016 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 11 nummod _ _ 10 cubic _ ADJ JJ _ 11 amod _ _ 11 feet _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 gas _ NOUN NN _ 11 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 day _ NOUN NN _ 11 nmod:npmod _ _ 16 through _ ADP IN _ 20 case _ _ 17 a _ DET DT _ 20 det _ _ 18 16 _ NUM CD _ 20 nummod _ _ 19 64-inch _ ADJ JJ _ 20 amod _ _ 20 opening _ NOUN NN _ 3 nmod _ _ 21 at _ ADP IN _ 22 case _ _ 22 depths _ NOUN NNS _ 3 nmod _ _ 23 between _ ADP IN _ 27 case _ _ 24 5,782 _ NUM CD _ 27 nummod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 5,824 _ NUM CD _ 24 conj _ _ 27 feet _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Diamond _ PROPN NNP _ 2 compound _ _ 2 Shamrock _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 operator _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 with _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 100 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 11 amod _ _ 11 interest _ NOUN NN _ 5 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 well _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Diamond _ PROPN NNP _ 3 compound _ _ 2 Shamrock _ PROPN NNP _ 3 compound _ _ 3 Offshore _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 stock _ NOUN NN _ 6 nsubj _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 12.5 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 6 dobj _ _ 9 Friday _ PROPN NNP _ 6 nmod:tmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 close _ VERB VB _ 6 advcl _ _ 12 at _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 8.25 _ NUM CD _ 11 nmod _ _ 15 in _ ADP IN _ 21 case _ _ 16 New _ PROPN NNP _ 21 compound _ _ 17 York _ PROPN NNP _ 21 compound _ _ 18 Stock _ PROPN NNP _ 21 compound _ _ 19 Exchange _ PROPN NNP _ 21 compound _ _ 20 composite _ ADJ JJ _ 21 amod _ _ 21 trading _ NOUN NN _ 11 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Kaufman _ PROPN NNP _ 5 compound _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Broad _ PROPN NNP _ 1 conj _ _ 4 Home _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 formed _ VERB VBD _ 6 ccomp _ _ 9 a _ DET DT _ 15 det _ _ 10 $ _ SYM $ _ 15 amod _ _ 11 53.4 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 limited _ ADJ JJ _ 15 amod _ _ 14 partnership _ NOUN NN _ 15 compound _ _ 15 subsidiary _ NOUN NN _ 8 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 buy _ VERB VB _ 15 acl _ _ 18 land _ NOUN NN _ 17 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 California _ PROPN NNP _ 18 nmod _ _ 21 suitable _ ADJ JJ _ 18 amod _ _ 22 for _ ADP IN _ 24 case _ _ 23 residential _ ADJ JJ _ 24 amod _ _ 24 development _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 partnership _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Kaufman _ PROPN NNP _ 11 compound _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Broad _ PROPN NNP _ 4 conj _ _ 7 Land _ PROPN NNP _ 11 compound _ _ 8 Development _ PROPN NNP _ 11 compound _ _ 9 Venture _ PROPN NNP _ 11 compound _ _ 10 Limited _ PROPN NNP _ 11 compound _ _ 11 Partnership _ PROPN NNP _ 2 appos _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ VERB VBZ _ 17 cop _ _ 14 a _ DET DT _ 17 det _ _ 15 50-50 _ ADJ CD _ 17 amod _ _ 16 joint _ ADJ JJ _ 17 amod _ _ 17 venture _ NOUN NN _ 0 root _ _ 18 with _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 trust _ NOUN NN _ 17 nmod _ _ 21 created _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 24 case _ _ 23 institutional _ ADJ JJ _ 24 amod _ _ 24 clients _ NOUN NNS _ 21 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 Heitman _ PROPN NNP _ 28 compound _ _ 27 Advisory _ PROPN NNP _ 28 compound _ _ 28 Corp. _ PROPN NNP _ 24 nmod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 a _ DET DT _ 31 det _ _ 31 unit _ NOUN NN _ 28 appos _ _ 32 of _ ADP IN _ 35 case _ _ 33 Heitman _ PROPN NNP _ 35 compound _ _ 34 Financial _ PROPN NNP _ 35 compound _ _ 35 Corp. _ PROPN NNP _ 31 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 a _ DET DT _ 45 det _ _ 38 real _ ADJ JJ _ 45 amod _ _ 39 estate _ NOUN NN _ 45 compound _ _ 40 advisory _ NOUN NN _ 45 compound _ _ 41 , _ PUNCT , _ 40 punct _ _ 42 management _ NOUN NN _ 40 conj _ _ 43 and _ CONJ CC _ 40 cc _ _ 44 development _ NOUN NN _ 40 conj _ _ 45 company _ NOUN NN _ 35 appos _ _ 46 with _ ADP IN _ 47 case _ _ 47 offices _ NOUN NNS _ 45 nmod _ _ 48 in _ ADP IN _ 49 case _ _ 49 Chicago _ PROPN NNP _ 47 nmod _ _ 50 and _ CONJ CC _ 49 cc _ _ 51 Beverly _ PROPN NNP _ 52 compound _ _ 52 Hills _ PROPN NNP _ 49 conj _ _ 53 , _ PUNCT , _ 52 punct _ _ 54 Calif _ PROPN NNP _ 52 appos _ _ 55 . _ PUNCT . _ 17 punct _ _ 1 Kaufman _ PROPN NNP _ 10 nsubj _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Broad _ PROPN NNP _ 1 conj _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 a _ DET DT _ 8 det _ _ 6 home _ NOUN NN _ 8 compound _ _ 7 building _ NOUN VBG _ 8 compound _ _ 8 company _ NOUN NN _ 1 appos _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 declined _ VERB VBD _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 identify _ VERB VB _ 10 xcomp _ _ 13 the _ DET DT _ 15 det _ _ 14 institutional _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 12 dobj _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 land _ NOUN NN _ 13 nsubj _ _ 3 to _ PART TO _ 5 mark _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 purchased _ VERB VBN _ 2 acl _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 joint _ ADJ JJ _ 9 amod _ _ 9 venture _ NOUN NN _ 5 nmod _ _ 10 has _ AUX VBZ _ 13 aux _ _ 11 n't _ PART RB _ 13 neg _ _ 12 yet _ ADV RB _ 13 advmod _ _ 13 received _ VERB VBN _ 0 root _ _ 14 zoning _ NOUN NN _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 other _ ADJ JJ _ 14 conj _ _ 17 approvals _ NOUN NNS _ 13 dobj _ _ 18 required _ VERB VBN _ 17 acl _ _ 19 for _ ADP IN _ 20 case _ _ 20 development _ NOUN NN _ 18 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 part _ NOUN NN _ 31 nsubj _ _ 24 of _ ADP IN _ 29 case _ _ 25 Kaufman _ PROPN NNP _ 29 nmod:poss _ _ 26 & _ CONJ CC _ 25 cc _ _ 27 Broad _ PROPN NNP _ 25 conj _ _ 28 's _ PART POS _ 25 case _ _ 29 job _ NOUN NN _ 23 nmod _ _ 30 will _ AUX MD _ 31 aux _ _ 31 be _ VERB VB _ 13 conj _ _ 32 to _ PART TO _ 33 mark _ _ 33 obtain _ VERB VB _ 31 xcomp _ _ 34 such _ ADJ JJ _ 35 amod _ _ 35 approvals _ NOUN NNS _ 33 dobj _ _ 36 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 partnership _ NOUN NN _ 3 nsubj _ _ 3 runs _ VERB VBZ _ 38 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 risk _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 it _ PRON PRP _ 10 nsubj _ _ 8 may _ AUX MD _ 10 aux _ _ 9 not _ PART RB _ 10 neg _ _ 10 get _ VERB VB _ 5 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 approvals _ NOUN NNS _ 10 dobj _ _ 13 for _ ADP IN _ 14 case _ _ 14 development _ NOUN NN _ 12 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 but _ CONJ CC _ 3 cc _ _ 17 in _ ADP IN _ 18 case _ _ 18 return _ NOUN NN _ 22 nmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 it _ PRON PRP _ 22 nsubj _ _ 21 can _ AUX MD _ 22 aux _ _ 22 buy _ VERB VB _ 3 conj _ _ 23 land _ NOUN NN _ 22 dobj _ _ 24 at _ ADP IN _ 29 case _ _ 25 wholesale _ ADJ JJ _ 29 amod _ _ 26 rather _ ADV RB _ 25 cc _ _ 27 than _ ADP IN _ 26 mwe _ _ 28 retail _ ADJ JJ _ 25 conj _ _ 29 prices _ NOUN NNS _ 22 nmod _ _ 30 , _ PUNCT , _ 22 punct _ _ 31 which _ PRON WDT _ 33 nsubj _ _ 32 can _ AUX MD _ 33 aux _ _ 33 result _ VERB VB _ 22 dep _ _ 34 in _ ADP IN _ 36 case _ _ 35 sizable _ ADJ JJ _ 36 amod _ _ 36 savings _ NOUN NNS _ 33 nmod _ _ 37 , _ PUNCT , _ 38 punct _ _ 38 said _ VERB VBD _ 0 root _ _ 39 Bruce _ PROPN NNP _ 40 compound _ _ 40 Karatz _ PROPN NNP _ 38 nsubj _ _ 41 , _ PUNCT , _ 40 punct _ _ 42 president _ NOUN NN _ 40 appos _ _ 43 and _ CONJ CC _ 42 cc _ _ 44 chief _ ADJ JJ _ 46 amod _ _ 45 executive _ ADJ JJ _ 46 amod _ _ 46 officer _ NOUN NN _ 42 conj _ _ 47 of _ ADP IN _ 48 case _ _ 48 Kaufman _ PROPN NNP _ 42 nmod _ _ 49 & _ CONJ CC _ 48 cc _ _ 50 Broad _ PROPN NNP _ 48 conj _ _ 51 . _ PUNCT . _ 38 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 are _ VERB VBP _ 0 root _ _ 4 really _ ADV RB _ 3 advmod _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 few _ ADJ JJ _ 7 amod _ _ 7 companies _ NOUN NNS _ 3 nsubj _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 have _ VERB VBP _ 7 acl:relcl _ _ 10 adequate _ ADJ JJ _ 11 amod _ _ 11 capital _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 acl _ _ 14 properties _ NOUN NNS _ 13 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 raw _ ADJ JJ _ 18 amod _ _ 18 state _ NOUN NN _ 14 nmod _ _ 19 for _ ADP IN _ 20 case _ _ 20 cash _ NOUN NN _ 13 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Typically _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 developers _ NOUN NNS _ 4 nsubj _ _ 4 option _ VERB NN _ 21 ccomp _ _ 5 property _ NOUN NN _ 4 dobj _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 and _ CONJ CC _ 4 cc _ _ 8 then _ ADV RB _ 17 advmod _ _ 9 once _ SCONJ IN _ 11 mark _ _ 10 they _ PRON PRP _ 11 nsubj _ _ 11 get _ VERB VBP _ 17 advcl _ _ 12 the _ DET DT _ 14 det _ _ 13 administrative _ ADJ JJ _ 14 amod _ _ 14 approvals _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 they _ PRON PRP _ 17 nsubj _ _ 17 buy _ VERB VBP _ 4 conj _ _ 18 it _ PRON PRP _ 17 dobj _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Karatz _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 adding _ VERB VBG _ 21 advcl _ _ 26 that _ SCONJ IN _ 28 mark _ _ 27 he _ PRON PRP _ 28 nsubj _ _ 28 believes _ VERB VBZ _ 25 ccomp _ _ 29 the _ DET DT _ 31 det _ _ 30 joint _ ADJ JJ _ 31 amod _ _ 31 venture _ NOUN NN _ 34 nsubj _ _ 32 is _ VERB VBZ _ 34 cop _ _ 33 the _ DET DT _ 34 det _ _ 34 first _ ADJ JJ _ 28 ccomp _ _ 35 of _ ADP IN _ 37 case _ _ 36 its _ PRON PRP$ _ 37 nmod:poss _ _ 37 kind _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 usually _ ADV RB _ 4 advmod _ _ 4 operate _ VERB VBP _ 0 root _ _ 5 in _ ADP IN _ 8 case _ _ 6 that _ DET DT _ 8 det _ _ 7 conservative _ ADJ JJ _ 8 amod _ _ 8 manner _ NOUN NN _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 10 '' _ PUNCT '' _ 4 punct _ _ 1 By _ SCONJ IN _ 2 mark _ _ 2 setting _ VERB VBG _ 12 advcl _ _ 3 up _ ADP RP _ 2 compound:prt _ _ 4 the _ DET DT _ 6 det _ _ 5 joint _ ADJ JJ _ 6 amod _ _ 6 venture _ NOUN NN _ 2 dobj _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 Kaufman _ PROPN NNP _ 12 nsubj _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Broad _ PROPN NNP _ 8 conj _ _ 11 can _ AUX MD _ 12 aux _ _ 12 take _ VERB VB _ 35 ccomp _ _ 13 the _ DET DT _ 16 det _ _ 14 more _ ADV RBR _ 15 advmod _ _ 15 aggressive _ ADJ JJ _ 16 amod _ _ 16 approach _ NOUN NN _ 12 dobj _ _ 17 of _ SCONJ IN _ 18 mark _ _ 18 buying _ VERB VBG _ 16 acl _ _ 19 raw _ ADJ JJ _ 20 amod _ _ 20 land _ NOUN NN _ 18 dobj _ _ 21 , _ PUNCT , _ 12 punct _ _ 22 while _ SCONJ IN _ 23 mark _ _ 23 avoiding _ VERB VBG _ 12 advcl _ _ 24 the _ DET DT _ 26 det _ _ 25 negative _ ADJ JJ _ 26 amod _ _ 26 impacts _ NOUN NNS _ 23 dobj _ _ 27 to _ ADP TO _ 31 case _ _ 28 its _ PRON PRP$ _ 31 nmod:poss _ _ 29 own _ ADJ JJ _ 31 amod _ _ 30 balance _ NOUN NN _ 31 compound _ _ 31 sheet _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 35 punct _ _ 33 Mr. _ PROPN NNP _ 34 compound _ _ 34 Karatz _ PROPN NNP _ 35 nsubj _ _ 35 said _ VERB VBD _ 0 root _ _ 36 . _ PUNCT . _ 35 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 putting _ VERB VBG _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 only _ ADV RB _ 7 advmod _ _ 7 10 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 4 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 capital _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 although _ SCONJ IN _ 16 mark _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 is _ VERB VBZ _ 16 cop _ _ 16 responsible _ ADJ JJ _ 4 advcl _ _ 17 for _ SCONJ IN _ 18 mark _ _ 18 providing _ VERB VBG _ 16 advcl _ _ 19 management _ NOUN NN _ 24 compound _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 planning _ NOUN NN _ 19 conj _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 processing _ NOUN NN _ 19 conj _ _ 24 services _ NOUN NNS _ 18 dobj _ _ 25 to _ ADP TO _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 joint _ ADJ JJ _ 28 amod _ _ 28 venture _ NOUN NN _ 18 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 30 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 one _ NUM CD _ 30 ccomp _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 best _ ADJ JJS _ 8 amod _ _ 8 ways _ NOUN NNS _ 4 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 assure _ VERB VB _ 8 acl _ _ 11 a _ DET DT _ 12 det _ _ 12 pipeline _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 land _ NOUN NN _ 12 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 fuel _ VERB VB _ 12 acl _ _ 17 our _ PRON PRP$ _ 18 nmod:poss _ _ 18 growth _ NOUN NN _ 16 dobj _ _ 19 at _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 22 det _ _ 21 minimum _ ADJ JJ _ 22 amod _ _ 22 risk _ NOUN NN _ 10 nmod _ _ 23 to _ ADP TO _ 25 case _ _ 24 our _ PRON PRP$ _ 25 nmod:poss _ _ 25 company _ NOUN NN _ 22 nmod _ _ 26 , _ PUNCT , _ 30 punct _ _ 27 '' _ PUNCT '' _ 30 punct _ _ 28 Mr. _ PROPN NNP _ 29 compound _ _ 29 Karatz _ PROPN NNP _ 30 nsubj _ _ 30 said _ VERB VBD _ 0 root _ _ 31 . _ PUNCT . _ 30 punct _ _ 1 When _ ADV WRB _ 6 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 price _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 plastics _ NOUN NNS _ 3 nmod _ _ 6 took _ VERB VBD _ 14 advcl _ _ 7 off _ ADP RP _ 6 compound:prt _ _ 8 in _ ADP IN _ 9 case _ _ 9 1987 _ NUM CD _ 6 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 Quantum _ PROPN NNP _ 13 compound _ _ 12 Chemical _ PROPN NNP _ 13 compound _ _ 13 Corp. _ PROPN NNP _ 14 nsubj _ _ 14 went _ VERB VBD _ 0 root _ _ 15 along _ ADV IN _ 14 advmod _ _ 16 for _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 ride _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 timing _ NOUN NN _ 14 nsubj _ _ 3 of _ ADP IN _ 8 case _ _ 4 Quantum _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ NN _ 8 amod _ _ 8 officer _ NOUN NN _ 2 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 John _ PROPN NNP _ 12 compound _ _ 11 Hoyt _ PROPN NNP _ 12 compound _ _ 12 Stookey _ PROPN NNP _ 8 appos _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 appeared _ VERB VBD _ 0 root _ _ 15 to _ PART TO _ 17 mark _ _ 16 be _ VERB VB _ 17 cop _ _ 17 nothing _ NOUN NN _ 14 xcomp _ _ 18 less _ ADV JJR _ 17 amod _ _ 19 than _ ADP IN _ 20 case _ _ 20 inspired _ VERB VBN _ 18 advcl _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 because _ SCONJ IN _ 26 mark _ _ 23 he _ PRON PRP _ 26 nsubj _ _ 24 had _ AUX VBD _ 26 aux _ _ 25 just _ ADV RB _ 26 advmod _ _ 26 increased _ VERB VBN _ 14 advcl _ _ 27 Quantum _ PROPN NNP _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 reliance _ NOUN NN _ 26 dobj _ _ 30 on _ ADP IN _ 31 case _ _ 31 plastics _ NOUN NNS _ 29 nmod _ _ 32 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 outpaced _ VERB VBD _ 0 root _ _ 4 much _ ADJ RB _ 3 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 chemical _ ADJ NN _ 8 amod _ _ 8 industry _ NOUN NN _ 4 nmod _ _ 9 as _ SCONJ IN _ 12 mark _ _ 10 annual _ ADJ JJ _ 11 amod _ _ 11 profit _ NOUN NN _ 12 nsubj _ _ 12 grew _ VERB VBD _ 3 advcl _ _ 13 fivefold _ ADJ RB _ 12 advmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stookey _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 boom _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 `` _ PUNCT `` _ 11 punct _ _ 9 It _ PRON PRP _ 11 nsubj _ _ 10 's _ AUX VBZ _ 11 aux _ _ 11 going _ VERB VBG _ 3 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 last _ VERB VB _ 11 xcomp _ _ 14 a _ DET DT _ 16 det _ _ 15 whole _ ADJ JJ _ 16 amod _ _ 16 lot _ NOUN NN _ 17 nmod:npmod _ _ 17 longer _ ADV JJR _ 13 advmod _ _ 18 than _ SCONJ IN _ 20 mark _ _ 19 anybody _ NOUN NN _ 20 nsubj _ _ 20 thinks _ VERB VBZ _ 17 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 22 '' _ PUNCT '' _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 now _ ADV RB _ 5 advmod _ _ 3 prices _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 nose-dived _ VERB VBN _ 0 root _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Quantum _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 profit _ NOUN NN _ 11 nsubj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 plummeting _ VERB VBG _ 5 conj _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 securities _ NOUN NNS _ 3 compound _ _ 3 analysts _ NOUN NNS _ 5 nsubj _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 looking _ VERB VBG _ 0 root _ _ 6 for _ ADP IN _ 11 case _ _ 7 no _ ADV DT _ 8 neg _ _ 8 better _ ADJ JJR _ 11 amod _ _ 9 than _ ADP IN _ 10 case _ _ 10 break-even _ ADJ JJ _ 8 advcl _ _ 11 results _ NOUN NNS _ 5 nmod _ _ 12 from _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 11 nmod _ _ 15 for _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 third _ ADJ JJ _ 18 amod _ _ 18 quarter _ NOUN NN _ 11 nmod _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 profit _ NOUN NN _ 11 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 99.8 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 3.92 _ NUM CD _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 23 punct _ _ 35 on _ ADP IN _ 36 case _ _ 36 sales _ NOUN NNS _ 23 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 $ _ SYM $ _ 36 nmod _ _ 39 724.4 _ NUM CD _ 40 compound _ _ 40 million _ NUM CD _ 38 nummod _ _ 41 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stock _ NOUN NN _ 16 nsubj _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 having _ AUX VBG _ 5 aux _ _ 5 lost _ VERB VBN _ 16 advcl _ _ 6 nearly _ ADV RB _ 7 advmod _ _ 7 a _ DET DT _ 8 nummod _ _ 8 quarter _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 value _ NOUN NN _ 8 nmod _ _ 12 since _ ADP IN _ 13 case _ _ 13 Sept. _ PROPN NNP _ 5 nmod _ _ 14 1 _ NUM CD _ 13 nummod _ _ 15 , _ PUNCT , _ 16 punct _ _ 16 closed _ VERB VBD _ 0 root _ _ 17 at _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 34.375 _ NUM CD _ 16 nmod _ _ 20 share _ NOUN NN _ 19 nmod:npmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 down _ ADV RB _ 16 advmod _ _ 23 $ _ SYM $ _ 24 dep _ _ 24 1.125 _ NUM CD _ 22 nmod:npmod _ _ 25 , _ PUNCT , _ 16 punct _ _ 26 in _ ADP IN _ 32 case _ _ 27 New _ PROPN NNP _ 32 compound _ _ 28 York _ PROPN NNP _ 32 compound _ _ 29 Stock _ PROPN NNP _ 32 compound _ _ 30 Exchange _ PROPN NNP _ 32 compound _ _ 31 composite _ ADJ JJ _ 32 amod _ _ 32 trading _ NOUN NN _ 16 nmod _ _ 33 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 34 . _ PUNCT . _ 16 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 degree _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Quantum _ PROPN NNP _ 6 nsubj _ _ 6 represents _ VERB VBZ _ 0 root _ _ 7 the _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 times _ NOUN NNS _ 6 dobj _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 have _ AUX VBP _ 12 aux _ _ 12 arrived _ VERB VBN _ 9 acl:relcl _ _ 13 for _ ADP IN _ 14 case _ _ 14 producers _ NOUN NNS _ 9 nmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 so-called _ ADJ JJ _ 19 amod _ _ 18 commodity _ NOUN NN _ 19 compound _ _ 19 plastics _ NOUN NNS _ 14 nmod _ _ 20 that _ PRON WDT _ 21 nsubj _ _ 21 pervade _ VERB VBP _ 19 acl:relcl _ _ 22 modern _ ADJ JJ _ 23 amod _ _ 23 life _ NOUN NN _ 21 dobj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Having _ AUX VBG _ 3 aux _ _ 2 just _ ADV RB _ 3 advmod _ _ 3 passed _ VERB VBN _ 18 advcl _ _ 4 through _ ADP IN _ 5 case _ _ 5 one _ NUM CD _ 3 nmod _ _ 6 of _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 most _ ADV RBS _ 9 advmod _ _ 9 profitable _ ADJ JJ _ 10 amod _ _ 10 periods _ NOUN NNS _ 5 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 their _ PRON PRP$ _ 13 nmod:poss _ _ 13 history _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 these _ DET DT _ 16 det _ _ 16 producers _ NOUN NNS _ 18 nsubj _ _ 17 now _ ADV RB _ 18 advmod _ _ 18 see _ VERB VBP _ 0 root _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 prices _ NOUN NNS _ 21 nsubj _ _ 21 eroding _ VERB VBG _ 18 dep _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 Pricing _ NOUN NN _ 2 compound _ _ 2 cycles _ NOUN NNS _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ VERB VB _ 6 cop _ _ 6 sure _ ADJ JJ _ 9 dep _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 are _ VERB VBP _ 9 cop _ _ 9 nothing _ NOUN NN _ 0 root _ _ 10 new _ ADJ JJ _ 9 amod _ _ 11 for _ ADP IN _ 13 case _ _ 12 plastics _ NOUN NNS _ 13 compound _ _ 13 producers _ NOUN NNS _ 9 nmod _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 7 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 decline _ NOUN NN _ 7 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 some _ DET DT _ 4 nmod _ _ 7 looks _ VERB VBZ _ 0 root _ _ 8 steep _ ADJ JJ _ 7 xcomp _ _ 9 only _ ADV RB _ 11 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 comparison _ NOUN NN _ 7 nmod _ _ 12 with _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 heady _ ADJ JJ _ 15 amod _ _ 15 period _ NOUN NN _ 11 nmod _ _ 16 that _ PRON WDT _ 20 nsubj _ _ 17 is _ VERB VBZ _ 20 cop _ _ 18 just _ ADV RB _ 20 advmod _ _ 19 behind _ ADP IN _ 20 case _ _ 20 them _ PRON PRP _ 15 acl:relcl _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 were _ VERB VBD _ 6 cop _ _ 4 all _ DET DT _ 6 dep _ _ 5 wonderful _ ADJ JJ _ 6 amod _ _ 6 heroes _ NOUN NNS _ 11 ccomp _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 an _ DET DT _ 13 det _ _ 13 executive _ NOUN NN _ 11 nsubj _ _ 14 at _ ADP IN _ 15 case _ _ 15 one _ NUM CD _ 13 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 Quantum _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 competitors _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 Now _ ADV RB _ 7 advmod _ _ 3 we _ PRON PRP _ 7 nsubj _ _ 4 're _ VERB VBP _ 7 cop _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 bottom _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 heap _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 12 '' _ PUNCT '' _ 7 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Quantum _ PROPN NNP _ 14 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 based _ VERB VBN _ 2 acl:relcl _ _ 7 in _ ADP IN _ 9 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 York _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 trouble _ NOUN NN _ 14 nsubjpass _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 magnified _ VERB VBN _ 0 root _ _ 15 by _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 17 det _ _ 17 company _ NOUN NN _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 heavy _ ADJ JJ _ 20 amod _ _ 20 dependence _ NOUN NN _ 14 nmod _ _ 21 on _ ADP IN _ 22 case _ _ 22 plastics _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 Once _ ADV RB _ 2 advmod _ _ 2 known _ VERB VBN _ 12 advcl _ _ 3 as _ ADP IN _ 5 case _ _ 4 National _ PROPN NNP _ 5 compound _ _ 5 Distillers _ PROPN NNPS _ 2 nmod _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Chemical _ PROPN NNP _ 8 compound _ _ 8 Corp. _ PROPN NNP _ 5 conj _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 12 nsubj _ _ 12 exited _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 17 det _ _ 14 wine _ NOUN NN _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 spirits _ NOUN NNS _ 14 conj _ _ 17 business _ NOUN NN _ 12 dobj _ _ 18 and _ CONJ CC _ 12 cc _ _ 19 plowed _ VERB VBD _ 12 conj _ _ 20 more _ ADJ JJR _ 19 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 resources _ NOUN NNS _ 20 nmod _ _ 24 into _ ADP IN _ 25 case _ _ 25 plastics _ NOUN NNS _ 19 nmod _ _ 26 after _ SCONJ IN _ 29 mark _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Stookey _ PROPN NNP _ 29 nsubj _ _ 29 took _ VERB VBD _ 12 advcl _ _ 30 the _ DET DT _ 32 det _ _ 31 chief _ ADJ JJ _ 32 amod _ _ 32 executive _ NOUN NN _ 34 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 job _ NOUN NN _ 29 dobj _ _ 35 in _ ADP IN _ 36 case _ _ 36 1986 _ NUM CD _ 29 nmod _ _ 37 . _ PUNCT . _ 12 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stookey _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 59 _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 old _ ADJ JJ _ 2 amod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 declined _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 interviewed _ VERB VBN _ 8 xcomp _ _ 12 for _ ADP IN _ 14 case _ _ 13 this _ DET DT _ 14 det _ _ 14 article _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 but _ CONJ CC _ 8 cc _ _ 17 he _ PRON PRP _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 consistently _ ADV RB _ 20 advmod _ _ 20 argued _ VERB VBN _ 8 conj _ _ 21 that _ SCONJ IN _ 41 mark _ _ 22 over _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 long _ ADJ JJ _ 25 amod _ _ 25 haul _ NOUN NN _ 41 nmod _ _ 26 -- _ PUNCT : _ 30 punct _ _ 27 across _ ADP IN _ 30 case _ _ 28 both _ DET CC _ 30 cc:preconj _ _ 29 the _ DET DT _ 30 det _ _ 30 peaks _ NOUN NNS _ 41 dep _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 the _ DET DT _ 33 det _ _ 33 troughs _ NOUN NNS _ 30 conj _ _ 34 of _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 plastics _ NOUN NNS _ 37 compound _ _ 37 market _ NOUN NN _ 30 nmod _ _ 38 -- _ PUNCT : _ 30 punct _ _ 39 Quantum _ PROPN NNP _ 41 nsubj _ _ 40 will _ AUX MD _ 41 aux _ _ 41 prosper _ VERB VB _ 20 ccomp _ _ 42 through _ ADP IN _ 45 case _ _ 43 its _ PRON PRP$ _ 45 nmod:poss _ _ 44 new _ ADJ JJ _ 45 amod _ _ 45 direction _ NOUN NN _ 41 nmod _ _ 46 . _ PUNCT . _ 8 punct _ _ 1 Quantum _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 lot _ NOUN NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 mostly _ ADV RB _ 6 advmod _ _ 6 tied _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 polyethylene _ NOUN NN _ 9 compound _ _ 9 resin _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 used _ VERB VBN _ 9 acl _ _ 12 to _ PART TO _ 13 mark _ _ 13 make _ VERB VB _ 11 xcomp _ _ 14 garbage _ NOUN NN _ 15 compound _ _ 15 bags _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 milk _ NOUN NN _ 18 compound _ _ 18 jugs _ NOUN NNS _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 housewares _ NOUN NNS _ 15 conj _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 toys _ NOUN NNS _ 15 conj _ _ 23 and _ CONJ CC _ 15 cc _ _ 24 meat _ NOUN NN _ 25 compound _ _ 25 packaging _ NOUN NN _ 15 conj _ _ 26 , _ PUNCT , _ 15 punct _ _ 27 among _ ADP IN _ 29 case _ _ 28 other _ ADJ JJ _ 29 amod _ _ 29 items _ NOUN NNS _ 15 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 U.S. _ PROPN NNP _ 5 compound _ _ 4 polyethylene _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 Quantum _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 claimed _ VERB VBN _ 0 root _ _ 10 the _ DET DT _ 12 det _ _ 11 largest _ ADJ JJS _ 12 amod _ _ 12 share _ NOUN NN _ 9 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 about _ ADV IN _ 15 advmod _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 appos _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 18 cc _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 competitors _ NOUN NNS _ 18 nsubj _ _ 4 -- _ PUNCT : _ 8 punct _ _ 5 including _ VERB VBG _ 8 case _ _ 6 Dow _ PROPN NNP _ 8 compound _ _ 7 Chemical _ PROPN NNP _ 8 compound _ _ 8 Co. _ PROPN NNP _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Union _ PROPN NNP _ 12 compound _ _ 11 Carbide _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 8 conj _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 several _ ADJ JJ _ 16 amod _ _ 15 oil _ NOUN NN _ 16 compound _ _ 16 giants _ NOUN NNS _ 8 conj _ _ 17 -- _ PUNCT : _ 8 punct _ _ 18 have _ VERB VBP _ 0 root _ _ 19 much _ ADV RB _ 20 advmod _ _ 20 broader _ ADJ JJR _ 22 amod _ _ 21 business _ NOUN NN _ 22 compound _ _ 22 interests _ NOUN NNS _ 18 dobj _ _ 23 and _ CONJ CC _ 24 cc _ _ 24 so _ ADV RB _ 18 cc _ _ 25 are _ AUX VBP _ 27 auxpass _ _ 26 better _ ADV RBR _ 27 advmod _ _ 27 cushioned _ VERB VBN _ 18 conj _ _ 28 against _ ADP IN _ 30 case _ _ 29 price _ NOUN NN _ 30 compound _ _ 30 swings _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 When _ ADV WRB _ 6 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 price _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 polyethylene _ NOUN NN _ 3 nmod _ _ 6 moves _ VERB VBZ _ 17 advcl _ _ 7 a _ DET DT _ 9 det _ _ 8 mere _ ADJ JJ _ 9 amod _ _ 9 penny _ NOUN NN _ 6 dobj _ _ 10 a _ DET DT _ 11 det _ _ 11 pound _ NOUN NN _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 Quantum _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 annual _ ADJ JJ _ 16 amod _ _ 16 profit _ NOUN NN _ 17 nsubj _ _ 17 fluctuates _ VERB VBZ _ 0 root _ _ 18 by _ ADP IN _ 21 case _ _ 19 about _ ADV IN _ 20 advmod _ _ 20 85 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 17 nmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 provided _ VERB VBD _ 30 mark _ _ 26 no _ DET DT _ 28 neg _ _ 27 other _ ADJ JJ _ 28 amod _ _ 28 variables _ NOUN NNS _ 30 nsubj _ _ 29 are _ AUX VBP _ 30 aux _ _ 30 changing _ VERB VBG _ 17 advcl _ _ 31 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 months _ NOUN NNS _ 19 nmod _ _ 4 the _ DET DT _ 5 det _ _ 5 price _ NOUN NN _ 19 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 polyethylene _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 19 punct _ _ 9 even _ ADV RB _ 10 advmod _ _ 10 more _ ADV JJR _ 19 advmod _ _ 11 than _ ADP IN _ 12 case _ _ 12 that _ PRON DT _ 10 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 other _ ADJ JJ _ 16 amod _ _ 15 commodity _ NOUN NN _ 16 compound _ _ 16 plastics _ NOUN NNS _ 12 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 has _ AUX VBZ _ 19 aux _ _ 19 taken _ VERB VBN _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 dive _ NOUN NN _ 19 dobj _ _ 22 . _ PUNCT . _ 19 punct _ _ 1 Benchmark _ ADJ NN _ 2 amod _ _ 2 grades _ NOUN NNS _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 sold _ VERB VBD _ 2 acl:relcl _ _ 7 for _ ADP IN _ 12 case _ _ 8 as _ ADV RB _ 11 advmod _ _ 9 much _ ADJ JJ _ 11 advmod _ _ 10 as _ ADP IN _ 11 advmod _ _ 11 50 _ NUM CD _ 12 nummod _ _ 12 cents _ NOUN NNS _ 6 nmod _ _ 13 a _ DET DT _ 14 det _ _ 14 pound _ NOUN NN _ 12 nmod:npmod _ _ 15 last _ ADJ JJ _ 16 amod _ _ 16 spring _ NOUN NN _ 6 nmod:tmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 skidded _ VERB VBN _ 0 root _ _ 20 to _ ADP TO _ 23 case _ _ 21 between _ ADP IN _ 23 amod _ _ 22 35 _ NUM CD _ 23 nummod _ _ 23 cents _ NOUN NNS _ 19 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 40 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 23 conj _ _ 27 . _ PUNCT . _ 19 punct _ _ 1 Meanwhile _ ADV RB _ 17 advmod _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 price _ NOUN NN _ 17 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 ethylene _ NOUN NN _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 the _ DET DT _ 11 det _ _ 9 chemical _ ADJ NN _ 11 amod _ _ 10 building _ NOUN NN _ 11 compound _ _ 11 block _ NOUN NN _ 6 appos _ _ 12 of _ ADP IN _ 13 case _ _ 13 polyethylene _ NOUN NN _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 has _ AUX VBZ _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 dropped _ VERB VBD _ 0 root _ _ 18 nearly _ ADV RB _ 20 advmod _ _ 19 so _ ADV RB _ 20 advmod _ _ 20 fast _ ADV RB _ 17 advmod _ _ 21 . _ PUNCT . _ 17 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 discrepancy _ NOUN NN _ 3 nsubj _ _ 3 hurts _ VERB VBZ _ 0 root _ _ 4 Quantum _ PROPN NNP _ 3 dobj _ _ 5 badly _ ADV RB _ 3 advmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 because _ SCONJ IN _ 11 mark _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 own _ ADJ JJ _ 10 amod _ _ 10 plants _ NOUN NNS _ 11 nsubj _ _ 11 cover _ VERB VBP _ 3 advcl _ _ 12 only _ ADV RB _ 14 advmod _ _ 13 about _ ADV RB _ 14 advmod _ _ 14 half _ NOUN NN _ 11 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 ethylene _ NOUN NN _ 18 compound _ _ 18 needs _ NOUN VBZ _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 accounts _ NOUN NNS _ 15 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 an _ DET DT _ 7 det _ _ 6 early _ ADJ JJ _ 7 amod _ _ 7 hint _ NOUN NN _ 15 nsubj _ _ 8 of _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 price _ NOUN NN _ 11 compound _ _ 11 rout _ NOUN NN _ 7 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 making _ NOUN VBG _ 11 nmod _ _ 15 came _ VERB VBD _ 0 root _ _ 16 at _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 start _ NOUN NN _ 15 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 this _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 15 punct _ _ 1 China _ PROPN NNP _ 14 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 aux _ _ 6 putting _ VERB VBG _ 1 acl:relcl _ _ 7 in _ ADP IN _ 6 compound:prt _ _ 8 huge _ ADJ JJ _ 9 amod _ _ 9 orders _ NOUN NNS _ 6 dobj _ _ 10 for _ ADP IN _ 11 case _ _ 11 polyethylene _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 1 punct _ _ 13 abruptly _ ADV RB _ 14 advmod _ _ 14 halted _ VERB VBD _ 0 root _ _ 15 them _ PRON PRP _ 14 dobj _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 Calculating _ VERB VBG _ 16 advcl _ _ 2 that _ DET DT _ 8 mark _ _ 3 excess _ ADJ JJ _ 4 amod _ _ 4 polyethylene _ NOUN NN _ 8 nsubj _ _ 5 would _ AUX MD _ 8 aux _ _ 6 soon _ ADV RB _ 8 advmod _ _ 7 be _ AUX VB _ 8 aux _ _ 8 sloshing _ VERB VBG _ 1 ccomp _ _ 9 around _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 world _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 other _ ADJ JJ _ 14 amod _ _ 14 buyers _ NOUN NNS _ 16 nsubj _ _ 15 then _ ADV RB _ 16 advmod _ _ 16 bet _ VERB VB _ 0 root _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 prices _ NOUN NNS _ 20 nsubj _ _ 19 had _ AUX VBD _ 20 aux _ _ 20 peaked _ ADJ JJ _ 16 ccomp _ _ 21 and _ CONJ CC _ 22 cc _ _ 22 so _ ADV RB _ 16 cc _ _ 23 began _ VERB VBD _ 16 conj _ _ 24 to _ PART TO _ 25 mark _ _ 25 draw _ VERB VB _ 23 xcomp _ _ 26 down _ ADP RP _ 25 compound:prt _ _ 27 inventories _ NOUN NNS _ 25 dobj _ _ 28 rather _ ADV RB _ 25 cc _ _ 29 than _ ADP IN _ 28 mwe _ _ 30 order _ VERB VB _ 25 conj _ _ 31 new _ ADJ JJ _ 32 amod _ _ 32 product _ NOUN NN _ 30 dobj _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 Kenneth _ PROPN NNP _ 2 compound _ _ 2 Mitchell _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 director _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 9 case _ _ 6 Dow _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 polyethylene _ NOUN NN _ 9 compound _ _ 9 business _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 producers _ NOUN NNS _ 14 nsubjpass _ _ 13 were _ AUX VBD _ 14 auxpass _ _ 14 surprised _ VERB VBN _ 11 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 learn _ VERB VB _ 14 xcomp _ _ 17 how _ ADV WRB _ 18 advmod _ _ 18 much _ ADV JJ _ 21 advmod _ _ 19 inventories _ NOUN NNS _ 21 nsubj _ _ 20 had _ AUX VBD _ 21 aux _ _ 21 swelled _ VERB VBN _ 16 ccomp _ _ 22 throughout _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 distribution _ NOUN NN _ 25 compound _ _ 25 chain _ NOUN NN _ 21 nmod _ _ 26 as _ SCONJ IN _ 28 mark _ _ 27 prices _ NOUN NNS _ 28 nsubj _ _ 28 spiraled _ VERB VBD _ 21 advcl _ _ 29 up _ ADV RP _ 28 advmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 People _ NOUN NNS _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 hoarding _ VERB VBG _ 10 ccomp _ _ 6 bags _ NOUN NNS _ 5 dobj _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 '' _ PUNCT '' _ 10 punct _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 Now _ ADV RB _ 3 advmod _ _ 2 producers _ NOUN NNS _ 3 nsubj _ _ 3 hope _ VERB VBP _ 0 root _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 hit _ VERB VBN _ 3 ccomp _ _ 7 bottom _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 They _ PRON PRP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 announced _ VERB VBD _ 0 root _ _ 4 increases _ NOUN NNS _ 3 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 few _ ADJ JJ _ 8 amod _ _ 8 cents _ NOUN NNS _ 4 nmod _ _ 9 a _ DET DT _ 10 det _ _ 10 pound _ NOUN NN _ 8 nmod:npmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 take _ VERB VB _ 4 acl _ _ 13 effect _ NOUN NN _ 12 dobj _ _ 14 in _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 next _ ADJ JJ _ 18 amod _ _ 17 several _ ADJ JJ _ 18 amod _ _ 18 weeks _ NOUN NNS _ 12 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 one _ NOUN NN _ 3 nsubj _ _ 3 knows _ VERB VBZ _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 however _ ADV RB _ 3 advmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 whether _ SCONJ IN _ 13 mark _ _ 8 the _ DET DT _ 11 det _ _ 9 new _ ADJ JJ _ 11 amod _ _ 10 posted _ ADJ VBN _ 11 amod _ _ 11 prices _ NOUN NNS _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 stick _ VERB VB _ 3 ccomp _ _ 14 once _ SCONJ RB _ 18 mark _ _ 15 producers _ NOUN NNS _ 18 nsubj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 customers _ NOUN NNS _ 15 conj _ _ 18 start _ VERB VBP _ 13 advcl _ _ 19 to _ PART TO _ 20 mark _ _ 20 haggle _ VERB VB _ 18 xcomp _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 doubter _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 George _ PROPN NNP _ 5 compound _ _ 5 Krug _ PROPN NNP _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 9 det _ _ 8 chemical-industry _ NOUN NN _ 9 compound _ _ 9 analyst _ NOUN NN _ 5 appos _ _ 10 at _ ADP IN _ 11 case _ _ 11 Oppenheimer _ PROPN NNP _ 9 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Co. _ PROPN NNP _ 11 conj _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 a _ DET DT _ 16 det _ _ 16 bear _ NOUN NN _ 9 conj _ _ 17 on _ ADP IN _ 19 case _ _ 18 plastics _ NOUN NNS _ 19 compound _ _ 19 stocks _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Noting _ VERB VBG _ 14 advcl _ _ 2 others _ NOUN NNS _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 estimates _ NOUN NNS _ 1 dobj _ _ 5 of _ SCONJ IN _ 11 mark _ _ 6 when _ ADV WRB _ 11 advmod _ _ 7 price _ NOUN NN _ 8 compound _ _ 8 increases _ NOUN NNS _ 11 nsubjpass _ _ 9 can _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 sustained _ VERB VBN _ 4 acl _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 remarks _ VERB VBZ _ 0 root _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 `` _ PUNCT `` _ 18 punct _ _ 17 Some _ DET DT _ 18 nsubj _ _ 18 say _ VERB VBP _ 14 ccomp _ _ 19 October _ PROPN NNP _ 18 nmod:tmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 November _ PROPN NNP _ 2 nmod:tmod _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 1992 _ NUM CD _ 2 dobj _ _ 4 . _ PUNCT . _ 2 punct _ _ 5 '' _ PUNCT '' _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 argues _ VERB VBZ _ 0 root _ _ 3 that _ SCONJ IN _ 11 mark _ _ 4 efforts _ NOUN NNS _ 11 nsubjpass _ _ 5 to _ PART TO _ 6 mark _ _ 6 firm _ VERB VB _ 4 acl _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 prices _ NOUN NNS _ 6 dobj _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 undermined _ VERB VBN _ 2 ccomp _ _ 12 by _ ADP IN _ 15 case _ _ 13 producers _ NOUN NNS _ 15 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 plans _ NOUN NNS _ 11 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 expand _ VERB VB _ 15 acl _ _ 18 production _ NOUN NN _ 19 compound _ _ 19 capacity _ NOUN NN _ 17 dobj _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 quick _ ADJ JJ _ 3 amod _ _ 3 turnaround _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 crucial _ ADJ JJ _ 0 root _ _ 6 to _ ADP TO _ 7 case _ _ 7 Quantum _ PROPN NNP _ 5 nmod _ _ 8 because _ SCONJ IN _ 12 mark _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 cash _ NOUN NN _ 11 compound _ _ 11 requirements _ NOUN NNS _ 12 nsubj _ _ 12 remain _ VERB VBP _ 5 advcl _ _ 13 heavy _ ADJ JJ _ 12 xcomp _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 trying _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 carry _ VERB VB _ 4 xcomp _ _ 7 out _ ADP RP _ 6 compound:prt _ _ 8 a _ DET DT _ 15 det _ _ 9 three-year _ ADJ JJ _ 15 amod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 $ _ SYM $ _ 15 amod _ _ 12 1.3 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 plant-expansion _ ADJ JJ _ 15 amod _ _ 15 program _ NOUN NN _ 6 dobj _ _ 16 started _ VERB VBD _ 15 acl _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 16 nmod:tmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 annual _ ADJ JJ _ 8 amod _ _ 8 payments _ NOUN NNS _ 15 nsubj _ _ 9 on _ ADP IN _ 11 case _ _ 10 long-term _ ADJ JJ _ 11 amod _ _ 11 debt _ NOUN NN _ 8 nmod _ _ 12 will _ AUX MD _ 15 aux _ _ 13 more _ ADV RBR _ 15 advmod _ _ 14 than _ ADP IN _ 13 case _ _ 15 double _ VERB RB _ 0 root _ _ 16 from _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 19 nmod:npmod _ _ 19 ago _ ADV IN _ 15 advcl _ _ 20 to _ ADP TO _ 24 case _ _ 21 about _ ADV IN _ 24 advmod _ _ 22 $ _ SYM $ _ 24 dep _ _ 23 240 _ NUM CD _ 24 nummod _ _ 24 million _ NUM CD _ 15 nmod _ _ 25 , _ PUNCT , _ 15 punct _ _ 26 largely _ ADV RB _ 29 advmod _ _ 27 because _ ADP IN _ 29 case _ _ 28 of _ ADP IN _ 27 mwe _ _ 29 debt _ NOUN NN _ 15 nmod _ _ 30 taken _ VERB VBN _ 29 acl _ _ 31 on _ ADP IN _ 30 compound:prt _ _ 32 to _ PART TO _ 33 mark _ _ 33 pay _ VERB VB _ 30 xcomp _ _ 34 a _ DET DT _ 38 det _ _ 35 $ _ SYM $ _ 38 amod _ _ 36 50-a-share _ ADJ JJ _ 35 dep _ _ 37 special _ ADJ JJ _ 38 amod _ _ 38 dividend _ NOUN NN _ 33 dobj _ _ 39 earlier _ ADV RBR _ 41 advmod _ _ 40 this _ DET DT _ 41 det _ _ 41 year _ NOUN NN _ 33 nmod:tmod _ _ 42 . _ PUNCT . _ 15 punct _ _ 1 Quantum _ PROPN NNP _ 2 nsubj _ _ 2 described _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 payout _ NOUN NN _ 2 dobj _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 time _ NOUN NN _ 2 nmod _ _ 8 as _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 way _ NOUN NN _ 2 nmod _ _ 11 for _ SCONJ IN _ 14 mark _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 to _ PART TO _ 14 mark _ _ 14 share _ VERB VB _ 10 acl _ _ 15 the _ DET DT _ 16 det _ _ 16 bonanza _ NOUN NN _ 14 dobj _ _ 17 with _ ADP IN _ 19 case _ _ 18 its _ PRON PRP$ _ 19 nmod:poss _ _ 19 holders _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 because _ SCONJ IN _ 27 mark _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 stock _ NOUN NN _ 24 compound _ _ 24 price _ NOUN NN _ 27 nsubj _ _ 25 was _ AUX VBD _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 reflecting _ VERB VBG _ 14 advcl _ _ 28 the _ DET DT _ 31 det _ _ 29 huge _ ADJ JJ _ 31 amod _ _ 30 profit _ NOUN NN _ 31 compound _ _ 31 increases _ NOUN NNS _ 27 dobj _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 saw _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 payment _ NOUN NN _ 3 dobj _ _ 6 as _ ADP IN _ 8 case _ _ 7 an _ DET DT _ 8 det _ _ 8 effort _ NOUN NN _ 3 nmod _ _ 9 also _ ADV RB _ 11 advmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 dispel _ VERB VB _ 8 acl _ _ 12 takeover _ NOUN NN _ 13 compound _ _ 13 speculation _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Whether _ SCONJ IN _ 7 mark _ _ 2 a _ DET DT _ 4 det _ _ 3 cash _ NOUN NN _ 4 compound _ _ 4 crunch _ NOUN NN _ 7 nsubj _ _ 5 might _ AUX MD _ 7 aux _ _ 6 eventually _ ADV RB _ 7 advmod _ _ 7 force _ VERB VB _ 30 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 cut _ VERB VB _ 7 xcomp _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 quarterly _ ADJ JJ _ 14 amod _ _ 14 dividend _ NOUN NN _ 11 dobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 raised _ VERB VBD _ 14 acl _ _ 17 36 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 to _ ADP TO _ 21 case _ _ 20 75 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 16 nmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 only _ ADV RB _ 25 advmod _ _ 25 a _ DET DT _ 26 nummod _ _ 26 year _ NOUN NN _ 27 nmod:npmod _ _ 27 ago _ ADV RB _ 16 advmod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 has _ AUX VBZ _ 30 aux _ _ 30 become _ VERB VBN _ 0 root _ _ 31 a _ DET DT _ 32 det _ _ 32 topic _ NOUN NN _ 30 xcomp _ _ 33 of _ ADP IN _ 35 case _ _ 34 intense _ ADJ JJ _ 35 amod _ _ 35 speculation _ NOUN NN _ 32 nmod _ _ 36 on _ ADP IN _ 38 case _ _ 37 Wall _ PROPN NNP _ 38 compound _ _ 38 Street _ PROPN NNP _ 30 nmod _ _ 39 since _ SCONJ IN _ 42 mark _ _ 40 Mr. _ PROPN NNP _ 41 compound _ _ 41 Stookey _ PROPN NNP _ 42 nsubj _ _ 42 deflected _ VERB VBD _ 30 advcl _ _ 43 dividend _ NOUN NN _ 44 compound _ _ 44 questions _ NOUN NNS _ 42 dobj _ _ 45 in _ ADP IN _ 49 case _ _ 46 a _ DET DT _ 49 det _ _ 47 Sept. _ PROPN NNP _ 49 compound _ _ 48 29 _ NUM CD _ 49 nummod _ _ 49 meeting _ NOUN NN _ 42 nmod _ _ 50 with _ ADP IN _ 51 case _ _ 51 analysts _ NOUN NNS _ 49 nmod _ _ 52 . _ PUNCT . _ 30 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 viewed _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 response _ NOUN NN _ 2 dobj _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 that _ SCONJ DT _ 9 mark _ _ 7 company _ NOUN NN _ 8 compound _ _ 8 directors _ NOUN NNS _ 9 nsubj _ _ 9 review _ VERB VBP _ 4 dep _ _ 10 the _ DET DT _ 11 det _ _ 11 dividend _ NOUN NN _ 9 dobj _ _ 12 regularly _ ADV RB _ 9 advmod _ _ 13 -- _ PUNCT : _ 4 punct _ _ 14 as _ ADP IN _ 15 case _ _ 15 nothing _ NOUN NN _ 2 nmod _ _ 16 more _ ADJ JJR _ 15 amod _ _ 17 than _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 standard _ ADJ JJ _ 20 amod _ _ 20 line _ NOUN NN _ 16 nmod _ _ 21 from _ ADP IN _ 22 case _ _ 22 executives _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 others _ NOUN NNS _ 3 nsubj _ _ 3 came _ VERB VBD _ 0 root _ _ 4 away _ ADV RB _ 3 advmod _ _ 5 thinking _ VERB VBG _ 3 xcomp _ _ 6 he _ PRON PRP _ 8 nsubj _ _ 7 had _ AUX VBD _ 8 aux _ _ 8 given _ VERB VBN _ 5 ccomp _ _ 9 something _ NOUN NN _ 8 dobj _ _ 10 less _ ADJ JJR _ 9 amod _ _ 11 than _ ADP IN _ 15 case _ _ 12 his _ PRON PRP$ _ 15 nmod:poss _ _ 13 usual _ ADJ JJ _ 15 amod _ _ 14 straight-from-the-shoulder _ ADJ NN _ 15 amod _ _ 15 performance _ NOUN NN _ 10 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 15 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 day _ NOUN NN _ 15 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 meeting _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 Quantum _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 shares _ NOUN NNS _ 15 nsubj _ _ 15 slid _ VERB VBD _ 0 root _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 2.625 _ NUM CD _ 15 dobj _ _ 18 to _ ADP TO _ 20 case _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 36.625 _ NUM CD _ 15 nmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 Big _ PROPN NNP _ 24 compound _ _ 23 Board _ PROPN NNP _ 24 compound _ _ 24 trading _ NOUN NN _ 15 nmod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 top _ NOUN NN _ 8 nmod _ _ 3 of _ ADP IN _ 4 case _ _ 4 everything _ NOUN NN _ 2 nmod _ _ 5 else _ ADV RB _ 4 amod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Quantum _ PROPN NNP _ 8 nsubj _ _ 8 confronts _ VERB VBZ _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 disaster _ NOUN NN _ 8 dobj _ _ 11 at _ ADP IN _ 13 case _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 plant _ NOUN NN _ 10 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 Morris _ PROPN NNP _ 13 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Ill _ PROPN NNP _ 15 appos _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 After _ SCONJ IN _ 4 mark _ _ 2 an _ DET DT _ 3 det _ _ 3 explosion _ NOUN NN _ 4 nsubj _ _ 4 idled _ VERB VBD _ 12 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 plant _ NOUN NN _ 4 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 June _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 12 nsubj _ _ 12 progressed _ VERB VBD _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 September _ PROPN NNP _ 12 nmod _ _ 15 to _ ADP TO _ 18 case _ _ 16 within _ ADP IN _ 17 advmod _ _ 17 12 _ NUM CD _ 18 nummod _ _ 18 hours _ NOUN NNS _ 12 advcl _ _ 19 of _ SCONJ IN _ 20 mark _ _ 20 completing _ VERB VBG _ 18 nmod _ _ 21 the _ DET DT _ 23 det _ _ 22 drawn-out _ ADJ JJ _ 23 amod _ _ 23 process _ NOUN NN _ 20 dobj _ _ 24 of _ SCONJ IN _ 25 mark _ _ 25 restarting _ VERB VBG _ 23 acl _ _ 26 it _ PRON PRP _ 25 dobj _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 Then _ ADV RB _ 5 advmod _ _ 2 a _ DET DT _ 4 det _ _ 3 second _ ADJ JJ _ 4 amod _ _ 4 explosion _ NOUN NN _ 5 nsubj _ _ 5 occurred _ VERB VBD _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 workers _ NOUN NNS _ 3 nsubj _ _ 3 died _ VERB VBD _ 0 root _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 six _ NUM CD _ 6 nsubj _ _ 6 remain _ VERB VBP _ 3 conj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 hospital _ NOUN NN _ 6 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 human _ ADJ JJ _ 3 amod _ _ 3 toll _ NOUN NN _ 4 nsubj _ _ 4 adds _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 8 det _ _ 6 most _ ADV RBS _ 7 advmod _ _ 7 painful _ ADJ JJ _ 8 amod _ _ 8 dimension _ NOUN NN _ 4 dobj _ _ 9 yet _ ADV RB _ 8 advmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 sudden _ ADJ JJ _ 13 amod _ _ 13 change _ NOUN NN _ 4 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 Quantum _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 fortunes _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Until _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 year _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 10 nsubj _ _ 7 had _ AUX VBD _ 10 aux _ _ 8 been _ AUX VBN _ 10 aux _ _ 9 steadily _ ADV RB _ 10 advmod _ _ 10 lowering _ VERB VBG _ 0 root _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 accident _ NOUN NN _ 13 compound _ _ 13 rate _ NOUN NN _ 10 dobj _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 picking _ VERB VBG _ 10 conj _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 trade-group _ NOUN NN _ 19 compound _ _ 18 safety _ NOUN NN _ 19 compound _ _ 19 awards _ NOUN NNS _ 15 dobj _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 prolonged _ ADJ JJ _ 4 amod _ _ 3 production _ NOUN NN _ 4 compound _ _ 4 halt _ NOUN NN _ 9 nsubj _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 plant _ NOUN NN _ 4 nmod _ _ 8 could _ AUX MD _ 9 aux _ _ 9 introduce _ VERB VB _ 0 root _ _ 10 another _ DET DT _ 11 det _ _ 11 imponderable _ NOUN NN _ 9 dobj _ _ 12 into _ ADP IN _ 16 case _ _ 13 Quantum _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 financial _ ADJ JJ _ 16 amod _ _ 16 future _ NOUN NN _ 9 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 When _ ADV WRB _ 7 advmod _ _ 2 a _ DET DT _ 3 det _ _ 3 plant _ NOUN NN _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 just _ ADV RB _ 7 advmod _ _ 6 been _ AUX VBN _ 7 aux _ _ 7 running _ VERB VBG _ 24 advcl _ _ 8 flat _ ADV JJ _ 9 advmod _ _ 9 out _ ADV IN _ 7 advmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 meet _ VERB VB _ 7 xcomp _ _ 12 demand _ NOUN NN _ 11 dobj _ _ 13 , _ PUNCT , _ 24 punct _ _ 14 calculating _ VERB VBG _ 24 csubj _ _ 15 lost _ ADJ JJ _ 16 amod _ _ 16 profit _ NOUN NN _ 14 dobj _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 thus _ ADV RB _ 16 advmod _ _ 19 claims _ NOUN VBZ _ 16 dep _ _ 20 under _ ADP IN _ 22 case _ _ 21 business-interruption _ ADJ NN _ 22 amod _ _ 22 insurance _ NOUN NN _ 19 nmod _ _ 23 is _ VERB VBZ _ 24 cop _ _ 24 straightforward _ ADJ JJ _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 numbers _ NOUN NNS _ 4 nsubj _ _ 4 become _ VERB VBP _ 0 root _ _ 5 trickier _ ADJ JJR _ 4 xcomp _ _ 6 -- _ PUNCT : _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 subject _ ADJ JJ _ 5 conj _ _ 9 to _ ADP TO _ 10 case _ _ 10 dickering _ NOUN VBG _ 8 nmod _ _ 11 between _ ADP IN _ 12 case _ _ 12 insured _ NOUN JJ _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 insurer _ NOUN NN _ 12 conj _ _ 15 -- _ PUNCT : _ 5 punct _ _ 16 when _ ADV WRB _ 19 advmod _ _ 17 demand _ NOUN NN _ 19 nsubj _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 shifting _ VERB VBG _ 4 advcl _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 You _ PRON PRP _ 3 nsubj _ _ 3 say _ VERB VBP _ 20 ccomp _ _ 4 you _ PRON PRP _ 7 nsubj _ _ 5 could _ AUX MD _ 7 aux _ _ 6 have _ AUX VB _ 7 aux _ _ 7 sold _ VERB VBN _ 3 ccomp _ _ 8 X _ NOUN NN _ 9 compound _ _ 9 percent _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 product _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 Y _ NOUN NN _ 15 compound _ _ 15 percent _ NOUN NN _ 9 conj _ _ 16 of _ ADP IN _ 17 case _ _ 17 that _ PRON DT _ 15 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 recalls _ VERB VBZ _ 0 root _ _ 21 Theodore _ PROPN NNP _ 22 compound _ _ 22 Semegran _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 an _ DET DT _ 25 det _ _ 25 analyst _ NOUN NN _ 22 appos _ _ 26 at _ ADP IN _ 29 case _ _ 27 Shearson _ PROPN NNP _ 29 compound _ _ 28 Lehman _ PROPN NNP _ 29 compound _ _ 29 Hutton _ PROPN NNP _ 25 nmod _ _ 30 who _ PRON WP _ 31 nsubj _ _ 31 went _ VERB VBD _ 25 acl:relcl _ _ 32 through _ ADP IN _ 34 case _ _ 33 this _ DET DT _ 34 det _ _ 34 exercise _ NOUN NN _ 31 nmod _ _ 35 during _ ADP IN _ 38 case _ _ 36 his _ PRON PRP$ _ 38 nmod:poss _ _ 37 former _ ADJ JJ _ 38 amod _ _ 38 career _ NOUN NN _ 31 nmod _ _ 39 as _ ADP IN _ 42 case _ _ 40 a _ DET DT _ 42 det _ _ 41 chemical _ ADJ NN _ 42 amod _ _ 42 engineer _ NOUN NN _ 38 nmod _ _ 43 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 And _ CONJ CC _ 6 cc _ _ 3 then _ ADV RB _ 6 advmod _ _ 4 you _ PRON PRP _ 6 nsubj _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 have _ VERB VBP _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 negotiate _ VERB VB _ 6 xcomp _ _ 9 . _ PUNCT . _ 6 punct _ _ 10 '' _ PUNCT '' _ 6 punct _ _ 1 Quantum _ PROPN NNP _ 2 nsubj _ _ 2 hopes _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Morris _ PROPN NNP _ 5 compound _ _ 5 plant _ NOUN NN _ 17 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 where _ ADV WRB _ 10 advmod _ _ 8 limited _ VERB JJ _ 9 amod _ _ 9 production _ NOUN NN _ 10 nsubj _ _ 10 got _ VERB VBD _ 5 acl:relcl _ _ 11 under _ ADP IN _ 12 case _ _ 12 way _ NOUN NN _ 10 nmod _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 week _ NOUN NN _ 10 nmod:tmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 will _ AUX MD _ 17 aux _ _ 17 resume _ VERB VB _ 2 ccomp _ _ 18 full _ ADJ JJ _ 19 amod _ _ 19 operation _ NOUN NN _ 17 dobj _ _ 20 by _ ADP IN _ 23 case _ _ 21 year _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 end _ NOUN NN _ 17 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plant _ NOUN NN _ 4 nsubj _ _ 3 usually _ ADV RB _ 4 advmod _ _ 4 accounts _ VERB VBZ _ 0 root _ _ 5 for _ ADP IN _ 10 case _ _ 6 20 _ NUM CD _ 10 compound _ _ 7 % _ SYM NN _ 10 dep _ _ 8 to _ ADP TO _ 10 dep _ _ 9 25 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 4 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 Quantum _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 polyethylene _ NOUN NN _ 15 compound _ _ 15 production _ NOUN NN _ 10 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 50 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 10 conj _ _ 19 of _ ADP IN _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 ethylene _ NOUN NN _ 22 compound _ _ 22 production _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 everything _ NOUN NN _ 3 nsubj _ _ 3 looks _ VERB VBZ _ 0 root _ _ 4 grim _ ADJ JJ _ 3 xcomp _ _ 5 for _ ADP IN _ 6 case _ _ 6 Quantum _ PROPN NNP _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 plant _ NOUN NN _ 3 compound _ _ 3 expansion _ NOUN NN _ 5 nsubj _ _ 4 should _ AUX MD _ 5 aux _ _ 5 strengthen _ VERB VB _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 sway _ NOUN VB _ 5 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 polyethylene _ NOUN NN _ 13 compound _ _ 13 business _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 where _ ADV WRB _ 20 advmod _ _ 16 market _ NOUN NN _ 17 compound _ _ 17 share _ NOUN NN _ 20 nsubjpass _ _ 18 is _ AUX VBZ _ 20 auxpass _ _ 19 often _ ADV RB _ 20 advmod _ _ 20 taken _ VERB VBN _ 13 acl:relcl _ _ 21 through _ ADP IN _ 23 case _ _ 22 sheer _ NOUN JJ _ 23 compound _ _ 23 capacity _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 By _ SCONJ IN _ 2 mark _ _ 2 lifting _ VERB VBG _ 10 advcl _ _ 3 ethylene _ NOUN NN _ 4 compound _ _ 4 production _ NOUN NN _ 2 dobj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 expansion _ NOUN NN _ 10 nsubj _ _ 8 will _ AUX MD _ 10 aux _ _ 9 also _ ADV RB _ 10 advmod _ _ 10 lower _ VERB VB _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 16 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 raw _ ADJ JJ _ 16 amod _ _ 15 material _ NOUN NN _ 16 compound _ _ 16 costs _ NOUN NNS _ 10 dobj _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 Quantum _ PROPN NNP _ 4 nsubj _ _ 2 is _ AUX VBZ _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 tightening _ VERB VBG _ 0 root _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 grip _ NOUN NN _ 4 dobj _ _ 7 on _ ADP IN _ 11 case _ _ 8 its _ PRON PRP$ _ 11 nmod:poss _ _ 9 one _ NUM CD _ 11 nummod _ _ 10 large _ ADJ JJ _ 11 amod _ _ 11 business _ NOUN NN _ 6 nmod _ _ 12 outside _ ADP IN _ 13 case _ _ 13 chemicals _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 propane _ NOUN NN _ 16 compound _ _ 16 marketing _ NOUN NN _ 11 appos _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Through _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 venture _ NOUN NN _ 14 nmod _ _ 4 with _ ADP IN _ 7 case _ _ 5 its _ PRON PRP$ _ 7 nmod:poss _ _ 6 investment _ NOUN NN _ 7 compound _ _ 7 banker _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 First _ PROPN NNP _ 11 compound _ _ 10 Boston _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 7 appos _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 Quantum _ PROPN NNP _ 14 nsubj _ _ 14 completed _ VERB VBD _ 0 root _ _ 15 in _ ADP IN _ 16 case _ _ 16 August _ PROPN NNP _ 14 nmod _ _ 17 an _ DET DT _ 18 det _ _ 18 acquisition _ NOUN NN _ 14 dobj _ _ 19 of _ ADP IN _ 21 case _ _ 20 Petrolane _ PROPN NNP _ 21 compound _ _ 21 Inc. _ PROPN NNP _ 18 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 transaction _ NOUN NN _ 14 nmod _ _ 25 valued _ VERB VBN _ 24 acl _ _ 26 at _ ADP IN _ 27 case _ _ 27 $ _ SYM $ _ 25 nmod _ _ 28 1.18 _ NUM CD _ 29 compound _ _ 29 billion _ NUM CD _ 27 nummod _ _ 30 . _ PUNCT . _ 14 punct _ _ 1 Petrolane _ PROPN NNP _ 6 nsubj _ _ 2 is _ VERB VBZ _ 6 cop _ _ 3 the _ DET DT _ 6 det _ _ 4 second-largest _ ADJ JJ _ 6 amod _ _ 5 propane _ NOUN NN _ 6 compound _ _ 6 distributor _ NOUN NN _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 largest _ ADJ JJS _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Suburban _ PROPN NNP _ 5 compound _ _ 5 Propane _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 was _ AUX VBD _ 9 auxpass _ _ 8 already _ ADV RB _ 9 advmod _ _ 9 owned _ VERB VBN _ 0 root _ _ 10 by _ ADP IN _ 11 case _ _ 11 Quantum _ PROPN NNP _ 9 nmod _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Still _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Quantum _ PROPN NNP _ 4 nsubj _ _ 4 has _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 crisis _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 acl _ _ 9 past _ ADP JJ _ 8 nmod _ _ 10 right _ ADV RB _ 11 advmod _ _ 11 now _ ADV RB _ 4 advmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 speculate _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 weakening _ VERB VBG _ 6 amod _ _ 6 stock _ NOUN NN _ 9 nsubj _ _ 7 may _ AUX MD _ 9 aux _ _ 8 yet _ ADV RB _ 9 advmod _ _ 9 attract _ VERB VB _ 3 ccomp _ _ 10 a _ DET DT _ 11 det _ _ 11 suitor _ NOUN NN _ 9 dobj _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 name _ NOUN NN _ 9 nsubj _ _ 3 surfacing _ VERB VBG _ 2 acl _ _ 4 in _ ADP IN _ 5 case _ _ 5 rumors _ NOUN NNS _ 3 nmod _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 British _ PROPN NNP _ 9 compound _ _ 8 Petroleum _ PROPN NNP _ 9 compound _ _ 9 Co. _ PROPN NNP _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 13 nsubj _ _ 12 is _ AUX VBZ _ 13 aux _ _ 13 looking _ VERB VBG _ 9 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 expand _ VERB VB _ 13 xcomp _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 polyethylene _ NOUN NN _ 18 compound _ _ 18 business _ NOUN NN _ 15 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 Asked _ VERB VBN _ 11 advcl _ _ 2 about _ ADP IN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 bid _ NOUN NN _ 1 nmod _ _ 5 for _ ADP IN _ 6 case _ _ 6 Quantum _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 a _ DET DT _ 10 det _ _ 9 BP _ PROPN NNP _ 10 compound _ _ 10 spokesman _ NOUN NN _ 11 nsubj _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 11 punct _ _ 14 We _ PRON PRP _ 17 nsubj _ _ 15 pretty _ ADV RB _ 16 advmod _ _ 16 much _ ADV RB _ 17 advmod _ _ 17 have _ VERB VB _ 11 dep _ _ 18 a _ DET DT _ 19 det _ _ 19 policy _ NOUN NN _ 17 dobj _ _ 20 of _ SCONJ IN _ 22 mark _ _ 21 not _ ADV RB _ 22 neg _ _ 22 commenting _ VERB VBG _ 19 acl _ _ 23 on _ ADP IN _ 24 case _ _ 24 rumors _ NOUN NNS _ 22 nmod _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 and _ CONJ CC _ 17 cc _ _ 27 I _ PRON PRP _ 28 nsubj _ _ 28 think _ VERB VBP _ 17 conj _ _ 29 that _ ADP IN _ 30 nsubj _ _ 30 falls _ VERB VBZ _ 28 ccomp _ _ 31 in _ ADP IN _ 33 case _ _ 32 that _ DET DT _ 33 det _ _ 33 category _ NOUN NN _ 30 nmod _ _ 34 . _ PUNCT . _ 11 punct _ _ 1 RJR _ PROPN NNP _ 3 compound _ _ 2 Nabisco _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 disbanding _ VERB VBG _ 0 root _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 division _ NOUN NN _ 5 dobj _ _ 8 responsible _ ADJ JJ _ 7 amod _ _ 9 for _ SCONJ IN _ 10 mark _ _ 10 buying _ VERB VBG _ 8 advcl _ _ 11 network _ NOUN NN _ 13 compound _ _ 12 advertising _ NOUN NN _ 13 compound _ _ 13 time _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 just _ ADV RB _ 16 advmod _ _ 16 a _ DET DT _ 17 nummod _ _ 17 month _ NOUN NN _ 5 nmod _ _ 18 after _ SCONJ IN _ 17 mark _ _ 19 moving _ VERB VBG _ 17 dep _ _ 20 11 _ NUM CD _ 19 dobj _ _ 21 of _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 23 det _ _ 23 group _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 14 _ NUM CD _ 26 nummod _ _ 26 employees _ NOUN NNS _ 20 nmod _ _ 27 to _ ADP TO _ 29 case _ _ 28 New _ PROPN NNP _ 29 compound _ _ 29 York _ PROPN NNP _ 19 nmod _ _ 30 from _ ADP IN _ 31 case _ _ 31 Atlanta _ PROPN NNP _ 19 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 31 nsubj _ _ 3 for _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 New _ PROPN NNP _ 6 amod _ _ 6 York-based _ ADJ JJ _ 7 amod _ _ 7 food _ NOUN NN _ 2 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 tobacco _ NOUN NN _ 10 compound _ _ 10 giant _ NOUN NN _ 7 conj _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 taken _ VERB VBN _ 7 acl _ _ 13 private _ ADJ JJ _ 12 xcomp _ _ 14 earlier _ ADV RBR _ 16 advmod _ _ 15 this _ DET DT _ 16 det _ _ 16 year _ NOUN NN _ 12 nmod:tmod _ _ 17 in _ ADP IN _ 23 case _ _ 18 a _ DET DT _ 23 det _ _ 19 $ _ SYM $ _ 23 dep _ _ 20 25 _ NUM CD _ 23 nummod _ _ 21 billion _ NUM CD _ 23 nummod _ _ 22 leveraged _ ADJ JJ _ 23 amod _ _ 23 buy-out _ NOUN NN _ 12 nmod _ _ 24 by _ ADP IN _ 27 case _ _ 25 Kohlberg _ PROPN NNP _ 27 compound _ _ 26 Kravis _ PROPN NNP _ 27 compound _ _ 27 Roberts _ PROPN NNP _ 12 nmod _ _ 28 & _ CONJ CC _ 27 cc _ _ 29 Co. _ PROPN NNP _ 27 conj _ _ 30 , _ PUNCT , _ 7 punct _ _ 31 confirmed _ VERB VBD _ 0 root _ _ 32 that _ SCONJ IN _ 35 mark _ _ 33 it _ PRON PRP _ 35 nsubj _ _ 34 is _ AUX VBZ _ 35 aux _ _ 35 shutting _ VERB VBG _ 31 ccomp _ _ 36 down _ ADP RP _ 35 compound:prt _ _ 37 the _ DET DT _ 41 det _ _ 38 RJR _ PROPN NNP _ 41 compound _ _ 39 Nabisco _ PROPN NNP _ 41 compound _ _ 40 Broadcast _ PROPN NNP _ 41 compound _ _ 41 unit _ NOUN NN _ 35 dobj _ _ 42 , _ PUNCT , _ 35 punct _ _ 43 and _ CONJ CC _ 35 cc _ _ 44 dismissing _ VERB VBG _ 35 conj _ _ 45 its _ PRON PRP$ _ 47 nmod:poss _ _ 46 14 _ NUM CD _ 47 nummod _ _ 47 employees _ NOUN NNS _ 44 dobj _ _ 48 , _ PUNCT , _ 35 punct _ _ 49 in _ ADP IN _ 51 case _ _ 50 a _ DET DT _ 51 det _ _ 51 move _ NOUN NN _ 35 conj _ _ 52 to _ PART TO _ 53 mark _ _ 53 save _ VERB VB _ 51 acl _ _ 54 money _ NOUN NN _ 53 dobj _ _ 55 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 RJR _ PROPN NNP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 discussing _ VERB VBG _ 3 ccomp _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 network-buying _ ADJ JJ _ 9 amod _ _ 9 plans _ NOUN NNS _ 6 dobj _ _ 10 with _ ADP IN _ 15 case _ _ 11 its _ PRON PRP$ _ 15 nmod:poss _ _ 12 two _ NUM CD _ 15 nummod _ _ 13 main _ ADJ JJ _ 15 amod _ _ 14 advertising _ NOUN NN _ 15 compound _ _ 15 firms _ NOUN NNS _ 6 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 FCB/Leber _ PROPN NNP _ 18 compound _ _ 18 Katz _ PROPN NNP _ 15 appos _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 McCann _ PROPN NNP _ 21 compound _ _ 21 Erickson _ PROPN NNP _ 18 conj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 found _ VERB VBD _ 28 ccomp _ _ 4 with _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 size _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 our _ PRON PRP$ _ 10 nmod:poss _ _ 9 media _ NOUN NNS _ 10 compound _ _ 10 purchases _ NOUN NNS _ 6 nmod _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 an _ DET DT _ 14 det _ _ 13 ad _ NOUN NN _ 14 compound _ _ 14 agency _ NOUN NN _ 16 nsubj _ _ 15 could _ AUX MD _ 16 aux _ _ 16 do _ VERB VB _ 3 ccomp _ _ 17 just _ ADV RB _ 19 advmod _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 good _ ADJ JJ _ 21 amod _ _ 20 a _ DET DT _ 21 det _ _ 21 job _ NOUN NN _ 16 dobj _ _ 22 at _ ADP IN _ 25 case _ _ 23 significantly _ ADV RB _ 24 advmod _ _ 24 lower _ ADJ JJR _ 25 amod _ _ 25 cost _ NOUN NN _ 16 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 the _ DET DT _ 30 det _ _ 30 spokesman _ NOUN NN _ 28 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 who _ PRON WP _ 33 nsubj _ _ 33 declined _ VERB VBD _ 30 acl:relcl _ _ 34 to _ PART TO _ 35 mark _ _ 35 specify _ VERB VB _ 33 xcomp _ _ 36 how _ ADV WRB _ 37 advmod _ _ 37 much _ ADJ JJ _ 39 advmod _ _ 38 RJR _ PROPN NNP _ 39 nsubj _ _ 39 spends _ VERB VBZ _ 35 ccomp _ _ 40 on _ ADP IN _ 43 case _ _ 41 network _ NOUN NN _ 43 compound _ _ 42 television _ NOUN NN _ 43 compound _ _ 43 time _ NOUN NN _ 39 nmod _ _ 44 . _ PUNCT . _ 28 punct _ _ 1 An _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 7 nsubj _ _ 3 close _ ADV NN _ 2 amod _ _ 4 to _ ADP TO _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 3 nmod _ _ 7 said _ VERB VBD _ 0 root _ _ 8 RJR _ PROPN NNP _ 10 nsubj _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 spending _ VERB VBG _ 7 ccomp _ _ 11 about _ ADV RB _ 12 advmod _ _ 12 $ _ SYM $ _ 10 dobj _ _ 13 140 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 on _ ADP IN _ 18 case _ _ 16 network _ NOUN NN _ 18 compound _ _ 17 television _ NOUN NN _ 18 compound _ _ 18 time _ NOUN NN _ 10 nmod _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 10 nmod:tmod _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 down _ ADV RB _ 10 advmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 roughly _ ADV RB _ 25 advmod _ _ 25 $ _ SYM $ _ 22 nmod _ _ 26 200 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 year _ NOUN NN _ 25 nmod:tmod _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 broadcast _ NOUN NN _ 6 compound _ _ 6 unit _ NOUN NN _ 9 nsubjpass _ _ 7 will _ AUX MD _ 9 aux _ _ 8 be _ AUX VB _ 9 auxpass _ _ 9 disbanded _ VERB VBN _ 3 dep _ _ 10 Dec. _ PROPN NNP _ 9 nmod:tmod _ _ 11 1 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 the _ DET DT _ 15 det _ _ 15 move _ NOUN NN _ 18 nsubj _ _ 16 wo _ AUX MD _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 affect _ VERB VB _ 9 conj _ _ 19 RJR _ PROPN NNP _ 27 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 print _ NOUN NN _ 23 compound _ _ 22 , _ PUNCT , _ 23 punct _ _ 23 radio _ NOUN NN _ 27 compound _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 spot-television _ ADJ NN _ 23 conj _ _ 26 buying _ NOUN NN _ 27 compound _ _ 27 practices _ NOUN NNS _ 18 dobj _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 broadcast _ NOUN NN _ 3 compound _ _ 3 group _ NOUN NN _ 6 nsubjpass _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 auxpass _ _ 6 based _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 York _ PROPN NNP _ 6 nmod _ _ 10 until _ ADP IN _ 20 case _ _ 11 a _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 13 nmod:npmod _ _ 13 ago _ ADV RB _ 20 advmod _ _ 14 , _ PUNCT , _ 20 punct _ _ 15 when _ ADV WRB _ 20 advmod _ _ 16 RJR _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 previous _ ADJ JJ _ 19 amod _ _ 19 management _ NOUN NN _ 20 nsubj _ _ 20 moved _ VERB VBD _ 6 advcl _ _ 21 it _ PRON PRP _ 20 dobj _ _ 22 to _ ADP TO _ 23 case _ _ 23 Atlanta _ PROPN NNP _ 20 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 the _ DET DT _ 26 det _ _ 26 company _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 headquarters _ NOUN NN _ 23 appos _ _ 29 before _ ADP IN _ 31 case _ _ 30 this _ DET DT _ 31 det _ _ 31 summer _ NOUN NN _ 20 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 employee _ NOUN NN _ 6 nsubj _ _ 3 with _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 group _ NOUN NN _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 RJR _ PROPN NNP _ 8 nsubj _ _ 8 moved _ VERB VBD _ 6 ccomp _ _ 9 11 _ NUM CD _ 10 nummod _ _ 10 employees _ NOUN NNS _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 group _ NOUN NN _ 10 nmod _ _ 14 back _ ADV RB _ 8 advmod _ _ 15 to _ ADP TO _ 17 case _ _ 16 New _ PROPN NNP _ 17 compound _ _ 17 York _ PROPN NNP _ 14 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 September _ PROPN NNP _ 8 nmod _ _ 20 because _ SCONJ IN _ 24 mark _ _ 21 `` _ PUNCT `` _ 24 punct _ _ 22 there _ PRON EX _ 24 expl _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 supposed _ VERB VBN _ 8 advcl _ _ 25 to _ PART TO _ 28 mark _ _ 26 be _ VERB VB _ 28 cop _ _ 27 a _ DET DT _ 28 det _ _ 28 future _ NOUN NN _ 24 xcomp _ _ 29 . _ PUNCT . _ 6 punct _ _ 30 '' _ PUNCT '' _ 6 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 hired _ VERB VBD _ 2 ccomp _ _ 6 three _ NUM CD _ 8 nummod _ _ 7 more _ ADJ JJR _ 8 amod _ _ 8 buyers _ NOUN NNS _ 5 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 unit _ NOUN NN _ 5 nmod _ _ 12 within _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 past _ ADJ JJ _ 16 amod _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 weeks _ NOUN NNS _ 5 nmod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 wooing _ VERB VBG _ 5 advcl _ _ 19 them _ PRON PRP _ 18 dobj _ _ 20 from _ ADP IN _ 21 case _ _ 21 jobs _ NOUN NNS _ 18 nmod _ _ 22 with _ ADP IN _ 24 case _ _ 23 advertising _ NOUN NN _ 24 compound _ _ 24 agencies _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 RJR _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 moved _ VERB VBD _ 4 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 11 _ NUM CD _ 10 nummod _ _ 10 employees _ NOUN NNS _ 7 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 New _ PROPN NNP _ 13 compound _ _ 13 York _ PROPN NNP _ 7 nmod _ _ 14 last _ ADJ JJ _ 15 amod _ _ 15 month _ NOUN NN _ 7 nmod:tmod _ _ 16 because _ SCONJ IN _ 24 mark _ _ 17 the _ DET DT _ 18 det _ _ 18 group _ NOUN NN _ 24 nsubj _ _ 19 had _ AUX VBD _ 24 aux _ _ 20 then _ ADV RB _ 24 advmod _ _ 21 been _ VERB VBN _ 24 cop _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 midst _ NOUN NN _ 7 advcl _ _ 25 of _ SCONJ IN _ 26 mark _ _ 26 purchasing _ VERB VBG _ 24 acl _ _ 27 ad _ NOUN NN _ 28 compound _ _ 28 time _ NOUN NN _ 26 dobj _ _ 29 for _ ADP IN _ 34 case _ _ 30 the _ DET DT _ 31 det _ _ 31 networks _ NOUN NNS _ 34 nmod:poss _ _ 32 ' _ PART POS _ 31 case _ _ 33 upcoming _ ADJ JJ _ 34 amod _ _ 34 season _ NOUN NN _ 28 nmod _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 studies _ NOUN NNS _ 13 nsubjpass _ _ 4 -LCB- _ PUNCT -LRB- _ 6 punct _ _ 5 on _ SCONJ IN _ 6 mark _ _ 6 closing _ VERB VBG _ 3 nmod _ _ 7 the _ DET DT _ 8 det _ _ 8 unit _ NOUN NN _ 6 dobj _ _ 9 -RCB- _ PUNCT -RRB- _ 6 punct _ _ 10 could _ AUX MD _ 13 aux _ _ 11 n't _ PART RB _ 13 neg _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 completed _ VERB VBN _ 19 ccomp _ _ 14 until _ ADP IN _ 15 case _ _ 15 now _ ADV RB _ 13 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 president _ NOUN NN _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Peter _ PROPN NNP _ 7 compound _ _ 7 Chrisanthopoulos _ PROPN NNP _ 4 appos _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 was _ VERB VBD _ 13 cop _ _ 10 n't _ PART RB _ 13 neg _ _ 11 in _ ADP IN _ 13 case _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 office _ NOUN NN _ 0 root _ _ 14 Friday _ PROPN NNP _ 15 compound _ _ 15 afternoon _ NOUN NN _ 13 nmod:tmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 comment _ VERB VB _ 13 xcomp _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 finalizing _ VERB VBG _ 2 acl:relcl _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 steel-import _ ADJ JJ _ 9 amod _ _ 9 quotas _ NOUN NNS _ 6 dobj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 allocating _ VERB VBG _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 larger _ ADJ JJR _ 15 amod _ _ 15 share _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 steel _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 15 nmod _ _ 20 to _ ADP TO _ 25 case _ _ 21 developing _ ADJ VBG _ 25 amod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 newly _ ADV RB _ 24 advmod _ _ 24 industrialized _ ADJ VBN _ 21 conj _ _ 25 countries _ NOUN NNS _ 12 nmod _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 have _ VERB VBP _ 25 acl:relcl _ _ 28 relatively _ ADV RB _ 29 advmod _ _ 29 unsubsidized _ ADJ JJ _ 31 amod _ _ 30 steel _ NOUN NN _ 31 compound _ _ 31 industries _ NOUN NNS _ 27 dobj _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 Meanwhile _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 U.S. _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 negotiated _ VERB VBN _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 significant _ ADJ JJ _ 9 amod _ _ 9 cut _ NOUN NN _ 6 dobj _ _ 10 in _ ADP IN _ 14 case _ _ 11 Japan _ PROPN NNP _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 steel _ NOUN NN _ 14 compound _ _ 14 quota _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 made _ VERB VBD _ 6 conj _ _ 18 only _ ADV RB _ 21 advmod _ _ 19 a _ DET DT _ 21 det _ _ 20 minor _ ADJ JJ _ 21 amod _ _ 21 increase _ NOUN NN _ 17 dobj _ _ 22 to _ ADP TO _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 steel _ NOUN NN _ 25 compound _ _ 25 allotment _ NOUN NN _ 21 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 European _ PROPN NNP _ 29 compound _ _ 29 Community _ PROPN NNP _ 25 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Brazil _ PROPN NNP _ 11 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 similar _ ADJ JJ _ 1 amod _ _ 4 to _ ADP TO _ 5 case _ _ 5 Mexico _ PROPN NNP _ 3 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 South _ PROPN NNP _ 8 compound _ _ 8 Korea _ PROPN NNP _ 5 conj _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 negotiate _ VERB VB _ 11 xcomp _ _ 14 a _ DET DT _ 17 det _ _ 15 somewhat _ ADV RB _ 16 advmod _ _ 16 bigger _ ADJ JJR _ 17 amod _ _ 17 share _ NOUN NN _ 13 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 market _ NOUN NN _ 17 nmod _ _ 22 than _ SCONJ IN _ 24 mark _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 had _ VERB VBD _ 17 advcl _ _ 25 under _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 30 det _ _ 27 previous _ ADJ JJ _ 30 amod _ _ 28 five-year _ ADJ JJ _ 30 amod _ _ 29 steel _ NOUN NN _ 30 compound _ _ 30 quotas _ NOUN NNS _ 24 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 which _ PRON WDT _ 33 nsubj _ _ 33 expired _ VERB VBD _ 30 acl:relcl _ _ 34 Sept. _ PROPN NNP _ 33 nmod:tmod _ _ 35 30 _ NUM CD _ 34 nummod _ _ 36 . _ PUNCT . _ 11 punct _ _ 1 Brazil _ PROPN NNP _ 8 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Venezuela _ PROPN NNP _ 1 conj _ _ 4 are _ VERB VBP _ 8 cop _ _ 5 the _ DET DT _ 8 det _ _ 6 only _ ADJ JJ _ 8 amod _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 countries _ NOUN NNS _ 0 root _ _ 9 that _ PRON WDT _ 12 nsubj _ _ 10 have _ AUX VBP _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 completed _ VERB VBN _ 8 acl:relcl _ _ 13 steel _ NOUN NN _ 14 compound _ _ 14 talks _ NOUN NNS _ 12 dobj _ _ 15 with _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 14 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 14 nmod _ _ 21 ending _ VERB VBG _ 20 acl _ _ 22 Oct. _ PROPN NNP _ 21 nmod:tmod _ _ 23 1 _ NUM CD _ 22 nummod _ _ 24 , _ PUNCT , _ 22 punct _ _ 25 1990 _ NUM CD _ 22 nummod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 years _ NOUN NNS _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 U.S. _ PROPN NNP _ 6 compound _ _ 6 steelmakers _ NOUN NNS _ 8 nsubj _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 supplied _ VERB VBN _ 0 root _ _ 9 about _ ADV IN _ 10 advmod _ _ 10 80 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 8 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 100 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 16 nummod _ _ 16 tons _ NOUN NNS _ 11 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 steel _ NOUN NN _ 16 nmod _ _ 19 used _ VERB VBN _ 16 acl _ _ 20 annually _ ADV RB _ 19 advmod _ _ 21 by _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 nation _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 Of _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 remaining _ VERB VBG _ 5 amod _ _ 4 20 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 11 nmod _ _ 6 needed _ VERB VBN _ 5 acl _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 steel-quota _ NOUN JJ _ 10 compound _ _ 10 negotiations _ NOUN NNS _ 11 nsubj _ _ 11 allocate _ VERB VBP _ 0 root _ _ 12 about _ ADV IN _ 13 advmod _ _ 13 15 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 11 dobj _ _ 15 to _ ADP TO _ 17 case _ _ 16 foreign _ ADJ JJ _ 17 amod _ _ 17 suppliers _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 11 punct _ _ 19 with _ SCONJ IN _ 22 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 difference _ NOUN NN _ 22 nsubj _ _ 22 supplied _ VERB VBN _ 11 advcl _ _ 23 mainly _ ADV RB _ 25 advmod _ _ 24 by _ ADP IN _ 25 case _ _ 25 Canada _ PROPN NNP _ 22 nmod _ _ 26 -- _ PUNCT : _ 25 punct _ _ 27 which _ PRON WDT _ 30 nsubjpass _ _ 28 is _ AUX VBZ _ 30 auxpass _ _ 29 n't _ PART RB _ 30 neg _ _ 30 included _ VERB VBN _ 25 acl:relcl _ _ 31 in _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 quota _ NOUN NN _ 34 compound _ _ 34 program _ NOUN NN _ 30 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 countries _ NOUN NNS _ 24 nsubj _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 have _ VERB VB _ 2 acl:relcl _ _ 7 formal _ ADJ JJ _ 9 amod _ _ 8 steel _ NOUN NN _ 9 compound _ _ 9 quotas _ NOUN NNS _ 6 dobj _ _ 10 with _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 such _ ADJ JJ _ 16 case _ _ 15 as _ ADP IN _ 14 mwe _ _ 16 Taiwan _ PROPN NNP _ 2 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Sweden _ PROPN NNP _ 16 conj _ _ 19 and _ CONJ CC _ 16 cc _ _ 20 Argentina _ PROPN NNP _ 16 conj _ _ 21 , _ PUNCT , _ 2 punct _ _ 22 also _ ADV RB _ 24 advmod _ _ 23 have _ AUX VBP _ 24 aux _ _ 24 supplied _ VERB VBN _ 0 root _ _ 25 steel _ NOUN NN _ 24 dobj _ _ 26 . _ PUNCT . _ 24 punct _ _ 1 Some _ DET DT _ 9 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 these _ DET DT _ 4 det _ _ 4 countries _ NOUN NNS _ 1 nmod _ _ 5 have _ AUX VBP _ 9 aux _ _ 6 in _ ADP IN _ 8 case _ _ 7 recent _ ADJ JJ _ 8 amod _ _ 8 years _ NOUN NNS _ 9 nmod _ _ 9 made _ VERB VBN _ 0 root _ _ 10 informal _ ADJ JJ _ 11 amod _ _ 11 agreements _ NOUN NNS _ 9 dobj _ _ 12 with _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 11 nmod _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 are _ VERB VBP _ 17 cop _ _ 17 similar _ ADJ JJ _ 11 acl:relcl _ _ 18 to _ ADP TO _ 19 case _ _ 19 quotas _ NOUN NNS _ 17 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 7 nsubj _ _ 4 earlier _ ADV RBR _ 6 advmod _ _ 5 this _ DET DT _ 6 det _ _ 6 year _ NOUN NN _ 7 nmod:tmod _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 extend _ VERB VB _ 7 ccomp _ _ 11 steel _ NOUN NN _ 12 compound _ _ 12 quotas _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 known _ VERB VBN _ 12 acl _ _ 15 as _ ADP IN _ 18 case _ _ 16 voluntary _ ADJ JJ _ 18 amod _ _ 17 restraint _ NOUN NN _ 18 compound _ _ 18 agreements _ NOUN NNS _ 14 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 until _ ADP IN _ 21 case _ _ 21 March _ PROPN NNP _ 10 nmod _ _ 22 31 _ NUM CD _ 21 nummod _ _ 23 , _ PUNCT , _ 21 punct _ _ 24 1992 _ NUM CD _ 21 nummod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 use _ VERB VB _ 3 ccomp _ _ 7 that _ DET IN _ 10 det _ _ 8 two-and-a-half _ ADJ CD _ 9 dep _ _ 9 year _ NOUN NN _ 10 amod _ _ 10 period _ NOUN NN _ 6 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 work _ VERB VB _ 6 advcl _ _ 13 toward _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 international _ ADJ JJ _ 16 amod _ _ 16 consensus _ NOUN NN _ 12 nmod _ _ 17 on _ SCONJ IN _ 18 mark _ _ 18 freeing _ VERB VBG _ 16 acl _ _ 19 up _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 23 det _ _ 21 international _ ADJ JJ _ 23 amod _ _ 22 steel _ NOUN NN _ 23 compound _ _ 23 trade _ NOUN NN _ 18 dobj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 which _ PRON WDT _ 29 nsubjpass _ _ 26 has _ AUX VBZ _ 29 aux _ _ 27 been _ AUX VBN _ 29 auxpass _ _ 28 notoriously _ ADV RB _ 29 advmod _ _ 29 managed _ VERB VBN _ 23 acl:relcl _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 subsidized _ VERB JJ _ 29 conj _ _ 32 and _ CONJ CC _ 29 cc _ _ 33 protected _ VERB VBN _ 29 conj _ _ 34 by _ ADP IN _ 35 case _ _ 35 governments _ NOUN NNS _ 29 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 3 nsubj _ _ 3 termed _ VERB VBD _ 0 root _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 plan _ NOUN NN _ 11 dep _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 a _ DET DT _ 11 det _ _ 8 `` _ PUNCT `` _ 11 punct _ _ 9 trade _ NOUN NN _ 11 compound _ _ 10 liberalization _ NOUN NN _ 11 compound _ _ 11 program _ NOUN NN _ 3 xcomp _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 despite _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 fact _ NOUN NN _ 3 nmod _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 it _ PRON PRP _ 22 nsubj _ _ 19 is _ VERB VBZ _ 22 cop _ _ 20 merely _ ADV RB _ 22 advmod _ _ 21 an _ DET DT _ 22 det _ _ 22 extension _ NOUN NN _ 16 ccomp _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Mexico _ PROPN NNP _ 20 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 one _ NUM CD _ 1 acl:relcl _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 first _ ADJ JJ _ 9 amod _ _ 9 countries _ NOUN NNS _ 5 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 conclude _ VERB VB _ 9 acl _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 steel _ NOUN NN _ 14 compound _ _ 14 talks _ NOUN NNS _ 11 dobj _ _ 15 with _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 1 punct _ _ 19 virtually _ ADV RB _ 20 advmod _ _ 20 doubled _ VERB VBD _ 0 root _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 quota _ NOUN NN _ 20 dobj _ _ 23 to _ ADP TO _ 25 case _ _ 24 0.95 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 20 nmod _ _ 26 of _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 U.S. _ PROPN NNP _ 30 compound _ _ 29 steel _ NOUN NN _ 30 compound _ _ 30 market _ NOUN NN _ 25 nmod _ _ 31 from _ ADP IN _ 33 case _ _ 32 0.48 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 20 nmod _ _ 34 under _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 previous _ ADJ JJ _ 37 amod _ _ 37 quotas _ NOUN NNS _ 33 nmod _ _ 38 . _ PUNCT . _ 20 punct _ _ 1 South _ PROPN NNP _ 2 compound _ _ 2 Korea _ PROPN NNP _ 14 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 had _ VERB VBD _ 2 acl:relcl _ _ 6 1.9 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 under _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 previous _ ADJ JJ _ 11 amod _ _ 11 quotas _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 set _ VERB VBN _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 19 det _ _ 18 small _ ADJ JJ _ 19 amod _ _ 19 increase _ NOUN NN _ 16 dobj _ _ 20 to _ ADP TO _ 23 case _ _ 21 about _ ADV IN _ 22 advmod _ _ 22 1.95 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 19 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 increase _ NOUN NN _ 3 nsubj _ _ 3 rises _ VERB VBZ _ 0 root _ _ 4 to _ ADP TO _ 9 case _ _ 5 slightly _ ADV RB _ 8 advmod _ _ 6 more _ ADJ JJR _ 8 advmod _ _ 7 than _ ADP IN _ 6 mwe _ _ 8 2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 3 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 9 nmod _ _ 14 if _ SCONJ IN _ 21 mark _ _ 15 a _ DET DT _ 19 det _ _ 16 joint _ ADJ JJ _ 19 amod _ _ 17 Korean-U.S. _ PROPN NN _ 19 compound _ _ 18 steel _ NOUN NN _ 19 compound _ _ 19 project _ NOUN NN _ 21 nsubjpass _ _ 20 is _ AUX VBZ _ 21 auxpass _ _ 21 included _ VERB VBN _ 3 advcl _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Brazil _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 increase _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 allowance _ NOUN NN _ 7 dobj _ _ 10 from _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 1.43 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 share _ NOUN NN _ 7 nmod _ _ 15 it _ PRON PRP _ 17 nsubj _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 had _ VERB VBN _ 14 acl:relcl _ _ 18 in _ ADP IN _ 20 case _ _ 19 recent _ ADJ JJ _ 20 amod _ _ 20 years _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 EC _ PROPN NNP _ 16 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Japan _ PROPN NNP _ 2 conj _ _ 5 -- _ PUNCT : _ 2 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 U.S. _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 largest _ ADJ JJS _ 11 amod _ _ 10 steel _ NOUN NN _ 11 compound _ _ 11 suppliers _ NOUN NNS _ 2 dep _ _ 12 -- _ PUNCT : _ 2 punct _ _ 13 have _ AUX VBP _ 16 aux _ _ 14 n't _ PART RB _ 16 neg _ _ 15 been _ AUX VBN _ 16 aux _ _ 16 filling _ VERB VBG _ 0 root _ _ 17 their _ PRON PRP$ _ 18 nmod:poss _ _ 18 quotas _ NOUN NNS _ 16 dobj _ _ 19 to _ ADP TO _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 full _ ADJ JJ _ 22 amod _ _ 22 extent _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 EC _ PROPN NNP _ 4 compound _ _ 3 steel _ NOUN NN _ 4 compound _ _ 4 industry _ NOUN NN _ 17 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 9 nsubj _ _ 7 has _ AUX VBZ _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 coping _ VERB VBG _ 4 acl:relcl _ _ 10 with _ ADP IN _ 13 case _ _ 11 strong _ ADJ JJ _ 13 amod _ _ 12 European _ ADJ JJ _ 13 amod _ _ 13 demand _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 has _ AUX VBZ _ 17 aux _ _ 16 been _ AUX VBN _ 17 aux _ _ 17 supplying _ VERB VBG _ 0 root _ _ 18 about _ ADV IN _ 19 advmod _ _ 19 5 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 17 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 U.S. _ PROPN NNP _ 24 compound _ _ 24 market _ NOUN NN _ 20 nmod _ _ 25 compared _ VERB VBN _ 28 case _ _ 26 with _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 quotas _ NOUN NNS _ 20 nmod _ _ 29 of _ ADP IN _ 32 case _ _ 30 about _ ADV IN _ 31 advmod _ _ 31 6.7 _ NUM CD _ 32 nummod _ _ 32 % _ SYM NN _ 28 nmod _ _ 33 . _ PUNCT . _ 17 punct _ _ 1 Japan _ PROPN NNP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ AUX VBN _ 4 aux _ _ 4 shipping _ VERB VBG _ 0 root _ _ 5 steel _ NOUN NN _ 4 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 total _ VERB VB _ 5 acl _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 4.5 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 U.S. _ PROPN NNP _ 14 compound _ _ 14 market _ NOUN NN _ 10 nmod _ _ 15 compared _ VERB VBN _ 18 case _ _ 16 with _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 quota _ NOUN NN _ 10 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 5.9 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 recent _ ADJ JJ _ 4 amod _ _ 4 talks _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 EC _ PROPN NNP _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 quota _ NOUN NN _ 11 nsubj _ _ 11 increased _ VERB VBD _ 8 ccomp _ _ 12 about _ ADV IN _ 14 advmod _ _ 13 300,000 _ NUM CD _ 14 nummod _ _ 14 tons _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 to _ ADP TO _ 18 case _ _ 17 7 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 11 nmod _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 U.S. _ PROPN NNP _ 22 compound _ _ 22 market _ NOUN NN _ 18 nmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 6.7 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 11 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1988 _ NUM CD _ 25 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 quota _ NOUN NN _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 been _ VERB VBN _ 7 cop _ _ 6 as _ ADV RB _ 7 advmod _ _ 7 high _ ADJ JJ _ 0 root _ _ 8 as _ ADP IN _ 10 case _ _ 9 6.9 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 1984 _ NUM CD _ 10 nmod _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 Japan _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 however _ ADV RB _ 6 advmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 agreed _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 cut _ VERB VB _ 6 xcomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 quota _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 14 case _ _ 12 about _ ADV IN _ 13 advmod _ _ 13 5 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 8 nmod _ _ 15 from _ ADP IN _ 17 case _ _ 16 5.9 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 8 nmod _ _ 18 previously _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Japan _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 EC _ PROPN NNP _ 1 conj _ _ 5 , _ PUNCT , _ 1 punct _ _ 6 Brazil _ PROPN NNP _ 1 conj _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 Mexico _ PROPN NNP _ 1 conj _ _ 9 and _ CONJ CC _ 1 cc _ _ 10 South _ PROPN NNP _ 11 compound _ _ 11 Korea _ PROPN NNP _ 1 conj _ _ 12 provide _ VERB VB _ 0 root _ _ 13 about _ ADV IN _ 14 advmod _ _ 14 80 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 12 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 steel _ NOUN NN _ 15 nmod _ _ 19 imported _ VERB VBN _ 18 acl _ _ 20 to _ ADP TO _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 U.S. _ PROPN NNP _ 19 nmod _ _ 23 under _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 quota _ NOUN NN _ 26 compound _ _ 26 program _ NOUN NN _ 19 nmod _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 balance _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 supplied _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 host _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 smaller _ ADJ JJR _ 10 amod _ _ 10 exporters _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 such _ ADJ JJ _ 14 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 Australia _ PROPN NNP _ 10 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Venezuela _ PROPN NNP _ 14 conj _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 about _ ADV IN _ 7 advmod _ _ 5 an _ DET DT _ 7 advmod _ _ 6 extra _ ADJ JJ _ 7 advmod _ _ 7 2 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 3 dobj _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 domestic _ ADJ JJ _ 13 amod _ _ 12 steel _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 8 nmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 give _ VERB VB _ 8 acl _ _ 16 to _ ADP TO _ 18 case _ _ 17 foreign _ ADJ JJ _ 18 amod _ _ 18 suppliers _ NOUN NNS _ 15 nmod _ _ 19 in _ ADP IN _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 quota _ NOUN NN _ 22 compound _ _ 22 talks _ NOUN NNS _ 15 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 4 nsubjpass _ _ 2 was _ AUX VBD _ 4 auxpass _ _ 3 essentially _ ADV RB _ 4 advmod _ _ 4 made _ VERB VBN _ 0 root _ _ 5 up _ ADP IN _ 4 compound:prt _ _ 6 of _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 1 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 increase _ NOUN NN _ 4 nmod _ _ 11 in _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 overall _ ADJ JJ _ 15 amod _ _ 14 quota _ NOUN NN _ 15 compound _ _ 15 program _ NOUN NN _ 10 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 1 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 10 conj _ _ 19 from _ SCONJ IN _ 20 mark _ _ 20 cutting _ VERB VBG _ 18 acl _ _ 21 Japan _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 allowance _ NOUN NN _ 20 dobj _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Negotiators _ NOUN NNS _ 9 nsubj _ _ 2 from _ ADP IN _ 7 case _ _ 3 the _ DET DT _ 7 det _ _ 4 White _ PROPN NNP _ 7 compound _ _ 5 House _ PROPN NNP _ 7 compound _ _ 6 trade _ NOUN NN _ 7 compound _ _ 7 office _ NOUN NN _ 1 nmod _ _ 8 will _ AUX MD _ 9 aux _ _ 9 repeat _ VERB VB _ 0 root _ _ 10 these _ DET DT _ 12 det _ _ 11 quota _ NOUN NN _ 12 compound _ _ 12 negotiations _ NOUN NNS _ 9 dobj _ _ 13 next _ ADP JJ _ 14 amod _ _ 14 year _ NOUN NN _ 9 nmod:tmod _ _ 15 when _ ADV WRB _ 18 advmod _ _ 16 they _ PRON PRP _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 have _ VERB VB _ 14 acl:relcl _ _ 19 another _ DET DT _ 21 det _ _ 20 1 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 dobj _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 U.S. _ PROPN NNP _ 26 compound _ _ 25 steel _ NOUN NN _ 26 compound _ _ 26 market _ NOUN NN _ 21 nmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 allocate _ VERB VB _ 21 acl _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 These _ DET DT _ 4 det _ _ 2 optional _ ADJ JJ _ 4 amod _ _ 3 1%-a-year _ ADJ JJ _ 4 amod _ _ 4 increases _ NOUN NNS _ 11 nsubjpass _ _ 5 to _ ADP TO _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 steel _ NOUN NN _ 9 compound _ _ 8 quota _ NOUN NN _ 9 compound _ _ 9 program _ NOUN NN _ 4 nmod _ _ 10 are _ AUX VBP _ 11 auxpass _ _ 11 built _ VERB VBN _ 0 root _ _ 12 into _ ADP IN _ 18 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Bush _ PROPN NNP _ 15 compound _ _ 15 administration _ NOUN NN _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 steel-quota _ NOUN NN _ 18 compound _ _ 18 program _ NOUN NN _ 11 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 give _ VERB VB _ 11 xcomp _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 negotiators _ NOUN NNS _ 20 dep _ _ 23 leverage _ NOUN NN _ 20 dobj _ _ 24 with _ ADP IN _ 27 case _ _ 25 foreign _ ADJ JJ _ 27 amod _ _ 26 steel _ NOUN NN _ 27 compound _ _ 27 suppliers _ NOUN NNS _ 23 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 try _ VERB VB _ 23 acl _ _ 30 to _ PART TO _ 31 mark _ _ 31 get _ VERB VB _ 29 xcomp _ _ 32 them _ PRON PRP _ 31 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 withdraw _ VERB VB _ 31 xcomp _ _ 35 subsidies _ NOUN NNS _ 34 dobj _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 protectionism _ NOUN NN _ 35 conj _ _ 38 from _ ADP IN _ 42 case _ _ 39 their _ PRON PRP$ _ 42 nmod:poss _ _ 40 own _ ADJ JJ _ 42 amod _ _ 41 steel _ NOUN NN _ 42 compound _ _ 42 industries _ NOUN NNS _ 34 nmod _ _ 43 . _ PUNCT . _ 11 punct _ _ 1 Elcotel _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 fiscal _ ADJ JJ _ 6 amod _ _ 5 second-quarter _ ADJ JJ _ 6 amod _ _ 6 earnings _ NOUN NNS _ 3 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 trail _ VERB VB _ 3 xcomp _ _ 9 1988 _ NUM CD _ 10 nummod _ _ 10 results _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 but _ CONJ CC _ 3 cc _ _ 13 anticipates _ VERB VBZ _ 3 conj _ _ 14 that _ SCONJ IN _ 19 mark _ _ 15 several _ ADJ JJ _ 17 amod _ _ 16 new _ ADJ JJ _ 17 amod _ _ 17 products _ NOUN NNS _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 lead _ VERB VB _ 13 ccomp _ _ 20 to _ ADP TO _ 26 case _ _ 21 a _ DET DT _ 26 det _ _ 22 `` _ PUNCT `` _ 26 punct _ _ 23 much _ ADV JJ _ 24 advmod _ _ 24 stronger _ ADJ JJR _ 26 amod _ _ 25 '' _ PUNCT '' _ 26 punct _ _ 26 performance _ NOUN NN _ 19 nmod _ _ 27 in _ ADP IN _ 30 case _ _ 28 its _ PRON PRP$ _ 30 nmod:poss _ _ 29 second _ ADJ JJ _ 30 amod _ _ 30 half _ NOUN NN _ 26 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 Elcotel _ PROPN NNP _ 7 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 telecommunications _ NOUN NN _ 5 compound _ _ 5 company _ NOUN NN _ 1 appos _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 had _ VERB VBD _ 0 root _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 272,000 _ NUM CD _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 five _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 12 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 in _ ADP IN _ 24 case _ _ 21 its _ PRON PRP$ _ 24 nmod:poss _ _ 22 year-earlier _ ADJ JJ _ 24 amod _ _ 23 second _ NOUN JJ _ 24 compound _ _ 24 quarter _ NOUN NN _ 7 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 ended _ VERB VBN _ 24 acl _ _ 27 Sept. _ PROPN NNP _ 26 nmod:tmod _ _ 28 30 _ NUM CD _ 27 nummod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 totaled _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 5 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 George _ PROPN NNP _ 2 compound _ _ 2 Pierce _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 chairman _ NOUN NN _ 2 appos _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ JJ _ 8 amod _ _ 8 officer _ NOUN NN _ 4 conj _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 in _ ADP IN _ 13 case _ _ 12 an _ DET DT _ 13 det _ _ 13 interview _ NOUN NN _ 10 nmod _ _ 14 that _ SCONJ IN _ 25 mark _ _ 15 earnings _ NOUN NNS _ 25 nsubj _ _ 16 in _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 most _ ADV RBS _ 19 advmod _ _ 19 recent _ ADJ JJ _ 20 amod _ _ 20 quarter _ NOUN NN _ 15 nmod _ _ 21 will _ AUX MD _ 25 aux _ _ 22 be _ VERB VB _ 25 cop _ _ 23 about _ ADV IN _ 24 advmod _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 cents _ NOUN NNS _ 10 ccomp _ _ 26 a _ DET DT _ 27 det _ _ 27 share _ NOUN NN _ 25 nmod:npmod _ _ 28 on _ ADP IN _ 29 case _ _ 29 revenue _ NOUN NN _ 25 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 just _ ADV RB _ 33 advmod _ _ 32 under _ ADP IN _ 33 advmod _ _ 33 $ _ SYM $ _ 29 nmod _ _ 34 4 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 lower _ ADJ JJR _ 3 amod _ _ 3 results _ NOUN NNS _ 9 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Pierce _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 reflect _ VERB VBP _ 0 root _ _ 10 a _ DET DT _ 12 det _ _ 11 12-month _ ADJ JJ _ 12 amod _ _ 12 decline _ NOUN NN _ 9 dobj _ _ 13 in _ ADP IN _ 15 case _ _ 14 industry _ NOUN NN _ 15 compound _ _ 15 sales _ NOUN NNS _ 12 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 privately _ ADV RB _ 18 advmod _ _ 18 owned _ VERB VBN _ 20 amod _ _ 19 pay _ NOUN NN _ 20 compound _ _ 20 telephones _ NOUN NNS _ 15 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Elcotel _ PROPN NNP _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 primary _ ADJ JJ _ 25 amod _ _ 25 business _ NOUN NN _ 20 appos _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 Although _ SCONJ IN _ 4 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Pierce _ PROPN NNP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 17 advcl _ _ 5 that _ ADP IN _ 6 amod _ _ 6 line _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 business _ NOUN NN _ 6 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 strengthen _ VERB VB _ 4 xcomp _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 next _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Elcotel _ PROPN NNP _ 21 nsubj _ _ 19 will _ AUX MD _ 21 aux _ _ 20 also _ ADV RB _ 21 advmod _ _ 21 benefit _ VERB VB _ 17 ccomp _ _ 22 from _ SCONJ IN _ 23 mark _ _ 23 moving _ VERB VBG _ 21 advcl _ _ 24 into _ ADP IN _ 26 case _ _ 25 other _ ADJ JJ _ 26 amod _ _ 26 areas _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 17 punct _ _ 1 Foremost _ ADV JJ _ 4 dep _ _ 2 among _ ADP IN _ 3 case _ _ 3 those _ PRON DT _ 4 nmod _ _ 4 is _ VERB VBZ _ 17 dep _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 entrance _ NOUN NN _ 4 nsubj _ _ 9 into _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 public _ ADJ JJ _ 13 amod _ _ 12 facsimile _ NOUN JJ _ 13 compound _ _ 13 business _ NOUN NN _ 8 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Pierce _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Within _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 next _ ADJ JJ _ 4 amod _ _ 4 year _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Elcotel _ PROPN NNP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 place _ VERB VB _ 7 xcomp _ _ 10 10,000 _ NUM CD _ 12 nummod _ _ 11 fax _ NOUN NN _ 12 compound _ _ 12 machines _ NOUN NNS _ 9 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 made _ VERB VBN _ 12 acl _ _ 15 by _ ADP IN _ 16 case _ _ 16 Minolta _ PROPN NNP _ 14 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Japan _ PROPN NNP _ 14 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 in _ ADP IN _ 21 case _ _ 21 hotels _ NOUN NNS _ 9 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 municipal _ ADJ JJ _ 24 amod _ _ 24 buildings _ NOUN NNS _ 21 conj _ _ 25 , _ PUNCT , _ 21 punct _ _ 26 drugstores _ NOUN NNS _ 21 conj _ _ 27 and _ CONJ CC _ 21 cc _ _ 28 other _ ADJ JJ _ 30 amod _ _ 29 public _ ADJ JJ _ 30 amod _ _ 30 settings _ NOUN NNS _ 21 conj _ _ 31 around _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 country _ NOUN NN _ 30 nmod _ _ 34 . _ PUNCT . _ 7 punct _ _ 1 Elcotel _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 provide _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 credit-card _ NOUN NN _ 6 compound _ _ 6 reader _ NOUN NN _ 3 dobj _ _ 7 for _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 machines _ NOUN NNS _ 11 nsubj _ _ 10 to _ PART TO _ 11 mark _ _ 11 collect _ VERB VB _ 6 acl _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 store _ VERB NN _ 11 conj _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 forward _ VERB RB _ 11 conj _ _ 16 billing _ NOUN NN _ 17 compound _ _ 17 data _ NOUN NNS _ 11 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Pierce _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Elcotel _ PROPN NNP _ 6 nsubj _ _ 5 should _ AUX MD _ 6 aux _ _ 6 realize _ VERB VB _ 3 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 minimum _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 10 _ NUM CD _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 recurring _ VERB VBG _ 15 amod _ _ 14 net _ ADJ JJ _ 15 amod _ _ 15 earnings _ NOUN NNS _ 11 nmod _ _ 16 for _ ADP IN _ 18 case _ _ 17 each _ DET DT _ 18 det _ _ 18 machine _ NOUN NN _ 6 nmod _ _ 19 each _ DET DT _ 20 det _ _ 20 month _ NOUN NN _ 6 nmod:tmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Elcotel _ PROPN NNP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 developed _ VERB VBN _ 0 root _ _ 5 an _ DET DT _ 8 det _ _ 6 automatic _ ADJ JJ _ 8 amod _ _ 7 call _ NOUN NN _ 8 compound _ _ 8 processor _ NOUN NN _ 4 dobj _ _ 9 that _ PRON WDT _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 make _ VERB VB _ 8 acl:relcl _ _ 12 further _ ADJ JJ _ 13 amod _ _ 13 use _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 system _ NOUN NN _ 11 nmod _ _ 19 for _ SCONJ IN _ 20 mark _ _ 20 automating _ VERB VBG _ 18 acl _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 handling _ VERB VBG _ 20 conj _ _ 23 credit-card _ NOUN NN _ 24 compound _ _ 24 calls _ NOUN NNS _ 20 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 collect _ ADJ VB _ 27 amod _ _ 27 calls _ NOUN NNS _ 24 conj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Automatic _ ADJ NNP _ 3 amod _ _ 2 call _ NOUN VB _ 3 compound _ _ 3 processors _ NOUN NNS _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 provide _ VERB VB _ 0 root _ _ 6 that _ DET IN _ 7 det _ _ 7 system _ NOUN NN _ 5 dobj _ _ 8 for _ ADP IN _ 11 case _ _ 9 virtually _ ADV RB _ 10 advmod _ _ 10 any _ DET DT _ 11 amod _ _ 11 telephone _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Pierce _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 11 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 not _ ADV RB _ 18 neg _ _ 18 just _ ADV RB _ 11 dep _ _ 19 phones _ VERB NNS _ 18 dep _ _ 20 produced _ VERB VBN _ 18 acl _ _ 21 by _ ADP IN _ 22 case _ _ 22 Elcotel _ PROPN NNP _ 20 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 6 nsubj _ _ 3 will _ AUX MD _ 6 aux _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 be _ AUX VB _ 6 aux _ _ 6 producing _ VERB VBG _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 line _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 convenience _ NOUN NN _ 12 compound _ _ 12 telephones _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 17 nsubj _ _ 15 do _ AUX VBP _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 accept _ VERB VB _ 12 acl:relcl _ _ 18 coins _ NOUN NNS _ 17 dobj _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 for _ ADP IN _ 21 case _ _ 21 use _ NOUN NN _ 9 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 hotel _ NOUN NN _ 24 compound _ _ 24 lobbies _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 office _ NOUN NN _ 27 compound _ _ 27 lobbies _ NOUN NNS _ 24 conj _ _ 28 , _ PUNCT , _ 24 punct _ _ 29 hospitality _ NOUN NN _ 30 compound _ _ 30 lounges _ NOUN NNS _ 24 conj _ _ 31 and _ CONJ CC _ 24 cc _ _ 32 similar _ ADJ JJ _ 33 amod _ _ 33 settings _ NOUN NNS _ 24 conj _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Pierce _ PROPN NNP _ 3 nsubj _ _ 3 estimated _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 11 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 processors _ NOUN NNS _ 11 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 convenience _ NOUN NN _ 9 compound _ _ 9 phones _ NOUN NNS _ 6 conj _ _ 10 would _ AUX MD _ 11 aux _ _ 11 produce _ VERB VB _ 3 ccomp _ _ 12 about _ ADV IN _ 13 advmod _ _ 13 $ _ SYM $ _ 11 dobj _ _ 14 5 _ NUM CD _ 13 nummod _ _ 15 of _ ADP IN _ 18 case _ _ 16 recurring _ VERB VBG _ 18 amod _ _ 17 net _ ADJ JJ _ 18 amod _ _ 18 earnings _ NOUN NNS _ 13 nmod _ _ 19 for _ ADP IN _ 21 case _ _ 20 each _ DET DT _ 21 det _ _ 21 machine _ NOUN NN _ 11 nmod _ _ 22 each _ DET DT _ 23 det _ _ 23 month _ NOUN NN _ 11 nmod:tmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Britain _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 retail _ ADJ JJ _ 5 amod _ _ 4 price _ NOUN NN _ 5 compound _ _ 5 index _ NOUN NN _ 6 nsubj _ _ 6 rose _ VERB VBD _ 26 ccomp _ _ 7 0.7 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 September _ PROPN NNP _ 6 nmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 August _ PROPN NNP _ 6 nmod _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 was _ VERB VBD _ 20 cop _ _ 15 up _ ADV RB _ 20 advmod _ _ 16 7.6 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 15 nmod:npmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 6 conj _ _ 21 , _ PUNCT , _ 26 punct _ _ 22 the _ DET DT _ 25 det _ _ 23 Central _ PROPN NNP _ 25 compound _ _ 24 Statistical _ PROPN NNP _ 25 compound _ _ 25 Office _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Quest _ PROPN NNP _ 3 compound _ _ 2 Medical _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 adopted _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 shareholders _ NOUN NNS _ 11 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 rights _ NOUN NNS _ 11 compound _ _ 11 plan _ NOUN NN _ 6 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 which _ PRON WDT _ 23 nmod _ _ 14 rights _ NOUN NNS _ 23 nsubjpass _ _ 15 to _ PART TO _ 16 mark _ _ 16 purchase _ VERB VB _ 14 acl _ _ 17 shares _ NOUN NNS _ 16 dobj _ _ 18 of _ ADP IN _ 20 case _ _ 19 common _ ADJ JJ _ 20 amod _ _ 20 stock _ NOUN NN _ 17 nmod _ _ 21 will _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 distributed _ VERB VBN _ 11 acl:relcl _ _ 24 as _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 dividend _ NOUN NN _ 23 nmod _ _ 27 to _ ADP TO _ 28 case _ _ 28 shareholders _ NOUN NNS _ 23 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 record _ NOUN NN _ 28 nmod _ _ 31 as _ ADP IN _ 33 case _ _ 32 of _ ADP IN _ 33 case _ _ 33 Oct. _ PROPN NNP _ 28 nmod _ _ 34 23 _ NUM CD _ 33 nummod _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 plan _ NOUN NN _ 8 nsubjpass _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 n't _ PART RB _ 8 neg _ _ 8 adopted _ VERB VBN _ 3 ccomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 response _ NOUN NN _ 8 nmod _ _ 11 to _ ADP TO _ 14 case _ _ 12 any _ DET DT _ 14 det _ _ 13 known _ VERB JJ _ 14 amod _ _ 14 offers _ NOUN NNS _ 10 nmod _ _ 15 for _ ADP IN _ 16 case _ _ 16 Quest _ PROPN NNP _ 14 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 a _ DET DT _ 19 det _ _ 19 maker _ NOUN NN _ 16 appos _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 marketer _ NOUN NN _ 19 conj _ _ 22 of _ ADP IN _ 24 case _ _ 23 hospital _ NOUN NN _ 24 compound _ _ 24 products _ NOUN NNS _ 19 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rights _ NOUN NNS _ 3 nsubj _ _ 3 allow _ VERB VBP _ 0 root _ _ 4 shareholders _ NOUN NNS _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 purchase _ VERB VB _ 3 xcomp _ _ 7 Quest _ PROPN NNP _ 8 compound _ _ 8 stock _ NOUN NN _ 6 dobj _ _ 9 at _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 discount _ NOUN NN _ 6 nmod _ _ 12 if _ SCONJ IN _ 17 mark _ _ 13 any _ DET DT _ 14 det _ _ 14 person _ NOUN NN _ 17 nsubj _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 group _ NOUN NN _ 14 conj _ _ 17 acquires _ VERB VBZ _ 6 advcl _ _ 18 more _ ADJ JJR _ 20 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 15 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 17 dobj _ _ 22 of _ ADP IN _ 27 case _ _ 23 the _ DET DT _ 24 det _ _ 24 company _ NOUN NN _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 common _ ADJ JJ _ 27 amod _ _ 27 stock _ NOUN NN _ 21 nmod _ _ 28 or _ CONJ CC _ 17 cc _ _ 29 announces _ VERB VBZ _ 17 conj _ _ 30 a _ DET DT _ 32 det _ _ 31 tender _ NOUN NN _ 32 compound _ _ 32 offer _ NOUN NN _ 29 dobj _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Measuring _ NOUN VBG _ 2 compound _ _ 2 cups _ NOUN NNS _ 6 nsubjpass _ _ 3 may _ AUX MD _ 6 aux _ _ 4 soon _ ADV RB _ 6 advmod _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 replaced _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 8 case _ _ 8 tablespoons _ NOUN NNS _ 6 nmod _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 laundry _ NOUN NN _ 12 compound _ _ 12 room _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 Procter _ PROPN NNP _ 4 compound _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Gamble _ PROPN NNP _ 1 conj _ _ 4 Co. _ PROPN NNP _ 5 nsubj _ _ 5 plans _ VERB VBZ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 begin _ VERB VB _ 5 xcomp _ _ 8 testing _ VERB VBG _ 7 xcomp _ _ 9 next _ ADJ JJ _ 10 amod _ _ 10 month _ NOUN NN _ 8 nmod:tmod _ _ 11 a _ DET DT _ 13 det _ _ 12 superconcentrated _ ADJ JJ _ 13 amod _ _ 13 detergent _ NOUN NN _ 8 dobj _ _ 14 that _ PRON WDT _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 require _ VERB VB _ 13 acl:relcl _ _ 17 only _ ADV RB _ 19 advmod _ _ 18 a _ DET DT _ 19 advmod _ _ 19 few _ ADJ JJ _ 20 nummod _ _ 20 spoonfuls _ NOUN NNS _ 16 dobj _ _ 21 per _ ADP IN _ 22 case _ _ 22 washload _ NOUN NN _ 20 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 3 nsubj _ _ 3 stems _ VERB VBZ _ 0 root _ _ 4 from _ ADP IN _ 5 case _ _ 5 lessons _ NOUN NNS _ 3 nmod _ _ 6 learned _ VERB VBN _ 5 acl _ _ 7 in _ ADP IN _ 8 case _ _ 8 Japan _ PROPN NNP _ 6 nmod _ _ 9 where _ ADV WRB _ 13 advmod _ _ 10 local _ ADJ JJ _ 11 amod _ _ 11 competitors _ NOUN NNS _ 13 nsubj _ _ 12 have _ AUX VBP _ 13 aux _ _ 13 had _ VERB VBN _ 8 acl:relcl _ _ 14 phenomenal _ ADJ JJ _ 15 amod _ _ 15 success _ NOUN NN _ 13 dobj _ _ 16 with _ ADP IN _ 18 case _ _ 17 concentrated _ ADJ JJ _ 18 amod _ _ 18 soapsuds _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 marks _ VERB VBZ _ 0 root _ _ 4 P&G _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 growing _ VERB VBG _ 7 amod _ _ 7 concern _ NOUN NN _ 3 dobj _ _ 8 that _ SCONJ IN _ 19 mark _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 Japanese _ ADJ JJ _ 11 amod _ _ 11 rivals _ NOUN NNS _ 19 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 such _ ADJ JJ _ 16 case _ _ 14 as _ ADP IN _ 13 mwe _ _ 15 Kao _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 11 nmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 may _ AUX MD _ 19 aux _ _ 19 bring _ VERB VB _ 7 ccomp _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 superconcentrates _ NOUN NNS _ 19 dobj _ _ 22 to _ ADP TO _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 U.S. _ PROPN NNP _ 19 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Cincinnati _ PROPN NNP _ 4 compound _ _ 3 consumer-products _ NOUN NNS _ 4 compound _ _ 4 giant _ NOUN JJ _ 6 nsubjpass _ _ 5 got _ AUX VBD _ 6 auxpass _ _ 6 clobbered _ VERB VBN _ 0 root _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 years _ NOUN NNS _ 9 nmod:npmod _ _ 9 ago _ ADV RB _ 6 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Japan _ PROPN NNP _ 6 nmod _ _ 12 when _ ADV WRB _ 14 advmod _ _ 13 Kao _ PROPN NNP _ 14 nsubj _ _ 14 introduced _ VERB VBD _ 6 advcl _ _ 15 a _ DET DT _ 17 det _ _ 16 powerful _ ADJ JJ _ 17 amod _ _ 17 detergent _ NOUN NN _ 14 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 called _ VERB VBN _ 17 acl _ _ 20 Attack _ PROPN NNP _ 19 xcomp _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 which _ PRON WDT _ 24 nsubj _ _ 23 quickly _ ADV RB _ 24 advmod _ _ 24 won _ VERB VBD _ 17 acl:relcl _ _ 25 a _ DET DT _ 28 det _ _ 26 30 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 28 amod _ _ 28 stake _ NOUN NN _ 24 dobj _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 Japanese _ ADJ JJ _ 32 amod _ _ 32 markets _ NOUN NNS _ 28 nmod _ _ 33 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 want _ VERB VB _ 12 ccomp _ _ 6 to _ PART TO _ 8 mark _ _ 7 get _ AUX VB _ 8 auxpass _ _ 8 caught _ VERB VBN _ 5 xcomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 one _ NUM CD _ 15 nummod _ _ 14 industry _ NOUN NN _ 15 compound _ _ 15 watcher _ NOUN NN _ 12 nsubj _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 Retailers _ PROPN NNS _ 7 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 Phoenix _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Ariz. _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 say _ VERB VBP _ 0 root _ _ 8 P&G _ PROPN NNP _ 12 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 new _ ADJ JJ _ 12 amod _ _ 11 powdered _ ADJ JJ _ 12 amod _ _ 12 detergent _ NOUN NN _ 25 nsubj _ _ 13 -- _ PUNCT : _ 12 punct _ _ 14 to _ PART TO _ 16 mark _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 called _ VERB VBN _ 12 acl _ _ 17 Cheer _ PROPN VB _ 16 xcomp _ _ 18 with _ ADP IN _ 20 case _ _ 19 Color _ PROPN NNP _ 20 compound _ _ 20 Guard _ PROPN NNP _ 17 nmod _ _ 21 -- _ PUNCT : _ 12 punct _ _ 22 will _ AUX MD _ 25 aux _ _ 23 be _ VERB VB _ 25 cop _ _ 24 on _ ADP IN _ 25 case _ _ 25 shelves _ NOUN NNS _ 7 ccomp _ _ 26 in _ ADP IN _ 28 case _ _ 27 that _ DET DT _ 28 det _ _ 28 market _ NOUN NN _ 25 nmod _ _ 29 by _ ADP IN _ 31 case _ _ 30 early _ ADJ JJ _ 31 amod _ _ 31 November _ PROPN NNP _ 25 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 P&G _ PROPN NNP _ 3 compound _ _ 3 spokeswoman _ NOUN NN _ 4 nsubj _ _ 4 confirmed _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 shipments _ NOUN NNS _ 9 nsubj _ _ 7 to _ ADP TO _ 8 case _ _ 8 Phoenix _ PROPN NNP _ 6 nmod _ _ 9 started _ VERB VBD _ 4 ccomp _ _ 10 late _ ADV RB _ 12 advmod _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 month _ NOUN NN _ 9 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 study _ VERB VB _ 2 ccomp _ _ 7 results _ NOUN NNS _ 6 dobj _ _ 8 from _ ADP IN _ 10 case _ _ 9 this _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 7 nmod _ _ 11 before _ SCONJ IN _ 12 mark _ _ 12 expanding _ VERB VBG _ 6 advcl _ _ 13 to _ ADP TO _ 14 case _ _ 14 others _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Superconcentrates _ NOUN NNS _ 5 nsubj _ _ 2 are _ VERB VBP _ 5 cop _ _ 3 n't _ PART RB _ 5 neg _ _ 4 entirely _ ADV RB _ 5 advmod _ _ 5 new _ ADJ JJ _ 0 root _ _ 6 for _ ADP IN _ 7 case _ _ 7 P&G _ PROPN NNP _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 introduced _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 superconcentrated _ ADJ JJ _ 7 amod _ _ 6 Lemon _ PROPN NNP _ 7 compound _ _ 7 Cheer _ PROPN NNP _ 3 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Japan _ PROPN NNP _ 3 nmod _ _ 10 after _ SCONJ IN _ 11 mark _ _ 11 watching _ VERB VBG _ 3 advcl _ _ 12 the _ DET DT _ 13 det _ _ 13 success _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 Attack _ PROPN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 Attack _ PROPN NNP _ 3 nsubj _ _ 3 hit _ VERB VBD _ 16 advcl _ _ 4 the _ DET DT _ 5 det _ _ 5 shelves _ NOUN NNS _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 1987 _ NUM CD _ 3 nmod _ _ 8 , _ PUNCT , _ 16 punct _ _ 9 P&G _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 share _ NOUN NN _ 16 nsubj _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Japanese _ ADJ JJ _ 15 amod _ _ 15 market _ NOUN NN _ 11 nmod _ _ 16 fell _ VERB VBD _ 0 root _ _ 17 to _ ADP TO _ 20 case _ _ 18 about _ ADV IN _ 19 advmod _ _ 19 8 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 16 nmod _ _ 21 from _ ADP IN _ 25 case _ _ 22 more _ ADJ JJR _ 24 advmod _ _ 23 than _ ADP IN _ 22 mwe _ _ 24 20 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 16 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 With _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 help _ NOUN NN _ 13 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 Lemon _ PROPN NNP _ 6 compound _ _ 6 Cheer _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 P&G _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 share _ NOUN NN _ 13 nsubjpass _ _ 11 is _ AUX VBZ _ 13 auxpass _ _ 12 now _ ADV RB _ 13 advmod _ _ 13 estimated _ VERB VBN _ 0 root _ _ 14 to _ PART TO _ 17 mark _ _ 15 be _ VERB VB _ 17 cop _ _ 16 12 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 13 xcomp _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 Japanese _ PROPN NNPS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 embraced _ VERB VBN _ 29 advcl _ _ 6 the _ DET DT _ 8 det _ _ 7 compact _ ADJ JJ _ 8 amod _ _ 8 packaging _ NOUN NN _ 5 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 convenience _ NOUN NN _ 8 conj _ _ 11 of _ ADP IN _ 13 case _ _ 12 concentrated _ ADJ JJ _ 13 amod _ _ 13 products _ NOUN NNS _ 8 nmod _ _ 14 , _ PUNCT , _ 29 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 true _ ADJ JJ _ 17 amod _ _ 17 test _ NOUN NN _ 29 nsubj _ _ 18 for _ ADP IN _ 19 case _ _ 19 P&G _ PROPN NNP _ 17 nmod _ _ 20 will _ AUX MD _ 29 aux _ _ 21 be _ VERB VB _ 29 cop _ _ 22 in _ ADP IN _ 29 case _ _ 23 the _ DET DT _ 29 det _ _ 24 $ _ SYM $ _ 29 amod _ _ 25 4 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 U.S. _ PROPN NNP _ 29 compound _ _ 28 detergent _ NOUN NN _ 29 compound _ _ 29 market _ NOUN NN _ 0 root _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 where _ ADV WRB _ 34 advmod _ _ 32 growth _ NOUN NN _ 34 nsubj _ _ 33 is _ VERB VBZ _ 34 cop _ _ 34 slow _ ADJ JJ _ 29 acl:relcl _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 liquids _ NOUN NNS _ 38 nsubj _ _ 37 have _ AUX VBP _ 38 aux _ _ 38 gained _ VERB VBN _ 34 conj _ _ 39 prominence _ NOUN NN _ 38 dobj _ _ 40 over _ ADP IN _ 41 case _ _ 41 powders _ NOUN NNS _ 39 nmod _ _ 42 . _ PUNCT . _ 29 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nsubj _ _ 3 may _ AUX MD _ 5 aux _ _ 4 have _ AUX VB _ 5 aux _ _ 5 chosen _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 market _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 product _ NOUN NN _ 7 dobj _ _ 10 under _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Cheer _ PROPN NNP _ 13 compound _ _ 13 name _ NOUN NN _ 7 nmod _ _ 14 since _ SCONJ IN _ 18 mark _ _ 15 it _ PRON PRP _ 18 nsubjpass _ _ 16 's _ AUX VBZ _ 18 auxpass _ _ 17 already _ ADV RB _ 18 advmod _ _ 18 expanded _ VERB VBN _ 5 advcl _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 best-selling _ ADJ JJ _ 21 amod _ _ 21 Tide _ PROPN NNP _ 18 dobj _ _ 22 into _ ADP IN _ 25 case _ _ 23 16 _ NUM CD _ 25 nummod _ _ 24 different _ ADJ JJ _ 25 amod _ _ 25 varieties _ NOUN NNS _ 18 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 including _ VERB VBG _ 32 case _ _ 28 this _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 big _ ADJ JJ _ 32 amod _ _ 32 hit _ NOUN NN _ 25 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 Tide _ PROPN NNP _ 32 appos _ _ 35 with _ ADP IN _ 36 case _ _ 36 Bleach _ NOUN NNP _ 34 nmod _ _ 37 . _ PUNCT . _ 5 punct _ _ 1 With _ ADP IN _ 2 case _ _ 2 superconcentrates _ NOUN NNS _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 however _ ADV RB _ 10 advmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 it _ PRON PRP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 n't _ PART RB _ 10 neg _ _ 9 always _ ADV RB _ 10 advmod _ _ 10 easy _ ADJ JJ _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 persuade _ VERB VB _ 10 xcomp _ _ 13 consumers _ NOUN NNS _ 12 dobj _ _ 14 that _ SCONJ WDT _ 17 dep _ _ 15 less _ ADJ JJR _ 17 nsubj _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 more _ ADJ RBR _ 12 dep _ _ 18 ; _ PUNCT : _ 10 punct _ _ 19 many _ ADJ JJ _ 20 amod _ _ 20 people _ NOUN NNS _ 21 nsubj _ _ 21 tend _ VERB VBP _ 10 parataxis _ _ 22 to _ PART TO _ 23 mark _ _ 23 dump _ VERB VB _ 21 xcomp _ _ 24 too _ ADV RB _ 25 advmod _ _ 25 much _ ADJ JJ _ 26 amod _ _ 26 detergent _ NOUN NN _ 23 dobj _ _ 27 into _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 washing _ NOUN VBG _ 30 compound _ _ 30 machine _ NOUN NN _ 23 nmod _ _ 31 , _ PUNCT , _ 21 punct _ _ 32 believing _ VERB VBG _ 21 xcomp _ _ 33 that _ SCONJ IN _ 35 mark _ _ 34 it _ PRON PRP _ 35 nsubj _ _ 35 takes _ VERB VBZ _ 32 ccomp _ _ 36 a _ DET DT _ 37 det _ _ 37 cup _ NOUN NN _ 35 dobj _ _ 38 of _ ADP IN _ 39 case _ _ 39 powder _ NOUN NN _ 37 nmod _ _ 40 to _ PART TO _ 42 mark _ _ 41 really _ ADV RB _ 42 advmod _ _ 42 clean _ VERB VB _ 35 advcl _ _ 43 the _ DET DT _ 44 det _ _ 44 laundry _ NOUN NN _ 42 dobj _ _ 45 . _ PUNCT . _ 10 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 early _ ADJ JJ _ 4 amod _ _ 4 1980s _ NOUN CD _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 P&G _ PROPN NNP _ 7 nsubj _ _ 7 tried _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 launch _ VERB VB _ 7 xcomp _ _ 10 here _ ADV RB _ 9 advmod _ _ 11 a _ DET DT _ 13 det _ _ 12 concentrated _ ADJ JJ _ 13 amod _ _ 13 detergent _ NOUN NN _ 9 dobj _ _ 14 under _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 Ariel _ PROPN NNP _ 18 compound _ _ 17 brand _ NOUN NN _ 18 compound _ _ 18 name _ NOUN NN _ 9 nmod _ _ 19 that _ ADP IN _ 21 dobj _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 markets _ VERB VBZ _ 18 acl:relcl _ _ 22 in _ ADP IN _ 23 case _ _ 23 Europe _ PROPN NNP _ 21 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 product _ NOUN NN _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 9 nsubj _ _ 6 was _ VERB VBD _ 9 cop _ _ 7 n't _ PART RB _ 9 neg _ _ 8 as _ ADV IN _ 9 advmod _ _ 9 concentrated _ ADJ JJ _ 3 acl:relcl _ _ 10 as _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 Cheer _ PROPN NNP _ 9 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 bombed _ VERB VBN _ 0 root _ _ 16 in _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 market _ NOUN NN _ 19 compound _ _ 19 test _ NOUN NN _ 15 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 Denver _ PROPN NNP _ 19 nmod _ _ 22 and _ CONJ CC _ 15 cc _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 dropped _ VERB VBN _ 15 conj _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 P&G _ PROPN NNP _ 6 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 others _ NOUN NNS _ 1 conj _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 tried _ VERB VBN _ 0 root _ _ 7 repeatedly _ ADV RB _ 6 advmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 hook _ VERB NN _ 6 xcomp _ _ 10 consumers _ NOUN NNS _ 9 dobj _ _ 11 on _ ADP IN _ 16 case _ _ 12 detergent _ NOUN NN _ 16 compound _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 fabric _ NOUN NN _ 12 conj _ _ 15 softener _ NOUN NN _ 16 compound _ _ 16 combinations _ NOUN NNS _ 9 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 pouches _ NOUN NNS _ 16 nmod _ _ 19 , _ PUNCT , _ 6 punct _ _ 20 but _ CONJ CC _ 6 cc _ _ 21 they _ PRON PRP _ 24 nsubj _ _ 22 have _ AUX VBP _ 24 aux _ _ 23 n't _ PART RB _ 24 neg _ _ 24 sold _ VERB VBN _ 6 conj _ _ 25 well _ ADV RB _ 24 advmod _ _ 26 , _ PUNCT , _ 24 punct _ _ 27 despite _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 convenience _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 P&G _ PROPN NNP _ 3 nsubj _ _ 3 contends _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 new _ ADJ JJ _ 6 amod _ _ 6 Cheer _ PROPN NNP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 unique _ ADJ JJ _ 10 amod _ _ 10 formula _ NOUN NN _ 3 ccomp _ _ 11 that _ PRON WDT _ 13 nsubj _ _ 12 also _ ADV RB _ 13 advmod _ _ 13 offers _ VERB VBZ _ 10 acl:relcl _ _ 14 an _ DET DT _ 15 det _ _ 15 ingredient _ NOUN NN _ 13 dobj _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 prevents _ VERB VBZ _ 15 acl:relcl _ _ 18 colors _ NOUN NNS _ 17 dobj _ _ 19 from _ SCONJ IN _ 20 mark _ _ 20 fading _ VERB JJ _ 17 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 retailers _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 embrace _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 product _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 in _ ADP IN _ 11 case _ _ 11 part _ NOUN NN _ 15 nmod _ _ 12 because _ SCONJ IN _ 15 mark _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 will _ AUX MD _ 15 aux _ _ 15 take _ VERB VB _ 4 advcl _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 less _ ADJ JJR _ 19 amod _ _ 18 shelf _ NOUN NN _ 19 compound _ _ 19 space _ NOUN NN _ 15 dobj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 When _ ADV WRB _ 6 advmod _ _ 3 shelf _ NOUN NN _ 4 compound _ _ 4 space _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 cheap _ ADJ JJ _ 10 advcl _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 bigger _ ADJ JJR _ 10 nsubj _ _ 9 was _ VERB VBD _ 10 cop _ _ 10 better _ ADJ RBR _ 13 ccomp _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 Hugh _ PROPN NNP _ 15 compound _ _ 15 Zurkuhlen _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 an _ DET DT _ 18 det _ _ 18 analyst _ NOUN NN _ 15 appos _ _ 19 at _ ADP IN _ 21 case _ _ 20 Salomon _ PROPN NNP _ 21 compound _ _ 21 Bros _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 with _ SCONJ IN _ 6 mark _ _ 3 so _ ADV RB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 brands _ NOUN NNS _ 6 nsubj _ _ 6 vying _ VERB VBG _ 15 advcl _ _ 7 for _ ADP IN _ 8 case _ _ 8 space _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 that _ PRON DT _ 15 nsubj _ _ 11 's _ VERB VBZ _ 15 cop _ _ 12 no _ ADV RB _ 13 neg _ _ 13 longer _ ADV RB _ 15 advmod _ _ 14 the _ DET DT _ 15 det _ _ 15 case _ NOUN NN _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 Cheer _ PROPN NNP _ 5 nsubj _ _ 5 sells _ VERB VBZ _ 14 advcl _ _ 6 well _ ADV RB _ 5 advmod _ _ 7 , _ PUNCT , _ 14 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 trend _ NOUN NN _ 14 nsubj _ _ 10 toward _ ADP IN _ 12 case _ _ 11 smaller _ ADJ JJR _ 12 amod _ _ 12 packaging _ NOUN NN _ 9 nmod _ _ 13 is _ VERB VBZ _ 14 cop _ _ 14 likely _ ADJ JJ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 accelerate _ VERB VB _ 14 xcomp _ _ 17 as _ SCONJ IN _ 19 mark _ _ 18 competitors _ NOUN NNS _ 19 nsubj _ _ 19 follow _ VERB VBP _ 16 advcl _ _ 20 with _ ADP IN _ 23 case _ _ 21 their _ PRON PRP$ _ 23 nmod:poss _ _ 22 own _ ADJ JJ _ 23 amod _ _ 23 superconcentrates _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 Then _ ADV RB _ 6 advmod _ _ 2 retailers _ NOUN NNS _ 6 nsubj _ _ 3 `` _ PUNCT `` _ 6 punct _ _ 4 will _ AUX MD _ 6 aux _ _ 5 probably _ ADV RB _ 6 advmod _ _ 6 push _ VERB VB _ 17 ccomp _ _ 7 the _ DET DT _ 11 det _ _ 8 -LCB- _ PUNCT -LRB- _ 9 punct _ _ 9 less-established _ ADJ JJ _ 11 dep _ _ 10 -RCB- _ PUNCT -RRB- _ 9 punct _ _ 11 brands _ NOUN VBZ _ 6 dobj _ _ 12 out _ ADP RP _ 6 compound:prt _ _ 13 altogether _ ADV RB _ 6 advmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Competition _ NOUN NN _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 bound _ ADJ VBN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 get _ VERB VB _ 3 xcomp _ _ 6 tougher _ ADJ JJR _ 5 xcomp _ _ 7 if _ SCONJ IN _ 9 mark _ _ 8 Kao _ PROPN NNP _ 9 nsubj _ _ 9 introduces _ VERB VBZ _ 5 advcl _ _ 10 a _ DET DT _ 11 det _ _ 11 product _ NOUN NN _ 9 dobj _ _ 12 like _ ADP IN _ 13 case _ _ 13 Attack _ PROPN NN _ 11 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 U.S. _ PROPN NNP _ 9 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 To _ PART TO _ 3 mark _ _ 2 be _ VERB VB _ 3 cop _ _ 3 sure _ ADJ JJ _ 8 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 Kao _ PROPN NNP _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 have _ VERB VB _ 0 root _ _ 9 an _ DET DT _ 11 det _ _ 10 easy _ ADJ JJ _ 11 amod _ _ 11 time _ NOUN NN _ 8 dobj _ _ 12 taking _ VERB VBG _ 11 dep _ _ 13 U.S. _ PROPN NNP _ 15 compound _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 share _ NOUN NN _ 12 dobj _ _ 16 away _ ADV RB _ 12 advmod _ _ 17 from _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 mighty _ ADJ JJ _ 20 amod _ _ 20 P&G _ PROPN NNP _ 16 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 has _ VERB VBZ _ 20 acl:relcl _ _ 24 about _ ADV RB _ 25 advmod _ _ 25 23 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 market _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 Kao _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 5 nsubj _ _ 3 previously _ ADV RB _ 5 advmod _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 said _ VERB VBN _ 0 root _ _ 6 they _ PRON PRP _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 interested _ ADJ JJ _ 5 ccomp _ _ 9 in _ SCONJ IN _ 10 mark _ _ 10 selling _ VERB VBG _ 8 advcl _ _ 11 detergents _ NOUN NNS _ 10 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 but _ CONJ CC _ 5 cc _ _ 17 so _ ADV RB _ 18 advmod _ _ 18 far _ ADV RB _ 22 advmod _ _ 19 the _ DET DT _ 20 det _ _ 20 company _ NOUN NN _ 22 nsubj _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 focused _ VERB VBN _ 5 conj _ _ 23 on _ ADP IN _ 24 case _ _ 24 acquisitions _ NOUN NNS _ 22 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 31 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 year _ NOUN NN _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 purchase _ NOUN NN _ 24 nmod _ _ 32 of _ ADP IN _ 35 case _ _ 33 Andrew _ PROPN NNP _ 35 compound _ _ 34 Jergens _ PROPN NNP _ 35 compound _ _ 35 Co. _ PROPN NNP _ 31 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 a _ DET DT _ 40 det _ _ 38 Cincinnati _ PROPN NNP _ 40 compound _ _ 39 hand-lotion _ NOUN NN _ 40 compound _ _ 40 maker _ NOUN NN _ 35 appos _ _ 41 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 product-testing _ NOUN JJ _ 6 compound _ _ 6 facility _ NOUN NN _ 3 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 California _ PROPN NNP _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 believe _ VERB VBP _ 0 root _ _ 3 P&G _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 interest _ NOUN NN _ 10 nsubj _ _ 6 in _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 superconcentrated _ ADJ JJ _ 9 amod _ _ 9 detergent _ NOUN NN _ 5 nmod _ _ 10 goes _ VERB VBZ _ 2 ccomp _ _ 11 beyond _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 concern _ NOUN NN _ 10 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 Japanese _ PROPN JJ _ 13 nmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 something _ NOUN NN _ 14 ccomp _ _ 5 P&G _ PROPN NNP _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 do _ VERB VB _ 4 acl:relcl _ _ 8 with _ ADP IN _ 11 case _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 without _ ADP IN _ 8 conj _ _ 11 Kao _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Zurkuhlen _ PROPN NNP _ 14 nsubj _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 With _ SCONJ IN _ 9 mark _ _ 2 economic _ ADJ JJ _ 3 amod _ _ 3 tension _ NOUN NN _ 9 nsubj _ _ 4 between _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 U.S. _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Japan _ PROPN NNP _ 6 conj _ _ 9 worsening _ VERB VBG _ 14 advcl _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 many _ ADJ JJ _ 14 nsubj _ _ 12 Japanese _ VERB NNPS _ 11 dep _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 feared _ VERB VBN _ 0 root _ _ 15 last _ ADJ JJ _ 16 amod _ _ 16 week _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 visit _ NOUN NN _ 14 dobj _ _ 19 from _ ADP IN _ 24 case _ _ 20 U.S. _ PROPN NNP _ 24 compound _ _ 21 Trade _ PROPN NNP _ 24 compound _ _ 22 Representative _ PROPN NNP _ 24 compound _ _ 23 Carla _ PROPN NNP _ 24 compound _ _ 24 Hills _ PROPN NNP _ 18 nmod _ _ 25 . _ PUNCT . _ 14 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 expected _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 barrage _ NOUN NN _ 2 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 demands _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 Japan _ PROPN NNP _ 10 nsubj _ _ 10 do _ VERB VBP _ 7 ccomp _ _ 11 something _ NOUN NN _ 10 dobj _ _ 12 quickly _ ADV RB _ 10 advmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 reduce _ VERB VB _ 10 advcl _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 trade _ NOUN NN _ 17 compound _ _ 17 surplus _ NOUN NN _ 14 dobj _ _ 18 with _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 U.S. _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Instead _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 got _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 discussion _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 need _ NOUN NN _ 6 nmod _ _ 10 for _ SCONJ IN _ 16 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 16 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Japan _ PROPN NNP _ 12 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 work _ VERB VB _ 9 acl _ _ 17 together _ ADV RB _ 16 advmod _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 importance _ NOUN NN _ 9 conj _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 long-term _ ADJ JJ _ 25 amod _ _ 25 view _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 5 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 first _ ADJ JJ _ 5 amod _ _ 5 trip _ NOUN NN _ 14 nsubj _ _ 6 to _ ADP TO _ 7 case _ _ 7 Japan _ PROPN NNP _ 5 nmod _ _ 8 as _ ADP IN _ 13 case _ _ 9 America _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 chief _ ADJ JJ _ 13 amod _ _ 12 trade _ NOUN NN _ 13 compound _ _ 13 negotiator _ NOUN NN _ 5 nmod _ _ 14 had _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 18 det _ _ 16 completely _ ADV RB _ 17 advmod _ _ 17 different _ ADJ JJ _ 18 amod _ _ 18 tone _ NOUN NN _ 14 dobj _ _ 19 from _ ADP IN _ 23 case _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 month _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 visit _ NOUN NN _ 18 nmod _ _ 24 by _ ADP IN _ 29 case _ _ 25 Commerce _ PROPN NNP _ 29 compound _ _ 26 Secretary _ PROPN NNP _ 29 compound _ _ 27 Robert _ PROPN NNP _ 29 compound _ _ 28 A. _ PROPN NNP _ 29 compound _ _ 29 Mosbacher _ PROPN NNP _ 23 nmod _ _ 30 . _ PUNCT . _ 14 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mosbacher _ PROPN NNP _ 3 nsubj _ _ 3 called _ VERB VBD _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 concrete _ ADJ JJ _ 6 amod _ _ 6 results _ NOUN NNS _ 3 nmod _ _ 7 by _ ADP IN _ 9 case _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 spring _ NOUN NN _ 6 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 negotiations _ NOUN NNS _ 3 nmod _ _ 12 over _ ADP IN _ 16 case _ _ 13 fundamental _ ADJ JJ _ 16 amod _ _ 14 Japanese _ ADJ JJ _ 16 amod _ _ 15 business _ NOUN NN _ 16 compound _ _ 16 practices _ NOUN NNS _ 11 nmod _ _ 17 that _ PRON WDT _ 19 nsubj _ _ 18 supposedly _ ADV RB _ 19 advmod _ _ 19 inhibit _ VERB VBP _ 16 acl:relcl _ _ 20 free _ ADJ JJ _ 21 amod _ _ 21 trade _ NOUN NN _ 19 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 such _ ADJ JJ _ 4 amod _ _ 4 results _ NOUN NNS _ 8 nsubj _ _ 5 should _ AUX MD _ 8 aux _ _ 6 be _ VERB VB _ 8 cop _ _ 7 `` _ PUNCT `` _ 8 punct _ _ 8 measurable _ ADJ JJ _ 2 ccomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 dollars _ NOUN NNS _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 cents _ NOUN NNS _ 10 conj _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 14 in _ SCONJ IN _ 15 mark _ _ 15 reducing _ VERB VBG _ 8 advcl _ _ 16 the _ DET DT _ 19 det _ _ 17 U.S. _ PROPN NNP _ 19 compound _ _ 18 trade _ NOUN NN _ 19 compound _ _ 19 deficit _ NOUN NN _ 15 dobj _ _ 20 with _ ADP IN _ 21 case _ _ 21 Japan _ PROPN NNP _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 21 cc _ _ 2 Mrs. _ PROPN NNP _ 3 compound _ _ 3 Hills _ PROPN NNP _ 21 nsubj _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 speaking _ VERB VBG _ 21 advcl _ _ 6 at _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 breakfast _ NOUN NN _ 9 compound _ _ 9 meeting _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 American _ PROPN NNP _ 13 compound _ _ 13 Chamber _ PROPN NNP _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 Commerce _ PROPN NNP _ 13 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 Japan _ PROPN NNP _ 13 nmod _ _ 18 on _ ADP IN _ 19 case _ _ 19 Saturday _ PROPN NNP _ 5 nmod _ _ 20 , _ PUNCT , _ 21 punct _ _ 21 stressed _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 26 mark _ _ 23 the _ DET DT _ 24 det _ _ 24 objective _ NOUN NN _ 26 nsubj _ _ 25 `` _ PUNCT `` _ 26 punct _ _ 26 is _ VERB VBZ _ 21 ccomp _ _ 27 not _ PART RB _ 26 neg _ _ 28 to _ PART TO _ 29 mark _ _ 29 get _ VERB VB _ 26 xcomp _ _ 30 definitive _ ADJ JJ _ 31 amod _ _ 31 action _ NOUN NN _ 29 dobj _ _ 32 by _ ADP IN _ 33 case _ _ 33 spring _ NOUN NN _ 29 nmod _ _ 34 or _ CONJ CC _ 33 cc _ _ 35 summer _ NOUN NN _ 33 conj _ _ 36 , _ PUNCT , _ 26 punct _ _ 37 it _ PRON PRP _ 38 nsubj _ _ 38 is _ VERB VBZ _ 26 parataxis _ _ 39 rather _ ADV RB _ 38 advmod _ _ 40 to _ PART TO _ 41 mark _ _ 41 have _ VERB VB _ 38 xcomp _ _ 42 a _ DET DT _ 43 det _ _ 43 blueprint _ NOUN NN _ 41 dobj _ _ 44 for _ ADP IN _ 45 case _ _ 45 action _ NOUN NN _ 43 nmod _ _ 46 . _ PUNCT . _ 21 punct _ _ 47 '' _ PUNCT '' _ 21 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 5 mark _ _ 4 she _ PRON PRP _ 5 nsubj _ _ 5 expected _ VERB VBD _ 2 ccomp _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 perhaps _ ADV RB _ 9 advmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 have _ VERB VB _ 5 xcomp _ _ 10 a _ DET DT _ 12 det _ _ 11 down _ ADJ JJ _ 12 amod _ _ 12 payment _ NOUN NN _ 9 dobj _ _ 13 ... _ PUNCT : _ 12 punct _ _ 14 some _ DET DT _ 16 det _ _ 15 small _ ADJ JJ _ 16 amod _ _ 16 step _ NOUN NN _ 12 dep _ _ 17 to _ PART TO _ 18 mark _ _ 18 convince _ VERB VB _ 16 acl _ _ 19 the _ DET DT _ 21 det _ _ 20 American _ ADJ JJ _ 21 amod _ _ 21 people _ NOUN NNS _ 18 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 the _ DET DT _ 25 det _ _ 24 Japanese _ ADJ JJ _ 25 amod _ _ 25 people _ NOUN NNS _ 21 conj _ _ 26 that _ SCONJ IN _ 29 mark _ _ 27 we _ PRON PRP _ 29 nsubj _ _ 28 're _ AUX VBP _ 29 aux _ _ 29 moving _ VERB VBG _ 18 ccomp _ _ 30 in _ ADP IN _ 31 case _ _ 31 earnest _ NOUN NN _ 29 nmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 33 '' _ PUNCT '' _ 2 punct _ _ 1 How _ ADV WRB _ 4 advmod _ _ 2 such _ ADJ JJ _ 3 amod _ _ 3 remarks _ NOUN NNS _ 4 nsubj _ _ 4 translate _ VERB VB _ 9 csubj _ _ 5 into _ ADP IN _ 6 case _ _ 6 policy _ NOUN NN _ 4 nmod _ _ 7 wo _ AUX MD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 become _ VERB VB _ 0 root _ _ 10 clear _ ADJ JJ _ 9 xcomp _ _ 11 for _ ADP IN _ 12 case _ _ 12 months _ NOUN NNS _ 9 nmod _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 American _ ADJ JJ _ 4 amod _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Japanese _ ADJ JJ _ 1 conj _ _ 4 officials _ NOUN NNS _ 5 nsubj _ _ 5 offered _ VERB VBD _ 0 root _ _ 6 several _ ADJ JJ _ 7 amod _ _ 7 theories _ NOUN NNS _ 5 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 difference _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 approach _ NOUN NN _ 10 nmod _ _ 13 betwen _ NOUN VBD _ 15 dep _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Mosbacher _ PROPN NNP _ 10 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Mrs. _ PROPN NNP _ 18 compound _ _ 18 Hills _ PROPN NNP _ 15 conj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Many _ ADJ JJ _ 2 nsubj _ _ 2 called _ VERB VBN _ 0 root _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 simply _ ADV RB _ 6 advmod _ _ 5 a _ DET DT _ 6 det _ _ 6 contrast _ NOUN NN _ 2 xcomp _ _ 7 in _ ADP IN _ 8 case _ _ 8 styles _ NOUN NNS _ 6 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 some _ DET DT _ 3 nsubj _ _ 3 saw _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 3 dobj _ _ 5 as _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 classic _ ADJ JJ _ 9 amod _ _ 8 negotiating _ NOUN NN _ 9 compound _ _ 9 tactic _ NOUN NN _ 3 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 Others _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Bush _ PROPN NNP _ 5 compound _ _ 5 administration _ NOUN NN _ 7 nsubj _ _ 6 may _ AUX MD _ 7 aux _ _ 7 feel _ VERB VB _ 2 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 rhetoric _ NOUN NN _ 14 nsubj _ _ 10 on _ ADP IN _ 12 case _ _ 11 both _ DET DT _ 12 det _ _ 12 sides _ NOUN NNS _ 9 nmod _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 getting _ VERB VBG _ 7 ccomp _ _ 15 out _ ADP IN _ 14 advmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 hand _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 some _ DET DT _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 reflected _ VERB VBD _ 3 ccomp _ _ 6 the _ DET DT _ 8 det _ _ 7 growing _ VERB VBG _ 8 amod _ _ 8 debate _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Washington _ PROPN NNP _ 8 nmod _ _ 11 over _ SCONJ IN _ 12 mark _ _ 12 pursuing _ VERB VBG _ 8 acl _ _ 13 free _ ADJ JJ _ 14 amod _ _ 14 trade _ NOUN NN _ 12 dobj _ _ 15 with _ ADP IN _ 16 case _ _ 16 Japan _ PROPN NNP _ 14 nmod _ _ 17 versus _ ADP CC _ 19 case _ _ 18 some _ DET DT _ 19 det _ _ 19 kind _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 managed _ ADJ VBN _ 22 amod _ _ 22 trade _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Asked _ VERB VBN _ 13 ccomp _ _ 2 to _ PART TO _ 3 mark _ _ 3 compare _ VERB VB _ 1 xcomp _ _ 4 her _ PRON PRP$ _ 5 dep _ _ 5 visit _ NOUN NN _ 3 dobj _ _ 6 to _ ADP TO _ 8 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Mosbacher _ PROPN NNP _ 3 nmod _ _ 9 's _ PART POS _ 8 case _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Mrs. _ PROPN NNP _ 12 compound _ _ 12 Hills _ PROPN NNP _ 13 nsubj _ _ 13 replied _ VERB VBD _ 0 root _ _ 14 : _ PUNCT : _ 13 punct _ _ 15 `` _ PUNCT `` _ 19 punct _ _ 16 I _ PRON PRP _ 19 nsubj _ _ 17 did _ AUX VBD _ 19 aux _ _ 18 n't _ PART RB _ 19 neg _ _ 19 hear _ VERB VB _ 13 parataxis _ _ 20 every _ DET DT _ 21 det _ _ 21 word _ NOUN NN _ 19 dobj _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 spoke _ VERB VBD _ 21 acl:relcl _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 but _ CONJ CC _ 19 cc _ _ 26 as _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 general _ ADJ JJ _ 29 amod _ _ 29 proposition _ NOUN NN _ 32 nmod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 I _ PRON PRP _ 32 nsubj _ _ 32 think _ VERB VBP _ 19 conj _ _ 33 we _ PRON PRP _ 34 nsubj _ _ 34 have _ VERB VBP _ 32 ccomp _ _ 35 a _ DET DT _ 39 det _ _ 36 very _ ADV RB _ 37 advmod _ _ 37 consistent _ ADJ JJ _ 39 amod _ _ 38 trade _ NOUN NN _ 39 compound _ _ 39 strategy _ NOUN NN _ 34 dobj _ _ 40 in _ ADP IN _ 43 case _ _ 41 the _ DET DT _ 43 det _ _ 42 Bush _ PROPN NNP _ 43 compound _ _ 43 administration _ NOUN NN _ 34 nmod _ _ 44 . _ PUNCT . _ 13 punct _ _ 45 '' _ PUNCT '' _ 13 punct _ _ 1 Yet _ ADV RB _ 20 advmod _ _ 2 more _ ADJ JJR _ 4 advmod _ _ 3 than _ ADP IN _ 2 mwe _ _ 4 one _ NUM CD _ 6 nummod _ _ 5 American _ ADJ JJ _ 6 amod _ _ 6 official _ NOUN NN _ 20 nsubj _ _ 7 who _ PRON WP _ 8 nsubj _ _ 8 sat _ VERB VBD _ 6 acl:relcl _ _ 9 in _ ADP IN _ 8 compound:prt _ _ 10 with _ ADP IN _ 11 case _ _ 11 her _ PRON PRP$ _ 8 nmod _ _ 12 during _ ADP IN _ 14 case _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 days _ NOUN NNS _ 8 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 talks _ NOUN NNS _ 14 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 Japanese _ ADJ JJ _ 19 amod _ _ 19 officials _ NOUN NNS _ 14 nmod _ _ 20 said _ VERB VBD _ 0 root _ _ 21 her _ PRON PRP$ _ 22 nmod:poss _ _ 22 tone _ NOUN NN _ 27 nsubj _ _ 23 often _ ADV RB _ 27 advmod _ _ 24 was _ VERB VBD _ 27 cop _ _ 25 surprisingly _ ADV RB _ 27 advmod _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 conciliatory _ ADJ JJ _ 20 ccomp _ _ 28 . _ PUNCT . _ 20 punct _ _ 29 '' _ PUNCT '' _ 20 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 14 ccomp _ _ 4 my _ PRON PRP$ _ 5 nmod:poss _ _ 5 line _ NOUN NN _ 9 nsubj _ _ 6 has _ AUX VBZ _ 9 aux _ _ 7 been _ VERB VBN _ 9 cop _ _ 8 very _ ADV RB _ 9 advmod _ _ 9 consistent _ ADJ JJ _ 3 ccomp _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 '' _ PUNCT '' _ 14 punct _ _ 12 Mrs. _ PROPN NNP _ 13 compound _ _ 13 Hills _ PROPN NNP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 at _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 news _ NOUN NN _ 18 compound _ _ 18 conference _ NOUN NN _ 14 nmod _ _ 19 Saturday _ PROPN NNP _ 20 compound _ _ 20 afternoon _ NOUN NN _ 14 nmod:tmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubjpass _ _ 3 am _ AUX VBP _ 4 auxpass _ _ 4 painted _ VERB VBN _ 0 root _ _ 5 sometimes _ ADV RB _ 4 advmod _ _ 6 as _ ADP IN _ 7 case _ _ 7 ferocious _ ADJ JJ _ 4 advcl _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 perhaps _ ADV RB _ 12 advmod _ _ 10 because _ SCONJ IN _ 12 mark _ _ 11 I _ PRON PRP _ 12 nsubj _ _ 12 have _ VERB VBP _ 4 advcl _ _ 13 a _ DET DT _ 15 det _ _ 14 ferocious _ ADJ JJ _ 15 amod _ _ 15 list _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 statutes _ NOUN NNS _ 15 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 implement _ VERB VB _ 15 acl _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 feel _ VERB VB _ 0 root _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 ferocious _ ADJ JJ _ 4 xcomp _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 feel _ VERB VB _ 0 root _ _ 5 either _ CONJ RB _ 6 cc:preconj _ _ 6 hard _ ADJ JJ _ 4 xcomp _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 soft _ ADJ JJ _ 6 conj _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 feel _ VERB VBP _ 0 root _ _ 3 committed _ ADJ VBN _ 2 xcomp _ _ 4 to _ ADP TO _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 program _ NOUN NN _ 3 nmod _ _ 7 of _ SCONJ IN _ 8 mark _ _ 8 opening _ VERB VBG _ 6 acl _ _ 9 markets _ NOUN NNS _ 8 dobj _ _ 10 and _ CONJ CC _ 8 cc _ _ 11 expanding _ VERB VBG _ 8 conj _ _ 12 trade _ NOUN NN _ 11 dobj _ _ 13 . _ PUNCT . _ 2 punct _ _ 14 '' _ PUNCT '' _ 2 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 met _ VERB VBD _ 17 advcl _ _ 4 the _ DET DT _ 6 det _ _ 5 local _ ADJ JJ _ 6 amod _ _ 6 press _ NOUN NN _ 3 dobj _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 first _ ADJ JJ _ 10 amod _ _ 10 time _ NOUN NN _ 3 nmod _ _ 11 on _ ADP IN _ 12 case _ _ 12 Friday _ PROPN NNP _ 3 nmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 Mrs. _ PROPN NNP _ 15 compound _ _ 15 Hills _ PROPN NNP _ 17 nsubj _ _ 16 firmly _ ADV RB _ 17 advmod _ _ 17 reiterated _ VERB VBD _ 0 root _ _ 18 the _ DET DT _ 19 det _ _ 19 need _ NOUN NN _ 17 dobj _ _ 20 for _ ADP IN _ 21 case _ _ 21 progress _ NOUN NN _ 19 nmod _ _ 22 in _ SCONJ IN _ 23 mark _ _ 23 removing _ VERB VBG _ 21 acl _ _ 24 barriers _ NOUN NNS _ 23 dobj _ _ 25 to _ ADP TO _ 26 case _ _ 26 trade _ NOUN VB _ 24 nmod _ _ 27 in _ ADP IN _ 29 case _ _ 28 forest _ NOUN NN _ 29 compound _ _ 29 products _ NOUN NNS _ 24 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 satellites _ NOUN NNS _ 29 conj _ _ 32 and _ CONJ CC _ 29 cc _ _ 33 supercomputers _ NOUN NNS _ 29 conj _ _ 34 , _ PUNCT , _ 29 punct _ _ 35 three _ NUM CD _ 36 nummod _ _ 36 areas _ NOUN NNS _ 29 appos _ _ 37 targeted _ VERB VBN _ 36 acl _ _ 38 under _ ADP IN _ 42 case _ _ 39 the _ DET DT _ 42 det _ _ 40 Super _ PROPN NNP _ 42 compound _ _ 41 301 _ PROPN CD _ 42 compound _ _ 42 provision _ NOUN NN _ 37 nmod _ _ 43 of _ ADP IN _ 47 case _ _ 44 the _ DET DT _ 47 det _ _ 45 1988 _ NUM CD _ 47 nummod _ _ 46 trade _ NOUN NN _ 47 compound _ _ 47 bill _ NOUN NN _ 42 nmod _ _ 48 . _ PUNCT . _ 17 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 highlighted _ VERB VBD _ 0 root _ _ 3 exclusionary _ ADJ JJ _ 5 amod _ _ 4 business _ NOUN NN _ 5 compound _ _ 5 practices _ NOUN NNS _ 2 dobj _ _ 6 that _ ADP IN _ 11 dobj _ _ 7 the _ DET DT _ 9 det _ _ 8 U.S. _ PROPN NNP _ 9 compound _ _ 9 government _ NOUN NN _ 11 nsubj _ _ 10 has _ AUX VBZ _ 11 aux _ _ 11 identified _ VERB VBN _ 5 acl:relcl _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 her _ PRON PRP$ _ 4 nmod:poss _ _ 3 main _ ADJ JJ _ 4 amod _ _ 4 thrust _ NOUN NN _ 5 nsubj _ _ 5 was _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 promote _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 importance _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 world-wide _ ADJ JJ _ 13 amod _ _ 12 free _ ADJ JJ _ 13 amod _ _ 13 trade _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 open _ ADJ JJ _ 16 amod _ _ 16 competition _ NOUN NN _ 13 conj _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 trade _ NOUN NN _ 5 compound _ _ 5 imbalance _ NOUN NN _ 8 nsubj _ _ 6 was _ VERB VBD _ 8 cop _ _ 7 mainly _ ADV RB _ 8 advmod _ _ 8 due _ ADJ JJ _ 2 ccomp _ _ 9 to _ ADP TO _ 11 case _ _ 10 macroeconomic _ ADJ JJ _ 11 amod _ _ 11 factors _ NOUN NNS _ 8 nmod _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 should _ AUX MD _ 16 aux _ _ 14 n't _ PART RB _ 16 neg _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 tackled _ VERB VBN _ 8 conj _ _ 17 by _ SCONJ IN _ 18 mark _ _ 18 setting _ VERB VBG _ 16 advcl _ _ 19 quantitative _ ADJ JJ _ 20 amod _ _ 20 targets _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 her _ PRON PRP$ _ 4 nmod:poss _ _ 3 news _ NOUN NN _ 4 compound _ _ 4 conference _ NOUN NN _ 12 nmod _ _ 5 for _ ADP IN _ 7 case _ _ 6 Japanese _ ADJ JJ _ 7 amod _ _ 7 reporters _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 one _ NUM CD _ 11 nummod _ _ 10 economics _ NOUN NN _ 11 compound _ _ 11 journalist _ NOUN NN _ 12 nsubj _ _ 12 summed _ VERB VBD _ 0 root _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 the _ DET DT _ 16 det _ _ 15 Japanese _ ADJ JJ _ 16 amod _ _ 16 sense _ NOUN NN _ 12 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 relief _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 My _ PRON PRP$ _ 3 nmod:poss _ _ 3 impression _ NOUN NN _ 4 nsubj _ _ 4 was _ VERB VBD _ 16 ccomp _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 you _ PRON PRP _ 12 nsubj _ _ 7 would _ AUX MD _ 12 aux _ _ 8 be _ VERB VB _ 12 cop _ _ 9 a _ DET DT _ 12 det _ _ 10 scary _ ADJ JJ _ 12 amod _ _ 11 old _ ADJ JJ _ 12 amod _ _ 12 lady _ NOUN NN _ 4 ccomp _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 drawing _ VERB VBG _ 16 xcomp _ _ 19 a _ DET DT _ 22 det _ _ 20 few _ ADJ JJ _ 22 amod _ _ 21 nervous _ ADJ JJ _ 22 amod _ _ 22 chuckles _ NOUN VBZ _ 18 dobj _ _ 23 from _ ADP IN _ 25 case _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 colleagues _ NOUN NNS _ 18 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 But _ CONJ CC _ 5 cc _ _ 3 I _ PRON PRP _ 5 nsubj _ _ 4 am _ VERB VBP _ 5 cop _ _ 5 relieved _ ADJ VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 see _ VERB VB _ 5 xcomp _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 you _ PRON PRP _ 13 nsubj _ _ 10 are _ VERB VBP _ 13 cop _ _ 11 beautiful _ ADJ JJ _ 13 dep _ _ 12 and _ CONJ CC _ 13 cc _ _ 13 gentle _ ADJ JJ _ 7 ccomp _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 intelligent _ ADJ JJ _ 13 conj _ _ 16 and _ CONJ CC _ 13 cc _ _ 17 a _ DET DT _ 18 det _ _ 18 person _ NOUN NN _ 13 conj _ _ 19 of _ ADP IN _ 20 case _ _ 20 integrity _ NOUN NN _ 18 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 22 '' _ PUNCT '' _ 5 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 remarks _ NOUN NNS _ 6 nsubj _ _ 5 did _ AUX VBD _ 6 aux _ _ 6 raise _ NOUN VB _ 0 root _ _ 7 questions _ NOUN NNS _ 6 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 at _ ADP IN _ 14 advmod _ _ 10 least _ ADJ JJS _ 9 mwe _ _ 11 among _ ADP IN _ 14 case _ _ 12 some _ DET DT _ 14 det _ _ 13 U.S. _ PROPN NNP _ 14 compound _ _ 14 officials _ NOUN NNS _ 7 nmod _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 about _ SCONJ IN _ 24 mark _ _ 17 what _ PRON WP _ 24 dobj _ _ 18 exactly _ ADV RB _ 17 advmod _ _ 19 her _ PRON PRP$ _ 20 nmod:poss _ _ 20 stance _ NOUN NN _ 24 nsubj _ _ 21 is _ VERB VBZ _ 24 cop _ _ 22 on _ ADP IN _ 24 case _ _ 23 U.S. _ PROPN NNP _ 24 compound _ _ 24 access _ NOUN NN _ 7 acl _ _ 25 to _ ADP TO _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 Japanese _ ADJ JJ _ 29 amod _ _ 28 semiconductor _ NOUN NN _ 29 compound _ _ 29 market _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 U.S. _ PROPN NNP _ 3 compound _ _ 3 share _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Japanese _ ADJ JJ _ 7 amod _ _ 7 market _ NOUN NN _ 3 nmod _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 aux _ _ 10 stuck _ ADJ VBN _ 0 root _ _ 11 around _ ADP IN _ 13 case _ _ 12 10 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 10 nmod _ _ 14 for _ ADP IN _ 15 case _ _ 15 years _ NOUN NNS _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 Americans _ PROPN NNPS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 interpreted _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 1986 _ NUM CD _ 7 nummod _ _ 7 agreement _ NOUN NN _ 4 dobj _ _ 8 as _ SCONJ IN _ 9 mark _ _ 9 assuring _ VERB VBG _ 4 advcl _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 companies _ NOUN NNS _ 9 iobj _ _ 12 a _ DET DT _ 15 det _ _ 13 20 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 share _ NOUN NN _ 9 dobj _ _ 16 by _ ADP IN _ 17 case _ _ 17 1991 _ NUM CD _ 15 nmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 but _ CONJ CC _ 4 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 Japanese _ PROPN NNPS _ 23 nsubj _ _ 22 have _ AUX VBP _ 23 aux _ _ 23 denied _ VERB VBN _ 4 conj _ _ 24 making _ VERB VBG _ 23 xcomp _ _ 25 any _ DET DT _ 27 det _ _ 26 such _ ADJ JJ _ 27 amod _ _ 27 promise _ NOUN NN _ 24 dobj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 one _ NUM CD _ 10 nmod _ _ 3 of _ ADP IN _ 6 case _ _ 4 her _ PRON PRP$ _ 6 nmod:poss _ _ 5 news _ NOUN NN _ 6 compound _ _ 6 conferences _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 Mrs. _ PROPN NNP _ 9 compound _ _ 9 Hills _ PROPN NNP _ 10 nsubj _ _ 10 said _ VERB VBD _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 I _ PRON PRP _ 14 nsubj _ _ 14 believe _ VERB VBP _ 10 ccomp _ _ 15 we _ PRON PRP _ 17 nsubj _ _ 16 can _ AUX MD _ 17 aux _ _ 17 do _ VERB VB _ 14 ccomp _ _ 18 much _ ADV RB _ 19 advmod _ _ 19 better _ ADV JJR _ 17 advmod _ _ 20 than _ ADP IN _ 22 case _ _ 21 20 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 19 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 24 '' _ PUNCT '' _ 10 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 stressed _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 `` _ PUNCT `` _ 10 punct _ _ 6 I _ PRON PRP _ 10 nsubj _ _ 7 am _ VERB VBP _ 10 cop _ _ 8 against _ ADP IN _ 10 case _ _ 9 managed _ ADJ VBN _ 10 amod _ _ 10 trade _ NOUN NN _ 3 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 not _ PART RB _ 4 neg _ _ 4 enter _ VERB VB _ 0 root _ _ 5 into _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 agreement _ NOUN NN _ 4 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 stipulates _ VERB VBZ _ 7 acl:relcl _ _ 10 to _ ADP TO _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 percentage _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Traditional _ PROPN JJ _ 3 compound _ _ 2 Industries _ PROPN NNPS _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 expects _ VERB VBZ _ 4 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 11 det _ _ 10 net _ ADJ JJ _ 11 amod _ _ 11 loss _ NOUN NN _ 8 dobj _ _ 12 for _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 fourth _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 11 nmod _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 ended _ VERB VBD _ 15 acl:relcl _ _ 18 June _ PROPN NNP _ 17 nmod:tmod _ _ 19 30 _ NUM CD _ 18 nummod _ _ 20 and _ CONJ CC _ 6 cc _ _ 21 is _ AUX VBZ _ 22 aux _ _ 22 seeking _ VERB VBG _ 6 conj _ _ 23 new _ ADJ JJ _ 24 amod _ _ 24 financing _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 seller _ NOUN NN _ 8 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 photographic _ ADJ JJ _ 5 amod _ _ 5 products _ NOUN NNS _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 services _ NOUN NNS _ 5 conj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 it _ PRON PRP _ 11 nsubj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 considering _ VERB VBG _ 8 ccomp _ _ 12 a _ DET DT _ 13 det _ _ 13 number _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 financing _ NOUN VBG _ 16 compound _ _ 16 alternatives _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 including _ VERB VBG _ 19 case _ _ 19 seeking _ VERB VBG _ 13 acl _ _ 20 increases _ NOUN NNS _ 19 dobj _ _ 21 in _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 credit _ NOUN NN _ 24 compound _ _ 24 lines _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Traditional _ PROPN JJ _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 estimate _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 6 det _ _ 6 amount _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 loss _ NOUN NN _ 6 nmod _ _ 10 and _ CONJ CC _ 2 cc _ _ 11 would _ AUX MD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 say _ VERB VB _ 2 conj _ _ 14 if _ SCONJ IN _ 16 mark _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 expects _ VERB VBZ _ 13 advcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 show _ VERB VB _ 16 xcomp _ _ 19 a _ DET DT _ 20 det _ _ 20 profit _ NOUN NN _ 18 dobj _ _ 21 for _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 year _ NOUN NN _ 11 nmod _ _ 4 ended _ VERB VBD _ 3 acl _ _ 5 June _ PROPN NNP _ 4 nmod:tmod _ _ 6 30 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1988 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 Traditional _ PROPN JJ _ 11 nsubj _ _ 11 reported _ VERB VBD _ 0 root _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 4.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.21 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 break _ VERB VB _ 0 root _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 fourth-quarter _ ADJ JJ _ 9 amod _ _ 9 results _ NOUN NNS _ 5 dobj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 latest _ ADJ JJS _ 5 amod _ _ 4 nine _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 9 nmod _ _ 6 net _ ADJ JJ _ 7 amod _ _ 7 income _ NOUN NN _ 9 nsubj _ _ 8 was _ VERB VBD _ 9 cop _ _ 9 $ _ SYM $ _ 0 root _ _ 10 4.7 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 1.31 _ NUM CD _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 revenue _ NOUN NN _ 9 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 44.3 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 Separately _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 would _ AUX MD _ 8 aux _ _ 8 file _ VERB VB _ 5 ccomp _ _ 9 a _ DET DT _ 12 det _ _ 10 delayed _ ADJ VBN _ 12 amod _ _ 11 fiscal-year _ NOUN JJ _ 12 compound _ _ 12 report _ NOUN NN _ 8 dobj _ _ 13 with _ ADP IN _ 18 case _ _ 14 the _ DET DT _ 18 det _ _ 15 Securities _ PROPN NNPS _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Exchange _ PROPN NNP _ 15 conj _ _ 18 Commission _ PROPN NNP _ 8 nmod _ _ 19 `` _ PUNCT `` _ 8 punct _ _ 20 within _ ADP IN _ 23 case _ _ 21 approximately _ ADV RB _ 23 advmod _ _ 22 45 _ NUM CD _ 23 nummod _ _ 23 days _ NOUN NNS _ 8 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 25 '' _ PUNCT '' _ 5 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 delay _ NOUN NN _ 5 nsubj _ _ 5 resulted _ VERB VBD _ 2 ccomp _ _ 6 from _ ADP IN _ 7 case _ _ 7 difficulties _ NOUN NNS _ 5 nmod _ _ 8 in _ SCONJ IN _ 9 mark _ _ 9 resolving _ VERB VBG _ 7 acl _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 accounting _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 settlement _ NOUN NN _ 11 nmod _ _ 15 with _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 Federal _ PROPN NNP _ 19 compound _ _ 18 Trade _ PROPN NNP _ 19 compound _ _ 19 Commission _ PROPN NNP _ 14 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 21 nmod _ _ 4 filed _ VERB VBN _ 3 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 federal _ ADJ JJ _ 7 amod _ _ 7 court _ NOUN NN _ 4 nmod _ _ 8 in _ ADP IN _ 9 case _ _ 9 August _ PROPN NNP _ 4 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 settle _ VERB VB _ 3 acl _ _ 12 FTC _ PROPN NNP _ 13 compound _ _ 13 objections _ NOUN NNS _ 11 dobj _ _ 14 to _ ADP TO _ 18 case _ _ 15 some _ DET DT _ 18 det _ _ 16 Traditional _ PROPN JJ _ 18 compound _ _ 17 sales _ NOUN NNS _ 18 compound _ _ 18 practices _ NOUN NNS _ 13 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 Traditional _ PROPN JJ _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 would _ AUX MD _ 24 aux _ _ 24 establish _ VERB VB _ 21 ccomp _ _ 25 a _ DET DT _ 29 det _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 250,000 _ NUM CD _ 26 compound _ _ 28 trust _ NOUN NN _ 29 compound _ _ 29 fund _ NOUN NN _ 24 dobj _ _ 30 to _ PART TO _ 31 mark _ _ 31 provide _ VERB VB _ 29 acl _ _ 32 refunds _ NOUN NNS _ 31 dobj _ _ 33 to _ ADP TO _ 35 case _ _ 34 certain _ ADJ JJ _ 35 amod _ _ 35 customers _ NOUN NNS _ 31 nmod _ _ 36 . _ PUNCT . _ 21 punct _ _ 1 Information _ PROPN NNP _ 3 compound _ _ 2 International _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 sued _ VERB VBN _ 4 ccomp _ _ 8 by _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 buyer _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 computerized _ ADJ JJ _ 15 amod _ _ 14 newspaper-publishing _ ADJ JJ _ 15 amod _ _ 15 system _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 alleging _ VERB VBG _ 10 acl _ _ 18 that _ SCONJ IN _ 21 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 company _ NOUN NN _ 21 nsubj _ _ 21 failed _ VERB VBD _ 17 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 correct _ VERB VB _ 21 xcomp _ _ 24 deficiencies _ NOUN NNS _ 23 dobj _ _ 25 in _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 system _ NOUN NN _ 24 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 Information _ PROPN NNP _ 5 compound _ _ 5 International _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 lawsuit _ NOUN NN _ 16 nsubj _ _ 9 by _ ADP IN _ 11 case _ _ 10 two _ NUM CD _ 11 nummod _ _ 11 units _ NOUN NNS _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 Morris _ PROPN NNP _ 15 compound _ _ 14 Communications _ PROPN NNPS _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 11 nmod _ _ 16 seeks _ VERB VBZ _ 6 ccomp _ _ 17 restitution _ NOUN NN _ 16 dobj _ _ 18 of _ ADP IN _ 27 case _ _ 19 the _ DET DT _ 20 det _ _ 20 system _ NOUN NN _ 27 nmod:poss _ _ 21 's _ VERB POS _ 20 case _ _ 22 about _ ADV IN _ 23 advmod _ _ 23 $ _ SYM $ _ 27 amod _ _ 24 3 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 purchase _ NOUN NN _ 27 compound _ _ 27 price _ NOUN NN _ 17 nmod _ _ 28 and _ CONJ CC _ 17 cc _ _ 29 cancellation _ NOUN NN _ 17 conj _ _ 30 of _ ADP IN _ 33 case _ _ 31 a _ DET DT _ 33 det _ _ 32 software _ NOUN NN _ 33 compound _ _ 33 license _ NOUN NN _ 29 nmod _ _ 34 provided _ VERB VBN _ 33 acl _ _ 35 by _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 Morris _ PROPN NNP _ 38 compound _ _ 38 units _ NOUN NNS _ 34 nmod _ _ 39 to _ ADP TO _ 41 case _ _ 40 Information _ PROPN NNP _ 41 compound _ _ 41 International _ PROPN NNP _ 34 nmod _ _ 42 for _ ADP IN _ 44 case _ _ 43 alleged _ ADJ JJ _ 44 amod _ _ 44 failure _ NOUN NN _ 16 nmod _ _ 45 to _ PART TO _ 46 mark _ _ 46 pay _ VERB VB _ 44 acl _ _ 47 royalties _ NOUN NNS _ 46 dobj _ _ 48 . _ PUNCT . _ 6 punct _ _ 1 Information _ PROPN NNP _ 2 compound _ _ 2 International _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 believes _ VERB VBZ _ 3 ccomp _ _ 6 that _ SCONJ IN _ 19 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 complaints _ NOUN NNS _ 19 nsubj _ _ 9 , _ PUNCT , _ 19 punct _ _ 10 filed _ VERB VBN _ 19 advcl _ _ 11 in _ ADP IN _ 13 case _ _ 12 federal _ ADJ JJ _ 13 amod _ _ 13 court _ NOUN NN _ 10 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 Georgia _ PROPN NNP _ 13 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 are _ VERB VBP _ 19 cop _ _ 18 without _ ADP IN _ 19 case _ _ 19 merit _ NOUN NN _ 5 ccomp _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Closely _ ADV RB _ 2 advmod _ _ 2 held _ VERB VBN _ 4 amod _ _ 3 Morris _ PROPN NNP _ 4 compound _ _ 4 Communications _ PROPN NNPS _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 based _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 8 case _ _ 8 Augusta _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Ga _ PROPN NNP _ 8 appos _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 units _ NOUN NNS _ 10 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 filed _ VERB VBD _ 2 acl:relcl _ _ 5 the _ DET DT _ 6 det _ _ 6 suit _ NOUN NN _ 4 dobj _ _ 7 are _ VERB VBP _ 10 cop _ _ 8 Southeastern _ PROPN NNP _ 10 compound _ _ 9 Newspapers _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 0 root _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Florida _ PROPN NNP _ 14 compound _ _ 13 Publishing _ PROPN NNP _ 14 compound _ _ 14 Co _ PROPN NNP _ 10 conj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Syms _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 completed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 sale _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 A. _ PROPN NN _ 9 compound _ _ 9 Sulka _ PROPN NNP _ 5 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Co. _ PROPN NNP _ 12 compound _ _ 12 subsidiary _ NOUN NN _ 9 conj _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 men _ NOUN NNS _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 luxury _ NOUN NN _ 18 compound _ _ 18 haberdashery _ NOUN NN _ 9 appos _ _ 19 , _ PUNCT , _ 9 punct _ _ 20 to _ ADP TO _ 22 case _ _ 21 Luxco _ PROPN NNP _ 22 compound _ _ 22 Investments _ PROPN NNP _ 5 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 As _ SCONJ IN _ 10 mark _ _ 2 Syms _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 `` _ PUNCT `` _ 6 punct _ _ 5 core _ ADJ NN _ 6 amod _ _ 6 business _ NOUN NN _ 10 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 off-price _ ADJ JJ _ 9 amod _ _ 9 retailing _ NOUN NN _ 6 nmod _ _ 10 grows _ VERB VBZ _ 19 advcl _ _ 11 , _ PUNCT , _ 19 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 small _ ADJ JJ _ 14 amod _ _ 14 subsidiary _ NOUN NN _ 19 nsubj _ _ 15 that _ PRON WDT _ 18 nsubj _ _ 16 is _ VERB VBZ _ 18 cop _ _ 17 operationally _ ADV RB _ 18 advmod _ _ 18 unrelated _ ADJ JJ _ 14 acl:relcl _ _ 19 becomes _ VERB VBZ _ 25 ccomp _ _ 20 a _ DET DT _ 22 det _ _ 21 difficult _ ADJ JJ _ 22 amod _ _ 22 distraction _ NOUN NN _ 19 xcomp _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Marcy _ PROPN NNP _ 27 compound _ _ 27 Syms _ PROPN NNP _ 25 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 president _ NOUN NN _ 27 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 parent _ NOUN NN _ 29 nmod _ _ 33 , _ PUNCT , _ 25 punct _ _ 34 in _ ADP IN _ 36 case _ _ 35 a _ DET DT _ 36 det _ _ 36 statement _ NOUN NN _ 25 nmod _ _ 37 . _ PUNCT . _ 25 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokeswoman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Sulka _ PROPN NNP _ 5 nsubj _ _ 5 operates _ VERB VBZ _ 3 ccomp _ _ 6 a _ DET DT _ 7 det _ _ 7 total _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 seven _ NUM CD _ 10 nummod _ _ 10 stores _ NOUN NNS _ 7 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.S. _ PROPN NNP _ 5 dep _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 overseas _ ADV RB _ 13 conj _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Syms _ NOUN NNP _ 2 nsubj _ _ 2 operates _ VERB VBZ _ 0 root _ _ 3 25 _ NUM CD _ 6 nummod _ _ 4 off-price _ ADJ JJ _ 6 amod _ _ 5 apparel _ NOUN NN _ 6 compound _ _ 6 stores _ NOUN NNS _ 2 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 2 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 industry _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 middling _ ADJ JJ _ 6 amod _ _ 6 profits _ NOUN NNS _ 8 nsubj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 persist _ VERB VB _ 0 root _ _ 9 through _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 rest _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Major _ ADJ JJ _ 3 amod _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 companies _ NOUN NNS _ 10 nsubjpass _ _ 4 in _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 next _ ADJ JJ _ 8 amod _ _ 7 few _ ADJ JJ _ 8 amod _ _ 8 days _ NOUN NNS _ 10 nmod _ _ 9 are _ AUX VBP _ 10 auxpass _ _ 10 expected _ VERB VBN _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 report _ VERB VB _ 10 xcomp _ _ 13 much _ ADV RB _ 15 advmod _ _ 14 less _ ADV JJR _ 15 advmod _ _ 15 robust _ ADJ JJ _ 16 amod _ _ 16 earnings _ NOUN NNS _ 12 dobj _ _ 17 than _ SCONJ IN _ 23 mark _ _ 18 they _ PRON PRP _ 23 nsubj _ _ 19 did _ AUX VBD _ 23 aux _ _ 20 for _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 quarter _ NOUN NN _ 16 advcl _ _ 24 a _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 26 nmod:npmod _ _ 26 ago _ ADV RB _ 23 advmod _ _ 27 , _ PUNCT , _ 16 punct _ _ 28 largely _ ADV RB _ 32 advmod _ _ 29 reflecting _ VERB VBG _ 32 dep _ _ 30 deteriorating _ VERB VBG _ 32 amod _ _ 31 chemical _ NOUN NN _ 32 compound _ _ 32 prices _ NOUN NNS _ 16 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 gasoline _ NOUN NN _ 35 compound _ _ 35 profitability _ NOUN NN _ 32 conj _ _ 36 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 gasoline _ NOUN NN _ 3 compound _ _ 3 picture _ NOUN NN _ 5 nsubj _ _ 4 may _ AUX MD _ 5 aux _ _ 5 improve _ VERB VB _ 0 root _ _ 6 this _ DET DT _ 7 det _ _ 7 quarter _ NOUN NN _ 5 nmod:tmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 chemicals _ NOUN NNS _ 12 nsubj _ _ 11 are _ VERB VBP _ 12 cop _ _ 12 likely _ ADJ JJ _ 5 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 remain _ VERB VB _ 12 xcomp _ _ 15 weak _ ADJ JJ _ 14 xcomp _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 industry _ NOUN NN _ 18 compound _ _ 18 executives _ NOUN NNS _ 21 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 analysts _ NOUN NNS _ 18 conj _ _ 21 say _ VERB VBP _ 14 parataxis _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 reducing _ VERB VBG _ 14 xcomp _ _ 24 chances _ NOUN NNS _ 23 dobj _ _ 25 that _ SCONJ WDT _ 28 mark _ _ 26 profits _ NOUN NNS _ 28 nsubj _ _ 27 could _ AUX MD _ 28 aux _ _ 28 equal _ VERB VB _ 24 ccomp _ _ 29 their _ PRON PRP$ _ 31 nmod:poss _ _ 30 year-earlier _ ADJ JJ _ 31 amod _ _ 31 performance _ NOUN NN _ 28 dobj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 industry _ NOUN NN _ 5 nsubj _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 `` _ PUNCT `` _ 5 punct _ _ 5 seeing _ VERB VBG _ 28 ccomp _ _ 6 a _ DET DT _ 7 det _ _ 7 softening _ NOUN VBG _ 5 dobj _ _ 8 somewhat _ ADV RB _ 7 advmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 volume _ NOUN NN _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 certainly _ ADV RB _ 14 advmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 price _ NOUN NN _ 10 conj _ _ 15 in _ ADP IN _ 16 case _ _ 16 petrochemicals _ NOUN NNS _ 7 nmod _ _ 17 , _ PUNCT , _ 28 punct _ _ 18 '' _ PUNCT '' _ 28 punct _ _ 19 Glenn _ PROPN NNP _ 20 compound _ _ 20 Cox _ PROPN NNP _ 28 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 president _ NOUN NN _ 20 appos _ _ 23 of _ ADP IN _ 26 case _ _ 24 Phillips _ PROPN NNP _ 26 compound _ _ 25 Petroleum _ PROPN NNP _ 26 compound _ _ 26 Co. _ PROPN NNP _ 22 nmod _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 in _ ADP IN _ 31 case _ _ 30 an _ DET DT _ 31 det _ _ 31 interview _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 28 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 That _ DET DT _ 3 det _ _ 3 change _ NOUN NN _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 obviously _ ADV RB _ 6 advmod _ _ 6 impact _ VERB VB _ 20 ccomp _ _ 7 third _ ADJ JJ _ 11 amod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 fourth _ ADJ JJ _ 7 conj _ _ 10 quarter _ NOUN NN _ 11 compound _ _ 11 earnings _ NOUN NNS _ 6 dobj _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 industry _ NOUN NN _ 11 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 general _ ADJ JJ _ 15 acl _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 he _ PRON PRP _ 20 nsubj _ _ 20 added _ VERB VBD _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 forecast _ VERB VBN _ 0 root _ _ 5 Phillips _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 results _ NOUN NNS _ 4 dobj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 securities _ NOUN NNS _ 3 compound _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 say _ VERB VBP _ 0 root _ _ 5 Phillips _ NOUN NNP _ 10 nsubj _ _ 6 will _ AUX MD _ 10 aux _ _ 7 be _ VERB VB _ 10 cop _ _ 8 among _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 companies _ NOUN NNS _ 4 ccomp _ _ 11 hard-hit _ ADJ JJ _ 10 amod _ _ 12 by _ ADP IN _ 15 case _ _ 13 weak _ ADJ JJ _ 15 amod _ _ 14 chemical _ NOUN NN _ 15 compound _ _ 15 prices _ NOUN NNS _ 11 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 will _ AUX MD _ 19 aux _ _ 18 probably _ ADV RB _ 19 advmod _ _ 19 post _ VERB VB _ 10 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 drop _ NOUN NN _ 19 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 third-quarter _ ADJ JJ _ 24 amod _ _ 24 earnings _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 So _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 too _ ADV RB _ 9 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 many _ ADJ JJ _ 6 amod _ _ 6 analysts _ NOUN NNS _ 7 nsubj _ _ 7 predict _ VERB VBP _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 will _ AUX MD _ 0 root _ _ 10 Exxon _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 9 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Chevron _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 11 conj _ _ 15 and _ CONJ CC _ 11 cc _ _ 16 Amoco _ PROPN NNP _ 17 compound _ _ 17 Corp _ PROPN NNP _ 11 conj _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Typical _ ADJ JJ _ 2 dep _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 what _ PRON WP _ 4 nsubj _ _ 4 happened _ VERB VBD _ 2 dep _ _ 5 to _ ADP TO _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 price _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 ethylene _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 14 det _ _ 12 major _ ADJ JJ _ 14 amod _ _ 13 commodity _ NOUN NN _ 14 compound _ _ 14 chemical _ NOUN NN _ 9 appos _ _ 15 produced _ VERB VBN _ 14 acl _ _ 16 in _ ADP IN _ 18 case _ _ 17 vast _ ADJ JJ _ 18 amod _ _ 18 amounts _ NOUN NNS _ 15 nmod _ _ 19 by _ ADP IN _ 22 case _ _ 20 many _ ADJ JJ _ 22 amod _ _ 21 oil _ NOUN NN _ 22 compound _ _ 22 companies _ NOUN NNS _ 15 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 plunged _ VERB VBN _ 0 root _ _ 4 13 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 since _ ADP IN _ 7 case _ _ 7 July _ PROPN NNP _ 3 nmod _ _ 8 to _ ADP TO _ 11 case _ _ 9 around _ ADP IN _ 10 advmod _ _ 10 26 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 3 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 pound _ NOUN NN _ 11 nmod:npmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV IN _ 5 advmod _ _ 4 ethylene _ NOUN NN _ 5 nsubj _ _ 5 sold _ VERB VBN _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 33 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 peaking _ VERB VBG _ 5 xcomp _ _ 11 at _ ADP IN _ 14 case _ _ 12 about _ ADV IN _ 13 advmod _ _ 13 34 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 10 nmod _ _ 15 last _ ADJ JJ _ 16 amod _ _ 16 December _ PROPN NNP _ 10 nmod:tmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 reason _ NOUN NN _ 10 nsubj _ _ 4 for _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 chemical _ NOUN NN _ 8 compound _ _ 7 price _ NOUN NN _ 8 compound _ _ 8 retreat _ NOUN NN _ 3 nmod _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 overexpansion _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 Beginning _ VERB VBG _ 3 case _ _ 2 in _ ADP IN _ 3 case _ _ 3 mid-1987 _ NOUN NN _ 6 advcl _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 prices _ NOUN NNS _ 6 nsubj _ _ 6 began _ VERB VBD _ 0 root _ _ 7 accelerating _ VERB VBG _ 6 xcomp _ _ 8 as _ SCONJ IN _ 17 mark _ _ 9 a _ DET DT _ 12 det _ _ 10 growing _ VERB VBG _ 12 amod _ _ 11 U.S. _ PROPN NNP _ 12 compound _ _ 12 economy _ NOUN NN _ 17 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 the _ DET DT _ 16 det _ _ 15 weak _ ADJ JJ _ 16 amod _ _ 16 dollar _ NOUN NN _ 12 conj _ _ 17 spurred _ VERB VBN _ 6 advcl _ _ 18 demand _ NOUN NN _ 17 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Companies _ NOUN NNS _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 capacity _ NOUN NN _ 2 dobj _ _ 4 furiously _ ADV RB _ 2 advmod _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 greatly _ ADV RB _ 4 advmod _ _ 4 increased _ VERB VBN _ 5 amod _ _ 5 supplies _ NOUN NNS _ 9 nsubj _ _ 6 are _ VERB VBP _ 9 cop _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 while _ SCONJ IN _ 15 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 dollar _ NOUN NN _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 stronger _ ADJ JJR _ 9 advcl _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 domestic _ ADJ JJ _ 20 amod _ _ 19 economic _ ADJ JJ _ 20 amod _ _ 20 growth _ NOUN NN _ 22 nsubj _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 slower _ ADJ JJR _ 15 conj _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Third-quarter _ ADJ JJ _ 2 amod _ _ 2 profits _ NOUN NNS _ 6 nsubj _ _ 3 from _ ADP IN _ 4 case _ _ 4 gasoline _ NOUN NN _ 2 nmod _ _ 5 were _ VERB VBD _ 6 cop _ _ 6 weaker _ ADJ JJR _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 Refining _ NOUN NN _ 3 compound _ _ 3 margins _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 good _ ADJ JJ _ 23 ccomp _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 year _ NOUN NN _ 10 nmod _ _ 14 and _ CONJ CC _ 6 cc _ _ 15 generally _ ADV RB _ 18 advmod _ _ 16 not _ ADV RB _ 18 neg _ _ 17 very _ ADV RB _ 18 advmod _ _ 18 good _ ADJ JJ _ 6 conj _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 18 nmod:tmod _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 William _ PROPN NNP _ 25 compound _ _ 25 Randol _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 29 det _ _ 28 securities _ NOUN NNS _ 29 compound _ _ 29 analyst _ NOUN NN _ 25 appos _ _ 30 at _ ADP IN _ 33 case _ _ 31 First _ PROPN NNP _ 33 compound _ _ 32 Boston _ PROPN NNP _ 33 compound _ _ 33 Corp _ PROPN NNP _ 29 nmod _ _ 34 . _ PUNCT . _ 23 punct _ _ 1 Oil _ NOUN NN _ 3 compound _ _ 2 company _ NOUN NN _ 3 compound _ _ 3 refineries _ NOUN NNS _ 4 nsubj _ _ 4 ran _ VERB VBD _ 0 root _ _ 5 flat _ ADV JJ _ 6 advmod _ _ 6 out _ ADV IN _ 4 advmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 prepare _ VERB VB _ 4 xcomp _ _ 9 for _ ADP IN _ 14 case _ _ 10 a _ DET DT _ 14 det _ _ 11 robust _ ADJ JJ _ 14 amod _ _ 12 holiday _ NOUN NN _ 14 compound _ _ 13 driving _ NOUN VBG _ 14 compound _ _ 14 season _ NOUN NN _ 8 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 July _ PROPN NNP _ 14 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 August _ PROPN NNP _ 16 conj _ _ 19 that _ PRON WDT _ 22 nsubj _ _ 20 did _ AUX VBD _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 materialize _ VERB VB _ 14 acl:relcl _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 excess _ ADJ JJ _ 3 amod _ _ 3 supply _ NOUN NN _ 4 nsubj _ _ 4 pushed _ VERB VBD _ 0 root _ _ 5 gasoline _ NOUN NN _ 6 compound _ _ 6 prices _ NOUN NNS _ 4 dobj _ _ 7 down _ ADP RP _ 4 advmod _ _ 8 in _ ADP IN _ 10 case _ _ 9 that _ DET DT _ 10 det _ _ 10 period _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 crude _ ADJ JJ _ 6 amod _ _ 5 oil _ NOUN NN _ 6 compound _ _ 6 prices _ NOUN NNS _ 7 nsubj _ _ 7 were _ VERB VBD _ 0 root _ _ 8 up _ ADV IN _ 7 advmod _ _ 9 some _ DET DT _ 8 nmod:npmod _ _ 10 from _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 13 nmod:npmod _ _ 13 earlier _ ADV RBR _ 8 advcl _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 further _ ADV RB _ 16 advmod _ _ 16 pressuring _ VERB VBG _ 7 ccomp _ _ 17 profitability _ NOUN NN _ 16 dobj _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Refiners _ NOUN NNS _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 margins _ NOUN NNS _ 4 nsubj _ _ 4 picked _ VERB VBD _ 2 ccomp _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 in _ ADP IN _ 7 case _ _ 7 September _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 many _ ADJ JJ _ 12 amod _ _ 11 industry _ NOUN NN _ 12 compound _ _ 12 officials _ NOUN NNS _ 13 nsubj _ _ 13 believe _ VERB VBP _ 2 conj _ _ 14 gasoline _ NOUN NN _ 15 compound _ _ 15 profits _ NOUN NNS _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 rebound _ VERB VB _ 13 ccomp _ _ 18 this _ DET DT _ 19 det _ _ 19 quarter _ NOUN NN _ 17 nmod:tmod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 though _ SCONJ IN _ 23 mark _ _ 22 still _ ADV RB _ 23 dep _ _ 23 not _ PART RB _ 17 advcl _ _ 24 to _ ADP TO _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 level _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 1988 _ NUM CD _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 fourth _ ADJ JJ _ 31 amod _ _ 31 quarter _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 During _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 1988 _ NUM CD _ 5 nummod _ _ 4 second _ ADJ JJ _ 5 amod _ _ 5 half _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 many _ ADJ JJ _ 8 amod _ _ 8 companies _ NOUN NNS _ 9 nsubj _ _ 9 posted _ VERB VBD _ 0 root _ _ 10 record _ ADJ NN _ 11 amod _ _ 11 gasoline _ NOUN NN _ 9 dobj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 chemical _ NOUN NN _ 14 compound _ _ 14 profits _ NOUN NNS _ 11 conj _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Crude _ ADJ JJ _ 3 amod _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 production _ NOUN NN _ 5 nsubj _ _ 4 may _ AUX MD _ 5 aux _ _ 5 turn _ VERB VB _ 0 root _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 to _ PART TO _ 12 mark _ _ 8 be _ VERB VB _ 12 cop _ _ 9 the _ DET DT _ 12 det _ _ 10 most _ ADV RBS _ 11 advmod _ _ 11 surprising _ ADJ JJ _ 12 amod _ _ 12 element _ NOUN NN _ 5 xcomp _ _ 13 of _ ADP IN _ 16 case _ _ 14 companies _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 earnings _ NOUN NNS _ 12 nmod _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 16 nmod:tmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Prices _ NOUN NNS _ 20 nsubj _ _ 2 -- _ PUNCT : _ 20 punct _ _ 3 averaging _ VERB VBG _ 20 parataxis _ _ 4 roughly _ ADV RB _ 5 advmod _ _ 5 $ _ SYM $ _ 9 nmod:npmod _ _ 6 2 _ NUM CD _ 5 nummod _ _ 7 a _ DET DT _ 8 det _ _ 8 barrel _ NOUN NN _ 5 nmod:npmod _ _ 9 higher _ ADJ JJR _ 3 advmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 third _ ADJ JJ _ 13 amod _ _ 13 quarter _ NOUN NN _ 9 nmod _ _ 14 than _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 year _ NOUN NN _ 9 nmod _ _ 17 earlier _ ADV RBR _ 16 advmod _ _ 18 -- _ PUNCT : _ 20 punct _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 stayed _ VERB VBN _ 0 root _ _ 21 well _ ADV RB _ 26 advmod _ _ 22 above _ ADP IN _ 26 case _ _ 23 most _ ADJ JJS _ 24 amod _ _ 24 companies _ NOUN NNS _ 26 nmod:poss _ _ 25 ' _ PART POS _ 24 case _ _ 26 expectations _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 20 punct _ _ 1 Demand _ NOUN NN _ 5 nsubj _ _ 2 has _ AUX VBZ _ 5 aux _ _ 3 been _ VERB VBN _ 5 cop _ _ 4 much _ ADV RB _ 5 advmod _ _ 5 stronger _ ADJ JJR _ 0 root _ _ 6 than _ SCONJ IN _ 7 mark _ _ 7 anticipated _ VERB VBN _ 5 ccomp _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 typically _ ADV RB _ 12 advmod _ _ 12 accelerates _ VERB VBZ _ 5 conj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 fourth _ ADJ JJ _ 16 amod _ _ 16 quarter _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 could _ AUX MD _ 4 aux _ _ 4 see _ VERB VB _ 12 ccomp _ _ 5 higher _ ADJ JJR _ 7 amod _ _ 6 oil _ NOUN NN _ 7 compound _ _ 7 prices _ NOUN NNS _ 4 dobj _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 4 nmod:tmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Bryan _ PROPN NNP _ 14 compound _ _ 14 Jacoboski _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 an _ DET DT _ 17 det _ _ 17 analyst _ NOUN NN _ 14 appos _ _ 18 at _ ADP IN _ 20 case _ _ 19 PaineWebber _ PROPN NNP _ 20 compound _ _ 20 Inc _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 12 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 translate _ VERB VB _ 0 root _ _ 4 into _ ADP IN _ 8 case _ _ 5 sharply _ ADV RB _ 6 advmod _ _ 6 higher _ ADJ JJR _ 8 amod _ _ 7 production _ NOUN NN _ 8 compound _ _ 8 profits _ NOUN NNS _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 particularly _ ADV RB _ 8 nmod _ _ 11 compared _ VERB VBN _ 10 case _ _ 12 with _ ADP IN _ 14 case _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 dep _ _ 15 when _ ADV WRB _ 19 advmod _ _ 16 oil _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 19 nsubj _ _ 18 steadily _ ADV RB _ 19 advmod _ _ 19 fell _ VERB VBD _ 14 acl:relcl _ _ 20 to _ ADP TO _ 22 case _ _ 21 below _ ADP IN _ 22 advmod _ _ 22 $ _ SYM $ _ 19 nmod _ _ 23 13 _ NUM CD _ 22 nummod _ _ 24 a _ DET DT _ 25 det _ _ 25 barrel _ NOUN NN _ 22 nmod:npmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 fourth _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 19 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 6 mark _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 6 nsubj _ _ 4 have _ AUX VBP _ 6 aux _ _ 5 been _ VERB VBN _ 6 cop _ _ 6 better _ ADJ JJR _ 15 advcl _ _ 7 than _ SCONJ IN _ 8 mark _ _ 8 expected _ VERB VBN _ 6 ccomp _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 natural _ ADJ JJ _ 12 amod _ _ 11 gas _ NOUN NN _ 12 compound _ _ 12 prices _ NOUN NNS _ 15 nsubj _ _ 13 have _ AUX VBP _ 15 aux _ _ 14 been _ VERB VBN _ 15 cop _ _ 15 worse _ ADJ JJR _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 averaged _ VERB VBD _ 0 root _ _ 8 about _ ADV IN _ 9 advmod _ _ 9 5 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 11 nmod:npmod _ _ 11 less _ ADJ JJR _ 7 xcomp _ _ 12 than _ SCONJ IN _ 16 mark _ _ 13 they _ PRON PRP _ 16 nsubj _ _ 14 were _ AUX VBD _ 16 aux _ _ 15 in _ ADP IN _ 16 case _ _ 16 1988 _ NUM CD _ 11 ccomp _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 main _ ADJ JJ _ 3 amod _ _ 3 reason _ NOUN NN _ 4 nsubj _ _ 4 remains _ VERB VBZ _ 0 root _ _ 5 weather _ NOUN NN _ 4 xcomp _ _ 6 . _ PUNCT . _ 4 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 summer _ NOUN NN _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 notable _ ADJ JJ _ 0 root _ _ 5 for _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 heat _ NOUN NN _ 8 compound _ _ 8 wave _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 drought _ NOUN NN _ 8 conj _ _ 11 that _ PRON WDT _ 12 nsubj _ _ 12 caused _ VERB VBD _ 8 acl:relcl _ _ 13 utilities _ NOUN NNS _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 burn _ VERB VB _ 12 xcomp _ _ 16 more _ ADJ JJR _ 18 amod _ _ 17 natural _ ADJ JJ _ 18 amod _ _ 18 gas _ NOUN NN _ 15 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 feed _ VERB VB _ 15 advcl _ _ 21 increased _ ADJ VBN _ 23 amod _ _ 22 electrical _ ADJ JJ _ 23 amod _ _ 23 demand _ NOUN NN _ 20 dobj _ _ 24 from _ ADP IN _ 27 case _ _ 25 air _ NOUN NN _ 27 compound _ _ 26 conditioning _ NOUN NN _ 27 compound _ _ 27 use _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 summer _ NOUN NN _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 on _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 other _ ADJ JJ _ 7 amod _ _ 7 hand _ NOUN NN _ 9 nmod _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 had _ VERB VBD _ 0 root _ _ 10 milder _ ADJ JJ _ 11 amod _ _ 11 weather _ NOUN NN _ 9 dobj _ _ 12 than _ ADP IN _ 13 case _ _ 13 usual _ ADJ JJ _ 11 acl _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 've _ AUX VBP _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 disappointed _ ADJ VBN _ 16 ccomp _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 performance _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 natural _ ADJ JJ _ 13 amod _ _ 12 gas _ NOUN NN _ 13 compound _ _ 13 prices _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Cox _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Phillips _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 president _ NOUN NN _ 18 appos _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 The _ DET DT _ 5 det _ _ 3 lagging _ VERB JJ _ 5 amod _ _ 4 gas _ NOUN NN _ 5 compound _ _ 5 price _ NOUN NN _ 8 nsubj _ _ 6 is _ AUX VBZ _ 8 aux _ _ 7 not _ PART RB _ 8 neg _ _ 8 going _ VERB VBG _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 assist _ VERB VB _ 8 xcomp _ _ 11 fourth _ ADJ JJ _ 13 amod _ _ 12 quarter _ NOUN NN _ 13 compound _ _ 13 performance _ NOUN NN _ 10 dobj _ _ 14 as _ SCONJ IN _ 17 mark _ _ 15 many _ ADJ JJ _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 expected _ VERB VBN _ 10 advcl _ _ 18 . _ PUNCT . _ 8 punct _ _ 19 '' _ PUNCT '' _ 8 punct _ _ 1 Going _ VERB VBG _ 18 advcl _ _ 2 into _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 fourth _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 18 punct _ _ 7 natural _ ADJ JJ _ 9 amod _ _ 8 gas _ NOUN NN _ 9 compound _ _ 9 prices _ NOUN NNS _ 18 nsubj _ _ 10 are _ VERB VBP _ 18 cop _ _ 11 anywhere _ ADV RB _ 17 advmod _ _ 12 from _ ADP IN _ 17 advmod _ _ 13 8 _ NUM CD _ 17 compound _ _ 14 % _ SYM NN _ 17 dep _ _ 15 to _ ADP TO _ 17 dep _ _ 16 17 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 nmod:npmod _ _ 18 lower _ ADJ JJR _ 0 root _ _ 19 than _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 22 nmod:npmod _ _ 22 earlier _ ADV RBR _ 18 advcl _ _ 23 . _ PUNCT . _ 18 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 13 nmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 natural _ ADJ JJ _ 5 amod _ _ 5 gas _ NOUN NN _ 13 nsubj _ _ 6 currently _ ADV RB _ 7 advmod _ _ 7 produced _ VERB VBN _ 5 acl _ _ 8 along _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Gulf _ PROPN NNP _ 11 compound _ _ 11 Coast _ PROPN NNP _ 7 nmod _ _ 12 is _ AUX VBZ _ 13 aux _ _ 13 selling _ VERB VBG _ 0 root _ _ 14 on _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 spot _ ADJ NN _ 17 amod _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 around _ ADP IN _ 20 advmod _ _ 20 $ _ SYM $ _ 13 nmod _ _ 21 1.47 _ NUM CD _ 20 nummod _ _ 22 a _ DET DT _ 23 advmod _ _ 23 thousand _ NUM CD _ 25 nummod _ _ 24 cubic _ ADJ JJ _ 25 amod _ _ 25 feet _ NOUN NNS _ 20 nmod:npmod _ _ 26 , _ PUNCT , _ 13 punct _ _ 27 down _ ADV RB _ 13 advmod _ _ 28 13 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 27 nmod:npmod _ _ 30 from _ ADP IN _ 32 case _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 1.69 _ NUM CD _ 27 nmod _ _ 33 a _ DET DT _ 34 advmod _ _ 34 thousand _ NUM CD _ 36 nummod _ _ 35 cubic _ ADJ JJ _ 36 amod _ _ 36 feet _ NOUN NNS _ 32 nmod:npmod _ _ 37 a _ DET DT _ 38 det _ _ 38 year _ NOUN NN _ 39 nmod:npmod _ _ 39 ago _ ADV RB _ 32 advmod _ _ 40 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 26 nsubj _ _ 4 , _ PUNCT , _ 26 punct _ _ 5 trying _ VERB VBG _ 26 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 blunt _ ADJ VB _ 5 xcomp _ _ 8 growing _ VERB VBG _ 9 amod _ _ 9 demands _ NOUN NNS _ 7 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 Western _ PROPN NNP _ 12 compound _ _ 12 Europe _ PROPN NNP _ 9 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 relaxation _ NOUN NN _ 9 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 controls _ NOUN NNS _ 15 nmod _ _ 18 on _ ADP IN _ 19 case _ _ 19 exports _ NOUN NNS _ 17 nmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 Soviet _ ADJ JJ _ 23 amod _ _ 23 bloc _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 is _ AUX VBZ _ 26 aux _ _ 26 questioning _ VERB VBG _ 0 root _ _ 27 whether _ SCONJ IN _ 36 mark _ _ 28 Italy _ PROPN NNP _ 33 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Ing _ PROPN NNP _ 33 compound _ _ 31 . _ PUNCT . _ 33 punct _ _ 32 C. _ PROPN NNP _ 33 compound _ _ 33 Olivetti _ PROPN NNP _ 36 nsubj _ _ 34 & _ CONJ CC _ 33 cc _ _ 35 Co. _ PROPN NNP _ 33 conj _ _ 36 supplied _ VERB VBD _ 26 ccomp _ _ 37 militarily _ ADV RB _ 38 advmod _ _ 38 valuable _ ADJ JJ _ 39 amod _ _ 39 technology _ NOUN NN _ 36 dobj _ _ 40 to _ ADP TO _ 42 case _ _ 41 the _ DET DT _ 42 det _ _ 42 Soviets _ PROPN NNPS _ 36 nmod _ _ 43 . _ PUNCT . _ 26 punct _ _ 1 Most _ ADJ JJS _ 31 nsubjpass _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 Western _ ADJ JJ _ 6 amod _ _ 5 European _ PROPN JJ _ 6 compound _ _ 6 members _ NOUN NNS _ 1 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 Coordinating _ PROPN NNP _ 9 compound _ _ 9 Committee _ PROPN NNP _ 6 nmod _ _ 10 on _ ADP IN _ 13 case _ _ 11 Multilateral _ PROPN NNP _ 13 compound _ _ 12 Export _ PROPN NNP _ 13 compound _ _ 13 Controls _ PROPN NNP _ 9 nmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 unofficial _ ADJ JJ _ 17 amod _ _ 17 forum _ NOUN NN _ 9 appos _ _ 18 through _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 25 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 25 nsubj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 allies _ NOUN NNS _ 21 conj _ _ 25 align _ VERB VBP _ 17 acl:relcl _ _ 26 their _ PRON PRP$ _ 28 nmod:poss _ _ 27 export-control _ ADJ JJ _ 28 amod _ _ 28 policies _ NOUN NNS _ 25 dobj _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 are _ AUX VBP _ 31 auxpass _ _ 31 expected _ VERB VBN _ 0 root _ _ 32 to _ PART TO _ 33 mark _ _ 33 argue _ VERB VB _ 31 xcomp _ _ 34 for _ ADP IN _ 38 case _ _ 35 more _ ADV JJR _ 36 advmod _ _ 36 liberal _ ADJ JJ _ 38 amod _ _ 37 export _ NOUN NN _ 38 compound _ _ 38 rules _ NOUN NNS _ 33 nmod _ _ 39 at _ ADP IN _ 41 case _ _ 40 a _ DET DT _ 41 det _ _ 41 meeting _ NOUN NN _ 33 nmod _ _ 42 to _ PART TO _ 44 mark _ _ 43 be _ AUX VB _ 44 auxpass _ _ 44 held _ VERB VBN _ 41 acl _ _ 45 in _ ADP IN _ 46 case _ _ 46 Paris _ PROPN NNP _ 44 nmod _ _ 47 Oct. _ PROPN NNP _ 44 nmod:tmod _ _ 48 25 _ NUM CD _ 47 nummod _ _ 49 and _ CONJ CC _ 47 cc _ _ 50 26 _ NUM CD _ 47 conj _ _ 51 . _ PUNCT . _ 31 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 plan _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 press _ VERB VB _ 2 xcomp _ _ 5 specifically _ ADV RB _ 8 advmod _ _ 6 for _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 relaxation _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 rules _ NOUN NNS _ 8 nmod _ _ 11 governing _ VERB VBG _ 10 acl _ _ 12 exports _ NOUN NNS _ 11 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 machine _ NOUN NN _ 15 compound _ _ 15 tools _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 computers _ NOUN NNS _ 15 conj _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 other _ ADJ JJ _ 21 amod _ _ 20 high-technology _ NOUN NN _ 21 compound _ _ 21 products _ NOUN NNS _ 15 conj _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 Bush _ PROPN NNP _ 4 compound _ _ 4 administration _ NOUN NN _ 5 nsubj _ _ 5 says _ VERB VBZ _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 wants _ VERB VBZ _ 5 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 see _ VERB VB _ 7 xcomp _ _ 10 evidence _ NOUN NN _ 9 dobj _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 all _ DET DT _ 14 det _ _ 13 Cocom _ PROPN NNP _ 14 compound _ _ 14 members _ NOUN NNS _ 16 nsubj _ _ 15 are _ AUX VBP _ 16 aux _ _ 16 complying _ VERB VBG _ 10 ccomp _ _ 17 fully _ ADV RB _ 16 advmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 existing _ ADJ VBG _ 21 amod _ _ 20 export-control _ ADJ JJ _ 21 amod _ _ 21 procedures _ NOUN NNS _ 16 nmod _ _ 22 before _ SCONJ IN _ 25 mark _ _ 23 it _ PRON PRP _ 25 nsubj _ _ 24 will _ AUX MD _ 25 aux _ _ 25 support _ VERB VB _ 9 advcl _ _ 26 further _ ADJ JJ _ 27 amod _ _ 27 liberalization _ NOUN NN _ 25 dobj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 make _ VERB VB _ 8 advcl _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 point _ NOUN NN _ 2 dobj _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 challenging _ VERB VBG _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 Italian _ ADJ JJ _ 11 amod _ _ 11 government _ NOUN NN _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 explain _ VERB VB _ 8 advcl _ _ 14 reports _ NOUN NNS _ 13 dobj _ _ 15 that _ SCONJ IN _ 19 mark _ _ 16 Olivetti _ PROPN NNP _ 19 nsubj _ _ 17 may _ AUX MD _ 19 aux _ _ 18 have _ AUX VB _ 19 aux _ _ 19 supplied _ VERB VBN _ 14 ccomp _ _ 20 the _ DET DT _ 22 det _ _ 21 Soviet _ PROPN NNP _ 22 compound _ _ 22 Union _ PROPN NNP _ 19 dobj _ _ 23 with _ ADP IN _ 26 case _ _ 24 sophisticated _ ADJ JJ _ 26 amod _ _ 25 computer-driven _ ADJ JJ _ 26 amod _ _ 26 devices _ NOUN NNS _ 19 nmod _ _ 27 that _ PRON WDT _ 30 nsubjpass _ _ 28 could _ AUX MD _ 30 aux _ _ 29 be _ AUX VB _ 30 auxpass _ _ 30 used _ VERB VBN _ 26 acl:relcl _ _ 31 to _ PART TO _ 32 mark _ _ 32 build _ VERB VB _ 30 xcomp _ _ 33 parts _ NOUN NNS _ 32 dobj _ _ 34 for _ ADP IN _ 36 case _ _ 35 combat _ NOUN NN _ 36 compound _ _ 36 aircraft _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 London _ PROPN NNP _ 4 compound _ _ 3 Sunday _ PROPN NNP _ 4 compound _ _ 4 Times _ PROPN NNP _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 8 nsubj _ _ 7 first _ ADV RB _ 8 advmod _ _ 8 reported _ VERB VBD _ 4 acl:relcl _ _ 9 the _ DET DT _ 11 det _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 concerns _ NOUN NNS _ 8 dobj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 cited _ VERB VBD _ 0 root _ _ 14 a _ DET DT _ 17 det _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 intelligence _ NOUN NN _ 17 compound _ _ 17 report _ NOUN NN _ 13 dobj _ _ 18 as _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 source _ NOUN NN _ 13 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 allegations _ NOUN NNS _ 20 nmod _ _ 24 that _ SCONJ WDT _ 26 mark _ _ 25 Olivetti _ PROPN NNP _ 26 nsubj _ _ 26 exported _ VERB VBD _ 23 ccomp _ _ 27 $ _ SYM $ _ 26 dobj _ _ 28 25 _ NUM CD _ 29 compound _ _ 29 million _ NUM CD _ 27 nummod _ _ 30 in _ ADP IN _ 38 case _ _ 31 `` _ PUNCT `` _ 38 punct _ _ 32 embargoed _ ADJ JJ _ 38 amod _ _ 33 , _ PUNCT , _ 38 punct _ _ 34 state-of-the-art _ ADJ JJ _ 38 amod _ _ 35 , _ PUNCT , _ 38 punct _ _ 36 flexible _ ADJ JJ _ 38 amod _ _ 37 manufacturing _ NOUN NN _ 38 compound _ _ 38 systems _ NOUN NNS _ 27 nmod _ _ 39 to _ ADP TO _ 43 case _ _ 40 the _ DET DT _ 43 det _ _ 41 Soviet _ ADJ JJ _ 43 amod _ _ 42 aviation _ NOUN NN _ 43 compound _ _ 43 industry _ NOUN NN _ 26 nmod _ _ 44 . _ PUNCT . _ 13 punct _ _ 45 '' _ PUNCT '' _ 13 punct _ _ 1 Olivetti _ PROPN NNP _ 3 nsubj _ _ 2 reportedly _ ADV RB _ 3 advmod _ _ 3 began _ VERB VBD _ 0 root _ _ 4 shipping _ VERB VBG _ 3 xcomp _ _ 5 these _ DET DT _ 6 det _ _ 6 tools _ NOUN NNS _ 4 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 1984 _ NUM CD _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 State _ PROPN NNP _ 4 compound _ _ 3 Department _ PROPN NNP _ 4 compound _ _ 4 spokesman _ NOUN NN _ 5 nsubj _ _ 5 acknowledged _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 10 nsubj _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 discussing _ VERB VBG _ 5 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 allegations _ NOUN NNS _ 10 dobj _ _ 13 with _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 Italian _ ADJ JJ _ 16 amod _ _ 16 government _ NOUN NN _ 10 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 Cocom _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 but _ CONJ CC _ 5 cc _ _ 21 declined _ VERB VBD _ 5 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 confirm _ VERB VB _ 21 xcomp _ _ 24 any _ DET DT _ 25 det _ _ 25 details _ NOUN NNS _ 23 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Italian _ ADJ JJ _ 4 amod _ _ 2 President _ PROPN NNP _ 4 compound _ _ 3 Francesco _ PROPN NNP _ 4 compound _ _ 4 Cossiga _ PROPN NNP _ 5 nsubj _ _ 5 promised _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 quick _ ADJ JJ _ 8 amod _ _ 8 investigation _ NOUN NN _ 5 dobj _ _ 9 into _ SCONJ IN _ 12 mark _ _ 10 whether _ SCONJ IN _ 12 mark _ _ 11 Olivetti _ PROPN NNP _ 12 nsubj _ _ 12 broke _ VERB VBD _ 8 acl _ _ 13 Cocom _ PROPN NNP _ 14 compound _ _ 14 rules _ NOUN NNS _ 12 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 President _ PROPN NNP _ 2 compound _ _ 2 Bush _ PROPN NNP _ 3 nsubj _ _ 3 called _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 attention _ NOUN NN _ 3 dobj _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 matter _ NOUN NN _ 3 nmod _ _ 9 during _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Italian _ ADJ JJ _ 12 amod _ _ 12 leader _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 visit _ NOUN NN _ 3 nmod _ _ 15 here _ ADV RB _ 14 advmod _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 week _ NOUN NN _ 14 nmod:tmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Olivetti _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 denied _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 violated _ VERB VBD _ 3 ccomp _ _ 7 Cocom _ PROPN NNP _ 8 compound _ _ 8 rules _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 asserting _ VERB VBG _ 3 xcomp _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 reported _ ADJ VBN _ 14 amod _ _ 14 shipments _ NOUN NNS _ 17 nsubjpass _ _ 15 were _ AUX VBD _ 17 auxpass _ _ 16 properly _ ADV RB _ 17 advmod _ _ 17 licensed _ VERB VBN _ 10 ccomp _ _ 18 by _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Italian _ ADJ JJ _ 21 amod _ _ 21 authorities _ NOUN NNS _ 17 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 11 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 legality _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 these _ DET DT _ 6 det _ _ 6 sales _ NOUN NNS _ 3 nmod _ _ 7 is _ VERB VBZ _ 11 cop _ _ 8 still _ ADV RB _ 11 advmod _ _ 9 an _ DET DT _ 11 det _ _ 10 open _ ADJ JJ _ 11 amod _ _ 11 question _ NOUN NN _ 19 advcl _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 disclosure _ NOUN NN _ 19 nsubjpass _ _ 15 could _ AUX MD _ 19 aux _ _ 16 n't _ PART RB _ 19 neg _ _ 17 be _ AUX VB _ 19 auxpass _ _ 18 better _ ADV JJR _ 19 advmod _ _ 19 timed _ VERB VBN _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 support _ VERB VB _ 19 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 position _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 export-control _ ADJ JJ _ 26 amod _ _ 26 hawks _ NOUN NNS _ 23 nmod _ _ 27 in _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 Pentagon _ PROPN NNP _ 26 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 the _ DET DT _ 33 det _ _ 32 intelligence _ NOUN NN _ 33 compound _ _ 33 community _ NOUN NN _ 29 conj _ _ 34 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 20 ccomp _ _ 4 to _ ADP TO _ 5 case _ _ 5 me _ PRON PRP _ 3 nmod _ _ 6 that _ SCONJ IN _ 11 mark _ _ 7 a _ DET DT _ 8 det _ _ 8 story _ NOUN NN _ 11 nsubj _ _ 9 like _ ADP IN _ 10 case _ _ 10 this _ PRON DT _ 8 nmod _ _ 11 breaks _ VERB NNS _ 3 ccomp _ _ 12 just _ ADV RB _ 17 advmod _ _ 13 before _ ADP IN _ 17 case _ _ 14 every _ DET DT _ 17 det _ _ 15 important _ ADJ JJ _ 17 amod _ _ 16 Cocom _ PROPN NNP _ 17 compound _ _ 17 meeting _ NOUN NN _ 11 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 Washington _ PROPN NNP _ 23 compound _ _ 23 lobbyist _ NOUN NN _ 20 nsubj _ _ 24 for _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 number _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 30 case _ _ 28 U.S. _ PROPN NNP _ 30 compound _ _ 29 computer _ NOUN NN _ 30 compound _ _ 30 companies _ NOUN NNS _ 26 nmod _ _ 31 . _ PUNCT . _ 20 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 sent _ VERB VBN _ 0 root _ _ 6 conflicting _ ADJ VBG _ 7 amod _ _ 7 signals _ NOUN NNS _ 5 dobj _ _ 8 about _ ADP IN _ 11 case _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 export-control _ ADJ JJ _ 11 amod _ _ 11 policies _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 reflecting _ VERB VBG _ 5 advcl _ _ 14 unhealed _ ADJ JJ _ 15 amod _ _ 15 divisions _ NOUN NNS _ 13 dobj _ _ 16 among _ ADP IN _ 19 case _ _ 17 several _ ADJ JJ _ 19 amod _ _ 18 competing _ VERB VBG _ 19 amod _ _ 19 agencies _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 summer _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Bush _ PROPN NNP _ 6 nsubj _ _ 6 moved _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 administration _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 direction _ NOUN NN _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 gradual _ ADJ JJ _ 14 amod _ _ 14 liberalization _ NOUN NN _ 11 nmod _ _ 15 when _ ADV WRB _ 17 advmod _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 told _ VERB VBD _ 6 advcl _ _ 18 a _ DET DT _ 23 det _ _ 19 North _ PROPN NNP _ 23 compound _ _ 20 Atlantic _ PROPN NNP _ 23 compound _ _ 21 Treaty _ PROPN NNP _ 23 compound _ _ 22 Organization _ PROPN NNP _ 23 compound _ _ 23 meeting _ NOUN NN _ 17 dobj _ _ 24 that _ SCONJ IN _ 27 mark _ _ 25 he _ PRON PRP _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 allow _ VERB VB _ 17 ccomp _ _ 28 some _ DET DT _ 29 det _ _ 29 exceptions _ NOUN NNS _ 27 dobj _ _ 30 to _ ADP TO _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 Cocom _ PROPN NNP _ 33 compound _ _ 33 embargo _ NOUN NN _ 29 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 strategic _ ADJ JJ _ 36 amod _ _ 36 goods _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 more _ ADV RBR _ 3 advmod _ _ 3 recently _ ADV RB _ 12 advmod _ _ 4 , _ PUNCT , _ 12 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Pentagon _ PROPN NNP _ 12 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 Commerce _ PROPN NNP _ 10 compound _ _ 10 Department _ PROPN NNP _ 6 conj _ _ 11 openly _ ADV RB _ 12 advmod _ _ 12 feuded _ VERB VBD _ 0 root _ _ 13 over _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 extent _ NOUN NN _ 12 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 which _ PRON WDT _ 20 nmod _ _ 18 Cocom _ PROPN NNP _ 20 nsubj _ _ 19 should _ AUX MD _ 20 aux _ _ 20 liberalize _ VERB VB _ 15 acl:relcl _ _ 21 exports _ NOUN NNS _ 20 dobj _ _ 22 of _ ADP IN _ 24 case _ _ 23 personal _ ADJ JJ _ 24 amod _ _ 24 computers _ NOUN NNS _ 21 nmod _ _ 25 to _ ADP TO _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 bloc _ NOUN NN _ 21 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 However _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 these _ DET DT _ 4 det _ _ 4 agencies _ NOUN NNS _ 6 nsubj _ _ 5 generally _ ADV RB _ 6 advmod _ _ 6 agree _ VERB VBP _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 West _ PROPN NNP _ 12 nsubj _ _ 10 should _ AUX MD _ 12 aux _ _ 11 be _ VERB VB _ 12 cop _ _ 12 cautious _ ADJ JJ _ 6 ccomp _ _ 13 about _ ADP IN _ 16 case _ _ 14 any _ DET DT _ 16 det _ _ 15 further _ ADJ JJ _ 16 amod _ _ 16 liberalization _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 21 ccomp _ _ 4 no _ DET DT _ 5 neg _ _ 5 evidence _ NOUN NN _ 3 nsubj _ _ 6 that _ SCONJ IN _ 18 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 Soviet _ ADJ JJ _ 9 amod _ _ 9 program _ NOUN NN _ 18 nsubj _ _ 10 to _ PART TO _ 14 mark _ _ 11 -LRB- _ PUNCT -LRB- _ 12 punct _ _ 12 illegally _ ADV RB _ 14 dep _ _ 13 -RRB- _ PUNCT -RRB- _ 12 punct _ _ 14 acquire _ VERB VB _ 9 acl _ _ 15 Western _ ADJ JJ _ 16 amod _ _ 16 technology _ NOUN NN _ 14 dobj _ _ 17 has _ AUX VBZ _ 18 aux _ _ 18 diminished _ VERB VBN _ 5 ccomp _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 a _ DET DT _ 25 det _ _ 23 State _ PROPN NNP _ 25 compound _ _ 24 Department _ PROPN NNP _ 25 compound _ _ 25 spokesman _ NOUN NN _ 21 nsubj _ _ 26 . _ PUNCT . _ 21 punct _ _ 1 Salomon _ PROPN NNP _ 4 compound _ _ 2 Brothers _ PROPN NNP _ 4 compound _ _ 3 International _ PROPN NNP _ 4 compound _ _ 4 Ltd. _ PROPN NNP _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 British _ ADJ JJ _ 8 amod _ _ 8 subsidiary _ NOUN NN _ 4 appos _ _ 9 of _ ADP IN _ 11 case _ _ 10 Salomon _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 announced _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 issue _ VERB VB _ 13 ccomp _ _ 17 warrants _ NOUN NNS _ 16 dobj _ _ 18 on _ ADP IN _ 19 case _ _ 19 shares _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 24 case _ _ 21 Hong _ PROPN NNP _ 24 compound _ _ 22 Kong _ PROPN NNP _ 24 compound _ _ 23 Telecommunications _ PROPN NNPS _ 24 compound _ _ 24 Ltd _ PROPN NNP _ 19 nmod _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 4 nsubj _ _ 3 closely _ ADV RB _ 4 advmod _ _ 4 follows _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 similar _ ADJ JJ _ 7 amod _ _ 7 offer _ NOUN NN _ 4 dobj _ _ 8 by _ ADP IN _ 9 case _ _ 9 Salomon _ PROPN NNP _ 7 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 warrants _ NOUN NNS _ 7 nmod _ _ 12 for _ ADP IN _ 13 case _ _ 13 shares _ NOUN NNS _ 11 nmod _ _ 14 of _ ADP IN _ 19 case _ _ 15 Hongkong _ PROPN NNP _ 19 compound _ _ 16 & _ CONJ CC _ 15 cc _ _ 17 Shanghai _ PROPN NNP _ 15 conj _ _ 18 Banking _ PROPN NNP _ 19 compound _ _ 19 Corp _ PROPN NNP _ 13 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 latest _ ADJ JJS _ 4 amod _ _ 4 offer _ NOUN NN _ 19 nmod _ _ 5 , _ PUNCT , _ 19 punct _ _ 6 HK$ _ SYM $ _ 19 nsubjpass _ _ 7 62.5 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 10 US$ _ SYM $ _ 6 dep _ _ 11 8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 14 of _ ADP IN _ 16 case _ _ 15 three-year _ ADJ JJ _ 16 amod _ _ 16 warrants _ NOUN NNS _ 6 nmod _ _ 17 will _ AUX MD _ 19 aux _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 issued _ VERB VBN _ 0 root _ _ 20 in _ ADP IN _ 21 case _ _ 21 London _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 each _ DET DT _ 24 nsubj _ _ 24 giving _ VERB VBG _ 19 dep _ _ 25 buyers _ NOUN NNS _ 24 iobj _ _ 26 the _ DET DT _ 27 det _ _ 27 right _ NOUN NN _ 24 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 buy _ VERB VB _ 27 acl _ _ 30 one _ NUM CD _ 34 nummod _ _ 31 Hong _ PROPN NNP _ 34 compound _ _ 32 Kong _ PROPN NNP _ 34 compound _ _ 33 Telecommunications _ PROPN NNPS _ 34 compound _ _ 34 share _ NOUN NN _ 29 dobj _ _ 35 at _ ADP IN _ 37 case _ _ 36 a _ DET DT _ 37 det _ _ 37 price _ NOUN NN _ 29 nmod _ _ 38 to _ PART TO _ 40 mark _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 determined _ VERB VBN _ 37 acl _ _ 41 Friday _ PROPN NNP _ 40 nmod:tmod _ _ 42 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 50 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 4 nummod _ _ 4 warrants _ NOUN NNS _ 7 nsubjpass _ _ 5 will _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 priced _ VERB VBN _ 0 root _ _ 8 at _ ADP IN _ 10 case _ _ 9 HK$ _ SYM $ _ 10 dep _ _ 10 1.25 _ NUM CD _ 7 nmod _ _ 11 each _ DET DT _ 10 dep _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 are _ AUX VBP _ 14 auxpass _ _ 14 expected _ VERB VBN _ 7 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 carry _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 18 det _ _ 18 premium _ NOUN NN _ 16 dobj _ _ 19 to _ ADP TO _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 share _ NOUN NN _ 22 compound _ _ 22 price _ NOUN NN _ 18 nmod _ _ 23 of _ ADP IN _ 26 case _ _ 24 about _ ADV IN _ 25 advmod _ _ 25 26 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 18 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 trading _ VERB NN _ 13 nmod _ _ 3 on _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Stock _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 2 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 Hong _ PROPN NNP _ 9 compound _ _ 9 Kong _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 shares _ NOUN NNS _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 Wednesday _ PROPN NNP _ 13 nmod:tmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 HK$ _ SYM $ _ 17 dep _ _ 17 4.80 _ NUM CD _ 13 nmod _ _ 18 each _ DET DT _ 17 dep _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 price _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 shares _ NOUN NNS _ 8 nsubj _ _ 7 would _ AUX MD _ 8 aux _ _ 8 have _ VERB VB _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 rise _ VERB VB _ 8 xcomp _ _ 11 above _ ADP IN _ 13 case _ _ 12 HK$ _ SYM $ _ 13 dep _ _ 13 6.05 _ NUM CD _ 10 nmod _ _ 14 for _ SCONJ IN _ 22 mark _ _ 15 subscribers _ NOUN NNS _ 22 nsubj _ _ 16 to _ ADP TO _ 19 case _ _ 17 Salomon _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 issue _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 22 mark _ _ 21 profitably _ ADV RB _ 22 advmod _ _ 22 convert _ VERB VB _ 10 advcl _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 warrants _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 While _ SCONJ IN _ 9 mark _ _ 2 Hong _ PROPN NNP _ 4 compound _ _ 3 Kong _ PROPN NNP _ 4 compound _ _ 4 companies _ NOUN NNS _ 9 nsubj _ _ 5 have _ AUX VBP _ 9 aux _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 past _ NOUN JJ _ 9 nmod _ _ 9 issued _ VERB JJ _ 21 advcl _ _ 10 warrants _ NOUN NNS _ 9 dobj _ _ 11 on _ ADP IN _ 14 case _ _ 12 their _ PRON PRP$ _ 14 nmod:poss _ _ 13 own _ ADJ JJ _ 14 amod _ _ 14 shares _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 21 punct _ _ 16 Salomon _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 warrants _ NOUN NNS _ 21 nsubj _ _ 19 are _ VERB VBP _ 21 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 first _ ADJ JJ _ 0 root _ _ 22 here _ ADV RB _ 21 advmod _ _ 23 to _ PART TO _ 25 mark _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 issued _ VERB VBN _ 21 acl _ _ 26 by _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 third _ ADJ JJ _ 29 amod _ _ 29 party _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 21 punct _ _ 1 Salomon _ PROPN NNP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 `` _ PUNCT `` _ 4 punct _ _ 4 cover _ VERB VB _ 0 root _ _ 5 '' _ PUNCT '' _ 4 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 warrants _ NOUN NNS _ 4 dobj _ _ 8 by _ SCONJ IN _ 9 mark _ _ 9 buying _ VERB VBG _ 4 advcl _ _ 10 sufficient _ ADJ JJ _ 11 amod _ _ 11 shares _ NOUN NNS _ 9 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 or _ CONJ CC _ 11 cc _ _ 14 options _ NOUN NNS _ 11 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 purchase _ NOUN VB _ 14 dep _ _ 17 shares _ NOUN NNS _ 16 dobj _ _ 18 , _ PUNCT , _ 11 punct _ _ 19 to _ PART TO _ 20 mark _ _ 20 cover _ VERB VB _ 11 acl _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 entire _ ADJ JJ _ 23 amod _ _ 23 position _ NOUN NN _ 20 dobj _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Bankers _ NOUN NNPS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 warrants _ NOUN NNS _ 9 nsubj _ _ 4 for _ ADP IN _ 7 case _ _ 5 Hong _ PROPN NNP _ 6 compound _ _ 6 Kong _ PROPN NNP _ 7 compound _ _ 7 stocks _ NOUN NNS _ 3 nmod _ _ 8 are _ VERB VBP _ 9 cop _ _ 9 attractive _ ADJ JJ _ 2 ccomp _ _ 10 because _ SCONJ IN _ 12 mark _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 give _ VERB VBP _ 9 advcl _ _ 13 foreign _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 12 iobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 wary _ ADJ JJ _ 14 amod _ _ 17 of _ ADP IN _ 18 case _ _ 18 volatility _ NOUN NN _ 16 nmod _ _ 19 in _ ADP IN _ 24 case _ _ 20 the _ DET DT _ 21 det _ _ 21 colony _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 stock _ NOUN NN _ 24 compound _ _ 24 market _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 14 punct _ _ 26 an _ DET DT _ 27 det _ _ 27 opportunity _ NOUN NN _ 12 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 buy _ VERB VB _ 27 acl _ _ 30 shares _ NOUN NNS _ 29 dobj _ _ 31 without _ SCONJ IN _ 32 mark _ _ 32 taking _ VERB VBG _ 29 advcl _ _ 33 too _ ADV RB _ 34 advmod _ _ 34 great _ ADJ JJ _ 36 amod _ _ 35 a _ DET DT _ 36 det _ _ 36 risk _ NOUN NN _ 32 dobj _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Hong _ PROPN NNP _ 5 compound _ _ 3 Kong _ PROPN NNP _ 5 compound _ _ 4 Telecommunications _ PROPN NNPS _ 5 compound _ _ 5 warrants _ NOUN NNS _ 8 nsubj _ _ 6 should _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 attractive _ ADJ JJ _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 buyers _ NOUN NNS _ 8 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Europe _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 bankers _ NOUN NNS _ 16 nsubj _ _ 16 added _ VERB VBD _ 8 parataxis _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 because _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 group _ NOUN NN _ 22 nsubj _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 one _ NUM CD _ 8 advcl _ _ 23 of _ ADP IN _ 25 case _ _ 24 a _ DET DT _ 25 det _ _ 25 handful _ NOUN NN _ 22 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 blue-chip _ ADJ JJ _ 28 amod _ _ 28 stocks _ NOUN NNS _ 25 nmod _ _ 29 on _ ADP IN _ 33 case _ _ 30 the _ DET DT _ 33 det _ _ 31 Hong _ PROPN NNP _ 33 compound _ _ 32 Kong _ PROPN NNP _ 33 compound _ _ 33 market _ NOUN NN _ 28 nmod _ _ 34 that _ PRON WDT _ 35 nsubj _ _ 35 has _ VERB VBZ _ 28 acl:relcl _ _ 36 international _ ADJ JJ _ 37 amod _ _ 37 appeal _ NOUN NN _ 35 dobj _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Santa _ PROPN NNP _ 5 compound _ _ 5 Barbara _ PROPN NNP _ 2 nmod _ _ 6 filed _ VERB VBD _ 0 root _ _ 7 suit _ NOUN NN _ 6 dobj _ _ 8 against _ ADP IN _ 14 case _ _ 9 former _ ADJ JJ _ 14 amod _ _ 10 stock _ NOUN NN _ 14 compound _ _ 11 speculator _ NOUN NN _ 14 compound _ _ 12 Ivan _ PROPN NNP _ 14 compound _ _ 13 F. _ PROPN NNP _ 14 compound _ _ 14 Boesky _ PROPN NNP _ 6 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Drexel _ PROPN NNP _ 19 compound _ _ 17 Burnham _ PROPN NNP _ 19 compound _ _ 18 Lambert _ PROPN NNP _ 19 compound _ _ 19 Inc. _ PROPN NNP _ 14 conj _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 charging _ VERB VBG _ 6 advcl _ _ 22 they _ PRON PRP _ 23 nsubj _ _ 23 defrauded _ VERB VBD _ 21 ccomp _ _ 24 the _ DET DT _ 25 det _ _ 25 thrift _ NOUN NN _ 23 dobj _ _ 26 by _ SCONJ IN _ 27 mark _ _ 27 concealing _ VERB VBG _ 23 advcl _ _ 28 their _ PRON PRP$ _ 29 nmod:poss _ _ 29 relationship _ NOUN NN _ 27 dobj _ _ 30 when _ ADV WRB _ 31 advmod _ _ 31 persuading _ VERB VBG _ 27 advcl _ _ 32 it _ PRON PRP _ 31 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 buy _ VERB VB _ 31 xcomp _ _ 35 $ _ SYM $ _ 34 dobj _ _ 36 284 _ NUM CD _ 37 compound _ _ 37 million _ NUM CD _ 35 nummod _ _ 38 in _ ADP IN _ 43 case _ _ 39 high-yield _ ADJ JJ _ 43 amod _ _ 40 , _ PUNCT , _ 43 punct _ _ 41 high-risk _ ADJ JJ _ 43 amod _ _ 42 junk _ NOUN NN _ 43 compound _ _ 43 bonds _ NOUN NNS _ 35 nmod _ _ 44 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 suit _ NOUN NN _ 12 nmod _ _ 4 filed _ VERB VBN _ 3 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 federal _ ADJ JJ _ 7 amod _ _ 7 court _ NOUN NN _ 4 nmod _ _ 8 Thursday _ PROPN NNP _ 4 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 S&L _ PROPN NN _ 12 nsubj _ _ 12 alleged _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 26 mark _ _ 14 a _ DET DT _ 17 det _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 disproportionate _ ADJ JJ _ 17 amod _ _ 17 number _ NOUN NN _ 26 nsubj _ _ 18 '' _ PUNCT '' _ 17 punct _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 bonds _ NOUN NNS _ 17 nmod _ _ 22 it _ PRON PRP _ 23 nsubj _ _ 23 purchased _ VERB VBD _ 21 acl:relcl _ _ 24 in _ ADP IN _ 25 case _ _ 25 1984 _ NUM CD _ 23 nmod _ _ 26 declined _ VERB VBD _ 12 ccomp _ _ 27 in _ ADP IN _ 28 case _ _ 28 value _ NOUN NN _ 26 nmod _ _ 29 . _ PUNCT . _ 12 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 purchased _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 bonds _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 suit _ NOUN NN _ 9 nsubj _ _ 9 alleged _ VERB VBN _ 3 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 after _ SCONJ IN _ 16 mark _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Boesky _ PROPN NNP _ 16 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Drexel _ PROPN NNP _ 13 conj _ _ 16 negotiated _ VERB VBD _ 3 advcl _ _ 17 an _ DET DT _ 18 det _ _ 18 agreement _ NOUN NN _ 16 dobj _ _ 19 for _ SCONJ IN _ 23 mark _ _ 20 Vagabond _ PROPN NNP _ 21 compound _ _ 21 Hotels _ PROPN NNPS _ 23 nsubj _ _ 22 to _ PART TO _ 23 mark _ _ 23 purchase _ VERB VB _ 18 acl _ _ 24 a _ DET DT _ 27 det _ _ 25 51 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 27 amod _ _ 27 stake _ NOUN NN _ 23 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 thrift _ NOUN NN _ 27 nmod _ _ 31 for _ ADP IN _ 33 case _ _ 32 about _ ADV IN _ 33 advmod _ _ 33 $ _ SYM $ _ 23 nmod _ _ 34 34 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Vagabond _ PROPN NNP _ 2 compound _ _ 2 Hotels _ PROPN NNPS _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 controlled _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Boesky _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 who _ PRON WP _ 12 nsubj _ _ 10 currently _ ADV RB _ 12 advmod _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 serving _ VERB VBG _ 7 acl:relcl _ _ 13 a _ DET DT _ 15 det _ _ 14 prison _ NOUN NN _ 15 compound _ _ 15 term _ NOUN NN _ 12 dobj _ _ 16 for _ ADP IN _ 18 case _ _ 17 securities _ NOUN NNS _ 18 compound _ _ 18 violations _ NOUN NNS _ 12 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Officials _ NOUN NNS _ 4 nsubj _ _ 2 at _ ADP IN _ 3 case _ _ 3 Drexel _ PROPN NNP _ 1 nmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 they _ PRON PRP _ 8 nsubj _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 seen _ VERB VBN _ 4 ccomp _ _ 9 the _ DET DT _ 10 det _ _ 10 suit _ NOUN NN _ 8 dobj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 thus _ ADV RB _ 15 advmod _ _ 13 could _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 comment _ VERB VB _ 8 conj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 12 nmod _ _ 3 to _ ADP TO _ 8 case _ _ 4 $ _ SYM $ _ 8 amod _ _ 5 33 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 compensatory _ ADJ JJ _ 8 amod _ _ 8 damages _ NOUN NNS _ 2 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 suit _ NOUN NN _ 12 nsubj _ _ 12 seeks _ VERB VBZ _ 0 root _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 100 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 18 case _ _ 17 punitive _ ADJ JJ _ 18 amod _ _ 18 damages _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 named _ VERB VBN _ 0 root _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 suit _ NOUN NN _ 2 nmod _ _ 6 is _ AUX VBZ _ 2 auxpass _ _ 7 Ivan _ PROPN NNP _ 10 compound _ _ 8 F. _ PROPN NNP _ 10 compound _ _ 9 Boesky _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 2 nsubjpass _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Northview _ PROPN NNP _ 13 compound _ _ 13 Corp. _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 successor _ NOUN NN _ 17 compound _ _ 17 company _ NOUN NN _ 13 appos _ _ 18 to _ ADP TO _ 20 case _ _ 19 Vagabonds _ PROPN NNPS _ 20 compound _ _ 20 Hotels _ PROPN NNPS _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Northview _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 6 nsubjpass _ _ 3 could _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 located _ VERB JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 bonds _ NOUN NNS _ 7 dobj _ _ 10 after _ SCONJ IN _ 18 mark _ _ 11 a _ DET DT _ 12 det _ _ 12 representative _ NOUN NN _ 18 nsubj _ _ 13 of _ ADP IN _ 17 case _ _ 14 Ivan _ PROPN NNP _ 17 compound _ _ 15 F. _ PROPN NNP _ 17 compound _ _ 16 Boesky _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 12 nmod _ _ 18 visited _ VERB VBD _ 5 advcl _ _ 19 it _ PRON PRP _ 18 dobj _ _ 20 in _ ADP IN _ 21 case _ _ 21 November _ PROPN NNP _ 18 nmod _ _ 22 1983 _ NUM CD _ 21 nummod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 said _ VERB VBD _ 18 conj _ _ 25 Financial _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 28 nsubj _ _ 27 could _ AUX MD _ 28 aux _ _ 28 improve _ VERB VB _ 24 ccomp _ _ 29 its _ PRON PRP$ _ 31 nmod:poss _ _ 30 financial _ ADJ JJ _ 31 amod _ _ 31 condition _ NOUN NN _ 28 dobj _ _ 32 by _ SCONJ IN _ 33 mark _ _ 33 purchasing _ VERB VBG _ 28 advcl _ _ 34 the _ DET DT _ 35 det _ _ 35 bonds _ NOUN NNS _ 33 dobj _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Shortly _ ADV RB _ 4 advmod _ _ 2 before _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 visit _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Boesky _ PROPN NNP _ 12 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Drexel _ PROPN NNP _ 10 compound _ _ 10 representives _ NOUN NNS _ 7 conj _ _ 11 had _ AUX VBD _ 12 aux _ _ 12 met _ VERB VBN _ 0 root _ _ 13 with _ ADP IN _ 16 case _ _ 14 Financial _ PROPN NNP _ 16 compound _ _ 15 Corp. _ PROPN NNP _ 16 compound _ _ 16 officials _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 12 cc _ _ 18 had _ AUX VBD _ 19 aux _ _ 19 signed _ VERB VBN _ 12 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 letter _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 intent _ NOUN NN _ 21 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 acquire _ VERB VB _ 23 acl _ _ 26 the _ DET DT _ 29 det _ _ 27 51 _ NUM CD _ 28 compound _ _ 28 % _ SYM NN _ 29 amod _ _ 29 stake _ NOUN NN _ 25 dobj _ _ 30 in _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 company _ NOUN NN _ 29 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 However _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 canceled _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 8 case _ _ 8 June _ PROPN NNP _ 6 nmod _ _ 9 1984 _ NUM CD _ 8 nummod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 purchased _ VERB VBD _ 29 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 bonds _ NOUN NNS _ 3 dobj _ _ 6 in _ ADP IN _ 11 case _ _ 7 at _ ADP IN _ 8 case _ _ 8 least _ ADJ JJS _ 9 nmod:npmod _ _ 9 70 _ NUM CD _ 11 nummod _ _ 10 different _ ADJ JJ _ 11 amod _ _ 11 transactions _ NOUN NNS _ 3 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 1984 _ NUM CD _ 3 nmod _ _ 14 and _ CONJ CC _ 3 cc _ _ 15 since _ ADP IN _ 16 case _ _ 16 then _ ADV RB _ 18 nmod _ _ 17 has _ AUX VBZ _ 18 aux _ _ 18 realized _ VERB VBN _ 3 conj _ _ 19 $ _ SYM $ _ 18 dobj _ _ 20 11 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 in _ ADP IN _ 23 case _ _ 23 losses _ NOUN NNS _ 19 nmod _ _ 24 on _ ADP IN _ 25 case _ _ 25 them _ PRON PRP _ 18 nmod _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 the _ DET DT _ 28 det _ _ 28 company _ NOUN NN _ 29 nsubj _ _ 29 said _ VERB VBD _ 0 root _ _ 30 . _ PUNCT . _ 29 punct _ _ 1 Ideal _ PROPN NNP _ 4 compound _ _ 2 Basic _ PROPN NNP _ 4 compound _ _ 3 Industries _ PROPN NNPS _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 directors _ NOUN NNS _ 8 nsubj _ _ 8 reached _ VERB VBD _ 5 ccomp _ _ 9 an _ DET DT _ 10 det _ _ 10 agreement _ NOUN NN _ 8 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 principle _ NOUN NN _ 10 nmod _ _ 13 calling _ VERB VBG _ 10 acl _ _ 14 for _ SCONJ IN _ 20 mark _ _ 15 HOFI _ PROPN NNP _ 18 compound _ _ 16 North _ PROPN NNP _ 18 compound _ _ 17 America _ PROPN NNP _ 18 compound _ _ 18 Inc. _ PROPN NNP _ 20 nsubj _ _ 19 to _ PART TO _ 20 mark _ _ 20 combine _ VERB VB _ 13 advcl _ _ 21 its _ PRON PRP$ _ 25 nmod:poss _ _ 22 North _ ADJ JJ _ 23 amod _ _ 23 American _ ADJ JJ _ 25 amod _ _ 24 cement _ NOUN NN _ 25 compound _ _ 25 holdings _ NOUN NNS _ 20 dobj _ _ 26 with _ ADP IN _ 27 case _ _ 27 Ideal _ PROPN NNP _ 20 nmod _ _ 28 in _ ADP IN _ 30 case _ _ 29 a _ DET DT _ 30 det _ _ 30 transaction _ NOUN NN _ 20 nmod _ _ 31 that _ PRON WDT _ 33 nsubj _ _ 32 will _ AUX MD _ 33 aux _ _ 33 leave _ VERB VB _ 30 acl:relcl _ _ 34 Ideal _ PROPN NNP _ 37 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 minority _ NOUN NN _ 37 compound _ _ 37 shareholders _ NOUN NNS _ 33 dobj _ _ 38 with _ ADP IN _ 40 case _ _ 39 12.8 _ NUM CD _ 40 nummod _ _ 40 % _ SYM NN _ 33 nmod _ _ 41 of _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 combined _ ADJ JJ _ 44 amod _ _ 44 company _ NOUN NN _ 40 nmod _ _ 45 . _ PUNCT . _ 5 punct _ _ 1 HOFI _ PROPN NNP _ 17 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 7 det _ _ 4 North _ ADJ NNP _ 5 amod _ _ 5 American _ ADJ NNP _ 7 amod _ _ 6 holding _ NOUN VBG _ 7 compound _ _ 7 company _ NOUN NN _ 1 appos _ _ 8 of _ ADP IN _ 14 case _ _ 9 Swiss _ ADJ JJ _ 14 amod _ _ 10 concern _ NOUN NN _ 14 compound _ _ 11 Holderbank _ PROPN NNP _ 14 compound _ _ 12 Financiere _ PROPN NNP _ 14 compound _ _ 13 Glaris _ PROPN NNP _ 14 compound _ _ 14 Ltd. _ PROPN NNP _ 7 nmod _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 previously _ ADV RB _ 17 advmod _ _ 17 proposed _ VERB VBN _ 0 root _ _ 18 combining _ VERB VBG _ 17 xcomp _ _ 19 its _ PRON PRP$ _ 22 nmod:poss _ _ 20 100 _ NUM CD _ 21 compound _ _ 21 % _ SYM NN _ 22 amod _ _ 22 stake _ NOUN NN _ 18 dobj _ _ 23 in _ ADP IN _ 27 case _ _ 24 St. _ PROPN NNP _ 27 compound _ _ 25 Lawrence _ PROPN NNP _ 27 compound _ _ 26 Cement _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 22 nmod _ _ 28 and _ CONJ CC _ 22 cc _ _ 29 its _ PRON PRP$ _ 32 nmod:poss _ _ 30 60 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 32 amod _ _ 32 stake _ NOUN NN _ 22 conj _ _ 33 in _ ADP IN _ 36 case _ _ 34 Dundee _ PROPN NNP _ 36 compound _ _ 35 Cement _ PROPN NNP _ 36 compound _ _ 36 Co. _ PROPN NNP _ 32 nmod _ _ 37 with _ ADP IN _ 41 case _ _ 38 its _ PRON PRP$ _ 41 nmod:poss _ _ 39 67 _ NUM CD _ 40 compound _ _ 40 % _ SYM NN _ 41 amod _ _ 41 stake _ NOUN NN _ 18 nmod _ _ 42 in _ ADP IN _ 43 case _ _ 43 Ideal _ NOUN NNP _ 41 nmod _ _ 44 . _ PUNCT . _ 17 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 HOFI _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 first _ ADJ JJ _ 5 amod _ _ 5 offer _ NOUN NN _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 have _ AUX VB _ 8 aux _ _ 8 given _ VERB VBN _ 0 root _ _ 9 Ideal _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 other _ ADJ JJ _ 12 amod _ _ 12 shareholders _ NOUN NNS _ 8 iobj _ _ 13 about _ ADV IN _ 14 advmod _ _ 14 10 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 8 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 combined _ ADJ JJ _ 19 amod _ _ 19 company _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 Ideal _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 directors _ NOUN NNS _ 4 nsubj _ _ 4 rejected _ VERB VBD _ 0 root _ _ 5 that _ DET DT _ 6 det _ _ 6 offer _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 although _ SCONJ IN _ 10 mark _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 said _ VERB VBD _ 4 advcl _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 endorsed _ VERB VBD _ 10 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 merger _ NOUN NN _ 15 compound _ _ 15 proposal _ NOUN NN _ 12 dobj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 HOFI _ PROPN NNP _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 own _ VERB VB _ 0 root _ _ 8 87.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 combined _ ADJ JJ _ 13 amod _ _ 13 company _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Ideal _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 current _ ADJ JJ _ 4 amod _ _ 4 operations _ NOUN NNS _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 represent _ VERB VB _ 0 root _ _ 7 about _ ADV IN _ 8 advmod _ _ 8 39.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 6 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 combined _ ADJ JJ _ 13 amod _ _ 13 company _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 transaction _ NOUN NN _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 subject _ ADJ JJ _ 0 root _ _ 5 to _ ADP TO _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 definitive _ ADJ JJ _ 8 amod _ _ 8 agreement _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 approval _ NOUN NN _ 8 conj _ _ 11 by _ ADP IN _ 13 case _ _ 12 Ideal _ PROPN NNP _ 13 compound _ _ 13 shareholders _ NOUN NNS _ 8 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Ideal _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 complete _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 transaction _ NOUN NN _ 6 dobj _ _ 9 early _ ADV RB _ 11 advmod _ _ 10 next _ ADJ JJ _ 11 amod _ _ 11 year _ NOUN NN _ 6 nmod:tmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 While _ SCONJ IN _ 7 mark _ _ 2 corn _ NOUN NN _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 soybean _ NOUN NN _ 2 conj _ _ 5 prices _ NOUN NNS _ 7 nsubj _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 slumped _ VERB VBN _ 18 advcl _ _ 8 well _ ADV RB _ 12 advmod _ _ 9 below _ ADP IN _ 12 case _ _ 10 their _ PRON PRP$ _ 12 nmod:poss _ _ 11 drought-induced _ ADJ JJ _ 12 amod _ _ 12 peaks _ NOUN NNS _ 7 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 1988 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 wheat _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 18 nsubj _ _ 18 remain _ VERB VBP _ 0 root _ _ 19 stubbornly _ ADV RB _ 20 advmod _ _ 20 high _ ADJ JJ _ 18 xcomp _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 they _ PRON PRP _ 4 nsubj _ _ 3 're _ VERB VBP _ 4 cop _ _ 4 likely _ ADJ JJ _ 15 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 stay _ VERB VB _ 4 xcomp _ _ 7 that _ DET DT _ 8 det _ _ 8 way _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 months _ NOUN NNS _ 6 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 come _ VERB VB _ 10 acl _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 analysts _ NOUN NNS _ 15 nsubj _ _ 15 say _ VERB VBP _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 thing _ NOUN NN _ 22 nmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 even _ ADV RB _ 9 advmod _ _ 6 with _ SCONJ IN _ 9 mark _ _ 7 many _ ADJ JJ _ 8 amod _ _ 8 farmers _ NOUN NNS _ 9 nsubj _ _ 9 planting _ VERB VBG _ 22 advcl _ _ 10 more _ ADJ JJR _ 12 amod _ _ 11 winter _ NOUN NN _ 12 compound _ _ 12 wheat _ NOUN NN _ 9 dobj _ _ 13 this _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 9 nmod:tmod _ _ 15 than _ ADP IN _ 16 case _ _ 16 last _ ADJ JJ _ 9 nmod _ _ 17 , _ PUNCT , _ 22 punct _ _ 18 tight _ ADJ JJ _ 20 amod _ _ 19 wheat _ NOUN NN _ 20 compound _ _ 20 supplies _ NOUN NNS _ 22 nsubj _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 likely _ ADJ JJ _ 32 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 support _ VERB VB _ 22 xcomp _ _ 25 prices _ NOUN NNS _ 24 dobj _ _ 26 well _ ADV RB _ 28 advmod _ _ 27 into _ ADP IN _ 28 case _ _ 28 1990 _ NUM CD _ 24 nmod _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 the _ DET DT _ 31 det _ _ 31 analysts _ NOUN NNS _ 32 nsubj _ _ 32 say _ VERB VBP _ 0 root _ _ 33 . _ PUNCT . _ 32 punct _ _ 1 And _ CONJ CC _ 27 cc _ _ 2 if _ SCONJ IN _ 6 mark _ _ 3 rain _ NOUN NN _ 6 nsubj _ _ 4 does _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 fall _ VERB VB _ 27 advcl _ _ 7 soon _ ADV RB _ 6 advmod _ _ 8 across _ ADP IN _ 9 case _ _ 9 many _ ADJ JJ _ 6 nmod _ _ 10 of _ ADP IN _ 16 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Great _ PROPN NNP _ 13 compound _ _ 13 Plains _ PROPN NNP _ 16 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 wheat-growing _ ADJ JJ _ 16 amod _ _ 16 areas _ NOUN NNS _ 9 nmod _ _ 17 , _ PUNCT , _ 27 punct _ _ 18 yields _ NOUN NNS _ 27 nsubjpass _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 crop _ NOUN NN _ 18 nmod _ _ 22 now _ ADV RB _ 24 advmod _ _ 23 being _ AUX VBG _ 24 auxpass _ _ 24 planted _ VERB VBN _ 21 acl _ _ 25 could _ AUX MD _ 27 aux _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 reduced _ VERB VBN _ 0 root _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 further _ ADV RB _ 30 advmod _ _ 30 squeezing _ VERB VBG _ 27 ccomp _ _ 31 supplies _ NOUN NNS _ 30 dobj _ _ 32 . _ PUNCT . _ 27 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 supporting _ VERB VBG _ 0 root _ _ 3 prices _ NOUN NNS _ 2 dobj _ _ 4 are _ VERB VBP _ 2 aux _ _ 5 expectations _ NOUN NNS _ 2 nsubj _ _ 6 that _ SCONJ IN _ 11 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 Soviet _ PROPN NNP _ 9 compound _ _ 9 Union _ PROPN NNP _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 place _ VERB VB _ 5 ccomp _ _ 12 substantial _ ADJ JJ _ 14 amod _ _ 13 buying _ NOUN NN _ 14 compound _ _ 14 orders _ NOUN NNS _ 11 dobj _ _ 15 over _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 next _ ADJ JJ _ 19 amod _ _ 18 few _ ADJ JJ _ 19 amod _ _ 19 months _ NOUN NNS _ 11 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 next _ ADJ JJ _ 3 amod _ _ 3 May _ PROPN NNP _ 30 nmod _ _ 4 31 _ NUM CD _ 3 nummod _ _ 5 , _ PUNCT , _ 30 punct _ _ 6 stocks _ NOUN NNS _ 30 nsubjpass _ _ 7 of _ ADP IN _ 9 case _ _ 8 U.S. _ PROPN NNP _ 9 compound _ _ 9 wheat _ NOUN NN _ 6 nmod _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 carried _ VERB VBN _ 6 acl _ _ 13 over _ ADP RP _ 12 compound:prt _ _ 14 into _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 next _ ADJ JJ _ 17 amod _ _ 17 season _ NOUN NN _ 12 nmod _ _ 18 -- _ PUNCT : _ 27 punct _ _ 19 before _ SCONJ IN _ 27 mark _ _ 20 the _ DET DT _ 22 det _ _ 21 winter _ NOUN NN _ 22 compound _ _ 22 wheat _ NOUN NN _ 27 nsubjpass _ _ 23 now _ ADV RB _ 25 advmod _ _ 24 being _ AUX VBG _ 25 auxpass _ _ 25 planted _ VERB VBN _ 22 acl _ _ 26 is _ AUX VBZ _ 27 auxpass _ _ 27 harvested _ VERB VBN _ 12 parataxis _ _ 28 -- _ PUNCT : _ 27 punct _ _ 29 are _ AUX VBP _ 30 auxpass _ _ 30 projected _ VERB VBN _ 0 root _ _ 31 to _ PART TO _ 32 mark _ _ 32 drop _ VERB VB _ 30 xcomp _ _ 33 to _ ADP TO _ 36 case _ _ 34 443 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 36 nummod _ _ 36 bushels _ NOUN NNS _ 32 nmod _ _ 37 . _ PUNCT . _ 30 punct _ _ 1 That _ PRON DT _ 6 nsubj _ _ 2 would _ AUX MD _ 6 aux _ _ 3 be _ VERB VB _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 lowest _ ADJ JJS _ 6 amod _ _ 6 level _ NOUN NN _ 0 root _ _ 7 since _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 early _ ADJ JJ _ 10 amod _ _ 10 1970s _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Stocks _ NOUN NNS _ 5 nsubj _ _ 2 were _ VERB VBD _ 5 cop _ _ 3 698 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 5 nummod _ _ 5 bushels _ NOUN NNS _ 0 root _ _ 6 on _ ADP IN _ 7 case _ _ 7 May _ PROPN NNP _ 5 nmod _ _ 8 31 _ NUM CD _ 7 nummod _ _ 9 of _ ADP IN _ 11 case _ _ 10 this _ DET DT _ 11 det _ _ 11 year _ NOUN NN _ 7 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 response _ NOUN NN _ 14 nmod _ _ 3 to _ ADP TO _ 6 case _ _ 4 dwindling _ VERB VBG _ 6 amod _ _ 5 domestic _ ADJ JJ _ 6 amod _ _ 6 supplies _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 14 punct _ _ 8 Agriculture _ PROPN NNP _ 11 compound _ _ 9 Secretary _ PROPN NNP _ 11 compound _ _ 10 Clayton _ PROPN NNP _ 11 compound _ _ 11 Yeutter _ PROPN NNP _ 14 nsubj _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 month _ NOUN NN _ 14 nmod:tmod _ _ 14 said _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 U.S. _ PROPN NNP _ 17 compound _ _ 17 government _ NOUN NN _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 slightly _ ADV RB _ 20 advmod _ _ 20 increase _ VERB VB _ 14 ccomp _ _ 21 the _ DET DT _ 22 det _ _ 22 number _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 24 case _ _ 24 acres _ NOUN NNS _ 22 nmod _ _ 25 farmers _ NOUN NNS _ 27 nsubj _ _ 26 can _ AUX MD _ 27 aux _ _ 27 plant _ VERB VB _ 22 acl:relcl _ _ 28 in _ ADP IN _ 29 case _ _ 29 wheat _ NOUN NN _ 27 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 next _ ADJ JJ _ 32 amod _ _ 32 year _ NOUN NN _ 27 nmod _ _ 33 and _ CONJ CC _ 27 cc _ _ 34 still _ ADV RB _ 35 advmod _ _ 35 qualify _ VERB VB _ 27 conj _ _ 36 for _ ADP IN _ 39 case _ _ 37 federal _ ADJ JJ _ 39 amod _ _ 38 support _ NOUN NN _ 39 compound _ _ 39 payments _ NOUN NNS _ 35 nmod _ _ 40 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 3 nsubj _ _ 3 estimates _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 the _ DET DT _ 7 det _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 plan _ NOUN NN _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 boost _ VERB VB _ 3 ccomp _ _ 10 production _ NOUN NN _ 9 dobj _ _ 11 next _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 10 nmod:tmod _ _ 13 by _ ADP IN _ 17 case _ _ 14 about _ ADV IN _ 16 advmod _ _ 15 66 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 17 nummod _ _ 17 bushels _ NOUN NNS _ 9 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 now _ ADV RB _ 3 advmod _ _ 3 estimates _ VERB VBZ _ 0 root _ _ 4 production _ NOUN NN _ 3 dobj _ _ 5 for _ ADP IN _ 7 case _ _ 6 next _ ADJ JJ _ 7 amod _ _ 7 year _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 13 case _ _ 9 just _ ADV RB _ 12 advmod _ _ 10 under _ ADP IN _ 12 advmod _ _ 11 2.6 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 13 nummod _ _ 13 bushels _ NOUN NNS _ 3 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 compared _ VERB VBN _ 18 case _ _ 16 with _ ADP IN _ 18 case _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 13 nmod _ _ 19 's _ VERB POS _ 18 case _ _ 20 estimated _ ADJ VBN _ 18 amod _ _ 21 2.04 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 18 nummod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 a _ DET DT _ 27 det _ _ 25 drought-stunted _ ADJ JJ _ 27 amod _ _ 26 1.81 _ NUM CD _ 27 compound _ _ 27 billion _ NUM CD _ 18 conj _ _ 28 in _ ADP IN _ 29 case _ _ 29 1988 _ NUM CD _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 full _ ADJ JJ _ 4 amod _ _ 4 effect _ NOUN NN _ 17 nsubjpass _ _ 5 on _ ADP IN _ 6 case _ _ 6 prices _ NOUN NNS _ 4 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 winter _ NOUN NN _ 10 compound _ _ 10 wheat _ NOUN NN _ 6 nmod _ _ 11 now _ ADV RB _ 13 advmod _ _ 12 being _ AUX VBG _ 13 auxpass _ _ 13 planted _ VERB VBN _ 10 acl _ _ 14 wo _ AUX MD _ 17 aux _ _ 15 n't _ PART RB _ 17 neg _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 felt _ VERB VBN _ 0 root _ _ 18 until _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 second _ ADJ JJ _ 21 amod _ _ 21 half _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 next _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 17 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 then _ ADV RB _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 limited _ ADJ JJ _ 5 amod _ _ 5 stocks _ NOUN NNS _ 7 nsubj _ _ 6 are _ VERB VBP _ 7 cop _ _ 7 likely _ ADJ JJ _ 18 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 keep _ VERB VB _ 7 xcomp _ _ 10 prices _ NOUN NNS _ 9 dobj _ _ 11 near _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 $ _ SYM $ _ 15 amod _ _ 14 4-a-bushel _ ADJ JJ _ 13 dep _ _ 15 level _ NOUN NN _ 9 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 analysts _ NOUN NNS _ 18 nsubj _ _ 18 say _ VERB VBP _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 Chicago _ PROPN NNP _ 4 compound _ _ 4 Board _ PROPN NNP _ 13 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 Trade _ PROPN NNP _ 4 nmod _ _ 7 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 wheat _ NOUN NN _ 13 nsubj _ _ 10 for _ ADP IN _ 12 case _ _ 11 December _ PROPN NNP _ 12 compound _ _ 12 delivery _ NOUN NN _ 9 nmod _ _ 13 settled _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 4.0675 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 bushel _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 unchanged _ ADJ JJ _ 16 amod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 theory _ NOUN NN _ 11 nmod _ _ 3 at _ ADP IN _ 2 advmod _ _ 4 least _ ADJ JJS _ 3 mwe _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 tight _ ADJ JJ _ 7 amod _ _ 7 supplies _ NOUN NNS _ 11 nsubj _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 spring _ NOUN NN _ 7 nmod:tmod _ _ 10 could _ AUX MD _ 11 aux _ _ 11 leave _ VERB VB _ 22 ccomp _ _ 12 the _ DET DT _ 15 det _ _ 13 wheat _ NOUN NN _ 15 compound _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 16 nsubj _ _ 16 susceptible _ ADJ JJ _ 11 xcomp _ _ 17 to _ ADP TO _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 supply-demand _ ADJ JJ _ 20 amod _ _ 20 squeeze _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Daniel _ PROPN NNP _ 24 compound _ _ 24 Basse _ PROPN NNP _ 22 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 a _ DET DT _ 28 det _ _ 27 futures _ NOUN NNS _ 28 compound _ _ 28 analyst _ NOUN NN _ 24 appos _ _ 29 with _ ADP IN _ 31 case _ _ 30 AgResource _ PROPN NNP _ 31 compound _ _ 31 Co. _ PROPN NNP _ 28 nmod _ _ 32 in _ ADP IN _ 33 case _ _ 33 Chicago _ PROPN NNP _ 31 nmod _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 Such _ DET PDT _ 3 det:predet _ _ 2 a _ DET DT _ 3 det _ _ 3 situation _ NOUN NN _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 wreak _ VERB VB _ 0 root _ _ 6 havoc _ NOUN NN _ 5 dobj _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 as _ SCONJ IN _ 10 mark _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 shown _ VERB VBN _ 5 advcl _ _ 11 by _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 emergency _ NOUN NN _ 10 nmod _ _ 14 that _ PRON WDT _ 15 nsubj _ _ 15 developed _ VERB VBD _ 13 acl:relcl _ _ 16 in _ ADP IN _ 19 case _ _ 17 soybean _ NOUN NN _ 19 compound _ _ 18 futures _ NOUN NNS _ 19 compound _ _ 19 trading _ NOUN NN _ 15 nmod _ _ 20 this _ DET DT _ 21 det _ _ 21 summer _ NOUN NN _ 15 nmod:tmod _ _ 22 on _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 Chicago _ PROPN NNP _ 25 compound _ _ 25 Board _ PROPN NNP _ 15 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 Trade _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 CBOT _ PROPN NNP _ 6 nsubj _ _ 6 ordered _ VERB VBD _ 0 root _ _ 7 Ferruzzi _ PROPN NNP _ 11 compound _ _ 8 Finanziaria _ PROPN NNP _ 11 compound _ _ 9 S.p _ PROPN NNP _ 11 compound _ _ 10 . _ PUNCT . _ 11 punct _ _ 11 A. _ PROPN NN _ 6 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 liquidate _ VERB VB _ 6 xcomp _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 positions _ NOUN NNS _ 13 dobj _ _ 16 equal _ ADJ JJ _ 15 amod _ _ 17 to _ ADP TO _ 21 case _ _ 18 about _ ADV RB _ 20 advmod _ _ 19 23 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 bushels _ NOUN NNS _ 16 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 soybeans _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 exchange _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 feared _ VERB VBD _ 3 ccomp _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 some _ DET DT _ 8 det _ _ 8 members _ NOUN NNS _ 12 nsubj _ _ 9 would _ AUX MD _ 12 aux _ _ 10 n't _ PART RB _ 12 neg _ _ 11 be _ VERB VB _ 12 cop _ _ 12 able _ ADJ JJ _ 5 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 find _ VERB VB _ 12 xcomp _ _ 15 enough _ ADJ JJ _ 16 amod _ _ 16 soybeans _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 deliver _ VERB VB _ 16 acl _ _ 19 and _ CONJ CC _ 12 cc _ _ 20 would _ AUX MD _ 21 aux _ _ 21 have _ VERB VB _ 12 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 default _ VERB VB _ 21 xcomp _ _ 24 on _ ADP IN _ 27 case _ _ 25 their _ PRON PRP$ _ 27 nmod:poss _ _ 26 contractual _ ADJ JJ _ 27 amod _ _ 27 obligation _ NOUN NN _ 23 nmod _ _ 28 to _ ADP TO _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Italian _ ADJ JJ _ 31 amod _ _ 31 conglomerate _ NOUN NN _ 27 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 which _ PRON WDT _ 35 nsubj _ _ 34 had _ AUX VBD _ 35 aux _ _ 35 refused _ VERB VBN _ 31 acl:relcl _ _ 36 requests _ NOUN NNS _ 35 dobj _ _ 37 to _ PART TO _ 38 mark _ _ 38 reduce _ VERB VB _ 36 acl _ _ 39 its _ PRON PRP$ _ 40 nmod:poss _ _ 40 holdings _ NOUN NNS _ 38 dobj _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Ferruzzi _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 denied _ VERB VBN _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 was _ AUX VBD _ 6 aux _ _ 6 trying _ VERB VBG _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 manipulate _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 12 det _ _ 10 soybean _ NOUN NN _ 12 compound _ _ 11 futures _ NOUN NNS _ 12 compound _ _ 12 market _ NOUN NN _ 8 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Unseasonably _ ADV RB _ 4 advmod _ _ 2 hot _ ADJ JJ _ 4 amod _ _ 3 , _ PUNCT , _ 4 punct _ _ 4 dry _ ADJ JJ _ 5 amod _ _ 5 weather _ NOUN NN _ 22 nsubj _ _ 6 across _ ADP IN _ 8 case _ _ 7 large _ ADJ JJ _ 8 amod _ _ 8 portions _ NOUN NNS _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Great _ PROPN NNP _ 12 compound _ _ 12 Plains _ PROPN NNPS _ 8 nmod _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 in _ ADP IN _ 16 case _ _ 15 wheat-growing _ ADJ JJ _ 16 amod _ _ 16 areas _ NOUN NNS _ 8 conj _ _ 17 in _ ADP IN _ 18 case _ _ 18 Washington _ PROPN NNP _ 16 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 Oregon _ PROPN NNP _ 18 conj _ _ 21 is _ AUX VBZ _ 22 aux _ _ 22 threatening _ VERB VBG _ 35 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 reduce _ VERB VB _ 22 xcomp _ _ 25 the _ DET DT _ 26 det _ _ 26 yield _ NOUN NN _ 24 dobj _ _ 27 from _ ADP IN _ 33 case _ _ 28 this _ DET DT _ 29 det _ _ 29 season _ NOUN NN _ 33 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 winter _ NOUN NN _ 33 compound _ _ 32 wheat _ NOUN NN _ 33 compound _ _ 33 crop _ NOUN NN _ 26 nmod _ _ 34 , _ PUNCT , _ 35 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 Conrad _ PROPN NNP _ 37 compound _ _ 37 Leslie _ PROPN NNP _ 35 nsubj _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 a _ DET DT _ 41 det _ _ 40 futures _ NOUN NNS _ 41 compound _ _ 41 analyst _ NOUN NN _ 37 appos _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 head _ NOUN NN _ 41 conj _ _ 44 of _ ADP IN _ 46 case _ _ 45 Leslie _ PROPN NNP _ 46 compound _ _ 46 Analytical _ PROPN NNP _ 43 nmod _ _ 47 in _ ADP IN _ 48 case _ _ 48 Chicago _ PROPN NNP _ 46 nmod _ _ 49 . _ PUNCT . _ 35 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 17 nmod _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Oklahoma _ PROPN NNP _ 7 compound _ _ 7 panhandle _ NOUN NN _ 17 nmod _ _ 8 , _ PUNCT , _ 17 punct _ _ 9 40 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 17 nsubj _ _ 11 or _ CONJ CC _ 12 cc _ _ 12 more _ ADJ JJR _ 10 nummod _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 topsoil _ NOUN NN _ 10 nmod _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 short _ ADJ JJ _ 0 root _ _ 18 of _ ADP IN _ 19 case _ _ 19 moisture _ NOUN NN _ 17 nmod _ _ 20 . _ PUNCT . _ 17 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 figure _ NOUN NN _ 3 nsubj _ _ 3 climbs _ VERB VBZ _ 15 ccomp _ _ 4 to _ ADP TO _ 7 case _ _ 5 about _ ADV IN _ 6 advmod _ _ 6 47 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 3 nmod _ _ 8 in _ ADP IN _ 10 case _ _ 9 wheat-growing _ ADJ JJ _ 10 amod _ _ 10 portions _ NOUN NNS _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Kansas _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Soviet _ PROPN NNP _ 3 compound _ _ 3 Union _ PROPN NNP _ 6 nsubj _ _ 4 has _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 given _ VERB VBN _ 0 root _ _ 7 any _ DET DT _ 9 det _ _ 8 clear _ ADJ JJ _ 9 amod _ _ 9 indication _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 its _ PRON PRP$ _ 14 nmod:poss _ _ 12 wheat _ NOUN NN _ 14 compound _ _ 13 purchase _ NOUN NN _ 14 compound _ _ 14 plans _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 but _ CONJ CC _ 6 cc _ _ 17 many _ ADJ JJ _ 18 amod _ _ 18 analysts _ NOUN NNS _ 19 nsubj _ _ 19 expect _ VERB VBP _ 6 conj _ _ 20 Moscow _ PROPN NNP _ 19 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 place _ VERB VB _ 19 xcomp _ _ 23 sizable _ ADJ JJ _ 24 amod _ _ 24 orders _ NOUN NNS _ 22 dobj _ _ 25 for _ ADP IN _ 27 case _ _ 26 U.S. _ PROPN NNP _ 27 compound _ _ 27 wheat _ NOUN NN _ 24 nmod _ _ 28 in _ ADP IN _ 32 case _ _ 29 the _ DET DT _ 32 det _ _ 30 next _ ADJ JJ _ 32 amod _ _ 31 few _ ADJ JJ _ 32 amod _ _ 32 months _ NOUN NNS _ 22 nmod _ _ 33 , _ PUNCT , _ 22 punct _ _ 34 further _ ADV RB _ 35 advmod _ _ 35 supporting _ VERB VBG _ 22 advcl _ _ 36 prices _ NOUN NNS _ 35 dobj _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Wheat _ ADJ NN _ 3 amod _ _ 3 prices _ NOUN NNS _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 increasingly _ ADV RB _ 6 advmod _ _ 6 pivot _ VERB JJ _ 16 ccomp _ _ 7 off _ ADP IN _ 10 case _ _ 8 of _ ADP IN _ 10 case _ _ 9 Soviet _ ADJ JJ _ 10 amod _ _ 10 demand _ NOUN NN _ 6 nmod _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 12 in _ ADP IN _ 14 case _ _ 13 coming _ ADJ VBG _ 14 amod _ _ 14 weeks _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 16 punct _ _ 16 predicted _ VERB VBN _ 0 root _ _ 17 Richard _ PROPN NNP _ 18 compound _ _ 18 Feltes _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 vice _ NOUN NN _ 21 compound _ _ 21 president _ NOUN NN _ 18 appos _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 research _ NOUN NN _ 21 appos _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 for _ ADP IN _ 27 case _ _ 26 Refco _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 21 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 Chicago _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 16 punct _ _ 1 Looking _ VERB VBG _ 0 root _ _ 2 ahead _ ADV RB _ 1 advmod _ _ 3 to _ ADP TO _ 6 case _ _ 4 other _ ADJ JJ _ 6 amod _ _ 5 commodity _ NOUN NN _ 6 compound _ _ 6 markets _ NOUN NNS _ 2 nmod _ _ 7 this _ DET DT _ 8 det _ _ 8 week _ NOUN NN _ 6 nmod:tmod _ _ 9 : _ PUNCT : _ 1 punct _ _ 1 Orange _ NOUN NNP _ 3 compound _ _ 2 Juice _ NOUN NNP _ 3 compound _ _ 3 Traders _ NOUN NNS _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 aux _ _ 6 watching _ VERB VBG _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 see _ VERB VB _ 6 xcomp _ _ 9 how _ ADV WRB _ 10 advmod _ _ 10 long _ ADV JJ _ 21 advmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 how _ ADV WRB _ 13 advmod _ _ 13 far _ ADV RB _ 10 dep _ _ 14 the _ DET DT _ 16 det _ _ 15 price _ NOUN NN _ 16 compound _ _ 16 decline _ NOUN NN _ 21 nsubj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 began _ VERB VBD _ 16 acl:relcl _ _ 19 Friday _ PROPN NNP _ 18 nmod:tmod _ _ 20 will _ AUX MD _ 21 aux _ _ 21 go _ VERB VB _ 8 dep _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Late _ ADV RB _ 12 advmod _ _ 2 Thursday _ PROPN NNP _ 12 nmod:tmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 after _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 close _ NOUN NN _ 12 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 trading _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 market _ NOUN NN _ 12 nsubj _ _ 12 received _ VERB VBD _ 0 root _ _ 13 what _ PRON WP _ 24 nsubj _ _ 14 would _ AUX MD _ 24 aux _ _ 15 normally _ ADV RB _ 24 advmod _ _ 16 have _ AUX VB _ 24 aux _ _ 17 been _ VERB VBN _ 24 cop _ _ 18 a _ DET DT _ 24 det _ _ 19 bullish _ ADJ JJ _ 24 amod _ _ 20 U.S. _ PROPN NNP _ 24 dep _ _ 21 Department _ PROPN NNP _ 20 dep _ _ 22 of _ ADP IN _ 23 case _ _ 23 Agriculture _ PROPN NNP _ 20 nmod _ _ 24 estimate _ NOUN NN _ 12 ccomp _ _ 25 of _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 30 det _ _ 27 1989-90 _ NUM CD _ 30 nummod _ _ 28 Florida _ PROPN NNP _ 30 compound _ _ 29 orange _ NOUN NN _ 30 compound _ _ 30 crop _ NOUN NN _ 24 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 was _ VERB VBD _ 6 cop _ _ 3 near _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 low _ ADJ JJ _ 6 amod _ _ 6 range _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 estimates _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 at _ ADP IN _ 14 case _ _ 11 130 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 14 nummod _ _ 13 90-pound _ ADJ JJ _ 14 amod _ _ 14 boxes _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 compared _ VERB VBN _ 20 case _ _ 17 with _ ADP IN _ 20 case _ _ 18 146.6 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 20 nummod _ _ 20 boxes _ NOUN NNS _ 14 nmod _ _ 21 last _ ADJ JJ _ 22 amod _ _ 22 season _ NOUN NN _ 20 nmod:tmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 However _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 as _ SCONJ IN _ 4 mark _ _ 4 expected _ VERB VBN _ 7 advcl _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Brazil _ PROPN NNP _ 7 nsubj _ _ 7 waited _ VERB VBD _ 0 root _ _ 8 for _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 crop _ NOUN NN _ 11 compound _ _ 11 estimate _ NOUN NN _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 come _ VERB VB _ 7 advcl _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 and _ CONJ CC _ 7 cc _ _ 16 then _ ADV RB _ 17 advmod _ _ 17 cut _ VERB VBD _ 7 conj _ _ 18 the _ DET DT _ 20 det _ _ 19 export _ NOUN NN _ 20 compound _ _ 20 price _ NOUN NN _ 17 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 juice _ NOUN NN _ 24 compound _ _ 24 concentrate _ NOUN NN _ 20 nmod _ _ 25 to _ ADP TO _ 27 case _ _ 26 about _ ADV RB _ 27 advmod _ _ 27 $ _ SYM $ _ 17 nmod _ _ 28 1.34 _ NUM CD _ 27 nummod _ _ 29 a _ DET DT _ 30 det _ _ 30 pound _ NOUN NN _ 27 nmod:npmod _ _ 31 from _ ADP IN _ 33 case _ _ 32 around _ ADP IN _ 33 advmod _ _ 33 $ _ SYM $ _ 17 nmod _ _ 34 1.55 _ NUM CD _ 33 nummod _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 Friday _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 consequent _ ADJ JJ _ 4 amod _ _ 4 selling _ NOUN NN _ 8 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 futures _ NOUN NNS _ 7 compound _ _ 7 contracts _ NOUN NNS _ 4 nmod _ _ 8 erased _ VERB VBD _ 0 root _ _ 9 whatever _ DET WDT _ 11 det _ _ 10 supportive _ ADJ JJ _ 11 amod _ _ 11 effect _ NOUN NN _ 17 dobj _ _ 12 the _ DET DT _ 14 det _ _ 13 U.S. _ PROPN NNP _ 14 compound _ _ 14 report _ NOUN NN _ 17 nsubj _ _ 15 might _ AUX MD _ 17 aux _ _ 16 have _ AUX VB _ 17 aux _ _ 17 had _ VERB VBN _ 8 ccomp _ _ 18 and _ CONJ CC _ 8 cc _ _ 19 sent _ VERB VBN _ 8 conj _ _ 20 the _ DET DT _ 24 det _ _ 21 November _ PROPN NNP _ 24 compound _ _ 22 orange _ NOUN NN _ 24 compound _ _ 23 juice _ NOUN NN _ 24 compound _ _ 24 contract _ NOUN NN _ 19 dobj _ _ 25 down _ ADV RB _ 19 advmod _ _ 26 as _ ADV RB _ 29 advmod _ _ 27 much _ ADJ JJ _ 29 advmod _ _ 28 as _ ADP IN _ 29 advmod _ _ 29 6.55 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 25 nmod:npmod _ _ 31 a _ DET DT _ 32 det _ _ 32 pound _ NOUN NN _ 30 nmod:npmod _ _ 33 at _ ADP IN _ 35 case _ _ 34 one _ NUM CD _ 35 nummod _ _ 35 time _ NOUN NN _ 19 nmod _ _ 36 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 settled _ VERB VBD _ 0 root _ _ 3 with _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 loss _ NOUN NN _ 2 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 4.95 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 5 nmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 1.3210 _ NUM CD _ 2 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 pound _ NOUN NN _ 11 nmod:npmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Brazilian _ ADJ JJ _ 2 amod _ _ 2 juice _ NOUN NN _ 19 nsubj _ _ 3 , _ PUNCT , _ 19 punct _ _ 4 after _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 delay _ NOUN NN _ 19 nmod _ _ 7 caused _ VERB VBN _ 6 acl _ _ 8 by _ ADP IN _ 9 case _ _ 9 drought _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 start _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 crop _ NOUN NN _ 16 compound _ _ 16 season _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 beginning _ VERB VBG _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 arrive _ VERB VB _ 19 xcomp _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 U.S. _ PROPN NNP _ 21 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 large _ ADJ JJ _ 27 amod _ _ 27 quantities _ NOUN NNS _ 21 nmod _ _ 28 . _ PUNCT . _ 19 punct _ _ 1 Brazil _ PROPN NNP _ 2 nsubj _ _ 2 wants _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 stimulate _ VERB VB _ 2 xcomp _ _ 5 demand _ NOUN NN _ 4 dobj _ _ 6 for _ ADP IN _ 8 case _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 product _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 12 nsubj _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 going _ VERB VBG _ 8 acl:relcl _ _ 13 to _ PART TO _ 17 mark _ _ 14 be _ VERB VB _ 17 cop _ _ 15 in _ ADP IN _ 17 case _ _ 16 plentiful _ ADJ JJ _ 17 amod _ _ 17 supply _ NOUN NN _ 12 xcomp _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 price _ NOUN NN _ 3 compound _ _ 3 cut _ NOUN NN _ 9 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 analyst _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 appeared _ VERB VBD _ 0 root _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 aimed _ VERB VBN _ 9 xcomp _ _ 13 even _ ADV RB _ 14 advmod _ _ 14 more _ ADV RBR _ 12 advmod _ _ 15 at _ ADP IN _ 16 case _ _ 16 Europe _ PROPN NNP _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 where _ ADV WRB _ 24 advmod _ _ 19 consumption _ NOUN NN _ 24 nsubj _ _ 20 of _ ADP IN _ 22 case _ _ 21 Brazilian _ ADJ JJ _ 22 amod _ _ 22 juice _ NOUN NN _ 19 nmod _ _ 23 has _ AUX VBZ _ 24 aux _ _ 24 fallen _ VERB VBN _ 16 acl:relcl _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 a _ DET DT _ 5 det _ _ 4 dollar-priced _ ADJ JJ _ 5 amod _ _ 5 product _ NOUN NN _ 21 ccomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 strong _ ADJ JJ _ 10 amod _ _ 10 dollar _ NOUN NN _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 made _ VERB VBN _ 5 conj _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 more _ ADV RBR _ 15 advmod _ _ 15 expensive _ ADJ JJ _ 12 xcomp _ _ 16 in _ ADP IN _ 17 case _ _ 17 Europe _ PROPN NNP _ 15 dep _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 analyst _ NOUN NN _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 York _ PROPN NNP _ 4 compound _ _ 3 futures _ NOUN NNS _ 4 compound _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 dropped _ VERB VBN _ 0 root _ _ 7 significantly _ ADV RB _ 6 advmod _ _ 8 from _ ADP IN _ 11 case _ _ 9 more _ ADJ JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 $ _ SYM $ _ 6 nmod _ _ 12 2 _ NUM CD _ 11 nummod _ _ 13 a _ DET DT _ 14 det _ _ 14 pound _ NOUN NN _ 11 nmod:npmod _ _ 15 at _ ADP IN _ 16 case _ _ 16 midyear _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 Barring _ VERB VBG _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 cold _ ADJ JJ _ 4 amod _ _ 4 snap _ NOUN NN _ 19 nmod _ _ 5 or _ CONJ CC _ 4 cc _ _ 6 other _ ADJ JJ _ 8 amod _ _ 7 crop _ NOUN NN _ 8 compound _ _ 8 problems _ NOUN NNS _ 4 conj _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 growing _ NOUN VBG _ 12 compound _ _ 12 areas _ NOUN NNS _ 4 nmod _ _ 13 , _ PUNCT , _ 19 punct _ _ 14 downward _ ADJ JJ _ 15 amod _ _ 15 pressure _ NOUN NN _ 19 nsubj _ _ 16 on _ ADP IN _ 17 case _ _ 17 prices _ NOUN NNS _ 15 nmod _ _ 18 is _ VERB VBZ _ 19 cop _ _ 19 likely _ ADJ JJ _ 39 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 continue _ VERB VB _ 19 xcomp _ _ 22 into _ ADP IN _ 23 case _ _ 23 January _ PROPN NNP _ 21 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 when _ ADV WRB _ 33 advmod _ _ 26 harvesting _ NOUN VBG _ 33 nsubj _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 processing _ NOUN NN _ 26 conj _ _ 29 of _ ADP IN _ 30 case _ _ 30 oranges _ NOUN NNS _ 26 nmod _ _ 31 in _ ADP IN _ 32 case _ _ 32 Florida _ PROPN NNP _ 26 nmod _ _ 33 reach _ VERB VBP _ 23 acl:relcl _ _ 34 their _ PRON PRP$ _ 35 nmod:poss _ _ 35 peak _ NOUN NN _ 33 dobj _ _ 36 , _ PUNCT , _ 39 punct _ _ 37 the _ DET DT _ 38 det _ _ 38 analyst _ NOUN NN _ 39 nsubj _ _ 39 said _ VERB VBD _ 0 root _ _ 40 . _ PUNCT . _ 39 punct _ _ 1 Energy _ NOUN NNP _ 0 root _ _ 1 Although _ SCONJ IN _ 4 mark _ _ 2 some _ DET DT _ 3 det _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 look _ VERB VBP _ 25 advcl _ _ 5 for _ ADP IN _ 6 case _ _ 6 profit-taking _ NOUN NN _ 4 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 wake _ NOUN NN _ 4 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 leap _ NOUN NN _ 9 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 crude _ ADJ JJ _ 17 amod _ _ 16 oil _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 25 punct _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 week _ NOUN NN _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 rally _ NOUN NN _ 25 nsubjpass _ _ 23 is _ AUX VBZ _ 25 auxpass _ _ 24 generally _ ADV RB _ 25 advmod _ _ 25 expected _ VERB VBN _ 0 root _ _ 26 to _ PART TO _ 27 mark _ _ 27 continue _ VERB VB _ 25 xcomp _ _ 28 this _ DET DT _ 29 det _ _ 29 week _ NOUN NN _ 27 nmod:tmod _ _ 30 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 continue _ VERB VB _ 20 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 look _ VERB VB _ 4 xcomp _ _ 7 for _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 stable _ ADJ JJ _ 11 amod _ _ 10 crude _ NOUN JJ _ 11 compound _ _ 11 market _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 at _ ADP IN _ 18 advmod _ _ 14 least _ ADJ JJS _ 13 mwe _ _ 15 in _ ADP IN _ 18 case _ _ 16 futures _ NOUN NNS _ 18 compound _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 trading _ NOUN NN _ 6 nmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 William _ PROPN NNP _ 22 compound _ _ 22 Hinton _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 an _ DET DT _ 27 det _ _ 25 energy _ NOUN NN _ 27 compound _ _ 26 futures _ NOUN NNS _ 27 compound _ _ 27 broker _ NOUN NN _ 22 appos _ _ 28 with _ ADP IN _ 29 case _ _ 29 Stotler _ PROPN NNP _ 27 nmod _ _ 30 & _ CONJ CC _ 29 cc _ _ 31 Co _ PROPN NNP _ 29 conj _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 Friday _ PROPN NNP _ 2 nsubj _ _ 2 capped _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 week _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 10 case _ _ 6 steadily _ ADV RB _ 7 advmod _ _ 7 rising _ VERB VBG _ 10 amod _ _ 8 crude _ ADJ JJ _ 10 amod _ _ 9 oil _ NOUN NN _ 10 compound _ _ 10 prices _ NOUN NNS _ 4 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 both _ CONJ DT _ 13 cc:preconj _ _ 13 futures _ NOUN NNS _ 10 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 spot _ NOUN NN _ 16 compound _ _ 16 markets _ NOUN NNS _ 13 conj _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 On _ ADP IN _ 6 case _ _ 2 the _ DET DT _ 6 det _ _ 3 New _ PROPN NNP _ 6 compound _ _ 4 York _ PROPN NNP _ 6 compound _ _ 5 Mercantile _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 15 nmod _ _ 7 , _ PUNCT , _ 15 punct _ _ 8 West _ PROPN NNP _ 11 compound _ _ 9 Texas _ PROPN NNP _ 11 compound _ _ 10 Intermediate _ PROPN NNP _ 11 compound _ _ 11 crude _ NOUN NN _ 15 nsubj _ _ 12 for _ ADP IN _ 14 case _ _ 13 November _ PROPN NNP _ 14 compound _ _ 14 delivery _ NOUN NN _ 11 nmod _ _ 15 finished _ VERB VBD _ 0 root _ _ 16 at _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 20.89 _ NUM CD _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 barrel _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 up _ ADV IN _ 15 advmod _ _ 23 42 _ NUM CD _ 24 nummod _ _ 24 cents _ NOUN NNS _ 22 nmod:npmod _ _ 25 on _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 day _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 15 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 European _ ADJ JJ _ 3 amod _ _ 3 markets _ NOUN NNS _ 13 nmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 meanwhile _ ADV RB _ 13 advmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 spot _ NOUN NN _ 8 compound _ _ 8 prices _ NOUN NNS _ 13 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 North _ PROPN NNP _ 12 compound _ _ 11 Sea _ PROPN NNP _ 12 compound _ _ 12 crudes _ NOUN NNS _ 8 nmod _ _ 13 were _ VERB VBD _ 0 root _ _ 14 up _ ADV RB _ 13 advmod _ _ 15 35 _ NUM CD _ 14 nmod:npmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 75 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 14 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 barrel _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 This _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 5 nsubj _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 wants _ VERB VBZ _ 11 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 go _ VERB VB _ 5 xcomp _ _ 8 higher _ ADV RBR _ 7 advmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Nauman _ PROPN NNP _ 13 compound _ _ 13 Barakat _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 18 det _ _ 16 first _ ADJ JJ _ 18 amod _ _ 17 vice _ NOUN NN _ 18 compound _ _ 18 president _ NOUN NN _ 13 appos _ _ 19 at _ ADP IN _ 23 case _ _ 20 Shearson _ PROPN NNP _ 23 compound _ _ 21 Lehman _ PROPN NNP _ 23 compound _ _ 22 Hutton _ PROPN NNP _ 23 compound _ _ 23 Inc _ PROPN NNP _ 18 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 predicted _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 8 mark _ _ 4 the _ DET DT _ 6 det _ _ 5 November _ PROPN NNP _ 6 compound _ _ 6 contract _ NOUN NN _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 reach _ VERB VB _ 2 ccomp _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 21.50 _ NUM CD _ 8 dobj _ _ 11 a _ DET DT _ 12 det _ _ 12 barrel _ NOUN NN _ 10 nmod:npmod _ _ 13 or _ CONJ CC _ 14 cc _ _ 14 more _ ADJ JJR _ 10 nummod _ _ 15 on _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 New _ PROPN NNP _ 20 compound _ _ 18 York _ PROPN NNP _ 20 compound _ _ 19 Mercantile _ PROPN NNP _ 20 compound _ _ 20 Exchange _ PROPN NNP _ 8 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 There _ PRON EX _ 5 expl _ _ 2 has _ AUX VBZ _ 5 aux _ _ 3 been _ VERB VBN _ 5 cop _ _ 4 little _ ADJ JJ _ 5 amod _ _ 5 news _ NOUN NN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 account _ VERB VB _ 5 acl _ _ 8 for _ ADP IN _ 10 case _ _ 9 such _ ADJ JJ _ 10 amod _ _ 10 buoyancy _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 oil _ NOUN NN _ 14 compound _ _ 14 markets _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 generally _ ADV RB _ 3 advmod _ _ 3 cite _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 lack _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 bearish _ ADJ JJ _ 8 amod _ _ 8 developments _ NOUN NNS _ 5 nmod _ _ 9 as _ ADV RB _ 5 advmod _ _ 10 well _ ADV RB _ 5 advmod _ _ 11 as _ ADP IN _ 5 amod _ _ 12 rumors _ NOUN NNS _ 5 dep _ _ 13 of _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 possible _ ADJ JJ _ 16 amod _ _ 16 tightening _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 supplies _ NOUN NNS _ 16 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 some _ DET DT _ 21 det _ _ 21 fuels _ NOUN NNS _ 18 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 crudes _ NOUN NNS _ 21 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 There _ PRON EX _ 3 expl _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 are _ VERB VBP _ 0 root _ _ 4 recurring _ VERB VBG _ 5 amod _ _ 5 reports _ NOUN NNS _ 3 nsubj _ _ 6 that _ SCONJ IN _ 11 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 Soviet _ PROPN NNP _ 9 compound _ _ 9 Union _ PROPN NNP _ 11 nsubj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 having _ VERB VBG _ 5 ccomp _ _ 12 difficulties _ NOUN NNS _ 11 dobj _ _ 13 with _ ADP IN _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 oil _ NOUN NN _ 16 compound _ _ 16 exports _ NOUN NNS _ 11 nmod _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 Nigeria _ PROPN NNP _ 22 nsubj _ _ 20 has _ AUX VBZ _ 22 aux _ _ 21 about _ ADV RB _ 22 advmod _ _ 22 reached _ VERB VBN _ 11 conj _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 production _ NOUN NN _ 25 compound _ _ 25 limit _ NOUN NN _ 22 dobj _ _ 26 and _ CONJ CC _ 22 cc _ _ 27 ca _ AUX MD _ 29 aux _ _ 28 n't _ PART RB _ 29 neg _ _ 29 produce _ VERB VB _ 22 conj _ _ 30 as _ ADV RB _ 31 advmod _ _ 31 much _ ADJ JJ _ 29 dobj _ _ 32 as _ SCONJ IN _ 35 mark _ _ 33 it _ PRON PRP _ 35 nsubj _ _ 34 could _ AUX MD _ 35 aux _ _ 35 sell _ VERB VB _ 31 acl:relcl _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 foresee _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 tightening _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 near-term _ ADJ JJ _ 8 amod _ _ 8 supplies _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 particularly _ ADV RB _ 13 advmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 high-quality _ ADJ JJ _ 13 amod _ _ 13 crudes _ NOUN NNS _ 8 nmod _ _ 14 such _ ADJ JJ _ 16 case _ _ 15 as _ ADP IN _ 14 mwe _ _ 16 those _ PRON DT _ 13 nmod _ _ 17 produced _ VERB VBN _ 16 acl _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 North _ PROPN NNP _ 21 compound _ _ 21 Sea _ PROPN NNP _ 17 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 in _ ADP IN _ 24 case _ _ 24 Nigeria _ PROPN NNP _ 21 conj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 a _ DET DT _ 4 det _ _ 3 hostile _ ADJ JJ _ 4 amod _ _ 4 predator _ NOUN NN _ 5 nsubj _ _ 5 emerges _ VERB VBZ _ 18 advcl _ _ 6 for _ ADP IN _ 10 case _ _ 7 Saatchi _ PROPN NNP _ 10 compound _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Saatchi _ PROPN NNP _ 7 conj _ _ 10 Co. _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 18 punct _ _ 12 co-founders _ NOUN NNS _ 13 compound _ _ 13 Charles _ PROPN NNP _ 18 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Maurice _ PROPN NNP _ 16 compound _ _ 16 Saatchi _ PROPN NNP _ 13 conj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 lead _ VERB VB _ 30 ccomp _ _ 19 a _ DET DT _ 22 det _ _ 20 management _ NOUN NN _ 22 compound _ _ 21 buy-out _ NOUN NN _ 22 compound _ _ 22 attempt _ NOUN NN _ 18 dobj _ _ 23 , _ PUNCT , _ 30 punct _ _ 24 an _ DET DT _ 25 det _ _ 25 official _ ADJ JJ _ 30 nsubj _ _ 26 close _ NOUN NN _ 25 amod _ _ 27 to _ ADP TO _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 company _ NOUN NN _ 26 nmod _ _ 30 said _ VERB VBD _ 0 root _ _ 31 . _ PUNCT . _ 30 punct _ _ 1 Financing _ NOUN NN _ 8 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 any _ DET DT _ 5 det _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 attempt _ NOUN NN _ 1 nmod _ _ 6 may _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 problematic _ ADJ JJ _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 wake _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 Friday _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 stock-market _ NOUN NN _ 16 compound _ _ 16 sell-off _ NOUN NN _ 11 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 New _ PROPN NNP _ 19 compound _ _ 19 York _ PROPN NNP _ 16 nmod _ _ 20 and _ CONJ CC _ 16 cc _ _ 21 turmoil _ NOUN NN _ 16 conj _ _ 22 in _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 junk-bond _ NOUN NN _ 25 compound _ _ 25 market _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 27 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 beleaguered _ ADJ JJ _ 5 amod _ _ 4 British _ ADJ JJ _ 5 amod _ _ 5 advertising _ NOUN NN _ 27 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 consulting _ NOUN NN _ 8 compound _ _ 8 giant _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 which _ PRON WDT _ 13 nsubj _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 week _ NOUN NN _ 13 dep _ _ 13 named _ VERB VBN _ 5 acl:relcl _ _ 14 a _ DET DT _ 18 det _ _ 15 new _ ADJ JJ _ 18 amod _ _ 16 chief _ ADJ JJ _ 18 amod _ _ 17 executive _ ADJ NN _ 18 amod _ _ 18 officer _ NOUN NN _ 13 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 replace _ VERB VB _ 18 acl _ _ 21 Maurice _ PROPN NNP _ 22 compound _ _ 22 Saatchi _ PROPN NNP _ 20 dobj _ _ 23 , _ PUNCT , _ 5 punct _ _ 24 has _ AUX VBZ _ 27 aux _ _ 25 been _ VERB VBN _ 27 cop _ _ 26 the _ DET DT _ 27 det _ _ 27 subject _ NOUN NN _ 0 root _ _ 28 of _ ADP IN _ 31 case _ _ 29 intense _ ADJ JJ _ 31 amod _ _ 30 takeover _ NOUN NN _ 31 compound _ _ 31 speculation _ NOUN NN _ 27 nmod _ _ 32 for _ ADP IN _ 33 case _ _ 33 weeks _ NOUN NNS _ 27 nmod _ _ 34 . _ PUNCT . _ 27 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 13 nmod:tmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 Saatchi _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 largest _ ADJ JJS _ 7 amod _ _ 7 shareholder _ NOUN NN _ 13 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Southeastern _ PROPN NNP _ 11 compound _ _ 10 Asset _ PROPN NNP _ 11 compound _ _ 11 Management _ PROPN NNP _ 7 appos _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 17 nsubjpass _ _ 15 had _ AUX VBD _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 approached _ VERB VBN _ 13 ccomp _ _ 18 by _ ADP IN _ 23 case _ _ 19 one _ NUM CD _ 23 nummod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 more _ ADJ JJR _ 19 conj _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 parties _ NOUN NNS _ 17 nmod _ _ 24 interested _ ADJ JJ _ 23 amod _ _ 25 in _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 possible _ ADJ JJ _ 28 amod _ _ 28 restructuring _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 Carl _ PROPN NNP _ 3 compound _ _ 3 Spielvogel _ PROPN NNP _ 18 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chief _ ADJ JJ _ 7 amod _ _ 6 executive _ ADJ NN _ 7 amod _ _ 7 officer _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 16 case _ _ 9 Saatchi _ PROPN NNP _ 16 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 big _ ADJ JJ _ 16 amod _ _ 12 Backer _ PROPN NNP _ 16 compound _ _ 13 Spielvogel _ PROPN NNP _ 16 compound _ _ 14 Bates _ PROPN NNP _ 16 compound _ _ 15 advertising _ NOUN NN _ 16 compound _ _ 16 unit _ NOUN NN _ 7 nmod _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 he _ PRON PRP _ 21 nsubj _ _ 20 had _ AUX VBD _ 21 aux _ _ 21 offered _ VERB VBN _ 18 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 lead _ VERB VB _ 21 xcomp _ _ 24 a _ DET DT _ 26 det _ _ 25 management _ NOUN NN _ 26 compound _ _ 26 buy-out _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 company _ NOUN NN _ 26 nmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 but _ CONJ CC _ 21 cc _ _ 32 was _ AUX VBD _ 33 auxpass _ _ 33 rebuffed _ VERB VBN _ 21 conj _ _ 34 by _ ADP IN _ 36 case _ _ 35 Charles _ PROPN NNP _ 36 compound _ _ 36 Saatchi _ PROPN NNP _ 33 nmod _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Spielvogel _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 7 nsubj _ _ 5 would _ AUX MD _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 launch _ VERB VB _ 3 ccomp _ _ 8 a _ DET DT _ 10 det _ _ 9 hostile _ ADJ JJ _ 10 amod _ _ 10 bid _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 8 nsubj _ _ 3 close _ ADV NN _ 2 amod _ _ 4 to _ ADP TO _ 5 case _ _ 5 Saatchi _ PROPN NNP _ 3 nmod _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Saatchi _ PROPN NNP _ 5 conj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 35 mark _ _ 10 `` _ PUNCT `` _ 35 punct _ _ 11 if _ SCONJ IN _ 14 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 bidder _ NOUN NN _ 14 nsubj _ _ 14 came _ VERB VBD _ 35 advcl _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 with _ ADP IN _ 20 case _ _ 17 a _ DET DT _ 20 det _ _ 18 ludicrously _ ADV RB _ 19 advmod _ _ 19 high _ ADJ JJ _ 20 amod _ _ 20 offer _ NOUN NN _ 14 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 24 det _ _ 23 crazy _ ADJ JJ _ 24 amod _ _ 24 offer _ NOUN NN _ 20 appos _ _ 25 which _ PRON WDT _ 27 dobj _ _ 26 Saatchi _ PROPN NNP _ 27 nsubj _ _ 27 knew _ VERB VBD _ 24 acl:relcl _ _ 28 it _ PRON PRP _ 31 nsubj _ _ 29 could _ AUX MD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 beat _ VERB VB _ 27 ccomp _ _ 32 , _ PUNCT , _ 35 punct _ _ 33 it _ PRON PRP _ 35 nsubj _ _ 34 would _ AUX MD _ 35 aux _ _ 35 have _ VERB VB _ 8 ccomp _ _ 36 no _ DET DT _ 37 neg _ _ 37 choice _ NOUN NN _ 35 dobj _ _ 38 but _ CONJ CC _ 40 cc _ _ 39 to _ PART TO _ 40 mark _ _ 40 recommend _ VERB VB _ 37 acl _ _ 41 it _ PRON PRP _ 40 dobj _ _ 42 to _ ADP TO _ 43 case _ _ 43 shareholders _ NOUN NNS _ 40 nmod _ _ 44 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 -LCB- _ PUNCT -LRB- _ 3 punct _ _ 3 otherwise _ ADV RB _ 8 dep _ _ 4 -RCB- _ PUNCT -RRB- _ 3 punct _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 undoubtedly _ ADV RB _ 8 advmod _ _ 8 come _ VERB VB _ 0 root _ _ 9 back _ ADP RB _ 8 compound:prt _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 11 with _ ADP IN _ 13 case _ _ 12 an _ DET DT _ 13 det _ _ 13 offer _ NOUN NN _ 8 nmod _ _ 14 by _ ADP IN _ 15 case _ _ 15 management _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 any _ DET DT _ 5 det _ _ 5 buy-out _ NOUN NN _ 8 nsubjpass _ _ 6 would _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 led _ VERB VBN _ 3 ccomp _ _ 9 by _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 current _ ADJ JJ _ 12 amod _ _ 12 board _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 whose _ PRON WP$ _ 15 nmod:poss _ _ 15 chairman _ NOUN NN _ 18 nsubj _ _ 16 is _ VERB VBZ _ 18 cop _ _ 17 Maurice _ PROPN NNP _ 18 compound _ _ 18 Saatchi _ PROPN NNP _ 12 acl:relcl _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 whose _ PRON WP$ _ 23 nmod:poss _ _ 21 strategic _ ADJ JJ _ 23 amod _ _ 22 guiding _ ADJ VBG _ 23 amod _ _ 23 force _ NOUN NN _ 25 nsubjpass _ _ 24 is _ AUX VBZ _ 25 auxpass _ _ 25 believed _ VERB VBN _ 18 conj _ _ 26 to _ PART TO _ 29 mark _ _ 27 be _ VERB VB _ 29 cop _ _ 28 Charles _ PROPN NNP _ 29 compound _ _ 29 Saatchi _ PROPN NNP _ 25 xcomp _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Spielvogel _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 n't _ PART RB _ 5 neg _ _ 5 part _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 board _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 nor _ CONJ CC _ 5 cc _ _ 11 are _ VERB VBP _ 5 conj _ _ 12 any _ DET DT _ 11 nsubj _ _ 13 of _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 heads _ NOUN NNS _ 12 nmod _ _ 17 of _ ADP IN _ 23 case _ _ 18 Saatchi _ PROPN NNP _ 23 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 big _ ADJ JJ _ 23 amod _ _ 21 U.S.-based _ ADJ JJ _ 23 amod _ _ 22 ad _ NOUN NN _ 23 compound _ _ 23 agencies _ NOUN NNS _ 16 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 name _ VERB VB _ 0 root _ _ 6 any _ DET DT _ 7 det _ _ 7 price _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 securities _ NOUN NNS _ 11 compound _ _ 11 analysts _ NOUN NNS _ 13 nsubj _ _ 12 have _ AUX VBP _ 13 aux _ _ 13 said _ VERB VBN _ 5 conj _ _ 14 Saatchi _ NOUN NNP _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 fetch _ VERB VB _ 13 ccomp _ _ 17 upward _ ADV RB _ 19 advmod _ _ 18 of _ ADP IN _ 19 advmod _ _ 19 $ _ SYM $ _ 16 dobj _ _ 20 1.3 _ NUM CD _ 21 compound _ _ 21 billion _ NUM CD _ 19 nummod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 3 nsubj _ _ 3 denied _ VERB VBD _ 0 root _ _ 4 speculation _ NOUN NN _ 3 dobj _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 Saatchi _ PROPN NNP _ 8 nsubj _ _ 7 was _ AUX VBD _ 8 aux _ _ 8 bringing _ VERB VBG _ 4 ccomp _ _ 9 in _ ADP IN _ 8 compound:prt _ _ 10 the _ DET DT _ 14 det _ _ 11 new _ ADJ JJ _ 14 amod _ _ 12 chief _ ADJ JJ _ 14 amod _ _ 13 executive _ ADJ NN _ 14 amod _ _ 14 officer _ NOUN NN _ 8 dobj _ _ 15 only _ ADV RB _ 17 advmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 clean _ VERB VB _ 8 advcl _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 the _ DET DT _ 20 det _ _ 20 company _ NOUN NN _ 17 dobj _ _ 21 financially _ ADV RB _ 17 advmod _ _ 22 so _ SCONJ RB _ 27 mark _ _ 23 that _ SCONJ IN _ 22 mwe _ _ 24 the _ DET DT _ 25 det _ _ 25 brothers _ NOUN NNS _ 27 nsubj _ _ 26 could _ AUX MD _ 27 aux _ _ 27 lead _ VERB VB _ 17 advcl _ _ 28 a _ DET DT _ 29 det _ _ 29 buy-back _ NOUN NN _ 27 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 speculation _ NOUN NN _ 3 nsubj _ _ 3 abounded _ VERB VBD _ 0 root _ _ 4 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 5 as _ SCONJ IN _ 8 mark _ _ 6 industry _ NOUN NN _ 7 compound _ _ 7 executives _ NOUN NNS _ 8 nsubj _ _ 8 analyzed _ VERB VBD _ 3 advcl _ _ 9 the _ DET DT _ 10 det _ _ 10 appointment _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 new _ ADJ JJ _ 15 amod _ _ 14 chief _ ADJ JJ _ 15 amod _ _ 15 executive _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Robert _ PROPN NNP _ 18 compound _ _ 18 Louis-Dreyfus _ PROPN NNP _ 15 appos _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 who _ PRON WP _ 21 nsubj _ _ 21 joins _ VERB VBZ _ 15 acl:relcl _ _ 22 Saatchi _ PROPN NNP _ 21 dobj _ _ 23 and _ CONJ CC _ 21 cc _ _ 24 becomes _ VERB VBZ _ 21 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 member _ NOUN NN _ 24 xcomp _ _ 27 of _ ADP IN _ 29 case _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 board _ NOUN NN _ 26 nmod _ _ 30 on _ ADP IN _ 31 case _ _ 31 Jan. _ PROPN NNP _ 21 nmod _ _ 32 1 _ NUM CD _ 31 nummod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Louis-Dreyfus _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 formerly _ ADV RB _ 6 advmod _ _ 5 chief _ ADJ JJ _ 6 amod _ _ 6 executive _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 14 case _ _ 8 the _ DET DT _ 14 det _ _ 9 pharmaceutical _ ADJ JJ _ 14 amod _ _ 10 research _ NOUN NN _ 14 compound _ _ 11 firm _ NOUN NN _ 14 compound _ _ 12 IMS _ PROPN NNP _ 14 compound _ _ 13 International _ PROPN NNP _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 has _ VERB VBZ _ 0 root _ _ 17 a _ DET DT _ 18 det _ _ 18 reputation _ NOUN NN _ 16 dobj _ _ 19 as _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 savvy _ ADJ JJ _ 23 amod _ _ 22 financial _ ADJ JJ _ 23 amod _ _ 23 manager _ NOUN NN _ 18 nmod _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 and _ CONJ CC _ 16 cc _ _ 26 will _ AUX MD _ 28 aux _ _ 27 be _ AUX VB _ 28 auxpass _ _ 28 charged _ VERB VBN _ 16 conj _ _ 29 largely _ ADV RB _ 31 advmod _ _ 30 with _ SCONJ IN _ 31 mark _ _ 31 repairing _ VERB VBG _ 28 advcl _ _ 32 Saatchi _ PROPN NNP _ 36 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 poor _ ADJ JJ _ 36 amod _ _ 35 financial _ ADJ JJ _ 36 amod _ _ 36 state _ NOUN NN _ 31 dobj _ _ 37 . _ PUNCT . _ 16 punct _ _ 1 Asked _ VERB VBN _ 24 advcl _ _ 2 about _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 speculation _ NOUN NN _ 1 nmod _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Louis-Dreyfus _ PROPN NNP _ 10 nsubjpass _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 auxpass _ _ 10 hired _ VERB VBN _ 4 ccomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 pave _ VERB VB _ 10 xcomp _ _ 13 the _ DET DT _ 14 det _ _ 14 way _ NOUN NN _ 12 dobj _ _ 15 for _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 buy-out _ NOUN NN _ 12 nmod _ _ 18 by _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 brothers _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 executive _ NOUN NN _ 24 nsubj _ _ 24 replied _ VERB VBD _ 0 root _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 `` _ PUNCT `` _ 24 punct _ _ 27 That _ PRON DT _ 31 nsubj _ _ 28 is _ VERB VBZ _ 31 cop _ _ 29 n't _ PART RB _ 31 neg _ _ 30 the _ DET DT _ 31 det _ _ 31 reason _ NOUN NN _ 24 ccomp _ _ 32 Dreyfus _ PROPN NNP _ 35 nsubjpass _ _ 33 has _ AUX VBZ _ 35 aux _ _ 34 been _ AUX VBN _ 35 auxpass _ _ 35 brought _ VERB VBN _ 31 acl:relcl _ _ 36 in _ ADP RP _ 35 compound:prt _ _ 37 . _ PUNCT . _ 24 punct _ _ 1 He _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 brought _ VERB VBN _ 0 root _ _ 4 in _ ADP IN _ 3 compound:prt _ _ 5 to _ PART TO _ 6 mark _ _ 6 turn _ VERB VB _ 3 xcomp _ _ 7 around _ ADP RP _ 6 compound:prt _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 6 dobj _ _ 10 . _ PUNCT . _ 3 punct _ _ 11 '' _ PUNCT '' _ 3 punct _ _ 1 Separately _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 several _ ADJ JJ _ 6 amod _ _ 4 Saatchi _ PROPN NNP _ 6 compound _ _ 5 agency _ NOUN NN _ 6 compound _ _ 6 clients _ NOUN NNS _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 believe _ VERB VBP _ 7 ccomp _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 management _ NOUN NN _ 14 compound _ _ 14 shakeup _ NOUN NN _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 have _ VERB VB _ 9 ccomp _ _ 17 little _ ADJ JJ _ 18 amod _ _ 18 affect _ NOUN NN _ 16 dobj _ _ 19 on _ ADP IN _ 20 case _ _ 20 them _ PRON PRP _ 18 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 had _ VERB VBD _ 19 ccomp _ _ 6 any _ DET DT _ 7 det _ _ 7 impact _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 9 case _ _ 9 us _ PRON PRP _ 7 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 nor _ CONJ CC _ 5 cc _ _ 12 do _ AUX VBP _ 14 aux _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 expect _ VERB VBP _ 5 conj _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 to _ PART TO _ 14 xcomp _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 spokeswoman _ NOUN NN _ 19 nsubj _ _ 22 for _ ADP IN _ 25 case _ _ 23 Miller _ PROPN NNP _ 25 compound _ _ 24 Brewing _ PROPN NNP _ 25 compound _ _ 25 Co. _ PROPN NNP _ 21 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 29 det _ _ 28 major _ ADJ JJ _ 29 amod _ _ 29 client _ NOUN NN _ 25 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 Backer _ PROPN NNP _ 32 compound _ _ 32 Spielvogel _ PROPN NNP _ 29 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 John _ PROPN NNP _ 2 compound _ _ 2 Lampe _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 director _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 6 case _ _ 6 advertising _ NOUN NN _ 4 nmod _ _ 7 at _ ADP IN _ 9 case _ _ 8 PaineWebber _ PROPN NNP _ 9 compound _ _ 9 Inc. _ PROPN NNP _ 4 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 12 det _ _ 12 Saatchi _ PROPN NNP _ 9 appos _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Saatchi _ PROPN NNP _ 16 compound _ _ 15 Advertising _ PROPN NNP _ 16 compound _ _ 16 client _ NOUN NN _ 12 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 : _ PUNCT : _ 18 punct _ _ 20 `` _ PUNCT `` _ 22 punct _ _ 21 We _ PRON PRP _ 22 nsubj _ _ 22 have _ VERB VBP _ 18 ccomp _ _ 23 no _ DET DT _ 24 neg _ _ 24 problem _ NOUN NN _ 22 dobj _ _ 25 with _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 announcement _ NOUN NN _ 24 nmod _ _ 28 , _ PUNCT , _ 22 punct _ _ 29 because _ SCONJ IN _ 33 mark _ _ 30 we _ PRON PRP _ 33 nsubj _ _ 31 do _ AUX VBP _ 33 aux _ _ 32 n't _ PART RB _ 33 neg _ _ 33 know _ VERB VB _ 22 advcl _ _ 34 what _ PRON WP _ 35 det _ _ 35 change _ NOUN VB _ 38 dobj _ _ 36 it _ PRON PRP _ 38 nsubj _ _ 37 's _ AUX VBZ _ 38 aux _ _ 38 going _ VERB VBG _ 33 ccomp _ _ 39 to _ PART TO _ 40 mark _ _ 40 bring _ VERB VB _ 38 xcomp _ _ 41 about _ ADP RB _ 40 compound:prt _ _ 42 . _ PUNCT . _ 18 punct _ _ 1 We _ PRON PRP _ 4 nsubj _ _ 2 are _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 going _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 change _ VERB VB _ 4 xcomp _ _ 7 agencies _ NOUN NNS _ 6 dobj _ _ 8 because _ ADP IN _ 11 case _ _ 9 of _ ADP IN _ 8 mwe _ _ 10 a _ DET DT _ 11 det _ _ 11 change _ NOUN NN _ 6 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 London _ PROPN NNP _ 11 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 15 '' _ PUNCT '' _ 4 punct _ _ 1 Executives _ NOUN NNS _ 20 nsubj _ _ 2 at _ ADP IN _ 7 case _ _ 3 Backer _ PROPN NNP _ 7 compound _ _ 4 Spielvogel _ PROPN NNP _ 7 compound _ _ 5 client _ NOUN NN _ 7 compound _ _ 6 Avis _ PROPN NNP _ 7 compound _ _ 7 Inc. _ PROPN NNP _ 1 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 as _ ADV RB _ 7 cc _ _ 10 well _ ADV RB _ 9 mwe _ _ 11 as _ ADP IN _ 9 mwe _ _ 12 at _ ADP IN _ 17 case _ _ 13 Saatchi _ NOUN NNP _ 17 compound _ _ 14 client _ NOUN NN _ 17 compound _ _ 15 Philips _ PROPN NN _ 17 compound _ _ 16 Lighting _ PROPN NNP _ 17 compound _ _ 17 Co. _ PROPN NNP _ 7 conj _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 also _ ADV RB _ 20 advmod _ _ 20 said _ VERB VBD _ 0 root _ _ 21 they _ PRON PRP _ 22 nsubj _ _ 22 saw _ VERB VBD _ 20 ccomp _ _ 23 no _ DET DT _ 24 neg _ _ 24 effect _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 20 punct _ _ 1 Executives _ NOUN NNS _ 17 nsubj _ _ 2 at _ ADP IN _ 5 case _ _ 3 Prudential-Bache _ PROPN NNP _ 5 compound _ _ 4 Securities _ PROPN NNPS _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 10 det _ _ 8 Backer _ PROPN NNP _ 10 compound _ _ 9 Spielvogel _ PROPN NNP _ 10 compound _ _ 10 client _ NOUN NN _ 5 appos _ _ 11 that _ PRON WDT _ 13 nsubj _ _ 12 is _ AUX VBZ _ 13 aux _ _ 13 reviewing _ VERB VBG _ 10 acl:relcl _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 account _ NOUN NN _ 13 dobj _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 declined _ VERB VBD _ 0 root _ _ 18 comment _ NOUN NN _ 17 dobj _ _ 19 . _ PUNCT . _ 17 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Spielvogel _ PROPN NNP _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 said _ VERB VBN _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 Prudential-Bache _ PROPN NNP _ 8 nsubjpass _ _ 7 was _ VERB VBD _ 8 auxpass _ _ 8 prepared _ VERB VBN _ 4 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 finance _ VERB VB _ 8 xcomp _ _ 11 either _ CONJ CC _ 14 cc:preconj _ _ 12 a _ DET DT _ 14 det _ _ 13 management _ NOUN NN _ 14 compound _ _ 14 buy-out _ NOUN NN _ 10 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 restructuring _ NOUN NN _ 14 conj _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 a _ DET DT _ 20 det _ _ 20 buy-out _ NOUN NN _ 14 conj _ _ 21 of _ ADP IN _ 23 case _ _ 22 Backer _ PROPN NNP _ 23 compound _ _ 23 Spielvogel _ PROPN NNP _ 20 nmod _ _ 24 alone _ ADV RB _ 23 advmod _ _ 25 , _ PUNCT , _ 20 punct _ _ 26 led _ VERB VBN _ 20 acl _ _ 27 by _ ADP IN _ 28 case _ _ 28 him _ PRON PRP _ 26 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Ad _ NOUN NN _ 2 compound _ _ 2 Notes _ NOUN NNS _ 0 root _ _ 3 ... _ PUNCT : _ 2 punct _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 NEW _ ADJ JJ _ 2 amod _ _ 2 ACCOUNT _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 California _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Glendale _ PROPN NNP _ 5 compound _ _ 4 Federal _ PROPN NNP _ 5 compound _ _ 5 Bank _ PROPN NNP _ 6 nsubj _ _ 6 awarded _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 15 nmod:poss _ _ 8 $ _ SYM $ _ 12 dep _ _ 9 12 _ NUM CD _ 12 compound _ _ 10 million _ NUM CD _ 12 compound _ _ 11 to _ ADP TO _ 12 dep _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 15 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 account _ NOUN NN _ 6 dobj _ _ 16 to _ ADP TO _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 Los _ PROPN NNP _ 20 compound _ _ 19 Angeles _ PROPN NNP _ 20 compound _ _ 20 office _ NOUN NN _ 6 nmod _ _ 21 of _ ADP IN _ 26 case _ _ 22 Omnicom _ PROPN NNP _ 23 compound _ _ 23 Group _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 BBDO _ PROPN NNP _ 26 compound _ _ 26 agency _ NOUN NN _ 20 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 account _ NOUN NN _ 5 nsubjpass _ _ 3 was _ AUX VBD _ 5 auxpass _ _ 4 previously _ ADV RB _ 5 advmod _ _ 5 handled _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 13 case _ _ 7 Davis _ PROPN NNP _ 13 compound _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Ball _ PROPN NNP _ 7 conj _ _ 10 & _ CONJ CC _ 7 cc _ _ 11 Colombatto _ PROPN NNP _ 7 conj _ _ 12 Advertising _ PROPN NNP _ 13 compound _ _ 13 Inc. _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 18 det _ _ 16 Los _ PROPN NNP _ 18 compound _ _ 17 Angeles _ PROPN NNP _ 18 compound _ _ 18 agency _ NOUN NN _ 13 appos _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 ACCOUNT _ PROPN NN _ 2 compound _ _ 2 REVIEW _ PROPN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 Royal _ PROPN NNP _ 4 compound _ _ 2 Crown _ PROPN NNP _ 4 compound _ _ 3 Cola _ PROPN NNP _ 4 compound _ _ 4 Co. _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 ended _ VERB VBN _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 relationship _ NOUN NN _ 6 dobj _ _ 9 with _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Boston _ PROPN NNP _ 12 compound _ _ 12 office _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 20 case _ _ 14 Hill _ PROPN NNP _ 20 compound _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 Holliday _ PROPN NNP _ 20 appos _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 Connors _ PROPN NNP _ 20 appos _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 Cosmopulos _ PROPN NNP _ 12 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 account _ NOUN NN _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 billed _ VERB VBN _ 0 root _ _ 5 about _ ADV IN _ 6 advmod _ _ 6 $ _ SYM $ _ 4 dobj _ _ 7 6 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 10 case _ _ 10 1988 _ NUM CD _ 4 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 according _ VERB VBG _ 16 case _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 Leading _ PROPN VBG _ 16 compound _ _ 15 National _ PROPN NNP _ 16 compound _ _ 16 Advertisers _ PROPN NNPS _ 4 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 NOT-GUILTY _ ADJ NNP _ 2 amod _ _ 2 PLEA _ NOUN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 As _ SCONJ IN _ 2 mark _ _ 2 expected _ VERB VBN _ 18 advcl _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 Young _ PROPN NNP _ 7 compound _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Rubicam _ PROPN NNP _ 4 conj _ _ 7 Inc. _ PROPN NNP _ 18 nsubj _ _ 8 along _ ADP IN _ 7 advmod _ _ 9 with _ ADP IN _ 12 case _ _ 10 two _ NUM CD _ 12 nummod _ _ 11 senior _ ADJ JJ _ 12 amod _ _ 12 executives _ NOUN NNS _ 8 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 a _ DET DT _ 16 det _ _ 15 former _ ADJ JJ _ 16 amod _ _ 16 employee _ NOUN NN _ 12 conj _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 pleaded _ VERB VBD _ 0 root _ _ 19 not _ ADV RB _ 20 neg _ _ 20 guilty _ ADJ JJ _ 18 xcomp _ _ 21 in _ ADP IN _ 23 case _ _ 22 federal _ ADJ JJ _ 23 amod _ _ 23 court _ NOUN NN _ 18 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 New _ PROPN NNP _ 26 compound _ _ 26 Haven _ PROPN NNP _ 18 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Conn. _ PROPN NNP _ 26 appos _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 to _ ADP TO _ 34 case _ _ 31 conspiracy _ NOUN NN _ 34 compound _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 racketeering _ NOUN NN _ 31 conj _ _ 34 charges _ NOUN NNS _ 18 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 charged _ VERB VBN _ 0 root _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 bribed _ VERB VBD _ 4 ccomp _ _ 8 Jamaican _ ADJ JJ _ 9 amod _ _ 9 officials _ NOUN NNS _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 win _ VERB VB _ 7 advcl _ _ 12 the _ DET DT _ 17 det _ _ 13 Jamaica _ PROPN NNP _ 17 compound _ _ 14 Tourist _ PROPN NNP _ 17 compound _ _ 15 Board _ PROPN NNP _ 17 compound _ _ 16 ad _ NOUN NN _ 17 compound _ _ 17 account _ NOUN NN _ 11 dobj _ _ 18 in _ ADP IN _ 19 case _ _ 19 1981 _ NUM CD _ 7 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 9 nsubj _ _ 3 for _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 6 det _ _ 5 U.S. _ PROPN NNP _ 6 compound _ _ 6 Attorney _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 office _ NOUN NN _ 2 nmod _ _ 9 said _ VERB VBD _ 0 root _ _ 10 extradition _ NOUN NN _ 11 compound _ _ 11 proceedings _ NOUN NNS _ 15 nsubj _ _ 12 are _ AUX VBP _ 15 aux _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 just _ ADV RB _ 15 advmod _ _ 15 beginning _ VERB VBG _ 9 ccomp _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 for _ ADP IN _ 21 case _ _ 18 the _ DET DT _ 21 det _ _ 19 other _ ADJ JJ _ 21 amod _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 defendants _ NOUN NNS _ 15 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 case _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 21 punct _ _ 26 Eric _ PROPN NNP _ 28 compound _ _ 27 Anthony _ PROPN NNP _ 28 compound _ _ 28 Abrahams _ PROPN NNP _ 21 appos _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 former _ ADJ JJ _ 33 amod _ _ 31 Jamaican _ ADJ JJ _ 33 amod _ _ 32 tourism _ NOUN NN _ 33 compound _ _ 33 minister _ NOUN NN _ 28 appos _ _ 34 , _ PUNCT , _ 28 punct _ _ 35 and _ CONJ CC _ 28 cc _ _ 36 Jamaican _ ADJ JJ _ 40 amod _ _ 37 businessman _ NOUN NN _ 40 compound _ _ 38 Arnold _ PROPN NNP _ 40 compound _ _ 39 Foote _ PROPN NNP _ 40 compound _ _ 40 Jr _ PROPN NNP _ 28 conj _ _ 41 . _ PUNCT . _ 9 punct _ _ 1 KOREAN _ ADJ NNP _ 2 amod _ _ 2 AGENCY _ NOUN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Samsung _ PROPN NNP _ 3 compound _ _ 3 Group _ PROPN NNP _ 7 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Bozell _ PROPN NNP _ 6 compound _ _ 6 Inc. _ PROPN NNP _ 3 conj _ _ 7 agreed _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 establish _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 14 det _ _ 11 joint _ ADJ JJ _ 14 amod _ _ 12 venture _ NOUN NN _ 14 compound _ _ 13 advertising _ NOUN NN _ 14 compound _ _ 14 agency _ NOUN NN _ 9 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 South _ PROPN NNP _ 17 compound _ _ 17 Korea _ PROPN NNP _ 9 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Bozell _ PROPN NNP _ 3 compound _ _ 2 Cheil _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 15 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 as _ SCONJ IN _ 11 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 agency _ NOUN NN _ 11 nsubjpass _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 called _ VERB VBN _ 3 dep _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 will _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 based _ VERB VBN _ 0 root _ _ 16 in _ ADP IN _ 17 case _ _ 17 Seoul _ PROPN NNP _ 15 nmod _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 is _ AUX VBZ _ 22 auxpass _ _ 20 70 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 22 dobj _ _ 22 owned _ VERB VBN _ 15 conj _ _ 23 by _ ADP IN _ 24 case _ _ 24 Samsung _ PROPN NNP _ 22 nmod _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 30 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 28 dobj _ _ 28 owned _ VERB VBN _ 22 conj _ _ 29 by _ ADP IN _ 30 case _ _ 30 Bozell _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 Samsung _ PROPN NNP _ 3 nsubj _ _ 2 already _ ADV RB _ 3 advmod _ _ 3 owns _ VERB VBZ _ 0 root _ _ 4 Korea _ PROPN NNP _ 7 compound _ _ 5 First _ PROPN NNP _ 7 compound _ _ 6 Advertising _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 3 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 that _ DET DT _ 10 det _ _ 10 country _ NOUN NN _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 largest _ ADJ JJS _ 13 amod _ _ 13 agency _ NOUN NN _ 7 appos _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Bozell _ PROPN NNP _ 2 nsubj _ _ 2 joins _ VERB VBZ _ 0 root _ _ 3 Backer _ PROPN NNP _ 5 compound _ _ 4 Spielvogel _ PROPN NNP _ 5 compound _ _ 5 Bates _ PROPN NNP _ 2 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Ogilvy _ PROPN NNP _ 8 compound _ _ 8 Group _ PROPN NNP _ 5 conj _ _ 9 as _ ADP IN _ 11 case _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 agencies _ NOUN NNS _ 2 nmod _ _ 12 with _ ADP IN _ 13 case _ _ 13 interests _ NOUN NNS _ 11 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 Korean _ ADJ JJ _ 16 amod _ _ 16 agencies _ NOUN NNS _ 13 nmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Citing _ VERB VBG _ 17 advcl _ _ 2 a _ DET DT _ 3 det _ _ 3 payment _ NOUN NN _ 1 dobj _ _ 4 from _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 supplier _ NOUN NN _ 3 nmod _ _ 7 and _ CONJ CC _ 3 cc _ _ 8 strong _ ADJ JJ _ 9 amod _ _ 9 sales _ NOUN NNS _ 3 conj _ _ 10 of _ ADP IN _ 13 case _ _ 11 certain _ ADJ JJ _ 13 amod _ _ 12 data-storage _ ADJ JJ _ 13 amod _ _ 13 products _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Maxtor _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 earnings _ NOUN NNS _ 21 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 revenue _ NOUN NN _ 18 conj _ _ 21 jumped _ VERB VBD _ 17 ccomp _ _ 22 in _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 second _ ADJ JJ _ 25 amod _ _ 25 quarter _ NOUN NN _ 21 nmod _ _ 26 ended _ VERB VBN _ 25 acl _ _ 27 Sept. _ PROPN NNP _ 26 nmod:tmod _ _ 28 24 _ NUM CD _ 27 nummod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 maker _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 computer-data-storage _ ADJ JJ _ 5 amod _ _ 5 products _ NOUN NNS _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 net _ ADJ JJ _ 8 amod _ _ 8 income _ NOUN NN _ 9 nsubj _ _ 9 rose _ VERB VBD _ 6 ccomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 4.8 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 23 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 from _ ADP IN _ 23 case _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 net _ NOUN NN _ 9 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 1.1 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 five _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 soared _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 117 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 from _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 2 nmod _ _ 9 81.5 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 Maxtor _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 results _ NOUN NNS _ 6 nsubjpass _ _ 5 were _ AUX VBD _ 6 auxpass _ _ 6 boosted _ VERB VBN _ 2 ccomp _ _ 7 by _ ADP IN _ 10 case _ _ 8 $ _ SYM $ _ 10 dep _ _ 9 2 _ NUM CD _ 10 nummod _ _ 10 million _ NUM CD _ 6 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 payments _ NOUN NNS _ 10 nmod _ _ 13 received _ VERB VBN _ 12 acl _ _ 14 from _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 supplier _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 for _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 certain _ ADJ JJ _ 21 amod _ _ 21 line _ NOUN NN _ 12 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 products _ NOUN NNS _ 21 nmod _ _ 24 that _ ADP WDT _ 28 dobj _ _ 25 Maxtor _ PROPN NNP _ 28 nsubj _ _ 26 is _ AUX VBZ _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 going _ VERB VBG _ 21 acl:relcl _ _ 29 to _ PART TO _ 30 mark _ _ 30 sell _ VERB VB _ 28 xcomp _ _ 31 anymore _ ADV RB _ 30 advmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 Maxtor _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 effects _ NOUN NNS _ 9 nsubj _ _ 4 from _ SCONJ IN _ 5 mark _ _ 5 discontinuing _ VERB VBG _ 3 acl _ _ 6 the _ DET DT _ 7 det _ _ 7 line _ NOUN NN _ 5 dobj _ _ 8 may _ AUX MD _ 9 aux _ _ 9 have _ VERB VB _ 2 ccomp _ _ 10 a _ DET DT _ 12 det _ _ 11 positive _ ADJ JJ _ 12 amod _ _ 12 effect _ NOUN NN _ 9 dobj _ _ 13 on _ ADP IN _ 15 case _ _ 14 future _ ADJ JJ _ 15 amod _ _ 15 earnings _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 revenue _ NOUN NN _ 15 conj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokeswoman _ NOUN NN _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 elaborate _ VERB VB _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 but _ CONJ CC _ 5 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 10 nsubj _ _ 10 said _ VERB VBD _ 5 conj _ _ 11 the _ DET DT _ 13 det _ _ 12 discontinued _ VERB VBN _ 13 amod _ _ 13 product _ NOUN NN _ 19 nsubj _ _ 14 has _ AUX VBZ _ 19 aux _ _ 15 never _ ADV RB _ 19 neg _ _ 16 been _ VERB VBN _ 19 cop _ _ 17 a _ DET DT _ 19 det _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 source _ NOUN NN _ 10 ccomp _ _ 20 of _ ADP IN _ 21 case _ _ 21 revenue _ NOUN NN _ 19 nmod _ _ 22 or _ CONJ CC _ 21 cc _ _ 23 profit _ NOUN NN _ 21 conj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Operationally _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Maxtor _ PROPN NNP _ 4 nsubj _ _ 4 benefited _ VERB VBD _ 0 root _ _ 5 from _ ADP IN _ 7 case _ _ 6 robust _ ADJ JJ _ 7 amod _ _ 7 sales _ NOUN NNS _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 products _ NOUN NNS _ 7 nmod _ _ 10 that _ PRON WDT _ 11 nsubj _ _ 11 store _ VERB VBP _ 9 acl:relcl _ _ 12 data _ NOUN NNS _ 11 dobj _ _ 13 for _ ADP IN _ 16 case _ _ 14 high-end _ ADJ JJ _ 16 amod _ _ 15 personal _ ADJ JJ _ 16 amod _ _ 16 computers _ NOUN NNS _ 11 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 computer _ NOUN NN _ 19 compound _ _ 19 workstations _ NOUN NNS _ 16 conj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 fiscal _ ADJ JJ _ 5 amod _ _ 4 first _ ADJ JJ _ 5 amod _ _ 5 half _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 net _ NOUN NN _ 9 nsubj _ _ 8 was _ VERB VBD _ 9 cop _ _ 9 $ _ SYM $ _ 0 root _ _ 10 7 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 34 _ NUM CD _ 15 nummod _ _ 15 cents _ NOUN NNS _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 up _ ADV RB _ 9 advmod _ _ 20 from _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 $ _ SYM $ _ 19 nmod _ _ 24 3.1 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 15 _ NUM CD _ 29 nummod _ _ 29 cents _ NOUN NNS _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 225.5 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 from _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 2 nmod _ _ 9 161.8 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 Robert _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Walden _ PROPN NNP _ 10 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 62 _ NUM CD _ 6 nummod _ _ 6 years _ NOUN NNS _ 7 nmod:npmod _ _ 7 old _ ADJ JJ _ 3 amod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 elected _ VERB VBN _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 director _ NOUN NN _ 10 xcomp _ _ 13 of _ ADP IN _ 15 case _ _ 14 this _ DET DT _ 15 det _ _ 15 provider _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 advanced _ ADJ JJ _ 19 amod _ _ 18 technology _ NOUN NN _ 19 compound _ _ 19 systems _ NOUN NNS _ 15 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 services _ NOUN NNS _ 19 conj _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 increasing _ VERB VBG _ 10 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 board _ NOUN NN _ 23 dobj _ _ 26 to _ ADP TO _ 28 case _ _ 27 eight _ NUM CD _ 28 nummod _ _ 28 members _ NOUN NNS _ 23 nmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 retired _ VERB VBD _ 0 root _ _ 3 as _ ADP IN _ 6 case _ _ 4 senior _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 finance _ NOUN NN _ 6 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 administration _ NOUN NN _ 8 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 chief _ ADJ JJ _ 15 amod _ _ 14 financial _ ADJ JJ _ 15 amod _ _ 15 officer _ NOUN NN _ 6 conj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 15 nmod _ _ 19 Oct. _ PROPN NNP _ 2 nmod:tmod _ _ 20 1 _ NUM CD _ 19 nummod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Southmark _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 filed _ VERB VBD _ 3 ccomp _ _ 7 part _ NOUN NN _ 6 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 10-K _ ADJ CD _ 11 amod _ _ 11 report _ NOUN NN _ 7 nmod _ _ 12 with _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 Securities _ PROPN NNPS _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Exchange _ PROPN NNP _ 14 conj _ _ 17 Commission _ PROPN NNP _ 6 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 but _ CONJ CC _ 6 cc _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 filing _ NOUN NN _ 25 nsubj _ _ 23 does _ AUX VBZ _ 25 aux _ _ 24 n't _ PART RB _ 25 neg _ _ 25 include _ VERB VB _ 6 conj _ _ 26 its _ PRON PRP$ _ 29 nmod:poss _ _ 27 audited _ ADJ JJ _ 29 amod _ _ 28 financial _ ADJ JJ _ 29 amod _ _ 29 statements _ NOUN NNS _ 25 dobj _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 related _ ADJ JJ _ 32 amod _ _ 32 information _ NOUN NN _ 29 conj _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 real _ ADJ JJ _ 3 amod _ _ 3 estate _ NOUN NN _ 13 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 thrift _ NOUN NN _ 6 compound _ _ 6 concern _ NOUN NN _ 3 conj _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 operating _ VERB VBG _ 13 advcl _ _ 9 under _ ADP IN _ 11 case _ _ 10 bankruptcy-law _ NOUN NN _ 11 compound _ _ 11 proceedings _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 told _ VERB VBD _ 13 ccomp _ _ 16 the _ DET DT _ 17 det _ _ 17 SEC _ PROPN NNP _ 15 dobj _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 could _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 provide _ VERB VB _ 15 ccomp _ _ 22 financial _ ADJ JJ _ 23 amod _ _ 23 statements _ NOUN NNS _ 21 dobj _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 end _ NOUN NN _ 21 nmod _ _ 27 of _ ADP IN _ 30 case _ _ 28 its _ PRON PRP$ _ 30 nmod:poss _ _ 29 first _ ADJ JJ _ 30 amod _ _ 30 extension _ NOUN NN _ 26 nmod _ _ 31 `` _ PUNCT `` _ 21 punct _ _ 32 without _ ADP IN _ 34 case _ _ 33 unreasonable _ ADJ JJ _ 34 amod _ _ 34 burden _ NOUN NN _ 21 nmod _ _ 35 or _ CONJ CC _ 34 cc _ _ 36 expense _ NOUN NN _ 34 conj _ _ 37 . _ PUNCT . _ 13 punct _ _ 38 '' _ PUNCT '' _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 asked _ VERB VBD _ 0 root _ _ 4 for _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 15-day _ ADJ JJ _ 7 amod _ _ 7 extension _ NOUN NN _ 3 nmod _ _ 8 Sept. _ PROPN NNP _ 3 nmod:tmod _ _ 9 30 _ NUM CD _ 8 nummod _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 when _ ADV WRB _ 16 advmod _ _ 12 the _ DET DT _ 14 det _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 reports _ NOUN NNS _ 16 nsubj _ _ 15 were _ VERB VBD _ 16 cop _ _ 16 due _ ADJ JJ _ 8 acl:relcl _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Southmark _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 plans _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 amend _ VERB VB _ 4 xcomp _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 10K _ ADJ CD _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 provide _ VERB VB _ 6 advcl _ _ 11 financial _ ADJ JJ _ 12 amod _ _ 12 results _ NOUN NNS _ 10 dobj _ _ 13 as _ ADV RB _ 14 advmod _ _ 14 soon _ ADV RB _ 6 advmod _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 audit _ NOUN NN _ 19 nsubjpass _ _ 18 is _ AUX VBZ _ 19 auxpass _ _ 19 completed _ VERB VBN _ 14 advcl _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Alan _ PROPN NNP _ 2 compound _ _ 2 Seelenfreund _ PROPN NNP _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 52 _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 old _ ADJ JJ _ 2 amod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 named _ VERB VBN _ 0 root _ _ 10 chairman _ NOUN NN _ 9 xcomp _ _ 11 of _ ADP IN _ 13 case _ _ 12 this _ DET DT _ 13 det _ _ 13 processor _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 prescription _ NOUN NN _ 16 compound _ _ 16 claims _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 succeeding _ VERB VBG _ 9 xcomp _ _ 19 Thomas _ PROPN NNP _ 22 compound _ _ 20 W. _ PROPN NNP _ 22 compound _ _ 21 Field _ PROPN NNP _ 22 compound _ _ 22 Jr. _ PROPN NNP _ 18 dobj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 55 _ NUM CD _ 22 amod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 resigned _ VERB VBD _ 22 acl:relcl _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 month _ NOUN NN _ 27 nmod:tmod _ _ 30 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Field _ PROPN NNP _ 6 nsubj _ _ 3 also _ ADV RB _ 6 advmod _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ VERB VBN _ 6 cop _ _ 6 chairman _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 McKesson _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 resigning _ VERB VBG _ 6 advcl _ _ 12 that _ DET IN _ 13 det _ _ 13 post _ NOUN NN _ 11 dobj _ _ 14 after _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 dispute _ NOUN NN _ 11 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 board _ NOUN NN _ 16 nmod _ _ 20 over _ ADP IN _ 22 case _ _ 21 corporate _ ADJ JJ _ 22 amod _ _ 22 strategy _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Seelenfreund _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 executive _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 0 root _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 chief _ ADJ JJ _ 10 amod _ _ 9 financial _ ADJ JJ _ 10 amod _ _ 10 officer _ NOUN NN _ 6 conj _ _ 11 of _ ADP IN _ 12 case _ _ 12 McKesson _ PROPN NNP _ 6 nmod _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 will _ AUX MD _ 15 aux _ _ 15 continue _ VERB VB _ 6 conj _ _ 16 in _ ADP IN _ 18 case _ _ 17 those _ DET DT _ 18 det _ _ 18 roles _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 PCS _ PROPN NN _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 named _ VERB VBD _ 0 root _ _ 4 Rex _ PROPN NN _ 6 compound _ _ 5 R. _ PROPN NNP _ 6 compound _ _ 6 Malson _ PROPN NNP _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 57 _ NUM CD _ 6 amod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 executive _ ADJ JJ _ 12 amod _ _ 11 vice _ NOUN NN _ 12 compound _ _ 12 president _ NOUN NN _ 6 appos _ _ 13 at _ ADP IN _ 14 case _ _ 14 McKesson _ PROPN NNP _ 12 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 as _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 director _ NOUN NN _ 3 nmod _ _ 19 , _ PUNCT , _ 3 punct _ _ 20 filling _ VERB VBG _ 3 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 seat _ NOUN NN _ 20 dobj _ _ 23 vacated _ VERB VBN _ 22 acl _ _ 24 by _ ADP IN _ 26 case _ _ 25 Mr. _ PROPN NNP _ 26 compound _ _ 26 Field _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Messrs. _ PROPN NNPS _ 2 compound _ _ 2 Malson _ PROPN NNP _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Seelenfreund _ PROPN NNP _ 2 conj _ _ 5 are _ VERB VBP _ 6 cop _ _ 6 directors _ NOUN NNS _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 McKesson _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 11 nsubj _ _ 11 has _ VERB VBZ _ 8 acl:relcl _ _ 12 an _ DET DT _ 15 det _ _ 13 86 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 stake _ NOUN NN _ 11 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 PCS _ PROPN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 MedChem _ PROPN NNP _ 3 compound _ _ 2 Products _ PROPN NNPS _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 8 det _ _ 6 U.S. _ PROPN NNP _ 8 compound _ _ 7 District _ PROPN NNP _ 8 compound _ _ 8 Court _ PROPN NNP _ 11 nsubj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Boston _ PROPN NNP _ 8 nmod _ _ 11 ruled _ VERB VBD _ 4 ccomp _ _ 12 that _ SCONJ IN _ 31 mark _ _ 13 a _ DET DT _ 14 det _ _ 14 challenge _ NOUN NN _ 31 nsubj _ _ 15 by _ ADP IN _ 16 case _ _ 16 MedChem _ PROPN NNP _ 14 nmod _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 validity _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 U.S. _ PROPN NNP _ 23 compound _ _ 23 patent _ NOUN NN _ 19 nmod _ _ 24 held _ VERB VBN _ 23 acl _ _ 25 by _ ADP IN _ 27 case _ _ 26 Pharmacia _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 24 nmod _ _ 28 was _ VERB VBD _ 31 cop _ _ 29 `` _ PUNCT `` _ 31 punct _ _ 30 without _ ADP IN _ 31 case _ _ 31 merit _ NOUN NN _ 11 ccomp _ _ 32 . _ PUNCT . _ 4 punct _ _ 33 '' _ PUNCT '' _ 4 punct _ _ 1 Pharmacia _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 based _ VERB VBN _ 1 acl _ _ 4 in _ ADP IN _ 5 case _ _ 5 Upsala _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Sweden _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 had _ AUX VBD _ 10 aux _ _ 10 charged _ VERB VBN _ 0 root _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 lawsuit _ NOUN NN _ 10 nmod _ _ 14 against _ ADP IN _ 15 case _ _ 15 MedChem _ PROPN NNP _ 13 nmod _ _ 16 that _ SCONJ WDT _ 22 mark _ _ 17 MedChem _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 AMVISC _ PROPN NNP _ 21 compound _ _ 20 product _ NOUN NN _ 21 compound _ _ 21 line _ NOUN NN _ 22 nsubj _ _ 22 infringes _ VERB VBZ _ 10 ccomp _ _ 23 on _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 Pharmacia _ PROPN NNP _ 26 compound _ _ 26 patent _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 patent _ NOUN NN _ 4 nsubjpass _ _ 3 is _ VERB VBZ _ 4 auxpass _ _ 4 related _ VERB VBN _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 hyaluronic _ ADJ JJ _ 7 amod _ _ 7 acid _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 rooster-comb _ NOUN NN _ 11 compound _ _ 11 extract _ NOUN NN _ 7 appos _ _ 12 used _ VERB VBN _ 11 acl _ _ 13 in _ ADP IN _ 15 case _ _ 14 eye _ NOUN NN _ 15 compound _ _ 15 surgery _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 lawsuit _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Pharmacia _ PROPN NNP _ 7 nsubj _ _ 6 is _ AUX VBZ _ 7 aux _ _ 7 seeking _ VERB VBG _ 0 root _ _ 8 unspecified _ ADJ JJ _ 9 amod _ _ 9 damages _ NOUN NNS _ 7 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 a _ DET DT _ 13 det _ _ 12 preliminary _ ADJ JJ _ 13 amod _ _ 13 injunction _ NOUN NN _ 9 conj _ _ 14 to _ PART TO _ 15 mark _ _ 15 block _ VERB VB _ 13 acl _ _ 16 MedChem _ PROPN NNP _ 15 dobj _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 selling _ VERB VBG _ 15 advcl _ _ 19 the _ DET DT _ 21 det _ _ 20 AMVISC _ PROPN NNP _ 21 compound _ _ 21 products _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 MedChem _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 products _ NOUN NNS _ 7 nsubj _ _ 7 contribute _ VERB VBP _ 4 ccomp _ _ 8 about _ ADV IN _ 9 advmod _ _ 9 a _ DET DT _ 10 nummod _ _ 10 third _ ADJ JJ _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 MedChem _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 sales _ NOUN NNS _ 10 nmod _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 10 _ NUM CD _ 20 compound _ _ 17 % _ SYM NN _ 20 dep _ _ 18 to _ ADP TO _ 20 dep _ _ 19 20 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 10 conj _ _ 21 of _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 earnings _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 year _ NOUN NN _ 11 nmod _ _ 4 ended _ VERB VBN _ 3 acl _ _ 5 Aug. _ PROPN NNP _ 4 nmod:tmod _ _ 6 31 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1988 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 MedChem _ PROPN NNP _ 11 nsubj _ _ 11 earned _ VERB VBD _ 0 root _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 2.9 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 72 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 12 conj _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 11 punct _ _ 22 on _ ADP IN _ 23 case _ _ 23 sales _ NOUN NNS _ 11 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 17.4 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 MedChem _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 court _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 ruling _ NOUN NN _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 issued _ VERB VBN _ 2 ccomp _ _ 9 as _ ADP IN _ 10 case _ _ 10 part _ NOUN NN _ 8 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 first-phase _ ADJ JJ _ 15 amod _ _ 15 trial _ NOUN NN _ 10 nmod _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 patent-infringement _ NOUN NN _ 20 compound _ _ 20 proceedings _ NOUN NNS _ 15 nmod _ _ 21 and _ CONJ CC _ 8 cc _ _ 22 concerns _ VERB NNS _ 8 conj _ _ 23 only _ ADV RB _ 24 advmod _ _ 24 one _ NUM CD _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 its _ PRON PRP$ _ 27 nmod:poss _ _ 27 defenses _ NOUN NNS _ 24 nmod _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 case _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 considering _ VERB VBG _ 2 ccomp _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 all _ DET DT _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 options _ NOUN NNS _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 light _ NOUN NN _ 5 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 decision _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 including _ VERB VBG _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 possible _ ADJ JJ _ 20 amod _ _ 20 appeal _ NOUN NN _ 5 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 22 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 medical-products _ NOUN NNS _ 3 compound _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 added _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 plans _ VERB VBZ _ 4 ccomp _ _ 8 to _ PART TO _ 10 mark _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 assert _ VERB VB _ 7 xcomp _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 other _ ADJ JJ _ 13 amod _ _ 13 defenses _ NOUN NNS _ 10 dobj _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 against _ ADP IN _ 18 case _ _ 16 Pharmacia _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 lawsuit _ NOUN NN _ 13 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 including _ VERB VBG _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 claim _ NOUN NN _ 13 nmod _ _ 23 that _ SCONJ IN _ 27 mark _ _ 24 it _ PRON PRP _ 27 nsubj _ _ 25 has _ AUX VBZ _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 infringed _ VERB VBN _ 22 ccomp _ _ 28 on _ ADP IN _ 31 case _ _ 29 Pharmacia _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 patent _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 MedChem _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 court _ NOUN NN _ 6 nsubj _ _ 6 scheduled _ VERB VBN _ 2 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 conference _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 next _ ADJ JJ _ 11 amod _ _ 11 Monday _ PROPN NNP _ 6 nmod _ _ 12 -- _ PUNCT : _ 14 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 set _ VERB VB _ 6 parataxis _ _ 15 a _ DET DT _ 16 det _ _ 16 date _ NOUN NN _ 14 dobj _ _ 17 for _ ADP IN _ 18 case _ _ 18 proceedings _ NOUN NNS _ 16 nmod _ _ 19 on _ ADP IN _ 22 case _ _ 20 Pharmacia _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 motion _ NOUN NN _ 18 nmod _ _ 23 for _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 preliminary _ ADJ JJ _ 26 amod _ _ 26 injunction _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 Newspaper _ NOUN NNP _ 2 compound _ _ 2 publishers _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 reporting _ VERB VBG _ 0 root _ _ 5 mixed _ ADJ JJ _ 7 amod _ _ 6 third-quarter _ ADJ JJ _ 7 amod _ _ 7 results _ NOUN NNS _ 4 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 aided _ VERB VBN _ 7 dep _ _ 10 by _ ADP IN _ 13 case _ _ 11 favorable _ ADJ JJ _ 13 amod _ _ 12 newsprint _ NOUN NN _ 13 compound _ _ 13 prices _ NOUN NNS _ 9 nmod _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 hampered _ VERB VBN _ 9 conj _ _ 16 by _ ADP IN _ 21 case _ _ 17 flat _ ADJ JJ _ 21 amod _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 declining _ ADJ VBG _ 17 conj _ _ 20 advertising _ NOUN NN _ 21 compound _ _ 21 linage _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 especially _ ADV RB _ 26 advmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 Northeast _ PROPN NNP _ 21 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Adding _ VERB VBG _ 17 advcl _ _ 2 to _ ADP TO _ 3 case _ _ 3 unsteadiness _ NOUN NN _ 1 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 industry _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 seasonal _ ADJ JJ _ 12 amod _ _ 9 retail _ ADJ JJ _ 12 amod _ _ 10 ad _ NOUN NN _ 12 compound _ _ 11 spending _ NOUN NN _ 12 compound _ _ 12 patterns _ NOUN NNS _ 17 nsubjpass _ _ 13 in _ ADP IN _ 14 case _ _ 14 newspapers _ NOUN NNS _ 12 nmod _ _ 15 have _ AUX VBP _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 upset _ VERB VBN _ 0 root _ _ 18 by _ ADP IN _ 19 case _ _ 19 shifts _ NOUN NNS _ 17 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 ownership _ NOUN NN _ 19 nmod _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 general _ ADJ JJ _ 24 amod _ _ 24 hardships _ NOUN NNS _ 19 conj _ _ 25 within _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 retail _ ADJ JJ _ 28 amod _ _ 28 industry _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 New _ PROPN NNP _ 3 compound _ _ 3 York _ PROPN NNP _ 16 nmod _ _ 4 , _ PUNCT , _ 16 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 Bonwit _ PROPN NNP _ 7 compound _ _ 7 Teller _ PROPN NNP _ 16 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 B. _ PROPN NNP _ 10 compound _ _ 10 Altman _ PROPN NNP _ 7 conj _ _ 11 & _ CONJ CC _ 7 cc _ _ 12 Co. _ PROPN NNP _ 14 compound _ _ 13 department _ NOUN NN _ 14 compound _ _ 14 stores _ NOUN NNS _ 7 conj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 filed _ VERB VBN _ 0 root _ _ 17 for _ ADP IN _ 18 case _ _ 18 protection _ NOUN NN _ 16 nmod _ _ 19 from _ ADP IN _ 20 case _ _ 20 creditors _ NOUN NNS _ 18 nmod _ _ 21 under _ ADP IN _ 22 case _ _ 22 Chapter _ PROPN NN _ 16 nmod _ _ 23 11 _ NUM CD _ 22 nummod _ _ 24 of _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 federal _ ADJ JJ _ 28 amod _ _ 27 Bankruptcy _ PROPN NNP _ 28 compound _ _ 28 Code _ PROPN NNP _ 22 nmod _ _ 29 , _ PUNCT , _ 16 punct _ _ 30 while _ SCONJ IN _ 47 mark _ _ 31 the _ DET DT _ 33 det _ _ 32 R.H. _ PROPN NNP _ 33 compound _ _ 33 Macy _ PROPN NNP _ 47 nsubj _ _ 34 & _ CONJ CC _ 33 cc _ _ 35 Co. _ PROPN NNP _ 37 compound _ _ 36 , _ PUNCT , _ 37 punct _ _ 37 Bloomingdale _ PROPN NNP _ 33 conj _ _ 38 's _ PART POS _ 37 case _ _ 39 and _ CONJ CC _ 33 cc _ _ 40 Saks _ PROPN NNP _ 44 compound _ _ 41 Fifth _ PROPN NNP _ 44 compound _ _ 42 Avenue _ PROPN NNP _ 44 compound _ _ 43 department-store _ NOUN NN _ 44 compound _ _ 44 chains _ NOUN NNS _ 33 conj _ _ 45 are _ VERB VBP _ 47 cop _ _ 46 for _ ADP IN _ 47 case _ _ 47 sale _ NOUN NN _ 16 advcl _ _ 48 . _ PUNCT . _ 16 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 papers _ NOUN NNS _ 8 nsubjpass _ _ 3 throughout _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 country _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 8 auxpass _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 faced _ VERB VBN _ 0 root _ _ 9 with _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 slowdown _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 classified-ad _ NOUN JJ _ 14 compound _ _ 14 spending _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 18 det _ _ 17 booming _ ADJ JJ _ 18 amod _ _ 18 category _ NOUN NN _ 14 appos _ _ 19 for _ ADP IN _ 20 case _ _ 20 newspapers _ NOUN NNS _ 18 nmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 recent _ ADJ JJ _ 23 amod _ _ 23 years _ NOUN NNS _ 18 nmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 recently _ ADV RB _ 6 advcl _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 industry _ NOUN NN _ 5 compound _ _ 5 analysts _ NOUN NNS _ 6 nsubj _ _ 6 believed _ VERB VBD _ 0 root _ _ 7 decreases _ NOUN NNS _ 13 nsubj _ _ 8 in _ ADP IN _ 11 case _ _ 9 retail _ ADJ JJ _ 11 amod _ _ 10 ad _ NOUN NN _ 11 compound _ _ 11 spending _ NOUN NN _ 7 nmod _ _ 12 had _ AUX VBD _ 13 aux _ _ 13 bottomed _ VERB VBN _ 6 ccomp _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 would _ AUX MD _ 19 aux _ _ 17 in _ ADP IN _ 18 case _ _ 18 fact _ NOUN NN _ 19 nmod _ _ 19 increase _ VERB NN _ 13 conj _ _ 20 in _ ADP IN _ 27 case _ _ 21 this _ DET DT _ 22 det _ _ 22 year _ NOUN NN _ 27 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 third _ ADJ JJ _ 27 amod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 fourth _ ADJ JJ _ 24 conj _ _ 27 quarters _ NOUN NNS _ 19 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 All _ DET DT _ 2 det _ _ 2 bets _ NOUN NNS _ 13 nsubj _ _ 3 are _ VERB VBP _ 13 cop _ _ 4 off _ ADV RB _ 13 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 analysts _ NOUN NNS _ 7 nsubj _ _ 7 say _ VERB VBP _ 13 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 because _ ADP IN _ 13 case _ _ 10 of _ ADP IN _ 9 mwe _ _ 11 the _ DET DT _ 13 det _ _ 12 shifting _ ADJ VBG _ 13 amod _ _ 13 ownership _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 retail _ ADJ JJ _ 17 amod _ _ 17 chains _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 29 punct _ _ 2 Improved _ ADJ JJ _ 4 amod _ _ 3 paper _ NOUN NN _ 4 compound _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 help _ VERB VB _ 29 ccomp _ _ 7 offset _ VERB VB _ 6 ccomp _ _ 8 weakness _ NOUN NN _ 7 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 linage _ NOUN NN _ 8 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 retailers _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 problems _ NOUN NNS _ 18 nsubj _ _ 17 have _ AUX VBP _ 18 aux _ _ 18 affected _ VERB VBN _ 6 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 amount _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 ad _ NOUN NN _ 23 compound _ _ 23 linage _ NOUN NN _ 20 nmod _ _ 24 they _ PRON PRP _ 26 nsubj _ _ 25 usually _ ADV RB _ 26 advmod _ _ 26 run _ VERB VBP _ 20 acl:relcl _ _ 27 , _ PUNCT , _ 29 punct _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 said _ VERB VBD _ 0 root _ _ 30 Edward _ PROPN NNP _ 32 compound _ _ 31 J. _ PROPN NNP _ 32 compound _ _ 32 Atorino _ PROPN NNP _ 29 nsubj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 industry _ NOUN NN _ 35 compound _ _ 35 analyst _ NOUN NN _ 32 appos _ _ 36 for _ ADP IN _ 39 case _ _ 37 Salomon _ PROPN NNP _ 39 compound _ _ 38 Brothers _ PROPN NNPS _ 39 compound _ _ 39 Inc _ PROPN NNP _ 35 nmod _ _ 40 . _ PUNCT . _ 29 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 Retailers _ NOUN NNS _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 just _ ADV RB _ 6 advmod _ _ 5 in _ ADP IN _ 6 case _ _ 6 disarray _ NOUN NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 8 '' _ PUNCT '' _ 6 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Gannett _ PROPN NNP _ 5 compound _ _ 5 Co. _ PROPN NNP _ 6 nsubj _ _ 6 posted _ VERB VBD _ 0 root _ _ 7 an _ DET DT _ 10 det _ _ 8 11 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 gain _ NOUN NN _ 6 dobj _ _ 11 in _ ADP IN _ 13 case _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 total _ ADJ JJ _ 18 amod _ _ 17 ad _ NOUN NN _ 18 compound _ _ 18 pages _ NOUN NNS _ 19 nsubj _ _ 19 dropped _ VERB VBD _ 6 advcl _ _ 20 at _ ADP IN _ 22 case _ _ 21 USA _ PROPN NNP _ 22 compound _ _ 22 Today _ PROPN NNP _ 19 nmod _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 but _ CONJ CC _ 19 cc _ _ 25 advertising _ NOUN NN _ 26 compound _ _ 26 revenue _ NOUN NN _ 27 nsubj _ _ 27 rose _ VERB VBD _ 19 conj _ _ 28 because _ ADP IN _ 34 case _ _ 29 of _ ADP IN _ 28 mwe _ _ 30 a _ DET DT _ 34 det _ _ 31 higher _ ADJ JJR _ 34 amod _ _ 32 circulation _ NOUN NN _ 34 compound _ _ 33 rate _ NOUN NN _ 34 compound _ _ 34 base _ NOUN NN _ 27 nmod _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 increased _ ADJ VBD _ 37 amod _ _ 37 rates _ NOUN NNS _ 34 conj _ _ 38 . _ PUNCT . _ 6 punct _ _ 1 Gannett _ PROPN NNP _ 8 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 83 _ NUM CD _ 4 nummod _ _ 4 daily _ ADJ JJ _ 8 dep _ _ 5 and _ CONJ CC _ 8 cc _ _ 6 35 _ NUM CD _ 7 nummod _ _ 7 non-daily _ ADJ JJ _ 8 conj _ _ 8 newspapers _ NOUN NNS _ 9 nsubj _ _ 9 reported _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 13 det _ _ 11 3 _ NUM CD _ 12 compound _ _ 12 % _ SYM NN _ 13 amod _ _ 13 increase _ NOUN NN _ 9 dobj _ _ 14 in _ ADP IN _ 18 case _ _ 15 advertising _ NOUN NN _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 circulation _ NOUN NN _ 15 conj _ _ 18 revenue _ NOUN NN _ 13 nmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 Total _ ADJ JJ _ 3 amod _ _ 2 advertising _ NOUN NN _ 3 compound _ _ 3 linage _ NOUN NN _ 8 nsubj _ _ 4 was _ VERB VBD _ 8 cop _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 modestly _ ADV RB _ 8 advmod _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 lower _ ADJ JJR _ 28 ccomp _ _ 9 as _ SCONJ IN _ 12 mark _ _ 10 classified-ad _ NOUN JJ _ 11 compound _ _ 11 volume _ NOUN NN _ 12 nsubj _ _ 12 increased _ VERB VBD _ 8 advcl _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 while _ SCONJ IN _ 16 mark _ _ 15 there _ PRON EX _ 16 expl _ _ 16 was _ VERB VBD _ 8 advcl _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 softer _ ADJ JJR _ 19 amod _ _ 19 demand _ NOUN NN _ 16 nsubj _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 for _ ADP IN _ 26 case _ _ 22 retail _ ADJ JJ _ 26 amod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 national _ ADJ JJ _ 22 conj _ _ 25 ad _ NOUN NN _ 26 compound _ _ 26 linage _ NOUN NN _ 19 nmod _ _ 27 , _ PUNCT , _ 28 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 John _ PROPN NNP _ 30 compound _ _ 30 Curley _ PROPN NNP _ 28 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 Gannett _ PROPN NNP _ 36 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 chief _ ADJ JJ _ 36 amod _ _ 35 executive _ ADJ NN _ 36 amod _ _ 36 officer _ NOUN NN _ 30 appos _ _ 37 . _ PUNCT . _ 28 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 USA _ PROPN NNP _ 3 compound _ _ 3 Today _ PROPN NNP _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 ad _ NOUN NN _ 6 compound _ _ 6 pages _ NOUN NNS _ 7 nsubj _ _ 7 totaled _ VERB VBD _ 0 root _ _ 8 785 _ NUM CD _ 7 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 quarter _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 down _ ADV IN _ 7 advmod _ _ 14 9.2 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 nmod:npmod _ _ 16 from _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 1988 _ NUM CD _ 19 nummod _ _ 19 period _ NOUN NN _ 13 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 23 nsubjpass _ _ 22 was _ AUX VBD _ 23 auxpass _ _ 23 helped _ VERB VBN _ 19 acl:relcl _ _ 24 by _ ADP IN _ 27 case _ _ 25 increased _ ADJ VBN _ 27 amod _ _ 26 ad _ NOUN NN _ 27 compound _ _ 27 spending _ NOUN NN _ 23 nmod _ _ 28 from _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Summer _ PROPN NN _ 31 compound _ _ 31 Olympics _ PROPN NNPS _ 27 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 While _ SCONJ IN _ 14 mark _ _ 2 USA _ PROPN NNP _ 3 compound _ _ 3 Today _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 total _ ADJ JJ _ 8 amod _ _ 6 paid _ ADJ VBN _ 8 amod _ _ 7 ad _ NOUN NN _ 8 compound _ _ 8 pages _ NOUN NNS _ 14 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 year _ NOUN NN _ 8 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 date _ NOUN NN _ 11 nmod _ _ 14 totaled _ VERB VBD _ 31 advcl _ _ 15 2,735 _ NUM CD _ 14 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 decrease _ NOUN NN _ 15 appos _ _ 19 of _ ADP IN _ 21 case _ _ 20 4 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 from _ ADP IN _ 24 case _ _ 23 last _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 31 punct _ _ 26 the _ DET DT _ 27 det _ _ 27 paper _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 ad _ NOUN NN _ 30 compound _ _ 30 revenue _ NOUN NN _ 31 nsubj _ _ 31 increased _ VERB VBD _ 0 root _ _ 32 8 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 31 dobj _ _ 34 in _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 quarter _ NOUN NN _ 31 nmod _ _ 37 and _ CONJ CC _ 31 cc _ _ 38 13 _ NUM CD _ 39 nummod _ _ 39 % _ SYM NN _ 31 conj _ _ 40 in _ ADP IN _ 43 case _ _ 41 the _ DET DT _ 43 det _ _ 42 nine _ NUM CD _ 43 nummod _ _ 43 months _ NOUN NNS _ 39 nmod _ _ 44 . _ PUNCT . _ 31 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Gannett _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 net _ NOUN NN _ 9 nsubj _ _ 9 rose _ VERB VBD _ 0 root _ _ 10 9.5 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 to _ ADP TO _ 13 case _ _ 13 $ _ SYM $ _ 9 nmod _ _ 14 270 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 or _ CONJ CC _ 13 cc _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 1.68 _ NUM CD _ 13 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 from _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 9 nmod _ _ 25 247 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 1.52 _ NUM CD _ 24 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 . _ PUNCT . _ 9 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 gained _ VERB VBD _ 0 root _ _ 3 6 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 2.55 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 2.4 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Dow _ PROPN NNP _ 3 compound _ _ 3 Jones _ PROPN NNP _ 10 nmod _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Co. _ PROPN NNP _ 3 conj _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 third-quarter _ ADJ JJ _ 9 amod _ _ 8 net _ NOUN JJ _ 9 compound _ _ 9 income _ NOUN NN _ 10 nsubj _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 9.9 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 from _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 year-earlier _ ADJ JJ _ 16 amod _ _ 16 period _ NOUN NN _ 10 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 Net _ NOUN NN _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 28.8 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 or _ CONJ CC _ 4 cc _ _ 9 29 _ NUM CD _ 10 nummod _ _ 10 cents _ NOUN NNS _ 4 conj _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 2 nmod _ _ 16 32 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 33 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 year-earlier _ ADJ JJ _ 3 amod _ _ 3 period _ NOUN NN _ 4 nsubj _ _ 4 included _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 one-time _ ADJ JJ _ 7 amod _ _ 7 gain _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 3.5 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 four _ NUM CD _ 15 nummod _ _ 15 cents _ NOUN NNS _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 gained _ VERB VBD _ 0 root _ _ 3 5.3 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 404.1 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 383.8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 drop _ NOUN NN _ 5 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 profit _ NOUN NN _ 2 nmod _ _ 5 reflected _ VERB VBD _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 in _ ADP IN _ 8 case _ _ 8 part _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 continued _ ADJ VBD _ 11 amod _ _ 11 softness _ NOUN NN _ 5 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 advertising _ NOUN NN _ 11 nmod _ _ 15 at _ ADP IN _ 19 case _ _ 16 The _ DET DT _ 19 det _ _ 17 Wall _ PROPN NNP _ 19 compound _ _ 18 Street _ PROPN NNP _ 19 compound _ _ 19 Journal _ PROPN NNP _ 11 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 Barron _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 magazine _ NOUN NN _ 19 conj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Ad _ NOUN NN _ 2 compound _ _ 2 linage _ NOUN NN _ 6 nsubj _ _ 3 at _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 Journal _ PROPN NNP _ 2 nmod _ _ 6 fell _ VERB VBD _ 0 root _ _ 7 6.1 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 third _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 Affiliated _ PROPN VBN _ 3 compound _ _ 2 Publications _ PROPN NNPS _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 reversed _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 10 det _ _ 6 year-earlier _ ADJ JJ _ 10 amod _ _ 7 third _ ADJ JJ _ 10 amod _ _ 8 quarter _ NOUN NN _ 10 compound _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 loss _ NOUN NN _ 4 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 publisher _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Boston _ PROPN NNP _ 6 compound _ _ 6 Globe _ PROPN NNP _ 2 nmod _ _ 7 reported _ VERB VBD _ 0 root _ _ 8 net _ NOUN NN _ 7 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 8 nmod _ _ 11 8.5 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 12 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 loss _ NOUN NN _ 10 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 26.5 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 38 _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 7 punct _ _ 35 for _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 third _ ADJ JJ _ 38 amod _ _ 38 quarter _ NOUN NN _ 7 nmod _ _ 39 in _ ADP IN _ 40 case _ _ 40 1988 _ NUM CD _ 38 nmod _ _ 41 . _ PUNCT . _ 7 punct _ _ 1 William _ PROPN NNP _ 3 compound _ _ 2 O. _ PROPN NNP _ 3 compound _ _ 3 Taylor _ PROPN NNP _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 parent _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 chairman _ NOUN NN _ 3 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 chief _ ADJ JJ _ 12 amod _ _ 11 executive _ ADJ JJ _ 12 amod _ _ 12 officer _ NOUN NN _ 8 conj _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 earnings _ NOUN NNS _ 16 nsubj _ _ 16 continued _ VERB VBD _ 14 ccomp _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 hurt _ VERB VBN _ 16 xcomp _ _ 20 by _ ADP IN _ 21 case _ _ 21 softness _ NOUN NN _ 19 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 ad _ NOUN NN _ 24 compound _ _ 24 volume _ NOUN NN _ 21 nmod _ _ 25 at _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 Boston _ PROPN NNP _ 28 compound _ _ 28 newspaper _ NOUN NN _ 21 nmod _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 Third-quarter _ ADJ JJ _ 3 amod _ _ 2 profit _ NOUN NN _ 3 compound _ _ 3 estimates _ NOUN NNS _ 10 nsubjpass _ _ 4 for _ ADP IN _ 6 case _ _ 5 several _ ADJ JJ _ 6 amod _ _ 6 companies _ NOUN NNS _ 3 nmod _ _ 7 are _ AUX VBP _ 10 aux _ _ 8 being _ AUX VBG _ 10 auxpass _ _ 9 strongly _ ADV RB _ 10 advmod _ _ 10 affected _ VERB VBN _ 0 root _ _ 11 by _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 price _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 newsprint _ NOUN NN _ 13 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 24 nsubj _ _ 18 in _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 last _ ADJ JJ _ 22 amod _ _ 21 two _ NUM CD _ 22 nummod _ _ 22 years _ NOUN NNS _ 24 nmod _ _ 23 has _ AUX VBZ _ 24 aux _ _ 24 had _ VERB VBN _ 15 acl:relcl _ _ 25 several _ ADJ JJ _ 27 amod _ _ 26 price _ NOUN NN _ 27 compound _ _ 27 increases _ NOUN NNS _ 24 dobj _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 a _ DET DT _ 4 det _ _ 3 supply _ NOUN NN _ 4 compound _ _ 4 crunch _ NOUN NN _ 5 nsubj _ _ 5 caused _ VERB VBD _ 22 advcl _ _ 6 prices _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 rise _ VERB VB _ 5 xcomp _ _ 9 14 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 since _ ADP IN _ 12 case _ _ 12 1986 _ NUM CD _ 8 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 650 _ NUM CD _ 8 nmod _ _ 16 a _ DET DT _ 18 det _ _ 17 metric _ ADJ JJ _ 18 amod _ _ 18 ton _ NOUN NN _ 15 nmod:npmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 analysts _ NOUN NNS _ 22 nsubj _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 encouraged _ ADJ VBN _ 0 root _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 because _ SCONJ IN _ 28 mark _ _ 25 they _ PRON PRP _ 28 nsubj _ _ 26 do _ AUX VBP _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 expect _ VERB VB _ 22 advcl _ _ 29 a _ DET DT _ 31 det _ _ 30 price _ NOUN NN _ 31 compound _ _ 31 increase _ NOUN NN _ 28 dobj _ _ 32 for _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 rest _ NOUN NN _ 28 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 this _ DET DT _ 37 det _ _ 37 year _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 22 punct _ _ 1 Companies _ NOUN NNS _ 9 nsubj _ _ 2 with _ ADP IN _ 4 case _ _ 3 daily _ ADJ JJ _ 4 amod _ _ 4 newspapers _ NOUN NNS _ 1 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 Northeast _ PROPN NNP _ 4 nmod _ _ 8 will _ AUX MD _ 9 aux _ _ 9 need _ VERB VB _ 0 root _ _ 10 the _ DET DT _ 13 det _ _ 11 stable _ ADJ JJ _ 13 amod _ _ 12 newsprint _ NOUN NN _ 13 compound _ _ 13 prices _ NOUN NNS _ 9 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 ease _ VERB VB _ 9 advcl _ _ 16 damage _ NOUN NN _ 15 dobj _ _ 17 from _ ADP IN _ 20 case _ _ 18 weak _ ADJ JJ _ 20 amod _ _ 19 ad _ NOUN NN _ 20 compound _ _ 20 linage _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Atorino _ PROPN NNP _ 6 nsubj _ _ 3 at _ ADP IN _ 5 case _ _ 4 Salomon _ PROPN NNP _ 5 compound _ _ 5 Brothers _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 he _ PRON PRP _ 8 nsubj _ _ 8 estimates _ VERB VBZ _ 6 ccomp _ _ 9 that _ SCONJ IN _ 20 mark _ _ 10 Times _ PROPN NNP _ 12 compound _ _ 11 Mirror _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 earnings _ NOUN NNS _ 20 nsubj _ _ 15 were _ VERB VBD _ 20 cop _ _ 16 down _ ADV RB _ 20 advmod _ _ 17 for _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 third _ ADJ JJ _ 20 amod _ _ 20 quarter _ NOUN NN _ 8 ccomp _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 because _ ADP IN _ 26 case _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 soft _ ADJ JJ _ 26 amod _ _ 25 advertising _ NOUN NN _ 26 compound _ _ 26 levels _ NOUN NNS _ 20 nmod _ _ 27 at _ ADP IN _ 31 case _ _ 28 its _ PRON PRP$ _ 31 nmod:poss _ _ 29 Long _ PROPN NNP _ 31 compound _ _ 30 Island _ PROPN NNP _ 31 compound _ _ 31 Newsday _ PROPN NNP _ 26 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 Hartford _ PROPN NNP _ 35 compound _ _ 34 Courant _ PROPN NNP _ 35 compound _ _ 35 newspapers _ NOUN NNS _ 31 conj _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Trouble _ NOUN NN _ 8 nsubjpass _ _ 2 on _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 East _ PROPN NNP _ 5 compound _ _ 5 Coast _ PROPN NNP _ 1 nmod _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 likely _ ADV JJ _ 8 advmod _ _ 8 offset _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 12 case _ _ 10 improved _ ADJ VBN _ 12 amod _ _ 11 ad _ NOUN NN _ 12 compound _ _ 12 linage _ NOUN NN _ 8 nmod _ _ 13 at _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 Los _ PROPN NNP _ 17 compound _ _ 16 Angeles _ PROPN NNP _ 17 compound _ _ 17 Times _ PROPN NNP _ 12 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 which _ PRON WDT _ 23 nsubj _ _ 20 this _ DET DT _ 21 det _ _ 21 week _ NOUN NN _ 23 dep _ _ 22 also _ ADV RB _ 23 advmod _ _ 23 unveiled _ VERB VBD _ 17 acl:relcl _ _ 24 a _ DET DT _ 25 det _ _ 25 redesign _ NOUN NN _ 23 dobj _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 York _ PROPN NNP _ 4 compound _ _ 3 Times _ PROPN NNP _ 4 compound _ _ 4 Co. _ PROPN NNP _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 lower _ ADJ JJR _ 10 amod _ _ 10 earnings _ NOUN NNS _ 8 dobj _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 8 nmod _ _ 15 because _ ADP IN _ 20 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 continued _ ADJ VBN _ 20 amod _ _ 18 weak _ ADJ JJ _ 20 amod _ _ 19 advertising _ NOUN NN _ 20 compound _ _ 20 levels _ NOUN NNS _ 8 nmod _ _ 21 at _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 flagship _ NOUN NN _ 20 nmod _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 York _ PROPN NNP _ 26 compound _ _ 26 Times _ PROPN NNP _ 23 dep _ _ 27 and _ CONJ CC _ 20 cc _ _ 28 deep _ ADV JJ _ 29 advmod _ _ 29 discounting _ NOUN NN _ 20 conj _ _ 30 of _ ADP IN _ 31 case _ _ 31 newsprint _ NOUN NN _ 29 nmod _ _ 32 at _ ADP IN _ 34 case _ _ 33 its _ PRON PRP$ _ 34 nmod:poss _ _ 34 affiliate _ NOUN NN _ 29 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 Forest _ PROPN NNP _ 38 compound _ _ 37 Products _ PROPN NNP _ 38 compound _ _ 38 Group _ PROPN NNP _ 34 appos _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 29 punct _ _ 2 Times _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 7 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 regional _ ADJ JJ _ 7 amod _ _ 6 daily _ ADJ JJ _ 7 amod _ _ 7 newspapers _ NOUN NNS _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 holding _ VERB VBG _ 29 ccomp _ _ 10 up _ ADP RP _ 9 compound:prt _ _ 11 well _ ADV RB _ 9 advmod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 but _ CONJ CC _ 9 cc _ _ 14 there _ PRON EX _ 15 expl _ _ 15 is _ VERB VBZ _ 9 conj _ _ 16 little _ ADJ JJ _ 17 amod _ _ 17 sign _ NOUN NN _ 15 nsubj _ _ 18 that _ SCONJ IN _ 21 mark _ _ 19 things _ NOUN NNS _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 improve _ VERB VB _ 17 ccomp _ _ 22 in _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 York _ PROPN NNP _ 26 compound _ _ 26 market _ NOUN NN _ 15 nmod _ _ 27 , _ PUNCT , _ 29 punct _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 said _ VERB VBD _ 0 root _ _ 30 Alan _ PROPN NNP _ 31 compound _ _ 31 Kassan _ PROPN NNP _ 29 nsubj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 an _ DET DT _ 34 det _ _ 34 analyst _ NOUN NN _ 31 appos _ _ 35 with _ ADP IN _ 38 case _ _ 36 Shearson _ PROPN NNP _ 38 compound _ _ 37 Lehman _ PROPN NNP _ 38 compound _ _ 38 Hutton _ PROPN NNP _ 34 nmod _ _ 39 . _ PUNCT . _ 29 punct _ _ 1 Washington _ PROPN NNP _ 3 compound _ _ 2 Post _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 improved _ ADJ JJ _ 9 amod _ _ 9 earnings _ NOUN NNS _ 7 dobj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 largely _ ADV RB _ 16 advmod _ _ 12 because _ ADP IN _ 16 case _ _ 13 of _ ADP IN _ 12 mwe _ _ 14 increased _ ADJ VBN _ 16 amod _ _ 15 cable _ NOUN NN _ 16 compound _ _ 16 revenue _ NOUN NN _ 5 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 publishing _ NOUN NN _ 19 compound _ _ 19 revenue _ NOUN NN _ 16 conj _ _ 20 helped _ VERB VBN _ 16 acl _ _ 21 by _ ADP IN _ 25 case _ _ 22 an _ DET DT _ 25 det _ _ 23 improved _ ADJ VBN _ 25 amod _ _ 24 retail _ ADJ JJ _ 25 amod _ _ 25 market _ NOUN NN _ 20 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Washington _ PROPN NNP _ 29 compound _ _ 29 area _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 According _ VERB VBG _ 3 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 analysts _ NOUN NNS _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 profits _ NOUN NNS _ 8 nsubjpass _ _ 6 were _ AUX VBD _ 8 auxpass _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 helped _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 12 case _ _ 10 successful _ ADJ JJ _ 12 amod _ _ 11 cost-cutting _ ADJ JJ _ 12 amod _ _ 12 measures _ NOUN NNS _ 8 nmod _ _ 13 at _ ADP IN _ 14 case _ _ 14 Newsweek _ PROPN NNP _ 12 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 news-weekly _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 faced _ VERB VBN _ 0 root _ _ 5 heightened _ ADJ VBN _ 6 amod _ _ 6 competition _ NOUN NN _ 4 dobj _ _ 7 from _ ADP IN _ 10 case _ _ 8 rival _ ADJ JJ _ 10 amod _ _ 9 Time _ PROPN NNP _ 10 compound _ _ 10 magazine _ NOUN NN _ 6 nmod _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 a _ DET DT _ 17 det _ _ 13 relatively _ ADV RB _ 14 advmod _ _ 14 flat _ ADJ JJ _ 17 amod _ _ 15 magazine _ NOUN NN _ 17 compound _ _ 16 advertising _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 6 conj _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Knight-Ridder _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 faced _ VERB VBN _ 0 root _ _ 5 with _ ADP IN _ 7 case _ _ 6 continued _ ADJ JJ _ 7 amod _ _ 7 uncertainty _ NOUN NN _ 4 nmod _ _ 8 over _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 pending _ VERB VBG _ 13 amod _ _ 11 joint _ ADJ NN _ 13 amod _ _ 12 operating _ NOUN NN _ 13 compound _ _ 13 agreement _ NOUN NN _ 7 nmod _ _ 14 between _ ADP IN _ 18 case _ _ 15 its _ PRON PRP$ _ 18 nmod:poss _ _ 16 Detroit _ PROPN NNP _ 18 compound _ _ 17 Free _ PROPN NNP _ 18 compound _ _ 18 Press _ PROPN NNP _ 13 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 Gannett _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 Detroit _ PROPN NNP _ 23 compound _ _ 23 News _ PROPN NNP _ 18 conj _ _ 24 , _ PUNCT , _ 4 punct _ _ 25 and _ CONJ CC _ 4 cc _ _ 26 has _ AUX VBZ _ 27 aux _ _ 27 told _ VERB VBN _ 4 conj _ _ 28 analysts _ NOUN NNS _ 27 dobj _ _ 29 that _ SCONJ WDT _ 36 mark _ _ 30 earnings _ NOUN NNS _ 36 nsubj _ _ 31 were _ VERB VBD _ 36 cop _ _ 32 down _ ADV RB _ 36 advmod _ _ 33 in _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 third _ ADJ JJ _ 36 amod _ _ 36 quarter _ NOUN NN _ 27 ccomp _ _ 37 . _ PUNCT . _ 4 punct _ _ 1 However _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 point _ VERB VBP _ 0 root _ _ 5 to _ ADP TO _ 8 case _ _ 6 positive _ ADJ JJ _ 8 amod _ _ 7 advertising _ NOUN NN _ 8 compound _ _ 8 spending _ NOUN NN _ 4 nmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 several _ ADJ JJ _ 8 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 daily _ ADJ JJ _ 15 amod _ _ 15 newspapers _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 such _ ADJ JJ _ 21 case _ _ 18 as _ ADP IN _ 17 mwe _ _ 19 the _ DET DT _ 21 det _ _ 20 Miami _ PROPN NNP _ 21 compound _ _ 21 Herald _ PROPN NNP _ 10 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 San _ PROPN NNP _ 26 compound _ _ 24 Jose _ PROPN NNP _ 26 compound _ _ 25 Mercury _ PROPN NNP _ 26 compound _ _ 26 News _ PROPN NNP _ 21 conj _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 Miami _ PROPN NNP _ 4 compound _ _ 4 market _ NOUN NN _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 coming _ VERB VBG _ 31 ccomp _ _ 7 back _ ADV RB _ 6 advmod _ _ 8 strong _ ADJ JJ _ 6 advmod _ _ 9 after _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 tough _ ADJ JJ _ 12 amod _ _ 12 couple _ NOUN NN _ 6 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 years _ NOUN NNS _ 12 nmod _ _ 15 '' _ PUNCT '' _ 12 punct _ _ 16 when _ ADV WRB _ 20 advmod _ _ 17 Knight-Ridder _ PROPN NNP _ 20 nsubj _ _ 18 `` _ PUNCT `` _ 20 punct _ _ 19 was _ AUX VBD _ 20 aux _ _ 20 starting _ VERB VBG _ 12 acl:relcl _ _ 21 up _ ADP RP _ 20 compound:prt _ _ 22 a _ DET DT _ 24 det _ _ 23 Hispanic _ ADJ JJ _ 24 amod _ _ 24 edition _ NOUN NN _ 20 dobj _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 circulation _ NOUN NN _ 28 nsubj _ _ 27 was _ AUX VBD _ 28 aux _ _ 28 falling _ VERB VBG _ 20 conj _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 '' _ PUNCT '' _ 31 punct _ _ 31 said _ VERB VBD _ 0 root _ _ 32 Bruce _ PROPN NNP _ 33 compound _ _ 33 Thorp _ PROPN NNP _ 31 nsubj _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 an _ DET DT _ 36 det _ _ 36 analyst _ NOUN NN _ 33 appos _ _ 37 for _ ADP IN _ 40 case _ _ 38 Provident _ PROPN NNP _ 40 compound _ _ 39 National _ PROPN NNP _ 40 compound _ _ 40 Bank _ PROPN NNP _ 36 nmod _ _ 41 . _ PUNCT . _ 31 punct _ _ 1 General _ PROPN NNP _ 3 compound _ _ 2 Motors _ PROPN NNPS _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 21 nsubj _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 series _ NOUN NN _ 21 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 moves _ NOUN NNS _ 7 nmod _ _ 10 that _ PRON WDT _ 11 nsubj _ _ 11 angered _ VERB VBD _ 9 acl:relcl _ _ 12 union _ NOUN NN _ 13 compound _ _ 13 officials _ NOUN NNS _ 11 dobj _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 U.S. _ PROPN NNP _ 13 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 Canada _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 signaled _ VERB VBN _ 0 root _ _ 22 that _ SCONJ IN _ 33 mark _ _ 23 as _ ADV IN _ 26 advmod _ _ 24 many _ ADJ JJ _ 26 advmod _ _ 25 as _ ADP IN _ 26 advmod _ _ 26 five _ NUM CD _ 30 nummod _ _ 27 North _ ADJ JJ _ 28 amod _ _ 28 American _ ADJ JJ _ 30 amod _ _ 29 assembly _ NOUN NN _ 30 compound _ _ 30 plants _ NOUN NNS _ 33 nsubj _ _ 31 may _ AUX MD _ 33 aux _ _ 32 not _ PART RB _ 33 neg _ _ 33 survive _ VERB VB _ 21 ccomp _ _ 34 the _ DET DT _ 35 det _ _ 35 mid-1990s _ NOUN NNS _ 33 dobj _ _ 36 as _ SCONJ IN _ 39 mark _ _ 37 the _ DET DT _ 38 det _ _ 38 corporation _ NOUN NN _ 39 nsubj _ _ 39 struggles _ VERB VBZ _ 33 advcl _ _ 40 to _ PART TO _ 41 mark _ _ 41 cut _ VERB VB _ 39 xcomp _ _ 42 its _ PRON PRP$ _ 45 nmod:poss _ _ 43 excess _ ADJ JJ _ 45 amod _ _ 44 vehicle-making _ ADJ JJ _ 45 amod _ _ 45 capacity _ NOUN NN _ 41 dobj _ _ 46 . _ PUNCT . _ 21 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 announcements _ NOUN NNS _ 11 nmod _ _ 3 to _ ADP TO _ 4 case _ _ 4 workers _ NOUN NNS _ 2 nmod _ _ 5 late _ ADV RB _ 7 advmod _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 2 nmod:tmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 GM _ PROPN NNP _ 11 nsubj _ _ 10 effectively _ ADV RB _ 11 advmod _ _ 11 signed _ VERB VBD _ 0 root _ _ 12 death _ NOUN NN _ 13 compound _ _ 13 notices _ NOUN NNS _ 11 dobj _ _ 14 for _ ADP IN _ 19 case _ _ 15 two _ NUM CD _ 19 nummod _ _ 16 full-sized _ ADJ JJ _ 19 amod _ _ 17 van _ NOUN NN _ 19 compound _ _ 18 assembly _ NOUN NN _ 19 compound _ _ 19 plants _ NOUN NNS _ 13 nmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 and _ CONJ CC _ 11 cc _ _ 22 cast _ VERB VBD _ 11 conj _ _ 23 serious _ ADJ JJ _ 24 amod _ _ 24 doubt _ NOUN NN _ 22 dobj _ _ 25 on _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 futures _ NOUN NNS _ 22 nmod _ _ 28 of _ ADP IN _ 32 case _ _ 29 three _ NUM CD _ 32 nummod _ _ 30 U.S. _ PROPN NNP _ 32 compound _ _ 31 car _ NOUN NN _ 32 compound _ _ 32 factories _ NOUN NNS _ 27 nmod _ _ 33 . _ PUNCT . _ 11 punct _ _ 1 GM _ PROPN NNP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 under _ ADP IN _ 5 case _ _ 4 intense _ ADJ JJ _ 5 amod _ _ 5 pressure _ NOUN NN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 close _ VERB VB _ 5 acl _ _ 8 factories _ NOUN NNS _ 7 dobj _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 became _ VERB VBD _ 8 acl:relcl _ _ 11 unprofitable _ ADJ JJ _ 10 xcomp _ _ 12 as _ SCONJ IN _ 21 mark _ _ 13 the _ DET DT _ 16 det _ _ 14 giant _ ADJ JJ _ 16 amod _ _ 15 auto _ NOUN NN _ 16 compound _ _ 16 maker _ NOUN NN _ 20 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 U.S. _ PROPN NNP _ 20 compound _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 share _ NOUN NN _ 21 nsubj _ _ 21 skidded _ VERB VBD _ 10 advcl _ _ 22 during _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 past _ ADJ JJ _ 25 amod _ _ 25 decade _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 currently _ ADV RB _ 5 advmod _ _ 5 using _ VERB VBG _ 17 advcl _ _ 6 about _ ADV IN _ 7 advmod _ _ 7 80 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 5 dobj _ _ 9 of _ ADP IN _ 14 case _ _ 10 its _ PRON PRP$ _ 14 nmod:poss _ _ 11 North _ ADJ JJ _ 12 amod _ _ 12 American _ ADJ JJ _ 14 amod _ _ 13 vehicle _ NOUN NN _ 14 compound _ _ 14 capacity _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 vowed _ VERB VBN _ 0 root _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 will _ AUX MD _ 20 aux _ _ 20 run _ VERB VB _ 17 ccomp _ _ 21 at _ ADP IN _ 23 case _ _ 22 100 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 20 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 capacity _ NOUN NN _ 23 nmod _ _ 26 by _ ADP IN _ 27 case _ _ 27 1992 _ NUM CD _ 20 nmod _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 Just _ ADV RB _ 2 advmod _ _ 2 a _ DET DT _ 3 nummod _ _ 3 month _ NOUN NN _ 4 nmod:npmod _ _ 4 ago _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 GM _ PROPN NNP _ 7 nsubj _ _ 7 announced _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 make _ VERB VB _ 7 ccomp _ _ 11 an _ DET DT _ 14 det _ _ 12 aging _ VERB NN _ 14 amod _ _ 13 assembly _ NOUN NN _ 14 compound _ _ 14 plant _ NOUN NN _ 24 nsubj _ _ 15 in _ ADP IN _ 16 case _ _ 16 Lakewood _ PROPN NNP _ 14 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Ga. _ PROPN NNP _ 16 appos _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 the _ DET DT _ 24 det _ _ 21 eighth _ ADJ JJ _ 24 amod _ _ 22 U.S. _ PROPN NNP _ 24 compound _ _ 23 assembly _ NOUN NN _ 24 compound _ _ 24 facility _ NOUN NN _ 10 xcomp _ _ 25 to _ PART TO _ 26 mark _ _ 26 close _ VERB VB _ 24 acl _ _ 27 since _ ADP IN _ 28 case _ _ 28 1987 _ NUM CD _ 24 nmod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Now _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 GM _ PROPN NNP _ 4 nsubj _ _ 4 appears _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 be _ AUX VB _ 7 aux _ _ 7 stepping _ VERB VBG _ 4 xcomp _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 10 det _ _ 10 pace _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 factory _ NOUN NN _ 14 compound _ _ 14 consolidation _ NOUN NN _ 10 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 7 advcl _ _ 17 in _ ADP IN _ 18 case _ _ 18 shape _ NOUN NN _ 16 nmod _ _ 19 for _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 1990s _ NOUN CD _ 18 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 reason _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 mounting _ VERB VBG _ 5 amod _ _ 5 competition _ NOUN NN _ 0 root _ _ 6 from _ ADP IN _ 10 case _ _ 7 new _ ADJ JJ _ 10 amod _ _ 8 Japanese _ ADJ JJ _ 10 amod _ _ 9 car _ NOUN NN _ 10 compound _ _ 10 plants _ NOUN NNS _ 5 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.S. _ PROPN NNP _ 10 nmod _ _ 14 that _ PRON WDT _ 16 nsubj _ _ 15 are _ AUX VBP _ 16 aux _ _ 16 pouring _ VERB VBG _ 10 acl:relcl _ _ 17 out _ ADP RP _ 16 advmod _ _ 18 more _ ADJ JJR _ 21 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 one _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 22 nummod _ _ 22 vehicles _ NOUN NNS _ 16 dobj _ _ 23 a _ DET DT _ 24 det _ _ 24 year _ NOUN NN _ 22 nmod:npmod _ _ 25 at _ ADP IN _ 26 case _ _ 26 costs _ NOUN NNS _ 16 nmod _ _ 27 lower _ ADJ JJR _ 26 amod _ _ 28 than _ SCONJ IN _ 31 mark _ _ 29 GM _ PROPN NNP _ 31 nsubj _ _ 30 can _ AUX MD _ 31 aux _ _ 31 match _ VERB VB _ 27 ccomp _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Another _ DET DT _ 2 nsubj _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 that _ SCONJ IN _ 10 mark _ _ 4 United _ PROPN NNP _ 8 compound _ _ 5 Auto _ PROPN NNP _ 8 compound _ _ 6 Workers _ PROPN NNPS _ 8 compound _ _ 7 union _ NOUN NN _ 8 compound _ _ 8 officials _ NOUN NNS _ 10 nsubj _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 signaled _ VERB VBN _ 2 ccomp _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 want _ VERB VBP _ 10 ccomp _ _ 13 tighter _ ADJ JJR _ 15 amod _ _ 14 no-layoff _ ADJ JJ _ 15 amod _ _ 15 provisions _ NOUN NNS _ 12 xcomp _ _ 16 in _ ADP IN _ 22 case _ _ 17 the _ DET DT _ 22 det _ _ 18 new _ ADJ JJ _ 22 amod _ _ 19 Big _ PROPN NNP _ 22 compound _ _ 20 Three _ NUM CD _ 22 nummod _ _ 21 national _ ADJ JJ _ 22 amod _ _ 22 contract _ NOUN NN _ 15 dep _ _ 23 that _ PRON WDT _ 26 nsubjpass _ _ 24 will _ AUX MD _ 26 aux _ _ 25 be _ AUX VB _ 26 auxpass _ _ 26 negotiated _ VERB VBN _ 22 acl:relcl _ _ 27 next _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 26 nmod:tmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 GM _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 3 nsubj _ _ 3 want _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 get _ VERB VB _ 3 xcomp _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 strategy _ NOUN NN _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 reduce _ VERB VB _ 7 acl _ _ 10 capacity _ NOUN NN _ 9 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 work _ NOUN NN _ 14 compound _ _ 14 force _ NOUN NN _ 10 conj _ _ 15 in _ ADP IN _ 16 case _ _ 16 place _ NOUN NN _ 5 nmod _ _ 17 before _ SCONJ IN _ 20 mark _ _ 18 those _ DET DT _ 19 det _ _ 19 talks _ NOUN NNS _ 20 nsubj _ _ 20 begin _ VERB VBP _ 5 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 problem _ NOUN NN _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 GM _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 moves _ NOUN NNS _ 12 nsubj _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 coming _ VERB VBG _ 6 ccomp _ _ 13 at _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 12 nmod _ _ 16 when _ ADV WRB _ 20 advmod _ _ 17 UAW _ PROPN NNP _ 18 compound _ _ 18 leaders _ NOUN NNS _ 20 nsubj _ _ 19 are _ AUX VBP _ 20 aux _ _ 20 trying _ VERB VBG _ 15 acl:relcl _ _ 21 to _ PART TO _ 22 mark _ _ 22 silence _ VERB NN _ 20 xcomp _ _ 23 dissidents _ NOUN NNS _ 22 dobj _ _ 24 who _ PRON WP _ 25 nsubj _ _ 25 charge _ VERB VBP _ 23 acl:relcl _ _ 26 the _ DET DT _ 27 det _ _ 27 union _ NOUN NN _ 30 nsubj _ _ 28 is _ VERB VBZ _ 30 cop _ _ 29 too _ ADV RB _ 30 advmod _ _ 30 passive _ ADJ JJ _ 25 ccomp _ _ 31 in _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 face _ NOUN NN _ 30 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 GM _ PROPN NNP _ 36 compound _ _ 36 layoffs _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 Against _ ADP IN _ 3 case _ _ 2 that _ DET DT _ 3 det _ _ 3 backdrop _ NOUN NN _ 23 nmod _ _ 4 , _ PUNCT , _ 23 punct _ _ 5 UAW _ PROPN NNP _ 10 compound _ _ 6 Vice _ PROPN NNP _ 10 compound _ _ 7 President _ PROPN NNP _ 10 compound _ _ 8 Stephen _ PROPN NNP _ 10 compound _ _ 9 P. _ PROPN NNP _ 10 compound _ _ 10 Yokich _ PROPN NNP _ 23 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 who _ PRON WP _ 14 nsubj _ _ 13 recently _ ADV RB _ 14 advmod _ _ 14 became _ VERB VBD _ 10 acl:relcl _ _ 15 head _ NOUN NN _ 14 xcomp _ _ 16 of _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 18 det _ _ 18 union _ NOUN NN _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 GM _ PROPN NNP _ 21 compound _ _ 21 department _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 issued _ VERB VBD _ 0 root _ _ 24 a _ DET DT _ 25 det _ _ 25 statement _ NOUN NN _ 23 dobj _ _ 26 Friday _ PROPN NNP _ 23 nmod:tmod _ _ 27 blasting _ VERB VBG _ 23 dep _ _ 28 GM _ PROPN NNP _ 32 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 `` _ PUNCT `` _ 32 punct _ _ 31 flagrant _ ADJ JJ _ 32 amod _ _ 32 insensitivity _ NOUN NN _ 27 dobj _ _ 33 '' _ PUNCT '' _ 32 punct _ _ 34 toward _ ADP IN _ 36 case _ _ 35 union _ NOUN NN _ 36 compound _ _ 36 members _ NOUN NNS _ 32 nmod _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 auto _ NOUN NN _ 3 compound _ _ 3 maker _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 decision _ NOUN NN _ 25 nsubj _ _ 6 to _ PART TO _ 7 mark _ _ 7 let _ VERB VB _ 5 acl _ _ 8 word _ NOUN NN _ 16 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 latest _ ADJ JJS _ 12 amod _ _ 12 shutdowns _ NOUN NNS _ 8 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 product _ NOUN NN _ 15 compound _ _ 15 reassignments _ NOUN NNS _ 12 conj _ _ 16 trickle _ VERB VBP _ 7 ccomp _ _ 17 out _ ADP RP _ 16 advmod _ _ 18 in _ ADP IN _ 20 case _ _ 19 separate _ ADJ JJ _ 20 amod _ _ 20 communiques _ NOUN NNS _ 16 nmod _ _ 21 to _ ADP TO _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 affected _ ADJ VBN _ 24 amod _ _ 24 plants _ NOUN NNS _ 20 nmod _ _ 25 showed _ VERB VBD _ 43 ccomp _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 disarray _ NOUN NN _ 25 dobj _ _ 28 '' _ PUNCT '' _ 27 punct _ _ 29 and _ CONJ CC _ 27 cc _ _ 30 an _ DET DT _ 32 det _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 inability _ NOUN NN _ 27 conj _ _ 33 or _ CONJ CC _ 32 cc _ _ 34 unwillingness _ NOUN NN _ 32 conj _ _ 35 to _ PART TO _ 36 mark _ _ 36 provide _ VERB VB _ 34 acl _ _ 37 consistent _ ADJ JJ _ 38 amod _ _ 38 information _ NOUN NN _ 36 dobj _ _ 39 , _ PUNCT , _ 43 punct _ _ 40 '' _ PUNCT '' _ 43 punct _ _ 41 Mr. _ PROPN NNP _ 42 compound _ _ 42 Yokich _ PROPN NNP _ 43 nsubj _ _ 43 said _ VERB VBD _ 0 root _ _ 44 . _ PUNCT . _ 43 punct _ _ 1 GM _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 3 nsubj _ _ 3 told _ VERB VBD _ 0 root _ _ 4 workers _ NOUN NNS _ 3 dobj _ _ 5 late _ ADV RB _ 7 advmod _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 3 nmod:tmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 following _ ADJ VBG _ 11 amod _ _ 11 moves _ NOUN NNS _ 3 nmod _ _ 12 : _ PUNCT : _ 11 punct _ _ 13 Production _ NOUN NN _ 19 nsubjpass _ _ 14 of _ ADP IN _ 16 case _ _ 15 full-sized _ ADJ JJ _ 16 amod _ _ 16 vans _ NOUN NNS _ 13 nmod _ _ 17 will _ AUX MD _ 19 aux _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 consolidated _ VERB VBN _ 11 dep _ _ 20 into _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 single _ ADJ JJ _ 23 amod _ _ 23 plant _ NOUN NN _ 19 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Flint _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Mich _ PROPN NNP _ 25 appos _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 means _ VERB VBZ _ 0 root _ _ 3 two _ NUM CD _ 4 nummod _ _ 4 plants _ NOUN NNS _ 23 nsubjpass _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 one _ NUM CD _ 4 dep _ _ 7 in _ ADP IN _ 8 case _ _ 8 Scarborough _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Ontario _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 other _ ADJ JJ _ 6 conj _ _ 15 in _ ADP IN _ 16 case _ _ 16 Lordstown _ PROPN NNP _ 14 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Ohio _ PROPN NNP _ 16 appos _ _ 19 -- _ PUNCT : _ 4 punct _ _ 20 probably _ ADV RB _ 23 advmod _ _ 21 will _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 shut _ VERB VBN _ 2 ccomp _ _ 24 down _ ADP RP _ 23 compound:prt _ _ 25 after _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 end _ NOUN NN _ 23 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 1991 _ NUM CD _ 27 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 shutdowns _ NOUN NNS _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 idle _ VERB VB _ 0 root _ _ 5 about _ ADV IN _ 6 advmod _ _ 6 3,000 _ NUM CD _ 9 nummod _ _ 7 Canadian _ ADJ JJ _ 9 amod _ _ 8 assembly _ NOUN NN _ 9 compound _ _ 9 workers _ NOUN NNS _ 4 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 about _ ADJ IN _ 12 advmod _ _ 12 2,500 _ NUM CD _ 13 nummod _ _ 13 workers _ NOUN NNS _ 9 conj _ _ 14 in _ ADP IN _ 15 case _ _ 15 Ohio _ PROPN NNP _ 13 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Robert _ PROPN NNP _ 2 compound _ _ 2 White _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Canadian _ PROPN NNP _ 8 compound _ _ 5 Auto _ PROPN NNP _ 8 compound _ _ 6 Workers _ PROPN NNPS _ 8 compound _ _ 7 union _ NOUN NN _ 8 compound _ _ 8 president _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 used _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 14 det _ _ 12 impending _ ADJ JJ _ 14 amod _ _ 13 Scarborough _ PROPN NNP _ 14 compound _ _ 14 shutdown _ NOUN NN _ 10 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 criticize _ VERB VB _ 10 advcl _ _ 17 the _ DET DT _ 21 det _ _ 18 U.S.-Canada _ PROPN JJ _ 21 compound _ _ 19 free _ ADJ JJ _ 21 amod _ _ 20 trade _ NOUN NN _ 21 compound _ _ 21 agreement _ NOUN NN _ 16 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 champion _ NOUN NN _ 21 conj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Prime _ PROPN NNP _ 29 compound _ _ 27 Minister _ PROPN NNP _ 29 compound _ _ 28 Brian _ PROPN NNP _ 29 compound _ _ 29 Mulroney _ PROPN NNP _ 24 appos _ _ 30 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 Canadian _ ADJ JJ _ 4 amod _ _ 3 auto _ NOUN NN _ 4 compound _ _ 4 workers _ NOUN NNS _ 6 nsubj _ _ 5 may _ AUX MD _ 6 aux _ _ 6 benefit _ VERB VB _ 0 root _ _ 7 from _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 separate _ ADJ JJ _ 11 amod _ _ 10 GM _ PROPN NNP _ 11 compound _ _ 11 move _ NOUN NN _ 6 nmod _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 affects _ VERB VBZ _ 11 acl:relcl _ _ 14 three _ NUM CD _ 17 nummod _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 car _ NOUN NN _ 17 compound _ _ 17 plants _ NOUN NNS _ 13 dobj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 one _ NUM CD _ 17 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Quebec _ NOUN NNP _ 19 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Workers _ NOUN NNS _ 18 nsubjpass _ _ 2 at _ ADP IN _ 3 case _ _ 3 plants _ NOUN NNS _ 1 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 Van _ PROPN NNP _ 6 compound _ _ 6 Nuys _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Calif. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 Oklahoma _ PROPN NNP _ 11 compound _ _ 11 City _ PROPN NNP _ 6 conj _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 Pontiac _ PROPN NNP _ 6 conj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Mich. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 were _ AUX VBD _ 18 auxpass _ _ 18 told _ VERB VBN _ 0 root _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 facilities _ NOUN NNS _ 25 nsubj _ _ 21 are _ AUX VBP _ 25 aux _ _ 22 no _ ADV RB _ 23 neg _ _ 23 longer _ ADV RB _ 25 advmod _ _ 24 being _ NOUN VBG _ 25 dep _ _ 25 considered _ VERB VBN _ 18 ccomp _ _ 26 to _ PART TO _ 27 mark _ _ 27 build _ VERB VB _ 25 xcomp _ _ 28 the _ DET DT _ 30 det _ _ 29 next _ ADJ JJ _ 30 amod _ _ 30 generation _ NOUN NN _ 27 dobj _ _ 31 of _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 Pontiac _ PROPN NNP _ 34 compound _ _ 34 Firebird _ PROPN NNP _ 30 nmod _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 Chevrolet _ PROPN NNP _ 39 compound _ _ 37 Camaro _ PROPN NNP _ 39 compound _ _ 38 muscle _ NOUN NN _ 39 compound _ _ 39 cars _ NOUN NNS _ 34 conj _ _ 40 . _ PUNCT . _ 18 punct _ _ 1 GM _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 studying _ VERB VBG _ 25 ccomp _ _ 4 whether _ SCONJ IN _ 7 mark _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 build _ VERB VB _ 3 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 new _ ADJ JJ _ 10 amod _ _ 10 Camaro-Firebird _ PROPN NNP _ 7 dobj _ _ 11 profitably _ ADV RB _ 7 advmod _ _ 12 at _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 plant _ NOUN NN _ 7 nmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 St. _ PROPN NNP _ 17 compound _ _ 17 Therese _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Quebec _ PROPN NNP _ 17 appos _ _ 20 , _ PUNCT , _ 25 punct _ _ 21 company _ NOUN NN _ 24 compound _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 union _ NOUN NN _ 21 conj _ _ 24 officials _ NOUN NNS _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 announcement _ NOUN NN _ 3 nsubj _ _ 3 left _ VERB VBD _ 0 root _ _ 4 union _ NOUN NN _ 5 compound _ _ 5 officials _ NOUN NNS _ 12 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 Van _ PROPN NNP _ 8 compound _ _ 8 Nuys _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Oklahoma _ PROPN NNP _ 11 compound _ _ 11 City _ PROPN NNP _ 8 conj _ _ 12 uncertain _ ADJ JJ _ 3 xcomp _ _ 13 about _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 futures _ NOUN NNS _ 12 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Van _ PROPN NNP _ 4 compound _ _ 3 Nuys _ PROPN NNP _ 4 compound _ _ 4 plant _ NOUN NN _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 7 nsubj _ _ 7 employs _ VERB VBZ _ 4 acl:relcl _ _ 8 about _ ADV IN _ 9 advmod _ _ 9 3,000 _ NUM CD _ 10 nummod _ _ 10 workers _ NOUN NNS _ 7 dobj _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 have _ VERB VB _ 0 root _ _ 15 a _ DET DT _ 16 det _ _ 16 product _ NOUN NN _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 build _ VERB VB _ 16 acl _ _ 19 after _ ADP IN _ 20 case _ _ 20 1993 _ NUM CD _ 14 nmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 Jerry _ PROPN NNP _ 2 compound _ _ 2 Shrieves _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 UAW _ PROPN NNP _ 6 compound _ _ 5 local _ ADJ JJ _ 6 amod _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 facility _ NOUN NN _ 12 nsubjpass _ _ 11 was _ AUX VBD _ 12 auxpass _ _ 12 asked _ VERB VBN _ 8 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 draw _ VERB VB _ 12 xcomp _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 plans _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 continue _ VERB VB _ 16 acl _ _ 19 working _ VERB VBG _ 18 xcomp _ _ 20 as _ ADP IN _ 24 case _ _ 21 a _ DET DT _ 24 det _ _ 22 `` _ PUNCT `` _ 24 punct _ _ 23 flex _ ADJ JJ _ 24 amod _ _ 24 plant _ NOUN NN _ 19 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 '' _ PUNCT '' _ 24 punct _ _ 27 which _ PRON WDT _ 29 nsubj _ _ 28 could _ AUX MD _ 29 aux _ _ 29 build _ VERB VB _ 24 acl:relcl _ _ 30 several _ ADJ JJ _ 32 amod _ _ 31 different _ ADJ JJ _ 32 amod _ _ 32 types _ NOUN NNS _ 29 dobj _ _ 33 of _ ADP IN _ 34 case _ _ 34 products _ NOUN NNS _ 32 nmod _ _ 35 on _ ADP IN _ 37 case _ _ 36 short _ ADJ JJ _ 37 amod _ _ 37 notice _ NOUN NN _ 29 nmod _ _ 38 to _ PART TO _ 39 mark _ _ 39 satisfy _ VERB VB _ 29 advcl _ _ 40 demand _ NOUN NN _ 39 dobj _ _ 41 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 Oklahoma _ PROPN NNP _ 5 compound _ _ 4 City _ PROPN NNP _ 5 compound _ _ 5 plant _ NOUN NN _ 27 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 employs _ VERB VBZ _ 5 acl:relcl _ _ 9 about _ ADV IN _ 10 advmod _ _ 10 6,000 _ NUM CD _ 11 nummod _ _ 11 workers _ NOUN NNS _ 8 dobj _ _ 12 building _ VERB VBG _ 11 acl _ _ 13 the _ DET DT _ 17 det _ _ 14 eight-year-old _ ADJ NN _ 17 amod _ _ 15 A-body _ ADJ JJ _ 17 amod _ _ 16 mid-sized _ ADJ JJ _ 17 amod _ _ 17 cars _ NOUN NNS _ 12 dobj _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 Steve _ PROPN NNP _ 20 compound _ _ 20 Featherston _ PROPN NNP _ 27 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 UAW _ PROPN NNP _ 25 compound _ _ 23 local _ ADJ JJ _ 25 amod _ _ 24 vice _ NOUN NN _ 25 compound _ _ 25 president _ NOUN NN _ 20 appos _ _ 26 , _ PUNCT , _ 20 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 the _ DET DT _ 29 det _ _ 29 plant _ NOUN NN _ 30 nsubj _ _ 30 has _ VERB VBZ _ 27 dep _ _ 31 no _ DET DT _ 33 neg _ _ 32 new _ ADJ JJ _ 33 amod _ _ 33 product _ NOUN NN _ 34 nsubj _ _ 34 lined _ VERB VBD _ 30 ccomp _ _ 35 up _ ADP RP _ 34 compound:prt _ _ 36 , _ PUNCT , _ 30 punct _ _ 37 and _ CONJ CC _ 30 cc _ _ 38 `` _ PUNCT `` _ 30 punct _ _ 39 none _ NOUN NN _ 42 nsubj _ _ 40 of _ ADP IN _ 41 case _ _ 41 us _ PRON PRP _ 39 nmod _ _ 42 knows _ VERB VBZ _ 30 conj _ _ 43 '' _ PUNCT '' _ 42 punct _ _ 44 when _ ADV WRB _ 49 advmod _ _ 45 the _ DET DT _ 47 det _ _ 46 A-body _ ADJ JJ _ 47 amod _ _ 47 cars _ NOUN NNS _ 49 nsubj _ _ 48 will _ AUX MD _ 49 aux _ _ 49 die _ VERB VB _ 42 ccomp _ _ 50 . _ PUNCT . _ 27 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 believes _ VERB VBZ _ 2 ccomp _ _ 5 GM _ PROPN NNP _ 6 nsubj _ _ 6 has _ VERB VBZ _ 4 ccomp _ _ 7 plans _ NOUN NNS _ 6 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 keep _ VERB VB _ 7 acl _ _ 10 building _ VERB NN _ 9 xcomp _ _ 11 A-body _ ADJ JJ _ 12 amod _ _ 12 cars _ NOUN NNS _ 10 dobj _ _ 13 into _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 mid-1990s _ NOUN NNS _ 10 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Pontiac _ PROPN NNP _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 however _ ADV RB _ 9 advmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 Camaro-Firebird _ PROPN NNP _ 8 compound _ _ 8 decision _ NOUN NN _ 9 nsubj _ _ 9 appears _ VERB VBZ _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 erase _ VERB VB _ 9 xcomp _ _ 12 UAW _ PROPN NNP _ 13 compound _ _ 13 hopes _ NOUN VBZ _ 11 dobj _ _ 14 that _ SCONJ IN _ 17 mark _ _ 15 GM _ PROPN NNP _ 17 nsubj _ _ 16 would _ AUX MD _ 17 aux _ _ 17 reopen _ VERB VB _ 13 ccomp _ _ 18 the _ DET DT _ 21 det _ _ 19 shuttered _ ADJ VBN _ 21 amod _ _ 20 assembly _ NOUN NN _ 21 compound _ _ 21 plant _ NOUN NN _ 17 dobj _ _ 22 that _ PRON IN _ 24 nsubj _ _ 23 last _ ADV JJ _ 24 advmod _ _ 24 built _ VERB VBD _ 21 acl:relcl _ _ 25 the _ DET DT _ 31 det _ _ 26 plastic-bodied _ ADJ JJ _ 31 amod _ _ 27 , _ PUNCT , _ 31 punct _ _ 28 two-seater _ ADJ JJ _ 31 amod _ _ 29 Pontiac _ PROPN NNP _ 31 compound _ _ 30 Fiero _ PROPN NNP _ 31 compound _ _ 31 model _ NOUN NN _ 24 dobj _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Fiero _ PROPN NNP _ 3 compound _ _ 3 plant _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 viewed _ VERB VBN _ 0 root _ _ 6 as _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 model _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 union-management _ ADJ JJ _ 11 amod _ _ 11 cooperation _ NOUN NN _ 8 nmod _ _ 12 at _ ADP IN _ 13 case _ _ 13 GM _ PROPN NNP _ 5 nmod _ _ 14 before _ SCONJ IN _ 20 mark _ _ 15 slow _ ADJ JJ _ 16 amod _ _ 16 sales _ NOUN NNS _ 20 nsubj _ _ 17 of _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 Fiero _ PROPN NNP _ 16 nmod _ _ 20 forced _ VERB VBD _ 5 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 20 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 close _ VERB VB _ 20 xcomp _ _ 25 the _ DET DT _ 26 det _ _ 26 factory _ NOUN NN _ 24 dobj _ _ 27 last _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 24 nmod:tmod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Union _ NOUN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 taken _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 beating _ NOUN NN _ 4 dobj _ _ 7 politically _ ADV RB _ 4 advmod _ _ 8 as _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 result _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Dissident _ PROPN JJ _ 3 compound _ _ 2 UAW _ PROPN NNP _ 3 compound _ _ 3 members _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 used _ VERB VBN _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 Fiero _ PROPN NNP _ 8 compound _ _ 8 plant _ NOUN NN _ 5 dobj _ _ 9 as _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 symbol _ NOUN NN _ 5 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 labor-management _ ADJ JJ _ 14 amod _ _ 14 cooperation _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 failure _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 Institut _ PROPN NNP _ 3 compound _ _ 2 Merieux _ PROPN NNP _ 3 compound _ _ 3 S.A. _ PROPN NNP _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 France _ PROPN NNP _ 3 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 9 det _ _ 8 Canadian _ ADJ JJ _ 9 amod _ _ 9 government _ NOUN NN _ 10 nsubj _ _ 10 raised _ VERB VBD _ 6 ccomp _ _ 11 an _ DET DT _ 12 det _ _ 12 obstacle _ NOUN NN _ 10 dobj _ _ 13 to _ ADP TO _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 proposed _ ADJ JJ _ 16 amod _ _ 16 acquisition _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 Connaught _ PROPN NNP _ 20 compound _ _ 19 BioSciences _ PROPN NNP _ 20 compound _ _ 20 Inc. _ PROPN NNP _ 16 nmod _ _ 21 for _ ADP IN _ 25 case _ _ 22 942 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 25 nummod _ _ 24 Canadian _ ADJ JJ _ 25 amod _ _ 25 dollars _ NOUN NNS _ 16 nmod _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 US$ _ SYM $ _ 25 dep _ _ 28 801.6 _ NUM CD _ 29 compound _ _ 29 million _ NUM CD _ 27 nummod _ _ 30 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 31 . _ PUNCT . _ 6 punct _ _ 1 Merieux _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 government _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 minister _ NOUN NN _ 13 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 industry _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 science _ NOUN NN _ 8 conj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 technology _ NOUN NN _ 8 conj _ _ 13 told _ VERB VBD _ 2 ccomp _ _ 14 it _ PRON PRP _ 13 dobj _ _ 15 that _ SCONJ IN _ 19 mark _ _ 16 he _ PRON PRP _ 19 nsubj _ _ 17 was _ VERB VBD _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 convinced _ ADJ VBN _ 13 ccomp _ _ 20 that _ SCONJ IN _ 24 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 purchase _ NOUN NN _ 24 nsubj _ _ 23 is _ VERB VBZ _ 24 cop _ _ 24 likely _ ADJ JJ _ 19 ccomp _ _ 25 to _ PART TO _ 30 mark _ _ 26 be _ VERB VB _ 30 cop _ _ 27 of _ ADP IN _ 30 case _ _ 28 `` _ PUNCT `` _ 30 punct _ _ 29 net _ ADJ JJ _ 30 amod _ _ 30 benefit _ NOUN NN _ 24 xcomp _ _ 31 '' _ PUNCT '' _ 30 punct _ _ 32 to _ ADP TO _ 33 case _ _ 33 Canada _ PROPN NNP _ 30 nmod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 Canadian _ ADJ JJ _ 3 amod _ _ 2 investment _ NOUN NN _ 3 compound _ _ 3 rules _ NOUN NNS _ 4 nsubj _ _ 4 require _ VERB VBP _ 0 root _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 big _ ADJ JJ _ 8 amod _ _ 7 foreign _ ADJ JJ _ 8 amod _ _ 8 takeovers _ NOUN NNS _ 9 nsubj _ _ 9 meet _ VERB VBP _ 4 ccomp _ _ 10 that _ DET IN _ 11 det _ _ 11 standard _ NOUN NN _ 9 dobj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 government _ NOUN NN _ 7 nsubj _ _ 7 gave _ VERB VBD _ 4 ccomp _ _ 8 it _ PRON PRP _ 7 iobj _ _ 9 30 _ NUM CD _ 10 nummod _ _ 10 days _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 which _ PRON WDT _ 14 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 submit _ VERB VB _ 10 acl:relcl _ _ 15 information _ NOUN NN _ 14 dobj _ _ 16 to _ PART TO _ 18 mark _ _ 17 further _ ADV JJ _ 18 advmod _ _ 18 support _ VERB NN _ 15 acl _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 takeover _ NOUN NN _ 21 compound _ _ 21 plan _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 Both _ DET DT _ 2 cc:preconj _ _ 2 Merieux _ PROPN NNP _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Connaught _ PROPN NNP _ 2 conj _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 biotechnology _ NOUN NN _ 7 compound _ _ 7 research _ NOUN NN _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 vaccine _ NOUN NN _ 11 compound _ _ 10 manufacturing _ NOUN NN _ 11 compound _ _ 11 concerns _ NOUN NNS _ 7 conj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 action _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 unusual _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Alan _ PROPN NNP _ 2 compound _ _ 2 Nymark _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 executive _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 Investment _ PROPN NNP _ 9 compound _ _ 9 Canada _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 12 nsubj _ _ 12 oversees _ VERB VBZ _ 9 acl:relcl _ _ 13 foreign _ ADJ JJ _ 14 amod _ _ 14 takeovers _ NOUN NNS _ 12 dobj _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 marked _ VERB VBD _ 16 ccomp _ _ 19 the _ DET DT _ 21 det _ _ 20 first _ ADJ JJ _ 21 amod _ _ 21 time _ NOUN NN _ 18 dobj _ _ 22 in _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 four-year _ ADJ JJ _ 25 amod _ _ 25 history _ NOUN NN _ 21 nmod _ _ 26 that _ ADP IN _ 30 advmod _ _ 27 the _ DET DT _ 28 det _ _ 28 agency _ NOUN NN _ 30 nsubj _ _ 29 has _ AUX VBZ _ 30 aux _ _ 30 made _ VERB VBN _ 21 dep _ _ 31 an _ DET DT _ 34 det _ _ 32 adverse _ ADJ JJ _ 34 amod _ _ 33 net-benefit _ ADJ JJ _ 34 amod _ _ 34 decision _ NOUN NN _ 30 dobj _ _ 35 about _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 acquisition _ NOUN NN _ 34 nmod _ _ 38 of _ ADP IN _ 42 case _ _ 39 a _ DET DT _ 42 det _ _ 40 publicly _ ADV RB _ 41 advmod _ _ 41 traded _ VERB VBN _ 42 amod _ _ 42 company _ NOUN NN _ 37 nmod _ _ 43 . _ PUNCT . _ 16 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 reached _ VERB VBN _ 2 ccomp _ _ 6 the _ DET DT _ 8 det _ _ 7 same _ ADJ JJ _ 8 amod _ _ 8 conclusions _ NOUN NNS _ 5 dobj _ _ 9 about _ ADP IN _ 11 case _ _ 10 some _ DET DT _ 11 det _ _ 11 attempts _ NOUN NNS _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 acl _ _ 14 closely _ ADV RB _ 15 advmod _ _ 15 held _ VERB VBN _ 13 xcomp _ _ 16 concerns _ NOUN NNS _ 13 dep _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 but _ CONJ CC _ 5 cc _ _ 19 eventually _ ADV RB _ 20 advmod _ _ 20 allowed _ VERB VBD _ 5 conj _ _ 21 those _ DET DT _ 22 det _ _ 22 acquisitions _ NOUN NNS _ 20 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 proceed _ VERB VB _ 20 xcomp _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 a _ DET DT _ 6 det _ _ 6 change _ NOUN NN _ 19 ccomp _ _ 7 in _ ADP IN _ 9 case _ _ 8 government _ NOUN NN _ 9 compound _ _ 9 policy _ NOUN NN _ 6 nmod _ _ 10 ; _ PUNCT : _ 6 punct _ _ 11 this _ DET DT _ 12 det _ _ 12 provision _ NOUN NN _ 15 nsubjpass _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 used _ VERB VBN _ 6 parataxis _ _ 16 before _ ADV IN _ 15 advmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Jodi _ PROPN NNP _ 21 compound _ _ 21 Redmond _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 press _ NOUN NN _ 24 compound _ _ 24 secretary _ NOUN NN _ 21 appos _ _ 25 for _ ADP IN _ 27 case _ _ 26 Harvie _ PROPN NNP _ 27 compound _ _ 27 Andre _ PROPN NNP _ 24 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Canada _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 minister _ NOUN NN _ 27 appos _ _ 32 of _ ADP IN _ 33 case _ _ 33 industry _ NOUN NN _ 31 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 science _ NOUN NN _ 33 conj _ _ 36 and _ CONJ CC _ 33 cc _ _ 37 technology _ NOUN NN _ 33 conj _ _ 38 . _ PUNCT . _ 19 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Andre _ PROPN NNP _ 3 nsubj _ _ 3 issued _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 ruling _ NOUN NN _ 3 dobj _ _ 6 based _ VERB VBN _ 9 case _ _ 7 on _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 recommendation _ NOUN NN _ 3 advcl _ _ 10 by _ ADP IN _ 12 case _ _ 11 Investment _ PROPN NNP _ 12 compound _ _ 12 Canada _ PROPN NNP _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Spokesmen _ PROPN NNS _ 6 nsubj _ _ 2 for _ ADP IN _ 3 case _ _ 3 Merieux _ PROPN NNP _ 1 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Connaught _ PROPN NNP _ 3 conj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 they _ PRON PRP _ 11 nsubjpass _ _ 8 had _ AUX VBD _ 11 aux _ _ 9 n't _ PART RB _ 11 neg _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 informed _ VERB VBN _ 6 ccomp _ _ 12 of _ ADP IN _ 14 case _ _ 13 specific _ ADJ JJ _ 14 amod _ _ 14 areas _ NOUN NNS _ 11 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 concern _ NOUN NN _ 14 nmod _ _ 17 by _ ADP IN _ 20 case _ _ 18 either _ CONJ CC _ 20 cc:preconj _ _ 19 the _ DET DT _ 20 det _ _ 20 government _ NOUN NN _ 11 nmod _ _ 21 or _ CONJ CC _ 20 cc _ _ 22 Investment _ PROPN NN _ 23 compound _ _ 23 Canada _ PROPN NNP _ 20 conj _ _ 24 , _ PUNCT , _ 6 punct _ _ 25 but _ CONJ CC _ 6 cc _ _ 26 added _ VERB VBD _ 6 conj _ _ 27 they _ PRON PRP _ 28 nsubj _ _ 28 hope _ VERB VBP _ 26 ccomp _ _ 29 to _ PART TO _ 30 mark _ _ 30 have _ VERB VB _ 28 xcomp _ _ 31 more _ ADJ JJR _ 32 amod _ _ 32 information _ NOUN NN _ 30 dobj _ _ 33 early _ ADV RB _ 35 advmod _ _ 34 this _ DET DT _ 35 det _ _ 35 week _ NOUN NN _ 30 nmod:tmod _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Investment _ PROPN NNP _ 2 compound _ _ 2 Canada _ PROPN NNP _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 comment _ VERB VB _ 3 xcomp _ _ 6 on _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 reasons _ NOUN NNS _ 5 nmod _ _ 9 for _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 decision _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Viren _ PROPN NNP _ 2 compound _ _ 2 Mehta _ PROPN NNP _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 partner _ NOUN NN _ 2 appos _ _ 6 with _ ADP IN _ 7 case _ _ 7 Mehta _ PROPN NNP _ 5 nmod _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Isaly _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 a _ DET DT _ 17 det _ _ 12 New _ PROPN NNP _ 13 amod _ _ 13 York-based _ ADJ JJ _ 17 amod _ _ 14 pharmaceutical _ ADJ JJ _ 17 amod _ _ 15 industry _ NOUN NN _ 17 compound _ _ 16 research _ NOUN NN _ 17 compound _ _ 17 firm _ NOUN NN _ 7 appos _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 the _ DET DT _ 21 det _ _ 21 government _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 ruling _ NOUN NN _ 26 nsubj _ _ 24 was _ VERB VBD _ 26 cop _ _ 25 n't _ PART RB _ 26 neg _ _ 26 unexpected _ ADJ JJ _ 19 ccomp _ _ 27 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 become _ VERB VBN _ 25 ccomp _ _ 5 a _ DET DT _ 8 det _ _ 6 very _ ADV RB _ 7 advmod _ _ 7 politicized _ ADJ VBN _ 8 amod _ _ 8 deal _ NOUN NN _ 4 xcomp _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 concerning _ VERB VBG _ 20 case _ _ 11 Canada _ PROPN NNP _ 20 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 only _ ADJ RB _ 20 amod _ _ 14 large _ ADJ JJ _ 20 amod _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 world-class _ ADJ JJ _ 20 amod _ _ 17 bio-research _ NOUN NN _ 20 compound _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 pharmaceutical _ ADJ JJ _ 17 conj _ _ 20 company _ NOUN NN _ 8 nmod _ _ 21 , _ PUNCT , _ 25 punct _ _ 22 '' _ PUNCT '' _ 25 punct _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Mehta _ PROPN NNP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mehta _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 move _ NOUN NN _ 20 nsubj _ _ 6 that _ PRON WDT _ 8 nsubj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 allow _ VERB VB _ 5 acl:relcl _ _ 9 the _ DET DT _ 10 det _ _ 10 transaction _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 go _ VERB VB _ 8 xcomp _ _ 13 ahead _ ADV RB _ 12 advmod _ _ 14 as _ SCONJ IN _ 15 mark _ _ 15 planned _ VERB VBN _ 12 advcl _ _ 16 could _ AUX MD _ 20 aux _ _ 17 be _ VERB VB _ 20 cop _ _ 18 an _ DET DT _ 20 det _ _ 19 out-of-court _ ADJ JJ _ 20 amod _ _ 20 settlement _ NOUN NN _ 3 ccomp _ _ 21 of _ ADP IN _ 24 case _ _ 22 Connaught _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 dispute _ NOUN NN _ 20 nmod _ _ 25 with _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 University _ PROPN NNP _ 24 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 Toronto _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 University _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 seeking _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 block _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 acquisition _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 Connaught _ PROPN NNP _ 8 nmod _ _ 11 by _ ADP IN _ 13 case _ _ 12 foreign _ ADJ JJ _ 13 amod _ _ 13 interests _ NOUN NNS _ 8 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 citing _ VERB VBG _ 4 advcl _ _ 16 concerns _ NOUN NNS _ 15 dobj _ _ 17 about _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 amount _ NOUN NN _ 16 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 research _ NOUN NN _ 19 nmod _ _ 22 that _ PRON WDT _ 25 nsubjpass _ _ 23 would _ AUX MD _ 25 aux _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 done _ VERB VBN _ 19 acl:relcl _ _ 26 in _ ADP IN _ 27 case _ _ 27 Canada _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 university _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 considering _ VERB VBG _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 settlement _ NOUN NN _ 7 compound _ _ 7 proposal _ NOUN NN _ 4 dobj _ _ 8 made _ VERB VBN _ 7 acl _ _ 9 by _ ADP IN _ 10 case _ _ 10 Connaught _ PROPN NNP _ 8 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 neither _ DET DT _ 3 det _ _ 3 side _ NOUN NN _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 disclose _ VERB VB _ 11 advcl _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 contents _ NOUN NNS _ 5 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Mehta _ PROPN NNP _ 11 nsubj _ _ 11 expects _ VERB VBZ _ 0 root _ _ 12 it _ PRON PRP _ 11 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 contain _ VERB VB _ 11 xcomp _ _ 15 more _ ADV JJR _ 16 advmod _ _ 16 specific _ ADJ JJ _ 17 amod _ _ 17 guarantees _ NOUN NNS _ 14 dobj _ _ 18 on _ ADP IN _ 23 case _ _ 19 research _ NOUN NN _ 23 compound _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 development _ NOUN NN _ 19 conj _ _ 22 spending _ NOUN NN _ 23 compound _ _ 23 levels _ NOUN NNS _ 17 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Canada _ PROPN NNP _ 23 nmod _ _ 26 than _ SCONJ IN _ 28 mark _ _ 27 Merieux _ PROPN NNP _ 28 nsubj _ _ 28 offered _ VERB VBD _ 17 advcl _ _ 29 to _ ADP TO _ 31 case _ _ 30 Investment _ PROPN NNP _ 31 compound _ _ 31 Canada _ PROPN NNP _ 28 nmod _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 such _ ADJ JJ _ 7 case _ _ 5 as _ ADP IN _ 4 mwe _ _ 6 Murray _ PROPN NNP _ 7 compound _ _ 7 Grossner _ PROPN NNP _ 2 nmod _ _ 8 of _ ADP IN _ 12 case _ _ 9 Toronto-based _ ADJ JJ _ 12 amod _ _ 10 Richardson _ PROPN NNP _ 12 compound _ _ 11 Greenshields _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 7 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 believe _ VERB VBP _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 government _ NOUN NN _ 17 compound _ _ 17 ruling _ NOUN NN _ 18 nsubj _ _ 18 leaves _ VERB VBZ _ 14 ccomp _ _ 19 the _ DET DT _ 20 det _ _ 20 door _ NOUN NN _ 21 nsubj _ _ 21 open _ ADJ JJ _ 18 xcomp _ _ 22 for _ ADP IN _ 24 case _ _ 23 other _ ADJ JJ _ 24 amod _ _ 24 bidders _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 30 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 Switzerland _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Ciba-Geigy _ PROPN NNP _ 24 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 Chiron _ PROPN NNP _ 33 compound _ _ 33 Corp. _ PROPN NNP _ 30 conj _ _ 34 of _ ADP IN _ 35 case _ _ 35 Emeryville _ PROPN NNP _ 33 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 Calif _ PROPN NNP _ 35 appos _ _ 38 . _ PUNCT . _ 14 punct _ _ 1 Officials _ NOUN NNS _ 20 nsubjpass _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 two _ NUM CD _ 5 nummod _ _ 5 concerns _ NOUN NNS _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 bidding _ VERB VBG _ 5 acl:relcl _ _ 10 C$ _ SYM $ _ 11 dep _ _ 11 30 _ NUM CD _ 9 dobj _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 for _ ADP IN _ 15 case _ _ 15 Connaught _ PROPN NNP _ 9 nmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 could _ AUX MD _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 reached _ VERB VBN _ 0 root _ _ 21 for _ ADP IN _ 22 case _ _ 22 comment _ NOUN NN _ 20 nmod _ _ 23 . _ PUNCT . _ 20 punct _ _ 1 French _ ADJ JJ _ 2 amod _ _ 2 state-owned _ ADJ JJ _ 4 amod _ _ 3 Rhone-Poulenc _ PROPN NNP _ 4 compound _ _ 4 S.A. _ PROPN NNP _ 5 nsubj _ _ 5 holds _ VERB VBZ _ 0 root _ _ 6 51 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 Merieux _ PROPN NNP _ 7 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Weatherford _ PROPN NNP _ 3 compound _ _ 2 International _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 canceled _ VERB VBD _ 4 ccomp _ _ 7 plans _ NOUN NNS _ 6 dobj _ _ 8 for _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 preferred-stock _ NOUN JJ _ 11 compound _ _ 11 swap _ NOUN NN _ 7 nmod _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 may _ AUX MD _ 14 aux _ _ 14 resume _ VERB VB _ 6 conj _ _ 15 payment _ NOUN NN _ 14 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 dividends _ NOUN NNS _ 15 nmod _ _ 18 on _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 stock _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 and _ CONJ CC _ 4 cc _ _ 23 added _ VERB VBD _ 4 conj _ _ 24 that _ SCONJ IN _ 26 mark _ _ 25 it _ PRON PRP _ 26 nsubj _ _ 26 expects _ VERB VBZ _ 23 ccomp _ _ 27 to _ PART TO _ 29 mark _ _ 28 publicly _ ADV RB _ 29 advmod _ _ 29 offer _ VERB VB _ 26 xcomp _ _ 30 about _ ADV IN _ 32 advmod _ _ 31 10 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 34 nummod _ _ 33 common _ ADJ JJ _ 34 amod _ _ 34 shares _ NOUN NNS _ 29 dobj _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 planned _ VERB VBD _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 offer _ VERB VB _ 5 xcomp _ _ 8 an _ DET DT _ 10 det _ _ 9 undetermined _ ADJ JJ _ 10 amod _ _ 10 number _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 common _ ADJ JJ _ 13 amod _ _ 13 shares _ NOUN NNS _ 10 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 exchange _ NOUN NN _ 7 nmod _ _ 16 for _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 585,000 _ NUM CD _ 19 nummod _ _ 19 shares _ NOUN NNS _ 15 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 preferred _ ADJ JJ _ 23 amod _ _ 23 stock _ NOUN NN _ 19 nmod _ _ 24 outstanding _ ADJ JJ _ 23 amod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 exchange _ NOUN NN _ 3 compound _ _ 3 ratio _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 never _ ADV RB _ 6 neg _ _ 6 established _ VERB VBN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Weatherford _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 conditions _ NOUN NNS _ 5 nsubj _ _ 5 led _ VERB VBD _ 2 ccomp _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 cancellation _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 planned _ ADJ VBN _ 12 amod _ _ 12 exchange _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 energy-services _ NOUN JJ _ 3 compound _ _ 3 concern _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 however _ ADV RB _ 4 advmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 that _ SCONJ IN _ 15 mark _ _ 9 in _ ADP IN _ 10 case _ _ 10 January _ PROPN NNP _ 15 nmod _ _ 11 1990 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 may _ AUX MD _ 15 aux _ _ 15 resume _ VERB VB _ 4 ccomp _ _ 16 payments _ NOUN NNS _ 15 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 dividends _ NOUN NNS _ 16 nmod _ _ 19 on _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 preferred _ ADJ JJ _ 22 amod _ _ 22 stock _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Weatherford _ PROPN NNP _ 2 nsubj _ _ 2 suspended _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 preferred-dividend _ ADJ JJ _ 5 amod _ _ 5 payment _ NOUN NN _ 2 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 October _ PROPN NNP _ 2 nmod _ _ 8 1985 _ NUM CD _ 7 nummod _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 said _ VERB VBD _ 2 conj _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 has _ VERB VBZ _ 10 ccomp _ _ 13 n't _ PART RB _ 12 neg _ _ 14 any _ DET DT _ 15 det _ _ 15 plans _ NOUN NNS _ 12 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 catch _ VERB VB _ 15 acl _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 on _ ADP IN _ 20 case _ _ 20 dividends _ NOUN NNS _ 17 nmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 arrears _ NOUN NNS _ 20 nmod _ _ 23 about _ ADV IN _ 24 advmod _ _ 24 $ _ SYM $ _ 22 nmod:npmod _ _ 25 6 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 12 punct _ _ 28 but _ CONJ CC _ 12 cc _ _ 29 will _ AUX MD _ 30 aux _ _ 30 do _ VERB VB _ 12 conj _ _ 31 so _ ADV RB _ 30 advmod _ _ 32 some _ DET DT _ 33 det _ _ 33 time _ NOUN NN _ 30 nmod:tmod _ _ 34 in _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 future _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 Additionally _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 filed _ VERB VBD _ 5 ccomp _ _ 8 with _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 Securities _ PROPN NNPS _ 13 compound _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Exchange _ PROPN NNP _ 10 conj _ _ 13 Commission _ PROPN NNP _ 7 nmod _ _ 14 for _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 proposed _ ADJ VBN _ 17 amod _ _ 17 offering _ NOUN NN _ 7 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 10 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 shares _ NOUN NNS _ 17 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 common _ ADJ JJ _ 24 amod _ _ 24 stock _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 21 punct _ _ 26 expected _ VERB VBN _ 21 acl _ _ 27 to _ PART TO _ 29 mark _ _ 28 be _ AUX VB _ 29 auxpass _ _ 29 offered _ VERB VBN _ 26 xcomp _ _ 30 in _ ADP IN _ 31 case _ _ 31 November _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Salomon _ PROPN NNP _ 6 compound _ _ 5 Brothers _ PROPN NNP _ 6 compound _ _ 6 Inc. _ PROPN NNP _ 23 nsubjpass _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Howard _ PROPN NNP _ 15 compound _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 Weil _ PROPN NNP _ 15 appos _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 Labouisse _ PROPN NNP _ 15 appos _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 Friedrichs _ PROPN NNP _ 15 appos _ _ 15 Inc. _ PROPN NNP _ 6 conj _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 underwriters _ NOUN NNS _ 6 appos _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 offering _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 6 punct _ _ 22 were _ AUX VBD _ 23 auxpass _ _ 23 granted _ VERB VBN _ 3 ccomp _ _ 24 an _ DET DT _ 25 det _ _ 25 option _ NOUN NN _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 buy _ VERB VB _ 25 acl _ _ 28 as _ ADV RB _ 29 advmod _ _ 29 much _ ADJ JJ _ 27 dobj _ _ 30 as _ ADP IN _ 35 case _ _ 31 an _ DET DT _ 35 det _ _ 32 additional _ ADJ JJ _ 35 amod _ _ 33 1.5 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 35 nummod _ _ 35 shares _ NOUN NNS _ 29 nmod _ _ 36 to _ PART TO _ 37 mark _ _ 37 cover _ VERB VB _ 27 advcl _ _ 38 over-allotments _ NOUN NNS _ 37 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Proceeds _ NOUN NNS _ 4 nsubjpass _ _ 2 will _ AUX MD _ 4 aux _ _ 3 be _ AUX VB _ 4 auxpass _ _ 4 used _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 eliminate _ VERB VB _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 restructure _ VERB VB _ 6 conj _ _ 9 bank _ NOUN NN _ 10 compound _ _ 10 debt _ NOUN NN _ 6 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Weatherford _ PROPN NNP _ 3 nsubj _ _ 2 currently _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 approximately _ ADV RB _ 6 advmod _ _ 5 11.1 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 8 nummod _ _ 7 common _ ADJ JJ _ 8 amod _ _ 8 shares _ NOUN NNS _ 3 dobj _ _ 9 outstanding _ ADJ JJ _ 8 amod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 Earnings _ NOUN NNS _ 12 nsubjpass _ _ 2 for _ ADP IN _ 3 case _ _ 3 most _ ADJ JJS _ 1 nmod _ _ 4 of _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 6 det _ _ 6 nation _ NOUN NN _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 major _ ADJ JJ _ 10 amod _ _ 9 pharmaceutical _ ADJ JJ _ 10 amod _ _ 10 makers _ NOUN NNS _ 3 nmod _ _ 11 are _ AUX VBP _ 12 auxpass _ _ 12 believed _ VERB VBN _ 0 root _ _ 13 to _ PART TO _ 15 mark _ _ 14 have _ AUX VB _ 15 aux _ _ 15 moved _ VERB VBN _ 12 xcomp _ _ 16 ahead _ ADV RB _ 15 advmod _ _ 17 briskly _ ADV RB _ 15 advmod _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 as _ SCONJ IN _ 31 mark _ _ 24 companies _ NOUN NNS _ 31 nsubj _ _ 25 with _ ADP IN _ 30 case _ _ 26 newer _ ADJ JJR _ 30 amod _ _ 27 , _ PUNCT , _ 30 punct _ _ 28 big-selling _ ADJ JJ _ 30 amod _ _ 29 prescription _ NOUN NN _ 30 compound _ _ 30 drugs _ NOUN NNS _ 24 nmod _ _ 31 fared _ VERB VBD _ 15 advcl _ _ 32 especially _ ADV RB _ 33 advmod _ _ 33 well _ ADV RB _ 31 advmod _ _ 34 . _ PUNCT . _ 12 punct _ _ 1 For _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 third _ ADJ JJ _ 5 amod _ _ 4 consecutive _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 16 nmod _ _ 6 , _ PUNCT , _ 16 punct _ _ 7 however _ ADV RB _ 16 advmod _ _ 8 , _ PUNCT , _ 16 punct _ _ 9 most _ ADJ JJS _ 16 nsubjpass _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 12 det _ _ 12 companies _ NOUN NNS _ 14 nmod:poss _ _ 13 ' _ PART POS _ 12 case _ _ 14 revenues _ NOUN NNS _ 9 nmod _ _ 15 were _ AUX VBD _ 16 auxpass _ _ 16 battered _ VERB VBN _ 0 root _ _ 17 by _ ADP IN _ 20 case _ _ 18 adverse _ ADJ JJ _ 20 amod _ _ 19 foreign-currency _ NOUN NN _ 20 compound _ _ 20 translations _ NOUN NNS _ 16 nmod _ _ 21 as _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 result _ NOUN NN _ 16 nmod _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 strong _ ADJ JJ _ 27 amod _ _ 27 dollar _ NOUN NN _ 23 nmod _ _ 28 abroad _ ADV RB _ 27 advmod _ _ 29 . _ PUNCT . _ 16 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 25 mark _ _ 4 Merck _ PROPN NNP _ 25 nsubj _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Co. _ PROPN NNP _ 4 conj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 Eli _ PROPN NNP _ 9 compound _ _ 9 Lilly _ PROPN NNP _ 4 conj _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Co. _ PROPN NNP _ 9 conj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 Warner-Lambert _ PROPN NNP _ 14 compound _ _ 14 Co. _ PROPN NNP _ 4 conj _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 the _ DET DT _ 19 det _ _ 17 Squibb _ PROPN NNP _ 19 compound _ _ 18 Corp. _ PROPN NNP _ 19 compound _ _ 19 unit _ NOUN NN _ 4 conj _ _ 20 of _ ADP IN _ 23 case _ _ 21 Bristol-Myers _ PROPN NNP _ 23 compound _ _ 22 Squibb _ PROPN NNP _ 23 compound _ _ 23 Co. _ PROPN NNP _ 19 nmod _ _ 24 all _ DET DT _ 25 dep _ _ 25 benefited _ VERB VBD _ 2 ccomp _ _ 26 from _ ADP IN _ 28 case _ _ 27 strong _ ADJ JJ _ 28 amod _ _ 28 sales _ NOUN NNS _ 25 nmod _ _ 29 of _ ADP IN _ 34 case _ _ 30 relatively _ ADV RB _ 31 advmod _ _ 31 new _ ADJ JJ _ 34 amod _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 higher-priced _ ADJ JJ _ 34 amod _ _ 34 medicines _ NOUN NNS _ 28 nmod _ _ 35 that _ PRON WDT _ 36 nsubj _ _ 36 provide _ VERB VBP _ 34 acl:relcl _ _ 37 wide _ ADJ JJ _ 39 amod _ _ 38 profit _ NOUN NN _ 39 compound _ _ 39 margins _ NOUN NNS _ 36 dobj _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 Less _ ADV RBR _ 2 advmod _ _ 2 robust _ ADJ JJ _ 3 amod _ _ 3 earnings _ NOUN NNS _ 11 nsubjpass _ _ 4 at _ ADP IN _ 6 case _ _ 5 Pfizer _ PROPN NNP _ 6 compound _ _ 6 Inc. _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Upjohn _ PROPN NNP _ 9 compound _ _ 9 Co. _ PROPN NNP _ 6 conj _ _ 10 were _ AUX VBD _ 11 auxpass _ _ 11 attributed _ VERB VBN _ 0 root _ _ 12 to _ ADP TO _ 17 case _ _ 13 those _ DET DT _ 14 det _ _ 14 companies _ NOUN NNS _ 17 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 older _ ADJ JJR _ 17 amod _ _ 17 products _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 many _ ADJ JJ _ 22 nsubj _ _ 20 of _ ADP IN _ 21 case _ _ 21 which _ PRON WDT _ 19 nmod _ _ 22 face _ VERB VBP _ 17 acl:relcl _ _ 23 stiffening _ ADJ VBG _ 24 amod _ _ 24 competition _ NOUN NN _ 22 dobj _ _ 25 from _ ADP IN _ 27 case _ _ 26 generic _ ADJ JJ _ 27 amod _ _ 27 drugs _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 other _ ADJ JJ _ 30 amod _ _ 30 medicines _ NOUN NNS _ 27 conj _ _ 31 . _ PUNCT . _ 11 punct _ _ 1 Joseph _ PROPN NNP _ 2 compound _ _ 2 Riccardo _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 an _ DET DT _ 5 det _ _ 5 analyst _ NOUN NN _ 2 appos _ _ 6 with _ ADP IN _ 7 case _ _ 7 Bear _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Stearns _ PROPN NNP _ 7 conj _ _ 10 & _ CONJ CC _ 7 cc _ _ 11 Co. _ PROPN NNP _ 7 conj _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 that _ SCONJ IN _ 24 mark _ _ 15 over _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 past _ ADJ JJ _ 19 amod _ _ 18 few _ ADJ JJ _ 19 amod _ _ 19 years _ NOUN NNS _ 24 nmod _ _ 20 most _ ADJ RBS _ 22 amod _ _ 21 drug _ NOUN NN _ 22 compound _ _ 22 makers _ NOUN NNS _ 24 nsubj _ _ 23 have _ AUX VBP _ 24 aux _ _ 24 shed _ VERB VBN _ 13 ccomp _ _ 25 their _ PRON PRP$ _ 27 nmod:poss _ _ 26 slow-growing _ ADJ JJ _ 27 amod _ _ 27 businesses _ NOUN NNS _ 24 dobj _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 instituted _ VERB VBN _ 24 conj _ _ 30 other _ ADJ JJ _ 32 amod _ _ 31 cost _ NOUN NN _ 32 compound _ _ 32 savings _ NOUN NNS _ 29 dobj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 such _ ADJ JJ _ 36 mark _ _ 35 as _ SCONJ IN _ 34 mwe _ _ 36 consolidating _ VERB VBG _ 32 acl _ _ 37 manufacturing _ NOUN NN _ 38 compound _ _ 38 plants _ NOUN NNS _ 36 dobj _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 administrative _ ADJ JJ _ 41 amod _ _ 41 staffs _ NOUN NNS _ 38 conj _ _ 42 . _ PUNCT . _ 13 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 `` _ PUNCT `` _ 10 punct _ _ 6 major _ ADJ JJ _ 8 amod _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 products _ NOUN NNS _ 10 nsubj _ _ 9 are _ AUX VBP _ 10 aux _ _ 10 having _ VERB VBG _ 26 ccomp _ _ 11 significant _ ADJ JJ _ 12 amod _ _ 12 impact _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 even _ ADV RB _ 17 advmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 company _ NOUN NN _ 10 nmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 very _ ADV RB _ 20 advmod _ _ 20 large _ ADJ JJ _ 21 amod _ _ 21 revenues _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 '' _ PUNCT '' _ 26 punct _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Riccardo _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 profit _ NOUN NN _ 18 nsubjpass _ _ 4 for _ ADP IN _ 11 case _ _ 5 the _ DET DT _ 11 det _ _ 6 dozen _ NOUN NN _ 11 nummod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 so _ ADV RB _ 6 conj _ _ 9 big _ ADJ JJ _ 11 amod _ _ 10 drug _ NOUN NN _ 11 compound _ _ 11 makers _ NOUN NNS _ 3 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 group _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 estimated _ VERB VBN _ 2 ccomp _ _ 19 to _ PART TO _ 21 mark _ _ 20 have _ AUX VB _ 21 aux _ _ 21 climbed _ VERB VBN _ 18 xcomp _ _ 22 between _ ADP IN _ 24 amod _ _ 23 11 _ NUM CD _ 24 nummod _ _ 24 % _ SYM NN _ 21 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 14 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 24 conj _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 that _ PRON DT _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 not _ PART RB _ 5 neg _ _ 5 spectacular _ ADJ JJ _ 16 advcl _ _ 6 , _ PUNCT , _ 16 punct _ _ 7 Neil _ PROPN NNP _ 8 compound _ _ 8 Sweig _ PROPN NNP _ 16 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 an _ DET DT _ 11 det _ _ 11 analyst _ NOUN NN _ 8 appos _ _ 12 with _ ADP IN _ 14 case _ _ 13 Prudential _ PROPN NNP _ 14 compound _ _ 14 Bache _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 that _ SCONJ IN _ 24 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 rate _ NOUN NN _ 24 nsubj _ _ 20 of _ ADP IN _ 21 case _ _ 21 growth _ NOUN NN _ 19 nmod _ _ 22 will _ AUX MD _ 24 aux _ _ 23 `` _ PUNCT `` _ 24 punct _ _ 24 look _ VERB VB _ 16 ccomp _ _ 25 especially _ ADV RB _ 26 advmod _ _ 26 good _ ADJ JJ _ 24 xcomp _ _ 27 as _ SCONJ IN _ 28 mark _ _ 28 compared _ VERB VBN _ 26 dep _ _ 29 to _ ADP TO _ 31 case _ _ 30 other _ ADJ JJ _ 31 amod _ _ 31 companies _ NOUN NNS _ 28 nmod _ _ 32 if _ SCONJ IN _ 35 mark _ _ 33 the _ DET DT _ 34 det _ _ 34 economy _ NOUN NN _ 35 nsubj _ _ 35 turns _ VERB VBZ _ 24 advcl _ _ 36 downward _ ADV RB _ 35 advmod _ _ 37 . _ PUNCT . _ 16 punct _ _ 38 '' _ PUNCT '' _ 16 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sweig _ PROPN NNP _ 3 nsubj _ _ 3 estimated _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 11 mark _ _ 5 Merck _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 profit _ NOUN NN _ 11 nsubj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 quarter _ NOUN NN _ 7 nmod _ _ 11 rose _ VERB VBD _ 3 ccomp _ _ 12 by _ ADP IN _ 15 case _ _ 13 about _ ADV RB _ 14 advmod _ _ 14 22 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 propelled _ VERB VBN _ 11 dep _ _ 18 by _ ADP IN _ 19 case _ _ 19 sales _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 line-up _ NOUN NN _ 19 nmod _ _ 23 of _ ADP IN _ 26 case _ _ 24 fast-growing _ ADJ JJ _ 26 amod _ _ 25 prescription _ NOUN NN _ 26 compound _ _ 26 drugs _ NOUN NNS _ 22 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 including _ VERB VBG _ 31 case _ _ 29 its _ PRON PRP$ _ 31 nmod:poss _ _ 30 anti-cholesterol _ ADJ JJ _ 31 amod _ _ 31 drug _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 Mevacor _ PROPN NNP _ 31 appos _ _ 34 ; _ PUNCT : _ 31 punct _ _ 35 a _ DET DT _ 39 det _ _ 36 high _ ADJ JJ _ 39 amod _ _ 37 blood _ NOUN NN _ 39 compound _ _ 38 pressure _ NOUN NN _ 39 compound _ _ 39 medicine _ NOUN NN _ 31 conj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Vasotec _ PROPN NNP _ 39 appos _ _ 42 ; _ PUNCT : _ 31 punct _ _ 43 Primaxin _ PROPN NNP _ 31 conj _ _ 44 , _ PUNCT , _ 43 punct _ _ 45 an _ DET DT _ 46 det _ _ 46 antibiotic _ NOUN JJ _ 43 appos _ _ 47 , _ PUNCT , _ 31 punct _ _ 48 and _ CONJ CC _ 31 cc _ _ 49 Pepcid _ PROPN NNP _ 31 conj _ _ 50 , _ PUNCT , _ 49 punct _ _ 51 an _ DET DT _ 53 det _ _ 52 anti-ulcer _ ADJ JJ _ 53 amod _ _ 53 medication _ NOUN NN _ 49 appos _ _ 54 . _ PUNCT . _ 3 punct _ _ 1 Profit _ NOUN NN _ 2 nsubj _ _ 2 climbed _ VERB VBD _ 28 ccomp _ _ 3 even _ ADV RB _ 9 advmod _ _ 4 though _ SCONJ IN _ 9 mark _ _ 5 Merck _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 sales _ NOUN NNS _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 reduced _ VERB VBN _ 2 advcl _ _ 10 by _ ADP IN _ 16 case _ _ 11 `` _ PUNCT `` _ 16 punct _ _ 12 one _ NUM CD _ 14 compound _ _ 13 to _ ADP TO _ 14 dep _ _ 14 three _ NUM CD _ 16 nummod _ _ 15 percentage _ NOUN NN _ 16 compound _ _ 16 points _ NOUN NNS _ 9 nmod _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 as _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 result _ NOUN NN _ 9 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 strong _ ADJ JJ _ 24 amod _ _ 24 dollar _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 28 punct _ _ 26 Mr. _ PROPN NNP _ 27 compound _ _ 27 Sweig _ PROPN NNP _ 28 nsubj _ _ 28 said _ VERB VBD _ 0 root _ _ 29 . _ PUNCT . _ 28 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 9 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 1988 _ NUM CD _ 4 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 Merck _ PROPN NNP _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 311.8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 79 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Rahway _ PROPN NNP _ 9 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.J. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 Merck _ PROPN NNP _ 8 compound _ _ 8 spokesman _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 14 nsubj _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 make _ VERB VB _ 9 ccomp _ _ 15 earnings _ NOUN NNS _ 16 compound _ _ 16 projections _ NOUN NNS _ 14 dobj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sweig _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 estimated _ VERB VBD _ 3 ccomp _ _ 6 that _ SCONJ IN _ 13 mark _ _ 7 Lilly _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 earnings _ NOUN NNS _ 13 nsubj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 quarter _ NOUN NN _ 9 nmod _ _ 13 jumped _ VERB VBD _ 5 ccomp _ _ 14 about _ ADV IN _ 16 advmod _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 dobj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 largely _ ADV RB _ 22 advmod _ _ 19 because _ ADP IN _ 22 case _ _ 20 of _ ADP IN _ 19 mwe _ _ 21 the _ DET DT _ 22 det _ _ 22 performance _ NOUN NN _ 13 nmod _ _ 23 of _ ADP IN _ 27 case _ _ 24 its _ PRON PRP$ _ 27 nmod:poss _ _ 25 new _ ADJ JJ _ 27 amod _ _ 26 anti-depressant _ NOUN JJ _ 27 compound _ _ 27 Prozac _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 drug _ NOUN NN _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 introduced _ VERB VBN _ 2 acl _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 4 nmod:tmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 is _ AUX VBZ _ 9 auxpass _ _ 9 expected _ VERB VBN _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 generate _ VERB VB _ 9 xcomp _ _ 12 sales _ NOUN NNS _ 11 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 about _ ADV RB _ 15 advmod _ _ 15 $ _ SYM $ _ 12 nmod _ _ 16 300 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 11 nmod:tmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ AUX VBZ _ 4 aux _ _ 4 turning _ VERB VBG _ 15 ccomp _ _ 5 out _ ADP RP _ 4 compound:prt _ _ 6 to _ PART TO _ 10 mark _ _ 7 be _ VERB VB _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 real _ ADJ JJ _ 10 amod _ _ 10 blockbuster _ NOUN NN _ 4 xcomp _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 '' _ PUNCT '' _ 15 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Sweig _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 year _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 third _ ADJ JJ _ 6 amod _ _ 6 quarter _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 Lilly _ PROPN NNP _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 171.4 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 1.20 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Indianapolis _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Lilly _ PROPN NNP _ 5 nsubj _ _ 5 declined _ VERB VBD _ 0 root _ _ 6 comment _ NOUN NN _ 5 dobj _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 Several _ ADJ JJ _ 2 amod _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 expected _ VERB VBD _ 3 ccomp _ _ 6 Warner-Lambert _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 profit _ NOUN NN _ 5 dobj _ _ 9 also _ ADV RB _ 11 advmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 increase _ VERB VB _ 5 xcomp _ _ 12 by _ ADP IN _ 16 case _ _ 13 more _ ADJ JJR _ 15 advmod _ _ 14 than _ ADP IN _ 13 mwe _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 11 nmod _ _ 17 from _ ADP IN _ 18 case _ _ 18 $ _ SYM $ _ 11 nmod _ _ 19 87.7 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 or _ CONJ CC _ 18 cc _ _ 23 $ _ SYM $ _ 24 dep _ _ 24 1.25 _ NUM CD _ 18 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 24 nmod:npmod _ _ 27 , _ PUNCT , _ 18 punct _ _ 28 it _ PRON PRP _ 29 nsubj _ _ 29 reported _ VERB VBD _ 18 acl:relcl _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 like _ ADJ JJ _ 33 amod _ _ 33 period _ NOUN NN _ 29 nmod _ _ 34 last _ ADJ JJ _ 35 amod _ _ 35 year _ NOUN NN _ 33 nmod:tmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 praised _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 6 case _ _ 6 analysts _ NOUN NNS _ 4 nmod _ _ 7 for _ SCONJ IN _ 9 mark _ _ 8 sharply _ ADV RB _ 9 advmod _ _ 9 lowering _ VERB VBG _ 4 advcl _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 costs _ NOUN NNS _ 9 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 recent _ ADJ JJ _ 14 amod _ _ 14 years _ NOUN NNS _ 9 nmod _ _ 15 and _ CONJ CC _ 9 cc _ _ 16 shedding _ VERB VBG _ 9 conj _ _ 17 numerous _ ADJ JJ _ 18 amod _ _ 18 companies _ NOUN NNS _ 16 dobj _ _ 19 with _ ADP IN _ 22 case _ _ 20 low _ ADJ JJ _ 22 amod _ _ 21 profit _ NOUN NN _ 22 compound _ _ 22 margins _ NOUN NNS _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 lean _ ADJ JJ _ 5 amod _ _ 5 operation _ NOUN NN _ 10 nsubj _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 analysts _ NOUN NNS _ 8 nsubj _ _ 8 said _ VERB VBD _ 10 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 allowed _ VERB VBD _ 0 root _ _ 11 sharp-rising _ ADJ JJ _ 12 amod _ _ 12 sales _ NOUN NNS _ 10 dobj _ _ 13 from _ ADP IN _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 cholesterol _ NOUN NN _ 16 compound _ _ 16 drug _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Lopid _ PROPN NNP _ 16 appos _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 to _ PART TO _ 21 mark _ _ 21 power _ VERB NN _ 10 xcomp _ _ 22 earnings _ NOUN NNS _ 23 compound _ _ 23 growth _ NOUN NN _ 21 dobj _ _ 24 . _ PUNCT . _ 10 punct _ _ 1 Lopid _ PROPN NNP _ 2 compound _ _ 2 sales _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 8 mark _ _ 6 be _ VERB VB _ 8 cop _ _ 7 about _ ADV RB _ 8 advmod _ _ 8 $ _ SYM $ _ 4 xcomp _ _ 9 300 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 this _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 8 nmod:tmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 up _ ADV RB _ 8 advmod _ _ 15 from _ ADP IN _ 16 case _ _ 16 $ _ SYM $ _ 14 nmod _ _ 17 190 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 20 case _ _ 20 1988 _ NUM CD _ 16 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 Morris _ PROPN NNP _ 3 compound _ _ 3 Plains _ PROPN NNP _ 12 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 N.J. _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 a _ DET DT _ 8 det _ _ 8 spokesman _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 8 nmod _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 14 det _ _ 14 analysts _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 projections _ NOUN NNS _ 21 nsubj _ _ 17 are _ VERB VBP _ 21 cop _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 ballpark _ NOUN NN _ 12 ccomp _ _ 22 . _ PUNCT . _ 12 punct _ _ 23 '' _ PUNCT '' _ 12 punct _ _ 1 Squibb _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 profit _ NOUN NN _ 36 nsubj _ _ 4 , _ PUNCT , _ 36 punct _ _ 5 estimated _ VERB VBN _ 36 advcl _ _ 6 by _ ADP IN _ 7 case _ _ 7 analysts _ NOUN NNS _ 5 nmod _ _ 8 to _ PART TO _ 12 mark _ _ 9 be _ VERB VB _ 12 cop _ _ 10 about _ ADV RB _ 11 advmod _ _ 11 18 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 5 xcomp _ _ 13 above _ ADP IN _ 12 case _ _ 14 the _ DET DT _ 15 det _ _ 15 $ _ SYM $ _ 12 dep _ _ 16 123 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.25 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 it _ PRON PRP _ 26 nsubj _ _ 26 earned _ VERB VBD _ 15 acl:relcl _ _ 27 in _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 third _ ADJ JJ _ 30 amod _ _ 30 quarter _ NOUN NN _ 26 nmod _ _ 31 of _ ADP IN _ 32 case _ _ 32 1988 _ NUM CD _ 30 nmod _ _ 33 , _ PUNCT , _ 15 punct _ _ 34 was _ VERB VBD _ 36 cop _ _ 35 the _ DET DT _ 36 det _ _ 36 result _ NOUN NN _ 0 root _ _ 37 of _ ADP IN _ 40 case _ _ 38 especially _ ADV RB _ 39 advmod _ _ 39 strong _ ADJ JJ _ 40 amod _ _ 40 sales _ NOUN NNS _ 36 nmod _ _ 41 of _ ADP IN _ 44 case _ _ 42 its _ PRON PRP$ _ 44 nmod:poss _ _ 43 Capoten _ PROPN NNP _ 44 compound _ _ 44 drug _ NOUN NN _ 40 nmod _ _ 45 for _ SCONJ IN _ 46 mark _ _ 46 treating _ VERB VBG _ 44 acl _ _ 47 high _ ADJ JJ _ 49 amod _ _ 48 blood _ NOUN NN _ 49 compound _ _ 49 pressure _ NOUN NN _ 46 dobj _ _ 50 and _ CONJ CC _ 49 cc _ _ 51 other _ ADJ JJ _ 53 amod _ _ 52 heart _ NOUN NN _ 53 compound _ _ 53 disease _ NOUN NN _ 49 conj _ _ 54 . _ PUNCT . _ 36 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nsubjpass _ _ 3 was _ AUX VBD _ 5 auxpass _ _ 4 officially _ ADV RB _ 5 advmod _ _ 5 merged _ VERB VBN _ 0 root _ _ 6 with _ ADP IN _ 8 case _ _ 7 Bristol-Myers _ PROPN NNP _ 8 compound _ _ 8 Co. _ PROPN NNP _ 5 nmod _ _ 9 earlier _ ADV RBR _ 11 advmod _ _ 10 this _ DET DT _ 11 det _ _ 11 month _ NOUN NN _ 5 nmod:tmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Bristol-Myers _ PROPN NNP _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 comment _ VERB VB _ 2 xcomp _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Riccardo _ PROPN NNP _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Bear _ PROPN NNP _ 5 compound _ _ 5 Stearns _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 that _ SCONJ IN _ 32 mark _ _ 8 Schering-Plough _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 expected _ ADJ JJ _ 13 amod _ _ 12 profit _ NOUN NN _ 13 compound _ _ 13 rise _ NOUN NN _ 32 nsubj _ _ 14 of _ ADP IN _ 20 case _ _ 15 about _ ADV IN _ 20 advmod _ _ 16 18 _ NUM CD _ 20 compound _ _ 17 % _ SYM NN _ 20 dep _ _ 18 to _ ADP TO _ 20 dep _ _ 19 20 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 13 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 Bristol-Meyers _ PROPN NNP _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 expected _ ADJ JJ _ 27 amod _ _ 26 profit _ NOUN NN _ 27 compound _ _ 27 increase _ NOUN NN _ 13 conj _ _ 28 of _ ADP IN _ 31 case _ _ 29 about _ ADV IN _ 30 advmod _ _ 30 13 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 27 nmod _ _ 32 are _ VERB VBP _ 6 ccomp _ _ 33 largely _ ADV RB _ 40 advmod _ _ 34 because _ SCONJ IN _ 40 mark _ _ 35 `` _ PUNCT `` _ 40 punct _ _ 36 those _ DET DT _ 37 det _ _ 37 companies _ NOUN NNS _ 40 nsubjpass _ _ 38 are _ AUX VBP _ 40 auxpass _ _ 39 really _ ADV RB _ 40 advmod _ _ 40 managed _ VERB VBN _ 32 advcl _ _ 41 well _ ADV RB _ 40 advmod _ _ 42 . _ PUNCT . _ 6 punct _ _ 43 '' _ PUNCT '' _ 6 punct _ _ 1 ScheringPlough _ NOUN NNP _ 2 nsubj _ _ 2 earned _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 94.4 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 or _ CONJ CC _ 3 cc _ _ 8 84 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 3 conj _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 while _ SCONJ IN _ 15 mark _ _ 14 Bristol-Myers _ PROPN NNP _ 15 nsubj _ _ 15 earned _ VERB VBD _ 2 advcl _ _ 16 $ _ SYM $ _ 15 dobj _ _ 17 232.3 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 or _ CONJ CC _ 16 cc _ _ 21 81 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 16 conj _ _ 23 a _ DET DT _ 24 det _ _ 24 share _ NOUN NN _ 22 nmod:npmod _ _ 25 , _ PUNCT , _ 15 punct _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 like _ ADJ JJ _ 29 amod _ _ 29 period _ NOUN NN _ 15 nmod _ _ 30 a _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 32 nmod:npmod _ _ 32 earlier _ ADV RBR _ 29 advmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Madison _ PROPN NNP _ 10 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.J. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 a _ DET DT _ 7 det _ _ 7 spokesman _ NOUN NN _ 10 nsubj _ _ 8 for _ ADP IN _ 9 case _ _ 9 Schering-Plough _ PROPN NNP _ 7 nmod _ _ 10 said _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 13 nsubj _ _ 13 has _ VERB VBZ _ 10 ccomp _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 no _ DET DT _ 16 neg _ _ 16 problems _ NOUN NNS _ 13 dobj _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 with _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 average _ ADJ JJ _ 21 amod _ _ 21 estimate _ NOUN NN _ 16 nmod _ _ 22 by _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 analysts _ NOUN NNS _ 21 nmod _ _ 25 that _ SCONJ WDT _ 30 mark _ _ 26 third-quarter _ ADJ JJ _ 27 amod _ _ 27 earnings _ NOUN NNS _ 30 nsubj _ _ 28 per _ ADP IN _ 29 case _ _ 29 share _ NOUN NN _ 27 nmod _ _ 30 rose _ VERB VBD _ 21 dep _ _ 31 by _ ADP IN _ 34 case _ _ 32 about _ ADV RB _ 33 advmod _ _ 33 19 _ NUM CD _ 34 nummod _ _ 34 % _ SYM NN _ 30 nmod _ _ 35 , _ PUNCT , _ 30 punct _ _ 36 to _ ADP TO _ 38 case _ _ 37 $ _ SYM $ _ 38 dep _ _ 38 1 _ NUM CD _ 30 nmod _ _ 39 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 25 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 achieve _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 9 det _ _ 7 20 _ NUM CD _ 8 compound _ _ 8 % _ SYM NN _ 9 amod _ _ 9 increase _ NOUN NN _ 5 dobj _ _ 10 in _ ADP IN _ 12 case _ _ 11 full-year _ ADJ JJ _ 12 amod _ _ 12 earnings _ NOUN NNS _ 9 nmod _ _ 13 per _ ADP IN _ 14 case _ _ 14 share _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 projected _ VERB VBD _ 5 advcl _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 spring _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 spokesman _ NOUN NN _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Meanwhile _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Pfizer _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 recent _ ADJ JJ _ 8 amod _ _ 8 string _ NOUN NN _ 13 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 lackluster _ ADJ JJ _ 12 amod _ _ 11 quarterly _ ADJ JJ _ 12 amod _ _ 12 performances _ NOUN NNS _ 8 nmod _ _ 13 continued _ VERB VBD _ 4 ccomp _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 as _ SCONJ IN _ 21 mark _ _ 16 earnings _ NOUN NNS _ 21 nsubjpass _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 quarter _ NOUN NN _ 16 nmod _ _ 20 were _ AUX VBD _ 21 auxpass _ _ 21 expected _ VERB VBN _ 13 advcl _ _ 22 to _ PART TO _ 23 mark _ _ 23 decline _ VERB VB _ 21 xcomp _ _ 24 by _ ADP IN _ 27 case _ _ 25 about _ ADV IN _ 26 advmod _ _ 26 5 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 23 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Sales _ PROPN NNS _ 21 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 Pfizer _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 important _ ADJ JJ _ 6 amod _ _ 6 drugs _ NOUN NNS _ 1 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Feldene _ PROPN NNP _ 6 appos _ _ 9 for _ SCONJ IN _ 10 mark _ _ 10 treating _ VERB VBG _ 8 acl _ _ 11 arthritis _ NOUN NN _ 10 dobj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 Procardia _ PROPN NNP _ 8 conj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 18 det _ _ 17 heart _ NOUN NN _ 18 compound _ _ 18 medicine _ NOUN NN _ 14 appos _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 have _ AUX VBP _ 21 aux _ _ 21 shrunk _ VERB VBN _ 0 root _ _ 22 because _ ADV IN _ 25 case _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 increased _ ADJ VBN _ 25 amod _ _ 25 competition _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 The _ DET DT _ 6 det _ _ 3 -LRB- _ PUNCT -LRB- _ 4 punct _ _ 4 strong _ ADJ JJ _ 6 dep _ _ 5 -RRB- _ PUNCT -RRB- _ 4 punct _ _ 6 dollar _ NOUN NN _ 7 nsubj _ _ 7 hurt _ VERB VBD _ 17 ccomp _ _ 8 Pfizer _ PROPN NNP _ 7 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 lot _ NOUN NN _ 7 nmod:npmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 too _ ADV RB _ 7 advmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 '' _ PUNCT '' _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Sweig _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 9 nmod _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 9 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 Pfizer _ PROPN NNP _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 216.8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 1.29 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 New _ PROPN NNP _ 3 compound _ _ 3 York _ PROPN NNP _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 declined _ VERB VBD _ 0 root _ _ 8 comment _ NOUN NN _ 7 dobj _ _ 9 . _ PUNCT . _ 7 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 expected _ VERB VBD _ 2 ccomp _ _ 5 Upjohn _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 profit _ NOUN NN _ 4 dobj _ _ 8 to _ PART TO _ 10 mark _ _ 9 be _ VERB VB _ 10 cop _ _ 10 flat _ ADJ JJ _ 4 xcomp _ _ 11 or _ CONJ CC _ 10 cc _ _ 12 rise _ VERB NN _ 10 conj _ _ 13 by _ ADP IN _ 20 case _ _ 14 only _ ADV RB _ 20 advmod _ _ 15 about _ ADV RB _ 20 advmod _ _ 16 2 _ NUM CD _ 20 compound _ _ 17 % _ SYM NN _ 20 dep _ _ 18 to _ ADP TO _ 20 dep _ _ 19 4 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 12 nmod _ _ 21 as _ SCONJ IN _ 22 mark _ _ 22 compared _ VERB VBN _ 20 dep _ _ 23 with _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 89.6 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 49 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 24 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 , _ PUNCT , _ 24 punct _ _ 34 it _ PRON PRP _ 35 nsubj _ _ 35 earned _ VERB VBD _ 24 acl:relcl _ _ 36 a _ DET DT _ 37 det _ _ 37 year _ NOUN NN _ 38 nmod:npmod _ _ 38 ago _ ADV RB _ 35 advmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Upjohn _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 biggest-selling _ ADJ JJ _ 4 amod _ _ 4 drugs _ NOUN NNS _ 6 nsubj _ _ 5 are _ VERB VBP _ 6 cop _ _ 6 Xanax _ PROPN NNP _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 tranquilizer _ NOUN NN _ 6 appos _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 Halcion _ PROPN NNP _ 6 conj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 sedative _ NOUN NN _ 12 appos _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Sales _ NOUN NNS _ 7 nsubjpass _ _ 2 of _ ADP IN _ 4 case _ _ 3 both _ DET DT _ 4 det _ _ 4 drugs _ NOUN NNS _ 1 nmod _ _ 5 have _ AUX VBP _ 7 aux _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 hurt _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 11 case _ _ 9 new _ ADJ JJ _ 11 amod _ _ 10 state _ NOUN NN _ 11 compound _ _ 11 laws _ NOUN NNS _ 7 nmod _ _ 12 restricting _ VERB VBG _ 11 acl _ _ 13 the _ DET DT _ 14 det _ _ 14 prescriptions _ NOUN NNS _ 12 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 certain _ ADJ JJ _ 18 amod _ _ 17 tranquilizing _ ADJ JJ _ 18 amod _ _ 18 medicines _ NOUN NNS _ 14 nmod _ _ 19 and _ CONJ CC _ 11 cc _ _ 20 adverse _ ADJ JJ _ 21 amod _ _ 21 publicity _ NOUN NN _ 11 conj _ _ 22 about _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 excessive _ ADJ JJ _ 25 amod _ _ 25 use _ NOUN NN _ 21 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 drugs _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Also _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 hair-growing _ ADJ JJ _ 7 amod _ _ 7 drug _ NOUN NN _ 12 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Rogaine _ PROPN NNP _ 7 appos _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 selling _ VERB VBG _ 47 ccomp _ _ 13 well _ ADV RB _ 12 advmod _ _ 14 -- _ PUNCT : _ 12 punct _ _ 15 at _ ADP IN _ 17 case _ _ 16 about _ ADV IN _ 17 advmod _ _ 17 $ _ SYM $ _ 12 nmod _ _ 18 125 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 for _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 year _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 but _ CONJ CC _ 12 cc _ _ 25 the _ DET DT _ 26 det _ _ 26 company _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 profit _ NOUN NN _ 34 nsubjpass _ _ 29 from _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 drug _ NOUN NN _ 28 nmod _ _ 32 has _ AUX VBZ _ 34 aux _ _ 33 been _ AUX VBN _ 34 auxpass _ _ 34 reduced _ VERB VBN _ 12 conj _ _ 35 by _ ADP IN _ 39 case _ _ 36 Upjohn _ PROPN NNP _ 39 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 expensive _ ADJ JJ _ 39 amod _ _ 39 print _ NOUN NN _ 34 nmod _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 television _ NOUN NN _ 42 compound _ _ 42 campaigns _ NOUN NNS _ 39 conj _ _ 43 for _ ADP IN _ 44 case _ _ 44 advertising _ VERB NN _ 39 nmod _ _ 45 , _ PUNCT , _ 47 punct _ _ 46 analysts _ NOUN NNS _ 47 nsubj _ _ 47 said _ VERB VBD _ 0 root _ _ 48 . _ PUNCT . _ 47 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Kalamazoo _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Mich. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Upjohn _ PROPN NNP _ 7 nsubj _ _ 7 declined _ VERB VBD _ 0 root _ _ 8 comment _ NOUN NN _ 7 dobj _ _ 9 . _ PUNCT . _ 7 punct _ _ 1 Amid _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 crowd _ NOUN NN _ 13 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 crashing _ VERB VBG _ 6 amod _ _ 6 stocks _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 Relational _ PROPN NNP _ 10 compound _ _ 9 Technology _ PROPN NNP _ 10 compound _ _ 10 Inc. _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 stock _ NOUN NN _ 13 nsubj _ _ 13 fell _ VERB VBD _ 0 root _ _ 14 particularly _ ADV RB _ 15 advmod _ _ 15 hard _ ADV JJ _ 13 advmod _ _ 16 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 dropping _ VERB VBG _ 13 advcl _ _ 19 23 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 because _ SCONJ IN _ 25 mark _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 problems _ NOUN NNS _ 25 nsubjpass _ _ 24 were _ AUX VBD _ 25 auxpass _ _ 25 compounded _ VERB VBN _ 18 advcl _ _ 26 by _ ADP IN _ 27 case _ _ 27 disclosure _ NOUN NN _ 25 nmod _ _ 28 of _ ADP IN _ 31 case _ _ 29 an _ DET DT _ 31 det _ _ 30 unexpected _ ADJ JJ _ 31 amod _ _ 31 loss _ NOUN NN _ 27 nmod _ _ 32 for _ ADP IN _ 36 case _ _ 33 its _ PRON PRP$ _ 36 nmod:poss _ _ 34 fiscal _ ADJ JJ _ 36 amod _ _ 35 first _ ADJ JJ _ 36 amod _ _ 36 quarter _ NOUN NN _ 31 nmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 database _ NOUN NN _ 4 compound _ _ 3 software _ NOUN NN _ 4 compound _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 5 ccomp _ _ 8 a _ DET DT _ 13 det _ _ 9 $ _ SYM $ _ 13 amod _ _ 10 2 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 7 dobj _ _ 14 for _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 fiscal _ ADJ JJ _ 18 amod _ _ 17 first _ ADJ JJ _ 18 amod _ _ 18 quarter _ NOUN NN _ 13 nmod _ _ 19 ended _ VERB VBN _ 18 acl _ _ 20 Sept. _ PROPN NNP _ 19 nmod:tmod _ _ 21 30 _ NUM CD _ 20 nummod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 analysts _ NOUN NNS _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 aux _ _ 6 expecting _ VERB VBG _ 2 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 small _ ADJ JJ _ 9 amod _ _ 9 profit _ NOUN NN _ 6 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 period _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Revenue _ NOUN NN _ 3 nsubjpass _ _ 2 is _ AUX VBZ _ 3 auxpass _ _ 3 expected _ VERB VBN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 be _ VERB VB _ 3 xcomp _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 up _ ADV RP _ 8 advmod _ _ 8 modestly _ ADV RB _ 5 advmod _ _ 9 '' _ PUNCT '' _ 8 punct _ _ 10 from _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 $ _ SYM $ _ 8 nmod _ _ 13 26.5 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 reported _ VERB VBD _ 12 acl _ _ 16 a _ DET DT _ 17 det _ _ 17 year _ NOUN NN _ 18 nmod:npmod _ _ 18 ago _ ADV RB _ 15 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Relational _ PROPN NNP _ 2 compound _ _ 2 Technology _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 net _ ADJ JJ _ 5 amod _ _ 5 income _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 1.5 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 or _ CONJ CC _ 7 cc _ _ 12 12 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 7 conj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 year-earlier _ ADJ JJ _ 20 amod _ _ 20 period _ NOUN NN _ 5 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 While _ SCONJ IN _ 6 mark _ _ 3 our _ PRON PRP$ _ 5 nmod:poss _ _ 4 international _ ADJ JJ _ 5 amod _ _ 5 operations _ NOUN NNS _ 6 nsubj _ _ 6 showed _ VERB VBD _ 16 advcl _ _ 7 strong _ ADJ JJ _ 8 amod _ _ 8 growth _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 16 punct _ _ 10 our _ PRON PRP$ _ 12 nmod:poss _ _ 11 domestic _ ADJ JJ _ 12 amod _ _ 12 business _ NOUN NN _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 substantially _ ADV RB _ 16 advmod _ _ 15 below _ ADP IN _ 16 case _ _ 16 expectations _ NOUN NNS _ 19 ccomp _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Paul _ PROPN NNP _ 21 compound _ _ 21 Newton _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 president _ NOUN NN _ 21 appos _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 chief _ ADJ JJ _ 27 amod _ _ 26 executive _ ADJ JJ _ 27 amod _ _ 27 officer _ NOUN NN _ 23 conj _ _ 28 . _ PUNCT . _ 19 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 quarter _ NOUN NN _ 11 nsubj _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 historically _ ADV RB _ 11 advmod _ _ 11 soft _ ADJ JJ _ 3 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 and _ CONJ CC _ 11 cc _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 companies _ NOUN NNS _ 19 nsubj _ _ 16 in _ ADP IN _ 17 case _ _ 17 general _ ADJ JJ _ 15 acl _ _ 18 are _ AUX VBP _ 19 aux _ _ 19 experiencing _ VERB VBG _ 11 conj _ _ 20 slower _ ADJ JJR _ 21 amod _ _ 21 sales _ NOUN NNS _ 19 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Newton _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 accepted _ VERB VBD _ 3 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 resignation _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 Thomas _ PROPN NNP _ 10 compound _ _ 10 Wilson _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 vice _ NOUN NN _ 13 compound _ _ 13 president _ NOUN NN _ 10 appos _ _ 14 of _ ADP IN _ 16 case _ _ 15 corporate _ ADJ JJ _ 16 amod _ _ 16 sales _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 that _ SCONJ IN _ 25 mark _ _ 20 his _ PRON PRP$ _ 22 nmod:poss _ _ 21 marketing _ NOUN NN _ 22 compound _ _ 22 responsibilities _ NOUN NNS _ 25 nsubjpass _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 reassigned _ VERB VBN _ 5 conj _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Wilson _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 resignation _ NOUN NN _ 10 nsubjpass _ _ 8 was _ VERB VBD _ 10 auxpass _ _ 9 n't _ PART RB _ 10 neg _ _ 10 related _ VERB VBN _ 3 ccomp _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 sales _ NOUN NNS _ 14 compound _ _ 14 shortfall _ NOUN NN _ 10 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Relational _ PROPN NNP _ 2 compound _ _ 2 Technology _ PROPN NNP _ 3 nsubj _ _ 3 went _ VERB VBD _ 0 root _ _ 4 public _ NOUN JJ _ 3 dobj _ _ 5 in _ ADP IN _ 6 case _ _ 6 May _ PROPN NNP _ 3 nmod _ _ 7 1988 _ NUM CD _ 6 nummod _ _ 8 at _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 14 _ NUM CD _ 3 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 4 dep _ _ 4 1.875 _ NUM CD _ 2 dobj _ _ 5 a _ DET DT _ 6 det _ _ 6 share _ NOUN NN _ 4 nmod:npmod _ _ 7 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 6.25 _ NUM CD _ 2 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 a _ DET DT _ 15 det _ _ 14 new _ ADJ JJ _ 15 amod _ _ 15 low _ ADJ JJ _ 11 appos _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 in _ ADP IN _ 19 case _ _ 18 over-the-counter _ ADJ JJ _ 19 amod _ _ 19 trading _ NOUN NN _ 2 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 high _ NOUN JJ _ 9 nsubj _ _ 3 for _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 past _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 2 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 16.375 _ NUM CD _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 previous _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 8 nsubj _ _ 8 earned _ VERB VBD _ 0 root _ _ 9 $ _ SYM $ _ 8 dobj _ _ 10 4.5 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 37 _ NUM CD _ 15 nummod _ _ 15 cents _ NOUN NNS _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 sales _ NOUN NNS _ 8 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 47.2 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Bronx _ PROPN NNP _ 3 nsubj _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 wonderful _ ADJ JJ _ 7 amod _ _ 6 botanical _ ADJ JJ _ 7 amod _ _ 7 garden _ NOUN NN _ 3 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 great _ ADJ JJ _ 11 amod _ _ 11 zoo _ NOUN NN _ 7 conj _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 its _ PRON PRP$ _ 17 nmod:poss _ _ 14 own _ ADJ JJ _ 17 amod _ _ 15 charming _ ADJ JJ _ 17 amod _ _ 16 Little _ PROPN JJ _ 17 compound _ _ 17 Italy _ PROPN NNP _ 7 conj _ _ 18 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 19 on _ ADP IN _ 21 case _ _ 20 Arthur _ PROPN NNP _ 21 compound _ _ 21 Avenue _ PROPN NNP _ 17 nmod _ _ 22 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 23 and _ CONJ CC _ 7 cc _ _ 24 , _ PUNCT , _ 7 punct _ _ 25 of _ ADP IN _ 26 case _ _ 26 course _ NOUN NN _ 7 conj _ _ 27 , _ PUNCT , _ 7 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 Yankees _ PROPN NNPS _ 7 conj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 However _ ADV RB _ 18 advmod _ _ 2 , _ PUNCT , _ 18 punct _ _ 3 most _ ADJ JJS _ 4 amod _ _ 4 people _ NOUN NNS _ 18 nsubj _ _ 5 , _ PUNCT , _ 18 punct _ _ 6 having _ AUX VBG _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 subjected _ VERB VBN _ 18 advcl _ _ 9 to _ ADP TO _ 11 case _ _ 10 news _ NOUN NN _ 11 compound _ _ 11 footage _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 devastated _ ADJ VBN _ 16 amod _ _ 15 South _ PROPN NNP _ 16 compound _ _ 16 Bronx _ PROPN NNP _ 11 nmod _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 look _ VERB NN _ 0 root _ _ 19 at _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 borough _ NOUN NN _ 18 nmod _ _ 22 the _ DET DT _ 23 det _ _ 23 way _ NOUN NN _ 18 dobj _ _ 24 Tom _ PROPN NNP _ 25 compound _ _ 25 Wolfe _ PROPN NNP _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 Sherman _ PROPN NNP _ 28 compound _ _ 28 McCoy _ PROPN NNP _ 32 nsubj _ _ 29 did _ AUX VBD _ 32 aux _ _ 30 in _ ADP IN _ 32 case _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 Bonfire _ NOUN NNP _ 23 acl:relcl _ _ 33 of _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 Vanities _ NOUN NNP _ 32 nmod _ _ 36 '' _ PUNCT '' _ 32 punct _ _ 37 -- _ PUNCT : _ 18 punct _ _ 38 as _ ADP IN _ 41 case _ _ 39 a _ DET DT _ 41 det _ _ 40 wrong _ ADJ JJ _ 41 amod _ _ 41 turn _ NOUN NN _ 18 nmod _ _ 42 into _ ADP IN _ 43 case _ _ 43 hell _ NOUN NN _ 41 nmod _ _ 44 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 Laura _ PROPN NNP _ 3 compound _ _ 3 Cunningham _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Bronx _ PROPN NNP _ 15 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 her _ PRON PRP$ _ 9 nmod:poss _ _ 8 childhood _ NOUN NN _ 9 compound _ _ 9 Bronx _ PROPN NNP _ 5 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 '50s _ NOUN CD _ 9 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 something _ NOUN NN _ 0 root _ _ 16 else _ ADV RB _ 15 advmod _ _ 17 altogether _ ADV RB _ 15 advmod _ _ 18 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 a _ DET DT _ 6 det _ _ 3 lovely _ ADJ JJ _ 6 amod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 novelistic _ ADJ JJ _ 6 amod _ _ 6 memoir _ NOUN NN _ 23 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 Sleeping _ NOUN VBG _ 10 compound _ _ 10 Arrangements _ NOUN NNS _ 6 appos _ _ 11 '' _ PUNCT '' _ 10 punct _ _ 12 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 13 Knopf _ PROPN NNP _ 10 appos _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 195 _ NUM CD _ 16 nummod _ _ 16 pages _ NOUN NNS _ 13 dep _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 18.95 _ NUM CD _ 13 dep _ _ 20 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 she _ PRON PRP _ 23 nsubj _ _ 23 remembers _ VERB VBZ _ 0 root _ _ 24 an _ DET DT _ 26 det _ _ 25 exotic _ ADJ JJ _ 26 amod _ _ 26 playground _ NOUN NN _ 23 dobj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 peopled _ VERB VBN _ 26 acl _ _ 29 mainly _ ADV RB _ 32 advmod _ _ 30 by _ ADP IN _ 32 case _ _ 31 Jewish _ ADJ JJ _ 32 amod _ _ 32 eccentrics _ NOUN NNS _ 28 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 the _ DET DT _ 36 det _ _ 35 occasional _ ADJ JJ _ 36 amod _ _ 36 Catholic _ PROPN NNP _ 32 conj _ _ 37 -LRB- _ PUNCT -LRB- _ 39 punct _ _ 38 real _ ADJ JJ _ 39 amod _ _ 39 oddballs _ NOUN NNS _ 36 dep _ _ 40 like _ ADP IN _ 43 case _ _ 41 her _ PRON PRP$ _ 43 nmod:poss _ _ 42 sexpot _ NOUN NN _ 43 compound _ _ 43 friend _ NOUN NN _ 39 nmod _ _ 44 , _ PUNCT , _ 43 punct _ _ 45 the _ DET DT _ 47 det _ _ 46 hell-kitten _ NOUN JJ _ 47 compound _ _ 47 Diana _ PROPN NNP _ 43 appos _ _ 48 , _ PUNCT , _ 43 punct _ _ 49 age _ NOUN NN _ 43 appos _ _ 50 five _ NUM CD _ 49 nummod _ _ 51 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 52 . _ PUNCT . _ 23 punct _ _ 1 Ms. _ PROPN NNP _ 2 compound _ _ 2 Cunningham _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 novelist _ NOUN NN _ 2 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 playwright _ NOUN NN _ 5 conj _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 has _ VERB VBZ _ 0 root _ _ 10 a _ DET DT _ 15 det _ _ 11 vivid _ ADJ JJ _ 15 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 dramatically _ ADV RB _ 14 advmod _ _ 14 outsized _ ADJ JJ _ 11 conj _ _ 15 sense _ NOUN NN _ 9 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 recall _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 transforms _ VERB VBZ _ 0 root _ _ 3 her _ PRON PRP$ _ 5 dep _ _ 4 `` _ PUNCT `` _ 5 punct _ _ 5 Bronx _ PROPN NNP _ 2 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 emotions _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 a _ DET DT _ 11 det _ _ 11 place _ NOUN NN _ 5 appos _ _ 12 where _ ADV WRB _ 19 advmod _ _ 13 the _ DET DT _ 14 det _ _ 14 flats _ NOUN NNS _ 19 nsubjpass _ _ 15 of _ ADP IN _ 16 case _ _ 16 mediocrity _ NOUN NN _ 14 nmod _ _ 17 are _ AUX VBP _ 19 auxpass _ _ 18 only _ ADV RB _ 19 advmod _ _ 19 relieved _ VERB VBN _ 11 acl:relcl _ _ 20 by _ ADP IN _ 22 case _ _ 21 steep _ ADJ JJ _ 22 amod _ _ 22 descents _ NOUN NNS _ 19 nmod _ _ 23 into _ ADP IN _ 24 case _ _ 24 hysteria _ NOUN NN _ 22 nmod _ _ 25 '' _ PUNCT '' _ 5 punct _ _ 26 into _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 `` _ PUNCT `` _ 30 punct _ _ 29 Babylonian _ PROPN JJ _ 30 compound _ _ 30 Bronx _ PROPN NNP _ 2 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 '' _ PUNCT '' _ 30 punct _ _ 33 a _ DET DT _ 34 det _ _ 34 world _ NOUN NN _ 30 dep _ _ 35 simmering _ VERB VBG _ 34 acl _ _ 36 with _ ADP IN _ 37 case _ _ 37 sex _ NOUN NN _ 35 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 death _ NOUN NN _ 37 conj _ _ 40 and _ CONJ CC _ 37 cc _ _ 41 intrigue _ NOUN NN _ 37 conj _ _ 42 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 Babylonian _ PROPN NNP _ 4 compound _ _ 4 Bronx _ PROPN NNP _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Jewish _ ADJ JJ _ 8 amod _ _ 7 working-class _ ADJ JJ _ 8 amod _ _ 8 people _ NOUN NNS _ 9 nsubj _ _ 9 lived _ VERB VBD _ 0 root _ _ 10 in _ ADP IN _ 14 case _ _ 11 drab _ ADJ JJ _ 14 amod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 Soviet-style _ ADJ JJ _ 14 amod _ _ 14 buildings _ NOUN NNS _ 9 nmod _ _ 15 `` _ PUNCT `` _ 16 punct _ _ 16 glamorized _ VERB VBN _ 14 acl _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 with _ ADP IN _ 19 case _ _ 19 names _ NOUN NNS _ 16 nmod _ _ 20 like _ ADP IN _ 22 case _ _ 21 AnaMor _ PROPN NNP _ 22 compound _ _ 22 Towers _ PROPN NNP _ 19 nmod _ _ 23 -LRB- _ PUNCT -LRB- _ 26 punct _ _ 24 after _ ADP IN _ 26 case _ _ 25 owners _ NOUN NNS _ 26 compound _ _ 26 Anna _ PROPN NNP _ 22 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 Morris _ PROPN NNP _ 29 compound _ _ 29 Snezak _ PROPN NNP _ 26 conj _ _ 30 -RRB- _ PUNCT -RRB- _ 26 punct _ _ 31 , _ PUNCT , _ 14 punct _ _ 32 whose _ PRON WP$ _ 33 nmod:poss _ _ 33 lobbies _ NOUN NNS _ 37 nsubjpass _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 hallways _ NOUN NNS _ 33 conj _ _ 36 were _ AUX VBD _ 37 auxpass _ _ 37 decorated _ VERB VBN _ 14 acl:relcl _ _ 38 with _ ADP IN _ 39 case _ _ 39 murals _ NOUN NNS _ 37 nmod _ _ 40 of _ ADP IN _ 42 case _ _ 41 ancient _ ADJ JJ _ 42 amod _ _ 42 Syrians _ PROPN NNPS _ 39 nmod _ _ 43 and _ CONJ CC _ 42 cc _ _ 44 Greeks _ PROPN NNPS _ 42 conj _ _ 45 , _ PUNCT , _ 39 punct _ _ 46 friezes _ NOUN NNS _ 39 appos _ _ 47 of _ ADP IN _ 48 case _ _ 48 Pompeii _ PROPN NNP _ 46 nmod _ _ 49 . _ PUNCT . _ 9 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 Ms. _ PROPN NNP _ 3 compound _ _ 3 Cunningham _ PROPN NNP _ 7 nmod _ _ 4 the _ DET DT _ 6 det _ _ 5 architectural _ ADJ JJ _ 6 amod _ _ 6 discombobulation _ NOUN NN _ 7 nsubj _ _ 7 matched _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 discrepancy _ NOUN NN _ 7 dobj _ _ 10 she _ PRON PRP _ 11 nsubj _ _ 11 felt _ VERB VBD _ 9 acl:relcl _ _ 12 living _ VERB VBG _ 11 xcomp _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 AnaMor _ PROPN NNP _ 16 compound _ _ 16 Towers _ PROPN NNP _ 12 nmod _ _ 17 as _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 little _ ADJ JJ _ 20 amod _ _ 20 girl _ NOUN NN _ 12 nmod _ _ 21 : _ PUNCT : _ 9 punct _ _ 22 `` _ PUNCT `` _ 9 punct _ _ 23 ... _ PUNCT : _ 9 punct _ _ 24 outwardly _ ADV RB _ 25 advmod _ _ 25 ordinary _ ADJ JJ _ 9 amod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 inwardly _ ADV RB _ 28 advmod _ _ 28 ornate _ ADJ JJ _ 25 dep _ _ 29 , _ PUNCT , _ 25 punct _ _ 30 owing _ VERB VBG _ 9 acl _ _ 31 all _ DET DT _ 32 det _ _ 32 inspiration _ NOUN NN _ 30 dobj _ _ 33 to _ ADP TO _ 35 case _ _ 34 heathen _ ADJ VB _ 35 amod _ _ 35 cultures _ NOUN NNS _ 30 nmod _ _ 36 . _ PUNCT . _ 7 punct _ _ 37 '' _ PUNCT '' _ 7 punct _ _ 1 Sharp-witted _ ADJ JJ _ 6 dep _ _ 2 and _ CONJ CC _ 6 cc _ _ 3 funny _ ADJ JJ _ 6 conj _ _ 4 but _ CONJ CC _ 6 cc _ _ 5 never _ ADV RB _ 6 conj _ _ 6 mean _ ADJ VB _ 11 ccomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 she _ PRON PRP _ 11 nsubj _ _ 9 's _ VERB VBZ _ 11 cop _ _ 10 a _ DET DT _ 11 det _ _ 11 memorialist _ NOUN NN _ 0 root _ _ 12 a _ DET DT _ 13 det _ _ 13 bit _ NOUN NN _ 11 nmod _ _ 14 like _ ADP IN _ 13 case _ _ 15 Truman _ PROPN NNP _ 16 compound _ _ 16 Capote _ PROPN NNP _ 13 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 if _ SCONJ IN _ 22 mark _ _ 19 he _ PRON PRP _ 22 nsubj _ _ 20 'd _ AUX MD _ 22 aux _ _ 21 been _ VERB VBN _ 22 cop _ _ 22 Jewish _ ADJ JJ _ 16 acl:relcl _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 female _ ADJ JJ _ 22 conj _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 less _ ADV RBR _ 27 advmod _ _ 27 bitchy _ ADJ JJ _ 22 conj _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 Little _ PROPN JJ _ 2 compound _ _ 2 Lily _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 Ms. _ PROPN NNP _ 6 compound _ _ 6 Cunningham _ PROPN NNP _ 7 nsubj _ _ 7 calls _ VERB VBZ _ 2 acl:relcl _ _ 8 herself _ PRON PRP _ 7 xcomp _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 book _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 really _ ADV RB _ 16 advmod _ _ 14 was _ VERB VBD _ 16 cop _ _ 15 n't _ PART RB _ 16 neg _ _ 16 ordinary _ ADJ JJ _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 She _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 raised _ VERB VBN _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 for _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 first _ ADJ JJ _ 9 amod _ _ 8 eight _ NUM CD _ 9 nummod _ _ 9 years _ NOUN NNS _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 by _ ADP IN _ 13 case _ _ 12 her _ PRON PRP$ _ 13 nmod:poss _ _ 13 mother _ NOUN NN _ 3 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Rosie _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 whom _ PRON WP _ 19 dobj _ _ 18 she _ PRON PRP _ 19 nsubj _ _ 19 remembers _ VERB VBZ _ 13 acl:relcl _ _ 20 as _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 loving _ ADJ JJ _ 23 amod _ _ 23 liar _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 who _ PRON WP _ 26 nsubj _ _ 26 realigned _ VERB VBD _ 23 acl:relcl _ _ 27 history _ NOUN NN _ 26 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 explain _ VERB VB _ 26 advcl _ _ 30 why _ ADV WRB _ 36 advmod _ _ 31 Lily _ PROPN NNP _ 33 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 father _ NOUN NN _ 36 nsubj _ _ 34 did _ AUX VBD _ 36 aux _ _ 35 n't _ PART RB _ 36 neg _ _ 36 live _ VERB VB _ 29 advcl _ _ 37 with _ ADP IN _ 38 case _ _ 38 them _ PRON PRP _ 36 nmod _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Rosie _ PROPN NNP _ 2 nsubj _ _ 2 reinvented _ VERB VBD _ 0 root _ _ 3 this _ DET DT _ 4 det _ _ 4 man _ NOUN NN _ 2 dobj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 who _ PRON WP _ 7 nsubj _ _ 7 may _ AUX MD _ 4 acl:relcl _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 may _ AUX MD _ 7 conj _ _ 10 not _ PART RB _ 9 neg _ _ 11 have _ AUX VB _ 12 aux _ _ 12 known _ VERB VBN _ 7 dep _ _ 13 about _ ADP IN _ 15 case _ _ 14 his _ PRON PRP$ _ 15 nmod:poss _ _ 15 child _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 as _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 war _ NOUN NN _ 20 compound _ _ 20 hero _ NOUN NN _ 2 nmod _ _ 21 for _ ADP IN _ 24 case _ _ 22 Lily _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 benefit _ NOUN NN _ 2 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Rosie _ NOUN NNP _ 2 nsubj _ _ 2 died _ VERB VBD _ 0 root _ _ 3 young _ ADJ JJ _ 2 xcomp _ _ 4 and _ CONJ CC _ 2 cc _ _ 5 Lily _ PROPN NNP _ 7 nsubj _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 remembered _ VERB VBN _ 2 conj _ _ 8 her _ PRON PRP$ _ 7 dobj _ _ 9 as _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 romantic _ ADJ JJ _ 12 amod _ _ 12 figure _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 who _ PRON WP _ 17 nsubj _ _ 15 did _ AUX VBD _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 interfere _ VERB VB _ 12 acl:relcl _ _ 18 much _ ADV JJ _ 17 advmod _ _ 19 with _ ADP IN _ 23 case _ _ 20 her _ PRON PRP$ _ 21 nmod:poss _ _ 21 child _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 education _ NOUN NN _ 17 nmod _ _ 24 on _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 streets _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 games _ NOUN NNS _ 17 nsubj _ _ 3 Bronx _ PROPN NNP _ 4 compound _ _ 4 children _ NOUN NNS _ 5 nsubj _ _ 5 played _ VERB VBD _ 2 acl:relcl _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 holding _ VERB VBG _ 2 dep _ _ 8 kids _ NOUN NNS _ 7 dobj _ _ 9 down _ ADP RB _ 7 compound:prt _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 stripping _ VERB VBG _ 7 conj _ _ 12 them _ PRON PRP _ 11 dobj _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 for _ ADP IN _ 15 case _ _ 15 example _ NOUN NN _ 7 nmod _ _ 16 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 17 seem _ VERB VBP _ 0 root _ _ 18 tame _ ADJ JJ _ 17 xcomp _ _ 19 by _ ADP IN _ 23 case _ _ 20 today _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 crack _ NOUN NN _ 23 compound _ _ 23 standards _ NOUN NNS _ 17 nmod _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 but _ CONJ CC _ 17 cc _ _ 26 Ms. _ PROPN NNP _ 27 compound _ _ 27 Cunningham _ PROPN NNP _ 28 nsubj _ _ 28 makes _ VERB VBZ _ 17 conj _ _ 29 it _ PRON PRP _ 31 nsubj _ _ 30 all _ DET DT _ 31 dep _ _ 31 sound _ VERB VB _ 28 ccomp _ _ 32 like _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 great _ ADJ JJ _ 35 amod _ _ 35 adventure _ NOUN NN _ 31 nmod _ _ 36 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 Without _ ADP IN _ 4 case _ _ 3 official _ ADJ JJ _ 4 amod _ _ 4 knowledge _ NOUN NN _ 11 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 sex _ NOUN NN _ 4 nmod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 death _ NOUN NN _ 6 conj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 we _ PRON PRP _ 11 nsubj _ _ 11 flirted _ VERB VBD _ 17 ccomp _ _ 12 with _ ADP IN _ 13 case _ _ 13 both _ DET CC _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 she _ PRON PRP _ 17 nsubj _ _ 17 writes _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 analyzed _ VERB VBD _ 0 root _ _ 3 families _ NOUN NNS _ 2 dobj _ _ 4 by _ ADP IN _ 7 case _ _ 5 their _ PRON PRP$ _ 7 nmod:poss _ _ 6 sleeping _ NOUN VBG _ 7 compound _ _ 7 arrangements _ NOUN NNS _ 2 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 Her _ PRON PRP$ _ 3 nmod:poss _ _ 2 friend _ NOUN NN _ 3 compound _ _ 3 Susan _ PROPN NNP _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 whose _ PRON WP$ _ 6 nmod:poss _ _ 6 parents _ NOUN NNS _ 7 nsubj _ _ 7 kept _ VERB VBD _ 3 acl:relcl _ _ 8 reminding _ VERB VBG _ 7 xcomp _ _ 9 her _ PRON PRP$ _ 8 dobj _ _ 10 she _ PRON PRP _ 12 nsubj _ _ 11 was _ VERB VBD _ 12 cop _ _ 12 unwanted _ ADJ JJ _ 8 dep _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 slept _ VERB VBD _ 0 root _ _ 15 on _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 narrow _ ADJ JJ _ 18 amod _ _ 18 bed _ NOUN NN _ 14 nmod _ _ 19 wedged _ VERB VBN _ 18 acl _ _ 20 into _ ADP IN _ 24 case _ _ 21 her _ PRON PRP$ _ 22 nmod:poss _ _ 22 parents _ NOUN NNS _ 24 nmod:poss _ _ 23 ' _ PART POS _ 22 case _ _ 24 bedroom _ NOUN NN _ 19 nmod _ _ 25 , _ PUNCT , _ 14 punct _ _ 26 as _ SCONJ IN _ 32 mark _ _ 27 though _ SCONJ IN _ 32 mark _ _ 28 she _ PRON PRP _ 32 nsubj _ _ 29 were _ VERB VBD _ 32 cop _ _ 30 a _ DET DT _ 32 det _ _ 31 temporary _ ADJ JJ _ 32 amod _ _ 32 visitor _ NOUN NN _ 14 advcl _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 Her _ PRON PRP$ _ 3 nmod:poss _ _ 2 friend _ NOUN NN _ 3 compound _ _ 3 Diana _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 father _ NOUN NN _ 9 nsubj _ _ 6 was _ VERB VBD _ 9 cop _ _ 7 a _ DET DT _ 9 det _ _ 8 professional _ ADJ JJ _ 9 amod _ _ 9 thief _ NOUN NN _ 0 root _ _ 10 ; _ PUNCT : _ 9 punct _ _ 11 they _ PRON PRP _ 14 nsubj _ _ 12 did _ AUX VBD _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 seem _ VERB VB _ 9 parataxis _ _ 15 to _ PART TO _ 16 mark _ _ 16 have _ VERB VB _ 14 xcomp _ _ 17 any _ DET DT _ 18 det _ _ 18 bedrooms _ NOUN NNS _ 16 dobj _ _ 19 at _ ADP IN _ 20 case _ _ 20 all _ DET DT _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Maybe _ ADV RB _ 3 advmod _ _ 2 Lily _ PROPN NNP _ 3 nsubj _ _ 3 became _ VERB VBD _ 0 root _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 obsessed _ ADJ VBN _ 3 xcomp _ _ 6 with _ SCONJ IN _ 9 mark _ _ 7 where _ ADV WRB _ 9 advmod _ _ 8 people _ NOUN NNS _ 9 nsubj _ _ 9 slept _ VERB VBD _ 5 advcl _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 how _ ADV WRB _ 9 conj _ _ 12 because _ SCONJ IN _ 16 mark _ _ 13 her _ PRON PRP$ _ 15 nmod:poss _ _ 14 own _ ADJ JJ _ 15 amod _ _ 15 arrangements _ NOUN NNS _ 16 nsubj _ _ 16 kept _ VERB VBD _ 3 advcl _ _ 17 shifting _ VERB VBG _ 16 xcomp _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 Rosie _ PROPN NNP _ 3 nsubj _ _ 3 died _ VERB VBD _ 7 advcl _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 her _ PRON PRP$ _ 6 nmod:poss _ _ 6 uncles _ NOUN NNS _ 7 nsubj _ _ 7 moved _ VERB VBD _ 0 root _ _ 8 in _ ADP RB _ 7 compound:prt _ _ 9 -- _ PUNCT : _ 7 punct _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 let _ VERB VB _ 7 conj _ _ 12 her _ PRON PRP _ 13 nsubj _ _ 13 make _ VERB VB _ 11 ccomp _ _ 14 the _ DET DT _ 19 det _ _ 15 sleeping _ NOUN NN _ 19 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 other _ ADJ JJ _ 15 conj _ _ 18 household _ NOUN NN _ 19 compound _ _ 19 arrangements _ NOUN NNS _ 13 dobj _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 painted _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 apartment _ NOUN NN _ 2 dobj _ _ 5 orange _ ADJ NN _ 2 xcomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 pink _ ADJ NN _ 5 conj _ _ 8 and _ CONJ CC _ 5 cc _ _ 9 white _ ADJ JJ _ 5 conj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 according _ VERB VBG _ 14 case _ _ 12 to _ ADP TO _ 11 mwe _ _ 13 her _ PRON PRP$ _ 14 nmod:poss _ _ 14 instructions _ NOUN NNS _ 2 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 With _ ADP IN _ 3 case _ _ 2 loving _ ADJ JJ _ 3 amod _ _ 3 detail _ NOUN NN _ 5 nmod _ _ 4 she _ PRON PRP _ 5 nsubj _ _ 5 recalls _ VERB VBZ _ 0 root _ _ 6 her _ PRON PRP$ _ 8 nmod:poss _ _ 7 Uncle _ PROPN NNP _ 8 compound _ _ 8 Gabe _ PROPN NNP _ 5 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 an _ DET DT _ 12 det _ _ 11 Orthodox _ PROPN NNP _ 12 compound _ _ 12 Jew _ PROPN NN _ 8 appos _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 song _ NOUN NN _ 15 compound _ _ 15 lyricist _ NOUN NN _ 12 conj _ _ 16 -LRB- _ PUNCT -LRB- _ 18 punct _ _ 17 who _ PRON WP _ 18 nsubj _ _ 18 rhymed _ VERB VBD _ 12 dep _ _ 19 river _ NOUN NN _ 18 dobj _ _ 20 with _ ADP IN _ 21 case _ _ 21 liver _ NOUN NN _ 18 nmod _ _ 22 in _ ADP IN _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 love _ NOUN NN _ 25 compound _ _ 25 song _ NOUN NN _ 18 nmod _ _ 26 -RRB- _ PUNCT -RRB- _ 18 punct _ _ 27 ; _ PUNCT : _ 8 punct _ _ 28 and _ CONJ CC _ 8 cc _ _ 29 Uncle _ PROPN NNP _ 30 compound _ _ 30 Len _ PROPN NNP _ 8 conj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 a _ DET DT _ 35 det _ _ 33 mysterious _ ADJ JJ _ 35 amod _ _ 34 part-time _ ADJ JJ _ 35 amod _ _ 35 investigator _ NOUN NN _ 30 appos _ _ 36 who _ PRON WP _ 37 nsubj _ _ 37 looked _ VERB VBD _ 35 acl:relcl _ _ 38 like _ ADP IN _ 39 case _ _ 39 Lincoln _ PROPN NNP _ 37 nmod _ _ 40 and _ CONJ CC _ 37 cc _ _ 41 carried _ VERB VBD _ 37 conj _ _ 42 a _ DET DT _ 43 det _ _ 43 change _ NOUN NN _ 41 dobj _ _ 44 of _ ADP IN _ 45 case _ _ 45 clothing _ NOUN NN _ 43 nmod _ _ 46 in _ ADP IN _ 49 case _ _ 47 a _ DET DT _ 49 det _ _ 48 Manila _ PROPN NNP _ 49 compound _ _ 49 envelope _ NOUN NN _ 41 nmod _ _ 50 , _ PUNCT , _ 41 punct _ _ 51 like _ ADP IN _ 55 case _ _ 52 an _ DET DT _ 55 det _ _ 53 `` _ PUNCT `` _ 55 punct _ _ 54 undercover _ ADJ JJ _ 55 amod _ _ 55 President _ NOUN NN _ 41 nmod _ _ 56 on _ ADP IN _ 59 case _ _ 57 a _ DET DT _ 59 det _ _ 58 good-will _ ADJ NN _ 59 amod _ _ 59 mission _ NOUN NN _ 55 nmod _ _ 60 . _ PUNCT . _ 5 punct _ _ 61 '' _ PUNCT '' _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 came _ VERB VBD _ 0 root _ _ 3 by _ ADP IN _ 5 case _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 strangeness _ NOUN NN _ 2 nmod _ _ 6 honestly _ ADV RB _ 2 advmod _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 Lily _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 grandmother _ NOUN NN _ 9 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 no _ DET DT _ 7 neg _ _ 6 cookie _ NOUN NN _ 7 compound _ _ 7 baker _ NOUN NN _ 3 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 excised _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 heads _ NOUN NNS _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 disliked _ ADJ JJ _ 14 amod _ _ 14 relatives _ NOUN NNS _ 11 nmod _ _ 15 from _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 family _ NOUN NN _ 18 compound _ _ 18 album _ NOUN NN _ 9 nmod _ _ 19 , _ PUNCT , _ 9 punct _ _ 20 and _ CONJ CC _ 9 cc _ _ 21 lugged _ VERB VBD _ 9 conj _ _ 22 around _ ADP IN _ 21 compound:prt _ _ 23 her _ PRON PRP$ _ 25 nmod:poss _ _ 24 perennial _ ADJ JJ _ 25 amod _ _ 25 work-in-progress _ NOUN NN _ 21 dobj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 `` _ PUNCT `` _ 25 punct _ _ 28 Philosophy _ NOUN NN _ 25 dep _ _ 29 for _ ADP IN _ 30 case _ _ 30 Women _ NOUN NNS _ 28 nmod _ _ 31 . _ PUNCT . _ 9 punct _ _ 32 '' _ PUNCT '' _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 book _ NOUN NN _ 3 nsubj _ _ 3 loses _ VERB VBZ _ 0 root _ _ 4 some _ DET DT _ 5 det _ _ 5 momentum _ NOUN NN _ 3 dobj _ _ 6 toward _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 end _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 when _ ADV WRB _ 12 advmod _ _ 11 Lily _ PROPN NNP _ 12 nsubj _ _ 12 becomes _ VERB VBZ _ 8 acl:relcl _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 preoccupied _ ADJ VBN _ 12 xcomp _ _ 15 with _ SCONJ IN _ 16 mark _ _ 16 dating _ VERB VBG _ 14 advcl _ _ 17 boys _ NOUN NNS _ 16 dobj _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 less _ ADV JJR _ 14 conj _ _ 20 with _ ADP IN _ 24 case _ _ 21 her _ PRON PRP$ _ 24 dep _ _ 22 delightfully _ ADV RB _ 23 advmod _ _ 23 weird _ ADJ JJ _ 24 amod _ _ 24 family _ NOUN NN _ 19 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 most _ ADJ JJS _ 4 amod _ _ 4 part _ NOUN NN _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 though _ ADV RB _ 11 advmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 there _ PRON EX _ 11 expl _ _ 9 's _ PART VBZ _ 11 dep _ _ 10 much _ ADJ JJ _ 11 amod _ _ 11 pleasure _ NOUN NN _ 0 root _ _ 12 in _ ADP IN _ 17 case _ _ 13 her _ PRON PRP$ _ 17 nmod:poss _ _ 14 saucy _ ADJ NN _ 17 amod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 poignant _ ADJ JJ _ 17 amod _ _ 17 probe _ NOUN NN _ 11 nmod _ _ 18 into _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 mysteries _ NOUN NNS _ 17 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 Babylonian _ PROPN NNP _ 24 compound _ _ 24 Bronx _ PROPN NNP _ 20 nmod _ _ 25 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Bronx _ PROPN NNP _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 figures _ VERB VBZ _ 0 root _ _ 5 in _ ADP IN _ 11 case _ _ 6 Bruce _ PROPN NNP _ 8 compound _ _ 7 Jay _ PROPN NNP _ 8 compound _ _ 8 Friedman _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 latest _ ADJ JJS _ 11 amod _ _ 11 novel _ NOUN NN _ 4 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 flashes _ VERB VBZ _ 11 acl:relcl _ _ 15 back _ ADV RB _ 14 advmod _ _ 16 to _ ADP TO _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 New _ PROPN NNP _ 19 compound _ _ 19 York _ PROPN NNP _ 15 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 '50s _ NOUN CD _ 19 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 25 cc _ _ 2 both _ DET DT _ 7 det:predet _ _ 3 the _ DET DT _ 7 det _ _ 4 past _ NOUN NN _ 7 amod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 present _ ADJ JJ _ 4 conj _ _ 7 worlds _ NOUN NNS _ 25 nsubj _ _ 8 of _ ADP IN _ 12 case _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 The _ DET DT _ 12 det _ _ 11 Current _ ADJ JJ _ 12 amod _ _ 12 Climate _ NOUN NN _ 7 nmod _ _ 13 '' _ PUNCT '' _ 12 punct _ _ 14 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 15 Atlantic _ PROPN NNP _ 17 compound _ _ 16 Monthly _ PROPN JJ _ 17 compound _ _ 17 Press _ PROPN NNP _ 12 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 200 _ NUM CD _ 20 nummod _ _ 20 pages _ NOUN NNS _ 17 dep _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 18.95 _ NUM CD _ 17 dep _ _ 24 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 25 feel _ VERB VBP _ 0 root _ _ 26 cramped _ ADJ JJ _ 25 xcomp _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 static _ ADJ JJ _ 26 conj _ _ 29 . _ PUNCT . _ 25 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 his _ PRON PRP$ _ 4 nmod:poss _ _ 3 sixth _ ADJ JJ _ 4 amod _ _ 4 novel _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Friedman _ PROPN NNP _ 8 nsubj _ _ 8 tried _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 resuscitate _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 protagonist _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 his _ PRON PRP$ _ 16 nmod:poss _ _ 15 1972 _ NUM CD _ 16 nummod _ _ 16 work _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 16 punct _ _ 19 About _ ADP IN _ 21 case _ _ 20 Harry _ PROPN NNP _ 21 compound _ _ 21 Towns _ PROPN NNP _ 16 nmod _ _ 22 . _ PUNCT . _ 8 punct _ _ 23 '' _ PUNCT '' _ 8 punct _ _ 1 Harry _ PROPN NNP _ 6 nsubj _ _ 2 is _ VERB VBZ _ 6 cop _ _ 3 now _ ADV RB _ 6 advmod _ _ 4 a _ DET DT _ 6 det _ _ 5 57-year-old _ ADJ JJ _ 6 amod _ _ 6 writer _ NOUN NN _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 whose _ PRON WP$ _ 10 nmod:poss _ _ 9 continuing _ VERB VBG _ 10 amod _ _ 10 flirtation _ NOUN NN _ 21 nsubj _ _ 11 with _ ADP IN _ 12 case _ _ 12 drugs _ NOUN NNS _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 marginal _ ADJ JJ _ 15 amod _ _ 15 types _ NOUN NNS _ 12 conj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Hollywood _ PROPN NNP _ 15 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 New _ PROPN NNP _ 20 compound _ _ 20 York _ PROPN NNP _ 17 conj _ _ 21 seems _ VERB VBZ _ 6 acl:relcl _ _ 22 quaintly _ ADV RB _ 23 advmod _ _ 23 out-of-synch _ ADJ JJ _ 21 xcomp _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Harry _ PROPN NNP _ 3 nsubj _ _ 2 fondly _ ADV RB _ 3 advmod _ _ 3 remembers _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 8 det _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 old _ ADJ JJ _ 8 amod _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 days _ NOUN NNS _ 3 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 early _ ADJ JJ _ 12 amod _ _ 12 '70s _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 when _ ADV WRB _ 21 advmod _ _ 15 people _ NOUN NNS _ 21 nsubj _ _ 16 like _ ADP IN _ 19 case _ _ 17 his _ PRON PRP$ _ 19 nmod:poss _ _ 18 friend _ NOUN NN _ 19 compound _ _ 19 Travis _ PROPN NNP _ 15 nmod _ _ 20 would _ AUX MD _ 21 aux _ _ 21 take _ VERB VB _ 8 acl:relcl _ _ 22 a _ DET DT _ 23 det _ _ 23 psychiatrist _ NOUN NN _ 21 dobj _ _ 24 on _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 date _ NOUN NN _ 21 nmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 analyze _ VERB VB _ 21 advcl _ _ 29 what _ PRON WP _ 32 dobj _ _ 30 Travis _ PROPN NNP _ 32 nsubj _ _ 31 was _ AUX VBD _ 32 aux _ _ 32 doing _ VERB VBG _ 28 ccomp _ _ 33 wrong _ ADJ JJ _ 32 advmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 An _ DET DT _ 4 det _ _ 3 L.A. _ PROPN NNP _ 4 compound _ _ 4 solution _ NOUN NN _ 7 dep _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 '' _ PUNCT '' _ 7 punct _ _ 7 explains _ VERB VBZ _ 0 root _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Friedman _ PROPN NNP _ 7 nsubj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 Line _ NOUN NN _ 11 dep _ _ 2 by _ ADP IN _ 3 case _ _ 3 line _ NOUN NN _ 1 nmod _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Friedman _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 weary _ ADJ JJ _ 8 amod _ _ 8 cynicism _ NOUN NN _ 11 nsubj _ _ 9 can _ AUX MD _ 11 aux _ _ 10 be _ VERB VB _ 11 cop _ _ 11 amusing _ ADJ JJ _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 especially _ ADV RB _ 17 advmod _ _ 14 when _ ADV WRB _ 17 advmod _ _ 15 he _ PRON PRP _ 17 nsubj _ _ 16 's _ AUX VBZ _ 17 aux _ _ 17 riffing _ VERB VBG _ 11 advcl _ _ 18 on _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 Hollywood _ PROPN NNP _ 22 compound _ _ 21 social _ ADJ JJ _ 22 amod _ _ 22 scheme _ NOUN NN _ 17 nmod _ _ 23 -- _ PUNCT : _ 22 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 way _ NOUN NN _ 22 dep _ _ 26 people _ NOUN NNS _ 27 nsubj _ _ 27 size _ VERB VBP _ 25 acl:relcl _ _ 28 each _ DET DT _ 27 dobj _ _ 29 other _ ADJ JJ _ 28 amod _ _ 30 up _ ADP RB _ 27 compound:prt _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 immediately _ ADV RB _ 33 advmod _ _ 33 canceling _ VERB VBG _ 27 xcomp _ _ 34 the _ DET DT _ 36 det _ _ 35 desperate _ ADJ JJ _ 36 amod _ _ 36 ones _ NOUN NNS _ 33 dobj _ _ 37 who _ PRON WP _ 40 nsubj _ _ 38 merely _ ADV RB _ 40 advmod _ _ 39 almost _ ADV RB _ 40 advmod _ _ 40 made _ VERB VBD _ 36 acl:relcl _ _ 41 it _ PRON PRP _ 40 dobj _ _ 42 . _ PUNCT . _ 11 punct _ _ 1 Harry _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 avoided _ VERB VBN _ 0 root _ _ 4 all _ DET DT _ 5 det:predet _ _ 5 that _ DET DT _ 3 dobj _ _ 6 by _ SCONJ IN _ 7 mark _ _ 7 living _ VERB VBG _ 3 advcl _ _ 8 in _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 Long _ PROPN NNP _ 12 compound _ _ 11 Island _ PROPN NNP _ 12 compound _ _ 12 suburb _ NOUN NN _ 7 nmod _ _ 13 with _ ADP IN _ 15 case _ _ 14 his _ PRON PRP$ _ 15 nmod:poss _ _ 15 wife _ NOUN NN _ 7 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 who _ PRON WP _ 20 nsubj _ _ 18 's _ VERB VBZ _ 20 cop _ _ 19 so _ ADV RB _ 20 advmod _ _ 20 addicted _ ADJ VBN _ 15 acl:relcl _ _ 21 to _ ADP TO _ 23 case _ _ 22 soap _ NOUN NN _ 23 compound _ _ 23 operas _ NOUN NNS _ 20 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 mystery _ NOUN NN _ 26 compound _ _ 26 novels _ NOUN NNS _ 23 conj _ _ 27 she _ PRON PRP _ 29 nsubj _ _ 28 barely _ ADV RB _ 29 advmod _ _ 29 seems _ VERB VBZ _ 20 ccomp _ _ 30 to _ PART TO _ 31 mark _ _ 31 notice _ VERB VB _ 29 xcomp _ _ 32 when _ ADV WRB _ 35 advmod _ _ 33 her _ PRON PRP$ _ 34 nmod:poss _ _ 34 husband _ NOUN NN _ 35 nsubj _ _ 35 disappears _ VERB VBZ _ 31 advcl _ _ 36 for _ ADP IN _ 38 case _ _ 37 drug-seeking _ ADJ JJ _ 38 amod _ _ 38 forays _ NOUN NNS _ 35 nmod _ _ 39 into _ ADP IN _ 40 case _ _ 40 Manhattan _ PROPN NNP _ 35 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 it _ PRON PRP _ 5 nsubj _ _ 3 does _ AUX VBZ _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 take _ VERB VB _ 0 root _ _ 6 too _ ADV RB _ 8 advmod _ _ 7 many _ ADJ JJ _ 8 amod _ _ 8 lines _ NOUN NNS _ 5 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 figure _ VERB VB _ 5 advcl _ _ 11 Harry _ PROPN NNP _ 10 dobj _ _ 12 out _ ADP RP _ 10 compound:prt _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 's _ VERB VBZ _ 4 cop _ _ 3 a _ DET DT _ 4 det _ _ 4 bore _ NOUN VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Gulf _ PROPN NNP _ 2 compound _ _ 2 Resources _ PROPN NNP _ 6 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Chemical _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 2 conj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 agreed _ VERB VBD _ 6 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 pay _ VERB VB _ 8 xcomp _ _ 11 $ _ SYM $ _ 10 dobj _ _ 12 1.5 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 as _ ADP IN _ 15 case _ _ 15 part _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 an _ DET DT _ 18 det _ _ 18 accord _ NOUN NN _ 15 nmod _ _ 19 with _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 Environmental _ PROPN NNP _ 23 compound _ _ 22 Protection _ PROPN NNP _ 23 compound _ _ 23 Agency _ PROPN NNP _ 18 nmod _ _ 24 regarding _ VERB VBG _ 18 acl _ _ 25 an _ DET DT _ 27 det _ _ 26 environmental _ ADJ JJ _ 27 amod _ _ 27 cleanup _ NOUN NN _ 24 dobj _ _ 28 of _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 defunct _ ADJ JJ _ 31 amod _ _ 31 smelter _ NOUN NN _ 27 nmod _ _ 32 the _ DET DT _ 33 det _ _ 33 company _ NOUN NN _ 35 nsubj _ _ 34 formerly _ ADV RB _ 35 advmod _ _ 35 operated _ VERB VBN _ 31 acl:relcl _ _ 36 in _ ADP IN _ 37 case _ _ 37 Idaho _ PROPN NNP _ 31 nmod _ _ 38 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1984 _ NUM CD _ 5 nmod _ _ 3 the _ DET DT _ 4 det _ _ 4 EPA _ PROPN NNP _ 5 nsubj _ _ 5 notified _ VERB VBN _ 0 root _ _ 6 Gulf _ PROPN NNP _ 7 compound _ _ 7 Resources _ PROPN NNPS _ 5 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 12 nsubj _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 part-owner _ NOUN NN _ 7 acl:relcl _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 smelter _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 that _ SCONJ IN _ 21 mark _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 was _ VERB VBD _ 21 cop _ _ 20 potentially _ ADV RB _ 21 advmod _ _ 21 liable _ ADJ JJ _ 5 ccomp _ _ 22 for _ SCONJ IN _ 23 mark _ _ 23 sharing _ VERB VBG _ 21 advcl _ _ 24 cleanup _ NOUN NN _ 25 compound _ _ 25 costs _ NOUN NNS _ 23 dobj _ _ 26 at _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 site _ NOUN NN _ 25 nmod _ _ 29 under _ ADP IN _ 33 case _ _ 30 the _ DET DT _ 33 det _ _ 31 federal _ ADJ JJ _ 33 amod _ _ 32 Superfund _ PROPN NNP _ 33 compound _ _ 33 program _ NOUN NN _ 23 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 21-square-mile _ ADJ JJ _ 3 amod _ _ 3 area _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 contaminated _ ADJ VBN _ 0 root _ _ 6 with _ ADP IN _ 7 case _ _ 7 lead _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 zinc _ NOUN NN _ 7 conj _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 other _ ADJ JJ _ 12 amod _ _ 12 metals _ NOUN NNS _ 7 conj _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 Gulf _ PROPN NNP _ 2 compound _ _ 2 Resources _ PROPN NNP _ 6 nsubj _ _ 3 earlier _ ADV RBR _ 5 advmod _ _ 4 this _ DET DT _ 5 det _ _ 5 year _ NOUN NN _ 6 nmod:tmod _ _ 6 proposed _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 reorganization _ NOUN NN _ 9 compound _ _ 9 plan _ NOUN NN _ 6 dobj _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 make _ VERB VB _ 9 acl:relcl _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 a _ DET DT _ 15 det _ _ 15 unit _ NOUN NN _ 12 xcomp _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 Bermuda _ PROPN NNP _ 19 compound _ _ 19 concern _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 potentially _ ADV RB _ 22 advmod _ _ 22 exempting _ VERB VBG _ 12 xcomp _ _ 23 it _ PRON PRP _ 22 dobj _ _ 24 from _ ADP IN _ 25 case _ _ 25 liability _ NOUN NN _ 22 nmod _ _ 26 for _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 28 det _ _ 28 smelter _ NOUN NN _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 cleanup _ NOUN NN _ 31 compound _ _ 31 costs _ NOUN NNS _ 25 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 16 mark _ _ 5 as _ ADP IN _ 6 case _ _ 6 part _ NOUN NN _ 16 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 agreement _ NOUN NN _ 6 nmod _ _ 10 with _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 EPA _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 `` _ PUNCT `` _ 16 punct _ _ 16 made _ VERB VBD _ 3 ccomp _ _ 17 certain _ ADJ JJ _ 19 amod _ _ 18 voluntary _ ADJ JJ _ 19 amod _ _ 19 undertakings _ NOUN NNS _ 16 dobj _ _ 20 with _ ADP IN _ 21 case _ _ 21 respect _ NOUN NN _ 16 nmod _ _ 22 to _ ADP TO _ 24 case _ _ 23 intercorporate _ ADJ VB _ 24 amod _ _ 24 transactions _ NOUN NNS _ 21 nmod _ _ 25 entered _ VERB VBN _ 24 acl _ _ 26 into _ ADP IN _ 25 nmod _ _ 27 after _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 reorganization _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 31 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 issued _ VERB VBD _ 2 acl:relcl _ _ 6 a _ DET DT _ 7 det _ _ 7 statement _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 agreement _ NOUN NN _ 7 nmod _ _ 11 late _ ADV JJ _ 12 advmod _ _ 12 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 that _ SCONJ IN _ 24 mark _ _ 16 $ _ SYM $ _ 24 nsubjpass _ _ 17 1 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 payment _ NOUN NN _ 16 nmod _ _ 22 was _ AUX VBD _ 24 auxpass _ _ 23 previously _ ADV RB _ 24 advmod _ _ 24 provided _ VERB VBN _ 14 ccomp _ _ 25 for _ ADP IN _ 24 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 its _ PRON PRP$ _ 29 nmod:poss _ _ 28 financial _ ADJ JJ _ 29 amod _ _ 29 statements _ NOUN NNS _ 24 nmod _ _ 30 and _ CONJ CC _ 24 cc _ _ 31 that _ DET IN _ 36 mark _ _ 32 $ _ SYM $ _ 33 dep _ _ 33 500,000 _ NUM CD _ 36 nsubjpass _ _ 34 will _ AUX MD _ 36 aux _ _ 35 be _ AUX VB _ 36 auxpass _ _ 36 recognized _ VERB VBN _ 24 conj _ _ 37 in _ ADP IN _ 41 case _ _ 38 its _ PRON PRP$ _ 41 nmod:poss _ _ 39 1989 _ NUM CD _ 41 nummod _ _ 40 third-quarter _ ADJ JJ _ 41 amod _ _ 41 statement _ NOUN NN _ 36 nmod _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 agreement _ NOUN NN _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 consent _ NOUN NN _ 2 conj _ _ 5 decree _ NOUN NN _ 7 nsubj _ _ 6 are _ VERB VBP _ 7 cop _ _ 7 subject _ ADJ JJ _ 14 ccomp _ _ 8 to _ ADP TO _ 10 case _ _ 9 court _ NOUN NN _ 10 compound _ _ 10 approval _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 company _ NOUN NN _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Gulf _ PROPN NNP _ 2 compound _ _ 2 Resources _ PROPN NNP _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 will _ AUX MD _ 8 aux _ _ 8 seek _ VERB VB _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 recover _ VERB VB _ 8 xcomp _ _ 11 equitable _ ADJ JJ _ 12 amod _ _ 12 contribution _ NOUN NN _ 10 dobj _ _ 13 from _ ADP IN _ 14 case _ _ 14 others _ NOUN NNS _ 10 nmod _ _ 15 for _ ADP IN _ 18 case _ _ 16 both _ CONJ CC _ 18 cc:preconj _ _ 17 the _ DET DT _ 18 det _ _ 18 amount _ NOUN NN _ 10 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 settlement _ NOUN NN _ 18 nmod _ _ 22 and _ CONJ CC _ 18 cc _ _ 23 any _ DET DT _ 25 det _ _ 24 other _ ADJ JJ _ 25 amod _ _ 25 liabilities _ NOUN NNS _ 18 conj _ _ 26 it _ PRON PRP _ 28 nsubj _ _ 27 may _ AUX MD _ 28 aux _ _ 28 incur _ VERB VB _ 25 acl:relcl _ _ 29 under _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 Superfund _ PROPN NNP _ 32 compound _ _ 32 law _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 34 '' _ PUNCT '' _ 3 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Gulf _ PROPN NNP _ 7 nsubj _ _ 6 must _ AUX MD _ 7 aux _ _ 7 give _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 U.S. _ PROPN NNP _ 10 compound _ _ 10 government _ NOUN NN _ 7 iobj _ _ 11 45 _ NUM CD _ 16 nummod _ _ 12 days _ NOUN NNS _ 16 nmod:poss _ _ 13 ' _ PART POS _ 16 case _ _ 14 advance _ ADJ NN _ 16 amod _ _ 15 written _ ADJ VBN _ 16 amod _ _ 16 notice _ NOUN NN _ 7 dobj _ _ 17 before _ SCONJ IN _ 18 mark _ _ 18 issuing _ VERB VBG _ 7 advcl _ _ 19 any _ DET DT _ 20 det _ _ 20 dividends _ NOUN NNS _ 18 dobj _ _ 21 on _ ADP IN _ 23 case _ _ 22 common _ ADJ JJ _ 23 amod _ _ 23 stock _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 net _ ADJ JJ _ 5 amod _ _ 5 worth _ NOUN NN _ 8 nsubj _ _ 6 can _ AUX MD _ 8 aux _ _ 7 not _ PART RB _ 8 neg _ _ 8 fall _ VERB VB _ 0 root _ _ 9 below _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 8 nmod _ _ 11 185 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 after _ SCONJ IN _ 17 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 dividends _ NOUN NNS _ 17 nsubjpass _ _ 16 are _ AUX VBP _ 17 auxpass _ _ 17 issued _ VERB VBN _ 8 advcl _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 terms _ NOUN NNS _ 8 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 that _ DET DT _ 6 det _ _ 6 agreement _ NOUN NN _ 3 nmod _ _ 7 only _ ADV RB _ 8 advmod _ _ 8 become _ VERB VBP _ 28 ccomp _ _ 9 effective _ ADJ JJ _ 8 xcomp _ _ 10 the _ DET DT _ 11 det _ _ 11 date _ NOUN NN _ 8 nmod:tmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 Gulf _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 reorganization _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 which _ PRON WDT _ 19 dobj _ _ 18 we _ PRON PRP _ 19 nsubj _ _ 19 anticipate _ VERB VBP _ 11 acl:relcl _ _ 20 will _ AUX MD _ 21 aux _ _ 21 occur _ VERB VB _ 19 ccomp _ _ 22 sometime _ ADV RB _ 21 advmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 early _ ADJ JJ _ 25 amod _ _ 25 1990 _ NUM CD _ 21 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 Lawrence _ PROPN NNP _ 31 compound _ _ 30 R. _ PROPN NNP _ 31 compound _ _ 31 Mehl _ PROPN NNP _ 28 nsubj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 Gulf _ PROPN NNP _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 general _ ADJ JJ _ 36 amod _ _ 36 counsel _ NOUN NN _ 31 appos _ _ 37 . _ PUNCT . _ 28 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Gulf _ PROPN NNP _ 6 nsubj _ _ 5 must _ AUX MD _ 6 aux _ _ 6 give _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 government _ NOUN NN _ 6 iobj _ _ 9 20 _ NUM CD _ 14 nummod _ _ 10 days _ NOUN NNS _ 14 nmod:poss _ _ 11 ' _ PART POS _ 14 case _ _ 12 advance _ ADJ NN _ 14 amod _ _ 13 written _ ADJ VBN _ 14 amod _ _ 14 notice _ NOUN NN _ 6 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 any _ DET DT _ 17 det _ _ 17 loans _ NOUN NNS _ 14 nmod _ _ 18 exceeding _ VERB VBG _ 17 acl _ _ 19 $ _ SYM $ _ 18 dobj _ _ 20 50 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 that _ PRON WDT _ 24 nsubjpass _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 made _ VERB VBN _ 17 acl:relcl _ _ 25 to _ ADP TO _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 Bermuda-based _ ADJ JJ _ 29 amod _ _ 28 holding _ NOUN VBG _ 29 compound _ _ 29 company _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Gulf _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 net _ ADJ JJ _ 4 amod _ _ 4 worth _ NOUN NN _ 12 nsubj _ _ 5 after _ ADP IN _ 7 case _ _ 6 those _ DET DT _ 7 det _ _ 7 transaction _ NOUN NN _ 4 nmod _ _ 8 must _ AUX MD _ 12 aux _ _ 9 be _ VERB VB _ 12 cop _ _ 10 at _ ADP IN _ 11 case _ _ 11 least _ ADJ JJS _ 12 nmod:npmod _ _ 12 $ _ SYM $ _ 0 root _ _ 13 150 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 Separately _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 5 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 hold _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 12 det _ _ 11 special _ ADJ JJ _ 12 amod _ _ 12 meeting _ NOUN NN _ 9 dobj _ _ 13 for _ ADP IN _ 14 case _ _ 14 shareholders _ NOUN NNS _ 12 nmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 early _ ADJ JJ _ 17 amod _ _ 17 1990 _ NUM CD _ 9 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 vote _ VERB VB _ 9 advcl _ _ 20 on _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 proposed _ VERB VBN _ 23 amod _ _ 23 reorganization _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Many _ ADJ JJ _ 8 nsubj _ _ 2 of _ ADP IN _ 7 case _ _ 3 the _ DET DT _ 4 det _ _ 4 nation _ NOUN NN _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 highest-ranking _ ADJ JJ _ 7 amod _ _ 7 executives _ NOUN NNS _ 1 nmod _ _ 8 saluted _ VERB VBD _ 0 root _ _ 9 Friday _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 market _ NOUN NN _ 12 compound _ _ 12 plunge _ NOUN NN _ 8 dobj _ _ 13 as _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 overdue _ ADJ JJ _ 16 amod _ _ 16 comeuppance _ NOUN NN _ 8 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 speculators _ NOUN NNS _ 16 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 takeover _ NOUN NN _ 21 compound _ _ 21 players _ NOUN NNS _ 18 conj _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 Assuming _ VERB VBG _ 16 advcl _ _ 2 that _ SCONJ IN _ 7 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 7 nsubj _ _ 5 does _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 head _ VERB VB _ 1 ccomp _ _ 8 into _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 bottomless _ ADJ JJ _ 12 amod _ _ 11 free _ ADJ JJ _ 12 amod _ _ 12 fall _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 some _ DET DT _ 15 det _ _ 15 executives _ NOUN NNS _ 16 nsubj _ _ 16 think _ VERB VBP _ 0 root _ _ 17 Friday _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 action _ NOUN NN _ 21 nsubj _ _ 20 could _ AUX MD _ 21 aux _ _ 21 prove _ VERB VB _ 16 ccomp _ _ 22 a _ DET DT _ 23 det _ _ 23 harbinger _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 good _ ADJ JJ _ 26 amod _ _ 26 news _ NOUN NN _ 23 nmod _ _ 27 -- _ PUNCT : _ 23 punct _ _ 28 as _ ADP IN _ 30 case _ _ 29 a _ DET DT _ 30 det _ _ 30 sign _ NOUN NN _ 23 nmod _ _ 31 that _ SCONJ IN _ 43 mark _ _ 32 the _ DET DT _ 34 det _ _ 33 leveraged _ ADJ JJ _ 34 amod _ _ 34 buy-out _ NOUN NN _ 43 nsubj _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 takeover _ NOUN NN _ 37 compound _ _ 37 frenzy _ NOUN NN _ 34 conj _ _ 38 of _ ADP IN _ 40 case _ _ 39 recent _ ADJ JJ _ 40 amod _ _ 40 years _ NOUN NNS _ 34 nmod _ _ 41 may _ AUX MD _ 43 aux _ _ 42 be _ AUX VB _ 43 aux _ _ 43 abating _ VERB VBG _ 30 ccomp _ _ 44 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 This _ PRON DT _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 reaction _ NOUN NN _ 18 ccomp _ _ 6 to _ ADP TO _ 9 case _ _ 7 artificial _ ADJ JJ _ 9 amod _ _ 8 LBO _ PROPN NNP _ 9 compound _ _ 9 valuations _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 rather _ ADV RB _ 9 cc _ _ 12 than _ ADP IN _ 11 mwe _ _ 13 to _ ADP TO _ 15 case _ _ 14 any _ DET DT _ 15 det _ _ 15 fundamentals _ NOUN NNS _ 9 conj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 John _ PROPN NNP _ 20 compound _ _ 20 Young _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 chairman _ NOUN NN _ 20 appos _ _ 23 of _ ADP IN _ 25 case _ _ 24 Hewlett-Packard _ PROPN NNP _ 25 compound _ _ 25 Co. _ PROPN NNP _ 22 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 whose _ PRON WP$ _ 28 nmod:poss _ _ 28 shares _ NOUN NNS _ 29 nsubj _ _ 29 dropped _ VERB VBD _ 25 acl:relcl _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 3.125 _ NUM CD _ 29 dobj _ _ 32 to _ ADP TO _ 34 case _ _ 33 $ _ SYM $ _ 34 dep _ _ 34 48.125 _ NUM CD _ 29 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 we _ PRON PRP _ 4 nsubj _ _ 4 get _ VERB VBP _ 18 advcl _ _ 5 rid _ ADJ JJ _ 4 xcomp _ _ 6 of _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 lot _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 that _ DET DT _ 11 det _ _ 11 nonsense _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 it _ PRON PRP _ 18 nsubj _ _ 14 will _ AUX MD _ 18 aux _ _ 15 be _ VERB VB _ 18 cop _ _ 16 a _ DET DT _ 18 det _ _ 17 big _ ADJ JJ _ 18 amod _ _ 18 plus _ NOUN NN _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 20 '' _ PUNCT '' _ 18 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 few _ ADJ JJ _ 28 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 executives _ NOUN NNS _ 2 nmod _ _ 6 here _ ADV RB _ 5 advmod _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 fall _ NOUN NN _ 10 compound _ _ 10 meeting _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Business _ PROPN NNP _ 14 compound _ _ 14 Council _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 17 det _ _ 17 group _ NOUN NN _ 14 appos _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 meets _ VERB VBZ _ 17 acl:relcl _ _ 20 to _ PART TO _ 21 mark _ _ 21 discuss _ VERB VB _ 19 xcomp _ _ 22 national _ ADJ JJ _ 23 amod _ _ 23 issues _ NOUN NNS _ 21 dobj _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 were _ VERB VBD _ 28 cop _ _ 26 only _ ADV RB _ 28 advmod _ _ 27 too _ ADV RB _ 28 advmod _ _ 28 happy _ ADJ JJ _ 0 root _ _ 29 to _ PART TO _ 30 mark _ _ 30 personalize _ VERB VB _ 28 xcomp _ _ 31 their _ PRON PRP$ _ 32 nmod:poss _ _ 32 criticism _ NOUN NN _ 30 dobj _ _ 33 . _ PUNCT . _ 28 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 People _ NOUN NNS _ 3 nsubj _ _ 3 wish _ VERB VBP _ 25 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 government _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 do _ VERB VB _ 3 ccomp _ _ 8 something _ NOUN NN _ 7 dobj _ _ 9 about _ ADP IN _ 11 case _ _ 10 leveraged _ ADJ JJ _ 11 amod _ _ 11 buy-outs _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 do _ VERB VBP _ 7 dep _ _ 14 something _ NOUN NN _ 13 dobj _ _ 15 about _ ADP IN _ 16 case _ _ 16 takeovers _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 do _ VERB VBP _ 7 dep _ _ 19 something _ NOUN NN _ 18 dobj _ _ 20 about _ ADP IN _ 22 case _ _ 21 Donald _ PROPN NNP _ 22 compound _ _ 22 Trump _ PROPN NNP _ 18 nmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Rand _ PROPN NNP _ 27 compound _ _ 27 Araskog _ PROPN NNP _ 25 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 chairman _ NOUN NN _ 27 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 ITT _ PROPN NNP _ 32 compound _ _ 32 Corp. _ PROPN NNP _ 29 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 whose _ PRON WP$ _ 35 nmod:poss _ _ 35 stock _ NOUN NN _ 36 nsubj _ _ 36 dropped _ VERB VBD _ 32 acl:relcl _ _ 37 $ _ SYM $ _ 38 dep _ _ 38 3.375 _ NUM CD _ 36 dobj _ _ 39 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 Where _ ADV WRB _ 3 advmod _ _ 3 's _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 leadership _ NOUN NN _ 3 dep _ _ 6 ? _ PUNCT . _ 3 punct _ _ 1 Where _ ADV WRB _ 2 advmod _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 guy _ NOUN NN _ 2 dep _ _ 5 who _ PRON WP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 say _ VERB VB _ 4 acl:relcl _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 ` _ PUNCT `` _ 12 punct _ _ 10 Enough _ ADJ NNP _ 12 nsubj _ _ 11 is _ VERB VBZ _ 12 cop _ _ 12 enough _ ADJ RB _ 7 ccomp _ _ 13 ' _ PUNCT '' _ 12 punct _ _ 14 '' _ PUNCT '' _ 2 punct _ _ 15 ? _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executives _ NOUN NNS _ 5 nsubj _ _ 3 were _ VERB VBD _ 5 cop _ _ 4 remarkably _ ADV RB _ 5 advmod _ _ 5 unperturbed _ ADJ JJ _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 plunge _ NOUN NN _ 5 nmod _ _ 9 even _ ADV RB _ 12 advmod _ _ 10 though _ SCONJ IN _ 12 mark _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 lopped _ VERB VBD _ 5 advcl _ _ 13 billions _ NOUN NNS _ 12 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 dollars _ NOUN NNS _ 13 nmod _ _ 16 off _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 value _ NOUN NN _ 12 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 companies _ NOUN NNS _ 18 nmod _ _ 22 -- _ PUNCT : _ 12 punct _ _ 23 and _ CONJ CC _ 12 cc _ _ 24 millions _ NOUN NNS _ 12 conj _ _ 25 off _ ADP IN _ 28 case _ _ 26 their _ PRON PRP$ _ 28 nmod:poss _ _ 27 personal _ ADJ JJ _ 28 amod _ _ 28 fortunes _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'm _ AUX VBP _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 going _ VERB VBG _ 15 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 worry _ VERB VB _ 5 xcomp _ _ 8 about _ ADP IN _ 12 case _ _ 9 one _ NUM CD _ 10 nummod _ _ 10 day _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 decline _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Kenneth _ PROPN NNP _ 17 compound _ _ 17 Olsen _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Digital _ PROPN NNP _ 22 compound _ _ 20 Equipment _ PROPN NNP _ 22 compound _ _ 21 Corp. _ PROPN NNP _ 22 compound _ _ 22 president _ NOUN NN _ 17 appos _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 who _ PRON WP _ 27 nsubj _ _ 25 was _ AUX VBD _ 27 aux _ _ 26 leisurely _ ADV JJ _ 27 advmod _ _ 27 strolling _ VERB VBG _ 17 acl:relcl _ _ 28 through _ ADP IN _ 34 case _ _ 29 the _ DET DT _ 34 det _ _ 30 bright _ ADJ JJ _ 34 amod _ _ 31 orange _ NOUN NN _ 34 amod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 yellow _ ADJ JJ _ 31 conj _ _ 34 leaves _ NOUN NNS _ 27 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 mountains _ NOUN NNS _ 34 nmod _ _ 38 here _ ADV RB _ 37 advmod _ _ 39 after _ SCONJ IN _ 44 mark _ _ 40 his _ PRON PRP$ _ 41 nmod:poss _ _ 41 company _ NOUN NN _ 43 nmod:poss _ _ 42 's _ PART POS _ 41 case _ _ 43 shares _ NOUN NNS _ 44 nsubj _ _ 44 plunged _ VERB VBD _ 27 advcl _ _ 45 $ _ SYM $ _ 46 dep _ _ 46 5.75 _ NUM CD _ 44 dobj _ _ 47 to _ PART TO _ 48 mark _ _ 48 close _ VERB VB _ 44 advcl _ _ 49 at _ ADP IN _ 51 case _ _ 50 $ _ SYM $ _ 51 dep _ _ 51 86.50 _ NUM CD _ 48 nmod _ _ 52 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 bother _ VERB VB _ 0 root _ _ 6 calling _ VERB VBG _ 5 xcomp _ _ 7 anybody _ NOUN NN _ 6 dobj _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 I _ PRON PRP _ 13 nsubj _ _ 10 did _ AUX VBD _ 13 aux _ _ 11 n't _ PART RB _ 13 neg _ _ 12 even _ ADV RB _ 13 advmod _ _ 13 turn _ NOUN VB _ 5 parataxis _ _ 14 on _ ADP RP _ 13 compound:prt _ _ 15 TV _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 5 punct _ _ 17 '' _ PUNCT '' _ 5 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 There _ ADV EX _ 8 nsubj _ _ 3 has _ AUX VBZ _ 8 aux _ _ 4 n't _ PART RB _ 8 neg _ _ 5 been _ VERB VBN _ 8 cop _ _ 6 any _ DET DT _ 8 det _ _ 7 fundamental _ ADJ JJ _ 8 amod _ _ 8 change _ NOUN NN _ 14 ccomp _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 added _ VERB VBD _ 0 root _ _ 15 John _ PROPN NNP _ 16 compound _ _ 16 Smale _ PROPN NNP _ 14 nsubj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 whose _ PRON WP$ _ 23 dobj _ _ 19 Procter _ PROPN NNP _ 22 compound _ _ 20 & _ CONJ CC _ 19 cc _ _ 21 Gamble _ PROPN NNP _ 19 conj _ _ 22 Co. _ PROPN NNP _ 23 nsubj _ _ 23 took _ VERB VBD _ 16 acl:relcl _ _ 24 an _ DET DT _ 27 det _ _ 25 $ _ SYM $ _ 27 amod _ _ 26 8.75 _ NUM CD _ 25 compound _ _ 27 slide _ NOUN NN _ 23 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 close _ VERB VB _ 23 advcl _ _ 30 at _ ADP IN _ 32 case _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 120.75 _ NUM CD _ 29 nmod _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 fact _ NOUN NN _ 15 nsubj _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 this _ PRON DT _ 6 nsubj _ _ 6 happened _ VERB VBD _ 3 ccomp _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 years _ NOUN NNS _ 9 nmod:npmod _ _ 9 ago _ ADV RB _ 6 advmod _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 there _ PRON RB _ 12 expl _ _ 12 was _ VERB VBD _ 6 conj _ _ 13 a _ DET DT _ 14 det _ _ 14 recovery _ NOUN NN _ 12 nsubj _ _ 15 gives _ VERB VBZ _ 0 root _ _ 16 people _ NOUN NNS _ 15 iobj _ _ 17 some _ DET DT _ 18 det _ _ 18 comfort _ NOUN NN _ 15 dobj _ _ 19 that _ SCONJ IN _ 25 mark _ _ 20 this _ PRON DT _ 25 nsubj _ _ 21 wo _ AUX MD _ 25 aux _ _ 22 n't _ PART RB _ 25 neg _ _ 23 be _ VERB VB _ 25 cop _ _ 24 a _ DET DT _ 25 det _ _ 25 problem _ NOUN NN _ 18 ccomp _ _ 26 . _ PUNCT . _ 15 punct _ _ 27 '' _ PUNCT '' _ 15 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 established _ ADJ JJ _ 6 amod _ _ 5 corporate _ ADJ JJ _ 6 amod _ _ 6 managements _ NOUN NNS _ 8 nsubj _ _ 7 often _ ADV RB _ 8 advmod _ _ 8 tend _ VERB VBP _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 applaud _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 setbacks _ NOUN NNS _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 speculators _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 takeover _ NOUN NN _ 18 compound _ _ 18 artists _ NOUN NNS _ 15 conj _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 Indeed _ ADV RB _ 16 advmod _ _ 2 , _ PUNCT , _ 16 punct _ _ 3 one _ NUM CD _ 5 nummod _ _ 4 chief _ ADJ NN _ 5 amod _ _ 5 executive _ NOUN NN _ 16 nsubj _ _ 6 who _ PRON WP _ 9 nsubj _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 downright _ ADV RB _ 9 advmod _ _ 9 delighted _ ADJ JJ _ 5 acl:relcl _ _ 10 by _ ADP IN _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 events _ NOUN NNS _ 9 nmod _ _ 14 was _ VERB VBD _ 16 cop _ _ 15 Robert _ PROPN NNP _ 16 compound _ _ 16 Crandall _ PROPN NNP _ 0 root _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 chairman _ NOUN NN _ 16 appos _ _ 19 of _ ADP IN _ 21 case _ _ 20 AMR _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 18 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 parent _ NOUN NN _ 21 appos _ _ 25 of _ ADP IN _ 27 case _ _ 26 American _ PROPN NNP _ 27 compound _ _ 27 Airlines _ PROPN NNPS _ 24 nmod _ _ 28 and _ CONJ CC _ 18 cc _ _ 29 the _ DET DT _ 30 det _ _ 30 target _ NOUN NN _ 18 conj _ _ 31 of _ ADP IN _ 34 case _ _ 32 a _ DET DT _ 34 det _ _ 33 takeover _ NOUN NN _ 34 compound _ _ 34 offer _ NOUN NN _ 30 nmod _ _ 35 by _ ADP IN _ 37 case _ _ 36 Mr. _ PROPN NNP _ 37 compound _ _ 37 Trump _ PROPN NNP _ 34 nmod _ _ 38 . _ PUNCT . _ 16 punct _ _ 1 Asked _ VERB VBN _ 22 advcl _ _ 2 whether _ SCONJ IN _ 7 mark _ _ 3 Friday _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 action _ NOUN NN _ 7 nsubj _ _ 6 could _ AUX MD _ 7 aux _ _ 7 help _ VERB VB _ 1 ccomp _ _ 8 him _ PRON PRP _ 9 nsubj _ _ 9 avoid _ VERB VB _ 7 ccomp _ _ 10 being _ AUX VBG _ 11 auxpass _ _ 11 Trumped _ VERB VBN _ 9 xcomp _ _ 12 by _ ADP IN _ 18 case _ _ 13 the _ DET DT _ 18 det _ _ 14 New _ PROPN NNP _ 18 compound _ _ 15 York _ PROPN NNP _ 18 compound _ _ 16 real _ ADJ JJ _ 18 amod _ _ 17 estate _ NOUN NN _ 18 compound _ _ 18 magnate _ NOUN NN _ 11 nmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Crandall _ PROPN NNP _ 22 nsubj _ _ 22 smiled _ VERB VBD _ 0 root _ _ 23 broadly _ ADV RB _ 22 advmod _ _ 24 and _ CONJ CC _ 22 cc _ _ 25 said _ VERB VBD _ 22 conj _ _ 26 : _ PUNCT : _ 25 punct _ _ 27 `` _ PUNCT `` _ 25 punct _ _ 28 No _ DET DT _ 29 neg _ _ 29 comment _ NOUN NN _ 25 dep _ _ 30 . _ PUNCT . _ 22 punct _ _ 31 '' _ PUNCT '' _ 22 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Friday _ PROPN NNP _ 3 compound _ _ 3 morning _ NOUN NN _ 14 nmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 before _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 sell-off _ NOUN NN _ 14 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 business _ NOUN NN _ 13 compound _ _ 13 leaders _ NOUN NNS _ 14 nsubj _ _ 14 issued _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 16 det _ _ 16 report _ NOUN NN _ 14 dobj _ _ 17 predicting _ VERB VBG _ 16 acl _ _ 18 the _ DET DT _ 19 det _ _ 19 economy _ NOUN NN _ 21 nsubj _ _ 20 would _ AUX MD _ 21 aux _ _ 21 grow _ VERB VB _ 17 ccomp _ _ 22 at _ ADP IN _ 29 case _ _ 23 roughly _ ADV RB _ 29 advmod _ _ 24 an _ DET DT _ 29 det _ _ 25 inflation-adjusted _ ADJ JJ _ 29 amod _ _ 26 2 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 29 amod _ _ 28 annual _ ADJ JJ _ 29 amod _ _ 29 rate _ NOUN NN _ 21 nmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 through _ ADP IN _ 33 case _ _ 32 next _ ADJ JJ _ 33 amod _ _ 33 year _ NOUN NN _ 21 nmod _ _ 34 , _ PUNCT , _ 21 punct _ _ 35 then _ ADV RB _ 36 advmod _ _ 36 accelerate _ VERB VB _ 21 dep _ _ 37 anew _ ADV RB _ 36 advmod _ _ 38 in _ ADP IN _ 39 case _ _ 39 1991 _ NUM CD _ 36 nmod _ _ 40 . _ PUNCT . _ 14 punct _ _ 1 Of _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 19 _ NUM CD _ 4 nummod _ _ 4 economists _ NOUN NNS _ 15 nmod _ _ 5 who _ PRON WP _ 6 nsubj _ _ 6 worked _ VERB VBD _ 4 acl:relcl _ _ 7 on _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 Business _ PROPN NNP _ 11 compound _ _ 10 Council _ PROPN NNP _ 11 compound _ _ 11 forecast _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 only _ ADV RB _ 14 advmod _ _ 14 two _ NUM CD _ 15 nsubj _ _ 15 projected _ VERB VBN _ 47 ccomp _ _ 16 periods _ NOUN NNS _ 15 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 decline _ NOUN NN _ 16 nmod _ _ 19 in _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 21 det _ _ 21 nation _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 output _ NOUN NN _ 18 nmod _ _ 24 over _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 next _ ADJ JJ _ 28 amod _ _ 27 two _ NUM CD _ 28 nummod _ _ 28 years _ NOUN NNS _ 16 nmod _ _ 29 , _ PUNCT , _ 15 punct _ _ 30 and _ CONJ CC _ 15 cc _ _ 31 in _ ADP IN _ 34 case _ _ 32 `` _ PUNCT `` _ 34 punct _ _ 33 both _ DET CC _ 34 det _ _ 34 instances _ NOUN NNS _ 39 nmod _ _ 35 the _ DET DT _ 36 det _ _ 36 declines _ NOUN NNS _ 39 nsubj _ _ 37 are _ VERB VBP _ 39 cop _ _ 38 too _ ADV RB _ 39 advmod _ _ 39 modest _ ADJ JJ _ 15 conj _ _ 40 to _ PART TO _ 41 mark _ _ 41 warrant _ VERB VB _ 39 xcomp _ _ 42 the _ DET DT _ 43 det _ _ 43 phrase _ NOUN NN _ 41 dobj _ _ 44 recession _ NOUN NN _ 43 dep _ _ 45 , _ PUNCT , _ 47 punct _ _ 46 '' _ PUNCT '' _ 47 punct _ _ 47 said _ VERB VBD _ 0 root _ _ 48 Lewis _ PROPN NNP _ 49 compound _ _ 49 Preston _ PROPN NNP _ 47 nsubj _ _ 50 , _ PUNCT , _ 49 punct _ _ 51 chairman _ NOUN NN _ 49 appos _ _ 52 of _ ADP IN _ 54 case _ _ 53 J.P. _ PROPN NNP _ 54 compound _ _ 54 Morgan _ PROPN NNP _ 51 nmod _ _ 55 & _ CONJ CC _ 54 cc _ _ 56 Co. _ PROPN NNP _ 54 conj _ _ 57 and _ CONJ CC _ 51 cc _ _ 58 vice _ NOUN NN _ 59 compound _ _ 59 chairman _ NOUN NN _ 51 conj _ _ 60 of _ ADP IN _ 63 case _ _ 61 the _ DET DT _ 63 det _ _ 62 Business _ PROPN NNP _ 63 compound _ _ 63 Council _ PROPN NNP _ 59 nmod _ _ 64 . _ PUNCT . _ 47 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 real _ ADJ JJ _ 4 amod _ _ 3 estate _ NOUN NN _ 4 compound _ _ 4 slump _ NOUN NN _ 20 nsubj _ _ 5 that _ PRON WDT _ 7 nsubj _ _ 6 's _ AUX VBZ _ 7 aux _ _ 7 pushing _ VERB VBG _ 4 acl:relcl _ _ 8 down _ ADP RP _ 7 advmod _ _ 9 the _ DET DT _ 10 det _ _ 10 price _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 15 case _ _ 12 New _ PROPN NNP _ 15 compound _ _ 13 York _ PROPN NNP _ 15 dep _ _ 14 office _ NOUN NN _ 15 compound _ _ 15 space _ NOUN NN _ 10 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 housing _ NOUN NN _ 15 conj _ _ 18 is _ AUX VBZ _ 20 aux _ _ 19 also _ ADV RB _ 20 advmod _ _ 20 affecting _ VERB VBG _ 0 root _ _ 21 the _ DET DT _ 22 det _ _ 22 city _ NOUN NN _ 27 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 retail _ ADJ JJ _ 27 amod _ _ 25 real _ ADJ JJ _ 27 amod _ _ 26 estate _ NOUN NN _ 27 compound _ _ 27 market _ NOUN NN _ 20 dobj _ _ 28 . _ PUNCT . _ 20 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Manhattan _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 once-desirable _ ADJ JJ _ 6 amod _ _ 5 store _ NOUN NN _ 6 compound _ _ 6 sites _ NOUN NNS _ 7 nsubj _ _ 7 sit _ VERB VBP _ 0 root _ _ 8 vacant _ ADJ JJ _ 7 xcomp _ _ 9 and _ CONJ CC _ 7 cc _ _ 10 newly _ ADV RB _ 11 advmod _ _ 11 constructed _ VERB VBN _ 12 amod _ _ 12 space _ NOUN NN _ 15 nsubj _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ VERB VBN _ 15 cop _ _ 15 slow _ ADJ JJ _ 7 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 fill _ VERB VB _ 15 xcomp _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Retail _ ADJ JJ _ 4 amod _ _ 2 real _ ADJ JJ _ 4 amod _ _ 3 estate _ NOUN NN _ 4 compound _ _ 4 brokers _ NOUN NNS _ 5 nsubj _ _ 5 say _ VERB VBP _ 0 root _ _ 6 tenants _ NOUN NNS _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 reluctant _ ADJ JJ _ 5 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 sign _ VERB VB _ 8 xcomp _ _ 11 leases _ NOUN NNS _ 10 dobj _ _ 12 because _ ADP IN _ 14 case _ _ 13 of _ ADP IN _ 12 mwe _ _ 14 uncertainty _ NOUN NN _ 8 nmod _ _ 15 about _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 local _ ADJ JJ _ 18 amod _ _ 18 economy _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 turmoil _ NOUN NN _ 14 conj _ _ 21 in _ ADP IN _ 24 case _ _ 22 their _ PRON PRP$ _ 24 nmod:poss _ _ 23 own _ ADJ JJ _ 24 amod _ _ 24 industries _ NOUN NNS _ 20 nmod _ _ 25 and _ CONJ CC _ 14 cc _ _ 26 a _ DET DT _ 27 det _ _ 27 belief _ NOUN NN _ 14 conj _ _ 28 that _ SCONJ IN _ 33 mark _ _ 29 rents _ NOUN NNS _ 33 nsubj _ _ 30 have _ AUX VBP _ 33 aux _ _ 31 not _ PART RB _ 33 neg _ _ 32 yet _ ADV RB _ 33 advmod _ _ 33 hit _ VERB VBN _ 27 ccomp _ _ 34 bottom _ NOUN NN _ 33 dobj _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 12 ccomp _ _ 4 an _ DET DT _ 6 det _ _ 5 unbelievable _ ADJ JJ _ 6 amod _ _ 6 amount _ NOUN NN _ 3 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 space _ NOUN NN _ 6 nmod _ _ 9 available _ ADJ JJ _ 6 amod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 Faith _ PROPN NNP _ 14 compound _ _ 14 Consolo _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 senior _ ADJ JJ _ 18 amod _ _ 17 vice _ NOUN NN _ 18 compound _ _ 18 president _ NOUN NN _ 14 appos _ _ 19 at _ ADP IN _ 24 case _ _ 20 Garrick-Aug _ PROPN NNP _ 24 compound _ _ 21 Associates _ PROPN NNPS _ 24 compound _ _ 22 Store _ PROPN NNP _ 24 compound _ _ 23 Leasing _ PROPN NNP _ 24 compound _ _ 24 Inc _ PROPN NNP _ 18 nmod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 are _ VERB VBP _ 0 root _ _ 3 about _ ADV IN _ 4 advmod _ _ 4 2,000 _ NUM CD _ 5 nummod _ _ 5 stores _ NOUN NNS _ 2 nsubj _ _ 6 for _ ADP IN _ 7 case _ _ 7 rent _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 up _ ADV RB _ 2 advmod _ _ 10 from _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 typical _ ADJ JJ _ 14 amod _ _ 14 range _ NOUN NN _ 9 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 1,200 _ NUM CD _ 18 nummod _ _ 17 to _ ADP TO _ 18 dep _ _ 18 1,500 _ NUM CD _ 14 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 further _ ADV JJ _ 4 advmod _ _ 4 confuses _ VERB NNS _ 9 ccomp _ _ 5 retailers _ NOUN NNS _ 4 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 '' _ PUNCT '' _ 9 punct _ _ 8 she _ PRON PRP _ 9 nsubj _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 They _ PRON PRP _ 3 nsubj _ _ 3 wonder _ VERB VBP _ 0 root _ _ 4 should _ AUX MD _ 6 aux _ _ 5 they _ PRON PRP _ 6 nsubj _ _ 6 sign _ VERB VB _ 3 dep _ _ 7 a _ DET DT _ 8 det _ _ 8 lease _ NOUN NN _ 6 dobj _ _ 9 if _ SCONJ IN _ 13 mark _ _ 10 prices _ NOUN NNS _ 13 nsubj _ _ 11 are _ AUX VBP _ 13 aux _ _ 12 still _ ADV RB _ 13 advmod _ _ 13 coming _ VERB VBG _ 6 dep _ _ 14 down _ ADV RB _ 13 advmod _ _ 15 ? _ PUNCT . _ 6 punct _ _ 1 Is _ VERB VBZ _ 5 cop _ _ 2 this _ PRON DT _ 5 nsubj _ _ 3 the _ DET DT _ 5 det _ _ 4 wrong _ ADJ JJ _ 5 amod _ _ 5 time _ NOUN NN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 open _ VERB VB _ 5 acl _ _ 8 a _ DET DT _ 9 det _ _ 9 store _ NOUN NN _ 7 dobj _ _ 10 ? _ PUNCT . _ 5 punct _ _ 1 Who _ PRON WP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 8 mark _ _ 5 be _ VERB VB _ 8 cop _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 space _ NOUN NN _ 3 xcomp _ _ 9 next _ ADP JJ _ 10 case _ _ 10 door _ NOUN NN _ 8 advmod _ _ 11 ? _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Ms. _ PROPN NNP _ 5 compound _ _ 5 Consolo _ PROPN NNP _ 6 nsubj _ _ 6 says _ VERB VBZ _ 11 parataxis _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 tenants _ NOUN NNS _ 11 nsubj _ _ 9 usually _ ADV RB _ 11 advmod _ _ 10 can _ AUX MD _ 11 aux _ _ 11 negotiate _ VERB VB _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 pay _ VERB VB _ 11 xcomp _ _ 14 rents _ NOUN NNS _ 13 dobj _ _ 15 that _ PRON WDT _ 19 nsubj _ _ 16 are _ VERB VBP _ 19 cop _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 one-quarter _ NOUN NN _ 19 nmod:npmod _ _ 19 lower _ ADJ JJR _ 14 acl:relcl _ _ 20 than _ ADP IN _ 25 case _ _ 21 landlords _ NOUN NNS _ 25 nmod:poss _ _ 22 ' _ PART POS _ 21 case _ _ 23 initial _ ADJ JJ _ 25 amod _ _ 24 asking _ NOUN VBG _ 25 compound _ _ 25 price _ NOUN NN _ 19 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 handful _ NOUN NN _ 22 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 hot _ ADJ JJ _ 6 amod _ _ 5 retail _ ADJ JJ _ 6 amod _ _ 6 locations _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 such _ ADJ JJ _ 12 case _ _ 9 as _ ADP IN _ 8 mwe _ _ 10 the _ DET DT _ 12 det _ _ 11 57th _ PROPN JJ _ 12 compound _ _ 12 Street _ PROPN NN _ 6 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Madison _ PROPN NNP _ 12 conj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 Fifth _ PROPN NNP _ 18 compound _ _ 17 Avenue _ PROPN NNP _ 18 compound _ _ 18 areas _ NOUN NNS _ 12 conj _ _ 19 , _ PUNCT , _ 6 punct _ _ 20 have _ AUX VBP _ 22 aux _ _ 21 been _ VERB VBN _ 22 cop _ _ 22 able _ ADJ JJ _ 0 root _ _ 23 to _ PART TO _ 24 mark _ _ 24 sustain _ VERB VB _ 22 xcomp _ _ 25 what _ PRON WP _ 27 dobj _ _ 26 many _ DET JJ _ 27 nsubj _ _ 27 see _ VERB VBP _ 24 ccomp _ _ 28 as _ ADP IN _ 30 case _ _ 29 astronomical _ ADJ JJ _ 30 amod _ _ 30 rents _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 22 punct _ _ 1 And _ CONJ CC _ 10 cc _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 some _ DET DT _ 5 det _ _ 5 neighborhoods _ NOUN NNS _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 rents _ NOUN NNS _ 10 nsubj _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 merely _ ADV RB _ 10 advmod _ _ 10 hit _ VERB VBN _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 plateau _ NOUN NN _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 on _ ADP IN _ 3 case _ _ 3 average _ NOUN NN _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 Manhattan _ PROPN NNP _ 7 compound _ _ 6 retail _ ADJ JJ _ 7 amod _ _ 7 rents _ NOUN NNS _ 9 nsubj _ _ 8 have _ AUX VBP _ 9 aux _ _ 9 dropped _ VERB VBN _ 23 ccomp _ _ 10 10 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 to _ ADP TO _ 11 dep _ _ 13 15 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 11 dep _ _ 15 in _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 past _ ADJ JJ _ 19 amod _ _ 18 six _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 9 nmod _ _ 20 alone _ ADV RB _ 19 advmod _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 experts _ NOUN NNS _ 23 nsubj _ _ 23 say _ VERB VBP _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 follows _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 6 det _ _ 4 more _ ADV RBR _ 5 advmod _ _ 5 subtle _ ADJ JJ _ 6 amod _ _ 6 decline _ NOUN NN _ 2 dobj _ _ 7 in _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 prior _ ADJ JJ _ 11 amod _ _ 10 six _ NUM CD _ 11 nummod _ _ 11 months _ NOUN NNS _ 6 nmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 after _ SCONJ IN _ 17 mark _ _ 14 Manhattan _ PROPN NNP _ 15 compound _ _ 15 rents _ NOUN NNS _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 run _ VERB VBN _ 6 acl _ _ 18 up _ ADP RB _ 17 advmod _ _ 19 rapidly _ ADV RB _ 17 advmod _ _ 20 since _ ADP IN _ 21 case _ _ 21 1986 _ NUM CD _ 17 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 same _ ADJ JJ _ 3 amod _ _ 3 factors _ NOUN NNS _ 10 nsubj _ _ 4 limiting _ VERB VBG _ 3 acl _ _ 5 demand _ NOUN NN _ 4 dobj _ _ 6 for _ ADP IN _ 8 case _ _ 7 office _ NOUN NN _ 8 compound _ _ 8 space _ NOUN NN _ 5 nmod _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 affected _ VERB VBN _ 0 root _ _ 11 retailing _ NOUN NN _ 10 dobj _ _ 12 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 As _ SCONJ IN _ 4 mark _ _ 3 businesses _ NOUN NNS _ 4 nsubj _ _ 4 contract _ VERB NN _ 17 advcl _ _ 5 or _ CONJ CC _ 4 cc _ _ 6 depart _ VERB VB _ 4 conj _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 number _ NOUN NN _ 17 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 employees _ NOUN NNS _ 9 nmod _ _ 12 who _ PRON WP _ 14 nsubj _ _ 13 might _ AUX MD _ 14 aux _ _ 14 use _ VERB VB _ 11 acl:relcl _ _ 15 retail _ ADJ JJ _ 16 amod _ _ 16 services _ NOUN NNS _ 14 dobj _ _ 17 shrinks _ VERB VBZ _ 20 ccomp _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 Edward _ PROPN NNP _ 23 compound _ _ 22 A. _ NOUN NN _ 23 compound _ _ 23 Friedman _ PROPN NNP _ 20 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 senior _ ADJ JJ _ 27 amod _ _ 26 vice _ NOUN NN _ 27 compound _ _ 27 president _ NOUN NN _ 23 appos _ _ 28 of _ ADP IN _ 31 case _ _ 29 Helmsley _ PROPN NNP _ 31 compound _ _ 30 Spear _ PROPN NNP _ 31 compound _ _ 31 Inc _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 problems _ NOUN NNS _ 23 nsubj _ _ 5 plaguing _ VERB VBG _ 4 acl _ _ 6 electronics _ NOUN NNS _ 11 compound _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 fur _ NOUN NN _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 furniture _ NOUN NN _ 6 conj _ _ 11 companies _ NOUN NNS _ 5 dobj _ _ 12 -- _ PUNCT : _ 14 punct _ _ 13 key _ ADJ JJ _ 14 amod _ _ 14 categories _ NOUN NNS _ 11 dep _ _ 15 in _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 local _ ADJ JJ _ 19 amod _ _ 18 retail _ ADJ JJ _ 19 amod _ _ 19 economy _ NOUN NN _ 14 nmod _ _ 20 -- _ PUNCT : _ 14 punct _ _ 21 have _ AUX VBP _ 23 aux _ _ 22 further _ ADV JJ _ 23 advmod _ _ 23 deflated _ VERB VBD _ 2 ccomp _ _ 24 the _ DET DT _ 25 det _ _ 25 market _ NOUN NN _ 23 dobj _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 Hardest _ ADJ JJS _ 2 advmod _ _ 2 hit _ NOUN NN _ 0 root _ _ 3 are _ VERB VBP _ 2 dep _ _ 4 what _ PRON WP _ 10 dobj _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 calls _ VERB VBZ _ 2 dep _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 secondary _ ADJ JJ _ 10 amod _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 sites _ NOUN NNS _ 6 xcomp _ _ 11 that _ PRON WDT _ 13 nsubj _ _ 12 primarily _ ADV RB _ 13 advmod _ _ 13 serve _ VERB VBP _ 10 acl:relcl _ _ 14 neighborhood _ NOUN NN _ 15 compound _ _ 15 residents _ NOUN NNS _ 13 dobj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 these _ DET DT _ 3 det _ _ 3 locations _ NOUN NNS _ 13 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Friedman _ PROPN NNP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 13 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 Retailers _ NOUN NNS _ 13 nsubj _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 increasingly _ ADV RB _ 13 advmod _ _ 13 cautious _ ADJ JJ _ 0 root _ _ 14 about _ ADV IN _ 15 advmod _ _ 15 expanding _ VERB VBG _ 13 advcl _ _ 16 and _ CONJ CC _ 13 cc _ _ 17 rents _ NOUN NNS _ 19 nsubj _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 remained _ VERB VBN _ 13 conj _ _ 20 steady _ ADV JJ _ 19 xcomp _ _ 21 or _ CONJ CC _ 19 cc _ _ 22 in _ ADP IN _ 24 case _ _ 23 some _ DET DT _ 24 det _ _ 24 cases _ NOUN NNS _ 26 nmod _ _ 25 have _ AUX VBP _ 26 aux _ _ 26 declined _ VERB VBN _ 19 conj _ _ 27 . _ PUNCT . _ 13 punct _ _ 28 '' _ PUNCT '' _ 13 punct _ _ 1 Weakness _ NOUN NN _ 14 nsubj _ _ 2 in _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 restaurant _ NOUN NN _ 5 compound _ _ 5 industry _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 is _ AUX VBZ _ 9 aux _ _ 9 leaving _ VERB VBG _ 5 acl:relcl _ _ 10 retail _ ADJ JJ _ 11 amod _ _ 11 space _ NOUN NN _ 12 nsubj _ _ 12 vacant _ ADJ JJ _ 9 xcomp _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 exacerbates _ VERB VBZ _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 problem _ NOUN NN _ 14 dobj _ _ 17 for _ ADP IN _ 18 case _ _ 18 landlords _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 no _ DET DT _ 5 neg _ _ 5 comfort _ NOUN NN _ 0 root _ _ 6 to _ ADP TO _ 7 case _ _ 7 landlords _ NOUN NNS _ 5 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 small _ ADJ JJ _ 12 amod _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 retailers _ NOUN NNS _ 7 conj _ _ 13 when _ ADV WRB _ 28 advmod _ _ 14 the _ DET DT _ 15 det _ _ 15 future _ NOUN NN _ 28 nsubj _ _ 16 of _ ADP IN _ 19 case _ _ 17 larger _ ADJ JJR _ 19 amod _ _ 18 department _ NOUN NN _ 19 compound _ _ 19 stores _ NOUN NNS _ 15 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 anchor _ VERB VBP _ 19 acl:relcl _ _ 23 retail _ ADJ JJ _ 24 amod _ _ 24 neighborhoods _ NOUN NNS _ 22 dobj _ _ 25 , _ PUNCT , _ 19 punct _ _ 26 are _ VERB VBP _ 28 cop _ _ 27 in _ ADP IN _ 28 case _ _ 28 doubt _ NOUN NN _ 5 advcl _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Hooker _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 14 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 parent _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 7 case _ _ 6 Bonwit _ PROPN NNP _ 7 compound _ _ 7 Teller _ PROPN NNP _ 4 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 B. _ PROPN NNP _ 10 compound _ _ 10 Altman _ PROPN NNP _ 7 conj _ _ 11 's _ PART POS _ 10 case _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 mired _ VERB VBN _ 0 root _ _ 15 in _ ADP IN _ 17 case _ _ 16 bankruptcy _ NOUN NN _ 17 compound _ _ 17 proceedings _ NOUN NNS _ 14 nmod _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 Bloomingdale _ PROPN NNP _ 23 nsubj _ _ 20 's _ PART POS _ 19 case _ _ 21 is _ VERB VBZ _ 23 cop _ _ 22 for _ ADP IN _ 23 case _ _ 23 sale _ NOUN NN _ 14 conj _ _ 24 by _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 owner _ NOUN NN _ 23 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Campeau _ PROPN NNP _ 29 compound _ _ 29 Corp _ PROPN NNP _ 26 appos _ _ 30 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 trend _ NOUN NN _ 7 nsubj _ _ 3 toward _ ADP IN _ 5 case _ _ 4 lower _ ADJ JJR _ 5 amod _ _ 5 rents _ NOUN NNS _ 2 nmod _ _ 6 may _ AUX MD _ 7 aux _ _ 7 seem _ VERB VB _ 0 root _ _ 8 surprising _ ADJ JJ _ 7 xcomp _ _ 9 given _ VERB VBN _ 17 mark _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 some _ DET DT _ 12 det _ _ 12 communities _ NOUN NNS _ 17 nsubj _ _ 13 in _ ADP IN _ 15 case _ _ 14 New _ PROPN NNP _ 15 compound _ _ 15 York _ PROPN NNP _ 12 nmod _ _ 16 are _ AUX VBP _ 17 aux _ _ 17 bemoaning _ VERB VBG _ 7 advcl _ _ 18 the _ DET DT _ 19 det _ _ 19 loss _ NOUN NN _ 17 dobj _ _ 20 of _ ADP IN _ 23 case _ _ 21 favorite _ ADJ JJ _ 23 amod _ _ 22 local _ ADJ JJ _ 23 amod _ _ 23 businesses _ NOUN NNS _ 19 nmod _ _ 24 to _ ADP TO _ 26 case _ _ 25 high _ ADJ JJ _ 26 amod _ _ 26 rents _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 20 cc _ _ 2 , _ PUNCT , _ 20 punct _ _ 3 despite _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 recent _ ADJ JJ _ 6 amod _ _ 6 softening _ NOUN NN _ 20 nmod _ _ 7 , _ PUNCT , _ 20 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 many _ DET JJ _ 20 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 these _ DET DT _ 12 det _ _ 12 retailers _ NOUN NNS _ 9 nmod _ _ 13 there _ PRON EX _ 20 expl _ _ 14 's _ AUX VBZ _ 20 auxpass _ _ 15 still _ ADV RB _ 20 advmod _ _ 16 been _ VERB VBN _ 20 cop _ _ 17 too _ ADV RB _ 18 advmod _ _ 18 big _ ADJ JJ _ 20 amod _ _ 19 a _ DET DT _ 20 det _ _ 20 jump _ NOUN NN _ 0 root _ _ 21 from _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 rental _ ADJ JJ _ 24 amod _ _ 24 rates _ NOUN NNS _ 20 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 late _ ADJ JJ _ 28 amod _ _ 28 1970s _ NOUN NNS _ 24 nmod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 when _ ADV WRB _ 34 advmod _ _ 31 their _ PRON PRP$ _ 32 nmod:poss _ _ 32 leases _ NOUN NNS _ 34 nsubjpass _ _ 33 were _ AUX VBD _ 34 auxpass _ _ 34 signed _ VERB VBN _ 28 acl:relcl _ _ 35 . _ PUNCT . _ 20 punct _ _ 1 Certainly _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 recent _ ADJ JJ _ 5 amod _ _ 5 drop _ NOUN NN _ 10 nsubj _ _ 6 in _ ADP IN _ 7 case _ _ 7 prices _ NOUN NNS _ 5 nmod _ _ 8 does _ AUX VBZ _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 mean _ VERB VB _ 0 root _ _ 11 Manhattan _ PROPN NNP _ 12 nsubj _ _ 12 comes _ VERB VBZ _ 10 ccomp _ _ 13 cheap _ ADJ RB _ 12 xcomp _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 York _ PROPN NNP _ 4 compound _ _ 3 retail _ ADJ JJ _ 4 amod _ _ 4 rents _ NOUN NNS _ 6 nsubj _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 run _ VERB VBP _ 0 root _ _ 7 well _ ADV RB _ 11 advmod _ _ 8 above _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 going _ ADJ VBG _ 11 amod _ _ 11 rate _ NOUN NN _ 6 nmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 other _ ADJ JJ _ 15 amod _ _ 14 U.S. _ PROPN NNP _ 15 compound _ _ 15 cities _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Madison _ PROPN NNP _ 4 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Fifth _ PROPN NNP _ 1 conj _ _ 4 Avenues _ PROPN NNPS _ 10 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 East _ PROPN NNP _ 8 compound _ _ 7 57th _ PROPN JJ _ 8 compound _ _ 8 Street _ PROPN NN _ 4 conj _ _ 9 can _ AUX MD _ 10 aux _ _ 10 command _ VERB VB _ 0 root _ _ 11 rents _ NOUN NNS _ 10 dobj _ _ 12 of _ ADP IN _ 15 case _ _ 13 up _ ADV RB _ 15 advmod _ _ 14 to _ ADP TO _ 15 dep _ _ 15 $ _ SYM $ _ 11 nmod _ _ 16 500 _ NUM CD _ 15 nummod _ _ 17 a _ DET DT _ 19 det _ _ 18 square _ ADJ JJ _ 19 amod _ _ 19 foot _ NOUN NN _ 15 nmod:npmod _ _ 20 , _ PUNCT , _ 10 punct _ _ 21 and _ CONJ CC _ 10 cc _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 250 _ NUM CD _ 26 nsubj _ _ 24 is _ VERB VBZ _ 26 cop _ _ 25 not _ ADV RB _ 26 neg _ _ 26 uncommon _ ADJ JJ _ 10 conj _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 thriving _ VERB VBG _ 5 amod _ _ 3 34th _ PROPN NNP _ 5 compound _ _ 4 Street _ PROPN NNP _ 5 compound _ _ 5 area _ NOUN NN _ 6 nsubj _ _ 6 offers _ VERB VBZ _ 0 root _ _ 7 rents _ NOUN NNS _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 $ _ SYM $ _ 7 nmod _ _ 11 100 _ NUM CD _ 10 nummod _ _ 12 a _ DET DT _ 14 det _ _ 13 square _ ADJ JJ _ 14 amod _ _ 14 foot _ NOUN NN _ 10 nmod:npmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 as _ SCONJ IN _ 17 dep _ _ 17 do _ VERB VBP _ 6 advcl _ _ 18 up-and-coming _ ADJ JJ _ 19 amod _ _ 19 locations _ NOUN NNS _ 17 nsubj _ _ 20 along _ ADP IN _ 23 case _ _ 21 lower _ ADJ JJR _ 23 amod _ _ 22 Fifth _ PROPN NNP _ 23 compound _ _ 23 Avenue _ PROPN NNP _ 19 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 contrast _ NOUN NN _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 rentals _ NOUN NNS _ 18 nsubj _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 best _ ADJ JJS _ 9 amod _ _ 8 retail _ ADJ JJ _ 9 amod _ _ 9 locations _ NOUN NNS _ 4 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Boston _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 San _ PROPN NNP _ 14 compound _ _ 14 Francisco _ PROPN NNP _ 11 conj _ _ 15 and _ CONJ CC _ 11 cc _ _ 16 Chicago _ PROPN NNP _ 11 conj _ _ 17 rarely _ ADV RB _ 18 advmod _ _ 18 top _ VERB JJ _ 0 root _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 100 _ NUM CD _ 18 dobj _ _ 21 a _ DET DT _ 23 det _ _ 22 square _ ADJ JJ _ 23 amod _ _ 23 foot _ NOUN NN _ 20 nmod:npmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 And _ CONJ CC _ 12 cc _ _ 2 rents _ NOUN NNS _ 12 nsubj _ _ 3 on _ ADP IN _ 8 case _ _ 4 Beverly _ PROPN NNP _ 5 compound _ _ 5 Hills _ PROPN NNP _ 8 nmod:poss _ _ 6 ' _ PART POS _ 5 case _ _ 7 Rodeo _ PROPN NNP _ 8 compound _ _ 8 Drive _ PROPN NNP _ 2 nmod _ _ 9 generally _ ADV RB _ 12 advmod _ _ 10 do _ AUX VBP _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 exceed _ VERB VB _ 0 root _ _ 13 about _ ADV IN _ 15 advmod _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 125 _ NUM CD _ 12 dobj _ _ 16 a _ DET DT _ 18 det _ _ 17 square _ ADJ JJ _ 18 amod _ _ 18 foot _ NOUN NN _ 15 nmod:npmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 securities _ NOUN NNS _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 begin _ VERB VB _ 6 ccomp _ _ 11 trading _ VERB VBG _ 10 xcomp _ _ 12 this _ DET DT _ 13 det _ _ 13 week _ NOUN NN _ 10 nmod:tmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Precision _ PROPN NNP _ 3 compound _ _ 2 Castparts _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Portland _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Ore. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 begin _ VERB VB _ 0 root _ _ 11 trading _ VERB VBG _ 10 xcomp _ _ 12 with _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 symbol _ NOUN NN _ 11 nmod _ _ 15 PCP _ PROPN NN _ 14 appos _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 makes _ VERB VBZ _ 0 root _ _ 3 investment _ NOUN NN _ 4 compound _ _ 4 castings _ NOUN NNS _ 2 dobj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 traded _ VERB VBN _ 2 conj _ _ 8 over-the-counter _ ADV JJ _ 7 xcomp _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Royal _ PROPN NNP _ 2 compound _ _ 2 Bank _ PROPN NNP _ 18 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 Scotland _ PROPN NNP _ 6 compound _ _ 5 Group _ PROPN NNP _ 6 compound _ _ 6 PLC _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 an _ DET DT _ 15 det _ _ 9 Edinburgh _ PROPN NNP _ 15 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Scotland _ PROPN NNP _ 9 dep _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 financial _ ADJ JJ _ 15 amod _ _ 14 services _ NOUN NNS _ 15 compound _ _ 15 company _ NOUN NN _ 2 appos _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 will _ AUX MD _ 18 aux _ _ 18 list _ VERB VB _ 0 root _ _ 19 American _ ADJ JJ _ 21 amod _ _ 20 depositary _ ADJ JJ _ 21 amod _ _ 21 shares _ NOUN NNS _ 18 dobj _ _ 22 , _ PUNCT , _ 18 punct _ _ 23 representing _ VERB VBG _ 18 advcl _ _ 24 preferred _ ADJ JJ _ 25 amod _ _ 25 shares _ NOUN NNS _ 23 dobj _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 with _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 symbol _ NOUN NN _ 23 nmod _ _ 30 RBSPr _ PROPN NN _ 29 appos _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 continue _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 trade _ VERB VB _ 3 xcomp _ _ 6 on _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 International _ PROPN NNP _ 10 compound _ _ 9 Stock _ PROPN NNP _ 10 compound _ _ 10 Exchange _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 London _ PROPN NNP _ 10 appos _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 American _ PROPN NNP _ 4 compound _ _ 3 Stock _ PROPN NNP _ 4 compound _ _ 4 Exchange _ PROPN NNP _ 5 nsubj _ _ 5 listed _ VERB VBD _ 0 root _ _ 6 shares _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 companies _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 AIM _ PROPN NN _ 3 compound _ _ 2 Telephones _ PROPN NNPS _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 13 det _ _ 6 Parsippany _ PROPN NNP _ 13 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 N.J. _ PROPN NNP _ 6 dep _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 telecommunications _ NOUN NN _ 13 compound _ _ 11 equipment _ NOUN NN _ 13 compound _ _ 12 supply _ NOUN NN _ 13 compound _ _ 13 company _ NOUN NN _ 3 appos _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 started _ VERB VBD _ 0 root _ _ 16 trading _ VERB VBG _ 15 xcomp _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 symbol _ NOUN NN _ 16 nmod _ _ 20 AIM _ PROPN NN _ 19 appos _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 had _ AUX VBD _ 3 aux _ _ 3 traded _ VERB VBN _ 0 root _ _ 4 over-the-counter _ ADV JJ _ 3 xcomp _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 Columbia _ PROPN NNP _ 3 compound _ _ 2 Laboratories _ PROPN NNPS _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 7 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Miami _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 began _ VERB VBD _ 0 root _ _ 8 trading _ VERB VBG _ 7 xcomp _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 symbol _ NOUN NN _ 8 nmod _ _ 12 COB _ PROPN NNP _ 11 appos _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 pharmaceuticals _ NOUN NNS _ 3 compound _ _ 3 maker _ NOUN NN _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 traded _ VERB VBN _ 0 root _ _ 6 over-the-counter _ ADV JJ _ 5 xcomp _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 National _ PROPN NNP _ 4 compound _ _ 3 Market _ PROPN NNP _ 4 compound _ _ 4 System _ PROPN NNP _ 10 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 Nasdaq _ PROPN NNP _ 9 compound _ _ 8 over-the-counter _ ADJ JJ _ 9 amod _ _ 9 market _ NOUN NN _ 4 nmod _ _ 10 listed _ VERB VBN _ 0 root _ _ 11 shares _ NOUN NNS _ 10 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 one _ NUM CD _ 14 nummod _ _ 14 company _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Employee _ PROPN NNP _ 4 compound _ _ 2 Benefit _ PROPN NNP _ 4 compound _ _ 3 Plans _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 13 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 10 det _ _ 7 Minneapolis _ NOUN NNP _ 10 compound _ _ 8 health-care _ NOUN NN _ 10 compound _ _ 9 services _ NOUN NNS _ 10 compound _ _ 10 company _ NOUN NN _ 4 appos _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 listed _ VERB VBN _ 0 root _ _ 14 with _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 symbol _ NOUN NN _ 13 nmod _ _ 17 EBPI _ PROPN NN _ 16 appos _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 Justice _ PROPN NNP _ 4 compound _ _ 3 William _ PROPN NNP _ 4 compound _ _ 4 Brennan _ PROPN NNP _ 5 nsubj _ _ 5 marks _ VERB VBZ _ 21 advcl _ _ 6 the _ DET DT _ 7 det _ _ 7 start _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 his _ PRON PRP$ _ 11 nmod:poss _ _ 10 34th _ ADJ JJ _ 11 amod _ _ 11 year _ NOUN NN _ 7 nmod _ _ 12 on _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Supreme _ PROPN NNP _ 15 compound _ _ 15 Court _ PROPN NNP _ 11 nmod _ _ 16 today _ NOUN NN _ 5 nmod:tmod _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 occasion _ NOUN NN _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 differ _ VERB VB _ 0 root _ _ 22 sharply _ ADV RB _ 21 advmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 previous _ ADJ JJ _ 25 amod _ _ 25 anniversaries _ NOUN NNS _ 21 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 his _ PRON PRP$ _ 28 nmod:poss _ _ 28 tenure _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 21 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 first _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 83-year-old _ ADJ JJ _ 8 amod _ _ 8 justice _ NOUN NN _ 9 nsubj _ _ 9 finds _ VERB VBZ _ 0 root _ _ 10 his _ PRON PRP$ _ 11 nmod:poss _ _ 11 influence _ NOUN NN _ 9 dobj _ _ 12 almost _ ADV RB _ 13 advmod _ _ 13 exclusively _ ADV RB _ 15 advmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 dissent _ NOUN NN _ 9 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 rather _ ADV RB _ 15 cc _ _ 18 than _ ADP IN _ 17 mwe _ _ 19 as _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 force _ NOUN NN _ 15 conj _ _ 22 in _ ADP IN _ 27 case _ _ 23 the _ DET DT _ 25 det _ _ 24 high _ ADJ JJ _ 25 amod _ _ 25 court _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 majority _ NOUN NN _ 21 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 role _ NOUN NN _ 3 compound _ _ 3 reversal _ NOUN NN _ 4 nsubj _ _ 4 holds _ VERB VBZ _ 0 root _ _ 5 true _ ADJ JJ _ 4 xcomp _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 as _ ADP RB _ 8 case _ _ 8 well _ ADV RB _ 4 advmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 for _ ADP IN _ 16 case _ _ 11 his _ PRON PRP$ _ 16 nmod:poss _ _ 12 three _ NUM CD _ 16 nummod _ _ 13 liberal _ ADJ JJ _ 16 amod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 moderate _ ADJ JJ _ 13 conj _ _ 16 allies _ NOUN NNS _ 4 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Justices _ PROPN NNPS _ 23 compound _ _ 19 Thurgood _ PROPN NNP _ 23 compound _ _ 20 Marshall _ PROPN NNP _ 23 compound _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 Harry _ PROPN NNP _ 23 appos _ _ 23 Blackmun _ PROPN NNP _ 16 appos _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 John _ PROPN NNP _ 26 compound _ _ 26 Stevens _ PROPN NNP _ 23 conj _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 are _ VERB VBP _ 14 cop _ _ 3 these _ DET DT _ 5 det _ _ 4 four _ NUM CD _ 5 nummod _ _ 5 players _ NOUN NNS _ 14 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 three _ NUM CD _ 5 appos _ _ 8 of _ ADP IN _ 9 case _ _ 9 them _ PRON PRP _ 7 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 their _ PRON PRP$ _ 12 nmod:poss _ _ 12 80s _ NOUN CD _ 7 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 ready _ ADJ JJ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 assume _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 19 det _ _ 18 different _ ADJ JJ _ 19 amod _ _ 19 role _ NOUN NN _ 16 dobj _ _ 20 after _ ADP IN _ 22 case _ _ 21 88 _ NUM CD _ 22 nummod _ _ 22 years _ NOUN NNS _ 16 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 collectively _ ADV RB _ 22 advmod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 of _ ADP IN _ 27 case _ _ 27 service _ NOUN NN _ 22 nmod _ _ 28 on _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 high _ ADJ JJ _ 31 amod _ _ 31 court _ NOUN NN _ 22 nmod _ _ 32 ? _ PUNCT . _ 14 punct _ _ 1 Every _ DET DT _ 2 det _ _ 2 indication _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 four _ NUM CD _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 prepared _ ADJ VBN _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 accept _ VERB VB _ 8 xcomp _ _ 11 this _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 role _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 frustrations _ NOUN NNS _ 13 conj _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 go _ VERB VBP _ 17 acl:relcl _ _ 20 with _ ADP IN _ 21 case _ _ 21 it _ PRON PRP _ 19 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 in _ ADP IN _ 26 case _ _ 25 different _ ADJ JJ _ 26 amod _ _ 26 ways _ NOUN NNS _ 10 conj _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Justices _ PROPN NNPS _ 2 compound _ _ 2 Brennan _ PROPN NNP _ 5 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Stevens _ PROPN NNP _ 2 conj _ _ 5 appear _ VERB VBP _ 0 root _ _ 6 philosophical _ ADJ JJ _ 5 xcomp _ _ 7 about _ ADP IN _ 8 case _ _ 8 it _ PRON PRP _ 6 nmod _ _ 9 ; _ PUNCT : _ 5 punct _ _ 10 Justices _ PROPN NNPS _ 11 compound _ _ 11 Marshall _ PROPN NNP _ 14 nsubj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Blackmun _ PROPN NNP _ 11 conj _ _ 14 appear _ VERB VBP _ 5 parataxis _ _ 15 fighting _ NOUN VBG _ 16 nmod:npmod _ _ 16 mad _ ADJ JJ _ 14 xcomp _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 four _ NUM CD _ 3 nummod _ _ 3 justices _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 no _ DET DT _ 6 neg _ _ 6 newcomers _ NOUN NNS _ 0 root _ _ 7 to _ ADP TO _ 8 case _ _ 8 dissent _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 often _ ADV RB _ 11 advmod _ _ 11 joining _ VERB VBG _ 6 advcl _ _ 12 forces _ NOUN NNS _ 11 dobj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 past _ ADJ JJ _ 16 amod _ _ 16 decade _ NOUN NN _ 11 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 criticize _ VERB VB _ 11 advcl _ _ 19 the _ DET DT _ 20 det _ _ 20 court _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 conservative _ ADJ JJ _ 23 amod _ _ 23 drift _ NOUN NN _ 18 dobj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 always _ ADV RB _ 10 advmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 in _ ADP IN _ 5 case _ _ 5 years _ NOUN NNS _ 10 nmod _ _ 6 past _ ADJ RB _ 5 amod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 they _ PRON PRP _ 10 nsubj _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 bucked _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 trend _ NOUN NN _ 10 dobj _ _ 13 and _ CONJ CC _ 10 cc _ _ 14 have _ AUX VBP _ 16 aux _ _ 15 been _ VERB VBN _ 16 cop _ _ 16 able _ ADJ JJ _ 10 conj _ _ 17 to _ PART TO _ 18 mark _ _ 18 pick _ VERB VB _ 16 xcomp _ _ 19 up _ ADP RP _ 18 compound:prt _ _ 20 a _ DET DT _ 22 det _ _ 21 fifth _ ADJ JJ _ 22 amod _ _ 22 vote _ NOUN NN _ 18 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 eke _ VERB VB _ 18 advcl _ _ 25 out _ ADP RP _ 24 compound:prt _ _ 26 a _ DET DT _ 27 det _ _ 27 number _ NOUN NN _ 24 dobj _ _ 28 of _ ADP IN _ 30 case _ _ 29 major _ ADJ JJ _ 30 amod _ _ 30 victories _ NOUN NNS _ 27 nmod _ _ 31 in _ ADP IN _ 33 case _ _ 32 civil _ ADJ JJ _ 33 amod _ _ 33 rights _ NOUN NNS _ 30 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 liberties _ NOUN NNS _ 36 compound _ _ 36 cases _ NOUN NNS _ 33 conj _ _ 37 . _ PUNCT . _ 10 punct _ _ 1 Now _ ADV RB _ 22 advmod _ _ 2 , _ PUNCT , _ 22 punct _ _ 3 however _ ADV RB _ 22 advmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 as _ SCONJ IN _ 13 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 court _ NOUN NN _ 12 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 new _ ADJ JJ _ 12 amod _ _ 10 five-member _ ADJ JJ _ 12 amod _ _ 11 conservative _ ADJ JJ _ 12 amod _ _ 12 majority _ NOUN NN _ 13 nsubj _ _ 13 continues _ VERB VBZ _ 22 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 solidify _ VERB VB _ 13 xcomp _ _ 16 , _ PUNCT , _ 22 punct _ _ 17 victories _ NOUN NNS _ 22 nsubj _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 liberals _ NOUN NNS _ 17 nmod _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 rare _ ADJ JJ _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 change _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 most _ ADV RBS _ 5 advmod _ _ 5 dramatic _ ADJ JJ _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 Justice _ PROPN NNP _ 8 compound _ _ 8 Brennan _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 survivor _ NOUN NN _ 8 appos _ _ 13 of _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 mid-1960s _ NOUN CD _ 17 compound _ _ 16 liberal _ ADJ JJ _ 17 amod _ _ 17 majority _ NOUN NN _ 12 nmod _ _ 18 under _ ADP IN _ 22 case _ _ 19 Chief _ PROPN NNP _ 22 compound _ _ 20 Justice _ PROPN NNP _ 22 compound _ _ 21 Earl _ PROPN NNP _ 22 compound _ _ 22 Warren _ PROPN NNP _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 the _ DET DT _ 6 det _ _ 3 seven _ NUM CD _ 6 nummod _ _ 4 Supreme _ PROPN NNP _ 6 compound _ _ 5 Court _ PROPN NNP _ 6 compound _ _ 6 terms _ NOUN NNS _ 29 nmod _ _ 7 from _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 fall _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 1962 _ NUM CD _ 9 nmod _ _ 12 through _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 spring _ NOUN NN _ 9 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 1967 _ NUM CD _ 14 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 height _ NOUN NN _ 6 appos _ _ 20 of _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 23 det _ _ 22 Warren _ PROPN NNP _ 23 compound _ _ 23 Court _ PROPN NNP _ 25 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 power _ NOUN NN _ 19 nmod _ _ 26 , _ PUNCT , _ 6 punct _ _ 27 Justice _ PROPN NNP _ 28 compound _ _ 28 Brennan _ PROPN NNP _ 29 nsubj _ _ 29 cast _ VERB VBD _ 0 root _ _ 30 only _ ADV RB _ 31 advmod _ _ 31 25 _ NUM CD _ 33 nummod _ _ 32 dissenting _ ADJ VBG _ 33 amod _ _ 33 votes _ NOUN NNS _ 29 dobj _ _ 34 in _ ADP IN _ 36 case _ _ 35 555 _ NUM CD _ 36 nummod _ _ 36 cases _ NOUN NNS _ 29 nmod _ _ 37 decided _ VERB VBN _ 36 acl _ _ 38 by _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 court _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 29 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 term _ NOUN NN _ 5 nmod:tmod _ _ 3 alone _ ADV RB _ 2 advmod _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 cast _ VERB VBD _ 0 root _ _ 6 52 _ NUM CD _ 8 nummod _ _ 7 dissenting _ ADJ VBG _ 8 amod _ _ 8 votes _ NOUN NNS _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 133 _ NUM CD _ 11 nummod _ _ 11 decisions _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 with _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 contentious _ ADJ JJ _ 17 amod _ _ 16 flag-burning _ NOUN NN _ 17 compound _ _ 17 ruling _ NOUN NN _ 5 nmod _ _ 18 as _ ADP IN _ 22 case _ _ 19 his _ PRON PRP$ _ 22 nmod:poss _ _ 20 only _ ADJ RB _ 22 amod _ _ 21 big _ ADJ JJ _ 22 amod _ _ 22 victory _ NOUN NN _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Justice _ PROPN NNP _ 3 compound _ _ 3 Brennan _ PROPN NNP _ 4 nsubj _ _ 4 foresaw _ VERB VBD _ 0 root _ _ 5 his _ PRON PRP$ _ 7 nmod:poss _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 role _ NOUN NN _ 4 dobj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 strongly _ ADV RB _ 10 advmod _ _ 10 defending _ VERB VBG _ 4 advcl _ _ 11 the _ DET DT _ 12 det _ _ 12 importance _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 dissents _ NOUN NNS _ 12 nmod _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 1985 _ NUM CD _ 18 nummod _ _ 18 speech _ NOUN NN _ 10 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 Each _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 14 nmod:tmod _ _ 4 the _ DET DT _ 5 det _ _ 5 court _ NOUN NN _ 6 nsubj _ _ 6 revisits _ VERB VBZ _ 3 acl:relcl _ _ 7 an _ DET DT _ 8 det _ _ 8 issue _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 justices _ NOUN NNS _ 14 nsubjpass _ _ 12 will _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 forced _ VERB VBN _ 31 ccomp _ _ 15 by _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 dissent _ NOUN NN _ 14 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 reconsider _ VERB VB _ 14 ccomp _ _ 20 the _ DET DT _ 22 det _ _ 21 fundamental _ ADJ JJ _ 22 amod _ _ 22 questions _ NOUN NNS _ 19 dobj _ _ 23 and _ CONJ CC _ 19 cc _ _ 24 to _ PART TO _ 25 mark _ _ 25 rethink _ VERB VB _ 19 conj _ _ 26 the _ DET DT _ 27 det _ _ 27 result _ NOUN NN _ 25 dobj _ _ 28 , _ PUNCT , _ 31 punct _ _ 29 '' _ PUNCT '' _ 31 punct _ _ 30 he _ PRON PRP _ 31 nsubj _ _ 31 said _ VERB VBD _ 0 root _ _ 32 . _ PUNCT . _ 31 punct _ _ 1 Moreover _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 recent _ ADJ JJ _ 5 amod _ _ 5 months _ NOUN NNS _ 8 nmod _ _ 6 he _ PRON PRP _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 said _ VERB VBN _ 0 root _ _ 9 that _ SCONJ IN _ 22 mark _ _ 10 when _ ADV WRB _ 16 advmod _ _ 11 he _ PRON PRP _ 16 nsubj _ _ 12 was _ VERB VBD _ 16 cop _ _ 13 on _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 winning _ VERB VBG _ 16 amod _ _ 16 side _ NOUN NN _ 22 advcl _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 1960s _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 22 punct _ _ 21 he _ PRON PRP _ 22 nsubj _ _ 22 knew _ VERB VBD _ 8 ccomp _ _ 23 that _ SCONJ IN _ 27 mark _ _ 24 the _ DET DT _ 25 det _ _ 25 tables _ NOUN NNS _ 27 nsubj _ _ 26 might _ AUX MD _ 27 aux _ _ 27 turn _ VERB VB _ 22 ccomp _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 future _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 he _ PRON PRP _ 7 nsubj _ _ 6 now _ ADV RB _ 7 advmod _ _ 7 knows _ VERB VBZ _ 3 ccomp _ _ 8 how _ ADV WRB _ 12 advmod _ _ 9 Justice _ PROPN NNP _ 11 compound _ _ 10 John _ PROPN NNP _ 11 compound _ _ 11 Harlan _ PROPN NNP _ 12 nsubj _ _ 12 felt _ VERB VBD _ 7 ccomp _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 reference _ NOUN NN _ 3 nmod:npmod _ _ 16 to _ ADP TO _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 late _ ADJ JJ _ 20 amod _ _ 19 conservative _ ADJ JJ _ 20 amod _ _ 20 justice _ NOUN NN _ 15 nmod _ _ 21 who _ PRON WP _ 26 nsubj _ _ 22 was _ VERB VBD _ 26 cop _ _ 23 the _ DET DT _ 26 det _ _ 24 most _ ADV RBS _ 25 advmod _ _ 25 frequent _ ADJ JJ _ 26 amod _ _ 26 dissenter _ NOUN NN _ 20 acl:relcl _ _ 27 from _ ADP IN _ 32 case _ _ 28 the _ DET DT _ 30 det _ _ 29 Warren _ PROPN NNP _ 30 compound _ _ 30 Court _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 opinions _ NOUN NNS _ 26 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Associates _ NOUN NNPS _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 81-year-old _ ADJ JJ _ 5 amod _ _ 4 Justice _ PROPN NNP _ 5 compound _ _ 5 Marshall _ PROPN NNP _ 1 nmod _ _ 6 say _ VERB VBP _ 0 root _ _ 7 he _ PRON PRP _ 10 nsubj _ _ 8 was _ VERB VBD _ 10 cop _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 depressed _ ADJ JJ _ 6 ccomp _ _ 11 '' _ PUNCT '' _ 10 punct _ _ 12 about _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 14 det _ _ 14 court _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 direction _ NOUN NN _ 10 nmod _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 spring _ NOUN NN _ 10 nmod:tmod _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 but _ CONJ CC _ 10 cc _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 feisty _ ADJ JJ _ 10 conj _ _ 23 about _ ADP IN _ 25 case _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 role _ NOUN NN _ 22 nmod _ _ 26 and _ CONJ CC _ 22 cc _ _ 27 determined _ ADJ VBN _ 22 conj _ _ 28 to _ PART TO _ 29 mark _ _ 29 speak _ VERB VB _ 27 xcomp _ _ 30 out _ ADP IN _ 29 compound:prt _ _ 31 against _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 33 det _ _ 33 court _ NOUN NN _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 cutbacks _ NOUN NNS _ 29 nmod _ _ 36 in _ ADP IN _ 38 case _ _ 37 civil _ ADJ JJ _ 38 amod _ _ 38 rights _ NOUN NNS _ 35 nmod _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 could _ AUX MD _ 4 aux _ _ 4 sweep _ VERB NN _ 24 ccomp _ _ 5 it _ PRON PRP _ 4 dobj _ _ 6 under _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 rug _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 hide _ VERB VB _ 4 conj _ _ 11 it _ PRON PRP _ 10 dobj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 but _ CONJ CC _ 4 cc _ _ 14 I _ PRON PRP _ 17 nsubj _ _ 15 'm _ AUX VBP _ 17 aux _ _ 16 not _ PART RB _ 17 neg _ _ 17 going _ VERB VBG _ 4 conj _ _ 18 to _ PART TO _ 19 mark _ _ 19 do _ VERB VB _ 17 xcomp _ _ 20 it _ PRON PRP _ 19 dobj _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 '' _ PUNCT '' _ 24 punct _ _ 23 he _ PRON PRP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 in _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 speech _ NOUN NN _ 24 nmod _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 month _ NOUN NN _ 24 nmod:tmod _ _ 30 . _ PUNCT . _ 24 punct _ _ 1 He _ PRON PRP _ 7 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 like _ ADP IN _ 5 case _ _ 4 Justice _ PROPN NNP _ 5 compound _ _ 5 Brennan _ PROPN NNP _ 7 ccomp _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 considers _ VERB VBZ _ 0 root _ _ 8 dissents _ NOUN NNS _ 10 nsubj _ _ 9 highly _ ADV RB _ 10 advmod _ _ 10 important _ ADJ JJ _ 7 xcomp _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 future _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 point _ NOUN NN _ 7 nmod:npmod _ _ 17 that _ DET WDT _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 escaped _ VERB VBD _ 16 acl:relcl _ _ 21 legal _ ADJ JJ _ 22 amod _ _ 22 scholars _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 Harvard _ PROPN NNP _ 6 compound _ _ 2 Law _ PROPN NNP _ 6 compound _ _ 3 School _ PROPN NNP _ 6 compound _ _ 4 Professor _ PROPN NNP _ 6 compound _ _ 5 Laurence _ PROPN NNP _ 6 compound _ _ 6 Tribe _ PROPN NNP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 0 root _ _ 8 there _ PRON EX _ 9 expl _ _ 9 is _ VERB VBZ _ 7 ccomp _ _ 10 a _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 generation-skipping _ ADJ JJ _ 14 amod _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 flavor _ NOUN NN _ 9 nsubj _ _ 15 to _ ADP TO _ 17 case _ _ 16 current _ ADJ JJ _ 17 amod _ _ 17 dissents _ NOUN NNS _ 9 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dissenters _ NOUN NNS _ 11 nsubj _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Warren _ PROPN NNP _ 6 compound _ _ 6 Court _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 says _ VERB VBZ _ 11 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 appeared _ VERB VBD _ 0 root _ _ 12 to _ PART TO _ 14 mark _ _ 13 be _ AUX VB _ 14 aux _ _ 14 writing _ VERB VBG _ 11 xcomp _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 short-term _ NOUN JJ _ 14 nmod _ _ 18 , _ PUNCT , _ 11 punct _ _ 19 suggesting _ VERB VBG _ 11 xcomp _ _ 20 that _ SCONJ IN _ 26 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 court _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 direction _ NOUN NN _ 26 nsubj _ _ 25 might _ AUX MD _ 26 aux _ _ 26 change _ VERB VB _ 19 ccomp _ _ 27 soon _ ADV RB _ 26 advmod _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 Brennan _ PROPN NNP _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Marshall _ PROPN NNP _ 2 conj _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 speaking _ VERB VBG _ 18 ccomp _ _ 7 in _ ADP IN _ 9 case _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 dissents _ NOUN NNS _ 6 nmod _ _ 10 to _ ADP TO _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 distant _ ADJ JJ _ 14 amod _ _ 14 future _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Justice _ PROPN NNP _ 2 compound _ _ 2 Blackmun _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 turn _ VERB VB _ 2 acl:relcl _ _ 7 81 _ NUM CD _ 6 dobj _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 month _ NOUN NN _ 6 nmod:tmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 also _ ADV RB _ 12 advmod _ _ 12 seems _ VERB VBZ _ 0 root _ _ 13 feisty _ ADJ JJ _ 12 xcomp _ _ 14 about _ ADP IN _ 17 case _ _ 15 his _ PRON PRP$ _ 17 nmod:poss _ _ 16 new _ ADJ JJ _ 17 amod _ _ 17 role _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 Associates _ NOUN NNS _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 takes _ VERB VBZ _ 2 ccomp _ _ 5 some _ DET DT _ 6 det _ _ 6 defeats _ NOUN VBZ _ 4 dobj _ _ 7 more _ ADV JJR _ 8 advmod _ _ 8 personally _ ADV RB _ 4 advmod _ _ 9 than _ ADP IN _ 11 case _ _ 10 his _ PRON PRP$ _ 11 nmod:poss _ _ 11 colleagues _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 especially _ ADV RB _ 14 advmod _ _ 14 attempts _ NOUN VBZ _ 4 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 curtail _ VERB VB _ 14 acl _ _ 17 the _ DET DT _ 18 det _ _ 18 right _ NOUN NN _ 16 dobj _ _ 19 to _ ADP TO _ 20 case _ _ 20 abortion _ NOUN NN _ 18 nmod _ _ 21 first _ ADV JJ _ 22 advmod _ _ 22 recognized _ VERB VBN _ 18 acl _ _ 23 in _ ADP IN _ 26 case _ _ 24 his _ PRON PRP$ _ 26 nmod:poss _ _ 25 1973 _ NUM CD _ 26 nummod _ _ 26 opinion _ NOUN NN _ 22 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Roe _ PROPN NNP _ 26 appos _ _ 29 vs. _ ADP FW _ 30 case _ _ 30 Wade _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 Friends _ NOUN NNPS _ 11 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 associates _ NOUN NNS _ 1 conj _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 saw _ VERB VBD _ 1 acl:relcl _ _ 6 Justice _ PROPN NNP _ 7 compound _ _ 7 Blackmun _ PROPN NNP _ 5 dobj _ _ 8 during _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 summer _ NOUN NN _ 5 nmod _ _ 11 said _ VERB VBD _ 0 root _ _ 12 he _ PRON PRP _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 no _ DET RB _ 15 neg _ _ 15 more _ ADV RBR _ 16 advmod _ _ 16 discouraged _ ADJ VBN _ 11 ccomp _ _ 17 about _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 court _ NOUN NN _ 16 nmod _ _ 20 than _ ADP IN _ 23 case _ _ 21 in _ ADP IN _ 23 case _ _ 22 recent _ ADJ JJ _ 23 amod _ _ 23 years _ NOUN NNS _ 16 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 outlook _ NOUN NN _ 4 nsubj _ _ 4 improved _ VERB VBN _ 0 root _ _ 5 after _ ADP IN _ 8 case _ _ 6 successful _ ADJ JJ _ 8 amod _ _ 7 cataract _ NOUN NN _ 8 compound _ _ 8 surgery _ NOUN NN _ 4 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 August _ PROPN NNP _ 8 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 level _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 frustration _ NOUN NN _ 3 nmod _ _ 6 showed _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 12 case _ _ 8 a _ DET DT _ 12 det _ _ 9 recent _ ADJ JJ _ 12 amod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 impassioned _ ADJ JJ _ 12 amod _ _ 12 speech _ NOUN NN _ 6 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 group _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 hundreds _ NOUN NNS _ 15 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 lawyers _ NOUN NNS _ 17 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 Chicago _ PROPN NNP _ 15 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 concluded _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 remarks _ NOUN NNS _ 2 dobj _ _ 5 by _ SCONJ IN _ 6 mark _ _ 6 quoting _ VERB VBG _ 2 advcl _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 emotionally _ ADV RB _ 9 advmod _ _ 9 and _ CONJ CC _ 6 advmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 some _ DET DT _ 12 det _ _ 12 length _ NOUN NN _ 9 conj _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 according _ VERB VBG _ 16 case _ _ 15 to _ ADP TO _ 14 mwe _ _ 16 those _ PRON DT _ 6 nmod _ _ 17 present _ ADJ JJ _ 16 amod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 the _ DET DT _ 23 det _ _ 20 late _ ADJ JJ _ 23 amod _ _ 21 Martin _ PROPN NNP _ 23 compound _ _ 22 Luther _ PROPN NNP _ 23 compound _ _ 23 King _ PROPN NNP _ 32 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 famous _ ADJ JJ _ 32 amod _ _ 26 `` _ PUNCT `` _ 32 punct _ _ 27 I _ PRON PRP _ 28 nsubj _ _ 28 Have _ VERB VBP _ 32 dep _ _ 29 a _ DET DT _ 30 det _ _ 30 Dream _ NOUN NN _ 28 dobj _ _ 31 '' _ PUNCT '' _ 32 punct _ _ 32 speech _ NOUN NN _ 6 dobj _ _ 33 from _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 1963 _ NUM CD _ 36 nummod _ _ 36 March _ PROPN NNP _ 32 nmod _ _ 37 on _ ADP IN _ 38 case _ _ 38 Washington _ PROPN NNP _ 36 nmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Justice _ PROPN NNP _ 2 compound _ _ 2 Stevens _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 69 _ NUM CD _ 2 amod _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 is _ VERB VBZ _ 10 cop _ _ 7 probably _ ADV RB _ 10 advmod _ _ 8 the _ DET DT _ 10 det _ _ 9 most _ ADV RBS _ 10 advmod _ _ 10 philosophical _ ADJ JJ _ 0 root _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 dissenters _ NOUN NNS _ 10 nmod _ _ 14 about _ ADP IN _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 role _ NOUN NN _ 10 nmod _ _ 17 , _ PUNCT , _ 10 punct _ _ 18 in _ ADP IN _ 19 case _ _ 19 part _ NOUN NN _ 26 nmod _ _ 20 because _ SCONJ IN _ 26 mark _ _ 21 he _ PRON PRP _ 26 nsubj _ _ 22 may _ AUX MD _ 26 aux _ _ 23 be _ VERB VB _ 26 cop _ _ 24 the _ DET DT _ 26 det _ _ 25 least _ ADJ JJS _ 26 dep _ _ 26 liberal _ NOUN NN _ 10 advcl _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 four _ NUM CD _ 26 nmod _ _ 30 , _ PUNCT , _ 26 punct _ _ 31 but _ CONJ CC _ 26 cc _ _ 32 also _ ADV RB _ 26 advmod _ _ 33 because _ SCONJ IN _ 35 mark _ _ 34 he _ PRON PRP _ 35 nsubj _ _ 35 enjoys _ VERB VBZ _ 26 dep _ _ 36 the _ DET DT _ 38 det _ _ 37 intellectual _ ADJ JJ _ 38 amod _ _ 38 challenge _ NOUN NN _ 35 dobj _ _ 39 of _ SCONJ IN _ 40 mark _ _ 40 arguing _ VERB VBG _ 38 acl _ _ 41 with _ ADP IN _ 43 case _ _ 42 the _ DET DT _ 43 det _ _ 43 majority _ NOUN NN _ 40 nmod _ _ 44 more _ ADV RBR _ 35 advmod _ _ 45 than _ ADP IN _ 47 case _ _ 46 the _ DET DT _ 47 det _ _ 47 others _ NOUN NNS _ 44 nmod _ _ 48 . _ PUNCT . _ 10 punct _ _ 1 If _ SCONJ IN _ 12 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 role _ NOUN NN _ 12 nsubj _ _ 4 these _ DET DT _ 6 det _ _ 5 four _ NUM CD _ 6 nummod _ _ 6 dissenters _ NOUN NNS _ 8 nsubj _ _ 7 are _ AUX VBP _ 8 aux _ _ 8 assuming _ VERB VBG _ 3 acl:relcl _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 a _ DET DT _ 12 det _ _ 11 familiar _ ADJ JJ _ 12 amod _ _ 12 one _ NUM CD _ 21 advcl _ _ 13 in _ ADP IN _ 17 case _ _ 14 modern _ ADJ JJ _ 17 amod _ _ 15 Supreme _ PROPN NNP _ 17 compound _ _ 16 Court _ PROPN NNP _ 17 compound _ _ 17 history _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 it _ PRON PRP _ 21 nsubj _ _ 20 also _ ADV RB _ 21 advmod _ _ 21 differs _ VERB VBZ _ 32 ccomp _ _ 22 in _ ADP IN _ 25 case _ _ 23 an _ DET DT _ 25 det _ _ 24 important _ ADJ JJ _ 25 amod _ _ 25 way _ NOUN NN _ 21 nmod _ _ 26 from _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 history _ NOUN NN _ 21 nmod _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 court _ NOUN NN _ 31 compound _ _ 31 watchers _ NOUN NNS _ 32 nsubj _ _ 32 say _ VERB VBP _ 0 root _ _ 33 . _ PUNCT . _ 32 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 dissenters _ NOUN NNS _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Warren _ PROPN NNP _ 7 compound _ _ 7 Court _ PROPN NNP _ 3 nmod _ _ 8 were _ AUX VBD _ 10 aux _ _ 9 often _ ADV RB _ 10 advmod _ _ 10 defending _ VERB VBG _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 legal _ ADJ JJ _ 13 amod _ _ 13 legacy _ NOUN NN _ 10 dobj _ _ 14 that _ ADP IN _ 16 dobj _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 inherited _ VERB VBD _ 13 acl:relcl _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 10 dep _ _ 20 Prof. _ PROPN NNP _ 23 compound _ _ 21 A.E. _ PROPN NNP _ 23 compound _ _ 22 Dick _ PROPN NNP _ 23 compound _ _ 23 Howard _ PROPN NNP _ 19 dep _ _ 24 of _ ADP IN _ 30 case _ _ 25 the _ DET DT _ 26 det _ _ 26 University _ PROPN NNP _ 30 dep _ _ 27 of _ ADP IN _ 28 case _ _ 28 Virginia _ PROPN NNP _ 26 nmod _ _ 29 Law _ PROPN NNP _ 30 compound _ _ 30 School _ PROPN NNP _ 23 nmod _ _ 31 , _ PUNCT , _ 19 punct _ _ 32 `` _ PUNCT `` _ 10 punct _ _ 33 but _ CONJ CC _ 10 cc _ _ 34 the _ DET DT _ 35 det _ _ 35 dissenters _ NOUN NNS _ 38 nsubj _ _ 36 today _ NOUN NN _ 35 nmod:tmod _ _ 37 are _ AUX VBP _ 38 aux _ _ 38 defending _ VERB VBG _ 10 conj _ _ 39 a _ DET DT _ 40 det _ _ 40 legacy _ NOUN NN _ 38 dobj _ _ 41 that _ ADP IN _ 43 dobj _ _ 42 they _ PRON PRP _ 43 nsubj _ _ 43 created _ VERB VBD _ 40 acl:relcl _ _ 44 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 3 nsubj _ _ 3 sold _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 deposits _ NOUN NNS _ 3 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 four _ NUM CD _ 9 nummod _ _ 8 savings-and-loan _ ADJ NN _ 9 amod _ _ 9 institutions _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 in _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 first _ ADJ JJ _ 14 amod _ _ 14 wave _ NOUN NN _ 3 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 sales _ NOUN NNS _ 14 nmod _ _ 17 of _ ADP IN _ 21 case _ _ 18 big _ ADJ JJ _ 21 amod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 sick _ ADJ JJ _ 21 amod _ _ 21 thrifts _ NOUN NNS _ 16 nmod _ _ 22 , _ PUNCT , _ 3 punct _ _ 23 but _ CONJ CC _ 3 cc _ _ 24 low _ ADJ JJ _ 25 amod _ _ 25 bids _ NOUN NNS _ 26 nsubj _ _ 26 prevented _ VERB VBD _ 3 conj _ _ 27 the _ DET DT _ 28 det _ _ 28 sale _ NOUN NN _ 26 dobj _ _ 29 of _ ADP IN _ 31 case _ _ 30 a _ DET DT _ 31 det _ _ 31 fifth _ ADJ JJ _ 28 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 four _ NUM CD _ 3 nummod _ _ 3 S&Ls _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 sold _ VERB VBN _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 large _ ADJ JJ _ 8 amod _ _ 8 banks _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 as _ SCONJ RB _ 13 mark _ _ 11 was _ VERB VBD _ 13 cop _ _ 12 the _ DET DT _ 13 det _ _ 13 case _ NOUN NN _ 5 advcl _ _ 14 with _ ADP IN _ 15 case _ _ 15 most _ ADJ JJS _ 13 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 28 _ NUM CD _ 20 nummod _ _ 19 previous _ ADJ JJ _ 20 amod _ _ 20 transactions _ NOUN NNS _ 15 nmod _ _ 21 initiated _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Resolution _ PROPN NNP _ 26 compound _ _ 25 Trust _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 21 nmod _ _ 27 since _ SCONJ IN _ 30 mark _ _ 28 it _ PRON PRP _ 30 nsubjpass _ _ 29 was _ AUX VBD _ 30 auxpass _ _ 30 created _ VERB VBN _ 21 advcl _ _ 31 in _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 S&L _ NOUN NN _ 35 compound _ _ 34 bailout _ NOUN NN _ 35 compound _ _ 35 legislation _ NOUN NN _ 30 nmod _ _ 36 two _ NUM CD _ 37 nummod _ _ 37 months _ NOUN NNS _ 38 nmod:npmod _ _ 38 ago _ ADV RB _ 30 advmod _ _ 39 . _ PUNCT . _ 5 punct _ _ 1 Two _ NUM CD _ 8 nsubjpass _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 four _ NUM CD _ 6 nummod _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 thrifts _ NOUN NNS _ 1 nmod _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 sold _ VERB VBN _ 0 root _ _ 9 to _ ADP TO _ 11 case _ _ 10 NCNB _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Charlotte _ PROPN NNP _ 11 appos _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 N.C. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 which _ PRON WDT _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 aggressively _ ADV RB _ 20 advmod _ _ 20 expanded _ VERB VBN _ 11 acl:relcl _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 markets _ NOUN NNS _ 20 dobj _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 particularly _ ADV RB _ 26 advmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 Texas _ PROPN NNP _ 20 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 Florida _ PROPN NNP _ 26 conj _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Canadian _ ADJ JJ _ 3 amod _ _ 3 bank _ NOUN NN _ 4 nsubj _ _ 4 bought _ VERB VBD _ 0 root _ _ 5 another _ DET DT _ 6 det _ _ 6 thrift _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 first _ ADJ JJ _ 12 amod _ _ 11 RTC _ PROPN NNP _ 12 compound _ _ 12 transaction _ NOUN NN _ 4 nmod _ _ 13 with _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 foreign _ ADJ JJ _ 16 amod _ _ 16 bank _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 these _ DET DT _ 3 det _ _ 3 deals _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 7 nsubj _ _ 7 sells _ VERB VBZ _ 0 root _ _ 8 just _ ADV RB _ 10 advmod _ _ 9 the _ DET DT _ 10 det _ _ 10 deposits _ NOUN NNS _ 7 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 healthy _ ADJ JJ _ 14 amod _ _ 14 assets _ NOUN NNS _ 10 conj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 These _ DET DT _ 5 det _ _ 2 `` _ PUNCT `` _ 5 punct _ _ 3 clean-bank _ ADJ JJ _ 5 amod _ _ 4 '' _ PUNCT '' _ 5 punct _ _ 5 transactions _ NOUN NNS _ 6 nsubj _ _ 6 leave _ VERB VBP _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 bulk _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 bad _ ADJ JJ _ 11 amod _ _ 11 assets _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 mostly _ ADV RB _ 15 advmod _ _ 14 real _ ADJ JJ _ 15 amod _ _ 15 estate _ NOUN NN _ 8 appos _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 government _ NOUN NN _ 6 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 to _ PART TO _ 23 mark _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 sold _ VERB VBN _ 6 advcl _ _ 24 later _ ADV RB _ 23 advmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 these _ DET DT _ 3 det _ _ 3 four _ NUM CD _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 instance _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 RTC _ PROPN NNP _ 11 nsubjpass _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 stuck _ VERB VBN _ 0 root _ _ 12 with _ ADP IN _ 13 case _ _ 13 $ _ SYM $ _ 11 nmod _ _ 14 4.51 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 18 case _ _ 17 bad _ ADJ JJ _ 18 amod _ _ 18 assets _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 Acquirers _ NOUN NNS _ 2 nsubj _ _ 2 paid _ VERB VBD _ 0 root _ _ 3 premiums _ NOUN NNS _ 2 dobj _ _ 4 ranging _ VERB VBG _ 3 acl _ _ 5 from _ ADP IN _ 7 case _ _ 6 1.5 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 4 nmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 3.7 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 deposits _ NOUN NNS _ 2 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 branch _ NOUN NN _ 16 compound _ _ 16 systems _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 roughly _ ADV RB _ 20 advmod _ _ 19 in _ ADP IN _ 20 case _ _ 20 line _ NOUN NN _ 2 nmod _ _ 21 with _ SCONJ IN _ 25 mark _ _ 22 what _ PRON WP _ 25 dobj _ _ 23 analysts _ NOUN NNS _ 25 nsubj _ _ 24 were _ AUX VBD _ 25 aux _ _ 25 expecting _ VERB VBG _ 20 acl _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 buyers _ NOUN NNS _ 6 nsubjpass _ _ 3 will _ AUX MD _ 6 aux _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 locked _ VERB VBN _ 0 root _ _ 7 into _ ADP IN _ 9 case _ _ 8 deposit _ NOUN NN _ 9 compound _ _ 9 rates _ NOUN NNS _ 6 nmod _ _ 10 for _ ADP IN _ 13 case _ _ 11 just _ ADV RB _ 12 advmod _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 weeks _ NOUN NNS _ 6 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 has _ AUX VBZ _ 19 aux _ _ 17 been _ VERB VBN _ 19 cop _ _ 18 the _ DET DT _ 19 det _ _ 19 case _ NOUN NN _ 6 advcl _ _ 20 with _ ADP IN _ 22 case _ _ 21 previous _ ADJ JJ _ 22 amod _ _ 22 deals _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 that _ PRON DT _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 buyers _ NOUN NNS _ 7 nsubj _ _ 6 may _ AUX MD _ 7 aux _ _ 7 repudiate _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 rates _ NOUN NNS _ 7 dobj _ _ 10 paid _ VERB VBN _ 9 acl _ _ 11 by _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 former _ ADJ JJ _ 14 amod _ _ 14 thrifts _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 uncertain _ ADJ JJ _ 0 root _ _ 5 whether _ SCONJ IN _ 9 mark _ _ 6 these _ DET DT _ 7 det _ _ 7 institutions _ NOUN NNS _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 take _ VERB VB _ 4 ccomp _ _ 10 those _ DET DT _ 11 det _ _ 11 steps _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 NCNB _ PROPN NNP _ 8 nsubj _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 example _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 one _ NUM CD _ 0 root _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 highest _ ADJ JJS _ 13 amod _ _ 12 rate _ NOUN NN _ 13 compound _ _ 13 payers _ NOUN NNS _ 8 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 Texas _ PROPN NNP _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 and _ CONJ CC _ 8 cc _ _ 20 in _ ADP IN _ 21 case _ _ 21 Florida _ PROPN NNP _ 26 nmod _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 rates _ NOUN NNS _ 26 nsubj _ _ 24 are _ VERB VBP _ 26 cop _ _ 25 especially _ ADV RB _ 26 advmod _ _ 26 sensitive _ ADJ JJ _ 8 conj _ _ 27 in _ ADP IN _ 29 case _ _ 28 retirement _ NOUN NN _ 29 compound _ _ 29 communities _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 RTC _ PROPN NNP _ 5 nsubj _ _ 3 had _ AUX VBD _ 5 aux _ _ 4 previously _ ADV RB _ 5 advmod _ _ 5 targeted _ VERB VBN _ 0 root _ _ 6 five _ NUM CD _ 7 nummod _ _ 7 thrifts _ NOUN NNS _ 5 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 quick _ ADJ JJ _ 10 amod _ _ 10 sales _ NOUN NNS _ 5 nmod _ _ 11 in _ SCONJ IN _ 14 mark _ _ 12 order _ NOUN NN _ 11 mwe _ _ 13 to _ PART TO _ 14 mark _ _ 14 spend _ VERB VB _ 5 advcl _ _ 15 cash _ NOUN NN _ 14 dobj _ _ 16 by _ ADP IN _ 19 case _ _ 17 certain _ ADJ JJ _ 19 amod _ _ 18 budgetary _ ADJ JJ _ 19 amod _ _ 19 deadlines _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 5 punct _ _ 21 but _ CONJ CC _ 5 cc _ _ 22 the _ DET DT _ 23 det _ _ 23 delays _ NOUN NNS _ 24 nsubj _ _ 24 illustrate _ VERB VBP _ 5 conj _ _ 25 the _ DET DT _ 27 det _ _ 26 tough _ ADJ JJ _ 27 amod _ _ 27 chore _ NOUN NN _ 24 dobj _ _ 28 facing _ VERB VBG _ 27 acl _ _ 29 the _ DET DT _ 30 det _ _ 30 agency _ NOUN NN _ 28 dobj _ _ 31 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 These _ DET DT _ 3 det _ _ 3 thrifts _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 beached _ ADJ VBN _ 6 amod _ _ 6 whales _ NOUN NNS _ 9 ccomp _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 Bert _ PROPN NNP _ 11 compound _ _ 11 Ely _ PROPN NNP _ 9 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 an _ DET DT _ 15 det _ _ 14 industry _ NOUN NN _ 15 compound _ _ 15 consultant _ NOUN NN _ 11 appos _ _ 16 based _ VERB VBN _ 15 acl _ _ 17 in _ ADP IN _ 18 case _ _ 18 Alexandria _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Va _ PROPN NNP _ 18 appos _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 25 nmod _ _ 3 , _ PUNCT , _ 25 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 delay _ NOUN NN _ 25 nsubj _ _ 6 in _ SCONJ IN _ 7 mark _ _ 7 selling _ VERB VBG _ 5 acl _ _ 8 People _ PROPN NNS _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 Heritage _ PROPN NNP _ 11 compound _ _ 11 Savings _ PROPN NNPS _ 7 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Salina _ PROPN NNP _ 11 appos _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Kan. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 with _ ADP IN _ 18 case _ _ 18 $ _ SYM $ _ 11 nmod _ _ 19 1.7 _ NUM CD _ 20 compound _ _ 20 billion _ NUM CD _ 18 nummod _ _ 21 in _ ADP IN _ 22 case _ _ 22 assets _ NOUN NNS _ 18 nmod _ _ 23 , _ PUNCT , _ 11 punct _ _ 24 has _ AUX VBZ _ 25 aux _ _ 25 forced _ VERB VBN _ 0 root _ _ 26 the _ DET DT _ 27 det _ _ 27 RTC _ PROPN NNP _ 25 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 consider _ VERB VB _ 25 xcomp _ _ 30 selling _ VERB VBG _ 29 xcomp _ _ 31 off _ ADP RP _ 30 compound:prt _ _ 32 the _ DET DT _ 33 det _ _ 33 thrift _ NOUN NN _ 30 dobj _ _ 34 branch-by-branch _ ADV NN _ 30 advmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 instead _ ADV RB _ 34 cc _ _ 37 of _ ADP IN _ 36 mwe _ _ 38 as _ ADP IN _ 41 case _ _ 39 a _ DET DT _ 41 det _ _ 40 whole _ ADJ JJ _ 41 amod _ _ 41 institution _ NOUN NN _ 34 conj _ _ 42 . _ PUNCT . _ 25 punct _ _ 1 NCNB _ PROPN NNP _ 2 nsubj _ _ 2 continued _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 foray _ NOUN NN _ 2 dobj _ _ 5 into _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 10 det _ _ 7 Florida _ PROPN NNP _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Texas _ PROPN NNP _ 7 conj _ _ 10 markets _ NOUN NNS _ 4 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 NCNB _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 acquire _ VERB VB _ 0 root _ _ 4 University _ PROPN NNP _ 7 compound _ _ 5 Federal _ PROPN NNP _ 7 compound _ _ 6 Savings _ PROPN NNP _ 7 compound _ _ 7 Association _ PROPN NNP _ 3 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Houston _ PROPN NNP _ 7 appos _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 which _ PRON WDT _ 12 nsubj _ _ 12 had _ VERB VBD _ 7 acl:relcl _ _ 13 assets _ NOUN NNS _ 12 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 2.8 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 4 compound _ _ 2 Texas _ PROPN NNP _ 4 compound _ _ 3 National _ PROPN NNP _ 4 compound _ _ 4 Bank _ PROPN NNP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 pay _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 RTC _ PROPN NNP _ 6 iobj _ _ 9 a _ DET DT _ 10 det _ _ 10 premium _ NOUN NN _ 6 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 129 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 for _ ADP IN _ 16 case _ _ 16 $ _ SYM $ _ 6 nmod _ _ 17 3.5 _ NUM CD _ 18 compound _ _ 18 billion _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 20 case _ _ 20 deposits _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 measure _ NOUN NN _ 20 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 depths _ NOUN NNS _ 3 nmod _ _ 7 to _ ADP TO _ 8 case _ _ 8 which _ PRON WDT _ 15 nmod _ _ 9 the _ DET DT _ 13 det _ _ 10 Texas _ PROPN NNP _ 13 compound _ _ 11 real _ ADJ JJ _ 13 amod _ _ 12 estate _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 15 nsubj _ _ 14 has _ AUX VBZ _ 15 aux _ _ 15 sunk _ VERB VBN _ 6 acl:relcl _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 RTC _ PROPN NNP _ 20 nsubj _ _ 19 will _ AUX MD _ 20 aux _ _ 20 pay _ VERB VB _ 0 root _ _ 21 $ _ SYM $ _ 20 dobj _ _ 22 3.8 _ NUM CD _ 23 compound _ _ 23 billion _ NUM CD _ 21 nummod _ _ 24 to _ ADP TO _ 25 case _ _ 25 NCNB _ PROPN NNP _ 20 nmod _ _ 26 to _ PART TO _ 27 mark _ _ 27 take _ VERB VB _ 20 advcl _ _ 28 $ _ SYM $ _ 27 dobj _ _ 29 750 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 of _ ADP IN _ 33 case _ _ 32 bad _ ADJ JJ _ 33 amod _ _ 33 assets _ NOUN NNS _ 28 nmod _ _ 34 . _ PUNCT . _ 20 punct _ _ 1 NCNB _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 acquired _ VERB VBD _ 0 root _ _ 4 Freedom _ PROPN NNP _ 5 compound _ _ 5 Savings _ PROPN NNP _ 3 dobj _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Loan _ PROPN NNP _ 8 compound _ _ 8 Association _ PROPN NNP _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 Tampa _ PROPN NNP _ 5 appos _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Fla. _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 had _ VERB VBD _ 5 acl:relcl _ _ 16 total _ ADJ JJ _ 17 amod _ _ 17 assets _ NOUN NNS _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 $ _ SYM $ _ 17 nmod _ _ 20 900 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 pay _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 RTC _ PROPN NNP _ 3 iobj _ _ 6 a _ DET DT _ 7 det _ _ 7 premium _ NOUN NN _ 3 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 40.4 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 for _ ADP IN _ 13 case _ _ 13 $ _ SYM $ _ 3 nmod _ _ 14 1.1 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 17 case _ _ 17 deposits _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 acquire _ VERB VB _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 266 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 of _ ADP IN _ 11 case _ _ 9 Freedom _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 assets _ NOUN NNS _ 5 nmod _ _ 12 from _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 RTC _ PROPN NNP _ 4 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 require _ VERB VB _ 14 acl:relcl _ _ 19 $ _ SYM $ _ 18 dobj _ _ 20 875 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 in _ ADP IN _ 23 case _ _ 23 assistance _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Meridian _ PROPN NNP _ 3 compound _ _ 2 Bancorp _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Reading _ NOUN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Pa. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 acquire _ VERB VB _ 0 root _ _ 11 Hill _ PROPN NNP _ 14 compound _ _ 12 Financial _ PROPN NNP _ 14 compound _ _ 13 Savings _ PROPN NNP _ 14 compound _ _ 14 Association _ PROPN NNP _ 10 dobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Red _ PROPN NNP _ 17 compound _ _ 17 Hill _ PROPN NNP _ 14 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Pa. _ PROPN NNP _ 17 appos _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 had _ VERB VBD _ 14 acl:relcl _ _ 23 $ _ SYM $ _ 22 dobj _ _ 24 2.3 _ NUM CD _ 25 compound _ _ 25 billion _ NUM CD _ 23 nummod _ _ 26 in _ ADP IN _ 27 case _ _ 27 assets _ NOUN NNS _ 23 nmod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 Meridian _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 pay _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 premium _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 30.5 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 to _ PART TO _ 11 mark _ _ 11 assume _ VERB VB _ 3 advcl _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 deposits _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 purchase _ VERB VB _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 845 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 of _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 10 det _ _ 10 thrift _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 assets _ NOUN NNS _ 5 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 with _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 4 nmod _ _ 16 1.9 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 20 case _ _ 19 RTC _ PROPN NNP _ 20 compound _ _ 20 assistance _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 RTC _ PROPN NNP _ 5 compound _ _ 5 transaction _ NOUN NN _ 18 nmod _ _ 6 with _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 foreign _ ADJ JJ _ 9 amod _ _ 9 buyer _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 18 punct _ _ 11 Royal _ PROPN NNP _ 13 compound _ _ 12 Trustco _ PROPN NNP _ 13 compound _ _ 13 Ltd. _ PROPN NNP _ 18 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Toronto _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 will _ AUX MD _ 18 aux _ _ 18 acquire _ VERB VB _ 0 root _ _ 19 Pacific _ PROPN NNP _ 21 compound _ _ 20 Savings _ PROPN NNP _ 21 compound _ _ 21 Bank _ PROPN NNP _ 18 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 Costa _ PROPN NNP _ 24 compound _ _ 24 Mesa _ PROPN NNP _ 21 appos _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Calif. _ PROPN NNP _ 24 appos _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 which _ PRON WDT _ 29 nsubj _ _ 29 had _ VERB VBD _ 21 acl:relcl _ _ 30 $ _ SYM $ _ 29 dobj _ _ 31 949 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 30 nummod _ _ 33 in _ ADP IN _ 34 case _ _ 34 assets _ NOUN NNS _ 30 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 Royal _ PROPN NNP _ 2 compound _ _ 2 Trustco _ PROPN NNP _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 pay _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 4 iobj _ _ 7 $ _ SYM $ _ 4 dobj _ _ 8 25 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 to _ PART TO _ 11 mark _ _ 11 assume _ VERB VB _ 4 advcl _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 989 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 deposits _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 purchase _ VERB VB _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 473 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 in _ ADP IN _ 9 case _ _ 9 assets _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 and _ CONJ CC _ 4 cc _ _ 12 receive _ VERB VB _ 4 conj _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 550 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 17 case _ _ 17 assistance _ NOUN NN _ 13 nmod _ _ 18 from _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 RTC _ PROPN NNP _ 12 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 following _ ADJ VBG _ 3 amod _ _ 3 issues _ NOUN NNS _ 6 nsubjpass _ _ 4 were _ AUX VBD _ 6 auxpass _ _ 5 recently _ ADV RB _ 6 advmod _ _ 6 filed _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 Securities _ PROPN NNPS _ 12 compound _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Exchange _ PROPN NNP _ 9 conj _ _ 12 Commission _ PROPN NNP _ 6 nmod _ _ 13 : _ PUNCT : _ 6 punct _ _ 1 American _ PROPN NNP _ 3 compound _ _ 2 Cyanamid _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 offering _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 9 case _ _ 7 1,250,000 _ NUM CD _ 9 nummod _ _ 8 common _ ADJ JJ _ 9 amod _ _ 9 shares _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 via _ ADP IN _ 15 case _ _ 12 Merrill _ PROPN NNP _ 15 compound _ _ 13 Lynch _ PROPN NNP _ 15 compound _ _ 14 Capital _ PROPN NNP _ 15 compound _ _ 15 Markets _ PROPN NNPS _ 5 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Limited _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 offering _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 up _ ADP RB _ 8 dep _ _ 7 to _ ADP TO _ 6 mwe _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 300 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 of _ ADP IN _ 13 case _ _ 12 debt _ NOUN NN _ 13 compound _ _ 13 securities _ NOUN NNS _ 8 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 warrants _ NOUN NNS _ 13 conj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 Nuveen _ PROPN NNP _ 7 compound _ _ 2 California _ PROPN NNP _ 7 compound _ _ 3 Performance _ PROPN NNP _ 7 compound _ _ 4 Plus _ PROPN NNP _ 7 compound _ _ 5 Municipal _ PROPN NNP _ 7 compound _ _ 6 Fund _ PROPN NNP _ 7 compound _ _ 7 Inc. _ PROPN NNP _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 initial _ ADJ JJ _ 10 amod _ _ 10 offering _ NOUN NN _ 7 appos _ _ 11 of _ ADP IN _ 15 case _ _ 12 five _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 15 nummod _ _ 14 common _ ADJ JJ _ 15 amod _ _ 15 shares _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 via _ ADP IN _ 20 case _ _ 18 Alex _ PROPN NNP _ 20 compound _ _ 19 . _ PUNCT . _ 20 punct _ _ 20 Brown _ PROPN NNP _ 10 nmod _ _ 21 & _ CONJ CC _ 20 cc _ _ 22 Sons _ PROPN NNP _ 23 compound _ _ 23 Inc. _ PROPN NNP _ 20 conj _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 John _ PROPN NNP _ 26 compound _ _ 26 Nuveen _ PROPN NNP _ 20 conj _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Co. _ PROPN NNP _ 26 conj _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 Prudential-Bache _ PROPN NNP _ 32 compound _ _ 31 Capital _ PROPN NNP _ 32 compound _ _ 32 Funding _ PROPN NNP _ 20 conj _ _ 33 , _ PUNCT , _ 20 punct _ _ 34 and _ CONJ CC _ 20 cc _ _ 35 Bateman _ PROPN NNP _ 39 compound _ _ 36 Eichler _ PROPN NNP _ 39 compound _ _ 37 , _ PUNCT , _ 39 punct _ _ 38 Hill _ PROPN NNP _ 39 appos _ _ 39 Richards _ PROPN NNP _ 20 conj _ _ 40 . _ PUNCT . _ 7 punct _ _ 1 PacifiCare _ PROPN NNP _ 4 compound _ _ 2 Health _ PROPN NNP _ 4 compound _ _ 3 Systems _ PROPN NNPS _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 proposed _ VERB VBD _ 7 amod _ _ 7 offering _ NOUN NN _ 4 appos _ _ 8 of _ ADP IN _ 12 case _ _ 9 1.5 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 12 nummod _ _ 11 common _ ADJ JJ _ 12 amod _ _ 12 shares _ NOUN NNS _ 7 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 of _ ADP IN _ 15 case _ _ 15 which _ PRON WDT _ 20 nmod _ _ 16 700,000 _ NUM CD _ 17 nummod _ _ 17 shares _ NOUN NNS _ 20 nsubjpass _ _ 18 will _ AUX MD _ 20 aux _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 offered _ VERB VBN _ 12 acl:relcl _ _ 21 by _ ADP IN _ 22 case _ _ 22 PacifiCare _ PROPN NNP _ 20 nmod _ _ 23 and _ CONJ CC _ 20 cc _ _ 24 800,000 _ NUM CD _ 25 nummod _ _ 25 shares _ NOUN NNS _ 20 conj _ _ 26 by _ ADP IN _ 29 case _ _ 27 UniHealth _ PROPN NNP _ 29 compound _ _ 28 America _ PROPN NNP _ 29 compound _ _ 29 Inc _ PROPN NNP _ 25 dep _ _ 30 . _ PUNCT . _ 29 punct _ _ 31 -LRB- _ PUNCT -LRB- _ 32 punct _ _ 32 PacifiCare _ PROPN NNP _ 12 dep _ _ 33 's _ PART POS _ 32 case _ _ 34 71 _ NUM CD _ 32 dep _ _ 35 % _ SYM NN _ 32 dep _ _ 36 -RRB- _ PUNCT -RRB- _ 32 punct _ _ 37 , _ PUNCT , _ 7 punct _ _ 38 via _ ADP IN _ 44 case _ _ 39 Dillon _ PROPN NNP _ 44 compound _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Read _ PROPN NNP _ 39 conj _ _ 42 & _ CONJ CC _ 39 cc _ _ 43 Co. _ PROPN NNP _ 39 conj _ _ 44 Inc. _ PROPN NNP _ 7 nmod _ _ 45 , _ PUNCT , _ 44 punct _ _ 46 Goldman _ PROPN NNP _ 44 conj _ _ 47 , _ PUNCT , _ 46 punct _ _ 48 Sachs _ PROPN NNP _ 46 conj _ _ 49 & _ CONJ CC _ 46 cc _ _ 50 Co. _ PROPN NNP _ 46 conj _ _ 51 and _ CONJ CC _ 44 cc _ _ 52 Dean _ PROPN NNP _ 55 compound _ _ 53 Witter _ PROPN NNP _ 55 compound _ _ 54 Reynolds _ PROPN NNP _ 55 compound _ _ 55 Inc _ PROPN NNP _ 44 conj _ _ 56 . _ PUNCT . _ 4 punct _ _ 1 Pricor _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 offering _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 9 case _ _ 6 one _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 9 nummod _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 shares _ NOUN NNS _ 4 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 common _ ADJ JJ _ 12 amod _ _ 12 stock _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 300,000 _ NUM CD _ 15 nummod _ _ 15 shares _ NOUN NNS _ 9 conj _ _ 16 by _ ADP IN _ 17 case _ _ 17 holders _ NOUN NNS _ 15 nmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 via _ ADP IN _ 23 case _ _ 20 Drexel _ PROPN NNP _ 23 compound _ _ 21 Burnham _ PROPN NNP _ 23 compound _ _ 22 Lambert _ PROPN NNP _ 23 compound _ _ 23 Inc. _ PROPN NNP _ 4 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 J.C. _ PROPN NNP _ 26 compound _ _ 26 Bradford _ PROPN NNP _ 23 conj _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Co _ PROPN NNP _ 26 conj _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 Trans _ PROPN NNP _ 4 compound _ _ 2 World _ PROPN NNP _ 4 compound _ _ 3 Airlines _ PROPN NNPS _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 offering _ NOUN NN _ 4 appos _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 150 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 senior _ ADJ JJ _ 12 amod _ _ 12 notes _ NOUN NNS _ 8 dep _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 via _ ADP IN _ 16 case _ _ 15 Drexel _ PROPN NNP _ 16 compound _ _ 16 Burnham _ PROPN NNP _ 6 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Time _ PROPN NNP _ 2 compound _ _ 2 magazine _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 in _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 move _ NOUN NN _ 17 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 reduce _ VERB VB _ 6 acl _ _ 9 the _ DET DT _ 10 det _ _ 10 costs _ NOUN NNS _ 8 dobj _ _ 11 of _ SCONJ IN _ 12 mark _ _ 12 wooing _ VERB VBG _ 10 acl _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 subscribers _ NOUN NNS _ 12 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 is _ AUX VBZ _ 17 aux _ _ 17 lowering _ VERB VBG _ 0 root _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 circulation _ NOUN NN _ 20 compound _ _ 20 guarantee _ NOUN NN _ 17 dobj _ _ 21 to _ ADP TO _ 22 case _ _ 22 advertisers _ NOUN NNS _ 20 nmod _ _ 23 for _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 second _ ADJ JJ _ 27 amod _ _ 26 consecutive _ ADJ JJ _ 27 amod _ _ 27 year _ NOUN NN _ 17 nmod _ _ 28 , _ PUNCT , _ 17 punct _ _ 29 increasing _ VERB VBG _ 17 conj _ _ 30 its _ PRON PRP$ _ 32 nmod:poss _ _ 31 subscription _ NOUN NN _ 32 compound _ _ 32 rates _ NOUN NNS _ 29 dobj _ _ 33 and _ CONJ CC _ 17 cc _ _ 34 cutting _ VERB VBG _ 17 conj _ _ 35 back _ ADP RP _ 34 compound:prt _ _ 36 on _ ADP IN _ 38 case _ _ 37 merchandise _ NOUN NN _ 38 compound _ _ 38 giveaways _ NOUN NNS _ 34 nmod _ _ 39 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 announcement _ NOUN NN _ 18 nmod _ _ 4 to _ ADP TO _ 6 case _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 staff _ NOUN NN _ 3 nmod _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 week _ NOUN NN _ 3 nmod:tmod _ _ 9 , _ PUNCT , _ 18 punct _ _ 10 executives _ NOUN NNS _ 18 nsubj _ _ 11 at _ ADP IN _ 17 case _ _ 12 Time _ PROPN NNP _ 14 compound _ _ 13 Warner _ PROPN NNP _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 weekly _ ADJ JJ _ 17 amod _ _ 17 magazine _ NOUN NN _ 10 nmod _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Time _ PROPN NNP _ 23 nsubj _ _ 20 will _ AUX MD _ 23 aux _ _ 21 `` _ PUNCT `` _ 23 punct _ _ 22 dramatically _ ADV RB _ 23 advmod _ _ 23 de-emphasize _ VERB VB _ 18 ccomp _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 use _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 electronic _ ADJ JJ _ 29 amod _ _ 29 giveaways _ NOUN NNS _ 26 nmod _ _ 30 such _ ADJ JJ _ 32 case _ _ 31 as _ ADP IN _ 30 mwe _ _ 32 telephones _ NOUN NNS _ 29 nmod _ _ 33 in _ ADP IN _ 36 case _ _ 34 television _ NOUN NN _ 36 compound _ _ 35 subscription _ NOUN NN _ 36 compound _ _ 36 drives _ NOUN NNS _ 26 nmod _ _ 37 ; _ PUNCT : _ 23 punct _ _ 38 cut _ VERB VB _ 23 conj _ _ 39 the _ DET DT _ 40 det _ _ 40 circulation _ NOUN NN _ 38 dobj _ _ 41 it _ PRON PRP _ 42 nsubj _ _ 42 guarantees _ VERB VBZ _ 40 acl:relcl _ _ 43 advertisers _ NOUN NNS _ 42 dobj _ _ 44 by _ ADP IN _ 45 case _ _ 45 300,000 _ NUM CD _ 38 nmod _ _ 46 , _ PUNCT , _ 38 punct _ _ 47 to _ ADP TO _ 49 case _ _ 48 four _ NUM CD _ 49 compound _ _ 49 million _ NUM CD _ 38 nmod _ _ 50 ; _ PUNCT : _ 23 punct _ _ 51 and _ CONJ CC _ 23 cc _ _ 52 increase _ VERB VB _ 23 conj _ _ 53 the _ DET DT _ 54 det _ _ 54 cost _ NOUN NN _ 52 dobj _ _ 55 of _ ADP IN _ 59 case _ _ 56 its _ PRON PRP$ _ 59 nmod:poss _ _ 57 annual _ ADJ JJ _ 59 amod _ _ 58 subscription _ NOUN NN _ 59 compound _ _ 59 rate _ NOUN NN _ 54 nmod _ _ 60 by _ ADP IN _ 62 case _ _ 61 about _ ADV RB _ 62 advmod _ _ 62 $ _ SYM $ _ 52 nmod _ _ 63 4 _ NUM CD _ 62 nummod _ _ 64 to _ ADP TO _ 66 case _ _ 65 $ _ SYM $ _ 66 dep _ _ 66 55 _ NUM CD _ 52 nmod _ _ 67 . _ PUNCT . _ 18 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 related _ ADJ JJ _ 4 amod _ _ 4 development _ NOUN NN _ 17 nmod _ _ 5 , _ PUNCT , _ 17 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 news-weekly _ NOUN JJ _ 17 nsubj _ _ 8 , _ PUNCT , _ 17 punct _ _ 9 for _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 fourth _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 17 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 row _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 wo _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 increase _ VERB VB _ 17 ccomp _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 advertising _ NOUN NN _ 24 compound _ _ 24 rates _ NOUN NNS _ 21 dobj _ _ 25 in _ ADP IN _ 26 case _ _ 26 1990 _ NUM CD _ 21 nmod _ _ 27 ; _ PUNCT : _ 17 punct _ _ 28 a _ DET DT _ 32 det _ _ 29 full _ ADJ JJ _ 32 amod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 four-color _ ADJ JJ _ 32 amod _ _ 32 page _ NOUN NN _ 36 nsubj _ _ 33 in _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 magazine _ NOUN NN _ 32 nmod _ _ 36 costs _ VERB VBZ _ 17 parataxis _ _ 37 about _ ADV IN _ 38 advmod _ _ 38 $ _ SYM $ _ 36 dobj _ _ 39 120,000 _ NUM CD _ 38 nummod _ _ 40 . _ PUNCT . _ 17 punct _ _ 1 However _ ADV RB _ 19 advmod _ _ 2 , _ PUNCT , _ 19 punct _ _ 3 because _ SCONJ IN _ 10 mark _ _ 4 the _ DET DT _ 7 det _ _ 5 guaranteed _ VERB VBN _ 7 amod _ _ 6 circulation _ NOUN NN _ 7 compound _ _ 7 base _ NOUN NN _ 10 nsubjpass _ _ 8 is _ AUX VBZ _ 10 aux _ _ 9 being _ AUX VBG _ 10 auxpass _ _ 10 lowered _ VERB VBN _ 19 advcl _ _ 11 , _ PUNCT , _ 19 punct _ _ 12 ad _ NOUN NN _ 13 compound _ _ 13 rates _ NOUN NNS _ 19 nsubj _ _ 14 will _ AUX MD _ 19 aux _ _ 15 be _ VERB VB _ 19 cop _ _ 16 effectively _ ADV RB _ 19 advmod _ _ 17 7.5 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 19 nmod:npmod _ _ 19 higher _ ADJ JJR _ 0 root _ _ 20 per _ ADP IN _ 21 case _ _ 21 subscriber _ NOUN NN _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 according _ VERB VBG _ 26 case _ _ 24 to _ ADP TO _ 23 mwe _ _ 25 Richard _ PROPN NNP _ 26 compound _ _ 26 Heinemann _ PROPN NNP _ 19 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Time _ PROPN NNP _ 30 compound _ _ 29 associate _ ADJ JJ _ 30 amod _ _ 30 publisher _ NOUN NN _ 26 appos _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 Time _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 following _ VERB VBG _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 course _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 10 case _ _ 7 some _ DET DT _ 10 det _ _ 8 other _ ADJ JJ _ 10 amod _ _ 9 mass-circulation _ ADJ NN _ 10 amod _ _ 10 magazines _ NOUN NNS _ 5 nmod _ _ 11 that _ ADP WDT _ 16 nsubj _ _ 12 in _ ADP IN _ 14 case _ _ 13 recent _ ADJ JJ _ 14 amod _ _ 14 years _ NOUN NNS _ 16 nmod _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 challenged _ VERB VBN _ 10 acl:relcl _ _ 17 the _ DET DT _ 19 det _ _ 18 publishing _ NOUN NN _ 19 compound _ _ 19 myth _ NOUN NN _ 16 dobj _ _ 20 that _ SCONJ WDT _ 31 mark _ _ 21 maintaining _ VERB VBG _ 31 csubj _ _ 22 artificially _ ADV RB _ 23 advmod _ _ 23 high _ ADJ JJ _ 28 amod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 and _ CONJ CC _ 23 cc _ _ 26 expensive _ ADJ JJ _ 23 conj _ _ 27 , _ PUNCT , _ 23 punct _ _ 28 circulations _ NOUN NNS _ 21 dobj _ _ 29 is _ VERB VBZ _ 31 cop _ _ 30 the _ DET DT _ 31 det _ _ 31 way _ NOUN NN _ 19 ccomp _ _ 32 to _ PART TO _ 33 mark _ _ 33 draw _ VERB VB _ 31 acl _ _ 34 advertisers _ NOUN NNS _ 33 dobj _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 years _ NOUN NNS _ 27 nmod _ _ 4 , _ PUNCT , _ 27 punct _ _ 5 Reader _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Digest _ PROPN NNP _ 27 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 New _ PROPN NNP _ 12 compound _ _ 10 York _ PROPN NNP _ 12 compound _ _ 11 Times _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 McCall _ PROPN NNP _ 7 conj _ _ 15 's _ PART POS _ 14 case _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 and _ CONJ CC _ 7 cc _ _ 18 most _ ADV RBS _ 19 advmod _ _ 19 recently _ ADV RB _ 7 advmod _ _ 20 News _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 TV _ PROPN NN _ 24 compound _ _ 24 Guide _ PROPN NNP _ 7 conj _ _ 25 , _ PUNCT , _ 7 punct _ _ 26 have _ AUX VBP _ 27 aux _ _ 27 cut _ VERB VBN _ 0 root _ _ 28 their _ PRON PRP$ _ 32 nmod:poss _ _ 29 massive _ ADJ JJ _ 32 amod _ _ 30 circulation _ NOUN NN _ 32 compound _ _ 31 rate _ NOUN NN _ 32 compound _ _ 32 bases _ NOUN NNS _ 27 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 eliminate _ VERB VB _ 27 advcl _ _ 35 marginal _ ADJ JJ _ 36 amod _ _ 36 circulation _ NOUN NN _ 34 dobj _ _ 37 and _ CONJ CC _ 34 cc _ _ 38 hold _ VERB VB _ 34 conj _ _ 39 down _ ADP RP _ 38 compound:prt _ _ 40 rates _ NOUN NNS _ 38 dobj _ _ 41 for _ ADP IN _ 42 case _ _ 42 advertisers _ NOUN NNS _ 40 nmod _ _ 43 . _ PUNCT . _ 27 punct _ _ 1 Deep _ ADJ JJ _ 2 amod _ _ 2 discounts _ NOUN NNS _ 14 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 subscriptions _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 offers _ NOUN NNS _ 2 conj _ _ 7 of _ ADP IN _ 10 case _ _ 8 free _ ADJ JJ _ 10 amod _ _ 9 clock _ NOUN NN _ 10 compound _ _ 10 radios _ NOUN NNS _ 6 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 watches _ NOUN NNS _ 10 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 become _ VERB VBN _ 0 root _ _ 15 accepted _ ADJ JJ _ 16 amod _ _ 16 forms _ NOUN NNS _ 14 xcomp _ _ 17 of _ SCONJ IN _ 18 mark _ _ 18 attracting _ VERB VBG _ 16 acl _ _ 19 new _ ADJ JJ _ 20 amod _ _ 20 subscribers _ NOUN NNS _ 18 dobj _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 hyper-competitive _ ADJ JJ _ 24 amod _ _ 24 world _ NOUN NN _ 14 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 magazine _ NOUN NN _ 27 compound _ _ 27 news-weeklies _ NOUN NNS _ 24 nmod _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 Time _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 as _ ADP IN _ 5 case _ _ 5 part _ NOUN NN _ 13 nmod _ _ 6 of _ ADP IN _ 11 case _ _ 7 the _ DET DT _ 11 det _ _ 8 more _ ADV RBR _ 9 advmod _ _ 9 cost-conscious _ ADJ JJ _ 11 amod _ _ 10 Time _ PROPN NNP _ 11 compound _ _ 11 Warner _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 wants _ VERB VBZ _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 wean _ VERB VB _ 13 xcomp _ _ 16 itself _ PRON PRP _ 15 dobj _ _ 17 away _ ADV RB _ 15 advmod _ _ 18 from _ ADP IN _ 20 case _ _ 19 expensive _ ADJ JJ _ 20 amod _ _ 20 gimmicks _ NOUN NNS _ 15 nmod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 Besides _ ADV IN _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Time _ PROPN NNP _ 4 compound _ _ 4 executives _ NOUN NNS _ 5 nsubj _ _ 5 think _ VERB VBP _ 0 root _ _ 6 selling _ VERB VBG _ 15 csubj _ _ 7 a _ DET DT _ 9 det _ _ 8 news _ NOUN NN _ 9 compound _ _ 9 magazine _ NOUN NN _ 6 dobj _ _ 10 with _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 clock _ NOUN NN _ 13 compound _ _ 13 radio _ NOUN NN _ 6 nmod _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 tacky _ ADJ JJ _ 5 ccomp _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Giveaways _ NOUN NNS _ 4 nsubj _ _ 3 just _ ADV RB _ 4 advmod _ _ 4 give _ VERB VBP _ 11 ccomp _ _ 5 people _ NOUN NNS _ 4 iobj _ _ 6 the _ DET DT _ 8 det _ _ 7 wrong _ ADJ JJ _ 8 amod _ _ 8 image _ NOUN NN _ 4 dobj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Heinemann _ PROPN NNP _ 11 nsubj _ _ 14 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 That _ DET DT _ 3 det _ _ 3 perception _ NOUN NN _ 4 nsubj _ _ 4 takes _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 focus _ NOUN NN _ 4 dobj _ _ 7 off _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 magazine _ NOUN NN _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 11 '' _ PUNCT '' _ 4 punct _ _ 1 Time _ PROPN NNP _ 3 compound _ _ 2 magazine _ NOUN NN _ 3 compound _ _ 3 executives _ NOUN NNS _ 5 nsubj _ _ 4 predictably _ ADV RB _ 5 advmod _ _ 5 paint _ VERB VBP _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 circulation _ NOUN NN _ 8 compound _ _ 8 cut _ NOUN NN _ 5 dobj _ _ 9 as _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 show _ NOUN NN _ 5 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 strength _ NOUN NN _ 11 nmod _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 actually _ ADV RB _ 17 advmod _ _ 16 a _ DET DT _ 17 det _ _ 17 benefit _ NOUN NN _ 11 conj _ _ 18 to _ ADP TO _ 19 case _ _ 19 advertisers _ NOUN NNS _ 17 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 What _ PRON WP _ 5 dobj _ _ 3 we _ PRON PRP _ 5 nsubj _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 doing _ VERB VBG _ 6 csubj _ _ 6 is _ VERB VBZ _ 27 ccomp _ _ 7 screening _ VERB VBG _ 6 xcomp _ _ 8 out _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 10 det _ _ 10 readers _ NOUN NNS _ 7 dobj _ _ 11 who _ PRON WP _ 15 nsubjpass _ _ 12 are _ VERB VBP _ 15 auxpass _ _ 13 only _ ADV RB _ 14 advmod _ _ 14 casually _ ADV RB _ 15 advmod _ _ 15 related _ VERB JJ _ 10 acl:relcl _ _ 16 to _ ADP TO _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 magazine _ NOUN NN _ 15 nmod _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 do _ AUX VBP _ 23 aux _ _ 21 n't _ PART RB _ 23 neg _ _ 22 really _ ADV RB _ 23 advmod _ _ 23 read _ VERB VB _ 15 conj _ _ 24 it _ PRON PRP _ 23 dobj _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Mr. _ PROPN NNP _ 29 compound _ _ 29 Heinemann _ PROPN NNP _ 27 nsubj _ _ 30 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 trying _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 create _ VERB VB _ 4 xcomp _ _ 7 quality _ NOUN NN _ 6 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 involvement _ NOUN NN _ 7 conj _ _ 10 . _ PUNCT . _ 4 punct _ _ 11 '' _ PUNCT '' _ 4 punct _ _ 1 However _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Time _ PROPN NNP _ 4 compound _ _ 4 executives _ NOUN NNS _ 5 nsubj _ _ 5 used _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 same _ ADJ JJ _ 8 amod _ _ 8 explanation _ NOUN NN _ 5 dobj _ _ 9 when _ ADV WRB _ 15 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 October _ PROPN NNP _ 15 nmod _ _ 12 1988 _ NUM CD _ 11 nummod _ _ 13 the _ DET DT _ 14 det _ _ 14 magazine _ NOUN NN _ 15 nsubj _ _ 15 cut _ VERB VBD _ 5 advcl _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 guaranteed _ VERB VBN _ 18 amod _ _ 18 circulation _ NOUN NN _ 15 dobj _ _ 19 from _ ADP IN _ 21 case _ _ 20 4.6 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 15 nmod _ _ 22 to _ ADP TO _ 24 case _ _ 23 4.3 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 15 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 14 cc _ _ 2 Time _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 paid _ ADJ VBN _ 5 amod _ _ 5 circulation _ NOUN NN _ 14 nsubj _ _ 6 , _ PUNCT , _ 14 punct _ _ 7 according _ VERB VBG _ 10 case _ _ 8 to _ ADP TO _ 7 mwe _ _ 9 Audit _ PROPN NNP _ 10 compound _ _ 10 Bureau _ PROPN NNP _ 14 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Circulations _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 dropped _ VERB VBD _ 0 root _ _ 15 7.3 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 14 dobj _ _ 17 to _ ADP TO _ 18 case _ _ 18 4,393,237 _ NUM CD _ 14 nmod _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 six _ NUM CD _ 22 nummod _ _ 22 months _ NOUN NNS _ 14 nmod _ _ 23 ended _ VERB VBN _ 22 acl _ _ 24 June _ PROPN NNP _ 23 nmod:tmod _ _ 25 30 _ NUM CD _ 24 nummod _ _ 26 , _ PUNCT , _ 24 punct _ _ 27 1989 _ NUM CD _ 24 nummod _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 Time _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 move _ NOUN NN _ 8 nsubjpass _ _ 6 is _ AUX VBZ _ 8 aux _ _ 7 being _ AUX VBG _ 8 auxpass _ _ 8 received _ VERB VBN _ 0 root _ _ 9 well _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 once _ ADV RB _ 12 advmod _ _ 12 again _ ADV RB _ 8 advmod _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 terrific _ ADJ JJ _ 17 ccomp _ _ 5 for _ SCONJ IN _ 8 mark _ _ 6 advertisers _ NOUN NNS _ 8 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 know _ VERB VB _ 4 advcl _ _ 9 the _ DET DT _ 10 det _ _ 10 reader _ NOUN NN _ 13 nsubj _ _ 11 will _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 aux _ _ 13 paying _ VERB VBG _ 8 ccomp _ _ 14 more _ ADJ RBR _ 13 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Michael _ PROPN NNP _ 19 compound _ _ 19 Drexler _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 national _ ADJ JJ _ 23 amod _ _ 22 media _ NOUN NNS _ 23 compound _ _ 23 director _ NOUN NN _ 19 appos _ _ 24 at _ ADP IN _ 28 case _ _ 25 Bozell _ PROPN NNP _ 28 compound _ _ 26 Inc. _ PROPN NNP _ 28 compound _ _ 27 ad _ NOUN NN _ 28 compound _ _ 28 agency _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 A _ DET DT _ 4 det _ _ 3 few _ ADJ JJ _ 4 amod _ _ 4 drops _ NOUN NNS _ 10 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 circulation _ NOUN NN _ 4 nmod _ _ 7 are _ VERB VBP _ 10 cop _ _ 8 of _ ADP IN _ 10 case _ _ 9 no _ DET DT _ 10 neg _ _ 10 consequence _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 not _ PART RB _ 5 neg _ _ 4 a _ DET DT _ 5 det _ _ 5 show _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 weakness _ NOUN NN _ 5 nmod _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 are _ AUX VBP _ 11 aux _ _ 11 improving _ VERB VBG _ 5 parataxis _ _ 12 the _ DET DT _ 13 det _ _ 13 quality _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 circulation _ NOUN NN _ 13 nmod _ _ 16 while _ SCONJ IN _ 17 mark _ _ 17 insuring _ VERB VBG _ 11 advcl _ _ 18 their _ PRON PRP$ _ 19 nmod:poss _ _ 19 profits _ NOUN NNS _ 17 dobj _ _ 20 . _ PUNCT . _ 5 punct _ _ 21 '' _ PUNCT '' _ 5 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Heinemann _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 changes _ NOUN NNS _ 6 nsubj _ _ 6 represent _ VERB VBP _ 3 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 focus _ NOUN NN _ 6 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 magazine _ NOUN NN _ 13 compound _ _ 13 industry _ NOUN NN _ 9 nmod _ _ 14 : _ PUNCT : _ 9 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 magazine _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 revenue _ NOUN NN _ 9 dep _ _ 20 per _ ADP IN _ 21 case _ _ 21 subscriber _ NOUN NN _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 or _ CONJ CC _ 19 cc _ _ 24 the _ DET DT _ 26 det _ _ 25 actual _ ADJ JJ _ 26 amod _ _ 26 revenue _ NOUN NN _ 19 conj _ _ 27 from _ ADP IN _ 28 case _ _ 28 subscribers _ NOUN NNS _ 26 nmod _ _ 29 after _ SCONJ IN _ 38 mark _ _ 30 discounts _ NOUN NNS _ 38 nsubjpass _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 the _ DET DT _ 33 det _ _ 33 cost _ NOUN NN _ 30 conj _ _ 34 of _ ADP IN _ 35 case _ _ 35 premiums _ NOUN NNS _ 33 nmod _ _ 36 have _ AUX VBP _ 38 aux _ _ 37 been _ AUX VBN _ 38 auxpass _ _ 38 stripped _ VERB VBN _ 26 acl _ _ 39 away _ ADP RB _ 38 compound:prt _ _ 40 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 question _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 15 ccomp _ _ 5 how _ ADV WRB _ 6 advmod _ _ 6 much _ ADJ JJ _ 9 dep _ _ 7 are _ AUX VBP _ 9 aux _ _ 8 we _ PRON PRP _ 9 nsubj _ _ 9 getting _ VERB VBG _ 4 ccomp _ _ 10 from _ ADP IN _ 12 case _ _ 11 each _ DET DT _ 12 det _ _ 12 reader _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Heinemann _ PROPN NNP _ 15 nsubj _ _ 18 . _ PUNCT . _ 15 punct _ _ 1 Time _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 rivals _ NOUN NNS _ 4 compound _ _ 4 news-weeklies _ NOUN NNS _ 20 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Washington _ PROPN NNP _ 8 compound _ _ 7 Post _ PROPN NNP _ 8 compound _ _ 8 Co. _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 Newsweek _ PROPN NNP _ 4 appos _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 News _ PROPN NNP _ 10 conj _ _ 14 & _ CONJ CC _ 13 cc _ _ 15 World _ PROPN NNP _ 16 compound _ _ 16 Report _ PROPN NNP _ 13 conj _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 are _ VERB VBP _ 20 cop _ _ 19 less _ ADV RBR _ 20 advmod _ _ 20 reliant _ ADJ JJ _ 0 root _ _ 21 on _ ADP IN _ 23 case _ _ 22 electronic _ ADJ JJ _ 23 amod _ _ 23 giveaways _ NOUN NNS _ 20 nmod _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 in _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 years _ NOUN NNS _ 32 nmod _ _ 29 both _ DET CC _ 32 nsubj _ _ 30 have _ AUX VBP _ 32 aux _ _ 31 been _ AUX VBN _ 32 aux _ _ 32 increasing _ VERB VBG _ 20 conj _ _ 33 their _ PRON PRP$ _ 36 nmod:poss _ _ 34 circulation _ NOUN NN _ 36 compound _ _ 35 rate _ NOUN NN _ 36 compound _ _ 36 bases _ NOUN NNS _ 32 dobj _ _ 37 . _ PUNCT . _ 20 punct _ _ 1 Both _ DET DT _ 2 det _ _ 2 magazines _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 announce _ VERB VB _ 4 xcomp _ _ 7 their _ PRON PRP$ _ 9 nmod:poss _ _ 8 ad _ NOUN NN _ 9 compound _ _ 9 rates _ NOUN NNS _ 6 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 circulation _ NOUN NN _ 12 compound _ _ 12 levels _ NOUN NNS _ 9 conj _ _ 13 for _ ADP IN _ 14 case _ _ 14 1990 _ NUM CD _ 9 nmod _ _ 15 within _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 month _ NOUN NN _ 6 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 news _ NOUN NN _ 4 nsubj _ _ 4 broke _ VERB VBD _ 18 advcl _ _ 5 of _ ADP IN _ 8 case _ _ 6 an _ DET DT _ 8 det _ _ 7 attempted _ ADJ VBN _ 8 amod _ _ 8 coup _ NOUN NN _ 4 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Panama _ PROPN NNP _ 8 nmod _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 weeks _ NOUN NNS _ 13 nmod:npmod _ _ 13 ago _ ADV RB _ 4 advmod _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 Sen. _ PROPN NNP _ 17 compound _ _ 16 Christopher _ PROPN NNP _ 17 compound _ _ 17 Dodd _ PROPN NNP _ 18 nsubj _ _ 18 called _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 21 det _ _ 20 State _ PROPN NNP _ 21 compound _ _ 21 Department _ PROPN NNP _ 18 dobj _ _ 22 for _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 briefing _ NOUN NN _ 18 nmod _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 They _ PRON PRP _ 3 nsubj _ _ 3 said _ VERB VBD _ 12 ccomp _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 ` _ PUNCT `` _ 3 punct _ _ 6 follow _ VERB VB _ 3 ccomp _ _ 7 CNN _ PROPN NNP _ 6 dobj _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 ' _ PUNCT '' _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 told _ VERB VBD _ 0 root _ _ 13 reporters _ NOUN NNS _ 12 dobj _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 shows _ VERB VBZ _ 0 root _ _ 3 how _ ADV WRB _ 4 advmod _ _ 4 far _ ADV RB _ 12 advmod _ _ 5 Ted _ PROPN NNP _ 6 compound _ _ 6 Turner _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 Cable _ PROPN NNP _ 10 compound _ _ 9 News _ PROPN NNP _ 10 compound _ _ 10 Network _ PROPN NNP _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 come _ VERB VBN _ 2 ccomp _ _ 13 since _ ADP IN _ 15 case _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 birth _ NOUN NN _ 12 nmod _ _ 16 nine _ NUM CD _ 17 nummod _ _ 17 years _ NOUN NNS _ 18 nmod:npmod _ _ 18 ago _ ADV RB _ 15 advmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 when _ ADV WRB _ 23 advmod _ _ 21 it _ PRON PRP _ 23 nsubjpass _ _ 22 was _ AUX VBD _ 23 auxpass _ _ 23 considered _ VERB VBN _ 15 acl:relcl _ _ 24 the _ DET DT _ 25 det _ _ 25 laughingstock _ NOUN NN _ 23 xcomp _ _ 26 of _ ADP IN _ 28 case _ _ 27 television _ NOUN NN _ 28 compound _ _ 28 news _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 bigger _ ADJ JJR _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 faster _ ADJ RBR _ 3 conj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 more _ ADV RBR _ 8 advmod _ _ 8 profitable _ ADJ JJ _ 3 conj _ _ 9 than _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 news _ NOUN NN _ 12 compound _ _ 12 divisions _ NOUN NNS _ 3 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 any _ DET DT _ 12 nmod _ _ 15 of _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 three _ NUM CD _ 20 nummod _ _ 18 major _ ADJ JJ _ 20 amod _ _ 19 broadcast _ NOUN NN _ 20 compound _ _ 20 networks _ NOUN NNS _ 14 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 niche _ NOUN NN _ 13 nsubj _ _ 3 as _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 network _ NOUN NN _ 2 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 record _ NOUN NN _ 6 nmod _ _ 9 '' _ PUNCT '' _ 6 punct _ _ 10 during _ ADP IN _ 12 case _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 crises _ NOUN NNS _ 6 nmod _ _ 13 draws _ VERB VBZ _ 0 root _ _ 14 elite _ ADJ NN _ 15 amod _ _ 15 audiences _ NOUN NNS _ 13 dobj _ _ 16 around _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 world _ NOUN NN _ 13 nmod _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 for _ ADP IN _ 5 case _ _ 3 all _ DET DT _ 5 det:predet _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 success _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 CNN _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 hit _ VERB VBN _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 plateau _ NOUN NN _ 9 dobj _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Although _ SCONJ IN _ 3 mark _ _ 2 viewership _ NOUN NN _ 3 nsubj _ _ 3 soars _ NOUN VBZ _ 10 advcl _ _ 4 when _ ADV WRB _ 7 advmod _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 news _ NOUN NN _ 7 nsubj _ _ 7 breaks _ VERB NNS _ 3 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 ebbs _ VERB VBZ _ 0 root _ _ 11 during _ ADP IN _ 12 case _ _ 12 periods _ NOUN NNS _ 10 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 calm _ NOUN NN _ 12 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 CNN _ PROPN NNP _ 2 compound _ _ 2 executives _ NOUN NNS _ 3 nsubj _ _ 3 worry _ VERB VBP _ 0 root _ _ 4 that _ SCONJ IN _ 15 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 network _ NOUN NN _ 12 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 punchy _ ADJ JJ _ 12 amod _ _ 9 but _ CONJ CC _ 8 cc _ _ 10 repetitive _ ADJ JJ _ 8 conj _ _ 11 news _ NOUN NN _ 12 compound _ _ 12 format _ NOUN NN _ 15 nsubj _ _ 13 may _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 aux _ _ 15 getting _ VERB VBG _ 3 ccomp _ _ 16 stale _ ADJ JJ _ 15 xcomp _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 wo _ AUX MD _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 keep _ VERB VB _ 15 conj _ _ 21 viewers _ NOUN NNS _ 22 nsubj _ _ 22 coming _ VERB VBG _ 20 dep _ _ 23 back _ ADV RB _ 22 advmod _ _ 24 as _ SCONJ IN _ 27 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 alternatives _ NOUN NNS _ 27 nsubj _ _ 27 multiply _ VERB VBP _ 22 advcl _ _ 28 for _ ADP IN _ 29 case _ _ 29 news _ NOUN NN _ 27 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 information _ NOUN NN _ 29 conj _ _ 32 on _ ADP IN _ 33 case _ _ 33 cable-TV _ NOUN NN _ 27 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Just _ ADV RB _ 4 advmod _ _ 3 the _ DET DT _ 4 det _ _ 4 fact _ NOUN NN _ 13 nsubj _ _ 5 we _ PRON PRP _ 7 nsubj _ _ 6 're _ VERB VBP _ 7 cop _ _ 7 on _ ADP IN _ 4 ccomp _ _ 8 24 _ NUM CD _ 9 nummod _ _ 9 hours _ NOUN NNS _ 7 nmod:tmod _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 no _ DET RB _ 12 neg _ _ 12 longer _ ADV RB _ 13 advmod _ _ 13 bulletin _ NOUN NN _ 16 ccomp _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 says _ VERB VBZ _ 0 root _ _ 17 Ed _ PROPN NNP _ 18 compound _ _ 18 Turner _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 CNN _ PROPN NNP _ 24 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 executive _ ADJ JJ _ 24 amod _ _ 23 vice _ NOUN NN _ 24 compound _ _ 24 president _ NOUN NN _ 18 appos _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 news _ NOUN NN _ 27 compound _ _ 27 gathering _ NOUN NN _ 24 appos _ _ 28 -LRB- _ PUNCT -LRB- _ 31 punct _ _ 29 and _ CONJ CC _ 31 cc _ _ 30 no _ DET DT _ 31 neg _ _ 31 relation _ NOUN NN _ 24 dep _ _ 32 to _ ADP TO _ 34 case _ _ 33 Ted _ PROPN NNP _ 34 compound _ _ 34 Turner _ PROPN NNP _ 31 nmod _ _ 35 -RRB- _ PUNCT -RRB- _ 31 punct _ _ 36 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 You _ PRON PRP _ 5 nsubj _ _ 3 ca _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 live _ VERB VB _ 0 root _ _ 6 on _ ADP IN _ 7 case _ _ 7 that _ PRON DT _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 1 So _ ADV RB _ 14 advmod _ _ 2 CNN _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 unit _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 11 case _ _ 7 Atlanta-based _ ADJ JJ _ 11 amod _ _ 8 Turner _ PROPN NNP _ 11 compound _ _ 9 Broadcasting _ PROPN NNP _ 11 compound _ _ 10 System _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 trying _ VERB VBG _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 reposition _ VERB VB _ 14 xcomp _ _ 17 itself _ PRON PRP _ 16 dobj _ _ 18 as _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 primary _ ADJ JJ _ 21 amod _ _ 21 channel _ NOUN NN _ 16 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 or _ CONJ CC _ 21 cc _ _ 24 what _ PRON WP _ 37 dobj _ _ 25 people _ NOUN NNS _ 30 nsubj _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 television _ NOUN NN _ 29 compound _ _ 29 industry _ NOUN NN _ 25 nmod _ _ 30 call _ VERB VB _ 21 conj _ _ 31 a _ DET DT _ 37 det _ _ 32 `` _ PUNCT `` _ 37 punct _ _ 33 top _ NOUN NN _ 37 dep _ _ 34 of _ ADP IN _ 35 case _ _ 35 mind _ NOUN NN _ 33 nmod _ _ 36 '' _ PUNCT '' _ 37 punct _ _ 37 network _ NOUN NN _ 30 xcomp _ _ 38 . _ PUNCT . _ 14 punct _ _ 1 Tonight _ ADV NNP _ 11 nmod:tmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 to _ PART TO _ 4 mark _ _ 4 kick _ VERB VB _ 11 advcl _ _ 5 off _ ADP RP _ 4 compound:prt _ _ 6 the _ DET DT _ 7 det _ _ 7 effort _ NOUN NN _ 4 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 CNN _ PROPN NNP _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 premiere _ VERB VB _ 0 root _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 first _ ADJ JJ _ 15 amod _ _ 14 prime-time _ NOUN NN _ 15 compound _ _ 15 newscast _ NOUN NN _ 11 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 years _ NOUN NNS _ 15 nmod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 an _ DET DT _ 21 det _ _ 20 hourlong _ ADJ JJ _ 21 amod _ _ 21 show _ NOUN NN _ 15 appos _ _ 22 at _ ADP IN _ 27 case _ _ 23 6 _ NUM CD _ 27 nummod _ _ 24 p.m _ ADV RB _ 27 advmod _ _ 25 . _ PUNCT . _ 27 punct _ _ 26 Eastern _ ADJ JJ _ 27 amod _ _ 27 time _ NOUN NN _ 21 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 air _ VERB NN _ 21 acl _ _ 30 head-to-head _ ADV NN _ 29 advmod _ _ 31 against _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 network _ NOUN NN _ 34 compound _ _ 34 newscasts _ NOUN NNS _ 29 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 show _ NOUN NN _ 5 nsubjpass _ _ 3 will _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 co-anchored _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 Bernard _ PROPN NNP _ 8 compound _ _ 8 Shaw _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Catherine _ PROPN NNP _ 11 compound _ _ 11 Crier _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 a _ DET DT _ 17 det _ _ 14 34-year-old _ ADJ JJ _ 17 amod _ _ 15 former _ ADJ JJ _ 17 amod _ _ 16 Texas _ PROPN NNP _ 17 compound _ _ 17 judge _ NOUN NN _ 11 appos _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 campus _ NOUN NN _ 21 compound _ _ 20 beauty _ NOUN NN _ 21 compound _ _ 21 queen _ NOUN NN _ 17 conj _ _ 22 who _ PRON WP _ 25 nsubj _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 never _ ADV RB _ 25 neg _ _ 25 held _ VERB VBN _ 17 acl:relcl _ _ 26 a _ DET DT _ 27 det _ _ 27 job _ NOUN NN _ 25 dobj _ _ 28 in _ ADP IN _ 29 case _ _ 29 television _ NOUN NN _ 27 nmod _ _ 30 or _ CONJ CC _ 29 cc _ _ 31 journalism _ NOUN NN _ 29 conj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 show _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 perhaps _ ADV RB _ 7 advmod _ _ 6 the _ DET DT _ 7 det _ _ 7 boldest _ ADJ JJS _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 number _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 steps _ NOUN NNS _ 10 nmod _ _ 13 the _ DET DT _ 14 det _ _ 14 network _ NOUN NN _ 16 nsubj _ _ 15 is _ AUX VBZ _ 16 aux _ _ 16 taking _ VERB VBG _ 12 acl:relcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 build _ VERB VB _ 16 xcomp _ _ 19 audience _ NOUN NN _ 20 compound _ _ 20 loyalty _ NOUN NN _ 18 dobj _ _ 21 by _ SCONJ IN _ 22 mark _ _ 22 shifting _ VERB VBG _ 18 advcl _ _ 23 away _ ADV RB _ 22 advmod _ _ 24 from _ ADP IN _ 27 case _ _ 25 its _ PRON PRP$ _ 27 nmod:poss _ _ 26 current _ ADJ JJ _ 27 amod _ _ 27 format _ NOUN NN _ 23 nmod _ _ 28 toward _ ADP IN _ 34 case _ _ 29 more _ ADJ RBR _ 34 amod _ _ 30 full-length _ ADJ JJ _ 34 amod _ _ 31 `` _ PUNCT `` _ 34 punct _ _ 32 signature _ NOUN NN _ 34 compound _ _ 33 '' _ PUNCT '' _ 34 punct _ _ 34 programming _ NOUN NN _ 22 nmod _ _ 35 with _ ADP IN _ 37 case _ _ 36 recognizable _ ADJ JJ _ 37 amod _ _ 37 stars _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 7 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 distinguish _ VERB VB _ 8 advcl _ _ 3 itself _ PRON PRP _ 2 dobj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 CNN _ PROPN NNP _ 8 nsubj _ _ 6 is _ AUX VBZ _ 8 aux _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 expanding _ VERB VBG _ 0 root _ _ 9 international _ ADJ JJ _ 10 amod _ _ 10 coverage _ NOUN NN _ 8 dobj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 adding _ VERB VBG _ 8 conj _ _ 13 a _ DET DT _ 16 det _ _ 14 second _ ADJ JJ _ 16 amod _ _ 15 global-news _ NOUN JJ _ 16 compound _ _ 16 program _ NOUN NN _ 12 dobj _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 paying _ VERB VBG _ 0 root _ _ 4 higher _ ADJ JJR _ 5 amod _ _ 5 salaries _ NOUN NNS _ 3 dobj _ _ 6 -- _ PUNCT : _ 8 punct _ _ 7 after _ ADP IN _ 8 case _ _ 8 years _ NOUN NNS _ 3 dep _ _ 9 of _ ADP IN _ 10 case _ _ 10 scrimping _ VERB VBG _ 8 nmod _ _ 11 -- _ PUNCT : _ 8 punct _ _ 12 to _ PART TO _ 13 mark _ _ 13 lure _ VERB VB _ 3 advcl _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 keep _ VERB VB _ 13 conj _ _ 16 experienced _ ADJ JJ _ 17 amod _ _ 17 staffers _ NOUN NNS _ 13 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 embarking _ VERB VBG _ 0 root _ _ 5 on _ ADP IN _ 8 case _ _ 6 an _ DET DT _ 8 det _ _ 7 expensive _ ADJ JJ _ 8 amod _ _ 8 gamble _ NOUN NN _ 4 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 break _ VERB VB _ 8 acl _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 stories _ NOUN NNS _ 10 dobj _ _ 13 with _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 large _ ADJ JJ _ 17 amod _ _ 16 investigative-reporting _ NOUN JJ _ 17 compound _ _ 17 team _ NOUN NN _ 10 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 32 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 next _ ADJ JJ _ 4 amod _ _ 4 stage _ NOUN NN _ 5 nsubj _ _ 5 is _ VERB VBZ _ 32 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 get _ VERB VB _ 5 xcomp _ _ 8 beyond _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 opinion _ NOUN NN _ 11 compound _ _ 11 leaders _ NOUN NNS _ 7 nmod _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 use _ VERB VBP _ 11 acl:relcl _ _ 14 us _ PRON PRP _ 13 dobj _ _ 15 as _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 point _ NOUN NN _ 13 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 reference _ NOUN NN _ 17 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 become _ VERB VB _ 7 xcomp _ _ 22 a _ DET DT _ 23 det _ _ 23 point _ NOUN NN _ 21 xcomp _ _ 24 of _ ADP IN _ 25 case _ _ 25 reference _ NOUN NN _ 23 nmod _ _ 26 at _ ADP IN _ 29 case _ _ 27 ordinary _ ADJ JJ _ 29 amod _ _ 28 dinner _ NOUN NN _ 29 compound _ _ 29 tables _ NOUN NNS _ 21 nmod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 '' _ PUNCT '' _ 32 punct _ _ 32 says _ VERB VBZ _ 0 root _ _ 33 Jon _ PROPN NNP _ 34 compound _ _ 34 Petrovich _ PROPN NNP _ 32 dep _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 executive _ ADJ JJ _ 38 amod _ _ 37 vice _ NOUN NN _ 38 compound _ _ 38 president _ NOUN NN _ 34 appos _ _ 39 of _ ADP IN _ 41 case _ _ 40 Headline _ PROPN NNP _ 41 compound _ _ 41 News _ PROPN NNP _ 38 nmod _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 CNN _ PROPN NNP _ 46 nmod:poss _ _ 44 's _ PART POS _ 43 case _ _ 45 sister _ NOUN NN _ 46 compound _ _ 46 network _ NOUN NN _ 41 appos _ _ 47 . _ PUNCT . _ 32 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 that _ PRON DT _ 6 nsubj _ _ 3 wo _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ VERB VB _ 6 cop _ _ 6 easy _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Networks _ NOUN NNP _ 8 nsubj _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 like _ ADP IN _ 6 case _ _ 4 other _ ADJ JJ _ 6 amod _ _ 5 consumer _ NOUN NN _ 6 compound _ _ 6 products _ NOUN NNS _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 develop _ VERB VB _ 0 root _ _ 9 images _ NOUN NNS _ 8 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 peoples _ NOUN NNS _ 13 nmod:poss _ _ 12 ' _ PART POS _ 11 case _ _ 13 minds _ NOUN NNS _ 9 nmod _ _ 14 that _ PRON WDT _ 17 nsubj _ _ 15 are _ VERB VBP _ 17 cop _ _ 16 n't _ PART RB _ 17 neg _ _ 17 easy _ ADJ JJ _ 9 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 change _ VERB VB _ 17 ccomp _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 takes _ VERB VBZ _ 0 root _ _ 4 money _ NOUN NN _ 3 dobj _ _ 5 that _ ADP IN _ 9 dobj _ _ 6 CNN _ PROPN NNP _ 9 nsubj _ _ 7 has _ AUX VBZ _ 9 aux _ _ 8 been _ VERB VBN _ 9 cop _ _ 9 reluctant _ ADJ JJ _ 4 acl:relcl _ _ 10 to _ PART TO _ 11 mark _ _ 11 spend _ VERB VB _ 9 xcomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 make _ VERB VB _ 3 advcl _ _ 14 programs _ NOUN NNS _ 13 dobj _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 hire _ VERB VB _ 13 conj _ _ 17 talent _ NOUN NN _ 16 dobj _ _ 18 that _ ADP IN _ 21 dobj _ _ 19 viewers _ NOUN NNS _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 tune _ VERB VB _ 17 acl:relcl _ _ 22 in _ ADP RP _ 21 compound:prt _ _ 23 specially _ ADV RB _ 21 advmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 see _ VERB VB _ 21 xcomp _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 13 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 cable-TV _ NOUN NN _ 4 compound _ _ 4 operators _ NOUN NNS _ 13 nsubj _ _ 5 -- _ PUNCT : _ 8 punct _ _ 6 CNN _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 distributors _ NOUN NNS _ 4 dep _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 part _ ADJ NN _ 11 amod _ _ 11 owners _ NOUN NNS _ 8 conj _ _ 12 -- _ PUNCT : _ 8 punct _ _ 13 like _ ADP IN _ 0 root _ _ 14 things _ NOUN NNS _ 17 nsubj _ _ 15 just _ ADV RB _ 17 advmod _ _ 16 the _ DET DT _ 17 det _ _ 17 way _ NOUN NN _ 13 xcomp _ _ 18 they _ PRON PRP _ 19 nsubj _ _ 19 are _ VERB VBP _ 17 acl:relcl _ _ 20 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 repositioning _ NOUN VBG _ 3 compound _ _ 3 bid _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 aimed _ VERB VBN _ 0 root _ _ 6 at _ ADP IN _ 10 case _ _ 7 CNN _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 unsteady _ ADJ JJ _ 10 amod _ _ 10 viewership _ NOUN NN _ 5 nmod _ _ 11 -- _ PUNCT : _ 10 punct _ _ 12 and _ CONJ CC _ 10 cc _ _ 13 what _ PRON WP _ 15 nsubj _ _ 14 may _ AUX MD _ 15 aux _ _ 15 happen _ VERB VB _ 10 conj _ _ 16 to _ ADP TO _ 17 case _ _ 17 it _ PRON PRP _ 15 nmod _ _ 18 as _ SCONJ IN _ 23 mark _ _ 19 the _ DET DT _ 22 det _ _ 20 cable-TV _ NOUN NN _ 22 compound _ _ 21 news _ NOUN NN _ 22 compound _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 grows _ VERB VBZ _ 15 advcl _ _ 24 more _ ADV RBR _ 25 advmod _ _ 25 competitive _ ADJ JJ _ 23 xcomp _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Already _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 CNN _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 facing _ VERB VBG _ 0 root _ _ 6 stronger _ ADJ JJR _ 7 amod _ _ 7 competition _ NOUN NN _ 5 dobj _ _ 8 from _ ADP IN _ 12 case _ _ 9 Financial _ PROPN NNP _ 12 compound _ _ 10 News _ PROPN NNP _ 12 compound _ _ 11 Network _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 7 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 General _ PROPN NNP _ 16 compound _ _ 15 Electric _ PROPN NNP _ 16 compound _ _ 16 Co. _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 Consumer _ PROPN NNP _ 19 compound _ _ 19 News _ PROPN NNP _ 12 conj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 Business _ PROPN NNP _ 22 compound _ _ 22 Channel _ PROPN NNP _ 19 conj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 both _ DET DT _ 28 nsubj _ _ 25 of _ ADP IN _ 26 case _ _ 26 which _ PRON WDT _ 24 nmod _ _ 27 are _ VERB VBP _ 28 cop _ _ 28 likely _ ADJ JJ _ 12 acl:relcl _ _ 29 to _ PART TO _ 30 mark _ _ 30 pursue _ VERB VB _ 28 xcomp _ _ 31 more _ ADJ JJR _ 32 dep _ _ 32 general _ ADJ JJ _ 33 amod _ _ 33 news _ NOUN NN _ 30 dobj _ _ 34 in _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 future _ NOUN NN _ 30 nmod _ _ 37 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 many _ ADJ JJ _ 6 amod _ _ 5 cable-TV _ NOUN NN _ 6 compound _ _ 6 systems _ NOUN NNS _ 9 nsubj _ _ 7 themselves _ PRON PRP _ 6 nmod:npmod _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 airing _ VERB VBG _ 0 root _ _ 10 more _ ADJ RBR _ 15 amod _ _ 11 local _ ADJ JJ _ 15 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 regional _ ADJ JJ _ 11 conj _ _ 14 news _ NOUN NN _ 15 compound _ _ 15 programs _ NOUN NNS _ 9 dobj _ _ 16 produced _ VERB VBN _ 15 acl _ _ 17 by _ ADP IN _ 20 case _ _ 18 local _ ADJ JJ _ 20 amod _ _ 19 broadcast _ NOUN NN _ 20 compound _ _ 20 stations _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 CNN _ PROPN NNP _ 2 nsubj _ _ 2 wants _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 change _ VERB VB _ 2 xcomp _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 viewers _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 habits _ NOUN NNS _ 4 dobj _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 watchers _ NOUN NNS _ 11 nsubj _ _ 3 are _ VERB VBP _ 11 cop _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 whole _ NOUN NN _ 11 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 disloyal _ ADJ JJ _ 11 amod _ _ 11 group _ NOUN NN _ 0 root _ _ 12 of _ ADP IN _ 15 case _ _ 13 channel-zapping _ ADJ JJ _ 15 amod _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 grazers _ NOUN NNS _ 11 nmod _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 news _ NOUN NN _ 19 compound _ _ 19 junkies _ NOUN NNS _ 15 conj _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 spend _ VERB VBP _ 11 acl:relcl _ _ 23 an _ DET DT _ 24 det _ _ 24 average _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 28 case _ _ 26 just _ ADV RB _ 27 advmod _ _ 27 26 _ NUM CD _ 28 nummod _ _ 28 minutes _ NOUN NNS _ 24 nmod _ _ 29 a _ DET DT _ 30 det _ _ 30 day _ NOUN NN _ 28 nmod:npmod _ _ 31 watching _ VERB VBG _ 22 xcomp _ _ 32 CNN _ PROPN NNP _ 31 dobj _ _ 33 , _ PUNCT , _ 22 punct _ _ 34 according _ VERB VBG _ 37 case _ _ 35 to _ ADP TO _ 34 mwe _ _ 36 audience _ NOUN NN _ 37 compound _ _ 37 research _ NOUN NN _ 22 nmod _ _ 38 . _ PUNCT . _ 11 punct _ _ 1 That _ PRON DT _ 7 nsubj _ _ 2 's _ VERB VBZ _ 7 cop _ _ 3 less _ ADJ JJR _ 5 advmod _ _ 4 than _ ADP IN _ 3 mwe _ _ 5 one-third _ NOUN JJ _ 7 nummod _ _ 6 the _ DET DT _ 7 det _ _ 7 time _ NOUN NN _ 0 root _ _ 8 that _ ADP WDT _ 10 advmod _ _ 9 viewers _ NOUN NNS _ 10 nsubj _ _ 10 watch _ VERB VBP _ 7 dep _ _ 11 the _ DET DT _ 14 det _ _ 12 major _ ADJ JJ _ 14 amod _ _ 13 broadcast _ NOUN NN _ 14 compound _ _ 14 networks _ NOUN NNS _ 10 dobj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 brief _ ADJ JJ _ 3 amod _ _ 3 attention _ NOUN NN _ 8 nsubj _ _ 4 viewers _ NOUN NNS _ 5 nsubj _ _ 5 give _ VERB VBP _ 3 acl:relcl _ _ 6 CNN _ PROPN NNP _ 5 dobj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 put _ VERB VB _ 0 root _ _ 9 it _ PRON PRP _ 8 dobj _ _ 10 at _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 disadvantage _ NOUN NN _ 8 nmod _ _ 13 as _ SCONJ IN _ 20 mark _ _ 14 ratings _ NOUN NNS _ 15 compound _ _ 15 data _ NOUN NNS _ 20 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 advertising _ NOUN NN _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 become _ VERB VB _ 8 advcl _ _ 21 more _ ADV RBR _ 22 advmod _ _ 22 important _ ADJ JJ _ 20 xcomp _ _ 23 to _ ADP TO _ 25 case _ _ 24 cable-TV _ NOUN NN _ 25 compound _ _ 25 channels _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 CNN _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 viewer _ NOUN NN _ 4 compound _ _ 4 habits _ NOUN NNS _ 7 nsubjpass _ _ 5 have _ AUX VBP _ 7 aux _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 molded _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 format _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 strategy _ NOUN NN _ 7 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 past _ NOUN NN _ 2 nmod _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 been _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 serve _ VERB VB _ 7 xcomp _ _ 10 as _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 TV _ NOUN NN _ 14 compound _ _ 13 wire _ NOUN NN _ 14 compound _ _ 14 service _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 focused _ VERB VBD _ 0 root _ _ 3 on _ SCONJ IN _ 4 case _ _ 4 building _ NOUN VBG _ 2 advcl _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 news _ NOUN NN _ 8 compound _ _ 8 bureaus _ NOUN NNS _ 4 dobj _ _ 9 around _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 world _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 so _ ADV RB _ 20 advmod _ _ 14 as _ SCONJ IN _ 16 mark _ _ 15 events _ NOUN NNS _ 16 nsubj _ _ 16 took _ VERB VBD _ 20 advcl _ _ 17 place _ NOUN NN _ 16 dobj _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 go _ VERB VB _ 2 ccomp _ _ 21 live _ ADJ JJ _ 20 xcomp _ _ 22 quicker _ ADV JJR _ 20 advmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 longer _ ADV JJR _ 22 conj _ _ 25 than _ ADP IN _ 27 case _ _ 26 other _ ADJ JJ _ 27 amod _ _ 27 networks _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 filled _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 daily _ ADJ JJ _ 5 amod _ _ 5 schedule _ NOUN NN _ 2 dobj _ _ 6 with _ ADP IN _ 7 case _ _ 7 newscasts _ NOUN NNS _ 2 nmod _ _ 8 called _ VERB VBN _ 7 acl _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 Daybreak _ PROPN NNP _ 8 xcomp _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 `` _ PUNCT `` _ 10 punct _ _ 14 Daywatch _ PROPN NNP _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 '' _ PUNCT '' _ 10 punct _ _ 17 `` _ PUNCT `` _ 10 punct _ _ 18 Newsday _ PROPN NNP _ 10 conj _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 '' _ PUNCT '' _ 10 punct _ _ 21 and _ CONJ CC _ 10 cc _ _ 22 `` _ PUNCT `` _ 10 punct _ _ 23 Newsnight _ PROPN NNP _ 10 conj _ _ 24 , _ PUNCT , _ 2 punct _ _ 25 '' _ PUNCT '' _ 2 punct _ _ 26 but _ CONJ CC _ 2 cc _ _ 27 the _ DET DT _ 28 det _ _ 28 shows _ NOUN NNS _ 29 nsubj _ _ 29 varied _ VERB VBD _ 2 conj _ _ 30 little _ ADJ JJ _ 29 dobj _ _ 31 in _ ADP IN _ 32 case _ _ 32 content _ NOUN NN _ 29 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 personality _ NOUN NN _ 32 conj _ _ 35 or _ CONJ CC _ 32 cc _ _ 36 look _ NOUN NN _ 32 conj _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 push _ NOUN NN _ 6 nsubj _ _ 5 is _ VERB VBZ _ 6 cop _ _ 6 on _ ADV IN _ 0 root _ _ 7 for _ ADP IN _ 9 case _ _ 8 more-distinctive _ ADJ JJ _ 9 amod _ _ 9 shows _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 Our _ PRON PRP$ _ 3 nmod:poss _ _ 3 goal _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 15 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 create _ VERB VB _ 4 xcomp _ _ 7 more _ ADJ JJR _ 8 amod _ _ 8 programs _ NOUN NNS _ 6 dobj _ _ 9 with _ ADP IN _ 12 case _ _ 10 an _ DET DT _ 12 det _ _ 11 individual _ ADJ JJ _ 12 amod _ _ 12 identity _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 Paul _ PROPN NNP _ 17 compound _ _ 17 Amos _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 CNN _ PROPN NNP _ 22 compound _ _ 20 executive _ ADJ NN _ 22 amod _ _ 21 vice _ NOUN NN _ 22 compound _ _ 22 president _ NOUN NN _ 17 appos _ _ 23 for _ ADP IN _ 24 case _ _ 24 programming _ NOUN NN _ 22 nmod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 Accordingly _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 CNN _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 adding _ VERB VBG _ 34 ccomp _ _ 6 a _ DET DT _ 8 det _ _ 7 world-affairs _ NOUN JJ _ 8 compound _ _ 8 show _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 morning _ NOUN NN _ 8 nmod _ _ 12 because _ SCONJ IN _ 14 mark _ _ 13 surveys _ NOUN NNS _ 14 nsubj _ _ 14 show _ VERB VBP _ 5 advcl _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 global-news _ NOUN JJ _ 17 compound _ _ 17 hour _ NOUN NN _ 28 nsubj _ _ 18 in _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 afternoon _ NOUN NN _ 17 nmod _ _ 21 is _ VERB VBZ _ 28 cop _ _ 22 among _ ADP IN _ 28 case _ _ 23 its _ PRON PRP$ _ 28 nmod:poss _ _ 24 most _ ADV RBS _ 26 advmod _ _ 25 `` _ PUNCT `` _ 26 punct _ _ 26 differentiated _ ADJ VBN _ 28 amod _ _ 27 '' _ PUNCT '' _ 26 punct _ _ 28 programs _ NOUN NNS _ 14 ccomp _ _ 29 in _ ADP IN _ 32 case _ _ 30 viewers _ NOUN NNS _ 32 nmod:poss _ _ 31 ' _ PART POS _ 30 case _ _ 32 minds _ NOUN NNS _ 28 nmod _ _ 33 , _ PUNCT , _ 34 punct _ _ 34 says _ VERB VBZ _ 0 root _ _ 35 Mr. _ PROPN NNP _ 36 compound _ _ 36 Amos _ PROPN NNP _ 34 nsubj _ _ 37 . _ PUNCT . _ 34 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 exploring _ VERB VBG _ 0 root _ _ 5 other _ ADJ JJ _ 7 amod _ _ 6 original _ ADJ JJ _ 7 amod _ _ 7 programs _ NOUN NNS _ 4 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 similar _ ADJ JJ _ 7 amod _ _ 10 to _ ADP TO _ 21 case _ _ 11 its _ PRON PRP$ _ 21 nmod:poss _ _ 12 `` _ PUNCT `` _ 21 punct _ _ 13 Larry _ PROPN NNP _ 14 compound _ _ 14 King _ PROPN NNP _ 21 compound _ _ 15 Live _ PROPN NNP _ 14 amod _ _ 16 '' _ PUNCT '' _ 21 punct _ _ 17 and _ CONJ CC _ 21 cc _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 Crossfire _ PROPN NNP _ 21 compound _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 talk _ NOUN NN _ 9 nmod _ _ 22 shows _ VERB NNS _ 21 dep _ _ 23 , _ PUNCT , _ 7 punct _ _ 24 which _ PRON WDT _ 26 dobj _ _ 25 executives _ NOUN NNS _ 26 nsubj _ _ 26 hope _ VERB VBP _ 7 acl:relcl _ _ 27 will _ AUX MD _ 28 aux _ _ 28 keep _ VERB VB _ 26 ccomp _ _ 29 people _ NOUN NNS _ 30 nsubj _ _ 30 tuned _ VERB VBN _ 28 dep _ _ 31 in _ ADP IN _ 30 compound:prt _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Then _ ADV RB _ 3 advmod _ _ 2 there _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 0 root _ _ 4 `` _ PUNCT `` _ 6 punct _ _ 5 The _ PROPN DT _ 6 compound _ _ 6 World _ PROPN NNP _ 3 nsubj _ _ 7 Today _ PROPN NN _ 6 nmod:tmod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 '' _ PUNCT '' _ 6 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 prime-time _ NOUN NN _ 12 compound _ _ 12 newscast _ NOUN NN _ 6 dep _ _ 13 featuring _ VERB VBG _ 12 acl _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Shaw _ PROPN NNP _ 13 dobj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Ms. _ PROPN NNP _ 18 compound _ _ 18 Crier _ PROPN NNP _ 15 conj _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 now _ ADV RB _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 CNN _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 featured _ VERB VBN _ 0 root _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 Hollywood _ PROPN NNP _ 10 compound _ _ 9 gossip _ NOUN NN _ 10 compound _ _ 10 show _ NOUN NN _ 6 dobj _ _ 11 during _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 key _ ADJ JJ _ 15 amod _ _ 14 evening _ NOUN NN _ 15 compound _ _ 15 period _ NOUN NN _ 6 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 70 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 11 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 cable-television-equipped _ ADJ JJ _ 7 amod _ _ 7 households _ NOUN NNS _ 3 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 watch _ VERB VBP _ 7 acl:relcl _ _ 10 news _ NOUN NN _ 9 dobj _ _ 11 do _ VERB VBP _ 22 ccomp _ _ 12 so _ ADV RB _ 11 advmod _ _ 13 between _ ADP IN _ 14 case _ _ 14 6:30 _ NUM CD _ 11 nmod _ _ 15 p.m. _ ADV NN _ 14 advmod _ _ 16 and _ CONJ CC _ 14 cc _ _ 17 7 _ NUM CD _ 14 conj _ _ 18 p.m. _ ADV NN _ 17 advmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 network _ NOUN NN _ 22 nsubj _ _ 22 discovered _ VERB VBN _ 0 root _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 so _ ADP RB _ 22 dep _ _ 25 CNN _ PROPN NNP _ 26 nsubj _ _ 26 wants _ VERB VBZ _ 22 parataxis _ _ 27 in _ ADV IN _ 26 advmod _ _ 28 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Amos _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Shaw-Crier _ PROPN NNP _ 6 compound _ _ 6 team _ NOUN NN _ 9 nsubj _ _ 7 will _ AUX MD _ 9 aux _ _ 8 probably _ ADV RB _ 9 advmod _ _ 9 do _ VERB VB _ 3 ccomp _ _ 10 two _ NUM CD _ 12 nummod _ _ 11 live _ ADJ JJ _ 12 amod _ _ 12 interviews _ NOUN NNS _ 9 dobj _ _ 13 a _ DET DT _ 14 det _ _ 14 day _ NOUN NN _ 12 nmod:npmod _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 with _ SCONJ IN _ 27 mark _ _ 17 most _ ADJ JJS _ 27 nsubj _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 program _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 27 punct _ _ 22 at _ ADP IN _ 25 advmod _ _ 23 least _ ADJ JJS _ 22 mwe _ _ 24 for _ ADP IN _ 25 case _ _ 25 now _ ADV RB _ 27 nmod _ _ 26 , _ PUNCT , _ 27 punct _ _ 27 appearing _ VERB VBG _ 9 advcl _ _ 28 similar _ ADJ JJ _ 27 xcomp _ _ 29 to _ ADP TO _ 33 case _ _ 30 CNN _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 other _ ADJ JJ _ 33 amod _ _ 33 newcasts _ NOUN NNS _ 28 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 6 nsubj _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 industry _ NOUN NN _ 1 nmod _ _ 5 are _ VERB VBP _ 6 cop _ _ 6 skeptical _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 find _ VERB VBP _ 31 ccomp _ _ 4 it _ PRON PRP _ 7 nsubj _ _ 5 hard _ ADJ JJ _ 7 dep _ _ 6 to _ PART TO _ 7 mark _ _ 7 conceive _ VERB VB _ 3 xcomp _ _ 8 of _ SCONJ IN _ 10 mark _ _ 9 people _ NOUN NNS _ 10 nsubj _ _ 10 switching _ VERB VBG _ 7 advcl _ _ 11 over _ ADV IN _ 10 advmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 CNN _ PROPN NNP _ 10 nmod _ _ 14 for _ SCONJ IN _ 28 mark _ _ 15 what _ PRON WP _ 28 nsubj _ _ 16 , _ PUNCT , _ 28 punct _ _ 17 at _ ADP IN _ 23 advmod _ _ 18 least _ ADJ JJS _ 17 mwe _ _ 19 in _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 21 det _ _ 21 public _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 mind _ NOUN NN _ 28 nmod _ _ 24 , _ PUNCT , _ 28 punct _ _ 25 is _ VERB VBZ _ 28 cop _ _ 26 the _ DET DT _ 28 det _ _ 27 same _ ADJ JJ _ 28 amod _ _ 28 news _ NOUN NN _ 10 advcl _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 '' _ PUNCT '' _ 31 punct _ _ 31 says _ VERB VBZ _ 0 root _ _ 32 Reuven _ PROPN NNP _ 33 compound _ _ 33 Frank _ PROPN NNP _ 31 nsubj _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 the _ DET DT _ 38 det _ _ 36 former _ ADJ JJ _ 38 amod _ _ 37 two-time _ ADJ JJ _ 38 amod _ _ 38 president _ NOUN NN _ 33 appos _ _ 39 of _ ADP IN _ 41 case _ _ 40 NBC _ PROPN NNP _ 41 compound _ _ 41 News _ PROPN NNP _ 38 nmod _ _ 42 and _ CONJ CC _ 38 cc _ _ 43 creator _ NOUN NN _ 38 conj _ _ 44 of _ ADP IN _ 47 case _ _ 45 the _ DET DT _ 47 det _ _ 46 Huntley-Brinkley _ PROPN NNP _ 47 compound _ _ 47 Report _ PROPN NNP _ 43 nmod _ _ 48 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 evening _ NOUN NN _ 3 compound _ _ 3 news _ NOUN NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 also _ ADV RB _ 6 advmod _ _ 6 slated _ VERB VBN _ 0 root _ _ 7 as _ ADP IN _ 10 case _ _ 8 CNN _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 stage _ NOUN NN _ 6 nmod _ _ 11 for _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 big _ ADJ JJ _ 14 amod _ _ 14 push _ NOUN NN _ 10 nmod _ _ 15 into _ ADP IN _ 17 case _ _ 16 investigative _ ADJ JJ _ 17 amod _ _ 17 journalism _ NOUN NN _ 14 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 August _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 network _ NOUN NN _ 6 nsubj _ _ 6 hired _ VERB VBD _ 0 root _ _ 7 award-winning _ ADJ JJ _ 10 amod _ _ 8 producer _ NOUN NN _ 10 compound _ _ 9 Pamela _ PROPN NNP _ 10 compound _ _ 10 Hill _ PROPN NNP _ 6 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 former _ ADJ JJ _ 14 amod _ _ 14 head _ NOUN NN _ 10 appos _ _ 15 of _ ADP IN _ 17 case _ _ 16 news _ NOUN NN _ 17 compound _ _ 17 specials _ NOUN NNS _ 14 nmod _ _ 18 at _ ADP IN _ 19 case _ _ 19 ABC _ PROPN NNP _ 14 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 She _ PRON PRP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 assembling _ VERB VBG _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 staff _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 10 case _ _ 7 about _ ADV IN _ 8 advmod _ _ 8 35 _ NUM CD _ 10 nummod _ _ 9 investigative _ ADJ JJ _ 10 amod _ _ 10 reporters _ NOUN NNS _ 5 nmod _ _ 11 who _ PRON WP _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 produce _ VERB VB _ 5 acl:relcl _ _ 14 weekly _ ADJ JJ _ 17 amod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 in-depth _ ADJ JJ _ 17 amod _ _ 17 segments _ NOUN NNS _ 13 dobj _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 with _ ADP IN _ 21 case _ _ 20 an _ DET DT _ 21 det _ _ 21 eye _ NOUN NN _ 13 nmod _ _ 22 toward _ SCONJ IN _ 23 mark _ _ 23 breaking _ VERB VBG _ 21 acl _ _ 24 big _ ADJ JJ _ 25 amod _ _ 25 stories _ NOUN NNS _ 23 dobj _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 CNN _ PROPN NNP _ 2 compound _ _ 2 executives _ NOUN NNS _ 3 nsubj _ _ 3 hope _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 headlines _ NOUN NNS _ 11 nsubj _ _ 6 created _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 9 case _ _ 8 such _ ADJ JJ _ 9 amod _ _ 9 scoops _ NOUN VBZ _ 6 nmod _ _ 10 will _ AUX MD _ 11 aux _ _ 11 generate _ VERB VB _ 3 ccomp _ _ 12 excitement _ NOUN NN _ 11 dobj _ _ 13 for _ ADP IN _ 18 case _ _ 14 its _ PRON PRP$ _ 18 nmod:poss _ _ 15 `` _ PUNCT `` _ 18 punct _ _ 16 branded _ ADJ VBN _ 18 amod _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 programs _ NOUN NNS _ 11 nmod _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 way _ NOUN NN _ 11 nmod _ _ 23 `` _ PUNCT `` _ 27 punct _ _ 24 60 _ PROPN CD _ 25 compound _ _ 25 Minutes _ PROPN NNPS _ 27 nsubj _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 did _ VERB VBD _ 22 acl:relcl _ _ 28 so _ ADV RB _ 29 advmod _ _ 29 well _ ADV RB _ 27 advmod _ _ 30 for _ ADP IN _ 31 case _ _ 31 CBS _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 such _ DET JJ _ 5 det:predet _ _ 4 a _ DET DT _ 5 det _ _ 5 departure _ NOUN NN _ 0 root _ _ 6 from _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 past _ NOUN NN _ 5 nmod _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 many _ ADJ JJ _ 15 nsubj _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 industry _ NOUN NN _ 10 nmod _ _ 14 are _ VERB VBP _ 15 cop _ _ 15 skeptical _ ADJ JJ _ 5 dep _ _ 16 CNN _ PROPN NNP _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 follow _ VERB VB _ 15 ccomp _ _ 19 through _ ADP IN _ 18 compound:prt _ _ 20 with _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 investigative _ ADJ JJ _ 23 amod _ _ 23 commitment _ NOUN NN _ 18 nmod _ _ 24 , _ PUNCT , _ 18 punct _ _ 25 especially _ ADV RB _ 28 advmod _ _ 26 after _ SCONJ IN _ 28 mark _ _ 27 it _ PRON PRP _ 28 nsubj _ _ 28 sees _ VERB VBZ _ 18 advcl _ _ 29 the _ DET DT _ 30 det _ _ 30 cost _ NOUN NN _ 28 dobj _ _ 31 of _ SCONJ IN _ 32 mark _ _ 32 producing _ VERB VBG _ 30 acl _ _ 33 in-depth _ ADJ JJ _ 34 amod _ _ 34 pieces _ NOUN NNS _ 32 dobj _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 never _ ADV RB _ 5 neg _ _ 5 shown _ VERB VBN _ 15 ccomp _ _ 6 any _ DET DT _ 7 det _ _ 7 inclination _ NOUN NN _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 spend _ VERB VB _ 7 acl _ _ 10 money _ NOUN NN _ 9 dobj _ _ 11 on _ ADP IN _ 12 case _ _ 12 production _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 Michael _ PROPN NNP _ 17 compound _ _ 17 Mosettig _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 senior _ ADJ JJ _ 21 amod _ _ 21 producer _ NOUN NN _ 17 appos _ _ 22 with _ ADP IN _ 24 case _ _ 23 MacNeil-Lehrer _ PROPN NNP _ 24 compound _ _ 24 NewsHour _ PROPN NNP _ 21 nmod _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 notes _ VERB VBZ _ 17 acl:relcl _ _ 28 that _ SCONJ IN _ 31 mark _ _ 29 CNN _ PROPN NNP _ 31 nsubj _ _ 30 is _ VERB VBZ _ 31 cop _ _ 31 indispensable _ ADJ JJ _ 27 ccomp _ _ 32 to _ ADP TO _ 34 case _ _ 33 his _ PRON PRP$ _ 34 nmod:poss _ _ 34 job _ NOUN NN _ 31 nmod _ _ 35 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 network _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 salaries _ NOUN NNS _ 7 nsubj _ _ 5 have _ AUX VBP _ 7 aux _ _ 6 always _ ADV RB _ 7 advmod _ _ 7 ranged _ VERB VBN _ 0 root _ _ 8 far _ ADV RB _ 11 advmod _ _ 9 below _ ADP IN _ 11 case _ _ 10 industry _ NOUN NN _ 11 compound _ _ 11 standards _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 resulting _ VERB VBG _ 7 xcomp _ _ 14 in _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 less-experienced _ ADJ JJ _ 18 amod _ _ 17 work _ NOUN NN _ 18 compound _ _ 18 force _ NOUN NN _ 13 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 CNN _ PROPN NNP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 most _ ADJ RBS _ 5 amod _ _ 5 employees _ NOUN NNS _ 3 iobj _ _ 6 raises _ NOUN VBZ _ 3 dobj _ _ 7 of _ ADP IN _ 12 case _ _ 8 as _ ADV RB _ 11 advmod _ _ 9 much _ ADJ JJ _ 11 advmod _ _ 10 as _ ADP IN _ 11 advmod _ _ 11 15 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 6 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 but _ CONJ CC _ 3 cc _ _ 15 they _ PRON PRP _ 19 nsubj _ _ 16 're _ AUX VBP _ 19 aux _ _ 17 still _ ADV RB _ 19 advmod _ _ 18 drastically _ ADV RB _ 19 advmod _ _ 19 underpaid _ ADJ JJ _ 3 conj _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 networks _ NOUN NNS _ 19 advcl _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Mosettig _ PROPN NNP _ 1 nsubj _ _ 4 : _ PUNCT : _ 1 punct _ _ 5 `` _ PUNCT `` _ 1 punct _ _ 6 CNN _ PROPN NNP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 my _ PRON PRP$ _ 10 nmod:poss _ _ 9 wire _ NOUN NN _ 10 compound _ _ 10 service _ NOUN NN _ 1 ccomp _ _ 11 ; _ PUNCT : _ 10 punct _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 're _ VERB VBP _ 15 cop _ _ 14 on _ ADP IN _ 15 case _ _ 15 top _ NOUN NN _ 10 parataxis _ _ 16 of _ ADP IN _ 17 case _ _ 17 everything _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 to _ PART TO _ 3 mark _ _ 3 improve _ VERB VB _ 8 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 they _ PRON PRP _ 8 nsubj _ _ 6 've _ AUX VBP _ 8 aux _ _ 7 really _ ADV RB _ 8 advmod _ _ 8 got _ VERB VBN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 make _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 investment _ NOUN NN _ 10 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 people _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 16 '' _ PUNCT '' _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 cable-TV-system _ NOUN NN _ 6 compound _ _ 6 operators _ NOUN NNS _ 7 nsubj _ _ 7 have _ VERB VBP _ 0 root _ _ 8 reason _ NOUN NN _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 fear _ VERB VB _ 8 acl _ _ 11 any _ DET DT _ 12 det _ _ 12 tinkering _ NOUN VBG _ 10 dobj _ _ 13 with _ ADP IN _ 16 case _ _ 14 CNN _ PROPN NNP _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 format _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 market _ VERB VBP _ 0 root _ _ 3 cable-TV _ NOUN NN _ 2 dobj _ _ 4 on _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 very _ ADJ RB _ 8 amod _ _ 7 grazing _ NOUN NN _ 8 compound _ _ 8 opportunities _ NOUN NNS _ 2 nmod _ _ 9 CNN _ PROPN NNP _ 10 nsubj _ _ 10 seeks _ VERB VBZ _ 8 acl:relcl _ _ 11 to _ PART TO _ 12 mark _ _ 12 discourage _ VERB VB _ 10 xcomp _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 6 nsubjpass _ _ 3 would _ AUX MD _ 6 aux _ _ 4 obviously _ ADV RB _ 6 advmod _ _ 5 be _ VERB VB _ 6 auxpass _ _ 6 upset _ VERB VBN _ 21 ccomp _ _ 7 if _ SCONJ IN _ 12 mark _ _ 8 those _ DET DT _ 9 det _ _ 9 kinds _ NOUN NNS _ 12 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 services _ NOUN NNS _ 9 nmod _ _ 12 evolved _ VERB VBD _ 6 advcl _ _ 13 into _ ADP IN _ 18 case _ _ 14 more _ ADJ JJR _ 15 dep _ _ 15 general-interest _ ADJ NN _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 long-format _ ADJ JJ _ 18 amod _ _ 18 programming _ NOUN NN _ 12 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 Robert _ PROPN NNP _ 23 compound _ _ 23 Stengel _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 senior _ ADJ JJ _ 27 amod _ _ 26 vice _ NOUN NN _ 27 compound _ _ 27 president _ NOUN NN _ 23 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 programming _ NOUN NN _ 27 appos _ _ 30 , _ PUNCT , _ 27 punct _ _ 31 of _ ADP IN _ 34 case _ _ 32 Continental _ PROPN NNP _ 34 compound _ _ 33 Cablevision _ PROPN NNP _ 34 compound _ _ 34 Inc. _ PROPN NNP _ 23 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 which _ PRON WDT _ 37 nsubj _ _ 37 holds _ VERB VBZ _ 34 acl:relcl _ _ 38 a _ DET DT _ 41 det _ _ 39 2 _ NUM CD _ 40 compound _ _ 40 % _ SYM NN _ 41 amod _ _ 41 stake _ NOUN NN _ 37 dobj _ _ 42 in _ ADP IN _ 44 case _ _ 43 Turner _ PROPN NNP _ 44 compound _ _ 44 Broadcasting _ PROPN NNP _ 41 nmod _ _ 45 . _ PUNCT . _ 21 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Second _ PROPN JJ _ 8 dep _ _ 3 U.S. _ PROPN NNP _ 2 compound _ _ 4 Circuit _ PROPN NNP _ 2 compound _ _ 5 Court _ PROPN NNP _ 2 dep _ _ 6 of _ ADP IN _ 7 case _ _ 7 Appeals _ PROPN NNPS _ 2 nmod _ _ 8 opinion _ NOUN NN _ 16 nsubj _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 Arcadian _ PROPN NNP _ 13 compound _ _ 12 Phosphate _ PROPN NNP _ 13 compound _ _ 13 case _ NOUN NN _ 8 nmod _ _ 14 did _ AUX VBD _ 16 aux _ _ 15 not _ PART RB _ 16 neg _ _ 16 repudiate _ VERB VB _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 position _ NOUN NN _ 16 dobj _ _ 19 Pennzoil _ PROPN NNP _ 20 compound _ _ 20 Co. _ PROPN NNP _ 21 nsubj _ _ 21 took _ VERB VBD _ 18 acl:relcl _ _ 22 in _ ADP RP _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 dispute _ NOUN NN _ 21 nmod _ _ 25 with _ ADP IN _ 26 case _ _ 26 Texaco _ PROPN NNP _ 24 nmod _ _ 27 , _ PUNCT , _ 16 punct _ _ 28 contrary _ ADJ JJ _ 16 advmod _ _ 29 to _ ADP TO _ 33 case _ _ 30 your _ PRON PRP$ _ 33 nmod:poss _ _ 31 Sept. _ PROPN NNP _ 33 compound _ _ 32 8 _ NUM CD _ 33 nummod _ _ 33 article _ NOUN NN _ 28 nmod _ _ 34 `` _ PUNCT `` _ 33 punct _ _ 35 Court _ NOUN NNP _ 36 nsubj _ _ 36 Backs _ VERB VBZ _ 33 dep _ _ 37 Texaco _ PROPN NNP _ 39 nmod:poss _ _ 38 's _ PART POS _ 37 case _ _ 39 View _ NOUN NNP _ 36 dobj _ _ 40 in _ ADP IN _ 42 case _ _ 41 Pennzoil _ PROPN NNP _ 42 compound _ _ 42 Case _ NOUN NNP _ 36 nmod _ _ 43 -- _ PUNCT : _ 36 punct _ _ 44 Too _ ADV NNP _ 45 advmod _ _ 45 Late _ ADV NNP _ 36 advmod _ _ 46 . _ PUNCT . _ 16 punct _ _ 47 '' _ PUNCT '' _ 16 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 fundamental _ ADJ JJ _ 3 amod _ _ 3 rule _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 contract _ NOUN NN _ 6 compound _ _ 6 law _ NOUN NN _ 3 nmod _ _ 7 applied _ VERB VBD _ 3 acl _ _ 8 to _ ADP TO _ 10 case _ _ 9 both _ DET DT _ 10 det _ _ 10 cases _ NOUN NNS _ 7 nmod _ _ 11 was _ VERB VBD _ 0 root _ _ 12 that _ SCONJ IN _ 16 mark _ _ 13 courts _ NOUN NNS _ 16 nsubj _ _ 14 will _ AUX MD _ 16 aux _ _ 15 not _ PART RB _ 16 neg _ _ 16 enforce _ VERB VB _ 11 ccomp _ _ 17 agreements _ NOUN NNS _ 16 dobj _ _ 18 to _ ADP TO _ 19 case _ _ 19 which _ PRON WDT _ 24 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 parties _ NOUN NNS _ 24 nsubj _ _ 22 did _ AUX VBD _ 24 aux _ _ 23 not _ PART RB _ 24 neg _ _ 24 intend _ VERB VB _ 17 acl:relcl _ _ 25 to _ PART TO _ 27 mark _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 bound _ VERB VBN _ 24 xcomp _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 Pennzoil/Texaco _ PROPN NNP _ 4 compound _ _ 4 litigation _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 courts _ NOUN NNS _ 8 nsubj _ _ 8 found _ VERB VBD _ 0 root _ _ 9 Pennzoil _ PROPN NNP _ 13 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Getty _ PROPN NNP _ 12 compound _ _ 12 Oil _ PROPN NNP _ 9 conj _ _ 13 intended _ VERB VBD _ 8 ccomp _ _ 14 to _ PART TO _ 16 mark _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 bound _ VERB VBN _ 13 xcomp _ _ 17 ; _ PUNCT : _ 8 punct _ _ 18 in _ ADP IN _ 20 case _ _ 19 Arcadian _ PROPN NNP _ 20 compound _ _ 20 Phosphates _ PROPN NNPS _ 22 nmod _ _ 21 they _ PRON PRP _ 22 nsubj _ _ 22 found _ VERB VBD _ 8 parataxis _ _ 23 there _ PRON EX _ 24 expl _ _ 24 was _ VERB VBD _ 22 ccomp _ _ 25 no _ DET DT _ 26 neg _ _ 26 intention _ NOUN NN _ 24 nsubj _ _ 27 to _ PART TO _ 29 mark _ _ 28 be _ AUX VB _ 29 auxpass _ _ 29 bound _ VERB VBN _ 26 acl _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 Admittedly _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 principle _ NOUN NN _ 10 nsubj _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 cases _ NOUN NNS _ 4 nmod _ _ 8 is _ VERB VBZ _ 10 cop _ _ 9 the _ DET DT _ 10 det _ _ 10 same _ ADJ JJ _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 outcome _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 legal _ ADJ JJ _ 7 amod _ _ 7 dispute _ NOUN NN _ 3 nmod _ _ 8 almost _ ADV RB _ 9 advmod _ _ 9 always _ ADV RB _ 10 advmod _ _ 10 turns _ VERB VBZ _ 0 root _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 facts _ NOUN NNS _ 10 nmod _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 And _ CONJ CC _ 17 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 facts _ NOUN NNS _ 17 nsubj _ _ 4 , _ PUNCT , _ 17 punct _ _ 5 as _ SCONJ IN _ 6 mark _ _ 6 found _ VERB VBN _ 17 dep _ _ 7 by _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 various _ ADJ JJ _ 10 amod _ _ 10 courts _ NOUN NNS _ 6 nmod _ _ 11 in _ ADP IN _ 14 case _ _ 12 these _ DET DT _ 14 det _ _ 13 two _ NUM CD _ 14 nummod _ _ 14 lawsuits _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 were _ VERB VBD _ 17 cop _ _ 17 different _ ADJ JJ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 suggest _ VERB VBP _ 7 advcl _ _ 4 otherwise _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 you _ PRON PRP _ 7 nsubj _ _ 7 leave _ VERB VBP _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 realm _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 reporting _ NOUN NN _ 9 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 enter _ VERB VB _ 7 conj _ _ 14 the _ DET DT _ 15 det _ _ 15 orbit _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 speculation _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Charles _ PROPN NNP _ 3 compound _ _ 2 F. _ PROPN NNP _ 3 compound _ _ 3 Vihon _ PROPN NNP _ 0 root _ _ 1 Valley _ PROPN NNP _ 3 compound _ _ 2 Federal _ PROPN NNP _ 3 compound _ _ 3 Savings _ PROPN NNP _ 7 nsubj _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Loan _ PROPN NNP _ 6 compound _ _ 6 Association _ PROPN NNP _ 3 conj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 Imperial _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 12 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 America _ PROPN NNP _ 9 nmod _ _ 12 withdrew _ VERB VBD _ 7 ccomp _ _ 13 from _ ADP IN _ 14 case _ _ 14 regulators _ NOUN NNS _ 12 nmod _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 application _ NOUN NN _ 12 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 buy _ VERB VB _ 16 acl _ _ 19 five _ NUM CD _ 22 nummod _ _ 20 Valley _ PROPN NNP _ 22 compound _ _ 21 Federal _ PROPN NNP _ 22 compound _ _ 22 branches _ NOUN NNS _ 18 dobj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 leaving _ VERB VBG _ 12 advcl _ _ 25 the _ DET DT _ 26 det _ _ 26 transaction _ NOUN NN _ 24 dobj _ _ 27 in _ ADP IN _ 28 case _ _ 28 limbo _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 broken _ ADJ JJ _ 3 amod _ _ 3 purchase _ NOUN NN _ 4 nsubj _ _ 4 appears _ VERB VBZ _ 0 root _ _ 5 as _ ADP IN _ 7 case _ _ 6 additional _ ADJ JJ _ 7 amod _ _ 7 evidence _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 trouble _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 Imperial _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 whose _ PRON WP$ _ 15 nmod:poss _ _ 15 spokesman _ NOUN NN _ 16 nsubj _ _ 16 said _ VERB VBD _ 12 acl:relcl _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 19 nsubj _ _ 19 withdrew _ VERB VBD _ 16 ccomp _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 application _ NOUN NN _ 19 dobj _ _ 22 from _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 federal _ ADJ JJ _ 25 amod _ _ 25 Office _ PROPN NNP _ 19 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 Thrift _ PROPN NNP _ 28 compound _ _ 28 Supervision _ PROPN NNP _ 25 nmod _ _ 29 because _ ADP IN _ 33 case _ _ 30 of _ ADP IN _ 29 mwe _ _ 31 an _ DET DT _ 33 det _ _ 32 informal _ ADJ JJ _ 33 amod _ _ 33 notice _ NOUN NN _ 19 nmod _ _ 34 that _ SCONJ WDT _ 39 mark _ _ 35 Imperial _ PROPN NNP _ 38 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 thrift _ NOUN NN _ 38 compound _ _ 38 unit _ NOUN NN _ 39 nsubj _ _ 39 failed _ VERB VBD _ 33 ccomp _ _ 40 to _ PART TO _ 41 mark _ _ 41 meet _ VERB VB _ 39 xcomp _ _ 42 Community _ PROPN NNP _ 44 compound _ _ 43 Reinvestment _ PROPN NNP _ 44 compound _ _ 44 Act _ PROPN NNP _ 45 compound _ _ 45 requirements _ NOUN NNS _ 41 dobj _ _ 46 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Community _ PROPN NNP _ 4 compound _ _ 3 Reinvestment _ PROPN NNP _ 4 compound _ _ 4 Act _ PROPN NNP _ 5 nsubj _ _ 5 requires _ VERB VBZ _ 0 root _ _ 6 savings _ NOUN NNS _ 5 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 loan _ NOUN NN _ 9 compound _ _ 9 associations _ NOUN NNS _ 6 conj _ _ 10 to _ PART TO _ 11 mark _ _ 11 lend _ VERB VB _ 5 xcomp _ _ 12 money _ NOUN NN _ 11 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 amounts _ NOUN NNS _ 11 nmod _ _ 15 related _ VERB VBN _ 14 amod _ _ 16 to _ ADP TO _ 17 case _ _ 17 areas _ NOUN NNS _ 15 nmod _ _ 18 where _ ADV WRB _ 21 advmod _ _ 19 deposits _ NOUN NNS _ 21 nsubjpass _ _ 20 are _ AUX VBP _ 21 auxpass _ _ 21 received _ VERB VBN _ 17 acl:relcl _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 transaction _ NOUN NN _ 8 nsubj _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 announced _ VERB VBN _ 8 advcl _ _ 5 in _ ADP IN _ 6 case _ _ 6 August _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 included _ VERB VBD _ 0 root _ _ 9 about _ ADV IN _ 10 advmod _ _ 10 $ _ SYM $ _ 8 dobj _ _ 11 146 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 in _ ADP IN _ 14 case _ _ 14 deposits _ NOUN NNS _ 10 nmod _ _ 15 at _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 five _ NUM CD _ 18 nummod _ _ 18 outlets _ NOUN NNS _ 14 nmod _ _ 19 in _ ADP IN _ 24 case _ _ 20 California _ PROPN NNP _ 24 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 San _ PROPN NNP _ 24 compound _ _ 23 Joaquin _ PROPN NNP _ 24 compound _ _ 24 Valley _ PROPN NNP _ 18 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 but _ CONJ CC _ 4 cc _ _ 7 Valley _ PROPN NNP _ 8 compound _ _ 8 Federal _ PROPN NNP _ 10 nsubj _ _ 9 had _ AUX VBD _ 10 aux _ _ 10 said _ VERB VBN _ 4 conj _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 expected _ VERB VBD _ 10 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 post _ VERB VB _ 12 ccomp _ _ 15 a _ DET DT _ 18 det _ _ 16 modest _ ADJ JJ _ 18 amod _ _ 17 pretax _ ADJ NN _ 18 amod _ _ 18 gain _ NOUN NN _ 14 dobj _ _ 19 and _ CONJ CC _ 14 cc _ _ 20 to _ PART TO _ 21 mark _ _ 21 save _ VERB VB _ 14 conj _ _ 22 about _ ADV IN _ 23 advmod _ _ 23 $ _ SYM $ _ 21 dobj _ _ 24 2 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 in _ ADP IN _ 28 case _ _ 27 operating _ NOUN VBG _ 28 compound _ _ 28 costs _ NOUN NNS _ 23 nmod _ _ 29 annually _ ADV RB _ 21 advmod _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 Valley _ PROPN NNP _ 2 compound _ _ 2 Federal _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 considering _ VERB VBG _ 3 ccomp _ _ 9 whether _ SCONJ IN _ 11 mark _ _ 10 to _ PART TO _ 11 mark _ _ 11 seek _ VERB VB _ 8 ccomp _ _ 12 another _ DET DT _ 13 det _ _ 13 buyer _ NOUN NN _ 11 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 branches _ NOUN NNS _ 13 nmod _ _ 17 or _ CONJ CC _ 11 cc _ _ 18 to _ PART TO _ 19 mark _ _ 19 pursue _ VERB VB _ 11 conj _ _ 20 the _ DET DT _ 21 det _ _ 21 transaction _ NOUN NN _ 19 dobj _ _ 22 with _ ADP IN _ 24 case _ _ 23 Imperial _ PROPN NNP _ 24 compound _ _ 24 Corp. _ PROPN NNP _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 said _ VERB VBD _ 24 acl:relcl _ _ 28 it _ PRON PRP _ 30 nsubj _ _ 29 is _ AUX VBZ _ 30 aux _ _ 30 attempting _ VERB VBG _ 27 ccomp _ _ 31 to _ PART TO _ 32 mark _ _ 32 meet _ VERB VB _ 30 xcomp _ _ 33 Community _ PROPN NNP _ 36 compound _ _ 34 Reinvestment _ PROPN NNP _ 36 compound _ _ 35 Act _ PROPN NNP _ 36 compound _ _ 36 requirements _ NOUN NNS _ 32 dobj _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 Valley _ PROPN NNP _ 2 compound _ _ 2 Federal _ PROPN NNP _ 12 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 with _ ADP IN _ 5 case _ _ 5 assets _ NOUN NNS _ 2 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 3.3 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 is _ AUX VBZ _ 12 auxpass _ _ 12 based _ VERB VBN _ 0 root _ _ 13 in _ ADP IN _ 15 case _ _ 14 Van _ PROPN NNP _ 15 compound _ _ 15 Nuys _ PROPN NNP _ 12 nmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 Imperial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 San _ PROPN NNP _ 7 compound _ _ 7 Diego _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 the _ DET DT _ 11 det _ _ 11 parent _ NOUN NN _ 0 root _ _ 12 of _ ADP IN _ 14 case _ _ 13 Imperial _ PROPN NNP _ 14 compound _ _ 14 Savings _ PROPN NNP _ 11 nmod _ _ 15 & _ CONJ CC _ 14 cc _ _ 16 Loan _ PROPN NNP _ 14 conj _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 six _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 10 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 year _ NOUN NN _ 5 nmod _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 posted _ VERB VBD _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 33.1 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 Call _ VERB VB _ 0 root _ _ 2 it _ PRON PRP _ 12 nsubj _ _ 3 the _ DET DT _ 12 det _ _ 4 `` _ PUNCT `` _ 12 punct _ _ 5 we _ PRON PRP _ 8 nsubj _ _ 6 're _ VERB VBP _ 8 cop _ _ 7 too _ ADV RB _ 8 advmod _ _ 8 broke _ ADJ VBN _ 12 dep _ _ 9 to _ PART TO _ 10 mark _ _ 10 fight _ VERB VB _ 8 xcomp _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 defense _ NOUN NN _ 1 xcomp _ _ 13 . _ PUNCT . _ 1 punct _ _ 1 Lawyers _ NOUN NNS _ 11 nsubj _ _ 2 for _ ADP IN _ 3 case _ _ 3 dozens _ NOUN NNS _ 1 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 insolvent _ ADJ JJ _ 6 amod _ _ 6 savings _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 loan _ NOUN NN _ 9 compound _ _ 9 associations _ NOUN NNS _ 6 conj _ _ 10 are _ AUX VBP _ 11 aux _ _ 11 trying _ VERB VBG _ 0 root _ _ 12 a _ DET DT _ 14 det _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 tack _ NOUN NN _ 11 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 efforts _ NOUN NNS _ 11 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 defuse _ VERB VB _ 17 acl _ _ 20 suits _ NOUN NNS _ 19 dobj _ _ 21 filed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 23 case _ _ 23 borrowers _ NOUN NNS _ 21 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 developers _ NOUN NNS _ 23 conj _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 creditors _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 thrifts _ NOUN NNS _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 lawyers _ NOUN NNS _ 5 nsubj _ _ 5 claim _ VERB VBP _ 0 root _ _ 6 that _ SCONJ IN _ 20 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 suits _ NOUN NNS _ 20 nsubjpass _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 numbering _ VERB NN _ 8 acl _ _ 11 700 _ NUM CD _ 13 nummod _ _ 12 to _ ADP TO _ 13 dep _ _ 13 1,000 _ NUM CD _ 10 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 Texas _ PROPN NNP _ 10 nmod _ _ 16 alone _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 should _ AUX MD _ 20 aux _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 dismissed _ VERB VBN _ 5 ccomp _ _ 21 as _ ADV IN _ 22 advmod _ _ 22 moot _ ADJ JJ _ 20 advcl _ _ 23 because _ SCONJ IN _ 36 mark _ _ 24 neither _ CONJ CC _ 26 cc:preconj _ _ 25 the _ DET DT _ 26 det _ _ 26 S&Ls _ NOUN NNP _ 36 nsubj _ _ 27 nor _ CONJ CC _ 26 cc _ _ 28 the _ DET DT _ 31 det _ _ 29 extinct _ ADJ JJ _ 31 amod _ _ 30 Federal _ PROPN NNP _ 31 compound _ _ 31 Savings _ PROPN NNPS _ 26 conj _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 Loan _ PROPN NNP _ 35 compound _ _ 34 Insurance _ PROPN NNP _ 35 compound _ _ 35 Corp. _ PROPN NNP _ 31 conj _ _ 36 has _ VERB VBZ _ 20 advcl _ _ 37 the _ DET DT _ 38 det _ _ 38 money _ NOUN NN _ 36 dobj _ _ 39 to _ PART TO _ 40 mark _ _ 40 pay _ VERB VB _ 38 acl _ _ 41 judgments _ NOUN NNS _ 40 dobj _ _ 42 . _ PUNCT . _ 5 punct _ _ 1 Though _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 argument _ NOUN NN _ 5 nsubj _ _ 4 may _ AUX MD _ 5 aux _ _ 5 have _ VERB VB _ 16 advcl _ _ 6 a _ DET DT _ 8 det _ _ 7 common-sense _ NOUN JJ _ 8 compound _ _ 8 ring _ NOUN NN _ 5 dobj _ _ 9 to _ ADP TO _ 10 case _ _ 10 it _ PRON PRP _ 5 nmod _ _ 11 , _ PUNCT , _ 16 punct _ _ 12 even _ ADV RB _ 15 advmod _ _ 13 the _ DET DT _ 15 det _ _ 14 S&L _ NOUN NN _ 15 compound _ _ 15 lawyers _ NOUN NNS _ 16 nsubj _ _ 16 concede _ VERB VBP _ 0 root _ _ 17 there _ PRON EX _ 18 expl _ _ 18 's _ VERB VBZ _ 16 ccomp _ _ 19 little _ ADV JJ _ 20 advmod _ _ 20 precedent _ ADJ NN _ 18 nsubj _ _ 21 to _ PART TO _ 22 mark _ _ 22 back _ VERB VB _ 20 acl _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 position _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 16 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 one _ NUM CD _ 6 nummod _ _ 4 federal _ ADJ JJ _ 6 amod _ _ 5 appeals _ NOUN NNS _ 6 compound _ _ 6 court _ NOUN NN _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 signaled _ VERB VBN _ 0 root _ _ 9 it _ PRON PRP _ 11 nsubj _ _ 10 's _ VERB VBZ _ 11 cop _ _ 11 willing _ ADJ JJ _ 8 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 entertain _ VERB VB _ 11 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 notion _ NOUN NN _ 13 dobj _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 and _ CONJ CC _ 8 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 lawyers _ NOUN NNS _ 21 nsubj _ _ 20 have _ AUX VBP _ 21 aux _ _ 21 renewed _ VERB VBN _ 8 conj _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 arguments _ NOUN NNS _ 21 dobj _ _ 24 in _ ADP IN _ 25 case _ _ 25 Texas _ PROPN NNP _ 21 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 eight _ NUM CD _ 29 nummod _ _ 28 other _ ADJ JJ _ 29 amod _ _ 29 states _ NOUN NNS _ 25 conj _ _ 30 where _ ADV WRB _ 34 advmod _ _ 31 the _ DET DT _ 32 det _ _ 32 defense _ NOUN NN _ 34 nsubjpass _ _ 33 is _ AUX VBZ _ 34 auxpass _ _ 34 permitted _ VERB VBN _ 25 acl:relcl _ _ 35 under _ ADP IN _ 37 case _ _ 36 state _ NOUN NN _ 37 compound _ _ 37 law _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dismissal _ NOUN NN _ 8 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 pending _ VERB VBG _ 6 amod _ _ 6 suits _ NOUN NNS _ 2 nmod _ _ 7 could _ AUX MD _ 8 aux _ _ 8 go _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 long _ ADJ JJ _ 11 amod _ _ 11 way _ NOUN NN _ 8 dobj _ _ 12 toward _ SCONJ IN _ 13 mark _ _ 13 clearing _ VERB VBG _ 8 advcl _ _ 14 court _ NOUN NN _ 15 compound _ _ 15 dockets _ NOUN NNS _ 13 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Texas _ PROPN NNP _ 15 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 reducing _ VERB VBG _ 13 conj _ _ 20 the _ DET DT _ 21 det _ _ 21 FSLIC _ PROPN NNP _ 25 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 massive _ ADJ JJ _ 25 amod _ _ 24 legal _ ADJ JJ _ 25 amod _ _ 25 bills _ NOUN NNS _ 19 dobj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 which _ PRON WDT _ 28 nsubj _ _ 28 topped _ VERB VBD _ 25 acl:relcl _ _ 29 $ _ SYM $ _ 28 dobj _ _ 30 73 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 last _ ADJ JJ _ 33 amod _ _ 33 year _ NOUN NN _ 28 nmod:tmod _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 S&L _ NOUN NN _ 3 compound _ _ 3 lawyers _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 encouraged _ VERB VBN _ 0 root _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 month _ NOUN NN _ 5 nmod:tmod _ _ 8 by _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 appellate-court _ NOUN JJ _ 11 compound _ _ 11 ruling _ NOUN NN _ 5 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 two _ NUM CD _ 14 nummod _ _ 14 cases _ NOUN NNS _ 11 nmod _ _ 15 brought _ VERB VBN _ 14 acl _ _ 16 against _ ADP IN _ 19 case _ _ 17 defunct _ ADJ JJ _ 19 amod _ _ 18 Sunbelt _ PROPN NNP _ 19 compound _ _ 19 Savings _ PROPN NNPS _ 15 nmod _ _ 20 & _ CONJ CC _ 19 cc _ _ 21 Loan _ PROPN NNP _ 22 compound _ _ 22 Association _ PROPN NNP _ 19 conj _ _ 23 of _ ADP IN _ 24 case _ _ 24 Dallas _ PROPN NNP _ 19 nmod _ _ 25 by _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 developers _ NOUN NNS _ 15 nmod _ _ 28 of _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Valley _ PROPN NNP _ 31 compound _ _ 31 Ranch _ PROPN NNP _ 27 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 best _ ADV RB _ 34 advmod _ _ 34 known _ VERB VBN _ 31 acl _ _ 35 as _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 training _ NOUN NN _ 38 compound _ _ 38 center _ NOUN NN _ 34 nmod _ _ 39 for _ ADP IN _ 44 case _ _ 40 the _ DET DT _ 44 det _ _ 41 Dallas _ PROPN NNP _ 44 compound _ _ 42 Cowboys _ PROPN NNPS _ 44 compound _ _ 43 football _ NOUN NN _ 44 compound _ _ 44 team _ NOUN NN _ 38 nmod _ _ 45 . _ PUNCT . _ 5 punct _ _ 1 Sunbelt _ PROPN NNP _ 2 nsubj _ _ 2 foreclosed _ VERB VBN _ 0 root _ _ 3 on _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 ranch _ NOUN NN _ 2 nmod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 Sunbelt _ PROPN NNP _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 the _ DET DT _ 4 det _ _ 4 FSLIC _ PROPN NNP _ 1 conj _ _ 5 argued _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 11 case _ _ 7 the _ DET DT _ 11 det _ _ 8 Fifth _ PROPN JJ _ 11 compound _ _ 9 U.S. _ PROPN NNP _ 11 compound _ _ 10 Circuit _ PROPN NNP _ 11 compound _ _ 11 Court _ PROPN NNP _ 5 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 Appeals _ PROPN NNPS _ 11 nmod _ _ 14 `` _ PUNCT `` _ 5 punct _ _ 15 that _ SCONJ IN _ 21 mark _ _ 16 there _ PRON EX _ 21 expl _ _ 17 will _ AUX MD _ 21 aux _ _ 18 never _ ADV RB _ 21 neg _ _ 19 be _ VERB VB _ 21 cop _ _ 20 any _ DET DT _ 21 det _ _ 21 assets _ NOUN NNS _ 5 ccomp _ _ 22 with _ ADP IN _ 23 case _ _ 23 which _ PRON WDT _ 25 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 satisfy _ VERB VB _ 21 acl:relcl _ _ 26 a _ DET DT _ 27 det _ _ 27 judgment _ NOUN NN _ 25 dobj _ _ 28 against _ ADP IN _ 30 case _ _ 29 Sunbelt _ PROPN NNP _ 30 compound _ _ 30 Savings _ PROPN NNP _ 27 nmod _ _ 31 nor _ CONJ CC _ 21 cc _ _ 32 any _ DET DT _ 33 det _ _ 33 means _ NOUN NNS _ 21 conj _ _ 34 to _ PART TO _ 35 mark _ _ 35 collect _ VERB VB _ 33 acl _ _ 36 from _ ADP IN _ 39 case _ _ 37 any _ DET DT _ 39 det _ _ 38 other _ ADJ JJ _ 39 amod _ _ 39 party _ NOUN NN _ 35 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 including _ VERB VBG _ 42 case _ _ 42 FSLIC _ PROPN NNP _ 39 nmod _ _ 43 . _ PUNCT . _ 5 punct _ _ 44 '' _ PUNCT '' _ 5 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 If _ SCONJ IN _ 3 mark _ _ 3 true _ ADJ JJ _ 14 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 '' _ PUNCT '' _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 court _ NOUN NN _ 8 nsubj _ _ 8 wrote _ VERB VBD _ 14 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 `` _ PUNCT `` _ 14 punct _ _ 11 this _ DET DT _ 12 det _ _ 12 contention _ NOUN NN _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 justify _ VERB VB _ 0 root _ _ 15 dismissal _ NOUN NN _ 14 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 these _ DET DT _ 18 det _ _ 18 actions _ NOUN NNS _ 15 nmod _ _ 19 on _ ADP IN _ 21 case _ _ 20 prudential _ ADJ JJ _ 21 amod _ _ 21 grounds _ NOUN NNS _ 14 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 23 '' _ PUNCT '' _ 14 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 court _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 lacked _ VERB VBD _ 4 ccomp _ _ 7 enough _ ADV JJ _ 9 advmod _ _ 8 financial _ ADJ JJ _ 9 amod _ _ 9 information _ NOUN NN _ 6 dobj _ _ 10 about _ ADP IN _ 11 case _ _ 11 Sunbelt _ PROPN NNP _ 9 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 FSLIC _ PROPN NNP _ 11 conj _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 sent _ VERB VBD _ 4 conj _ _ 17 the _ DET DT _ 18 det _ _ 18 cases _ NOUN NNS _ 16 dobj _ _ 19 back _ ADV RB _ 16 advmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 federal _ ADJ JJ _ 23 amod _ _ 22 district _ NOUN NN _ 23 compound _ _ 23 court _ NOUN NN _ 19 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Dallas _ PROPN NNP _ 23 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Charles _ PROPN NNP _ 2 compound _ _ 2 Haworth _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 lawyer _ NOUN NN _ 2 appos _ _ 6 for _ ADP IN _ 7 case _ _ 7 Sunbelt _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 plans _ VERB VBZ _ 9 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 file _ VERB VB _ 11 xcomp _ _ 14 a _ DET DT _ 15 det _ _ 15 brief _ NOUN NN _ 13 dobj _ _ 16 this _ DET DT _ 17 det _ _ 17 week _ NOUN NN _ 13 nmod:tmod _ _ 18 urging _ VERB VBG _ 13 dep _ _ 19 the _ DET DT _ 21 det _ _ 20 district _ NOUN NN _ 21 compound _ _ 21 judge _ NOUN NN _ 18 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 dismiss _ VERB VB _ 18 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 suits _ NOUN NNS _ 23 dobj _ _ 26 , _ PUNCT , _ 11 punct _ _ 27 because _ SCONJ IN _ 31 mark _ _ 28 Sunbelt _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 liabilities _ NOUN NNS _ 31 nsubj _ _ 31 exceeded _ VERB VBD _ 11 advcl _ _ 32 its _ PRON PRP$ _ 33 nmod:poss _ _ 33 assets _ NOUN NNS _ 31 dobj _ _ 34 by _ ADP IN _ 36 case _ _ 35 about _ ADV RB _ 36 advmod _ _ 36 $ _ SYM $ _ 31 nmod _ _ 37 2 _ NUM CD _ 38 compound _ _ 38 billion _ NUM CD _ 36 nummod _ _ 39 when _ ADV WRB _ 42 advmod _ _ 40 federal _ ADJ JJ _ 41 amod _ _ 41 regulators _ NOUN NNS _ 42 nsubj _ _ 42 closed _ VERB VBD _ 31 advcl _ _ 43 it _ PRON PRP _ 42 dobj _ _ 44 in _ ADP IN _ 45 case _ _ 45 August _ PROPN NNP _ 42 nmod _ _ 46 1988 _ NUM CD _ 45 nummod _ _ 47 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 This _ DET DT _ 3 det _ _ 3 institution _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 just _ ADV RB _ 7 advmod _ _ 6 brain _ NOUN NN _ 7 nmod:npmod _ _ 7 dead _ ADJ JJ _ 10 ccomp _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Haworth _ PROPN NNP _ 10 nsubj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 partner _ NOUN NN _ 12 appos _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 Dallas _ PROPN NNP _ 19 compound _ _ 19 office _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 Andrews _ PROPN NNP _ 19 nmod _ _ 22 & _ CONJ CC _ 21 cc _ _ 23 Kurth _ PROPN NNP _ 21 conj _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 a _ DET DT _ 28 det _ _ 26 Houston _ PROPN NNP _ 28 compound _ _ 27 law _ NOUN NN _ 28 compound _ _ 28 firm _ NOUN NN _ 21 appos _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 a _ DET DT _ 3 det _ _ 3 lawyer _ NOUN NN _ 15 nsubj _ _ 4 for _ ADP IN _ 7 case _ _ 5 Triland _ PROPN NNP _ 7 compound _ _ 6 Investment _ PROPN NNP _ 7 compound _ _ 7 Group _ PROPN NNP _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 developer _ NOUN NN _ 7 appos _ _ 11 of _ ADP IN _ 13 case _ _ 12 Valley _ PROPN NNP _ 13 compound _ _ 13 Ranch _ PROPN NNP _ 10 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 dismisses _ VERB VBZ _ 0 root _ _ 16 such _ ADJ JJ _ 17 amod _ _ 17 arguments _ NOUN NNS _ 15 dobj _ _ 18 as _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 defense _ NOUN NN _ 15 nmod _ _ 22 du _ X NNP _ 21 compound _ _ 23 jour _ X FW _ 21 dep _ _ 24 . _ PUNCT . _ 15 punct _ _ 25 '' _ PUNCT '' _ 15 punct _ _ 1 Attorney _ PROPN NNP _ 3 compound _ _ 2 Richard _ PROPN NNP _ 3 compound _ _ 3 Jackson _ PROPN NNP _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 Dallas _ PROPN NNP _ 3 nmod _ _ 6 says _ VERB VBZ _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 judgment _ NOUN NN _ 13 nsubj _ _ 9 for _ ADP IN _ 10 case _ _ 10 Triland _ PROPN NNP _ 8 nmod _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 aux _ _ 13 satisfied _ ADJ VBN _ 6 ccomp _ _ 14 in _ ADP IN _ 15 case _ _ 15 ways _ NOUN NNS _ 13 nmod _ _ 16 other _ ADJ JJ _ 15 amod _ _ 17 than _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 monetary _ ADJ JJ _ 20 amod _ _ 20 award _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 including _ VERB VBG _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 reversal _ NOUN NN _ 15 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 Sunbelt _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 foreclosure _ NOUN NN _ 24 nmod _ _ 29 on _ ADP IN _ 31 case _ _ 30 Valley _ PROPN NNP _ 31 compound _ _ 31 Ranch _ PROPN NNP _ 28 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 asking _ VERB VBG _ 25 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 court _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 number _ NOUN NN _ 4 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 things _ NOUN NNS _ 9 nmod _ _ 12 he _ PRON PRP _ 14 nsubj _ _ 13 can _ AUX MD _ 14 aux _ _ 14 grant _ VERB VB _ 11 acl:relcl _ _ 15 in _ ADP IN _ 16 case _ _ 16 addition _ NOUN NN _ 9 nmod _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 thrill _ NOUN NN _ 16 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 victory _ NOUN NN _ 19 nmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 says _ VERB VBZ _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 'd _ AUX MD _ 4 aux _ _ 4 take _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 Valley _ PROPN NNP _ 7 compound _ _ 7 Ranch _ PROPN NNP _ 4 dobj _ _ 8 free _ ADJ JJ _ 4 advmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 clear _ ADJ JJ _ 8 conj _ _ 11 as _ ADP IN _ 14 case _ _ 12 a _ DET DT _ 14 det _ _ 13 booby _ ADJ JJ _ 14 amod _ _ 14 prize _ NOUN NN _ 4 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Kenneth _ PROPN NNP _ 3 compound _ _ 2 J. _ PROPN NNP _ 3 compound _ _ 3 Thygerson _ PROPN NNP _ 17 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 who _ PRON WP _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 named _ VERB VBN _ 3 acl:relcl _ _ 8 president _ NOUN NN _ 7 xcomp _ _ 9 of _ ADP IN _ 13 case _ _ 10 this _ DET DT _ 13 det _ _ 11 thrift _ NOUN NN _ 13 compound _ _ 12 holding _ NOUN VBG _ 13 compound _ _ 13 company _ NOUN NN _ 8 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 August _ PROPN NNP _ 7 nmod _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 resigned _ VERB VBD _ 0 root _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 citing _ VERB VBG _ 17 xcomp _ _ 20 personal _ ADJ JJ _ 21 amod _ _ 21 reasons _ NOUN NNS _ 19 dobj _ _ 22 . _ PUNCT . _ 17 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Thygerson _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 6 nsubj _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 planned _ VERB VBN _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 travel _ VERB VB _ 6 xcomp _ _ 9 between _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 job _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 Denver _ PROPN NNP _ 11 nmod _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 his _ PRON PRP$ _ 18 nmod:poss _ _ 16 San _ PROPN NNP _ 18 compound _ _ 17 Diego _ PROPN NNP _ 18 compound _ _ 18 home _ NOUN NN _ 11 conj _ _ 19 , _ PUNCT , _ 6 punct _ _ 20 but _ CONJ CC _ 6 cc _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 found _ VERB VBN _ 6 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 commute _ NOUN NN _ 26 nsubj _ _ 25 too _ ADV RB _ 26 advmod _ _ 26 difficult _ ADJ JJ _ 22 xcomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 continue _ VERB VB _ 26 ccomp _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 president _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 n't _ PART RB _ 6 neg _ _ 6 named _ VERB VBN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 SOUTH _ PROPN NNP _ 2 compound _ _ 2 AFRICA _ PROPN NNP _ 3 nsubj _ _ 3 FREED _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 ANC _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Sisulu _ PROPN NNP _ 3 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 seven _ NUM CD _ 12 nummod _ _ 10 other _ ADJ JJ _ 12 amod _ _ 11 political _ ADJ JJ _ 12 amod _ _ 12 prisoners _ NOUN NNS _ 7 conj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Thousands _ NOUN NNS _ 15 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 supporters _ NOUN NNS _ 1 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 many _ ADJ JJ _ 6 nsubj _ _ 6 brandishing _ VERB JJ _ 15 advcl _ _ 7 flags _ NOUN NNS _ 6 dobj _ _ 8 of _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 outlawed _ VERB JJ _ 13 amod _ _ 11 African _ PROPN NNP _ 13 compound _ _ 12 National _ PROPN NNP _ 13 compound _ _ 13 Congress _ PROPN NNP _ 7 nmod _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 gave _ VERB VBD _ 0 root _ _ 16 the _ DET DT _ 18 det _ _ 17 anti-apartheid _ ADJ JJ _ 18 amod _ _ 18 activists _ NOUN NNS _ 15 iobj _ _ 19 a _ DET DT _ 21 det _ _ 20 tumultuous _ ADJ JJ _ 21 amod _ _ 21 reception _ NOUN NN _ 15 dobj _ _ 22 upon _ ADP IN _ 24 case _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 return _ NOUN NN _ 15 nmod _ _ 25 to _ ADP TO _ 27 case _ _ 26 black _ ADJ JJ _ 27 amod _ _ 27 townships _ NOUN NNS _ 24 nmod _ _ 28 across _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 country _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 Most _ ADJ JJS _ 6 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 those _ PRON DT _ 1 nmod _ _ 4 freed _ VERB VBN _ 3 acl _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 spent _ VERB VBN _ 0 root _ _ 7 at _ ADP IN _ 8 case _ _ 8 least _ ADJ JJS _ 9 nmod:npmod _ _ 9 25 _ NUM CD _ 10 nummod _ _ 10 years _ NOUN NNS _ 6 nmod:tmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 prison _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 77-year-old _ ADJ JJ _ 3 amod _ _ 3 Sisulu _ PROPN NNP _ 23 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 sentenced _ VERB VBN _ 3 acl _ _ 6 to _ ADP TO _ 7 case _ _ 7 life _ NOUN NN _ 5 nmod _ _ 8 in _ ADP IN _ 9 case _ _ 9 1964 _ NUM CD _ 5 nmod _ _ 10 along _ ADV IN _ 5 advmod _ _ 11 with _ ADP IN _ 15 case _ _ 12 black _ ADJ JJ _ 15 amod _ _ 13 nationalist _ NOUN JJ _ 15 compound _ _ 14 Nelson _ PROPN NNP _ 15 compound _ _ 15 Mandela _ PROPN NNP _ 10 nmod _ _ 16 for _ SCONJ IN _ 17 mark _ _ 17 plotting _ VERB VBG _ 5 advcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 overthrow _ VERB VB _ 17 xcomp _ _ 20 the _ DET DT _ 21 det _ _ 21 government _ NOUN NN _ 19 dobj _ _ 22 , _ PUNCT , _ 3 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 equality _ NOUN NN _ 32 nsubj _ _ 25 for _ ADP IN _ 26 case _ _ 26 blacks _ NOUN NNS _ 24 nmod _ _ 27 in _ ADP IN _ 29 case _ _ 28 South _ PROPN NNP _ 29 compound _ _ 29 Africa _ PROPN NNP _ 26 nmod _ _ 30 was _ VERB VBD _ 32 cop _ _ 31 in _ ADP IN _ 32 case _ _ 32 reach _ NOUN NN _ 23 ccomp _ _ 33 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 releases _ NOUN NNS _ 13 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 announced _ VERB VBD _ 2 acl _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 week _ NOUN NN _ 4 nmod:tmod _ _ 7 by _ ADP IN _ 10 case _ _ 8 President _ PROPN NNP _ 10 compound _ _ 9 de _ PROPN NNP _ 10 compound _ _ 10 Klerk _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 were _ AUX VBD _ 13 auxpass _ _ 13 viewed _ VERB VBN _ 0 root _ _ 14 as _ ADP IN _ 18 case _ _ 15 Pretoria _ PROPN NNP _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 tacit _ ADJ JJ _ 18 amod _ _ 18 legalization _ NOUN NN _ 13 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 ANC _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Mandela _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 considered _ VERB VBD _ 1 acl _ _ 4 the _ DET DT _ 7 det _ _ 5 most _ ADV RBS _ 6 advmod _ _ 6 prominent _ ADJ JJ _ 7 amod _ _ 7 leader _ NOUN NN _ 3 xcomp _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 ANC _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 remains _ VERB VBZ _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 prison _ NOUN NN _ 12 nmod _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 release _ NOUN NN _ 11 nsubjpass _ _ 4 within _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 next _ ADJ JJ _ 8 amod _ _ 7 few _ ADJ JJ _ 8 amod _ _ 8 months _ NOUN NNS _ 3 nmod _ _ 9 is _ AUX VBZ _ 11 auxpass _ _ 10 widely _ ADV RB _ 11 advmod _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Soviet _ PROPN NNP _ 3 compound _ _ 3 Union _ PROPN NNP _ 4 nsubj _ _ 4 reported _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 20 mark _ _ 6 thousands _ NOUN NNS _ 20 nsubjpass _ _ 7 of _ ADP IN _ 8 case _ _ 8 tons _ NOUN NNS _ 6 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 goods _ NOUN NNS _ 8 nmod _ _ 11 needed _ VERB VBN _ 6 acl _ _ 12 to _ PART TO _ 13 mark _ _ 13 ease _ VERB VB _ 11 xcomp _ _ 14 widespread _ ADJ JJ _ 15 amod _ _ 15 shortages _ NOUN NNS _ 13 dobj _ _ 16 across _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 nation _ NOUN NN _ 15 nmod _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 piled _ VERB VBN _ 4 ccomp _ _ 21 up _ ADP RP _ 20 compound:prt _ _ 22 at _ ADP IN _ 23 case _ _ 23 ports _ NOUN NNS _ 20 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 rail _ NOUN NN _ 26 compound _ _ 26 depots _ NOUN NNS _ 23 conj _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 and _ CONJ CC _ 20 cc _ _ 29 food _ NOUN NN _ 30 compound _ _ 30 shipments _ NOUN NNS _ 32 nsubj _ _ 31 were _ AUX VBD _ 32 aux _ _ 32 rotting _ VERB VBG _ 20 conj _ _ 33 because _ ADV IN _ 36 case _ _ 34 of _ ADP IN _ 33 mwe _ _ 35 a _ DET DT _ 36 det _ _ 36 lack _ NOUN NN _ 32 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 people _ NOUN NNS _ 36 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 equipment _ NOUN NN _ 38 conj _ _ 41 to _ PART TO _ 42 mark _ _ 42 move _ VERB VB _ 38 acl _ _ 43 the _ DET DT _ 44 det _ _ 44 cargo _ NOUN NN _ 42 dobj _ _ 45 . _ PUNCT . _ 4 punct _ _ 1 Strikes _ NOUN VBZ _ 5 nsubjpass _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 mismanagement _ NOUN NN _ 1 conj _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 cited _ VERB VBN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 Premier _ PROPN NNP _ 9 compound _ _ 9 Ryzhkov _ PROPN NNP _ 10 nsubj _ _ 10 warned _ VERB VBD _ 5 conj _ _ 11 of _ ADP IN _ 14 case _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 tough _ ADJ JJ _ 14 amod _ _ 14 measures _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 16 '' _ PUNCT '' _ 5 punct _ _ 1 Bush _ PROPN NNP _ 2 nsubj _ _ 2 indicated _ VERB VBD _ 0 root _ _ 3 there _ PRON EX _ 7 expl _ _ 4 might _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 room _ NOUN NN _ 2 ccomp _ _ 8 for _ ADP IN _ 9 case _ _ 9 flexibility _ NOUN NN _ 7 nmod _ _ 10 '' _ PUNCT '' _ 7 punct _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 bill _ NOUN NN _ 7 nmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 allow _ VERB VB _ 13 acl _ _ 16 federal _ ADJ JJ _ 17 amod _ _ 17 funding _ NOUN NN _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 abortions _ NOUN NNS _ 17 nmod _ _ 20 for _ ADP IN _ 22 case _ _ 21 poor _ ADJ JJ _ 22 amod _ _ 22 women _ NOUN NNS _ 17 nmod _ _ 23 who _ PRON WP _ 25 nsubj _ _ 24 are _ VERB VBP _ 25 cop _ _ 25 vicitims _ NOUN NNS _ 22 acl:relcl _ _ 26 of _ ADP IN _ 27 case _ _ 27 rape _ NOUN NN _ 25 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 incest _ NOUN NN _ 27 conj _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 reiterated _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 opposition _ NOUN NN _ 2 dobj _ _ 5 to _ ADP TO _ 7 case _ _ 6 such _ ADJ JJ _ 7 amod _ _ 7 funding _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 but _ CONJ CC _ 2 cc _ _ 10 expressed _ VERB VBD _ 2 conj _ _ 11 hope _ NOUN NN _ 10 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 compromise _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 president _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 at _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 news _ NOUN NN _ 7 compound _ _ 7 conference _ NOUN NN _ 11 nmod _ _ 8 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 also _ ADV RB _ 11 advmod _ _ 11 renewed _ VERB VBD _ 0 root _ _ 12 a _ DET DT _ 13 det _ _ 13 call _ NOUN NN _ 11 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 ouster _ NOUN NN _ 13 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 Panama _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 Noriega _ PROPN NNP _ 16 nmod _ _ 21 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 White _ PROPN NNP _ 3 compound _ _ 3 House _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 minors _ NOUN NNS _ 6 nsubj _ _ 6 have _ VERB VBP _ 4 ccomp _ _ 7 n't _ PART RB _ 6 neg _ _ 8 any _ DET RB _ 9 det _ _ 9 right _ NOUN JJ _ 6 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 abortion _ NOUN NN _ 9 nmod _ _ 12 without _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 consent _ NOUN NN _ 11 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 parents _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 administration _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 policy _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 stated _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 friend-of-the-court _ ADJ JJ _ 10 amod _ _ 10 brief _ NOUN JJ _ 6 nmod _ _ 11 urging _ VERB VBG _ 10 acl _ _ 12 the _ DET DT _ 14 det _ _ 13 Supreme _ PROPN NNP _ 14 compound _ _ 14 Court _ PROPN NNP _ 11 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 give _ VERB VB _ 11 xcomp _ _ 17 states _ NOUN NNS _ 16 iobj _ _ 18 more _ ADJ RBR _ 19 amod _ _ 19 leeway _ NOUN NN _ 16 dobj _ _ 20 to _ PART TO _ 21 mark _ _ 21 restrict _ VERB VB _ 19 acl _ _ 22 abortions _ NOUN NNS _ 21 dobj _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Ten _ NUM CD _ 10 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 4 det _ _ 4 nation _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 governors _ NOUN NNS _ 1 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 meanwhile _ ADV RB _ 10 advmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 called _ VERB VBN _ 0 root _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 justices _ NOUN NNS _ 10 nmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 reject _ VERB VB _ 10 xcomp _ _ 16 efforts _ NOUN NNS _ 15 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 limit _ VERB VB _ 16 acl _ _ 19 abortions _ NOUN NNS _ 18 dobj _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Justice _ PROPN NNP _ 3 compound _ _ 3 Department _ PROPN NNP _ 4 nsubj _ _ 4 announced _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 FBI _ PROPN NNP _ 10 nsubjpass _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 auxpass _ _ 10 given _ VERB VBN _ 4 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 authority _ NOUN NN _ 10 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 seize _ VERB VB _ 12 acl _ _ 15 U.S. _ PROPN NNP _ 16 compound _ _ 16 fugitives _ NOUN NNS _ 14 dobj _ _ 17 overseas _ ADV RB _ 14 advmod _ _ 18 without _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 permission _ NOUN NN _ 14 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 foreign _ ADJ JJ _ 23 amod _ _ 23 governments _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Secretary _ PROPN NNP _ 4 dep _ _ 2 of _ ADP IN _ 3 case _ _ 3 State _ PROPN NNP _ 1 nmod _ _ 4 Baker _ PROPN NNP _ 5 nsubj _ _ 5 emphasized _ VERB VBD _ 0 root _ _ 6 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 7 that _ SCONJ IN _ 14 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 new _ ADJ JJ _ 10 amod _ _ 10 policy _ NOUN NN _ 14 nsubjpass _ _ 11 would _ AUX MD _ 14 aux _ _ 12 n't _ PART RB _ 14 neg _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 invoked _ VERB VBN _ 5 ccomp _ _ 15 by _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 Bush _ PROPN NNP _ 18 compound _ _ 18 administration _ NOUN NN _ 14 nmod _ _ 19 without _ ADP IN _ 21 case _ _ 20 full _ ADJ JJ _ 21 amod _ _ 21 consideration _ NOUN NN _ 14 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 foreign-policy _ NOUN NN _ 24 compound _ _ 24 implications _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 NASA _ PROPN NNP _ 2 nsubj _ _ 2 pronounced _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 6 det _ _ 4 space _ NOUN NN _ 6 compound _ _ 5 shuttle _ NOUN NN _ 6 compound _ _ 6 Atlantis _ PROPN NNP _ 7 nsubj _ _ 7 ready _ ADJ JJ _ 2 xcomp _ _ 8 for _ ADP IN _ 9 case _ _ 9 launch _ NOUN NN _ 7 nmod _ _ 10 tomorrow _ NOUN NN _ 9 nmod:tmod _ _ 11 following _ VERB VBG _ 14 case _ _ 12 a _ DET DT _ 14 det _ _ 13 five-day _ ADJ JJ _ 14 amod _ _ 14 postponement _ NOUN NN _ 9 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 flight _ NOUN NN _ 14 nmod _ _ 18 because _ ADP IN _ 23 case _ _ 19 of _ ADP IN _ 18 mwe _ _ 20 a _ DET DT _ 23 det _ _ 21 faulty _ ADJ JJ _ 23 amod _ _ 22 engine _ NOUN NN _ 23 compound _ _ 23 computer _ NOUN NN _ 14 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 device _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 replaced _ VERB VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spacecraft _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 five _ NUM CD _ 5 nummod _ _ 5 astronauts _ NOUN NNS _ 6 nsubj _ _ 6 are _ VERB VBP _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 dispatch _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 12 det _ _ 10 Galileo _ PROPN NNP _ 12 compound _ _ 11 space _ NOUN NN _ 12 compound _ _ 12 probe _ NOUN NN _ 8 dobj _ _ 13 on _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 exploration _ NOUN NN _ 16 compound _ _ 16 mission _ NOUN NN _ 8 nmod _ _ 17 to _ ADP TO _ 18 case _ _ 18 Jupiter _ PROPN NNP _ 16 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 South _ PROPN NNP _ 2 compound _ _ 2 Korea _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 President _ PROPN NNP _ 5 compound _ _ 5 Roh _ PROPN NNP _ 6 nsubj _ _ 6 traveled _ VERB VBD _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 6 nmod _ _ 10 for _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 five-day _ ADJ JJ _ 13 amod _ _ 13 visit _ NOUN NN _ 6 nmod _ _ 14 that _ PRON WDT _ 16 nsubjpass _ _ 15 is _ AUX VBZ _ 16 auxpass _ _ 16 expected _ VERB VBN _ 13 acl:relcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 focus _ VERB VB _ 16 xcomp _ _ 19 on _ ADP IN _ 20 case _ _ 20 ties _ NOUN NNS _ 18 nmod _ _ 21 between _ ADP IN _ 22 case _ _ 22 Washington _ PROPN NNP _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 Seoul _ PROPN NNP _ 22 conj _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 Roh _ PROPN NNP _ 18 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 who _ PRON WP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 facing _ VERB VBG _ 1 acl:relcl _ _ 6 calls _ NOUN NNS _ 5 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 reduction _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 U.S. _ PROPN NNP _ 13 compound _ _ 12 military _ ADJ JJ _ 13 amod _ _ 13 forces _ NOUN NNS _ 9 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 South _ PROPN NNP _ 16 compound _ _ 16 Korea _ PROPN NNP _ 13 nmod _ _ 17 , _ PUNCT , _ 1 punct _ _ 18 is _ VERB VBZ _ 0 root _ _ 19 to _ PART TO _ 20 mark _ _ 20 meet _ VERB VB _ 18 xcomp _ _ 21 with _ ADP IN _ 22 case _ _ 22 Bush _ PROPN NNP _ 20 nmod _ _ 23 tomorrow _ NOUN NN _ 20 nmod:tmod _ _ 24 and _ CONJ CC _ 18 cc _ _ 25 is _ VERB VBZ _ 18 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 address _ VERB VB _ 25 xcomp _ _ 28 a _ DET DT _ 30 det _ _ 29 joint _ ADJ JJ _ 30 amod _ _ 30 session _ NOUN NN _ 27 dobj _ _ 31 of _ ADP IN _ 32 case _ _ 32 Congress _ PROPN NNP _ 30 nmod _ _ 33 on _ ADP IN _ 34 case _ _ 34 Wednesday _ PROPN NNP _ 27 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 China _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Communist _ ADJ JJ _ 4 amod _ _ 4 leadership _ NOUN NN _ 5 nsubj _ _ 5 voted _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 purge _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 party _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 15 case _ _ 11 `` _ PUNCT `` _ 15 punct _ _ 12 hostile _ ADJ JJ _ 15 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 anti-party _ ADJ JJ _ 12 conj _ _ 15 elements _ NOUN NNS _ 7 nmod _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 wealthy _ ADJ JJ _ 20 amod _ _ 19 private _ ADJ JJ _ 20 amod _ _ 20 businessmen _ NOUN NNS _ 15 conj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 whom _ PRON WP _ 25 dobj _ _ 23 they _ PRON PRP _ 24 nsubj _ _ 24 called _ VERB VBD _ 20 acl:relcl _ _ 25 exploiters _ NOUN NNS _ 24 xcomp _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 decision _ NOUN NN _ 12 nsubj _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 reported _ VERB VBN _ 12 advcl _ _ 5 by _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 10 det _ _ 7 official _ ADJ JJ _ 10 amod _ _ 8 Xinhua _ PROPN NNP _ 10 compound _ _ 9 News _ PROPN NNP _ 10 compound _ _ 10 Agency _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 indicated _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 24 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 crackdown _ NOUN NN _ 24 nsubj _ _ 16 prompted _ VERB VBN _ 15 acl _ _ 17 by _ ADP IN _ 20 case _ _ 18 student-led _ ADJ JJ _ 20 amod _ _ 19 pro-democracy _ ADJ JJ _ 20 amod _ _ 20 protests _ NOUN NNS _ 16 nmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 June _ PROPN NNP _ 20 nmod _ _ 23 is _ AUX VBZ _ 24 aux _ _ 24 intensifying _ VERB VBG _ 12 ccomp _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 Hundreds _ PROPN NNS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 East _ PROPN NNS _ 4 compound _ _ 4 Germans _ PROPN NNS _ 1 nmod _ _ 5 flocked _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 9 case _ _ 7 Bonn _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 Embassy _ PROPN NNP _ 5 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Warsaw _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 bringing _ VERB VBG _ 5 xcomp _ _ 14 to _ ADP TO _ 17 case _ _ 15 more _ ADJ JJR _ 17 advmod _ _ 16 than _ ADP IN _ 15 mwe _ _ 17 1,200 _ NUM CD _ 13 nmod _ _ 18 the _ DET DT _ 19 det _ _ 19 number _ NOUN NN _ 13 dobj _ _ 20 of _ ADP IN _ 21 case _ _ 21 emigres _ NOUN NNS _ 19 nmod _ _ 22 expected _ VERB VBN _ 19 acl _ _ 23 to _ PART TO _ 24 mark _ _ 24 flee _ VERB VB _ 22 xcomp _ _ 25 to _ ADP TO _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 West _ PROPN NNP _ 24 nmod _ _ 28 beginning _ NOUN VBG _ 29 dep _ _ 29 today _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 More _ ADJ JJR _ 3 advmod _ _ 2 than _ ADP IN _ 1 mwe _ _ 3 2,100 _ NUM CD _ 4 nummod _ _ 4 others _ NOUN NNS _ 5 nsubj _ _ 5 escaped _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 West _ PROPN NNP _ 8 compound _ _ 8 Germany _ PROPN NNP _ 5 nmod _ _ 9 through _ ADP IN _ 10 case _ _ 10 Hungary _ PROPN NNP _ 5 nmod _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 Weekend _ NOUN NNP _ 5 nmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Leipzig _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 activists _ NOUN NNS _ 5 nsubj _ _ 5 vowed _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 continue _ VERB VB _ 5 xcomp _ _ 8 street _ NOUN NN _ 9 compound _ _ 9 protests _ NOUN NNS _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 demand _ VERB VB _ 9 acl _ _ 12 internal _ ADJ JJ _ 13 amod _ _ 13 change _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Zaire _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 President _ PROPN NNP _ 4 compound _ _ 4 Mobutu _ PROPN NNP _ 5 nsubj _ _ 5 met _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 southern _ ADJ JJ _ 8 amod _ _ 8 France _ PROPN NNP _ 5 nmod _ _ 9 with _ ADP IN _ 13 case _ _ 10 Angolan _ ADJ JJ _ 13 amod _ _ 11 rebel _ NOUN NN _ 13 compound _ _ 12 leader _ NOUN NN _ 13 compound _ _ 13 Savimbi _ PROPN NNP _ 5 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 a _ DET DT _ 18 det _ _ 16 senior _ ADJ JJ _ 18 amod _ _ 17 U.S. _ PROPN NNP _ 18 compound _ _ 18 envoy _ NOUN NN _ 13 conj _ _ 19 in _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 bid _ NOUN NN _ 5 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 revive _ VERB VB _ 21 acl _ _ 24 an _ DET DT _ 25 det _ _ 25 accord _ NOUN NN _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 end _ VERB VB _ 25 acl _ _ 28 Angola _ PROPN NNP _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 civil _ ADJ JJ _ 31 amod _ _ 31 war _ NOUN NN _ 27 dobj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Details _ NOUN NNS _ 19 nsubjpass _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 talks _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 described _ VERB VBN _ 4 acl _ _ 7 by _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 Zairean _ ADJ NNP _ 10 amod _ _ 10 official _ NOUN NN _ 6 nmod _ _ 11 as _ ADP IN _ 14 case _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 very _ ADV RB _ 14 advmod _ _ 14 delicate _ ADJ JJ _ 6 advcl _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 '' _ PUNCT '' _ 4 punct _ _ 17 were _ AUX VBD _ 19 auxpass _ _ 18 n't _ PART RB _ 19 neg _ _ 19 disclosed _ VERB VBN _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 PLO _ PROPN NNP _ 3 compound _ _ 2 leader _ NOUN NN _ 3 compound _ _ 3 Arafat _ PROPN NNP _ 4 nsubj _ _ 4 insisted _ VERB VBD _ 0 root _ _ 5 on _ ADP IN _ 6 case _ _ 6 guarantees _ NOUN NNS _ 4 nmod _ _ 7 that _ SCONJ WDT _ 16 mark _ _ 8 any _ DET DT _ 9 det _ _ 9 elections _ NOUN NNS _ 16 nsubj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Israeli-occupied _ ADJ JJ _ 13 amod _ _ 13 territories _ NOUN NNS _ 9 nmod _ _ 14 would _ AUX MD _ 16 aux _ _ 15 be _ VERB VB _ 16 cop _ _ 16 impartial _ ADJ JJ _ 6 ccomp _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 made _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 remarks _ NOUN NNS _ 2 dobj _ _ 5 to _ ADP TO _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 PLO _ PROPN NNP _ 8 compound _ _ 8 gathering _ NOUN NN _ 2 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Baghdad _ PROPN NNP _ 8 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 occupied _ ADJ JJ _ 4 amod _ _ 4 lands _ NOUN NNS _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 underground _ ADJ JJ _ 7 amod _ _ 7 leaders _ NOUN NNS _ 12 nsubj _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Arab _ ADJ NNP _ 11 amod _ _ 11 uprising _ NOUN NN _ 7 nmod _ _ 12 rejected _ VERB VBD _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 U.S. _ PROPN NNP _ 15 compound _ _ 15 plan _ NOUN NN _ 12 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 arrange _ VERB VB _ 15 acl _ _ 18 Israeli-Palestinian _ ADJ JJ _ 19 amod _ _ 19 talks _ NOUN NNS _ 17 dobj _ _ 20 as _ SCONJ IN _ 22 mark _ _ 21 Shamir _ PROPN NNP _ 22 nsubj _ _ 22 opposed _ VERB VBD _ 12 advcl _ _ 23 holding _ VERB VBG _ 22 xcomp _ _ 24 such _ ADJ JJ _ 25 amod _ _ 25 discussions _ NOUN NNS _ 23 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 Cairo _ PROPN NNP _ 23 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 Lebanese _ ADJ JJ _ 3 amod _ _ 2 Christian _ ADJ JJ _ 3 amod _ _ 3 lawmakers _ NOUN NNS _ 4 nsubj _ _ 4 presented _ VERB VBD _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 Arab _ PROPN NNP _ 7 compound _ _ 7 mediators _ NOUN NNS _ 4 nmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 talks _ NOUN NNS _ 4 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 Saudi _ PROPN NNP _ 12 compound _ _ 12 Arabia _ PROPN NNP _ 9 nmod _ _ 13 proposals _ NOUN NNS _ 4 dobj _ _ 14 for _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 new _ ADJ JJ _ 17 amod _ _ 17 timetable _ NOUN NN _ 13 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 withdrawal _ NOUN NN _ 17 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 Syria _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 forces _ NOUN NNS _ 20 nmod _ _ 25 from _ ADP IN _ 26 case _ _ 26 Lebanon _ PROPN NNP _ 20 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 6 nsubj _ _ 3 currently _ ADV RB _ 2 advmod _ _ 4 under _ ADP IN _ 5 case _ _ 5 study _ NOUN NN _ 2 nmod _ _ 6 gives _ VERB VBZ _ 0 root _ _ 7 Damascus _ PROPN NNP _ 6 iobj _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 years _ NOUN NNS _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 pull _ VERB VB _ 9 acl _ _ 12 back _ ADV RB _ 11 advmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 eastern _ ADJ JJ _ 15 amod _ _ 15 Lebanon _ PROPN NNP _ 12 nmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 starting _ VERB VBG _ 20 case _ _ 18 from _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 time _ NOUN NN _ 9 nmod _ _ 21 Beirut _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 legislature _ NOUN NN _ 24 nsubj _ _ 24 increases _ VERB VBZ _ 20 acl:relcl _ _ 25 political _ ADJ JJ _ 26 amod _ _ 26 power _ NOUN NN _ 24 dobj _ _ 27 for _ ADP IN _ 28 case _ _ 28 Moslems _ PROPN NNPS _ 26 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Hurricane _ PROPN NNP _ 2 compound _ _ 2 Jerry _ PROPN NNP _ 3 nsubj _ _ 3 threatened _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 combine _ VERB VB _ 3 xcomp _ _ 6 with _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 highest _ ADJ JJS _ 9 amod _ _ 9 tides _ NOUN NNS _ 5 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 9 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 swamp _ VERB VB _ 5 xcomp _ _ 15 the _ DET DT _ 17 det _ _ 16 Texas-Louisiana _ PROPN NNP _ 17 compound _ _ 17 coast _ NOUN NN _ 14 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Thousands _ NOUN NNS _ 8 nsubjpass _ _ 2 of _ ADP IN _ 3 case _ _ 3 residents _ NOUN NNS _ 1 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 low-lying _ ADJ JJ _ 6 amod _ _ 6 areas _ NOUN NNS _ 3 nmod _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 ordered _ VERB VBN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 evacuate _ VERB VB _ 8 xcomp _ _ 11 as _ SCONJ IN _ 14 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 storm _ NOUN NN _ 14 nsubj _ _ 14 headed _ VERB VBD _ 8 advcl _ _ 15 north _ ADV RB _ 14 advmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 Gulf _ PROPN NNP _ 14 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 Mexico _ PROPN NNP _ 18 nmod _ _ 21 with _ ADP IN _ 24 case _ _ 22 80 _ NUM CD _ 23 compound _ _ 23 mph _ ADJ NN _ 24 amod _ _ 24 winds _ NOUN NNS _ 14 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 Arby _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 franchisees _ NOUN NNS _ 2 nmod _ _ 7 said _ VERB VBD _ 0 root _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 formed _ VERB VBD _ 7 ccomp _ _ 10 an _ DET DT _ 11 det _ _ 11 association _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 oppose _ VERB VB _ 11 acl _ _ 14 Miami _ PROPN NNP _ 18 compound _ _ 15 Beach _ PROPN NNP _ 18 compound _ _ 16 financier _ NOUN NN _ 18 compound _ _ 17 Victor _ PROPN NNP _ 18 compound _ _ 18 Posner _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 control _ NOUN NN _ 13 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 restaurant _ NOUN NN _ 24 compound _ _ 24 chain _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 decision _ NOUN NN _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 latest _ ADJ JJS _ 6 amod _ _ 6 move _ NOUN NN _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 an _ DET DT _ 10 det _ _ 9 escalating _ VERB JJ _ 10 amod _ _ 10 battle _ NOUN NN _ 6 nmod _ _ 11 between _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 franchisees _ NOUN NNS _ 10 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Posner _ PROPN NNP _ 13 conj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 began _ VERB VBD _ 10 acl:relcl _ _ 19 in _ ADP IN _ 20 case _ _ 20 August _ PROPN NNP _ 18 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 21 nmod _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 group _ NOUN NN _ 21 nsubj _ _ 7 called _ VERB VBN _ 6 acl _ _ 8 R.B. _ PROPN NNP _ 10 compound _ _ 9 Partners _ PROPN NNPS _ 10 compound _ _ 10 Ltd. _ PROPN NNP _ 7 xcomp _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 consisting _ VERB VBG _ 6 acl _ _ 13 of _ ADP IN _ 14 case _ _ 14 eight _ NUM CD _ 12 nmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 Arby _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 largest _ ADJ JJS _ 19 amod _ _ 19 franchisees _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 offered _ VERB VBD _ 0 root _ _ 22 more _ ADJ JJR _ 24 advmod _ _ 23 than _ ADP IN _ 22 mwe _ _ 24 $ _ SYM $ _ 21 dobj _ _ 25 200 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 to _ PART TO _ 28 mark _ _ 28 buy _ VERB VB _ 21 advcl _ _ 29 Arby _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 Inc. _ NOUN NNP _ 28 dobj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 which _ PRON WDT _ 35 nsubj _ _ 34 is _ VERB VBZ _ 35 cop _ _ 35 part _ NOUN NN _ 31 acl:relcl _ _ 36 of _ ADP IN _ 38 case _ _ 37 DWG _ PROPN NNP _ 38 compound _ _ 38 Corp _ PROPN NNP _ 35 nmod _ _ 39 . _ PUNCT . _ 21 punct _ _ 1 DWG _ PROPN NNP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 a _ DET DT _ 5 det _ _ 4 holding _ NOUN VBG _ 5 compound _ _ 5 company _ NOUN NN _ 0 root _ _ 6 controlled _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 9 case _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Posner _ PROPN NNP _ 6 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 week _ NOUN NN _ 3 nmod:npmod _ _ 3 later _ ADV RB _ 19 advmod _ _ 4 , _ PUNCT , _ 19 punct _ _ 5 Leonard _ PROPN NNP _ 7 compound _ _ 6 H. _ PROPN NNP _ 7 compound _ _ 7 Roberts _ PROPN NNP _ 19 nsubjpass _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 president _ NOUN NN _ 7 appos _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 chief _ ADJ JJ _ 13 amod _ _ 12 executive _ ADJ JJ _ 13 amod _ _ 13 officer _ NOUN NN _ 9 conj _ _ 14 of _ ADP IN _ 15 case _ _ 15 Arby _ PROPN NNP _ 9 nmod _ _ 16 's _ PART POS _ 15 case _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 was _ AUX VBD _ 19 auxpass _ _ 19 fired _ VERB VBN _ 0 root _ _ 20 in _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 dispute _ NOUN NN _ 19 nmod _ _ 23 with _ ADP IN _ 25 case _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Posner _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 42 _ NUM CD _ 4 nummod _ _ 4 franchisees _ NOUN NNS _ 5 nsubj _ _ 5 announced _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 formation _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 an _ DET DT _ 10 det _ _ 10 association _ NOUN NN _ 7 nmod _ _ 11 -- _ PUNCT : _ 12 punct _ _ 12 called _ VERB VBN _ 10 dep _ _ 13 A.P. _ PROPN NNP _ 15 compound _ _ 14 Association _ PROPN NNP _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 12 xcomp _ _ 16 -- _ PUNCT : _ 12 punct _ _ 17 to _ PART TO _ 19 mark _ _ 18 `` _ PUNCT `` _ 19 punct _ _ 19 preserve _ VERB VB _ 10 acl _ _ 20 the _ DET DT _ 21 det _ _ 21 integrity _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Arby _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 system _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 28 '' _ PUNCT '' _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 franchisees _ NOUN NNS _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 owners _ NOUN NNS _ 2 appos _ _ 5 or _ CONJ CC _ 4 cc _ _ 6 operators _ NOUN NNS _ 4 conj _ _ 7 of _ ADP IN _ 8 case _ _ 8 1,000 _ NUM CD _ 4 nmod _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 1,900 _ NUM CD _ 13 nummod _ _ 12 franchised _ ADJ VBD _ 13 amod _ _ 13 Arby _ PROPN NNP _ 8 nmod _ _ 14 's _ PART POS _ 13 case _ _ 15 in _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 13 nmod _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 : _ PUNCT : _ 19 punct _ _ 21 `` _ PUNCT `` _ 24 punct _ _ 22 We _ PRON PRP _ 24 nsubj _ _ 23 have _ AUX VBP _ 24 aux _ _ 24 concluded _ VERB VBN _ 19 ccomp _ _ 25 that _ SCONJ IN _ 36 mark _ _ 26 continued _ ADJ VBN _ 27 amod _ _ 27 control _ NOUN NN _ 36 nsubj _ _ 28 of _ ADP IN _ 29 case _ _ 29 Arby _ PROPN NNP _ 27 nmod _ _ 30 's _ PART POS _ 29 case _ _ 31 by _ ADP IN _ 33 case _ _ 32 Victor _ PROPN NNP _ 33 compound _ _ 33 Posner _ PROPN NNP _ 27 nmod _ _ 34 is _ VERB VBZ _ 36 cop _ _ 35 totally _ ADV RB _ 36 advmod _ _ 36 unacceptable _ ADJ JJ _ 24 ccomp _ _ 37 to _ ADP TO _ 38 case _ _ 38 us _ PRON PRP _ 36 nmod _ _ 39 , _ PUNCT , _ 36 punct _ _ 40 because _ SCONJ IN _ 44 mark _ _ 41 it _ PRON PRP _ 44 nsubj _ _ 42 is _ VERB VBZ _ 44 cop _ _ 43 extremely _ ADV RB _ 44 advmod _ _ 44 likely _ ADJ JJ _ 36 advcl _ _ 45 to _ PART TO _ 46 mark _ _ 46 cause _ VERB VB _ 44 xcomp _ _ 47 irreparable _ ADJ JJ _ 48 amod _ _ 48 damage _ NOUN NN _ 46 dobj _ _ 49 to _ ADP TO _ 53 case _ _ 50 the _ DET DT _ 51 det _ _ 51 Arby _ PROPN NNP _ 53 nmod:poss _ _ 52 's _ PART POS _ 51 case _ _ 53 system _ NOUN NN _ 48 nmod _ _ 54 . _ PUNCT . _ 19 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 support _ VERB VBP _ 0 root _ _ 3 all _ DET DT _ 4 det _ _ 4 efforts _ NOUN NNS _ 2 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 remove _ VERB VB _ 4 acl _ _ 7 Victor _ PROPN NNP _ 8 compound _ _ 8 Posner _ PROPN NNP _ 6 dobj _ _ 9 from _ ADP IN _ 10 case _ _ 10 control _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 Arby _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 Inc. _ PROPN NNP _ 10 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 Arby _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 system _ NOUN NN _ 14 conj _ _ 20 . _ PUNCT . _ 2 punct _ _ 21 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 consider _ VERB VB _ 3 ccomp _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 among _ ADP IN _ 10 case _ _ 9 other _ ADJ JJ _ 10 amod _ _ 10 things _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 withholding _ VERB VBG _ 6 ccomp _ _ 13 royalty _ NOUN NN _ 14 compound _ _ 14 payments _ NOUN NNS _ 12 dobj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 initiating _ VERB VBG _ 12 conj _ _ 17 a _ DET DT _ 19 det _ _ 18 class-action _ ADJ JJ _ 19 amod _ _ 19 lawsuit _ NOUN NN _ 16 dobj _ _ 20 seeking _ VERB VBG _ 19 acl _ _ 21 court _ NOUN NN _ 22 compound _ _ 22 approval _ NOUN NN _ 20 dobj _ _ 23 for _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 withholdings _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Florida _ PROPN NNP _ 14 nmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 Renee _ PROPN NNP _ 5 compound _ _ 5 Mottram _ PROPN NNP _ 14 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 10 det _ _ 8 senior _ ADJ JJ _ 10 amod _ _ 9 vice _ NOUN NN _ 10 compound _ _ 10 president _ NOUN NN _ 5 appos _ _ 11 at _ ADP IN _ 12 case _ _ 12 DWG _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 responded _ VERB VBD _ 0 root _ _ 15 : _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 20 punct _ _ 17 We _ PRON PRP _ 20 nsubj _ _ 18 do _ AUX VBP _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 think _ VERB VB _ 14 ccomp _ _ 21 any _ DET DT _ 22 det _ _ 22 individual _ NOUN JJ _ 26 nsubj _ _ 23 or _ CONJ CC _ 22 cc _ _ 24 group _ NOUN NN _ 22 conj _ _ 25 should _ AUX MD _ 26 aux _ _ 26 disrupt _ VERB VB _ 20 ccomp _ _ 27 a _ DET DT _ 29 det _ _ 28 winning _ ADJ VBG _ 29 amod _ _ 29 system _ NOUN NN _ 26 dobj _ _ 30 or _ CONJ CC _ 26 cc _ _ 31 illegally _ ADV RB _ 32 advmod _ _ 32 interfere _ VERB VB _ 26 conj _ _ 33 with _ ADP IN _ 36 case _ _ 34 existing _ ADJ VBG _ 36 amod _ _ 35 contractual _ ADJ JJ _ 36 amod _ _ 36 relationships _ NOUN NNS _ 32 nmod _ _ 37 for _ ADP IN _ 41 case _ _ 38 their _ PRON PRP$ _ 41 nmod:poss _ _ 39 own _ ADJ JJ _ 41 amod _ _ 40 self-serving _ ADJ JJ _ 41 amod _ _ 41 motives _ NOUN NNS _ 26 nmod _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 September _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 steep _ ADJ JJ _ 4 amod _ _ 4 rise _ NOUN NN _ 8 nsubj _ _ 5 in _ ADP IN _ 7 case _ _ 6 producer _ NOUN NN _ 7 compound _ _ 7 prices _ NOUN NNS _ 4 nmod _ _ 8 shows _ VERB VBZ _ 0 root _ _ 9 that _ SCONJ IN _ 12 mark _ _ 10 inflation _ NOUN NN _ 12 nsubj _ _ 11 still _ ADV RB _ 12 advmod _ _ 12 persists _ VERB VBZ _ 8 ccomp _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 the _ DET DT _ 16 det _ _ 16 pessimism _ NOUN NN _ 26 nsubj _ _ 17 over _ ADP IN _ 19 case _ _ 18 interest _ NOUN NN _ 19 compound _ _ 19 rates _ NOUN NNS _ 16 nmod _ _ 20 caused _ VERB VBN _ 16 acl _ _ 21 by _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 new _ ADJ JJ _ 25 amod _ _ 24 price _ NOUN NN _ 25 compound _ _ 25 data _ NOUN NNS _ 20 nmod _ _ 26 contributed _ VERB VBD _ 8 conj _ _ 27 to _ ADP TO _ 32 case _ _ 28 the _ DET DT _ 30 det _ _ 29 stock _ NOUN NN _ 30 compound _ _ 30 market _ NOUN NN _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 plunge _ NOUN NN _ 26 nmod _ _ 33 Friday _ PROPN NNP _ 32 nmod:tmod _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 After _ SCONJ IN _ 2 mark _ _ 2 falling _ VERB VBG _ 15 advcl _ _ 3 for _ ADP IN _ 6 case _ _ 4 three _ NUM CD _ 6 nummod _ _ 5 consecutive _ ADJ JJ _ 6 amod _ _ 6 months _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 15 punct _ _ 8 the _ DET DT _ 11 det _ _ 9 producer _ NOUN NN _ 11 compound _ _ 10 price _ NOUN NN _ 11 compound _ _ 11 index _ NOUN NN _ 15 nsubj _ _ 12 for _ ADP IN _ 14 case _ _ 13 finished _ ADJ VBN _ 14 amod _ _ 14 goods _ NOUN NNS _ 11 nmod _ _ 15 shot _ VERB VBD _ 0 root _ _ 16 up _ ADV RB _ 15 advmod _ _ 17 0.9 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 dobj _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 month _ NOUN NN _ 15 nmod:tmod _ _ 21 , _ PUNCT , _ 25 punct _ _ 22 the _ DET DT _ 24 det _ _ 23 Labor _ PROPN NNP _ 24 compound _ _ 24 Department _ PROPN NNP _ 25 nsubj _ _ 25 reported _ VERB VBD _ 15 parataxis _ _ 26 Friday _ PROPN NNP _ 25 nmod:tmod _ _ 27 , _ PUNCT , _ 25 punct _ _ 28 as _ SCONJ IN _ 31 mark _ _ 29 energy _ NOUN NN _ 30 compound _ _ 30 prices _ NOUN NNS _ 31 nsubj _ _ 31 jumped _ VERB VBD _ 15 advcl _ _ 32 after _ SCONJ IN _ 33 mark _ _ 33 tumbling _ VERB VBG _ 31 advcl _ _ 34 through _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 summer _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 15 punct _ _ 1 Although _ SCONJ IN _ 16 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 report _ NOUN NN _ 16 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 released _ VERB VBN _ 3 acl:relcl _ _ 8 before _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 12 nsubj _ _ 12 opened _ VERB VBD _ 7 advcl _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 did _ AUX VBD _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 trigger _ VERB VB _ 28 advcl _ _ 17 the _ DET DT _ 19 det _ _ 18 190.58-point _ ADJ JJ _ 19 amod _ _ 19 drop _ NOUN NN _ 16 dobj _ _ 20 in _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 Dow _ PROPN NNP _ 25 compound _ _ 23 Jones _ PROPN NNP _ 25 compound _ _ 24 Industrial _ PROPN NNP _ 25 compound _ _ 25 Average _ PROPN NNP _ 19 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 analysts _ NOUN NNS _ 28 nsubj _ _ 28 said _ VERB VBD _ 0 root _ _ 29 it _ PRON PRP _ 31 nsubj _ _ 30 did _ AUX VBD _ 31 aux _ _ 31 play _ VERB VB _ 28 ccomp _ _ 32 a _ DET DT _ 33 det _ _ 33 role _ NOUN NN _ 31 dobj _ _ 34 in _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 36 det _ _ 36 market _ NOUN NN _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 decline _ NOUN NN _ 31 nmod _ _ 39 . _ PUNCT . _ 28 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 immediately _ ADV RB _ 3 advmod _ _ 3 viewed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 price _ NOUN NN _ 6 compound _ _ 6 data _ NOUN NNS _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 the _ DET DT _ 11 det _ _ 9 grimmest _ ADJ JJS _ 11 amod _ _ 10 inflation _ NOUN NN _ 11 compound _ _ 11 news _ NOUN NN _ 6 appos _ _ 12 in _ ADP IN _ 13 case _ _ 13 months _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 as _ ADP IN _ 16 case _ _ 16 evidence _ NOUN NN _ 3 nmod _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 the _ DET DT _ 20 det _ _ 19 Federal _ PROPN NNP _ 20 compound _ _ 20 Reserve _ PROPN NNP _ 22 nsubj _ _ 21 was _ VERB VBD _ 22 cop _ _ 22 unlikely _ ADJ JJ _ 16 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 allow _ VERB VB _ 22 xcomp _ _ 25 interest _ NOUN NN _ 26 compound _ _ 26 rates _ NOUN NNS _ 24 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 fall _ VERB VB _ 24 xcomp _ _ 29 as _ SCONJ RB _ 33 mark _ _ 30 many _ ADJ JJ _ 31 amod _ _ 31 investors _ NOUN NNS _ 33 nsubj _ _ 32 had _ AUX VBD _ 33 aux _ _ 33 hoped _ VERB VBN _ 24 advcl _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 Further _ ADV JJ _ 2 advmod _ _ 2 fueling _ VERB VBG _ 23 advcl _ _ 3 the _ DET DT _ 4 det _ _ 4 belief _ NOUN NN _ 2 dobj _ _ 5 that _ SCONJ WDT _ 11 mark _ _ 6 pressures _ NOUN NNS _ 11 nsubj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 economy _ NOUN NN _ 6 nmod _ _ 10 were _ VERB VBD _ 11 cop _ _ 11 sufficient _ ADJ JJ _ 4 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 keep _ VERB VB _ 11 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 Fed _ PROPN NNP _ 13 dobj _ _ 16 from _ SCONJ IN _ 17 mark _ _ 17 easing _ VERB VBG _ 13 advcl _ _ 18 credit _ NOUN NN _ 17 dobj _ _ 19 , _ PUNCT , _ 23 punct _ _ 20 the _ DET DT _ 22 det _ _ 21 Commerce _ PROPN NNP _ 22 compound _ _ 22 Department _ PROPN NNP _ 23 nsubj _ _ 23 reported _ VERB VBD _ 0 root _ _ 24 Friday _ PROPN NNP _ 23 nmod:tmod _ _ 25 that _ SCONJ IN _ 28 mark _ _ 26 retail _ ADJ JJ _ 27 amod _ _ 27 sales _ NOUN NNS _ 28 nsubj _ _ 28 grew _ VERB VBD _ 23 ccomp _ _ 29 0.5 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 28 dobj _ _ 31 in _ ADP IN _ 32 case _ _ 32 September _ PROPN NNP _ 28 nmod _ _ 33 , _ PUNCT , _ 28 punct _ _ 34 to _ ADP TO _ 35 case _ _ 35 $ _ SYM $ _ 28 nmod _ _ 36 145.21 _ NUM CD _ 37 compound _ _ 37 billion _ NUM CD _ 35 nummod _ _ 38 . _ PUNCT . _ 23 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 rise _ NOUN NN _ 3 nsubj _ _ 3 came _ VERB VBD _ 0 root _ _ 4 on _ ADP IN _ 5 case _ _ 5 top _ NOUN NN _ 3 nmod _ _ 6 of _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 0.7 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 gain _ NOUN NN _ 5 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 August _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 and _ CONJ CC _ 3 cc _ _ 15 suggested _ VERB VBD _ 3 conj _ _ 16 there _ PRON EX _ 17 expl _ _ 17 is _ VERB VBZ _ 15 ccomp _ _ 18 still _ ADV RB _ 17 advmod _ _ 19 healthy _ ADJ JJ _ 21 amod _ _ 20 consumer _ NOUN NN _ 21 compound _ _ 21 demand _ NOUN NN _ 17 nsubj _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 economy _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 33 ccomp _ _ 4 the _ DET DT _ 6 det _ _ 5 Friday _ PROPN NNP _ 6 compound _ _ 6 report _ NOUN NN _ 16 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 combined _ VERB VBN _ 11 case _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 actions _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 Fed _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 weakened _ VERB VBD _ 3 ccomp _ _ 17 the _ DET DT _ 18 det _ _ 18 belief _ NOUN NN _ 16 dobj _ _ 19 that _ SCONJ IN _ 22 mark _ _ 20 there _ PRON EX _ 22 expl _ _ 21 was _ AUX VBD _ 22 aux _ _ 22 going _ VERB VBG _ 18 ccomp _ _ 23 to _ PART TO _ 27 mark _ _ 24 be _ VERB VB _ 27 cop _ _ 25 an _ DET DT _ 27 det _ _ 26 imminent _ ADJ JJ _ 27 amod _ _ 27 easing _ NOUN NN _ 22 xcomp _ _ 28 of _ ADP IN _ 30 case _ _ 29 monetary _ ADJ JJ _ 30 amod _ _ 30 policy _ NOUN NN _ 27 nmod _ _ 31 , _ PUNCT , _ 33 punct _ _ 32 '' _ PUNCT '' _ 33 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 Robert _ PROPN NNP _ 35 compound _ _ 35 Dederick _ PROPN NNP _ 33 nsubj _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 chief _ ADJ JJ _ 38 amod _ _ 38 economist _ NOUN NN _ 35 appos _ _ 39 at _ ADP IN _ 42 case _ _ 40 Northern _ PROPN NNP _ 42 compound _ _ 41 Trust _ PROPN NNP _ 42 compound _ _ 42 Co. _ PROPN NNP _ 38 nmod _ _ 43 in _ ADP IN _ 44 case _ _ 44 Chicago _ PROPN NNP _ 42 nmod _ _ 45 . _ PUNCT . _ 33 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 economists _ NOUN NNS _ 4 nsubj _ _ 3 were _ VERB VBD _ 4 cop _ _ 4 divided _ ADJ VBN _ 0 root _ _ 5 over _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 extent _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 inflation _ NOUN NN _ 11 compound _ _ 11 threat _ NOUN NN _ 7 nmod _ _ 12 signaled _ VERB VBN _ 11 acl _ _ 13 by _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 new _ ADJ JJ _ 16 amod _ _ 16 numbers _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 35 punct _ _ 2 The _ DET DT _ 6 det _ _ 3 overall _ ADJ JJ _ 6 amod _ _ 4 0.9 _ NUM CD _ 5 compound _ _ 5 % _ SYM NN _ 6 amod _ _ 6 increase _ NOUN NN _ 8 nsubj _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 serious _ ADJ JJ _ 35 ccomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 itself _ PRON PRP _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 but _ CONJ CC _ 8 cc _ _ 13 what _ PRON WP _ 16 nsubj _ _ 14 is _ VERB VBZ _ 16 cop _ _ 15 even _ ADV RB _ 16 advmod _ _ 16 worse _ ADJ JJR _ 17 csubj _ _ 17 is _ VERB VBZ _ 8 conj _ _ 18 that _ SCONJ IN _ 29 mark _ _ 19 excluding _ VERB VBG _ 20 case _ _ 20 food _ NOUN NN _ 29 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 energy _ NOUN NN _ 20 conj _ _ 23 , _ PUNCT , _ 29 punct _ _ 24 the _ DET DT _ 27 det _ _ 25 producer _ NOUN NN _ 27 compound _ _ 26 price _ NOUN NN _ 27 compound _ _ 27 index _ NOUN NN _ 29 nsubj _ _ 28 still _ ADV RB _ 29 advmod _ _ 29 increased _ VERB VBN _ 17 ccomp _ _ 30 by _ ADP IN _ 32 case _ _ 31 0.7 _ NUM CD _ 32 nummod _ _ 32 % _ SYM NN _ 29 nmod _ _ 33 , _ PUNCT , _ 35 punct _ _ 34 '' _ PUNCT '' _ 35 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 Gordon _ PROPN NNP _ 37 compound _ _ 37 Richards _ PROPN NNP _ 35 nsubj _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 an _ DET DT _ 40 det _ _ 40 economist _ NOUN NN _ 37 appos _ _ 41 at _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 National _ PROPN NNP _ 44 compound _ _ 44 Association _ PROPN NNP _ 40 nmod _ _ 45 of _ ADP IN _ 46 case _ _ 46 Manufacturers _ PROPN NNPS _ 44 nmod _ _ 47 . _ PUNCT . _ 35 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 Sung _ PROPN NNP _ 4 compound _ _ 3 Won _ PROPN NNP _ 4 compound _ _ 4 Sohn _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 chief _ ADJ JJ _ 7 amod _ _ 7 economist _ NOUN NN _ 4 appos _ _ 8 at _ ADP IN _ 10 case _ _ 9 Norwest _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Minneapolis _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 blamed _ VERB VBD _ 0 root _ _ 15 rising _ VERB VBG _ 17 amod _ _ 16 energy _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 14 dobj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 the _ DET DT _ 22 det _ _ 20 annual _ ADJ JJ _ 22 amod _ _ 21 autumn _ NOUN NN _ 22 compound _ _ 22 increase _ NOUN NN _ 17 conj _ _ 23 in _ ADP IN _ 25 case _ _ 24 car _ NOUN NN _ 25 compound _ _ 25 prices _ NOUN NNS _ 22 nmod _ _ 26 for _ ADP IN _ 27 case _ _ 27 most _ ADJ JJS _ 14 nmod _ _ 28 of _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 September _ PROPN NNP _ 31 compound _ _ 31 jump _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 say _ VERB VB _ 18 ccomp _ _ 5 this _ PRON DT _ 9 nsubj _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 not _ PART RB _ 9 neg _ _ 8 bad _ ADJ JJ _ 9 amod _ _ 9 news _ NOUN NN _ 4 dep _ _ 10 ; _ PUNCT : _ 9 punct _ _ 11 this _ PRON DT _ 14 nsubj _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 a _ DET DT _ 14 det _ _ 14 blip _ NOUN NN _ 9 parataxis _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 core _ ADJ NN _ 4 amod _ _ 4 rate _ NOUN NN _ 5 nsubj _ _ 5 is _ VERB VBZ _ 0 root _ _ 6 not _ PART RB _ 5 neg _ _ 7 really _ ADV RB _ 5 advmod _ _ 8 out _ ADP IN _ 5 advmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 line _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 1 All _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 energy _ NOUN NN _ 5 compound _ _ 5 prices _ NOUN NNS _ 7 nsubj _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 skewed _ VERB VBN _ 0 root _ _ 8 the _ DET DT _ 11 det _ _ 9 producer _ NOUN NN _ 11 compound _ _ 10 price _ NOUN NN _ 11 compound _ _ 11 index _ NOUN NN _ 7 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 measures _ VERB VBZ _ 11 acl:relcl _ _ 15 changes _ NOUN NNS _ 14 dobj _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 prices _ NOUN NNS _ 15 nmod _ _ 19 producers _ NOUN NNS _ 20 nsubj _ _ 20 receive _ VERB VBP _ 18 acl:relcl _ _ 21 for _ ADP IN _ 22 case _ _ 22 goods _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 Inflation _ NOUN NN _ 4 nsubj _ _ 2 unquestionably _ ADV RB _ 4 advmod _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 fallen _ VERB VBN _ 0 root _ _ 5 back _ ADV RB _ 4 advmod _ _ 6 from _ ADP IN _ 9 case _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 torrid _ ADJ JJ _ 9 amod _ _ 9 pace _ NOUN NN _ 5 nmod _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 winter _ NOUN NN _ 9 nmod:tmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 when _ ADV WRB _ 21 advmod _ _ 14 a _ DET DT _ 16 det _ _ 15 steep _ ADJ JJ _ 16 amod _ _ 16 run-up _ NOUN NN _ 21 nsubj _ _ 17 in _ ADP IN _ 20 case _ _ 18 world _ NOUN NN _ 20 compound _ _ 19 oil _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 16 nmod _ _ 21 sent _ VERB VBD _ 11 acl:relcl _ _ 22 the _ DET DT _ 23 det _ _ 23 index _ NOUN NN _ 24 nsubj _ _ 24 surging _ VERB VBG _ 21 dep _ _ 25 at _ ADP IN _ 28 case _ _ 26 double-digit _ ADJ JJ _ 28 amod _ _ 27 annual _ ADJ JJ _ 28 amod _ _ 28 rates _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Energy _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 4 nsubj _ _ 3 then _ ADV RB _ 4 advmod _ _ 4 plummeted _ VERB VBD _ 0 root _ _ 5 through _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 summer _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 causing _ VERB VBG _ 4 xcomp _ _ 10 the _ DET DT _ 11 det _ _ 11 index _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 decline _ VERB VB _ 9 xcomp _ _ 14 for _ ADP IN _ 17 case _ _ 15 three _ NUM CD _ 17 nummod _ _ 16 consecutive _ ADJ JJ _ 17 amod _ _ 17 months _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Overall _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 index _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 climbed _ VERB VBN _ 24 ccomp _ _ 7 at _ ADP IN _ 13 case _ _ 8 a _ DET DT _ 13 det _ _ 9 5.1 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 13 amod _ _ 11 compound _ ADJ NN _ 13 amod _ _ 12 annual _ ADJ JJ _ 13 amod _ _ 13 rate _ NOUN NN _ 6 nmod _ _ 14 since _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 start _ NOUN NN _ 6 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 the _ DET DT _ 23 det _ _ 22 Labor _ PROPN NNP _ 23 compound _ _ 23 Department _ PROPN NNP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 far _ ADV RB _ 4 advmod _ _ 3 more _ ADV JJR _ 4 advmod _ _ 4 restrained _ ADJ JJ _ 20 advcl _ _ 5 than _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 pace _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 beginning _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 year _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 20 punct _ _ 15 that _ PRON WDT _ 20 nsubj _ _ 16 is _ VERB VBZ _ 20 cop _ _ 17 still _ ADV RB _ 20 advmod _ _ 18 a _ DET DT _ 20 det _ _ 19 steeper _ ADJ JJR _ 20 amod _ _ 20 rise _ NOUN NN _ 0 root _ _ 21 than _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 4.0 _ NUM CD _ 24 compound _ _ 24 % _ SYM NN _ 25 amod _ _ 25 increase _ NOUN NN _ 20 nmod _ _ 26 for _ ADP IN _ 27 case _ _ 27 all _ DET DT _ 25 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 1988 _ NUM CD _ 27 nmod _ _ 30 . _ PUNCT . _ 20 punct _ _ 1 Moreover _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 this _ DET DT _ 4 det _ _ 4 year _ NOUN NN _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 good _ ADJ JJ _ 8 amod _ _ 7 inflation _ NOUN NN _ 8 compound _ _ 8 news _ NOUN NN _ 11 nsubj _ _ 9 may _ AUX MD _ 11 aux _ _ 10 have _ AUX VB _ 11 aux _ _ 11 ended _ VERB VBN _ 0 root _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 month _ NOUN NN _ 11 nmod:tmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 when _ ADV WRB _ 18 advmod _ _ 16 energy _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 18 nsubj _ _ 18 zoomed _ VERB VBD _ 13 acl:relcl _ _ 19 up _ ADV RP _ 18 advmod _ _ 20 6.5 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 dobj _ _ 22 after _ SCONJ IN _ 23 mark _ _ 23 plunging _ VERB VBG _ 18 advcl _ _ 24 7.3 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 23 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 August _ PROPN NNP _ 23 nmod _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 expect _ VERB VBP _ 0 root _ _ 4 oil _ NOUN NN _ 5 compound _ _ 5 prices _ NOUN NNS _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 remain _ VERB VB _ 3 xcomp _ _ 8 relatively _ ADV RB _ 9 advmod _ _ 9 stable _ ADJ JJ _ 7 xcomp _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 months _ NOUN NNS _ 7 nmod _ _ 13 ahead _ ADV RB _ 12 advmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 leaving _ VERB VBG _ 7 xcomp _ _ 16 the _ DET DT _ 18 det _ _ 17 future _ ADJ JJ _ 18 amod _ _ 18 pace _ NOUN NN _ 21 nsubj _ _ 19 of _ ADP IN _ 20 case _ _ 20 inflation _ NOUN NN _ 18 nmod _ _ 21 uncertain _ ADJ JJ _ 15 xcomp _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 had _ AUX VBD _ 3 aux _ _ 3 expected _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 13 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 climb _ NOUN NN _ 13 nsubj _ _ 7 in _ ADP IN _ 9 case _ _ 8 oil _ NOUN NN _ 9 compound _ _ 9 prices _ NOUN NNS _ 6 nmod _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 month _ NOUN NN _ 6 nmod:tmod _ _ 12 would _ AUX MD _ 13 aux _ _ 13 lead _ VERB VB _ 3 ccomp _ _ 14 to _ ADP TO _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 substantial _ ADJ JJ _ 17 amod _ _ 17 rise _ NOUN NN _ 13 nmod _ _ 18 in _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 producer _ NOUN NN _ 22 compound _ _ 21 price _ NOUN NN _ 22 compound _ _ 22 index _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 3 punct _ _ 24 but _ CONJ CC _ 3 cc _ _ 25 the _ DET DT _ 28 det _ _ 26 0.9 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 28 amod _ _ 28 climb _ NOUN NN _ 30 nsubj _ _ 29 was _ VERB VBD _ 30 cop _ _ 30 higher _ ADJ JJR _ 3 conj _ _ 31 than _ SCONJ IN _ 33 mark _ _ 32 most _ ADJ JJS _ 33 nsubj _ _ 33 anticipated _ VERB VBN _ 30 ccomp _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 20 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 resurgence _ NOUN NN _ 11 nsubj _ _ 6 -LCB- _ PUNCT -LRB- _ 8 punct _ _ 7 in _ ADP IN _ 8 case _ _ 8 inflation _ NOUN NN _ 5 nmod _ _ 9 -RCB- _ PUNCT -RRB- _ 8 punct _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 going _ VERB VBG _ 3 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 continue _ VERB VB _ 11 xcomp _ _ 14 for _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 few _ ADJ JJ _ 17 amod _ _ 17 months _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 John _ PROPN NNP _ 22 compound _ _ 22 Mueller _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 chief _ ADJ JJ _ 25 amod _ _ 25 economist _ NOUN NN _ 22 appos _ _ 26 at _ ADP IN _ 29 case _ _ 27 Bell _ PROPN NNP _ 29 compound _ _ 28 Mueller _ PROPN NNP _ 29 compound _ _ 29 Cannon _ PROPN NNP _ 25 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 a _ DET DT _ 35 det _ _ 32 Washington _ PROPN NNP _ 35 compound _ _ 33 economic _ ADJ JJ _ 35 amod _ _ 34 forecasting _ NOUN NN _ 35 compound _ _ 35 firm _ NOUN NN _ 29 appos _ _ 36 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 predicted _ VERB VBD _ 0 root _ _ 3 that _ DET IN _ 4 det _ _ 4 inflation _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 moderate _ VERB VB _ 2 ccomp _ _ 7 next _ ADJ JJ _ 8 amod _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 saying _ VERB VBG _ 2 xcomp _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 credit _ NOUN NN _ 13 compound _ _ 13 conditions _ NOUN NNS _ 16 nsubj _ _ 14 are _ VERB VBP _ 16 cop _ _ 15 fairly _ ADV RB _ 16 advmod _ _ 16 tight _ ADJ JJ _ 10 ccomp _ _ 17 world-wide _ ADV JJ _ 16 advmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 Dirk _ PROPN NNP _ 4 compound _ _ 3 Van _ PROPN NNP _ 4 compound _ _ 4 Dongen _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 president _ NOUN NN _ 4 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 National _ PROPN NNP _ 10 compound _ _ 10 Association _ PROPN NNP _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Wholesaler-Distributors _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 that _ SCONJ IN _ 26 mark _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 month _ NOUN NN _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 rise _ NOUN NN _ 26 nsubj _ _ 20 `` _ PUNCT `` _ 26 punct _ _ 21 is _ VERB VBZ _ 26 cop _ _ 22 n't _ PART RB _ 26 neg _ _ 23 as _ ADV RB _ 26 advmod _ _ 24 bad _ ADJ JJ _ 26 amod _ _ 25 an _ DET DT _ 26 det _ _ 26 omen _ NOUN NN _ 14 ccomp _ _ 27 '' _ PUNCT '' _ 26 punct _ _ 28 as _ SCONJ IN _ 33 mark _ _ 29 the _ DET DT _ 32 det _ _ 30 0.9 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 32 amod _ _ 32 figure _ NOUN NN _ 33 nsubj _ _ 33 suggests _ VERB VBZ _ 26 acl:relcl _ _ 34 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 37 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 examine _ VERB VBP _ 12 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 data _ NOUN NNS _ 4 dobj _ _ 7 carefully _ ADV RB _ 4 advmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 increase _ NOUN NN _ 12 nsubjpass _ _ 11 is _ AUX VBZ _ 12 auxpass _ _ 12 concentrated _ VERB VBN _ 37 ccomp _ _ 13 in _ ADP IN _ 18 case _ _ 14 energy _ NOUN NN _ 18 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 motor _ NOUN NN _ 14 conj _ _ 17 vehicle _ NOUN NN _ 18 compound _ _ 18 prices _ NOUN NNS _ 12 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 rather _ ADV RB _ 25 mark _ _ 21 than _ SCONJ IN _ 20 mwe _ _ 22 being _ VERB VBG _ 25 cop _ _ 23 a _ DET DT _ 25 det _ _ 24 broad-based _ ADJ JJ _ 25 amod _ _ 25 advance _ NOUN NN _ 18 acl _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 prices _ NOUN NNS _ 25 nmod _ _ 29 of _ ADP IN _ 33 case _ _ 30 consumer _ NOUN NN _ 33 compound _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 industrial _ ADJ JJ _ 30 conj _ _ 33 goods _ NOUN NNS _ 28 nmod _ _ 34 , _ PUNCT , _ 37 punct _ _ 35 '' _ PUNCT '' _ 37 punct _ _ 36 he _ PRON PRP _ 37 nsubj _ _ 37 explained _ VERB VBD _ 0 root _ _ 38 . _ PUNCT . _ 37 punct _ _ 1 Passenger _ NOUN NN _ 3 compound _ _ 2 car _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 4 nsubj _ _ 4 jumped _ VERB VBD _ 0 root _ _ 5 3.8 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 September _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 after _ SCONJ IN _ 11 mark _ _ 11 climbing _ VERB VBG _ 4 advcl _ _ 12 0.5 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 August _ PROPN NNP _ 11 nmod _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 declining _ VERB VBG _ 11 conj _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 late _ ADJ JJ _ 21 amod _ _ 21 spring _ NOUN NN _ 17 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 summer _ NOUN NN _ 21 conj _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 September _ PROPN NNP _ 6 compound _ _ 6 increase _ NOUN NN _ 10 nsubj _ _ 7 was _ VERB VBD _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 one-time _ ADJ JJ _ 10 amod _ _ 10 event _ NOUN NN _ 3 ccomp _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 coming _ VERB VBG _ 10 advcl _ _ 13 as _ SCONJ IN _ 15 mark _ _ 14 dealers _ NOUN NNS _ 15 nsubj _ _ 15 introduced _ VERB VBD _ 12 advcl _ _ 16 their _ PRON PRP$ _ 18 nmod:poss _ _ 17 1990 _ NUM CD _ 18 nummod _ _ 18 models _ NOUN NNS _ 15 dobj _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 7 mark _ _ 2 all _ DET PDT _ 5 det:predet _ _ 3 the _ DET DT _ 5 det _ _ 4 price _ NOUN NN _ 5 compound _ _ 5 data _ NOUN NNS _ 7 nsubjpass _ _ 6 were _ AUX VBD _ 7 auxpass _ _ 7 adjusted _ VERB VBN _ 15 advcl _ _ 8 for _ ADP IN _ 11 case _ _ 9 normal _ ADJ JJ _ 11 amod _ _ 10 seasonal _ ADJ JJ _ 11 amod _ _ 11 fluctuations _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 car _ NOUN NN _ 14 compound _ _ 14 prices _ NOUN NNS _ 15 nsubj _ _ 15 rose _ VERB VBD _ 0 root _ _ 16 beyond _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 customary _ ADJ JJ _ 20 amod _ _ 19 autumn _ NOUN NN _ 20 compound _ _ 20 increase _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 Prices _ NOUN NNS _ 5 nsubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 capital _ NOUN NN _ 4 compound _ _ 4 equipment _ NOUN NN _ 1 nmod _ _ 5 rose _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 9 det _ _ 7 hefty _ ADJ JJ _ 9 amod _ _ 8 1.1 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 5 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 while _ SCONJ IN _ 19 mark _ _ 14 prices _ NOUN NNS _ 19 nsubj _ _ 15 for _ ADP IN _ 18 case _ _ 16 home _ NOUN NN _ 18 compound _ _ 17 electronic _ ADJ JJ _ 18 amod _ _ 18 equipment _ NOUN NN _ 14 nmod _ _ 19 fell _ VERB VBD _ 5 advcl _ _ 20 1.1 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Food _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 0.6 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 after _ SCONJ IN _ 8 mark _ _ 8 climbing _ VERB VBG _ 3 advcl _ _ 9 0.3 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 August _ PROPN NNP _ 8 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 retail _ ADJ JJ _ 6 amod _ _ 5 sales _ NOUN NNS _ 6 compound _ _ 6 report _ NOUN NN _ 7 nsubj _ _ 7 showed _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 11 mark _ _ 9 car _ NOUN NN _ 10 compound _ _ 10 sales _ NOUN NNS _ 11 nsubj _ _ 11 rose _ VERB VBD _ 7 ccomp _ _ 12 0.8 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 September _ PROPN NNP _ 11 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 $ _ SYM $ _ 11 nmod _ _ 18 32.82 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 at _ ADP IN _ 3 case _ _ 3 least _ ADJ JJS _ 4 advmod _ _ 4 part _ NOUN NN _ 10 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 increase _ NOUN NN _ 4 nmod _ _ 8 could _ AUX MD _ 10 aux _ _ 9 have _ AUX VB _ 10 aux _ _ 10 come _ VERB VBN _ 16 ccomp _ _ 11 from _ ADP IN _ 13 case _ _ 12 higher _ ADJ JJR _ 13 amod _ _ 13 prices _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 analysts _ NOUN NNS _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 Sales _ NOUN NNS _ 6 nsubj _ _ 2 at _ ADP IN _ 5 case _ _ 3 general _ ADJ JJ _ 5 amod _ _ 4 merchandise _ NOUN NN _ 5 compound _ _ 5 stores _ NOUN NNS _ 1 nmod _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 1.7 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 after _ SCONJ IN _ 10 mark _ _ 10 declining _ VERB VBG _ 6 advcl _ _ 11 0.6 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 while _ SCONJ IN _ 21 mark _ _ 17 sales _ NOUN NNS _ 21 nsubj _ _ 18 of _ ADP IN _ 20 case _ _ 19 building _ NOUN NN _ 20 compound _ _ 20 materials _ NOUN NNS _ 17 nmod _ _ 21 fell _ VERB VBD _ 6 advcl _ _ 22 1.8 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dobj _ _ 24 after _ SCONJ IN _ 25 mark _ _ 25 rising _ VERB VBG _ 21 advcl _ _ 26 1.7 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 25 dobj _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 Producer _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 intermediate _ ADJ JJ _ 5 amod _ _ 5 goods _ NOUN NNS _ 2 nmod _ _ 6 grew _ VERB VBD _ 0 root _ _ 7 0.4 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 September _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 after _ SCONJ IN _ 13 mark _ _ 13 dropping _ VERB VBG _ 6 advcl _ _ 14 for _ ADP IN _ 17 case _ _ 15 three _ NUM CD _ 17 nummod _ _ 16 consecutive _ ADJ JJ _ 17 amod _ _ 17 months _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 Prices _ NOUN NNS _ 12 nsubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 crude _ ADJ JJ _ 4 amod _ _ 4 goods _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 an _ DET DT _ 7 det _ _ 7 array _ NOUN NN _ 4 appos _ _ 8 of _ ADP IN _ 10 case _ _ 9 raw _ ADJ JJ _ 10 amod _ _ 10 materials _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 jumped _ VERB VBD _ 0 root _ _ 13 1.1 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 dobj _ _ 15 after _ SCONJ IN _ 16 mark _ _ 16 declining _ VERB VBG _ 12 advcl _ _ 17 1.9 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 August _ PROPN NNP _ 16 nmod _ _ 21 and _ CONJ CC _ 16 cc _ _ 22 edging _ VERB VBG _ 16 conj _ _ 23 up _ ADP RP _ 22 compound:prt _ _ 24 0.2 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 22 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 July _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 Here _ ADV RB _ 2 advmod _ _ 2 are _ VERB VBP _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Labor _ PROPN NNP _ 5 compound _ _ 5 Department _ PROPN NNP _ 9 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 producer _ NOUN NN _ 9 compound _ _ 8 price _ NOUN NN _ 9 compound _ _ 9 indexes _ NOUN NNS _ 2 dep _ _ 10 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 11 1982 _ NUM CD _ 13 nsubj _ _ 12 = _ SYM JJ _ 13 dep _ _ 13 100 _ NUM CD _ 9 dep _ _ 14 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 15 for _ ADP IN _ 16 case _ _ 16 September _ PROPN NNP _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 before _ ADP IN _ 20 case _ _ 19 seasonal _ ADJ JJ _ 20 amod _ _ 20 adjustment _ NOUN NN _ 9 nmod _ _ 21 , _ PUNCT , _ 9 punct _ _ 22 and _ CONJ CC _ 9 cc _ _ 23 the _ DET DT _ 25 det _ _ 24 percentage _ NOUN NN _ 25 compound _ _ 25 changes _ NOUN NNS _ 9 conj _ _ 26 from _ ADP IN _ 27 case _ _ 27 September _ PROPN NNP _ 25 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 1988 _ NUM CD _ 27 nummod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 CityFed _ PROPN NNP _ 3 compound _ _ 2 Financial _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 expects _ VERB VBZ _ 4 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 10 det _ _ 10 loss _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 18 case _ _ 12 at _ ADP IN _ 13 case _ _ 13 least _ ADJ JJS _ 18 nmod:npmod _ _ 14 $ _ SYM $ _ 18 dep _ _ 15 125 _ NUM CD _ 18 compound _ _ 16 million _ NUM CD _ 18 compound _ _ 17 to _ ADP TO _ 18 dep _ _ 18 $ _ SYM $ _ 10 nmod _ _ 19 150 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 for _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 third _ ADJ JJ _ 24 amod _ _ 24 quarter _ NOUN NN _ 10 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 period _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 CityFed _ PROPN NNP _ 7 nsubj _ _ 7 had _ VERB VBD _ 0 root _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 485,000 _ NUM CD _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 but _ CONJ CC _ 9 cc _ _ 15 no _ DET DT _ 17 neg _ _ 16 per-share _ ADJ JJ _ 17 amod _ _ 17 earnings _ NOUN NNS _ 9 conj _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 CityFed _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 president _ NOUN NN _ 12 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 chief _ ADJ JJ _ 7 amod _ _ 6 executive _ ADJ JJ _ 7 amod _ _ 7 officer _ NOUN NN _ 3 conj _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 John _ PROPN NNP _ 10 compound _ _ 10 Atherton _ PROPN NNP _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 14 det _ _ 14 loss _ NOUN NN _ 15 nsubj _ _ 15 stems _ VERB VBZ _ 12 ccomp _ _ 16 from _ ADP IN _ 18 case _ _ 17 several _ ADJ JJ _ 18 amod _ _ 18 factors _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 nonperforming _ ADJ VBG _ 4 amod _ _ 4 assets _ NOUN NNS _ 5 nsubj _ _ 5 rose _ VERB VBD _ 2 ccomp _ _ 6 to _ ADP TO _ 10 case _ _ 7 slightly _ ADV RB _ 10 advmod _ _ 8 more _ ADJ JJR _ 10 advmod _ _ 9 than _ ADP IN _ 8 mwe _ _ 10 $ _ SYM $ _ 5 nmod _ _ 11 700 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 5 nmod _ _ 15 516 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 between _ ADP IN _ 18 case _ _ 18 June _ PROPN NNP _ 5 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 September _ PROPN NNP _ 18 conj _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Approximately _ ADV RB _ 2 advmod _ _ 2 85 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 7 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 total _ NOUN JJ _ 3 nmod _ _ 7 consisted _ VERB VBN _ 0 root _ _ 8 of _ ADP IN _ 13 case _ _ 9 nonperforming _ ADJ VBG _ 13 amod _ _ 10 commercial _ ADJ JJ _ 13 amod _ _ 11 real _ ADJ JJ _ 13 amod _ _ 12 estate _ NOUN NN _ 13 compound _ _ 13 assets _ NOUN NNS _ 7 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Accordingly _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 CityFed _ PROPN NNP _ 4 nsubj _ _ 4 estimated _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 provide _ VERB VB _ 4 ccomp _ _ 9 between _ ADP IN _ 10 advmod _ _ 10 $ _ SYM $ _ 8 dobj _ _ 11 85 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 and _ CONJ CC _ 10 cc _ _ 14 $ _ SYM $ _ 10 conj _ _ 15 110 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 for _ ADP IN _ 19 case _ _ 18 credit _ NOUN NN _ 19 compound _ _ 19 losses _ NOUN NNS _ 8 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 quarter _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 CityFed _ PROPN NNP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 10 mark _ _ 4 significant _ ADJ JJ _ 7 amod _ _ 5 additional _ ADJ JJ _ 7 amod _ _ 6 loan-loss _ ADJ NN _ 7 amod _ _ 7 provisions _ NOUN NNS _ 10 nsubjpass _ _ 8 may _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 auxpass _ _ 10 required _ VERB VBN _ 2 ccomp _ _ 11 by _ ADP IN _ 13 case _ _ 12 federal _ ADJ JJ _ 13 amod _ _ 13 regulators _ NOUN NNS _ 10 nmod _ _ 14 as _ ADP IN _ 15 case _ _ 15 part _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 current _ ADJ JJ _ 20 amod _ _ 19 annual _ ADJ JJ _ 20 amod _ _ 20 examination _ NOUN NN _ 15 nmod _ _ 21 of _ ADP IN _ 25 case _ _ 22 City _ PROPN NNP _ 25 compound _ _ 23 Federal _ PROPN NNP _ 25 compound _ _ 24 Savings _ PROPN NNP _ 25 compound _ _ 25 Bank _ PROPN NNP _ 20 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 CityFed _ PROPN NNP _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 primary _ ADJ JJ _ 30 amod _ _ 30 subsidiary _ NOUN NN _ 25 appos _ _ 31 , _ PUNCT , _ 25 punct _ _ 32 based _ VERB VBN _ 25 acl _ _ 33 in _ ADP IN _ 34 case _ _ 34 Somerset _ PROPN NNP _ 32 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 N.J _ PROPN NNP _ 34 appos _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 City _ PROPN NNP _ 2 compound _ _ 2 Federal _ PROPN NNP _ 3 nsubj _ _ 3 operates _ VERB VBZ _ 0 root _ _ 4 105 _ NUM CD _ 6 nummod _ _ 5 banking _ NOUN NN _ 6 compound _ _ 6 offices _ NOUN NNS _ 3 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 Jersey _ PROPN NNP _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Florida _ PROPN NNP _ 9 conj _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Atherton _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 CityFed _ PROPN NNP _ 7 nsubj _ _ 5 will _ AUX MD _ 7 aux _ _ 6 also _ ADV RB _ 7 advmod _ _ 7 mark _ VERB VB _ 3 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 portfolio _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 high-yield _ ADJ JJ _ 13 amod _ _ 12 corporate _ ADJ JJ _ 13 amod _ _ 13 bonds _ NOUN NNS _ 9 nmod _ _ 14 to _ ADP TO _ 15 case _ _ 15 market _ NOUN NN _ 7 nmod _ _ 16 as _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 result _ NOUN NN _ 7 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 federal _ ADJ JJ _ 21 amod _ _ 21 legislation _ NOUN NN _ 18 nmod _ _ 22 requiring _ VERB VBG _ 21 acl _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 savings _ NOUN NNS _ 25 compound _ _ 25 institutions _ NOUN NNS _ 26 nsubj _ _ 26 divest _ VERB VBP _ 22 ccomp _ _ 27 themselves _ PRON PRP _ 26 dobj _ _ 28 of _ ADP IN _ 30 case _ _ 29 such _ ADJ JJ _ 30 amod _ _ 30 bonds _ NOUN NNS _ 26 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 action _ NOUN NN _ 8 nsubj _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 CityFed _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 8 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 will _ AUX MD _ 8 aux _ _ 8 result _ VERB VB _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 charge _ NOUN NN _ 8 nmod _ _ 12 against _ ADP IN _ 14 case _ _ 13 third-quarter _ ADJ JJ _ 14 amod _ _ 14 results _ NOUN NNS _ 11 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 approximately _ ADV RB _ 17 advmod _ _ 17 $ _ SYM $ _ 11 nmod _ _ 18 30 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 CityFed _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 shed _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 13 nmod:poss _ _ 9 remaining _ VERB VBG _ 13 amod _ _ 10 mortgage _ NOUN NN _ 13 compound _ _ 11 loan _ NOUN NN _ 13 compound _ _ 12 origination _ NOUN NN _ 13 compound _ _ 13 operations _ NOUN NNS _ 7 dobj _ _ 14 outside _ ADP IN _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 principal _ ADJ JJ _ 17 amod _ _ 17 markets _ NOUN NNS _ 13 nmod _ _ 18 in _ ADP IN _ 20 case _ _ 19 New _ PROPN NNP _ 20 compound _ _ 20 Jersey _ PROPN NNP _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Florida _ PROPN NNP _ 20 conj _ _ 23 and _ CONJ CC _ 5 cc _ _ 24 , _ PUNCT , _ 5 punct _ _ 25 as _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 result _ NOUN NN _ 30 nmod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 is _ AUX VBZ _ 30 aux _ _ 30 taking _ VERB VBG _ 5 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 charge _ NOUN NN _ 30 dobj _ _ 33 for _ ADP IN _ 35 case _ _ 34 discontinued _ ADJ VBN _ 35 amod _ _ 35 operations _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 All _ DET PDT _ 3 det:predet _ _ 2 these _ DET DT _ 3 det _ _ 3 actions _ NOUN NNS _ 10 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Atherton _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 10 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 result _ VERB VB _ 0 root _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 loss _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 125 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 to _ ADP TO _ 15 dep _ _ 19 $ _ SYM $ _ 15 dep _ _ 20 150 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 for _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 third _ ADJ JJ _ 25 amod _ _ 25 quarter _ NOUN NN _ 13 nmod _ _ 26 . _ PUNCT . _ 10 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 however _ ADV RB _ 2 advmod _ _ 5 : _ PUNCT : _ 2 punct _ _ 6 `` _ PUNCT `` _ 51 punct _ _ 7 Depending _ VERB VBG _ 10 case _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 resolution _ NOUN NN _ 51 advcl _ _ 11 of _ ADP IN _ 14 case _ _ 12 certain _ ADJ JJ _ 14 amod _ _ 13 accounting _ NOUN NN _ 14 compound _ _ 14 issues _ NOUN NNS _ 10 nmod _ _ 15 relating _ VERB VBG _ 14 acl _ _ 16 to _ ADP TO _ 18 case _ _ 17 mortgages _ NOUN NNS _ 18 compound _ _ 18 servicing _ NOUN VBG _ 15 nmod _ _ 19 and _ CONJ CC _ 10 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 outcome _ NOUN NN _ 10 conj _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 annual _ ADJ JJ _ 25 amod _ _ 25 examination _ NOUN NN _ 21 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 City _ PROPN NNP _ 28 compound _ _ 28 Federal _ PROPN NNP _ 25 nmod _ _ 29 currently _ ADV RB _ 31 advmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 progress _ NOUN NN _ 25 nmod _ _ 32 with _ ADP IN _ 33 case _ _ 33 respect _ NOUN NN _ 21 nmod _ _ 34 to _ ADP TO _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 appropriate _ ADJ JJ _ 37 amod _ _ 37 level _ NOUN NN _ 33 nmod _ _ 38 of _ ADP IN _ 41 case _ _ 39 loan _ NOUN NN _ 41 compound _ _ 40 loss _ NOUN NN _ 41 compound _ _ 41 reserves _ NOUN NNS _ 37 nmod _ _ 42 , _ PUNCT , _ 51 punct _ _ 43 the _ DET DT _ 45 det _ _ 44 total _ ADJ JJ _ 45 amod _ _ 45 loss _ NOUN NN _ 51 nsubj _ _ 46 for _ ADP IN _ 48 case _ _ 47 the _ DET DT _ 48 det _ _ 48 quarter _ NOUN NN _ 45 nmod _ _ 49 could _ AUX MD _ 51 aux _ _ 50 significantly _ ADV RB _ 51 advmod _ _ 51 exceed _ VERB VB _ 2 ccomp _ _ 52 this _ DET DT _ 53 det _ _ 53 range _ NOUN NN _ 51 dobj _ _ 54 . _ PUNCT . _ 2 punct _ _ 1 CenTrust _ PROPN NNP _ 3 compound _ _ 2 Savings _ PROPN NNP _ 3 compound _ _ 3 Bank _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 federal _ ADJ JJ _ 7 amod _ _ 6 thrift _ NOUN NN _ 7 compound _ _ 7 regulators _ NOUN NNS _ 8 nsubj _ _ 8 ordered _ VERB VBD _ 4 ccomp _ _ 9 it _ PRON PRP _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 suspend _ VERB VB _ 8 xcomp _ _ 12 dividend _ NOUN NN _ 13 compound _ _ 13 payments _ NOUN NNS _ 11 dobj _ _ 14 on _ ADP IN _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 two _ NUM CD _ 17 nummod _ _ 17 classes _ NOUN NNS _ 13 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 preferred _ ADJ JJ _ 20 amod _ _ 20 stock _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 indicating _ VERB VBG _ 4 xcomp _ _ 23 that _ SCONJ IN _ 32 mark _ _ 24 regulators _ NOUN NNS _ 26 nmod:poss _ _ 25 ' _ PART POS _ 24 case _ _ 26 concerns _ NOUN NNS _ 32 nsubj _ _ 27 about _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 troubled _ ADJ JJ _ 30 amod _ _ 30 institution _ NOUN NN _ 26 nmod _ _ 31 have _ AUX VBP _ 32 aux _ _ 32 heightened _ VERB VBN _ 22 ccomp _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 statement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Miami-based _ ADJ JJ _ 6 amod _ _ 6 CenTrust _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 regulators _ NOUN NNS _ 10 nsubj _ _ 10 cited _ VERB VBD _ 7 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 thrift _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 operating _ NOUN NN _ 15 compound _ _ 15 losses _ NOUN NNS _ 10 dobj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 apparent _ ADJ JJ _ 19 amod _ _ 19 losses _ NOUN NNS _ 15 conj _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 in _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 junk-bond _ NOUN NN _ 24 compound _ _ 24 portfolio _ NOUN NN _ 19 nmod _ _ 25 in _ SCONJ IN _ 26 mark _ _ 26 ordering _ VERB VBG _ 10 advcl _ _ 27 the _ DET DT _ 28 det _ _ 28 suspension _ NOUN NN _ 26 dobj _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 dividends _ NOUN NNS _ 28 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 Regulators _ NOUN NNS _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 ordered _ VERB VBD _ 0 root _ _ 4 CenTrust _ PROPN NNP _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 stop _ VERB VB _ 3 xcomp _ _ 7 buying _ VERB VBG _ 6 xcomp _ _ 8 back _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 11 det _ _ 10 preferred _ ADJ JJ _ 11 amod _ _ 11 stock _ NOUN NN _ 7 dobj _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 David _ PROPN NNP _ 3 compound _ _ 2 L. _ PROPN NNP _ 3 compound _ _ 3 Paul _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chairman _ NOUN NN _ 3 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 chief _ ADJ JJ _ 9 amod _ _ 8 executive _ ADJ JJ _ 9 amod _ _ 9 officer _ NOUN NN _ 5 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 criticized _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 14 det _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 Office _ PROPN NNP _ 11 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 Thrift _ PROPN NNP _ 17 compound _ _ 17 Supervision _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 14 punct _ _ 19 which _ PRON WDT _ 20 nsubj _ _ 20 issued _ VERB VBD _ 14 acl:relcl _ _ 21 the _ DET DT _ 22 det _ _ 22 directive _ NOUN NN _ 20 dobj _ _ 23 , _ PUNCT , _ 11 punct _ _ 24 saying _ VERB VBG _ 11 advcl _ _ 25 it _ PRON PRP _ 28 nsubj _ _ 26 was _ VERB VBD _ 28 cop _ _ 27 `` _ PUNCT `` _ 28 punct _ _ 28 inappropriate _ ADJ JJ _ 24 ccomp _ _ 29 '' _ PUNCT '' _ 28 punct _ _ 30 and _ CONJ CC _ 28 cc _ _ 31 based _ VERB VBN _ 36 case _ _ 32 on _ ADP IN _ 36 case _ _ 33 `` _ PUNCT `` _ 36 punct _ _ 34 insufficient _ ADJ JJ _ 36 amod _ _ 35 '' _ PUNCT '' _ 36 punct _ _ 36 reasons _ NOUN NNS _ 28 conj _ _ 37 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 thrift _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 try _ VERB VB _ 2 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 xcomp _ _ 9 regulators _ NOUN NNS _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 reverse _ VERB VB _ 8 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 decision _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 suspension _ NOUN NN _ 11 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 a _ DET DT _ 7 det _ _ 5 preferred _ ADJ JJ _ 7 amod _ _ 6 stock _ NOUN NN _ 7 compound _ _ 7 dividend _ NOUN NN _ 2 nmod _ _ 8 is _ VERB VBZ _ 11 cop _ _ 9 a _ DET DT _ 11 det _ _ 10 serious _ ADJ JJ _ 11 amod _ _ 11 step _ NOUN NN _ 0 root _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 signals _ VERB VBZ _ 11 acl:relcl _ _ 14 that _ SCONJ IN _ 16 mark _ _ 15 regulators _ NOUN NNS _ 16 nsubj _ _ 16 have _ VERB VBP _ 13 ccomp _ _ 17 deep _ ADJ JJ _ 18 amod _ _ 18 concerns _ NOUN NNS _ 16 dobj _ _ 19 about _ ADP IN _ 23 case _ _ 20 an _ DET DT _ 21 det _ _ 21 institution _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 health _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 March _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 regulators _ NOUN NNS _ 5 nsubj _ _ 5 labeled _ VERB VBN _ 0 root _ _ 6 CenTrust _ PROPN NNP _ 10 nsubj _ _ 7 a _ DET DT _ 10 det _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 troubled _ ADJ JJ _ 10 amod _ _ 10 institution _ NOUN NN _ 5 xcomp _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 13 largely _ ADV RB _ 19 advmod _ _ 14 because _ ADP IN _ 19 case _ _ 15 of _ ADP IN _ 14 mwe _ _ 16 its _ PRON PRP$ _ 19 nmod:poss _ _ 17 big _ ADJ JJ _ 19 amod _ _ 18 junk-bond _ NOUN NN _ 19 compound _ _ 19 holdings _ NOUN NNS _ 5 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 operating _ NOUN NN _ 23 compound _ _ 23 losses _ NOUN NNS _ 19 conj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 month _ NOUN NN _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 Office _ PROPN NNP _ 11 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 Thrift _ PROPN NNP _ 10 compound _ _ 10 Supervision _ PROPN NNP _ 7 nmod _ _ 11 ordered _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 institution _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 stop _ VERB VB _ 11 xcomp _ _ 16 paying _ VERB VBG _ 15 xcomp _ _ 17 common _ ADJ JJ _ 19 amod _ _ 18 stock _ NOUN NN _ 19 compound _ _ 19 dividends _ NOUN NNS _ 16 dobj _ _ 20 until _ SCONJ IN _ 25 mark _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 operations _ NOUN NNS _ 25 nsubj _ _ 23 were _ VERB VBD _ 25 cop _ _ 24 on _ ADP IN _ 25 case _ _ 25 track _ NOUN NN _ 15 advcl _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 10 nmod _ _ 5 ended _ VERB VBN _ 4 acl _ _ 6 June _ PROPN NNP _ 5 nmod:tmod _ _ 7 30 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 CenTrust _ PROPN NNP _ 10 nsubj _ _ 10 had _ VERB VBD _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 21.3 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 compared _ VERB VBN _ 23 case _ _ 20 with _ ADP IN _ 23 case _ _ 21 year-earlier _ ADJ JJ _ 23 amod _ _ 22 net _ ADJ JJ _ 23 amod _ _ 23 income _ NOUN NN _ 10 advcl _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 52.8 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 CenTrust _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 8 nsubj _ _ 4 is _ VERB VBZ _ 8 cop _ _ 5 Florida _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 largest _ ADJ JJS _ 8 amod _ _ 8 thrift _ NOUN NN _ 1 acl:relcl _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 holds _ VERB VBZ _ 0 root _ _ 11 one _ NUM CD _ 10 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 largest _ ADJ JJS _ 16 amod _ _ 15 junk-bond _ NOUN NN _ 16 compound _ _ 16 portfolios _ NOUN NNS _ 11 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 any _ DET DT _ 19 det _ _ 19 thrift _ NOUN NN _ 16 nmod _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 nation _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 April _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 pared _ VERB VBN _ 0 root _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 high-yield _ ADJ JJ _ 10 amod _ _ 9 bond _ NOUN NN _ 10 compound _ _ 10 holdings _ NOUN NNS _ 6 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 about _ ADV IN _ 13 advmod _ _ 13 $ _ SYM $ _ 6 nmod _ _ 14 890 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 from _ ADP IN _ 17 case _ _ 17 $ _ SYM $ _ 6 nmod _ _ 18 1.35 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Paul _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 only _ ADV RB _ 6 advmod _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 $ _ SYM $ _ 15 nsubj _ _ 7 150 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 current _ ADJ JJ _ 12 amod _ _ 12 holdings _ NOUN NNS _ 6 nmod _ _ 13 are _ VERB VBP _ 15 cop _ _ 14 tradeable _ ADJ JJ _ 15 amod _ _ 15 securities _ NOUN NNS _ 3 ccomp _ _ 16 registered _ VERB VBN _ 15 acl _ _ 17 with _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 Securities _ PROPN NNPS _ 22 compound _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 Exchange _ PROPN NNP _ 19 conj _ _ 22 Commission _ PROPN NNP _ 16 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 remainder _ NOUN NN _ 10 nsubj _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 said _ VERB VBD _ 10 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 are _ VERB VBP _ 10 cop _ _ 8 commercial _ ADJ JJ _ 10 amod _ _ 9 loan _ NOUN NN _ 10 compound _ _ 10 participations _ NOUN NNS _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 or _ CONJ CC _ 10 cc _ _ 13 private _ ADJ JJ _ 14 amod _ _ 14 placements _ NOUN NNS _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 that _ PRON WDT _ 19 nsubjpass _ _ 17 are _ AUX VBP _ 19 auxpass _ _ 18 n't _ PART RB _ 19 neg _ _ 19 filed _ VERB VBN _ 10 acl:relcl _ _ 20 with _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 SEC _ PROPN NNP _ 19 nmod _ _ 23 and _ CONJ CC _ 19 cc _ _ 24 do _ AUX VBP _ 26 aux _ _ 25 n't _ PART RB _ 26 neg _ _ 26 have _ VERB VB _ 19 conj _ _ 27 a _ DET DT _ 29 det _ _ 28 ready _ ADJ JJ _ 29 amod _ _ 29 market _ NOUN NN _ 26 dobj _ _ 30 . _ PUNCT . _ 10 punct _ _ 1 CenTrust _ PROPN NNP _ 8 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 regulators _ NOUN NNS _ 1 conj _ _ 4 have _ AUX VBP _ 8 aux _ _ 5 been _ VERB VBN _ 8 cop _ _ 6 in _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 dispute _ NOUN NN _ 0 root _ _ 9 over _ ADP IN _ 11 case _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 valuations _ NOUN NNS _ 8 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 junk _ NOUN NN _ 15 compound _ _ 15 bonds _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Office _ PROPN NNP _ 8 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Thrift _ PROPN NNP _ 5 compound _ _ 5 Supervision _ PROPN NNP _ 2 nmod _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ AUX VBN _ 8 aux _ _ 8 hounding _ VERB VBG _ 0 root _ _ 9 CenTrust _ PROPN NNP _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 provide _ VERB VB _ 8 advcl _ _ 12 current _ ADJ JJ _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 values _ NOUN NNS _ 11 dobj _ _ 15 for _ ADP IN _ 17 case _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 holdings _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 but _ CONJ CC _ 8 cc _ _ 20 CenTrust _ PROPN NNP _ 22 nsubj _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 said _ VERB VBD _ 8 conj _ _ 23 it _ PRON PRP _ 27 nsubj _ _ 24 ca _ AUX MD _ 27 aux _ _ 25 n't _ PART RB _ 27 neg _ _ 26 easily _ ADV RB _ 27 advmod _ _ 27 obtain _ VERB VB _ 22 ccomp _ _ 28 such _ ADJ JJ _ 29 amod _ _ 29 values _ NOUN NNS _ 27 dobj _ _ 30 because _ ADP IN _ 34 case _ _ 31 of _ ADP IN _ 30 mwe _ _ 32 the _ DET DT _ 34 det _ _ 33 relative _ ADJ JJ _ 34 amod _ _ 34 illiquidity _ NOUN NN _ 27 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 bonds _ NOUN NNS _ 34 nmod _ _ 38 and _ CONJ CC _ 34 cc _ _ 39 lack _ NOUN NN _ 34 conj _ _ 40 of _ ADP IN _ 43 case _ _ 41 a _ DET DT _ 43 det _ _ 42 ready _ ADJ JJ _ 43 amod _ _ 43 market _ NOUN NN _ 39 nmod _ _ 44 . _ PUNCT . _ 8 punct _ _ 1 Regulators _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 become _ VERB VBN _ 0 root _ _ 4 increasingly _ ADV RB _ 5 advmod _ _ 5 antsy _ ADJ JJ _ 3 xcomp _ _ 6 about _ ADP IN _ 14 case _ _ 7 CenTrust _ PROPN NNP _ 14 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 and _ CONJ CC _ 7 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 thrifts _ NOUN NNS _ 7 conj _ _ 12 ' _ PART POS _ 11 case _ _ 13 junk-bond _ NOUN NN _ 14 compound _ _ 14 holdings _ NOUN NNS _ 5 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 light _ NOUN NN _ 3 nmod _ _ 17 of _ ADP IN _ 23 case _ _ 18 the _ DET DT _ 23 det _ _ 19 recent _ ADJ JJ _ 23 amod _ _ 20 federal _ ADJ JJ _ 23 amod _ _ 21 thrift _ NOUN NN _ 23 compound _ _ 22 bailout _ NOUN NN _ 23 compound _ _ 23 legislation _ NOUN NN _ 16 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 the _ DET DT _ 28 det _ _ 26 recent _ ADJ JJ _ 28 amod _ _ 27 deep _ ADJ JJ _ 28 amod _ _ 28 decline _ NOUN NN _ 23 conj _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 junk-bond _ NOUN NN _ 32 compound _ _ 32 market _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 legislation _ NOUN NN _ 3 nsubj _ _ 3 requires _ VERB VBZ _ 0 root _ _ 4 thrifts _ NOUN NNS _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 divest _ VERB VB _ 3 xcomp _ _ 7 themselves _ PRON PRP _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 junk _ NOUN NN _ 10 compound _ _ 10 bonds _ NOUN NNS _ 6 nmod _ _ 11 in _ ADP IN _ 17 case _ _ 12 the _ DET DT _ 17 det _ _ 13 new _ ADJ JJ _ 17 amod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 somber _ ADJ JJ _ 17 amod _ _ 16 regulatory _ ADJ JJ _ 17 amod _ _ 17 climate _ NOUN NN _ 6 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 American _ PROPN NNP _ 6 compound _ _ 3 Stock _ PROPN NNP _ 6 compound _ _ 4 Exchange _ PROPN NNP _ 6 compound _ _ 5 composite _ ADJ JJ _ 6 amod _ _ 6 trading _ NOUN NN _ 12 nmod _ _ 7 Friday _ PROPN NNP _ 12 nmod:tmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 CenTrust _ PROPN NNP _ 11 compound _ _ 10 common _ ADJ JJ _ 11 amod _ _ 11 shares _ NOUN NNS _ 12 nsubj _ _ 12 closed _ VERB VBD _ 0 root _ _ 13 at _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 3 _ NUM CD _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 down _ ADV RB _ 12 advmod _ _ 18 12.5 _ NUM CD _ 19 nummod _ _ 19 cents _ NOUN NNS _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 statement _ NOUN NN _ 8 nmod _ _ 4 Friday _ PROPN NNP _ 8 nmod:tmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Paul _ PROPN NNP _ 8 nsubj _ _ 8 challenged _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 regulators _ NOUN NNS _ 12 nmod:poss _ _ 11 ' _ PART POS _ 10 case _ _ 12 decision _ NOUN NN _ 8 dobj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 saying _ VERB VBG _ 8 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 thrift _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 operating _ NOUN NN _ 19 compound _ _ 19 losses _ NOUN NNS _ 30 nsubjpass _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 `` _ PUNCT `` _ 25 punct _ _ 22 apparent _ ADJ JJ _ 25 amod _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 junk-bond _ NOUN NN _ 25 compound _ _ 25 losses _ NOUN NNS _ 19 conj _ _ 26 `` _ PUNCT `` _ 30 punct _ _ 27 have _ AUX VBP _ 30 aux _ _ 28 been _ AUX VBN _ 30 auxpass _ _ 29 substantially _ ADV RB _ 30 advmod _ _ 30 offset _ VERB VBN _ 14 ccomp _ _ 31 by _ ADP IN _ 32 case _ _ 32 gains _ NOUN NNS _ 30 nmod _ _ 33 in _ ADP IN _ 35 case _ _ 34 other _ ADJ JJ _ 35 amod _ _ 35 activities _ NOUN NNS _ 32 nmod _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 bank _ NOUN NN _ 35 nmod _ _ 39 . _ PUNCT . _ 8 punct _ _ 40 '' _ PUNCT '' _ 8 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 substantial _ ADJ JJ _ 5 amod _ _ 5 reserves _ NOUN NNS _ 8 nsubjpass _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 set _ VERB VBN _ 3 ccomp _ _ 9 aside _ ADP RB _ 8 compound:prt _ _ 10 for _ ADP IN _ 12 case _ _ 11 possible _ ADJ JJ _ 12 amod _ _ 12 losses _ NOUN NNS _ 8 nmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 junk _ NOUN NN _ 16 compound _ _ 16 bonds _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 for _ ADP IN _ 7 case _ _ 7 instance _ NOUN NN _ 10 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 CenTrust _ PROPN NNP _ 10 nsubj _ _ 10 added _ VERB VBD _ 0 root _ _ 11 $ _ SYM $ _ 10 dobj _ _ 12 22.5 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 to _ ADP TO _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 general _ ADJ JJ _ 17 amod _ _ 17 reserves _ NOUN NNS _ 10 nmod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Paul _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 regulators _ NOUN NNS _ 8 nsubj _ _ 6 should _ AUX MD _ 8 aux _ _ 7 instead _ ADV RB _ 8 advmod _ _ 8 move _ VERB VB _ 3 ccomp _ _ 9 ahead _ ADV RB _ 8 advmod _ _ 10 with _ SCONJ IN _ 11 mark _ _ 11 approving _ VERB VBG _ 8 advcl _ _ 12 CenTrust _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 request _ NOUN NN _ 11 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 sell _ VERB VB _ 14 acl _ _ 17 63 _ NUM CD _ 16 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 71 _ NUM CD _ 21 nummod _ _ 21 branches _ NOUN NNS _ 17 nmod _ _ 22 to _ ADP TO _ 25 case _ _ 23 Great _ PROPN NNP _ 25 compound _ _ 24 Western _ PROPN NNP _ 25 compound _ _ 25 Bank _ PROPN NNP _ 16 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 28 det _ _ 28 unit _ NOUN NN _ 25 appos _ _ 29 of _ ADP IN _ 33 case _ _ 30 Great _ PROPN NNP _ 33 compound _ _ 31 Western _ PROPN NNP _ 33 compound _ _ 32 Financial _ PROPN NNP _ 33 compound _ _ 33 Corp. _ PROPN NNP _ 28 nmod _ _ 34 based _ VERB VBN _ 25 acl _ _ 35 in _ ADP IN _ 37 case _ _ 36 Beverly _ PROPN NNP _ 37 compound _ _ 37 Hills _ PROPN NNP _ 34 nmod _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 Calif _ PROPN NNP _ 37 appos _ _ 40 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 branch _ NOUN NN _ 3 compound _ _ 3 sale _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 centerpiece _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 CenTrust _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 strategy _ NOUN NN _ 6 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 transform _ VERB VB _ 10 acl _ _ 13 itself _ PRON PRP _ 12 dobj _ _ 14 into _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 traditional _ ADJ JJ _ 17 amod _ _ 17 S&L _ NOUN NN _ 12 nmod _ _ 18 from _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 high-flying _ ADJ JJ _ 21 amod _ _ 21 institution _ NOUN NN _ 12 nmod _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 relied _ VERB VBD _ 21 acl:relcl _ _ 24 heavily _ ADV RB _ 23 advmod _ _ 25 on _ ADP IN _ 27 case _ _ 26 securities _ NOUN NNS _ 27 compound _ _ 27 trading _ NOUN NN _ 23 nmod _ _ 28 for _ ADP IN _ 29 case _ _ 29 profits _ NOUN NNS _ 23 nmod _ _ 30 , _ PUNCT , _ 6 punct _ _ 31 according _ VERB VBG _ 34 case _ _ 32 to _ ADP TO _ 31 mwe _ _ 33 Mr. _ PROPN NNP _ 34 compound _ _ 34 Paul _ PROPN NNP _ 6 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 Most _ ADJ JJS _ 2 amod _ _ 2 analysts _ NOUN NNS _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 thrift _ NOUN NN _ 5 compound _ _ 5 executives _ NOUN NNS _ 2 conj _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 decision _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 proposed _ ADJ VBN _ 13 amod _ _ 13 transaction _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 17 nsubjpass _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 announced _ VERB VBN _ 13 acl:relcl _ _ 18 in _ ADP IN _ 19 case _ _ 19 July _ PROPN NNP _ 17 nmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 long _ ADV RB _ 23 advmod _ _ 22 before _ ADP RB _ 23 case _ _ 23 now _ ADV RB _ 7 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Many _ ADJ JJ _ 2 nsubj _ _ 2 interpret _ VERB VB _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 delay _ NOUN NN _ 2 dobj _ _ 5 as _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 indication _ NOUN NN _ 2 nmod _ _ 8 that _ SCONJ WDT _ 11 mark _ _ 9 regulators _ NOUN NNS _ 11 nsubj _ _ 10 are _ VERB VBP _ 11 cop _ _ 11 skeptical _ ADJ JJ _ 7 ccomp _ _ 12 about _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 proposal _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Branches _ NOUN NNS _ 6 nsubjpass _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 deposits _ NOUN NNS _ 1 conj _ _ 4 can _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 sold _ VERB VBN _ 0 root _ _ 7 at _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 premium _ NOUN NN _ 6 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 event _ NOUN NN _ 6 nmod _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 regulators _ NOUN NNS _ 15 nsubj _ _ 15 take _ VERB VBP _ 12 ccomp _ _ 16 over _ ADP RP _ 15 compound:prt _ _ 17 an _ DET DT _ 18 det _ _ 18 institution _ NOUN NN _ 15 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 CenTrust _ PROPN NNP _ 5 nsubj _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 however _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 touts _ VERB VBZ _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 branch _ NOUN NN _ 8 compound _ _ 8 sale _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 saying _ VERB VBG _ 5 advcl _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 would _ AUX MD _ 13 aux _ _ 13 bring _ VERB VB _ 10 ccomp _ _ 14 in _ ADP IN _ 13 advmod _ _ 15 $ _ SYM $ _ 13 dobj _ _ 16 150 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 reduce _ VERB VB _ 13 conj _ _ 20 the _ DET DT _ 21 det _ _ 21 thrift _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 assets _ NOUN NNS _ 19 dobj _ _ 24 to _ ADP TO _ 25 case _ _ 25 $ _ SYM $ _ 19 nmod _ _ 26 6.7 _ NUM CD _ 27 compound _ _ 27 billion _ NUM CD _ 25 nummod _ _ 28 from _ ADP IN _ 29 case _ _ 29 $ _ SYM $ _ 19 nmod _ _ 30 9 _ NUM CD _ 31 compound _ _ 31 billion _ NUM CD _ 29 nummod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 sale _ NOUN NN _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 give _ VERB VB _ 2 ccomp _ _ 7 it _ PRON PRP _ 6 iobj _ _ 8 positive _ ADJ JJ _ 10 amod _ _ 9 tangible _ ADJ JJ _ 10 amod _ _ 10 capital _ NOUN NN _ 6 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 82 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 1.2 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 12 conj _ _ 20 of _ ADP IN _ 21 case _ _ 21 assets _ NOUN NNS _ 19 nmod _ _ 22 , _ PUNCT , _ 12 punct _ _ 23 from _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 negative _ ADJ JJ _ 26 amod _ _ 26 $ _ SYM $ _ 6 nmod _ _ 27 33 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 as _ ADP IN _ 31 case _ _ 30 of _ ADP IN _ 31 case _ _ 31 Sept. _ PROPN NNP _ 6 nmod _ _ 32 30 _ NUM CD _ 31 nummod _ _ 33 , _ PUNCT , _ 6 punct _ _ 34 thus _ ADV RB _ 35 advmod _ _ 35 bringing _ VERB VBG _ 6 advcl _ _ 36 CenTrust _ PROPN NNP _ 37 nsubj _ _ 37 close _ ADV VB _ 35 xcomp _ _ 38 to _ ADP TO _ 40 case _ _ 39 regulatory _ ADJ JJ _ 40 amod _ _ 40 standards _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 2 punct _ _ 1 CenTrust _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 branch _ NOUN NN _ 5 compound _ _ 5 sale _ NOUN NN _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 reduce _ VERB VB _ 2 ccomp _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 large _ ADJ JJ _ 13 amod _ _ 13 amount _ NOUN NN _ 8 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 good _ ADJ JJ _ 16 amod _ _ 16 will _ NOUN NN _ 13 nmod _ _ 17 by _ ADP IN _ 19 case _ _ 18 about _ ADV RB _ 19 advmod _ _ 19 $ _ SYM $ _ 8 nmod _ _ 20 180 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Critics _ NOUN NNS _ 5 nsubj _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 however _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 say _ VERB VBP _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 branch _ NOUN NN _ 8 compound _ _ 8 sale _ NOUN NN _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 make _ VERB VB _ 5 ccomp _ _ 11 CenTrust _ PROPN NNP _ 13 nsubj _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 dependent _ ADJ JJ _ 10 xcomp _ _ 14 than _ ADP IN _ 15 case _ _ 15 ever _ ADV RB _ 13 advcl _ _ 16 on _ ADP IN _ 18 case _ _ 17 brokered _ ADJ JJ _ 18 amod _ _ 18 deposits _ NOUN NNS _ 13 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 junk _ NOUN NN _ 21 compound _ _ 21 bonds _ NOUN NNS _ 18 conj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Paul _ PROPN NNP _ 3 nsubj _ _ 3 counters _ NOUN NNS _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 intends _ VERB VBZ _ 3 ccomp _ _ 7 to _ PART TO _ 9 mark _ _ 8 further _ ADV JJ _ 9 advmod _ _ 9 pare _ VERB VB _ 6 xcomp _ _ 10 the _ DET DT _ 11 det _ _ 11 size _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 CenTrust _ PROPN NNP _ 11 nmod _ _ 14 by _ SCONJ IN _ 16 mark _ _ 15 not _ ADV RB _ 16 neg _ _ 16 renewing _ VERB VBG _ 9 advcl _ _ 17 more _ ADJ JJR _ 19 advmod _ _ 18 than _ ADP IN _ 17 mwe _ _ 19 $ _ SYM $ _ 16 dobj _ _ 20 1 _ NUM CD _ 21 compound _ _ 21 billion _ NUM CD _ 19 nummod _ _ 22 of _ ADP IN _ 24 case _ _ 23 brokered _ ADJ JJ _ 24 amod _ _ 24 certificates _ NOUN NNS _ 19 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 deposit _ NOUN NN _ 24 nmod _ _ 27 when _ ADV WRB _ 29 advmod _ _ 28 they _ PRON PRP _ 29 nsubj _ _ 29 come _ VERB VBP _ 16 advcl _ _ 30 due _ ADJ RB _ 29 xcomp _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 thrift _ NOUN NN _ 5 nsubj _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 working _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 unload _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 junk-bond _ ADJ NN _ 10 amod _ _ 10 portfolio _ NOUN NN _ 7 dobj _ _ 11 by _ SCONJ IN _ 12 mark _ _ 12 continuing _ VERB VBG _ 7 advcl _ _ 13 to _ PART TO _ 14 mark _ _ 14 sell _ VERB VB _ 12 xcomp _ _ 15 off _ ADP RP _ 14 compound:prt _ _ 16 the _ DET DT _ 17 det _ _ 17 bonds _ NOUN NNS _ 14 dobj _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 and _ CONJ CC _ 5 cc _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 plans _ VERB VBZ _ 5 conj _ _ 22 to _ PART TO _ 24 mark _ _ 23 eventually _ ADV RB _ 24 advmod _ _ 24 place _ VERB VB _ 21 xcomp _ _ 25 some _ DET DT _ 24 dobj _ _ 26 of _ ADP IN _ 27 case _ _ 27 them _ PRON PRP _ 25 nmod _ _ 28 in _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 separate _ ADJ JJ _ 31 amod _ _ 31 affiliate _ NOUN NN _ 24 nmod _ _ 32 , _ PUNCT , _ 24 punct _ _ 33 as _ SCONJ IN _ 34 mark _ _ 34 required _ VERB VBN _ 24 advcl _ _ 35 under _ ADP IN _ 39 case _ _ 36 the _ DET DT _ 39 det _ _ 37 new _ ADJ JJ _ 39 amod _ _ 38 thrift _ NOUN NN _ 39 compound _ _ 39 law _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 5 punct _ _ 1 On _ ADP IN _ 5 case _ _ 2 a _ DET DT _ 5 det _ _ 3 recent _ ADJ JJ _ 5 amod _ _ 4 Saturday _ PROPN NNP _ 5 compound _ _ 5 night _ NOUN NN _ 21 nmod _ _ 6 , _ PUNCT , _ 21 punct _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 midst _ NOUN NN _ 21 nmod _ _ 10 of _ ADP IN _ 17 case _ _ 11 West _ PROPN NNP _ 12 compound _ _ 12 Germany _ PROPN NNP _ 17 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 most _ ADJ RBS _ 15 dep _ _ 15 popular _ ADJ JJ _ 17 amod _ _ 16 prime-time _ NOUN NN _ 17 compound _ _ 17 show _ NOUN NN _ 9 nmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 a _ DET DT _ 20 det _ _ 20 contestant _ NOUN NN _ 21 nsubj _ _ 21 bet _ VERB VB _ 0 root _ _ 22 the _ DET DT _ 23 det _ _ 23 host _ NOUN NN _ 21 dobj _ _ 24 that _ SCONJ IN _ 27 mark _ _ 25 she _ PRON PRP _ 27 nsubj _ _ 26 could _ AUX MD _ 27 aux _ _ 27 name _ VERB VB _ 21 ccomp _ _ 28 any _ DET DT _ 27 dobj _ _ 29 of _ ADP IN _ 32 case _ _ 30 100 _ NUM CD _ 32 nummod _ _ 31 different _ ADJ JJ _ 32 amod _ _ 32 cheeses _ NOUN NNS _ 28 nmod _ _ 33 after _ ADP IN _ 36 case _ _ 34 just _ ADV RB _ 36 advmod _ _ 35 one _ NUM CD _ 36 nummod _ _ 36 nibble _ NOUN NN _ 27 nmod _ _ 37 , _ PUNCT , _ 27 punct _ _ 38 while _ SCONJ IN _ 39 mark _ _ 39 blindfolded _ ADJ VBN _ 27 advcl _ _ 40 . _ PUNCT . _ 21 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 woman _ NOUN NN _ 3 nsubj _ _ 3 won _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 bet _ NOUN NN _ 3 dobj _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 21 cc _ _ 2 perhaps _ ADV RB _ 5 advmod _ _ 3 even _ ADV RB _ 4 advmod _ _ 4 more _ ADV RBR _ 5 advmod _ _ 5 remarkable _ ADJ JJ _ 21 dep _ _ 6 , _ PUNCT , _ 21 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 three-hour-show _ NOUN JJ _ 21 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 Wetten _ X NNP _ 12 compound _ _ 12 Dass _ X NNP _ 8 appos _ _ 13 '' _ PUNCT '' _ 12 punct _ _ 14 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 15 Make _ PROPN VB _ 17 dep _ _ 16 a _ DET DT _ 17 det _ _ 17 Bet _ PROPN NN _ 12 dep _ _ 18 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 regularly _ ADV RB _ 21 advmod _ _ 21 wins _ VERB VBZ _ 0 root _ _ 22 the _ DET DT _ 24 det _ _ 23 top _ ADJ JJ _ 24 amod _ _ 24 slot _ NOUN NN _ 21 dobj _ _ 25 in _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 27 det _ _ 27 country _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 TV _ NOUN NN _ 30 compound _ _ 30 ratings _ NOUN NNS _ 24 nmod _ _ 31 , _ PUNCT , _ 21 punct _ _ 32 sometimes _ ADV RB _ 33 advmod _ _ 33 drawing _ VERB VBG _ 21 advcl _ _ 34 as _ ADV RB _ 37 advmod _ _ 35 many _ ADJ JJ _ 37 advmod _ _ 36 as _ ADP IN _ 37 advmod _ _ 37 50 _ NUM CD _ 38 nummod _ _ 38 % _ SYM NN _ 33 dobj _ _ 39 of _ ADP IN _ 42 case _ _ 40 West _ ADJ JJ _ 41 amod _ _ 41 German _ ADJ JJ _ 42 amod _ _ 42 households _ NOUN NNS _ 38 nmod _ _ 43 . _ PUNCT . _ 21 punct _ _ 1 As _ SCONJ IN _ 6 mark _ _ 2 the _ DET DT _ 5 det _ _ 3 1992 _ NUM CD _ 5 nummod _ _ 4 economic _ ADJ JJ _ 5 amod _ _ 5 integration _ NOUN NN _ 6 nsubj _ _ 6 approaches _ NOUN NNS _ 13 advcl _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 Europe _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 cultural _ ADJ JJ _ 11 amod _ _ 11 curators _ NOUN NNS _ 13 nsubj _ _ 12 have _ AUX VBP _ 13 aux _ _ 13 taken _ VERB VBN _ 0 root _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 ramparts _ NOUN NNS _ 13 nmod _ _ 17 against _ ADP IN _ 21 case _ _ 18 American _ ADJ JJ _ 21 amod _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 cultural _ ADJ JJ _ 21 amod _ _ 21 imperialism _ NOUN NN _ 13 nmod _ _ 22 , _ PUNCT , _ 13 punct _ _ 23 '' _ PUNCT '' _ 13 punct _ _ 24 threatening _ VERB VBG _ 13 xcomp _ _ 25 to _ PART TO _ 26 mark _ _ 26 impose _ VERB VB _ 24 xcomp _ _ 27 quotas _ NOUN NNS _ 26 dobj _ _ 28 against _ ADP IN _ 31 case _ _ 29 such _ ADJ JJ _ 31 amod _ _ 30 pop _ ADJ NN _ 31 amod _ _ 31 invaders _ NOUN NNS _ 27 nmod _ _ 32 as _ ADP IN _ 34 case _ _ 33 `` _ PUNCT `` _ 34 punct _ _ 34 Dallas _ PROPN NNP _ 31 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 '' _ PUNCT '' _ 34 punct _ _ 37 `` _ PUNCT `` _ 34 punct _ _ 38 Miami _ PROPN NNP _ 39 compound _ _ 39 Vice _ PROPN NNP _ 34 conj _ _ 40 '' _ PUNCT '' _ 34 punct _ _ 41 and _ CONJ CC _ 34 cc _ _ 42 `` _ PUNCT `` _ 34 punct _ _ 43 L.A. _ PROPN NNP _ 44 compound _ _ 44 Law _ PROPN NNP _ 34 conj _ _ 45 . _ PUNCT . _ 13 punct _ _ 46 '' _ PUNCT '' _ 13 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 much _ ADJ RB _ 10 nsubj _ _ 3 of _ SCONJ IN _ 7 mark _ _ 4 what _ PRON WP _ 7 dobj _ _ 5 the _ DET DT _ 6 det _ _ 6 Europeans _ PROPN NNPS _ 7 nsubj _ _ 7 want _ VERB VBP _ 2 acl _ _ 8 to _ PART TO _ 9 mark _ _ 9 protect _ VERB VB _ 7 xcomp _ _ 10 seems _ VERB VBZ _ 0 root _ _ 11 every _ DET DT _ 12 det _ _ 12 bit _ NOUN NN _ 14 dep _ _ 13 as _ ADV IN _ 14 advmod _ _ 14 cheesy _ ADJ JJ _ 10 xcomp _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 what _ PRON WP _ 21 dobj _ _ 17 they _ PRON PRP _ 19 nsubj _ _ 18 are _ AUX VBP _ 19 aux _ _ 19 trying _ VERB VBG _ 14 advcl _ _ 20 to _ PART TO _ 21 mark _ _ 21 keep _ VERB VB _ 19 xcomp _ _ 22 out _ ADP RP _ 21 compound:prt _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 militant _ ADJ JJ _ 4 amod _ _ 4 opposition _ NOUN NN _ 10 nsubj _ _ 5 to _ ADP TO _ 8 case _ _ 6 American _ ADJ JJ _ 8 amod _ _ 7 TV _ NOUN NN _ 8 compound _ _ 8 imports _ NOUN NNS _ 4 nmod _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 come _ VERB VBN _ 0 root _ _ 11 from _ ADP IN _ 13 case _ _ 12 French _ ADJ JJ _ 13 amod _ _ 13 television _ NOUN NN _ 10 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 movie _ NOUN NN _ 16 compound _ _ 16 producers _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 who _ PRON WP _ 20 nsubj _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 demanded _ VERB VBN _ 13 acl:relcl _ _ 21 quotas _ NOUN NNS _ 20 dobj _ _ 22 ensuring _ VERB VBG _ 21 acl _ _ 23 that _ SCONJ IN _ 34 mark _ _ 24 a _ DET DT _ 27 det _ _ 25 full _ ADJ JJ _ 27 amod _ _ 26 60 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 34 nsubjpass _ _ 28 of _ ADP IN _ 32 case _ _ 29 Europe _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 TV _ NOUN NN _ 32 compound _ _ 32 shows _ NOUN NNS _ 27 nmod _ _ 33 be _ AUX VB _ 34 auxpass _ _ 34 produced _ VERB VBN _ 22 ccomp _ _ 35 in _ ADP IN _ 36 case _ _ 36 Europe _ PROPN NNP _ 34 nmod _ _ 37 . _ PUNCT . _ 10 punct _ _ 1 So _ ADV RB _ 2 advmod _ _ 2 far _ ADV RB _ 7 advmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 French _ PROPN NNP _ 7 nsubj _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 failed _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 win _ VERB VB _ 7 xcomp _ _ 10 enough _ ADJ JJ _ 12 amod _ _ 11 broad-based _ ADJ JJ _ 12 amod _ _ 12 support _ NOUN NN _ 9 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 prevail _ VERB VB _ 12 acl _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 glance _ NOUN NN _ 16 nsubj _ _ 3 through _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 television _ NOUN NN _ 6 compound _ _ 6 listings _ NOUN NNS _ 2 nmod _ _ 7 and _ CONJ CC _ 2 cc _ _ 8 a _ DET DT _ 10 det _ _ 9 few _ ADJ JJ _ 10 amod _ _ 10 twists _ NOUN NNS _ 2 conj _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 European _ ADJ JJ _ 15 amod _ _ 14 television _ NOUN NN _ 15 compound _ _ 15 dial _ NOUN NN _ 10 nmod _ _ 16 suggest _ VERB VBP _ 0 root _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 reason _ NOUN NN _ 16 dobj _ _ 19 why _ ADV WRB _ 18 dep _ _ 20 . _ PUNCT . _ 16 punct _ _ 1 While _ SCONJ IN _ 3 mark _ _ 2 there _ PRON EX _ 3 expl _ _ 3 are _ VERB VBP _ 12 advcl _ _ 4 some _ DET DT _ 6 det _ _ 5 popular _ ADJ JJ _ 6 amod _ _ 6 action _ NOUN NN _ 3 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 drama _ NOUN NN _ 9 compound _ _ 9 series _ NOUN NN _ 6 conj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 few _ ADJ JJ _ 12 nsubj _ _ 12 boast _ VERB NN _ 0 root _ _ 13 the _ DET DT _ 15 det _ _ 14 high _ ADJ JJ _ 15 amod _ _ 15 culture _ NOUN NN _ 12 dobj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 classy _ ADJ JJ _ 18 amod _ _ 18 production _ NOUN NN _ 15 conj _ _ 19 values _ VERB NNS _ 18 dep _ _ 20 one _ PRON NN _ 22 nsubj _ _ 21 might _ AUX MD _ 22 aux _ _ 22 expect _ VERB VB _ 15 acl:relcl _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 More _ ADJ RBR _ 4 amod _ _ 2 European _ ADJ JJ _ 4 amod _ _ 3 air _ NOUN NN _ 4 compound _ _ 4 time _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 filled _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 10 case _ _ 8 low-budget _ ADJ JJ _ 10 amod _ _ 9 game _ NOUN NN _ 10 compound _ _ 10 shows _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 variety _ NOUN NN _ 13 compound _ _ 13 hours _ NOUN NNS _ 10 conj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 movies _ NOUN NNS _ 10 conj _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 talk _ NOUN NN _ 18 compound _ _ 18 shows _ NOUN NNS _ 10 conj _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 many _ ADJ JJ _ 25 nsubj _ _ 21 of _ ADP IN _ 22 case _ _ 22 which _ PRON WDT _ 20 nmod _ _ 23 are _ VERB VBP _ 25 cop _ _ 24 authorized _ VERB VBN _ 25 amod _ _ 25 knock-offs _ ADJ NNS _ 10 acl:relcl _ _ 26 of _ ADP IN _ 29 case _ _ 27 their _ PRON PRP$ _ 29 nmod:poss _ _ 28 American _ PROPN JJ _ 29 compound _ _ 29 counterparts _ NOUN NNS _ 25 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 One _ NUM CD _ 10 nsubj _ _ 2 of _ ADP IN _ 9 case _ _ 3 France _ PROPN NNP _ 9 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 most _ ADV RBS _ 6 advmod _ _ 6 popular _ ADJ JJ _ 9 amod _ _ 7 Saturday _ PROPN NNP _ 9 compound _ _ 8 night _ NOUN NN _ 9 compound _ _ 9 programs _ NOUN NNS _ 1 nmod _ _ 10 features _ VERB VBZ _ 0 root _ _ 11 semi-celebrities _ NOUN NNS _ 10 dobj _ _ 12 seeking _ VERB VBG _ 11 acl _ _ 13 out _ ADP RP _ 12 compound:prt _ _ 14 their _ PRON PRP$ _ 16 nmod:poss _ _ 15 grammar-school _ NOUN JJ _ 16 compound _ _ 16 classmates _ NOUN NNS _ 12 dobj _ _ 17 for _ ADP IN _ 19 case _ _ 18 on-air _ ADJ JJ _ 19 amod _ _ 19 reunions _ NOUN NNS _ 12 nmod _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 Flemish _ ADJ JJ _ 4 amod _ _ 3 game _ NOUN NN _ 4 compound _ _ 4 show _ NOUN NN _ 5 nsubj _ _ 5 has _ VERB VBZ _ 0 root _ _ 6 as _ ADV IN _ 8 advmod _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 host _ NOUN NN _ 5 nmod _ _ 9 a _ DET DT _ 10 det _ _ 10 Belgian _ PROPN JJ _ 5 dobj _ _ 11 pretending _ VERB VBG _ 10 acl _ _ 12 to _ PART TO _ 14 mark _ _ 13 be _ VERB VB _ 14 cop _ _ 14 Italian _ ADJ JJ _ 11 xcomp _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 19 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 Italy _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 favorite _ ADJ JJ _ 6 amod _ _ 6 shows _ NOUN NNS _ 1 nmod _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 `` _ PUNCT `` _ 1 punct _ _ 9 Fantastico _ PROPN NNP _ 1 dep _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 '' _ PUNCT '' _ 1 punct _ _ 12 a _ DET DT _ 15 det _ _ 13 tepid _ ADJ JJ _ 15 amod _ _ 14 variety _ NOUN NN _ 15 compound _ _ 15 show _ NOUN NN _ 1 dep _ _ 16 , _ PUNCT , _ 1 punct _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 so _ ADV RB _ 19 advmod _ _ 19 popular _ ADJ JJ _ 0 root _ _ 20 that _ SCONJ IN _ 22 mark _ _ 21 viewers _ NOUN NNS _ 22 nsubj _ _ 22 clamored _ VERB VBN _ 19 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 buy _ VERB VB _ 22 xcomp _ _ 25 a _ DET DT _ 27 det _ _ 26 chocolate _ NOUN NN _ 27 compound _ _ 27 product _ NOUN NN _ 24 dobj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 `` _ PUNCT `` _ 27 punct _ _ 30 Cacao _ PROPN NNP _ 31 compound _ _ 31 Fantastico _ PROPN NNP _ 27 dep _ _ 32 , _ PUNCT , _ 27 punct _ _ 33 '' _ PUNCT '' _ 27 punct _ _ 34 whose _ PRON WP$ _ 35 nmod:poss _ _ 35 praises _ NOUN VBZ _ 37 nsubjpass _ _ 36 were _ AUX VBD _ 37 auxpass _ _ 37 sung _ VERB VBN _ 27 acl:relcl _ _ 38 each _ DET DT _ 39 det _ _ 39 week _ NOUN NN _ 37 nmod:tmod _ _ 40 by _ ADP IN _ 42 case _ _ 41 dancing _ VERB VBG _ 42 amod _ _ 42 showgirls _ NOUN NNS _ 37 nmod _ _ 43 -- _ PUNCT : _ 22 punct _ _ 44 even _ ADV RB _ 50 advmod _ _ 45 though _ SCONJ IN _ 50 mark _ _ 46 the _ DET DT _ 47 det _ _ 47 product _ NOUN NN _ 50 nsubj _ _ 48 did _ AUX VBD _ 50 aux _ _ 49 n't _ PART RB _ 50 neg _ _ 50 exist _ VERB VB _ 22 advcl _ _ 51 . _ PUNCT . _ 19 punct _ _ 1 Topping _ VERB VBG _ 20 dep _ _ 2 the _ DET DT _ 4 det _ _ 3 cheese _ NOUN NN _ 4 compound _ _ 4 stunt _ NOUN NN _ 1 dobj _ _ 5 , _ PUNCT , _ 20 punct _ _ 6 on _ ADP IN _ 9 case _ _ 7 another _ DET DT _ 9 det _ _ 8 typical _ ADJ JJ _ 9 amod _ _ 9 evening _ NOUN NN _ 20 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 fun _ NOUN NN _ 9 nmod _ _ 12 on _ ADP IN _ 15 case _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 Wetten _ X NNP _ 15 compound _ _ 15 Dass _ X NNP _ 9 nmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 '' _ PUNCT '' _ 20 punct _ _ 18 a _ DET DT _ 19 det _ _ 19 contestant _ NOUN NN _ 20 nsubj _ _ 20 won _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 22 det _ _ 22 bet _ NOUN NN _ 20 dobj _ _ 23 with _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 25 det _ _ 25 show _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 host _ NOUN NN _ 22 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Thomas _ PROPN NNP _ 30 compound _ _ 30 Gottschalk _ PROPN NNP _ 27 appos _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 that _ SCONJ IN _ 35 mark _ _ 33 he _ PRON PRP _ 35 nsubj _ _ 34 could _ AUX MD _ 35 aux _ _ 35 identify _ VERB VB _ 22 dep _ _ 36 300 _ NUM CD _ 38 nummod _ _ 37 German _ ADJ JJ _ 38 amod _ _ 38 dialects _ NOUN NNS _ 35 dobj _ _ 39 over _ ADP IN _ 41 case _ _ 40 the _ DET DT _ 41 det _ _ 41 telephone _ NOUN NN _ 35 nmod _ _ 42 . _ PUNCT . _ 20 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 celebrity _ NOUN NN _ 3 compound _ _ 3 guest _ NOUN NN _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 U.S. _ PROPN NNP _ 11 dep _ _ 6 Ambassador _ PROPN NNP _ 5 dep _ _ 7 to _ ADP TO _ 9 case _ _ 8 West _ PROPN NNP _ 9 compound _ _ 9 Germany _ PROPN NNP _ 5 nmod _ _ 10 Richard _ PROPN NNP _ 11 compound _ _ 11 Burt _ PROPN NNP _ 3 appos _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 also _ ADV RB _ 14 advmod _ _ 14 won _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 16 det _ _ 16 bet _ NOUN NN _ 14 dobj _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 someone _ NOUN NN _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 pile _ VERB VB _ 16 ccomp _ _ 21 up _ ADP RP _ 20 compound:prt _ _ 22 $ _ SYM $ _ 24 dep _ _ 23 150 _ NUM CD _ 24 nummod _ _ 24 worth _ NOUN NN _ 20 dobj _ _ 25 of _ ADP IN _ 26 case _ _ 26 quarters _ NOUN NNS _ 24 nmod _ _ 27 on _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 slanted _ ADJ VBN _ 30 amod _ _ 30 coin _ NOUN NN _ 20 nmod _ _ 31 . _ PUNCT . _ 14 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Burt _ PROPN NNP _ 4 nsubj _ _ 3 nonetheless _ ADV RB _ 4 advmod _ _ 4 paid _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 penalty _ NOUN NN _ 4 dobj _ _ 7 as _ SCONJ IN _ 11 mark _ _ 8 if _ SCONJ IN _ 7 mwe _ _ 9 he _ PRON PRP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 lost _ VERB VBN _ 4 advcl _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 agreeing _ VERB VBG _ 4 xcomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 spend _ VERB VB _ 13 xcomp _ _ 16 a _ DET DT _ 17 det _ _ 17 day _ NOUN NN _ 15 nmod:tmod _ _ 18 with _ ADP IN _ 24 case _ _ 19 West _ PROPN JJ _ 24 compound _ _ 20 German _ PROPN JJ _ 24 compound _ _ 21 Foreign _ PROPN NNP _ 24 compound _ _ 22 Minister _ PROPN NNP _ 24 compound _ _ 23 Hans-Dietrich _ PROPN NNP _ 24 compound _ _ 24 Genscher _ PROPN NNP _ 15 nmod _ _ 25 frying _ VERB VBG _ 15 xcomp _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 selling _ VERB VBG _ 25 conj _ _ 28 their _ PRON PRP$ _ 30 nmod:poss _ _ 29 combined _ ADJ JJ _ 30 amod _ _ 30 weight _ NOUN NN _ 25 dobj _ _ 31 in _ ADP IN _ 33 case _ _ 32 potato _ NOUN NN _ 33 compound _ _ 33 pancakes _ NOUN NNS _ 30 nmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 this _ PRON DT _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 18 advcl _ _ 4 like _ ADP IN _ 7 case _ _ 5 pretty _ ADV RB _ 6 advmod _ _ 6 weak _ ADJ JJ _ 7 amod _ _ 7 stuff _ NOUN NN _ 3 nmod _ _ 8 around _ ADP IN _ 9 case _ _ 9 which _ PRON WDT _ 11 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 raise _ VERB VB _ 7 acl:relcl _ _ 12 the _ DET DT _ 14 det _ _ 13 protectionist _ ADJ JJ _ 14 amod _ _ 14 barriers _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 it _ PRON PRP _ 18 nsubj _ _ 17 may _ AUX MD _ 18 aux _ _ 18 be _ VERB VB _ 0 root _ _ 19 because _ SCONJ IN _ 22 mark _ _ 20 these _ DET DT _ 21 det _ _ 21 shows _ NOUN NNS _ 22 nsubj _ _ 22 need _ VERB VBP _ 18 advcl _ _ 23 all _ DET PDT _ 25 det:predet _ _ 24 the _ DET DT _ 25 det _ _ 25 protection _ NOUN NN _ 22 dobj _ _ 26 they _ PRON PRP _ 28 nsubj _ _ 27 can _ AUX MD _ 28 aux _ _ 28 get _ VERB VB _ 25 acl:relcl _ _ 29 . _ PUNCT . _ 18 punct _ _ 1 European _ ADJ JJ _ 2 amod _ _ 2 programs _ NOUN NNS _ 4 nsubj _ _ 3 usually _ ADV RB _ 4 advmod _ _ 4 target _ VERB VBP _ 0 root _ _ 5 only _ ADV RB _ 9 advmod _ _ 6 their _ PRON PRP$ _ 9 nmod:poss _ _ 7 own _ ADJ JJ _ 9 amod _ _ 8 local _ ADJ JJ _ 9 amod _ _ 9 audience _ NOUN NN _ 4 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 often _ ADV RB _ 16 advmod _ _ 13 only _ ADV RB _ 16 advmod _ _ 14 a _ DET DT _ 16 det _ _ 15 small _ ADJ JJ _ 16 amod _ _ 16 portion _ NOUN NN _ 9 conj _ _ 17 of _ ADP IN _ 18 case _ _ 18 that _ PRON DT _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Mega-hits _ NOUN NNS _ 7 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 Germany _ PROPN NNP _ 1 nmod _ _ 4 or _ CONJ CC _ 3 cc _ _ 5 Italy _ PROPN NNP _ 3 conj _ _ 6 rarely _ ADV RB _ 7 advmod _ _ 7 make _ VERB VBP _ 0 root _ _ 8 it _ PRON PRP _ 7 dobj _ _ 9 even _ ADV RB _ 11 advmod _ _ 10 to _ ADP TO _ 11 case _ _ 11 France _ PROPN NNP _ 7 nmod _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 Great _ PROPN NNP _ 14 compound _ _ 14 Britain _ PROPN NNP _ 11 conj _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 and _ CONJ CC _ 7 cc _ _ 17 almost _ ADV RB _ 18 advmod _ _ 18 never _ ADV RB _ 19 neg _ _ 19 show _ VERB VB _ 7 conj _ _ 20 up _ ADP RP _ 19 compound:prt _ _ 21 on _ ADP IN _ 23 case _ _ 22 U.S. _ PROPN NNP _ 23 compound _ _ 23 screens _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Attempts _ NOUN NNS _ 10 nsubj _ _ 2 to _ PART TO _ 3 mark _ _ 3 produce _ VERB VB _ 1 acl _ _ 4 `` _ PUNCT `` _ 7 punct _ _ 5 pan-European _ ADJ JJ _ 7 amod _ _ 6 '' _ PUNCT '' _ 7 punct _ _ 7 programs _ NOUN NNS _ 3 dobj _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 generally _ ADV RB _ 10 advmod _ _ 10 resulted _ VERB VBN _ 0 root _ _ 11 in _ ADP IN _ 12 case _ _ 12 disappointment _ NOUN NN _ 10 nmod _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 annual _ ADJ JJ _ 3 amod _ _ 3 co-production _ NOUN NN _ 25 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 10 det _ _ 6 three-hour-long _ ADJ JJ _ 10 amod _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 Eurovision _ PROPN NNP _ 10 compound _ _ 9 Song _ PROPN NN _ 10 compound _ _ 10 Contest _ PROPN NN _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 13 featuring _ VERB VBG _ 3 acl _ _ 14 soft-rock _ ADJ JJ _ 15 amod _ _ 15 songs _ NOUN NNS _ 13 dobj _ _ 16 from _ ADP IN _ 17 case _ _ 17 each _ DET DT _ 15 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 20 _ NUM CD _ 21 nummod _ _ 20 European _ ADJ JJ _ 21 amod _ _ 21 countries _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 3 punct _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 described _ VERB VBN _ 0 root _ _ 26 as _ ADP IN _ 33 case _ _ 27 the _ DET DT _ 28 det _ _ 28 world _ NOUN NN _ 33 nmod:poss _ _ 29 's _ VERB POS _ 28 case _ _ 30 most _ ADV RBS _ 31 advmod _ _ 31 boring _ ADJ JJ _ 33 amod _ _ 32 TV _ NOUN NN _ 33 compound _ _ 33 show _ NOUN NN _ 25 nmod _ _ 34 . _ PUNCT . _ 25 punct _ _ 1 Another _ DET DT _ 25 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 `` _ PUNCT `` _ 1 punct _ _ 4 Jeux _ X NNP _ 6 compound _ _ 5 Sans _ X NNP _ 6 compound _ _ 6 Frontieres _ X NNP _ 1 dep _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 '' _ PUNCT '' _ 1 punct _ _ 9 where _ ADV WRB _ 15 advmod _ _ 10 villagers _ NOUN NNS _ 15 nsubj _ _ 11 from _ ADP IN _ 14 case _ _ 12 assorted _ ADJ JJ _ 14 amod _ _ 13 European _ ADJ JJ _ 14 amod _ _ 14 countries _ NOUN NNS _ 10 nmod _ _ 15 make _ VERB VBP _ 1 acl:relcl _ _ 16 fools _ NOUN NNS _ 15 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 themselves _ PRON PRP _ 15 nmod _ _ 19 performing _ VERB VBG _ 15 xcomp _ _ 20 pointless _ ADJ JJ _ 21 amod _ _ 21 tasks _ NOUN NNS _ 19 dobj _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 is _ VERB VBZ _ 25 cop _ _ 24 a _ DET DT _ 25 det _ _ 25 hit _ NOUN NN _ 0 root _ _ 26 in _ ADP IN _ 27 case _ _ 27 France _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 25 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 U.S.-made _ ADJ JJ _ 3 amod _ _ 3 imitation _ NOUN NN _ 12 nsubj _ _ 4 under _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 title _ NOUN NN _ 3 nmod _ _ 7 `` _ PUNCT `` _ 6 punct _ _ 8 Almost _ PROPN RB _ 9 compound _ _ 9 Anything _ PROPN NN _ 10 nsubj _ _ 10 Goes _ PROPN VBZ _ 6 dep _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 12 flopped _ VERB VBD _ 0 root _ _ 13 fast _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 most _ ADJ JJS _ 4 amod _ _ 4 part _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 what _ PRON WP _ 8 nsubjpass _ _ 7 's _ AUX VBZ _ 8 auxpass _ _ 8 made _ VERB VBN _ 10 csubj _ _ 9 here _ ADV RB _ 8 advmod _ _ 10 stays _ VERB VBZ _ 0 root _ _ 11 here _ ADV RB _ 10 advmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 and _ CONJ CC _ 16 cc _ _ 14 for _ ADP IN _ 16 case _ _ 15 good _ ADJ JJ _ 16 amod _ _ 16 reason _ NOUN NN _ 10 dep _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 cream _ NOUN NN _ 24 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 British _ ADJ JJ _ 6 amod _ _ 6 crop _ NOUN NN _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 literary _ ADJ JJ _ 10 amod _ _ 10 dramas _ NOUN NN _ 2 appos _ _ 11 that _ PRON WDT _ 13 nsubjpass _ _ 12 are _ AUX VBP _ 13 auxpass _ _ 13 shown _ VERB VBN _ 10 acl:relcl _ _ 14 on _ ADP IN _ 17 case _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 public _ ADJ JJ _ 17 amod _ _ 17 television _ NOUN NN _ 13 nmod _ _ 18 as _ ADP IN _ 21 case _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 Masterpiece _ PROPN NNP _ 21 compound _ _ 21 Theater _ PROPN NNP _ 13 nmod _ _ 22 , _ PUNCT , _ 2 punct _ _ 23 '' _ PUNCT '' _ 2 punct _ _ 24 make _ VERB VB _ 0 root _ _ 25 up _ ADP RP _ 24 compound:prt _ _ 26 a _ DET DT _ 29 det _ _ 27 relatively _ ADV RB _ 28 advmod _ _ 28 small _ ADJ JJ _ 29 amod _ _ 29 part _ NOUN NN _ 24 dobj _ _ 30 of _ ADP IN _ 33 case _ _ 31 British _ ADJ JJ _ 33 amod _ _ 32 air _ NOUN NN _ 33 compound _ _ 33 time _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 24 punct _ _ 1 Most _ ADJ JJS _ 3 amod _ _ 2 British _ ADJ JJ _ 3 amod _ _ 3 programming _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 more _ ADJ JJR _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 an _ DET DT _ 9 det _ _ 8 acquired _ ADJ VBN _ 9 amod _ _ 9 taste _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 instance _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 `` _ PUNCT `` _ 9 punct _ _ 8 One _ NUM CD _ 9 nummod _ _ 9 Man _ NOUN NN _ 2 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 His _ PRON PRP$ _ 12 nmod:poss _ _ 12 Dog _ PROPN NN _ 9 conj _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 '' _ PUNCT '' _ 9 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 herding _ NOUN NN _ 17 compound _ _ 17 contest _ NOUN NN _ 9 dep _ _ 18 among _ ADP IN _ 20 case _ _ 19 sheep _ NOUN NN _ 20 compound _ _ 20 dogs _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 riveting _ ADJ JJ _ 6 dep _ _ 3 to _ ADP TO _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 British _ PROPN NNP _ 6 nmod _ _ 6 are _ VERB VBP _ 0 root _ _ 7 hours _ NOUN NNS _ 6 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 dart-throwing _ NOUN JJ _ 10 compound _ _ 10 championships _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 even _ ADV RB _ 13 advmod _ _ 13 more _ ADJ RBR _ 14 amod _ _ 14 hours _ NOUN NNS _ 7 conj _ _ 15 of _ ADP IN _ 18 case _ _ 16 lawn _ NOUN NN _ 18 compound _ _ 17 bowling _ NOUN NN _ 18 compound _ _ 18 contests _ NOUN NNS _ 14 nmod _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 still _ ADV RB _ 21 advmod _ _ 21 more _ ADJ RBR _ 22 amod _ _ 22 hours _ NOUN NNS _ 7 conj _ _ 23 of _ ADP IN _ 25 case _ _ 24 snooker _ NOUN NN _ 25 compound _ _ 25 marathons _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 European _ ADJ JJ _ 2 amod _ _ 2 drama _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 had _ VERB VBN _ 0 root _ _ 5 better _ ADJ RB _ 11 amod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 though _ SCONJ IN _ 9 mark _ _ 8 still _ ADV RB _ 9 advmod _ _ 9 mixed _ ADJ JJ _ 11 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 fortunes _ NOUN NNS _ 4 dobj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 popular _ ADJ JJ _ 5 amod _ _ 4 such _ ADJ JJ _ 5 amod _ _ 5 shows _ NOUN NNS _ 6 nsubj _ _ 6 focus _ VERB VBP _ 0 root _ _ 7 on _ ADP IN _ 10 case _ _ 8 narrow _ ADJ JJ _ 10 amod _ _ 9 national _ ADJ JJ _ 10 amod _ _ 10 concerns _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 knock-off _ NOUN NN _ 20 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 Dallas _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 9 called _ VERB VBN _ 3 dep _ _ 10 `` _ PUNCT `` _ 11 punct _ _ 11 Chateauvallon _ PROPN NNP _ 9 xcomp _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 set _ VERB VBN _ 9 conj _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 French _ ADJ JJ _ 18 amod _ _ 18 vineyard _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 had _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 good _ ADJ JJ _ 23 amod _ _ 23 run _ NOUN NN _ 20 dobj _ _ 24 in _ ADP IN _ 25 case _ _ 25 France _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 which _ PRON WDT _ 28 nsubj _ _ 28 ended _ VERB VBD _ 23 acl:relcl _ _ 29 after _ SCONJ IN _ 34 mark _ _ 30 the _ DET DT _ 32 det _ _ 31 female _ ADJ JJ _ 32 amod _ _ 32 lead _ NOUN NN _ 34 nsubjpass _ _ 33 was _ AUX VBD _ 34 auxpass _ _ 34 injured _ VERB VBN _ 28 advcl _ _ 35 in _ ADP IN _ 39 case _ _ 36 a _ DET DT _ 39 det _ _ 37 real-life _ ADJ JJ _ 39 amod _ _ 38 auto _ NOUN NN _ 39 compound _ _ 39 accident _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 2 punct _ _ 2 Schwarzwaldklinik _ PROPN NNP _ 27 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 '' _ PUNCT '' _ 2 punct _ _ 5 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 6 Black _ PROPN NNP _ 8 compound _ _ 7 Forest _ PROPN NNP _ 8 compound _ _ 8 Clinic _ PROPN NNP _ 2 appos _ _ 9 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 a _ DET DT _ 12 det _ _ 12 kind _ NOUN NN _ 2 appos _ _ 13 of _ ADP IN _ 18 case _ _ 14 German _ PROPN JJ _ 18 dep _ _ 15 `` _ PUNCT `` _ 18 punct _ _ 16 St _ PROPN NNP _ 18 compound _ _ 17 . _ PUNCT . _ 18 punct _ _ 18 Elsewhere _ PROPN RB _ 12 nmod _ _ 19 '' _ PUNCT '' _ 18 punct _ _ 20 set _ VERB VBN _ 18 acl _ _ 21 in _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 health _ NOUN NN _ 24 compound _ _ 24 spa _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 is _ VERB VBZ _ 27 cop _ _ 27 popular _ ADJ JJ _ 0 root _ _ 28 in _ ADP IN _ 29 case _ _ 29 Germany _ PROPN NNP _ 27 nmod _ _ 30 , _ PUNCT , _ 27 punct _ _ 31 and _ CONJ CC _ 27 cc _ _ 32 has _ AUX VBZ _ 33 aux _ _ 33 spread _ VERB VBN _ 27 conj _ _ 34 into _ ADP IN _ 35 case _ _ 35 France _ PROPN NNP _ 33 nmod _ _ 36 . _ PUNCT . _ 27 punct _ _ 1 Italy _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 most _ ADV RBS _ 4 advmod _ _ 4 popular _ ADJ JJ _ 5 amod _ _ 5 series _ NOUN NN _ 8 nsubj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 drama _ NOUN NN _ 0 root _ _ 9 called _ VERB VBN _ 8 acl _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 La _ X NNP _ 12 compound _ _ 12 Piovra _ X NNP _ 9 xcomp _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 `` _ PUNCT `` _ 12 punct _ _ 17 The _ PROPN DT _ 18 compound _ _ 18 Octopus _ PROPN NNP _ 12 conj _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 '' _ PUNCT '' _ 8 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 chronicles _ VERB VBZ _ 8 acl:relcl _ _ 23 the _ DET DT _ 24 det _ _ 24 fight _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 29 case _ _ 26 an _ DET DT _ 29 det _ _ 27 idealistic _ ADJ JJ _ 29 amod _ _ 28 young _ ADJ JJ _ 29 amod _ _ 29 investigator _ NOUN NN _ 24 nmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 Palermo _ PROPN NNP _ 29 nmod _ _ 32 against _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 Mafia _ PROPN NNP _ 24 nmod _ _ 35 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 front-page _ ADJ JJ _ 4 amod _ _ 4 news _ NOUN NN _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 Italy _ PROPN NNP _ 4 nmod _ _ 7 earlier _ ADV RBR _ 9 advmod _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 4 nmod:tmod _ _ 10 when _ ADV WRB _ 15 advmod _ _ 11 the _ DET DT _ 13 det _ _ 12 fictional _ ADJ JJ _ 13 amod _ _ 13 inspector _ NOUN NN _ 15 nsubjpass _ _ 14 was _ AUX VBD _ 15 auxpass _ _ 15 gunned _ VERB VBN _ 4 advcl _ _ 16 down _ ADP RP _ 15 compound:prt _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 series _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Spain _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 most _ ADV RBS _ 4 advmod _ _ 4 popular _ ADJ JJ _ 5 amod _ _ 5 mini-series _ NOUN NNS _ 10 nsubj _ _ 6 this _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 5 nmod:tmod _ _ 8 was _ VERB VBD _ 10 cop _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 Juncal _ PROPN NNP _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 story _ NOUN NN _ 10 dep _ _ 15 of _ ADP IN _ 18 case _ _ 16 an _ DET DT _ 18 det _ _ 17 aging _ VERB NN _ 18 amod _ _ 18 bullfighter _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 trend _ NOUN NN _ 7 nsubjpass _ _ 4 is _ AUX VBZ _ 7 auxpass _ _ 5 pretty _ ADV RB _ 6 advmod _ _ 6 well _ ADV RB _ 7 advmod _ _ 7 established _ VERB VBN _ 23 ccomp _ _ 8 now _ ADV RB _ 15 advmod _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 local _ ADJ JJ _ 11 amod _ _ 11 programs _ NOUN NNS _ 15 nsubj _ _ 12 are _ VERB VBP _ 15 cop _ _ 13 the _ DET DT _ 15 det _ _ 14 most _ ADV RBS _ 15 advmod _ _ 15 popular _ ADJ JJ _ 7 advcl _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 with _ SCONJ IN _ 20 mark _ _ 18 American _ ADJ JJ _ 19 amod _ _ 19 programs _ NOUN NNS _ 20 dep _ _ 20 second _ ADJ JJ _ 15 advcl _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 Brian _ PROPN NNP _ 25 compound _ _ 25 Wenham _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 29 det _ _ 28 former _ ADJ JJ _ 29 amod _ _ 29 director _ NOUN NN _ 25 appos _ _ 30 of _ ADP IN _ 31 case _ _ 31 programs _ NOUN NNS _ 29 nmod _ _ 32 for _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 British _ PROPN NNP _ 36 compound _ _ 35 Broadcasting _ PROPN NNP _ 36 compound _ _ 36 Corp _ PROPN NNP _ 29 nmod _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 Given _ VERB VBN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 choice _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 everybody _ NOUN NN _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 watch _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 home-produced _ ADJ JJ _ 11 amod _ _ 11 show _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 8 punct _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 frequently _ ADV RB _ 4 advmod _ _ 3 there _ PRON EX _ 4 expl _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 n't _ PART RB _ 4 neg _ _ 6 much _ ADJ JJ _ 7 amod _ _ 7 choice _ ADJ NN _ 4 nsubj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Thus _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Europe _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 begun _ VERB VBN _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 recent _ ADJ JJ _ 8 amod _ _ 8 crusade _ NOUN NN _ 5 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 produce _ VERB VB _ 8 acl _ _ 11 more _ ADJ JJR _ 13 amod _ _ 12 worthy _ ADJ JJ _ 13 amod _ _ 13 shows _ NOUN NNS _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 own _ ADJ JJ _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 programs _ NOUN NNS _ 13 appos _ _ 19 with _ ADP IN _ 21 case _ _ 20 broader _ ADJ JJR _ 21 amod _ _ 21 appeal _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 basically _ ADV RB _ 5 advmod _ _ 5 got _ VERB VBN _ 28 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 start _ VERB VB _ 5 ccomp _ _ 8 from _ ADP IN _ 9 case _ _ 9 scratch _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 to _ PART TO _ 12 mark _ _ 12 train _ VERB VB _ 7 dep _ _ 13 writers _ NOUN NNS _ 12 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 producers _ NOUN NNS _ 13 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 make _ VERB VB _ 12 advcl _ _ 18 shows _ VERB NNS _ 17 dobj _ _ 19 that _ ADP IN _ 23 dobj _ _ 20 other _ ADJ JJ _ 21 amod _ _ 21 people _ NOUN NNS _ 23 nsubj _ _ 22 will _ AUX MD _ 23 aux _ _ 23 want _ VERB VB _ 18 acl:relcl _ _ 24 to _ PART TO _ 25 mark _ _ 25 see _ VERB VB _ 23 xcomp _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 concedes _ VERB VBZ _ 0 root _ _ 29 Colin _ PROPN NNP _ 30 compound _ _ 30 Young _ PROPN NNP _ 28 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 head _ NOUN NN _ 30 appos _ _ 33 of _ ADP IN _ 39 case _ _ 34 Britain _ PROPN NNP _ 39 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 National _ PROPN NNP _ 39 compound _ _ 37 Film _ PROPN NNP _ 39 compound _ _ 38 Theatre _ PROPN NNP _ 39 compound _ _ 39 School _ PROPN NNP _ 32 nmod _ _ 40 . _ PUNCT . _ 28 punct _ _ 1 While _ SCONJ IN _ 6 mark _ _ 2 some _ DET DT _ 6 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 2 nmod _ _ 6 contend _ VERB VBP _ 17 advcl _ _ 7 that _ DET IN _ 11 mark _ _ 8 advertising _ NOUN NN _ 11 nsubj _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 the _ DET DT _ 11 det _ _ 11 bane _ NOUN NN _ 6 ccomp _ _ 12 of _ ADP IN _ 13 case _ _ 13 television _ NOUN NN _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 here _ ADV RB _ 16 advmod _ _ 16 many _ ADJ JJ _ 17 nsubj _ _ 17 believe _ VERB VBP _ 0 root _ _ 18 that _ DET IN _ 21 mark _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 absence _ NOUN NN _ 21 nsubj _ _ 21 is _ VERB VBZ _ 17 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 blame _ VERB VB _ 21 xcomp _ _ 24 for _ ADP IN _ 31 case _ _ 25 the _ DET DT _ 28 det _ _ 26 European _ ADJ JJ _ 28 amod _ _ 27 TV _ NOUN NN _ 28 compound _ _ 28 industry _ NOUN NN _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 sluggish _ ADJ JJ _ 31 amod _ _ 31 development _ NOUN NN _ 23 nmod _ _ 32 . _ PUNCT . _ 17 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 recently _ ADV RB _ 8 advcl _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 national _ ADJ JJ _ 5 amod _ _ 5 governments _ NOUN NNS _ 8 nsubj _ _ 6 in _ ADP IN _ 7 case _ _ 7 Europe _ PROPN NNP _ 5 nmod _ _ 8 controlled _ VERB VBD _ 0 root _ _ 9 most _ ADJ JJS _ 8 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 air _ NOUN NN _ 13 compound _ _ 13 time _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 allowed _ VERB VBD _ 8 conj _ _ 16 little _ ADJ JJ _ 19 amod _ _ 17 or _ CONJ CC _ 16 cc _ _ 18 no _ DET DT _ 16 conj _ _ 19 advertising _ NOUN NN _ 15 dobj _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 Since _ SCONJ IN _ 5 mark _ _ 2 production _ NOUN NN _ 3 compound _ _ 3 costs _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 guaranteed _ VERB VBN _ 10 advcl _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 it _ PRON PRP _ 10 nsubj _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 matter _ NOUN VB _ 0 root _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 program _ NOUN NN _ 17 nsubjpass _ _ 14 could _ AUX MD _ 17 aux _ _ 15 n't _ PART RB _ 17 neg _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 sold _ VERB VBN _ 10 ccomp _ _ 18 abroad _ ADV RB _ 17 advmod _ _ 19 or _ CONJ CC _ 17 cc _ _ 20 put _ VERB VB _ 17 conj _ _ 21 into _ ADP IN _ 22 case _ _ 22 syndication _ NOUN NN _ 20 nmod _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 as _ SCONJ IN _ 28 mark _ _ 25 most _ ADJ JJS _ 27 amod _ _ 26 American _ ADJ JJ _ 27 amod _ _ 27 programs _ NOUN NNS _ 28 nsubj _ _ 28 are _ VERB VBP _ 17 advcl _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 not _ ADV RB _ 3 neg _ _ 3 much _ ADJ JJ _ 4 amod _ _ 4 money _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 spent _ VERB VBN _ 0 root _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 shows _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 either _ ADV RB _ 6 advmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 a _ DET DT _ 14 det _ _ 14 situation _ NOUN NN _ 6 nmod:npmod _ _ 15 that _ PRON WDT _ 16 nsubj _ _ 16 encouraged _ VERB VBD _ 14 acl:relcl _ _ 17 cheap-to-make _ ADJ JJ _ 18 amod _ _ 18 talk _ NOUN NN _ 16 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 game _ NOUN NN _ 21 compound _ _ 21 shows _ NOUN NNS _ 18 conj _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 while _ SCONJ IN _ 24 mark _ _ 24 discouraging _ VERB VBG _ 16 advcl _ _ 25 expensive-to-produce _ ADJ JJ _ 26 amod _ _ 26 dramas _ NOUN NN _ 24 dobj _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Now _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 however _ ADV RB _ 8 advmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 commercial _ ADJ JJ _ 6 amod _ _ 6 channels _ NOUN NNS _ 8 nsubj _ _ 7 are _ AUX VBP _ 8 aux _ _ 8 coming _ VERB VBG _ 0 root _ _ 9 to _ ADP TO _ 12 case _ _ 10 most _ ADJ JJS _ 12 amod _ _ 11 European _ ADJ JJ _ 12 amod _ _ 12 countries _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 at _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 same _ ADJ JJ _ 18 amod _ _ 18 time _ NOUN NN _ 25 nmod _ _ 19 , _ PUNCT , _ 25 punct _ _ 20 satellite _ NOUN NN _ 23 compound _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 cable _ NOUN NN _ 20 conj _ _ 23 technology _ NOUN NN _ 25 nsubj _ _ 24 is _ AUX VBZ _ 25 aux _ _ 25 spreading _ VERB VBG _ 8 conj _ _ 26 rapidly _ ADV RB _ 25 advmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 Just _ ADV RB _ 3 advmod _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 week _ NOUN NN _ 6 nmod:tmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Greece _ PROPN NNP _ 6 nsubj _ _ 6 authorized _ VERB VBD _ 0 root _ _ 7 two _ NUM CD _ 9 nummod _ _ 8 commercial _ ADJ JJ _ 9 amod _ _ 9 channels _ NOUN NNS _ 6 dobj _ _ 10 for _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 first _ ADJ JJ _ 13 amod _ _ 13 time _ NOUN NN _ 6 nmod _ _ 14 ; _ PUNCT : _ 6 punct _ _ 15 Spain _ PROPN NNP _ 17 nsubj _ _ 16 earlier _ ADV RBR _ 17 advmod _ _ 17 began _ VERB VBD _ 6 parataxis _ _ 18 to _ PART TO _ 19 mark _ _ 19 allow _ VERB VB _ 17 xcomp _ _ 20 commercial _ ADJ JJ _ 21 amod _ _ 21 television _ NOUN NN _ 19 dobj _ _ 22 alongside _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 state _ NOUN NN _ 25 compound _ _ 25 channels _ NOUN NNS _ 19 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 result _ NOUN NN _ 8 nsubj _ _ 3 is _ VERB VBZ _ 8 cop _ _ 4 a _ DET DT _ 8 det _ _ 5 new _ ADJ JJ _ 8 amod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 huge _ ADJ JJ _ 5 conj _ _ 8 appetite _ NOUN NN _ 0 root _ _ 9 for _ ADP IN _ 10 case _ _ 10 programming _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 perhaps _ ADV RB _ 5 advmod _ _ 3 to _ ADP TO _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 consternation _ NOUN NN _ 17 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 those _ PRON DT _ 5 nmod _ _ 8 calling _ VERB VBG _ 7 acl _ _ 9 for _ ADP IN _ 10 case _ _ 10 quotas _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 17 punct _ _ 12 most _ ADJ JJS _ 17 nsubj _ _ 13 of _ ADP IN _ 15 case _ _ 14 this _ DET DT _ 15 det _ _ 15 void _ NOUN NN _ 12 nmod _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 likely _ ADJ JJ _ 0 root _ _ 18 to _ PART TO _ 20 mark _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 filled _ VERB VBN _ 17 xcomp _ _ 21 with _ ADP IN _ 27 case _ _ 22 the _ DET DT _ 27 det _ _ 23 cheapest _ ADJ JJS _ 27 amod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 most _ ADV RBS _ 26 advmod _ _ 26 plentiful _ ADJ JJ _ 23 conj _ _ 27 programming _ NOUN NN _ 20 nmod _ _ 28 now _ ADV RB _ 29 advmod _ _ 29 available _ ADJ JJ _ 27 amod _ _ 30 -- _ PUNCT : _ 27 punct _ _ 31 reruns _ NOUN NNS _ 27 dep _ _ 32 -- _ PUNCT : _ 31 punct _ _ 33 usually _ ADV RB _ 35 advmod _ _ 34 of _ ADP IN _ 35 case _ _ 35 shows _ NOUN NNS _ 31 nmod _ _ 36 made _ VERB VBN _ 35 acl _ _ 37 in _ ADP IN _ 39 case _ _ 38 the _ DET DT _ 39 det _ _ 39 U.S. _ PROPN NNP _ 36 nmod _ _ 40 . _ PUNCT . _ 17 punct _ _ 1 Sky _ PROPN NNP _ 2 compound _ _ 2 Channel _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 British-based _ ADJ JJ _ 6 amod _ _ 6 venture _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 12 case _ _ 8 Australian-American _ ADJ JJ _ 12 amod _ _ 9 press _ NOUN NN _ 12 compound _ _ 10 tycoon _ NOUN NN _ 12 compound _ _ 11 Rupert _ PROPN NNP _ 12 compound _ _ 12 Murdoch _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 offers _ VERB VBZ _ 0 root _ _ 15 what _ PRON WP _ 21 nsubj _ _ 16 must _ AUX MD _ 21 aux _ _ 17 be _ VERB VB _ 21 cop _ _ 18 a _ DET DT _ 21 det _ _ 19 baffling _ ADJ JJ _ 21 amod _ _ 20 cultural _ ADJ JJ _ 21 amod _ _ 21 mix _ NOUN NN _ 14 ccomp _ _ 22 to _ ADP TO _ 23 case _ _ 23 most _ ADJ JJS _ 21 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 audience _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 financially _ ADV RB _ 3 advmod _ _ 3 struggling _ VERB VBG _ 4 amod _ _ 4 station _ NOUN NN _ 5 nsubj _ _ 5 offers _ VERB VBZ _ 0 root _ _ 6 programs _ NOUN NNS _ 5 dobj _ _ 7 obviously _ ADV RB _ 8 advmod _ _ 8 made _ VERB VBN _ 6 acl _ _ 9 available _ ADJ JJ _ 8 xcomp _ _ 10 cheaply _ ADV RB _ 8 advmod _ _ 11 from _ ADP IN _ 16 case _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 boss _ NOUN NN _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 ventures _ NOUN NNS _ 6 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 a _ DET DT _ 5 det _ _ 3 Madrid _ PROPN NNP _ 5 compound _ _ 4 hotel _ NOUN NN _ 5 compound _ _ 5 room _ NOUN NN _ 10 nmod _ _ 6 recently _ ADV RB _ 10 advmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 viewer _ NOUN NN _ 10 nsubj _ _ 10 caught _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 end _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 badly _ ADV RB _ 16 advmod _ _ 16 acted _ VERB VBN _ 17 amod _ _ 17 series _ NOUN NN _ 12 nmod _ _ 18 about _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 fishing _ NOUN NN _ 21 compound _ _ 21 boat _ NOUN NN _ 17 nmod _ _ 22 on _ ADP IN _ 27 case _ _ 23 Australia _ PROPN NNP _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 Great _ PROPN NNP _ 27 compound _ _ 26 Barrier _ PROPN NNP _ 27 compound _ _ 27 Reef _ PROPN NN _ 21 nmod _ _ 28 , _ PUNCT , _ 10 punct _ _ 29 only _ ADV RB _ 32 advmod _ _ 30 to _ PART TO _ 32 mark _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 urged _ VERB VBN _ 10 advcl _ _ 33 by _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 British _ ADJ JJ _ 36 amod _ _ 36 announcer _ NOUN NN _ 32 nmod _ _ 37 to _ PART TO _ 39 mark _ _ 38 `` _ PUNCT `` _ 39 punct _ _ 39 stay _ VERB VB _ 32 xcomp _ _ 40 tuned _ VERB VBN _ 39 dep _ _ 41 for _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 further _ ADJ JJ _ 44 amod _ _ 44 adventures _ NOUN NNS _ 39 nmod _ _ 45 of _ ADP IN _ 48 case _ _ 46 Skippy _ PROPN NNP _ 48 compound _ _ 47 the _ DET DT _ 48 det _ _ 48 Kangaroo _ PROPN NNP _ 44 nmod _ _ 49 . _ PUNCT . _ 10 punct _ _ 50 '' _ PUNCT '' _ 10 punct _ _ 1 Lisa _ PROPN NNP _ 2 compound _ _ 2 Grishaw-Mueller _ PROPN NNP _ 20 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 Bonn _ PROPN NNP _ 2 nmod _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Laura _ PROPN NNP _ 7 compound _ _ 7 Colby _ PROPN NNP _ 2 conj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Milan _ PROPN NNP _ 7 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 Tim _ PROPN NNP _ 12 compound _ _ 12 Carrington _ PROPN NNP _ 2 conj _ _ 13 in _ ADP IN _ 14 case _ _ 14 London _ PROPN NNP _ 12 nmod _ _ 15 and _ CONJ CC _ 2 cc _ _ 16 Carlta _ PROPN NNP _ 17 compound _ _ 17 Vitzhum _ PROPN NNP _ 2 conj _ _ 18 in _ ADP IN _ 19 case _ _ 19 Madrid _ PROPN NNP _ 17 nmod _ _ 20 contributed _ VERB VBD _ 0 root _ _ 21 to _ ADP TO _ 23 case _ _ 22 this _ DET DT _ 23 det _ _ 23 article _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 20 punct _ _ 1 British _ PROPN NNP _ 3 compound _ _ 2 Aerospace _ PROPN NNP _ 3 compound _ _ 3 PLC _ PROPN NNP _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 France _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Thomson-CSF _ PROPN NNP _ 8 compound _ _ 8 S.A. _ PROPN NNP _ 3 conj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 they _ PRON PRP _ 12 nsubj _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 nearing _ VERB VBG _ 9 ccomp _ _ 13 an _ DET DT _ 14 det _ _ 14 agreement _ NOUN NN _ 12 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 merge _ VERB VB _ 14 acl _ _ 17 their _ PRON PRP$ _ 19 nmod:poss _ _ 18 guided-missile _ NOUN JJ _ 19 compound _ _ 19 divisions _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 greatly _ ADV RB _ 22 advmod _ _ 22 expanding _ VERB VBG _ 12 advcl _ _ 23 collaboration _ NOUN NN _ 22 dobj _ _ 24 between _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 two _ NUM CD _ 28 nummod _ _ 27 defense _ NOUN NN _ 28 compound _ _ 28 contractors _ NOUN NNS _ 23 nmod _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 50-50 _ ADJ CD _ 4 amod _ _ 3 joint _ ADJ JJ _ 4 amod _ _ 4 venture _ NOUN NN _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 9 nsubjpass _ _ 7 may _ AUX MD _ 9 aux _ _ 8 be _ AUX VB _ 9 auxpass _ _ 9 dubbed _ VERB VBN _ 4 acl:relcl _ _ 10 Eurodynamics _ PROPN NNS _ 9 xcomp _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 would _ AUX MD _ 13 aux _ _ 13 have _ VERB VB _ 0 root _ _ 14 combined _ ADJ VBN _ 16 amod _ _ 15 annual _ ADJ JJ _ 16 amod _ _ 16 sales _ NOUN NNS _ 13 dobj _ _ 17 of _ ADP IN _ 22 case _ _ 18 at _ ADP IN _ 19 case _ _ 19 least _ ADJ JJS _ 22 nmod:npmod _ _ 20 # _ SYM # _ 22 compound _ _ 21 1.4 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 16 nmod _ _ 23 -LRB- _ PUNCT -LRB- _ 24 punct _ _ 24 $ _ SYM $ _ 22 dep _ _ 25 2.17 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 -RRB- _ PUNCT -RRB- _ 24 punct _ _ 28 and _ CONJ CC _ 13 cc _ _ 29 would _ AUX MD _ 37 aux _ _ 30 be _ VERB VB _ 37 cop _ _ 31 among _ ADP IN _ 37 case _ _ 32 the _ DET DT _ 33 det _ _ 33 world _ NOUN NN _ 37 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 largest _ ADJ JJS _ 37 amod _ _ 36 missile _ NOUN NN _ 37 compound _ _ 37 makers _ NOUN NNS _ 13 conj _ _ 38 . _ PUNCT . _ 13 punct _ _ 1 After _ ADP IN _ 3 case _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 13 nmod _ _ 4 of _ ADP IN _ 5 case _ _ 5 talks _ NOUN NNS _ 3 nmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 plans _ NOUN NNS _ 13 nsubj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 venture _ NOUN NN _ 7 nmod _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 sufficiently _ ADV RB _ 13 advmod _ _ 13 advanced _ ADJ VBN _ 0 root _ _ 14 for _ SCONJ IN _ 18 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 companies _ NOUN NNS _ 18 nsubj _ _ 17 to _ PART TO _ 18 mark _ _ 18 seek _ VERB VB _ 13 ccomp _ _ 19 French _ ADJ JJ _ 23 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 British _ ADJ JJ _ 19 conj _ _ 22 government _ NOUN NN _ 23 compound _ _ 23 clearance _ NOUN NN _ 18 dobj _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 companies _ NOUN NNS _ 3 nsubj _ _ 3 hope _ VERB VBP _ 0 root _ _ 4 for _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 final _ ADJ JJ _ 7 amod _ _ 7 agreement _ NOUN NN _ 3 nmod _ _ 8 by _ ADP IN _ 9 case _ _ 9 year-end _ NOUN NN _ 7 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 venture _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 strengthen _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 8 det _ _ 6 rapidly _ ADV RB _ 7 advmod _ _ 7 growing _ VERB VBG _ 8 amod _ _ 8 ties _ NOUN NNS _ 4 dobj _ _ 9 between _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 companies _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 and _ CONJ CC _ 4 cc _ _ 15 help _ VERB VB _ 4 conj _ _ 16 make _ VERB VB _ 15 xcomp _ _ 17 them _ PRON PRP _ 20 nsubj _ _ 18 a _ DET DT _ 20 det _ _ 19 leading _ ADJ VBG _ 20 amod _ _ 20 force _ NOUN NN _ 16 xcomp _ _ 21 in _ ADP IN _ 24 case _ _ 22 European _ ADJ JJ _ 24 amod _ _ 23 defense _ NOUN NN _ 24 compound _ _ 24 contracting _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 months _ NOUN NNS _ 14 nmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 string _ NOUN NN _ 14 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 cross-border _ ADJ JJ _ 9 amod _ _ 9 mergers _ NOUN NNS _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 joint _ ADJ JJ _ 12 amod _ _ 12 ventures _ NOUN NNS _ 9 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 reshaped _ VERB VBN _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 once-balkanized _ ADJ JJ _ 17 amod _ _ 17 world _ NOUN NN _ 14 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 European _ ADJ JJ _ 21 amod _ _ 20 arms _ NOUN NNS _ 21 compound _ _ 21 manufacture _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 Already _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 British _ PROPN NNP _ 4 compound _ _ 4 Aerospace _ PROPN NNP _ 9 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 French _ ADJ NNP _ 7 amod _ _ 7 government-controlled _ ADJ JJ _ 8 amod _ _ 8 Thomson-CSF _ PROPN NNP _ 4 conj _ _ 9 collaborate _ VERB VB _ 0 root _ _ 10 on _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 British _ ADJ JJ _ 14 amod _ _ 13 missile _ NOUN NN _ 14 compound _ _ 14 contract _ NOUN NN _ 9 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 on _ ADP IN _ 21 case _ _ 17 an _ DET DT _ 21 det _ _ 18 air-traffic _ NOUN NN _ 21 compound _ _ 19 control _ NOUN NN _ 21 compound _ _ 20 radar _ NOUN NN _ 21 compound _ _ 21 system _ NOUN NN _ 14 conj _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 Just _ ADV RB _ 3 advmod _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 week _ NOUN NN _ 5 nmod:tmod _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 announced _ VERB VBD _ 0 root _ _ 6 they _ PRON PRP _ 8 nsubj _ _ 7 may _ AUX MD _ 8 aux _ _ 8 make _ VERB VB _ 5 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 joint _ ADJ JJ _ 11 amod _ _ 11 bid _ NOUN NN _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 acl _ _ 14 Ferranti _ PROPN NNP _ 17 compound _ _ 15 International _ PROPN NNP _ 17 compound _ _ 16 Signal _ PROPN NNP _ 17 compound _ _ 17 PLC _ PROPN NNP _ 13 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 23 det _ _ 20 smaller _ ADJ JJR _ 23 amod _ _ 21 British _ ADJ JJ _ 23 amod _ _ 22 defense _ NOUN NN _ 23 compound _ _ 23 contractor _ NOUN NN _ 17 appos _ _ 24 rocked _ VERB VBN _ 23 acl _ _ 25 by _ ADP IN _ 28 case _ _ 26 alleged _ ADJ JJ _ 28 amod _ _ 27 accounting _ NOUN NN _ 28 compound _ _ 28 fraud _ NOUN NN _ 24 nmod _ _ 29 at _ ADP IN _ 32 case _ _ 30 a _ DET DT _ 32 det _ _ 31 U.S. _ PROPN NNP _ 32 compound _ _ 32 unit _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 sudden _ ADJ JJ _ 3 amod _ _ 3 romance _ NOUN NN _ 23 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 British _ PROPN NNP _ 6 compound _ _ 6 Aerospace _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Thomson-CSF _ PROPN NNP _ 6 conj _ _ 9 -- _ PUNCT : _ 6 punct _ _ 10 traditionally _ ADV RB _ 6 advmod _ _ 11 bitter _ ADJ JJ _ 12 amod _ _ 12 competitors _ NOUN NNS _ 6 dep _ _ 13 for _ ADP IN _ 15 case _ _ 14 Middle _ PROPN NNP _ 15 compound _ _ 15 East _ PROPN NNP _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Third _ PROPN NNP _ 20 compound _ _ 18 World _ PROPN NNP _ 20 compound _ _ 19 weapons _ NOUN NNS _ 20 compound _ _ 20 contracts _ NOUN NNS _ 15 conj _ _ 21 -- _ PUNCT : _ 6 punct _ _ 22 is _ AUX VBZ _ 23 aux _ _ 23 stirring _ VERB VBG _ 0 root _ _ 24 controversy _ NOUN NN _ 23 dobj _ _ 25 in _ ADP IN _ 30 case _ _ 26 Western _ PROPN NNP _ 27 compound _ _ 27 Europe _ PROPN NNP _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 defense _ NOUN NN _ 30 compound _ _ 30 industry _ NOUN NN _ 23 nmod _ _ 31 . _ PUNCT . _ 23 punct _ _ 1 Most _ ADV JJS _ 2 advmod _ _ 2 threatened _ VERB VBN _ 0 root _ _ 3 by _ ADP IN _ 7 case _ _ 4 closer _ ADJ JJR _ 7 amod _ _ 5 British _ PROPN JJ _ 7 compound _ _ 6 Aerospace-Thomson _ PROPN NN _ 7 compound _ _ 7 ties _ NOUN NNS _ 2 nmod _ _ 8 would _ AUX MD _ 9 aux _ _ 9 be _ AUX VB _ 2 auxpass _ _ 10 their _ PRON PRP$ _ 13 nmod:poss _ _ 11 respective _ ADJ JJ _ 13 amod _ _ 12 national _ ADJ JJ _ 13 amod _ _ 13 rivals _ NOUN NNS _ 2 nsubjpass _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 including _ VERB VBG _ 17 case _ _ 16 Matra _ PROPN NNP _ 17 compound _ _ 17 S.A. _ PROPN NNP _ 13 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 France _ PROPN NNP _ 17 nmod _ _ 20 and _ CONJ CC _ 17 cc _ _ 21 Britain _ PROPN NNP _ 26 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 General _ PROPN NNP _ 26 compound _ _ 24 Electric _ PROPN NNP _ 26 compound _ _ 25 Co. _ PROPN NNP _ 26 compound _ _ 26 PLC _ PROPN NNP _ 17 conj _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 neither _ CONJ DT _ 3 cc:preconj _ _ 3 Matra _ PROPN NNP _ 17 nsubj _ _ 4 nor _ CONJ CC _ 3 cc _ _ 5 GEC _ PROPN NNP _ 3 conj _ _ 6 -- _ PUNCT : _ 7 punct _ _ 7 unrelated _ ADJ JJ _ 5 dep _ _ 8 to _ ADP TO _ 14 case _ _ 9 Stamford _ PROPN NNP _ 11 amod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 Conn.-based _ ADJ JJ _ 14 amod _ _ 12 General _ PROPN NNP _ 14 compound _ _ 13 Electric _ PROPN NNP _ 14 compound _ _ 14 Co. _ PROPN NNP _ 7 nmod _ _ 15 -- _ PUNCT : _ 7 punct _ _ 16 are _ AUX VBP _ 17 aux _ _ 17 sitting _ VERB VBG _ 0 root _ _ 18 quietly _ ADV RB _ 17 advmod _ _ 19 by _ ADV IN _ 17 advmod _ _ 20 as _ ADV IN _ 23 advmod _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 competitors _ NOUN NNS _ 23 nsubj _ _ 23 join _ VERB VB _ 17 ccomp _ _ 24 forces _ NOUN NNS _ 23 dobj _ _ 25 . _ PUNCT . _ 17 punct _ _ 1 Yesterday _ NOUN NN _ 8 nmod:tmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 a _ DET DT _ 4 det _ _ 4 source _ NOUN NN _ 8 nsubj _ _ 5 close _ ADV RB _ 4 amod _ _ 6 to _ ADP TO _ 7 case _ _ 7 GEC _ PROPN NNP _ 5 nmod _ _ 8 confirmed _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 his _ PRON PRP$ _ 11 nmod:poss _ _ 11 company _ NOUN NN _ 13 nsubj _ _ 12 may _ AUX MD _ 13 aux _ _ 13 join _ VERB VB _ 8 ccomp _ _ 14 the _ DET DT _ 16 det _ _ 15 Ferranti _ PROPN NNP _ 16 compound _ _ 16 fight _ NOUN NN _ 13 dobj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 as _ ADP IN _ 19 case _ _ 19 part _ NOUN NN _ 13 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 possible _ ADJ JJ _ 23 amod _ _ 23 consortium _ NOUN NN _ 19 nmod _ _ 24 that _ PRON WDT _ 26 nsubj _ _ 25 would _ AUX MD _ 26 aux _ _ 26 bid _ VERB VB _ 23 acl:relcl _ _ 27 against _ ADP IN _ 29 case _ _ 28 British _ PROPN NNP _ 29 compound _ _ 29 Aerospace _ PROPN NNP _ 26 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 Thomson-CSF _ PROPN NNP _ 29 conj _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 Companies _ NOUN NNS _ 14 nsubj _ _ 2 with _ ADP IN _ 3 case _ _ 3 which _ PRON WDT _ 6 nmod _ _ 4 GEC _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 had _ VERB VBN _ 1 acl:relcl _ _ 7 talks _ NOUN NNS _ 6 dobj _ _ 8 about _ ADP IN _ 13 case _ _ 9 a _ DET DT _ 13 det _ _ 10 possible _ ADJ JJ _ 13 amod _ _ 11 joint _ ADJ JJ _ 13 amod _ _ 12 Ferranti _ PROPN NNP _ 13 compound _ _ 13 bid _ NOUN NN _ 7 nmod _ _ 14 include _ VERB VBP _ 0 root _ _ 15 Matra _ PROPN NNP _ 14 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Britain _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Dowty _ PROPN NNP _ 21 compound _ _ 20 Group _ PROPN NNP _ 21 compound _ _ 21 PLC _ PROPN NNP _ 15 conj _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 West _ PROPN NNP _ 24 compound _ _ 24 Germany _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 Daimler-Benz _ PROPN NNP _ 27 compound _ _ 27 AG _ PROPN NNP _ 15 conj _ _ 28 , _ PUNCT , _ 15 punct _ _ 29 and _ CONJ CC _ 15 cc _ _ 30 France _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 Dassault _ PROPN NNP _ 33 compound _ _ 33 group _ NOUN NN _ 15 conj _ _ 34 . _ PUNCT . _ 14 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 it _ PRON PRP _ 5 nsubj _ _ 3 may _ AUX MD _ 5 aux _ _ 4 be _ VERB VB _ 5 cop _ _ 5 weeks _ NOUN NNS _ 19 ccomp _ _ 6 before _ SCONJ IN _ 12 mark _ _ 7 GEC _ PROPN NNP _ 12 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 potential _ ADJ JJ _ 11 amod _ _ 11 partners _ NOUN NNS _ 7 conj _ _ 12 decide _ VERB VBP _ 5 advcl _ _ 13 whether _ SCONJ IN _ 15 mark _ _ 14 to _ PART TO _ 15 mark _ _ 15 bid _ VERB VB _ 12 ccomp _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 source _ NOUN NN _ 19 nsubj _ _ 19 indicated _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 GEC _ PROPN NNP _ 2 nsubj _ _ 2 plans _ VERB VBZ _ 0 root _ _ 3 first _ ADV JJ _ 2 advmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 study _ VERB VB _ 2 xcomp _ _ 6 Ferranti _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 financial _ ADJ JJ _ 9 amod _ _ 9 accounts _ NOUN NNS _ 5 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 14 dobj _ _ 12 auditors _ NOUN NNS _ 14 nsubj _ _ 13 recently _ ADV RB _ 14 advmod _ _ 14 said _ VERB VBD _ 9 acl:relcl _ _ 15 included _ VERB VBN _ 14 ccomp _ _ 16 # _ SYM # _ 18 compound _ _ 17 215 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 15 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 fictitious _ ADJ JJ _ 21 amod _ _ 21 contracts _ NOUN NNS _ 18 nmod _ _ 22 at _ ADP IN _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 U.S. _ PROPN NNP _ 25 compound _ _ 25 unit _ NOUN NN _ 21 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 International _ PROPN NNP _ 28 compound _ _ 28 Signal _ PROPN NNP _ 25 appos _ _ 29 & _ CONJ CC _ 28 cc _ _ 30 Control _ PROPN NNP _ 31 compound _ _ 31 Group _ PROPN NNP _ 28 conj _ _ 32 , _ PUNCT , _ 25 punct _ _ 33 with _ ADP IN _ 34 case _ _ 34 which _ PRON WDT _ 36 nmod _ _ 35 Ferranti _ PROPN NNP _ 36 nsubj _ _ 36 merged _ VERB VBD _ 25 acl:relcl _ _ 37 last _ ADJ JJ _ 38 amod _ _ 38 year _ NOUN NN _ 36 nmod:tmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 any _ DET DT _ 5 det _ _ 4 GEC _ PROPN NNP _ 5 compound _ _ 5 bid _ NOUN NN _ 8 nsubjpass _ _ 6 might _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 blocked _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 12 case _ _ 10 British _ ADJ JJ _ 12 amod _ _ 11 antitrust _ ADJ JJ _ 12 amod _ _ 12 regulators _ NOUN NNS _ 8 nmod _ _ 13 ; _ PUNCT : _ 8 punct _ _ 14 Ferranti _ PROPN NNP _ 19 nsubj _ _ 15 is _ VERB VBZ _ 19 cop _ _ 16 GEC _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 main _ ADJ JJ _ 19 amod _ _ 19 competitor _ NOUN NN _ 8 parataxis _ _ 20 on _ ADP IN _ 24 case _ _ 21 several _ ADJ JJ _ 24 amod _ _ 22 key _ ADJ JJ _ 24 amod _ _ 23 defense-electronics _ ADJ NNS _ 24 amod _ _ 24 contracts _ NOUN NNS _ 19 nmod _ _ 25 , _ PUNCT , _ 19 punct _ _ 26 and _ CONJ CC _ 19 cc _ _ 27 its _ PRON PRP$ _ 28 nmod:poss _ _ 28 purchase _ NOUN NN _ 32 nsubj _ _ 29 by _ ADP IN _ 30 case _ _ 30 GEC _ PROPN NNP _ 28 nmod _ _ 31 may _ AUX MD _ 32 aux _ _ 32 heighten _ VERB VB _ 19 conj _ _ 33 British _ PROPN JJ _ 35 compound _ _ 34 Defense _ PROPN NNP _ 35 compound _ _ 35 Ministry _ PROPN NNP _ 36 compound _ _ 36 worries _ NOUN VBZ _ 32 dobj _ _ 37 about _ ADP IN _ 38 case _ _ 38 concentration _ NOUN NN _ 36 nmod _ _ 39 in _ ADP IN _ 44 case _ _ 40 the _ DET DT _ 41 det _ _ 41 country _ NOUN NN _ 44 nmod:poss _ _ 42 's _ PART POS _ 41 case _ _ 43 defense _ NOUN NN _ 44 compound _ _ 44 industry _ NOUN NN _ 38 nmod _ _ 45 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 consortium _ NOUN NN _ 3 compound _ _ 3 bid _ NOUN NN _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 however _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 would _ AUX MD _ 8 aux _ _ 8 diminish _ VERB VB _ 0 root _ _ 9 GEC _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 direct _ ADJ JJ _ 12 amod _ _ 12 role _ NOUN NN _ 8 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 Ferranti _ PROPN NNP _ 12 nmod _ _ 15 and _ CONJ CC _ 8 cc _ _ 16 might _ AUX MD _ 18 aux _ _ 17 consequently _ ADV RB _ 18 advmod _ _ 18 appease _ VERB VB _ 8 conj _ _ 19 ministry _ NOUN NN _ 20 compound _ _ 20 officials _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 British _ PROPN NNP _ 4 compound _ _ 3 Aerospace _ PROPN NNP _ 4 compound _ _ 4 spokeswoman _ NOUN NN _ 5 nsubj _ _ 5 appeared _ VERB VBD _ 0 root _ _ 6 unperturbed _ ADJ JJ _ 5 xcomp _ _ 7 by _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 prospect _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 fight _ NOUN NN _ 9 nmod _ _ 13 with _ ADP IN _ 14 case _ _ 14 GEC _ PROPN NNP _ 12 nmod _ _ 15 for _ ADP IN _ 16 case _ _ 16 Ferranti _ PROPN NNP _ 12 nmod _ _ 17 : _ PUNCT : _ 5 punct _ _ 18 `` _ PUNCT `` _ 29 punct _ _ 19 Competition _ NOUN NN _ 22 nsubj _ _ 20 is _ VERB VBZ _ 22 cop _ _ 21 the _ DET DT _ 22 det _ _ 22 name _ NOUN NN _ 29 ccomp _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 game _ NOUN NN _ 22 nmod _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 '' _ PUNCT '' _ 29 punct _ _ 28 she _ PRON PRP _ 29 nsubj _ _ 29 said _ VERB VBD _ 5 parataxis _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 least _ ADJ JJS _ 3 nmod:npmod _ _ 3 one _ NUM CD _ 6 nummod _ _ 4 potential _ ADJ JJ _ 6 amod _ _ 5 GEC _ PROPN NNP _ 6 compound _ _ 6 partner _ NOUN NN _ 10 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Matra _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 insists _ VERB VBZ _ 0 root _ _ 11 it _ PRON PRP _ 14 nsubj _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 n't _ PART RB _ 14 neg _ _ 14 interested _ ADJ JJ _ 10 ccomp _ _ 15 in _ ADP IN _ 16 case _ _ 16 Ferranti _ PROPN NNP _ 14 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 21 ccomp _ _ 4 nothing _ NOUN NN _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 say _ VERB VB _ 4 acl _ _ 7 about _ ADP IN _ 9 case _ _ 8 this _ DET DT _ 9 det _ _ 9 affair _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 14 nsubj _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 concern _ VERB NN _ 9 acl:relcl _ _ 15 us _ PRON PRP _ 14 dobj _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 '' _ PUNCT '' _ 21 punct _ _ 18 a _ DET DT _ 20 det _ _ 19 Matra _ PROPN NNP _ 20 compound _ _ 20 official _ NOUN NN _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Sunday _ PROPN NNP _ 21 nmod:tmod _ _ 23 . _ PUNCT . _ 21 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 missile _ NOUN NN _ 3 compound _ _ 3 venture _ NOUN NN _ 14 nsubj _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 British _ PROPN NNP _ 8 compound _ _ 7 Aerospace _ PROPN NNP _ 8 compound _ _ 8 spokeswoman _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 14 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 is _ VERB VBZ _ 14 cop _ _ 12 a _ DET DT _ 14 det _ _ 13 needed _ ADJ JJ _ 14 amod _ _ 14 response _ NOUN NN _ 0 root _ _ 15 to _ ADP TO _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 new _ ADJ JJ _ 19 amod _ _ 19 environment _ NOUN NN _ 14 nmod _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 in _ ADP IN _ 23 case _ _ 22 defense _ NOUN NN _ 23 compound _ _ 23 contracting _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 both _ DET DT _ 3 cc:preconj _ _ 3 Thomson _ PROPN NNP _ 14 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 British _ PROPN NNP _ 6 compound _ _ 6 Aerospace _ PROPN NNP _ 3 conj _ _ 7 , _ PUNCT , _ 14 punct _ _ 8 earnings _ NOUN NNS _ 14 nsubj _ _ 9 in _ ADP IN _ 12 case _ _ 10 their _ PRON PRP$ _ 12 nmod:poss _ _ 11 home _ NOUN NN _ 12 compound _ _ 12 markets _ NOUN NNS _ 8 nmod _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 come _ VERB VBN _ 0 root _ _ 15 under _ ADP IN _ 16 case _ _ 16 pressure _ NOUN NN _ 14 nmod _ _ 17 from _ ADP IN _ 21 case _ _ 18 increasingly _ ADV RB _ 19 advmod _ _ 19 tight-fisted _ ADJ JJ _ 21 amod _ _ 20 defense _ NOUN NN _ 21 compound _ _ 21 ministries _ NOUN NNS _ 16 nmod _ _ 22 ; _ PUNCT : _ 14 punct _ _ 23 and _ CONJ CC _ 14 cc _ _ 24 Middle _ PROPN NNP _ 26 compound _ _ 25 East _ PROPN NNP _ 26 compound _ _ 26 sales _ NOUN NNS _ 39 nsubjpass _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 traditional _ ADJ JJ _ 30 amod _ _ 30 mainstay _ NOUN NN _ 26 appos _ _ 31 for _ ADP IN _ 35 case _ _ 32 both _ DET DT _ 33 det _ _ 33 companies _ NOUN NNS _ 35 nmod:poss _ _ 34 ' _ PART POS _ 33 case _ _ 35 exports _ NOUN NNS _ 30 nmod _ _ 36 , _ PUNCT , _ 26 punct _ _ 37 have _ AUX VBP _ 39 aux _ _ 38 been _ AUX VBN _ 39 auxpass _ _ 39 hurt _ VERB VBN _ 14 conj _ _ 40 by _ ADP IN _ 42 case _ _ 41 five _ NUM CD _ 42 nummod _ _ 42 years _ NOUN NNS _ 39 nmod _ _ 43 of _ ADP IN _ 46 case _ _ 44 weak _ ADJ JJ _ 46 amod _ _ 45 oil _ NOUN NN _ 46 compound _ _ 46 prices _ NOUN NNS _ 42 nmod _ _ 47 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 venture _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 importance _ NOUN NN _ 8 nsubj _ _ 5 for _ ADP IN _ 6 case _ _ 6 Thomson _ PROPN NNP _ 4 nmod _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 great _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 Thomson _ PROPN NNP _ 2 nsubj _ _ 2 feels _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 future _ NOUN NN _ 9 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 defense _ NOUN NN _ 8 compound _ _ 8 business _ NOUN NN _ 4 nmod _ _ 9 depends _ VERB VBZ _ 2 ccomp _ _ 10 on _ SCONJ IN _ 11 mark _ _ 11 building _ VERB VBG _ 9 advcl _ _ 12 cooperation _ NOUN NN _ 11 dobj _ _ 13 with _ ADP IN _ 15 case _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 Europeans _ PROPN NNPS _ 12 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 European _ ADJ JJ _ 4 amod _ _ 3 defense _ NOUN NN _ 4 compound _ _ 4 industry _ NOUN NN _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 consolidating _ VERB VBG _ 0 root _ _ 7 ; _ PUNCT : _ 6 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 instance _ NOUN NN _ 17 nmod _ _ 10 , _ PUNCT , _ 17 punct _ _ 11 West _ PROPN NNP _ 12 compound _ _ 12 Germany _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 Siemens _ PROPN NNP _ 15 compound _ _ 15 AG _ PROPN NNP _ 17 nsubj _ _ 16 recently _ ADV RB _ 17 advmod _ _ 17 joined _ VERB VBD _ 6 parataxis _ _ 18 GEC _ PROPN NNP _ 17 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 takeover _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 Britain _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 Plessey _ PROPN NNP _ 26 compound _ _ 26 Co. _ PROPN NNP _ 21 nmod _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 and _ CONJ CC _ 17 cc _ _ 29 Daimler-Benz _ PROPN NNP _ 30 nsubj _ _ 30 agreed _ VERB VBD _ 17 conj _ _ 31 to _ PART TO _ 32 mark _ _ 32 buy _ VERB VB _ 30 xcomp _ _ 33 Messerschmitt-Boelkow _ PROPN NNP _ 37 compound _ _ 34 Blohm _ PROPN NNP _ 37 compound _ _ 35 G.m.b _ PROPN NNP _ 37 compound _ _ 36 . _ PUNCT . _ 37 punct _ _ 37 H _ PROPN NNP _ 32 dobj _ _ 38 . _ PUNCT . _ 37 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 missiles _ NOUN NNS _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 Thomson _ PROPN NNP _ 7 nsubjpass _ _ 5 is _ AUX VBZ _ 7 auxpass _ _ 6 already _ ADV RB _ 7 advmod _ _ 7 overshadowed _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 10 case _ _ 9 British _ PROPN NNP _ 10 compound _ _ 10 Aerospace _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 by _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 home _ NOUN NN _ 15 compound _ _ 15 rival _ NOUN NN _ 10 conj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 France _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Aerospatiale _ PROPN NNP _ 20 compound _ _ 20 S.A. _ PROPN NNP _ 15 appos _ _ 21 ; _ PUNCT : _ 7 punct _ _ 22 to _ PART TO _ 24 mark _ _ 23 better _ ADV JJR _ 24 advmod _ _ 24 compete _ VERB VB _ 31 dep _ _ 25 , _ PUNCT , _ 28 punct _ _ 26 Thomson _ PROPN NNP _ 27 compound _ _ 27 officials _ NOUN NNS _ 28 nsubj _ _ 28 say _ VERB VBP _ 31 parataxis _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 they _ PRON PRP _ 31 nsubj _ _ 31 need _ VERB VBP _ 7 parataxis _ _ 32 a _ DET DT _ 33 det _ _ 33 partnership _ NOUN NN _ 31 dobj _ _ 34 . _ PUNCT . _ 7 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 justify _ VERB VB _ 12 advcl _ _ 3 50-50 _ ADJ CD _ 4 amod _ _ 4 ownership _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 planned _ ADJ JJ _ 8 amod _ _ 8 venture _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 Thomson _ PROPN NNP _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 make _ VERB VB _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 cash _ NOUN NN _ 15 compound _ _ 15 payment _ NOUN NN _ 12 dobj _ _ 16 to _ ADP TO _ 18 case _ _ 17 British _ PROPN NNP _ 18 compound _ _ 18 Aerospace _ PROPN NNP _ 12 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 Annual _ ADJ JJ _ 2 amod _ _ 2 revenue _ NOUN NN _ 13 nsubj _ _ 3 of _ ADP IN _ 8 case _ _ 4 British _ PROPN NNP _ 5 compound _ _ 5 Aerospace _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 missile _ NOUN NN _ 8 compound _ _ 8 business _ NOUN NN _ 2 nmod _ _ 9 is _ VERB VBZ _ 13 cop _ _ 10 about _ ADV IN _ 13 advmod _ _ 11 # _ SYM # _ 13 compound _ _ 12 950 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 18 ccomp _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 Thomson _ PROPN NNP _ 17 compound _ _ 17 spokesman _ NOUN NN _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 British _ PROPN NNP _ 2 compound _ _ 2 Aerospace _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 chief _ ADJ JJ _ 6 amod _ _ 5 missile _ NOUN NN _ 6 compound _ _ 6 products _ NOUN NNS _ 7 nsubj _ _ 7 include _ VERB VBP _ 0 root _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 17-year-old _ ADJ JJ _ 10 amod _ _ 10 family _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 Rapier _ NOUN NNP _ 14 compound _ _ 13 surface-to-air _ ADJ JJ _ 14 amod _ _ 14 missiles _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Thomson _ PROPN NNP _ 3 compound _ _ 2 missile _ NOUN NN _ 3 compound _ _ 3 products _ NOUN NNS _ 14 nsubj _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 with _ ADP IN _ 12 case _ _ 6 about _ ADV IN _ 7 advmod _ _ 7 half _ DET NN _ 12 nummod _ _ 8 British _ PROPN JJ _ 9 compound _ _ 9 Aerospace _ PROPN NN _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 annual _ ADJ JJ _ 12 amod _ _ 12 revenue _ NOUN NN _ 14 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 include _ VERB VBP _ 0 root _ _ 15 the _ DET DT _ 19 det _ _ 16 Crotale _ ADJ JJ _ 19 amod _ _ 17 surface-to-air _ ADJ JJ _ 19 amod _ _ 18 missile _ NOUN NN _ 19 compound _ _ 19 family _ NOUN NN _ 14 dobj _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Interprovincial _ PROPN NNP _ 4 compound _ _ 2 Pipe _ PROPN NNP _ 4 compound _ _ 3 Line _ PROPN NNP _ 4 compound _ _ 4 Co. _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 delay _ VERB VB _ 5 ccomp _ _ 9 a _ DET DT _ 21 det _ _ 10 proposed _ VERB VBN _ 21 amod _ _ 11 two-step _ ADJ JJ _ 21 amod _ _ 12 , _ PUNCT , _ 21 punct _ _ 13 830 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 15 dep _ _ 15 Canadian-dollar _ ADJ NN _ 21 dep _ _ 16 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 17 US$ _ SYM $ _ 21 dep _ _ 18 705.6 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 21 expansion _ NOUN NN _ 8 dobj _ _ 22 of _ ADP IN _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 system _ NOUN NN _ 21 nmod _ _ 25 because _ SCONJ IN _ 33 mark _ _ 26 Canada _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 output _ NOUN NN _ 33 nsubj _ _ 29 of _ ADP IN _ 31 case _ _ 30 crude _ ADJ JJ _ 31 amod _ _ 31 oil _ NOUN NN _ 28 nmod _ _ 32 is _ AUX VBZ _ 33 aux _ _ 33 shrinking _ VERB VBG _ 8 advcl _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 Interprovincial _ PROPN NNP _ 19 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Canada _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 biggest _ ADJ JJS _ 8 amod _ _ 6 oil _ NOUN NN _ 8 compound _ _ 7 pipeline _ NOUN NN _ 8 compound _ _ 8 operator _ NOUN NN _ 1 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 a _ DET DT _ 12 det _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 transporter _ NOUN NN _ 8 conj _ _ 13 of _ ADP IN _ 14 case _ _ 14 crude _ NOUN NN _ 12 nmod _ _ 15 to _ ADP TO _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 12 nmod _ _ 18 , _ PUNCT , _ 1 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 revised _ VERB VBN _ 22 amod _ _ 21 industry _ NOUN NN _ 22 compound _ _ 22 forecasts _ NOUN NNS _ 23 nsubj _ _ 23 indicate _ VERB VBP _ 19 ccomp _ _ 24 that _ SCONJ IN _ 29 mark _ _ 25 Canadian _ ADJ JJ _ 27 amod _ _ 26 oil _ NOUN NN _ 27 compound _ _ 27 output _ NOUN NN _ 29 nsubj _ _ 28 will _ AUX MD _ 29 aux _ _ 29 total _ VERB VB _ 23 ccomp _ _ 30 about _ ADV IN _ 32 advmod _ _ 31 1.64 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 33 nummod _ _ 33 barrels _ NOUN NNS _ 29 dobj _ _ 34 a _ DET DT _ 35 det _ _ 35 day _ NOUN NN _ 33 nmod:npmod _ _ 36 by _ ADP IN _ 37 case _ _ 37 1991 _ NUM CD _ 29 nmod _ _ 38 , _ PUNCT , _ 29 punct _ _ 39 8 _ NUM CD _ 40 nummod _ _ 40 % _ SYM NN _ 41 nmod:npmod _ _ 41 lower _ ADJ JJR _ 29 xcomp _ _ 42 than _ ADP IN _ 45 case _ _ 43 a _ DET DT _ 45 det _ _ 44 previous _ ADJ JJ _ 45 amod _ _ 45 estimate _ NOUN NN _ 41 nmod _ _ 46 . _ PUNCT . _ 19 punct _ _ 1 Canadian _ ADJ JJ _ 3 amod _ _ 2 crude _ NOUN NN _ 3 compound _ _ 3 production _ NOUN NN _ 4 nsubj _ _ 4 averaged _ VERB VBD _ 0 root _ _ 5 about _ ADV IN _ 8 advmod _ _ 6 1.69 _ NUM CD _ 8 nummod _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 barrels _ NOUN NNS _ 4 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 day _ NOUN NN _ 8 nmod:npmod _ _ 11 during _ ADP IN _ 15 case _ _ 12 1989 _ NUM CD _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 first _ ADJ JJ _ 15 amod _ _ 15 half _ NOUN NN _ 4 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 1 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 4 nmod _ _ 20 below _ ADP IN _ 19 case _ _ 21 the _ DET DT _ 23 det _ _ 22 1988 _ NUM CD _ 23 nummod _ _ 23 level _ NOUN NN _ 19 dep _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 capability _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 existing _ ADJ VBG _ 6 amod _ _ 6 fields _ NOUN NNS _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 deliver _ VERB VB _ 3 dep _ _ 9 oil _ NOUN NN _ 8 dobj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 dropping _ VERB VBG _ 33 ccomp _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 '' _ PUNCT '' _ 11 punct _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 oil _ NOUN NN _ 17 compound _ _ 16 exploration _ NOUN NN _ 17 compound _ _ 17 activity _ NOUN NN _ 21 nsubj _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 also _ ADV RB _ 21 advmod _ _ 20 down _ ADV RB _ 21 advmod _ _ 21 dramatically _ ADV RB _ 11 conj _ _ 22 , _ PUNCT , _ 11 punct _ _ 23 as _ SCONJ IN _ 26 mark _ _ 24 many _ ADJ JJ _ 25 amod _ _ 25 producers _ NOUN NNS _ 26 nsubj _ _ 26 shift _ VERB VB _ 11 conj _ _ 27 their _ PRON PRP$ _ 28 nmod:poss _ _ 28 emphasis _ NOUN NN _ 26 dobj _ _ 29 to _ ADP TO _ 31 case _ _ 30 natural _ ADJ JJ _ 31 amod _ _ 31 gas _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 33 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 Ronald _ PROPN NNP _ 35 compound _ _ 35 Watkins _ PROPN NNP _ 33 nsubj _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 vice _ NOUN NN _ 38 compound _ _ 38 president _ NOUN NN _ 35 appos _ _ 39 for _ ADP IN _ 43 case _ _ 40 government _ NOUN NN _ 43 compound _ _ 41 and _ CONJ CC _ 40 cc _ _ 42 industry _ NOUN NN _ 40 conj _ _ 43 relations _ NOUN NNS _ 38 nmod _ _ 44 with _ ADP IN _ 47 case _ _ 45 Interprovincial _ PROPN NNP _ 47 nmod:poss _ _ 46 's _ PART POS _ 45 case _ _ 47 parent _ NOUN NN _ 38 nmod _ _ 48 , _ PUNCT , _ 47 punct _ _ 49 Interhome _ PROPN NNP _ 51 compound _ _ 50 Energy _ PROPN NNP _ 51 compound _ _ 51 Inc _ PROPN NNP _ 47 appos _ _ 52 . _ PUNCT . _ 33 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Watkins _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 volume _ NOUN NN _ 15 nsubj _ _ 5 on _ ADP IN _ 8 case _ _ 6 Interprovincial _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 system _ NOUN NN _ 4 nmod _ _ 9 is _ VERB VBZ _ 15 cop _ _ 10 down _ ADV RB _ 15 advmod _ _ 11 about _ ADV RB _ 13 advmod _ _ 12 2 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 10 nmod:npmod _ _ 14 since _ ADP IN _ 15 case _ _ 15 January _ PROPN NNP _ 3 ccomp _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 expected _ VERB VBN _ 15 conj _ _ 19 to _ PART TO _ 20 mark _ _ 20 fall _ VERB VB _ 18 xcomp _ _ 21 further _ ADV RB _ 20 advmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 making _ VERB VBG _ 15 advcl _ _ 24 expansion _ NOUN NN _ 25 nsubj _ _ 25 unnecessary _ ADJ JJ _ 23 xcomp _ _ 26 until _ ADP IN _ 29 case _ _ 27 perhaps _ ADV RB _ 29 advmod _ _ 28 the _ DET DT _ 29 det _ _ 29 mid-1990s _ NOUN NNS _ 25 dep _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 There _ PRON EX _ 6 expl _ _ 3 has _ AUX VBZ _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 a _ DET DT _ 6 det _ _ 6 swing _ NOUN NN _ 18 ccomp _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 pendulum _ NOUN NN _ 6 nmod _ _ 10 back _ ADV RB _ 6 advmod _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 gas _ NOUN NN _ 14 compound _ _ 14 side _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 9 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 Canada _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 oil _ NOUN NN _ 1 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 gas _ NOUN NN _ 8 compound _ _ 8 producers _ NOUN NNS _ 5 conj _ _ 9 say _ VERB VBP _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 outlook _ NOUN NN _ 16 nsubj _ _ 12 for _ ADP IN _ 14 case _ _ 13 natural _ ADJ JJ _ 14 amod _ _ 14 gas _ NOUN NN _ 11 nmod _ _ 15 is _ VERB VBZ _ 16 cop _ _ 16 better _ ADJ JJR _ 9 ccomp _ _ 17 than _ SCONJ IN _ 21 mark _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 is _ VERB VBZ _ 21 cop _ _ 20 for _ ADP IN _ 21 case _ _ 21 oil _ NOUN NN _ 16 ccomp _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 and _ CONJ CC _ 9 cc _ _ 24 have _ AUX VBP _ 25 aux _ _ 25 shifted _ VERB VBN _ 9 conj _ _ 26 their _ PRON PRP$ _ 27 nmod:poss _ _ 27 exploration _ NOUN NN _ 25 dobj _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 development _ NOUN NN _ 30 compound _ _ 30 budgets _ NOUN NNS _ 27 conj _ _ 31 accordingly _ ADV RB _ 25 advmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 number _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 active _ ADJ JJ _ 6 amod _ _ 5 drilling _ NOUN NN _ 6 compound _ _ 6 rigs _ NOUN NNS _ 2 nmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 Canada _ PROPN NNP _ 6 nmod _ _ 9 is _ VERB VBZ _ 42 ccomp _ _ 10 down _ ADV RB _ 9 advmod _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 nmod:npmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 15 det _ _ 15 year _ NOUN NN _ 16 nmod:npmod _ _ 16 ago _ ADV RB _ 10 advcl _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 the _ DET DT _ 20 det _ _ 20 number _ NOUN NN _ 25 nsubj _ _ 21 of _ ADP IN _ 24 case _ _ 22 completed _ VERB VBN _ 24 amod _ _ 23 oil _ NOUN NN _ 24 compound _ _ 24 wells _ NOUN NNS _ 20 nmod _ _ 25 is _ VERB VBZ _ 9 conj _ _ 26 `` _ PUNCT `` _ 25 punct _ _ 27 down _ ADV RB _ 25 advmod _ _ 28 more _ ADJ JJR _ 27 nmod:npmod _ _ 29 than _ ADP IN _ 30 case _ _ 30 that _ PRON DT _ 28 nmod _ _ 31 , _ PUNCT , _ 9 punct _ _ 32 due _ ADJ JJ _ 9 advmod _ _ 33 to _ ADP TO _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 increasing _ VERB VBG _ 36 amod _ _ 36 focus _ NOUN NN _ 32 nmod _ _ 37 on _ ADP IN _ 39 case _ _ 38 gas _ NOUN NN _ 39 compound _ _ 39 exploration _ NOUN NN _ 36 nmod _ _ 40 , _ PUNCT , _ 42 punct _ _ 41 '' _ PUNCT '' _ 42 punct _ _ 42 said _ VERB VBD _ 0 root _ _ 43 Robert _ PROPN NNP _ 44 compound _ _ 44 Feick _ PROPN NNP _ 42 nsubj _ _ 45 , _ PUNCT , _ 44 punct _ _ 46 manager _ NOUN NN _ 44 appos _ _ 47 of _ ADP IN _ 49 case _ _ 48 crude _ ADJ JJ _ 49 amod _ _ 49 oil _ NOUN NN _ 46 nmod _ _ 50 with _ ADP IN _ 55 case _ _ 51 Calgary _ PROPN NNP _ 55 nmod:poss _ _ 52 's _ PART POS _ 51 case _ _ 53 Independent _ PROPN NNP _ 55 compound _ _ 54 Petroleum _ PROPN NNP _ 55 compound _ _ 55 Association _ PROPN NNP _ 46 nmod _ _ 56 of _ ADP IN _ 57 case _ _ 57 Canada _ PROPN NNP _ 55 nmod _ _ 58 , _ PUNCT , _ 55 punct _ _ 59 an _ DET DT _ 61 det _ _ 60 industry _ NOUN NN _ 61 compound _ _ 61 group _ NOUN NN _ 55 appos _ _ 62 . _ PUNCT . _ 42 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Watkins _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 main _ ADJ JJ _ 6 amod _ _ 6 reason _ NOUN NN _ 13 nsubj _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 production _ NOUN NN _ 10 compound _ _ 10 decline _ NOUN NN _ 6 nmod _ _ 11 is _ VERB VBZ _ 13 cop _ _ 12 shrinking _ VERB VBG _ 13 amod _ _ 13 output _ NOUN NN _ 3 ccomp _ _ 14 of _ ADP IN _ 16 case _ _ 15 light _ ADJ JJ _ 16 amod _ _ 16 crude _ NOUN NN _ 13 nmod _ _ 17 from _ ADP IN _ 21 case _ _ 18 mature _ ADJ JJ _ 21 amod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 conventional _ ADJ JJ _ 21 amod _ _ 21 fields _ NOUN NNS _ 13 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 western _ ADJ JJ _ 24 amod _ _ 24 Canada _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 Interprovincial _ PROPN NNP _ 2 nsubj _ _ 2 transports _ VERB VBZ _ 0 root _ _ 3 about _ ADV IN _ 4 advmod _ _ 4 75 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 all _ DET DT _ 8 det _ _ 8 crude _ NOUN NN _ 5 nmod _ _ 9 produced _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 12 case _ _ 11 western _ ADJ JJ _ 12 amod _ _ 12 Canada _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 and _ CONJ CC _ 2 cc _ _ 15 almost _ ADV RB _ 16 advmod _ _ 16 60 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 23 nsubj _ _ 18 of _ ADP IN _ 22 case _ _ 19 Interprovincial _ PROPN NNP _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 total _ ADJ JJ _ 22 amod _ _ 22 volume _ NOUN NN _ 17 nmod _ _ 23 consists _ VERB VBZ _ 2 conj _ _ 24 of _ ADP IN _ 26 case _ _ 25 light _ ADJ JJ _ 26 amod _ _ 26 crude _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 Nearly _ ADV RB _ 2 advmod _ _ 2 all _ DET DT _ 14 nsubjpass _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 crude _ ADJ JJ _ 6 amod _ _ 6 oil _ NOUN NN _ 2 nmod _ _ 7 that _ ADP WDT _ 9 dobj _ _ 8 Canada _ PROPN NNP _ 9 nsubj _ _ 9 exports _ NOUN NNS _ 6 acl:relcl _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 9 nmod _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 transported _ VERB VBN _ 0 root _ _ 15 on _ ADP IN _ 18 case _ _ 16 Interprovincial _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 system _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 whose _ PRON WP$ _ 22 nmod:poss _ _ 21 main _ ADJ JJ _ 22 amod _ _ 22 line _ NOUN NN _ 23 nsubj _ _ 23 runs _ NOUN VBZ _ 18 acl:relcl _ _ 24 from _ ADP IN _ 25 case _ _ 25 Edmonton _ PROPN NNP _ 23 nmod _ _ 26 to _ ADP TO _ 31 case _ _ 27 major _ ADJ JJ _ 31 amod _ _ 28 U.S. _ PROPN NNP _ 31 compound _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 Canadian _ ADJ JJ _ 28 conj _ _ 31 cities _ NOUN NNS _ 23 nmod _ _ 32 in _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 Great _ PROPN NNP _ 36 compound _ _ 35 Lakes _ PROPN NNP _ 36 compound _ _ 36 region _ NOUN NN _ 31 nmod _ _ 37 , _ PUNCT , _ 31 punct _ _ 38 including _ VERB VBG _ 39 case _ _ 39 Chicago _ PROPN NNP _ 31 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Buffalo _ PROPN NNP _ 39 conj _ _ 42 , _ PUNCT , _ 39 punct _ _ 43 Toronto _ PROPN NNP _ 39 conj _ _ 44 and _ CONJ CC _ 39 cc _ _ 45 Montreal _ PROPN NNP _ 39 conj _ _ 46 . _ PUNCT . _ 14 punct _ _ 1 Canada _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 current _ ADJ JJ _ 5 amod _ _ 4 oil _ NOUN NN _ 5 compound _ _ 5 exports _ NOUN NNS _ 9 nsubj _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 5 nmod _ _ 9 total _ VERB JJ _ 26 ccomp _ _ 10 about _ ADV IN _ 11 advmod _ _ 11 600,000 _ NUM CD _ 12 nummod _ _ 12 barrels _ NOUN NNS _ 9 dobj _ _ 13 a _ DET DT _ 14 det _ _ 14 day _ NOUN NN _ 12 nmod:npmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 9.1 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 12 conj _ _ 20 of _ ADP IN _ 24 case _ _ 21 net _ ADJ JJ _ 24 amod _ _ 22 U.S. _ PROPN NNP _ 24 compound _ _ 23 crude _ NOUN NN _ 24 compound _ _ 24 imports _ NOUN NNS _ 19 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 John _ PROPN NNP _ 28 compound _ _ 28 Lichtblau _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 president _ NOUN NN _ 28 appos _ _ 31 of _ ADP IN _ 38 case _ _ 32 the _ DET DT _ 38 det _ _ 33 New _ ADJ NNP _ 34 amod _ _ 34 York-based _ ADJ NNP _ 38 amod _ _ 35 Petroleum _ PROPN NNP _ 38 compound _ _ 36 Industry _ PROPN NNP _ 38 compound _ _ 37 Research _ PROPN NNP _ 38 compound _ _ 38 Foundation _ PROPN NNP _ 30 nmod _ _ 39 . _ PUNCT . _ 26 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 ranks _ VERB VBZ _ 0 root _ _ 3 Canada _ PROPN NNP _ 2 dobj _ _ 4 as _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 fourth-largest _ ADJ JJ _ 7 amod _ _ 7 source _ NOUN NN _ 2 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 imported _ ADJ VBN _ 10 amod _ _ 10 crude _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 behind _ ADP IN _ 14 case _ _ 13 Saudi _ PROPN NNP _ 14 compound _ _ 14 Arabia _ PROPN NNP _ 7 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Nigeria _ PROPN NNP _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 Mexico _ PROPN NNP _ 14 conj _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Lichtblau _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Canada _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 declining _ VERB VBG _ 8 amod _ _ 7 crude _ NOUN JJ _ 8 compound _ _ 8 output _ NOUN NN _ 20 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 combined _ VERB VBN _ 14 case _ _ 11 with _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 fast-shrinking _ ADJ JJ _ 14 amod _ _ 14 output _ NOUN NN _ 8 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 U.S. _ PROPN NNP _ 17 compound _ _ 17 crude _ NOUN NN _ 14 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 will _ AUX MD _ 20 aux _ _ 20 help _ VERB VB _ 3 ccomp _ _ 21 intensify _ VERB VB _ 20 ccomp _ _ 22 U.S. _ PROPN NNP _ 23 compound _ _ 23 reliance _ NOUN NN _ 21 dobj _ _ 24 on _ ADP IN _ 25 case _ _ 25 oil _ NOUN NN _ 23 nmod _ _ 26 from _ ADP IN _ 27 case _ _ 27 overseas _ NOUN RB _ 25 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 particularly _ ADV RB _ 27 advmod _ _ 30 the _ DET DT _ 32 det _ _ 31 Middle _ PROPN NNP _ 32 compound _ _ 32 East _ PROPN NNP _ 27 dep _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 8 nsubj _ _ 3 's _ VERB VBZ _ 8 cop _ _ 4 very _ ADV RB _ 5 advmod _ _ 5 much _ ADV RB _ 8 advmod _ _ 6 a _ DET DT _ 8 det _ _ 7 growing _ VERB VBG _ 8 amod _ _ 8 concern _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 when _ ADV WRB _ 5 advmod _ _ 3 something _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 inevitable _ ADJ JJ _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 you _ PRON PRP _ 8 nsubj _ _ 8 learn _ VERB VBP _ 16 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 live _ VERB VB _ 8 xcomp _ _ 11 with _ ADP IN _ 12 case _ _ 12 it _ PRON PRP _ 10 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Lichtblau _ PROPN NNP _ 3 nsubj _ _ 3 stressed _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 16 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 delay _ NOUN NN _ 16 nsubj _ _ 7 of _ ADP IN _ 11 case _ _ 8 Interprovincial _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 proposed _ VERB VBN _ 11 amod _ _ 11 expansion _ NOUN NN _ 6 nmod _ _ 12 wo _ AUX MD _ 16 aux _ _ 13 n't _ PART RB _ 16 neg _ _ 14 by _ ADP IN _ 15 case _ _ 15 itself _ PRON PRP _ 16 nmod _ _ 16 increase _ VERB VB _ 3 ccomp _ _ 17 U.S. _ PROPN NNP _ 18 compound _ _ 18 dependence _ NOUN NN _ 16 dobj _ _ 19 on _ ADP IN _ 21 case _ _ 20 offshore _ ADJ JJ _ 21 amod _ _ 21 crude _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 however _ ADV RB _ 16 advmod _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 since _ SCONJ IN _ 29 mark _ _ 26 Canadian _ ADJ JJ _ 27 amod _ _ 27 imports _ NOUN NNS _ 29 nsubjpass _ _ 28 are _ AUX VBP _ 29 auxpass _ _ 29 limited _ VERB VBN _ 16 advcl _ _ 30 in _ ADP IN _ 32 case _ _ 31 any _ DET DT _ 32 det _ _ 32 case _ NOUN NN _ 29 nmod _ _ 33 by _ ADP IN _ 37 case _ _ 34 Canada _ PROPN NNP _ 37 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 falling _ VERB VBG _ 37 amod _ _ 37 output _ NOUN NN _ 29 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Under _ ADP IN _ 2 case _ _ 2 terms _ NOUN NNS _ 17 nmod _ _ 3 of _ ADP IN _ 7 case _ _ 4 its _ PRON PRP$ _ 7 nmod:poss _ _ 5 proposed _ VERB VBN _ 7 amod _ _ 6 two-step _ ADJ JJ _ 7 amod _ _ 7 expansion _ NOUN NN _ 2 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 12 nsubj _ _ 10 would _ AUX MD _ 12 aux _ _ 11 have _ AUX VB _ 12 aux _ _ 12 required _ VERB VBN _ 7 acl:relcl _ _ 13 regulatory _ ADJ JJ _ 14 amod _ _ 14 approval _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 Interprovincial _ PROPN NNP _ 17 nsubj _ _ 17 intended _ VERB VBD _ 0 root _ _ 18 to _ PART TO _ 19 mark _ _ 19 add _ VERB VB _ 17 xcomp _ _ 20 200,000 _ NUM CD _ 21 nummod _ _ 21 barrels _ NOUN NNS _ 19 dobj _ _ 22 a _ DET DT _ 23 det _ _ 23 day _ NOUN NN _ 21 nmod:npmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 additional _ ADJ JJ _ 26 amod _ _ 26 capacity _ NOUN NN _ 21 nmod _ _ 27 to _ ADP TO _ 29 case _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 system _ NOUN NN _ 19 nmod _ _ 30 , _ PUNCT , _ 19 punct _ _ 31 beginning _ VERB VBG _ 35 case _ _ 32 with _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 modest _ ADJ JJ _ 35 amod _ _ 35 expansion _ NOUN NN _ 19 advcl _ _ 36 by _ ADP IN _ 37 case _ _ 37 1991 _ NUM CD _ 35 nmod _ _ 38 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 system _ NOUN NN _ 4 nsubj _ _ 3 currently _ ADV RB _ 4 advmod _ _ 4 has _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 capacity _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 1.55 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 barrels _ NOUN NNS _ 6 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 day _ NOUN NN _ 10 nmod:npmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Inland _ PROPN NNP _ 4 compound _ _ 2 Steel _ PROPN NNP _ 4 compound _ _ 3 Industries _ PROPN NNPS _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 that _ SCONJ IN _ 11 mark _ _ 9 third-quarter _ ADJ JJ _ 10 amod _ _ 10 earnings _ NOUN NNS _ 11 nsubj _ _ 11 dropped _ VERB VBD _ 7 ccomp _ _ 12 more _ ADJ JJR _ 14 advmod _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 50 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 dobj _ _ 16 from _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 previous _ ADJ JJ _ 19 amod _ _ 19 quarter _ NOUN NN _ 11 nmod _ _ 20 as _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 result _ NOUN NN _ 11 nmod _ _ 23 of _ ADP IN _ 26 case _ _ 24 reduced _ ADJ VBN _ 26 amod _ _ 25 sales _ NOUN NNS _ 26 compound _ _ 26 volume _ NOUN NN _ 22 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 increased _ ADJ VBD _ 29 amod _ _ 29 costs _ NOUN NNS _ 26 conj _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 second _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 steelmaker _ NOUN NN _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 45.3 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.25 _ NUM CD _ 12 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 including _ VERB VBG _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 pretax _ ADJ JJ _ 24 amod _ _ 24 charge _ NOUN NN _ 8 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 24 nmod _ _ 27 17 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 related _ VERB JJ _ 24 amod _ _ 30 to _ ADP TO _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 settlement _ NOUN NN _ 29 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 suit _ NOUN NN _ 32 nmod _ _ 36 , _ PUNCT , _ 8 punct _ _ 37 on _ ADP IN _ 38 case _ _ 38 sales _ NOUN NNS _ 8 nmod _ _ 39 of _ ADP IN _ 42 case _ _ 40 $ _ SYM $ _ 42 dep _ _ 41 1.11 _ NUM CD _ 42 nummod _ _ 42 billion _ NUM CD _ 38 nmod _ _ 43 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 normal _ ADJ JJ _ 6 amod _ _ 5 seasonal _ ADJ JJ _ 6 amod _ _ 6 softness _ NOUN NN _ 15 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 lost _ ADJ VBD _ 9 amod _ _ 9 orders _ NOUN NNS _ 6 conj _ _ 10 caused _ VERB VBN _ 9 acl _ _ 11 by _ ADP IN _ 14 case _ _ 12 prolonged _ ADJ VBN _ 14 amod _ _ 13 labor _ NOUN NN _ 14 compound _ _ 14 talks _ NOUN NNS _ 10 nmod _ _ 15 reduced _ VERB VBD _ 3 ccomp _ _ 16 shipments _ NOUN NNS _ 15 dobj _ _ 17 by _ ADP IN _ 19 case _ _ 18 200,000 _ NUM CD _ 19 nummod _ _ 19 tons _ NOUN NNS _ 15 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 latest _ ADJ JJS _ 23 amod _ _ 23 quarter _ NOUN NN _ 15 nmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 compared _ VERB VBN _ 29 case _ _ 26 with _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 second _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 15 advcl _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 integrated-steel _ NOUN JJ _ 8 compound _ _ 8 business _ NOUN NN _ 10 nsubjpass _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 hurt _ VERB VBN _ 0 root _ _ 11 by _ ADP IN _ 13 case _ _ 12 continued _ ADJ JJ _ 13 amod _ _ 13 increases _ NOUN NNS _ 10 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 materials _ NOUN NNS _ 16 compound _ _ 16 costs _ NOUN NNS _ 13 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 repair _ NOUN NN _ 21 compound _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 maintenance _ NOUN NN _ 18 conj _ _ 21 expenses _ NOUN NNS _ 16 conj _ _ 22 , _ PUNCT , _ 13 punct _ _ 23 as _ ADV RB _ 13 cc _ _ 24 well _ ADV RB _ 23 mwe _ _ 25 as _ ADP IN _ 23 mwe _ _ 26 higher _ ADJ JJR _ 28 amod _ _ 27 labor _ NOUN NN _ 28 compound _ _ 28 costs _ NOUN NNS _ 13 conj _ _ 29 under _ ADP IN _ 32 case _ _ 30 its _ PRON PRP$ _ 32 nmod:poss _ _ 31 new _ ADJ JJ _ 32 amod _ _ 32 contract _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 service-center _ NOUN NN _ 3 compound _ _ 3 business _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 hurt _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 reduced _ ADJ VBN _ 8 amod _ _ 8 margins _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 start-up _ ADJ JJ _ 11 amod _ _ 11 costs _ NOUN NNS _ 8 conj _ _ 12 associated _ VERB VBN _ 11 amod _ _ 13 with _ ADP IN _ 17 case _ _ 14 its _ PRON PRP$ _ 17 nmod:poss _ _ 15 Joseph _ PROPN NNP _ 17 compound _ _ 16 T. _ PROPN NNP _ 17 compound _ _ 17 Ryerson _ PROPN NNP _ 12 nmod _ _ 18 & _ CONJ CC _ 17 cc _ _ 19 Son _ PROPN NNP _ 20 compound _ _ 20 unit _ NOUN NN _ 17 conj _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 beginning _ VERB VBG _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 see _ VERB VB _ 6 xcomp _ _ 9 some _ DET DT _ 11 det _ _ 10 shipping-rate _ ADJ JJ _ 11 amod _ _ 11 improvements _ NOUN NNS _ 8 dobj _ _ 12 in _ ADP IN _ 15 case _ _ 13 both _ CONJ CC _ 15 cc:preconj _ _ 14 the _ DET DT _ 15 det _ _ 15 intergrated-steel _ NOUN NN _ 8 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 steel-service-center _ NOUN NN _ 18 compound _ _ 18 segments _ NOUN NNS _ 15 conj _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 which _ PRON WDT _ 22 nsubj _ _ 21 should _ AUX MD _ 22 aux _ _ 22 result _ VERB VB _ 8 dep _ _ 23 in _ ADP IN _ 25 case _ _ 24 improved _ ADJ VBN _ 25 amod _ _ 25 results _ NOUN NNS _ 22 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 fourth _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Inland _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 third-quarter _ ADJ JJ _ 5 amod _ _ 5 results _ NOUN NNS _ 8 nsubjpass _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 announced _ VERB VBN _ 2 ccomp _ _ 9 later _ ADV RB _ 11 advmod _ _ 10 this _ DET DT _ 11 det _ _ 11 week _ NOUN NN _ 8 nmod:tmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 year-earlier _ ADJ JJ _ 5 amod _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 20 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 when _ ADV WRB _ 13 advmod _ _ 8 the _ DET DT _ 9 det _ _ 9 industry _ NOUN NN _ 13 nsubj _ _ 10 was _ VERB VBD _ 13 cop _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 midst _ NOUN NN _ 5 acl:relcl _ _ 14 of _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 boom _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 company _ NOUN NN _ 20 nsubj _ _ 20 had _ VERB VBD _ 0 root _ _ 21 net _ NOUN NN _ 20 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 61 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 $ _ SYM $ _ 29 dep _ _ 29 1.70 _ NUM CD _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 on _ ADP IN _ 34 case _ _ 34 sales _ NOUN NNS _ 20 nmod _ _ 35 of _ ADP IN _ 36 case _ _ 36 $ _ SYM $ _ 34 nmod _ _ 37 1.02 _ NUM CD _ 38 compound _ _ 38 billion _ NUM CD _ 36 nummod _ _ 39 . _ PUNCT . _ 20 punct _ _ 1 Predicting _ VERB VBG _ 12 csubj _ _ 2 the _ DET DT _ 4 det _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 results _ NOUN NNS _ 1 dobj _ _ 5 of _ ADP IN _ 7 case _ _ 6 computer _ NOUN NN _ 7 compound _ _ 7 firms _ NOUN NNS _ 4 nmod _ _ 8 has _ AUX VBZ _ 12 aux _ _ 9 been _ VERB VBN _ 12 cop _ _ 10 a _ DET DT _ 12 det _ _ 11 tough _ ADJ JJ _ 12 amod _ _ 12 job _ NOUN NN _ 0 root _ _ 13 lately _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 Take _ VERB VB _ 0 root _ _ 2 Microsoft _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 1 dobj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 largest _ ADJ JJS _ 7 amod _ _ 7 maker _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 11 case _ _ 9 personal _ ADJ JJ _ 11 amod _ _ 10 computer _ NOUN NN _ 11 compound _ _ 11 software _ NOUN NN _ 7 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 generally _ ADV RB _ 14 advmod _ _ 14 considered _ VERB VBN _ 7 acl _ _ 15 an _ DET DT _ 17 det _ _ 16 industry _ NOUN NN _ 17 compound _ _ 17 bellwether _ NOUN NN _ 14 dobj _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 stunned _ VERB VBD _ 0 root _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 6 dobj _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 prediction _ NOUN NN _ 6 nmod _ _ 12 that _ DET WDT _ 24 mark _ _ 13 growth _ NOUN NN _ 24 nsubj _ _ 14 in _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 personal _ ADJ JJ _ 18 amod _ _ 17 computer _ NOUN NN _ 18 compound _ _ 18 business _ NOUN NN _ 13 nmod _ _ 19 overall _ ADV RB _ 13 advmod _ _ 20 would _ AUX MD _ 24 aux _ _ 21 be _ VERB VB _ 24 cop _ _ 22 only _ ADV RB _ 23 advmod _ _ 23 10 _ NUM CD _ 24 nummod _ _ 24 % _ SYM NN _ 11 ccomp _ _ 25 in _ ADP IN _ 26 case _ _ 26 1990 _ NUM CD _ 24 nmod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 modest _ ADJ JJ _ 30 amod _ _ 30 increase _ NOUN NN _ 24 dep _ _ 31 when _ ADV WRB _ 32 advmod _ _ 32 compared _ VERB VBN _ 30 acl:relcl _ _ 33 with _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 sizzling _ ADJ VBG _ 36 amod _ _ 36 expansion _ NOUN NN _ 32 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 years _ NOUN NNS _ 36 nmod _ _ 39 past _ ADJ IN _ 38 amod _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 Investors _ NOUN NNS _ 18 nsubj _ _ 2 -- _ PUNCT : _ 3 punct _ _ 3 taking _ VERB VBG _ 18 parataxis _ _ 4 this _ PRON DT _ 3 dobj _ _ 5 as _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 sign _ NOUN NN _ 3 nmod _ _ 8 that _ SCONJ IN _ 16 mark _ _ 9 a _ DET DT _ 12 det _ _ 10 broad _ ADJ JJ _ 12 amod _ _ 11 industry _ NOUN NN _ 12 compound _ _ 12 slump _ NOUN NN _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 offing _ NOUN NN _ 7 ccomp _ _ 17 -- _ PUNCT : _ 3 punct _ _ 18 reacted _ VERB VBN _ 0 root _ _ 19 by _ SCONJ IN _ 20 mark _ _ 20 selling _ VERB VBG _ 18 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 stock _ NOUN NN _ 20 dobj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 lost _ VERB VBD _ 24 acl:relcl _ _ 28 $ _ SYM $ _ 29 dep _ _ 29 3.25 _ NUM CD _ 27 dobj _ _ 30 that _ DET DT _ 31 det _ _ 31 day _ NOUN NN _ 27 nmod:tmod _ _ 32 to _ PART TO _ 33 mark _ _ 33 close _ VERB VB _ 27 advcl _ _ 34 at _ ADP IN _ 36 case _ _ 35 $ _ SYM $ _ 36 dep _ _ 36 52 _ NUM CD _ 33 nmod _ _ 37 in _ ADP IN _ 40 case _ _ 38 national _ ADJ JJ _ 40 amod _ _ 39 over-the-counter _ ADJ JJ _ 40 amod _ _ 40 trading _ NOUN NN _ 33 nmod _ _ 41 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 that _ PRON DT _ 3 nsubj _ _ 3 was _ VERB VBD _ 0 root _ _ 4 all _ DET DT _ 6 advmod _ _ 5 of _ ADP IN _ 6 advmod _ _ 6 three _ NUM CD _ 7 nummod _ _ 7 months _ NOUN NNS _ 8 nmod:npmod _ _ 8 ago _ ADV RB _ 3 advmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 5 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Microsoft _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 5 ccomp _ _ 8 revenue _ NOUN NN _ 7 dobj _ _ 9 for _ ADP IN _ 12 case _ _ 10 its _ PRON PRP$ _ 12 nmod:poss _ _ 11 first _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 8 nmod _ _ 13 ended _ VERB VBN _ 12 acl _ _ 14 Sept. _ PROPN NNP _ 13 nmod:tmod _ _ 15 30 _ NUM CD _ 14 nummod _ _ 16 to _ PART TO _ 17 mark _ _ 17 increase _ VERB VB _ 7 xcomp _ _ 18 34 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 announcement _ NOUN NN _ 3 nsubj _ _ 3 caused _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 stock _ NOUN NN _ 3 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 surge _ VERB VB _ 3 xcomp _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 6.50 _ NUM CD _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 close _ VERB VB _ 9 advcl _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 75.50 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Microsoft _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 surprising _ ADJ JJ _ 4 amod _ _ 4 strength _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 one _ NUM CD _ 7 nummod _ _ 7 example _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 difficulty _ NOUN NN _ 7 nmod _ _ 11 facing _ VERB VBG _ 10 acl _ _ 12 investors _ NOUN NNS _ 11 dobj _ _ 13 looking _ VERB VBG _ 12 acl _ _ 14 for _ ADP IN _ 15 case _ _ 15 reassurances _ NOUN NNS _ 13 nmod _ _ 16 about _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 financial _ ADJ JJ _ 19 amod _ _ 19 health _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 computer _ NOUN NN _ 23 compound _ _ 23 firms _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 hard _ ADJ JJ _ 15 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 know _ VERB VB _ 4 xcomp _ _ 7 what _ PRON WP _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 expect _ VERB VB _ 6 ccomp _ _ 10 at _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 point _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Peter _ PROPN NNP _ 17 compound _ _ 17 Rogers _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 an _ DET DT _ 20 det _ _ 20 analyst _ NOUN NN _ 17 appos _ _ 21 at _ ADP IN _ 23 case _ _ 22 Robertson _ PROPN NNP _ 23 compound _ _ 23 Stephens _ PROPN NNP _ 20 nmod _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Co _ PROPN NNP _ 23 conj _ _ 26 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 industry _ NOUN NN _ 4 nsubj _ _ 4 defies _ VERB VBZ _ 0 root _ _ 5 characterization _ NOUN NN _ 4 dobj _ _ 6 . _ PUNCT . _ 4 punct _ _ 7 '' _ PUNCT '' _ 4 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 illustrate _ VERB VB _ 6 advcl _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Rogers _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 that _ SCONJ IN _ 18 mark _ _ 8 of _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 14 _ NUM CD _ 12 nummod _ _ 11 computer-related _ ADJ JJ _ 12 amod _ _ 12 firms _ NOUN NNS _ 18 nmod _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 follows _ VERB VBZ _ 12 acl:relcl _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 half _ NOUN NN _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 report _ VERB VB _ 6 ccomp _ _ 19 for _ ADP IN _ 23 case _ _ 20 their _ PRON PRP$ _ 23 nmod:poss _ _ 21 most _ ADV RBS _ 22 advmod _ _ 22 recent _ ADJ JJ _ 23 amod _ _ 23 quarter _ NOUN NN _ 18 nmod _ _ 24 earnings _ NOUN NNS _ 18 dobj _ _ 25 below _ ADP IN _ 29 case _ _ 26 last _ ADJ JJ _ 27 amod _ _ 27 year _ NOUN NN _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 results _ NOUN NNS _ 24 nmod _ _ 30 , _ PUNCT , _ 18 punct _ _ 31 and _ CONJ CC _ 18 cc _ _ 32 half _ NOUN NN _ 18 conj _ _ 33 above _ ADP IN _ 35 case _ _ 34 those _ DET DT _ 35 det _ _ 35 results _ NOUN NNS _ 32 dep _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 those _ DET DT _ 3 det _ _ 3 companies _ NOUN NNS _ 10 nmod _ _ 4 expected _ VERB VBN _ 3 acl _ _ 5 to _ PART TO _ 6 mark _ _ 6 have _ VERB VB _ 4 xcomp _ _ 7 a _ DET DT _ 9 det _ _ 8 down _ ADJ JJ _ 9 amod _ _ 9 quarter _ NOUN NN _ 6 dobj _ _ 10 are _ VERB VBP _ 0 root _ _ 11 Hewlett-Packard _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 10 nsubj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 Amdahl _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 12 conj _ _ 16 and _ CONJ CC _ 12 cc _ _ 17 Sun _ PROPN NNP _ 19 compound _ _ 18 Microsystems _ PROPN NNPS _ 19 compound _ _ 19 Inc. _ PROPN NNP _ 12 conj _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 generally _ ADV RB _ 23 advmod _ _ 22 solid _ ADJ JJ _ 23 amod _ _ 23 performers _ NOUN NNS _ 12 appos _ _ 24 in _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 past _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 International _ PROPN NNP _ 4 compound _ _ 2 Business _ PROPN NNP _ 4 compound _ _ 3 Machines _ PROPN NNPS _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 7 nsubjpass _ _ 5 also _ ADV RB _ 7 advmod _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 report _ VERB VB _ 7 xcomp _ _ 10 disappointing _ ADJ JJ _ 11 amod _ _ 11 results _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 Apple _ PROPN NNP _ 3 compound _ _ 2 Computer _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 8 nsubjpass _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 meanwhile _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 expected _ VERB VBN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 show _ VERB VB _ 8 xcomp _ _ 11 improved _ ADJ JJ _ 12 amod _ _ 12 earnings _ NOUN NNS _ 10 dobj _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 period _ NOUN NN _ 10 nmod _ _ 16 ended _ VERB VBN _ 15 acl _ _ 17 Sept _ PROPN NNP _ 16 nmod:tmod _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 Another _ DET DT _ 3 det _ _ 2 contradictory _ ADJ JJ _ 3 amod _ _ 3 message _ NOUN NN _ 4 nsubj _ _ 4 comes _ VERB VBZ _ 0 root _ _ 5 from _ ADP IN _ 7 case _ _ 6 Businessland _ PROPN NNP _ 7 compound _ _ 7 Inc. _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 computer _ NOUN NN _ 11 compound _ _ 11 retailer _ NOUN NN _ 7 appos _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 reported _ VERB VBD _ 0 root _ _ 7 that _ SCONJ IN _ 19 mark _ _ 8 booming _ ADJ JJ _ 9 amod _ _ 9 sales _ NOUN NNS _ 19 nsubj _ _ 10 of _ ADP IN _ 13 case _ _ 11 new _ ADJ JJ _ 13 amod _ _ 12 personal _ ADJ JJ _ 13 amod _ _ 13 computers _ NOUN NNS _ 9 nmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 Apple _ PROPN NNP _ 13 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 IBM _ PROPN NNP _ 15 conj _ _ 18 had _ AUX VBD _ 19 aux _ _ 19 resulted _ VERB VBN _ 6 ccomp _ _ 20 in _ SCONJ IN _ 25 mark _ _ 21 net _ ADJ JJ _ 22 amod _ _ 22 income _ NOUN NN _ 25 nsubj _ _ 23 more _ ADV RBR _ 25 advmod _ _ 24 than _ ADP IN _ 23 case _ _ 25 doubling _ VERB VBG _ 19 advcl _ _ 26 for _ ADP IN _ 29 case _ _ 27 its _ PRON PRP$ _ 29 nmod:poss _ _ 28 fourth _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 25 nmod _ _ 30 ended _ VERB VBD _ 29 acl _ _ 31 June _ PROPN NNP _ 30 nmod:tmod _ _ 32 30 _ NUM CD _ 31 nummod _ _ 33 to _ ADP TO _ 34 case _ _ 34 $ _ SYM $ _ 25 nmod _ _ 35 7.4 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 , _ PUNCT , _ 34 punct _ _ 38 or _ CONJ CC _ 34 cc _ _ 39 23 _ NUM CD _ 40 nummod _ _ 40 cents _ NOUN NNS _ 34 conj _ _ 41 a _ DET DT _ 42 det _ _ 42 share _ NOUN NN _ 40 nmod:npmod _ _ 43 . _ PUNCT . _ 6 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 month _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 however _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Businessland _ PROPN NNP _ 7 nsubj _ _ 7 warned _ VERB VBD _ 0 root _ _ 8 investors _ NOUN NNS _ 7 dobj _ _ 9 that _ SCONJ WDT _ 20 mark _ _ 10 results _ NOUN VBZ _ 20 nsubj _ _ 11 for _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 first _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 10 nmod _ _ 15 ended _ VERB VBN _ 14 acl _ _ 16 Sept. _ PROPN NNP _ 15 nmod:tmod _ _ 17 30 _ NUM CD _ 16 nummod _ _ 18 had _ AUX VBD _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 met _ VERB VBN _ 7 ccomp _ _ 21 expectations _ NOUN NNS _ 20 dobj _ _ 22 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 earnings _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 14 _ NUM CD _ 10 compound _ _ 9 to _ ADP TO _ 10 dep _ _ 10 17 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 6 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 down _ ADV RB _ 11 advmod _ _ 16 from _ ADP IN _ 18 case _ _ 17 25 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 year-earlier _ ADJ JJ _ 24 amod _ _ 24 period _ NOUN NN _ 18 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 earnings _ NOUN NNS _ 4 compound _ _ 4 picture _ NOUN NN _ 5 nsubj _ _ 5 confuses _ VERB VBZ _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 observers _ NOUN NNS _ 8 nsubj _ _ 8 say _ VERB VBP _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 forces _ NOUN NNS _ 22 nsubj _ _ 12 expected _ VERB VBN _ 11 acl _ _ 13 to _ PART TO _ 14 mark _ _ 14 shape _ VERB VB _ 12 xcomp _ _ 15 the _ DET DT _ 16 det _ _ 16 industry _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 coming _ ADJ JJ _ 20 amod _ _ 20 year _ NOUN NN _ 14 nmod _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 clearer _ ADJ JJR _ 8 ccomp _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 Companies _ NOUN NNS _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 continue _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 war _ VERB NN _ 3 xcomp _ _ 6 over _ ADP IN _ 7 case _ _ 7 standards _ NOUN NNS _ 5 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 publishing _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 battle _ NOUN NN _ 10 nsubj _ _ 7 over _ ADP IN _ 8 case _ _ 8 typefaces _ NOUN NNS _ 6 nmod _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 hurting _ VERB VBG _ 0 root _ _ 11 Adobe _ PROPN NNP _ 13 compound _ _ 12 Systems _ PROPN NNPS _ 13 compound _ _ 13 Inc. _ PROPN NNP _ 10 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 16 nsubj _ _ 16 sells _ VERB VBZ _ 13 acl:relcl _ _ 17 software _ NOUN NN _ 16 dobj _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 controls _ VERB VBZ _ 17 acl:relcl _ _ 20 the _ DET DT _ 21 det _ _ 21 image _ NOUN NN _ 19 dobj _ _ 22 produced _ VERB VBN _ 21 acl _ _ 23 by _ ADP IN _ 24 case _ _ 24 printers _ NOUN NNS _ 22 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 displays _ NOUN NNS _ 24 conj _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 recently _ ADV RB _ 5 advcl _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Adobe _ PROPN NNP _ 5 nsubj _ _ 5 had _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 lock _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 7 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 image _ NOUN NN _ 13 compound _ _ 13 software _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 but _ CONJ CC _ 5 cc _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 month _ NOUN NN _ 27 nmod:tmod _ _ 18 Apple _ PROPN NNP _ 27 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Adobe _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 biggest _ ADJ JJS _ 23 amod _ _ 23 customer _ NOUN NN _ 18 appos _ _ 24 , _ PUNCT , _ 18 punct _ _ 25 and _ CONJ CC _ 18 cc _ _ 26 Microsoft _ PROPN NNP _ 18 conj _ _ 27 rebelled _ VERB VBD _ 5 conj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 Now _ ADV RB _ 6 advmod _ _ 2 the _ DET DT _ 4 det _ _ 3 two _ NUM CD _ 4 nummod _ _ 4 firms _ NOUN NNS _ 6 nsubj _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 collaborating _ VERB VBG _ 0 root _ _ 7 on _ ADP IN _ 9 case _ _ 8 an _ DET DT _ 9 det _ _ 9 alternative _ NOUN NN _ 6 nmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 Adobe _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 approach _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 analysts _ NOUN NNS _ 17 nsubj _ _ 17 say _ VERB VBP _ 6 conj _ _ 18 they _ PRON PRP _ 20 nsubj _ _ 19 are _ VERB VBP _ 20 cop _ _ 20 likely _ ADJ JJ _ 17 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 carry _ VERB VB _ 20 xcomp _ _ 23 IBM _ PROPN NNP _ 22 dobj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 the _ DET DT _ 27 det _ _ 26 biggest _ ADJ JJS _ 27 amod _ _ 27 seller _ NOUN NN _ 23 appos _ _ 28 of _ ADP IN _ 30 case _ _ 29 personal _ ADJ JJ _ 30 amod _ _ 30 computers _ NOUN NNS _ 27 nmod _ _ 31 , _ PUNCT , _ 23 punct _ _ 32 along _ ADV IN _ 22 advmod _ _ 33 with _ ADP IN _ 34 case _ _ 34 them _ PRON PRP _ 32 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 short-term _ ADJ JJ _ 3 amod _ _ 3 outlook _ NOUN NN _ 11 nsubj _ _ 4 for _ ADP IN _ 7 case _ _ 5 Adobe _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 business _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 however _ ADV RB _ 11 advmod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 appears _ VERB VBZ _ 0 root _ _ 12 strong _ ADJ JJ _ 11 xcomp _ _ 13 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 beginning _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 ship _ VERB VB _ 4 xcomp _ _ 7 a _ DET DT _ 10 det _ _ 8 new _ ADJ JJ _ 10 amod _ _ 9 software _ NOUN NN _ 10 compound _ _ 10 program _ NOUN NN _ 6 dobj _ _ 11 that _ PRON WDT _ 14 nsubjpass _ _ 12 's _ AUX VBZ _ 14 aux _ _ 13 being _ AUX VBG _ 14 auxpass _ _ 14 heralded _ VERB VBN _ 10 acl:relcl _ _ 15 as _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 boon _ NOUN NN _ 14 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 owners _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 low-end _ ADJ JJ _ 22 amod _ _ 22 printers _ NOUN NNS _ 19 nmod _ _ 23 sold _ VERB VBN _ 22 acl _ _ 24 by _ ADP IN _ 25 case _ _ 25 Apple _ PROPN NNP _ 23 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 program _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 aimed _ VERB VBN _ 0 root _ _ 5 at _ SCONJ IN _ 6 mark _ _ 6 improving _ VERB VBG _ 4 advcl _ _ 7 the _ DET DT _ 8 det _ _ 8 quality _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 printed _ ADJ VBN _ 11 amod _ _ 11 material _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 John _ PROPN NNP _ 2 compound _ _ 2 Warnock _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Adobe _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ NN _ 8 amod _ _ 8 officer _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 17 det _ _ 12 Mountain _ PROPN NNP _ 17 dep _ _ 13 View _ PROPN NNP _ 12 compound _ _ 14 , _ PUNCT , _ 12 punct _ _ 15 Calif. _ PROPN NNP _ 12 dep _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 company _ NOUN NN _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 receiving _ VERB VBG _ 10 ccomp _ _ 21 1,000 _ NUM CD _ 22 nummod _ _ 22 calls _ NOUN VBZ _ 20 dobj _ _ 23 a _ DET DT _ 24 det _ _ 24 day _ NOUN NN _ 22 nmod:npmod _ _ 25 about _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 product _ NOUN NN _ 22 nmod _ _ 28 since _ SCONJ IN _ 31 mark _ _ 29 it _ PRON PRP _ 31 nsubjpass _ _ 30 was _ AUX VBD _ 31 auxpass _ _ 31 demonstrated _ VERB VBN _ 20 advcl _ _ 32 at _ ADP IN _ 36 case _ _ 33 a _ DET DT _ 36 det _ _ 34 computer _ NOUN NN _ 36 compound _ _ 35 publishing _ NOUN NN _ 36 compound _ _ 36 conference _ NOUN NN _ 31 nmod _ _ 37 several _ ADJ JJ _ 38 amod _ _ 38 weeks _ NOUN NNS _ 39 nmod:npmod _ _ 39 ago _ ADV RB _ 31 advmod _ _ 40 . _ PUNCT . _ 10 punct _ _ 1 Meanwhile _ ADV RB _ 18 advmod _ _ 2 , _ PUNCT , _ 18 punct _ _ 3 competition _ NOUN NN _ 18 nsubj _ _ 4 between _ ADP IN _ 7 case _ _ 5 various _ ADJ JJ _ 7 amod _ _ 6 operating _ NOUN VBG _ 7 compound _ _ 7 systems _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 10 nsubj _ _ 10 control _ VERB VBP _ 7 acl:relcl _ _ 11 the _ DET DT _ 13 det _ _ 12 basic _ ADJ JJ _ 13 amod _ _ 13 functions _ NOUN NNS _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 computer _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 spells _ VERB NNS _ 0 root _ _ 19 trouble _ NOUN NN _ 18 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 software _ NOUN NN _ 22 compound _ _ 22 firms _ NOUN NNS _ 19 nmod _ _ 23 generally _ ADV RB _ 22 advmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 creates _ VERB VBZ _ 12 ccomp _ _ 4 uncertainty _ NOUN NN _ 3 dobj _ _ 5 and _ CONJ CC _ 3 cc _ _ 6 usually _ ADV RB _ 7 advmod _ _ 7 slows _ VERB VBZ _ 3 conj _ _ 8 down _ ADP RP _ 7 compound:prt _ _ 9 sales _ NOUN NNS _ 7 dobj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Russ _ PROPN NNP _ 14 compound _ _ 14 Crabs _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 an _ DET DT _ 17 det _ _ 17 analyst _ NOUN NN _ 14 appos _ _ 18 at _ ADP IN _ 21 case _ _ 19 Soundview _ PROPN NNP _ 21 compound _ _ 20 Financial _ PROPN NNP _ 21 compound _ _ 21 Group _ PROPN NNP _ 17 nmod _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Crabs _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 this _ PRON DT _ 11 nsubj _ _ 5 probably _ ADV RB _ 11 advmod _ _ 6 is _ VERB VBZ _ 11 cop _ _ 7 behind _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 expected _ ADJ VBN _ 11 amod _ _ 10 weak _ ADJ JJ _ 11 amod _ _ 11 performance _ NOUN NN _ 3 ccomp _ _ 12 of _ ADP IN _ 14 case _ _ 13 Aldus _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 maker _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 23 case _ _ 18 a _ DET DT _ 23 det _ _ 19 widely _ ADV RB _ 20 advmod _ _ 20 used _ VERB VBN _ 23 amod _ _ 21 computer _ NOUN NN _ 23 compound _ _ 22 publishing _ NOUN NN _ 23 compound _ _ 23 program _ NOUN NN _ 16 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 Aldus _ PROPN NNP _ 2 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 report _ VERB VB _ 2 xcomp _ _ 6 earnings _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 21 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 6 nmod _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 on _ ADP IN _ 13 case _ _ 13 revenues _ NOUN NNS _ 6 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 19.5 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 for _ ADP IN _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 6 nmod _ _ 22 , _ PUNCT , _ 6 punct _ _ 23 compared _ VERB VBN _ 25 case _ _ 24 with _ ADP IN _ 25 case _ _ 25 earnings _ NOUN NNS _ 6 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 30 _ NUM CD _ 28 nummod _ _ 28 cents _ NOUN NNS _ 25 nmod _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 on _ ADP IN _ 32 case _ _ 32 revenue _ NOUN NN _ 25 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 20.4 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 32 nmod _ _ 36 in _ ADP IN _ 39 case _ _ 37 the _ DET DT _ 39 det _ _ 38 year-earlier _ ADJ JJ _ 39 amod _ _ 39 period _ NOUN NN _ 25 nmod _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 Aldus _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 6 nsubjpass _ _ 3 could _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 reached _ VERB VBN _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 comment _ NOUN NN _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 other _ ADJ JJ _ 4 amod _ _ 4 hand _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 battle _ NOUN NN _ 12 nsubjpass _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 bus _ NOUN NN _ 7 nmod _ _ 11 is _ AUX VBZ _ 12 auxpass _ _ 12 expected _ VERB VBN _ 0 root _ _ 13 to _ PART TO _ 14 mark _ _ 14 grow _ VERB VB _ 12 xcomp _ _ 15 increasingly _ ADV RB _ 16 advmod _ _ 16 irrelevant _ ADJ JJ _ 14 xcomp _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 bus _ NOUN NN _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 data _ NOUN NNS _ 6 compound _ _ 6 highway _ NOUN NN _ 0 root _ _ 7 within _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 computer _ NOUN NN _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 IBM _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 backing _ VERB VBG _ 0 root _ _ 4 one _ NUM CD _ 5 nummod _ _ 5 type _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 bus _ NOUN NN _ 5 nmod _ _ 8 called _ VERB VBN _ 5 acl _ _ 9 microchannel _ ADJ NN _ 8 xcomp _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 while _ SCONJ IN _ 27 mark _ _ 12 the _ DET DT _ 17 det _ _ 13 nine _ NUM CD _ 17 nummod _ _ 14 other _ ADJ JJ _ 17 amod _ _ 15 leading _ ADJ VBG _ 17 amod _ _ 16 computer _ NOUN NN _ 17 compound _ _ 17 makers _ NOUN NNS _ 27 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 including _ VERB VBG _ 20 case _ _ 20 H-P _ PROPN NN _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Compaq _ PROPN NNP _ 24 compound _ _ 23 Computer _ PROPN NNP _ 24 compound _ _ 24 Corp. _ PROPN NNP _ 20 conj _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 have _ AUX VBP _ 27 aux _ _ 27 chosen _ VERB VBN _ 3 advcl _ _ 28 another _ DET DT _ 29 det _ _ 29 method _ NOUN NN _ 27 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Users _ NOUN NNS _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 care _ VERB VB _ 11 ccomp _ _ 6 about _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 bus _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Daniel _ PROPN NNP _ 13 compound _ _ 13 Benton _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 an _ DET DT _ 16 det _ _ 16 analyst _ NOUN NN _ 13 appos _ _ 17 at _ ADP IN _ 18 case _ _ 18 Goldman _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Sachs _ PROPN NNP _ 18 conj _ _ 21 & _ CONJ CC _ 18 cc _ _ 22 Co _ PROPN NNP _ 18 conj _ _ 23 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Apple _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 family _ NOUN NN _ 13 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 Macintosh _ PROPN NNP _ 8 compound _ _ 8 computers _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 for _ ADP IN _ 11 case _ _ 11 instance _ NOUN NN _ 13 nmod _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 uses _ VERB VBZ _ 2 dep _ _ 14 four _ NUM CD _ 16 nummod _ _ 15 different _ ADJ JJ _ 16 amod _ _ 16 buses _ NOUN NNS _ 13 dobj _ _ 17 `` _ PUNCT `` _ 13 punct _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 no _ DET DT _ 20 neg _ _ 20 one _ NOUN NN _ 21 nsubj _ _ 21 seems _ VERB VBZ _ 13 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 mind _ VERB VB _ 21 xcomp _ _ 24 . _ PUNCT . _ 2 punct _ _ 25 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 gap _ NOUN NN _ 8 nsubj _ _ 3 between _ ADP IN _ 4 case _ _ 4 winners _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 laggards _ NOUN NNS _ 4 conj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 grow _ VERB VB _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 personal _ ADJ JJ _ 3 amod _ _ 3 computers _ NOUN NNS _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 Apple _ PROPN NNP _ 11 nsubjpass _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Compaq _ PROPN NNP _ 5 conj _ _ 8 and _ CONJ CC _ 5 cc _ _ 9 IBM _ PROPN NNP _ 5 conj _ _ 10 are _ AUX VBP _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 tighten _ VERB VB _ 11 xcomp _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 hold _ NOUN NN _ 13 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 their _ PRON PRP$ _ 18 nmod:poss _ _ 18 business _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 second-tier _ ADJ JJ _ 7 amod _ _ 7 firms _ NOUN NNS _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 continue _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 lose _ VERB VB _ 9 xcomp _ _ 12 ground _ NOUN NN _ 11 dobj _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 lagging _ VERB JJ _ 3 amod _ _ 3 competitors _ NOUN NNS _ 6 nsubj _ _ 4 even _ ADV RB _ 6 advmod _ _ 5 may _ AUX MD _ 6 aux _ _ 6 leave _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 10 det _ _ 8 personal _ ADJ JJ _ 10 amod _ _ 9 computer _ NOUN NN _ 10 compound _ _ 10 business _ NOUN NN _ 6 dobj _ _ 11 altogether _ ADV RB _ 6 advmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Wyse _ PROPN NNP _ 2 compound _ _ 2 Technology _ PROPN NNP _ 8 nsubjpass _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 instance _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 considered _ VERB VBN _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 candidate _ NOUN NN _ 8 xcomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 sell _ VERB VB _ 10 acl _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 troubled _ ADJ JJ _ 15 amod _ _ 15 operation _ NOUN NN _ 12 dobj _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 Wyse _ PROPN NNP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 done _ VERB VBN _ 21 ccomp _ _ 5 well _ ADV RB _ 4 advmod _ _ 6 establishing _ VERB VBG _ 4 xcomp _ _ 7 a _ DET DT _ 9 det _ _ 8 distribution _ NOUN NN _ 9 compound _ _ 9 business _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 but _ CONJ CC _ 4 cc _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 have _ AUX VBP _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 delivered _ VERB VBN _ 4 conj _ _ 16 products _ NOUN NNS _ 15 dobj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 sell _ VERB VBP _ 16 acl:relcl _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Kimball _ PROPN NNP _ 23 compound _ _ 23 Brown _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 an _ DET DT _ 26 det _ _ 26 analyst _ NOUN NN _ 23 appos _ _ 27 at _ ADP IN _ 29 case _ _ 28 Prudential-Bache _ PROPN NNP _ 29 compound _ _ 29 Securities _ PROPN NNPS _ 26 nmod _ _ 30 . _ PUNCT . _ 21 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Brown _ PROPN NNP _ 3 nsubj _ _ 3 estimates _ VERB VBZ _ 0 root _ _ 4 Wyse _ PROPN NNP _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 whose _ PRON WP$ _ 8 nmod:poss _ _ 7 terminals _ NOUN NNS _ 8 compound _ _ 8 business _ NOUN NN _ 10 nsubj _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 strong _ ADJ JJ _ 4 acl:relcl _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 will _ AUX MD _ 13 aux _ _ 13 report _ VERB VB _ 3 ccomp _ _ 14 a _ DET DT _ 15 det _ _ 15 loss _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 12 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 for _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 quarter _ NOUN NN _ 15 nmod _ _ 24 ended _ VERB VBD _ 23 acl _ _ 25 Sept _ PROPN NNP _ 24 nmod:tmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 Personal-computer _ NOUN NN _ 2 compound _ _ 2 makers _ NOUN NNS _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 continue _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 eat _ VERB VB _ 4 xcomp _ _ 7 away _ ADP RB _ 6 compound:prt _ _ 8 at _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 business _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 more _ ADV JJR _ 13 advmod _ _ 13 traditional _ ADJ JJ _ 15 amod _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 firms _ NOUN NNS _ 10 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Ever-more _ ADV RB _ 2 advmod _ _ 2 powerful _ ADJ JJ _ 4 amod _ _ 3 desk-top _ ADJ JJ _ 4 amod _ _ 4 computers _ NOUN NNS _ 19 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 designed _ VERB VBN _ 4 acl _ _ 7 with _ ADP IN _ 11 case _ _ 8 one _ NUM CD _ 11 nummod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 more _ ADJ JJR _ 8 conj _ _ 11 microprocessors _ NOUN NNS _ 6 nmod _ _ 12 as _ ADP IN _ 15 case _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 brains _ NOUN NNS _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 18 are _ AUX VBP _ 19 auxpass _ _ 19 expected _ VERB VBN _ 0 root _ _ 20 to _ PART TO _ 22 mark _ _ 21 increasingly _ ADV RB _ 22 advmod _ _ 22 take _ VERB VB _ 19 xcomp _ _ 23 on _ ADP RP _ 24 dep _ _ 24 functions _ NOUN NNS _ 22 nmod _ _ 25 carried _ VERB VBD _ 24 acl _ _ 26 out _ ADP RP _ 25 compound:prt _ _ 27 by _ ADP IN _ 30 case _ _ 28 more _ ADV RBR _ 29 advmod _ _ 29 expensive _ ADJ JJ _ 30 amod _ _ 30 minicomputers _ NOUN NNS _ 25 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 mainframes _ NOUN NNS _ 30 conj _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 guys _ NOUN NNS _ 11 nsubjpass _ _ 4 that _ PRON WDT _ 5 nsubj _ _ 5 make _ VERB VBP _ 3 acl:relcl _ _ 6 traditional _ ADJ JJ _ 7 amod _ _ 7 hardware _ NOUN NN _ 5 dobj _ _ 8 are _ AUX VBP _ 11 aux _ _ 9 really _ ADV RB _ 11 advmod _ _ 10 being _ AUX VBG _ 11 auxpass _ _ 11 obsoleted _ VERB VBN _ 17 ccomp _ _ 12 by _ ADP IN _ 14 case _ _ 13 microprocessor-based _ ADJ JJ _ 14 amod _ _ 14 machines _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Mr. _ PROPN NNP _ 19 compound _ _ 19 Benton _ PROPN NNP _ 17 nsubj _ _ 20 . _ PUNCT . _ 17 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 18 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 this _ DET DT _ 6 det _ _ 6 trend _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 18 punct _ _ 8 longtime _ ADJ JJ _ 10 amod _ _ 9 powerhouses _ NOUN NNS _ 10 dep _ _ 10 H-P _ PROPN NN _ 18 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 IBM _ PROPN NNP _ 10 conj _ _ 13 and _ CONJ CC _ 10 cc _ _ 14 Digital _ PROPN NNP _ 16 compound _ _ 15 Equipment _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 10 conj _ _ 17 are _ AUX VBP _ 18 aux _ _ 18 scrambling _ VERB VBG _ 0 root _ _ 19 to _ PART TO _ 20 mark _ _ 20 counterattack _ VERB NN _ 18 xcomp _ _ 21 with _ ADP IN _ 23 case _ _ 22 microprocessor-based _ ADJ JJ _ 23 amod _ _ 23 systems _ NOUN NNS _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 own _ ADJ JJ _ 23 nmod _ _ 27 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 they _ PRON PRP _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 have _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 act _ VERB VB _ 4 xcomp _ _ 7 quickly _ ADV RB _ 6 advmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Benton _ PROPN NNP _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 Compaq _ PROPN NNP _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 unveil _ VERB VB _ 3 xcomp _ _ 7 a _ DET DT _ 8 det _ _ 8 family _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 high-end _ ADJ JJ _ 12 amod _ _ 11 personal _ ADJ JJ _ 12 amod _ _ 12 computers _ NOUN NNS _ 8 nmod _ _ 13 later _ ADV RB _ 15 advmod _ _ 14 this _ DET DT _ 15 det _ _ 15 year _ NOUN NN _ 6 nmod:tmod _ _ 16 that _ PRON WDT _ 18 nsubj _ _ 17 are _ VERB VBP _ 18 cop _ _ 18 powerful _ ADJ JJ _ 6 dep _ _ 19 enough _ ADV JJ _ 18 advmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 serve _ VERB VB _ 18 xcomp _ _ 22 as _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 hub _ NOUN NN _ 21 nmod _ _ 25 for _ ADP IN _ 26 case _ _ 26 communications _ NOUN NNS _ 24 nmod _ _ 27 within _ ADP IN _ 29 case _ _ 28 large _ ADJ JJ _ 29 amod _ _ 29 networks _ NOUN NNS _ 26 nmod _ _ 30 of _ ADP IN _ 32 case _ _ 31 desk-top _ ADJ JJ _ 32 amod _ _ 32 machines _ NOUN NNS _ 29 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 raft _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 new _ ADJ JJ _ 6 amod _ _ 5 computer _ NOUN NN _ 6 compound _ _ 6 companies _ NOUN NNS _ 2 nmod _ _ 7 also _ ADV RB _ 9 advmod _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 targeted _ VERB VBN _ 0 root _ _ 10 this _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 server _ NOUN NN _ 14 compound _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 market _ NOUN NN _ 9 dobj _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Population _ NOUN NNP _ 2 compound _ _ 2 Drain _ NOUN NNP _ 3 nsubj _ _ 3 Ends _ VERB NNPS _ 0 root _ _ 4 For _ ADP IN _ 6 case _ _ 5 Midwestern _ ADJ NNP _ 6 amod _ _ 6 States _ NOUN NNPS _ 3 nmod _ _ 1 IOWA _ PROPN NNP _ 3 nsubj _ _ 2 IS _ AUX VBZ _ 3 aux _ _ 3 MAKING _ VERB VBG _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 comeback _ NOUN NN _ 3 dobj _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 So _ ADV RB _ 2 advmod _ _ 2 are _ VERB VBP _ 0 root _ _ 3 Indiana _ PROPN NNP _ 2 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Ohio _ PROPN NNP _ 3 conj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 Michigan _ PROPN NNP _ 3 conj _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 population _ NOUN NN _ 10 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 all _ DET DT _ 6 det _ _ 5 four _ NUM CD _ 6 nummod _ _ 6 states _ NOUN NNS _ 2 nmod _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 upswing _ NOUN NN _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 according _ VERB VBG _ 17 case _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 new _ ADJ JJ _ 17 amod _ _ 15 Census _ PROPN NNP _ 17 compound _ _ 16 Bureau _ PROPN NNP _ 17 compound _ _ 17 estimates _ NOUN VBZ _ 10 nmod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 following _ VERB VBG _ 20 case _ _ 20 declines _ NOUN NNS _ 10 nmod _ _ 21 throughout _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 early _ ADJ JJ _ 24 amod _ _ 24 1980s _ NOUN CD _ 20 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 gains _ NOUN NNS _ 10 nsubj _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ VERB VB _ 6 cop _ _ 6 sure _ ADJ JJ _ 10 dep _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 are _ VERB VBP _ 10 cop _ _ 9 rather _ ADV RB _ 10 advmod _ _ 10 small _ ADJ JJ _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 Iowa _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 instance _ NOUN NN _ 6 nmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 saw _ VERB VBD _ 26 ccomp _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 population _ NOUN NN _ 9 nsubj _ _ 9 grow _ VERB VB _ 6 ccomp _ _ 10 by _ ADP IN _ 12 case _ _ 11 11,000 _ NUM CD _ 12 nummod _ _ 12 people _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 0.4 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 conj _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 between _ ADP IN _ 19 case _ _ 19 1987 _ NUM CD _ 9 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 1988 _ NUM CD _ 19 conj _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 Census _ PROPN NNP _ 25 compound _ _ 25 Bureau _ PROPN NNP _ 26 nsubj _ _ 26 says _ VERB VBZ _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Still _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 even _ ADV RB _ 6 advmod _ _ 4 that _ DET IN _ 6 det _ _ 5 modest _ ADJ JJ _ 6 amod _ _ 6 increase _ NOUN NN _ 9 nsubj _ _ 7 is _ VERB VBZ _ 9 cop _ _ 8 good _ ADJ JJ _ 9 amod _ _ 9 news _ NOUN NN _ 0 root _ _ 10 for _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 state _ NOUN NN _ 9 nmod _ _ 13 that _ PRON WDT _ 16 nsubj _ _ 14 had _ AUX VBD _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 grown _ VERB VBN _ 12 acl:relcl _ _ 17 at _ ADP IN _ 18 case _ _ 18 all _ DET DT _ 16 nmod _ _ 19 since _ ADP IN _ 20 case _ _ 20 1981 _ NUM CD _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Between _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 11 nmod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 1988 _ NUM CD _ 2 conj _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 North _ PROPN NNP _ 7 compound _ _ 7 Dakota _ PROPN NNP _ 11 nsubj _ _ 8 was _ VERB VBD _ 11 cop _ _ 9 the _ DET DT _ 11 det _ _ 10 only _ ADJ JJ _ 11 amod _ _ 11 state _ NOUN NN _ 0 root _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 Midwest _ ADJ NNP _ 11 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 lose _ VERB VB _ 11 acl _ _ 17 population _ NOUN NN _ 16 dobj _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 a _ DET DT _ 20 det _ _ 20 loss _ NOUN NN _ 16 nmod:npmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 4,000 _ NUM CD _ 23 nummod _ _ 23 people _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 Six _ NUM CD _ 9 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 12 _ NUM CD _ 6 nummod _ _ 5 midwestern _ ADJ JJ _ 6 amod _ _ 6 states _ NOUN NNS _ 1 nmod _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 growing _ VERB VBG _ 0 root _ _ 10 steadily _ ADV RB _ 9 advmod _ _ 11 since _ ADP IN _ 12 case _ _ 12 1980 _ NUM CD _ 9 nmod _ _ 13 -- _ PUNCT : _ 9 punct _ _ 14 Illinois _ PROPN NNP _ 9 dep _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Kansas _ PROPN NNP _ 14 conj _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 Minnesota _ PROPN NNP _ 14 conj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 Missouri _ PROPN NNP _ 14 conj _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 South _ PROPN NNP _ 23 compound _ _ 23 Dakota _ PROPN NNP _ 14 conj _ _ 24 and _ CONJ CC _ 14 cc _ _ 25 Wisconsin _ PROPN NNP _ 14 conj _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Northeast _ PROPN NNP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 holding _ VERB VBG _ 0 root _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 own _ ADJ JJ _ 5 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 population _ NOUN NN _ 11 compound _ _ 11 race _ NOUN NN _ 5 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Seven _ NUM CD _ 6 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 states _ NOUN NNS _ 1 nmod _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 grown _ VERB VBN _ 0 root _ _ 7 each _ DET DT _ 8 det _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 since _ ADP IN _ 10 case _ _ 10 1980 _ NUM CD _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 including _ VERB VBG _ 14 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 lost _ VERB VBD _ 14 acl:relcl _ _ 18 4 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 population _ NOUN NN _ 19 nmod _ _ 23 during _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 1970s _ NOUN NNS _ 17 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 And _ CONJ CC _ 16 cc _ _ 2 although _ SCONJ IN _ 6 mark _ _ 3 Pennsylvania _ PROPN NNP _ 6 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Massachusetts _ PROPN NNP _ 3 conj _ _ 6 suffered _ VERB VBD _ 16 advcl _ _ 7 slight _ ADJ JJ _ 8 amod _ _ 8 declines _ NOUN NNS _ 6 dobj _ _ 9 earlier _ ADV RBR _ 6 advmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 decade _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 they _ PRON PRP _ 16 nsubj _ _ 15 are _ AUX VBP _ 16 aux _ _ 16 growing _ VERB VBG _ 0 root _ _ 17 again _ ADV RB _ 16 advmod _ _ 18 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 14 nmod _ _ 5 , _ PUNCT , _ 14 punct _ _ 6 several _ ADJ JJ _ 7 amod _ _ 7 states _ NOUN NNS _ 14 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 South _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 West _ PROPN NNP _ 10 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 had _ VERB VBN _ 0 root _ _ 15 their _ PRON PRP$ _ 18 nmod:poss _ _ 16 own _ ADJ JJ _ 18 amod _ _ 17 population _ NOUN NN _ 18 compound _ _ 18 turnaround _ NOUN NN _ 14 dobj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 Seven _ NUM CD _ 2 nummod _ _ 2 states _ NOUN NNS _ 11 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 grew _ VERB VBD _ 2 acl:relcl _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 early _ ADJ JJ _ 8 amod _ _ 8 1980s _ NOUN NNS _ 4 nmod _ _ 9 are _ AUX VBP _ 11 aux _ _ 10 now _ ADV RB _ 11 advmod _ _ 11 losing _ VERB VBG _ 0 root _ _ 12 population _ NOUN NN _ 11 dobj _ _ 13 -- _ PUNCT : _ 11 punct _ _ 14 West _ PROPN NNP _ 15 compound _ _ 15 Virginia _ PROPN NNP _ 11 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Mississippi _ PROPN NNP _ 15 conj _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 Louisiana _ PROPN NNP _ 15 conj _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 Oklahoma _ PROPN NNP _ 15 conj _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 Montana _ PROPN NNP _ 15 conj _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 Wyoming _ PROPN NNP _ 15 conj _ _ 26 and _ CONJ CC _ 15 cc _ _ 27 Alaska _ PROPN NNP _ 15 conj _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 Overall _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 though _ ADV RB _ 10 advmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 South _ PROPN NNP _ 10 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 West _ PROPN NNP _ 6 conj _ _ 9 still _ ADV RB _ 10 advmod _ _ 10 outpace _ VERB VB _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 Northeast _ PROPN NNP _ 10 dobj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Midwest _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 fast-growing _ ADJ JJ _ 18 amod _ _ 18 states _ NOUN NNS _ 23 nsubj _ _ 19 like _ ADP IN _ 20 case _ _ 20 Florida _ PROPN NNP _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 California _ PROPN NNP _ 20 conj _ _ 23 ensure _ VERB VB _ 10 conj _ _ 24 that _ SCONJ IN _ 28 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 pattern _ NOUN NN _ 28 nsubj _ _ 27 will _ AUX MD _ 28 aux _ _ 28 continue _ VERB VB _ 23 ccomp _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 growth _ NOUN NN _ 4 compound _ _ 4 gap _ NOUN NN _ 14 nsubj _ _ 5 between _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Sun _ PROPN NNP _ 8 compound _ _ 8 Belt _ PROPN NNP _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 regions _ NOUN NNS _ 8 conj _ _ 12 has _ AUX VBZ _ 14 aux _ _ 13 clearly _ ADV RB _ 14 advmod _ _ 14 started _ VERB VBN _ 0 root _ _ 15 narrowing _ VERB VBG _ 14 xcomp _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 More _ ADJ RBR _ 3 nsubj _ _ 2 Elderly _ ADJ JJ _ 1 amod _ _ 3 Maintain _ VERB NNP _ 0 root _ _ 4 Their _ PRON PRP$ _ 5 nmod:poss _ _ 5 Independence _ NOUN NN _ 3 dobj _ _ 1 THANKS _ NOUN NNS _ 9 dep _ _ 2 TO _ ADP TO _ 4 case _ _ 3 modern _ ADJ JJ _ 4 amod _ _ 4 medicine _ NOUN NN _ 1 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 more _ ADJ JJR _ 7 amod _ _ 7 couples _ NOUN NNS _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 growing _ VERB VBG _ 0 root _ _ 10 old _ ADJ JJ _ 9 xcomp _ _ 11 together _ ADV RB _ 9 advmod _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 13 cc _ _ 2 even _ ADV RB _ 4 advmod _ _ 3 after _ SCONJ IN _ 4 mark _ _ 4 losing _ VERB VBG _ 13 advcl _ _ 5 a _ DET DT _ 6 det _ _ 6 spouse _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 more _ ADJ JJR _ 13 nsubj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 elderly _ ADJ JJ _ 8 nmod _ _ 12 are _ AUX VBP _ 13 aux _ _ 13 staying _ VERB VBG _ 0 root _ _ 14 independent _ ADJ JJ _ 13 xcomp _ _ 15 . _ PUNCT . _ 13 punct _ _ 1 A _ DET DT _ 5 det _ _ 2 new _ ADJ JJ _ 5 amod _ _ 3 Census _ PROPN NNP _ 5 compound _ _ 4 Bureau _ PROPN NNP _ 5 compound _ _ 5 study _ NOUN NN _ 10 nsubj _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 noninstitutionalized _ ADJ JJ _ 9 amod _ _ 9 population _ NOUN NN _ 5 nmod _ _ 10 shows _ VERB VBZ _ 0 root _ _ 11 that _ SCONJ IN _ 21 mark _ _ 12 64 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 21 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 people _ NOUN NNS _ 13 nmod _ _ 16 aged _ VERB JJ _ 15 amod _ _ 17 65 _ NUM CD _ 19 nummod _ _ 18 to _ ADP TO _ 19 dep _ _ 19 74 _ NUM CD _ 16 dep _ _ 20 were _ AUX VBD _ 21 aux _ _ 21 living _ VERB VBG _ 10 ccomp _ _ 22 with _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 spouse _ NOUN NN _ 21 nmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 1988 _ NUM CD _ 21 nmod _ _ 27 , _ PUNCT , _ 21 punct _ _ 28 up _ ADV RB _ 21 advmod _ _ 29 from _ ADP IN _ 31 case _ _ 30 59 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 28 nmod _ _ 32 in _ ADP IN _ 33 case _ _ 33 1970 _ NUM CD _ 31 nmod _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 does _ AUX VBZ _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 mean _ VERB VB _ 0 root _ _ 5 they _ PRON PRP _ 8 nsubj _ _ 6 're _ VERB VBP _ 8 cop _ _ 7 less _ ADV RBR _ 8 advmod _ _ 8 likely _ ADJ JJ _ 4 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 live _ VERB VB _ 8 xcomp _ _ 11 alone _ ADV RB _ 10 advmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 however _ ADV RB _ 4 advmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 share _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 remained _ VERB VBN _ 0 root _ _ 5 at _ ADP IN _ 8 case _ _ 6 about _ ADV IN _ 7 advmod _ _ 7 24 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 4 nmod _ _ 9 since _ ADP IN _ 10 case _ _ 10 1970 _ NUM CD _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 What _ PRON WDT _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 changed _ VERB VBN _ 4 csubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 more _ ADJ JJR _ 12 nsubj _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 young _ ADJ JJ _ 10 amod _ _ 10 elderly _ ADJ JJ _ 6 nmod _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 living _ VERB VBG _ 4 ccomp _ _ 13 with _ ADP IN _ 14 case _ _ 14 spouses _ NOUN NNS _ 12 nmod _ _ 15 rather _ ADV RB _ 14 cc _ _ 16 than _ ADP IN _ 15 mwe _ _ 17 with _ ADP IN _ 19 case _ _ 18 other _ ADJ JJ _ 19 amod _ _ 19 relatives _ NOUN NNS _ 14 conj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 such _ ADJ JJ _ 23 case _ _ 22 as _ ADP IN _ 21 mwe _ _ 23 children _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1988 _ NUM CD _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 10 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 12 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 those _ PRON DT _ 5 nmod _ _ 8 aged _ VERB JJ _ 7 amod _ _ 9 65 _ NUM CD _ 11 nummod _ _ 10 to _ ADP TO _ 11 dep _ _ 11 74 _ NUM CD _ 8 dep _ _ 12 lived _ VERB VBD _ 0 root _ _ 13 with _ ADP IN _ 14 case _ _ 14 relatives _ NOUN NNS _ 12 nmod _ _ 15 other _ ADJ JJ _ 14 amod _ _ 16 than _ ADP IN _ 17 case _ _ 17 spouses _ NOUN NNS _ 15 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 down _ ADV RB _ 12 advmod _ _ 20 from _ ADP IN _ 22 case _ _ 21 15 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 19 nmod _ _ 23 in _ ADP IN _ 24 case _ _ 24 1970 _ NUM CD _ 22 nmod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 people _ NOUN NNS _ 3 nsubj _ _ 3 get _ VERB VBP _ 8 advcl _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 older _ ADJ JJR _ 3 xcomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 many _ ADJ JJ _ 8 nsubj _ _ 8 become _ VERB VBP _ 0 root _ _ 9 widowed _ ADJ VBN _ 8 xcomp _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 16 cc _ _ 2 even _ ADV RB _ 4 advmod _ _ 3 among _ ADP IN _ 4 case _ _ 4 those _ PRON DT _ 16 nmod _ _ 5 aged _ VERB JJ _ 4 amod _ _ 6 75 _ NUM CD _ 5 dep _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 older _ ADJ JJR _ 5 conj _ _ 9 , _ PUNCT , _ 16 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 16 nsubj _ _ 12 living _ VERB NN _ 11 acl _ _ 13 with _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 spouse _ NOUN NN _ 12 nmod _ _ 16 rose _ VERB VBD _ 0 root _ _ 17 slightly _ ADV RB _ 16 advmod _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 to _ ADP TO _ 21 case _ _ 20 40 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 16 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 1988 _ NUM CD _ 21 nmod _ _ 24 from _ ADP IN _ 26 case _ _ 25 38 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 16 nmod _ _ 27 in _ ADP IN _ 28 case _ _ 28 1970 _ NUM CD _ 26 nmod _ _ 29 . _ PUNCT . _ 16 punct _ _ 1 Like _ ADP IN _ 4 case _ _ 2 their _ PRON PRP$ _ 4 nmod:poss _ _ 3 younger _ ADJ JJR _ 4 amod _ _ 4 counterparts _ NOUN NNS _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 older _ ADJ JJR _ 11 nsubj _ _ 8 elderly _ ADJ JJ _ 7 amod _ _ 9 are _ VERB VBP _ 11 cop _ _ 10 less _ ADV RBR _ 11 advmod _ _ 11 likely _ ADJ JJ _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 live _ VERB VB _ 11 xcomp _ _ 14 with _ ADP IN _ 16 case _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 relatives _ NOUN NNS _ 13 nmod _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 Only _ ADV RB _ 2 advmod _ _ 2 17 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 10 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 those _ PRON DT _ 3 nmod _ _ 6 aged _ VERB JJ _ 5 amod _ _ 7 75 _ NUM CD _ 6 dep _ _ 8 and _ CONJ CC _ 6 cc _ _ 9 older _ ADJ JJR _ 6 conj _ _ 10 lived _ VERB VBD _ 0 root _ _ 11 with _ ADP IN _ 12 case _ _ 12 relatives _ NOUN NNS _ 10 nmod _ _ 13 other _ ADJ JJ _ 12 amod _ _ 14 than _ ADP IN _ 15 case _ _ 15 spouses _ NOUN NNS _ 13 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 1988 _ NUM CD _ 10 nmod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 down _ ADV RB _ 10 advmod _ _ 20 from _ ADP IN _ 22 case _ _ 21 26 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 19 nmod _ _ 23 in _ ADP IN _ 24 case _ _ 24 1970 _ NUM CD _ 22 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 likelihood _ NOUN NN _ 12 nsubj _ _ 3 of _ SCONJ IN _ 4 mark _ _ 4 living _ VERB NN _ 2 acl _ _ 5 alone _ ADV RB _ 4 advmod _ _ 6 beyond _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 age _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 75 _ NUM CD _ 8 nmod _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 increased _ VERB VBN _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 40 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 12 nmod _ _ 16 from _ ADP IN _ 18 case _ _ 17 32 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 12 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 More _ ADJ JJR _ 2 amod _ _ 2 people _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 remaining _ VERB VBG _ 0 root _ _ 5 independent _ ADJ JJ _ 4 xcomp _ _ 6 longer _ ADV RBR _ 4 advmod _ _ 7 presumably _ ADV RB _ 11 advmod _ _ 8 because _ SCONJ IN _ 11 mark _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 are _ VERB VBP _ 11 cop _ _ 11 better _ ADJ JJR _ 4 advcl _ _ 12 off _ ADP RP _ 11 dep _ _ 13 physically _ ADV RB _ 11 advmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 financially _ ADV RB _ 13 conj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Careers _ NOUN NNS _ 2 nsubj _ _ 2 Count _ VERB VBP _ 0 root _ _ 3 Most _ ADV JJS _ 2 advmod _ _ 4 For _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 Well-to-Do _ ADJ JJ _ 2 nmod _ _ 1 MANY _ ADJ JJ _ 3 amod _ _ 2 AFFLUENT _ ADJ JJ _ 3 amod _ _ 3 people _ NOUN NNS _ 4 nsubj _ _ 4 place _ VERB VBP _ 0 root _ _ 5 personal _ ADJ JJ _ 6 amod _ _ 6 success _ NOUN NN _ 4 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 money _ NOUN NN _ 6 conj _ _ 9 above _ ADP IN _ 10 case _ _ 10 family _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 least _ ADJ JJS _ 4 advcl _ _ 3 that _ ADP DT _ 4 nsubj _ _ 4 's _ PART VBZ _ 0 root _ _ 5 what _ PRON WP _ 18 dobj _ _ 6 a _ DET DT _ 7 det _ _ 7 survey _ NOUN NN _ 18 nsubj _ _ 8 by _ ADP IN _ 9 case _ _ 9 Ernst _ PROPN NNP _ 7 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Young _ PROPN NNP _ 9 conj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 Yankelovich _ PROPN NNP _ 17 compound _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Clancy _ PROPN NNP _ 17 appos _ _ 16 , _ PUNCT , _ 17 punct _ _ 17 Shulman _ PROPN NNP _ 9 conj _ _ 18 indicates _ VERB VBZ _ 4 ccomp _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Two-thirds _ NOUN NNS _ 4 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 respondents _ NOUN NNS _ 1 nmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 strongly _ ADV RB _ 7 advmod _ _ 7 felt _ VERB VBD _ 4 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 need _ NOUN NN _ 7 dobj _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ VERB VB _ 12 cop _ _ 12 successful _ ADJ JJ _ 9 acl _ _ 13 in _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 jobs _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 while _ SCONJ IN _ 21 mark _ _ 18 fewer _ ADJ JJR _ 20 advmod _ _ 19 than _ ADP IN _ 20 advmod _ _ 20 half _ NOUN NN _ 21 nsubj _ _ 21 said _ VERB VBD _ 4 advcl _ _ 22 they _ PRON PRP _ 24 nsubj _ _ 23 strongly _ ADV RB _ 24 advmod _ _ 24 felt _ VERB VBD _ 21 ccomp _ _ 25 the _ DET DT _ 26 det _ _ 26 need _ NOUN NN _ 24 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 spend _ VERB VB _ 26 acl _ _ 29 more _ ADJ JJR _ 30 amod _ _ 30 time _ NOUN NN _ 28 dobj _ _ 31 with _ ADP IN _ 33 case _ _ 32 their _ PRON PRP$ _ 33 nmod:poss _ _ 33 families _ NOUN NNS _ 28 nmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Being _ VERB VBG _ 2 cop _ _ 2 successful _ ADJ JJ _ 13 csubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 careers _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 spending _ VERB VBG _ 2 conj _ _ 7 the _ DET DT _ 8 det _ _ 8 money _ NOUN NN _ 6 dobj _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 make _ VERB VBP _ 8 acl:relcl _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 top _ ADJ JJ _ 13 amod _ _ 13 priorities _ NOUN NNS _ 0 root _ _ 14 for _ ADP IN _ 16 case _ _ 15 this _ DET DT _ 16 det _ _ 16 group _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 most _ ADJ JJS _ 3 amod _ _ 3 studies _ NOUN NNS _ 11 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 affluent _ ADJ JJ _ 7 amod _ _ 7 market _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 this _ DET DT _ 10 det _ _ 10 survey _ NOUN NN _ 11 nsubj _ _ 11 excluded _ VERB VBN _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 super-rich _ ADJ JJ _ 11 dobj _ _ 14 . _ PUNCT . _ 11 punct _ _ 1 Average _ ADJ JJ _ 3 amod _ _ 2 household _ NOUN NN _ 3 compound _ _ 3 income _ NOUN NN _ 9 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 sample _ NOUN NN _ 3 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 194,000 _ NUM CD _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 average _ ADJ JJ _ 14 amod _ _ 13 net _ ADJ JJ _ 14 amod _ _ 14 assets _ NOUN NNS _ 16 nsubjpass _ _ 15 were _ AUX VBD _ 16 auxpass _ _ 16 reported _ VERB VBN _ 9 conj _ _ 17 as _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 775,000 _ NUM CD _ 16 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 goal _ NOUN NN _ 3 nsubj _ _ 3 was _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 learn _ VERB VB _ 3 xcomp _ _ 6 about _ ADP IN _ 7 case _ _ 7 one _ NUM CD _ 5 nmod _ _ 8 of _ ADP IN _ 13 case _ _ 9 today _ NOUN NN _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 fastest-growing _ ADJ JJ _ 13 amod _ _ 12 income _ NOUN NN _ 13 compound _ _ 13 groups _ NOUN NNS _ 7 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 upper-middle _ ADJ JJ _ 17 amod _ _ 17 class _ NOUN NN _ 13 appos _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 3 mark _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 represent _ VERB VBP _ 12 advcl _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 2 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 3 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 population _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 control _ VERB VBP _ 0 root _ _ 13 nearly _ ADV RB _ 14 advmod _ _ 14 one-third _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 discretionary _ ADJ JJ _ 17 amod _ _ 17 income _ NOUN NN _ 14 nmod _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 Across _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 board _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 these _ DET DT _ 6 det _ _ 6 consumers _ NOUN NNS _ 7 nsubj _ _ 7 value _ VERB NN _ 0 root _ _ 8 quality _ NOUN NN _ 7 dobj _ _ 9 , _ PUNCT , _ 7 punct _ _ 10 buy _ VERB VB _ 7 conj _ _ 11 what _ PRON WP _ 13 dobj _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 like _ VERB VBP _ 10 dobj _ _ 14 rather _ ADV RB _ 13 cc _ _ 15 than _ ADP IN _ 14 mwe _ _ 16 just _ ADV RB _ 13 advmod _ _ 17 what _ PRON WP _ 19 dobj _ _ 18 they _ PRON PRP _ 19 nsubj _ _ 19 need _ VERB VBP _ 13 dep _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 and _ CONJ CC _ 7 cc _ _ 22 appreciate _ VERB VB _ 7 conj _ _ 23 products _ NOUN NNS _ 22 dobj _ _ 24 that _ PRON WDT _ 26 nsubj _ _ 25 are _ VERB VBP _ 26 cop _ _ 26 distinctive _ ADJ JJ _ 23 acl:relcl _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Despite _ ADP IN _ 4 case _ _ 2 their _ PRON PRP$ _ 4 nmod:poss _ _ 3 considerable _ ADJ JJ _ 4 amod _ _ 4 incomes _ NOUN NNS _ 18 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 assets _ NOUN NNS _ 4 conj _ _ 7 , _ PUNCT , _ 18 punct _ _ 8 40 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 18 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 respondents _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 study _ NOUN NN _ 12 nmod _ _ 16 do _ AUX VBP _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 feel _ VERB VB _ 0 root _ _ 19 financially _ ADV RB _ 20 advmod _ _ 20 secure _ ADJ JJ _ 18 xcomp _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 and _ CONJ CC _ 18 cc _ _ 23 one-fourth _ NOUN NN _ 26 nsubj _ _ 24 do _ AUX VBP _ 26 aux _ _ 25 n't _ PART RB _ 26 neg _ _ 26 feel _ VERB VB _ 18 conj _ _ 27 that _ SCONJ IN _ 30 mark _ _ 28 they _ PRON PRP _ 30 nsubj _ _ 29 have _ AUX VBP _ 30 aux _ _ 30 made _ VERB VBN _ 26 ccomp _ _ 31 it _ PRON PRP _ 30 dobj _ _ 32 . _ PUNCT . _ 18 punct _ _ 1 Twenty _ NUM CD _ 2 nummod _ _ 2 percent _ NOUN NN _ 6 nsubj _ _ 3 do _ AUX VBP _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 even _ ADV RB _ 6 advmod _ _ 6 feel _ VERB VB _ 0 root _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 are _ VERB VBP _ 10 cop _ _ 9 financially _ ADV RB _ 10 advmod _ _ 10 well _ ADV RB _ 6 ccomp _ _ 11 off _ ADP IN _ 10 dep _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Many _ ADJ JJ _ 7 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 affluent _ NOUN JJ _ 1 nmod _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 n't _ PART RB _ 7 neg _ _ 7 comfortable _ ADJ JJ _ 0 root _ _ 8 with _ ADP IN _ 9 case _ _ 9 themselves _ PRON PRP _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 either _ ADV CC _ 7 advmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 About _ ADV IN _ 2 advmod _ _ 2 40 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 6 nsubj _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 feel _ VERB VB _ 0 root _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 're _ VERB VBP _ 10 cop _ _ 9 more _ ADV RBR _ 10 advmod _ _ 10 able _ ADJ JJ _ 6 ccomp _ _ 11 than _ ADP IN _ 12 case _ _ 12 others _ NOUN NNS _ 10 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 While _ SCONJ IN _ 3 mark _ _ 2 twothirds _ NOUN NNS _ 3 nsubj _ _ 3 feel _ VERB VBP _ 13 advcl _ _ 4 some _ DET DT _ 5 det _ _ 5 guilt _ NOUN NN _ 3 dobj _ _ 6 about _ SCONJ IN _ 8 mark _ _ 7 being _ VERB VBG _ 8 cop _ _ 8 affluent _ NOUN JJ _ 5 acl _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 only _ ADV RB _ 11 advmod _ _ 11 25 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 13 nsubj _ _ 13 give _ VERB VB _ 0 root _ _ 14 $ _ SYM $ _ 17 dep _ _ 15 2,500 _ NUM CD _ 17 nummod _ _ 16 or _ CONJ CC _ 17 cc _ _ 17 more _ ADJ JJR _ 13 dobj _ _ 18 to _ ADP TO _ 19 case _ _ 19 charity _ NOUN NN _ 13 nmod _ _ 20 each _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 13 nmod:tmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Thirty-five _ NUM CD _ 2 nummod _ _ 2 percent _ NOUN NN _ 3 nsubj _ _ 3 attend _ VERB VB _ 0 root _ _ 4 religious _ ADJ JJ _ 5 amod _ _ 5 services _ NOUN NNS _ 3 dobj _ _ 6 regularly _ ADV RB _ 3 advmod _ _ 7 ; _ PUNCT : _ 3 punct _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 same _ ADJ JJ _ 11 amod _ _ 11 time _ NOUN NN _ 15 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 60 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 15 nsubj _ _ 15 feel _ VERB VBP _ 3 parataxis _ _ 16 that _ SCONJ IN _ 21 mark _ _ 17 in _ ADP IN _ 18 case _ _ 18 life _ NOUN NN _ 21 nmod _ _ 19 one _ PRON CD _ 21 nsubj _ _ 20 sometimes _ ADV RB _ 21 advmod _ _ 21 has _ VERB VBZ _ 15 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 compromise _ VERB VB _ 21 xcomp _ _ 24 one _ PRON CD _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 principles _ NOUN NNS _ 23 dobj _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Odds _ NOUN NNS _ 0 root _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Ends _ NOUN NNS _ 1 conj _ _ 1 THE _ DET DT _ 2 det _ _ 2 NUMBER _ NOUN NN _ 22 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 women _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 minorities _ NOUN NNS _ 4 conj _ _ 7 who _ PRON WP _ 8 nsubj _ _ 8 hold _ VERB VBP _ 4 acl:relcl _ _ 9 jobs _ NOUN NNS _ 8 dobj _ _ 10 in _ ADP IN _ 12 case _ _ 11 top _ ADJ JJ _ 12 amod _ _ 12 management _ NOUN NN _ 9 nmod _ _ 13 in _ ADP IN _ 18 case _ _ 14 the _ DET DT _ 15 det _ _ 15 nation _ NOUN NN _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 largest _ ADJ JJS _ 18 amod _ _ 18 banks _ NOUN NNS _ 9 nmod _ _ 19 has _ AUX VBZ _ 22 aux _ _ 20 more _ ADV JJR _ 22 advmod _ _ 21 than _ ADP IN _ 20 case _ _ 22 doubled _ VERB VBD _ 0 root _ _ 23 since _ ADP IN _ 24 case _ _ 24 1978 _ NUM CD _ 22 nmod _ _ 25 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 American _ PROPN NNP _ 4 compound _ _ 3 Bankers _ PROPN NNPS _ 4 compound _ _ 4 Association _ PROPN NNP _ 5 nsubj _ _ 5 says _ VERB VBZ _ 0 root _ _ 6 that _ SCONJ IN _ 8 mark _ _ 7 women _ NOUN NNS _ 8 nsubj _ _ 8 make _ VERB VBP _ 5 ccomp _ _ 9 up _ ADP RP _ 8 compound:prt _ _ 10 47 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 8 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 officials _ NOUN NNS _ 11 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 managers _ NOUN NNS _ 13 conj _ _ 16 in _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 top _ ADJ JJ _ 20 amod _ _ 19 50 _ NUM CD _ 20 nummod _ _ 20 banks _ NOUN NNS _ 13 nmod _ _ 21 , _ PUNCT , _ 11 punct _ _ 22 up _ ADV RB _ 11 advmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 33 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 22 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1978 _ NUM CD _ 25 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 share _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 minorities _ NOUN NNS _ 2 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 those _ DET DT _ 7 det _ _ 7 positions _ NOUN NNS _ 2 nmod _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 risen _ VERB VBN _ 0 root _ _ 10 to _ ADP TO _ 12 case _ _ 11 16 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 9 nmod _ _ 13 from _ ADP IN _ 15 case _ _ 14 12 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 9 nmod _ _ 16 ... _ PUNCT : _ 9 punct _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Per-capita _ ADJ JJ _ 3 amod _ _ 2 personal _ ADJ JJ _ 3 amod _ _ 3 income _ NOUN NN _ 7 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 U.S. _ PROPN NNP _ 3 nmod _ _ 7 grew _ VERB VBD _ 0 root _ _ 8 faster _ ADV JJR _ 7 advmod _ _ 9 than _ ADP IN _ 10 case _ _ 10 inflation _ NOUN NN _ 8 nmod _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 7 nmod:tmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 according _ VERB VBG _ 17 case _ _ 15 to _ ADP TO _ 14 mwe _ _ 16 the _ DET DT _ 17 det _ _ 17 Bureau _ PROPN NNP _ 7 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 Economic _ PROPN NNP _ 20 compound _ _ 20 Analysis _ PROPN NN _ 17 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 amount _ NOUN NN _ 16 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 income _ NOUN NN _ 2 nmod _ _ 5 divvied _ VERB VBD _ 2 acl _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 for _ ADP IN _ 9 case _ _ 8 each _ DET DT _ 9 det _ _ 9 man _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 woman _ NOUN NN _ 9 conj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 child _ NOUN NN _ 9 conj _ _ 14 was _ VERB VBD _ 16 cop _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 16,489 _ NUM CD _ 0 root _ _ 17 in _ ADP IN _ 18 case _ _ 18 1988 _ NUM CD _ 16 nmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 up _ ADV RB _ 16 advmod _ _ 21 6.6 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 20 nmod:npmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 $ _ SYM $ _ 25 dep _ _ 25 15,472 _ NUM CD _ 20 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1987 _ NUM CD _ 25 nmod _ _ 28 . _ PUNCT . _ 16 punct _ _ 1 Per _ ADP IN _ 2 dep _ _ 2 capita _ NOUN NN _ 4 amod _ _ 3 personal _ ADJ JJ _ 4 amod _ _ 4 income _ NOUN NN _ 5 nsubj _ _ 5 ranged _ VERB VBD _ 0 root _ _ 6 from _ ADP IN _ 8 case _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 11,116 _ NUM CD _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Mississippi _ PROPN NNP _ 8 nmod _ _ 11 to _ ADP TO _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 23,059 _ NUM CD _ 8 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 Connecticut _ PROPN NNP _ 13 nmod _ _ 16 ... _ PUNCT : _ 5 punct _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 are _ VERB VBP _ 23 ccomp _ _ 3 13.1 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 5 nummod _ _ 5 students _ NOUN NNS _ 2 nsubj _ _ 6 in _ ADP IN _ 7 case _ _ 7 college _ NOUN NN _ 5 nmod _ _ 8 this _ DET DT _ 9 det _ _ 9 fall _ NOUN NN _ 2 nmod:tmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 up _ ADV RB _ 2 advmod _ _ 12 2 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 nmod:npmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 1988 _ NUM CD _ 11 nmod _ _ 16 , _ PUNCT , _ 23 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 National _ PROPN NNP _ 19 compound _ _ 19 Center _ PROPN NNP _ 23 nsubj _ _ 20 for _ ADP IN _ 22 case _ _ 21 Education _ PROPN NNP _ 22 compound _ _ 22 Statistics _ PROPN NNPS _ 19 nmod _ _ 23 estimates _ NOUN VBZ _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 About _ ADV IN _ 2 advmod _ _ 2 54 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 women _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 44 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 12 nsubj _ _ 10 are _ VERB VBP _ 12 cop _ _ 11 part-time _ ADJ JJ _ 12 amod _ _ 12 students _ NOUN NNS _ 5 conj _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 This _ DET DT _ 4 det _ _ 2 small _ ADJ JJ _ 4 amod _ _ 3 Dallas _ PROPN NNP _ 4 compound _ _ 4 suburb _ NOUN NN _ 6 nsubjpass _ _ 5 's _ PART POS _ 6 auxpass _ _ 6 got _ VERB VBD _ 0 root _ _ 7 trouble _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 6 punct _ _ 1 Trouble _ NOUN NN _ 0 root _ _ 2 with _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 5 det _ _ 4 capital _ ADJ NN _ 5 amod _ _ 5 T _ NOUN NN _ 1 nmod _ _ 6 and _ CONJ CC _ 1 cc _ _ 7 that _ PRON IN _ 8 nsubj _ _ 8 rhymes _ VERB NNS _ 1 conj _ _ 9 with _ ADP IN _ 10 case _ _ 10 P _ NOUN NN _ 8 nmod _ _ 11 and _ CONJ CC _ 1 cc _ _ 12 that _ PRON IN _ 13 nsubj _ _ 13 stands _ VERB VBZ _ 1 conj _ _ 14 for _ ADP IN _ 15 case _ _ 15 pool _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 More _ ADV JJR _ 3 advmod _ _ 2 than _ ADP IN _ 1 mwe _ _ 3 30 _ NUM CD _ 4 nummod _ _ 4 years _ NOUN NNS _ 5 nmod:npmod _ _ 5 ago _ ADV RB _ 24 advmod _ _ 6 , _ PUNCT , _ 24 punct _ _ 7 Prof. _ PROPN NNP _ 9 compound _ _ 8 Harold _ PROPN NNP _ 9 compound _ _ 9 Hill _ PROPN NNP _ 24 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 con _ ADJ JJ _ 13 amod _ _ 13 man _ NOUN NN _ 9 appos _ _ 14 in _ ADP IN _ 21 case _ _ 15 Meredith _ PROPN NNP _ 16 compound _ _ 16 Willson _ PROPN NNP _ 21 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 The _ DET DT _ 21 det _ _ 20 Music _ NOUN NNP _ 21 compound _ _ 21 Man _ NOUN NNP _ 13 nmod _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 '' _ PUNCT '' _ 9 punct _ _ 24 warned _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 26 det _ _ 26 citizens _ NOUN NNS _ 24 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 River _ PROPN NNP _ 29 compound _ _ 29 City _ PROPN NNP _ 26 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 Iowa _ PROPN NNP _ 29 appos _ _ 32 , _ PUNCT , _ 29 punct _ _ 33 against _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 game _ NOUN NN _ 24 nmod _ _ 36 . _ PUNCT . _ 24 punct _ _ 1 Now _ ADV RB _ 10 advmod _ _ 2 kindred _ ADJ NN _ 3 amod _ _ 3 spirits _ NOUN NNS _ 10 nsubj _ _ 4 on _ ADP IN _ 8 case _ _ 5 Addison _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 town _ NOUN NN _ 8 compound _ _ 8 council _ NOUN NN _ 3 nmod _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 barred _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 town _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 fanciest _ ADJ JJS _ 15 amod _ _ 15 hotel _ NOUN NN _ 10 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 Grand _ PROPN NNP _ 19 compound _ _ 19 Kempinski _ PROPN NNP _ 15 appos _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 from _ SCONJ IN _ 22 mark _ _ 22 installing _ VERB VBG _ 10 advcl _ _ 23 three _ NUM CD _ 26 nummod _ _ 24 free _ ADJ JJ _ 26 amod _ _ 25 pool _ NOUN NN _ 26 compound _ _ 26 tables _ NOUN NNS _ 22 dobj _ _ 27 in _ ADP IN _ 30 case _ _ 28 its _ PRON PRP$ _ 30 nmod:poss _ _ 29 new _ ADJ JJ _ 30 amod _ _ 30 lounge _ NOUN NN _ 22 nmod _ _ 31 . _ PUNCT . _ 10 punct _ _ 1 Mayor _ PROPN NNP _ 3 compound _ _ 2 Lynn _ PROPN NNP _ 3 compound _ _ 3 Spruill _ PROPN NNP _ 10 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 two _ NUM CD _ 6 nummod _ _ 6 members _ NOUN NNS _ 3 conj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 council _ NOUN NN _ 6 nmod _ _ 10 said _ VERB VBD _ 0 root _ _ 11 they _ PRON PRP _ 13 nsubj _ _ 12 were _ VERB VBD _ 13 cop _ _ 13 worried _ ADJ VBN _ 10 ccomp _ _ 14 about _ SCONJ IN _ 15 mark _ _ 15 setting _ VERB VBG _ 13 advcl _ _ 16 a _ DET DT _ 17 det _ _ 17 precedent _ NOUN NN _ 15 dobj _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 would _ AUX MD _ 20 aux _ _ 20 permit _ VERB VB _ 17 acl:relcl _ _ 21 pool _ NOUN NN _ 22 compound _ _ 22 halls _ NOUN NNS _ 20 dobj _ _ 23 along _ ADP IN _ 27 case _ _ 24 Addison _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 main _ ADJ JJ _ 27 amod _ _ 27 street _ NOUN NN _ 20 nmod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 mayor _ NOUN NN _ 18 nsubj _ _ 4 , _ PUNCT , _ 18 punct _ _ 5 in _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 admonition _ NOUN NN _ 18 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 bears _ VERB VBZ _ 7 acl:relcl _ _ 10 a _ DET DT _ 12 det _ _ 11 rhythmic _ ADJ JJ _ 12 amod _ _ 12 resemblance _ NOUN NN _ 9 dobj _ _ 13 to _ ADP TO _ 15 case _ _ 14 Prof. _ PROPN NNP _ 15 compound _ _ 15 Hill _ PROPN NNP _ 12 nmod _ _ 16 's _ PART POS _ 15 case _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 warned _ VERB VBD _ 0 root _ _ 19 that _ SCONJ IN _ 22 mark _ _ 20 `` _ PUNCT `` _ 22 punct _ _ 21 alcohol _ NOUN NN _ 22 nsubj _ _ 22 leads _ VERB VBZ _ 18 ccomp _ _ 23 to _ ADP TO _ 24 case _ _ 24 betting _ NOUN VBG _ 22 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 leads _ VERB VBZ _ 24 acl:relcl _ _ 28 to _ ADP TO _ 29 case _ _ 29 fights _ NOUN NNS _ 27 nmod _ _ 30 . _ PUNCT . _ 18 punct _ _ 31 '' _ PUNCT '' _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 council _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 action _ NOUN NN _ 8 nsubj _ _ 5 is _ VERB VBZ _ 8 cop _ _ 6 yet _ ADV RB _ 7 advmod _ _ 7 another _ DET DT _ 8 amod _ _ 8 blow _ NOUN NN _ 0 root _ _ 9 to _ ADP TO _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 sport _ NOUN NN _ 8 nmod _ _ 12 that _ ADP IN _ 15 dobj _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 fans _ NOUN NNS _ 15 nsubj _ _ 15 claim _ NOUN VBP _ 11 acl:relcl _ _ 16 has _ AUX VBZ _ 18 aux _ _ 17 been _ AUX VBN _ 18 auxpass _ _ 18 maligned _ VERB VBN _ 15 ccomp _ _ 19 unjustly _ ADV RB _ 18 advmod _ _ 20 for _ ADP IN _ 21 case _ _ 21 years _ NOUN NNS _ 18 nmod _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 Obviously _ ADV RB _ 7 advmod _ _ 3 they _ PRON PRP _ 7 nsubj _ _ 4 're _ VERB VBP _ 7 cop _ _ 5 not _ PART RB _ 7 neg _ _ 6 in _ ADP IN _ 7 case _ _ 7 touch _ NOUN NN _ 15 ccomp _ _ 8 with _ SCONJ IN _ 11 mark _ _ 9 what _ PRON WP _ 11 nsubj _ _ 10 's _ AUX VBZ _ 11 aux _ _ 11 going _ VERB VBG _ 7 acl _ _ 12 on _ ADP RP _ 11 compound:prt _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 Tom _ PROPN NNP _ 17 compound _ _ 17 Manske _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 vice _ NOUN NN _ 20 compound _ _ 20 president _ NOUN NN _ 17 appos _ _ 21 of _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 26 det _ _ 23 National _ PROPN NNP _ 26 compound _ _ 24 Pocket _ PROPN NNP _ 26 compound _ _ 25 Billiards _ PROPN NNP _ 26 compound _ _ 26 Association _ PROPN NNP _ 20 nmod _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 Pool _ NOUN NNP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 hot _ ADJ JJ _ 0 root _ _ 4 in _ ADP IN _ 6 case _ _ 5 New _ PROPN NNP _ 6 compound _ _ 6 York _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Chicago _ PROPN NNP _ 6 conj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 insists _ VERB VBZ _ 6 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 where _ ADV WRB _ 21 advmod _ _ 14 `` _ PUNCT `` _ 21 punct _ _ 15 upscale _ ADJ JJ _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 suit-and-tie _ ADJ JJ _ 18 amod _ _ 18 places _ NOUN NNS _ 21 nsubj _ _ 19 '' _ PUNCT '' _ 21 punct _ _ 20 are _ AUX VBP _ 21 aux _ _ 21 adding _ VERB VBG _ 6 acl:relcl _ _ 22 tables _ NOUN NNS _ 21 dobj _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 With _ ADP IN _ 7 case _ _ 2 today _ NOUN NN _ 7 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 tougher _ ADJ JJR _ 7 amod _ _ 5 drunk _ ADJ JJ _ 7 amod _ _ 6 driving _ NOUN NN _ 7 compound _ _ 7 laws _ NOUN NNS _ 16 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 adds _ VERB VBZ _ 16 parataxis _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 people _ NOUN NNS _ 16 nsubj _ _ 14 do _ AUX VBP _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 want _ VERB VB _ 0 root _ _ 17 to _ PART TO _ 19 mark _ _ 18 just _ ADV RB _ 19 advmod _ _ 19 sit _ VERB VB _ 16 xcomp _ _ 20 around _ ADV RB _ 19 advmod _ _ 21 and _ CONJ CC _ 19 cc _ _ 22 drink _ VERB VB _ 19 conj _ _ 23 . _ PUNCT . _ 16 punct _ _ 24 '' _ PUNCT '' _ 16 punct _ _ 1 Besides _ ADP IN _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 rowdy _ ADJ JJ _ 4 amod _ _ 4 behavior _ NOUN NN _ 5 nsubj _ _ 5 seems _ VERB VBZ _ 0 root _ _ 6 unlikely _ ADJ JJ _ 5 xcomp _ _ 7 at _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Grand _ PROPN NNP _ 10 compound _ _ 10 Kempinski _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 where _ ADV WRB _ 14 advmod _ _ 13 rooms _ NOUN NNS _ 14 nsubj _ _ 14 average _ VERB VBP _ 10 acl:relcl _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 200 _ NUM CD _ 14 dobj _ _ 17 a _ DET DT _ 18 det _ _ 18 night _ NOUN NN _ 16 nmod:npmod _ _ 19 and _ CONJ CC _ 14 cc _ _ 20 the _ DET DT _ 23 det _ _ 21 cheap _ ADJ JJ _ 23 amod _ _ 22 mixed _ ADJ JJ _ 23 amod _ _ 23 drinks _ NOUN NNS _ 24 nsubj _ _ 24 go _ VERB VBP _ 14 conj _ _ 25 for _ ADP IN _ 27 case _ _ 26 $ _ SYM $ _ 27 dep _ _ 27 3.50 _ NUM CD _ 24 nmod _ _ 28 a _ DET DT _ 29 det _ _ 29 pop _ NOUN NN _ 27 nmod:npmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 lounge _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 manager _ NOUN NN _ 7 compound _ _ 6 Elizabeth _ PROPN NNP _ 7 compound _ _ 7 Dyer _ PROPN NNP _ 10 nsubj _ _ 8 wo _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 admit _ VERB VB _ 0 root _ _ 11 patrons _ NOUN NNS _ 10 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 jeans _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 T-shirts _ NOUN NNS _ 13 conj _ _ 16 or _ CONJ CC _ 13 cc _ _ 17 tennis _ NOUN NN _ 18 compound _ _ 18 shoes _ NOUN NNS _ 13 conj _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 a _ DET DT _ 3 det _ _ 3 majority _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Addison _ PROPN NNP _ 7 compound _ _ 7 council _ NOUN NN _ 3 nmod _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 buy _ VERB VB _ 0 root _ _ 11 those _ DET DT _ 12 det _ _ 12 arguments _ NOUN NNS _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 Introducing _ VERB VBG _ 12 csubj _ _ 2 pool _ NOUN NN _ 1 dobj _ _ 3 , _ PUNCT , _ 4 punct _ _ 4 argued _ VERB VBD _ 12 parataxis _ _ 5 Councilwoman _ PROPN NNP _ 7 compound _ _ 6 Riley _ PROPN NNP _ 7 compound _ _ 7 Reinker _ PROPN NNP _ 4 nsubj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 would _ AUX MD _ 12 aux _ _ 10 be _ VERB VB _ 12 cop _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 dangerous _ ADJ JJ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 would _ AUX MD _ 3 aux _ _ 3 open _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 can _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 worms _ NOUN NNS _ 5 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 9 '' _ PUNCT '' _ 3 punct _ _ 1 Addison _ PROPN NNP _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 no _ DET DT _ 4 neg _ _ 4 stranger _ NOUN NN _ 0 root _ _ 5 to _ ADP TO _ 6 case _ _ 6 cans _ NOUN NNS _ 4 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 worms _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 either _ ADV CC _ 4 advmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 its _ PRON PRP$ _ 4 nmod:poss _ _ 3 previous _ ADJ JJ _ 4 amod _ _ 4 mayor _ NOUN NN _ 5 nsubj _ _ 5 committed _ VERB VBN _ 12 advcl _ _ 6 suicide _ NOUN NN _ 5 dobj _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 year _ NOUN NN _ 5 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 an _ DET DT _ 11 det _ _ 11 investigation _ NOUN NN _ 12 nsubj _ _ 12 disclosed _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 17 mark _ _ 14 town _ NOUN NN _ 15 compound _ _ 15 officials _ NOUN NNS _ 17 nsubj _ _ 16 regularly _ ADV RB _ 17 advmod _ _ 17 voted _ VERB VBD _ 12 ccomp _ _ 18 on _ ADP IN _ 21 case _ _ 19 their _ PRON PRP$ _ 21 nmod:poss _ _ 20 own _ ADJ JJ _ 21 amod _ _ 21 projects _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 17 punct _ _ 23 gave _ VERB VBD _ 17 conj _ _ 24 special _ ADJ JJ _ 25 amod _ _ 25 favors _ NOUN NNS _ 23 dobj _ _ 26 to _ ADP TO _ 28 case _ _ 27 developer _ NOUN NN _ 28 compound _ _ 28 friends _ NOUN NNS _ 23 nmod _ _ 29 and _ CONJ CC _ 17 cc _ _ 30 dipped _ VERB VBD _ 17 conj _ _ 31 into _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 33 det _ _ 33 town _ NOUN NN _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 coffers _ NOUN NNS _ 30 nmod _ _ 36 for _ ADP IN _ 37 case _ _ 37 trips _ NOUN NNS _ 30 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 retreats _ NOUN NNS _ 37 conj _ _ 40 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 revelations _ NOUN NNS _ 3 nsubj _ _ 3 embarrassed _ VERB JJ _ 0 root _ _ 4 town _ NOUN NN _ 5 compound _ _ 5 officials _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 although _ SCONJ IN _ 9 mark _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 argued _ VERB VBD _ 3 advcl _ _ 10 that _ SCONJ IN _ 16 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 problems _ NOUN NNS _ 16 nsubj _ _ 13 were _ VERB VBD _ 16 cop _ _ 14 n't _ PART RB _ 16 neg _ _ 15 as _ ADV IN _ 16 advmod _ _ 16 severe _ ADJ JJ _ 9 ccomp _ _ 17 as _ SCONJ IN _ 20 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 media _ NOUN NNS _ 20 nsubj _ _ 20 suggested _ VERB VBD _ 16 dep _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 2 advmod _ _ 2 comes _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 pool _ NOUN NN _ 5 compound _ _ 5 flap _ NOUN NN _ 2 nsubj _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 18 ccomp _ _ 4 there _ PRON EX _ 5 expl _ _ 5 's _ VERB VBZ _ 3 ccomp _ _ 6 some _ DET DT _ 7 det _ _ 7 people _ NOUN NNS _ 5 nsubj _ _ 8 worried _ ADJ VBN _ 7 dep _ _ 9 about _ ADP IN _ 10 case _ _ 10 something _ NOUN NN _ 8 nmod _ _ 11 pretty _ ADV RB _ 12 advmod _ _ 12 ridiculous _ ADJ JJ _ 10 amod _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 '' _ PUNCT '' _ 18 punct _ _ 15 Councilman _ PROPN NNP _ 17 compound _ _ 16 John _ PROPN NNP _ 17 compound _ _ 17 Nolan _ PROPN NNP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 thought _ VERB VBD _ 0 root _ _ 4 this _ PRON DT _ 7 nsubjpass _ _ 5 was _ AUX VBD _ 7 auxpass _ _ 6 all _ DET DT _ 7 dep _ _ 7 taken _ VERB VBN _ 3 ccomp _ _ 8 care _ NOUN NN _ 7 dobj _ _ 9 of _ ADP IN _ 7 nmod _ _ 10 in _ ADP IN _ 14 case _ _ 11 ` _ PUNCT `` _ 14 punct _ _ 12 The _ DET DT _ 14 det _ _ 13 Music _ NOUN NNP _ 14 compound _ _ 14 Man _ NOUN NNP _ 7 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 only _ ADJ JJ _ 3 amod _ _ 3 thing _ NOUN NN _ 28 nsubj _ _ 4 Robert _ PROPN NNP _ 5 compound _ _ 5 Goldberg _ PROPN NNP _ 7 nsubj _ _ 6 could _ AUX MD _ 7 aux _ _ 7 praise _ VERB VB _ 3 acl:relcl _ _ 8 about _ ADP IN _ 12 case _ _ 9 CBS _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 new _ ADJ JJ _ 12 amod _ _ 12 show _ NOUN NN _ 3 nmod _ _ 13 `` _ PUNCT `` _ 12 punct _ _ 14 Island _ PROPN NNP _ 15 compound _ _ 15 Son _ PROPN NNP _ 12 dep _ _ 16 '' _ PUNCT '' _ 12 punct _ _ 17 -LRB- _ PUNCT -LRB- _ 18 punct _ _ 18 Leisure _ PROPN NN _ 12 dep _ _ 19 & _ CONJ CC _ 18 cc _ _ 20 Arts _ PROPN NNS _ 18 conj _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 Sept. _ PROPN NNP _ 18 nmod:tmod _ _ 23 25 _ NUM CD _ 22 nummod _ _ 24 -RRB- _ PUNCT -RRB- _ 18 punct _ _ 25 was _ VERB VBD _ 28 cop _ _ 26 the _ DET DT _ 28 det _ _ 27 local _ ADJ JJ _ 28 amod _ _ 28 color _ NOUN NN _ 0 root _ _ 29 ; _ PUNCT : _ 28 punct _ _ 30 unfortunately _ ADV RB _ 40 advmod _ _ 31 neither _ CONJ CC _ 32 cc:preconj _ _ 32 he _ PRON PRP _ 40 nsubj _ _ 33 nor _ CONJ CC _ 32 cc _ _ 34 the _ DET DT _ 35 det _ _ 35 producers _ NOUN NNS _ 32 conj _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 show _ NOUN NN _ 35 nmod _ _ 39 have _ AUX VBP _ 40 aux _ _ 40 done _ VERB VBN _ 28 parataxis _ _ 41 their _ PRON PRP$ _ 42 nmod:poss _ _ 42 homework _ NOUN NN _ 40 dobj _ _ 43 . _ PUNCT . _ 28 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 14 nmod _ _ 3 : _ PUNCT : _ 14 punct _ _ 4 `` _ PUNCT `` _ 5 punct _ _ 5 Haole _ X NNP _ 14 nsubj _ _ 6 '' _ PUNCT '' _ 5 punct _ _ 7 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 8 white _ ADJ JJ _ 5 dep _ _ 9 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 10 is _ VERB VBZ _ 14 cop _ _ 11 not _ PART RB _ 14 neg _ _ 12 the _ DET DT _ 14 det _ _ 13 ultimate _ ADJ JJ _ 14 amod _ _ 14 insult _ NOUN NN _ 0 root _ _ 15 ; _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 20 punct _ _ 17 Mainland _ ADJ NN _ 18 amod _ _ 18 haole _ X NN _ 20 nsubj _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 is _ VERB VBZ _ 14 parataxis _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 Richard _ PROPN NNP _ 2 compound _ _ 2 Chamberlain _ PROPN NNP _ 3 nsubj _ _ 3 dresses _ VERB NNS _ 0 root _ _ 4 as _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 Mainland _ ADJ NN _ 8 amod _ _ 8 haole _ X NN _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 '' _ PUNCT '' _ 3 punct _ _ 11 tucking _ VERB VBG _ 3 ccomp _ _ 12 in _ ADP IN _ 11 compound:prt _ _ 13 a _ DET DT _ 15 det _ _ 14 Hawaiian _ ADJ JJ _ 15 amod _ _ 15 shirt _ NOUN NN _ 11 dobj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 rolling _ VERB VBG _ 11 conj _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 long _ ADJ JJ _ 21 amod _ _ 21 sleeves _ NOUN NNS _ 17 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 14 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 local _ ADJ JJ _ 4 amod _ _ 4 expression _ NOUN NN _ 14 nsubj _ _ 5 for _ ADP IN _ 6 case _ _ 6 brother _ NOUN NN _ 4 nmod _ _ 7 is _ VERB VBZ _ 14 cop _ _ 8 `` _ PUNCT `` _ 14 punct _ _ 9 brah _ X NN _ 14 compound _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 '' _ PUNCT '' _ 14 punct _ _ 12 not _ ADV RB _ 14 neg _ _ 13 `` _ PUNCT `` _ 14 punct _ _ 14 bruddah _ X NN _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 16 '' _ PUNCT '' _ 14 punct _ _ 1 And _ CONJ CC _ 22 cc _ _ 2 even _ ADV RB _ 7 advmod _ _ 3 if _ SCONJ IN _ 7 mark _ _ 4 a _ DET DT _ 5 det _ _ 5 nurse _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 wear _ VERB VB _ 22 advcl _ _ 8 flowers _ NOUN NNS _ 7 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 her _ PRON PRP$ _ 11 nmod:poss _ _ 11 hair _ NOUN NN _ 7 nmod _ _ 12 while _ NOUN IN _ 14 dep _ _ 13 on _ ADP IN _ 14 case _ _ 14 duty _ NOUN NN _ 7 dep _ _ 15 , _ PUNCT , _ 22 punct _ _ 16 if _ SCONJ IN _ 19 mark _ _ 17 she _ PRON PRP _ 19 nsubj _ _ 18 were _ VERB VBD _ 19 cop _ _ 19 engaged _ ADJ VBN _ 22 advcl _ _ 20 she _ PRON PRP _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 know _ VERB VB _ 0 root _ _ 23 to _ PART TO _ 24 mark _ _ 24 wear _ VERB VB _ 22 xcomp _ _ 25 them _ PRON PRP _ 24 dobj _ _ 26 behind _ ADP IN _ 33 case _ _ 27 her _ PRON PRP$ _ 33 dep _ _ 28 left _ ADJ NN _ 31 amod _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 not _ ADV RB _ 31 neg _ _ 31 right _ ADJ RB _ 33 amod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 ear _ NOUN NN _ 24 nmod _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 Sorry _ ADJ JJ _ 8 discourse _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 show _ NOUN NN _ 8 nsubj _ _ 5 does _ AUX VBZ _ 8 aux _ _ 6 not _ PART RB _ 8 neg _ _ 7 even _ ADV RB _ 8 advmod _ _ 8 have _ VERB VB _ 0 root _ _ 9 the _ DET DT _ 12 det _ _ 10 one _ NUM CD _ 12 nummod _ _ 11 redeeming _ ADJ JJ _ 12 amod _ _ 12 quality _ NOUN NN _ 8 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 genuine _ ADJ JJ _ 16 amod _ _ 15 local _ ADJ JJ _ 16 amod _ _ 16 color _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 Anita _ PROPN NNP _ 2 compound _ _ 2 Davis _ PROPN NNP _ 0 root _ _ 1 Of _ ADP IN _ 5 case _ _ 2 all _ DET PDT _ 5 det:predet _ _ 3 the _ DET DT _ 5 det _ _ 4 ethnic _ ADJ JJ _ 5 amod _ _ 5 tensions _ NOUN NNS _ 13 nmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 America _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 which _ PRON WDT _ 13 nsubj _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 most _ ADV RBS _ 13 advmod _ _ 13 troublesome _ ADJ JJ _ 0 root _ _ 14 right _ ADV NN _ 15 advmod _ _ 15 now _ ADV RB _ 13 advmod _ _ 16 ? _ PUNCT . _ 13 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 good _ ADJ JJ _ 3 amod _ _ 3 bet _ NOUN NN _ 7 nsubj _ _ 4 would _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 tension _ NOUN NN _ 0 root _ _ 8 between _ ADP IN _ 9 case _ _ 9 blacks _ PROPN NNS _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Jews _ PROPN NNS _ 9 conj _ _ 12 in _ ADP IN _ 15 case _ _ 13 New _ PROPN NNP _ 15 compound _ _ 14 York _ PROPN NNP _ 15 compound _ _ 15 City _ PROPN NNP _ 7 nmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 Or _ CONJ CC _ 5 cc _ _ 2 so _ ADP IN _ 5 advmod _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 must _ AUX MD _ 5 aux _ _ 5 seem _ VERB VB _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 Jackie _ PROPN NNP _ 8 compound _ _ 8 Mason _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 13 det _ _ 11 veteran _ ADJ NN _ 13 amod _ _ 12 Jewish _ ADJ JJ _ 13 amod _ _ 13 comedian _ NOUN NN _ 8 appos _ _ 14 appearing _ VERB VBG _ 13 acl _ _ 15 in _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 new _ ADJ JJ _ 19 amod _ _ 18 ABC _ PROPN NNP _ 19 compound _ _ 19 sitcom _ NOUN NN _ 14 nmod _ _ 20 airing _ NOUN VBG _ 19 dep _ _ 21 on _ ADP IN _ 23 case _ _ 22 Tuesday _ PROPN NNP _ 23 compound _ _ 23 nights _ NOUN NNS _ 20 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 25 9:30-10 _ NUM CD _ 27 nummod _ _ 26 p.m. _ ADV RB _ 27 advmod _ _ 27 EDT _ PROPN NNP _ 20 dep _ _ 28 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Not _ PART RB _ 2 dep _ _ 2 only _ ADV RB _ 18 advmod _ _ 3 is _ VERB VBZ _ 18 dep _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Mason _ PROPN NNP _ 3 nsubj _ _ 6 the _ DET DT _ 7 det _ _ 7 star _ NOUN NN _ 3 dep _ _ 8 of _ ADP IN _ 11 case _ _ 9 `` _ PUNCT `` _ 11 punct _ _ 10 Chicken _ PROPN NNP _ 11 compound _ _ 11 Soup _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 '' _ PUNCT '' _ 18 punct _ _ 14 he _ PRON PRP _ 18 nsubj _ _ 15 's _ VERB VBZ _ 18 cop _ _ 16 also _ ADV RB _ 18 advmod _ _ 17 the _ DET DT _ 18 det _ _ 18 inheritor _ NOUN NN _ 0 root _ _ 19 of _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 22 det _ _ 21 comedic _ ADJ JJ _ 22 amod _ _ 22 tradition _ NOUN NN _ 18 nmod _ _ 23 dating _ VERB VBG _ 22 acl _ _ 24 back _ ADV RB _ 23 advmod _ _ 25 to _ ADP TO _ 28 case _ _ 26 `` _ PUNCT `` _ 28 punct _ _ 27 Duck _ PROPN NN _ 28 compound _ _ 28 Soup _ PROPN NNP _ 24 nmod _ _ 29 , _ PUNCT , _ 18 punct _ _ 30 '' _ PUNCT '' _ 18 punct _ _ 31 and _ CONJ CC _ 18 cc _ _ 32 he _ PRON PRP _ 36 nsubj _ _ 33 's _ VERB VBZ _ 36 cop _ _ 34 currently _ ADV RB _ 36 advmod _ _ 35 a _ DET DT _ 36 det _ _ 36 man _ NOUN NN _ 18 conj _ _ 37 in _ ADP IN _ 39 case _ _ 38 hot _ ADJ JJ _ 39 amod _ _ 39 water _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 18 punct _ _ 1 Here _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 neutral _ ADJ JJ _ 5 amod _ _ 5 language _ NOUN NN _ 7 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 is _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 gist _ NOUN NN _ 7 nsubj _ _ 10 of _ ADP IN _ 14 case _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Mason _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 remarks _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 quoted _ VERB VBN _ 14 dep _ _ 17 first _ ADV RB _ 16 advmod _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Village _ PROPN NNP _ 21 compound _ _ 21 Voice _ PROPN NNP _ 16 nmod _ _ 22 while _ SCONJ IN _ 27 mark _ _ 23 he _ PRON PRP _ 27 nsubj _ _ 24 was _ VERB VBD _ 27 cop _ _ 25 a _ DET DT _ 27 det _ _ 26 paid _ ADJ VBN _ 27 amod _ _ 27 spokesman _ NOUN NN _ 16 advcl _ _ 28 for _ ADP IN _ 33 case _ _ 29 the _ DET DT _ 33 det _ _ 30 Rudolph _ PROPN NNP _ 33 compound _ _ 31 Giuliani _ PROPN NNP _ 33 compound _ _ 32 mayoral _ ADJ JJ _ 33 amod _ _ 33 campaign _ NOUN NN _ 27 nmod _ _ 34 , _ PUNCT , _ 16 punct _ _ 35 and _ CONJ CC _ 16 cc _ _ 36 then _ ADV RB _ 16 conj _ _ 37 in _ ADP IN _ 38 case _ _ 38 Newsweek _ PROPN NNP _ 36 nmod _ _ 39 after _ SCONJ IN _ 44 mark _ _ 40 he _ PRON PRP _ 44 nsubj _ _ 41 and _ CONJ CC _ 40 cc _ _ 42 the _ DET DT _ 43 det _ _ 43 campaign _ NOUN NN _ 40 conj _ _ 44 parted _ VERB VBD _ 36 advcl _ _ 45 company _ NOUN NN _ 44 dobj _ _ 46 . _ PUNCT . _ 7 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mason _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 many _ ADJ JJ _ 7 amod _ _ 6 Jewish _ ADJ JJ _ 7 amod _ _ 7 voters _ NOUN NNS _ 8 nsubj _ _ 8 feel _ VERB VBP _ 3 ccomp _ _ 9 guilty _ ADJ JJ _ 8 xcomp _ _ 10 toward _ ADP IN _ 11 case _ _ 11 blacks _ NOUN NNS _ 9 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 so _ ADP IN _ 8 dep _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 support _ VERB VBP _ 8 parataxis _ _ 16 black _ ADJ JJ _ 17 amod _ _ 17 candidates _ NOUN NNS _ 15 dobj _ _ 18 uncritically _ ADV RB _ 15 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 7 mark _ _ 4 many _ ADJ JJ _ 6 amod _ _ 5 black _ ADJ JJ _ 6 amod _ _ 6 voters _ NOUN NNS _ 7 nsubj _ _ 7 feel _ VERB VBP _ 2 ccomp _ _ 8 bitter _ ADJ JJ _ 7 xcomp _ _ 9 about _ ADP IN _ 11 case _ _ 10 racial _ ADJ JJ _ 11 amod _ _ 11 discrimination _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 so _ ADP IN _ 7 dep _ _ 14 they _ PRON PRP _ 18 nsubj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 too _ ADV RB _ 18 advmod _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 support _ VERB NN _ 7 parataxis _ _ 19 black _ ADJ JJ _ 20 amod _ _ 20 candidates _ NOUN NNS _ 18 dobj _ _ 21 uncritically _ ADV RB _ 18 advmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 Jews _ PROPN NNPS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 contributed _ VERB VBN _ 2 ccomp _ _ 7 more _ ADJ RBR _ 6 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 black _ ADJ JJ _ 10 amod _ _ 10 causes _ NOUN NNS _ 6 nmod _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 years _ NOUN NNS _ 6 nmod _ _ 14 than _ ADP IN _ 16 case _ _ 15 vice _ X NN _ 16 compound _ _ 16 versa _ X RB _ 6 advcl _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Mason _ PROPN NNP _ 8 nsubj _ _ 6 did _ AUX VBD _ 8 aux _ _ 7 not _ PART RB _ 8 neg _ _ 8 use _ VERB VB _ 0 root _ _ 9 neutral _ ADJ JJ _ 10 amod _ _ 10 language _ NOUN NN _ 8 dobj _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 practitioner _ NOUN NN _ 26 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 ethnic _ ADJ JJ _ 6 amod _ _ 6 humor _ NOUN NN _ 3 nmod _ _ 7 from _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 old _ ADJ JJ _ 10 amod _ _ 10 days _ NOUN NNS _ 3 nmod _ _ 11 on _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Borscht _ PROPN NNP _ 14 compound _ _ 14 Belt _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 live _ ADJ JJ _ 17 amod _ _ 17 television _ NOUN NN _ 14 conj _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 the _ DET DT _ 21 det _ _ 20 nightclub _ NOUN NN _ 21 compound _ _ 21 circuit _ NOUN NN _ 14 conj _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Mason _ PROPN NNP _ 26 nsubj _ _ 25 instinctively _ ADV RB _ 26 advmod _ _ 26 reached _ VERB VBD _ 0 root _ _ 27 for _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 vernacular _ NOUN JJ _ 26 nmod _ _ 30 . _ PUNCT . _ 26 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Jews _ PROPN NNPS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 sick _ ADJ JJ _ 2 ccomp _ _ 7 with _ ADP IN _ 8 case _ _ 8 complexes _ NOUN NNS _ 6 nmod _ _ 9 '' _ PUNCT '' _ 6 punct _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 and _ CONJ CC _ 2 cc _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 called _ VERB VBD _ 2 conj _ _ 14 David _ PROPN NNP _ 15 compound _ _ 15 Dinkins _ PROPN NNP _ 26 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Giuliani _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 black _ ADJ JJ _ 21 amod _ _ 21 opponent _ NOUN NN _ 15 appos _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 `` _ PUNCT `` _ 26 punct _ _ 24 a _ DET DT _ 26 det _ _ 25 fancy _ ADJ JJ _ 26 amod _ _ 26 shvartze _ NOUN NN _ 13 xcomp _ _ 27 with _ ADP IN _ 29 case _ _ 28 a _ DET DT _ 29 det _ _ 29 mustache _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 31 '' _ PUNCT '' _ 2 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Mason _ PROPN NNP _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 used _ VERB VBN _ 30 advcl _ _ 6 less _ ADV RBR _ 7 advmod _ _ 7 derogatory _ ADJ JJ _ 8 amod _ _ 8 language _ NOUN NN _ 5 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 articulate _ VERB VB _ 5 advcl _ _ 11 his _ PRON PRP$ _ 13 nmod:poss _ _ 12 amateur _ ADJ JJ _ 13 amod _ _ 13 analysis _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 voting _ NOUN NN _ 17 compound _ _ 17 behavior _ NOUN NN _ 13 nmod _ _ 18 of _ ADP IN _ 22 case _ _ 19 his _ PRON PRP$ _ 22 nmod:poss _ _ 20 fellow _ NOUN JJ _ 22 compound _ _ 21 New _ PROPN NNP _ 22 compound _ _ 22 Yorkers _ PROPN NNPS _ 17 nmod _ _ 23 , _ PUNCT , _ 30 punct _ _ 24 would _ AUX MD _ 30 aux _ _ 25 the _ DET DT _ 26 det _ _ 26 water _ NOUN NN _ 30 nsubj _ _ 27 be _ VERB VB _ 30 cop _ _ 28 quite _ ADV RB _ 30 advmod _ _ 29 so _ ADV RB _ 30 advmod _ _ 30 hot _ ADJ JJ _ 0 root _ _ 31 ? _ PUNCT . _ 30 punct _ _ 1 It _ PRON PRP _ 19 nsubj _ _ 2 probably _ ADV RB _ 19 advmod _ _ 3 would _ AUX MD _ 19 aux _ _ 4 , _ PUNCT , _ 19 punct _ _ 5 because _ SCONJ IN _ 19 mark _ _ 6 few _ ADJ JJ _ 19 nsubj _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 none _ NOUN NN _ 6 conj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 people _ NOUN NNS _ 6 nmod _ _ 12 upset _ ADJ VBN _ 11 amod _ _ 13 by _ ADP IN _ 17 case _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Mason _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 remarks _ NOUN NNS _ 12 nmod _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 bothered _ VERB VBN _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 distinguish _ VERB VB _ 19 xcomp _ _ 22 between _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 substance _ NOUN NN _ 21 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 his _ PRON PRP$ _ 27 nmod:poss _ _ 27 comments _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 the _ DET DT _ 30 det _ _ 30 fact _ NOUN NN _ 24 conj _ _ 31 that _ SCONJ IN _ 33 mark _ _ 32 he _ PRON PRP _ 33 nsubj _ _ 33 used _ VERB VBD _ 30 ccomp _ _ 34 insulting _ ADJ JJ _ 35 amod _ _ 35 language _ NOUN NN _ 33 dobj _ _ 36 . _ PUNCT . _ 19 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 some _ DET DT _ 11 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Mason _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 critics _ NOUN NNS _ 4 nmod _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 implied _ VERB VBN _ 0 root _ _ 12 that _ SCONJ IN _ 21 mark _ _ 13 his _ PRON PRP$ _ 14 nmod:poss _ _ 14 type _ NOUN NN _ 21 nsubj _ _ 15 of _ ADP IN _ 17 case _ _ 16 ethnic _ ADJ JJ _ 17 amod _ _ 17 humor _ NOUN NN _ 14 nmod _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 itself _ PRON PRP _ 21 nmod:npmod _ _ 20 a _ DET DT _ 21 det _ _ 21 form _ NOUN NN _ 11 ccomp _ _ 22 of _ ADP IN _ 23 case _ _ 23 racism _ NOUN NN _ 21 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 the _ DET DT _ 8 det _ _ 5 New _ PROPN NNP _ 8 compound _ _ 6 York _ PROPN NNP _ 8 compound _ _ 7 state _ NOUN NN _ 8 compound _ _ 8 counsel _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 NAACP _ PROPN NNP _ 8 nmod _ _ 12 said _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 20 mark _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Mason _ PROPN NNP _ 20 nsubj _ _ 16 is _ VERB VBZ _ 20 cop _ _ 17 `` _ PUNCT `` _ 20 punct _ _ 18 like _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 dinosaur _ NOUN NN _ 12 ccomp _ _ 21 . _ PUNCT . _ 12 punct _ _ 1 People _ NOUN NNS _ 4 nsubj _ _ 2 are _ AUX VBP _ 4 aux _ _ 3 fast _ ADV JJ _ 4 advmod _ _ 4 leaving _ VERB VBG _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 place _ NOUN NN _ 4 dobj _ _ 7 where _ ADV WRB _ 10 advmod _ _ 8 he _ PRON PRP _ 10 nsubjpass _ _ 9 is _ AUX VBZ _ 10 auxpass _ _ 10 stuck _ VERB VBN _ 6 acl:relcl _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 critics _ NOUN NNS _ 3 nsubj _ _ 3 fail _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 distinguish _ VERB VB _ 3 xcomp _ _ 6 between _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 type _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 ethnic _ ADJ JJ _ 11 amod _ _ 11 humor _ NOUN NN _ 8 nmod _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 aims _ VERB VBZ _ 8 acl:relcl _ _ 14 at _ SCONJ IN _ 15 mark _ _ 15 disparaging _ VERB VBG _ 13 advcl _ _ 16 another _ DET DT _ 17 det _ _ 17 group _ NOUN NN _ 15 dobj _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 such _ ADJ JJ _ 23 case _ _ 20 as _ ADP IN _ 19 mwe _ _ 21 `` _ PUNCT `` _ 23 punct _ _ 22 Polish _ ADJ JJ _ 23 amod _ _ 23 jokes _ NOUN NNS _ 8 nmod _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 ; _ PUNCT : _ 8 punct _ _ 26 and _ CONJ CC _ 8 cc _ _ 27 the _ DET DT _ 28 det _ _ 28 type _ NOUN NN _ 8 conj _ _ 29 that _ PRON WDT _ 31 nsubj _ _ 30 is _ VERB VBZ _ 31 cop _ _ 31 double-edged _ ADJ JJ _ 28 acl:relcl _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 aiming _ VERB VBG _ 31 xcomp _ _ 34 inward _ ADV JJ _ 33 advmod _ _ 35 as _ ADV RB _ 34 cc _ _ 36 well _ ADV RB _ 35 mwe _ _ 37 as _ ADP IN _ 35 mwe _ _ 38 outward _ ADV JJ _ 34 conj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 latter _ ADJ JJ _ 6 nsubj _ _ 3 typically _ ADV RB _ 6 advmod _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 humor _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 underdog _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 it _ PRON PRP _ 14 nsubjpass _ _ 13 was _ AUX VBD _ 14 auxpass _ _ 14 perfected _ VERB VBN _ 6 conj _ _ 15 by _ ADP IN _ 17 case _ _ 16 both _ DET CC _ 17 cc:preconj _ _ 17 blacks _ PROPN NNS _ 14 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 Jews _ PROPN NNS _ 17 conj _ _ 20 on _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 minstrel _ NOUN NN _ 25 compound _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 vaudeville _ NOUN NN _ 22 conj _ _ 25 stage _ NOUN NN _ 14 nmod _ _ 26 as _ ADP IN _ 28 case _ _ 27 a _ DET DT _ 28 det _ _ 28 means _ NOUN NN _ 14 nmod _ _ 29 of _ SCONJ IN _ 30 mark _ _ 30 mocking _ VERB VBG _ 28 acl _ _ 31 their _ PRON PRP$ _ 35 nmod:poss _ _ 32 white _ ADJ JJ _ 35 amod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 gentile _ ADJ JJ _ 32 conj _ _ 35 audiences _ NOUN NNS _ 30 dobj _ _ 36 along _ ADP IN _ 35 advmod _ _ 37 with _ ADP IN _ 38 case _ _ 38 themselves _ PRON PRP _ 36 nmod _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 hands _ NOUN NNS _ 15 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 zealot _ NOUN NN _ 3 nmod _ _ 7 like _ ADP IN _ 9 case _ _ 8 Lenny _ PROPN NNP _ 9 compound _ _ 9 Bruce _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 this _ DET DT _ 13 det _ _ 12 double-edged _ ADJ JJ _ 13 amod _ _ 13 blade _ NOUN NN _ 15 nsubj _ _ 14 could _ AUX MD _ 15 aux _ _ 15 cut _ VERB VB _ 0 root _ _ 16 both _ DET CC _ 18 cc:preconj _ _ 17 the _ DET DT _ 18 det _ _ 18 self _ NOUN NN _ 15 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 audience _ NOUN NN _ 18 conj _ _ 22 to _ ADP TO _ 23 case _ _ 23 ribbons _ NOUN NNS _ 15 nmod _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 wielded _ VERB VBN _ 14 advcl _ _ 3 by _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 pro _ NOUN FW _ 2 nmod _ _ 6 like _ ADP IN _ 8 case _ _ 7 Jackie _ PROPN NNP _ 8 compound _ _ 8 Mason _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 it _ PRON PRP _ 14 nsubj _ _ 11 is _ VERB VBZ _ 14 cop _ _ 12 a _ DET DT _ 14 det _ _ 13 constructive _ ADJ JJ _ 14 amod _ _ 14 form _ NOUN NN _ 0 root _ _ 15 of _ ADP IN _ 16 case _ _ 16 mischief _ NOUN NN _ 14 nmod _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 Why _ ADV WRB _ 2 advmod _ _ 2 constructive _ ADJ JJ _ 0 root _ _ 3 ? _ PUNCT . _ 2 punct _ _ 1 Because _ SCONJ IN _ 16 mark _ _ 2 despite _ ADP IN _ 6 case _ _ 3 all _ DET PDT _ 6 det:predet _ _ 4 the _ DET DT _ 6 det _ _ 5 media _ NOUN NNS _ 6 compound _ _ 6 prattle _ NOUN VBP _ 16 nmod _ _ 7 about _ SCONJ IN _ 12 mark _ _ 8 comedy _ NOUN NN _ 12 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 politics _ NOUN NNS _ 8 conj _ _ 11 not _ ADV RB _ 12 neg _ _ 12 mixing _ VERB VBG _ 6 acl _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 they _ PRON PRP _ 16 nsubj _ _ 15 are _ VERB VBP _ 16 cop _ _ 16 similar _ ADJ JJ _ 23 dep _ _ 17 in _ ADP IN _ 19 case _ _ 18 one _ NUM CD _ 19 nummod _ _ 19 respect _ NOUN NN _ 16 nmod _ _ 20 : _ PUNCT : _ 23 punct _ _ 21 Both _ DET CC _ 23 nsubj _ _ 22 can _ AUX MD _ 23 aux _ _ 23 serve _ VERB VB _ 0 root _ _ 24 as _ ADP IN _ 25 case _ _ 25 mechanisms _ NOUN NNS _ 23 nmod _ _ 26 for _ SCONJ IN _ 27 mark _ _ 27 easing _ VERB VBG _ 25 acl _ _ 28 tensions _ NOUN NNS _ 27 dobj _ _ 29 and _ CONJ CC _ 27 cc _ _ 30 facilitating _ VERB VBG _ 27 conj _ _ 31 the _ DET DT _ 32 det _ _ 32 co-existence _ NOUN NN _ 30 dobj _ _ 33 of _ ADP IN _ 34 case _ _ 34 groups _ NOUN NNS _ 32 nmod _ _ 35 in _ ADP IN _ 36 case _ _ 36 conflict _ NOUN NN _ 34 nmod _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 why _ ADV WRB _ 6 advmod _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 's _ VERB VBZ _ 6 cop _ _ 6 dangerous _ ADJ JJ _ 2 advcl _ _ 7 to _ PART TO _ 8 mark _ _ 8 have _ VERB VB _ 6 xcomp _ _ 9 well-intentioned _ ADJ JJ _ 11 amod _ _ 10 thought _ NOUN NN _ 11 compound _ _ 11 police _ NOUN NN _ 19 nsubj _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 on _ ADP IN _ 15 case _ _ 14 college _ NOUN NN _ 15 compound _ _ 15 campuses _ NOUN NNS _ 19 dep _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 elsewhere _ ADV RB _ 15 conj _ _ 18 , _ PUNCT , _ 19 punct _ _ 19 taboo _ VERB NN _ 8 ccomp _ _ 20 all _ DET DT _ 22 det _ _ 21 critical _ ADJ JJ _ 22 amod _ _ 22 mention _ NOUN NN _ 19 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 group _ NOUN NN _ 25 compound _ _ 25 differences _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 Elizabeth _ PROPN NNP _ 3 compound _ _ 3 Kristol _ PROPN NNP _ 4 nsubj _ _ 4 wrote _ VERB VBD _ 21 advcl _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 New _ PROPN NNP _ 9 compound _ _ 8 York _ PROPN NNP _ 9 compound _ _ 9 Times _ PROPN NNP _ 4 nmod _ _ 10 just _ ADV RB _ 14 advmod _ _ 11 before _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Mason _ PROPN NNP _ 14 compound _ _ 14 donnybrook _ NOUN NN _ 4 nmod _ _ 15 , _ PUNCT , _ 21 punct _ _ 16 `` _ PUNCT `` _ 21 punct _ _ 17 Perhaps _ ADV RB _ 21 advmod _ _ 18 intolerance _ NOUN NN _ 21 nsubj _ _ 19 would _ AUX MD _ 21 aux _ _ 20 not _ PART RB _ 21 neg _ _ 21 boil _ VERB VB _ 0 root _ _ 22 over _ ADP RP _ 21 compound:prt _ _ 23 with _ ADP IN _ 25 case _ _ 24 such _ ADJ JJ _ 25 amod _ _ 25 intensity _ NOUN NN _ 21 nmod _ _ 26 if _ SCONJ IN _ 30 mark _ _ 27 honest _ ADJ JJ _ 28 amod _ _ 28 differences _ NOUN NNS _ 30 nsubjpass _ _ 29 were _ AUX VBD _ 30 auxpass _ _ 30 allowed _ VERB VBN _ 21 advcl _ _ 31 to _ PART TO _ 32 mark _ _ 32 simmer _ VERB VB _ 30 xcomp _ _ 33 . _ PUNCT . _ 21 punct _ _ 34 '' _ PUNCT '' _ 21 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 question _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 if _ SCONJ IN _ 9 mark _ _ 6 group _ NOUN NN _ 7 compound _ _ 7 conflicts _ NOUN NNS _ 9 nsubj _ _ 8 still _ ADV RB _ 9 advmod _ _ 9 exist _ VERB VBP _ 35 dep _ _ 10 -LRB- _ PUNCT -LRB- _ 14 punct _ _ 11 as _ SCONJ IN _ 14 mark _ _ 12 undeniably _ ADV RB _ 14 advmod _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 do _ VERB VBP _ 9 parataxis _ _ 15 -RRB- _ PUNCT -RRB- _ 14 punct _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 if _ SCONJ IN _ 27 mark _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Mason _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 type _ NOUN NN _ 27 nsubj _ _ 23 of _ ADP IN _ 25 case _ _ 24 ethnic _ ADJ JJ _ 25 amod _ _ 25 humor _ NOUN NN _ 22 nmod _ _ 26 is _ VERB VBZ _ 27 cop _ _ 27 passe _ ADJ JJ _ 9 conj _ _ 28 , _ PUNCT , _ 35 punct _ _ 29 then _ ADV RB _ 35 advmod _ _ 30 what _ PRON WP _ 32 det _ _ 31 other _ ADJ JJ _ 32 amod _ _ 32 means _ NOUN NNS _ 35 dobj _ _ 33 do _ AUX VBP _ 35 aux _ _ 34 we _ PRON PRP _ 35 nsubj _ _ 35 have _ VERB VB _ 3 ccomp _ _ 36 for _ SCONJ IN _ 37 mark _ _ 37 letting _ VERB VBG _ 35 advcl _ _ 38 off _ ADP RP _ 37 compound:prt _ _ 39 steam _ NOUN NN _ 37 dobj _ _ 40 ? _ PUNCT . _ 35 punct _ _ 1 Do _ AUX VBP _ 3 aux _ _ 2 n't _ PART RB _ 3 neg _ _ 3 say _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 TV _ NOUN NN _ 6 compound _ _ 6 sitcom _ NOUN NN _ 3 dep _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 because _ SCONJ IN _ 10 mark _ _ 9 that _ PRON DT _ 10 nsubj _ _ 10 happens _ VERB VBZ _ 3 advcl _ _ 11 to _ PART TO _ 14 mark _ _ 12 be _ VERB VB _ 14 cop _ _ 13 a _ DET DT _ 14 det _ _ 14 genre _ NOUN NN _ 10 xcomp _ _ 15 that _ ADP IN _ 28 nsubj _ _ 16 , _ PUNCT , _ 28 punct _ _ 17 in _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 desperate _ ADJ JJ _ 20 amod _ _ 20 need _ NOUN NN _ 28 nmod _ _ 21 to _ PART TO _ 22 mark _ _ 22 attract _ VERB VB _ 20 acl _ _ 23 everybody _ NOUN NN _ 22 dobj _ _ 24 and _ CONJ CC _ 22 cc _ _ 25 offend _ VERB VB _ 22 conj _ _ 26 nobody _ NOUN NN _ 25 dobj _ _ 27 , _ PUNCT , _ 28 punct _ _ 28 resembles _ VERB VBZ _ 14 acl:relcl _ _ 29 politics _ NOUN NNS _ 28 xcomp _ _ 30 more _ ADV JJR _ 28 advmod _ _ 31 than _ SCONJ IN _ 34 mark _ _ 32 it _ PRON PRP _ 34 nsubj _ _ 33 does _ AUX VBZ _ 34 aux _ _ 34 comedy _ NOUN NN _ 30 advcl _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 true _ ADJ JJ _ 0 root _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 the _ DET DT _ 7 det _ _ 6 best _ ADJ JJS _ 7 amod _ _ 7 sitcoms _ NOUN NNS _ 9 nsubj _ _ 8 do _ AUX VBP _ 9 aux _ _ 9 allow _ VERB VB _ 3 ccomp _ _ 10 group _ NOUN NN _ 11 compound _ _ 11 differences _ NOUN NNS _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 simmer _ VERB VB _ 9 xcomp _ _ 14 : _ PUNCT : _ 3 punct _ _ 15 yuppies _ NOUN NNS _ 3 parataxis _ _ 16 vs. _ ADP CC _ 18 case _ _ 17 blue-collar _ ADJ JJ _ 18 amod _ _ 18 Bostonians _ PROPN NNS _ 15 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 Cheers _ PROPN NNP _ 15 nmod _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 ; _ PUNCT : _ 15 punct _ _ 24 children _ NOUN NNS _ 15 dep _ _ 25 vs. _ ADP CC _ 26 case _ _ 26 adults _ NOUN NNS _ 24 nmod _ _ 27 in _ ADP IN _ 31 case _ _ 28 `` _ PUNCT `` _ 31 punct _ _ 29 The _ DET DT _ 31 det _ _ 30 Cosby _ PROPN NNP _ 31 compound _ _ 31 Show _ PROPN NNP _ 24 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 33 '' _ PUNCT '' _ 3 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 these _ PRON DT _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 not _ PART RB _ 6 neg _ _ 5 the _ DET DT _ 6 det _ _ 6 differences _ NOUN NNS _ 0 root _ _ 7 that _ PRON WDT _ 8 nsubj _ _ 8 make _ VERB VBP _ 6 acl:relcl _ _ 9 headlines _ NOUN NNS _ 8 dobj _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 Chicken _ PROPN NNP _ 4 compound _ _ 4 Soup _ PROPN NNP _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 '' _ PUNCT '' _ 9 punct _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Mason _ PROPN NNP _ 9 nsubj _ _ 9 plays _ VERB VBZ _ 0 root _ _ 10 Jackie _ PROPN NNP _ 9 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 Jewish _ ADJ JJ _ 14 amod _ _ 14 bachelor _ NOUN NN _ 10 appos _ _ 15 courting _ VERB VBG _ 14 acl _ _ 16 Maddie _ PROPN NNP _ 15 dobj _ _ 17 -LRB- _ PUNCT -LRB- _ 19 punct _ _ 18 Lynn _ PROPN NNP _ 19 compound _ _ 19 Redgrave _ PROPN NNP _ 16 appos _ _ 20 -RRB- _ PUNCT -RRB- _ 19 punct _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 an _ DET DT _ 24 det _ _ 23 Irish _ ADJ JJ _ 24 amod _ _ 24 widow _ NOUN NN _ 16 appos _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 mother _ NOUN NN _ 24 conj _ _ 27 of _ ADP IN _ 28 case _ _ 28 three _ NUM CD _ 24 nmod _ _ 29 , _ PUNCT , _ 15 punct _ _ 30 against _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 wishes _ NOUN NNS _ 15 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 his _ PRON PRP$ _ 35 nmod:poss _ _ 35 mother _ NOUN NN _ 32 nmod _ _ 36 -LRB- _ PUNCT -LRB- _ 38 punct _ _ 37 Rita _ PROPN NNP _ 38 compound _ _ 38 Karin _ PROPN NNP _ 35 appos _ _ 39 -RRB- _ PUNCT -RRB- _ 38 punct _ _ 40 and _ CONJ CC _ 35 cc _ _ 41 her _ PRON PRP$ _ 43 nmod:poss _ _ 42 brother _ NOUN NN _ 43 compound _ _ 43 Michael _ PROPN NNP _ 35 conj _ _ 44 -LRB- _ PUNCT -LRB- _ 46 punct _ _ 45 Brandon _ PROPN NNP _ 46 compound _ _ 46 Maggart _ PROPN NNP _ 43 appos _ _ 47 -RRB- _ PUNCT -RRB- _ 46 punct _ _ 48 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ PART VBZ _ 3 dep _ _ 3 worth _ ADJ JJ _ 0 root _ _ 4 noting _ VERB VBG _ 3 dep _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 both _ DET CC _ 8 det _ _ 7 disapproving _ ADJ VBG _ 8 amod _ _ 8 relatives _ NOUN NNS _ 10 nsubj _ _ 9 are _ VERB VBP _ 10 cop _ _ 10 immigrants _ NOUN NNS _ 3 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 least _ ADJ JJS _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 they _ PRON PRP _ 6 nsubj _ _ 5 both _ DET DT _ 6 dep _ _ 6 speak _ VERB VBP _ 0 root _ _ 7 with _ ADP IN _ 9 case _ _ 8 strong _ ADJ JJ _ 9 amod _ _ 9 accents _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 as _ SCONJ RB _ 12 dep _ _ 12 do _ VERB VBP _ 6 advcl _ _ 13 Jackie _ PROPN NNP _ 12 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Maddie _ PROPN NNP _ 13 conj _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 could _ AUX MD _ 6 aux _ _ 3 n't _ PART RB _ 6 neg _ _ 4 be _ VERB VB _ 6 cop _ _ 5 more _ ADV RBR _ 6 advmod _ _ 6 obvious _ ADJ JJ _ 0 root _ _ 7 that _ SCONJ IN _ 14 mark _ _ 8 `` _ PUNCT `` _ 14 punct _ _ 9 Chicken _ PROPN NNP _ 10 compound _ _ 10 Soup _ PROPN NNP _ 14 nsubjpass _ _ 11 '' _ PUNCT '' _ 14 punct _ _ 12 is _ AUX VBZ _ 14 aux _ _ 13 being _ AUX VBG _ 14 auxpass _ _ 14 made _ VERB VBN _ 6 ccomp _ _ 15 from _ ADP IN _ 18 case _ _ 16 an _ DET DT _ 18 det _ _ 17 old _ ADJ JJ _ 18 amod _ _ 18 recipe _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 a _ DET DT _ 4 det _ _ 3 safe _ ADJ JJ _ 4 amod _ _ 4 one _ NUM CD _ 6 dep _ _ 5 -- _ PUNCT : _ 6 punct _ _ 6 imagine _ VERB VBP _ 0 root _ _ 7 if _ SCONJ IN _ 16 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 romance _ NOUN NN _ 16 nsubj _ _ 10 in _ ADP IN _ 11 case _ _ 11 question _ NOUN NN _ 9 nmod _ _ 12 were _ VERB VBD _ 16 cop _ _ 13 between _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 Orthodox _ PROPN NNP _ 16 compound _ _ 16 Jew _ PROPN NN _ 6 advcl _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 a _ DET DT _ 19 det _ _ 19 member _ NOUN NN _ 16 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 Nation _ PROPN NN _ 19 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 Islam _ PROPN NNP _ 22 nmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 Back _ ADV RB _ 18 advmod _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 1920s _ NOUN CD _ 1 nmod _ _ 5 , _ PUNCT , _ 18 punct _ _ 6 the _ DET DT _ 10 det _ _ 7 play _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 movie _ NOUN NN _ 7 conj _ _ 10 versions _ NOUN NNS _ 18 nsubj _ _ 11 of _ ADP IN _ 16 case _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 Abie _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 Irish _ PROPN JJ _ 16 compound _ _ 16 Rose _ PROPN NNP _ 10 nmod _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 made _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 20 det _ _ 20 theme _ NOUN NN _ 33 nsubj _ _ 21 of _ ADP IN _ 22 case _ _ 22 courtship _ NOUN NN _ 20 nmod _ _ 23 between _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 assimilated _ ADJ JJ _ 26 amod _ _ 26 offspring _ NOUN NN _ 22 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 Jewish _ ADJ JJ _ 31 amod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 Irish _ ADJ JJ _ 28 conj _ _ 31 immigrants _ NOUN NNS _ 26 nmod _ _ 32 so _ ADV RB _ 33 advmod _ _ 33 popular _ ADJ JJ _ 18 xcomp _ _ 34 that _ SCONJ IN _ 41 mark _ _ 35 its _ PRON PRP$ _ 36 nmod:poss _ _ 36 author _ NOUN NN _ 41 nsubj _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 Anne _ PROPN NNP _ 39 compound _ _ 39 Nichols _ PROPN NNP _ 36 appos _ _ 40 , _ PUNCT , _ 36 punct _ _ 41 lost _ VERB VBD _ 33 ccomp _ _ 42 a _ DET DT _ 44 det _ _ 43 plagiarism _ NOUN NN _ 44 compound _ _ 44 suit _ NOUN NN _ 41 dobj _ _ 45 on _ ADP IN _ 47 case _ _ 46 the _ DET DT _ 47 det _ _ 47 grounds _ NOUN NNS _ 41 nmod _ _ 48 that _ SCONJ IN _ 52 mark _ _ 49 the _ DET DT _ 50 det _ _ 50 plot _ NOUN NN _ 52 nsubj _ _ 51 has _ AUX VBZ _ 52 aux _ _ 52 entered _ VERB VBN _ 47 ccomp _ _ 53 the _ DET DT _ 55 det _ _ 54 public _ ADJ JJ _ 55 amod _ _ 55 domain _ NOUN NN _ 52 dobj _ _ 56 . _ PUNCT . _ 18 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 remained _ VERB VBN _ 0 root _ _ 5 there _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 as _ SCONJ IN _ 8 mark _ _ 8 evidenced _ VERB VBN _ 4 advcl _ _ 9 by _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 reappearance _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 16 case _ _ 13 a _ DET DT _ 16 det _ _ 14 1972 _ NUM CD _ 16 nummod _ _ 15 CBS _ PROPN NNP _ 16 compound _ _ 16 sitcom _ NOUN NN _ 11 nmod _ _ 17 called _ VERB VBN _ 16 acl _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 Bridget _ PROPN NNP _ 21 nsubj _ _ 20 Loves _ PROPN VBZ _ 21 dep _ _ 21 Bernie _ PROPN NNP _ 17 xcomp _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 '' _ PUNCT '' _ 16 punct _ _ 24 whose _ PRON WP$ _ 26 nmod:poss _ _ 25 sole _ ADJ JJ _ 26 amod _ _ 26 distinction _ NOUN NN _ 27 nsubj _ _ 27 was _ VERB VBD _ 16 acl:relcl _ _ 28 that _ SCONJ IN _ 30 mark _ _ 29 it _ PRON PRP _ 30 nsubj _ _ 30 led _ VERB VBD _ 27 ccomp _ _ 31 to _ ADP TO _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 real-life _ ADJ JJ _ 34 amod _ _ 34 marriage _ NOUN NN _ 30 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 Meredith _ PROPN NNP _ 37 compound _ _ 37 Baxter _ PROPN NNP _ 34 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 David _ PROPN NNP _ 40 compound _ _ 40 Birney _ PROPN NNP _ 37 conj _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 Clearly _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 question _ NOUN NN _ 10 nsubj _ _ 5 with _ ADP IN _ 8 case _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 Chicken _ PROPN NNP _ 8 compound _ _ 8 Soup _ PROPN NNP _ 4 nmod _ _ 9 '' _ PUNCT '' _ 8 punct _ _ 10 is _ VERB VBZ _ 0 root _ _ 11 not _ PART RB _ 10 neg _ _ 12 whether _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 14 det _ _ 14 pot _ NOUN NN _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 boil _ VERB VB _ 10 ccomp _ _ 17 over _ ADP RP _ 16 compound:prt _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 but _ CONJ CC _ 16 cc _ _ 20 whether _ SCONJ IN _ 23 mark _ _ 21 it _ PRON PRP _ 23 nsubj _ _ 22 will _ AUX MD _ 23 aux _ _ 23 simmer _ VERB VB _ 16 conj _ _ 24 at _ ADP IN _ 25 case _ _ 25 all _ DET DT _ 23 nmod _ _ 26 . _ PUNCT . _ 10 punct _ _ 1 So _ ADP RB _ 2 case _ _ 2 far _ ADV RB _ 8 advmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 bubbles _ NOUN NNS _ 8 nsubj _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 few _ ADJ JJ _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 far _ ADV RB _ 11 advmod _ _ 11 between _ ADV IN _ 8 advmod _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 Part _ NOUN NN _ 7 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 problem _ NOUN NN _ 1 nmod _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 tendency _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 10 case _ _ 9 all _ DET DT _ 10 det _ _ 10 sitcoms _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 ever _ ADV RB _ 16 advmod _ _ 13 since _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 didactic _ ADJ JJ _ 16 amod _ _ 16 days _ NOUN NNS _ 7 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 Norman _ PROPN NNP _ 19 compound _ _ 19 Lear _ PROPN NNP _ 16 nmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 to _ PART TO _ 22 mark _ _ 22 preach _ VERB VB _ 7 acl _ _ 23 about _ ADP IN _ 25 case _ _ 24 social _ ADJ JJ _ 25 amod _ _ 25 issues _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 some _ DET DT _ 3 det _ _ 3 extent _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 this _ DET DT _ 6 det _ _ 6 tendency _ NOUN NN _ 7 nsubj _ _ 7 emerges _ VERB VBZ _ 0 root _ _ 8 whenever _ ADV WRB _ 11 advmod _ _ 9 the _ DET DT _ 10 det _ _ 10 show _ NOUN NN _ 11 nsubj _ _ 11 tries _ VERB VBZ _ 7 advcl _ _ 12 to _ PART TO _ 13 mark _ _ 13 enlighten _ VERB VB _ 11 xcomp _ _ 14 us _ PRON PRP _ 13 dobj _ _ 15 about _ ADP IN _ 17 case _ _ 16 ethnic _ ADJ JJ _ 17 amod _ _ 17 stereotypes _ NOUN NNS _ 13 nmod _ _ 18 by _ SCONJ IN _ 19 mark _ _ 19 reversing _ VERB VBG _ 13 advcl _ _ 20 them _ PRON PRP _ 19 dobj _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Michael _ PROPN NNP _ 5 nsubj _ _ 5 dislikes _ VERB NN _ 0 root _ _ 6 Jackie _ PROPN NNP _ 5 dobj _ _ 7 not _ ADV RB _ 14 dep _ _ 8 because _ SCONJ IN _ 14 mark _ _ 9 he _ PRON PRP _ 14 nsubj _ _ 10 's _ VERB VBZ _ 14 cop _ _ 11 a _ DET DT _ 14 det _ _ 12 shrewd _ ADJ JJ _ 14 amod _ _ 13 Jewish _ ADJ JJ _ 14 amod _ _ 14 businessman _ NOUN NN _ 5 advcl _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 but _ CONJ CC _ 14 cc _ _ 17 because _ SCONJ IN _ 19 mark _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 quits _ VERB VBZ _ 14 conj _ _ 20 his _ PRON PRP$ _ 22 nmod:poss _ _ 21 well-paying _ ADJ JJ _ 22 amod _ _ 22 job _ NOUN NN _ 19 dobj _ _ 23 as _ ADP IN _ 25 case _ _ 24 a _ DET DT _ 25 det _ _ 25 salesman _ NOUN NN _ 22 nmod _ _ 26 in _ SCONJ IN _ 29 mark _ _ 27 order _ NOUN NN _ 26 mwe _ _ 28 to _ PART TO _ 29 mark _ _ 29 become _ VERB VB _ 19 advcl _ _ 30 a _ DET DT _ 32 det _ _ 31 social _ ADJ JJ _ 32 amod _ _ 32 worker _ NOUN NN _ 29 xcomp _ _ 33 . _ PUNCT . _ 5 punct _ _ 1 Even _ ADV RB _ 2 advmod _ _ 2 more _ ADV RBR _ 3 advmod _ _ 3 problematic _ ADJ JJ _ 4 dep _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 incompatibility _ NOUN NN _ 4 nsubj _ _ 7 between _ ADP IN _ 9 case _ _ 8 sitcom _ NOUN NN _ 9 compound _ _ 9 preachiness _ NOUN NN _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Mason _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 comic _ ADJ JJ _ 15 amod _ _ 15 persona _ NOUN NN _ 9 conj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 best _ ADJ JJS _ 3 amod _ _ 3 moments _ NOUN NNS _ 7 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 show _ NOUN NN _ 3 nmod _ _ 7 occur _ VERB VBP _ 0 root _ _ 8 at _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 beginning _ NOUN NN _ 7 advcl _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 13 det _ _ 13 end _ NOUN NN _ 10 conj _ _ 14 -LRB- _ PUNCT -LRB- _ 19 punct _ _ 15 and _ CONJ CC _ 19 cc _ _ 16 occasionally _ ADV RB _ 19 dep _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 middle _ NOUN NN _ 10 dep _ _ 20 -RRB- _ PUNCT -RRB- _ 19 punct _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 when _ ADV WRB _ 25 advmod _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Mason _ PROPN NNP _ 25 nsubj _ _ 25 slips _ VERB VBZ _ 19 acl:relcl _ _ 26 into _ ADP IN _ 29 case _ _ 27 his _ PRON PRP$ _ 29 nmod:poss _ _ 28 standup _ ADJ NN _ 29 amod _ _ 29 mode _ NOUN NN _ 25 nmod _ _ 30 and _ CONJ CC _ 25 cc _ _ 31 starts _ NOUN VBZ _ 25 conj _ _ 32 meting _ VERB VBG _ 31 xcomp _ _ 33 out _ ADP RP _ 32 compound:prt _ _ 34 that _ DET IN _ 37 det _ _ 35 old-fashioned _ ADJ JJ _ 37 amod _ _ 36 Jewish _ ADJ JJ _ 37 amod _ _ 37 mischief _ NOUN NN _ 32 dobj _ _ 38 to _ ADP TO _ 40 case _ _ 39 other _ ADJ JJ _ 40 amod _ _ 40 people _ NOUN NNS _ 32 nmod _ _ 41 as _ ADV RB _ 40 cc _ _ 42 well _ ADV RB _ 41 mwe _ _ 43 as _ ADP IN _ 41 mwe _ _ 44 to _ ADP TO _ 45 case _ _ 45 himself _ PRON PRP _ 40 conj _ _ 46 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 too _ ADV RB _ 3 advmod _ _ 3 often _ ADV RB _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 these _ DET DT _ 6 det _ _ 6 routines _ NOUN NNS _ 7 nsubj _ _ 7 lack _ VERB VBP _ 0 root _ _ 8 spark _ NOUN VB _ 7 dobj _ _ 9 because _ SCONJ IN _ 18 mark _ _ 10 this _ DET DT _ 11 det _ _ 11 sitcom _ NOUN NN _ 18 nsubj _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 like _ ADP IN _ 15 case _ _ 14 all _ DET DT _ 15 det _ _ 15 sitcoms _ NOUN NNS _ 18 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 is _ VERB VBZ _ 18 cop _ _ 18 timid _ ADJ JJ _ 7 advcl _ _ 19 about _ SCONJ IN _ 20 mark _ _ 20 confronting _ VERB VBG _ 18 advcl _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Mason _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 stock _ NOUN NN _ 20 dobj _ _ 25 in _ ADP IN _ 26 case _ _ 26 trade _ NOUN NN _ 24 nmod _ _ 27 - _ PUNCT : _ 24 punct _ _ 28 ethnic _ ADJ JJ _ 29 amod _ _ 29 differences _ NOUN NNS _ 24 dep _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 'm _ AUX VBP _ 4 aux _ _ 3 not _ PART RB _ 4 neg _ _ 4 suggesting _ VERB VBG _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 producers _ NOUN NNS _ 8 nsubj _ _ 8 start _ VERB VBP _ 4 ccomp _ _ 9 putting _ VERB VBG _ 8 xcomp _ _ 10 together _ ADV RP _ 9 advmod _ _ 11 episodes _ NOUN NNS _ 9 dobj _ _ 12 about _ ADP IN _ 13 case _ _ 13 topics _ NOUN NNS _ 11 nmod _ _ 14 like _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 Catholic-Jewish _ ADJ JJ _ 17 amod _ _ 17 dispute _ NOUN NN _ 13 nmod _ _ 18 over _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Carmelite _ ADJ JJ _ 21 amod _ _ 21 convent _ NOUN NN _ 17 nmod _ _ 22 at _ ADP IN _ 23 case _ _ 23 Auschwitz _ PROPN NNP _ 21 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 issue _ NOUN NN _ 13 nsubj _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 like _ ADP IN _ 6 case _ _ 5 racial _ ADJ JJ _ 6 amod _ _ 6 tensions _ NOUN NNS _ 13 nmod _ _ 7 in _ ADP IN _ 10 case _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 York _ PROPN NNP _ 10 compound _ _ 10 City _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 will _ AUX MD _ 13 aux _ _ 13 have _ VERB VB _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 cool _ VERB VB _ 13 xcomp _ _ 16 down _ ADP RB _ 15 compound:prt _ _ 17 , _ PUNCT , _ 15 punct _ _ 18 not _ PART RB _ 19 neg _ _ 19 heat _ VERB NN _ 15 dep _ _ 20 up _ ADP RP _ 19 compound:prt _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 before _ SCONJ IN _ 25 mark _ _ 23 it _ PRON PRP _ 25 nsubj _ _ 24 can _ AUX MD _ 25 aux _ _ 25 simmer _ VERB VB _ 13 advcl _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 am _ AUX VBP _ 4 aux _ _ 4 suggesting _ VERB VBG _ 0 root _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 stop _ VERB VBP _ 4 ccomp _ _ 8 requiring _ VERB VBG _ 7 xcomp _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Mason _ PROPN NNP _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 interrupt _ VERB VB _ 8 xcomp _ _ 13 his _ PRON PRP$ _ 15 nmod:poss _ _ 14 classic _ ADJ JJ _ 15 amod _ _ 15 shtik _ NOUN NN _ 12 dobj _ _ 16 with _ ADP IN _ 18 case _ _ 17 some _ DET DT _ 18 det _ _ 18 line _ NOUN NN _ 12 nmod _ _ 19 about _ ADP IN _ 21 case _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 caring _ VERB VBG _ 18 acl _ _ 22 for _ ADP IN _ 24 case _ _ 23 other _ ADJ JJ _ 24 amod _ _ 24 people _ NOUN NNS _ 21 nmod _ _ 25 '' _ PUNCT '' _ 21 punct _ _ 26 that _ PRON WDT _ 28 nsubj _ _ 27 would _ AUX MD _ 28 aux _ _ 28 sound _ VERB VB _ 18 acl:relcl _ _ 29 shmaltzy _ NOUN NN _ 28 xcomp _ _ 30 on _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 lips _ NOUN NNS _ 28 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 Miss _ PROPN NNP _ 35 compound _ _ 35 America _ PROPN NNP _ 32 nmod _ _ 36 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 your _ PRON PRP$ _ 3 nmod:poss _ _ 3 age _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 Jackie _ PROPN NNP _ 8 nsubj _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 you _ PRON PRP _ 8 nsubj _ _ 8 ought _ AUX MD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 know _ VERB VB _ 8 xcomp _ _ 11 that _ SCONJ IN _ 15 mark _ _ 12 you _ PRON PRP _ 15 nsubj _ _ 13 ca _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 make _ VERB VB _ 10 ccomp _ _ 16 soup _ NOUN NN _ 15 dobj _ _ 17 without _ SCONJ IN _ 18 mark _ _ 18 turning _ VERB VBG _ 15 advcl _ _ 19 up _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 21 det _ _ 21 flame _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 official _ ADJ JJ _ 5 amod _ _ 3 White _ PROPN NNP _ 5 compound _ _ 4 House _ PROPN NNP _ 5 compound _ _ 5 reaction _ NOUN NN _ 12 nsubj _ _ 6 to _ ADP TO _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 plunge _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 has _ VERB VBZ _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 60-year _ ADJ JJ _ 15 amod _ _ 15 history _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 calm _ ADJ NN _ 15 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 right _ ADV RB _ 12 advmod _ _ 20 up _ ADP IN _ 19 case _ _ 21 through _ ADP IN _ 22 case _ _ 22 Friday _ PROPN NNP _ 19 nmod _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 Treasury _ PROPN NNP _ 4 compound _ _ 2 Secretary _ PROPN NNP _ 4 compound _ _ 3 Nicholas _ PROPN NNP _ 4 compound _ _ 4 Brady _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 statement _ NOUN NN _ 5 nmod _ _ 9 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 the _ DET DT _ 13 det _ _ 12 stock-market _ NOUN NN _ 13 compound _ _ 13 decline _ NOUN NN _ 17 nsubj _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 does _ AUX VBZ _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 signal _ VERB VB _ 5 ccomp _ _ 18 any _ DET DT _ 20 det _ _ 19 fundamental _ ADJ JJ _ 20 amod _ _ 20 change _ NOUN NN _ 17 dobj _ _ 21 in _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 condition _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 economy _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 28 '' _ PUNCT '' _ 5 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 economy _ NOUN NN _ 10 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 '' _ PUNCT '' _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 added _ VERB VBD _ 10 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 remains _ VERB VBZ _ 0 root _ _ 11 well-balanced _ ADJ JJ _ 10 xcomp _ _ 12 and _ CONJ CC _ 10 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 outlook _ NOUN NN _ 19 nsubj _ _ 15 is _ VERB VBZ _ 19 cop _ _ 16 for _ ADP IN _ 19 case _ _ 17 continued _ ADJ VBN _ 19 amod _ _ 18 moderate _ ADJ JJ _ 19 amod _ _ 19 growth _ NOUN NN _ 10 conj _ _ 20 . _ PUNCT . _ 10 punct _ _ 21 '' _ PUNCT '' _ 10 punct _ _ 1 Sound _ VERB NN _ 0 root _ _ 2 familiar _ ADJ JJ _ 1 xcomp _ _ 3 ? _ PUNCT . _ 1 punct _ _ 1 Here _ ADV RB _ 2 advmod _ _ 2 's _ VERB VBZ _ 16 dep _ _ 3 what _ PRON WP _ 6 dobj _ _ 4 Ronald _ PROPN NNP _ 5 compound _ _ 5 Reagan _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 2 dep _ _ 7 after _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 1987 _ NUM CD _ 10 nummod _ _ 10 crash _ NOUN NN _ 6 nmod _ _ 11 : _ PUNCT : _ 16 punct _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 The _ DET DT _ 15 det _ _ 14 underlying _ ADJ VBG _ 15 amod _ _ 15 economy _ NOUN NN _ 16 nsubj _ _ 16 remains _ VERB VBZ _ 0 root _ _ 17 sound _ ADJ JJ _ 16 xcomp _ _ 18 . _ PUNCT . _ 16 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 nothing _ NOUN NN _ 2 nsubj _ _ 4 wrong _ ADJ JJ _ 3 amod _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 economy _ NOUN NN _ 4 nmod _ _ 8 ... _ PUNCT : _ 2 punct _ _ 9 all _ DET PDT _ 11 det:predet _ _ 10 the _ DET DT _ 11 det _ _ 11 indices _ NOUN NNS _ 12 nsubj _ _ 12 are _ VERB VBP _ 2 parataxis _ _ 13 up _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 15 '' _ PUNCT '' _ 2 punct _ _ 1 Heard _ VERB VBN _ 0 root _ _ 2 that _ PRON IN _ 1 dobj _ _ 3 before _ ADV IN _ 1 advmod _ _ 4 ? _ PUNCT . _ 1 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 1929 _ NUM CD _ 4 nummod _ _ 4 crash _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Herbert _ PROPN NNP _ 7 compound _ _ 7 Hoover _ PROPN NNP _ 8 nsubj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 : _ PUNCT : _ 8 punct _ _ 10 `` _ PUNCT `` _ 24 punct _ _ 11 The _ DET DT _ 13 det _ _ 12 fundamental _ ADJ JJ _ 13 amod _ _ 13 business _ NOUN NN _ 24 nsubj _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 country _ NOUN NN _ 13 nmod _ _ 17 ... _ PUNCT : _ 24 punct _ _ 18 is _ VERB VBZ _ 24 cop _ _ 19 on _ ADP IN _ 24 case _ _ 20 a _ DET DT _ 24 det _ _ 21 sound _ ADJ NN _ 24 amod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 prosperous _ ADJ JJ _ 21 conj _ _ 24 basis _ NOUN NN _ 8 ccomp _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Robinson _ PROPN NNP _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 57 _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 old _ ADJ JJ _ 2 amod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 elected _ VERB VBN _ 0 root _ _ 10 president _ NOUN NN _ 9 xcomp _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 chief _ ADJ JJ _ 14 amod _ _ 13 executive _ ADJ JJ _ 14 amod _ _ 14 officer _ NOUN NN _ 10 conj _ _ 15 of _ ADP IN _ 17 case _ _ 16 this _ DET DT _ 17 det _ _ 17 maker _ NOUN NN _ 10 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 magnetic _ ADJ JJ _ 21 amod _ _ 20 recording _ NOUN NN _ 21 compound _ _ 21 heads _ NOUN NNS _ 17 nmod _ _ 22 for _ ADP IN _ 24 case _ _ 23 disk _ NOUN NN _ 24 compound _ _ 24 drives _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ VERB VBN _ 4 cop _ _ 4 president _ NOUN NN _ 0 root _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ JJ _ 8 amod _ _ 8 officer _ NOUN NN _ 4 conj _ _ 9 of _ ADP IN _ 12 case _ _ 10 Amperex _ PROPN NNP _ 12 compound _ _ 11 Electronics _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 division _ NOUN NN _ 12 appos _ _ 16 of _ ADP IN _ 20 case _ _ 17 North _ PROPN JJ _ 20 compound _ _ 18 American _ PROPN JJ _ 20 compound _ _ 19 Philips _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 15 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 itself _ PRON PRP _ 20 appos _ _ 23 a _ DET DT _ 24 det _ _ 24 subsidiary _ NOUN NN _ 22 dep _ _ 25 of _ ADP IN _ 28 case _ _ 26 N.V _ PROPN NNP _ 28 compound _ _ 27 . _ PUNCT . _ 28 punct _ _ 28 Philips _ PROPN NNP _ 24 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 Netherlands _ PROPN NNP _ 28 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Charles _ PROPN NNP _ 4 compound _ _ 2 J. _ PROPN NNP _ 4 compound _ _ 3 Lawson _ PROPN NNP _ 4 compound _ _ 4 Jr. _ PROPN NNP _ 19 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 68 _ NUM CD _ 4 amod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 who _ PRON WP _ 13 nsubj _ _ 9 had _ AUX VBD _ 13 aux _ _ 10 been _ VERB VBN _ 13 cop _ _ 11 acting _ ADJ VBG _ 13 amod _ _ 12 chief _ ADJ NN _ 13 amod _ _ 13 executive _ NOUN NN _ 4 acl:relcl _ _ 14 since _ ADP IN _ 15 case _ _ 15 June _ PROPN NNP _ 13 nmod _ _ 16 14 _ NUM CD _ 15 nummod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 will _ AUX MD _ 19 aux _ _ 19 continue _ VERB VB _ 0 root _ _ 20 as _ ADP IN _ 21 case _ _ 21 chairman _ NOUN NN _ 19 nmod _ _ 22 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 former _ ADJ JJ _ 3 amod _ _ 3 president _ NOUN NN _ 12 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 chief _ ADJ JJ _ 6 amod _ _ 6 executive _ NOUN NN _ 3 conj _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 Eric _ PROPN NNP _ 10 compound _ _ 9 W. _ PROPN NNP _ 10 compound _ _ 10 Markrud _ PROPN NNP _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 resigned _ VERB VBD _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 June _ PROPN NNP _ 12 nmod _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Senate _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decision _ NOUN NN _ 17 nsubj _ _ 5 to _ PART TO _ 6 mark _ _ 6 approve _ VERB VB _ 4 acl _ _ 7 a _ DET DT _ 10 det _ _ 8 bare-bones _ ADJ JJ _ 10 amod _ _ 9 deficit-reduction _ NOUN NN _ 10 compound _ _ 10 bill _ NOUN NN _ 6 dobj _ _ 11 without _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 capital-gains _ NOUN NNS _ 15 compound _ _ 14 tax _ NOUN NN _ 15 compound _ _ 15 cut _ NOUN NN _ 10 nmod _ _ 16 still _ ADV RB _ 17 advmod _ _ 17 leaves _ VERB VBZ _ 0 root _ _ 18 open _ ADJ JJ _ 17 xcomp _ _ 19 the _ DET DT _ 20 det _ _ 20 possibility _ NOUN NN _ 18 dep _ _ 21 of _ SCONJ IN _ 22 mark _ _ 22 enacting _ VERB VBG _ 20 acl _ _ 23 a _ DET DT _ 26 det _ _ 24 gains _ NOUN NNS _ 26 compound _ _ 25 tax _ NOUN NN _ 26 compound _ _ 26 reduction _ NOUN NN _ 22 dobj _ _ 27 this _ DET DT _ 28 det _ _ 28 year _ NOUN NN _ 22 nmod:tmod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 Late _ ADV RB _ 3 advmod _ _ 2 Friday _ PROPN NNP _ 3 compound _ _ 3 night _ NOUN NN _ 7 nmod:tmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Senate _ PROPN NNP _ 7 nsubj _ _ 7 voted _ VERB VBD _ 0 root _ _ 8 87-7 _ NUM CD _ 7 advmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 approve _ VERB VB _ 7 xcomp _ _ 11 an _ DET DT _ 16 det _ _ 12 estimated _ ADJ VBN _ 16 amod _ _ 13 $ _ SYM $ _ 16 amod _ _ 14 13.5 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 measure _ NOUN NN _ 10 dobj _ _ 17 that _ PRON WDT _ 20 nsubjpass _ _ 18 had _ AUX VBD _ 20 aux _ _ 19 been _ AUX VBN _ 20 auxpass _ _ 20 stripped _ VERB VBN _ 16 acl:relcl _ _ 21 of _ ADP IN _ 22 case _ _ 22 hundreds _ NOUN NNS _ 20 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 provisions _ NOUN NNS _ 22 nmod _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 would _ AUX MD _ 28 aux _ _ 27 have _ AUX VB _ 28 aux _ _ 28 widened _ VERB VBN _ 22 acl:relcl _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 rather _ ADV RB _ 28 cc _ _ 31 than _ ADP IN _ 30 mwe _ _ 32 narrowed _ VERB VBN _ 28 conj _ _ 33 , _ PUNCT , _ 28 punct _ _ 34 the _ DET DT _ 37 det _ _ 35 federal _ ADJ JJ _ 37 amod _ _ 36 budget _ NOUN NN _ 37 compound _ _ 37 deficit _ NOUN NN _ 28 conj _ _ 38 . _ PUNCT . _ 7 punct _ _ 1 Lawmakers _ NOUN NNS _ 3 nsubj _ _ 2 drastically _ ADV RB _ 3 advmod _ _ 3 streamlined _ VERB JJ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 bill _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 blunt _ VERB VB _ 3 advcl _ _ 8 criticism _ NOUN NN _ 7 dobj _ _ 9 that _ SCONJ IN _ 12 mark _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 was _ VERB VBD _ 12 cop _ _ 12 bloated _ ADJ JJ _ 8 ccomp _ _ 13 with _ ADP IN _ 16 case _ _ 14 special-interest _ NOUN JJ _ 16 dep _ _ 15 tax _ NOUN NN _ 16 compound _ _ 16 breaks _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 spending _ NOUN NN _ 19 compound _ _ 19 increases _ NOUN NNS _ 16 conj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 putting _ VERB VBG _ 19 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 deficit-reduction _ NOUN NN _ 7 compound _ _ 7 bill _ NOUN NN _ 4 dobj _ _ 8 back _ ADV RB _ 4 advmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 category _ NOUN NN _ 4 nmod _ _ 12 of _ SCONJ IN _ 16 mark _ _ 13 being _ VERB VBG _ 16 cop _ _ 14 a _ DET DT _ 16 det _ _ 15 deficit-reduction _ NOUN NN _ 16 compound _ _ 16 bill _ NOUN NN _ 11 acl _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Senate _ PROPN NNP _ 25 compound _ _ 21 Budget _ PROPN NNP _ 25 compound _ _ 22 Committee _ PROPN NNP _ 25 compound _ _ 23 Chairman _ PROPN NNP _ 25 compound _ _ 24 James _ PROPN NNP _ 25 compound _ _ 25 Sasser _ PROPN NNP _ 19 nsubj _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 D. _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Tenn _ PROPN NNP _ 27 dep _ _ 30 . _ PUNCT . _ 29 punct _ _ 31 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 32 . _ PUNCT . _ 19 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 Senate _ PROPN NNP _ 3 compound _ _ 3 supporters _ NOUN NNS _ 8 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 trimmer _ ADJ NN _ 7 amod _ _ 7 legislation _ NOUN NN _ 3 nmod _ _ 8 said _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 bills _ NOUN NNS _ 15 nsubj _ _ 12 would _ AUX MD _ 15 aux _ _ 13 soon _ ADV RB _ 15 advmod _ _ 14 be _ AUX VB _ 15 aux _ _ 15 moving _ VERB VBG _ 8 ccomp _ _ 16 through _ ADP IN _ 17 case _ _ 17 Congress _ PROPN NNP _ 15 nmod _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 carry _ VERB VB _ 15 ccomp _ _ 21 some _ DET DT _ 20 dobj _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 measures _ NOUN NNS _ 21 nmod _ _ 25 that _ PRON WDT _ 28 nsubjpass _ _ 26 had _ AUX VBD _ 28 aux _ _ 27 been _ AUX VBN _ 28 auxpass _ _ 28 cast _ VERB VBN _ 24 acl:relcl _ _ 29 aside _ ADV RB _ 28 advmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 including _ VERB VBG _ 35 case _ _ 32 a _ DET DT _ 35 det _ _ 33 capital-gains _ NOUN NNS _ 35 compound _ _ 34 tax _ NOUN NN _ 35 compound _ _ 35 cut _ NOUN NN _ 21 nmod _ _ 36 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 13 nmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 the _ DET DT _ 7 det _ _ 5 companion _ ADJ NN _ 7 amod _ _ 6 deficit-reduction _ NOUN NN _ 7 compound _ _ 7 bill _ NOUN NN _ 13 nsubj _ _ 8 already _ ADV RB _ 9 advmod _ _ 9 passed _ VERB VBN _ 7 acl _ _ 10 by _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 House _ PROPN NNP _ 9 nmod _ _ 13 includes _ VERB VBZ _ 0 root _ _ 14 a _ DET DT _ 16 det _ _ 15 capital-gains _ NOUN JJ _ 16 compound _ _ 16 provision _ NOUN NN _ 13 dobj _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 House-Senate _ PROPN NNP _ 2 compound _ _ 2 negotiations _ NOUN NNS _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 likely _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 begin _ VERB VB _ 4 xcomp _ _ 7 at _ ADP IN _ 8 case _ _ 8 midweek _ NOUN JJ _ 6 nmod _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 last _ VERB JJ _ 6 conj _ _ 11 for _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 while _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 No _ DET DT _ 3 neg _ _ 3 one _ NOUN NN _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 predict _ VERB VB _ 16 ccomp _ _ 6 exactly _ ADV RB _ 7 advmod _ _ 7 what _ PRON WP _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 happen _ VERB VB _ 5 ccomp _ _ 10 on _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 House _ PROPN NNP _ 13 compound _ _ 13 side _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Senate _ PROPN NNP _ 21 compound _ _ 18 Minority _ PROPN NNP _ 21 compound _ _ 19 Leader _ PROPN NNP _ 21 compound _ _ 20 Robert _ PROPN NNP _ 21 compound _ _ 21 Dole _ PROPN NNP _ 16 nsubj _ _ 22 -LRB- _ PUNCT -LRB- _ 23 punct _ _ 23 R. _ PROPN NNP _ 21 appos _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 Kan _ PROPN NNP _ 23 dep _ _ 26 . _ PUNCT . _ 25 punct _ _ 27 -RRB- _ PUNCT -RRB- _ 23 punct _ _ 28 . _ PUNCT . _ 16 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 added _ VERB VBD _ 8 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 I _ PRON PRP _ 8 nsubj _ _ 8 believe _ VERB VBP _ 0 root _ _ 9 Republicans _ PROPN NNPS _ 13 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Democrats _ PROPN NNPS _ 9 conj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 work _ VERB VB _ 8 ccomp _ _ 14 together _ ADV RB _ 13 advmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 13 xcomp _ _ 17 capital-gains _ NOUN NNS _ 18 compound _ _ 18 reform _ NOUN NN _ 16 dobj _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 16 nmod:tmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 22 '' _ PUNCT '' _ 8 punct _ _ 1 White _ PROPN NNP _ 6 compound _ _ 2 House _ PROPN NNP _ 6 compound _ _ 3 Budget _ PROPN NNP _ 6 compound _ _ 4 Director _ PROPN NNP _ 6 compound _ _ 5 Richard _ PROPN NNP _ 6 compound _ _ 6 Darman _ PROPN NNP _ 7 nsubj _ _ 7 told _ VERB VBD _ 0 root _ _ 8 reporters _ NOUN NNS _ 7 dobj _ _ 9 yesterday _ ADV NN _ 7 nmod:tmod _ _ 10 that _ SCONJ IN _ 15 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 administration _ NOUN NN _ 15 nsubj _ _ 13 would _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 push _ VERB VB _ 7 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 keep _ VERB VB _ 15 xcomp _ _ 18 the _ DET DT _ 20 det _ _ 19 capital-gains _ NOUN NNS _ 20 compound _ _ 20 cut _ NOUN NN _ 17 dobj _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 final _ ADJ JJ _ 24 amod _ _ 24 version _ NOUN NN _ 17 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 bill _ NOUN NN _ 24 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 need _ VERB VB _ 17 ccomp _ _ 6 this _ PRON DT _ 5 dobj _ _ 7 as _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 way _ NOUN NN _ 5 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 get _ VERB VB _ 9 acl _ _ 12 capital _ NOUN NN _ 13 compound _ _ 13 gains _ NOUN NNS _ 11 dobj _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 House _ PROPN NNP _ 6 compound _ _ 2 Budget _ PROPN NNP _ 6 compound _ _ 3 Committee _ PROPN NNP _ 6 compound _ _ 4 Chairman _ PROPN NNP _ 6 compound _ _ 5 Leon _ PROPN NNP _ 6 compound _ _ 6 Panetta _ PROPN NNP _ 13 nsubj _ _ 7 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 8 D. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Calif _ PROPN NNP _ 8 dep _ _ 11 . _ PUNCT . _ 10 punct _ _ 12 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 in _ ADP IN _ 16 case _ _ 15 an _ DET DT _ 16 det _ _ 16 interview _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 `` _ PUNCT `` _ 33 punct _ _ 19 If _ SCONJ IN _ 23 mark _ _ 20 that _ PRON DT _ 23 nsubj _ _ 21 's _ VERB VBZ _ 23 cop _ _ 22 the _ DET DT _ 23 det _ _ 23 signal _ NOUN NN _ 33 advcl _ _ 24 that _ PRON WDT _ 25 nsubj _ _ 25 comes _ VERB VBZ _ 23 acl:relcl _ _ 26 from _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 White _ PROPN NNP _ 29 compound _ _ 29 House _ PROPN NNP _ 25 nmod _ _ 30 , _ PUNCT , _ 33 punct _ _ 31 that _ PRON WDT _ 33 nsubj _ _ 32 will _ AUX MD _ 33 aux _ _ 33 help _ VERB VB _ 13 ccomp _ _ 34 a _ DET DT _ 36 det _ _ 35 great _ ADJ JJ _ 36 amod _ _ 36 deal _ NOUN NN _ 33 nmod:npmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 38 '' _ PUNCT '' _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Senate _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decision _ NOUN NN _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 a _ DET DT _ 7 det _ _ 7 setback _ NOUN NN _ 0 root _ _ 8 for _ ADP IN _ 10 case _ _ 9 President _ PROPN NNP _ 10 compound _ _ 10 Bush _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 7 cc _ _ 12 will _ AUX MD _ 13 aux _ _ 13 make _ VERB VB _ 7 conj _ _ 14 approval _ NOUN NN _ 21 nsubj _ _ 15 of _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 capital-gains _ NOUN NNS _ 19 compound _ _ 18 tax _ NOUN NN _ 19 compound _ _ 19 cut _ NOUN NN _ 14 nmod _ _ 20 less _ ADV RBR _ 21 advmod _ _ 21 certain _ ADJ JJ _ 13 xcomp _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 21 dep _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Opponents _ NOUN NNS _ 6 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 cut _ NOUN NN _ 1 nmod _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 playing _ VERB VBG _ 0 root _ _ 7 hardball _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 6 punct _ _ 1 Senate _ PROPN NNP _ 5 compound _ _ 2 Majority _ PROPN NNP _ 5 compound _ _ 3 Leader _ PROPN NNP _ 5 compound _ _ 4 George _ PROPN NNP _ 5 compound _ _ 5 Mitchell _ PROPN NNP _ 11 nsubj _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 D. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Maine _ PROPN NNP _ 7 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 he _ PRON PRP _ 15 nsubj _ _ 13 was _ VERB VBD _ 15 cop _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 confident _ ADJ JJ _ 11 ccomp _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 that _ SCONJ IN _ 27 mark _ _ 18 any _ DET DT _ 20 det _ _ 19 House-Senate _ PROPN NNP _ 20 compound _ _ 20 agreement _ NOUN NN _ 27 nsubj _ _ 21 on _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 deficit-reduction _ NOUN JJ _ 24 compound _ _ 24 legislation _ NOUN NN _ 20 nmod _ _ 25 would _ AUX MD _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 include _ VERB VB _ 15 ccomp _ _ 28 a _ DET DT _ 31 det _ _ 29 capital-gains _ NOUN NNS _ 31 compound _ _ 30 tax _ NOUN NN _ 31 compound _ _ 31 cut _ NOUN NN _ 27 dobj _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 a _ DET DT _ 4 det _ _ 3 senior _ ADJ JJ _ 4 amod _ _ 4 aide _ NOUN NN _ 18 nsubj _ _ 5 to _ ADP TO _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 House _ PROPN NNP _ 8 compound _ _ 8 Ways _ PROPN NNPS _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Means _ PROPN NNP _ 11 compound _ _ 11 Committee _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 where _ ADV WRB _ 16 advmod _ _ 14 tax _ NOUN NN _ 15 compound _ _ 15 legislation _ NOUN NN _ 16 nsubj _ _ 16 originates _ VERB VBZ _ 8 acl:relcl _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 there _ PRON EX _ 20 expl _ _ 20 are _ VERB VBP _ 18 ccomp _ _ 21 n't _ PART RB _ 20 neg _ _ 22 any _ DET DT _ 24 det _ _ 23 `` _ PUNCT `` _ 24 punct _ _ 24 plans _ NOUN NNS _ 20 nsubj _ _ 25 to _ PART TO _ 26 mark _ _ 26 produce _ VERB VB _ 24 acl _ _ 27 another _ DET DT _ 29 det _ _ 28 tax _ NOUN NN _ 29 compound _ _ 29 bill _ NOUN NN _ 26 dobj _ _ 30 that _ PRON WDT _ 32 nsubj _ _ 31 could _ AUX MD _ 32 aux _ _ 32 carry _ VERB VB _ 29 acl:relcl _ _ 33 a _ DET DT _ 36 det _ _ 34 gains _ NOUN NNS _ 36 compound _ _ 35 tax _ NOUN NN _ 36 compound _ _ 36 cut _ NOUN NN _ 32 dobj _ _ 37 this _ DET DT _ 38 det _ _ 38 year _ NOUN NN _ 26 nmod:tmod _ _ 39 . _ PUNCT . _ 18 punct _ _ 40 '' _ PUNCT '' _ 18 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 obvious _ ADJ JJ _ 3 amod _ _ 3 place _ NOUN NN _ 24 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 attach _ VERB VB _ 3 acl _ _ 6 a _ DET DT _ 9 det _ _ 7 capital-gains _ NOUN NNS _ 9 compound _ _ 8 tax _ NOUN NN _ 9 compound _ _ 9 cut _ NOUN NN _ 5 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 perhaps _ ADV RB _ 9 advmod _ _ 13 other _ ADJ JJ _ 15 amod _ _ 14 popular _ ADJ JJ _ 15 amod _ _ 15 items _ NOUN NNS _ 9 dep _ _ 16 stripped _ VERB VBN _ 15 acl _ _ 17 from _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 deficit-reduction _ NOUN NN _ 20 compound _ _ 20 bill _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 9 punct _ _ 22 is _ VERB VBZ _ 24 cop _ _ 23 the _ DET DT _ 24 det _ _ 24 legislation _ NOUN NN _ 0 root _ _ 25 to _ PART TO _ 26 mark _ _ 26 raise _ VERB VB _ 24 acl _ _ 27 the _ DET DT _ 30 det _ _ 28 federal _ ADJ JJ _ 30 amod _ _ 29 borrowing _ NOUN NN _ 30 compound _ _ 30 limit _ NOUN NN _ 26 dobj _ _ 31 . _ PUNCT . _ 24 punct _ _ 1 Such _ ADJ JJ _ 2 amod _ _ 2 legislation _ NOUN NN _ 5 nsubjpass _ _ 3 must _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 enacted _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 end _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 month _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Senate _ PROPN NNP _ 3 compound _ _ 3 bill _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 pared _ VERB VBN _ 0 root _ _ 6 back _ ADV RB _ 5 advmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 an _ DET DT _ 9 det _ _ 9 attempt _ NOUN NN _ 5 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 speed _ VERB VB _ 9 acl _ _ 12 deficit-reduction _ NOUN NN _ 11 dobj _ _ 13 through _ ADP IN _ 14 case _ _ 14 Congress _ PROPN NNP _ 11 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Because _ SCONJ IN _ 7 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 legislation _ NOUN NN _ 7 nsubjpass _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 n't _ PART RB _ 7 neg _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 completed _ VERB VBN _ 11 advcl _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 President _ PROPN NNP _ 10 compound _ _ 10 Bush _ PROPN NNP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 0 root _ _ 12 until _ ADP IN _ 13 case _ _ 13 midnight _ NOUN NN _ 11 nmod _ _ 14 tonight _ NOUN NN _ 13 nmod:tmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 enact _ VERB VB _ 11 xcomp _ _ 17 across-the-board _ ADJ JJ _ 19 amod _ _ 18 spending _ NOUN NN _ 19 compound _ _ 19 cuts _ NOUN NNS _ 16 dobj _ _ 20 mandated _ VERB VBN _ 19 acl _ _ 21 by _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 Gramm-Rudman _ PROPN NNP _ 25 compound _ _ 24 deficit-reduction _ NOUN NN _ 25 compound _ _ 25 law _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 Senators _ NOUN NNPS _ 2 nsubj _ _ 2 hope _ VERB VBP _ 0 root _ _ 3 that _ SCONJ IN _ 11 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 need _ NOUN NN _ 11 nsubj _ _ 6 to _ PART TO _ 7 mark _ _ 7 avoid _ VERB VB _ 5 acl _ _ 8 those _ DET DT _ 9 det _ _ 9 cuts _ NOUN NNS _ 7 dobj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 pressure _ VERB VB _ 2 ccomp _ _ 12 the _ DET DT _ 13 det _ _ 13 House _ PROPN NNP _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 agree _ VERB VB _ 11 xcomp _ _ 16 to _ ADP TO _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 streamlined _ ADJ JJ _ 19 amod _ _ 19 bill _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 House _ PROPN NNP _ 3 nsubj _ _ 3 appears _ VERB VBZ _ 0 root _ _ 4 reluctant _ ADJ JJ _ 3 xcomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 join _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 senators _ NOUN NNS _ 6 dobj _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 key _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 whether _ SCONJ IN _ 8 mark _ _ 5 House _ PROPN NNP _ 6 compound _ _ 6 Republicans _ PROPN NNPS _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 willing _ ADJ JJ _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 acquiesce _ VERB VB _ 8 xcomp _ _ 11 to _ ADP TO _ 16 case _ _ 12 their _ PRON PRP$ _ 14 nmod:poss _ _ 13 Senate _ PROPN NNP _ 14 compound _ _ 14 colleagues _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 decision _ NOUN NN _ 10 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 drop _ VERB VB _ 16 acl _ _ 19 many _ ADJ JJ _ 21 amod _ _ 20 pet _ ADJ JJ _ 21 amod _ _ 21 provisions _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 Although _ SCONJ IN _ 5 mark _ _ 3 I _ PRON PRP _ 5 nsubjpass _ _ 4 am _ AUX VBP _ 5 auxpass _ _ 5 encouraged _ VERB VBN _ 33 advcl _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Senate _ PROPN NNP _ 9 compound _ _ 9 action _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 33 parataxis _ _ 13 Chairman _ PROPN NNP _ 15 compound _ _ 14 Dan _ PROPN NNP _ 15 compound _ _ 15 Rostenkowski _ PROPN NNP _ 12 nsubj _ _ 16 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 17 D. _ PROPN NNP _ 15 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Ill _ PROPN NNP _ 17 dep _ _ 20 . _ PUNCT . _ 19 punct _ _ 21 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 House _ PROPN NNP _ 25 compound _ _ 25 Ways _ PROPN NNPS _ 15 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Means _ PROPN NNP _ 28 compound _ _ 28 Committee _ PROPN NNP _ 25 conj _ _ 29 , _ PUNCT , _ 12 punct _ _ 30 `` _ PUNCT `` _ 33 punct _ _ 31 it _ PRON PRP _ 33 nsubj _ _ 32 is _ VERB VBZ _ 33 cop _ _ 33 uncertain _ ADJ JJ _ 0 root _ _ 34 whether _ SCONJ IN _ 40 mark _ _ 35 a _ DET DT _ 37 det _ _ 36 clean _ ADJ JJ _ 37 amod _ _ 37 bill _ NOUN NN _ 40 nsubjpass _ _ 38 can _ AUX MD _ 40 aux _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 achieved _ VERB VBN _ 33 ccomp _ _ 41 in _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 upcoming _ ADJ VBG _ 44 amod _ _ 44 conference _ NOUN NN _ 40 nmod _ _ 45 with _ ADP IN _ 47 case _ _ 46 the _ DET DT _ 47 det _ _ 47 Senate _ PROPN NNP _ 44 nmod _ _ 48 . _ PUNCT . _ 33 punct _ _ 49 '' _ PUNCT '' _ 33 punct _ _ 1 Another _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 question _ NOUN NN _ 8 nsubj _ _ 4 hovering _ VERB VBG _ 3 acl _ _ 5 over _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 debate _ NOUN NN _ 4 nmod _ _ 8 is _ VERB VBZ _ 0 root _ _ 9 what _ PRON WP _ 12 dobj _ _ 10 President _ PROPN NNP _ 11 compound _ _ 11 Bush _ PROPN NNP _ 12 nsubj _ _ 12 thinks _ VERB VBZ _ 8 ccomp _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ AUX VBN _ 4 aux _ _ 4 resisting _ VERB VBG _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 stripped-down _ ADJ JJ _ 7 amod _ _ 7 bill _ NOUN NN _ 4 dobj _ _ 8 without _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 guaranteed _ ADJ VBN _ 11 amod _ _ 11 vote _ NOUN NN _ 7 nmod _ _ 12 on _ ADP IN _ 16 case _ _ 13 his _ PRON PRP$ _ 16 nmod:poss _ _ 14 capital-gains _ NOUN NNS _ 16 compound _ _ 15 tax _ NOUN NN _ 16 compound _ _ 16 cut _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Republican _ ADJ NNP _ 3 amod _ _ 3 senators _ NOUN NNS _ 4 nsubj _ _ 4 saw _ VERB VBD _ 0 root _ _ 5 no _ DET DT _ 6 neg _ _ 6 way _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 overcome _ VERB VB _ 6 acl _ _ 9 a _ DET DT _ 11 det _ _ 10 procedural _ ADJ JJ _ 11 amod _ _ 11 hurdle _ NOUN NN _ 8 dobj _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 garner _ VERB VB _ 8 conj _ _ 14 the _ DET DT _ 16 det _ _ 15 60 _ NUM CD _ 16 nummod _ _ 16 votes _ NOUN NNS _ 13 dobj _ _ 17 needed _ VERB VBN _ 16 acl _ _ 18 to _ PART TO _ 19 mark _ _ 19 win _ VERB VB _ 17 xcomp _ _ 20 the _ DET DT _ 22 det _ _ 21 capital-gains _ NOUN NNS _ 22 compound _ _ 22 issue _ NOUN NN _ 19 dobj _ _ 23 on _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 floor _ NOUN NN _ 19 nmod _ _ 26 , _ PUNCT , _ 4 punct _ _ 27 so _ ADP IN _ 4 dep _ _ 28 they _ PRON PRP _ 29 nsubj _ _ 29 went _ VERB VBD _ 4 parataxis _ _ 30 ahead _ ADV RB _ 29 advmod _ _ 31 with _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 streamlined _ ADJ JJ _ 34 amod _ _ 34 bill _ NOUN NN _ 30 nmod _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Senate _ PROPN NNP _ 3 compound _ _ 3 bill _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 stripped _ VERB VBN _ 0 root _ _ 6 of _ ADP IN _ 13 case _ _ 7 many _ ADJ JJ _ 13 amod _ _ 8 popular _ ADJ JJ _ 11 amod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 though _ ADP IN _ 11 dep _ _ 11 revenue-losing _ ADJ NN _ 13 amod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 provisions _ NOUN NNS _ 5 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 number _ NOUN NN _ 20 nsubjpass _ _ 17 of _ ADP IN _ 18 case _ _ 18 which _ PRON WDT _ 16 nmod _ _ 19 are _ AUX VBP _ 20 auxpass _ _ 20 included _ VERB VBN _ 13 acl:relcl _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 House-passed _ ADJ JJ _ 24 amod _ _ 24 bill _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 These _ PRON DT _ 2 nsubj _ _ 2 include _ VERB VBP _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 child-care _ NOUN JJ _ 5 compound _ _ 5 initiative _ NOUN NN _ 2 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 extensions _ NOUN NNS _ 5 conj _ _ 8 of _ ADP IN _ 11 case _ _ 9 soon-to-expire _ ADJ JJ _ 11 amod _ _ 10 tax _ NOUN NN _ 11 compound _ _ 11 breaks _ NOUN NNS _ 7 nmod _ _ 12 for _ ADP IN _ 14 case _ _ 13 low-income _ ADJ JJ _ 14 amod _ _ 14 housing _ NOUN NN _ 11 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 research-and-development _ NOUN NN _ 17 compound _ _ 17 expenditures _ NOUN NNS _ 14 conj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 missing _ VERB VBG _ 0 root _ _ 3 from _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Senate _ PROPN NNP _ 6 compound _ _ 6 bill _ NOUN NN _ 2 nmod _ _ 7 is _ VERB VBZ _ 2 aux _ _ 8 the _ DET DT _ 9 det _ _ 9 House _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 repeal _ NOUN NN _ 2 nsubj _ _ 12 of _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 law _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 called _ VERB VBN _ 14 acl _ _ 17 Section _ PROPN NNP _ 16 xcomp _ _ 18 89 _ NUM CD _ 17 nummod _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 that _ PRON WDT _ 21 nsubj _ _ 21 compels _ VERB VBZ _ 14 acl:relcl _ _ 22 companies _ NOUN NNS _ 21 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 give _ VERB VB _ 21 xcomp _ _ 25 rank-and-file _ ADJ JJ _ 26 amod _ _ 26 workers _ NOUN NNS _ 24 iobj _ _ 27 comparable _ ADJ JJ _ 29 amod _ _ 28 health _ NOUN NN _ 29 compound _ _ 29 benefits _ NOUN NNS _ 24 dobj _ _ 30 to _ ADP TO _ 33 case _ _ 31 top _ ADJ JJ _ 32 dep _ _ 32 paid _ VERB VBN _ 33 amod _ _ 33 executives _ NOUN NNS _ 29 nmod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 high-profile _ ADJ JJ _ 3 amod _ _ 3 provision _ NOUN NN _ 21 nsubj _ _ 4 that _ PRON WDT _ 10 nsubj _ _ 5 was _ VERB VBD _ 10 cop _ _ 6 originally _ ADV RB _ 10 advmod _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Senate _ PROPN NNP _ 10 compound _ _ 10 bill _ NOUN NN _ 3 acl:relcl _ _ 11 but _ CONJ CC _ 10 cc _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 cut _ VERB VBN _ 10 conj _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 because _ SCONJ IN _ 17 mark _ _ 16 it _ PRON PRP _ 17 nsubj _ _ 17 lost _ VERB VBD _ 13 advcl _ _ 18 money _ NOUN NN _ 17 dobj _ _ 19 was _ VERB VBD _ 21 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 proposal _ NOUN NN _ 0 root _ _ 22 by _ ADP IN _ 25 case _ _ 23 Chairman _ PROPN NNP _ 25 compound _ _ 24 Lloyd _ PROPN NNP _ 25 compound _ _ 25 Bentsen _ PROPN NNP _ 21 nmod _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 D. _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Texas _ PROPN NNP _ 27 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 31 of _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 Senate _ PROPN NNP _ 35 compound _ _ 34 Finance _ PROPN NNP _ 35 compound _ _ 35 Committee _ PROPN NNP _ 25 nmod _ _ 36 to _ PART TO _ 37 mark _ _ 37 expand _ VERB VB _ 21 acl _ _ 38 the _ DET DT _ 39 det _ _ 39 deduction _ NOUN NN _ 37 dobj _ _ 40 for _ ADP IN _ 43 case _ _ 41 individual _ ADJ JJ _ 43 amod _ _ 42 retirement _ NOUN NN _ 43 compound _ _ 43 accounts _ NOUN NNS _ 39 nmod _ _ 44 . _ PUNCT . _ 21 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Bentsen _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 hopes _ VERB VBZ _ 3 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 Senate _ PROPN NNP _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 consider _ VERB VB _ 5 ccomp _ _ 10 that _ DET DT _ 11 det _ _ 11 measure _ NOUN NN _ 9 dobj _ _ 12 soon _ ADV RB _ 9 advmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 delight _ NOUN NN _ 10 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 some _ DET DT _ 6 det _ _ 6 doctors _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 bill _ NOUN NN _ 10 nsubj _ _ 10 dropped _ VERB VBD _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 plan _ NOUN NN _ 10 dobj _ _ 13 passed _ VERB VBN _ 12 acl _ _ 14 by _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 Finance _ PROPN NNP _ 17 compound _ _ 17 Committee _ PROPN NNP _ 13 nmod _ _ 18 that _ PRON WDT _ 21 nsubj _ _ 19 would _ AUX MD _ 21 aux _ _ 20 have _ AUX VB _ 21 aux _ _ 21 overhauled _ VERB VBN _ 12 acl:relcl _ _ 22 the _ DET DT _ 25 det _ _ 23 entire _ ADJ JJ _ 25 amod _ _ 24 physician-reimbursement _ ADJ JJ _ 25 amod _ _ 25 system _ NOUN NN _ 21 dobj _ _ 26 under _ ADP IN _ 27 case _ _ 27 Medicare _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 detriment _ NOUN NN _ 22 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 many _ ADJ JJ _ 7 amod _ _ 6 low-income _ ADJ JJ _ 7 amod _ _ 7 people _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 22 punct _ _ 9 efforts _ NOUN NNS _ 22 nsubjpass _ _ 10 to _ PART TO _ 11 mark _ _ 11 boost _ VERB VB _ 9 acl _ _ 12 Medicaid _ PROPN NNP _ 13 compound _ _ 13 funding _ NOUN NN _ 11 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 especially _ ADV RB _ 18 advmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 rural _ ADJ JJ _ 18 amod _ _ 18 areas _ NOUN NNS _ 13 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 also _ ADV RB _ 22 advmod _ _ 21 were _ AUX VBD _ 22 auxpass _ _ 22 stricken _ VERB VBN _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 Asked _ VERB VBN _ 25 advcl _ _ 2 why _ ADV WRB _ 5 advmod _ _ 3 senators _ NOUN NNS _ 5 nsubj _ _ 4 were _ AUX VBD _ 5 aux _ _ 5 giving _ VERB VBG _ 1 ccomp _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 so _ ADV RB _ 8 advmod _ _ 8 much _ ADJ RB _ 5 dobj _ _ 9 , _ PUNCT , _ 25 punct _ _ 10 New _ PROPN NNP _ 14 compound _ _ 11 Mexico _ PROPN NNP _ 14 compound _ _ 12 Sen. _ PROPN NNP _ 14 compound _ _ 13 Pete _ PROPN NNP _ 14 compound _ _ 14 Domenici _ PROPN NNP _ 25 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 ranking _ ADJ JJ _ 18 amod _ _ 18 Republican _ PROPN NNP _ 14 appos _ _ 19 on _ ADP IN _ 23 amod _ _ 20 the _ DET DT _ 23 det _ _ 21 Senate _ PROPN NNP _ 23 compound _ _ 22 Budget _ PROPN NNP _ 23 compound _ _ 23 Committee _ PROPN NNP _ 18 dep _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 `` _ PUNCT `` _ 30 punct _ _ 28 We _ PRON PRP _ 30 nsubj _ _ 29 're _ AUX VBP _ 30 aux _ _ 30 looking _ VERB VBG _ 25 ccomp _ _ 31 like _ ADP IN _ 32 case _ _ 32 idiots _ NOUN NNS _ 30 nmod _ _ 33 . _ PUNCT . _ 25 punct _ _ 1 Things _ NOUN NNS _ 4 nsubj _ _ 2 had _ AUX VBD _ 4 aux _ _ 3 just _ ADV RB _ 4 advmod _ _ 4 gone _ VERB VBN _ 0 root _ _ 5 too _ ADV RB _ 6 advmod _ _ 6 far _ ADV RB _ 4 advmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 8 '' _ PUNCT '' _ 4 punct _ _ 1 Sen. _ PROPN NNP _ 2 compound _ _ 2 Dole _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 move _ NOUN NN _ 7 nsubj _ _ 7 required _ VERB VBN _ 3 ccomp _ _ 8 sacrifice _ NOUN NN _ 7 dobj _ _ 9 by _ ADP IN _ 11 case _ _ 10 every _ DET DT _ 11 det _ _ 11 senator _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 worked _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 others _ NOUN NNS _ 5 nsubj _ _ 5 said _ VERB VBD _ 2 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 because _ SCONJ IN _ 9 mark _ _ 8 there _ PRON EX _ 9 expl _ _ 9 were _ VERB VBD _ 2 advcl _ _ 10 no _ DET DT _ 11 neg _ _ 11 exceptions _ NOUN NNS _ 9 nsubj _ _ 12 : _ PUNCT : _ 9 punct _ _ 13 all _ DET DT _ 15 det _ _ 14 revenue-losing _ ADJ JJ _ 15 amod _ _ 15 provisions _ NOUN NNS _ 17 nsubjpass _ _ 16 were _ AUX VBD _ 17 auxpass _ _ 17 stricken _ VERB VBN _ 9 parataxis _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Senate _ PROPN NNP _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 plan _ NOUN NN _ 4 dobj _ _ 7 by _ ADP IN _ 10 case _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 Finance _ PROPN NNP _ 10 compound _ _ 10 Committee _ PROPN NNP _ 6 nmod _ _ 11 that _ PRON WDT _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 have _ AUX VB _ 14 aux _ _ 14 increased _ VERB VBN _ 6 acl:relcl _ _ 15 the _ DET DT _ 17 det _ _ 16 income _ NOUN NN _ 17 compound _ _ 17 threshold _ NOUN NN _ 14 dobj _ _ 18 beyond _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 22 nmod _ _ 20 senior _ ADJ JJ _ 21 amod _ _ 21 citizens _ NOUN NNS _ 22 nsubj _ _ 22 have _ VERB VBP _ 17 acl:relcl _ _ 23 their _ PRON PRP$ _ 26 nmod:poss _ _ 24 Social _ PROPN NNP _ 26 compound _ _ 25 Security _ PROPN NNP _ 26 compound _ _ 26 benefits _ NOUN NNS _ 27 nsubj _ _ 27 reduced _ VERB VBD _ 22 ccomp _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 bill _ NOUN NN _ 6 nsubj _ _ 6 dropped _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 plan _ NOUN NN _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 make _ VERB VB _ 8 acl _ _ 11 permanent _ ADJ JJ _ 10 xcomp _ _ 12 a _ DET DT _ 16 det _ _ 13 3 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 16 amod _ _ 15 excise _ NOUN JJ _ 16 compound _ _ 16 tax _ NOUN NN _ 11 dep _ _ 17 on _ ADP IN _ 20 case _ _ 18 long-distance _ ADJ JJ _ 20 amod _ _ 19 telephone _ NOUN NN _ 20 compound _ _ 20 calls _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 no _ ADV RB _ 3 neg _ _ 3 longer _ ADV RBR _ 4 advmod _ _ 4 includes _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 plan _ NOUN NN _ 4 dobj _ _ 7 that _ PRON WDT _ 10 nsubj _ _ 8 would _ AUX MD _ 10 aux _ _ 9 have _ AUX VB _ 10 aux _ _ 10 repealed _ VERB VBN _ 6 acl:relcl _ _ 11 what _ PRON WP _ 12 nsubj _ _ 12 remains _ VERB VBZ _ 10 ccomp _ _ 13 of _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 completed-contract _ ADJ JJ _ 16 amod _ _ 16 method _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 accounting _ NOUN NN _ 16 nmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 which _ PRON WDT _ 22 nsubjpass _ _ 21 is _ AUX VBZ _ 22 auxpass _ _ 22 used _ VERB VBN _ 16 acl:relcl _ _ 23 by _ ADP IN _ 25 case _ _ 24 military _ ADJ JJ _ 25 amod _ _ 25 contractors _ NOUN NNS _ 22 nmod _ _ 26 to _ PART TO _ 27 mark _ _ 27 reduce _ VERB VB _ 22 xcomp _ _ 28 their _ PRON PRP$ _ 30 nmod:poss _ _ 29 tax _ NOUN NN _ 30 compound _ _ 30 burden _ NOUN NN _ 27 dobj _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 drops _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 provision _ NOUN NN _ 3 dobj _ _ 6 that _ PRON WDT _ 9 nsubj _ _ 7 would _ AUX MD _ 9 aux _ _ 8 have _ AUX VB _ 9 aux _ _ 9 permitted _ VERB VBN _ 5 acl:relcl _ _ 10 corporations _ NOUN NNS _ 9 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 use _ VERB VB _ 9 xcomp _ _ 13 excess _ ADJ JJ _ 15 amod _ _ 14 pension _ NOUN NN _ 15 compound _ _ 15 funds _ NOUN NNS _ 12 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 pay _ VERB VB _ 12 advcl _ _ 18 health _ NOUN NN _ 19 compound _ _ 19 benefits _ NOUN NNS _ 17 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 current _ ADJ JJ _ 22 amod _ _ 22 retirees _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 stricken _ VERB JJ _ 0 root _ _ 3 was _ AUX VBD _ 2 auxpass _ _ 4 a _ DET DT _ 6 det _ _ 5 fivefold _ ADJ JJ _ 6 amod _ _ 6 increase _ NOUN NN _ 2 nsubjpass _ _ 7 in _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 maximum _ ADJ NN _ 11 amod _ _ 10 Occupational _ PROPN NNP _ 11 compound _ _ 11 Safety _ PROPN NNP _ 6 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Health _ PROPN NNP _ 15 compound _ _ 14 Administration _ PROPN NNP _ 15 compound _ _ 15 penalties _ NOUN NNS _ 11 conj _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 which _ PRON WDT _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 have _ AUX VB _ 20 aux _ _ 20 raised _ VERB VBN _ 6 acl:relcl _ _ 21 $ _ SYM $ _ 20 dobj _ _ 22 65 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 in _ ADP IN _ 26 case _ _ 25 fiscal _ ADJ JJ _ 26 amod _ _ 26 1990 _ NUM CD _ 20 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 provision _ NOUN NN _ 15 nsubjpass _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 would _ AUX MD _ 6 aux _ _ 5 have _ AUX VB _ 6 aux _ _ 6 made _ VERB VBN _ 2 acl:relcl _ _ 7 the _ DET DT _ 10 det _ _ 8 Social _ PROPN NNP _ 10 compound _ _ 9 Security _ PROPN NNP _ 10 compound _ _ 10 Administration _ PROPN NNP _ 13 nsubj _ _ 11 an _ DET DT _ 13 det _ _ 12 independent _ ADJ JJ _ 13 amod _ _ 13 agency _ NOUN NN _ 6 xcomp _ _ 14 was _ AUX VBD _ 15 auxpass _ _ 15 excised _ VERB VBN _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 approval _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Senate _ PROPN NNP _ 6 compound _ _ 6 bill _ NOUN NN _ 2 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 especially _ ADV RB _ 9 advmod _ _ 9 sweet _ ADJ JJ _ 0 root _ _ 10 for _ ADP IN _ 12 case _ _ 11 Sen. _ PROPN NNP _ 12 compound _ _ 12 Mitchell _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 who _ PRON WP _ 16 nsubj _ _ 15 had _ AUX VBD _ 16 aux _ _ 16 proposed _ VERB VBN _ 12 acl:relcl _ _ 17 the _ DET DT _ 18 det _ _ 18 streamlining _ NOUN NN _ 16 dobj _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mitchell _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 relations _ NOUN NNS _ 25 nsubjpass _ _ 5 with _ ADP IN _ 8 case _ _ 6 Budget _ PROPN NNP _ 8 compound _ _ 7 Director _ PROPN NNP _ 8 compound _ _ 8 Darman _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 who _ PRON WP _ 11 nsubj _ _ 11 pushed _ VERB VBD _ 8 acl:relcl _ _ 12 for _ SCONJ IN _ 18 mark _ _ 13 a _ DET DT _ 15 det _ _ 14 capital-gains _ NOUN JJ _ 15 compound _ _ 15 cut _ NOUN NN _ 18 nsubjpass _ _ 16 to _ PART TO _ 18 mark _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 added _ VERB VBN _ 11 advcl _ _ 19 to _ ADP TO _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 measure _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 8 punct _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 strained _ VERB VBN _ 0 root _ _ 26 since _ SCONJ IN _ 29 mark _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Darman _ PROPN NNP _ 29 nsubj _ _ 29 chose _ VERB VBD _ 25 advcl _ _ 30 to _ PART TO _ 31 mark _ _ 31 bypass _ VERB VB _ 29 xcomp _ _ 32 the _ DET DT _ 34 det _ _ 33 Maine _ PROPN NNP _ 34 compound _ _ 34 Democrat _ PROPN NNP _ 31 dobj _ _ 35 and _ CONJ CC _ 31 cc _ _ 36 deal _ VERB VB _ 31 conj _ _ 37 with _ ADP IN _ 39 case _ _ 38 other _ ADJ JJ _ 39 amod _ _ 39 lawmakers _ NOUN NNS _ 36 nmod _ _ 40 earlier _ ADV RBR _ 42 advmod _ _ 41 this _ DET DT _ 42 det _ _ 42 year _ NOUN NN _ 29 nmod:tmod _ _ 43 during _ ADP IN _ 45 case _ _ 44 a _ DET DT _ 45 det _ _ 45 dispute _ NOUN NN _ 29 nmod _ _ 46 over _ ADP IN _ 48 case _ _ 47 drug _ NOUN NN _ 48 compound _ _ 48 funding _ NOUN NN _ 45 nmod _ _ 49 in _ ADP IN _ 55 case _ _ 50 the _ DET DT _ 55 det _ _ 51 fiscal _ ADJ JJ _ 55 amod _ _ 52 1989 _ NUM CD _ 55 nummod _ _ 53 supplemental _ ADJ JJ _ 55 amod _ _ 54 spending _ NOUN NN _ 55 compound _ _ 55 bill _ NOUN NN _ 48 nmod _ _ 56 . _ PUNCT . _ 25 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 deficit _ NOUN NN _ 4 compound _ _ 3 reduction _ NOUN NN _ 4 compound _ _ 4 bill _ NOUN NN _ 5 nsubj _ _ 5 contains _ VERB VBZ _ 0 root _ _ 6 $ _ SYM $ _ 5 dobj _ _ 7 5.3 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 tax _ NOUN NN _ 11 compound _ _ 11 increases _ NOUN NNS _ 6 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 fiscal _ ADJ JJ _ 14 amod _ _ 14 1990 _ NUM CD _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 $ _ SYM $ _ 6 conj _ _ 18 26 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 over _ ADP IN _ 22 case _ _ 21 five _ NUM CD _ 22 nummod _ _ 22 years _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 revenue-raising _ ADJ JJ _ 3 amod _ _ 3 provisions _ NOUN NNS _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 affect _ VERB VBP _ 3 acl:relcl _ _ 7 mostly _ ADV RB _ 8 advmod _ _ 8 corporations _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 would _ AUX MD _ 3 dep _ _ 11 : _ PUNCT : _ 3 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Prevent _ VERB VB _ 0 root _ _ 3 companies _ NOUN NNS _ 2 dobj _ _ 4 that _ PRON WDT _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 made _ VERB VBN _ 3 acl:relcl _ _ 7 leveraged _ ADJ JJ _ 8 amod _ _ 8 buy-outs _ NOUN NNS _ 6 dobj _ _ 9 from _ SCONJ IN _ 10 mark _ _ 10 getting _ VERB VBG _ 2 advcl _ _ 11 federal _ ADJ JJ _ 13 amod _ _ 12 tax _ NOUN NN _ 13 compound _ _ 13 refunds _ NOUN NNS _ 10 dobj _ _ 14 resulting _ VERB VBG _ 13 acl _ _ 15 from _ ADP IN _ 16 case _ _ 16 losses _ NOUN NNS _ 14 nmod _ _ 17 caused _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 20 case _ _ 19 interest _ NOUN NN _ 20 compound _ _ 20 payments _ NOUN NNS _ 17 nmod _ _ 21 on _ ADP IN _ 22 case _ _ 22 debt _ NOUN NN _ 20 nmod _ _ 23 issued _ VERB VBN _ 22 acl _ _ 24 to _ PART TO _ 25 mark _ _ 25 finance _ VERB VB _ 23 xcomp _ _ 26 the _ DET DT _ 27 det _ _ 27 buy-outs _ NOUN NNS _ 25 dobj _ _ 28 , _ PUNCT , _ 2 punct _ _ 29 effective _ ADJ JJ _ 2 xcomp _ _ 30 Aug. _ PROPN NNP _ 29 nmod:tmod _ _ 31 2 _ NUM CD _ 30 nummod _ _ 32 , _ PUNCT , _ 30 punct _ _ 33 1989 _ NUM CD _ 30 nummod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Require _ VERB VB _ 0 root _ _ 3 mutual _ ADJ JJ _ 4 amod _ _ 4 funds _ NOUN NNS _ 2 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 include _ VERB VB _ 2 xcomp _ _ 7 in _ ADP IN _ 10 case _ _ 8 their _ PRON PRP$ _ 10 nmod:poss _ _ 9 taxable _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 6 nmod _ _ 11 dividends _ NOUN NNS _ 6 dobj _ _ 12 paid _ VERB VBN _ 11 acl _ _ 13 to _ ADP TO _ 14 case _ _ 14 them _ PRON PRP _ 12 nmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 date _ NOUN NN _ 12 nmod _ _ 18 that _ ADP IN _ 22 advmod _ _ 19 the _ DET DT _ 20 det _ _ 20 dividends _ NOUN NNS _ 22 nsubjpass _ _ 21 are _ AUX VBP _ 22 auxpass _ _ 22 declared _ VERB VBN _ 17 dep _ _ 23 rather _ ADV RB _ 22 cc _ _ 24 than _ ADP IN _ 23 mwe _ _ 25 received _ VERB VBN _ 22 conj _ _ 26 , _ PUNCT , _ 2 punct _ _ 27 effective _ ADJ JJ _ 2 xcomp _ _ 28 the _ DET DT _ 29 det _ _ 29 day _ NOUN NN _ 27 nmod:tmod _ _ 30 after _ SCONJ IN _ 35 mark _ _ 31 the _ DET DT _ 33 det _ _ 32 tax _ NOUN NN _ 33 compound _ _ 33 bill _ NOUN NN _ 35 nsubjpass _ _ 34 is _ AUX VBZ _ 35 auxpass _ _ 35 enacted _ VERB VBN _ 29 dep _ _ 36 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Close _ VERB VB _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 loophole _ NOUN NN _ 2 dobj _ _ 5 regarding _ VERB VBG _ 4 acl _ _ 6 employee _ NOUN NN _ 9 compound _ _ 7 stock _ NOUN NN _ 9 compound _ _ 8 ownership _ NOUN NN _ 9 compound _ _ 9 plans _ NOUN NNS _ 5 dobj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 effective _ ADJ JJ _ 2 xcomp _ _ 12 June _ PROPN NNP _ 11 nmod:tmod _ _ 13 6 _ NUM CD _ 12 nummod _ _ 14 , _ PUNCT , _ 12 punct _ _ 15 1989 _ NUM CD _ 12 nummod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 that _ PRON WDT _ 20 nsubjpass _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 been _ AUX VBN _ 20 auxpass _ _ 20 exploited _ VERB VBN _ 2 dep _ _ 21 by _ ADP IN _ 23 case _ _ 22 investment _ NOUN NN _ 23 compound _ _ 23 bankers _ NOUN NNS _ 20 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 corporate _ ADJ JJ _ 26 amod _ _ 26 takeovers _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 3 nsubj _ _ 3 repeals _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 50 _ NUM CD _ 6 dep _ _ 6 % _ SYM NN _ 7 advmod _ _ 7 exclusion _ NOUN NN _ 3 dobj _ _ 8 given _ VERB VBN _ 7 acl _ _ 9 to _ ADP TO _ 10 case _ _ 10 banks _ NOUN NNS _ 8 nmod _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 interest _ NOUN NN _ 8 nmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 loans _ NOUN NNS _ 13 nmod _ _ 16 used _ VERB VBN _ 15 acl _ _ 17 to _ PART TO _ 18 mark _ _ 18 acquire _ VERB VB _ 16 xcomp _ _ 19 securities _ NOUN NNS _ 18 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 an _ DET DT _ 22 det _ _ 22 ESOP _ PROPN NNP _ 18 nmod _ _ 23 , _ PUNCT , _ 3 punct _ _ 24 if _ SCONJ IN _ 27 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 ESOP _ PROPN NNP _ 27 nsubj _ _ 27 owns _ VERB VBZ _ 3 advcl _ _ 28 less _ ADJ JJR _ 30 advmod _ _ 29 than _ ADP IN _ 28 mwe _ _ 30 30 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 27 dobj _ _ 32 of _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 34 det _ _ 34 employer _ NOUN NN _ 36 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 stock _ NOUN NN _ 31 nmod _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Curb _ VERB VB _ 0 root _ _ 3 junk _ NOUN NN _ 4 compound _ _ 4 bonds _ NOUN NNS _ 2 dobj _ _ 5 by _ SCONJ IN _ 6 mark _ _ 6 ending _ VERB VBG _ 2 advcl _ _ 7 tax _ NOUN NN _ 8 compound _ _ 8 benefits _ NOUN NNS _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 certain _ ADJ JJ _ 11 amod _ _ 11 securities _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 such _ ADJ JJ _ 16 case _ _ 14 as _ ADP IN _ 13 mwe _ _ 15 zero-coupon _ ADJ JJ _ 16 amod _ _ 16 bonds _ NOUN NNS _ 8 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 postpone _ VERB VBP _ 8 acl:relcl _ _ 20 cash _ NOUN NN _ 22 compound _ _ 21 interest _ NOUN NN _ 22 compound _ _ 22 payments _ NOUN NNS _ 19 dobj _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Raise _ VERB VB _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 851 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 by _ SCONJ IN _ 7 mark _ _ 7 suspending _ VERB VBG _ 2 advcl _ _ 8 for _ ADP IN _ 10 case _ _ 9 one _ NUM CD _ 10 nummod _ _ 10 year _ NOUN NN _ 7 nmod _ _ 11 an _ DET DT _ 13 det _ _ 12 automatic _ ADJ JJ _ 13 amod _ _ 13 reduction _ NOUN NN _ 7 dobj _ _ 14 in _ ADP IN _ 18 case _ _ 15 airport _ NOUN NN _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 airway _ NOUN NN _ 15 conj _ _ 18 taxes _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Speed _ VERB VB _ 0 root _ _ 3 up _ ADP RP _ 2 compound:prt _ _ 4 the _ DET DT _ 5 det _ _ 5 collection _ NOUN NN _ 2 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 payroll _ NOUN NN _ 9 compound _ _ 9 tax _ NOUN NN _ 5 nmod _ _ 10 from _ ADP IN _ 12 case _ _ 11 large _ ADJ JJ _ 12 amod _ _ 12 companies _ NOUN NNS _ 5 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 effective _ ADJ JJ _ 2 xcomp _ _ 15 August _ PROPN NNP _ 14 nmod:tmod _ _ 16 1990 _ NUM CD _ 15 nummod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Impose _ VERB VB _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 tax _ NOUN NN _ 2 dobj _ _ 5 on _ ADP IN _ 7 case _ _ 6 ozone-depleting _ ADJ JJ _ 7 amod _ _ 7 chemicals _ NOUN NNS _ 2 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 such _ ADJ JJ _ 11 case _ _ 10 as _ ADP IN _ 9 mwe _ _ 11 those _ PRON DT _ 7 nmod _ _ 12 used _ VERB VBN _ 11 acl _ _ 13 in _ ADP IN _ 15 case _ _ 14 air _ NOUN NN _ 15 compound _ _ 15 conditioners _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 in _ ADP IN _ 18 case _ _ 18 Styrofoam _ PROPN NNP _ 15 conj _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 beginning _ VERB VBG _ 23 case _ _ 21 at _ ADP IN _ 23 case _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 1.10 _ NUM CD _ 2 advcl _ _ 24 a _ DET DT _ 25 det _ _ 25 pound _ NOUN NN _ 23 nmod:npmod _ _ 26 starting _ VERB VBG _ 28 case _ _ 27 next _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 2 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Withhold _ VERB VB _ 0 root _ _ 3 income _ NOUN NN _ 4 compound _ _ 4 taxes _ NOUN NNS _ 2 dobj _ _ 5 from _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 paychecks _ NOUN NNS _ 2 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 certain _ ADJ JJ _ 11 amod _ _ 10 farm _ NOUN NN _ 11 compound _ _ 11 workers _ NOUN NNS _ 7 nmod _ _ 12 currently _ ADV RB _ 13 advmod _ _ 13 exempt _ ADJ VBP _ 11 amod _ _ 14 from _ ADP IN _ 15 case _ _ 15 withholding _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Change _ VERB NNP _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 collection _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 gasoline _ NOUN NN _ 8 compound _ _ 7 excise _ NOUN NN _ 8 compound _ _ 8 taxes _ NOUN NNS _ 4 nmod _ _ 9 to _ ADP TO _ 10 case _ _ 10 weekly _ ADV JJ _ 2 nmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 semimonthly _ ADV JJ _ 2 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 effective _ ADJ JJ _ 2 xcomp _ _ 15 next _ ADP JJ _ 16 amod _ _ 16 year _ NOUN NN _ 14 nmod:tmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Restrict _ VERB VB _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 ability _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 real _ ADJ JJ _ 8 amod _ _ 7 estate _ NOUN NN _ 8 compound _ _ 8 owners _ NOUN NNS _ 4 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 escape _ VERB VB _ 4 acl _ _ 11 taxes _ NOUN NNS _ 10 dobj _ _ 12 by _ SCONJ IN _ 13 mark _ _ 13 swapping _ VERB VBG _ 10 advcl _ _ 14 one _ NUM CD _ 15 nummod _ _ 15 piece _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 property _ NOUN NN _ 15 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 another _ DET DT _ 13 nmod _ _ 20 instead _ ADV RB _ 22 mark _ _ 21 of _ SCONJ IN _ 20 mwe _ _ 22 selling _ VERB VBG _ 13 advcl _ _ 23 it _ PRON PRP _ 22 dobj _ _ 24 for _ ADP IN _ 25 case _ _ 25 cash _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Increase _ VERB NN _ 0 root _ _ 3 to _ ADP TO _ 5 case _ _ 4 $ _ SYM $ _ 5 dep _ _ 5 6 _ NUM CD _ 2 nmod _ _ 6 a _ DET DT _ 7 det _ _ 7 person _ NOUN NN _ 5 nmod:npmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 3 _ NUM CD _ 2 nmod _ _ 11 the _ DET DT _ 15 det _ _ 12 international _ ADJ JJ _ 15 amod _ _ 13 air-passenger _ NOUN NN _ 15 compound _ _ 14 departure _ NOUN NN _ 15 compound _ _ 15 tax _ NOUN NN _ 2 dobj _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 and _ CONJ CC _ 2 cc _ _ 18 impose _ VERB VB _ 2 conj _ _ 19 a _ DET DT _ 22 det _ _ 20 $ _ SYM $ _ 22 amod _ _ 21 3-a-person _ ADJ JJ _ 20 dep _ _ 22 tax _ NOUN NN _ 18 dobj _ _ 23 on _ ADP IN _ 25 case _ _ 24 international _ ADJ JJ _ 25 amod _ _ 25 departures _ NOUN NNS _ 18 nmod _ _ 26 by _ ADP IN _ 28 case _ _ 27 commercial _ ADJ JJ _ 28 amod _ _ 28 ships _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 includes _ VERB VBZ _ 0 root _ _ 5 spending _ NOUN NN _ 6 compound _ _ 6 cuts _ NOUN NNS _ 4 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 increases _ NOUN NNS _ 6 conj _ _ 9 in _ ADP IN _ 11 case _ _ 10 federal _ ADJ JJ _ 11 amod _ _ 11 fees _ NOUN NNS _ 8 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 provisions _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Reduction _ PROPN NN _ 0 root _ _ 3 of _ ADP IN _ 5 case _ _ 4 Medicare _ PROPN NNP _ 5 compound _ _ 5 spending _ NOUN NN _ 2 nmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 fiscal _ ADJ JJ _ 8 amod _ _ 8 1990 _ NUM CD _ 2 nmod _ _ 9 by _ ADP IN _ 11 case _ _ 10 some _ DET DT _ 11 advmod _ _ 11 $ _ SYM $ _ 2 nmod _ _ 12 2.8 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 in _ ADP IN _ 16 case _ _ 16 part _ NOUN NN _ 18 nmod _ _ 17 by _ SCONJ IN _ 18 mark _ _ 18 curbing _ VERB VBG _ 2 nmod _ _ 19 increases _ NOUN NNS _ 18 dobj _ _ 20 in _ ADP IN _ 21 case _ _ 21 reimbursements _ NOUN NNS _ 19 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 physicians _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 impose _ VERB VB _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 brief _ ADJ JJ _ 7 amod _ _ 7 freeze _ NOUN NN _ 4 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 physician _ NOUN NN _ 10 compound _ _ 10 fees _ NOUN NNS _ 4 nmod _ _ 11 next _ ADP JJ _ 12 amod _ _ 12 year _ NOUN NN _ 4 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Removal _ PROPN NN _ 0 root _ _ 3 of _ ADP IN _ 10 case _ _ 4 the _ DET DT _ 7 det _ _ 5 U.S. _ PROPN NNP _ 7 compound _ _ 6 Postal _ PROPN NNP _ 7 compound _ _ 7 Service _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 operating _ NOUN NN _ 10 compound _ _ 10 budget _ NOUN NN _ 2 nmod _ _ 11 from _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 budget _ NOUN NN _ 2 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 reducing _ VERB VBG _ 2 dep _ _ 17 the _ DET DT _ 18 det _ _ 18 deficit _ NOUN NN _ 16 dobj _ _ 19 by _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 16 nmod _ _ 21 1.77 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 similar _ ADJ JJ _ 3 amod _ _ 3 provision _ NOUN NN _ 8 nsubj _ _ 4 is _ VERB VBZ _ 8 cop _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 House _ PROPN NNP _ 8 compound _ _ 8 version _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Authority _ PROPN NNP _ 0 root _ _ 3 for _ SCONJ IN _ 9 mark _ _ 4 the _ DET DT _ 7 det _ _ 5 Federal _ PROPN NNP _ 7 compound _ _ 6 Aviation _ PROPN NNP _ 7 compound _ _ 7 Administration _ PROPN NNP _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 raise _ VERB VB _ 2 acl _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 239 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 charging _ VERB VBG _ 9 advcl _ _ 15 fees _ NOUN NNS _ 14 dobj _ _ 16 for _ ADP IN _ 19 case _ _ 17 commercial _ ADJ JJ _ 19 amod _ _ 18 airline-landing _ ADJ JJ _ 19 amod _ _ 19 rights _ NOUN NNS _ 14 nmod _ _ 20 at _ ADP IN _ 24 case _ _ 21 New _ PROPN NNP _ 22 compound _ _ 22 York _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 LaGuardia _ PROPN NNP _ 19 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 John _ PROPN NNP _ 30 compound _ _ 27 F. _ PROPN NNP _ 30 compound _ _ 28 Kennedy _ PROPN NNP _ 30 compound _ _ 29 International _ PROPN NNP _ 30 compound _ _ 30 Airports _ PROPN NNPS _ 24 conj _ _ 31 , _ PUNCT , _ 24 punct _ _ 32 O'Hare _ PROPN NNP _ 34 compound _ _ 33 International _ PROPN NNP _ 34 compound _ _ 34 Airport _ PROPN NNP _ 24 conj _ _ 35 in _ ADP IN _ 36 case _ _ 36 Chicago _ PROPN NNP _ 34 nmod _ _ 37 and _ CONJ CC _ 24 cc _ _ 38 National _ PROPN NNP _ 39 compound _ _ 39 Airport _ PROPN NNP _ 24 conj _ _ 40 in _ ADP IN _ 41 case _ _ 41 Washington _ PROPN NNP _ 39 nmod _ _ 42 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Increases _ NOUN NNS _ 0 root _ _ 3 in _ ADP IN _ 7 case _ _ 4 Nuclear _ PROPN NNP _ 7 compound _ _ 5 Regulatory _ PROPN NNP _ 7 compound _ _ 6 Commission _ PROPN NNP _ 7 compound _ _ 7 fees _ NOUN NNS _ 2 nmod _ _ 8 totaling _ VERB VBG _ 2 acl _ _ 9 $ _ SYM $ _ 11 dep _ _ 10 54 _ NUM CD _ 11 nummod _ _ 11 million _ NUM CD _ 8 dobj _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Direction _ NOUN NN _ 0 root _ _ 3 to _ ADP TO _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 U.S. _ PROPN NNP _ 7 compound _ _ 6 Coast _ PROPN NNP _ 7 compound _ _ 7 Guard _ PROPN NNP _ 2 nmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 collect _ VERB VB _ 2 acl _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 50 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 from _ ADP IN _ 14 case _ _ 14 users _ NOUN NNS _ 9 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 Coast _ PROPN NNP _ 18 compound _ _ 17 Guard _ PROPN NNP _ 18 compound _ _ 18 services _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Raising _ VERB NNP _ 0 root _ _ 3 an _ DET DT _ 5 det _ _ 4 additional _ ADJ JJ _ 5 amod _ _ 5 $ _ SYM $ _ 2 dobj _ _ 6 43 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 by _ SCONJ IN _ 9 mark _ _ 9 increasing _ VERB VBG _ 2 advcl _ _ 10 existing _ ADJ VBG _ 14 amod _ _ 11 Federal _ PROPN NNP _ 14 compound _ _ 12 Communications _ PROPN NNP _ 14 compound _ _ 13 Commission _ PROPN NNP _ 14 compound _ _ 14 fees _ NOUN NNS _ 9 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 penalties _ NOUN NNS _ 14 conj _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 establishing _ VERB VBG _ 9 conj _ _ 19 new _ ADJ JJ _ 20 amod _ _ 20 fees _ NOUN NNS _ 18 dobj _ _ 21 for _ ADP IN _ 24 case _ _ 22 amateur _ ADJ JJ _ 24 amod _ _ 23 radio _ NOUN NN _ 24 compound _ _ 24 operators _ NOUN NNS _ 20 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 ship _ NOUN NN _ 27 compound _ _ 27 stations _ NOUN NNS _ 24 conj _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 mobile _ ADJ JJ _ 31 amod _ _ 30 radio _ NOUN NN _ 31 compound _ _ 31 facilities _ NOUN NNS _ 24 conj _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 John _ PROPN NNP _ 3 compound _ _ 2 E. _ PROPN NNP _ 3 compound _ _ 3 Yang _ PROPN NNP _ 4 nsubj _ _ 4 contributed _ VERB VBD _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 this _ DET DT _ 7 det _ _ 7 article _ NOUN NN _ 4 nmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 response _ NOUN NN _ 28 nmod _ _ 3 to _ ADP TO _ 9 case _ _ 4 your _ PRON PRP$ _ 9 nmod:poss _ _ 5 overly _ ADV RB _ 6 advmod _ _ 6 optimistic _ ADJ JJ _ 9 amod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 outdated _ ADJ JJ _ 9 amod _ _ 9 piece _ NOUN NN _ 2 nmod _ _ 10 on _ SCONJ IN _ 14 mark _ _ 11 how _ ADV WRB _ 12 advmod _ _ 12 long _ ADV JJ _ 14 advmod _ _ 13 unemployment _ NOUN NN _ 14 nsubj _ _ 14 lasts _ VERB VBZ _ 9 acl _ _ 15 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 16 People _ NOUN NNS _ 17 compound _ _ 17 Patterns _ NOUN NN _ 9 dep _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Sept. _ PROPN NNP _ 17 dep _ _ 20 20 _ NUM CD _ 19 nummod _ _ 21 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 22 : _ PUNCT : _ 28 punct _ _ 23 I _ PRON PRP _ 28 nsubj _ _ 24 am _ VERB VBP _ 28 cop _ _ 25 in _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 communications _ NOUN NNS _ 28 compound _ _ 28 field _ NOUN NN _ 0 root _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 above _ ADP IN _ 32 case _ _ 31 entry _ NOUN NN _ 32 compound _ _ 32 level _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 28 punct _ _ 1 I _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 laid _ VERB VBN _ 0 root _ _ 4 off _ ADP RP _ 3 compound:prt _ _ 5 in _ ADP IN _ 6 case _ _ 6 August _ PROPN NNP _ 3 nmod _ _ 7 1988 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 after _ ADP IN _ 16 case _ _ 11 a _ DET DT _ 16 det _ _ 12 thorough _ ADJ JJ _ 16 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 exhausting _ ADJ JJ _ 12 conj _ _ 15 job _ NOUN NN _ 16 compound _ _ 16 search _ NOUN NN _ 19 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 was _ AUX VBD _ 19 auxpass _ _ 19 hired _ VERB VBN _ 3 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 August _ PROPN NNP _ 19 nmod _ _ 22 1989 _ NUM CD _ 21 nummod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 My _ PRON PRP$ _ 3 nmod:poss _ _ 2 unemployment _ NOUN NN _ 3 compound _ _ 3 insurance _ NOUN NN _ 4 nsubj _ _ 4 ran _ VERB VBD _ 0 root _ _ 5 out _ ADP RP _ 4 compound:prt _ _ 6 before _ SCONJ IN _ 8 mark _ _ 7 I _ PRON PRP _ 8 nsubj _ _ 8 found _ VERB VBD _ 4 advcl _ _ 9 a _ DET DT _ 10 det _ _ 10 job _ NOUN NN _ 8 dobj _ _ 11 ; _ PUNCT : _ 4 punct _ _ 12 I _ PRON PRP _ 13 nsubj _ _ 13 found _ VERB VBD _ 4 parataxis _ _ 14 cutbacks _ NOUN NNS _ 13 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 layoffs _ NOUN NNS _ 14 conj _ _ 17 in _ ADP IN _ 19 case _ _ 18 many _ ADJ JJ _ 19 amod _ _ 19 companies _ NOUN NNS _ 13 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 statistics _ NOUN NNS _ 27 nsubj _ _ 3 quoted _ VERB VBN _ 2 acl _ _ 4 by _ ADP IN _ 11 case _ _ 5 the _ DET DT _ 11 det _ _ 6 `` _ PUNCT `` _ 11 punct _ _ 7 new _ ADJ JJ _ 11 amod _ _ 8 '' _ PUNCT '' _ 11 punct _ _ 9 Census _ PROPN NNP _ 11 compound _ _ 10 Bureau _ PROPN NNP _ 11 compound _ _ 11 report _ NOUN NN _ 3 nmod _ _ 12 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 13 garnered _ VERB VBN _ 2 dep _ _ 14 from _ ADP IN _ 15 case _ _ 15 1984 _ NUM CD _ 13 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 1986 _ NUM CD _ 15 nmod _ _ 18 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 19 are _ VERB VBP _ 27 cop _ _ 20 out _ ADP IN _ 27 advmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 date _ NOUN NN _ 20 nmod _ _ 23 , _ PUNCT , _ 27 punct _ _ 24 certainly _ ADV RB _ 27 advmod _ _ 25 as _ ADP IN _ 27 case _ _ 26 an _ DET DT _ 27 det _ _ 27 average _ NOUN NN _ 0 root _ _ 28 for _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 Northeast _ PROPN NNP _ 27 nmod _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 and _ CONJ CC _ 27 cc _ _ 33 possibly _ ADV RB _ 36 advmod _ _ 34 for _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 rest _ NOUN NN _ 27 conj _ _ 37 of _ ADP IN _ 39 case _ _ 38 the _ DET DT _ 39 det _ _ 39 country _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 27 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 think _ VERB VBP _ 0 root _ _ 3 what _ PRON WP _ 4 nsubj _ _ 4 bothered _ VERB VBD _ 10 csubj _ _ 5 me _ PRON PRP _ 4 dobj _ _ 6 most _ ADV RBS _ 4 advmod _ _ 7 about _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 piece _ NOUN NN _ 4 nmod _ _ 10 was _ VERB VBD _ 2 ccomp _ _ 11 that _ SCONJ IN _ 13 mark _ _ 12 there _ PRON EX _ 13 expl _ _ 13 seemed _ VERB VBD _ 10 ccomp _ _ 14 to _ PART TO _ 18 mark _ _ 15 be _ VERB VB _ 18 cop _ _ 16 an _ DET DT _ 18 det _ _ 17 underlying _ ADJ JJ _ 18 amod _ _ 18 attitude _ NOUN NN _ 13 xcomp _ _ 19 to _ PART TO _ 20 mark _ _ 20 tell _ VERB VB _ 18 acl _ _ 21 your _ PRON PRP$ _ 22 nmod:poss _ _ 22 readers _ NOUN NNS _ 20 dobj _ _ 23 all _ DET DT _ 25 nsubj _ _ 24 is _ VERB VBZ _ 25 cop _ _ 25 well _ ADJ RB _ 20 dep _ _ 26 -- _ PUNCT : _ 25 punct _ _ 27 if _ SCONJ IN _ 31 mark _ _ 28 you _ PRON PRP _ 31 nsubjpass _ _ 29 're _ AUX VBP _ 31 aux _ _ 30 getting _ AUX VBG _ 31 auxpass _ _ 31 laid _ VERB VBN _ 35 csubj _ _ 32 off _ ADP RP _ 31 compound:prt _ _ 33 do _ AUX VBP _ 35 aux _ _ 34 n't _ PART RB _ 35 neg _ _ 35 worry _ VERB VB _ 25 parataxis _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 and _ CONJ CC _ 35 cc _ _ 38 if _ SCONJ IN _ 41 mark _ _ 39 you _ PRON PRP _ 41 nsubj _ _ 40 're _ VERB VBP _ 41 cop _ _ 41 unemployed _ ADJ JJ _ 48 advcl _ _ 42 , _ PUNCT , _ 48 punct _ _ 43 it _ PRON PRP _ 48 nsubj _ _ 44 's _ VERB VBZ _ 48 cop _ _ 45 a _ DET DT _ 46 det _ _ 46 seller _ NOUN NN _ 48 nmod:poss _ _ 47 's _ PART POS _ 46 case _ _ 48 market _ NOUN NN _ 35 conj _ _ 49 . _ PUNCT . _ 2 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 top _ VERB VB _ 7 advcl _ _ 3 it _ PRON PRP _ 2 dobj _ _ 4 off _ ADP RP _ 2 compound:prt _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 you _ PRON PRP _ 7 nsubj _ _ 7 captioned _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 graph _ NOUN NN _ 7 dobj _ _ 10 showing _ VERB VBG _ 9 acl _ _ 11 the _ DET DT _ 13 det _ _ 12 average _ ADJ JJ _ 13 amod _ _ 13 number _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 months _ NOUN NNS _ 13 nmod _ _ 16 in _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 job _ NOUN NN _ 19 compound _ _ 19 search _ NOUN NN _ 13 nmod _ _ 20 as _ ADP IN _ 22 case _ _ 21 `` _ PUNCT `` _ 22 punct _ _ 22 Time _ NOUN NNP _ 7 nmod _ _ 23 Off _ ADP IN _ 22 amod _ _ 24 . _ PUNCT . _ 7 punct _ _ 25 '' _ PUNCT '' _ 7 punct _ _ 1 Are _ AUX VBP _ 3 aux _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 kidding _ VERB VBG _ 0 root _ _ 4 ? _ PUNCT . _ 3 punct _ _ 1 Looking _ VERB VBG _ 6 csubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 job _ NOUN NN _ 1 nmod _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 one _ NUM CD _ 0 root _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 most _ ADV RBS _ 10 advmod _ _ 10 anxious _ ADJ JJ _ 11 amod _ _ 11 periods _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 my _ PRON PRP$ _ 14 nmod:poss _ _ 14 life _ NOUN NN _ 11 nmod _ _ 15 -- _ PUNCT : _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 is _ VERB VBZ _ 20 cop _ _ 18 for _ ADP IN _ 20 case _ _ 19 most _ ADJ JJS _ 20 amod _ _ 20 people _ NOUN NNS _ 6 conj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 Your _ PRON PRP$ _ 2 nmod:poss _ _ 2 paper _ NOUN NN _ 3 nsubj _ _ 3 needs _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 serious _ ADJ JJ _ 7 amod _ _ 6 reality _ NOUN NN _ 7 compound _ _ 7 check _ NOUN NN _ 3 dobj _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Reva _ PROPN NNP _ 2 compound _ _ 2 Levin _ PROPN NNP _ 0 root _ _ 1 Cambridge _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Mass _ PROPN NNP _ 1 appos _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 BULL _ PROPN NN _ 5 compound _ _ 2 HN _ PROPN NNP _ 5 compound _ _ 3 INFORMATION _ PROPN NNP _ 5 compound _ _ 4 SYSTEMS _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 10 nsubj _ _ 6 is _ VERB VBZ _ 10 cop _ _ 7 a _ DET DT _ 10 det _ _ 8 U.S. _ PROPN NNP _ 10 compound _ _ 9 majority-owned _ ADJ JJ _ 10 amod _ _ 10 unit _ NOUN NN _ 0 root _ _ 11 of _ ADP IN _ 15 case _ _ 12 Cie. _ PROPN NNP _ 15 compound _ _ 13 des _ PROPN NNP _ 15 compound _ _ 14 Machines _ PROPN NNP _ 15 compound _ _ 15 Bull _ PROPN NNP _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 edition _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 name _ NOUN NN _ 12 nsubjpass _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 unit _ NOUN NN _ 7 nmod _ _ 11 was _ AUX VBD _ 12 auxpass _ _ 12 misstated _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Moody _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNPS _ 4 compound _ _ 4 Service _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 reduced _ VERB VBD _ 5 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 rating _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 165 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 of _ ADP IN _ 16 case _ _ 15 subordinated _ ADJ JJ _ 16 amod _ _ 16 debt _ NOUN NN _ 11 nmod _ _ 17 of _ ADP IN _ 24 case _ _ 18 this _ DET DT _ 24 det _ _ 19 Beverly _ PROPN NNP _ 24 dep _ _ 20 Hills _ PROPN NNP _ 19 compound _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 Calif. _ PROPN NNP _ 19 dep _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 thrift _ NOUN NN _ 16 nmod _ _ 25 , _ PUNCT , _ 5 punct _ _ 26 citing _ VERB VBG _ 5 xcomp _ _ 27 turmoil _ NOUN NN _ 26 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 market _ NOUN NN _ 27 nmod _ _ 31 for _ ADP IN _ 35 case _ _ 32 low-grade _ ADJ JJ _ 35 amod _ _ 33 , _ PUNCT , _ 35 punct _ _ 34 high-yield _ ADJ JJ _ 35 amod _ _ 35 securities _ NOUN NNS _ 30 nmod _ _ 36 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 reduced _ VERB VBD _ 3 ccomp _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 rating _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 10 det _ _ 10 thrift _ NOUN NN _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 subordinated _ ADJ JJ _ 13 amod _ _ 13 debt _ NOUN NN _ 7 nmod _ _ 14 to _ ADP TO _ 15 case _ _ 15 B-2 _ ADJ NN _ 5 nmod _ _ 16 from _ ADP IN _ 17 case _ _ 17 Ba-2 _ ADJ NN _ 5 nmod _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 will _ AUX MD _ 20 aux _ _ 20 keep _ VERB VB _ 5 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 debt _ NOUN NN _ 20 dobj _ _ 23 under _ ADP IN _ 24 case _ _ 24 review _ NOUN NN _ 20 nmod _ _ 25 for _ ADP IN _ 28 case _ _ 26 possible _ ADJ JJ _ 28 amod _ _ 27 further _ ADJ JJ _ 28 amod _ _ 28 downgrade _ NOUN NN _ 20 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Columbia _ PROPN NNP _ 2 compound _ _ 2 Savings _ PROPN NNPS _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 major _ ADJ JJ _ 6 amod _ _ 6 holder _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 so-called _ ADJ JJ _ 10 amod _ _ 9 junk _ NOUN NN _ 10 compound _ _ 10 bonds _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 New _ ADJ NNP _ 3 amod _ _ 2 federal _ ADJ JJ _ 3 amod _ _ 3 legislation _ NOUN NN _ 4 nsubj _ _ 4 requires _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 all _ DET DT _ 7 det _ _ 7 thrifts _ NOUN NNS _ 8 nsubj _ _ 8 divest _ VERB VBP _ 4 ccomp _ _ 9 themselves _ PRON PRP _ 8 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 such _ ADJ JJ _ 13 amod _ _ 12 speculative _ ADJ JJ _ 13 amod _ _ 13 securities _ NOUN NNS _ 8 nmod _ _ 14 over _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 period _ NOUN NN _ 8 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 years _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Columbia _ PROPN NNP _ 3 compound _ _ 2 Savings _ PROPN NNPS _ 3 compound _ _ 3 officials _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 n't _ PART RB _ 6 neg _ _ 6 available _ ADJ JJ _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 comment _ NOUN NN _ 6 nmod _ _ 9 on _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 downgrade _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 FRANKLIN _ PROPN NNP _ 3 compound _ _ 2 SAVINGS _ PROPN NNP _ 3 compound _ _ 3 ASSOCIATION _ PROPN NNP _ 0 root _ _ 4 -LRB- _ PUNCT -LRB- _ 5 punct _ _ 5 Ottawa _ PROPN NNP _ 3 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Kan. _ PROPN NNP _ 5 appos _ _ 8 -RRB- _ PUNCT -RRB- _ 5 punct _ _ 9 -- _ PUNCT : _ 3 punct _ _ 1 Moody _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNPS _ 5 compound _ _ 4 Service _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 downgraded _ VERB VBD _ 6 ccomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 rating _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 12 case _ _ 12 B-2 _ ADJ NN _ 8 nmod _ _ 13 from _ ADP IN _ 14 case _ _ 14 Ba-3 _ ADJ JJ _ 8 nmod _ _ 15 on _ ADP IN _ 18 case _ _ 16 less _ ADJ JJR _ 18 advmod _ _ 17 than _ ADP IN _ 16 mwe _ _ 18 $ _ SYM $ _ 8 nmod _ _ 19 20 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 of _ ADP IN _ 27 case _ _ 22 this _ DET DT _ 23 det _ _ 23 thrift _ NOUN NN _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 senior _ ADJ JJ _ 27 amod _ _ 26 subordinated _ ADJ JJ _ 27 amod _ _ 27 notes _ NOUN NNS _ 18 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 rating _ NOUN NN _ 3 compound _ _ 3 concern _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Franklin _ PROPN NNP _ 10 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 troubled _ ADJ JJ _ 10 amod _ _ 9 diversification _ NOUN NN _ 10 compound _ _ 10 record _ NOUN NN _ 18 nsubj _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 securities _ NOUN NNS _ 14 compound _ _ 14 business _ NOUN NN _ 10 nmod _ _ 15 '' _ PUNCT '' _ 10 punct _ _ 16 was _ VERB VBD _ 18 cop _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 reason _ NOUN NN _ 4 ccomp _ _ 19 for _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 downgrade _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 4 punct _ _ 23 citing _ VERB VBG _ 4 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 troubles _ NOUN NNS _ 23 dobj _ _ 26 at _ ADP IN _ 30 case _ _ 27 its _ PRON PRP$ _ 30 nmod:poss _ _ 28 L.F. _ PROPN NNP _ 30 compound _ _ 29 Rothschild _ PROPN NNP _ 30 compound _ _ 30 subsidiary _ NOUN NN _ 25 nmod _ _ 31 and _ CONJ CC _ 25 cc _ _ 32 the _ DET DT _ 34 det _ _ 33 possible _ ADJ JJ _ 34 amod _ _ 34 sale _ NOUN NN _ 25 conj _ _ 35 of _ ADP IN _ 37 case _ _ 36 other _ ADJ JJ _ 37 amod _ _ 37 subsidiaries _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 They _ PRON PRP _ 4 nsubj _ _ 3 perhaps _ ADV RB _ 4 advmod _ _ 4 had _ VERB VBD _ 16 ccomp _ _ 5 concern _ NOUN NN _ 4 dobj _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 we _ PRON PRP _ 9 nsubj _ _ 8 were _ AUX VBD _ 9 aux _ _ 9 getting _ VERB VBG _ 5 ccomp _ _ 10 out _ ADP IN _ 9 advmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 all _ DET PDT _ 13 det:predet _ _ 13 these _ DET DT _ 10 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Franklin _ PROPN NNP _ 21 compound _ _ 18 President _ PROPN NNP _ 21 compound _ _ 19 Duane _ PROPN NNP _ 21 compound _ _ 20 H. _ PROPN NNP _ 21 compound _ _ 21 Hall _ PROPN NNP _ 16 nsubj _ _ 22 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 0 root _ _ 4 it _ PRON PRP _ 8 nsubj _ _ 5 was _ VERB VBD _ 8 cop _ _ 6 a _ DET DT _ 7 det _ _ 7 little _ ADJ JJ _ 8 nmod:npmod _ _ 8 premature _ ADJ JJ _ 3 ccomp _ _ 9 on _ ADP IN _ 11 case _ _ 10 their _ PRON PRP$ _ 11 nmod:poss _ _ 11 part _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Just _ ADV RB _ 4 advmod _ _ 2 when _ ADV WRB _ 4 advmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 seemed _ VERB VBD _ 14 advcl _ _ 5 safe _ ADJ JJ _ 4 xcomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 go _ VERB VB _ 4 xcomp _ _ 8 back _ ADV RB _ 7 advmod _ _ 9 into _ ADP IN _ 10 case _ _ 10 stocks _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 Wall _ PROPN NNP _ 13 compound _ _ 13 Street _ PROPN NNP _ 14 nsubj _ _ 14 suffered _ VERB VBD _ 0 root _ _ 15 another _ DET DT _ 17 det _ _ 16 severe _ ADJ JJ _ 17 amod _ _ 17 attack _ NOUN NN _ 14 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 nerves _ NOUN NNS _ 17 nmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Does _ AUX VBZ _ 3 aux _ _ 2 this _ PRON DT _ 3 nsubj _ _ 3 signal _ VERB NN _ 0 root _ _ 4 another _ DET DT _ 6 det _ _ 5 Black _ PROPN NNP _ 6 compound _ _ 6 Monday _ PROPN NNP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 coming _ VERB VBG _ 3 ccomp _ _ 9 ? _ PUNCT . _ 3 punct _ _ 1 Or _ CONJ CC _ 7 cc _ _ 2 is _ VERB VBZ _ 7 cop _ _ 3 this _ PRON DT _ 7 nsubj _ _ 4 an _ DET DT _ 7 det _ _ 5 extraordinary _ ADJ JJ _ 7 amod _ _ 6 buying _ NOUN NN _ 7 compound _ _ 7 opportunity _ NOUN NN _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 just _ ADV RB _ 17 advmod _ _ 10 like _ SCONJ IN _ 17 mark _ _ 11 Oct. _ PROPN NNP _ 17 nsubj _ _ 12 19 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 1987 _ NUM CD _ 11 nummod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 eventually _ ADV RB _ 17 advmod _ _ 17 turned _ VERB VBD _ 7 acl:relcl _ _ 18 out _ ADP RP _ 17 compound:prt _ _ 19 to _ PART TO _ 20 mark _ _ 20 be _ VERB VB _ 17 xcomp _ _ 21 ? _ PUNCT . _ 7 punct _ _ 1 Here _ ADV RB _ 2 advmod _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 what _ PRON WP _ 11 dobj _ _ 4 several _ ADJ JJ _ 7 amod _ _ 5 leading _ ADJ VBG _ 7 amod _ _ 6 market _ NOUN NN _ 7 compound _ _ 7 experts _ NOUN NNS _ 11 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 money _ NOUN NN _ 10 compound _ _ 10 managers _ NOUN NNS _ 7 conj _ _ 11 say _ VERB VBP _ 2 dep _ _ 12 about _ ADP IN _ 15 case _ _ 13 Friday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 action _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 what _ PRON WP _ 18 nsubj _ _ 18 happens _ VERB VBZ _ 11 conj _ _ 19 next _ ADV JJ _ 18 advmod _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 what _ PRON WP _ 24 dobj _ _ 22 investors _ NOUN NNS _ 24 nsubj _ _ 23 should _ AUX MD _ 24 aux _ _ 24 do _ VERB VB _ 11 conj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Joseph _ PROPN NNP _ 2 compound _ _ 2 Granville _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 I _ PRON PRP _ 6 nsubj _ _ 3 'm _ VERB VBP _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 only _ ADJ JJ _ 6 amod _ _ 6 one _ NUM NN _ 24 ccomp _ _ 7 who _ PRON WP _ 8 nsubj _ _ 8 said _ VERB VBD _ 6 acl:relcl _ _ 9 there _ PRON EX _ 14 expl _ _ 10 would _ AUX MD _ 14 aux _ _ 11 be _ VERB VB _ 14 cop _ _ 12 an _ DET DT _ 14 det _ _ 13 October _ PROPN NNP _ 14 compound _ _ 14 massacre _ NOUN NN _ 8 ccomp _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 all _ ADV DT _ 19 advmod _ _ 17 through _ ADP IN _ 19 case _ _ 18 late _ ADJ JJ _ 19 amod _ _ 19 August _ PROPN NNP _ 8 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 September _ PROPN NNP _ 19 conj _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 '' _ PUNCT '' _ 24 punct _ _ 24 says _ VERB VBZ _ 0 root _ _ 25 Mr. _ PROPN NNP _ 26 compound _ _ 26 Granville _ PROPN NNP _ 24 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 once _ ADV RB _ 33 advmod _ _ 29 a _ DET DT _ 33 det _ _ 30 widely _ ADV RB _ 31 advmod _ _ 31 followed _ VERB VBN _ 33 amod _ _ 32 market _ NOUN NN _ 33 compound _ _ 33 guru _ NOUN NN _ 26 appos _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 still _ ADV RB _ 39 advmod _ _ 36 a _ DET DT _ 39 det _ _ 37 well-known _ ADJ JJ _ 39 amod _ _ 38 newsletter _ NOUN NN _ 39 compound _ _ 39 writer _ NOUN NN _ 33 conj _ _ 40 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Everyone _ NOUN NN _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 tell _ VERB VB _ 16 ccomp _ _ 5 you _ PRON PRP _ 4 dobj _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 this _ DET DT _ 8 det _ _ 8 time _ NOUN NN _ 10 nsubj _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 different _ ADJ JJ _ 4 ccomp _ _ 11 from _ ADP IN _ 12 case _ _ 12 1987 _ NUM CD _ 10 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 says _ VERB VBZ _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Well _ ADV UH _ 9 discourse _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 in _ ADP IN _ 6 case _ _ 5 some _ DET DT _ 6 det _ _ 6 ways _ NOUN NNS _ 9 nmod _ _ 7 it _ PRON PRP _ 9 nsubj _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 different _ ADJ JJ _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 but _ CONJ CC _ 9 cc _ _ 12 technically _ ADV RB _ 17 advmod _ _ 13 it _ PRON PRP _ 17 nsubj _ _ 14 is _ VERB VBZ _ 17 cop _ _ 15 just _ ADV RB _ 17 advmod _ _ 16 the _ DET DT _ 17 det _ _ 17 same _ ADJ JJ _ 9 conj _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 you _ PRON PRP _ 5 nsubj _ _ 3 're _ VERB VBP _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 technician _ NOUN NN _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 you _ PRON PRP _ 8 nsubj _ _ 8 obey _ VERB VBP _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 signals _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 Right _ ADV RB _ 2 advmod _ _ 2 now _ ADV RB _ 5 advmod _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 're _ AUX VBP _ 5 aux _ _ 5 telling _ VERB VBG _ 0 root _ _ 6 me _ PRON PRP _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 5 xcomp _ _ 9 the _ DET DT _ 10 det _ _ 10 hell _ NOUN NN _ 11 dep _ _ 11 out _ ADP IN _ 8 advmod _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 stay _ VERB VB _ 8 conj _ _ 14 out _ ADV RP _ 13 advmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 see _ VERB VBP _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 major _ ADJ JJ _ 5 amod _ _ 5 support _ NOUN NN _ 2 dobj _ _ 6 until _ ADP IN _ 7 case _ _ 7 2200 _ NUM CD _ 5 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 see _ VERB VBP _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 possibility _ NOUN NN _ 2 dobj _ _ 5 of _ SCONJ IN _ 6 mark _ _ 6 going _ VERB VBG _ 4 acl _ _ 7 to _ ADP TO _ 8 case _ _ 8 2200 _ NUM CD _ 6 nmod _ _ 9 this _ DET DT _ 10 det _ _ 10 month _ NOUN NN _ 6 nmod:tmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 12 '' _ PUNCT '' _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Granville _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 he _ PRON PRP _ 8 nsubj _ _ 5 would _ AUX MD _ 8 aux _ _ 6 n't _ PART RB _ 8 neg _ _ 7 even _ ADV RB _ 8 advmod _ _ 8 think _ VERB VB _ 3 ccomp _ _ 9 of _ ADP IN _ 10 case _ _ 10 buying _ VERB VBG _ 8 nmod _ _ 11 until _ SCONJ IN _ 19 mark _ _ 12 at _ ADP IN _ 13 case _ _ 13 least _ ADJ JJS _ 16 nmod:npmod _ _ 14 600 _ NUM CD _ 16 compound _ _ 15 to _ ADP TO _ 16 dep _ _ 16 700 _ NUM CD _ 17 nummod _ _ 17 stocks _ NOUN NNS _ 19 nsubj _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 hit _ VERB VBN _ 8 advcl _ _ 20 52-week _ ADJ JJ _ 21 amod _ _ 21 lows _ NOUN NNS _ 19 dobj _ _ 22 ; _ PUNCT : _ 3 punct _ _ 23 about _ ADV IN _ 25 advmod _ _ 24 100 _ NUM CD _ 25 nummod _ _ 25 stocks _ NOUN NNS _ 26 nsubj _ _ 26 hit _ VERB VBD _ 3 parataxis _ _ 27 new _ ADJ JJ _ 28 amod _ _ 28 lows _ NOUN NNS _ 26 dobj _ _ 29 Friday _ PROPN NNP _ 26 nmod:tmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Most _ ADJ JJS _ 3 amod _ _ 3 people _ NOUN NNS _ 10 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 '' _ PUNCT '' _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 10 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 have _ VERB VBP _ 0 root _ _ 11 no _ DET DT _ 12 neg _ _ 12 idea _ NOUN NN _ 10 dobj _ _ 13 what _ PRON WP _ 17 nmod _ _ 14 a _ DET DT _ 16 det _ _ 15 massacre _ NOUN NN _ 16 compound _ _ 16 pattern _ NOUN NN _ 17 nsubj _ _ 17 looks _ VERB VBZ _ 12 ccomp _ _ 18 like _ ADP IN _ 13 case _ _ 19 . _ PUNCT . _ 10 punct _ _ 20 '' _ PUNCT '' _ 10 punct _ _ 1 Elaine _ PROPN NNP _ 2 compound _ _ 2 Garzarelli _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 quantitative _ ADJ JJ _ 3 amod _ _ 3 analyst _ NOUN NN _ 13 ccomp _ _ 4 with _ ADP IN _ 8 case _ _ 5 Shearson _ PROPN NNP _ 8 compound _ _ 6 Lehman _ PROPN NNP _ 8 compound _ _ 7 Hutton _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 3 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 Ms. _ PROPN NNP _ 11 compound _ _ 11 Garzarelli _ PROPN NNP _ 13 nsubj _ _ 12 had _ AUX VBD _ 13 aux _ _ 13 warned _ VERB VBN _ 0 root _ _ 14 clients _ NOUN NNS _ 13 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 take _ VERB VB _ 13 xcomp _ _ 17 their _ PRON PRP$ _ 18 nmod:poss _ _ 18 money _ NOUN NN _ 16 dobj _ _ 19 out _ ADP IN _ 16 advmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 19 nmod _ _ 23 before _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 1987 _ NUM CD _ 26 nummod _ _ 26 crash _ NOUN NN _ 16 nmod _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 Friday _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 big _ ADJ JJ _ 4 amod _ _ 4 drop _ NOUN NN _ 13 nsubj _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 she _ PRON PRP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 13 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 was _ VERB VBD _ 13 cop _ _ 11 not _ PART RB _ 13 neg _ _ 12 a _ DET DT _ 13 det _ _ 13 crash _ NOUN NN _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 This _ PRON DT _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 an _ DET DT _ 5 det _ _ 4 October _ PROPN NNP _ 5 compound _ _ 5 massacre _ NOUN NN _ 0 root _ _ 6 '' _ PUNCT '' _ 5 punct _ _ 7 like _ ADP IN _ 8 case _ _ 8 those _ PRON DT _ 5 nmod _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 occurred _ VERB VBD _ 8 acl:relcl _ _ 11 in _ ADP IN _ 12 case _ _ 12 1978 _ NUM CD _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 1979 _ NUM CD _ 12 conj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Now _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 as _ ADP IN _ 14 advmod _ _ 4 in _ ADP IN _ 7 case _ _ 5 those _ DET DT _ 7 det _ _ 6 two _ NUM CD _ 7 nummod _ _ 7 years _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 her _ PRON PRP$ _ 12 nmod:poss _ _ 10 stock _ NOUN NN _ 12 compound _ _ 11 market _ NOUN NN _ 12 compound _ _ 12 indicators _ NOUN NNS _ 14 nsubj _ _ 13 are _ VERB VBP _ 14 cop _ _ 14 positive _ ADJ JJ _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 So _ ADP IN _ 3 dep _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 thinks _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 damage _ NOUN NN _ 8 nsubj _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 short-lived _ ADJ JJ _ 3 ccomp _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 contained _ ADJ VBD _ 8 conj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 Those _ DET DT _ 3 det _ _ 3 corrections _ NOUN NNS _ 4 nsubj _ _ 4 lasted _ VERB VBD _ 19 ccomp _ _ 5 one _ NUM CD _ 7 compound _ _ 6 to _ ADP TO _ 7 dep _ _ 7 four _ NUM CD _ 8 nummod _ _ 8 weeks _ NOUN NNS _ 4 nmod:tmod _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 took _ VERB VBD _ 4 conj _ _ 11 the _ DET DT _ 12 det _ _ 12 market _ NOUN NN _ 10 dobj _ _ 13 10%-12 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 nmod:npmod _ _ 15 down _ ADV RB _ 10 advmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 she _ PRON PRP _ 19 nsubj _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 This _ PRON DT _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 exactly _ ADV RB _ 7 advmod _ _ 5 the _ DET DT _ 7 det _ _ 6 same _ ADJ JJ _ 7 amod _ _ 7 thing _ NOUN NN _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 as _ ADV IN _ 10 advmod _ _ 10 far _ ADV RB _ 7 advmod _ _ 11 as _ SCONJ IN _ 14 mark _ _ 12 I _ PRON PRP _ 14 nsubjpass _ _ 13 'm _ AUX VBP _ 14 auxpass _ _ 14 concerned _ VERB JJ _ 10 advcl _ _ 15 . _ PUNCT . _ 7 punct _ _ 16 '' _ PUNCT '' _ 7 punct _ _ 1 Thus _ ADV RB _ 22 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 she _ PRON PRP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 22 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 if _ SCONJ IN _ 12 mark _ _ 7 the _ DET DT _ 11 det _ _ 8 Dow _ PROPN NNP _ 11 compound _ _ 9 Jones _ PROPN NNP _ 11 compound _ _ 10 Industrial _ PROPN NNP _ 11 compound _ _ 11 Average _ PROPN NNP _ 12 nsubj _ _ 12 dropped _ VERB VBD _ 22 advcl _ _ 13 below _ ADP IN _ 14 case _ _ 14 2450 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 22 punct _ _ 16 `` _ PUNCT `` _ 22 punct _ _ 17 It _ PRON PRP _ 22 nsubj _ _ 18 would _ AUX MD _ 22 aux _ _ 19 just _ ADV RB _ 22 advmod _ _ 20 be _ VERB VB _ 22 cop _ _ 21 a _ DET DT _ 22 det _ _ 22 fluke _ NOUN NN _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 My _ PRON PRP$ _ 2 nmod:poss _ _ 2 advice _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 buy _ VERB VB _ 3 xcomp _ _ 6 . _ PUNCT . _ 3 punct _ _ 7 '' _ PUNCT '' _ 3 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 calculates _ VERB VBZ _ 10 advcl _ _ 4 it _ PRON PRP _ 3 dobj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 average _ ADJ JJ _ 8 amod _ _ 8 stock _ NOUN NN _ 10 nsubj _ _ 9 now _ ADV RB _ 10 advmod _ _ 10 sells _ VERB VBZ _ 0 root _ _ 11 for _ ADP IN _ 17 case _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 12.5 _ NUM CD _ 17 nummod _ _ 14 times _ NOUN NNS _ 17 compound _ _ 15 companies _ NOUN NNS _ 17 nmod:poss _ _ 16 ' _ PART POS _ 15 case _ _ 17 earnings _ NOUN NNS _ 10 nmod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 that _ DET IN _ 4 det _ _ 4 ratio _ NOUN NN _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 climb _ VERB VB _ 2 ccomp _ _ 7 to _ ADP TO _ 8 case _ _ 8 14.5 _ NUM CD _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 given _ VERB VBN _ 13 case _ _ 11 current _ ADJ JJ _ 13 amod _ _ 12 interest _ NOUN NN _ 13 compound _ _ 13 rates _ NOUN NNS _ 6 conj _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 still _ ADV RB _ 20 advmod _ _ 17 be _ VERB VB _ 20 cop _ _ 18 within _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 range _ NOUN NN _ 6 conj _ _ 21 of _ ADP IN _ 24 case _ _ 22 `` _ PUNCT `` _ 24 punct _ _ 23 fair _ ADJ JJ _ 24 amod _ _ 24 value _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 26 '' _ PUNCT '' _ 2 punct _ _ 1 Ned _ PROPN NNP _ 2 compound _ _ 2 Davis _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Friday _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 fall _ NOUN NN _ 4 nsubj _ _ 4 marks _ VERB VBZ _ 12 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 start _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 bear _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Davis _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 president _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 21 case _ _ 18 Ned _ PROPN NNP _ 21 compound _ _ 19 Davis _ PROPN NNP _ 21 compound _ _ 20 Research _ PROPN NNP _ 21 compound _ _ 21 Inc _ PROPN NNP _ 16 nmod _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Davis _ PROPN NNP _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 whose _ PRON WP$ _ 6 nmod:poss _ _ 6 views _ NOUN NNS _ 9 nsubjpass _ _ 7 are _ AUX VBP _ 9 auxpass _ _ 8 widely _ ADV RB _ 9 advmod _ _ 9 respected _ VERB VBN _ 3 acl:relcl _ _ 10 by _ ADP IN _ 12 case _ _ 11 money _ NOUN NN _ 12 compound _ _ 12 managers _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 expects _ VERB VBZ _ 14 ccomp _ _ 17 no _ DET DT _ 19 neg _ _ 18 1987-style _ ADJ JJ _ 19 amod _ _ 19 crash _ NOUN NN _ 16 dobj _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 was _ VERB VBD _ 12 ccomp _ _ 4 a _ DET DT _ 6 det _ _ 5 unique _ ADJ JJ _ 6 amod _ _ 6 combination _ NOUN NN _ 3 nsubj _ _ 7 in _ ADP IN _ 8 case _ _ 8 1987 _ NUM CD _ 3 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 Margin _ NOUN NN _ 3 compound _ _ 3 debt _ NOUN NN _ 8 nsubj _ _ 4 was _ VERB VBD _ 8 cop _ _ 5 at _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 record _ ADJ NN _ 8 amod _ _ 8 high _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 was _ VERB VBD _ 0 root _ _ 3 tremendous _ ADJ JJ _ 5 amod _ _ 4 public _ ADJ JJ _ 5 amod _ _ 5 enthusiasm _ NOUN NN _ 2 nsubj _ _ 6 for _ ADP IN _ 9 case _ _ 7 stock _ NOUN NN _ 9 compound _ _ 8 mutual _ ADJ JJ _ 9 amod _ _ 9 funds _ NOUN NNS _ 5 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 main _ ADJ JJ _ 3 amod _ _ 3 thing _ NOUN NN _ 6 nsubj _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 portfolio _ NOUN NN _ 6 compound _ _ 6 insurance _ NOUN NN _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 '' _ PUNCT '' _ 6 punct _ _ 9 a _ DET DT _ 12 det _ _ 10 mechanical _ ADJ JJ _ 12 amod _ _ 11 trading _ NOUN NN _ 12 compound _ _ 12 system _ NOUN NN _ 6 dep _ _ 13 intended _ VERB VBN _ 12 acl _ _ 14 to _ PART TO _ 15 mark _ _ 15 protect _ VERB VB _ 13 xcomp _ _ 16 an _ DET DT _ 17 det _ _ 17 investor _ NOUN NN _ 15 dobj _ _ 18 against _ ADP IN _ 19 case _ _ 19 losses _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 21 `` _ PUNCT `` _ 6 punct _ _ 1 A _ DET DT _ 3 advmod _ _ 2 hundred _ NUM CD _ 3 compound _ _ 3 billion _ NUM CD _ 4 nummod _ _ 4 dollars _ NOUN NNS _ 8 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 stock _ NOUN NN _ 4 nmod _ _ 7 was _ VERB VBD _ 8 cop _ _ 8 subject _ ADJ JJ _ 0 root _ _ 9 '' _ PUNCT '' _ 8 punct _ _ 10 to _ ADP TO _ 11 case _ _ 11 it _ PRON PRP _ 8 nmod _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 such _ ADJ JJ _ 5 amod _ _ 5 selling _ NOUN VBG _ 6 nsubj _ _ 6 contributed _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 snowball _ NOUN NN _ 10 compound _ _ 10 effect _ NOUN NN _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Today _ NOUN NN _ 7 nsubj _ _ 2 could _ AUX MD _ 7 aux _ _ 3 even _ ADV RB _ 7 advmod _ _ 4 be _ VERB VB _ 7 cop _ _ 5 an _ DET DT _ 7 det _ _ 6 up _ ADJ RB _ 7 amod _ _ 7 day _ NOUN NN _ 0 root _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Davis _ PROPN NNP _ 11 nsubj _ _ 11 says _ VERB VBZ _ 7 parataxis _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 if _ SCONJ IN _ 17 mark _ _ 14 major _ ADJ JJ _ 16 amod _ _ 15 brokerage _ NOUN NN _ 16 compound _ _ 16 firms _ NOUN NNS _ 17 nsubj _ _ 17 agree _ VERB VBP _ 7 advcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 refrain _ VERB VB _ 17 xcomp _ _ 20 from _ ADP IN _ 22 case _ _ 21 program _ NOUN NN _ 22 compound _ _ 22 trading _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 Over _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 next _ ADJ JJ _ 5 amod _ _ 4 several _ ADJ JJ _ 5 amod _ _ 5 months _ NOUN NNS _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 though _ ADV RB _ 10 advmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 things _ NOUN NNS _ 12 nsubj _ _ 12 look _ VERB VBP _ 10 ccomp _ _ 13 bad _ ADJ JJ _ 12 xcomp _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 15 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 8 nsubj _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 aux _ _ 8 heading _ VERB VBG _ 3 ccomp _ _ 9 down _ ADV RB _ 8 advmod _ _ 10 into _ ADP IN _ 11 case _ _ 11 November _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 will _ AUX MD _ 5 aux _ _ 4 probably _ ADV RB _ 5 advmod _ _ 5 have _ VERB VB _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 year-end _ ADJ JJ _ 8 amod _ _ 8 rally _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 then _ ADV RB _ 12 advmod _ _ 12 go _ VERB VB _ 5 conj _ _ 13 down _ ADV RP _ 12 advmod _ _ 14 again _ ADV RB _ 12 advmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Sort _ NOUN NN _ 0 root _ _ 2 of _ ADP IN _ 6 case _ _ 3 a _ DET DT _ 6 det _ _ 4 two-step _ ADJ JJ _ 6 amod _ _ 5 bear _ NOUN NN _ 6 compound _ _ 6 market _ NOUN NN _ 1 nmod _ _ 7 . _ PUNCT . _ 1 punct _ _ 8 '' _ PUNCT '' _ 1 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 downturn _ NOUN NN _ 2 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 carry _ VERB VB _ 2 xcomp _ _ 7 the _ DET DT _ 11 det _ _ 8 Dow _ PROPN NNP _ 11 compound _ _ 9 Jones _ PROPN NNP _ 11 compound _ _ 10 Industrial _ PROPN NNP _ 11 compound _ _ 11 Average _ PROPN NNP _ 6 dobj _ _ 12 down _ ADV IN _ 6 advmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 around _ ADP IN _ 15 amod _ _ 15 2000 _ NUM CD _ 6 nmod _ _ 16 sometime _ ADV RB _ 18 advmod _ _ 17 next _ ADJ JJ _ 18 amod _ _ 18 year _ NOUN NN _ 6 nmod:tmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 That _ PRON DT _ 8 nsubj _ _ 3 would _ AUX MD _ 8 aux _ _ 4 be _ VERB VB _ 8 cop _ _ 5 a _ DET DT _ 8 det _ _ 6 normal _ ADJ JJ _ 8 amod _ _ 7 bear _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 12 ccomp _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 guess _ VERB VBP _ 0 root _ _ 4 that _ ADP DT _ 7 nsubj _ _ 5 's _ PART VBZ _ 7 dep _ _ 6 my _ PRON PRP$ _ 7 nmod:poss _ _ 7 forecast _ NOUN NN _ 3 ccomp _ _ 8 . _ PUNCT . _ 3 punct _ _ 9 '' _ PUNCT '' _ 3 punct _ _ 1 Leon _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Cooperman _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 think _ VERB VB _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 9 nsubj _ _ 8 is _ AUX VBZ _ 9 aux _ _ 9 going _ VERB VBG _ 5 ccomp _ _ 10 through _ ADP IN _ 12 case _ _ 11 another _ DET DT _ 12 det _ _ 12 October _ PROPN NNP _ 9 nmod _ _ 13 '87 _ NUM CD _ 12 nummod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 think _ VERB VB _ 13 ccomp _ _ 5 that _ PRON DT _ 8 nsubj _ _ 6 's _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 case _ NOUN NN _ 4 ccomp _ _ 9 at _ ADP IN _ 10 case _ _ 10 all _ DET DT _ 8 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Cooperman _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 partner _ NOUN NN _ 15 appos _ _ 19 at _ ADP IN _ 20 case _ _ 20 Goldman _ PROPN NNP _ 18 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Sachs _ PROPN NNP _ 20 conj _ _ 23 & _ CONJ CC _ 20 cc _ _ 24 Co. _ PROPN NNP _ 20 conj _ _ 25 and _ CONJ CC _ 18 cc _ _ 26 chairman _ NOUN NN _ 18 conj _ _ 27 of _ ADP IN _ 31 case _ _ 28 Goldman _ PROPN NNP _ 31 compound _ _ 29 Sachs _ PROPN NNP _ 31 compound _ _ 30 Asset _ PROPN NNP _ 31 compound _ _ 31 Management _ PROPN NNP _ 26 nmod _ _ 32 . _ PUNCT . _ 13 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Cooperman _ PROPN NNP _ 3 nsubj _ _ 3 sees _ VERB VBZ _ 0 root _ _ 4 this _ PRON DT _ 3 dobj _ _ 5 as _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 good _ ADJ JJ _ 8 amod _ _ 8 time _ NOUN NN _ 3 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 pick _ VERB VB _ 8 acl _ _ 11 up _ ADP RP _ 10 compound:prt _ _ 12 bargains _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 but _ CONJ CC _ 3 cc _ _ 15 he _ PRON PRP _ 18 nsubj _ _ 16 does _ AUX VBZ _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 think _ VERB VB _ 3 conj _ _ 19 there _ PRON EX _ 20 expl _ _ 20 's _ VERB VBZ _ 18 ccomp _ _ 21 any _ DET DT _ 22 det _ _ 22 need _ NOUN NN _ 20 nsubj _ _ 23 to _ PART TO _ 24 mark _ _ 24 rush _ VERB NN _ 22 acl _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 expect _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 open _ VERB VB _ 3 xcomp _ _ 8 weaker _ ADJ JJR _ 7 xcomp _ _ 9 Monday _ PROPN NNP _ 7 nmod:tmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 but _ CONJ CC _ 3 cc _ _ 12 then _ ADV RB _ 15 advmod _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 should _ AUX MD _ 15 aux _ _ 15 find _ VERB VB _ 3 conj _ _ 16 some _ DET DT _ 17 det _ _ 17 stability _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 ticks _ VERB VBZ _ 0 root _ _ 3 off _ ADP RP _ 2 compound:prt _ _ 4 several _ ADJ JJ _ 6 amod _ _ 5 major _ ADJ JJ _ 6 amod _ _ 6 differences _ NOUN NNS _ 2 dobj _ _ 7 between _ ADP IN _ 9 case _ _ 8 now _ ADV RB _ 9 advmod _ _ 9 and _ CONJ CC _ 6 acl _ _ 10 two _ NUM CD _ 11 nummod _ _ 11 years _ NOUN NNS _ 12 nmod:npmod _ _ 12 ago _ ADV RB _ 9 advmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Unlike _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 interest _ NOUN NN _ 5 compound _ _ 5 rates _ NOUN NNS _ 8 nsubj _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ AUX VBN _ 8 aux _ _ 8 falling _ VERB VBG _ 0 root _ _ 9 this _ DET DT _ 10 det _ _ 10 year _ NOUN NN _ 8 nmod:tmod _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 Unlike _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 dollar _ NOUN NN _ 8 nsubj _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 strong _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 9 cc _ _ 2 unlike _ ADP IN _ 3 case _ _ 3 1987 _ NUM CD _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 economy _ NOUN NN _ 9 nsubj _ _ 7 does _ AUX VBZ _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 appear _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 14 mark _ _ 11 be _ VERB VB _ 14 cop _ _ 12 in _ ADP IN _ 14 case _ _ 13 any _ DET DT _ 14 det _ _ 14 danger _ NOUN NN _ 9 xcomp _ _ 15 of _ ADP IN _ 16 case _ _ 16 overheating _ VERB NN _ 14 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 economy _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 slower _ ADJ JJR _ 6 amod _ _ 6 growth _ NOUN NN _ 10 nsubj _ _ 7 this _ DET DT _ 8 det _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 also _ ADV RB _ 10 advmod _ _ 10 means _ VERB VBZ _ 23 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 outlook _ NOUN NN _ 19 nsubj _ _ 13 for _ ADP IN _ 15 case _ _ 14 corporate _ ADJ JJ _ 15 amod _ _ 15 profits _ NOUN NNS _ 12 nmod _ _ 16 `` _ PUNCT `` _ 19 punct _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 good _ ADJ JJ _ 10 ccomp _ _ 20 , _ PUNCT , _ 23 punct _ _ 21 '' _ PUNCT '' _ 23 punct _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 So _ ADP IN _ 8 dep _ _ 3 it _ PRON PRP _ 8 nsubj _ _ 4 's _ VERB VBZ _ 8 cop _ _ 5 a _ DET DT _ 8 det _ _ 6 very _ ADV RB _ 7 advmod _ _ 7 mixed _ ADJ JJ _ 8 amod _ _ 8 bag _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 1 Thus _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 concludes _ VERB VBZ _ 12 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 `` _ PUNCT `` _ 12 punct _ _ 7 This _ PRON DT _ 12 nsubj _ _ 8 is _ VERB VBZ _ 12 cop _ _ 9 not _ PART RB _ 12 neg _ _ 10 a _ DET DT _ 12 det _ _ 11 good _ ADJ JJ _ 12 amod _ _ 12 environment _ NOUN NN _ 0 root _ _ 13 to _ PART TO _ 16 mark _ _ 14 be _ VERB VB _ 16 auxpass _ _ 15 fully _ ADV RB _ 16 advmod _ _ 16 invested _ VERB VBN _ 12 acl _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 in _ ADP IN _ 19 case _ _ 19 stocks _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 If _ SCONJ IN _ 5 mark _ _ 3 I _ PRON PRP _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 come _ VERB VBN _ 22 advcl _ _ 6 into _ ADP IN _ 7 case _ _ 7 Friday _ PROPN NNP _ 5 nmod _ _ 8 on _ ADP IN _ 9 case _ _ 9 margin _ NOUN NN _ 5 dep _ _ 10 or _ CONJ CC _ 9 cc _ _ 11 with _ SCONJ IN _ 14 mark _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 little _ ADJ JJ _ 14 amod _ _ 14 cash _ NOUN NN _ 9 conj _ _ 15 in _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 portfolios _ NOUN NNS _ 14 dep _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 I _ PRON PRP _ 22 nsubj _ _ 20 would _ AUX MD _ 22 aux _ _ 21 not _ PART RB _ 22 neg _ _ 22 do _ VERB VB _ 0 root _ _ 23 any _ DET DT _ 24 det _ _ 24 buying _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 22 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 we _ PRON PRP _ 3 nsubj _ _ 3 came _ VERB VBD _ 0 root _ _ 4 into _ ADP IN _ 5 case _ _ 5 Friday _ PROPN NNP _ 3 nmod _ _ 6 with _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 conservative _ ADJ JJ _ 9 amod _ _ 9 portfolio _ NOUN NN _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 so _ ADP IN _ 3 dep _ _ 12 I _ PRON PRP _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 look _ VERB VB _ 3 parataxis _ _ 15 to _ PART TO _ 16 mark _ _ 16 do _ VERB VB _ 14 xcomp _ _ 17 some _ DET DT _ 19 det _ _ 18 modest _ ADJ JJ _ 19 amod _ _ 19 buying _ NOUN NN _ 16 dobj _ _ 20 '' _ PUNCT '' _ 16 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 behalf _ NOUN NN _ 16 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 clients _ NOUN NNS _ 22 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 26 `` _ PUNCT `` _ 3 punct _ _ 1 We _ PRON PRP _ 3 nsubj _ _ 2 're _ AUX VBP _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 look _ VERB VB _ 3 xcomp _ _ 6 for _ ADP IN _ 7 case _ _ 7 some _ DET DT _ 5 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 better-known _ ADJ JJ _ 11 amod _ _ 11 companies _ NOUN NNS _ 7 nmod _ _ 12 that _ PRON WDT _ 14 nsubjpass _ _ 13 got _ AUX VBD _ 14 auxpass _ _ 14 clocked _ VERB VBN _ 11 acl:relcl _ _ 15 '' _ PUNCT '' _ 14 punct _ _ 16 Friday _ PROPN NNP _ 14 nmod:tmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 John _ PROPN NNP _ 3 compound _ _ 2 Kenneth _ PROPN NNP _ 3 compound _ _ 3 Galbraith _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 latest _ ADJ JJS _ 6 amod _ _ 6 manifestation _ NOUN NN _ 19 ccomp _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 capacity _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 financial _ ADJ JJ _ 13 amod _ _ 13 community _ NOUN NN _ 9 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 recurrent _ ADJ JJ _ 16 amod _ _ 16 insanity _ NOUN NN _ 9 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Galbraith _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 an _ DET DT _ 24 det _ _ 24 economist _ NOUN NN _ 21 appos _ _ 25 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 see _ VERB VBP _ 17 ccomp _ _ 4 this _ PRON DT _ 3 dobj _ _ 5 as _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 reaction _ NOUN NN _ 3 nmod _ _ 8 to _ ADP TO _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 whole _ ADJ JJ _ 13 amod _ _ 11 junk _ NOUN NN _ 13 compound _ _ 12 bond _ NOUN NN _ 13 compound _ _ 13 explosion _ NOUN NN _ 7 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 explosion _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 junk _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 takeovers _ NOUN NNS _ 6 conj _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 lodged _ VERB VBN _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 lot _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 insecure _ ADJ JJ _ 15 amod _ _ 15 securities _ NOUN NNS _ 12 nmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 hands _ NOUN NNS _ 10 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 investors _ NOUN NNS _ 18 nmod _ _ 21 and _ CONJ CC _ 10 cc _ _ 22 loaded _ VERB VBD _ 10 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 corporations _ NOUN NNS _ 22 dobj _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 are _ VERB VBP _ 28 cop _ _ 27 the _ DET DT _ 28 det _ _ 28 objects _ NOUN NNS _ 24 acl:relcl _ _ 29 of _ ADP IN _ 30 case _ _ 30 takeovers _ NOUN NNS _ 28 nmod _ _ 31 or _ CONJ CC _ 30 cc _ _ 32 feared _ ADJ VBN _ 33 amod _ _ 33 takeovers _ NOUN NNS _ 30 conj _ _ 34 with _ ADP IN _ 36 case _ _ 35 huge _ ADJ JJ _ 36 amod _ _ 36 amounts _ NOUN NNS _ 22 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 debt _ NOUN NN _ 36 nmod _ _ 39 rather _ ADV RB _ 38 cc _ _ 40 than _ ADP IN _ 39 mwe _ _ 41 equity _ NOUN NN _ 38 conj _ _ 42 . _ PUNCT . _ 10 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 both _ CONJ DT _ 4 dep _ _ 4 made _ VERB VBN _ 0 root _ _ 5 investors _ NOUN NNS _ 6 dep _ _ 6 uneasy _ ADJ JJ _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 corporations _ NOUN NNS _ 11 dep _ _ 10 more _ ADV RBR _ 11 advmod _ _ 11 vulnerable _ ADJ JJ _ 6 conj _ _ 12 . _ PUNCT . _ 4 punct _ _ 13 '' _ PUNCT '' _ 4 punct _ _ 1 Nevertheless _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 depression _ NOUN NN _ 9 nsubj _ _ 7 does _ AUX VBZ _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 appear _ VERB VB _ 4 ccomp _ _ 10 likely _ ADJ JJ _ 9 xcomp _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 18 ccomp _ _ 4 more _ ADJ JJR _ 5 amod _ _ 5 resiliency _ NOUN NN _ 3 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 economy _ NOUN NN _ 5 nmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 large _ ADJ JJ _ 8 nmod _ _ 11 than _ SCONJ IN _ 14 mark _ _ 12 we _ PRON PRP _ 14 nsubj _ _ 13 commonly _ ADV RB _ 14 advmod _ _ 14 suppose _ VERB VBP _ 5 advcl _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 takes _ VERB VBZ _ 0 root _ _ 4 more _ ADJ JJR _ 5 amod _ _ 5 error _ NOUN NN _ 3 dobj _ _ 6 now _ ADV RB _ 3 advmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 have _ VERB VB _ 3 advcl _ _ 9 a _ DET DT _ 11 det _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 depression _ NOUN NN _ 8 dobj _ _ 12 than _ ADP IN _ 13 case _ _ 13 back _ ADV RB _ 3 advcl _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 Thirties _ NOUN NNS _ 13 nmod _ _ 17 -- _ PUNCT : _ 3 punct _ _ 18 much _ ADV JJ _ 27 advmod _ _ 19 as _ SCONJ IN _ 27 mark _ _ 20 the _ DET DT _ 22 det _ _ 21 financial _ ADJ JJ _ 22 amod _ _ 22 community _ NOUN NN _ 27 nsubj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 government _ NOUN NN _ 22 conj _ _ 26 may _ AUX MD _ 27 aux _ _ 27 try _ VERB VB _ 3 advcl _ _ 28 . _ PUNCT . _ 3 punct _ _ 29 '' _ PUNCT '' _ 3 punct _ _ 1 Mario _ PROPN NNP _ 2 compound _ _ 2 Gabelli _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 New _ PROPN NNP _ 6 compound _ _ 2 York _ PROPN NNP _ 6 compound _ _ 3 money _ NOUN NN _ 6 compound _ _ 4 manager _ NOUN NN _ 6 compound _ _ 5 Mario _ PROPN NNP _ 6 compound _ _ 6 Gabelli _ PROPN NNP _ 15 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 an _ DET DT _ 9 det _ _ 9 expert _ NOUN NN _ 6 appos _ _ 10 at _ SCONJ IN _ 11 mark _ _ 11 spotting _ VERB VBG _ 9 acl _ _ 12 takeover _ NOUN NN _ 13 compound _ _ 13 candidates _ NOUN NNS _ 11 dobj _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 that _ SCONJ IN _ 21 mark _ _ 17 takeovers _ NOUN NNS _ 21 nsubjpass _ _ 18 are _ VERB VBP _ 21 auxpass _ _ 19 n't _ PART RB _ 21 neg _ _ 20 totally _ ADV RB _ 21 advmod _ _ 21 gone _ VERB VBN _ 15 ccomp _ _ 22 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 Companies _ NOUN NNS _ 5 nsubj _ _ 3 are _ AUX VBP _ 5 aux _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 going _ VERB VBG _ 15 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 5 xcomp _ _ 8 companies _ NOUN NNS _ 7 dobj _ _ 9 around _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 world _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Examples _ NOUN NNS _ 2 nsubj _ _ 2 are _ VERB VBP _ 0 root _ _ 3 `` _ PUNCT `` _ 2 punct _ _ 4 Ford _ PROPN NNP _ 5 nsubj _ _ 5 looking _ VERB VBG _ 2 xcomp _ _ 6 at _ ADP IN _ 7 case _ _ 7 Jaguar _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 BellSouth _ PROPN NNP _ 10 nsubj _ _ 10 looking _ VERB VBG _ 5 parataxis _ _ 11 at _ ADP IN _ 13 case _ _ 12 LIN _ PROPN NNP _ 13 compound _ _ 13 Broadcasting _ PROPN NNP _ 10 nmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 15 '' _ PUNCT '' _ 2 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 sorts _ NOUN NNS _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 takeovers _ NOUN NNS _ 2 nmod _ _ 5 do _ AUX VBP _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 require _ VERB VB _ 0 root _ _ 8 junk _ NOUN NN _ 9 compound _ _ 9 bonds _ NOUN NNS _ 7 dobj _ _ 10 or _ CONJ CC _ 9 cc _ _ 11 big _ ADJ JJ _ 13 amod _ _ 12 bank _ NOUN NN _ 13 compound _ _ 13 loans _ NOUN NNS _ 9 conj _ _ 14 to _ PART TO _ 15 mark _ _ 15 finance _ VERB VB _ 7 xcomp _ _ 16 them _ PRON PRP _ 15 dobj _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 so _ ADP IN _ 7 dep _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Gabelli _ PROPN NNP _ 21 nsubj _ _ 21 figures _ NOUN VBZ _ 7 parataxis _ _ 22 they _ PRON PRP _ 24 nsubj _ _ 23 will _ AUX MD _ 24 aux _ _ 24 continue _ VERB VB _ 21 ccomp _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 was _ VERB VBD _ 0 root _ _ 5 up _ ADV RB _ 4 advmod _ _ 6 35 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 nmod:npmod _ _ 8 since _ SCONJ IN _ 13 mark _ _ 9 -LCB- _ PUNCT -LRB- _ 10 punct _ _ 10 President _ PROPN NNP _ 12 dep _ _ 11 -RCB- _ PUNCT -RRB- _ 10 punct _ _ 12 Bush _ PROPN NNP _ 13 nsubj _ _ 13 took _ VERB VBD _ 4 advcl _ _ 14 office _ NOUN NN _ 13 dobj _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Gabelli _ PROPN NNP _ 19 nsubj _ _ 19 says _ VERB VBZ _ 4 dep _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 so _ ADP IN _ 4 dep _ _ 22 a _ DET DT _ 23 det _ _ 23 correction _ NOUN NN _ 24 nsubj _ _ 24 was _ VERB VBD _ 4 parataxis _ _ 25 to _ PART TO _ 27 mark _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 expected _ VERB VBN _ 24 xcomp _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 thinks _ VERB VBZ _ 0 root _ _ 3 another _ DET DT _ 4 det _ _ 4 crash _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 unlikely _ ADJ JJ _ 2 ccomp _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 '' _ PUNCT '' _ 2 punct _ _ 10 and _ CONJ CC _ 2 cc _ _ 11 says _ VERB VBZ _ 2 conj _ _ 12 he _ PRON PRP _ 15 nsubj _ _ 13 was _ AUX VBD _ 15 aux _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 nibbling _ VERB VBG _ 11 ccomp _ _ 16 at _ ADP IN _ 19 case _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 selected _ ADJ VBN _ 19 amod _ _ 19 stocks _ NOUN NNS _ 15 nmod _ _ 20 during _ ADP IN _ 23 case _ _ 21 Friday _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 plunge _ NOUN NN _ 15 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 Stocks _ NOUN NNS _ 15 nsubj _ _ 3 that _ PRON WDT _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 thrown _ VERB VBN _ 2 acl:relcl _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 just _ ADV RB _ 11 advmod _ _ 8 on _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 emotional _ ADJ JJ _ 11 amod _ _ 11 basis _ NOUN NN _ 5 nmod _ _ 12 are _ VERB VBP _ 15 cop _ _ 13 a _ DET DT _ 15 det _ _ 14 great _ ADJ JJ _ 15 amod _ _ 15 opportunity _ NOUN NN _ 27 ccomp _ _ 16 -LCB- _ PUNCT -LRB- _ 17 punct _ _ 17 this _ DET DT _ 19 dep _ _ 18 -RCB- _ PUNCT -RRB- _ 17 punct _ _ 19 week _ NOUN NN _ 15 nmod:tmod _ _ 20 for _ ADP IN _ 21 case _ _ 21 guys _ NOUN NNS _ 15 nmod _ _ 22 like _ ADP IN _ 23 case _ _ 23 me _ PRON PRP _ 21 nmod _ _ 24 , _ PUNCT , _ 27 punct _ _ 25 '' _ PUNCT '' _ 27 punct _ _ 26 he _ PRON PRP _ 27 nsubj _ _ 27 says _ VERB VBZ _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 Jim _ PROPN NNP _ 2 compound _ _ 2 Rogers _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 19 ccomp _ _ 4 to _ ADP TO _ 5 case _ _ 5 me _ PRON PRP _ 3 nmod _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 this _ PRON DT _ 10 nsubj _ _ 8 is _ VERB VBZ _ 10 cop _ _ 9 the _ DET DT _ 10 det _ _ 10 pin _ NOUN NN _ 3 ccomp _ _ 11 that _ PRON WDT _ 14 nsubj _ _ 12 has _ AUX VBZ _ 14 aux _ _ 13 finally _ ADV RB _ 14 advmod _ _ 14 pricked _ VERB VBN _ 10 acl:relcl _ _ 15 the _ DET DT _ 16 det _ _ 16 balloon _ NOUN NN _ 14 dobj _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Rogers _ PROPN NNP _ 19 dep _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 professor _ NOUN NN _ 21 appos _ _ 25 of _ ADP IN _ 26 case _ _ 26 finance _ NOUN NN _ 24 nmod _ _ 27 at _ ADP IN _ 29 case _ _ 28 Columbia _ PROPN NNP _ 29 compound _ _ 29 University _ PROPN NNP _ 24 nmod _ _ 30 and _ CONJ CC _ 24 cc _ _ 31 former _ ADJ JJ _ 32 amod _ _ 32 co-manager _ NOUN NN _ 24 conj _ _ 33 of _ ADP IN _ 34 case _ _ 34 one _ NUM CD _ 32 nmod _ _ 35 of _ ADP IN _ 40 case _ _ 36 the _ DET DT _ 40 det _ _ 37 most _ ADV RBS _ 38 advmod _ _ 38 successful _ ADJ JJ _ 40 amod _ _ 39 hedge _ NOUN NN _ 40 compound _ _ 40 funds _ NOUN NNS _ 34 nmod _ _ 41 in _ ADP IN _ 42 case _ _ 42 history _ NOUN NN _ 40 nmod _ _ 43 , _ PUNCT , _ 34 punct _ _ 44 Quantum _ PROPN NNP _ 45 compound _ _ 45 Fund _ PROPN NNP _ 34 appos _ _ 46 . _ PUNCT . _ 19 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 sees _ VERB VBZ _ 0 root _ _ 3 `` _ PUNCT `` _ 5 punct _ _ 4 economic _ ADJ JJ _ 5 amod _ _ 5 problems _ NOUN NNS _ 2 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 financial _ ADJ JJ _ 8 amod _ _ 8 problems _ NOUN NNS _ 5 appos _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 10 ahead _ ADV RB _ 5 advmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.S. _ PROPN NNP _ 2 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 with _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 fairly _ ADV RB _ 18 advmod _ _ 18 strong _ ADJ JJ _ 19 amod _ _ 19 possibility _ NOUN NN _ 2 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 recession _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Friday _ PROPN NNP _ 6 nmod:tmod _ _ 3 you _ PRON PRP _ 6 nsubj _ _ 4 could _ AUX MD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 sell _ VERB VB _ 11 ccomp _ _ 7 dollars _ NOUN NNS _ 6 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Dealers _ NOUN NNS _ 4 nsubj _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 would _ AUX MD _ 4 aux _ _ 4 give _ VERB VB _ 0 root _ _ 5 you _ PRON PRP _ 4 iobj _ _ 6 a _ DET DT _ 7 det _ _ 7 quote _ NOUN NN _ 4 dobj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 but _ CONJ CC _ 4 cc _ _ 10 then _ ADV RB _ 11 advmod _ _ 11 refuse _ VERB VBP _ 4 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 make _ VERB VB _ 11 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 trade _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 dollar _ NOUN NN _ 4 nsubj _ _ 4 stays _ VERB VBZ _ 12 advcl _ _ 5 weak _ ADJ JJ _ 4 xcomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 he _ PRON PRP _ 8 nsubj _ _ 8 says _ VERB VBZ _ 12 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 add _ VERB VB _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 inflationary _ ADJ JJ _ 15 amod _ _ 15 pressures _ NOUN NNS _ 12 nmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 U.S. _ PROPN NNP _ 15 nmod _ _ 19 and _ CONJ CC _ 12 cc _ _ 20 make _ VERB VB _ 12 conj _ _ 21 it _ PRON PRP _ 29 nsubj _ _ 22 hard _ ADJ RB _ 29 dep _ _ 23 for _ SCONJ IN _ 29 mark _ _ 24 the _ DET DT _ 27 det _ _ 25 Federal _ PROPN NNP _ 27 compound _ _ 26 Reserve _ PROPN NNP _ 27 compound _ _ 27 Board _ PROPN NNP _ 29 nsubj _ _ 28 to _ PART TO _ 29 mark _ _ 29 ease _ VERB VB _ 20 xcomp _ _ 30 interest _ NOUN NN _ 31 compound _ _ 31 rates _ NOUN NNS _ 29 dobj _ _ 32 very _ ADV RB _ 33 advmod _ _ 33 much _ ADV RB _ 29 advmod _ _ 34 . _ PUNCT . _ 12 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Rogers _ PROPN NNP _ 5 nsubj _ _ 3 wo _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 decide _ VERB VB _ 0 root _ _ 6 what _ PRON WP _ 8 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 do _ VERB VB _ 5 ccomp _ _ 9 today _ NOUN NN _ 8 nmod:tmod _ _ 10 until _ SCONJ IN _ 12 mark _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 sees _ VERB VBZ _ 5 advcl _ _ 13 how _ ADV WRB _ 19 advmod _ _ 14 the _ DET DT _ 18 det _ _ 15 London _ PROPN NNP _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Tokyo _ PROPN NNP _ 15 conj _ _ 18 markets _ NOUN NNS _ 19 nsubj _ _ 19 go _ VERB VBP _ 12 ccomp _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 recommends _ VERB VBZ _ 0 root _ _ 3 that _ SCONJ IN _ 5 mark _ _ 4 investors _ NOUN NNS _ 5 nsubj _ _ 5 sell _ VERB VBP _ 2 ccomp _ _ 6 takeover-related _ ADJ JJ _ 7 amod _ _ 7 stocks _ NOUN NNS _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 hang _ VERB VBP _ 5 conj _ _ 11 on _ ADP IN _ 10 compound:prt _ _ 12 to _ ADP TO _ 15 case _ _ 13 some _ DET DT _ 15 det _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 stocks _ NOUN NNS _ 10 nmod _ _ 16 -- _ PUNCT : _ 15 punct _ _ 17 especially _ ADV RB _ 15 advmod _ _ 18 utilities _ NOUN NNS _ 15 dep _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 22 nsubj _ _ 21 often _ ADV RB _ 22 advmod _ _ 22 do _ VERB VBP _ 18 acl:relcl _ _ 23 well _ ADV RB _ 22 advmod _ _ 24 during _ ADP IN _ 25 case _ _ 25 periods _ NOUN NNS _ 22 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 economic _ ADJ JJ _ 28 amod _ _ 28 weakness _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 Frank _ PROPN NNP _ 2 compound _ _ 2 Curzio _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 people _ NOUN NNS _ 4 nsubj _ _ 3 now _ ADV RB _ 4 advmod _ _ 4 claim _ VERB VBP _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 have _ AUX VB _ 7 aux _ _ 7 predicted _ VERB VBN _ 4 xcomp _ _ 8 the _ DET DT _ 10 det _ _ 9 1987 _ NUM CD _ 10 nummod _ _ 10 crash _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Queens _ PROPN NNP _ 6 compound _ _ 2 newsletter _ NOUN NN _ 6 compound _ _ 3 writer _ NOUN NN _ 6 compound _ _ 4 Francis _ PROPN NNP _ 6 compound _ _ 5 X. _ PROPN NNP _ 6 compound _ _ 6 Curzio _ PROPN NNP _ 8 nsubj _ _ 7 actually _ ADV RB _ 8 advmod _ _ 8 did _ VERB VBD _ 0 root _ _ 9 it _ PRON PRP _ 8 dobj _ _ 10 : _ PUNCT : _ 8 punct _ _ 11 He _ PRON PRP _ 12 nsubj _ _ 12 stated _ VERB VBD _ 8 parataxis _ _ 13 in _ ADP IN _ 14 case _ _ 14 writing _ NOUN VBG _ 12 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 September _ PROPN NNP _ 12 nmod _ _ 17 1987 _ NUM CD _ 16 nummod _ _ 18 that _ SCONJ IN _ 25 mark _ _ 19 the _ DET DT _ 23 det _ _ 20 Dow _ PROPN NNP _ 23 compound _ _ 21 Jones _ PROPN NNP _ 23 compound _ _ 22 Industrial _ PROPN NNP _ 23 compound _ _ 23 Average _ PROPN NNP _ 25 nsubj _ _ 24 was _ VERB VBD _ 25 cop _ _ 25 likely _ ADJ JJ _ 12 ccomp _ _ 26 to _ PART TO _ 27 mark _ _ 27 decline _ VERB VB _ 25 xcomp _ _ 28 about _ ADV IN _ 29 advmod _ _ 29 500 _ NUM CD _ 30 nummod _ _ 30 points _ NOUN NNS _ 27 dobj _ _ 31 the _ DET DT _ 33 det _ _ 32 following _ ADJ JJ _ 33 amod _ _ 33 month _ NOUN NN _ 27 nmod:tmod _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Curzio _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 what _ PRON WP _ 5 nsubj _ _ 5 happens _ VERB VBZ _ 8 csubj _ _ 6 now _ ADV RB _ 5 advmod _ _ 7 will _ AUX MD _ 8 aux _ _ 8 depend _ VERB VB _ 3 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 good _ ADJ JJ _ 11 amod _ _ 11 deal _ NOUN NN _ 8 dobj _ _ 12 on _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 Federal _ PROPN NNP _ 16 compound _ _ 15 Reserve _ PROPN NNP _ 16 compound _ _ 16 Board _ PROPN NNP _ 8 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 promptly _ ADV RB _ 4 advmod _ _ 4 cuts _ VERB VBZ _ 21 advcl _ _ 5 the _ DET DT _ 7 det _ _ 6 discount _ NOUN NN _ 7 compound _ _ 7 rate _ NOUN NN _ 4 dobj _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 charges _ VERB VBZ _ 7 acl:relcl _ _ 10 on _ ADP IN _ 11 case _ _ 11 loans _ NOUN NNS _ 9 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 banks _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 says _ VERB VBZ _ 21 parataxis _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 That _ PRON DT _ 21 nsubj _ _ 20 could _ AUX MD _ 21 aux _ _ 21 quiet _ VERB JJ _ 0 root _ _ 22 things _ NOUN NNS _ 21 dobj _ _ 23 down _ ADP RP _ 21 compound:prt _ _ 24 . _ PUNCT . _ 21 punct _ _ 25 '' _ PUNCT '' _ 21 punct _ _ 1 If _ SCONJ IN _ 2 mark _ _ 2 not _ PART RB _ 7 advcl _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 `` _ PUNCT `` _ 7 punct _ _ 5 We _ PRON PRP _ 7 nsubj _ _ 6 could _ AUX MD _ 7 aux _ _ 7 go _ VERB VB _ 0 root _ _ 8 to _ ADP TO _ 9 case _ _ 9 2200 _ NUM CD _ 7 nmod _ _ 10 very _ ADV RB _ 11 advmod _ _ 11 soon _ ADV RB _ 7 advmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 13 '' _ PUNCT '' _ 7 punct _ _ 1 Frank _ PROPN NNP _ 3 compound _ _ 2 W. _ PROPN NNP _ 3 compound _ _ 3 Terrizzi _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Stock _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 6 nsubj _ _ 3 `` _ PUNCT `` _ 6 punct _ _ 4 would _ AUX MD _ 6 aux _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 have _ VERB VB _ 21 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 go _ VERB VB _ 6 xcomp _ _ 9 down _ ADV RP _ 8 advmod _ _ 10 some _ DET DT _ 12 det _ _ 11 additional _ ADJ JJ _ 12 amod _ _ 12 amount _ NOUN NN _ 8 dobj _ _ 13 before _ SCONJ IN _ 15 mark _ _ 14 we _ PRON PRP _ 15 nsubj _ _ 15 become _ VERB VBP _ 6 advcl _ _ 16 positive _ ADJ JJ _ 15 xcomp _ _ 17 on _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Terrizzi _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 president _ NOUN NN _ 23 appos _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 managing _ VERB VBG _ 28 amod _ _ 28 director _ NOUN NN _ 25 conj _ _ 29 of _ ADP IN _ 33 case _ _ 30 Renaissance _ PROPN NNP _ 33 compound _ _ 31 Investment _ PROPN NNP _ 33 compound _ _ 32 Management _ PROPN NNP _ 33 compound _ _ 33 Inc. _ PROPN NNP _ 25 nmod _ _ 34 in _ ADP IN _ 35 case _ _ 35 Cincinnati _ PROPN NNP _ 33 nmod _ _ 36 . _ PUNCT . _ 21 punct _ _ 1 Renaissance _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 manages _ VERB VBZ _ 1 acl:relcl _ _ 5 about _ ADV IN _ 6 advmod _ _ 6 $ _ SYM $ _ 4 dobj _ _ 7 1.8 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 drew _ VERB VBD _ 0 root _ _ 11 stiff _ ADJ JJ _ 12 amod _ _ 12 criticism _ NOUN NN _ 10 dobj _ _ 13 from _ ADP IN _ 15 case _ _ 14 many _ ADJ JJ _ 15 amod _ _ 15 clients _ NOUN NNS _ 10 nmod _ _ 16 earlier _ ADV RBR _ 18 advmod _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 10 nmod:tmod _ _ 19 because _ SCONJ IN _ 21 mark _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 pulled _ VERB VBD _ 10 advcl _ _ 22 entirely _ ADV RB _ 21 advmod _ _ 23 out _ ADP IN _ 25 case _ _ 24 of _ ADP IN _ 25 case _ _ 25 stocks _ NOUN NNS _ 21 nmod _ _ 26 at _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 beginning _ NOUN NN _ 21 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 28 nmod _ _ 32 and _ CONJ CC _ 21 cc _ _ 33 thus _ ADV RB _ 34 advmod _ _ 34 missed _ VERB VBD _ 21 conj _ _ 35 a _ DET DT _ 37 det _ _ 36 strong _ ADJ JJ _ 37 amod _ _ 37 rally _ NOUN NN _ 34 dobj _ _ 38 . _ PUNCT . _ 10 punct _ _ 1 Renaissance _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 keeping _ VERB VBG _ 0 root _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 money _ NOUN NN _ 3 dobj _ _ 6 entirely _ ADV RB _ 9 advmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 cash _ NOUN NN _ 9 compound _ _ 9 equivalents _ NOUN NNS _ 3 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 primarily _ ADV RB _ 9 advmod _ _ 12 U.S. _ PROPN NNP _ 14 compound _ _ 13 Treasury _ PROPN NNP _ 14 compound _ _ 14 bills _ NOUN NNS _ 9 dep _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 T-bills _ NOUN NNS _ 7 nsubj _ _ 3 probably _ ADV RB _ 7 advmod _ _ 4 are _ VERB VBP _ 7 cop _ _ 5 the _ DET DT _ 7 det _ _ 6 right _ ADJ JJ _ 7 amod _ _ 7 place _ NOUN NN _ 13 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 be _ VERB VB _ 7 acl _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Regarding _ VERB VBG _ 0 root _ _ 2 the _ DET DT _ 5 det _ _ 3 Oct. _ PROPN NNP _ 5 compound _ _ 4 3 _ NUM CD _ 5 nummod _ _ 5 letter _ NOUN NN _ 1 dobj _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 editor _ NOUN NN _ 5 nmod _ _ 9 from _ ADP IN _ 12 case _ _ 10 Rep. _ PROPN NNP _ 12 compound _ _ 11 Tom _ PROPN NNP _ 12 compound _ _ 12 Lantos _ PROPN NNP _ 5 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 chairman _ NOUN NN _ 12 appos _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 House _ PROPN NNP _ 18 compound _ _ 18 Subcommittee _ PROPN NNP _ 14 nmod _ _ 19 on _ ADP IN _ 20 case _ _ 20 Employment _ PROPN NNP _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Housing _ PROPN NNP _ 20 conj _ _ 23 , _ PUNCT , _ 5 punct _ _ 24 alleging _ VERB VBG _ 5 acl _ _ 25 : _ PUNCT : _ 1 punct _ _ 1 1 _ X LS _ 14 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ DT _ 14 mark _ _ 4 your _ PRON PRP$ _ 7 nmod:poss _ _ 5 Sept. _ PROPN NNP _ 7 compound _ _ 6 28 _ NUM CD _ 7 nummod _ _ 7 editorial _ NOUN NN _ 14 nsubj _ _ 8 `` _ PUNCT `` _ 7 punct _ _ 9 Kangaroo _ NOUN NNP _ 10 compound _ _ 10 Committees _ NOUN NNS _ 7 dep _ _ 11 '' _ PUNCT '' _ 7 punct _ _ 12 was _ VERB VBD _ 14 cop _ _ 13 factually _ ADV RB _ 14 advmod _ _ 14 inaccurate _ ADJ JJ _ 0 root _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 deliberately _ ADV RB _ 17 advmod _ _ 17 misleading _ ADJ JJ _ 14 conj _ _ 18 . _ PUNCT . _ 14 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 thought _ VERB VBD _ 0 root _ _ 3 your _ PRON PRP$ _ 4 nmod:poss _ _ 4 editorial _ NOUN NN _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 factually _ ADV RB _ 7 advmod _ _ 7 accurate _ ADJ JJ _ 2 ccomp _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 deliberately _ ADV RB _ 10 advmod _ _ 10 elucidative _ ADJ JJ _ 7 conj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 2 _ X LS _ 6 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ DT _ 6 mark _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Lantos _ PROPN NNP _ 6 nsubj _ _ 6 supported _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 rights _ NOUN NNS _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 witnesses _ NOUN NNS _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 take _ VERB VB _ 8 acl _ _ 14 the _ DET DT _ 16 det _ _ 15 Fifth _ PROPN NNP _ 16 compound _ _ 16 Amendment _ PROPN NNP _ 13 dobj _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 Yes _ INTJ UH _ 4 discourse _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 did _ VERB VBD _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 watched _ VERB VBD _ 9 advcl _ _ 4 him _ PRON PRP _ 3 dobj _ _ 5 on _ ADP IN _ 6 case _ _ 6 C-Span _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 I _ PRON PRP _ 9 nsubj _ _ 9 heard _ VERB VBD _ 0 root _ _ 10 him _ PRON PRP _ 11 nsubj _ _ 11 speak _ VERB VB _ 9 ccomp _ _ 12 those _ DET DT _ 14 det _ _ 13 lovely _ ADJ JJ _ 14 amod _ _ 14 words _ NOUN NNS _ 11 dobj _ _ 15 about _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Bill _ PROPN NNP _ 14 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 Rights _ PROPN NNPS _ 17 nmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 which _ PRON WDT _ 23 dobj _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 quotes _ VERB VBZ _ 14 acl:relcl _ _ 24 from _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 transcript _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 hearings _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 did _ AUX VBD _ 3 aux _ _ 3 repeat _ VERB NN _ 0 root _ _ 4 those _ DET DT _ 6 det _ _ 5 nice _ ADJ JJ _ 6 amod _ _ 6 platitudes _ NOUN NNS _ 3 dobj _ _ 7 several _ ADJ JJ _ 8 amod _ _ 8 times _ NOUN NNS _ 3 nmod:npmod _ _ 9 as _ ADP IN _ 11 case _ _ 10 an _ DET DT _ 11 det _ _ 11 indication _ NOUN NN _ 3 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 his _ PRON PRP$ _ 14 nmod:poss _ _ 14 support _ NOUN NN _ 11 nmod _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Constitution _ PROPN NNP _ 14 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 used _ VERB VBD _ 0 root _ _ 3 about _ ADV IN _ 4 advmod _ _ 4 56 _ NUM CD _ 5 nummod _ _ 5 words _ NOUN NNS _ 2 dobj _ _ 6 defending _ VERB VBG _ 2 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 witnesses _ NOUN NNS _ 11 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 constitutional _ ADJ JJ _ 11 amod _ _ 11 rights _ NOUN NNS _ 6 dobj _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 Unfortunately _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 by _ ADP IN _ 6 case _ _ 4 my _ PRON PRP$ _ 6 nmod:poss _ _ 5 rough _ ADJ JJ _ 6 amod _ _ 6 guess _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 used _ VERB VBD _ 0 root _ _ 10 better _ ADJ JJR _ 12 advmod _ _ 11 than _ ADP IN _ 12 advmod _ _ 12 5,000 _ NUM CD _ 13 nummod _ _ 13 words _ NOUN NNS _ 9 dobj _ _ 14 heaping _ VERB VBG _ 9 xcomp _ _ 15 scorn _ NOUN VB _ 14 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 witnesses _ NOUN NNS _ 14 nmod _ _ 19 for _ SCONJ IN _ 20 mark _ _ 20 exercising _ VERB VBG _ 14 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 Fifth _ PROPN NNP _ 20 dobj _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 sandwiched _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 praise _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 7 case _ _ 6 constitutional _ ADJ JJ _ 7 amod _ _ 7 meat _ NOUN NN _ 4 nmod _ _ 8 between _ ADP IN _ 10 case _ _ 9 large _ ADJ JJ _ 10 amod _ _ 10 loaves _ NOUN NNS _ 2 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 bilious _ ADJ JJ _ 13 amod _ _ 13 commentary _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 your _ PRON PRP$ _ 3 nmod:poss _ _ 3 editorial _ NOUN NN _ 5 nsubj _ _ 4 rightly _ ADV RB _ 5 advmod _ _ 5 pointed _ VERB VBD _ 29 advcl _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 , _ PUNCT , _ 29 punct _ _ 8 Samuel _ PROPN NNP _ 9 compound _ _ 9 Pierce _ PROPN NNP _ 29 nsubjpass _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 former _ ADJ JJ _ 13 amod _ _ 12 HUD _ PROPN NNP _ 13 compound _ _ 13 secretary _ NOUN NN _ 9 appos _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 and _ CONJ CC _ 9 cc _ _ 16 Lance _ PROPN NNP _ 17 compound _ _ 17 Wilson _ PROPN NNP _ 9 conj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Pierce _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 former _ ADJ JJ _ 23 amod _ _ 23 aide _ NOUN NN _ 17 appos _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 `` _ PUNCT `` _ 29 punct _ _ 26 are _ AUX VBP _ 29 aux _ _ 27 currently _ ADV RB _ 29 advmod _ _ 28 being _ AUX VBG _ 29 auxpass _ _ 29 held _ VERB VBN _ 0 root _ _ 30 up _ ADV RP _ 29 advmod _ _ 31 to _ ADP TO _ 32 case _ _ 32 scorn _ NOUN VB _ 30 nmod _ _ 33 for _ SCONJ IN _ 34 mark _ _ 34 taking _ VERB VBG _ 29 advcl _ _ 35 the _ DET DT _ 37 det _ _ 36 Fifth _ PROPN NNP _ 37 compound _ _ 37 Amendment _ PROPN NNP _ 34 dobj _ _ 38 . _ PUNCT . _ 29 punct _ _ 1 '' _ PUNCT '' _ 10 punct _ _ 2 That _ PRON DT _ 10 nsubj _ _ 3 certainly _ ADV RB _ 10 advmod _ _ 4 is _ VERB VBZ _ 10 cop _ _ 5 not _ PART RB _ 10 neg _ _ 6 the _ DET DT _ 10 det _ _ 7 supposed _ ADJ VBN _ 10 amod _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 distorted _ ADJ JJ _ 10 amod _ _ 10 reading _ NOUN NN _ 0 root _ _ 11 '' _ PUNCT '' _ 10 punct _ _ 12 indicated _ VERB VBN _ 10 acl _ _ 13 by _ ADP IN _ 15 case _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Lantos _ PROPN NNP _ 12 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 3 _ X LS _ 9 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ DT _ 9 mark _ _ 4 his _ PRON PRP$ _ 6 nmod:poss _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 committee _ NOUN NN _ 9 nsubj _ _ 7 does _ AUX VBZ _ 9 aux _ _ 8 not _ PART RB _ 9 neg _ _ 9 deal _ VERB VB _ 0 root _ _ 10 with _ ADP IN _ 14 case _ _ 11 any _ DET DT _ 14 det _ _ 12 possible _ ADJ JJ _ 14 amod _ _ 13 criminal _ ADJ JJ _ 14 amod _ _ 14 activity _ NOUN NN _ 9 nmod _ _ 15 at _ ADP IN _ 16 case _ _ 16 HUD _ PROPN NNP _ 14 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 My _ PRON PRP$ _ 2 nmod:poss _ _ 2 colleagues _ NOUN NNS _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 I _ PRON PRP _ 2 conj _ _ 5 fully _ ADV RB _ 6 advmod _ _ 6 realize _ VERB VBP _ 0 root _ _ 7 we _ PRON PRP _ 11 nsubj _ _ 8 are _ VERB VBP _ 11 cop _ _ 9 not _ PART RB _ 11 neg _ _ 10 a _ DET DT _ 11 det _ _ 11 court _ NOUN NN _ 6 ccomp _ _ 12 ... _ PUNCT : _ 6 punct _ _ 13 etc _ X FW _ 6 dep _ _ 14 . _ PUNCT . _ 6 punct _ _ 15 '' _ PUNCT '' _ 6 punct _ _ 1 Absolute _ ADJ JJ _ 2 amod _ _ 2 rubbish _ NOUN JJ _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 By _ ADP IN _ 7 case _ _ 2 any _ DET DT _ 7 det _ _ 3 `` _ PUNCT `` _ 7 punct _ _ 4 reasonable _ ADJ JJ _ 7 amod _ _ 5 man _ NOUN NN _ 7 compound _ _ 6 '' _ PUNCT '' _ 7 punct _ _ 7 criterion _ NOUN NN _ 20 nmod _ _ 8 , _ PUNCT , _ 20 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Lantos _ PROPN NNP _ 20 nsubj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 colleagues _ NOUN NNS _ 10 conj _ _ 14 have _ AUX VBP _ 20 aux _ _ 15 a _ DET DT _ 17 det _ _ 16 whole _ ADJ JJ _ 17 amod _ _ 17 bunch _ NOUN NN _ 20 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 people _ NOUN NNS _ 17 nmod _ _ 20 tried _ VERB VBD _ 0 root _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 convicted _ VERB VBD _ 20 conj _ _ 23 . _ PUNCT . _ 20 punct _ _ 1 Apparently _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 their _ PRON PRP$ _ 4 nmod:poss _ _ 4 verdict _ NOUN NN _ 5 nsubj _ _ 5 is _ VERB VBZ _ 0 root _ _ 6 in _ ADV IN _ 5 advmod _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 Right _ ADV RB _ 2 advmod _ _ 2 now _ ADV RB _ 5 advmod _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 're _ AUX VBP _ 5 aux _ _ 5 pursuing _ VERB VBG _ 0 root _ _ 6 evidence _ NOUN NN _ 5 dobj _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 not _ ADV RB _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 bad _ ADJ JJ _ 6 amod _ _ 6 way _ NOUN NN _ 3 dep _ _ 7 to _ PART TO _ 8 mark _ _ 8 proceed _ VERB VB _ 6 acl _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 just _ ADV RB _ 3 dep _ _ 11 somewhat _ ADV RB _ 12 advmod _ _ 12 different _ ADJ JJ _ 3 dep _ _ 13 from _ ADP IN _ 16 case _ _ 14 standard _ ADJ JJ _ 16 amod _ _ 15 American _ ADJ JJ _ 16 amod _ _ 16 practice _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 How _ ADV WRB _ 5 advmod _ _ 2 was _ AUX VBD _ 5 auxpass _ _ 3 that _ DET IN _ 4 det _ _ 4 practice _ NOUN NN _ 5 nsubjpass _ _ 5 referred _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 5 nmod _ _ 7 when _ ADV WRB _ 11 advmod _ _ 8 I _ PRON PRP _ 11 nsubj _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 in _ ADP IN _ 11 case _ _ 11 school _ NOUN NN _ 5 advcl _ _ 12 ? _ PUNCT . _ 5 punct _ _ 1 Ah _ INTJ NN _ 5 discourse _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 yes _ INTJ UH _ 5 discourse _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 something _ NOUN NN _ 0 root _ _ 6 called _ VERB VBD _ 5 acl _ _ 7 a _ DET DT _ 9 det _ _ 8 Star _ PROPN NNP _ 9 compound _ _ 9 Chamber _ PROPN NNP _ 6 xcomp _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Lantos _ PROPN NNP _ 6 nsubj _ _ 6 doth _ VERB NN _ 0 root _ _ 7 protest _ NOUN NN _ 6 dep _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 his _ PRON PRP$ _ 10 nmod:poss _ _ 10 subcommittee _ NOUN NN _ 12 nsubj _ _ 11 simply _ ADV RB _ 12 advmod _ _ 12 seeks _ VERB VBZ _ 7 ccomp _ _ 13 information _ NOUN NN _ 12 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 legislative _ ADJ JJ _ 16 amod _ _ 16 change _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 doubt _ NOUN NN _ 0 root _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 's _ VERB VBZ _ 6 cop _ _ 5 partially _ ADV RB _ 6 advmod _ _ 6 true _ ADJ JJ _ 2 ccomp _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 Everything _ NOUN NN _ 11 nsubj _ _ 2 that _ ADP IN _ 5 dobj _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 Lantos _ PROPN NNP _ 5 nsubj _ _ 5 says _ VERB VBZ _ 1 acl:relcl _ _ 6 in _ ADP IN _ 8 case _ _ 7 his _ PRON PRP$ _ 8 nmod:poss _ _ 8 letter _ NOUN NN _ 5 nmod _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 partially _ ADV RB _ 11 advmod _ _ 11 true _ ADJ JJ _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 right _ ADJ JJ _ 0 root _ _ 4 about _ ADP IN _ 8 case _ _ 5 his _ PRON PRP$ _ 6 nmod:poss _ _ 6 subcommittee _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 responsibilities _ NOUN NNS _ 3 nmod _ _ 9 when _ ADV WRB _ 11 advmod _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 comes _ VERB VBZ _ 8 acl:relcl _ _ 12 to _ ADP TO _ 13 mark _ _ 13 obtaining _ VERB VBG _ 11 advcl _ _ 14 information _ NOUN NN _ 13 dobj _ _ 15 from _ ADP IN _ 18 case _ _ 16 prior _ ADJ JJ _ 18 amod _ _ 17 HUD _ PROPN NNP _ 18 compound _ _ 18 officials _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 if _ SCONJ IN _ 8 mark _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 explanation _ NOUN NN _ 8 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 motivation _ NOUN NN _ 4 nmod _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 true _ ADJ JJ _ 15 advcl _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 why _ ADV WRB _ 15 advmod _ _ 11 is _ AUX VBZ _ 15 auxpass _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 investigation _ NOUN NN _ 15 nsubjpass _ _ 14 so _ ADV RB _ 15 advmod _ _ 15 oriented _ VERB VBN _ 0 root _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 to _ PART TO _ 18 mark _ _ 18 identify _ VERB VB _ 15 advcl _ _ 19 criminal _ ADJ JJ _ 20 amod _ _ 20 activity _ NOUN NN _ 18 dobj _ _ 21 ? _ PUNCT . _ 15 punct _ _ 1 Why _ ADV WRB _ 2 advmod _ _ 2 not _ ADV RB _ 4 dep _ _ 3 simply _ ADV RB _ 4 advmod _ _ 4 questions _ NOUN NNS _ 0 root _ _ 5 designed _ VERB VBN _ 4 acl _ _ 6 to _ PART TO _ 7 mark _ _ 7 identify _ VERB VB _ 5 xcomp _ _ 8 sources _ NOUN NNS _ 7 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 causes _ NOUN NNS _ 8 conj _ _ 11 of _ ADP IN _ 12 case _ _ 12 waste _ NOUN NN _ 8 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 inefficiency _ NOUN NN _ 12 conj _ _ 15 ? _ PUNCT . _ 4 punct _ _ 1 Such _ ADJ JJ _ 5 case _ _ 2 as _ ADP IN _ 1 mwe _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 what _ PRON WP _ 5 nsubj _ _ 5 happened _ VERB VBD _ 0 root _ _ 6 when _ ADV WRB _ 8 advmod _ _ 7 Congress _ PROPN NNP _ 8 nsubj _ _ 8 wanted _ VERB VBD _ 5 advcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 know _ VERB VB _ 8 xcomp _ _ 11 about _ ADV IN _ 15 advmod _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 400 _ NUM CD _ 12 compound _ _ 14 toilet _ NOUN NN _ 15 compound _ _ 15 seats _ NOUN NNS _ 10 nmod _ _ 16 or _ CONJ CC _ 20 cc _ _ 17 whatever _ DET WDT _ 20 dobj _ _ 18 they _ PRON PRP _ 20 nsubj _ _ 19 supposedly _ ADV RB _ 20 advmod _ _ 20 cost _ VERB VB _ 15 dep _ _ 21 ? _ PUNCT . _ 5 punct _ _ 1 No _ ADV DT _ 10 discourse _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 Lantos _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 complaints _ NOUN NNS _ 10 nsubj _ _ 7 simply _ ADV RB _ 10 advmod _ _ 8 wo _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 wash _ VERB VB _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 4 _ X LS _ 6 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 Journal _ PROPN NNP _ 6 nsubj _ _ 6 defends _ VERB VBZ _ 0 root _ _ 7 `` _ PUNCT `` _ 6 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 sleaze _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 fraud _ NOUN NN _ 9 conj _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 waste _ NOUN NN _ 9 conj _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 embezzlement _ NOUN NN _ 9 conj _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 influence-peddling _ NOUN NN _ 9 conj _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 abuse _ NOUN NN _ 9 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 public _ NOUN NN _ 9 nmod _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 took _ VERB VBD _ 9 acl:relcl _ _ 25 place _ NOUN NN _ 24 dobj _ _ 26 while _ SCONJ IN _ 30 mark _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Pierce _ PROPN NNP _ 30 nsubj _ _ 29 was _ VERB VBD _ 30 cop _ _ 30 secretary _ NOUN NN _ 24 advcl _ _ 31 of _ ADP IN _ 32 case _ _ 32 HUD _ PROPN NNP _ 30 nmod _ _ 33 , _ PUNCT , _ 6 punct _ _ 34 '' _ PUNCT '' _ 6 punct _ _ 35 etc. _ X FW _ 6 dep _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 so _ ADV RB _ 38 advmod _ _ 38 forth _ ADV RB _ 35 dep _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 No _ INTJ DT _ 12 discourse _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 to _ ADP TO _ 5 case _ _ 4 my _ PRON PRP$ _ 5 nmod:poss _ _ 5 mind _ NOUN NN _ 12 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Journal _ PROPN NNP _ 12 nsubj _ _ 9 did _ AUX VBD _ 12 aux _ _ 10 not _ PART RB _ 12 neg _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 defend _ VERB VB _ 0 root _ _ 13 sleaze _ NOUN NN _ 12 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 fraud _ NOUN NN _ 13 conj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 waste _ NOUN NN _ 13 conj _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 embezzlement _ NOUN NN _ 13 conj _ _ 20 , _ PUNCT , _ 13 punct _ _ 21 influence-peddling _ NOUN NN _ 13 conj _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 abuse _ NOUN NN _ 13 conj _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 public _ ADJ JJ _ 27 amod _ _ 27 trust _ NOUN NN _ 23 nmod _ _ 28 ... _ PUNCT : _ 12 punct _ _ 29 '' _ PUNCT '' _ 12 punct _ _ 1 it _ PRON PRP _ 2 nsubj _ _ 2 defended _ VERB VBD _ 0 root _ _ 3 appropriate _ ADJ JJ _ 5 amod _ _ 4 constitutional _ ADJ JJ _ 5 amod _ _ 5 safeguards _ NOUN NNS _ 2 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 practical _ ADJ JJ _ 9 amod _ _ 8 common _ ADJ JJ _ 9 amod _ _ 9 sense _ NOUN NN _ 5 conj _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 problem _ NOUN NN _ 20 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 9 dobj _ _ 5 the _ DET DT _ 6 det _ _ 6 Journal _ PROPN NNP _ 9 nsubj _ _ 7 so _ ADV RB _ 8 advmod _ _ 8 rightly _ ADV RB _ 9 advmod _ _ 9 pointed _ VERB VBD _ 2 acl:relcl _ _ 10 out _ ADP RP _ 9 compound:prt _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 number _ NOUN NN _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 articles _ NOUN NNS _ 13 nmod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 is _ VERB VBZ _ 20 cop _ _ 18 not _ ADV RB _ 20 neg _ _ 19 the _ DET DT _ 20 det _ _ 20 likes _ NOUN NN _ 0 root _ _ 21 of _ ADP IN _ 23 case _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Lantos _ PROPN NNP _ 20 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 who _ PRON WP _ 32 nsubj _ _ 26 after _ ADP IN _ 27 case _ _ 27 all _ DET DT _ 32 nmod _ _ 28 is _ VERB VBZ _ 32 cop _ _ 29 really _ ADV RB _ 32 advmod _ _ 30 a _ DET DT _ 32 det _ _ 31 bit _ ADJ NN _ 32 amod _ _ 32 player _ NOUN NN _ 23 acl:relcl _ _ 33 on _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 stage _ NOUN NN _ 32 nmod _ _ 36 , _ PUNCT , _ 20 punct _ _ 37 but _ CONJ CC _ 20 cc _ _ 38 the _ DET DT _ 39 det _ _ 39 attempt _ NOUN NN _ 20 conj _ _ 40 by _ ADP IN _ 41 case _ _ 41 Congress _ PROPN NNP _ 39 nmod _ _ 42 to _ PART TO _ 43 mark _ _ 43 enhance _ VERB VB _ 39 acl _ _ 44 itself _ PRON PRP _ 43 dobj _ _ 45 into _ ADP IN _ 48 case _ _ 46 a _ DET DT _ 48 det _ _ 47 quasi-parliamentary/judicial _ ADJ JJ _ 48 amod _ _ 48 body _ NOUN NN _ 43 nmod _ _ 49 . _ PUNCT . _ 20 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 2 Of _ ADP IN _ 3 case _ _ 3 course _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 we _ PRON PRP _ 8 nsubj _ _ 6 've _ AUX VBP _ 8 aux _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 got _ VERB VBN _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 judiciary _ NOUN NN _ 8 dobj _ _ 11 that _ PRON WDT _ 12 nsubj _ _ 12 seeks _ VERB VBZ _ 10 acl:relcl _ _ 13 the _ DET DT _ 15 det _ _ 14 same _ ADJ JJ _ 15 amod _ _ 15 objective _ NOUN NN _ 12 dobj _ _ 16 . _ PUNCT . _ 8 punct _ _ 17 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 system _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 problem _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 not _ PART RB _ 5 dep _ _ 8 an _ DET DT _ 10 det _ _ 9 individual _ ADJ JJ _ 10 amod _ _ 10 member _ NOUN NN _ 7 dep _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 Individuals _ NOUN NNS _ 4 nsubj _ _ 2 can _ AUX MD _ 4 aux _ _ 3 always _ ADV RB _ 4 advmod _ _ 4 have _ VERB VB _ 0 root _ _ 5 their _ PRON PRP$ _ 6 nmod:poss _ _ 6 hands _ NOUN NNS _ 7 nsubj _ _ 7 slapped _ VERB VBD _ 4 ccomp _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 's _ PART VBZ _ 0 root _ _ 3 when _ ADV WRB _ 8 advmod _ _ 4 such _ ADJ JJ _ 5 amod _ _ 5 slapping _ NOUN NN _ 8 nsubj _ _ 6 does _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 occur _ VERB VB _ 2 advcl _ _ 9 that _ ADP IN _ 12 advmod _ _ 10 we _ PRON PRP _ 12 nsubj _ _ 11 've _ AUX VBP _ 12 aux _ _ 12 got _ VERB VBN _ 2 dep _ _ 13 trouble _ NOUN NN _ 12 dobj _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 I _ PRON PRP _ 7 nsubj _ _ 2 do _ AUX VBP _ 7 aux _ _ 3 not _ PART RB _ 7 neg _ _ 4 by _ ADP IN _ 6 case _ _ 5 any _ DET DT _ 6 det _ _ 6 means _ NOUN NNS _ 7 nmod _ _ 7 defend _ VERB VBP _ 0 root _ _ 8 HUD _ PROPN NNP _ 9 compound _ _ 9 management _ NOUN NN _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 kind _ NOUN NN _ 17 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 congressional _ ADJ JJ _ 8 amod _ _ 8 investigation _ NOUN NN _ 5 nmod _ _ 9 that _ PRON WDT _ 12 nsubjpass _ _ 10 has _ AUX VBZ _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 pursued _ VERB VBN _ 5 acl:relcl _ _ 13 is _ VERB VBZ _ 17 cop _ _ 14 a _ DET DT _ 17 det _ _ 15 far _ ADV RB _ 16 advmod _ _ 16 greater _ ADJ JJR _ 17 amod _ _ 17 danger _ NOUN NN _ 3 ccomp _ _ 18 to _ ADP TO _ 20 case _ _ 19 American _ ADJ JJ _ 20 amod _ _ 20 notions _ NOUN NNS _ 17 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 liberty _ NOUN NN _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 freedom _ NOUN NN _ 22 conj _ _ 25 than _ SCONJ IN _ 40 mark _ _ 26 any _ DET DT _ 27 det _ _ 27 incompetency _ NOUN NN _ 40 nsubj _ _ 28 -LRB- _ PUNCT -LRB- _ 34 punct _ _ 29 and _ CONJ CC _ 34 cc _ _ 30 , _ PUNCT , _ 34 punct _ _ 31 yes _ INTJ UH _ 34 discourse _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 maybe _ ADV RB _ 34 dep _ _ 34 criminality _ NOUN NN _ 27 appos _ _ 35 -RRB- _ PUNCT -RRB- _ 34 punct _ _ 36 within _ ADP IN _ 37 case _ _ 37 HUD _ PROPN NNP _ 27 nmod _ _ 38 could _ AUX MD _ 40 aux _ _ 39 possibly _ ADV RB _ 40 advmod _ _ 40 generate _ VERB VB _ 17 advcl _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 time _ NOUN NN _ 10 nsubj _ _ 4 I _ PRON PRP _ 5 nsubj _ _ 5 saw _ VERB VBD _ 3 acl:relcl _ _ 6 a _ DET DT _ 9 det _ _ 7 similar _ ADJ JJ _ 9 amod _ _ 8 congressional _ ADJ JJ _ 9 amod _ _ 9 hearing _ NOUN NN _ 5 dobj _ _ 10 was _ VERB VBD _ 0 root _ _ 11 when _ ADV WRB _ 18 advmod _ _ 12 `` _ PUNCT `` _ 17 punct _ _ 13 Tail _ PROPN NNP _ 17 compound _ _ 14 Gunner _ PROPN NNP _ 17 compound _ _ 15 Joe _ PROPN NNP _ 17 compound _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 McCarthy _ PROPN NNP _ 18 nsubj _ _ 18 did _ VERB VBD _ 10 advcl _ _ 19 his _ PRON PRP$ _ 20 nmod:poss _ _ 20 work _ NOUN NN _ 18 dobj _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 Raymond _ PROPN NNP _ 2 compound _ _ 2 Weber _ PROPN NNP _ 0 root _ _ 1 Parsippany _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 N.J _ PROPN NNP _ 1 appos _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 disagree _ VERB VBP _ 0 root _ _ 3 with _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 statement _ NOUN NN _ 2 nmod _ _ 6 by _ ADP IN _ 8 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Lantos _ PROPN NNP _ 5 nmod _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 one _ PRON CD _ 13 nsubj _ _ 11 should _ AUX MD _ 13 aux _ _ 12 not _ PART RB _ 13 neg _ _ 13 draw _ VERB VB _ 5 dep _ _ 14 an _ DET DT _ 16 det _ _ 15 adverse _ ADJ JJ _ 16 amod _ _ 16 inference _ NOUN NN _ 13 dobj _ _ 17 against _ ADP IN _ 20 case _ _ 18 former _ ADJ JJ _ 20 amod _ _ 19 HUD _ PROPN NNP _ 20 compound _ _ 20 officials _ NOUN NNS _ 13 nmod _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 assert _ VERB VBP _ 20 acl:relcl _ _ 23 their _ PRON PRP$ _ 26 nmod:poss _ _ 24 Fifth _ PROPN JJ _ 26 compound _ _ 25 Amendment _ PROPN NN _ 26 compound _ _ 26 privilege _ NOUN NN _ 22 dobj _ _ 27 against _ ADP IN _ 28 case _ _ 28 self-incrimination _ NOUN NN _ 26 nmod _ _ 29 in _ ADP IN _ 31 case _ _ 30 congressional _ ADJ JJ _ 31 amod _ _ 31 hearings _ NOUN NNS _ 22 nmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Fifth _ PROPN NNP _ 3 compound _ _ 3 Amendment _ PROPN NNP _ 4 nsubj _ _ 4 states _ VERB VBZ _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 relevant _ ADJ JJ _ 7 amod _ _ 7 part _ NOUN NN _ 4 nmod _ _ 8 that _ SCONJ IN _ 14 mark _ _ 9 no _ DET DT _ 10 neg _ _ 10 person _ NOUN NN _ 14 nsubjpass _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 shall _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 compelled _ VERB VBN _ 4 ccomp _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 in _ ADP IN _ 19 case _ _ 17 any _ DET DT _ 19 det _ _ 18 criminal _ ADJ JJ _ 19 amod _ _ 19 case _ NOUN NN _ 14 nmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 to _ PART TO _ 24 mark _ _ 22 be _ VERB VB _ 24 cop _ _ 23 a _ DET DT _ 24 det _ _ 24 witness _ NOUN NN _ 14 xcomp _ _ 25 against _ ADP IN _ 26 case _ _ 26 himself _ PRON PRP _ 24 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 28 '' _ PUNCT '' _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 privilege _ NOUN NN _ 5 nsubj _ _ 3 against _ ADP IN _ 4 case _ _ 4 self-incrimination _ NOUN NN _ 2 nmod _ _ 5 precludes _ VERB VBZ _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 drawing _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 adverse _ ADJ JJ _ 11 amod _ _ 11 inference _ NOUN NN _ 7 nmod _ _ 12 against _ ADP IN _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 criminal _ ADJ JJ _ 15 amod _ _ 15 defendant _ NOUN NN _ 7 nmod _ _ 16 who _ PRON WP _ 17 nsubj _ _ 17 chooses _ VERB VBZ _ 15 acl:relcl _ _ 18 not _ PART RB _ 17 neg _ _ 19 to _ PART TO _ 20 mark _ _ 20 testify _ VERB VB _ 17 xcomp _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Thus _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 in _ ADP IN _ 6 case _ _ 4 a _ DET DT _ 6 det _ _ 5 criminal _ ADJ JJ _ 6 amod _ _ 6 case _ NOUN NN _ 12 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 prosecutor _ NOUN NN _ 12 nsubj _ _ 10 can _ AUX MD _ 12 aux _ _ 11 not _ PART RB _ 12 neg _ _ 12 comment _ VERB VB _ 0 root _ _ 13 on _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 15 det _ _ 15 defendant _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 failure _ NOUN NN _ 12 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 testify _ VERB VB _ 17 acl _ _ 20 nor _ CONJ CC _ 12 cc _ _ 21 can _ AUX MD _ 25 aux _ _ 22 the _ DET DT _ 23 det _ _ 23 defendant _ NOUN NN _ 25 nsubjpass _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 compelled _ VERB VBN _ 12 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 take _ VERB VB _ 25 xcomp _ _ 28 the _ DET DT _ 29 det _ _ 29 stand _ NOUN NN _ 27 dobj _ _ 30 as _ ADP IN _ 32 case _ _ 31 a _ DET DT _ 32 det _ _ 32 witness _ NOUN NN _ 27 nmod _ _ 33 , _ PUNCT , _ 25 punct _ _ 34 thus _ ADV RB _ 35 advmod _ _ 35 forcing _ VERB VBG _ 25 xcomp _ _ 36 him _ PRON PRP _ 35 dobj _ _ 37 to _ PART TO _ 39 mark _ _ 38 `` _ PUNCT `` _ 39 punct _ _ 39 take _ VERB VB _ 35 xcomp _ _ 40 the _ DET DT _ 41 det _ _ 41 Fifth _ PROPN NNP _ 39 dobj _ _ 42 . _ PUNCT . _ 12 punct _ _ 43 '' _ PUNCT '' _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 privilege _ NOUN NN _ 8 nsubjpass _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 however _ ADV RB _ 8 advmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 limited _ VERB VBN _ 0 root _ _ 9 in _ ADP IN _ 10 case _ _ 10 accordance _ NOUN NN _ 8 nmod _ _ 11 with _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 plain _ ADJ JJ _ 14 amod _ _ 14 language _ NOUN NN _ 10 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 protect _ VERB VB _ 8 xcomp _ _ 17 the _ DET DT _ 18 det _ _ 18 defendant _ NOUN NN _ 16 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 criminal _ ADJ JJ _ 21 amod _ _ 21 matters _ NOUN NNS _ 16 nmod _ _ 22 only _ ADV RB _ 21 advmod _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Supreme _ PROPN NNP _ 3 compound _ _ 3 Court _ PROPN NNP _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 some _ DET DT _ 6 det _ _ 6 states _ NOUN NNS _ 3 conj _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 specifically _ ADV RB _ 9 advmod _ _ 9 recognized _ VERB VBN _ 0 root _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 `` _ PUNCT `` _ 17 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 Fifth _ PROPN NNP _ 14 compound _ _ 14 Amendment _ PROPN NNP _ 17 nsubj _ _ 15 does _ AUX VBZ _ 17 aux _ _ 16 not _ PART RB _ 17 neg _ _ 17 preclude _ VERB VB _ 9 ccomp _ _ 18 the _ DET DT _ 19 det _ _ 19 inference _ NOUN NN _ 17 dobj _ _ 20 where _ ADV WRB _ 24 advmod _ _ 21 the _ DET DT _ 22 det _ _ 22 privilege _ NOUN NN _ 24 nsubjpass _ _ 23 is _ AUX VBZ _ 24 auxpass _ _ 24 claimed _ VERB VBN _ 17 advcl _ _ 25 by _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 party _ NOUN NN _ 24 nmod _ _ 28 to _ ADP TO _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 civil _ ADJ JJ _ 31 amod _ _ 31 cause _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 33 '' _ PUNCT '' _ 9 punct _ _ 1 Baxter _ PROPN NNP _ 0 root _ _ 2 v. _ ADP CC _ 3 case _ _ 3 Palmingiano _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 425 _ NUM CD _ 6 nummod _ _ 6 U.S. _ PROPN NNP _ 1 appos _ _ 7 308 _ NUM CD _ 6 nummod _ _ 8 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 9 1976 _ NUM CD _ 1 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 . _ PUNCT . _ 1 punct _ _ 1 Thus _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 in _ ADP IN _ 6 case _ _ 4 a _ DET DT _ 6 det _ _ 5 civil _ ADJ JJ _ 6 amod _ _ 6 case _ NOUN NN _ 12 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 defendant _ NOUN NN _ 12 nsubjpass _ _ 10 may _ AUX MD _ 12 aux _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 called _ VERB VBN _ 0 root _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 witness _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 he _ PRON PRP _ 20 nsubjpass _ _ 18 may _ AUX MD _ 20 aux _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 forced _ VERB VBN _ 12 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 testify _ VERB VB _ 20 xcomp _ _ 23 or _ CONJ CC _ 22 cc _ _ 24 take _ VERB VB _ 22 conj _ _ 25 the _ DET DT _ 26 det _ _ 26 Fifth _ PROPN NNP _ 24 dobj _ _ 27 , _ PUNCT , _ 12 punct _ _ 28 and _ CONJ CC _ 12 cc _ _ 29 his _ PRON PRP$ _ 30 nmod:poss _ _ 30 taking _ NOUN NN _ 35 nsubj _ _ 31 of _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 Fifth _ PROPN NNP _ 30 nmod _ _ 34 may _ AUX MD _ 35 aux _ _ 35 permit _ VERB VB _ 12 conj _ _ 36 the _ DET DT _ 37 det _ _ 37 drawing _ NOUN NN _ 35 dobj _ _ 38 of _ ADP IN _ 41 case _ _ 39 an _ DET DT _ 41 det _ _ 40 adverse _ ADJ JJ _ 41 amod _ _ 41 inference _ NOUN NN _ 37 nmod _ _ 42 against _ ADP IN _ 43 case _ _ 43 him _ PRON PRP _ 41 nmod _ _ 44 in _ ADP IN _ 47 case _ _ 45 the _ DET DT _ 47 det _ _ 46 civil _ ADJ JJ _ 47 amod _ _ 47 matter _ NOUN NN _ 37 nmod _ _ 48 . _ PUNCT . _ 12 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 may _ AUX MD _ 3 aux _ _ 3 take _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 Fifth _ PROPN NNP _ 3 dobj _ _ 6 in _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 civil _ ADJ JJ _ 9 amod _ _ 9 matter _ NOUN NN _ 3 nmod _ _ 10 only _ ADV RB _ 13 advmod _ _ 11 if _ SCONJ IN _ 13 mark _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 has _ VERB VBZ _ 3 advcl _ _ 14 a _ DET DT _ 16 det _ _ 15 good _ ADJ JJ _ 16 amod _ _ 16 faith _ NOUN NN _ 13 dobj _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 justifiable _ ADJ JJ _ 19 amod _ _ 19 belief _ NOUN NN _ 16 conj _ _ 20 that _ SCONJ IN _ 24 mark _ _ 21 his _ PRON PRP$ _ 22 nmod:poss _ _ 22 testimony _ NOUN NN _ 24 nsubj _ _ 23 may _ AUX MD _ 24 aux _ _ 24 subject _ VERB VB _ 16 dep _ _ 25 him _ PRON PRP _ 24 dobj _ _ 26 to _ ADP TO _ 28 case _ _ 27 criminal _ ADJ JJ _ 28 amod _ _ 28 prosecution _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Allowing _ VERB VBG _ 14 csubj _ _ 2 the _ DET DT _ 3 det _ _ 3 defendant _ NOUN NN _ 1 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 take _ VERB VB _ 1 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 Fifth _ PROPN NNP _ 5 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 civil _ ADJ JJ _ 11 amod _ _ 11 matter _ NOUN NN _ 1 nmod _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 not _ PART RB _ 14 neg _ _ 14 based _ VERB VBN _ 0 root _ _ 15 on _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 constitutional _ ADJ JJ _ 18 amod _ _ 18 right _ NOUN NN _ 14 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 refuse _ VERB VB _ 18 acl _ _ 21 to _ PART TO _ 22 mark _ _ 22 testify _ VERB VB _ 20 xcomp _ _ 23 where _ ADV WRB _ 27 advmod _ _ 24 one _ PRON NN _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 testimony _ NOUN NN _ 27 nsubj _ _ 27 harms _ VERB VBZ _ 20 advcl _ _ 28 him _ PRON PRP _ 27 dobj _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 civil _ ADJ JJ _ 32 amod _ _ 32 matter _ NOUN NN _ 27 nmod _ _ 33 , _ PUNCT , _ 14 punct _ _ 34 but _ CONJ CC _ 14 cc _ _ 35 because _ SCONJ IN _ 45 mark _ _ 36 the _ DET DT _ 37 det _ _ 37 testimony _ NOUN NN _ 45 nsubjpass _ _ 38 in _ ADP IN _ 41 case _ _ 39 the _ DET DT _ 41 det _ _ 40 civil _ ADJ JJ _ 41 amod _ _ 41 matter _ NOUN NN _ 37 nmod _ _ 42 could _ AUX MD _ 45 aux _ _ 43 be _ AUX VB _ 45 auxpass _ _ 44 unconstitutionally _ ADV RB _ 45 advmod _ _ 45 used _ VERB VBN _ 14 conj _ _ 46 against _ ADP IN _ 47 case _ _ 47 him _ PRON PRP _ 45 nmod _ _ 48 in _ ADP IN _ 52 case _ _ 49 a _ DET DT _ 52 det _ _ 50 subsequent _ ADJ JJ _ 52 amod _ _ 51 criminal _ ADJ JJ _ 52 amod _ _ 52 prosecution _ NOUN NN _ 45 nmod _ _ 53 . _ PUNCT . _ 14 punct _ _ 1 Absent _ ADJ JJ _ 11 ccomp _ _ 2 the _ DET DT _ 3 det _ _ 3 risk _ NOUN NN _ 1 dep _ _ 4 of _ ADP IN _ 6 case _ _ 5 such _ ADJ JJ _ 6 amod _ _ 6 prosecution _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 court _ NOUN NN _ 11 nsubj _ _ 10 may _ AUX MD _ 11 aux _ _ 11 order _ VERB VB _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 defendant _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 testify _ VERB VB _ 11 xcomp _ _ 16 . _ PUNCT . _ 11 punct _ _ 1 Thus _ ADV RB _ 26 advmod _ _ 2 , _ PUNCT , _ 26 punct _ _ 3 when _ ADV WRB _ 6 advmod _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Pierce _ PROPN NNP _ 6 nsubj _ _ 6 asserted _ VERB VBD _ 26 advcl _ _ 7 the _ DET DT _ 8 det _ _ 8 Fifth _ PROPN NNP _ 6 dobj _ _ 9 in _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 noncriminal _ ADJ JJ _ 12 amod _ _ 12 proceeding _ NOUN NN _ 6 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 particularly _ ADV RB _ 17 advmod _ _ 15 after _ SCONJ IN _ 17 mark _ _ 16 presumably _ ADV RB _ 17 advmod _ _ 17 receiving _ VERB VBG _ 6 advcl _ _ 18 extensive _ ADJ JJ _ 19 amod _ _ 19 advice _ NOUN NN _ 17 dobj _ _ 20 from _ ADP IN _ 22 case _ _ 21 legal _ ADJ JJ _ 22 amod _ _ 22 counsel _ NOUN NN _ 19 nmod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 one _ PRON CD _ 26 nsubj _ _ 25 must _ AUX MD _ 26 aux _ _ 26 conclude _ VERB VB _ 0 root _ _ 27 that _ SCONJ IN _ 29 mark _ _ 28 he _ PRON PRP _ 29 nsubj _ _ 29 held _ VERB VBD _ 26 ccomp _ _ 30 a _ DET DT _ 34 det _ _ 31 good-faith _ NOUN NN _ 34 compound _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 justifiable _ ADJ JJ _ 34 amod _ _ 34 belief _ NOUN NN _ 29 dobj _ _ 35 that _ SCONJ IN _ 40 mark _ _ 36 his _ PRON PRP$ _ 37 nmod:poss _ _ 37 testimony _ NOUN NN _ 40 nsubjpass _ _ 38 could _ AUX MD _ 40 aux _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 used _ VERB VBN _ 34 ccomp _ _ 41 against _ ADP IN _ 42 case _ _ 42 him _ PRON PRP _ 40 nmod _ _ 43 in _ ADP IN _ 47 case _ _ 44 a _ DET DT _ 47 det _ _ 45 subsequent _ ADJ JJ _ 47 amod _ _ 46 criminal _ ADJ JJ _ 47 amod _ _ 47 prosecution _ NOUN NN _ 40 nmod _ _ 48 . _ PUNCT . _ 26 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 subcommittee _ NOUN NN _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Congress _ PROPN NNP _ 2 conj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 the _ DET DT _ 8 det _ _ 7 American _ ADJ JJ _ 8 amod _ _ 8 public _ NOUN NN _ 2 conj _ _ 9 have _ VERB VBP _ 0 root _ _ 10 every _ DET DT _ 11 det _ _ 11 right _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 draw _ VERB VB _ 11 dep _ _ 14 the _ DET DT _ 16 det _ _ 15 adverse _ ADJ JJ _ 16 amod _ _ 16 inference _ NOUN NN _ 13 dobj _ _ 17 and _ CONJ CC _ 13 cc _ _ 18 to _ PART TO _ 19 mark _ _ 19 concur _ VERB VB _ 13 conj _ _ 20 with _ ADP IN _ 25 case _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Pierce _ PROPN NNP _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 own _ ADJ JJ _ 25 amod _ _ 25 belief _ NOUN NN _ 19 nmod _ _ 26 that _ SCONJ IN _ 30 mark _ _ 27 his _ PRON PRP$ _ 28 nmod:poss _ _ 28 testimony _ NOUN NN _ 30 nsubj _ _ 29 could _ AUX MD _ 30 aux _ _ 30 help _ VERB VB _ 25 ccomp _ _ 31 convict _ VERB VB _ 30 ccomp _ _ 32 him _ PRON PRP _ 31 dobj _ _ 33 of _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 crime _ NOUN NN _ 31 nmod _ _ 36 . _ PUNCT . _ 9 punct _ _ 1 Drawing _ VERB VBG _ 12 csubj _ _ 2 the _ DET DT _ 4 det _ _ 3 adverse _ ADJ JJ _ 4 amod _ _ 4 inference _ NOUN NN _ 1 dobj _ _ 5 in _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 noncriminal _ ADJ JJ _ 9 amod _ _ 8 congressional _ ADJ JJ _ 9 amod _ _ 9 hearing _ NOUN NN _ 1 nmod _ _ 10 does _ AUX VBZ _ 12 aux _ _ 11 not _ PART RB _ 12 neg _ _ 12 offend _ VERB VB _ 0 root _ _ 13 the _ DET DT _ 16 det _ _ 14 Fifth _ PROPN NNP _ 16 compound _ _ 15 Amendment _ PROPN NNP _ 16 compound _ _ 16 shield _ NOUN NN _ 12 dobj _ _ 17 against _ ADP IN _ 18 case _ _ 18 self-incrimination _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 Clark _ PROPN NNP _ 4 compound _ _ 2 S. _ PROPN NNP _ 4 compound _ _ 3 Spalsbury _ PROPN NNP _ 4 compound _ _ 4 Jr _ PROPN NNP _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Estes _ PROPN NNP _ 2 compound _ _ 2 Park _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Colo _ PROPN NNP _ 2 appos _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 Friday _ PROPN NNP _ 5 compound _ _ 4 the _ DET DT _ 5 det _ _ 5 13th _ PROPN JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 11 nsubj _ _ 11 plummeted _ VERB VBD _ 5 conj _ _ 12 nearly _ ADV RB _ 13 advmod _ _ 13 200 _ NUM CD _ 14 nummod _ _ 14 points _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Just _ ADV RB _ 3 advmod _ _ 2 a _ DET DT _ 3 det _ _ 3 coincidence _ NOUN NN _ 0 root _ _ 4 ? _ PUNCT . _ 3 punct _ _ 1 Or _ CONJ CC _ 11 cc _ _ 2 is _ VERB VBZ _ 11 aux _ _ 3 triskaidekaphobia _ NOUN NN _ 11 nsubj _ _ 4 -- _ PUNCT : _ 5 punct _ _ 5 fear _ NOUN NN _ 3 dep _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 number _ NOUN NN _ 5 nmod _ _ 9 13 _ NUM CD _ 8 dep _ _ 10 -- _ PUNCT : _ 5 punct _ _ 11 justified _ VERB JJ _ 0 root _ _ 12 ? _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 academia _ NOUN NN _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 a _ DET DT _ 9 det _ _ 5 so-called _ ADJ JJ _ 9 amod _ _ 6 Friday _ PROPN NNP _ 9 dep _ _ 7 the _ DET DT _ 6 det _ _ 8 13th _ PROPN JJ _ 6 dep _ _ 9 effect _ NOUN NN _ 12 nsubjpass _ _ 10 has _ AUX VBZ _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 set _ VERB VBN _ 0 root _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 and _ CONJ CC _ 12 cc _ _ 15 shot _ VERB VBN _ 12 conj _ _ 16 down _ ADP RB _ 15 compound:prt _ _ 17 by _ ADP IN _ 19 case _ _ 18 different _ ADJ JJ _ 19 amod _ _ 19 professors _ NOUN NNS _ 12 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 Robert _ PROPN NNP _ 2 compound _ _ 2 Kolb _ PROPN NNP _ 16 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Ricardo _ PROPN NNP _ 5 compound _ _ 5 Rodriguez _ PROPN NNP _ 2 conj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 professors _ NOUN NNS _ 2 appos _ _ 8 of _ ADP IN _ 9 case _ _ 9 finance _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 University _ PROPN NNP _ 7 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 Miami _ PROPN NNP _ 12 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 found _ VERB VBD _ 0 root _ _ 17 evidence _ NOUN NN _ 16 dobj _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 22 nsubjpass _ _ 21 is _ AUX VBZ _ 22 auxpass _ _ 22 spooked _ VERB VBN _ 17 ccomp _ _ 23 by _ ADP IN _ 26 case _ _ 24 Friday _ PROPN NNP _ 26 compound _ _ 25 the _ DET DT _ 26 det _ _ 26 13th _ PROPN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 their _ PRON PRP$ _ 3 nmod:poss _ _ 3 study _ NOUN NN _ 14 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 spanned _ VERB VBD _ 3 acl:relcl _ _ 7 the _ DET DT _ 9 det _ _ 8 1962-85 _ NUM CD _ 9 nummod _ _ 9 period _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 has _ AUX VBZ _ 14 aux _ _ 12 since _ ADV IN _ 14 advmod _ _ 13 been _ AUX VBN _ 14 auxpass _ _ 14 shown _ VERB VBN _ 0 root _ _ 15 to _ PART TO _ 17 mark _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 jinxed _ VERB VBN _ 14 xcomp _ _ 18 by _ ADP IN _ 21 case _ _ 19 an _ DET DT _ 21 det _ _ 20 unlucky _ ADJ JJ _ 21 amod _ _ 21 choice _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 data _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 '70s _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 took _ VERB VBD _ 0 root _ _ 8 falls _ NOUN VBZ _ 7 dobj _ _ 9 nine _ NUM CD _ 10 nummod _ _ 10 times _ NOUN NNS _ 7 nmod:tmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 row _ NOUN NN _ 10 nmod _ _ 14 on _ ADP IN _ 17 case _ _ 15 Friday _ PROPN NNP _ 17 compound _ _ 16 the _ DET DT _ 17 det _ _ 17 you-know-what _ NOUN NN _ 7 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 date _ NOUN NN _ 4 nsubj _ _ 4 tends _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 8 mark _ _ 6 be _ VERB VB _ 8 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 plus _ NOUN CC _ 4 xcomp _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 not _ ADV RB _ 12 neg _ _ 11 a _ DET DT _ 12 det _ _ 12 minus _ NOUN NN _ 8 appos _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 for _ ADP IN _ 15 case _ _ 15 stocks _ NOUN NNS _ 8 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 according _ VERB VBG _ 20 case _ _ 18 to _ ADP TO _ 17 mwe _ _ 19 Yale _ PROPN NNP _ 20 compound _ _ 20 Hirsch _ PROPN NNP _ 4 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 23 det _ _ 23 collector _ NOUN NN _ 20 appos _ _ 24 of _ ADP IN _ 27 case _ _ 25 stock _ NOUN NN _ 27 compound _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 lore _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Another _ DET DT _ 2 det _ _ 2 study _ NOUN NN _ 3 nsubj _ _ 3 found _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 14 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 82 _ NUM CD _ 14 nsubj _ _ 7 Fridays _ PROPN NNS _ 6 dep _ _ 8 the _ DET DT _ 7 det _ _ 9 13th _ ADJ NN _ 7 amod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 1940-1987 _ NUM CD _ 13 nummod _ _ 13 period _ NOUN NN _ 6 nmod _ _ 14 had _ VERB VBD _ 3 ccomp _ _ 15 higher _ ADJ JJR _ 17 dep _ _ 16 than _ ADP IN _ 17 dep _ _ 17 average _ ADJ JJ _ 18 amod _ _ 18 returns _ NOUN NNS _ 14 dobj _ _ 19 -- _ PUNCT : _ 18 punct _ _ 20 higher _ ADJ JJR _ 21 dep _ _ 21 even _ ADV RB _ 18 amod _ _ 22 than _ ADP IN _ 23 case _ _ 23 Fridays _ PROPN NNS _ 21 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 general _ ADJ JJ _ 23 acl _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 which _ PRON WDT _ 28 nsubj _ _ 28 tend _ VERB VBP _ 23 acl:relcl _ _ 29 to _ PART TO _ 32 mark _ _ 30 be _ VERB VB _ 32 cop _ _ 31 strong _ ADJ JJ _ 32 amod _ _ 32 days _ NOUN NNS _ 28 xcomp _ _ 33 for _ ADP IN _ 35 case _ _ 34 stock _ NOUN NN _ 35 compound _ _ 35 prices _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 On _ ADP IN _ 7 case _ _ 2 the _ DET DT _ 7 det _ _ 3 only _ ADJ JJ _ 7 amod _ _ 4 other _ ADJ JJ _ 7 amod _ _ 5 Friday _ PROPN NNP _ 7 compound _ _ 6 the _ DET DT _ 7 det _ _ 7 13th _ PROPN JJ _ 16 nmod _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 7 nmod:tmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 15 det _ _ 12 Dow _ PROPN NNP _ 15 compound _ _ 13 Jones _ PROPN NNP _ 15 compound _ _ 14 Industrial _ PROPN NNP _ 15 compound _ _ 15 Average _ PROPN NNP _ 16 nsubj _ _ 16 rose _ VERB VBD _ 0 root _ _ 17 about _ ADV IN _ 18 advmod _ _ 18 four _ NUM CD _ 19 nummod _ _ 19 points _ NOUN NNS _ 16 dobj _ _ 20 . _ PUNCT . _ 16 punct _ _ 1 Professor _ PROPN NNP _ 2 compound _ _ 2 Kolb _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 original _ ADJ JJ _ 6 amod _ _ 6 study _ NOUN NN _ 17 nsubjpass _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 titled _ VERB VBN _ 6 acl _ _ 9 Friday _ PROPN NNP _ 11 compound _ _ 10 the _ DET DT _ 11 det _ _ 11 13th _ PROPN JJ _ 8 xcomp _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Part _ PROPN NNP _ 14 compound _ _ 14 VII _ PROPN NNP _ 11 appos _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 published _ VERB VBN _ 3 ccomp _ _ 18 tongue-in-cheek _ ADV JJ _ 17 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 similar _ ADJ JJ _ 4 amod _ _ 4 vein _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 adds _ VERB VBZ _ 0 root _ _ 8 that _ SCONJ IN _ 22 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 anniversary _ NOUN NN _ 22 nsubj _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 1987 _ NUM CD _ 14 nummod _ _ 14 crash _ NOUN NN _ 10 nmod _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 Saturday _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 full _ ADJ JJ _ 19 amod _ _ 19 moon _ NOUN NN _ 10 conj _ _ 20 could _ AUX MD _ 22 aux _ _ 21 have _ AUX VB _ 22 aux _ _ 22 played _ VERB VBN _ 7 ccomp _ _ 23 a _ DET DT _ 24 det _ _ 24 part _ NOUN NN _ 22 dobj _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 too _ ADV RB _ 22 advmod _ _ 27 , _ PUNCT , _ 22 punct _ _ 28 in _ ADP IN _ 32 case _ _ 29 Friday _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 market _ NOUN NN _ 32 compound _ _ 32 activity _ NOUN NN _ 22 nmod _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 reminiscent _ ADJ JJ _ 0 root _ _ 2 of _ ADP IN _ 3 case _ _ 3 those _ PRON DT _ 1 nmod _ _ 4 during _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 crash _ NOUN NN _ 3 nmod _ _ 8 -- _ PUNCT : _ 1 punct _ _ 9 that _ SCONJ IN _ 28 mark _ _ 10 as _ SCONJ IN _ 13 mark _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 prices _ NOUN NNS _ 13 nsubj _ _ 13 plummeted _ VERB VBD _ 28 advcl _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 trading _ NOUN NN _ 16 compound _ _ 16 activity _ NOUN NN _ 17 nsubj _ _ 17 escalated _ VERB VBD _ 13 conj _ _ 18 , _ PUNCT , _ 28 punct _ _ 19 some _ DET DT _ 21 det _ _ 20 phone _ NOUN NN _ 21 compound _ _ 21 calls _ NOUN VBZ _ 28 nsubj _ _ 22 to _ ADP TO _ 24 case _ _ 23 market _ NOUN NN _ 24 compound _ _ 24 makers _ NOUN NNS _ 21 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 over-the-counter _ ADJ JJ _ 27 amod _ _ 27 stocks _ NOUN NNS _ 24 nmod _ _ 28 went _ VERB VBD _ 1 parataxis _ _ 29 unanswered _ ADJ JJ _ 28 xcomp _ _ 30 . _ PUNCT . _ 1 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 could _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 get _ VERB VB _ 13 ccomp _ _ 6 dealers _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 answer _ VERB VB _ 5 xcomp _ _ 9 their _ PRON PRP$ _ 10 nmod:poss _ _ 10 phones _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Robert _ PROPN NNP _ 15 compound _ _ 15 King _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 senior _ ADJ JJ _ 19 amod _ _ 18 vice _ NOUN NN _ 19 compound _ _ 19 president _ NOUN NN _ 15 appos _ _ 20 of _ ADP IN _ 22 case _ _ 21 OTC _ PROPN NNP _ 22 compound _ _ 22 trading _ NOUN NN _ 19 nmod _ _ 23 at _ ADP IN _ 25 case _ _ 24 Robinson-Humphrey _ PROPN NNP _ 25 compound _ _ 25 Co. _ PROPN NNP _ 19 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 Atlanta _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 8 nsubj _ _ 3 was _ VERB VBD _ 8 cop _ _ 4 -LCB- _ PUNCT -LRB- _ 5 punct _ _ 5 like _ ADP IN _ 8 dep _ _ 6 -RCB- _ PUNCT -RRB- _ 5 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Friday _ PROPN NNP _ 0 root _ _ 9 before _ ADP IN _ 11 case _ _ 10 Black _ PROPN NNP _ 11 compound _ _ 11 Monday _ PROPN NNP _ 8 nmod _ _ 12 '' _ PUNCT '' _ 8 punct _ _ 13 two _ NUM CD _ 14 nummod _ _ 14 years _ NOUN NNS _ 15 nmod:npmod _ _ 15 ago _ ADV RB _ 8 advmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Whether _ SCONJ IN _ 5 mark _ _ 2 unanswered _ ADJ JJ _ 4 amod _ _ 3 phone _ NOUN NN _ 4 compound _ _ 4 calls _ NOUN NNS _ 5 nsubj _ _ 5 had _ VERB VBD _ 13 advcl _ _ 6 any _ DET DT _ 7 det _ _ 7 effect _ NOUN NN _ 5 dobj _ _ 8 or _ CONJ CC _ 5 cc _ _ 9 not _ ADV RB _ 5 conj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Nasdaq _ PROPN NNP _ 12 compound _ _ 12 stocks _ NOUN NNS _ 13 nsubj _ _ 13 sank _ VERB VBD _ 0 root _ _ 14 far _ ADV RB _ 15 advmod _ _ 15 less _ ADV JJR _ 13 advmod _ _ 16 than _ ADP IN _ 17 case _ _ 17 those _ PRON DT _ 15 nmod _ _ 18 on _ ADP IN _ 24 case _ _ 19 the _ DET DT _ 24 det _ _ 20 New _ PROPN NNP _ 21 compound _ _ 21 York _ PROPN NNP _ 24 compound _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 American _ PROPN NNP _ 21 conj _ _ 24 exchanges _ NOUN NNS _ 17 nmod _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 Nonetheless _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 Nasdaq _ PROPN NNP _ 6 compound _ _ 5 Composite _ PROPN NNP _ 6 compound _ _ 6 Index _ PROPN NNP _ 7 nsubj _ _ 7 suffered _ VERB VBD _ 0 root _ _ 8 its _ PRON PRP$ _ 11 nmod:poss _ _ 9 biggest _ ADJ JJS _ 11 amod _ _ 10 point _ NOUN NN _ 11 compound _ _ 11 decline _ NOUN NN _ 7 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 11 nmod _ _ 15 and _ CONJ CC _ 11 cc _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 sixth _ ADJ JJ _ 11 conj _ _ 18 worst _ ADJ JJS _ 17 dep _ _ 19 ever _ ADV RB _ 17 advmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 diving _ VERB JJ _ 7 advcl _ _ 22 14.90 _ NUM CD _ 21 dobj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 3 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 22 conj _ _ 27 , _ PUNCT , _ 22 punct _ _ 28 to _ ADP TO _ 29 case _ _ 29 467.29 _ NUM CD _ 21 nmod _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 Ten _ NUM CD _ 2 nummod _ _ 2 points _ NOUN NNS _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 drop _ NOUN NN _ 2 nmod _ _ 6 occurred _ VERB VBD _ 0 root _ _ 7 during _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 last _ ADJ JJ _ 11 amod _ _ 10 45 _ NUM CD _ 11 nummod _ _ 11 minutes _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 trading _ VERB NN _ 11 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 comparison _ NOUN NN _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 the _ DET DT _ 9 det _ _ 5 New _ PROPN NNP _ 9 compound _ _ 6 York _ PROPN NNP _ 9 compound _ _ 7 Stock _ PROPN NNP _ 9 compound _ _ 8 Exchange _ PROPN NNP _ 9 compound _ _ 9 Composite _ PROPN NNP _ 10 nsubj _ _ 10 tumbled _ VERB VBD _ 0 root _ _ 11 5.8 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 the _ DET DT _ 19 det _ _ 16 American _ PROPN NNP _ 19 compound _ _ 17 Stock _ PROPN NNP _ 19 compound _ _ 18 Exchange _ PROPN NNP _ 19 compound _ _ 19 Composite _ PROPN NNP _ 20 nsubj _ _ 20 fell _ VERB VBD _ 10 conj _ _ 21 4 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 20 dobj _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Oct. _ PROPN NNP _ 10 nmod _ _ 3 16 _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 1987 _ NUM CD _ 2 nummod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 9 det _ _ 8 Nasdaq _ PROPN NNP _ 9 compound _ _ 9 Composite _ PROPN NNP _ 10 nsubj _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 16.18 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 3.8 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 conj _ _ 17 , _ PUNCT , _ 10 punct _ _ 18 followed _ VERB VBN _ 10 advcl _ _ 19 by _ ADP IN _ 27 case _ _ 20 its _ PRON PRP$ _ 27 nmod:poss _ _ 21 devastating _ ADJ JJ _ 27 amod _ _ 22 46.12-point _ ADJ NN _ 27 amod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 11 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 22 conj _ _ 27 slide _ NOUN NN _ 18 nmod _ _ 28 , _ PUNCT , _ 18 punct _ _ 29 three _ NUM CD _ 30 nummod _ _ 30 days _ NOUN NNS _ 31 nmod:npmod _ _ 31 later _ ADV RB _ 18 advmod _ _ 32 . _ PUNCT . _ 10 punct _ _ 1 Nasdaq _ PROPN NNP _ 2 compound _ _ 2 volume _ NOUN NN _ 4 nsubj _ _ 3 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 4 totaled _ VERB VBD _ 0 root _ _ 5 167.7 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 7 nummod _ _ 7 shares _ NOUN NNS _ 4 dobj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 which _ PRON WDT _ 15 nsubj _ _ 10 was _ VERB VBD _ 15 cop _ _ 11 only _ ADV RB _ 15 advmod _ _ 12 the _ DET DT _ 15 det _ _ 13 fifth _ ADJ JJ _ 15 amod _ _ 14 busiest _ ADJ JJS _ 13 dep _ _ 15 day _ NOUN NN _ 4 dep _ _ 16 so _ ADV RB _ 17 advmod _ _ 17 far _ ADV RB _ 15 advmod _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 single-day _ ADJ JJ _ 3 amod _ _ 3 record _ NOUN NN _ 9 nsubjpass _ _ 4 of _ ADP IN _ 7 case _ _ 5 288 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 7 nummod _ _ 7 shares _ NOUN NNS _ 3 nmod _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 set _ VERB VBN _ 0 root _ _ 10 on _ ADP IN _ 11 case _ _ 11 Oct. _ PROPN NNP _ 9 nmod _ _ 12 21 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 9 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 There _ ADV EX _ 6 nsubj _ _ 3 was _ VERB VBD _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 a _ DET DT _ 6 det _ _ 6 lot _ NOUN NN _ 20 ccomp _ _ 7 of _ ADP IN _ 8 case _ _ 8 volume _ NOUN NN _ 6 nmod _ _ 9 because _ SCONJ IN _ 13 mark _ _ 10 it _ PRON PRP _ 13 nsubj _ _ 11 was _ VERB VBD _ 13 cop _ _ 12 just _ ADV RB _ 13 advmod _ _ 13 impossible _ ADJ JJ _ 6 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 get _ VERB VB _ 13 xcomp _ _ 16 stock _ NOUN NN _ 17 nsubj _ _ 17 moved _ VERB VBN _ 15 dep _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 E.E. _ PROPN NNP _ 25 compound _ _ 22 `` _ PUNCT `` _ 25 punct _ _ 23 Buzzy _ PROPN NNP _ 25 compound _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 Geduld _ PROPN NNP _ 20 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 president _ NOUN NN _ 25 appos _ _ 28 of _ ADP IN _ 33 case _ _ 29 Herzog _ PROPN NNP _ 33 compound _ _ 30 , _ PUNCT , _ 33 punct _ _ 31 Heine _ PROPN NNP _ 33 appos _ _ 32 , _ PUNCT , _ 33 punct _ _ 33 Geduld _ PROPN NNP _ 27 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 a _ DET DT _ 38 det _ _ 36 New _ PROPN NNP _ 38 compound _ _ 37 York _ PROPN NNP _ 38 compound _ _ 38 company _ NOUN NN _ 33 appos _ _ 39 that _ PRON WDT _ 40 nsubj _ _ 40 makes _ VERB VBZ _ 38 acl:relcl _ _ 41 markets _ NOUN NNS _ 40 dobj _ _ 42 in _ ADP IN _ 43 case _ _ 43 thousands _ NOUN NNS _ 40 nmod _ _ 44 of _ ADP IN _ 46 case _ _ 45 OTC _ PROPN NNP _ 46 compound _ _ 46 issues _ NOUN NNS _ 43 nmod _ _ 47 . _ PUNCT . _ 20 punct _ _ 1 Most _ ADJ JJS _ 9 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 complaints _ NOUN NNS _ 1 nmod _ _ 5 about _ ADP IN _ 8 case _ _ 6 unanswered _ ADJ JJ _ 8 amod _ _ 7 phone _ NOUN NN _ 8 compound _ _ 8 calls _ NOUN NNS _ 4 nmod _ _ 9 came _ VERB VBD _ 0 root _ _ 10 from _ ADP IN _ 12 case _ _ 11 regional _ ADJ JJ _ 12 amod _ _ 12 brokers _ NOUN NNS _ 9 nmod _ _ 13 rather _ ADV RB _ 12 cc _ _ 14 than _ ADP IN _ 13 mwe _ _ 15 individual _ ADJ JJ _ 16 amod _ _ 16 investors _ NOUN NNS _ 12 conj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 King _ PROPN NNP _ 8 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 Robinson-Humphrey _ PROPN NNP _ 2 nmod _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 others _ NOUN NNS _ 2 conj _ _ 7 were _ VERB VBD _ 8 cop _ _ 8 quick _ ADJ JJ _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 add _ VERB VB _ 8 xcomp _ _ 11 that _ SCONJ IN _ 13 mark _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 believe _ VERB VBP _ 10 ccomp _ _ 14 the _ DET DT _ 15 det _ _ 15 problem _ NOUN NN _ 16 nsubj _ _ 16 stemmed _ VERB VBD _ 13 ccomp _ _ 17 more _ ADV RBR _ 21 advmod _ _ 18 from _ ADP IN _ 21 case _ _ 19 traders _ NOUN NNS _ 21 nmod:poss _ _ 20 ' _ PART POS _ 19 case _ _ 21 inability _ NOUN NN _ 16 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 handle _ VERB VB _ 21 acl _ _ 24 the _ DET DT _ 25 det _ _ 25 volume _ NOUN NN _ 23 dobj _ _ 26 of _ ADP IN _ 27 case _ _ 27 calls _ NOUN NNS _ 25 nmod _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 rather _ ADV RB _ 21 cc _ _ 30 than _ ADP IN _ 29 mwe _ _ 31 a _ DET DT _ 33 det _ _ 32 deliberate _ ADJ JJ _ 33 amod _ _ 33 attempt _ NOUN NN _ 21 conj _ _ 34 to _ PART TO _ 35 mark _ _ 35 avoid _ VERB VB _ 33 acl _ _ 36 making _ VERB VBG _ 35 xcomp _ _ 37 trades _ NOUN NNS _ 36 dobj _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 subject _ NOUN NN _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 sore _ ADJ JJ _ 6 amod _ _ 6 one _ NUM CD _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 Nasdaq _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 its _ PRON PRP$ _ 12 nmod:poss _ _ 11 market-making _ ADJ NN _ 12 amod _ _ 12 companies _ NOUN NNS _ 8 conj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 17 nsubjpass _ _ 15 were _ AUX VBD _ 17 auxpass _ _ 16 widely _ ADV RB _ 17 advmod _ _ 17 criticized _ VERB VBN _ 12 acl:relcl _ _ 18 two _ NUM CD _ 19 nummod _ _ 19 years _ NOUN NNS _ 20 nmod:npmod _ _ 20 ago _ ADV RB _ 17 advmod _ _ 21 following _ VERB VBG _ 22 case _ _ 22 complaints _ NOUN NNS _ 17 nmod _ _ 23 from _ ADP IN _ 24 case _ _ 24 investors _ NOUN NNS _ 22 nmod _ _ 25 who _ PRON WP _ 28 nsubj _ _ 26 could _ AUX MD _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 reach _ VERB VB _ 24 acl:relcl _ _ 29 their _ PRON PRP$ _ 30 nmod:poss _ _ 30 brokers _ NOUN NNS _ 28 dobj _ _ 31 or _ CONJ CC _ 28 cc _ _ 32 trade _ VERB NN _ 28 conj _ _ 33 in _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 chaos _ NOUN NN _ 28 nmod _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 crash _ NOUN NN _ 35 nmod _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 Peter _ PROPN NNP _ 2 compound _ _ 2 DaPuzzo _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 head _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 retail _ ADJ JJ _ 8 amod _ _ 7 equity _ NOUN NN _ 8 compound _ _ 8 trading _ NOUN NN _ 4 nmod _ _ 9 at _ ADP IN _ 12 case _ _ 10 Shearson _ PROPN NNP _ 12 compound _ _ 11 Lehman _ PROPN NNP _ 12 compound _ _ 12 Hutton _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 declared _ VERB VBD _ 0 root _ _ 15 : _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 21 punct _ _ 17 It _ PRON PRP _ 21 nsubj _ _ 18 was _ VERB VBD _ 21 cop _ _ 19 the _ DET DT _ 21 det _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 hour _ NOUN NN _ 14 ccomp _ _ 22 of _ ADP IN _ 23 case _ _ 23 trading _ NOUN NN _ 21 nmod _ _ 24 on _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 Friday _ PROPN NNP _ 21 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 too _ ADV RB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 phones _ NOUN NNS _ 2 nsubj _ _ 6 ringing _ VERB VBG _ 5 acl _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 too _ ADV RB _ 9 advmod _ _ 9 many _ ADJ JJ _ 10 amod _ _ 10 things _ NOUN NNS _ 5 conj _ _ 11 happening _ VERB VBG _ 10 acl _ _ 12 to _ PART TO _ 13 mark _ _ 13 expect _ VERB VB _ 2 advcl _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 makers _ NOUN NNS _ 13 dobj _ _ 16 to _ PART TO _ 19 mark _ _ 17 be _ VERB VB _ 19 cop _ _ 18 as _ ADV IN _ 19 advmod _ _ 19 efficient _ ADJ JJ _ 13 xcomp _ _ 20 as _ ADP IN _ 21 case _ _ 21 robots _ NOUN NNS _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 n't _ PART RB _ 4 neg _ _ 4 intentional _ ADJ JJ _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 we _ PRON PRP _ 9 nsubj _ _ 7 were _ VERB VBD _ 9 cop _ _ 8 all _ ADV DT _ 9 advmod _ _ 9 busy _ ADJ JJ _ 4 parataxis _ _ 10 . _ PUNCT . _ 4 punct _ _ 11 '' _ PUNCT '' _ 4 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Tarantino _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 head _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 7 case _ _ 6 OTC _ PROPN NNP _ 7 compound _ _ 7 trading _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 Hambrecht _ PROPN NNP _ 4 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Quist _ PROPN NNP _ 9 conj _ _ 12 in _ ADP IN _ 14 case _ _ 13 San _ PROPN NNP _ 14 compound _ _ 14 Francisco _ PROPN NNP _ 9 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 It _ PRON PRP _ 21 nsubj _ _ 20 was _ VERB VBD _ 21 cop _ _ 21 just _ ADV RB _ 16 ccomp _ _ 22 like _ ADP IN _ 21 case _ _ 23 two _ NUM CD _ 24 nummod _ _ 24 years _ NOUN NNS _ 25 nmod:npmod _ _ 25 ago _ ADV RB _ 21 dep _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 Everybody _ NOUN NN _ 3 nsubj _ _ 2 was _ AUX VBD _ 3 aux _ _ 3 trying _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 do _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 8 det _ _ 7 same _ ADJ JJ _ 8 amod _ _ 8 thing _ NOUN NN _ 5 dobj _ _ 9 at _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 same _ ADJ JJ _ 12 amod _ _ 12 time _ NOUN NN _ 5 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 Jeremiah _ PROPN NNP _ 2 compound _ _ 2 Mullins _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 7 det _ _ 5 OTC _ PROPN NNP _ 7 compound _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 chief _ NOUN NN _ 2 appos _ _ 8 at _ ADP IN _ 11 case _ _ 9 Dean _ PROPN NNP _ 11 compound _ _ 10 Witter _ PROPN NNP _ 11 compound _ _ 11 Reynolds _ PROPN NNP _ 7 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 proudly _ ADV RB _ 16 advmod _ _ 18 that _ SCONJ IN _ 21 mark _ _ 19 his _ PRON PRP$ _ 20 nmod:poss _ _ 20 company _ NOUN NN _ 21 nsubj _ _ 21 executed _ VERB VBD _ 16 ccomp _ _ 22 every _ DET DT _ 23 det _ _ 23 order _ NOUN NN _ 21 dobj _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 received _ VERB VBD _ 23 acl:relcl _ _ 26 by _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 close _ NOUN NN _ 21 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 trading _ NOUN NN _ 28 nmod _ _ 31 . _ PUNCT . _ 16 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 added _ VERB VBD _ 10 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 `` _ PUNCT `` _ 10 punct _ _ 7 you _ PRON PRP _ 10 nsubj _ _ 8 can _ AUX MD _ 10 aux _ _ 9 only _ ADV RB _ 10 advmod _ _ 10 take _ VERB VB _ 0 root _ _ 11 one _ NUM CD _ 12 nummod _ _ 12 call _ NOUN NN _ 10 dobj _ _ 13 at _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 17 '' _ PUNCT '' _ 10 punct _ _ 1 Market _ NOUN NN _ 2 compound _ _ 2 makers _ NOUN NNS _ 3 nsubj _ _ 3 keep _ VERB VBP _ 0 root _ _ 4 supplies _ NOUN NNS _ 3 dobj _ _ 5 of _ ADP IN _ 6 case _ _ 6 stock _ NOUN NN _ 4 nmod _ _ 7 on _ ADP IN _ 8 case _ _ 8 hand _ NOUN NN _ 3 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 maintain _ VERB VB _ 3 advcl _ _ 11 orderly _ ADJ JJ _ 12 amod _ _ 12 trading _ NOUN NN _ 10 dobj _ _ 13 when _ ADV WRB _ 15 advmod _ _ 14 imbalances _ NOUN NNS _ 15 nsubj _ _ 15 occur _ VERB VBP _ 10 advcl _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 days _ NOUN NNS _ 7 nmod _ _ 3 like _ ADP IN _ 4 case _ _ 4 Friday _ PROPN NNP _ 2 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 that _ PRON WDT _ 7 nsubj _ _ 7 means _ VERB VBZ _ 0 root _ _ 8 they _ PRON PRP _ 10 nsubj _ _ 9 must _ AUX MD _ 10 aux _ _ 10 buy _ VERB VB _ 7 ccomp _ _ 11 shares _ NOUN NNS _ 10 dobj _ _ 12 from _ ADP IN _ 13 case _ _ 13 sellers _ NOUN NNS _ 10 nmod _ _ 14 when _ ADV WRB _ 19 advmod _ _ 15 no _ DET DT _ 16 neg _ _ 16 one _ NOUN NN _ 19 nsubj _ _ 17 else _ ADV RB _ 16 amod _ _ 18 is _ VERB VBZ _ 19 cop _ _ 19 willing _ ADJ JJ _ 10 advcl _ _ 20 to _ PART TO _ 19 xcomp _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 selling _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 frenzied _ ADJ JJ _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 prices _ NOUN NNS _ 8 nsubj _ _ 8 fall _ VERB VBP _ 0 root _ _ 9 steeply _ ADV RB _ 8 advmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 fast _ ADV RB _ 9 conj _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 22 advmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 faced _ VERB VBN _ 22 advcl _ _ 6 with _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 possibility _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 heavy _ ADJ JJ _ 11 amod _ _ 11 losses _ NOUN NNS _ 8 nmod _ _ 12 on _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 stocks _ NOUN NNS _ 11 nmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 inventories _ NOUN NNS _ 14 nmod _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 makers _ NOUN NNS _ 22 nsubj _ _ 21 themselves _ PRON PRP _ 20 nmod:npmod _ _ 22 began _ VERB VBD _ 0 root _ _ 23 dumping _ VERB VBG _ 22 xcomp _ _ 24 shares _ NOUN NNS _ 23 dobj _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 exacerbating _ VERB VBG _ 22 xcomp _ _ 27 the _ DET DT _ 28 det _ _ 28 slide _ NOUN NN _ 26 dobj _ _ 29 in _ ADP IN _ 32 case _ _ 30 OTC _ PROPN NNP _ 32 compound _ _ 31 stock _ NOUN NN _ 32 compound _ _ 32 prices _ NOUN NNS _ 28 nmod _ _ 33 . _ PUNCT . _ 22 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Friday _ PROPN NNP _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 some _ DET DT _ 6 det _ _ 5 market _ NOUN NN _ 6 compound _ _ 6 makers _ NOUN NNS _ 8 nsubj _ _ 7 were _ AUX VBD _ 8 aux _ _ 8 selling _ VERB VBG _ 12 ccomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 traders _ NOUN NNS _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 , _ PUNCT , _ 15 punct _ _ 3 with _ SCONJ IN _ 5 mark _ _ 4 profits _ NOUN NNS _ 5 nsubj _ _ 5 sagging _ VERB VBG _ 15 advcl _ _ 6 on _ ADP IN _ 8 case _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 5 nmod _ _ 9 since _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 crash _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 companies _ NOUN NNS _ 15 nsubj _ _ 14 have _ AUX VBP _ 15 aux _ _ 15 kept _ VERB VBN _ 0 root _ _ 16 smaller _ ADJ JJR _ 18 amod _ _ 17 share _ NOUN NN _ 18 compound _ _ 18 stockpiles _ NOUN NNS _ 15 dobj _ _ 19 on _ ADP IN _ 20 case _ _ 20 hand _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Tarantino _ PROPN NNP _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 Hambrecht _ PROPN NNP _ 2 nmod _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Quist _ PROPN NNP _ 4 conj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 some _ DET DT _ 9 det _ _ 9 prices _ NOUN NNS _ 10 nsubj _ _ 10 fell _ VERB VBD _ 7 ccomp _ _ 11 without _ SCONJ IN _ 13 mark _ _ 12 trades _ NOUN NNS _ 13 nsubj _ _ 13 taking _ VERB VBG _ 10 advcl _ _ 14 place _ NOUN NN _ 13 dobj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 as _ SCONJ IN _ 19 mark _ _ 17 market _ NOUN NN _ 18 compound _ _ 18 makers _ NOUN NNS _ 19 nsubj _ _ 19 kept _ VERB VBD _ 10 advcl _ _ 20 dropping _ VERB VBG _ 19 xcomp _ _ 21 the _ DET DT _ 22 det _ _ 22 prices _ NOUN NNS _ 20 dobj _ _ 23 at _ ADP IN _ 24 case _ _ 24 which _ PRON WDT _ 27 nmod _ _ 25 they _ PRON PRP _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 buy _ VERB VB _ 22 acl:relcl _ _ 28 shares _ NOUN NNS _ 27 dobj _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 Everyone _ NOUN NN _ 4 nsubj _ _ 3 was _ AUX VBD _ 4 aux _ _ 4 hitting _ VERB VBG _ 12 ccomp _ _ 5 everyone _ NOUN NN _ 8 nmod:poss _ _ 6 else _ ADV RB _ 5 amod _ _ 7 's _ PART POS _ 5 case _ _ 8 bid _ NOUN NN _ 4 dobj _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 So _ ADV RB _ 13 advmod _ _ 2 , _ PUNCT , _ 13 punct _ _ 3 while _ SCONJ IN _ 6 mark _ _ 4 OTC _ PROPN NNP _ 5 compound _ _ 5 companies _ NOUN NNS _ 6 nsubj _ _ 6 incurred _ VERB VBN _ 13 advcl _ _ 7 losses _ NOUN NNS _ 6 dobj _ _ 8 on _ ADP IN _ 9 case _ _ 9 Friday _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 trading _ NOUN NN _ 12 compound _ _ 12 officials _ NOUN NNS _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 damage _ NOUN NN _ 19 nsubj _ _ 16 was _ VERB VBD _ 19 cop _ _ 17 n't _ PART RB _ 19 neg _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 bad _ ADJ JJ _ 13 ccomp _ _ 20 as _ SCONJ IN _ 24 mark _ _ 21 it _ PRON PRP _ 24 nsubj _ _ 22 was _ VERB VBD _ 24 cop _ _ 23 in _ ADP IN _ 24 case _ _ 24 1987 _ NUM CD _ 19 dep _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 Two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV IN _ 7 advmod _ _ 5 we _ PRON PRP _ 7 nsubj _ _ 6 were _ AUX VBD _ 7 aux _ _ 7 carrying _ VERB VBG _ 0 root _ _ 8 huge _ ADJ JJ _ 9 amod _ _ 9 inventories _ NOUN NNS _ 7 dobj _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 that _ PRON DT _ 15 nsubj _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 the _ DET DT _ 15 det _ _ 14 big _ ADJ JJ _ 15 amod _ _ 15 culprit _ NOUN NN _ 7 conj _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 know _ VERB VB _ 13 ccomp _ _ 5 of _ ADP IN _ 6 case _ _ 6 anyone _ NOUN NN _ 4 nmod _ _ 7 carrying _ VERB VBG _ 6 acl _ _ 8 big _ ADJ JJ _ 9 amod _ _ 9 inventories _ NOUN NNS _ 7 dobj _ _ 10 now _ ADV RB _ 7 advmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 King _ PROPN NNP _ 13 nsubj _ _ 16 of _ ADP IN _ 17 case _ _ 17 Robinson-Humphrey _ PROPN NNP _ 15 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Tony _ PROPN NNP _ 2 compound _ _ 2 Cecin _ PROPN NNP _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 head _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 7 case _ _ 6 equity _ NOUN NN _ 7 compound _ _ 7 trading _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 Piper _ PROPN NNP _ 4 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Jaffray _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Hopwood _ PROPN NNP _ 9 conj _ _ 14 in _ ADP IN _ 15 case _ _ 15 Minneapolis _ PROPN NNP _ 9 nmod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 Piper _ PROPN NNP _ 20 compound _ _ 20 Jaffray _ PROPN NNP _ 22 nsubj _ _ 21 actually _ ADV RB _ 22 advmod _ _ 22 made _ VERB VBD _ 17 ccomp _ _ 23 money _ NOUN NN _ 22 dobj _ _ 24 on _ ADP IN _ 25 case _ _ 25 Friday _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 17 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 helped _ VERB VBD _ 19 ccomp _ _ 3 that _ SCONJ IN _ 9 mark _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 inventory _ NOUN NN _ 9 nsubj _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 third _ NOUN JJ _ 9 nmod:npmod _ _ 9 smaller _ ADJ JJR _ 2 ccomp _ _ 10 now _ ADV RB _ 9 advmod _ _ 11 than _ SCONJ IN _ 13 mark _ _ 12 it _ PRON PRP _ 13 nsubj _ _ 13 was _ VERB VBD _ 9 advcl _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 years _ NOUN NNS _ 16 nmod:npmod _ _ 16 ago _ ADV RB _ 13 advmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 Joseph _ PROPN NNP _ 2 compound _ _ 2 Hardiman _ PROPN NNP _ 21 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 president _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 National _ PROPN NNP _ 8 compound _ _ 8 Association _ PROPN NNP _ 4 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 Securities _ PROPN NNPS _ 11 compound _ _ 11 Dealers _ PROPN NNPS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 oversees _ VERB VBZ _ 8 acl:relcl _ _ 15 the _ DET DT _ 19 det _ _ 16 Nasdaq _ PROPN NNP _ 19 compound _ _ 17 computerized _ ADJ JJ _ 19 amod _ _ 18 trading _ NOUN NN _ 19 compound _ _ 19 system _ NOUN NN _ 14 dobj _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 31 mark _ _ 23 despite _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 rush _ NOUN NN _ 31 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 selling _ VERB NN _ 25 nmod _ _ 28 , _ PUNCT , _ 31 punct _ _ 29 he _ PRON PRP _ 31 nsubj _ _ 30 never _ ADV RB _ 31 neg _ _ 31 considered _ VERB VBD _ 21 ccomp _ _ 32 the _ DET DT _ 33 det _ _ 33 situation _ NOUN NN _ 36 nsubj _ _ 34 an _ DET DT _ 36 det _ _ 35 `` _ PUNCT `` _ 36 punct _ _ 36 emergency _ NOUN NN _ 31 xcomp _ _ 37 . _ PUNCT . _ 21 punct _ _ 38 '' _ PUNCT '' _ 21 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 pace _ NOUN NN _ 7 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 trading _ NOUN NN _ 3 nmod _ _ 6 was _ VERB VBD _ 7 cop _ _ 7 orderly _ ADJ JJ _ 11 ccomp _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Nasdaq _ PROPN NNP _ 6 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Small _ PROPN JJ _ 6 compound _ _ 4 Order _ PROPN NN _ 6 compound _ _ 5 Execution _ PROPN NNP _ 6 compound _ _ 6 System _ PROPN NNP _ 8 nsubj _ _ 7 `` _ PUNCT `` _ 8 punct _ _ 8 worked _ VERB VBD _ 0 root _ _ 9 beautifully _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 '' _ PUNCT '' _ 8 punct _ _ 12 as _ SCONJ IN _ 13 dep _ _ 13 did _ VERB VBD _ 8 advcl _ _ 14 the _ DET DT _ 16 det _ _ 15 automated _ ADJ JJ _ 16 amod _ _ 16 system _ NOUN NN _ 13 nsubj _ _ 17 for _ ADP IN _ 19 case _ _ 18 larger _ ADJ JJR _ 19 amod _ _ 19 trades _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 according _ VERB VBG _ 24 case _ _ 22 to _ ADP TO _ 21 mwe _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Hardiman _ PROPN NNP _ 8 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Nevertheless _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 shock _ NOUN NN _ 14 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 another _ DET DT _ 8 det _ _ 7 steep _ ADJ JJ _ 8 amod _ _ 8 plunge _ NOUN NN _ 4 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 undoubtedly _ ADV RB _ 14 advmod _ _ 13 will _ AUX MD _ 14 aux _ _ 14 shake _ VERB VB _ 0 root _ _ 15 many _ ADJ JJ _ 16 amod _ _ 16 investors _ NOUN NNS _ 18 nmod:poss _ _ 17 ' _ PART POS _ 16 case _ _ 18 confidence _ NOUN NN _ 14 dobj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 past _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 OTC _ PROPN NNP _ 7 compound _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 thrived _ VERB VBD _ 0 root _ _ 9 on _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 firm _ ADJ NN _ 12 amod _ _ 12 base _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 small-investor _ NOUN JJ _ 15 compound _ _ 15 participation _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Because _ SCONJ IN _ 8 mark _ _ 2 Nasdaq _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 trading _ NOUN NN _ 5 compound _ _ 5 volume _ NOUN NN _ 8 nsubj _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 returned _ VERB VBN _ 18 advcl _ _ 9 to _ ADP TO _ 11 case _ _ 10 pre-crash _ ADJ JJ _ 11 amod _ _ 11 levels _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 traders _ NOUN NNS _ 18 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 OTC _ PROPN NNP _ 17 compound _ _ 16 market _ NOUN NN _ 17 compound _ _ 17 officials _ NOUN NNS _ 13 conj _ _ 18 hope _ VERB VBP _ 0 root _ _ 19 the _ DET DT _ 20 det _ _ 20 damage _ NOUN NN _ 24 nsubj _ _ 21 wo _ AUX MD _ 24 aux _ _ 22 n't _ PART RB _ 24 neg _ _ 23 be _ VERB VB _ 24 cop _ _ 24 permanent _ ADJ JJ _ 18 ccomp _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 they _ PRON PRP _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 worried _ ADJ VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 just _ ADV RB _ 5 advmod _ _ 5 starting _ VERB VBG _ 15 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 get _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 public _ NOUN NN _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 confidence _ NOUN NN _ 7 dobj _ _ 12 back _ ADP RB _ 7 compound:prt _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 lamented _ VERB VBD _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Mullins _ PROPN NNP _ 15 nsubj _ _ 18 of _ ADP IN _ 20 case _ _ 19 Dean _ PROPN NNP _ 20 compound _ _ 20 Witter _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 More _ ADV RBR _ 2 advmod _ _ 2 troubling _ ADJ JJ _ 3 dep _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 prospect _ NOUN NN _ 3 nsubj _ _ 6 that _ SCONJ IN _ 15 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 overall _ ADJ JJ _ 9 amod _ _ 9 collapse _ NOUN NN _ 15 nsubj _ _ 10 in _ ADP IN _ 12 case _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 prices _ NOUN NNS _ 9 nmod _ _ 13 could _ AUX MD _ 15 aux _ _ 14 permanently _ ADV RB _ 15 advmod _ _ 15 erode _ VERB VB _ 5 ccomp _ _ 16 the _ DET DT _ 17 det _ _ 17 base _ NOUN NN _ 15 dobj _ _ 18 of _ ADP IN _ 20 case _ _ 19 small-investor _ NOUN JJ _ 20 compound _ _ 20 support _ NOUN NN _ 17 nmod _ _ 21 the _ DET DT _ 23 det _ _ 22 OTC _ PROPN NNP _ 23 compound _ _ 23 market _ NOUN NN _ 25 nsubj _ _ 24 was _ AUX VBD _ 25 aux _ _ 25 struggling _ VERB VBG _ 17 acl:relcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 rebuild _ VERB VB _ 25 xcomp _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 wake _ NOUN NN _ 27 nmod _ _ 31 of _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 October _ PROPN NNP _ 35 compound _ _ 34 1987 _ NUM CD _ 35 nummod _ _ 35 crash _ NOUN NN _ 30 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Cecin _ PROPN NNP _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Piper _ PROPN NNP _ 5 compound _ _ 5 Jaffray _ PROPN NNP _ 2 nmod _ _ 6 says _ VERB VBZ _ 0 root _ _ 7 some _ DET DT _ 8 det _ _ 8 action _ NOUN NN _ 14 nsubj _ _ 9 from _ ADP IN _ 12 case _ _ 10 government _ NOUN NN _ 12 compound _ _ 11 policy _ NOUN NN _ 12 compound _ _ 12 makers _ NOUN NNS _ 8 nmod _ _ 13 would _ AUX MD _ 14 aux _ _ 14 allay _ VERB VB _ 6 ccomp _ _ 15 investor _ NOUN NN _ 16 compound _ _ 16 fears _ NOUN NNS _ 14 dobj _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 wo _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 take _ VERB VB _ 19 ccomp _ _ 5 much _ ADJ RB _ 4 dobj _ _ 6 more _ ADV JJR _ 5 amod _ _ 7 to _ PART TO _ 9 mark _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 scare _ VERB VB _ 4 advcl _ _ 10 the _ DET DT _ 11 det _ _ 11 hell _ NOUN NN _ 9 dobj _ _ 12 out _ ADP IN _ 9 advmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 retail _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 sellers _ NOUN NNS _ 5 nsubj _ _ 3 on _ ADP IN _ 4 case _ _ 4 Friday _ PROPN NNP _ 5 nmod _ _ 5 came _ VERB VBD _ 0 root _ _ 6 from _ ADP IN _ 8 case _ _ 7 all _ DET DT _ 8 det _ _ 8 corners _ NOUN NNS _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 OTC _ PROPN NNP _ 12 compound _ _ 12 market _ NOUN NN _ 8 nmod _ _ 13 -- _ PUNCT : _ 5 punct _ _ 14 big _ ADJ JJ _ 18 amod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 small _ ADJ JJ _ 14 conj _ _ 17 institutional _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 5 dobj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 as _ ADV RB _ 18 cc _ _ 21 well _ ADV RB _ 20 mwe _ _ 22 as _ ADP IN _ 20 mwe _ _ 23 individual _ ADJ JJ _ 24 amod _ _ 24 investors _ NOUN NNS _ 18 conj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 makers _ NOUN NNS _ 24 conj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 grateful _ ADJ JJ _ 3 amod _ _ 3 traders _ NOUN NNS _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 sell _ NOUN NN _ 7 compound _ _ 7 orders _ NOUN NNS _ 9 nsubj _ _ 8 generally _ ADV RB _ 9 advmod _ _ 9 ranged _ VERB VBD _ 4 ccomp _ _ 10 from _ ADP IN _ 12 case _ _ 11 20,000 _ NUM CD _ 12 nummod _ _ 12 shares _ NOUN NNS _ 9 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 50,000 _ NUM CD _ 15 nummod _ _ 15 shares _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 compared _ VERB VBN _ 19 case _ _ 18 with _ ADP IN _ 19 case _ _ 19 blocks _ NOUN NNS _ 9 advcl _ _ 20 of _ ADP IN _ 22 case _ _ 21 500,000 _ NUM CD _ 22 nummod _ _ 22 shares _ NOUN NNS _ 19 nmod _ _ 23 or _ CONJ CC _ 24 cc _ _ 24 more _ ADJ JJR _ 22 nummod _ _ 25 two _ NUM CD _ 26 nummod _ _ 26 years _ NOUN NNS _ 27 nmod:npmod _ _ 27 ago _ ADV RB _ 19 advmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Shearson _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 DaPuzzo _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 retail _ ADJ JJ _ 7 amod _ _ 7 investors _ NOUN NNS _ 9 nsubj _ _ 8 nervously _ ADV RB _ 9 advmod _ _ 9 sold _ VERB VBD _ 5 ccomp _ _ 10 stock _ NOUN NN _ 9 dobj _ _ 11 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 never _ ADV RB _ 14 neg _ _ 14 returned _ VERB VBD _ 9 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 bargain-hunt _ VERB VB _ 14 xcomp _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 Institutional _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 24 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 7 nsubj _ _ 5 had _ AUX VBD _ 7 aux _ _ 6 been _ AUX VBN _ 7 aux _ _ 7 selling _ VERB VBG _ 2 acl:relcl _ _ 8 stock _ NOUN NN _ 7 dobj _ _ 9 throughout _ ADP IN _ 11 case _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 week _ NOUN NN _ 7 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 lock _ VERB VB _ 7 advcl _ _ 14 in _ ADP RP _ 13 compound:prt _ _ 15 handsome _ ADJ JJ _ 16 amod _ _ 16 gains _ NOUN NNS _ 13 dobj _ _ 17 made _ VERB VBN _ 16 acl _ _ 18 through _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 17 nmod _ _ 22 , _ PUNCT , _ 2 punct _ _ 23 were _ VERB VBD _ 24 cop _ _ 24 calmer _ ADJ JJR _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 had _ VERB VBD _ 21 ccomp _ _ 4 a _ DET DT _ 6 det _ _ 5 good _ ADJ JJ _ 6 amod _ _ 6 amount _ NOUN NN _ 3 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 selling _ VERB VBG _ 6 nmod _ _ 9 from _ ADP IN _ 10 case _ _ 10 institutions _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 not _ ADV RB _ 16 neg _ _ 14 as _ ADP RB _ 15 dep _ _ 15 much _ ADJ JJ _ 16 amod _ _ 16 panic _ NOUN NN _ 6 conj _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 '' _ PUNCT '' _ 21 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 DaPuzzo _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 If _ SCONJ IN _ 6 mark _ _ 3 they _ PRON PRP _ 6 nsubj _ _ 4 could _ AUX MD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 sell _ VERB VB _ 11 advcl _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 some _ DET DT _ 11 nsubj _ _ 9 of _ ADP IN _ 10 case _ _ 10 them _ PRON PRP _ 8 nmod _ _ 11 put _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 shares _ NOUN NNS _ 11 dobj _ _ 14 back _ ADV RB _ 11 advmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 shelf _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 19 '' _ PUNCT '' _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 said _ VERB VBD _ 11 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 some _ DET DT _ 10 det _ _ 8 bigger _ ADJ JJR _ 10 amod _ _ 9 institutional _ ADJ JJ _ 10 amod _ _ 10 investors _ NOUN NNS _ 11 nsubj _ _ 11 placed _ VERB VBD _ 0 root _ _ 12 bids _ NOUN NNS _ 11 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 buy _ VERB VB _ 12 acl _ _ 15 some _ DET DT _ 17 det _ _ 16 OTC _ PROPN NNP _ 17 compound _ _ 17 stocks _ NOUN NNS _ 14 dobj _ _ 18 whose _ PRON WP$ _ 19 nmod:poss _ _ 19 prices _ NOUN NNS _ 21 nsubjpass _ _ 20 were _ AUX VBD _ 21 auxpass _ _ 21 beaten _ VERB VBN _ 17 acl:relcl _ _ 22 down _ ADP RB _ 21 compound:prt _ _ 23 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 DaPuzzo _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 computer-guided _ ADJ JJ _ 9 amod _ _ 8 program _ NOUN NN _ 9 compound _ _ 9 selling _ NOUN NN _ 29 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 OTC _ PROPN NNP _ 12 compound _ _ 12 stocks _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 Russell _ PROPN NNP _ 16 compound _ _ 16 Index _ PROPN NNP _ 12 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 2000 _ NUM CD _ 20 nummod _ _ 19 small _ ADJ JJ _ 20 amod _ _ 20 stocks _ NOUN NNS _ 16 nmod _ _ 21 and _ CONJ CC _ 16 cc _ _ 22 the _ DET DT _ 23 det _ _ 23 Standard _ PROPN NNP _ 28 nmod:poss _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Poor _ PROPN NNP _ 23 conj _ _ 26 's _ PART POS _ 23 case _ _ 27 500-stock _ PROPN JJ _ 28 compound _ _ 28 Index _ PROPN NN _ 16 conj _ _ 29 sent _ VERB VBD _ 6 ccomp _ _ 30 occasional _ ADJ JJ _ 32 amod _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 waves _ NOUN NNS _ 29 dobj _ _ 33 `` _ PUNCT `` _ 32 punct _ _ 34 through _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 market _ NOUN NN _ 29 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 Nasdaq _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 biggest _ ADJ JJS _ 4 amod _ _ 4 stocks _ NOUN NNS _ 6 nsubjpass _ _ 5 were _ AUX VBD _ 6 auxpass _ _ 6 hammered _ VERB VBN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Nasdaq _ PROPN NNP _ 4 compound _ _ 3 100 _ NUM CD _ 4 nummod _ _ 4 Index _ PROPN NNP _ 18 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 largest _ ADJ JJS _ 9 amod _ _ 8 nonfinancial _ ADJ JJ _ 9 amod _ _ 9 issues _ NOUN NNS _ 4 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 including _ VERB VBG _ 16 case _ _ 12 the _ DET DT _ 16 det _ _ 13 big _ ADJ JJ _ 16 amod _ _ 14 OTC _ PROPN NNP _ 16 compound _ _ 15 technology _ NOUN NN _ 16 compound _ _ 16 issues _ NOUN NNS _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 tumbled _ VERB VBD _ 0 root _ _ 19 4.2 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 or _ CONJ CC _ 20 cc _ _ 23 19.76 _ NUM CD _ 20 conj _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 to _ ADP TO _ 26 case _ _ 26 449.33 _ NUM CD _ 18 nmod _ _ 27 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Nasdaq _ PROPN NNP _ 4 compound _ _ 3 Financial _ PROPN NNP _ 4 compound _ _ 4 Index _ PROPN NNP _ 11 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 giant _ ADJ JJ _ 7 amod _ _ 7 insurance _ NOUN NN _ 4 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 banking _ NOUN NN _ 10 compound _ _ 10 stocks _ NOUN NNS _ 7 conj _ _ 11 dropped _ VERB VBD _ 0 root _ _ 12 2 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 9.31 _ NUM CD _ 13 conj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 to _ ADP TO _ 19 case _ _ 19 462.98 _ NUM CD _ 11 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 OTC _ PROPN NNP _ 3 compound _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 has _ VERB VBZ _ 0 root _ _ 5 only _ ADV RB _ 7 advmod _ _ 6 a _ DET DT _ 7 det _ _ 7 handful _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 takeover-related _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 7 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 sharply _ ADV RB _ 3 advmod _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 McCaw _ PROPN NNP _ 3 compound _ _ 2 Cellular _ PROPN NNP _ 3 compound _ _ 3 Communications _ PROPN NNPS _ 9 nsubj _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 instance _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 offered _ VERB VBN _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 buy _ VERB VB _ 9 xcomp _ _ 12 LIN _ PROPN NNP _ 13 compound _ _ 13 Broadcasting _ PROPN NNP _ 11 dobj _ _ 14 as _ ADV RB _ 13 cc _ _ 15 well _ ADV RB _ 14 mwe _ _ 16 as _ ADP IN _ 14 mwe _ _ 17 Metromedia _ PROPN NNP _ 24 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 New _ PROPN NNP _ 24 compound _ _ 20 York _ PROPN NNP _ 24 compound _ _ 21 City _ PROPN NNP _ 24 compound _ _ 22 cellular _ ADJ JJ _ 24 amod _ _ 23 telephone _ NOUN NN _ 24 compound _ _ 24 interests _ NOUN NNS _ 13 conj _ _ 25 , _ PUNCT , _ 11 punct _ _ 26 and _ CONJ CC _ 11 cc _ _ 27 in _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 separate _ ADJ JJ _ 30 amod _ _ 30 transaction _ NOUN NN _ 32 nmod _ _ 31 , _ PUNCT , _ 32 punct _ _ 32 sell _ VERB VB _ 11 conj _ _ 33 certain _ ADJ JJ _ 35 amod _ _ 34 McCaw _ PROPN NNP _ 35 compound _ _ 35 properties _ NOUN NNS _ 32 dobj _ _ 36 to _ ADP TO _ 38 case _ _ 37 Contel _ PROPN NNP _ 38 compound _ _ 38 Cellular _ PROPN NNP _ 32 nmod _ _ 39 . _ PUNCT . _ 9 punct _ _ 1 McCaw _ PROPN NNP _ 2 nsubj _ _ 2 lost _ VERB VBD _ 0 root _ _ 3 8 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 or _ CONJ CC _ 4 cc _ _ 7 3 _ NUM CD _ 8 compound _ _ 8 1/2 _ NUM CD _ 4 conj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 to _ ADP TO _ 11 case _ _ 11 40 _ NUM CD _ 2 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 LIN _ PROPN NNP _ 2 compound _ _ 2 Broadcasting _ PROPN NNP _ 4 nsubj _ _ 3 , _ PUNCT , _ 4 punct _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 5 _ NUM CD _ 6 compound _ _ 6 1/2 _ NUM CD _ 4 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 or _ CONJ CC _ 6 cc _ _ 9 5 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 6 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 to _ ADP TO _ 14 case _ _ 13 107 _ NUM CD _ 14 compound _ _ 14 1/2 _ NUM CD _ 4 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 turnover _ NOUN NN _ 8 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 both _ DET CC _ 5 det _ _ 5 issues _ NOUN NNS _ 2 nmod _ _ 6 was _ VERB VBD _ 8 cop _ _ 7 roughly _ ADV RB _ 8 advmod _ _ 8 normal _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 day _ NOUN NN _ 25 nmod _ _ 4 when _ ADV WRB _ 10 advmod _ _ 5 negative _ ADJ JJ _ 7 amod _ _ 6 takeover-related _ ADJ JJ _ 7 amod _ _ 7 news _ NOUN NN _ 10 nsubj _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 sit _ VERB VB _ 3 acl:relcl _ _ 11 well _ ADV RB _ 10 advmod _ _ 12 with _ ADP IN _ 13 case _ _ 13 investors _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 25 punct _ _ 15 Commercial _ PROPN JJ _ 16 compound _ _ 16 Intertech _ PROPN NNP _ 25 nsubj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 a _ DET DT _ 19 det _ _ 19 maker _ NOUN NN _ 16 appos _ _ 20 of _ ADP IN _ 23 case _ _ 21 engineered _ ADJ VBN _ 23 amod _ _ 22 metal _ NOUN NN _ 23 compound _ _ 23 parts _ NOUN NNS _ 19 nmod _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Haas _ PROPN NNP _ 29 nsubj _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Partners _ PROPN NNP _ 26 conj _ _ 29 advised _ VERB VBD _ 25 ccomp _ _ 30 it _ PRON PRP _ 29 dobj _ _ 31 that _ SCONJ IN _ 35 mark _ _ 32 it _ PRON PRP _ 35 nsubj _ _ 33 does _ AUX VBZ _ 35 aux _ _ 34 n't _ PART RB _ 35 neg _ _ 35 plan _ VERB VB _ 29 ccomp _ _ 36 to _ PART TO _ 37 mark _ _ 37 pursue _ VERB VB _ 35 xcomp _ _ 38 its _ PRON PRP$ _ 43 nmod:poss _ _ 39 previously _ ADV RB _ 40 advmod _ _ 40 reported _ VERB VBN _ 43 amod _ _ 41 $ _ SYM $ _ 43 amod _ _ 42 27.50-a-share _ ADJ JJ _ 41 dep _ _ 43 bid _ NOUN NN _ 37 dobj _ _ 44 to _ PART TO _ 45 mark _ _ 45 buy _ VERB VB _ 43 acl _ _ 46 the _ DET DT _ 47 det _ _ 47 company _ NOUN NN _ 45 dobj _ _ 48 . _ PUNCT . _ 25 punct _ _ 1 Commercial _ PROPN JJ _ 2 compound _ _ 2 Intertech _ PROPN NNP _ 3 nsubj _ _ 3 plummeted _ VERB VBD _ 0 root _ _ 4 6 _ NUM CD _ 3 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 26 _ NUM CD _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 issues _ NOUN NNS _ 13 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 companies _ NOUN NNS _ 2 nmod _ _ 5 with _ ADP IN _ 6 case _ _ 6 ties _ NOUN NNS _ 4 nmod _ _ 7 to _ ADP TO _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 junk _ NOUN NN _ 11 compound _ _ 10 bond _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 6 nmod _ _ 12 also _ ADV RB _ 13 advmod _ _ 13 tumbled _ VERB VBD _ 0 root _ _ 14 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 13 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 OTC _ PROPN NNP _ 4 compound _ _ 4 market _ NOUN NN _ 19 nmod _ _ 5 , _ PUNCT , _ 19 punct _ _ 6 First _ PROPN NNP _ 7 compound _ _ 7 Executive _ PROPN NNP _ 19 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 big _ ADJ JJ _ 11 amod _ _ 11 buyer _ NOUN NN _ 7 appos _ _ 12 of _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 high-risk _ ADJ JJ _ 17 amod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 high-yield _ ADJ JJ _ 17 amod _ _ 17 issues _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 slid _ VERB VBD _ 0 root _ _ 20 2 _ NUM CD _ 19 dobj _ _ 21 to _ ADP TO _ 23 case _ _ 22 12 _ NUM CD _ 23 compound _ _ 23 1/4 _ NUM CD _ 19 nmod _ _ 24 . _ PUNCT . _ 19 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 other _ ADJ JJ _ 4 amod _ _ 3 OTC _ PROPN NNP _ 4 compound _ _ 4 issues _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Intel _ PROPN NNP _ 8 nsubj _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 dropped _ VERB VBD _ 0 root _ _ 9 2 _ NUM CD _ 10 compound _ _ 10 1/8 _ NUM CD _ 8 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 33 _ NUM CD _ 13 compound _ _ 13 7/8 _ NUM CD _ 8 nmod _ _ 14 ; _ PUNCT : _ 8 punct _ _ 15 Laidlaw _ PROPN NNP _ 16 compound _ _ 16 Transportation _ PROPN NNP _ 17 nsubj _ _ 17 lost _ VERB VBD _ 8 conj _ _ 18 1 _ NUM CD _ 19 compound _ _ 19 1/8 _ NUM CD _ 17 dobj _ _ 20 to _ ADP TO _ 22 case _ _ 21 19 _ NUM CD _ 22 compound _ _ 22 1/2 _ NUM CD _ 17 nmod _ _ 23 ; _ PUNCT : _ 8 punct _ _ 24 the _ DET DT _ 27 det _ _ 25 American _ ADJ JJ _ 27 amod _ _ 26 depositary _ ADJ NN _ 27 amod _ _ 27 receipts _ NOUN NNS _ 35 nsubj _ _ 28 of _ ADP IN _ 29 case _ _ 29 Jaguar _ PROPN NNP _ 27 nmod _ _ 30 were _ VERB VBD _ 35 cop _ _ 31 off _ ADV RB _ 35 advmod _ _ 32 1/4 _ NUM CD _ 31 nmod:npmod _ _ 33 to _ ADP TO _ 35 case _ _ 34 10 _ NUM CD _ 35 compound _ _ 35 1/4 _ NUM CD _ 8 conj _ _ 36 ; _ PUNCT : _ 8 punct _ _ 37 MCI _ PROPN NNP _ 38 compound _ _ 38 Communications _ PROPN NNPS _ 39 nsubj _ _ 39 slipped _ VERB VBD _ 8 conj _ _ 40 2 _ NUM CD _ 41 compound _ _ 41 1/4 _ NUM CD _ 39 dobj _ _ 42 to _ ADP TO _ 44 case _ _ 43 43 _ NUM CD _ 44 compound _ _ 44 1/2 _ NUM CD _ 39 nmod _ _ 45 ; _ PUNCT : _ 8 punct _ _ 46 Apple _ PROPN NNP _ 47 compound _ _ 47 Computer _ PROPN NNP _ 48 nsubj _ _ 48 fell _ VERB VBD _ 8 conj _ _ 49 3 _ NUM CD _ 48 dobj _ _ 50 to _ ADP TO _ 52 case _ _ 51 45 _ NUM CD _ 52 compound _ _ 52 3/4 _ NUM CD _ 48 nmod _ _ 53 and _ CONJ CC _ 8 cc _ _ 54 Nike _ PROPN NNP _ 55 nsubj _ _ 55 dropped _ VERB VBD _ 8 conj _ _ 56 2 _ NUM CD _ 57 compound _ _ 57 1/4 _ NUM CD _ 55 dobj _ _ 58 to _ ADP TO _ 60 case _ _ 59 66 _ NUM CD _ 60 compound _ _ 60 3/4 _ NUM CD _ 55 nmod _ _ 61 . _ PUNCT . _ 8 punct _ _ 1 Friday _ PROPN NNP _ 3 compound _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 October _ PROPN NNP _ 0 root _ _ 4 13 _ NUM CD _ 3 nummod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 1989 _ NUM CD _ 3 nummod _ _ 1 The _ DET DT _ 8 det _ _ 2 key _ ADJ JJ _ 8 amod _ _ 3 U.S. _ PROPN NNP _ 8 compound _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 foreign _ ADJ JJ _ 3 conj _ _ 6 annual _ ADJ JJ _ 8 amod _ _ 7 interest _ NOUN NN _ 8 compound _ _ 8 rates _ NOUN NNS _ 12 nsubj _ _ 9 below _ ADV RB _ 8 advmod _ _ 10 are _ VERB VBP _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 guide _ NOUN NN _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 general _ ADJ JJ _ 15 amod _ _ 15 levels _ NOUN NNS _ 12 nmod _ _ 16 but _ CONJ CC _ 12 cc _ _ 17 do _ AUX VBP _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 always _ ADV RB _ 20 advmod _ _ 20 represent _ VERB VB _ 12 conj _ _ 21 actual _ ADJ JJ _ 22 amod _ _ 22 transactions _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 PRIME _ ADJ JJ _ 2 amod _ _ 2 RATE _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 10 _ NUM CD _ 2 compound _ _ 2 1/2 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 base _ ADJ NN _ 3 amod _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 on _ ADP IN _ 6 case _ _ 5 corporate _ ADJ JJ _ 6 amod _ _ 6 loans _ NOUN NNS _ 3 nmod _ _ 7 at _ ADP IN _ 13 case _ _ 8 large _ ADJ JJ _ 13 amod _ _ 9 U.S. _ PROPN NNP _ 13 compound _ _ 10 money _ NOUN NN _ 13 compound _ _ 11 center _ NOUN NN _ 13 compound _ _ 12 commercial _ ADJ JJ _ 13 amod _ _ 13 banks _ NOUN NNS _ 3 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 FEDERAL _ ADJ JJ _ 2 amod _ _ 2 FUNDS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 8 _ NUM CD _ 2 compound _ _ 2 13/16 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 0 root _ _ 4 high _ ADJ JJ _ 3 amod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 8 _ NUM CD _ 7 compound _ _ 7 1/2 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 3 appos _ _ 9 low _ ADJ JJ _ 8 amod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 8 _ NUM CD _ 12 compound _ _ 12 5/8 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 3 appos _ _ 14 near _ ADP IN _ 16 case _ _ 15 closing _ NOUN NN _ 16 compound _ _ 16 bid _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 8 _ NUM CD _ 19 compound _ _ 19 3/4 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 3 appos _ _ 21 offered _ VERB VBN _ 20 acl _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Reserves _ NOUN NNS _ 0 root _ _ 2 traded _ VERB VBN _ 1 acl _ _ 3 among _ ADP IN _ 5 case _ _ 4 commercial _ ADJ JJ _ 5 amod _ _ 5 banks _ NOUN NNS _ 2 nmod _ _ 6 for _ ADP IN _ 8 case _ _ 7 overnight _ ADJ JJ _ 8 amod _ _ 8 use _ NOUN NN _ 2 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 amounts _ NOUN NNS _ 2 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 1 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 more _ ADJ JJR _ 12 conj _ _ 17 . _ PUNCT . _ 1 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Fulton _ PROPN NNP _ 9 compound _ _ 4 Prebon _ PROPN NNP _ 9 compound _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 U.S.A _ PROPN NNP _ 9 appos _ _ 7 . _ PUNCT . _ 6 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 9 Inc _ PROPN NNP _ 1 dep _ _ 10 . _ PUNCT . _ 1 punct _ _ 1 DISCOUNT _ NOUN NN _ 2 compound _ _ 2 RATE _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 7 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 7 case _ _ 6 depository _ ADJ NN _ 7 amod _ _ 7 institutions _ NOUN NNS _ 4 nmod _ _ 8 by _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 New _ PROPN NNP _ 14 compound _ _ 11 York _ PROPN NNP _ 14 compound _ _ 12 Federal _ PROPN NNP _ 14 compound _ _ 13 Reserve _ PROPN NNP _ 14 compound _ _ 14 Bank _ PROPN NNP _ 2 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 CALL _ NOUN JJ _ 2 compound _ _ 2 MONEY _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 9 _ NUM CD _ 6 compound _ _ 2 3/4 _ NUM CD _ 6 compound _ _ 3 % _ SYM NN _ 6 dep _ _ 4 to _ ADP TO _ 6 dep _ _ 5 10 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 6 case _ _ 6 brokers _ NOUN NNS _ 4 nmod _ _ 7 on _ ADP IN _ 10 case _ _ 8 stock _ NOUN NN _ 10 compound _ _ 9 exchange _ NOUN NN _ 10 compound _ _ 10 collateral _ NOUN NN _ 2 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 placed _ VERB VBN _ 2 acl _ _ 4 directly _ ADV RB _ 3 advmod _ _ 5 by _ ADP IN _ 9 case _ _ 6 General _ PROPN NNP _ 9 compound _ _ 7 Motors _ PROPN NNPS _ 9 compound _ _ 8 Acceptance _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 3 nmod _ _ 10 : _ PUNCT : _ 2 punct _ _ 1 8.60 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 30 _ NUM CD _ 5 compound _ _ 4 to _ ADP TO _ 5 dep _ _ 5 44 _ NUM CD _ 6 nummod _ _ 6 days _ NOUN NNS _ 2 nmod:npmod _ _ 7 ; _ PUNCT : _ 2 punct _ _ 8 8.55 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 2 dep _ _ 10 45 _ NUM CD _ 12 compound _ _ 11 to _ ADP TO _ 12 dep _ _ 12 59 _ NUM CD _ 13 nummod _ _ 13 days _ NOUN NNS _ 9 nmod:npmod _ _ 14 ; _ PUNCT : _ 2 punct _ _ 15 8.375 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 2 dep _ _ 17 60 _ NUM CD _ 19 compound _ _ 18 to _ ADP TO _ 19 dep _ _ 19 79 _ NUM CD _ 20 nummod _ _ 20 days _ NOUN NNS _ 16 nmod:npmod _ _ 21 ; _ PUNCT : _ 2 punct _ _ 22 8.50 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 2 dep _ _ 24 80 _ NUM CD _ 26 compound _ _ 25 to _ ADP TO _ 26 dep _ _ 26 89 _ NUM CD _ 27 nummod _ _ 27 days _ NOUN NNS _ 23 nmod:npmod _ _ 28 ; _ PUNCT : _ 2 punct _ _ 29 8.25 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 2 dep _ _ 31 90 _ NUM CD _ 33 compound _ _ 32 to _ ADP TO _ 33 dep _ _ 33 119 _ NUM CD _ 34 nummod _ _ 34 days _ NOUN NNS _ 30 nmod:npmod _ _ 35 ; _ PUNCT : _ 2 punct _ _ 36 8.125 _ NUM CD _ 37 nummod _ _ 37 % _ SYM NN _ 2 dep _ _ 38 120 _ NUM CD _ 40 compound _ _ 39 to _ ADP TO _ 40 dep _ _ 40 149 _ NUM CD _ 41 nummod _ _ 41 days _ NOUN NNS _ 37 nmod:npmod _ _ 42 ; _ PUNCT : _ 2 punct _ _ 43 8 _ NUM CD _ 44 nummod _ _ 44 % _ SYM NN _ 2 dep _ _ 45 150 _ NUM CD _ 47 compound _ _ 46 to _ ADP TO _ 47 dep _ _ 47 179 _ NUM CD _ 48 nummod _ _ 48 days _ NOUN NNS _ 44 nmod:npmod _ _ 49 ; _ PUNCT : _ 2 punct _ _ 50 7.625 _ NUM CD _ 51 nummod _ _ 51 % _ SYM NN _ 2 dep _ _ 52 180 _ NUM CD _ 54 compound _ _ 53 to _ ADP TO _ 54 dep _ _ 54 270 _ NUM CD _ 55 nummod _ _ 55 days _ NOUN NNS _ 51 nmod:npmod _ _ 56 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 High-grade _ ADJ JJ _ 3 amod _ _ 2 unsecured _ ADJ JJ _ 3 amod _ _ 3 notes _ NOUN NNS _ 0 root _ _ 4 sold _ VERB VBN _ 3 acl _ _ 5 through _ ADP IN _ 6 case _ _ 6 dealers _ NOUN NNS _ 4 nmod _ _ 7 by _ ADP IN _ 9 case _ _ 8 major _ ADJ JJ _ 9 amod _ _ 9 corporations _ NOUN NNS _ 4 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 multiples _ NOUN NNS _ 4 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 1,000 _ NUM CD _ 11 nmod _ _ 15 : _ PUNCT : _ 3 punct _ _ 1 8.65 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 30 _ NUM CD _ 4 nummod _ _ 4 days _ NOUN NNS _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.55 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 60 _ NUM CD _ 9 nummod _ _ 9 days _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.55 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 90 _ NUM CD _ 14 nummod _ _ 14 days _ NOUN NNS _ 12 nmod:npmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 CERTIFICATES _ NOUN NNS _ 0 root _ _ 2 OF _ ADP IN _ 3 case _ _ 3 DEPOSIT _ NOUN NN _ 1 nmod _ _ 4 : _ PUNCT : _ 1 punct _ _ 1 8.15 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 one _ NUM CD _ 4 nummod _ _ 4 month _ NOUN NN _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.15 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 months _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.13 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 months _ NOUN NNS _ 12 nmod:npmod _ _ 15 ; _ PUNCT : _ 2 punct _ _ 16 8.11 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 2 dep _ _ 18 six _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 2 punct _ _ 21 8.08 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 2 dep _ _ 23 one _ NUM CD _ 24 nummod _ _ 24 year _ NOUN NN _ 22 dep _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Average _ NOUN JJ _ 0 root _ _ 2 of _ ADP IN _ 4 case _ _ 3 top _ ADJ JJ _ 4 amod _ _ 4 rates _ NOUN NNS _ 1 nmod _ _ 5 paid _ VERB VBN _ 1 acl _ _ 6 by _ ADP IN _ 10 case _ _ 7 major _ ADJ JJ _ 10 amod _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 York _ PROPN NNP _ 10 compound _ _ 10 banks _ NOUN NNS _ 5 nmod _ _ 11 on _ ADP IN _ 14 case _ _ 12 primary _ ADJ JJ _ 14 amod _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 issues _ NOUN NNS _ 5 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 negotiable _ ADJ JJ _ 17 amod _ _ 17 C.D.s _ NOUN NNS _ 14 nmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 usually _ ADV RB _ 21 advmod _ _ 20 on _ ADP IN _ 21 case _ _ 21 amounts _ NOUN NNS _ 5 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 $ _ SYM $ _ 25 dep _ _ 24 1 _ NUM CD _ 25 nummod _ _ 25 million _ NUM CD _ 21 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 more _ ADJ JJR _ 25 conj _ _ 28 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 minimum _ ADJ JJ _ 3 amod _ _ 3 unit _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 100,000 _ NUM CD _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Typical _ ADJ JJ _ 2 amod _ _ 2 rates _ NOUN NNS _ 0 root _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 secondary _ ADJ JJ _ 6 amod _ _ 6 market _ NOUN NN _ 2 nmod _ _ 7 : _ PUNCT : _ 2 punct _ _ 1 8.65 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 one _ NUM CD _ 4 nummod _ _ 4 month _ NOUN NN _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.65 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 three _ NUM CD _ 9 nummod _ _ 9 months _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.55 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 six _ NUM CD _ 14 nummod _ _ 14 months _ NOUN NNS _ 12 nmod:npmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 BANKERS _ NOUN NNS _ 2 compound _ _ 2 ACCEPTANCES _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 8.52 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 30 _ NUM CD _ 4 nummod _ _ 4 days _ NOUN NNS _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.37 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 60 _ NUM CD _ 9 nummod _ _ 9 days _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.15 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 90 _ NUM CD _ 14 nummod _ _ 14 days _ NOUN NNS _ 12 nmod:npmod _ _ 15 ; _ PUNCT : _ 2 punct _ _ 16 7.98 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 2 dep _ _ 18 120 _ NUM CD _ 19 nummod _ _ 19 days _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 2 punct _ _ 21 7.92 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 2 dep _ _ 23 150 _ NUM CD _ 24 nummod _ _ 24 days _ NOUN NNS _ 22 nmod:npmod _ _ 25 ; _ PUNCT : _ 2 punct _ _ 26 7.80 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 2 dep _ _ 28 180 _ NUM CD _ 29 nummod _ _ 29 days _ NOUN NNS _ 27 nmod:npmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 Negotiable _ ADJ JJ _ 6 amod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 bank-backed _ ADJ JJ _ 6 amod _ _ 4 business _ NOUN NN _ 6 compound _ _ 5 credit _ NOUN NN _ 6 compound _ _ 6 instruments _ NOUN NNS _ 0 root _ _ 7 typically _ ADV RB _ 8 advmod _ _ 8 financing _ VERB VBG _ 6 acl _ _ 9 an _ DET DT _ 11 det _ _ 10 import _ NOUN NN _ 11 compound _ _ 11 order _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 LONDON _ PROPN NNP _ 3 compound _ _ 2 LATE _ ADJ JJ _ 3 amod _ _ 3 EURODOLLARS _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 1 8 _ NUM CD _ 7 compound _ _ 2 13/16 _ NUM CD _ 7 compound _ _ 3 % _ SYM NN _ 7 dep _ _ 4 to _ ADP TO _ 7 dep _ _ 5 8 _ NUM CD _ 7 compound _ _ 6 11/16 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 0 root _ _ 8 one _ NUM CD _ 9 nummod _ _ 9 month _ NOUN NN _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 7 punct _ _ 11 8 _ NUM CD _ 17 compound _ _ 12 13/16 _ NUM CD _ 17 compound _ _ 13 % _ SYM NN _ 17 dep _ _ 14 to _ ADP TO _ 17 dep _ _ 15 8 _ NUM CD _ 17 compound _ _ 16 11/16 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 7 dep _ _ 18 two _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 7 punct _ _ 21 8 _ NUM CD _ 27 compound _ _ 22 13/16 _ NUM CD _ 27 compound _ _ 23 % _ SYM NN _ 27 dep _ _ 24 to _ ADP TO _ 27 dep _ _ 25 8 _ NUM CD _ 27 compound _ _ 26 11/16 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 7 dep _ _ 28 three _ NUM CD _ 29 nummod _ _ 29 months _ NOUN NNS _ 27 nmod:npmod _ _ 30 ; _ PUNCT : _ 7 punct _ _ 31 8 _ NUM CD _ 37 compound _ _ 32 3/4 _ NUM CD _ 37 compound _ _ 33 % _ SYM NN _ 37 dep _ _ 34 to _ ADP TO _ 37 dep _ _ 35 8 _ NUM CD _ 37 compound _ _ 36 5/8 _ NUM CD _ 37 compound _ _ 37 % _ SYM NN _ 7 dep _ _ 38 four _ NUM CD _ 39 nummod _ _ 39 months _ NOUN NNS _ 37 nmod:npmod _ _ 40 ; _ PUNCT : _ 7 punct _ _ 41 8 _ NUM CD _ 47 compound _ _ 42 11/16 _ NUM CD _ 47 compound _ _ 43 % _ SYM NN _ 47 dep _ _ 44 to _ ADP TO _ 47 dep _ _ 45 8 _ NUM CD _ 47 compound _ _ 46 9/16 _ NUM CD _ 47 compound _ _ 47 % _ SYM NN _ 7 dep _ _ 48 five _ NUM CD _ 49 nummod _ _ 49 months _ NOUN NNS _ 47 nmod:npmod _ _ 50 ; _ PUNCT : _ 7 punct _ _ 51 8 _ NUM CD _ 57 compound _ _ 52 5/8 _ NUM CD _ 57 compound _ _ 53 % _ SYM NN _ 57 dep _ _ 54 to _ ADP TO _ 57 dep _ _ 55 8 _ NUM CD _ 57 compound _ _ 56 1/2 _ NUM CD _ 57 compound _ _ 57 % _ SYM NN _ 7 dep _ _ 58 six _ NUM CD _ 59 nummod _ _ 59 months _ NOUN NNS _ 57 nmod:npmod _ _ 60 . _ PUNCT . _ 7 punct _ _ 1 LONDON _ PROPN NNP _ 4 compound _ _ 2 INTERBANK _ ADV NNP _ 4 advmod _ _ 3 OFFERED _ VERB NNP _ 4 amod _ _ 4 RATES _ NOUN NNPS _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 LIBOR _ PROPN NNP _ 4 appos _ _ 7 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 8 : _ PUNCT : _ 4 punct _ _ 1 8 _ NUM CD _ 2 compound _ _ 2 3/4 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 0 root _ _ 4 one _ NUM CD _ 5 nummod _ _ 5 month _ NOUN NN _ 3 nmod:npmod _ _ 6 ; _ PUNCT : _ 3 punct _ _ 7 8 _ NUM CD _ 8 compound _ _ 8 3/4 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 3 dep _ _ 10 three _ NUM CD _ 11 nummod _ _ 11 months _ NOUN NNS _ 9 nmod:npmod _ _ 12 ; _ PUNCT : _ 3 punct _ _ 13 8 _ NUM CD _ 14 compound _ _ 14 9/16 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 3 dep _ _ 16 six _ NUM CD _ 17 nummod _ _ 17 months _ NOUN NNS _ 15 nmod:npmod _ _ 18 ; _ PUNCT : _ 3 punct _ _ 19 8 _ NUM CD _ 20 compound _ _ 20 9/16 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 3 dep _ _ 22 one _ NUM CD _ 23 nummod _ _ 23 year _ NOUN NN _ 21 dep _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 average _ NOUN NN _ 0 root _ _ 3 of _ ADP IN _ 6 case _ _ 4 interbank _ ADV NN _ 6 advmod _ _ 5 offered _ VERB VBN _ 6 amod _ _ 6 rates _ NOUN NNS _ 2 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 dollar _ NOUN NN _ 9 compound _ _ 9 deposits _ NOUN NNS _ 6 nmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 London _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 2 nmod _ _ 14 based _ VERB VBN _ 16 case _ _ 15 on _ ADP IN _ 16 case _ _ 16 quotations _ NOUN NNS _ 2 nmod _ _ 17 at _ ADP IN _ 20 case _ _ 18 five _ NUM CD _ 20 nummod _ _ 19 major _ ADJ JJ _ 20 amod _ _ 20 banks _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 FOREIGN _ ADJ JJ _ 3 amod _ _ 2 PRIME _ ADJ JJ _ 3 amod _ _ 3 RATES _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 1 Canada _ PROPN NNP _ 0 root _ _ 2 13.50 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 1 dep _ _ 4 ; _ PUNCT : _ 1 punct _ _ 5 Germany _ PROPN NNP _ 1 dep _ _ 6 8.50 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dep _ _ 8 ; _ PUNCT : _ 1 punct _ _ 9 Japan _ PROPN NNP _ 1 dep _ _ 10 4.875 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dep _ _ 12 ; _ PUNCT : _ 1 punct _ _ 13 Switzerland _ PROPN NNP _ 1 dep _ _ 14 8.50 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dep _ _ 16 ; _ PUNCT : _ 1 punct _ _ 17 Britain _ PROPN NNP _ 1 dep _ _ 18 15 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dep _ _ 20 . _ PUNCT . _ 1 punct _ _ 1 These _ DET DT _ 3 det _ _ 2 rate _ NOUN NN _ 3 compound _ _ 3 indications _ NOUN NNS _ 7 nsubj _ _ 4 are _ VERB VBP _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 directly _ ADV RB _ 7 advmod _ _ 7 comparable _ ADJ JJ _ 0 root _ _ 8 ; _ PUNCT : _ 7 punct _ _ 9 lending _ NOUN NN _ 10 compound _ _ 10 practices _ NOUN NNS _ 11 nsubj _ _ 11 vary _ VERB VBP _ 7 parataxis _ _ 12 widely _ ADV RB _ 11 advmod _ _ 13 by _ ADP IN _ 14 case _ _ 14 location _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 TREASURY _ NOUN NN _ 2 compound _ _ 2 BILLS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 Results _ NOUN NNS _ 0 root _ _ 2 of _ ADP IN _ 11 case _ _ 3 the _ DET DT _ 11 det _ _ 4 Tuesday _ PROPN NNP _ 11 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 October _ PROPN NNP _ 4 dep _ _ 7 10 _ NUM CD _ 4 dep _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 1989 _ NUM CD _ 4 dep _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 auction _ NOUN NN _ 1 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 short-term _ ADJ JJ _ 16 amod _ _ 14 U.S. _ PROPN NNP _ 16 compound _ _ 15 government _ NOUN NN _ 16 compound _ _ 16 bills _ NOUN NNS _ 11 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 sold _ VERB VBN _ 16 acl _ _ 19 at _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 discount _ NOUN NN _ 18 nmod _ _ 22 from _ ADP IN _ 24 case _ _ 23 face _ NOUN NN _ 24 compound _ _ 24 value _ NOUN NN _ 21 nmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 units _ NOUN NNS _ 18 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 $ _ SYM $ _ 31 dep _ _ 29 10,000 _ NUM CD _ 31 compound _ _ 30 to _ ADP TO _ 31 dep _ _ 31 $ _ SYM $ _ 26 nmod _ _ 32 1 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 : _ PUNCT : _ 1 punct _ _ 1 7.63 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 13 _ NUM CD _ 4 nummod _ _ 4 weeks _ NOUN NNS _ 2 dep _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 7.60 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 26 _ NUM CD _ 9 nummod _ _ 9 weeks _ NOUN NNS _ 7 dep _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 FEDERAL _ PROPN NNP _ 5 compound _ _ 2 HOME _ PROPN NNP _ 5 compound _ _ 3 LOAN _ PROPN NNP _ 5 compound _ _ 4 MORTGAGE _ PROPN NNP _ 5 compound _ _ 5 CORP _ PROPN NNP _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 8 Freddie _ PROPN NNP _ 9 compound _ _ 9 Mac _ PROPN NNP _ 5 appos _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 : _ PUNCT : _ 5 punct _ _ 1 Posted _ VERB VBN _ 2 amod _ _ 2 yields _ NOUN NNS _ 0 root _ _ 3 on _ ADP IN _ 6 case _ _ 4 30-year _ ADJ JJ _ 6 amod _ _ 5 mortgage _ NOUN NN _ 6 compound _ _ 6 commitments _ NOUN NNS _ 2 nmod _ _ 7 for _ ADP IN _ 8 case _ _ 8 delivery _ NOUN NN _ 6 nmod _ _ 9 within _ ADP IN _ 11 case _ _ 10 30 _ NUM CD _ 11 nummod _ _ 11 days _ NOUN NNS _ 8 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 9.91 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 standard _ ADJ JJ _ 7 amod _ _ 5 conventional _ ADJ JJ _ 7 amod _ _ 6 fixedrate _ ADJ JJ _ 7 amod _ _ 7 mortgages _ NOUN NNS _ 2 appos _ _ 8 ; _ PUNCT : _ 2 punct _ _ 9 7.875 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 2 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 2 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 19 amod _ _ 14 rate _ NOUN NN _ 15 dep _ _ 15 capped _ VERB VBD _ 19 amod _ _ 16 one-year _ ADJ JJ _ 19 amod _ _ 17 adjustable _ ADJ JJ _ 19 amod _ _ 18 rate _ NOUN NN _ 19 compound _ _ 19 mortgages _ NOUN NNS _ 10 appos _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNPS _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 FEDERAL _ PROPN NNP _ 4 compound _ _ 2 NATIONAL _ PROPN NNP _ 4 compound _ _ 3 MORTGAGE _ PROPN NNP _ 4 compound _ _ 4 ASSOCIATION _ PROPN NNP _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 6 Fannie _ PROPN NNP _ 7 compound _ _ 7 Mae _ PROPN NNP _ 4 appos _ _ 8 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 9 : _ PUNCT : _ 4 punct _ _ 1 Posted _ VERB VBN _ 2 amod _ _ 2 yields _ NOUN NNS _ 0 root _ _ 3 on _ ADP IN _ 7 case _ _ 4 30 _ NUM CD _ 5 compound _ _ 5 year _ NOUN NN _ 7 amod _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 commitments _ NOUN NNS _ 2 nmod _ _ 8 for _ ADP IN _ 9 case _ _ 9 delivery _ NOUN NN _ 7 nmod _ _ 10 within _ ADP IN _ 12 case _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 9 nmod _ _ 13 -LRB- _ PUNCT -LRB- _ 14 punct _ _ 14 priced _ VERB VBN _ 7 dep _ _ 15 at _ ADP IN _ 16 case _ _ 16 par _ NOUN NN _ 14 nmod _ _ 17 -RRB- _ PUNCT -RRB- _ 14 punct _ _ 1 9.86 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 standard _ ADJ JJ _ 7 amod _ _ 5 conventional _ ADJ JJ _ 7 amod _ _ 6 fixed-rate _ ADJ JJ _ 7 amod _ _ 7 mortgages _ NOUN NNS _ 2 appos _ _ 8 ; _ PUNCT : _ 2 punct _ _ 9 8.85 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 2 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 6/2 _ NUM CD _ 18 nummod _ _ 13 rate _ NOUN NN _ 18 amod _ _ 14 capped _ VERB VBD _ 13 dep _ _ 15 one-year _ ADJ JJ _ 18 amod _ _ 16 adjustable _ ADJ JJ _ 18 amod _ _ 17 rate _ NOUN NN _ 18 compound _ _ 18 mortgages _ NOUN NNS _ 10 appos _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNPS _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 MERRILL _ PROPN NNP _ 5 compound _ _ 2 LYNCH _ PROPN NNP _ 5 compound _ _ 3 READY _ PROPN NNP _ 5 compound _ _ 4 ASSETS _ PROPN NNPS _ 5 compound _ _ 5 TRUST _ PROPN NNP _ 0 root _ _ 6 : _ PUNCT : _ 5 punct _ _ 1 8.33 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Annualized _ ADJ JJ _ 3 amod _ _ 2 average _ ADJ JJ _ 3 amod _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 of _ ADP IN _ 5 case _ _ 5 return _ NOUN NN _ 3 nmod _ _ 6 after _ ADP IN _ 7 case _ _ 7 expenses _ NOUN NNS _ 3 nmod _ _ 8 for _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 past _ ADJ JJ _ 12 amod _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 3 nmod _ _ 13 ; _ PUNCT : _ 3 punct _ _ 14 not _ ADV RB _ 3 neg _ _ 15 a _ DET DT _ 16 det _ _ 16 forecast _ NOUN NN _ 3 dep _ _ 17 of _ ADP IN _ 19 case _ _ 18 future _ ADJ JJ _ 19 amod _ _ 19 returns _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Pension _ NOUN NN _ 2 compound _ _ 2 funds _ NOUN NNS _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 insurers _ NOUN NNS _ 2 conj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 other _ ADJ JJ _ 7 amod _ _ 7 behemoths _ NOUN NNS _ 2 conj _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 investing _ NOUN JJ _ 11 compound _ _ 11 world _ NOUN NN _ 7 nmod _ _ 12 said _ VERB VBD _ 0 root _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 began _ VERB VBD _ 12 ccomp _ _ 15 scooping _ VERB VBG _ 14 xcomp _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 stocks _ NOUN NNS _ 15 dobj _ _ 18 during _ ADP IN _ 22 case _ _ 19 Friday _ PROPN NNP _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 rout _ NOUN NN _ 15 nmod _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 plan _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 buy _ VERB VB _ 3 xcomp _ _ 6 more _ ADJ JJR _ 5 dobj _ _ 7 today _ NOUN NN _ 5 nmod:tmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Rightly _ ADV RB _ 9 advmod _ _ 2 or _ CONJ CC _ 1 cc _ _ 3 wrongly _ ADV RB _ 1 conj _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 many _ ADJ JJ _ 8 amod _ _ 6 giant _ ADJ JJ _ 8 amod _ _ 7 institutional _ ADJ JJ _ 8 amod _ _ 8 investors _ NOUN NNS _ 9 nsubj _ _ 9 appear _ VERB VBP _ 0 root _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 aux _ _ 12 fighting _ VERB VBG _ 9 xcomp _ _ 13 the _ DET DT _ 15 det _ _ 14 latest _ ADJ JJS _ 15 amod _ _ 15 war _ NOUN NN _ 12 dobj _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 applying _ VERB VBG _ 12 advcl _ _ 18 the _ DET DT _ 19 det _ _ 19 lesson _ NOUN NN _ 17 dobj _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 learned _ VERB VBD _ 19 acl:relcl _ _ 22 in _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 October _ PROPN NNP _ 26 compound _ _ 25 1987 _ NUM CD _ 26 nummod _ _ 26 crash _ NOUN NN _ 21 nmod _ _ 27 : _ PUNCT : _ 19 punct _ _ 28 Buying _ VERB VBG _ 32 csubj _ _ 29 at _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 bottom _ NOUN JJ _ 28 nmod _ _ 32 pays _ VERB VBZ _ 19 parataxis _ _ 33 off _ ADP RP _ 32 compound:prt _ _ 34 . _ PUNCT . _ 9 punct _ _ 1 To _ PART TO _ 3 mark _ _ 2 be _ VERB VB _ 3 cop _ _ 3 sure _ ADJ JJ _ 8 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 investors _ NOUN NNS _ 8 nsubj _ _ 7 might _ AUX MD _ 8 aux _ _ 8 put _ VERB VB _ 0 root _ _ 9 away _ ADP RP _ 8 compound:prt _ _ 10 their _ PRON PRP$ _ 11 nmod:poss _ _ 11 checkbooks _ NOUN NNS _ 8 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 hurry _ NOUN NN _ 8 nmod _ _ 15 if _ SCONJ IN _ 17 mark _ _ 16 stocks _ NOUN NNS _ 17 nsubj _ _ 17 open _ VERB JJ _ 8 advcl _ _ 18 sharply _ ADV RB _ 19 advmod _ _ 19 lower _ ADJ JJR _ 17 advmod _ _ 20 today _ NOUN NN _ 17 nmod:tmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 could _ AUX MD _ 4 aux _ _ 3 still _ ADV RB _ 4 advmod _ _ 4 panic _ VERB VB _ 0 root _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 bail _ VERB VB _ 4 conj _ _ 7 out _ ADP IN _ 6 compound:prt _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 6 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 their _ PRON PRP$ _ 4 nmod:poss _ _ 3 1987 _ NUM CD _ 4 nummod _ _ 4 performance _ NOUN NN _ 5 nsubj _ _ 5 indicates _ VERB VBZ _ 0 root _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 wo _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 abandon _ VERB VB _ 5 ccomp _ _ 11 stocks _ NOUN NNS _ 10 dobj _ _ 12 unless _ SCONJ IN _ 14 mark _ _ 13 conditions _ NOUN NNS _ 14 nsubj _ _ 14 get _ VERB VBP _ 10 advcl _ _ 15 far _ ADV RB _ 16 advmod _ _ 16 worse _ ADJ JJR _ 14 xcomp _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 Last _ ADJ JJ _ 3 amod _ _ 3 time _ NOUN NN _ 7 nmod:tmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 we _ PRON PRP _ 7 nsubjpass _ _ 6 got _ AUX VBD _ 7 auxpass _ _ 7 rewarded _ VERB VBN _ 22 ccomp _ _ 8 for _ SCONJ IN _ 9 mark _ _ 9 going _ VERB VBG _ 7 advcl _ _ 10 out _ ADV RB _ 9 advmod _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 buying _ VERB VBG _ 9 conj _ _ 13 stocks _ NOUN NNS _ 12 dobj _ _ 14 when _ ADV WRB _ 19 advmod _ _ 15 the _ DET DT _ 16 det _ _ 16 panic _ NOUN NN _ 19 nsubj _ _ 17 was _ VERB VBD _ 19 cop _ _ 18 the _ DET DT _ 19 det _ _ 19 worst _ ADJ JJS _ 9 advcl _ _ 20 , _ PUNCT , _ 22 punct _ _ 21 '' _ PUNCT '' _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 John _ PROPN NNP _ 25 compound _ _ 24 W. _ PROPN NNP _ 25 compound _ _ 25 Rogers _ PROPN NNP _ 22 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 president _ NOUN NN _ 25 appos _ _ 28 of _ ADP IN _ 33 case _ _ 29 Chicago-based _ ADJ JJ _ 33 amod _ _ 30 Ariel _ PROPN NNP _ 33 compound _ _ 31 Capital _ PROPN NNP _ 33 compound _ _ 32 Management _ PROPN NNP _ 33 compound _ _ 33 Inc. _ PROPN NNP _ 27 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 which _ PRON WDT _ 36 nsubj _ _ 36 manages _ VERB VBZ _ 33 acl:relcl _ _ 37 $ _ SYM $ _ 36 dobj _ _ 38 1.1 _ NUM CD _ 39 compound _ _ 39 billion _ NUM CD _ 37 nummod _ _ 40 of _ ADP IN _ 41 case _ _ 41 stocks _ NOUN NNS _ 37 nmod _ _ 42 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Rogers _ PROPN NNP _ 3 nsubj _ _ 3 spent _ VERB VBD _ 0 root _ _ 4 half _ DET PDT _ 6 det:predet _ _ 5 his _ PRON PRP$ _ 6 nmod:poss _ _ 6 cash _ NOUN NN _ 3 dobj _ _ 7 on _ ADP IN _ 8 case _ _ 8 hand _ NOUN NN _ 6 nmod _ _ 9 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 10 for _ ADP IN _ 14 case _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 our _ PRON PRP$ _ 14 nmod:poss _ _ 13 favorite _ ADJ JJ _ 14 amod _ _ 14 stocks _ NOUN NNS _ 3 nmod _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 have _ AUX VBP _ 17 aux _ _ 17 fallen _ VERB VBN _ 14 acl:relcl _ _ 18 apart _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 20 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 invest _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 6 det _ _ 6 rest _ NOUN NN _ 4 dobj _ _ 7 if _ SCONJ IN _ 10 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 10 nsubj _ _ 10 weakens _ VERB VBZ _ 4 advcl _ _ 11 further _ ADV RB _ 10 advmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 Denver-based _ ADJ JJ _ 5 amod _ _ 2 portfolio _ NOUN NN _ 5 compound _ _ 3 manager _ NOUN NN _ 5 compound _ _ 4 James _ PROPN NNP _ 5 compound _ _ 5 Craig _ PROPN NNP _ 8 nsubjpass _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 n't _ PART RB _ 8 neg _ _ 8 daunted _ VERB VBN _ 0 root _ _ 9 when _ ADV WRB _ 13 advmod _ _ 10 Friday _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 rout _ NOUN NN _ 13 nsubj _ _ 13 shaved _ VERB VBD _ 8 advcl _ _ 14 $ _ SYM $ _ 13 dobj _ _ 15 40 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 value _ NOUN NN _ 13 nmod _ _ 20 of _ ADP IN _ 26 case _ _ 21 the _ DET DT _ 26 det _ _ 22 $ _ SYM $ _ 26 amod _ _ 23 752 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 Janus _ PROPN NN _ 26 compound _ _ 26 Fund _ PROPN NN _ 19 nmod _ _ 27 he _ PRON PRP _ 28 nsubj _ _ 28 oversees _ VERB VBZ _ 26 acl:relcl _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 waited _ VERB VBD _ 17 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 make _ VERB VB _ 3 xcomp _ _ 6 sure _ ADJ JJ _ 5 xcomp _ _ 7 all _ DET PDT _ 10 det:predet _ _ 8 the _ DET DT _ 10 det _ _ 9 program _ NOUN NN _ 10 compound _ _ 10 trades _ NOUN NNS _ 12 nsubj _ _ 11 had _ AUX VBD _ 12 aux _ _ 12 kicked _ VERB VBN _ 6 ccomp _ _ 13 through _ ADP IN _ 12 compound:prt _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Then _ ADV RB _ 3 advmod _ _ 2 he _ PRON PRP _ 3 nsubj _ _ 3 jumped _ VERB VBD _ 0 root _ _ 4 into _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 3 nmod _ _ 7 : _ PUNCT : _ 3 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 spent _ VERB VBD _ 0 root _ _ 4 $ _ SYM $ _ 3 dobj _ _ 5 30 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 half-hour _ NOUN NN _ 3 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 money _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 opened _ VERB VBD _ 0 root _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 wallets _ NOUN NNS _ 5 dobj _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 was _ AUX VBD _ 4 aux _ _ 4 buying _ VERB VBG _ 27 ccomp _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 close _ ADJ NN _ 4 nmod _ _ 8 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 9 Friday _ PROPN NNP _ 4 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 and _ CONJ CC _ 4 cc _ _ 12 I _ PRON PRP _ 15 nsubj _ _ 13 'll _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 aux _ _ 15 buying _ VERB VBG _ 4 conj _ _ 16 again _ ADV RB _ 15 advmod _ _ 17 because _ SCONJ IN _ 19 mark _ _ 18 I _ PRON PRP _ 19 nsubj _ _ 19 know _ VERB VBP _ 15 advcl _ _ 20 we _ PRON PRP _ 22 nsubj _ _ 21 're _ AUX VBP _ 22 aux _ _ 22 getting _ VERB VBG _ 19 ccomp _ _ 23 good _ ADJ JJ _ 24 amod _ _ 24 value _ NOUN NN _ 22 dobj _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Frederick _ PROPN NNP _ 30 compound _ _ 29 A. _ PROPN NNP _ 30 compound _ _ 30 Moran _ PROPN NNP _ 27 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 president _ NOUN NN _ 30 appos _ _ 33 of _ ADP IN _ 37 case _ _ 34 Moran _ PROPN NNP _ 37 compound _ _ 35 Asset _ PROPN NNP _ 37 compound _ _ 36 Management _ PROPN NNP _ 37 compound _ _ 37 Inc. _ PROPN NNP _ 32 nmod _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 Greenwich _ PROPN NNP _ 37 appos _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Conn _ PROPN NNP _ 39 appos _ _ 42 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 no _ DET DT _ 5 neg _ _ 5 justification _ NOUN NN _ 3 nsubj _ _ 6 on _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 fundamental _ ADJ JJ _ 9 amod _ _ 9 level _ NOUN NN _ 3 nmod _ _ 10 for _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 crash _ NOUN NN _ 3 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 mutual _ ADJ JJ _ 3 amod _ _ 3 funds _ NOUN NNS _ 29 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 8 nsubjpass _ _ 6 can _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 forced _ VERB VBN _ 3 acl:relcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 sell _ VERB VB _ 8 xcomp _ _ 11 stockholdings _ NOUN NNS _ 10 dobj _ _ 12 when _ ADV WRB _ 14 advmod _ _ 13 investors _ NOUN NNS _ 14 nsubj _ _ 14 rush _ VERB VBP _ 10 advcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 withdraw _ VERB VB _ 14 xcomp _ _ 17 money _ NOUN NN _ 16 dobj _ _ 18 , _ PUNCT , _ 29 punct _ _ 19 big _ ADJ JJ _ 20 amod _ _ 20 investors _ NOUN NNS _ 29 nsubj _ _ 21 such _ ADJ JJ _ 24 case _ _ 22 as _ ADP IN _ 21 mwe _ _ 23 pension _ NOUN NN _ 24 compound _ _ 24 funds _ NOUN NNS _ 20 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 insurance _ NOUN NN _ 27 compound _ _ 27 companies _ NOUN NNS _ 24 conj _ _ 28 can _ AUX MD _ 29 aux _ _ 29 decide _ VERB VB _ 0 root _ _ 30 to _ PART TO _ 31 mark _ _ 31 ride _ VERB VB _ 29 xcomp _ _ 32 out _ ADP RP _ 31 compound:prt _ _ 33 market _ NOUN NN _ 34 compound _ _ 34 storms _ NOUN NNS _ 31 dobj _ _ 35 without _ SCONJ IN _ 36 mark _ _ 36 jettisoning _ VERB VBG _ 31 advcl _ _ 37 stock _ NOUN NN _ 36 dobj _ _ 38 . _ PUNCT . _ 29 punct _ _ 1 Most _ ADV JJS _ 2 advmod _ _ 2 often _ ADV RB _ 5 advmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 do _ VERB VBP _ 0 root _ _ 6 just _ ADV RB _ 7 advmod _ _ 7 that _ DET IN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 because _ SCONJ IN _ 12 mark _ _ 10 stocks _ NOUN NNS _ 12 nsubj _ _ 11 have _ AUX VBP _ 12 aux _ _ 12 proved _ VERB VBN _ 5 advcl _ _ 13 to _ PART TO _ 18 mark _ _ 14 be _ VERB VB _ 18 cop _ _ 15 the _ DET DT _ 18 det _ _ 16 best-performing _ ADJ JJS _ 18 amod _ _ 17 long-term _ ADJ JJ _ 18 amod _ _ 18 investment _ NOUN NN _ 12 xcomp _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 attracting _ VERB VBG _ 18 advcl _ _ 21 about _ ADV IN _ 22 advmod _ _ 22 $ _ SYM $ _ 20 dobj _ _ 23 1 _ NUM CD _ 24 compound _ _ 24 trillion _ NUM CD _ 22 nummod _ _ 25 from _ ADP IN _ 27 case _ _ 26 pension _ NOUN NN _ 27 compound _ _ 27 funds _ NOUN NNS _ 20 nmod _ _ 28 alone _ ADV RB _ 27 amod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 bought _ VERB VBD _ 10 advcl _ _ 5 after _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 crash _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 you _ PRON PRP _ 10 nsubj _ _ 10 did _ VERB VBD _ 19 ccomp _ _ 11 very _ ADV RB _ 13 advmod _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 well _ ADV RB _ 10 advmod _ _ 14 off _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 bottom _ NOUN NN _ 10 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Stephen _ PROPN NNP _ 22 compound _ _ 21 B. _ PROPN NNP _ 22 compound _ _ 22 Timbers _ PROPN NNP _ 19 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 chief _ ADJ JJ _ 26 amod _ _ 25 investment _ NOUN NN _ 26 compound _ _ 26 officer _ NOUN NN _ 22 appos _ _ 27 of _ ADP IN _ 32 case _ _ 28 Chicago-based _ ADJ JJ _ 32 amod _ _ 29 Kemper _ PROPN NNP _ 32 compound _ _ 30 Financial _ PROPN NNP _ 32 compound _ _ 31 Services _ PROPN NNPS _ 32 compound _ _ 32 Inc _ PROPN NNP _ 26 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 9 det _ _ 2 $ _ SYM $ _ 9 amod _ _ 3 56 _ NUM CD _ 4 compound _ _ 4 billion _ NUM CD _ 2 nummod _ _ 5 California _ PROPN NNP _ 9 compound _ _ 6 Public _ PROPN NNP _ 9 compound _ _ 7 Employees _ PROPN NNP _ 9 compound _ _ 8 Retirement _ PROPN NNP _ 9 compound _ _ 9 System _ PROPN NNP _ 14 nsubj _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 for _ ADP IN _ 12 case _ _ 12 one _ NUM CD _ 14 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 added _ VERB VBD _ 0 root _ _ 15 $ _ SYM $ _ 14 dobj _ _ 16 1 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 to _ ADP TO _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 stock _ NOUN NN _ 21 compound _ _ 21 portfolio _ NOUN NN _ 14 nmod _ _ 22 two _ NUM CD _ 23 nummod _ _ 23 years _ NOUN NNS _ 24 nmod:npmod _ _ 24 ago _ ADV RB _ 14 advmod _ _ 25 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 last _ ADJ JJ _ 4 amod _ _ 4 crash _ NOUN NN _ 5 nsubj _ _ 5 taught _ VERB VBD _ 31 ccomp _ _ 6 institutional _ ADJ JJ _ 7 amod _ _ 7 investors _ NOUN NNS _ 5 dobj _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 have _ VERB VBP _ 5 ccomp _ _ 11 to _ PART TO _ 14 mark _ _ 12 be _ VERB VB _ 14 cop _ _ 13 long-term _ ADJ JJ _ 14 amod _ _ 14 holders _ NOUN NNS _ 10 xcomp _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 that _ SCONJ IN _ 21 mark _ _ 18 they _ PRON PRP _ 21 nsubj _ _ 19 ca _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 react _ VERB VB _ 10 conj _ _ 22 to _ ADP TO _ 24 case _ _ 23 short-term _ ADJ JJ _ 24 amod _ _ 24 events _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 good _ ADJ JJ _ 24 amod _ _ 27 or _ CONJ CC _ 26 cc _ _ 28 bad _ ADJ JJ _ 26 conj _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 '' _ PUNCT '' _ 31 punct _ _ 31 said _ VERB VBD _ 0 root _ _ 32 Stephen _ PROPN NNP _ 34 compound _ _ 33 L. _ PROPN NNP _ 34 compound _ _ 34 Nesbitt _ PROPN NNP _ 31 dep _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 senior _ ADJ JJ _ 38 amod _ _ 37 vice _ NOUN NN _ 38 compound _ _ 38 president _ NOUN NN _ 34 appos _ _ 39 for _ ADP IN _ 42 case _ _ 40 the _ DET DT _ 42 det _ _ 41 pension _ NOUN NN _ 42 compound _ _ 42 consultants _ NOUN NNS _ 38 nmod _ _ 43 Wilshire _ PROPN NNP _ 44 compound _ _ 44 Associates _ PROPN NNPS _ 42 dep _ _ 45 in _ ADP IN _ 47 case _ _ 46 Santa _ PROPN NNP _ 47 compound _ _ 47 Monica _ PROPN NNP _ 44 nmod _ _ 48 , _ PUNCT , _ 47 punct _ _ 49 Calif _ PROPN NNP _ 47 appos _ _ 50 . _ PUNCT . _ 31 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Those _ PRON DT _ 10 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 pulled _ VERB VBD _ 2 acl:relcl _ _ 5 out _ ADP RP _ 4 advmod _ _ 6 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 7 of _ ADP IN _ 8 case _ _ 8 stocks _ NOUN NNS _ 5 dep _ _ 9 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 10 regretted _ VERB VBD _ 0 root _ _ 11 it _ PRON PRP _ 10 dobj _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 10 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 `` _ PUNCT `` _ 10 punct _ _ 18 so _ ADV RB _ 10 advmod _ _ 19 I _ PRON PRP _ 20 nsubj _ _ 20 doubt _ VERB VBP _ 10 parataxis _ _ 21 you _ PRON PRP _ 23 nsubj _ _ 22 'll _ AUX MD _ 23 aux _ _ 23 see _ VERB VB _ 20 ccomp _ _ 24 any _ DET DT _ 26 det _ _ 25 significant _ ADJ JJ _ 26 amod _ _ 26 changes _ NOUN NNS _ 23 dobj _ _ 27 '' _ PUNCT '' _ 23 punct _ _ 28 in _ ADP IN _ 30 case _ _ 29 institutional _ ADJ JJ _ 30 amod _ _ 30 portfolios _ NOUN NNS _ 23 nmod _ _ 31 as _ ADP IN _ 33 case _ _ 32 a _ DET DT _ 33 det _ _ 33 result _ NOUN NN _ 23 nmod _ _ 34 of _ ADP IN _ 37 case _ _ 35 Friday _ PROPN NNP _ 37 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 decline _ NOUN NN _ 33 nmod _ _ 38 . _ PUNCT . _ 10 punct _ _ 1 Stocks _ NOUN NNS _ 17 nsubj _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 as _ SCONJ IN _ 4 mark _ _ 4 measured _ VERB VBN _ 17 dep _ _ 5 by _ ADP IN _ 12 case _ _ 6 the _ DET DT _ 7 det _ _ 7 Standard _ PROPN NNP _ 12 nmod:poss _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Poor _ PROPN NNP _ 7 conj _ _ 10 's _ PART POS _ 7 case _ _ 11 500-stock _ PROPN JJ _ 12 compound _ _ 12 index _ NOUN NN _ 4 nmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 have _ AUX VBP _ 17 aux _ _ 15 been _ VERB VBN _ 17 cop _ _ 16 stellar _ ADJ JJ _ 17 amod _ _ 17 performers _ NOUN NNS _ 0 root _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 17 nmod:tmod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 rising _ VERB VBG _ 17 advcl _ _ 22 27.97 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dobj _ _ 24 before _ ADP IN _ 27 case _ _ 25 Friday _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 plunge _ NOUN NN _ 21 nmod _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 excluding _ VERB VBG _ 30 case _ _ 30 dividends _ NOUN NNS _ 21 nmod _ _ 31 . _ PUNCT . _ 17 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 slump _ NOUN NN _ 5 nsubj _ _ 5 leaves _ VERB VBZ _ 0 root _ _ 6 investors _ NOUN NNS _ 7 nsubj _ _ 7 ahead _ ADV RB _ 5 xcomp _ _ 8 more _ ADJ RBR _ 10 advmod _ _ 9 than _ ADP IN _ 8 mwe _ _ 10 20 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 7 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 well _ ADV RB _ 17 advmod _ _ 14 above _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 annual _ ADJ JJ _ 17 amod _ _ 17 average _ NOUN NN _ 11 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 stocks _ NOUN NNS _ 17 nmod _ _ 20 over _ ADP IN _ 22 case _ _ 21 several _ ADJ JJ _ 22 amod _ _ 22 decades _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 You _ PRON PRP _ 4 nsubj _ _ 3 could _ AUX MD _ 4 aux _ _ 4 go _ VERB VB _ 19 ccomp _ _ 5 down _ ADV RP _ 4 advmod _ _ 6 400 _ NUM CD _ 7 nummod _ _ 7 points _ NOUN NNS _ 4 dobj _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 still _ ADV RB _ 10 advmod _ _ 10 have _ VERB VBP _ 4 conj _ _ 11 a _ DET DT _ 13 det _ _ 12 good _ ADJ JJ _ 13 amod _ _ 13 year _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 James _ PROPN NNP _ 22 compound _ _ 21 D. _ PROPN NNP _ 22 compound _ _ 22 Awad _ PROPN NNP _ 19 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 president _ NOUN NN _ 22 appos _ _ 25 of _ ADP IN _ 30 case _ _ 26 New _ PROPN NNP _ 27 amod _ _ 27 York-based _ ADJ JJ _ 30 amod _ _ 28 BMI _ PROPN NNP _ 30 compound _ _ 29 Capital _ PROPN NNP _ 30 compound _ _ 30 Corp _ PROPN NNP _ 24 nmod _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Awad _ PROPN NNP _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 worries _ VERB NNS _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 12 nsubj _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 could _ AUX MD _ 12 aux _ _ 12 go _ VERB VB _ 6 ccomp _ _ 13 down _ ADV RP _ 12 advmod _ _ 14 800 _ NUM CD _ 17 nummod _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 900 _ NUM CD _ 14 conj _ _ 17 points _ NOUN NNS _ 12 dobj _ _ 18 in _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 next _ ADJ JJ _ 22 amod _ _ 21 few _ ADJ JJ _ 22 amod _ _ 22 days _ NOUN NNS _ 12 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 can _ AUX MD _ 3 aux _ _ 3 happen _ VERB VB _ 0 root _ _ 4 before _ SCONJ IN _ 7 mark _ _ 5 you _ PRON PRP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 turn _ VERB VB _ 3 advcl _ _ 8 around _ ADV RP _ 7 advmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 10 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 discerns _ VERB VBZ _ 2 ccomp _ _ 5 many _ ADJ JJ _ 6 amod _ _ 6 parallels _ NOUN NNS _ 4 dobj _ _ 7 with _ ADP IN _ 8 case _ _ 8 1987 _ NUM CD _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 including _ VERB VBG _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 emphasis _ NOUN NN _ 6 nmod _ _ 13 on _ ADP IN _ 15 case _ _ 14 takeover _ NOUN NN _ 15 compound _ _ 15 stocks _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 12 cc _ _ 17 the _ DET DT _ 18 det _ _ 18 re-emergence _ NOUN NN _ 12 conj _ _ 19 of _ ADP IN _ 22 case _ _ 20 computerized _ ADJ JJ _ 22 amod _ _ 21 program _ NOUN NN _ 22 compound _ _ 22 trading _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 only _ ADJ JJ _ 4 amod _ _ 4 thing _ NOUN NN _ 21 nsubj _ _ 5 you _ PRON PRP _ 8 nsubj _ _ 6 do _ AUX VBP _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 have _ VERB VB _ 4 acl:relcl _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 21 parataxis _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 `` _ PUNCT `` _ 21 punct _ _ 15 is _ VERB VBZ _ 21 cop _ _ 16 the _ DET DT _ 21 det _ _ 17 ` _ PUNCT `` _ 21 punct _ _ 18 portfolio _ NOUN NN _ 21 compound _ _ 19 insurance _ NOUN NN _ 21 compound _ _ 20 ' _ PUNCT '' _ 21 punct _ _ 21 phenomenon _ NOUN NN _ 0 root _ _ 22 overlaid _ VERB NN _ 21 acl _ _ 23 on _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 rest _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 21 punct _ _ 27 '' _ PUNCT '' _ 21 punct _ _ 1 Most _ ADV JJS _ 3 advmod _ _ 2 institutional _ ADJ JJ _ 3 amod _ _ 3 investors _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 abandoned _ VERB VBN _ 0 root _ _ 6 the _ DET DT _ 10 det _ _ 7 portfolio _ NOUN NN _ 10 compound _ _ 8 insurance _ NOUN NN _ 10 compound _ _ 9 hedging _ NOUN NN _ 10 compound _ _ 10 technique _ NOUN NN _ 5 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 15 nsubjpass _ _ 13 is _ AUX VBZ _ 15 auxpass _ _ 14 widely _ ADV RB _ 15 advmod _ _ 15 thought _ VERB VBN _ 10 acl:relcl _ _ 16 to _ PART TO _ 18 mark _ _ 17 have _ AUX VB _ 18 aux _ _ 18 worsened _ VERB VBN _ 15 xcomp _ _ 19 the _ DET DT _ 21 det _ _ 20 1987 _ NUM CD _ 21 nummod _ _ 21 crash _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Not _ ADV RB _ 3 neg _ _ 2 really _ ADV RB _ 3 advmod _ _ 3 insurance _ NOUN NN _ 8 ccomp _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 this _ DET DT _ 6 det _ _ 6 tactic _ NOUN NN _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 designed _ VERB VBN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 soften _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 blow _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 declining _ VERB VBG _ 16 amod _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 prices _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 10 cc _ _ 18 generate _ VERB VBP _ 10 conj _ _ 19 an _ DET DT _ 21 det _ _ 20 offsetting _ VERB JJ _ 21 amod _ _ 21 profit _ NOUN NN _ 18 dobj _ _ 22 by _ SCONJ IN _ 23 mark _ _ 23 selling _ VERB VBG _ 18 advcl _ _ 24 waves _ NOUN NNS _ 23 dobj _ _ 25 of _ ADP IN _ 28 case _ _ 26 S&P _ PROPN NNP _ 28 compound _ _ 27 futures _ NOUN NNS _ 28 compound _ _ 28 contracts _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 its _ PRON PRP$ _ 4 nmod:poss _ _ 3 severest _ ADJ JJS _ 4 amod _ _ 4 test _ NOUN NN _ 21 nmod _ _ 5 , _ PUNCT , _ 21 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 $ _ SYM $ _ 21 nsubj _ _ 8 60 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 of _ ADP IN _ 12 case _ _ 11 portfolio _ NOUN NN _ 12 compound _ _ 12 insurance _ NOUN NN _ 7 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 effect _ NOUN NN _ 7 nmod _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 1987 _ NUM CD _ 18 nummod _ _ 18 crash _ NOUN NN _ 7 nmod _ _ 19 did _ AUX VBD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 work _ VERB VB _ 0 root _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 as _ SCONJ IN _ 26 mark _ _ 24 stock _ NOUN NN _ 25 compound _ _ 25 buyers _ NOUN NNS _ 26 nsubj _ _ 26 disappeared _ VERB VBD _ 21 advcl _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 stock _ NOUN NN _ 31 compound _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 futures _ NOUN NNS _ 28 conj _ _ 31 prices _ NOUN NNS _ 32 nsubj _ _ 32 became _ VERB VBD _ 26 conj _ _ 33 disconnected _ VERB VBN _ 32 xcomp _ _ 34 . _ PUNCT . _ 21 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 without _ ADP IN _ 4 case _ _ 3 portfolio _ NOUN NN _ 4 compound _ _ 4 insurance _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 market _ NOUN NN _ 7 compound _ _ 7 conditions _ NOUN NNS _ 9 nsubj _ _ 8 were _ VERB VBD _ 9 cop _ _ 9 grim _ ADJ JJ _ 14 ccomp _ _ 10 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 money _ NOUN NN _ 13 compound _ _ 13 managers _ NOUN NNS _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Neil _ PROPN NNP _ 2 compound _ _ 2 Weisman _ PROPN NNP _ 27 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 whose _ PRON WP$ _ 9 nmod:poss _ _ 5 New _ PROPN NNP _ 6 amod _ _ 6 York-based _ ADJ JJ _ 9 amod _ _ 7 Chilmark _ PROPN NNP _ 9 compound _ _ 8 Capital _ PROPN NNP _ 9 compound _ _ 9 Partners _ PROPN NNP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 converted _ VERB VBN _ 2 acl:relcl _ _ 12 85 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 of _ ADP IN _ 20 case _ _ 15 its _ PRON PRP$ _ 20 nmod:poss _ _ 16 $ _ SYM $ _ 20 amod _ _ 17 220 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 investment _ NOUN NN _ 20 compound _ _ 20 pool _ NOUN NN _ 13 nmod _ _ 21 to _ ADP TO _ 22 case _ _ 22 cash _ VERB NN _ 11 nmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 recent _ ADJ JJ _ 25 amod _ _ 25 months _ NOUN NNS _ 11 nmod _ _ 26 , _ PUNCT , _ 2 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 he _ PRON PRP _ 30 nsubjpass _ _ 29 was _ AUX VBD _ 30 auxpass _ _ 30 besieged _ VERB VBN _ 27 ccomp _ _ 31 by _ ADP IN _ 34 case _ _ 32 Wall _ PROPN NNP _ 34 compound _ _ 33 Street _ PROPN NNP _ 34 compound _ _ 34 firms _ NOUN NNS _ 30 nmod _ _ 35 Friday _ PROPN NNP _ 30 nmod:tmod _ _ 36 asking _ VERB VBG _ 30 dep _ _ 37 him _ PRON PRP _ 36 dobj _ _ 38 to _ PART TO _ 39 mark _ _ 39 take _ VERB VB _ 36 xcomp _ _ 40 stock _ NOUN NN _ 39 dobj _ _ 41 off _ ADP IN _ 43 case _ _ 42 their _ PRON PRP$ _ 43 nmod:poss _ _ 43 hands _ NOUN NNS _ 39 nmod _ _ 44 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 got _ VERB VBD _ 21 ccomp _ _ 4 calls _ NOUN NNS _ 3 dobj _ _ 5 from _ ADP IN _ 8 case _ _ 6 big _ ADJ JJ _ 8 amod _ _ 7 block _ NOUN NN _ 8 compound _ _ 8 houses _ NOUN NNS _ 4 nmod _ _ 9 asking _ VERB VBG _ 4 acl _ _ 10 us _ PRON PRP _ 9 dobj _ _ 11 if _ SCONJ IN _ 13 mark _ _ 12 we _ PRON PRP _ 13 nsubj _ _ 13 want _ VERB VBP _ 9 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 13 xcomp _ _ 16 bids _ NOUN NNS _ 15 dobj _ _ 17 on _ ADP IN _ 18 case _ _ 18 anything _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Weisman _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 who _ PRON WP _ 37 nsubj _ _ 26 , _ PUNCT , _ 37 punct _ _ 27 happy _ ADJ JJ _ 37 ccomp _ _ 28 with _ ADP IN _ 30 case _ _ 29 his _ PRON PRP$ _ 30 nmod:poss _ _ 30 returns _ NOUN NNS _ 27 nmod _ _ 31 on _ ADP IN _ 32 case _ _ 32 investments _ NOUN NNS _ 30 nmod _ _ 33 chalked _ VERB VBD _ 30 acl _ _ 34 up _ ADP RB _ 33 compound:prt _ _ 35 earlier _ ADV RB _ 33 advmod _ _ 36 , _ PUNCT , _ 37 punct _ _ 37 declined _ VERB VBD _ 23 acl:relcl _ _ 38 the _ DET DT _ 39 det _ _ 39 offers _ NOUN NNS _ 37 dobj _ _ 40 . _ PUNCT . _ 21 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Weisman _ PROPN NNP _ 3 nsubj _ _ 3 predicts _ VERB VBZ _ 0 root _ _ 4 stocks _ NOUN NNS _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 appear _ VERB VB _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 stabilize _ VERB VB _ 6 xcomp _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 next _ ADJ JJ _ 13 amod _ _ 12 few _ ADJ JJ _ 13 amod _ _ 13 days _ NOUN NNS _ 8 nmod _ _ 14 before _ SCONJ IN _ 15 mark _ _ 15 declining _ VERB VBG _ 6 advcl _ _ 16 again _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 15 punct _ _ 18 trapping _ VERB NN _ 15 advcl _ _ 19 more _ ADJ RBR _ 20 amod _ _ 20 investors _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 14 ccomp _ _ 4 it _ PRON PRP _ 10 nsubj _ _ 5 will _ AUX MD _ 10 aux _ _ 6 be _ VERB VB _ 10 cop _ _ 7 a _ DET DT _ 10 det _ _ 8 rigor _ NOUN NN _ 10 compound _ _ 9 mortis _ NOUN NN _ 10 compound _ _ 10 rally _ NOUN NN _ 3 ccomp _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 '' _ PUNCT '' _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Meanwhile _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Friday _ PROPN NNP _ 4 nsubj _ _ 4 brought _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 reprieve _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 money _ NOUN NN _ 9 compound _ _ 9 managers _ NOUN NNS _ 6 nmod _ _ 10 whose _ PRON WP$ _ 12 nmod:poss _ _ 11 investment _ NOUN NN _ 12 compound _ _ 12 styles _ NOUN NNS _ 14 nsubj _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 put _ VERB VBN _ 9 acl:relcl _ _ 15 them _ PRON PRP _ 14 dobj _ _ 16 at _ ADP IN _ 17 case _ _ 17 odds _ NOUN NNS _ 14 nmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 market _ NOUN NN _ 21 compound _ _ 21 rally _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 Especially _ ADV RB _ 2 advmod _ _ 2 gleeful _ ADJ JJ _ 3 dep _ _ 3 were _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 short _ ADJ JJ _ 6 amod _ _ 6 sellers _ NOUN NNS _ 3 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 who _ PRON WP _ 11 nsubjpass _ _ 9 have _ AUX VBP _ 11 aux _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 pounded _ VERB VBN _ 6 acl:relcl _ _ 12 by _ ADP IN _ 17 case _ _ 13 this _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 market _ NOUN NN _ 17 compound _ _ 17 climb _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 shorts _ NOUN NNS _ 3 nsubj _ _ 3 sell _ VERB VBP _ 0 root _ _ 4 borrowed _ VERB VBN _ 5 amod _ _ 5 shares _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 hoping _ VERB VBG _ 3 advcl _ _ 8 to _ PART TO _ 9 mark _ _ 9 profit _ NOUN NN _ 7 xcomp _ _ 10 by _ SCONJ IN _ 11 mark _ _ 11 replacing _ VERB VBG _ 9 advcl _ _ 12 them _ PRON PRP _ 11 dobj _ _ 13 later _ ADV RB _ 11 advmod _ _ 14 at _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 lower _ ADJ JJR _ 17 amod _ _ 17 price _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 nation _ NOUN NN _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 largest _ ADJ JJS _ 6 amod _ _ 5 short-selling _ NOUN NN _ 6 compound _ _ 6 operation _ NOUN NN _ 9 nsubj _ _ 7 is _ VERB VBZ _ 9 cop _ _ 8 Feshbach _ PROPN NNP _ 9 compound _ _ 9 Brothers _ PROPN NNPS _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Palo _ PROPN NNP _ 12 compound _ _ 12 Alto _ PROPN NNP _ 9 appos _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 Calif. _ PROPN NNP _ 12 appos _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 said _ VERB VBD _ 9 acl:relcl _ _ 18 last _ ADJ JJ _ 19 amod _ _ 19 May _ PROPN NNP _ 17 nmod:tmod _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 short _ ADJ JJ _ 23 amod _ _ 23 positions _ NOUN NNS _ 25 nsubj _ _ 24 had _ AUX VBD _ 25 aux _ _ 25 shown _ VERB VBN _ 17 ccomp _ _ 26 losses _ NOUN NNS _ 25 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 10 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 26 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 year _ NOUN NN _ 26 nmod _ _ 33 up _ ADP IN _ 25 advmod _ _ 34 to _ ADP TO _ 36 case _ _ 35 that _ DET DT _ 36 det _ _ 36 point _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 9 punct _ _ 1 All _ DET DT _ 2 dep _ _ 2 that _ DET WDT _ 5 nsubj _ _ 3 now _ ADV RB _ 5 advmod _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 changed _ VERB VBN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ VERB VBP _ 4 cop _ _ 4 ahead _ ADV RB _ 13 ccomp _ _ 5 for _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 4 nmod _ _ 8 because _ ADP IN _ 10 case _ _ 9 of _ ADP IN _ 8 mwe _ _ 10 Friday _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 firm _ NOUN NN _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 Kurt _ PROPN NNP _ 18 compound _ _ 18 Feshbach _ PROPN NNP _ 13 nsubj _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 're _ AUX VBP _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 making _ VERB VBG _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 killing _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 we _ PRON PRP _ 11 nsubj _ _ 11 had _ VERB VBD _ 5 conj _ _ 12 a _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 day _ NOUN NN _ 11 nmod:tmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Food _ PROPN NNP _ 7 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Drug _ PROPN NNP _ 1 conj _ _ 4 Administration _ PROPN NNP _ 7 compound _ _ 5 spokesman _ NOUN NN _ 7 compound _ _ 6 Jeff _ PROPN NNP _ 7 compound _ _ 7 Nesbit _ PROPN NNP _ 8 nsubj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 agency _ NOUN NN _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 turned _ VERB VBN _ 8 ccomp _ _ 13 over _ ADP RP _ 12 compound:prt _ _ 14 evidence _ NOUN NN _ 12 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 criminal _ ADJ JJ _ 18 amod _ _ 18 investigation _ NOUN NN _ 12 nmod _ _ 19 concerning _ VERB VBG _ 18 acl _ _ 20 Vitarine _ PROPN NNP _ 22 compound _ _ 21 Pharmaceuticals _ PROPN NNP _ 22 compound _ _ 22 Inc. _ PROPN NNP _ 19 dobj _ _ 23 to _ ADP TO _ 28 case _ _ 24 the _ DET DT _ 26 det _ _ 25 U.S. _ PROPN NNP _ 26 compound _ _ 26 Attorney _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 office _ NOUN NN _ 12 nmod _ _ 29 in _ ADP IN _ 30 case _ _ 30 Baltimore _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 Neither _ DET DT _ 2 cc:preconj _ _ 2 Vitarine _ PROPN NNP _ 19 nsubjpass _ _ 3 nor _ CONJ CC _ 2 cc _ _ 4 any _ DET DT _ 2 conj _ _ 5 of _ ADP IN _ 14 case _ _ 6 the _ DET DT _ 12 det _ _ 7 Springfield _ PROPN NNP _ 12 dep _ _ 8 Gardens _ PROPN NNP _ 7 compound _ _ 9 , _ PUNCT , _ 7 punct _ _ 10 N.Y. _ PROPN NNP _ 7 dep _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 company _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 officials _ NOUN NNS _ 4 nmod _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 employees _ NOUN NNS _ 14 conj _ _ 17 have _ AUX VBP _ 19 aux _ _ 18 been _ AUX VBN _ 19 auxpass _ _ 19 charged _ VERB VBN _ 0 root _ _ 20 with _ ADP IN _ 22 case _ _ 21 any _ DET DT _ 22 det _ _ 22 crimes _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 19 punct _ _ 1 Vitarine _ PROPN NNP _ 2 nsubj _ _ 2 won _ VERB VBD _ 0 root _ _ 3 approval _ NOUN NN _ 2 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 market _ VERB VB _ 3 acl _ _ 6 a _ DET DT _ 7 det _ _ 7 version _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 blood _ NOUN NN _ 12 compound _ _ 11 pressure _ NOUN NN _ 12 compound _ _ 12 medicine _ NOUN NN _ 7 nmod _ _ 13 but _ CONJ CC _ 2 cc _ _ 14 acknowledged _ VERB VBD _ 2 conj _ _ 15 that _ SCONJ IN _ 17 mark _ _ 16 it _ PRON PRP _ 17 nsubj _ _ 17 substituted _ VERB VBD _ 14 ccomp _ _ 18 a _ DET DT _ 22 det _ _ 19 SmithKline _ PROPN NNP _ 22 compound _ _ 20 Beecham _ PROPN NNP _ 22 compound _ _ 21 PLC _ PROPN NNP _ 22 compound _ _ 22 product _ NOUN NN _ 17 dobj _ _ 23 as _ ADP IN _ 25 case _ _ 24 its _ PRON PRP$ _ 25 nmod:poss _ _ 25 own _ ADJ JJ _ 17 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 tests _ NOUN NNS _ 17 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Nesbit _ PROPN NNP _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 FDA _ PROPN NNP _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 asked _ VERB VBN _ 4 ccomp _ _ 9 Bolar _ PROPN NNP _ 11 compound _ _ 10 Pharmaceutical _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 recall _ VERB VB _ 8 xcomp _ _ 14 at _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 retail _ ADJ JJ _ 17 amod _ _ 17 level _ NOUN NN _ 13 nmod _ _ 18 its _ PRON PRP$ _ 21 nmod:poss _ _ 19 urinary _ ADJ JJ _ 21 amod _ _ 20 tract _ NOUN NN _ 21 compound _ _ 21 antibiotic _ NOUN JJ _ 13 dobj _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 so _ ADV RB _ 3 advmod _ _ 3 far _ ADV RB _ 8 advmod _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 8 nsubj _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 complied _ VERB VBN _ 15 ccomp _ _ 9 with _ ADP IN _ 11 case _ _ 10 that _ DET DT _ 11 det _ _ 11 request _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 spokesman _ NOUN NN _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Bolar _ PROPN NNP _ 27 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 subject _ NOUN NN _ 1 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 criminal _ ADJ JJ _ 8 amod _ _ 8 investigation _ NOUN NN _ 4 nmod _ _ 9 by _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 FDA _ PROPN NNP _ 8 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 Inspector _ PROPN NNP _ 15 compound _ _ 15 General _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 office _ NOUN NN _ 11 conj _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 Health _ PROPN NNP _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Human _ PROPN NNP _ 24 compound _ _ 23 Services _ PROPN NNP _ 24 compound _ _ 24 Department _ PROPN NNP _ 20 conj _ _ 25 , _ PUNCT , _ 1 punct _ _ 26 only _ ADV RB _ 27 advmod _ _ 27 agreed _ VERB VBD _ 51 ccomp _ _ 28 to _ PART TO _ 29 mark _ _ 29 recall _ VERB VB _ 27 xcomp _ _ 30 two _ NUM CD _ 31 nummod _ _ 31 strengths _ NOUN NNS _ 29 dobj _ _ 32 of _ ADP IN _ 34 case _ _ 33 its _ PRON PRP$ _ 34 nmod:poss _ _ 34 version _ NOUN NN _ 31 nmod _ _ 35 of _ ADP IN _ 36 case _ _ 36 Macrodantin _ PROPN NNP _ 34 nmod _ _ 37 `` _ PUNCT `` _ 29 punct _ _ 38 as _ ADV RB _ 40 advmod _ _ 39 far _ ADV RB _ 40 advmod _ _ 40 down _ ADV RB _ 29 advmod _ _ 41 as _ ADP IN _ 43 case _ _ 42 direct _ ADJ JJ _ 43 amod _ _ 43 customers _ NOUN NNS _ 40 nmod _ _ 44 , _ PUNCT , _ 43 punct _ _ 45 mostly _ ADV RB _ 43 advmod _ _ 46 wholesalers _ NOUN NNS _ 43 dep _ _ 47 , _ PUNCT , _ 51 punct _ _ 48 '' _ PUNCT '' _ 51 punct _ _ 49 Mr. _ PROPN NNP _ 50 compound _ _ 50 Nesbit _ PROPN NNP _ 51 nsubj _ _ 51 said _ VERB VBD _ 0 root _ _ 52 . _ PUNCT . _ 51 punct _ _ 1 Bolar _ PROPN NNP _ 9 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 of _ ADP IN _ 4 case _ _ 4 Copiague _ PROPN NNP _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 N.Y. _ PROPN NNP _ 4 appos _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 earlier _ ADV JJR _ 9 advmod _ _ 9 began _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 12 det _ _ 11 voluntary _ ADJ JJ _ 12 amod _ _ 12 recall _ NOUN NN _ 9 dobj _ _ 13 of _ ADP IN _ 21 case _ _ 14 both _ DET DT _ 21 det _ _ 15 its _ PRON PRP$ _ 21 nmod:poss _ _ 16 100 _ NUM CD _ 17 compound _ _ 17 milligram _ NOUN NN _ 21 amod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 50 _ NUM CD _ 20 compound _ _ 20 milligram _ NOUN NN _ 17 conj _ _ 21 versions _ NOUN NNS _ 12 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 drug _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 FDA _ PROPN NNP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 presented _ VERB VBD _ 4 ccomp _ _ 7 evidence _ NOUN NN _ 6 dobj _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 uncovered _ VERB VBD _ 7 acl:relcl _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 6 nmod _ _ 13 indicating _ VERB VBG _ 6 dep _ _ 14 that _ SCONJ IN _ 16 mark _ _ 15 Bolar _ PROPN NNP _ 16 nsubj _ _ 16 substituted _ VERB VBD _ 13 ccomp _ _ 17 the _ DET DT _ 19 det _ _ 18 brand-name _ ADJ JJ _ 19 amod _ _ 19 product _ NOUN NN _ 16 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 own _ ADJ JJ _ 16 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 gain _ VERB VB _ 16 advcl _ _ 25 government _ NOUN NN _ 26 compound _ _ 26 approval _ NOUN NN _ 24 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 sell _ VERB VB _ 26 acl _ _ 29 generic _ ADJ JJ _ 30 amod _ _ 30 versions _ NOUN NNS _ 28 dobj _ _ 31 of _ ADP IN _ 32 case _ _ 32 Macrodantin _ PROPN NNP _ 30 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 Bolar _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 denied _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 switched _ VERB VBD _ 3 ccomp _ _ 7 the _ DET DT _ 9 det _ _ 8 brand-name _ ADJ JJ _ 9 amod _ _ 9 product _ NOUN NN _ 6 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 own _ ADJ JJ _ 6 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 testing _ NOUN NN _ 6 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 West _ ADJ JJ _ 3 amod _ _ 3 German _ ADJ JJ _ 4 amod _ _ 4 retailer _ NOUN NN _ 9 nsubj _ _ 5 ASKO _ PROPN NNP _ 8 compound _ _ 6 Deutsche _ PROPN NNP _ 8 compound _ _ 7 Kaufhaus _ PROPN NNP _ 8 compound _ _ 8 AG _ PROPN NNP _ 4 dep _ _ 9 plans _ VERB VBZ _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 challenge _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 legality _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 19 case _ _ 15 a _ DET DT _ 19 det _ _ 16 widely _ ADV RB _ 17 advmod _ _ 17 employed _ VERB VBN _ 19 amod _ _ 18 anti-takeover _ ADJ JJ _ 19 amod _ _ 19 defense _ NOUN NN _ 13 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 companies _ NOUN NNS _ 19 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Netherlands _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 eventual _ ADJ JJ _ 4 amod _ _ 3 court _ NOUN NN _ 4 compound _ _ 4 decision _ NOUN NN _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 become _ VERB VB _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 landmark _ NOUN NN _ 6 xcomp _ _ 9 in _ ADP IN _ 12 case _ _ 10 Dutch _ ADJ JJ _ 12 amod _ _ 11 corporate _ ADJ JJ _ 12 amod _ _ 12 law _ NOUN NN _ 8 nmod _ _ 13 because _ SCONJ IN _ 23 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 lawsuit _ NOUN NN _ 23 nsubj _ _ 16 ASKO _ PROPN NNP _ 17 nsubj _ _ 17 plans _ VERB VBZ _ 15 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 file _ VERB VB _ 17 xcomp _ _ 20 would _ AUX MD _ 23 aux _ _ 21 be _ VERB VB _ 23 cop _ _ 22 the _ DET DT _ 23 det _ _ 23 first _ ADJ JJ _ 6 advcl _ _ 24 to _ PART TO _ 25 mark _ _ 25 challenge _ VERB VB _ 23 acl _ _ 26 the _ DET DT _ 28 det _ _ 27 entire _ ADJ JJ _ 28 amod _ _ 28 principle _ NOUN NN _ 25 dobj _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 practice _ NOUN NN _ 28 conj _ _ 31 of _ SCONJ IN _ 33 mark _ _ 32 companies _ NOUN NNS _ 33 nsubj _ _ 33 issuing _ VERB VBG _ 28 acl _ _ 34 voting _ ADJ NN _ 36 amod _ _ 35 preferred _ ADJ JJ _ 36 amod _ _ 36 shares _ NOUN NNS _ 33 dobj _ _ 37 to _ ADP TO _ 39 case _ _ 38 management-controlled _ ADJ JJ _ 39 amod _ _ 39 trusts _ NOUN NNS _ 33 nmod _ _ 40 to _ PART TO _ 41 mark _ _ 41 dilute _ VERB VB _ 33 advcl _ _ 42 voting _ NOUN VBG _ 43 compound _ _ 43 power _ NOUN NN _ 41 dobj _ _ 44 of _ ADP IN _ 46 case _ _ 45 common _ ADJ JJ _ 46 amod _ _ 46 stockholders _ NOUN NNS _ 43 nmod _ _ 47 . _ PUNCT . _ 6 punct _ _ 1 Up _ ADP IN _ 12 advmod _ _ 2 to _ ADP TO _ 3 case _ _ 3 now _ ADV RB _ 1 nmod _ _ 4 only _ ADJ RB _ 6 amod _ _ 5 specific _ ADJ JJ _ 6 amod _ _ 6 aspects _ NOUN NNS _ 12 nsubjpass _ _ 7 of _ ADP IN _ 9 case _ _ 8 these _ DET DT _ 9 det _ _ 9 defenses _ NOUN NNS _ 6 nmod _ _ 10 have _ AUX VBP _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 challenged _ VERB VBN _ 21 ccomp _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 though _ SCONJ IN _ 15 mark _ _ 15 unsuccessfully _ ADV RB _ 12 advcl _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 ASKO _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Dutch _ ADJ JJ _ 20 amod _ _ 20 lawyers _ NOUN NNS _ 21 nsubj _ _ 21 noted _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 Should _ AUX MD _ 4 aux _ _ 2 the _ DET DT _ 3 det _ _ 3 courts _ NOUN NNS _ 4 nsubj _ _ 4 uphold _ VERB VBP _ 16 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 validity _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 this _ DET DT _ 9 det _ _ 9 type _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 defense _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 ASKO _ PROPN NNP _ 16 nsubj _ _ 14 will _ AUX MD _ 16 aux _ _ 15 then _ ADV RB _ 16 advmod _ _ 16 ask _ VERB VB _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 court _ NOUN NN _ 16 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 overturn _ VERB VB _ 16 xcomp _ _ 21 such _ DET PDT _ 24 det:predet _ _ 22 a _ DET DT _ 24 det _ _ 23 vote-diluting _ ADJ JJ _ 24 amod _ _ 24 maneuver _ NOUN NN _ 20 dobj _ _ 25 recently _ ADV RB _ 26 advmod _ _ 26 deployed _ VERB VBN _ 24 acl _ _ 27 by _ ADP IN _ 30 case _ _ 28 Koninklijke _ PROPN NNP _ 30 compound _ _ 29 Ahold _ PROPN NNP _ 30 compound _ _ 30 NV _ PROPN NNP _ 26 nmod _ _ 31 . _ PUNCT . _ 16 punct _ _ 1 ASKO _ PROPN NNP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 7 det _ _ 4 Dutch-based _ ADJ JJ _ 7 amod _ _ 5 international _ ADJ JJ _ 7 amod _ _ 6 food _ NOUN NN _ 7 compound _ _ 7 retailer _ NOUN NN _ 8 nsubj _ _ 8 had _ VERB VBD _ 2 ccomp _ _ 9 n't _ PART RB _ 8 neg _ _ 10 reasonable _ ADJ JJ _ 11 amod _ _ 11 grounds _ NOUN NNS _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 issue _ VERB VB _ 11 acl _ _ 14 preferred _ ADJ JJ _ 15 amod _ _ 15 stock _ NOUN NN _ 13 dobj _ _ 16 to _ ADP TO _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 friendly _ ADJ JJ _ 19 amod _ _ 19 trust _ NOUN NN _ 13 nmod _ _ 20 and _ CONJ CC _ 13 cc _ _ 21 thus _ ADV RB _ 22 advmod _ _ 22 dilute _ VERB VB _ 13 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 worth _ NOUN JJ _ 22 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 voting _ NOUN NN _ 27 compound _ _ 27 power _ NOUN NN _ 24 conj _ _ 28 of _ ADP IN _ 29 case _ _ 29 ASKO _ PROPN NNP _ 24 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 other _ ADJ JJ _ 32 amod _ _ 32 shareholders _ NOUN NNS _ 29 conj _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Speaking _ VERB VBG _ 9 advcl _ _ 2 through _ ADP IN _ 5 case _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 Dutch _ ADJ JJ _ 5 amod _ _ 5 lawyers _ NOUN NNS _ 1 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 ASKO _ PROPN NNP _ 9 nsubj _ _ 8 also _ ADV RB _ 9 advmod _ _ 9 disclosed _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 holds _ VERB VBZ _ 9 ccomp _ _ 12 a _ DET DT _ 15 det _ _ 13 15 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 stake _ NOUN NN _ 11 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Ahold _ PROPN NNP _ 15 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 4 nsubjpass _ _ 2 was _ AUX VBD _ 4 auxpass _ _ 3 previously _ ADV RB _ 4 advmod _ _ 4 thought _ VERB VBN _ 0 root _ _ 5 ASKO _ PROPN NNP _ 6 nsubj _ _ 6 held _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 10 det _ _ 8 13.6 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 stake _ NOUN NN _ 6 dobj _ _ 11 that _ PRON WDT _ 13 nsubjpass _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 accumulated _ VERB VBN _ 10 acl:relcl _ _ 14 since _ ADP IN _ 15 case _ _ 15 July _ PROPN NNP _ 13 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Ahold _ PROPN NNP _ 2 nmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 his _ PRON PRP$ _ 7 nmod:poss _ _ 7 company _ NOUN NN _ 9 nsubj _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 confident _ ADJ JJ _ 5 ccomp _ _ 10 of _ ADP IN _ 13 case _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 own _ ADJ JJ _ 13 amod _ _ 13 position _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 the _ DET DT _ 16 det _ _ 16 propriety _ NOUN NN _ 13 conj _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 preferred-share _ NOUN JJ _ 20 compound _ _ 20 issue _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 termed _ VERB VBD _ 0 root _ _ 3 ASKO _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 legal _ ADJ JJ _ 6 amod _ _ 6 actions _ NOUN NNS _ 2 dobj _ _ 7 as _ ADP IN _ 9 case _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 unproductive _ ADJ JJ _ 2 advcl _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 to _ ADP TO _ 13 case _ _ 12 international _ ADJ JJ _ 13 amod _ _ 13 cooperation _ NOUN NN _ 9 nmod _ _ 14 among _ ADP IN _ 16 case _ _ 15 European _ ADJ JJ _ 16 amod _ _ 16 retailers _ NOUN NNS _ 13 nmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Chase _ PROPN NNP _ 6 compound _ _ 2 Manhattan _ PROPN NNP _ 6 compound _ _ 3 Bank _ PROPN NNP _ 6 compound _ _ 4 Chairman _ PROPN NNP _ 6 compound _ _ 5 Willard _ PROPN NNP _ 6 compound _ _ 6 Butcher _ PROPN NNP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 conservative _ ADJ JJ _ 10 amod _ _ 10 banker _ NOUN NN _ 0 root _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 a _ DET DT _ 14 det _ _ 13 loyal _ ADJ JJ _ 14 amod _ _ 14 Republican _ PROPN NNP _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 but _ CONJ CC _ 10 cc _ _ 17 on _ ADP IN _ 19 case _ _ 18 Friday _ PROPN NNP _ 19 compound _ _ 19 morning _ NOUN NN _ 21 nmod _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 had _ VERB VBD _ 10 conj _ _ 22 few _ ADJ JJ _ 24 amod _ _ 23 kind _ ADJ NN _ 24 amod _ _ 24 words _ NOUN NNS _ 21 dobj _ _ 25 for _ ADP IN _ 30 case _ _ 26 President _ PROPN NNP _ 27 compound _ _ 27 Bush _ PROPN NNP _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 economic _ ADJ JJ _ 30 amod _ _ 30 policy-making _ NOUN NN _ 21 nmod _ _ 31 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 38 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 are _ VERB VBP _ 38 ccomp _ _ 4 some _ DET DT _ 7 det _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 significant _ ADJ JJ _ 7 amod _ _ 7 issues _ NOUN NNS _ 3 nsubj _ _ 8 out _ ADV IN _ 9 advmod _ _ 9 there _ ADV RB _ 7 advmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 such _ ADJ JJ _ 15 case _ _ 12 as _ ADP IN _ 11 mwe _ _ 13 the _ DET DT _ 15 det _ _ 14 fiscal _ ADJ JJ _ 15 amod _ _ 15 deficit _ NOUN NN _ 7 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 trade _ NOUN NN _ 19 compound _ _ 19 deficit _ NOUN NN _ 15 appos _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 our _ PRON PRP$ _ 22 nmod:poss _ _ 22 relations _ NOUN NNS _ 15 appos _ _ 23 with _ ADP IN _ 24 case _ _ 24 Japan _ PROPN NNP _ 22 nmod _ _ 25 , _ PUNCT , _ 7 punct _ _ 26 that _ PRON WDT _ 27 nsubj _ _ 27 have _ VERB VBP _ 7 acl:relcl _ _ 28 to _ PART TO _ 31 mark _ _ 29 be _ VERB VB _ 31 cop _ _ 30 the _ DET DT _ 31 det _ _ 31 subject _ NOUN NN _ 27 xcomp _ _ 32 of _ ADP IN _ 34 case _ _ 33 major _ ADJ JJ _ 34 amod _ _ 34 initiatives _ NOUN NNS _ 31 nmod _ _ 35 , _ PUNCT , _ 38 punct _ _ 36 '' _ PUNCT '' _ 38 punct _ _ 37 he _ PRON PRP _ 38 nsubj _ _ 38 said _ VERB VBD _ 0 root _ _ 39 in _ ADP IN _ 41 case _ _ 40 an _ DET DT _ 41 det _ _ 41 interview _ NOUN NN _ 38 nmod _ _ 42 . _ PUNCT . _ 38 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 'd _ AUX MD _ 4 aux _ _ 4 like _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 see _ VERB VB _ 4 xcomp _ _ 7 that _ DET DT _ 8 det _ _ 8 initiative _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 I _ PRON PRP _ 12 nsubj _ _ 12 have _ VERB VBP _ 4 conj _ _ 13 n't _ PART RB _ 12 neg _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 a _ DET DT _ 6 det _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 shot _ NOUN NN _ 2 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 an _ DET DT _ 9 det _ _ 9 agenda _ NOUN NN _ 6 appos _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 few _ ADJ JJ _ 3 amod _ _ 3 hours _ NOUN NNS _ 4 nmod:npmod _ _ 4 later _ ADV RB _ 9 advmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 9 nsubj _ _ 9 dropped _ VERB VBD _ 0 root _ _ 10 190 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Politicians _ NOUN NNS _ 2 nsubj _ _ 2 tried _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 finger _ VERB NN _ 2 xcomp _ _ 5 each _ DET DT _ 4 dobj _ _ 6 other _ ADJ JJ _ 5 amod _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 blame _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 although _ SCONJ IN _ 14 mark _ _ 12 many _ ADJ JJ _ 13 amod _ _ 13 analysts _ NOUN NNS _ 14 nsubj _ _ 14 doubt _ VERB VBP _ 4 advcl _ _ 15 that _ SCONJ IN _ 19 mark _ _ 16 Washington _ PROPN NNP _ 19 nsubj _ _ 17 was _ VERB VBD _ 19 cop _ _ 18 singly _ ADV RB _ 19 advmod _ _ 19 responsible _ ADJ JJ _ 14 ccomp _ _ 20 for _ ADP IN _ 24 case _ _ 21 Wall _ PROPN NNP _ 22 compound _ _ 22 Street _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 woes _ NOUN NNS _ 19 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Butcher _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 comments _ NOUN NNS _ 6 nsubj _ _ 6 make _ VERB VBP _ 0 root _ _ 7 one _ NUM CD _ 8 nummod _ _ 8 thing _ NOUN NN _ 15 nsubj _ _ 9 clear _ ADJ JJ _ 15 dep _ _ 10 : _ PUNCT : _ 15 punct _ _ 11 Some _ DET DT _ 15 nsubj _ _ 12 on _ ADP IN _ 14 case _ _ 13 Wall _ PROPN NNP _ 14 compound _ _ 14 Street _ PROPN NNP _ 11 nmod _ _ 15 wonder _ VERB VB _ 6 xcomp _ _ 16 if _ SCONJ IN _ 20 mark _ _ 17 anyone _ NOUN NN _ 20 nsubj _ _ 18 is _ VERB VBZ _ 20 cop _ _ 19 in _ ADP IN _ 20 case _ _ 20 charge _ NOUN NN _ 15 advcl _ _ 21 of _ ADP IN _ 23 case _ _ 22 economic _ ADJ JJ _ 23 amod _ _ 23 policy _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 this _ PRON DT _ 1 dobj _ _ 3 : _ PUNCT : _ 1 punct _ _ 1 -- _ PUNCT : _ 10 punct _ _ 2 By _ ADP IN _ 5 case _ _ 3 11:59 _ NUM CD _ 5 nummod _ _ 4 p.m. _ ADV NN _ 5 advmod _ _ 5 tonight _ NOUN NN _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 President _ PROPN NNP _ 8 compound _ _ 8 Bush _ PROPN NNP _ 10 nsubj _ _ 9 must _ AUX MD _ 10 aux _ _ 10 order _ VERB VB _ 0 root _ _ 11 $ _ SYM $ _ 10 dobj _ _ 12 16 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 of _ ADP IN _ 18 case _ _ 15 automatic _ ADJ JJ _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 across-the-board _ ADJ JJ _ 18 amod _ _ 18 cuts _ NOUN NNS _ 11 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 government _ NOUN NN _ 21 compound _ _ 21 spending _ NOUN NN _ 18 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 comply _ VERB VB _ 10 xcomp _ _ 24 with _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 Gramm-Rudman _ PROPN NNP _ 28 compound _ _ 27 budget _ NOUN NN _ 28 compound _ _ 28 law _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 cuts _ NOUN NNS _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 necessary _ ADJ JJ _ 0 root _ _ 5 because _ SCONJ IN _ 11 mark _ _ 6 Congress _ PROPN NNP _ 11 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 administration _ NOUN NN _ 6 conj _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 failed _ VERB VBN _ 4 advcl _ _ 12 to _ PART TO _ 13 mark _ _ 13 reach _ VERB VB _ 11 xcomp _ _ 14 agreement _ NOUN NN _ 13 dobj _ _ 15 on _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 deficit-cutting _ ADJ JJ _ 18 amod _ _ 18 bill _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 simply _ ADV RB _ 6 advmod _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 have _ VERB VB _ 33 ccomp _ _ 7 strong _ ADJ JJ _ 8 amod _ _ 8 leadership _ NOUN NN _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 try _ VERB VB _ 8 acl _ _ 11 to _ PART TO _ 12 mark _ _ 12 reduce _ VERB VB _ 10 xcomp _ _ 13 the _ DET DT _ 14 det _ _ 14 deficit _ NOUN NN _ 12 dobj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 make _ VERB VB _ 12 conj _ _ 17 tough _ ADJ JJ _ 18 amod _ _ 18 choices _ NOUN NNS _ 16 dobj _ _ 19 , _ PUNCT , _ 33 punct _ _ 20 '' _ PUNCT '' _ 33 punct _ _ 21 House _ PROPN NNP _ 26 compound _ _ 22 Budget _ PROPN NNP _ 26 compound _ _ 23 Committee _ PROPN NNP _ 26 compound _ _ 24 Chairman _ PROPN NNP _ 26 compound _ _ 25 Leon _ PROPN NNP _ 26 compound _ _ 26 Panetta _ PROPN NNP _ 33 nsubj _ _ 27 -LRB- _ PUNCT -LRB- _ 28 punct _ _ 28 D. _ PROPN NNP _ 26 appos _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 Calif _ PROPN NNP _ 28 dep _ _ 31 . _ PUNCT . _ 30 punct _ _ 32 -RRB- _ PUNCT -RRB- _ 28 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 yesterday _ NOUN NN _ 33 nmod:tmod _ _ 35 on _ ADP IN _ 37 case _ _ 36 NBC _ PROPN NNP _ 37 compound _ _ 37 News _ PROPN NNP _ 33 nmod _ _ 38 's _ PART POS _ 37 case _ _ 39 `` _ PUNCT `` _ 37 punct _ _ 40 Meet _ PROPN VB _ 42 dep _ _ 41 the _ DET DT _ 42 det _ _ 42 Press _ PROPN NNP _ 37 dep _ _ 43 . _ PUNCT . _ 33 punct _ _ 44 '' _ PUNCT '' _ 33 punct _ _ 1 -- _ PUNCT : _ 17 punct _ _ 2 For _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 last _ ADJ JJ _ 6 amod _ _ 5 two _ NUM CD _ 6 nummod _ _ 6 weeks _ NOUN NNS _ 17 nmod _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 Bush _ PROPN NNP _ 10 compound _ _ 10 administration _ NOUN NN _ 17 nsubjpass _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 Federal _ PROPN NNP _ 14 compound _ _ 14 Reserve _ PROPN NNP _ 10 conj _ _ 15 have _ AUX VBP _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 engaged _ VERB VBN _ 0 root _ _ 18 in _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 semi-public _ ADJ JJ _ 21 amod _ _ 21 battle _ NOUN NN _ 17 nmod _ _ 22 over _ ADP IN _ 25 case _ _ 23 international _ ADJ JJ _ 25 amod _ _ 24 economic _ ADJ JJ _ 25 amod _ _ 25 policy _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 administration _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 trying _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 push _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 dollar _ NOUN NN _ 7 dobj _ _ 10 lower _ ADV RBR _ 7 advmod _ _ 11 ; _ PUNCT : _ 5 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 Fed _ PROPN NNP _ 16 nsubj _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 been _ AUX VBN _ 16 aux _ _ 16 resisting _ VERB VBG _ 5 parataxis _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 One _ NUM CD _ 14 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 things _ NOUN NNS _ 2 nmod _ _ 6 that _ PRON WDT _ 7 nsubj _ _ 7 continues _ VERB VBZ _ 5 acl:relcl _ _ 8 to _ PART TO _ 9 mark _ _ 9 worry _ VERB VB _ 7 xcomp _ _ 10 me _ PRON PRP _ 9 dobj _ _ 11 is _ VERB VBZ _ 14 cop _ _ 12 this _ DET DT _ 14 det _ _ 13 monetary _ ADJ JJ _ 14 amod _ _ 14 warfare _ NOUN NN _ 26 ccomp _ _ 15 between _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 Treasury _ PROPN NNP _ 18 compound _ _ 18 Department _ PROPN NNP _ 14 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 the _ DET DT _ 23 det _ _ 21 Federal _ PROPN NNP _ 23 compound _ _ 22 Reserve _ PROPN NNP _ 23 compound _ _ 23 Board _ PROPN NNP _ 18 conj _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 '' _ PUNCT '' _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 Lawrence _ PROPN NNP _ 28 compound _ _ 28 Kudlow _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 a _ DET DT _ 36 det _ _ 31 Bear _ PROPN NNP _ 36 compound _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 Stearns _ PROPN NNP _ 31 conj _ _ 34 & _ CONJ CC _ 31 cc _ _ 35 Co. _ PROPN NNP _ 31 conj _ _ 36 economist _ NOUN NN _ 28 appos _ _ 37 , _ PUNCT , _ 26 punct _ _ 38 on _ ADP IN _ 43 case _ _ 39 ABC _ PROPN NNP _ 43 nmod:poss _ _ 40 's _ PART POS _ 39 case _ _ 41 `` _ PUNCT `` _ 43 punct _ _ 42 This _ PROPN DT _ 43 compound _ _ 43 Week _ PROPN NN _ 26 nmod _ _ 44 . _ PUNCT . _ 26 punct _ _ 45 '' _ PUNCT '' _ 26 punct _ _ 1 -- _ PUNCT : _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 administration _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 sent _ VERB VBN _ 0 root _ _ 6 out _ ADP RP _ 5 advmod _ _ 7 confusing _ ADJ JJ _ 8 amod _ _ 8 signals _ NOUN NNS _ 5 dobj _ _ 9 about _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 response _ NOUN NN _ 8 nmod _ _ 12 to _ ADP TO _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 recent _ ADJ JJ _ 15 amod _ _ 15 spate _ NOUN NN _ 11 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 airline _ NOUN NN _ 18 compound _ _ 18 takeovers _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 month _ NOUN NN _ 8 nmod:tmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Transportation _ PROPN NNP _ 7 compound _ _ 5 Secretary _ PROPN NNP _ 7 compound _ _ 6 Sam _ PROPN NNP _ 7 compound _ _ 7 Skinner _ PROPN NNP _ 8 nsubj _ _ 8 forced _ VERB VBD _ 0 root _ _ 9 Northwest _ PROPN NNP _ 10 compound _ _ 10 Airlines _ PROPN NNP _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 reduce _ VERB VB _ 8 xcomp _ _ 13 a _ DET DT _ 14 det _ _ 14 stake _ NOUN NN _ 12 dobj _ _ 15 held _ VERB VBN _ 14 acl _ _ 16 by _ ADP IN _ 20 case _ _ 17 KLM _ PROPN NNP _ 20 compound _ _ 18 Royal _ PROPN NNP _ 20 compound _ _ 19 Dutch _ PROPN NNP _ 20 compound _ _ 20 Airlines _ PROPN NNPS _ 15 nmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 he _ PRON PRP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 since _ ADV IN _ 5 advmod _ _ 5 run _ VERB VBN _ 0 root _ _ 6 into _ ADP IN _ 7 case _ _ 7 opposition _ NOUN NN _ 5 nmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 Treasury _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 White _ PROPN NNP _ 14 compound _ _ 14 House _ PROPN NNP _ 10 conj _ _ 15 over _ ADP IN _ 17 case _ _ 16 that _ DET DT _ 17 det _ _ 17 decision _ NOUN NN _ 7 nmod _ _ 18 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 he _ PRON PRP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 kept _ VERB VBN _ 0 root _ _ 5 mum _ ADJ NN _ 4 xcomp _ _ 6 on _ SCONJ IN _ 11 mark _ _ 7 how _ ADV WRB _ 11 advmod _ _ 8 his _ PRON PRP$ _ 9 nmod:poss _ _ 9 decision _ NOUN NN _ 11 nsubj _ _ 10 might _ AUX MD _ 11 aux _ _ 11 affect _ VERB VB _ 5 advcl _ _ 12 a _ DET DT _ 13 det _ _ 13 bid _ NOUN NN _ 11 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 United _ PROPN NNP _ 16 compound _ _ 16 Airlines _ PROPN NNPS _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 which _ PRON WDT _ 19 nsubj _ _ 19 includes _ VERB VBZ _ 13 acl:relcl _ _ 20 a _ DET DT _ 22 det _ _ 21 big _ ADJ JJ _ 22 amod _ _ 22 stake _ NOUN NN _ 19 dobj _ _ 23 by _ ADP IN _ 26 case _ _ 24 British _ PROPN NNP _ 26 compound _ _ 25 Airways _ PROPN NNPS _ 26 compound _ _ 26 PLC _ PROPN NNP _ 22 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 say _ VERB VBP _ 0 root _ _ 4 uncertainty _ NOUN NN _ 12 nsubj _ _ 5 about _ ADP IN _ 9 case _ _ 6 Washington _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 anti-takeover _ ADJ JJ _ 9 amod _ _ 9 policy _ NOUN NN _ 4 nmod _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 one _ NUM CD _ 12 nummod _ _ 12 reason _ NOUN NN _ 3 ccomp _ _ 13 that _ ADP WDT _ 20 advmod _ _ 14 financing _ NOUN NN _ 20 nsubj _ _ 15 for _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 United _ PROPN NNP _ 19 compound _ _ 18 Airlines _ PROPN NNPS _ 19 compound _ _ 19 takeover _ NOUN NN _ 14 nmod _ _ 20 fell _ VERB VBD _ 12 dep _ _ 21 through _ ADP RB _ 20 compound:prt _ _ 22 -- _ PUNCT : _ 12 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 event _ NOUN NN _ 12 dep _ _ 25 that _ PRON WDT _ 26 nsubj _ _ 26 triggered _ VERB VBD _ 24 acl:relcl _ _ 27 the _ DET DT _ 29 det _ _ 28 market _ NOUN NN _ 29 compound _ _ 29 drop _ NOUN NN _ 26 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 ways _ NOUN NNS _ 14 nmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 backdrop _ NOUN NN _ 14 nsubj _ _ 7 to _ ADP TO _ 11 case _ _ 8 Friday _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 decline _ NOUN NN _ 6 nmod _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 eerily _ ADV RB _ 14 advmod _ _ 14 similar _ ADJ JJ _ 0 root _ _ 15 to _ ADP TO _ 16 case _ _ 16 that _ PRON DT _ 14 nmod _ _ 17 of _ ADP IN _ 22 case _ _ 18 October _ PROPN NNP _ 22 nmod:poss _ _ 19 1987 _ NUM CD _ 18 nummod _ _ 20 's _ PART POS _ 18 case _ _ 21 508-point _ ADJ JJ _ 22 amod _ _ 22 crash _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 Then _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 as _ ADP IN _ 4 case _ _ 4 now _ ADV RB _ 11 advcl _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 budget _ NOUN NN _ 8 compound _ _ 8 debate _ NOUN NN _ 11 nsubj _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 behind _ ADP IN _ 11 case _ _ 11 schedule _ NOUN NN _ 0 root _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 automatic _ ADJ JJ _ 15 amod _ _ 14 spending _ ADJ NN _ 15 amod _ _ 15 cuts _ NOUN NNS _ 18 nsubj _ _ 16 were _ VERB VBD _ 18 cop _ _ 17 within _ ADP IN _ 18 case _ _ 18 days _ NOUN NNS _ 11 conj _ _ 19 of _ SCONJ IN _ 20 mark _ _ 20 taking _ VERB VBG _ 18 acl _ _ 21 hold _ NOUN NN _ 20 dobj _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Treasury _ PROPN NNP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 locked _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 battle _ NOUN NN _ 4 nmod _ _ 8 over _ ADP IN _ 11 case _ _ 9 international _ ADJ JJ _ 11 amod _ _ 10 economic _ ADJ JJ _ 11 amod _ _ 11 policy _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 although _ SCONJ IN _ 22 mark _ _ 14 at _ ADP IN _ 16 case _ _ 15 that _ DET DT _ 16 det _ _ 16 time _ NOUN NN _ 22 nmod _ _ 17 it _ PRON PRP _ 22 nsubj _ _ 18 was _ VERB VBD _ 22 cop _ _ 19 with _ ADP IN _ 22 case _ _ 20 West _ ADJ JJ _ 22 amod _ _ 21 German _ ADJ JJ _ 22 amod _ _ 22 officials _ NOUN NNS _ 4 advcl _ _ 23 rather _ ADV RB _ 27 case _ _ 24 than _ ADP IN _ 23 mwe _ _ 25 the _ DET DT _ 27 det _ _ 26 Federal _ PROPN NNP _ 27 compound _ _ 27 Reserve _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 And _ CONJ CC _ 26 cc _ _ 2 concern _ NOUN NN _ 26 nsubj _ _ 3 about _ ADP IN _ 5 case _ _ 4 official _ ADJ JJ _ 5 amod _ _ 5 actions _ NOUN NNS _ 2 nmod _ _ 6 aimed _ VERB VBN _ 5 acl _ _ 7 at _ ADP IN _ 8 case _ _ 8 takeovers _ NOUN NNS _ 6 nmod _ _ 9 -- _ PUNCT : _ 15 punct _ _ 10 then _ ADV RB _ 15 dep _ _ 11 by _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 tax-writing _ ADJ JJ _ 15 amod _ _ 14 House _ PROPN NNP _ 15 compound _ _ 15 Ways _ PROPN NNPS _ 6 dep _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Means _ PROPN NNP _ 18 compound _ _ 18 Committee _ PROPN NNP _ 15 conj _ _ 19 rather _ ADV RB _ 23 case _ _ 20 than _ ADP IN _ 19 mwe _ _ 21 the _ DET DT _ 23 det _ _ 22 Transportation _ PROPN NNP _ 23 compound _ _ 23 Department _ PROPN NNP _ 15 nmod _ _ 24 -- _ PUNCT : _ 15 punct _ _ 25 were _ AUX VBD _ 26 aux _ _ 26 making _ VERB VBG _ 0 root _ _ 27 markets _ NOUN NNS _ 28 nsubj _ _ 28 nervous _ ADJ JJ _ 26 xcomp _ _ 29 . _ PUNCT . _ 26 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 1987 _ NUM CD _ 3 nummod _ _ 3 crash _ NOUN NN _ 4 nsubj _ _ 4 brought _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 Reagan _ PROPN NNP _ 7 compound _ _ 7 administration _ NOUN NN _ 4 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Democratic _ ADJ JJ _ 10 amod _ _ 10 lawmakers _ NOUN NNS _ 7 conj _ _ 11 to _ ADP TO _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 table _ NOUN NN _ 4 nmod _ _ 14 for _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 first _ ADJ JJ _ 18 amod _ _ 17 budget _ NOUN NN _ 18 compound _ _ 18 summit _ NOUN NN _ 4 nmod _ _ 19 , _ PUNCT , _ 4 punct _ _ 20 resulting _ VERB VBG _ 4 advcl _ _ 21 in _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 two-year _ ADJ JJ _ 24 amod _ _ 24 plan _ NOUN NN _ 20 nmod _ _ 25 to _ PART TO _ 26 mark _ _ 26 reduce _ VERB VB _ 24 acl _ _ 27 the _ DET DT _ 28 det _ _ 28 deficit _ NOUN NN _ 26 dobj _ _ 29 by _ ADP IN _ 32 case _ _ 30 more _ ADJ JJR _ 32 advmod _ _ 31 than _ ADP IN _ 30 mwe _ _ 32 $ _ SYM $ _ 26 nmod _ _ 33 76 _ NUM CD _ 34 compound _ _ 34 billion _ NUM CD _ 32 nummod _ _ 35 -- _ PUNCT : _ 20 punct _ _ 36 even _ ADV RB _ 41 advmod _ _ 37 though _ SCONJ IN _ 41 mark _ _ 38 the _ DET DT _ 39 det _ _ 39 deficit _ NOUN NN _ 41 nsubj _ _ 40 actually _ ADV RB _ 41 advmod _ _ 41 rose _ VERB VBD _ 20 advcl _ _ 42 by _ ADP IN _ 44 case _ _ 43 nearly _ ADV RB _ 44 advmod _ _ 44 $ _ SYM $ _ 41 nmod _ _ 45 12 _ NUM CD _ 46 compound _ _ 46 billion _ NUM CD _ 44 nummod _ _ 47 during _ ADP IN _ 49 case _ _ 48 that _ DET DT _ 49 det _ _ 49 period _ NOUN NN _ 41 nmod _ _ 50 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 barring _ VERB VBG _ 5 case _ _ 4 further _ ADJ JJ _ 5 amod _ _ 5 drops _ NOUN NNS _ 17 nmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 5 nmod _ _ 9 this _ DET DT _ 10 det _ _ 10 week _ NOUN NN _ 5 nmod:tmod _ _ 11 , _ PUNCT , _ 17 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 similar _ ADJ JJ _ 14 amod _ _ 14 outcome _ NOUN NN _ 17 nsubj _ _ 15 does _ AUX VBZ _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 seem _ VERB VB _ 0 root _ _ 18 likely _ ADV RB _ 17 xcomp _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 17 nmod:tmod _ _ 21 . _ PUNCT . _ 17 punct _ _ 1 Lawmakers _ NOUN NNS _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 administration _ NOUN NN _ 4 compound _ _ 4 officials _ NOUN NNS _ 1 conj _ _ 5 agree _ VERB VBP _ 0 root _ _ 6 that _ SCONJ IN _ 16 mark _ _ 7 Friday _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 drop _ NOUN NN _ 16 nsubj _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 by _ ADP IN _ 12 case _ _ 12 itself _ PRON PRP _ 16 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 is _ VERB VBZ _ 16 cop _ _ 15 n't _ PART RB _ 16 neg _ _ 16 enough _ ADJ JJ _ 5 ccomp _ _ 17 to _ PART TO _ 18 mark _ _ 18 force _ VERB VB _ 16 xcomp _ _ 19 both _ DET DT _ 20 det _ _ 20 sides _ NOUN NNS _ 18 dobj _ _ 21 back _ ADV RB _ 18 advmod _ _ 22 to _ ADP TO _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 table _ NOUN NN _ 21 nmod _ _ 25 to _ PART TO _ 26 mark _ _ 26 try _ VERB VB _ 18 xcomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 reach _ VERB VB _ 26 xcomp _ _ 29 a _ DET DT _ 31 det _ _ 30 deficit-reduction _ NOUN JJ _ 31 compound _ _ 31 agreement _ NOUN NN _ 28 dobj _ _ 32 that _ PRON WDT _ 36 nsubj _ _ 33 would _ AUX MD _ 36 aux _ _ 34 be _ VERB VB _ 36 cop _ _ 35 more _ ADV RBR _ 36 advmod _ _ 36 serious _ ADJ JJ _ 31 acl:relcl _ _ 37 and _ CONJ CC _ 36 cc _ _ 38 more _ ADV RBR _ 39 advmod _ _ 39 far-reaching _ ADJ JJ _ 36 conj _ _ 40 than _ ADP IN _ 45 case _ _ 41 last _ ADJ JJ _ 42 amod _ _ 42 spring _ NOUN NN _ 45 nmod:poss _ _ 43 's _ PART POS _ 42 case _ _ 44 gimmick-ridden _ ADJ JJ _ 45 amod _ _ 45 plan _ NOUN NN _ 36 nmod _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 which _ PRON WDT _ 52 nsubjpass _ _ 48 still _ ADV RB _ 52 advmod _ _ 49 is _ AUX VBZ _ 52 auxpass _ _ 50 n't _ PART RB _ 52 neg _ _ 51 fully _ ADV RB _ 52 advmod _ _ 52 implemented _ VERB VBN _ 45 acl:relcl _ _ 53 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 15 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 biggest _ ADJ JJS _ 5 amod _ _ 5 reasons _ NOUN NNS _ 1 nmod _ _ 6 that _ ADP WDT _ 11 advmod _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 talks _ NOUN NNS _ 11 nsubj _ _ 9 are _ VERB VBP _ 11 cop _ _ 10 n't _ PART RB _ 11 neg _ _ 11 likely _ ADJ JJ _ 5 dep _ _ 12 to _ PART TO _ 13 mark _ _ 13 come _ VERB VB _ 11 xcomp _ _ 14 about _ ADP RB _ 13 compound:prt _ _ 15 is _ VERB VBZ _ 0 root _ _ 16 that _ SCONJ IN _ 30 mark _ _ 17 , _ PUNCT , _ 30 punct _ _ 18 as _ SCONJ IN _ 20 mark _ _ 19 everyone _ NOUN NN _ 20 nsubj _ _ 20 learned _ VERB VBD _ 30 advcl _ _ 21 in _ ADP IN _ 22 case _ _ 22 1987 _ NUM CD _ 20 nmod _ _ 23 , _ PUNCT , _ 30 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 economy _ NOUN NN _ 30 nsubj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 the _ DET DT _ 28 det _ _ 28 market _ NOUN NN _ 25 conj _ _ 29 can _ AUX MD _ 30 aux _ _ 30 survive _ VERB VB _ 15 ccomp _ _ 31 a _ DET DT _ 34 det _ _ 32 one-day _ ADJ JJ _ 34 amod _ _ 33 508-point _ ADJ JJ _ 34 amod _ _ 34 tumble _ NOUN NN _ 30 dobj _ _ 35 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 Everybody _ NOUN NN _ 3 nsubj _ _ 3 thought _ VERB VBD _ 24 ccomp _ _ 4 we _ PRON PRP _ 6 nsubj _ _ 5 were _ AUX VBD _ 6 aux _ _ 6 looking _ VERB VBG _ 3 dep _ _ 7 at _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 repetition _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 1929 _ NUM CD _ 9 nmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 that _ SCONJ IN _ 16 mark _ _ 14 we _ PRON PRP _ 16 nsubj _ _ 15 were _ AUX VBD _ 16 aux _ _ 16 looking _ VERB VBG _ 6 dep _ _ 17 at _ ADP IN _ 19 case _ _ 18 a _ DET DT _ 19 det _ _ 19 recession _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 '' _ PUNCT '' _ 24 punct _ _ 22 Rep. _ PROPN NNP _ 23 compound _ _ 23 Panetta _ PROPN NNP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 yesterday _ NOUN NN _ 24 nmod:tmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 an _ DET DT _ 28 det _ _ 28 interview _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 That _ PRON DT _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 happen _ VERB VB _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 learned _ VERB VBD _ 0 root _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 could _ AUX MD _ 5 aux _ _ 5 survive _ VERB VB _ 2 ccomp _ _ 6 it _ PRON PRP _ 5 dobj _ _ 7 without _ ADP IN _ 9 case _ _ 8 much _ ADJ JJ _ 9 amod _ _ 9 problem _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 administration _ NOUN NN _ 3 compound _ _ 3 officials _ NOUN NNS _ 5 nsubj _ _ 4 privately _ ADV RB _ 5 advmod _ _ 5 agree _ VERB VBP _ 0 root _ _ 6 with _ ADP IN _ 8 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Panetta _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 who _ PRON WP _ 11 nsubj _ _ 11 said _ VERB VBD _ 8 acl:relcl _ _ 12 a _ DET DT _ 14 det _ _ 13 precipitous _ ADJ JJ _ 14 amod _ _ 14 drop _ NOUN NN _ 19 nsubj _ _ 15 this _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:tmod _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 going _ VERB VBG _ 11 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 force _ VERB VB _ 19 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 president _ NOUN NN _ 21 dobj _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 Congress _ PROPN NNP _ 23 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 take _ VERB VB _ 21 xcomp _ _ 28 a _ DET DT _ 31 det _ _ 29 much _ ADJ JJ _ 31 amod _ _ 30 harder _ ADJ JJR _ 29 dep _ _ 31 look _ NOUN NN _ 27 dobj _ _ 32 at _ ADP IN _ 34 case _ _ 33 fiscal _ ADJ JJ _ 34 amod _ _ 34 policy _ NOUN NN _ 31 nmod _ _ 35 . _ PUNCT . _ 5 punct _ _ 36 '' _ PUNCT '' _ 5 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 that _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 there _ PRON EX _ 8 expl _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 plenty _ NOUN JJ _ 0 root _ _ 9 of _ ADP IN _ 10 case _ _ 10 blame _ NOUN NN _ 8 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 go _ VERB VB _ 8 acl _ _ 13 around _ ADP RB _ 12 compound:prt _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 49 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 49 ccomp _ _ 4 an _ DET DT _ 6 det _ _ 5 underlying _ ADJ JJ _ 6 amod _ _ 6 concern _ NOUN NN _ 3 nsubj _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 part _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 American _ ADJ JJ _ 13 amod _ _ 13 people _ NOUN NNS _ 9 nmod _ _ 14 -- _ PUNCT : _ 18 punct _ _ 15 and _ CONJ CC _ 18 cc _ _ 16 there _ ADV EX _ 18 nsubj _ _ 17 should _ AUX MD _ 18 aux _ _ 18 be _ VERB VB _ 6 dep _ _ 19 - _ PUNCT : _ 18 punct _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 administration _ NOUN NN _ 25 nsubj _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 not _ PART RB _ 25 neg _ _ 25 gone _ VERB VBN _ 6 dep _ _ 26 far _ ADV RB _ 27 advmod _ _ 27 enough _ ADV RB _ 25 advmod _ _ 28 in _ SCONJ IN _ 29 mark _ _ 29 cutting _ VERB VBG _ 25 advcl _ _ 30 this _ DET DT _ 31 det _ _ 31 deficit _ NOUN NN _ 29 dobj _ _ 32 and _ CONJ CC _ 25 cc _ _ 33 that _ SCONJ IN _ 37 mark _ _ 34 Congress _ PROPN NNP _ 37 nsubj _ _ 35 has _ AUX VBZ _ 37 aux _ _ 36 been _ VERB VBN _ 37 cop _ _ 37 unwilling _ ADJ JJ _ 25 conj _ _ 38 to _ PART TO _ 39 mark _ _ 39 cut _ VERB VB _ 37 xcomp _ _ 40 what _ PRON WP _ 43 dobj _ _ 41 the _ DET DT _ 42 det _ _ 42 administration _ NOUN NN _ 43 nsubj _ _ 43 asked _ VERB VBD _ 39 ccomp _ _ 44 us _ PRON PRP _ 43 dobj _ _ 45 to _ PART TO _ 46 mark _ _ 46 cut _ VERB VB _ 43 xcomp _ _ 47 , _ PUNCT , _ 49 punct _ _ 48 '' _ PUNCT '' _ 49 punct _ _ 49 said _ VERB VBD _ 0 root _ _ 50 Senate _ PROPN NNP _ 55 compound _ _ 51 Finance _ PROPN NNP _ 55 compound _ _ 52 Committee _ PROPN NNP _ 55 compound _ _ 53 Chairman _ PROPN NNP _ 55 compound _ _ 54 Lloyd _ PROPN NNP _ 55 compound _ _ 55 Bentsen _ PROPN NNP _ 49 nsubj _ _ 56 -LRB- _ PUNCT -LRB- _ 57 punct _ _ 57 D. _ PROPN NNP _ 55 appos _ _ 58 , _ PUNCT , _ 57 punct _ _ 59 Texas _ PROPN NNP _ 57 dep _ _ 60 -RRB- _ PUNCT -RRB- _ 57 punct _ _ 61 . _ PUNCT . _ 49 punct _ _ 1 Nevertheless _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 clearly _ ADV RB _ 6 advmod _ _ 5 will _ AUX MD _ 6 aux _ _ 6 take _ VERB VB _ 0 root _ _ 7 more _ ADJ JJR _ 6 dobj _ _ 8 than _ ADP IN _ 12 case _ _ 9 Friday _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 190-point _ ADJ JJ _ 12 amod _ _ 12 decline _ NOUN NN _ 7 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 overcome _ VERB VB _ 6 advcl _ _ 15 the _ DET DT _ 17 det _ _ 16 bitter _ ADJ JJ _ 17 amod _ _ 17 feelings _ NOUN NNS _ 14 dobj _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 developed _ VERB VBN _ 17 acl:relcl _ _ 21 between _ ADP IN _ 22 case _ _ 22 lawmakers _ NOUN NNS _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 White _ PROPN NNP _ 29 compound _ _ 25 House _ PROPN NNP _ 29 compound _ _ 26 Budget _ PROPN NNP _ 29 compound _ _ 27 Director _ PROPN NNP _ 29 compound _ _ 28 Richard _ PROPN NNP _ 29 compound _ _ 29 Darman _ PROPN NNP _ 22 conj _ _ 30 over _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 capital-gains _ NOUN NNS _ 33 compound _ _ 33 fight _ NOUN NN _ 20 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 Hill _ PROPN NNP _ 2 compound _ _ 2 Democrats _ PROPN NNPS _ 5 nsubj _ _ 3 are _ VERB VBP _ 5 cop _ _ 4 particularly _ ADV RB _ 5 advmod _ _ 5 angry _ ADJ JJ _ 0 root _ _ 6 over _ ADP IN _ 10 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Bush _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 claim _ NOUN NN _ 5 nmod _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 capital-gains _ NOUN NNS _ 14 compound _ _ 14 cut _ NOUN NN _ 16 nsubj _ _ 15 was _ VERB VBD _ 16 cop _ _ 16 part _ NOUN NN _ 10 ccomp _ _ 17 of _ ADP IN _ 21 case _ _ 18 April _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 budget _ NOUN NN _ 21 compound _ _ 21 accord _ NOUN NN _ 16 nmod _ _ 22 and _ CONJ CC _ 10 cc _ _ 23 his _ PRON PRP$ _ 24 nmod:poss _ _ 24 insistence _ NOUN NN _ 10 conj _ _ 25 on _ SCONJ IN _ 26 mark _ _ 26 combining _ VERB VBG _ 24 acl _ _ 27 it _ PRON PRP _ 26 dobj _ _ 28 with _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 deficit-reduction _ NOUN JJ _ 31 compound _ _ 31 legislation _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 40 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 40 ccomp _ _ 4 no _ DET DT _ 5 neg _ _ 5 prospect _ NOUN NN _ 3 nsubj _ _ 6 of _ ADP IN _ 10 case _ _ 7 any _ DET DT _ 10 det _ _ 8 so-called _ ADJ JJ _ 10 amod _ _ 9 grand _ ADJ JJ _ 10 amod _ _ 10 compromise _ NOUN NN _ 5 nmod _ _ 11 or _ CONJ CC _ 10 cc _ _ 12 deal _ NOUN VB _ 10 conj _ _ 13 next _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 nmod:tmod _ _ 15 because _ SCONJ IN _ 21 mark _ _ 16 the _ DET DT _ 17 det _ _ 17 administration _ NOUN NN _ 21 nsubj _ _ 18 simply _ ADV RB _ 21 advmod _ _ 19 did _ AUX VBD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 live _ VERB VB _ 3 advcl _ _ 22 up _ ADP RP _ 21 compound:prt _ _ 23 to _ ADP TO _ 27 case _ _ 24 this _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 deal _ NOUN NN _ 21 nmod _ _ 28 , _ PUNCT , _ 40 punct _ _ 29 '' _ PUNCT '' _ 40 punct _ _ 30 Senate _ PROPN NNP _ 34 compound _ _ 31 Majority _ PROPN NNP _ 34 compound _ _ 32 Leader _ PROPN NNP _ 34 compound _ _ 33 George _ PROPN NNP _ 34 compound _ _ 34 Mitchell _ PROPN NNP _ 40 nsubj _ _ 35 -LRB- _ PUNCT -LRB- _ 36 punct _ _ 36 D. _ PROPN NNP _ 34 appos _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 Maine _ PROPN NNP _ 36 dep _ _ 39 -RRB- _ PUNCT -RRB- _ 36 punct _ _ 40 said _ VERB VBD _ 0 root _ _ 41 yesterday _ NOUN NN _ 40 nmod:tmod _ _ 42 on _ ADP IN _ 44 case _ _ 43 CBS _ PROPN NNP _ 44 compound _ _ 44 News _ PROPN NNP _ 40 nmod _ _ 45 's _ PART POS _ 44 case _ _ 46 `` _ PUNCT `` _ 44 punct _ _ 47 Face _ PROPN NNP _ 49 dep _ _ 48 the _ DET DT _ 49 det _ _ 49 Nation _ PROPN NNP _ 44 dep _ _ 50 . _ PUNCT . _ 40 punct _ _ 51 '' _ PUNCT '' _ 40 punct _ _ 1 During _ ADP IN _ 5 case _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 week _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 maneuverings _ NOUN NNS _ 16 nmod _ _ 6 on _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 deficit-cutting _ ADJ JJ _ 9 amod _ _ 9 bill _ NOUN NN _ 5 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 the _ DET DT _ 13 det _ _ 12 capital-gains _ NOUN NNS _ 13 compound _ _ 13 issue _ NOUN NN _ 9 conj _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 there _ PRON EX _ 16 expl _ _ 16 were _ VERB VBD _ 0 root _ _ 17 signs _ NOUN NNS _ 16 nsubj _ _ 18 that _ SCONJ IN _ 26 mark _ _ 19 Senate _ PROPN NNP _ 20 compound _ _ 20 Republicans _ PROPN NNPS _ 26 nsubj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 the _ DET DT _ 23 det _ _ 23 administration _ NOUN NN _ 20 conj _ _ 24 were _ VERB VBD _ 26 cop _ _ 25 at _ ADP IN _ 26 case _ _ 26 odds _ NOUN NNS _ 17 ccomp _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 very _ ADJ JJ _ 4 amod _ _ 4 moment _ NOUN NN _ 26 nmod _ _ 5 that _ ADP WDT _ 9 advmod _ _ 6 Senate _ PROPN NNP _ 7 compound _ _ 7 Republicans _ PROPN NNPS _ 9 nsubj _ _ 8 were _ AUX VBD _ 9 aux _ _ 9 negotiating _ VERB VBG _ 4 dep _ _ 10 a _ DET DT _ 11 det _ _ 11 deal _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 exclude _ VERB VB _ 11 acl _ _ 14 capital _ NOUN NN _ 15 compound _ _ 15 gains _ NOUN NNS _ 13 dobj _ _ 16 from _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 deficit-reduction _ NOUN JJ _ 19 compound _ _ 19 legislation _ NOUN NN _ 13 nmod _ _ 20 , _ PUNCT , _ 26 punct _ _ 21 White _ PROPN NNP _ 25 compound _ _ 22 House _ PROPN NNP _ 25 compound _ _ 23 spokesman _ NOUN NN _ 25 compound _ _ 24 Marlin _ PROPN NNP _ 25 compound _ _ 25 Fitzwater _ PROPN NNP _ 26 nsubj _ _ 26 told _ VERB VBD _ 0 root _ _ 27 reporters _ NOUN NNS _ 26 dobj _ _ 28 that _ SCONJ IN _ 34 mark _ _ 29 it _ PRON PRP _ 34 nsubj _ _ 30 was _ VERB VBD _ 34 cop _ _ 31 the _ DET DT _ 32 det _ _ 32 president _ NOUN NN _ 34 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 policy _ NOUN NN _ 26 ccomp _ _ 35 to _ PART TO _ 36 mark _ _ 36 include _ VERB VB _ 34 advcl _ _ 37 it _ PRON PRP _ 36 dobj _ _ 38 . _ PUNCT . _ 26 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 an _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 reached _ VERB VBN _ 30 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 strip _ VERB VB _ 5 xcomp _ _ 8 capital _ NOUN NN _ 9 compound _ _ 9 gains _ NOUN NNS _ 7 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 legislation _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 30 punct _ _ 14 Oregon _ PROPN NNP _ 17 compound _ _ 15 Sen. _ PROPN NNP _ 17 compound _ _ 16 Bob _ PROPN NNP _ 17 compound _ _ 17 Packwood _ PROPN NNP _ 30 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 the _ DET DT _ 22 det _ _ 20 ranking _ ADJ JJ _ 22 amod _ _ 21 GOP _ PROPN NNP _ 22 compound _ _ 22 member _ NOUN NN _ 17 appos _ _ 23 of _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 tax-writing _ ADJ JJ _ 28 amod _ _ 26 Senate _ PROPN NNP _ 28 compound _ _ 27 Finance _ PROPN NNP _ 28 compound _ _ 28 Committee _ PROPN NNP _ 22 nmod _ _ 29 , _ PUNCT , _ 17 punct _ _ 30 hailed _ VERB VBD _ 0 root _ _ 31 it _ PRON PRP _ 30 dobj _ _ 32 . _ PUNCT . _ 30 punct _ _ 1 Asked _ VERB VBN _ 9 advcl _ _ 2 if _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 administration _ NOUN NN _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 1 advcl _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 he _ PRON PRP _ 9 nsubj _ _ 8 curtly _ ADV RB _ 9 advmod _ _ 9 replied _ VERB VBD _ 0 root _ _ 10 : _ PUNCT : _ 9 punct _ _ 11 `` _ PUNCT `` _ 15 punct _ _ 12 The _ DET DT _ 13 det _ _ 13 adminstration _ NOUN NN _ 15 nsubj _ _ 14 will _ AUX MD _ 15 aux _ _ 15 have _ VERB VB _ 9 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 speak _ VERB VB _ 15 xcomp _ _ 18 for _ ADP IN _ 19 case _ _ 19 itself _ PRON PRP _ 17 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 21 '' _ PUNCT '' _ 9 punct _ _ 1 Friday _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 tumble _ NOUN NN _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 spur _ VERB VB _ 0 root _ _ 7 action _ NOUN NN _ 6 dobj _ _ 8 on _ ADP IN _ 21 case _ _ 9 reconciling _ VERB VBG _ 21 dep _ _ 10 the _ DET DT _ 14 det _ _ 11 House _ PROPN NNP _ 14 compound _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Senate _ PROPN NNP _ 11 conj _ _ 14 versions _ NOUN NNS _ 9 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 deficit-reduction _ NOUN NN _ 18 compound _ _ 18 measure _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 a _ DET DT _ 21 det _ _ 21 process _ NOUN NN _ 7 nmod _ _ 22 that _ PRON WDT _ 25 nsubjpass _ _ 23 is _ AUX VBZ _ 25 auxpass _ _ 24 n't _ PART RB _ 25 neg _ _ 25 expected _ VERB VBN _ 21 acl:relcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 begin _ VERB VB _ 25 xcomp _ _ 28 until _ ADP IN _ 29 case _ _ 29 tomorrow _ NOUN NN _ 27 nmod _ _ 30 at _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 soonest _ ADJ JJS _ 29 nmod _ _ 33 . _ PUNCT . _ 6 punct _ _ 1 Senate _ PROPN NNP _ 2 compound _ _ 2 Republicans _ PROPN NNPS _ 3 nsubj _ _ 3 expressed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 hope _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 House _ NOUN NNP _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 follow _ VERB VB _ 5 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 lead _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 Senate _ PROPN NNP _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 20 nsubj _ _ 18 on _ ADP IN _ 19 case _ _ 19 Friday _ PROPN NNP _ 20 nmod _ _ 20 agreed _ VERB VBD _ 15 acl:relcl _ _ 21 to _ PART TO _ 22 mark _ _ 22 drop _ VERB VB _ 20 xcomp _ _ 23 a _ DET DT _ 24 det _ _ 24 variety _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 spending _ NOUN NN _ 27 compound _ _ 27 measures _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 tax _ NOUN NN _ 30 compound _ _ 30 breaks _ NOUN NNS _ 27 conj _ _ 31 that _ PRON WDT _ 34 nsubj _ _ 32 would _ AUX MD _ 34 aux _ _ 33 have _ AUX VB _ 34 aux _ _ 34 increased _ VERB VBN _ 27 acl:relcl _ _ 35 the _ DET DT _ 38 det _ _ 36 fiscal _ ADJ JJ _ 38 amod _ _ 37 1990 _ NUM CD _ 38 nummod _ _ 38 deficit _ NOUN NN _ 34 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 48 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 needs _ VERB VBZ _ 48 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 strong _ ADJ JJ _ 7 amod _ _ 7 signal _ NOUN NN _ 4 dobj _ _ 8 that _ SCONJ IN _ 11 mark _ _ 9 we _ PRON PRP _ 11 nsubj _ _ 10 're _ VERB VBP _ 11 cop _ _ 11 serious _ ADJ JJ _ 7 ccomp _ _ 12 about _ ADP IN _ 14 case _ _ 13 deficit _ NOUN NN _ 14 compound _ _ 14 reduction _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 and _ CONJ CC _ 4 cc _ _ 17 the _ DET DT _ 19 det _ _ 18 best _ ADJ JJS _ 19 amod _ _ 19 way _ NOUN NN _ 23 nsubj _ _ 20 to _ PART TO _ 21 mark _ _ 21 do _ VERB VB _ 19 acl _ _ 22 that _ PRON DT _ 21 dobj _ _ 23 is _ VERB VBZ _ 4 conj _ _ 24 for _ SCONJ IN _ 30 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 House _ PROPN NNP _ 30 nsubj _ _ 27 of _ ADP IN _ 28 case _ _ 28 Representatives _ PROPN NNPS _ 26 nmod _ _ 29 to _ PART TO _ 30 mark _ _ 30 strip _ VERB VB _ 23 advcl _ _ 31 their _ PRON PRP$ _ 32 nmod:poss _ _ 32 bill _ NOUN NN _ 30 dobj _ _ 33 '' _ PUNCT '' _ 30 punct _ _ 34 of _ ADP IN _ 36 case _ _ 35 similar _ ADJ JJ _ 36 amod _ _ 36 provisions _ NOUN NNS _ 30 nmod _ _ 37 , _ PUNCT , _ 48 punct _ _ 38 Sen. _ PROPN NNP _ 40 compound _ _ 39 Warren _ PROPN NNP _ 40 compound _ _ 40 Rudman _ PROPN NNP _ 48 nsubj _ _ 41 -LRB- _ PUNCT -LRB- _ 42 punct _ _ 42 R. _ PROPN NNP _ 40 appos _ _ 43 , _ PUNCT , _ 42 punct _ _ 44 N.H _ PROPN NNP _ 42 dep _ _ 45 . _ PUNCT . _ 44 punct _ _ 46 -RRB- _ PUNCT -RRB- _ 42 punct _ _ 47 . _ PUNCT . _ 48 punct _ _ 48 said _ VERB VBD _ 0 root _ _ 49 yesterday _ NOUN NN _ 48 nmod:tmod _ _ 50 . _ PUNCT . _ 48 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 White _ PROPN NNP _ 4 compound _ _ 3 House _ PROPN NNP _ 4 compound _ _ 4 Office _ PROPN NNP _ 20 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 Management _ PROPN NNP _ 4 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Budget _ PROPN NNP _ 6 conj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 whose _ PRON WP$ _ 11 nmod:poss _ _ 11 calculations _ NOUN NNS _ 12 nsubj _ _ 12 determine _ VERB VBP _ 4 acl:relcl _ _ 13 whether _ SCONJ IN _ 18 mark _ _ 14 the _ DET DT _ 16 det _ _ 15 Gramm-Rudman _ PROPN NNP _ 16 compound _ _ 16 targets _ NOUN NNS _ 18 nsubjpass _ _ 17 are _ AUX VBP _ 18 auxpass _ _ 18 met _ VERB VBN _ 12 ccomp _ _ 19 , _ PUNCT , _ 4 punct _ _ 20 estimated _ VERB VBN _ 0 root _ _ 21 that _ SCONJ IN _ 27 mark _ _ 22 the _ DET DT _ 25 det _ _ 23 House-passed _ ADJ JJ _ 25 amod _ _ 24 deficit-reduction _ NOUN NN _ 25 compound _ _ 25 measure _ NOUN NN _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 cut _ VERB VB _ 20 ccomp _ _ 28 the _ DET DT _ 31 det _ _ 29 fiscal _ ADJ JJ _ 31 amod _ _ 30 1990 _ NUM CD _ 31 nummod _ _ 31 shortfall _ NOUN NN _ 27 dobj _ _ 32 by _ ADP IN _ 33 case _ _ 33 $ _ SYM $ _ 27 nmod _ _ 34 6.2 _ NUM CD _ 35 compound _ _ 35 billion _ NUM CD _ 33 nummod _ _ 36 , _ PUNCT , _ 33 punct _ _ 37 almost _ ADV RB _ 38 advmod _ _ 38 half _ DET NN _ 33 appos _ _ 39 of _ ADP IN _ 45 case _ _ 40 the _ DET DT _ 43 det _ _ 41 Congressional _ PROPN NNP _ 43 compound _ _ 42 Budget _ PROPN NNP _ 43 compound _ _ 43 Office _ PROPN NNP _ 45 nmod:poss _ _ 44 's _ PART POS _ 43 case _ _ 45 estimate _ NOUN NN _ 38 nmod _ _ 46 of _ ADP IN _ 47 case _ _ 47 $ _ SYM $ _ 45 nmod _ _ 48 11.0 _ NUM CD _ 49 compound _ _ 49 billion _ NUM CD _ 47 nummod _ _ 50 . _ PUNCT . _ 20 punct _ _ 1 Rep. _ PROPN NNP _ 2 compound _ _ 2 Panetta _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 11 mark _ _ 5 OMB _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 figure _ NOUN NN _ 11 nsubj _ _ 8 would _ AUX MD _ 11 aux _ _ 9 still _ ADV RB _ 11 advmod _ _ 10 be _ VERB VB _ 11 cop _ _ 11 enough _ ADJ JJ _ 3 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 avoid _ VERB VB _ 11 xcomp _ _ 14 permanent _ ADJ JJ _ 15 amod _ _ 15 across-the-board _ NOUN JJ _ 13 dobj _ _ 16 cuts _ VERB NNS _ 15 dep _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 but _ CONJ CC _ 3 cc _ _ 19 added _ VERB VBD _ 3 conj _ _ 20 : _ PUNCT : _ 19 punct _ _ 21 `` _ PUNCT `` _ 24 punct _ _ 22 We _ PRON PRP _ 24 nsubj _ _ 23 're _ AUX VBP _ 24 aux _ _ 24 getting _ VERB VBG _ 19 ccomp _ _ 25 very _ ADV RB _ 26 advmod _ _ 26 close _ ADV RB _ 24 xcomp _ _ 27 to _ ADP TO _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 margins _ NOUN NNS _ 26 nmod _ _ 30 here _ ADV RB _ 24 advmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 32 '' _ PUNCT '' _ 3 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 one _ NOUN NN _ 6 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 Washington _ PROPN NNP _ 2 nmod _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 willing _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 take _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 10 det _ _ 10 blame _ NOUN NN _ 8 dobj _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 provoking _ VERB VBG _ 10 acl _ _ 13 Friday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 drop _ NOUN NN _ 12 dobj _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 stock _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 some _ DET DT _ 3 det _ _ 3 players _ NOUN NNS _ 5 nsubj _ _ 4 were _ VERB VBD _ 5 cop _ _ 5 quick _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 seize _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 moment _ NOUN NN _ 7 dobj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Before _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 sun _ NOUN NN _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 set _ VERB VBN _ 23 advcl _ _ 6 on _ ADP IN _ 7 case _ _ 7 Friday _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 23 punct _ _ 9 Richard _ PROPN NNP _ 10 compound _ _ 10 Rahn _ PROPN NNP _ 23 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 the _ DET DT _ 15 det _ _ 13 supply-side _ ADJ JJ _ 15 amod _ _ 14 chief _ ADJ NN _ 15 amod _ _ 15 economist _ NOUN NN _ 10 appos _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 U.S. _ PROPN NNP _ 19 compound _ _ 19 Chamber _ PROPN NNP _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 Commerce _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 issued _ VERB VBD _ 0 root _ _ 24 a _ DET DT _ 25 det _ _ 25 statement _ NOUN NN _ 23 dobj _ _ 26 attributing _ VERB VBG _ 25 acl _ _ 27 the _ DET DT _ 28 det _ _ 28 drop _ NOUN NN _ 26 dobj _ _ 29 in _ ADP IN _ 31 case _ _ 30 stock _ NOUN NN _ 31 compound _ _ 31 prices _ NOUN NNS _ 28 nmod _ _ 32 to _ ADP TO _ 35 case _ _ 33 the _ DET DT _ 35 det _ _ 34 Senate _ PROPN NNP _ 35 compound _ _ 35 decision _ NOUN NN _ 26 nmod _ _ 36 to _ PART TO _ 37 mark _ _ 37 postpone _ VERB VB _ 35 acl _ _ 38 action _ NOUN NN _ 37 dobj _ _ 39 on _ ADP IN _ 41 case _ _ 40 capital _ NOUN NN _ 41 compound _ _ 41 gains _ NOUN NNS _ 38 nmod _ _ 42 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 Investors _ NOUN NNS _ 20 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 7 nsubj _ _ 5 had _ AUX VBD _ 7 aux _ _ 6 been _ AUX VBN _ 7 aux _ _ 7 holding _ VERB VBG _ 2 acl:relcl _ _ 8 assets _ NOUN NNS _ 7 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 anticipation _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 favorable _ ADJ JJ _ 15 amod _ _ 15 time _ NOUN NN _ 10 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 sell _ VERB VB _ 15 acl _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 spooked _ VERB VBN _ 24 ccomp _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 '' _ PUNCT '' _ 24 punct _ _ 23 he _ PRON PRP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 There _ PRON EX _ 7 expl _ _ 3 have _ AUX VBP _ 7 aux _ _ 4 been _ VERB VBN _ 7 cop _ _ 5 many _ ADJ JJ _ 7 amod _ _ 6 preposterous _ ADJ JJ _ 7 amod _ _ 7 reasons _ NOUN NNS _ 0 root _ _ 8 advanced _ VERB VBD _ 7 acl _ _ 9 to _ PART TO _ 10 mark _ _ 10 support _ VERB VB _ 7 acl _ _ 11 a _ DET DT _ 14 det _ _ 12 capital-gains _ NOUN NNS _ 14 compound _ _ 13 tax _ NOUN NN _ 14 compound _ _ 14 cut _ NOUN NN _ 10 dobj _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 Sen. _ PROPN NNP _ 18 compound _ _ 18 Mitchell _ PROPN NNP _ 19 nsubj _ _ 19 said _ VERB VBD _ 7 dep _ _ 20 during _ ADP IN _ 23 case _ _ 21 his _ PRON PRP$ _ 23 nmod:poss _ _ 22 television _ NOUN NN _ 23 compound _ _ 23 appearance _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 `` _ PUNCT `` _ 7 punct _ _ 26 but _ CONJ CC _ 7 cc _ _ 27 I _ PRON PRP _ 28 nsubj _ _ 28 suggest _ VERB VBP _ 7 conj _ _ 29 that _ PRON IN _ 32 nsubj _ _ 30 is _ VERB VBZ _ 32 cop _ _ 31 perhaps _ ADV RB _ 32 advmod _ _ 32 more _ ADV JJR _ 28 ccomp _ _ 33 than _ ADP IN _ 34 case _ _ 34 any _ DET DT _ 32 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 others _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 9 det _ _ 2 following _ ADJ VBG _ 9 amod _ _ 3 U.S. _ PROPN NNP _ 4 compound _ _ 4 Treasury _ PROPN NNP _ 9 compound _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 corporate _ ADJ JJ _ 4 amod _ _ 7 and _ CONJ CC _ 4 cc _ _ 8 municipal _ ADJ JJ _ 4 conj _ _ 9 offerings _ NOUN NNS _ 12 nsubjpass _ _ 10 are _ AUX VBP _ 12 auxpass _ _ 11 tentatively _ ADV RB _ 12 advmod _ _ 12 scheduled _ VERB VBN _ 0 root _ _ 13 for _ ADP IN _ 14 case _ _ 14 sale _ NOUN NN _ 12 nmod _ _ 15 this _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:tmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 according _ VERB VBG _ 24 case _ _ 19 to _ ADP TO _ 18 mwe _ _ 20 Dow _ PROPN NNP _ 24 compound _ _ 21 Jones _ PROPN NNP _ 24 compound _ _ 22 Capital _ PROPN NNP _ 24 compound _ _ 23 Markets _ PROPN NNPS _ 24 compound _ _ 24 Report _ PROPN NNP _ 12 nmod _ _ 25 : _ PUNCT : _ 12 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 15.2 _ NUM CD _ 3 compound _ _ 3 billion _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 8 case _ _ 5 three-month _ ADJ JJ _ 8 amod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 six-month _ ADJ JJ _ 5 conj _ _ 8 bills _ NOUN NNS _ 1 nmod _ _ 9 . _ PUNCT . _ 1 punct _ _ 1 Two-year _ ADJ JJ _ 2 amod _ _ 2 notes _ NOUN NNS _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 refinancing _ VERB VBG _ 2 acl _ _ 5 about _ ADV IN _ 6 advmod _ _ 6 $ _ SYM $ _ 4 dobj _ _ 7 9.6 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 maturing _ VERB VBG _ 11 amod _ _ 11 debt _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 9.75 _ NUM CD _ 3 compound _ _ 3 billion _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 6 case _ _ 5 52-week _ ADJ JJ _ 6 amod _ _ 6 bills _ NOUN NNS _ 1 nmod _ _ 7 . _ PUNCT . _ 1 punct _ _ 1 Connecticut _ PROPN NNP _ 2 compound _ _ 2 Light _ PROPN NNP _ 0 root _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Power _ PROPN NNP _ 5 compound _ _ 5 Co. _ PROPN NNP _ 2 conj _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 Three _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 3 nummod _ _ 3 shares _ NOUN NNS _ 0 root _ _ 4 of _ ADP IN _ 7 case _ _ 5 $ _ SYM $ _ 7 amod _ _ 6 25 _ NUM CD _ 5 compound _ _ 7 preferred _ ADJ VBN _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 via _ ADP IN _ 11 case _ _ 10 competitive _ ADJ JJ _ 11 amod _ _ 11 bidding _ NOUN NN _ 3 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 B&H _ PROPN NNP _ 4 compound _ _ 2 Crude _ PROPN NNP _ 4 compound _ _ 3 Carriers _ PROPN NNP _ 4 compound _ _ 4 Ltd. _ PROPN NNP _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 1 Four _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 9 case _ _ 7 Salomon _ PROPN NNP _ 9 compound _ _ 8 Brothers _ PROPN NNPS _ 9 compound _ _ 9 Inc _ PROPN NNP _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 Baldwin _ PROPN NNP _ 3 compound _ _ 2 Technology _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 2.6 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 5 nummod _ _ 3 Class _ PROPN NN _ 5 compound _ _ 4 A _ PROPN NNP _ 5 compound _ _ 5 shares _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 via _ ADP IN _ 11 case _ _ 8 Smith _ PROPN NNP _ 11 compound _ _ 9 Barney _ PROPN NNP _ 11 compound _ _ 10 Harris _ PROPN NNP _ 11 compound _ _ 11 Upham _ PROPN NNP _ 5 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Co _ PROPN NNP _ 11 conj _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Blockbuster _ PROPN NNP _ 3 compound _ _ 2 Entertainment _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 11 amod _ _ 2 250 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 -LRB- _ PUNCT -LRB- _ 5 punct _ _ 5 face _ NOUN NN _ 11 dep _ _ 6 amount _ NOUN NN _ 5 dep _ _ 7 -RRB- _ PUNCT -RRB- _ 5 punct _ _ 8 Liquid _ PROPN NN _ 11 compound _ _ 9 Yield _ PROPN NN _ 11 compound _ _ 10 Option _ PROPN NN _ 11 compound _ _ 11 Notes _ PROPN NNS _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 via _ ADP IN _ 17 case _ _ 14 Merrill _ PROPN NNP _ 17 compound _ _ 15 Lynch _ PROPN NNP _ 17 compound _ _ 16 Capital _ PROPN NNP _ 17 compound _ _ 17 Markets _ PROPN NNPS _ 11 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 1 Chase _ PROPN NNP _ 3 compound _ _ 2 Manhattan _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 14 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 7 case _ _ 7 Goldman _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Sachs _ PROPN NNP _ 7 conj _ _ 10 & _ CONJ CC _ 7 cc _ _ 11 Co _ PROPN NNP _ 7 conj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Comcast _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 $ _ SYM $ _ 5 amod _ _ 2 150 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 convertible _ ADJ JJ _ 5 amod _ _ 5 debentures _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 via _ ADP IN _ 9 case _ _ 8 Merrill _ PROPN NNP _ 9 compound _ _ 9 Lynch _ PROPN NNP _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 CSS _ PROPN NNP _ 2 compound _ _ 2 Industries _ PROPN NNPS _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 1.3 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 8 case _ _ 7 Merrill _ PROPN NNP _ 8 compound _ _ 8 Lynch _ PROPN NNP _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Eastern _ PROPN NNP _ 3 compound _ _ 2 Utilities _ PROPN NNP _ 3 compound _ _ 3 Associates _ PROPN NNPS _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 1.5 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 8 case _ _ 7 PaineWebber _ PROPN NNP _ 8 compound _ _ 8 Inc _ PROPN NNP _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Employee _ PROPN NNP _ 4 compound _ _ 2 Benefit _ PROPN NNP _ 4 compound _ _ 3 Plans _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 1 Two _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 10 case _ _ 7 Dean _ PROPN NNP _ 10 compound _ _ 8 Witter _ PROPN NNP _ 10 compound _ _ 9 Capital _ PROPN NNP _ 10 compound _ _ 10 Markets _ PROPN NNPS _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Exabyte _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 2,850,000 _ NUM CD _ 3 nummod _ _ 2 common _ ADJ JJ _ 3 amod _ _ 3 shares _ NOUN NNS _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 via _ ADP IN _ 7 case _ _ 6 Goldman _ PROPN NNP _ 7 compound _ _ 7 Sachs _ PROPN NNP _ 3 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Knowledgeware _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 2.4 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 8 case _ _ 7 Montgomery _ PROPN NNP _ 8 compound _ _ 8 Securities _ PROPN NNPS _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Oregon _ PROPN NNP _ 0 root _ _ 2 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 100 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 10 case _ _ 5 general _ ADJ JJ _ 7 amod _ _ 6 obligation _ NOUN NN _ 7 compound _ _ 7 veterans _ NOUN NNS _ 10 nmod:poss _ _ 8 ' _ PART POS _ 7 case _ _ 9 tax _ NOUN NN _ 10 compound _ _ 10 notes _ NOUN NNS _ 1 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Series _ PROPN NN _ 10 appos _ _ 13 1989 _ NUM CD _ 12 nummod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 via _ ADP IN _ 17 case _ _ 16 competitive _ ADJ JJ _ 17 amod _ _ 17 bid _ NOUN NN _ 1 nmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 Washington _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 D.C. _ PROPN NNP _ 1 appos _ _ 4 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 200 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 10 case _ _ 5 1990 _ NUM CD _ 10 nummod _ _ 6 general _ ADJ JJ _ 10 amod _ _ 7 obligation _ NOUN NN _ 10 compound _ _ 8 tax _ NOUN NN _ 10 compound _ _ 9 revenue _ NOUN NN _ 10 compound _ _ 10 notes _ NOUN NNS _ 1 nmod _ _ 11 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 12 Series _ PROPN NNP _ 13 compound _ _ 13 1990A _ PROPN NNP _ 10 dep _ _ 14 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 via _ ADP IN _ 18 case _ _ 17 competitive _ ADJ JJ _ 18 amod _ _ 18 bid _ NOUN NN _ 1 nmod _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 Virginia _ PROPN NNP _ 4 compound _ _ 2 Public _ PROPN NNP _ 4 compound _ _ 3 School _ PROPN NNP _ 4 compound _ _ 4 Authority _ PROPN NNP _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 1 $ _ SYM $ _ 2 dep _ _ 2 55,730,000 _ NUM CD _ 0 root _ _ 3 of _ ADP IN _ 6 case _ _ 4 school _ NOUN NN _ 6 compound _ _ 5 financing _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 1989 _ NUM CD _ 10 nummod _ _ 9 Series _ PROPN NNP _ 10 compound _ _ 10 B _ PROPN NNP _ 6 appos _ _ 11 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 12 1987 _ NUM CD _ 13 nummod _ _ 13 resolution _ NOUN NN _ 6 appos _ _ 14 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 via _ ADP IN _ 18 case _ _ 17 competitive _ ADJ JJ _ 18 amod _ _ 18 bid _ NOUN NN _ 2 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Austin _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Texas _ PROPN NNP _ 1 appos _ _ 4 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 2 dep _ _ 2 68,230,000 _ NUM CD _ 0 root _ _ 3 of _ ADP IN _ 5 case _ _ 4 various _ ADJ JJ _ 5 amod _ _ 5 bonds _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 including _ VERB VBG _ 15 case _ _ 8 $ _ SYM $ _ 15 amod _ _ 9 32 _ NUM CD _ 8 compound _ _ 10 million _ NUM CD _ 8 compound _ _ 11 hotel _ NOUN NN _ 15 compound _ _ 12 occupancy _ NOUN NN _ 15 compound _ _ 13 tax _ NOUN NN _ 15 compound _ _ 14 revenue _ NOUN NN _ 15 compound _ _ 15 bonds _ NOUN NNS _ 2 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Series _ PROPN NNP _ 18 compound _ _ 18 1989A _ PROPN NNP _ 15 appos _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 $ _ SYM $ _ 27 amod _ _ 22 36.23 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 convention _ NOUN NN _ 27 compound _ _ 25 center _ NOUN NN _ 27 compound _ _ 26 revenue _ NOUN NN _ 27 compound _ _ 27 bonds _ NOUN NNS _ 15 conj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Series _ PROPN NNP _ 30 compound _ _ 30 1989B _ PROPN NNP _ 27 appos _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 via _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 Morgan _ PROPN NNP _ 35 compound _ _ 35 Stanley _ PROPN NNP _ 2 nmod _ _ 36 & _ CONJ CC _ 35 cc _ _ 37 Co. _ PROPN NNP _ 38 compound _ _ 38 group _ NOUN NN _ 35 conj _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 California _ PROPN NNP _ 5 compound _ _ 2 Health _ PROPN NNP _ 5 compound _ _ 3 Facilities _ PROPN NNP _ 5 compound _ _ 4 Financing _ PROPN NNP _ 5 compound _ _ 5 Authority _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 144.5 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 8 case _ _ 5 Kaiser _ PROPN NNP _ 8 compound _ _ 6 Permanente _ PROPN NNP _ 8 compound _ _ 7 revenue _ NOUN NN _ 8 compound _ _ 8 bonds _ NOUN NNS _ 1 nmod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 via _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 PaineWebber _ PROPN NNP _ 13 compound _ _ 13 group _ NOUN NN _ 1 nmod _ _ 14 . _ PUNCT . _ 1 punct _ _ 1 Connecticut _ PROPN NNP _ 0 root _ _ 2 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 3 dep _ _ 2 100 _ NUM CD _ 3 nummod _ _ 3 million _ NUM CD _ 0 root _ _ 4 of _ ADP IN _ 9 case _ _ 5 general _ ADJ JJ _ 9 amod _ _ 6 obligation _ NOUN NN _ 9 compound _ _ 7 capital _ NOUN NN _ 9 compound _ _ 8 appreciation _ NOUN NN _ 9 compound _ _ 9 bonds _ NOUN NNS _ 3 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 College _ PROPN NNP _ 13 compound _ _ 12 Savings _ PROPN NNP _ 13 compound _ _ 13 Plan _ PROPN NNP _ 9 appos _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 1989 _ NUM CD _ 17 nummod _ _ 16 Series _ PROPN NNP _ 17 compound _ _ 17 B _ PROPN NNP _ 9 appos _ _ 18 , _ PUNCT , _ 3 punct _ _ 19 via _ ADP IN _ 24 case _ _ 20 a _ DET DT _ 24 det _ _ 21 Prudential-Bache _ PROPN NNP _ 24 compound _ _ 22 Capital _ PROPN NNP _ 24 compound _ _ 23 Funding _ PROPN NNP _ 24 compound _ _ 24 group _ NOUN NN _ 3 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 Pennsylvania _ PROPN NNP _ 5 compound _ _ 2 Higher _ PROPN JJR _ 5 compound _ _ 3 Education _ PROPN NN _ 5 compound _ _ 4 Facilities _ PROPN NNP _ 5 compound _ _ 5 Authority _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 117 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 6 case _ _ 5 revenue _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 1 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 Hahnemann _ PROPN NNP _ 9 compound _ _ 9 University _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 Series _ PROPN NNP _ 1 appos _ _ 12 1989 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 1 punct _ _ 14 via _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 Merrill _ PROPN NNP _ 18 compound _ _ 17 Lynch _ PROPN NNP _ 18 compound _ _ 18 group _ NOUN NN _ 1 nmod _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 Tennessee _ PROPN NNP _ 3 compound _ _ 2 Valley _ PROPN NNP _ 3 compound _ _ 3 Authority _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 Three _ NUM CD _ 2 compound _ _ 2 billion _ NUM CD _ 0 root _ _ 3 of _ ADP IN _ 5 case _ _ 4 power _ NOUN NN _ 5 compound _ _ 5 bonds _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 via _ ADP IN _ 10 case _ _ 8 First _ PROPN NNP _ 10 compound _ _ 9 Boston _ PROPN NNP _ 10 compound _ _ 10 Corp _ PROPN NNP _ 2 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 University _ PROPN NNP _ 0 root _ _ 2 of _ ADP IN _ 3 case _ _ 3 Medicine _ PROPN NNP _ 1 nmod _ _ 4 And _ CONJ CC _ 3 cc _ _ 5 Dentistry _ PROPN NNP _ 3 conj _ _ 6 of _ ADP IN _ 8 case _ _ 7 New _ PROPN NNP _ 8 compound _ _ 8 Jersey _ PROPN NNP _ 1 nmod _ _ 9 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 55 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 Series _ PROPN NNP _ 7 compound _ _ 6 C _ PROPN NNP _ 7 compound _ _ 7 bonds _ NOUN NNS _ 1 nmod _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 via _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 Prudential-Bache _ PROPN NNP _ 12 compound _ _ 12 group _ NOUN NN _ 1 nmod _ _ 13 . _ PUNCT . _ 1 punct _ _ 1 West _ PROPN NNP _ 3 compound _ _ 2 Virginia _ PROPN NNP _ 3 compound _ _ 3 Parkways _ PROPN NNPS _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Economic _ PROPN NNP _ 6 compound _ _ 6 Development _ PROPN NNP _ 3 appos _ _ 7 And _ CONJ CC _ 6 cc _ _ 8 Tourism _ PROPN NNP _ 9 compound _ _ 9 Authority _ PROPN NNP _ 6 conj _ _ 10 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 143 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 parkway _ NOUN NN _ 7 compound _ _ 6 revenue _ NOUN NN _ 7 compound _ _ 7 bonds _ NOUN NNS _ 1 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Series _ NOUN NN _ 7 appos _ _ 10 1989 _ NUM CD _ 9 nummod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 via _ ADP IN _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 PaineWebber _ PROPN NNP _ 15 compound _ _ 15 group _ NOUN NN _ 1 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 San _ PROPN NNP _ 2 compound _ _ 2 Antonio _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Texas _ PROPN NNP _ 2 appos _ _ 5 -- _ PUNCT : _ 2 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 640 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 10 case _ _ 5 gas _ NOUN NN _ 10 compound _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 electric _ ADJ JJ _ 5 conj _ _ 8 revenue _ NOUN NN _ 10 compound _ _ 9 refunding _ NOUN VBG _ 10 compound _ _ 10 bonds _ NOUN NNS _ 1 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 via _ ADP IN _ 16 case _ _ 13 a _ DET DT _ 16 det _ _ 14 First _ PROPN NNP _ 16 compound _ _ 15 Boston _ PROPN NNP _ 16 compound _ _ 16 group _ NOUN NN _ 1 nmod _ _ 17 . _ PUNCT . _ 1 punct _ _ 1 South _ PROPN NNP _ 3 compound _ _ 2 Dakota _ PROPN NNP _ 3 compound _ _ 3 Health _ PROPN NNP _ 0 root _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Education _ PROPN NNP _ 7 compound _ _ 6 Facility _ PROPN NNP _ 7 compound _ _ 7 Authority _ PROPN NNP _ 3 conj _ _ 8 -- _ PUNCT : _ 7 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 51.1 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 9 case _ _ 5 Rapid _ PROPN NNP _ 9 compound _ _ 6 City _ PROPN NNP _ 9 compound _ _ 7 Regional _ PROPN NNP _ 9 compound _ _ 8 Hospital _ PROPN NNP _ 9 compound _ _ 9 bonds _ NOUN NNS _ 1 nmod _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 via _ ADP IN _ 21 case _ _ 12 a _ DET DT _ 21 det _ _ 13 Dougherty _ PROPN NNP _ 21 compound _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Dawkins _ PROPN NNP _ 13 conj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 Strand _ PROPN NNP _ 13 conj _ _ 18 & _ CONJ CC _ 13 cc _ _ 19 Yost _ PROPN NNP _ 13 conj _ _ 20 Inc. _ PROPN NNP _ 21 compound _ _ 21 group _ NOUN NN _ 1 nmod _ _ 22 . _ PUNCT . _ 1 punct _ _ 1 Small _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 3 nsubj _ _ 3 matched _ VERB VBD _ 0 root _ _ 4 their _ PRON PRP$ _ 7 nmod:poss _ _ 5 big _ ADJ JJ _ 7 amod _ _ 6 institutional _ ADJ JJ _ 7 amod _ _ 7 brethren _ NOUN NNS _ 3 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 anxiety _ NOUN NN _ 3 nmod _ _ 10 over _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 weekend _ NOUN NN _ 3 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 but _ CONJ CC _ 3 cc _ _ 15 most _ ADJ JJS _ 16 nsubj _ _ 16 seemed _ VERB VBD _ 3 conj _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 aux _ _ 19 taking _ VERB VBG _ 16 xcomp _ _ 20 a _ DET DT _ 22 det _ _ 21 philosophical _ ADJ JJ _ 22 amod _ _ 22 approach _ NOUN NN _ 19 dobj _ _ 23 and _ CONJ CC _ 16 cc _ _ 24 said _ VERB VBD _ 16 conj _ _ 25 they _ PRON PRP _ 27 nsubjpass _ _ 26 were _ AUX VBD _ 27 auxpass _ _ 27 resigned _ VERB VBN _ 24 ccomp _ _ 28 to _ ADP TO _ 29 mark _ _ 29 riding _ VERB VBG _ 27 advcl _ _ 30 out _ ADP RP _ 29 compound:prt _ _ 31 the _ DET DT _ 33 det _ _ 32 latest _ ADJ JJS _ 33 amod _ _ 33 storm _ NOUN NN _ 29 dobj _ _ 34 in _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 stock _ NOUN NN _ 37 compound _ _ 37 market _ NOUN NN _ 33 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'm _ AUX VBP _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 losing _ VERB VBG _ 12 ccomp _ _ 6 faith _ NOUN NN _ 5 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Boston _ PROPN NNP _ 16 compound _ _ 14 lawyer _ NOUN NN _ 16 compound _ _ 15 Christopher _ PROPN NNP _ 16 compound _ _ 16 Sullivan _ PROPN NNP _ 12 nsubj _ _ 17 as _ SCONJ IN _ 19 mark _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 watched _ VERB VBD _ 12 dep _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 22 nsubj _ _ 22 plunge _ NOUN NN _ 19 ccomp _ _ 23 on _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 big _ ADJ JJ _ 26 amod _ _ 26 screen _ NOUN NN _ 19 nmod _ _ 27 in _ ADP IN _ 28 case _ _ 28 front _ NOUN NN _ 26 nmod _ _ 29 of _ ADP IN _ 32 case _ _ 30 a _ DET DT _ 32 det _ _ 31 brokerage _ NOUN NN _ 32 compound _ _ 32 firm _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 he _ PRON PRP _ 6 nsubj _ _ 3 's _ VERB VBZ _ 6 cop _ _ 4 not _ PART RB _ 6 neg _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 sure _ ADJ JJ _ 0 root _ _ 7 about _ ADP IN _ 8 case _ _ 8 everyone _ NOUN NN _ 6 nmod _ _ 9 else _ ADV RB _ 8 amod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 19 ccomp _ _ 4 on _ ADP IN _ 5 case _ _ 5 Monday _ PROPN NNP _ 12 nmod _ _ 6 the _ DET DT _ 7 det _ _ 7 small _ ADJ JJ _ 12 nsubj _ _ 8 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 9 investors _ NOUN NNS _ 7 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 going _ VERB VBG _ 3 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 panic _ VERB VB _ 12 xcomp _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 sell _ VERB VB _ 14 conj _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 predicted _ VERB VBD _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Sullivan _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 whose _ PRON WP$ _ 24 nmod:poss _ _ 24 investments _ NOUN NNS _ 25 nsubj _ _ 25 include _ VERB VBP _ 21 acl:relcl _ _ 26 AMR _ PROPN NNP _ 27 compound _ _ 27 Corp. _ PROPN NNP _ 31 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 American _ PROPN NNP _ 31 compound _ _ 30 Airlines _ PROPN NNPS _ 31 compound _ _ 31 unit _ NOUN NN _ 25 dobj _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 several _ ADJ JJ _ 35 amod _ _ 34 mutual _ ADJ JJ _ 35 amod _ _ 35 funds _ NOUN NNS _ 31 conj _ _ 36 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 And _ CONJ CC _ 4 cc _ _ 3 I _ PRON PRP _ 4 nsubj _ _ 4 think _ VERB VBP _ 0 root _ _ 5 institutions _ NOUN NNS _ 7 nsubj _ _ 6 are _ AUX VBP _ 7 aux _ _ 7 going _ VERB VBG _ 4 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 come _ VERB VB _ 7 xcomp _ _ 10 in _ ADP IN _ 9 advmod _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 buy _ VERB VB _ 9 conj _ _ 13 ... _ PUNCT : _ 4 punct _ _ 1 I _ PRON PRP _ 3 nsubj _ _ 2 'm _ AUX VBP _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 hold _ VERB VB _ 3 xcomp _ _ 6 on _ ADP RP _ 5 compound:prt _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 sell _ VERB VBP _ 8 advcl _ _ 4 now _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 I _ PRON PRP _ 8 nsubj _ _ 7 'll _ AUX MD _ 8 aux _ _ 8 take _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 big _ ADJ JJ _ 11 amod _ _ 11 loss _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 8 punct _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 evinced _ VERB VBD _ 0 root _ _ 3 an _ DET DT _ 4 det _ _ 4 optimism _ NOUN NN _ 2 dobj _ _ 5 that _ PRON WDT _ 8 nsubjpass _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 rewarded _ VERB VBN _ 4 acl:relcl _ _ 9 when _ ADV WRB _ 13 advmod _ _ 10 they _ PRON PRP _ 13 nsubj _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 flee _ VERB VB _ 8 advcl _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 13 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 1987 _ NUM CD _ 13 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Oh _ INTJ UH _ 5 discourse _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 I _ PRON PRP _ 5 nsubj _ _ 5 bet _ VERB VBP _ 16 ccomp _ _ 6 it _ PRON PRP _ 13 nsubj _ _ 7 'll _ AUX MD _ 13 aux _ _ 8 be _ VERB VB _ 13 cop _ _ 9 up _ ADV RB _ 13 advmod _ _ 10 50 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 9 nmod:npmod _ _ 12 on _ ADP IN _ 13 case _ _ 13 Monday _ PROPN NNP _ 5 ccomp _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Lucy _ PROPN NNP _ 18 compound _ _ 18 Crump _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 a _ DET DT _ 23 det _ _ 21 78-year-old _ ADJ JJ _ 23 amod _ _ 22 retired _ ADJ JJ _ 23 amod _ _ 23 housewife _ NOUN NN _ 18 appos _ _ 24 in _ ADP IN _ 25 case _ _ 25 Lexington _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Ky _ PROPN NNP _ 25 appos _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Crump _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 her _ PRON PRP$ _ 7 nmod:poss _ _ 5 Ashwood _ PROPN NNP _ 7 compound _ _ 6 Investment _ PROPN NNP _ 7 compound _ _ 7 Club _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 portfolio _ NOUN NN _ 10 nsubj _ _ 10 lost _ VERB VBD _ 3 dep _ _ 11 about _ ADV IN _ 12 advmod _ _ 12 one-third _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 value _ NOUN NN _ 12 nmod _ _ 16 following _ VERB VBG _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 Black _ PROPN NNP _ 20 compound _ _ 19 Monday _ PROPN NNP _ 20 compound _ _ 20 crash _ NOUN NN _ 10 nmod _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 `` _ PUNCT `` _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 no _ DET DT _ 25 neg _ _ 25 one _ NOUN NN _ 27 nsubjpass _ _ 26 got _ AUX VBD _ 27 auxpass _ _ 27 discouraged _ VERB VBN _ 10 conj _ _ 28 , _ PUNCT , _ 10 punct _ _ 29 and _ CONJ CC _ 10 cc _ _ 30 we _ PRON PRP _ 31 nsubj _ _ 31 gained _ VERB VBD _ 10 conj _ _ 32 that _ PRON DT _ 31 dobj _ _ 33 back _ ADP RB _ 31 compound:prt _ _ 34 -- _ PUNCT : _ 36 punct _ _ 35 and _ CONJ CC _ 36 cc _ _ 36 more _ ADJ JJR _ 31 dep _ _ 37 . _ PUNCT . _ 3 punct _ _ 38 '' _ PUNCT '' _ 3 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 annual _ ADJ JJ _ 4 amod _ _ 4 congress _ NOUN NN _ 23 nmod _ _ 5 of _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 11 det _ _ 7 National _ PROPN NNP _ 11 dep _ _ 8 Association _ PROPN NNP _ 7 dep _ _ 9 of _ ADP IN _ 10 case _ _ 10 Investors _ PROPN NNPS _ 7 nmod _ _ 11 Corp. _ PROPN NNP _ 4 nmod _ _ 12 at _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 Hyatt _ PROPN NNP _ 16 compound _ _ 15 Regency _ PROPN NNP _ 16 compound _ _ 16 hotel _ NOUN NN _ 4 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Minneapolis _ NOUN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 23 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 scene _ NOUN NN _ 23 nsubj _ _ 22 was _ VERB VBD _ 23 cop _ _ 23 calm _ ADJ JJ _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Some _ ADV DT _ 2 advmod _ _ 2 500 _ NUM CD _ 3 nummod _ _ 3 investors _ NOUN NNS _ 12 nsubj _ _ 4 representing _ VERB VBG _ 3 acl _ _ 5 investor _ NOUN NN _ 6 compound _ _ 6 clubs _ NOUN NNS _ 4 dobj _ _ 7 from _ ADP IN _ 10 case _ _ 8 around _ ADP IN _ 10 amod _ _ 9 the _ DET DT _ 10 det _ _ 10 U.S. _ PROPN NNP _ 6 nmod _ _ 11 were _ AUX VBD _ 12 aux _ _ 12 attending _ VERB VBG _ 0 root _ _ 13 when _ ADV WRB _ 16 advmod _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 16 nsubj _ _ 16 started _ VERB VBD _ 12 advcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 slide _ VERB VB _ 16 xcomp _ _ 19 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 Robert _ PROPN NNP _ 3 compound _ _ 3 Showalter _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 an _ DET DT _ 6 det _ _ 6 official _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 association _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 no _ DET DT _ 14 neg _ _ 13 special _ ADJ JJ _ 14 amod _ _ 14 bulletins _ NOUN NNS _ 24 nsubjpass _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 emergency _ NOUN NN _ 17 compound _ _ 17 meetings _ NOUN NNS _ 14 conj _ _ 18 of _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 20 det _ _ 20 investors _ NOUN NNS _ 22 nmod:poss _ _ 21 ' _ PART POS _ 20 case _ _ 22 clubs _ NOUN NNS _ 14 nmod _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 planned _ VERB VBN _ 11 ccomp _ _ 25 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 16 nmod _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 some _ DET DT _ 16 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 7 det _ _ 7 association _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 members _ NOUN NNS _ 4 nmod _ _ 10 -- _ PUNCT : _ 14 punct _ _ 11 long-term _ ADJ JJ _ 14 amod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 buy-and-hold _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 4 dep _ _ 15 -- _ PUNCT : _ 14 punct _ _ 16 welcomed _ VERB VBD _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 drop _ NOUN NN _ 16 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 prices _ NOUN NNS _ 18 nmod _ _ 21 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 hope _ VERB VBP _ 11 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 take _ VERB VB _ 3 xcomp _ _ 6 advantage _ NOUN NN _ 5 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 it _ PRON PRP _ 5 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 John _ PROPN NNP _ 13 compound _ _ 13 Snyder _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 member _ NOUN NN _ 13 appos _ _ 17 of _ ADP IN _ 23 case _ _ 18 a _ DET DT _ 23 det _ _ 19 Los _ PROPN NNP _ 23 compound _ _ 20 Angeles _ PROPN NNP _ 23 compound _ _ 21 investors _ NOUN NNS _ 23 nmod:poss _ _ 22 ' _ PART POS _ 21 case _ _ 23 club _ NOUN NN _ 16 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 has _ VERB VBZ _ 0 root _ _ 3 four _ NUM CD _ 4 nummod _ _ 4 stocks _ NOUN NNS _ 2 dobj _ _ 5 in _ ADP IN _ 6 case _ _ 6 mind _ NOUN NN _ 2 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 2 xcomp _ _ 9 if _ SCONJ IN _ 12 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 prices _ NOUN NNS _ 12 nsubj _ _ 12 drop _ VERB VBP _ 8 advcl _ _ 13 to _ ADP TO _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 level _ NOUN NN _ 12 nmod _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 wants _ VERB VBZ _ 15 acl:relcl _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 everyone _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 reacting _ VERB VBG _ 0 root _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 calmly _ ADV RB _ 4 advmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 however _ ADV RB _ 4 advmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 many _ ADJ JJ _ 12 nsubj _ _ 12 wonder _ VERB VBP _ 4 conj _ _ 13 about _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 long-term _ ADJ JJ _ 16 amod _ _ 16 implications _ NOUN NNS _ 12 nmod _ _ 17 of _ ADP IN _ 30 case _ _ 18 what _ PRON WP _ 21 nsubjpass _ _ 19 is _ AUX VBZ _ 21 auxpass _ _ 20 widely _ ADV RB _ 21 advmod _ _ 21 viewed _ VERB VBN _ 30 dep _ _ 22 as _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 cause _ NOUN NN _ 21 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 Friday _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 slide _ NOUN NN _ 24 nmod _ _ 29 , _ PUNCT , _ 30 punct _ _ 30 reluctance _ NOUN NN _ 16 nmod _ _ 31 by _ ADP IN _ 32 case _ _ 32 banks _ NOUN NNS _ 30 nmod _ _ 33 to _ PART TO _ 34 mark _ _ 34 provide _ VERB VB _ 30 acl _ _ 35 financing _ NOUN NN _ 34 dobj _ _ 36 for _ ADP IN _ 38 case _ _ 37 a _ DET DT _ 38 det _ _ 38 buy-out _ NOUN NN _ 34 nmod _ _ 39 of _ ADP IN _ 41 case _ _ 40 UAL _ PROPN NNP _ 41 compound _ _ 41 Corp. _ PROPN NNP _ 38 nmod _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 parent _ NOUN NN _ 41 appos _ _ 44 of _ ADP IN _ 46 case _ _ 45 United _ PROPN NNP _ 46 compound _ _ 46 Airlines _ PROPN NNPS _ 43 nmod _ _ 47 . _ PUNCT . _ 4 punct _ _ 1 Marc _ PROPN NNP _ 2 compound _ _ 2 Perkins _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 10 det _ _ 5 Tampa _ PROPN NNP _ 10 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Fla. _ PROPN NNP _ 5 dep _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 investment _ NOUN NN _ 10 compound _ _ 10 banker _ NOUN NN _ 2 appos _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 15 det _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 drop _ NOUN NN _ 17 nsubj _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 one _ NUM CD _ 12 ccomp _ _ 18 of _ ADP IN _ 22 case _ _ 19 `` _ PUNCT `` _ 22 punct _ _ 20 a _ DET DT _ 22 det _ _ 21 tremendous _ ADJ JJ _ 22 amod _ _ 22 number _ NOUN NN _ 17 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 signs _ NOUN NNS _ 22 nmod _ _ 25 that _ SCONJ IN _ 31 mark _ _ 26 the _ DET DT _ 29 det _ _ 27 leveraged _ ADJ JJ _ 29 amod _ _ 28 take-out _ NOUN JJ _ 29 compound _ _ 29 era _ NOUN NN _ 31 nsubj _ _ 30 is _ AUX VBZ _ 31 aux _ _ 31 ending _ VERB VBG _ 24 ccomp _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 no _ DET DT _ 4 neg _ _ 4 question _ NOUN NN _ 2 nsubj _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 there _ PRON EX _ 7 expl _ _ 7 's _ VERB VBZ _ 4 ccomp _ _ 8 a _ DET DT _ 10 det _ _ 9 general _ ADJ JJ _ 10 amod _ _ 10 distaste _ NOUN NN _ 7 nsubj _ _ 11 for _ ADP IN _ 12 case _ _ 12 leverage _ NOUN NN _ 10 nmod _ _ 13 among _ ADP IN _ 14 case _ _ 14 lenders _ NOUN NNS _ 7 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 '' _ PUNCT '' _ 4 punct _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Perkins _ PROPN NNP _ 4 nsubj _ _ 4 believes _ VERB VBZ _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 however _ ADV RB _ 4 advmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 13 nsubjpass _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 stabilized _ VERB VBN _ 4 ccomp _ _ 14 if _ SCONJ IN _ 19 mark _ _ 15 California _ PROPN NNP _ 18 compound _ _ 16 investor _ NOUN NN _ 18 compound _ _ 17 Marvin _ PROPN NNP _ 18 compound _ _ 18 Davis _ PROPN NNP _ 19 nsubj _ _ 19 steps _ VERB VBZ _ 13 advcl _ _ 20 back _ ADV RB _ 19 advmod _ _ 21 in _ ADP IN _ 25 case _ _ 22 to _ ADP TO _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 United _ PROPN NNP _ 25 compound _ _ 25 bidding _ NOUN NN _ 19 nmod _ _ 26 with _ ADP IN _ 28 case _ _ 27 an _ DET DT _ 28 det _ _ 28 offer _ NOUN NN _ 19 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 275 _ NUM CD _ 28 nmod _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Sara _ PROPN NNP _ 2 compound _ _ 2 Albert _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 8 det _ _ 5 34-year-old _ ADJ JJ _ 8 amod _ _ 6 Dallas _ PROPN NNP _ 8 compound _ _ 7 law _ NOUN NN _ 8 compound _ _ 8 student _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 she _ PRON PRP _ 14 nsubj _ _ 12 's _ VERB VBZ _ 14 cop _ _ 13 generally _ ADV RB _ 14 advmod _ _ 14 skittish _ ADJ JJ _ 10 ccomp _ _ 15 about _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 14 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 the _ DET DT _ 22 det _ _ 21 takeover _ NOUN NN _ 22 compound _ _ 22 activity _ NOUN NN _ 18 conj _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 seems _ VERB VBZ _ 22 acl:relcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 fuel _ VERB VB _ 24 xcomp _ _ 27 it _ PRON PRP _ 26 dobj _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 this _ DET DT _ 5 det _ _ 5 feeling _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 it _ PRON PRP _ 9 nsubjpass _ _ 8 's _ AUX VBZ _ 9 auxpass _ _ 9 built _ VERB VBN _ 5 ccomp _ _ 10 on _ ADP IN _ 11 case _ _ 11 sand _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 she _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 9 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 market _ NOUN NN _ 20 nsubj _ _ 20 rises _ VERB VBZ _ 9 dep _ _ 21 `` _ PUNCT `` _ 20 punct _ _ 22 but _ CONJ CC _ 20 cc _ _ 23 there _ PRON EX _ 24 expl _ _ 24 's _ VERB VBZ _ 20 conj _ _ 25 no _ DET DT _ 26 neg _ _ 26 foundation _ NOUN NN _ 24 nsubj _ _ 27 to _ ADP TO _ 28 case _ _ 28 it _ PRON PRP _ 26 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 30 '' _ PUNCT '' _ 3 punct _ _ 1 She _ PRON PRP _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 her _ PRON PRP$ _ 4 nmod:poss _ _ 4 husband _ NOUN NN _ 1 conj _ _ 5 pulled _ VERB VBD _ 0 root _ _ 6 most _ ADJ JJS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 investments _ NOUN NNS _ 6 nmod _ _ 10 out _ ADP IN _ 5 advmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 10 nmod _ _ 14 after _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 1987 _ NUM CD _ 17 nummod _ _ 17 crash _ NOUN NN _ 5 nmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 although _ SCONJ IN _ 22 mark _ _ 20 she _ PRON PRP _ 22 nsubj _ _ 21 still _ ADV RB _ 22 advmod _ _ 22 owns _ VERB VBZ _ 5 advcl _ _ 23 some _ DET DT _ 25 det _ _ 24 Texaco _ PROPN NNP _ 25 compound _ _ 25 stock _ NOUN NN _ 22 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Partly _ ADV RB _ 4 advmod _ _ 2 because _ ADP IN _ 4 case _ _ 3 of _ ADP IN _ 2 mwe _ _ 4 concern _ NOUN NN _ 27 dep _ _ 5 about _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 economy _ NOUN NN _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 partly _ ADV RB _ 13 advmod _ _ 10 because _ SCONJ IN _ 13 mark _ _ 11 she _ PRON PRP _ 13 nsubj _ _ 12 recently _ ADV RB _ 13 advmod _ _ 13 quit _ VERB VBD _ 4 conj _ _ 14 her _ PRON PRP$ _ 15 nmod:poss _ _ 15 job _ NOUN NN _ 13 dobj _ _ 16 as _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 legal _ ADJ JJ _ 19 amod _ _ 19 assistant _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 go _ VERB VB _ 13 advcl _ _ 22 to _ ADP TO _ 23 case _ _ 23 school _ NOUN NN _ 21 nmod _ _ 24 , _ PUNCT , _ 27 punct _ _ 25 `` _ PUNCT `` _ 27 punct _ _ 26 I _ PRON PRP _ 27 nsubj _ _ 27 think _ VERB VBP _ 0 root _ _ 28 at _ ADP IN _ 30 case _ _ 29 this _ DET DT _ 30 det _ _ 30 point _ NOUN NN _ 27 nmod _ _ 31 we _ PRON PRP _ 32 nsubj _ _ 32 want _ VERB VBP _ 27 ccomp _ _ 33 to _ PART TO _ 38 mark _ _ 34 be _ VERB VB _ 38 cop _ _ 35 a _ DET DT _ 36 det _ _ 36 lot _ NOUN NN _ 37 nmod:npmod _ _ 37 more _ ADV RBR _ 38 advmod _ _ 38 liquid _ ADJ JJ _ 32 xcomp _ _ 39 . _ PUNCT . _ 27 punct _ _ 40 '' _ PUNCT '' _ 27 punct _ _ 1 Others _ NOUN NNS _ 2 nsubj _ _ 2 wonder _ VERB VBP _ 0 root _ _ 3 how _ ADV WRB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 more _ ADJ JJR _ 13 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 these _ DET DT _ 8 det _ _ 8 shocks _ NOUN NNS _ 5 nmod _ _ 9 the _ DET DT _ 11 det _ _ 10 small _ ADJ JJ _ 11 amod _ _ 11 investor _ NOUN NN _ 13 nsubj _ _ 12 can _ AUX MD _ 13 aux _ _ 13 stand _ VERB VB _ 2 ccomp _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 all _ DET DT _ 4 dep _ _ 4 assumed _ VERB VBD _ 13 ccomp _ _ 5 October _ PROPN NNP _ 10 nsubj _ _ 6 '87 _ NUM CD _ 5 nummod _ _ 7 was _ VERB VBD _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 one-time _ ADJ JJ _ 10 amod _ _ 10 shot _ NOUN NN _ 4 ccomp _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 San _ PROPN NNP _ 18 compound _ _ 15 Francisco _ PROPN NNP _ 18 compound _ _ 16 attorney _ NOUN NN _ 18 compound _ _ 17 David _ PROPN NNP _ 18 compound _ _ 18 Greenberg _ PROPN NNP _ 13 nsubj _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 told _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 little _ ADJ JJ _ 6 amod _ _ 6 guy _ NOUN NN _ 3 dobj _ _ 7 it _ PRON PRP _ 10 nsubj _ _ 8 could _ AUX MD _ 10 aux _ _ 9 only _ ADV RB _ 10 advmod _ _ 10 happen _ VERB VB _ 3 dep _ _ 11 once _ ADV RB _ 10 advmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 lifetime _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 come _ VERB VBN _ 10 parataxis _ _ 17 on _ ADP IN _ 16 compound:prt _ _ 18 back _ ADV RB _ 16 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 4 advmod _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 's _ AUX VBZ _ 4 aux _ _ 4 happening _ VERB VBG _ 0 root _ _ 5 again _ ADV RB _ 4 advmod _ _ 6 . _ PUNCT . _ 4 punct _ _ 7 '' _ PUNCT '' _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Greenberg _ PROPN NNP _ 3 nsubj _ _ 3 got _ VERB VBD _ 0 root _ _ 4 out _ ADP RP _ 3 xcomp _ _ 5 just _ ADV RB _ 9 advmod _ _ 6 before _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 1987 _ NUM CD _ 9 nummod _ _ 9 crash _ NOUN NN _ 3 nmod _ _ 10 and _ CONJ CC _ 3 cc _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 to _ ADP TO _ 14 case _ _ 13 his _ PRON PRP$ _ 14 nmod:poss _ _ 14 regret _ NOUN NN _ 17 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 never _ ADV RB _ 17 neg _ _ 17 went _ VERB VBD _ 3 conj _ _ 18 back _ ADV RB _ 17 advmod _ _ 19 even _ ADV RB _ 23 advmod _ _ 20 as _ SCONJ IN _ 23 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 soared _ VERB VBD _ 17 advcl _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 5 nmod:tmod _ _ 3 he _ PRON PRP _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 ready _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 5 xcomp _ _ 8 in _ ADP IN _ 7 compound:prt _ _ 9 `` _ PUNCT `` _ 7 punct _ _ 10 when _ ADV WRB _ 13 advmod _ _ 11 the _ DET DT _ 12 det _ _ 12 panic _ NOUN NN _ 13 nsubj _ _ 13 wears _ VERB VBZ _ 7 advcl _ _ 14 off _ ADP RP _ 13 compound:prt _ _ 15 . _ PUNCT . _ 5 punct _ _ 16 '' _ PUNCT '' _ 5 punct _ _ 1 Still _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 adds _ VERB VBZ _ 0 root _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 `` _ PUNCT `` _ 4 punct _ _ 7 We _ PRON PRP _ 10 nsubj _ _ 8 ca _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 have _ VERB VB _ 4 ccomp _ _ 11 this _ DET DT _ 12 det _ _ 12 kind _ NOUN NN _ 15 nsubj _ _ 13 of _ ADP IN _ 14 case _ _ 14 thing _ NOUN NN _ 12 nmod _ _ 15 happen _ VERB VB _ 10 ccomp _ _ 16 very _ ADV RB _ 17 advmod _ _ 17 often _ ADV RB _ 15 advmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 the _ DET DT _ 4 det _ _ 3 little _ ADJ JJ _ 4 amod _ _ 4 guy _ NOUN NN _ 5 nsubj _ _ 5 gets _ VERB VBZ _ 11 advcl _ _ 6 frightened _ ADJ JJ _ 5 xcomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 big _ ADJ JJ _ 10 amod _ _ 10 guys _ NOUN NNS _ 11 nsubj _ _ 11 hurt _ VERB VBN _ 0 root _ _ 12 badly _ ADV RB _ 11 advmod _ _ 13 . _ PUNCT . _ 11 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 5 nsubj _ _ 3 ca _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 survive _ VERB VB _ 0 root _ _ 6 without _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 little _ ADJ JJ _ 9 amod _ _ 9 guy _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 11 '' _ PUNCT '' _ 5 punct _ _ 1 Small _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 tiptoed _ VERB VBN _ 0 root _ _ 5 back _ ADV RB _ 4 advmod _ _ 6 into _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 4 nmod _ _ 9 following _ VERB VBG _ 11 case _ _ 10 Black _ PROPN NNP _ 11 compound _ _ 11 Monday _ PROPN NNP _ 4 nmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 but _ CONJ CC _ 17 cc _ _ 14 mostly _ ADV RB _ 17 advmod _ _ 15 through _ ADP IN _ 17 case _ _ 16 mutual _ ADJ JJ _ 17 amod _ _ 17 funds _ NOUN NNS _ 4 dep _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Discount _ ADJ NN _ 3 amod _ _ 2 brokerage _ NOUN NN _ 3 compound _ _ 3 customers _ NOUN NNS _ 9 nsubj _ _ 4 `` _ PUNCT `` _ 9 punct _ _ 5 have _ AUX VBP _ 9 aux _ _ 6 been _ VERB VBN _ 9 cop _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 23 ccomp _ _ 10 somewhat _ ADV RB _ 9 advmod _ _ 11 but _ CONJ CC _ 10 cc _ _ 12 not _ ADV RB _ 14 neg _ _ 13 whole _ ADJ JJ _ 14 amod _ _ 14 hog _ NOUN NN _ 10 conj _ _ 15 like _ SCONJ IN _ 17 mark _ _ 16 they _ PRON PRP _ 17 nsubj _ _ 17 were _ VERB VBD _ 14 dep _ _ 18 two _ NUM CD _ 19 nummod _ _ 19 years _ NOUN NNS _ 20 nmod:npmod _ _ 20 ago _ ADV RB _ 17 advmod _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 Leslie _ PROPN NNP _ 26 compound _ _ 25 Quick _ PROPN NNP _ 26 compound _ _ 26 Jr. _ PROPN NNP _ 23 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 chairman _ NOUN NN _ 26 appos _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 Quick _ PROPN NNP _ 28 nmod _ _ 32 & _ CONJ CC _ 31 cc _ _ 33 Reilly _ PROPN NNP _ 36 compound _ _ 34 discount _ ADJ NN _ 36 amod _ _ 35 brokerage _ NOUN NN _ 36 compound _ _ 36 firm _ NOUN NN _ 31 conj _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 Hugo _ PROPN NNP _ 2 compound _ _ 2 Quackenbush _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 senior _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 at _ ADP IN _ 10 case _ _ 8 Charles _ PROPN NNP _ 10 compound _ _ 9 Scwhab _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 Schwab _ PROPN NNP _ 14 compound _ _ 14 customers _ NOUN NNS _ 20 nsubj _ _ 15 `` _ PUNCT `` _ 20 punct _ _ 16 have _ AUX VBP _ 20 aux _ _ 17 been _ VERB VBN _ 20 cop _ _ 18 neutral _ ADJ JJ _ 20 amod _ _ 19 to _ ADP TO _ 20 dep _ _ 20 cautious _ ADJ JJ _ 12 ccomp _ _ 21 recently _ ADV RB _ 20 advmod _ _ 22 about _ ADP IN _ 23 case _ _ 23 stocks _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 12 punct _ _ 25 '' _ PUNCT '' _ 12 punct _ _ 1 Individual _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 5 nsubj _ _ 3 are _ VERB VBP _ 5 cop _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 angry _ ADJ JJ _ 12 ccomp _ _ 6 about _ ADP IN _ 8 case _ _ 7 program _ NOUN NN _ 8 compound _ _ 8 trading _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 Mr. _ PROPN NNP _ 11 compound _ _ 11 Quackenbush _ PROPN NNP _ 12 nsubj _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Avner _ PROPN NNP _ 2 compound _ _ 2 Arbel _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 8 det _ _ 5 Cornell _ PROPN NNP _ 8 compound _ _ 6 University _ PROPN NNP _ 8 compound _ _ 7 finance _ NOUN NN _ 8 compound _ _ 8 professor _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 regulators _ NOUN NNS _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 have _ VERB VB _ 10 ccomp _ _ 15 to _ PART TO _ 18 mark _ _ 16 more _ ADV RBR _ 17 advmod _ _ 17 closely _ ADV RB _ 18 advmod _ _ 18 control _ VERB JJ _ 14 xcomp _ _ 19 program _ NOUN NN _ 20 compound _ _ 20 trading _ NOUN NN _ 18 dobj _ _ 21 to _ PART TO _ 23 mark _ _ 22 `` _ PUNCT `` _ 23 punct _ _ 23 win _ VERB VB _ 14 xcomp _ _ 24 back _ ADP RB _ 23 compound:prt _ _ 25 the _ DET DT _ 26 det _ _ 26 confidence _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 small _ ADJ JJ _ 30 amod _ _ 30 investor _ NOUN NN _ 26 nmod _ _ 31 . _ PUNCT . _ 10 punct _ _ 32 '' _ PUNCT '' _ 10 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 it _ PRON PRP _ 8 nsubj _ _ 3 's _ VERB VBZ _ 8 cop _ _ 4 not _ PART RB _ 8 neg _ _ 5 only _ ADV RB _ 8 advmod _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 0 root _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 has _ VERB VBZ _ 8 dep _ _ 11 some _ DET DT _ 13 det _ _ 12 small _ ADJ JJ _ 13 amod _ _ 13 investors _ NOUN NNS _ 14 nsubj _ _ 14 worried _ ADJ VBN _ 10 ccomp _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Alan _ PROPN NNP _ 2 compound _ _ 2 Helfman _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 general _ ADJ JJ _ 6 amod _ _ 5 sales _ NOUN NNS _ 6 compound _ _ 6 manager _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 Chrysler _ PROPN NNP _ 10 compound _ _ 10 dealership _ NOUN NN _ 6 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Houston _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 he _ PRON PRP _ 19 nsubj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 mother _ NOUN NN _ 15 conj _ _ 19 have _ VERB VBP _ 14 dep _ _ 20 some _ DET DT _ 23 det _ _ 21 joint _ ADJ JJ _ 23 amod _ _ 22 stock _ NOUN NN _ 23 compound _ _ 23 investments _ NOUN NNS _ 19 dobj _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 but _ CONJ CC _ 19 cc _ _ 26 the _ DET DT _ 28 det _ _ 27 overall _ ADJ JJ _ 28 amod _ _ 28 economy _ NOUN NN _ 32 nsubj _ _ 29 is _ VERB VBZ _ 32 cop _ _ 30 his _ PRON PRP$ _ 32 nmod:poss _ _ 31 chief _ ADJ NN _ 32 amod _ _ 32 worry _ NOUN NN _ 19 conj _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 These _ DET DT _ 4 det _ _ 3 high _ ADJ JJ _ 4 amod _ _ 4 rollers _ NOUN NNS _ 5 nsubj _ _ 5 took _ VERB VBD _ 13 ccomp _ _ 6 a _ DET DT _ 8 det _ _ 7 big _ ADJ JJ _ 8 amod _ _ 8 bath _ NOUN NN _ 5 dobj _ _ 9 today _ NOUN NN _ 5 nmod:tmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 in _ ADP IN _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 showroom _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 which _ PRON WDT _ 23 nsubj _ _ 19 is _ VERB VBZ _ 23 cop _ _ 20 within _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 few _ ADJ JJ _ 23 amod _ _ 23 miles _ NOUN NNS _ 16 acl:relcl _ _ 24 of _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 multi-million _ ADJ JJ _ 27 dep _ _ 27 dollar _ NOUN NN _ 28 amod _ _ 28 homes _ NOUN NNS _ 23 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 some _ DET DT _ 28 nmod _ _ 31 of _ ADP IN _ 35 case _ _ 32 Houston _ PROPN NNP _ 35 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 richest _ ADJ JJS _ 35 amod _ _ 35 citizens _ NOUN NNS _ 30 nmod _ _ 36 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 And _ CONJ CC _ 5 cc _ _ 3 I _ PRON PRP _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 tell _ VERB VB _ 0 root _ _ 6 you _ PRON PRP _ 5 dobj _ _ 7 that _ SCONJ IN _ 13 mark _ _ 8 a _ DET DT _ 10 det _ _ 9 high _ ADJ JJ _ 10 amod _ _ 10 roller _ NOUN NN _ 13 nsubj _ _ 11 is _ AUX VBZ _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 going _ VERB VBG _ 5 ccomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 come _ VERB VB _ 13 xcomp _ _ 16 in _ ADP IN _ 15 advmod _ _ 17 tomorrow _ NOUN NN _ 15 nmod:tmod _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 buy _ VERB VB _ 15 conj _ _ 20 a _ DET DT _ 22 det _ _ 21 Chrysler _ PROPN NNP _ 22 compound _ _ 22 TC _ PROPN NN _ 19 dobj _ _ 23 by _ ADP IN _ 24 case _ _ 24 Maserati _ PROPN NNP _ 22 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 26 '' _ PUNCT '' _ 5 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 finally _ ADV RB _ 6 advmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 there _ PRON EX _ 6 expl _ _ 6 were _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 gloaters _ NOUN NNS _ 6 nsubj _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 got _ VERB VBD _ 0 root _ _ 4 out _ ADP RP _ 3 xcomp _ _ 5 in _ ADP IN _ 6 case _ _ 6 1987 _ NUM CD _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 Everything _ NOUN NN _ 4 dep _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 '' _ PUNCT '' _ 4 punct _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Pascal _ PROPN NNP _ 6 compound _ _ 6 Antori _ PROPN NNP _ 4 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 an _ DET DT _ 14 det _ _ 9 Akron _ PROPN NNP _ 14 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Ohio _ PROPN NNP _ 9 dep _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 plumbing _ NOUN NN _ 14 compound _ _ 14 contractor _ NOUN NN _ 6 appos _ _ 15 who _ PRON WP _ 17 nsubj _ _ 16 was _ AUX VBD _ 17 aux _ _ 17 visiting _ VERB VBG _ 14 acl:relcl _ _ 18 Chicago _ PROPN NNP _ 17 dobj _ _ 19 and _ CONJ CC _ 17 cc _ _ 20 stopped _ VERB VBN _ 17 conj _ _ 21 by _ ADP IN _ 27 case _ _ 22 Fidelity _ PROPN NNP _ 23 compound _ _ 23 Investments _ PROPN NNP _ 27 nmod:poss _ _ 24 ' _ PART POS _ 23 case _ _ 25 LaSalle _ PROPN NNP _ 27 compound _ _ 26 Street _ PROPN NNP _ 27 compound _ _ 27 office _ NOUN NN _ 20 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 just _ ADV RB _ 4 advmod _ _ 4 stopped _ VERB VBD _ 0 root _ _ 5 by _ ADP IN _ 4 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 see _ VERB VB _ 4 xcomp _ _ 8 how _ ADV WRB _ 9 advmod _ _ 9 much _ ADJ JJ _ 13 advmod _ _ 10 I _ PRON PRP _ 13 nsubj _ _ 11 would _ AUX MD _ 13 aux _ _ 12 have _ AUX VB _ 13 aux _ _ 13 lost _ VERB VBN _ 7 ccomp _ _ 14 . _ PUNCT . _ 4 punct _ _ 15 '' _ PUNCT '' _ 4 punct _ _ 1 Would _ AUX MD _ 5 aux _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Antori _ PROPN NNP _ 5 nsubj _ _ 4 ever _ ADV RB _ 5 advmod _ _ 5 get _ VERB VB _ 0 root _ _ 6 back _ ADV RB _ 5 advmod _ _ 7 in _ ADP IN _ 5 xcomp _ _ 8 ? _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 Are _ AUX VBP _ 4 aux _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 kidding _ VERB VBG _ 0 root _ _ 5 ! _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 comes _ VERB VBZ _ 8 advcl _ _ 4 to _ ADP TO _ 5 case _ _ 5 money _ NOUN NN _ 3 nmod _ _ 6 : _ PUNCT : _ 8 punct _ _ 7 Once _ ADV RB _ 8 advmod _ _ 8 bitten _ VERB NN _ 0 root _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 2,000 _ NUM CD _ 11 nummod _ _ 11 times _ NOUN NNS _ 12 nmod:npmod _ _ 12 shy _ ADJ JJ _ 8 dep _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 crowded _ ADJ JJ _ 3 amod _ _ 3 field _ NOUN NN _ 8 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 notebook-sized _ ADJ JJ _ 6 amod _ _ 6 computers _ NOUN NNS _ 3 nmod _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 about _ ADV IN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 become _ VERB VB _ 8 xcomp _ _ 11 a _ DET DT _ 12 det _ _ 12 lot _ NOUN NN _ 13 nmod:npmod _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 crowded _ ADJ VBN _ 10 xcomp _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Compaq _ PROPN NNP _ 3 compound _ _ 2 Computer _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 long-awaited _ ADJ JJ _ 6 amod _ _ 6 entry _ NOUN NN _ 13 nsubjpass _ _ 7 today _ NOUN NN _ 6 nmod:tmod _ _ 8 into _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 notebook _ NOUN NN _ 11 compound _ _ 11 field _ NOUN NN _ 6 nmod _ _ 12 is _ AUX VBZ _ 13 auxpass _ _ 13 expected _ VERB VBN _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 put _ VERB VB _ 13 xcomp _ _ 16 immediate _ ADJ JJ _ 17 amod _ _ 17 heat _ NOUN NN _ 15 dobj _ _ 18 on _ ADP IN _ 19 case _ _ 19 others _ NOUN NNS _ 15 nmod _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 19 nmod _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 especially _ ADV RB _ 19 advmod _ _ 25 Zenith _ PROPN NNP _ 27 compound _ _ 26 Electronics _ PROPN NNP _ 27 compound _ _ 27 Corp. _ PROPN NNP _ 19 dep _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 the _ DET DT _ 32 det _ _ 30 current _ ADJ JJ _ 32 amod _ _ 31 market _ NOUN NN _ 32 compound _ _ 32 leader _ NOUN NN _ 27 appos _ _ 33 , _ PUNCT , _ 19 punct _ _ 34 and _ CONJ CC _ 19 cc _ _ 35 on _ ADP IN _ 37 case _ _ 36 a _ DET DT _ 37 det _ _ 37 swarm _ NOUN NN _ 19 conj _ _ 38 of _ ADP IN _ 40 case _ _ 39 promising _ ADJ JJ _ 40 amod _ _ 40 start-ups _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 13 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 series _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 notebooks _ NOUN NNS _ 3 nmod _ _ 6 extends _ VERB VBZ _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 trend _ NOUN NN _ 6 dobj _ _ 9 toward _ ADP IN _ 10 case _ _ 10 downsizing _ NOUN VBG _ 8 nmod _ _ 11 in _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 personal _ ADJ JJ _ 15 amod _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 8 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 manufacturer _ NOUN NN _ 5 nsubj _ _ 3 already _ ADV RB _ 5 advmod _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 produced _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 clipboard-sized _ ADJ JJ _ 8 amod _ _ 8 computer _ NOUN NN _ 9 nsubj _ _ 9 called _ VERB VBD _ 5 ccomp _ _ 10 a _ DET DT _ 11 det _ _ 11 notepad _ NOUN NN _ 9 xcomp _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 others _ NOUN NNS _ 17 nsubj _ _ 16 have _ AUX VBP _ 17 aux _ _ 17 introduced _ VERB VBN _ 5 conj _ _ 18 even _ ADV RB _ 19 advmod _ _ 19 smaller _ ADJ JJR _ 21 amod _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 palmtops _ NOUN NNS _ 17 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 23 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 those _ DET DT _ 3 det _ _ 3 machines _ NOUN NNS _ 6 nsubjpass _ _ 4 are _ AUX VBP _ 6 auxpass _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 considered _ VERB VBN _ 0 root _ _ 7 novelties _ NOUN NNS _ 6 xcomp _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 with _ ADP IN _ 10 case _ _ 10 keyboards _ NOUN NNS _ 6 nmod _ _ 11 only _ ADV RB _ 13 advmod _ _ 12 a _ DET DT _ 13 det _ _ 13 munchkin _ NOUN NN _ 15 nsubj _ _ 14 could _ AUX MD _ 15 aux _ _ 15 love _ VERB VB _ 10 acl:relcl _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 screens _ VERB NNS _ 10 conj _ _ 18 to _ PART TO _ 19 mark _ _ 19 match _ VERB VB _ 17 acl _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 notebooks _ NOUN NNS _ 11 nsubj _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 by _ ADP IN _ 6 case _ _ 6 contrast _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 may _ AUX MD _ 11 aux _ _ 9 be _ VERB VB _ 11 cop _ _ 10 the _ DET DT _ 11 det _ _ 11 first _ ADJ JJ _ 0 root _ _ 12 in _ ADP IN _ 15 case _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 weight _ NOUN NN _ 15 compound _ _ 15 class _ NOUN NN _ 11 nmod _ _ 16 not _ PART RB _ 18 neg _ _ 17 to _ PART TO _ 18 mark _ _ 18 skimp _ VERB VB _ 11 dep _ _ 19 on _ ADP IN _ 20 case _ _ 20 features _ NOUN NNS _ 18 nmod _ _ 21 found _ VERB VBN _ 20 acl _ _ 22 in _ ADP IN _ 25 case _ _ 23 much _ ADV RB _ 24 advmod _ _ 24 bigger _ ADJ JJR _ 25 amod _ _ 25 machines _ NOUN NNS _ 21 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 're _ VERB VBP _ 5 cop _ _ 5 faster _ ADJ JJR _ 2 dep _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 carry _ VERB VB _ 5 conj _ _ 8 more _ ADJ JJR _ 9 amod _ _ 9 memory _ NOUN NN _ 7 dobj _ _ 10 than _ ADP IN _ 11 case _ _ 11 anything _ NOUN NN _ 9 nmod _ _ 12 else _ ADV RB _ 11 amod _ _ 13 of _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 size _ NOUN NN _ 11 nmod _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 11 nmod _ _ 19 -- _ PUNCT : _ 5 punct _ _ 20 and _ CONJ CC _ 5 cc _ _ 21 they _ PRON PRP _ 23 nsubjpass _ _ 22 're _ AUX VBP _ 23 auxpass _ _ 23 priced _ VERB VBN _ 5 conj _ _ 24 aggressively _ ADV RB _ 23 advmod _ _ 25 at _ ADP IN _ 27 case _ _ 26 $ _ SYM $ _ 27 dep _ _ 27 2,400 _ NUM CD _ 23 nmod _ _ 28 to _ ADP TO _ 27 dep _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 5,000 _ NUM CD _ 27 dep _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 All _ DET DT _ 4 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 this _ PRON DT _ 1 nmod _ _ 4 comes _ VERB VBZ _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 machine _ NOUN NN _ 4 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 weighs _ VERB VBZ _ 7 acl:relcl _ _ 10 only _ ADV RB _ 11 advmod _ _ 11 six _ NUM CD _ 12 nummod _ _ 12 pounds _ NOUN NNS _ 9 dobj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 fits _ VERB VBZ _ 9 conj _ _ 15 comfortably _ ADV RB _ 14 advmod _ _ 16 into _ ADP IN _ 18 case _ _ 17 most _ ADJ JJS _ 18 amod _ _ 18 briefcases _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 months _ NOUN NNS _ 22 nmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 Compaq _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 competition _ NOUN NN _ 22 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 including _ VERB VBG _ 10 case _ _ 10 Zenith _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Toshiba _ PROPN NNP _ 13 compound _ _ 13 Corp. _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 Tandy _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 10 conj _ _ 17 and _ CONJ CC _ 10 cc _ _ 18 NEC _ PROPN NNP _ 19 compound _ _ 19 Corp. _ PROPN NNP _ 10 conj _ _ 20 all _ DET DT _ 22 dep _ _ 21 have _ AUX VBP _ 22 aux _ _ 22 introduced _ VERB VBN _ 0 root _ _ 23 portables _ NOUN NNS _ 22 dobj _ _ 24 that _ PRON WDT _ 25 nsubj _ _ 25 weigh _ VERB VBP _ 23 acl:relcl _ _ 26 approximately _ ADV RB _ 28 advmod _ _ 27 the _ DET DT _ 28 det _ _ 28 same _ ADJ JJ _ 25 dobj _ _ 29 and _ CONJ CC _ 25 cc _ _ 30 that _ PRON DT _ 32 nsubjpass _ _ 31 are _ AUX VBP _ 32 auxpass _ _ 32 called _ VERB VBN _ 25 conj _ _ 33 notebooks _ NOUN NNS _ 32 xcomp _ _ 34 -- _ PUNCT : _ 32 punct _ _ 35 perhaps _ ADV RB _ 36 advmod _ _ 36 misleadingly _ ADV RB _ 32 advmod _ _ 37 . _ PUNCT . _ 22 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 analyst _ NOUN NN _ 15 nsubj _ _ 3 , _ PUNCT , _ 15 punct _ _ 4 noting _ VERB VBG _ 15 advcl _ _ 5 that _ SCONJ IN _ 13 mark _ _ 6 most _ ADJ JJS _ 8 amod _ _ 7 such _ ADJ JJ _ 8 amod _ _ 8 machines _ NOUN NNS _ 13 nsubj _ _ 9 are _ VERB VBP _ 13 cop _ _ 10 about _ ADV IN _ 11 advmod _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 inches _ NOUN NNS _ 13 nmod:npmod _ _ 13 thick _ ADJ JJ _ 4 ccomp _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 takes _ VERB VBZ _ 0 root _ _ 16 exception _ NOUN NN _ 15 dobj _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 name _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 This _ PRON DT _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 n't _ PART RB _ 7 neg _ _ 5 quite _ ADV RB _ 7 advmod _ _ 6 a _ DET DT _ 7 det _ _ 7 notebook _ NOUN NN _ 17 ccomp _ _ 8 -- _ PUNCT : _ 7 punct _ _ 9 I _ PRON PRP _ 10 nsubj _ _ 10 call _ VERB VBP _ 7 parataxis _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 a _ DET DT _ 13 det _ _ 13 phonebook _ NOUN NN _ 10 xcomp _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 That _ PRON DT _ 5 nsubjpass _ _ 2 ca _ AUX MD _ 5 aux _ _ 3 n't _ PART RB _ 5 neg _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 said _ VERB VBN _ 0 root _ _ 6 of _ ADP IN _ 11 case _ _ 7 the _ DET DT _ 11 det _ _ 8 $ _ SYM $ _ 11 amod _ _ 9 2,400 _ NUM CD _ 8 compound _ _ 10 notepad _ NOUN NN _ 11 compound _ _ 11 computer _ NOUN NN _ 5 nmod _ _ 12 introduced _ VERB VBD _ 11 acl _ _ 13 a _ DET DT _ 15 det _ _ 14 few _ ADJ JJ _ 15 amod _ _ 15 weeks _ NOUN NNS _ 16 nmod:npmod _ _ 16 ago _ ADV RB _ 12 advmod _ _ 17 by _ ADP IN _ 20 case _ _ 18 GRiD _ PROPN NNP _ 20 compound _ _ 19 Systems _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 12 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 23 det _ _ 23 unit _ NOUN NN _ 20 appos _ _ 24 of _ ADP IN _ 25 case _ _ 25 Tandy _ PROPN NNP _ 23 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Instead _ ADV RB _ 4 case _ _ 2 of _ ADP IN _ 1 mwe _ _ 3 a _ DET DT _ 4 det _ _ 4 keyboard _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 features _ VERB VBZ _ 0 root _ _ 8 a _ DET DT _ 10 det _ _ 9 writing _ NOUN VBG _ 10 compound _ _ 10 surface _ NOUN NN _ 7 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 an _ DET DT _ 14 det _ _ 13 electronic _ ADJ JJ _ 14 amod _ _ 14 pen _ NOUN NN _ 10 conj _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 ability _ NOUN NN _ 10 conj _ _ 18 to _ PART TO _ 20 mark _ _ 19 `` _ PUNCT `` _ 20 punct _ _ 20 read _ VERB VB _ 17 acl _ _ 21 '' _ PUNCT '' _ 20 punct _ _ 22 block _ ADJ NN _ 23 amod _ _ 23 printing _ NOUN NN _ 20 dobj _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 4 _ NUM CD _ 3 compound _ _ 3 1/2 _ NUM CD _ 4 nummod _ _ 4 pounds _ NOUN NNS _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 it _ PRON PRP _ 11 nsubjpass _ _ 7 may _ AUX MD _ 11 aux _ _ 8 be _ AUX VB _ 11 auxpass _ _ 9 too _ ADV RB _ 10 advmod _ _ 10 ambitiously _ ADV RB _ 11 advmod _ _ 11 named _ VERB VBN _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 but _ CONJ CC _ 11 cc _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 nevertheless _ ADV RB _ 16 advmod _ _ 16 opens _ VERB VBZ _ 11 conj _ _ 17 up _ ADP RP _ 16 compound:prt _ _ 18 the _ DET DT _ 19 det _ _ 19 kind _ NOUN NN _ 16 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 marketing _ NOUN NN _ 22 compound _ _ 22 possibilities _ NOUN NNS _ 19 nmod _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 make _ VERB VBP _ 19 acl:relcl _ _ 25 analysts _ NOUN NNS _ 26 nsubj _ _ 26 froth _ VERB VBP _ 24 ccomp _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 Palmtops _ NOUN NNP _ 2 nsubj _ _ 2 are _ VERB VBP _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 far _ ADV RB _ 5 advmod _ _ 5 behind _ ADV IN _ 2 advmod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 Atari _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 Portfolio _ PROPN NNP _ 20 nsubj _ _ 5 , _ PUNCT , _ 20 punct _ _ 6 introduced _ VERB VBN _ 20 advcl _ _ 7 in _ ADP IN _ 8 case _ _ 8 Europe _ PROPN NNP _ 6 nmod _ _ 9 two _ NUM CD _ 10 nummod _ _ 10 months _ NOUN NNS _ 11 nmod:npmod _ _ 11 ago _ ADV RB _ 6 advmod _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 U.S. _ PROPN NNP _ 6 conj _ _ 16 in _ ADP IN _ 18 case _ _ 17 early _ ADJ JJ _ 18 amod _ _ 18 September _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 weighs _ VERB VBZ _ 0 root _ _ 21 less _ ADV JJR _ 23 advmod _ _ 22 than _ ADP IN _ 21 mwe _ _ 23 a _ DET DT _ 24 nummod _ _ 24 pound _ NOUN NN _ 20 dobj _ _ 25 , _ PUNCT , _ 20 punct _ _ 26 costs _ VERB VBZ _ 20 conj _ _ 27 a _ DET DT _ 30 det _ _ 28 mere _ ADJ JJ _ 30 amod _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 400 _ NUM CD _ 26 dobj _ _ 31 and _ CONJ CC _ 20 cc _ _ 32 runs _ VERB VBZ _ 20 conj _ _ 33 on _ ADP IN _ 36 case _ _ 34 three _ NUM CD _ 36 nummod _ _ 35 AA _ NOUN NN _ 36 compound _ _ 36 batteries _ NOUN NNS _ 32 nmod _ _ 37 , _ PUNCT , _ 20 punct _ _ 38 yet _ CONJ RB _ 20 cc _ _ 39 has _ VERB VBZ _ 20 conj _ _ 40 the _ DET DT _ 41 det _ _ 41 power _ NOUN NN _ 39 dobj _ _ 42 to _ PART TO _ 43 mark _ _ 43 run _ VERB VB _ 41 acl _ _ 44 some _ DET DT _ 45 det _ _ 45 spreadsheets _ NOUN NNS _ 43 dobj _ _ 46 and _ CONJ CC _ 45 cc _ _ 47 word _ NOUN NN _ 49 compound _ _ 48 processing _ NOUN NN _ 49 compound _ _ 49 programs _ NOUN NNS _ 45 conj _ _ 50 . _ PUNCT . _ 20 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 critics _ NOUN NNS _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 say _ VERB VBP _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 ability _ NOUN NN _ 14 nsubjpass _ _ 9 to _ PART TO _ 10 mark _ _ 10 run _ VERB VB _ 8 acl _ _ 11 commonplace _ ADJ JJ _ 12 amod _ _ 12 programs _ NOUN NNS _ 10 dobj _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 restricted _ VERB VBN _ 6 ccomp _ _ 15 by _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 limited _ ADJ JJ _ 18 amod _ _ 18 memory _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Poquet _ PROPN NNP _ 3 compound _ _ 2 Computer _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 meanwhile _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 introduced _ VERB VBN _ 0 root _ _ 9 a _ DET DT _ 13 det _ _ 10 much _ ADV RB _ 11 advmod _ _ 11 more _ ADV RBR _ 12 advmod _ _ 12 sophisticated _ ADJ JJ _ 13 amod _ _ 13 palmtop _ NOUN NN _ 8 dobj _ _ 14 that _ PRON WDT _ 16 nsubj _ _ 15 can _ AUX MD _ 16 aux _ _ 16 run _ VERB VB _ 13 acl:relcl _ _ 17 Lotus _ PROPN NNP _ 18 compound _ _ 18 1-2-3 _ PROPN NNP _ 16 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 other _ ADJ JJ _ 23 amod _ _ 21 sophisticated _ ADJ JJ _ 23 amod _ _ 22 software _ NOUN NN _ 23 compound _ _ 23 programs _ NOUN NNS _ 18 conj _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 but _ CONJ CC _ 16 cc _ _ 26 costs _ VERB NNS _ 16 conj _ _ 27 five _ NUM CD _ 28 compound _ _ 28 times _ NOUN NNS _ 30 nummod _ _ 29 as _ ADV RB _ 30 advmod _ _ 30 much _ ADJ RB _ 26 dobj _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 stake _ NOUN NN _ 3 nmod _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 what _ PRON WP _ 20 dobj _ _ 5 Mike _ PROPN NNP _ 6 compound _ _ 6 Swavely _ PROPN NNP _ 16 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Compaq _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 president _ NOUN NN _ 6 appos _ _ 11 of _ ADP IN _ 14 case _ _ 12 North _ PROPN NNP _ 14 compound _ _ 13 America _ PROPN NNP _ 14 compound _ _ 14 operations _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 calls _ VERB VBZ _ 28 dep _ _ 17 `` _ PUNCT `` _ 20 punct _ _ 18 the _ DET DT _ 20 det _ _ 19 Holy _ PROPN NNP _ 20 compound _ _ 20 Grail _ PROPN NN _ 16 xcomp _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 computer _ NOUN NN _ 24 compound _ _ 24 industry _ NOUN NN _ 20 nmod _ _ 25 '' _ PUNCT '' _ 20 punct _ _ 26 -- _ PUNCT : _ 28 punct _ _ 27 the _ DET DT _ 28 det _ _ 28 search _ NOUN NN _ 3 nsubj _ _ 29 for _ ADP IN _ 33 case _ _ 30 `` _ PUNCT `` _ 33 punct _ _ 31 a _ DET DT _ 33 det _ _ 32 real _ ADJ JJ _ 33 amod _ _ 33 computer _ NOUN NN _ 28 nmod _ _ 34 in _ ADP IN _ 36 case _ _ 35 a _ DET DT _ 36 det _ _ 36 package _ NOUN NN _ 33 nmod _ _ 37 so _ ADV RB _ 38 advmod _ _ 38 small _ ADJ JJ _ 36 amod _ _ 39 you _ PRON PRP _ 41 nsubj _ _ 40 can _ AUX MD _ 41 aux _ _ 41 take _ VERB VB _ 38 ccomp _ _ 42 it _ PRON PRP _ 41 dobj _ _ 43 everywhere _ ADV RB _ 41 advmod _ _ 44 . _ PUNCT . _ 3 punct _ _ 45 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 new _ ADJ JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 nobody _ NOUN NN _ 8 nsubj _ _ 8 knows _ VERB VBZ _ 5 ccomp _ _ 9 yet _ ADV RB _ 8 advmod _ _ 10 how _ ADV WRB _ 11 advmod _ _ 11 big _ ADJ JJ _ 14 dep _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 can _ AUX MD _ 14 aux _ _ 14 be _ VERB VB _ 8 ccomp _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 had _ VERB VBD _ 23 ccomp _ _ 5 a _ DET DT _ 6 det _ _ 6 lot _ NOUN NN _ 9 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 people _ NOUN NNS _ 6 nmod _ _ 9 trying _ VERB VBG _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 9 xcomp _ _ 12 me _ PRON PRP _ 11 iobj _ _ 13 services _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 find _ VERB VB _ 13 acl _ _ 16 out _ ADP RP _ 15 compound:prt _ _ 17 how _ ADV WRB _ 18 advmod _ _ 18 big _ ADJ JJ _ 20 dep _ _ 19 it _ PRON PRP _ 20 nsubj _ _ 20 is _ VERB VBZ _ 15 ccomp _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 Tom _ PROPN NNP _ 25 compound _ _ 25 Humphries _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 director _ NOUN NN _ 25 appos _ _ 28 of _ ADP IN _ 29 case _ _ 29 marketing _ NOUN NN _ 27 nmod _ _ 30 for _ ADP IN _ 31 case _ _ 31 GRiD _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 Whether _ SCONJ IN _ 5 mark _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 $ _ SYM $ _ 14 advcl _ _ 6 5 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 or _ CONJ CC _ 5 cc _ _ 9 $ _ SYM $ _ 5 conj _ _ 10 3.5 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 does _ VERB VBZ _ 0 root _ _ 15 n't _ PART RB _ 14 neg _ _ 16 matter _ NOUN VB _ 14 dobj _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 huge _ ADJ JJ _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 5 '' _ PUNCT '' _ 3 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 the _ DET DT _ 3 det _ _ 3 growth _ NOUN NN _ 1 dobj _ _ 4 of _ ADP IN _ 5 case _ _ 5 portables _ NOUN NNS _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 now _ ADV RB _ 9 advmod _ _ 9 comprise _ VERB VBP _ 5 acl:relcl _ _ 10 12 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 all _ DET DT _ 16 det _ _ 14 personal _ ADJ JJ _ 16 amod _ _ 15 computer _ NOUN NN _ 16 compound _ _ 16 sales _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 1 punct _ _ 1 Laptops _ NOUN NNS _ 10 nsubj _ _ 2 -- _ PUNCT : _ 4 punct _ _ 3 generally _ ADV RB _ 4 advmod _ _ 4 anything _ NOUN NN _ 1 dep _ _ 5 under _ ADP IN _ 7 case _ _ 6 15 _ NUM CD _ 7 nummod _ _ 7 pounds _ NOUN NNS _ 4 nmod _ _ 8 -- _ PUNCT : _ 4 punct _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 become _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 15 det _ _ 12 fastest-growing _ ADJ JJ _ 15 amod _ _ 13 personal _ ADJ JJ _ 15 amod _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 segment _ NOUN NN _ 10 xcomp _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 with _ SCONJ IN _ 19 mark _ _ 18 sales _ NOUN NNS _ 19 nsubj _ _ 19 doubling _ VERB VBG _ 10 advcl _ _ 20 this _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 19 nmod:tmod _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 Responding _ VERB VBG _ 9 dep _ _ 2 to _ ADP TO _ 4 case _ _ 3 that _ DET DT _ 4 det _ _ 4 demand _ NOUN NN _ 1 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 however _ ADV RB _ 9 advmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 led _ VERB VBN _ 0 root _ _ 10 to _ ADP TO _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 variety _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 compromises _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Making _ VERB VBG _ 5 csubj _ _ 2 computers _ NOUN NNS _ 3 nsubj _ _ 3 smaller _ ADJ JJR _ 1 xcomp _ _ 4 often _ ADV RB _ 5 advmod _ _ 5 means _ VERB VBZ _ 0 root _ _ 6 sacrificing _ VERB VBG _ 5 xcomp _ _ 7 memory _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 precluded _ VERB VBN _ 0 root _ _ 5 use _ NOUN NN _ 4 dobj _ _ 6 of _ ADP IN _ 12 case _ _ 7 the _ DET DT _ 12 det _ _ 8 faster _ ADJ RBR _ 12 amod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 more _ ADV RBR _ 11 advmod _ _ 11 powerful _ ADJ JJ _ 12 amod _ _ 12 microprocessors _ NOUN NNS _ 5 nmod _ _ 13 found _ VERB VBN _ 12 acl _ _ 14 in _ ADP IN _ 16 case _ _ 15 increasing _ VERB VBG _ 16 amod _ _ 16 numbers _ NOUN NNS _ 13 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 desktop _ ADJ NN _ 19 amod _ _ 19 machines _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Size _ NOUN NN _ 4 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 weight _ NOUN NN _ 1 conj _ _ 4 considerations _ NOUN NNS _ 7 nsubj _ _ 5 also _ ADV RB _ 7 advmod _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 limited _ VERB VBN _ 0 root _ _ 8 screen _ NOUN NN _ 9 compound _ _ 9 displays _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 competitive _ ADJ JJ _ 3 amod _ _ 3 sniping _ NOUN VBG _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 get _ VERB VB _ 0 root _ _ 6 pretty _ ADV RB _ 7 advmod _ _ 7 petty _ ADJ JJ _ 5 xcomp _ _ 8 at _ ADP IN _ 9 case _ _ 9 times _ NOUN NNS _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Poquet _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 example _ NOUN NN _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 criticizes _ VERB VBZ _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 Atari _ PROPN NNP _ 11 compound _ _ 11 Portfolio _ PROPN NNP _ 8 dobj _ _ 12 because _ SCONJ IN _ 14 mark _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 requires _ VERB VBZ _ 8 advcl _ _ 15 three _ NUM CD _ 16 nummod _ _ 16 batteries _ NOUN NNS _ 14 dobj _ _ 17 while _ SCONJ IN _ 20 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 Poquet _ PROPN NNP _ 20 nsubj _ _ 20 needs _ VERB VBZ _ 14 advcl _ _ 21 only _ ADV RB _ 22 advmod _ _ 22 two _ NUM CD _ 20 dobj _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 Both _ DET DT _ 2 det _ _ 2 palmtops _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 dismissed _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 notebook _ NOUN NN _ 7 compound _ _ 7 makers _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 who _ PRON WP _ 10 nsubj _ _ 10 argue _ VERB VBP _ 7 acl:relcl _ _ 11 that _ SCONJ IN _ 15 mark _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 're _ VERB VBP _ 15 cop _ _ 14 too _ ADV RB _ 15 advmod _ _ 15 small _ ADJ JJ _ 10 ccomp _ _ 16 -- _ PUNCT : _ 26 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 problem _ NOUN NN _ 26 dep _ _ 19 Poquet _ PROPN NNP _ 21 nsubj _ _ 20 also _ ADV RB _ 21 advmod _ _ 21 encountered _ VERB VBD _ 18 acl:relcl _ _ 22 in _ ADP IN _ 24 case _ _ 23 focus _ NOUN NN _ 24 compound _ _ 24 groups _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 admits _ VERB VBZ _ 15 parataxis _ _ 27 Gerry _ PROPN NNP _ 28 compound _ _ 28 Purdy _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 director _ NOUN NN _ 28 appos _ _ 31 of _ ADP IN _ 32 case _ _ 32 marketing _ NOUN NN _ 30 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 Poquet _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 trying _ VERB VBG _ 12 advcl _ _ 4 to _ PART TO _ 5 mark _ _ 5 avoid _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 10 det _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 gadget _ NOUN NN _ 10 compound _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 label _ NOUN NN _ 5 dobj _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 responded _ VERB VBD _ 0 root _ _ 13 with _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 tag _ NOUN NN _ 16 compound _ _ 16 line _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 16 punct _ _ 19 The _ DET DT _ 21 det _ _ 20 Poquet _ PROPN NNP _ 21 compound _ _ 21 PC _ PROPN NNP _ 16 dep _ _ 22 -- _ PUNCT : _ 21 punct _ _ 23 a _ DET DT _ 26 det _ _ 24 Very _ PROPN RB _ 25 amod _ _ 25 Big _ PROPN JJ _ 26 amod _ _ 26 Computer _ PROPN NN _ 21 dep _ _ 27 . _ PUNCT . _ 12 punct _ _ 28 '' _ PUNCT '' _ 12 punct _ _ 1 Despite _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 sniping _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 few _ ADJ JJ _ 6 nsubj _ _ 6 question _ NOUN NN _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 inevitability _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 move _ NOUN NN _ 8 nmod _ _ 12 to _ ADP TO _ 14 case _ _ 13 small _ ADJ JJ _ 14 amod _ _ 14 machines _ NOUN NNS _ 11 nmod _ _ 15 that _ PRON WDT _ 18 nsubj _ _ 16 do _ AUX VBP _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 make _ VERB VB _ 14 acl:relcl _ _ 19 compromises _ NOUN NNS _ 18 dobj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Toward _ ADP IN _ 3 case _ _ 2 that _ DET DT _ 3 det _ _ 3 end _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 experts _ NOUN NNS _ 6 nsubj _ _ 6 say _ VERB VBP _ 0 root _ _ 7 the _ DET DT _ 9 det _ _ 8 real _ ADJ JJ _ 9 amod _ _ 9 battle _ NOUN NN _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 take _ VERB VB _ 6 ccomp _ _ 12 place _ NOUN NN _ 11 dobj _ _ 13 between _ ADP IN _ 15 case _ _ 14 center-stage _ ADJ NN _ 15 amod _ _ 15 players _ NOUN NNS _ 11 nmod _ _ 16 like _ ADP IN _ 22 case _ _ 17 Toshiba _ PROPN NNP _ 19 compound _ _ 18 , _ PUNCT , _ 19 punct _ _ 19 Zenith _ PROPN NNP _ 22 compound _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 now _ ADV RB _ 19 advmod _ _ 22 Compaq _ PROPN NNP _ 15 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Compaq _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 machines _ NOUN NNS _ 6 nsubjpass _ _ 5 are _ AUX VBP _ 6 auxpass _ _ 6 considered _ VERB VBN _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 direct _ ADJ JJ _ 9 amod _ _ 9 threat _ NOUN NN _ 6 xcomp _ _ 10 to _ ADP TO _ 12 case _ _ 11 start-up _ ADJ JJ _ 12 amod _ _ 12 firms _ NOUN NNS _ 9 nmod _ _ 13 like _ ADP IN _ 15 case _ _ 14 Dynabook _ PROPN NNP _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 18 nsubj _ _ 18 introduced _ VERB VBD _ 15 acl:relcl _ _ 19 in _ ADP IN _ 20 case _ _ 20 June _ PROPN NNP _ 18 nmod _ _ 21 a _ DET DT _ 22 det _ _ 22 computer _ NOUN NN _ 18 dobj _ _ 23 that _ PRON IN _ 29 nsubj _ _ 24 , _ PUNCT , _ 29 punct _ _ 25 like _ ADP IN _ 26 case _ _ 26 Compaq _ PROPN NNP _ 29 nmod _ _ 27 's _ PART POS _ 26 case _ _ 28 , _ PUNCT , _ 29 punct _ _ 29 uses _ VERB VBZ _ 22 acl:relcl _ _ 30 an _ DET DT _ 33 det _ _ 31 Intel _ PROPN NNP _ 33 compound _ _ 32 286 _ NUM CD _ 33 nummod _ _ 33 microprocessor _ NOUN NN _ 29 dobj _ _ 34 and _ CONJ CC _ 29 cc _ _ 35 has _ VERB VBZ _ 29 conj _ _ 36 a _ DET DT _ 39 det _ _ 37 hard _ ADJ JJ _ 39 amod _ _ 38 disk _ NOUN NN _ 39 compound _ _ 39 drive _ NOUN NN _ 35 dobj _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 Dynabook _ PROPN NNP _ 4 compound _ _ 4 product _ NOUN NN _ 8 nsubj _ _ 5 is _ VERB VBZ _ 8 cop _ _ 6 twice _ ADV RB _ 8 advmod _ _ 7 as _ ADP IN _ 8 dep _ _ 8 heavy _ ADJ JJ _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 costs _ NOUN VBZ _ 8 conj _ _ 11 more _ ADJ JJR _ 10 dobj _ _ 12 than _ ADP IN _ 13 case _ _ 13 Compaq _ PROPN NNP _ 11 nmod _ _ 14 's _ PART POS _ 13 case _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 announcement _ NOUN NN _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 spells _ VERB NNS _ 0 root _ _ 6 trouble _ NOUN NN _ 5 dobj _ _ 7 for _ ADP IN _ 8 case _ _ 8 Zenith _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 13 nsubj _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 13 dep _ _ 13 had _ VERB VBD _ 8 acl:relcl _ _ 14 28 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dobj _ _ 16 of _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 U.S. _ PROPN NNP _ 20 compound _ _ 19 laptop _ NOUN NN _ 20 compound _ _ 20 market _ NOUN NN _ 15 nmod _ _ 21 but _ CONJ CC _ 13 cc _ _ 22 recently _ ADV RB _ 23 advmod _ _ 23 agreed _ VERB VBD _ 13 conj _ _ 24 to _ PART TO _ 25 mark _ _ 25 sell _ VERB VB _ 23 xcomp _ _ 26 its _ PRON PRP$ _ 28 nmod:poss _ _ 27 computer _ NOUN NN _ 28 compound _ _ 28 business _ NOUN NN _ 25 dobj _ _ 29 to _ ADP TO _ 33 case _ _ 30 Cie. _ PROPN NNP _ 33 compound _ _ 31 des _ PROPN NNP _ 33 compound _ _ 32 Machines _ PROPN NNP _ 33 compound _ _ 33 Bull _ PROPN NNP _ 25 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 the _ DET DT _ 39 det _ _ 36 French _ ADJ JJ _ 39 amod _ _ 37 government-owned _ ADJ JJ _ 39 amod _ _ 38 computer _ NOUN NN _ 39 compound _ _ 39 maker _ NOUN NN _ 33 appos _ _ 40 . _ PUNCT . _ 5 punct _ _ 1 Zenith _ PROPN NNP _ 2 compound _ _ 2 holders _ NOUN NNS _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 vote _ VERB VB _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 December _ PROPN NNP _ 4 nmod _ _ 7 on _ ADP IN _ 13 case _ _ 8 the _ DET DT _ 13 det _ _ 9 proposed _ ADJ VBN _ 13 amod _ _ 10 $ _ SYM $ _ 13 amod _ _ 11 635 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 sale _ NOUN NN _ 4 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 price _ NOUN NN _ 13 appos _ _ 17 that _ PRON WDT _ 19 nsubj _ _ 18 could _ AUX MD _ 19 aux _ _ 19 slip _ VERB VB _ 16 acl:relcl _ _ 20 because _ SCONJ IN _ 23 mark _ _ 21 it _ PRON PRP _ 23 nsubjpass _ _ 22 is _ AUX VBZ _ 23 auxpass _ _ 23 pegged _ VERB VBN _ 19 advcl _ _ 24 to _ ADP TO _ 27 case _ _ 25 Zenith _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 share _ NOUN NN _ 23 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 sales _ NOUN NNS _ 27 conj _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 Compaq _ PROPN NNP _ 4 nsubj _ _ 2 is _ AUX VBZ _ 4 aux _ _ 3 already _ ADV RB _ 4 advmod _ _ 4 taking _ VERB VBG _ 0 root _ _ 5 aim _ NOUN NN _ 4 dobj _ _ 6 at _ ADP IN _ 10 case _ _ 7 Zenith _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 market _ NOUN NN _ 10 compound _ _ 10 share _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Rod _ PROPN NNP _ 2 compound _ _ 2 Canion _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Compaq _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 chief _ ADJ JJ _ 10 amod _ _ 9 executive _ ADJ JJ _ 10 amod _ _ 10 officer _ NOUN NN _ 6 conj _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 notes _ VERB VBZ _ 0 root _ _ 13 pointedly _ ADV RB _ 12 advmod _ _ 14 that _ SCONJ IN _ 20 mark _ _ 15 Zenith _ PROPN NNP _ 19 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 $ _ SYM $ _ 19 amod _ _ 18 2,000 _ NUM CD _ 17 compound _ _ 19 MinisPort _ PROPN NNP _ 20 nsubj _ _ 20 uses _ VERB VBZ _ 12 ccomp _ _ 21 an _ DET DT _ 27 det _ _ 22 `` _ PUNCT `` _ 27 punct _ _ 23 unconventional _ ADJ JJ _ 27 amod _ _ 24 '' _ PUNCT '' _ 27 punct _ _ 25 two-inch _ ADJ JJ _ 27 amod _ _ 26 floppy _ ADJ JJ _ 27 amod _ _ 27 disk _ NOUN NN _ 20 dobj _ _ 28 , _ PUNCT , _ 20 punct _ _ 29 whereas _ SCONJ IN _ 34 mark _ _ 30 Compaq _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 new _ ADJ JJ _ 33 amod _ _ 33 machines _ NOUN NNS _ 34 nsubj _ _ 34 use _ VERB VBP _ 20 advcl _ _ 35 the _ DET DT _ 40 det _ _ 36 more _ ADV JJR _ 37 advmod _ _ 37 common _ ADJ JJ _ 40 amod _ _ 38 3 _ NUM CD _ 39 compound _ _ 39 1/2-inch _ ADJ JJ _ 40 amod _ _ 40 disk _ NOUN NN _ 34 dobj _ _ 41 . _ PUNCT . _ 12 punct _ _ 1 John _ PROPN NNP _ 3 compound _ _ 2 P. _ PROPN NNP _ 3 compound _ _ 3 Frank _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 president _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 9 case _ _ 7 Zenith _ PROPN NNP _ 9 compound _ _ 8 Data _ PROPN NNP _ 9 compound _ _ 9 Systems _ PROPN NNPS _ 5 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 simply _ ADV RB _ 12 advmod _ _ 12 shrugs _ NOUN VBZ _ 0 root _ _ 13 off _ ADP RP _ 12 compound:prt _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 criticism _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 noting _ VERB VBG _ 12 advcl _ _ 18 that _ SCONJ IN _ 25 mark _ _ 19 3 _ NUM CD _ 20 compound _ _ 20 1/2-inch _ ADJ JJ _ 21 amod _ _ 21 floppies _ NOUN NNS _ 25 nsubj _ _ 22 were _ VERB VBD _ 25 cop _ _ 23 also _ ADV RB _ 25 advmod _ _ 24 `` _ PUNCT `` _ 25 punct _ _ 25 unconventional _ ADJ JJ _ 17 ccomp _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 when _ ADV WRB _ 30 advmod _ _ 28 they _ PRON PRP _ 30 nsubj _ _ 29 first _ ADV RB _ 30 advmod _ _ 30 replaced _ VERB VBD _ 25 advcl _ _ 31 five-inch _ ADJ JJ _ 32 amod _ _ 32 disks _ NOUN NNS _ 30 dobj _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 look _ VERB VB _ 25 ccomp _ _ 6 at _ ADP IN _ 7 case _ _ 7 it _ PRON PRP _ 5 nmod _ _ 8 as _ SCONJ IN _ 12 mark _ _ 9 not _ ADV RB _ 12 neg _ _ 10 being _ VERB VBG _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 standard _ NOUN NN _ 5 advcl _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 we _ PRON PRP _ 15 nsubj _ _ 15 look _ VERB VBP _ 5 parataxis _ _ 16 at _ ADP IN _ 17 case _ _ 17 it _ PRON PRP _ 15 nmod _ _ 18 as _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 new _ ADJ JJ _ 21 amod _ _ 21 standard _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 argues _ VERB VBZ _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Analysts _ NOUN NNS _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 see _ VERB VB _ 0 root _ _ 5 it _ PRON PRP _ 4 iobj _ _ 6 that _ DET DT _ 7 det _ _ 7 way _ NOUN NN _ 4 dobj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 30 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 ca _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 imagine _ VERB VB _ 30 ccomp _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 you _ PRON PRP _ 9 nsubj _ _ 8 'll _ AUX MD _ 9 aux _ _ 9 talk _ VERB VB _ 5 ccomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 anyone _ NOUN NN _ 9 nmod _ _ 12 who _ PRON WP _ 15 nsubj _ _ 13 wo _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 tell _ VERB VB _ 11 acl:relcl _ _ 16 you _ PRON PRP _ 15 dobj _ _ 17 this _ PRON DT _ 19 nsubj _ _ 18 is _ VERB VBZ _ 19 cop _ _ 19 dynamite _ NOUN NN _ 15 ccomp _ _ 20 for _ ADP IN _ 21 case _ _ 21 Compaq _ PROPN NNP _ 19 nmod _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 a _ DET DT _ 24 det _ _ 24 stopper _ NOUN NN _ 19 conj _ _ 25 for _ ADP IN _ 26 case _ _ 26 everyone _ NOUN NN _ 24 nmod _ _ 27 else _ ADV RB _ 26 amod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 '' _ PUNCT '' _ 30 punct _ _ 30 says _ VERB VBZ _ 0 root _ _ 31 Gene _ PROPN NNP _ 32 compound _ _ 32 Talsky _ PROPN NNP _ 30 nsubj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 president _ NOUN NN _ 32 appos _ _ 35 of _ ADP IN _ 39 case _ _ 36 Professional _ PROPN NNP _ 39 compound _ _ 37 Marketing _ PROPN NNP _ 39 compound _ _ 38 Management _ PROPN NNP _ 39 compound _ _ 39 Inc _ PROPN NNP _ 34 nmod _ _ 40 . _ PUNCT . _ 30 punct _ _ 1 Adds _ PROPN VBZ _ 0 root _ _ 2 Bill _ PROPN NNP _ 3 compound _ _ 3 Lempesis _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 senior _ ADJ JJ _ 7 amod _ _ 6 industry _ NOUN NN _ 7 compound _ _ 7 analyst _ NOUN NN _ 3 appos _ _ 8 for _ ADP IN _ 9 case _ _ 9 DataQuest _ PROPN NNP _ 7 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 15 det _ _ 12 high-technology _ NOUN NN _ 15 compound _ _ 13 market _ NOUN NN _ 15 compound _ _ 14 research _ NOUN NN _ 15 compound _ _ 15 firm _ NOUN NN _ 9 appos _ _ 16 : _ PUNCT : _ 1 punct _ _ 17 `` _ PUNCT `` _ 1 punct _ _ 18 We _ PRON PRP _ 20 nsubj _ _ 19 basically _ ADV RB _ 20 advmod _ _ 20 think _ VERB VBP _ 1 ccomp _ _ 21 that _ SCONJ IN _ 26 mark _ _ 22 these _ PRON DT _ 26 nsubj _ _ 23 are _ VERB VBP _ 26 cop _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 hot _ ADJ JJ _ 26 amod _ _ 26 products _ NOUN NNS _ 20 ccomp _ _ 27 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 problem _ NOUN NN _ 8 nsubj _ _ 3 Compaq _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 going _ VERB VBG _ 2 acl:relcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 have _ VERB VB _ 5 xcomp _ _ 8 is _ VERB VBZ _ 0 root _ _ 9 that _ SCONJ IN _ 14 mark _ _ 10 they _ PRON PRP _ 14 nsubj _ _ 11 wo _ AUX MD _ 14 aux _ _ 12 n't _ PART RB _ 14 neg _ _ 13 be _ VERB VB _ 14 cop _ _ 14 able _ ADJ JJ _ 8 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 make _ VERB VB _ 14 xcomp _ _ 17 enough _ ADJ JJ _ 16 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 them _ PRON PRP _ 17 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 21 '' _ PUNCT '' _ 8 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 machines _ NOUN NNS _ 4 nsubj _ _ 4 include _ VERB VBP _ 0 root _ _ 5 the _ DET DT _ 10 det _ _ 6 3 _ NUM CD _ 7 compound _ _ 7 1/2-inch _ ADJ JJ _ 10 amod _ _ 8 floppy _ ADJ JJ _ 10 amod _ _ 9 disk _ NOUN NN _ 10 compound _ _ 10 drive _ NOUN NN _ 4 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 backlit _ ADJ JJ _ 14 amod _ _ 14 screen _ NOUN NN _ 10 conj _ _ 15 that _ PRON WDT _ 19 nsubj _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 only _ ADV RB _ 19 advmod _ _ 18 1/4-inch _ ADJ JJ _ 19 amod _ _ 19 thick _ ADJ JJ _ 14 acl:relcl _ _ 20 and _ CONJ CC _ 10 cc _ _ 21 an _ DET DT _ 24 det _ _ 22 internal _ ADJ JJ _ 24 amod _ _ 23 expansion _ NOUN NN _ 24 compound _ _ 24 slot _ NOUN NN _ 10 conj _ _ 25 for _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 modem _ NOUN NN _ 24 nmod _ _ 28 -- _ PUNCT : _ 10 punct _ _ 29 in _ ADP IN _ 31 case _ _ 30 other _ ADJ JJ _ 31 amod _ _ 31 words _ NOUN NNS _ 10 nmod _ _ 32 , _ PUNCT , _ 10 punct _ _ 33 almost _ ADV RB _ 36 amod _ _ 34 all _ DET PDT _ 33 dep _ _ 35 the _ DET DT _ 36 det _ _ 36 capabilities _ NOUN NNS _ 10 appos _ _ 37 of _ ADP IN _ 41 case _ _ 38 a _ DET DT _ 41 det _ _ 39 typical _ ADJ JJ _ 41 amod _ _ 40 office _ NOUN NN _ 41 compound _ _ 41 machine _ NOUN NN _ 36 nmod _ _ 42 . _ PUNCT . _ 4 punct _ _ 1 Others _ NOUN NNS _ 4 nsubj _ _ 2 undoubtedly _ ADV RB _ 4 advmod _ _ 3 will _ AUX MD _ 4 aux _ _ 4 follow _ VERB VB _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 but _ CONJ CC _ 4 cc _ _ 7 most _ ADJ JJS _ 8 amod _ _ 8 analysts _ NOUN NNS _ 9 nsubj _ _ 9 believe _ VERB VBP _ 4 conj _ _ 10 Compaq _ PROPN NNP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 9 ccomp _ _ 12 at _ ADP IN _ 13 case _ _ 13 least _ ADJ JJS _ 16 advmod _ _ 14 a _ DET DT _ 16 det _ _ 15 six-month _ ADJ JJ _ 16 amod _ _ 16 lead _ NOUN NN _ 11 dobj _ _ 17 on _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 competition _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Toshiba _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 line _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 portables _ NOUN NNS _ 3 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 for _ ADP IN _ 8 case _ _ 8 example _ NOUN NN _ 10 nmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 features _ VERB VBZ _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 T-1000 _ PROPN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 20 nsubj _ _ 15 is _ VERB VBZ _ 20 cop _ _ 16 in _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 same _ ADJ JJ _ 20 amod _ _ 19 weight _ NOUN NN _ 20 compound _ _ 20 class _ NOUN NN _ 12 acl:relcl _ _ 21 but _ CONJ CC _ 20 cc _ _ 22 is _ VERB VBZ _ 24 cop _ _ 23 much _ ADV JJ _ 24 advmod _ _ 24 slower _ ADJ JJR _ 20 conj _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 has _ VERB VBZ _ 20 conj _ _ 27 less _ ADJ JJR _ 28 amod _ _ 28 memory _ NOUN NN _ 26 dobj _ _ 29 , _ PUNCT , _ 12 punct _ _ 30 and _ CONJ CC _ 12 cc _ _ 31 the _ DET DT _ 32 det _ _ 32 T-1600 _ PROPN NN _ 12 conj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 which _ PRON WDT _ 36 nsubj _ _ 35 also _ ADV RB _ 36 advmod _ _ 36 uses _ VERB VBZ _ 32 acl:relcl _ _ 37 a _ DET DT _ 39 det _ _ 38 286 _ NUM CD _ 39 nummod _ _ 39 microprocessor _ NOUN NN _ 36 dobj _ _ 40 , _ PUNCT , _ 36 punct _ _ 41 but _ CONJ CC _ 36 cc _ _ 42 which _ PRON WDT _ 43 nsubj _ _ 43 weighs _ VERB VBZ _ 36 conj _ _ 44 almost _ ADV RB _ 45 advmod _ _ 45 twice _ ADV RB _ 43 dobj _ _ 46 as _ ADP RB _ 47 case _ _ 47 much _ ADJ JJ _ 45 nmod _ _ 48 and _ CONJ CC _ 43 cc _ _ 49 is _ VERB VBZ _ 53 cop _ _ 50 three _ NUM CD _ 51 compound _ _ 51 times _ NOUN NNS _ 53 nummod _ _ 52 the _ DET DT _ 53 det _ _ 53 size _ NOUN NN _ 43 conj _ _ 54 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 third _ ADJ JJ _ 3 amod _ _ 3 model _ NOUN NN _ 10 nsubj _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 marketed _ VERB VBN _ 10 advcl _ _ 6 in _ ADP IN _ 7 case _ _ 7 Japan _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 may _ AUX MD _ 10 aux _ _ 10 hit _ VERB VB _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 10 dobj _ _ 13 by _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 end _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 first _ ADJ JJ _ 19 amod _ _ 19 quarter _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 1990 _ NUM CD _ 19 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 by _ ADP IN _ 25 case _ _ 25 then _ ADV RB _ 33 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 analysts _ NOUN NNS _ 28 nsubj _ _ 28 say _ VERB VBP _ 33 parataxis _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 Compaq _ PROPN NNP _ 33 nsubj _ _ 31 will _ AUX MD _ 33 aux _ _ 32 have _ AUX VB _ 33 aux _ _ 33 established _ VERB VBN _ 10 conj _ _ 34 itself _ PRON PRP _ 33 dobj _ _ 35 as _ ADP IN _ 36 case _ _ 36 one _ NUM CD _ 33 nmod _ _ 37 of _ ADP IN _ 40 case _ _ 38 three _ NUM CD _ 40 nummod _ _ 39 major _ ADJ JJ _ 40 amod _ _ 40 players _ NOUN NNS _ 36 nmod _ _ 41 . _ PUNCT . _ 10 punct _ _ 1 What _ PRON WP _ 4 dep _ _ 2 about _ ADP IN _ 4 case _ _ 3 Big _ PROPN JJ _ 4 compound _ _ 4 Blue _ PROPN NNP _ 0 root _ _ 5 ? _ PUNCT . _ 4 punct _ _ 1 International _ PROPN NNP _ 4 compound _ _ 2 Business _ PROPN NNP _ 4 compound _ _ 3 Machines _ PROPN NNPS _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 11 nsubjpass _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 analysts _ NOUN NNS _ 7 nsubj _ _ 7 say _ VERB VBP _ 11 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 has _ AUX VBZ _ 11 aux _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 burned _ VERB VBN _ 0 root _ _ 12 twice _ ADV RB _ 11 advmod _ _ 13 in _ SCONJ IN _ 14 mark _ _ 14 trying _ VERB VBG _ 11 advcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 enter _ VERB VB _ 14 xcomp _ _ 17 the _ DET DT _ 19 det _ _ 18 laptop _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 16 dobj _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 shows _ VERB VBZ _ 11 conj _ _ 22 no _ DET DT _ 23 neg _ _ 23 signs _ NOUN NNS _ 21 dobj _ _ 24 of _ SCONJ IN _ 25 mark _ _ 25 trying _ VERB VBG _ 23 acl _ _ 26 to _ PART TO _ 27 mark _ _ 27 get _ VERB VB _ 25 xcomp _ _ 28 into _ ADP IN _ 29 case _ _ 29 notebooks _ NOUN NNS _ 27 nmod _ _ 30 anytime _ ADV RB _ 31 advmod _ _ 31 soon _ ADV RB _ 27 advmod _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 Honeywell _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 8 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 International _ PROPN NNP _ 7 compound _ _ 5 Business _ PROPN NNP _ 7 compound _ _ 6 Machines _ PROPN NNPS _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 2 conj _ _ 8 received _ VERB VBD _ 0 root _ _ 9 Air _ PROPN NNP _ 11 compound _ _ 10 Force _ PROPN NNP _ 11 compound _ _ 11 contracts _ NOUN NNS _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 develop _ VERB VB _ 11 acl _ _ 14 integrated _ ADJ JJ _ 15 amod _ _ 15 circuits _ NOUN NNS _ 13 dobj _ _ 16 for _ ADP IN _ 17 case _ _ 17 use _ NOUN NN _ 15 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 space _ NOUN NN _ 17 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 Honeywell _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 contract _ NOUN NN _ 4 nsubj _ _ 4 totaled _ VERB VBD _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 69.7 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 IBM _ PROPN NNP _ 12 dep _ _ 11 's _ PART POS _ 10 case _ _ 12 $ _ SYM $ _ 4 conj _ _ 13 68.8 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Boeing _ PROPN NNP _ 2 compound _ _ 2 Co. _ PROPN NNP _ 3 nsubj _ _ 3 received _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 10 det _ _ 5 $ _ SYM $ _ 10 amod _ _ 6 46.7 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 Air _ PROPN NNP _ 10 compound _ _ 9 Force _ PROPN NNP _ 10 compound _ _ 10 contract _ NOUN NN _ 3 dobj _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 developing _ VERB VBG _ 10 acl _ _ 13 cable _ NOUN NN _ 14 compound _ _ 14 systems _ NOUN NNS _ 12 dobj _ _ 15 for _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 Minuteman _ PROPN NNP _ 18 compound _ _ 18 Missile _ PROPN NNP _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 General _ PROPN NNP _ 3 compound _ _ 2 Dynamics _ PROPN NNPS _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 received _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 11 det _ _ 6 $ _ SYM $ _ 11 amod _ _ 7 29 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 Air _ PROPN NNP _ 11 compound _ _ 10 Force _ PROPN NNP _ 11 compound _ _ 11 contract _ NOUN NN _ 4 dobj _ _ 12 for _ ADP IN _ 15 case _ _ 13 electronic-warfare _ NOUN JJ _ 15 compound _ _ 14 training _ NOUN NN _ 15 compound _ _ 15 sets _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Grumman _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 received _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 9 det _ _ 5 $ _ SYM $ _ 9 amod _ _ 6 18.1 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 Navy _ PROPN NNP _ 9 compound _ _ 9 contract _ NOUN NN _ 3 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 upgrade _ VERB VB _ 9 acl _ _ 12 aircraft _ NOUN NN _ 13 compound _ _ 13 electronics _ NOUN NNS _ 11 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Avco _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 received _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 9 det _ _ 5 $ _ SYM $ _ 9 amod _ _ 6 11.8 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 Army _ PROPN NNP _ 9 compound _ _ 9 contract _ NOUN NN _ 3 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 helicopter _ NOUN NN _ 12 compound _ _ 12 engines _ NOUN NNS _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Sharp _ ADJ JJ _ 2 amod _ _ 2 increases _ NOUN NNS _ 9 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 price _ NOUN NN _ 2 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 fresh _ ADJ JJ _ 8 amod _ _ 8 produce _ NOUN NN _ 5 nmod _ _ 9 caused _ VERB VBD _ 41 ccomp _ _ 10 Spain _ PROPN NNP _ 15 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 September _ PROPN NNP _ 15 compound _ _ 13 consumer _ NOUN NN _ 15 compound _ _ 14 price _ NOUN NN _ 15 compound _ _ 15 index _ NOUN NN _ 9 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 shoot _ VERB VB _ 9 xcomp _ _ 18 up _ ADV RP _ 17 advmod _ _ 19 1.1 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 17 dobj _ _ 21 from _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 previous _ ADJ JJ _ 24 amod _ _ 24 month _ NOUN NN _ 17 nmod _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 pushing _ VERB VBG _ 17 advcl _ _ 27 the _ DET DT _ 29 det _ _ 28 annual _ ADJ JJ _ 29 amod _ _ 29 rate _ NOUN NN _ 26 dobj _ _ 30 of _ ADP IN _ 31 case _ _ 31 inflation _ NOUN NN _ 29 nmod _ _ 32 to _ ADP TO _ 34 case _ _ 33 6.8 _ NUM CD _ 34 nummod _ _ 34 % _ SYM NN _ 26 nmod _ _ 35 , _ PUNCT , _ 41 punct _ _ 36 the _ DET DT _ 38 det _ _ 37 National _ PROPN NNP _ 38 compound _ _ 38 Institute _ PROPN NNP _ 41 nsubj _ _ 39 of _ ADP IN _ 40 case _ _ 40 Statistics _ PROPN NNPS _ 38 nmod _ _ 41 said _ VERB VBD _ 0 root _ _ 42 Friday _ PROPN NNP _ 41 nmod:tmod _ _ 43 . _ PUNCT . _ 41 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 monthly _ ADJ JJ _ 3 amod _ _ 3 increase _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 highest _ ADV JJS _ 0 root _ _ 7 recorded _ VERB VBN _ 6 acl _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 past _ ADJ JJ _ 12 amod _ _ 11 four _ NUM CD _ 12 nummod _ _ 12 years _ NOUN NNS _ 7 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 index _ NOUN NN _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 registered _ VERB VBD _ 2 acl:relcl _ _ 6 156.8 _ NUM CD _ 5 dobj _ _ 7 at _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 end _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 has _ VERB VBZ _ 0 root _ _ 14 a _ DET DT _ 15 det _ _ 15 base _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 100 _ NUM CD _ 15 nmod _ _ 18 set _ NOUN VBN _ 15 dep _ _ 19 in _ ADP IN _ 20 case _ _ 20 1983 _ NUM CD _ 18 nmod _ _ 21 and _ CONJ CC _ 13 cc _ _ 22 is _ AUX VBZ _ 25 auxpass _ _ 23 n't _ PART RB _ 25 neg _ _ 24 seasonally _ ADV RB _ 25 advmod _ _ 25 adjusted _ VERB VBN _ 13 conj _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 Prices _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 risen _ VERB VBN _ 0 root _ _ 4 5.9 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 in _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 first _ ADJ JJ _ 10 amod _ _ 9 nine _ NUM CD _ 10 nummod _ _ 10 months _ NOUN NNS _ 3 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 year _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 outstripping _ VERB VBG _ 3 advcl _ _ 16 both _ CONJ CC _ 22 cc:preconj _ _ 17 the _ DET DT _ 22 det _ _ 18 initial _ ADJ JJ _ 22 amod _ _ 19 3 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 22 amod _ _ 21 inflation _ NOUN NN _ 22 compound _ _ 22 goal _ NOUN NN _ 15 dobj _ _ 23 set _ VERB VBN _ 22 acl _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 government _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 32 case _ _ 28 Socialist _ PROPN NNP _ 32 compound _ _ 29 Prime _ PROPN NNP _ 32 compound _ _ 30 Minister _ PROPN NNP _ 32 compound _ _ 31 Felipe _ PROPN NNP _ 32 compound _ _ 32 Gonzalez _ PROPN NNP _ 26 nmod _ _ 33 and _ CONJ CC _ 22 cc _ _ 34 the _ DET DT _ 38 det _ _ 35 second _ ADJ JJ _ 38 amod _ _ 36 , _ PUNCT , _ 38 punct _ _ 37 revised _ VERB JJ _ 38 amod _ _ 38 goal _ NOUN NN _ 22 conj _ _ 39 of _ ADP IN _ 41 case _ _ 40 5.8 _ NUM CD _ 41 nummod _ _ 41 % _ SYM NN _ 38 nmod _ _ 42 . _ PUNCT . _ 3 punct _ _ 1 Japan _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 wholesale _ ADJ JJ _ 4 amod _ _ 4 prices _ NOUN NNS _ 7 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 September _ PROPN NNP _ 7 nmod _ _ 7 rose _ VERB VBD _ 28 ccomp _ _ 8 3.3 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 from _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 13 nmod:npmod _ _ 13 earlier _ ADV RBR _ 7 advcl _ _ 14 and _ CONJ CC _ 7 cc _ _ 15 were _ VERB VBD _ 7 conj _ _ 16 up _ ADV RB _ 15 advmod _ _ 17 0.4 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 nmod:npmod _ _ 19 from _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 previous _ ADJ JJ _ 22 amod _ _ 22 month _ NOUN NN _ 16 nmod _ _ 23 , _ PUNCT , _ 28 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 Bank _ PROPN NNP _ 28 nsubj _ _ 26 of _ ADP IN _ 27 case _ _ 27 Japan _ PROPN NNP _ 25 nmod _ _ 28 announced _ VERB VBD _ 0 root _ _ 29 Friday _ PROPN NNP _ 28 nmod:tmod _ _ 30 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 wholesale _ ADJ JJ _ 4 amod _ _ 3 price _ NOUN NN _ 4 compound _ _ 4 index _ NOUN NN _ 5 nsubj _ _ 5 stood _ VERB VBD _ 0 root _ _ 6 at _ ADP IN _ 7 case _ _ 7 90.1 _ NUM CD _ 5 nmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 compared _ VERB VBN _ 13 case _ _ 10 with _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 1985 _ NUM CD _ 13 nummod _ _ 13 base _ NOUN NN _ 5 advcl _ _ 14 of _ ADP IN _ 15 case _ _ 15 100 _ NUM CD _ 13 nmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 Plunge _ NOUN NN _ 0 root _ _ 2 ? _ PUNCT . _ 1 punct _ _ 1 What _ DET WDT _ 2 det _ _ 2 plunge _ NOUN NN _ 0 root _ _ 3 ? _ PUNCT . _ 2 punct _ _ 1 Twenty-four _ NUM CD _ 6 nummod _ _ 2 New _ PROPN NNP _ 6 compound _ _ 3 York _ PROPN NNP _ 6 compound _ _ 4 Stock _ PROPN NNP _ 6 compound _ _ 5 Exchange _ PROPN NNP _ 6 compound _ _ 6 issues _ NOUN NNS _ 7 nsubj _ _ 7 hit _ VERB VBD _ 0 root _ _ 8 52-week _ ADJ JJ _ 9 amod _ _ 9 highs _ NOUN NNS _ 7 dobj _ _ 10 during _ ADP IN _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 trading _ NOUN NN _ 7 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 despite _ ADP IN _ 23 case _ _ 16 the _ DET DT _ 20 det _ _ 17 Dow _ PROPN NNP _ 20 compound _ _ 18 Jones _ PROPN NNP _ 20 compound _ _ 19 Industrial _ PROPN NNP _ 20 compound _ _ 20 Average _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 190.58-point _ ADJ JJ _ 23 amod _ _ 23 plunge _ NOUN NN _ 7 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Stocks _ NOUN NNS _ 4 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 utilities _ NOUN NNS _ 1 nmod _ _ 4 held _ VERB VBD _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 relatively _ ADV RB _ 7 advmod _ _ 7 better _ ADV JJR _ 4 advmod _ _ 8 than _ ADP IN _ 11 case _ _ 9 other _ ADJ JJ _ 11 amod _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 sectors _ NOUN NNS _ 7 nmod _ _ 12 during _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 sell-off _ NOUN NN _ 4 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 And _ CONJ CC _ 8 cc _ _ 2 among _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 issues _ NOUN NNS _ 8 nmod _ _ 5 hitting _ VERB VBG _ 4 acl _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 highs _ NOUN NNS _ 5 dobj _ _ 8 were _ VERB VBD _ 0 root _ _ 9 Detroit _ PROPN NNP _ 11 compound _ _ 10 Edison _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 8 nsubj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Niagara _ PROPN NNP _ 16 compound _ _ 14 Mohawk _ PROPN NNP _ 16 compound _ _ 15 Power _ PROPN NNP _ 16 compound _ _ 16 Corp _ PROPN NNP _ 11 conj _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 issues _ NOUN NNS _ 6 nsubj _ _ 4 hitting _ VERB VBG _ 3 acl _ _ 5 highs _ NOUN NNS _ 4 dobj _ _ 6 included _ VERB VBD _ 0 root _ _ 7 American _ PROPN NNP _ 8 compound _ _ 8 Telephone _ PROPN NNP _ 6 dobj _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Telegraph _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 Westinghouse _ PROPN NNP _ 15 compound _ _ 14 Electric _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 8 conj _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 Exxon _ PROPN NNP _ 18 compound _ _ 18 Corp. _ PROPN NNP _ 8 conj _ _ 19 and _ CONJ CC _ 8 cc _ _ 20 Cigna _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 8 conj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 big _ ADJ JJ _ 25 amod _ _ 25 insurer _ NOUN NN _ 21 appos _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 many _ ADJ JJ _ 6 amod _ _ 5 more _ ADJ JJR _ 6 amod _ _ 6 issues _ NOUN NNS _ 10 nsubj _ _ 7 -- _ PUNCT : _ 8 punct _ _ 8 93 _ NUM CD _ 6 dep _ _ 9 -- _ PUNCT : _ 8 punct _ _ 10 hit _ VERB VBD _ 0 root _ _ 11 new _ ADJ JJ _ 12 amod _ _ 12 lows _ NOUN NNS _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 These _ PRON DT _ 2 nsubj _ _ 2 included _ VERB VBD _ 0 root _ _ 3 International _ PROPN NNP _ 6 compound _ _ 4 Business _ PROPN NNP _ 6 compound _ _ 5 Machines _ PROPN NNPS _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 2 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 13 nsubj _ _ 9 during _ ADP IN _ 12 case _ _ 10 Friday _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 session _ NOUN NN _ 13 nmod _ _ 13 traded _ VERB VBD _ 6 acl:relcl _ _ 14 below _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 100 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 for _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 first _ ADJ JJ _ 22 amod _ _ 22 time _ NOUN NN _ 13 nmod _ _ 23 since _ ADP IN _ 24 case _ _ 24 June _ PROPN NNP _ 22 nmod _ _ 25 1984 _ NUM CD _ 24 nummod _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 IBM _ PROPN NNP _ 2 nsubj _ _ 2 closed _ VERB VBD _ 0 root _ _ 3 at _ ADP IN _ 5 case _ _ 4 $ _ SYM $ _ 5 dep _ _ 5 102 _ NUM CD _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 down _ ADV RB _ 2 advmod _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 5.625 _ NUM CD _ 7 nmod:npmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 lows _ NOUN NNS _ 4 nsubj _ _ 4 included _ VERB VBD _ 0 root _ _ 5 Navistar _ PROPN NNP _ 7 compound _ _ 6 International _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 4 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Union _ PROPN NNP _ 11 compound _ _ 10 Carbide _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 7 conj _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 Bethlehem _ PROPN NNP _ 15 compound _ _ 14 Steel _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 7 conj _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 all _ DET DT _ 21 nsubjpass _ _ 18 of _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 17 nmod _ _ 20 are _ AUX VBP _ 21 auxpass _ _ 21 included _ VERB VBN _ 7 acl:relcl _ _ 22 in _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 industrial _ ADJ JJ _ 25 amod _ _ 25 average _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Meanwhile _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 two _ NUM CD _ 6 nummod _ _ 4 initial _ ADJ JJ _ 6 amod _ _ 5 public _ ADJ JJ _ 6 amod _ _ 6 offerings _ NOUN NNS _ 7 nsubj _ _ 7 braved _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 cascading _ ADJ VBG _ 10 amod _ _ 10 market _ NOUN NN _ 7 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 their _ PRON PRP$ _ 14 nmod:poss _ _ 13 maiden _ ADJ JJ _ 14 amod _ _ 14 day _ NOUN NN _ 7 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 national _ ADJ JJ _ 18 amod _ _ 17 over-the-counter _ ADJ JJ _ 18 amod _ _ 18 trading _ NOUN NN _ 14 nmod _ _ 19 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 Shares _ NOUN NNS _ 13 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 Rally _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Inc. _ PROPN NNP _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 an _ DET DT _ 8 det _ _ 8 operator _ NOUN NN _ 5 appos _ _ 9 of _ ADP IN _ 11 case _ _ 10 fast-food _ NOUN NN _ 11 compound _ _ 11 restaurants _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 17 _ NUM CD _ 13 nmod _ _ 17 each _ DET DT _ 16 nmod:npmod _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 up _ ADV RB _ 13 advmod _ _ 20 from _ ADP IN _ 25 case _ _ 21 its _ PRON PRP$ _ 25 nmod:poss _ _ 22 $ _ SYM $ _ 25 amod _ _ 23 15 _ NUM CD _ 22 compound _ _ 24 offering _ NOUN NN _ 25 compound _ _ 25 price _ NOUN NN _ 19 nmod _ _ 26 and _ CONJ CC _ 13 cc _ _ 27 shares _ NOUN NNS _ 38 nsubj _ _ 28 of _ ADP IN _ 32 case _ _ 29 Employee _ PROPN NNP _ 32 compound _ _ 30 Benefit _ PROPN NNP _ 32 compound _ _ 31 Plans _ PROPN NNP _ 32 compound _ _ 32 Inc. _ PROPN NNP _ 27 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 a _ DET DT _ 36 det _ _ 35 health-care _ NOUN NN _ 36 compound _ _ 36 consultant _ NOUN NN _ 32 appos _ _ 37 , _ PUNCT , _ 32 punct _ _ 38 closed _ VERB VBD _ 13 conj _ _ 39 at _ ADP IN _ 41 case _ _ 40 $ _ SYM $ _ 41 dep _ _ 41 14.125 _ NUM CD _ 38 nmod _ _ 42 , _ PUNCT , _ 38 punct _ _ 43 up _ ADV RB _ 38 advmod _ _ 44 from _ ADP IN _ 49 case _ _ 45 its _ PRON PRP$ _ 49 nmod:poss _ _ 46 $ _ SYM $ _ 49 amod _ _ 47 12 _ NUM CD _ 46 compound _ _ 48 offering _ NOUN NN _ 49 compound _ _ 49 price _ NOUN NN _ 43 nmod _ _ 50 . _ PUNCT . _ 13 punct _ _ 1 Ford _ PROPN NNP _ 3 compound _ _ 2 Motor _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 acquired _ VERB VBD _ 4 ccomp _ _ 7 5 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 shares _ NOUN NNS _ 8 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 Jaguar _ PROPN NNP _ 14 compound _ _ 14 PLC _ PROPN NNP _ 11 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Jaguar _ PROPN NNP _ 16 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 London _ PROPN NNP _ 6 compound _ _ 5 Stock _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 1 conj _ _ 7 and _ CONJ CC _ 1 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 U.S. _ PROPN NNP _ 10 compound _ _ 10 Securities _ PROPN NNPS _ 1 conj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Exchange _ PROPN NNP _ 13 compound _ _ 13 Commission _ PROPN NNP _ 10 conj _ _ 14 are _ AUX VBP _ 16 aux _ _ 15 being _ AUX VBG _ 16 auxpass _ _ 16 notified _ VERB VBN _ 23 ccomp _ _ 17 of _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 transactions _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 23 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 U.S. _ PROPN NNP _ 5 compound _ _ 3 Federal _ PROPN NNP _ 5 compound _ _ 4 Trade _ PROPN NNP _ 5 compound _ _ 5 Commission _ PROPN NNP _ 6 nsubj _ _ 6 advised _ VERB VBD _ 0 root _ _ 7 Ford _ PROPN NNP _ 6 dobj _ _ 8 last _ ADJ JJ _ 9 amod _ _ 9 week _ NOUN NN _ 6 nmod:tmod _ _ 10 that _ SCONJ IN _ 14 mark _ _ 11 it _ PRON PRP _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 raise _ VERB VB _ 6 ccomp _ _ 15 any _ DET DT _ 16 det _ _ 16 objection _ NOUN NN _ 14 dobj _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 acquisition _ NOUN NN _ 16 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 as _ ADV RB _ 22 advmod _ _ 22 much _ ADJ JJ _ 19 nmod _ _ 23 as _ ADP IN _ 25 case _ _ 24 15 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 22 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 Jaguar _ PROPN NNP _ 28 compound _ _ 28 shares _ NOUN NNS _ 22 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 No. _ NOUN NN _ 5 compound _ _ 3 2 _ NUM CD _ 5 nummod _ _ 4 auto _ NOUN NN _ 5 compound _ _ 5 maker _ NOUN NN _ 6 nsubj _ _ 6 disclosed _ VERB VBD _ 0 root _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 month _ NOUN NN _ 6 nmod:tmod _ _ 9 that _ SCONJ IN _ 11 mark _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 wants _ VERB VBZ _ 6 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 xcomp _ _ 14 as _ ADV RB _ 15 advmod _ _ 15 much _ ADJ JJ _ 13 dobj _ _ 16 as _ ADP IN _ 18 case _ _ 17 15 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 nmod _ _ 19 of _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 British _ ADJ JJ _ 23 amod _ _ 22 luxury-car _ NOUN NN _ 23 compound _ _ 23 maker _ NOUN NN _ 15 nmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 the _ DET DT _ 26 det _ _ 26 maximum _ NOUN NN _ 15 appos _ _ 27 allowed _ VERB VBN _ 26 acl _ _ 28 under _ ADP IN _ 33 case _ _ 29 current _ ADJ JJ _ 33 amod _ _ 30 United _ PROPN NNP _ 33 compound _ _ 31 Kingdom _ PROPN NNP _ 33 compound _ _ 32 government _ NOUN NN _ 33 compound _ _ 33 restrictions _ NOUN NNS _ 27 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 General _ PROPN NNP _ 3 compound _ _ 2 Motors _ PROPN NNPS _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 discussed _ VERB VBN _ 4 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 possibility _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 joint _ ADJ JJ _ 13 amod _ _ 13 venture _ NOUN NN _ 9 nmod _ _ 14 with _ ADP IN _ 15 case _ _ 15 Jaguar _ PROPN NNP _ 13 nmod _ _ 16 before _ SCONJ IN _ 18 mark _ _ 17 Ford _ PROPN NNP _ 18 nsubj _ _ 18 began _ VERB VBD _ 7 advcl _ _ 19 buying _ VERB VBG _ 18 xcomp _ _ 20 shares _ NOUN NNS _ 19 dobj _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 GM _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 still _ ADV RB _ 6 advmod _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 talking _ VERB VBG _ 2 ccomp _ _ 7 with _ ADP IN _ 8 case _ _ 8 Jaguar _ PROPN NNP _ 6 nmod _ _ 9 about _ SCONJ IN _ 10 mark _ _ 10 acquiring _ VERB VBG _ 6 advcl _ _ 11 a _ DET DT _ 13 det _ _ 12 minority _ NOUN NN _ 13 compound _ _ 13 interest _ NOUN NN _ 10 dobj _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Investors _ NOUN NNS _ 20 nsubj _ _ 2 who _ PRON WP _ 3 nsubj _ _ 3 bought _ VERB VBD _ 1 acl:relcl _ _ 4 stock _ NOUN NN _ 3 dobj _ _ 5 with _ ADP IN _ 7 case _ _ 6 borrowed _ ADJ VBN _ 7 amod _ _ 7 money _ NOUN NN _ 3 nmod _ _ 8 -- _ PUNCT : _ 10 punct _ _ 9 that _ PRON DT _ 10 nsubj _ _ 10 is _ VERB VBZ _ 3 parataxis _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 10 punct _ _ 13 on _ ADP IN _ 14 case _ _ 14 margin _ NOUN NN _ 10 nmod _ _ 15 '' _ PUNCT '' _ 10 punct _ _ 16 -- _ PUNCT : _ 10 punct _ _ 17 may _ AUX MD _ 20 aux _ _ 18 be _ VERB VB _ 20 cop _ _ 19 more _ ADV RBR _ 20 advmod _ _ 20 worried _ ADJ JJ _ 0 root _ _ 21 than _ ADP IN _ 22 case _ _ 22 most _ ADJ JJS _ 20 nmod _ _ 23 following _ VERB VBG _ 27 case _ _ 24 Friday _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 drop _ NOUN NN _ 20 nmod _ _ 28 . _ PUNCT . _ 20 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 because _ SCONJ IN _ 7 mark _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 brokers _ NOUN NNS _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 require _ VERB VB _ 2 advcl _ _ 8 them _ PRON PRP _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 sell _ VERB VB _ 7 xcomp _ _ 11 some _ DET DT _ 12 det _ _ 12 shares _ NOUN NNS _ 10 dobj _ _ 13 or _ CONJ CC _ 10 cc _ _ 14 put _ VERB VB _ 10 conj _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 more _ ADJ JJR _ 17 amod _ _ 17 cash _ NOUN NN _ 14 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 enhance _ VERB VB _ 17 acl _ _ 20 the _ DET DT _ 21 det _ _ 21 collateral _ NOUN NN _ 19 dobj _ _ 22 backing _ VERB VBG _ 21 acl _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 loans _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 October _ PROPN NNP _ 9 nmod _ _ 3 1987 _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 these _ DET DT _ 7 det _ _ 6 margin _ NOUN NN _ 7 compound _ _ 7 calls _ NOUN NNS _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 thought _ VERB VBN _ 0 root _ _ 10 to _ PART TO _ 12 mark _ _ 11 have _ AUX VB _ 12 aux _ _ 12 contributed _ VERB VBN _ 9 xcomp _ _ 13 to _ ADP TO _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 downward _ ADJ JJ _ 16 amod _ _ 16 spiral _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 stock _ NOUN NN _ 20 compound _ _ 20 market _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Typically _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 margin _ NOUN NN _ 5 compound _ _ 5 call _ NOUN NN _ 6 nsubj _ _ 6 occurs _ VERB VBZ _ 0 root _ _ 7 when _ ADV WRB _ 13 advmod _ _ 8 the _ DET DT _ 9 det _ _ 9 price _ NOUN NN _ 13 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 stock _ NOUN NN _ 9 nmod _ _ 13 falls _ VERB VBZ _ 6 advcl _ _ 14 below _ ADP IN _ 16 case _ _ 15 75 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 original _ ADJ JJ _ 20 amod _ _ 20 value _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 If _ SCONJ IN _ 6 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 investor _ NOUN NN _ 6 nsubj _ _ 4 does _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 put _ VERB VB _ 20 advcl _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 the _ DET DT _ 10 det _ _ 9 extra _ ADJ JJ _ 10 amod _ _ 10 cash _ NOUN NN _ 6 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 satisfy _ VERB VB _ 10 acl _ _ 13 the _ DET DT _ 14 det _ _ 14 call _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 brokerage _ NOUN NN _ 18 compound _ _ 18 firm _ NOUN NN _ 20 nsubj _ _ 19 may _ AUX MD _ 20 aux _ _ 20 begin _ VERB VB _ 0 root _ _ 21 liquidating _ VERB VBG _ 20 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 securities _ NOUN NNS _ 21 dobj _ _ 24 . _ PUNCT . _ 20 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 some _ DET DT _ 5 det _ _ 3 big _ ADJ JJ _ 5 amod _ _ 4 brokerage _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 do _ AUX VBP _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 expect _ VERB VB _ 6 ccomp _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 problems _ NOUN NNS _ 10 dobj _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 result _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 margin _ NOUN NN _ 18 compound _ _ 18 calls _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Margin _ NOUN NN _ 2 compound _ _ 2 calls _ NOUN VBZ _ 8 nsubj _ _ 3 since _ ADP IN _ 4 case _ _ 4 Friday _ PROPN NNP _ 8 nmod _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 higher _ ADJ JJR _ 23 ccomp _ _ 9 than _ ADP IN _ 10 case _ _ 10 usual _ ADJ JJ _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 but _ CONJ CC _ 8 cc _ _ 13 reasonable _ ADJ JJ _ 8 conj _ _ 14 , _ PUNCT , _ 23 punct _ _ 15 '' _ PUNCT '' _ 23 punct _ _ 16 a _ DET DT _ 17 det _ _ 17 spokesman _ NOUN NN _ 23 nsubj _ _ 18 for _ ADP IN _ 22 case _ _ 19 Shearson _ PROPN NNP _ 22 compound _ _ 20 Lehman _ PROPN NNP _ 22 compound _ _ 21 Hutton _ PROPN NNP _ 22 compound _ _ 22 Inc. _ PROPN NNP _ 17 nmod _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 9 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 5 compound _ _ 5 officials _ NOUN NNS _ 2 conj _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 do _ AUX VBP _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 expect _ VERB VB _ 36 ccomp _ _ 10 -LCB- _ PUNCT -LRB- _ 19 punct _ _ 11 margin _ NOUN NN _ 12 compound _ _ 12 calls _ NOUN NNS _ 9 dobj _ _ 13 -RCB- _ PUNCT -RRB- _ 19 punct _ _ 14 to _ PART TO _ 19 mark _ _ 15 be _ VERB VB _ 19 cop _ _ 16 as _ ADV RB _ 17 advmod _ _ 17 big _ ADJ JJ _ 19 amod _ _ 18 a _ DET DT _ 19 det _ _ 19 factor _ NOUN NN _ 9 xcomp _ _ 20 as _ ADP IN _ 19 advmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 1987 _ NUM CD _ 20 nmod _ _ 23 '' _ PUNCT '' _ 9 punct _ _ 24 because _ SCONJ IN _ 29 mark _ _ 25 fewer _ ADJ JJR _ 27 amod _ _ 26 individual _ ADJ JJ _ 27 amod _ _ 27 investors _ NOUN NNS _ 29 nsubj _ _ 28 are _ AUX VBP _ 29 aux _ _ 29 buying _ VERB VBG _ 9 advcl _ _ 30 stock _ NOUN NN _ 29 dobj _ _ 31 on _ ADP IN _ 32 case _ _ 32 margin _ NOUN NN _ 29 nmod _ _ 33 , _ PUNCT , _ 36 punct _ _ 34 a _ DET DT _ 35 det _ _ 35 spokesman _ NOUN NN _ 36 nsubj _ _ 36 said _ VERB VBD _ 0 root _ _ 37 . _ PUNCT . _ 36 punct _ _ 1 Hugo _ PROPN NNP _ 2 compound _ _ 2 Quackenbush _ PROPN NNP _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 senior _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 at _ ADP IN _ 10 case _ _ 8 Charles _ PROPN NNP _ 10 compound _ _ 9 Schwab _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 the _ DET DT _ 17 det _ _ 13 San _ PROPN NNP _ 14 amod _ _ 14 Francisco-based _ ADJ JJ _ 17 amod _ _ 15 discount _ ADJ NN _ 17 amod _ _ 16 brokerage _ NOUN NN _ 17 compound _ _ 17 firm _ NOUN NN _ 10 appos _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 he _ PRON PRP _ 23 nsubj _ _ 21 did _ AUX VBD _ 23 aux _ _ 22 n't _ PART RB _ 23 neg _ _ 23 expect _ VERB VB _ 19 ccomp _ _ 24 any _ DET DT _ 26 det _ _ 25 immediate _ ADJ JJ _ 26 amod _ _ 26 problems _ NOUN NNS _ 23 dobj _ _ 27 with _ ADP IN _ 29 case _ _ 28 margin _ NOUN NN _ 29 compound _ _ 29 calls _ NOUN VBZ _ 26 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 Schwab _ PROPN NNP _ 32 compound _ _ 32 customers _ NOUN NNS _ 26 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Schwab _ PROPN NNP _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 increased _ VERB VBN _ 2 dep _ _ 6 margin _ NOUN NN _ 7 compound _ _ 7 requirements _ NOUN NNS _ 5 dobj _ _ 8 `` _ PUNCT `` _ 5 punct _ _ 9 so _ ADP RB _ 5 dep _ _ 10 customers _ NOUN NNS _ 11 nsubj _ _ 11 have _ VERB VBP _ 5 parataxis _ _ 12 more _ ADJ JJR _ 11 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 cushion _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 17 '' _ PUNCT '' _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 `` _ PUNCT `` _ 2 punct _ _ 5 We _ PRON PRP _ 6 nsubj _ _ 6 learned _ VERB VBD _ 2 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 lesson _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 1987 _ NUM CD _ 6 nmod _ _ 11 about _ ADP IN _ 12 case _ _ 12 volatility _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Avis _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 following _ VERB VBG _ 11 advcl _ _ 5 rival _ NOUN JJ _ 7 compound _ _ 6 Hertz _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 lead _ NOUN NN _ 4 dobj _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 backing _ VERB VBG _ 11 ccomp _ _ 15 out _ ADP IN _ 14 advmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 frequent-flier _ ADJ JJ _ 18 amod _ _ 18 programs _ NOUN NNS _ 15 nmod _ _ 19 with _ ADP IN _ 21 case _ _ 20 three _ NUM CD _ 21 nummod _ _ 21 airlines _ NOUN NNS _ 18 nmod _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 8 det _ _ 2 Garden _ PROPN NNP _ 8 dep _ _ 3 City _ PROPN NNP _ 2 compound _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 N.Y. _ PROPN NNP _ 2 dep _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 car-rental _ ADJ JJ _ 8 amod _ _ 8 company _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 13 nsubj _ _ 11 wo _ AUX MD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 renew _ VERB VB _ 9 ccomp _ _ 14 contracts _ NOUN NNS _ 13 dobj _ _ 15 with _ ADP IN _ 21 case _ _ 16 NWA _ PROPN NNP _ 17 compound _ _ 17 Inc. _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Northwest _ PROPN NNP _ 21 compound _ _ 20 Airlines _ PROPN NNPS _ 21 compound _ _ 21 unit _ NOUN NN _ 14 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 Pan _ PROPN NNP _ 25 compound _ _ 24 Am _ PROPN NNP _ 25 compound _ _ 25 Corp. _ PROPN NNP _ 31 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 Pan _ PROPN NNP _ 31 compound _ _ 28 American _ PROPN NNP _ 31 compound _ _ 29 World _ PROPN NNP _ 31 compound _ _ 30 Airways _ PROPN NNPS _ 31 compound _ _ 31 unit _ NOUN NN _ 21 conj _ _ 32 and _ CONJ CC _ 21 cc _ _ 33 Midway _ PROPN NNP _ 34 compound _ _ 34 Airlines _ PROPN NNPS _ 21 conj _ _ 35 at _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 end _ NOUN NN _ 13 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 this _ DET DT _ 40 det _ _ 40 year _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 remains _ VERB VBZ _ 0 root _ _ 4 involved _ ADJ VBN _ 3 xcomp _ _ 5 in _ ADP IN _ 6 case _ _ 6 programs _ NOUN NNS _ 4 nmod _ _ 7 with _ ADP IN _ 13 case _ _ 8 AMR _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 American _ PROPN NNP _ 13 compound _ _ 12 Airlines _ PROPN NNPS _ 13 compound _ _ 13 unit _ NOUN NN _ 6 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Delta _ PROPN NNP _ 17 compound _ _ 16 Air _ PROPN NNP _ 17 compound _ _ 17 Lines _ PROPN NNPS _ 13 conj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Industry _ NOUN NN _ 2 compound _ _ 2 estimates _ NOUN NNS _ 3 nsubj _ _ 3 put _ VERB VBD _ 0 root _ _ 4 Avis _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 annual _ ADJ JJ _ 7 amod _ _ 7 cost _ NOUN NN _ 3 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 all _ DET DT _ 11 det _ _ 10 five _ NUM CD _ 11 nummod _ _ 11 programs _ NOUN NNS _ 7 nmod _ _ 12 at _ ADP IN _ 14 case _ _ 13 between _ ADP IN _ 14 advmod _ _ 14 $ _ SYM $ _ 3 nmod _ _ 15 8 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 $ _ SYM $ _ 14 conj _ _ 19 14 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 7 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Avis _ PROPN NNP _ 2 nmod _ _ 5 would _ AUX MD _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 specify _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 costs _ NOUN NNS _ 7 dobj _ _ 10 but _ CONJ CC _ 7 cc _ _ 11 said _ VERB VBD _ 7 conj _ _ 12 the _ DET DT _ 14 det _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 airlines _ NOUN NNS _ 17 nsubj _ _ 15 being _ AUX VBG _ 16 auxpass _ _ 16 dropped _ VERB VBD _ 14 acl _ _ 17 account _ NOUN NN _ 11 ccomp _ _ 18 for _ ADP IN _ 21 case _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 far _ ADV RB _ 21 advmod _ _ 21 less _ ADJ JJR _ 17 nmod _ _ 22 than _ ADP IN _ 23 case _ _ 23 half _ DET NN _ 21 nmod _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 total _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 Budget _ PROPN NNP _ 5 compound _ _ 2 Rent _ PROPN NNP _ 5 compound _ _ 3 a _ DET DT _ 5 det _ _ 4 Car _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 21 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 of _ ADP IN _ 8 case _ _ 8 Chicago _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 National _ PROPN NNP _ 15 compound _ _ 12 Car _ PROPN NNP _ 15 compound _ _ 13 Rental _ PROPN JJ _ 15 compound _ _ 14 Systems _ PROPN NNPS _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 5 conj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 of _ ADP IN _ 18 case _ _ 18 Minneapolis _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 both _ DET DT _ 21 dep _ _ 21 said _ VERB VBD _ 0 root _ _ 22 they _ PRON PRP _ 23 nsubj _ _ 23 had _ VERB VBD _ 21 ccomp _ _ 24 no _ DET DT _ 25 neg _ _ 25 plans _ NOUN NNS _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 follow _ VERB VB _ 25 acl _ _ 28 suit _ NOUN NN _ 27 dobj _ _ 29 . _ PUNCT . _ 21 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Budget _ PROPN NNP _ 5 nsubj _ _ 5 indicated _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 saw _ VERB VBD _ 5 ccomp _ _ 8 some _ DET DT _ 9 det _ _ 9 benefit _ NOUN NN _ 7 dobj _ _ 10 to _ ADP TO _ 11 mark _ _ 11 staying _ VERB VBG _ 9 acl _ _ 12 involved _ ADJ VBN _ 11 xcomp _ _ 13 in _ ADP IN _ 15 case _ _ 14 these _ DET DT _ 15 det _ _ 15 programs _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 in _ ADP IN _ 18 case _ _ 18 which _ PRON WDT _ 20 nmod _ _ 19 renters _ NOUN NNS _ 20 nsubj _ _ 20 earn _ VERB VBP _ 15 acl:relcl _ _ 21 frequent-flier _ ADJ JJ _ 22 amod _ _ 22 miles _ NOUN NNS _ 20 dobj _ _ 23 and _ CONJ CC _ 20 cc _ _ 24 fliers _ NOUN NNS _ 26 nsubj _ _ 25 can _ AUX MD _ 26 aux _ _ 26 get _ VERB VB _ 20 conj _ _ 27 car-rental _ ADJ JJ _ 28 amod _ _ 28 discounts _ NOUN NNS _ 26 dobj _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 can _ AUX MD _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 see _ VERB VB _ 21 ccomp _ _ 6 how _ ADV WRB _ 15 advmod _ _ 7 this _ DET DT _ 8 det _ _ 8 news _ NOUN NN _ 15 nsubj _ _ 9 by _ ADP IN _ 10 case _ _ 10 Hertz _ PROPN NNP _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Avis _ PROPN NNP _ 10 conj _ _ 13 can _ AUX MD _ 15 aux _ _ 14 not _ PART RB _ 15 neg _ _ 15 benefit _ VERB VB _ 5 ccomp _ _ 16 Budget _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 programs _ NOUN NNS _ 15 dobj _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Bob _ PROPN NNP _ 23 compound _ _ 23 Wilson _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 Budget _ PROPN NNP _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 vice _ NOUN NN _ 28 compound _ _ 28 president _ NOUN NN _ 23 appos _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 marketing _ NOUN NN _ 31 compound _ _ 31 planning _ NOUN NN _ 28 appos _ _ 32 . _ PUNCT . _ 21 punct _ _ 1 Northwest _ PROPN NNP _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Midway _ PROPN NNP _ 1 conj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 two _ NUM CD _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 five _ NUM CD _ 9 nummod _ _ 9 airlines _ NOUN NNS _ 5 nmod _ _ 10 with _ ADP IN _ 11 case _ _ 11 which _ PRON WDT _ 13 nmod _ _ 12 Budget _ PROPN NNP _ 13 nsubj _ _ 13 has _ VERB VBZ _ 9 acl:relcl _ _ 14 agreements _ NOUN NNS _ 13 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 National _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 participates _ VERB VBZ _ 0 root _ _ 4 in _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 Northwest _ PROPN NNP _ 8 compound _ _ 7 frequent-flier _ ADJ JJ _ 8 amod _ _ 8 program _ NOUN NN _ 3 nmod _ _ 9 along _ ADP IN _ 3 advmod _ _ 10 with _ ADP IN _ 13 case _ _ 11 four _ NUM CD _ 13 nummod _ _ 12 other _ ADJ JJ _ 13 amod _ _ 13 airlines _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 including _ VERB VBG _ 16 case _ _ 16 Delta _ PROPN NNP _ 13 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 USAir _ PROPN NNP _ 20 compound _ _ 19 Group _ PROPN NNP _ 20 compound _ _ 20 Inc. _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 USAir _ PROPN NNP _ 23 compound _ _ 23 unit _ NOUN NN _ 16 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 month _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 13 advmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 Hertz _ PROPN NNP _ 13 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 of _ ADP IN _ 9 case _ _ 8 Park _ PROPN NNP _ 9 compound _ _ 9 Ridge _ PROPN NNP _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 N.J. _ PROPN NNP _ 9 appos _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 that _ SCONJ IN _ 17 mark _ _ 15 it _ PRON PRP _ 17 nsubj _ _ 16 would _ AUX MD _ 17 aux _ _ 17 drop _ VERB VB _ 13 ccomp _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 marketing _ NOUN NN _ 20 compound _ _ 20 agreements _ NOUN NNS _ 17 dobj _ _ 21 at _ ADP IN _ 23 case _ _ 22 year _ NOUN NN _ 23 compound _ _ 23 end _ NOUN NN _ 17 nmod _ _ 24 with _ ADP IN _ 25 case _ _ 25 Delta _ PROPN NNP _ 17 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 America _ PROPN NNP _ 28 compound _ _ 28 West _ PROPN NNP _ 25 conj _ _ 29 and _ CONJ CC _ 25 cc _ _ 30 Texas _ PROPN NNP _ 32 compound _ _ 31 Air _ PROPN NNP _ 32 compound _ _ 32 Corp. _ PROPN NNP _ 35 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 Continental _ PROPN NNP _ 35 compound _ _ 35 Airlines _ PROPN NNPS _ 25 conj _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 Eastern _ PROPN NNP _ 38 compound _ _ 38 Airlines _ PROPN NNPS _ 35 conj _ _ 39 , _ PUNCT , _ 17 punct _ _ 40 and _ CONJ CC _ 17 cc _ _ 41 that _ SCONJ IN _ 57 mark _ _ 42 pacts _ NOUN NNS _ 57 nsubjpass _ _ 43 with _ ADP IN _ 45 case _ _ 44 American _ PROPN NNP _ 45 compound _ _ 45 Airlines _ PROPN NNPS _ 42 nmod _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 UAL _ PROPN NNP _ 48 compound _ _ 48 Inc _ PROPN NNP _ 51 nmod:poss _ _ 49 's _ PART POS _ 48 case _ _ 50 United _ PROPN NNP _ 51 compound _ _ 51 Airlines _ PROPN NNPS _ 45 conj _ _ 52 and _ CONJ CC _ 45 cc _ _ 53 USAir _ PROPN NNP _ 45 conj _ _ 54 also _ ADV RB _ 57 advmod _ _ 55 would _ AUX MD _ 57 aux _ _ 56 be _ AUX VB _ 57 auxpass _ _ 57 ended _ VERB VBN _ 17 conj _ _ 58 ... _ PUNCT : _ 57 punct _ _ 59 sometime _ ADV RB _ 57 advmod _ _ 60 after _ ADP IN _ 61 case _ _ 61 Dec. _ PROPN NNP _ 59 nmod _ _ 62 31 _ NUM CD _ 61 nummod _ _ 63 . _ PUNCT . _ 13 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Hertz _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 annual _ ADJ JJ _ 9 amod _ _ 9 fees _ NOUN NNS _ 13 nsubj _ _ 10 to _ ADP TO _ 12 case _ _ 11 those _ DET DT _ 12 det _ _ 12 airlines _ NOUN NNS _ 9 nmod _ _ 13 amounted _ VERB VBD _ 6 ccomp _ _ 14 to _ ADP TO _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 20 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 that _ SCONJ IN _ 25 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 value _ NOUN NN _ 25 nsubj _ _ 22 of _ ADP IN _ 24 case _ _ 23 redeemed _ VERB VBN _ 24 amod _ _ 24 awards _ NOUN NNS _ 21 nmod _ _ 25 topped _ VERB VBD _ 13 conj _ _ 26 $ _ SYM $ _ 25 dobj _ _ 27 15 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Analysts _ NOUN NNS _ 7 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 competitors _ NOUN NNS _ 1 conj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 doubt _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 numbers _ NOUN NNS _ 12 nsubj _ _ 10 were _ VERB VBD _ 12 cop _ _ 11 that _ ADV DT _ 12 advmod _ _ 12 high _ ADJ JJ _ 7 ccomp _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 Budget _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 frequent-flier _ ADJ JJ _ 5 amod _ _ 5 costs _ NOUN NNS _ 13 nsubj _ _ 6 are _ VERB VBP _ 13 cop _ _ 7 `` _ PUNCT `` _ 13 punct _ _ 8 substantially _ ADV RB _ 13 advmod _ _ 9 below _ ADP RB _ 13 case _ _ 10 '' _ PUNCT '' _ 13 punct _ _ 11 Avis _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 level _ NOUN NN _ 2 ccomp _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Robert _ PROPN NNP _ 3 compound _ _ 2 D. _ PROPN NNP _ 3 compound _ _ 3 Cardillo _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Avis _ PROPN NNP _ 7 compound _ _ 6 vice _ NOUN NN _ 7 compound _ _ 7 president _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 9 case _ _ 9 marketing _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 26 punct _ _ 14 The _ DET DT _ 15 det _ _ 15 proliferation _ NOUN NN _ 26 nsubj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 costs _ NOUN NNS _ 15 conj _ _ 18 attached _ VERB VBN _ 15 acl _ _ 19 to _ ADP TO _ 22 case _ _ 20 -LCB- _ PUNCT -LRB- _ 22 punct _ _ 21 frequent-flier _ ADJ JJ _ 22 amod _ _ 22 programs _ NOUN NNS _ 18 advcl _ _ 23 -RCB- _ PUNCT -RRB- _ 22 punct _ _ 24 have _ AUX VBP _ 26 aux _ _ 25 significantly _ ADV RB _ 26 advmod _ _ 26 diminished _ VERB VBN _ 11 ccomp _ _ 27 their _ PRON PRP$ _ 28 nmod:poss _ _ 28 value _ NOUN NN _ 26 dobj _ _ 29 . _ PUNCT . _ 11 punct _ _ 30 '' _ PUNCT '' _ 11 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ VERB VBN _ 5 cop _ _ 5 difficult _ ADJ JJ _ 12 ccomp _ _ 6 for _ ADP IN _ 8 case _ _ 7 both _ DET DT _ 8 cc:preconj _ _ 8 Hertz _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Avis _ PROPN NNP _ 8 conj _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Charles _ PROPN NNP _ 14 compound _ _ 14 Finnie _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 car-rental _ ADJ JJ _ 18 amod _ _ 17 industry _ NOUN NN _ 18 compound _ _ 18 analyst _ NOUN NN _ 14 appos _ _ 19 at _ ADP IN _ 22 case _ _ 20 Alex _ PROPN NNP _ 22 compound _ _ 21 . _ PUNCT . _ 22 punct _ _ 22 Brown _ PROPN NNP _ 18 nmod _ _ 23 & _ CONJ CC _ 22 cc _ _ 24 Sons _ PROPN NNP _ 22 conj _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 looking _ VERB VBG _ 25 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 get _ VERB VB _ 5 xcomp _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 costs _ NOUN NNS _ 7 dobj _ _ 10 down _ ADV RB _ 7 advmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 and _ CONJ CC _ 5 cc _ _ 13 this _ PRON DT _ 18 nsubj _ _ 14 is _ VERB VBZ _ 18 cop _ _ 15 a _ DET DT _ 18 det _ _ 16 fairly _ ADV RB _ 17 advmod _ _ 17 sensible _ ADJ JJ _ 18 amod _ _ 18 way _ NOUN NN _ 5 conj _ _ 19 to _ PART TO _ 20 mark _ _ 20 do _ VERB VB _ 18 acl _ _ 21 it _ PRON PRP _ 20 dobj _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 CBS _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 cutting _ VERB VBG _ 0 root _ _ 5 `` _ PUNCT `` _ 4 punct _ _ 6 The _ PROPN DT _ 9 compound _ _ 7 Pat _ PROPN NNP _ 9 compound _ _ 8 Sajak _ PROPN NNP _ 9 compound _ _ 9 Show _ PROPN NNP _ 4 dobj _ _ 10 '' _ PUNCT '' _ 4 punct _ _ 11 down _ ADV IN _ 4 advmod _ _ 12 to _ ADP TO _ 14 case _ _ 13 one _ NUM CD _ 14 nummod _ _ 14 hour _ NOUN NN _ 4 nmod _ _ 15 from _ ADP IN _ 19 case _ _ 16 its _ PRON PRP$ _ 19 nmod:poss _ _ 17 current _ ADJ JJ _ 19 amod _ _ 18 90 _ NUM CD _ 19 nummod _ _ 19 minutes _ NOUN NNS _ 4 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 CBS _ PROPN NNP _ 2 nsubj _ _ 2 insisted _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 move _ NOUN NN _ 8 nsubj _ _ 5 was _ VERB VBD _ 8 cop _ _ 6 n't _ PART RB _ 8 neg _ _ 7 a _ DET DT _ 8 det _ _ 8 setback _ NOUN NN _ 2 ccomp _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 program _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 19 nsubj _ _ 14 is _ VERB VBZ _ 19 cop _ _ 15 the _ DET DT _ 16 det _ _ 16 network _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 first _ ADJ JJ _ 19 amod _ _ 19 entry _ NOUN NN _ 11 acl:relcl _ _ 20 into _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 late-night _ ADJ JJ _ 25 amod _ _ 23 talk _ NOUN NN _ 25 compound _ _ 24 show _ NOUN NN _ 25 compound _ _ 25 format _ NOUN NN _ 19 nmod _ _ 26 since _ ADP IN _ 27 case _ _ 27 1972 _ NUM CD _ 19 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 27 ccomp _ _ 4 every _ DET DT _ 5 det _ _ 5 intention _ NOUN NN _ 3 dobj _ _ 6 of _ SCONJ IN _ 7 mark _ _ 7 making _ VERB VBG _ 5 acl _ _ 8 this _ PRON DT _ 12 nsubj _ _ 9 the _ DET DT _ 12 det _ _ 10 best _ ADJ JJS _ 11 dep _ _ 11 possible _ ADJ JJ _ 12 amod _ _ 12 show _ NOUN NN _ 7 xcomp _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 having _ VERB VBG _ 22 csubj _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 run _ VERB VB _ 14 ccomp _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 hour _ NOUN NN _ 16 nmod:tmod _ _ 19 is _ VERB VBZ _ 22 cop _ _ 20 the _ DET DT _ 22 det _ _ 21 best _ ADJ JJS _ 22 amod _ _ 22 way _ NOUN NN _ 3 conj _ _ 23 to _ ADP TO _ 24 case _ _ 24 it _ PRON PRP _ 22 nmod _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Rod _ PROPN NNP _ 29 compound _ _ 29 Perth _ PROPN NNP _ 27 nsubj _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 who _ PRON WP _ 33 nsubjpass _ _ 32 was _ AUX VBD _ 33 auxpass _ _ 33 named _ VERB VBN _ 29 acl:relcl _ _ 34 vice _ NOUN NN _ 35 compound _ _ 35 president _ NOUN NN _ 33 xcomp _ _ 36 of _ ADP IN _ 39 case _ _ 37 late _ ADJ JJ _ 39 amod _ _ 38 night _ NOUN NN _ 39 compound _ _ 39 entertainment _ NOUN NN _ 35 nmod _ _ 40 in _ ADP IN _ 41 case _ _ 41 August _ PROPN NNP _ 33 nmod _ _ 42 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 raise _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 energy _ NOUN NN _ 7 compound _ _ 7 level _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 show _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 CBS _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 continue _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 program _ VERB VB _ 3 xcomp _ _ 6 action-adventure _ ADJ JJ _ 7 amod _ _ 7 shows _ NOUN NNS _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 follow _ VERB VB _ 7 acl _ _ 10 the _ DET DT _ 12 det _ _ 11 Sajak _ PROPN NNP _ 12 compound _ _ 12 hour _ NOUN NN _ 9 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 CBS _ PROPN NNP _ 3 compound _ _ 3 News _ PROPN NNP _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 extend _ VERB VB _ 0 root _ _ 6 its _ PRON PRP$ _ 9 nmod:poss _ _ 7 four-hour _ ADJ JJ _ 9 amod _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 Nightwatch _ PROPN NNP _ 5 dobj _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 by _ ADP IN _ 13 case _ _ 12 30 _ NUM CD _ 13 nummod _ _ 13 minutes _ NOUN NNS _ 5 nmod _ _ 14 and _ CONJ CC _ 5 cc _ _ 15 begin _ VERB VB _ 5 conj _ _ 16 at _ ADP IN _ 17 case _ _ 17 1:30 _ NUM CD _ 15 nmod _ _ 18 a.m _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 show _ NOUN NN _ 10 nsubj _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 despite _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 promising _ ADJ JJ _ 7 amod _ _ 7 start _ NOUN NN _ 10 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 slipped _ VERB VBN _ 0 root _ _ 11 badly _ ADV RB _ 10 advmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 weekly _ ADJ JJ _ 15 amod _ _ 15 ratings _ NOUN NNS _ 10 nmod _ _ 16 as _ SCONJ IN _ 17 mark _ _ 17 compiled _ VERB VBN _ 15 dep _ _ 18 by _ ADP IN _ 21 case _ _ 19 A.C. _ PROPN NNP _ 21 compound _ _ 20 Nielsen _ PROPN NNP _ 21 compound _ _ 21 Co. _ PROPN NNP _ 17 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 finishing _ VERB VBG _ 10 xcomp _ _ 24 far _ ADV RB _ 27 advmod _ _ 25 below _ ADP IN _ 27 case _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 Tonight _ PROPN NNP _ 23 nmod _ _ 28 '' _ PUNCT '' _ 27 punct _ _ 29 on _ ADP IN _ 30 case _ _ 30 NBC _ PROPN NNP _ 27 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 a _ DET DT _ 33 det _ _ 33 unit _ NOUN NN _ 30 appos _ _ 34 of _ ADP IN _ 37 case _ _ 35 General _ PROPN NNP _ 37 compound _ _ 36 Electric _ PROPN NNP _ 37 compound _ _ 37 Co. _ PROPN NNP _ 33 nmod _ _ 38 , _ PUNCT , _ 27 punct _ _ 39 and _ CONJ CC _ 27 cc _ _ 40 `` _ PUNCT `` _ 41 punct _ _ 41 Nightline _ PROPN NNP _ 27 conj _ _ 42 '' _ PUNCT '' _ 41 punct _ _ 43 on _ ADP IN _ 44 case _ _ 44 ABC-TV _ PROPN NNP _ 41 nmod _ _ 45 , _ PUNCT , _ 44 punct _ _ 46 a _ DET DT _ 47 det _ _ 47 unit _ NOUN NN _ 44 appos _ _ 48 of _ ADP IN _ 51 case _ _ 49 Capital _ PROPN NNP _ 51 compound _ _ 50 Cities/ABC _ PROPN NNP _ 51 compound _ _ 51 Inc _ PROPN NNP _ 47 nmod _ _ 52 . _ PUNCT . _ 10 punct _ _ 1 Further _ ADV JJ _ 2 advmod _ _ 2 fractioning _ VERB VBG _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 late-night _ ADJ JJ _ 5 amod _ _ 5 audience _ NOUN NN _ 2 dobj _ _ 6 is _ VERB VBZ _ 2 aux _ _ 7 the _ DET DT _ 8 det _ _ 8 addition _ NOUN NN _ 2 nsubj _ _ 9 of _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 Arsenio _ PROPN NNP _ 14 compound _ _ 13 Hall _ PROPN NNP _ 14 compound _ _ 14 Show _ PROPN NNP _ 8 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 '' _ PUNCT '' _ 14 punct _ _ 17 syndicated _ VERB VBN _ 14 acl _ _ 18 by _ ADP IN _ 21 case _ _ 19 Paramount _ PROPN NNP _ 21 compound _ _ 20 Communications _ PROPN NNP _ 21 compound _ _ 21 Inc _ PROPN NNP _ 17 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Tandem _ PROPN NNP _ 3 compound _ _ 2 Computers _ PROPN NNPS _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 21 nsubj _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 preparing _ VERB VBG _ 21 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 fight _ VERB VB _ 5 xcomp _ _ 8 with _ ADP IN _ 12 case _ _ 9 International _ PROPN NNP _ 12 compound _ _ 10 Business _ PROPN NNP _ 12 compound _ _ 11 Machines _ PROPN NNPS _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 7 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 piece _ NOUN NN _ 7 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 mainframe _ ADJ NN _ 19 amod _ _ 19 business _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 it _ PRON PRP _ 23 nsubj _ _ 23 expects _ VERB VBZ _ 21 ccomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 post _ VERB VB _ 23 xcomp _ _ 26 higher _ ADJ JJR _ 27 amod _ _ 27 revenue _ NOUN NN _ 25 dobj _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 earnings _ NOUN NNS _ 27 conj _ _ 30 for _ ADP IN _ 34 case _ _ 31 its _ PRON PRP$ _ 34 nmod:poss _ _ 32 fiscal _ ADJ JJ _ 34 amod _ _ 33 fourth _ ADJ JJ _ 34 amod _ _ 34 quarter _ NOUN NN _ 27 nmod _ _ 35 ended _ VERB VBN _ 34 acl _ _ 36 Sept. _ PROPN NNP _ 35 nmod:tmod _ _ 37 30 _ NUM CD _ 36 nummod _ _ 38 . _ PUNCT . _ 21 punct _ _ 1 Tandem _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 report _ VERB VB _ 4 xcomp _ _ 7 revenue _ NOUN NN _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 about _ ADV IN _ 10 advmod _ _ 10 $ _ SYM $ _ 7 nmod _ _ 11 450 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 and _ CONJ CC _ 7 cc _ _ 14 earnings _ NOUN NNS _ 7 conj _ _ 15 of _ ADP IN _ 17 case _ _ 16 35 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 14 nmod _ _ 18 to _ ADP TO _ 17 dep _ _ 19 40 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 17 dep _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 17 nmod:npmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 results _ NOUN NNS _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 7 nsubj _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 in _ ADP IN _ 7 case _ _ 7 line _ NOUN NN _ 2 acl:relcl _ _ 8 with _ ADP IN _ 11 case _ _ 9 analysts _ NOUN NNS _ 11 nmod:poss _ _ 10 ' _ PART POS _ 9 case _ _ 11 estimates _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 reflect _ VERB VBP _ 24 ccomp _ _ 14 `` _ PUNCT `` _ 13 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 continued _ ADJ JJ _ 17 amod _ _ 17 improvement _ NOUN NN _ 13 dobj _ _ 18 in _ ADP IN _ 21 case _ _ 19 our _ PRON PRP$ _ 21 nmod:poss _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 business _ NOUN NN _ 17 nmod _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 '' _ PUNCT '' _ 24 punct _ _ 24 said _ VERB VBD _ 0 root _ _ 25 James _ PROPN NNP _ 26 compound _ _ 26 Treybig _ PROPN NNP _ 24 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Tandem _ PROPN NNP _ 32 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 chief _ ADJ JJ _ 32 amod _ _ 31 executive _ ADJ NN _ 32 amod _ _ 32 officer _ NOUN NN _ 26 appos _ _ 33 . _ PUNCT . _ 24 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 period _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Tandem _ PROPN NNP _ 7 nsubj _ _ 7 reported _ VERB VBD _ 0 root _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 30.1 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 31 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 revenue _ NOUN NN _ 9 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 383.9 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Tandem _ PROPN NNP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 report _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 7 det _ _ 6 full _ ADJ JJ _ 7 amod _ _ 7 results _ NOUN NNS _ 4 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 quarter _ NOUN NN _ 7 nmod _ _ 11 next _ ADP JJ _ 12 amod _ _ 12 week _ NOUN NN _ 4 nmod:tmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 predicted _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 12 mark _ _ 5 the _ DET DT _ 10 det _ _ 6 Cupertino _ PROPN NNP _ 10 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Calif. _ PROPN NNP _ 6 dep _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 company _ NOUN NN _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 report _ VERB VB _ 3 ccomp _ _ 13 revenue _ NOUN NN _ 12 dobj _ _ 14 of _ ADP IN _ 19 case _ _ 15 $ _ SYM $ _ 19 dep _ _ 16 430 _ NUM CD _ 19 compound _ _ 17 million _ NUM CD _ 19 compound _ _ 18 to _ ADP TO _ 19 dep _ _ 19 $ _ SYM $ _ 13 nmod _ _ 20 460 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 earnings _ NOUN NNS _ 13 conj _ _ 24 of _ ADP IN _ 26 case _ _ 25 35 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 23 nmod _ _ 27 to _ ADP TO _ 26 dep _ _ 28 40 _ NUM CD _ 29 nummod _ _ 29 cents _ NOUN NNS _ 26 dep _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 26 nmod:npmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 Commenting _ VERB VBG _ 11 advcl _ _ 2 on _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 results _ NOUN NNS _ 1 nmod _ _ 5 for _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 quarter _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Treybig _ PROPN NNP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 strength _ NOUN NN _ 20 nsubj _ _ 14 of _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 domestic _ ADJ JJ _ 19 amod _ _ 19 business _ NOUN NN _ 13 nmod _ _ 20 came _ VERB VBD _ 11 ccomp _ _ 21 as _ ADP IN _ 24 case _ _ 22 `` _ PUNCT `` _ 24 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 surprise _ NOUN NN _ 20 nmod _ _ 25 '' _ PUNCT '' _ 24 punct _ _ 26 to _ ADP TO _ 27 case _ _ 27 him _ PRON PRP _ 24 nmod _ _ 28 , _ PUNCT , _ 11 punct _ _ 29 noting _ VERB VBG _ 11 xcomp _ _ 30 that _ SCONJ IN _ 39 mark _ _ 31 sales _ NOUN NNS _ 39 nsubj _ _ 32 `` _ PUNCT `` _ 31 punct _ _ 33 in _ ADP IN _ 35 case _ _ 34 every _ DET DT _ 35 det _ _ 35 region _ NOUN NN _ 31 nmod _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 U.S. _ PROPN NNP _ 35 nmod _ _ 39 exceeded _ VERB VBD _ 29 ccomp _ _ 40 our _ PRON PRP$ _ 41 nmod:poss _ _ 41 plan _ NOUN NN _ 39 dobj _ _ 42 . _ PUNCT . _ 11 punct _ _ 43 '' _ PUNCT '' _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 U.S. _ PROPN NNP _ 5 compound _ _ 5 performance _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 helped _ VERB VBN _ 19 ccomp _ _ 8 by _ ADP IN _ 12 case _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 a _ DET DT _ 12 det _ _ 11 record _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 7 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 new _ ADJ JJ _ 15 amod _ _ 15 customers _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 Tandem _ PROPN NNP _ 2 nsubj _ _ 2 makes _ VERB VBZ _ 0 root _ _ 3 `` _ PUNCT `` _ 6 punct _ _ 4 fault-tolerant _ ADJ JJ _ 6 amod _ _ 5 '' _ PUNCT '' _ 6 punct _ _ 6 computers _ NOUN NNS _ 2 dobj _ _ 7 -- _ PUNCT : _ 8 punct _ _ 8 machines _ NOUN NNS _ 6 dep _ _ 9 with _ ADP IN _ 12 case _ _ 10 built-in _ ADJ JJ _ 12 amod _ _ 11 backup _ ADJ NN _ 12 amod _ _ 12 systems _ NOUN NNS _ 8 nmod _ _ 13 -- _ PUNCT : _ 8 punct _ _ 14 that _ PRON IN _ 15 nsubj _ _ 15 run _ VERB NN _ 6 acl:relcl _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 exchanges _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 networks _ NOUN NNS _ 17 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 automatic _ ADJ JJ _ 22 amod _ _ 22 tellers _ NOUN NNS _ 19 nmod _ _ 23 and _ CONJ CC _ 17 cc _ _ 24 other _ ADJ JJ _ 27 amod _ _ 25 complex _ ADJ JJ _ 27 amod _ _ 26 computer _ NOUN NN _ 27 compound _ _ 27 systems _ NOUN NNS _ 17 conj _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Tomorrow _ NOUN NN _ 5 nmod:tmod _ _ 2 the _ DET DT _ 3 det _ _ 3 company _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 scheduled _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 announce _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 11 nmod:poss _ _ 9 most _ ADJ RBS _ 10 dep _ _ 10 powerful _ ADJ JJ _ 11 amod _ _ 11 computer _ NOUN NN _ 7 dobj _ _ 12 ever _ ADV RB _ 11 advmod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 which _ PRON WDT _ 20 nsubj _ _ 15 for _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 first _ ADJ JJ _ 18 amod _ _ 18 time _ NOUN NN _ 20 nmod _ _ 19 will _ AUX MD _ 20 aux _ _ 20 bring _ VERB VB _ 11 acl:relcl _ _ 21 it _ PRON PRP _ 20 dobj _ _ 22 into _ ADP IN _ 24 case _ _ 23 direct _ ADJ JJ _ 24 amod _ _ 24 competition _ NOUN NN _ 20 nmod _ _ 25 with _ ADP IN _ 26 case _ _ 26 makers _ NOUN NNS _ 24 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 mainframe _ ADJ NN _ 29 amod _ _ 29 computers _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Tandem _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 new _ ADJ JJ _ 5 amod _ _ 4 high-end _ ADJ JJ _ 5 amod _ _ 5 computer _ NOUN NN _ 7 nsubjpass _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 called _ VERB VBN _ 0 root _ _ 8 Cyclone _ PROPN NNP _ 7 xcomp _ _ 9 . _ PUNCT . _ 7 punct _ _ 1 Prices _ NOUN NNS _ 18 nsubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 machine _ NOUN NN _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 8 nsubj _ _ 7 can _ AUX MD _ 8 aux _ _ 8 come _ VERB VB _ 4 acl:relcl _ _ 9 in _ ADP IN _ 11 case _ _ 10 various _ ADJ JJ _ 11 amod _ _ 11 configurations _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 are _ VERB VBP _ 18 cop _ _ 14 $ _ SYM $ _ 18 dep _ _ 15 2 _ NUM CD _ 18 compound _ _ 16 million _ NUM CD _ 18 compound _ _ 17 to _ ADP TO _ 18 dep _ _ 18 $ _ SYM $ _ 0 root _ _ 19 10 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 expect _ VERB VBP _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 computer _ NOUN NN _ 2 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 wrest _ VERB VB _ 2 xcomp _ _ 8 a _ DET DT _ 10 det _ _ 9 hefty _ ADJ JJ _ 10 amod _ _ 10 slice _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 business _ NOUN NN _ 10 nmod _ _ 13 away _ ADV RB _ 7 advmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 IBM _ PROPN NNP _ 13 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 longtime _ ADJ JJ _ 19 amod _ _ 19 leader _ NOUN NN _ 15 appos _ _ 20 in _ ADP IN _ 21 case _ _ 21 mainframes _ NOUN NNS _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 believe _ VERB VBP _ 22 ccomp _ _ 4 they _ PRON PRP _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 siphon _ VERB VB _ 3 ccomp _ _ 7 perhaps _ ADV RB _ 11 advmod _ _ 8 two _ NUM CD _ 11 compound _ _ 9 to _ ADP TO _ 11 dep _ _ 10 three _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 12 nummod _ _ 12 dollars _ NOUN NNS _ 6 dobj _ _ 13 from _ ADP IN _ 14 case _ _ 14 IBM _ PROPN NNP _ 6 nmod _ _ 15 '' _ PUNCT '' _ 6 punct _ _ 16 over _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 next _ ADJ JJ _ 20 amod _ _ 19 few _ ADJ JJ _ 20 amod _ _ 20 years _ NOUN NNS _ 6 nmod _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 George _ PROPN NNP _ 24 compound _ _ 24 Weiss _ PROPN NNP _ 22 dep _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 an _ DET DT _ 27 det _ _ 27 analyst _ NOUN NN _ 24 appos _ _ 28 at _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Gartner _ ADJ NNP _ 31 amod _ _ 31 group _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 22 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 spur _ VERB VB _ 0 root _ _ 4 Tandem _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 growth _ NOUN NN _ 3 dobj _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'd _ AUX MD _ 5 aux _ _ 4 be _ VERB VB _ 5 cop _ _ 5 disappointed _ ADJ VBN _ 19 ccomp _ _ 6 if _ SCONJ IN _ 9 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 company _ NOUN NN _ 9 nsubj _ _ 9 grew _ VERB VBD _ 5 advcl _ _ 10 by _ ADP IN _ 14 case _ _ 11 less _ ADJ JJR _ 13 advmod _ _ 12 than _ ADP IN _ 11 mwe _ _ 13 20 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 9 nmod _ _ 15 next _ ADJ JJ _ 16 amod _ _ 16 year _ NOUN NN _ 9 nmod:tmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 John _ PROPN NNP _ 21 compound _ _ 21 Levinson _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 an _ DET DT _ 24 det _ _ 24 analyst _ NOUN NN _ 21 appos _ _ 25 at _ ADP IN _ 26 case _ _ 26 Goldman _ PROPN NNP _ 24 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Sachs _ PROPN NNP _ 26 conj _ _ 29 & _ CONJ CC _ 26 cc _ _ 30 Co _ PROPN NNP _ 26 conj _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 IBM _ PROPN NNP _ 3 nsubjpass _ _ 2 is _ AUX VBZ _ 3 auxpass _ _ 3 expected _ VERB VBN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 respond _ VERB VB _ 3 xcomp _ _ 6 to _ ADP TO _ 7 case _ _ 7 Tandem _ PROPN NNP _ 5 nmod _ _ 8 's _ PART POS _ 7 case _ _ 9 Cyclone _ PROPN NN _ 7 dep _ _ 10 by _ SCONJ IN _ 11 mark _ _ 11 discounting _ VERB VBG _ 5 advcl _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 own _ ADJ JJ _ 14 amod _ _ 14 mainframes _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 18 dobj _ _ 17 analysts _ NOUN NNS _ 18 nsubj _ _ 18 say _ VERB VBP _ 3 dep _ _ 19 are _ VERB VBP _ 24 cop _ _ 20 roughly _ ADV RB _ 22 advmod _ _ 21 three _ NUM CD _ 22 compound _ _ 22 times _ NOUN NNS _ 24 nummod _ _ 23 the _ DET DT _ 24 det _ _ 24 price _ NOUN NN _ 18 ccomp _ _ 25 of _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 comparable _ ADJ JJ _ 28 amod _ _ 28 system _ NOUN NN _ 24 nmod _ _ 29 from _ ADP IN _ 30 case _ _ 30 Tandem _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 Obviously _ ADV RB _ 5 advmod _ _ 3 IBM _ PROPN NNP _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 give _ VERB VB _ 13 ccomp _ _ 6 bigger _ ADJ JJR _ 7 amod _ _ 7 discounts _ NOUN NNS _ 5 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 users _ NOUN NNS _ 5 nmod _ _ 10 immediately _ ADV RB _ 5 advmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Weiss _ PROPN NNP _ 13 nsubj _ _ 16 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Treybig _ PROPN NNP _ 4 nsubj _ _ 4 questions _ NOUN NNS _ 0 root _ _ 5 whether _ SCONJ IN _ 9 mark _ _ 6 that _ PRON DT _ 9 nsubj _ _ 7 will _ AUX MD _ 9 aux _ _ 8 be _ VERB VB _ 9 cop _ _ 9 enough _ ADJ RB _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 stop _ VERB VB _ 9 xcomp _ _ 12 Tandem _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 first _ ADJ JJ _ 15 amod _ _ 15 mainframe _ NOUN NN _ 11 dobj _ _ 16 from _ SCONJ IN _ 17 mark _ _ 17 taking _ VERB VBG _ 11 advcl _ _ 18 on _ ADP RP _ 17 compound:prt _ _ 19 some _ DET DT _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 functions _ NOUN NNS _ 19 nmod _ _ 23 that _ PRON WDT _ 27 dobj _ _ 24 large _ ADJ JJ _ 25 amod _ _ 25 organizations _ NOUN NNS _ 27 nsubj _ _ 26 previously _ ADV RB _ 27 advmod _ _ 27 sought _ VERB VBN _ 22 acl:relcl _ _ 28 from _ ADP IN _ 32 case _ _ 29 Big _ PROPN JJ _ 30 compound _ _ 30 Blue _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 machines _ NOUN NNS _ 27 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 answer _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 price _ NOUN NN _ 7 compound _ _ 7 reductions _ NOUN NNS _ 15 ccomp _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 but _ CONJ CC _ 7 cc _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 systems _ NOUN NNS _ 7 conj _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Nevertheless _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Tandem _ PROPN NNP _ 4 nsubj _ _ 4 faces _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 variety _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 challenges _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 biggest _ ADJ JJS _ 12 nsubj _ _ 12 being _ NOUN VBG _ 8 dep _ _ 13 that _ SCONJ IN _ 16 mark _ _ 14 customers _ NOUN NNS _ 16 nsubj _ _ 15 generally _ ADV RB _ 16 advmod _ _ 16 view _ VERB VBP _ 12 ccomp _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 computers _ NOUN NNS _ 16 dobj _ _ 21 as _ ADP IN _ 22 case _ _ 22 complementary _ ADJ JJ _ 16 advcl _ _ 23 to _ ADP TO _ 26 case _ _ 24 IBM _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 mainframes _ NOUN NNS _ 22 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Even _ ADV RB _ 3 advmod _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Treybig _ PROPN NNP _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 reluctant _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 abandon _ VERB VB _ 5 xcomp _ _ 8 this _ DET DT _ 9 det _ _ 9 notion _ NOUN NN _ 7 dobj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 insisting _ VERB VBG _ 5 xcomp _ _ 12 that _ SCONJ IN _ 19 mark _ _ 13 Tandem _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 new _ ADJ JJ _ 16 amod _ _ 16 machines _ NOUN NNS _ 19 nsubj _ _ 17 are _ VERB VBP _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 replacements _ NOUN NNS _ 11 ccomp _ _ 20 for _ ADP IN _ 23 case _ _ 21 IBM _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 mainframes _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 We _ PRON PRP _ 8 nsubj _ _ 3 're _ VERB VBP _ 8 cop _ _ 4 after _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 little _ ADJ JJ _ 8 amod _ _ 7 bigger _ ADJ JJR _ 6 dep _ _ 8 niche _ NOUN NN _ 12 ccomp _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Do _ AUX VBP _ 3 aux _ _ 2 n't _ PART RB _ 3 neg _ _ 3 jump _ VERB VB _ 0 root _ _ 4 yet _ ADV RB _ 3 advmod _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 swoon _ NOUN NN _ 7 nsubj _ _ 6 may _ AUX MD _ 7 aux _ _ 7 turn _ VERB VB _ 0 root _ _ 8 out _ ADP RP _ 7 compound:prt _ _ 9 to _ PART TO _ 12 mark _ _ 10 be _ VERB VB _ 12 cop _ _ 11 good _ ADJ JJ _ 12 amod _ _ 12 news _ NOUN NN _ 7 xcomp _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 economy _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 one _ NUM CD _ 4 nummod _ _ 3 wild _ ADJ JJ _ 4 amod _ _ 4 hour _ NOUN NN _ 10 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 trading _ VERB NN _ 4 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 10 nsubj _ _ 10 managed _ VERB VBD _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 accomplish _ VERB VB _ 10 xcomp _ _ 13 what _ PRON WP _ 21 dobj _ _ 14 the _ DET DT _ 16 det _ _ 15 Bush _ PROPN NNP _ 16 compound _ _ 16 administration _ NOUN NN _ 19 nsubj _ _ 17 has _ AUX VBZ _ 19 aux _ _ 18 been _ AUX VBN _ 19 aux _ _ 19 trying _ VERB VBG _ 12 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 do _ VERB VB _ 19 xcomp _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 unsuccessfully _ ADV RB _ 19 advmod _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 for _ ADP IN _ 26 case _ _ 26 weeks _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 forcing _ VERB VBG _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Federal _ PROPN NNP _ 6 compound _ _ 6 Reserve _ PROPN NNP _ 3 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 ease _ VERB VB _ 3 xcomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 grip _ NOUN NN _ 8 dobj _ _ 11 on _ ADP IN _ 12 case _ _ 12 credit _ NOUN NN _ 10 nmod _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 took _ VERB VBD _ 3 conj _ _ 16 the _ DET DT _ 17 det _ _ 17 wind _ NOUN NN _ 15 dobj _ _ 18 out _ ADP IN _ 15 advmod _ _ 19 of _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 previously _ ADV RB _ 22 advmod _ _ 22 irrepressible _ ADJ JJ _ 23 amod _ _ 23 dollar _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 resulting _ VERB VBG _ 3 amod _ _ 3 decline _ NOUN NN _ 14 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 interest _ NOUN NN _ 6 compound _ _ 6 rates _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 value _ NOUN NN _ 6 conj _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 dollar _ NOUN NN _ 9 nmod _ _ 13 could _ AUX MD _ 14 aux _ _ 14 reinvigorate _ VERB VB _ 0 root _ _ 15 American _ ADJ JJ _ 16 amod _ _ 16 business _ NOUN NN _ 14 dobj _ _ 17 -- _ PUNCT : _ 16 punct _ _ 18 indeed _ ADV RB _ 16 advmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 the _ DET DT _ 22 det _ _ 21 entire _ ADJ JJ _ 22 amod _ _ 22 economy _ NOUN NN _ 16 appos _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 This _ PRON DT _ 3 nsubj _ _ 2 may _ AUX MD _ 3 aux _ _ 3 sound _ VERB VB _ 0 root _ _ 4 strangely _ ADV RB _ 5 advmod _ _ 5 optimistic _ ADJ JJ _ 3 xcomp _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 all _ DET DT _ 14 nmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 until _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 7 det _ _ 6 few _ ADJ JJ _ 7 amod _ _ 7 years _ NOUN NNS _ 8 nmod:npmod _ _ 8 ago _ ADV RB _ 14 advcl _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 14 nsubjpass _ _ 13 was _ AUX VBD _ 14 auxpass _ _ 14 viewed _ VERB VBN _ 0 root _ _ 15 as _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 barometer _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 national _ ADJ JJ _ 21 amod _ _ 21 economy _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 went _ VERB VBD _ 12 advcl _ _ 4 down _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 by _ ADP IN _ 8 case _ _ 7 all _ DET DT _ 8 det _ _ 8 tradition _ NOUN NN _ 12 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 12 nsubj _ _ 12 followed _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 changed _ VERB VBN _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 partly _ ADV RB _ 20 advmod _ _ 6 because _ SCONJ IN _ 20 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 years _ NOUN NNS _ 20 nsubj _ _ 10 following _ VERB VBG _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 worst _ ADJ JJS _ 14 amod _ _ 13 stock-market _ NOUN NN _ 14 compound _ _ 14 plunge _ NOUN NN _ 9 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 history _ NOUN NN _ 14 nmod _ _ 17 have _ AUX VBP _ 20 aux _ _ 18 been _ VERB VBN _ 20 cop _ _ 19 reasonably _ ADV RB _ 20 advmod _ _ 20 comfortable _ ADJ JJ _ 3 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 1987 _ NUM CD _ 3 nummod _ _ 3 crash _ NOUN NN _ 8 nsubj _ _ 4 was _ VERB VBD _ 8 cop _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 false _ ADJ JJ _ 8 amod _ _ 8 alarm _ NOUN NN _ 15 ccomp _ _ 9 however _ ADV RB _ 11 advmod _ _ 10 you _ PRON PRP _ 11 nsubj _ _ 11 view _ VERB VBP _ 8 advcl _ _ 12 it _ PRON PRP _ 11 dobj _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 University _ PROPN NNP _ 21 dep _ _ 17 of _ ADP IN _ 18 case _ _ 18 Chicago _ PROPN NNP _ 16 nmod _ _ 19 economist _ NOUN NN _ 21 compound _ _ 20 Victor _ PROPN NNP _ 21 compound _ _ 21 Zarnowitz _ PROPN NNP _ 15 nsubj _ _ 22 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 0 root _ _ 4 increasingly _ ADV RB _ 5 advmod _ _ 5 disconnected _ ADJ VBN _ 3 xcomp _ _ 6 from _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 rest _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 spasms _ NOUN NNS _ 6 nsubjpass _ _ 3 ca _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 traced _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 10 case _ _ 8 fundamental _ ADJ JJ _ 10 amod _ _ 9 business _ NOUN NN _ 10 compound _ _ 10 conditions _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 nor _ CONJ CC _ 6 cc _ _ 13 do _ AUX VBP _ 15 aux _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 appear _ VERB VBP _ 6 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 presage _ VERB VB _ 15 xcomp _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 shifts _ NOUN NNS _ 17 dobj _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 economy _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 today _ NOUN NN _ 5 nsubj _ _ 5 has _ VERB VBZ _ 23 ccomp _ _ 6 a _ DET DT _ 7 det _ _ 7 life _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 own _ ADJ JJ _ 7 nmod _ _ 11 , _ PUNCT , _ 23 punct _ _ 12 '' _ PUNCT '' _ 23 punct _ _ 13 John _ PROPN NNP _ 14 compound _ _ 14 Akers _ PROPN NNP _ 23 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 chairman _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 21 case _ _ 18 International _ PROPN NNP _ 21 compound _ _ 19 Business _ PROPN NNP _ 21 compound _ _ 20 Machines _ PROPN NNPS _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 16 nmod _ _ 22 , _ PUNCT , _ 14 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 Saturday _ PROPN NNP _ 23 nmod:tmod _ _ 25 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 0 root _ _ 4 nothing _ NOUN NN _ 3 nsubj _ _ 5 rational _ ADJ JJ _ 4 amod _ _ 6 about _ ADP IN _ 8 case _ _ 7 this _ DET DT _ 8 det _ _ 8 kind _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 action _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 health _ NOUN NN _ 11 nsubjpass _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 economy _ NOUN NN _ 5 nmod _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 threatened _ VERB VBN _ 0 root _ _ 12 if _ SCONJ IN _ 15 mark _ _ 13 the _ DET DT _ 14 det _ _ 14 market _ NOUN NN _ 15 nsubj _ _ 15 continues _ VERB VBZ _ 11 advcl _ _ 16 to _ PART TO _ 17 mark _ _ 17 dive _ VERB NN _ 15 xcomp _ _ 18 this _ DET DT _ 19 det _ _ 19 week _ NOUN NN _ 15 nmod:tmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 Sharply _ ADV RB _ 2 advmod _ _ 2 falling _ VERB VBG _ 4 amod _ _ 3 stock _ NOUN NN _ 4 compound _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 do _ AUX VBP _ 6 aux _ _ 6 reduce _ VERB VB _ 0 root _ _ 7 consumer _ NOUN NN _ 8 compound _ _ 8 wealth _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 damage _ VERB NN _ 6 conj _ _ 11 business _ NOUN NN _ 12 compound _ _ 12 confidence _ NOUN NN _ 10 dobj _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 discourage _ VERB VB _ 6 conj _ _ 15 the _ DET DT _ 17 det _ _ 16 foreign _ ADJ JJ _ 17 amod _ _ 17 investors _ NOUN NNS _ 14 dobj _ _ 18 upon _ ADP IN _ 19 case _ _ 19 whom _ PRON WP _ 23 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 23 nsubj _ _ 22 now _ ADV RB _ 23 advmod _ _ 23 relies _ VERB VBZ _ 17 acl:relcl _ _ 24 for _ ADP IN _ 26 case _ _ 25 financial _ ADJ JJ _ 26 amod _ _ 26 sustenance _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 financial-services _ NOUN NNS _ 3 compound _ _ 3 industry _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 battered _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 1987 _ NUM CD _ 9 nummod _ _ 9 crash _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 more _ ADJ JJR _ 23 advcl _ _ 4 , _ PUNCT , _ 23 punct _ _ 5 although _ SCONJ IN _ 12 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 12 nsubj _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 far _ ADV RB _ 11 advmod _ _ 11 less _ ADV RBR _ 12 advmod _ _ 12 overvalued _ ADJ VBN _ 23 advcl _ _ 13 today _ NOUN NN _ 12 nmod:tmod _ _ 14 than _ ADP IN _ 17 case _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 17 nmod:npmod _ _ 17 ago _ ADV RB _ 12 advcl _ _ 18 , _ PUNCT , _ 23 punct _ _ 19 the _ DET DT _ 21 det _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 economy _ NOUN NN _ 23 nsubj _ _ 22 is _ VERB VBZ _ 23 cop _ _ 23 weaker _ ADJ JJR _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Growth _ NOUN NN _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 slower _ ADJ JJR _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Profits _ NOUN NNS _ 3 nsubj _ _ 2 are _ VERB VBP _ 3 cop _ _ 3 softer _ ADJ JJR _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Debt _ NOUN NN _ 2 compound _ _ 2 burdens _ NOUN NNS _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 heavier _ ADJ JJR _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 25 cc _ _ 2 if _ SCONJ IN _ 8 mark _ _ 3 the _ DET DT _ 5 det _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 8 nsubj _ _ 6 does _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 continue _ VERB VB _ 25 advcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 plummet _ VERB VB _ 8 xcomp _ _ 11 , _ PUNCT , _ 25 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 beneficial _ ADJ JJ _ 14 amod _ _ 14 effects _ NOUN NNS _ 25 nsubj _ _ 15 of _ ADP IN _ 18 case _ _ 16 lower _ ADJ JJR _ 18 amod _ _ 17 interest _ NOUN NN _ 18 compound _ _ 18 rates _ NOUN NNS _ 14 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 a _ DET DT _ 22 det _ _ 21 lower _ ADJ JJR _ 22 amod _ _ 22 dollar _ NOUN NN _ 18 conj _ _ 23 may _ AUX MD _ 25 aux _ _ 24 well _ ADV RB _ 25 advmod _ _ 25 dominate _ VERB VB _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Fed _ PROPN NNP _ 17 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 9 nsubj _ _ 5 until _ ADP IN _ 6 case _ _ 6 Friday _ PROPN NNP _ 9 nmod _ _ 7 had _ AUX VBD _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 resisting _ VERB VBG _ 2 acl:relcl _ _ 10 moves _ NOUN NNS _ 9 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 ease _ VERB VB _ 10 acl _ _ 13 credit _ NOUN NN _ 12 dobj _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 is _ AUX VBZ _ 17 auxpass _ _ 16 now _ ADV RB _ 17 advmod _ _ 17 poised _ VERB VBN _ 0 root _ _ 18 to _ PART TO _ 19 mark _ _ 19 pour _ VERB VB _ 17 xcomp _ _ 20 money _ NOUN NN _ 19 dobj _ _ 21 into _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 economy _ NOUN NN _ 19 nmod _ _ 24 if _ SCONJ IN _ 25 mark _ _ 25 needed _ VERB VBN _ 19 advcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 soothe _ VERB VB _ 25 xcomp _ _ 28 the _ DET DT _ 29 det _ _ 29 markets _ NOUN NNS _ 27 dobj _ _ 30 . _ PUNCT . _ 17 punct _ _ 1 Fed _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 4 nsubj _ _ 3 may _ AUX MD _ 4 aux _ _ 4 protest _ VERB VB _ 0 root _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 this _ PRON DT _ 10 nsubj _ _ 7 does _ AUX VBZ _ 10 aux _ _ 8 n't _ PART RB _ 10 neg _ _ 9 necessarily _ ADV RB _ 10 advmod _ _ 10 mean _ VERB VB _ 4 ccomp _ _ 11 a _ DET DT _ 13 det _ _ 12 fundamental _ ADJ JJ _ 13 amod _ _ 13 change _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 17 case _ _ 15 their _ PRON PRP$ _ 17 nmod:poss _ _ 16 interest-rate _ NOUN NN _ 17 compound _ _ 17 policies _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 experience _ NOUN NN _ 8 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 crash _ NOUN NN _ 3 nmod _ _ 8 suggests _ VERB VBZ _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 Fed _ PROPN NNP _ 12 nsubj _ _ 11 is _ VERB VBZ _ 12 cop _ _ 12 likely _ ADJ JJ _ 8 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 bring _ VERB VB _ 12 xcomp _ _ 15 down _ ADP RP _ 14 advmod _ _ 16 short-term _ ADJ JJ _ 18 amod _ _ 17 interest _ NOUN NN _ 18 compound _ _ 18 rates _ NOUN NNS _ 14 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 effort _ NOUN NN _ 14 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 calm _ VERB JJ _ 21 acl _ _ 24 markets _ NOUN NNS _ 23 dobj _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Anticipating _ VERB VBG _ 9 advcl _ _ 2 the _ DET DT _ 3 det _ _ 3 Fed _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 move _ NOUN NN _ 1 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 money _ NOUN NN _ 8 compound _ _ 8 traders _ NOUN NNS _ 9 nsubj _ _ 9 lowered _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 13 det _ _ 11 key _ ADJ JJ _ 13 amod _ _ 12 interest _ NOUN NN _ 13 compound _ _ 13 rate _ NOUN NN _ 9 dobj _ _ 14 known _ VERB VBN _ 13 acl _ _ 15 as _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 Federal _ PROPN NNP _ 19 compound _ _ 18 Funds _ PROPN NNPS _ 19 compound _ _ 19 rate _ NOUN NN _ 14 nmod _ _ 20 to _ ADP TO _ 22 case _ _ 21 8.625 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 9 nmod _ _ 23 late _ ADV JJ _ 24 advmod _ _ 24 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 25 , _ PUNCT , _ 9 punct _ _ 26 down _ ADV RB _ 9 advmod _ _ 27 from _ ADP IN _ 29 case _ _ 28 8.820 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 26 nmod _ _ 30 the _ DET DT _ 31 det _ _ 31 day _ NOUN NN _ 29 nmod:tmod _ _ 32 before _ ADV RB _ 31 advmod _ _ 33 . _ PUNCT . _ 9 punct _ _ 1 Tiny _ ADJ NNP _ 2 amod _ _ 2 movements _ NOUN NNS _ 24 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 rate _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 is _ VERB VBZ _ 5 acl:relcl _ _ 9 what _ PRON WP _ 11 dobj _ _ 10 banks _ NOUN NNS _ 11 nsubj _ _ 11 charge _ VERB VBP _ 8 ccomp _ _ 12 each _ DET DT _ 11 dobj _ _ 13 other _ ADJ JJ _ 12 amod _ _ 14 for _ ADP IN _ 16 case _ _ 15 overnight _ ADJ JJ _ 16 amod _ _ 16 loans _ NOUN NNS _ 11 nmod _ _ 17 , _ PUNCT , _ 24 punct _ _ 18 are _ VERB VBP _ 24 cop _ _ 19 usually _ ADV RB _ 24 advmod _ _ 20 among _ ADP IN _ 24 case _ _ 21 the _ DET DT _ 24 det _ _ 22 few _ ADJ JJ _ 24 amod _ _ 23 visible _ ADJ JJ _ 24 amod _ _ 24 tracks _ NOUN NNS _ 0 root _ _ 25 that _ PRON IN _ 28 dobj _ _ 26 the _ DET DT _ 27 det _ _ 27 Fed _ PROPN NNP _ 28 nsubj _ _ 28 leaves _ VERB VBZ _ 24 acl:relcl _ _ 29 on _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 monetary _ ADJ JJ _ 32 amod _ _ 32 markets _ NOUN NNS _ 28 nmod _ _ 33 . _ PUNCT . _ 24 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 began _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 decline _ VERB VB _ 4 xcomp _ _ 7 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 8 as _ SCONJ IN _ 14 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 plunge _ NOUN NN _ 14 nsubj _ _ 14 caused _ VERB VBD _ 4 advcl _ _ 15 some _ DET DT _ 16 det _ _ 16 investors _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 reassess _ VERB NN _ 14 xcomp _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 desire _ NOUN NN _ 18 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 invest _ VERB VB _ 20 acl _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.S. _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Treasury _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 5 nsubj _ _ 3 have _ AUX VBP _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 arguing _ VERB VBG _ 0 root _ _ 6 for _ ADP IN _ 7 case _ _ 7 months _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 dollar _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 strength _ NOUN NN _ 13 nsubj _ _ 13 was _ VERB VBD _ 5 ccomp _ _ 14 out _ ADP IN _ 13 advmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 whack _ NOUN VB _ 14 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 economic _ ADJ JJ _ 19 amod _ _ 19 fundamentals _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 13 punct _ _ 21 threatening _ VERB VBG _ 13 xcomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 extinguish _ VERB VB _ 21 xcomp _ _ 24 the _ DET DT _ 26 det _ _ 25 export _ NOUN NN _ 26 compound _ _ 26 boom _ NOUN NN _ 23 dobj _ _ 27 that _ PRON WDT _ 29 nsubj _ _ 28 has _ AUX VBZ _ 29 aux _ _ 29 sustained _ VERB VBN _ 26 acl:relcl _ _ 30 manufacturers _ NOUN NNS _ 29 dobj _ _ 31 for _ ADP IN _ 33 case _ _ 32 several _ ADJ JJ _ 33 amod _ _ 33 years _ NOUN NNS _ 29 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 drop _ NOUN NN _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 now _ ADV RB _ 7 advmod _ _ 6 apparently _ ADV RB _ 7 advmod _ _ 7 convinced _ VERB JJ _ 0 root _ _ 8 foreign _ ADJ JJ _ 9 amod _ _ 9 investors _ NOUN NNS _ 7 dobj _ _ 10 that _ SCONJ IN _ 14 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 Treasury _ PROPN NNP _ 14 nsubj _ _ 13 was _ VERB VBD _ 14 cop _ _ 14 right _ ADJ JJ _ 7 ccomp _ _ 15 about _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 overpriced _ ADJ JJ _ 18 amod _ _ 18 dollar _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 modest _ ADJ JJ _ 3 amod _ _ 3 drop _ NOUN NN _ 18 nsubjpass _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 dollar _ NOUN NN _ 3 nmod _ _ 7 -- _ PUNCT : _ 13 punct _ _ 8 only _ ADV RB _ 11 advmod _ _ 9 a _ DET DT _ 11 det _ _ 10 modest _ ADJ JJ _ 11 amod _ _ 11 one _ NUM CD _ 13 dep _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 mind _ VERB NN _ 3 dep _ _ 14 you _ PRON PRP _ 13 dobj _ _ 15 -- _ PUNCT : _ 13 punct _ _ 16 would _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 welcomed _ VERB VBN _ 0 root _ _ 19 by _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 n't _ PART RB _ 5 neg _ _ 4 the _ DET DT _ 5 det _ _ 5 case _ NOUN NN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 1987 _ NUM CD _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 when _ ADV WRB _ 14 advmod _ _ 10 the _ DET DT _ 11 det _ _ 11 dollar _ NOUN NN _ 14 nsubj _ _ 12 was _ VERB VBD _ 14 cop _ _ 13 so _ ADV RB _ 14 advmod _ _ 14 weak _ ADJ JJ _ 7 acl:relcl _ _ 15 that _ SCONJ IN _ 22 mark _ _ 16 some _ DET DT _ 17 det _ _ 17 economists _ NOUN NNS _ 22 nsubj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 government _ NOUN NN _ 20 compound _ _ 20 officials _ NOUN NNS _ 17 conj _ _ 21 seriously _ ADV RB _ 22 advmod _ _ 22 worried _ VERB VBD _ 14 ccomp _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 it _ PRON PRP _ 26 nsubj _ _ 25 might _ AUX MD _ 26 aux _ _ 26 collapse _ VERB VB _ 22 ccomp _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 producing _ VERB VBG _ 26 ccomp _ _ 29 panic _ NOUN NN _ 28 dobj _ _ 30 among _ ADP IN _ 32 case _ _ 31 foreign _ ADJ JJ _ 32 amod _ _ 32 investors _ NOUN NNS _ 29 nmod _ _ 33 and _ CONJ CC _ 28 cc _ _ 34 diminishing _ VERB VBG _ 28 conj _ _ 35 the _ DET DT _ 36 det _ _ 36 flow _ NOUN NN _ 34 dobj _ _ 37 of _ ADP IN _ 39 case _ _ 38 foreign _ ADJ JJ _ 39 amod _ _ 39 capital _ NOUN NN _ 36 nmod _ _ 40 to _ ADP TO _ 42 case _ _ 41 the _ DET DT _ 42 det _ _ 42 U.S. _ PROPN NNP _ 36 nmod _ _ 43 . _ PUNCT . _ 5 punct _ _ 1 Another _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 difference _ NOUN NN _ 11 nsubj _ _ 4 between _ ADP IN _ 5 case _ _ 5 1987 _ NUM CD _ 3 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 1989 _ NUM CD _ 5 conj _ _ 8 is _ VERB VBZ _ 11 cop _ _ 9 n't _ PART RB _ 11 neg _ _ 10 so _ ADV RB _ 11 advmod _ _ 11 comforting _ ADJ JJ _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 10 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 1987 _ NUM CD _ 4 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 economy _ NOUN NN _ 10 nsubj _ _ 10 spurted _ VERB VBD _ 0 root _ _ 11 at _ ADP IN _ 15 case _ _ 12 an _ DET DT _ 15 det _ _ 13 inflation-adjusted _ ADJ JJ _ 15 amod _ _ 14 annual _ ADJ JJ _ 15 amod _ _ 15 rate _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 5.3 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 consensus _ NOUN NN _ 5 nsubj _ _ 3 among _ ADP IN _ 4 case _ _ 4 economists _ NOUN NNS _ 2 nmod _ _ 5 is _ VERB VBZ _ 0 root _ _ 6 that _ SCONJ IN _ 8 mark _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 grew _ VERB VBD _ 5 ccomp _ _ 9 a _ DET DT _ 14 det _ _ 10 much _ ADV RB _ 12 advmod _ _ 11 more _ ADV RBR _ 12 advmod _ _ 12 sluggish _ ADJ JJ _ 14 amod _ _ 13 2.3 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 8 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 third _ ADJ JJ _ 18 amod _ _ 18 quarter _ NOUN NN _ 8 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 1989 _ NUM CD _ 18 nmod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 ended _ VERB VBD _ 18 acl:relcl _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 weeks _ NOUN NNS _ 26 nmod:npmod _ _ 26 ago _ ADV RB _ 23 advmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plunge _ NOUN NN _ 8 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 prices _ NOUN NNS _ 2 nmod _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 happening _ VERB VBG _ 21 ccomp _ _ 9 at _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 time _ NOUN NN _ 8 nmod _ _ 12 when _ ADV WRB _ 17 advmod _ _ 13 the _ DET DT _ 14 det _ _ 14 economy _ NOUN NN _ 17 nsubj _ _ 15 has _ AUX VBZ _ 17 aux _ _ 16 already _ ADV RB _ 17 advmod _ _ 17 slowed _ VERB VBN _ 11 acl:relcl _ _ 18 down _ ADP RP _ 17 compound:prt _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 economist _ NOUN NN _ 24 compound _ _ 23 Lawrence _ PROPN NNP _ 24 compound _ _ 24 Chimerine _ PROPN NNP _ 21 nsubj _ _ 25 of _ ADP IN _ 27 case _ _ 26 WEFA _ PROPN NNP _ 27 compound _ _ 27 Group _ PROPN NNP _ 24 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 a _ DET DT _ 36 det _ _ 30 Bala _ PROPN NNP _ 36 dep _ _ 31 Cynwyd _ PROPN NNP _ 30 compound _ _ 32 , _ PUNCT , _ 30 punct _ _ 33 Pa. _ PROPN NNP _ 30 dep _ _ 34 , _ PUNCT , _ 30 punct _ _ 35 forecasting _ NOUN VBG _ 36 compound _ _ 36 company _ NOUN NN _ 27 appos _ _ 37 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 A _ DET DT _ 3 det _ _ 3 lot _ NOUN NN _ 8 nsubjpass _ _ 4 of _ ADP IN _ 6 case _ _ 5 pent-up _ ADJ JJ _ 6 amod _ _ 6 demand _ NOUN NN _ 3 nmod _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 gone _ VERB VBN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 1 Consumer _ NOUN NN _ 2 compound _ _ 2 spending _ NOUN NN _ 4 nsubj _ _ 3 did _ AUX VBD _ 4 aux _ _ 4 drop _ VERB VB _ 26 ccomp _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 months _ NOUN NNS _ 4 nmod _ _ 8 following _ VERB VBG _ 10 case _ _ 9 Black _ PROPN NNP _ 10 compound _ _ 10 Monday _ PROPN NNP _ 7 nmod _ _ 11 1987 _ NUM CD _ 10 nummod _ _ 12 -- _ PUNCT : _ 17 punct _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 but _ CONJ CC _ 17 cc _ _ 15 only _ ADV RB _ 16 advmod _ _ 16 slightly _ ADV RB _ 17 advmod _ _ 17 and _ CONJ CC _ 4 dep _ _ 18 for _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 short _ ADJ JJ _ 21 amod _ _ 21 period _ NOUN NN _ 17 conj _ _ 22 of _ ADP IN _ 23 case _ _ 23 time _ NOUN NN _ 21 nmod _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 '' _ PUNCT '' _ 26 punct _ _ 26 recalls _ VERB VBZ _ 0 root _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Zarnowitz _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 a _ DET DT _ 32 det _ _ 31 longtime _ ADJ JJ _ 32 amod _ _ 32 student _ NOUN NN _ 28 appos _ _ 33 of _ ADP IN _ 35 case _ _ 34 business _ NOUN NN _ 35 compound _ _ 35 cycles _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 26 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 That _ PRON DT _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 offset _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 6 case _ _ 6 strength _ NOUN NN _ 4 nmod _ _ 7 elsewhere _ ADV RB _ 6 advmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 -LCB- _ PUNCT -LRB- _ 8 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 effects _ NOUN NNS _ 8 nsubj _ _ 4 -RCB- _ PUNCT -RRB- _ 8 punct _ _ 5 were _ VERB VBD _ 8 cop _ _ 6 much _ ADV RB _ 7 advmod _ _ 7 less _ ADV RBR _ 8 advmod _ _ 8 severe _ ADJ JJ _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 less _ ADV RBR _ 11 advmod _ _ 11 prolonged _ ADJ JJ _ 8 conj _ _ 12 than _ SCONJ IN _ 15 mark _ _ 13 some _ DET DT _ 15 nsubj _ _ 14 had _ AUX VBD _ 15 aux _ _ 15 feared _ VERB VBN _ 8 ccomp _ _ 16 or _ CONJ CC _ 15 cc _ _ 17 expected _ VERB VBN _ 15 conj _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 '' _ PUNCT '' _ 14 punct _ _ 2 Today _ NOUN NN _ 14 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 frets _ VERB VBZ _ 14 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 exports _ NOUN NNS _ 14 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 business _ NOUN NN _ 11 compound _ _ 10 investment _ NOUN NN _ 11 compound _ _ 11 spending _ NOUN NN _ 7 conj _ _ 12 may _ AUX MD _ 14 aux _ _ 13 be _ VERB VB _ 14 cop _ _ 14 insufficient _ ADJ JJ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 pick _ VERB VB _ 14 xcomp _ _ 17 up _ ADP RP _ 16 compound:prt _ _ 18 the _ DET DT _ 19 det _ _ 19 slack _ ADJ NN _ 16 dobj _ _ 20 if _ SCONJ IN _ 23 mark _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 prices _ NOUN NNS _ 23 nsubj _ _ 23 sink _ VERB VBP _ 14 advcl _ _ 24 this _ DET DT _ 25 det _ _ 25 week _ NOUN NN _ 23 nmod:tmod _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 if _ SCONJ IN _ 29 mark _ _ 28 consumers _ NOUN NNS _ 29 nsubj _ _ 29 retrench _ VERB VBP _ 23 conj _ _ 30 in _ ADP IN _ 31 case _ _ 31 reaction _ NOUN NN _ 29 nmod _ _ 32 . _ PUNCT . _ 14 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 more _ ADJ JJR _ 11 advcl _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 corporate _ ADJ JJ _ 8 amod _ _ 7 borrowing _ NOUN NN _ 8 compound _ _ 8 binge _ NOUN NN _ 11 nsubj _ _ 9 has _ AUX VBZ _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 abated _ VERB VBN _ 0 root _ _ 12 in _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 past _ ADJ JJ _ 16 amod _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 had _ VERB VBD _ 27 ccomp _ _ 5 two _ NUM CD _ 7 nummod _ _ 6 more _ ADJ JJR _ 7 amod _ _ 7 years _ NOUN NNS _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 significant _ ADJ JJ _ 10 amod _ _ 10 accumulation _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 debt _ NOUN NN _ 10 nmod _ _ 13 ... _ PUNCT : _ 4 punct _ _ 14 just _ ADV RB _ 17 advmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 time _ NOUN NN _ 4 nmod _ _ 18 when _ ADV WRB _ 22 advmod _ _ 19 earnings _ NOUN NNS _ 22 nsubjpass _ _ 20 are _ AUX VBP _ 22 aux _ _ 21 being _ AUX VBG _ 22 auxpass _ _ 22 squeezed _ VERB VBN _ 17 acl:relcl _ _ 23 , _ PUNCT , _ 27 punct _ _ 24 '' _ PUNCT '' _ 27 punct _ _ 25 Mr. _ PROPN NNP _ 26 compound _ _ 26 Chimerine _ PROPN NNP _ 27 nsubj _ _ 27 notes _ VERB NNS _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 more _ ADV JJR _ 5 dep _ _ 3 a _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 relies _ VERB VBZ _ 13 dep _ _ 6 on _ ADP IN _ 8 case _ _ 7 borrowed _ VERB VBN _ 8 amod _ _ 8 money _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 greater _ ADJ JJR _ 13 dep _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 sensitivity _ NOUN NN _ 0 root _ _ 14 to _ ADP TO _ 17 case _ _ 15 an _ DET DT _ 17 det _ _ 16 economic _ ADJ JJ _ 17 amod _ _ 17 slowdown _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 9 nsubj _ _ 3 with _ ADP IN _ 7 case _ _ 4 a _ DET DT _ 7 det _ _ 5 strong _ ADJ JJ _ 7 amod _ _ 6 balance _ NOUN NN _ 7 compound _ _ 7 sheet _ NOUN NN _ 2 nmod _ _ 8 can _ AUX MD _ 9 aux _ _ 9 withstand _ VERB VB _ 0 root _ _ 10 an _ DET DT _ 12 det _ _ 11 unanticipated _ ADJ JJ _ 12 amod _ _ 12 storm _ NOUN NN _ 9 dobj _ _ 13 ; _ PUNCT : _ 9 punct _ _ 14 a _ DET DT _ 17 det _ _ 15 highly _ ADV RB _ 16 advmod _ _ 16 leveraged _ ADJ JJ _ 17 amod _ _ 17 company _ NOUN NN _ 19 nsubj _ _ 18 may _ AUX MD _ 19 aux _ _ 19 end _ VERB VB _ 9 parataxis _ _ 20 up _ ADP RP _ 19 compound:prt _ _ 21 in _ ADP IN _ 23 case _ _ 22 bankruptcy _ NOUN NN _ 23 compound _ _ 23 court _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Fed _ PROPN NNP _ 7 nsubj _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 of _ ADP IN _ 5 case _ _ 5 course _ NOUN NN _ 7 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 knows _ VERB VBZ _ 0 root _ _ 8 that _ PRON IN _ 7 dobj _ _ 9 very _ ADV RB _ 10 advmod _ _ 10 well _ ADV RB _ 7 advmod _ _ 11 -- _ PUNCT : _ 7 punct _ _ 12 hence _ ADV RB _ 7 dep _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 readiness _ NOUN NN _ 7 dep _ _ 15 to _ PART TO _ 16 mark _ _ 16 pump _ VERB VB _ 14 acl _ _ 17 credit _ NOUN NN _ 16 dobj _ _ 18 into _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 economy _ NOUN NN _ 16 nmod _ _ 21 this _ DET DT _ 22 det _ _ 22 morning _ NOUN NN _ 16 nmod:tmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 process _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Fed _ PROPN NNP _ 9 nsubj _ _ 9 risks _ VERB NNS _ 0 root _ _ 10 reigniting _ VERB VBG _ 9 xcomp _ _ 11 inflation _ NOUN NN _ 10 dobj _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Even _ ADV RB _ 5 advmod _ _ 2 before _ ADP IN _ 5 case _ _ 3 Friday _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 events _ NOUN NNS _ 13 nmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 Harvard _ PROPN NNP _ 11 compound _ _ 8 University _ PROPN NNP _ 11 compound _ _ 9 economist _ NOUN NN _ 11 compound _ _ 10 Benjamin _ PROPN NNP _ 11 compound _ _ 11 Friedman _ PROPN NNP _ 13 nsubj _ _ 12 was _ AUX VBD _ 13 aux _ _ 13 arguing _ VERB VBG _ 0 root _ _ 14 that _ SCONJ IN _ 20 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 Fed _ PROPN NNP _ 20 nsubj _ _ 17 wo _ AUX MD _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 be _ VERB VB _ 20 cop _ _ 20 able _ ADJ JJ _ 13 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 live _ VERB VB _ 20 xcomp _ _ 23 up _ ADP RP _ 22 compound:prt _ _ 24 to _ ADP TO _ 27 case _ _ 25 its _ PRON PRP$ _ 27 nmod:poss _ _ 26 tough _ ADJ JJ _ 27 amod _ _ 27 words _ NOUN NNS _ 22 nmod _ _ 28 on _ SCONJ IN _ 29 mark _ _ 29 eliminating _ VERB VBG _ 27 acl _ _ 30 inflation _ NOUN NN _ 29 dobj _ _ 31 because _ ADP IN _ 34 case _ _ 32 of _ ADP IN _ 31 mwe _ _ 33 its _ PRON PRP$ _ 34 nmod:poss _ _ 34 responsibility _ NOUN NN _ 22 nmod _ _ 35 to _ PART TO _ 36 mark _ _ 36 protect _ VERB VB _ 34 acl _ _ 37 fragile _ ADJ JJ _ 39 amod _ _ 38 financial _ ADJ JJ _ 39 amod _ _ 39 markets _ NOUN NNS _ 36 dobj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 banks _ NOUN NNS _ 39 conj _ _ 42 and _ CONJ CC _ 39 cc _ _ 43 highly _ ADV RB _ 44 advmod _ _ 44 leveraged _ ADJ JJ _ 45 amod _ _ 45 corporations _ NOUN NNS _ 39 conj _ _ 46 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 biggest _ ADJ JJS _ 3 amod _ _ 3 threat _ NOUN NN _ 12 nsubj _ _ 4 on _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 economic _ ADJ JJ _ 7 amod _ _ 7 horizon _ NOUN NN _ 3 nmod _ _ 8 right _ ADV RB _ 9 advmod _ _ 9 now _ ADV RB _ 3 advmod _ _ 10 is _ VERB VBZ _ 12 cop _ _ 11 n't _ PART RB _ 12 neg _ _ 12 recession _ NOUN NN _ 15 ccomp _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 reasons _ VERB VBZ _ 0 root _ _ 16 ; _ PUNCT : _ 15 punct _ _ 17 it _ PRON PRP _ 20 nsubj _ _ 18 's _ VERB VBZ _ 20 cop _ _ 19 an _ DET DT _ 20 det _ _ 20 outbreak _ NOUN NN _ 15 parataxis _ _ 21 of _ ADP IN _ 23 case _ _ 22 uncontrolled _ ADJ JJ _ 23 amod _ _ 23 inflation _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 end _ NOUN NN _ 14 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 collapse _ NOUN NN _ 8 nsubj _ _ 8 suggested _ VERB VBD _ 14 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 14 nsubj _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 move _ VERB VB _ 0 root _ _ 15 in _ ADP IN _ 16 case _ _ 16 lockstep _ NOUN NN _ 14 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 stock _ NOUN NN _ 19 compound _ _ 19 prices _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 economy _ NOUN NN _ 7 nsubj _ _ 3 does _ AUX VBZ _ 7 aux _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 depend _ VERB VB _ 0 root _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 confidence _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 businesses _ NOUN NNS _ 10 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 consumers _ NOUN NNS _ 12 conj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 foreign _ ADJ JJ _ 17 amod _ _ 17 investors _ NOUN NNS _ 12 conj _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 panic _ NOUN NN _ 9 nsubj _ _ 3 on _ ADP IN _ 5 case _ _ 4 Wall _ PROPN NNP _ 5 compound _ _ 5 Street _ PROPN NNP _ 2 nmod _ _ 6 does _ AUX VBZ _ 9 aux _ _ 7 n't _ PART RB _ 9 neg _ _ 8 exactly _ ADV RB _ 9 advmod _ _ 9 inspire _ VERB VB _ 0 root _ _ 10 confidence _ NOUN NN _ 9 dobj _ _ 11 . _ PUNCT . _ 9 punct _ _ 1 Surveys _ NOUN NNS _ 2 nsubj _ _ 2 suggested _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 7 mark _ _ 4 consumer _ NOUN NN _ 5 compound _ _ 5 confidence _ NOUN NN _ 7 nsubj _ _ 6 was _ VERB VBD _ 7 cop _ _ 7 high _ ADJ JJ _ 2 ccomp _ _ 8 before _ ADP IN _ 9 case _ _ 9 Friday _ PROPN NNP _ 7 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 190-point _ ADJ JJ _ 3 amod _ _ 3 drop _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 n't _ PART RB _ 6 neg _ _ 6 likely _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 make _ VERB VB _ 6 xcomp _ _ 9 much _ ADJ JJ _ 8 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 dent _ NOUN NN _ 9 nmod _ _ 13 ; _ PUNCT : _ 6 punct _ _ 14 multiply _ VERB VB _ 6 parataxis _ _ 15 that _ ADP IN _ 14 dobj _ _ 16 a _ DET DT _ 18 det _ _ 17 few _ ADJ JJ _ 18 amod _ _ 18 times _ NOUN NNS _ 19 nmod:npmod _ _ 19 over _ ADV IN _ 14 advmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 though _ ADV IN _ 14 advmod _ _ 22 , _ PUNCT , _ 14 punct _ _ 23 and _ CONJ CC _ 14 cc _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 will _ AUX MD _ 14 conj _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 If _ SCONJ IN _ 20 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 reactions _ NOUN NNS _ 20 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 executives _ NOUN NNS _ 3 nmod _ _ 6 gathered _ VERB VBN _ 5 acl _ _ 7 Saturday _ PROPN NNP _ 6 nmod:tmod _ _ 8 at _ ADP IN _ 10 case _ _ 9 Hot _ PROPN NNP _ 10 compound _ _ 10 Springs _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Va. _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 for _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 Business _ PROPN NNP _ 18 compound _ _ 17 Council _ PROPN NNP _ 18 compound _ _ 18 meetings _ NOUN NNS _ 6 nmod _ _ 19 are _ VERB VBP _ 20 cop _ _ 20 typical _ ADJ JJ _ 27 advcl _ _ 21 , _ PUNCT , _ 27 punct _ _ 22 business _ NOUN NN _ 23 compound _ _ 23 leaders _ NOUN NNS _ 27 nsubjpass _ _ 24 were _ AUX VBD _ 27 auxpass _ _ 25 n't _ PART RB _ 27 neg _ _ 26 overly _ ADV RB _ 27 advmod _ _ 27 rattled _ VERB VBN _ 0 root _ _ 28 by _ ADP IN _ 31 case _ _ 29 Friday _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 decline _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 27 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 if _ SCONJ IN _ 5 mark _ _ 3 foreign _ ADJ JJ _ 4 amod _ _ 4 investors _ NOUN NNS _ 5 nsubj _ _ 5 become _ VERB VBP _ 18 advcl _ _ 6 a _ DET DT _ 7 det _ _ 7 tad _ NOUN NN _ 8 nmod:npmod _ _ 8 more _ ADV RBR _ 9 advmod _ _ 9 cautious _ ADJ JJ _ 5 xcomp _ _ 10 -- _ PUNCT : _ 18 punct _ _ 11 well _ ADV RB _ 18 advmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 dollar _ NOUN NN _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 recent _ ADJ JJ _ 17 amod _ _ 17 strength _ NOUN NN _ 18 nsubj _ _ 18 suggests _ VERB VBZ _ 0 root _ _ 19 that _ SCONJ IN _ 23 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 23 nsubj _ _ 22 can _ AUX MD _ 23 aux _ _ 23 stand _ VERB VB _ 18 ccomp _ _ 24 it _ PRON PRP _ 23 dobj _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 bottom _ ADJ JJ _ 4 amod _ _ 4 line _ NOUN NN _ 14 nmod _ _ 5 , _ PUNCT , _ 14 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 most _ ADV RBS _ 8 advmod _ _ 8 comforting _ ADJ JJ _ 9 amod _ _ 9 fact _ NOUN NN _ 14 nsubj _ _ 10 for _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 economic _ ADJ JJ _ 13 amod _ _ 13 outlook _ NOUN NN _ 9 nmod _ _ 14 is _ VERB VBZ _ 0 root _ _ 15 that _ SCONJ IN _ 20 mark _ _ 16 we _ PRON PRP _ 20 nsubj _ _ 17 've _ AUX VBP _ 20 aux _ _ 18 been _ VERB VBN _ 20 cop _ _ 19 through _ ADP IN _ 20 case _ _ 20 this _ PRON DT _ 14 ccomp _ _ 21 before _ ADV IN _ 20 advmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 14 advmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 about _ ADV IN _ 8 advmod _ _ 6 the _ DET DT _ 8 det _ _ 7 only _ ADJ JJ _ 8 amod _ _ 8 point _ NOUN NN _ 14 nsubj _ _ 9 of _ ADP IN _ 10 case _ _ 10 comparison _ NOUN NN _ 8 nmod _ _ 11 was _ VERB VBD _ 14 cop _ _ 12 the _ DET DT _ 14 det _ _ 13 1929 _ NUM CD _ 14 nummod _ _ 14 crash _ NOUN NN _ 0 root _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 the _ DET DT _ 18 det _ _ 17 subsequent _ ADJ JJ _ 18 amod _ _ 18 Depression _ NOUN NN _ 14 conj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 doomsayers _ NOUN NNS _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 receptive _ ADJ JJ _ 6 amod _ _ 6 audience _ NOUN NN _ 3 dobj _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 prosperity _ NOUN NN _ 7 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 followed _ VERB VBD _ 2 acl:relcl _ _ 5 Black _ PROPN NNP _ 6 compound _ _ 6 Monday _ PROPN NNP _ 4 nmod:tmod _ _ 7 permits _ VERB VBZ _ 0 root _ _ 8 a _ DET DT _ 11 det _ _ 9 more _ ADV RBR _ 10 advmod _ _ 10 optimistic _ ADJ JJ _ 11 amod _ _ 11 view _ NOUN NN _ 7 dobj _ _ 12 today _ NOUN NN _ 7 nmod:tmod _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 very _ ADV RB _ 4 advmod _ _ 4 least _ ADJ JJS _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 establishment _ NOUN NN _ 10 nsubj _ _ 8 here _ ADV RB _ 7 advmod _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 taking _ VERB VBG _ 0 root _ _ 11 comfort _ NOUN NN _ 10 dobj _ _ 12 from _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 14 det _ _ 14 nation _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 success _ NOUN NN _ 10 nmod _ _ 17 in _ SCONJ IN _ 18 mark _ _ 18 handling _ VERB VBG _ 16 acl _ _ 19 the _ DET DT _ 21 det _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 go-around _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 As _ SCONJ IN _ 10 mark _ _ 2 Sen. _ PROPN NNP _ 4 compound _ _ 3 Lloyd _ PROPN NNP _ 4 compound _ _ 4 Bentsen _ PROPN NNP _ 10 nsubj _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 D. _ PROPN NNP _ 4 appos _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Texas _ PROPN NNP _ 6 dep _ _ 9 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 10 observed _ VERB VBN _ 16 advcl _ _ 11 yesterday _ NOUN NN _ 10 nmod:tmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 `` _ PUNCT `` _ 16 punct _ _ 14 The _ DET DT _ 15 det _ _ 15 Fed _ PROPN NNP _ 16 nsubj _ _ 16 avoided _ VERB VBD _ 0 root _ _ 17 a _ DET DT _ 18 det _ _ 18 meltdown _ ADJ NN _ 16 dobj _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 time _ NOUN NN _ 16 nmod:tmod _ _ 21 . _ PUNCT . _ 16 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 are _ VERB VBP _ 4 cop _ _ 3 more _ ADV RBR _ 4 advmod _ _ 4 sophisticated _ ADJ JJ _ 0 root _ _ 5 this _ DET DT _ 6 det _ _ 6 time _ NOUN NN _ 4 nmod:tmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 chemical _ NOUN NN _ 3 compound _ _ 3 industry _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 profits _ NOUN NNS _ 10 nsubj _ _ 10 eroded _ VERB VBN _ 7 ccomp _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 10 nmod _ _ 15 because _ ADP IN _ 18 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 skidding _ VERB VBG _ 18 amod _ _ 18 prices _ NOUN NNS _ 10 nmod _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 commodity _ NOUN NN _ 22 compound _ _ 22 end _ NOUN NN _ 18 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 business _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Producers _ NOUN NNS _ 18 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 commodity _ NOUN NN _ 4 compound _ _ 4 chemicals _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 basic _ ADJ JJ _ 8 amod _ _ 8 chemicals _ NOUN NNS _ 4 appos _ _ 9 produced _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 12 case _ _ 11 huge _ ADJ JJ _ 12 amod _ _ 12 volumes _ NOUN NNS _ 9 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 manufacturers _ NOUN NNS _ 9 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 have _ AUX VBP _ 18 aux _ _ 18 seen _ VERB VBN _ 0 root _ _ 19 sharp _ ADJ JJ _ 21 amod _ _ 20 inventory _ NOUN NN _ 21 compound _ _ 21 cutting _ NOUN VBG _ 18 dobj _ _ 22 by _ ADP IN _ 23 case _ _ 23 buyers _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 Once _ ADV RB _ 4 advmod _ _ 2 the _ DET DT _ 4 det _ _ 3 chief _ ADJ JJ _ 4 amod _ _ 4 beneficiaries _ NOUN NNS _ 18 ccomp _ _ 5 of _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 7 det _ _ 7 industry _ NOUN NN _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 now _ ADV RB _ 10 advmod _ _ 10 fading _ VERB JJ _ 11 amod _ _ 11 boom _ NOUN NN _ 4 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 these _ DET DT _ 14 det _ _ 14 producers _ NOUN NNS _ 18 nsubj _ _ 15 also _ ADV RB _ 18 advmod _ _ 16 will _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 aux _ _ 18 reporting _ VERB VBG _ 0 root _ _ 19 against _ ADP IN _ 22 case _ _ 20 exceptionally _ ADV RB _ 21 advmod _ _ 21 strong _ ADJ JJ _ 22 amod _ _ 22 performances _ NOUN NNS _ 18 nmod _ _ 23 in _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 1988 _ NUM CD _ 27 nummod _ _ 26 third _ ADJ JJ _ 27 amod _ _ 27 quarter _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 For _ ADP IN _ 3 case _ _ 3 some _ DET DT _ 13 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 these _ DET DT _ 6 det _ _ 6 companies _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 this _ PRON DT _ 13 nsubj _ _ 9 will _ AUX MD _ 13 aux _ _ 10 be _ VERB VB _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 first _ ADJ JJ _ 13 amod _ _ 13 quarter _ NOUN NN _ 20 ccomp _ _ 14 with _ ADP IN _ 17 case _ _ 15 year-to-year _ ADJ JJ _ 17 amod _ _ 16 negative _ ADJ JJ _ 17 amod _ _ 17 comparisons _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 Leonard _ PROPN NNP _ 22 compound _ _ 22 Bogner _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 a _ DET DT _ 27 det _ _ 25 chemical _ NOUN NN _ 27 compound _ _ 26 industry _ NOUN NN _ 27 compound _ _ 27 analyst _ NOUN NN _ 22 appos _ _ 28 at _ ADP IN _ 31 case _ _ 29 Prudential _ PROPN NNP _ 31 compound _ _ 30 Bache _ PROPN NNP _ 31 compound _ _ 31 Research _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 could _ AUX MD _ 6 aux _ _ 4 be _ VERB VB _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 first _ ADJ JJ _ 0 root _ _ 7 of _ ADP IN _ 12 case _ _ 8 five _ NUM CD _ 12 nummod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 six _ NUM CD _ 8 conj _ _ 11 down _ ADJ IN _ 12 amod _ _ 12 quarters _ NOUN NNS _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 14 '' _ PUNCT '' _ 6 punct _ _ 1 Perhaps _ ADV RB _ 3 advmod _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 prominent _ ADJ JJ _ 22 ccomp _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 Dow _ PROPN NNP _ 7 compound _ _ 6 Chemical _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 22 nsubjpass _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 14 nsubj _ _ 10 as _ ADP IN _ 12 case _ _ 11 of _ ADP IN _ 12 case _ _ 12 midyear _ NOUN NN _ 14 nmod _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 racked _ VERB VBN _ 7 acl:relcl _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 eight _ NUM CD _ 19 nummod _ _ 17 consecutive _ ADJ JJ _ 19 amod _ _ 18 record _ ADJ NN _ 19 amod _ _ 19 quarters _ NOUN NNS _ 14 dobj _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 is _ AUX VBZ _ 22 auxpass _ _ 22 expected _ VERB VBN _ 0 root _ _ 23 to _ PART TO _ 24 mark _ _ 24 report _ VERB VB _ 22 xcomp _ _ 25 that _ DET DT _ 27 mark _ _ 26 profit _ NOUN NN _ 27 nsubj _ _ 27 decreased _ VERB VBD _ 24 ccomp _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 latest _ ADJ JJS _ 31 amod _ _ 31 quarter _ NOUN NN _ 27 nmod _ _ 32 from _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 34 det _ _ 34 year _ NOUN NN _ 35 nmod:npmod _ _ 35 earlier _ ADV RBR _ 27 advcl _ _ 36 , _ PUNCT , _ 27 punct _ _ 37 if _ SCONJ IN _ 41 mark _ _ 38 only _ ADV RB _ 41 advmod _ _ 39 by _ ADP IN _ 41 case _ _ 40 a _ DET DT _ 41 det _ _ 41 shade _ NOUN NN _ 27 advcl _ _ 42 . _ PUNCT . _ 22 punct _ _ 1 Though _ SCONJ IN _ 5 mark _ _ 2 Dow _ PROPN NNP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 aggressively _ ADV RB _ 5 advmod _ _ 5 diversified _ VERB VBN _ 15 advcl _ _ 6 into _ ADP IN _ 8 case _ _ 7 specialty _ NOUN NN _ 8 compound _ _ 8 chemicals _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 pharmaceuticals _ NOUN NNS _ 8 conj _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 company _ NOUN NN _ 15 nsubj _ _ 14 still _ ADV RB _ 15 advmod _ _ 15 has _ VERB VBZ _ 0 root _ _ 16 a _ DET DT _ 18 det _ _ 17 big _ ADJ JJ _ 18 amod _ _ 18 stake _ NOUN NN _ 15 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 polyethylene _ NOUN NN _ 18 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 which _ PRON WDT _ 24 nsubjpass _ _ 23 is _ AUX VBZ _ 24 auxpass _ _ 24 used _ VERB VBN _ 20 acl:relcl _ _ 25 in _ ADP IN _ 26 case _ _ 26 packaging _ NOUN NN _ 24 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 housewares _ NOUN NNS _ 26 conj _ _ 29 . _ PUNCT . _ 15 punct _ _ 1 Analysts _ NOUN NNS _ 4 nmod:poss _ _ 2 ' _ PART POS _ 1 case _ _ 3 third-quarter _ ADJ JJ _ 4 amod _ _ 4 estimates _ NOUN NNS _ 15 nsubj _ _ 5 for _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 11 det _ _ 7 Midland _ PROPN NNP _ 11 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Mich. _ PROPN NNP _ 7 dep _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 company _ NOUN NN _ 4 nmod _ _ 12 are _ VERB VBP _ 15 cop _ _ 13 between _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 3.20 _ NUM CD _ 0 root _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 3.30 _ NUM CD _ 15 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 compared _ VERB VBN _ 27 case _ _ 25 with _ ADP IN _ 27 case _ _ 26 $ _ SYM $ _ 27 dep _ _ 27 3.36 _ NUM CD _ 15 advcl _ _ 28 a _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 30 nmod:npmod _ _ 30 ago _ ADV RB _ 27 advmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 when _ ADV WRB _ 35 advmod _ _ 33 profit _ NOUN NN _ 35 nsubj _ _ 34 was _ VERB VBD _ 35 cop _ _ 35 $ _ SYM $ _ 30 advcl _ _ 36 632 _ NUM CD _ 37 compound _ _ 37 million _ NUM CD _ 35 nummod _ _ 38 on _ ADP IN _ 39 case _ _ 39 sales _ NOUN NNS _ 35 nmod _ _ 40 of _ ADP IN _ 41 case _ _ 41 $ _ SYM $ _ 39 nmod _ _ 42 4.15 _ NUM CD _ 43 compound _ _ 43 billion _ NUM CD _ 41 nummod _ _ 44 . _ PUNCT . _ 15 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Dow _ PROPN NNP _ 3 compound _ _ 3 spokeswoman _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 comment _ VERB VB _ 4 xcomp _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 estimates _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 investment _ NOUN NN _ 4 compound _ _ 4 firm _ NOUN NN _ 18 nmod _ _ 5 of _ ADP IN _ 10 case _ _ 6 Smith _ PROPN NNP _ 10 compound _ _ 7 Barney _ PROPN NNP _ 10 compound _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 Harris _ PROPN NNP _ 10 conj _ _ 10 Upham _ PROPN NNP _ 4 nmod _ _ 11 & _ CONJ CC _ 10 cc _ _ 12 Co. _ PROPN NNP _ 10 conj _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 commodity-chemical _ ADJ JJ _ 16 amod _ _ 16 segment _ NOUN NN _ 18 nsubjpass _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 seen _ VERB VBN _ 0 root _ _ 19 pulling _ VERB VBG _ 18 xcomp _ _ 20 down _ ADP RP _ 19 advmod _ _ 21 overall _ ADJ JJ _ 22 amod _ _ 22 profit _ NOUN NN _ 19 dobj _ _ 23 for _ ADP IN _ 25 case _ _ 24 20 _ NUM CD _ 25 nummod _ _ 25 companies _ NOUN NNS _ 22 nmod _ _ 26 representative _ ADJ NN _ 25 amod _ _ 27 of _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 whole _ ADJ JJ _ 30 amod _ _ 30 industry _ NOUN NN _ 26 nmod _ _ 31 by _ ADP IN _ 36 case _ _ 32 8 _ NUM CD _ 36 compound _ _ 33 % _ SYM NN _ 36 dep _ _ 34 to _ ADP TO _ 36 dep _ _ 35 10 _ NUM CD _ 36 compound _ _ 36 % _ SYM NN _ 19 nmod _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 You _ PRON PRP _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 find _ VERB VB _ 23 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 commodities _ NOUN NNS _ 7 dep _ _ 7 off _ ADV IN _ 4 xcomp _ _ 8 more _ ADV JJR _ 7 advmod _ _ 9 than _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 others _ NOUN NNS _ 8 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 diversified _ ADJ JJ _ 15 amod _ _ 15 companies _ NOUN NNS _ 17 dep _ _ 16 about _ ADV IN _ 17 advmod _ _ 17 even _ ADJ RB _ 7 conj _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 slightly _ ADV RB _ 20 advmod _ _ 20 better _ ADJ JJR _ 17 conj _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 James _ PROPN NNP _ 25 compound _ _ 25 Wilbur _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 30 det _ _ 28 Smith _ PROPN NNP _ 30 compound _ _ 29 Barney _ PROPN NNP _ 30 compound _ _ 30 analyst _ NOUN NN _ 25 appos _ _ 31 . _ PUNCT . _ 23 punct _ _ 1 First _ PROPN NNP _ 3 compound _ _ 2 Boston _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 projects _ VERB NNS _ 0 root _ _ 5 that _ SCONJ WDT _ 14 mark _ _ 6 10 _ NUM CD _ 14 nsubj _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 15 _ NUM CD _ 10 nummod _ _ 10 companies _ NOUN NNS _ 6 nmod _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 follows _ VERB VBZ _ 10 acl:relcl _ _ 13 will _ AUX MD _ 14 aux _ _ 14 report _ VERB VB _ 4 ccomp _ _ 15 lower _ ADJ JJR _ 16 amod _ _ 16 profit _ NOUN NN _ 14 dobj _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Most _ ADJ JJS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 10 _ NUM CD _ 1 nmod _ _ 5 have _ VERB VBP _ 0 root _ _ 6 big _ ADJ JJ _ 8 amod _ _ 7 commodity-chemical _ ADJ JJ _ 8 amod _ _ 8 operations _ NOUN NNS _ 5 dobj _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 Still _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 some _ DET DT _ 5 det _ _ 4 industry _ NOUN NN _ 5 compound _ _ 5 giants _ NOUN NNS _ 7 nsubjpass _ _ 6 are _ AUX VBP _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 report _ VERB VB _ 7 xcomp _ _ 10 continuing _ ADJ VBG _ 11 amod _ _ 11 gains _ NOUN NNS _ 9 dobj _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 largely _ ADV RB _ 23 advmod _ _ 14 because _ SCONJ IN _ 23 mark _ _ 15 so _ ADV RB _ 16 advmod _ _ 16 much _ ADJ JJ _ 23 nsubj _ _ 17 of _ ADP IN _ 19 case _ _ 18 their _ PRON PRP$ _ 19 nmod:poss _ _ 19 business _ NOUN NN _ 16 nmod _ _ 20 is _ VERB VBZ _ 23 cop _ _ 21 outside _ ADP JJ _ 23 case _ _ 22 commodity _ NOUN NN _ 23 compound _ _ 23 chemicals _ NOUN NNS _ 7 advcl _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Du _ PROPN NNP _ 3 compound _ _ 2 Pont _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 thought _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 8 mark _ _ 7 have _ AUX VB _ 8 aux _ _ 8 had _ VERB VBN _ 5 xcomp _ _ 9 steady _ ADJ JJ _ 11 amod _ _ 10 profit _ NOUN NN _ 11 compound _ _ 11 growth _ NOUN NN _ 8 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 white _ ADJ JJ _ 14 amod _ _ 14 pigments _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 fibers _ NOUN NNS _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 polymers _ NOUN NNS _ 14 conj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Moreover _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 8 det _ _ 4 Wilmington _ PROPN NNP _ 8 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Del. _ PROPN NNP _ 4 dep _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 company _ NOUN NN _ 10 nsubjpass _ _ 9 is _ AUX VBZ _ 10 auxpass _ _ 10 helped _ VERB VBN _ 0 root _ _ 11 when _ ADV WRB _ 13 advmod _ _ 12 prices _ NOUN NNS _ 13 nsubj _ _ 13 weaken _ VERB VBP _ 10 advcl _ _ 14 on _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 commodity _ NOUN NN _ 17 compound _ _ 17 chemicals _ NOUN NNS _ 13 nmod _ _ 18 it _ PRON PRP _ 19 nsubj _ _ 19 buys _ VERB VBZ _ 17 acl:relcl _ _ 20 for _ ADP IN _ 24 case _ _ 21 its _ PRON PRP$ _ 24 nmod:poss _ _ 22 own _ ADJ JJ _ 24 amod _ _ 23 production _ NOUN NN _ 24 compound _ _ 24 needs _ NOUN NNS _ 19 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 28 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 ethylene _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubjpass _ _ 2 are _ AUX VBP _ 3 auxpass _ _ 3 divided _ VERB VBN _ 0 root _ _ 4 over _ SCONJ IN _ 9 mark _ _ 5 whether _ SCONJ IN _ 9 mark _ _ 6 Du _ PROPN NNP _ 7 compound _ _ 7 Pont _ PROPN NNP _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 report _ VERB VB _ 3 advcl _ _ 10 much _ ADJ RB _ 9 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 gain _ NOUN NN _ 10 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 latest _ ADJ JJS _ 17 amod _ _ 17 quarter _ NOUN NN _ 10 nmod _ _ 18 from _ ADP IN _ 23 case _ _ 19 its _ PRON PRP$ _ 23 nmod:poss _ _ 20 Conoco _ PROPN NNP _ 23 compound _ _ 21 Inc. _ PROPN NNP _ 23 compound _ _ 22 oil _ NOUN NN _ 23 compound _ _ 23 company _ NOUN NN _ 10 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 estimates _ NOUN NNS _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 Du _ PROPN NNP _ 5 compound _ _ 5 Pont _ PROPN NNP _ 2 nmod _ _ 6 range _ NOUN NN _ 0 root _ _ 7 from _ ADP IN _ 11 case _ _ 8 $ _ SYM $ _ 11 dep _ _ 9 2.25 _ NUM CD _ 11 compound _ _ 10 to _ ADP TO _ 11 dep _ _ 11 $ _ SYM $ _ 6 nmod _ _ 12 2.45 _ NUM CD _ 11 nummod _ _ 13 a _ DET DT _ 14 det _ _ 14 share _ NOUN NN _ 11 nmod:npmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 1988 _ NUM CD _ 5 nummod _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 company _ NOUN NN _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 461 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 1.91 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 9 punct _ _ 20 on _ ADP IN _ 21 case _ _ 21 sales _ NOUN NNS _ 9 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 7.99 _ NUM CD _ 25 compound _ _ 25 billion _ NUM CD _ 23 nummod _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 Du _ PROPN NNP _ 2 compound _ _ 2 Pont _ PROPN NNP _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 comment _ VERB VB _ 3 xcomp _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 Monsanto _ PROPN NNP _ 2 compound _ _ 2 Co. _ PROPN NNP _ 7 nsubjpass _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 too _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 continue _ VERB VB _ 7 xcomp _ _ 10 reporting _ VERB VBG _ 9 xcomp _ _ 11 higher _ ADJ JJR _ 12 amod _ _ 12 profit _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 even _ ADV RB _ 22 advmod _ _ 15 though _ SCONJ IN _ 22 mark _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 sales _ NOUN NNS _ 22 nsubjpass _ _ 18 of _ ADP IN _ 20 case _ _ 19 crop _ NOUN NN _ 20 compound _ _ 20 chemicals _ NOUN NNS _ 17 nmod _ _ 21 were _ AUX VBD _ 22 auxpass _ _ 22 hurt _ VERB VBN _ 7 advcl _ _ 23 in _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 latest _ ADJ JJS _ 26 amod _ _ 26 quarter _ NOUN NN _ 22 nmod _ _ 27 by _ ADP IN _ 28 case _ _ 28 drought _ NOUN NN _ 22 nmod _ _ 29 in _ ADP IN _ 31 case _ _ 30 northern _ ADJ JJ _ 31 amod _ _ 31 Europe _ PROPN NNP _ 28 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 the _ DET DT _ 35 det _ _ 34 western _ ADJ JJ _ 35 amod _ _ 35 U.S. _ PROPN NNP _ 31 conj _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 St. _ PROPN NNP _ 3 amod _ _ 3 Louis-based _ ADJ JJ _ 4 amod _ _ 4 company _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 that _ SCONJ IN _ 21 mark _ _ 11 losses _ NOUN NNS _ 21 nsubj _ _ 12 in _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 G.D. _ PROPN NNP _ 15 compound _ _ 15 Searle _ PROPN NNP _ 11 nmod _ _ 16 & _ CONJ CC _ 15 cc _ _ 17 Co. _ PROPN NNP _ 19 compound _ _ 18 pharmaceutical _ ADJ JJ _ 19 amod _ _ 19 business _ NOUN NN _ 15 conj _ _ 20 are _ AUX VBP _ 21 aux _ _ 21 narrowing _ VERB VBG _ 8 ccomp _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Searle _ PROPN NNP _ 2 nsubj _ _ 2 continued _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 operate _ VERB VB _ 2 xcomp _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 red _ NOUN NN _ 4 nmod _ _ 8 through _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 first _ ADJ JJ _ 11 amod _ _ 11 half _ NOUN NN _ 2 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 but _ CONJ CC _ 2 cc _ _ 17 Monsanto _ PROPN NNP _ 19 nsubj _ _ 18 has _ AUX VBZ _ 19 aux _ _ 19 said _ VERB VBD _ 2 conj _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 expects _ VERB VBZ _ 19 ccomp _ _ 22 Searle _ PROPN NNP _ 21 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 post _ VERB VB _ 21 xcomp _ _ 25 a _ DET DT _ 26 det _ _ 26 profit _ NOUN NN _ 24 dobj _ _ 27 for _ ADP IN _ 28 case _ _ 28 all _ DET DT _ 26 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 1989 _ NUM CD _ 28 nmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 Most _ ADJ JJS _ 2 amod _ _ 2 estimates _ NOUN NNS _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Monsanto _ PROPN NNP _ 2 nmod _ _ 5 run _ VERB VBP _ 0 root _ _ 6 between _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 1.70 _ NUM CD _ 7 nummod _ _ 9 and _ CONJ CC _ 7 cc _ _ 10 $ _ SYM $ _ 7 conj _ _ 11 2 _ NUM CD _ 10 nummod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 7 nmod:npmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 posted _ VERB VBD _ 0 root _ _ 8 third-quarter _ ADJ JJ _ 9 amod _ _ 9 profit _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 116 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.67 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 sales _ NOUN NNS _ 9 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 2.02 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Monsanto _ PROPN NNP _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 comment _ VERB VB _ 2 xcomp _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 commodity-chemical _ ADJ JJ _ 4 amod _ _ 4 producers _ NOUN NNS _ 6 nsubjpass _ _ 5 are _ AUX VBP _ 6 auxpass _ _ 6 caught _ VERB VBN _ 0 root _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 downside _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 pricing _ NOUN NN _ 13 compound _ _ 13 cycle _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 some _ DET DT _ 3 det _ _ 3 accounts _ NOUN NNS _ 18 nmod _ _ 4 on _ ADP IN _ 6 case _ _ 5 Wall _ PROPN NNP _ 6 compound _ _ 6 Street _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 industry _ NOUN NN _ 6 conj _ _ 11 , _ PUNCT , _ 18 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 inventory _ NOUN NN _ 14 compound _ _ 14 reductions _ NOUN NNS _ 18 nsubj _ _ 15 are _ VERB VBP _ 18 cop _ _ 16 near _ ADP IN _ 18 case _ _ 17 an _ DET DT _ 18 det _ _ 18 end _ NOUN NN _ 0 root _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 22 nsubj _ _ 21 may _ AUX MD _ 22 aux _ _ 22 presage _ VERB VB _ 18 ccomp _ _ 23 firmer _ ADJ JJR _ 24 amod _ _ 24 demand _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 doubters _ NOUN NNS _ 3 nsubj _ _ 3 say _ VERB VBP _ 0 root _ _ 4 growing _ VERB VBG _ 6 amod _ _ 5 production _ NOUN NN _ 6 compound _ _ 6 capacity _ NOUN NN _ 8 nsubj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 keep _ VERB VB _ 3 ccomp _ _ 9 pressure _ NOUN NN _ 8 dobj _ _ 10 on _ ADP IN _ 11 case _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 into _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 early _ ADJ JJ _ 15 amod _ _ 15 1990s _ NOUN CD _ 8 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 latest _ ADJ JJS _ 4 amod _ _ 4 quarter _ NOUN NN _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 at _ ADP IN _ 11 advmod _ _ 7 least _ ADJ JJS _ 6 mwe _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 profit _ NOUN NN _ 11 nsubjpass _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 fall _ VERB VB _ 11 xcomp _ _ 14 sharply _ ADV RB _ 13 advmod _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 Himont _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 18 nmod _ _ 4 , _ PUNCT , _ 18 punct _ _ 5 `` _ PUNCT `` _ 18 punct _ _ 6 how _ ADV WRB _ 7 advmod _ _ 7 far _ ADV RB _ 8 advmod _ _ 8 down _ ADV IN _ 10 dep _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 is _ VERB VBZ _ 15 advcl _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 we _ PRON PRP _ 15 nsubj _ _ 13 do _ AUX VBP _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 know _ VERB VB _ 18 ccomp _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 Leslie _ PROPN NNP _ 20 compound _ _ 20 Ravitz _ PROPN NNP _ 18 nsubj _ _ 21 at _ ADP IN _ 23 case _ _ 22 Salomon _ PROPN NNP _ 23 compound _ _ 23 Brothers _ PROPN NNP _ 20 nmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 projections _ NOUN NNS _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 neighborhood _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 50 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 6 nmod _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 to _ ADP TO _ 14 dep _ _ 13 75 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 9 dep _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 compared _ VERB VBN _ 21 case _ _ 17 with _ ADP IN _ 21 case _ _ 18 a _ DET DT _ 21 det _ _ 19 restated _ ADJ VBN _ 21 amod _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.65 _ NUM CD _ 9 nmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 a _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 26 nmod:npmod _ _ 26 earlier _ ADV RBR _ 21 advmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 when _ ADV WRB _ 31 advmod _ _ 29 profit _ NOUN NN _ 31 nsubj _ _ 30 was _ VERB VBD _ 31 cop _ _ 31 $ _ SYM $ _ 26 advcl _ _ 32 107.8 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 on _ ADP IN _ 35 case _ _ 35 sales _ NOUN NNS _ 31 nmod _ _ 36 of _ ADP IN _ 37 case _ _ 37 $ _ SYM $ _ 35 nmod _ _ 38 435.5 _ NUM CD _ 39 compound _ _ 39 million _ NUM CD _ 37 nummod _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 Himont _ PROPN NNP _ 2 nsubj _ _ 2 faces _ VERB VBZ _ 0 root _ _ 3 lower _ ADJ JJR _ 4 amod _ _ 4 prices _ NOUN NNS _ 2 dobj _ _ 5 for _ ADP IN _ 8 case _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 mainstay _ NOUN NN _ 8 compound _ _ 8 product _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 polypropylene _ NOUN NN _ 8 appos _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 while _ SCONJ IN _ 14 mark _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 goes _ VERB VBZ _ 2 advcl _ _ 15 forward _ ADV RB _ 14 advmod _ _ 16 with _ ADP IN _ 21 case _ _ 17 a _ DET DT _ 21 det _ _ 18 heavy _ ADJ JJ _ 21 amod _ _ 19 capital _ NOUN NN _ 21 compound _ _ 20 investment _ NOUN NN _ 21 compound _ _ 21 program _ NOUN NN _ 14 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 bolster _ VERB VB _ 21 acl _ _ 24 its _ PRON PRP$ _ 27 nmod:poss _ _ 25 raw _ ADJ JJ _ 27 amod _ _ 26 material _ NOUN NN _ 27 compound _ _ 27 supply _ NOUN NN _ 23 dobj _ _ 28 and _ CONJ CC _ 23 cc _ _ 29 develop _ VERB VB _ 23 conj _ _ 30 new _ ADJ JJ _ 31 amod _ _ 31 uses _ NOUN NNS _ 29 dobj _ _ 32 for _ ADP IN _ 33 case _ _ 33 polypropylene _ NOUN NN _ 31 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 whose _ PRON WP$ _ 36 nmod:poss _ _ 36 markets _ NOUN NNS _ 37 nsubj _ _ 37 include _ VERB VBP _ 33 acl:relcl _ _ 38 the _ DET DT _ 42 det _ _ 39 packaging _ NOUN NN _ 42 compound _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 automobile _ NOUN NN _ 39 conj _ _ 42 industries _ NOUN NNS _ 37 dobj _ _ 43 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 6 case _ _ 6 Wilmington _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Del. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 is _ VERB VBZ _ 11 cop _ _ 11 81%-owned _ ADJ JJ _ 0 root _ _ 12 by _ ADP IN _ 16 case _ _ 13 Montedison _ PROPN NNP _ 16 compound _ _ 14 S.p _ PROPN NNP _ 16 compound _ _ 15 . _ PUNCT . _ 16 punct _ _ 16 A. _ PROPN NNP _ 11 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Milan _ PROPN NNP _ 16 appos _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 which _ PRON WDT _ 21 nsubj _ _ 21 has _ VERB VBZ _ 16 acl:relcl _ _ 22 an _ DET DT _ 23 det _ _ 23 offer _ NOUN NN _ 21 dobj _ _ 24 outstanding _ ADJ JJ _ 23 amod _ _ 25 for _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 Himont _ PROPN NNP _ 28 compound _ _ 28 shares _ NOUN NNS _ 23 nmod _ _ 29 it _ PRON PRP _ 33 nsubj _ _ 30 does _ AUX VBZ _ 33 aux _ _ 31 n't _ PART RB _ 33 neg _ _ 32 already _ ADV RB _ 33 advmod _ _ 33 own _ VERB VB _ 28 acl:relcl _ _ 34 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 Quantum _ PROPN NNP _ 4 compound _ _ 3 Chemical _ PROPN NNP _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 13 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 New _ PROPN NNP _ 7 compound _ _ 7 York _ PROPN NNP _ 4 appos _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 trouble _ NOUN NN _ 13 nsubj _ _ 11 is _ VERB VBZ _ 13 cop _ _ 12 lower _ ADJ JJR _ 13 amod _ _ 13 prices _ NOUN NNS _ 0 root _ _ 14 for _ ADP IN _ 15 case _ _ 15 polyethylene _ NOUN NN _ 13 nmod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 higher _ ADJ JJR _ 19 amod _ _ 18 debt _ NOUN NN _ 19 compound _ _ 19 costs _ NOUN NNS _ 13 conj _ _ 20 and _ CONJ CC _ 13 cc _ _ 21 the _ DET DT _ 22 det _ _ 22 idling _ NOUN VBG _ 13 conj _ _ 23 of _ ADP IN _ 26 case _ _ 24 an _ DET DT _ 26 det _ _ 25 important _ ADJ JJ _ 26 amod _ _ 26 plant _ NOUN NN _ 22 nmod _ _ 27 due _ ADV JJ _ 22 advmod _ _ 28 to _ ADP TO _ 30 case _ _ 29 an _ DET DT _ 30 det _ _ 30 explosion _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 13 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 hedge _ VERB VBP _ 0 root _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 estimates _ NOUN NNS _ 3 dobj _ _ 6 for _ ADP IN _ 7 case _ _ 7 Quantum _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 because _ SCONJ IN _ 13 mark _ _ 10 it _ PRON PRP _ 13 nsubjpass _ _ 11 is _ AUX VBZ _ 13 auxpass _ _ 12 n't _ PART RB _ 13 neg _ _ 13 known _ VERB VBN _ 3 advcl _ _ 14 when _ ADV WRB _ 18 advmod _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 book _ VERB VB _ 13 advcl _ _ 19 certain _ ADJ JJ _ 21 amod _ _ 20 one-time _ ADJ JJ _ 21 amod _ _ 21 charges _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 estimates _ NOUN NNS _ 4 nsubj _ _ 4 range _ VERB VBP _ 0 root _ _ 5 from _ ADP IN _ 6 case _ _ 6 break-even _ ADJ JJ _ 4 nmod _ _ 7 to _ ADP TO _ 9 case _ _ 8 35 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 6 nmod _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 1988 _ NUM CD _ 5 nummod _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Quantum _ PROPN NNP _ 8 nsubj _ _ 8 earned _ VERB VBD _ 0 root _ _ 9 $ _ SYM $ _ 8 dobj _ _ 10 99.8 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 3.92 _ NUM CD _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 sales _ NOUN NNS _ 8 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 724.4 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Another _ DET DT _ 4 det _ _ 2 big _ ADJ JJ _ 4 amod _ _ 3 polyethylene _ NOUN NN _ 4 compound _ _ 4 producer _ NOUN NN _ 11 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Union _ PROPN NNP _ 8 compound _ _ 7 Carbide _ PROPN NNP _ 8 compound _ _ 8 Corp. _ PROPN NNP _ 4 appos _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 post _ VERB VB _ 11 xcomp _ _ 14 profit _ NOUN NN _ 13 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 between _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 1 _ NUM CD _ 14 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 and _ CONJ CC _ 18 cc _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 1.25 _ NUM CD _ 18 conj _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 compared _ VERB VBN _ 28 case _ _ 26 with _ ADP IN _ 28 case _ _ 27 $ _ SYM $ _ 28 dep _ _ 28 1.56 _ NUM CD _ 14 nmod _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 a _ DET DT _ 32 det _ _ 32 year _ NOUN NN _ 33 nmod:npmod _ _ 33 earlier _ ADV RBR _ 28 advmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 when _ ADV WRB _ 38 advmod _ _ 36 the _ DET DT _ 37 det _ _ 37 company _ NOUN NN _ 38 nsubj _ _ 38 earned _ VERB VBD _ 33 advcl _ _ 39 $ _ SYM $ _ 38 dobj _ _ 40 213 _ NUM CD _ 41 compound _ _ 41 million _ NUM CD _ 39 nummod _ _ 42 on _ ADP IN _ 43 case _ _ 43 sales _ NOUN NNS _ 38 nmod _ _ 44 of _ ADP IN _ 45 case _ _ 45 $ _ SYM $ _ 43 nmod _ _ 46 2.11 _ NUM CD _ 47 compound _ _ 47 billion _ NUM CD _ 45 nummod _ _ 48 . _ PUNCT . _ 11 punct _ _ 1 Himont _ PROPN NNP _ 8 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Quantum _ PROPN NNP _ 1 conj _ _ 4 and _ CONJ CC _ 1 cc _ _ 5 Union _ PROPN NNP _ 6 compound _ _ 6 Carbide _ PROPN NNP _ 1 conj _ _ 7 all _ DET DT _ 8 dep _ _ 8 declined _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 comment _ VERB VB _ 8 xcomp _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 following _ ADJ NN _ 7 nsubj _ _ 3 were _ VERB VBD _ 7 cop _ _ 4 among _ ADP IN _ 7 case _ _ 5 Friday _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 offerings _ NOUN NNS _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 pricings _ NOUN NNS _ 7 conj _ _ 10 in _ ADP IN _ 16 case _ _ 11 the _ DET DT _ 16 det _ _ 12 U.S. _ PROPN NNP _ 16 compound _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 non-U.S. _ ADJ JJ _ 12 conj _ _ 15 capital _ NOUN NN _ 16 compound _ _ 16 markets _ NOUN NNS _ 7 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 with _ ADP IN _ 19 case _ _ 19 terms _ NOUN NNS _ 7 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 syndicate _ NOUN NN _ 22 compound _ _ 22 manager _ NOUN NN _ 19 conj _ _ 23 , _ PUNCT , _ 7 punct _ _ 24 as _ SCONJ IN _ 25 mark _ _ 25 compiled _ VERB VBN _ 7 advcl _ _ 26 by _ ADP IN _ 31 case _ _ 27 Dow _ PROPN NNP _ 31 compound _ _ 28 Jones _ PROPN NNP _ 31 compound _ _ 29 Capital _ PROPN NNP _ 31 compound _ _ 30 Markets _ PROPN NNPS _ 31 compound _ _ 31 Report _ PROPN NNP _ 25 nmod _ _ 32 : _ PUNCT : _ 7 punct _ _ 1 Dow _ PROPN NNP _ 3 compound _ _ 2 Chemical _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 150 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 8 case _ _ 5 8.55 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 8 amod _ _ 7 senior _ ADJ JJ _ 8 amod _ _ 8 notes _ NOUN NNS _ 1 nmod _ _ 9 due _ ADJ JJ _ 1 amod _ _ 10 Oct. _ PROPN NNP _ 9 nmod:tmod _ _ 11 15 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 10 punct _ _ 13 2009 _ NUM CD _ 10 nummod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 priced _ VERB VBN _ 1 acl _ _ 16 at _ ADP IN _ 17 case _ _ 17 par _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 issue _ NOUN NN _ 20 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 is _ VERB VBZ _ 6 cop _ _ 6 puttable _ ADJ JJ _ 2 acl:relcl _ _ 7 back _ ADV RB _ 6 advmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 6 nmod _ _ 11 at _ ADP IN _ 12 case _ _ 12 par _ NOUN NN _ 6 nmod _ _ 13 on _ ADP IN _ 14 case _ _ 14 Oct. _ PROPN NNP _ 6 nmod _ _ 15 15 _ NUM CD _ 14 nummod _ _ 16 , _ PUNCT , _ 14 punct _ _ 17 1999 _ NUM CD _ 14 nummod _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 was _ AUX VBD _ 20 auxpass _ _ 20 priced _ VERB VBN _ 0 root _ _ 21 at _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 spread _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 27 case _ _ 25 50 _ NUM CD _ 27 nummod _ _ 26 basis _ NOUN NN _ 27 compound _ _ 27 points _ NOUN NNS _ 23 acl _ _ 28 above _ ADP IN _ 27 case _ _ 29 the _ DET DT _ 30 det _ _ 30 Treasury _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 10-year _ ADJ JJ _ 33 amod _ _ 33 note _ NOUN NN _ 27 dep _ _ 34 . _ PUNCT . _ 20 punct _ _ 1 Rated _ VERB VBN _ 23 advcl _ _ 2 single-A-1 _ ADJ JJ _ 1 xcomp _ _ 3 by _ ADP IN _ 8 case _ _ 4 Moody _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 Investors _ PROPN NNPS _ 8 compound _ _ 7 Service _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 1 nmod _ _ 9 and _ CONJ CC _ 1 cc _ _ 10 single-A _ ADJ JJ _ 1 conj _ _ 11 by _ ADP IN _ 16 case _ _ 12 Standard _ PROPN NNP _ 16 nmod:poss _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Poor _ PROPN NNP _ 12 conj _ _ 15 's _ PART POS _ 12 case _ _ 16 Corp. _ PROPN NNP _ 10 nmod _ _ 17 , _ PUNCT , _ 23 punct _ _ 18 the _ DET DT _ 20 det _ _ 19 non-callable _ ADJ JJ _ 20 amod _ _ 20 issue _ NOUN NN _ 23 nsubjpass _ _ 21 will _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 sold _ VERB VBN _ 0 root _ _ 24 through _ ADP IN _ 25 case _ _ 25 underwriters _ NOUN NNS _ 23 nmod _ _ 26 led _ VERB VBN _ 25 acl _ _ 27 by _ ADP IN _ 31 case _ _ 28 Merrill _ PROPN NNP _ 31 compound _ _ 29 Lynch _ PROPN NNP _ 31 compound _ _ 30 Capital _ PROPN NNP _ 31 compound _ _ 31 Markets _ PROPN NNPS _ 26 nmod _ _ 32 . _ PUNCT . _ 23 punct _ _ 1 Centel _ PROPN NNP _ 3 compound _ _ 2 Capital _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 150 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 9 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 debentures _ NOUN NNS _ 1 nmod _ _ 8 due _ ADJ JJ _ 1 amod _ _ 9 Oct. _ PROPN NNP _ 8 nmod:tmod _ _ 10 15 _ NUM CD _ 9 nummod _ _ 11 , _ PUNCT , _ 9 punct _ _ 12 2019 _ NUM CD _ 9 nummod _ _ 13 , _ PUNCT , _ 1 punct _ _ 14 priced _ VERB VBN _ 1 acl _ _ 15 at _ ADP IN _ 16 case _ _ 16 99.943 _ NUM CD _ 14 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 yield _ VERB VB _ 14 xcomp _ _ 19 9.008 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 non-callable _ ADJ JJ _ 3 amod _ _ 3 issue _ NOUN NN _ 17 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 8 nsubjpass _ _ 6 can _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 put _ VERB VBN _ 3 acl:relcl _ _ 9 back _ ADV RB _ 8 advmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 9 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 1999 _ NUM CD _ 8 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 priced _ VERB VBN _ 0 root _ _ 18 at _ ADP IN _ 21 case _ _ 19 99 _ NUM CD _ 21 nummod _ _ 20 basis _ NOUN NN _ 21 compound _ _ 21 points _ NOUN NNS _ 17 nmod _ _ 22 above _ ADP IN _ 21 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Treasury _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 10-year _ ADJ JJ _ 27 amod _ _ 27 note _ NOUN NN _ 21 dep _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 Rated _ VERB VBN _ 15 advcl _ _ 2 Baa-1 _ ADJ JJ _ 1 xcomp _ _ 3 by _ ADP IN _ 4 case _ _ 4 Moody _ PROPN NNP _ 1 nmod _ _ 5 's _ PART POS _ 4 case _ _ 6 and _ CONJ CC _ 1 cc _ _ 7 triple-B-plus _ ADJ JJ _ 1 conj _ _ 8 by _ ADP IN _ 9 case _ _ 9 S&P _ PROPN NNP _ 7 nmod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 issue _ NOUN NN _ 15 nsubjpass _ _ 13 will _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 sold _ VERB VBN _ 0 root _ _ 16 through _ ADP IN _ 17 case _ _ 17 underwriters _ NOUN NNS _ 15 nmod _ _ 18 led _ VERB VBN _ 17 acl _ _ 19 by _ ADP IN _ 21 case _ _ 20 Morgan _ PROPN NNP _ 21 compound _ _ 21 Stanley _ PROPN NNP _ 18 nmod _ _ 22 & _ CONJ CC _ 21 cc _ _ 23 Co _ PROPN NNP _ 21 conj _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 Federal _ PROPN NNP _ 5 compound _ _ 2 Home _ PROPN NNP _ 5 compound _ _ 3 Loan _ PROPN NNP _ 5 compound _ _ 4 Mortgage _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 500 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 Remic _ PROPN NNP _ 7 compound _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 securities _ NOUN NNS _ 1 nmod _ _ 8 offered _ VERB VBN _ 1 acl _ _ 9 in _ ADP IN _ 11 case _ _ 10 13 _ NUM CD _ 11 nummod _ _ 11 classes _ NOUN NNS _ 8 nmod _ _ 12 by _ ADP IN _ 15 case _ _ 13 Prudential-Bache _ PROPN NNP _ 15 compound _ _ 14 Securities _ PROPN NNPS _ 15 compound _ _ 15 Inc _ PROPN NNP _ 8 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offering _ NOUN NN _ 28 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Series _ PROPN NNP _ 2 appos _ _ 5 102 _ NUM CD _ 4 nummod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 backed _ VERB VBN _ 28 dep _ _ 8 by _ ADP IN _ 14 case _ _ 9 Freddie _ PROPN NNP _ 14 compound _ _ 10 Mac _ PROPN NNP _ 14 compound _ _ 11 8 _ NUM CD _ 13 compound _ _ 12 1/2 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 securities _ NOUN NNS _ 7 nmod _ _ 15 with _ ADP IN _ 20 case _ _ 16 a _ DET DT _ 20 det _ _ 17 weighted _ ADJ JJ _ 20 amod _ _ 18 average _ NOUN JJ _ 20 compound _ _ 19 remaining _ VERB VBG _ 20 amod _ _ 20 term _ NOUN NN _ 7 nmod _ _ 21 to _ ADP TO _ 22 case _ _ 22 maturity _ NOUN NN _ 20 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 28.4 _ NUM CD _ 25 nummod _ _ 25 years _ NOUN NNS _ 20 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 was _ AUX VBD _ 28 auxpass _ _ 28 priced _ VERB VBN _ 0 root _ _ 29 before _ ADP IN _ 34 case _ _ 30 the _ DET DT _ 31 det _ _ 31 market _ NOUN NN _ 34 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 afternoon _ NOUN NN _ 34 compound _ _ 34 surge _ NOUN NN _ 28 nmod _ _ 35 . _ PUNCT . _ 28 punct _ _ 1 Among _ ADP IN _ 2 case _ _ 2 classes _ NOUN NNS _ 10 nmod _ _ 3 for _ ADP IN _ 4 case _ _ 4 which _ PRON WDT _ 7 nmod _ _ 5 details _ NOUN NNS _ 7 nsubj _ _ 6 were _ VERB VBD _ 7 cop _ _ 7 available _ ADJ JJ _ 2 acl:relcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 yields _ NOUN NNS _ 10 nsubj _ _ 10 ranged _ VERB VBD _ 0 root _ _ 11 from _ ADP IN _ 13 case _ _ 12 8.78 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 10 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 75 _ NUM CD _ 18 nummod _ _ 17 basis _ NOUN NN _ 18 compound _ _ 18 points _ NOUN NNS _ 13 conj _ _ 19 over _ ADP IN _ 18 case _ _ 20 two-year _ ADJ JJ _ 22 amod _ _ 21 Treasury _ PROPN NNP _ 22 compound _ _ 22 securities _ NOUN NNS _ 18 dep _ _ 23 , _ PUNCT , _ 13 punct _ _ 24 to _ ADP TO _ 26 case _ _ 25 10.05 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 13 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 or _ CONJ CC _ 26 cc _ _ 29 200 _ NUM CD _ 31 nummod _ _ 30 basis _ NOUN NN _ 31 compound _ _ 31 points _ NOUN NNS _ 26 conj _ _ 32 over _ ADP IN _ 31 case _ _ 33 10-year _ ADJ JJ _ 34 amod _ _ 34 Treasurys _ PROPN NNPS _ 31 dep _ _ 35 . _ PUNCT . _ 10 punct _ _ 1 Federal _ PROPN NNP _ 5 compound _ _ 2 Home _ PROPN NNP _ 5 compound _ _ 3 Loan _ PROPN NNP _ 5 compound _ _ 4 Mortgage _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 300 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 Remic _ PROPN NNP _ 7 compound _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 securities _ NOUN NNS _ 1 nmod _ _ 8 offered _ VERB VBN _ 1 acl _ _ 9 by _ ADP IN _ 13 case _ _ 10 Citicorp _ PROPN NNP _ 13 compound _ _ 11 Securities _ PROPN NNP _ 13 compound _ _ 12 Markets _ PROPN NNPS _ 13 compound _ _ 13 Inc _ PROPN NNP _ 8 nmod _ _ 14 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offering _ NOUN NN _ 8 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Series _ PROPN NNP _ 2 appos _ _ 5 101 _ NUM CD _ 4 nummod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 backed _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 15 case _ _ 10 Freddie _ PROPN NNP _ 15 compound _ _ 11 Mac _ PROPN NNP _ 15 compound _ _ 12 9 _ NUM CD _ 14 compound _ _ 13 1/2 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 securities _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Pricing _ NOUN NN _ 2 compound _ _ 2 details _ NOUN NNS _ 6 nsubj _ _ 3 were _ VERB VBD _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 immediately _ ADV RB _ 6 advmod _ _ 6 available _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Federal _ PROPN NNP _ 5 compound _ _ 2 Home _ PROPN NNP _ 5 compound _ _ 3 Loan _ PROPN NNP _ 5 compound _ _ 4 Mortgage _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 200 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 stripped _ ADJ VBN _ 7 amod _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 securities _ NOUN NNS _ 1 nmod _ _ 8 underwritten _ VERB VBN _ 7 acl _ _ 9 by _ ADP IN _ 12 case _ _ 10 BT _ PROPN NNP _ 12 compound _ _ 11 Securities _ PROPN NNP _ 12 compound _ _ 12 Corp _ PROPN NNP _ 8 nmod _ _ 13 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 first _ ADJ JJ _ 6 amod _ _ 5 strips _ NOUN NNS _ 6 compound _ _ 6 issue _ NOUN NN _ 8 nsubj _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 collateralized _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 14 case _ _ 10 Freddie _ PROPN NNP _ 14 compound _ _ 11 Mac _ PROPN NNP _ 14 compound _ _ 12 8 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 securities _ NOUN NNS _ 8 nmod _ _ 15 pooled _ VERB VBD _ 14 acl _ _ 16 into _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 single _ ADJ JJ _ 19 amod _ _ 19 security _ NOUN NN _ 15 nmod _ _ 20 called _ VERB VBD _ 19 acl _ _ 21 a _ DET DT _ 22 det _ _ 22 Giant _ PROPN NN _ 20 xcomp _ _ 23 , _ PUNCT , _ 8 punct _ _ 24 will _ AUX MD _ 26 aux _ _ 25 be _ AUX VB _ 26 auxpass _ _ 26 divided _ VERB VBN _ 8 dep _ _ 27 into _ ADP IN _ 31 case _ _ 28 interest-only _ ADJ JJ _ 31 amod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 principal-only _ ADJ JJ _ 28 conj _ _ 31 securities _ NOUN NNS _ 26 nmod _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 collateral _ NOUN NN _ 5 nsubjpass _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 being _ AUX VBG _ 5 auxpass _ _ 5 sold _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 thrift _ NOUN NN _ 9 compound _ _ 9 institution _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 principal-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 6 nsubjpass _ _ 4 will _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 repackaged _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 9 case _ _ 8 BT _ PROPN NNP _ 9 compound _ _ 9 Securities _ PROPN NNPS _ 6 nmod _ _ 10 into _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 Freddie _ PROPN NNP _ 14 compound _ _ 13 Mac _ PROPN NNP _ 14 compound _ _ 14 Remic _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Series _ PROPN NNP _ 14 appos _ _ 17 103 _ NUM CD _ 16 nummod _ _ 18 , _ PUNCT , _ 14 punct _ _ 19 that _ PRON WDT _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 have _ VERB VB _ 14 acl:relcl _ _ 22 six _ NUM CD _ 23 nummod _ _ 23 classes _ NOUN NNS _ 21 dobj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 interest-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 6 nsubjpass _ _ 4 will _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 sold _ VERB VBN _ 0 root _ _ 7 separately _ ADV RB _ 6 advmod _ _ 8 by _ ADP IN _ 10 case _ _ 9 BT _ PROPN NNP _ 10 compound _ _ 10 Securities _ PROPN NNPS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 principal-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 4 nsubj _ _ 4 pay _ VERB VBP _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 principal _ NOUN NN _ 4 dobj _ _ 7 from _ ADP IN _ 14 case _ _ 8 the _ DET DT _ 14 det _ _ 9 underlying _ ADJ VBG _ 14 amod _ _ 10 Freddie _ PROPN NNP _ 14 compound _ _ 11 Mac _ PROPN NNP _ 14 compound _ _ 12 8 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 securities _ NOUN NNS _ 4 nmod _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 while _ SCONJ IN _ 20 mark _ _ 17 the _ DET DT _ 19 det _ _ 18 interest-only _ ADJ JJ _ 19 amod _ _ 19 securities _ NOUN NNS _ 20 nsubj _ _ 20 pay _ VERB VBP _ 4 advcl _ _ 21 only _ ADJ JJ _ 22 amod _ _ 22 interest _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Freddie _ PROPN NNP _ 2 compound _ _ 2 Mac _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 principal-only _ ADJ JJ _ 6 amod _ _ 6 securities _ NOUN NNS _ 8 nsubjpass _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 priced _ VERB VBN _ 3 ccomp _ _ 9 at _ ADP IN _ 11 case _ _ 10 58 _ NUM CD _ 11 compound _ _ 11 1/4 _ NUM CD _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 yield _ VERB VB _ 8 xcomp _ _ 14 8.45 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dobj _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 assuming _ VERB VBG _ 20 case _ _ 18 an _ DET DT _ 20 det _ _ 19 average _ ADJ JJ _ 20 amod _ _ 20 life _ NOUN NN _ 3 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 eight _ NUM CD _ 23 nummod _ _ 23 years _ NOUN NNS _ 20 nmod _ _ 24 and _ CONJ CC _ 20 cc _ _ 25 a _ DET DT _ 26 det _ _ 26 prepayment _ NOUN NN _ 20 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 160 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 26 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 PSA _ PROPN NN _ 33 compound _ _ 33 model _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 interest-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 priced _ VERB VBN _ 0 root _ _ 6 at _ ADP IN _ 8 case _ _ 7 35 _ NUM CD _ 8 compound _ _ 8 1/2 _ NUM CD _ 5 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 yield _ VERB VB _ 5 xcomp _ _ 11 10.72 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 major _ ADJ JJ _ 5 amod _ _ 5 Eurobond _ PROPN NN _ 2 nsubj _ _ 6 or _ CONJ CC _ 5 cc _ _ 7 foreign _ ADJ JJ _ 9 amod _ _ 8 bond _ NOUN NN _ 9 compound _ _ 9 offerings _ NOUN NNS _ 5 conj _ _ 10 in _ ADP IN _ 11 case _ _ 11 Europe _ PROPN NNP _ 2 nmod _ _ 12 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 13 . _ PUNCT . _ 2 punct _ _ ================================================ FILE: a3/data/test.gold.conll ================================================ 1 No _ ADV RB _ 7 discourse _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 it _ PRON PRP _ 7 nsubj _ _ 4 was _ VERB VBD _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 Black _ PROPN NNP _ 7 compound _ _ 7 Monday _ PROPN NNP _ 0 root _ _ 8 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 33 cc _ _ 2 while _ SCONJ IN _ 10 mark _ _ 3 the _ DET DT _ 7 det _ _ 4 New _ PROPN NNP _ 7 compound _ _ 5 York _ PROPN NNP _ 7 compound _ _ 6 Stock _ PROPN NNP _ 7 compound _ _ 7 Exchange _ PROPN NNP _ 10 nsubj _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 fall _ VERB VB _ 33 advcl _ _ 11 apart _ ADV RB _ 10 advmod _ _ 12 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 13 as _ SCONJ IN _ 19 mark _ _ 14 the _ DET DT _ 18 det _ _ 15 Dow _ PROPN NNP _ 18 compound _ _ 16 Jones _ PROPN NNP _ 18 compound _ _ 17 Industrial _ PROPN NNP _ 18 compound _ _ 18 Average _ PROPN NNP _ 19 nsubj _ _ 19 plunged _ VERB VBD _ 10 advcl _ _ 20 190.58 _ NUM CD _ 21 nummod _ _ 21 points _ NOUN NNS _ 19 dobj _ _ 22 -- _ PUNCT : _ 23 punct _ _ 23 most _ ADJ JJS _ 21 dep _ _ 24 of _ ADP IN _ 25 case _ _ 25 it _ PRON PRP _ 23 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 final _ ADJ JJ _ 29 amod _ _ 29 hour _ NOUN NN _ 23 nmod _ _ 30 -- _ PUNCT : _ 23 punct _ _ 31 it _ PRON PRP _ 33 nsubj _ _ 32 barely _ ADV RB _ 33 advmod _ _ 33 managed _ VERB VBD _ 0 root _ _ 34 to _ PART TO _ 35 mark _ _ 35 stay _ VERB VB _ 33 xcomp _ _ 36 this _ DET DT _ 37 det _ _ 37 side _ NOUN NN _ 35 dobj _ _ 38 of _ ADP IN _ 39 case _ _ 39 chaos _ NOUN NN _ 37 nmod _ _ 40 . _ PUNCT . _ 33 punct _ _ 1 Some _ DET DT _ 4 det _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 circuit _ NOUN NN _ 4 compound _ _ 4 breakers _ NOUN NNS _ 12 nsubj _ _ 5 '' _ PUNCT '' _ 4 punct _ _ 6 installed _ VERB VBN _ 4 acl _ _ 7 after _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 October _ PROPN NNP _ 11 compound _ _ 10 1987 _ NUM CD _ 11 nummod _ _ 11 crash _ NOUN NN _ 6 nmod _ _ 12 failed _ VERB VBD _ 0 root _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 first _ ADJ JJ _ 15 amod _ _ 15 test _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 traders _ NOUN NNS _ 18 nsubj _ _ 18 say _ VERB VBP _ 12 parataxis _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 unable _ ADJ JJ _ 12 xcomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 cool _ VERB VB _ 20 xcomp _ _ 23 the _ DET DT _ 25 det _ _ 24 selling _ NOUN NN _ 25 compound _ _ 25 panic _ NOUN NN _ 22 dobj _ _ 26 in _ ADP IN _ 28 case _ _ 27 both _ DET DT _ 28 cc:preconj _ _ 28 stocks _ NOUN NNS _ 25 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 futures _ NOUN NNS _ 28 conj _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 49 _ NUM CD _ 5 nummod _ _ 3 stock _ NOUN NN _ 5 compound _ _ 4 specialist _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 31 nsubj _ _ 6 on _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 Big _ PROPN NNP _ 10 compound _ _ 9 Board _ PROPN NNP _ 10 compound _ _ 10 floor _ NOUN NN _ 5 nmod _ _ 11 -- _ PUNCT : _ 5 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 buyers _ NOUN NNS _ 5 dep _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 sellers _ NOUN NNS _ 13 conj _ _ 16 of _ ADP IN _ 18 case _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 resort _ NOUN NN _ 13 nmod _ _ 19 who _ PRON WP _ 21 nsubjpass _ _ 20 were _ AUX VBD _ 21 auxpass _ _ 21 criticized _ VERB VBN _ 13 acl:relcl _ _ 22 after _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 1987 _ NUM CD _ 25 nummod _ _ 25 crash _ NOUN NN _ 21 nmod _ _ 26 -- _ PUNCT : _ 5 punct _ _ 27 once _ ADV RB _ 28 advmod _ _ 28 again _ ADV RB _ 31 advmod _ _ 29 could _ AUX MD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 handle _ VERB VB _ 0 root _ _ 32 the _ DET DT _ 34 det _ _ 33 selling _ NOUN NN _ 34 compound _ _ 34 pressure _ NOUN NN _ 31 dobj _ _ 35 . _ PUNCT . _ 31 punct _ _ 1 Big _ ADJ JJ _ 3 amod _ _ 2 investment _ NOUN NN _ 3 compound _ _ 3 banks _ NOUN NNS _ 4 nsubj _ _ 4 refused _ VERB VBD _ 25 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 step _ VERB VB _ 4 xcomp _ _ 7 up _ ADP IN _ 6 advmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 plate _ NOUN NN _ 7 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 support _ VERB VB _ 6 xcomp _ _ 13 the _ DET DT _ 16 det _ _ 14 beleaguered _ ADJ JJ _ 16 amod _ _ 15 floor _ NOUN NN _ 16 compound _ _ 16 traders _ NOUN NNS _ 12 dobj _ _ 17 by _ SCONJ IN _ 18 mark _ _ 18 buying _ VERB VBG _ 12 advcl _ _ 19 big _ ADJ JJ _ 20 amod _ _ 20 blocks _ NOUN NNS _ 18 dobj _ _ 21 of _ ADP IN _ 22 case _ _ 22 stock _ NOUN NN _ 20 nmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 traders _ NOUN NNS _ 25 nsubj _ _ 25 say _ VERB VBP _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Heavy _ ADJ JJ _ 2 amod _ _ 2 selling _ NOUN NN _ 14 nsubj _ _ 3 of _ ADP IN _ 10 case _ _ 4 Standard _ PROPN NNP _ 10 nmod:poss _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Poor _ PROPN NNP _ 4 conj _ _ 7 's _ PART POS _ 4 case _ _ 8 500-stock _ ADJ JJ _ 10 amod _ _ 9 index _ NOUN NN _ 10 compound _ _ 10 futures _ NOUN NNS _ 2 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Chicago _ PROPN NNP _ 2 nmod _ _ 13 relentlessly _ ADV RB _ 14 advmod _ _ 14 beat _ VERB VBD _ 0 root _ _ 15 stocks _ NOUN NNS _ 14 dobj _ _ 16 downward _ ADV RB _ 14 advmod _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 Seven _ NUM CD _ 4 nummod _ _ 2 Big _ PROPN NNP _ 4 compound _ _ 3 Board _ PROPN NNP _ 4 compound _ _ 4 stocks _ NOUN NNS _ 25 nsubj _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 UAL _ PROPN NNP _ 4 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 AMR _ PROPN NNP _ 6 conj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 BankAmerica _ PROPN NNP _ 6 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 Walt _ PROPN NNP _ 13 compound _ _ 13 Disney _ PROPN NNP _ 6 conj _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 Capital _ PROPN NNP _ 16 compound _ _ 16 Cities/ABC _ PROPN NNP _ 6 conj _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 Philip _ PROPN NNP _ 19 compound _ _ 19 Morris _ PROPN NNP _ 6 conj _ _ 20 and _ CONJ CC _ 6 cc _ _ 21 Pacific _ PROPN NNP _ 23 compound _ _ 22 Telesis _ PROPN NNP _ 23 compound _ _ 23 Group _ PROPN NNP _ 6 conj _ _ 24 -- _ PUNCT : _ 4 punct _ _ 25 stopped _ VERB VBD _ 0 root _ _ 26 trading _ VERB VBG _ 25 xcomp _ _ 27 and _ CONJ CC _ 25 cc _ _ 28 never _ ADV RB _ 29 neg _ _ 29 resumed _ VERB VBD _ 25 conj _ _ 30 . _ PUNCT . _ 25 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 finger-pointing _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 already _ ADV RB _ 5 advmod _ _ 5 begun _ VERB VBN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 equity _ NOUN NN _ 4 compound _ _ 4 market _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 illiquid _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Once _ ADV RB _ 2 advmod _ _ 2 again _ ADV RB _ 9 advmod _ _ 3 -LCB- _ PUNCT -LRB- _ 9 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 specialists _ NOUN NNS _ 9 nsubj _ _ 6 -RCB- _ PUNCT -RRB- _ 9 punct _ _ 7 were _ VERB VBD _ 9 cop _ _ 8 not _ PART RB _ 9 neg _ _ 9 able _ ADJ JJ _ 25 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 handle _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 imbalances _ NOUN NNS _ 11 dobj _ _ 14 on _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 floor _ NOUN NN _ 13 nmod _ _ 17 of _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 New _ PROPN NNP _ 22 compound _ _ 20 York _ PROPN NNP _ 22 compound _ _ 21 Stock _ PROPN NNP _ 22 compound _ _ 22 Exchange _ PROPN NNP _ 16 nmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Christopher _ PROPN NNP _ 27 compound _ _ 27 Pedersen _ PROPN NNP _ 25 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 senior _ ADJ JJ _ 31 amod _ _ 30 vice _ NOUN NN _ 31 compound _ _ 31 president _ NOUN NN _ 27 appos _ _ 32 at _ ADP IN _ 35 case _ _ 33 Twenty-First _ PROPN NNP _ 35 compound _ _ 34 Securities _ PROPN NNP _ 35 compound _ _ 35 Corp _ PROPN NNP _ 31 nmod _ _ 36 . _ PUNCT . _ 25 punct _ _ 1 Countered _ VERB VBD _ 0 root _ _ 2 James _ PROPN NNP _ 3 compound _ _ 3 Maguire _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chairman _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 10 case _ _ 7 specialists _ NOUN NNS _ 10 compound _ _ 8 Henderson _ PROPN NNP _ 10 compound _ _ 9 Brothers _ PROPN NNP _ 10 compound _ _ 10 Inc. _ PROPN NNP _ 5 nmod _ _ 11 : _ PUNCT : _ 1 punct _ _ 12 `` _ PUNCT `` _ 1 punct _ _ 13 It _ PRON PRP _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 easy _ ADJ JJ _ 1 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 say _ VERB VB _ 15 xcomp _ _ 18 the _ DET DT _ 19 det _ _ 19 specialist _ NOUN NN _ 22 nsubj _ _ 20 is _ AUX VBZ _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 doing _ VERB VBG _ 17 ccomp _ _ 23 his _ PRON PRP$ _ 24 nmod:poss _ _ 24 job _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 1 punct _ _ 1 When _ ADV WRB _ 7 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 dollar _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 free-fall _ NOUN NN _ 14 advcl _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 even _ ADV RB _ 11 advmod _ _ 10 central _ ADJ JJ _ 11 amod _ _ 11 banks _ NOUN NNS _ 14 nsubj _ _ 12 ca _ AUX MD _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 stop _ VERB VB _ 0 root _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 Speculators _ NOUN NNS _ 3 nsubj _ _ 2 are _ AUX VBP _ 3 aux _ _ 3 calling _ VERB VBG _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 degree _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 liquidity _ NOUN NN _ 6 nmod _ _ 9 that _ PRON WDT _ 15 nsubj _ _ 10 is _ VERB VBZ _ 15 cop _ _ 11 not _ PART RB _ 15 neg _ _ 12 there _ ADV RB _ 15 advmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 6 acl:relcl _ _ 16 . _ PUNCT . _ 3 punct _ _ 17 '' _ PUNCT '' _ 3 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 money _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 some _ DET DT _ 6 det _ _ 6 traders _ NOUN NNS _ 3 conj _ _ 7 had _ AUX VBD _ 9 aux _ _ 8 already _ ADV RB _ 9 advmod _ _ 9 left _ VERB VBN _ 0 root _ _ 10 their _ PRON PRP$ _ 11 nmod:poss _ _ 11 offices _ NOUN NNS _ 9 dobj _ _ 12 early _ ADV RB _ 14 advmod _ _ 13 Friday _ PROPN NNP _ 14 compound _ _ 14 afternoon _ NOUN NN _ 9 nmod:tmod _ _ 15 on _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 warm _ ADJ JJ _ 19 amod _ _ 18 autumn _ NOUN NN _ 19 compound _ _ 19 day _ NOUN NN _ 9 nmod _ _ 20 -- _ PUNCT : _ 9 punct _ _ 21 because _ SCONJ IN _ 27 mark _ _ 22 the _ DET DT _ 24 det _ _ 23 stock _ NOUN NN _ 24 compound _ _ 24 market _ NOUN NN _ 27 nsubj _ _ 25 was _ VERB VBD _ 27 cop _ _ 26 so _ ADV RB _ 27 advmod _ _ 27 quiet _ ADJ JJ _ 9 advcl _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 Then _ ADV RB _ 15 advmod _ _ 2 in _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 5 det _ _ 4 lightning _ NOUN NN _ 5 compound _ _ 5 plunge _ NOUN NN _ 15 nmod _ _ 6 , _ PUNCT , _ 15 punct _ _ 7 the _ DET DT _ 10 det _ _ 8 Dow _ PROPN NNP _ 10 compound _ _ 9 Jones _ PROPN NNP _ 10 compound _ _ 10 industrials _ NOUN NNS _ 15 nsubj _ _ 11 in _ ADP IN _ 14 case _ _ 12 barely _ ADV RB _ 13 advmod _ _ 13 an _ DET DT _ 14 nummod _ _ 14 hour _ NOUN NN _ 15 nmod _ _ 15 surrendered _ VERB VBD _ 0 root _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 a _ DET DT _ 18 nummod _ _ 18 third _ ADJ JJ _ 15 dobj _ _ 19 of _ ADP IN _ 21 case _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 gains _ NOUN NNS _ 18 nmod _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 21 nmod:tmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 chalking _ VERB VBG _ 15 advcl _ _ 26 up _ ADP RP _ 25 compound:prt _ _ 27 a _ DET DT _ 34 det _ _ 28 190.58-point _ ADJ JJ _ 34 amod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 or _ CONJ CC _ 28 cc _ _ 31 6.9 _ NUM CD _ 32 compound _ _ 32 % _ SYM NN _ 28 conj _ _ 33 , _ PUNCT , _ 28 punct _ _ 34 loss _ NOUN NN _ 25 dobj _ _ 35 on _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 day _ NOUN NN _ 34 nmod _ _ 38 in _ ADP IN _ 41 case _ _ 39 gargantuan _ ADJ JJ _ 41 amod _ _ 40 trading _ NOUN NN _ 41 compound _ _ 41 volume _ NOUN NN _ 25 nmod _ _ 42 . _ PUNCT . _ 15 punct _ _ 1 Final-hour _ ADJ JJ _ 2 amod _ _ 2 trading _ NOUN NN _ 3 nsubj _ _ 3 accelerated _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 7 case _ _ 5 108.1 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 7 nummod _ _ 7 shares _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 10 det _ _ 10 record _ NOUN NN _ 7 appos _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Big _ PROPN NNP _ 14 compound _ _ 14 Board _ PROPN NNP _ 10 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 end _ NOUN NN _ 12 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 day _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 251.2 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 shares _ NOUN NNS _ 12 nsubjpass _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 traded _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Dow _ PROPN NNP _ 4 compound _ _ 3 Jones _ PROPN NNP _ 4 compound _ _ 4 industrials _ NOUN NNS _ 5 nsubj _ _ 5 closed _ VERB VBD _ 0 root _ _ 6 at _ ADP IN _ 7 case _ _ 7 2569.26 _ NUM CD _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decline _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 second _ ADJ JJ _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 point _ NOUN NN _ 9 compound _ _ 9 terms _ NOUN NNS _ 6 nmod _ _ 10 only _ ADV RB _ 16 advmod _ _ 11 to _ ADP TO _ 16 case _ _ 12 the _ DET DT _ 16 det _ _ 13 508-point _ ADJ JJ _ 16 amod _ _ 14 Black _ PROPN NNP _ 16 compound _ _ 15 Monday _ PROPN NNP _ 16 compound _ _ 16 crash _ NOUN NN _ 6 nmod _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 occurred _ VERB VBD _ 16 acl:relcl _ _ 19 Oct. _ PROPN NNP _ 18 nmod:tmod _ _ 20 19 _ NUM CD _ 19 nummod _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 1987 _ NUM CD _ 19 nummod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 percentage _ NOUN NN _ 3 compound _ _ 3 terms _ NOUN NNS _ 13 nmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 however _ ADV RB _ 13 advmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Dow _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 dive _ NOUN NN _ 13 nsubj _ _ 11 was _ VERB VBD _ 13 cop _ _ 12 the _ DET DT _ 13 det _ _ 13 12th-worst _ ADJ JJ _ 0 root _ _ 14 ever _ ADV RB _ 13 advmod _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 sharpest _ ADJ JJS _ 13 conj _ _ 18 since _ SCONJ IN _ 21 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 21 nsubj _ _ 21 fell _ VERB VBD _ 17 acl _ _ 22 156.83 _ NUM CD _ 21 dobj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 8 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 22 conj _ _ 27 , _ PUNCT , _ 21 punct _ _ 28 a _ DET DT _ 29 det _ _ 29 week _ NOUN NN _ 21 nmod _ _ 30 after _ ADP IN _ 29 case _ _ 31 Black _ PROPN NNP _ 32 compound _ _ 32 Monday _ PROPN NNP _ 29 dep _ _ 33 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Dow _ PROPN NNP _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 22.6 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 on _ ADP IN _ 8 case _ _ 7 Black _ PROPN NNP _ 8 compound _ _ 8 Monday _ PROPN NNP _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Shares _ PROPN NNP _ 13 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 UAL _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 parent _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 United _ PROPN NNP _ 9 compound _ _ 9 Airlines _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 were _ VERB VBD _ 13 cop _ _ 12 extremely _ ADV RB _ 13 advmod _ _ 13 active _ ADJ JJ _ 0 root _ _ 14 all _ DET DT _ 15 det _ _ 15 day _ NOUN NN _ 13 nmod:tmod _ _ 16 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 reacting _ VERB VBG _ 13 advcl _ _ 19 to _ ADP TO _ 20 case _ _ 20 news _ NOUN NN _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 rumors _ NOUN NNS _ 20 conj _ _ 23 about _ ADP IN _ 29 case _ _ 24 the _ DET DT _ 29 det _ _ 25 proposed _ VERB VBN _ 29 amod _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 6.79 _ NUM CD _ 28 compound _ _ 28 billion _ NUM CD _ 26 nummod _ _ 29 buy-out _ NOUN NN _ 20 nmod _ _ 30 of _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 airline _ NOUN NN _ 29 nmod _ _ 33 by _ ADP IN _ 36 case _ _ 34 an _ DET DT _ 36 det _ _ 35 employee-management _ ADJ JJ _ 36 amod _ _ 36 group _ NOUN NN _ 29 nmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 1 Wall _ PROPN NNP _ 2 compound _ _ 2 Street _ PROPN NNP _ 10 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 takeover-stock _ ADJ JJ _ 5 amod _ _ 5 speculators _ NOUN NNS _ 10 conj _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 or _ CONJ CC _ 10 cc _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 risk _ NOUN NN _ 10 compound _ _ 10 arbitragers _ NOUN NNS _ 14 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 placed _ VERB VBN _ 0 root _ _ 15 unusually _ ADV RB _ 16 advmod _ _ 16 large _ ADJ JJ _ 17 amod _ _ 17 bets _ NOUN NNS _ 14 dobj _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 a _ DET DT _ 20 det _ _ 20 takeover _ NOUN NN _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 succeed _ VERB VB _ 17 ccomp _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 UAL _ PROPN NNP _ 25 compound _ _ 25 stock _ NOUN NN _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 rise _ VERB VB _ 22 conj _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 2:43 _ NUM CD _ 4 nummod _ _ 3 p.m. _ ADV RB _ 4 advmod _ _ 4 EDT _ PROPN NNP _ 6 dep _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 came _ VERB VBD _ 15 dep _ _ 7 the _ DET DT _ 9 det _ _ 8 sickening _ ADJ JJ _ 9 amod _ _ 9 news _ NOUN NN _ 6 nsubj _ _ 10 : _ PUNCT : _ 15 punct _ _ 11 The _ DET DT _ 13 det _ _ 12 Big _ PROPN NNP _ 13 compound _ _ 13 Board _ PROPN NNP _ 15 nsubj _ _ 14 was _ AUX VBD _ 15 aux _ _ 15 halting _ VERB VBG _ 0 root _ _ 16 trading _ VERB VBG _ 15 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 UAL _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 `` _ PUNCT `` _ 15 punct _ _ 21 pending _ VERB VBG _ 22 case _ _ 22 news _ NOUN NN _ 15 nmod _ _ 23 . _ PUNCT . _ 15 punct _ _ 24 '' _ PUNCT '' _ 15 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 exchange _ NOUN NN _ 4 compound _ _ 4 floor _ NOUN NN _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 `` _ PUNCT `` _ 15 punct _ _ 7 as _ ADV RB _ 8 advmod _ _ 8 soon _ ADV RB _ 15 advmod _ _ 9 as _ SCONJ IN _ 11 mark _ _ 10 UAL _ PROPN NNP _ 11 nsubj _ _ 11 stopped _ VERB VBD _ 8 advcl _ _ 12 trading _ VERB VBG _ 11 xcomp _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 we _ PRON PRP _ 15 nsubj _ _ 15 braced _ VERB VBD _ 21 ccomp _ _ 16 for _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 panic _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 one _ NUM CD _ 25 nummod _ _ 23 top _ ADJ JJ _ 25 amod _ _ 24 floor _ NOUN NN _ 25 compound _ _ 25 trader _ NOUN NN _ 21 nsubj _ _ 26 . _ PUNCT . _ 21 punct _ _ 1 Several _ ADJ JJ _ 2 amod _ _ 2 traders _ NOUN NNS _ 5 nsubjpass _ _ 3 could _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 seen _ VERB VBN _ 0 root _ _ 6 shaking _ VERB VBG _ 5 xcomp _ _ 7 their _ PRON PRP$ _ 8 nmod:poss _ _ 8 heads _ NOUN NNS _ 6 dobj _ _ 9 when _ ADV WRB _ 12 advmod _ _ 10 the _ DET DT _ 11 det _ _ 11 news _ NOUN NN _ 12 nsubj _ _ 12 flashed _ VERB VBD _ 5 advcl _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 weeks _ NOUN NNS _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 8 nsubj _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 nervous _ ADJ JJ _ 0 root _ _ 9 about _ ADP IN _ 10 case _ _ 10 takeovers _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 after _ SCONJ IN _ 18 mark _ _ 13 Campeau _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 cash _ NOUN NN _ 17 compound _ _ 17 crunch _ NOUN NN _ 18 nsubj _ _ 18 spurred _ VERB VBD _ 8 advcl _ _ 19 concern _ NOUN NN _ 18 dobj _ _ 20 about _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 prospects _ NOUN NNS _ 19 nmod _ _ 23 for _ ADP IN _ 27 case _ _ 24 future _ ADJ JJ _ 27 amod _ _ 25 highly _ ADV RB _ 26 advmod _ _ 26 leveraged _ ADJ JJ _ 27 amod _ _ 27 takeovers _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 9 cc _ _ 2 10 _ NUM CD _ 3 nummod _ _ 3 minutes _ NOUN NNS _ 9 nmod _ _ 4 after _ ADP IN _ 3 case _ _ 5 the _ DET DT _ 8 det _ _ 6 UAL _ PROPN NNP _ 8 compound _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 halt _ NOUN NN _ 3 dep _ _ 9 came _ VERB VBD _ 0 root _ _ 10 news _ NOUN NN _ 9 nsubj _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 UAL _ PROPN NNP _ 14 compound _ _ 14 group _ NOUN NN _ 17 nsubj _ _ 15 could _ AUX MD _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 get _ VERB VB _ 10 ccomp _ _ 18 financing _ NOUN NN _ 17 dobj _ _ 19 for _ ADP IN _ 21 case _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 bid _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 point _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Dow _ PROPN NNP _ 7 nsubj _ _ 7 was _ VERB VBD _ 0 root _ _ 8 down _ ADV RB _ 7 advmod _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 35 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 8 nmod:npmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 crumbled _ VERB VBD _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Arbitragers _ NOUN NNS _ 4 nsubj _ _ 2 could _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 dump _ VERB VB _ 0 root _ _ 5 their _ PRON PRP$ _ 7 nmod:poss _ _ 6 UAL _ PROPN NNP _ 7 compound _ _ 7 stock _ NOUN NN _ 4 dobj _ _ 8 -- _ PUNCT : _ 4 punct _ _ 9 but _ CONJ CC _ 4 cc _ _ 10 they _ PRON PRP _ 11 nsubj _ _ 11 rid _ VERB VBD _ 4 conj _ _ 12 themselves _ PRON PRP _ 11 dobj _ _ 13 of _ ADP IN _ 19 case _ _ 14 nearly _ ADV RB _ 15 advmod _ _ 15 every _ DET DT _ 19 amod _ _ 16 `` _ PUNCT `` _ 19 punct _ _ 17 rumor _ NOUN NN _ 19 compound _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 stock _ NOUN NN _ 11 nmod _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 had _ VERB VBD _ 19 acl:relcl _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 selling _ NOUN NN _ 6 nsubj _ _ 6 caused _ VERB VBD _ 0 root _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 halts _ NOUN NNS _ 6 dobj _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 declared _ VERB VBN _ 6 xcomp _ _ 12 in _ ADP IN _ 14 case _ _ 13 USAir _ PROPN NNP _ 14 compound _ _ 14 Group _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 closed _ VERB VBD _ 14 acl:relcl _ _ 18 down _ ADV RB _ 17 advmod _ _ 19 3 _ NUM CD _ 20 compound _ _ 20 7/8 _ NUM CD _ 18 nmod:npmod _ _ 21 to _ ADP TO _ 23 case _ _ 22 41 _ NUM CD _ 23 compound _ _ 23 1/2 _ NUM CD _ 18 nmod _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 Delta _ PROPN NNP _ 27 compound _ _ 26 Air _ PROPN NNP _ 27 compound _ _ 27 Lines _ PROPN NNP _ 14 conj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 which _ PRON WDT _ 30 nsubj _ _ 30 fell _ VERB VBD _ 27 acl:relcl _ _ 31 7 _ NUM CD _ 32 compound _ _ 32 3/4 _ NUM CD _ 30 dobj _ _ 33 to _ ADP TO _ 35 case _ _ 34 69 _ NUM CD _ 35 compound _ _ 35 1/4 _ NUM CD _ 30 nmod _ _ 36 , _ PUNCT , _ 14 punct _ _ 37 and _ CONJ CC _ 14 cc _ _ 38 Philips _ PROPN NNP _ 39 compound _ _ 39 Industries _ PROPN NNP _ 14 conj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 which _ PRON WDT _ 42 nsubj _ _ 42 sank _ VERB VBD _ 39 acl:relcl _ _ 43 3 _ NUM CD _ 42 dobj _ _ 44 to _ ADP TO _ 46 case _ _ 45 21 _ NUM CD _ 46 compound _ _ 46 1/2 _ NUM CD _ 42 nmod _ _ 47 . _ PUNCT . _ 6 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 stocks _ NOUN NNS _ 4 nsubj _ _ 3 eventually _ ADV RB _ 4 advmod _ _ 4 reopened _ VERB VBD _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 as _ SCONJ IN _ 4 mark _ _ 3 panic _ NOUN NN _ 4 nsubj _ _ 4 spread _ VERB VBD _ 7 advcl _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 speculators _ NOUN NNS _ 7 nsubj _ _ 7 began _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 sell _ VERB VB _ 7 xcomp _ _ 10 blue-chip _ ADJ JJ _ 11 amod _ _ 11 stocks _ NOUN NNS _ 9 dobj _ _ 12 such _ ADJ JJ _ 15 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 Philip _ PROPN NNP _ 15 compound _ _ 15 Morris _ PROPN NNP _ 11 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 International _ PROPN NNP _ 19 compound _ _ 18 Business _ PROPN NNP _ 19 compound _ _ 19 Machines _ PROPN NNP _ 15 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 offset _ VERB VB _ 9 advcl _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 losses _ NOUN NNS _ 21 dobj _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 trading _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 halted _ VERB VBN _ 12 advcl _ _ 5 in _ ADP IN _ 7 case _ _ 6 Philip _ PROPN NNP _ 7 compound _ _ 7 Morris _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 stock _ NOUN NN _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 trading _ VERB VBG _ 0 root _ _ 13 at _ ADP IN _ 14 case _ _ 14 41 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 down _ ADV RB _ 12 advmod _ _ 17 3 _ NUM CD _ 18 compound _ _ 18 3/8 _ NUM CD _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 while _ SCONJ IN _ 22 mark _ _ 21 IBM _ PROPN NNP _ 22 nsubj _ _ 22 closed _ VERB VBD _ 12 advcl _ _ 23 5 _ NUM CD _ 24 compound _ _ 24 5/8 _ NUM CD _ 25 nmod:npmod _ _ 25 lower _ ADJ JJR _ 22 advmod _ _ 26 at _ ADP IN _ 27 case _ _ 27 102 _ NUM CD _ 22 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 Selling _ NOUN NN _ 2 nsubj _ _ 2 snowballed _ VERB VBD _ 0 root _ _ 3 because _ ADP IN _ 5 case _ _ 4 of _ ADP IN _ 3 mwe _ _ 5 waves _ NOUN NNS _ 2 nmod _ _ 6 of _ ADP IN _ 11 case _ _ 7 automatic _ ADJ JJ _ 11 amod _ _ 8 `` _ PUNCT `` _ 11 punct _ _ 9 stop-loss _ ADJ JJ _ 11 amod _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 orders _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 15 nsubjpass _ _ 14 are _ AUX VBP _ 15 auxpass _ _ 15 triggered _ VERB VBN _ 11 acl:relcl _ _ 16 by _ ADP IN _ 17 case _ _ 17 computer _ NOUN NN _ 15 nmod _ _ 18 when _ ADV WRB _ 20 advmod _ _ 19 prices _ NOUN NNS _ 20 nsubj _ _ 20 fall _ VERB VBP _ 15 advcl _ _ 21 to _ ADP TO _ 23 case _ _ 22 certain _ ADJ JJ _ 23 amod _ _ 23 levels _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 Most _ ADJ JJS _ 7 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 stock _ NOUN NN _ 6 compound _ _ 5 selling _ NOUN NN _ 6 compound _ _ 6 pressure _ NOUN NN _ 1 nmod _ _ 7 came _ VERB VBD _ 0 root _ _ 8 from _ ADP IN _ 11 case _ _ 9 Wall _ PROPN NNP _ 11 compound _ _ 10 Street _ PROPN NNP _ 11 compound _ _ 11 professionals _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 including _ VERB VBG _ 16 case _ _ 14 computer-guided _ ADJ JJ _ 16 amod _ _ 15 program _ NOUN NN _ 16 compound _ _ 16 traders _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 Traders _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 most _ ADJ JJS _ 15 nsubj _ _ 4 of _ ADP IN _ 8 case _ _ 5 their _ PRON PRP$ _ 8 nmod:poss _ _ 6 major _ ADJ JJ _ 8 amod _ _ 7 institutional _ ADJ JJ _ 8 amod _ _ 8 investors _ NOUN NNS _ 3 nmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 on _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 other _ ADJ JJ _ 13 amod _ _ 13 hand _ NOUN NN _ 15 nmod _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 sat _ VERB VBD _ 2 ccomp _ _ 16 tight _ ADV RB _ 15 advmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 15 advmod _ _ 2 , _ PUNCT , _ 15 punct _ _ 3 at _ ADP IN _ 4 case _ _ 4 3:07 _ NUM CD _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 one _ NUM CD _ 15 nsubj _ _ 7 of _ ADP IN _ 13 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 post-crash _ ADJ JJ _ 13 amod _ _ 12 `` _ PUNCT `` _ 13 punct _ _ 13 reforms _ NOUN NNS _ 6 nmod _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 took _ VERB VBD _ 0 root _ _ 16 hold _ NOUN NN _ 15 dobj _ _ 17 as _ SCONJ IN _ 24 mark _ _ 18 the _ DET DT _ 22 det _ _ 19 S&P _ PROPN NNP _ 22 compound _ _ 20 500 _ NUM CD _ 22 nummod _ _ 21 futures _ NOUN NNS _ 22 compound _ _ 22 contract _ NOUN NN _ 24 nsubj _ _ 23 had _ AUX VBD _ 24 aux _ _ 24 plunged _ VERB VBN _ 15 advcl _ _ 25 12 _ NUM CD _ 26 nummod _ _ 26 points _ NOUN NNS _ 24 dobj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 equivalent _ ADJ JJ _ 26 amod _ _ 29 to _ ADP TO _ 33 case _ _ 30 around _ ADP IN _ 32 advmod _ _ 31 a _ DET DT _ 32 advmod _ _ 32 100-point _ ADJ JJ _ 33 nummod _ _ 33 drop _ NOUN NN _ 28 nmod _ _ 34 in _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 Dow _ PROPN NNP _ 37 compound _ _ 37 industrials _ NOUN NNS _ 33 nmod _ _ 38 . _ PUNCT . _ 15 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 18 nmod _ _ 4 signed _ VERB VBN _ 3 acl _ _ 5 by _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Big _ PROPN NNP _ 8 compound _ _ 8 Board _ PROPN NNP _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 the _ DET DT _ 13 det _ _ 11 Chicago _ PROPN NNP _ 13 compound _ _ 12 Mercantile _ PROPN NNP _ 13 compound _ _ 13 Exchange _ PROPN NNP _ 8 conj _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 trading _ NOUN NN _ 18 nsubjpass _ _ 16 was _ AUX VBD _ 18 auxpass _ _ 17 temporarily _ ADV RB _ 18 advmod _ _ 18 halted _ VERB VBN _ 0 root _ _ 19 in _ ADP IN _ 20 case _ _ 20 Chicago _ PROPN NNP _ 18 nmod _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 trading _ NOUN NN _ 4 compound _ _ 4 halt _ NOUN NN _ 16 nmod _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 S&P _ PROPN NNP _ 9 compound _ _ 8 500 _ NUM CD _ 9 nummod _ _ 9 pit _ NOUN NN _ 4 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Chicago _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 waves _ NOUN NNS _ 16 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 selling _ NOUN NN _ 13 nmod _ _ 16 continued _ VERB VBD _ 0 root _ _ 17 to _ PART TO _ 18 mark _ _ 18 hit _ VERB VB _ 16 xcomp _ _ 19 stocks _ NOUN NNS _ 18 dobj _ _ 20 themselves _ PRON PRP _ 19 nmod:npmod _ _ 21 on _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 Big _ PROPN NNP _ 24 compound _ _ 24 Board _ PROPN NNP _ 18 nmod _ _ 25 , _ PUNCT , _ 16 punct _ _ 26 and _ CONJ CC _ 16 cc _ _ 27 specialists _ NOUN NNS _ 28 nsubj _ _ 28 continued _ VERB VBD _ 16 conj _ _ 29 to _ PART TO _ 30 mark _ _ 30 notch _ VERB VB _ 28 xcomp _ _ 31 prices _ NOUN NNS _ 30 dobj _ _ 32 down _ ADP RP _ 30 advmod _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 13 nmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 link _ NOUN NN _ 13 nsubj _ _ 7 between _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 futures _ NOUN NNS _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 markets _ NOUN NNS _ 9 conj _ _ 13 ripped _ VERB VBD _ 0 root _ _ 14 apart _ ADV RB _ 13 advmod _ _ 15 . _ PUNCT . _ 13 punct _ _ 1 Without _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 guidepost _ NOUN NN _ 24 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 stock-index _ ADJ JJ _ 6 amod _ _ 6 futures _ NOUN NNS _ 3 nmod _ _ 7 -- _ PUNCT : _ 6 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 barometer _ NOUN NN _ 6 dep _ _ 10 of _ SCONJ IN _ 13 mark _ _ 11 where _ ADV WRB _ 13 advmod _ _ 12 traders _ NOUN NNS _ 13 nsubj _ _ 13 think _ VERB VBP _ 9 acl _ _ 14 the _ DET DT _ 17 det _ _ 15 overall _ ADJ JJ _ 17 amod _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 19 nsubjpass _ _ 18 is _ AUX VBZ _ 19 auxpass _ _ 19 headed _ VERB VBN _ 13 ccomp _ _ 20 -- _ PUNCT : _ 6 punct _ _ 21 many _ ADJ JJ _ 22 amod _ _ 22 traders _ NOUN NNS _ 24 nsubj _ _ 23 were _ VERB VBD _ 24 cop _ _ 24 afraid _ ADJ JJ _ 0 root _ _ 25 to _ PART TO _ 26 mark _ _ 26 trust _ VERB VB _ 24 xcomp _ _ 27 stock _ NOUN NN _ 28 compound _ _ 28 prices _ NOUN NNS _ 26 dobj _ _ 29 quoted _ VERB VBN _ 28 acl _ _ 30 on _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 Big _ PROPN NNP _ 33 compound _ _ 33 Board _ PROPN NNP _ 29 nmod _ _ 34 . _ PUNCT . _ 24 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 halt _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 even _ ADV RB _ 6 advmod _ _ 6 assailed _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 11 case _ _ 8 Big _ PROPN NNP _ 11 compound _ _ 9 Board _ PROPN NNP _ 11 compound _ _ 10 floor _ NOUN NN _ 11 compound _ _ 11 traders _ NOUN NNS _ 6 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 screwed _ VERB VBD _ 8 ccomp _ _ 4 things _ NOUN NNS _ 3 dobj _ _ 5 up _ ADP RP _ 3 compound:prt _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 one _ NUM CD _ 11 nummod _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 specialist _ NOUN NN _ 8 nsubj _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 confusion _ NOUN NN _ 4 nsubj _ _ 3 effectively _ ADV RB _ 4 advmod _ _ 4 halted _ VERB VBD _ 0 root _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 form _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 program _ NOUN NN _ 9 compound _ _ 9 trading _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 stock _ NOUN NN _ 13 compound _ _ 12 index _ NOUN NN _ 13 compound _ _ 13 arbitrage _ NOUN NN _ 6 appos _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 closely _ ADV RB _ 17 advmod _ _ 17 links _ VERB VBZ _ 6 acl:relcl _ _ 18 the _ DET DT _ 19 det _ _ 19 futures _ NOUN NNS _ 17 dobj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 markets _ NOUN NNS _ 19 conj _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 and _ CONJ CC _ 17 cc _ _ 25 has _ AUX VBZ _ 27 aux _ _ 26 been _ AUX VBN _ 27 auxpass _ _ 27 blamed _ VERB VBN _ 17 conj _ _ 28 by _ ADP IN _ 29 case _ _ 29 some _ DET DT _ 27 nmod _ _ 30 for _ ADP IN _ 35 case _ _ 31 the _ DET DT _ 32 det _ _ 32 market _ NOUN NN _ 35 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 big _ ADJ JJ _ 35 amod _ _ 35 swings _ NOUN NNS _ 27 nmod _ _ 36 . _ PUNCT . _ 4 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 2 In _ ADP IN _ 7 case _ _ 3 a _ DET DT _ 7 det _ _ 4 stock-index _ ADJ JJ _ 7 amod _ _ 5 arbitrage _ NOUN NN _ 7 compound _ _ 6 sell _ NOUN NN _ 7 compound _ _ 7 program _ NOUN NN _ 10 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 traders _ NOUN NNS _ 10 nsubj _ _ 10 buy _ VERB VBP _ 0 root _ _ 11 or _ CONJ CC _ 10 cc _ _ 12 sell _ VERB VBP _ 10 conj _ _ 13 big _ ADJ JJ _ 14 amod _ _ 14 baskets _ NOUN NNS _ 10 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 stocks _ NOUN NNS _ 14 nmod _ _ 17 and _ CONJ CC _ 10 cc _ _ 18 offset _ VERB VBP _ 10 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 trade _ NOUN NN _ 18 dobj _ _ 21 in _ ADP IN _ 22 case _ _ 22 futures _ NOUN NNS _ 20 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 lock _ VERB VB _ 18 advcl _ _ 25 in _ ADP RP _ 24 compound:prt _ _ 26 a _ DET DT _ 28 det _ _ 27 price _ NOUN NN _ 28 compound _ _ 28 difference _ NOUN NN _ 24 dobj _ _ 29 . _ PUNCT . _ 10 punct _ _ 30 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 When _ ADV WRB _ 6 advmod _ _ 3 the _ DET DT _ 5 det _ _ 4 airline _ NOUN NN _ 5 compound _ _ 5 information _ NOUN NN _ 6 nsubj _ _ 6 came _ VERB VBD _ 10 advcl _ _ 7 through _ ADP RP _ 6 compound:prt _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 cracked _ VERB VBD _ 20 ccomp _ _ 11 every _ DET DT _ 12 det _ _ 12 model _ NOUN NN _ 10 dobj _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 had _ VERB VBD _ 12 acl:relcl _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 marketplace _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 managing _ NOUN NN _ 23 compound _ _ 23 director _ NOUN NN _ 20 dep _ _ 24 at _ ADP IN _ 25 case _ _ 25 one _ NUM CD _ 23 nmod _ _ 26 of _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 largest _ ADJ JJS _ 30 amod _ _ 29 program-trading _ NOUN NN _ 30 compound _ _ 30 firms _ NOUN NNS _ 25 nmod _ _ 31 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 did _ AUX VBD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 even _ ADV RB _ 6 advmod _ _ 6 get _ VERB VB _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 chance _ NOUN NN _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 do _ VERB VB _ 8 acl _ _ 11 the _ DET DT _ 12 det _ _ 12 programs _ NOUN NNS _ 10 dobj _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 wanted _ VERB VBD _ 12 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 do _ VERB VB _ 14 xcomp _ _ 17 . _ PUNCT . _ 6 punct _ _ 18 '' _ PUNCT '' _ 6 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 stocks _ NOUN NNS _ 3 nsubj _ _ 3 kept _ VERB VBD _ 0 root _ _ 4 falling _ VERB VBG _ 3 xcomp _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Dow _ PROPN NNP _ 3 compound _ _ 3 industrials _ NOUN NNS _ 9 nsubj _ _ 4 were _ VERB VBD _ 9 cop _ _ 5 down _ ADV RB _ 9 advmod _ _ 6 55 _ NUM CD _ 7 nummod _ _ 7 points _ NOUN NNS _ 5 nmod:npmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 3 _ NUM CD _ 0 root _ _ 10 p.m. _ ADV RB _ 9 advmod _ _ 11 before _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 futures-trading _ ADJ JJ _ 14 amod _ _ 14 halt _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 3:30 _ NUM CD _ 18 nmod _ _ 3 p.m. _ ADV RB _ 2 advmod _ _ 4 , _ PUNCT , _ 18 punct _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 end _ NOUN NN _ 18 nmod _ _ 8 of _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 `` _ PUNCT `` _ 14 punct _ _ 11 cooling _ VERB VBG _ 14 amod _ _ 12 off _ ADP RP _ 14 dep _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 period _ NOUN NN _ 7 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 the _ DET DT _ 17 det _ _ 17 average _ NOUN NN _ 18 nsubj _ _ 18 was _ VERB VBD _ 0 root _ _ 19 down _ ADV RB _ 18 advmod _ _ 20 114.76 _ NUM CD _ 21 nummod _ _ 21 points _ NOUN NNS _ 19 nmod:npmod _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 Meanwhile _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 during _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det:predet _ _ 5 the _ DET DT _ 8 det _ _ 6 S&P _ PROPN NNP _ 8 compound _ _ 7 trading _ NOUN NN _ 8 compound _ _ 8 halt _ NOUN NN _ 14 nmod _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 S&P _ PROPN NNP _ 13 compound _ _ 11 futures _ NOUN NNS _ 13 compound _ _ 12 sell _ NOUN NN _ 13 compound _ _ 13 orders _ NOUN NNS _ 14 nsubj _ _ 14 began _ VERB VBD _ 0 root _ _ 15 piling _ VERB VBG _ 14 xcomp _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 while _ SCONJ IN _ 23 mark _ _ 19 stocks _ NOUN NNS _ 23 nsubj _ _ 20 in _ ADP IN _ 22 case _ _ 21 New _ PROPN NNP _ 22 compound _ _ 22 York _ PROPN NNP _ 19 nmod _ _ 23 kept _ VERB VBD _ 14 advcl _ _ 24 falling _ VERB VBG _ 23 xcomp _ _ 25 sharply _ ADV RB _ 24 advmod _ _ 26 . _ PUNCT . _ 14 punct _ _ 1 Big _ PROPN NNP _ 6 compound _ _ 2 Board _ PROPN NNP _ 6 compound _ _ 3 Chairman _ PROPN NNP _ 6 compound _ _ 4 John _ PROPN NNP _ 6 compound _ _ 5 J. _ PROPN NNP _ 6 compound _ _ 6 Phelan _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 yesterday _ NOUN NN _ 7 nmod:tmod _ _ 9 the _ DET DT _ 11 det _ _ 10 circuit _ NOUN NN _ 11 compound _ _ 11 breaker _ NOUN NN _ 13 nsubj _ _ 12 `` _ PUNCT `` _ 13 punct _ _ 13 worked _ VERB VBD _ 7 ccomp _ _ 14 well _ ADV RB _ 13 advmod _ _ 15 mechanically _ ADV RB _ 13 advmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 3 nsubj _ _ 2 just _ ADV RB _ 3 advmod _ _ 3 think _ VERB VBP _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 's _ VERB VBZ _ 6 cop _ _ 6 nonproductive _ ADJ JJ _ 3 ccomp _ _ 7 at _ ADP IN _ 9 case _ _ 8 this _ DET DT _ 9 det _ _ 9 point _ NOUN NN _ 6 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 get _ VERB VB _ 6 xcomp _ _ 12 into _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 debate _ NOUN NN _ 11 nmod _ _ 15 if _ SCONJ IN _ 20 mark _ _ 16 index _ NOUN NN _ 17 compound _ _ 17 arbitrage _ NOUN NN _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 have _ AUX VB _ 20 aux _ _ 20 helped _ VERB VBN _ 14 ccomp _ _ 21 or _ CONJ CC _ 20 cc _ _ 22 hurt _ VERB VBN _ 20 conj _ _ 23 things _ NOUN NNS _ 20 dobj _ _ 24 . _ PUNCT . _ 3 punct _ _ 25 '' _ PUNCT '' _ 3 punct _ _ 1 Under _ ADP IN _ 4 case _ _ 2 another _ DET DT _ 4 det _ _ 3 post-crash _ ADJ JJ _ 4 amod _ _ 4 system _ NOUN NN _ 25 nmod _ _ 5 , _ PUNCT , _ 25 punct _ _ 6 Big _ PROPN NNP _ 10 compound _ _ 7 Board _ PROPN NNP _ 10 compound _ _ 8 President _ PROPN NNP _ 10 compound _ _ 9 Richard _ PROPN NNP _ 10 compound _ _ 10 Grasso _ PROPN NNP _ 25 nsubj _ _ 11 -LRB- _ PUNCT -LRB- _ 15 punct _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Phelan _ PROPN NNP _ 15 nsubj _ _ 14 was _ AUX VBD _ 15 aux _ _ 15 flying _ VERB VBG _ 25 parataxis _ _ 16 to _ ADP TO _ 17 case _ _ 17 Bangkok _ PROPN NNP _ 15 nmod _ _ 18 as _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 22 nsubj _ _ 21 was _ AUX VBD _ 22 aux _ _ 22 falling _ VERB VBG _ 15 advcl _ _ 23 -RRB- _ PUNCT -RRB- _ 15 punct _ _ 24 was _ AUX VBD _ 25 aux _ _ 25 talking _ VERB VBG _ 0 root _ _ 26 on _ ADP IN _ 31 case _ _ 27 an _ DET DT _ 31 det _ _ 28 `` _ PUNCT `` _ 31 punct _ _ 29 inter-exchange _ ADJ JJ _ 31 amod _ _ 30 hot _ ADJ JJ _ 31 amod _ _ 31 line _ NOUN NN _ 25 nmod _ _ 32 '' _ PUNCT '' _ 31 punct _ _ 33 to _ ADP TO _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 other _ ADJ JJ _ 36 amod _ _ 36 exchanges _ NOUN NNS _ 31 nmod _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 the _ DET DT _ 42 det _ _ 39 Securities _ PROPN NNP _ 42 compound _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 Exchange _ PROPN NNP _ 39 conj _ _ 42 Commission _ PROPN NNP _ 36 conj _ _ 43 and _ CONJ CC _ 36 cc _ _ 44 the _ DET DT _ 47 det _ _ 45 Federal _ PROPN NNP _ 47 compound _ _ 46 Reserve _ PROPN NNP _ 47 compound _ _ 47 Board _ PROPN NNP _ 36 conj _ _ 48 . _ PUNCT . _ 25 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 camped _ VERB VBD _ 0 root _ _ 3 out _ ADP RP _ 2 compound:prt _ _ 4 at _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 high-tech _ ADJ JJ _ 8 amod _ _ 7 nerve _ NOUN NN _ 8 compound _ _ 8 center _ NOUN NN _ 2 nmod _ _ 9 on _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 floor _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Big _ PROPN NNP _ 15 compound _ _ 15 Board _ PROPN NNP _ 11 nmod _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 where _ ADV WRB _ 20 advmod _ _ 18 he _ PRON PRP _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 watch _ VERB VB _ 8 acl:relcl _ _ 21 updates _ NOUN NNS _ 20 dobj _ _ 22 on _ ADP IN _ 23 case _ _ 23 prices _ NOUN NNS _ 21 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 pending _ VERB VBG _ 27 amod _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 orders _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 5 case _ _ 2 about _ ADV RB _ 5 advmod _ _ 3 3:30 _ NUM CD _ 5 nummod _ _ 4 p.m. _ ADV RB _ 5 advmod _ _ 5 EDT _ PROPN NNP _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 S&P _ PROPN NNP _ 8 compound _ _ 8 futures _ NOUN NNS _ 9 nsubj _ _ 9 resumed _ VERB VBD _ 0 root _ _ 10 trading _ VERB VBG _ 9 xcomp _ _ 11 , _ PUNCT , _ 9 punct _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 for _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 brief _ ADJ JJ _ 16 amod _ _ 16 time _ NOUN NN _ 22 nmod _ _ 17 the _ DET DT _ 18 det _ _ 18 futures _ NOUN NNS _ 22 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 stock _ NOUN NN _ 21 compound _ _ 21 markets _ NOUN NNS _ 18 conj _ _ 22 started _ VERB VBD _ 9 conj _ _ 23 to _ PART TO _ 24 mark _ _ 24 come _ VERB VB _ 22 xcomp _ _ 25 back _ ADV RB _ 24 advmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 line _ NOUN NN _ 25 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 Buyers _ NOUN NNS _ 2 nsubj _ _ 2 stepped _ VERB VBD _ 0 root _ _ 3 in _ ADP IN _ 2 advmod _ _ 4 to _ ADP TO _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 futures _ NOUN NNS _ 7 compound _ _ 7 pit _ NOUN NN _ 3 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 build-up _ NOUN NN _ 9 nsubj _ _ 4 of _ ADP IN _ 8 case _ _ 5 S&P _ PROPN NNP _ 8 compound _ _ 6 futures _ NOUN NNS _ 8 compound _ _ 7 sell _ NOUN NN _ 8 compound _ _ 8 orders _ NOUN NNS _ 3 nmod _ _ 9 weighed _ VERB VBD _ 0 root _ _ 10 on _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 market _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 the _ DET DT _ 16 det _ _ 16 link _ NOUN NN _ 19 nsubj _ _ 17 with _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 began _ VERB VBD _ 9 conj _ _ 20 to _ PART TO _ 21 mark _ _ 21 fray _ VERB VB _ 19 xcomp _ _ 22 again _ ADV RB _ 21 advmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 about _ ADV RB _ 3 advmod _ _ 3 3:45 _ NUM CD _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 S&P _ PROPN NNP _ 7 compound _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 careened _ VERB VBD _ 0 root _ _ 9 to _ ADP TO _ 12 case _ _ 10 still _ ADV RB _ 11 advmod _ _ 11 another _ DET DT _ 12 amod _ _ 12 limit _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 of _ ADP IN _ 16 case _ _ 15 30 _ NUM CD _ 16 nummod _ _ 16 points _ NOUN NNS _ 12 nmod _ _ 17 down _ ADV RB _ 16 advmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 and _ CONJ CC _ 8 cc _ _ 20 trading _ NOUN NN _ 22 nsubjpass _ _ 21 was _ AUX VBD _ 22 auxpass _ _ 22 locked _ VERB VBN _ 8 conj _ _ 23 again _ ADV RB _ 22 advmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 Futures _ NOUN NNS _ 2 compound _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 say _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 S&P _ PROPN NNP _ 7 nsubj _ _ 6 was _ AUX VBD _ 7 aux _ _ 7 signaling _ VERB VBG _ 3 ccomp _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 Dow _ PROPN NNP _ 12 nsubj _ _ 11 could _ AUX MD _ 12 aux _ _ 12 fall _ VERB VB _ 7 ccomp _ _ 13 as _ ADV RB _ 14 advmod _ _ 14 much _ ADJ JJ _ 12 dobj _ _ 15 as _ ADP IN _ 17 case _ _ 16 200 _ NUM CD _ 17 nummod _ _ 17 points _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 During _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 small _ ADJ JJ _ 6 amod _ _ 6 investors _ NOUN NNS _ 7 nsubj _ _ 7 began _ VERB VBD _ 0 root _ _ 8 ringing _ VERB VBG _ 7 xcomp _ _ 9 their _ PRON PRP$ _ 10 nmod:poss _ _ 10 brokers _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 wondering _ VERB VBG _ 7 xcomp _ _ 13 whether _ SCONJ IN _ 17 mark _ _ 14 another _ DET DT _ 15 det _ _ 15 crash _ NOUN NN _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 begun _ VERB VBN _ 12 ccomp _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 Prudential-Bache _ PROPN NNP _ 4 compound _ _ 3 Securities _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 18 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 trying _ VERB VBG _ 4 acl:relcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 cater _ VERB VB _ 8 xcomp _ _ 11 to _ ADP TO _ 13 case _ _ 12 small _ ADJ JJ _ 13 amod _ _ 13 investors _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 some _ DET DT _ 17 det _ _ 16 demoralized _ ADJ JJ _ 17 amod _ _ 17 brokers _ NOUN NNS _ 18 nsubj _ _ 18 thought _ VERB VBD _ 0 root _ _ 19 this _ PRON DT _ 24 nsubj _ _ 20 would _ AUX MD _ 24 aux _ _ 21 be _ VERB VB _ 24 cop _ _ 22 the _ DET DT _ 24 det _ _ 23 final _ ADJ JJ _ 24 amod _ _ 24 confidence-crusher _ NOUN NN _ 18 ccomp _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 when _ ADV WRB _ 18 advmod _ _ 4 George _ PROPN NNP _ 6 compound _ _ 5 L. _ PROPN NNP _ 6 compound _ _ 6 Ball _ PROPN NNP _ 18 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 chairman _ NOUN NN _ 6 appos _ _ 9 of _ ADP IN _ 16 case _ _ 10 the _ DET DT _ 16 det _ _ 11 Prudential _ PROPN NNP _ 16 dep _ _ 12 Insurance _ PROPN NNP _ 11 compound _ _ 13 Co. _ PROPN NNP _ 11 dep _ _ 14 of _ ADP IN _ 15 case _ _ 15 America _ PROPN NNP _ 11 nmod _ _ 16 unit _ NOUN NN _ 8 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 took _ VERB VBD _ 2 advcl _ _ 19 to _ ADP TO _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 internal _ ADJ JJ _ 23 amod _ _ 22 intercom _ NOUN NN _ 23 compound _ _ 23 system _ NOUN NN _ 18 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 declare _ VERB VB _ 18 xcomp _ _ 26 that _ SCONJ IN _ 32 mark _ _ 27 the _ DET DT _ 28 det _ _ 28 plunge _ NOUN NN _ 32 nsubj _ _ 29 was _ VERB VBD _ 32 cop _ _ 30 only _ ADV RB _ 32 advmod _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 mechanical _ ADJ JJ _ 25 ccomp _ _ 33 . _ PUNCT . _ 2 punct _ _ 34 '' _ PUNCT '' _ 2 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 hunch _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 this _ DET DT _ 9 det _ _ 8 particular _ ADJ JJ _ 9 amod _ _ 9 decline _ NOUN NN _ 12 nsubj _ _ 10 today _ NOUN NN _ 9 nmod:tmod _ _ 11 is _ VERB VBZ _ 12 cop _ _ 12 something _ NOUN NN _ 5 ccomp _ _ 13 ` _ PUNCT `` _ 12 punct _ _ 14 more _ ADJ JJR _ 15 amod _ _ 15 ado _ NOUN NN _ 12 dep _ _ 16 about _ ADP IN _ 17 case _ _ 17 less _ ADJ JJR _ 15 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 ' _ PUNCT '' _ 3 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 would _ AUX MD _ 5 aux _ _ 3 be _ VERB VB _ 5 cop _ _ 4 my _ PRON PRP$ _ 5 nmod:poss _ _ 5 inclination _ NOUN NN _ 24 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 advise _ VERB VB _ 5 advcl _ _ 8 clients _ NOUN NNS _ 7 dobj _ _ 9 not _ PART RB _ 11 neg _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 7 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 look _ VERB VB _ 11 dep _ _ 15 for _ ADP IN _ 17 case _ _ 16 an _ DET DT _ 17 det _ _ 17 opportunity _ NOUN NN _ 14 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 buy _ VERB VB _ 17 acl _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 '' _ PUNCT '' _ 24 punct _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Ball _ PROPN NNP _ 24 nsubj _ _ 24 told _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 26 det _ _ 26 brokers _ NOUN NNS _ 24 dobj _ _ 27 . _ PUNCT . _ 24 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Merrill _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 18 nmod _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Co. _ PROPN NNP _ 3 conj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 nation _ NOUN NN _ 12 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 biggest _ ADJ JJS _ 12 amod _ _ 11 brokerage _ NOUN NN _ 12 compound _ _ 12 firm _ NOUN NN _ 3 appos _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 a _ DET DT _ 16 det _ _ 15 news _ NOUN NN _ 16 compound _ _ 16 release _ NOUN NN _ 18 nsubjpass _ _ 17 was _ AUX VBD _ 18 auxpass _ _ 18 prepared _ VERB VBN _ 0 root _ _ 19 headlined _ VERB VBN _ 18 dep _ _ 20 `` _ PUNCT `` _ 23 punct _ _ 21 Merrill _ PROPN NNP _ 22 compound _ _ 22 Lynch _ PROPN NNP _ 23 nsubj _ _ 23 Comments _ PROPN NNP _ 19 xcomp _ _ 24 on _ ADP IN _ 26 case _ _ 25 Market _ PROPN NNP _ 26 compound _ _ 26 Drop _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 18 punct _ _ 28 '' _ PUNCT '' _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 release _ NOUN NN _ 3 nsubj _ _ 3 cautioned _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 `` _ PUNCT `` _ 7 punct _ _ 6 there _ PRON EX _ 7 expl _ _ 7 are _ VERB VBP _ 3 ccomp _ _ 8 significant _ ADJ JJ _ 9 amod _ _ 9 differences _ NOUN NNS _ 7 nsubj _ _ 10 between _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 current _ ADJ JJ _ 13 amod _ _ 13 environment _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 that _ ADP IN _ 13 conj _ _ 16 of _ ADP IN _ 17 case _ _ 17 October _ PROPN NNP _ 15 nmod _ _ 18 1987 _ NUM CD _ 17 nummod _ _ 19 '' _ PUNCT '' _ 7 punct _ _ 20 and _ CONJ CC _ 7 cc _ _ 21 that _ SCONJ IN _ 23 mark _ _ 22 there _ PRON EX _ 23 expl _ _ 23 are _ VERB VBP _ 7 conj _ _ 24 still _ ADV RB _ 23 advmod _ _ 25 `` _ PUNCT `` _ 28 punct _ _ 26 attractive _ ADJ JJ _ 28 amod _ _ 27 investment _ NOUN NN _ 28 compound _ _ 28 opportunities _ NOUN NNS _ 23 nsubj _ _ 29 '' _ PUNCT '' _ 28 punct _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 stock _ NOUN NN _ 33 compound _ _ 33 market _ NOUN NN _ 28 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 However _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 Jeffrey _ PROPN NNP _ 5 compound _ _ 4 B. _ PROPN NNP _ 5 compound _ _ 5 Lane _ PROPN NNP _ 14 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 president _ NOUN NN _ 5 appos _ _ 8 of _ ADP IN _ 12 case _ _ 9 Shearson _ PROPN NNP _ 12 compound _ _ 10 Lehman _ PROPN NNP _ 12 compound _ _ 11 Hutton _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 7 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 that _ SCONJ IN _ 21 mark _ _ 16 Friday _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 plunge _ NOUN NN _ 21 nsubj _ _ 19 is _ AUX VBZ _ 21 aux _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 going _ VERB VBG _ 14 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 set _ VERB VB _ 21 xcomp _ _ 24 back _ ADP RP _ 23 compound:prt _ _ 25 '' _ PUNCT '' _ 23 punct _ _ 26 relations _ NOUN NNS _ 23 dobj _ _ 27 with _ ADP IN _ 28 case _ _ 28 customers _ NOUN NNS _ 26 nmod _ _ 29 , _ PUNCT , _ 21 punct _ _ 30 `` _ PUNCT `` _ 21 punct _ _ 31 because _ SCONJ IN _ 33 mark _ _ 32 it _ PRON PRP _ 33 nsubj _ _ 33 reinforces _ VERB VBZ _ 21 advcl _ _ 34 the _ DET DT _ 35 det _ _ 35 concern _ NOUN NN _ 33 dobj _ _ 36 of _ ADP IN _ 37 case _ _ 37 volatility _ NOUN NN _ 35 nmod _ _ 38 . _ PUNCT . _ 14 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 lot _ NOUN NN _ 9 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 people _ NOUN NNS _ 5 nmod _ _ 8 will _ AUX MD _ 9 aux _ _ 9 harp _ VERB VB _ 3 ccomp _ _ 10 on _ ADP IN _ 12 case _ _ 11 program _ NOUN NN _ 12 compound _ _ 12 trading _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 bring _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 debate _ NOUN NN _ 5 dobj _ _ 8 right _ ADV RB _ 9 advmod _ _ 9 back _ ADV RB _ 5 advmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 forefront _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 Dow _ PROPN NNP _ 5 nsubj _ _ 4 average _ ADJ JJ _ 3 amod _ _ 5 ground _ NOUN NN _ 16 advcl _ _ 6 to _ ADP TO _ 10 case _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 final _ ADJ JJ _ 10 amod _ _ 9 190.58 _ NUM CD _ 10 nummod _ _ 10 loss _ NOUN NN _ 5 nmod _ _ 11 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 the _ DET DT _ 15 det _ _ 14 S&P _ PROPN NNP _ 15 compound _ _ 15 pit _ NOUN NN _ 16 nsubj _ _ 16 stayed _ VERB VBD _ 0 root _ _ 17 locked _ ADJ JJ _ 16 xcomp _ _ 18 at _ ADP IN _ 22 case _ _ 19 its _ PRON PRP$ _ 22 nmod:poss _ _ 20 30-point _ ADJ JJ _ 22 amod _ _ 21 trading _ NOUN NN _ 22 compound _ _ 22 limit _ NOUN NN _ 17 nmod _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 Jeffrey _ PROPN NNP _ 2 compound _ _ 2 Yass _ PROPN NNP _ 9 nsubj _ _ 3 of _ ADP IN _ 8 case _ _ 4 program _ NOUN NN _ 8 compound _ _ 5 trader _ NOUN NN _ 8 compound _ _ 6 Susquehanna _ PROPN NNP _ 8 compound _ _ 7 Investment _ PROPN NNP _ 8 compound _ _ 8 Group _ PROPN NNP _ 2 nmod _ _ 9 said _ VERB VBD _ 0 root _ _ 10 2,000 _ NUM CD _ 12 nummod _ _ 11 S&P _ PROPN NNP _ 12 compound _ _ 12 contracts _ NOUN NNS _ 21 nsubj _ _ 13 were _ VERB VBD _ 21 cop _ _ 14 for _ ADP IN _ 15 case _ _ 15 sale _ NOUN NN _ 21 nmod _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 close _ NOUN NN _ 21 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 equivalent _ NOUN NN _ 9 ccomp _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 330 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 in _ ADP IN _ 27 case _ _ 27 stock _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 there _ PRON EX _ 3 expl _ _ 3 were _ VERB VBD _ 0 root _ _ 4 no _ DET DT _ 5 neg _ _ 5 buyers _ NOUN NNS _ 3 nsubj _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 debacle _ NOUN NN _ 5 nsubj _ _ 5 involved _ VERB VB _ 14 advcl _ _ 6 mainly _ ADV RB _ 5 advmod _ _ 7 professional _ ADJ JJ _ 8 amod _ _ 8 traders _ NOUN NNS _ 5 dobj _ _ 9 rather _ ADV RB _ 11 case _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 investors _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 left _ VERB VBD _ 25 ccomp _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 vulnerable _ ADJ JJ _ 14 xcomp _ _ 18 to _ ADP TO _ 20 case _ _ 19 continued _ ADJ JJ _ 20 amod _ _ 20 selling _ NOUN NN _ 17 nmod _ _ 21 this _ DET DT _ 22 det _ _ 22 morning _ NOUN NN _ 17 dep _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 traders _ NOUN NNS _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Stock-index _ ADJ JJ _ 3 amod _ _ 2 futures _ NOUN NNS _ 3 compound _ _ 3 contracts _ NOUN NNS _ 4 nsubj _ _ 4 settled _ VERB VBD _ 0 root _ _ 5 at _ ADP IN _ 8 case _ _ 6 much _ ADV RB _ 7 advmod _ _ 7 lower _ ADJ JJR _ 8 amod _ _ 8 prices _ NOUN NNS _ 4 nmod _ _ 9 than _ ADP IN _ 10 case _ _ 10 indexes _ NOUN NNS _ 8 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 stock _ NOUN NN _ 14 compound _ _ 14 market _ NOUN NN _ 10 nmod _ _ 15 itself _ PRON PRP _ 14 nmod:npmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 those _ DET DT _ 3 det _ _ 3 levels _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 stocks _ NOUN NNS _ 7 nsubjpass _ _ 6 are _ AUX VBP _ 7 auxpass _ _ 7 set _ VERB VBN _ 0 root _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 hammered _ VERB VBN _ 7 xcomp _ _ 12 by _ ADP IN _ 14 case _ _ 13 index _ NOUN NN _ 14 compound _ _ 14 arbitragers _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 who _ PRON WP _ 17 nsubj _ _ 17 lock _ VERB VBP _ 14 acl:relcl _ _ 18 in _ ADP RP _ 17 compound:prt _ _ 19 profits _ NOUN NNS _ 17 dobj _ _ 20 by _ SCONJ IN _ 21 mark _ _ 21 buying _ VERB VBG _ 17 advcl _ _ 22 futures _ NOUN NNS _ 21 dobj _ _ 23 when _ ADV WRB _ 26 advmod _ _ 24 futures _ NOUN NNS _ 25 compound _ _ 25 prices _ NOUN NNS _ 26 nsubj _ _ 26 fall _ VERB VBP _ 21 advcl _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 and _ CONJ CC _ 17 cc _ _ 29 simultaneously _ ADV RB _ 30 advmod _ _ 30 sell _ VERB VBP _ 17 conj _ _ 31 off _ ADP RP _ 30 compound:prt _ _ 32 stocks _ NOUN NNS _ 30 dobj _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 nobody _ NOUN NN _ 3 nsubj _ _ 3 knows _ VERB VBZ _ 0 root _ _ 4 at _ ADP IN _ 6 case _ _ 5 what _ PRON WP _ 6 det _ _ 6 level _ NOUN NN _ 12 nmod _ _ 7 the _ DET DT _ 8 det _ _ 8 futures _ NOUN NNS _ 12 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 stocks _ NOUN NNS _ 8 conj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 open _ VERB VB _ 3 ccomp _ _ 13 today _ NOUN NN _ 12 nmod:tmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 de-linkage _ NOUN NN _ 12 nsubj _ _ 3 between _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 8 det _ _ 5 stock _ NOUN NN _ 8 compound _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 futures _ NOUN NNS _ 5 conj _ _ 8 markets _ NOUN NNS _ 2 nmod _ _ 9 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 10 will _ AUX MD _ 12 aux _ _ 11 undoubtedly _ ADV RB _ 12 advmod _ _ 12 cause _ NOUN NN _ 0 root _ _ 13 renewed _ ADJ JJ _ 14 amod _ _ 14 debate _ NOUN NN _ 12 dobj _ _ 15 about _ SCONJ IN _ 21 mark _ _ 16 whether _ SCONJ IN _ 21 mark _ _ 17 Wall _ PROPN NNP _ 18 compound _ _ 18 Street _ PROPN NNP _ 21 nsubj _ _ 19 is _ VERB VBZ _ 21 cop _ _ 20 properly _ ADV RB _ 21 advmod _ _ 21 prepared _ ADJ JJ _ 14 acl _ _ 22 for _ ADP IN _ 25 case _ _ 23 another _ DET DT _ 25 det _ _ 24 crash _ NOUN NN _ 25 compound _ _ 25 situation _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Big _ PROPN NNP _ 3 compound _ _ 3 Board _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Grasso _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 14 punct _ _ 10 Our _ PRON PRP$ _ 12 nmod:poss _ _ 11 systemic _ ADJ JJ _ 12 amod _ _ 12 performance _ NOUN NN _ 14 nsubj _ _ 13 was _ VERB VBD _ 14 cop _ _ 14 good _ ADJ JJ _ 7 ccomp _ _ 15 . _ PUNCT . _ 7 punct _ _ 16 '' _ PUNCT '' _ 7 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 exchange _ NOUN NN _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 look _ VERB VB _ 0 root _ _ 7 at _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 performance _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 all _ DET DT _ 12 det _ _ 12 specialists _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 all _ DET DT _ 15 det _ _ 15 stocks _ NOUN NNS _ 9 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Obviously _ ADV RB _ 4 advmod _ _ 2 we _ PRON PRP _ 4 nsubj _ _ 3 'll _ AUX MD _ 4 aux _ _ 4 take _ VERB VB _ 24 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 close _ ADJ JJ _ 7 amod _ _ 7 look _ NOUN NN _ 4 dobj _ _ 8 at _ ADP IN _ 10 case _ _ 9 any _ DET DT _ 10 det _ _ 10 situation _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 which _ PRON WDT _ 14 nmod _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 think _ VERB VBP _ 10 acl:relcl _ _ 15 the _ DET DT _ 17 det _ _ 16 dealer-community _ ADJ JJ _ 17 amod _ _ 17 obligations _ NOUN NNS _ 20 nsubjpass _ _ 18 were _ AUX VBD _ 20 auxpass _ _ 19 n't _ PART RB _ 20 neg _ _ 20 met _ VERB VBN _ 14 ccomp _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 '' _ PUNCT '' _ 24 punct _ _ 23 he _ PRON PRP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 2 punct _ _ 2 See _ VERB VB _ 0 root _ _ 3 related _ ADJ JJ _ 4 amod _ _ 4 story _ NOUN NN _ 2 dobj _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 `` _ PUNCT `` _ 15 punct _ _ 7 Fed _ PROPN NNP _ 8 dep _ _ 8 Ready _ ADJ JJ _ 15 dep _ _ 9 to _ PART TO _ 10 mark _ _ 10 Inject _ VERB VB _ 8 xcomp _ _ 11 Big _ ADJ JJ _ 12 amod _ _ 12 Funds _ NOUN NNS _ 10 dobj _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 -- _ PUNCT : _ 15 punct _ _ 15 WSJ _ PROPN NNP _ 4 dep _ _ 16 Oct. _ PROPN NNP _ 15 nmod:tmod _ _ 17 16 _ NUM CD _ 16 nummod _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 1989 _ NUM CD _ 16 nummod _ _ 20 -RRB- _ PUNCT -RRB- _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 specialists _ NOUN NNS _ 3 nsubj _ _ 3 complain _ VERB VBP _ 0 root _ _ 4 privately _ ADV RB _ 3 advmod _ _ 5 that _ SCONJ IN _ 33 mark _ _ 6 just _ ADV RB _ 11 advmod _ _ 7 as _ ADP IN _ 6 case _ _ 8 in _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 1987 _ NUM CD _ 11 nummod _ _ 11 crash _ NOUN NN _ 33 nmod _ _ 12 , _ PUNCT , _ 33 punct _ _ 13 the _ DET DT _ 17 det _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 upstairs _ ADJ JJ _ 17 amod _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 firms _ NOUN NNS _ 33 nsubj _ _ 18 -- _ PUNCT : _ 17 punct _ _ 19 big _ ADJ JJ _ 21 amod _ _ 20 investment _ NOUN NN _ 21 compound _ _ 21 banks _ NOUN NNS _ 17 dep _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 support _ VERB VBP _ 21 acl:relcl _ _ 24 the _ DET DT _ 25 det _ _ 25 market _ NOUN NN _ 23 dobj _ _ 26 by _ SCONJ IN _ 27 mark _ _ 27 trading _ VERB VBG _ 23 advcl _ _ 28 big _ ADJ JJ _ 29 amod _ _ 29 blocks _ NOUN NNS _ 27 dobj _ _ 30 of _ ADP IN _ 31 case _ _ 31 stock _ NOUN NN _ 29 nmod _ _ 32 -- _ PUNCT : _ 17 punct _ _ 33 stayed _ VERB VBD _ 3 ccomp _ _ 34 on _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 sidelines _ NOUN NNS _ 33 nmod _ _ 37 during _ ADP IN _ 40 case _ _ 38 Friday _ PROPN NNP _ 40 nmod:poss _ _ 39 's _ PART POS _ 38 case _ _ 40 blood-letting _ NOUN NN _ 33 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Phelan _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 It _ PRON PRP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 take _ VERB VB _ 3 ccomp _ _ 9 another _ DET DT _ 10 det _ _ 10 day _ NOUN NN _ 8 nmod:tmod _ _ 11 or _ CONJ CC _ 12 cc _ _ 12 two _ NUM CD _ 10 nummod _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 14 to _ PART TO _ 15 mark _ _ 15 analyze _ VERB VB _ 8 advcl _ _ 16 who _ PRON WP _ 18 nsubj _ _ 17 was _ AUX VBD _ 18 aux _ _ 18 buying _ VERB VBG _ 15 ccomp _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 selling _ VERB VBG _ 18 conj _ _ 21 Friday _ PROPN NNP _ 18 nmod:tmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Concerning _ VERB VBG _ 6 case _ _ 2 your _ PRON PRP$ _ 6 nmod:poss _ _ 3 Sept. _ PROPN NNP _ 6 compound _ _ 4 21 _ NUM CD _ 6 nummod _ _ 5 page-one _ ADJ JJ _ 6 amod _ _ 6 article _ NOUN NN _ 19 nmod _ _ 7 on _ ADP IN _ 9 case _ _ 8 Prince _ PROPN NNP _ 9 compound _ _ 9 Charles _ PROPN NNP _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 the _ DET DT _ 12 det _ _ 12 leeches _ NOUN NNS _ 9 conj _ _ 13 : _ PUNCT : _ 19 punct _ _ 14 It _ PRON PRP _ 19 nsubj _ _ 15 's _ VERB VBZ _ 19 cop _ _ 16 a _ DET DT _ 18 advmod _ _ 17 few _ ADJ JJ _ 18 advmod _ _ 18 hundred _ NUM CD _ 19 nummod _ _ 19 years _ NOUN NNS _ 0 root _ _ 20 since _ SCONJ IN _ 25 mark _ _ 21 England _ PROPN NNP _ 25 nsubj _ _ 22 has _ AUX VBZ _ 25 aux _ _ 23 been _ VERB VBN _ 25 cop _ _ 24 a _ DET DT _ 25 det _ _ 25 kingdom _ NOUN NN _ 19 advcl _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 's _ VERB VBZ _ 6 cop _ _ 3 now _ ADV RB _ 6 advmod _ _ 4 the _ DET DT _ 6 det _ _ 5 United _ PROPN NNP _ 6 compound _ _ 6 Kingdom _ PROPN NNP _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 Great _ PROPN NNP _ 9 compound _ _ 9 Britain _ PROPN NNP _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Northern _ PROPN NNP _ 12 compound _ _ 12 Ireland _ PROPN NNP _ 9 conj _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 comprising _ VERB VBG _ 15 case _ _ 15 Wales _ PROPN NNP _ 6 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Northern _ PROPN NNP _ 18 compound _ _ 18 Ireland _ PROPN NNP _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 Scotland _ PROPN NNP _ 15 conj _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 and _ CONJ CC _ 15 cc _ _ 23 ... _ PUNCT : _ 15 punct _ _ 24 oh _ INTJ UH _ 15 discourse _ _ 25 yes _ INTJ UH _ 24 dep _ _ 26 , _ PUNCT , _ 15 punct _ _ 27 England _ PROPN NNP _ 15 conj _ _ 28 , _ PUNCT , _ 15 punct _ _ 29 too _ ADV RB _ 15 advmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Just _ ADV RB _ 2 advmod _ _ 2 thought _ VERB VBD _ 0 root _ _ 3 you _ PRON PRP _ 5 nsubj _ _ 4 'd _ AUX MD _ 5 aux _ _ 5 like _ VERB VB _ 2 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 know _ VERB VB _ 5 xcomp _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 George _ PROPN NNP _ 2 compound _ _ 2 Morton _ PROPN NNP _ 0 root _ _ 1 Ports _ PROPN NNP _ 4 dep _ _ 2 of _ ADP IN _ 3 case _ _ 3 Call _ PROPN NNP _ 1 nmod _ _ 4 Inc. _ PROPN NNP _ 5 nsubj _ _ 5 reached _ VERB VBD _ 0 root _ _ 6 agreements _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 sell _ VERB VB _ 6 acl _ _ 9 its _ PRON PRP$ _ 12 nmod:poss _ _ 10 remaining _ VERB VBG _ 12 amod _ _ 11 seven _ NUM CD _ 12 nummod _ _ 12 aircraft _ NOUN NN _ 8 dobj _ _ 13 to _ ADP TO _ 14 case _ _ 14 buyers _ NOUN NNS _ 8 nmod _ _ 15 that _ PRON WDT _ 18 nsubjpass _ _ 16 were _ AUX VBD _ 18 auxpass _ _ 17 n't _ PART RB _ 18 neg _ _ 18 disclosed _ VERB VBN _ 14 acl:relcl _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agreements _ NOUN NNS _ 3 nsubj _ _ 3 bring _ VERB VBP _ 0 root _ _ 4 to _ ADP TO _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 total _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 nine _ NUM CD _ 6 nmod _ _ 9 the _ DET DT _ 10 det _ _ 10 number _ NOUN NN _ 3 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 planes _ NOUN NNS _ 10 nmod _ _ 13 the _ DET DT _ 15 det _ _ 14 travel _ NOUN NN _ 15 compound _ _ 15 company _ NOUN NN _ 17 nsubj _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 sold _ VERB VBN _ 10 acl:relcl _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 17 nmod:tmod _ _ 20 as _ ADP IN _ 21 case _ _ 21 part _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 restructuring _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 portion _ NOUN NN _ 17 nsubjpass _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 $ _ SYM $ _ 5 nmod _ _ 9 32 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 realized _ VERB VBN _ 8 acl _ _ 12 from _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 sales _ NOUN NNS _ 11 nmod _ _ 15 will _ AUX MD _ 17 aux _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 used _ VERB VBN _ 3 ccomp _ _ 18 to _ PART TO _ 19 mark _ _ 19 repay _ VERB VB _ 17 xcomp _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 bank _ NOUN NN _ 22 compound _ _ 22 debt _ NOUN NN _ 19 dobj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 other _ ADJ JJ _ 25 amod _ _ 25 obligations _ NOUN NNS _ 22 conj _ _ 26 resulting _ VERB VBG _ 25 acl _ _ 27 from _ ADP IN _ 32 case _ _ 28 the _ DET DT _ 32 det _ _ 29 currently _ ADV RB _ 30 advmod _ _ 30 suspended _ VERB VBN _ 32 amod _ _ 31 air-charter _ ADJ JJ _ 32 amod _ _ 32 operations _ NOUN NNS _ 26 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Earlier _ ADV RBR _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 announced _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 sell _ VERB VB _ 4 ccomp _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 aging _ VERB VBG _ 10 amod _ _ 10 fleet _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 Boeing _ PROPN NNP _ 14 compound _ _ 13 Co. _ PROPN NNP _ 14 compound _ _ 14 707s _ PROPN NNPS _ 10 nmod _ _ 15 because _ ADP IN _ 19 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 increasing _ VERB VBG _ 19 amod _ _ 18 maintenance _ NOUN NN _ 19 compound _ _ 19 costs _ NOUN NNS _ 7 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 consortium _ NOUN NN _ 11 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 private _ ADJ JJ _ 5 amod _ _ 5 investors _ NOUN NNS _ 2 nmod _ _ 6 operating _ VERB VBG _ 2 acl _ _ 7 as _ ADP IN _ 10 case _ _ 8 LJH _ PROPN NNP _ 10 compound _ _ 9 Funding _ PROPN NNP _ 10 compound _ _ 10 Co. _ PROPN NNP _ 6 nmod _ _ 11 said _ VERB VBD _ 0 root _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 has _ AUX VBZ _ 14 aux _ _ 14 made _ VERB VBN _ 11 ccomp _ _ 15 a _ DET DT _ 20 det _ _ 16 $ _ SYM $ _ 20 amod _ _ 17 409 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 cash _ NOUN NN _ 20 compound _ _ 20 bid _ NOUN NN _ 14 dobj _ _ 21 for _ ADP IN _ 22 case _ _ 22 most _ ADJ JJS _ 20 nmod _ _ 23 of _ ADP IN _ 28 case _ _ 24 L.J. _ PROPN NNP _ 26 compound _ _ 25 Hooker _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 real-estate _ NOUN NN _ 22 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 shopping-center _ NOUN NN _ 31 compound _ _ 31 holdings _ NOUN NNS _ 28 conj _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 $ _ SYM $ _ 5 amod _ _ 3 409 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 2 nummod _ _ 5 bid _ NOUN NN _ 6 nsubj _ _ 6 includes _ VERB VBZ _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 assumption _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 an _ DET DT _ 12 det _ _ 11 estimated _ ADJ JJ _ 12 amod _ _ 12 $ _ SYM $ _ 8 nmod _ _ 13 300 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 17 case _ _ 16 secured _ ADJ JJ _ 17 amod _ _ 17 liabilities _ NOUN NNS _ 12 nmod _ _ 18 on _ ADP IN _ 20 case _ _ 19 those _ DET DT _ 20 det _ _ 20 properties _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 6 punct _ _ 22 according _ VERB VBG _ 24 case _ _ 23 to _ ADP TO _ 22 mwe _ _ 24 those _ PRON DT _ 6 nmod _ _ 25 making _ VERB VBG _ 24 acl _ _ 26 the _ DET DT _ 27 det _ _ 27 bid _ NOUN NN _ 25 dobj _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 led _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 Jay _ PROPN NNP _ 7 compound _ _ 7 Shidler _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 chief _ ADJ JJ _ 11 amod _ _ 10 executive _ ADJ JJ _ 11 amod _ _ 11 officer _ NOUN NN _ 7 appos _ _ 12 of _ ADP IN _ 15 case _ _ 13 Shidler _ PROPN NNP _ 15 compound _ _ 14 Investment _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 11 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 Honolulu _ PROPN NNP _ 15 nmod _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 A. _ PROPN NNP _ 22 compound _ _ 21 Boyd _ PROPN NNP _ 22 compound _ _ 22 Simpson _ PROPN NNP _ 7 conj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 chief _ ADJ JJ _ 25 amod _ _ 25 executive _ NOUN NN _ 22 appos _ _ 26 of _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 31 det _ _ 28 Atlanta-based _ ADJ JJ _ 31 amod _ _ 29 Simpson _ PROPN NNP _ 31 compound _ _ 30 Organization _ PROPN NNP _ 31 compound _ _ 31 Inc _ PROPN NNP _ 25 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Shidler _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 specializes _ VERB VBZ _ 0 root _ _ 6 in _ ADP IN _ 9 case _ _ 7 commercial _ ADJ JJ _ 9 amod _ _ 8 real-estate _ NOUN NN _ 9 compound _ _ 9 investment _ NOUN NN _ 5 nmod _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 claims _ VERB VBZ _ 5 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 have _ VERB VB _ 11 xcomp _ _ 14 $ _ SYM $ _ 13 dobj _ _ 15 1 _ NUM CD _ 16 compound _ _ 16 billion _ NUM CD _ 14 nummod _ _ 17 in _ ADP IN _ 18 case _ _ 18 assets _ NOUN NNS _ 14 nmod _ _ 19 ; _ PUNCT : _ 5 punct _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Simpson _ PROPN NNP _ 24 nsubj _ _ 22 is _ VERB VBZ _ 24 cop _ _ 23 a _ DET DT _ 24 det _ _ 24 developer _ NOUN NN _ 5 parataxis _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 a _ DET DT _ 29 det _ _ 27 former _ ADJ JJ _ 29 amod _ _ 28 senior _ ADJ JJ _ 29 amod _ _ 29 executive _ NOUN NN _ 24 conj _ _ 30 of _ ADP IN _ 32 case _ _ 31 L.J. _ PROPN NNP _ 32 compound _ _ 32 Hooker _ PROPN NNP _ 29 nmod _ _ 33 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 assets _ NOUN NNS _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 good _ ADJ JJ _ 26 ccomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 but _ CONJ CC _ 5 cc _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 require _ VERB VBP _ 5 conj _ _ 10 more _ ADJ JJR _ 11 amod _ _ 11 money _ NOUN NN _ 9 dobj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 management _ NOUN NN _ 11 conj _ _ 14 '' _ PUNCT '' _ 11 punct _ _ 15 than _ SCONJ IN _ 18 mark _ _ 16 can _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 provided _ VERB VBN _ 11 dep _ _ 19 in _ ADP IN _ 24 case _ _ 20 L.J. _ PROPN NNP _ 21 compound _ _ 21 Hooker _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 current _ ADJ JJ _ 24 amod _ _ 24 situation _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Simpson _ PROPN NNP _ 26 nsubj _ _ 29 in _ ADP IN _ 31 case _ _ 30 an _ DET DT _ 31 det _ _ 31 interview _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 26 punct _ _ 33 `` _ PUNCT `` _ 26 punct _ _ 1 Hooker _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 philosophy _ NOUN NN _ 4 nsubj _ _ 4 was _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 build _ VERB VB _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 sell _ VERB VB _ 6 conj _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 want _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 build _ VERB VB _ 2 xcomp _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 hold _ VERB VB _ 4 conj _ _ 7 . _ PUNCT . _ 2 punct _ _ 8 '' _ PUNCT '' _ 2 punct _ _ 1 L.J. _ PROPN NNP _ 2 compound _ _ 2 Hooker _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 6 case _ _ 6 Atlanta _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 is _ AUX VBZ _ 9 aux _ _ 9 operating _ VERB VBG _ 0 root _ _ 10 with _ ADP IN _ 11 case _ _ 11 protection _ NOUN NN _ 9 nmod _ _ 12 from _ ADP IN _ 14 case _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 creditors _ NOUN NNS _ 11 nmod _ _ 15 under _ ADP IN _ 16 case _ _ 16 Chapter _ PROPN NNP _ 11 nmod _ _ 17 11 _ NUM CD _ 16 nummod _ _ 18 of _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 U.S. _ PROPN NNP _ 22 compound _ _ 21 Bankruptcy _ PROPN NNP _ 22 compound _ _ 22 Code _ PROPN NNP _ 16 nmod _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Its _ PRON PRP$ _ 3 nmod:poss _ _ 2 parent _ NOUN NN _ 3 compound _ _ 3 company _ NOUN NN _ 15 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Hooker _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 3 appos _ _ 7 of _ ADP IN _ 8 case _ _ 8 Sydney _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Australia _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 is _ AUX VBZ _ 15 aux _ _ 13 currently _ ADV RB _ 15 advmod _ _ 14 being _ AUX VBG _ 15 auxpass _ _ 15 managed _ VERB VBN _ 0 root _ _ 16 by _ ADP IN _ 20 case _ _ 17 a _ DET DT _ 20 det _ _ 18 court-appointed _ ADJ JJ _ 20 amod _ _ 19 provisional _ ADJ JJ _ 20 amod _ _ 20 liquidator _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 Sanford _ PROPN NNP _ 2 compound _ _ 2 Sigoloff _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 chief _ ADJ JJ _ 5 amod _ _ 5 executive _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 8 case _ _ 7 L.J. _ PROPN NNP _ 8 compound _ _ 8 Hooker _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 yesterday _ NOUN NN _ 10 nmod:tmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 statement _ NOUN NN _ 10 nmod _ _ 15 that _ SCONJ IN _ 20 mark _ _ 16 he _ PRON PRP _ 20 nsubj _ _ 17 has _ AUX VBZ _ 20 aux _ _ 18 not _ PART RB _ 20 neg _ _ 19 yet _ ADV RB _ 20 advmod _ _ 20 seen _ VERB VBN _ 10 ccomp _ _ 21 the _ DET DT _ 22 det _ _ 22 bid _ NOUN NN _ 20 dobj _ _ 23 but _ CONJ CC _ 20 cc _ _ 24 that _ SCONJ IN _ 27 mark _ _ 25 he _ PRON PRP _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 review _ VERB VB _ 20 conj _ _ 28 it _ PRON PRP _ 27 dobj _ _ 29 and _ CONJ CC _ 27 cc _ _ 30 bring _ VERB VB _ 27 conj _ _ 31 it _ PRON PRP _ 30 dobj _ _ 32 to _ ADP TO _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 attention _ NOUN NN _ 30 nmod _ _ 35 of _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 creditors _ NOUN NNS _ 38 compound _ _ 38 committee _ NOUN NN _ 34 nmod _ _ 39 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 $ _ SYM $ _ 5 amod _ _ 3 409 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 2 nummod _ _ 5 bid _ NOUN NN _ 7 nsubjpass _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 estimated _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 10 case _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Simpson _ PROPN NNP _ 7 nmod _ _ 11 as _ SCONJ IN _ 12 mark _ _ 12 representing _ VERB VBG _ 7 advcl _ _ 13 75 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 value _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 22 case _ _ 19 all _ DET DT _ 22 det _ _ 20 Hooker _ PROPN NNP _ 22 compound _ _ 21 real-estate _ NOUN NN _ 22 compound _ _ 22 holdings _ NOUN NNS _ 17 nmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.S. _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 Not _ PART RB _ 2 neg _ _ 2 included _ VERB VBN _ 0 root _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 bid _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 2 auxpass _ _ 7 Bonwit _ PROPN NNP _ 8 compound _ _ 8 Teller _ PROPN NNP _ 2 nsubjpass _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 B. _ PROPN NNP _ 11 compound _ _ 11 Altman _ PROPN NNP _ 8 conj _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Co. _ PROPN NNP _ 11 conj _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 L.J. _ PROPN NNP _ 16 compound _ _ 16 Hooker _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 department-store _ NOUN NN _ 19 compound _ _ 19 chains _ NOUN NNS _ 8 appos _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offer _ NOUN NN _ 3 nsubj _ _ 3 covers _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 10 det _ _ 5 massive _ ADJ JJ _ 10 amod _ _ 6 1.8 _ NUM CD _ 10 nummod _ _ 7 million-square-foot _ ADJ JJ _ 10 amod _ _ 8 Forest _ PROPN NNP _ 10 compound _ _ 9 Fair _ PROPN NNP _ 10 compound _ _ 10 Mall _ PROPN NNP _ 3 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 Cincinnati _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 the _ DET DT _ 19 det _ _ 15 800,000 _ NUM CD _ 19 nummod _ _ 16 square-foot _ ADJ JJ _ 19 amod _ _ 17 Richland _ PROPN NNP _ 19 compound _ _ 18 Fashion _ PROPN NNP _ 19 compound _ _ 19 Mall _ PROPN NNP _ 10 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Columbia _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 S.C. _ PROPN NNP _ 21 appos _ _ 24 , _ PUNCT , _ 10 punct _ _ 25 and _ CONJ CC _ 10 cc _ _ 26 the _ DET DT _ 32 det _ _ 27 700,000 _ NUM CD _ 32 nummod _ _ 28 square-foot _ ADJ JJ _ 32 amod _ _ 29 Thornton _ PROPN NNP _ 32 compound _ _ 30 Town _ PROPN NNP _ 32 compound _ _ 31 Center _ PROPN NNP _ 32 compound _ _ 32 mall _ NOUN NN _ 10 conj _ _ 33 in _ ADP IN _ 34 case _ _ 34 Thornton _ PROPN NNP _ 32 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 Colo _ PROPN NNP _ 34 appos _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Thornton _ PROPN NNP _ 3 compound _ _ 3 mall _ NOUN NN _ 4 nsubj _ _ 4 opened _ VERB VBD _ 0 root _ _ 5 Sept. _ PROPN NNP _ 4 nmod:tmod _ _ 6 19 _ NUM CD _ 5 nummod _ _ 7 with _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 Bigg _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 hypermarket _ NOUN NN _ 4 nmod _ _ 12 as _ ADP IN _ 14 case _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 anchor _ NOUN NN _ 11 nmod _ _ 15 ; _ PUNCT : _ 4 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 Columbia _ PROPN NNP _ 18 compound _ _ 18 mall _ NOUN NN _ 20 nsubjpass _ _ 19 is _ AUX VBZ _ 20 auxpass _ _ 20 expected _ VERB VBN _ 4 parataxis _ _ 21 to _ PART TO _ 22 mark _ _ 22 open _ VERB VB _ 20 xcomp _ _ 23 Nov. _ PROPN NNP _ 22 nmod:tmod _ _ 24 15 _ NUM CD _ 23 nummod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 Hooker _ PROPN NNP _ 3 compound _ _ 3 properties _ NOUN NNS _ 9 nsubj _ _ 4 included _ VERB VBN _ 3 acl _ _ 5 are _ VERB VBP _ 9 cop _ _ 6 a _ DET DT _ 9 det _ _ 7 20-story _ ADJ JJ _ 9 amod _ _ 8 office _ NOUN NN _ 9 compound _ _ 9 tower _ NOUN NN _ 0 root _ _ 10 in _ ADP IN _ 12 case _ _ 11 midtown _ ADJ JJ _ 12 amod _ _ 12 Atlanta _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 expected _ VERB VBN _ 9 acl _ _ 15 to _ PART TO _ 17 mark _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 completed _ VERB VBN _ 14 xcomp _ _ 18 next _ ADP IN _ 19 amod _ _ 19 February _ PROPN NNP _ 17 nmod:tmod _ _ 20 ; _ PUNCT : _ 9 punct _ _ 21 vacant _ ADJ JJ _ 23 amod _ _ 22 land _ NOUN NN _ 23 compound _ _ 23 sites _ NOUN NNS _ 9 conj _ _ 24 in _ ADP IN _ 25 case _ _ 25 Florida _ PROPN NNP _ 23 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Ohio _ PROPN NNP _ 25 conj _ _ 28 ; _ PUNCT : _ 9 punct _ _ 29 L.J. _ PROPN NNP _ 31 compound _ _ 30 Hooker _ PROPN NNP _ 31 compound _ _ 31 International _ PROPN NNP _ 9 conj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 the _ DET DT _ 37 det _ _ 34 commercial _ ADJ JJ _ 37 amod _ _ 35 real-estate _ NOUN NN _ 37 compound _ _ 36 brokerage _ NOUN NN _ 37 compound _ _ 37 company _ NOUN NN _ 31 appos _ _ 38 that _ PRON WDT _ 40 nsubj _ _ 39 once _ ADV RB _ 40 advmod _ _ 40 did _ VERB VBD _ 37 acl:relcl _ _ 41 business _ NOUN NN _ 40 dobj _ _ 42 as _ ADP IN _ 47 case _ _ 43 Merrill _ PROPN NNP _ 47 compound _ _ 44 Lynch _ PROPN NNP _ 47 compound _ _ 45 Commercial _ PROPN NNP _ 47 compound _ _ 46 Real _ PROPN NNP _ 47 compound _ _ 47 Estate _ PROPN NNP _ 40 nmod _ _ 48 , _ PUNCT , _ 9 punct _ _ 49 plus _ CONJ CC _ 9 cc _ _ 50 other _ ADJ JJ _ 52 amod _ _ 51 shopping _ NOUN NN _ 52 compound _ _ 52 centers _ NOUN NNS _ 9 conj _ _ 53 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 consortium _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 put _ VERB VBN _ 0 root _ _ 5 together _ ADV RB _ 4 advmod _ _ 6 by _ ADP IN _ 8 case _ _ 7 Hoare _ PROPN NNP _ 8 compound _ _ 8 Govett _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 14 det _ _ 11 London-based _ ADJ JJ _ 14 amod _ _ 12 investment _ NOUN NN _ 14 compound _ _ 13 banking _ NOUN NN _ 14 compound _ _ 14 company _ NOUN NN _ 8 appos _ _ 15 that _ PRON WDT _ 18 nsubj _ _ 16 is _ VERB VBZ _ 18 cop _ _ 17 a _ DET DT _ 18 det _ _ 18 subsidiary _ NOUN NN _ 14 acl:relcl _ _ 19 of _ ADP IN _ 22 case _ _ 20 Security _ PROPN NNP _ 22 compound _ _ 21 Pacific _ PROPN NNP _ 22 compound _ _ 22 Corp _ PROPN NNP _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 anticipate _ VERB VB _ 17 ccomp _ _ 6 any _ DET DT _ 7 det _ _ 7 problems _ NOUN NNS _ 5 dobj _ _ 8 in _ SCONJ IN _ 9 mark _ _ 9 raising _ VERB VBG _ 7 acl _ _ 10 the _ DET DT _ 11 det _ _ 11 funding _ NOUN NN _ 9 dobj _ _ 12 for _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 bid _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Allan _ PROPN NNP _ 19 compound _ _ 19 Campbell _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 head _ NOUN NN _ 19 appos _ _ 23 of _ ADP IN _ 24 case _ _ 24 mergers _ NOUN NNS _ 22 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 acquisitions _ NOUN NNS _ 24 conj _ _ 27 at _ ADP IN _ 29 case _ _ 28 Hoare _ PROPN NNP _ 29 compound _ _ 29 Govett _ PROPN NNP _ 22 nmod _ _ 30 , _ PUNCT , _ 17 punct _ _ 31 in _ ADP IN _ 33 case _ _ 32 an _ DET DT _ 33 det _ _ 33 interview _ NOUN NN _ 17 nmod _ _ 34 . _ PUNCT . _ 17 punct _ _ 1 Hoare _ PROPN NNP _ 2 compound _ _ 2 Govett _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 acting _ VERB VBG _ 0 root _ _ 5 as _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 7 det _ _ 7 consortium _ NOUN NN _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 investment _ NOUN NN _ 10 compound _ _ 10 bankers _ NOUN NNS _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 According _ VERB VBG _ 3 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 people _ NOUN NNS _ 12 nmod _ _ 4 familiar _ ADJ JJ _ 3 amod _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 consortium _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 bid _ NOUN NN _ 12 nsubj _ _ 11 was _ AUX VBD _ 12 aux _ _ 12 code-named _ ADJ JJ _ 0 root _ _ 13 Project _ PROPN NNP _ 14 compound _ _ 14 Klute _ PROPN NNP _ 12 xcomp _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 17 det _ _ 17 reference _ NOUN NN _ 14 appos _ _ 18 to _ ADP TO _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 film _ NOUN NN _ 22 dep _ _ 21 `` _ PUNCT `` _ 22 punct _ _ 22 Klute _ PROPN NNP _ 17 nmod _ _ 23 '' _ PUNCT '' _ 22 punct _ _ 24 in _ ADP IN _ 25 case _ _ 25 which _ PRON WDT _ 34 nmod _ _ 26 a _ DET DT _ 27 det _ _ 27 prostitute _ NOUN NN _ 34 nsubjpass _ _ 28 played _ VERB VBN _ 27 acl _ _ 29 by _ ADP IN _ 32 case _ _ 30 actress _ NOUN NN _ 32 compound _ _ 31 Jane _ PROPN NNP _ 32 compound _ _ 32 Fonda _ PROPN NNP _ 28 nmod _ _ 33 is _ AUX VBZ _ 34 auxpass _ _ 34 saved _ VERB VBN _ 22 acl:relcl _ _ 35 from _ ADP IN _ 38 case _ _ 36 a _ DET DT _ 38 det _ _ 37 psychotic _ ADJ JJ _ 38 amod _ _ 38 businessman _ NOUN NN _ 34 nmod _ _ 39 by _ ADP IN _ 42 case _ _ 40 a _ DET DT _ 42 det _ _ 41 police _ NOUN NN _ 42 compound _ _ 42 officer _ NOUN NN _ 34 nmod _ _ 43 named _ VERB VBN _ 42 acl _ _ 44 John _ PROPN NNP _ 45 compound _ _ 45 Klute _ PROPN NNP _ 43 xcomp _ _ 46 . _ PUNCT . _ 12 punct _ _ 1 L.J. _ PROPN NNP _ 2 compound _ _ 2 Hooker _ PROPN NNP _ 7 nsubj _ _ 3 was _ VERB VBD _ 7 cop _ _ 4 a _ DET DT _ 7 det _ _ 5 small _ ADJ JJ _ 7 amod _ _ 6 home-building _ ADJ JJ _ 7 amod _ _ 7 company _ NOUN NN _ 0 root _ _ 8 based _ VERB VBN _ 7 acl _ _ 9 in _ ADP IN _ 10 case _ _ 10 Atlanta _ PROPN NNP _ 8 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 1979 _ NUM CD _ 7 nmod _ _ 13 when _ ADV WRB _ 17 advmod _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Simpson _ PROPN NNP _ 17 nsubjpass _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 hired _ VERB VBN _ 12 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 push _ VERB VB _ 17 xcomp _ _ 20 it _ PRON PRP _ 19 dobj _ _ 21 into _ ADP IN _ 23 case _ _ 22 commercial _ ADJ JJ _ 23 amod _ _ 23 development _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 grew _ VERB VBD _ 0 root _ _ 4 modestly _ ADV RB _ 3 advmod _ _ 5 until _ ADP IN _ 6 case _ _ 6 1986 _ NUM CD _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 when _ ADV WRB _ 16 advmod _ _ 9 a _ DET DT _ 11 det _ _ 10 majority _ NOUN NN _ 11 compound _ _ 11 position _ NOUN NN _ 16 nsubjpass _ _ 12 in _ ADP IN _ 14 case _ _ 13 Hooker _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 11 nmod _ _ 15 was _ AUX VBD _ 16 auxpass _ _ 16 acquired _ VERB VBN _ 6 acl:relcl _ _ 17 by _ ADP IN _ 21 case _ _ 18 Australian _ ADJ JJ _ 21 amod _ _ 19 developer _ NOUN NN _ 21 compound _ _ 20 George _ PROPN NNP _ 21 compound _ _ 21 Herscu _ PROPN NNP _ 16 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 currently _ ADV RB _ 26 advmod _ _ 24 Hooker _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 chairman _ NOUN NN _ 21 appos _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Herscu _ PROPN NNP _ 3 nsubj _ _ 3 proceeded _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 launch _ VERB VB _ 3 xcomp _ _ 6 an _ DET DT _ 16 det _ _ 7 ambitious _ ADJ JJ _ 16 amod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 but _ CONJ CC _ 7 cc _ _ 10 ill-fated _ ADJ JJ _ 7 conj _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 $ _ SYM $ _ 16 amod _ _ 13 1 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 acquisition _ NOUN NN _ 16 compound _ _ 16 binge _ NOUN NN _ 5 dobj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 included _ VERB VBD _ 16 acl:relcl _ _ 19 Bonwit _ PROPN NNP _ 20 compound _ _ 20 Teller _ PROPN NNP _ 18 dobj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 B. _ PROPN NNP _ 23 compound _ _ 23 Altman _ PROPN NNP _ 20 conj _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Co. _ PROPN NNP _ 23 conj _ _ 26 , _ PUNCT , _ 20 punct _ _ 27 as _ ADV RB _ 20 cc _ _ 28 well _ ADV RB _ 27 mwe _ _ 29 as _ ADP IN _ 27 mwe _ _ 30 majority _ NOUN NN _ 31 compound _ _ 31 positions _ NOUN NNS _ 20 conj _ _ 32 in _ ADP IN _ 34 case _ _ 33 Merksamer _ PROPN NNP _ 34 compound _ _ 34 Jewelers _ PROPN NNP _ 31 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 a _ DET DT _ 38 det _ _ 37 Sacramento _ PROPN NNP _ 38 compound _ _ 38 chain _ NOUN NN _ 34 appos _ _ 39 ; _ PUNCT : _ 34 punct _ _ 40 Sakowitz _ PROPN NNP _ 41 compound _ _ 41 Inc. _ PROPN NNP _ 34 conj _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 the _ DET DT _ 45 det _ _ 44 Houston-based _ ADJ JJ _ 45 amod _ _ 45 retailer _ NOUN NN _ 41 appos _ _ 46 , _ PUNCT , _ 34 punct _ _ 47 and _ CONJ CC _ 34 cc _ _ 48 Parisian _ PROPN NNP _ 49 compound _ _ 49 Inc. _ PROPN NNP _ 34 conj _ _ 50 , _ PUNCT , _ 49 punct _ _ 51 the _ DET DT _ 54 det _ _ 52 Southeast _ PROPN NNP _ 54 compound _ _ 53 department-store _ NOUN NN _ 54 compound _ _ 54 chain _ NOUN NN _ 49 appos _ _ 55 . _ PUNCT . _ 3 punct _ _ 1 Eventually _ ADV RB _ 7 advmod _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Simpson _ PROPN NNP _ 7 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Herscu _ PROPN NNP _ 3 conj _ _ 7 had _ VERB VBD _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 falling _ NOUN NN _ 7 dobj _ _ 10 out _ ADP RP _ 9 dep _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 direction _ NOUN NN _ 7 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 and _ CONJ CC _ 7 cc _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Simpson _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 7 conj _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 resigned _ VERB VBD _ 21 ccomp _ _ 24 in _ ADP IN _ 25 case _ _ 25 1988 _ NUM CD _ 23 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 then _ ADV RB _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 Hooker _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 7 nsubj _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 sold _ VERB VBN _ 0 root _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 interest _ NOUN NN _ 7 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Parisian _ ADJ JJ _ 13 amod _ _ 13 chain _ NOUN NN _ 9 nmod _ _ 14 back _ ADV RB _ 7 advmod _ _ 15 to _ ADP TO _ 18 case _ _ 16 Parisian _ ADJ JJ _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 management _ NOUN NN _ 14 nmod _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 is _ AUX VBZ _ 22 aux _ _ 21 currently _ ADV RB _ 22 advmod _ _ 22 attempting _ VERB VBG _ 7 conj _ _ 23 to _ PART TO _ 24 mark _ _ 24 sell _ VERB VB _ 22 xcomp _ _ 25 the _ DET DT _ 27 det _ _ 26 B. _ PROPN NNP _ 27 compound _ _ 27 Altman _ PROPN NNP _ 24 dobj _ _ 28 & _ CONJ CC _ 27 cc _ _ 29 Co. _ PROPN NNP _ 30 compound _ _ 30 chain _ NOUN NN _ 27 conj _ _ 31 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 15 nmod _ _ 3 , _ PUNCT , _ 15 punct _ _ 4 Robert _ PROPN NNP _ 5 compound _ _ 5 Sakowitz _ PROPN NNP _ 15 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 chief _ ADJ JJ _ 8 amod _ _ 8 executive _ NOUN NN _ 5 appos _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Sakowitz _ PROPN NNP _ 12 compound _ _ 12 chain _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 is _ AUX VBZ _ 15 aux _ _ 15 seeking _ VERB VBG _ 0 root _ _ 16 funds _ NOUN NNS _ 15 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 buy _ VERB VB _ 16 acl _ _ 19 out _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 22 det _ _ 21 Hooker _ PROPN NNP _ 22 compound _ _ 22 interest _ NOUN NN _ 18 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 company _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Merksamer _ PROPN NNP _ 3 compound _ _ 3 chain _ NOUN NN _ 7 nsubjpass _ _ 4 is _ AUX VBZ _ 7 aux _ _ 5 currently _ ADV RB _ 7 advmod _ _ 6 being _ AUX VBG _ 7 auxpass _ _ 7 offered _ VERB VBN _ 0 root _ _ 8 for _ ADP IN _ 9 case _ _ 9 sale _ NOUN NN _ 7 nmod _ _ 10 by _ ADP IN _ 13 case _ _ 11 First _ PROPN NNP _ 13 compound _ _ 12 Boston _ PROPN NNP _ 13 compound _ _ 13 Corp _ PROPN NNP _ 7 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Reached _ VERB VBN _ 7 advcl _ _ 2 in _ ADP IN _ 3 case _ _ 3 Honolulu _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Shidler _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 believes _ VERB VBZ _ 7 ccomp _ _ 11 the _ DET DT _ 14 det _ _ 12 various _ ADJ JJ _ 14 amod _ _ 13 Hooker _ PROPN NNP _ 14 compound _ _ 14 malls _ NOUN NNS _ 16 nsubj _ _ 15 can _ AUX MD _ 16 aux _ _ 16 become _ VERB VB _ 10 ccomp _ _ 17 profitable _ ADJ JJ _ 16 xcomp _ _ 18 with _ ADP IN _ 20 case _ _ 19 new _ ADJ JJ _ 20 amod _ _ 20 management _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 These _ PRON DT _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 mature _ ADJ JJ _ 6 amod _ _ 6 assets _ NOUN NNS _ 18 ccomp _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 but _ CONJ CC _ 6 cc _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 have _ VERB VBP _ 6 conj _ _ 11 the _ DET DT _ 12 det _ _ 12 potential _ NOUN NN _ 10 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 be _ VERB VB _ 12 acl _ _ 15 so _ ADV RB _ 14 advmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Shidler _ PROPN NNP _ 18 nsubj _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 Managed _ VERB VBN _ 13 advcl _ _ 3 properly _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 and _ CONJ CC _ 2 advmod _ _ 6 with _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 long-term _ ADJ JJ _ 9 amod _ _ 9 outlook _ NOUN NN _ 5 conj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 these _ PRON DT _ 13 nsubj _ _ 12 can _ AUX MD _ 13 aux _ _ 13 become _ VERB VB _ 0 root _ _ 14 investment-grade _ ADJ JJ _ 16 amod _ _ 15 quality _ NOUN NN _ 16 compound _ _ 16 properties _ NOUN NNS _ 13 xcomp _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 Canadian _ ADJ JJ _ 3 amod _ _ 2 steel-ingot _ NOUN NN _ 3 compound _ _ 3 production _ NOUN NN _ 4 nsubj _ _ 4 totaled _ VERB VBD _ 35 ccomp _ _ 5 291,890 _ NUM CD _ 7 nummod _ _ 6 metric _ ADJ JJ _ 7 amod _ _ 7 tons _ NOUN NNS _ 4 dobj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 week _ NOUN NN _ 4 nmod _ _ 11 ended _ VERB VBN _ 10 acl _ _ 12 Oct. _ PROPN NNP _ 11 nmod:tmod _ _ 13 7 _ NUM CD _ 12 nummod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 up _ ADV RB _ 4 advmod _ _ 16 14.8 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 15 nmod:npmod _ _ 18 from _ ADP IN _ 23 case _ _ 19 the _ DET DT _ 21 det _ _ 20 preceding _ ADJ JJ _ 21 amod _ _ 21 week _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 total _ NOUN NN _ 15 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 254,280 _ NUM CD _ 26 nummod _ _ 26 tons _ NOUN NNS _ 23 nmod _ _ 27 , _ PUNCT , _ 35 punct _ _ 28 Statistics _ PROPN NNP _ 29 compound _ _ 29 Canada _ PROPN NNP _ 35 nsubj _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 a _ DET DT _ 33 det _ _ 32 federal _ ADJ JJ _ 33 amod _ _ 33 agency _ NOUN NN _ 29 appos _ _ 34 , _ PUNCT , _ 29 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 . _ PUNCT . _ 35 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 week _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 total _ NOUN NN _ 5 nsubj _ _ 5 was _ VERB VBD _ 0 root _ _ 6 up _ ADV RB _ 5 advmod _ _ 7 6.2 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 nmod:npmod _ _ 9 from _ ADP IN _ 11 case _ _ 10 274,963 _ NUM CD _ 11 nummod _ _ 11 tons _ NOUN NNS _ 6 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 year _ NOUN NN _ 14 nmod:npmod _ _ 14 earlier _ ADV RBR _ 11 advmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 year-to-date _ ADJ JJ _ 3 amod _ _ 3 total _ NOUN NN _ 6 nsubj _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 12,006,883 _ NUM CD _ 6 nummod _ _ 6 tons _ NOUN NNS _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 up _ ADV RB _ 6 advmod _ _ 9 7.8 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 nmod:npmod _ _ 11 from _ ADP IN _ 13 case _ _ 12 11,141,711 _ NUM CD _ 13 nummod _ _ 13 tons _ NOUN NNS _ 8 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 year _ NOUN NN _ 16 nmod:npmod _ _ 16 earlier _ ADV RBR _ 13 advmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Treasury _ PROPN NNP _ 3 nsubj _ _ 3 plans _ NOUN NNS _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 raise _ VERB VB _ 3 xcomp _ _ 6 $ _ SYM $ _ 5 dobj _ _ 7 175 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 cash _ NOUN NN _ 6 nmod _ _ 12 Thursday _ PROPN NNP _ 5 nmod:tmod _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 selling _ VERB VBG _ 5 advcl _ _ 15 about _ ADV RB _ 16 advmod _ _ 16 $ _ SYM $ _ 14 dobj _ _ 17 9.75 _ NUM CD _ 18 compound _ _ 18 billion _ NUM CD _ 16 nummod _ _ 19 of _ ADP IN _ 21 case _ _ 20 52-week _ ADJ JJ _ 21 amod _ _ 21 bills _ NOUN NNS _ 16 nmod _ _ 22 and _ CONJ CC _ 14 cc _ _ 23 redeeming _ VERB VBG _ 14 conj _ _ 24 $ _ SYM $ _ 26 dep _ _ 25 9.58 _ NUM CD _ 26 nummod _ _ 26 billion _ NUM CD _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 maturing _ VERB VBG _ 29 amod _ _ 29 bills _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 bills _ NOUN NNS _ 5 nsubjpass _ _ 3 will _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 dated _ VERB VBN _ 0 root _ _ 6 Oct. _ PROPN NNP _ 5 xcomp _ _ 7 26 _ NUM CD _ 6 nummod _ _ 8 and _ CONJ CC _ 5 cc _ _ 9 will _ AUX MD _ 10 aux _ _ 10 mature _ VERB VB _ 5 conj _ _ 11 Oct. _ PROPN NNP _ 10 nmod:tmod _ _ 12 25 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 1990 _ NUM CD _ 11 nummod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 be _ VERB VB _ 4 cop _ _ 4 available _ ADJ JJ _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 minimum _ ADJ JJ _ 7 amod _ _ 7 denominations _ NOUN NNS _ 4 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 10,000 _ NUM CD _ 7 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Bids _ NOUN NNS _ 4 nsubjpass _ _ 2 must _ AUX MD _ 4 aux _ _ 3 be _ AUX VB _ 4 auxpass _ _ 4 received _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 8 case _ _ 6 1 _ NUM CD _ 8 nummod _ _ 7 p.m. _ ADV RB _ 8 advmod _ _ 8 EDT _ PROPN NNP _ 4 nmod _ _ 9 Thursday _ PROPN NNP _ 4 nmod:tmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 Treasury _ PROPN NNP _ 4 nmod _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 at _ ADP IN _ 17 case _ _ 15 Federal _ PROPN NNP _ 17 compound _ _ 16 Reserve _ PROPN NNP _ 17 compound _ _ 17 banks _ NOUN NNS _ 12 conj _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 branches _ NOUN NNS _ 17 conj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 small _ ADJ JJ _ 3 amod _ _ 3 investors _ NOUN NNS _ 4 nsubj _ _ 4 peppered _ VERB VBD _ 18 advcl _ _ 5 their _ PRON PRP$ _ 7 nmod:poss _ _ 6 mutual _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 4 dobj _ _ 8 with _ ADP IN _ 10 case _ _ 9 phone _ NOUN NN _ 10 compound _ _ 10 calls _ NOUN NNS _ 4 nmod _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 weekend _ NOUN NN _ 4 nmod _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 big _ ADJ JJ _ 17 amod _ _ 16 fund _ NOUN NN _ 17 compound _ _ 17 managers _ NOUN NNS _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 they _ PRON PRP _ 20 nsubj _ _ 20 have _ VERB VBP _ 18 ccomp _ _ 21 a _ DET DT _ 23 det _ _ 22 strong _ ADJ JJ _ 23 amod _ _ 23 defense _ NOUN NN _ 20 dobj _ _ 24 against _ ADP IN _ 26 case _ _ 25 any _ DET DT _ 26 det _ _ 26 wave _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 28 case _ _ 28 withdrawals _ NOUN NNS _ 26 nmod _ _ 29 : _ PUNCT : _ 23 punct _ _ 30 cash _ NOUN NN _ 23 dep _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 weekend _ NOUN NN _ 12 nmod _ _ 4 before _ ADP IN _ 6 case _ _ 5 Black _ PROPN NNP _ 6 compound _ _ 6 Monday _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 funds _ NOUN NNS _ 12 nsubjpass _ _ 10 were _ AUX VBD _ 12 auxpass _ _ 11 n't _ PART RB _ 12 neg _ _ 12 swamped _ VERB VBN _ 0 root _ _ 13 with _ ADP IN _ 16 case _ _ 14 heavy _ ADJ JJ _ 16 amod _ _ 15 withdrawal _ NOUN NN _ 16 compound _ _ 16 requests _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 many _ ADJ JJ _ 4 amod _ _ 3 fund _ NOUN NN _ 4 compound _ _ 4 managers _ NOUN NNS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 built _ VERB VBN _ 0 root _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 cash _ NOUN NN _ 9 compound _ _ 9 levels _ NOUN NNS _ 6 dobj _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 say _ VERB VBP _ 6 conj _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 will _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 aux _ _ 15 buying _ VERB VBG _ 11 ccomp _ _ 16 stock _ NOUN NN _ 15 dobj _ _ 17 this _ DET DT _ 18 det _ _ 18 week _ NOUN NN _ 15 nmod:tmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Fidelity _ PROPN NNP _ 3 compound _ _ 3 Investments _ PROPN NNP _ 14 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 nation _ NOUN NN _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 largest _ ADJ JJS _ 10 amod _ _ 9 fund _ NOUN NN _ 10 compound _ _ 10 company _ NOUN NN _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 telephone _ NOUN NN _ 13 compound _ _ 13 volume _ NOUN NN _ 14 nsubj _ _ 14 was _ VERB VBD _ 0 root _ _ 15 up _ ADV RB _ 16 advmod _ _ 16 sharply _ ADV RB _ 14 advmod _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 but _ CONJ CC _ 14 cc _ _ 19 it _ PRON PRP _ 26 nsubj _ _ 20 was _ VERB VBD _ 26 cop _ _ 21 still _ ADV RB _ 26 advmod _ _ 22 at _ ADP IN _ 26 case _ _ 23 just _ ADV RB _ 24 advmod _ _ 24 half _ DET PDT _ 26 nummod _ _ 25 the _ DET DT _ 26 det _ _ 26 level _ NOUN NN _ 14 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 weekend _ NOUN NN _ 26 nmod _ _ 30 preceding _ VERB VBG _ 29 acl _ _ 31 Black _ PROPN NNP _ 32 compound _ _ 32 Monday _ PROPN NNP _ 30 nmod:tmod _ _ 33 in _ ADP IN _ 34 case _ _ 34 1987 _ NUM CD _ 29 nmod _ _ 35 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Boston _ PROPN NNP _ 3 compound _ _ 3 firm _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 stock-fund _ NOUN NN _ 6 compound _ _ 6 redemptions _ NOUN NNS _ 8 nsubj _ _ 7 were _ AUX VBD _ 8 aux _ _ 8 running _ VERB VBG _ 4 ccomp _ _ 9 at _ ADP IN _ 14 case _ _ 10 less _ ADJ JJR _ 12 advmod _ _ 11 than _ ADP IN _ 10 mwe _ _ 12 one-third _ NOUN NN _ 14 nummod _ _ 13 the _ DET DT _ 14 det _ _ 14 level _ NOUN NN _ 8 nmod _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 17 nmod:npmod _ _ 17 ago _ ADV RB _ 14 advmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 As _ ADP IN _ 4 case _ _ 2 of _ ADP IN _ 4 case _ _ 3 yesterday _ NOUN NN _ 4 compound _ _ 4 afternoon _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 redemptions _ NOUN NNS _ 8 nsubj _ _ 8 represented _ VERB VBD _ 0 root _ _ 9 less _ ADJ JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 15 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 8 dobj _ _ 13 of _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 total _ ADJ JJ _ 17 amod _ _ 16 cash _ NOUN NN _ 17 compound _ _ 17 position _ NOUN NN _ 12 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 about _ ADV RB _ 20 advmod _ _ 20 $ _ SYM $ _ 17 nmod _ _ 21 2 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 of _ ADP IN _ 27 case _ _ 24 Fidelity _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 stock _ NOUN NN _ 27 compound _ _ 27 funds _ NOUN NNS _ 17 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 Two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV RB _ 6 advmod _ _ 5 there _ PRON EX _ 6 expl _ _ 6 were _ VERB VBD _ 21 ccomp _ _ 7 massive _ ADJ JJ _ 9 amod _ _ 8 redemption _ NOUN NN _ 9 compound _ _ 9 levels _ NOUN NNS _ 6 nsubj _ _ 10 over _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 weekend _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 a _ DET DT _ 15 det _ _ 15 lot _ NOUN NN _ 9 conj _ _ 16 of _ ADP IN _ 17 case _ _ 17 fear _ NOUN NN _ 15 nmod _ _ 18 around _ ADV RB _ 15 advmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 C. _ PROPN NNP _ 24 compound _ _ 23 Bruce _ PROPN NNP _ 24 compound _ _ 24 Johnstone _ PROPN NNP _ 21 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 runs _ VERB VBZ _ 24 acl:relcl _ _ 28 Fidelity _ PROPN NNP _ 29 compound _ _ 29 Investments _ PROPN NNP _ 35 nmod:poss _ _ 30 ' _ PART POS _ 29 case _ _ 31 $ _ SYM $ _ 35 amod _ _ 32 5 _ NUM CD _ 33 compound _ _ 33 billion _ NUM CD _ 31 nummod _ _ 34 Equity-Income _ PROPN NNP _ 35 compound _ _ 35 Fund _ PROPN NNP _ 27 dobj _ _ 36 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 This _ PRON DT _ 3 nsubj _ _ 3 feels _ VERB VBZ _ 0 root _ _ 4 more _ ADV RBR _ 8 advmod _ _ 5 like _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 one-shot _ ADJ JJ _ 8 amod _ _ 8 deal _ NOUN NN _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 People _ NOUN NNS _ 4 nsubj _ _ 2 are _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 panicking _ VERB VBG _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 6 '' _ PUNCT '' _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 test _ NOUN NN _ 4 nsubj _ _ 3 may _ AUX MD _ 4 aux _ _ 4 come _ VERB VB _ 0 root _ _ 5 today _ NOUN NN _ 4 nmod:tmod _ _ 6 . _ PUNCT . _ 4 punct _ _ 1 Friday _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 stock _ NOUN NN _ 5 compound _ _ 4 market _ NOUN NN _ 5 compound _ _ 5 sell-off _ NOUN NN _ 6 nsubj _ _ 6 came _ VERB VBD _ 0 root _ _ 7 too _ ADV RB _ 8 advmod _ _ 8 late _ ADV RB _ 6 advmod _ _ 9 for _ SCONJ IN _ 13 mark _ _ 10 many _ ADJ JJ _ 11 amod _ _ 11 investors _ NOUN NNS _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 act _ VERB VB _ 8 dep _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 shareholders _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 held _ VERB VBN _ 0 root _ _ 5 off _ ADP RP _ 4 compound:prt _ _ 6 until _ ADP IN _ 7 case _ _ 7 today _ NOUN NN _ 4 nmod _ _ 8 because _ SCONJ IN _ 18 mark _ _ 9 any _ DET DT _ 11 det _ _ 10 fund _ NOUN NN _ 11 compound _ _ 11 exchanges _ NOUN NNS _ 18 nsubj _ _ 12 made _ VERB VBN _ 11 acl _ _ 13 after _ ADP IN _ 16 case _ _ 14 Friday _ PROPN NNP _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 close _ NOUN NN _ 12 nmod _ _ 17 would _ AUX MD _ 18 aux _ _ 18 take _ VERB VB _ 4 advcl _ _ 19 place _ NOUN NN _ 18 dobj _ _ 20 at _ ADP IN _ 24 case _ _ 21 today _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 closing _ NOUN NN _ 24 compound _ _ 24 prices _ NOUN NNS _ 18 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 Stock _ NOUN NN _ 3 compound _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 redemptions _ NOUN NNS _ 10 nsubj _ _ 4 during _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 debacle _ NOUN NN _ 10 nmod _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 begin _ VERB VB _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 snowball _ VERB VB _ 10 xcomp _ _ 13 until _ SCONJ IN _ 17 mark _ _ 14 after _ SCONJ IN _ 17 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 17 nsubj _ _ 17 opened _ VERB VBD _ 10 advcl _ _ 18 on _ ADP IN _ 20 case _ _ 19 Black _ PROPN NNP _ 20 compound _ _ 20 Monday _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 4 nsubj _ _ 4 say _ VERB VBP _ 0 root _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 're _ VERB VBP _ 7 cop _ _ 7 ready _ ADJ JJ _ 4 ccomp _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Many _ ADJ JJ _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 raised _ VERB VBN _ 0 root _ _ 4 cash _ NOUN NN _ 5 compound _ _ 5 levels _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 act _ VERB VBP _ 5 acl:relcl _ _ 9 as _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 buffer _ NOUN NN _ 8 nmod _ _ 12 against _ ADP IN _ 15 case _ _ 13 steep _ ADJ JJ _ 15 amod _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 declines _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Mario _ PROPN NNP _ 2 compound _ _ 2 Gabelli _ PROPN NNP _ 7 nsubj _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 instance _ NOUN NN _ 7 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 holds _ VERB VBZ _ 0 root _ _ 8 cash _ NOUN NN _ 9 compound _ _ 9 positions _ NOUN NNS _ 7 dobj _ _ 10 well _ ADV RB _ 13 advmod _ _ 11 above _ ADP IN _ 13 case _ _ 12 20 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 9 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 several _ ADJ JJ _ 7 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 funds _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 Windsor _ PROPN NNP _ 2 compound _ _ 2 Fund _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 John _ PROPN NNP _ 5 compound _ _ 5 Neff _ PROPN NNP _ 12 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Mutual _ PROPN NNP _ 8 compound _ _ 8 Series _ PROPN NNP _ 11 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 Michael _ PROPN NNP _ 11 compound _ _ 11 Price _ PROPN NNP _ 5 conj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 they _ PRON PRP _ 15 nsubj _ _ 14 had _ AUX VBD _ 15 aux _ _ 15 raised _ VERB VBN _ 12 ccomp _ _ 16 their _ PRON PRP$ _ 18 nmod:poss _ _ 17 cash _ NOUN NN _ 18 compound _ _ 18 levels _ NOUN NNS _ 15 dobj _ _ 19 to _ ADP TO _ 26 case _ _ 20 more _ ADJ JJR _ 26 advmod _ _ 21 than _ ADP IN _ 20 mwe _ _ 22 20 _ NUM CD _ 26 compound _ _ 23 % _ SYM NN _ 26 dep _ _ 24 and _ CONJ CC _ 26 cc _ _ 25 30 _ NUM CD _ 26 conj _ _ 26 % _ SYM NN _ 15 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 respectively _ ADV RB _ 26 advmod _ _ 29 , _ PUNCT , _ 15 punct _ _ 30 this _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 15 nmod:tmod _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 Even _ ADV RB _ 3 advmod _ _ 2 Peter _ PROPN NNP _ 3 compound _ _ 3 Lynch _ PROPN NNP _ 22 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 manager _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 13 case _ _ 7 Fidelity _ PROPN NNP _ 13 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 $ _ SYM $ _ 13 amod _ _ 10 12.7 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 Magellan _ PROPN NNP _ 13 compound _ _ 13 Fund _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 the _ DET DT _ 16 det _ _ 16 nation _ NOUN NN _ 20 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 largest _ ADJ JJS _ 20 amod _ _ 19 stock _ NOUN NN _ 20 compound _ _ 20 fund _ NOUN NN _ 13 appos _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 built _ VERB VBD _ 0 root _ _ 23 up _ ADP RP _ 22 compound:prt _ _ 24 cash _ NOUN NN _ 22 dobj _ _ 25 to _ ADP TO _ 27 case _ _ 26 7 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 22 nmod _ _ 28 or _ CONJ CC _ 27 cc _ _ 29 $ _ SYM $ _ 27 conj _ _ 30 850 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 . _ PUNCT . _ 22 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 reason _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 that _ DET DT _ 15 mark _ _ 5 after _ ADP IN _ 7 case _ _ 6 two _ NUM CD _ 7 nummod _ _ 7 years _ NOUN NNS _ 15 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 monthly _ ADJ JJ _ 11 amod _ _ 10 net _ ADJ JJ _ 11 amod _ _ 11 redemptions _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 fund _ NOUN NN _ 15 nsubj _ _ 15 posted _ VERB VBD _ 3 ccomp _ _ 16 net _ ADJ JJ _ 17 amod _ _ 17 inflows _ NOUN NNS _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 money _ NOUN NN _ 17 nmod _ _ 20 from _ ADP IN _ 21 case _ _ 21 investors _ NOUN NNS _ 17 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 August _ PROPN NNP _ 15 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 September _ PROPN NNP _ 23 conj _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 let _ VERB VBD _ 13 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 money _ NOUN NN _ 7 nsubj _ _ 7 build _ VERB VB _ 4 ccomp _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 '' _ PUNCT '' _ 13 punct _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Lynch _ PROPN NNP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 who _ PRON WP _ 16 nsubj _ _ 16 added _ VERB VBD _ 13 ccomp _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 he _ PRON PRP _ 20 nsubj _ _ 19 has _ AUX VBZ _ 20 aux _ _ 20 had _ VERB VBN _ 16 ccomp _ _ 21 trouble _ NOUN NN _ 20 dobj _ _ 22 finding _ VERB VBG _ 20 xcomp _ _ 23 stocks _ NOUN NNS _ 22 dobj _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 likes _ VERB VBZ _ 23 acl:relcl _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 all _ DET DT _ 3 amod _ _ 3 funds _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 raised _ VERB VBN _ 0 root _ _ 6 cash _ NOUN NN _ 7 compound _ _ 7 levels _ NOUN NNS _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 of _ ADP IN _ 10 case _ _ 10 course _ NOUN NN _ 5 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 group _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 stock _ NOUN NN _ 6 compound _ _ 6 funds _ NOUN NNS _ 7 nsubj _ _ 7 held _ VERB VBD _ 0 root _ _ 8 10.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 assets _ NOUN NNS _ 9 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 cash _ NOUN NN _ 7 nmod _ _ 14 as _ ADP IN _ 16 case _ _ 15 of _ ADP IN _ 16 case _ _ 16 August _ PROPN NNP _ 7 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 the _ DET DT _ 20 det _ _ 19 latest _ ADJ JJS _ 20 amod _ _ 20 figures _ NOUN NNS _ 7 dobj _ _ 21 available _ ADJ JJ _ 20 amod _ _ 22 from _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Investment _ PROPN NNP _ 26 compound _ _ 25 Company _ PROPN NNP _ 26 compound _ _ 26 Institute _ PROPN NNP _ 21 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 That _ PRON DT _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 modestly _ ADV RB _ 4 advmod _ _ 4 higher _ ADJ JJR _ 0 root _ _ 5 than _ ADP IN _ 12 case _ _ 6 the _ DET DT _ 12 det _ _ 7 8.8 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 12 nummod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 9.2 _ NUM CD _ 11 nummod _ _ 11 % _ ADJ JJ _ 8 conj _ _ 12 levels _ NOUN NNS _ 4 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 12 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 September _ PROPN NNP _ 14 conj _ _ 17 of _ ADP IN _ 18 case _ _ 18 1987 _ NUM CD _ 14 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 persistent _ ADJ JJ _ 4 amod _ _ 4 redemptions _ NOUN NNS _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 force _ VERB VB _ 0 root _ _ 7 some _ DET DT _ 9 det _ _ 8 fund _ NOUN NN _ 9 compound _ _ 9 managers _ NOUN NNS _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 dump _ VERB VB _ 6 xcomp _ _ 12 stocks _ NOUN NNS _ 11 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 raise _ VERB VB _ 11 advcl _ _ 15 cash _ NOUN NN _ 14 dobj _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 18 cc _ _ 2 a _ DET DT _ 4 det _ _ 3 strong _ ADJ JJ _ 4 amod _ _ 4 level _ NOUN NN _ 11 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 investor _ NOUN NN _ 7 compound _ _ 7 withdrawals _ NOUN NNS _ 4 nmod _ _ 8 is _ VERB VBZ _ 11 cop _ _ 9 much _ ADV RB _ 10 advmod _ _ 10 more _ ADV RBR _ 11 advmod _ _ 11 unlikely _ ADJ JJ _ 18 dep _ _ 12 this _ DET DT _ 13 det _ _ 13 time _ NOUN NN _ 11 nmod:tmod _ _ 14 around _ ADV RB _ 13 advmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 fund _ NOUN NN _ 17 compound _ _ 17 managers _ NOUN NNS _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 reason _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 investors _ NOUN NNS _ 10 nsubj _ _ 7 already _ ADV RB _ 10 advmod _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 sharply _ ADV RB _ 10 advmod _ _ 10 scaled _ VERB VBN _ 4 ccomp _ _ 11 back _ ADP RP _ 10 compound:prt _ _ 12 their _ PRON PRP$ _ 13 nmod:poss _ _ 13 purchases _ NOUN NNS _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 funds _ NOUN NNS _ 13 nmod _ _ 17 since _ ADP IN _ 19 case _ _ 18 Black _ PROPN NNP _ 19 compound _ _ 19 Monday _ PROPN NNP _ 10 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Stock-fund _ ADJ JJ _ 2 amod _ _ 2 sales _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 rebounded _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 recent _ ADJ JJ _ 7 amod _ _ 7 months _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 but _ CONJ CC _ 4 cc _ _ 10 monthly _ ADJ JJ _ 12 amod _ _ 11 net _ ADJ JJ _ 12 amod _ _ 12 purchases _ NOUN NNS _ 15 nsubj _ _ 13 are _ AUX VBP _ 15 aux _ _ 14 still _ ADV RB _ 15 advmod _ _ 15 running _ VERB VBG _ 4 conj _ _ 16 at _ ADP IN _ 21 case _ _ 17 less _ ADJ JJR _ 19 advmod _ _ 18 than _ ADP IN _ 17 mwe _ _ 19 half _ NOUN NN _ 21 nummod _ _ 20 1987 _ NUM CD _ 21 nummod _ _ 21 levels _ NOUN NNS _ 15 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 11 ccomp _ _ 4 not _ PART RB _ 3 neg _ _ 5 nearly _ ADV RB _ 7 advmod _ _ 6 as _ ADP IN _ 7 dep _ _ 7 much _ ADJ JJ _ 8 amod _ _ 8 froth _ NOUN NN _ 3 nsubj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 John _ PROPN NNP _ 13 compound _ _ 13 Bogle _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 chairman _ NOUN NN _ 13 appos _ _ 16 of _ ADP IN _ 19 case _ _ 17 Vanguard _ PROPN NNP _ 19 compound _ _ 18 Group _ PROPN NNP _ 19 compound _ _ 19 Inc. _ PROPN NNP _ 15 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 a _ DET DT _ 29 det _ _ 22 big _ ADJ JJ _ 29 amod _ _ 23 Valley _ PROPN NNP _ 29 dep _ _ 24 Forge _ PROPN NNP _ 23 compound _ _ 25 , _ PUNCT , _ 23 punct _ _ 26 Pa. _ PROPN NNP _ 23 dep _ _ 27 , _ PUNCT , _ 23 punct _ _ 28 fund _ NOUN NN _ 29 compound _ _ 29 company _ NOUN NN _ 19 appos _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 Many _ ADJ JJ _ 3 amod _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 4 nsubj _ _ 4 argue _ VERB VBP _ 0 root _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 now _ ADV RB _ 9 nsubj _ _ 7 's _ VERB VBZ _ 9 cop _ _ 8 the _ DET DT _ 9 det _ _ 9 time _ NOUN NN _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 buy _ VERB VB _ 9 acl _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Vincent _ PROPN NNP _ 2 compound _ _ 2 Bajakian _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 manager _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 11 det _ _ 7 $ _ SYM $ _ 11 amod _ _ 8 1.8 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 Wellington _ PROPN NNP _ 11 compound _ _ 11 Fund _ PROPN NNP _ 4 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 added _ VERB VBD _ 0 root _ _ 14 to _ ADP TO _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 positions _ NOUN NNS _ 13 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 Bristol-Myers _ PROPN NNP _ 19 compound _ _ 19 Squibb _ PROPN NNP _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Woolworth _ PROPN NNP _ 19 conj _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 Dun _ PROPN NNP _ 19 conj _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Bradstreet _ PROPN NNP _ 23 conj _ _ 26 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 today _ NOUN NN _ 6 nmod:tmod _ _ 3 he _ PRON PRP _ 6 nsubj _ _ 4 'll _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 aux _ _ 6 looking _ VERB VBG _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 6 xcomp _ _ 9 drug _ NOUN NN _ 10 compound _ _ 10 stocks _ NOUN NNS _ 8 dobj _ _ 11 like _ ADP IN _ 13 case _ _ 12 Eli _ PROPN NNP _ 13 compound _ _ 13 Lilly _ PROPN NNP _ 10 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Pfizer _ PROPN NNP _ 13 conj _ _ 16 and _ CONJ CC _ 13 cc _ _ 17 American _ PROPN NNP _ 19 compound _ _ 18 Home _ PROPN NNP _ 19 compound _ _ 19 Products _ PROPN NNP _ 13 conj _ _ 20 whose _ PRON WP$ _ 22 nmod:poss _ _ 21 dividend _ NOUN NN _ 22 compound _ _ 22 yields _ NOUN NNS _ 25 nsubjpass _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 bolstered _ VERB VBN _ 13 acl:relcl _ _ 26 by _ ADP IN _ 28 case _ _ 27 stock _ NOUN NN _ 28 compound _ _ 28 declines _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Fidelity _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 Lynch _ PROPN NNP _ 10 nsubj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 for _ ADP IN _ 8 case _ _ 7 his _ PRON PRP$ _ 8 nmod:poss _ _ 8 part _ NOUN NN _ 10 nmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 snapped _ VERB VBD _ 0 root _ _ 11 up _ ADP RP _ 10 compound:prt _ _ 12 Southern _ PROPN NNP _ 14 compound _ _ 13 Co. _ PROPN NNP _ 14 compound _ _ 14 shares _ NOUN NNS _ 10 dobj _ _ 15 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 16 after _ SCONJ IN _ 20 mark _ _ 17 the _ DET DT _ 18 det _ _ 18 stock _ NOUN NN _ 20 nsubjpass _ _ 19 got _ AUX VBD _ 20 auxpass _ _ 20 hammered _ VERB VBN _ 10 advcl _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 drops _ VERB VBZ _ 9 advcl _ _ 5 further _ ADV RBR _ 4 advmod _ _ 6 today _ NOUN NN _ 4 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 he _ PRON PRP _ 13 nsubj _ _ 11 'll _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 aux _ _ 13 buying _ VERB VBG _ 9 ccomp _ _ 14 blue _ ADJ JJ _ 15 amod _ _ 15 chips _ NOUN NNS _ 13 dobj _ _ 16 such _ ADJ JJ _ 18 case _ _ 17 as _ ADP IN _ 16 mwe _ _ 18 Bristol-Myers _ PROPN NNP _ 15 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 Kellogg _ PROPN NNP _ 18 conj _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 croak _ VERB VBP _ 14 advcl _ _ 5 stocks _ NOUN NNS _ 4 dobj _ _ 6 like _ ADP IN _ 7 case _ _ 7 that _ PRON DT _ 5 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 14 parataxis _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 presents _ VERB VBZ _ 0 root _ _ 15 an _ DET DT _ 16 det _ _ 16 opportunity _ NOUN NN _ 14 dobj _ _ 17 that _ PRON WDT _ 21 nsubj _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 kind _ NOUN NN _ 16 acl:relcl _ _ 22 of _ ADP IN _ 23 case _ _ 23 thing _ NOUN NN _ 21 nmod _ _ 24 you _ PRON PRP _ 25 nsubj _ _ 25 dream _ VERB VBP _ 21 acl:relcl _ _ 26 about _ ADP IN _ 25 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 28 '' _ PUNCT '' _ 14 punct _ _ 1 Major _ ADJ JJ _ 3 amod _ _ 2 mutual-fund _ NOUN NN _ 3 compound _ _ 3 groups _ NOUN NNS _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 phone _ NOUN NN _ 6 compound _ _ 6 calls _ NOUN NNS _ 8 nsubj _ _ 7 were _ AUX VBD _ 8 aux _ _ 8 arriving _ VERB VBG _ 4 ccomp _ _ 9 at _ ADP IN _ 14 case _ _ 10 twice _ ADV RB _ 14 advmod _ _ 11 the _ DET DT _ 14 det _ _ 12 normal _ ADJ JJ _ 14 amod _ _ 13 weekend _ NOUN NN _ 14 compound _ _ 14 pace _ NOUN NN _ 8 nmod _ _ 15 yesterday _ NOUN NN _ 8 nmod:tmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 most _ ADJ JJS _ 3 amod _ _ 3 investors _ NOUN NNS _ 5 nsubj _ _ 4 were _ AUX VBD _ 5 aux _ _ 5 seeking _ VERB VBG _ 0 root _ _ 6 share _ NOUN NN _ 7 compound _ _ 7 prices _ NOUN NNS _ 5 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 other _ ADJ JJ _ 10 amod _ _ 10 information _ NOUN NN _ 7 conj _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 Trading _ NOUN NN _ 2 compound _ _ 2 volume _ NOUN NN _ 6 nsubj _ _ 3 was _ VERB VBD _ 6 cop _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 modestly _ ADV RB _ 6 advmod _ _ 6 higher _ ADJ JJR _ 0 root _ _ 7 than _ ADP IN _ 8 case _ _ 8 normal _ ADJ JJ _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 Still _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 fund _ NOUN NN _ 4 compound _ _ 4 groups _ NOUN NNS _ 7 nsubj _ _ 5 are _ AUX VBP _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 taking _ VERB VBG _ 0 root _ _ 8 any _ DET DT _ 9 det _ _ 9 chances _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 hope _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 avoid _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 8 det _ _ 6 jammed _ ADJ JJ _ 8 amod _ _ 7 phone _ NOUN NN _ 8 compound _ _ 8 lines _ NOUN NNS _ 4 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 snags _ NOUN NNS _ 8 conj _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 infuriated _ VERB VBD _ 8 acl:relcl _ _ 14 some _ DET DT _ 16 det _ _ 15 fund _ NOUN NN _ 16 compound _ _ 16 investors _ NOUN NNS _ 13 dobj _ _ 17 in _ ADP IN _ 18 case _ _ 18 October _ PROPN NNP _ 13 nmod _ _ 19 1987 _ NUM CD _ 18 nummod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Fidelity _ PROPN NNP _ 4 nsubj _ _ 2 on _ ADP IN _ 3 case _ _ 3 Saturday _ PROPN NNP _ 4 nmod _ _ 4 opened _ VERB VBD _ 0 root _ _ 5 its _ PRON PRP$ _ 9 nmod:poss _ _ 6 54 _ NUM CD _ 9 nummod _ _ 7 walk-in _ ADJ JJ _ 9 amod _ _ 8 investor _ NOUN NN _ 9 compound _ _ 9 centers _ NOUN NNS _ 4 dobj _ _ 10 across _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 country _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 centers _ NOUN NNS _ 5 nsubj _ _ 3 normally _ ADV RB _ 5 advmod _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 closed _ ADJ JJ _ 0 root _ _ 6 through _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 weekend _ NOUN NN _ 5 nmod _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 East _ PROPN NNP _ 6 compound _ _ 5 Coast _ PROPN NNP _ 6 compound _ _ 6 centers _ NOUN NNS _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 open _ VERB VB _ 0 root _ _ 9 at _ ADP IN _ 11 case _ _ 10 7:30 _ NUM CD _ 11 nummod _ _ 11 EDT _ PROPN NNP _ 8 nmod _ _ 12 this _ DET DT _ 13 det _ _ 13 morning _ NOUN NN _ 8 nmod:tmod _ _ 14 , _ PUNCT , _ 8 punct _ _ 15 instead _ ADV RB _ 19 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 the _ DET DT _ 19 det _ _ 18 normal _ ADJ JJ _ 19 amod _ _ 19 8:30 _ NUM CD _ 8 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 T. _ PROPN NNP _ 5 compound _ _ 2 Rowe _ PROPN NNP _ 5 compound _ _ 3 Price _ PROPN NNP _ 5 compound _ _ 4 Associates _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 increased _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 staff _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 phone _ NOUN NN _ 11 compound _ _ 11 representatives _ NOUN NNS _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 handle _ VERB VB _ 11 acl _ _ 14 investor _ NOUN NN _ 15 compound _ _ 15 requests _ NOUN NNS _ 13 dobj _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Baltimore-based _ ADJ JJ _ 3 amod _ _ 3 group _ NOUN NN _ 4 nsubj _ _ 4 noted _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 some _ DET DT _ 7 det _ _ 7 investors _ NOUN NNS _ 8 nsubj _ _ 8 moved _ VERB VBD _ 4 ccomp _ _ 9 money _ NOUN NN _ 8 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 funds _ NOUN NNS _ 8 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 money-market _ NOUN NN _ 15 compound _ _ 15 funds _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 most _ ADJ JJS _ 3 amod _ _ 3 investors _ NOUN NNS _ 4 nsubj _ _ 4 seemed _ VERB VBD _ 20 ccomp _ _ 5 to _ PART TO _ 11 mark _ _ 6 be _ VERB VB _ 11 cop _ _ 7 `` _ PUNCT `` _ 11 punct _ _ 8 in _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 information _ NOUN NN _ 11 compound _ _ 11 mode _ NOUN NN _ 4 xcomp _ _ 12 rather _ ADV RB _ 11 cc _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 in _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 transaction _ NOUN NN _ 17 compound _ _ 17 mode _ NOUN NN _ 11 conj _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 Steven _ PROPN NNP _ 22 compound _ _ 22 Norwitz _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 a _ DET DT _ 26 det _ _ 25 vice _ NOUN NN _ 26 compound _ _ 26 president _ NOUN NN _ 22 appos _ _ 27 . _ PUNCT . _ 20 punct _ _ 1 And _ CONJ CC _ 8 cc _ _ 2 Vanguard _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 among _ ADP IN _ 6 case _ _ 5 other _ ADJ JJ _ 6 amod _ _ 6 groups _ NOUN NNS _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 it _ PRON PRP _ 11 nsubj _ _ 10 was _ AUX VBD _ 11 aux _ _ 11 adding _ VERB VBG _ 8 ccomp _ _ 12 more _ ADJ JJR _ 14 amod _ _ 13 phone _ NOUN NN _ 14 compound _ _ 14 representatives _ NOUN NNS _ 11 dobj _ _ 15 today _ NOUN NN _ 11 nmod:tmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 help _ VERB VB _ 11 advcl _ _ 18 investors _ NOUN NNS _ 19 nsubj _ _ 19 get _ VERB VB _ 17 ccomp _ _ 20 through _ ADP RP _ 19 compound:prt _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 an _ DET DT _ 4 det _ _ 3 unusual _ ADJ JJ _ 4 amod _ _ 4 move _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 several _ ADJ JJ _ 7 amod _ _ 7 funds _ NOUN NNS _ 8 nsubj _ _ 8 moved _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 calm _ VERB VB _ 8 xcomp _ _ 11 investors _ NOUN NNS _ 10 dobj _ _ 12 with _ ADP IN _ 13 case _ _ 13 recordings _ NOUN NNS _ 10 nmod _ _ 14 on _ ADP IN _ 18 case _ _ 15 their _ PRON PRP$ _ 18 nmod:poss _ _ 16 toll-free _ ADJ JJ _ 18 amod _ _ 17 phone _ NOUN NN _ 18 compound _ _ 18 lines _ NOUN NNS _ 10 nmod _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 view _ VERB VBP _ 28 ccomp _ _ 4 -LCB- _ PUNCT -LRB- _ 5 punct _ _ 5 Friday _ PROPN NNP _ 9 appos _ _ 6 's _ PART POS _ 5 case _ _ 7 -RCB- _ PUNCT -RRB- _ 5 punct _ _ 8 market _ NOUN NN _ 9 compound _ _ 9 decline _ NOUN NN _ 3 dobj _ _ 10 as _ SCONJ IN _ 11 mark _ _ 11 offering _ VERB VBG _ 3 advcl _ _ 12 us _ PRON PRP _ 11 iobj _ _ 13 a _ DET DT _ 15 det _ _ 14 buying _ NOUN NN _ 15 compound _ _ 15 opportunity _ NOUN NN _ 11 dobj _ _ 16 as _ ADP IN _ 18 case _ _ 17 long-term _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 11 nmod _ _ 19 , _ PUNCT , _ 28 punct _ _ 20 '' _ PUNCT '' _ 28 punct _ _ 21 a _ DET DT _ 22 det _ _ 22 recording _ NOUN NN _ 28 nsubj _ _ 23 at _ ADP IN _ 27 case _ _ 24 Gabelli _ PROPN NNP _ 27 compound _ _ 25 & _ CONJ CC _ 24 cc _ _ 26 Co. _ PROPN NNP _ 24 conj _ _ 27 funds _ NOUN NNS _ 22 nmod _ _ 28 said _ VERB VBD _ 0 root _ _ 29 over _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 weekend _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Janus _ PROPN NNP _ 3 compound _ _ 3 Group _ PROPN NNP _ 4 nsubj _ _ 4 had _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 similar _ ADJ JJ _ 7 amod _ _ 7 recording _ NOUN NN _ 4 dobj _ _ 8 for _ ADP IN _ 9 case _ _ 9 investors _ NOUN NNS _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 Several _ ADJ JJ _ 3 amod _ _ 2 fund _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 4 nsubj _ _ 4 expect _ VERB VBP _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 rough _ ADJ JJ _ 7 amod _ _ 7 market _ NOUN NN _ 4 dobj _ _ 8 this _ DET DT _ 9 det _ _ 9 morning _ NOUN NN _ 7 nmod:tmod _ _ 10 before _ SCONJ IN _ 12 mark _ _ 11 prices _ NOUN NNS _ 12 nsubj _ _ 12 stabilize _ VERB VBP _ 4 advcl _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 early _ ADJ JJ _ 3 amod _ _ 3 selling _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 likely _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 stem _ VERB VB _ 5 xcomp _ _ 8 from _ ADP IN _ 9 case _ _ 9 investors _ NOUN NNS _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 portfolio _ NOUN NN _ 12 compound _ _ 12 managers _ NOUN NNS _ 9 conj _ _ 13 who _ PRON WP _ 14 nsubj _ _ 14 want _ VERB VBP _ 9 acl:relcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 lock _ VERB VB _ 14 xcomp _ _ 17 in _ ADP RP _ 16 compound:prt _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 fat _ ADJ JJ _ 22 amod _ _ 22 profits _ NOUN NNS _ 16 dobj _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 Stock _ NOUN NN _ 2 compound _ _ 2 funds _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 averaged _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 staggering _ ADJ JJ _ 7 amod _ _ 7 gain _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 25 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 through _ ADP IN _ 12 case _ _ 12 September _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 according _ VERB VBG _ 19 case _ _ 15 to _ ADP TO _ 14 mwe _ _ 16 Lipper _ PROPN NNP _ 19 compound _ _ 17 Analytical _ PROPN NNP _ 19 compound _ _ 18 Services _ PROPN NNP _ 19 compound _ _ 19 Inc _ PROPN NNP _ 4 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Elaine _ PROPN NNP _ 2 compound _ _ 2 Garzarelli _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 runs _ VERB VBZ _ 2 acl:relcl _ _ 6 Shearson _ PROPN NNP _ 9 compound _ _ 7 Lehman _ PROPN NNP _ 9 compound _ _ 8 Hutton _ PROPN NNP _ 9 compound _ _ 9 Inc. _ PROPN NNP _ 16 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 $ _ SYM $ _ 16 amod _ _ 12 335 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 Sector _ PROPN NNP _ 16 compound _ _ 15 Analysis _ PROPN NNP _ 16 compound _ _ 16 Portfolio _ PROPN NNP _ 5 dobj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 predicts _ VERB VBZ _ 0 root _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 22 nsubj _ _ 21 will _ AUX MD _ 22 aux _ _ 22 open _ VERB VB _ 18 ccomp _ _ 23 down _ ADV RB _ 22 advmod _ _ 24 at _ ADP IN _ 25 case _ _ 25 least _ ADJ JJS _ 26 nmod:npmod _ _ 26 50 _ NUM CD _ 27 nummod _ _ 27 points _ NOUN NNS _ 23 nmod:npmod _ _ 28 on _ ADP IN _ 30 case _ _ 29 technical _ ADJ JJ _ 30 amod _ _ 30 factors _ NOUN NNS _ 23 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 `` _ PUNCT `` _ 30 punct _ _ 33 some _ DET DT _ 35 det _ _ 34 panic _ NOUN NN _ 35 compound _ _ 35 selling _ NOUN NN _ 30 conj _ _ 36 . _ PUNCT . _ 18 punct _ _ 37 '' _ PUNCT '' _ 18 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 prices _ NOUN NNS _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 rebound _ VERB VB _ 3 xcomp _ _ 7 soon _ ADV RB _ 6 advmod _ _ 8 and _ CONJ CC _ 3 cc _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 telling _ VERB VBG _ 3 conj _ _ 11 investors _ NOUN NNS _ 10 dobj _ _ 12 she _ PRON PRP _ 13 nsubj _ _ 13 expects _ VERB VBZ _ 10 ccomp _ _ 14 the _ DET DT _ 16 det _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 market _ NOUN NN _ 19 nsubj _ _ 17 wo _ AUX MD _ 19 aux _ _ 18 n't _ PART RB _ 19 neg _ _ 19 decline _ VERB VB _ 13 ccomp _ _ 20 more _ ADJ JJR _ 26 advmod _ _ 21 than _ ADP IN _ 20 mwe _ _ 22 10 _ NUM CD _ 26 compound _ _ 23 % _ SYM NN _ 26 dep _ _ 24 to _ ADP TO _ 26 dep _ _ 25 15 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 19 dobj _ _ 27 from _ ADP IN _ 29 case _ _ 28 recent _ ADJ JJ _ 29 amod _ _ 29 highs _ NOUN NNS _ 19 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 This _ PRON DT _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 not _ PART RB _ 7 neg _ _ 5 a _ DET DT _ 7 det _ _ 6 major _ ADJ JJ _ 7 amod _ _ 7 crash _ NOUN NN _ 11 ccomp _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 she _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Nevertheless _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Ms. _ PROPN NNP _ 4 compound _ _ 4 Garzarelli _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 she _ PRON PRP _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 swamped _ VERB VBN _ 5 ccomp _ _ 9 with _ ADP IN _ 11 case _ _ 10 phone _ NOUN NN _ 11 compound _ _ 11 calls _ NOUN NNS _ 8 nmod _ _ 12 over _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 weekend _ NOUN NN _ 8 nmod _ _ 15 from _ ADP IN _ 17 case _ _ 16 nervous _ ADJ JJ _ 17 amod _ _ 17 shareholders _ NOUN NNS _ 8 nmod _ _ 18 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 Half _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 them _ PRON PRP _ 2 nmod _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 really _ ADV RB _ 7 advmod _ _ 7 scared _ ADJ JJ _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 want _ VERB VB _ 7 conj _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 9 xcomp _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 she _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 7 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 `` _ PUNCT `` _ 7 punct _ _ 18 but _ CONJ CC _ 7 cc _ _ 19 I _ PRON PRP _ 21 nsubj _ _ 20 'm _ AUX VBP _ 21 aux _ _ 21 trying _ VERB VBG _ 7 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 talk _ VERB VB _ 21 xcomp _ _ 24 them _ PRON PRP _ 23 dobj _ _ 25 out _ ADP IN _ 23 advmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 it _ PRON PRP _ 25 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 29 '' _ PUNCT '' _ 7 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 `` _ PUNCT `` _ 15 punct _ _ 5 If _ SCONJ IN _ 9 mark _ _ 6 they _ PRON PRP _ 9 nsubj _ _ 7 all _ DET DT _ 9 dep _ _ 8 were _ VERB VBD _ 9 cop _ _ 9 bullish _ ADJ JJ _ 15 advcl _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 I _ PRON PRP _ 15 nsubj _ _ 12 'd _ AUX MD _ 15 aux _ _ 13 really _ ADV RB _ 15 advmod _ _ 14 be _ VERB VB _ 15 cop _ _ 15 upset _ ADJ JJ _ 2 ccomp _ _ 16 . _ PUNCT . _ 2 punct _ _ 17 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 backdrop _ NOUN NN _ 9 nsubj _ _ 3 to _ ADP TO _ 6 case _ _ 4 Friday _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 slide _ NOUN NN _ 2 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 markedly _ ADV RB _ 9 advmod _ _ 9 different _ ADJ JJ _ 20 ccomp _ _ 10 from _ ADP IN _ 11 case _ _ 11 that _ PRON DT _ 9 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 October _ PROPN NNP _ 16 compound _ _ 15 1987 _ NUM CD _ 16 nummod _ _ 16 crash _ NOUN NN _ 11 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 fund _ NOUN NN _ 19 compound _ _ 19 managers _ NOUN NNS _ 20 nsubj _ _ 20 argue _ VERB VBP _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 11 advmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 unlike _ ADP IN _ 6 case _ _ 6 today _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 dollar _ NOUN NN _ 11 nsubj _ _ 10 was _ VERB VBD _ 11 cop _ _ 11 weak _ ADJ JJ _ 25 ccomp _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 interest _ NOUN NN _ 14 compound _ _ 14 rates _ NOUN NNS _ 16 nsubj _ _ 15 were _ AUX VBD _ 16 aux _ _ 16 rising _ VERB VBG _ 11 conj _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 market _ NOUN NN _ 22 nsubj _ _ 20 was _ VERB VBD _ 22 cop _ _ 21 very _ ADV RB _ 22 advmod _ _ 22 overvalued _ ADJ JJ _ 11 conj _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 they _ PRON PRP _ 25 nsubj _ _ 25 say _ VERB VBP _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 From _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 4 det _ _ 4 investors _ NOUN NNS _ 6 nmod:poss _ _ 5 ' _ PART POS _ 4 case _ _ 6 standpoint _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 institutions _ NOUN NNS _ 11 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 individuals _ NOUN NNS _ 8 conj _ _ 11 learned _ VERB VBD _ 26 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 painful _ ADJ JJ _ 14 amod _ _ 14 lesson _ NOUN NN _ 11 dobj _ _ 15 ... _ PUNCT : _ 11 punct _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 selling _ VERB VBG _ 11 advcl _ _ 18 at _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 lows _ NOUN NNS _ 17 nmod _ _ 21 '' _ PUNCT '' _ 17 punct _ _ 22 on _ ADP IN _ 24 case _ _ 23 Black _ PROPN NNP _ 24 compound _ _ 24 Monday _ PROPN NNP _ 17 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 Stephen _ PROPN NNP _ 28 compound _ _ 28 Boesel _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 manager _ NOUN NN _ 28 appos _ _ 31 of _ ADP IN _ 39 case _ _ 32 the _ DET DT _ 39 det _ _ 33 $ _ SYM $ _ 39 amod _ _ 34 580 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 T. _ PROPN NNP _ 39 compound _ _ 37 Rowe _ PROPN NNP _ 39 compound _ _ 38 Price _ PROPN NNP _ 39 compound _ _ 39 Growth _ PROPN NNP _ 30 nmod _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 Income _ PROPN NNP _ 42 compound _ _ 42 Fund _ PROPN NNP _ 39 conj _ _ 43 . _ PUNCT . _ 26 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 8 nmod:tmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 `` _ PUNCT `` _ 8 punct _ _ 5 I _ PRON PRP _ 8 nsubj _ _ 6 do _ AUX VBP _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 think _ VERB VB _ 0 root _ _ 9 we _ PRON PRP _ 11 nsubj _ _ 10 'll _ AUX MD _ 11 aux _ _ 11 get _ VERB VB _ 8 ccomp _ _ 12 a _ DET DT _ 14 det _ _ 13 panic _ NOUN NN _ 14 compound _ _ 14 reaction _ NOUN NN _ 11 dobj _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Newport _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 fiscal-first-quarter _ ADJ JJ _ 9 amod _ _ 9 earnings _ NOUN NNS _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 between _ ADP IN _ 13 amod _ _ 12 15 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 19 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 13 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 13 nmod:npmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 somewhat _ ADV RB _ 24 advmod _ _ 21 below _ ADP IN _ 24 case _ _ 22 analysts _ NOUN NNS _ 24 nmod:poss _ _ 23 ' _ PART POS _ 22 case _ _ 24 estimates _ NOUN NNS _ 13 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 19 _ NUM CD _ 27 nummod _ _ 27 cents _ NOUN NNS _ 24 nmod _ _ 28 to _ ADP TO _ 27 dep _ _ 29 23 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 27 dep _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 maker _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 scientific _ ADJ JJ _ 5 amod _ _ 5 instruments _ NOUN NNS _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 laser _ NOUN NN _ 8 compound _ _ 8 parts _ NOUN NNS _ 5 conj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 orders _ NOUN NNS _ 11 nsubj _ _ 11 fell _ VERB VBD _ 9 ccomp _ _ 12 below _ ADP IN _ 13 case _ _ 13 expectations _ NOUN NNS _ 11 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 recent _ ADJ JJ _ 16 amod _ _ 16 months _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 12 mark _ _ 5 sales _ NOUN NNS _ 12 nsubj _ _ 6 in _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 current _ ADJ JJ _ 9 amod _ _ 9 quarter _ NOUN NN _ 5 nmod _ _ 10 will _ NOUN NN _ 12 dep _ _ 11 about _ ADV RB _ 12 advmod _ _ 12 equal _ VERB VB _ 3 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 yearearlier _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 figure _ NOUN NN _ 12 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 when _ ADV WRB _ 21 advmod _ _ 20 Newport _ PROPN NNP _ 21 nsubj _ _ 21 reported _ VERB VBD _ 17 acl:relcl _ _ 22 net _ ADJ JJ _ 23 amod _ _ 23 income _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 1.7 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 21 _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 23 punct _ _ 35 on _ ADP IN _ 36 case _ _ 36 $ _ SYM $ _ 23 nmod _ _ 37 14.1 _ NUM CD _ 38 compound _ _ 38 million _ NUM CD _ 36 nummod _ _ 39 in _ ADP IN _ 40 case _ _ 40 sales _ NOUN NNS _ 36 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Ripples _ NOUN NNS _ 13 nsubj _ _ 2 from _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 strike _ NOUN NN _ 1 nmod _ _ 5 by _ ADP IN _ 9 case _ _ 6 55,000 _ NUM CD _ 9 nummod _ _ 7 Machinists _ PROPN NNPS _ 9 compound _ _ 8 union _ NOUN NN _ 9 compound _ _ 9 members _ NOUN NNS _ 4 nmod _ _ 10 against _ ADP IN _ 12 case _ _ 11 Boeing _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 4 nmod _ _ 13 reached _ VERB VBD _ 0 root _ _ 14 air _ NOUN NN _ 15 compound _ _ 15 carriers _ NOUN NNS _ 13 dobj _ _ 16 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 17 as _ SCONJ IN _ 21 mark _ _ 18 America _ PROPN NNP _ 20 compound _ _ 19 West _ PROPN NNP _ 20 compound _ _ 20 Airlines _ PROPN NNP _ 21 nsubj _ _ 21 announced _ VERB VBD _ 13 advcl _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 will _ AUX MD _ 24 aux _ _ 24 postpone _ VERB VB _ 21 ccomp _ _ 25 its _ PRON PRP$ _ 27 nmod:poss _ _ 26 new _ ADJ JJ _ 27 amod _ _ 27 service _ NOUN NN _ 24 dobj _ _ 28 out _ ADP IN _ 30 case _ _ 29 of _ ADP IN _ 30 case _ _ 30 Houston _ PROPN NNP _ 27 nmod _ _ 31 because _ ADP IN _ 33 case _ _ 32 of _ ADP IN _ 31 mwe _ _ 33 delays _ NOUN NNS _ 24 nmod _ _ 34 in _ SCONJ IN _ 35 mark _ _ 35 receiving _ VERB VBG _ 33 acl _ _ 36 aircraft _ NOUN NN _ 35 dobj _ _ 37 from _ ADP IN _ 41 case _ _ 38 the _ DET DT _ 41 det _ _ 39 Seattle _ PROPN NNP _ 41 compound _ _ 40 jet _ NOUN NN _ 41 compound _ _ 41 maker _ NOUN NN _ 35 nmod _ _ 42 . _ PUNCT . _ 13 punct _ _ 1 Peter _ PROPN NNP _ 2 compound _ _ 2 Otradovec _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 vice _ NOUN NN _ 5 compound _ _ 5 president _ NOUN NN _ 2 appos _ _ 6 for _ ADP IN _ 7 case _ _ 7 planning _ NOUN NN _ 5 nmod _ _ 8 at _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 Phoenix _ PROPN NNP _ 14 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Ariz. _ PROPN NNP _ 10 dep _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 carrier _ NOUN NN _ 5 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 in _ ADP IN _ 19 case _ _ 18 an _ DET DT _ 19 det _ _ 19 interview _ NOUN NN _ 16 nmod _ _ 20 that _ SCONJ IN _ 35 mark _ _ 21 the _ DET DT _ 23 det _ _ 22 work _ NOUN NN _ 23 compound _ _ 23 stoppage _ NOUN NN _ 35 nsubj _ _ 24 at _ ADP IN _ 25 case _ _ 25 Boeing _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 now _ ADV RB _ 28 advmod _ _ 28 entering _ VERB VBG _ 23 acl _ _ 29 its _ PRON PRP$ _ 31 nmod:poss _ _ 30 13th _ ADJ JJ _ 31 amod _ _ 31 day _ NOUN NN _ 28 nmod:tmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 `` _ PUNCT `` _ 35 punct _ _ 34 has _ AUX VBZ _ 35 aux _ _ 35 caused _ VERB VBN _ 16 ccomp _ _ 36 some _ DET DT _ 37 det _ _ 37 turmoil _ NOUN NN _ 35 dobj _ _ 38 in _ ADP IN _ 40 case _ _ 39 our _ PRON PRP$ _ 40 nmod:poss _ _ 40 scheduling _ NOUN NN _ 37 nmod _ _ 41 '' _ PUNCT '' _ 35 punct _ _ 42 and _ CONJ CC _ 35 cc _ _ 43 that _ SCONJ IN _ 62 mark _ _ 44 more _ ADJ JJR _ 46 advmod _ _ 45 than _ ADP IN _ 44 mwe _ _ 46 500 _ NUM CD _ 47 nummod _ _ 47 passengers _ NOUN NNS _ 62 nsubjpass _ _ 48 who _ PRON WP _ 50 nsubjpass _ _ 49 were _ AUX VBD _ 50 auxpass _ _ 50 booked _ VERB VBN _ 47 acl:relcl _ _ 51 to _ PART TO _ 52 mark _ _ 52 fly _ VERB VB _ 50 xcomp _ _ 53 out _ ADP IN _ 55 case _ _ 54 of _ ADP IN _ 55 case _ _ 55 Houston _ PROPN NNP _ 52 nmod _ _ 56 on _ ADP IN _ 58 case _ _ 57 America _ PROPN NNP _ 58 compound _ _ 58 West _ PROPN NNP _ 52 nmod _ _ 59 would _ AUX MD _ 62 aux _ _ 60 now _ ADV RB _ 62 advmod _ _ 61 be _ AUX VB _ 62 auxpass _ _ 62 put _ VERB VBN _ 35 conj _ _ 63 on _ ADP IN _ 65 case _ _ 64 other _ ADJ JJ _ 65 amod _ _ 65 airlines _ NOUN NNS _ 62 nmod _ _ 66 . _ PUNCT . _ 16 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Otradovec _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Boeing _ PROPN NNP _ 5 nsubj _ _ 5 told _ VERB VBD _ 3 ccomp _ _ 6 America _ PROPN NNP _ 7 compound _ _ 7 West _ PROPN NNP _ 5 dobj _ _ 8 that _ SCONJ IN _ 21 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 757 _ PROPN NNP _ 21 nsubjpass _ _ 11 it _ PRON PRP _ 13 nsubjpass _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 supposed _ VERB VBN _ 10 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 get _ VERB VB _ 13 xcomp _ _ 16 this _ DET DT _ 17 det _ _ 17 Thursday _ PROPN NNP _ 15 nmod:tmod _ _ 18 would _ AUX MD _ 21 aux _ _ 19 n't _ PART RB _ 21 neg _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 delivered _ VERB VBN _ 5 ccomp _ _ 22 until _ ADP IN _ 23 case _ _ 23 Nov. _ PROPN NNP _ 21 nmod _ _ 24 7 _ NUM CD _ 23 nummod _ _ 25 -- _ PUNCT : _ 23 punct _ _ 26 the _ DET DT _ 27 det _ _ 27 day _ NOUN NN _ 23 dep _ _ 28 after _ SCONJ IN _ 33 mark _ _ 29 the _ DET DT _ 30 det _ _ 30 airline _ NOUN NN _ 33 nsubj _ _ 31 had _ AUX VBD _ 33 aux _ _ 32 been _ AUX VBN _ 33 aux _ _ 33 planning _ VERB VBG _ 27 acl _ _ 34 to _ PART TO _ 35 mark _ _ 35 initiate _ VERB VB _ 33 xcomp _ _ 36 service _ NOUN NN _ 35 dobj _ _ 37 at _ ADP IN _ 38 case _ _ 38 Houston _ PROPN NNP _ 36 nmod _ _ 39 with _ ADP IN _ 42 case _ _ 40 four _ NUM CD _ 42 nummod _ _ 41 daily _ ADJ JJ _ 42 amod _ _ 42 flights _ NOUN NNS _ 35 nmod _ _ 43 , _ PUNCT , _ 42 punct _ _ 44 including _ VERB VBG _ 46 case _ _ 45 three _ NUM CD _ 46 nummod _ _ 46 nonstops _ NOUN NNS _ 42 nmod _ _ 47 to _ ADP TO _ 48 case _ _ 48 Phoenix _ PROPN NNP _ 46 nmod _ _ 49 and _ CONJ CC _ 46 cc _ _ 50 one _ NUM CD _ 51 nummod _ _ 51 nonstop _ NOUN NN _ 46 conj _ _ 52 to _ ADP TO _ 54 case _ _ 53 Las _ PROPN NNP _ 54 compound _ _ 54 Vegas _ PROPN NNP _ 51 nmod _ _ 55 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 those _ DET DT _ 4 det _ _ 4 routes _ NOUN NNS _ 7 nsubjpass _ _ 5 are _ AUX VBP _ 7 auxpass _ _ 6 n't _ PART RB _ 7 neg _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 begin _ VERB VB _ 7 xcomp _ _ 10 until _ ADP IN _ 11 case _ _ 11 Jan _ PROPN NNP _ 7 nmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 Boeing _ PROPN NNP _ 4 nsubjpass _ _ 2 is _ AUX VBZ _ 4 auxpass _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 supposed _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 send _ VERB VB _ 4 xcomp _ _ 7 to _ ADP TO _ 9 case _ _ 8 America _ PROPN NNP _ 9 compound _ _ 9 West _ PROPN NNP _ 6 nmod _ _ 10 another _ DET DT _ 13 det _ _ 11 757 _ NUM CD _ 13 nummod _ _ 12 twin-engine _ ADJ JJ _ 13 amod _ _ 13 aircraft _ NOUN NN _ 6 dobj _ _ 14 as _ ADV RB _ 13 cc _ _ 15 well _ ADV RB _ 14 mwe _ _ 16 as _ ADP IN _ 14 mwe _ _ 17 a _ DET DT _ 18 det _ _ 18 737 _ NUM CD _ 13 conj _ _ 19 by _ ADP IN _ 22 case _ _ 20 year _ NOUN NN _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 end _ NOUN NN _ 6 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Those _ PRON DT _ 7 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 too _ ADV RB _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 almost _ ADV RB _ 7 advmod _ _ 7 certain _ ADJ JJ _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 arrive _ VERB VB _ 7 xcomp _ _ 10 late _ ADV RB _ 9 advmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 point _ NOUN NN _ 32 nmod _ _ 4 , _ PUNCT , _ 32 punct _ _ 5 no _ DET DT _ 9 neg _ _ 6 other _ ADJ JJ _ 9 amod _ _ 7 America _ PROPN NNP _ 9 compound _ _ 8 West _ PROPN NNP _ 9 compound _ _ 9 flights _ NOUN NNS _ 32 nsubjpass _ _ 10 -- _ PUNCT : _ 9 punct _ _ 11 including _ VERB VBG _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 service _ NOUN NN _ 9 nmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 San _ PROPN NNP _ 17 compound _ _ 17 Antonio _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Texas _ PROPN NNP _ 17 appos _ _ 20 ; _ PUNCT : _ 17 punct _ _ 21 Newark _ PROPN NNP _ 17 conj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 N.J. _ PROPN NNP _ 21 appos _ _ 24 ; _ PUNCT : _ 17 punct _ _ 25 and _ CONJ CC _ 17 cc _ _ 26 Palmdale _ PROPN NNP _ 17 conj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Calif. _ PROPN NNP _ 26 appos _ _ 29 -- _ PUNCT : _ 9 punct _ _ 30 have _ AUX VBP _ 32 aux _ _ 31 been _ AUX VBN _ 32 auxpass _ _ 32 affected _ VERB VBN _ 0 root _ _ 33 by _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 delays _ NOUN NNS _ 32 nmod _ _ 36 in _ ADP IN _ 38 case _ _ 37 Boeing _ PROPN NNP _ 38 compound _ _ 38 deliveries _ NOUN NNS _ 35 nmod _ _ 39 . _ PUNCT . _ 32 punct _ _ 1 Nevertheless _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 reaction _ NOUN NN _ 7 nsubj _ _ 7 underscores _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 domino _ NOUN NN _ 10 compound _ _ 10 effect _ NOUN NN _ 7 dobj _ _ 11 that _ ADP IN _ 19 dobj _ _ 12 a _ DET DT _ 14 det _ _ 13 huge _ ADJ JJ _ 14 amod _ _ 14 manufacturer _ NOUN NN _ 19 nsubj _ _ 15 such _ ADJ JJ _ 17 case _ _ 16 as _ ADP IN _ 15 mwe _ _ 17 Boeing _ PROPN NNP _ 14 nmod _ _ 18 can _ AUX MD _ 19 aux _ _ 19 have _ VERB VB _ 10 acl:relcl _ _ 20 on _ ADP IN _ 22 case _ _ 21 other _ ADJ JJ _ 22 amod _ _ 22 parts _ NOUN NNS _ 10 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 economy _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 sure _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 help _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 machinists _ NOUN NNS _ 9 nsubj _ _ 9 put _ VERB VB _ 6 ccomp _ _ 10 added _ ADJ JJ _ 11 amod _ _ 11 pressure _ NOUN NN _ 9 dobj _ _ 12 on _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 I _ PRON PRP _ 6 nsubj _ _ 3 just _ ADV RB _ 6 advmod _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 feel _ VERB VB _ 31 ccomp _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 12 nsubj _ _ 10 can _ AUX MD _ 12 aux _ _ 11 really _ ADV RB _ 12 advmod _ _ 12 stand _ VERB VB _ 6 ccomp _ _ 13 or _ CONJ CC _ 12 cc _ _ 14 would _ AUX MD _ 15 aux _ _ 15 want _ VERB VB _ 12 conj _ _ 16 a _ DET DT _ 18 det _ _ 17 prolonged _ ADJ JJ _ 18 amod _ _ 18 walkout _ NOUN NN _ 12 dobj _ _ 19 , _ PUNCT , _ 31 punct _ _ 20 '' _ PUNCT '' _ 31 punct _ _ 21 Tom _ PROPN NNP _ 22 compound _ _ 22 Baker _ PROPN NNP _ 31 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 president _ NOUN NN _ 22 appos _ _ 25 of _ ADP IN _ 28 case _ _ 26 Machinists _ PROPN NNP _ 28 nmod:poss _ _ 27 ' _ PART POS _ 26 case _ _ 28 District _ PROPN NNP _ 24 nmod _ _ 29 751 _ NUM CD _ 28 nummod _ _ 30 , _ PUNCT , _ 22 punct _ _ 31 said _ VERB VBD _ 0 root _ _ 32 in _ ADP IN _ 34 case _ _ 33 an _ DET DT _ 34 det _ _ 34 interview _ NOUN NN _ 31 nmod _ _ 35 yesterday _ NOUN NN _ 31 nmod:tmod _ _ 36 . _ PUNCT . _ 31 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 think _ VERB VB _ 0 root _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 customers _ NOUN NNS _ 9 nsubj _ _ 8 would _ AUX MD _ 9 aux _ _ 9 like _ VERB VB _ 5 ccomp _ _ 10 it _ PRON PRP _ 9 dobj _ _ 11 very _ ADV RB _ 12 advmod _ _ 12 much _ ADV RB _ 9 advmod _ _ 13 . _ PUNCT . _ 5 punct _ _ 14 '' _ PUNCT '' _ 5 punct _ _ 1 America _ PROPN NNP _ 2 compound _ _ 2 West _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 though _ ADV RB _ 9 advmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 a _ DET DT _ 9 det _ _ 8 smaller _ ADJ JJR _ 9 amod _ _ 9 airline _ NOUN NN _ 0 root _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 therefore _ ADV RB _ 13 advmod _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 affected _ VERB VBN _ 9 conj _ _ 14 by _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 delayed _ ADJ JJ _ 17 amod _ _ 17 delivery _ NOUN NN _ 13 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 single _ ADJ JJ _ 21 amod _ _ 21 plane _ NOUN NN _ 17 nmod _ _ 22 than _ SCONJ IN _ 28 mark _ _ 23 many _ ADJ JJ _ 28 nsubj _ _ 24 of _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 competitors _ NOUN NNS _ 23 nmod _ _ 27 would _ AUX MD _ 28 aux _ _ 28 be _ VERB VB _ 13 ccomp _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 figure _ VERB VBP _ 33 ccomp _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 American _ PROPN NNP _ 9 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 United _ PROPN NNP _ 5 conj _ _ 8 probably _ ADV RB _ 9 advmod _ _ 9 have _ VERB VBP _ 3 ccomp _ _ 10 such _ DET PDT _ 13 det:predet _ _ 11 a _ DET DT _ 13 det _ _ 12 hard _ ADJ JJ _ 13 amod _ _ 13 time _ NOUN NN _ 9 dobj _ _ 14 counting _ VERB VBG _ 13 dep _ _ 15 all _ DET PDT _ 17 det:predet _ _ 16 the _ DET DT _ 17 det _ _ 17 planes _ NOUN NNS _ 14 dobj _ _ 18 in _ ADP IN _ 20 case _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 fleets _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 they _ PRON PRP _ 25 nsubj _ _ 23 might _ AUX MD _ 25 aux _ _ 24 not _ PART RB _ 25 neg _ _ 25 miss _ VERB VB _ 13 acl:relcl _ _ 26 one _ NUM CD _ 25 dobj _ _ 27 at _ ADP IN _ 28 case _ _ 28 all _ DET DT _ 25 nmod _ _ 29 , _ PUNCT , _ 33 punct _ _ 30 '' _ PUNCT '' _ 33 punct _ _ 31 Mr. _ PROPN NNP _ 32 compound _ _ 32 Otradovec _ PROPN NNP _ 33 nsubj _ _ 33 said _ VERB VBD _ 0 root _ _ 34 . _ PUNCT . _ 33 punct _ _ 1 Indeed _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 random _ ADJ JJ _ 5 amod _ _ 5 check _ NOUN NN _ 9 nsubj _ _ 6 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 7 did _ AUX VBD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 seem _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 indicate _ VERB VB _ 9 xcomp _ _ 12 that _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 14 det _ _ 14 strike _ NOUN NN _ 16 nsubj _ _ 15 was _ AUX VBD _ 16 aux _ _ 16 having _ VERB VBG _ 11 ccomp _ _ 17 much _ ADJ JJ _ 16 dobj _ _ 18 of _ ADP IN _ 20 case _ _ 19 an _ DET DT _ 20 det _ _ 20 effect _ NOUN NN _ 17 nmod _ _ 21 on _ ADP IN _ 24 case _ _ 22 other _ ADJ JJ _ 24 amod _ _ 23 airline _ NOUN NN _ 24 compound _ _ 24 operations _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 Southwest _ PROPN NNP _ 2 compound _ _ 2 Airlines _ PROPN NNP _ 3 nsubj _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 Boeing _ PROPN NNP _ 6 compound _ _ 6 737-300 _ PROPN NNP _ 3 dobj _ _ 7 set _ NOUN NN _ 6 amod _ _ 8 for _ ADP IN _ 9 case _ _ 9 delivery _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 end _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 this _ DET DT _ 15 det _ _ 15 month _ NOUN NN _ 12 nmod _ _ 16 and _ CONJ CC _ 3 cc _ _ 17 expects _ VERB VBZ _ 3 conj _ _ 18 to _ PART TO _ 19 mark _ _ 19 have _ VERB VB _ 17 xcomp _ _ 20 the _ DET DT _ 21 det _ _ 21 plane _ NOUN NN _ 19 dobj _ _ 22 on _ ADP IN _ 23 case _ _ 23 time _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 close _ ADV RB _ 21 ccomp _ _ 6 to _ ADP TO _ 7 case _ _ 7 completion _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 Boeing _ PROPN NNP _ 11 nsubjpass _ _ 10 's _ AUX VBZ _ 11 auxpass _ _ 11 told _ VERB VBN _ 5 ccomp _ _ 12 us _ PRON PRP _ 11 dobj _ _ 13 there _ PRON EX _ 18 expl _ _ 14 wo _ AUX MD _ 18 aux _ _ 15 n't _ PART RB _ 18 neg _ _ 16 be _ VERB VB _ 18 cop _ _ 17 a _ DET DT _ 18 det _ _ 18 problem _ NOUN NN _ 11 ccomp _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 a _ DET DT _ 24 det _ _ 23 Southwest _ PROPN NNP _ 24 compound _ _ 24 spokesman _ NOUN NN _ 21 nsubj _ _ 25 . _ PUNCT . _ 21 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 AMR _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 Boeing _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 assured _ VERB VBN _ 6 ccomp _ _ 10 American _ PROPN NNP _ 11 compound _ _ 11 Airlines _ PROPN NNP _ 9 dobj _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 deliver _ VERB VB _ 9 dep _ _ 15 a _ DET DT _ 16 det _ _ 16 757 _ PROPN NNP _ 14 dobj _ _ 17 on _ ADP IN _ 18 case _ _ 18 time _ NOUN NN _ 14 nmod _ _ 19 later _ ADV RB _ 21 advmod _ _ 20 this _ DET DT _ 21 det _ _ 21 month _ NOUN NN _ 14 nmod:tmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 American _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 preparing _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 take _ VERB VB _ 3 xcomp _ _ 6 delivery _ NOUN NN _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 another _ DET DT _ 9 det _ _ 9 757 _ PROPN NNP _ 5 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 early _ ADJ JJ _ 12 amod _ _ 12 December _ PROPN NNP _ 5 nmod _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 20 _ NUM CD _ 5 conj _ _ 15 more _ ADJ JJR _ 14 advmod _ _ 16 next _ ADJ JJ _ 17 amod _ _ 17 year _ NOUN NN _ 14 nmod:tmod _ _ 18 and _ CONJ CC _ 3 cc _ _ 19 is _ AUX VBZ _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 anticipating _ VERB VBG _ 3 conj _ _ 22 any _ DET DT _ 23 det _ _ 23 changes _ NOUN NNS _ 21 dobj _ _ 24 in _ ADP IN _ 26 case _ _ 25 that _ DET DT _ 26 det _ _ 26 timetable _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Seattle _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 Boeing _ PROPN NNP _ 6 compound _ _ 6 spokesman _ NOUN NN _ 7 nsubj _ _ 7 explained _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 15 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 15 nsubj _ _ 11 has _ AUX VBZ _ 15 aux _ _ 12 been _ VERB VBN _ 15 cop _ _ 13 in _ ADP IN _ 15 case _ _ 14 constant _ ADJ JJ _ 15 amod _ _ 15 communication _ NOUN NN _ 7 ccomp _ _ 16 with _ ADP IN _ 17 case _ _ 17 all _ DET DT _ 15 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 customers _ NOUN NNS _ 17 nmod _ _ 21 and _ CONJ CC _ 15 cc _ _ 22 that _ SCONJ IN _ 25 mark _ _ 23 it _ PRON PRP _ 25 nsubj _ _ 24 was _ VERB VBD _ 25 cop _ _ 25 impossible _ ADJ JJ _ 15 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 predict _ VERB VB _ 25 xcomp _ _ 28 what _ PRON WP _ 30 det _ _ 29 further _ ADJ JJ _ 30 amod _ _ 30 disruptions _ NOUN NNS _ 33 nsubjpass _ _ 31 might _ AUX MD _ 33 aux _ _ 32 be _ AUX VB _ 33 auxpass _ _ 33 triggered _ VERB VBN _ 27 ccomp _ _ 34 by _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 strike _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 7 punct _ _ 1 Meanwhile _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 supervisors _ NOUN NNS _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 non-striking _ ADJ JJ _ 6 amod _ _ 6 employees _ NOUN NNS _ 3 conj _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 trying _ VERB VBG _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 finish _ VERB VB _ 9 xcomp _ _ 12 some _ ADV RB _ 13 advmod _ _ 13 40 _ NUM CD _ 14 nummod _ _ 14 aircraft _ NOUN NNS _ 11 dobj _ _ 15 -- _ PUNCT : _ 17 punct _ _ 16 mostly _ ADV RB _ 17 advmod _ _ 17 747 _ PROPN NNP _ 14 dep _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 767 _ PROPN NNP _ 21 compound _ _ 20 jumbo _ ADJ JJ _ 21 amod _ _ 21 jets _ NOUN NNS _ 17 conj _ _ 22 at _ ADP IN _ 30 case _ _ 23 the _ DET DT _ 24 det _ _ 24 company _ NOUN NN _ 30 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 Everett _ PROPN NNP _ 30 dep _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Wash. _ PROPN NNP _ 26 dep _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 plant _ NOUN NN _ 17 nmod _ _ 31 -- _ PUNCT : _ 17 punct _ _ 32 that _ PRON WDT _ 36 nsubjpass _ _ 33 were _ AUX VBD _ 36 auxpass _ _ 34 all _ ADV RB _ 36 advmod _ _ 35 but _ ADV RB _ 34 mwe _ _ 36 completed _ VERB VBN _ 14 acl:relcl _ _ 37 before _ ADP IN _ 39 case _ _ 38 the _ DET DT _ 39 det _ _ 39 walkout _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 9 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 of _ ADP IN _ 3 case _ _ 3 Friday _ PROPN NNP _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 four _ NUM CD _ 8 nsubjpass _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 delivered _ VERB VBN _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 a _ DET DT _ 12 det _ _ 11 fifth _ ADJ JJ _ 12 amod _ _ 12 plane _ NOUN NN _ 18 nsubjpass _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 747-400 _ PROPN NNP _ 12 appos _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 was _ AUX VBD _ 18 auxpass _ _ 18 supposed _ VERB VBN _ 8 conj _ _ 19 to _ PART TO _ 21 mark _ _ 20 be _ AUX VB _ 21 auxpass _ _ 21 flown _ VERB VBN _ 18 xcomp _ _ 22 out _ ADP RP _ 21 compound:prt _ _ 23 over _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 weekend _ NOUN NN _ 21 nmod _ _ 26 to _ ADP TO _ 28 case _ _ 27 Air _ PROPN NNP _ 28 compound _ _ 28 China _ PROPN NNP _ 21 nmod _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 date _ NOUN NN _ 6 nsubjpass _ _ 3 has _ AUX VBZ _ 6 aux _ _ 4 yet _ ADV RB _ 6 advmod _ _ 5 been _ AUX VBN _ 6 auxpass _ _ 6 set _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 ccomp _ _ 9 back _ ADV RB _ 8 advmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 bargaining _ NOUN NN _ 13 compound _ _ 13 table _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 want _ VERB VBP _ 18 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 make _ VERB VB _ 3 xcomp _ _ 6 sure _ ADJ JJ _ 8 dep _ _ 7 they _ PRON PRP _ 8 nsubj _ _ 8 know _ VERB VBP _ 5 xcomp _ _ 9 what _ PRON WP _ 11 dobj _ _ 10 they _ PRON PRP _ 11 nsubj _ _ 11 want _ VERB VBP _ 8 ccomp _ _ 12 before _ SCONJ IN _ 14 mark _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 come _ VERB VBP _ 11 advcl _ _ 15 back _ ADP RP _ 14 advmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Doug _ PROPN NNP _ 20 compound _ _ 20 Hammond _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 the _ DET DT _ 24 det _ _ 23 federal _ ADJ JJ _ 24 amod _ _ 24 mediator _ NOUN NN _ 20 appos _ _ 25 who _ PRON WP _ 29 nsubj _ _ 26 has _ AUX VBZ _ 29 aux _ _ 27 been _ VERB VBN _ 29 cop _ _ 28 in _ ADP IN _ 29 case _ _ 29 contact _ NOUN NN _ 24 acl:relcl _ _ 30 with _ ADP IN _ 32 case _ _ 31 both _ DET DT _ 32 det _ _ 32 sides _ NOUN NNS _ 29 nmod _ _ 33 since _ SCONJ IN _ 36 mark _ _ 34 the _ DET DT _ 35 det _ _ 35 strike _ NOUN NN _ 36 nsubj _ _ 36 began _ VERB VBD _ 29 advcl _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 investment _ NOUN NN _ 3 compound _ _ 3 community _ NOUN NN _ 10 nsubj _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 one _ NUM CD _ 10 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 aux _ _ 10 anticipating _ VERB VBG _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 speedy _ ADJ JJ _ 13 amod _ _ 13 resolution _ NOUN NN _ 10 dobj _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 Though _ PROPN NNP _ 7 dep _ _ 2 Boeing _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 price _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 battered _ VERB VBN _ 20 advcl _ _ 8 along _ ADP IN _ 7 advmod _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 rest _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 market _ NOUN NN _ 11 nmod _ _ 15 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 it _ PRON PRP _ 20 nsubj _ _ 18 actually _ ADV RB _ 20 advmod _ _ 19 has _ AUX VBZ _ 20 aux _ _ 20 risen _ VERB VBN _ 0 root _ _ 21 over _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 last _ ADJ JJ _ 25 amod _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 weeks _ NOUN NNS _ 20 nmod _ _ 26 on _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 strength _ NOUN NN _ 20 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 new _ ADJ JJ _ 31 amod _ _ 31 orders _ NOUN NNS _ 28 nmod _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 34 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 taken _ VERB VBN _ 34 ccomp _ _ 6 two _ NUM CD _ 7 nummod _ _ 7 views _ NOUN NNS _ 5 dobj _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 the _ DET DT _ 12 det _ _ 11 labor _ NOUN NN _ 12 compound _ _ 12 situation _ NOUN NN _ 15 nsubjpass _ _ 13 will _ AUX MD _ 15 aux _ _ 14 get _ AUX VB _ 15 auxpass _ _ 15 settled _ VERB VBN _ 7 dep _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 short _ ADJ JJ _ 19 amod _ _ 19 term _ NOUN NN _ 15 nmod _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 that _ SCONJ IN _ 23 mark _ _ 22 things _ NOUN NNS _ 23 nsubj _ _ 23 look _ VERB VBP _ 15 conj _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 rosy _ ADJ JJ _ 23 xcomp _ _ 26 for _ ADP IN _ 27 case _ _ 27 Boeing _ PROPN NNP _ 23 nmod _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 long _ ADJ JJ _ 31 amod _ _ 31 term _ NOUN NN _ 23 nmod _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 '' _ PUNCT '' _ 34 punct _ _ 34 said _ VERB VBD _ 0 root _ _ 35 Howard _ PROPN NNP _ 36 compound _ _ 36 Rubel _ PROPN NNP _ 34 nsubj _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 an _ DET DT _ 39 det _ _ 39 analyst _ NOUN NN _ 36 appos _ _ 40 at _ ADP IN _ 44 case _ _ 41 Cyrus _ PROPN NNP _ 44 compound _ _ 42 J. _ PROPN NNP _ 44 compound _ _ 43 Lawrence _ PROPN NNP _ 44 compound _ _ 44 Inc _ PROPN NNP _ 39 nmod _ _ 45 . _ PUNCT . _ 34 punct _ _ 1 Boeing _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 shares _ NOUN NNS _ 4 nsubj _ _ 4 fell _ VERB VBD _ 0 root _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 4 _ NUM CD _ 4 dobj _ _ 7 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 close _ VERB VB _ 4 advcl _ _ 10 at _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 57.375 _ NUM CD _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 composite _ ADJ JJ _ 15 amod _ _ 15 trading _ NOUN NN _ 4 nmod _ _ 16 on _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 21 det _ _ 18 New _ PROPN NNP _ 21 compound _ _ 19 York _ PROPN NNP _ 21 compound _ _ 20 Stock _ PROPN NNP _ 21 compound _ _ 21 Exchange _ PROPN NNP _ 4 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Baker _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 thinks _ VERB VBZ _ 4 ccomp _ _ 7 the _ DET DT _ 17 nsubj _ _ 8 earliest _ ADV RBS _ 7 advmod _ _ 9 a _ DET DT _ 10 det _ _ 10 pact _ NOUN NN _ 13 nsubjpass _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 struck _ VERB VBN _ 7 acl:relcl _ _ 14 would _ AUX MD _ 17 aux _ _ 15 be _ VERB VB _ 17 cop _ _ 16 the _ DET DT _ 17 det _ _ 17 end _ NOUN NN _ 6 ccomp _ _ 18 of _ ADP IN _ 20 case _ _ 19 this _ DET DT _ 20 det _ _ 20 month _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 hinting _ VERB VBG _ 4 xcomp _ _ 23 that _ SCONJ IN _ 29 mark _ _ 24 the _ DET DT _ 25 det _ _ 25 company _ NOUN NN _ 29 nsubj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 union _ NOUN NN _ 25 conj _ _ 28 may _ AUX MD _ 29 aux _ _ 29 resume _ VERB VB _ 22 ccomp _ _ 30 negotiations _ NOUN NNS _ 29 dobj _ _ 31 as _ ADV RB _ 32 advmod _ _ 32 early _ ADV RB _ 29 advmod _ _ 33 as _ ADP IN _ 35 case _ _ 34 this _ DET DT _ 35 det _ _ 35 week _ NOUN NN _ 32 nmod _ _ 36 . _ PUNCT . _ 4 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 said _ VERB VBD _ 8 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 's _ VERB VBZ _ 8 cop _ _ 8 possible _ ADJ JJ _ 0 root _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 strike _ NOUN NN _ 13 nsubj _ _ 12 could _ AUX MD _ 13 aux _ _ 13 last _ VERB VB _ 8 ccomp _ _ 14 considerably _ ADV RB _ 15 advmod _ _ 15 longer _ ADV RBR _ 13 advmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 expect _ VERB VB _ 0 root _ _ 6 an _ DET DT _ 8 det _ _ 7 immediate _ ADJ JJ _ 8 amod _ _ 8 resolution _ NOUN NN _ 5 dobj _ _ 9 to _ ADP TO _ 10 case _ _ 10 anything _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 8 nmod:tmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Boeing _ PROPN NNP _ 7 compound _ _ 5 Chairman _ PROPN NNP _ 7 compound _ _ 6 Frank _ PROPN NNP _ 7 compound _ _ 7 Shrontz _ PROPN NNP _ 8 nsubj _ _ 8 sent _ VERB VBD _ 0 root _ _ 9 striking _ VERB VBG _ 10 amod _ _ 10 workers _ NOUN NNS _ 8 iobj _ _ 11 a _ DET DT _ 12 det _ _ 12 letter _ NOUN NN _ 8 dobj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 saying _ VERB VBG _ 8 advcl _ _ 15 that _ SCONJ IN _ 24 mark _ _ 16 `` _ PUNCT `` _ 24 punct _ _ 17 to _ ADP TO _ 19 case _ _ 18 my _ PRON PRP$ _ 19 nmod:poss _ _ 19 knowledge _ NOUN NN _ 24 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 Boeing _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 offer _ NOUN NN _ 24 nsubj _ _ 24 represents _ VERB VBZ _ 14 ccomp _ _ 25 the _ DET DT _ 29 det _ _ 26 best _ ADJ JJS _ 29 amod _ _ 27 overall _ ADJ JJ _ 29 amod _ _ 28 three-year _ ADJ JJ _ 29 amod _ _ 29 contract _ NOUN NN _ 24 dobj _ _ 30 of _ ADP IN _ 35 case _ _ 31 any _ DET DT _ 35 det _ _ 32 major _ ADJ JJ _ 35 amod _ _ 33 U.S. _ PROPN NNP _ 35 compound _ _ 34 industrial _ ADJ JJ _ 35 amod _ _ 35 firm _ NOUN NN _ 29 nmod _ _ 36 in _ ADP IN _ 38 case _ _ 37 recent _ ADJ JJ _ 38 amod _ _ 38 history _ NOUN NN _ 29 nmod _ _ 39 . _ PUNCT . _ 8 punct _ _ 40 '' _ PUNCT '' _ 8 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Baker _ PROPN NNP _ 4 nsubj _ _ 4 called _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 letter _ NOUN NN _ 31 dep _ _ 7 -- _ PUNCT : _ 6 punct _ _ 8 and _ CONJ CC _ 6 cc _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 offer _ NOUN NN _ 6 conj _ _ 13 of _ ADP IN _ 18 case _ _ 14 a _ DET DT _ 18 det _ _ 15 10 _ NUM CD _ 16 compound _ _ 16 % _ SYM NN _ 18 amod _ _ 17 wage _ NOUN NN _ 18 compound _ _ 18 increase _ NOUN NN _ 12 nmod _ _ 19 over _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 life _ NOUN NN _ 18 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 pact _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 18 punct _ _ 26 plus _ CONJ CC _ 18 cc _ _ 27 bonuses _ NOUN NNS _ 18 conj _ _ 28 -- _ PUNCT : _ 6 punct _ _ 29 `` _ PUNCT `` _ 31 punct _ _ 30 very _ ADV RB _ 31 advmod _ _ 31 weak _ ADJ JJ _ 4 xcomp _ _ 32 . _ PUNCT . _ 4 punct _ _ 33 '' _ PUNCT '' _ 4 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 miscalculated _ VERB VBD _ 2 ccomp _ _ 7 the _ DET DT _ 8 det _ _ 8 union _ NOUN NN _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 resolve _ NOUN NN _ 6 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 13 det _ _ 13 workers _ NOUN NNS _ 15 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 disgust _ NOUN NN _ 10 conj _ _ 16 with _ SCONJ IN _ 18 mark _ _ 17 being _ AUX VBG _ 18 auxpass _ _ 18 forced _ VERB VBN _ 15 acl _ _ 19 to _ PART TO _ 20 mark _ _ 20 work _ VERB VB _ 18 xcomp _ _ 21 many _ ADJ JJ _ 22 amod _ _ 22 hours _ NOUN NNS _ 20 dobj _ _ 23 overtime _ ADV RB _ 20 advmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 separate _ ADJ JJ _ 3 amod _ _ 3 developments _ NOUN NNS _ 8 nmod _ _ 4 : _ PUNCT : _ 8 punct _ _ 5 -- _ PUNCT : _ 8 punct _ _ 6 Talks _ NOUN NNS _ 8 nsubj _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 broken _ VERB VBN _ 0 root _ _ 9 off _ ADP RP _ 8 compound:prt _ _ 10 between _ ADP IN _ 12 case _ _ 11 Machinists _ PROPN NNPS _ 12 compound _ _ 12 representatives _ NOUN NNS _ 8 nmod _ _ 13 at _ ADP IN _ 15 case _ _ 14 Lockheed _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 12 nmod _ _ 16 and _ CONJ CC _ 12 cc _ _ 17 the _ DET DT _ 23 det _ _ 18 Calabasas _ PROPN NNP _ 23 dep _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Calif. _ PROPN NNP _ 18 dep _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 aerospace _ NOUN NN _ 23 compound _ _ 23 company _ NOUN NN _ 12 conj _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 union _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 continuing _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 work _ VERB VB _ 4 xcomp _ _ 7 through _ ADP IN _ 10 case _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 expired _ ADJ JJ _ 10 amod _ _ 10 contract _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 however _ ADV RB _ 4 advmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 had _ AUX VBD _ 3 aux _ _ 3 planned _ VERB VBN _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 strike _ NOUN NN _ 6 compound _ _ 6 vote _ NOUN NN _ 3 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 Sunday _ PROPN NNP _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 but _ CONJ CC _ 3 cc _ _ 12 that _ ADP IN _ 15 nsubjpass _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 pushed _ VERB VBN _ 3 conj _ _ 16 back _ ADP RP _ 15 compound:prt _ _ 17 indefinitely _ ADV RB _ 15 advmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 -- _ PUNCT : _ 23 punct _ _ 2 United _ PROPN NNP _ 6 compound _ _ 3 Auto _ PROPN NNP _ 6 compound _ _ 4 Workers _ PROPN NNP _ 6 compound _ _ 5 Local _ PROPN NNP _ 6 compound _ _ 6 1069 _ PROPN NNP _ 23 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 9 nsubj _ _ 9 represents _ VERB VBZ _ 6 acl:relcl _ _ 10 3,000 _ NUM CD _ 11 nummod _ _ 11 workers _ NOUN NNS _ 9 dobj _ _ 12 at _ ADP IN _ 16 case _ _ 13 Boeing _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 helicopter _ NOUN NN _ 16 compound _ _ 16 unit _ NOUN NN _ 11 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 Delaware _ PROPN NNP _ 19 compound _ _ 19 County _ PROPN NNP _ 16 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 Pa. _ PROPN NNP _ 19 appos _ _ 22 , _ PUNCT , _ 6 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 agreed _ VERB VBD _ 23 ccomp _ _ 26 to _ PART TO _ 27 mark _ _ 27 extend _ VERB VB _ 25 xcomp _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 contract _ NOUN NN _ 27 dobj _ _ 30 on _ ADP IN _ 33 case _ _ 31 a _ DET DT _ 33 det _ _ 32 day-by-day _ ADJ JJ _ 33 amod _ _ 33 basis _ NOUN NN _ 27 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 with _ ADP IN _ 38 case _ _ 36 a _ DET DT _ 38 det _ _ 37 10-day _ ADJ JJ _ 38 amod _ _ 38 notification _ NOUN NN _ 33 nmod _ _ 39 to _ PART TO _ 40 mark _ _ 40 cancel _ VERB VB _ 38 acl _ _ 41 , _ PUNCT , _ 27 punct _ _ 42 while _ SCONJ IN _ 44 mark _ _ 43 it _ PRON PRP _ 44 nsubj _ _ 44 continues _ VERB VBZ _ 27 advcl _ _ 45 bargaining _ VERB VBG _ 44 xcomp _ _ 46 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 accord _ NOUN NN _ 3 nsubj _ _ 3 expired _ VERB VBD _ 0 root _ _ 4 yesterday _ NOUN NN _ 3 nmod:tmod _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 -- _ PUNCT : _ 6 punct _ _ 2 And _ CONJ CC _ 6 cc _ _ 3 Boeing _ PROPN NNP _ 6 nsubj _ _ 4 on _ ADP IN _ 5 case _ _ 5 Friday _ PROPN NNP _ 6 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 received _ VERB VBD _ 6 ccomp _ _ 9 an _ DET DT _ 10 det _ _ 10 order _ NOUN NN _ 8 dobj _ _ 11 from _ ADP IN _ 13 case _ _ 12 Martinair _ PROPN NNP _ 13 compound _ _ 13 Holland _ PROPN NNP _ 8 nmod _ _ 14 for _ ADP IN _ 19 case _ _ 15 four _ NUM CD _ 19 nummod _ _ 16 model _ ADJ JJ _ 19 amod _ _ 17 767-300 _ PROPN NNP _ 19 compound _ _ 18 wide-body _ ADJ JJ _ 19 amod _ _ 19 jetliners _ NOUN NNS _ 8 nmod _ _ 20 valued _ VERB VBN _ 19 acl _ _ 21 at _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 total _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 about _ ADV RB _ 26 advmod _ _ 26 $ _ SYM $ _ 23 nmod _ _ 27 326 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 planes _ NOUN NNS _ 14 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 long _ ADJ JJ _ 6 amod _ _ 5 range _ NOUN NN _ 6 compound _ _ 6 versions _ NOUN NNS _ 2 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 medium-haul _ ADJ JJ _ 10 amod _ _ 10 twin-jet _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 will _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 delivered _ VERB VBN _ 0 root _ _ 15 with _ ADP IN _ 20 case _ _ 16 Pratt _ PROPN NNP _ 20 compound _ _ 17 & _ CONJ CC _ 16 cc _ _ 18 Whitney _ PROPN NNP _ 16 conj _ _ 19 PW4060 _ PROPN NNP _ 20 compound _ _ 20 engines _ NOUN NNS _ 14 nmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 Pratt _ PROPN NNP _ 6 nsubj _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Whitney _ PROPN NNP _ 1 conj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 a _ DET DT _ 6 det _ _ 6 unit _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 United _ PROPN NNP _ 10 compound _ _ 9 Technologies _ PROPN NNP _ 10 compound _ _ 10 Inc _ PROPN NNP _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Martinair _ PROPN NNP _ 2 compound _ _ 2 Holland _ PROPN NNP _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 based _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 Amsterdam _ PROPN NNP _ 4 nmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Boeing _ PROPN NNP _ 3 compound _ _ 3 spokeswoman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 delivery _ NOUN NN _ 7 compound _ _ 7 date _ NOUN NN _ 14 nsubjpass _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 planes _ NOUN NNS _ 7 nmod _ _ 11 is _ AUX VBZ _ 14 aux _ _ 12 still _ ADV RB _ 14 advmod _ _ 13 being _ AUX VBG _ 14 auxpass _ _ 14 worked _ VERB VBD _ 4 ccomp _ _ 15 out _ ADP RP _ 14 compound:prt _ _ 16 `` _ PUNCT `` _ 14 punct _ _ 17 for _ ADP IN _ 19 case _ _ 18 a _ DET DT _ 19 det _ _ 19 variety _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 reasons _ NOUN NNS _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 but _ CONJ CC _ 19 cc _ _ 24 not _ ADV RB _ 28 neg _ _ 25 because _ ADP IN _ 28 case _ _ 26 of _ ADP IN _ 25 mwe _ _ 27 the _ DET DT _ 28 det _ _ 28 strike _ NOUN NN _ 19 conj _ _ 29 . _ PUNCT . _ 4 punct _ _ 30 '' _ PUNCT '' _ 4 punct _ _ 1 Bridget _ PROPN NNP _ 2 compound _ _ 2 O'Brian _ PROPN NNP _ 3 nsubj _ _ 3 contributed _ VERB VBD _ 0 root _ _ 4 to _ ADP TO _ 6 case _ _ 5 this _ DET DT _ 6 det _ _ 6 article _ NOUN NN _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 Atco _ PROPN NNP _ 2 compound _ _ 2 Ltd. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 its _ PRON PRP$ _ 6 nmod:poss _ _ 5 utilities _ NOUN NNS _ 6 compound _ _ 6 arm _ NOUN NN _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 considering _ VERB VBG _ 3 ccomp _ _ 9 building _ VERB VBG _ 8 advcl _ _ 10 new _ ADJ JJ _ 13 amod _ _ 11 electric _ ADJ JJ _ 13 amod _ _ 12 power _ NOUN NN _ 13 compound _ _ 13 plants _ NOUN NNS _ 9 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 some _ DET DT _ 13 appos _ _ 16 valued _ VERB VBN _ 15 acl _ _ 17 at _ ADP IN _ 23 case _ _ 18 more _ ADJ JJR _ 21 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 one _ NUM CD _ 21 compound _ _ 21 billion _ NUM CD _ 23 nummod _ _ 22 Canadian _ ADJ JJ _ 23 amod _ _ 23 dollars _ NOUN NNS _ 16 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 25 punct _ _ 25 US$ _ SYM $ _ 23 dep _ _ 26 851 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 -RRB- _ PUNCT -RRB- _ 25 punct _ _ 29 , _ PUNCT , _ 13 punct _ _ 30 in _ ADP IN _ 32 case _ _ 31 Great _ PROPN NNP _ 32 compound _ _ 32 Britain _ PROPN NNP _ 13 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 elsewhere _ ADV RB _ 32 conj _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 C.S. _ PROPN NNP _ 2 compound _ _ 2 Richardson _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Atco _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 senior _ ADJ JJ _ 8 amod _ _ 7 vice _ NOUN NN _ 8 compound _ _ 8 president _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 finance _ NOUN NN _ 8 appos _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 its _ PRON PRP$ _ 18 nmod:poss _ _ 14 50.1%-owned _ ADJ JJ _ 18 amod _ _ 15 Canadian _ PROPN NNP _ 18 compound _ _ 16 Utilities _ PROPN NNP _ 18 compound _ _ 17 Ltd. _ PROPN NNP _ 18 compound _ _ 18 unit _ NOUN NN _ 20 nsubj _ _ 19 is _ AUX VBZ _ 20 aux _ _ 20 reviewing _ VERB VBG _ 12 ccomp _ _ 21 cogeneration _ NOUN NN _ 22 compound _ _ 22 projects _ NOUN NNS _ 20 dobj _ _ 23 in _ ADP IN _ 25 case _ _ 24 eastern _ ADJ JJ _ 25 amod _ _ 25 Canada _ PROPN NNP _ 22 nmod _ _ 26 , _ PUNCT , _ 22 punct _ _ 27 and _ CONJ CC _ 22 cc _ _ 28 conventional _ ADJ JJ _ 32 amod _ _ 29 electric _ ADJ JJ _ 32 amod _ _ 30 power _ NOUN NN _ 32 compound _ _ 31 generating _ NOUN NN _ 32 compound _ _ 32 plants _ NOUN NNS _ 22 conj _ _ 33 elsewhere _ ADV RB _ 32 advmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 including _ VERB VBG _ 36 case _ _ 36 Britain _ PROPN NNP _ 33 nmod _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 where _ ADV WRB _ 42 advmod _ _ 39 the _ DET DT _ 41 det _ _ 40 British _ ADJ JJ _ 41 amod _ _ 41 government _ NOUN NN _ 42 nsubj _ _ 42 plans _ NOUN NNS _ 36 acl:relcl _ _ 43 to _ PART TO _ 44 mark _ _ 44 allow _ VERB VB _ 42 xcomp _ _ 45 limited _ ADJ JJ _ 46 amod _ _ 46 competition _ NOUN NN _ 44 dobj _ _ 47 in _ ADP IN _ 49 case _ _ 48 electrical _ ADJ JJ _ 49 amod _ _ 49 generation _ NOUN NN _ 46 nmod _ _ 50 from _ ADP IN _ 52 case _ _ 51 private-sector _ ADJ JJ _ 52 amod _ _ 52 suppliers _ NOUN NNS _ 46 nmod _ _ 53 as _ ADP IN _ 54 case _ _ 54 part _ NOUN NN _ 42 nmod _ _ 55 of _ ADP IN _ 58 case _ _ 56 its _ PRON PRP$ _ 58 nmod:poss _ _ 57 privatization _ NOUN NN _ 58 compound _ _ 58 program _ NOUN NN _ 54 nmod _ _ 59 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 projects _ NOUN NNS _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 big _ ADJ JJ _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 can _ AUX MD _ 4 aux _ _ 3 be _ VERB VB _ 4 cop _ _ 4 C$ _ SYM $ _ 12 ccomp _ _ 5 1 _ NUM CD _ 6 compound _ _ 6 billion _ NUM CD _ 4 nummod _ _ 7 plus _ ADV RB _ 4 advmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 '' _ PUNCT '' _ 12 punct _ _ 10 Mr. _ PROPN NNP _ 11 compound _ _ 11 Richardson _ PROPN NNP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 But _ CONJ CC _ 6 cc _ _ 3 we _ PRON PRP _ 6 nsubj _ _ 4 would _ AUX MD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 go _ VERB VB _ 23 ccomp _ _ 7 into _ ADP IN _ 8 case _ _ 8 them _ PRON PRP _ 6 nmod _ _ 9 alone _ ADV RB _ 6 advmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 Canadian _ PROPN NNP _ 14 compound _ _ 14 Utilities _ PROPN NNP _ 17 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 equity _ NOUN NN _ 17 compound _ _ 17 stake _ NOUN NN _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 be _ VERB VB _ 20 cop _ _ 20 small _ ADJ JJ _ 6 conj _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 Ideally _ ADV RB _ 6 advmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 we _ PRON PRP _ 6 nsubj _ _ 5 'd _ AUX MD _ 6 aux _ _ 6 like _ VERB VB _ 0 root _ _ 7 to _ PART TO _ 10 mark _ _ 8 be _ VERB VB _ 10 cop _ _ 9 the _ DET DT _ 10 det _ _ 10 operator _ NOUN NN _ 6 xcomp _ _ 11 -LCB- _ PUNCT -LRB- _ 14 punct _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 project _ NOUN NN _ 10 nmod _ _ 15 -RCB- _ PUNCT -RRB- _ 14 punct _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 a _ DET DT _ 20 det _ _ 18 modest _ ADJ JJ _ 20 amod _ _ 19 equity _ NOUN NN _ 20 compound _ _ 20 investor _ NOUN NN _ 10 conj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 Our _ PRON PRP$ _ 3 nmod:poss _ _ 2 long _ ADJ JJ _ 3 amod _ _ 3 suit _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 our _ PRON PRP$ _ 7 nmod:poss _ _ 6 proven _ ADJ JJ _ 7 amod _ _ 7 ability _ NOUN NN _ 15 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 operate _ VERB VB _ 7 acl _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 power _ NOUN NN _ 12 compound _ _ 12 plants _ NOUN NNS _ 9 dobj _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Richardson _ PROPN NNP _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 offer _ VERB VB _ 0 root _ _ 6 specifics _ NOUN NNS _ 5 dobj _ _ 7 regarding _ VERB VBG _ 6 acl _ _ 8 Atco _ PROPN NNP _ 12 nmod:poss _ _ 9 's _ VERB VBZ _ 8 case _ _ 10 proposed _ VERB VBN _ 12 amod _ _ 11 British _ ADJ JJ _ 12 amod _ _ 12 project _ NOUN NN _ 7 dobj _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 but _ CONJ CC _ 5 cc _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 5 conj _ _ 17 it _ PRON PRP _ 19 nsubj _ _ 18 would _ AUX MD _ 19 aux _ _ 19 compete _ VERB VB _ 16 ccomp _ _ 20 for _ ADP IN _ 21 case _ _ 21 customers _ NOUN NNS _ 19 nmod _ _ 22 with _ ADP IN _ 28 case _ _ 23 two _ NUM CD _ 28 nummod _ _ 24 huge _ ADJ JJ _ 28 amod _ _ 25 British _ ADJ JJ _ 28 amod _ _ 26 power _ NOUN NN _ 28 compound _ _ 27 generating _ NOUN NN _ 28 compound _ _ 28 companies _ NOUN NNS _ 19 nmod _ _ 29 that _ PRON WDT _ 32 nsubjpass _ _ 30 would _ AUX MD _ 32 aux _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 formed _ VERB VBN _ 28 acl:relcl _ _ 33 under _ ADP IN _ 37 case _ _ 34 the _ DET DT _ 35 det _ _ 35 country _ NOUN NN _ 37 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 plan _ NOUN NN _ 32 nmod _ _ 38 to _ PART TO _ 39 mark _ _ 39 privatize _ VERB VB _ 37 acl _ _ 40 its _ PRON PRP$ _ 45 nmod:poss _ _ 41 massive _ ADJ JJ _ 45 amod _ _ 42 water _ NOUN NN _ 45 compound _ _ 43 and _ CONJ CC _ 42 cc _ _ 44 electric _ ADJ JJ _ 42 conj _ _ 45 utilities _ NOUN NNS _ 39 dobj _ _ 46 . _ PUNCT . _ 5 punct _ _ 1 Britain _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 government _ NOUN NN _ 4 nsubj _ _ 4 plans _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 raise _ VERB VB _ 4 xcomp _ _ 7 about _ ADV RB _ 10 advmod _ _ 8 # _ SYM # _ 10 compound _ _ 9 20 _ NUM CD _ 10 compound _ _ 10 billion _ NUM CD _ 6 dobj _ _ 11 -LRB- _ PUNCT -LRB- _ 12 punct _ _ 12 $ _ SYM $ _ 10 dep _ _ 13 31.05 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 -RRB- _ PUNCT -RRB- _ 12 punct _ _ 16 from _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 sale _ NOUN NN _ 6 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 most _ ADJ JJS _ 18 nmod _ _ 21 of _ ADP IN _ 27 case _ _ 22 its _ PRON PRP$ _ 27 nmod:poss _ _ 23 giant _ ADJ JJ _ 27 amod _ _ 24 water _ NOUN NN _ 27 compound _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 electric _ ADJ JJ _ 24 conj _ _ 27 utilities _ NOUN NNS _ 20 nmod _ _ 28 , _ PUNCT , _ 6 punct _ _ 29 beginning _ VERB VBG _ 31 case _ _ 30 next _ ADJ JJ _ 31 amod _ _ 31 month _ NOUN NN _ 6 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 planned _ ADJ JJ _ 5 amod _ _ 3 electric _ ADJ JJ _ 5 amod _ _ 4 utility _ NOUN NN _ 5 compound _ _ 5 sale _ NOUN NN _ 14 nsubjpass _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 scheduled _ VERB VBN _ 5 acl _ _ 8 for _ ADP IN _ 10 case _ _ 9 next _ ADJ JJ _ 10 amod _ _ 10 year _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 is _ AUX VBZ _ 14 auxpass _ _ 13 alone _ ADV RB _ 14 advmod _ _ 14 expected _ VERB VBN _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 raise _ VERB VB _ 14 xcomp _ _ 17 # _ SYM # _ 19 compound _ _ 18 13 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 16 dobj _ _ 20 , _ PUNCT , _ 16 punct _ _ 21 making _ VERB VBG _ 16 advcl _ _ 22 it _ PRON PRP _ 28 nsubj _ _ 23 the _ DET DT _ 24 det _ _ 24 world _ NOUN NN _ 28 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 largest _ ADJ JJS _ 28 amod _ _ 27 public _ ADJ JJ _ 28 amod _ _ 28 offering _ NOUN NN _ 21 xcomp _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 Under _ ADP IN _ 2 case _ _ 2 terms _ NOUN NNS _ 11 nmod _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 plan _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 independent _ ADJ JJ _ 8 amod _ _ 8 generators _ NOUN NNS _ 11 nsubj _ _ 9 would _ AUX MD _ 11 aux _ _ 10 be _ VERB VB _ 11 cop _ _ 11 able _ ADJ JJ _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 compete _ VERB VB _ 11 xcomp _ _ 14 for _ ADP IN _ 16 case _ _ 15 15 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 customers _ NOUN NNS _ 16 nmod _ _ 19 until _ ADP IN _ 20 case _ _ 20 1994 _ NUM CD _ 13 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 for _ ADP IN _ 26 case _ _ 24 another _ DET DT _ 26 det _ _ 25 10 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 13 conj _ _ 27 between _ ADP IN _ 28 case _ _ 28 1994 _ NUM CD _ 26 nmod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 1998 _ NUM CD _ 28 conj _ _ 31 . _ PUNCT . _ 11 punct _ _ 1 Canadian _ PROPN NNP _ 2 compound _ _ 2 Utilities _ PROPN NNP _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 1988 _ NUM CD _ 5 nummod _ _ 5 revenue _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 C$ _ SYM $ _ 5 nmod _ _ 8 1.16 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 mainly _ ADV RB _ 15 advmod _ _ 12 from _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 natural _ ADJ JJ _ 15 amod _ _ 15 gas _ NOUN NN _ 3 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 electric _ ADJ JJ _ 19 amod _ _ 18 utility _ NOUN NN _ 19 compound _ _ 19 businesses _ NOUN NNS _ 15 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Alberta _ PROPN NNP _ 15 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 where _ ADV WRB _ 26 advmod _ _ 24 the _ DET DT _ 25 det _ _ 25 company _ NOUN NN _ 26 nsubj _ _ 26 serves _ VERB VBZ _ 21 acl:relcl _ _ 27 about _ ADV RB _ 28 advmod _ _ 28 800,000 _ NUM CD _ 29 nummod _ _ 29 customers _ NOUN NNS _ 26 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 seems _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 7 mark _ _ 5 be _ VERB VB _ 7 cop _ _ 6 a _ DET DT _ 7 det _ _ 7 move _ NOUN NN _ 3 xcomp _ _ 8 around _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 world _ NOUN NN _ 7 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 deregulate _ VERB VB _ 7 advcl _ _ 13 the _ DET DT _ 14 det _ _ 14 generation _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 16 case _ _ 16 electricity _ NOUN NN _ 14 nmod _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 '' _ PUNCT '' _ 21 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Richardson _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 3 dep _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 and _ CONJ CC _ 3 cc _ _ 24 Canadian _ PROPN NNP _ 25 compound _ _ 25 Utilities _ PROPN NNP _ 26 nsubj _ _ 26 hopes _ VERB VBZ _ 3 conj _ _ 27 to _ PART TO _ 28 mark _ _ 28 capitalize _ VERB VB _ 26 xcomp _ _ 29 on _ ADP IN _ 30 case _ _ 30 it _ PRON PRP _ 28 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 real _ ADJ JJ _ 6 amod _ _ 6 thrust _ NOUN NN _ 14 ccomp _ _ 7 on _ ADP IN _ 10 case _ _ 8 our _ PRON PRP$ _ 10 nmod:poss _ _ 9 utility _ NOUN NN _ 10 compound _ _ 10 side _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 '' _ PUNCT '' _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 adding _ VERB VBG _ 14 xcomp _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 Canadian _ PROPN NNP _ 19 compound _ _ 19 Utilities _ PROPN NNP _ 22 nsubj _ _ 20 is _ AUX VBZ _ 22 aux _ _ 21 also _ ADV RB _ 22 advmod _ _ 22 mulling _ VERB VBG _ 16 ccomp _ _ 23 projects _ NOUN NNS _ 22 dobj _ _ 24 in _ ADP IN _ 26 case _ _ 25 underdeveloped _ ADJ JJ _ 26 amod _ _ 26 countries _ NOUN NNS _ 23 nmod _ _ 27 , _ PUNCT , _ 16 punct _ _ 28 though _ SCONJ IN _ 32 mark _ _ 29 he _ PRON PRP _ 32 nsubj _ _ 30 would _ AUX MD _ 32 aux _ _ 31 be _ VERB VB _ 32 cop _ _ 32 specific _ ADJ JJ _ 16 advcl _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 Canadian _ PROPN NNP _ 2 compound _ _ 2 Utilities _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 n't _ PART RB _ 5 neg _ _ 5 alone _ ADV RB _ 0 root _ _ 6 in _ SCONJ IN _ 7 mark _ _ 7 exploring _ VERB VBG _ 5 advcl _ _ 8 power _ NOUN NN _ 10 compound _ _ 9 generation _ NOUN NN _ 10 compound _ _ 10 opportunities _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 Britain _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 in _ ADP IN _ 15 case _ _ 15 anticipation _ NOUN NN _ 7 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 privatization _ NOUN NN _ 19 compound _ _ 19 program _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 're _ AUX VBP _ 5 aux _ _ 4 certainly _ ADV RB _ 5 advmod _ _ 5 looking _ VERB VBG _ 15 ccomp _ _ 6 at _ ADP IN _ 10 case _ _ 7 some _ DET DT _ 10 det _ _ 8 power _ NOUN NN _ 10 compound _ _ 9 generating _ NOUN NN _ 10 compound _ _ 10 projects _ NOUN NNS _ 5 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 England _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Bruce _ PROPN NNP _ 17 compound _ _ 17 Stram _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 vice _ NOUN NN _ 20 compound _ _ 20 president _ NOUN NN _ 17 appos _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 corporate _ ADJ JJ _ 23 amod _ _ 23 strategy _ NOUN NN _ 20 appos _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 corporate _ ADJ JJ _ 26 amod _ _ 26 planning _ NOUN NN _ 23 conj _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 with _ ADP IN _ 30 case _ _ 29 Enron _ PROPN NNP _ 30 compound _ _ 30 Corp. _ PROPN NNP _ 17 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 Houston _ PROPN NNP _ 30 appos _ _ 33 , _ PUNCT , _ 30 punct _ _ 34 a _ DET DT _ 38 det _ _ 35 big _ ADJ JJ _ 38 amod _ _ 36 natural _ ADJ JJ _ 38 amod _ _ 37 gas _ NOUN NN _ 38 compound _ _ 38 producer _ NOUN NN _ 30 appos _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 pipeline _ NOUN NN _ 41 compound _ _ 41 operator _ NOUN NN _ 38 conj _ _ 42 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stram _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Enron _ PROPN NNP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 considering _ VERB VBG _ 3 ccomp _ _ 7 building _ VERB VBG _ 6 advcl _ _ 8 gas-fired _ ADJ JJ _ 10 amod _ _ 9 power _ NOUN NN _ 10 compound _ _ 10 plants _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.K. _ PROPN NNP _ 7 nmod _ _ 14 capable _ ADJ JJ _ 7 xcomp _ _ 15 of _ SCONJ IN _ 16 mark _ _ 16 producing _ VERB VBG _ 14 advcl _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 500 _ NUM CD _ 19 nummod _ _ 19 megawatts _ NOUN NNS _ 16 dobj _ _ 20 of _ ADP IN _ 21 case _ _ 21 power _ NOUN NN _ 19 nmod _ _ 22 at _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 cost _ NOUN NN _ 7 nmod _ _ 25 of _ ADP IN _ 31 case _ _ 26 about _ ADV RB _ 31 advmod _ _ 27 $ _ SYM $ _ 31 dep _ _ 28 300 _ NUM CD _ 31 compound _ _ 29 million _ NUM CD _ 31 compound _ _ 30 to _ ADP TO _ 31 dep _ _ 31 $ _ SYM $ _ 24 nmod _ _ 32 400 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 PSE _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 third _ ADJ JJ _ 9 amod _ _ 9 earnings _ NOUN NNS _ 7 dobj _ _ 10 of _ ADP IN _ 15 case _ _ 11 $ _ SYM $ _ 15 dep _ _ 12 1.3 _ NUM CD _ 15 compound _ _ 13 million _ NUM CD _ 15 compound _ _ 14 to _ ADP TO _ 15 dep _ _ 15 $ _ SYM $ _ 9 nmod _ _ 16 1.7 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 14 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 15 conj _ _ 22 to _ ADP TO _ 21 dep _ _ 23 18 _ NUM CD _ 24 nummod _ _ 24 cents _ NOUN NNS _ 21 dep _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 21 nmod:npmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-ago _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 17 nmod _ _ 5 , _ PUNCT , _ 17 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 designer _ NOUN NN _ 17 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 operator _ NOUN NN _ 7 conj _ _ 10 of _ ADP IN _ 16 case _ _ 11 cogeneration _ NOUN NN _ 16 compound _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 waste _ NOUN NN _ 11 conj _ _ 14 heat _ NOUN NN _ 16 compound _ _ 15 recovery _ NOUN NN _ 16 compound _ _ 16 plants _ NOUN NNS _ 7 nmod _ _ 17 had _ VERB VBD _ 0 root _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 income _ NOUN NN _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 $ _ SYM $ _ 22 dep _ _ 22 326,000 _ NUM CD _ 19 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 four _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 22 conj _ _ 27 a _ DET DT _ 28 det _ _ 28 share _ NOUN NN _ 26 nmod:npmod _ _ 29 , _ PUNCT , _ 17 punct _ _ 30 on _ ADP IN _ 31 case _ _ 31 revenue _ NOUN NN _ 17 nmod _ _ 32 of _ ADP IN _ 34 case _ _ 33 about _ ADV RB _ 34 advmod _ _ 34 $ _ SYM $ _ 31 nmod _ _ 35 41.4 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 improvement _ NOUN NN _ 7 nsubjpass _ _ 6 is _ VERB VBZ _ 7 auxpass _ _ 7 related _ VERB VBN _ 3 ccomp _ _ 8 to _ ADP TO _ 11 case _ _ 9 additional _ ADJ JJ _ 11 amod _ _ 10 cogeneration _ NOUN NN _ 11 compound _ _ 11 facilities _ NOUN NNS _ 7 nmod _ _ 12 that _ PRON WDT _ 15 nsubjpass _ _ 13 have _ AUX VBP _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 put _ VERB VBN _ 11 acl:relcl _ _ 16 into _ ADP IN _ 17 case _ _ 17 operation _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 CONCORDE _ PROPN NNP _ 3 compound _ _ 2 trans-Atlantic _ ADJ JJ _ 3 amod _ _ 3 flights _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 2,400 _ NUM CD _ 0 root _ _ 7 to _ ADP TO _ 8 case _ _ 8 Paris _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 3,200 _ NUM CD _ 6 conj _ _ 12 to _ ADP TO _ 13 case _ _ 13 London _ PROPN NNP _ 11 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 a _ DET DT _ 5 det _ _ 3 Centennial _ PROPN NNP _ 5 compound _ _ 4 Journal _ PROPN NNP _ 5 compound _ _ 5 article _ NOUN NN _ 12 nmod _ _ 6 Oct. _ PROPN NNP _ 12 nmod:tmod _ _ 7 5 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 fares _ NOUN NNS _ 12 nsubjpass _ _ 11 were _ AUX VBD _ 12 auxpass _ _ 12 reversed _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Diamond _ PROPN NNP _ 4 compound _ _ 2 Shamrock _ PROPN NNP _ 4 compound _ _ 3 Offshore _ PROPN NNP _ 4 compound _ _ 4 Partners _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 had _ AUX VBD _ 8 aux _ _ 8 discovered _ VERB VBN _ 5 ccomp _ _ 9 gas _ NOUN NN _ 8 dobj _ _ 10 offshore _ ADV RB _ 8 advmod _ _ 11 Louisiana _ PROPN NNP _ 10 nmod:npmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 well _ ADV RB _ 3 nsubj _ _ 3 flowed _ VERB VBD _ 0 root _ _ 4 at _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 rate _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 11 case _ _ 8 2.016 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 11 nummod _ _ 10 cubic _ ADJ JJ _ 11 amod _ _ 11 feet _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 gas _ NOUN NN _ 11 nmod _ _ 14 a _ DET DT _ 15 det _ _ 15 day _ NOUN NN _ 11 nmod:npmod _ _ 16 through _ ADP IN _ 20 case _ _ 17 a _ DET DT _ 20 det _ _ 18 16 _ NUM CD _ 20 nummod _ _ 19 64-inch _ ADJ JJ _ 20 amod _ _ 20 opening _ NOUN NN _ 3 nmod _ _ 21 at _ ADP IN _ 22 case _ _ 22 depths _ NOUN NNS _ 3 nmod _ _ 23 between _ ADP IN _ 27 case _ _ 24 5,782 _ NUM CD _ 27 nummod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 5,824 _ NUM CD _ 24 conj _ _ 27 feet _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 Diamond _ PROPN NNP _ 2 compound _ _ 2 Shamrock _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 operator _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 with _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 100 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 11 amod _ _ 11 interest _ NOUN NN _ 5 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 well _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Diamond _ PROPN NNP _ 3 compound _ _ 2 Shamrock _ PROPN NNP _ 3 compound _ _ 3 Offshore _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 stock _ NOUN NN _ 6 nsubj _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 12.5 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 6 dobj _ _ 9 Friday _ PROPN NNP _ 6 nmod:tmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 close _ VERB VB _ 6 advcl _ _ 12 at _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 8.25 _ NUM CD _ 11 nmod _ _ 15 in _ ADP IN _ 21 case _ _ 16 New _ PROPN NNP _ 21 compound _ _ 17 York _ PROPN NNP _ 21 compound _ _ 18 Stock _ PROPN NNP _ 21 compound _ _ 19 Exchange _ PROPN NNP _ 21 compound _ _ 20 composite _ ADJ JJ _ 21 amod _ _ 21 trading _ NOUN NN _ 11 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Kaufman _ PROPN NNP _ 5 compound _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Broad _ PROPN NNP _ 1 conj _ _ 4 Home _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 formed _ VERB VBD _ 6 ccomp _ _ 9 a _ DET DT _ 15 det _ _ 10 $ _ SYM $ _ 15 amod _ _ 11 53.4 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 limited _ ADJ JJ _ 15 amod _ _ 14 partnership _ NOUN NN _ 15 compound _ _ 15 subsidiary _ NOUN NN _ 8 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 buy _ VERB VB _ 15 acl _ _ 18 land _ NOUN NN _ 17 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 California _ PROPN NNP _ 18 nmod _ _ 21 suitable _ ADJ JJ _ 18 amod _ _ 22 for _ ADP IN _ 24 case _ _ 23 residential _ ADJ JJ _ 24 amod _ _ 24 development _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 partnership _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Kaufman _ PROPN NNP _ 11 compound _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Broad _ PROPN NNP _ 4 conj _ _ 7 Land _ PROPN NNP _ 11 compound _ _ 8 Development _ PROPN NNP _ 11 compound _ _ 9 Venture _ PROPN NNP _ 11 compound _ _ 10 Limited _ PROPN NNP _ 11 compound _ _ 11 Partnership _ PROPN NNP _ 2 appos _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ VERB VBZ _ 17 cop _ _ 14 a _ DET DT _ 17 det _ _ 15 50-50 _ ADJ JJ _ 17 amod _ _ 16 joint _ ADJ JJ _ 17 amod _ _ 17 venture _ NOUN NN _ 0 root _ _ 18 with _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 trust _ NOUN NN _ 17 nmod _ _ 21 created _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 24 case _ _ 23 institutional _ ADJ JJ _ 24 amod _ _ 24 clients _ NOUN NNS _ 21 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 Heitman _ PROPN NNP _ 28 compound _ _ 27 Advisory _ PROPN NNP _ 28 compound _ _ 28 Corp. _ PROPN NNP _ 24 nmod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 a _ DET DT _ 31 det _ _ 31 unit _ NOUN NN _ 28 appos _ _ 32 of _ ADP IN _ 35 case _ _ 33 Heitman _ PROPN NNP _ 35 compound _ _ 34 Financial _ PROPN NNP _ 35 compound _ _ 35 Corp. _ PROPN NNP _ 31 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 a _ DET DT _ 45 det _ _ 38 real _ ADJ JJ _ 45 amod _ _ 39 estate _ NOUN NN _ 45 compound _ _ 40 advisory _ NOUN NN _ 45 compound _ _ 41 , _ PUNCT , _ 40 punct _ _ 42 management _ NOUN NN _ 40 conj _ _ 43 and _ CONJ CC _ 40 cc _ _ 44 development _ NOUN NN _ 40 conj _ _ 45 company _ NOUN NN _ 35 appos _ _ 46 with _ ADP IN _ 47 case _ _ 47 offices _ NOUN NNS _ 45 nmod _ _ 48 in _ ADP IN _ 49 case _ _ 49 Chicago _ PROPN NNP _ 47 nmod _ _ 50 and _ CONJ CC _ 49 cc _ _ 51 Beverly _ PROPN NNP _ 52 compound _ _ 52 Hills _ PROPN NNP _ 49 conj _ _ 53 , _ PUNCT , _ 52 punct _ _ 54 Calif _ PROPN NNP _ 52 appos _ _ 55 . _ PUNCT . _ 17 punct _ _ 1 Kaufman _ PROPN NNP _ 10 nsubj _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Broad _ PROPN NNP _ 1 conj _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 a _ DET DT _ 8 det _ _ 6 home _ NOUN NN _ 8 compound _ _ 7 building _ NOUN NN _ 8 compound _ _ 8 company _ NOUN NN _ 1 appos _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 declined _ VERB VBD _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 identify _ VERB VB _ 10 xcomp _ _ 13 the _ DET DT _ 15 det _ _ 14 institutional _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 12 dobj _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 land _ NOUN NN _ 13 nsubj _ _ 3 to _ PART TO _ 5 mark _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 purchased _ VERB VBN _ 2 acl _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 joint _ ADJ JJ _ 9 amod _ _ 9 venture _ NOUN NN _ 5 nmod _ _ 10 has _ AUX VBZ _ 13 aux _ _ 11 n't _ PART RB _ 13 neg _ _ 12 yet _ ADV RB _ 13 advmod _ _ 13 received _ VERB VBD _ 0 root _ _ 14 zoning _ NOUN NN _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 other _ ADJ JJ _ 14 conj _ _ 17 approvals _ NOUN NNS _ 13 dobj _ _ 18 required _ VERB VBN _ 17 acl _ _ 19 for _ ADP IN _ 20 case _ _ 20 development _ NOUN NN _ 18 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 part _ NOUN NN _ 31 nsubj _ _ 24 of _ ADP IN _ 29 case _ _ 25 Kaufman _ PROPN NNP _ 29 nmod:poss _ _ 26 & _ CONJ CC _ 25 cc _ _ 27 Broad _ PROPN NNP _ 25 conj _ _ 28 's _ PART POS _ 25 case _ _ 29 job _ NOUN NN _ 23 nmod _ _ 30 will _ AUX MD _ 31 aux _ _ 31 be _ VERB VB _ 13 conj _ _ 32 to _ PART TO _ 33 mark _ _ 33 obtain _ VERB VB _ 31 xcomp _ _ 34 such _ ADJ JJ _ 35 amod _ _ 35 approvals _ NOUN NNS _ 33 dobj _ _ 36 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 partnership _ NOUN NN _ 3 nsubj _ _ 3 runs _ VERB VBZ _ 38 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 risk _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 it _ PRON PRP _ 10 nsubj _ _ 8 may _ AUX MD _ 10 aux _ _ 9 not _ PART RB _ 10 neg _ _ 10 get _ VERB VB _ 5 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 approvals _ NOUN NNS _ 10 dobj _ _ 13 for _ ADP IN _ 14 case _ _ 14 development _ NOUN NN _ 12 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 but _ CONJ CC _ 3 cc _ _ 17 in _ ADP IN _ 18 case _ _ 18 return _ NOUN NN _ 22 nmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 it _ PRON PRP _ 22 nsubj _ _ 21 can _ AUX MD _ 22 aux _ _ 22 buy _ VERB VB _ 3 conj _ _ 23 land _ NOUN NN _ 22 dobj _ _ 24 at _ ADP IN _ 29 case _ _ 25 wholesale _ ADJ JJ _ 29 amod _ _ 26 rather _ ADV RB _ 25 cc _ _ 27 than _ ADP IN _ 26 mwe _ _ 28 retail _ ADJ JJ _ 25 conj _ _ 29 prices _ NOUN NNS _ 22 nmod _ _ 30 , _ PUNCT , _ 22 punct _ _ 31 which _ PRON WDT _ 33 nsubj _ _ 32 can _ AUX MD _ 33 aux _ _ 33 result _ VERB VB _ 22 dep _ _ 34 in _ ADP IN _ 36 case _ _ 35 sizable _ ADJ JJ _ 36 amod _ _ 36 savings _ NOUN NNS _ 33 nmod _ _ 37 , _ PUNCT , _ 38 punct _ _ 38 said _ VERB VBD _ 0 root _ _ 39 Bruce _ PROPN NNP _ 40 compound _ _ 40 Karatz _ PROPN NNP _ 38 nsubj _ _ 41 , _ PUNCT , _ 40 punct _ _ 42 president _ NOUN NN _ 40 appos _ _ 43 and _ CONJ CC _ 42 cc _ _ 44 chief _ ADJ JJ _ 46 amod _ _ 45 executive _ ADJ JJ _ 46 amod _ _ 46 officer _ NOUN NN _ 42 conj _ _ 47 of _ ADP IN _ 48 case _ _ 48 Kaufman _ PROPN NNP _ 42 nmod _ _ 49 & _ CONJ CC _ 48 cc _ _ 50 Broad _ PROPN NNP _ 48 conj _ _ 51 . _ PUNCT . _ 38 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 are _ VERB VBP _ 0 root _ _ 4 really _ ADV RB _ 3 advmod _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 few _ ADJ JJ _ 7 amod _ _ 7 companies _ NOUN NNS _ 3 nsubj _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 have _ VERB VBP _ 7 acl:relcl _ _ 10 adequate _ ADJ JJ _ 11 amod _ _ 11 capital _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 acl _ _ 14 properties _ NOUN NNS _ 13 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 raw _ ADJ JJ _ 18 amod _ _ 18 state _ NOUN NN _ 14 nmod _ _ 19 for _ ADP IN _ 20 case _ _ 20 cash _ NOUN NN _ 13 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Typically _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 developers _ NOUN NNS _ 4 nsubj _ _ 4 option _ VERB VBP _ 21 ccomp _ _ 5 property _ NOUN NN _ 4 dobj _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 and _ CONJ CC _ 4 cc _ _ 8 then _ ADV RB _ 17 advmod _ _ 9 once _ SCONJ IN _ 11 mark _ _ 10 they _ PRON PRP _ 11 nsubj _ _ 11 get _ VERB VBP _ 17 advcl _ _ 12 the _ DET DT _ 14 det _ _ 13 administrative _ ADJ JJ _ 14 amod _ _ 14 approvals _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 they _ PRON PRP _ 17 nsubj _ _ 17 buy _ VERB VBP _ 4 conj _ _ 18 it _ PRON PRP _ 17 dobj _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Karatz _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 adding _ VERB VBG _ 21 advcl _ _ 26 that _ SCONJ IN _ 28 mark _ _ 27 he _ PRON PRP _ 28 nsubj _ _ 28 believes _ VERB VBZ _ 25 ccomp _ _ 29 the _ DET DT _ 31 det _ _ 30 joint _ ADJ JJ _ 31 amod _ _ 31 venture _ NOUN NN _ 34 nsubj _ _ 32 is _ VERB VBZ _ 34 cop _ _ 33 the _ DET DT _ 34 det _ _ 34 first _ ADJ JJ _ 28 ccomp _ _ 35 of _ ADP IN _ 37 case _ _ 36 its _ PRON PRP$ _ 37 nmod:poss _ _ 37 kind _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 usually _ ADV RB _ 4 advmod _ _ 4 operate _ VERB VBP _ 0 root _ _ 5 in _ ADP IN _ 8 case _ _ 6 that _ DET DT _ 8 det _ _ 7 conservative _ ADJ JJ _ 8 amod _ _ 8 manner _ NOUN NN _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 10 '' _ PUNCT '' _ 4 punct _ _ 1 By _ SCONJ IN _ 2 mark _ _ 2 setting _ VERB VBG _ 12 advcl _ _ 3 up _ ADP RP _ 2 compound:prt _ _ 4 the _ DET DT _ 6 det _ _ 5 joint _ ADJ JJ _ 6 amod _ _ 6 venture _ NOUN NN _ 2 dobj _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 Kaufman _ PROPN NNP _ 12 nsubj _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Broad _ PROPN NNP _ 8 conj _ _ 11 can _ AUX MD _ 12 aux _ _ 12 take _ VERB VB _ 35 ccomp _ _ 13 the _ DET DT _ 16 det _ _ 14 more _ ADV RBR _ 15 advmod _ _ 15 aggressive _ ADJ JJ _ 16 amod _ _ 16 approach _ NOUN NN _ 12 dobj _ _ 17 of _ SCONJ IN _ 18 mark _ _ 18 buying _ VERB VBG _ 16 acl _ _ 19 raw _ ADJ JJ _ 20 amod _ _ 20 land _ NOUN NN _ 18 dobj _ _ 21 , _ PUNCT , _ 12 punct _ _ 22 while _ SCONJ IN _ 23 mark _ _ 23 avoiding _ VERB VBG _ 12 advcl _ _ 24 the _ DET DT _ 26 det _ _ 25 negative _ ADJ JJ _ 26 amod _ _ 26 impacts _ NOUN NNS _ 23 dobj _ _ 27 to _ ADP TO _ 31 case _ _ 28 its _ PRON PRP$ _ 31 nmod:poss _ _ 29 own _ ADJ JJ _ 31 amod _ _ 30 balance _ NOUN NN _ 31 compound _ _ 31 sheet _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 35 punct _ _ 33 Mr. _ PROPN NNP _ 34 compound _ _ 34 Karatz _ PROPN NNP _ 35 nsubj _ _ 35 said _ VERB VBD _ 0 root _ _ 36 . _ PUNCT . _ 35 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 putting _ VERB VBG _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 only _ ADV RB _ 7 advmod _ _ 7 10 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 4 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 capital _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 although _ SCONJ IN _ 16 mark _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 is _ VERB VBZ _ 16 cop _ _ 16 responsible _ ADJ JJ _ 4 advcl _ _ 17 for _ SCONJ IN _ 18 mark _ _ 18 providing _ VERB VBG _ 16 advcl _ _ 19 management _ NOUN NN _ 24 compound _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 planning _ NOUN NN _ 19 conj _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 processing _ NOUN NN _ 19 conj _ _ 24 services _ NOUN NNS _ 18 dobj _ _ 25 to _ ADP TO _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 joint _ ADJ JJ _ 28 amod _ _ 28 venture _ NOUN NN _ 18 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 30 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 one _ NUM CD _ 30 ccomp _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 best _ ADJ JJS _ 8 amod _ _ 8 ways _ NOUN NNS _ 4 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 assure _ VERB VB _ 8 acl _ _ 11 a _ DET DT _ 12 det _ _ 12 pipeline _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 land _ NOUN NN _ 12 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 fuel _ VERB VB _ 12 acl _ _ 17 our _ PRON PRP$ _ 18 nmod:poss _ _ 18 growth _ NOUN NN _ 16 dobj _ _ 19 at _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 22 det _ _ 21 minimum _ ADJ JJ _ 22 amod _ _ 22 risk _ NOUN NN _ 10 nmod _ _ 23 to _ ADP TO _ 25 case _ _ 24 our _ PRON PRP$ _ 25 nmod:poss _ _ 25 company _ NOUN NN _ 22 nmod _ _ 26 , _ PUNCT , _ 30 punct _ _ 27 '' _ PUNCT '' _ 30 punct _ _ 28 Mr. _ PROPN NNP _ 29 compound _ _ 29 Karatz _ PROPN NNP _ 30 nsubj _ _ 30 said _ VERB VBD _ 0 root _ _ 31 . _ PUNCT . _ 30 punct _ _ 1 When _ ADV WRB _ 6 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 price _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 plastics _ NOUN NNS _ 3 nmod _ _ 6 took _ VERB VBD _ 14 advcl _ _ 7 off _ ADP RP _ 6 compound:prt _ _ 8 in _ ADP IN _ 9 case _ _ 9 1987 _ NUM CD _ 6 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 Quantum _ PROPN NNP _ 13 compound _ _ 12 Chemical _ PROPN NNP _ 13 compound _ _ 13 Corp. _ PROPN NNP _ 14 nsubj _ _ 14 went _ VERB VBD _ 0 root _ _ 15 along _ ADV RB _ 14 advmod _ _ 16 for _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 ride _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 timing _ NOUN NN _ 14 nsubj _ _ 3 of _ ADP IN _ 8 case _ _ 4 Quantum _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ JJ _ 8 amod _ _ 8 officer _ NOUN NN _ 2 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 John _ PROPN NNP _ 12 compound _ _ 11 Hoyt _ PROPN NNP _ 12 compound _ _ 12 Stookey _ PROPN NNP _ 8 appos _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 appeared _ VERB VBD _ 0 root _ _ 15 to _ PART TO _ 17 mark _ _ 16 be _ VERB VB _ 17 cop _ _ 17 nothing _ NOUN NN _ 14 xcomp _ _ 18 less _ ADV RBR _ 17 amod _ _ 19 than _ ADP IN _ 20 case _ _ 20 inspired _ VERB VBN _ 18 advcl _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 because _ SCONJ IN _ 26 mark _ _ 23 he _ PRON PRP _ 26 nsubj _ _ 24 had _ AUX VBD _ 26 aux _ _ 25 just _ ADV RB _ 26 advmod _ _ 26 increased _ VERB VBN _ 14 advcl _ _ 27 Quantum _ PROPN NNP _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 reliance _ NOUN NN _ 26 dobj _ _ 30 on _ ADP IN _ 31 case _ _ 31 plastics _ NOUN NNS _ 29 nmod _ _ 32 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 outpaced _ VERB VBD _ 0 root _ _ 4 much _ ADJ JJ _ 3 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 chemical _ ADJ JJ _ 8 amod _ _ 8 industry _ NOUN NN _ 4 nmod _ _ 9 as _ SCONJ IN _ 12 mark _ _ 10 annual _ ADJ JJ _ 11 amod _ _ 11 profit _ NOUN NN _ 12 nsubj _ _ 12 grew _ VERB VBD _ 3 advcl _ _ 13 fivefold _ ADJ JJ _ 12 advmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stookey _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 boom _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 `` _ PUNCT `` _ 11 punct _ _ 9 It _ PRON PRP _ 11 nsubj _ _ 10 's _ AUX VBZ _ 11 aux _ _ 11 going _ VERB VBG _ 3 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 last _ VERB VB _ 11 xcomp _ _ 14 a _ DET DT _ 16 det _ _ 15 whole _ ADJ JJ _ 16 amod _ _ 16 lot _ NOUN NN _ 17 nmod:npmod _ _ 17 longer _ ADV RBR _ 13 advmod _ _ 18 than _ SCONJ IN _ 20 mark _ _ 19 anybody _ NOUN NN _ 20 nsubj _ _ 20 thinks _ VERB VBZ _ 17 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 22 '' _ PUNCT '' _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 now _ ADV RB _ 5 advmod _ _ 3 prices _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 nose-dived _ VERB VBN _ 0 root _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Quantum _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 profit _ NOUN NN _ 11 nsubj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 plummeting _ VERB VBG _ 5 conj _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 securities _ NOUN NNS _ 3 compound _ _ 3 analysts _ NOUN NNS _ 5 nsubj _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 looking _ VERB VBG _ 0 root _ _ 6 for _ ADP IN _ 11 case _ _ 7 no _ ADV RB _ 8 neg _ _ 8 better _ ADJ JJR _ 11 amod _ _ 9 than _ ADP IN _ 10 case _ _ 10 break-even _ ADJ JJ _ 8 advcl _ _ 11 results _ NOUN NNS _ 5 nmod _ _ 12 from _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 company _ NOUN NN _ 11 nmod _ _ 15 for _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 third _ ADJ JJ _ 18 amod _ _ 18 quarter _ NOUN NN _ 11 nmod _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 profit _ NOUN NN _ 11 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 99.8 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 3.92 _ NUM CD _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 23 punct _ _ 35 on _ ADP IN _ 36 case _ _ 36 sales _ NOUN NNS _ 23 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 $ _ SYM $ _ 36 nmod _ _ 39 724.4 _ NUM CD _ 40 compound _ _ 40 million _ NUM CD _ 38 nummod _ _ 41 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 stock _ NOUN NN _ 16 nsubj _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 having _ AUX VBG _ 5 aux _ _ 5 lost _ VERB VBN _ 16 advcl _ _ 6 nearly _ ADV RB _ 7 advmod _ _ 7 a _ DET DT _ 8 nummod _ _ 8 quarter _ NOUN NN _ 5 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 value _ NOUN NN _ 8 nmod _ _ 12 since _ ADP IN _ 13 case _ _ 13 Sept. _ PROPN NNP _ 5 nmod _ _ 14 1 _ NUM CD _ 13 nummod _ _ 15 , _ PUNCT , _ 16 punct _ _ 16 closed _ VERB VBD _ 0 root _ _ 17 at _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 34.375 _ NUM CD _ 16 nmod _ _ 20 share _ NOUN NN _ 19 nmod:npmod _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 down _ ADV RB _ 16 advmod _ _ 23 $ _ SYM $ _ 24 dep _ _ 24 1.125 _ NUM CD _ 22 nmod:npmod _ _ 25 , _ PUNCT , _ 16 punct _ _ 26 in _ ADP IN _ 32 case _ _ 27 New _ PROPN NNP _ 32 compound _ _ 28 York _ PROPN NNP _ 32 compound _ _ 29 Stock _ PROPN NNP _ 32 compound _ _ 30 Exchange _ PROPN NNP _ 32 compound _ _ 31 composite _ ADJ JJ _ 32 amod _ _ 32 trading _ NOUN NN _ 16 nmod _ _ 33 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 34 . _ PUNCT . _ 16 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 degree _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Quantum _ PROPN NNP _ 6 nsubj _ _ 6 represents _ VERB VBZ _ 0 root _ _ 7 the _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 times _ NOUN NNS _ 6 dobj _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 have _ AUX VBP _ 12 aux _ _ 12 arrived _ VERB VBN _ 9 acl:relcl _ _ 13 for _ ADP IN _ 14 case _ _ 14 producers _ NOUN NNS _ 9 nmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 so-called _ ADJ JJ _ 19 amod _ _ 18 commodity _ NOUN NN _ 19 compound _ _ 19 plastics _ NOUN NNS _ 14 nmod _ _ 20 that _ PRON WDT _ 21 nsubj _ _ 21 pervade _ VERB VBP _ 19 acl:relcl _ _ 22 modern _ ADJ JJ _ 23 amod _ _ 23 life _ NOUN NN _ 21 dobj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Having _ AUX VBG _ 3 aux _ _ 2 just _ ADV RB _ 3 advmod _ _ 3 passed _ VERB VBN _ 18 advcl _ _ 4 through _ ADP IN _ 5 case _ _ 5 one _ NUM CD _ 3 nmod _ _ 6 of _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 most _ ADV RBS _ 9 advmod _ _ 9 profitable _ ADJ JJ _ 10 amod _ _ 10 periods _ NOUN NNS _ 5 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 their _ PRON PRP$ _ 13 nmod:poss _ _ 13 history _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 these _ DET DT _ 16 det _ _ 16 producers _ NOUN NNS _ 18 nsubj _ _ 17 now _ ADV RB _ 18 advmod _ _ 18 see _ VERB VBP _ 0 root _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 prices _ NOUN NNS _ 21 nsubj _ _ 21 eroding _ VERB VBG _ 18 dep _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 Pricing _ NOUN NN _ 2 compound _ _ 2 cycles _ NOUN NNS _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ VERB VB _ 6 cop _ _ 6 sure _ ADJ JJ _ 9 dep _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 are _ VERB VBP _ 9 cop _ _ 9 nothing _ NOUN NN _ 0 root _ _ 10 new _ ADJ JJ _ 9 amod _ _ 11 for _ ADP IN _ 13 case _ _ 12 plastics _ NOUN NNS _ 13 compound _ _ 13 producers _ NOUN NNS _ 9 nmod _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 7 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 decline _ NOUN NN _ 7 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 some _ DET DT _ 4 nmod _ _ 7 looks _ VERB VBZ _ 0 root _ _ 8 steep _ ADJ JJ _ 7 xcomp _ _ 9 only _ ADV RB _ 11 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 comparison _ NOUN NN _ 7 nmod _ _ 12 with _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 heady _ ADJ JJ _ 15 amod _ _ 15 period _ NOUN NN _ 11 nmod _ _ 16 that _ PRON WDT _ 20 nsubj _ _ 17 is _ VERB VBZ _ 20 cop _ _ 18 just _ ADV RB _ 20 advmod _ _ 19 behind _ ADP IN _ 20 case _ _ 20 them _ PRON PRP _ 15 acl:relcl _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 were _ VERB VBD _ 6 cop _ _ 4 all _ DET DT _ 6 dep _ _ 5 wonderful _ ADJ JJ _ 6 amod _ _ 6 heroes _ NOUN NNS _ 11 ccomp _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 an _ DET DT _ 13 det _ _ 13 executive _ NOUN NN _ 11 nsubj _ _ 14 at _ ADP IN _ 15 case _ _ 15 one _ NUM CD _ 13 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 Quantum _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 competitors _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 Now _ ADV RB _ 7 advmod _ _ 3 we _ PRON PRP _ 7 nsubj _ _ 4 're _ VERB VBP _ 7 cop _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 bottom _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 heap _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 12 '' _ PUNCT '' _ 7 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Quantum _ PROPN NNP _ 14 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 based _ VERB VBN _ 2 acl:relcl _ _ 7 in _ ADP IN _ 9 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 York _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 trouble _ NOUN NN _ 14 nsubjpass _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 magnified _ VERB VBN _ 0 root _ _ 15 by _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 17 det _ _ 17 company _ NOUN NN _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 heavy _ ADJ JJ _ 20 amod _ _ 20 dependence _ NOUN NN _ 14 nmod _ _ 21 on _ ADP IN _ 22 case _ _ 22 plastics _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 Once _ ADV RB _ 2 advmod _ _ 2 known _ VERB VBN _ 12 advcl _ _ 3 as _ ADP IN _ 5 case _ _ 4 National _ PROPN NNP _ 5 compound _ _ 5 Distillers _ PROPN NNP _ 2 nmod _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Chemical _ PROPN NNP _ 8 compound _ _ 8 Corp. _ PROPN NNP _ 5 conj _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 12 nsubj _ _ 12 exited _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 17 det _ _ 14 wine _ NOUN NN _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 spirits _ NOUN NNS _ 14 conj _ _ 17 business _ NOUN NN _ 12 dobj _ _ 18 and _ CONJ CC _ 12 cc _ _ 19 plowed _ VERB VBD _ 12 conj _ _ 20 more _ ADJ JJR _ 19 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 resources _ NOUN NNS _ 20 nmod _ _ 24 into _ ADP IN _ 25 case _ _ 25 plastics _ NOUN NNS _ 19 nmod _ _ 26 after _ SCONJ IN _ 29 mark _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Stookey _ PROPN NNP _ 29 nsubj _ _ 29 took _ VERB VBD _ 12 advcl _ _ 30 the _ DET DT _ 32 det _ _ 31 chief _ ADJ JJ _ 32 amod _ _ 32 executive _ NOUN NN _ 34 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 job _ NOUN NN _ 29 dobj _ _ 35 in _ ADP IN _ 36 case _ _ 36 1986 _ NUM CD _ 29 nmod _ _ 37 . _ PUNCT . _ 12 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Stookey _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 59 _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 old _ ADJ JJ _ 2 amod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 declined _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 11 mark _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 interviewed _ VERB VBN _ 8 xcomp _ _ 12 for _ ADP IN _ 14 case _ _ 13 this _ DET DT _ 14 det _ _ 14 article _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 but _ CONJ CC _ 8 cc _ _ 17 he _ PRON PRP _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 consistently _ ADV RB _ 20 advmod _ _ 20 argued _ VERB VBN _ 8 conj _ _ 21 that _ SCONJ IN _ 41 mark _ _ 22 over _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 long _ ADJ JJ _ 25 amod _ _ 25 haul _ NOUN NN _ 41 nmod _ _ 26 -- _ PUNCT : _ 30 punct _ _ 27 across _ ADP IN _ 30 case _ _ 28 both _ DET DT _ 30 cc:preconj _ _ 29 the _ DET DT _ 30 det _ _ 30 peaks _ NOUN NNS _ 41 dep _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 the _ DET DT _ 33 det _ _ 33 troughs _ NOUN NNS _ 30 conj _ _ 34 of _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 plastics _ NOUN NNS _ 37 compound _ _ 37 market _ NOUN NN _ 30 nmod _ _ 38 -- _ PUNCT : _ 30 punct _ _ 39 Quantum _ PROPN NNP _ 41 nsubj _ _ 40 will _ AUX MD _ 41 aux _ _ 41 prosper _ VERB VB _ 20 ccomp _ _ 42 through _ ADP IN _ 45 case _ _ 43 its _ PRON PRP$ _ 45 nmod:poss _ _ 44 new _ ADJ JJ _ 45 amod _ _ 45 direction _ NOUN NN _ 41 nmod _ _ 46 . _ PUNCT . _ 8 punct _ _ 1 Quantum _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 lot _ NOUN NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 mostly _ ADV RB _ 6 advmod _ _ 6 tied _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 polyethylene _ NOUN NN _ 9 compound _ _ 9 resin _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 used _ VERB VBN _ 9 acl _ _ 12 to _ PART TO _ 13 mark _ _ 13 make _ VERB VB _ 11 xcomp _ _ 14 garbage _ NOUN NN _ 15 compound _ _ 15 bags _ NOUN NNS _ 13 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 milk _ NOUN NN _ 18 compound _ _ 18 jugs _ NOUN NNS _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 housewares _ NOUN NNS _ 15 conj _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 toys _ NOUN NNS _ 15 conj _ _ 23 and _ CONJ CC _ 15 cc _ _ 24 meat _ NOUN NN _ 25 compound _ _ 25 packaging _ NOUN NN _ 15 conj _ _ 26 , _ PUNCT , _ 15 punct _ _ 27 among _ ADP IN _ 29 case _ _ 28 other _ ADJ JJ _ 29 amod _ _ 29 items _ NOUN NNS _ 15 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 U.S. _ PROPN NNP _ 5 compound _ _ 4 polyethylene _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 Quantum _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 claimed _ VERB VBN _ 0 root _ _ 10 the _ DET DT _ 12 det _ _ 11 largest _ ADJ JJS _ 12 amod _ _ 12 share _ NOUN NN _ 9 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 about _ ADV RB _ 15 advmod _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 appos _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 18 cc _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 competitors _ NOUN NNS _ 18 nsubj _ _ 4 -- _ PUNCT : _ 8 punct _ _ 5 including _ VERB VBG _ 8 case _ _ 6 Dow _ PROPN NNP _ 8 compound _ _ 7 Chemical _ PROPN NNP _ 8 compound _ _ 8 Co. _ PROPN NNP _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Union _ PROPN NNP _ 12 compound _ _ 11 Carbide _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 8 conj _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 several _ ADJ JJ _ 16 amod _ _ 15 oil _ NOUN NN _ 16 compound _ _ 16 giants _ NOUN NNS _ 8 conj _ _ 17 -- _ PUNCT : _ 8 punct _ _ 18 have _ VERB VBP _ 0 root _ _ 19 much _ ADV RB _ 20 advmod _ _ 20 broader _ ADJ JJR _ 22 amod _ _ 21 business _ NOUN NN _ 22 compound _ _ 22 interests _ NOUN NNS _ 18 dobj _ _ 23 and _ CONJ CC _ 24 cc _ _ 24 so _ ADV RB _ 18 cc _ _ 25 are _ AUX VBP _ 27 auxpass _ _ 26 better _ ADV RBR _ 27 advmod _ _ 27 cushioned _ VERB VBN _ 18 conj _ _ 28 against _ ADP IN _ 30 case _ _ 29 price _ NOUN NN _ 30 compound _ _ 30 swings _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 When _ ADV WRB _ 6 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 price _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 polyethylene _ NOUN NN _ 3 nmod _ _ 6 moves _ VERB VBZ _ 17 advcl _ _ 7 a _ DET DT _ 9 det _ _ 8 mere _ ADJ JJ _ 9 amod _ _ 9 penny _ NOUN NN _ 6 dobj _ _ 10 a _ DET DT _ 11 det _ _ 11 pound _ NOUN NN _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 Quantum _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 annual _ ADJ JJ _ 16 amod _ _ 16 profit _ NOUN NN _ 17 nsubj _ _ 17 fluctuates _ VERB VBZ _ 0 root _ _ 18 by _ ADP IN _ 21 case _ _ 19 about _ ADV RB _ 20 advmod _ _ 20 85 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 17 nmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 provided _ VERB VBN _ 30 mark _ _ 26 no _ DET DT _ 28 neg _ _ 27 other _ ADJ JJ _ 28 amod _ _ 28 variables _ NOUN NNS _ 30 nsubj _ _ 29 are _ AUX VBP _ 30 aux _ _ 30 changing _ VERB VBG _ 17 advcl _ _ 31 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 months _ NOUN NNS _ 19 nmod _ _ 4 the _ DET DT _ 5 det _ _ 5 price _ NOUN NN _ 19 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 polyethylene _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 19 punct _ _ 9 even _ ADV RB _ 10 advmod _ _ 10 more _ ADV RBR _ 19 advmod _ _ 11 than _ ADP IN _ 12 case _ _ 12 that _ PRON DT _ 10 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 other _ ADJ JJ _ 16 amod _ _ 15 commodity _ NOUN NN _ 16 compound _ _ 16 plastics _ NOUN NNS _ 12 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 has _ AUX VBZ _ 19 aux _ _ 19 taken _ VERB VBN _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 dive _ NOUN NN _ 19 dobj _ _ 22 . _ PUNCT . _ 19 punct _ _ 1 Benchmark _ ADJ JJ _ 2 amod _ _ 2 grades _ NOUN NNS _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 sold _ VERB VBD _ 2 acl:relcl _ _ 7 for _ ADP IN _ 12 case _ _ 8 as _ ADV RB _ 11 advmod _ _ 9 much _ ADJ JJ _ 11 advmod _ _ 10 as _ ADP IN _ 11 advmod _ _ 11 50 _ NUM CD _ 12 nummod _ _ 12 cents _ NOUN NNS _ 6 nmod _ _ 13 a _ DET DT _ 14 det _ _ 14 pound _ NOUN NN _ 12 nmod:npmod _ _ 15 last _ ADJ JJ _ 16 amod _ _ 16 spring _ NOUN NN _ 6 nmod:tmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 skidded _ VERB VBN _ 0 root _ _ 20 to _ ADP TO _ 23 case _ _ 21 between _ ADP IN _ 23 amod _ _ 22 35 _ NUM CD _ 23 nummod _ _ 23 cents _ NOUN NNS _ 19 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 40 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 23 conj _ _ 27 . _ PUNCT . _ 19 punct _ _ 1 Meanwhile _ ADV RB _ 17 advmod _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 price _ NOUN NN _ 17 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 ethylene _ NOUN NN _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 the _ DET DT _ 11 det _ _ 9 chemical _ ADJ JJ _ 11 amod _ _ 10 building _ NOUN NN _ 11 compound _ _ 11 block _ NOUN NN _ 6 appos _ _ 12 of _ ADP IN _ 13 case _ _ 13 polyethylene _ NOUN NN _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 has _ AUX VBZ _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 dropped _ VERB VBN _ 0 root _ _ 18 nearly _ ADV RB _ 20 advmod _ _ 19 so _ ADV RB _ 20 advmod _ _ 20 fast _ ADV RB _ 17 advmod _ _ 21 . _ PUNCT . _ 17 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 discrepancy _ NOUN NN _ 3 nsubj _ _ 3 hurts _ VERB VBZ _ 0 root _ _ 4 Quantum _ PROPN NNP _ 3 dobj _ _ 5 badly _ ADV RB _ 3 advmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 because _ SCONJ IN _ 11 mark _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 own _ ADJ JJ _ 10 amod _ _ 10 plants _ NOUN NNS _ 11 nsubj _ _ 11 cover _ VERB VBP _ 3 advcl _ _ 12 only _ ADV RB _ 14 advmod _ _ 13 about _ ADV RB _ 14 advmod _ _ 14 half _ NOUN NN _ 11 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 ethylene _ NOUN NN _ 18 compound _ _ 18 needs _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 accounts _ NOUN NNS _ 15 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 an _ DET DT _ 7 det _ _ 6 early _ ADJ JJ _ 7 amod _ _ 7 hint _ NOUN NN _ 15 nsubj _ _ 8 of _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 price _ NOUN NN _ 11 compound _ _ 11 rout _ NOUN NN _ 7 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 making _ NOUN NN _ 11 nmod _ _ 15 came _ VERB VBD _ 0 root _ _ 16 at _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 start _ NOUN NN _ 15 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 this _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 15 punct _ _ 1 China _ PROPN NNP _ 14 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 aux _ _ 6 putting _ VERB VBG _ 1 acl:relcl _ _ 7 in _ ADP RP _ 6 compound:prt _ _ 8 huge _ ADJ JJ _ 9 amod _ _ 9 orders _ NOUN NNS _ 6 dobj _ _ 10 for _ ADP IN _ 11 case _ _ 11 polyethylene _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 1 punct _ _ 13 abruptly _ ADV RB _ 14 advmod _ _ 14 halted _ VERB VBD _ 0 root _ _ 15 them _ PRON PRP _ 14 dobj _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 Calculating _ VERB VBG _ 16 advcl _ _ 2 that _ DET DT _ 8 mark _ _ 3 excess _ ADJ JJ _ 4 amod _ _ 4 polyethylene _ NOUN NN _ 8 nsubj _ _ 5 would _ AUX MD _ 8 aux _ _ 6 soon _ ADV RB _ 8 advmod _ _ 7 be _ AUX VB _ 8 aux _ _ 8 sloshing _ VERB VBG _ 1 ccomp _ _ 9 around _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 world _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 other _ ADJ JJ _ 14 amod _ _ 14 buyers _ NOUN NNS _ 16 nsubj _ _ 15 then _ ADV RB _ 16 advmod _ _ 16 bet _ VERB VBD _ 0 root _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 prices _ NOUN NNS _ 20 nsubj _ _ 19 had _ AUX VBD _ 20 aux _ _ 20 peaked _ ADJ JJ _ 16 ccomp _ _ 21 and _ CONJ CC _ 22 cc _ _ 22 so _ ADV RB _ 16 cc _ _ 23 began _ VERB VBD _ 16 conj _ _ 24 to _ PART TO _ 25 mark _ _ 25 draw _ VERB VB _ 23 xcomp _ _ 26 down _ ADP RP _ 25 compound:prt _ _ 27 inventories _ NOUN NNS _ 25 dobj _ _ 28 rather _ ADV RB _ 25 cc _ _ 29 than _ ADP IN _ 28 mwe _ _ 30 order _ VERB VB _ 25 conj _ _ 31 new _ ADJ JJ _ 32 amod _ _ 32 product _ NOUN NN _ 30 dobj _ _ 33 . _ PUNCT . _ 16 punct _ _ 1 Kenneth _ PROPN NNP _ 2 compound _ _ 2 Mitchell _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 director _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 9 case _ _ 6 Dow _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 polyethylene _ NOUN NN _ 9 compound _ _ 9 business _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 producers _ NOUN NNS _ 14 nsubjpass _ _ 13 were _ AUX VBD _ 14 auxpass _ _ 14 surprised _ VERB VBN _ 11 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 learn _ VERB VB _ 14 xcomp _ _ 17 how _ ADV WRB _ 18 advmod _ _ 18 much _ ADV RB _ 21 advmod _ _ 19 inventories _ NOUN NNS _ 21 nsubj _ _ 20 had _ AUX VBD _ 21 aux _ _ 21 swelled _ VERB VBN _ 16 ccomp _ _ 22 throughout _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 distribution _ NOUN NN _ 25 compound _ _ 25 chain _ NOUN NN _ 21 nmod _ _ 26 as _ SCONJ IN _ 28 mark _ _ 27 prices _ NOUN NNS _ 28 nsubj _ _ 28 spiraled _ VERB VBD _ 21 advcl _ _ 29 up _ ADV RB _ 28 advmod _ _ 30 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 People _ NOUN NNS _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 hoarding _ VERB VBG _ 10 ccomp _ _ 6 bags _ NOUN NNS _ 5 dobj _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 '' _ PUNCT '' _ 10 punct _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 Now _ ADV RB _ 3 advmod _ _ 2 producers _ NOUN NNS _ 3 nsubj _ _ 3 hope _ VERB VBP _ 0 root _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 hit _ VERB VBN _ 3 ccomp _ _ 7 bottom _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 They _ PRON PRP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 announced _ VERB VBD _ 0 root _ _ 4 increases _ NOUN NNS _ 3 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 few _ ADJ JJ _ 8 amod _ _ 8 cents _ NOUN NNS _ 4 nmod _ _ 9 a _ DET DT _ 10 det _ _ 10 pound _ NOUN NN _ 8 nmod:npmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 take _ VERB VB _ 4 acl _ _ 13 effect _ NOUN NN _ 12 dobj _ _ 14 in _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 next _ ADJ JJ _ 18 amod _ _ 17 several _ ADJ JJ _ 18 amod _ _ 18 weeks _ NOUN NNS _ 12 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 one _ NOUN NN _ 3 nsubj _ _ 3 knows _ VERB VBZ _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 however _ ADV RB _ 3 advmod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 whether _ SCONJ IN _ 13 mark _ _ 8 the _ DET DT _ 11 det _ _ 9 new _ ADJ JJ _ 11 amod _ _ 10 posted _ ADJ JJ _ 11 amod _ _ 11 prices _ NOUN NNS _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 stick _ VERB VB _ 3 ccomp _ _ 14 once _ SCONJ IN _ 18 mark _ _ 15 producers _ NOUN NNS _ 18 nsubj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 customers _ NOUN NNS _ 15 conj _ _ 18 start _ VERB VBP _ 13 advcl _ _ 19 to _ PART TO _ 20 mark _ _ 20 haggle _ VERB VB _ 18 xcomp _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 doubter _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 George _ PROPN NNP _ 5 compound _ _ 5 Krug _ PROPN NNP _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 9 det _ _ 8 chemical-industry _ NOUN NN _ 9 compound _ _ 9 analyst _ NOUN NN _ 5 appos _ _ 10 at _ ADP IN _ 11 case _ _ 11 Oppenheimer _ PROPN NNP _ 9 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Co. _ PROPN NNP _ 11 conj _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 a _ DET DT _ 16 det _ _ 16 bear _ NOUN NN _ 9 conj _ _ 17 on _ ADP IN _ 19 case _ _ 18 plastics _ NOUN NNS _ 19 compound _ _ 19 stocks _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Noting _ VERB VBG _ 14 advcl _ _ 2 others _ NOUN NNS _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 estimates _ NOUN NNS _ 1 dobj _ _ 5 of _ SCONJ IN _ 11 mark _ _ 6 when _ ADV WRB _ 11 advmod _ _ 7 price _ NOUN NN _ 8 compound _ _ 8 increases _ NOUN NNS _ 11 nsubjpass _ _ 9 can _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 sustained _ VERB VBN _ 4 acl _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 remarks _ VERB VBZ _ 0 root _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 `` _ PUNCT `` _ 18 punct _ _ 17 Some _ DET DT _ 18 nsubj _ _ 18 say _ VERB VBP _ 14 ccomp _ _ 19 October _ PROPN NNP _ 18 nmod:tmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 November _ PROPN NNP _ 2 nmod:tmod _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 1992 _ NUM CD _ 2 dobj _ _ 4 . _ PUNCT . _ 2 punct _ _ 5 '' _ PUNCT '' _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 argues _ VERB VBZ _ 0 root _ _ 3 that _ SCONJ IN _ 11 mark _ _ 4 efforts _ NOUN NNS _ 11 nsubjpass _ _ 5 to _ PART TO _ 6 mark _ _ 6 firm _ VERB VB _ 4 acl _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 prices _ NOUN NNS _ 6 dobj _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 undermined _ VERB VBN _ 2 ccomp _ _ 12 by _ ADP IN _ 15 case _ _ 13 producers _ NOUN NNS _ 15 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 plans _ NOUN NNS _ 11 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 expand _ VERB VB _ 15 acl _ _ 18 production _ NOUN NN _ 19 compound _ _ 19 capacity _ NOUN NN _ 17 dobj _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 quick _ ADJ JJ _ 3 amod _ _ 3 turnaround _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 crucial _ ADJ JJ _ 0 root _ _ 6 to _ ADP TO _ 7 case _ _ 7 Quantum _ PROPN NNP _ 5 nmod _ _ 8 because _ SCONJ IN _ 12 mark _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 cash _ NOUN NN _ 11 compound _ _ 11 requirements _ NOUN NNS _ 12 nsubj _ _ 12 remain _ VERB VBP _ 5 advcl _ _ 13 heavy _ ADJ JJ _ 12 xcomp _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 trying _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 carry _ VERB VB _ 4 xcomp _ _ 7 out _ ADP RP _ 6 compound:prt _ _ 8 a _ DET DT _ 15 det _ _ 9 three-year _ ADJ JJ _ 15 amod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 $ _ SYM $ _ 15 amod _ _ 12 1.3 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 plant-expansion _ ADJ JJ _ 15 amod _ _ 15 program _ NOUN NN _ 6 dobj _ _ 16 started _ VERB VBD _ 15 acl _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 16 nmod:tmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 15 nmod _ _ 5 , _ PUNCT , _ 15 punct _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 annual _ ADJ JJ _ 8 amod _ _ 8 payments _ NOUN NNS _ 15 nsubj _ _ 9 on _ ADP IN _ 11 case _ _ 10 long-term _ ADJ JJ _ 11 amod _ _ 11 debt _ NOUN NN _ 8 nmod _ _ 12 will _ AUX MD _ 15 aux _ _ 13 more _ ADV RBR _ 15 advmod _ _ 14 than _ ADP IN _ 13 case _ _ 15 double _ VERB VB _ 0 root _ _ 16 from _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 19 nmod:npmod _ _ 19 ago _ ADV RB _ 15 advcl _ _ 20 to _ ADP TO _ 24 case _ _ 21 about _ ADV RB _ 24 advmod _ _ 22 $ _ SYM $ _ 24 dep _ _ 23 240 _ NUM CD _ 24 nummod _ _ 24 million _ NUM CD _ 15 nmod _ _ 25 , _ PUNCT , _ 15 punct _ _ 26 largely _ ADV RB _ 29 advmod _ _ 27 because _ ADP IN _ 29 case _ _ 28 of _ ADP IN _ 27 mwe _ _ 29 debt _ NOUN NN _ 15 nmod _ _ 30 taken _ VERB VBN _ 29 acl _ _ 31 on _ ADP RP _ 30 compound:prt _ _ 32 to _ PART TO _ 33 mark _ _ 33 pay _ VERB VB _ 30 xcomp _ _ 34 a _ DET DT _ 38 det _ _ 35 $ _ SYM $ _ 38 amod _ _ 36 50-a-share _ ADJ JJ _ 35 dep _ _ 37 special _ ADJ JJ _ 38 amod _ _ 38 dividend _ NOUN NN _ 33 dobj _ _ 39 earlier _ ADV RBR _ 41 advmod _ _ 40 this _ DET DT _ 41 det _ _ 41 year _ NOUN NN _ 33 nmod:tmod _ _ 42 . _ PUNCT . _ 15 punct _ _ 1 Quantum _ PROPN NNP _ 2 nsubj _ _ 2 described _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 payout _ NOUN NN _ 2 dobj _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 time _ NOUN NN _ 2 nmod _ _ 8 as _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 way _ NOUN NN _ 2 nmod _ _ 11 for _ SCONJ IN _ 14 mark _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 to _ PART TO _ 14 mark _ _ 14 share _ VERB VB _ 10 acl _ _ 15 the _ DET DT _ 16 det _ _ 16 bonanza _ NOUN NN _ 14 dobj _ _ 17 with _ ADP IN _ 19 case _ _ 18 its _ PRON PRP$ _ 19 nmod:poss _ _ 19 holders _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 because _ SCONJ IN _ 27 mark _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 stock _ NOUN NN _ 24 compound _ _ 24 price _ NOUN NN _ 27 nsubj _ _ 25 was _ AUX VBD _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 reflecting _ VERB VBG _ 14 advcl _ _ 28 the _ DET DT _ 31 det _ _ 29 huge _ ADJ JJ _ 31 amod _ _ 30 profit _ NOUN NN _ 31 compound _ _ 31 increases _ NOUN NNS _ 27 dobj _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 saw _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 payment _ NOUN NN _ 3 dobj _ _ 6 as _ ADP IN _ 8 case _ _ 7 an _ DET DT _ 8 det _ _ 8 effort _ NOUN NN _ 3 nmod _ _ 9 also _ ADV RB _ 11 advmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 dispel _ VERB VB _ 8 acl _ _ 12 takeover _ NOUN NN _ 13 compound _ _ 13 speculation _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Whether _ SCONJ IN _ 7 mark _ _ 2 a _ DET DT _ 4 det _ _ 3 cash _ NOUN NN _ 4 compound _ _ 4 crunch _ NOUN NN _ 7 nsubj _ _ 5 might _ AUX MD _ 7 aux _ _ 6 eventually _ ADV RB _ 7 advmod _ _ 7 force _ VERB VB _ 30 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 cut _ VERB VB _ 7 xcomp _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 quarterly _ ADJ JJ _ 14 amod _ _ 14 dividend _ NOUN NN _ 11 dobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 raised _ VERB VBD _ 14 acl _ _ 17 36 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 to _ ADP TO _ 21 case _ _ 20 75 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 16 nmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 only _ ADV RB _ 25 advmod _ _ 25 a _ DET DT _ 26 nummod _ _ 26 year _ NOUN NN _ 27 nmod:npmod _ _ 27 ago _ ADV RB _ 16 advmod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 has _ AUX VBZ _ 30 aux _ _ 30 become _ VERB VBN _ 0 root _ _ 31 a _ DET DT _ 32 det _ _ 32 topic _ NOUN NN _ 30 xcomp _ _ 33 of _ ADP IN _ 35 case _ _ 34 intense _ ADJ JJ _ 35 amod _ _ 35 speculation _ NOUN NN _ 32 nmod _ _ 36 on _ ADP IN _ 38 case _ _ 37 Wall _ PROPN NNP _ 38 compound _ _ 38 Street _ PROPN NNP _ 30 nmod _ _ 39 since _ SCONJ IN _ 42 mark _ _ 40 Mr. _ PROPN NNP _ 41 compound _ _ 41 Stookey _ PROPN NNP _ 42 nsubj _ _ 42 deflected _ VERB VBD _ 30 advcl _ _ 43 dividend _ NOUN NN _ 44 compound _ _ 44 questions _ NOUN NNS _ 42 dobj _ _ 45 in _ ADP IN _ 49 case _ _ 46 a _ DET DT _ 49 det _ _ 47 Sept. _ PROPN NNP _ 49 compound _ _ 48 29 _ NUM CD _ 49 nummod _ _ 49 meeting _ NOUN NN _ 42 nmod _ _ 50 with _ ADP IN _ 51 case _ _ 51 analysts _ NOUN NNS _ 49 nmod _ _ 52 . _ PUNCT . _ 30 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 viewed _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 response _ NOUN NN _ 2 dobj _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 company _ NOUN NN _ 8 compound _ _ 8 directors _ NOUN NNS _ 9 nsubj _ _ 9 review _ VERB VB _ 4 dep _ _ 10 the _ DET DT _ 11 det _ _ 11 dividend _ NOUN NN _ 9 dobj _ _ 12 regularly _ ADV RB _ 9 advmod _ _ 13 -- _ PUNCT : _ 4 punct _ _ 14 as _ ADP IN _ 15 case _ _ 15 nothing _ NOUN NN _ 2 nmod _ _ 16 more _ ADJ JJR _ 15 amod _ _ 17 than _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 standard _ ADJ JJ _ 20 amod _ _ 20 line _ NOUN NN _ 16 nmod _ _ 21 from _ ADP IN _ 22 case _ _ 22 executives _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 others _ NOUN NNS _ 3 nsubj _ _ 3 came _ VERB VBD _ 0 root _ _ 4 away _ ADV RB _ 3 advmod _ _ 5 thinking _ VERB VBG _ 3 xcomp _ _ 6 he _ PRON PRP _ 8 nsubj _ _ 7 had _ AUX VBD _ 8 aux _ _ 8 given _ VERB VBN _ 5 ccomp _ _ 9 something _ NOUN NN _ 8 dobj _ _ 10 less _ ADJ JJR _ 9 amod _ _ 11 than _ ADP IN _ 15 case _ _ 12 his _ PRON PRP$ _ 15 nmod:poss _ _ 13 usual _ ADJ JJ _ 15 amod _ _ 14 straight-from-the-shoulder _ ADJ JJ _ 15 amod _ _ 15 performance _ NOUN NN _ 10 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 15 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 day _ NOUN NN _ 15 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 meeting _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 Quantum _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 shares _ NOUN NNS _ 15 nsubj _ _ 15 slid _ VERB VBD _ 0 root _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 2.625 _ NUM CD _ 15 dobj _ _ 18 to _ ADP TO _ 20 case _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 36.625 _ NUM CD _ 15 nmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 Big _ PROPN NNP _ 24 compound _ _ 23 Board _ PROPN NNP _ 24 compound _ _ 24 trading _ NOUN NN _ 15 nmod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 top _ NOUN NN _ 8 nmod _ _ 3 of _ ADP IN _ 4 case _ _ 4 everything _ NOUN NN _ 2 nmod _ _ 5 else _ ADV RB _ 4 amod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Quantum _ PROPN NNP _ 8 nsubj _ _ 8 confronts _ VERB VBZ _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 disaster _ NOUN NN _ 8 dobj _ _ 11 at _ ADP IN _ 13 case _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 plant _ NOUN NN _ 10 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 Morris _ PROPN NNP _ 13 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Ill _ PROPN NNP _ 15 appos _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 After _ SCONJ IN _ 4 mark _ _ 2 an _ DET DT _ 3 det _ _ 3 explosion _ NOUN NN _ 4 nsubj _ _ 4 idled _ VERB VBD _ 12 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 plant _ NOUN NN _ 4 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 June _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 12 nsubj _ _ 12 progressed _ VERB VBD _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 September _ PROPN NNP _ 12 nmod _ _ 15 to _ ADP TO _ 18 case _ _ 16 within _ ADP IN _ 17 advmod _ _ 17 12 _ NUM CD _ 18 nummod _ _ 18 hours _ NOUN NNS _ 12 advcl _ _ 19 of _ SCONJ IN _ 20 mark _ _ 20 completing _ VERB VBG _ 18 nmod _ _ 21 the _ DET DT _ 23 det _ _ 22 drawn-out _ ADJ JJ _ 23 amod _ _ 23 process _ NOUN NN _ 20 dobj _ _ 24 of _ SCONJ IN _ 25 mark _ _ 25 restarting _ VERB VBG _ 23 acl _ _ 26 it _ PRON PRP _ 25 dobj _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 Then _ ADV RB _ 5 advmod _ _ 2 a _ DET DT _ 4 det _ _ 3 second _ ADJ JJ _ 4 amod _ _ 4 explosion _ NOUN NN _ 5 nsubj _ _ 5 occurred _ VERB VBD _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 workers _ NOUN NNS _ 3 nsubj _ _ 3 died _ VERB VBD _ 0 root _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 six _ NUM CD _ 6 nsubj _ _ 6 remain _ VERB VBP _ 3 conj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 hospital _ NOUN NN _ 6 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 human _ ADJ JJ _ 3 amod _ _ 3 toll _ NOUN NN _ 4 nsubj _ _ 4 adds _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 8 det _ _ 6 most _ ADV RBS _ 7 advmod _ _ 7 painful _ ADJ JJ _ 8 amod _ _ 8 dimension _ NOUN NN _ 4 dobj _ _ 9 yet _ ADV RB _ 8 advmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 sudden _ ADJ JJ _ 13 amod _ _ 13 change _ NOUN NN _ 4 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 Quantum _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 fortunes _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Until _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 year _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 10 nsubj _ _ 7 had _ AUX VBD _ 10 aux _ _ 8 been _ AUX VBN _ 10 aux _ _ 9 steadily _ ADV RB _ 10 advmod _ _ 10 lowering _ VERB VBG _ 0 root _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 accident _ NOUN NN _ 13 compound _ _ 13 rate _ NOUN NN _ 10 dobj _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 picking _ VERB VBG _ 10 conj _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 trade-group _ NOUN NN _ 19 compound _ _ 18 safety _ NOUN NN _ 19 compound _ _ 19 awards _ NOUN NNS _ 15 dobj _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 prolonged _ ADJ JJ _ 4 amod _ _ 3 production _ NOUN NN _ 4 compound _ _ 4 halt _ NOUN NN _ 9 nsubj _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 plant _ NOUN NN _ 4 nmod _ _ 8 could _ AUX MD _ 9 aux _ _ 9 introduce _ VERB VB _ 0 root _ _ 10 another _ DET DT _ 11 det _ _ 11 imponderable _ NOUN NN _ 9 dobj _ _ 12 into _ ADP IN _ 16 case _ _ 13 Quantum _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 financial _ ADJ JJ _ 16 amod _ _ 16 future _ NOUN NN _ 9 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 When _ ADV WRB _ 7 advmod _ _ 2 a _ DET DT _ 3 det _ _ 3 plant _ NOUN NN _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 just _ ADV RB _ 7 advmod _ _ 6 been _ AUX VBN _ 7 aux _ _ 7 running _ VERB VBG _ 24 advcl _ _ 8 flat _ ADV RB _ 9 advmod _ _ 9 out _ ADV RB _ 7 advmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 meet _ VERB VB _ 7 xcomp _ _ 12 demand _ NOUN NN _ 11 dobj _ _ 13 , _ PUNCT , _ 24 punct _ _ 14 calculating _ VERB VBG _ 24 csubj _ _ 15 lost _ ADJ JJ _ 16 amod _ _ 16 profit _ NOUN NN _ 14 dobj _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 thus _ ADV RB _ 16 advmod _ _ 19 claims _ NOUN NNS _ 16 dep _ _ 20 under _ ADP IN _ 22 case _ _ 21 business-interruption _ ADJ JJ _ 22 amod _ _ 22 insurance _ NOUN NN _ 19 nmod _ _ 23 is _ VERB VBZ _ 24 cop _ _ 24 straightforward _ ADJ JJ _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 numbers _ NOUN NNS _ 4 nsubj _ _ 4 become _ VERB VBP _ 0 root _ _ 5 trickier _ ADJ JJR _ 4 xcomp _ _ 6 -- _ PUNCT : _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 subject _ ADJ JJ _ 5 conj _ _ 9 to _ ADP TO _ 10 case _ _ 10 dickering _ NOUN NN _ 8 nmod _ _ 11 between _ ADP IN _ 12 case _ _ 12 insured _ NOUN NN _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 insurer _ NOUN NN _ 12 conj _ _ 15 -- _ PUNCT : _ 5 punct _ _ 16 when _ ADV WRB _ 19 advmod _ _ 17 demand _ NOUN NN _ 19 nsubj _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 shifting _ VERB VBG _ 4 advcl _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 You _ PRON PRP _ 3 nsubj _ _ 3 say _ VERB VBP _ 20 ccomp _ _ 4 you _ PRON PRP _ 7 nsubj _ _ 5 could _ AUX MD _ 7 aux _ _ 6 have _ AUX VB _ 7 aux _ _ 7 sold _ VERB VBN _ 3 ccomp _ _ 8 X _ NOUN NN _ 9 compound _ _ 9 percent _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 product _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 Y _ NOUN NN _ 15 compound _ _ 15 percent _ NOUN NN _ 9 conj _ _ 16 of _ ADP IN _ 17 case _ _ 17 that _ PRON DT _ 15 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 recalls _ VERB VBZ _ 0 root _ _ 21 Theodore _ PROPN NNP _ 22 compound _ _ 22 Semegran _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 an _ DET DT _ 25 det _ _ 25 analyst _ NOUN NN _ 22 appos _ _ 26 at _ ADP IN _ 29 case _ _ 27 Shearson _ PROPN NNP _ 29 compound _ _ 28 Lehman _ PROPN NNP _ 29 compound _ _ 29 Hutton _ PROPN NNP _ 25 nmod _ _ 30 who _ PRON WP _ 31 nsubj _ _ 31 went _ VERB VBD _ 25 acl:relcl _ _ 32 through _ ADP IN _ 34 case _ _ 33 this _ DET DT _ 34 det _ _ 34 exercise _ NOUN NN _ 31 nmod _ _ 35 during _ ADP IN _ 38 case _ _ 36 his _ PRON PRP$ _ 38 nmod:poss _ _ 37 former _ ADJ JJ _ 38 amod _ _ 38 career _ NOUN NN _ 31 nmod _ _ 39 as _ ADP IN _ 42 case _ _ 40 a _ DET DT _ 42 det _ _ 41 chemical _ ADJ JJ _ 42 amod _ _ 42 engineer _ NOUN NN _ 38 nmod _ _ 43 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 And _ CONJ CC _ 6 cc _ _ 3 then _ ADV RB _ 6 advmod _ _ 4 you _ PRON PRP _ 6 nsubj _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 have _ VERB VB _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 negotiate _ VERB VB _ 6 xcomp _ _ 9 . _ PUNCT . _ 6 punct _ _ 10 '' _ PUNCT '' _ 6 punct _ _ 1 Quantum _ PROPN NNP _ 2 nsubj _ _ 2 hopes _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Morris _ PROPN NNP _ 5 compound _ _ 5 plant _ NOUN NN _ 17 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 where _ ADV WRB _ 10 advmod _ _ 8 limited _ VERB VBN _ 9 amod _ _ 9 production _ NOUN NN _ 10 nsubj _ _ 10 got _ VERB VBD _ 5 acl:relcl _ _ 11 under _ ADP IN _ 12 case _ _ 12 way _ NOUN NN _ 10 nmod _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 week _ NOUN NN _ 10 nmod:tmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 will _ AUX MD _ 17 aux _ _ 17 resume _ VERB VB _ 2 ccomp _ _ 18 full _ ADJ JJ _ 19 amod _ _ 19 operation _ NOUN NN _ 17 dobj _ _ 20 by _ ADP IN _ 23 case _ _ 21 year _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 end _ NOUN NN _ 17 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plant _ NOUN NN _ 4 nsubj _ _ 3 usually _ ADV RB _ 4 advmod _ _ 4 accounts _ VERB VBZ _ 0 root _ _ 5 for _ ADP IN _ 10 case _ _ 6 20 _ NUM CD _ 10 compound _ _ 7 % _ SYM NN _ 10 dep _ _ 8 to _ ADP TO _ 10 dep _ _ 9 25 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 4 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 Quantum _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 polyethylene _ NOUN NN _ 15 compound _ _ 15 production _ NOUN NN _ 10 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 50 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 10 conj _ _ 19 of _ ADP IN _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 ethylene _ NOUN NN _ 22 compound _ _ 22 production _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 everything _ NOUN NN _ 3 nsubj _ _ 3 looks _ VERB VBZ _ 0 root _ _ 4 grim _ ADJ JJ _ 3 xcomp _ _ 5 for _ ADP IN _ 6 case _ _ 6 Quantum _ PROPN NNP _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 plant _ NOUN NN _ 3 compound _ _ 3 expansion _ NOUN NN _ 5 nsubj _ _ 4 should _ AUX MD _ 5 aux _ _ 5 strengthen _ VERB VB _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 sway _ NOUN NN _ 5 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 polyethylene _ NOUN NN _ 13 compound _ _ 13 business _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 where _ ADV WRB _ 20 advmod _ _ 16 market _ NOUN NN _ 17 compound _ _ 17 share _ NOUN NN _ 20 nsubjpass _ _ 18 is _ AUX VBZ _ 20 auxpass _ _ 19 often _ ADV RB _ 20 advmod _ _ 20 taken _ VERB VBN _ 13 acl:relcl _ _ 21 through _ ADP IN _ 23 case _ _ 22 sheer _ NOUN NN _ 23 compound _ _ 23 capacity _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 By _ SCONJ IN _ 2 mark _ _ 2 lifting _ VERB VBG _ 10 advcl _ _ 3 ethylene _ NOUN NN _ 4 compound _ _ 4 production _ NOUN NN _ 2 dobj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 expansion _ NOUN NN _ 10 nsubj _ _ 8 will _ AUX MD _ 10 aux _ _ 9 also _ ADV RB _ 10 advmod _ _ 10 lower _ VERB VB _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 16 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 raw _ ADJ JJ _ 16 amod _ _ 15 material _ NOUN NN _ 16 compound _ _ 16 costs _ NOUN NNS _ 10 dobj _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 Quantum _ PROPN NNP _ 4 nsubj _ _ 2 is _ AUX VBZ _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 tightening _ VERB VBG _ 0 root _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 grip _ NOUN NN _ 4 dobj _ _ 7 on _ ADP IN _ 11 case _ _ 8 its _ PRON PRP$ _ 11 nmod:poss _ _ 9 one _ NUM CD _ 11 nummod _ _ 10 large _ ADJ JJ _ 11 amod _ _ 11 business _ NOUN NN _ 6 nmod _ _ 12 outside _ ADP IN _ 13 case _ _ 13 chemicals _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 propane _ NOUN NN _ 16 compound _ _ 16 marketing _ NOUN NN _ 11 appos _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Through _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 venture _ NOUN NN _ 14 nmod _ _ 4 with _ ADP IN _ 7 case _ _ 5 its _ PRON PRP$ _ 7 nmod:poss _ _ 6 investment _ NOUN NN _ 7 compound _ _ 7 banker _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 First _ PROPN NNP _ 11 compound _ _ 10 Boston _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 7 appos _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 Quantum _ PROPN NNP _ 14 nsubj _ _ 14 completed _ VERB VBD _ 0 root _ _ 15 in _ ADP IN _ 16 case _ _ 16 August _ PROPN NNP _ 14 nmod _ _ 17 an _ DET DT _ 18 det _ _ 18 acquisition _ NOUN NN _ 14 dobj _ _ 19 of _ ADP IN _ 21 case _ _ 20 Petrolane _ PROPN NNP _ 21 compound _ _ 21 Inc. _ PROPN NNP _ 18 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 transaction _ NOUN NN _ 14 nmod _ _ 25 valued _ VERB VBN _ 24 acl _ _ 26 at _ ADP IN _ 27 case _ _ 27 $ _ SYM $ _ 25 nmod _ _ 28 1.18 _ NUM CD _ 29 compound _ _ 29 billion _ NUM CD _ 27 nummod _ _ 30 . _ PUNCT . _ 14 punct _ _ 1 Petrolane _ PROPN NNP _ 6 nsubj _ _ 2 is _ VERB VBZ _ 6 cop _ _ 3 the _ DET DT _ 6 det _ _ 4 second-largest _ ADJ JJ _ 6 amod _ _ 5 propane _ NOUN NN _ 6 compound _ _ 6 distributor _ NOUN NN _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 largest _ ADJ JJS _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Suburban _ PROPN NNP _ 5 compound _ _ 5 Propane _ PROPN NNP _ 2 appos _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 was _ AUX VBD _ 9 auxpass _ _ 8 already _ ADV RB _ 9 advmod _ _ 9 owned _ VERB VBN _ 0 root _ _ 10 by _ ADP IN _ 11 case _ _ 11 Quantum _ PROPN NNP _ 9 nmod _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Still _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Quantum _ PROPN NNP _ 4 nsubj _ _ 4 has _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 crisis _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 acl _ _ 9 past _ ADP IN _ 8 nmod _ _ 10 right _ ADV RB _ 11 advmod _ _ 11 now _ ADV RB _ 4 advmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 speculate _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 weakening _ VERB VBG _ 6 amod _ _ 6 stock _ NOUN NN _ 9 nsubj _ _ 7 may _ AUX MD _ 9 aux _ _ 8 yet _ ADV RB _ 9 advmod _ _ 9 attract _ VERB VB _ 3 ccomp _ _ 10 a _ DET DT _ 11 det _ _ 11 suitor _ NOUN NN _ 9 dobj _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 name _ NOUN NN _ 9 nsubj _ _ 3 surfacing _ VERB VBG _ 2 acl _ _ 4 in _ ADP IN _ 5 case _ _ 5 rumors _ NOUN NNS _ 3 nmod _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 British _ PROPN NNP _ 9 compound _ _ 8 Petroleum _ PROPN NNP _ 9 compound _ _ 9 Co. _ PROPN NNP _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 13 nsubj _ _ 12 is _ AUX VBZ _ 13 aux _ _ 13 looking _ VERB VBG _ 9 acl:relcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 expand _ VERB VB _ 13 xcomp _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 polyethylene _ NOUN NN _ 18 compound _ _ 18 business _ NOUN NN _ 15 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 Asked _ VERB VBN _ 11 advcl _ _ 2 about _ ADP IN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 bid _ NOUN NN _ 1 nmod _ _ 5 for _ ADP IN _ 6 case _ _ 6 Quantum _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 a _ DET DT _ 10 det _ _ 9 BP _ PROPN NNP _ 10 compound _ _ 10 spokesman _ NOUN NN _ 11 nsubj _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 11 punct _ _ 14 We _ PRON PRP _ 17 nsubj _ _ 15 pretty _ ADV RB _ 16 advmod _ _ 16 much _ ADV RB _ 17 advmod _ _ 17 have _ VERB VBP _ 11 dep _ _ 18 a _ DET DT _ 19 det _ _ 19 policy _ NOUN NN _ 17 dobj _ _ 20 of _ SCONJ IN _ 22 mark _ _ 21 not _ ADV RB _ 22 neg _ _ 22 commenting _ VERB VBG _ 19 acl _ _ 23 on _ ADP IN _ 24 case _ _ 24 rumors _ NOUN NNS _ 22 nmod _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 and _ CONJ CC _ 17 cc _ _ 27 I _ PRON PRP _ 28 nsubj _ _ 28 think _ VERB VBP _ 17 conj _ _ 29 that _ ADP IN _ 30 nsubj _ _ 30 falls _ VERB VBZ _ 28 ccomp _ _ 31 in _ ADP IN _ 33 case _ _ 32 that _ DET DT _ 33 det _ _ 33 category _ NOUN NN _ 30 nmod _ _ 34 . _ PUNCT . _ 11 punct _ _ 1 RJR _ PROPN NNP _ 3 compound _ _ 2 Nabisco _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 disbanding _ VERB VBG _ 0 root _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 division _ NOUN NN _ 5 dobj _ _ 8 responsible _ ADJ JJ _ 7 amod _ _ 9 for _ SCONJ IN _ 10 mark _ _ 10 buying _ VERB VBG _ 8 advcl _ _ 11 network _ NOUN NN _ 13 compound _ _ 12 advertising _ NOUN NN _ 13 compound _ _ 13 time _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 just _ ADV RB _ 16 advmod _ _ 16 a _ DET DT _ 17 nummod _ _ 17 month _ NOUN NN _ 5 nmod _ _ 18 after _ SCONJ IN _ 17 mark _ _ 19 moving _ VERB VBG _ 17 dep _ _ 20 11 _ NUM CD _ 19 dobj _ _ 21 of _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 23 det _ _ 23 group _ NOUN NN _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 14 _ NUM CD _ 26 nummod _ _ 26 employees _ NOUN NNS _ 20 nmod _ _ 27 to _ ADP TO _ 29 case _ _ 28 New _ PROPN NNP _ 29 compound _ _ 29 York _ PROPN NNP _ 19 nmod _ _ 30 from _ ADP IN _ 31 case _ _ 31 Atlanta _ PROPN NNP _ 19 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 31 nsubj _ _ 3 for _ ADP IN _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 New _ PROPN NNP _ 6 amod _ _ 6 York-based _ ADJ JJ _ 7 amod _ _ 7 food _ NOUN NN _ 2 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 tobacco _ NOUN NN _ 10 compound _ _ 10 giant _ NOUN NN _ 7 conj _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 taken _ VERB VBN _ 7 acl _ _ 13 private _ ADJ JJ _ 12 xcomp _ _ 14 earlier _ ADV RBR _ 16 advmod _ _ 15 this _ DET DT _ 16 det _ _ 16 year _ NOUN NN _ 12 nmod:tmod _ _ 17 in _ ADP IN _ 23 case _ _ 18 a _ DET DT _ 23 det _ _ 19 $ _ SYM $ _ 23 dep _ _ 20 25 _ NUM CD _ 23 nummod _ _ 21 billion _ NUM CD _ 23 nummod _ _ 22 leveraged _ ADJ JJ _ 23 amod _ _ 23 buy-out _ NOUN NN _ 12 nmod _ _ 24 by _ ADP IN _ 27 case _ _ 25 Kohlberg _ PROPN NNP _ 27 compound _ _ 26 Kravis _ PROPN NNP _ 27 compound _ _ 27 Roberts _ PROPN NNP _ 12 nmod _ _ 28 & _ CONJ CC _ 27 cc _ _ 29 Co. _ PROPN NNP _ 27 conj _ _ 30 , _ PUNCT , _ 7 punct _ _ 31 confirmed _ VERB VBD _ 0 root _ _ 32 that _ SCONJ IN _ 35 mark _ _ 33 it _ PRON PRP _ 35 nsubj _ _ 34 is _ AUX VBZ _ 35 aux _ _ 35 shutting _ VERB VBG _ 31 ccomp _ _ 36 down _ ADP RP _ 35 compound:prt _ _ 37 the _ DET DT _ 41 det _ _ 38 RJR _ PROPN NNP _ 41 compound _ _ 39 Nabisco _ PROPN NNP _ 41 compound _ _ 40 Broadcast _ PROPN NNP _ 41 compound _ _ 41 unit _ NOUN NN _ 35 dobj _ _ 42 , _ PUNCT , _ 35 punct _ _ 43 and _ CONJ CC _ 35 cc _ _ 44 dismissing _ VERB VBG _ 35 conj _ _ 45 its _ PRON PRP$ _ 47 nmod:poss _ _ 46 14 _ NUM CD _ 47 nummod _ _ 47 employees _ NOUN NNS _ 44 dobj _ _ 48 , _ PUNCT , _ 35 punct _ _ 49 in _ ADP IN _ 51 case _ _ 50 a _ DET DT _ 51 det _ _ 51 move _ NOUN NN _ 35 conj _ _ 52 to _ PART TO _ 53 mark _ _ 53 save _ VERB VB _ 51 acl _ _ 54 money _ NOUN NN _ 53 dobj _ _ 55 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 RJR _ PROPN NNP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 discussing _ VERB VBG _ 3 ccomp _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 network-buying _ ADJ JJ _ 9 amod _ _ 9 plans _ NOUN NNS _ 6 dobj _ _ 10 with _ ADP IN _ 15 case _ _ 11 its _ PRON PRP$ _ 15 nmod:poss _ _ 12 two _ NUM CD _ 15 nummod _ _ 13 main _ ADJ JJ _ 15 amod _ _ 14 advertising _ NOUN NN _ 15 compound _ _ 15 firms _ NOUN NNS _ 6 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 FCB/Leber _ PROPN NNP _ 18 compound _ _ 18 Katz _ PROPN NNP _ 15 appos _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 McCann _ PROPN NNP _ 21 compound _ _ 21 Erickson _ PROPN NNP _ 18 conj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 found _ VERB VBD _ 28 ccomp _ _ 4 with _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 size _ NOUN NN _ 3 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 our _ PRON PRP$ _ 10 nmod:poss _ _ 9 media _ NOUN NNS _ 10 compound _ _ 10 purchases _ NOUN NNS _ 6 nmod _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 an _ DET DT _ 14 det _ _ 13 ad _ NOUN NN _ 14 compound _ _ 14 agency _ NOUN NN _ 16 nsubj _ _ 15 could _ AUX MD _ 16 aux _ _ 16 do _ VERB VB _ 3 ccomp _ _ 17 just _ ADV RB _ 19 advmod _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 good _ ADJ JJ _ 21 amod _ _ 20 a _ DET DT _ 21 det _ _ 21 job _ NOUN NN _ 16 dobj _ _ 22 at _ ADP IN _ 25 case _ _ 23 significantly _ ADV RB _ 24 advmod _ _ 24 lower _ ADJ JJR _ 25 amod _ _ 25 cost _ NOUN NN _ 16 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 the _ DET DT _ 30 det _ _ 30 spokesman _ NOUN NN _ 28 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 who _ PRON WP _ 33 nsubj _ _ 33 declined _ VERB VBD _ 30 acl:relcl _ _ 34 to _ PART TO _ 35 mark _ _ 35 specify _ VERB VB _ 33 xcomp _ _ 36 how _ ADV WRB _ 37 advmod _ _ 37 much _ ADJ JJ _ 39 advmod _ _ 38 RJR _ PROPN NNP _ 39 nsubj _ _ 39 spends _ VERB VBZ _ 35 ccomp _ _ 40 on _ ADP IN _ 43 case _ _ 41 network _ NOUN NN _ 43 compound _ _ 42 television _ NOUN NN _ 43 compound _ _ 43 time _ NOUN NN _ 39 nmod _ _ 44 . _ PUNCT . _ 28 punct _ _ 1 An _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 7 nsubj _ _ 3 close _ ADV RB _ 2 amod _ _ 4 to _ ADP TO _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 3 nmod _ _ 7 said _ VERB VBD _ 0 root _ _ 8 RJR _ PROPN NNP _ 10 nsubj _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 spending _ VERB VBG _ 7 ccomp _ _ 11 about _ ADV RB _ 12 advmod _ _ 12 $ _ SYM $ _ 10 dobj _ _ 13 140 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 on _ ADP IN _ 18 case _ _ 16 network _ NOUN NN _ 18 compound _ _ 17 television _ NOUN NN _ 18 compound _ _ 18 time _ NOUN NN _ 10 nmod _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 10 nmod:tmod _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 down _ ADV RB _ 10 advmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 roughly _ ADV RB _ 25 advmod _ _ 25 $ _ SYM $ _ 22 nmod _ _ 26 200 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 year _ NOUN NN _ 25 nmod:tmod _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 broadcast _ NOUN NN _ 6 compound _ _ 6 unit _ NOUN NN _ 9 nsubjpass _ _ 7 will _ AUX MD _ 9 aux _ _ 8 be _ AUX VB _ 9 auxpass _ _ 9 disbanded _ VERB VBN _ 3 dep _ _ 10 Dec. _ PROPN NNP _ 9 nmod:tmod _ _ 11 1 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 the _ DET DT _ 15 det _ _ 15 move _ NOUN NN _ 18 nsubj _ _ 16 wo _ AUX MD _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 affect _ VERB VB _ 9 conj _ _ 19 RJR _ PROPN NNP _ 27 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 print _ NOUN NN _ 23 compound _ _ 22 , _ PUNCT , _ 23 punct _ _ 23 radio _ NOUN NN _ 27 compound _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 spot-television _ ADJ JJ _ 23 conj _ _ 26 buying _ NOUN NN _ 27 compound _ _ 27 practices _ NOUN NNS _ 18 dobj _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 broadcast _ NOUN NN _ 3 compound _ _ 3 group _ NOUN NN _ 6 nsubjpass _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 auxpass _ _ 6 based _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 9 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 York _ PROPN NNP _ 6 nmod _ _ 10 until _ ADP IN _ 20 case _ _ 11 a _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 13 nmod:npmod _ _ 13 ago _ ADV RB _ 20 advmod _ _ 14 , _ PUNCT , _ 20 punct _ _ 15 when _ ADV WRB _ 20 advmod _ _ 16 RJR _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 previous _ ADJ JJ _ 19 amod _ _ 19 management _ NOUN NN _ 20 nsubj _ _ 20 moved _ VERB VBD _ 6 advcl _ _ 21 it _ PRON PRP _ 20 dobj _ _ 22 to _ ADP TO _ 23 case _ _ 23 Atlanta _ PROPN NNP _ 20 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 the _ DET DT _ 26 det _ _ 26 company _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 headquarters _ NOUN NN _ 23 appos _ _ 29 before _ ADP IN _ 31 case _ _ 30 this _ DET DT _ 31 det _ _ 31 summer _ NOUN NN _ 20 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 employee _ NOUN NN _ 6 nsubj _ _ 3 with _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 group _ NOUN NN _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 RJR _ PROPN NNP _ 8 nsubj _ _ 8 moved _ VERB VBD _ 6 ccomp _ _ 9 11 _ NUM CD _ 10 nummod _ _ 10 employees _ NOUN NNS _ 8 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 group _ NOUN NN _ 10 nmod _ _ 14 back _ ADV RB _ 8 advmod _ _ 15 to _ ADP TO _ 17 case _ _ 16 New _ PROPN NNP _ 17 compound _ _ 17 York _ PROPN NNP _ 14 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 September _ PROPN NNP _ 8 nmod _ _ 20 because _ SCONJ IN _ 24 mark _ _ 21 `` _ PUNCT `` _ 24 punct _ _ 22 there _ PRON EX _ 24 expl _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 supposed _ VERB VBN _ 8 advcl _ _ 25 to _ PART TO _ 28 mark _ _ 26 be _ VERB VB _ 28 cop _ _ 27 a _ DET DT _ 28 det _ _ 28 future _ NOUN NN _ 24 xcomp _ _ 29 . _ PUNCT . _ 6 punct _ _ 30 '' _ PUNCT '' _ 6 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 hired _ VERB VBD _ 2 ccomp _ _ 6 three _ NUM CD _ 8 nummod _ _ 7 more _ ADJ JJR _ 8 amod _ _ 8 buyers _ NOUN NNS _ 5 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 unit _ NOUN NN _ 5 nmod _ _ 12 within _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 past _ ADJ JJ _ 16 amod _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 weeks _ NOUN NNS _ 5 nmod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 wooing _ VERB VBG _ 5 advcl _ _ 19 them _ PRON PRP _ 18 dobj _ _ 20 from _ ADP IN _ 21 case _ _ 21 jobs _ NOUN NNS _ 18 nmod _ _ 22 with _ ADP IN _ 24 case _ _ 23 advertising _ NOUN NN _ 24 compound _ _ 24 agencies _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 RJR _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 moved _ VERB VBD _ 4 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 11 _ NUM CD _ 10 nummod _ _ 10 employees _ NOUN NNS _ 7 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 New _ PROPN NNP _ 13 compound _ _ 13 York _ PROPN NNP _ 7 nmod _ _ 14 last _ ADJ JJ _ 15 amod _ _ 15 month _ NOUN NN _ 7 nmod:tmod _ _ 16 because _ SCONJ IN _ 24 mark _ _ 17 the _ DET DT _ 18 det _ _ 18 group _ NOUN NN _ 24 nsubj _ _ 19 had _ AUX VBD _ 24 aux _ _ 20 then _ ADV RB _ 24 advmod _ _ 21 been _ VERB VBN _ 24 cop _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 midst _ NOUN NN _ 7 advcl _ _ 25 of _ SCONJ IN _ 26 mark _ _ 26 purchasing _ VERB VBG _ 24 acl _ _ 27 ad _ NOUN NN _ 28 compound _ _ 28 time _ NOUN NN _ 26 dobj _ _ 29 for _ ADP IN _ 34 case _ _ 30 the _ DET DT _ 31 det _ _ 31 networks _ NOUN NNS _ 34 nmod:poss _ _ 32 ' _ PART POS _ 31 case _ _ 33 upcoming _ ADJ JJ _ 34 amod _ _ 34 season _ NOUN NN _ 28 nmod _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 studies _ NOUN NNS _ 13 nsubjpass _ _ 4 -LCB- _ PUNCT -LRB- _ 6 punct _ _ 5 on _ SCONJ IN _ 6 mark _ _ 6 closing _ VERB VBG _ 3 nmod _ _ 7 the _ DET DT _ 8 det _ _ 8 unit _ NOUN NN _ 6 dobj _ _ 9 -RCB- _ PUNCT -RRB- _ 6 punct _ _ 10 could _ AUX MD _ 13 aux _ _ 11 n't _ PART RB _ 13 neg _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 completed _ VERB VBN _ 19 ccomp _ _ 14 until _ ADP IN _ 15 case _ _ 15 now _ ADV RB _ 13 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 president _ NOUN NN _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Peter _ PROPN NNP _ 7 compound _ _ 7 Chrisanthopoulos _ PROPN NNP _ 4 appos _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 was _ VERB VBD _ 13 cop _ _ 10 n't _ PART RB _ 13 neg _ _ 11 in _ ADP IN _ 13 case _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 office _ NOUN NN _ 0 root _ _ 14 Friday _ PROPN NNP _ 15 compound _ _ 15 afternoon _ NOUN NN _ 13 nmod:tmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 comment _ VERB VB _ 13 xcomp _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 finalizing _ VERB VBG _ 2 acl:relcl _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 steel-import _ ADJ JJ _ 9 amod _ _ 9 quotas _ NOUN NNS _ 6 dobj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 allocating _ VERB VBG _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 larger _ ADJ JJR _ 15 amod _ _ 15 share _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 its _ PRON PRP$ _ 19 nmod:poss _ _ 18 steel _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 15 nmod _ _ 20 to _ ADP TO _ 25 case _ _ 21 developing _ ADJ JJ _ 25 amod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 newly _ ADV RB _ 24 advmod _ _ 24 industrialized _ ADJ JJ _ 21 conj _ _ 25 countries _ NOUN NNS _ 12 nmod _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 have _ VERB VBP _ 25 acl:relcl _ _ 28 relatively _ ADV RB _ 29 advmod _ _ 29 unsubsidized _ ADJ JJ _ 31 amod _ _ 30 steel _ NOUN NN _ 31 compound _ _ 31 industries _ NOUN NNS _ 27 dobj _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 Meanwhile _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 U.S. _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 negotiated _ VERB VBN _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 significant _ ADJ JJ _ 9 amod _ _ 9 cut _ NOUN NN _ 6 dobj _ _ 10 in _ ADP IN _ 14 case _ _ 11 Japan _ PROPN NNP _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 steel _ NOUN NN _ 14 compound _ _ 14 quota _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 made _ VERB VBN _ 6 conj _ _ 18 only _ ADV RB _ 21 advmod _ _ 19 a _ DET DT _ 21 det _ _ 20 minor _ ADJ JJ _ 21 amod _ _ 21 increase _ NOUN NN _ 17 dobj _ _ 22 to _ ADP TO _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 steel _ NOUN NN _ 25 compound _ _ 25 allotment _ NOUN NN _ 21 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 European _ PROPN NNP _ 29 compound _ _ 29 Community _ PROPN NNP _ 25 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Brazil _ PROPN NNP _ 11 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 similar _ ADJ JJ _ 1 amod _ _ 4 to _ ADP TO _ 5 case _ _ 5 Mexico _ PROPN NNP _ 3 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 South _ PROPN NNP _ 8 compound _ _ 8 Korea _ PROPN NNP _ 5 conj _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 negotiate _ VERB VB _ 11 xcomp _ _ 14 a _ DET DT _ 17 det _ _ 15 somewhat _ ADV RB _ 16 advmod _ _ 16 bigger _ ADJ JJR _ 17 amod _ _ 17 share _ NOUN NN _ 13 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 market _ NOUN NN _ 17 nmod _ _ 22 than _ SCONJ IN _ 24 mark _ _ 23 it _ PRON PRP _ 24 nsubj _ _ 24 had _ VERB VBD _ 17 advcl _ _ 25 under _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 30 det _ _ 27 previous _ ADJ JJ _ 30 amod _ _ 28 five-year _ ADJ JJ _ 30 amod _ _ 29 steel _ NOUN NN _ 30 compound _ _ 30 quotas _ NOUN NNS _ 24 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 which _ PRON WDT _ 33 nsubj _ _ 33 expired _ VERB VBD _ 30 acl:relcl _ _ 34 Sept. _ PROPN NNP _ 33 nmod:tmod _ _ 35 30 _ NUM CD _ 34 nummod _ _ 36 . _ PUNCT . _ 11 punct _ _ 1 Brazil _ PROPN NNP _ 8 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Venezuela _ PROPN NNP _ 1 conj _ _ 4 are _ VERB VBP _ 8 cop _ _ 5 the _ DET DT _ 8 det _ _ 6 only _ ADJ JJ _ 8 amod _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 countries _ NOUN NNS _ 0 root _ _ 9 that _ PRON WDT _ 12 nsubj _ _ 10 have _ AUX VBP _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 completed _ VERB VBN _ 8 acl:relcl _ _ 13 steel _ NOUN NN _ 14 compound _ _ 14 talks _ NOUN NNS _ 12 dobj _ _ 15 with _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 14 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 14 nmod _ _ 21 ending _ VERB VBG _ 20 acl _ _ 22 Oct. _ PROPN NNP _ 21 nmod:tmod _ _ 23 1 _ NUM CD _ 22 nummod _ _ 24 , _ PUNCT , _ 22 punct _ _ 25 1990 _ NUM CD _ 22 nummod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 years _ NOUN NNS _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 U.S. _ PROPN NNP _ 6 compound _ _ 6 steelmakers _ NOUN NNS _ 8 nsubj _ _ 7 have _ AUX VBP _ 8 aux _ _ 8 supplied _ VERB VBN _ 0 root _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 80 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 8 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 100 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 16 nummod _ _ 16 tons _ NOUN NNS _ 11 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 steel _ NOUN NN _ 16 nmod _ _ 19 used _ VERB VBN _ 16 acl _ _ 20 annually _ ADV RB _ 19 advmod _ _ 21 by _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 nation _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 Of _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 remaining _ VERB VBG _ 5 amod _ _ 4 20 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 11 nmod _ _ 6 needed _ VERB VBN _ 5 acl _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 steel-quota _ NOUN NN _ 10 compound _ _ 10 negotiations _ NOUN NNS _ 11 nsubj _ _ 11 allocate _ VERB VBP _ 0 root _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 15 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 11 dobj _ _ 15 to _ ADP TO _ 17 case _ _ 16 foreign _ ADJ JJ _ 17 amod _ _ 17 suppliers _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 11 punct _ _ 19 with _ SCONJ IN _ 22 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 difference _ NOUN NN _ 22 nsubj _ _ 22 supplied _ VERB VBN _ 11 advcl _ _ 23 mainly _ ADV RB _ 25 advmod _ _ 24 by _ ADP IN _ 25 case _ _ 25 Canada _ PROPN NNP _ 22 nmod _ _ 26 -- _ PUNCT : _ 25 punct _ _ 27 which _ PRON WDT _ 30 nsubjpass _ _ 28 is _ AUX VBZ _ 30 auxpass _ _ 29 n't _ PART RB _ 30 neg _ _ 30 included _ VERB VBN _ 25 acl:relcl _ _ 31 in _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 quota _ NOUN NN _ 34 compound _ _ 34 program _ NOUN NN _ 30 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 Other _ ADJ JJ _ 2 amod _ _ 2 countries _ NOUN NNS _ 24 nsubj _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 have _ VERB VB _ 2 acl:relcl _ _ 7 formal _ ADJ JJ _ 9 amod _ _ 8 steel _ NOUN NN _ 9 compound _ _ 9 quotas _ NOUN NNS _ 6 dobj _ _ 10 with _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 such _ ADJ JJ _ 16 case _ _ 15 as _ ADP IN _ 14 mwe _ _ 16 Taiwan _ PROPN NNP _ 2 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Sweden _ PROPN NNP _ 16 conj _ _ 19 and _ CONJ CC _ 16 cc _ _ 20 Argentina _ PROPN NNP _ 16 conj _ _ 21 , _ PUNCT , _ 2 punct _ _ 22 also _ ADV RB _ 24 advmod _ _ 23 have _ AUX VBP _ 24 aux _ _ 24 supplied _ VERB VBN _ 0 root _ _ 25 steel _ NOUN NN _ 24 dobj _ _ 26 . _ PUNCT . _ 24 punct _ _ 1 Some _ DET DT _ 9 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 these _ DET DT _ 4 det _ _ 4 countries _ NOUN NNS _ 1 nmod _ _ 5 have _ AUX VBP _ 9 aux _ _ 6 in _ ADP IN _ 8 case _ _ 7 recent _ ADJ JJ _ 8 amod _ _ 8 years _ NOUN NNS _ 9 nmod _ _ 9 made _ VERB VBD _ 0 root _ _ 10 informal _ ADJ JJ _ 11 amod _ _ 11 agreements _ NOUN NNS _ 9 dobj _ _ 12 with _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 11 nmod _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 are _ VERB VBP _ 17 cop _ _ 17 similar _ ADJ JJ _ 11 acl:relcl _ _ 18 to _ ADP TO _ 19 case _ _ 19 quotas _ NOUN NNS _ 17 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 7 nsubj _ _ 4 earlier _ ADV RBR _ 6 advmod _ _ 5 this _ DET DT _ 6 det _ _ 6 year _ NOUN NN _ 7 nmod:tmod _ _ 7 said _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 extend _ VERB VB _ 7 ccomp _ _ 11 steel _ NOUN NN _ 12 compound _ _ 12 quotas _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 known _ VERB VBN _ 12 acl _ _ 15 as _ ADP IN _ 18 case _ _ 16 voluntary _ ADJ JJ _ 18 amod _ _ 17 restraint _ NOUN NN _ 18 compound _ _ 18 agreements _ NOUN NNS _ 14 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 until _ ADP IN _ 21 case _ _ 21 March _ PROPN NNP _ 10 nmod _ _ 22 31 _ NUM CD _ 21 nummod _ _ 23 , _ PUNCT , _ 21 punct _ _ 24 1992 _ NUM CD _ 21 nummod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 use _ VERB VB _ 3 ccomp _ _ 7 that _ DET DT _ 10 det _ _ 8 two-and-a-half _ ADJ JJ _ 9 dep _ _ 9 year _ NOUN NN _ 10 amod _ _ 10 period _ NOUN NN _ 6 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 work _ VERB VB _ 6 advcl _ _ 13 toward _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 international _ ADJ JJ _ 16 amod _ _ 16 consensus _ NOUN NN _ 12 nmod _ _ 17 on _ SCONJ IN _ 18 mark _ _ 18 freeing _ VERB VBG _ 16 acl _ _ 19 up _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 23 det _ _ 21 international _ ADJ JJ _ 23 amod _ _ 22 steel _ NOUN NN _ 23 compound _ _ 23 trade _ NOUN NN _ 18 dobj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 which _ PRON WDT _ 29 nsubjpass _ _ 26 has _ AUX VBZ _ 29 aux _ _ 27 been _ AUX VBN _ 29 auxpass _ _ 28 notoriously _ ADV RB _ 29 advmod _ _ 29 managed _ VERB VBN _ 23 acl:relcl _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 subsidized _ VERB VBN _ 29 conj _ _ 32 and _ CONJ CC _ 29 cc _ _ 33 protected _ VERB VBN _ 29 conj _ _ 34 by _ ADP IN _ 35 case _ _ 35 governments _ NOUN NNS _ 29 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 3 nsubj _ _ 3 termed _ VERB VBD _ 0 root _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 plan _ NOUN NN _ 11 dep _ _ 6 , _ PUNCT , _ 11 punct _ _ 7 a _ DET DT _ 11 det _ _ 8 `` _ PUNCT `` _ 11 punct _ _ 9 trade _ NOUN NN _ 11 compound _ _ 10 liberalization _ NOUN NN _ 11 compound _ _ 11 program _ NOUN NN _ 3 xcomp _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 '' _ PUNCT '' _ 3 punct _ _ 14 despite _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 fact _ NOUN NN _ 3 nmod _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 it _ PRON PRP _ 22 nsubj _ _ 19 is _ VERB VBZ _ 22 cop _ _ 20 merely _ ADV RB _ 22 advmod _ _ 21 an _ DET DT _ 22 det _ _ 22 extension _ NOUN NN _ 16 ccomp _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Mexico _ PROPN NNP _ 20 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 5 nsubj _ _ 4 was _ VERB VBD _ 5 cop _ _ 5 one _ NUM CD _ 1 acl:relcl _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 first _ ADJ JJ _ 9 amod _ _ 9 countries _ NOUN NNS _ 5 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 conclude _ VERB VB _ 9 acl _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 steel _ NOUN NN _ 14 compound _ _ 14 talks _ NOUN NNS _ 11 dobj _ _ 15 with _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 1 punct _ _ 19 virtually _ ADV RB _ 20 advmod _ _ 20 doubled _ VERB VBD _ 0 root _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 quota _ NOUN NN _ 20 dobj _ _ 23 to _ ADP TO _ 25 case _ _ 24 0.95 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 20 nmod _ _ 26 of _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 U.S. _ PROPN NNP _ 30 compound _ _ 29 steel _ NOUN NN _ 30 compound _ _ 30 market _ NOUN NN _ 25 nmod _ _ 31 from _ ADP IN _ 33 case _ _ 32 0.48 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 20 nmod _ _ 34 under _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 previous _ ADJ JJ _ 37 amod _ _ 37 quotas _ NOUN NNS _ 33 nmod _ _ 38 . _ PUNCT . _ 20 punct _ _ 1 South _ PROPN NNP _ 2 compound _ _ 2 Korea _ PROPN NNP _ 14 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 had _ VERB VBD _ 2 acl:relcl _ _ 6 1.9 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 under _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 previous _ ADJ JJ _ 11 amod _ _ 11 quotas _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 set _ VERB VBN _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 19 det _ _ 18 small _ ADJ JJ _ 19 amod _ _ 19 increase _ NOUN NN _ 16 dobj _ _ 20 to _ ADP TO _ 23 case _ _ 21 about _ ADV RB _ 22 advmod _ _ 22 1.95 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 19 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 increase _ NOUN NN _ 3 nsubj _ _ 3 rises _ VERB VBZ _ 0 root _ _ 4 to _ ADP TO _ 9 case _ _ 5 slightly _ ADV RB _ 8 advmod _ _ 6 more _ ADJ JJR _ 8 advmod _ _ 7 than _ ADP IN _ 6 mwe _ _ 8 2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 3 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 9 nmod _ _ 14 if _ SCONJ IN _ 21 mark _ _ 15 a _ DET DT _ 19 det _ _ 16 joint _ ADJ JJ _ 19 amod _ _ 17 Korean-U.S. _ PROPN NNP _ 19 compound _ _ 18 steel _ NOUN NN _ 19 compound _ _ 19 project _ NOUN NN _ 21 nsubjpass _ _ 20 is _ AUX VBZ _ 21 auxpass _ _ 21 included _ VERB VBN _ 3 advcl _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Brazil _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 increase _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 allowance _ NOUN NN _ 7 dobj _ _ 10 from _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 1.43 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 share _ NOUN NN _ 7 nmod _ _ 15 it _ PRON PRP _ 17 nsubj _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 had _ VERB VBN _ 14 acl:relcl _ _ 18 in _ ADP IN _ 20 case _ _ 19 recent _ ADJ JJ _ 20 amod _ _ 20 years _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 EC _ PROPN NNP _ 16 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Japan _ PROPN NNP _ 2 conj _ _ 5 -- _ PUNCT : _ 2 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 U.S. _ PROPN NNP _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 largest _ ADJ JJS _ 11 amod _ _ 10 steel _ NOUN NN _ 11 compound _ _ 11 suppliers _ NOUN NNS _ 2 dep _ _ 12 -- _ PUNCT : _ 2 punct _ _ 13 have _ AUX VBP _ 16 aux _ _ 14 n't _ PART RB _ 16 neg _ _ 15 been _ AUX VBN _ 16 aux _ _ 16 filling _ VERB VBG _ 0 root _ _ 17 their _ PRON PRP$ _ 18 nmod:poss _ _ 18 quotas _ NOUN NNS _ 16 dobj _ _ 19 to _ ADP TO _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 full _ ADJ JJ _ 22 amod _ _ 22 extent _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 EC _ PROPN NNP _ 4 compound _ _ 3 steel _ NOUN NN _ 4 compound _ _ 4 industry _ NOUN NN _ 17 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 9 nsubj _ _ 7 has _ AUX VBZ _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 coping _ VERB VBG _ 4 acl:relcl _ _ 10 with _ ADP IN _ 13 case _ _ 11 strong _ ADJ JJ _ 13 amod _ _ 12 European _ ADJ JJ _ 13 amod _ _ 13 demand _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 has _ AUX VBZ _ 17 aux _ _ 16 been _ AUX VBN _ 17 aux _ _ 17 supplying _ VERB VBG _ 0 root _ _ 18 about _ ADV RB _ 19 advmod _ _ 19 5 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 17 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 U.S. _ PROPN NNP _ 24 compound _ _ 24 market _ NOUN NN _ 20 nmod _ _ 25 compared _ VERB VBN _ 28 case _ _ 26 with _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 quotas _ NOUN NNS _ 20 nmod _ _ 29 of _ ADP IN _ 32 case _ _ 30 about _ ADV RB _ 31 advmod _ _ 31 6.7 _ NUM CD _ 32 nummod _ _ 32 % _ SYM NN _ 28 nmod _ _ 33 . _ PUNCT . _ 17 punct _ _ 1 Japan _ PROPN NNP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ AUX VBN _ 4 aux _ _ 4 shipping _ VERB VBG _ 0 root _ _ 5 steel _ NOUN NN _ 4 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 total _ VERB VB _ 5 acl _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 4.5 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 U.S. _ PROPN NNP _ 14 compound _ _ 14 market _ NOUN NN _ 10 nmod _ _ 15 compared _ VERB VBN _ 18 case _ _ 16 with _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 quota _ NOUN NN _ 10 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 5.9 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 recent _ ADJ JJ _ 4 amod _ _ 4 talks _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 EC _ PROPN NNP _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 quota _ NOUN NN _ 11 nsubj _ _ 11 increased _ VERB VBN _ 8 ccomp _ _ 12 about _ ADV RB _ 14 advmod _ _ 13 300,000 _ NUM CD _ 14 nummod _ _ 14 tons _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 to _ ADP TO _ 18 case _ _ 17 7 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 11 nmod _ _ 19 of _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 U.S. _ PROPN NNP _ 22 compound _ _ 22 market _ NOUN NN _ 18 nmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 6.7 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 11 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1988 _ NUM CD _ 25 nmod _ _ 28 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 quota _ NOUN NN _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 been _ VERB VBN _ 7 cop _ _ 6 as _ ADV RB _ 7 advmod _ _ 7 high _ ADJ JJ _ 0 root _ _ 8 as _ ADP IN _ 10 case _ _ 9 6.9 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 1984 _ NUM CD _ 10 nmod _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 Japan _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 however _ ADV RB _ 6 advmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 agreed _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 cut _ VERB VB _ 6 xcomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 quota _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 14 case _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 5 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 8 nmod _ _ 15 from _ ADP IN _ 17 case _ _ 16 5.9 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 8 nmod _ _ 18 previously _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Japan _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 EC _ PROPN NNP _ 1 conj _ _ 5 , _ PUNCT , _ 1 punct _ _ 6 Brazil _ PROPN NNP _ 1 conj _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 Mexico _ PROPN NNP _ 1 conj _ _ 9 and _ CONJ CC _ 1 cc _ _ 10 South _ PROPN NNP _ 11 compound _ _ 11 Korea _ PROPN NNP _ 1 conj _ _ 12 provide _ VERB VBP _ 0 root _ _ 13 about _ ADV RB _ 14 advmod _ _ 14 80 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 12 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 steel _ NOUN NN _ 15 nmod _ _ 19 imported _ VERB VBN _ 18 acl _ _ 20 to _ ADP TO _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 U.S. _ PROPN NNP _ 19 nmod _ _ 23 under _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 quota _ NOUN NN _ 26 compound _ _ 26 program _ NOUN NN _ 19 nmod _ _ 27 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 balance _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 supplied _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 host _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 smaller _ ADJ JJR _ 10 amod _ _ 10 exporters _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 such _ ADJ JJ _ 14 case _ _ 13 as _ ADP IN _ 12 mwe _ _ 14 Australia _ PROPN NNP _ 10 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Venezuela _ PROPN NNP _ 14 conj _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 U.S. _ PROPN NNP _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 about _ ADV RB _ 7 advmod _ _ 5 an _ DET DT _ 7 advmod _ _ 6 extra _ ADJ JJ _ 7 advmod _ _ 7 2 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 3 dobj _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 domestic _ ADJ JJ _ 13 amod _ _ 12 steel _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 8 nmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 give _ VERB VB _ 8 acl _ _ 16 to _ ADP TO _ 18 case _ _ 17 foreign _ ADJ JJ _ 18 amod _ _ 18 suppliers _ NOUN NNS _ 15 nmod _ _ 19 in _ ADP IN _ 22 case _ _ 20 its _ PRON PRP$ _ 22 nmod:poss _ _ 21 quota _ NOUN NN _ 22 compound _ _ 22 talks _ NOUN NNS _ 15 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 4 nsubjpass _ _ 2 was _ AUX VBD _ 4 auxpass _ _ 3 essentially _ ADV RB _ 4 advmod _ _ 4 made _ VERB VBN _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 of _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 1 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 increase _ NOUN NN _ 4 nmod _ _ 11 in _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 overall _ ADJ JJ _ 15 amod _ _ 14 quota _ NOUN NN _ 15 compound _ _ 15 program _ NOUN NN _ 10 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 1 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 10 conj _ _ 19 from _ SCONJ IN _ 20 mark _ _ 20 cutting _ VERB VBG _ 18 acl _ _ 21 Japan _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 allowance _ NOUN NN _ 20 dobj _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Negotiators _ NOUN NNS _ 9 nsubj _ _ 2 from _ ADP IN _ 7 case _ _ 3 the _ DET DT _ 7 det _ _ 4 White _ PROPN NNP _ 7 compound _ _ 5 House _ PROPN NNP _ 7 compound _ _ 6 trade _ NOUN NN _ 7 compound _ _ 7 office _ NOUN NN _ 1 nmod _ _ 8 will _ AUX MD _ 9 aux _ _ 9 repeat _ VERB VB _ 0 root _ _ 10 these _ DET DT _ 12 det _ _ 11 quota _ NOUN NN _ 12 compound _ _ 12 negotiations _ NOUN NNS _ 9 dobj _ _ 13 next _ ADP IN _ 14 amod _ _ 14 year _ NOUN NN _ 9 nmod:tmod _ _ 15 when _ ADV WRB _ 18 advmod _ _ 16 they _ PRON PRP _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 have _ VERB VB _ 14 acl:relcl _ _ 19 another _ DET DT _ 21 det _ _ 20 1 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 dobj _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 U.S. _ PROPN NNP _ 26 compound _ _ 25 steel _ NOUN NN _ 26 compound _ _ 26 market _ NOUN NN _ 21 nmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 allocate _ VERB VB _ 21 acl _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 These _ DET DT _ 4 det _ _ 2 optional _ ADJ JJ _ 4 amod _ _ 3 1%-a-year _ ADJ JJ _ 4 amod _ _ 4 increases _ NOUN NNS _ 11 nsubjpass _ _ 5 to _ ADP TO _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 steel _ NOUN NN _ 9 compound _ _ 8 quota _ NOUN NN _ 9 compound _ _ 9 program _ NOUN NN _ 4 nmod _ _ 10 are _ AUX VBP _ 11 auxpass _ _ 11 built _ VERB VBN _ 0 root _ _ 12 into _ ADP IN _ 18 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Bush _ PROPN NNP _ 15 compound _ _ 15 administration _ NOUN NN _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 steel-quota _ NOUN NN _ 18 compound _ _ 18 program _ NOUN NN _ 11 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 give _ VERB VB _ 11 xcomp _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 negotiators _ NOUN NNS _ 20 dep _ _ 23 leverage _ NOUN NN _ 20 dobj _ _ 24 with _ ADP IN _ 27 case _ _ 25 foreign _ ADJ JJ _ 27 amod _ _ 26 steel _ NOUN NN _ 27 compound _ _ 27 suppliers _ NOUN NNS _ 23 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 try _ VERB VB _ 23 acl _ _ 30 to _ PART TO _ 31 mark _ _ 31 get _ VERB VB _ 29 xcomp _ _ 32 them _ PRON PRP _ 31 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 withdraw _ VERB VB _ 31 xcomp _ _ 35 subsidies _ NOUN NNS _ 34 dobj _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 protectionism _ NOUN NN _ 35 conj _ _ 38 from _ ADP IN _ 42 case _ _ 39 their _ PRON PRP$ _ 42 nmod:poss _ _ 40 own _ ADJ JJ _ 42 amod _ _ 41 steel _ NOUN NN _ 42 compound _ _ 42 industries _ NOUN NNS _ 34 nmod _ _ 43 . _ PUNCT . _ 11 punct _ _ 1 Elcotel _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 fiscal _ ADJ JJ _ 6 amod _ _ 5 second-quarter _ ADJ JJ _ 6 amod _ _ 6 earnings _ NOUN NNS _ 3 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 trail _ VERB VB _ 3 xcomp _ _ 9 1988 _ NUM CD _ 10 nummod _ _ 10 results _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 but _ CONJ CC _ 3 cc _ _ 13 anticipates _ VERB VBZ _ 3 conj _ _ 14 that _ SCONJ IN _ 19 mark _ _ 15 several _ ADJ JJ _ 17 amod _ _ 16 new _ ADJ JJ _ 17 amod _ _ 17 products _ NOUN NNS _ 19 nsubj _ _ 18 will _ AUX MD _ 19 aux _ _ 19 lead _ VERB VB _ 13 ccomp _ _ 20 to _ ADP TO _ 26 case _ _ 21 a _ DET DT _ 26 det _ _ 22 `` _ PUNCT `` _ 26 punct _ _ 23 much _ ADV RB _ 24 advmod _ _ 24 stronger _ ADJ JJR _ 26 amod _ _ 25 '' _ PUNCT '' _ 26 punct _ _ 26 performance _ NOUN NN _ 19 nmod _ _ 27 in _ ADP IN _ 30 case _ _ 28 its _ PRON PRP$ _ 30 nmod:poss _ _ 29 second _ ADJ JJ _ 30 amod _ _ 30 half _ NOUN NN _ 26 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 Elcotel _ PROPN NNP _ 7 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 telecommunications _ NOUN NN _ 5 compound _ _ 5 company _ NOUN NN _ 1 appos _ _ 6 , _ PUNCT , _ 1 punct _ _ 7 had _ VERB VBD _ 0 root _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 272,000 _ NUM CD _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 five _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 12 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 in _ ADP IN _ 24 case _ _ 21 its _ PRON PRP$ _ 24 nmod:poss _ _ 22 year-earlier _ ADJ JJ _ 24 amod _ _ 23 second _ NOUN NN _ 24 compound _ _ 24 quarter _ NOUN NN _ 7 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 ended _ VERB VBN _ 24 acl _ _ 27 Sept. _ PROPN NNP _ 26 nmod:tmod _ _ 28 30 _ NUM CD _ 27 nummod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 totaled _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 5 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 George _ PROPN NNP _ 2 compound _ _ 2 Pierce _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 chairman _ NOUN NN _ 2 appos _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ JJ _ 8 amod _ _ 8 officer _ NOUN NN _ 4 conj _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 in _ ADP IN _ 13 case _ _ 12 an _ DET DT _ 13 det _ _ 13 interview _ NOUN NN _ 10 nmod _ _ 14 that _ SCONJ IN _ 25 mark _ _ 15 earnings _ NOUN NNS _ 25 nsubj _ _ 16 in _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 most _ ADV RBS _ 19 advmod _ _ 19 recent _ ADJ JJ _ 20 amod _ _ 20 quarter _ NOUN NN _ 15 nmod _ _ 21 will _ AUX MD _ 25 aux _ _ 22 be _ VERB VB _ 25 cop _ _ 23 about _ ADV RB _ 24 advmod _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 cents _ NOUN NNS _ 10 ccomp _ _ 26 a _ DET DT _ 27 det _ _ 27 share _ NOUN NN _ 25 nmod:npmod _ _ 28 on _ ADP IN _ 29 case _ _ 29 revenue _ NOUN NN _ 25 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 just _ ADV RB _ 33 advmod _ _ 32 under _ ADP IN _ 33 advmod _ _ 33 $ _ SYM $ _ 29 nmod _ _ 34 4 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 lower _ ADJ JJR _ 3 amod _ _ 3 results _ NOUN NNS _ 9 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Pierce _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 reflect _ VERB VBP _ 0 root _ _ 10 a _ DET DT _ 12 det _ _ 11 12-month _ ADJ JJ _ 12 amod _ _ 12 decline _ NOUN NN _ 9 dobj _ _ 13 in _ ADP IN _ 15 case _ _ 14 industry _ NOUN NN _ 15 compound _ _ 15 sales _ NOUN NNS _ 12 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 privately _ ADV RB _ 18 advmod _ _ 18 owned _ VERB VBN _ 20 amod _ _ 19 pay _ NOUN NN _ 20 compound _ _ 20 telephones _ NOUN NNS _ 15 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Elcotel _ PROPN NNP _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 primary _ ADJ JJ _ 25 amod _ _ 25 business _ NOUN NN _ 20 appos _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 Although _ SCONJ IN _ 4 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Pierce _ PROPN NNP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 17 advcl _ _ 5 that _ ADP IN _ 6 amod _ _ 6 line _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 business _ NOUN NN _ 6 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 strengthen _ VERB VB _ 4 xcomp _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 next _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Elcotel _ PROPN NNP _ 21 nsubj _ _ 19 will _ AUX MD _ 21 aux _ _ 20 also _ ADV RB _ 21 advmod _ _ 21 benefit _ VERB VB _ 17 ccomp _ _ 22 from _ SCONJ IN _ 23 mark _ _ 23 moving _ VERB VBG _ 21 advcl _ _ 24 into _ ADP IN _ 26 case _ _ 25 other _ ADJ JJ _ 26 amod _ _ 26 areas _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 17 punct _ _ 1 Foremost _ ADV RB _ 4 dep _ _ 2 among _ ADP IN _ 3 case _ _ 3 those _ PRON DT _ 4 nmod _ _ 4 is _ VERB VBZ _ 17 dep _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 entrance _ NOUN NN _ 4 nsubj _ _ 9 into _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 public _ ADJ JJ _ 13 amod _ _ 12 facsimile _ NOUN NN _ 13 compound _ _ 13 business _ NOUN NN _ 8 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Pierce _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Within _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 next _ ADJ JJ _ 4 amod _ _ 4 year _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Elcotel _ PROPN NNP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 place _ VERB VB _ 7 xcomp _ _ 10 10,000 _ NUM CD _ 12 nummod _ _ 11 fax _ NOUN NN _ 12 compound _ _ 12 machines _ NOUN NNS _ 9 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 made _ VERB VBN _ 12 acl _ _ 15 by _ ADP IN _ 16 case _ _ 16 Minolta _ PROPN NNP _ 14 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Japan _ PROPN NNP _ 14 nmod _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 in _ ADP IN _ 21 case _ _ 21 hotels _ NOUN NNS _ 9 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 municipal _ ADJ JJ _ 24 amod _ _ 24 buildings _ NOUN NNS _ 21 conj _ _ 25 , _ PUNCT , _ 21 punct _ _ 26 drugstores _ NOUN NNS _ 21 conj _ _ 27 and _ CONJ CC _ 21 cc _ _ 28 other _ ADJ JJ _ 30 amod _ _ 29 public _ ADJ JJ _ 30 amod _ _ 30 settings _ NOUN NNS _ 21 conj _ _ 31 around _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 country _ NOUN NN _ 30 nmod _ _ 34 . _ PUNCT . _ 7 punct _ _ 1 Elcotel _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 provide _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 credit-card _ NOUN NN _ 6 compound _ _ 6 reader _ NOUN NN _ 3 dobj _ _ 7 for _ SCONJ IN _ 11 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 machines _ NOUN NNS _ 11 nsubj _ _ 10 to _ PART TO _ 11 mark _ _ 11 collect _ VERB VB _ 6 acl _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 store _ VERB VB _ 11 conj _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 forward _ VERB VB _ 11 conj _ _ 16 billing _ NOUN NN _ 17 compound _ _ 17 data _ NOUN NNS _ 11 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Pierce _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Elcotel _ PROPN NNP _ 6 nsubj _ _ 5 should _ AUX MD _ 6 aux _ _ 6 realize _ VERB VB _ 3 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 minimum _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 10 _ NUM CD _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 recurring _ VERB VBG _ 15 amod _ _ 14 net _ ADJ JJ _ 15 amod _ _ 15 earnings _ NOUN NNS _ 11 nmod _ _ 16 for _ ADP IN _ 18 case _ _ 17 each _ DET DT _ 18 det _ _ 18 machine _ NOUN NN _ 6 nmod _ _ 19 each _ DET DT _ 20 det _ _ 20 month _ NOUN NN _ 6 nmod:tmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Elcotel _ PROPN NNP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 developed _ VERB VBN _ 0 root _ _ 5 an _ DET DT _ 8 det _ _ 6 automatic _ ADJ JJ _ 8 amod _ _ 7 call _ NOUN NN _ 8 compound _ _ 8 processor _ NOUN NN _ 4 dobj _ _ 9 that _ PRON WDT _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 make _ VERB VB _ 8 acl:relcl _ _ 12 further _ ADJ JJ _ 13 amod _ _ 13 use _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 system _ NOUN NN _ 11 nmod _ _ 19 for _ SCONJ IN _ 20 mark _ _ 20 automating _ VERB VBG _ 18 acl _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 handling _ VERB VBG _ 20 conj _ _ 23 credit-card _ NOUN NN _ 24 compound _ _ 24 calls _ NOUN NNS _ 20 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 collect _ ADJ JJ _ 27 amod _ _ 27 calls _ NOUN NNS _ 24 conj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Automatic _ ADJ JJ _ 3 amod _ _ 2 call _ NOUN NN _ 3 compound _ _ 3 processors _ NOUN NNS _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 provide _ VERB VB _ 0 root _ _ 6 that _ DET DT _ 7 det _ _ 7 system _ NOUN NN _ 5 dobj _ _ 8 for _ ADP IN _ 11 case _ _ 9 virtually _ ADV RB _ 10 advmod _ _ 10 any _ DET DT _ 11 amod _ _ 11 telephone _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Pierce _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 11 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 not _ ADV RB _ 18 neg _ _ 18 just _ ADV RB _ 11 dep _ _ 19 phones _ VERB VBZ _ 18 dep _ _ 20 produced _ VERB VBN _ 18 acl _ _ 21 by _ ADP IN _ 22 case _ _ 22 Elcotel _ PROPN NNP _ 20 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 6 nsubj _ _ 3 will _ AUX MD _ 6 aux _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 be _ AUX VB _ 6 aux _ _ 6 producing _ VERB VBG _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 line _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 convenience _ NOUN NN _ 12 compound _ _ 12 telephones _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 17 nsubj _ _ 15 do _ AUX VBP _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 accept _ VERB VB _ 12 acl:relcl _ _ 18 coins _ NOUN NNS _ 17 dobj _ _ 19 , _ PUNCT , _ 12 punct _ _ 20 for _ ADP IN _ 21 case _ _ 21 use _ NOUN NN _ 9 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 hotel _ NOUN NN _ 24 compound _ _ 24 lobbies _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 office _ NOUN NN _ 27 compound _ _ 27 lobbies _ NOUN NNS _ 24 conj _ _ 28 , _ PUNCT , _ 24 punct _ _ 29 hospitality _ NOUN NN _ 30 compound _ _ 30 lounges _ NOUN NNS _ 24 conj _ _ 31 and _ CONJ CC _ 24 cc _ _ 32 similar _ ADJ JJ _ 33 amod _ _ 33 settings _ NOUN NNS _ 24 conj _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Pierce _ PROPN NNP _ 3 nsubj _ _ 3 estimated _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 11 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 processors _ NOUN NNS _ 11 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 convenience _ NOUN NN _ 9 compound _ _ 9 phones _ NOUN NNS _ 6 conj _ _ 10 would _ AUX MD _ 11 aux _ _ 11 produce _ VERB VB _ 3 ccomp _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 $ _ SYM $ _ 11 dobj _ _ 14 5 _ NUM CD _ 13 nummod _ _ 15 of _ ADP IN _ 18 case _ _ 16 recurring _ VERB VBG _ 18 amod _ _ 17 net _ ADJ JJ _ 18 amod _ _ 18 earnings _ NOUN NNS _ 13 nmod _ _ 19 for _ ADP IN _ 21 case _ _ 20 each _ DET DT _ 21 det _ _ 21 machine _ NOUN NN _ 11 nmod _ _ 22 each _ DET DT _ 23 det _ _ 23 month _ NOUN NN _ 11 nmod:tmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Britain _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 retail _ ADJ JJ _ 5 amod _ _ 4 price _ NOUN NN _ 5 compound _ _ 5 index _ NOUN NN _ 6 nsubj _ _ 6 rose _ VERB VBD _ 26 ccomp _ _ 7 0.7 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 September _ PROPN NNP _ 6 nmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 August _ PROPN NNP _ 6 nmod _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 was _ VERB VBD _ 20 cop _ _ 15 up _ ADV RB _ 20 advmod _ _ 16 7.6 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 15 nmod:npmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 6 conj _ _ 21 , _ PUNCT , _ 26 punct _ _ 22 the _ DET DT _ 25 det _ _ 23 Central _ PROPN NNP _ 25 compound _ _ 24 Statistical _ PROPN NNP _ 25 compound _ _ 25 Office _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Quest _ PROPN NNP _ 3 compound _ _ 2 Medical _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 adopted _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 shareholders _ NOUN NNS _ 11 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 rights _ NOUN NNS _ 11 compound _ _ 11 plan _ NOUN NN _ 6 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 which _ PRON WDT _ 23 nmod _ _ 14 rights _ NOUN NNS _ 23 nsubjpass _ _ 15 to _ PART TO _ 16 mark _ _ 16 purchase _ VERB VB _ 14 acl _ _ 17 shares _ NOUN NNS _ 16 dobj _ _ 18 of _ ADP IN _ 20 case _ _ 19 common _ ADJ JJ _ 20 amod _ _ 20 stock _ NOUN NN _ 17 nmod _ _ 21 will _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 distributed _ VERB VBN _ 11 acl:relcl _ _ 24 as _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 dividend _ NOUN NN _ 23 nmod _ _ 27 to _ ADP TO _ 28 case _ _ 28 shareholders _ NOUN NNS _ 23 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 record _ NOUN NN _ 28 nmod _ _ 31 as _ ADP IN _ 33 case _ _ 32 of _ ADP IN _ 33 case _ _ 33 Oct. _ PROPN NNP _ 28 nmod _ _ 34 23 _ NUM CD _ 33 nummod _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 plan _ NOUN NN _ 8 nsubjpass _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 n't _ PART RB _ 8 neg _ _ 8 adopted _ VERB VBN _ 3 ccomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 response _ NOUN NN _ 8 nmod _ _ 11 to _ ADP TO _ 14 case _ _ 12 any _ DET DT _ 14 det _ _ 13 known _ VERB VBN _ 14 amod _ _ 14 offers _ NOUN NNS _ 10 nmod _ _ 15 for _ ADP IN _ 16 case _ _ 16 Quest _ PROPN NNP _ 14 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 a _ DET DT _ 19 det _ _ 19 maker _ NOUN NN _ 16 appos _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 marketer _ NOUN NN _ 19 conj _ _ 22 of _ ADP IN _ 24 case _ _ 23 hospital _ NOUN NN _ 24 compound _ _ 24 products _ NOUN NNS _ 19 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 rights _ NOUN NNS _ 3 nsubj _ _ 3 allow _ VERB VBP _ 0 root _ _ 4 shareholders _ NOUN NNS _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 purchase _ VERB VB _ 3 xcomp _ _ 7 Quest _ PROPN NNP _ 8 compound _ _ 8 stock _ NOUN NN _ 6 dobj _ _ 9 at _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 discount _ NOUN NN _ 6 nmod _ _ 12 if _ SCONJ IN _ 17 mark _ _ 13 any _ DET DT _ 14 det _ _ 14 person _ NOUN NN _ 17 nsubj _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 group _ NOUN NN _ 14 conj _ _ 17 acquires _ VERB VBZ _ 6 advcl _ _ 18 more _ ADJ JJR _ 20 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 15 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 17 dobj _ _ 22 of _ ADP IN _ 27 case _ _ 23 the _ DET DT _ 24 det _ _ 24 company _ NOUN NN _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 common _ ADJ JJ _ 27 amod _ _ 27 stock _ NOUN NN _ 21 nmod _ _ 28 or _ CONJ CC _ 17 cc _ _ 29 announces _ VERB VBZ _ 17 conj _ _ 30 a _ DET DT _ 32 det _ _ 31 tender _ NOUN NN _ 32 compound _ _ 32 offer _ NOUN NN _ 29 dobj _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Measuring _ NOUN NN _ 2 compound _ _ 2 cups _ NOUN NNS _ 6 nsubjpass _ _ 3 may _ AUX MD _ 6 aux _ _ 4 soon _ ADV RB _ 6 advmod _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 replaced _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 8 case _ _ 8 tablespoons _ NOUN NNS _ 6 nmod _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 laundry _ NOUN NN _ 12 compound _ _ 12 room _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 Procter _ PROPN NNP _ 4 compound _ _ 2 & _ CONJ CC _ 1 cc _ _ 3 Gamble _ PROPN NNP _ 1 conj _ _ 4 Co. _ PROPN NNP _ 5 nsubj _ _ 5 plans _ VERB VBZ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 begin _ VERB VB _ 5 xcomp _ _ 8 testing _ VERB VBG _ 7 xcomp _ _ 9 next _ ADJ JJ _ 10 amod _ _ 10 month _ NOUN NN _ 8 nmod:tmod _ _ 11 a _ DET DT _ 13 det _ _ 12 superconcentrated _ ADJ JJ _ 13 amod _ _ 13 detergent _ NOUN NN _ 8 dobj _ _ 14 that _ PRON WDT _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 require _ VERB VB _ 13 acl:relcl _ _ 17 only _ ADV RB _ 19 advmod _ _ 18 a _ DET DT _ 19 advmod _ _ 19 few _ ADJ JJ _ 20 nummod _ _ 20 spoonfuls _ NOUN NNS _ 16 dobj _ _ 21 per _ ADP IN _ 22 case _ _ 22 washload _ NOUN NN _ 20 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 3 nsubj _ _ 3 stems _ VERB VBZ _ 0 root _ _ 4 from _ ADP IN _ 5 case _ _ 5 lessons _ NOUN NNS _ 3 nmod _ _ 6 learned _ VERB VBN _ 5 acl _ _ 7 in _ ADP IN _ 8 case _ _ 8 Japan _ PROPN NNP _ 6 nmod _ _ 9 where _ ADV WRB _ 13 advmod _ _ 10 local _ ADJ JJ _ 11 amod _ _ 11 competitors _ NOUN NNS _ 13 nsubj _ _ 12 have _ AUX VBP _ 13 aux _ _ 13 had _ VERB VBD _ 8 acl:relcl _ _ 14 phenomenal _ ADJ JJ _ 15 amod _ _ 15 success _ NOUN NN _ 13 dobj _ _ 16 with _ ADP IN _ 18 case _ _ 17 concentrated _ ADJ JJ _ 18 amod _ _ 18 soapsuds _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 marks _ VERB VBZ _ 0 root _ _ 4 P&G _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 growing _ VERB VBG _ 7 amod _ _ 7 concern _ NOUN NN _ 3 dobj _ _ 8 that _ SCONJ IN _ 19 mark _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 Japanese _ ADJ JJ _ 11 amod _ _ 11 rivals _ NOUN NNS _ 19 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 such _ ADJ JJ _ 16 case _ _ 14 as _ ADP IN _ 13 mwe _ _ 15 Kao _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 11 nmod _ _ 17 , _ PUNCT , _ 11 punct _ _ 18 may _ AUX MD _ 19 aux _ _ 19 bring _ VERB VB _ 7 ccomp _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 superconcentrates _ NOUN NNS _ 19 dobj _ _ 22 to _ ADP TO _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 U.S. _ PROPN NNP _ 19 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Cincinnati _ PROPN NNP _ 4 compound _ _ 3 consumer-products _ NOUN NNS _ 4 compound _ _ 4 giant _ NOUN NN _ 6 nsubjpass _ _ 5 got _ AUX VBD _ 6 auxpass _ _ 6 clobbered _ VERB VBN _ 0 root _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 years _ NOUN NNS _ 9 nmod:npmod _ _ 9 ago _ ADV RB _ 6 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Japan _ PROPN NNP _ 6 nmod _ _ 12 when _ ADV WRB _ 14 advmod _ _ 13 Kao _ PROPN NNP _ 14 nsubj _ _ 14 introduced _ VERB VBD _ 6 advcl _ _ 15 a _ DET DT _ 17 det _ _ 16 powerful _ ADJ JJ _ 17 amod _ _ 17 detergent _ NOUN NN _ 14 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 called _ VERB VBN _ 17 acl _ _ 20 Attack _ PROPN NNP _ 19 xcomp _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 which _ PRON WDT _ 24 nsubj _ _ 23 quickly _ ADV RB _ 24 advmod _ _ 24 won _ VERB VBD _ 17 acl:relcl _ _ 25 a _ DET DT _ 28 det _ _ 26 30 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 28 amod _ _ 28 stake _ NOUN NN _ 24 dobj _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 Japanese _ ADJ JJ _ 32 amod _ _ 32 markets _ NOUN NNS _ 28 nmod _ _ 33 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 want _ VERB VB _ 12 ccomp _ _ 6 to _ PART TO _ 8 mark _ _ 7 get _ AUX VB _ 8 auxpass _ _ 8 caught _ VERB VBN _ 5 xcomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 one _ NUM CD _ 15 nummod _ _ 14 industry _ NOUN NN _ 15 compound _ _ 15 watcher _ NOUN NN _ 12 nsubj _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 Retailers _ PROPN NNP _ 7 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 Phoenix _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Ariz. _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 say _ VERB VBP _ 0 root _ _ 8 P&G _ PROPN NNP _ 12 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 new _ ADJ JJ _ 12 amod _ _ 11 powdered _ ADJ JJ _ 12 amod _ _ 12 detergent _ NOUN NN _ 25 nsubj _ _ 13 -- _ PUNCT : _ 12 punct _ _ 14 to _ PART TO _ 16 mark _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 called _ VERB VBN _ 12 acl _ _ 17 Cheer _ PROPN NNP _ 16 xcomp _ _ 18 with _ ADP IN _ 20 case _ _ 19 Color _ PROPN NNP _ 20 compound _ _ 20 Guard _ PROPN NNP _ 17 nmod _ _ 21 -- _ PUNCT : _ 12 punct _ _ 22 will _ AUX MD _ 25 aux _ _ 23 be _ VERB VB _ 25 cop _ _ 24 on _ ADP IN _ 25 case _ _ 25 shelves _ NOUN NNS _ 7 ccomp _ _ 26 in _ ADP IN _ 28 case _ _ 27 that _ DET DT _ 28 det _ _ 28 market _ NOUN NN _ 25 nmod _ _ 29 by _ ADP IN _ 31 case _ _ 30 early _ ADJ JJ _ 31 amod _ _ 31 November _ PROPN NNP _ 25 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 P&G _ PROPN NNP _ 3 compound _ _ 3 spokeswoman _ NOUN NN _ 4 nsubj _ _ 4 confirmed _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 shipments _ NOUN NNS _ 9 nsubj _ _ 7 to _ ADP TO _ 8 case _ _ 8 Phoenix _ PROPN NNP _ 6 nmod _ _ 9 started _ VERB VBD _ 4 ccomp _ _ 10 late _ ADV RB _ 12 advmod _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 month _ NOUN NN _ 9 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 study _ VERB VB _ 2 ccomp _ _ 7 results _ NOUN NNS _ 6 dobj _ _ 8 from _ ADP IN _ 10 case _ _ 9 this _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 7 nmod _ _ 11 before _ SCONJ IN _ 12 mark _ _ 12 expanding _ VERB VBG _ 6 advcl _ _ 13 to _ ADP TO _ 14 case _ _ 14 others _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Superconcentrates _ NOUN NNS _ 5 nsubj _ _ 2 are _ VERB VBP _ 5 cop _ _ 3 n't _ PART RB _ 5 neg _ _ 4 entirely _ ADV RB _ 5 advmod _ _ 5 new _ ADJ JJ _ 0 root _ _ 6 for _ ADP IN _ 7 case _ _ 7 P&G _ PROPN NNP _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 introduced _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 superconcentrated _ ADJ JJ _ 7 amod _ _ 6 Lemon _ PROPN NNP _ 7 compound _ _ 7 Cheer _ PROPN NNP _ 3 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Japan _ PROPN NNP _ 3 nmod _ _ 10 after _ SCONJ IN _ 11 mark _ _ 11 watching _ VERB VBG _ 3 advcl _ _ 12 the _ DET DT _ 13 det _ _ 13 success _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 Attack _ PROPN NNP _ 13 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 Attack _ PROPN NNP _ 3 nsubj _ _ 3 hit _ VERB VBD _ 16 advcl _ _ 4 the _ DET DT _ 5 det _ _ 5 shelves _ NOUN NNS _ 3 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 1987 _ NUM CD _ 3 nmod _ _ 8 , _ PUNCT , _ 16 punct _ _ 9 P&G _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 share _ NOUN NN _ 16 nsubj _ _ 12 of _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Japanese _ ADJ JJ _ 15 amod _ _ 15 market _ NOUN NN _ 11 nmod _ _ 16 fell _ VERB VBD _ 0 root _ _ 17 to _ ADP TO _ 20 case _ _ 18 about _ ADV RB _ 19 advmod _ _ 19 8 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 16 nmod _ _ 21 from _ ADP IN _ 25 case _ _ 22 more _ ADJ JJR _ 24 advmod _ _ 23 than _ ADP IN _ 22 mwe _ _ 24 20 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 16 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 With _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 help _ NOUN NN _ 13 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 Lemon _ PROPN NNP _ 6 compound _ _ 6 Cheer _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 P&G _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 share _ NOUN NN _ 13 nsubjpass _ _ 11 is _ AUX VBZ _ 13 auxpass _ _ 12 now _ ADV RB _ 13 advmod _ _ 13 estimated _ VERB VBN _ 0 root _ _ 14 to _ PART TO _ 17 mark _ _ 15 be _ VERB VB _ 17 cop _ _ 16 12 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 13 xcomp _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 Japanese _ PROPN NNPS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 embraced _ VERB VBN _ 29 advcl _ _ 6 the _ DET DT _ 8 det _ _ 7 compact _ ADJ JJ _ 8 amod _ _ 8 packaging _ NOUN NN _ 5 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 convenience _ NOUN NN _ 8 conj _ _ 11 of _ ADP IN _ 13 case _ _ 12 concentrated _ ADJ JJ _ 13 amod _ _ 13 products _ NOUN NNS _ 8 nmod _ _ 14 , _ PUNCT , _ 29 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 true _ ADJ JJ _ 17 amod _ _ 17 test _ NOUN NN _ 29 nsubj _ _ 18 for _ ADP IN _ 19 case _ _ 19 P&G _ PROPN NNP _ 17 nmod _ _ 20 will _ AUX MD _ 29 aux _ _ 21 be _ VERB VB _ 29 cop _ _ 22 in _ ADP IN _ 29 case _ _ 23 the _ DET DT _ 29 det _ _ 24 $ _ SYM $ _ 29 amod _ _ 25 4 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 U.S. _ PROPN NNP _ 29 compound _ _ 28 detergent _ NOUN NN _ 29 compound _ _ 29 market _ NOUN NN _ 0 root _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 where _ ADV WRB _ 34 advmod _ _ 32 growth _ NOUN NN _ 34 nsubj _ _ 33 is _ VERB VBZ _ 34 cop _ _ 34 slow _ ADJ JJ _ 29 acl:relcl _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 liquids _ NOUN NNS _ 38 nsubj _ _ 37 have _ AUX VBP _ 38 aux _ _ 38 gained _ VERB VBN _ 34 conj _ _ 39 prominence _ NOUN NN _ 38 dobj _ _ 40 over _ ADP IN _ 41 case _ _ 41 powders _ NOUN NNS _ 39 nmod _ _ 42 . _ PUNCT . _ 29 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nsubj _ _ 3 may _ AUX MD _ 5 aux _ _ 4 have _ AUX VB _ 5 aux _ _ 5 chosen _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 market _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 product _ NOUN NN _ 7 dobj _ _ 10 under _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Cheer _ PROPN NNP _ 13 compound _ _ 13 name _ NOUN NN _ 7 nmod _ _ 14 since _ SCONJ IN _ 18 mark _ _ 15 it _ PRON PRP _ 18 nsubjpass _ _ 16 's _ AUX VBZ _ 18 auxpass _ _ 17 already _ ADV RB _ 18 advmod _ _ 18 expanded _ VERB VBN _ 5 advcl _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 best-selling _ ADJ JJ _ 21 amod _ _ 21 Tide _ PROPN NNP _ 18 dobj _ _ 22 into _ ADP IN _ 25 case _ _ 23 16 _ NUM CD _ 25 nummod _ _ 24 different _ ADJ JJ _ 25 amod _ _ 25 varieties _ NOUN NNS _ 18 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 including _ VERB VBG _ 32 case _ _ 28 this _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 big _ ADJ JJ _ 32 amod _ _ 32 hit _ NOUN NN _ 25 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 Tide _ PROPN NNP _ 32 appos _ _ 35 with _ ADP IN _ 36 case _ _ 36 Bleach _ NOUN NN _ 34 nmod _ _ 37 . _ PUNCT . _ 5 punct _ _ 1 With _ ADP IN _ 2 case _ _ 2 superconcentrates _ NOUN NNS _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 however _ ADV RB _ 10 advmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 it _ PRON PRP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 n't _ PART RB _ 10 neg _ _ 9 always _ ADV RB _ 10 advmod _ _ 10 easy _ ADJ JJ _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 persuade _ VERB VB _ 10 xcomp _ _ 13 consumers _ NOUN NNS _ 12 dobj _ _ 14 that _ SCONJ WDT _ 17 dep _ _ 15 less _ ADJ JJR _ 17 nsubj _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 more _ ADJ JJR _ 12 dep _ _ 18 ; _ PUNCT : _ 10 punct _ _ 19 many _ ADJ JJ _ 20 amod _ _ 20 people _ NOUN NNS _ 21 nsubj _ _ 21 tend _ VERB VBP _ 10 parataxis _ _ 22 to _ PART TO _ 23 mark _ _ 23 dump _ VERB VB _ 21 xcomp _ _ 24 too _ ADV RB _ 25 advmod _ _ 25 much _ ADJ JJ _ 26 amod _ _ 26 detergent _ NOUN NN _ 23 dobj _ _ 27 into _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 washing _ NOUN NN _ 30 compound _ _ 30 machine _ NOUN NN _ 23 nmod _ _ 31 , _ PUNCT , _ 21 punct _ _ 32 believing _ VERB VBG _ 21 xcomp _ _ 33 that _ SCONJ IN _ 35 mark _ _ 34 it _ PRON PRP _ 35 nsubj _ _ 35 takes _ VERB VBZ _ 32 ccomp _ _ 36 a _ DET DT _ 37 det _ _ 37 cup _ NOUN NN _ 35 dobj _ _ 38 of _ ADP IN _ 39 case _ _ 39 powder _ NOUN NN _ 37 nmod _ _ 40 to _ PART TO _ 42 mark _ _ 41 really _ ADV RB _ 42 advmod _ _ 42 clean _ VERB VB _ 35 advcl _ _ 43 the _ DET DT _ 44 det _ _ 44 laundry _ NOUN NN _ 42 dobj _ _ 45 . _ PUNCT . _ 10 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 early _ ADJ JJ _ 4 amod _ _ 4 1980s _ NOUN NNS _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 P&G _ PROPN NNP _ 7 nsubj _ _ 7 tried _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 launch _ VERB VB _ 7 xcomp _ _ 10 here _ ADV RB _ 9 advmod _ _ 11 a _ DET DT _ 13 det _ _ 12 concentrated _ ADJ JJ _ 13 amod _ _ 13 detergent _ NOUN NN _ 9 dobj _ _ 14 under _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 Ariel _ PROPN NNP _ 18 compound _ _ 17 brand _ NOUN NN _ 18 compound _ _ 18 name _ NOUN NN _ 9 nmod _ _ 19 that _ ADP IN _ 21 dobj _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 markets _ VERB VBZ _ 18 acl:relcl _ _ 22 in _ ADP IN _ 23 case _ _ 23 Europe _ PROPN NNP _ 21 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 product _ NOUN NN _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 9 nsubj _ _ 6 was _ VERB VBD _ 9 cop _ _ 7 n't _ PART RB _ 9 neg _ _ 8 as _ ADV RB _ 9 advmod _ _ 9 concentrated _ ADJ JJ _ 3 acl:relcl _ _ 10 as _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 Cheer _ PROPN NNP _ 9 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 bombed _ VERB VBD _ 0 root _ _ 16 in _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 market _ NOUN NN _ 19 compound _ _ 19 test _ NOUN NN _ 15 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 Denver _ PROPN NNP _ 19 nmod _ _ 22 and _ CONJ CC _ 15 cc _ _ 23 was _ AUX VBD _ 24 auxpass _ _ 24 dropped _ VERB VBN _ 15 conj _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 P&G _ PROPN NNP _ 6 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 others _ NOUN NNS _ 1 conj _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 tried _ VERB VBN _ 0 root _ _ 7 repeatedly _ ADV RB _ 6 advmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 hook _ VERB VB _ 6 xcomp _ _ 10 consumers _ NOUN NNS _ 9 dobj _ _ 11 on _ ADP IN _ 16 case _ _ 12 detergent _ NOUN NN _ 16 compound _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 fabric _ NOUN NN _ 12 conj _ _ 15 softener _ NOUN NN _ 16 compound _ _ 16 combinations _ NOUN NNS _ 9 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 pouches _ NOUN NNS _ 16 nmod _ _ 19 , _ PUNCT , _ 6 punct _ _ 20 but _ CONJ CC _ 6 cc _ _ 21 they _ PRON PRP _ 24 nsubj _ _ 22 have _ AUX VBP _ 24 aux _ _ 23 n't _ PART RB _ 24 neg _ _ 24 sold _ VERB VBN _ 6 conj _ _ 25 well _ ADV RB _ 24 advmod _ _ 26 , _ PUNCT , _ 24 punct _ _ 27 despite _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 convenience _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 P&G _ PROPN NNP _ 3 nsubj _ _ 3 contends _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 new _ ADJ JJ _ 6 amod _ _ 6 Cheer _ PROPN NNP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 unique _ ADJ JJ _ 10 amod _ _ 10 formula _ NOUN NN _ 3 ccomp _ _ 11 that _ PRON WDT _ 13 nsubj _ _ 12 also _ ADV RB _ 13 advmod _ _ 13 offers _ VERB VBZ _ 10 acl:relcl _ _ 14 an _ DET DT _ 15 det _ _ 15 ingredient _ NOUN NN _ 13 dobj _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 prevents _ VERB VBZ _ 15 acl:relcl _ _ 18 colors _ NOUN NNS _ 17 dobj _ _ 19 from _ SCONJ IN _ 20 mark _ _ 20 fading _ VERB VBG _ 17 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 retailers _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 embrace _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 product _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 in _ ADP IN _ 11 case _ _ 11 part _ NOUN NN _ 15 nmod _ _ 12 because _ SCONJ IN _ 15 mark _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 will _ AUX MD _ 15 aux _ _ 15 take _ VERB VB _ 4 advcl _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 less _ ADJ JJR _ 19 amod _ _ 18 shelf _ NOUN NN _ 19 compound _ _ 19 space _ NOUN NN _ 15 dobj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 When _ ADV WRB _ 6 advmod _ _ 3 shelf _ NOUN NN _ 4 compound _ _ 4 space _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 cheap _ ADJ JJ _ 10 advcl _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 bigger _ ADJ JJR _ 10 nsubj _ _ 9 was _ VERB VBD _ 10 cop _ _ 10 better _ ADJ JJR _ 13 ccomp _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 Hugh _ PROPN NNP _ 15 compound _ _ 15 Zurkuhlen _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 an _ DET DT _ 18 det _ _ 18 analyst _ NOUN NN _ 15 appos _ _ 19 at _ ADP IN _ 21 case _ _ 20 Salomon _ PROPN NNP _ 21 compound _ _ 21 Bros _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 with _ SCONJ IN _ 6 mark _ _ 3 so _ ADV RB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 brands _ NOUN NNS _ 6 nsubj _ _ 6 vying _ VERB VBG _ 15 advcl _ _ 7 for _ ADP IN _ 8 case _ _ 8 space _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 that _ PRON DT _ 15 nsubj _ _ 11 's _ VERB VBZ _ 15 cop _ _ 12 no _ ADV RB _ 13 neg _ _ 13 longer _ ADV RBR _ 15 advmod _ _ 14 the _ DET DT _ 15 det _ _ 15 case _ NOUN NN _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 Cheer _ PROPN NNP _ 5 nsubj _ _ 5 sells _ VERB VBZ _ 14 advcl _ _ 6 well _ ADV RB _ 5 advmod _ _ 7 , _ PUNCT , _ 14 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 trend _ NOUN NN _ 14 nsubj _ _ 10 toward _ ADP IN _ 12 case _ _ 11 smaller _ ADJ JJR _ 12 amod _ _ 12 packaging _ NOUN NN _ 9 nmod _ _ 13 is _ VERB VBZ _ 14 cop _ _ 14 likely _ ADJ JJ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 accelerate _ VERB VB _ 14 xcomp _ _ 17 as _ SCONJ IN _ 19 mark _ _ 18 competitors _ NOUN NNS _ 19 nsubj _ _ 19 follow _ VERB VBP _ 16 advcl _ _ 20 with _ ADP IN _ 23 case _ _ 21 their _ PRON PRP$ _ 23 nmod:poss _ _ 22 own _ ADJ JJ _ 23 amod _ _ 23 superconcentrates _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 Then _ ADV RB _ 6 advmod _ _ 2 retailers _ NOUN NNS _ 6 nsubj _ _ 3 `` _ PUNCT `` _ 6 punct _ _ 4 will _ AUX MD _ 6 aux _ _ 5 probably _ ADV RB _ 6 advmod _ _ 6 push _ VERB VB _ 17 ccomp _ _ 7 the _ DET DT _ 11 det _ _ 8 -LCB- _ PUNCT -LRB- _ 9 punct _ _ 9 less-established _ ADJ JJ _ 11 dep _ _ 10 -RCB- _ PUNCT -RRB- _ 9 punct _ _ 11 brands _ NOUN NNS _ 6 dobj _ _ 12 out _ ADP RP _ 6 compound:prt _ _ 13 altogether _ ADV RB _ 6 advmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Competition _ NOUN NN _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 bound _ ADJ JJ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 get _ VERB VB _ 3 xcomp _ _ 6 tougher _ ADJ JJR _ 5 xcomp _ _ 7 if _ SCONJ IN _ 9 mark _ _ 8 Kao _ PROPN NNP _ 9 nsubj _ _ 9 introduces _ VERB VBZ _ 5 advcl _ _ 10 a _ DET DT _ 11 det _ _ 11 product _ NOUN NN _ 9 dobj _ _ 12 like _ ADP IN _ 13 case _ _ 13 Attack _ PROPN NNP _ 11 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 U.S. _ PROPN NNP _ 9 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 To _ PART TO _ 3 mark _ _ 2 be _ VERB VB _ 3 cop _ _ 3 sure _ ADJ JJ _ 8 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 Kao _ PROPN NNP _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 have _ VERB VB _ 0 root _ _ 9 an _ DET DT _ 11 det _ _ 10 easy _ ADJ JJ _ 11 amod _ _ 11 time _ NOUN NN _ 8 dobj _ _ 12 taking _ VERB VBG _ 11 dep _ _ 13 U.S. _ PROPN NNP _ 15 compound _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 share _ NOUN NN _ 12 dobj _ _ 16 away _ ADV RB _ 12 advmod _ _ 17 from _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 mighty _ ADJ JJ _ 20 amod _ _ 20 P&G _ PROPN NNP _ 16 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 has _ VERB VBZ _ 20 acl:relcl _ _ 24 about _ ADV RB _ 25 advmod _ _ 25 23 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 market _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 Kao _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 5 nsubj _ _ 3 previously _ ADV RB _ 5 advmod _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 said _ VERB VBN _ 0 root _ _ 6 they _ PRON PRP _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 interested _ ADJ JJ _ 5 ccomp _ _ 9 in _ SCONJ IN _ 10 mark _ _ 10 selling _ VERB VBG _ 8 advcl _ _ 11 detergents _ NOUN NNS _ 10 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 U.S. _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 but _ CONJ CC _ 5 cc _ _ 17 so _ ADV RB _ 18 advmod _ _ 18 far _ ADV RB _ 22 advmod _ _ 19 the _ DET DT _ 20 det _ _ 20 company _ NOUN NN _ 22 nsubj _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 focused _ VERB VBN _ 5 conj _ _ 23 on _ ADP IN _ 24 case _ _ 24 acquisitions _ NOUN NNS _ 22 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 31 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 year _ NOUN NN _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 purchase _ NOUN NN _ 24 nmod _ _ 32 of _ ADP IN _ 35 case _ _ 33 Andrew _ PROPN NNP _ 35 compound _ _ 34 Jergens _ PROPN NNP _ 35 compound _ _ 35 Co. _ PROPN NNP _ 31 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 a _ DET DT _ 40 det _ _ 38 Cincinnati _ PROPN NNP _ 40 compound _ _ 39 hand-lotion _ NOUN NN _ 40 compound _ _ 40 maker _ NOUN NN _ 35 appos _ _ 41 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 product-testing _ NOUN NN _ 6 compound _ _ 6 facility _ NOUN NN _ 3 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 California _ PROPN NNP _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 believe _ VERB VBP _ 0 root _ _ 3 P&G _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 interest _ NOUN NN _ 10 nsubj _ _ 6 in _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 superconcentrated _ ADJ JJ _ 9 amod _ _ 9 detergent _ NOUN NN _ 5 nmod _ _ 10 goes _ VERB VBZ _ 2 ccomp _ _ 11 beyond _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 concern _ NOUN NN _ 10 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 Japanese _ PROPN NNPS _ 13 nmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 something _ NOUN NN _ 14 ccomp _ _ 5 P&G _ PROPN NNP _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 do _ VERB VB _ 4 acl:relcl _ _ 8 with _ ADP IN _ 11 case _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 without _ ADP IN _ 8 conj _ _ 11 Kao _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Zurkuhlen _ PROPN NNP _ 14 nsubj _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 With _ SCONJ IN _ 9 mark _ _ 2 economic _ ADJ JJ _ 3 amod _ _ 3 tension _ NOUN NN _ 9 nsubj _ _ 4 between _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 U.S. _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Japan _ PROPN NNP _ 6 conj _ _ 9 worsening _ VERB VBG _ 14 advcl _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 many _ ADJ JJ _ 14 nsubj _ _ 12 Japanese _ VERB VBP _ 11 dep _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 feared _ VERB VBN _ 0 root _ _ 15 last _ ADJ JJ _ 16 amod _ _ 16 week _ NOUN NN _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 visit _ NOUN NN _ 14 dobj _ _ 19 from _ ADP IN _ 24 case _ _ 20 U.S. _ PROPN NNP _ 24 compound _ _ 21 Trade _ PROPN NNP _ 24 compound _ _ 22 Representative _ PROPN NNP _ 24 compound _ _ 23 Carla _ PROPN NNP _ 24 compound _ _ 24 Hills _ PROPN NNP _ 18 nmod _ _ 25 . _ PUNCT . _ 14 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 expected _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 barrage _ NOUN NN _ 2 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 demands _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 Japan _ PROPN NNP _ 10 nsubj _ _ 10 do _ VERB VB _ 7 ccomp _ _ 11 something _ NOUN NN _ 10 dobj _ _ 12 quickly _ ADV RB _ 10 advmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 reduce _ VERB VB _ 10 advcl _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 trade _ NOUN NN _ 17 compound _ _ 17 surplus _ NOUN NN _ 14 dobj _ _ 18 with _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 U.S. _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Instead _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 got _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 discussion _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 need _ NOUN NN _ 6 nmod _ _ 10 for _ SCONJ IN _ 16 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 16 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Japan _ PROPN NNP _ 12 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 work _ VERB VB _ 9 acl _ _ 17 together _ ADV RB _ 16 advmod _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 importance _ NOUN NN _ 9 conj _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 long-term _ ADJ JJ _ 25 amod _ _ 25 view _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 5 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 first _ ADJ JJ _ 5 amod _ _ 5 trip _ NOUN NN _ 14 nsubj _ _ 6 to _ ADP TO _ 7 case _ _ 7 Japan _ PROPN NNP _ 5 nmod _ _ 8 as _ ADP IN _ 13 case _ _ 9 America _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 chief _ ADJ JJ _ 13 amod _ _ 12 trade _ NOUN NN _ 13 compound _ _ 13 negotiator _ NOUN NN _ 5 nmod _ _ 14 had _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 18 det _ _ 16 completely _ ADV RB _ 17 advmod _ _ 17 different _ ADJ JJ _ 18 amod _ _ 18 tone _ NOUN NN _ 14 dobj _ _ 19 from _ ADP IN _ 23 case _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 month _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 visit _ NOUN NN _ 18 nmod _ _ 24 by _ ADP IN _ 29 case _ _ 25 Commerce _ PROPN NNP _ 29 compound _ _ 26 Secretary _ PROPN NNP _ 29 compound _ _ 27 Robert _ PROPN NNP _ 29 compound _ _ 28 A. _ PROPN NNP _ 29 compound _ _ 29 Mosbacher _ PROPN NNP _ 23 nmod _ _ 30 . _ PUNCT . _ 14 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mosbacher _ PROPN NNP _ 3 nsubj _ _ 3 called _ VERB VBD _ 0 root _ _ 4 for _ ADP IN _ 6 case _ _ 5 concrete _ ADJ JJ _ 6 amod _ _ 6 results _ NOUN NNS _ 3 nmod _ _ 7 by _ ADP IN _ 9 case _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 spring _ NOUN NN _ 6 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 negotiations _ NOUN NNS _ 3 nmod _ _ 12 over _ ADP IN _ 16 case _ _ 13 fundamental _ ADJ JJ _ 16 amod _ _ 14 Japanese _ ADJ JJ _ 16 amod _ _ 15 business _ NOUN NN _ 16 compound _ _ 16 practices _ NOUN NNS _ 11 nmod _ _ 17 that _ PRON WDT _ 19 nsubj _ _ 18 supposedly _ ADV RB _ 19 advmod _ _ 19 inhibit _ VERB VBP _ 16 acl:relcl _ _ 20 free _ ADJ JJ _ 21 amod _ _ 21 trade _ NOUN NN _ 19 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 such _ ADJ JJ _ 4 amod _ _ 4 results _ NOUN NNS _ 8 nsubj _ _ 5 should _ AUX MD _ 8 aux _ _ 6 be _ VERB VB _ 8 cop _ _ 7 `` _ PUNCT `` _ 8 punct _ _ 8 measurable _ ADJ JJ _ 2 ccomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 dollars _ NOUN NNS _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 cents _ NOUN NNS _ 10 conj _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 14 in _ SCONJ IN _ 15 mark _ _ 15 reducing _ VERB VBG _ 8 advcl _ _ 16 the _ DET DT _ 19 det _ _ 17 U.S. _ PROPN NNP _ 19 compound _ _ 18 trade _ NOUN NN _ 19 compound _ _ 19 deficit _ NOUN NN _ 15 dobj _ _ 20 with _ ADP IN _ 21 case _ _ 21 Japan _ PROPN NNP _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 21 cc _ _ 2 Mrs. _ PROPN NNP _ 3 compound _ _ 3 Hills _ PROPN NNP _ 21 nsubj _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 speaking _ VERB VBG _ 21 advcl _ _ 6 at _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 breakfast _ NOUN NN _ 9 compound _ _ 9 meeting _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 American _ PROPN NNP _ 13 compound _ _ 13 Chamber _ PROPN NNP _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 Commerce _ PROPN NNP _ 13 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 Japan _ PROPN NNP _ 13 nmod _ _ 18 on _ ADP IN _ 19 case _ _ 19 Saturday _ PROPN NNP _ 5 nmod _ _ 20 , _ PUNCT , _ 21 punct _ _ 21 stressed _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 26 mark _ _ 23 the _ DET DT _ 24 det _ _ 24 objective _ NOUN NN _ 26 nsubj _ _ 25 `` _ PUNCT `` _ 26 punct _ _ 26 is _ VERB VBZ _ 21 ccomp _ _ 27 not _ PART RB _ 26 neg _ _ 28 to _ PART TO _ 29 mark _ _ 29 get _ VERB VB _ 26 xcomp _ _ 30 definitive _ ADJ JJ _ 31 amod _ _ 31 action _ NOUN NN _ 29 dobj _ _ 32 by _ ADP IN _ 33 case _ _ 33 spring _ NOUN NN _ 29 nmod _ _ 34 or _ CONJ CC _ 33 cc _ _ 35 summer _ NOUN NN _ 33 conj _ _ 36 , _ PUNCT , _ 26 punct _ _ 37 it _ PRON PRP _ 38 nsubj _ _ 38 is _ VERB VBZ _ 26 parataxis _ _ 39 rather _ ADV RB _ 38 advmod _ _ 40 to _ PART TO _ 41 mark _ _ 41 have _ VERB VB _ 38 xcomp _ _ 42 a _ DET DT _ 43 det _ _ 43 blueprint _ NOUN NN _ 41 dobj _ _ 44 for _ ADP IN _ 45 case _ _ 45 action _ NOUN NN _ 43 nmod _ _ 46 . _ PUNCT . _ 21 punct _ _ 47 '' _ PUNCT '' _ 21 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 5 mark _ _ 4 she _ PRON PRP _ 5 nsubj _ _ 5 expected _ VERB VBD _ 2 ccomp _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 perhaps _ ADV RB _ 9 advmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 have _ VERB VB _ 5 xcomp _ _ 10 a _ DET DT _ 12 det _ _ 11 down _ ADJ JJ _ 12 amod _ _ 12 payment _ NOUN NN _ 9 dobj _ _ 13 ... _ PUNCT : _ 12 punct _ _ 14 some _ DET DT _ 16 det _ _ 15 small _ ADJ JJ _ 16 amod _ _ 16 step _ NOUN NN _ 12 dep _ _ 17 to _ PART TO _ 18 mark _ _ 18 convince _ VERB VB _ 16 acl _ _ 19 the _ DET DT _ 21 det _ _ 20 American _ ADJ JJ _ 21 amod _ _ 21 people _ NOUN NNS _ 18 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 the _ DET DT _ 25 det _ _ 24 Japanese _ ADJ JJ _ 25 amod _ _ 25 people _ NOUN NNS _ 21 conj _ _ 26 that _ SCONJ IN _ 29 mark _ _ 27 we _ PRON PRP _ 29 nsubj _ _ 28 're _ AUX VBP _ 29 aux _ _ 29 moving _ VERB VBG _ 18 ccomp _ _ 30 in _ ADP IN _ 31 case _ _ 31 earnest _ NOUN NN _ 29 nmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 33 '' _ PUNCT '' _ 2 punct _ _ 1 How _ ADV WRB _ 4 advmod _ _ 2 such _ ADJ JJ _ 3 amod _ _ 3 remarks _ NOUN NNS _ 4 nsubj _ _ 4 translate _ VERB VBP _ 9 csubj _ _ 5 into _ ADP IN _ 6 case _ _ 6 policy _ NOUN NN _ 4 nmod _ _ 7 wo _ AUX MD _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 become _ VERB VB _ 0 root _ _ 10 clear _ ADJ JJ _ 9 xcomp _ _ 11 for _ ADP IN _ 12 case _ _ 12 months _ NOUN NNS _ 9 nmod _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 American _ ADJ JJ _ 4 amod _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Japanese _ ADJ JJ _ 1 conj _ _ 4 officials _ NOUN NNS _ 5 nsubj _ _ 5 offered _ VERB VBD _ 0 root _ _ 6 several _ ADJ JJ _ 7 amod _ _ 7 theories _ NOUN NNS _ 5 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 difference _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 approach _ NOUN NN _ 10 nmod _ _ 13 betwen _ NOUN NN _ 15 dep _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Mosbacher _ PROPN NNP _ 10 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Mrs. _ PROPN NNP _ 18 compound _ _ 18 Hills _ PROPN NNP _ 15 conj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Many _ ADJ JJ _ 2 nsubj _ _ 2 called _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 simply _ ADV RB _ 6 advmod _ _ 5 a _ DET DT _ 6 det _ _ 6 contrast _ NOUN NN _ 2 xcomp _ _ 7 in _ ADP IN _ 8 case _ _ 8 styles _ NOUN NNS _ 6 nmod _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 some _ DET DT _ 3 nsubj _ _ 3 saw _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 3 dobj _ _ 5 as _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 classic _ ADJ JJ _ 9 amod _ _ 8 negotiating _ NOUN NN _ 9 compound _ _ 9 tactic _ NOUN NN _ 3 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 Others _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Bush _ PROPN NNP _ 5 compound _ _ 5 administration _ NOUN NN _ 7 nsubj _ _ 6 may _ AUX MD _ 7 aux _ _ 7 feel _ VERB VB _ 2 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 rhetoric _ NOUN NN _ 14 nsubj _ _ 10 on _ ADP IN _ 12 case _ _ 11 both _ DET DT _ 12 det _ _ 12 sides _ NOUN NNS _ 9 nmod _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 getting _ VERB VBG _ 7 ccomp _ _ 15 out _ ADP IN _ 14 advmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 hand _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 some _ DET DT _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 reflected _ VERB VBD _ 3 ccomp _ _ 6 the _ DET DT _ 8 det _ _ 7 growing _ VERB VBG _ 8 amod _ _ 8 debate _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Washington _ PROPN NNP _ 8 nmod _ _ 11 over _ SCONJ IN _ 12 mark _ _ 12 pursuing _ VERB VBG _ 8 acl _ _ 13 free _ ADJ JJ _ 14 amod _ _ 14 trade _ NOUN NN _ 12 dobj _ _ 15 with _ ADP IN _ 16 case _ _ 16 Japan _ PROPN NNP _ 14 nmod _ _ 17 versus _ ADP IN _ 19 case _ _ 18 some _ DET DT _ 19 det _ _ 19 kind _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 managed _ ADJ JJ _ 22 amod _ _ 22 trade _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Asked _ VERB VBD _ 13 ccomp _ _ 2 to _ PART TO _ 3 mark _ _ 3 compare _ VERB VB _ 1 xcomp _ _ 4 her _ PRON PRP _ 5 dep _ _ 5 visit _ NOUN NN _ 3 dobj _ _ 6 to _ ADP TO _ 8 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Mosbacher _ PROPN NNP _ 3 nmod _ _ 9 's _ PART POS _ 8 case _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Mrs. _ PROPN NNP _ 12 compound _ _ 12 Hills _ PROPN NNP _ 13 nsubj _ _ 13 replied _ VERB VBD _ 0 root _ _ 14 : _ PUNCT : _ 13 punct _ _ 15 `` _ PUNCT `` _ 19 punct _ _ 16 I _ PRON PRP _ 19 nsubj _ _ 17 did _ AUX VBD _ 19 aux _ _ 18 n't _ PART RB _ 19 neg _ _ 19 hear _ VERB VB _ 13 parataxis _ _ 20 every _ DET DT _ 21 det _ _ 21 word _ NOUN NN _ 19 dobj _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 spoke _ VERB VBD _ 21 acl:relcl _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 but _ CONJ CC _ 19 cc _ _ 26 as _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 general _ ADJ JJ _ 29 amod _ _ 29 proposition _ NOUN NN _ 32 nmod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 I _ PRON PRP _ 32 nsubj _ _ 32 think _ VERB VBP _ 19 conj _ _ 33 we _ PRON PRP _ 34 nsubj _ _ 34 have _ VERB VBP _ 32 ccomp _ _ 35 a _ DET DT _ 39 det _ _ 36 very _ ADV RB _ 37 advmod _ _ 37 consistent _ ADJ JJ _ 39 amod _ _ 38 trade _ NOUN NN _ 39 compound _ _ 39 strategy _ NOUN NN _ 34 dobj _ _ 40 in _ ADP IN _ 43 case _ _ 41 the _ DET DT _ 43 det _ _ 42 Bush _ PROPN NNP _ 43 compound _ _ 43 administration _ NOUN NN _ 34 nmod _ _ 44 . _ PUNCT . _ 13 punct _ _ 45 '' _ PUNCT '' _ 13 punct _ _ 1 Yet _ ADV RB _ 20 advmod _ _ 2 more _ ADJ JJR _ 4 advmod _ _ 3 than _ ADP IN _ 2 mwe _ _ 4 one _ NUM CD _ 6 nummod _ _ 5 American _ ADJ JJ _ 6 amod _ _ 6 official _ NOUN NN _ 20 nsubj _ _ 7 who _ PRON WP _ 8 nsubj _ _ 8 sat _ VERB VBD _ 6 acl:relcl _ _ 9 in _ ADP RP _ 8 compound:prt _ _ 10 with _ ADP IN _ 11 case _ _ 11 her _ PRON PRP _ 8 nmod _ _ 12 during _ ADP IN _ 14 case _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 days _ NOUN NNS _ 8 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 talks _ NOUN NNS _ 14 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 Japanese _ ADJ JJ _ 19 amod _ _ 19 officials _ NOUN NNS _ 14 nmod _ _ 20 said _ VERB VBD _ 0 root _ _ 21 her _ PRON PRP$ _ 22 nmod:poss _ _ 22 tone _ NOUN NN _ 27 nsubj _ _ 23 often _ ADV RB _ 27 advmod _ _ 24 was _ VERB VBD _ 27 cop _ _ 25 surprisingly _ ADV RB _ 27 advmod _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 conciliatory _ ADJ JJ _ 20 ccomp _ _ 28 . _ PUNCT . _ 20 punct _ _ 29 '' _ PUNCT '' _ 20 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 14 ccomp _ _ 4 my _ PRON PRP$ _ 5 nmod:poss _ _ 5 line _ NOUN NN _ 9 nsubj _ _ 6 has _ AUX VBZ _ 9 aux _ _ 7 been _ VERB VBN _ 9 cop _ _ 8 very _ ADV RB _ 9 advmod _ _ 9 consistent _ ADJ JJ _ 3 ccomp _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 '' _ PUNCT '' _ 14 punct _ _ 12 Mrs. _ PROPN NNP _ 13 compound _ _ 13 Hills _ PROPN NNP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 at _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 news _ NOUN NN _ 18 compound _ _ 18 conference _ NOUN NN _ 14 nmod _ _ 19 Saturday _ PROPN NNP _ 20 compound _ _ 20 afternoon _ NOUN NN _ 14 nmod:tmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubjpass _ _ 3 am _ AUX VBP _ 4 auxpass _ _ 4 painted _ VERB VBN _ 0 root _ _ 5 sometimes _ ADV RB _ 4 advmod _ _ 6 as _ ADP IN _ 7 case _ _ 7 ferocious _ ADJ JJ _ 4 advcl _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 perhaps _ ADV RB _ 12 advmod _ _ 10 because _ SCONJ IN _ 12 mark _ _ 11 I _ PRON PRP _ 12 nsubj _ _ 12 have _ VERB VBP _ 4 advcl _ _ 13 a _ DET DT _ 15 det _ _ 14 ferocious _ ADJ JJ _ 15 amod _ _ 15 list _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 statutes _ NOUN NNS _ 15 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 implement _ VERB VB _ 15 acl _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 feel _ VERB VB _ 0 root _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 ferocious _ ADJ JJ _ 4 xcomp _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 feel _ VERB VB _ 0 root _ _ 5 either _ CONJ CC _ 6 cc:preconj _ _ 6 hard _ ADJ JJ _ 4 xcomp _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 soft _ ADJ JJ _ 6 conj _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 feel _ VERB VBP _ 0 root _ _ 3 committed _ ADJ JJ _ 2 xcomp _ _ 4 to _ ADP TO _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 program _ NOUN NN _ 3 nmod _ _ 7 of _ SCONJ IN _ 8 mark _ _ 8 opening _ VERB VBG _ 6 acl _ _ 9 markets _ NOUN NNS _ 8 dobj _ _ 10 and _ CONJ CC _ 8 cc _ _ 11 expanding _ VERB VBG _ 8 conj _ _ 12 trade _ NOUN NN _ 11 dobj _ _ 13 . _ PUNCT . _ 2 punct _ _ 14 '' _ PUNCT '' _ 2 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 met _ VERB VBD _ 17 advcl _ _ 4 the _ DET DT _ 6 det _ _ 5 local _ ADJ JJ _ 6 amod _ _ 6 press _ NOUN NN _ 3 dobj _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 first _ ADJ JJ _ 10 amod _ _ 10 time _ NOUN NN _ 3 nmod _ _ 11 on _ ADP IN _ 12 case _ _ 12 Friday _ PROPN NNP _ 3 nmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 Mrs. _ PROPN NNP _ 15 compound _ _ 15 Hills _ PROPN NNP _ 17 nsubj _ _ 16 firmly _ ADV RB _ 17 advmod _ _ 17 reiterated _ VERB VBD _ 0 root _ _ 18 the _ DET DT _ 19 det _ _ 19 need _ NOUN NN _ 17 dobj _ _ 20 for _ ADP IN _ 21 case _ _ 21 progress _ NOUN NN _ 19 nmod _ _ 22 in _ SCONJ IN _ 23 mark _ _ 23 removing _ VERB VBG _ 21 acl _ _ 24 barriers _ NOUN NNS _ 23 dobj _ _ 25 to _ ADP TO _ 26 case _ _ 26 trade _ NOUN NN _ 24 nmod _ _ 27 in _ ADP IN _ 29 case _ _ 28 forest _ NOUN NN _ 29 compound _ _ 29 products _ NOUN NNS _ 24 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 satellites _ NOUN NNS _ 29 conj _ _ 32 and _ CONJ CC _ 29 cc _ _ 33 supercomputers _ NOUN NNS _ 29 conj _ _ 34 , _ PUNCT , _ 29 punct _ _ 35 three _ NUM CD _ 36 nummod _ _ 36 areas _ NOUN NNS _ 29 appos _ _ 37 targeted _ VERB VBN _ 36 acl _ _ 38 under _ ADP IN _ 42 case _ _ 39 the _ DET DT _ 42 det _ _ 40 Super _ PROPN NNP _ 42 compound _ _ 41 301 _ PROPN NNP _ 42 compound _ _ 42 provision _ NOUN NN _ 37 nmod _ _ 43 of _ ADP IN _ 47 case _ _ 44 the _ DET DT _ 47 det _ _ 45 1988 _ NUM CD _ 47 nummod _ _ 46 trade _ NOUN NN _ 47 compound _ _ 47 bill _ NOUN NN _ 42 nmod _ _ 48 . _ PUNCT . _ 17 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 highlighted _ VERB VBD _ 0 root _ _ 3 exclusionary _ ADJ JJ _ 5 amod _ _ 4 business _ NOUN NN _ 5 compound _ _ 5 practices _ NOUN NNS _ 2 dobj _ _ 6 that _ ADP IN _ 11 dobj _ _ 7 the _ DET DT _ 9 det _ _ 8 U.S. _ PROPN NNP _ 9 compound _ _ 9 government _ NOUN NN _ 11 nsubj _ _ 10 has _ AUX VBZ _ 11 aux _ _ 11 identified _ VERB VBN _ 5 acl:relcl _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 her _ PRON PRP$ _ 4 nmod:poss _ _ 3 main _ ADJ JJ _ 4 amod _ _ 4 thrust _ NOUN NN _ 5 nsubj _ _ 5 was _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 promote _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 importance _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 world-wide _ ADJ JJ _ 13 amod _ _ 12 free _ ADJ JJ _ 13 amod _ _ 13 trade _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 open _ ADJ JJ _ 16 amod _ _ 16 competition _ NOUN NN _ 13 conj _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 trade _ NOUN NN _ 5 compound _ _ 5 imbalance _ NOUN NN _ 8 nsubj _ _ 6 was _ VERB VBD _ 8 cop _ _ 7 mainly _ ADV RB _ 8 advmod _ _ 8 due _ ADJ JJ _ 2 ccomp _ _ 9 to _ ADP TO _ 11 case _ _ 10 macroeconomic _ ADJ JJ _ 11 amod _ _ 11 factors _ NOUN NNS _ 8 nmod _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 should _ AUX MD _ 16 aux _ _ 14 n't _ PART RB _ 16 neg _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 tackled _ VERB VBN _ 8 conj _ _ 17 by _ SCONJ IN _ 18 mark _ _ 18 setting _ VERB VBG _ 16 advcl _ _ 19 quantitative _ ADJ JJ _ 20 amod _ _ 20 targets _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 her _ PRON PRP$ _ 4 nmod:poss _ _ 3 news _ NOUN NN _ 4 compound _ _ 4 conference _ NOUN NN _ 12 nmod _ _ 5 for _ ADP IN _ 7 case _ _ 6 Japanese _ ADJ JJ _ 7 amod _ _ 7 reporters _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 one _ NUM CD _ 11 nummod _ _ 10 economics _ NOUN NN _ 11 compound _ _ 11 journalist _ NOUN NN _ 12 nsubj _ _ 12 summed _ VERB VBD _ 0 root _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 the _ DET DT _ 16 det _ _ 15 Japanese _ ADJ JJ _ 16 amod _ _ 16 sense _ NOUN NN _ 12 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 relief _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 My _ PRON PRP$ _ 3 nmod:poss _ _ 3 impression _ NOUN NN _ 4 nsubj _ _ 4 was _ VERB VBD _ 16 ccomp _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 you _ PRON PRP _ 12 nsubj _ _ 7 would _ AUX MD _ 12 aux _ _ 8 be _ VERB VB _ 12 cop _ _ 9 a _ DET DT _ 12 det _ _ 10 scary _ ADJ JJ _ 12 amod _ _ 11 old _ ADJ JJ _ 12 amod _ _ 12 lady _ NOUN NN _ 4 ccomp _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 drawing _ VERB VBG _ 16 xcomp _ _ 19 a _ DET DT _ 22 det _ _ 20 few _ ADJ JJ _ 22 amod _ _ 21 nervous _ ADJ JJ _ 22 amod _ _ 22 chuckles _ NOUN NNS _ 18 dobj _ _ 23 from _ ADP IN _ 25 case _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 colleagues _ NOUN NNS _ 18 nmod _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 But _ CONJ CC _ 5 cc _ _ 3 I _ PRON PRP _ 5 nsubj _ _ 4 am _ VERB VBP _ 5 cop _ _ 5 relieved _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 see _ VERB VB _ 5 xcomp _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 you _ PRON PRP _ 13 nsubj _ _ 10 are _ VERB VBP _ 13 cop _ _ 11 beautiful _ ADJ JJ _ 13 dep _ _ 12 and _ CONJ CC _ 13 cc _ _ 13 gentle _ ADJ JJ _ 7 ccomp _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 intelligent _ ADJ JJ _ 13 conj _ _ 16 and _ CONJ CC _ 13 cc _ _ 17 a _ DET DT _ 18 det _ _ 18 person _ NOUN NN _ 13 conj _ _ 19 of _ ADP IN _ 20 case _ _ 20 integrity _ NOUN NN _ 18 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 22 '' _ PUNCT '' _ 5 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Hills _ PROPN NNP _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 remarks _ NOUN NNS _ 6 nsubj _ _ 5 did _ AUX VBD _ 6 aux _ _ 6 raise _ NOUN NN _ 0 root _ _ 7 questions _ NOUN NNS _ 6 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 at _ ADP IN _ 14 advmod _ _ 10 least _ ADJ JJS _ 9 mwe _ _ 11 among _ ADP IN _ 14 case _ _ 12 some _ DET DT _ 14 det _ _ 13 U.S. _ PROPN NNP _ 14 compound _ _ 14 officials _ NOUN NNS _ 7 nmod _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 about _ SCONJ IN _ 24 mark _ _ 17 what _ PRON WP _ 24 dobj _ _ 18 exactly _ ADV RB _ 17 advmod _ _ 19 her _ PRON PRP$ _ 20 nmod:poss _ _ 20 stance _ NOUN NN _ 24 nsubj _ _ 21 is _ VERB VBZ _ 24 cop _ _ 22 on _ ADP IN _ 24 case _ _ 23 U.S. _ PROPN NNP _ 24 compound _ _ 24 access _ NOUN NN _ 7 acl _ _ 25 to _ ADP TO _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 Japanese _ ADJ JJ _ 29 amod _ _ 28 semiconductor _ NOUN NN _ 29 compound _ _ 29 market _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 U.S. _ PROPN NNP _ 3 compound _ _ 3 share _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Japanese _ ADJ JJ _ 7 amod _ _ 7 market _ NOUN NN _ 3 nmod _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 aux _ _ 10 stuck _ ADJ JJ _ 0 root _ _ 11 around _ ADP IN _ 13 case _ _ 12 10 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 10 nmod _ _ 14 for _ ADP IN _ 15 case _ _ 15 years _ NOUN NNS _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 Americans _ PROPN NNPS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 interpreted _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 1986 _ NUM CD _ 7 nummod _ _ 7 agreement _ NOUN NN _ 4 dobj _ _ 8 as _ SCONJ IN _ 9 mark _ _ 9 assuring _ VERB VBG _ 4 advcl _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 companies _ NOUN NNS _ 9 iobj _ _ 12 a _ DET DT _ 15 det _ _ 13 20 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 share _ NOUN NN _ 9 dobj _ _ 16 by _ ADP IN _ 17 case _ _ 17 1991 _ NUM CD _ 15 nmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 but _ CONJ CC _ 4 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 Japanese _ PROPN NNPS _ 23 nsubj _ _ 22 have _ AUX VBP _ 23 aux _ _ 23 denied _ VERB VBN _ 4 conj _ _ 24 making _ VERB VBG _ 23 xcomp _ _ 25 any _ DET DT _ 27 det _ _ 26 such _ ADJ JJ _ 27 amod _ _ 27 promise _ NOUN NN _ 24 dobj _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 one _ NUM CD _ 10 nmod _ _ 3 of _ ADP IN _ 6 case _ _ 4 her _ PRON PRP$ _ 6 nmod:poss _ _ 5 news _ NOUN NN _ 6 compound _ _ 6 conferences _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 Mrs. _ PROPN NNP _ 9 compound _ _ 9 Hills _ PROPN NNP _ 10 nsubj _ _ 10 said _ VERB VBD _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 I _ PRON PRP _ 14 nsubj _ _ 14 believe _ VERB VBP _ 10 ccomp _ _ 15 we _ PRON PRP _ 17 nsubj _ _ 16 can _ AUX MD _ 17 aux _ _ 17 do _ VERB VB _ 14 ccomp _ _ 18 much _ ADV RB _ 19 advmod _ _ 19 better _ ADV RBR _ 17 advmod _ _ 20 than _ ADP IN _ 22 case _ _ 21 20 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 19 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 24 '' _ PUNCT '' _ 10 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 stressed _ VERB VBD _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 `` _ PUNCT `` _ 10 punct _ _ 6 I _ PRON PRP _ 10 nsubj _ _ 7 am _ VERB VBP _ 10 cop _ _ 8 against _ ADP IN _ 10 case _ _ 9 managed _ ADJ JJ _ 10 amod _ _ 10 trade _ NOUN NN _ 3 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 not _ PART RB _ 4 neg _ _ 4 enter _ VERB VB _ 0 root _ _ 5 into _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 agreement _ NOUN NN _ 4 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 stipulates _ VERB VBZ _ 7 acl:relcl _ _ 10 to _ ADP TO _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 percentage _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Traditional _ PROPN NNP _ 3 compound _ _ 2 Industries _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 expects _ VERB VBZ _ 4 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 11 det _ _ 10 net _ ADJ JJ _ 11 amod _ _ 11 loss _ NOUN NN _ 8 dobj _ _ 12 for _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 fourth _ ADJ JJ _ 15 amod _ _ 15 quarter _ NOUN NN _ 11 nmod _ _ 16 that _ PRON WDT _ 17 nsubj _ _ 17 ended _ VERB VBD _ 15 acl:relcl _ _ 18 June _ PROPN NNP _ 17 nmod:tmod _ _ 19 30 _ NUM CD _ 18 nummod _ _ 20 and _ CONJ CC _ 6 cc _ _ 21 is _ AUX VBZ _ 22 aux _ _ 22 seeking _ VERB VBG _ 6 conj _ _ 23 new _ ADJ JJ _ 24 amod _ _ 24 financing _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 seller _ NOUN NN _ 8 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 photographic _ ADJ JJ _ 5 amod _ _ 5 products _ NOUN NNS _ 2 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 services _ NOUN NNS _ 5 conj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 it _ PRON PRP _ 11 nsubj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 considering _ VERB VBG _ 8 ccomp _ _ 12 a _ DET DT _ 13 det _ _ 13 number _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 financing _ NOUN NN _ 16 compound _ _ 16 alternatives _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 including _ VERB VBG _ 19 case _ _ 19 seeking _ VERB VBG _ 13 acl _ _ 20 increases _ NOUN NNS _ 19 dobj _ _ 21 in _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 credit _ NOUN NN _ 24 compound _ _ 24 lines _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Traditional _ PROPN NNP _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 estimate _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 6 det _ _ 6 amount _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 loss _ NOUN NN _ 6 nmod _ _ 10 and _ CONJ CC _ 2 cc _ _ 11 would _ AUX MD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 say _ VERB VB _ 2 conj _ _ 14 if _ SCONJ IN _ 16 mark _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 expects _ VERB VBZ _ 13 advcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 show _ VERB VB _ 16 xcomp _ _ 19 a _ DET DT _ 20 det _ _ 20 profit _ NOUN NN _ 18 dobj _ _ 21 for _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 year _ NOUN NN _ 11 nmod _ _ 4 ended _ VERB VBN _ 3 acl _ _ 5 June _ PROPN NNP _ 4 nmod:tmod _ _ 6 30 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1988 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 Traditional _ PROPN NNP _ 11 nsubj _ _ 11 reported _ VERB VBD _ 0 root _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 4.9 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.21 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 break _ VERB VB _ 0 root _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 fourth-quarter _ ADJ JJ _ 9 amod _ _ 9 results _ NOUN NNS _ 5 dobj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 latest _ ADJ JJS _ 5 amod _ _ 4 nine _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 9 nmod _ _ 6 net _ ADJ JJ _ 7 amod _ _ 7 income _ NOUN NN _ 9 nsubj _ _ 8 was _ VERB VBD _ 9 cop _ _ 9 $ _ SYM $ _ 0 root _ _ 10 4.7 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 1.31 _ NUM CD _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 revenue _ NOUN NN _ 9 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 44.3 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 Separately _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 would _ AUX MD _ 8 aux _ _ 8 file _ VERB VB _ 5 ccomp _ _ 9 a _ DET DT _ 12 det _ _ 10 delayed _ ADJ JJ _ 12 amod _ _ 11 fiscal-year _ NOUN NN _ 12 compound _ _ 12 report _ NOUN NN _ 8 dobj _ _ 13 with _ ADP IN _ 18 case _ _ 14 the _ DET DT _ 18 det _ _ 15 Securities _ PROPN NNP _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Exchange _ PROPN NNP _ 15 conj _ _ 18 Commission _ PROPN NNP _ 8 nmod _ _ 19 `` _ PUNCT `` _ 8 punct _ _ 20 within _ ADP IN _ 23 case _ _ 21 approximately _ ADV RB _ 23 advmod _ _ 22 45 _ NUM CD _ 23 nummod _ _ 23 days _ NOUN NNS _ 8 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 25 '' _ PUNCT '' _ 5 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 delay _ NOUN NN _ 5 nsubj _ _ 5 resulted _ VERB VBD _ 2 ccomp _ _ 6 from _ ADP IN _ 7 case _ _ 7 difficulties _ NOUN NNS _ 5 nmod _ _ 8 in _ SCONJ IN _ 9 mark _ _ 9 resolving _ VERB VBG _ 7 acl _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 accounting _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 settlement _ NOUN NN _ 11 nmod _ _ 15 with _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 Federal _ PROPN NNP _ 19 compound _ _ 18 Trade _ PROPN NNP _ 19 compound _ _ 19 Commission _ PROPN NNP _ 14 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 21 nmod _ _ 4 filed _ VERB VBN _ 3 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 federal _ ADJ JJ _ 7 amod _ _ 7 court _ NOUN NN _ 4 nmod _ _ 8 in _ ADP IN _ 9 case _ _ 9 August _ PROPN NNP _ 4 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 settle _ VERB VB _ 3 acl _ _ 12 FTC _ PROPN NNP _ 13 compound _ _ 13 objections _ NOUN NNS _ 11 dobj _ _ 14 to _ ADP TO _ 18 case _ _ 15 some _ DET DT _ 18 det _ _ 16 Traditional _ PROPN NNP _ 18 compound _ _ 17 sales _ NOUN NNS _ 18 compound _ _ 18 practices _ NOUN NNS _ 13 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 Traditional _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 it _ PRON PRP _ 24 nsubj _ _ 23 would _ AUX MD _ 24 aux _ _ 24 establish _ VERB VB _ 21 ccomp _ _ 25 a _ DET DT _ 29 det _ _ 26 $ _ SYM $ _ 29 amod _ _ 27 250,000 _ NUM CD _ 26 compound _ _ 28 trust _ NOUN NN _ 29 compound _ _ 29 fund _ NOUN NN _ 24 dobj _ _ 30 to _ PART TO _ 31 mark _ _ 31 provide _ VERB VB _ 29 acl _ _ 32 refunds _ NOUN NNS _ 31 dobj _ _ 33 to _ ADP TO _ 35 case _ _ 34 certain _ ADJ JJ _ 35 amod _ _ 35 customers _ NOUN NNS _ 31 nmod _ _ 36 . _ PUNCT . _ 21 punct _ _ 1 Information _ PROPN NNP _ 3 compound _ _ 2 International _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 sued _ VERB VBN _ 4 ccomp _ _ 8 by _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 buyer _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 computerized _ ADJ JJ _ 15 amod _ _ 14 newspaper-publishing _ ADJ JJ _ 15 amod _ _ 15 system _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 alleging _ VERB VBG _ 10 acl _ _ 18 that _ SCONJ IN _ 21 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 company _ NOUN NN _ 21 nsubj _ _ 21 failed _ VERB VBD _ 17 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 correct _ VERB VB _ 21 xcomp _ _ 24 deficiencies _ NOUN NNS _ 23 dobj _ _ 25 in _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 system _ NOUN NN _ 24 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 Information _ PROPN NNP _ 5 compound _ _ 5 International _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 lawsuit _ NOUN NN _ 16 nsubj _ _ 9 by _ ADP IN _ 11 case _ _ 10 two _ NUM CD _ 11 nummod _ _ 11 units _ NOUN NNS _ 8 nmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 Morris _ PROPN NNP _ 15 compound _ _ 14 Communications _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 11 nmod _ _ 16 seeks _ VERB VBZ _ 6 ccomp _ _ 17 restitution _ NOUN NN _ 16 dobj _ _ 18 of _ ADP IN _ 27 case _ _ 19 the _ DET DT _ 20 det _ _ 20 system _ NOUN NN _ 27 nmod:poss _ _ 21 's _ VERB VBZ _ 20 case _ _ 22 about _ ADV RB _ 23 advmod _ _ 23 $ _ SYM $ _ 27 amod _ _ 24 3 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 purchase _ NOUN NN _ 27 compound _ _ 27 price _ NOUN NN _ 17 nmod _ _ 28 and _ CONJ CC _ 17 cc _ _ 29 cancellation _ NOUN NN _ 17 conj _ _ 30 of _ ADP IN _ 33 case _ _ 31 a _ DET DT _ 33 det _ _ 32 software _ NOUN NN _ 33 compound _ _ 33 license _ NOUN NN _ 29 nmod _ _ 34 provided _ VERB VBN _ 33 acl _ _ 35 by _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 Morris _ PROPN NNP _ 38 compound _ _ 38 units _ NOUN NNS _ 34 nmod _ _ 39 to _ ADP TO _ 41 case _ _ 40 Information _ PROPN NNP _ 41 compound _ _ 41 International _ PROPN NNP _ 34 nmod _ _ 42 for _ ADP IN _ 44 case _ _ 43 alleged _ ADJ JJ _ 44 amod _ _ 44 failure _ NOUN NN _ 16 nmod _ _ 45 to _ PART TO _ 46 mark _ _ 46 pay _ VERB VB _ 44 acl _ _ 47 royalties _ NOUN NNS _ 46 dobj _ _ 48 . _ PUNCT . _ 6 punct _ _ 1 Information _ PROPN NNP _ 2 compound _ _ 2 International _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 believes _ VERB VBZ _ 3 ccomp _ _ 6 that _ SCONJ IN _ 19 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 complaints _ NOUN NNS _ 19 nsubj _ _ 9 , _ PUNCT , _ 19 punct _ _ 10 filed _ VERB VBN _ 19 advcl _ _ 11 in _ ADP IN _ 13 case _ _ 12 federal _ ADJ JJ _ 13 amod _ _ 13 court _ NOUN NN _ 10 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 Georgia _ PROPN NNP _ 13 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 are _ VERB VBP _ 19 cop _ _ 18 without _ ADP IN _ 19 case _ _ 19 merit _ NOUN NN _ 5 ccomp _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Closely _ ADV RB _ 2 advmod _ _ 2 held _ VERB VBN _ 4 amod _ _ 3 Morris _ PROPN NNP _ 4 compound _ _ 4 Communications _ PROPN NNP _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 based _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 8 case _ _ 8 Augusta _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Ga _ PROPN NNP _ 8 appos _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 units _ NOUN NNS _ 10 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 filed _ VERB VBD _ 2 acl:relcl _ _ 5 the _ DET DT _ 6 det _ _ 6 suit _ NOUN NN _ 4 dobj _ _ 7 are _ VERB VBP _ 10 cop _ _ 8 Southeastern _ PROPN NNP _ 10 compound _ _ 9 Newspapers _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 0 root _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Florida _ PROPN NNP _ 14 compound _ _ 13 Publishing _ PROPN NNP _ 14 compound _ _ 14 Co _ PROPN NNP _ 10 conj _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Syms _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 completed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 sale _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 A. _ PROPN NNP _ 9 compound _ _ 9 Sulka _ PROPN NNP _ 5 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Co. _ PROPN NNP _ 12 compound _ _ 12 subsidiary _ NOUN NN _ 9 conj _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 men _ NOUN NNS _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 luxury _ NOUN NN _ 18 compound _ _ 18 haberdashery _ NOUN NN _ 9 appos _ _ 19 , _ PUNCT , _ 9 punct _ _ 20 to _ ADP TO _ 22 case _ _ 21 Luxco _ PROPN NNP _ 22 compound _ _ 22 Investments _ PROPN NNP _ 5 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 As _ SCONJ IN _ 10 mark _ _ 2 Syms _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 `` _ PUNCT `` _ 6 punct _ _ 5 core _ ADJ JJ _ 6 amod _ _ 6 business _ NOUN NN _ 10 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 off-price _ ADJ JJ _ 9 amod _ _ 9 retailing _ NOUN NN _ 6 nmod _ _ 10 grows _ VERB VBZ _ 19 advcl _ _ 11 , _ PUNCT , _ 19 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 small _ ADJ JJ _ 14 amod _ _ 14 subsidiary _ NOUN NN _ 19 nsubj _ _ 15 that _ PRON WDT _ 18 nsubj _ _ 16 is _ VERB VBZ _ 18 cop _ _ 17 operationally _ ADV RB _ 18 advmod _ _ 18 unrelated _ ADJ JJ _ 14 acl:relcl _ _ 19 becomes _ VERB VBZ _ 25 ccomp _ _ 20 a _ DET DT _ 22 det _ _ 21 difficult _ ADJ JJ _ 22 amod _ _ 22 distraction _ NOUN NN _ 19 xcomp _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Marcy _ PROPN NNP _ 27 compound _ _ 27 Syms _ PROPN NNP _ 25 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 president _ NOUN NN _ 27 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 parent _ NOUN NN _ 29 nmod _ _ 33 , _ PUNCT , _ 25 punct _ _ 34 in _ ADP IN _ 36 case _ _ 35 a _ DET DT _ 36 det _ _ 36 statement _ NOUN NN _ 25 nmod _ _ 37 . _ PUNCT . _ 25 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokeswoman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Sulka _ PROPN NNP _ 5 nsubj _ _ 5 operates _ VERB VBZ _ 3 ccomp _ _ 6 a _ DET DT _ 7 det _ _ 7 total _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 seven _ NUM CD _ 10 nummod _ _ 10 stores _ NOUN NNS _ 7 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.S. _ PROPN NNP _ 5 dep _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 overseas _ ADV RB _ 13 conj _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Syms _ NOUN NNS _ 2 nsubj _ _ 2 operates _ VERB VBZ _ 0 root _ _ 3 25 _ NUM CD _ 6 nummod _ _ 4 off-price _ ADJ JJ _ 6 amod _ _ 5 apparel _ NOUN NN _ 6 compound _ _ 6 stores _ NOUN NNS _ 2 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 2 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 industry _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 middling _ ADJ JJ _ 6 amod _ _ 6 profits _ NOUN NNS _ 8 nsubj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 persist _ VERB VB _ 0 root _ _ 9 through _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 rest _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Major _ ADJ JJ _ 3 amod _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 companies _ NOUN NNS _ 10 nsubjpass _ _ 4 in _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 next _ ADJ JJ _ 8 amod _ _ 7 few _ ADJ JJ _ 8 amod _ _ 8 days _ NOUN NNS _ 10 nmod _ _ 9 are _ AUX VBP _ 10 auxpass _ _ 10 expected _ VERB VBN _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 report _ VERB VB _ 10 xcomp _ _ 13 much _ ADV RB _ 15 advmod _ _ 14 less _ ADV RBR _ 15 advmod _ _ 15 robust _ ADJ JJ _ 16 amod _ _ 16 earnings _ NOUN NNS _ 12 dobj _ _ 17 than _ SCONJ IN _ 23 mark _ _ 18 they _ PRON PRP _ 23 nsubj _ _ 19 did _ AUX VBD _ 23 aux _ _ 20 for _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 quarter _ NOUN NN _ 16 advcl _ _ 24 a _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 26 nmod:npmod _ _ 26 ago _ ADV RB _ 23 advmod _ _ 27 , _ PUNCT , _ 16 punct _ _ 28 largely _ ADV RB _ 32 advmod _ _ 29 reflecting _ VERB VBG _ 32 dep _ _ 30 deteriorating _ VERB VBG _ 32 amod _ _ 31 chemical _ NOUN NN _ 32 compound _ _ 32 prices _ NOUN NNS _ 16 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 gasoline _ NOUN NN _ 35 compound _ _ 35 profitability _ NOUN NN _ 32 conj _ _ 36 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 gasoline _ NOUN NN _ 3 compound _ _ 3 picture _ NOUN NN _ 5 nsubj _ _ 4 may _ AUX MD _ 5 aux _ _ 5 improve _ VERB VB _ 0 root _ _ 6 this _ DET DT _ 7 det _ _ 7 quarter _ NOUN NN _ 5 nmod:tmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 chemicals _ NOUN NNS _ 12 nsubj _ _ 11 are _ VERB VBP _ 12 cop _ _ 12 likely _ ADJ JJ _ 5 conj _ _ 13 to _ PART TO _ 14 mark _ _ 14 remain _ VERB VB _ 12 xcomp _ _ 15 weak _ ADJ JJ _ 14 xcomp _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 industry _ NOUN NN _ 18 compound _ _ 18 executives _ NOUN NNS _ 21 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 analysts _ NOUN NNS _ 18 conj _ _ 21 say _ VERB VBP _ 14 parataxis _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 reducing _ VERB VBG _ 14 xcomp _ _ 24 chances _ NOUN NNS _ 23 dobj _ _ 25 that _ SCONJ IN _ 28 mark _ _ 26 profits _ NOUN NNS _ 28 nsubj _ _ 27 could _ AUX MD _ 28 aux _ _ 28 equal _ VERB VB _ 24 ccomp _ _ 29 their _ PRON PRP$ _ 31 nmod:poss _ _ 30 year-earlier _ ADJ JJ _ 31 amod _ _ 31 performance _ NOUN NN _ 28 dobj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 industry _ NOUN NN _ 5 nsubj _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 `` _ PUNCT `` _ 5 punct _ _ 5 seeing _ VERB VBG _ 28 ccomp _ _ 6 a _ DET DT _ 7 det _ _ 7 softening _ NOUN NN _ 5 dobj _ _ 8 somewhat _ ADV RB _ 7 advmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 volume _ NOUN NN _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 certainly _ ADV RB _ 14 advmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 price _ NOUN NN _ 10 conj _ _ 15 in _ ADP IN _ 16 case _ _ 16 petrochemicals _ NOUN NNS _ 7 nmod _ _ 17 , _ PUNCT , _ 28 punct _ _ 18 '' _ PUNCT '' _ 28 punct _ _ 19 Glenn _ PROPN NNP _ 20 compound _ _ 20 Cox _ PROPN NNP _ 28 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 president _ NOUN NN _ 20 appos _ _ 23 of _ ADP IN _ 26 case _ _ 24 Phillips _ PROPN NNP _ 26 compound _ _ 25 Petroleum _ PROPN NNP _ 26 compound _ _ 26 Co. _ PROPN NNP _ 22 nmod _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 in _ ADP IN _ 31 case _ _ 30 an _ DET DT _ 31 det _ _ 31 interview _ NOUN NN _ 28 nmod _ _ 32 . _ PUNCT . _ 28 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 That _ DET DT _ 3 det _ _ 3 change _ NOUN NN _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 obviously _ ADV RB _ 6 advmod _ _ 6 impact _ VERB VB _ 20 ccomp _ _ 7 third _ ADJ JJ _ 11 amod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 fourth _ ADJ JJ _ 7 conj _ _ 10 quarter _ NOUN NN _ 11 compound _ _ 11 earnings _ NOUN NNS _ 6 dobj _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 industry _ NOUN NN _ 11 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 general _ ADJ JJ _ 15 acl _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 he _ PRON PRP _ 20 nsubj _ _ 20 added _ VERB VBD _ 0 root _ _ 21 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 did _ AUX VBD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 forecast _ VERB VBN _ 0 root _ _ 5 Phillips _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 results _ NOUN NNS _ 4 dobj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 securities _ NOUN NNS _ 3 compound _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 say _ VERB VBP _ 0 root _ _ 5 Phillips _ NOUN NNS _ 10 nsubj _ _ 6 will _ AUX MD _ 10 aux _ _ 7 be _ VERB VB _ 10 cop _ _ 8 among _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 companies _ NOUN NNS _ 4 ccomp _ _ 11 hard-hit _ ADJ JJ _ 10 amod _ _ 12 by _ ADP IN _ 15 case _ _ 13 weak _ ADJ JJ _ 15 amod _ _ 14 chemical _ NOUN NN _ 15 compound _ _ 15 prices _ NOUN NNS _ 11 nmod _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 will _ AUX MD _ 19 aux _ _ 18 probably _ ADV RB _ 19 advmod _ _ 19 post _ VERB VB _ 10 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 drop _ NOUN NN _ 19 dobj _ _ 22 in _ ADP IN _ 24 case _ _ 23 third-quarter _ ADJ JJ _ 24 amod _ _ 24 earnings _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 So _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 too _ ADV RB _ 9 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 many _ ADJ JJ _ 6 amod _ _ 6 analysts _ NOUN NNS _ 7 nsubj _ _ 7 predict _ VERB VBP _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 will _ AUX MD _ 0 root _ _ 10 Exxon _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 9 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Chevron _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 11 conj _ _ 15 and _ CONJ CC _ 11 cc _ _ 16 Amoco _ PROPN NNP _ 17 compound _ _ 17 Corp _ PROPN NNP _ 11 conj _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 Typical _ ADJ JJ _ 2 dep _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 what _ PRON WP _ 4 nsubj _ _ 4 happened _ VERB VBD _ 2 dep _ _ 5 to _ ADP TO _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 price _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 ethylene _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 14 det _ _ 12 major _ ADJ JJ _ 14 amod _ _ 13 commodity _ NOUN NN _ 14 compound _ _ 14 chemical _ NOUN NN _ 9 appos _ _ 15 produced _ VERB VBN _ 14 acl _ _ 16 in _ ADP IN _ 18 case _ _ 17 vast _ ADJ JJ _ 18 amod _ _ 18 amounts _ NOUN NNS _ 15 nmod _ _ 19 by _ ADP IN _ 22 case _ _ 20 many _ ADJ JJ _ 22 amod _ _ 21 oil _ NOUN NN _ 22 compound _ _ 22 companies _ NOUN NNS _ 15 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 plunged _ VERB VBN _ 0 root _ _ 4 13 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 since _ ADP IN _ 7 case _ _ 7 July _ PROPN NNP _ 3 nmod _ _ 8 to _ ADP TO _ 11 case _ _ 9 around _ ADP IN _ 10 advmod _ _ 10 26 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 3 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 pound _ NOUN NN _ 11 nmod:npmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 5 advmod _ _ 4 ethylene _ NOUN NN _ 5 nsubj _ _ 5 sold _ VERB VBD _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 33 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 peaking _ VERB VBG _ 5 xcomp _ _ 11 at _ ADP IN _ 14 case _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 34 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 10 nmod _ _ 15 last _ ADJ JJ _ 16 amod _ _ 16 December _ PROPN NNP _ 10 nmod:tmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 reason _ NOUN NN _ 10 nsubj _ _ 4 for _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 chemical _ NOUN NN _ 8 compound _ _ 7 price _ NOUN NN _ 8 compound _ _ 8 retreat _ NOUN NN _ 3 nmod _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 overexpansion _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 Beginning _ VERB VBG _ 3 case _ _ 2 in _ ADP IN _ 3 case _ _ 3 mid-1987 _ NOUN NN _ 6 advcl _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 prices _ NOUN NNS _ 6 nsubj _ _ 6 began _ VERB VBD _ 0 root _ _ 7 accelerating _ VERB VBG _ 6 xcomp _ _ 8 as _ SCONJ IN _ 17 mark _ _ 9 a _ DET DT _ 12 det _ _ 10 growing _ VERB VBG _ 12 amod _ _ 11 U.S. _ PROPN NNP _ 12 compound _ _ 12 economy _ NOUN NN _ 17 nsubj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 the _ DET DT _ 16 det _ _ 15 weak _ ADJ JJ _ 16 amod _ _ 16 dollar _ NOUN NN _ 12 conj _ _ 17 spurred _ VERB VBD _ 6 advcl _ _ 18 demand _ NOUN NN _ 17 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Companies _ NOUN NNS _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 capacity _ NOUN NN _ 2 dobj _ _ 4 furiously _ ADV RB _ 2 advmod _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 greatly _ ADV RB _ 4 advmod _ _ 4 increased _ VERB VBN _ 5 amod _ _ 5 supplies _ NOUN NNS _ 9 nsubj _ _ 6 are _ VERB VBP _ 9 cop _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 while _ SCONJ IN _ 15 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 dollar _ NOUN NN _ 15 nsubj _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 stronger _ ADJ JJR _ 9 advcl _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 domestic _ ADJ JJ _ 20 amod _ _ 19 economic _ ADJ JJ _ 20 amod _ _ 20 growth _ NOUN NN _ 22 nsubj _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 slower _ ADJ JJR _ 15 conj _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 Third-quarter _ ADJ JJ _ 2 amod _ _ 2 profits _ NOUN NNS _ 6 nsubj _ _ 3 from _ ADP IN _ 4 case _ _ 4 gasoline _ NOUN NN _ 2 nmod _ _ 5 were _ VERB VBD _ 6 cop _ _ 6 weaker _ ADJ JJR _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 Refining _ NOUN NN _ 3 compound _ _ 3 margins _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 good _ ADJ JJ _ 23 ccomp _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 third _ ADJ JJ _ 10 amod _ _ 10 quarter _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 year _ NOUN NN _ 10 nmod _ _ 14 and _ CONJ CC _ 6 cc _ _ 15 generally _ ADV RB _ 18 advmod _ _ 16 not _ ADV RB _ 18 neg _ _ 17 very _ ADV RB _ 18 advmod _ _ 18 good _ ADJ JJ _ 6 conj _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 18 nmod:tmod _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 William _ PROPN NNP _ 25 compound _ _ 25 Randol _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 29 det _ _ 28 securities _ NOUN NNS _ 29 compound _ _ 29 analyst _ NOUN NN _ 25 appos _ _ 30 at _ ADP IN _ 33 case _ _ 31 First _ PROPN NNP _ 33 compound _ _ 32 Boston _ PROPN NNP _ 33 compound _ _ 33 Corp _ PROPN NNP _ 29 nmod _ _ 34 . _ PUNCT . _ 23 punct _ _ 1 Oil _ NOUN NN _ 3 compound _ _ 2 company _ NOUN NN _ 3 compound _ _ 3 refineries _ NOUN NNS _ 4 nsubj _ _ 4 ran _ VERB VBD _ 0 root _ _ 5 flat _ ADV RB _ 6 advmod _ _ 6 out _ ADV RB _ 4 advmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 prepare _ VERB VB _ 4 xcomp _ _ 9 for _ ADP IN _ 14 case _ _ 10 a _ DET DT _ 14 det _ _ 11 robust _ ADJ JJ _ 14 amod _ _ 12 holiday _ NOUN NN _ 14 compound _ _ 13 driving _ NOUN NN _ 14 compound _ _ 14 season _ NOUN NN _ 8 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 July _ PROPN NNP _ 14 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 August _ PROPN NNP _ 16 conj _ _ 19 that _ PRON WDT _ 22 nsubj _ _ 20 did _ AUX VBD _ 22 aux _ _ 21 n't _ PART RB _ 22 neg _ _ 22 materialize _ VERB VB _ 14 acl:relcl _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 excess _ ADJ JJ _ 3 amod _ _ 3 supply _ NOUN NN _ 4 nsubj _ _ 4 pushed _ VERB VBD _ 0 root _ _ 5 gasoline _ NOUN NN _ 6 compound _ _ 6 prices _ NOUN NNS _ 4 dobj _ _ 7 down _ ADP RP _ 4 advmod _ _ 8 in _ ADP IN _ 10 case _ _ 9 that _ DET DT _ 10 det _ _ 10 period _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 crude _ ADJ JJ _ 6 amod _ _ 5 oil _ NOUN NN _ 6 compound _ _ 6 prices _ NOUN NNS _ 7 nsubj _ _ 7 were _ VERB VBD _ 0 root _ _ 8 up _ ADV RB _ 7 advmod _ _ 9 some _ DET DT _ 8 nmod:npmod _ _ 10 from _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 13 nmod:npmod _ _ 13 earlier _ ADV RBR _ 8 advcl _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 further _ ADV RB _ 16 advmod _ _ 16 pressuring _ VERB VBG _ 7 ccomp _ _ 17 profitability _ NOUN NN _ 16 dobj _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Refiners _ NOUN NNS _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 margins _ NOUN NNS _ 4 nsubj _ _ 4 picked _ VERB VBD _ 2 ccomp _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 in _ ADP IN _ 7 case _ _ 7 September _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 many _ ADJ JJ _ 12 amod _ _ 11 industry _ NOUN NN _ 12 compound _ _ 12 officials _ NOUN NNS _ 13 nsubj _ _ 13 believe _ VERB VBP _ 2 conj _ _ 14 gasoline _ NOUN NN _ 15 compound _ _ 15 profits _ NOUN NNS _ 17 nsubj _ _ 16 will _ AUX MD _ 17 aux _ _ 17 rebound _ VERB VB _ 13 ccomp _ _ 18 this _ DET DT _ 19 det _ _ 19 quarter _ NOUN NN _ 17 nmod:tmod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 though _ SCONJ IN _ 23 mark _ _ 22 still _ ADV RB _ 23 dep _ _ 23 not _ PART RB _ 17 advcl _ _ 24 to _ ADP TO _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 level _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 1988 _ NUM CD _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 fourth _ ADJ JJ _ 31 amod _ _ 31 quarter _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 During _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 1988 _ NUM CD _ 5 nummod _ _ 4 second _ ADJ JJ _ 5 amod _ _ 5 half _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 many _ ADJ JJ _ 8 amod _ _ 8 companies _ NOUN NNS _ 9 nsubj _ _ 9 posted _ VERB VBD _ 0 root _ _ 10 record _ ADJ JJ _ 11 amod _ _ 11 gasoline _ NOUN NN _ 9 dobj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 chemical _ NOUN NN _ 14 compound _ _ 14 profits _ NOUN NNS _ 11 conj _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Crude _ ADJ JJ _ 3 amod _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 production _ NOUN NN _ 5 nsubj _ _ 4 may _ AUX MD _ 5 aux _ _ 5 turn _ VERB VB _ 0 root _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 to _ PART TO _ 12 mark _ _ 8 be _ VERB VB _ 12 cop _ _ 9 the _ DET DT _ 12 det _ _ 10 most _ ADV RBS _ 11 advmod _ _ 11 surprising _ ADJ JJ _ 12 amod _ _ 12 element _ NOUN NN _ 5 xcomp _ _ 13 of _ ADP IN _ 16 case _ _ 14 companies _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 earnings _ NOUN NNS _ 12 nmod _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 16 nmod:tmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Prices _ NOUN NNS _ 20 nsubj _ _ 2 -- _ PUNCT : _ 20 punct _ _ 3 averaging _ VERB VBG _ 20 parataxis _ _ 4 roughly _ ADV RB _ 5 advmod _ _ 5 $ _ SYM $ _ 9 nmod:npmod _ _ 6 2 _ NUM CD _ 5 nummod _ _ 7 a _ DET DT _ 8 det _ _ 8 barrel _ NOUN NN _ 5 nmod:npmod _ _ 9 higher _ ADJ JJR _ 3 advmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 third _ ADJ JJ _ 13 amod _ _ 13 quarter _ NOUN NN _ 9 nmod _ _ 14 than _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 year _ NOUN NN _ 9 nmod _ _ 17 earlier _ ADV RBR _ 16 advmod _ _ 18 -- _ PUNCT : _ 20 punct _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 stayed _ VERB VBN _ 0 root _ _ 21 well _ ADV RB _ 26 advmod _ _ 22 above _ ADP IN _ 26 case _ _ 23 most _ ADJ JJS _ 24 amod _ _ 24 companies _ NOUN NNS _ 26 nmod:poss _ _ 25 ' _ PART POS _ 24 case _ _ 26 expectations _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 20 punct _ _ 1 Demand _ NOUN NN _ 5 nsubj _ _ 2 has _ AUX VBZ _ 5 aux _ _ 3 been _ VERB VBN _ 5 cop _ _ 4 much _ ADV RB _ 5 advmod _ _ 5 stronger _ ADJ JJR _ 0 root _ _ 6 than _ SCONJ IN _ 7 mark _ _ 7 anticipated _ VERB VBN _ 5 ccomp _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 and _ CONJ CC _ 5 cc _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 typically _ ADV RB _ 12 advmod _ _ 12 accelerates _ VERB VBZ _ 5 conj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 fourth _ ADJ JJ _ 16 amod _ _ 16 quarter _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 could _ AUX MD _ 4 aux _ _ 4 see _ VERB VB _ 12 ccomp _ _ 5 higher _ ADJ JJR _ 7 amod _ _ 6 oil _ NOUN NN _ 7 compound _ _ 7 prices _ NOUN NNS _ 4 dobj _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 4 nmod:tmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Bryan _ PROPN NNP _ 14 compound _ _ 14 Jacoboski _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 an _ DET DT _ 17 det _ _ 17 analyst _ NOUN NN _ 14 appos _ _ 18 at _ ADP IN _ 20 case _ _ 19 PaineWebber _ PROPN NNP _ 20 compound _ _ 20 Inc _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 12 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 translate _ VERB VB _ 0 root _ _ 4 into _ ADP IN _ 8 case _ _ 5 sharply _ ADV RB _ 6 advmod _ _ 6 higher _ ADJ JJR _ 8 amod _ _ 7 production _ NOUN NN _ 8 compound _ _ 8 profits _ NOUN NNS _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 particularly _ ADV RB _ 8 nmod _ _ 11 compared _ VERB VBN _ 10 case _ _ 12 with _ ADP IN _ 14 case _ _ 13 last _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 dep _ _ 15 when _ ADV WRB _ 19 advmod _ _ 16 oil _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 19 nsubj _ _ 18 steadily _ ADV RB _ 19 advmod _ _ 19 fell _ VERB VBD _ 14 acl:relcl _ _ 20 to _ ADP TO _ 22 case _ _ 21 below _ ADP IN _ 22 advmod _ _ 22 $ _ SYM $ _ 19 nmod _ _ 23 13 _ NUM CD _ 22 nummod _ _ 24 a _ DET DT _ 25 det _ _ 25 barrel _ NOUN NN _ 22 nmod:npmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 fourth _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 19 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 6 mark _ _ 2 oil _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 6 nsubj _ _ 4 have _ AUX VBP _ 6 aux _ _ 5 been _ VERB VBN _ 6 cop _ _ 6 better _ ADJ JJR _ 15 advcl _ _ 7 than _ SCONJ IN _ 8 mark _ _ 8 expected _ VERB VBN _ 6 ccomp _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 natural _ ADJ JJ _ 12 amod _ _ 11 gas _ NOUN NN _ 12 compound _ _ 12 prices _ NOUN NNS _ 15 nsubj _ _ 13 have _ AUX VBP _ 15 aux _ _ 14 been _ VERB VBN _ 15 cop _ _ 15 worse _ ADJ JJR _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 averaged _ VERB VBD _ 0 root _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 5 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 11 nmod:npmod _ _ 11 less _ ADJ JJR _ 7 xcomp _ _ 12 than _ SCONJ IN _ 16 mark _ _ 13 they _ PRON PRP _ 16 nsubj _ _ 14 were _ AUX VBD _ 16 aux _ _ 15 in _ ADP IN _ 16 case _ _ 16 1988 _ NUM CD _ 11 ccomp _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 main _ ADJ JJ _ 3 amod _ _ 3 reason _ NOUN NN _ 4 nsubj _ _ 4 remains _ VERB VBZ _ 0 root _ _ 5 weather _ NOUN NN _ 4 xcomp _ _ 6 . _ PUNCT . _ 4 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 summer _ NOUN NN _ 4 nsubj _ _ 3 was _ VERB VBD _ 4 cop _ _ 4 notable _ ADJ JJ _ 0 root _ _ 5 for _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 heat _ NOUN NN _ 8 compound _ _ 8 wave _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 drought _ NOUN NN _ 8 conj _ _ 11 that _ PRON WDT _ 12 nsubj _ _ 12 caused _ VERB VBD _ 8 acl:relcl _ _ 13 utilities _ NOUN NNS _ 12 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 burn _ VERB VB _ 12 xcomp _ _ 16 more _ ADJ JJR _ 18 amod _ _ 17 natural _ ADJ JJ _ 18 amod _ _ 18 gas _ NOUN NN _ 15 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 feed _ VERB VB _ 15 advcl _ _ 21 increased _ ADJ JJ _ 23 amod _ _ 22 electrical _ ADJ JJ _ 23 amod _ _ 23 demand _ NOUN NN _ 20 dobj _ _ 24 from _ ADP IN _ 27 case _ _ 25 air _ NOUN NN _ 27 compound _ _ 26 conditioning _ NOUN NN _ 27 compound _ _ 27 use _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 summer _ NOUN NN _ 9 nsubj _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 on _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 other _ ADJ JJ _ 7 amod _ _ 7 hand _ NOUN NN _ 9 nmod _ _ 8 , _ PUNCT , _ 9 punct _ _ 9 had _ VERB VBD _ 0 root _ _ 10 milder _ ADJ JJR _ 11 amod _ _ 11 weather _ NOUN NN _ 9 dobj _ _ 12 than _ ADP IN _ 13 case _ _ 13 usual _ ADJ JJ _ 11 acl _ _ 14 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 've _ AUX VBP _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 disappointed _ ADJ JJ _ 16 ccomp _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 performance _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 natural _ ADJ JJ _ 13 amod _ _ 12 gas _ NOUN NN _ 13 compound _ _ 13 prices _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Cox _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Phillips _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 president _ NOUN NN _ 18 appos _ _ 23 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 The _ DET DT _ 5 det _ _ 3 lagging _ VERB VBG _ 5 amod _ _ 4 gas _ NOUN NN _ 5 compound _ _ 5 price _ NOUN NN _ 8 nsubj _ _ 6 is _ AUX VBZ _ 8 aux _ _ 7 not _ PART RB _ 8 neg _ _ 8 going _ VERB VBG _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 assist _ VERB VB _ 8 xcomp _ _ 11 fourth _ ADJ JJ _ 13 amod _ _ 12 quarter _ NOUN NN _ 13 compound _ _ 13 performance _ NOUN NN _ 10 dobj _ _ 14 as _ SCONJ IN _ 17 mark _ _ 15 many _ ADJ JJ _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 expected _ VERB VBN _ 10 advcl _ _ 18 . _ PUNCT . _ 8 punct _ _ 19 '' _ PUNCT '' _ 8 punct _ _ 1 Going _ VERB VBG _ 18 advcl _ _ 2 into _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 fourth _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 18 punct _ _ 7 natural _ ADJ JJ _ 9 amod _ _ 8 gas _ NOUN NN _ 9 compound _ _ 9 prices _ NOUN NNS _ 18 nsubj _ _ 10 are _ VERB VBP _ 18 cop _ _ 11 anywhere _ ADV RB _ 17 advmod _ _ 12 from _ ADP IN _ 17 advmod _ _ 13 8 _ NUM CD _ 17 compound _ _ 14 % _ SYM NN _ 17 dep _ _ 15 to _ ADP TO _ 17 dep _ _ 16 17 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 18 nmod:npmod _ _ 18 lower _ ADJ JJR _ 0 root _ _ 19 than _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 22 nmod:npmod _ _ 22 earlier _ ADV RBR _ 18 advcl _ _ 23 . _ PUNCT . _ 18 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 13 nmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 natural _ ADJ JJ _ 5 amod _ _ 5 gas _ NOUN NN _ 13 nsubj _ _ 6 currently _ ADV RB _ 7 advmod _ _ 7 produced _ VERB VBN _ 5 acl _ _ 8 along _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Gulf _ PROPN NNP _ 11 compound _ _ 11 Coast _ PROPN NNP _ 7 nmod _ _ 12 is _ AUX VBZ _ 13 aux _ _ 13 selling _ VERB VBG _ 0 root _ _ 14 on _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 spot _ ADJ JJ _ 17 amod _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 around _ ADP IN _ 20 advmod _ _ 20 $ _ SYM $ _ 13 nmod _ _ 21 1.47 _ NUM CD _ 20 nummod _ _ 22 a _ DET DT _ 23 advmod _ _ 23 thousand _ NUM CD _ 25 nummod _ _ 24 cubic _ ADJ JJ _ 25 amod _ _ 25 feet _ NOUN NNS _ 20 nmod:npmod _ _ 26 , _ PUNCT , _ 13 punct _ _ 27 down _ ADV RB _ 13 advmod _ _ 28 13 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 27 nmod:npmod _ _ 30 from _ ADP IN _ 32 case _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 1.69 _ NUM CD _ 27 nmod _ _ 33 a _ DET DT _ 34 advmod _ _ 34 thousand _ NUM CD _ 36 nummod _ _ 35 cubic _ ADJ JJ _ 36 amod _ _ 36 feet _ NOUN NNS _ 32 nmod:npmod _ _ 37 a _ DET DT _ 38 det _ _ 38 year _ NOUN NN _ 39 nmod:npmod _ _ 39 ago _ ADV RB _ 32 advmod _ _ 40 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 26 nsubj _ _ 4 , _ PUNCT , _ 26 punct _ _ 5 trying _ VERB VBG _ 26 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 blunt _ ADJ JJ _ 5 xcomp _ _ 8 growing _ VERB VBG _ 9 amod _ _ 9 demands _ NOUN NNS _ 7 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 Western _ PROPN NNP _ 12 compound _ _ 12 Europe _ PROPN NNP _ 9 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 relaxation _ NOUN NN _ 9 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 controls _ NOUN NNS _ 15 nmod _ _ 18 on _ ADP IN _ 19 case _ _ 19 exports _ NOUN NNS _ 17 nmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 Soviet _ ADJ JJ _ 23 amod _ _ 23 bloc _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 is _ AUX VBZ _ 26 aux _ _ 26 questioning _ VERB VBG _ 0 root _ _ 27 whether _ SCONJ IN _ 36 mark _ _ 28 Italy _ PROPN NNP _ 33 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Ing _ PROPN NNP _ 33 compound _ _ 31 . _ PUNCT . _ 33 punct _ _ 32 C. _ PROPN NNP _ 33 compound _ _ 33 Olivetti _ PROPN NNP _ 36 nsubj _ _ 34 & _ CONJ CC _ 33 cc _ _ 35 Co. _ PROPN NNP _ 33 conj _ _ 36 supplied _ VERB VBD _ 26 ccomp _ _ 37 militarily _ ADV RB _ 38 advmod _ _ 38 valuable _ ADJ JJ _ 39 amod _ _ 39 technology _ NOUN NN _ 36 dobj _ _ 40 to _ ADP TO _ 42 case _ _ 41 the _ DET DT _ 42 det _ _ 42 Soviets _ PROPN NNPS _ 36 nmod _ _ 43 . _ PUNCT . _ 26 punct _ _ 1 Most _ ADJ JJS _ 31 nsubjpass _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 Western _ ADJ JJ _ 6 amod _ _ 5 European _ PROPN NNP _ 6 compound _ _ 6 members _ NOUN NNS _ 1 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 Coordinating _ PROPN NNP _ 9 compound _ _ 9 Committee _ PROPN NNP _ 6 nmod _ _ 10 on _ ADP IN _ 13 case _ _ 11 Multilateral _ PROPN NNP _ 13 compound _ _ 12 Export _ PROPN NNP _ 13 compound _ _ 13 Controls _ PROPN NNP _ 9 nmod _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 unofficial _ ADJ JJ _ 17 amod _ _ 17 forum _ NOUN NN _ 9 appos _ _ 18 through _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 25 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 25 nsubj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 allies _ NOUN NNS _ 21 conj _ _ 25 align _ VERB VBP _ 17 acl:relcl _ _ 26 their _ PRON PRP$ _ 28 nmod:poss _ _ 27 export-control _ ADJ JJ _ 28 amod _ _ 28 policies _ NOUN NNS _ 25 dobj _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 are _ AUX VBP _ 31 auxpass _ _ 31 expected _ VERB VBN _ 0 root _ _ 32 to _ PART TO _ 33 mark _ _ 33 argue _ VERB VB _ 31 xcomp _ _ 34 for _ ADP IN _ 38 case _ _ 35 more _ ADV RBR _ 36 advmod _ _ 36 liberal _ ADJ JJ _ 38 amod _ _ 37 export _ NOUN NN _ 38 compound _ _ 38 rules _ NOUN NNS _ 33 nmod _ _ 39 at _ ADP IN _ 41 case _ _ 40 a _ DET DT _ 41 det _ _ 41 meeting _ NOUN NN _ 33 nmod _ _ 42 to _ PART TO _ 44 mark _ _ 43 be _ AUX VB _ 44 auxpass _ _ 44 held _ VERB VBN _ 41 acl _ _ 45 in _ ADP IN _ 46 case _ _ 46 Paris _ PROPN NNP _ 44 nmod _ _ 47 Oct. _ PROPN NNP _ 44 nmod:tmod _ _ 48 25 _ NUM CD _ 47 nummod _ _ 49 and _ CONJ CC _ 47 cc _ _ 50 26 _ NUM CD _ 47 conj _ _ 51 . _ PUNCT . _ 31 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 plan _ VERB VBP _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 press _ VERB VB _ 2 xcomp _ _ 5 specifically _ ADV RB _ 8 advmod _ _ 6 for _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 relaxation _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 rules _ NOUN NNS _ 8 nmod _ _ 11 governing _ VERB VBG _ 10 acl _ _ 12 exports _ NOUN NNS _ 11 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 machine _ NOUN NN _ 15 compound _ _ 15 tools _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 computers _ NOUN NNS _ 15 conj _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 other _ ADJ JJ _ 21 amod _ _ 20 high-technology _ NOUN NN _ 21 compound _ _ 21 products _ NOUN NNS _ 15 conj _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 Bush _ PROPN NNP _ 4 compound _ _ 4 administration _ NOUN NN _ 5 nsubj _ _ 5 says _ VERB VBZ _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 wants _ VERB VBZ _ 5 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 see _ VERB VB _ 7 xcomp _ _ 10 evidence _ NOUN NN _ 9 dobj _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 all _ DET DT _ 14 det _ _ 13 Cocom _ PROPN NNP _ 14 compound _ _ 14 members _ NOUN NNS _ 16 nsubj _ _ 15 are _ AUX VBP _ 16 aux _ _ 16 complying _ VERB VBG _ 10 ccomp _ _ 17 fully _ ADV RB _ 16 advmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 existing _ ADJ JJ _ 21 amod _ _ 20 export-control _ ADJ JJ _ 21 amod _ _ 21 procedures _ NOUN NNS _ 16 nmod _ _ 22 before _ SCONJ IN _ 25 mark _ _ 23 it _ PRON PRP _ 25 nsubj _ _ 24 will _ AUX MD _ 25 aux _ _ 25 support _ VERB VB _ 9 advcl _ _ 26 further _ ADJ JJ _ 27 amod _ _ 27 liberalization _ NOUN NN _ 25 dobj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 make _ VERB VB _ 8 advcl _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 point _ NOUN NN _ 2 dobj _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 challenging _ VERB VBG _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 Italian _ ADJ JJ _ 11 amod _ _ 11 government _ NOUN NN _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 explain _ VERB VB _ 8 advcl _ _ 14 reports _ NOUN NNS _ 13 dobj _ _ 15 that _ SCONJ IN _ 19 mark _ _ 16 Olivetti _ PROPN NNP _ 19 nsubj _ _ 17 may _ AUX MD _ 19 aux _ _ 18 have _ AUX VB _ 19 aux _ _ 19 supplied _ VERB VBN _ 14 ccomp _ _ 20 the _ DET DT _ 22 det _ _ 21 Soviet _ PROPN NNP _ 22 compound _ _ 22 Union _ PROPN NNP _ 19 dobj _ _ 23 with _ ADP IN _ 26 case _ _ 24 sophisticated _ ADJ JJ _ 26 amod _ _ 25 computer-driven _ ADJ JJ _ 26 amod _ _ 26 devices _ NOUN NNS _ 19 nmod _ _ 27 that _ PRON WDT _ 30 nsubjpass _ _ 28 could _ AUX MD _ 30 aux _ _ 29 be _ AUX VB _ 30 auxpass _ _ 30 used _ VERB VBN _ 26 acl:relcl _ _ 31 to _ PART TO _ 32 mark _ _ 32 build _ VERB VB _ 30 xcomp _ _ 33 parts _ NOUN NNS _ 32 dobj _ _ 34 for _ ADP IN _ 36 case _ _ 35 combat _ NOUN NN _ 36 compound _ _ 36 aircraft _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 London _ PROPN NNP _ 4 compound _ _ 3 Sunday _ PROPN NNP _ 4 compound _ _ 4 Times _ PROPN NNP _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 8 nsubj _ _ 7 first _ ADV RB _ 8 advmod _ _ 8 reported _ VERB VBD _ 4 acl:relcl _ _ 9 the _ DET DT _ 11 det _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 concerns _ NOUN NNS _ 8 dobj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 cited _ VERB VBD _ 0 root _ _ 14 a _ DET DT _ 17 det _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 intelligence _ NOUN NN _ 17 compound _ _ 17 report _ NOUN NN _ 13 dobj _ _ 18 as _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 source _ NOUN NN _ 13 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 allegations _ NOUN NNS _ 20 nmod _ _ 24 that _ SCONJ IN _ 26 mark _ _ 25 Olivetti _ PROPN NNP _ 26 nsubj _ _ 26 exported _ VERB VBD _ 23 ccomp _ _ 27 $ _ SYM $ _ 26 dobj _ _ 28 25 _ NUM CD _ 29 compound _ _ 29 million _ NUM CD _ 27 nummod _ _ 30 in _ ADP IN _ 38 case _ _ 31 `` _ PUNCT `` _ 38 punct _ _ 32 embargoed _ ADJ JJ _ 38 amod _ _ 33 , _ PUNCT , _ 38 punct _ _ 34 state-of-the-art _ ADJ JJ _ 38 amod _ _ 35 , _ PUNCT , _ 38 punct _ _ 36 flexible _ ADJ JJ _ 38 amod _ _ 37 manufacturing _ NOUN NN _ 38 compound _ _ 38 systems _ NOUN NNS _ 27 nmod _ _ 39 to _ ADP TO _ 43 case _ _ 40 the _ DET DT _ 43 det _ _ 41 Soviet _ ADJ JJ _ 43 amod _ _ 42 aviation _ NOUN NN _ 43 compound _ _ 43 industry _ NOUN NN _ 26 nmod _ _ 44 . _ PUNCT . _ 13 punct _ _ 45 '' _ PUNCT '' _ 13 punct _ _ 1 Olivetti _ PROPN NNP _ 3 nsubj _ _ 2 reportedly _ ADV RB _ 3 advmod _ _ 3 began _ VERB VBD _ 0 root _ _ 4 shipping _ VERB VBG _ 3 xcomp _ _ 5 these _ DET DT _ 6 det _ _ 6 tools _ NOUN NNS _ 4 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 1984 _ NUM CD _ 3 nmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 State _ PROPN NNP _ 4 compound _ _ 3 Department _ PROPN NNP _ 4 compound _ _ 4 spokesman _ NOUN NN _ 5 nsubj _ _ 5 acknowledged _ VERB VBD _ 0 root _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 10 nsubj _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 discussing _ VERB VBG _ 5 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 allegations _ NOUN NNS _ 10 dobj _ _ 13 with _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 Italian _ ADJ JJ _ 16 amod _ _ 16 government _ NOUN NN _ 10 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 Cocom _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 but _ CONJ CC _ 5 cc _ _ 21 declined _ VERB VBD _ 5 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 confirm _ VERB VB _ 21 xcomp _ _ 24 any _ DET DT _ 25 det _ _ 25 details _ NOUN NNS _ 23 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Italian _ ADJ JJ _ 4 amod _ _ 2 President _ PROPN NNP _ 4 compound _ _ 3 Francesco _ PROPN NNP _ 4 compound _ _ 4 Cossiga _ PROPN NNP _ 5 nsubj _ _ 5 promised _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 quick _ ADJ JJ _ 8 amod _ _ 8 investigation _ NOUN NN _ 5 dobj _ _ 9 into _ SCONJ IN _ 12 mark _ _ 10 whether _ SCONJ IN _ 12 mark _ _ 11 Olivetti _ PROPN NNP _ 12 nsubj _ _ 12 broke _ VERB VBD _ 8 acl _ _ 13 Cocom _ PROPN NNP _ 14 compound _ _ 14 rules _ NOUN NNS _ 12 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 President _ PROPN NNP _ 2 compound _ _ 2 Bush _ PROPN NNP _ 3 nsubj _ _ 3 called _ VERB VBD _ 0 root _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 attention _ NOUN NN _ 3 dobj _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 matter _ NOUN NN _ 3 nmod _ _ 9 during _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Italian _ ADJ JJ _ 12 amod _ _ 12 leader _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 visit _ NOUN NN _ 3 nmod _ _ 15 here _ ADV RB _ 14 advmod _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 week _ NOUN NN _ 14 nmod:tmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Olivetti _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 denied _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 violated _ VERB VBD _ 3 ccomp _ _ 7 Cocom _ PROPN NNP _ 8 compound _ _ 8 rules _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 asserting _ VERB VBG _ 3 xcomp _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 reported _ ADJ JJ _ 14 amod _ _ 14 shipments _ NOUN NNS _ 17 nsubjpass _ _ 15 were _ AUX VBD _ 17 auxpass _ _ 16 properly _ ADV RB _ 17 advmod _ _ 17 licensed _ VERB VBN _ 10 ccomp _ _ 18 by _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Italian _ ADJ JJ _ 21 amod _ _ 21 authorities _ NOUN NNS _ 17 nmod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 11 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 legality _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 these _ DET DT _ 6 det _ _ 6 sales _ NOUN NNS _ 3 nmod _ _ 7 is _ VERB VBZ _ 11 cop _ _ 8 still _ ADV RB _ 11 advmod _ _ 9 an _ DET DT _ 11 det _ _ 10 open _ ADJ JJ _ 11 amod _ _ 11 question _ NOUN NN _ 19 advcl _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 disclosure _ NOUN NN _ 19 nsubjpass _ _ 15 could _ AUX MD _ 19 aux _ _ 16 n't _ PART RB _ 19 neg _ _ 17 be _ AUX VB _ 19 auxpass _ _ 18 better _ ADV RBR _ 19 advmod _ _ 19 timed _ VERB VBN _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 support _ VERB VB _ 19 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 position _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 export-control _ ADJ JJ _ 26 amod _ _ 26 hawks _ NOUN NNS _ 23 nmod _ _ 27 in _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 Pentagon _ PROPN NNP _ 26 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 the _ DET DT _ 33 det _ _ 32 intelligence _ NOUN NN _ 33 compound _ _ 33 community _ NOUN NN _ 29 conj _ _ 34 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 20 ccomp _ _ 4 to _ ADP TO _ 5 case _ _ 5 me _ PRON PRP _ 3 nmod _ _ 6 that _ SCONJ IN _ 11 mark _ _ 7 a _ DET DT _ 8 det _ _ 8 story _ NOUN NN _ 11 nsubj _ _ 9 like _ ADP IN _ 10 case _ _ 10 this _ PRON DT _ 8 nmod _ _ 11 breaks _ VERB VBZ _ 3 ccomp _ _ 12 just _ ADV RB _ 17 advmod _ _ 13 before _ ADP IN _ 17 case _ _ 14 every _ DET DT _ 17 det _ _ 15 important _ ADJ JJ _ 17 amod _ _ 16 Cocom _ PROPN NNP _ 17 compound _ _ 17 meeting _ NOUN NN _ 11 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 Washington _ PROPN NNP _ 23 compound _ _ 23 lobbyist _ NOUN NN _ 20 nsubj _ _ 24 for _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 number _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 30 case _ _ 28 U.S. _ PROPN NNP _ 30 compound _ _ 29 computer _ NOUN NN _ 30 compound _ _ 30 companies _ NOUN NNS _ 26 nmod _ _ 31 . _ PUNCT . _ 20 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Bush _ PROPN NNP _ 3 compound _ _ 3 administration _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 sent _ VERB VBN _ 0 root _ _ 6 conflicting _ ADJ JJ _ 7 amod _ _ 7 signals _ NOUN NNS _ 5 dobj _ _ 8 about _ ADP IN _ 11 case _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 export-control _ ADJ JJ _ 11 amod _ _ 11 policies _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 reflecting _ VERB VBG _ 5 advcl _ _ 14 unhealed _ ADJ JJ _ 15 amod _ _ 15 divisions _ NOUN NNS _ 13 dobj _ _ 16 among _ ADP IN _ 19 case _ _ 17 several _ ADJ JJ _ 19 amod _ _ 18 competing _ VERB VBG _ 19 amod _ _ 19 agencies _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 summer _ NOUN NN _ 6 nmod:tmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Bush _ PROPN NNP _ 6 nsubj _ _ 6 moved _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 administration _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 direction _ NOUN NN _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 gradual _ ADJ JJ _ 14 amod _ _ 14 liberalization _ NOUN NN _ 11 nmod _ _ 15 when _ ADV WRB _ 17 advmod _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 told _ VERB VBD _ 6 advcl _ _ 18 a _ DET DT _ 23 det _ _ 19 North _ PROPN NNP _ 23 compound _ _ 20 Atlantic _ PROPN NNP _ 23 compound _ _ 21 Treaty _ PROPN NNP _ 23 compound _ _ 22 Organization _ PROPN NNP _ 23 compound _ _ 23 meeting _ NOUN NN _ 17 dobj _ _ 24 that _ SCONJ IN _ 27 mark _ _ 25 he _ PRON PRP _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 allow _ VERB VB _ 17 ccomp _ _ 28 some _ DET DT _ 29 det _ _ 29 exceptions _ NOUN NNS _ 27 dobj _ _ 30 to _ ADP TO _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 Cocom _ PROPN NNP _ 33 compound _ _ 33 embargo _ NOUN NN _ 29 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 strategic _ ADJ JJ _ 36 amod _ _ 36 goods _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 12 cc _ _ 2 more _ ADV RBR _ 3 advmod _ _ 3 recently _ ADV RB _ 12 advmod _ _ 4 , _ PUNCT , _ 12 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Pentagon _ PROPN NNP _ 12 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 Commerce _ PROPN NNP _ 10 compound _ _ 10 Department _ PROPN NNP _ 6 conj _ _ 11 openly _ ADV RB _ 12 advmod _ _ 12 feuded _ VERB VBD _ 0 root _ _ 13 over _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 extent _ NOUN NN _ 12 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 which _ PRON WDT _ 20 nmod _ _ 18 Cocom _ PROPN NNP _ 20 nsubj _ _ 19 should _ AUX MD _ 20 aux _ _ 20 liberalize _ VERB VB _ 15 acl:relcl _ _ 21 exports _ NOUN NNS _ 20 dobj _ _ 22 of _ ADP IN _ 24 case _ _ 23 personal _ ADJ JJ _ 24 amod _ _ 24 computers _ NOUN NNS _ 21 nmod _ _ 25 to _ ADP TO _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 bloc _ NOUN NN _ 21 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 However _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 these _ DET DT _ 4 det _ _ 4 agencies _ NOUN NNS _ 6 nsubj _ _ 5 generally _ ADV RB _ 6 advmod _ _ 6 agree _ VERB VBP _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 West _ PROPN NNP _ 12 nsubj _ _ 10 should _ AUX MD _ 12 aux _ _ 11 be _ VERB VB _ 12 cop _ _ 12 cautious _ ADJ JJ _ 6 ccomp _ _ 13 about _ ADP IN _ 16 case _ _ 14 any _ DET DT _ 16 det _ _ 15 further _ ADJ JJ _ 16 amod _ _ 16 liberalization _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 21 ccomp _ _ 4 no _ DET DT _ 5 neg _ _ 5 evidence _ NOUN NN _ 3 nsubj _ _ 6 that _ SCONJ IN _ 18 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 Soviet _ ADJ JJ _ 9 amod _ _ 9 program _ NOUN NN _ 18 nsubj _ _ 10 to _ PART TO _ 14 mark _ _ 11 -LRB- _ PUNCT -LRB- _ 12 punct _ _ 12 illegally _ ADV RB _ 14 dep _ _ 13 -RRB- _ PUNCT -RRB- _ 12 punct _ _ 14 acquire _ VERB VB _ 9 acl _ _ 15 Western _ ADJ JJ _ 16 amod _ _ 16 technology _ NOUN NN _ 14 dobj _ _ 17 has _ AUX VBZ _ 18 aux _ _ 18 diminished _ VERB VBN _ 5 ccomp _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 a _ DET DT _ 25 det _ _ 23 State _ PROPN NNP _ 25 compound _ _ 24 Department _ PROPN NNP _ 25 compound _ _ 25 spokesman _ NOUN NN _ 21 nsubj _ _ 26 . _ PUNCT . _ 21 punct _ _ 1 Salomon _ PROPN NNP _ 4 compound _ _ 2 Brothers _ PROPN NNP _ 4 compound _ _ 3 International _ PROPN NNP _ 4 compound _ _ 4 Ltd. _ PROPN NNP _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 British _ ADJ JJ _ 8 amod _ _ 8 subsidiary _ NOUN NN _ 4 appos _ _ 9 of _ ADP IN _ 11 case _ _ 10 Salomon _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 announced _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 issue _ VERB VB _ 13 ccomp _ _ 17 warrants _ NOUN NNS _ 16 dobj _ _ 18 on _ ADP IN _ 19 case _ _ 19 shares _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 24 case _ _ 21 Hong _ PROPN NNP _ 24 compound _ _ 22 Kong _ PROPN NNP _ 24 compound _ _ 23 Telecommunications _ PROPN NNP _ 24 compound _ _ 24 Ltd _ PROPN NNP _ 19 nmod _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 move _ NOUN NN _ 4 nsubj _ _ 3 closely _ ADV RB _ 4 advmod _ _ 4 follows _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 similar _ ADJ JJ _ 7 amod _ _ 7 offer _ NOUN NN _ 4 dobj _ _ 8 by _ ADP IN _ 9 case _ _ 9 Salomon _ PROPN NNP _ 7 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 warrants _ NOUN NNS _ 7 nmod _ _ 12 for _ ADP IN _ 13 case _ _ 13 shares _ NOUN NNS _ 11 nmod _ _ 14 of _ ADP IN _ 19 case _ _ 15 Hongkong _ PROPN NNP _ 19 compound _ _ 16 & _ CONJ CC _ 15 cc _ _ 17 Shanghai _ PROPN NNP _ 15 conj _ _ 18 Banking _ PROPN NNP _ 19 compound _ _ 19 Corp _ PROPN NNP _ 13 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 latest _ ADJ JJS _ 4 amod _ _ 4 offer _ NOUN NN _ 19 nmod _ _ 5 , _ PUNCT , _ 19 punct _ _ 6 HK$ _ SYM $ _ 19 nsubjpass _ _ 7 62.5 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 10 US$ _ SYM $ _ 6 dep _ _ 11 8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 14 of _ ADP IN _ 16 case _ _ 15 three-year _ ADJ JJ _ 16 amod _ _ 16 warrants _ NOUN NNS _ 6 nmod _ _ 17 will _ AUX MD _ 19 aux _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 issued _ VERB VBN _ 0 root _ _ 20 in _ ADP IN _ 21 case _ _ 21 London _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 each _ DET DT _ 24 nsubj _ _ 24 giving _ VERB VBG _ 19 dep _ _ 25 buyers _ NOUN NNS _ 24 iobj _ _ 26 the _ DET DT _ 27 det _ _ 27 right _ NOUN NN _ 24 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 buy _ VERB VB _ 27 acl _ _ 30 one _ NUM CD _ 34 nummod _ _ 31 Hong _ PROPN NNP _ 34 compound _ _ 32 Kong _ PROPN NNP _ 34 compound _ _ 33 Telecommunications _ PROPN NNP _ 34 compound _ _ 34 share _ NOUN NN _ 29 dobj _ _ 35 at _ ADP IN _ 37 case _ _ 36 a _ DET DT _ 37 det _ _ 37 price _ NOUN NN _ 29 nmod _ _ 38 to _ PART TO _ 40 mark _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 determined _ VERB VBN _ 37 acl _ _ 41 Friday _ PROPN NNP _ 40 nmod:tmod _ _ 42 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 50 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 4 nummod _ _ 4 warrants _ NOUN NNS _ 7 nsubjpass _ _ 5 will _ AUX MD _ 7 aux _ _ 6 be _ AUX VB _ 7 auxpass _ _ 7 priced _ VERB VBN _ 0 root _ _ 8 at _ ADP IN _ 10 case _ _ 9 HK$ _ SYM $ _ 10 dep _ _ 10 1.25 _ NUM CD _ 7 nmod _ _ 11 each _ DET DT _ 10 dep _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 are _ AUX VBP _ 14 auxpass _ _ 14 expected _ VERB VBN _ 7 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 carry _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 18 det _ _ 18 premium _ NOUN NN _ 16 dobj _ _ 19 to _ ADP TO _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 share _ NOUN NN _ 22 compound _ _ 22 price _ NOUN NN _ 18 nmod _ _ 23 of _ ADP IN _ 26 case _ _ 24 about _ ADV RB _ 25 advmod _ _ 25 26 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 18 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 trading _ VERB VBG _ 13 nmod _ _ 3 on _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Stock _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 2 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 Hong _ PROPN NNP _ 9 compound _ _ 9 Kong _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 shares _ NOUN NNS _ 13 nsubj _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 Wednesday _ PROPN NNP _ 13 nmod:tmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 HK$ _ SYM $ _ 17 dep _ _ 17 4.80 _ NUM CD _ 13 nmod _ _ 18 each _ DET DT _ 17 dep _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 this _ DET DT _ 3 det _ _ 3 price _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 shares _ NOUN NNS _ 8 nsubj _ _ 7 would _ AUX MD _ 8 aux _ _ 8 have _ VERB VB _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 rise _ VERB VB _ 8 xcomp _ _ 11 above _ ADP IN _ 13 case _ _ 12 HK$ _ SYM $ _ 13 dep _ _ 13 6.05 _ NUM CD _ 10 nmod _ _ 14 for _ SCONJ IN _ 22 mark _ _ 15 subscribers _ NOUN NNS _ 22 nsubj _ _ 16 to _ ADP TO _ 19 case _ _ 17 Salomon _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 issue _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 22 mark _ _ 21 profitably _ ADV RB _ 22 advmod _ _ 22 convert _ VERB VB _ 10 advcl _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 warrants _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 While _ SCONJ IN _ 9 mark _ _ 2 Hong _ PROPN NNP _ 4 compound _ _ 3 Kong _ PROPN NNP _ 4 compound _ _ 4 companies _ NOUN NNS _ 9 nsubj _ _ 5 have _ AUX VBP _ 9 aux _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 past _ NOUN NN _ 9 nmod _ _ 9 issued _ VERB VBD _ 21 advcl _ _ 10 warrants _ NOUN NNS _ 9 dobj _ _ 11 on _ ADP IN _ 14 case _ _ 12 their _ PRON PRP$ _ 14 nmod:poss _ _ 13 own _ ADJ JJ _ 14 amod _ _ 14 shares _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 21 punct _ _ 16 Salomon _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 warrants _ NOUN NNS _ 21 nsubj _ _ 19 are _ VERB VBP _ 21 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 first _ ADJ JJ _ 0 root _ _ 22 here _ ADV RB _ 21 advmod _ _ 23 to _ PART TO _ 25 mark _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 issued _ VERB VBN _ 21 acl _ _ 26 by _ ADP IN _ 29 case _ _ 27 a _ DET DT _ 29 det _ _ 28 third _ ADJ JJ _ 29 amod _ _ 29 party _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 21 punct _ _ 1 Salomon _ PROPN NNP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 `` _ PUNCT `` _ 4 punct _ _ 4 cover _ VERB VB _ 0 root _ _ 5 '' _ PUNCT '' _ 4 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 warrants _ NOUN NNS _ 4 dobj _ _ 8 by _ SCONJ IN _ 9 mark _ _ 9 buying _ VERB VBG _ 4 advcl _ _ 10 sufficient _ ADJ JJ _ 11 amod _ _ 11 shares _ NOUN NNS _ 9 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 or _ CONJ CC _ 11 cc _ _ 14 options _ NOUN NNS _ 11 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 purchase _ NOUN NN _ 14 dep _ _ 17 shares _ NOUN NNS _ 16 dobj _ _ 18 , _ PUNCT , _ 11 punct _ _ 19 to _ PART TO _ 20 mark _ _ 20 cover _ VERB VB _ 11 acl _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 entire _ ADJ JJ _ 23 amod _ _ 23 position _ NOUN NN _ 20 dobj _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Bankers _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 warrants _ NOUN NNS _ 9 nsubj _ _ 4 for _ ADP IN _ 7 case _ _ 5 Hong _ PROPN NNP _ 6 compound _ _ 6 Kong _ PROPN NNP _ 7 compound _ _ 7 stocks _ NOUN NNS _ 3 nmod _ _ 8 are _ VERB VBP _ 9 cop _ _ 9 attractive _ ADJ JJ _ 2 ccomp _ _ 10 because _ SCONJ IN _ 12 mark _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 give _ VERB VBP _ 9 advcl _ _ 13 foreign _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 12 iobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 wary _ ADJ JJ _ 14 amod _ _ 17 of _ ADP IN _ 18 case _ _ 18 volatility _ NOUN NN _ 16 nmod _ _ 19 in _ ADP IN _ 24 case _ _ 20 the _ DET DT _ 21 det _ _ 21 colony _ NOUN NN _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 stock _ NOUN NN _ 24 compound _ _ 24 market _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 14 punct _ _ 26 an _ DET DT _ 27 det _ _ 27 opportunity _ NOUN NN _ 12 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 buy _ VERB VB _ 27 acl _ _ 30 shares _ NOUN NNS _ 29 dobj _ _ 31 without _ SCONJ IN _ 32 mark _ _ 32 taking _ VERB VBG _ 29 advcl _ _ 33 too _ ADV RB _ 34 advmod _ _ 34 great _ ADJ JJ _ 36 amod _ _ 35 a _ DET DT _ 36 det _ _ 36 risk _ NOUN NN _ 32 dobj _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 Hong _ PROPN NNP _ 5 compound _ _ 3 Kong _ PROPN NNP _ 5 compound _ _ 4 Telecommunications _ PROPN NNP _ 5 compound _ _ 5 warrants _ NOUN NNS _ 8 nsubj _ _ 6 should _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 attractive _ ADJ JJ _ 0 root _ _ 9 to _ ADP TO _ 10 case _ _ 10 buyers _ NOUN NNS _ 8 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Europe _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 the _ DET DT _ 15 det _ _ 15 bankers _ NOUN NNS _ 16 nsubj _ _ 16 added _ VERB VBD _ 8 parataxis _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 because _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 group _ NOUN NN _ 22 nsubj _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 one _ NUM CD _ 8 advcl _ _ 23 of _ ADP IN _ 25 case _ _ 24 a _ DET DT _ 25 det _ _ 25 handful _ NOUN NN _ 22 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 blue-chip _ ADJ JJ _ 28 amod _ _ 28 stocks _ NOUN NNS _ 25 nmod _ _ 29 on _ ADP IN _ 33 case _ _ 30 the _ DET DT _ 33 det _ _ 31 Hong _ PROPN NNP _ 33 compound _ _ 32 Kong _ PROPN NNP _ 33 compound _ _ 33 market _ NOUN NN _ 28 nmod _ _ 34 that _ PRON WDT _ 35 nsubj _ _ 35 has _ VERB VBZ _ 28 acl:relcl _ _ 36 international _ ADJ JJ _ 37 amod _ _ 37 appeal _ NOUN NN _ 35 dobj _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Santa _ PROPN NNP _ 5 compound _ _ 5 Barbara _ PROPN NNP _ 2 nmod _ _ 6 filed _ VERB VBD _ 0 root _ _ 7 suit _ NOUN NN _ 6 dobj _ _ 8 against _ ADP IN _ 14 case _ _ 9 former _ ADJ JJ _ 14 amod _ _ 10 stock _ NOUN NN _ 14 compound _ _ 11 speculator _ NOUN NN _ 14 compound _ _ 12 Ivan _ PROPN NNP _ 14 compound _ _ 13 F. _ PROPN NNP _ 14 compound _ _ 14 Boesky _ PROPN NNP _ 6 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Drexel _ PROPN NNP _ 19 compound _ _ 17 Burnham _ PROPN NNP _ 19 compound _ _ 18 Lambert _ PROPN NNP _ 19 compound _ _ 19 Inc. _ PROPN NNP _ 14 conj _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 charging _ VERB VBG _ 6 advcl _ _ 22 they _ PRON PRP _ 23 nsubj _ _ 23 defrauded _ VERB VBD _ 21 ccomp _ _ 24 the _ DET DT _ 25 det _ _ 25 thrift _ NOUN NN _ 23 dobj _ _ 26 by _ SCONJ IN _ 27 mark _ _ 27 concealing _ VERB VBG _ 23 advcl _ _ 28 their _ PRON PRP$ _ 29 nmod:poss _ _ 29 relationship _ NOUN NN _ 27 dobj _ _ 30 when _ ADV WRB _ 31 advmod _ _ 31 persuading _ VERB VBG _ 27 advcl _ _ 32 it _ PRON PRP _ 31 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 buy _ VERB VB _ 31 xcomp _ _ 35 $ _ SYM $ _ 34 dobj _ _ 36 284 _ NUM CD _ 37 compound _ _ 37 million _ NUM CD _ 35 nummod _ _ 38 in _ ADP IN _ 43 case _ _ 39 high-yield _ ADJ JJ _ 43 amod _ _ 40 , _ PUNCT , _ 43 punct _ _ 41 high-risk _ ADJ JJ _ 43 amod _ _ 42 junk _ NOUN NN _ 43 compound _ _ 43 bonds _ NOUN NNS _ 35 nmod _ _ 44 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 suit _ NOUN NN _ 12 nmod _ _ 4 filed _ VERB VBN _ 3 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 federal _ ADJ JJ _ 7 amod _ _ 7 court _ NOUN NN _ 4 nmod _ _ 8 Thursday _ PROPN NNP _ 4 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 S&L _ PROPN NNP _ 12 nsubj _ _ 12 alleged _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 26 mark _ _ 14 a _ DET DT _ 17 det _ _ 15 `` _ PUNCT `` _ 17 punct _ _ 16 disproportionate _ ADJ JJ _ 17 amod _ _ 17 number _ NOUN NN _ 26 nsubj _ _ 18 '' _ PUNCT '' _ 17 punct _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 bonds _ NOUN NNS _ 17 nmod _ _ 22 it _ PRON PRP _ 23 nsubj _ _ 23 purchased _ VERB VBD _ 21 acl:relcl _ _ 24 in _ ADP IN _ 25 case _ _ 25 1984 _ NUM CD _ 23 nmod _ _ 26 declined _ VERB VBD _ 12 ccomp _ _ 27 in _ ADP IN _ 28 case _ _ 28 value _ NOUN NN _ 26 nmod _ _ 29 . _ PUNCT . _ 12 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 purchased _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 bonds _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 suit _ NOUN NN _ 9 nsubj _ _ 9 alleged _ VERB VBD _ 3 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 after _ SCONJ IN _ 16 mark _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Boesky _ PROPN NNP _ 16 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Drexel _ PROPN NNP _ 13 conj _ _ 16 negotiated _ VERB VBD _ 3 advcl _ _ 17 an _ DET DT _ 18 det _ _ 18 agreement _ NOUN NN _ 16 dobj _ _ 19 for _ SCONJ IN _ 23 mark _ _ 20 Vagabond _ PROPN NNP _ 21 compound _ _ 21 Hotels _ PROPN NNP _ 23 nsubj _ _ 22 to _ PART TO _ 23 mark _ _ 23 purchase _ VERB VB _ 18 acl _ _ 24 a _ DET DT _ 27 det _ _ 25 51 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 27 amod _ _ 27 stake _ NOUN NN _ 23 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 thrift _ NOUN NN _ 27 nmod _ _ 31 for _ ADP IN _ 33 case _ _ 32 about _ ADV RB _ 33 advmod _ _ 33 $ _ SYM $ _ 23 nmod _ _ 34 34 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 33 nummod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Vagabond _ PROPN NNP _ 2 compound _ _ 2 Hotels _ PROPN NNP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 controlled _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Boesky _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 who _ PRON WP _ 12 nsubj _ _ 10 currently _ ADV RB _ 12 advmod _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 serving _ VERB VBG _ 7 acl:relcl _ _ 13 a _ DET DT _ 15 det _ _ 14 prison _ NOUN NN _ 15 compound _ _ 15 term _ NOUN NN _ 12 dobj _ _ 16 for _ ADP IN _ 18 case _ _ 17 securities _ NOUN NNS _ 18 compound _ _ 18 violations _ NOUN NNS _ 12 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Officials _ NOUN NNS _ 4 nsubj _ _ 2 at _ ADP IN _ 3 case _ _ 3 Drexel _ PROPN NNP _ 1 nmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 they _ PRON PRP _ 8 nsubj _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 seen _ VERB VBN _ 4 ccomp _ _ 9 the _ DET DT _ 10 det _ _ 10 suit _ NOUN NN _ 8 dobj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 thus _ ADV RB _ 15 advmod _ _ 13 could _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 comment _ VERB VB _ 8 conj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 12 nmod _ _ 3 to _ ADP TO _ 8 case _ _ 4 $ _ SYM $ _ 8 amod _ _ 5 33 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 compensatory _ ADJ JJ _ 8 amod _ _ 8 damages _ NOUN NNS _ 2 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 suit _ NOUN NN _ 12 nsubj _ _ 12 seeks _ VERB VBZ _ 0 root _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 100 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 18 case _ _ 17 punitive _ ADJ JJ _ 18 amod _ _ 18 damages _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 named _ VERB VBN _ 0 root _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 suit _ NOUN NN _ 2 nmod _ _ 6 is _ AUX VBZ _ 2 auxpass _ _ 7 Ivan _ PROPN NNP _ 10 compound _ _ 8 F. _ PROPN NNP _ 10 compound _ _ 9 Boesky _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 2 nsubjpass _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Northview _ PROPN NNP _ 13 compound _ _ 13 Corp. _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 successor _ NOUN NN _ 17 compound _ _ 17 company _ NOUN NN _ 13 appos _ _ 18 to _ ADP TO _ 20 case _ _ 19 Vagabonds _ PROPN NNP _ 20 compound _ _ 20 Hotels _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Northview _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 6 nsubjpass _ _ 3 could _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 located _ VERB VBN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 bonds _ NOUN NNS _ 7 dobj _ _ 10 after _ SCONJ IN _ 18 mark _ _ 11 a _ DET DT _ 12 det _ _ 12 representative _ NOUN NN _ 18 nsubj _ _ 13 of _ ADP IN _ 17 case _ _ 14 Ivan _ PROPN NNP _ 17 compound _ _ 15 F. _ PROPN NNP _ 17 compound _ _ 16 Boesky _ PROPN NNP _ 17 compound _ _ 17 Corp. _ PROPN NNP _ 12 nmod _ _ 18 visited _ VERB VBD _ 5 advcl _ _ 19 it _ PRON PRP _ 18 dobj _ _ 20 in _ ADP IN _ 21 case _ _ 21 November _ PROPN NNP _ 18 nmod _ _ 22 1983 _ NUM CD _ 21 nummod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 said _ VERB VBD _ 18 conj _ _ 25 Financial _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 28 nsubj _ _ 27 could _ AUX MD _ 28 aux _ _ 28 improve _ VERB VB _ 24 ccomp _ _ 29 its _ PRON PRP$ _ 31 nmod:poss _ _ 30 financial _ ADJ JJ _ 31 amod _ _ 31 condition _ NOUN NN _ 28 dobj _ _ 32 by _ SCONJ IN _ 33 mark _ _ 33 purchasing _ VERB VBG _ 28 advcl _ _ 34 the _ DET DT _ 35 det _ _ 35 bonds _ NOUN NNS _ 33 dobj _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Shortly _ ADV RB _ 4 advmod _ _ 2 before _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 visit _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Boesky _ PROPN NNP _ 12 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Drexel _ PROPN NNP _ 10 compound _ _ 10 representives _ NOUN NNS _ 7 conj _ _ 11 had _ AUX VBD _ 12 aux _ _ 12 met _ VERB VBN _ 0 root _ _ 13 with _ ADP IN _ 16 case _ _ 14 Financial _ PROPN NNP _ 16 compound _ _ 15 Corp. _ PROPN NNP _ 16 compound _ _ 16 officials _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 12 cc _ _ 18 had _ AUX VBD _ 19 aux _ _ 19 signed _ VERB VBN _ 12 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 letter _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 intent _ NOUN NN _ 21 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 acquire _ VERB VB _ 23 acl _ _ 26 the _ DET DT _ 29 det _ _ 27 51 _ NUM CD _ 28 compound _ _ 28 % _ SYM NN _ 29 amod _ _ 29 stake _ NOUN NN _ 25 dobj _ _ 30 in _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 company _ NOUN NN _ 29 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 However _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 agreement _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 canceled _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 8 case _ _ 8 June _ PROPN NNP _ 6 nmod _ _ 9 1984 _ NUM CD _ 8 nummod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 Financial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 purchased _ VERB VBD _ 29 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 bonds _ NOUN NNS _ 3 dobj _ _ 6 in _ ADP IN _ 11 case _ _ 7 at _ ADP IN _ 8 case _ _ 8 least _ ADJ JJS _ 9 nmod:npmod _ _ 9 70 _ NUM CD _ 11 nummod _ _ 10 different _ ADJ JJ _ 11 amod _ _ 11 transactions _ NOUN NNS _ 3 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 1984 _ NUM CD _ 3 nmod _ _ 14 and _ CONJ CC _ 3 cc _ _ 15 since _ ADP IN _ 16 case _ _ 16 then _ ADV RB _ 18 nmod _ _ 17 has _ AUX VBZ _ 18 aux _ _ 18 realized _ VERB VBN _ 3 conj _ _ 19 $ _ SYM $ _ 18 dobj _ _ 20 11 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 in _ ADP IN _ 23 case _ _ 23 losses _ NOUN NNS _ 19 nmod _ _ 24 on _ ADP IN _ 25 case _ _ 25 them _ PRON PRP _ 18 nmod _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 the _ DET DT _ 28 det _ _ 28 company _ NOUN NN _ 29 nsubj _ _ 29 said _ VERB VBD _ 0 root _ _ 30 . _ PUNCT . _ 29 punct _ _ 1 Ideal _ PROPN NNP _ 4 compound _ _ 2 Basic _ PROPN NNP _ 4 compound _ _ 3 Industries _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 directors _ NOUN NNS _ 8 nsubj _ _ 8 reached _ VERB VBD _ 5 ccomp _ _ 9 an _ DET DT _ 10 det _ _ 10 agreement _ NOUN NN _ 8 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 principle _ NOUN NN _ 10 nmod _ _ 13 calling _ VERB VBG _ 10 acl _ _ 14 for _ SCONJ IN _ 20 mark _ _ 15 HOFI _ PROPN NNP _ 18 compound _ _ 16 North _ PROPN NNP _ 18 compound _ _ 17 America _ PROPN NNP _ 18 compound _ _ 18 Inc. _ PROPN NNP _ 20 nsubj _ _ 19 to _ PART TO _ 20 mark _ _ 20 combine _ VERB VB _ 13 advcl _ _ 21 its _ PRON PRP$ _ 25 nmod:poss _ _ 22 North _ ADJ JJ _ 23 amod _ _ 23 American _ ADJ JJ _ 25 amod _ _ 24 cement _ NOUN NN _ 25 compound _ _ 25 holdings _ NOUN NNS _ 20 dobj _ _ 26 with _ ADP IN _ 27 case _ _ 27 Ideal _ PROPN NNP _ 20 nmod _ _ 28 in _ ADP IN _ 30 case _ _ 29 a _ DET DT _ 30 det _ _ 30 transaction _ NOUN NN _ 20 nmod _ _ 31 that _ PRON WDT _ 33 nsubj _ _ 32 will _ AUX MD _ 33 aux _ _ 33 leave _ VERB VB _ 30 acl:relcl _ _ 34 Ideal _ PROPN NNP _ 37 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 minority _ NOUN NN _ 37 compound _ _ 37 shareholders _ NOUN NNS _ 33 dobj _ _ 38 with _ ADP IN _ 40 case _ _ 39 12.8 _ NUM CD _ 40 nummod _ _ 40 % _ SYM NN _ 33 nmod _ _ 41 of _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 combined _ ADJ JJ _ 44 amod _ _ 44 company _ NOUN NN _ 40 nmod _ _ 45 . _ PUNCT . _ 5 punct _ _ 1 HOFI _ PROPN NNP _ 17 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 7 det _ _ 4 North _ ADJ JJ _ 5 amod _ _ 5 American _ ADJ JJ _ 7 amod _ _ 6 holding _ NOUN NN _ 7 compound _ _ 7 company _ NOUN NN _ 1 appos _ _ 8 of _ ADP IN _ 14 case _ _ 9 Swiss _ ADJ JJ _ 14 amod _ _ 10 concern _ NOUN NN _ 14 compound _ _ 11 Holderbank _ PROPN NNP _ 14 compound _ _ 12 Financiere _ PROPN NNP _ 14 compound _ _ 13 Glaris _ PROPN NNP _ 14 compound _ _ 14 Ltd. _ PROPN NNP _ 7 nmod _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 previously _ ADV RB _ 17 advmod _ _ 17 proposed _ VERB VBD _ 0 root _ _ 18 combining _ VERB VBG _ 17 xcomp _ _ 19 its _ PRON PRP$ _ 22 nmod:poss _ _ 20 100 _ NUM CD _ 21 compound _ _ 21 % _ SYM NN _ 22 amod _ _ 22 stake _ NOUN NN _ 18 dobj _ _ 23 in _ ADP IN _ 27 case _ _ 24 St. _ PROPN NNP _ 27 compound _ _ 25 Lawrence _ PROPN NNP _ 27 compound _ _ 26 Cement _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 22 nmod _ _ 28 and _ CONJ CC _ 22 cc _ _ 29 its _ PRON PRP$ _ 32 nmod:poss _ _ 30 60 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 32 amod _ _ 32 stake _ NOUN NN _ 22 conj _ _ 33 in _ ADP IN _ 36 case _ _ 34 Dundee _ PROPN NNP _ 36 compound _ _ 35 Cement _ PROPN NNP _ 36 compound _ _ 36 Co. _ PROPN NNP _ 32 nmod _ _ 37 with _ ADP IN _ 41 case _ _ 38 its _ PRON PRP$ _ 41 nmod:poss _ _ 39 67 _ NUM CD _ 40 compound _ _ 40 % _ SYM NN _ 41 amod _ _ 41 stake _ NOUN NN _ 18 nmod _ _ 42 in _ ADP IN _ 43 case _ _ 43 Ideal _ NOUN NN _ 41 nmod _ _ 44 . _ PUNCT . _ 17 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 HOFI _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 first _ ADJ JJ _ 5 amod _ _ 5 offer _ NOUN NN _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 have _ AUX VB _ 8 aux _ _ 8 given _ VERB VBN _ 0 root _ _ 9 Ideal _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 other _ ADJ JJ _ 12 amod _ _ 12 shareholders _ NOUN NNS _ 8 iobj _ _ 13 about _ ADV RB _ 14 advmod _ _ 14 10 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 8 dobj _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 combined _ ADJ JJ _ 19 amod _ _ 19 company _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 Ideal _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 directors _ NOUN NNS _ 4 nsubj _ _ 4 rejected _ VERB VBD _ 0 root _ _ 5 that _ DET DT _ 6 det _ _ 6 offer _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 although _ SCONJ IN _ 10 mark _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 said _ VERB VBD _ 4 advcl _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 endorsed _ VERB VBD _ 10 ccomp _ _ 13 the _ DET DT _ 15 det _ _ 14 merger _ NOUN NN _ 15 compound _ _ 15 proposal _ NOUN NN _ 12 dobj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 HOFI _ PROPN NNP _ 7 nsubj _ _ 6 will _ AUX MD _ 7 aux _ _ 7 own _ VERB VB _ 0 root _ _ 8 87.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 combined _ ADJ JJ _ 13 amod _ _ 13 company _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Ideal _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 current _ ADJ JJ _ 4 amod _ _ 4 operations _ NOUN NNS _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 represent _ VERB VB _ 0 root _ _ 7 about _ ADV RB _ 8 advmod _ _ 8 39.2 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 6 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 combined _ ADJ JJ _ 13 amod _ _ 13 company _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 transaction _ NOUN NN _ 4 nsubj _ _ 3 is _ VERB VBZ _ 4 cop _ _ 4 subject _ ADJ JJ _ 0 root _ _ 5 to _ ADP TO _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 definitive _ ADJ JJ _ 8 amod _ _ 8 agreement _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 approval _ NOUN NN _ 8 conj _ _ 11 by _ ADP IN _ 13 case _ _ 12 Ideal _ PROPN NNP _ 13 compound _ _ 13 shareholders _ NOUN NNS _ 8 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 Ideal _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 complete _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 transaction _ NOUN NN _ 6 dobj _ _ 9 early _ ADV RB _ 11 advmod _ _ 10 next _ ADJ JJ _ 11 amod _ _ 11 year _ NOUN NN _ 6 nmod:tmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 While _ SCONJ IN _ 7 mark _ _ 2 corn _ NOUN NN _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 soybean _ NOUN NN _ 2 conj _ _ 5 prices _ NOUN NNS _ 7 nsubj _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 slumped _ VERB VBN _ 18 advcl _ _ 8 well _ ADV RB _ 12 advmod _ _ 9 below _ ADP IN _ 12 case _ _ 10 their _ PRON PRP$ _ 12 nmod:poss _ _ 11 drought-induced _ ADJ JJ _ 12 amod _ _ 12 peaks _ NOUN NNS _ 7 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 1988 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 wheat _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 18 nsubj _ _ 18 remain _ VERB VBP _ 0 root _ _ 19 stubbornly _ ADV RB _ 20 advmod _ _ 20 high _ ADJ JJ _ 18 xcomp _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 they _ PRON PRP _ 4 nsubj _ _ 3 're _ VERB VBP _ 4 cop _ _ 4 likely _ ADJ JJ _ 15 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 stay _ VERB VB _ 4 xcomp _ _ 7 that _ DET DT _ 8 det _ _ 8 way _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 10 case _ _ 10 months _ NOUN NNS _ 6 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 come _ VERB VB _ 10 acl _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 analysts _ NOUN NNS _ 15 nsubj _ _ 15 say _ VERB VBP _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 one _ NUM CD _ 3 nummod _ _ 3 thing _ NOUN NN _ 22 nmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 even _ ADV RB _ 9 advmod _ _ 6 with _ SCONJ IN _ 9 mark _ _ 7 many _ ADJ JJ _ 8 amod _ _ 8 farmers _ NOUN NNS _ 9 nsubj _ _ 9 planting _ VERB VBG _ 22 advcl _ _ 10 more _ ADJ JJR _ 12 amod _ _ 11 winter _ NOUN NN _ 12 compound _ _ 12 wheat _ NOUN NN _ 9 dobj _ _ 13 this _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 9 nmod:tmod _ _ 15 than _ ADP IN _ 16 case _ _ 16 last _ ADJ JJ _ 9 nmod _ _ 17 , _ PUNCT , _ 22 punct _ _ 18 tight _ ADJ JJ _ 20 amod _ _ 19 wheat _ NOUN NN _ 20 compound _ _ 20 supplies _ NOUN NNS _ 22 nsubj _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 likely _ ADJ JJ _ 32 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 support _ VERB VB _ 22 xcomp _ _ 25 prices _ NOUN NNS _ 24 dobj _ _ 26 well _ ADV RB _ 28 advmod _ _ 27 into _ ADP IN _ 28 case _ _ 28 1990 _ NUM CD _ 24 nmod _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 the _ DET DT _ 31 det _ _ 31 analysts _ NOUN NNS _ 32 nsubj _ _ 32 say _ VERB VBP _ 0 root _ _ 33 . _ PUNCT . _ 32 punct _ _ 1 And _ CONJ CC _ 27 cc _ _ 2 if _ SCONJ IN _ 6 mark _ _ 3 rain _ NOUN NN _ 6 nsubj _ _ 4 does _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 fall _ VERB VB _ 27 advcl _ _ 7 soon _ ADV RB _ 6 advmod _ _ 8 across _ ADP IN _ 9 case _ _ 9 many _ ADJ JJ _ 6 nmod _ _ 10 of _ ADP IN _ 16 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Great _ PROPN NNP _ 13 compound _ _ 13 Plains _ PROPN NNP _ 16 nmod:poss _ _ 14 ' _ PART POS _ 13 case _ _ 15 wheat-growing _ ADJ JJ _ 16 amod _ _ 16 areas _ NOUN NNS _ 9 nmod _ _ 17 , _ PUNCT , _ 27 punct _ _ 18 yields _ NOUN NNS _ 27 nsubjpass _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 crop _ NOUN NN _ 18 nmod _ _ 22 now _ ADV RB _ 24 advmod _ _ 23 being _ AUX VBG _ 24 auxpass _ _ 24 planted _ VERB VBN _ 21 acl _ _ 25 could _ AUX MD _ 27 aux _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 reduced _ VERB VBN _ 0 root _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 further _ ADV RB _ 30 advmod _ _ 30 squeezing _ VERB VBG _ 27 ccomp _ _ 31 supplies _ NOUN NNS _ 30 dobj _ _ 32 . _ PUNCT . _ 27 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 supporting _ VERB VBG _ 0 root _ _ 3 prices _ NOUN NNS _ 2 dobj _ _ 4 are _ VERB VBP _ 2 aux _ _ 5 expectations _ NOUN NNS _ 2 nsubj _ _ 6 that _ SCONJ IN _ 11 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 Soviet _ PROPN NNP _ 9 compound _ _ 9 Union _ PROPN NNP _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 place _ VERB VB _ 5 ccomp _ _ 12 substantial _ ADJ JJ _ 14 amod _ _ 13 buying _ NOUN NN _ 14 compound _ _ 14 orders _ NOUN NNS _ 11 dobj _ _ 15 over _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 next _ ADJ JJ _ 19 amod _ _ 18 few _ ADJ JJ _ 19 amod _ _ 19 months _ NOUN NNS _ 11 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 next _ ADJ JJ _ 3 amod _ _ 3 May _ PROPN NNP _ 30 nmod _ _ 4 31 _ NUM CD _ 3 nummod _ _ 5 , _ PUNCT , _ 30 punct _ _ 6 stocks _ NOUN NNS _ 30 nsubjpass _ _ 7 of _ ADP IN _ 9 case _ _ 8 U.S. _ PROPN NNP _ 9 compound _ _ 9 wheat _ NOUN NN _ 6 nmod _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 carried _ VERB VBN _ 6 acl _ _ 13 over _ ADP RP _ 12 compound:prt _ _ 14 into _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 next _ ADJ JJ _ 17 amod _ _ 17 season _ NOUN NN _ 12 nmod _ _ 18 -- _ PUNCT : _ 27 punct _ _ 19 before _ SCONJ IN _ 27 mark _ _ 20 the _ DET DT _ 22 det _ _ 21 winter _ NOUN NN _ 22 compound _ _ 22 wheat _ NOUN NN _ 27 nsubjpass _ _ 23 now _ ADV RB _ 25 advmod _ _ 24 being _ AUX VBG _ 25 auxpass _ _ 25 planted _ VERB VBN _ 22 acl _ _ 26 is _ AUX VBZ _ 27 auxpass _ _ 27 harvested _ VERB VBN _ 12 parataxis _ _ 28 -- _ PUNCT : _ 27 punct _ _ 29 are _ AUX VBP _ 30 auxpass _ _ 30 projected _ VERB VBN _ 0 root _ _ 31 to _ PART TO _ 32 mark _ _ 32 drop _ VERB VB _ 30 xcomp _ _ 33 to _ ADP TO _ 36 case _ _ 34 443 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 36 nummod _ _ 36 bushels _ NOUN NNS _ 32 nmod _ _ 37 . _ PUNCT . _ 30 punct _ _ 1 That _ PRON DT _ 6 nsubj _ _ 2 would _ AUX MD _ 6 aux _ _ 3 be _ VERB VB _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 lowest _ ADJ JJS _ 6 amod _ _ 6 level _ NOUN NN _ 0 root _ _ 7 since _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 early _ ADJ JJ _ 10 amod _ _ 10 1970s _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Stocks _ NOUN NNS _ 5 nsubj _ _ 2 were _ VERB VBD _ 5 cop _ _ 3 698 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 5 nummod _ _ 5 bushels _ NOUN NNS _ 0 root _ _ 6 on _ ADP IN _ 7 case _ _ 7 May _ PROPN NNP _ 5 nmod _ _ 8 31 _ NUM CD _ 7 nummod _ _ 9 of _ ADP IN _ 11 case _ _ 10 this _ DET DT _ 11 det _ _ 11 year _ NOUN NN _ 7 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 response _ NOUN NN _ 14 nmod _ _ 3 to _ ADP TO _ 6 case _ _ 4 dwindling _ VERB VBG _ 6 amod _ _ 5 domestic _ ADJ JJ _ 6 amod _ _ 6 supplies _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 14 punct _ _ 8 Agriculture _ PROPN NNP _ 11 compound _ _ 9 Secretary _ PROPN NNP _ 11 compound _ _ 10 Clayton _ PROPN NNP _ 11 compound _ _ 11 Yeutter _ PROPN NNP _ 14 nsubj _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 month _ NOUN NN _ 14 nmod:tmod _ _ 14 said _ VERB VBD _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 U.S. _ PROPN NNP _ 17 compound _ _ 17 government _ NOUN NN _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 slightly _ ADV RB _ 20 advmod _ _ 20 increase _ VERB VB _ 14 ccomp _ _ 21 the _ DET DT _ 22 det _ _ 22 number _ NOUN NN _ 20 dobj _ _ 23 of _ ADP IN _ 24 case _ _ 24 acres _ NOUN NNS _ 22 nmod _ _ 25 farmers _ NOUN NNS _ 27 nsubj _ _ 26 can _ AUX MD _ 27 aux _ _ 27 plant _ VERB VB _ 22 acl:relcl _ _ 28 in _ ADP IN _ 29 case _ _ 29 wheat _ NOUN NN _ 27 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 next _ ADJ JJ _ 32 amod _ _ 32 year _ NOUN NN _ 27 nmod _ _ 33 and _ CONJ CC _ 27 cc _ _ 34 still _ ADV RB _ 35 advmod _ _ 35 qualify _ VERB VB _ 27 conj _ _ 36 for _ ADP IN _ 39 case _ _ 37 federal _ ADJ JJ _ 39 amod _ _ 38 support _ NOUN NN _ 39 compound _ _ 39 payments _ NOUN NNS _ 35 nmod _ _ 40 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 3 nsubj _ _ 3 estimates _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 the _ DET DT _ 7 det _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 plan _ NOUN NN _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 boost _ VERB VB _ 3 ccomp _ _ 10 production _ NOUN NN _ 9 dobj _ _ 11 next _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 10 nmod:tmod _ _ 13 by _ ADP IN _ 17 case _ _ 14 about _ ADV RB _ 16 advmod _ _ 15 66 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 17 nummod _ _ 17 bushels _ NOUN NNS _ 9 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 now _ ADV RB _ 3 advmod _ _ 3 estimates _ VERB VBZ _ 0 root _ _ 4 production _ NOUN NN _ 3 dobj _ _ 5 for _ ADP IN _ 7 case _ _ 6 next _ ADJ JJ _ 7 amod _ _ 7 year _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 13 case _ _ 9 just _ ADV RB _ 12 advmod _ _ 10 under _ ADP IN _ 12 advmod _ _ 11 2.6 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 13 nummod _ _ 13 bushels _ NOUN NNS _ 3 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 compared _ VERB VBN _ 18 case _ _ 16 with _ ADP IN _ 18 case _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 13 nmod _ _ 19 's _ VERB VBZ _ 18 case _ _ 20 estimated _ ADJ JJ _ 18 amod _ _ 21 2.04 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 18 nummod _ _ 23 and _ CONJ CC _ 18 cc _ _ 24 a _ DET DT _ 27 det _ _ 25 drought-stunted _ ADJ JJ _ 27 amod _ _ 26 1.81 _ NUM CD _ 27 compound _ _ 27 billion _ NUM CD _ 18 conj _ _ 28 in _ ADP IN _ 29 case _ _ 29 1988 _ NUM CD _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 full _ ADJ JJ _ 4 amod _ _ 4 effect _ NOUN NN _ 17 nsubjpass _ _ 5 on _ ADP IN _ 6 case _ _ 6 prices _ NOUN NNS _ 4 nmod _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 winter _ NOUN NN _ 10 compound _ _ 10 wheat _ NOUN NN _ 6 nmod _ _ 11 now _ ADV RB _ 13 advmod _ _ 12 being _ AUX VBG _ 13 auxpass _ _ 13 planted _ VERB VBN _ 10 acl _ _ 14 wo _ AUX MD _ 17 aux _ _ 15 n't _ PART RB _ 17 neg _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 felt _ VERB VBN _ 0 root _ _ 18 until _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 second _ ADJ JJ _ 21 amod _ _ 21 half _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 next _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 17 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 then _ ADV RB _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 limited _ ADJ JJ _ 5 amod _ _ 5 stocks _ NOUN NNS _ 7 nsubj _ _ 6 are _ VERB VBP _ 7 cop _ _ 7 likely _ ADJ JJ _ 18 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 keep _ VERB VB _ 7 xcomp _ _ 10 prices _ NOUN NNS _ 9 dobj _ _ 11 near _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 $ _ SYM $ _ 15 amod _ _ 14 4-a-bushel _ ADJ JJ _ 13 dep _ _ 15 level _ NOUN NN _ 9 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 analysts _ NOUN NNS _ 18 nsubj _ _ 18 say _ VERB VBP _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 Chicago _ PROPN NNP _ 4 compound _ _ 4 Board _ PROPN NNP _ 13 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 Trade _ PROPN NNP _ 4 nmod _ _ 7 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 wheat _ NOUN NN _ 13 nsubj _ _ 10 for _ ADP IN _ 12 case _ _ 11 December _ PROPN NNP _ 12 compound _ _ 12 delivery _ NOUN NN _ 9 nmod _ _ 13 settled _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 4.0675 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 bushel _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 unchanged _ ADJ JJ _ 16 amod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 theory _ NOUN NN _ 11 nmod _ _ 3 at _ ADP IN _ 2 advmod _ _ 4 least _ ADJ JJS _ 3 mwe _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 tight _ ADJ JJ _ 7 amod _ _ 7 supplies _ NOUN NNS _ 11 nsubj _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 spring _ NOUN NN _ 7 nmod:tmod _ _ 10 could _ AUX MD _ 11 aux _ _ 11 leave _ VERB VB _ 22 ccomp _ _ 12 the _ DET DT _ 15 det _ _ 13 wheat _ NOUN NN _ 15 compound _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 market _ NOUN NN _ 16 nsubj _ _ 16 susceptible _ ADJ JJ _ 11 xcomp _ _ 17 to _ ADP TO _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 supply-demand _ ADJ JJ _ 20 amod _ _ 20 squeeze _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 Daniel _ PROPN NNP _ 24 compound _ _ 24 Basse _ PROPN NNP _ 22 nsubj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 a _ DET DT _ 28 det _ _ 27 futures _ NOUN NNS _ 28 compound _ _ 28 analyst _ NOUN NN _ 24 appos _ _ 29 with _ ADP IN _ 31 case _ _ 30 AgResource _ PROPN NNP _ 31 compound _ _ 31 Co. _ PROPN NNP _ 28 nmod _ _ 32 in _ ADP IN _ 33 case _ _ 33 Chicago _ PROPN NNP _ 31 nmod _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 Such _ DET PDT _ 3 det:predet _ _ 2 a _ DET DT _ 3 det _ _ 3 situation _ NOUN NN _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 wreak _ VERB VB _ 0 root _ _ 6 havoc _ NOUN NN _ 5 dobj _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 as _ SCONJ IN _ 10 mark _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 shown _ VERB VBN _ 5 advcl _ _ 11 by _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 emergency _ NOUN NN _ 10 nmod _ _ 14 that _ PRON WDT _ 15 nsubj _ _ 15 developed _ VERB VBD _ 13 acl:relcl _ _ 16 in _ ADP IN _ 19 case _ _ 17 soybean _ NOUN NN _ 19 compound _ _ 18 futures _ NOUN NNS _ 19 compound _ _ 19 trading _ NOUN NN _ 15 nmod _ _ 20 this _ DET DT _ 21 det _ _ 21 summer _ NOUN NN _ 15 nmod:tmod _ _ 22 on _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 Chicago _ PROPN NNP _ 25 compound _ _ 25 Board _ PROPN NNP _ 15 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 Trade _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 CBOT _ PROPN NNP _ 6 nsubj _ _ 6 ordered _ VERB VBD _ 0 root _ _ 7 Ferruzzi _ PROPN NNP _ 11 compound _ _ 8 Finanziaria _ PROPN NNP _ 11 compound _ _ 9 S.p _ PROPN NNP _ 11 compound _ _ 10 . _ PUNCT . _ 11 punct _ _ 11 A. _ PROPN NNP _ 6 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 liquidate _ VERB VB _ 6 xcomp _ _ 14 futures _ NOUN NNS _ 15 compound _ _ 15 positions _ NOUN NNS _ 13 dobj _ _ 16 equal _ ADJ JJ _ 15 amod _ _ 17 to _ ADP TO _ 21 case _ _ 18 about _ ADV RB _ 20 advmod _ _ 19 23 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 bushels _ NOUN NNS _ 16 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 soybeans _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 exchange _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 feared _ VERB VBD _ 3 ccomp _ _ 6 that _ SCONJ IN _ 12 mark _ _ 7 some _ DET DT _ 8 det _ _ 8 members _ NOUN NNS _ 12 nsubj _ _ 9 would _ AUX MD _ 12 aux _ _ 10 n't _ PART RB _ 12 neg _ _ 11 be _ VERB VB _ 12 cop _ _ 12 able _ ADJ JJ _ 5 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 find _ VERB VB _ 12 xcomp _ _ 15 enough _ ADJ JJ _ 16 amod _ _ 16 soybeans _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 deliver _ VERB VB _ 16 acl _ _ 19 and _ CONJ CC _ 12 cc _ _ 20 would _ AUX MD _ 21 aux _ _ 21 have _ VERB VB _ 12 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 default _ VERB VB _ 21 xcomp _ _ 24 on _ ADP IN _ 27 case _ _ 25 their _ PRON PRP$ _ 27 nmod:poss _ _ 26 contractual _ ADJ JJ _ 27 amod _ _ 27 obligation _ NOUN NN _ 23 nmod _ _ 28 to _ ADP TO _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Italian _ ADJ JJ _ 31 amod _ _ 31 conglomerate _ NOUN NN _ 27 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 which _ PRON WDT _ 35 nsubj _ _ 34 had _ AUX VBD _ 35 aux _ _ 35 refused _ VERB VBN _ 31 acl:relcl _ _ 36 requests _ NOUN NNS _ 35 dobj _ _ 37 to _ PART TO _ 38 mark _ _ 38 reduce _ VERB VB _ 36 acl _ _ 39 its _ PRON PRP$ _ 40 nmod:poss _ _ 40 holdings _ NOUN NNS _ 38 dobj _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 Ferruzzi _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 denied _ VERB VBN _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 was _ AUX VBD _ 6 aux _ _ 6 trying _ VERB VBG _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 manipulate _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 12 det _ _ 10 soybean _ NOUN NN _ 12 compound _ _ 11 futures _ NOUN NNS _ 12 compound _ _ 12 market _ NOUN NN _ 8 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Unseasonably _ ADV RB _ 4 advmod _ _ 2 hot _ ADJ JJ _ 4 amod _ _ 3 , _ PUNCT , _ 4 punct _ _ 4 dry _ ADJ JJ _ 5 amod _ _ 5 weather _ NOUN NN _ 22 nsubj _ _ 6 across _ ADP IN _ 8 case _ _ 7 large _ ADJ JJ _ 8 amod _ _ 8 portions _ NOUN NNS _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Great _ PROPN NNP _ 12 compound _ _ 12 Plains _ PROPN NNP _ 8 nmod _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 in _ ADP IN _ 16 case _ _ 15 wheat-growing _ ADJ JJ _ 16 amod _ _ 16 areas _ NOUN NNS _ 8 conj _ _ 17 in _ ADP IN _ 18 case _ _ 18 Washington _ PROPN NNP _ 16 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 Oregon _ PROPN NNP _ 18 conj _ _ 21 is _ AUX VBZ _ 22 aux _ _ 22 threatening _ VERB VBG _ 35 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 reduce _ VERB VB _ 22 xcomp _ _ 25 the _ DET DT _ 26 det _ _ 26 yield _ NOUN NN _ 24 dobj _ _ 27 from _ ADP IN _ 33 case _ _ 28 this _ DET DT _ 29 det _ _ 29 season _ NOUN NN _ 33 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 winter _ NOUN NN _ 33 compound _ _ 32 wheat _ NOUN NN _ 33 compound _ _ 33 crop _ NOUN NN _ 26 nmod _ _ 34 , _ PUNCT , _ 35 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 Conrad _ PROPN NNP _ 37 compound _ _ 37 Leslie _ PROPN NNP _ 35 nsubj _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 a _ DET DT _ 41 det _ _ 40 futures _ NOUN NNS _ 41 compound _ _ 41 analyst _ NOUN NN _ 37 appos _ _ 42 and _ CONJ CC _ 41 cc _ _ 43 head _ NOUN NN _ 41 conj _ _ 44 of _ ADP IN _ 46 case _ _ 45 Leslie _ PROPN NNP _ 46 compound _ _ 46 Analytical _ PROPN NNP _ 43 nmod _ _ 47 in _ ADP IN _ 48 case _ _ 48 Chicago _ PROPN NNP _ 46 nmod _ _ 49 . _ PUNCT . _ 35 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 17 nmod _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 in _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Oklahoma _ PROPN NNP _ 7 compound _ _ 7 panhandle _ NOUN NN _ 17 nmod _ _ 8 , _ PUNCT , _ 17 punct _ _ 9 40 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 17 nsubj _ _ 11 or _ CONJ CC _ 12 cc _ _ 12 more _ ADJ JJR _ 10 nummod _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 topsoil _ NOUN NN _ 10 nmod _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 short _ ADJ JJ _ 0 root _ _ 18 of _ ADP IN _ 19 case _ _ 19 moisture _ NOUN NN _ 17 nmod _ _ 20 . _ PUNCT . _ 17 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 figure _ NOUN NN _ 3 nsubj _ _ 3 climbs _ VERB VBZ _ 15 ccomp _ _ 4 to _ ADP TO _ 7 case _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 47 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 3 nmod _ _ 8 in _ ADP IN _ 10 case _ _ 9 wheat-growing _ ADJ JJ _ 10 amod _ _ 10 portions _ NOUN NNS _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Kansas _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Soviet _ PROPN NNP _ 3 compound _ _ 3 Union _ PROPN NNP _ 6 nsubj _ _ 4 has _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 given _ VERB VBN _ 0 root _ _ 7 any _ DET DT _ 9 det _ _ 8 clear _ ADJ JJ _ 9 amod _ _ 9 indication _ NOUN NN _ 6 dobj _ _ 10 of _ ADP IN _ 14 case _ _ 11 its _ PRON PRP$ _ 14 nmod:poss _ _ 12 wheat _ NOUN NN _ 14 compound _ _ 13 purchase _ NOUN NN _ 14 compound _ _ 14 plans _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 but _ CONJ CC _ 6 cc _ _ 17 many _ ADJ JJ _ 18 amod _ _ 18 analysts _ NOUN NNS _ 19 nsubj _ _ 19 expect _ VERB VBP _ 6 conj _ _ 20 Moscow _ PROPN NNP _ 19 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 place _ VERB VB _ 19 xcomp _ _ 23 sizable _ ADJ JJ _ 24 amod _ _ 24 orders _ NOUN NNS _ 22 dobj _ _ 25 for _ ADP IN _ 27 case _ _ 26 U.S. _ PROPN NNP _ 27 compound _ _ 27 wheat _ NOUN NN _ 24 nmod _ _ 28 in _ ADP IN _ 32 case _ _ 29 the _ DET DT _ 32 det _ _ 30 next _ ADJ JJ _ 32 amod _ _ 31 few _ ADJ JJ _ 32 amod _ _ 32 months _ NOUN NNS _ 22 nmod _ _ 33 , _ PUNCT , _ 22 punct _ _ 34 further _ ADV RB _ 35 advmod _ _ 35 supporting _ VERB VBG _ 22 advcl _ _ 36 prices _ NOUN NNS _ 35 dobj _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Wheat _ ADJ JJ _ 3 amod _ _ 3 prices _ NOUN NNS _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 increasingly _ ADV RB _ 6 advmod _ _ 6 pivot _ VERB VB _ 16 ccomp _ _ 7 off _ ADP IN _ 10 case _ _ 8 of _ ADP IN _ 10 case _ _ 9 Soviet _ ADJ JJ _ 10 amod _ _ 10 demand _ NOUN NN _ 6 nmod _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 12 in _ ADP IN _ 14 case _ _ 13 coming _ ADJ JJ _ 14 amod _ _ 14 weeks _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 16 punct _ _ 16 predicted _ VERB VBD _ 0 root _ _ 17 Richard _ PROPN NNP _ 18 compound _ _ 18 Feltes _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 vice _ NOUN NN _ 21 compound _ _ 21 president _ NOUN NN _ 18 appos _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 research _ NOUN NN _ 21 appos _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 for _ ADP IN _ 27 case _ _ 26 Refco _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 21 nmod _ _ 28 in _ ADP IN _ 29 case _ _ 29 Chicago _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 16 punct _ _ 1 Looking _ VERB VBG _ 0 root _ _ 2 ahead _ ADV RB _ 1 advmod _ _ 3 to _ ADP TO _ 6 case _ _ 4 other _ ADJ JJ _ 6 amod _ _ 5 commodity _ NOUN NN _ 6 compound _ _ 6 markets _ NOUN NNS _ 2 nmod _ _ 7 this _ DET DT _ 8 det _ _ 8 week _ NOUN NN _ 6 nmod:tmod _ _ 9 : _ PUNCT : _ 1 punct _ _ 1 Orange _ NOUN NN _ 3 compound _ _ 2 Juice _ NOUN NN _ 3 compound _ _ 3 Traders _ NOUN NNS _ 6 nsubj _ _ 4 will _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 aux _ _ 6 watching _ VERB VBG _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 see _ VERB VB _ 6 xcomp _ _ 9 how _ ADV WRB _ 10 advmod _ _ 10 long _ ADV RB _ 21 advmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 how _ ADV WRB _ 13 advmod _ _ 13 far _ ADV RB _ 10 dep _ _ 14 the _ DET DT _ 16 det _ _ 15 price _ NOUN NN _ 16 compound _ _ 16 decline _ NOUN NN _ 21 nsubj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 began _ VERB VBD _ 16 acl:relcl _ _ 19 Friday _ PROPN NNP _ 18 nmod:tmod _ _ 20 will _ AUX MD _ 21 aux _ _ 21 go _ VERB VB _ 8 dep _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Late _ ADV RB _ 12 advmod _ _ 2 Thursday _ PROPN NNP _ 12 nmod:tmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 after _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 close _ NOUN NN _ 12 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 trading _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 market _ NOUN NN _ 12 nsubj _ _ 12 received _ VERB VBD _ 0 root _ _ 13 what _ PRON WP _ 24 nsubj _ _ 14 would _ AUX MD _ 24 aux _ _ 15 normally _ ADV RB _ 24 advmod _ _ 16 have _ AUX VB _ 24 aux _ _ 17 been _ VERB VBN _ 24 cop _ _ 18 a _ DET DT _ 24 det _ _ 19 bullish _ ADJ JJ _ 24 amod _ _ 20 U.S. _ PROPN NNP _ 24 dep _ _ 21 Department _ PROPN NNP _ 20 dep _ _ 22 of _ ADP IN _ 23 case _ _ 23 Agriculture _ PROPN NNP _ 20 nmod _ _ 24 estimate _ NOUN NN _ 12 ccomp _ _ 25 of _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 30 det _ _ 27 1989-90 _ NUM CD _ 30 nummod _ _ 28 Florida _ PROPN NNP _ 30 compound _ _ 29 orange _ NOUN NN _ 30 compound _ _ 30 crop _ NOUN NN _ 24 nmod _ _ 31 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 was _ VERB VBD _ 6 cop _ _ 3 near _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 low _ ADJ JJ _ 6 amod _ _ 6 range _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 estimates _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 at _ ADP IN _ 14 case _ _ 11 130 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 14 nummod _ _ 13 90-pound _ ADJ JJ _ 14 amod _ _ 14 boxes _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 compared _ VERB VBN _ 20 case _ _ 17 with _ ADP IN _ 20 case _ _ 18 146.6 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 20 nummod _ _ 20 boxes _ NOUN NNS _ 14 nmod _ _ 21 last _ ADJ JJ _ 22 amod _ _ 22 season _ NOUN NN _ 20 nmod:tmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 However _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 as _ SCONJ IN _ 4 mark _ _ 4 expected _ VERB VBN _ 7 advcl _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Brazil _ PROPN NNP _ 7 nsubj _ _ 7 waited _ VERB VBD _ 0 root _ _ 8 for _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 crop _ NOUN NN _ 11 compound _ _ 11 estimate _ NOUN NN _ 13 nsubj _ _ 12 to _ PART TO _ 13 mark _ _ 13 come _ VERB VB _ 7 advcl _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 and _ CONJ CC _ 7 cc _ _ 16 then _ ADV RB _ 17 advmod _ _ 17 cut _ VERB VB _ 7 conj _ _ 18 the _ DET DT _ 20 det _ _ 19 export _ NOUN NN _ 20 compound _ _ 20 price _ NOUN NN _ 17 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 juice _ NOUN NN _ 24 compound _ _ 24 concentrate _ NOUN NN _ 20 nmod _ _ 25 to _ ADP TO _ 27 case _ _ 26 about _ ADV RB _ 27 advmod _ _ 27 $ _ SYM $ _ 17 nmod _ _ 28 1.34 _ NUM CD _ 27 nummod _ _ 29 a _ DET DT _ 30 det _ _ 30 pound _ NOUN NN _ 27 nmod:npmod _ _ 31 from _ ADP IN _ 33 case _ _ 32 around _ ADP IN _ 33 advmod _ _ 33 $ _ SYM $ _ 17 nmod _ _ 34 1.55 _ NUM CD _ 33 nummod _ _ 35 . _ PUNCT . _ 7 punct _ _ 1 Friday _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 consequent _ ADJ JJ _ 4 amod _ _ 4 selling _ NOUN NN _ 8 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 futures _ NOUN NNS _ 7 compound _ _ 7 contracts _ NOUN NNS _ 4 nmod _ _ 8 erased _ VERB VBD _ 0 root _ _ 9 whatever _ DET WDT _ 11 det _ _ 10 supportive _ ADJ JJ _ 11 amod _ _ 11 effect _ NOUN NN _ 17 dobj _ _ 12 the _ DET DT _ 14 det _ _ 13 U.S. _ PROPN NNP _ 14 compound _ _ 14 report _ NOUN NN _ 17 nsubj _ _ 15 might _ AUX MD _ 17 aux _ _ 16 have _ AUX VB _ 17 aux _ _ 17 had _ VERB VBD _ 8 ccomp _ _ 18 and _ CONJ CC _ 8 cc _ _ 19 sent _ VERB VBD _ 8 conj _ _ 20 the _ DET DT _ 24 det _ _ 21 November _ PROPN NNP _ 24 compound _ _ 22 orange _ NOUN NN _ 24 compound _ _ 23 juice _ NOUN NN _ 24 compound _ _ 24 contract _ NOUN NN _ 19 dobj _ _ 25 down _ ADV RB _ 19 advmod _ _ 26 as _ ADV RB _ 29 advmod _ _ 27 much _ ADJ JJ _ 29 advmod _ _ 28 as _ ADP IN _ 29 advmod _ _ 29 6.55 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 25 nmod:npmod _ _ 31 a _ DET DT _ 32 det _ _ 32 pound _ NOUN NN _ 30 nmod:npmod _ _ 33 at _ ADP IN _ 35 case _ _ 34 one _ NUM CD _ 35 nummod _ _ 35 time _ NOUN NN _ 19 nmod _ _ 36 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 settled _ VERB VBD _ 0 root _ _ 3 with _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 loss _ NOUN NN _ 2 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 4.95 _ NUM CD _ 8 nummod _ _ 8 cents _ NOUN NNS _ 5 nmod _ _ 9 at _ ADP IN _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 1.3210 _ NUM CD _ 2 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 pound _ NOUN NN _ 11 nmod:npmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Brazilian _ ADJ JJ _ 2 amod _ _ 2 juice _ NOUN NN _ 19 nsubj _ _ 3 , _ PUNCT , _ 19 punct _ _ 4 after _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 delay _ NOUN NN _ 19 nmod _ _ 7 caused _ VERB VBN _ 6 acl _ _ 8 by _ ADP IN _ 9 case _ _ 9 drought _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 start _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 crop _ NOUN NN _ 16 compound _ _ 16 season _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 beginning _ VERB VBG _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 arrive _ VERB VB _ 19 xcomp _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 U.S. _ PROPN NNP _ 21 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 large _ ADJ JJ _ 27 amod _ _ 27 quantities _ NOUN NNS _ 21 nmod _ _ 28 . _ PUNCT . _ 19 punct _ _ 1 Brazil _ PROPN NNP _ 2 nsubj _ _ 2 wants _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 stimulate _ VERB VB _ 2 xcomp _ _ 5 demand _ NOUN NN _ 4 dobj _ _ 6 for _ ADP IN _ 8 case _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 product _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 12 nsubj _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 going _ VERB VBG _ 8 acl:relcl _ _ 13 to _ PART TO _ 17 mark _ _ 14 be _ VERB VB _ 17 cop _ _ 15 in _ ADP IN _ 17 case _ _ 16 plentiful _ ADJ JJ _ 17 amod _ _ 17 supply _ NOUN NN _ 12 xcomp _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 price _ NOUN NN _ 3 compound _ _ 3 cut _ NOUN NN _ 9 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 one _ NUM CD _ 6 nummod _ _ 6 analyst _ NOUN NN _ 7 nsubj _ _ 7 said _ VERB VBD _ 9 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 appeared _ VERB VBD _ 0 root _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 aimed _ VERB VBN _ 9 xcomp _ _ 13 even _ ADV RB _ 14 advmod _ _ 14 more _ ADV RBR _ 12 advmod _ _ 15 at _ ADP IN _ 16 case _ _ 16 Europe _ PROPN NNP _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 where _ ADV WRB _ 24 advmod _ _ 19 consumption _ NOUN NN _ 24 nsubj _ _ 20 of _ ADP IN _ 22 case _ _ 21 Brazilian _ ADJ JJ _ 22 amod _ _ 22 juice _ NOUN NN _ 19 nmod _ _ 23 has _ AUX VBZ _ 24 aux _ _ 24 fallen _ VERB VBN _ 16 acl:relcl _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 a _ DET DT _ 5 det _ _ 4 dollar-priced _ ADJ JJ _ 5 amod _ _ 5 product _ NOUN NN _ 21 ccomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 strong _ ADJ JJ _ 10 amod _ _ 10 dollar _ NOUN NN _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 made _ VERB VBN _ 5 conj _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 more _ ADV RBR _ 15 advmod _ _ 15 expensive _ ADJ JJ _ 12 xcomp _ _ 16 in _ ADP IN _ 17 case _ _ 17 Europe _ PROPN NNP _ 15 dep _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 the _ DET DT _ 20 det _ _ 20 analyst _ NOUN NN _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 York _ PROPN NNP _ 4 compound _ _ 3 futures _ NOUN NNS _ 4 compound _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 dropped _ VERB VBN _ 0 root _ _ 7 significantly _ ADV RB _ 6 advmod _ _ 8 from _ ADP IN _ 11 case _ _ 9 more _ ADJ JJR _ 11 advmod _ _ 10 than _ ADP IN _ 9 mwe _ _ 11 $ _ SYM $ _ 6 nmod _ _ 12 2 _ NUM CD _ 11 nummod _ _ 13 a _ DET DT _ 14 det _ _ 14 pound _ NOUN NN _ 11 nmod:npmod _ _ 15 at _ ADP IN _ 16 case _ _ 16 midyear _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 Barring _ VERB VBG _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 cold _ ADJ JJ _ 4 amod _ _ 4 snap _ NOUN NN _ 19 nmod _ _ 5 or _ CONJ CC _ 4 cc _ _ 6 other _ ADJ JJ _ 8 amod _ _ 7 crop _ NOUN NN _ 8 compound _ _ 8 problems _ NOUN NNS _ 4 conj _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 growing _ NOUN NN _ 12 compound _ _ 12 areas _ NOUN NNS _ 4 nmod _ _ 13 , _ PUNCT , _ 19 punct _ _ 14 downward _ ADJ JJ _ 15 amod _ _ 15 pressure _ NOUN NN _ 19 nsubj _ _ 16 on _ ADP IN _ 17 case _ _ 17 prices _ NOUN NNS _ 15 nmod _ _ 18 is _ VERB VBZ _ 19 cop _ _ 19 likely _ ADJ JJ _ 39 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 continue _ VERB VB _ 19 xcomp _ _ 22 into _ ADP IN _ 23 case _ _ 23 January _ PROPN NNP _ 21 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 when _ ADV WRB _ 33 advmod _ _ 26 harvesting _ NOUN NN _ 33 nsubj _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 processing _ NOUN NN _ 26 conj _ _ 29 of _ ADP IN _ 30 case _ _ 30 oranges _ NOUN NNS _ 26 nmod _ _ 31 in _ ADP IN _ 32 case _ _ 32 Florida _ PROPN NNP _ 26 nmod _ _ 33 reach _ VERB VBP _ 23 acl:relcl _ _ 34 their _ PRON PRP$ _ 35 nmod:poss _ _ 35 peak _ NOUN NN _ 33 dobj _ _ 36 , _ PUNCT , _ 39 punct _ _ 37 the _ DET DT _ 38 det _ _ 38 analyst _ NOUN NN _ 39 nsubj _ _ 39 said _ VERB VBD _ 0 root _ _ 40 . _ PUNCT . _ 39 punct _ _ 1 Energy _ NOUN NN _ 0 root _ _ 1 Although _ SCONJ IN _ 4 mark _ _ 2 some _ DET DT _ 3 det _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 look _ VERB VBP _ 25 advcl _ _ 5 for _ ADP IN _ 6 case _ _ 6 profit-taking _ NOUN NN _ 4 nmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 wake _ NOUN NN _ 4 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 leap _ NOUN NN _ 9 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 crude _ ADJ JJ _ 17 amod _ _ 16 oil _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 25 punct _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 week _ NOUN NN _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 rally _ NOUN NN _ 25 nsubjpass _ _ 23 is _ AUX VBZ _ 25 auxpass _ _ 24 generally _ ADV RB _ 25 advmod _ _ 25 expected _ VERB VBN _ 0 root _ _ 26 to _ PART TO _ 27 mark _ _ 27 continue _ VERB VB _ 25 xcomp _ _ 28 this _ DET DT _ 29 det _ _ 29 week _ NOUN NN _ 27 nmod:tmod _ _ 30 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 continue _ VERB VB _ 20 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 look _ VERB VB _ 4 xcomp _ _ 7 for _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 stable _ ADJ JJ _ 11 amod _ _ 10 crude _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 at _ ADP IN _ 18 advmod _ _ 14 least _ ADJ JJS _ 13 mwe _ _ 15 in _ ADP IN _ 18 case _ _ 16 futures _ NOUN NNS _ 18 compound _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 trading _ NOUN NN _ 6 nmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 William _ PROPN NNP _ 22 compound _ _ 22 Hinton _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 an _ DET DT _ 27 det _ _ 25 energy _ NOUN NN _ 27 compound _ _ 26 futures _ NOUN NNS _ 27 compound _ _ 27 broker _ NOUN NN _ 22 appos _ _ 28 with _ ADP IN _ 29 case _ _ 29 Stotler _ PROPN NNP _ 27 nmod _ _ 30 & _ CONJ CC _ 29 cc _ _ 31 Co _ PROPN NNP _ 29 conj _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 Friday _ PROPN NNP _ 2 nsubj _ _ 2 capped _ VERB VBD _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 week _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 10 case _ _ 6 steadily _ ADV RB _ 7 advmod _ _ 7 rising _ VERB VBG _ 10 amod _ _ 8 crude _ ADJ JJ _ 10 amod _ _ 9 oil _ NOUN NN _ 10 compound _ _ 10 prices _ NOUN NNS _ 4 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 both _ CONJ CC _ 13 cc:preconj _ _ 13 futures _ NOUN NNS _ 10 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 spot _ NOUN NN _ 16 compound _ _ 16 markets _ NOUN NNS _ 13 conj _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 On _ ADP IN _ 6 case _ _ 2 the _ DET DT _ 6 det _ _ 3 New _ PROPN NNP _ 6 compound _ _ 4 York _ PROPN NNP _ 6 compound _ _ 5 Mercantile _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 15 nmod _ _ 7 , _ PUNCT , _ 15 punct _ _ 8 West _ PROPN NNP _ 11 compound _ _ 9 Texas _ PROPN NNP _ 11 compound _ _ 10 Intermediate _ PROPN NNP _ 11 compound _ _ 11 crude _ NOUN NN _ 15 nsubj _ _ 12 for _ ADP IN _ 14 case _ _ 13 November _ PROPN NNP _ 14 compound _ _ 14 delivery _ NOUN NN _ 11 nmod _ _ 15 finished _ VERB VBD _ 0 root _ _ 16 at _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 20.89 _ NUM CD _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 barrel _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 up _ ADV RB _ 15 advmod _ _ 23 42 _ NUM CD _ 24 nummod _ _ 24 cents _ NOUN NNS _ 22 nmod:npmod _ _ 25 on _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 day _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 15 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 European _ ADJ JJ _ 3 amod _ _ 3 markets _ NOUN NNS _ 13 nmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 meanwhile _ ADV RB _ 13 advmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 spot _ NOUN NN _ 8 compound _ _ 8 prices _ NOUN NNS _ 13 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 North _ PROPN NNP _ 12 compound _ _ 11 Sea _ PROPN NNP _ 12 compound _ _ 12 crudes _ NOUN NNS _ 8 nmod _ _ 13 were _ VERB VBD _ 0 root _ _ 14 up _ ADV RB _ 13 advmod _ _ 15 35 _ NUM CD _ 14 nmod:npmod _ _ 16 to _ ADP TO _ 18 case _ _ 17 75 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 14 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 barrel _ NOUN NN _ 18 nmod:npmod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 This _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 5 nsubj _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 wants _ VERB VBZ _ 11 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 go _ VERB VB _ 5 xcomp _ _ 8 higher _ ADV RBR _ 7 advmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Nauman _ PROPN NNP _ 13 compound _ _ 13 Barakat _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 18 det _ _ 16 first _ ADJ JJ _ 18 amod _ _ 17 vice _ NOUN NN _ 18 compound _ _ 18 president _ NOUN NN _ 13 appos _ _ 19 at _ ADP IN _ 23 case _ _ 20 Shearson _ PROPN NNP _ 23 compound _ _ 21 Lehman _ PROPN NNP _ 23 compound _ _ 22 Hutton _ PROPN NNP _ 23 compound _ _ 23 Inc _ PROPN NNP _ 18 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 predicted _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 8 mark _ _ 4 the _ DET DT _ 6 det _ _ 5 November _ PROPN NNP _ 6 compound _ _ 6 contract _ NOUN NN _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 reach _ VERB VB _ 2 ccomp _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 21.50 _ NUM CD _ 8 dobj _ _ 11 a _ DET DT _ 12 det _ _ 12 barrel _ NOUN NN _ 10 nmod:npmod _ _ 13 or _ CONJ CC _ 14 cc _ _ 14 more _ ADJ JJR _ 10 nummod _ _ 15 on _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 New _ PROPN NNP _ 20 compound _ _ 18 York _ PROPN NNP _ 20 compound _ _ 19 Mercantile _ PROPN NNP _ 20 compound _ _ 20 Exchange _ PROPN NNP _ 8 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 There _ PRON EX _ 5 expl _ _ 2 has _ AUX VBZ _ 5 aux _ _ 3 been _ VERB VBN _ 5 cop _ _ 4 little _ ADJ JJ _ 5 amod _ _ 5 news _ NOUN NN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 account _ VERB VB _ 5 acl _ _ 8 for _ ADP IN _ 10 case _ _ 9 such _ ADJ JJ _ 10 amod _ _ 10 buoyancy _ NOUN NN _ 7 nmod _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 oil _ NOUN NN _ 14 compound _ _ 14 markets _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 generally _ ADV RB _ 3 advmod _ _ 3 cite _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 lack _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 bearish _ ADJ JJ _ 8 amod _ _ 8 developments _ NOUN NNS _ 5 nmod _ _ 9 as _ ADV RB _ 5 advmod _ _ 10 well _ ADV RB _ 5 advmod _ _ 11 as _ ADP IN _ 5 amod _ _ 12 rumors _ NOUN NNS _ 5 dep _ _ 13 of _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 possible _ ADJ JJ _ 16 amod _ _ 16 tightening _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 supplies _ NOUN NNS _ 16 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 some _ DET DT _ 21 det _ _ 21 fuels _ NOUN NNS _ 18 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 crudes _ NOUN NNS _ 21 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 There _ PRON EX _ 3 expl _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 are _ VERB VBP _ 0 root _ _ 4 recurring _ VERB VBG _ 5 amod _ _ 5 reports _ NOUN NNS _ 3 nsubj _ _ 6 that _ SCONJ IN _ 11 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 Soviet _ PROPN NNP _ 9 compound _ _ 9 Union _ PROPN NNP _ 11 nsubj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 having _ VERB VBG _ 5 ccomp _ _ 12 difficulties _ NOUN NNS _ 11 dobj _ _ 13 with _ ADP IN _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 oil _ NOUN NN _ 16 compound _ _ 16 exports _ NOUN NNS _ 11 nmod _ _ 17 and _ CONJ CC _ 11 cc _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 Nigeria _ PROPN NNP _ 22 nsubj _ _ 20 has _ AUX VBZ _ 22 aux _ _ 21 about _ ADV RB _ 22 advmod _ _ 22 reached _ VERB VBN _ 11 conj _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 production _ NOUN NN _ 25 compound _ _ 25 limit _ NOUN NN _ 22 dobj _ _ 26 and _ CONJ CC _ 22 cc _ _ 27 ca _ AUX MD _ 29 aux _ _ 28 n't _ PART RB _ 29 neg _ _ 29 produce _ VERB VB _ 22 conj _ _ 30 as _ ADV RB _ 31 advmod _ _ 31 much _ ADJ JJ _ 29 dobj _ _ 32 as _ SCONJ IN _ 35 mark _ _ 33 it _ PRON PRP _ 35 nsubj _ _ 34 could _ AUX MD _ 35 aux _ _ 35 sell _ VERB VB _ 31 acl:relcl _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 traders _ NOUN NNS _ 3 nsubj _ _ 3 foresee _ VERB VBP _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 tightening _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 near-term _ ADJ JJ _ 8 amod _ _ 8 supplies _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 particularly _ ADV RB _ 13 advmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 high-quality _ ADJ JJ _ 13 amod _ _ 13 crudes _ NOUN NNS _ 8 nmod _ _ 14 such _ ADJ JJ _ 16 case _ _ 15 as _ ADP IN _ 14 mwe _ _ 16 those _ PRON DT _ 13 nmod _ _ 17 produced _ VERB VBN _ 16 acl _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 North _ PROPN NNP _ 21 compound _ _ 21 Sea _ PROPN NNP _ 17 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 in _ ADP IN _ 24 case _ _ 24 Nigeria _ PROPN NNP _ 21 conj _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 a _ DET DT _ 4 det _ _ 3 hostile _ ADJ JJ _ 4 amod _ _ 4 predator _ NOUN NN _ 5 nsubj _ _ 5 emerges _ VERB VBZ _ 18 advcl _ _ 6 for _ ADP IN _ 10 case _ _ 7 Saatchi _ PROPN NNP _ 10 compound _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Saatchi _ PROPN NNP _ 7 conj _ _ 10 Co. _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 18 punct _ _ 12 co-founders _ NOUN NNS _ 13 compound _ _ 13 Charles _ PROPN NNP _ 18 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Maurice _ PROPN NNP _ 16 compound _ _ 16 Saatchi _ PROPN NNP _ 13 conj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 lead _ VERB VB _ 30 ccomp _ _ 19 a _ DET DT _ 22 det _ _ 20 management _ NOUN NN _ 22 compound _ _ 21 buy-out _ NOUN NN _ 22 compound _ _ 22 attempt _ NOUN NN _ 18 dobj _ _ 23 , _ PUNCT , _ 30 punct _ _ 24 an _ DET DT _ 25 det _ _ 25 official _ ADJ JJ _ 30 nsubj _ _ 26 close _ NOUN NN _ 25 amod _ _ 27 to _ ADP TO _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 company _ NOUN NN _ 26 nmod _ _ 30 said _ VERB VBD _ 0 root _ _ 31 . _ PUNCT . _ 30 punct _ _ 1 Financing _ NOUN NN _ 8 nsubj _ _ 2 for _ ADP IN _ 5 case _ _ 3 any _ DET DT _ 5 det _ _ 4 takeover _ NOUN NN _ 5 compound _ _ 5 attempt _ NOUN NN _ 1 nmod _ _ 6 may _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 problematic _ ADJ JJ _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 wake _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 Friday _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 stock-market _ NOUN NN _ 16 compound _ _ 16 sell-off _ NOUN NN _ 11 nmod _ _ 17 in _ ADP IN _ 19 case _ _ 18 New _ PROPN NNP _ 19 compound _ _ 19 York _ PROPN NNP _ 16 nmod _ _ 20 and _ CONJ CC _ 16 cc _ _ 21 turmoil _ NOUN NN _ 16 conj _ _ 22 in _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 junk-bond _ NOUN NN _ 25 compound _ _ 25 market _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 27 cc _ _ 2 the _ DET DT _ 5 det _ _ 3 beleaguered _ ADJ JJ _ 5 amod _ _ 4 British _ ADJ JJ _ 5 amod _ _ 5 advertising _ NOUN NN _ 27 nsubj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 consulting _ NOUN NN _ 8 compound _ _ 8 giant _ NOUN NN _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 which _ PRON WDT _ 13 nsubj _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 week _ NOUN NN _ 13 dep _ _ 13 named _ VERB VBD _ 5 acl:relcl _ _ 14 a _ DET DT _ 18 det _ _ 15 new _ ADJ JJ _ 18 amod _ _ 16 chief _ ADJ JJ _ 18 amod _ _ 17 executive _ ADJ JJ _ 18 amod _ _ 18 officer _ NOUN NN _ 13 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 replace _ VERB VB _ 18 acl _ _ 21 Maurice _ PROPN NNP _ 22 compound _ _ 22 Saatchi _ PROPN NNP _ 20 dobj _ _ 23 , _ PUNCT , _ 5 punct _ _ 24 has _ AUX VBZ _ 27 aux _ _ 25 been _ VERB VBN _ 27 cop _ _ 26 the _ DET DT _ 27 det _ _ 27 subject _ NOUN NN _ 0 root _ _ 28 of _ ADP IN _ 31 case _ _ 29 intense _ ADJ JJ _ 31 amod _ _ 30 takeover _ NOUN NN _ 31 compound _ _ 31 speculation _ NOUN NN _ 27 nmod _ _ 32 for _ ADP IN _ 33 case _ _ 33 weeks _ NOUN NNS _ 27 nmod _ _ 34 . _ PUNCT . _ 27 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 13 nmod:tmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 Saatchi _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 largest _ ADJ JJS _ 7 amod _ _ 7 shareholder _ NOUN NN _ 13 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Southeastern _ PROPN NNP _ 11 compound _ _ 10 Asset _ PROPN NNP _ 11 compound _ _ 11 Management _ PROPN NNP _ 7 appos _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 17 nsubjpass _ _ 15 had _ AUX VBD _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 approached _ VERB VBN _ 13 ccomp _ _ 18 by _ ADP IN _ 23 case _ _ 19 one _ NUM CD _ 23 nummod _ _ 20 or _ CONJ CC _ 19 cc _ _ 21 more _ ADJ JJR _ 19 conj _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 parties _ NOUN NNS _ 17 nmod _ _ 24 interested _ ADJ JJ _ 23 amod _ _ 25 in _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 possible _ ADJ JJ _ 28 amod _ _ 28 restructuring _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 13 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 Carl _ PROPN NNP _ 3 compound _ _ 3 Spielvogel _ PROPN NNP _ 18 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chief _ ADJ JJ _ 7 amod _ _ 6 executive _ ADJ JJ _ 7 amod _ _ 7 officer _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 16 case _ _ 9 Saatchi _ PROPN NNP _ 16 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 big _ ADJ JJ _ 16 amod _ _ 12 Backer _ PROPN NNP _ 16 compound _ _ 13 Spielvogel _ PROPN NNP _ 16 compound _ _ 14 Bates _ PROPN NNP _ 16 compound _ _ 15 advertising _ NOUN NN _ 16 compound _ _ 16 unit _ NOUN NN _ 7 nmod _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 he _ PRON PRP _ 21 nsubj _ _ 20 had _ AUX VBD _ 21 aux _ _ 21 offered _ VERB VBN _ 18 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 lead _ VERB VB _ 21 xcomp _ _ 24 a _ DET DT _ 26 det _ _ 25 management _ NOUN NN _ 26 compound _ _ 26 buy-out _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 company _ NOUN NN _ 26 nmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 but _ CONJ CC _ 21 cc _ _ 32 was _ AUX VBD _ 33 auxpass _ _ 33 rebuffed _ VERB VBN _ 21 conj _ _ 34 by _ ADP IN _ 36 case _ _ 35 Charles _ PROPN NNP _ 36 compound _ _ 36 Saatchi _ PROPN NNP _ 33 nmod _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Spielvogel _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 7 nsubj _ _ 5 would _ AUX MD _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 launch _ VERB VB _ 3 ccomp _ _ 8 a _ DET DT _ 10 det _ _ 9 hostile _ ADJ JJ _ 10 amod _ _ 10 bid _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 8 nsubj _ _ 3 close _ ADV RB _ 2 amod _ _ 4 to _ ADP TO _ 5 case _ _ 5 Saatchi _ PROPN NNP _ 3 nmod _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Saatchi _ PROPN NNP _ 5 conj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 35 mark _ _ 10 `` _ PUNCT `` _ 35 punct _ _ 11 if _ SCONJ IN _ 14 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 bidder _ NOUN NN _ 14 nsubj _ _ 14 came _ VERB VBD _ 35 advcl _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 with _ ADP IN _ 20 case _ _ 17 a _ DET DT _ 20 det _ _ 18 ludicrously _ ADV RB _ 19 advmod _ _ 19 high _ ADJ JJ _ 20 amod _ _ 20 offer _ NOUN NN _ 14 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 24 det _ _ 23 crazy _ ADJ JJ _ 24 amod _ _ 24 offer _ NOUN NN _ 20 appos _ _ 25 which _ PRON WDT _ 27 dobj _ _ 26 Saatchi _ PROPN NNP _ 27 nsubj _ _ 27 knew _ VERB VBD _ 24 acl:relcl _ _ 28 it _ PRON PRP _ 31 nsubj _ _ 29 could _ AUX MD _ 31 aux _ _ 30 n't _ PART RB _ 31 neg _ _ 31 beat _ VERB VB _ 27 ccomp _ _ 32 , _ PUNCT , _ 35 punct _ _ 33 it _ PRON PRP _ 35 nsubj _ _ 34 would _ AUX MD _ 35 aux _ _ 35 have _ VERB VB _ 8 ccomp _ _ 36 no _ DET DT _ 37 neg _ _ 37 choice _ NOUN NN _ 35 dobj _ _ 38 but _ CONJ CC _ 40 cc _ _ 39 to _ PART TO _ 40 mark _ _ 40 recommend _ VERB VB _ 37 acl _ _ 41 it _ PRON PRP _ 40 dobj _ _ 42 to _ ADP TO _ 43 case _ _ 43 shareholders _ NOUN NNS _ 40 nmod _ _ 44 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 -LCB- _ PUNCT -LRB- _ 3 punct _ _ 3 otherwise _ ADV RB _ 8 dep _ _ 4 -RCB- _ PUNCT -RRB- _ 3 punct _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 undoubtedly _ ADV RB _ 8 advmod _ _ 8 come _ VERB VB _ 0 root _ _ 9 back _ ADP RP _ 8 compound:prt _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 11 with _ ADP IN _ 13 case _ _ 12 an _ DET DT _ 13 det _ _ 13 offer _ NOUN NN _ 8 nmod _ _ 14 by _ ADP IN _ 15 case _ _ 15 management _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 any _ DET DT _ 5 det _ _ 5 buy-out _ NOUN NN _ 8 nsubjpass _ _ 6 would _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 led _ VERB VBN _ 3 ccomp _ _ 9 by _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 current _ ADJ JJ _ 12 amod _ _ 12 board _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 whose _ PRON WP$ _ 15 nmod:poss _ _ 15 chairman _ NOUN NN _ 18 nsubj _ _ 16 is _ VERB VBZ _ 18 cop _ _ 17 Maurice _ PROPN NNP _ 18 compound _ _ 18 Saatchi _ PROPN NNP _ 12 acl:relcl _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 whose _ PRON WP$ _ 23 nmod:poss _ _ 21 strategic _ ADJ JJ _ 23 amod _ _ 22 guiding _ ADJ JJ _ 23 amod _ _ 23 force _ NOUN NN _ 25 nsubjpass _ _ 24 is _ AUX VBZ _ 25 auxpass _ _ 25 believed _ VERB VBN _ 18 conj _ _ 26 to _ PART TO _ 29 mark _ _ 27 be _ VERB VB _ 29 cop _ _ 28 Charles _ PROPN NNP _ 29 compound _ _ 29 Saatchi _ PROPN NNP _ 25 xcomp _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Spielvogel _ PROPN NNP _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 n't _ PART RB _ 5 neg _ _ 5 part _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 board _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 nor _ CONJ CC _ 5 cc _ _ 11 are _ VERB VBP _ 5 conj _ _ 12 any _ DET DT _ 11 nsubj _ _ 13 of _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 heads _ NOUN NNS _ 12 nmod _ _ 17 of _ ADP IN _ 23 case _ _ 18 Saatchi _ PROPN NNP _ 23 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 big _ ADJ JJ _ 23 amod _ _ 21 U.S.-based _ ADJ JJ _ 23 amod _ _ 22 ad _ NOUN NN _ 23 compound _ _ 23 agencies _ NOUN NNS _ 16 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 name _ VERB VB _ 0 root _ _ 6 any _ DET DT _ 7 det _ _ 7 price _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 securities _ NOUN NNS _ 11 compound _ _ 11 analysts _ NOUN NNS _ 13 nsubj _ _ 12 have _ AUX VBP _ 13 aux _ _ 13 said _ VERB VBD _ 5 conj _ _ 14 Saatchi _ NOUN NNS _ 16 nsubj _ _ 15 would _ AUX MD _ 16 aux _ _ 16 fetch _ VERB VB _ 13 ccomp _ _ 17 upward _ ADV RB _ 19 advmod _ _ 18 of _ ADP IN _ 19 advmod _ _ 19 $ _ SYM $ _ 16 dobj _ _ 20 1.3 _ NUM CD _ 21 compound _ _ 21 billion _ NUM CD _ 19 nummod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executive _ NOUN NN _ 3 nsubj _ _ 3 denied _ VERB VBD _ 0 root _ _ 4 speculation _ NOUN NN _ 3 dobj _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 Saatchi _ PROPN NNP _ 8 nsubj _ _ 7 was _ AUX VBD _ 8 aux _ _ 8 bringing _ VERB VBG _ 4 ccomp _ _ 9 in _ ADP RP _ 8 compound:prt _ _ 10 the _ DET DT _ 14 det _ _ 11 new _ ADJ JJ _ 14 amod _ _ 12 chief _ ADJ JJ _ 14 amod _ _ 13 executive _ ADJ JJ _ 14 amod _ _ 14 officer _ NOUN NN _ 8 dobj _ _ 15 only _ ADV RB _ 17 advmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 clean _ VERB VB _ 8 advcl _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 the _ DET DT _ 20 det _ _ 20 company _ NOUN NN _ 17 dobj _ _ 21 financially _ ADV RB _ 17 advmod _ _ 22 so _ SCONJ IN _ 27 mark _ _ 23 that _ SCONJ IN _ 22 mwe _ _ 24 the _ DET DT _ 25 det _ _ 25 brothers _ NOUN NNS _ 27 nsubj _ _ 26 could _ AUX MD _ 27 aux _ _ 27 lead _ VERB VB _ 17 advcl _ _ 28 a _ DET DT _ 29 det _ _ 29 buy-back _ NOUN NN _ 27 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 speculation _ NOUN NN _ 3 nsubj _ _ 3 abounded _ VERB VBD _ 0 root _ _ 4 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 5 as _ SCONJ IN _ 8 mark _ _ 6 industry _ NOUN NN _ 7 compound _ _ 7 executives _ NOUN NNS _ 8 nsubj _ _ 8 analyzed _ VERB VBD _ 3 advcl _ _ 9 the _ DET DT _ 10 det _ _ 10 appointment _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 new _ ADJ JJ _ 15 amod _ _ 14 chief _ ADJ JJ _ 15 amod _ _ 15 executive _ NOUN NN _ 10 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Robert _ PROPN NNP _ 18 compound _ _ 18 Louis-Dreyfus _ PROPN NNP _ 15 appos _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 who _ PRON WP _ 21 nsubj _ _ 21 joins _ VERB VBZ _ 15 acl:relcl _ _ 22 Saatchi _ PROPN NNP _ 21 dobj _ _ 23 and _ CONJ CC _ 21 cc _ _ 24 becomes _ VERB VBZ _ 21 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 member _ NOUN NN _ 24 xcomp _ _ 27 of _ ADP IN _ 29 case _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 board _ NOUN NN _ 26 nmod _ _ 30 on _ ADP IN _ 31 case _ _ 31 Jan. _ PROPN NNP _ 21 nmod _ _ 32 1 _ NUM CD _ 31 nummod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Louis-Dreyfus _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 formerly _ ADV RB _ 6 advmod _ _ 5 chief _ ADJ JJ _ 6 amod _ _ 6 executive _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 14 case _ _ 8 the _ DET DT _ 14 det _ _ 9 pharmaceutical _ ADJ JJ _ 14 amod _ _ 10 research _ NOUN NN _ 14 compound _ _ 11 firm _ NOUN NN _ 14 compound _ _ 12 IMS _ PROPN NNP _ 14 compound _ _ 13 International _ PROPN NNP _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 has _ VERB VBZ _ 0 root _ _ 17 a _ DET DT _ 18 det _ _ 18 reputation _ NOUN NN _ 16 dobj _ _ 19 as _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 savvy _ ADJ JJ _ 23 amod _ _ 22 financial _ ADJ JJ _ 23 amod _ _ 23 manager _ NOUN NN _ 18 nmod _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 and _ CONJ CC _ 16 cc _ _ 26 will _ AUX MD _ 28 aux _ _ 27 be _ AUX VB _ 28 auxpass _ _ 28 charged _ VERB VBN _ 16 conj _ _ 29 largely _ ADV RB _ 31 advmod _ _ 30 with _ SCONJ IN _ 31 mark _ _ 31 repairing _ VERB VBG _ 28 advcl _ _ 32 Saatchi _ PROPN NNP _ 36 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 poor _ ADJ JJ _ 36 amod _ _ 35 financial _ ADJ JJ _ 36 amod _ _ 36 state _ NOUN NN _ 31 dobj _ _ 37 . _ PUNCT . _ 16 punct _ _ 1 Asked _ VERB VBN _ 24 advcl _ _ 2 about _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 speculation _ NOUN NN _ 1 nmod _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Louis-Dreyfus _ PROPN NNP _ 10 nsubjpass _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 auxpass _ _ 10 hired _ VERB VBN _ 4 ccomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 pave _ VERB VB _ 10 xcomp _ _ 13 the _ DET DT _ 14 det _ _ 14 way _ NOUN NN _ 12 dobj _ _ 15 for _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 buy-out _ NOUN NN _ 12 nmod _ _ 18 by _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 brothers _ NOUN NNS _ 17 nmod _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 the _ DET DT _ 23 det _ _ 23 executive _ NOUN NN _ 24 nsubj _ _ 24 replied _ VERB VBD _ 0 root _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 `` _ PUNCT `` _ 24 punct _ _ 27 That _ PRON DT _ 31 nsubj _ _ 28 is _ VERB VBZ _ 31 cop _ _ 29 n't _ PART RB _ 31 neg _ _ 30 the _ DET DT _ 31 det _ _ 31 reason _ NOUN NN _ 24 ccomp _ _ 32 Dreyfus _ PROPN NNP _ 35 nsubjpass _ _ 33 has _ AUX VBZ _ 35 aux _ _ 34 been _ AUX VBN _ 35 auxpass _ _ 35 brought _ VERB VBN _ 31 acl:relcl _ _ 36 in _ ADP RP _ 35 compound:prt _ _ 37 . _ PUNCT . _ 24 punct _ _ 1 He _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 brought _ VERB VBN _ 0 root _ _ 4 in _ ADP RP _ 3 compound:prt _ _ 5 to _ PART TO _ 6 mark _ _ 6 turn _ VERB VB _ 3 xcomp _ _ 7 around _ ADP RP _ 6 compound:prt _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 6 dobj _ _ 10 . _ PUNCT . _ 3 punct _ _ 11 '' _ PUNCT '' _ 3 punct _ _ 1 Separately _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 several _ ADJ JJ _ 6 amod _ _ 4 Saatchi _ PROPN NNP _ 6 compound _ _ 5 agency _ NOUN NN _ 6 compound _ _ 6 clients _ NOUN NNS _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 believe _ VERB VBP _ 7 ccomp _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 14 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 management _ NOUN NN _ 14 compound _ _ 14 shakeup _ NOUN NN _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 have _ VERB VB _ 9 ccomp _ _ 17 little _ ADJ JJ _ 18 amod _ _ 18 affect _ NOUN NN _ 16 dobj _ _ 19 on _ ADP IN _ 20 case _ _ 20 them _ PRON PRP _ 18 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 It _ PRON PRP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 had _ VERB VBN _ 19 ccomp _ _ 6 any _ DET DT _ 7 det _ _ 7 impact _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 9 case _ _ 9 us _ PRON PRP _ 7 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 nor _ CONJ CC _ 5 cc _ _ 12 do _ AUX VBP _ 14 aux _ _ 13 we _ PRON PRP _ 14 nsubj _ _ 14 expect _ VERB VB _ 5 conj _ _ 15 it _ PRON PRP _ 14 dobj _ _ 16 to _ PART TO _ 14 xcomp _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 a _ DET DT _ 21 det _ _ 21 spokeswoman _ NOUN NN _ 19 nsubj _ _ 22 for _ ADP IN _ 25 case _ _ 23 Miller _ PROPN NNP _ 25 compound _ _ 24 Brewing _ PROPN NNP _ 25 compound _ _ 25 Co. _ PROPN NNP _ 21 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 29 det _ _ 28 major _ ADJ JJ _ 29 amod _ _ 29 client _ NOUN NN _ 25 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 Backer _ PROPN NNP _ 32 compound _ _ 32 Spielvogel _ PROPN NNP _ 29 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 John _ PROPN NNP _ 2 compound _ _ 2 Lampe _ PROPN NNP _ 18 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 director _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 6 case _ _ 6 advertising _ NOUN NN _ 4 nmod _ _ 7 at _ ADP IN _ 9 case _ _ 8 PaineWebber _ PROPN NNP _ 9 compound _ _ 9 Inc. _ PROPN NNP _ 4 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 12 det _ _ 12 Saatchi _ PROPN NNP _ 9 appos _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Saatchi _ PROPN NNP _ 16 compound _ _ 15 Advertising _ PROPN NNP _ 16 compound _ _ 16 client _ NOUN NN _ 12 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 : _ PUNCT : _ 18 punct _ _ 20 `` _ PUNCT `` _ 22 punct _ _ 21 We _ PRON PRP _ 22 nsubj _ _ 22 have _ VERB VBP _ 18 ccomp _ _ 23 no _ DET DT _ 24 neg _ _ 24 problem _ NOUN NN _ 22 dobj _ _ 25 with _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 announcement _ NOUN NN _ 24 nmod _ _ 28 , _ PUNCT , _ 22 punct _ _ 29 because _ SCONJ IN _ 33 mark _ _ 30 we _ PRON PRP _ 33 nsubj _ _ 31 do _ AUX VBP _ 33 aux _ _ 32 n't _ PART RB _ 33 neg _ _ 33 know _ VERB VB _ 22 advcl _ _ 34 what _ PRON WP _ 35 det _ _ 35 change _ NOUN NN _ 38 dobj _ _ 36 it _ PRON PRP _ 38 nsubj _ _ 37 's _ AUX VBZ _ 38 aux _ _ 38 going _ VERB VBG _ 33 ccomp _ _ 39 to _ PART TO _ 40 mark _ _ 40 bring _ VERB VB _ 38 xcomp _ _ 41 about _ ADP RP _ 40 compound:prt _ _ 42 . _ PUNCT . _ 18 punct _ _ 1 We _ PRON PRP _ 4 nsubj _ _ 2 are _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 going _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 change _ VERB VB _ 4 xcomp _ _ 7 agencies _ NOUN NNS _ 6 dobj _ _ 8 because _ ADP IN _ 11 case _ _ 9 of _ ADP IN _ 8 mwe _ _ 10 a _ DET DT _ 11 det _ _ 11 change _ NOUN NN _ 6 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 London _ PROPN NNP _ 11 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 15 '' _ PUNCT '' _ 4 punct _ _ 1 Executives _ NOUN NNS _ 20 nsubj _ _ 2 at _ ADP IN _ 7 case _ _ 3 Backer _ PROPN NNP _ 7 compound _ _ 4 Spielvogel _ PROPN NNP _ 7 compound _ _ 5 client _ NOUN NN _ 7 compound _ _ 6 Avis _ PROPN NNP _ 7 compound _ _ 7 Inc. _ PROPN NNP _ 1 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 as _ ADV RB _ 7 cc _ _ 10 well _ ADV RB _ 9 mwe _ _ 11 as _ ADP IN _ 9 mwe _ _ 12 at _ ADP IN _ 17 case _ _ 13 Saatchi _ NOUN NNS _ 17 compound _ _ 14 client _ NOUN NN _ 17 compound _ _ 15 Philips _ PROPN NNP _ 17 compound _ _ 16 Lighting _ PROPN NNP _ 17 compound _ _ 17 Co. _ PROPN NNP _ 7 conj _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 also _ ADV RB _ 20 advmod _ _ 20 said _ VERB VBD _ 0 root _ _ 21 they _ PRON PRP _ 22 nsubj _ _ 22 saw _ VERB VBD _ 20 ccomp _ _ 23 no _ DET DT _ 24 neg _ _ 24 effect _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 20 punct _ _ 1 Executives _ NOUN NNS _ 17 nsubj _ _ 2 at _ ADP IN _ 5 case _ _ 3 Prudential-Bache _ PROPN NNP _ 5 compound _ _ 4 Securities _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 10 det _ _ 8 Backer _ PROPN NNP _ 10 compound _ _ 9 Spielvogel _ PROPN NNP _ 10 compound _ _ 10 client _ NOUN NN _ 5 appos _ _ 11 that _ PRON WDT _ 13 nsubj _ _ 12 is _ AUX VBZ _ 13 aux _ _ 13 reviewing _ VERB VBG _ 10 acl:relcl _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 account _ NOUN NN _ 13 dobj _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 declined _ VERB VBD _ 0 root _ _ 18 comment _ NOUN NN _ 17 dobj _ _ 19 . _ PUNCT . _ 17 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Spielvogel _ PROPN NNP _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 said _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 Prudential-Bache _ PROPN NNP _ 8 nsubjpass _ _ 7 was _ VERB VBD _ 8 auxpass _ _ 8 prepared _ VERB VBN _ 4 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 finance _ VERB VB _ 8 xcomp _ _ 11 either _ CONJ CC _ 14 cc:preconj _ _ 12 a _ DET DT _ 14 det _ _ 13 management _ NOUN NN _ 14 compound _ _ 14 buy-out _ NOUN NN _ 10 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 restructuring _ NOUN NN _ 14 conj _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 or _ CONJ CC _ 14 cc _ _ 19 a _ DET DT _ 20 det _ _ 20 buy-out _ NOUN NN _ 14 conj _ _ 21 of _ ADP IN _ 23 case _ _ 22 Backer _ PROPN NNP _ 23 compound _ _ 23 Spielvogel _ PROPN NNP _ 20 nmod _ _ 24 alone _ ADV RB _ 23 advmod _ _ 25 , _ PUNCT , _ 20 punct _ _ 26 led _ VERB VBN _ 20 acl _ _ 27 by _ ADP IN _ 28 case _ _ 28 him _ PRON PRP _ 26 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Ad _ NOUN NN _ 2 compound _ _ 2 Notes _ NOUN NNS _ 0 root _ _ 3 ... _ PUNCT : _ 2 punct _ _ 4 . _ PUNCT . _ 2 punct _ _ 1 NEW _ ADJ JJ _ 2 amod _ _ 2 ACCOUNT _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 California _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Glendale _ PROPN NNP _ 5 compound _ _ 4 Federal _ PROPN NNP _ 5 compound _ _ 5 Bank _ PROPN NNP _ 6 nsubj _ _ 6 awarded _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 15 nmod:poss _ _ 8 $ _ SYM $ _ 12 dep _ _ 9 12 _ NUM CD _ 12 compound _ _ 10 million _ NUM CD _ 12 compound _ _ 11 to _ ADP TO _ 12 dep _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 15 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 account _ NOUN NN _ 6 dobj _ _ 16 to _ ADP TO _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 Los _ PROPN NNP _ 20 compound _ _ 19 Angeles _ PROPN NNP _ 20 compound _ _ 20 office _ NOUN NN _ 6 nmod _ _ 21 of _ ADP IN _ 26 case _ _ 22 Omnicom _ PROPN NNP _ 23 compound _ _ 23 Group _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 BBDO _ PROPN NNP _ 26 compound _ _ 26 agency _ NOUN NN _ 20 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 account _ NOUN NN _ 5 nsubjpass _ _ 3 was _ AUX VBD _ 5 auxpass _ _ 4 previously _ ADV RB _ 5 advmod _ _ 5 handled _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 13 case _ _ 7 Davis _ PROPN NNP _ 13 compound _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Ball _ PROPN NNP _ 7 conj _ _ 10 & _ CONJ CC _ 7 cc _ _ 11 Colombatto _ PROPN NNP _ 7 conj _ _ 12 Advertising _ PROPN NNP _ 13 compound _ _ 13 Inc. _ PROPN NNP _ 5 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 18 det _ _ 16 Los _ PROPN NNP _ 18 compound _ _ 17 Angeles _ PROPN NNP _ 18 compound _ _ 18 agency _ NOUN NN _ 13 appos _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 ACCOUNT _ PROPN NNP _ 2 compound _ _ 2 REVIEW _ PROPN NNP _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 Royal _ PROPN NNP _ 4 compound _ _ 2 Crown _ PROPN NNP _ 4 compound _ _ 3 Cola _ PROPN NNP _ 4 compound _ _ 4 Co. _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 ended _ VERB VBN _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 relationship _ NOUN NN _ 6 dobj _ _ 9 with _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 Boston _ PROPN NNP _ 12 compound _ _ 12 office _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 20 case _ _ 14 Hill _ PROPN NNP _ 20 compound _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 Holliday _ PROPN NNP _ 20 appos _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 Connors _ PROPN NNP _ 20 appos _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 Cosmopulos _ PROPN NNP _ 12 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 account _ NOUN NN _ 4 nsubj _ _ 3 had _ AUX VBD _ 4 aux _ _ 4 billed _ VERB VBN _ 0 root _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 $ _ SYM $ _ 4 dobj _ _ 7 6 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 10 case _ _ 10 1988 _ NUM CD _ 4 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 according _ VERB VBG _ 16 case _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 Leading _ PROPN NNP _ 16 compound _ _ 15 National _ PROPN NNP _ 16 compound _ _ 16 Advertisers _ PROPN NNP _ 4 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 NOT-GUILTY _ ADJ JJ _ 2 amod _ _ 2 PLEA _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 As _ SCONJ IN _ 2 mark _ _ 2 expected _ VERB VBN _ 18 advcl _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 Young _ PROPN NNP _ 7 compound _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Rubicam _ PROPN NNP _ 4 conj _ _ 7 Inc. _ PROPN NNP _ 18 nsubj _ _ 8 along _ ADP IN _ 7 advmod _ _ 9 with _ ADP IN _ 12 case _ _ 10 two _ NUM CD _ 12 nummod _ _ 11 senior _ ADJ JJ _ 12 amod _ _ 12 executives _ NOUN NNS _ 8 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 a _ DET DT _ 16 det _ _ 15 former _ ADJ JJ _ 16 amod _ _ 16 employee _ NOUN NN _ 12 conj _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 pleaded _ VERB VBD _ 0 root _ _ 19 not _ ADV RB _ 20 neg _ _ 20 guilty _ ADJ JJ _ 18 xcomp _ _ 21 in _ ADP IN _ 23 case _ _ 22 federal _ ADJ JJ _ 23 amod _ _ 23 court _ NOUN NN _ 18 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 New _ PROPN NNP _ 26 compound _ _ 26 Haven _ PROPN NNP _ 18 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Conn. _ PROPN NNP _ 26 appos _ _ 29 , _ PUNCT , _ 26 punct _ _ 30 to _ ADP TO _ 34 case _ _ 31 conspiracy _ NOUN NN _ 34 compound _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 racketeering _ NOUN NN _ 31 conj _ _ 34 charges _ NOUN NNS _ 18 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 charged _ VERB VBN _ 0 root _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 bribed _ VERB VBD _ 4 ccomp _ _ 8 Jamaican _ ADJ JJ _ 9 amod _ _ 9 officials _ NOUN NNS _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 win _ VERB VB _ 7 advcl _ _ 12 the _ DET DT _ 17 det _ _ 13 Jamaica _ PROPN NNP _ 17 compound _ _ 14 Tourist _ PROPN NNP _ 17 compound _ _ 15 Board _ PROPN NNP _ 17 compound _ _ 16 ad _ NOUN NN _ 17 compound _ _ 17 account _ NOUN NN _ 11 dobj _ _ 18 in _ ADP IN _ 19 case _ _ 19 1981 _ NUM CD _ 7 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 9 nsubj _ _ 3 for _ ADP IN _ 8 case _ _ 4 the _ DET DT _ 6 det _ _ 5 U.S. _ PROPN NNP _ 6 compound _ _ 6 Attorney _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 office _ NOUN NN _ 2 nmod _ _ 9 said _ VERB VBD _ 0 root _ _ 10 extradition _ NOUN NN _ 11 compound _ _ 11 proceedings _ NOUN NNS _ 15 nsubj _ _ 12 are _ AUX VBP _ 15 aux _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 just _ ADV RB _ 15 advmod _ _ 15 beginning _ VERB VBG _ 9 ccomp _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 for _ ADP IN _ 21 case _ _ 18 the _ DET DT _ 21 det _ _ 19 other _ ADJ JJ _ 21 amod _ _ 20 two _ NUM CD _ 21 nummod _ _ 21 defendants _ NOUN NNS _ 15 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 case _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 21 punct _ _ 26 Eric _ PROPN NNP _ 28 compound _ _ 27 Anthony _ PROPN NNP _ 28 compound _ _ 28 Abrahams _ PROPN NNP _ 21 appos _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 former _ ADJ JJ _ 33 amod _ _ 31 Jamaican _ ADJ JJ _ 33 amod _ _ 32 tourism _ NOUN NN _ 33 compound _ _ 33 minister _ NOUN NN _ 28 appos _ _ 34 , _ PUNCT , _ 28 punct _ _ 35 and _ CONJ CC _ 28 cc _ _ 36 Jamaican _ ADJ JJ _ 40 amod _ _ 37 businessman _ NOUN NN _ 40 compound _ _ 38 Arnold _ PROPN NNP _ 40 compound _ _ 39 Foote _ PROPN NNP _ 40 compound _ _ 40 Jr _ PROPN NNP _ 28 conj _ _ 41 . _ PUNCT . _ 9 punct _ _ 1 KOREAN _ ADJ JJ _ 2 amod _ _ 2 AGENCY _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Samsung _ PROPN NNP _ 3 compound _ _ 3 Group _ PROPN NNP _ 7 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Bozell _ PROPN NNP _ 6 compound _ _ 6 Inc. _ PROPN NNP _ 3 conj _ _ 7 agreed _ VERB VBD _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 establish _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 14 det _ _ 11 joint _ ADJ JJ _ 14 amod _ _ 12 venture _ NOUN NN _ 14 compound _ _ 13 advertising _ NOUN NN _ 14 compound _ _ 14 agency _ NOUN NN _ 9 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 South _ PROPN NNP _ 17 compound _ _ 17 Korea _ PROPN NNP _ 9 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Bozell _ PROPN NNP _ 3 compound _ _ 2 Cheil _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 15 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 as _ SCONJ IN _ 11 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 agency _ NOUN NN _ 11 nsubjpass _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 called _ VERB VBN _ 3 dep _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 will _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 based _ VERB VBN _ 0 root _ _ 16 in _ ADP IN _ 17 case _ _ 17 Seoul _ PROPN NNP _ 15 nmod _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 is _ AUX VBZ _ 22 auxpass _ _ 20 70 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 22 dobj _ _ 22 owned _ VERB VBN _ 15 conj _ _ 23 by _ ADP IN _ 24 case _ _ 24 Samsung _ PROPN NNP _ 22 nmod _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 30 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 28 dobj _ _ 28 owned _ VERB VBN _ 22 conj _ _ 29 by _ ADP IN _ 30 case _ _ 30 Bozell _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 Samsung _ PROPN NNP _ 3 nsubj _ _ 2 already _ ADV RB _ 3 advmod _ _ 3 owns _ VERB VBZ _ 0 root _ _ 4 Korea _ PROPN NNP _ 7 compound _ _ 5 First _ PROPN NNP _ 7 compound _ _ 6 Advertising _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 3 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 that _ DET DT _ 10 det _ _ 10 country _ NOUN NN _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 largest _ ADJ JJS _ 13 amod _ _ 13 agency _ NOUN NN _ 7 appos _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Bozell _ PROPN NNP _ 2 nsubj _ _ 2 joins _ VERB VBZ _ 0 root _ _ 3 Backer _ PROPN NNP _ 5 compound _ _ 4 Spielvogel _ PROPN NNP _ 5 compound _ _ 5 Bates _ PROPN NNP _ 2 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 Ogilvy _ PROPN NNP _ 8 compound _ _ 8 Group _ PROPN NNP _ 5 conj _ _ 9 as _ ADP IN _ 11 case _ _ 10 U.S. _ PROPN NNP _ 11 compound _ _ 11 agencies _ NOUN NNS _ 2 nmod _ _ 12 with _ ADP IN _ 13 case _ _ 13 interests _ NOUN NNS _ 11 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 Korean _ ADJ JJ _ 16 amod _ _ 16 agencies _ NOUN NNS _ 13 nmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Citing _ VERB VBG _ 17 advcl _ _ 2 a _ DET DT _ 3 det _ _ 3 payment _ NOUN NN _ 1 dobj _ _ 4 from _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 supplier _ NOUN NN _ 3 nmod _ _ 7 and _ CONJ CC _ 3 cc _ _ 8 strong _ ADJ JJ _ 9 amod _ _ 9 sales _ NOUN NNS _ 3 conj _ _ 10 of _ ADP IN _ 13 case _ _ 11 certain _ ADJ JJ _ 13 amod _ _ 12 data-storage _ ADJ JJ _ 13 amod _ _ 13 products _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Maxtor _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 earnings _ NOUN NNS _ 21 nsubj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 revenue _ NOUN NN _ 18 conj _ _ 21 jumped _ VERB VBD _ 17 ccomp _ _ 22 in _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 second _ ADJ JJ _ 25 amod _ _ 25 quarter _ NOUN NN _ 21 nmod _ _ 26 ended _ VERB VBN _ 25 acl _ _ 27 Sept. _ PROPN NNP _ 26 nmod:tmod _ _ 28 24 _ NUM CD _ 27 nummod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 maker _ NOUN NN _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 computer-data-storage _ ADJ JJ _ 5 amod _ _ 5 products _ NOUN NNS _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 net _ ADJ JJ _ 8 amod _ _ 8 income _ NOUN NN _ 9 nsubj _ _ 9 rose _ VERB VBD _ 6 ccomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 4.8 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 23 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 from _ ADP IN _ 23 case _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 net _ NOUN NN _ 9 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 1.1 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 five _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 soared _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 117 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 from _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 2 nmod _ _ 9 81.5 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 Maxtor _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 results _ NOUN NNS _ 6 nsubjpass _ _ 5 were _ AUX VBD _ 6 auxpass _ _ 6 boosted _ VERB VBN _ 2 ccomp _ _ 7 by _ ADP IN _ 10 case _ _ 8 $ _ SYM $ _ 10 dep _ _ 9 2 _ NUM CD _ 10 nummod _ _ 10 million _ NUM CD _ 6 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 payments _ NOUN NNS _ 10 nmod _ _ 13 received _ VERB VBN _ 12 acl _ _ 14 from _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 supplier _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 for _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 certain _ ADJ JJ _ 21 amod _ _ 21 line _ NOUN NN _ 12 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 products _ NOUN NNS _ 21 nmod _ _ 24 that _ ADP IN _ 28 dobj _ _ 25 Maxtor _ PROPN NNP _ 28 nsubj _ _ 26 is _ AUX VBZ _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 going _ VERB VBG _ 21 acl:relcl _ _ 29 to _ PART TO _ 30 mark _ _ 30 sell _ VERB VB _ 28 xcomp _ _ 31 anymore _ ADV RB _ 30 advmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 Maxtor _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 effects _ NOUN NNS _ 9 nsubj _ _ 4 from _ SCONJ IN _ 5 mark _ _ 5 discontinuing _ VERB VBG _ 3 acl _ _ 6 the _ DET DT _ 7 det _ _ 7 line _ NOUN NN _ 5 dobj _ _ 8 may _ AUX MD _ 9 aux _ _ 9 have _ VERB VB _ 2 ccomp _ _ 10 a _ DET DT _ 12 det _ _ 11 positive _ ADJ JJ _ 12 amod _ _ 12 effect _ NOUN NN _ 9 dobj _ _ 13 on _ ADP IN _ 15 case _ _ 14 future _ ADJ JJ _ 15 amod _ _ 15 earnings _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 revenue _ NOUN NN _ 15 conj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokeswoman _ NOUN NN _ 5 nsubj _ _ 3 would _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 elaborate _ VERB VB _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 but _ CONJ CC _ 5 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 company _ NOUN NN _ 10 nsubj _ _ 10 said _ VERB VBD _ 5 conj _ _ 11 the _ DET DT _ 13 det _ _ 12 discontinued _ VERB VBN _ 13 amod _ _ 13 product _ NOUN NN _ 19 nsubj _ _ 14 has _ AUX VBZ _ 19 aux _ _ 15 never _ ADV RB _ 19 neg _ _ 16 been _ VERB VBN _ 19 cop _ _ 17 a _ DET DT _ 19 det _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 source _ NOUN NN _ 10 ccomp _ _ 20 of _ ADP IN _ 21 case _ _ 21 revenue _ NOUN NN _ 19 nmod _ _ 22 or _ CONJ CC _ 21 cc _ _ 23 profit _ NOUN NN _ 21 conj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Operationally _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Maxtor _ PROPN NNP _ 4 nsubj _ _ 4 benefited _ VERB VBD _ 0 root _ _ 5 from _ ADP IN _ 7 case _ _ 6 robust _ ADJ JJ _ 7 amod _ _ 7 sales _ NOUN NNS _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 products _ NOUN NNS _ 7 nmod _ _ 10 that _ PRON WDT _ 11 nsubj _ _ 11 store _ VERB VBP _ 9 acl:relcl _ _ 12 data _ NOUN NNS _ 11 dobj _ _ 13 for _ ADP IN _ 16 case _ _ 14 high-end _ ADJ JJ _ 16 amod _ _ 15 personal _ ADJ JJ _ 16 amod _ _ 16 computers _ NOUN NNS _ 11 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 computer _ NOUN NN _ 19 compound _ _ 19 workstations _ NOUN NNS _ 16 conj _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 fiscal _ ADJ JJ _ 5 amod _ _ 4 first _ ADJ JJ _ 5 amod _ _ 5 half _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 net _ NOUN NN _ 9 nsubj _ _ 8 was _ VERB VBD _ 9 cop _ _ 9 $ _ SYM $ _ 0 root _ _ 10 7 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 34 _ NUM CD _ 15 nummod _ _ 15 cents _ NOUN NNS _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 up _ ADV RB _ 9 advmod _ _ 20 from _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 year-earlier _ ADJ JJ _ 23 amod _ _ 23 $ _ SYM $ _ 19 nmod _ _ 24 3.1 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 15 _ NUM CD _ 29 nummod _ _ 29 cents _ NOUN NNS _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 rose _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 225.5 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 from _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 2 nmod _ _ 9 161.8 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 Robert _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Walden _ PROPN NNP _ 10 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 62 _ NUM CD _ 6 nummod _ _ 6 years _ NOUN NNS _ 7 nmod:npmod _ _ 7 old _ ADJ JJ _ 3 amod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 elected _ VERB VBN _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 director _ NOUN NN _ 10 xcomp _ _ 13 of _ ADP IN _ 15 case _ _ 14 this _ DET DT _ 15 det _ _ 15 provider _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 advanced _ ADJ JJ _ 19 amod _ _ 18 technology _ NOUN NN _ 19 compound _ _ 19 systems _ NOUN NNS _ 15 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 services _ NOUN NNS _ 19 conj _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 increasing _ VERB VBG _ 10 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 board _ NOUN NN _ 23 dobj _ _ 26 to _ ADP TO _ 28 case _ _ 27 eight _ NUM CD _ 28 nummod _ _ 28 members _ NOUN NNS _ 23 nmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 retired _ VERB VBD _ 0 root _ _ 3 as _ ADP IN _ 6 case _ _ 4 senior _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 finance _ NOUN NN _ 6 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 administration _ NOUN NN _ 8 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 chief _ ADJ JJ _ 15 amod _ _ 14 financial _ ADJ JJ _ 15 amod _ _ 15 officer _ NOUN NN _ 6 conj _ _ 16 of _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 15 nmod _ _ 19 Oct. _ PROPN NNP _ 2 nmod:tmod _ _ 20 1 _ NUM CD _ 19 nummod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Southmark _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 filed _ VERB VBD _ 3 ccomp _ _ 7 part _ NOUN NN _ 6 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 10-K _ ADJ JJ _ 11 amod _ _ 11 report _ NOUN NN _ 7 nmod _ _ 12 with _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 Securities _ PROPN NNP _ 17 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 Exchange _ PROPN NNP _ 14 conj _ _ 17 Commission _ PROPN NNP _ 6 nmod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 but _ CONJ CC _ 6 cc _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 filing _ NOUN NN _ 25 nsubj _ _ 23 does _ AUX VBZ _ 25 aux _ _ 24 n't _ PART RB _ 25 neg _ _ 25 include _ VERB VB _ 6 conj _ _ 26 its _ PRON PRP$ _ 29 nmod:poss _ _ 27 audited _ ADJ JJ _ 29 amod _ _ 28 financial _ ADJ JJ _ 29 amod _ _ 29 statements _ NOUN NNS _ 25 dobj _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 related _ ADJ JJ _ 32 amod _ _ 32 information _ NOUN NN _ 29 conj _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 real _ ADJ JJ _ 3 amod _ _ 3 estate _ NOUN NN _ 13 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 thrift _ NOUN NN _ 6 compound _ _ 6 concern _ NOUN NN _ 3 conj _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 operating _ VERB VBG _ 13 advcl _ _ 9 under _ ADP IN _ 11 case _ _ 10 bankruptcy-law _ NOUN NN _ 11 compound _ _ 11 proceedings _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 told _ VERB VBD _ 13 ccomp _ _ 16 the _ DET DT _ 17 det _ _ 17 SEC _ PROPN NNP _ 15 dobj _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 could _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 provide _ VERB VB _ 15 ccomp _ _ 22 financial _ ADJ JJ _ 23 amod _ _ 23 statements _ NOUN NNS _ 21 dobj _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 end _ NOUN NN _ 21 nmod _ _ 27 of _ ADP IN _ 30 case _ _ 28 its _ PRON PRP$ _ 30 nmod:poss _ _ 29 first _ ADJ JJ _ 30 amod _ _ 30 extension _ NOUN NN _ 26 nmod _ _ 31 `` _ PUNCT `` _ 21 punct _ _ 32 without _ ADP IN _ 34 case _ _ 33 unreasonable _ ADJ JJ _ 34 amod _ _ 34 burden _ NOUN NN _ 21 nmod _ _ 35 or _ CONJ CC _ 34 cc _ _ 36 expense _ NOUN NN _ 34 conj _ _ 37 . _ PUNCT . _ 13 punct _ _ 38 '' _ PUNCT '' _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 asked _ VERB VBD _ 0 root _ _ 4 for _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 15-day _ ADJ JJ _ 7 amod _ _ 7 extension _ NOUN NN _ 3 nmod _ _ 8 Sept. _ PROPN NNP _ 3 nmod:tmod _ _ 9 30 _ NUM CD _ 8 nummod _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 when _ ADV WRB _ 16 advmod _ _ 12 the _ DET DT _ 14 det _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 reports _ NOUN NNS _ 16 nsubj _ _ 15 were _ VERB VBD _ 16 cop _ _ 16 due _ ADJ JJ _ 8 acl:relcl _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 Southmark _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 plans _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 amend _ VERB VB _ 4 xcomp _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 10K _ ADJ JJ _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 provide _ VERB VB _ 6 advcl _ _ 11 financial _ ADJ JJ _ 12 amod _ _ 12 results _ NOUN NNS _ 10 dobj _ _ 13 as _ ADV RB _ 14 advmod _ _ 14 soon _ ADV RB _ 6 advmod _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 audit _ NOUN NN _ 19 nsubjpass _ _ 18 is _ AUX VBZ _ 19 auxpass _ _ 19 completed _ VERB VBN _ 14 advcl _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Alan _ PROPN NNP _ 2 compound _ _ 2 Seelenfreund _ PROPN NNP _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 52 _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 old _ ADJ JJ _ 2 amod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 named _ VERB VBN _ 0 root _ _ 10 chairman _ NOUN NN _ 9 xcomp _ _ 11 of _ ADP IN _ 13 case _ _ 12 this _ DET DT _ 13 det _ _ 13 processor _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 16 case _ _ 15 prescription _ NOUN NN _ 16 compound _ _ 16 claims _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 succeeding _ VERB VBG _ 9 xcomp _ _ 19 Thomas _ PROPN NNP _ 22 compound _ _ 20 W. _ PROPN NNP _ 22 compound _ _ 21 Field _ PROPN NNP _ 22 compound _ _ 22 Jr. _ PROPN NNP _ 18 dobj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 55 _ NUM CD _ 22 amod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 resigned _ VERB VBD _ 22 acl:relcl _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 month _ NOUN NN _ 27 nmod:tmod _ _ 30 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Field _ PROPN NNP _ 6 nsubj _ _ 3 also _ ADV RB _ 6 advmod _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ VERB VBN _ 6 cop _ _ 6 chairman _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 McKesson _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 resigning _ VERB VBG _ 6 advcl _ _ 12 that _ DET DT _ 13 det _ _ 13 post _ NOUN NN _ 11 dobj _ _ 14 after _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 dispute _ NOUN NN _ 11 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 board _ NOUN NN _ 16 nmod _ _ 20 over _ ADP IN _ 22 case _ _ 21 corporate _ ADJ JJ _ 22 amod _ _ 22 strategy _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Seelenfreund _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 executive _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 0 root _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 chief _ ADJ JJ _ 10 amod _ _ 9 financial _ ADJ JJ _ 10 amod _ _ 10 officer _ NOUN NN _ 6 conj _ _ 11 of _ ADP IN _ 12 case _ _ 12 McKesson _ PROPN NNP _ 6 nmod _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 will _ AUX MD _ 15 aux _ _ 15 continue _ VERB VB _ 6 conj _ _ 16 in _ ADP IN _ 18 case _ _ 17 those _ DET DT _ 18 det _ _ 18 roles _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 PCS _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 named _ VERB VBD _ 0 root _ _ 4 Rex _ PROPN NNP _ 6 compound _ _ 5 R. _ PROPN NNP _ 6 compound _ _ 6 Malson _ PROPN NNP _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 57 _ NUM CD _ 6 amod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 executive _ ADJ JJ _ 12 amod _ _ 11 vice _ NOUN NN _ 12 compound _ _ 12 president _ NOUN NN _ 6 appos _ _ 13 at _ ADP IN _ 14 case _ _ 14 McKesson _ PROPN NNP _ 12 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 as _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 director _ NOUN NN _ 3 nmod _ _ 19 , _ PUNCT , _ 3 punct _ _ 20 filling _ VERB VBG _ 3 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 seat _ NOUN NN _ 20 dobj _ _ 23 vacated _ VERB VBN _ 22 acl _ _ 24 by _ ADP IN _ 26 case _ _ 25 Mr. _ PROPN NNP _ 26 compound _ _ 26 Field _ PROPN NNP _ 23 nmod _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Messrs. _ PROPN NNP _ 2 compound _ _ 2 Malson _ PROPN NNP _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Seelenfreund _ PROPN NNP _ 2 conj _ _ 5 are _ VERB VBP _ 6 cop _ _ 6 directors _ NOUN NNS _ 0 root _ _ 7 of _ ADP IN _ 8 case _ _ 8 McKesson _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 11 nsubj _ _ 11 has _ VERB VBZ _ 8 acl:relcl _ _ 12 an _ DET DT _ 15 det _ _ 13 86 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 stake _ NOUN NN _ 11 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 PCS _ PROPN NNP _ 15 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 MedChem _ PROPN NNP _ 3 compound _ _ 2 Products _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 8 det _ _ 6 U.S. _ PROPN NNP _ 8 compound _ _ 7 District _ PROPN NNP _ 8 compound _ _ 8 Court _ PROPN NNP _ 11 nsubj _ _ 9 in _ ADP IN _ 10 case _ _ 10 Boston _ PROPN NNP _ 8 nmod _ _ 11 ruled _ VERB VBD _ 4 ccomp _ _ 12 that _ SCONJ IN _ 31 mark _ _ 13 a _ DET DT _ 14 det _ _ 14 challenge _ NOUN NN _ 31 nsubj _ _ 15 by _ ADP IN _ 16 case _ _ 16 MedChem _ PROPN NNP _ 14 nmod _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 validity _ NOUN NN _ 14 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 U.S. _ PROPN NNP _ 23 compound _ _ 23 patent _ NOUN NN _ 19 nmod _ _ 24 held _ VERB VBN _ 23 acl _ _ 25 by _ ADP IN _ 27 case _ _ 26 Pharmacia _ PROPN NNP _ 27 compound _ _ 27 Inc. _ PROPN NNP _ 24 nmod _ _ 28 was _ VERB VBD _ 31 cop _ _ 29 `` _ PUNCT `` _ 31 punct _ _ 30 without _ ADP IN _ 31 case _ _ 31 merit _ NOUN NN _ 11 ccomp _ _ 32 . _ PUNCT . _ 4 punct _ _ 33 '' _ PUNCT '' _ 4 punct _ _ 1 Pharmacia _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 based _ VERB VBN _ 1 acl _ _ 4 in _ ADP IN _ 5 case _ _ 5 Upsala _ PROPN NNP _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Sweden _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 had _ AUX VBD _ 10 aux _ _ 10 charged _ VERB VBN _ 0 root _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 lawsuit _ NOUN NN _ 10 nmod _ _ 14 against _ ADP IN _ 15 case _ _ 15 MedChem _ PROPN NNP _ 13 nmod _ _ 16 that _ SCONJ IN _ 22 mark _ _ 17 MedChem _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 AMVISC _ PROPN NNP _ 21 compound _ _ 20 product _ NOUN NN _ 21 compound _ _ 21 line _ NOUN NN _ 22 nsubj _ _ 22 infringes _ VERB VBZ _ 10 ccomp _ _ 23 on _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 Pharmacia _ PROPN NNP _ 26 compound _ _ 26 patent _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 patent _ NOUN NN _ 4 nsubjpass _ _ 3 is _ VERB VBZ _ 4 auxpass _ _ 4 related _ VERB VBN _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 hyaluronic _ ADJ JJ _ 7 amod _ _ 7 acid _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 rooster-comb _ NOUN NN _ 11 compound _ _ 11 extract _ NOUN NN _ 7 appos _ _ 12 used _ VERB VBN _ 11 acl _ _ 13 in _ ADP IN _ 15 case _ _ 14 eye _ NOUN NN _ 15 compound _ _ 15 surgery _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 lawsuit _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Pharmacia _ PROPN NNP _ 7 nsubj _ _ 6 is _ AUX VBZ _ 7 aux _ _ 7 seeking _ VERB VBG _ 0 root _ _ 8 unspecified _ ADJ JJ _ 9 amod _ _ 9 damages _ NOUN NNS _ 7 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 a _ DET DT _ 13 det _ _ 12 preliminary _ ADJ JJ _ 13 amod _ _ 13 injunction _ NOUN NN _ 9 conj _ _ 14 to _ PART TO _ 15 mark _ _ 15 block _ VERB VB _ 13 acl _ _ 16 MedChem _ PROPN NNP _ 15 dobj _ _ 17 from _ SCONJ IN _ 18 mark _ _ 18 selling _ VERB VBG _ 15 advcl _ _ 19 the _ DET DT _ 21 det _ _ 20 AMVISC _ PROPN NNP _ 21 compound _ _ 21 products _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 MedChem _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 products _ NOUN NNS _ 7 nsubj _ _ 7 contribute _ VERB VBP _ 4 ccomp _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 a _ DET DT _ 10 nummod _ _ 10 third _ ADJ JJ _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 MedChem _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 sales _ NOUN NNS _ 10 nmod _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 10 _ NUM CD _ 20 compound _ _ 17 % _ SYM NN _ 20 dep _ _ 18 to _ ADP TO _ 20 dep _ _ 19 20 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 10 conj _ _ 21 of _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 earnings _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 year _ NOUN NN _ 11 nmod _ _ 4 ended _ VERB VBN _ 3 acl _ _ 5 Aug. _ PROPN NNP _ 4 nmod:tmod _ _ 6 31 _ NUM CD _ 5 nummod _ _ 7 , _ PUNCT , _ 5 punct _ _ 8 1988 _ NUM CD _ 5 nummod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 MedChem _ PROPN NNP _ 11 nsubj _ _ 11 earned _ VERB VBD _ 0 root _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 2.9 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 72 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 12 conj _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 , _ PUNCT , _ 11 punct _ _ 22 on _ ADP IN _ 23 case _ _ 23 sales _ NOUN NNS _ 11 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 17.4 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 MedChem _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 court _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 ruling _ NOUN NN _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 issued _ VERB VBN _ 2 ccomp _ _ 9 as _ ADP IN _ 10 case _ _ 10 part _ NOUN NN _ 8 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 first-phase _ ADJ JJ _ 15 amod _ _ 15 trial _ NOUN NN _ 10 nmod _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 patent-infringement _ NOUN NN _ 20 compound _ _ 20 proceedings _ NOUN NNS _ 15 nmod _ _ 21 and _ CONJ CC _ 8 cc _ _ 22 concerns _ VERB VBZ _ 8 conj _ _ 23 only _ ADV RB _ 24 advmod _ _ 24 one _ NUM CD _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 its _ PRON PRP$ _ 27 nmod:poss _ _ 27 defenses _ NOUN NNS _ 24 nmod _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 case _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 considering _ VERB VBG _ 2 ccomp _ _ 6 `` _ PUNCT `` _ 5 punct _ _ 7 all _ DET DT _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 options _ NOUN NNS _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 light _ NOUN NN _ 5 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 decision _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 including _ VERB VBG _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 possible _ ADJ JJ _ 20 amod _ _ 20 appeal _ NOUN NN _ 5 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 22 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 medical-products _ NOUN NNS _ 3 compound _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 added _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 plans _ VERB VBZ _ 4 ccomp _ _ 8 to _ PART TO _ 10 mark _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 assert _ VERB VB _ 7 xcomp _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 other _ ADJ JJ _ 13 amod _ _ 13 defenses _ NOUN NNS _ 10 dobj _ _ 14 '' _ PUNCT '' _ 13 punct _ _ 15 against _ ADP IN _ 18 case _ _ 16 Pharmacia _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 lawsuit _ NOUN NN _ 13 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 including _ VERB VBG _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 claim _ NOUN NN _ 13 nmod _ _ 23 that _ SCONJ IN _ 27 mark _ _ 24 it _ PRON PRP _ 27 nsubj _ _ 25 has _ AUX VBZ _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 infringed _ VERB VBN _ 22 ccomp _ _ 28 on _ ADP IN _ 31 case _ _ 29 Pharmacia _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 patent _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 MedChem _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 court _ NOUN NN _ 6 nsubj _ _ 6 scheduled _ VERB VBD _ 2 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 conference _ NOUN NN _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 next _ ADJ JJ _ 11 amod _ _ 11 Monday _ PROPN NNP _ 6 nmod _ _ 12 -- _ PUNCT : _ 14 punct _ _ 13 to _ PART TO _ 14 mark _ _ 14 set _ VERB VB _ 6 parataxis _ _ 15 a _ DET DT _ 16 det _ _ 16 date _ NOUN NN _ 14 dobj _ _ 17 for _ ADP IN _ 18 case _ _ 18 proceedings _ NOUN NNS _ 16 nmod _ _ 19 on _ ADP IN _ 22 case _ _ 20 Pharmacia _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 motion _ NOUN NN _ 18 nmod _ _ 23 for _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 preliminary _ ADJ JJ _ 26 amod _ _ 26 injunction _ NOUN NN _ 22 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 Newspaper _ NOUN NN _ 2 compound _ _ 2 publishers _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 reporting _ VERB VBG _ 0 root _ _ 5 mixed _ ADJ JJ _ 7 amod _ _ 6 third-quarter _ ADJ JJ _ 7 amod _ _ 7 results _ NOUN NNS _ 4 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 aided _ VERB VBN _ 7 dep _ _ 10 by _ ADP IN _ 13 case _ _ 11 favorable _ ADJ JJ _ 13 amod _ _ 12 newsprint _ NOUN NN _ 13 compound _ _ 13 prices _ NOUN NNS _ 9 nmod _ _ 14 and _ CONJ CC _ 9 cc _ _ 15 hampered _ VERB VBN _ 9 conj _ _ 16 by _ ADP IN _ 21 case _ _ 17 flat _ ADJ JJ _ 21 amod _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 declining _ ADJ JJ _ 17 conj _ _ 20 advertising _ NOUN NN _ 21 compound _ _ 21 linage _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 especially _ ADV RB _ 26 advmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 Northeast _ PROPN NNP _ 21 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Adding _ VERB VBG _ 17 advcl _ _ 2 to _ ADP TO _ 3 case _ _ 3 unsteadiness _ NOUN NN _ 1 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 industry _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 seasonal _ ADJ JJ _ 12 amod _ _ 9 retail _ ADJ JJ _ 12 amod _ _ 10 ad _ NOUN NN _ 12 compound _ _ 11 spending _ NOUN NN _ 12 compound _ _ 12 patterns _ NOUN NNS _ 17 nsubjpass _ _ 13 in _ ADP IN _ 14 case _ _ 14 newspapers _ NOUN NNS _ 12 nmod _ _ 15 have _ AUX VBP _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 upset _ VERB VBN _ 0 root _ _ 18 by _ ADP IN _ 19 case _ _ 19 shifts _ NOUN NNS _ 17 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 ownership _ NOUN NN _ 19 nmod _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 general _ ADJ JJ _ 24 amod _ _ 24 hardships _ NOUN NNS _ 19 conj _ _ 25 within _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 retail _ ADJ JJ _ 28 amod _ _ 28 industry _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 New _ PROPN NNP _ 3 compound _ _ 3 York _ PROPN NNP _ 16 nmod _ _ 4 , _ PUNCT , _ 16 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 Bonwit _ PROPN NNP _ 7 compound _ _ 7 Teller _ PROPN NNP _ 16 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 B. _ PROPN NNP _ 10 compound _ _ 10 Altman _ PROPN NNP _ 7 conj _ _ 11 & _ CONJ CC _ 7 cc _ _ 12 Co. _ PROPN NNP _ 14 compound _ _ 13 department _ NOUN NN _ 14 compound _ _ 14 stores _ NOUN NNS _ 7 conj _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 filed _ VERB VBN _ 0 root _ _ 17 for _ ADP IN _ 18 case _ _ 18 protection _ NOUN NN _ 16 nmod _ _ 19 from _ ADP IN _ 20 case _ _ 20 creditors _ NOUN NNS _ 18 nmod _ _ 21 under _ ADP IN _ 22 case _ _ 22 Chapter _ PROPN NNP _ 16 nmod _ _ 23 11 _ NUM CD _ 22 nummod _ _ 24 of _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 federal _ ADJ JJ _ 28 amod _ _ 27 Bankruptcy _ PROPN NNP _ 28 compound _ _ 28 Code _ PROPN NNP _ 22 nmod _ _ 29 , _ PUNCT , _ 16 punct _ _ 30 while _ SCONJ IN _ 47 mark _ _ 31 the _ DET DT _ 33 det _ _ 32 R.H. _ PROPN NNP _ 33 compound _ _ 33 Macy _ PROPN NNP _ 47 nsubj _ _ 34 & _ CONJ CC _ 33 cc _ _ 35 Co. _ PROPN NNP _ 37 compound _ _ 36 , _ PUNCT , _ 37 punct _ _ 37 Bloomingdale _ PROPN NNP _ 33 conj _ _ 38 's _ PART POS _ 37 case _ _ 39 and _ CONJ CC _ 33 cc _ _ 40 Saks _ PROPN NNP _ 44 compound _ _ 41 Fifth _ PROPN NNP _ 44 compound _ _ 42 Avenue _ PROPN NNP _ 44 compound _ _ 43 department-store _ NOUN NN _ 44 compound _ _ 44 chains _ NOUN NNS _ 33 conj _ _ 45 are _ VERB VBP _ 47 cop _ _ 46 for _ ADP IN _ 47 case _ _ 47 sale _ NOUN NN _ 16 advcl _ _ 48 . _ PUNCT . _ 16 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 papers _ NOUN NNS _ 8 nsubjpass _ _ 3 throughout _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 country _ NOUN NN _ 2 nmod _ _ 6 are _ AUX VBP _ 8 auxpass _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 faced _ VERB VBN _ 0 root _ _ 9 with _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 slowdown _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 classified-ad _ NOUN NN _ 14 compound _ _ 14 spending _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 18 det _ _ 17 booming _ ADJ JJ _ 18 amod _ _ 18 category _ NOUN NN _ 14 appos _ _ 19 for _ ADP IN _ 20 case _ _ 20 newspapers _ NOUN NNS _ 18 nmod _ _ 21 in _ ADP IN _ 23 case _ _ 22 recent _ ADJ JJ _ 23 amod _ _ 23 years _ NOUN NNS _ 18 nmod _ _ 24 . _ PUNCT . _ 8 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 recently _ ADV RB _ 6 advcl _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 industry _ NOUN NN _ 5 compound _ _ 5 analysts _ NOUN NNS _ 6 nsubj _ _ 6 believed _ VERB VBD _ 0 root _ _ 7 decreases _ NOUN NNS _ 13 nsubj _ _ 8 in _ ADP IN _ 11 case _ _ 9 retail _ ADJ JJ _ 11 amod _ _ 10 ad _ NOUN NN _ 11 compound _ _ 11 spending _ NOUN NN _ 7 nmod _ _ 12 had _ AUX VBD _ 13 aux _ _ 13 bottomed _ VERB VBN _ 6 ccomp _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 would _ AUX MD _ 19 aux _ _ 17 in _ ADP IN _ 18 case _ _ 18 fact _ NOUN NN _ 19 nmod _ _ 19 increase _ VERB VB _ 13 conj _ _ 20 in _ ADP IN _ 27 case _ _ 21 this _ DET DT _ 22 det _ _ 22 year _ NOUN NN _ 27 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 third _ ADJ JJ _ 27 amod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 fourth _ ADJ JJ _ 24 conj _ _ 27 quarters _ NOUN NNS _ 19 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 All _ DET DT _ 2 det _ _ 2 bets _ NOUN NNS _ 13 nsubj _ _ 3 are _ VERB VBP _ 13 cop _ _ 4 off _ ADV RB _ 13 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 analysts _ NOUN NNS _ 7 nsubj _ _ 7 say _ VERB VBP _ 13 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 because _ ADP IN _ 13 case _ _ 10 of _ ADP IN _ 9 mwe _ _ 11 the _ DET DT _ 13 det _ _ 12 shifting _ ADJ JJ _ 13 amod _ _ 13 ownership _ NOUN NN _ 0 root _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 retail _ ADJ JJ _ 17 amod _ _ 17 chains _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 29 punct _ _ 2 Improved _ ADJ JJ _ 4 amod _ _ 3 paper _ NOUN NN _ 4 compound _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 help _ VERB VB _ 29 ccomp _ _ 7 offset _ VERB VB _ 6 ccomp _ _ 8 weakness _ NOUN NN _ 7 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 linage _ NOUN NN _ 8 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 retailers _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 problems _ NOUN NNS _ 18 nsubj _ _ 17 have _ AUX VBP _ 18 aux _ _ 18 affected _ VERB VBN _ 6 conj _ _ 19 the _ DET DT _ 20 det _ _ 20 amount _ NOUN NN _ 18 dobj _ _ 21 of _ ADP IN _ 23 case _ _ 22 ad _ NOUN NN _ 23 compound _ _ 23 linage _ NOUN NN _ 20 nmod _ _ 24 they _ PRON PRP _ 26 nsubj _ _ 25 usually _ ADV RB _ 26 advmod _ _ 26 run _ VERB VBP _ 20 acl:relcl _ _ 27 , _ PUNCT , _ 29 punct _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 said _ VERB VBD _ 0 root _ _ 30 Edward _ PROPN NNP _ 32 compound _ _ 31 J. _ PROPN NNP _ 32 compound _ _ 32 Atorino _ PROPN NNP _ 29 nsubj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 industry _ NOUN NN _ 35 compound _ _ 35 analyst _ NOUN NN _ 32 appos _ _ 36 for _ ADP IN _ 39 case _ _ 37 Salomon _ PROPN NNP _ 39 compound _ _ 38 Brothers _ PROPN NNP _ 39 compound _ _ 39 Inc _ PROPN NNP _ 35 nmod _ _ 40 . _ PUNCT . _ 29 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 Retailers _ NOUN NNS _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 just _ ADV RB _ 6 advmod _ _ 5 in _ ADP IN _ 6 case _ _ 6 disarray _ NOUN NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 8 '' _ PUNCT '' _ 6 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Gannett _ PROPN NNP _ 5 compound _ _ 5 Co. _ PROPN NNP _ 6 nsubj _ _ 6 posted _ VERB VBD _ 0 root _ _ 7 an _ DET DT _ 10 det _ _ 8 11 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 gain _ NOUN NN _ 6 dobj _ _ 11 in _ ADP IN _ 13 case _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 income _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 total _ ADJ JJ _ 18 amod _ _ 17 ad _ NOUN NN _ 18 compound _ _ 18 pages _ NOUN NNS _ 19 nsubj _ _ 19 dropped _ VERB VBD _ 6 advcl _ _ 20 at _ ADP IN _ 22 case _ _ 21 USA _ PROPN NNP _ 22 compound _ _ 22 Today _ PROPN NNP _ 19 nmod _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 but _ CONJ CC _ 19 cc _ _ 25 advertising _ NOUN NN _ 26 compound _ _ 26 revenue _ NOUN NN _ 27 nsubj _ _ 27 rose _ VERB VBD _ 19 conj _ _ 28 because _ ADP IN _ 34 case _ _ 29 of _ ADP IN _ 28 mwe _ _ 30 a _ DET DT _ 34 det _ _ 31 higher _ ADJ JJR _ 34 amod _ _ 32 circulation _ NOUN NN _ 34 compound _ _ 33 rate _ NOUN NN _ 34 compound _ _ 34 base _ NOUN NN _ 27 nmod _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 increased _ ADJ JJ _ 37 amod _ _ 37 rates _ NOUN NNS _ 34 conj _ _ 38 . _ PUNCT . _ 6 punct _ _ 1 Gannett _ PROPN NNP _ 8 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 83 _ NUM CD _ 4 nummod _ _ 4 daily _ ADJ JJ _ 8 dep _ _ 5 and _ CONJ CC _ 8 cc _ _ 6 35 _ NUM CD _ 7 nummod _ _ 7 non-daily _ ADJ JJ _ 8 conj _ _ 8 newspapers _ NOUN NNS _ 9 nsubj _ _ 9 reported _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 13 det _ _ 11 3 _ NUM CD _ 12 compound _ _ 12 % _ SYM NN _ 13 amod _ _ 13 increase _ NOUN NN _ 9 dobj _ _ 14 in _ ADP IN _ 18 case _ _ 15 advertising _ NOUN NN _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 circulation _ NOUN NN _ 15 conj _ _ 18 revenue _ NOUN NN _ 13 nmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 Total _ ADJ JJ _ 3 amod _ _ 2 advertising _ NOUN NN _ 3 compound _ _ 3 linage _ NOUN NN _ 8 nsubj _ _ 4 was _ VERB VBD _ 8 cop _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 modestly _ ADV RB _ 8 advmod _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 lower _ ADJ JJR _ 28 ccomp _ _ 9 as _ SCONJ IN _ 12 mark _ _ 10 classified-ad _ NOUN NN _ 11 compound _ _ 11 volume _ NOUN NN _ 12 nsubj _ _ 12 increased _ VERB VBD _ 8 advcl _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 while _ SCONJ IN _ 16 mark _ _ 15 there _ PRON EX _ 16 expl _ _ 16 was _ VERB VBD _ 8 advcl _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 softer _ ADJ JJR _ 19 amod _ _ 19 demand _ NOUN NN _ 16 nsubj _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 for _ ADP IN _ 26 case _ _ 22 retail _ ADJ JJ _ 26 amod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 national _ ADJ JJ _ 22 conj _ _ 25 ad _ NOUN NN _ 26 compound _ _ 26 linage _ NOUN NN _ 19 nmod _ _ 27 , _ PUNCT , _ 28 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 John _ PROPN NNP _ 30 compound _ _ 30 Curley _ PROPN NNP _ 28 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 Gannett _ PROPN NNP _ 36 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 chief _ ADJ JJ _ 36 amod _ _ 35 executive _ ADJ JJ _ 36 amod _ _ 36 officer _ NOUN NN _ 30 appos _ _ 37 . _ PUNCT . _ 28 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 USA _ PROPN NNP _ 3 compound _ _ 3 Today _ PROPN NNP _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 ad _ NOUN NN _ 6 compound _ _ 6 pages _ NOUN NNS _ 7 nsubj _ _ 7 totaled _ VERB VBD _ 0 root _ _ 8 785 _ NUM CD _ 7 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 quarter _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 down _ ADV RB _ 7 advmod _ _ 14 9.2 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 nmod:npmod _ _ 16 from _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 1988 _ NUM CD _ 19 nummod _ _ 19 period _ NOUN NN _ 13 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 23 nsubjpass _ _ 22 was _ AUX VBD _ 23 auxpass _ _ 23 helped _ VERB VBN _ 19 acl:relcl _ _ 24 by _ ADP IN _ 27 case _ _ 25 increased _ ADJ JJ _ 27 amod _ _ 26 ad _ NOUN NN _ 27 compound _ _ 27 spending _ NOUN NN _ 23 nmod _ _ 28 from _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Summer _ PROPN NNP _ 31 compound _ _ 31 Olympics _ PROPN NNPS _ 27 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 While _ SCONJ IN _ 14 mark _ _ 2 USA _ PROPN NNP _ 3 compound _ _ 3 Today _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 total _ ADJ JJ _ 8 amod _ _ 6 paid _ ADJ JJ _ 8 amod _ _ 7 ad _ NOUN NN _ 8 compound _ _ 8 pages _ NOUN NNS _ 14 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 year _ NOUN NN _ 8 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 date _ NOUN NN _ 11 nmod _ _ 14 totaled _ VERB VBD _ 31 advcl _ _ 15 2,735 _ NUM CD _ 14 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 decrease _ NOUN NN _ 15 appos _ _ 19 of _ ADP IN _ 21 case _ _ 20 4 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 nmod _ _ 22 from _ ADP IN _ 24 case _ _ 23 last _ ADJ JJ _ 24 amod _ _ 24 year _ NOUN NN _ 18 nmod _ _ 25 , _ PUNCT , _ 31 punct _ _ 26 the _ DET DT _ 27 det _ _ 27 paper _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 ad _ NOUN NN _ 30 compound _ _ 30 revenue _ NOUN NN _ 31 nsubj _ _ 31 increased _ VERB VBD _ 0 root _ _ 32 8 _ NUM CD _ 33 nummod _ _ 33 % _ SYM NN _ 31 dobj _ _ 34 in _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 quarter _ NOUN NN _ 31 nmod _ _ 37 and _ CONJ CC _ 31 cc _ _ 38 13 _ NUM CD _ 39 nummod _ _ 39 % _ SYM NN _ 31 conj _ _ 40 in _ ADP IN _ 43 case _ _ 41 the _ DET DT _ 43 det _ _ 42 nine _ NUM CD _ 43 nummod _ _ 43 months _ NOUN NNS _ 39 nmod _ _ 44 . _ PUNCT . _ 31 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Gannett _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 net _ NOUN NN _ 9 nsubj _ _ 9 rose _ VERB VBD _ 0 root _ _ 10 9.5 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 to _ ADP TO _ 13 case _ _ 13 $ _ SYM $ _ 9 nmod _ _ 14 270 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 or _ CONJ CC _ 13 cc _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 1.68 _ NUM CD _ 13 conj _ _ 20 a _ DET DT _ 21 det _ _ 21 share _ NOUN NN _ 19 nmod:npmod _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 from _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 9 nmod _ _ 25 247 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 1.52 _ NUM CD _ 24 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 . _ PUNCT . _ 9 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 gained _ VERB VBD _ 0 root _ _ 3 6 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 2.55 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 2.4 _ NUM CD _ 12 compound _ _ 12 billion _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 Dow _ PROPN NNP _ 3 compound _ _ 3 Jones _ PROPN NNP _ 10 nmod _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Co. _ PROPN NNP _ 3 conj _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 third-quarter _ ADJ JJ _ 9 amod _ _ 8 net _ NOUN NN _ 9 compound _ _ 9 income _ NOUN NN _ 10 nsubj _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 9.9 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 from _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 year-earlier _ ADJ JJ _ 16 amod _ _ 16 period _ NOUN NN _ 10 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 Net _ NOUN NN _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 to _ ADP TO _ 4 case _ _ 4 $ _ SYM $ _ 2 nmod _ _ 5 28.8 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 or _ CONJ CC _ 4 cc _ _ 9 29 _ NUM CD _ 10 nummod _ _ 10 cents _ NOUN NNS _ 4 conj _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 from _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 2 nmod _ _ 16 32 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 33 _ NUM CD _ 21 nummod _ _ 21 cents _ NOUN NNS _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 year-earlier _ ADJ JJ _ 3 amod _ _ 3 period _ NOUN NN _ 4 nsubj _ _ 4 included _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 one-time _ ADJ JJ _ 7 amod _ _ 7 gain _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 3.5 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 four _ NUM CD _ 15 nummod _ _ 15 cents _ NOUN NNS _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Revenue _ NOUN NN _ 2 nsubj _ _ 2 gained _ VERB VB _ 0 root _ _ 3 5.3 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 $ _ SYM $ _ 2 nmod _ _ 7 404.1 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 from _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 2 nmod _ _ 11 383.8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 drop _ NOUN NN _ 5 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 profit _ NOUN NN _ 2 nmod _ _ 5 reflected _ VERB VBD _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 in _ ADP IN _ 8 case _ _ 8 part _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 continued _ ADJ JJ _ 11 amod _ _ 11 softness _ NOUN NN _ 5 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 financial _ ADJ JJ _ 14 amod _ _ 14 advertising _ NOUN NN _ 11 nmod _ _ 15 at _ ADP IN _ 19 case _ _ 16 The _ DET DT _ 19 det _ _ 17 Wall _ PROPN NNP _ 19 compound _ _ 18 Street _ PROPN NNP _ 19 compound _ _ 19 Journal _ PROPN NNP _ 11 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 Barron _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 magazine _ NOUN NN _ 19 conj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Ad _ NOUN NN _ 2 compound _ _ 2 linage _ NOUN NN _ 6 nsubj _ _ 3 at _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 Journal _ PROPN NNP _ 2 nmod _ _ 6 fell _ VERB VBD _ 0 root _ _ 7 6.1 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 in _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 third _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 Affiliated _ PROPN NNP _ 3 compound _ _ 2 Publications _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 reversed _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 10 det _ _ 6 year-earlier _ ADJ JJ _ 10 amod _ _ 7 third _ ADJ JJ _ 10 amod _ _ 8 quarter _ NOUN NN _ 10 compound _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 loss _ NOUN NN _ 4 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 publisher _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Boston _ PROPN NNP _ 6 compound _ _ 6 Globe _ PROPN NNP _ 2 nmod _ _ 7 reported _ VERB VBD _ 0 root _ _ 8 net _ NOUN NN _ 7 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 8 nmod _ _ 11 8.5 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 12 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 loss _ NOUN NN _ 10 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 26.5 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 , _ PUNCT , _ 25 punct _ _ 29 or _ CONJ CC _ 25 cc _ _ 30 38 _ NUM CD _ 31 nummod _ _ 31 cents _ NOUN NNS _ 25 conj _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 , _ PUNCT , _ 7 punct _ _ 35 for _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 third _ ADJ JJ _ 38 amod _ _ 38 quarter _ NOUN NN _ 7 nmod _ _ 39 in _ ADP IN _ 40 case _ _ 40 1988 _ NUM CD _ 38 nmod _ _ 41 . _ PUNCT . _ 7 punct _ _ 1 William _ PROPN NNP _ 3 compound _ _ 2 O. _ PROPN NNP _ 3 compound _ _ 3 Taylor _ PROPN NNP _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 parent _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 chairman _ NOUN NN _ 3 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 chief _ ADJ JJ _ 12 amod _ _ 11 executive _ ADJ JJ _ 12 amod _ _ 12 officer _ NOUN NN _ 8 conj _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 earnings _ NOUN NNS _ 16 nsubj _ _ 16 continued _ VERB VBD _ 14 ccomp _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 hurt _ VERB VBN _ 16 xcomp _ _ 20 by _ ADP IN _ 21 case _ _ 21 softness _ NOUN NN _ 19 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 ad _ NOUN NN _ 24 compound _ _ 24 volume _ NOUN NN _ 21 nmod _ _ 25 at _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 Boston _ PROPN NNP _ 28 compound _ _ 28 newspaper _ NOUN NN _ 21 nmod _ _ 29 . _ PUNCT . _ 14 punct _ _ 1 Third-quarter _ ADJ JJ _ 3 amod _ _ 2 profit _ NOUN NN _ 3 compound _ _ 3 estimates _ NOUN NNS _ 10 nsubjpass _ _ 4 for _ ADP IN _ 6 case _ _ 5 several _ ADJ JJ _ 6 amod _ _ 6 companies _ NOUN NNS _ 3 nmod _ _ 7 are _ AUX VBP _ 10 aux _ _ 8 being _ AUX VBG _ 10 auxpass _ _ 9 strongly _ ADV RB _ 10 advmod _ _ 10 affected _ VERB VBN _ 0 root _ _ 11 by _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 price _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 newsprint _ NOUN NN _ 13 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 24 nsubj _ _ 18 in _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 last _ ADJ JJ _ 22 amod _ _ 21 two _ NUM CD _ 22 nummod _ _ 22 years _ NOUN NNS _ 24 nmod _ _ 23 has _ AUX VBZ _ 24 aux _ _ 24 had _ VERB VBD _ 15 acl:relcl _ _ 25 several _ ADJ JJ _ 27 amod _ _ 26 price _ NOUN NN _ 27 compound _ _ 27 increases _ NOUN NNS _ 24 dobj _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 a _ DET DT _ 4 det _ _ 3 supply _ NOUN NN _ 4 compound _ _ 4 crunch _ NOUN NN _ 5 nsubj _ _ 5 caused _ VERB VBD _ 22 advcl _ _ 6 prices _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 rise _ VERB VB _ 5 xcomp _ _ 9 14 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 since _ ADP IN _ 12 case _ _ 12 1986 _ NUM CD _ 8 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 650 _ NUM CD _ 8 nmod _ _ 16 a _ DET DT _ 18 det _ _ 17 metric _ ADJ JJ _ 18 amod _ _ 18 ton _ NOUN NN _ 15 nmod:npmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 analysts _ NOUN NNS _ 22 nsubj _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 encouraged _ ADJ JJ _ 0 root _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 because _ SCONJ IN _ 28 mark _ _ 25 they _ PRON PRP _ 28 nsubj _ _ 26 do _ AUX VBP _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 expect _ VERB VB _ 22 advcl _ _ 29 a _ DET DT _ 31 det _ _ 30 price _ NOUN NN _ 31 compound _ _ 31 increase _ NOUN NN _ 28 dobj _ _ 32 for _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 rest _ NOUN NN _ 28 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 this _ DET DT _ 37 det _ _ 37 year _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 22 punct _ _ 1 Companies _ NOUN NNS _ 9 nsubj _ _ 2 with _ ADP IN _ 4 case _ _ 3 daily _ ADJ JJ _ 4 amod _ _ 4 newspapers _ NOUN NNS _ 1 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 Northeast _ PROPN NNP _ 4 nmod _ _ 8 will _ AUX MD _ 9 aux _ _ 9 need _ VERB VB _ 0 root _ _ 10 the _ DET DT _ 13 det _ _ 11 stable _ ADJ JJ _ 13 amod _ _ 12 newsprint _ NOUN NN _ 13 compound _ _ 13 prices _ NOUN NNS _ 9 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 ease _ VERB VB _ 9 advcl _ _ 16 damage _ NOUN NN _ 15 dobj _ _ 17 from _ ADP IN _ 20 case _ _ 18 weak _ ADJ JJ _ 20 amod _ _ 19 ad _ NOUN NN _ 20 compound _ _ 20 linage _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Atorino _ PROPN NNP _ 6 nsubj _ _ 3 at _ ADP IN _ 5 case _ _ 4 Salomon _ PROPN NNP _ 5 compound _ _ 5 Brothers _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 he _ PRON PRP _ 8 nsubj _ _ 8 estimates _ VERB VBZ _ 6 ccomp _ _ 9 that _ SCONJ IN _ 20 mark _ _ 10 Times _ PROPN NNP _ 12 compound _ _ 11 Mirror _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 earnings _ NOUN NNS _ 20 nsubj _ _ 15 were _ VERB VBD _ 20 cop _ _ 16 down _ ADV RB _ 20 advmod _ _ 17 for _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 third _ ADJ JJ _ 20 amod _ _ 20 quarter _ NOUN NN _ 8 ccomp _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 because _ ADP IN _ 26 case _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 soft _ ADJ JJ _ 26 amod _ _ 25 advertising _ NOUN NN _ 26 compound _ _ 26 levels _ NOUN NNS _ 20 nmod _ _ 27 at _ ADP IN _ 31 case _ _ 28 its _ PRON PRP$ _ 31 nmod:poss _ _ 29 Long _ PROPN NNP _ 31 compound _ _ 30 Island _ PROPN NNP _ 31 compound _ _ 31 Newsday _ PROPN NNP _ 26 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 Hartford _ PROPN NNP _ 35 compound _ _ 34 Courant _ PROPN NNP _ 35 compound _ _ 35 newspapers _ NOUN NNS _ 31 conj _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Trouble _ NOUN NN _ 8 nsubjpass _ _ 2 on _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 East _ PROPN NNP _ 5 compound _ _ 5 Coast _ PROPN NNP _ 1 nmod _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 likely _ ADV RB _ 8 advmod _ _ 8 offset _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 12 case _ _ 10 improved _ ADJ JJ _ 12 amod _ _ 11 ad _ NOUN NN _ 12 compound _ _ 12 linage _ NOUN NN _ 8 nmod _ _ 13 at _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 Los _ PROPN NNP _ 17 compound _ _ 16 Angeles _ PROPN NNP _ 17 compound _ _ 17 Times _ PROPN NNP _ 12 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 which _ PRON WDT _ 23 nsubj _ _ 20 this _ DET DT _ 21 det _ _ 21 week _ NOUN NN _ 23 dep _ _ 22 also _ ADV RB _ 23 advmod _ _ 23 unveiled _ VERB VBD _ 17 acl:relcl _ _ 24 a _ DET DT _ 25 det _ _ 25 redesign _ NOUN NN _ 23 dobj _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 York _ PROPN NNP _ 4 compound _ _ 3 Times _ PROPN NNP _ 4 compound _ _ 4 Co. _ PROPN NNP _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 lower _ ADJ JJR _ 10 amod _ _ 10 earnings _ NOUN NNS _ 8 dobj _ _ 11 for _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 8 nmod _ _ 15 because _ ADP IN _ 20 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 continued _ ADJ JJ _ 20 amod _ _ 18 weak _ ADJ JJ _ 20 amod _ _ 19 advertising _ NOUN NN _ 20 compound _ _ 20 levels _ NOUN NNS _ 8 nmod _ _ 21 at _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 flagship _ NOUN NN _ 20 nmod _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 York _ PROPN NNP _ 26 compound _ _ 26 Times _ PROPN NNP _ 23 dep _ _ 27 and _ CONJ CC _ 20 cc _ _ 28 deep _ ADV RB _ 29 advmod _ _ 29 discounting _ NOUN NN _ 20 conj _ _ 30 of _ ADP IN _ 31 case _ _ 31 newsprint _ NOUN NN _ 29 nmod _ _ 32 at _ ADP IN _ 34 case _ _ 33 its _ PRON PRP$ _ 34 nmod:poss _ _ 34 affiliate _ NOUN NN _ 29 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 Forest _ PROPN NNP _ 38 compound _ _ 37 Products _ PROPN NNP _ 38 compound _ _ 38 Group _ PROPN NNP _ 34 appos _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 29 punct _ _ 2 Times _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 7 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 regional _ ADJ JJ _ 7 amod _ _ 6 daily _ ADJ JJ _ 7 amod _ _ 7 newspapers _ NOUN NNS _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 holding _ VERB VBG _ 29 ccomp _ _ 10 up _ ADP RP _ 9 compound:prt _ _ 11 well _ ADV RB _ 9 advmod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 but _ CONJ CC _ 9 cc _ _ 14 there _ PRON EX _ 15 expl _ _ 15 is _ VERB VBZ _ 9 conj _ _ 16 little _ ADJ JJ _ 17 amod _ _ 17 sign _ NOUN NN _ 15 nsubj _ _ 18 that _ SCONJ IN _ 21 mark _ _ 19 things _ NOUN NNS _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 improve _ VERB VB _ 17 ccomp _ _ 22 in _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 New _ PROPN NNP _ 26 compound _ _ 25 York _ PROPN NNP _ 26 compound _ _ 26 market _ NOUN NN _ 15 nmod _ _ 27 , _ PUNCT , _ 29 punct _ _ 28 '' _ PUNCT '' _ 29 punct _ _ 29 said _ VERB VBD _ 0 root _ _ 30 Alan _ PROPN NNP _ 31 compound _ _ 31 Kassan _ PROPN NNP _ 29 nsubj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 an _ DET DT _ 34 det _ _ 34 analyst _ NOUN NN _ 31 appos _ _ 35 with _ ADP IN _ 38 case _ _ 36 Shearson _ PROPN NNP _ 38 compound _ _ 37 Lehman _ PROPN NNP _ 38 compound _ _ 38 Hutton _ PROPN NNP _ 34 nmod _ _ 39 . _ PUNCT . _ 29 punct _ _ 1 Washington _ PROPN NNP _ 3 compound _ _ 2 Post _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 improved _ ADJ JJ _ 9 amod _ _ 9 earnings _ NOUN NNS _ 7 dobj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 largely _ ADV RB _ 16 advmod _ _ 12 because _ ADP IN _ 16 case _ _ 13 of _ ADP IN _ 12 mwe _ _ 14 increased _ ADJ JJ _ 16 amod _ _ 15 cable _ NOUN NN _ 16 compound _ _ 16 revenue _ NOUN NN _ 5 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 publishing _ NOUN NN _ 19 compound _ _ 19 revenue _ NOUN NN _ 16 conj _ _ 20 helped _ VERB VBN _ 16 acl _ _ 21 by _ ADP IN _ 25 case _ _ 22 an _ DET DT _ 25 det _ _ 23 improved _ ADJ JJ _ 25 amod _ _ 24 retail _ ADJ JJ _ 25 amod _ _ 25 market _ NOUN NN _ 20 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 Washington _ PROPN NNP _ 29 compound _ _ 29 area _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 According _ VERB VBG _ 3 case _ _ 2 to _ ADP TO _ 1 mwe _ _ 3 analysts _ NOUN NNS _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 profits _ NOUN NNS _ 8 nsubjpass _ _ 6 were _ AUX VBD _ 8 auxpass _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 helped _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 12 case _ _ 10 successful _ ADJ JJ _ 12 amod _ _ 11 cost-cutting _ ADJ JJ _ 12 amod _ _ 12 measures _ NOUN NNS _ 8 nmod _ _ 13 at _ ADP IN _ 14 case _ _ 14 Newsweek _ PROPN NNP _ 12 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 news-weekly _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 faced _ VERB VBN _ 0 root _ _ 5 heightened _ ADJ JJ _ 6 amod _ _ 6 competition _ NOUN NN _ 4 dobj _ _ 7 from _ ADP IN _ 10 case _ _ 8 rival _ ADJ JJ _ 10 amod _ _ 9 Time _ PROPN NNP _ 10 compound _ _ 10 magazine _ NOUN NN _ 6 nmod _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 a _ DET DT _ 17 det _ _ 13 relatively _ ADV RB _ 14 advmod _ _ 14 flat _ ADJ JJ _ 17 amod _ _ 15 magazine _ NOUN NN _ 17 compound _ _ 16 advertising _ NOUN NN _ 17 compound _ _ 17 market _ NOUN NN _ 6 conj _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Knight-Ridder _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 faced _ VERB VBN _ 0 root _ _ 5 with _ ADP IN _ 7 case _ _ 6 continued _ ADJ JJ _ 7 amod _ _ 7 uncertainty _ NOUN NN _ 4 nmod _ _ 8 over _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 pending _ VERB VBG _ 13 amod _ _ 11 joint _ ADJ JJ _ 13 amod _ _ 12 operating _ NOUN NN _ 13 compound _ _ 13 agreement _ NOUN NN _ 7 nmod _ _ 14 between _ ADP IN _ 18 case _ _ 15 its _ PRON PRP$ _ 18 nmod:poss _ _ 16 Detroit _ PROPN NNP _ 18 compound _ _ 17 Free _ PROPN NNP _ 18 compound _ _ 18 Press _ PROPN NNP _ 13 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 Gannett _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 Detroit _ PROPN NNP _ 23 compound _ _ 23 News _ PROPN NNP _ 18 conj _ _ 24 , _ PUNCT , _ 4 punct _ _ 25 and _ CONJ CC _ 4 cc _ _ 26 has _ AUX VBZ _ 27 aux _ _ 27 told _ VERB VBN _ 4 conj _ _ 28 analysts _ NOUN NNS _ 27 dobj _ _ 29 that _ SCONJ IN _ 36 mark _ _ 30 earnings _ NOUN NNS _ 36 nsubj _ _ 31 were _ VERB VBD _ 36 cop _ _ 32 down _ ADV RB _ 36 advmod _ _ 33 in _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 third _ ADJ JJ _ 36 amod _ _ 36 quarter _ NOUN NN _ 27 ccomp _ _ 37 . _ PUNCT . _ 4 punct _ _ 1 However _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 point _ VERB VBP _ 0 root _ _ 5 to _ ADP TO _ 8 case _ _ 6 positive _ ADJ JJ _ 8 amod _ _ 7 advertising _ NOUN NN _ 8 compound _ _ 8 spending _ NOUN NN _ 4 nmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 several _ ADJ JJ _ 8 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 major _ ADJ JJ _ 15 amod _ _ 14 daily _ ADJ JJ _ 15 amod _ _ 15 newspapers _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 such _ ADJ JJ _ 21 case _ _ 18 as _ ADP IN _ 17 mwe _ _ 19 the _ DET DT _ 21 det _ _ 20 Miami _ PROPN NNP _ 21 compound _ _ 21 Herald _ PROPN NNP _ 10 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 San _ PROPN NNP _ 26 compound _ _ 24 Jose _ PROPN NNP _ 26 compound _ _ 25 Mercury _ PROPN NNP _ 26 compound _ _ 26 News _ PROPN NNP _ 21 conj _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 Miami _ PROPN NNP _ 4 compound _ _ 4 market _ NOUN NN _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 coming _ VERB VBG _ 31 ccomp _ _ 7 back _ ADV RB _ 6 advmod _ _ 8 strong _ ADJ JJ _ 6 advmod _ _ 9 after _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 tough _ ADJ JJ _ 12 amod _ _ 12 couple _ NOUN NN _ 6 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 years _ NOUN NNS _ 12 nmod _ _ 15 '' _ PUNCT '' _ 12 punct _ _ 16 when _ ADV WRB _ 20 advmod _ _ 17 Knight-Ridder _ PROPN NNP _ 20 nsubj _ _ 18 `` _ PUNCT `` _ 20 punct _ _ 19 was _ AUX VBD _ 20 aux _ _ 20 starting _ VERB VBG _ 12 acl:relcl _ _ 21 up _ ADP RP _ 20 compound:prt _ _ 22 a _ DET DT _ 24 det _ _ 23 Hispanic _ ADJ JJ _ 24 amod _ _ 24 edition _ NOUN NN _ 20 dobj _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 circulation _ NOUN NN _ 28 nsubj _ _ 27 was _ AUX VBD _ 28 aux _ _ 28 falling _ VERB VBG _ 20 conj _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 '' _ PUNCT '' _ 31 punct _ _ 31 said _ VERB VBD _ 0 root _ _ 32 Bruce _ PROPN NNP _ 33 compound _ _ 33 Thorp _ PROPN NNP _ 31 nsubj _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 an _ DET DT _ 36 det _ _ 36 analyst _ NOUN NN _ 33 appos _ _ 37 for _ ADP IN _ 40 case _ _ 38 Provident _ PROPN NNP _ 40 compound _ _ 39 National _ PROPN NNP _ 40 compound _ _ 40 Bank _ PROPN NNP _ 36 nmod _ _ 41 . _ PUNCT . _ 31 punct _ _ 1 General _ PROPN NNP _ 3 compound _ _ 2 Motors _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 21 nsubj _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 series _ NOUN NN _ 21 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 moves _ NOUN NNS _ 7 nmod _ _ 10 that _ PRON WDT _ 11 nsubj _ _ 11 angered _ VERB VBD _ 9 acl:relcl _ _ 12 union _ NOUN NN _ 13 compound _ _ 13 officials _ NOUN NNS _ 11 dobj _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 U.S. _ PROPN NNP _ 13 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 Canada _ PROPN NNP _ 16 conj _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 has _ AUX VBZ _ 21 aux _ _ 21 signaled _ VERB VBN _ 0 root _ _ 22 that _ SCONJ IN _ 33 mark _ _ 23 as _ ADV RB _ 26 advmod _ _ 24 many _ ADJ JJ _ 26 advmod _ _ 25 as _ ADP IN _ 26 advmod _ _ 26 five _ NUM CD _ 30 nummod _ _ 27 North _ ADJ JJ _ 28 amod _ _ 28 American _ ADJ JJ _ 30 amod _ _ 29 assembly _ NOUN NN _ 30 compound _ _ 30 plants _ NOUN NNS _ 33 nsubj _ _ 31 may _ AUX MD _ 33 aux _ _ 32 not _ PART RB _ 33 neg _ _ 33 survive _ VERB VB _ 21 ccomp _ _ 34 the _ DET DT _ 35 det _ _ 35 mid-1990s _ NOUN NNS _ 33 dobj _ _ 36 as _ SCONJ IN _ 39 mark _ _ 37 the _ DET DT _ 38 det _ _ 38 corporation _ NOUN NN _ 39 nsubj _ _ 39 struggles _ VERB VBZ _ 33 advcl _ _ 40 to _ PART TO _ 41 mark _ _ 41 cut _ VERB VB _ 39 xcomp _ _ 42 its _ PRON PRP$ _ 45 nmod:poss _ _ 43 excess _ ADJ JJ _ 45 amod _ _ 44 vehicle-making _ ADJ JJ _ 45 amod _ _ 45 capacity _ NOUN NN _ 41 dobj _ _ 46 . _ PUNCT . _ 21 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 announcements _ NOUN NNS _ 11 nmod _ _ 3 to _ ADP TO _ 4 case _ _ 4 workers _ NOUN NNS _ 2 nmod _ _ 5 late _ ADV RB _ 7 advmod _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 2 nmod:tmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 GM _ PROPN NNP _ 11 nsubj _ _ 10 effectively _ ADV RB _ 11 advmod _ _ 11 signed _ VERB VBD _ 0 root _ _ 12 death _ NOUN NN _ 13 compound _ _ 13 notices _ NOUN NNS _ 11 dobj _ _ 14 for _ ADP IN _ 19 case _ _ 15 two _ NUM CD _ 19 nummod _ _ 16 full-sized _ ADJ JJ _ 19 amod _ _ 17 van _ NOUN NN _ 19 compound _ _ 18 assembly _ NOUN NN _ 19 compound _ _ 19 plants _ NOUN NNS _ 13 nmod _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 and _ CONJ CC _ 11 cc _ _ 22 cast _ VERB VBD _ 11 conj _ _ 23 serious _ ADJ JJ _ 24 amod _ _ 24 doubt _ NOUN NN _ 22 dobj _ _ 25 on _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 futures _ NOUN NNS _ 22 nmod _ _ 28 of _ ADP IN _ 32 case _ _ 29 three _ NUM CD _ 32 nummod _ _ 30 U.S. _ PROPN NNP _ 32 compound _ _ 31 car _ NOUN NN _ 32 compound _ _ 32 factories _ NOUN NNS _ 27 nmod _ _ 33 . _ PUNCT . _ 11 punct _ _ 1 GM _ PROPN NNP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 under _ ADP IN _ 5 case _ _ 4 intense _ ADJ JJ _ 5 amod _ _ 5 pressure _ NOUN NN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 close _ VERB VB _ 5 acl _ _ 8 factories _ NOUN NNS _ 7 dobj _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 became _ VERB VBD _ 8 acl:relcl _ _ 11 unprofitable _ ADJ JJ _ 10 xcomp _ _ 12 as _ SCONJ IN _ 21 mark _ _ 13 the _ DET DT _ 16 det _ _ 14 giant _ ADJ JJ _ 16 amod _ _ 15 auto _ NOUN NN _ 16 compound _ _ 16 maker _ NOUN NN _ 20 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 U.S. _ PROPN NNP _ 20 compound _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 share _ NOUN NN _ 21 nsubj _ _ 21 skidded _ VERB VBD _ 10 advcl _ _ 22 during _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 past _ ADJ JJ _ 25 amod _ _ 25 decade _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 currently _ ADV RB _ 5 advmod _ _ 5 using _ VERB VBG _ 17 advcl _ _ 6 about _ ADV RB _ 7 advmod _ _ 7 80 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 5 dobj _ _ 9 of _ ADP IN _ 14 case _ _ 10 its _ PRON PRP$ _ 14 nmod:poss _ _ 11 North _ ADJ JJ _ 12 amod _ _ 12 American _ ADJ JJ _ 14 amod _ _ 13 vehicle _ NOUN NN _ 14 compound _ _ 14 capacity _ NOUN NN _ 8 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 has _ AUX VBZ _ 17 aux _ _ 17 vowed _ VERB VBN _ 0 root _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 will _ AUX MD _ 20 aux _ _ 20 run _ VERB VB _ 17 ccomp _ _ 21 at _ ADP IN _ 23 case _ _ 22 100 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 20 nmod _ _ 24 of _ ADP IN _ 25 case _ _ 25 capacity _ NOUN NN _ 23 nmod _ _ 26 by _ ADP IN _ 27 case _ _ 27 1992 _ NUM CD _ 20 nmod _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 Just _ ADV RB _ 2 advmod _ _ 2 a _ DET DT _ 3 nummod _ _ 3 month _ NOUN NN _ 4 nmod:npmod _ _ 4 ago _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 GM _ PROPN NNP _ 7 nsubj _ _ 7 announced _ VERB VBD _ 0 root _ _ 8 it _ PRON PRP _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 make _ VERB VB _ 7 ccomp _ _ 11 an _ DET DT _ 14 det _ _ 12 aging _ VERB VBG _ 14 amod _ _ 13 assembly _ NOUN NN _ 14 compound _ _ 14 plant _ NOUN NN _ 24 nsubj _ _ 15 in _ ADP IN _ 16 case _ _ 16 Lakewood _ PROPN NNP _ 14 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Ga. _ PROPN NNP _ 16 appos _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 the _ DET DT _ 24 det _ _ 21 eighth _ ADJ JJ _ 24 amod _ _ 22 U.S. _ PROPN NNP _ 24 compound _ _ 23 assembly _ NOUN NN _ 24 compound _ _ 24 facility _ NOUN NN _ 10 xcomp _ _ 25 to _ PART TO _ 26 mark _ _ 26 close _ VERB VB _ 24 acl _ _ 27 since _ ADP IN _ 28 case _ _ 28 1987 _ NUM CD _ 24 nmod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Now _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 GM _ PROPN NNP _ 4 nsubj _ _ 4 appears _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 be _ AUX VB _ 7 aux _ _ 7 stepping _ VERB VBG _ 4 xcomp _ _ 8 up _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 10 det _ _ 10 pace _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 factory _ NOUN NN _ 14 compound _ _ 14 consolidation _ NOUN NN _ 10 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 7 advcl _ _ 17 in _ ADP IN _ 18 case _ _ 18 shape _ NOUN NN _ 16 nmod _ _ 19 for _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 1990s _ NOUN NNS _ 18 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 reason _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 mounting _ VERB VBG _ 5 amod _ _ 5 competition _ NOUN NN _ 0 root _ _ 6 from _ ADP IN _ 10 case _ _ 7 new _ ADJ JJ _ 10 amod _ _ 8 Japanese _ ADJ JJ _ 10 amod _ _ 9 car _ NOUN NN _ 10 compound _ _ 10 plants _ NOUN NNS _ 5 nmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.S. _ PROPN NNP _ 10 nmod _ _ 14 that _ PRON WDT _ 16 nsubj _ _ 15 are _ AUX VBP _ 16 aux _ _ 16 pouring _ VERB VBG _ 10 acl:relcl _ _ 17 out _ ADP RP _ 16 advmod _ _ 18 more _ ADJ JJR _ 21 advmod _ _ 19 than _ ADP IN _ 18 mwe _ _ 20 one _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 22 nummod _ _ 22 vehicles _ NOUN NNS _ 16 dobj _ _ 23 a _ DET DT _ 24 det _ _ 24 year _ NOUN NN _ 22 nmod:npmod _ _ 25 at _ ADP IN _ 26 case _ _ 26 costs _ NOUN NNS _ 16 nmod _ _ 27 lower _ ADJ JJR _ 26 amod _ _ 28 than _ SCONJ IN _ 31 mark _ _ 29 GM _ PROPN NNP _ 31 nsubj _ _ 30 can _ AUX MD _ 31 aux _ _ 31 match _ VERB VB _ 27 ccomp _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Another _ DET DT _ 2 nsubj _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 that _ SCONJ IN _ 10 mark _ _ 4 United _ PROPN NNP _ 8 compound _ _ 5 Auto _ PROPN NNP _ 8 compound _ _ 6 Workers _ PROPN NNPS _ 8 compound _ _ 7 union _ NOUN NN _ 8 compound _ _ 8 officials _ NOUN NNS _ 10 nsubj _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 signaled _ VERB VBN _ 2 ccomp _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 want _ VERB VBP _ 10 ccomp _ _ 13 tighter _ ADJ JJR _ 15 amod _ _ 14 no-layoff _ ADJ JJ _ 15 amod _ _ 15 provisions _ NOUN NNS _ 12 xcomp _ _ 16 in _ ADP IN _ 22 case _ _ 17 the _ DET DT _ 22 det _ _ 18 new _ ADJ JJ _ 22 amod _ _ 19 Big _ PROPN NNP _ 22 compound _ _ 20 Three _ NUM CD _ 22 nummod _ _ 21 national _ ADJ JJ _ 22 amod _ _ 22 contract _ NOUN NN _ 15 dep _ _ 23 that _ PRON WDT _ 26 nsubjpass _ _ 24 will _ AUX MD _ 26 aux _ _ 25 be _ AUX VB _ 26 auxpass _ _ 26 negotiated _ VERB VBN _ 22 acl:relcl _ _ 27 next _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 26 nmod:tmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 GM _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 3 nsubj _ _ 3 want _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 get _ VERB VB _ 3 xcomp _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 strategy _ NOUN NN _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 reduce _ VERB VB _ 7 acl _ _ 10 capacity _ NOUN NN _ 9 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 work _ NOUN NN _ 14 compound _ _ 14 force _ NOUN NN _ 10 conj _ _ 15 in _ ADP IN _ 16 case _ _ 16 place _ NOUN NN _ 5 nmod _ _ 17 before _ SCONJ IN _ 20 mark _ _ 18 those _ DET DT _ 19 det _ _ 19 talks _ NOUN NNS _ 20 nsubj _ _ 20 begin _ VERB VBP _ 5 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 problem _ NOUN NN _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 is _ VERB VBZ _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 GM _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 moves _ NOUN NNS _ 12 nsubj _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 coming _ VERB VBG _ 6 ccomp _ _ 13 at _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 12 nmod _ _ 16 when _ ADV WRB _ 20 advmod _ _ 17 UAW _ PROPN NNP _ 18 compound _ _ 18 leaders _ NOUN NNS _ 20 nsubj _ _ 19 are _ AUX VBP _ 20 aux _ _ 20 trying _ VERB VBG _ 15 acl:relcl _ _ 21 to _ PART TO _ 22 mark _ _ 22 silence _ VERB VB _ 20 xcomp _ _ 23 dissidents _ NOUN NNS _ 22 dobj _ _ 24 who _ PRON WP _ 25 nsubj _ _ 25 charge _ VERB VBP _ 23 acl:relcl _ _ 26 the _ DET DT _ 27 det _ _ 27 union _ NOUN NN _ 30 nsubj _ _ 28 is _ VERB VBZ _ 30 cop _ _ 29 too _ ADV RB _ 30 advmod _ _ 30 passive _ ADJ JJ _ 25 ccomp _ _ 31 in _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 face _ NOUN NN _ 30 nmod _ _ 34 of _ ADP IN _ 36 case _ _ 35 GM _ PROPN NNP _ 36 compound _ _ 36 layoffs _ NOUN NNS _ 33 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 Against _ ADP IN _ 3 case _ _ 2 that _ DET DT _ 3 det _ _ 3 backdrop _ NOUN NN _ 23 nmod _ _ 4 , _ PUNCT , _ 23 punct _ _ 5 UAW _ PROPN NNP _ 10 compound _ _ 6 Vice _ PROPN NNP _ 10 compound _ _ 7 President _ PROPN NNP _ 10 compound _ _ 8 Stephen _ PROPN NNP _ 10 compound _ _ 9 P. _ PROPN NNP _ 10 compound _ _ 10 Yokich _ PROPN NNP _ 23 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 who _ PRON WP _ 14 nsubj _ _ 13 recently _ ADV RB _ 14 advmod _ _ 14 became _ VERB VBD _ 10 acl:relcl _ _ 15 head _ NOUN NN _ 14 xcomp _ _ 16 of _ ADP IN _ 21 case _ _ 17 the _ DET DT _ 18 det _ _ 18 union _ NOUN NN _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 GM _ PROPN NNP _ 21 compound _ _ 21 department _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 issued _ VERB VBD _ 0 root _ _ 24 a _ DET DT _ 25 det _ _ 25 statement _ NOUN NN _ 23 dobj _ _ 26 Friday _ PROPN NNP _ 23 nmod:tmod _ _ 27 blasting _ VERB VBG _ 23 dep _ _ 28 GM _ PROPN NNP _ 32 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 `` _ PUNCT `` _ 32 punct _ _ 31 flagrant _ ADJ JJ _ 32 amod _ _ 32 insensitivity _ NOUN NN _ 27 dobj _ _ 33 '' _ PUNCT '' _ 32 punct _ _ 34 toward _ ADP IN _ 36 case _ _ 35 union _ NOUN NN _ 36 compound _ _ 36 members _ NOUN NNS _ 32 nmod _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 auto _ NOUN NN _ 3 compound _ _ 3 maker _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 decision _ NOUN NN _ 25 nsubj _ _ 6 to _ PART TO _ 7 mark _ _ 7 let _ VERB VB _ 5 acl _ _ 8 word _ NOUN NN _ 16 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 latest _ ADJ JJS _ 12 amod _ _ 12 shutdowns _ NOUN NNS _ 8 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 product _ NOUN NN _ 15 compound _ _ 15 reassignments _ NOUN NNS _ 12 conj _ _ 16 trickle _ VERB VBP _ 7 ccomp _ _ 17 out _ ADP RP _ 16 advmod _ _ 18 in _ ADP IN _ 20 case _ _ 19 separate _ ADJ JJ _ 20 amod _ _ 20 communiques _ NOUN NNS _ 16 nmod _ _ 21 to _ ADP TO _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 affected _ ADJ JJ _ 24 amod _ _ 24 plants _ NOUN NNS _ 20 nmod _ _ 25 showed _ VERB VBD _ 43 ccomp _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 disarray _ NOUN NN _ 25 dobj _ _ 28 '' _ PUNCT '' _ 27 punct _ _ 29 and _ CONJ CC _ 27 cc _ _ 30 an _ DET DT _ 32 det _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 inability _ NOUN NN _ 27 conj _ _ 33 or _ CONJ CC _ 32 cc _ _ 34 unwillingness _ NOUN NN _ 32 conj _ _ 35 to _ PART TO _ 36 mark _ _ 36 provide _ VERB VB _ 34 acl _ _ 37 consistent _ ADJ JJ _ 38 amod _ _ 38 information _ NOUN NN _ 36 dobj _ _ 39 , _ PUNCT , _ 43 punct _ _ 40 '' _ PUNCT '' _ 43 punct _ _ 41 Mr. _ PROPN NNP _ 42 compound _ _ 42 Yokich _ PROPN NNP _ 43 nsubj _ _ 43 said _ VERB VBD _ 0 root _ _ 44 . _ PUNCT . _ 43 punct _ _ 1 GM _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 3 nsubj _ _ 3 told _ VERB VBD _ 0 root _ _ 4 workers _ NOUN NNS _ 3 dobj _ _ 5 late _ ADV RB _ 7 advmod _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 week _ NOUN NN _ 3 nmod:tmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 following _ ADJ JJ _ 11 amod _ _ 11 moves _ NOUN NNS _ 3 nmod _ _ 12 : _ PUNCT : _ 11 punct _ _ 13 Production _ NOUN NN _ 19 nsubjpass _ _ 14 of _ ADP IN _ 16 case _ _ 15 full-sized _ ADJ JJ _ 16 amod _ _ 16 vans _ NOUN NNS _ 13 nmod _ _ 17 will _ AUX MD _ 19 aux _ _ 18 be _ AUX VB _ 19 auxpass _ _ 19 consolidated _ VERB VBN _ 11 dep _ _ 20 into _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 single _ ADJ JJ _ 23 amod _ _ 23 plant _ NOUN NN _ 19 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Flint _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Mich _ PROPN NNP _ 25 appos _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 means _ VERB VBZ _ 0 root _ _ 3 two _ NUM CD _ 4 nummod _ _ 4 plants _ NOUN NNS _ 23 nsubjpass _ _ 5 -- _ PUNCT : _ 4 punct _ _ 6 one _ NUM CD _ 4 dep _ _ 7 in _ ADP IN _ 8 case _ _ 8 Scarborough _ PROPN NNP _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Ontario _ PROPN NNP _ 8 appos _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 other _ ADJ JJ _ 6 conj _ _ 15 in _ ADP IN _ 16 case _ _ 16 Lordstown _ PROPN NNP _ 14 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Ohio _ PROPN NNP _ 16 appos _ _ 19 -- _ PUNCT : _ 4 punct _ _ 20 probably _ ADV RB _ 23 advmod _ _ 21 will _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 shut _ VERB VBN _ 2 ccomp _ _ 24 down _ ADP RP _ 23 compound:prt _ _ 25 after _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 end _ NOUN NN _ 23 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 1991 _ NUM CD _ 27 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 shutdowns _ NOUN NNS _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 idle _ VERB VB _ 0 root _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 3,000 _ NUM CD _ 9 nummod _ _ 7 Canadian _ ADJ JJ _ 9 amod _ _ 8 assembly _ NOUN NN _ 9 compound _ _ 9 workers _ NOUN NNS _ 4 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 about _ ADJ JJ _ 12 advmod _ _ 12 2,500 _ NUM CD _ 13 nummod _ _ 13 workers _ NOUN NNS _ 9 conj _ _ 14 in _ ADP IN _ 15 case _ _ 15 Ohio _ PROPN NNP _ 13 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Robert _ PROPN NNP _ 2 compound _ _ 2 White _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Canadian _ PROPN NNP _ 8 compound _ _ 5 Auto _ PROPN NNP _ 8 compound _ _ 6 Workers _ PROPN NNP _ 8 compound _ _ 7 union _ NOUN NN _ 8 compound _ _ 8 president _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 used _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 14 det _ _ 12 impending _ ADJ JJ _ 14 amod _ _ 13 Scarborough _ PROPN NNP _ 14 compound _ _ 14 shutdown _ NOUN NN _ 10 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 criticize _ VERB VB _ 10 advcl _ _ 17 the _ DET DT _ 21 det _ _ 18 U.S.-Canada _ PROPN NNP _ 21 compound _ _ 19 free _ ADJ JJ _ 21 amod _ _ 20 trade _ NOUN NN _ 21 compound _ _ 21 agreement _ NOUN NN _ 16 dobj _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 champion _ NOUN NN _ 21 conj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Prime _ PROPN NNP _ 29 compound _ _ 27 Minister _ PROPN NNP _ 29 compound _ _ 28 Brian _ PROPN NNP _ 29 compound _ _ 29 Mulroney _ PROPN NNP _ 24 appos _ _ 30 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 Canadian _ ADJ JJ _ 4 amod _ _ 3 auto _ NOUN NN _ 4 compound _ _ 4 workers _ NOUN NNS _ 6 nsubj _ _ 5 may _ AUX MD _ 6 aux _ _ 6 benefit _ VERB VB _ 0 root _ _ 7 from _ ADP IN _ 11 case _ _ 8 a _ DET DT _ 11 det _ _ 9 separate _ ADJ JJ _ 11 amod _ _ 10 GM _ PROPN NNP _ 11 compound _ _ 11 move _ NOUN NN _ 6 nmod _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 affects _ VERB VBZ _ 11 acl:relcl _ _ 14 three _ NUM CD _ 17 nummod _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 car _ NOUN NN _ 17 compound _ _ 17 plants _ NOUN NNS _ 13 dobj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 one _ NUM CD _ 17 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 Quebec _ NOUN NN _ 19 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Workers _ NOUN NNS _ 18 nsubjpass _ _ 2 at _ ADP IN _ 3 case _ _ 3 plants _ NOUN NNS _ 1 nmod _ _ 4 in _ ADP IN _ 6 case _ _ 5 Van _ PROPN NNP _ 6 compound _ _ 6 Nuys _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Calif. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 Oklahoma _ PROPN NNP _ 11 compound _ _ 11 City _ PROPN NNP _ 6 conj _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 Pontiac _ PROPN NNP _ 6 conj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Mich. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 were _ AUX VBD _ 18 auxpass _ _ 18 told _ VERB VBN _ 0 root _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 facilities _ NOUN NNS _ 25 nsubj _ _ 21 are _ AUX VBP _ 25 aux _ _ 22 no _ ADV RB _ 23 neg _ _ 23 longer _ ADV RBR _ 25 advmod _ _ 24 being _ NOUN NN _ 25 dep _ _ 25 considered _ VERB VBN _ 18 ccomp _ _ 26 to _ PART TO _ 27 mark _ _ 27 build _ VERB VB _ 25 xcomp _ _ 28 the _ DET DT _ 30 det _ _ 29 next _ ADJ JJ _ 30 amod _ _ 30 generation _ NOUN NN _ 27 dobj _ _ 31 of _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 Pontiac _ PROPN NNP _ 34 compound _ _ 34 Firebird _ PROPN NNP _ 30 nmod _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 Chevrolet _ PROPN NNP _ 39 compound _ _ 37 Camaro _ PROPN NNP _ 39 compound _ _ 38 muscle _ NOUN NN _ 39 compound _ _ 39 cars _ NOUN NNS _ 34 conj _ _ 40 . _ PUNCT . _ 18 punct _ _ 1 GM _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 studying _ VERB VBG _ 25 ccomp _ _ 4 whether _ SCONJ IN _ 7 mark _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 build _ VERB VB _ 3 ccomp _ _ 8 the _ DET DT _ 10 det _ _ 9 new _ ADJ JJ _ 10 amod _ _ 10 Camaro-Firebird _ PROPN NNP _ 7 dobj _ _ 11 profitably _ ADV RB _ 7 advmod _ _ 12 at _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 plant _ NOUN NN _ 7 nmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 St. _ PROPN NNP _ 17 compound _ _ 17 Therese _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Quebec _ PROPN NNP _ 17 appos _ _ 20 , _ PUNCT , _ 25 punct _ _ 21 company _ NOUN NN _ 24 compound _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 union _ NOUN NN _ 21 conj _ _ 24 officials _ NOUN NNS _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 announcement _ NOUN NN _ 3 nsubj _ _ 3 left _ VERB VBD _ 0 root _ _ 4 union _ NOUN NN _ 5 compound _ _ 5 officials _ NOUN NNS _ 12 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 Van _ PROPN NNP _ 8 compound _ _ 8 Nuys _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Oklahoma _ PROPN NNP _ 11 compound _ _ 11 City _ PROPN NNP _ 8 conj _ _ 12 uncertain _ ADJ JJ _ 3 xcomp _ _ 13 about _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 futures _ NOUN NNS _ 12 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Van _ PROPN NNP _ 4 compound _ _ 3 Nuys _ PROPN NNP _ 4 compound _ _ 4 plant _ NOUN NN _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 7 nsubj _ _ 7 employs _ VERB VBZ _ 4 acl:relcl _ _ 8 about _ ADV RB _ 9 advmod _ _ 9 3,000 _ NUM CD _ 10 nummod _ _ 10 workers _ NOUN NNS _ 7 dobj _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 have _ VERB VB _ 0 root _ _ 15 a _ DET DT _ 16 det _ _ 16 product _ NOUN NN _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 build _ VERB VB _ 16 acl _ _ 19 after _ ADP IN _ 20 case _ _ 20 1993 _ NUM CD _ 14 nmod _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 Jerry _ PROPN NNP _ 2 compound _ _ 2 Shrieves _ PROPN NNP _ 8 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 UAW _ PROPN NNP _ 6 compound _ _ 5 local _ ADJ JJ _ 6 amod _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 facility _ NOUN NN _ 12 nsubjpass _ _ 11 was _ AUX VBD _ 12 auxpass _ _ 12 asked _ VERB VBN _ 8 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 draw _ VERB VB _ 12 xcomp _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 plans _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 continue _ VERB VB _ 16 acl _ _ 19 working _ VERB VBG _ 18 xcomp _ _ 20 as _ ADP IN _ 24 case _ _ 21 a _ DET DT _ 24 det _ _ 22 `` _ PUNCT `` _ 24 punct _ _ 23 flex _ ADJ JJ _ 24 amod _ _ 24 plant _ NOUN NN _ 19 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 '' _ PUNCT '' _ 24 punct _ _ 27 which _ PRON WDT _ 29 nsubj _ _ 28 could _ AUX MD _ 29 aux _ _ 29 build _ VERB VB _ 24 acl:relcl _ _ 30 several _ ADJ JJ _ 32 amod _ _ 31 different _ ADJ JJ _ 32 amod _ _ 32 types _ NOUN NNS _ 29 dobj _ _ 33 of _ ADP IN _ 34 case _ _ 34 products _ NOUN NNS _ 32 nmod _ _ 35 on _ ADP IN _ 37 case _ _ 36 short _ ADJ JJ _ 37 amod _ _ 37 notice _ NOUN NN _ 29 nmod _ _ 38 to _ PART TO _ 39 mark _ _ 39 satisfy _ VERB VB _ 29 advcl _ _ 40 demand _ NOUN NN _ 39 dobj _ _ 41 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 Oklahoma _ PROPN NNP _ 5 compound _ _ 4 City _ PROPN NNP _ 5 compound _ _ 5 plant _ NOUN NN _ 27 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 employs _ VERB VBZ _ 5 acl:relcl _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 6,000 _ NUM CD _ 11 nummod _ _ 11 workers _ NOUN NNS _ 8 dobj _ _ 12 building _ VERB VBG _ 11 acl _ _ 13 the _ DET DT _ 17 det _ _ 14 eight-year-old _ ADJ JJ _ 17 amod _ _ 15 A-body _ ADJ JJ _ 17 amod _ _ 16 mid-sized _ ADJ JJ _ 17 amod _ _ 17 cars _ NOUN NNS _ 12 dobj _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 Steve _ PROPN NNP _ 20 compound _ _ 20 Featherston _ PROPN NNP _ 27 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 UAW _ PROPN NNP _ 25 compound _ _ 23 local _ ADJ JJ _ 25 amod _ _ 24 vice _ NOUN NN _ 25 compound _ _ 25 president _ NOUN NN _ 20 appos _ _ 26 , _ PUNCT , _ 20 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 the _ DET DT _ 29 det _ _ 29 plant _ NOUN NN _ 30 nsubj _ _ 30 has _ VERB VBZ _ 27 dep _ _ 31 no _ DET DT _ 33 neg _ _ 32 new _ ADJ JJ _ 33 amod _ _ 33 product _ NOUN NN _ 34 nsubj _ _ 34 lined _ VERB VBN _ 30 ccomp _ _ 35 up _ ADP RP _ 34 compound:prt _ _ 36 , _ PUNCT , _ 30 punct _ _ 37 and _ CONJ CC _ 30 cc _ _ 38 `` _ PUNCT `` _ 30 punct _ _ 39 none _ NOUN NN _ 42 nsubj _ _ 40 of _ ADP IN _ 41 case _ _ 41 us _ PRON PRP _ 39 nmod _ _ 42 knows _ VERB VBZ _ 30 conj _ _ 43 '' _ PUNCT '' _ 42 punct _ _ 44 when _ ADV WRB _ 49 advmod _ _ 45 the _ DET DT _ 47 det _ _ 46 A-body _ ADJ JJ _ 47 amod _ _ 47 cars _ NOUN NNS _ 49 nsubj _ _ 48 will _ AUX MD _ 49 aux _ _ 49 die _ VERB VB _ 42 ccomp _ _ 50 . _ PUNCT . _ 27 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 believes _ VERB VBZ _ 2 ccomp _ _ 5 GM _ PROPN NNP _ 6 nsubj _ _ 6 has _ VERB VBZ _ 4 ccomp _ _ 7 plans _ NOUN NNS _ 6 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 keep _ VERB VB _ 7 acl _ _ 10 building _ VERB VBG _ 9 xcomp _ _ 11 A-body _ ADJ JJ _ 12 amod _ _ 12 cars _ NOUN NNS _ 10 dobj _ _ 13 into _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 mid-1990s _ NOUN NNS _ 10 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 Pontiac _ PROPN NNP _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 however _ ADV RB _ 9 advmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 Camaro-Firebird _ PROPN NNP _ 8 compound _ _ 8 decision _ NOUN NN _ 9 nsubj _ _ 9 appears _ VERB VBZ _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 erase _ VERB VB _ 9 xcomp _ _ 12 UAW _ PROPN NNP _ 13 compound _ _ 13 hopes _ NOUN NNS _ 11 dobj _ _ 14 that _ SCONJ IN _ 17 mark _ _ 15 GM _ PROPN NNP _ 17 nsubj _ _ 16 would _ AUX MD _ 17 aux _ _ 17 reopen _ VERB VB _ 13 ccomp _ _ 18 the _ DET DT _ 21 det _ _ 19 shuttered _ ADJ JJ _ 21 amod _ _ 20 assembly _ NOUN NN _ 21 compound _ _ 21 plant _ NOUN NN _ 17 dobj _ _ 22 that _ PRON WDT _ 24 nsubj _ _ 23 last _ ADV RB _ 24 advmod _ _ 24 built _ VERB VBD _ 21 acl:relcl _ _ 25 the _ DET DT _ 31 det _ _ 26 plastic-bodied _ ADJ JJ _ 31 amod _ _ 27 , _ PUNCT , _ 31 punct _ _ 28 two-seater _ ADJ JJ _ 31 amod _ _ 29 Pontiac _ PROPN NNP _ 31 compound _ _ 30 Fiero _ PROPN NNP _ 31 compound _ _ 31 model _ NOUN NN _ 24 dobj _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Fiero _ PROPN NNP _ 3 compound _ _ 3 plant _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 viewed _ VERB VBN _ 0 root _ _ 6 as _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 model _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 union-management _ ADJ JJ _ 11 amod _ _ 11 cooperation _ NOUN NN _ 8 nmod _ _ 12 at _ ADP IN _ 13 case _ _ 13 GM _ PROPN NNP _ 5 nmod _ _ 14 before _ SCONJ IN _ 20 mark _ _ 15 slow _ ADJ JJ _ 16 amod _ _ 16 sales _ NOUN NNS _ 20 nsubj _ _ 17 of _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 Fiero _ PROPN NNP _ 16 nmod _ _ 20 forced _ VERB VBD _ 5 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 20 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 close _ VERB VB _ 20 xcomp _ _ 25 the _ DET DT _ 26 det _ _ 26 factory _ NOUN NN _ 24 dobj _ _ 27 last _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 24 nmod:tmod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Union _ NOUN NN _ 2 compound _ _ 2 officials _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VB _ 4 aux _ _ 4 taken _ VERB VBN _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 beating _ NOUN NN _ 4 dobj _ _ 7 politically _ ADV RB _ 4 advmod _ _ 8 as _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 result _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Dissident _ PROPN NNP _ 3 compound _ _ 2 UAW _ PROPN NNP _ 3 compound _ _ 3 members _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 used _ VERB VBN _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 Fiero _ PROPN NNP _ 8 compound _ _ 8 plant _ NOUN NN _ 5 dobj _ _ 9 as _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 symbol _ NOUN NN _ 5 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 labor-management _ ADJ JJ _ 14 amod _ _ 14 cooperation _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 failure _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 Institut _ PROPN NNP _ 3 compound _ _ 2 Merieux _ PROPN NNP _ 3 compound _ _ 3 S.A. _ PROPN NNP _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 France _ PROPN NNP _ 3 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 9 det _ _ 8 Canadian _ ADJ JJ _ 9 amod _ _ 9 government _ NOUN NN _ 10 nsubj _ _ 10 raised _ VERB VBD _ 6 ccomp _ _ 11 an _ DET DT _ 12 det _ _ 12 obstacle _ NOUN NN _ 10 dobj _ _ 13 to _ ADP TO _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 proposed _ ADJ JJ _ 16 amod _ _ 16 acquisition _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 Connaught _ PROPN NNP _ 20 compound _ _ 19 BioSciences _ PROPN NNP _ 20 compound _ _ 20 Inc. _ PROPN NNP _ 16 nmod _ _ 21 for _ ADP IN _ 25 case _ _ 22 942 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 25 nummod _ _ 24 Canadian _ ADJ JJ _ 25 amod _ _ 25 dollars _ NOUN NNS _ 16 nmod _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 US$ _ SYM $ _ 25 dep _ _ 28 801.6 _ NUM CD _ 29 compound _ _ 29 million _ NUM CD _ 27 nummod _ _ 30 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 31 . _ PUNCT . _ 6 punct _ _ 1 Merieux _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 government _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 minister _ NOUN NN _ 13 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 industry _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 science _ NOUN NN _ 8 conj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 technology _ NOUN NN _ 8 conj _ _ 13 told _ VERB VBD _ 2 ccomp _ _ 14 it _ PRON PRP _ 13 dobj _ _ 15 that _ SCONJ IN _ 19 mark _ _ 16 he _ PRON PRP _ 19 nsubj _ _ 17 was _ VERB VBD _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 convinced _ ADJ JJ _ 13 ccomp _ _ 20 that _ SCONJ IN _ 24 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 purchase _ NOUN NN _ 24 nsubj _ _ 23 is _ VERB VBZ _ 24 cop _ _ 24 likely _ ADJ JJ _ 19 ccomp _ _ 25 to _ PART TO _ 30 mark _ _ 26 be _ VERB VB _ 30 cop _ _ 27 of _ ADP IN _ 30 case _ _ 28 `` _ PUNCT `` _ 30 punct _ _ 29 net _ ADJ JJ _ 30 amod _ _ 30 benefit _ NOUN NN _ 24 xcomp _ _ 31 '' _ PUNCT '' _ 30 punct _ _ 32 to _ ADP TO _ 33 case _ _ 33 Canada _ PROPN NNP _ 30 nmod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 Canadian _ ADJ JJ _ 3 amod _ _ 2 investment _ NOUN NN _ 3 compound _ _ 3 rules _ NOUN NNS _ 4 nsubj _ _ 4 require _ VERB VBP _ 0 root _ _ 5 that _ SCONJ IN _ 9 mark _ _ 6 big _ ADJ JJ _ 8 amod _ _ 7 foreign _ ADJ JJ _ 8 amod _ _ 8 takeovers _ NOUN NNS _ 9 nsubj _ _ 9 meet _ VERB VB _ 4 ccomp _ _ 10 that _ DET DT _ 11 det _ _ 11 standard _ NOUN NN _ 9 dobj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 company _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 government _ NOUN NN _ 7 nsubj _ _ 7 gave _ VERB VBD _ 4 ccomp _ _ 8 it _ PRON PRP _ 7 iobj _ _ 9 30 _ NUM CD _ 10 nummod _ _ 10 days _ NOUN NNS _ 7 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 which _ PRON WDT _ 14 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 submit _ VERB VB _ 10 acl:relcl _ _ 15 information _ NOUN NN _ 14 dobj _ _ 16 to _ PART TO _ 18 mark _ _ 17 further _ ADV RB _ 18 advmod _ _ 18 support _ VERB VB _ 15 acl _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 takeover _ NOUN NN _ 21 compound _ _ 21 plan _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 Both _ DET DT _ 2 cc:preconj _ _ 2 Merieux _ PROPN NNP _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Connaught _ PROPN NNP _ 2 conj _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 biotechnology _ NOUN NN _ 7 compound _ _ 7 research _ NOUN NN _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 vaccine _ NOUN NN _ 11 compound _ _ 10 manufacturing _ NOUN NN _ 11 compound _ _ 11 concerns _ NOUN NNS _ 7 conj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 action _ NOUN NN _ 6 nsubj _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 unusual _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Alan _ PROPN NNP _ 2 compound _ _ 2 Nymark _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 executive _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 Investment _ PROPN NNP _ 9 compound _ _ 9 Canada _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 12 nsubj _ _ 12 oversees _ VERB VBZ _ 9 acl:relcl _ _ 13 foreign _ ADJ JJ _ 14 amod _ _ 14 takeovers _ NOUN NNS _ 12 dobj _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 marked _ VERB VBD _ 16 ccomp _ _ 19 the _ DET DT _ 21 det _ _ 20 first _ ADJ JJ _ 21 amod _ _ 21 time _ NOUN NN _ 18 dobj _ _ 22 in _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 four-year _ ADJ JJ _ 25 amod _ _ 25 history _ NOUN NN _ 21 nmod _ _ 26 that _ ADP IN _ 30 advmod _ _ 27 the _ DET DT _ 28 det _ _ 28 agency _ NOUN NN _ 30 nsubj _ _ 29 has _ AUX VBZ _ 30 aux _ _ 30 made _ VERB VBN _ 21 dep _ _ 31 an _ DET DT _ 34 det _ _ 32 adverse _ ADJ JJ _ 34 amod _ _ 33 net-benefit _ ADJ JJ _ 34 amod _ _ 34 decision _ NOUN NN _ 30 dobj _ _ 35 about _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 acquisition _ NOUN NN _ 34 nmod _ _ 38 of _ ADP IN _ 42 case _ _ 39 a _ DET DT _ 42 det _ _ 40 publicly _ ADV RB _ 41 advmod _ _ 41 traded _ VERB VBN _ 42 amod _ _ 42 company _ NOUN NN _ 37 nmod _ _ 43 . _ PUNCT . _ 16 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 reached _ VERB VBN _ 2 ccomp _ _ 6 the _ DET DT _ 8 det _ _ 7 same _ ADJ JJ _ 8 amod _ _ 8 conclusions _ NOUN NNS _ 5 dobj _ _ 9 about _ ADP IN _ 11 case _ _ 10 some _ DET DT _ 11 det _ _ 11 attempts _ NOUN NNS _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 acl _ _ 14 closely _ ADV RB _ 15 advmod _ _ 15 held _ VERB VBN _ 13 xcomp _ _ 16 concerns _ NOUN NNS _ 13 dep _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 but _ CONJ CC _ 5 cc _ _ 19 eventually _ ADV RB _ 20 advmod _ _ 20 allowed _ VERB VBD _ 5 conj _ _ 21 those _ DET DT _ 22 det _ _ 22 acquisitions _ NOUN NNS _ 20 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 proceed _ VERB VB _ 20 xcomp _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 a _ DET DT _ 6 det _ _ 6 change _ NOUN NN _ 19 ccomp _ _ 7 in _ ADP IN _ 9 case _ _ 8 government _ NOUN NN _ 9 compound _ _ 9 policy _ NOUN NN _ 6 nmod _ _ 10 ; _ PUNCT : _ 6 punct _ _ 11 this _ DET DT _ 12 det _ _ 12 provision _ NOUN NN _ 15 nsubjpass _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ AUX VBN _ 15 auxpass _ _ 15 used _ VERB VBN _ 6 parataxis _ _ 16 before _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Jodi _ PROPN NNP _ 21 compound _ _ 21 Redmond _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 press _ NOUN NN _ 24 compound _ _ 24 secretary _ NOUN NN _ 21 appos _ _ 25 for _ ADP IN _ 27 case _ _ 26 Harvie _ PROPN NNP _ 27 compound _ _ 27 Andre _ PROPN NNP _ 24 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Canada _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 minister _ NOUN NN _ 27 appos _ _ 32 of _ ADP IN _ 33 case _ _ 33 industry _ NOUN NN _ 31 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 science _ NOUN NN _ 33 conj _ _ 36 and _ CONJ CC _ 33 cc _ _ 37 technology _ NOUN NN _ 33 conj _ _ 38 . _ PUNCT . _ 19 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Andre _ PROPN NNP _ 3 nsubj _ _ 3 issued _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 ruling _ NOUN NN _ 3 dobj _ _ 6 based _ VERB VBN _ 9 case _ _ 7 on _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 recommendation _ NOUN NN _ 3 advcl _ _ 10 by _ ADP IN _ 12 case _ _ 11 Investment _ PROPN NNP _ 12 compound _ _ 12 Canada _ PROPN NNP _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Spokesmen _ PROPN NNP _ 6 nsubj _ _ 2 for _ ADP IN _ 3 case _ _ 3 Merieux _ PROPN NNP _ 1 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Connaught _ PROPN NNP _ 3 conj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 they _ PRON PRP _ 11 nsubjpass _ _ 8 had _ AUX VBD _ 11 aux _ _ 9 n't _ PART RB _ 11 neg _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 informed _ VERB VBN _ 6 ccomp _ _ 12 of _ ADP IN _ 14 case _ _ 13 specific _ ADJ JJ _ 14 amod _ _ 14 areas _ NOUN NNS _ 11 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 concern _ NOUN NN _ 14 nmod _ _ 17 by _ ADP IN _ 20 case _ _ 18 either _ CONJ CC _ 20 cc:preconj _ _ 19 the _ DET DT _ 20 det _ _ 20 government _ NOUN NN _ 11 nmod _ _ 21 or _ CONJ CC _ 20 cc _ _ 22 Investment _ PROPN NNP _ 23 compound _ _ 23 Canada _ PROPN NNP _ 20 conj _ _ 24 , _ PUNCT , _ 6 punct _ _ 25 but _ CONJ CC _ 6 cc _ _ 26 added _ VERB VBD _ 6 conj _ _ 27 they _ PRON PRP _ 28 nsubj _ _ 28 hope _ VERB VBP _ 26 ccomp _ _ 29 to _ PART TO _ 30 mark _ _ 30 have _ VERB VB _ 28 xcomp _ _ 31 more _ ADJ JJR _ 32 amod _ _ 32 information _ NOUN NN _ 30 dobj _ _ 33 early _ ADV RB _ 35 advmod _ _ 34 this _ DET DT _ 35 det _ _ 35 week _ NOUN NN _ 30 nmod:tmod _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Investment _ PROPN NNP _ 2 compound _ _ 2 Canada _ PROPN NNP _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 comment _ VERB VB _ 3 xcomp _ _ 6 on _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 reasons _ NOUN NNS _ 5 nmod _ _ 9 for _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 decision _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Viren _ PROPN NNP _ 2 compound _ _ 2 Mehta _ PROPN NNP _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 partner _ NOUN NN _ 2 appos _ _ 6 with _ ADP IN _ 7 case _ _ 7 Mehta _ PROPN NNP _ 5 nmod _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Isaly _ PROPN NNP _ 7 conj _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 a _ DET DT _ 17 det _ _ 12 New _ PROPN NNP _ 13 amod _ _ 13 York-based _ ADJ JJ _ 17 amod _ _ 14 pharmaceutical _ ADJ JJ _ 17 amod _ _ 15 industry _ NOUN NN _ 17 compound _ _ 16 research _ NOUN NN _ 17 compound _ _ 17 firm _ NOUN NN _ 7 appos _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 the _ DET DT _ 21 det _ _ 21 government _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 ruling _ NOUN NN _ 26 nsubj _ _ 24 was _ VERB VBD _ 26 cop _ _ 25 n't _ PART RB _ 26 neg _ _ 26 unexpected _ ADJ JJ _ 19 ccomp _ _ 27 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 become _ VERB VBN _ 25 ccomp _ _ 5 a _ DET DT _ 8 det _ _ 6 very _ ADV RB _ 7 advmod _ _ 7 politicized _ ADJ JJ _ 8 amod _ _ 8 deal _ NOUN NN _ 4 xcomp _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 concerning _ VERB VBG _ 20 case _ _ 11 Canada _ PROPN NNP _ 20 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 only _ ADJ JJ _ 20 amod _ _ 14 large _ ADJ JJ _ 20 amod _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 world-class _ ADJ JJ _ 20 amod _ _ 17 bio-research _ NOUN NN _ 20 compound _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 pharmaceutical _ ADJ JJ _ 17 conj _ _ 20 company _ NOUN NN _ 8 nmod _ _ 21 , _ PUNCT , _ 25 punct _ _ 22 '' _ PUNCT '' _ 25 punct _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Mehta _ PROPN NNP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mehta _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 move _ NOUN NN _ 20 nsubj _ _ 6 that _ PRON WDT _ 8 nsubj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 allow _ VERB VB _ 5 acl:relcl _ _ 9 the _ DET DT _ 10 det _ _ 10 transaction _ NOUN NN _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 go _ VERB VB _ 8 xcomp _ _ 13 ahead _ ADV RB _ 12 advmod _ _ 14 as _ SCONJ IN _ 15 mark _ _ 15 planned _ VERB VBN _ 12 advcl _ _ 16 could _ AUX MD _ 20 aux _ _ 17 be _ VERB VB _ 20 cop _ _ 18 an _ DET DT _ 20 det _ _ 19 out-of-court _ ADJ JJ _ 20 amod _ _ 20 settlement _ NOUN NN _ 3 ccomp _ _ 21 of _ ADP IN _ 24 case _ _ 22 Connaught _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 dispute _ NOUN NN _ 20 nmod _ _ 25 with _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 University _ PROPN NNP _ 24 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 Toronto _ PROPN NNP _ 27 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 University _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 seeking _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 block _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 acquisition _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 10 case _ _ 10 Connaught _ PROPN NNP _ 8 nmod _ _ 11 by _ ADP IN _ 13 case _ _ 12 foreign _ ADJ JJ _ 13 amod _ _ 13 interests _ NOUN NNS _ 8 nmod _ _ 14 , _ PUNCT , _ 4 punct _ _ 15 citing _ VERB VBG _ 4 advcl _ _ 16 concerns _ NOUN NNS _ 15 dobj _ _ 17 about _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 amount _ NOUN NN _ 16 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 research _ NOUN NN _ 19 nmod _ _ 22 that _ PRON WDT _ 25 nsubjpass _ _ 23 would _ AUX MD _ 25 aux _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 done _ VERB VBN _ 19 acl:relcl _ _ 26 in _ ADP IN _ 27 case _ _ 27 Canada _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 university _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 considering _ VERB VBG _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 settlement _ NOUN NN _ 7 compound _ _ 7 proposal _ NOUN NN _ 4 dobj _ _ 8 made _ VERB VBN _ 7 acl _ _ 9 by _ ADP IN _ 10 case _ _ 10 Connaught _ PROPN NNP _ 8 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 neither _ DET DT _ 3 det _ _ 3 side _ NOUN NN _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 disclose _ VERB VB _ 11 advcl _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 contents _ NOUN NNS _ 5 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Mehta _ PROPN NNP _ 11 nsubj _ _ 11 expects _ VERB VBZ _ 0 root _ _ 12 it _ PRON PRP _ 11 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 contain _ VERB VB _ 11 xcomp _ _ 15 more _ ADV RBR _ 16 advmod _ _ 16 specific _ ADJ JJ _ 17 amod _ _ 17 guarantees _ NOUN NNS _ 14 dobj _ _ 18 on _ ADP IN _ 23 case _ _ 19 research _ NOUN NN _ 23 compound _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 development _ NOUN NN _ 19 conj _ _ 22 spending _ NOUN NN _ 23 compound _ _ 23 levels _ NOUN NNS _ 17 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Canada _ PROPN NNP _ 23 nmod _ _ 26 than _ SCONJ IN _ 28 mark _ _ 27 Merieux _ PROPN NNP _ 28 nsubj _ _ 28 offered _ VERB VBD _ 17 advcl _ _ 29 to _ ADP TO _ 31 case _ _ 30 Investment _ PROPN NNP _ 31 compound _ _ 31 Canada _ PROPN NNP _ 28 nmod _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 such _ ADJ JJ _ 7 case _ _ 5 as _ ADP IN _ 4 mwe _ _ 6 Murray _ PROPN NNP _ 7 compound _ _ 7 Grossner _ PROPN NNP _ 2 nmod _ _ 8 of _ ADP IN _ 12 case _ _ 9 Toronto-based _ ADJ JJ _ 12 amod _ _ 10 Richardson _ PROPN NNP _ 12 compound _ _ 11 Greenshields _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 7 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 believe _ VERB VBP _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 government _ NOUN NN _ 17 compound _ _ 17 ruling _ NOUN NN _ 18 nsubj _ _ 18 leaves _ VERB VBZ _ 14 ccomp _ _ 19 the _ DET DT _ 20 det _ _ 20 door _ NOUN NN _ 21 nsubj _ _ 21 open _ ADJ JJ _ 18 xcomp _ _ 22 for _ ADP IN _ 24 case _ _ 23 other _ ADJ JJ _ 24 amod _ _ 24 bidders _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 30 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 Switzerland _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 Ciba-Geigy _ PROPN NNP _ 24 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 Chiron _ PROPN NNP _ 33 compound _ _ 33 Corp. _ PROPN NNP _ 30 conj _ _ 34 of _ ADP IN _ 35 case _ _ 35 Emeryville _ PROPN NNP _ 33 nmod _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 Calif _ PROPN NNP _ 35 appos _ _ 38 . _ PUNCT . _ 14 punct _ _ 1 Officials _ NOUN NNS _ 20 nsubjpass _ _ 2 for _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 two _ NUM CD _ 5 nummod _ _ 5 concerns _ NOUN NNS _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 bidding _ VERB VBG _ 5 acl:relcl _ _ 10 C$ _ SYM $ _ 11 dep _ _ 11 30 _ NUM CD _ 9 dobj _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 for _ ADP IN _ 15 case _ _ 15 Connaught _ PROPN NNP _ 9 nmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 could _ AUX MD _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 reached _ VERB VBN _ 0 root _ _ 21 for _ ADP IN _ 22 case _ _ 22 comment _ NOUN NN _ 20 nmod _ _ 23 . _ PUNCT . _ 20 punct _ _ 1 French _ ADJ JJ _ 2 amod _ _ 2 state-owned _ ADJ JJ _ 4 amod _ _ 3 Rhone-Poulenc _ PROPN NNP _ 4 compound _ _ 4 S.A. _ PROPN NNP _ 5 nsubj _ _ 5 holds _ VERB VBZ _ 0 root _ _ 6 51 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 Merieux _ PROPN NNP _ 7 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Weatherford _ PROPN NNP _ 3 compound _ _ 2 International _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 canceled _ VERB VBD _ 4 ccomp _ _ 7 plans _ NOUN NNS _ 6 dobj _ _ 8 for _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 preferred-stock _ NOUN NN _ 11 compound _ _ 11 swap _ NOUN NN _ 7 nmod _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 may _ AUX MD _ 14 aux _ _ 14 resume _ VERB VB _ 6 conj _ _ 15 payment _ NOUN NN _ 14 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 dividends _ NOUN NNS _ 15 nmod _ _ 18 on _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 stock _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 and _ CONJ CC _ 4 cc _ _ 23 added _ VERB VBD _ 4 conj _ _ 24 that _ SCONJ IN _ 26 mark _ _ 25 it _ PRON PRP _ 26 nsubj _ _ 26 expects _ VERB VBZ _ 23 ccomp _ _ 27 to _ PART TO _ 29 mark _ _ 28 publicly _ ADV RB _ 29 advmod _ _ 29 offer _ VERB VB _ 26 xcomp _ _ 30 about _ ADV RB _ 32 advmod _ _ 31 10 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 34 nummod _ _ 33 common _ ADJ JJ _ 34 amod _ _ 34 shares _ NOUN NNS _ 29 dobj _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 planned _ VERB VBD _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 offer _ VERB VB _ 5 xcomp _ _ 8 an _ DET DT _ 10 det _ _ 9 undetermined _ ADJ JJ _ 10 amod _ _ 10 number _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 common _ ADJ JJ _ 13 amod _ _ 13 shares _ NOUN NNS _ 10 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 exchange _ NOUN NN _ 7 nmod _ _ 16 for _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 585,000 _ NUM CD _ 19 nummod _ _ 19 shares _ NOUN NNS _ 15 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 preferred _ ADJ JJ _ 23 amod _ _ 23 stock _ NOUN NN _ 19 nmod _ _ 24 outstanding _ ADJ JJ _ 23 amod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 exchange _ NOUN NN _ 3 compound _ _ 3 ratio _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 never _ ADV RB _ 6 neg _ _ 6 established _ VERB VBN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Weatherford _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 conditions _ NOUN NNS _ 5 nsubj _ _ 5 led _ VERB VBD _ 2 ccomp _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 cancellation _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 planned _ ADJ JJ _ 12 amod _ _ 12 exchange _ NOUN NN _ 8 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 energy-services _ NOUN NNS _ 3 compound _ _ 3 concern _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 however _ ADV RB _ 4 advmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 that _ SCONJ IN _ 15 mark _ _ 9 in _ ADP IN _ 10 case _ _ 10 January _ PROPN NNP _ 15 nmod _ _ 11 1990 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 may _ AUX MD _ 15 aux _ _ 15 resume _ VERB VB _ 4 ccomp _ _ 16 payments _ NOUN NNS _ 15 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 dividends _ NOUN NNS _ 16 nmod _ _ 19 on _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 preferred _ ADJ JJ _ 22 amod _ _ 22 stock _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Weatherford _ PROPN NNP _ 2 nsubj _ _ 2 suspended _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 preferred-dividend _ ADJ JJ _ 5 amod _ _ 5 payment _ NOUN NN _ 2 dobj _ _ 6 in _ ADP IN _ 7 case _ _ 7 October _ PROPN NNP _ 2 nmod _ _ 8 1985 _ NUM CD _ 7 nummod _ _ 9 and _ CONJ CC _ 2 cc _ _ 10 said _ VERB VBD _ 2 conj _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 has _ VERB VBZ _ 10 ccomp _ _ 13 n't _ PART RB _ 12 neg _ _ 14 any _ DET DT _ 15 det _ _ 15 plans _ NOUN NNS _ 12 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 catch _ VERB VB _ 15 acl _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 on _ ADP IN _ 20 case _ _ 20 dividends _ NOUN NNS _ 17 nmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 arrears _ NOUN NNS _ 20 nmod _ _ 23 about _ ADV RB _ 24 advmod _ _ 24 $ _ SYM $ _ 22 nmod:npmod _ _ 25 6 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 12 punct _ _ 28 but _ CONJ CC _ 12 cc _ _ 29 will _ AUX MD _ 30 aux _ _ 30 do _ VERB VB _ 12 conj _ _ 31 so _ ADV RB _ 30 advmod _ _ 32 some _ DET DT _ 33 det _ _ 33 time _ NOUN NN _ 30 nmod:tmod _ _ 34 in _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 future _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 Additionally _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 filed _ VERB VBD _ 5 ccomp _ _ 8 with _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 Securities _ PROPN NNP _ 13 compound _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Exchange _ PROPN NNP _ 10 conj _ _ 13 Commission _ PROPN NNP _ 7 nmod _ _ 14 for _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 proposed _ ADJ JJ _ 17 amod _ _ 17 offering _ NOUN NN _ 7 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 10 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 21 nummod _ _ 21 shares _ NOUN NNS _ 17 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 common _ ADJ JJ _ 24 amod _ _ 24 stock _ NOUN NN _ 21 nmod _ _ 25 , _ PUNCT , _ 21 punct _ _ 26 expected _ VERB VBN _ 21 acl _ _ 27 to _ PART TO _ 29 mark _ _ 28 be _ AUX VB _ 29 auxpass _ _ 29 offered _ VERB VBN _ 26 xcomp _ _ 30 in _ ADP IN _ 31 case _ _ 31 November _ PROPN NNP _ 29 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Salomon _ PROPN NNP _ 6 compound _ _ 5 Brothers _ PROPN NNP _ 6 compound _ _ 6 Inc. _ PROPN NNP _ 23 nsubjpass _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Howard _ PROPN NNP _ 15 compound _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 Weil _ PROPN NNP _ 15 appos _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 Labouisse _ PROPN NNP _ 15 appos _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 Friedrichs _ PROPN NNP _ 15 appos _ _ 15 Inc. _ PROPN NNP _ 6 conj _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 underwriters _ NOUN NNS _ 6 appos _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 offering _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 6 punct _ _ 22 were _ AUX VBD _ 23 auxpass _ _ 23 granted _ VERB VBN _ 3 ccomp _ _ 24 an _ DET DT _ 25 det _ _ 25 option _ NOUN NN _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 buy _ VERB VB _ 25 acl _ _ 28 as _ ADV RB _ 29 advmod _ _ 29 much _ ADJ JJ _ 27 dobj _ _ 30 as _ ADP IN _ 35 case _ _ 31 an _ DET DT _ 35 det _ _ 32 additional _ ADJ JJ _ 35 amod _ _ 33 1.5 _ NUM CD _ 34 compound _ _ 34 million _ NUM CD _ 35 nummod _ _ 35 shares _ NOUN NNS _ 29 nmod _ _ 36 to _ PART TO _ 37 mark _ _ 37 cover _ VERB VB _ 27 advcl _ _ 38 over-allotments _ NOUN NNS _ 37 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Proceeds _ NOUN NNS _ 4 nsubjpass _ _ 2 will _ AUX MD _ 4 aux _ _ 3 be _ AUX VB _ 4 auxpass _ _ 4 used _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 eliminate _ VERB VB _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 restructure _ VERB VB _ 6 conj _ _ 9 bank _ NOUN NN _ 10 compound _ _ 10 debt _ NOUN NN _ 6 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Weatherford _ PROPN NNP _ 3 nsubj _ _ 2 currently _ ADV RB _ 3 advmod _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 approximately _ ADV RB _ 6 advmod _ _ 5 11.1 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 8 nummod _ _ 7 common _ ADJ JJ _ 8 amod _ _ 8 shares _ NOUN NNS _ 3 dobj _ _ 9 outstanding _ ADJ JJ _ 8 amod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 Earnings _ NOUN NNS _ 12 nsubjpass _ _ 2 for _ ADP IN _ 3 case _ _ 3 most _ ADJ JJS _ 1 nmod _ _ 4 of _ ADP IN _ 10 case _ _ 5 the _ DET DT _ 6 det _ _ 6 nation _ NOUN NN _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 major _ ADJ JJ _ 10 amod _ _ 9 pharmaceutical _ ADJ JJ _ 10 amod _ _ 10 makers _ NOUN NNS _ 3 nmod _ _ 11 are _ AUX VBP _ 12 auxpass _ _ 12 believed _ VERB VBN _ 0 root _ _ 13 to _ PART TO _ 15 mark _ _ 14 have _ AUX VB _ 15 aux _ _ 15 moved _ VERB VBN _ 12 xcomp _ _ 16 ahead _ ADV RB _ 15 advmod _ _ 17 briskly _ ADV RB _ 15 advmod _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 as _ SCONJ IN _ 31 mark _ _ 24 companies _ NOUN NNS _ 31 nsubj _ _ 25 with _ ADP IN _ 30 case _ _ 26 newer _ ADJ JJR _ 30 amod _ _ 27 , _ PUNCT , _ 30 punct _ _ 28 big-selling _ ADJ JJ _ 30 amod _ _ 29 prescription _ NOUN NN _ 30 compound _ _ 30 drugs _ NOUN NNS _ 24 nmod _ _ 31 fared _ VERB VBD _ 15 advcl _ _ 32 especially _ ADV RB _ 33 advmod _ _ 33 well _ ADV RB _ 31 advmod _ _ 34 . _ PUNCT . _ 12 punct _ _ 1 For _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 third _ ADJ JJ _ 5 amod _ _ 4 consecutive _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 16 nmod _ _ 6 , _ PUNCT , _ 16 punct _ _ 7 however _ ADV RB _ 16 advmod _ _ 8 , _ PUNCT , _ 16 punct _ _ 9 most _ ADJ JJS _ 16 nsubjpass _ _ 10 of _ ADP IN _ 14 case _ _ 11 the _ DET DT _ 12 det _ _ 12 companies _ NOUN NNS _ 14 nmod:poss _ _ 13 ' _ PART POS _ 12 case _ _ 14 revenues _ NOUN NNS _ 9 nmod _ _ 15 were _ AUX VBD _ 16 auxpass _ _ 16 battered _ VERB VBN _ 0 root _ _ 17 by _ ADP IN _ 20 case _ _ 18 adverse _ ADJ JJ _ 20 amod _ _ 19 foreign-currency _ NOUN NN _ 20 compound _ _ 20 translations _ NOUN NNS _ 16 nmod _ _ 21 as _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 result _ NOUN NN _ 16 nmod _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 strong _ ADJ JJ _ 27 amod _ _ 27 dollar _ NOUN NN _ 23 nmod _ _ 28 abroad _ ADV RB _ 27 advmod _ _ 29 . _ PUNCT . _ 16 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 25 mark _ _ 4 Merck _ PROPN NNP _ 25 nsubj _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Co. _ PROPN NNP _ 4 conj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 Eli _ PROPN NNP _ 9 compound _ _ 9 Lilly _ PROPN NNP _ 4 conj _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Co. _ PROPN NNP _ 9 conj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 Warner-Lambert _ PROPN NNP _ 14 compound _ _ 14 Co. _ PROPN NNP _ 4 conj _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 the _ DET DT _ 19 det _ _ 17 Squibb _ PROPN NNP _ 19 compound _ _ 18 Corp. _ PROPN NNP _ 19 compound _ _ 19 unit _ NOUN NN _ 4 conj _ _ 20 of _ ADP IN _ 23 case _ _ 21 Bristol-Myers _ PROPN NNP _ 23 compound _ _ 22 Squibb _ PROPN NNP _ 23 compound _ _ 23 Co. _ PROPN NNP _ 19 nmod _ _ 24 all _ DET DT _ 25 dep _ _ 25 benefited _ VERB VBD _ 2 ccomp _ _ 26 from _ ADP IN _ 28 case _ _ 27 strong _ ADJ JJ _ 28 amod _ _ 28 sales _ NOUN NNS _ 25 nmod _ _ 29 of _ ADP IN _ 34 case _ _ 30 relatively _ ADV RB _ 31 advmod _ _ 31 new _ ADJ JJ _ 34 amod _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 higher-priced _ ADJ JJ _ 34 amod _ _ 34 medicines _ NOUN NNS _ 28 nmod _ _ 35 that _ PRON WDT _ 36 nsubj _ _ 36 provide _ VERB VBP _ 34 acl:relcl _ _ 37 wide _ ADJ JJ _ 39 amod _ _ 38 profit _ NOUN NN _ 39 compound _ _ 39 margins _ NOUN NNS _ 36 dobj _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 Less _ ADV RBR _ 2 advmod _ _ 2 robust _ ADJ JJ _ 3 amod _ _ 3 earnings _ NOUN NNS _ 11 nsubjpass _ _ 4 at _ ADP IN _ 6 case _ _ 5 Pfizer _ PROPN NNP _ 6 compound _ _ 6 Inc. _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Upjohn _ PROPN NNP _ 9 compound _ _ 9 Co. _ PROPN NNP _ 6 conj _ _ 10 were _ AUX VBD _ 11 auxpass _ _ 11 attributed _ VERB VBN _ 0 root _ _ 12 to _ ADP TO _ 17 case _ _ 13 those _ DET DT _ 14 det _ _ 14 companies _ NOUN NNS _ 17 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 older _ ADJ JJR _ 17 amod _ _ 17 products _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 many _ ADJ JJ _ 22 nsubj _ _ 20 of _ ADP IN _ 21 case _ _ 21 which _ PRON WDT _ 19 nmod _ _ 22 face _ VERB VBP _ 17 acl:relcl _ _ 23 stiffening _ ADJ JJ _ 24 amod _ _ 24 competition _ NOUN NN _ 22 dobj _ _ 25 from _ ADP IN _ 27 case _ _ 26 generic _ ADJ JJ _ 27 amod _ _ 27 drugs _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 other _ ADJ JJ _ 30 amod _ _ 30 medicines _ NOUN NNS _ 27 conj _ _ 31 . _ PUNCT . _ 11 punct _ _ 1 Joseph _ PROPN NNP _ 2 compound _ _ 2 Riccardo _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 an _ DET DT _ 5 det _ _ 5 analyst _ NOUN NN _ 2 appos _ _ 6 with _ ADP IN _ 7 case _ _ 7 Bear _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Stearns _ PROPN NNP _ 7 conj _ _ 10 & _ CONJ CC _ 7 cc _ _ 11 Co. _ PROPN NNP _ 7 conj _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 that _ SCONJ IN _ 24 mark _ _ 15 over _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 past _ ADJ JJ _ 19 amod _ _ 18 few _ ADJ JJ _ 19 amod _ _ 19 years _ NOUN NNS _ 24 nmod _ _ 20 most _ ADJ JJS _ 22 amod _ _ 21 drug _ NOUN NN _ 22 compound _ _ 22 makers _ NOUN NNS _ 24 nsubj _ _ 23 have _ AUX VBP _ 24 aux _ _ 24 shed _ VERB VBN _ 13 ccomp _ _ 25 their _ PRON PRP$ _ 27 nmod:poss _ _ 26 slow-growing _ ADJ JJ _ 27 amod _ _ 27 businesses _ NOUN NNS _ 24 dobj _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 instituted _ VERB VBN _ 24 conj _ _ 30 other _ ADJ JJ _ 32 amod _ _ 31 cost _ NOUN NN _ 32 compound _ _ 32 savings _ NOUN NNS _ 29 dobj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 such _ ADJ JJ _ 36 mark _ _ 35 as _ SCONJ IN _ 34 mwe _ _ 36 consolidating _ VERB VBG _ 32 acl _ _ 37 manufacturing _ NOUN NN _ 38 compound _ _ 38 plants _ NOUN NNS _ 36 dobj _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 administrative _ ADJ JJ _ 41 amod _ _ 41 staffs _ NOUN NNS _ 38 conj _ _ 42 . _ PUNCT . _ 13 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 `` _ PUNCT `` _ 10 punct _ _ 6 major _ ADJ JJ _ 8 amod _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 products _ NOUN NNS _ 10 nsubj _ _ 9 are _ AUX VBP _ 10 aux _ _ 10 having _ VERB VBG _ 26 ccomp _ _ 11 significant _ ADJ JJ _ 12 amod _ _ 12 impact _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 even _ ADV RB _ 17 advmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 company _ NOUN NN _ 10 nmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 very _ ADV RB _ 20 advmod _ _ 20 large _ ADJ JJ _ 21 amod _ _ 21 revenues _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 '' _ PUNCT '' _ 26 punct _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Riccardo _ PROPN NNP _ 26 nsubj _ _ 26 said _ VERB VBD _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 profit _ NOUN NN _ 18 nsubjpass _ _ 4 for _ ADP IN _ 11 case _ _ 5 the _ DET DT _ 11 det _ _ 6 dozen _ NOUN NN _ 11 nummod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 so _ ADV RB _ 6 conj _ _ 9 big _ ADJ JJ _ 11 amod _ _ 10 drug _ NOUN NN _ 11 compound _ _ 11 makers _ NOUN NNS _ 3 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 group _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 estimated _ VERB VBN _ 2 ccomp _ _ 19 to _ PART TO _ 21 mark _ _ 20 have _ AUX VB _ 21 aux _ _ 21 climbed _ VERB VBN _ 18 xcomp _ _ 22 between _ ADP IN _ 24 amod _ _ 23 11 _ NUM CD _ 24 nummod _ _ 24 % _ SYM NN _ 21 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 14 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 24 conj _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 that _ PRON DT _ 5 nsubj _ _ 3 's _ VERB VBZ _ 5 cop _ _ 4 not _ PART RB _ 5 neg _ _ 5 spectacular _ ADJ JJ _ 16 advcl _ _ 6 , _ PUNCT , _ 16 punct _ _ 7 Neil _ PROPN NNP _ 8 compound _ _ 8 Sweig _ PROPN NNP _ 16 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 an _ DET DT _ 11 det _ _ 11 analyst _ NOUN NN _ 8 appos _ _ 12 with _ ADP IN _ 14 case _ _ 13 Prudential _ PROPN NNP _ 14 compound _ _ 14 Bache _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 that _ SCONJ IN _ 24 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 rate _ NOUN NN _ 24 nsubj _ _ 20 of _ ADP IN _ 21 case _ _ 21 growth _ NOUN NN _ 19 nmod _ _ 22 will _ AUX MD _ 24 aux _ _ 23 `` _ PUNCT `` _ 24 punct _ _ 24 look _ VERB VB _ 16 ccomp _ _ 25 especially _ ADV RB _ 26 advmod _ _ 26 good _ ADJ JJ _ 24 xcomp _ _ 27 as _ SCONJ IN _ 28 mark _ _ 28 compared _ VERB VBN _ 26 dep _ _ 29 to _ ADP TO _ 31 case _ _ 30 other _ ADJ JJ _ 31 amod _ _ 31 companies _ NOUN NNS _ 28 nmod _ _ 32 if _ SCONJ IN _ 35 mark _ _ 33 the _ DET DT _ 34 det _ _ 34 economy _ NOUN NN _ 35 nsubj _ _ 35 turns _ VERB VBZ _ 24 advcl _ _ 36 downward _ ADV RB _ 35 advmod _ _ 37 . _ PUNCT . _ 16 punct _ _ 38 '' _ PUNCT '' _ 16 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sweig _ PROPN NNP _ 3 nsubj _ _ 3 estimated _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 11 mark _ _ 5 Merck _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 profit _ NOUN NN _ 11 nsubj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 quarter _ NOUN NN _ 7 nmod _ _ 11 rose _ VERB VBD _ 3 ccomp _ _ 12 by _ ADP IN _ 15 case _ _ 13 about _ ADV RB _ 14 advmod _ _ 14 22 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 propelled _ VERB VBN _ 11 dep _ _ 18 by _ ADP IN _ 19 case _ _ 19 sales _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 line-up _ NOUN NN _ 19 nmod _ _ 23 of _ ADP IN _ 26 case _ _ 24 fast-growing _ ADJ JJ _ 26 amod _ _ 25 prescription _ NOUN NN _ 26 compound _ _ 26 drugs _ NOUN NNS _ 22 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 including _ VERB VBG _ 31 case _ _ 29 its _ PRON PRP$ _ 31 nmod:poss _ _ 30 anti-cholesterol _ ADJ JJ _ 31 amod _ _ 31 drug _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 Mevacor _ PROPN NNP _ 31 appos _ _ 34 ; _ PUNCT : _ 31 punct _ _ 35 a _ DET DT _ 39 det _ _ 36 high _ ADJ JJ _ 39 amod _ _ 37 blood _ NOUN NN _ 39 compound _ _ 38 pressure _ NOUN NN _ 39 compound _ _ 39 medicine _ NOUN NN _ 31 conj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Vasotec _ PROPN NNP _ 39 appos _ _ 42 ; _ PUNCT : _ 31 punct _ _ 43 Primaxin _ PROPN NNP _ 31 conj _ _ 44 , _ PUNCT , _ 43 punct _ _ 45 an _ DET DT _ 46 det _ _ 46 antibiotic _ NOUN NN _ 43 appos _ _ 47 , _ PUNCT , _ 31 punct _ _ 48 and _ CONJ CC _ 31 cc _ _ 49 Pepcid _ PROPN NNP _ 31 conj _ _ 50 , _ PUNCT , _ 49 punct _ _ 51 an _ DET DT _ 53 det _ _ 52 anti-ulcer _ ADJ JJ _ 53 amod _ _ 53 medication _ NOUN NN _ 49 appos _ _ 54 . _ PUNCT . _ 3 punct _ _ 1 Profit _ NOUN NN _ 2 nsubj _ _ 2 climbed _ VERB VBD _ 28 ccomp _ _ 3 even _ ADV RB _ 9 advmod _ _ 4 though _ SCONJ IN _ 9 mark _ _ 5 Merck _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 sales _ NOUN NNS _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 reduced _ VERB VBN _ 2 advcl _ _ 10 by _ ADP IN _ 16 case _ _ 11 `` _ PUNCT `` _ 16 punct _ _ 12 one _ NUM CD _ 14 compound _ _ 13 to _ ADP TO _ 14 dep _ _ 14 three _ NUM CD _ 16 nummod _ _ 15 percentage _ NOUN NN _ 16 compound _ _ 16 points _ NOUN NNS _ 9 nmod _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 as _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 result _ NOUN NN _ 9 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 strong _ ADJ JJ _ 24 amod _ _ 24 dollar _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 28 punct _ _ 26 Mr. _ PROPN NNP _ 27 compound _ _ 27 Sweig _ PROPN NNP _ 28 nsubj _ _ 28 said _ VERB VBD _ 0 root _ _ 29 . _ PUNCT . _ 28 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 9 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 1988 _ NUM CD _ 4 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 Merck _ PROPN NNP _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 311.8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 79 _ NUM CD _ 16 nummod _ _ 16 cents _ NOUN NNS _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Rahway _ PROPN NNP _ 9 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.J. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 Merck _ PROPN NNP _ 8 compound _ _ 8 spokesman _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 14 nsubj _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 make _ VERB VB _ 9 ccomp _ _ 15 earnings _ NOUN NN _ 16 compound _ _ 16 projections _ NOUN NNS _ 14 dobj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Sweig _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 estimated _ VERB VBD _ 3 ccomp _ _ 6 that _ SCONJ IN _ 13 mark _ _ 7 Lilly _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 earnings _ NOUN NNS _ 13 nsubj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 quarter _ NOUN NN _ 9 nmod _ _ 13 jumped _ VERB VBD _ 5 ccomp _ _ 14 about _ ADV RB _ 16 advmod _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 dobj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 largely _ ADV RB _ 22 advmod _ _ 19 because _ ADP IN _ 22 case _ _ 20 of _ ADP IN _ 19 mwe _ _ 21 the _ DET DT _ 22 det _ _ 22 performance _ NOUN NN _ 13 nmod _ _ 23 of _ ADP IN _ 27 case _ _ 24 its _ PRON PRP$ _ 27 nmod:poss _ _ 25 new _ ADJ JJ _ 27 amod _ _ 26 anti-depressant _ NOUN NN _ 27 compound _ _ 27 Prozac _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 drug _ NOUN NN _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 introduced _ VERB VBD _ 2 acl _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 4 nmod:tmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 is _ AUX VBZ _ 9 auxpass _ _ 9 expected _ VERB VBN _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 generate _ VERB VB _ 9 xcomp _ _ 12 sales _ NOUN NNS _ 11 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 about _ ADV RB _ 15 advmod _ _ 15 $ _ SYM $ _ 12 nmod _ _ 16 300 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 11 nmod:tmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ AUX VBZ _ 4 aux _ _ 4 turning _ VERB VBG _ 15 ccomp _ _ 5 out _ ADP RP _ 4 compound:prt _ _ 6 to _ PART TO _ 10 mark _ _ 7 be _ VERB VB _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 real _ ADJ JJ _ 10 amod _ _ 10 blockbuster _ NOUN NN _ 4 xcomp _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 '' _ PUNCT '' _ 15 punct _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Sweig _ PROPN NNP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 year _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 third _ ADJ JJ _ 6 amod _ _ 6 quarter _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 Lilly _ PROPN NNP _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 171.4 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 1.20 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Indianapolis _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Lilly _ PROPN NNP _ 5 nsubj _ _ 5 declined _ VERB VBD _ 0 root _ _ 6 comment _ NOUN NN _ 5 dobj _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 Several _ ADJ JJ _ 2 amod _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 expected _ VERB VBD _ 3 ccomp _ _ 6 Warner-Lambert _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 profit _ NOUN NN _ 5 dobj _ _ 9 also _ ADV RB _ 11 advmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 increase _ VERB VB _ 5 xcomp _ _ 12 by _ ADP IN _ 16 case _ _ 13 more _ ADJ JJR _ 15 advmod _ _ 14 than _ ADP IN _ 13 mwe _ _ 15 20 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 11 nmod _ _ 17 from _ ADP IN _ 18 case _ _ 18 $ _ SYM $ _ 11 nmod _ _ 19 87.7 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 or _ CONJ CC _ 18 cc _ _ 23 $ _ SYM $ _ 24 dep _ _ 24 1.25 _ NUM CD _ 18 conj _ _ 25 a _ DET DT _ 26 det _ _ 26 share _ NOUN NN _ 24 nmod:npmod _ _ 27 , _ PUNCT , _ 18 punct _ _ 28 it _ PRON PRP _ 29 nsubj _ _ 29 reported _ VERB VBD _ 18 acl:relcl _ _ 30 in _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 like _ ADJ JJ _ 33 amod _ _ 33 period _ NOUN NN _ 29 nmod _ _ 34 last _ ADJ JJ _ 35 amod _ _ 35 year _ NOUN NN _ 33 nmod:tmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 praised _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 6 case _ _ 6 analysts _ NOUN NNS _ 4 nmod _ _ 7 for _ SCONJ IN _ 9 mark _ _ 8 sharply _ ADV RB _ 9 advmod _ _ 9 lowering _ VERB VBG _ 4 advcl _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 costs _ NOUN NNS _ 9 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 recent _ ADJ JJ _ 14 amod _ _ 14 years _ NOUN NNS _ 9 nmod _ _ 15 and _ CONJ CC _ 9 cc _ _ 16 shedding _ VERB VBG _ 9 conj _ _ 17 numerous _ ADJ JJ _ 18 amod _ _ 18 companies _ NOUN NNS _ 16 dobj _ _ 19 with _ ADP IN _ 22 case _ _ 20 low _ ADJ JJ _ 22 amod _ _ 21 profit _ NOUN NN _ 22 compound _ _ 22 margins _ NOUN NNS _ 18 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 lean _ ADJ JJ _ 5 amod _ _ 5 operation _ NOUN NN _ 10 nsubj _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 analysts _ NOUN NNS _ 8 nsubj _ _ 8 said _ VERB VBD _ 10 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 allowed _ VERB VBD _ 0 root _ _ 11 sharp-rising _ ADJ JJ _ 12 amod _ _ 12 sales _ NOUN NNS _ 10 dobj _ _ 13 from _ ADP IN _ 16 case _ _ 14 its _ PRON PRP$ _ 16 nmod:poss _ _ 15 cholesterol _ NOUN NN _ 16 compound _ _ 16 drug _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Lopid _ PROPN NNP _ 16 appos _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 to _ PART TO _ 21 mark _ _ 21 power _ VERB VB _ 10 xcomp _ _ 22 earnings _ NOUN NNS _ 23 compound _ _ 23 growth _ NOUN NN _ 21 dobj _ _ 24 . _ PUNCT . _ 10 punct _ _ 1 Lopid _ PROPN NNP _ 2 compound _ _ 2 sales _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 8 mark _ _ 6 be _ VERB VB _ 8 cop _ _ 7 about _ ADV RB _ 8 advmod _ _ 8 $ _ SYM $ _ 4 xcomp _ _ 9 300 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 this _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 8 nmod:tmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 up _ ADV RB _ 8 advmod _ _ 15 from _ ADP IN _ 16 case _ _ 16 $ _ SYM $ _ 14 nmod _ _ 17 190 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 20 case _ _ 20 1988 _ NUM CD _ 16 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 Morris _ PROPN NNP _ 3 compound _ _ 3 Plains _ PROPN NNP _ 12 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 N.J. _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 a _ DET DT _ 8 det _ _ 8 spokesman _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 company _ NOUN NN _ 8 nmod _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 14 det _ _ 14 analysts _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 projections _ NOUN NNS _ 21 nsubj _ _ 17 are _ VERB VBP _ 21 cop _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 ballpark _ NOUN NN _ 12 ccomp _ _ 22 . _ PUNCT . _ 12 punct _ _ 23 '' _ PUNCT '' _ 12 punct _ _ 1 Squibb _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 profit _ NOUN NN _ 36 nsubj _ _ 4 , _ PUNCT , _ 36 punct _ _ 5 estimated _ VERB VBN _ 36 advcl _ _ 6 by _ ADP IN _ 7 case _ _ 7 analysts _ NOUN NNS _ 5 nmod _ _ 8 to _ PART TO _ 12 mark _ _ 9 be _ VERB VB _ 12 cop _ _ 10 about _ ADV RB _ 11 advmod _ _ 11 18 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 5 xcomp _ _ 13 above _ ADP IN _ 12 case _ _ 14 the _ DET DT _ 15 det _ _ 15 $ _ SYM $ _ 12 dep _ _ 16 123 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 or _ CONJ CC _ 15 cc _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.25 _ NUM CD _ 15 conj _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 it _ PRON PRP _ 26 nsubj _ _ 26 earned _ VERB VBD _ 15 acl:relcl _ _ 27 in _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 third _ ADJ JJ _ 30 amod _ _ 30 quarter _ NOUN NN _ 26 nmod _ _ 31 of _ ADP IN _ 32 case _ _ 32 1988 _ NUM CD _ 30 nmod _ _ 33 , _ PUNCT , _ 15 punct _ _ 34 was _ VERB VBD _ 36 cop _ _ 35 the _ DET DT _ 36 det _ _ 36 result _ NOUN NN _ 0 root _ _ 37 of _ ADP IN _ 40 case _ _ 38 especially _ ADV RB _ 39 advmod _ _ 39 strong _ ADJ JJ _ 40 amod _ _ 40 sales _ NOUN NNS _ 36 nmod _ _ 41 of _ ADP IN _ 44 case _ _ 42 its _ PRON PRP$ _ 44 nmod:poss _ _ 43 Capoten _ PROPN NNP _ 44 compound _ _ 44 drug _ NOUN NN _ 40 nmod _ _ 45 for _ SCONJ IN _ 46 mark _ _ 46 treating _ VERB VBG _ 44 acl _ _ 47 high _ ADJ JJ _ 49 amod _ _ 48 blood _ NOUN NN _ 49 compound _ _ 49 pressure _ NOUN NN _ 46 dobj _ _ 50 and _ CONJ CC _ 49 cc _ _ 51 other _ ADJ JJ _ 53 amod _ _ 52 heart _ NOUN NN _ 53 compound _ _ 53 disease _ NOUN NN _ 49 conj _ _ 54 . _ PUNCT . _ 36 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nsubjpass _ _ 3 was _ AUX VBD _ 5 auxpass _ _ 4 officially _ ADV RB _ 5 advmod _ _ 5 merged _ VERB VBN _ 0 root _ _ 6 with _ ADP IN _ 8 case _ _ 7 Bristol-Myers _ PROPN NNP _ 8 compound _ _ 8 Co. _ PROPN NNP _ 5 nmod _ _ 9 earlier _ ADV RBR _ 11 advmod _ _ 10 this _ DET DT _ 11 det _ _ 11 month _ NOUN NN _ 5 nmod:tmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Bristol-Myers _ PROPN NNP _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 comment _ VERB VB _ 2 xcomp _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Riccardo _ PROPN NNP _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Bear _ PROPN NNP _ 5 compound _ _ 5 Stearns _ PROPN NNP _ 2 nmod _ _ 6 said _ VERB VBD _ 0 root _ _ 7 that _ SCONJ IN _ 32 mark _ _ 8 Schering-Plough _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 expected _ ADJ JJ _ 13 amod _ _ 12 profit _ NOUN NN _ 13 compound _ _ 13 rise _ NOUN NN _ 32 nsubj _ _ 14 of _ ADP IN _ 20 case _ _ 15 about _ ADV RB _ 20 advmod _ _ 16 18 _ NUM CD _ 20 compound _ _ 17 % _ SYM NN _ 20 dep _ _ 18 to _ ADP TO _ 20 dep _ _ 19 20 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 13 nmod _ _ 21 , _ PUNCT , _ 13 punct _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 Bristol-Meyers _ PROPN NNP _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 expected _ ADJ JJ _ 27 amod _ _ 26 profit _ NOUN NN _ 27 compound _ _ 27 increase _ NOUN NN _ 13 conj _ _ 28 of _ ADP IN _ 31 case _ _ 29 about _ ADV RB _ 30 advmod _ _ 30 13 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 27 nmod _ _ 32 are _ VERB VBP _ 6 ccomp _ _ 33 largely _ ADV RB _ 40 advmod _ _ 34 because _ SCONJ IN _ 40 mark _ _ 35 `` _ PUNCT `` _ 40 punct _ _ 36 those _ DET DT _ 37 det _ _ 37 companies _ NOUN NNS _ 40 nsubjpass _ _ 38 are _ AUX VBP _ 40 auxpass _ _ 39 really _ ADV RB _ 40 advmod _ _ 40 managed _ VERB VBN _ 32 advcl _ _ 41 well _ ADV RB _ 40 advmod _ _ 42 . _ PUNCT . _ 6 punct _ _ 43 '' _ PUNCT '' _ 6 punct _ _ 1 ScheringPlough _ NOUN NN _ 2 nsubj _ _ 2 earned _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 94.4 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 or _ CONJ CC _ 3 cc _ _ 8 84 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 3 conj _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 while _ SCONJ IN _ 15 mark _ _ 14 Bristol-Myers _ PROPN NNP _ 15 nsubj _ _ 15 earned _ VERB VBD _ 2 advcl _ _ 16 $ _ SYM $ _ 15 dobj _ _ 17 232.3 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 or _ CONJ CC _ 16 cc _ _ 21 81 _ NUM CD _ 22 nummod _ _ 22 cents _ NOUN NNS _ 16 conj _ _ 23 a _ DET DT _ 24 det _ _ 24 share _ NOUN NN _ 22 nmod:npmod _ _ 25 , _ PUNCT , _ 15 punct _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 like _ ADJ JJ _ 29 amod _ _ 29 period _ NOUN NN _ 15 nmod _ _ 30 a _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 32 nmod:npmod _ _ 32 earlier _ ADV RBR _ 29 advmod _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Madison _ PROPN NNP _ 10 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 N.J. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 a _ DET DT _ 7 det _ _ 7 spokesman _ NOUN NN _ 10 nsubj _ _ 8 for _ ADP IN _ 9 case _ _ 9 Schering-Plough _ PROPN NNP _ 7 nmod _ _ 10 said _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 13 nsubj _ _ 13 has _ VERB VBZ _ 10 ccomp _ _ 14 `` _ PUNCT `` _ 16 punct _ _ 15 no _ DET DT _ 16 neg _ _ 16 problems _ NOUN NNS _ 13 dobj _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 with _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 average _ ADJ JJ _ 21 amod _ _ 21 estimate _ NOUN NN _ 16 nmod _ _ 22 by _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 analysts _ NOUN NNS _ 21 nmod _ _ 25 that _ SCONJ IN _ 30 mark _ _ 26 third-quarter _ ADJ JJ _ 27 amod _ _ 27 earnings _ NOUN NNS _ 30 nsubj _ _ 28 per _ ADP IN _ 29 case _ _ 29 share _ NOUN NN _ 27 nmod _ _ 30 rose _ VERB VBD _ 21 dep _ _ 31 by _ ADP IN _ 34 case _ _ 32 about _ ADV RB _ 33 advmod _ _ 33 19 _ NUM CD _ 34 nummod _ _ 34 % _ SYM NN _ 30 nmod _ _ 35 , _ PUNCT , _ 30 punct _ _ 36 to _ ADP TO _ 38 case _ _ 37 $ _ SYM $ _ 38 dep _ _ 38 1 _ NUM CD _ 30 nmod _ _ 39 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 25 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 achieve _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 9 det _ _ 7 20 _ NUM CD _ 8 compound _ _ 8 % _ SYM NN _ 9 amod _ _ 9 increase _ NOUN NN _ 5 dobj _ _ 10 in _ ADP IN _ 12 case _ _ 11 full-year _ ADJ JJ _ 12 amod _ _ 12 earnings _ NOUN NNS _ 9 nmod _ _ 13 per _ ADP IN _ 14 case _ _ 14 share _ NOUN NN _ 9 nmod _ _ 15 , _ PUNCT , _ 5 punct _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 it _ PRON PRP _ 18 nsubj _ _ 18 projected _ VERB VBD _ 5 advcl _ _ 19 in _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 spring _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 spokesman _ NOUN NN _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Meanwhile _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 analysts _ NOUN NNS _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Pfizer _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 recent _ ADJ JJ _ 8 amod _ _ 8 string _ NOUN NN _ 13 nsubj _ _ 9 of _ ADP IN _ 12 case _ _ 10 lackluster _ ADJ JJ _ 12 amod _ _ 11 quarterly _ ADJ JJ _ 12 amod _ _ 12 performances _ NOUN NNS _ 8 nmod _ _ 13 continued _ VERB VBD _ 4 ccomp _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 as _ SCONJ IN _ 21 mark _ _ 16 earnings _ NOUN NNS _ 21 nsubjpass _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 quarter _ NOUN NN _ 16 nmod _ _ 20 were _ AUX VBD _ 21 auxpass _ _ 21 expected _ VERB VBN _ 13 advcl _ _ 22 to _ PART TO _ 23 mark _ _ 23 decline _ VERB VB _ 21 xcomp _ _ 24 by _ ADP IN _ 27 case _ _ 25 about _ ADV RB _ 26 advmod _ _ 26 5 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 23 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Sales _ PROPN NNP _ 21 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 Pfizer _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 important _ ADJ JJ _ 6 amod _ _ 6 drugs _ NOUN NNS _ 1 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Feldene _ PROPN NNP _ 6 appos _ _ 9 for _ SCONJ IN _ 10 mark _ _ 10 treating _ VERB VBG _ 8 acl _ _ 11 arthritis _ NOUN NN _ 10 dobj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 and _ CONJ CC _ 8 cc _ _ 14 Procardia _ PROPN NNP _ 8 conj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 18 det _ _ 17 heart _ NOUN NN _ 18 compound _ _ 18 medicine _ NOUN NN _ 14 appos _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 have _ AUX VBP _ 21 aux _ _ 21 shrunk _ VERB VBN _ 0 root _ _ 22 because _ ADV RB _ 25 case _ _ 23 of _ ADP IN _ 22 mwe _ _ 24 increased _ ADJ JJ _ 25 amod _ _ 25 competition _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 The _ DET DT _ 6 det _ _ 3 -LRB- _ PUNCT -LRB- _ 4 punct _ _ 4 strong _ ADJ JJ _ 6 dep _ _ 5 -RRB- _ PUNCT -RRB- _ 4 punct _ _ 6 dollar _ NOUN NN _ 7 nsubj _ _ 7 hurt _ VERB VBD _ 17 ccomp _ _ 8 Pfizer _ PROPN NNP _ 7 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 lot _ NOUN NN _ 7 nmod:npmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 too _ ADV RB _ 7 advmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 '' _ PUNCT '' _ 17 punct _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Sweig _ PROPN NNP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 9 nmod _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 9 nmod:tmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 Pfizer _ PROPN NNP _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 216.8 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 1.29 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 New _ PROPN NNP _ 3 compound _ _ 3 York _ PROPN NNP _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 declined _ VERB VBD _ 0 root _ _ 8 comment _ NOUN NN _ 7 dobj _ _ 9 . _ PUNCT . _ 7 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 they _ PRON PRP _ 4 nsubj _ _ 4 expected _ VERB VBD _ 2 ccomp _ _ 5 Upjohn _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 profit _ NOUN NN _ 4 dobj _ _ 8 to _ PART TO _ 10 mark _ _ 9 be _ VERB VB _ 10 cop _ _ 10 flat _ ADJ JJ _ 4 xcomp _ _ 11 or _ CONJ CC _ 10 cc _ _ 12 rise _ VERB VB _ 10 conj _ _ 13 by _ ADP IN _ 20 case _ _ 14 only _ ADV RB _ 20 advmod _ _ 15 about _ ADV RB _ 20 advmod _ _ 16 2 _ NUM CD _ 20 compound _ _ 17 % _ SYM NN _ 20 dep _ _ 18 to _ ADP TO _ 20 dep _ _ 19 4 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 12 nmod _ _ 21 as _ SCONJ IN _ 22 mark _ _ 22 compared _ VERB VBN _ 20 dep _ _ 23 with _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 89.6 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 or _ CONJ CC _ 24 cc _ _ 29 49 _ NUM CD _ 30 nummod _ _ 30 cents _ NOUN NNS _ 24 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 share _ NOUN NN _ 30 nmod:npmod _ _ 33 , _ PUNCT , _ 24 punct _ _ 34 it _ PRON PRP _ 35 nsubj _ _ 35 earned _ VERB VBD _ 24 acl:relcl _ _ 36 a _ DET DT _ 37 det _ _ 37 year _ NOUN NN _ 38 nmod:npmod _ _ 38 ago _ ADV RB _ 35 advmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Upjohn _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 biggest-selling _ ADJ JJ _ 4 amod _ _ 4 drugs _ NOUN NNS _ 6 nsubj _ _ 5 are _ VERB VBP _ 6 cop _ _ 6 Xanax _ PROPN NNP _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 tranquilizer _ NOUN NN _ 6 appos _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 Halcion _ PROPN NNP _ 6 conj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 sedative _ NOUN NN _ 12 appos _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Sales _ NOUN NNS _ 7 nsubjpass _ _ 2 of _ ADP IN _ 4 case _ _ 3 both _ DET DT _ 4 det _ _ 4 drugs _ NOUN NNS _ 1 nmod _ _ 5 have _ AUX VBP _ 7 aux _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 hurt _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 11 case _ _ 9 new _ ADJ JJ _ 11 amod _ _ 10 state _ NOUN NN _ 11 compound _ _ 11 laws _ NOUN NNS _ 7 nmod _ _ 12 restricting _ VERB VBG _ 11 acl _ _ 13 the _ DET DT _ 14 det _ _ 14 prescriptions _ NOUN NNS _ 12 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 certain _ ADJ JJ _ 18 amod _ _ 17 tranquilizing _ ADJ JJ _ 18 amod _ _ 18 medicines _ NOUN NNS _ 14 nmod _ _ 19 and _ CONJ CC _ 11 cc _ _ 20 adverse _ ADJ JJ _ 21 amod _ _ 21 publicity _ NOUN NN _ 11 conj _ _ 22 about _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 excessive _ ADJ JJ _ 25 amod _ _ 25 use _ NOUN NN _ 21 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 drugs _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 Also _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 hair-growing _ ADJ JJ _ 7 amod _ _ 7 drug _ NOUN NN _ 12 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Rogaine _ PROPN NNP _ 7 appos _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 is _ AUX VBZ _ 12 aux _ _ 12 selling _ VERB VBG _ 47 ccomp _ _ 13 well _ ADV RB _ 12 advmod _ _ 14 -- _ PUNCT : _ 12 punct _ _ 15 at _ ADP IN _ 17 case _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 $ _ SYM $ _ 12 nmod _ _ 18 125 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 for _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 year _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 but _ CONJ CC _ 12 cc _ _ 25 the _ DET DT _ 26 det _ _ 26 company _ NOUN NN _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 profit _ NOUN NN _ 34 nsubjpass _ _ 29 from _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 drug _ NOUN NN _ 28 nmod _ _ 32 has _ AUX VBZ _ 34 aux _ _ 33 been _ AUX VBN _ 34 auxpass _ _ 34 reduced _ VERB VBN _ 12 conj _ _ 35 by _ ADP IN _ 39 case _ _ 36 Upjohn _ PROPN NNP _ 39 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 expensive _ ADJ JJ _ 39 amod _ _ 39 print _ NOUN NN _ 34 nmod _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 television _ NOUN NN _ 42 compound _ _ 42 campaigns _ NOUN NNS _ 39 conj _ _ 43 for _ ADP IN _ 44 case _ _ 44 advertising _ VERB VBG _ 39 nmod _ _ 45 , _ PUNCT , _ 47 punct _ _ 46 analysts _ NOUN NNS _ 47 nsubj _ _ 47 said _ VERB VBD _ 0 root _ _ 48 . _ PUNCT . _ 47 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Kalamazoo _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Mich. _ PROPN NNP _ 2 appos _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Upjohn _ PROPN NNP _ 7 nsubj _ _ 7 declined _ VERB VBD _ 0 root _ _ 8 comment _ NOUN NN _ 7 dobj _ _ 9 . _ PUNCT . _ 7 punct _ _ 1 Amid _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 crowd _ NOUN NN _ 13 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 crashing _ VERB VBG _ 6 amod _ _ 6 stocks _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 Relational _ PROPN NNP _ 10 compound _ _ 9 Technology _ PROPN NNP _ 10 compound _ _ 10 Inc. _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 stock _ NOUN NN _ 13 nsubj _ _ 13 fell _ VERB VBD _ 0 root _ _ 14 particularly _ ADV RB _ 15 advmod _ _ 15 hard _ ADV RB _ 13 advmod _ _ 16 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 dropping _ VERB VBG _ 13 advcl _ _ 19 23 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 because _ SCONJ IN _ 25 mark _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 problems _ NOUN NNS _ 25 nsubjpass _ _ 24 were _ AUX VBD _ 25 auxpass _ _ 25 compounded _ VERB VBN _ 18 advcl _ _ 26 by _ ADP IN _ 27 case _ _ 27 disclosure _ NOUN NN _ 25 nmod _ _ 28 of _ ADP IN _ 31 case _ _ 29 an _ DET DT _ 31 det _ _ 30 unexpected _ ADJ JJ _ 31 amod _ _ 31 loss _ NOUN NN _ 27 nmod _ _ 32 for _ ADP IN _ 36 case _ _ 33 its _ PRON PRP$ _ 36 nmod:poss _ _ 34 fiscal _ ADJ JJ _ 36 amod _ _ 35 first _ ADJ JJ _ 36 amod _ _ 36 quarter _ NOUN NN _ 31 nmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 database _ NOUN NN _ 4 compound _ _ 3 software _ NOUN NN _ 4 compound _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 5 ccomp _ _ 8 a _ DET DT _ 13 det _ _ 9 $ _ SYM $ _ 13 amod _ _ 10 2 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 7 dobj _ _ 14 for _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 fiscal _ ADJ JJ _ 18 amod _ _ 17 first _ ADJ JJ _ 18 amod _ _ 18 quarter _ NOUN NN _ 13 nmod _ _ 19 ended _ VERB VBN _ 18 acl _ _ 20 Sept. _ PROPN NNP _ 19 nmod:tmod _ _ 21 30 _ NUM CD _ 20 nummod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 analysts _ NOUN NNS _ 6 nsubj _ _ 4 had _ AUX VBD _ 6 aux _ _ 5 been _ AUX VBN _ 6 aux _ _ 6 expecting _ VERB VBG _ 2 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 small _ ADJ JJ _ 9 amod _ _ 9 profit _ NOUN NN _ 6 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 period _ NOUN NN _ 9 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Revenue _ NOUN NN _ 3 nsubjpass _ _ 2 is _ AUX VBZ _ 3 auxpass _ _ 3 expected _ VERB VBN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 be _ VERB VB _ 3 xcomp _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 up _ ADV RB _ 8 advmod _ _ 8 modestly _ ADV RB _ 5 advmod _ _ 9 '' _ PUNCT '' _ 8 punct _ _ 10 from _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 $ _ SYM $ _ 8 nmod _ _ 13 26.5 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 reported _ VERB VBN _ 12 acl _ _ 16 a _ DET DT _ 17 det _ _ 17 year _ NOUN NN _ 18 nmod:npmod _ _ 18 ago _ ADV RB _ 15 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Relational _ PROPN NNP _ 2 compound _ _ 2 Technology _ PROPN NNP _ 3 nsubj _ _ 3 reported _ VERB VBD _ 0 root _ _ 4 net _ ADJ JJ _ 5 amod _ _ 5 income _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 1.5 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 or _ CONJ CC _ 7 cc _ _ 12 12 _ NUM CD _ 13 nummod _ _ 13 cents _ NOUN NNS _ 7 conj _ _ 14 a _ DET DT _ 15 det _ _ 15 share _ NOUN NN _ 13 nmod:npmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 year-earlier _ ADJ JJ _ 20 amod _ _ 20 period _ NOUN NN _ 5 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 While _ SCONJ IN _ 6 mark _ _ 3 our _ PRON PRP$ _ 5 nmod:poss _ _ 4 international _ ADJ JJ _ 5 amod _ _ 5 operations _ NOUN NNS _ 6 nsubj _ _ 6 showed _ VERB VBD _ 16 advcl _ _ 7 strong _ ADJ JJ _ 8 amod _ _ 8 growth _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 16 punct _ _ 10 our _ PRON PRP$ _ 12 nmod:poss _ _ 11 domestic _ ADJ JJ _ 12 amod _ _ 12 business _ NOUN NN _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 substantially _ ADV RB _ 16 advmod _ _ 15 below _ ADP IN _ 16 case _ _ 16 expectations _ NOUN NNS _ 19 ccomp _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Paul _ PROPN NNP _ 21 compound _ _ 21 Newton _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 president _ NOUN NN _ 21 appos _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 chief _ ADJ JJ _ 27 amod _ _ 26 executive _ ADJ JJ _ 27 amod _ _ 27 officer _ NOUN NN _ 23 conj _ _ 28 . _ PUNCT . _ 19 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 first _ ADJ JJ _ 8 amod _ _ 8 quarter _ NOUN NN _ 11 nsubj _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 historically _ ADV RB _ 11 advmod _ _ 11 soft _ ADJ JJ _ 3 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 and _ CONJ CC _ 11 cc _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 companies _ NOUN NNS _ 19 nsubj _ _ 16 in _ ADP IN _ 17 case _ _ 17 general _ ADJ JJ _ 15 acl _ _ 18 are _ AUX VBP _ 19 aux _ _ 19 experiencing _ VERB VBG _ 11 conj _ _ 20 slower _ ADJ JJR _ 21 amod _ _ 21 sales _ NOUN NNS _ 19 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Newton _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 accepted _ VERB VBD _ 3 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 resignation _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 Thomas _ PROPN NNP _ 10 compound _ _ 10 Wilson _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 vice _ NOUN NN _ 13 compound _ _ 13 president _ NOUN NN _ 10 appos _ _ 14 of _ ADP IN _ 16 case _ _ 15 corporate _ ADJ JJ _ 16 amod _ _ 16 sales _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 5 punct _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 that _ SCONJ IN _ 25 mark _ _ 20 his _ PRON PRP$ _ 22 nmod:poss _ _ 21 marketing _ NOUN NN _ 22 compound _ _ 22 responsibilities _ NOUN NNS _ 25 nsubjpass _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 reassigned _ VERB VBN _ 5 conj _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Wilson _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 resignation _ NOUN NN _ 10 nsubjpass _ _ 8 was _ VERB VBD _ 10 auxpass _ _ 9 n't _ PART RB _ 10 neg _ _ 10 related _ VERB VBN _ 3 ccomp _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 sales _ NOUN NNS _ 14 compound _ _ 14 shortfall _ NOUN NN _ 10 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 Relational _ PROPN NNP _ 2 compound _ _ 2 Technology _ PROPN NNP _ 3 nsubj _ _ 3 went _ VERB VBD _ 0 root _ _ 4 public _ NOUN NN _ 3 dobj _ _ 5 in _ ADP IN _ 6 case _ _ 6 May _ PROPN NNP _ 3 nmod _ _ 7 1988 _ NUM CD _ 6 nummod _ _ 8 at _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 14 _ NUM CD _ 3 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 share _ NOUN NN _ 10 nmod:npmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 fell _ VERB VBD _ 0 root _ _ 3 $ _ SYM $ _ 4 dep _ _ 4 1.875 _ NUM CD _ 2 dobj _ _ 5 a _ DET DT _ 6 det _ _ 6 share _ NOUN NN _ 4 nmod:npmod _ _ 7 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 to _ ADP TO _ 11 case _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 6.25 _ NUM CD _ 2 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 a _ DET DT _ 15 det _ _ 14 new _ ADJ JJ _ 15 amod _ _ 15 low _ ADJ JJ _ 11 appos _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 in _ ADP IN _ 19 case _ _ 18 over-the-counter _ ADJ JJ _ 19 amod _ _ 19 trading _ NOUN NN _ 2 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 high _ NOUN NN _ 9 nsubj _ _ 3 for _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 past _ ADJ JJ _ 6 amod _ _ 6 year _ NOUN NN _ 2 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 16.375 _ NUM CD _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 previous _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 company _ NOUN NN _ 8 nsubj _ _ 8 earned _ VERB VBD _ 0 root _ _ 9 $ _ SYM $ _ 8 dobj _ _ 10 4.5 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 37 _ NUM CD _ 15 nummod _ _ 15 cents _ NOUN NNS _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 sales _ NOUN NNS _ 8 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 47.2 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Bronx _ PROPN NNP _ 3 nsubj _ _ 3 has _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 wonderful _ ADJ JJ _ 7 amod _ _ 6 botanical _ ADJ JJ _ 7 amod _ _ 7 garden _ NOUN NN _ 3 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 great _ ADJ JJ _ 11 amod _ _ 11 zoo _ NOUN NN _ 7 conj _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 its _ PRON PRP$ _ 17 nmod:poss _ _ 14 own _ ADJ JJ _ 17 amod _ _ 15 charming _ ADJ JJ _ 17 amod _ _ 16 Little _ PROPN NNP _ 17 compound _ _ 17 Italy _ PROPN NNP _ 7 conj _ _ 18 -LRB- _ PUNCT -LRB- _ 21 punct _ _ 19 on _ ADP IN _ 21 case _ _ 20 Arthur _ PROPN NNP _ 21 compound _ _ 21 Avenue _ PROPN NNP _ 17 nmod _ _ 22 -RRB- _ PUNCT -RRB- _ 21 punct _ _ 23 and _ CONJ CC _ 7 cc _ _ 24 , _ PUNCT , _ 7 punct _ _ 25 of _ ADP IN _ 26 case _ _ 26 course _ NOUN NN _ 7 conj _ _ 27 , _ PUNCT , _ 7 punct _ _ 28 the _ DET DT _ 29 det _ _ 29 Yankees _ PROPN NNPS _ 7 conj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 However _ ADV RB _ 18 advmod _ _ 2 , _ PUNCT , _ 18 punct _ _ 3 most _ ADJ JJS _ 4 amod _ _ 4 people _ NOUN NNS _ 18 nsubj _ _ 5 , _ PUNCT , _ 18 punct _ _ 6 having _ AUX VBG _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 subjected _ VERB VBN _ 18 advcl _ _ 9 to _ ADP TO _ 11 case _ _ 10 news _ NOUN NN _ 11 compound _ _ 11 footage _ NOUN NN _ 8 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 devastated _ ADJ JJ _ 16 amod _ _ 15 South _ PROPN NNP _ 16 compound _ _ 16 Bronx _ PROPN NNP _ 11 nmod _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 look _ VERB VBP _ 0 root _ _ 19 at _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 borough _ NOUN NN _ 18 nmod _ _ 22 the _ DET DT _ 23 det _ _ 23 way _ NOUN NN _ 18 dobj _ _ 24 Tom _ PROPN NNP _ 25 compound _ _ 25 Wolfe _ PROPN NNP _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 Sherman _ PROPN NNP _ 28 compound _ _ 28 McCoy _ PROPN NNP _ 32 nsubj _ _ 29 did _ AUX VBD _ 32 aux _ _ 30 in _ ADP IN _ 32 case _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 Bonfire _ NOUN NN _ 23 acl:relcl _ _ 33 of _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 Vanities _ NOUN NNS _ 32 nmod _ _ 36 '' _ PUNCT '' _ 32 punct _ _ 37 -- _ PUNCT : _ 18 punct _ _ 38 as _ ADP IN _ 41 case _ _ 39 a _ DET DT _ 41 det _ _ 40 wrong _ ADJ JJ _ 41 amod _ _ 41 turn _ NOUN NN _ 18 nmod _ _ 42 into _ ADP IN _ 43 case _ _ 43 hell _ NOUN NN _ 41 nmod _ _ 44 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 Laura _ PROPN NNP _ 3 compound _ _ 3 Cunningham _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Bronx _ PROPN NNP _ 15 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 her _ PRON PRP$ _ 9 nmod:poss _ _ 8 childhood _ NOUN NN _ 9 compound _ _ 9 Bronx _ PROPN NNP _ 5 appos _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 '50s _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 something _ NOUN NN _ 0 root _ _ 16 else _ ADV RB _ 15 advmod _ _ 17 altogether _ ADV RB _ 15 advmod _ _ 18 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 a _ DET DT _ 6 det _ _ 3 lovely _ ADJ JJ _ 6 amod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 novelistic _ ADJ JJ _ 6 amod _ _ 6 memoir _ NOUN NN _ 23 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 Sleeping _ NOUN NN _ 10 compound _ _ 10 Arrangements _ NOUN NNS _ 6 appos _ _ 11 '' _ PUNCT '' _ 10 punct _ _ 12 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 13 Knopf _ PROPN NNP _ 10 appos _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 195 _ NUM CD _ 16 nummod _ _ 16 pages _ NOUN NNS _ 13 dep _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 18.95 _ NUM CD _ 13 dep _ _ 20 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 she _ PRON PRP _ 23 nsubj _ _ 23 remembers _ VERB VBZ _ 0 root _ _ 24 an _ DET DT _ 26 det _ _ 25 exotic _ ADJ JJ _ 26 amod _ _ 26 playground _ NOUN NN _ 23 dobj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 peopled _ VERB VBN _ 26 acl _ _ 29 mainly _ ADV RB _ 32 advmod _ _ 30 by _ ADP IN _ 32 case _ _ 31 Jewish _ ADJ JJ _ 32 amod _ _ 32 eccentrics _ NOUN NNS _ 28 nmod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 the _ DET DT _ 36 det _ _ 35 occasional _ ADJ JJ _ 36 amod _ _ 36 Catholic _ PROPN NNP _ 32 conj _ _ 37 -LRB- _ PUNCT -LRB- _ 39 punct _ _ 38 real _ ADJ JJ _ 39 amod _ _ 39 oddballs _ NOUN NNS _ 36 dep _ _ 40 like _ ADP IN _ 43 case _ _ 41 her _ PRON PRP$ _ 43 nmod:poss _ _ 42 sexpot _ NOUN NN _ 43 compound _ _ 43 friend _ NOUN NN _ 39 nmod _ _ 44 , _ PUNCT , _ 43 punct _ _ 45 the _ DET DT _ 47 det _ _ 46 hell-kitten _ NOUN NN _ 47 compound _ _ 47 Diana _ PROPN NNP _ 43 appos _ _ 48 , _ PUNCT , _ 43 punct _ _ 49 age _ NOUN NN _ 43 appos _ _ 50 five _ NUM CD _ 49 nummod _ _ 51 -RRB- _ PUNCT -RRB- _ 39 punct _ _ 52 . _ PUNCT . _ 23 punct _ _ 1 Ms. _ PROPN NNP _ 2 compound _ _ 2 Cunningham _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 novelist _ NOUN NN _ 2 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 playwright _ NOUN NN _ 5 conj _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 has _ VERB VBZ _ 0 root _ _ 10 a _ DET DT _ 15 det _ _ 11 vivid _ ADJ JJ _ 15 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 dramatically _ ADV RB _ 14 advmod _ _ 14 outsized _ ADJ JJ _ 11 conj _ _ 15 sense _ NOUN NN _ 9 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 recall _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 transforms _ VERB VBZ _ 0 root _ _ 3 her _ PRON PRP _ 5 dep _ _ 4 `` _ PUNCT `` _ 5 punct _ _ 5 Bronx _ PROPN NNP _ 2 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 emotions _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 a _ DET DT _ 11 det _ _ 11 place _ NOUN NN _ 5 appos _ _ 12 where _ ADV WRB _ 19 advmod _ _ 13 the _ DET DT _ 14 det _ _ 14 flats _ NOUN NNS _ 19 nsubjpass _ _ 15 of _ ADP IN _ 16 case _ _ 16 mediocrity _ NOUN NN _ 14 nmod _ _ 17 are _ AUX VBP _ 19 auxpass _ _ 18 only _ ADV RB _ 19 advmod _ _ 19 relieved _ VERB VBN _ 11 acl:relcl _ _ 20 by _ ADP IN _ 22 case _ _ 21 steep _ ADJ JJ _ 22 amod _ _ 22 descents _ NOUN NNS _ 19 nmod _ _ 23 into _ ADP IN _ 24 case _ _ 24 hysteria _ NOUN NN _ 22 nmod _ _ 25 '' _ PUNCT '' _ 5 punct _ _ 26 into _ ADP IN _ 30 case _ _ 27 the _ DET DT _ 30 det _ _ 28 `` _ PUNCT `` _ 30 punct _ _ 29 Babylonian _ PROPN NNP _ 30 compound _ _ 30 Bronx _ PROPN NNP _ 2 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 '' _ PUNCT '' _ 30 punct _ _ 33 a _ DET DT _ 34 det _ _ 34 world _ NOUN NN _ 30 dep _ _ 35 simmering _ VERB VBG _ 34 acl _ _ 36 with _ ADP IN _ 37 case _ _ 37 sex _ NOUN NN _ 35 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 death _ NOUN NN _ 37 conj _ _ 40 and _ CONJ CC _ 37 cc _ _ 41 intrigue _ NOUN NN _ 37 conj _ _ 42 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 Babylonian _ PROPN NNP _ 4 compound _ _ 4 Bronx _ PROPN NNP _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 Jewish _ ADJ JJ _ 8 amod _ _ 7 working-class _ ADJ JJ _ 8 amod _ _ 8 people _ NOUN NNS _ 9 nsubj _ _ 9 lived _ VERB VBD _ 0 root _ _ 10 in _ ADP IN _ 14 case _ _ 11 drab _ ADJ JJ _ 14 amod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 Soviet-style _ ADJ JJ _ 14 amod _ _ 14 buildings _ NOUN NNS _ 9 nmod _ _ 15 `` _ PUNCT `` _ 16 punct _ _ 16 glamorized _ VERB VBN _ 14 acl _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 with _ ADP IN _ 19 case _ _ 19 names _ NOUN NNS _ 16 nmod _ _ 20 like _ ADP IN _ 22 case _ _ 21 AnaMor _ PROPN NNP _ 22 compound _ _ 22 Towers _ PROPN NNP _ 19 nmod _ _ 23 -LRB- _ PUNCT -LRB- _ 26 punct _ _ 24 after _ ADP IN _ 26 case _ _ 25 owners _ NOUN NNS _ 26 compound _ _ 26 Anna _ PROPN NNP _ 22 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 Morris _ PROPN NNP _ 29 compound _ _ 29 Snezak _ PROPN NNP _ 26 conj _ _ 30 -RRB- _ PUNCT -RRB- _ 26 punct _ _ 31 , _ PUNCT , _ 14 punct _ _ 32 whose _ PRON WP$ _ 33 nmod:poss _ _ 33 lobbies _ NOUN NNS _ 37 nsubjpass _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 hallways _ NOUN NNS _ 33 conj _ _ 36 were _ AUX VBD _ 37 auxpass _ _ 37 decorated _ VERB VBN _ 14 acl:relcl _ _ 38 with _ ADP IN _ 39 case _ _ 39 murals _ NOUN NNS _ 37 nmod _ _ 40 of _ ADP IN _ 42 case _ _ 41 ancient _ ADJ JJ _ 42 amod _ _ 42 Syrians _ PROPN NNPS _ 39 nmod _ _ 43 and _ CONJ CC _ 42 cc _ _ 44 Greeks _ PROPN NNPS _ 42 conj _ _ 45 , _ PUNCT , _ 39 punct _ _ 46 friezes _ NOUN NNS _ 39 appos _ _ 47 of _ ADP IN _ 48 case _ _ 48 Pompeii _ PROPN NNP _ 46 nmod _ _ 49 . _ PUNCT . _ 9 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 Ms. _ PROPN NNP _ 3 compound _ _ 3 Cunningham _ PROPN NNP _ 7 nmod _ _ 4 the _ DET DT _ 6 det _ _ 5 architectural _ ADJ JJ _ 6 amod _ _ 6 discombobulation _ NOUN NN _ 7 nsubj _ _ 7 matched _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 discrepancy _ NOUN NN _ 7 dobj _ _ 10 she _ PRON PRP _ 11 nsubj _ _ 11 felt _ VERB VBD _ 9 acl:relcl _ _ 12 living _ VERB VBG _ 11 xcomp _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 AnaMor _ PROPN NNP _ 16 compound _ _ 16 Towers _ PROPN NNP _ 12 nmod _ _ 17 as _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 little _ ADJ JJ _ 20 amod _ _ 20 girl _ NOUN NN _ 12 nmod _ _ 21 : _ PUNCT : _ 9 punct _ _ 22 `` _ PUNCT `` _ 9 punct _ _ 23 ... _ PUNCT : _ 9 punct _ _ 24 outwardly _ ADV RB _ 25 advmod _ _ 25 ordinary _ ADJ JJ _ 9 amod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 inwardly _ ADV RB _ 28 advmod _ _ 28 ornate _ ADJ JJ _ 25 dep _ _ 29 , _ PUNCT , _ 25 punct _ _ 30 owing _ VERB VBG _ 9 acl _ _ 31 all _ DET DT _ 32 det _ _ 32 inspiration _ NOUN NN _ 30 dobj _ _ 33 to _ ADP TO _ 35 case _ _ 34 heathen _ ADJ JJ _ 35 amod _ _ 35 cultures _ NOUN NNS _ 30 nmod _ _ 36 . _ PUNCT . _ 7 punct _ _ 37 '' _ PUNCT '' _ 7 punct _ _ 1 Sharp-witted _ ADJ JJ _ 6 dep _ _ 2 and _ CONJ CC _ 6 cc _ _ 3 funny _ ADJ JJ _ 6 conj _ _ 4 but _ CONJ CC _ 6 cc _ _ 5 never _ ADV RB _ 6 conj _ _ 6 mean _ ADJ JJ _ 11 ccomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 she _ PRON PRP _ 11 nsubj _ _ 9 's _ VERB VBZ _ 11 cop _ _ 10 a _ DET DT _ 11 det _ _ 11 memorialist _ NOUN NN _ 0 root _ _ 12 a _ DET DT _ 13 det _ _ 13 bit _ NOUN NN _ 11 nmod _ _ 14 like _ ADP IN _ 13 case _ _ 15 Truman _ PROPN NNP _ 16 compound _ _ 16 Capote _ PROPN NNP _ 13 dep _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 if _ SCONJ IN _ 22 mark _ _ 19 he _ PRON PRP _ 22 nsubj _ _ 20 'd _ AUX MD _ 22 aux _ _ 21 been _ VERB VBN _ 22 cop _ _ 22 Jewish _ ADJ JJ _ 16 acl:relcl _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 female _ ADJ JJ _ 22 conj _ _ 25 and _ CONJ CC _ 22 cc _ _ 26 less _ ADV RBR _ 27 advmod _ _ 27 bitchy _ ADJ JJ _ 22 conj _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 Little _ PROPN NNP _ 2 compound _ _ 2 Lily _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 as _ SCONJ IN _ 7 mark _ _ 5 Ms. _ PROPN NNP _ 6 compound _ _ 6 Cunningham _ PROPN NNP _ 7 nsubj _ _ 7 calls _ VERB VBZ _ 2 acl:relcl _ _ 8 herself _ PRON PRP _ 7 xcomp _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 book _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 really _ ADV RB _ 16 advmod _ _ 14 was _ VERB VBD _ 16 cop _ _ 15 n't _ PART RB _ 16 neg _ _ 16 ordinary _ ADJ JJ _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 She _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 raised _ VERB VBN _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 for _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 first _ ADJ JJ _ 9 amod _ _ 8 eight _ NUM CD _ 9 nummod _ _ 9 years _ NOUN NNS _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 by _ ADP IN _ 13 case _ _ 12 her _ PRON PRP$ _ 13 nmod:poss _ _ 13 mother _ NOUN NN _ 3 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Rosie _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 whom _ PRON WP _ 19 dobj _ _ 18 she _ PRON PRP _ 19 nsubj _ _ 19 remembers _ VERB VBZ _ 13 acl:relcl _ _ 20 as _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 loving _ ADJ JJ _ 23 amod _ _ 23 liar _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 who _ PRON WP _ 26 nsubj _ _ 26 realigned _ VERB VBD _ 23 acl:relcl _ _ 27 history _ NOUN NN _ 26 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 explain _ VERB VB _ 26 advcl _ _ 30 why _ ADV WRB _ 36 advmod _ _ 31 Lily _ PROPN NNP _ 33 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 father _ NOUN NN _ 36 nsubj _ _ 34 did _ AUX VBD _ 36 aux _ _ 35 n't _ PART RB _ 36 neg _ _ 36 live _ VERB VB _ 29 advcl _ _ 37 with _ ADP IN _ 38 case _ _ 38 them _ PRON PRP _ 36 nmod _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 Rosie _ PROPN NNP _ 2 nsubj _ _ 2 reinvented _ VERB VBD _ 0 root _ _ 3 this _ DET DT _ 4 det _ _ 4 man _ NOUN NN _ 2 dobj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 who _ PRON WP _ 7 nsubj _ _ 7 may _ AUX MD _ 4 acl:relcl _ _ 8 or _ CONJ CC _ 7 cc _ _ 9 may _ AUX MD _ 7 conj _ _ 10 not _ PART RB _ 9 neg _ _ 11 have _ AUX VB _ 12 aux _ _ 12 known _ VERB VBN _ 7 dep _ _ 13 about _ ADP IN _ 15 case _ _ 14 his _ PRON PRP$ _ 15 nmod:poss _ _ 15 child _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 as _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 war _ NOUN NN _ 20 compound _ _ 20 hero _ NOUN NN _ 2 nmod _ _ 21 for _ ADP IN _ 24 case _ _ 22 Lily _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 benefit _ NOUN NN _ 2 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Rosie _ NOUN NN _ 2 nsubj _ _ 2 died _ VERB VBD _ 0 root _ _ 3 young _ ADJ JJ _ 2 xcomp _ _ 4 and _ CONJ CC _ 2 cc _ _ 5 Lily _ PROPN NNP _ 7 nsubj _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 remembered _ VERB VBN _ 2 conj _ _ 8 her _ PRON PRP _ 7 dobj _ _ 9 as _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 romantic _ ADJ JJ _ 12 amod _ _ 12 figure _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 who _ PRON WP _ 17 nsubj _ _ 15 did _ AUX VBD _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 interfere _ VERB VB _ 12 acl:relcl _ _ 18 much _ ADV RB _ 17 advmod _ _ 19 with _ ADP IN _ 23 case _ _ 20 her _ PRON PRP$ _ 21 nmod:poss _ _ 21 child _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 education _ NOUN NN _ 17 nmod _ _ 24 on _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 streets _ NOUN NNS _ 23 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 games _ NOUN NNS _ 17 nsubj _ _ 3 Bronx _ PROPN NNP _ 4 compound _ _ 4 children _ NOUN NNS _ 5 nsubj _ _ 5 played _ VERB VBD _ 2 acl:relcl _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 holding _ VERB VBG _ 2 dep _ _ 8 kids _ NOUN NNS _ 7 dobj _ _ 9 down _ ADP RP _ 7 compound:prt _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 stripping _ VERB VBG _ 7 conj _ _ 12 them _ PRON PRP _ 11 dobj _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 for _ ADP IN _ 15 case _ _ 15 example _ NOUN NN _ 7 nmod _ _ 16 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 17 seem _ VERB VB _ 0 root _ _ 18 tame _ ADJ JJ _ 17 xcomp _ _ 19 by _ ADP IN _ 23 case _ _ 20 today _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 crack _ NOUN NN _ 23 compound _ _ 23 standards _ NOUN NNS _ 17 nmod _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 but _ CONJ CC _ 17 cc _ _ 26 Ms. _ PROPN NNP _ 27 compound _ _ 27 Cunningham _ PROPN NNP _ 28 nsubj _ _ 28 makes _ VERB VBZ _ 17 conj _ _ 29 it _ PRON PRP _ 31 nsubj _ _ 30 all _ DET DT _ 31 dep _ _ 31 sound _ VERB VB _ 28 ccomp _ _ 32 like _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 great _ ADJ JJ _ 35 amod _ _ 35 adventure _ NOUN NN _ 31 nmod _ _ 36 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 Without _ ADP IN _ 4 case _ _ 3 official _ ADJ JJ _ 4 amod _ _ 4 knowledge _ NOUN NN _ 11 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 sex _ NOUN NN _ 4 nmod _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 death _ NOUN NN _ 6 conj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 we _ PRON PRP _ 11 nsubj _ _ 11 flirted _ VERB VBD _ 17 ccomp _ _ 12 with _ ADP IN _ 13 case _ _ 13 both _ DET DT _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 she _ PRON PRP _ 17 nsubj _ _ 17 writes _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 analyzed _ VERB VBD _ 0 root _ _ 3 families _ NOUN NNS _ 2 dobj _ _ 4 by _ ADP IN _ 7 case _ _ 5 their _ PRON PRP$ _ 7 nmod:poss _ _ 6 sleeping _ NOUN NN _ 7 compound _ _ 7 arrangements _ NOUN NNS _ 2 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 Her _ PRON PRP$ _ 3 nmod:poss _ _ 2 friend _ NOUN NN _ 3 compound _ _ 3 Susan _ PROPN NNP _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 whose _ PRON WP$ _ 6 nmod:poss _ _ 6 parents _ NOUN NNS _ 7 nsubj _ _ 7 kept _ VERB VBD _ 3 acl:relcl _ _ 8 reminding _ VERB VBG _ 7 xcomp _ _ 9 her _ PRON PRP _ 8 dobj _ _ 10 she _ PRON PRP _ 12 nsubj _ _ 11 was _ VERB VBD _ 12 cop _ _ 12 unwanted _ ADJ JJ _ 8 dep _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 slept _ VERB VBD _ 0 root _ _ 15 on _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 narrow _ ADJ JJ _ 18 amod _ _ 18 bed _ NOUN NN _ 14 nmod _ _ 19 wedged _ VERB VBN _ 18 acl _ _ 20 into _ ADP IN _ 24 case _ _ 21 her _ PRON PRP$ _ 22 nmod:poss _ _ 22 parents _ NOUN NNS _ 24 nmod:poss _ _ 23 ' _ PART POS _ 22 case _ _ 24 bedroom _ NOUN NN _ 19 nmod _ _ 25 , _ PUNCT , _ 14 punct _ _ 26 as _ SCONJ IN _ 32 mark _ _ 27 though _ SCONJ IN _ 32 mark _ _ 28 she _ PRON PRP _ 32 nsubj _ _ 29 were _ VERB VBD _ 32 cop _ _ 30 a _ DET DT _ 32 det _ _ 31 temporary _ ADJ JJ _ 32 amod _ _ 32 visitor _ NOUN NN _ 14 advcl _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 Her _ PRON PRP$ _ 3 nmod:poss _ _ 2 friend _ NOUN NN _ 3 compound _ _ 3 Diana _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 father _ NOUN NN _ 9 nsubj _ _ 6 was _ VERB VBD _ 9 cop _ _ 7 a _ DET DT _ 9 det _ _ 8 professional _ ADJ JJ _ 9 amod _ _ 9 thief _ NOUN NN _ 0 root _ _ 10 ; _ PUNCT : _ 9 punct _ _ 11 they _ PRON PRP _ 14 nsubj _ _ 12 did _ AUX VBD _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 seem _ VERB VB _ 9 parataxis _ _ 15 to _ PART TO _ 16 mark _ _ 16 have _ VERB VB _ 14 xcomp _ _ 17 any _ DET DT _ 18 det _ _ 18 bedrooms _ NOUN NNS _ 16 dobj _ _ 19 at _ ADP IN _ 20 case _ _ 20 all _ DET DT _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Maybe _ ADV RB _ 3 advmod _ _ 2 Lily _ PROPN NNP _ 3 nsubj _ _ 3 became _ VERB VBD _ 0 root _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 obsessed _ ADJ JJ _ 3 xcomp _ _ 6 with _ SCONJ IN _ 9 mark _ _ 7 where _ ADV WRB _ 9 advmod _ _ 8 people _ NOUN NNS _ 9 nsubj _ _ 9 slept _ VERB VBD _ 5 advcl _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 how _ ADV WRB _ 9 conj _ _ 12 because _ SCONJ IN _ 16 mark _ _ 13 her _ PRON PRP$ _ 15 nmod:poss _ _ 14 own _ ADJ JJ _ 15 amod _ _ 15 arrangements _ NOUN NNS _ 16 nsubj _ _ 16 kept _ VERB VBD _ 3 advcl _ _ 17 shifting _ VERB VBG _ 16 xcomp _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 Rosie _ PROPN NNP _ 3 nsubj _ _ 3 died _ VERB VBD _ 7 advcl _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 her _ PRON PRP$ _ 6 nmod:poss _ _ 6 uncles _ NOUN NNS _ 7 nsubj _ _ 7 moved _ VERB VBD _ 0 root _ _ 8 in _ ADP RP _ 7 compound:prt _ _ 9 -- _ PUNCT : _ 7 punct _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 let _ VERB VB _ 7 conj _ _ 12 her _ PRON PRP _ 13 nsubj _ _ 13 make _ VERB VB _ 11 ccomp _ _ 14 the _ DET DT _ 19 det _ _ 15 sleeping _ NOUN NN _ 19 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 other _ ADJ JJ _ 15 conj _ _ 18 household _ NOUN NN _ 19 compound _ _ 19 arrangements _ NOUN NNS _ 13 dobj _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 painted _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 apartment _ NOUN NN _ 2 dobj _ _ 5 orange _ ADJ JJ _ 2 xcomp _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 pink _ ADJ JJ _ 5 conj _ _ 8 and _ CONJ CC _ 5 cc _ _ 9 white _ ADJ JJ _ 5 conj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 according _ VERB VBG _ 14 case _ _ 12 to _ ADP TO _ 11 mwe _ _ 13 her _ PRON PRP$ _ 14 nmod:poss _ _ 14 instructions _ NOUN NNS _ 2 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 With _ ADP IN _ 3 case _ _ 2 loving _ ADJ JJ _ 3 amod _ _ 3 detail _ NOUN NN _ 5 nmod _ _ 4 she _ PRON PRP _ 5 nsubj _ _ 5 recalls _ VERB VBZ _ 0 root _ _ 6 her _ PRON PRP$ _ 8 nmod:poss _ _ 7 Uncle _ PROPN NNP _ 8 compound _ _ 8 Gabe _ PROPN NNP _ 5 dobj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 an _ DET DT _ 12 det _ _ 11 Orthodox _ PROPN NNP _ 12 compound _ _ 12 Jew _ PROPN NNP _ 8 appos _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 song _ NOUN NN _ 15 compound _ _ 15 lyricist _ NOUN NN _ 12 conj _ _ 16 -LRB- _ PUNCT -LRB- _ 18 punct _ _ 17 who _ PRON WP _ 18 nsubj _ _ 18 rhymed _ VERB VBD _ 12 dep _ _ 19 river _ NOUN NN _ 18 dobj _ _ 20 with _ ADP IN _ 21 case _ _ 21 liver _ NOUN NN _ 18 nmod _ _ 22 in _ ADP IN _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 love _ NOUN NN _ 25 compound _ _ 25 song _ NOUN NN _ 18 nmod _ _ 26 -RRB- _ PUNCT -RRB- _ 18 punct _ _ 27 ; _ PUNCT : _ 8 punct _ _ 28 and _ CONJ CC _ 8 cc _ _ 29 Uncle _ PROPN NNP _ 30 compound _ _ 30 Len _ PROPN NNP _ 8 conj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 a _ DET DT _ 35 det _ _ 33 mysterious _ ADJ JJ _ 35 amod _ _ 34 part-time _ ADJ JJ _ 35 amod _ _ 35 investigator _ NOUN NN _ 30 appos _ _ 36 who _ PRON WP _ 37 nsubj _ _ 37 looked _ VERB VBD _ 35 acl:relcl _ _ 38 like _ ADP IN _ 39 case _ _ 39 Lincoln _ PROPN NNP _ 37 nmod _ _ 40 and _ CONJ CC _ 37 cc _ _ 41 carried _ VERB VBD _ 37 conj _ _ 42 a _ DET DT _ 43 det _ _ 43 change _ NOUN NN _ 41 dobj _ _ 44 of _ ADP IN _ 45 case _ _ 45 clothing _ NOUN NN _ 43 nmod _ _ 46 in _ ADP IN _ 49 case _ _ 47 a _ DET DT _ 49 det _ _ 48 Manila _ PROPN NNP _ 49 compound _ _ 49 envelope _ NOUN NN _ 41 nmod _ _ 50 , _ PUNCT , _ 41 punct _ _ 51 like _ ADP IN _ 55 case _ _ 52 an _ DET DT _ 55 det _ _ 53 `` _ PUNCT `` _ 55 punct _ _ 54 undercover _ ADJ JJ _ 55 amod _ _ 55 President _ NOUN NN _ 41 nmod _ _ 56 on _ ADP IN _ 59 case _ _ 57 a _ DET DT _ 59 det _ _ 58 good-will _ ADJ JJ _ 59 amod _ _ 59 mission _ NOUN NN _ 55 nmod _ _ 60 . _ PUNCT . _ 5 punct _ _ 61 '' _ PUNCT '' _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 came _ VERB VBD _ 0 root _ _ 3 by _ ADP IN _ 5 case _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 strangeness _ NOUN NN _ 2 nmod _ _ 6 honestly _ ADV RB _ 2 advmod _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 Lily _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 grandmother _ NOUN NN _ 9 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 no _ DET DT _ 7 neg _ _ 6 cookie _ NOUN NN _ 7 compound _ _ 7 baker _ NOUN NN _ 3 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 excised _ VERB VBD _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 heads _ NOUN NNS _ 9 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 disliked _ ADJ JJ _ 14 amod _ _ 14 relatives _ NOUN NNS _ 11 nmod _ _ 15 from _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 family _ NOUN NN _ 18 compound _ _ 18 album _ NOUN NN _ 9 nmod _ _ 19 , _ PUNCT , _ 9 punct _ _ 20 and _ CONJ CC _ 9 cc _ _ 21 lugged _ VERB VBD _ 9 conj _ _ 22 around _ ADP RP _ 21 compound:prt _ _ 23 her _ PRON PRP$ _ 25 nmod:poss _ _ 24 perennial _ ADJ JJ _ 25 amod _ _ 25 work-in-progress _ NOUN NN _ 21 dobj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 `` _ PUNCT `` _ 25 punct _ _ 28 Philosophy _ NOUN NN _ 25 dep _ _ 29 for _ ADP IN _ 30 case _ _ 30 Women _ NOUN NNS _ 28 nmod _ _ 31 . _ PUNCT . _ 9 punct _ _ 32 '' _ PUNCT '' _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 book _ NOUN NN _ 3 nsubj _ _ 3 loses _ VERB VBZ _ 0 root _ _ 4 some _ DET DT _ 5 det _ _ 5 momentum _ NOUN NN _ 3 dobj _ _ 6 toward _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 end _ NOUN NN _ 3 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 when _ ADV WRB _ 12 advmod _ _ 11 Lily _ PROPN NNP _ 12 nsubj _ _ 12 becomes _ VERB VBZ _ 8 acl:relcl _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 preoccupied _ ADJ JJ _ 12 xcomp _ _ 15 with _ SCONJ IN _ 16 mark _ _ 16 dating _ VERB VBG _ 14 advcl _ _ 17 boys _ NOUN NNS _ 16 dobj _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 less _ ADV RBR _ 14 conj _ _ 20 with _ ADP IN _ 24 case _ _ 21 her _ PRON PRP _ 24 dep _ _ 22 delightfully _ ADV RB _ 23 advmod _ _ 23 weird _ ADJ JJ _ 24 amod _ _ 24 family _ NOUN NN _ 19 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 most _ ADJ JJS _ 4 amod _ _ 4 part _ NOUN NN _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 though _ ADV RB _ 11 advmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 there _ PRON EX _ 11 expl _ _ 9 's _ PART POS _ 11 dep _ _ 10 much _ ADJ JJ _ 11 amod _ _ 11 pleasure _ NOUN NN _ 0 root _ _ 12 in _ ADP IN _ 17 case _ _ 13 her _ PRON PRP$ _ 17 nmod:poss _ _ 14 saucy _ ADJ JJ _ 17 amod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 poignant _ ADJ JJ _ 17 amod _ _ 17 probe _ NOUN NN _ 11 nmod _ _ 18 into _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 mysteries _ NOUN NNS _ 17 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 Babylonian _ PROPN NNP _ 24 compound _ _ 24 Bronx _ PROPN NNP _ 20 nmod _ _ 25 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Bronx _ PROPN NNP _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 figures _ VERB VBZ _ 0 root _ _ 5 in _ ADP IN _ 11 case _ _ 6 Bruce _ PROPN NNP _ 8 compound _ _ 7 Jay _ PROPN NNP _ 8 compound _ _ 8 Friedman _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 latest _ ADJ JJS _ 11 amod _ _ 11 novel _ NOUN NN _ 4 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 flashes _ VERB VBZ _ 11 acl:relcl _ _ 15 back _ ADV RB _ 14 advmod _ _ 16 to _ ADP TO _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 New _ PROPN NNP _ 19 compound _ _ 19 York _ PROPN NNP _ 15 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 '50s _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 25 cc _ _ 2 both _ DET DT _ 7 det:predet _ _ 3 the _ DET DT _ 7 det _ _ 4 past _ NOUN NN _ 7 amod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 present _ ADJ JJ _ 4 conj _ _ 7 worlds _ NOUN NNS _ 25 nsubj _ _ 8 of _ ADP IN _ 12 case _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 The _ DET DT _ 12 det _ _ 11 Current _ ADJ JJ _ 12 amod _ _ 12 Climate _ NOUN NN _ 7 nmod _ _ 13 '' _ PUNCT '' _ 12 punct _ _ 14 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 15 Atlantic _ PROPN NNP _ 17 compound _ _ 16 Monthly _ PROPN NNP _ 17 compound _ _ 17 Press _ PROPN NNP _ 12 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 200 _ NUM CD _ 20 nummod _ _ 20 pages _ NOUN NNS _ 17 dep _ _ 21 , _ PUNCT , _ 17 punct _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 18.95 _ NUM CD _ 17 dep _ _ 24 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 25 feel _ VERB VBP _ 0 root _ _ 26 cramped _ ADJ JJ _ 25 xcomp _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 static _ ADJ JJ _ 26 conj _ _ 29 . _ PUNCT . _ 25 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 his _ PRON PRP$ _ 4 nmod:poss _ _ 3 sixth _ ADJ JJ _ 4 amod _ _ 4 novel _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Friedman _ PROPN NNP _ 8 nsubj _ _ 8 tried _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 resuscitate _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 protagonist _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 his _ PRON PRP$ _ 16 nmod:poss _ _ 15 1972 _ NUM CD _ 16 nummod _ _ 16 work _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 16 punct _ _ 19 About _ ADP IN _ 21 case _ _ 20 Harry _ PROPN NNP _ 21 compound _ _ 21 Towns _ PROPN NNP _ 16 nmod _ _ 22 . _ PUNCT . _ 8 punct _ _ 23 '' _ PUNCT '' _ 8 punct _ _ 1 Harry _ PROPN NNP _ 6 nsubj _ _ 2 is _ VERB VBZ _ 6 cop _ _ 3 now _ ADV RB _ 6 advmod _ _ 4 a _ DET DT _ 6 det _ _ 5 57-year-old _ ADJ JJ _ 6 amod _ _ 6 writer _ NOUN NN _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 whose _ PRON WP$ _ 10 nmod:poss _ _ 9 continuing _ VERB VBG _ 10 amod _ _ 10 flirtation _ NOUN NN _ 21 nsubj _ _ 11 with _ ADP IN _ 12 case _ _ 12 drugs _ NOUN NNS _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 marginal _ ADJ JJ _ 15 amod _ _ 15 types _ NOUN NNS _ 12 conj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Hollywood _ PROPN NNP _ 15 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 New _ PROPN NNP _ 20 compound _ _ 20 York _ PROPN NNP _ 17 conj _ _ 21 seems _ VERB VBZ _ 6 acl:relcl _ _ 22 quaintly _ ADV RB _ 23 advmod _ _ 23 out-of-synch _ ADJ JJ _ 21 xcomp _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Harry _ PROPN NNP _ 3 nsubj _ _ 2 fondly _ ADV RB _ 3 advmod _ _ 3 remembers _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 8 det _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 old _ ADJ JJ _ 8 amod _ _ 7 '' _ PUNCT '' _ 8 punct _ _ 8 days _ NOUN NNS _ 3 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 early _ ADJ JJ _ 12 amod _ _ 12 '70s _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 when _ ADV WRB _ 21 advmod _ _ 15 people _ NOUN NNS _ 21 nsubj _ _ 16 like _ ADP IN _ 19 case _ _ 17 his _ PRON PRP$ _ 19 nmod:poss _ _ 18 friend _ NOUN NN _ 19 compound _ _ 19 Travis _ PROPN NNP _ 15 nmod _ _ 20 would _ AUX MD _ 21 aux _ _ 21 take _ VERB VB _ 8 acl:relcl _ _ 22 a _ DET DT _ 23 det _ _ 23 psychiatrist _ NOUN NN _ 21 dobj _ _ 24 on _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 date _ NOUN NN _ 21 nmod _ _ 27 to _ PART TO _ 28 mark _ _ 28 analyze _ VERB VB _ 21 advcl _ _ 29 what _ PRON WP _ 32 dobj _ _ 30 Travis _ PROPN NNP _ 32 nsubj _ _ 31 was _ AUX VBD _ 32 aux _ _ 32 doing _ VERB VBG _ 28 ccomp _ _ 33 wrong _ ADJ JJ _ 32 advmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 An _ DET DT _ 4 det _ _ 3 L.A. _ PROPN NNP _ 4 compound _ _ 4 solution _ NOUN NN _ 7 dep _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 '' _ PUNCT '' _ 7 punct _ _ 7 explains _ VERB VBZ _ 0 root _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Friedman _ PROPN NNP _ 7 nsubj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 Line _ NOUN NN _ 11 dep _ _ 2 by _ ADP IN _ 3 case _ _ 3 line _ NOUN NN _ 1 nmod _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Friedman _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 weary _ ADJ JJ _ 8 amod _ _ 8 cynicism _ NOUN NN _ 11 nsubj _ _ 9 can _ AUX MD _ 11 aux _ _ 10 be _ VERB VB _ 11 cop _ _ 11 amusing _ ADJ JJ _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 especially _ ADV RB _ 17 advmod _ _ 14 when _ ADV WRB _ 17 advmod _ _ 15 he _ PRON PRP _ 17 nsubj _ _ 16 's _ AUX VBZ _ 17 aux _ _ 17 riffing _ VERB VBG _ 11 advcl _ _ 18 on _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 Hollywood _ PROPN NNP _ 22 compound _ _ 21 social _ ADJ JJ _ 22 amod _ _ 22 scheme _ NOUN NN _ 17 nmod _ _ 23 -- _ PUNCT : _ 22 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 way _ NOUN NN _ 22 dep _ _ 26 people _ NOUN NNS _ 27 nsubj _ _ 27 size _ VERB VBP _ 25 acl:relcl _ _ 28 each _ DET DT _ 27 dobj _ _ 29 other _ ADJ JJ _ 28 amod _ _ 30 up _ ADP RP _ 27 compound:prt _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 immediately _ ADV RB _ 33 advmod _ _ 33 canceling _ VERB VBG _ 27 xcomp _ _ 34 the _ DET DT _ 36 det _ _ 35 desperate _ ADJ JJ _ 36 amod _ _ 36 ones _ NOUN NNS _ 33 dobj _ _ 37 who _ PRON WP _ 40 nsubj _ _ 38 merely _ ADV RB _ 40 advmod _ _ 39 almost _ ADV RB _ 40 advmod _ _ 40 made _ VERB VBD _ 36 acl:relcl _ _ 41 it _ PRON PRP _ 40 dobj _ _ 42 . _ PUNCT . _ 11 punct _ _ 1 Harry _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 avoided _ VERB VBN _ 0 root _ _ 4 all _ DET PDT _ 5 det:predet _ _ 5 that _ DET DT _ 3 dobj _ _ 6 by _ SCONJ IN _ 7 mark _ _ 7 living _ VERB VBG _ 3 advcl _ _ 8 in _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 Long _ PROPN NNP _ 12 compound _ _ 11 Island _ PROPN NNP _ 12 compound _ _ 12 suburb _ NOUN NN _ 7 nmod _ _ 13 with _ ADP IN _ 15 case _ _ 14 his _ PRON PRP$ _ 15 nmod:poss _ _ 15 wife _ NOUN NN _ 7 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 who _ PRON WP _ 20 nsubj _ _ 18 's _ VERB VBZ _ 20 cop _ _ 19 so _ ADV RB _ 20 advmod _ _ 20 addicted _ ADJ JJ _ 15 acl:relcl _ _ 21 to _ ADP TO _ 23 case _ _ 22 soap _ NOUN NN _ 23 compound _ _ 23 operas _ NOUN NNS _ 20 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 mystery _ NOUN NN _ 26 compound _ _ 26 novels _ NOUN NNS _ 23 conj _ _ 27 she _ PRON PRP _ 29 nsubj _ _ 28 barely _ ADV RB _ 29 advmod _ _ 29 seems _ VERB VBZ _ 20 ccomp _ _ 30 to _ PART TO _ 31 mark _ _ 31 notice _ VERB VB _ 29 xcomp _ _ 32 when _ ADV WRB _ 35 advmod _ _ 33 her _ PRON PRP$ _ 34 nmod:poss _ _ 34 husband _ NOUN NN _ 35 nsubj _ _ 35 disappears _ VERB VBZ _ 31 advcl _ _ 36 for _ ADP IN _ 38 case _ _ 37 drug-seeking _ ADJ JJ _ 38 amod _ _ 38 forays _ NOUN NNS _ 35 nmod _ _ 39 into _ ADP IN _ 40 case _ _ 40 Manhattan _ PROPN NNP _ 35 nmod _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 it _ PRON PRP _ 5 nsubj _ _ 3 does _ AUX VBZ _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 take _ VERB VB _ 0 root _ _ 6 too _ ADV RB _ 8 advmod _ _ 7 many _ ADJ JJ _ 8 amod _ _ 8 lines _ NOUN NNS _ 5 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 figure _ VERB VB _ 5 advcl _ _ 11 Harry _ PROPN NNP _ 10 dobj _ _ 12 out _ ADP RP _ 10 compound:prt _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 's _ VERB VBZ _ 4 cop _ _ 3 a _ DET DT _ 4 det _ _ 4 bore _ NOUN NN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Gulf _ PROPN NNP _ 2 compound _ _ 2 Resources _ PROPN NNP _ 6 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Chemical _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 2 conj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 agreed _ VERB VBD _ 6 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 pay _ VERB VB _ 8 xcomp _ _ 11 $ _ SYM $ _ 10 dobj _ _ 12 1.5 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 as _ ADP IN _ 15 case _ _ 15 part _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 an _ DET DT _ 18 det _ _ 18 accord _ NOUN NN _ 15 nmod _ _ 19 with _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 Environmental _ PROPN NNP _ 23 compound _ _ 22 Protection _ PROPN NNP _ 23 compound _ _ 23 Agency _ PROPN NNP _ 18 nmod _ _ 24 regarding _ VERB VBG _ 18 acl _ _ 25 an _ DET DT _ 27 det _ _ 26 environmental _ ADJ JJ _ 27 amod _ _ 27 cleanup _ NOUN NN _ 24 dobj _ _ 28 of _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 defunct _ ADJ JJ _ 31 amod _ _ 31 smelter _ NOUN NN _ 27 nmod _ _ 32 the _ DET DT _ 33 det _ _ 33 company _ NOUN NN _ 35 nsubj _ _ 34 formerly _ ADV RB _ 35 advmod _ _ 35 operated _ VERB VBD _ 31 acl:relcl _ _ 36 in _ ADP IN _ 37 case _ _ 37 Idaho _ PROPN NNP _ 31 nmod _ _ 38 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1984 _ NUM CD _ 5 nmod _ _ 3 the _ DET DT _ 4 det _ _ 4 EPA _ PROPN NNP _ 5 nsubj _ _ 5 notified _ VERB VBD _ 0 root _ _ 6 Gulf _ PROPN NNP _ 7 compound _ _ 7 Resources _ PROPN NNP _ 5 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 12 nsubj _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 part-owner _ NOUN NN _ 7 acl:relcl _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 smelter _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 5 punct _ _ 17 that _ SCONJ IN _ 21 mark _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 was _ VERB VBD _ 21 cop _ _ 20 potentially _ ADV RB _ 21 advmod _ _ 21 liable _ ADJ JJ _ 5 ccomp _ _ 22 for _ SCONJ IN _ 23 mark _ _ 23 sharing _ VERB VBG _ 21 advcl _ _ 24 cleanup _ NOUN NN _ 25 compound _ _ 25 costs _ NOUN NNS _ 23 dobj _ _ 26 at _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 site _ NOUN NN _ 25 nmod _ _ 29 under _ ADP IN _ 33 case _ _ 30 the _ DET DT _ 33 det _ _ 31 federal _ ADJ JJ _ 33 amod _ _ 32 Superfund _ PROPN NNP _ 33 compound _ _ 33 program _ NOUN NN _ 23 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 21-square-mile _ ADJ JJ _ 3 amod _ _ 3 area _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 contaminated _ ADJ JJ _ 0 root _ _ 6 with _ ADP IN _ 7 case _ _ 7 lead _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 zinc _ NOUN NN _ 7 conj _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 other _ ADJ JJ _ 12 amod _ _ 12 metals _ NOUN NNS _ 7 conj _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 Gulf _ PROPN NNP _ 2 compound _ _ 2 Resources _ PROPN NNP _ 6 nsubj _ _ 3 earlier _ ADV RBR _ 5 advmod _ _ 4 this _ DET DT _ 5 det _ _ 5 year _ NOUN NN _ 6 nmod:tmod _ _ 6 proposed _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 reorganization _ NOUN NN _ 9 compound _ _ 9 plan _ NOUN NN _ 6 dobj _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 make _ VERB VB _ 9 acl:relcl _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 a _ DET DT _ 15 det _ _ 15 unit _ NOUN NN _ 12 xcomp _ _ 16 of _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 Bermuda _ PROPN NNP _ 19 compound _ _ 19 concern _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 potentially _ ADV RB _ 22 advmod _ _ 22 exempting _ VERB VBG _ 12 xcomp _ _ 23 it _ PRON PRP _ 22 dobj _ _ 24 from _ ADP IN _ 25 case _ _ 25 liability _ NOUN NN _ 22 nmod _ _ 26 for _ ADP IN _ 31 case _ _ 27 the _ DET DT _ 28 det _ _ 28 smelter _ NOUN NN _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 cleanup _ NOUN NN _ 31 compound _ _ 31 costs _ NOUN NNS _ 25 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 16 mark _ _ 5 as _ ADP IN _ 6 case _ _ 6 part _ NOUN NN _ 16 nmod _ _ 7 of _ ADP IN _ 9 case _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 agreement _ NOUN NN _ 6 nmod _ _ 10 with _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 EPA _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 `` _ PUNCT `` _ 16 punct _ _ 16 made _ VERB VBD _ 3 ccomp _ _ 17 certain _ ADJ JJ _ 19 amod _ _ 18 voluntary _ ADJ JJ _ 19 amod _ _ 19 undertakings _ NOUN NNS _ 16 dobj _ _ 20 with _ ADP IN _ 21 case _ _ 21 respect _ NOUN NN _ 16 nmod _ _ 22 to _ ADP TO _ 24 case _ _ 23 intercorporate _ ADJ JJ _ 24 amod _ _ 24 transactions _ NOUN NNS _ 21 nmod _ _ 25 entered _ VERB VBN _ 24 acl _ _ 26 into _ ADP IN _ 25 nmod _ _ 27 after _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 reorganization _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 31 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 issued _ VERB VBD _ 2 acl:relcl _ _ 6 a _ DET DT _ 7 det _ _ 7 statement _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 agreement _ NOUN NN _ 7 nmod _ _ 11 late _ ADV RB _ 12 advmod _ _ 12 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 that _ SCONJ IN _ 24 mark _ _ 16 $ _ SYM $ _ 24 nsubjpass _ _ 17 1 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 payment _ NOUN NN _ 16 nmod _ _ 22 was _ AUX VBD _ 24 auxpass _ _ 23 previously _ ADV RB _ 24 advmod _ _ 24 provided _ VERB VBN _ 14 ccomp _ _ 25 for _ ADP IN _ 24 nmod _ _ 26 in _ ADP IN _ 29 case _ _ 27 its _ PRON PRP$ _ 29 nmod:poss _ _ 28 financial _ ADJ JJ _ 29 amod _ _ 29 statements _ NOUN NNS _ 24 nmod _ _ 30 and _ CONJ CC _ 24 cc _ _ 31 that _ DET DT _ 36 mark _ _ 32 $ _ SYM $ _ 33 dep _ _ 33 500,000 _ NUM CD _ 36 nsubjpass _ _ 34 will _ AUX MD _ 36 aux _ _ 35 be _ AUX VB _ 36 auxpass _ _ 36 recognized _ VERB VBN _ 24 conj _ _ 37 in _ ADP IN _ 41 case _ _ 38 its _ PRON PRP$ _ 41 nmod:poss _ _ 39 1989 _ NUM CD _ 41 nummod _ _ 40 third-quarter _ ADJ JJ _ 41 amod _ _ 41 statement _ NOUN NN _ 36 nmod _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 agreement _ NOUN NN _ 5 compound _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 consent _ NOUN NN _ 2 conj _ _ 5 decree _ NOUN NN _ 7 nsubj _ _ 6 are _ VERB VBP _ 7 cop _ _ 7 subject _ ADJ JJ _ 14 ccomp _ _ 8 to _ ADP TO _ 10 case _ _ 9 court _ NOUN NN _ 10 compound _ _ 10 approval _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 company _ NOUN NN _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Gulf _ PROPN NNP _ 2 compound _ _ 2 Resources _ PROPN NNP _ 3 nsubj _ _ 3 added _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 it _ PRON PRP _ 8 nsubj _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 will _ AUX MD _ 8 aux _ _ 8 seek _ VERB VB _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 recover _ VERB VB _ 8 xcomp _ _ 11 equitable _ ADJ JJ _ 12 amod _ _ 12 contribution _ NOUN NN _ 10 dobj _ _ 13 from _ ADP IN _ 14 case _ _ 14 others _ NOUN NNS _ 10 nmod _ _ 15 for _ ADP IN _ 18 case _ _ 16 both _ CONJ CC _ 18 cc:preconj _ _ 17 the _ DET DT _ 18 det _ _ 18 amount _ NOUN NN _ 10 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 settlement _ NOUN NN _ 18 nmod _ _ 22 and _ CONJ CC _ 18 cc _ _ 23 any _ DET DT _ 25 det _ _ 24 other _ ADJ JJ _ 25 amod _ _ 25 liabilities _ NOUN NNS _ 18 conj _ _ 26 it _ PRON PRP _ 28 nsubj _ _ 27 may _ AUX MD _ 28 aux _ _ 28 incur _ VERB VB _ 25 acl:relcl _ _ 29 under _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 Superfund _ PROPN NNP _ 32 compound _ _ 32 law _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 34 '' _ PUNCT '' _ 3 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Gulf _ PROPN NNP _ 7 nsubj _ _ 6 must _ AUX MD _ 7 aux _ _ 7 give _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 U.S. _ PROPN NNP _ 10 compound _ _ 10 government _ NOUN NN _ 7 iobj _ _ 11 45 _ NUM CD _ 16 nummod _ _ 12 days _ NOUN NNS _ 16 nmod:poss _ _ 13 ' _ PART POS _ 16 case _ _ 14 advance _ ADJ JJ _ 16 amod _ _ 15 written _ ADJ JJ _ 16 amod _ _ 16 notice _ NOUN NN _ 7 dobj _ _ 17 before _ SCONJ IN _ 18 mark _ _ 18 issuing _ VERB VBG _ 7 advcl _ _ 19 any _ DET DT _ 20 det _ _ 20 dividends _ NOUN NNS _ 18 dobj _ _ 21 on _ ADP IN _ 23 case _ _ 22 common _ ADJ JJ _ 23 amod _ _ 23 stock _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 net _ ADJ JJ _ 5 amod _ _ 5 worth _ NOUN NN _ 8 nsubj _ _ 6 can _ AUX MD _ 8 aux _ _ 7 not _ PART RB _ 8 neg _ _ 8 fall _ VERB VB _ 0 root _ _ 9 below _ ADP IN _ 10 case _ _ 10 $ _ SYM $ _ 8 nmod _ _ 11 185 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 after _ SCONJ IN _ 17 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 dividends _ NOUN NNS _ 17 nsubjpass _ _ 16 are _ AUX VBP _ 17 auxpass _ _ 17 issued _ VERB VBN _ 8 advcl _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 terms _ NOUN NNS _ 8 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 that _ DET DT _ 6 det _ _ 6 agreement _ NOUN NN _ 3 nmod _ _ 7 only _ ADV RB _ 8 advmod _ _ 8 become _ VERB VBP _ 28 ccomp _ _ 9 effective _ ADJ JJ _ 8 xcomp _ _ 10 the _ DET DT _ 11 det _ _ 11 date _ NOUN NN _ 8 nmod:tmod _ _ 12 of _ ADP IN _ 15 case _ _ 13 Gulf _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 reorganization _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 which _ PRON WDT _ 19 dobj _ _ 18 we _ PRON PRP _ 19 nsubj _ _ 19 anticipate _ VERB VBP _ 11 acl:relcl _ _ 20 will _ AUX MD _ 21 aux _ _ 21 occur _ VERB VB _ 19 ccomp _ _ 22 sometime _ ADV RB _ 21 advmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 early _ ADJ JJ _ 25 amod _ _ 25 1990 _ NUM CD _ 21 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 said _ VERB VBD _ 0 root _ _ 29 Lawrence _ PROPN NNP _ 31 compound _ _ 30 R. _ PROPN NNP _ 31 compound _ _ 31 Mehl _ PROPN NNP _ 28 nsubj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 Gulf _ PROPN NNP _ 36 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 general _ ADJ JJ _ 36 amod _ _ 36 counsel _ NOUN NN _ 31 appos _ _ 37 . _ PUNCT . _ 28 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Gulf _ PROPN NNP _ 6 nsubj _ _ 5 must _ AUX MD _ 6 aux _ _ 6 give _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 government _ NOUN NN _ 6 iobj _ _ 9 20 _ NUM CD _ 14 nummod _ _ 10 days _ NOUN NNS _ 14 nmod:poss _ _ 11 ' _ PART POS _ 14 case _ _ 12 advance _ ADJ JJ _ 14 amod _ _ 13 written _ ADJ JJ _ 14 amod _ _ 14 notice _ NOUN NN _ 6 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 any _ DET DT _ 17 det _ _ 17 loans _ NOUN NNS _ 14 nmod _ _ 18 exceeding _ VERB VBG _ 17 acl _ _ 19 $ _ SYM $ _ 18 dobj _ _ 20 50 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 that _ PRON WDT _ 24 nsubjpass _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 made _ VERB VBN _ 17 acl:relcl _ _ 25 to _ ADP TO _ 29 case _ _ 26 the _ DET DT _ 29 det _ _ 27 Bermuda-based _ ADJ JJ _ 29 amod _ _ 28 holding _ NOUN NN _ 29 compound _ _ 29 company _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 Gulf _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 net _ ADJ JJ _ 4 amod _ _ 4 worth _ NOUN NN _ 12 nsubj _ _ 5 after _ ADP IN _ 7 case _ _ 6 those _ DET DT _ 7 det _ _ 7 transaction _ NOUN NN _ 4 nmod _ _ 8 must _ AUX MD _ 12 aux _ _ 9 be _ VERB VB _ 12 cop _ _ 10 at _ ADP IN _ 11 case _ _ 11 least _ ADJ JJS _ 12 nmod:npmod _ _ 12 $ _ SYM $ _ 0 root _ _ 13 150 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 Separately _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 5 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 hold _ VERB VB _ 7 xcomp _ _ 10 a _ DET DT _ 12 det _ _ 11 special _ ADJ JJ _ 12 amod _ _ 12 meeting _ NOUN NN _ 9 dobj _ _ 13 for _ ADP IN _ 14 case _ _ 14 shareholders _ NOUN NNS _ 12 nmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 early _ ADJ JJ _ 17 amod _ _ 17 1990 _ NUM CD _ 9 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 vote _ VERB VB _ 9 advcl _ _ 20 on _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 proposed _ VERB VBN _ 23 amod _ _ 23 reorganization _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 Many _ ADJ JJ _ 8 nsubj _ _ 2 of _ ADP IN _ 7 case _ _ 3 the _ DET DT _ 4 det _ _ 4 nation _ NOUN NN _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 highest-ranking _ ADJ JJ _ 7 amod _ _ 7 executives _ NOUN NNS _ 1 nmod _ _ 8 saluted _ VERB VBD _ 0 root _ _ 9 Friday _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 market _ NOUN NN _ 12 compound _ _ 12 plunge _ NOUN NN _ 8 dobj _ _ 13 as _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 overdue _ ADJ JJ _ 16 amod _ _ 16 comeuppance _ NOUN NN _ 8 nmod _ _ 17 for _ ADP IN _ 18 case _ _ 18 speculators _ NOUN NNS _ 16 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 takeover _ NOUN NN _ 21 compound _ _ 21 players _ NOUN NNS _ 18 conj _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 Assuming _ VERB VBG _ 16 advcl _ _ 2 that _ SCONJ IN _ 7 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 market _ NOUN NN _ 7 nsubj _ _ 5 does _ AUX VBZ _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 head _ VERB VB _ 1 ccomp _ _ 8 into _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 bottomless _ ADJ JJ _ 12 amod _ _ 11 free _ ADJ JJ _ 12 amod _ _ 12 fall _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 some _ DET DT _ 15 det _ _ 15 executives _ NOUN NNS _ 16 nsubj _ _ 16 think _ VERB VBP _ 0 root _ _ 17 Friday _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 action _ NOUN NN _ 21 nsubj _ _ 20 could _ AUX MD _ 21 aux _ _ 21 prove _ VERB VB _ 16 ccomp _ _ 22 a _ DET DT _ 23 det _ _ 23 harbinger _ NOUN NN _ 21 dobj _ _ 24 of _ ADP IN _ 26 case _ _ 25 good _ ADJ JJ _ 26 amod _ _ 26 news _ NOUN NN _ 23 nmod _ _ 27 -- _ PUNCT : _ 23 punct _ _ 28 as _ ADP IN _ 30 case _ _ 29 a _ DET DT _ 30 det _ _ 30 sign _ NOUN NN _ 23 nmod _ _ 31 that _ SCONJ IN _ 43 mark _ _ 32 the _ DET DT _ 34 det _ _ 33 leveraged _ ADJ JJ _ 34 amod _ _ 34 buy-out _ NOUN NN _ 43 nsubj _ _ 35 and _ CONJ CC _ 34 cc _ _ 36 takeover _ NOUN NN _ 37 compound _ _ 37 frenzy _ NOUN NN _ 34 conj _ _ 38 of _ ADP IN _ 40 case _ _ 39 recent _ ADJ JJ _ 40 amod _ _ 40 years _ NOUN NNS _ 34 nmod _ _ 41 may _ AUX MD _ 43 aux _ _ 42 be _ AUX VB _ 43 aux _ _ 43 abating _ VERB VBG _ 30 ccomp _ _ 44 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 This _ PRON DT _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 reaction _ NOUN NN _ 18 ccomp _ _ 6 to _ ADP TO _ 9 case _ _ 7 artificial _ ADJ JJ _ 9 amod _ _ 8 LBO _ PROPN NNP _ 9 compound _ _ 9 valuations _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 rather _ ADV RB _ 9 cc _ _ 12 than _ ADP IN _ 11 mwe _ _ 13 to _ ADP TO _ 15 case _ _ 14 any _ DET DT _ 15 det _ _ 15 fundamentals _ NOUN NNS _ 9 conj _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 John _ PROPN NNP _ 20 compound _ _ 20 Young _ PROPN NNP _ 18 nsubj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 chairman _ NOUN NN _ 20 appos _ _ 23 of _ ADP IN _ 25 case _ _ 24 Hewlett-Packard _ PROPN NNP _ 25 compound _ _ 25 Co. _ PROPN NNP _ 22 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 whose _ PRON WP$ _ 28 nmod:poss _ _ 28 shares _ NOUN NNS _ 29 nsubj _ _ 29 dropped _ VERB VBD _ 25 acl:relcl _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 3.125 _ NUM CD _ 29 dobj _ _ 32 to _ ADP TO _ 34 case _ _ 33 $ _ SYM $ _ 34 dep _ _ 34 48.125 _ NUM CD _ 29 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 we _ PRON PRP _ 4 nsubj _ _ 4 get _ VERB VBP _ 18 advcl _ _ 5 rid _ ADJ JJ _ 4 xcomp _ _ 6 of _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 lot _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 that _ DET DT _ 11 det _ _ 11 nonsense _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 it _ PRON PRP _ 18 nsubj _ _ 14 will _ AUX MD _ 18 aux _ _ 15 be _ VERB VB _ 18 cop _ _ 16 a _ DET DT _ 18 det _ _ 17 big _ ADJ JJ _ 18 amod _ _ 18 plus _ NOUN NN _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 20 '' _ PUNCT '' _ 18 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 few _ ADJ JJ _ 28 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 executives _ NOUN NNS _ 2 nmod _ _ 6 here _ ADV RB _ 5 advmod _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 fall _ NOUN NN _ 10 compound _ _ 10 meeting _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Business _ PROPN NNP _ 14 compound _ _ 14 Council _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 a _ DET DT _ 17 det _ _ 17 group _ NOUN NN _ 14 appos _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 meets _ VERB VBZ _ 17 acl:relcl _ _ 20 to _ PART TO _ 21 mark _ _ 21 discuss _ VERB VB _ 19 xcomp _ _ 22 national _ ADJ JJ _ 23 amod _ _ 23 issues _ NOUN NNS _ 21 dobj _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 were _ VERB VBD _ 28 cop _ _ 26 only _ ADV RB _ 28 advmod _ _ 27 too _ ADV RB _ 28 advmod _ _ 28 happy _ ADJ JJ _ 0 root _ _ 29 to _ PART TO _ 30 mark _ _ 30 personalize _ VERB VB _ 28 xcomp _ _ 31 their _ PRON PRP$ _ 32 nmod:poss _ _ 32 criticism _ NOUN NN _ 30 dobj _ _ 33 . _ PUNCT . _ 28 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 People _ NOUN NNS _ 3 nsubj _ _ 3 wish _ VERB VBP _ 25 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 government _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 do _ VERB VB _ 3 ccomp _ _ 8 something _ NOUN NN _ 7 dobj _ _ 9 about _ ADP IN _ 11 case _ _ 10 leveraged _ ADJ JJ _ 11 amod _ _ 11 buy-outs _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 do _ VERB VB _ 7 dep _ _ 14 something _ NOUN NN _ 13 dobj _ _ 15 about _ ADP IN _ 16 case _ _ 16 takeovers _ NOUN NNS _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 do _ VERB VB _ 7 dep _ _ 19 something _ NOUN NN _ 18 dobj _ _ 20 about _ ADP IN _ 22 case _ _ 21 Donald _ PROPN NNP _ 22 compound _ _ 22 Trump _ PROPN NNP _ 18 nmod _ _ 23 , _ PUNCT , _ 25 punct _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Rand _ PROPN NNP _ 27 compound _ _ 27 Araskog _ PROPN NNP _ 25 nsubj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 chairman _ NOUN NN _ 27 appos _ _ 30 of _ ADP IN _ 32 case _ _ 31 ITT _ PROPN NNP _ 32 compound _ _ 32 Corp. _ PROPN NNP _ 29 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 whose _ PRON WP$ _ 35 nmod:poss _ _ 35 stock _ NOUN NN _ 36 nsubj _ _ 36 dropped _ VERB VBD _ 32 acl:relcl _ _ 37 $ _ SYM $ _ 38 dep _ _ 38 3.375 _ NUM CD _ 36 dobj _ _ 39 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 Where _ ADV WRB _ 3 advmod _ _ 3 's _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 leadership _ NOUN NN _ 3 dep _ _ 6 ? _ PUNCT . _ 3 punct _ _ 1 Where _ ADV WRB _ 2 advmod _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 guy _ NOUN NN _ 2 dep _ _ 5 who _ PRON WP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 say _ VERB VB _ 4 acl:relcl _ _ 8 : _ PUNCT : _ 7 punct _ _ 9 ` _ PUNCT `` _ 12 punct _ _ 10 Enough _ ADJ JJ _ 12 nsubj _ _ 11 is _ VERB VBZ _ 12 cop _ _ 12 enough _ ADJ JJ _ 7 ccomp _ _ 13 ' _ PUNCT '' _ 12 punct _ _ 14 '' _ PUNCT '' _ 2 punct _ _ 15 ? _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 executives _ NOUN NNS _ 5 nsubj _ _ 3 were _ VERB VBD _ 5 cop _ _ 4 remarkably _ ADV RB _ 5 advmod _ _ 5 unperturbed _ ADJ JJ _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 plunge _ NOUN NN _ 5 nmod _ _ 9 even _ ADV RB _ 12 advmod _ _ 10 though _ SCONJ IN _ 12 mark _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 lopped _ VERB VBD _ 5 advcl _ _ 13 billions _ NOUN NNS _ 12 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 dollars _ NOUN NNS _ 13 nmod _ _ 16 off _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 value _ NOUN NN _ 12 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 their _ PRON PRP$ _ 21 nmod:poss _ _ 21 companies _ NOUN NNS _ 18 nmod _ _ 22 -- _ PUNCT : _ 12 punct _ _ 23 and _ CONJ CC _ 12 cc _ _ 24 millions _ NOUN NNS _ 12 conj _ _ 25 off _ ADP IN _ 28 case _ _ 26 their _ PRON PRP$ _ 28 nmod:poss _ _ 27 personal _ ADJ JJ _ 28 amod _ _ 28 fortunes _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'm _ AUX VBP _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 going _ VERB VBG _ 15 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 worry _ VERB VB _ 5 xcomp _ _ 8 about _ ADP IN _ 12 case _ _ 9 one _ NUM CD _ 10 nummod _ _ 10 day _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 decline _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Kenneth _ PROPN NNP _ 17 compound _ _ 17 Olsen _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Digital _ PROPN NNP _ 22 compound _ _ 20 Equipment _ PROPN NNP _ 22 compound _ _ 21 Corp. _ PROPN NNP _ 22 compound _ _ 22 president _ NOUN NN _ 17 appos _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 who _ PRON WP _ 27 nsubj _ _ 25 was _ AUX VBD _ 27 aux _ _ 26 leisurely _ ADV RB _ 27 advmod _ _ 27 strolling _ VERB VBG _ 17 acl:relcl _ _ 28 through _ ADP IN _ 34 case _ _ 29 the _ DET DT _ 34 det _ _ 30 bright _ ADJ JJ _ 34 amod _ _ 31 orange _ NOUN NN _ 34 amod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 yellow _ ADJ JJ _ 31 conj _ _ 34 leaves _ NOUN NNS _ 27 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 mountains _ NOUN NNS _ 34 nmod _ _ 38 here _ ADV RB _ 37 advmod _ _ 39 after _ SCONJ IN _ 44 mark _ _ 40 his _ PRON PRP$ _ 41 nmod:poss _ _ 41 company _ NOUN NN _ 43 nmod:poss _ _ 42 's _ PART POS _ 41 case _ _ 43 shares _ NOUN NNS _ 44 nsubj _ _ 44 plunged _ VERB VBD _ 27 advcl _ _ 45 $ _ SYM $ _ 46 dep _ _ 46 5.75 _ NUM CD _ 44 dobj _ _ 47 to _ PART TO _ 48 mark _ _ 48 close _ VERB VB _ 44 advcl _ _ 49 at _ ADP IN _ 51 case _ _ 50 $ _ SYM $ _ 51 dep _ _ 51 86.50 _ NUM CD _ 48 nmod _ _ 52 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 bother _ VERB VB _ 0 root _ _ 6 calling _ VERB VBG _ 5 xcomp _ _ 7 anybody _ NOUN NN _ 6 dobj _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 I _ PRON PRP _ 13 nsubj _ _ 10 did _ AUX VBD _ 13 aux _ _ 11 n't _ PART RB _ 13 neg _ _ 12 even _ ADV RB _ 13 advmod _ _ 13 turn _ NOUN NN _ 5 parataxis _ _ 14 on _ ADP RP _ 13 compound:prt _ _ 15 TV _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 5 punct _ _ 17 '' _ PUNCT '' _ 5 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 There _ ADV RB _ 8 nsubj _ _ 3 has _ AUX VBZ _ 8 aux _ _ 4 n't _ PART RB _ 8 neg _ _ 5 been _ VERB VBN _ 8 cop _ _ 6 any _ DET DT _ 8 det _ _ 7 fundamental _ ADJ JJ _ 8 amod _ _ 8 change _ NOUN NN _ 14 ccomp _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 added _ VERB VBD _ 0 root _ _ 15 John _ PROPN NNP _ 16 compound _ _ 16 Smale _ PROPN NNP _ 14 nsubj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 whose _ PRON WP$ _ 23 dobj _ _ 19 Procter _ PROPN NNP _ 22 compound _ _ 20 & _ CONJ CC _ 19 cc _ _ 21 Gamble _ PROPN NNP _ 19 conj _ _ 22 Co. _ PROPN NNP _ 23 nsubj _ _ 23 took _ VERB VBD _ 16 acl:relcl _ _ 24 an _ DET DT _ 27 det _ _ 25 $ _ SYM $ _ 27 amod _ _ 26 8.75 _ NUM CD _ 25 compound _ _ 27 slide _ NOUN NN _ 23 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 close _ VERB VB _ 23 advcl _ _ 30 at _ ADP IN _ 32 case _ _ 31 $ _ SYM $ _ 32 dep _ _ 32 120.75 _ NUM CD _ 29 nmod _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 fact _ NOUN NN _ 15 nsubj _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 this _ PRON DT _ 6 nsubj _ _ 6 happened _ VERB VBD _ 3 ccomp _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 years _ NOUN NNS _ 9 nmod:npmod _ _ 9 ago _ ADV RB _ 6 advmod _ _ 10 and _ CONJ CC _ 6 cc _ _ 11 there _ PRON EX _ 12 expl _ _ 12 was _ VERB VBD _ 6 conj _ _ 13 a _ DET DT _ 14 det _ _ 14 recovery _ NOUN NN _ 12 nsubj _ _ 15 gives _ VERB VBZ _ 0 root _ _ 16 people _ NOUN NNS _ 15 iobj _ _ 17 some _ DET DT _ 18 det _ _ 18 comfort _ NOUN NN _ 15 dobj _ _ 19 that _ SCONJ IN _ 25 mark _ _ 20 this _ PRON DT _ 25 nsubj _ _ 21 wo _ AUX MD _ 25 aux _ _ 22 n't _ PART RB _ 25 neg _ _ 23 be _ VERB VB _ 25 cop _ _ 24 a _ DET DT _ 25 det _ _ 25 problem _ NOUN NN _ 18 ccomp _ _ 26 . _ PUNCT . _ 15 punct _ _ 27 '' _ PUNCT '' _ 15 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 established _ ADJ JJ _ 6 amod _ _ 5 corporate _ ADJ JJ _ 6 amod _ _ 6 managements _ NOUN NNS _ 8 nsubj _ _ 7 often _ ADV RB _ 8 advmod _ _ 8 tend _ VERB VBP _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 applaud _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 setbacks _ NOUN NNS _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 stock _ NOUN NN _ 15 compound _ _ 15 speculators _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 takeover _ NOUN NN _ 18 compound _ _ 18 artists _ NOUN NNS _ 15 conj _ _ 19 . _ PUNCT . _ 8 punct _ _ 1 Indeed _ ADV RB _ 16 advmod _ _ 2 , _ PUNCT , _ 16 punct _ _ 3 one _ NUM CD _ 5 nummod _ _ 4 chief _ ADJ JJ _ 5 amod _ _ 5 executive _ NOUN NN _ 16 nsubj _ _ 6 who _ PRON WP _ 9 nsubj _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 downright _ ADV RB _ 9 advmod _ _ 9 delighted _ ADJ JJ _ 5 acl:relcl _ _ 10 by _ ADP IN _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 events _ NOUN NNS _ 9 nmod _ _ 14 was _ VERB VBD _ 16 cop _ _ 15 Robert _ PROPN NNP _ 16 compound _ _ 16 Crandall _ PROPN NNP _ 0 root _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 chairman _ NOUN NN _ 16 appos _ _ 19 of _ ADP IN _ 21 case _ _ 20 AMR _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 18 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 parent _ NOUN NN _ 21 appos _ _ 25 of _ ADP IN _ 27 case _ _ 26 American _ PROPN NNP _ 27 compound _ _ 27 Airlines _ PROPN NNP _ 24 nmod _ _ 28 and _ CONJ CC _ 18 cc _ _ 29 the _ DET DT _ 30 det _ _ 30 target _ NOUN NN _ 18 conj _ _ 31 of _ ADP IN _ 34 case _ _ 32 a _ DET DT _ 34 det _ _ 33 takeover _ NOUN NN _ 34 compound _ _ 34 offer _ NOUN NN _ 30 nmod _ _ 35 by _ ADP IN _ 37 case _ _ 36 Mr. _ PROPN NNP _ 37 compound _ _ 37 Trump _ PROPN NNP _ 34 nmod _ _ 38 . _ PUNCT . _ 16 punct _ _ 1 Asked _ VERB VBN _ 22 advcl _ _ 2 whether _ SCONJ IN _ 7 mark _ _ 3 Friday _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 action _ NOUN NN _ 7 nsubj _ _ 6 could _ AUX MD _ 7 aux _ _ 7 help _ VERB VB _ 1 ccomp _ _ 8 him _ PRON PRP _ 9 nsubj _ _ 9 avoid _ VERB VB _ 7 ccomp _ _ 10 being _ AUX VBG _ 11 auxpass _ _ 11 Trumped _ VERB VBN _ 9 xcomp _ _ 12 by _ ADP IN _ 18 case _ _ 13 the _ DET DT _ 18 det _ _ 14 New _ PROPN NNP _ 18 compound _ _ 15 York _ PROPN NNP _ 18 compound _ _ 16 real _ ADJ JJ _ 18 amod _ _ 17 estate _ NOUN NN _ 18 compound _ _ 18 magnate _ NOUN NN _ 11 nmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Crandall _ PROPN NNP _ 22 nsubj _ _ 22 smiled _ VERB VBD _ 0 root _ _ 23 broadly _ ADV RB _ 22 advmod _ _ 24 and _ CONJ CC _ 22 cc _ _ 25 said _ VERB VBD _ 22 conj _ _ 26 : _ PUNCT : _ 25 punct _ _ 27 `` _ PUNCT `` _ 25 punct _ _ 28 No _ DET DT _ 29 neg _ _ 29 comment _ NOUN NN _ 25 dep _ _ 30 . _ PUNCT . _ 22 punct _ _ 31 '' _ PUNCT '' _ 22 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 Friday _ PROPN NNP _ 3 compound _ _ 3 morning _ NOUN NN _ 14 nmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 before _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 sell-off _ NOUN NN _ 14 nmod _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 business _ NOUN NN _ 13 compound _ _ 13 leaders _ NOUN NNS _ 14 nsubj _ _ 14 issued _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 16 det _ _ 16 report _ NOUN NN _ 14 dobj _ _ 17 predicting _ VERB VBG _ 16 acl _ _ 18 the _ DET DT _ 19 det _ _ 19 economy _ NOUN NN _ 21 nsubj _ _ 20 would _ AUX MD _ 21 aux _ _ 21 grow _ VERB VB _ 17 ccomp _ _ 22 at _ ADP IN _ 29 case _ _ 23 roughly _ ADV RB _ 29 advmod _ _ 24 an _ DET DT _ 29 det _ _ 25 inflation-adjusted _ ADJ JJ _ 29 amod _ _ 26 2 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 29 amod _ _ 28 annual _ ADJ JJ _ 29 amod _ _ 29 rate _ NOUN NN _ 21 nmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 through _ ADP IN _ 33 case _ _ 32 next _ ADJ JJ _ 33 amod _ _ 33 year _ NOUN NN _ 21 nmod _ _ 34 , _ PUNCT , _ 21 punct _ _ 35 then _ ADV RB _ 36 advmod _ _ 36 accelerate _ VERB VB _ 21 dep _ _ 37 anew _ ADV RB _ 36 advmod _ _ 38 in _ ADP IN _ 39 case _ _ 39 1991 _ NUM CD _ 36 nmod _ _ 40 . _ PUNCT . _ 14 punct _ _ 1 Of _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 19 _ NUM CD _ 4 nummod _ _ 4 economists _ NOUN NNS _ 15 nmod _ _ 5 who _ PRON WP _ 6 nsubj _ _ 6 worked _ VERB VBD _ 4 acl:relcl _ _ 7 on _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 Business _ PROPN NNP _ 11 compound _ _ 10 Council _ PROPN NNP _ 11 compound _ _ 11 forecast _ NOUN NN _ 6 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 only _ ADV RB _ 14 advmod _ _ 14 two _ NUM CD _ 15 nsubj _ _ 15 projected _ VERB VBD _ 47 ccomp _ _ 16 periods _ NOUN NNS _ 15 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 decline _ NOUN NN _ 16 nmod _ _ 19 in _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 21 det _ _ 21 nation _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 output _ NOUN NN _ 18 nmod _ _ 24 over _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 next _ ADJ JJ _ 28 amod _ _ 27 two _ NUM CD _ 28 nummod _ _ 28 years _ NOUN NNS _ 16 nmod _ _ 29 , _ PUNCT , _ 15 punct _ _ 30 and _ CONJ CC _ 15 cc _ _ 31 in _ ADP IN _ 34 case _ _ 32 `` _ PUNCT `` _ 34 punct _ _ 33 both _ DET DT _ 34 det _ _ 34 instances _ NOUN NNS _ 39 nmod _ _ 35 the _ DET DT _ 36 det _ _ 36 declines _ NOUN NNS _ 39 nsubj _ _ 37 are _ VERB VBP _ 39 cop _ _ 38 too _ ADV RB _ 39 advmod _ _ 39 modest _ ADJ JJ _ 15 conj _ _ 40 to _ PART TO _ 41 mark _ _ 41 warrant _ VERB VB _ 39 xcomp _ _ 42 the _ DET DT _ 43 det _ _ 43 phrase _ NOUN NN _ 41 dobj _ _ 44 recession _ NOUN NN _ 43 dep _ _ 45 , _ PUNCT , _ 47 punct _ _ 46 '' _ PUNCT '' _ 47 punct _ _ 47 said _ VERB VBD _ 0 root _ _ 48 Lewis _ PROPN NNP _ 49 compound _ _ 49 Preston _ PROPN NNP _ 47 nsubj _ _ 50 , _ PUNCT , _ 49 punct _ _ 51 chairman _ NOUN NN _ 49 appos _ _ 52 of _ ADP IN _ 54 case _ _ 53 J.P. _ PROPN NNP _ 54 compound _ _ 54 Morgan _ PROPN NNP _ 51 nmod _ _ 55 & _ CONJ CC _ 54 cc _ _ 56 Co. _ PROPN NNP _ 54 conj _ _ 57 and _ CONJ CC _ 51 cc _ _ 58 vice _ NOUN NN _ 59 compound _ _ 59 chairman _ NOUN NN _ 51 conj _ _ 60 of _ ADP IN _ 63 case _ _ 61 the _ DET DT _ 63 det _ _ 62 Business _ PROPN NNP _ 63 compound _ _ 63 Council _ PROPN NNP _ 59 nmod _ _ 64 . _ PUNCT . _ 47 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 real _ ADJ JJ _ 4 amod _ _ 3 estate _ NOUN NN _ 4 compound _ _ 4 slump _ NOUN NN _ 20 nsubj _ _ 5 that _ PRON WDT _ 7 nsubj _ _ 6 's _ AUX VBZ _ 7 aux _ _ 7 pushing _ VERB VBG _ 4 acl:relcl _ _ 8 down _ ADP RP _ 7 advmod _ _ 9 the _ DET DT _ 10 det _ _ 10 price _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 15 case _ _ 12 New _ PROPN NNP _ 15 compound _ _ 13 York _ PROPN NNP _ 15 dep _ _ 14 office _ NOUN NN _ 15 compound _ _ 15 space _ NOUN NN _ 10 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 housing _ NOUN NN _ 15 conj _ _ 18 is _ AUX VBZ _ 20 aux _ _ 19 also _ ADV RB _ 20 advmod _ _ 20 affecting _ VERB VBG _ 0 root _ _ 21 the _ DET DT _ 22 det _ _ 22 city _ NOUN NN _ 27 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 retail _ ADJ JJ _ 27 amod _ _ 25 real _ ADJ JJ _ 27 amod _ _ 26 estate _ NOUN NN _ 27 compound _ _ 27 market _ NOUN NN _ 20 dobj _ _ 28 . _ PUNCT . _ 20 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Manhattan _ PROPN NNP _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 once-desirable _ ADJ JJ _ 6 amod _ _ 5 store _ NOUN NN _ 6 compound _ _ 6 sites _ NOUN NNS _ 7 nsubj _ _ 7 sit _ VERB VBP _ 0 root _ _ 8 vacant _ ADJ JJ _ 7 xcomp _ _ 9 and _ CONJ CC _ 7 cc _ _ 10 newly _ ADV RB _ 11 advmod _ _ 11 constructed _ VERB VBN _ 12 amod _ _ 12 space _ NOUN NN _ 15 nsubj _ _ 13 has _ AUX VBZ _ 15 aux _ _ 14 been _ VERB VBN _ 15 cop _ _ 15 slow _ ADJ JJ _ 7 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 fill _ VERB VB _ 15 xcomp _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Retail _ ADJ JJ _ 4 amod _ _ 2 real _ ADJ JJ _ 4 amod _ _ 3 estate _ NOUN NN _ 4 compound _ _ 4 brokers _ NOUN NNS _ 5 nsubj _ _ 5 say _ VERB VBP _ 0 root _ _ 6 tenants _ NOUN NNS _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 reluctant _ ADJ JJ _ 5 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 sign _ VERB VB _ 8 xcomp _ _ 11 leases _ NOUN NNS _ 10 dobj _ _ 12 because _ ADP IN _ 14 case _ _ 13 of _ ADP IN _ 12 mwe _ _ 14 uncertainty _ NOUN NN _ 8 nmod _ _ 15 about _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 local _ ADJ JJ _ 18 amod _ _ 18 economy _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 turmoil _ NOUN NN _ 14 conj _ _ 21 in _ ADP IN _ 24 case _ _ 22 their _ PRON PRP$ _ 24 nmod:poss _ _ 23 own _ ADJ JJ _ 24 amod _ _ 24 industries _ NOUN NNS _ 20 nmod _ _ 25 and _ CONJ CC _ 14 cc _ _ 26 a _ DET DT _ 27 det _ _ 27 belief _ NOUN NN _ 14 conj _ _ 28 that _ SCONJ IN _ 33 mark _ _ 29 rents _ NOUN NNS _ 33 nsubj _ _ 30 have _ AUX VBP _ 33 aux _ _ 31 not _ PART RB _ 33 neg _ _ 32 yet _ ADV RB _ 33 advmod _ _ 33 hit _ VERB VBN _ 27 ccomp _ _ 34 bottom _ NOUN NN _ 33 dobj _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 12 ccomp _ _ 4 an _ DET DT _ 6 det _ _ 5 unbelievable _ ADJ JJ _ 6 amod _ _ 6 amount _ NOUN NN _ 3 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 space _ NOUN NN _ 6 nmod _ _ 9 available _ ADJ JJ _ 6 amod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 Faith _ PROPN NNP _ 14 compound _ _ 14 Consolo _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 senior _ ADJ JJ _ 18 amod _ _ 17 vice _ NOUN NN _ 18 compound _ _ 18 president _ NOUN NN _ 14 appos _ _ 19 at _ ADP IN _ 24 case _ _ 20 Garrick-Aug _ PROPN NNP _ 24 compound _ _ 21 Associates _ PROPN NNP _ 24 compound _ _ 22 Store _ PROPN NNP _ 24 compound _ _ 23 Leasing _ PROPN NNP _ 24 compound _ _ 24 Inc _ PROPN NNP _ 18 nmod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 are _ VERB VBP _ 0 root _ _ 3 about _ ADV RB _ 4 advmod _ _ 4 2,000 _ NUM CD _ 5 nummod _ _ 5 stores _ NOUN NNS _ 2 nsubj _ _ 6 for _ ADP IN _ 7 case _ _ 7 rent _ NOUN NN _ 5 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 up _ ADV RB _ 2 advmod _ _ 10 from _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 typical _ ADJ JJ _ 14 amod _ _ 14 range _ NOUN NN _ 9 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 1,200 _ NUM CD _ 18 nummod _ _ 17 to _ ADP TO _ 18 dep _ _ 18 1,500 _ NUM CD _ 14 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 further _ ADV RB _ 4 advmod _ _ 4 confuses _ VERB VBZ _ 9 ccomp _ _ 5 retailers _ NOUN NNS _ 4 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 '' _ PUNCT '' _ 9 punct _ _ 8 she _ PRON PRP _ 9 nsubj _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 They _ PRON PRP _ 3 nsubj _ _ 3 wonder _ VERB VBP _ 0 root _ _ 4 should _ AUX MD _ 6 aux _ _ 5 they _ PRON PRP _ 6 nsubj _ _ 6 sign _ VERB VB _ 3 dep _ _ 7 a _ DET DT _ 8 det _ _ 8 lease _ NOUN NN _ 6 dobj _ _ 9 if _ SCONJ IN _ 13 mark _ _ 10 prices _ NOUN NNS _ 13 nsubj _ _ 11 are _ AUX VBP _ 13 aux _ _ 12 still _ ADV RB _ 13 advmod _ _ 13 coming _ VERB VBG _ 6 dep _ _ 14 down _ ADV RB _ 13 advmod _ _ 15 ? _ PUNCT . _ 6 punct _ _ 1 Is _ VERB VBZ _ 5 cop _ _ 2 this _ PRON DT _ 5 nsubj _ _ 3 the _ DET DT _ 5 det _ _ 4 wrong _ ADJ JJ _ 5 amod _ _ 5 time _ NOUN NN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 open _ VERB VB _ 5 acl _ _ 8 a _ DET DT _ 9 det _ _ 9 store _ NOUN NN _ 7 dobj _ _ 10 ? _ PUNCT . _ 5 punct _ _ 1 Who _ PRON WP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 8 mark _ _ 5 be _ VERB VB _ 8 cop _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 space _ NOUN NN _ 3 xcomp _ _ 9 next _ ADP IN _ 10 case _ _ 10 door _ NOUN NN _ 8 advmod _ _ 11 ? _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Ms. _ PROPN NNP _ 5 compound _ _ 5 Consolo _ PROPN NNP _ 6 nsubj _ _ 6 says _ VERB VBZ _ 11 parataxis _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 tenants _ NOUN NNS _ 11 nsubj _ _ 9 usually _ ADV RB _ 11 advmod _ _ 10 can _ AUX MD _ 11 aux _ _ 11 negotiate _ VERB VB _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 pay _ VERB VB _ 11 xcomp _ _ 14 rents _ NOUN NNS _ 13 dobj _ _ 15 that _ PRON WDT _ 19 nsubj _ _ 16 are _ VERB VBP _ 19 cop _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 one-quarter _ NOUN NN _ 19 nmod:npmod _ _ 19 lower _ ADJ JJR _ 14 acl:relcl _ _ 20 than _ ADP IN _ 25 case _ _ 21 landlords _ NOUN NNS _ 25 nmod:poss _ _ 22 ' _ PART POS _ 21 case _ _ 23 initial _ ADJ JJ _ 25 amod _ _ 24 asking _ NOUN NN _ 25 compound _ _ 25 price _ NOUN NN _ 19 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 handful _ NOUN NN _ 22 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 hot _ ADJ JJ _ 6 amod _ _ 5 retail _ ADJ JJ _ 6 amod _ _ 6 locations _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 such _ ADJ JJ _ 12 case _ _ 9 as _ ADP IN _ 8 mwe _ _ 10 the _ DET DT _ 12 det _ _ 11 57th _ PROPN NNP _ 12 compound _ _ 12 Street _ PROPN NNP _ 6 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Madison _ PROPN NNP _ 12 conj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 Fifth _ PROPN NNP _ 18 compound _ _ 17 Avenue _ PROPN NNP _ 18 compound _ _ 18 areas _ NOUN NNS _ 12 conj _ _ 19 , _ PUNCT , _ 6 punct _ _ 20 have _ AUX VBP _ 22 aux _ _ 21 been _ VERB VBN _ 22 cop _ _ 22 able _ ADJ JJ _ 0 root _ _ 23 to _ PART TO _ 24 mark _ _ 24 sustain _ VERB VB _ 22 xcomp _ _ 25 what _ PRON WP _ 27 dobj _ _ 26 many _ DET DT _ 27 nsubj _ _ 27 see _ VERB VBP _ 24 ccomp _ _ 28 as _ ADP IN _ 30 case _ _ 29 astronomical _ ADJ JJ _ 30 amod _ _ 30 rents _ NOUN NNS _ 27 nmod _ _ 31 . _ PUNCT . _ 22 punct _ _ 1 And _ CONJ CC _ 10 cc _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 some _ DET DT _ 5 det _ _ 5 neighborhoods _ NOUN NNS _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 rents _ NOUN NNS _ 10 nsubj _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 merely _ ADV RB _ 10 advmod _ _ 10 hit _ VERB VBN _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 plateau _ NOUN NN _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 on _ ADP IN _ 3 case _ _ 3 average _ NOUN NN _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 Manhattan _ PROPN NNP _ 7 compound _ _ 6 retail _ ADJ JJ _ 7 amod _ _ 7 rents _ NOUN NNS _ 9 nsubj _ _ 8 have _ AUX VBP _ 9 aux _ _ 9 dropped _ VERB VBN _ 23 ccomp _ _ 10 10 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 to _ ADP TO _ 11 dep _ _ 13 15 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 11 dep _ _ 15 in _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 past _ ADJ JJ _ 19 amod _ _ 18 six _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 9 nmod _ _ 20 alone _ ADV RB _ 19 advmod _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 experts _ NOUN NNS _ 23 nsubj _ _ 23 say _ VERB VBP _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 follows _ VERB VBZ _ 0 root _ _ 3 a _ DET DT _ 6 det _ _ 4 more _ ADV RBR _ 5 advmod _ _ 5 subtle _ ADJ JJ _ 6 amod _ _ 6 decline _ NOUN NN _ 2 dobj _ _ 7 in _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 prior _ ADJ JJ _ 11 amod _ _ 10 six _ NUM CD _ 11 nummod _ _ 11 months _ NOUN NNS _ 6 nmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 after _ SCONJ IN _ 17 mark _ _ 14 Manhattan _ PROPN NNP _ 15 compound _ _ 15 rents _ NOUN NNS _ 17 nsubj _ _ 16 had _ AUX VBD _ 17 aux _ _ 17 run _ VERB VBN _ 6 acl _ _ 18 up _ ADP RP _ 17 advmod _ _ 19 rapidly _ ADV RB _ 17 advmod _ _ 20 since _ ADP IN _ 21 case _ _ 21 1986 _ NUM CD _ 17 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 same _ ADJ JJ _ 3 amod _ _ 3 factors _ NOUN NNS _ 10 nsubj _ _ 4 limiting _ VERB VBG _ 3 acl _ _ 5 demand _ NOUN NN _ 4 dobj _ _ 6 for _ ADP IN _ 8 case _ _ 7 office _ NOUN NN _ 8 compound _ _ 8 space _ NOUN NN _ 5 nmod _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 affected _ VERB VBN _ 0 root _ _ 11 retailing _ NOUN NN _ 10 dobj _ _ 12 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 As _ SCONJ IN _ 4 mark _ _ 3 businesses _ NOUN NNS _ 4 nsubj _ _ 4 contract _ VERB VBP _ 17 advcl _ _ 5 or _ CONJ CC _ 4 cc _ _ 6 depart _ VERB VBP _ 4 conj _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 number _ NOUN NN _ 17 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 employees _ NOUN NNS _ 9 nmod _ _ 12 who _ PRON WP _ 14 nsubj _ _ 13 might _ AUX MD _ 14 aux _ _ 14 use _ VERB VB _ 11 acl:relcl _ _ 15 retail _ ADJ JJ _ 16 amod _ _ 16 services _ NOUN NNS _ 14 dobj _ _ 17 shrinks _ VERB VBZ _ 20 ccomp _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 Edward _ PROPN NNP _ 23 compound _ _ 22 A. _ NOUN NN _ 23 compound _ _ 23 Friedman _ PROPN NNP _ 20 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 senior _ ADJ JJ _ 27 amod _ _ 26 vice _ NOUN NN _ 27 compound _ _ 27 president _ NOUN NN _ 23 appos _ _ 28 of _ ADP IN _ 31 case _ _ 29 Helmsley _ PROPN NNP _ 31 compound _ _ 30 Spear _ PROPN NNP _ 31 compound _ _ 31 Inc _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 problems _ NOUN NNS _ 23 nsubj _ _ 5 plaguing _ VERB VBG _ 4 acl _ _ 6 electronics _ NOUN NNS _ 11 compound _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 fur _ NOUN NN _ 6 conj _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 furniture _ NOUN NN _ 6 conj _ _ 11 companies _ NOUN NNS _ 5 dobj _ _ 12 -- _ PUNCT : _ 14 punct _ _ 13 key _ ADJ JJ _ 14 amod _ _ 14 categories _ NOUN NNS _ 11 dep _ _ 15 in _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 local _ ADJ JJ _ 19 amod _ _ 18 retail _ ADJ JJ _ 19 amod _ _ 19 economy _ NOUN NN _ 14 nmod _ _ 20 -- _ PUNCT : _ 14 punct _ _ 21 have _ AUX VBP _ 23 aux _ _ 22 further _ ADV RB _ 23 advmod _ _ 23 deflated _ VERB VBN _ 2 ccomp _ _ 24 the _ DET DT _ 25 det _ _ 25 market _ NOUN NN _ 23 dobj _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 Hardest _ ADJ JJS _ 2 advmod _ _ 2 hit _ NOUN NN _ 0 root _ _ 3 are _ VERB VBP _ 2 dep _ _ 4 what _ PRON WP _ 10 dobj _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 calls _ VERB VBZ _ 2 dep _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 secondary _ ADJ JJ _ 10 amod _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 sites _ NOUN NNS _ 6 xcomp _ _ 11 that _ PRON WDT _ 13 nsubj _ _ 12 primarily _ ADV RB _ 13 advmod _ _ 13 serve _ VERB VBP _ 10 acl:relcl _ _ 14 neighborhood _ NOUN NN _ 15 compound _ _ 15 residents _ NOUN NNS _ 13 dobj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 these _ DET DT _ 3 det _ _ 3 locations _ NOUN NNS _ 13 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Friedman _ PROPN NNP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 13 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 Retailers _ NOUN NNS _ 13 nsubj _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 increasingly _ ADV RB _ 13 advmod _ _ 13 cautious _ ADJ JJ _ 0 root _ _ 14 about _ ADV RB _ 15 advmod _ _ 15 expanding _ VERB VBG _ 13 advcl _ _ 16 and _ CONJ CC _ 13 cc _ _ 17 rents _ NOUN NNS _ 19 nsubj _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 remained _ VERB VBN _ 13 conj _ _ 20 steady _ ADV RB _ 19 xcomp _ _ 21 or _ CONJ CC _ 19 cc _ _ 22 in _ ADP IN _ 24 case _ _ 23 some _ DET DT _ 24 det _ _ 24 cases _ NOUN NNS _ 26 nmod _ _ 25 have _ AUX VBP _ 26 aux _ _ 26 declined _ VERB VBN _ 19 conj _ _ 27 . _ PUNCT . _ 13 punct _ _ 28 '' _ PUNCT '' _ 13 punct _ _ 1 Weakness _ NOUN NN _ 14 nsubj _ _ 2 in _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 restaurant _ NOUN NN _ 5 compound _ _ 5 industry _ NOUN NN _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 is _ AUX VBZ _ 9 aux _ _ 9 leaving _ VERB VBG _ 5 acl:relcl _ _ 10 retail _ ADJ JJ _ 11 amod _ _ 11 space _ NOUN NN _ 12 nsubj _ _ 12 vacant _ ADJ JJ _ 9 xcomp _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 exacerbates _ VERB VBZ _ 0 root _ _ 15 the _ DET DT _ 16 det _ _ 16 problem _ NOUN NN _ 14 dobj _ _ 17 for _ ADP IN _ 18 case _ _ 18 landlords _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 also _ ADV RB _ 5 advmod _ _ 4 no _ DET DT _ 5 neg _ _ 5 comfort _ NOUN NN _ 0 root _ _ 6 to _ ADP TO _ 7 case _ _ 7 landlords _ NOUN NNS _ 5 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 small _ ADJ JJ _ 12 amod _ _ 10 New _ PROPN NNP _ 12 compound _ _ 11 York _ PROPN NNP _ 12 compound _ _ 12 retailers _ NOUN NNS _ 7 conj _ _ 13 when _ ADV WRB _ 28 advmod _ _ 14 the _ DET DT _ 15 det _ _ 15 future _ NOUN NN _ 28 nsubj _ _ 16 of _ ADP IN _ 19 case _ _ 17 larger _ ADJ JJR _ 19 amod _ _ 18 department _ NOUN NN _ 19 compound _ _ 19 stores _ NOUN NNS _ 15 nmod _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 anchor _ VERB VBP _ 19 acl:relcl _ _ 23 retail _ ADJ JJ _ 24 amod _ _ 24 neighborhoods _ NOUN NNS _ 22 dobj _ _ 25 , _ PUNCT , _ 19 punct _ _ 26 are _ VERB VBP _ 28 cop _ _ 27 in _ ADP IN _ 28 case _ _ 28 doubt _ NOUN NN _ 5 advcl _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Hooker _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 14 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 parent _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 7 case _ _ 6 Bonwit _ PROPN NNP _ 7 compound _ _ 7 Teller _ PROPN NNP _ 4 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 B. _ PROPN NNP _ 10 compound _ _ 10 Altman _ PROPN NNP _ 7 conj _ _ 11 's _ PART POS _ 10 case _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 mired _ VERB VBN _ 0 root _ _ 15 in _ ADP IN _ 17 case _ _ 16 bankruptcy _ NOUN NN _ 17 compound _ _ 17 proceedings _ NOUN NNS _ 14 nmod _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 Bloomingdale _ PROPN NNP _ 23 nsubj _ _ 20 's _ PART POS _ 19 case _ _ 21 is _ VERB VBZ _ 23 cop _ _ 22 for _ ADP IN _ 23 case _ _ 23 sale _ NOUN NN _ 14 conj _ _ 24 by _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 owner _ NOUN NN _ 23 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Campeau _ PROPN NNP _ 29 compound _ _ 29 Corp _ PROPN NNP _ 26 appos _ _ 30 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 trend _ NOUN NN _ 7 nsubj _ _ 3 toward _ ADP IN _ 5 case _ _ 4 lower _ ADJ JJR _ 5 amod _ _ 5 rents _ NOUN NNS _ 2 nmod _ _ 6 may _ AUX MD _ 7 aux _ _ 7 seem _ VERB VB _ 0 root _ _ 8 surprising _ ADJ JJ _ 7 xcomp _ _ 9 given _ VERB VBN _ 17 mark _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 some _ DET DT _ 12 det _ _ 12 communities _ NOUN NNS _ 17 nsubj _ _ 13 in _ ADP IN _ 15 case _ _ 14 New _ PROPN NNP _ 15 compound _ _ 15 York _ PROPN NNP _ 12 nmod _ _ 16 are _ AUX VBP _ 17 aux _ _ 17 bemoaning _ VERB VBG _ 7 advcl _ _ 18 the _ DET DT _ 19 det _ _ 19 loss _ NOUN NN _ 17 dobj _ _ 20 of _ ADP IN _ 23 case _ _ 21 favorite _ ADJ JJ _ 23 amod _ _ 22 local _ ADJ JJ _ 23 amod _ _ 23 businesses _ NOUN NNS _ 19 nmod _ _ 24 to _ ADP TO _ 26 case _ _ 25 high _ ADJ JJ _ 26 amod _ _ 26 rents _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 20 cc _ _ 2 , _ PUNCT , _ 20 punct _ _ 3 despite _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 recent _ ADJ JJ _ 6 amod _ _ 6 softening _ NOUN NN _ 20 nmod _ _ 7 , _ PUNCT , _ 20 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 many _ DET DT _ 20 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 these _ DET DT _ 12 det _ _ 12 retailers _ NOUN NNS _ 9 nmod _ _ 13 there _ PRON EX _ 20 expl _ _ 14 's _ AUX VBZ _ 20 auxpass _ _ 15 still _ ADV RB _ 20 advmod _ _ 16 been _ VERB VBN _ 20 cop _ _ 17 too _ ADV RB _ 18 advmod _ _ 18 big _ ADJ JJ _ 20 amod _ _ 19 a _ DET DT _ 20 det _ _ 20 jump _ NOUN NN _ 0 root _ _ 21 from _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 rental _ ADJ JJ _ 24 amod _ _ 24 rates _ NOUN NNS _ 20 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 late _ ADJ JJ _ 28 amod _ _ 28 1970s _ NOUN NNS _ 24 nmod _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 when _ ADV WRB _ 34 advmod _ _ 31 their _ PRON PRP$ _ 32 nmod:poss _ _ 32 leases _ NOUN NNS _ 34 nsubjpass _ _ 33 were _ AUX VBD _ 34 auxpass _ _ 34 signed _ VERB VBN _ 28 acl:relcl _ _ 35 . _ PUNCT . _ 20 punct _ _ 1 Certainly _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 5 det _ _ 4 recent _ ADJ JJ _ 5 amod _ _ 5 drop _ NOUN NN _ 10 nsubj _ _ 6 in _ ADP IN _ 7 case _ _ 7 prices _ NOUN NNS _ 5 nmod _ _ 8 does _ AUX VBZ _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 mean _ VERB VB _ 0 root _ _ 11 Manhattan _ PROPN NNP _ 12 nsubj _ _ 12 comes _ VERB VBZ _ 10 ccomp _ _ 13 cheap _ ADJ JJ _ 12 xcomp _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 New _ PROPN NNP _ 4 compound _ _ 2 York _ PROPN NNP _ 4 compound _ _ 3 retail _ ADJ JJ _ 4 amod _ _ 4 rents _ NOUN NNS _ 6 nsubj _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 run _ VERB VBP _ 0 root _ _ 7 well _ ADV RB _ 11 advmod _ _ 8 above _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 going _ ADJ JJ _ 11 amod _ _ 11 rate _ NOUN NN _ 6 nmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 other _ ADJ JJ _ 15 amod _ _ 14 U.S. _ PROPN NNP _ 15 compound _ _ 15 cities _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 Madison _ PROPN NNP _ 4 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Fifth _ PROPN NNP _ 1 conj _ _ 4 Avenues _ PROPN NNP _ 10 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 East _ PROPN NNP _ 8 compound _ _ 7 57th _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 4 conj _ _ 9 can _ AUX MD _ 10 aux _ _ 10 command _ VERB VB _ 0 root _ _ 11 rents _ NOUN NNS _ 10 dobj _ _ 12 of _ ADP IN _ 15 case _ _ 13 up _ ADV RB _ 15 advmod _ _ 14 to _ ADP TO _ 15 dep _ _ 15 $ _ SYM $ _ 11 nmod _ _ 16 500 _ NUM CD _ 15 nummod _ _ 17 a _ DET DT _ 19 det _ _ 18 square _ ADJ JJ _ 19 amod _ _ 19 foot _ NOUN NN _ 15 nmod:npmod _ _ 20 , _ PUNCT , _ 10 punct _ _ 21 and _ CONJ CC _ 10 cc _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 250 _ NUM CD _ 26 nsubj _ _ 24 is _ VERB VBZ _ 26 cop _ _ 25 not _ ADV RB _ 26 neg _ _ 26 uncommon _ ADJ JJ _ 10 conj _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 thriving _ VERB VBG _ 5 amod _ _ 3 34th _ PROPN NNP _ 5 compound _ _ 4 Street _ PROPN NNP _ 5 compound _ _ 5 area _ NOUN NN _ 6 nsubj _ _ 6 offers _ VERB VBZ _ 0 root _ _ 7 rents _ NOUN NNS _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 $ _ SYM $ _ 7 nmod _ _ 11 100 _ NUM CD _ 10 nummod _ _ 12 a _ DET DT _ 14 det _ _ 13 square _ ADJ JJ _ 14 amod _ _ 14 foot _ NOUN NN _ 10 nmod:npmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 as _ SCONJ IN _ 17 dep _ _ 17 do _ VERB VB _ 6 advcl _ _ 18 up-and-coming _ ADJ JJ _ 19 amod _ _ 19 locations _ NOUN NNS _ 17 nsubj _ _ 20 along _ ADP IN _ 23 case _ _ 21 lower _ ADJ JJR _ 23 amod _ _ 22 Fifth _ PROPN NNP _ 23 compound _ _ 23 Avenue _ PROPN NNP _ 19 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 contrast _ NOUN NN _ 18 nmod _ _ 3 , _ PUNCT , _ 18 punct _ _ 4 rentals _ NOUN NNS _ 18 nsubj _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 best _ ADJ JJS _ 9 amod _ _ 8 retail _ ADJ JJ _ 9 amod _ _ 9 locations _ NOUN NNS _ 4 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Boston _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 San _ PROPN NNP _ 14 compound _ _ 14 Francisco _ PROPN NNP _ 11 conj _ _ 15 and _ CONJ CC _ 11 cc _ _ 16 Chicago _ PROPN NNP _ 11 conj _ _ 17 rarely _ ADV RB _ 18 advmod _ _ 18 top _ VERB VBP _ 0 root _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 100 _ NUM CD _ 18 dobj _ _ 21 a _ DET DT _ 23 det _ _ 22 square _ ADJ JJ _ 23 amod _ _ 23 foot _ NOUN NN _ 20 nmod:npmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 And _ CONJ CC _ 12 cc _ _ 2 rents _ NOUN NNS _ 12 nsubj _ _ 3 on _ ADP IN _ 8 case _ _ 4 Beverly _ PROPN NNP _ 5 compound _ _ 5 Hills _ PROPN NNP _ 8 nmod:poss _ _ 6 ' _ PART POS _ 5 case _ _ 7 Rodeo _ PROPN NNP _ 8 compound _ _ 8 Drive _ PROPN NNP _ 2 nmod _ _ 9 generally _ ADV RB _ 12 advmod _ _ 10 do _ AUX VBP _ 12 aux _ _ 11 n't _ PART RB _ 12 neg _ _ 12 exceed _ VERB VB _ 0 root _ _ 13 about _ ADV RB _ 15 advmod _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 125 _ NUM CD _ 12 dobj _ _ 16 a _ DET DT _ 18 det _ _ 17 square _ ADJ JJ _ 18 amod _ _ 18 foot _ NOUN NN _ 15 nmod:npmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 New _ PROPN NNP _ 5 compound _ _ 3 York _ PROPN NNP _ 5 compound _ _ 4 Stock _ PROPN NNP _ 5 compound _ _ 5 Exchange _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 two _ NUM CD _ 8 nummod _ _ 8 securities _ NOUN NNS _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 begin _ VERB VB _ 6 ccomp _ _ 11 trading _ VERB VBG _ 10 xcomp _ _ 12 this _ DET DT _ 13 det _ _ 13 week _ NOUN NN _ 10 nmod:tmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 Precision _ PROPN NNP _ 3 compound _ _ 2 Castparts _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Portland _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Ore. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 begin _ VERB VB _ 0 root _ _ 11 trading _ VERB VBG _ 10 xcomp _ _ 12 with _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 symbol _ NOUN NN _ 11 nmod _ _ 15 PCP _ PROPN NNP _ 14 appos _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 makes _ VERB VBZ _ 0 root _ _ 3 investment _ NOUN NN _ 4 compound _ _ 4 castings _ NOUN NNS _ 2 dobj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 traded _ VERB VBN _ 2 conj _ _ 8 over-the-counter _ ADV RB _ 7 xcomp _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Royal _ PROPN NNP _ 2 compound _ _ 2 Bank _ PROPN NNP _ 18 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 Scotland _ PROPN NNP _ 6 compound _ _ 5 Group _ PROPN NNP _ 6 compound _ _ 6 PLC _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 an _ DET DT _ 15 det _ _ 9 Edinburgh _ PROPN NNP _ 15 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Scotland _ PROPN NNP _ 9 dep _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 financial _ ADJ JJ _ 15 amod _ _ 14 services _ NOUN NNS _ 15 compound _ _ 15 company _ NOUN NN _ 2 appos _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 will _ AUX MD _ 18 aux _ _ 18 list _ VERB VB _ 0 root _ _ 19 American _ ADJ JJ _ 21 amod _ _ 20 depositary _ ADJ JJ _ 21 amod _ _ 21 shares _ NOUN NNS _ 18 dobj _ _ 22 , _ PUNCT , _ 18 punct _ _ 23 representing _ VERB VBG _ 18 advcl _ _ 24 preferred _ ADJ JJ _ 25 amod _ _ 25 shares _ NOUN NNS _ 23 dobj _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 with _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 symbol _ NOUN NN _ 23 nmod _ _ 30 RBSPr _ PROPN NNP _ 29 appos _ _ 31 . _ PUNCT . _ 18 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 continue _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 trade _ VERB VB _ 3 xcomp _ _ 6 on _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 International _ PROPN NNP _ 10 compound _ _ 9 Stock _ PROPN NNP _ 10 compound _ _ 10 Exchange _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 London _ PROPN NNP _ 10 appos _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 American _ PROPN NNP _ 4 compound _ _ 3 Stock _ PROPN NNP _ 4 compound _ _ 4 Exchange _ PROPN NNP _ 5 nsubj _ _ 5 listed _ VERB VBD _ 0 root _ _ 6 shares _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 companies _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 AIM _ PROPN NNP _ 3 compound _ _ 2 Telephones _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 15 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 a _ DET DT _ 13 det _ _ 6 Parsippany _ PROPN NNP _ 13 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 N.J. _ PROPN NNP _ 6 dep _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 telecommunications _ NOUN NNS _ 13 compound _ _ 11 equipment _ NOUN NN _ 13 compound _ _ 12 supply _ NOUN NN _ 13 compound _ _ 13 company _ NOUN NN _ 3 appos _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 started _ VERB VBD _ 0 root _ _ 16 trading _ VERB VBG _ 15 xcomp _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 symbol _ NOUN NN _ 16 nmod _ _ 20 AIM _ PROPN NNP _ 19 appos _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 had _ AUX VBD _ 3 aux _ _ 3 traded _ VERB VBN _ 0 root _ _ 4 over-the-counter _ ADV RB _ 3 xcomp _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 Columbia _ PROPN NNP _ 3 compound _ _ 2 Laboratories _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 7 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Miami _ PROPN NNP _ 3 appos _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 began _ VERB VBD _ 0 root _ _ 8 trading _ VERB VBG _ 7 xcomp _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 symbol _ NOUN NN _ 8 nmod _ _ 12 COB _ PROPN NNP _ 11 appos _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 pharmaceuticals _ NOUN NNS _ 3 compound _ _ 3 maker _ NOUN NN _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 traded _ VERB VBN _ 0 root _ _ 6 over-the-counter _ ADV RB _ 5 xcomp _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 National _ PROPN NNP _ 4 compound _ _ 3 Market _ PROPN NNP _ 4 compound _ _ 4 System _ PROPN NNP _ 10 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 Nasdaq _ PROPN NNP _ 9 compound _ _ 8 over-the-counter _ ADJ JJ _ 9 amod _ _ 9 market _ NOUN NN _ 4 nmod _ _ 10 listed _ VERB VBD _ 0 root _ _ 11 shares _ NOUN NNS _ 10 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 one _ NUM CD _ 14 nummod _ _ 14 company _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 Employee _ PROPN NNP _ 4 compound _ _ 2 Benefit _ PROPN NNP _ 4 compound _ _ 3 Plans _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 13 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 a _ DET DT _ 10 det _ _ 7 Minneapolis _ NOUN NNS _ 10 compound _ _ 8 health-care _ NOUN NN _ 10 compound _ _ 9 services _ NOUN NNS _ 10 compound _ _ 10 company _ NOUN NN _ 4 appos _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 listed _ VERB VBN _ 0 root _ _ 14 with _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 symbol _ NOUN NN _ 13 nmod _ _ 17 EBPI _ PROPN NNP _ 16 appos _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 Justice _ PROPN NNP _ 4 compound _ _ 3 William _ PROPN NNP _ 4 compound _ _ 4 Brennan _ PROPN NNP _ 5 nsubj _ _ 5 marks _ VERB VBZ _ 21 advcl _ _ 6 the _ DET DT _ 7 det _ _ 7 start _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 his _ PRON PRP$ _ 11 nmod:poss _ _ 10 34th _ ADJ JJ _ 11 amod _ _ 11 year _ NOUN NN _ 7 nmod _ _ 12 on _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 Supreme _ PROPN NNP _ 15 compound _ _ 15 Court _ PROPN NNP _ 11 nmod _ _ 16 today _ NOUN NN _ 5 nmod:tmod _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 occasion _ NOUN NN _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 differ _ VERB VB _ 0 root _ _ 22 sharply _ ADV RB _ 21 advmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 previous _ ADJ JJ _ 25 amod _ _ 25 anniversaries _ NOUN NNS _ 21 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 his _ PRON PRP$ _ 28 nmod:poss _ _ 28 tenure _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 21 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 first _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 83-year-old _ ADJ JJ _ 8 amod _ _ 8 justice _ NOUN NN _ 9 nsubj _ _ 9 finds _ VERB VBZ _ 0 root _ _ 10 his _ PRON PRP$ _ 11 nmod:poss _ _ 11 influence _ NOUN NN _ 9 dobj _ _ 12 almost _ ADV RB _ 13 advmod _ _ 13 exclusively _ ADV RB _ 15 advmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 dissent _ NOUN NN _ 9 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 rather _ ADV RB _ 15 cc _ _ 18 than _ ADP IN _ 17 mwe _ _ 19 as _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 force _ NOUN NN _ 15 conj _ _ 22 in _ ADP IN _ 27 case _ _ 23 the _ DET DT _ 25 det _ _ 24 high _ ADJ JJ _ 25 amod _ _ 25 court _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 majority _ NOUN NN _ 21 nmod _ _ 28 . _ PUNCT . _ 9 punct _ _ 1 This _ DET DT _ 3 det _ _ 2 role _ NOUN NN _ 3 compound _ _ 3 reversal _ NOUN NN _ 4 nsubj _ _ 4 holds _ VERB VBZ _ 0 root _ _ 5 true _ ADJ JJ _ 4 xcomp _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 as _ ADP IN _ 8 case _ _ 8 well _ ADV RB _ 4 advmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 for _ ADP IN _ 16 case _ _ 11 his _ PRON PRP$ _ 16 nmod:poss _ _ 12 three _ NUM CD _ 16 nummod _ _ 13 liberal _ ADJ JJ _ 16 amod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 moderate _ ADJ JJ _ 13 conj _ _ 16 allies _ NOUN NNS _ 4 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Justices _ PROPN NNP _ 23 compound _ _ 19 Thurgood _ PROPN NNP _ 23 compound _ _ 20 Marshall _ PROPN NNP _ 23 compound _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 Harry _ PROPN NNP _ 23 appos _ _ 23 Blackmun _ PROPN NNP _ 16 appos _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 John _ PROPN NNP _ 26 compound _ _ 26 Stevens _ PROPN NNP _ 23 conj _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 are _ VERB VBP _ 14 cop _ _ 3 these _ DET DT _ 5 det _ _ 4 four _ NUM CD _ 5 nummod _ _ 5 players _ NOUN NNS _ 14 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 three _ NUM CD _ 5 appos _ _ 8 of _ ADP IN _ 9 case _ _ 9 them _ PRON PRP _ 7 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 their _ PRON PRP$ _ 12 nmod:poss _ _ 12 80s _ NOUN NNS _ 7 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 ready _ ADJ JJ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 assume _ VERB VB _ 14 xcomp _ _ 17 a _ DET DT _ 19 det _ _ 18 different _ ADJ JJ _ 19 amod _ _ 19 role _ NOUN NN _ 16 dobj _ _ 20 after _ ADP IN _ 22 case _ _ 21 88 _ NUM CD _ 22 nummod _ _ 22 years _ NOUN NNS _ 16 nmod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 collectively _ ADV RB _ 22 advmod _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 of _ ADP IN _ 27 case _ _ 27 service _ NOUN NN _ 22 nmod _ _ 28 on _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 high _ ADJ JJ _ 31 amod _ _ 31 court _ NOUN NN _ 22 nmod _ _ 32 ? _ PUNCT . _ 14 punct _ _ 1 Every _ DET DT _ 2 det _ _ 2 indication _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 four _ NUM CD _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 prepared _ ADJ JJ _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 accept _ VERB VB _ 8 xcomp _ _ 11 this _ DET DT _ 13 det _ _ 12 new _ ADJ JJ _ 13 amod _ _ 13 role _ NOUN NN _ 10 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 frustrations _ NOUN NNS _ 13 conj _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 go _ VERB VBP _ 17 acl:relcl _ _ 20 with _ ADP IN _ 21 case _ _ 21 it _ PRON PRP _ 19 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 in _ ADP IN _ 26 case _ _ 25 different _ ADJ JJ _ 26 amod _ _ 26 ways _ NOUN NNS _ 10 conj _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Justices _ PROPN NNPS _ 2 compound _ _ 2 Brennan _ PROPN NNP _ 5 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Stevens _ PROPN NNP _ 2 conj _ _ 5 appear _ VERB VBP _ 0 root _ _ 6 philosophical _ ADJ JJ _ 5 xcomp _ _ 7 about _ ADP IN _ 8 case _ _ 8 it _ PRON PRP _ 6 nmod _ _ 9 ; _ PUNCT : _ 5 punct _ _ 10 Justices _ PROPN NNPS _ 11 compound _ _ 11 Marshall _ PROPN NNP _ 14 nsubj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Blackmun _ PROPN NNP _ 11 conj _ _ 14 appear _ VERB VBP _ 5 parataxis _ _ 15 fighting _ NOUN NN _ 16 nmod:npmod _ _ 16 mad _ ADJ JJ _ 14 xcomp _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 four _ NUM CD _ 3 nummod _ _ 3 justices _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 no _ DET DT _ 6 neg _ _ 6 newcomers _ NOUN NNS _ 0 root _ _ 7 to _ ADP TO _ 8 case _ _ 8 dissent _ NOUN NN _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 often _ ADV RB _ 11 advmod _ _ 11 joining _ VERB VBG _ 6 advcl _ _ 12 forces _ NOUN NNS _ 11 dobj _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 past _ ADJ JJ _ 16 amod _ _ 16 decade _ NOUN NN _ 11 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 criticize _ VERB VB _ 11 advcl _ _ 19 the _ DET DT _ 20 det _ _ 20 court _ NOUN NN _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 conservative _ ADJ JJ _ 23 amod _ _ 23 drift _ NOUN NN _ 18 dobj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 always _ ADV RB _ 10 advmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 in _ ADP IN _ 5 case _ _ 5 years _ NOUN NNS _ 10 nmod _ _ 6 past _ ADJ JJ _ 5 amod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 they _ PRON PRP _ 10 nsubj _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 bucked _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 trend _ NOUN NN _ 10 dobj _ _ 13 and _ CONJ CC _ 10 cc _ _ 14 have _ AUX VBP _ 16 aux _ _ 15 been _ VERB VBP _ 16 cop _ _ 16 able _ ADJ JJ _ 10 conj _ _ 17 to _ PART TO _ 18 mark _ _ 18 pick _ VERB VB _ 16 xcomp _ _ 19 up _ ADP RP _ 18 compound:prt _ _ 20 a _ DET DT _ 22 det _ _ 21 fifth _ ADJ JJ _ 22 amod _ _ 22 vote _ NOUN NN _ 18 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 eke _ VERB VB _ 18 advcl _ _ 25 out _ ADP RP _ 24 compound:prt _ _ 26 a _ DET DT _ 27 det _ _ 27 number _ NOUN NN _ 24 dobj _ _ 28 of _ ADP IN _ 30 case _ _ 29 major _ ADJ JJ _ 30 amod _ _ 30 victories _ NOUN NNS _ 27 nmod _ _ 31 in _ ADP IN _ 33 case _ _ 32 civil _ ADJ JJ _ 33 amod _ _ 33 rights _ NOUN NNS _ 30 nmod _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 liberties _ NOUN NNS _ 36 compound _ _ 36 cases _ NOUN NNS _ 33 conj _ _ 37 . _ PUNCT . _ 10 punct _ _ 1 Now _ ADV RB _ 22 advmod _ _ 2 , _ PUNCT , _ 22 punct _ _ 3 however _ ADV RB _ 22 advmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 as _ SCONJ IN _ 13 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 court _ NOUN NN _ 12 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 new _ ADJ JJ _ 12 amod _ _ 10 five-member _ ADJ JJ _ 12 amod _ _ 11 conservative _ ADJ JJ _ 12 amod _ _ 12 majority _ NOUN NN _ 13 nsubj _ _ 13 continues _ VERB VBZ _ 22 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 solidify _ VERB VB _ 13 xcomp _ _ 16 , _ PUNCT , _ 22 punct _ _ 17 victories _ NOUN NNS _ 22 nsubj _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 liberals _ NOUN NNS _ 17 nmod _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 rare _ ADJ JJ _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 change _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 most _ ADV RBS _ 5 advmod _ _ 5 dramatic _ ADJ JJ _ 0 root _ _ 6 for _ ADP IN _ 8 case _ _ 7 Justice _ PROPN NNP _ 8 compound _ _ 8 Brennan _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 survivor _ NOUN NN _ 8 appos _ _ 13 of _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 mid-1960s _ NOUN NNS _ 17 compound _ _ 16 liberal _ ADJ JJ _ 17 amod _ _ 17 majority _ NOUN NN _ 12 nmod _ _ 18 under _ ADP IN _ 22 case _ _ 19 Chief _ PROPN NNP _ 22 compound _ _ 20 Justice _ PROPN NNP _ 22 compound _ _ 21 Earl _ PROPN NNP _ 22 compound _ _ 22 Warren _ PROPN NNP _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 the _ DET DT _ 6 det _ _ 3 seven _ NUM CD _ 6 nummod _ _ 4 Supreme _ PROPN NNP _ 6 compound _ _ 5 Court _ PROPN NNP _ 6 compound _ _ 6 terms _ NOUN NNS _ 29 nmod _ _ 7 from _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 fall _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 1962 _ NUM CD _ 9 nmod _ _ 12 through _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 spring _ NOUN NN _ 9 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 1967 _ NUM CD _ 14 nmod _ _ 17 , _ PUNCT , _ 6 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 height _ NOUN NN _ 6 appos _ _ 20 of _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 23 det _ _ 22 Warren _ PROPN NNP _ 23 compound _ _ 23 Court _ PROPN NNP _ 25 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 power _ NOUN NN _ 19 nmod _ _ 26 , _ PUNCT , _ 6 punct _ _ 27 Justice _ PROPN NNP _ 28 compound _ _ 28 Brennan _ PROPN NNP _ 29 nsubj _ _ 29 cast _ VERB VBD _ 0 root _ _ 30 only _ ADV RB _ 31 advmod _ _ 31 25 _ NUM CD _ 33 nummod _ _ 32 dissenting _ ADJ JJ _ 33 amod _ _ 33 votes _ NOUN NNS _ 29 dobj _ _ 34 in _ ADP IN _ 36 case _ _ 35 555 _ NUM CD _ 36 nummod _ _ 36 cases _ NOUN NNS _ 29 nmod _ _ 37 decided _ VERB VBN _ 36 acl _ _ 38 by _ ADP IN _ 40 case _ _ 39 the _ DET DT _ 40 det _ _ 40 court _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 29 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 term _ NOUN NN _ 5 nmod:tmod _ _ 3 alone _ ADV RB _ 2 advmod _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 cast _ VERB VBD _ 0 root _ _ 6 52 _ NUM CD _ 8 nummod _ _ 7 dissenting _ ADJ JJ _ 8 amod _ _ 8 votes _ NOUN NNS _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 133 _ NUM CD _ 11 nummod _ _ 11 decisions _ NOUN NNS _ 5 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 with _ ADP IN _ 17 case _ _ 14 the _ DET DT _ 17 det _ _ 15 contentious _ ADJ JJ _ 17 amod _ _ 16 flag-burning _ NOUN NN _ 17 compound _ _ 17 ruling _ NOUN NN _ 5 nmod _ _ 18 as _ ADP IN _ 22 case _ _ 19 his _ PRON PRP$ _ 22 nmod:poss _ _ 20 only _ ADJ JJ _ 22 amod _ _ 21 big _ ADJ JJ _ 22 amod _ _ 22 victory _ NOUN NN _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Justice _ PROPN NNP _ 3 compound _ _ 3 Brennan _ PROPN NNP _ 4 nsubj _ _ 4 foresaw _ VERB VBD _ 0 root _ _ 5 his _ PRON PRP$ _ 7 nmod:poss _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 role _ NOUN NN _ 4 dobj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 strongly _ ADV RB _ 10 advmod _ _ 10 defending _ VERB VBG _ 4 advcl _ _ 11 the _ DET DT _ 12 det _ _ 12 importance _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 14 case _ _ 14 dissents _ NOUN NNS _ 12 nmod _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 1985 _ NUM CD _ 18 nummod _ _ 18 speech _ NOUN NN _ 10 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 Each _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 14 nmod:tmod _ _ 4 the _ DET DT _ 5 det _ _ 5 court _ NOUN NN _ 6 nsubj _ _ 6 revisits _ VERB VBZ _ 3 acl:relcl _ _ 7 an _ DET DT _ 8 det _ _ 8 issue _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 justices _ NOUN NNS _ 14 nsubjpass _ _ 12 will _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 forced _ VERB VBN _ 31 ccomp _ _ 15 by _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 dissent _ NOUN NN _ 14 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 reconsider _ VERB VB _ 14 ccomp _ _ 20 the _ DET DT _ 22 det _ _ 21 fundamental _ ADJ JJ _ 22 amod _ _ 22 questions _ NOUN NNS _ 19 dobj _ _ 23 and _ CONJ CC _ 19 cc _ _ 24 to _ PART TO _ 25 mark _ _ 25 rethink _ VERB VB _ 19 conj _ _ 26 the _ DET DT _ 27 det _ _ 27 result _ NOUN NN _ 25 dobj _ _ 28 , _ PUNCT , _ 31 punct _ _ 29 '' _ PUNCT '' _ 31 punct _ _ 30 he _ PRON PRP _ 31 nsubj _ _ 31 said _ VERB VBD _ 0 root _ _ 32 . _ PUNCT . _ 31 punct _ _ 1 Moreover _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 recent _ ADJ JJ _ 5 amod _ _ 5 months _ NOUN NNS _ 8 nmod _ _ 6 he _ PRON PRP _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 said _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 22 mark _ _ 10 when _ ADV WRB _ 16 advmod _ _ 11 he _ PRON PRP _ 16 nsubj _ _ 12 was _ VERB VBD _ 16 cop _ _ 13 on _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 winning _ VERB VBG _ 16 amod _ _ 16 side _ NOUN NN _ 22 advcl _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 1960s _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 22 punct _ _ 21 he _ PRON PRP _ 22 nsubj _ _ 22 knew _ VERB VBD _ 8 ccomp _ _ 23 that _ SCONJ IN _ 27 mark _ _ 24 the _ DET DT _ 25 det _ _ 25 tables _ NOUN NNS _ 27 nsubj _ _ 26 might _ AUX MD _ 27 aux _ _ 27 turn _ VERB VB _ 22 ccomp _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 future _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 he _ PRON PRP _ 7 nsubj _ _ 6 now _ ADV RB _ 7 advmod _ _ 7 knows _ VERB VBZ _ 3 ccomp _ _ 8 how _ ADV WRB _ 12 advmod _ _ 9 Justice _ PROPN NNP _ 11 compound _ _ 10 John _ PROPN NNP _ 11 compound _ _ 11 Harlan _ PROPN NNP _ 12 nsubj _ _ 12 felt _ VERB VBD _ 7 ccomp _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 reference _ NOUN NN _ 3 nmod:npmod _ _ 16 to _ ADP TO _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 late _ ADJ JJ _ 20 amod _ _ 19 conservative _ ADJ JJ _ 20 amod _ _ 20 justice _ NOUN NN _ 15 nmod _ _ 21 who _ PRON WP _ 26 nsubj _ _ 22 was _ VERB VBD _ 26 cop _ _ 23 the _ DET DT _ 26 det _ _ 24 most _ ADV RBS _ 25 advmod _ _ 25 frequent _ ADJ JJ _ 26 amod _ _ 26 dissenter _ NOUN NN _ 20 acl:relcl _ _ 27 from _ ADP IN _ 32 case _ _ 28 the _ DET DT _ 30 det _ _ 29 Warren _ PROPN NNP _ 30 compound _ _ 30 Court _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 opinions _ NOUN NNS _ 26 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 Associates _ NOUN NNS _ 6 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 81-year-old _ ADJ JJ _ 5 amod _ _ 4 Justice _ PROPN NNP _ 5 compound _ _ 5 Marshall _ PROPN NNP _ 1 nmod _ _ 6 say _ VERB VB _ 0 root _ _ 7 he _ PRON PRP _ 10 nsubj _ _ 8 was _ VERB VBD _ 10 cop _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 depressed _ ADJ JJ _ 6 ccomp _ _ 11 '' _ PUNCT '' _ 10 punct _ _ 12 about _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 14 det _ _ 14 court _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 direction _ NOUN NN _ 10 nmod _ _ 17 last _ ADJ JJ _ 18 amod _ _ 18 spring _ NOUN NN _ 10 nmod:tmod _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 but _ CONJ CC _ 10 cc _ _ 21 is _ VERB VBZ _ 22 cop _ _ 22 feisty _ ADJ JJ _ 10 conj _ _ 23 about _ ADP IN _ 25 case _ _ 24 his _ PRON PRP$ _ 25 nmod:poss _ _ 25 role _ NOUN NN _ 22 nmod _ _ 26 and _ CONJ CC _ 22 cc _ _ 27 determined _ ADJ JJ _ 22 conj _ _ 28 to _ PART TO _ 29 mark _ _ 29 speak _ VERB VB _ 27 xcomp _ _ 30 out _ ADP RP _ 29 compound:prt _ _ 31 against _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 33 det _ _ 33 court _ NOUN NN _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 cutbacks _ NOUN NNS _ 29 nmod _ _ 36 in _ ADP IN _ 38 case _ _ 37 civil _ ADJ JJ _ 38 amod _ _ 38 rights _ NOUN NNS _ 35 nmod _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 could _ AUX MD _ 4 aux _ _ 4 sweep _ VERB VB _ 24 ccomp _ _ 5 it _ PRON PRP _ 4 dobj _ _ 6 under _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 rug _ NOUN NN _ 4 nmod _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 hide _ VERB VB _ 4 conj _ _ 11 it _ PRON PRP _ 10 dobj _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 but _ CONJ CC _ 4 cc _ _ 14 I _ PRON PRP _ 17 nsubj _ _ 15 'm _ AUX VBP _ 17 aux _ _ 16 not _ PART RB _ 17 neg _ _ 17 going _ VERB VBG _ 4 conj _ _ 18 to _ PART TO _ 19 mark _ _ 19 do _ VERB VB _ 17 xcomp _ _ 20 it _ PRON PRP _ 19 dobj _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 '' _ PUNCT '' _ 24 punct _ _ 23 he _ PRON PRP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 in _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 speech _ NOUN NN _ 24 nmod _ _ 28 last _ ADJ JJ _ 29 amod _ _ 29 month _ NOUN NN _ 24 nmod:tmod _ _ 30 . _ PUNCT . _ 24 punct _ _ 1 He _ PRON PRP _ 7 nsubj _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 like _ ADP IN _ 5 case _ _ 4 Justice _ PROPN NNP _ 5 compound _ _ 5 Brennan _ PROPN NNP _ 7 ccomp _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 considers _ VERB VBZ _ 0 root _ _ 8 dissents _ NOUN NNS _ 10 nsubj _ _ 9 highly _ ADV RB _ 10 advmod _ _ 10 important _ ADJ JJ _ 7 xcomp _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 future _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 point _ NOUN NN _ 7 nmod:npmod _ _ 17 that _ DET DT _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 escaped _ VERB VBN _ 16 acl:relcl _ _ 21 legal _ ADJ JJ _ 22 amod _ _ 22 scholars _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 Harvard _ PROPN NNP _ 6 compound _ _ 2 Law _ PROPN NNP _ 6 compound _ _ 3 School _ PROPN NNP _ 6 compound _ _ 4 Professor _ PROPN NNP _ 6 compound _ _ 5 Laurence _ PROPN NNP _ 6 compound _ _ 6 Tribe _ PROPN NNP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 0 root _ _ 8 there _ PRON EX _ 9 expl _ _ 9 is _ VERB VBZ _ 7 ccomp _ _ 10 a _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 generation-skipping _ ADJ JJ _ 14 amod _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 flavor _ NOUN NN _ 9 nsubj _ _ 15 to _ ADP TO _ 17 case _ _ 16 current _ ADJ JJ _ 17 amod _ _ 17 dissents _ NOUN NNS _ 9 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dissenters _ NOUN NNS _ 11 nsubj _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Warren _ PROPN NNP _ 6 compound _ _ 6 Court _ PROPN NNP _ 2 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 says _ VERB VBZ _ 11 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 appeared _ VERB VBD _ 0 root _ _ 12 to _ PART TO _ 14 mark _ _ 13 be _ AUX VB _ 14 aux _ _ 14 writing _ VERB VBG _ 11 xcomp _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 short-term _ NOUN NN _ 14 nmod _ _ 18 , _ PUNCT , _ 11 punct _ _ 19 suggesting _ VERB VBG _ 11 xcomp _ _ 20 that _ SCONJ IN _ 26 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 court _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 direction _ NOUN NN _ 26 nsubj _ _ 25 might _ AUX MD _ 26 aux _ _ 26 change _ VERB VB _ 19 ccomp _ _ 27 soon _ ADV RB _ 26 advmod _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 Brennan _ PROPN NNP _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Marshall _ PROPN NNP _ 2 conj _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 speaking _ VERB VBG _ 18 ccomp _ _ 7 in _ ADP IN _ 9 case _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 dissents _ NOUN NNS _ 6 nmod _ _ 10 to _ ADP TO _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 distant _ ADJ JJ _ 14 amod _ _ 14 future _ NOUN NN _ 6 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Justice _ PROPN NNP _ 2 compound _ _ 2 Blackmun _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 turn _ VERB VB _ 2 acl:relcl _ _ 7 81 _ NUM CD _ 6 dobj _ _ 8 next _ ADJ JJ _ 9 amod _ _ 9 month _ NOUN NN _ 6 nmod:tmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 also _ ADV RB _ 12 advmod _ _ 12 seems _ VERB VBZ _ 0 root _ _ 13 feisty _ ADJ JJ _ 12 xcomp _ _ 14 about _ ADP IN _ 17 case _ _ 15 his _ PRON PRP$ _ 17 nmod:poss _ _ 16 new _ ADJ JJ _ 17 amod _ _ 17 role _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 Associates _ NOUN NNS _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 takes _ VERB VBZ _ 2 ccomp _ _ 5 some _ DET DT _ 6 det _ _ 6 defeats _ NOUN NNS _ 4 dobj _ _ 7 more _ ADV RBR _ 8 advmod _ _ 8 personally _ ADV RB _ 4 advmod _ _ 9 than _ ADP IN _ 11 case _ _ 10 his _ PRON PRP$ _ 11 nmod:poss _ _ 11 colleagues _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 especially _ ADV RB _ 14 advmod _ _ 14 attempts _ NOUN NNS _ 4 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 curtail _ VERB VB _ 14 acl _ _ 17 the _ DET DT _ 18 det _ _ 18 right _ NOUN NN _ 16 dobj _ _ 19 to _ ADP TO _ 20 case _ _ 20 abortion _ NOUN NN _ 18 nmod _ _ 21 first _ ADV RB _ 22 advmod _ _ 22 recognized _ VERB VBN _ 18 acl _ _ 23 in _ ADP IN _ 26 case _ _ 24 his _ PRON PRP$ _ 26 nmod:poss _ _ 25 1973 _ NUM CD _ 26 nummod _ _ 26 opinion _ NOUN NN _ 22 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Roe _ PROPN NNP _ 26 appos _ _ 29 vs. _ ADP IN _ 30 case _ _ 30 Wade _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 Friends _ NOUN NNS _ 11 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 associates _ NOUN NNS _ 1 conj _ _ 4 who _ PRON WP _ 5 nsubj _ _ 5 saw _ VERB VBD _ 1 acl:relcl _ _ 6 Justice _ PROPN NNP _ 7 compound _ _ 7 Blackmun _ PROPN NNP _ 5 dobj _ _ 8 during _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 summer _ NOUN NN _ 5 nmod _ _ 11 said _ VERB VBD _ 0 root _ _ 12 he _ PRON PRP _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 no _ DET DT _ 15 neg _ _ 15 more _ ADV RBR _ 16 advmod _ _ 16 discouraged _ ADJ JJ _ 11 ccomp _ _ 17 about _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 court _ NOUN NN _ 16 nmod _ _ 20 than _ ADP IN _ 23 case _ _ 21 in _ ADP IN _ 23 case _ _ 22 recent _ ADJ JJ _ 23 amod _ _ 23 years _ NOUN NNS _ 16 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 outlook _ NOUN NN _ 4 nsubj _ _ 4 improved _ VERB VBD _ 0 root _ _ 5 after _ ADP IN _ 8 case _ _ 6 successful _ ADJ JJ _ 8 amod _ _ 7 cataract _ NOUN NN _ 8 compound _ _ 8 surgery _ NOUN NN _ 4 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 August _ PROPN NNP _ 8 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 level _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 frustration _ NOUN NN _ 3 nmod _ _ 6 showed _ VERB VBD _ 0 root _ _ 7 in _ ADP IN _ 12 case _ _ 8 a _ DET DT _ 12 det _ _ 9 recent _ ADJ JJ _ 12 amod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 impassioned _ ADJ JJ _ 12 amod _ _ 12 speech _ NOUN NN _ 6 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 group _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 17 case _ _ 17 hundreds _ NOUN NNS _ 15 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 lawyers _ NOUN NNS _ 17 nmod _ _ 20 in _ ADP IN _ 21 case _ _ 21 Chicago _ PROPN NNP _ 15 nmod _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 concluded _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 remarks _ NOUN NNS _ 2 dobj _ _ 5 by _ SCONJ IN _ 6 mark _ _ 6 quoting _ VERB VBG _ 2 advcl _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 emotionally _ ADV RB _ 9 advmod _ _ 9 and _ CONJ CC _ 6 advmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 some _ DET DT _ 12 det _ _ 12 length _ NOUN NN _ 9 conj _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 according _ VERB VBG _ 16 case _ _ 15 to _ ADP TO _ 14 mwe _ _ 16 those _ PRON DT _ 6 nmod _ _ 17 present _ ADJ JJ _ 16 amod _ _ 18 , _ PUNCT , _ 6 punct _ _ 19 the _ DET DT _ 23 det _ _ 20 late _ ADJ JJ _ 23 amod _ _ 21 Martin _ PROPN NNP _ 23 compound _ _ 22 Luther _ PROPN NNP _ 23 compound _ _ 23 King _ PROPN NNP _ 32 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 famous _ ADJ JJ _ 32 amod _ _ 26 `` _ PUNCT `` _ 32 punct _ _ 27 I _ PRON PRP _ 28 nsubj _ _ 28 Have _ VERB VBP _ 32 dep _ _ 29 a _ DET DT _ 30 det _ _ 30 Dream _ NOUN NN _ 28 dobj _ _ 31 '' _ PUNCT '' _ 32 punct _ _ 32 speech _ NOUN NN _ 6 dobj _ _ 33 from _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 1963 _ NUM CD _ 36 nummod _ _ 36 March _ PROPN NNP _ 32 nmod _ _ 37 on _ ADP IN _ 38 case _ _ 38 Washington _ PROPN NNP _ 36 nmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Justice _ PROPN NNP _ 2 compound _ _ 2 Stevens _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 69 _ NUM CD _ 2 amod _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 is _ VERB VBZ _ 10 cop _ _ 7 probably _ ADV RB _ 10 advmod _ _ 8 the _ DET DT _ 10 det _ _ 9 most _ ADV RBS _ 10 advmod _ _ 10 philosophical _ ADJ JJ _ 0 root _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 dissenters _ NOUN NNS _ 10 nmod _ _ 14 about _ ADP IN _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 role _ NOUN NN _ 10 nmod _ _ 17 , _ PUNCT , _ 10 punct _ _ 18 in _ ADP IN _ 19 case _ _ 19 part _ NOUN NN _ 26 nmod _ _ 20 because _ SCONJ IN _ 26 mark _ _ 21 he _ PRON PRP _ 26 nsubj _ _ 22 may _ AUX MD _ 26 aux _ _ 23 be _ VERB VB _ 26 cop _ _ 24 the _ DET DT _ 26 det _ _ 25 least _ ADJ JJS _ 26 dep _ _ 26 liberal _ NOUN NN _ 10 advcl _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 four _ NUM CD _ 26 nmod _ _ 30 , _ PUNCT , _ 26 punct _ _ 31 but _ CONJ CC _ 26 cc _ _ 32 also _ ADV RB _ 26 advmod _ _ 33 because _ SCONJ IN _ 35 mark _ _ 34 he _ PRON PRP _ 35 nsubj _ _ 35 enjoys _ VERB VBZ _ 26 dep _ _ 36 the _ DET DT _ 38 det _ _ 37 intellectual _ ADJ JJ _ 38 amod _ _ 38 challenge _ NOUN NN _ 35 dobj _ _ 39 of _ SCONJ IN _ 40 mark _ _ 40 arguing _ VERB VBG _ 38 acl _ _ 41 with _ ADP IN _ 43 case _ _ 42 the _ DET DT _ 43 det _ _ 43 majority _ NOUN NN _ 40 nmod _ _ 44 more _ ADV RBR _ 35 advmod _ _ 45 than _ ADP IN _ 47 case _ _ 46 the _ DET DT _ 47 det _ _ 47 others _ NOUN NNS _ 44 nmod _ _ 48 . _ PUNCT . _ 10 punct _ _ 1 If _ SCONJ IN _ 12 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 role _ NOUN NN _ 12 nsubj _ _ 4 these _ DET DT _ 6 det _ _ 5 four _ NUM CD _ 6 nummod _ _ 6 dissenters _ NOUN NNS _ 8 nsubj _ _ 7 are _ AUX VBP _ 8 aux _ _ 8 assuming _ VERB VBG _ 3 acl:relcl _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 a _ DET DT _ 12 det _ _ 11 familiar _ ADJ JJ _ 12 amod _ _ 12 one _ NUM CD _ 21 advcl _ _ 13 in _ ADP IN _ 17 case _ _ 14 modern _ ADJ JJ _ 17 amod _ _ 15 Supreme _ PROPN NNP _ 17 compound _ _ 16 Court _ PROPN NNP _ 17 compound _ _ 17 history _ NOUN NN _ 12 nmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 it _ PRON PRP _ 21 nsubj _ _ 20 also _ ADV RB _ 21 advmod _ _ 21 differs _ VERB VBZ _ 32 ccomp _ _ 22 in _ ADP IN _ 25 case _ _ 23 an _ DET DT _ 25 det _ _ 24 important _ ADJ JJ _ 25 amod _ _ 25 way _ NOUN NN _ 21 nmod _ _ 26 from _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 history _ NOUN NN _ 21 nmod _ _ 29 , _ PUNCT , _ 32 punct _ _ 30 court _ NOUN NN _ 31 compound _ _ 31 watchers _ NOUN NNS _ 32 nsubj _ _ 32 say _ VERB VBP _ 0 root _ _ 33 . _ PUNCT . _ 32 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 dissenters _ NOUN NNS _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Warren _ PROPN NNP _ 7 compound _ _ 7 Court _ PROPN NNP _ 3 nmod _ _ 8 were _ AUX VBD _ 10 aux _ _ 9 often _ ADV RB _ 10 advmod _ _ 10 defending _ VERB VBG _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 legal _ ADJ JJ _ 13 amod _ _ 13 legacy _ NOUN NN _ 10 dobj _ _ 14 that _ ADP IN _ 16 dobj _ _ 15 they _ PRON PRP _ 16 nsubj _ _ 16 inherited _ VERB VBD _ 13 acl:relcl _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 10 dep _ _ 20 Prof. _ PROPN NNP _ 23 compound _ _ 21 A.E. _ PROPN NNP _ 23 compound _ _ 22 Dick _ PROPN NNP _ 23 compound _ _ 23 Howard _ PROPN NNP _ 19 dep _ _ 24 of _ ADP IN _ 30 case _ _ 25 the _ DET DT _ 26 det _ _ 26 University _ PROPN NNP _ 30 dep _ _ 27 of _ ADP IN _ 28 case _ _ 28 Virginia _ PROPN NNP _ 26 nmod _ _ 29 Law _ PROPN NNP _ 30 compound _ _ 30 School _ PROPN NNP _ 23 nmod _ _ 31 , _ PUNCT , _ 19 punct _ _ 32 `` _ PUNCT `` _ 10 punct _ _ 33 but _ CONJ CC _ 10 cc _ _ 34 the _ DET DT _ 35 det _ _ 35 dissenters _ NOUN NNS _ 38 nsubj _ _ 36 today _ NOUN NN _ 35 nmod:tmod _ _ 37 are _ AUX VBP _ 38 aux _ _ 38 defending _ VERB VBG _ 10 conj _ _ 39 a _ DET DT _ 40 det _ _ 40 legacy _ NOUN NN _ 38 dobj _ _ 41 that _ ADP IN _ 43 dobj _ _ 42 they _ PRON PRP _ 43 nsubj _ _ 43 created _ VERB VBD _ 40 acl:relcl _ _ 44 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 government _ NOUN NN _ 3 nsubj _ _ 3 sold _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 deposits _ NOUN NNS _ 3 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 four _ NUM CD _ 9 nummod _ _ 8 savings-and-loan _ ADJ JJ _ 9 amod _ _ 9 institutions _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 in _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 first _ ADJ JJ _ 14 amod _ _ 14 wave _ NOUN NN _ 3 nmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 sales _ NOUN NNS _ 14 nmod _ _ 17 of _ ADP IN _ 21 case _ _ 18 big _ ADJ JJ _ 21 amod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 sick _ ADJ JJ _ 21 amod _ _ 21 thrifts _ NOUN NNS _ 16 nmod _ _ 22 , _ PUNCT , _ 3 punct _ _ 23 but _ CONJ CC _ 3 cc _ _ 24 low _ ADJ JJ _ 25 amod _ _ 25 bids _ NOUN NNS _ 26 nsubj _ _ 26 prevented _ VERB VBD _ 3 conj _ _ 27 the _ DET DT _ 28 det _ _ 28 sale _ NOUN NN _ 26 dobj _ _ 29 of _ ADP IN _ 31 case _ _ 30 a _ DET DT _ 31 det _ _ 31 fifth _ ADJ JJ _ 28 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 four _ NUM CD _ 3 nummod _ _ 3 S&Ls _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 sold _ VERB VBN _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 large _ ADJ JJ _ 8 amod _ _ 8 banks _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 as _ SCONJ IN _ 13 mark _ _ 11 was _ VERB VBD _ 13 cop _ _ 12 the _ DET DT _ 13 det _ _ 13 case _ NOUN NN _ 5 advcl _ _ 14 with _ ADP IN _ 15 case _ _ 15 most _ ADJ JJS _ 13 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 28 _ NUM CD _ 20 nummod _ _ 19 previous _ ADJ JJ _ 20 amod _ _ 20 transactions _ NOUN NNS _ 15 nmod _ _ 21 initiated _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 Resolution _ PROPN NNP _ 26 compound _ _ 25 Trust _ PROPN NNP _ 26 compound _ _ 26 Corp. _ PROPN NNP _ 21 nmod _ _ 27 since _ SCONJ IN _ 30 mark _ _ 28 it _ PRON PRP _ 30 nsubjpass _ _ 29 was _ AUX VBD _ 30 auxpass _ _ 30 created _ VERB VBN _ 21 advcl _ _ 31 in _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 S&L _ NOUN NN _ 35 compound _ _ 34 bailout _ NOUN NN _ 35 compound _ _ 35 legislation _ NOUN NN _ 30 nmod _ _ 36 two _ NUM CD _ 37 nummod _ _ 37 months _ NOUN NNS _ 38 nmod:npmod _ _ 38 ago _ ADV RB _ 30 advmod _ _ 39 . _ PUNCT . _ 5 punct _ _ 1 Two _ NUM CD _ 8 nsubjpass _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 four _ NUM CD _ 6 nummod _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 thrifts _ NOUN NNS _ 1 nmod _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 sold _ VERB VBN _ 0 root _ _ 9 to _ ADP TO _ 11 case _ _ 10 NCNB _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Charlotte _ PROPN NNP _ 11 appos _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 N.C. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 which _ PRON WDT _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 aggressively _ ADV RB _ 20 advmod _ _ 20 expanded _ VERB VBN _ 11 acl:relcl _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 markets _ NOUN NNS _ 20 dobj _ _ 23 , _ PUNCT , _ 20 punct _ _ 24 particularly _ ADV RB _ 26 advmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 Texas _ PROPN NNP _ 20 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 Florida _ PROPN NNP _ 26 conj _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Canadian _ ADJ JJ _ 3 amod _ _ 3 bank _ NOUN NN _ 4 nsubj _ _ 4 bought _ VERB VBD _ 0 root _ _ 5 another _ DET DT _ 6 det _ _ 6 thrift _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 first _ ADJ JJ _ 12 amod _ _ 11 RTC _ PROPN NNP _ 12 compound _ _ 12 transaction _ NOUN NN _ 4 nmod _ _ 13 with _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 16 det _ _ 15 foreign _ ADJ JJ _ 16 amod _ _ 16 bank _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Under _ ADP IN _ 3 case _ _ 2 these _ DET DT _ 3 det _ _ 3 deals _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 7 nsubj _ _ 7 sells _ VERB VBZ _ 0 root _ _ 8 just _ ADV RB _ 10 advmod _ _ 9 the _ DET DT _ 10 det _ _ 10 deposits _ NOUN NNS _ 7 dobj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 healthy _ ADJ JJ _ 14 amod _ _ 14 assets _ NOUN NNS _ 10 conj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 These _ DET DT _ 5 det _ _ 2 `` _ PUNCT `` _ 5 punct _ _ 3 clean-bank _ ADJ JJ _ 5 amod _ _ 4 '' _ PUNCT '' _ 5 punct _ _ 5 transactions _ NOUN NNS _ 6 nsubj _ _ 6 leave _ VERB VBP _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 bulk _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 bad _ ADJ JJ _ 11 amod _ _ 11 assets _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 mostly _ ADV RB _ 15 advmod _ _ 14 real _ ADJ JJ _ 15 amod _ _ 15 estate _ NOUN NN _ 8 appos _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 with _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 government _ NOUN NN _ 6 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 to _ PART TO _ 23 mark _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 sold _ VERB VBN _ 6 advcl _ _ 24 later _ ADV RB _ 23 advmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 these _ DET DT _ 3 det _ _ 3 four _ NUM CD _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 instance _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 RTC _ PROPN NNP _ 11 nsubjpass _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 stuck _ VERB VBN _ 0 root _ _ 12 with _ ADP IN _ 13 case _ _ 13 $ _ SYM $ _ 11 nmod _ _ 14 4.51 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 18 case _ _ 17 bad _ ADJ JJ _ 18 amod _ _ 18 assets _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 Acquirers _ NOUN NNS _ 2 nsubj _ _ 2 paid _ VERB VBD _ 0 root _ _ 3 premiums _ NOUN NNS _ 2 dobj _ _ 4 ranging _ VERB VBG _ 3 acl _ _ 5 from _ ADP IN _ 7 case _ _ 6 1.5 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 4 nmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 3.7 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 7 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 deposits _ NOUN NNS _ 2 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 branch _ NOUN NN _ 16 compound _ _ 16 systems _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 2 punct _ _ 18 roughly _ ADV RB _ 20 advmod _ _ 19 in _ ADP IN _ 20 case _ _ 20 line _ NOUN NN _ 2 nmod _ _ 21 with _ SCONJ IN _ 25 mark _ _ 22 what _ PRON WP _ 25 dobj _ _ 23 analysts _ NOUN NNS _ 25 nsubj _ _ 24 were _ AUX VBD _ 25 aux _ _ 25 expecting _ VERB VBG _ 20 acl _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 buyers _ NOUN NNS _ 6 nsubjpass _ _ 3 will _ AUX MD _ 6 aux _ _ 4 also _ ADV RB _ 6 advmod _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 locked _ VERB VBN _ 0 root _ _ 7 into _ ADP IN _ 9 case _ _ 8 deposit _ NOUN NN _ 9 compound _ _ 9 rates _ NOUN NNS _ 6 nmod _ _ 10 for _ ADP IN _ 13 case _ _ 11 just _ ADV RB _ 12 advmod _ _ 12 two _ NUM CD _ 13 nummod _ _ 13 weeks _ NOUN NNS _ 6 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 has _ AUX VBZ _ 19 aux _ _ 17 been _ VERB VBN _ 19 cop _ _ 18 the _ DET DT _ 19 det _ _ 19 case _ NOUN NN _ 6 advcl _ _ 20 with _ ADP IN _ 22 case _ _ 21 previous _ ADJ JJ _ 22 amod _ _ 22 deals _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 that _ PRON DT _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 buyers _ NOUN NNS _ 7 nsubj _ _ 6 may _ AUX MD _ 7 aux _ _ 7 repudiate _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 rates _ NOUN NNS _ 7 dobj _ _ 10 paid _ VERB VBN _ 9 acl _ _ 11 by _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 former _ ADJ JJ _ 14 amod _ _ 14 thrifts _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 uncertain _ ADJ JJ _ 0 root _ _ 5 whether _ SCONJ IN _ 9 mark _ _ 6 these _ DET DT _ 7 det _ _ 7 institutions _ NOUN NNS _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 take _ VERB VB _ 4 ccomp _ _ 10 those _ DET DT _ 11 det _ _ 11 steps _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 NCNB _ PROPN NNP _ 8 nsubj _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 example _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 one _ NUM CD _ 0 root _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 highest _ ADJ JJS _ 13 amod _ _ 12 rate _ NOUN NN _ 13 compound _ _ 13 payers _ NOUN NNS _ 8 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 Texas _ PROPN NNP _ 17 compound _ _ 17 market _ NOUN NN _ 13 nmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 and _ CONJ CC _ 8 cc _ _ 20 in _ ADP IN _ 21 case _ _ 21 Florida _ PROPN NNP _ 26 nmod _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 rates _ NOUN NNS _ 26 nsubj _ _ 24 are _ VERB VBP _ 26 cop _ _ 25 especially _ ADV RB _ 26 advmod _ _ 26 sensitive _ ADJ JJ _ 8 conj _ _ 27 in _ ADP IN _ 29 case _ _ 28 retirement _ NOUN NN _ 29 compound _ _ 29 communities _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 RTC _ PROPN NNP _ 5 nsubj _ _ 3 had _ AUX VBD _ 5 aux _ _ 4 previously _ ADV RB _ 5 advmod _ _ 5 targeted _ VERB VBN _ 0 root _ _ 6 five _ NUM CD _ 7 nummod _ _ 7 thrifts _ NOUN NNS _ 5 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 quick _ ADJ JJ _ 10 amod _ _ 10 sales _ NOUN NNS _ 5 nmod _ _ 11 in _ SCONJ IN _ 14 mark _ _ 12 order _ NOUN NN _ 11 mwe _ _ 13 to _ PART TO _ 14 mark _ _ 14 spend _ VERB VB _ 5 advcl _ _ 15 cash _ NOUN NN _ 14 dobj _ _ 16 by _ ADP IN _ 19 case _ _ 17 certain _ ADJ JJ _ 19 amod _ _ 18 budgetary _ ADJ JJ _ 19 amod _ _ 19 deadlines _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 5 punct _ _ 21 but _ CONJ CC _ 5 cc _ _ 22 the _ DET DT _ 23 det _ _ 23 delays _ NOUN NNS _ 24 nsubj _ _ 24 illustrate _ VERB VBP _ 5 conj _ _ 25 the _ DET DT _ 27 det _ _ 26 tough _ ADJ JJ _ 27 amod _ _ 27 chore _ NOUN NN _ 24 dobj _ _ 28 facing _ VERB VBG _ 27 acl _ _ 29 the _ DET DT _ 30 det _ _ 30 agency _ NOUN NN _ 28 dobj _ _ 31 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 These _ DET DT _ 3 det _ _ 3 thrifts _ NOUN NNS _ 6 nsubj _ _ 4 are _ VERB VBP _ 6 cop _ _ 5 beached _ ADJ JJ _ 6 amod _ _ 6 whales _ NOUN NNS _ 9 ccomp _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 '' _ PUNCT '' _ 9 punct _ _ 9 said _ VERB VBD _ 0 root _ _ 10 Bert _ PROPN NNP _ 11 compound _ _ 11 Ely _ PROPN NNP _ 9 nsubj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 an _ DET DT _ 15 det _ _ 14 industry _ NOUN NN _ 15 compound _ _ 15 consultant _ NOUN NN _ 11 appos _ _ 16 based _ VERB VBN _ 15 acl _ _ 17 in _ ADP IN _ 18 case _ _ 18 Alexandria _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Va _ PROPN NNP _ 18 appos _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 25 nmod _ _ 3 , _ PUNCT , _ 25 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 delay _ NOUN NN _ 25 nsubj _ _ 6 in _ SCONJ IN _ 7 mark _ _ 7 selling _ VERB VBG _ 5 acl _ _ 8 People _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 Heritage _ PROPN NNP _ 11 compound _ _ 11 Savings _ PROPN NNP _ 7 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Salina _ PROPN NNP _ 11 appos _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Kan. _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 with _ ADP IN _ 18 case _ _ 18 $ _ SYM $ _ 11 nmod _ _ 19 1.7 _ NUM CD _ 20 compound _ _ 20 billion _ NUM CD _ 18 nummod _ _ 21 in _ ADP IN _ 22 case _ _ 22 assets _ NOUN NNS _ 18 nmod _ _ 23 , _ PUNCT , _ 11 punct _ _ 24 has _ AUX VBZ _ 25 aux _ _ 25 forced _ VERB VBN _ 0 root _ _ 26 the _ DET DT _ 27 det _ _ 27 RTC _ PROPN NNP _ 25 dobj _ _ 28 to _ PART TO _ 29 mark _ _ 29 consider _ VERB VB _ 25 xcomp _ _ 30 selling _ VERB VBG _ 29 xcomp _ _ 31 off _ ADP RP _ 30 compound:prt _ _ 32 the _ DET DT _ 33 det _ _ 33 thrift _ NOUN NN _ 30 dobj _ _ 34 branch-by-branch _ ADV RB _ 30 advmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 instead _ ADV RB _ 34 cc _ _ 37 of _ ADP IN _ 36 mwe _ _ 38 as _ ADP IN _ 41 case _ _ 39 a _ DET DT _ 41 det _ _ 40 whole _ ADJ JJ _ 41 amod _ _ 41 institution _ NOUN NN _ 34 conj _ _ 42 . _ PUNCT . _ 25 punct _ _ 1 NCNB _ PROPN NNP _ 2 nsubj _ _ 2 continued _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 4 nmod:poss _ _ 4 foray _ NOUN NN _ 2 dobj _ _ 5 into _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 10 det _ _ 7 Florida _ PROPN NNP _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Texas _ PROPN NNP _ 7 conj _ _ 10 markets _ NOUN NNS _ 4 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 NCNB _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 acquire _ VERB VB _ 0 root _ _ 4 University _ PROPN NNP _ 7 compound _ _ 5 Federal _ PROPN NNP _ 7 compound _ _ 6 Savings _ PROPN NNP _ 7 compound _ _ 7 Association _ PROPN NNP _ 3 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Houston _ PROPN NNP _ 7 appos _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 which _ PRON WDT _ 12 nsubj _ _ 12 had _ VERB VBD _ 7 acl:relcl _ _ 13 assets _ NOUN NNS _ 12 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 2.8 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 4 compound _ _ 2 Texas _ PROPN NNP _ 4 compound _ _ 3 National _ PROPN NNP _ 4 compound _ _ 4 Bank _ PROPN NNP _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 pay _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 RTC _ PROPN NNP _ 6 iobj _ _ 9 a _ DET DT _ 10 det _ _ 10 premium _ NOUN NN _ 6 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 129 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 for _ ADP IN _ 16 case _ _ 16 $ _ SYM $ _ 6 nmod _ _ 17 3.5 _ NUM CD _ 18 compound _ _ 18 billion _ NUM CD _ 16 nummod _ _ 19 in _ ADP IN _ 20 case _ _ 20 deposits _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 measure _ NOUN NN _ 20 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 depths _ NOUN NNS _ 3 nmod _ _ 7 to _ ADP TO _ 8 case _ _ 8 which _ PRON WDT _ 15 nmod _ _ 9 the _ DET DT _ 13 det _ _ 10 Texas _ PROPN NNP _ 13 compound _ _ 11 real _ ADJ JJ _ 13 amod _ _ 12 estate _ NOUN NN _ 13 compound _ _ 13 market _ NOUN NN _ 15 nsubj _ _ 14 has _ AUX VBZ _ 15 aux _ _ 15 sunk _ VERB VBN _ 6 acl:relcl _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 RTC _ PROPN NNP _ 20 nsubj _ _ 19 will _ AUX MD _ 20 aux _ _ 20 pay _ VERB VB _ 0 root _ _ 21 $ _ SYM $ _ 20 dobj _ _ 22 3.8 _ NUM CD _ 23 compound _ _ 23 billion _ NUM CD _ 21 nummod _ _ 24 to _ ADP TO _ 25 case _ _ 25 NCNB _ PROPN NNP _ 20 nmod _ _ 26 to _ PART TO _ 27 mark _ _ 27 take _ VERB VB _ 20 advcl _ _ 28 $ _ SYM $ _ 27 dobj _ _ 29 750 _ NUM CD _ 30 compound _ _ 30 million _ NUM CD _ 28 nummod _ _ 31 of _ ADP IN _ 33 case _ _ 32 bad _ ADJ JJ _ 33 amod _ _ 33 assets _ NOUN NNS _ 28 nmod _ _ 34 . _ PUNCT . _ 20 punct _ _ 1 NCNB _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 acquired _ VERB VBD _ 0 root _ _ 4 Freedom _ PROPN NNP _ 5 compound _ _ 5 Savings _ PROPN NNP _ 3 dobj _ _ 6 & _ CONJ CC _ 5 cc _ _ 7 Loan _ PROPN NNP _ 8 compound _ _ 8 Association _ PROPN NNP _ 5 conj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 Tampa _ PROPN NNP _ 5 appos _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Fla. _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 which _ PRON WDT _ 15 nsubj _ _ 15 had _ VERB VBD _ 5 acl:relcl _ _ 16 total _ ADJ JJ _ 17 amod _ _ 17 assets _ NOUN NNS _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 $ _ SYM $ _ 17 nmod _ _ 20 900 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 pay _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 RTC _ PROPN NNP _ 3 iobj _ _ 6 a _ DET DT _ 7 det _ _ 7 premium _ NOUN NN _ 3 dobj _ _ 8 of _ ADP IN _ 9 case _ _ 9 $ _ SYM $ _ 7 nmod _ _ 10 40.4 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 for _ ADP IN _ 13 case _ _ 13 $ _ SYM $ _ 3 nmod _ _ 14 1.1 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 17 case _ _ 17 deposits _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 NCNB _ PROPN NNP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 acquire _ VERB VB _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 266 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 of _ ADP IN _ 11 case _ _ 9 Freedom _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 assets _ NOUN NNS _ 5 nmod _ _ 12 from _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 RTC _ PROPN NNP _ 4 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 require _ VERB VB _ 14 acl:relcl _ _ 19 $ _ SYM $ _ 18 dobj _ _ 20 875 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 in _ ADP IN _ 23 case _ _ 23 assistance _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Meridian _ PROPN NNP _ 3 compound _ _ 2 Bancorp _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 10 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Reading _ NOUN NN _ 3 appos _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Pa. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 acquire _ VERB VB _ 0 root _ _ 11 Hill _ PROPN NNP _ 14 compound _ _ 12 Financial _ PROPN NNP _ 14 compound _ _ 13 Savings _ PROPN NNP _ 14 compound _ _ 14 Association _ PROPN NNP _ 10 dobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Red _ PROPN NNP _ 17 compound _ _ 17 Hill _ PROPN NNP _ 14 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Pa. _ PROPN NNP _ 17 appos _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 had _ VERB VBD _ 14 acl:relcl _ _ 23 $ _ SYM $ _ 22 dobj _ _ 24 2.3 _ NUM CD _ 25 compound _ _ 25 billion _ NUM CD _ 23 nummod _ _ 26 in _ ADP IN _ 27 case _ _ 27 assets _ NOUN NNS _ 23 nmod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 Meridian _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 pay _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 premium _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 30.5 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 to _ PART TO _ 11 mark _ _ 11 assume _ VERB VB _ 3 advcl _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 2 _ NUM CD _ 14 compound _ _ 14 billion _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 deposits _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 purchase _ VERB VB _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 845 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 of _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 10 det _ _ 10 thrift _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 assets _ NOUN NNS _ 5 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 with _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 4 nmod _ _ 16 1.9 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 in _ ADP IN _ 20 case _ _ 19 RTC _ PROPN NNP _ 20 compound _ _ 20 assistance _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 RTC _ PROPN NNP _ 5 compound _ _ 5 transaction _ NOUN NN _ 18 nmod _ _ 6 with _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 foreign _ ADJ JJ _ 9 amod _ _ 9 buyer _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 18 punct _ _ 11 Royal _ PROPN NNP _ 13 compound _ _ 12 Trustco _ PROPN NNP _ 13 compound _ _ 13 Ltd. _ PROPN NNP _ 18 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Toronto _ PROPN NNP _ 13 appos _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 will _ AUX MD _ 18 aux _ _ 18 acquire _ VERB VB _ 0 root _ _ 19 Pacific _ PROPN NNP _ 21 compound _ _ 20 Savings _ PROPN NNP _ 21 compound _ _ 21 Bank _ PROPN NNP _ 18 dobj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 Costa _ PROPN NNP _ 24 compound _ _ 24 Mesa _ PROPN NNP _ 21 appos _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 Calif. _ PROPN NNP _ 24 appos _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 which _ PRON WDT _ 29 nsubj _ _ 29 had _ VERB VBD _ 21 acl:relcl _ _ 30 $ _ SYM $ _ 29 dobj _ _ 31 949 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 30 nummod _ _ 33 in _ ADP IN _ 34 case _ _ 34 assets _ NOUN NNS _ 30 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 Royal _ PROPN NNP _ 2 compound _ _ 2 Trustco _ PROPN NNP _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 pay _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 RTC _ PROPN NNP _ 4 iobj _ _ 7 $ _ SYM $ _ 4 dobj _ _ 8 25 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 7 nummod _ _ 10 to _ PART TO _ 11 mark _ _ 11 assume _ VERB VB _ 4 advcl _ _ 12 $ _ SYM $ _ 11 dobj _ _ 13 989 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 in _ ADP IN _ 16 case _ _ 16 deposits _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 will _ AUX MD _ 4 aux _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 purchase _ VERB VB _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 473 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 in _ ADP IN _ 9 case _ _ 9 assets _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 and _ CONJ CC _ 4 cc _ _ 12 receive _ VERB VB _ 4 conj _ _ 13 $ _ SYM $ _ 12 dobj _ _ 14 550 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 in _ ADP IN _ 17 case _ _ 17 assistance _ NOUN NN _ 13 nmod _ _ 18 from _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 RTC _ PROPN NNP _ 12 nmod _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 following _ ADJ JJ _ 3 amod _ _ 3 issues _ NOUN NNS _ 6 nsubjpass _ _ 4 were _ AUX VBD _ 6 auxpass _ _ 5 recently _ ADV RB _ 6 advmod _ _ 6 filed _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 12 case _ _ 8 the _ DET DT _ 12 det _ _ 9 Securities _ PROPN NNP _ 12 compound _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Exchange _ PROPN NNP _ 9 conj _ _ 12 Commission _ PROPN NNP _ 6 nmod _ _ 13 : _ PUNCT : _ 6 punct _ _ 1 American _ PROPN NNP _ 3 compound _ _ 2 Cyanamid _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 offering _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 9 case _ _ 7 1,250,000 _ NUM CD _ 9 nummod _ _ 8 common _ ADJ JJ _ 9 amod _ _ 9 shares _ NOUN NNS _ 5 nmod _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 via _ ADP IN _ 15 case _ _ 12 Merrill _ PROPN NNP _ 15 compound _ _ 13 Lynch _ PROPN NNP _ 15 compound _ _ 14 Capital _ PROPN NNP _ 15 compound _ _ 15 Markets _ PROPN NNP _ 5 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 Limited _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 offering _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 up _ ADP IN _ 8 dep _ _ 7 to _ ADP TO _ 6 mwe _ _ 8 $ _ SYM $ _ 4 nmod _ _ 9 300 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 of _ ADP IN _ 13 case _ _ 12 debt _ NOUN NN _ 13 compound _ _ 13 securities _ NOUN NNS _ 8 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 warrants _ NOUN NNS _ 13 conj _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 Nuveen _ PROPN NNP _ 7 compound _ _ 2 California _ PROPN NNP _ 7 compound _ _ 3 Performance _ PROPN NNP _ 7 compound _ _ 4 Plus _ PROPN NNP _ 7 compound _ _ 5 Municipal _ PROPN NNP _ 7 compound _ _ 6 Fund _ PROPN NNP _ 7 compound _ _ 7 Inc. _ PROPN NNP _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 initial _ ADJ JJ _ 10 amod _ _ 10 offering _ NOUN NN _ 7 appos _ _ 11 of _ ADP IN _ 15 case _ _ 12 five _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 15 nummod _ _ 14 common _ ADJ JJ _ 15 amod _ _ 15 shares _ NOUN NNS _ 10 nmod _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 via _ ADP IN _ 20 case _ _ 18 Alex _ PROPN NNP _ 20 compound _ _ 19 . _ PUNCT . _ 20 punct _ _ 20 Brown _ PROPN NNP _ 10 nmod _ _ 21 & _ CONJ CC _ 20 cc _ _ 22 Sons _ PROPN NNP _ 23 compound _ _ 23 Inc. _ PROPN NNP _ 20 conj _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 John _ PROPN NNP _ 26 compound _ _ 26 Nuveen _ PROPN NNP _ 20 conj _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Co. _ PROPN NNP _ 26 conj _ _ 29 , _ PUNCT , _ 20 punct _ _ 30 Prudential-Bache _ PROPN NNP _ 32 compound _ _ 31 Capital _ PROPN NNP _ 32 compound _ _ 32 Funding _ PROPN NNP _ 20 conj _ _ 33 , _ PUNCT , _ 20 punct _ _ 34 and _ CONJ CC _ 20 cc _ _ 35 Bateman _ PROPN NNP _ 39 compound _ _ 36 Eichler _ PROPN NNP _ 39 compound _ _ 37 , _ PUNCT , _ 39 punct _ _ 38 Hill _ PROPN NNP _ 39 appos _ _ 39 Richards _ PROPN NNP _ 20 conj _ _ 40 . _ PUNCT . _ 7 punct _ _ 1 PacifiCare _ PROPN NNP _ 4 compound _ _ 2 Health _ PROPN NNP _ 4 compound _ _ 3 Systems _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 proposed _ VERB VBN _ 7 amod _ _ 7 offering _ NOUN NN _ 4 appos _ _ 8 of _ ADP IN _ 12 case _ _ 9 1.5 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 12 nummod _ _ 11 common _ ADJ JJ _ 12 amod _ _ 12 shares _ NOUN NNS _ 7 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 of _ ADP IN _ 15 case _ _ 15 which _ PRON WDT _ 20 nmod _ _ 16 700,000 _ NUM CD _ 17 nummod _ _ 17 shares _ NOUN NNS _ 20 nsubjpass _ _ 18 will _ AUX MD _ 20 aux _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 offered _ VERB VBN _ 12 acl:relcl _ _ 21 by _ ADP IN _ 22 case _ _ 22 PacifiCare _ PROPN NNP _ 20 nmod _ _ 23 and _ CONJ CC _ 20 cc _ _ 24 800,000 _ NUM CD _ 25 nummod _ _ 25 shares _ NOUN NNS _ 20 conj _ _ 26 by _ ADP IN _ 29 case _ _ 27 UniHealth _ PROPN NNP _ 29 compound _ _ 28 America _ PROPN NNP _ 29 compound _ _ 29 Inc _ PROPN NNP _ 25 dep _ _ 30 . _ PUNCT . _ 29 punct _ _ 31 -LRB- _ PUNCT -LRB- _ 32 punct _ _ 32 PacifiCare _ PROPN NNP _ 12 dep _ _ 33 's _ PART POS _ 32 case _ _ 34 71 _ NUM CD _ 32 dep _ _ 35 % _ SYM NN _ 32 dep _ _ 36 -RRB- _ PUNCT -RRB- _ 32 punct _ _ 37 , _ PUNCT , _ 7 punct _ _ 38 via _ ADP IN _ 44 case _ _ 39 Dillon _ PROPN NNP _ 44 compound _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Read _ PROPN NNP _ 39 conj _ _ 42 & _ CONJ CC _ 39 cc _ _ 43 Co. _ PROPN NNP _ 39 conj _ _ 44 Inc. _ PROPN NNP _ 7 nmod _ _ 45 , _ PUNCT , _ 44 punct _ _ 46 Goldman _ PROPN NNP _ 44 conj _ _ 47 , _ PUNCT , _ 46 punct _ _ 48 Sachs _ PROPN NNP _ 46 conj _ _ 49 & _ CONJ CC _ 46 cc _ _ 50 Co. _ PROPN NNP _ 46 conj _ _ 51 and _ CONJ CC _ 44 cc _ _ 52 Dean _ PROPN NNP _ 55 compound _ _ 53 Witter _ PROPN NNP _ 55 compound _ _ 54 Reynolds _ PROPN NNP _ 55 compound _ _ 55 Inc _ PROPN NNP _ 44 conj _ _ 56 . _ PUNCT . _ 4 punct _ _ 1 Pricor _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 offering _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 9 case _ _ 6 one _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 9 nummod _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 shares _ NOUN NNS _ 4 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 common _ ADJ JJ _ 12 amod _ _ 12 stock _ NOUN NN _ 9 nmod _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 300,000 _ NUM CD _ 15 nummod _ _ 15 shares _ NOUN NNS _ 9 conj _ _ 16 by _ ADP IN _ 17 case _ _ 17 holders _ NOUN NNS _ 15 nmod _ _ 18 , _ PUNCT , _ 4 punct _ _ 19 via _ ADP IN _ 23 case _ _ 20 Drexel _ PROPN NNP _ 23 compound _ _ 21 Burnham _ PROPN NNP _ 23 compound _ _ 22 Lambert _ PROPN NNP _ 23 compound _ _ 23 Inc. _ PROPN NNP _ 4 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 J.C. _ PROPN NNP _ 26 compound _ _ 26 Bradford _ PROPN NNP _ 23 conj _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Co _ PROPN NNP _ 26 conj _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 Trans _ PROPN NNP _ 4 compound _ _ 2 World _ PROPN NNP _ 4 compound _ _ 3 Airlines _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 offering _ NOUN NN _ 4 appos _ _ 7 of _ ADP IN _ 8 case _ _ 8 $ _ SYM $ _ 6 nmod _ _ 9 150 _ NUM CD _ 10 compound _ _ 10 million _ NUM CD _ 8 nummod _ _ 11 senior _ ADJ JJ _ 12 amod _ _ 12 notes _ NOUN NNS _ 8 dep _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 via _ ADP IN _ 16 case _ _ 15 Drexel _ PROPN NNP _ 16 compound _ _ 16 Burnham _ PROPN NNP _ 6 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Time _ PROPN NNP _ 2 compound _ _ 2 magazine _ NOUN NN _ 17 nsubj _ _ 3 , _ PUNCT , _ 17 punct _ _ 4 in _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 move _ NOUN NN _ 17 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 reduce _ VERB VB _ 6 acl _ _ 9 the _ DET DT _ 10 det _ _ 10 costs _ NOUN NNS _ 8 dobj _ _ 11 of _ SCONJ IN _ 12 mark _ _ 12 wooing _ VERB VBG _ 10 acl _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 subscribers _ NOUN NNS _ 12 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 is _ AUX VBZ _ 17 aux _ _ 17 lowering _ VERB VBG _ 0 root _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 circulation _ NOUN NN _ 20 compound _ _ 20 guarantee _ NOUN NN _ 17 dobj _ _ 21 to _ ADP TO _ 22 case _ _ 22 advertisers _ NOUN NNS _ 20 nmod _ _ 23 for _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 second _ ADJ JJ _ 27 amod _ _ 26 consecutive _ ADJ JJ _ 27 amod _ _ 27 year _ NOUN NN _ 17 nmod _ _ 28 , _ PUNCT , _ 17 punct _ _ 29 increasing _ VERB VBG _ 17 conj _ _ 30 its _ PRON PRP$ _ 32 nmod:poss _ _ 31 subscription _ NOUN NN _ 32 compound _ _ 32 rates _ NOUN NNS _ 29 dobj _ _ 33 and _ CONJ CC _ 17 cc _ _ 34 cutting _ VERB VBG _ 17 conj _ _ 35 back _ ADP RP _ 34 compound:prt _ _ 36 on _ ADP IN _ 38 case _ _ 37 merchandise _ NOUN NN _ 38 compound _ _ 38 giveaways _ NOUN NNS _ 34 nmod _ _ 39 . _ PUNCT . _ 17 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 an _ DET DT _ 3 det _ _ 3 announcement _ NOUN NN _ 18 nmod _ _ 4 to _ ADP TO _ 6 case _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 staff _ NOUN NN _ 3 nmod _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 week _ NOUN NN _ 3 nmod:tmod _ _ 9 , _ PUNCT , _ 18 punct _ _ 10 executives _ NOUN NNS _ 18 nsubj _ _ 11 at _ ADP IN _ 17 case _ _ 12 Time _ PROPN NNP _ 14 compound _ _ 13 Warner _ PROPN NNP _ 14 compound _ _ 14 Inc. _ PROPN NNP _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 weekly _ ADJ JJ _ 17 amod _ _ 17 magazine _ NOUN NN _ 10 nmod _ _ 18 said _ VERB VBD _ 0 root _ _ 19 Time _ PROPN NNP _ 23 nsubj _ _ 20 will _ AUX MD _ 23 aux _ _ 21 `` _ PUNCT `` _ 23 punct _ _ 22 dramatically _ ADV RB _ 23 advmod _ _ 23 de-emphasize _ VERB VB _ 18 ccomp _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 use _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 electronic _ ADJ JJ _ 29 amod _ _ 29 giveaways _ NOUN NNS _ 26 nmod _ _ 30 such _ ADJ JJ _ 32 case _ _ 31 as _ ADP IN _ 30 mwe _ _ 32 telephones _ NOUN NNS _ 29 nmod _ _ 33 in _ ADP IN _ 36 case _ _ 34 television _ NOUN NN _ 36 compound _ _ 35 subscription _ NOUN NN _ 36 compound _ _ 36 drives _ NOUN NNS _ 26 nmod _ _ 37 ; _ PUNCT : _ 23 punct _ _ 38 cut _ VERB VB _ 23 conj _ _ 39 the _ DET DT _ 40 det _ _ 40 circulation _ NOUN NN _ 38 dobj _ _ 41 it _ PRON PRP _ 42 nsubj _ _ 42 guarantees _ VERB VBZ _ 40 acl:relcl _ _ 43 advertisers _ NOUN NNS _ 42 dobj _ _ 44 by _ ADP IN _ 45 case _ _ 45 300,000 _ NUM CD _ 38 nmod _ _ 46 , _ PUNCT , _ 38 punct _ _ 47 to _ ADP TO _ 49 case _ _ 48 four _ NUM CD _ 49 compound _ _ 49 million _ NUM CD _ 38 nmod _ _ 50 ; _ PUNCT : _ 23 punct _ _ 51 and _ CONJ CC _ 23 cc _ _ 52 increase _ VERB VB _ 23 conj _ _ 53 the _ DET DT _ 54 det _ _ 54 cost _ NOUN NN _ 52 dobj _ _ 55 of _ ADP IN _ 59 case _ _ 56 its _ PRON PRP$ _ 59 nmod:poss _ _ 57 annual _ ADJ JJ _ 59 amod _ _ 58 subscription _ NOUN NN _ 59 compound _ _ 59 rate _ NOUN NN _ 54 nmod _ _ 60 by _ ADP IN _ 62 case _ _ 61 about _ ADV RB _ 62 advmod _ _ 62 $ _ SYM $ _ 52 nmod _ _ 63 4 _ NUM CD _ 62 nummod _ _ 64 to _ ADP TO _ 66 case _ _ 65 $ _ SYM $ _ 66 dep _ _ 66 55 _ NUM CD _ 52 nmod _ _ 67 . _ PUNCT . _ 18 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 related _ ADJ JJ _ 4 amod _ _ 4 development _ NOUN NN _ 17 nmod _ _ 5 , _ PUNCT , _ 17 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 news-weekly _ NOUN NN _ 17 nsubj _ _ 8 , _ PUNCT , _ 17 punct _ _ 9 for _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 fourth _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 17 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 row _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 wo _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 increase _ VERB VB _ 17 ccomp _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 advertising _ NOUN NN _ 24 compound _ _ 24 rates _ NOUN NNS _ 21 dobj _ _ 25 in _ ADP IN _ 26 case _ _ 26 1990 _ NUM CD _ 21 nmod _ _ 27 ; _ PUNCT : _ 17 punct _ _ 28 a _ DET DT _ 32 det _ _ 29 full _ ADJ JJ _ 32 amod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 four-color _ ADJ JJ _ 32 amod _ _ 32 page _ NOUN NN _ 36 nsubj _ _ 33 in _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 magazine _ NOUN NN _ 32 nmod _ _ 36 costs _ VERB VBZ _ 17 parataxis _ _ 37 about _ ADV RB _ 38 advmod _ _ 38 $ _ SYM $ _ 36 dobj _ _ 39 120,000 _ NUM CD _ 38 nummod _ _ 40 . _ PUNCT . _ 17 punct _ _ 1 However _ ADV RB _ 19 advmod _ _ 2 , _ PUNCT , _ 19 punct _ _ 3 because _ SCONJ IN _ 10 mark _ _ 4 the _ DET DT _ 7 det _ _ 5 guaranteed _ VERB VBN _ 7 amod _ _ 6 circulation _ NOUN NN _ 7 compound _ _ 7 base _ NOUN NN _ 10 nsubjpass _ _ 8 is _ AUX VBZ _ 10 aux _ _ 9 being _ AUX VBG _ 10 auxpass _ _ 10 lowered _ VERB VBN _ 19 advcl _ _ 11 , _ PUNCT , _ 19 punct _ _ 12 ad _ NOUN NN _ 13 compound _ _ 13 rates _ NOUN NNS _ 19 nsubj _ _ 14 will _ AUX MD _ 19 aux _ _ 15 be _ VERB VB _ 19 cop _ _ 16 effectively _ ADV RB _ 19 advmod _ _ 17 7.5 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 19 nmod:npmod _ _ 19 higher _ ADJ JJR _ 0 root _ _ 20 per _ ADP IN _ 21 case _ _ 21 subscriber _ NOUN NN _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 according _ VERB VBG _ 26 case _ _ 24 to _ ADP TO _ 23 mwe _ _ 25 Richard _ PROPN NNP _ 26 compound _ _ 26 Heinemann _ PROPN NNP _ 19 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Time _ PROPN NNP _ 30 compound _ _ 29 associate _ ADJ JJ _ 30 amod _ _ 30 publisher _ NOUN NN _ 26 appos _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 Time _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 following _ VERB VBG _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 course _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 10 case _ _ 7 some _ DET DT _ 10 det _ _ 8 other _ ADJ JJ _ 10 amod _ _ 9 mass-circulation _ ADJ JJ _ 10 amod _ _ 10 magazines _ NOUN NNS _ 5 nmod _ _ 11 that _ ADP IN _ 16 nsubj _ _ 12 in _ ADP IN _ 14 case _ _ 13 recent _ ADJ JJ _ 14 amod _ _ 14 years _ NOUN NNS _ 16 nmod _ _ 15 have _ AUX VBP _ 16 aux _ _ 16 challenged _ VERB VBN _ 10 acl:relcl _ _ 17 the _ DET DT _ 19 det _ _ 18 publishing _ NOUN NN _ 19 compound _ _ 19 myth _ NOUN NN _ 16 dobj _ _ 20 that _ SCONJ IN _ 31 mark _ _ 21 maintaining _ VERB VBG _ 31 csubj _ _ 22 artificially _ ADV RB _ 23 advmod _ _ 23 high _ ADJ JJ _ 28 amod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 and _ CONJ CC _ 23 cc _ _ 26 expensive _ ADJ JJ _ 23 conj _ _ 27 , _ PUNCT , _ 23 punct _ _ 28 circulations _ NOUN NNS _ 21 dobj _ _ 29 is _ VERB VBZ _ 31 cop _ _ 30 the _ DET DT _ 31 det _ _ 31 way _ NOUN NN _ 19 ccomp _ _ 32 to _ PART TO _ 33 mark _ _ 33 draw _ VERB VB _ 31 acl _ _ 34 advertisers _ NOUN NNS _ 33 dobj _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 years _ NOUN NNS _ 27 nmod _ _ 4 , _ PUNCT , _ 27 punct _ _ 5 Reader _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Digest _ PROPN NNP _ 27 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 New _ PROPN NNP _ 12 compound _ _ 10 York _ PROPN NNP _ 12 compound _ _ 11 Times _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 McCall _ PROPN NNP _ 7 conj _ _ 15 's _ PART POS _ 14 case _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 and _ CONJ CC _ 7 cc _ _ 18 most _ ADV RBS _ 19 advmod _ _ 19 recently _ ADV RB _ 7 advmod _ _ 20 News _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 24 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 TV _ PROPN NNP _ 24 compound _ _ 24 Guide _ PROPN NNP _ 7 conj _ _ 25 , _ PUNCT , _ 7 punct _ _ 26 have _ AUX VBP _ 27 aux _ _ 27 cut _ VERB VBN _ 0 root _ _ 28 their _ PRON PRP$ _ 32 nmod:poss _ _ 29 massive _ ADJ JJ _ 32 amod _ _ 30 circulation _ NOUN NN _ 32 compound _ _ 31 rate _ NOUN NN _ 32 compound _ _ 32 bases _ NOUN NNS _ 27 dobj _ _ 33 to _ PART TO _ 34 mark _ _ 34 eliminate _ VERB VB _ 27 advcl _ _ 35 marginal _ ADJ JJ _ 36 amod _ _ 36 circulation _ NOUN NN _ 34 dobj _ _ 37 and _ CONJ CC _ 34 cc _ _ 38 hold _ VERB VB _ 34 conj _ _ 39 down _ ADP RP _ 38 compound:prt _ _ 40 rates _ NOUN NNS _ 38 dobj _ _ 41 for _ ADP IN _ 42 case _ _ 42 advertisers _ NOUN NNS _ 40 nmod _ _ 43 . _ PUNCT . _ 27 punct _ _ 1 Deep _ ADJ JJ _ 2 amod _ _ 2 discounts _ NOUN NNS _ 14 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 subscriptions _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 offers _ NOUN NNS _ 2 conj _ _ 7 of _ ADP IN _ 10 case _ _ 8 free _ ADJ JJ _ 10 amod _ _ 9 clock _ NOUN NN _ 10 compound _ _ 10 radios _ NOUN NNS _ 6 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 watches _ NOUN NNS _ 10 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 become _ VERB VBN _ 0 root _ _ 15 accepted _ ADJ JJ _ 16 amod _ _ 16 forms _ NOUN NNS _ 14 xcomp _ _ 17 of _ SCONJ IN _ 18 mark _ _ 18 attracting _ VERB VBG _ 16 acl _ _ 19 new _ ADJ JJ _ 20 amod _ _ 20 subscribers _ NOUN NNS _ 18 dobj _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 hyper-competitive _ ADJ JJ _ 24 amod _ _ 24 world _ NOUN NN _ 14 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 magazine _ NOUN NN _ 27 compound _ _ 27 news-weeklies _ NOUN NNS _ 24 nmod _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 But _ CONJ CC _ 13 cc _ _ 2 Time _ PROPN NNP _ 13 nsubj _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 as _ ADP IN _ 5 case _ _ 5 part _ NOUN NN _ 13 nmod _ _ 6 of _ ADP IN _ 11 case _ _ 7 the _ DET DT _ 11 det _ _ 8 more _ ADV RBR _ 9 advmod _ _ 9 cost-conscious _ ADJ JJ _ 11 amod _ _ 10 Time _ PROPN NNP _ 11 compound _ _ 11 Warner _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 wants _ VERB VBZ _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 wean _ VERB VB _ 13 xcomp _ _ 16 itself _ PRON PRP _ 15 dobj _ _ 17 away _ ADV RB _ 15 advmod _ _ 18 from _ ADP IN _ 20 case _ _ 19 expensive _ ADJ JJ _ 20 amod _ _ 20 gimmicks _ NOUN NNS _ 15 nmod _ _ 21 . _ PUNCT . _ 13 punct _ _ 1 Besides _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Time _ PROPN NNP _ 4 compound _ _ 4 executives _ NOUN NNS _ 5 nsubj _ _ 5 think _ VERB VBP _ 0 root _ _ 6 selling _ VERB VBG _ 15 csubj _ _ 7 a _ DET DT _ 9 det _ _ 8 news _ NOUN NN _ 9 compound _ _ 9 magazine _ NOUN NN _ 6 dobj _ _ 10 with _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 clock _ NOUN NN _ 13 compound _ _ 13 radio _ NOUN NN _ 6 nmod _ _ 14 is _ VERB VBZ _ 15 cop _ _ 15 tacky _ ADJ JJ _ 5 ccomp _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Giveaways _ NOUN NNS _ 4 nsubj _ _ 3 just _ ADV RB _ 4 advmod _ _ 4 give _ VERB VBP _ 11 ccomp _ _ 5 people _ NOUN NNS _ 4 iobj _ _ 6 the _ DET DT _ 8 det _ _ 7 wrong _ ADJ JJ _ 8 amod _ _ 8 image _ NOUN NN _ 4 dobj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Mr. _ PROPN NNP _ 13 compound _ _ 13 Heinemann _ PROPN NNP _ 11 nsubj _ _ 14 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 That _ DET DT _ 3 det _ _ 3 perception _ NOUN NN _ 4 nsubj _ _ 4 takes _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 focus _ NOUN NN _ 4 dobj _ _ 7 off _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 magazine _ NOUN NN _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 11 '' _ PUNCT '' _ 4 punct _ _ 1 Time _ PROPN NNP _ 3 compound _ _ 2 magazine _ NOUN NN _ 3 compound _ _ 3 executives _ NOUN NNS _ 5 nsubj _ _ 4 predictably _ ADV RB _ 5 advmod _ _ 5 paint _ VERB VBP _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 circulation _ NOUN NN _ 8 compound _ _ 8 cut _ NOUN NN _ 5 dobj _ _ 9 as _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 show _ NOUN NN _ 5 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 strength _ NOUN NN _ 11 nmod _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 actually _ ADV RB _ 17 advmod _ _ 16 a _ DET DT _ 17 det _ _ 17 benefit _ NOUN NN _ 11 conj _ _ 18 to _ ADP TO _ 19 case _ _ 19 advertisers _ NOUN NNS _ 17 nmod _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 What _ PRON WP _ 5 dobj _ _ 3 we _ PRON PRP _ 5 nsubj _ _ 4 are _ AUX VBP _ 5 aux _ _ 5 doing _ VERB VBG _ 6 csubj _ _ 6 is _ VERB VBZ _ 27 ccomp _ _ 7 screening _ VERB VBG _ 6 xcomp _ _ 8 out _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 10 det _ _ 10 readers _ NOUN NNS _ 7 dobj _ _ 11 who _ PRON WP _ 15 nsubjpass _ _ 12 are _ VERB VBP _ 15 auxpass _ _ 13 only _ ADV RB _ 14 advmod _ _ 14 casually _ ADV RB _ 15 advmod _ _ 15 related _ VERB VBN _ 10 acl:relcl _ _ 16 to _ ADP TO _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 magazine _ NOUN NN _ 15 nmod _ _ 19 and _ CONJ CC _ 15 cc _ _ 20 do _ AUX VBP _ 23 aux _ _ 21 n't _ PART RB _ 23 neg _ _ 22 really _ ADV RB _ 23 advmod _ _ 23 read _ VERB VB _ 15 conj _ _ 24 it _ PRON PRP _ 23 dobj _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Mr. _ PROPN NNP _ 29 compound _ _ 29 Heinemann _ PROPN NNP _ 27 nsubj _ _ 30 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 trying _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 create _ VERB VB _ 4 xcomp _ _ 7 quality _ NOUN NN _ 6 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 involvement _ NOUN NN _ 7 conj _ _ 10 . _ PUNCT . _ 4 punct _ _ 11 '' _ PUNCT '' _ 4 punct _ _ 1 However _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Time _ PROPN NNP _ 4 compound _ _ 4 executives _ NOUN NNS _ 5 nsubj _ _ 5 used _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 same _ ADJ JJ _ 8 amod _ _ 8 explanation _ NOUN NN _ 5 dobj _ _ 9 when _ ADV WRB _ 15 advmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 October _ PROPN NNP _ 15 nmod _ _ 12 1988 _ NUM CD _ 11 nummod _ _ 13 the _ DET DT _ 14 det _ _ 14 magazine _ NOUN NN _ 15 nsubj _ _ 15 cut _ VERB VBD _ 5 advcl _ _ 16 its _ PRON PRP$ _ 18 nmod:poss _ _ 17 guaranteed _ VERB VBN _ 18 amod _ _ 18 circulation _ NOUN NN _ 15 dobj _ _ 19 from _ ADP IN _ 21 case _ _ 20 4.6 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 15 nmod _ _ 22 to _ ADP TO _ 24 case _ _ 23 4.3 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 15 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 14 cc _ _ 2 Time _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 paid _ ADJ JJ _ 5 amod _ _ 5 circulation _ NOUN NN _ 14 nsubj _ _ 6 , _ PUNCT , _ 14 punct _ _ 7 according _ VERB VBG _ 10 case _ _ 8 to _ ADP TO _ 7 mwe _ _ 9 Audit _ PROPN NNP _ 10 compound _ _ 10 Bureau _ PROPN NNP _ 14 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Circulations _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 dropped _ VERB VBD _ 0 root _ _ 15 7.3 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 14 dobj _ _ 17 to _ ADP TO _ 18 case _ _ 18 4,393,237 _ NUM CD _ 14 nmod _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 six _ NUM CD _ 22 nummod _ _ 22 months _ NOUN NNS _ 14 nmod _ _ 23 ended _ VERB VBD _ 22 acl _ _ 24 June _ PROPN NNP _ 23 nmod:tmod _ _ 25 30 _ NUM CD _ 24 nummod _ _ 26 , _ PUNCT , _ 24 punct _ _ 27 1989 _ NUM CD _ 24 nummod _ _ 28 . _ PUNCT . _ 14 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 Time _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 move _ NOUN NN _ 8 nsubjpass _ _ 6 is _ AUX VBZ _ 8 aux _ _ 7 being _ AUX VBG _ 8 auxpass _ _ 8 received _ VERB VBN _ 0 root _ _ 9 well _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 once _ ADV RB _ 12 advmod _ _ 12 again _ ADV RB _ 8 advmod _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 terrific _ ADJ JJ _ 17 ccomp _ _ 5 for _ SCONJ IN _ 8 mark _ _ 6 advertisers _ NOUN NNS _ 8 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 know _ VERB VB _ 4 advcl _ _ 9 the _ DET DT _ 10 det _ _ 10 reader _ NOUN NN _ 13 nsubj _ _ 11 will _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 aux _ _ 13 paying _ VERB VBG _ 8 ccomp _ _ 14 more _ ADJ JJR _ 13 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Michael _ PROPN NNP _ 19 compound _ _ 19 Drexler _ PROPN NNP _ 17 nsubj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 national _ ADJ JJ _ 23 amod _ _ 22 media _ NOUN NNS _ 23 compound _ _ 23 director _ NOUN NN _ 19 appos _ _ 24 at _ ADP IN _ 28 case _ _ 25 Bozell _ PROPN NNP _ 28 compound _ _ 26 Inc. _ PROPN NNP _ 28 compound _ _ 27 ad _ NOUN NN _ 28 compound _ _ 28 agency _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 A _ DET DT _ 4 det _ _ 3 few _ ADJ JJ _ 4 amod _ _ 4 drops _ NOUN NNS _ 10 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 circulation _ NOUN NN _ 4 nmod _ _ 7 are _ VERB VBP _ 10 cop _ _ 8 of _ ADP IN _ 10 case _ _ 9 no _ DET DT _ 10 neg _ _ 10 consequence _ NOUN NN _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 not _ PART RB _ 5 neg _ _ 4 a _ DET DT _ 5 det _ _ 5 show _ NOUN NN _ 0 root _ _ 6 of _ ADP IN _ 7 case _ _ 7 weakness _ NOUN NN _ 5 nmod _ _ 8 ; _ PUNCT : _ 5 punct _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 are _ AUX VBP _ 11 aux _ _ 11 improving _ VERB VBG _ 5 parataxis _ _ 12 the _ DET DT _ 13 det _ _ 13 quality _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 circulation _ NOUN NN _ 13 nmod _ _ 16 while _ SCONJ IN _ 17 mark _ _ 17 insuring _ VERB VBG _ 11 advcl _ _ 18 their _ PRON PRP$ _ 19 nmod:poss _ _ 19 profits _ NOUN NNS _ 17 dobj _ _ 20 . _ PUNCT . _ 5 punct _ _ 21 '' _ PUNCT '' _ 5 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Heinemann _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 changes _ NOUN NNS _ 6 nsubj _ _ 6 represent _ VERB VBP _ 3 ccomp _ _ 7 a _ DET DT _ 9 det _ _ 8 new _ ADJ JJ _ 9 amod _ _ 9 focus _ NOUN NN _ 6 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 magazine _ NOUN NN _ 13 compound _ _ 13 industry _ NOUN NN _ 9 nmod _ _ 14 : _ PUNCT : _ 9 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 magazine _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 net _ ADJ JJ _ 19 amod _ _ 19 revenue _ NOUN NN _ 9 dep _ _ 20 per _ ADP IN _ 21 case _ _ 21 subscriber _ NOUN NN _ 19 nmod _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 or _ CONJ CC _ 19 cc _ _ 24 the _ DET DT _ 26 det _ _ 25 actual _ ADJ JJ _ 26 amod _ _ 26 revenue _ NOUN NN _ 19 conj _ _ 27 from _ ADP IN _ 28 case _ _ 28 subscribers _ NOUN NNS _ 26 nmod _ _ 29 after _ SCONJ IN _ 38 mark _ _ 30 discounts _ NOUN NNS _ 38 nsubjpass _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 the _ DET DT _ 33 det _ _ 33 cost _ NOUN NN _ 30 conj _ _ 34 of _ ADP IN _ 35 case _ _ 35 premiums _ NOUN NNS _ 33 nmod _ _ 36 have _ AUX VBP _ 38 aux _ _ 37 been _ AUX VBN _ 38 auxpass _ _ 38 stripped _ VERB VBN _ 26 acl _ _ 39 away _ ADP RP _ 38 compound:prt _ _ 40 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 question _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 15 ccomp _ _ 5 how _ ADV WRB _ 6 advmod _ _ 6 much _ ADJ JJ _ 9 dep _ _ 7 are _ AUX VBP _ 9 aux _ _ 8 we _ PRON PRP _ 9 nsubj _ _ 9 getting _ VERB VBG _ 4 ccomp _ _ 10 from _ ADP IN _ 12 case _ _ 11 each _ DET DT _ 12 det _ _ 12 reader _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Heinemann _ PROPN NNP _ 15 nsubj _ _ 18 . _ PUNCT . _ 15 punct _ _ 1 Time _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 rivals _ NOUN NNS _ 4 compound _ _ 4 news-weeklies _ NOUN NNS _ 20 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Washington _ PROPN NNP _ 8 compound _ _ 7 Post _ PROPN NNP _ 8 compound _ _ 8 Co. _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 Newsweek _ PROPN NNP _ 4 appos _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 U.S. _ PROPN NNP _ 13 compound _ _ 13 News _ PROPN NNP _ 10 conj _ _ 14 & _ CONJ CC _ 13 cc _ _ 15 World _ PROPN NNP _ 16 compound _ _ 16 Report _ PROPN NNP _ 13 conj _ _ 17 , _ PUNCT , _ 4 punct _ _ 18 are _ VERB VBP _ 20 cop _ _ 19 less _ ADV RBR _ 20 advmod _ _ 20 reliant _ ADJ JJ _ 0 root _ _ 21 on _ ADP IN _ 23 case _ _ 22 electronic _ ADJ JJ _ 23 amod _ _ 23 giveaways _ NOUN NNS _ 20 nmod _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 in _ ADP IN _ 28 case _ _ 27 recent _ ADJ JJ _ 28 amod _ _ 28 years _ NOUN NNS _ 32 nmod _ _ 29 both _ DET DT _ 32 nsubj _ _ 30 have _ AUX VBP _ 32 aux _ _ 31 been _ AUX VBN _ 32 aux _ _ 32 increasing _ VERB VBG _ 20 conj _ _ 33 their _ PRON PRP$ _ 36 nmod:poss _ _ 34 circulation _ NOUN NN _ 36 compound _ _ 35 rate _ NOUN NN _ 36 compound _ _ 36 bases _ NOUN NNS _ 32 dobj _ _ 37 . _ PUNCT . _ 20 punct _ _ 1 Both _ DET DT _ 2 det _ _ 2 magazines _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 expected _ VERB VBN _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 announce _ VERB VB _ 4 xcomp _ _ 7 their _ PRON PRP$ _ 9 nmod:poss _ _ 8 ad _ NOUN NN _ 9 compound _ _ 9 rates _ NOUN NNS _ 6 dobj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 circulation _ NOUN NN _ 12 compound _ _ 12 levels _ NOUN NNS _ 9 conj _ _ 13 for _ ADP IN _ 14 case _ _ 14 1990 _ NUM CD _ 9 nmod _ _ 15 within _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 month _ NOUN NN _ 6 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 4 advmod _ _ 2 the _ DET DT _ 3 det _ _ 3 news _ NOUN NN _ 4 nsubj _ _ 4 broke _ VERB VBD _ 18 advcl _ _ 5 of _ ADP IN _ 8 case _ _ 6 an _ DET DT _ 8 det _ _ 7 attempted _ ADJ JJ _ 8 amod _ _ 8 coup _ NOUN NN _ 4 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Panama _ PROPN NNP _ 8 nmod _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 weeks _ NOUN NNS _ 13 nmod:npmod _ _ 13 ago _ ADV RB _ 4 advmod _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 Sen. _ PROPN NNP _ 17 compound _ _ 16 Christopher _ PROPN NNP _ 17 compound _ _ 17 Dodd _ PROPN NNP _ 18 nsubj _ _ 18 called _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 21 det _ _ 20 State _ PROPN NNP _ 21 compound _ _ 21 Department _ PROPN NNP _ 18 dobj _ _ 22 for _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 briefing _ NOUN NN _ 18 nmod _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 They _ PRON PRP _ 3 nsubj _ _ 3 said _ VERB VBD _ 12 ccomp _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 ` _ PUNCT `` _ 3 punct _ _ 6 follow _ VERB VB _ 3 ccomp _ _ 7 CNN _ PROPN NNP _ 6 dobj _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 ' _ PUNCT '' _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 told _ VERB VBD _ 0 root _ _ 13 reporters _ NOUN NNS _ 12 dobj _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 shows _ VERB VBZ _ 0 root _ _ 3 how _ ADV WRB _ 4 advmod _ _ 4 far _ ADV RB _ 12 advmod _ _ 5 Ted _ PROPN NNP _ 6 compound _ _ 6 Turner _ PROPN NNP _ 10 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 Cable _ PROPN NNP _ 10 compound _ _ 9 News _ PROPN NNP _ 10 compound _ _ 10 Network _ PROPN NNP _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 come _ VERB VBN _ 2 ccomp _ _ 13 since _ ADP IN _ 15 case _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 birth _ NOUN NN _ 12 nmod _ _ 16 nine _ NUM CD _ 17 nummod _ _ 17 years _ NOUN NNS _ 18 nmod:npmod _ _ 18 ago _ ADV RB _ 15 advmod _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 when _ ADV WRB _ 23 advmod _ _ 21 it _ PRON PRP _ 23 nsubjpass _ _ 22 was _ AUX VBD _ 23 auxpass _ _ 23 considered _ VERB VBN _ 15 acl:relcl _ _ 24 the _ DET DT _ 25 det _ _ 25 laughingstock _ NOUN NN _ 23 xcomp _ _ 26 of _ ADP IN _ 28 case _ _ 27 television _ NOUN NN _ 28 compound _ _ 28 news _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 bigger _ ADJ JJR _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 faster _ ADJ JJR _ 3 conj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 more _ ADV RBR _ 8 advmod _ _ 8 profitable _ ADJ JJ _ 3 conj _ _ 9 than _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 news _ NOUN NN _ 12 compound _ _ 12 divisions _ NOUN NNS _ 3 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 any _ DET DT _ 12 nmod _ _ 15 of _ ADP IN _ 20 case _ _ 16 the _ DET DT _ 20 det _ _ 17 three _ NUM CD _ 20 nummod _ _ 18 major _ ADJ JJ _ 20 amod _ _ 19 broadcast _ NOUN NN _ 20 compound _ _ 20 networks _ NOUN NNS _ 14 nmod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 niche _ NOUN NN _ 13 nsubj _ _ 3 as _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 network _ NOUN NN _ 2 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 record _ NOUN NN _ 6 nmod _ _ 9 '' _ PUNCT '' _ 6 punct _ _ 10 during _ ADP IN _ 12 case _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 crises _ NOUN NNS _ 6 nmod _ _ 13 draws _ VERB VBZ _ 0 root _ _ 14 elite _ ADJ JJ _ 15 amod _ _ 15 audiences _ NOUN NNS _ 13 dobj _ _ 16 around _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 world _ NOUN NN _ 13 nmod _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 for _ ADP IN _ 5 case _ _ 3 all _ DET PDT _ 5 det:predet _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 success _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 CNN _ PROPN NNP _ 9 nsubj _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 hit _ VERB VBN _ 0 root _ _ 10 a _ DET DT _ 11 det _ _ 11 plateau _ NOUN NN _ 9 dobj _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Although _ SCONJ IN _ 3 mark _ _ 2 viewership _ NOUN NN _ 3 nsubj _ _ 3 soars _ NOUN NNS _ 10 advcl _ _ 4 when _ ADV WRB _ 7 advmod _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 news _ NOUN NN _ 7 nsubj _ _ 7 breaks _ VERB VBZ _ 3 advcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 ebbs _ VERB VBZ _ 0 root _ _ 11 during _ ADP IN _ 12 case _ _ 12 periods _ NOUN NNS _ 10 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 calm _ NOUN NN _ 12 nmod _ _ 15 . _ PUNCT . _ 10 punct _ _ 1 CNN _ PROPN NNP _ 2 compound _ _ 2 executives _ NOUN NNS _ 3 nsubj _ _ 3 worry _ VERB VBP _ 0 root _ _ 4 that _ SCONJ IN _ 15 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 network _ NOUN NN _ 12 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 punchy _ ADJ JJ _ 12 amod _ _ 9 but _ CONJ CC _ 8 cc _ _ 10 repetitive _ ADJ JJ _ 8 conj _ _ 11 news _ NOUN NN _ 12 compound _ _ 12 format _ NOUN NN _ 15 nsubj _ _ 13 may _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 aux _ _ 15 getting _ VERB VBG _ 3 ccomp _ _ 16 stale _ ADJ JJ _ 15 xcomp _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 wo _ AUX MD _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 keep _ VERB VB _ 15 conj _ _ 21 viewers _ NOUN NNS _ 22 nsubj _ _ 22 coming _ VERB VBG _ 20 dep _ _ 23 back _ ADV RB _ 22 advmod _ _ 24 as _ SCONJ IN _ 27 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 alternatives _ NOUN NNS _ 27 nsubj _ _ 27 multiply _ VERB VBP _ 22 advcl _ _ 28 for _ ADP IN _ 29 case _ _ 29 news _ NOUN NN _ 27 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 information _ NOUN NN _ 29 conj _ _ 32 on _ ADP IN _ 33 case _ _ 33 cable-TV _ NOUN NN _ 27 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Just _ ADV RB _ 4 advmod _ _ 3 the _ DET DT _ 4 det _ _ 4 fact _ NOUN NN _ 13 nsubj _ _ 5 we _ PRON PRP _ 7 nsubj _ _ 6 're _ VERB VBP _ 7 cop _ _ 7 on _ ADP IN _ 4 ccomp _ _ 8 24 _ NUM CD _ 9 nummod _ _ 9 hours _ NOUN NNS _ 7 nmod:tmod _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 no _ DET DT _ 12 neg _ _ 12 longer _ ADV RBR _ 13 advmod _ _ 13 bulletin _ NOUN NN _ 16 ccomp _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 says _ VERB VBZ _ 0 root _ _ 17 Ed _ PROPN NNP _ 18 compound _ _ 18 Turner _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 CNN _ PROPN NNP _ 24 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 executive _ ADJ JJ _ 24 amod _ _ 23 vice _ NOUN NN _ 24 compound _ _ 24 president _ NOUN NN _ 18 appos _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 news _ NOUN NN _ 27 compound _ _ 27 gathering _ NOUN NN _ 24 appos _ _ 28 -LRB- _ PUNCT -LRB- _ 31 punct _ _ 29 and _ CONJ CC _ 31 cc _ _ 30 no _ DET DT _ 31 neg _ _ 31 relation _ NOUN NN _ 24 dep _ _ 32 to _ ADP TO _ 34 case _ _ 33 Ted _ PROPN NNP _ 34 compound _ _ 34 Turner _ PROPN NNP _ 31 nmod _ _ 35 -RRB- _ PUNCT -RRB- _ 31 punct _ _ 36 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 You _ PRON PRP _ 5 nsubj _ _ 3 ca _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 live _ VERB VB _ 0 root _ _ 6 on _ ADP IN _ 7 case _ _ 7 that _ PRON DT _ 5 nmod _ _ 8 . _ PUNCT . _ 5 punct _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 1 So _ ADV RB _ 14 advmod _ _ 2 CNN _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 unit _ NOUN NN _ 2 appos _ _ 6 of _ ADP IN _ 11 case _ _ 7 Atlanta-based _ ADJ JJ _ 11 amod _ _ 8 Turner _ PROPN NNP _ 11 compound _ _ 9 Broadcasting _ PROPN NNP _ 11 compound _ _ 10 System _ PROPN NNP _ 11 compound _ _ 11 Inc. _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 trying _ VERB VBG _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 reposition _ VERB VB _ 14 xcomp _ _ 17 itself _ PRON PRP _ 16 dobj _ _ 18 as _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 primary _ ADJ JJ _ 21 amod _ _ 21 channel _ NOUN NN _ 16 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 or _ CONJ CC _ 21 cc _ _ 24 what _ PRON WP _ 37 dobj _ _ 25 people _ NOUN NNS _ 30 nsubj _ _ 26 in _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 television _ NOUN NN _ 29 compound _ _ 29 industry _ NOUN NN _ 25 nmod _ _ 30 call _ VERB VBP _ 21 conj _ _ 31 a _ DET DT _ 37 det _ _ 32 `` _ PUNCT `` _ 37 punct _ _ 33 top _ NOUN NN _ 37 dep _ _ 34 of _ ADP IN _ 35 case _ _ 35 mind _ NOUN NN _ 33 nmod _ _ 36 '' _ PUNCT '' _ 37 punct _ _ 37 network _ NOUN NN _ 30 xcomp _ _ 38 . _ PUNCT . _ 14 punct _ _ 1 Tonight _ ADV RB _ 11 nmod:tmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 to _ PART TO _ 4 mark _ _ 4 kick _ VERB VB _ 11 advcl _ _ 5 off _ ADP RP _ 4 compound:prt _ _ 6 the _ DET DT _ 7 det _ _ 7 effort _ NOUN NN _ 4 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 CNN _ PROPN NNP _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 premiere _ VERB VB _ 0 root _ _ 12 its _ PRON PRP$ _ 15 nmod:poss _ _ 13 first _ ADJ JJ _ 15 amod _ _ 14 prime-time _ NOUN NN _ 15 compound _ _ 15 newscast _ NOUN NN _ 11 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 years _ NOUN NNS _ 15 nmod _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 an _ DET DT _ 21 det _ _ 20 hourlong _ ADJ JJ _ 21 amod _ _ 21 show _ NOUN NN _ 15 appos _ _ 22 at _ ADP IN _ 27 case _ _ 23 6 _ NUM CD _ 27 nummod _ _ 24 p.m _ ADV RB _ 27 advmod _ _ 25 . _ PUNCT . _ 27 punct _ _ 26 Eastern _ ADJ JJ _ 27 amod _ _ 27 time _ NOUN NN _ 21 nmod _ _ 28 to _ PART TO _ 29 mark _ _ 29 air _ VERB VB _ 21 acl _ _ 30 head-to-head _ ADV RB _ 29 advmod _ _ 31 against _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 network _ NOUN NN _ 34 compound _ _ 34 newscasts _ NOUN NNS _ 29 nmod _ _ 35 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 show _ NOUN NN _ 5 nsubjpass _ _ 3 will _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 co-anchored _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 Bernard _ PROPN NNP _ 8 compound _ _ 8 Shaw _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Catherine _ PROPN NNP _ 11 compound _ _ 11 Crier _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 a _ DET DT _ 17 det _ _ 14 34-year-old _ ADJ JJ _ 17 amod _ _ 15 former _ ADJ JJ _ 17 amod _ _ 16 Texas _ PROPN NNP _ 17 compound _ _ 17 judge _ NOUN NN _ 11 appos _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 campus _ NOUN NN _ 21 compound _ _ 20 beauty _ NOUN NN _ 21 compound _ _ 21 queen _ NOUN NN _ 17 conj _ _ 22 who _ PRON WP _ 25 nsubj _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 never _ ADV RB _ 25 neg _ _ 25 held _ VERB VBN _ 17 acl:relcl _ _ 26 a _ DET DT _ 27 det _ _ 27 job _ NOUN NN _ 25 dobj _ _ 28 in _ ADP IN _ 29 case _ _ 29 television _ NOUN NN _ 27 nmod _ _ 30 or _ CONJ CC _ 29 cc _ _ 31 journalism _ NOUN NN _ 29 conj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 show _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 perhaps _ ADV RB _ 7 advmod _ _ 6 the _ DET DT _ 7 det _ _ 7 boldest _ ADJ JJS _ 0 root _ _ 8 in _ ADP IN _ 10 case _ _ 9 a _ DET DT _ 10 det _ _ 10 number _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 steps _ NOUN NNS _ 10 nmod _ _ 13 the _ DET DT _ 14 det _ _ 14 network _ NOUN NN _ 16 nsubj _ _ 15 is _ AUX VBZ _ 16 aux _ _ 16 taking _ VERB VBG _ 12 acl:relcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 build _ VERB VB _ 16 xcomp _ _ 19 audience _ NOUN NN _ 20 compound _ _ 20 loyalty _ NOUN NN _ 18 dobj _ _ 21 by _ SCONJ IN _ 22 mark _ _ 22 shifting _ VERB VBG _ 18 advcl _ _ 23 away _ ADV RB _ 22 advmod _ _ 24 from _ ADP IN _ 27 case _ _ 25 its _ PRON PRP$ _ 27 nmod:poss _ _ 26 current _ ADJ JJ _ 27 amod _ _ 27 format _ NOUN NN _ 23 nmod _ _ 28 toward _ ADP IN _ 34 case _ _ 29 more _ ADJ JJR _ 34 amod _ _ 30 full-length _ ADJ JJ _ 34 amod _ _ 31 `` _ PUNCT `` _ 34 punct _ _ 32 signature _ NOUN NN _ 34 compound _ _ 33 '' _ PUNCT '' _ 34 punct _ _ 34 programming _ NOUN NN _ 22 nmod _ _ 35 with _ ADP IN _ 37 case _ _ 36 recognizable _ ADJ JJ _ 37 amod _ _ 37 stars _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 7 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 distinguish _ VERB VB _ 8 advcl _ _ 3 itself _ PRON PRP _ 2 dobj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 CNN _ PROPN NNP _ 8 nsubj _ _ 6 is _ AUX VBZ _ 8 aux _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 expanding _ VERB VBG _ 0 root _ _ 9 international _ ADJ JJ _ 10 amod _ _ 10 coverage _ NOUN NN _ 8 dobj _ _ 11 and _ CONJ CC _ 8 cc _ _ 12 adding _ VERB VBG _ 8 conj _ _ 13 a _ DET DT _ 16 det _ _ 14 second _ ADJ JJ _ 16 amod _ _ 15 global-news _ NOUN NN _ 16 compound _ _ 16 program _ NOUN NN _ 12 dobj _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 paying _ VERB VBG _ 0 root _ _ 4 higher _ ADJ JJR _ 5 amod _ _ 5 salaries _ NOUN NNS _ 3 dobj _ _ 6 -- _ PUNCT : _ 8 punct _ _ 7 after _ ADP IN _ 8 case _ _ 8 years _ NOUN NNS _ 3 dep _ _ 9 of _ ADP IN _ 10 case _ _ 10 scrimping _ VERB VBG _ 8 nmod _ _ 11 -- _ PUNCT : _ 8 punct _ _ 12 to _ PART TO _ 13 mark _ _ 13 lure _ VERB VB _ 3 advcl _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 keep _ VERB VB _ 13 conj _ _ 16 experienced _ ADJ JJ _ 17 amod _ _ 17 staffers _ NOUN NNS _ 13 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 embarking _ VERB VBG _ 0 root _ _ 5 on _ ADP IN _ 8 case _ _ 6 an _ DET DT _ 8 det _ _ 7 expensive _ ADJ JJ _ 8 amod _ _ 8 gamble _ NOUN NN _ 4 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 break _ VERB VB _ 8 acl _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 stories _ NOUN NNS _ 10 dobj _ _ 13 with _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 large _ ADJ JJ _ 17 amod _ _ 16 investigative-reporting _ NOUN NN _ 17 compound _ _ 17 team _ NOUN NN _ 10 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 32 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 next _ ADJ JJ _ 4 amod _ _ 4 stage _ NOUN NN _ 5 nsubj _ _ 5 is _ VERB VBZ _ 32 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 get _ VERB VB _ 5 xcomp _ _ 8 beyond _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 opinion _ NOUN NN _ 11 compound _ _ 11 leaders _ NOUN NNS _ 7 nmod _ _ 12 who _ PRON WP _ 13 nsubj _ _ 13 use _ VERB VBP _ 11 acl:relcl _ _ 14 us _ PRON PRP _ 13 dobj _ _ 15 as _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 point _ NOUN NN _ 13 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 reference _ NOUN NN _ 17 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 become _ VERB VB _ 7 xcomp _ _ 22 a _ DET DT _ 23 det _ _ 23 point _ NOUN NN _ 21 xcomp _ _ 24 of _ ADP IN _ 25 case _ _ 25 reference _ NOUN NN _ 23 nmod _ _ 26 at _ ADP IN _ 29 case _ _ 27 ordinary _ ADJ JJ _ 29 amod _ _ 28 dinner _ NOUN NN _ 29 compound _ _ 29 tables _ NOUN NNS _ 21 nmod _ _ 30 , _ PUNCT , _ 32 punct _ _ 31 '' _ PUNCT '' _ 32 punct _ _ 32 says _ VERB VBZ _ 0 root _ _ 33 Jon _ PROPN NNP _ 34 compound _ _ 34 Petrovich _ PROPN NNP _ 32 dep _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 executive _ ADJ JJ _ 38 amod _ _ 37 vice _ NOUN NN _ 38 compound _ _ 38 president _ NOUN NN _ 34 appos _ _ 39 of _ ADP IN _ 41 case _ _ 40 Headline _ PROPN NNP _ 41 compound _ _ 41 News _ PROPN NNP _ 38 nmod _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 CNN _ PROPN NNP _ 46 nmod:poss _ _ 44 's _ PART POS _ 43 case _ _ 45 sister _ NOUN NN _ 46 compound _ _ 46 network _ NOUN NN _ 41 appos _ _ 47 . _ PUNCT . _ 32 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 that _ PRON DT _ 6 nsubj _ _ 3 wo _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ VERB VB _ 6 cop _ _ 6 easy _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Networks _ NOUN NNS _ 8 nsubj _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 like _ ADP IN _ 6 case _ _ 4 other _ ADJ JJ _ 6 amod _ _ 5 consumer _ NOUN NN _ 6 compound _ _ 6 products _ NOUN NNS _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 develop _ VERB VBP _ 0 root _ _ 9 images _ NOUN NNS _ 8 dobj _ _ 10 in _ ADP IN _ 13 case _ _ 11 peoples _ NOUN NNS _ 13 nmod:poss _ _ 12 ' _ PART POS _ 11 case _ _ 13 minds _ NOUN NNS _ 9 nmod _ _ 14 that _ PRON WDT _ 17 nsubj _ _ 15 are _ VERB VBP _ 17 cop _ _ 16 n't _ PART RB _ 17 neg _ _ 17 easy _ ADJ JJ _ 9 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 change _ VERB VB _ 17 ccomp _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 takes _ VERB VBZ _ 0 root _ _ 4 money _ NOUN NN _ 3 dobj _ _ 5 that _ ADP IN _ 9 dobj _ _ 6 CNN _ PROPN NNP _ 9 nsubj _ _ 7 has _ AUX VBZ _ 9 aux _ _ 8 been _ VERB VBN _ 9 cop _ _ 9 reluctant _ ADJ JJ _ 4 acl:relcl _ _ 10 to _ PART TO _ 11 mark _ _ 11 spend _ VERB VB _ 9 xcomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 make _ VERB VB _ 3 advcl _ _ 14 programs _ NOUN NNS _ 13 dobj _ _ 15 and _ CONJ CC _ 13 cc _ _ 16 hire _ VERB VB _ 13 conj _ _ 17 talent _ NOUN NN _ 16 dobj _ _ 18 that _ ADP IN _ 21 dobj _ _ 19 viewers _ NOUN NNS _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 tune _ VERB VB _ 17 acl:relcl _ _ 22 in _ ADP RP _ 21 compound:prt _ _ 23 specially _ ADV RB _ 21 advmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 see _ VERB VB _ 21 xcomp _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 13 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 cable-TV _ NOUN NN _ 4 compound _ _ 4 operators _ NOUN NNS _ 13 nsubj _ _ 5 -- _ PUNCT : _ 8 punct _ _ 6 CNN _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 distributors _ NOUN NNS _ 4 dep _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 part _ ADJ JJ _ 11 amod _ _ 11 owners _ NOUN NNS _ 8 conj _ _ 12 -- _ PUNCT : _ 8 punct _ _ 13 like _ ADP IN _ 0 root _ _ 14 things _ NOUN NNS _ 17 nsubj _ _ 15 just _ ADV RB _ 17 advmod _ _ 16 the _ DET DT _ 17 det _ _ 17 way _ NOUN NN _ 13 xcomp _ _ 18 they _ PRON PRP _ 19 nsubj _ _ 19 are _ VERB VBP _ 17 acl:relcl _ _ 20 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 repositioning _ NOUN NN _ 3 compound _ _ 3 bid _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 aimed _ VERB VBN _ 0 root _ _ 6 at _ ADP IN _ 10 case _ _ 7 CNN _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 unsteady _ ADJ JJ _ 10 amod _ _ 10 viewership _ NOUN NN _ 5 nmod _ _ 11 -- _ PUNCT : _ 10 punct _ _ 12 and _ CONJ CC _ 10 cc _ _ 13 what _ PRON WP _ 15 nsubj _ _ 14 may _ AUX MD _ 15 aux _ _ 15 happen _ VERB VB _ 10 conj _ _ 16 to _ ADP TO _ 17 case _ _ 17 it _ PRON PRP _ 15 nmod _ _ 18 as _ SCONJ IN _ 23 mark _ _ 19 the _ DET DT _ 22 det _ _ 20 cable-TV _ NOUN NN _ 22 compound _ _ 21 news _ NOUN NN _ 22 compound _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 grows _ VERB VBZ _ 15 advcl _ _ 24 more _ ADV RBR _ 25 advmod _ _ 25 competitive _ ADJ JJ _ 23 xcomp _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Already _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 CNN _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 facing _ VERB VBG _ 0 root _ _ 6 stronger _ ADJ JJR _ 7 amod _ _ 7 competition _ NOUN NN _ 5 dobj _ _ 8 from _ ADP IN _ 12 case _ _ 9 Financial _ PROPN NNP _ 12 compound _ _ 10 News _ PROPN NNP _ 12 compound _ _ 11 Network _ PROPN NNP _ 12 compound _ _ 12 Inc. _ PROPN NNP _ 7 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 General _ PROPN NNP _ 16 compound _ _ 15 Electric _ PROPN NNP _ 16 compound _ _ 16 Co. _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 Consumer _ PROPN NNP _ 19 compound _ _ 19 News _ PROPN NNP _ 12 conj _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 Business _ PROPN NNP _ 22 compound _ _ 22 Channel _ PROPN NNP _ 19 conj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 both _ DET DT _ 28 nsubj _ _ 25 of _ ADP IN _ 26 case _ _ 26 which _ PRON WDT _ 24 nmod _ _ 27 are _ VERB VBP _ 28 cop _ _ 28 likely _ ADJ JJ _ 12 acl:relcl _ _ 29 to _ PART TO _ 30 mark _ _ 30 pursue _ VERB VB _ 28 xcomp _ _ 31 more _ ADJ JJR _ 32 dep _ _ 32 general _ ADJ JJ _ 33 amod _ _ 33 news _ NOUN NN _ 30 dobj _ _ 34 in _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 future _ NOUN NN _ 30 nmod _ _ 37 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 9 nmod _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 many _ ADJ JJ _ 6 amod _ _ 5 cable-TV _ NOUN NN _ 6 compound _ _ 6 systems _ NOUN NNS _ 9 nsubj _ _ 7 themselves _ PRON PRP _ 6 nmod:npmod _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 airing _ VERB VBG _ 0 root _ _ 10 more _ ADJ JJR _ 15 amod _ _ 11 local _ ADJ JJ _ 15 amod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 regional _ ADJ JJ _ 11 conj _ _ 14 news _ NOUN NN _ 15 compound _ _ 15 programs _ NOUN NNS _ 9 dobj _ _ 16 produced _ VERB VBN _ 15 acl _ _ 17 by _ ADP IN _ 20 case _ _ 18 local _ ADJ JJ _ 20 amod _ _ 19 broadcast _ NOUN NN _ 20 compound _ _ 20 stations _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 CNN _ PROPN NNP _ 2 nsubj _ _ 2 wants _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 change _ VERB VB _ 2 xcomp _ _ 5 its _ PRON PRP$ _ 6 nmod:poss _ _ 6 viewers _ NOUN NNS _ 8 nmod:poss _ _ 7 ' _ PART POS _ 6 case _ _ 8 habits _ NOUN NNS _ 4 dobj _ _ 9 . _ PUNCT . _ 2 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 watchers _ NOUN NNS _ 11 nsubj _ _ 3 are _ VERB VBP _ 11 cop _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 on _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 whole _ NOUN NN _ 11 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 disloyal _ ADJ JJ _ 11 amod _ _ 11 group _ NOUN NN _ 0 root _ _ 12 of _ ADP IN _ 15 case _ _ 13 channel-zapping _ ADJ JJ _ 15 amod _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 grazers _ NOUN NNS _ 11 nmod _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 news _ NOUN NN _ 19 compound _ _ 19 junkies _ NOUN NNS _ 15 conj _ _ 20 , _ PUNCT , _ 11 punct _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 spend _ VERB VBP _ 11 acl:relcl _ _ 23 an _ DET DT _ 24 det _ _ 24 average _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 28 case _ _ 26 just _ ADV RB _ 27 advmod _ _ 27 26 _ NUM CD _ 28 nummod _ _ 28 minutes _ NOUN NNS _ 24 nmod _ _ 29 a _ DET DT _ 30 det _ _ 30 day _ NOUN NN _ 28 nmod:npmod _ _ 31 watching _ VERB VBG _ 22 xcomp _ _ 32 CNN _ PROPN NNP _ 31 dobj _ _ 33 , _ PUNCT , _ 22 punct _ _ 34 according _ VERB VBG _ 37 case _ _ 35 to _ ADP TO _ 34 mwe _ _ 36 audience _ NOUN NN _ 37 compound _ _ 37 research _ NOUN NN _ 22 nmod _ _ 38 . _ PUNCT . _ 11 punct _ _ 1 That _ PRON DT _ 7 nsubj _ _ 2 's _ VERB VBZ _ 7 cop _ _ 3 less _ ADJ JJR _ 5 advmod _ _ 4 than _ ADP IN _ 3 mwe _ _ 5 one-third _ NOUN NN _ 7 nummod _ _ 6 the _ DET DT _ 7 det _ _ 7 time _ NOUN NN _ 0 root _ _ 8 that _ ADP IN _ 10 advmod _ _ 9 viewers _ NOUN NNS _ 10 nsubj _ _ 10 watch _ VERB VBP _ 7 dep _ _ 11 the _ DET DT _ 14 det _ _ 12 major _ ADJ JJ _ 14 amod _ _ 13 broadcast _ NOUN NN _ 14 compound _ _ 14 networks _ NOUN NNS _ 10 dobj _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 brief _ ADJ JJ _ 3 amod _ _ 3 attention _ NOUN NN _ 8 nsubj _ _ 4 viewers _ NOUN NNS _ 5 nsubj _ _ 5 give _ VERB VBP _ 3 acl:relcl _ _ 6 CNN _ PROPN NNP _ 5 dobj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 put _ VERB VB _ 0 root _ _ 9 it _ PRON PRP _ 8 dobj _ _ 10 at _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 disadvantage _ NOUN NN _ 8 nmod _ _ 13 as _ SCONJ IN _ 20 mark _ _ 14 ratings _ NOUN NNS _ 15 compound _ _ 15 data _ NOUN NNS _ 20 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 advertising _ NOUN NN _ 15 conj _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 become _ VERB VBN _ 8 advcl _ _ 21 more _ ADV RBR _ 22 advmod _ _ 22 important _ ADJ JJ _ 20 xcomp _ _ 23 to _ ADP TO _ 25 case _ _ 24 cable-TV _ NOUN NN _ 25 compound _ _ 25 channels _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 8 punct _ _ 1 CNN _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 viewer _ NOUN NN _ 4 compound _ _ 4 habits _ NOUN NNS _ 7 nsubjpass _ _ 5 have _ AUX VBP _ 7 aux _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 molded _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 format _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 7 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 strategy _ NOUN NN _ 7 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 past _ NOUN NN _ 2 nmod _ _ 6 has _ AUX VBZ _ 7 aux _ _ 7 been _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 serve _ VERB VB _ 7 xcomp _ _ 10 as _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 TV _ NOUN NN _ 14 compound _ _ 13 wire _ NOUN NN _ 14 compound _ _ 14 service _ NOUN NN _ 9 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 focused _ VERB VBD _ 0 root _ _ 3 on _ SCONJ IN _ 4 case _ _ 4 building _ NOUN NN _ 2 advcl _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 news _ NOUN NN _ 8 compound _ _ 8 bureaus _ NOUN NN _ 4 dobj _ _ 9 around _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 world _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 so _ ADV RB _ 20 advmod _ _ 14 as _ SCONJ IN _ 16 mark _ _ 15 events _ NOUN NNS _ 16 nsubj _ _ 16 took _ VERB VBD _ 20 advcl _ _ 17 place _ NOUN NN _ 16 dobj _ _ 18 it _ PRON PRP _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 go _ VERB VB _ 2 ccomp _ _ 21 live _ ADJ JJ _ 20 xcomp _ _ 22 quicker _ ADV RBR _ 20 advmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 longer _ ADV RBR _ 22 conj _ _ 25 than _ ADP IN _ 27 case _ _ 26 other _ ADJ JJ _ 27 amod _ _ 27 networks _ NOUN NNS _ 22 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 filled _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 daily _ ADJ JJ _ 5 amod _ _ 5 schedule _ NOUN NN _ 2 dobj _ _ 6 with _ ADP IN _ 7 case _ _ 7 newscasts _ NOUN NNS _ 2 nmod _ _ 8 called _ VERB VBN _ 7 acl _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 Daybreak _ PROPN NNP _ 8 xcomp _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 `` _ PUNCT `` _ 10 punct _ _ 14 Daywatch _ PROPN NNP _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 '' _ PUNCT '' _ 10 punct _ _ 17 `` _ PUNCT `` _ 10 punct _ _ 18 Newsday _ PROPN NNP _ 10 conj _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 '' _ PUNCT '' _ 10 punct _ _ 21 and _ CONJ CC _ 10 cc _ _ 22 `` _ PUNCT `` _ 10 punct _ _ 23 Newsnight _ PROPN NNP _ 10 conj _ _ 24 , _ PUNCT , _ 2 punct _ _ 25 '' _ PUNCT '' _ 2 punct _ _ 26 but _ CONJ CC _ 2 cc _ _ 27 the _ DET DT _ 28 det _ _ 28 shows _ NOUN NNS _ 29 nsubj _ _ 29 varied _ VERB VBD _ 2 conj _ _ 30 little _ ADJ JJ _ 29 dobj _ _ 31 in _ ADP IN _ 32 case _ _ 32 content _ NOUN NN _ 29 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 personality _ NOUN NN _ 32 conj _ _ 35 or _ CONJ CC _ 32 cc _ _ 36 look _ NOUN NN _ 32 conj _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 Now _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 push _ NOUN NN _ 6 nsubj _ _ 5 is _ VERB VBZ _ 6 cop _ _ 6 on _ ADV RB _ 0 root _ _ 7 for _ ADP IN _ 9 case _ _ 8 more-distinctive _ ADJ JJR _ 9 amod _ _ 9 shows _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 Our _ PRON PRP$ _ 3 nmod:poss _ _ 3 goal _ NOUN NN _ 4 nsubj _ _ 4 is _ VERB VBZ _ 15 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 create _ VERB VB _ 4 xcomp _ _ 7 more _ ADJ JJR _ 8 amod _ _ 8 programs _ NOUN NNS _ 6 dobj _ _ 9 with _ ADP IN _ 12 case _ _ 10 an _ DET DT _ 12 det _ _ 11 individual _ ADJ JJ _ 12 amod _ _ 12 identity _ NOUN NN _ 8 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 Paul _ PROPN NNP _ 17 compound _ _ 17 Amos _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 CNN _ PROPN NNP _ 22 compound _ _ 20 executive _ ADJ JJ _ 22 amod _ _ 21 vice _ NOUN NN _ 22 compound _ _ 22 president _ NOUN NN _ 17 appos _ _ 23 for _ ADP IN _ 24 case _ _ 24 programming _ NOUN NN _ 22 nmod _ _ 25 . _ PUNCT . _ 15 punct _ _ 1 Accordingly _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 CNN _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 adding _ VERB VBG _ 34 ccomp _ _ 6 a _ DET DT _ 8 det _ _ 7 world-affairs _ NOUN NNS _ 8 compound _ _ 8 show _ NOUN NN _ 5 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 morning _ NOUN NN _ 8 nmod _ _ 12 because _ SCONJ IN _ 14 mark _ _ 13 surveys _ NOUN NNS _ 14 nsubj _ _ 14 show _ VERB VBP _ 5 advcl _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 global-news _ NOUN NN _ 17 compound _ _ 17 hour _ NOUN NN _ 28 nsubj _ _ 18 in _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 afternoon _ NOUN NN _ 17 nmod _ _ 21 is _ VERB VBZ _ 28 cop _ _ 22 among _ ADP IN _ 28 case _ _ 23 its _ PRON PRP$ _ 28 nmod:poss _ _ 24 most _ ADV RBS _ 26 advmod _ _ 25 `` _ PUNCT `` _ 26 punct _ _ 26 differentiated _ ADJ JJ _ 28 amod _ _ 27 '' _ PUNCT '' _ 26 punct _ _ 28 programs _ NOUN NNS _ 14 ccomp _ _ 29 in _ ADP IN _ 32 case _ _ 30 viewers _ NOUN NNS _ 32 nmod:poss _ _ 31 ' _ PART POS _ 30 case _ _ 32 minds _ NOUN NNS _ 28 nmod _ _ 33 , _ PUNCT , _ 34 punct _ _ 34 says _ VERB VBZ _ 0 root _ _ 35 Mr. _ PROPN NNP _ 36 compound _ _ 36 Amos _ PROPN NNP _ 34 nsubj _ _ 37 . _ PUNCT . _ 34 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 exploring _ VERB VBG _ 0 root _ _ 5 other _ ADJ JJ _ 7 amod _ _ 6 original _ ADJ JJ _ 7 amod _ _ 7 programs _ NOUN NNS _ 4 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 similar _ ADJ JJ _ 7 amod _ _ 10 to _ ADP TO _ 21 case _ _ 11 its _ PRON PRP$ _ 21 nmod:poss _ _ 12 `` _ PUNCT `` _ 21 punct _ _ 13 Larry _ PROPN NNP _ 14 compound _ _ 14 King _ PROPN NNP _ 21 compound _ _ 15 Live _ PROPN NNP _ 14 amod _ _ 16 '' _ PUNCT '' _ 21 punct _ _ 17 and _ CONJ CC _ 21 cc _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 Crossfire _ PROPN NNP _ 21 compound _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 talk _ NOUN NN _ 9 nmod _ _ 22 shows _ VERB VBZ _ 21 dep _ _ 23 , _ PUNCT , _ 7 punct _ _ 24 which _ PRON WDT _ 26 dobj _ _ 25 executives _ NOUN NNS _ 26 nsubj _ _ 26 hope _ VERB VBP _ 7 acl:relcl _ _ 27 will _ AUX MD _ 28 aux _ _ 28 keep _ VERB VB _ 26 ccomp _ _ 29 people _ NOUN NNS _ 30 nsubj _ _ 30 tuned _ VERB VBN _ 28 dep _ _ 31 in _ ADP RP _ 30 compound:prt _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Then _ ADV RB _ 3 advmod _ _ 2 there _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 0 root _ _ 4 `` _ PUNCT `` _ 6 punct _ _ 5 The _ PROPN NNP _ 6 compound _ _ 6 World _ PROPN NNP _ 3 nsubj _ _ 7 Today _ PROPN NNP _ 6 nmod:tmod _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 '' _ PUNCT '' _ 6 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 prime-time _ NOUN NN _ 12 compound _ _ 12 newscast _ NOUN NN _ 6 dep _ _ 13 featuring _ VERB VBG _ 12 acl _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Shaw _ PROPN NNP _ 13 dobj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Ms. _ PROPN NNP _ 18 compound _ _ 18 Crier _ PROPN NNP _ 15 conj _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 now _ ADV RB _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 CNN _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 featured _ VERB VBN _ 0 root _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 Hollywood _ PROPN NNP _ 10 compound _ _ 9 gossip _ NOUN NN _ 10 compound _ _ 10 show _ NOUN NN _ 6 dobj _ _ 11 during _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 key _ ADJ JJ _ 15 amod _ _ 14 evening _ NOUN NN _ 15 compound _ _ 15 period _ NOUN NN _ 6 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 70 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 11 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 cable-television-equipped _ ADJ JJ _ 7 amod _ _ 7 households _ NOUN NNS _ 3 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 watch _ VERB VBP _ 7 acl:relcl _ _ 10 news _ NOUN NN _ 9 dobj _ _ 11 do _ VERB VBP _ 22 ccomp _ _ 12 so _ ADV RB _ 11 advmod _ _ 13 between _ ADP IN _ 14 case _ _ 14 6:30 _ NUM CD _ 11 nmod _ _ 15 p.m. _ ADV RB _ 14 advmod _ _ 16 and _ CONJ CC _ 14 cc _ _ 17 7 _ NUM CD _ 14 conj _ _ 18 p.m. _ ADV RB _ 17 advmod _ _ 19 , _ PUNCT , _ 22 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 network _ NOUN NN _ 22 nsubj _ _ 22 discovered _ VERB VBD _ 0 root _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 so _ ADP IN _ 22 dep _ _ 25 CNN _ PROPN NNP _ 26 nsubj _ _ 26 wants _ VERB VBZ _ 22 parataxis _ _ 27 in _ ADV RB _ 26 advmod _ _ 28 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Amos _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Shaw-Crier _ PROPN NNP _ 6 compound _ _ 6 team _ NOUN NN _ 9 nsubj _ _ 7 will _ AUX MD _ 9 aux _ _ 8 probably _ ADV RB _ 9 advmod _ _ 9 do _ VERB VB _ 3 ccomp _ _ 10 two _ NUM CD _ 12 nummod _ _ 11 live _ ADJ JJ _ 12 amod _ _ 12 interviews _ NOUN NNS _ 9 dobj _ _ 13 a _ DET DT _ 14 det _ _ 14 day _ NOUN NN _ 12 nmod:npmod _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 with _ SCONJ IN _ 27 mark _ _ 17 most _ ADJ JJS _ 27 nsubj _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 program _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 27 punct _ _ 22 at _ ADP IN _ 25 advmod _ _ 23 least _ ADJ JJS _ 22 mwe _ _ 24 for _ ADP IN _ 25 case _ _ 25 now _ ADV RB _ 27 nmod _ _ 26 , _ PUNCT , _ 27 punct _ _ 27 appearing _ VERB VBG _ 9 advcl _ _ 28 similar _ ADJ JJ _ 27 xcomp _ _ 29 to _ ADP TO _ 33 case _ _ 30 CNN _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 other _ ADJ JJ _ 33 amod _ _ 33 newcasts _ NOUN NNS _ 28 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 Some _ DET DT _ 6 nsubj _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 industry _ NOUN NN _ 1 nmod _ _ 5 are _ VERB VBP _ 6 cop _ _ 6 skeptical _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 find _ VERB VBP _ 31 ccomp _ _ 4 it _ PRON PRP _ 7 nsubj _ _ 5 hard _ ADJ JJ _ 7 dep _ _ 6 to _ PART TO _ 7 mark _ _ 7 conceive _ VERB VB _ 3 xcomp _ _ 8 of _ SCONJ IN _ 10 mark _ _ 9 people _ NOUN NNS _ 10 nsubj _ _ 10 switching _ VERB VBG _ 7 advcl _ _ 11 over _ ADV RB _ 10 advmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 CNN _ PROPN NNP _ 10 nmod _ _ 14 for _ SCONJ IN _ 28 mark _ _ 15 what _ PRON WP _ 28 nsubj _ _ 16 , _ PUNCT , _ 28 punct _ _ 17 at _ ADP IN _ 23 advmod _ _ 18 least _ ADJ JJS _ 17 mwe _ _ 19 in _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 21 det _ _ 21 public _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 mind _ NOUN NN _ 28 nmod _ _ 24 , _ PUNCT , _ 28 punct _ _ 25 is _ VERB VBZ _ 28 cop _ _ 26 the _ DET DT _ 28 det _ _ 27 same _ ADJ JJ _ 28 amod _ _ 28 news _ NOUN NN _ 10 advcl _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 '' _ PUNCT '' _ 31 punct _ _ 31 says _ VERB VBZ _ 0 root _ _ 32 Reuven _ PROPN NNP _ 33 compound _ _ 33 Frank _ PROPN NNP _ 31 nsubj _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 the _ DET DT _ 38 det _ _ 36 former _ ADJ JJ _ 38 amod _ _ 37 two-time _ ADJ JJ _ 38 amod _ _ 38 president _ NOUN NN _ 33 appos _ _ 39 of _ ADP IN _ 41 case _ _ 40 NBC _ PROPN NNP _ 41 compound _ _ 41 News _ PROPN NNP _ 38 nmod _ _ 42 and _ CONJ CC _ 38 cc _ _ 43 creator _ NOUN NN _ 38 conj _ _ 44 of _ ADP IN _ 47 case _ _ 45 the _ DET DT _ 47 det _ _ 46 Huntley-Brinkley _ PROPN NNP _ 47 compound _ _ 47 Report _ PROPN NNP _ 43 nmod _ _ 48 . _ PUNCT . _ 31 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 evening _ NOUN NN _ 3 compound _ _ 3 news _ NOUN NN _ 6 nsubjpass _ _ 4 is _ AUX VBZ _ 6 auxpass _ _ 5 also _ ADV RB _ 6 advmod _ _ 6 slated _ VERB VBN _ 0 root _ _ 7 as _ ADP IN _ 10 case _ _ 8 CNN _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 stage _ NOUN NN _ 6 nmod _ _ 11 for _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 big _ ADJ JJ _ 14 amod _ _ 14 push _ NOUN NN _ 10 nmod _ _ 15 into _ ADP IN _ 17 case _ _ 16 investigative _ ADJ JJ _ 17 amod _ _ 17 journalism _ NOUN NN _ 14 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 August _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 network _ NOUN NN _ 6 nsubj _ _ 6 hired _ VERB VBD _ 0 root _ _ 7 award-winning _ ADJ JJ _ 10 amod _ _ 8 producer _ NOUN NN _ 10 compound _ _ 9 Pamela _ PROPN NNP _ 10 compound _ _ 10 Hill _ PROPN NNP _ 6 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 former _ ADJ JJ _ 14 amod _ _ 14 head _ NOUN NN _ 10 appos _ _ 15 of _ ADP IN _ 17 case _ _ 16 news _ NOUN NN _ 17 compound _ _ 17 specials _ NOUN NNS _ 14 nmod _ _ 18 at _ ADP IN _ 19 case _ _ 19 ABC _ PROPN NNP _ 14 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 She _ PRON PRP _ 3 nsubj _ _ 2 's _ AUX VBZ _ 3 aux _ _ 3 assembling _ VERB VBG _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 staff _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 10 case _ _ 7 about _ ADV RB _ 8 advmod _ _ 8 35 _ NUM CD _ 10 nummod _ _ 9 investigative _ ADJ JJ _ 10 amod _ _ 10 reporters _ NOUN NNS _ 5 nmod _ _ 11 who _ PRON WP _ 13 nsubj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 produce _ VERB VB _ 5 acl:relcl _ _ 14 weekly _ ADJ JJ _ 17 amod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 in-depth _ ADJ JJ _ 17 amod _ _ 17 segments _ NOUN NNS _ 13 dobj _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 with _ ADP IN _ 21 case _ _ 20 an _ DET DT _ 21 det _ _ 21 eye _ NOUN NN _ 13 nmod _ _ 22 toward _ SCONJ IN _ 23 mark _ _ 23 breaking _ VERB VBG _ 21 acl _ _ 24 big _ ADJ JJ _ 25 amod _ _ 25 stories _ NOUN NNS _ 23 dobj _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 CNN _ PROPN NNP _ 2 compound _ _ 2 executives _ NOUN NNS _ 3 nsubj _ _ 3 hope _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 headlines _ NOUN NNS _ 11 nsubj _ _ 6 created _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 9 case _ _ 8 such _ ADJ JJ _ 9 amod _ _ 9 scoops _ NOUN NNS _ 6 nmod _ _ 10 will _ AUX MD _ 11 aux _ _ 11 generate _ VERB VB _ 3 ccomp _ _ 12 excitement _ NOUN NN _ 11 dobj _ _ 13 for _ ADP IN _ 18 case _ _ 14 its _ PRON PRP$ _ 18 nmod:poss _ _ 15 `` _ PUNCT `` _ 18 punct _ _ 16 branded _ ADJ JJ _ 18 amod _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 programs _ NOUN NNS _ 11 nmod _ _ 19 , _ PUNCT , _ 11 punct _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 way _ NOUN NN _ 11 nmod _ _ 23 `` _ PUNCT `` _ 27 punct _ _ 24 60 _ PROPN NNP _ 25 compound _ _ 25 Minutes _ PROPN NNP _ 27 nsubj _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 did _ VERB VBD _ 22 acl:relcl _ _ 28 so _ ADV RB _ 29 advmod _ _ 29 well _ ADV RB _ 27 advmod _ _ 30 for _ ADP IN _ 31 case _ _ 31 CBS _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 's _ VERB VBZ _ 5 cop _ _ 3 such _ DET PDT _ 5 det:predet _ _ 4 a _ DET DT _ 5 det _ _ 5 departure _ NOUN NN _ 0 root _ _ 6 from _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 past _ NOUN NN _ 5 nmod _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 many _ ADJ JJ _ 15 nsubj _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 industry _ NOUN NN _ 10 nmod _ _ 14 are _ VERB VBP _ 15 cop _ _ 15 skeptical _ ADJ JJ _ 5 dep _ _ 16 CNN _ PROPN NNP _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 follow _ VERB VB _ 15 ccomp _ _ 19 through _ ADP RP _ 18 compound:prt _ _ 20 with _ ADP IN _ 23 case _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 investigative _ ADJ JJ _ 23 amod _ _ 23 commitment _ NOUN NN _ 18 nmod _ _ 24 , _ PUNCT , _ 18 punct _ _ 25 especially _ ADV RB _ 28 advmod _ _ 26 after _ SCONJ IN _ 28 mark _ _ 27 it _ PRON PRP _ 28 nsubj _ _ 28 sees _ VERB VBZ _ 18 advcl _ _ 29 the _ DET DT _ 30 det _ _ 30 cost _ NOUN NN _ 28 dobj _ _ 31 of _ SCONJ IN _ 32 mark _ _ 32 producing _ VERB VBG _ 30 acl _ _ 33 in-depth _ ADJ JJ _ 34 amod _ _ 34 pieces _ NOUN NNS _ 32 dobj _ _ 35 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 never _ ADV RB _ 5 neg _ _ 5 shown _ VERB VBN _ 15 ccomp _ _ 6 any _ DET DT _ 7 det _ _ 7 inclination _ NOUN NN _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 spend _ VERB VB _ 7 acl _ _ 10 money _ NOUN NN _ 9 dobj _ _ 11 on _ ADP IN _ 12 case _ _ 12 production _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 Michael _ PROPN NNP _ 17 compound _ _ 17 Mosettig _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 21 det _ _ 20 senior _ ADJ JJ _ 21 amod _ _ 21 producer _ NOUN NN _ 17 appos _ _ 22 with _ ADP IN _ 24 case _ _ 23 MacNeil-Lehrer _ PROPN NNP _ 24 compound _ _ 24 NewsHour _ PROPN NNP _ 21 nmod _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 who _ PRON WP _ 27 nsubj _ _ 27 notes _ VERB VBZ _ 17 acl:relcl _ _ 28 that _ SCONJ IN _ 31 mark _ _ 29 CNN _ PROPN NNP _ 31 nsubj _ _ 30 is _ VERB VBZ _ 31 cop _ _ 31 indispensable _ ADJ JJ _ 27 ccomp _ _ 32 to _ ADP TO _ 34 case _ _ 33 his _ PRON PRP$ _ 34 nmod:poss _ _ 34 job _ NOUN NN _ 31 nmod _ _ 35 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 network _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 salaries _ NOUN NNS _ 7 nsubj _ _ 5 have _ AUX VBP _ 7 aux _ _ 6 always _ ADV RB _ 7 advmod _ _ 7 ranged _ VERB VBN _ 0 root _ _ 8 far _ ADV RB _ 11 advmod _ _ 9 below _ ADP IN _ 11 case _ _ 10 industry _ NOUN NN _ 11 compound _ _ 11 standards _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 resulting _ VERB VBG _ 7 xcomp _ _ 14 in _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 less-experienced _ ADJ JJ _ 18 amod _ _ 17 work _ NOUN NN _ 18 compound _ _ 18 force _ NOUN NN _ 13 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 CNN _ PROPN NNP _ 3 nsubj _ _ 2 recently _ ADV RB _ 3 advmod _ _ 3 gave _ VERB VBD _ 0 root _ _ 4 most _ ADJ JJS _ 5 amod _ _ 5 employees _ NOUN NNS _ 3 iobj _ _ 6 raises _ NOUN NNS _ 3 dobj _ _ 7 of _ ADP IN _ 12 case _ _ 8 as _ ADV RB _ 11 advmod _ _ 9 much _ ADJ JJ _ 11 advmod _ _ 10 as _ ADP IN _ 11 advmod _ _ 11 15 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 6 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 but _ CONJ CC _ 3 cc _ _ 15 they _ PRON PRP _ 19 nsubj _ _ 16 're _ AUX VBP _ 19 aux _ _ 17 still _ ADV RB _ 19 advmod _ _ 18 drastically _ ADV RB _ 19 advmod _ _ 19 underpaid _ ADJ JJ _ 3 conj _ _ 20 compared _ VERB VBN _ 23 case _ _ 21 with _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 networks _ NOUN NNS _ 19 advcl _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 Says _ VERB VBZ _ 0 root _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Mosettig _ PROPN NNP _ 1 nsubj _ _ 4 : _ PUNCT : _ 1 punct _ _ 5 `` _ PUNCT `` _ 1 punct _ _ 6 CNN _ PROPN NNP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 my _ PRON PRP$ _ 10 nmod:poss _ _ 9 wire _ NOUN NN _ 10 compound _ _ 10 service _ NOUN NN _ 1 ccomp _ _ 11 ; _ PUNCT : _ 10 punct _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 're _ VERB VBP _ 15 cop _ _ 14 on _ ADP IN _ 15 case _ _ 15 top _ NOUN NN _ 10 parataxis _ _ 16 of _ ADP IN _ 17 case _ _ 17 everything _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 to _ PART TO _ 3 mark _ _ 3 improve _ VERB VB _ 8 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 they _ PRON PRP _ 8 nsubj _ _ 6 've _ AUX VBP _ 8 aux _ _ 7 really _ ADV RB _ 8 advmod _ _ 8 got _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 make _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 investment _ NOUN NN _ 10 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 people _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 8 punct _ _ 16 '' _ PUNCT '' _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 any _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 cable-TV-system _ NOUN NN _ 6 compound _ _ 6 operators _ NOUN NNS _ 7 nsubj _ _ 7 have _ VERB VBP _ 0 root _ _ 8 reason _ NOUN NN _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 fear _ VERB VB _ 8 acl _ _ 11 any _ DET DT _ 12 det _ _ 12 tinkering _ NOUN NN _ 10 dobj _ _ 13 with _ ADP IN _ 16 case _ _ 14 CNN _ PROPN NNP _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 format _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 7 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 market _ VERB VBP _ 0 root _ _ 3 cable-TV _ NOUN NN _ 2 dobj _ _ 4 on _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 very _ ADJ JJ _ 8 amod _ _ 7 grazing _ NOUN NN _ 8 compound _ _ 8 opportunities _ NOUN NNS _ 2 nmod _ _ 9 CNN _ PROPN NNP _ 10 nsubj _ _ 10 seeks _ VERB VBZ _ 8 acl:relcl _ _ 11 to _ PART TO _ 12 mark _ _ 12 discourage _ VERB VB _ 10 xcomp _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 6 nsubjpass _ _ 3 would _ AUX MD _ 6 aux _ _ 4 obviously _ ADV RB _ 6 advmod _ _ 5 be _ VERB VB _ 6 auxpass _ _ 6 upset _ VERB VBN _ 21 ccomp _ _ 7 if _ SCONJ IN _ 12 mark _ _ 8 those _ DET DT _ 9 det _ _ 9 kinds _ NOUN NNS _ 12 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 services _ NOUN NNS _ 9 nmod _ _ 12 evolved _ VERB VBD _ 6 advcl _ _ 13 into _ ADP IN _ 18 case _ _ 14 more _ ADJ JJR _ 15 dep _ _ 15 general-interest _ ADJ JJ _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 long-format _ ADJ JJ _ 18 amod _ _ 18 programming _ NOUN NN _ 12 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 Robert _ PROPN NNP _ 23 compound _ _ 23 Stengel _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 senior _ ADJ JJ _ 27 amod _ _ 26 vice _ NOUN NN _ 27 compound _ _ 27 president _ NOUN NN _ 23 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 programming _ NOUN NN _ 27 appos _ _ 30 , _ PUNCT , _ 27 punct _ _ 31 of _ ADP IN _ 34 case _ _ 32 Continental _ PROPN NNP _ 34 compound _ _ 33 Cablevision _ PROPN NNP _ 34 compound _ _ 34 Inc. _ PROPN NNP _ 23 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 which _ PRON WDT _ 37 nsubj _ _ 37 holds _ VERB VBZ _ 34 acl:relcl _ _ 38 a _ DET DT _ 41 det _ _ 39 2 _ NUM CD _ 40 compound _ _ 40 % _ SYM NN _ 41 amod _ _ 41 stake _ NOUN NN _ 37 dobj _ _ 42 in _ ADP IN _ 44 case _ _ 43 Turner _ PROPN NNP _ 44 compound _ _ 44 Broadcasting _ PROPN NNP _ 41 nmod _ _ 45 . _ PUNCT . _ 21 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Second _ PROPN NNP _ 8 dep _ _ 3 U.S. _ PROPN NNP _ 2 compound _ _ 4 Circuit _ PROPN NNP _ 2 compound _ _ 5 Court _ PROPN NNP _ 2 dep _ _ 6 of _ ADP IN _ 7 case _ _ 7 Appeals _ PROPN NNP _ 2 nmod _ _ 8 opinion _ NOUN NN _ 16 nsubj _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 Arcadian _ PROPN NNP _ 13 compound _ _ 12 Phosphate _ PROPN NNP _ 13 compound _ _ 13 case _ NOUN NN _ 8 nmod _ _ 14 did _ AUX VBD _ 16 aux _ _ 15 not _ PART RB _ 16 neg _ _ 16 repudiate _ VERB VB _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 position _ NOUN NN _ 16 dobj _ _ 19 Pennzoil _ PROPN NNP _ 20 compound _ _ 20 Co. _ PROPN NNP _ 21 nsubj _ _ 21 took _ VERB VBD _ 18 acl:relcl _ _ 22 in _ ADP IN _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 dispute _ NOUN NN _ 21 nmod _ _ 25 with _ ADP IN _ 26 case _ _ 26 Texaco _ PROPN NNP _ 24 nmod _ _ 27 , _ PUNCT , _ 16 punct _ _ 28 contrary _ ADJ JJ _ 16 advmod _ _ 29 to _ ADP TO _ 33 case _ _ 30 your _ PRON PRP$ _ 33 nmod:poss _ _ 31 Sept. _ PROPN NNP _ 33 compound _ _ 32 8 _ NUM CD _ 33 nummod _ _ 33 article _ NOUN NN _ 28 nmod _ _ 34 `` _ PUNCT `` _ 33 punct _ _ 35 Court _ NOUN NN _ 36 nsubj _ _ 36 Backs _ VERB VBZ _ 33 dep _ _ 37 Texaco _ PROPN NNP _ 39 nmod:poss _ _ 38 's _ PART POS _ 37 case _ _ 39 View _ NOUN NN _ 36 dobj _ _ 40 in _ ADP IN _ 42 case _ _ 41 Pennzoil _ PROPN NNP _ 42 compound _ _ 42 Case _ NOUN NN _ 36 nmod _ _ 43 -- _ PUNCT : _ 36 punct _ _ 44 Too _ ADV RB _ 45 advmod _ _ 45 Late _ ADV RB _ 36 advmod _ _ 46 . _ PUNCT . _ 16 punct _ _ 47 '' _ PUNCT '' _ 16 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 fundamental _ ADJ JJ _ 3 amod _ _ 3 rule _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 contract _ NOUN NN _ 6 compound _ _ 6 law _ NOUN NN _ 3 nmod _ _ 7 applied _ VERB VBN _ 3 acl _ _ 8 to _ ADP TO _ 10 case _ _ 9 both _ DET DT _ 10 det _ _ 10 cases _ NOUN NNS _ 7 nmod _ _ 11 was _ VERB VBD _ 0 root _ _ 12 that _ SCONJ IN _ 16 mark _ _ 13 courts _ NOUN NNS _ 16 nsubj _ _ 14 will _ AUX MD _ 16 aux _ _ 15 not _ PART RB _ 16 neg _ _ 16 enforce _ VERB VB _ 11 ccomp _ _ 17 agreements _ NOUN NNS _ 16 dobj _ _ 18 to _ ADP TO _ 19 case _ _ 19 which _ PRON WDT _ 24 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 parties _ NOUN NNS _ 24 nsubj _ _ 22 did _ AUX VBD _ 24 aux _ _ 23 not _ PART RB _ 24 neg _ _ 24 intend _ VERB VB _ 17 acl:relcl _ _ 25 to _ PART TO _ 27 mark _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 bound _ VERB VBN _ 24 xcomp _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 Pennzoil/Texaco _ PROPN NNP _ 4 compound _ _ 4 litigation _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 courts _ NOUN NNS _ 8 nsubj _ _ 8 found _ VERB VBD _ 0 root _ _ 9 Pennzoil _ PROPN NNP _ 13 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Getty _ PROPN NNP _ 12 compound _ _ 12 Oil _ PROPN NNP _ 9 conj _ _ 13 intended _ VERB VBD _ 8 ccomp _ _ 14 to _ PART TO _ 16 mark _ _ 15 be _ AUX VB _ 16 auxpass _ _ 16 bound _ VERB VBN _ 13 xcomp _ _ 17 ; _ PUNCT : _ 8 punct _ _ 18 in _ ADP IN _ 20 case _ _ 19 Arcadian _ PROPN NNP _ 20 compound _ _ 20 Phosphates _ PROPN NNP _ 22 nmod _ _ 21 they _ PRON PRP _ 22 nsubj _ _ 22 found _ VERB VBD _ 8 parataxis _ _ 23 there _ PRON EX _ 24 expl _ _ 24 was _ VERB VBD _ 22 ccomp _ _ 25 no _ DET DT _ 26 neg _ _ 26 intention _ NOUN NN _ 24 nsubj _ _ 27 to _ PART TO _ 29 mark _ _ 28 be _ AUX VB _ 29 auxpass _ _ 29 bound _ VERB VBN _ 26 acl _ _ 30 . _ PUNCT . _ 8 punct _ _ 1 Admittedly _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 principle _ NOUN NN _ 10 nsubj _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 cases _ NOUN NNS _ 4 nmod _ _ 8 is _ VERB VBZ _ 10 cop _ _ 9 the _ DET DT _ 10 det _ _ 10 same _ ADJ JJ _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 outcome _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 legal _ ADJ JJ _ 7 amod _ _ 7 dispute _ NOUN NN _ 3 nmod _ _ 8 almost _ ADV RB _ 9 advmod _ _ 9 always _ ADV RB _ 10 advmod _ _ 10 turns _ VERB VBZ _ 0 root _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 facts _ NOUN NNS _ 10 nmod _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 And _ CONJ CC _ 17 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 facts _ NOUN NNS _ 17 nsubj _ _ 4 , _ PUNCT , _ 17 punct _ _ 5 as _ SCONJ IN _ 6 mark _ _ 6 found _ VERB VBN _ 17 dep _ _ 7 by _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 various _ ADJ JJ _ 10 amod _ _ 10 courts _ NOUN NNS _ 6 nmod _ _ 11 in _ ADP IN _ 14 case _ _ 12 these _ DET DT _ 14 det _ _ 13 two _ NUM CD _ 14 nummod _ _ 14 lawsuits _ NOUN NNS _ 6 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 were _ VERB VBD _ 17 cop _ _ 17 different _ ADJ JJ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 suggest _ VERB VBP _ 7 advcl _ _ 4 otherwise _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 you _ PRON PRP _ 7 nsubj _ _ 7 leave _ VERB VBP _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 realm _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 reporting _ NOUN NN _ 9 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 enter _ VERB VB _ 7 conj _ _ 14 the _ DET DT _ 15 det _ _ 15 orbit _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 speculation _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 Charles _ PROPN NNP _ 3 compound _ _ 2 F. _ PROPN NNP _ 3 compound _ _ 3 Vihon _ PROPN NNP _ 0 root _ _ 1 Valley _ PROPN NNP _ 3 compound _ _ 2 Federal _ PROPN NNP _ 3 compound _ _ 3 Savings _ PROPN NNP _ 7 nsubj _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Loan _ PROPN NNP _ 6 compound _ _ 6 Association _ PROPN NNP _ 3 conj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 Imperial _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 12 nsubj _ _ 10 of _ ADP IN _ 11 case _ _ 11 America _ PROPN NNP _ 9 nmod _ _ 12 withdrew _ VERB VBD _ 7 ccomp _ _ 13 from _ ADP IN _ 14 case _ _ 14 regulators _ NOUN NNS _ 12 nmod _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 application _ NOUN NN _ 12 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 buy _ VERB VB _ 16 acl _ _ 19 five _ NUM CD _ 22 nummod _ _ 20 Valley _ PROPN NNP _ 22 compound _ _ 21 Federal _ PROPN NNP _ 22 compound _ _ 22 branches _ NOUN NNS _ 18 dobj _ _ 23 , _ PUNCT , _ 12 punct _ _ 24 leaving _ VERB VBG _ 12 advcl _ _ 25 the _ DET DT _ 26 det _ _ 26 transaction _ NOUN NN _ 24 dobj _ _ 27 in _ ADP IN _ 28 case _ _ 28 limbo _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 broken _ ADJ JJ _ 3 amod _ _ 3 purchase _ NOUN NN _ 4 nsubj _ _ 4 appears _ VERB VBZ _ 0 root _ _ 5 as _ ADP IN _ 7 case _ _ 6 additional _ ADJ JJ _ 7 amod _ _ 7 evidence _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 9 case _ _ 9 trouble _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 Imperial _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 whose _ PRON WP$ _ 15 nmod:poss _ _ 15 spokesman _ NOUN NN _ 16 nsubj _ _ 16 said _ VERB VBD _ 12 acl:relcl _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 19 nsubj _ _ 19 withdrew _ VERB VBD _ 16 ccomp _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 application _ NOUN NN _ 19 dobj _ _ 22 from _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 federal _ ADJ JJ _ 25 amod _ _ 25 Office _ PROPN NNP _ 19 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 Thrift _ PROPN NNP _ 28 compound _ _ 28 Supervision _ PROPN NNP _ 25 nmod _ _ 29 because _ ADP IN _ 33 case _ _ 30 of _ ADP IN _ 29 mwe _ _ 31 an _ DET DT _ 33 det _ _ 32 informal _ ADJ JJ _ 33 amod _ _ 33 notice _ NOUN NN _ 19 nmod _ _ 34 that _ SCONJ IN _ 39 mark _ _ 35 Imperial _ PROPN NNP _ 38 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 thrift _ NOUN NN _ 38 compound _ _ 38 unit _ NOUN NN _ 39 nsubj _ _ 39 failed _ VERB VBD _ 33 ccomp _ _ 40 to _ PART TO _ 41 mark _ _ 41 meet _ VERB VB _ 39 xcomp _ _ 42 Community _ PROPN NNP _ 44 compound _ _ 43 Reinvestment _ PROPN NNP _ 44 compound _ _ 44 Act _ PROPN NNP _ 45 compound _ _ 45 requirements _ NOUN NNS _ 41 dobj _ _ 46 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Community _ PROPN NNP _ 4 compound _ _ 3 Reinvestment _ PROPN NNP _ 4 compound _ _ 4 Act _ PROPN NNP _ 5 nsubj _ _ 5 requires _ VERB VBZ _ 0 root _ _ 6 savings _ NOUN NNS _ 5 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 loan _ NOUN NN _ 9 compound _ _ 9 associations _ NOUN NNS _ 6 conj _ _ 10 to _ PART TO _ 11 mark _ _ 11 lend _ VERB VB _ 5 xcomp _ _ 12 money _ NOUN NN _ 11 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 amounts _ NOUN NNS _ 11 nmod _ _ 15 related _ VERB VBN _ 14 amod _ _ 16 to _ ADP TO _ 17 case _ _ 17 areas _ NOUN NNS _ 15 nmod _ _ 18 where _ ADV WRB _ 21 advmod _ _ 19 deposits _ NOUN NNS _ 21 nsubjpass _ _ 20 are _ AUX VBP _ 21 auxpass _ _ 21 received _ VERB VBN _ 17 acl:relcl _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 transaction _ NOUN NN _ 8 nsubj _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 announced _ VERB VBN _ 8 advcl _ _ 5 in _ ADP IN _ 6 case _ _ 6 August _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 included _ VERB VBN _ 0 root _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 $ _ SYM $ _ 8 dobj _ _ 11 146 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 in _ ADP IN _ 14 case _ _ 14 deposits _ NOUN NNS _ 10 nmod _ _ 15 at _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 five _ NUM CD _ 18 nummod _ _ 18 outlets _ NOUN NNS _ 14 nmod _ _ 19 in _ ADP IN _ 24 case _ _ 20 California _ PROPN NNP _ 24 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 San _ PROPN NNP _ 24 compound _ _ 23 Joaquin _ PROPN NNP _ 24 compound _ _ 24 Valley _ PROPN NNP _ 18 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Terms _ NOUN NNS _ 4 nsubjpass _ _ 2 were _ AUX VBD _ 4 auxpass _ _ 3 n't _ PART RB _ 4 neg _ _ 4 disclosed _ VERB VBN _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 but _ CONJ CC _ 4 cc _ _ 7 Valley _ PROPN NNP _ 8 compound _ _ 8 Federal _ PROPN NNP _ 10 nsubj _ _ 9 had _ AUX VBD _ 10 aux _ _ 10 said _ VERB VBD _ 4 conj _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 expected _ VERB VBD _ 10 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 post _ VERB VB _ 12 ccomp _ _ 15 a _ DET DT _ 18 det _ _ 16 modest _ ADJ JJ _ 18 amod _ _ 17 pretax _ ADJ JJ _ 18 amod _ _ 18 gain _ NOUN NN _ 14 dobj _ _ 19 and _ CONJ CC _ 14 cc _ _ 20 to _ PART TO _ 21 mark _ _ 21 save _ VERB VB _ 14 conj _ _ 22 about _ ADV RB _ 23 advmod _ _ 23 $ _ SYM $ _ 21 dobj _ _ 24 2 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 in _ ADP IN _ 28 case _ _ 27 operating _ NOUN NN _ 28 compound _ _ 28 costs _ NOUN NNS _ 23 nmod _ _ 29 annually _ ADV RB _ 21 advmod _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 Valley _ PROPN NNP _ 2 compound _ _ 2 Federal _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 considering _ VERB VBG _ 3 ccomp _ _ 9 whether _ SCONJ IN _ 11 mark _ _ 10 to _ PART TO _ 11 mark _ _ 11 seek _ VERB VB _ 8 ccomp _ _ 12 another _ DET DT _ 13 det _ _ 13 buyer _ NOUN NN _ 11 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 branches _ NOUN NNS _ 13 nmod _ _ 17 or _ CONJ CC _ 11 cc _ _ 18 to _ PART TO _ 19 mark _ _ 19 pursue _ VERB VB _ 11 conj _ _ 20 the _ DET DT _ 21 det _ _ 21 transaction _ NOUN NN _ 19 dobj _ _ 22 with _ ADP IN _ 24 case _ _ 23 Imperial _ PROPN NNP _ 24 compound _ _ 24 Corp. _ PROPN NNP _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 said _ VERB VBD _ 24 acl:relcl _ _ 28 it _ PRON PRP _ 30 nsubj _ _ 29 is _ AUX VBZ _ 30 aux _ _ 30 attempting _ VERB VBG _ 27 ccomp _ _ 31 to _ PART TO _ 32 mark _ _ 32 meet _ VERB VB _ 30 xcomp _ _ 33 Community _ PROPN NNP _ 36 compound _ _ 34 Reinvestment _ PROPN NNP _ 36 compound _ _ 35 Act _ PROPN NNP _ 36 compound _ _ 36 requirements _ NOUN NNS _ 32 dobj _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 Valley _ PROPN NNP _ 2 compound _ _ 2 Federal _ PROPN NNP _ 12 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 with _ ADP IN _ 5 case _ _ 5 assets _ NOUN NNS _ 2 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 3.3 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 is _ AUX VBZ _ 12 auxpass _ _ 12 based _ VERB VBN _ 0 root _ _ 13 in _ ADP IN _ 15 case _ _ 14 Van _ PROPN NNP _ 15 compound _ _ 15 Nuys _ PROPN NNP _ 12 nmod _ _ 16 . _ PUNCT . _ 12 punct _ _ 1 Imperial _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 7 case _ _ 6 San _ PROPN NNP _ 7 compound _ _ 7 Diego _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 the _ DET DT _ 11 det _ _ 11 parent _ NOUN NN _ 0 root _ _ 12 of _ ADP IN _ 14 case _ _ 13 Imperial _ PROPN NNP _ 14 compound _ _ 14 Savings _ PROPN NNP _ 11 nmod _ _ 15 & _ CONJ CC _ 14 cc _ _ 16 Loan _ PROPN NNP _ 14 conj _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 first _ ADJ JJ _ 5 amod _ _ 4 six _ NUM CD _ 5 nummod _ _ 5 months _ NOUN NNS _ 10 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 year _ NOUN NN _ 5 nmod _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 posted _ VERB VBD _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 33.1 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 Call _ VERB VB _ 0 root _ _ 2 it _ PRON PRP _ 12 nsubj _ _ 3 the _ DET DT _ 12 det _ _ 4 `` _ PUNCT `` _ 12 punct _ _ 5 we _ PRON PRP _ 8 nsubj _ _ 6 're _ VERB VBP _ 8 cop _ _ 7 too _ ADV RB _ 8 advmod _ _ 8 broke _ ADJ JJ _ 12 dep _ _ 9 to _ PART TO _ 10 mark _ _ 10 fight _ VERB VB _ 8 xcomp _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 defense _ NOUN NN _ 1 xcomp _ _ 13 . _ PUNCT . _ 1 punct _ _ 1 Lawyers _ NOUN NNS _ 11 nsubj _ _ 2 for _ ADP IN _ 3 case _ _ 3 dozens _ NOUN NNS _ 1 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 insolvent _ ADJ JJ _ 6 amod _ _ 6 savings _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 loan _ NOUN NN _ 9 compound _ _ 9 associations _ NOUN NNS _ 6 conj _ _ 10 are _ AUX VBP _ 11 aux _ _ 11 trying _ VERB VBG _ 0 root _ _ 12 a _ DET DT _ 14 det _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 tack _ NOUN NN _ 11 dobj _ _ 15 in _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 efforts _ NOUN NNS _ 11 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 defuse _ VERB VB _ 17 acl _ _ 20 suits _ NOUN NNS _ 19 dobj _ _ 21 filed _ VERB VBN _ 20 acl _ _ 22 by _ ADP IN _ 23 case _ _ 23 borrowers _ NOUN NNS _ 21 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 developers _ NOUN NNS _ 23 conj _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 creditors _ NOUN NNS _ 23 conj _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 thrifts _ NOUN NNS _ 4 nmod:poss _ _ 3 ' _ PART POS _ 2 case _ _ 4 lawyers _ NOUN NNS _ 5 nsubj _ _ 5 claim _ VERB VBP _ 0 root _ _ 6 that _ SCONJ IN _ 20 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 suits _ NOUN NNS _ 20 nsubjpass _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 numbering _ VERB VBG _ 8 acl _ _ 11 700 _ NUM CD _ 13 nummod _ _ 12 to _ ADP TO _ 13 dep _ _ 13 1,000 _ NUM CD _ 10 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 Texas _ PROPN NNP _ 10 nmod _ _ 16 alone _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 should _ AUX MD _ 20 aux _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 dismissed _ VERB VBN _ 5 ccomp _ _ 21 as _ ADV RB _ 22 advmod _ _ 22 moot _ ADJ JJ _ 20 advcl _ _ 23 because _ SCONJ IN _ 36 mark _ _ 24 neither _ CONJ CC _ 26 cc:preconj _ _ 25 the _ DET DT _ 26 det _ _ 26 S&Ls _ NOUN NNS _ 36 nsubj _ _ 27 nor _ CONJ CC _ 26 cc _ _ 28 the _ DET DT _ 31 det _ _ 29 extinct _ ADJ JJ _ 31 amod _ _ 30 Federal _ PROPN NNP _ 31 compound _ _ 31 Savings _ PROPN NNP _ 26 conj _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 Loan _ PROPN NNP _ 35 compound _ _ 34 Insurance _ PROPN NNP _ 35 compound _ _ 35 Corp. _ PROPN NNP _ 31 conj _ _ 36 has _ VERB VBZ _ 20 advcl _ _ 37 the _ DET DT _ 38 det _ _ 38 money _ NOUN NN _ 36 dobj _ _ 39 to _ PART TO _ 40 mark _ _ 40 pay _ VERB VB _ 38 acl _ _ 41 judgments _ NOUN NNS _ 40 dobj _ _ 42 . _ PUNCT . _ 5 punct _ _ 1 Though _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 argument _ NOUN NN _ 5 nsubj _ _ 4 may _ AUX MD _ 5 aux _ _ 5 have _ VERB VB _ 16 advcl _ _ 6 a _ DET DT _ 8 det _ _ 7 common-sense _ NOUN NN _ 8 compound _ _ 8 ring _ NOUN NN _ 5 dobj _ _ 9 to _ ADP TO _ 10 case _ _ 10 it _ PRON PRP _ 5 nmod _ _ 11 , _ PUNCT , _ 16 punct _ _ 12 even _ ADV RB _ 15 advmod _ _ 13 the _ DET DT _ 15 det _ _ 14 S&L _ NOUN NN _ 15 compound _ _ 15 lawyers _ NOUN NNS _ 16 nsubj _ _ 16 concede _ VERB VB _ 0 root _ _ 17 there _ PRON EX _ 18 expl _ _ 18 's _ VERB VBZ _ 16 ccomp _ _ 19 little _ ADV RB _ 20 advmod _ _ 20 precedent _ ADJ JJ _ 18 nsubj _ _ 21 to _ PART TO _ 22 mark _ _ 22 back _ VERB VB _ 20 acl _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 position _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 16 punct _ _ 1 Still _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 one _ NUM CD _ 6 nummod _ _ 4 federal _ ADJ JJ _ 6 amod _ _ 5 appeals _ NOUN NNS _ 6 compound _ _ 6 court _ NOUN NN _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 signaled _ VERB VBN _ 0 root _ _ 9 it _ PRON PRP _ 11 nsubj _ _ 10 's _ VERB VBZ _ 11 cop _ _ 11 willing _ ADJ JJ _ 8 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 entertain _ VERB VB _ 11 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 notion _ NOUN NN _ 13 dobj _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 and _ CONJ CC _ 8 cc _ _ 18 the _ DET DT _ 19 det _ _ 19 lawyers _ NOUN NNS _ 21 nsubj _ _ 20 have _ AUX VBP _ 21 aux _ _ 21 renewed _ VERB VBN _ 8 conj _ _ 22 their _ PRON PRP$ _ 23 nmod:poss _ _ 23 arguments _ NOUN NNS _ 21 dobj _ _ 24 in _ ADP IN _ 25 case _ _ 25 Texas _ PROPN NNP _ 21 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 eight _ NUM CD _ 29 nummod _ _ 28 other _ ADJ JJ _ 29 amod _ _ 29 states _ NOUN NNS _ 25 conj _ _ 30 where _ ADV WRB _ 34 advmod _ _ 31 the _ DET DT _ 32 det _ _ 32 defense _ NOUN NN _ 34 nsubjpass _ _ 33 is _ AUX VBZ _ 34 auxpass _ _ 34 permitted _ VERB VBN _ 25 acl:relcl _ _ 35 under _ ADP IN _ 37 case _ _ 36 state _ NOUN NN _ 37 compound _ _ 37 law _ NOUN NN _ 34 nmod _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dismissal _ NOUN NN _ 8 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 pending _ VERB VBG _ 6 amod _ _ 6 suits _ NOUN NNS _ 2 nmod _ _ 7 could _ AUX MD _ 8 aux _ _ 8 go _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 long _ ADJ JJ _ 11 amod _ _ 11 way _ NOUN NN _ 8 dobj _ _ 12 toward _ SCONJ IN _ 13 mark _ _ 13 clearing _ VERB VBG _ 8 advcl _ _ 14 court _ NOUN NN _ 15 compound _ _ 15 dockets _ NOUN NNS _ 13 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Texas _ PROPN NNP _ 15 nmod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 reducing _ VERB VBG _ 13 conj _ _ 20 the _ DET DT _ 21 det _ _ 21 FSLIC _ PROPN NNP _ 25 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 massive _ ADJ JJ _ 25 amod _ _ 24 legal _ ADJ JJ _ 25 amod _ _ 25 bills _ NOUN NNS _ 19 dobj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 which _ PRON WDT _ 28 nsubj _ _ 28 topped _ VERB VBD _ 25 acl:relcl _ _ 29 $ _ SYM $ _ 28 dobj _ _ 30 73 _ NUM CD _ 31 compound _ _ 31 million _ NUM CD _ 29 nummod _ _ 32 last _ ADJ JJ _ 33 amod _ _ 33 year _ NOUN NN _ 28 nmod:tmod _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 S&L _ NOUN NN _ 3 compound _ _ 3 lawyers _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 encouraged _ VERB VBN _ 0 root _ _ 6 last _ ADJ JJ _ 7 amod _ _ 7 month _ NOUN NN _ 5 nmod:tmod _ _ 8 by _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 appellate-court _ NOUN NN _ 11 compound _ _ 11 ruling _ NOUN NN _ 5 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 two _ NUM CD _ 14 nummod _ _ 14 cases _ NOUN NNS _ 11 nmod _ _ 15 brought _ VERB VBN _ 14 acl _ _ 16 against _ ADP IN _ 19 case _ _ 17 defunct _ ADJ JJ _ 19 amod _ _ 18 Sunbelt _ PROPN NNP _ 19 compound _ _ 19 Savings _ PROPN NNP _ 15 nmod _ _ 20 & _ CONJ CC _ 19 cc _ _ 21 Loan _ PROPN NNP _ 22 compound _ _ 22 Association _ PROPN NNP _ 19 conj _ _ 23 of _ ADP IN _ 24 case _ _ 24 Dallas _ PROPN NNP _ 19 nmod _ _ 25 by _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 developers _ NOUN NNS _ 15 nmod _ _ 28 of _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Valley _ PROPN NNP _ 31 compound _ _ 31 Ranch _ PROPN NNP _ 27 nmod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 best _ ADV RB _ 34 advmod _ _ 34 known _ VERB VBN _ 31 acl _ _ 35 as _ ADP IN _ 38 case _ _ 36 the _ DET DT _ 38 det _ _ 37 training _ NOUN NN _ 38 compound _ _ 38 center _ NOUN NN _ 34 nmod _ _ 39 for _ ADP IN _ 44 case _ _ 40 the _ DET DT _ 44 det _ _ 41 Dallas _ PROPN NNP _ 44 compound _ _ 42 Cowboys _ PROPN NNP _ 44 compound _ _ 43 football _ NOUN NN _ 44 compound _ _ 44 team _ NOUN NN _ 38 nmod _ _ 45 . _ PUNCT . _ 5 punct _ _ 1 Sunbelt _ PROPN NNP _ 2 nsubj _ _ 2 foreclosed _ VERB VBD _ 0 root _ _ 3 on _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 ranch _ NOUN NN _ 2 nmod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 Sunbelt _ PROPN NNP _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 the _ DET DT _ 4 det _ _ 4 FSLIC _ PROPN NNP _ 1 conj _ _ 5 argued _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 11 case _ _ 7 the _ DET DT _ 11 det _ _ 8 Fifth _ PROPN NNP _ 11 compound _ _ 9 U.S. _ PROPN NNP _ 11 compound _ _ 10 Circuit _ PROPN NNP _ 11 compound _ _ 11 Court _ PROPN NNP _ 5 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 Appeals _ PROPN NNP _ 11 nmod _ _ 14 `` _ PUNCT `` _ 5 punct _ _ 15 that _ SCONJ IN _ 21 mark _ _ 16 there _ PRON EX _ 21 expl _ _ 17 will _ AUX MD _ 21 aux _ _ 18 never _ ADV RB _ 21 neg _ _ 19 be _ VERB VB _ 21 cop _ _ 20 any _ DET DT _ 21 det _ _ 21 assets _ NOUN NNS _ 5 ccomp _ _ 22 with _ ADP IN _ 23 case _ _ 23 which _ PRON WDT _ 25 nmod _ _ 24 to _ PART TO _ 25 mark _ _ 25 satisfy _ VERB VB _ 21 acl:relcl _ _ 26 a _ DET DT _ 27 det _ _ 27 judgment _ NOUN NN _ 25 dobj _ _ 28 against _ ADP IN _ 30 case _ _ 29 Sunbelt _ PROPN NNP _ 30 compound _ _ 30 Savings _ PROPN NNP _ 27 nmod _ _ 31 nor _ CONJ CC _ 21 cc _ _ 32 any _ DET DT _ 33 det _ _ 33 means _ NOUN NNS _ 21 conj _ _ 34 to _ PART TO _ 35 mark _ _ 35 collect _ VERB VB _ 33 acl _ _ 36 from _ ADP IN _ 39 case _ _ 37 any _ DET DT _ 39 det _ _ 38 other _ ADJ JJ _ 39 amod _ _ 39 party _ NOUN NN _ 35 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 including _ VERB VBG _ 42 case _ _ 42 FSLIC _ PROPN NNP _ 39 nmod _ _ 43 . _ PUNCT . _ 5 punct _ _ 44 '' _ PUNCT '' _ 5 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 If _ SCONJ IN _ 3 mark _ _ 3 true _ ADJ JJ _ 14 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 '' _ PUNCT '' _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 court _ NOUN NN _ 8 nsubj _ _ 8 wrote _ VERB VBD _ 14 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 `` _ PUNCT `` _ 14 punct _ _ 11 this _ DET DT _ 12 det _ _ 12 contention _ NOUN NN _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 justify _ VERB VB _ 0 root _ _ 15 dismissal _ NOUN NN _ 14 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 these _ DET DT _ 18 det _ _ 18 actions _ NOUN NNS _ 15 nmod _ _ 19 on _ ADP IN _ 21 case _ _ 20 prudential _ ADJ JJ _ 21 amod _ _ 21 grounds _ NOUN NNS _ 14 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 23 '' _ PUNCT '' _ 14 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 court _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 lacked _ VERB VBD _ 4 ccomp _ _ 7 enough _ ADV RB _ 9 advmod _ _ 8 financial _ ADJ JJ _ 9 amod _ _ 9 information _ NOUN NN _ 6 dobj _ _ 10 about _ ADP IN _ 11 case _ _ 11 Sunbelt _ PROPN NNP _ 9 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 FSLIC _ PROPN NNP _ 11 conj _ _ 15 and _ CONJ CC _ 4 cc _ _ 16 sent _ VERB VBD _ 4 conj _ _ 17 the _ DET DT _ 18 det _ _ 18 cases _ NOUN NNS _ 16 dobj _ _ 19 back _ ADV RB _ 16 advmod _ _ 20 to _ ADP TO _ 23 case _ _ 21 federal _ ADJ JJ _ 23 amod _ _ 22 district _ NOUN NN _ 23 compound _ _ 23 court _ NOUN NN _ 19 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 Dallas _ PROPN NNP _ 23 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Charles _ PROPN NNP _ 2 compound _ _ 2 Haworth _ PROPN NNP _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 5 det _ _ 5 lawyer _ NOUN NN _ 2 appos _ _ 6 for _ ADP IN _ 7 case _ _ 7 Sunbelt _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 says _ VERB VBZ _ 0 root _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 plans _ VERB VBZ _ 9 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 file _ VERB VB _ 11 xcomp _ _ 14 a _ DET DT _ 15 det _ _ 15 brief _ NOUN NN _ 13 dobj _ _ 16 this _ DET DT _ 17 det _ _ 17 week _ NOUN NN _ 13 nmod:tmod _ _ 18 urging _ VERB VBG _ 13 dep _ _ 19 the _ DET DT _ 21 det _ _ 20 district _ NOUN NN _ 21 compound _ _ 21 judge _ NOUN NN _ 18 dobj _ _ 22 to _ PART TO _ 23 mark _ _ 23 dismiss _ VERB VB _ 18 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 suits _ NOUN NNS _ 23 dobj _ _ 26 , _ PUNCT , _ 11 punct _ _ 27 because _ SCONJ IN _ 31 mark _ _ 28 Sunbelt _ PROPN NNP _ 30 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 liabilities _ NOUN NNS _ 31 nsubj _ _ 31 exceeded _ VERB VBD _ 11 advcl _ _ 32 its _ PRON PRP$ _ 33 nmod:poss _ _ 33 assets _ NOUN NNS _ 31 dobj _ _ 34 by _ ADP IN _ 36 case _ _ 35 about _ ADV RB _ 36 advmod _ _ 36 $ _ SYM $ _ 31 nmod _ _ 37 2 _ NUM CD _ 38 compound _ _ 38 billion _ NUM CD _ 36 nummod _ _ 39 when _ ADV WRB _ 42 advmod _ _ 40 federal _ ADJ JJ _ 41 amod _ _ 41 regulators _ NOUN NNS _ 42 nsubj _ _ 42 closed _ VERB VBD _ 31 advcl _ _ 43 it _ PRON PRP _ 42 dobj _ _ 44 in _ ADP IN _ 45 case _ _ 45 August _ PROPN NNP _ 42 nmod _ _ 46 1988 _ NUM CD _ 45 nummod _ _ 47 . _ PUNCT . _ 9 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 This _ DET DT _ 3 det _ _ 3 institution _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 just _ ADV RB _ 7 advmod _ _ 6 brain _ NOUN NN _ 7 nmod:npmod _ _ 7 dead _ ADJ JJ _ 10 ccomp _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Haworth _ PROPN NNP _ 10 nsubj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 partner _ NOUN NN _ 12 appos _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 Dallas _ PROPN NNP _ 19 compound _ _ 19 office _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 Andrews _ PROPN NNP _ 19 nmod _ _ 22 & _ CONJ CC _ 21 cc _ _ 23 Kurth _ PROPN NNP _ 21 conj _ _ 24 , _ PUNCT , _ 21 punct _ _ 25 a _ DET DT _ 28 det _ _ 26 Houston _ PROPN NNP _ 28 compound _ _ 27 law _ NOUN NN _ 28 compound _ _ 28 firm _ NOUN NN _ 21 appos _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 a _ DET DT _ 3 det _ _ 3 lawyer _ NOUN NN _ 15 nsubj _ _ 4 for _ ADP IN _ 7 case _ _ 5 Triland _ PROPN NNP _ 7 compound _ _ 6 Investment _ PROPN NNP _ 7 compound _ _ 7 Group _ PROPN NNP _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 developer _ NOUN NN _ 7 appos _ _ 11 of _ ADP IN _ 13 case _ _ 12 Valley _ PROPN NNP _ 13 compound _ _ 13 Ranch _ PROPN NNP _ 10 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 dismisses _ VERB VBZ _ 0 root _ _ 16 such _ ADJ JJ _ 17 amod _ _ 17 arguments _ NOUN NNS _ 15 dobj _ _ 18 as _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 defense _ NOUN NN _ 15 nmod _ _ 22 du _ X FW _ 21 compound _ _ 23 jour _ X FW _ 21 dep _ _ 24 . _ PUNCT . _ 15 punct _ _ 25 '' _ PUNCT '' _ 15 punct _ _ 1 Attorney _ PROPN NNP _ 3 compound _ _ 2 Richard _ PROPN NNP _ 3 compound _ _ 3 Jackson _ PROPN NNP _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 Dallas _ PROPN NNP _ 3 nmod _ _ 6 says _ VERB VBZ _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 judgment _ NOUN NN _ 13 nsubj _ _ 9 for _ ADP IN _ 10 case _ _ 10 Triland _ PROPN NNP _ 8 nmod _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 aux _ _ 13 satisfied _ ADJ JJ _ 6 ccomp _ _ 14 in _ ADP IN _ 15 case _ _ 15 ways _ NOUN NNS _ 13 nmod _ _ 16 other _ ADJ JJ _ 15 amod _ _ 17 than _ ADP IN _ 20 case _ _ 18 a _ DET DT _ 20 det _ _ 19 monetary _ ADJ JJ _ 20 amod _ _ 20 award _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 including _ VERB VBG _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 reversal _ NOUN NN _ 15 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 Sunbelt _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 foreclosure _ NOUN NN _ 24 nmod _ _ 29 on _ ADP IN _ 31 case _ _ 30 Valley _ PROPN NNP _ 31 compound _ _ 31 Ranch _ PROPN NNP _ 28 nmod _ _ 32 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 asking _ VERB VBG _ 25 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 court _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 number _ NOUN NN _ 4 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 things _ NOUN NNS _ 9 nmod _ _ 12 he _ PRON PRP _ 14 nsubj _ _ 13 can _ AUX MD _ 14 aux _ _ 14 grant _ VERB VB _ 11 acl:relcl _ _ 15 in _ ADP IN _ 16 case _ _ 16 addition _ NOUN NN _ 9 nmod _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 thrill _ NOUN NN _ 16 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 victory _ NOUN NN _ 19 nmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 says _ VERB VBZ _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 'd _ AUX MD _ 4 aux _ _ 4 take _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 Valley _ PROPN NNP _ 7 compound _ _ 7 Ranch _ PROPN NNP _ 4 dobj _ _ 8 free _ ADJ JJ _ 4 advmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 clear _ ADJ JJ _ 8 conj _ _ 11 as _ ADP IN _ 14 case _ _ 12 a _ DET DT _ 14 det _ _ 13 booby _ ADJ JJ _ 14 amod _ _ 14 prize _ NOUN NN _ 4 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Kenneth _ PROPN NNP _ 3 compound _ _ 2 J. _ PROPN NNP _ 3 compound _ _ 3 Thygerson _ PROPN NNP _ 17 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 who _ PRON WP _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 named _ VERB VBN _ 3 acl:relcl _ _ 8 president _ NOUN NN _ 7 xcomp _ _ 9 of _ ADP IN _ 13 case _ _ 10 this _ DET DT _ 13 det _ _ 11 thrift _ NOUN NN _ 13 compound _ _ 12 holding _ NOUN NN _ 13 compound _ _ 13 company _ NOUN NN _ 8 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 August _ PROPN NNP _ 7 nmod _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 resigned _ VERB VBD _ 0 root _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 citing _ VERB VBG _ 17 xcomp _ _ 20 personal _ ADJ JJ _ 21 amod _ _ 21 reasons _ NOUN NNS _ 19 dobj _ _ 22 . _ PUNCT . _ 17 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Thygerson _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 6 nsubj _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 planned _ VERB VBN _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 travel _ VERB VB _ 6 xcomp _ _ 9 between _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 job _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 13 case _ _ 13 Denver _ PROPN NNP _ 11 nmod _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 his _ PRON PRP$ _ 18 nmod:poss _ _ 16 San _ PROPN NNP _ 18 compound _ _ 17 Diego _ PROPN NNP _ 18 compound _ _ 18 home _ NOUN NN _ 11 conj _ _ 19 , _ PUNCT , _ 6 punct _ _ 20 but _ CONJ CC _ 6 cc _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 found _ VERB VBN _ 6 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 commute _ NOUN NN _ 26 nsubj _ _ 25 too _ ADV RB _ 26 advmod _ _ 26 difficult _ ADJ JJ _ 22 xcomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 continue _ VERB VB _ 26 ccomp _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 president _ NOUN NN _ 6 nsubjpass _ _ 4 was _ AUX VBD _ 6 auxpass _ _ 5 n't _ PART RB _ 6 neg _ _ 6 named _ VERB VBN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 SOUTH _ PROPN NNP _ 2 compound _ _ 2 AFRICA _ PROPN NNP _ 3 nsubj _ _ 3 FREED _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 ANC _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Sisulu _ PROPN NNP _ 3 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 seven _ NUM CD _ 12 nummod _ _ 10 other _ ADJ JJ _ 12 amod _ _ 11 political _ ADJ JJ _ 12 amod _ _ 12 prisoners _ NOUN NNS _ 7 conj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Thousands _ NOUN NNS _ 15 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 supporters _ NOUN NNS _ 1 nmod _ _ 4 , _ PUNCT , _ 15 punct _ _ 5 many _ ADJ JJ _ 6 nsubj _ _ 6 brandishing _ VERB VBG _ 15 advcl _ _ 7 flags _ NOUN NNS _ 6 dobj _ _ 8 of _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 outlawed _ VERB VBN _ 13 amod _ _ 11 African _ PROPN NNP _ 13 compound _ _ 12 National _ PROPN NNP _ 13 compound _ _ 13 Congress _ PROPN NNP _ 7 nmod _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 gave _ VERB VBD _ 0 root _ _ 16 the _ DET DT _ 18 det _ _ 17 anti-apartheid _ ADJ JJ _ 18 amod _ _ 18 activists _ NOUN NNS _ 15 iobj _ _ 19 a _ DET DT _ 21 det _ _ 20 tumultuous _ ADJ JJ _ 21 amod _ _ 21 reception _ NOUN NN _ 15 dobj _ _ 22 upon _ ADP IN _ 24 case _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 return _ NOUN NN _ 15 nmod _ _ 25 to _ ADP TO _ 27 case _ _ 26 black _ ADJ JJ _ 27 amod _ _ 27 townships _ NOUN NNS _ 24 nmod _ _ 28 across _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 country _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 15 punct _ _ 1 Most _ ADJ JJS _ 6 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 those _ PRON DT _ 1 nmod _ _ 4 freed _ VERB VBN _ 3 acl _ _ 5 had _ AUX VBD _ 6 aux _ _ 6 spent _ VERB VBN _ 0 root _ _ 7 at _ ADP IN _ 8 case _ _ 8 least _ ADJ JJS _ 9 nmod:npmod _ _ 9 25 _ NUM CD _ 10 nummod _ _ 10 years _ NOUN NNS _ 6 nmod:tmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 prison _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 77-year-old _ ADJ JJ _ 3 amod _ _ 3 Sisulu _ PROPN NNP _ 23 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 sentenced _ VERB VBN _ 3 acl _ _ 6 to _ ADP TO _ 7 case _ _ 7 life _ NOUN NN _ 5 nmod _ _ 8 in _ ADP IN _ 9 case _ _ 9 1964 _ NUM CD _ 5 nmod _ _ 10 along _ ADV RB _ 5 advmod _ _ 11 with _ ADP IN _ 15 case _ _ 12 black _ ADJ JJ _ 15 amod _ _ 13 nationalist _ NOUN NN _ 15 compound _ _ 14 Nelson _ PROPN NNP _ 15 compound _ _ 15 Mandela _ PROPN NNP _ 10 nmod _ _ 16 for _ SCONJ IN _ 17 mark _ _ 17 plotting _ VERB VBG _ 5 advcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 overthrow _ VERB VB _ 17 xcomp _ _ 20 the _ DET DT _ 21 det _ _ 21 government _ NOUN NN _ 19 dobj _ _ 22 , _ PUNCT , _ 3 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 equality _ NOUN NN _ 32 nsubj _ _ 25 for _ ADP IN _ 26 case _ _ 26 blacks _ NOUN NNS _ 24 nmod _ _ 27 in _ ADP IN _ 29 case _ _ 28 South _ PROPN NNP _ 29 compound _ _ 29 Africa _ PROPN NNP _ 26 nmod _ _ 30 was _ VERB VBD _ 32 cop _ _ 31 in _ ADP IN _ 32 case _ _ 32 reach _ NOUN NN _ 23 ccomp _ _ 33 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 releases _ NOUN NNS _ 13 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 announced _ VERB VBN _ 2 acl _ _ 5 last _ ADJ JJ _ 6 amod _ _ 6 week _ NOUN NN _ 4 nmod:tmod _ _ 7 by _ ADP IN _ 10 case _ _ 8 President _ PROPN NNP _ 10 compound _ _ 9 de _ PROPN NNP _ 10 compound _ _ 10 Klerk _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 were _ AUX VBD _ 13 auxpass _ _ 13 viewed _ VERB VBN _ 0 root _ _ 14 as _ ADP IN _ 18 case _ _ 15 Pretoria _ PROPN NNP _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 tacit _ ADJ JJ _ 18 amod _ _ 18 legalization _ NOUN NN _ 13 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 ANC _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Mandela _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 considered _ VERB VBN _ 1 acl _ _ 4 the _ DET DT _ 7 det _ _ 5 most _ ADV RBS _ 6 advmod _ _ 6 prominent _ ADJ JJ _ 7 amod _ _ 7 leader _ NOUN NN _ 3 xcomp _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 ANC _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 remains _ VERB VBZ _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 prison _ NOUN NN _ 12 nmod _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 his _ PRON PRP$ _ 3 nmod:poss _ _ 3 release _ NOUN NN _ 11 nsubjpass _ _ 4 within _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 next _ ADJ JJ _ 8 amod _ _ 7 few _ ADJ JJ _ 8 amod _ _ 8 months _ NOUN NNS _ 3 nmod _ _ 9 is _ AUX VBZ _ 11 auxpass _ _ 10 widely _ ADV RB _ 11 advmod _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Soviet _ PROPN NNP _ 3 compound _ _ 3 Union _ PROPN NNP _ 4 nsubj _ _ 4 reported _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 20 mark _ _ 6 thousands _ NOUN NNS _ 20 nsubjpass _ _ 7 of _ ADP IN _ 8 case _ _ 8 tons _ NOUN NNS _ 6 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 goods _ NOUN NNS _ 8 nmod _ _ 11 needed _ VERB VBN _ 6 acl _ _ 12 to _ PART TO _ 13 mark _ _ 13 ease _ VERB VB _ 11 xcomp _ _ 14 widespread _ ADJ JJ _ 15 amod _ _ 15 shortages _ NOUN NNS _ 13 dobj _ _ 16 across _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 nation _ NOUN NN _ 15 nmod _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 piled _ VERB VBN _ 4 ccomp _ _ 21 up _ ADP RP _ 20 compound:prt _ _ 22 at _ ADP IN _ 23 case _ _ 23 ports _ NOUN NNS _ 20 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 rail _ NOUN NN _ 26 compound _ _ 26 depots _ NOUN NNS _ 23 conj _ _ 27 , _ PUNCT , _ 20 punct _ _ 28 and _ CONJ CC _ 20 cc _ _ 29 food _ NOUN NN _ 30 compound _ _ 30 shipments _ NOUN NNS _ 32 nsubj _ _ 31 were _ AUX VBD _ 32 aux _ _ 32 rotting _ VERB VBG _ 20 conj _ _ 33 because _ ADV RB _ 36 case _ _ 34 of _ ADP IN _ 33 mwe _ _ 35 a _ DET DT _ 36 det _ _ 36 lack _ NOUN NN _ 32 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 people _ NOUN NNS _ 36 nmod _ _ 39 and _ CONJ CC _ 38 cc _ _ 40 equipment _ NOUN NN _ 38 conj _ _ 41 to _ PART TO _ 42 mark _ _ 42 move _ VERB VB _ 38 acl _ _ 43 the _ DET DT _ 44 det _ _ 44 cargo _ NOUN NN _ 42 dobj _ _ 45 . _ PUNCT . _ 4 punct _ _ 1 Strikes _ NOUN NNS _ 5 nsubjpass _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 mismanagement _ NOUN NN _ 1 conj _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 cited _ VERB VBN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 Premier _ PROPN NNP _ 9 compound _ _ 9 Ryzhkov _ PROPN NNP _ 10 nsubj _ _ 10 warned _ VERB VBD _ 5 conj _ _ 11 of _ ADP IN _ 14 case _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 tough _ ADJ JJ _ 14 amod _ _ 14 measures _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 16 '' _ PUNCT '' _ 5 punct _ _ 1 Bush _ PROPN NNP _ 2 nsubj _ _ 2 indicated _ VERB VBD _ 0 root _ _ 3 there _ PRON EX _ 7 expl _ _ 4 might _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 room _ NOUN NN _ 2 ccomp _ _ 8 for _ ADP IN _ 9 case _ _ 9 flexibility _ NOUN NN _ 7 nmod _ _ 10 '' _ PUNCT '' _ 7 punct _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 bill _ NOUN NN _ 7 nmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 allow _ VERB VB _ 13 acl _ _ 16 federal _ ADJ JJ _ 17 amod _ _ 17 funding _ NOUN NN _ 15 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 abortions _ NOUN NNS _ 17 nmod _ _ 20 for _ ADP IN _ 22 case _ _ 21 poor _ ADJ JJ _ 22 amod _ _ 22 women _ NOUN NNS _ 17 nmod _ _ 23 who _ PRON WP _ 25 nsubj _ _ 24 are _ VERB VBP _ 25 cop _ _ 25 vicitims _ NOUN NNS _ 22 acl:relcl _ _ 26 of _ ADP IN _ 27 case _ _ 27 rape _ NOUN NN _ 25 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 incest _ NOUN NN _ 27 conj _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 reiterated _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 opposition _ NOUN NN _ 2 dobj _ _ 5 to _ ADP TO _ 7 case _ _ 6 such _ ADJ JJ _ 7 amod _ _ 7 funding _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 but _ CONJ CC _ 2 cc _ _ 10 expressed _ VERB VBD _ 2 conj _ _ 11 hope _ NOUN NN _ 10 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 compromise _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 president _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 at _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 news _ NOUN NN _ 7 compound _ _ 7 conference _ NOUN NN _ 11 nmod _ _ 8 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 also _ ADV RB _ 11 advmod _ _ 11 renewed _ VERB VBD _ 0 root _ _ 12 a _ DET DT _ 13 det _ _ 13 call _ NOUN NN _ 11 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 ouster _ NOUN NN _ 13 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 Panama _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 Noriega _ PROPN NNP _ 16 nmod _ _ 21 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 White _ PROPN NNP _ 3 compound _ _ 3 House _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 minors _ NOUN NNS _ 6 nsubj _ _ 6 have _ VERB VBP _ 4 ccomp _ _ 7 n't _ PART RB _ 6 neg _ _ 8 any _ DET DT _ 9 det _ _ 9 right _ NOUN NN _ 6 dobj _ _ 10 to _ ADP TO _ 11 case _ _ 11 abortion _ NOUN NN _ 9 nmod _ _ 12 without _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 consent _ NOUN NN _ 11 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 parents _ NOUN NNS _ 14 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 administration _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 policy _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 stated _ VERB VBN _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 friend-of-the-court _ ADJ JJ _ 10 amod _ _ 10 brief _ NOUN NN _ 6 nmod _ _ 11 urging _ VERB VBG _ 10 acl _ _ 12 the _ DET DT _ 14 det _ _ 13 Supreme _ PROPN NNP _ 14 compound _ _ 14 Court _ PROPN NNP _ 11 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 give _ VERB VB _ 11 xcomp _ _ 17 states _ NOUN NNS _ 16 iobj _ _ 18 more _ ADJ JJR _ 19 amod _ _ 19 leeway _ NOUN NN _ 16 dobj _ _ 20 to _ PART TO _ 21 mark _ _ 21 restrict _ VERB VB _ 19 acl _ _ 22 abortions _ NOUN NNS _ 21 dobj _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Ten _ NUM CD _ 10 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 4 det _ _ 4 nation _ NOUN NN _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 governors _ NOUN NNS _ 1 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 meanwhile _ ADV RB _ 10 advmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 called _ VERB VBD _ 0 root _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 justices _ NOUN NNS _ 10 nmod _ _ 14 to _ PART TO _ 15 mark _ _ 15 reject _ VERB VB _ 10 xcomp _ _ 16 efforts _ NOUN NNS _ 15 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 limit _ VERB VB _ 16 acl _ _ 19 abortions _ NOUN NNS _ 18 dobj _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Justice _ PROPN NNP _ 3 compound _ _ 3 Department _ PROPN NNP _ 4 nsubj _ _ 4 announced _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 FBI _ PROPN NNP _ 10 nsubjpass _ _ 8 has _ AUX VBZ _ 10 aux _ _ 9 been _ AUX VBN _ 10 auxpass _ _ 10 given _ VERB VBN _ 4 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 authority _ NOUN NN _ 10 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 seize _ VERB VB _ 12 acl _ _ 15 U.S. _ PROPN NNP _ 16 compound _ _ 16 fugitives _ NOUN NNS _ 14 dobj _ _ 17 overseas _ ADV RB _ 14 advmod _ _ 18 without _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 permission _ NOUN NN _ 14 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 foreign _ ADJ JJ _ 23 amod _ _ 23 governments _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Secretary _ PROPN NNP _ 4 dep _ _ 2 of _ ADP IN _ 3 case _ _ 3 State _ PROPN NNP _ 1 nmod _ _ 4 Baker _ PROPN NNP _ 5 nsubj _ _ 5 emphasized _ VERB VBD _ 0 root _ _ 6 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 7 that _ SCONJ IN _ 14 mark _ _ 8 the _ DET DT _ 10 det _ _ 9 new _ ADJ JJ _ 10 amod _ _ 10 policy _ NOUN NN _ 14 nsubjpass _ _ 11 would _ AUX MD _ 14 aux _ _ 12 n't _ PART RB _ 14 neg _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 invoked _ VERB VBN _ 5 ccomp _ _ 15 by _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 Bush _ PROPN NNP _ 18 compound _ _ 18 administration _ NOUN NN _ 14 nmod _ _ 19 without _ ADP IN _ 21 case _ _ 20 full _ ADJ JJ _ 21 amod _ _ 21 consideration _ NOUN NN _ 14 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 foreign-policy _ NOUN NN _ 24 compound _ _ 24 implications _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 NASA _ PROPN NNP _ 2 nsubj _ _ 2 pronounced _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 6 det _ _ 4 space _ NOUN NN _ 6 compound _ _ 5 shuttle _ NOUN NN _ 6 compound _ _ 6 Atlantis _ PROPN NNP _ 7 nsubj _ _ 7 ready _ ADJ JJ _ 2 xcomp _ _ 8 for _ ADP IN _ 9 case _ _ 9 launch _ NOUN NN _ 7 nmod _ _ 10 tomorrow _ NOUN NN _ 9 nmod:tmod _ _ 11 following _ VERB VBG _ 14 case _ _ 12 a _ DET DT _ 14 det _ _ 13 five-day _ ADJ JJ _ 14 amod _ _ 14 postponement _ NOUN NN _ 9 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 flight _ NOUN NN _ 14 nmod _ _ 18 because _ ADP IN _ 23 case _ _ 19 of _ ADP IN _ 18 mwe _ _ 20 a _ DET DT _ 23 det _ _ 21 faulty _ ADJ JJ _ 23 amod _ _ 22 engine _ NOUN NN _ 23 compound _ _ 23 computer _ NOUN NN _ 14 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 device _ NOUN NN _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 replaced _ VERB VBN _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 spacecraft _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 five _ NUM CD _ 5 nummod _ _ 5 astronauts _ NOUN NNS _ 6 nsubj _ _ 6 are _ VERB VBP _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 dispatch _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 12 det _ _ 10 Galileo _ PROPN NNP _ 12 compound _ _ 11 space _ NOUN NN _ 12 compound _ _ 12 probe _ NOUN NN _ 8 dobj _ _ 13 on _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 exploration _ NOUN NN _ 16 compound _ _ 16 mission _ NOUN NN _ 8 nmod _ _ 17 to _ ADP TO _ 18 case _ _ 18 Jupiter _ PROPN NNP _ 16 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 South _ PROPN NNP _ 2 compound _ _ 2 Korea _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 President _ PROPN NNP _ 5 compound _ _ 5 Roh _ PROPN NNP _ 6 nsubj _ _ 6 traveled _ VERB VBD _ 0 root _ _ 7 to _ ADP TO _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 U.S. _ PROPN NNP _ 6 nmod _ _ 10 for _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 five-day _ ADJ JJ _ 13 amod _ _ 13 visit _ NOUN NN _ 6 nmod _ _ 14 that _ PRON WDT _ 16 nsubjpass _ _ 15 is _ AUX VBZ _ 16 auxpass _ _ 16 expected _ VERB VBN _ 13 acl:relcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 focus _ VERB VB _ 16 xcomp _ _ 19 on _ ADP IN _ 20 case _ _ 20 ties _ NOUN NNS _ 18 nmod _ _ 21 between _ ADP IN _ 22 case _ _ 22 Washington _ PROPN NNP _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 Seoul _ PROPN NNP _ 22 conj _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 Roh _ PROPN NNP _ 18 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 who _ PRON WP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 facing _ VERB VBG _ 1 acl:relcl _ _ 6 calls _ NOUN NNS _ 5 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 reduction _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 U.S. _ PROPN NNP _ 13 compound _ _ 12 military _ ADJ JJ _ 13 amod _ _ 13 forces _ NOUN NNS _ 9 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 South _ PROPN NNP _ 16 compound _ _ 16 Korea _ PROPN NNP _ 13 nmod _ _ 17 , _ PUNCT , _ 1 punct _ _ 18 is _ VERB VBZ _ 0 root _ _ 19 to _ PART TO _ 20 mark _ _ 20 meet _ VERB VB _ 18 xcomp _ _ 21 with _ ADP IN _ 22 case _ _ 22 Bush _ PROPN NNP _ 20 nmod _ _ 23 tomorrow _ NOUN NN _ 20 nmod:tmod _ _ 24 and _ CONJ CC _ 18 cc _ _ 25 is _ VERB VBZ _ 18 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 address _ VERB VB _ 25 xcomp _ _ 28 a _ DET DT _ 30 det _ _ 29 joint _ ADJ JJ _ 30 amod _ _ 30 session _ NOUN NN _ 27 dobj _ _ 31 of _ ADP IN _ 32 case _ _ 32 Congress _ PROPN NNP _ 30 nmod _ _ 33 on _ ADP IN _ 34 case _ _ 34 Wednesday _ PROPN NNP _ 27 nmod _ _ 35 . _ PUNCT . _ 18 punct _ _ 1 China _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Communist _ ADJ JJ _ 4 amod _ _ 4 leadership _ NOUN NN _ 5 nsubj _ _ 5 voted _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 purge _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 party _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 15 case _ _ 11 `` _ PUNCT `` _ 15 punct _ _ 12 hostile _ ADJ JJ _ 15 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 anti-party _ ADJ JJ _ 12 conj _ _ 15 elements _ NOUN NNS _ 7 nmod _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 and _ CONJ CC _ 15 cc _ _ 18 wealthy _ ADJ JJ _ 20 amod _ _ 19 private _ ADJ JJ _ 20 amod _ _ 20 businessmen _ NOUN NNS _ 15 conj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 whom _ PRON WP _ 25 dobj _ _ 23 they _ PRON PRP _ 24 nsubj _ _ 24 called _ VERB VBD _ 20 acl:relcl _ _ 25 exploiters _ NOUN NNS _ 24 xcomp _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 decision _ NOUN NN _ 12 nsubj _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 reported _ VERB VBN _ 12 advcl _ _ 5 by _ ADP IN _ 10 case _ _ 6 the _ DET DT _ 10 det _ _ 7 official _ ADJ JJ _ 10 amod _ _ 8 Xinhua _ PROPN NNP _ 10 compound _ _ 9 News _ PROPN NNP _ 10 compound _ _ 10 Agency _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 indicated _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 24 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 crackdown _ NOUN NN _ 24 nsubj _ _ 16 prompted _ VERB VBN _ 15 acl _ _ 17 by _ ADP IN _ 20 case _ _ 18 student-led _ ADJ JJ _ 20 amod _ _ 19 pro-democracy _ ADJ JJ _ 20 amod _ _ 20 protests _ NOUN NNS _ 16 nmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 June _ PROPN NNP _ 20 nmod _ _ 23 is _ AUX VBZ _ 24 aux _ _ 24 intensifying _ VERB VBG _ 12 ccomp _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 Hundreds _ PROPN NNP _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 East _ PROPN NNP _ 4 compound _ _ 4 Germans _ PROPN NNPS _ 1 nmod _ _ 5 flocked _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 9 case _ _ 7 Bonn _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 Embassy _ PROPN NNP _ 5 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 Warsaw _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 bringing _ VERB VBG _ 5 xcomp _ _ 14 to _ ADP TO _ 17 case _ _ 15 more _ ADJ JJR _ 17 advmod _ _ 16 than _ ADP IN _ 15 mwe _ _ 17 1,200 _ NUM CD _ 13 nmod _ _ 18 the _ DET DT _ 19 det _ _ 19 number _ NOUN NN _ 13 dobj _ _ 20 of _ ADP IN _ 21 case _ _ 21 emigres _ NOUN NNS _ 19 nmod _ _ 22 expected _ VERB VBN _ 19 acl _ _ 23 to _ PART TO _ 24 mark _ _ 24 flee _ VERB VB _ 22 xcomp _ _ 25 to _ ADP TO _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 West _ PROPN NNP _ 24 nmod _ _ 28 beginning _ NOUN NN _ 29 dep _ _ 29 today _ NOUN NN _ 24 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 More _ ADJ JJR _ 3 advmod _ _ 2 than _ ADP IN _ 1 mwe _ _ 3 2,100 _ NUM CD _ 4 nummod _ _ 4 others _ NOUN NNS _ 5 nsubj _ _ 5 escaped _ VERB VBD _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 West _ PROPN NNP _ 8 compound _ _ 8 Germany _ PROPN NNP _ 5 nmod _ _ 9 through _ ADP IN _ 10 case _ _ 10 Hungary _ PROPN NNP _ 5 nmod _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 Weekend _ NOUN NN _ 5 nmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Leipzig _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 activists _ NOUN NNS _ 5 nsubj _ _ 5 vowed _ VERB VBD _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 continue _ VERB VB _ 5 xcomp _ _ 8 street _ NOUN NN _ 9 compound _ _ 9 protests _ NOUN NNS _ 7 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 demand _ VERB VB _ 9 acl _ _ 12 internal _ ADJ JJ _ 13 amod _ _ 13 change _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Zaire _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 President _ PROPN NNP _ 4 compound _ _ 4 Mobutu _ PROPN NNP _ 5 nsubj _ _ 5 met _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 southern _ ADJ JJ _ 8 amod _ _ 8 France _ PROPN NNP _ 5 nmod _ _ 9 with _ ADP IN _ 13 case _ _ 10 Angolan _ ADJ JJ _ 13 amod _ _ 11 rebel _ NOUN NN _ 13 compound _ _ 12 leader _ NOUN NN _ 13 compound _ _ 13 Savimbi _ PROPN NNP _ 5 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 a _ DET DT _ 18 det _ _ 16 senior _ ADJ JJ _ 18 amod _ _ 17 U.S. _ PROPN NNP _ 18 compound _ _ 18 envoy _ NOUN NN _ 13 conj _ _ 19 in _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 bid _ NOUN NN _ 5 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 revive _ VERB VB _ 21 acl _ _ 24 an _ DET DT _ 25 det _ _ 25 accord _ NOUN NN _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 end _ VERB VB _ 25 acl _ _ 28 Angola _ PROPN NNP _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 civil _ ADJ JJ _ 31 amod _ _ 31 war _ NOUN NN _ 27 dobj _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 Details _ NOUN NNS _ 19 nsubjpass _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 talks _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 described _ VERB VBN _ 4 acl _ _ 7 by _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 Zairean _ ADJ JJ _ 10 amod _ _ 10 official _ NOUN NN _ 6 nmod _ _ 11 as _ ADP IN _ 14 case _ _ 12 `` _ PUNCT `` _ 14 punct _ _ 13 very _ ADV RB _ 14 advmod _ _ 14 delicate _ ADJ JJ _ 6 advcl _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 '' _ PUNCT '' _ 4 punct _ _ 17 were _ AUX VBD _ 19 auxpass _ _ 18 n't _ PART RB _ 19 neg _ _ 19 disclosed _ VERB VBN _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 PLO _ PROPN NNP _ 3 compound _ _ 2 leader _ NOUN NN _ 3 compound _ _ 3 Arafat _ PROPN NNP _ 4 nsubj _ _ 4 insisted _ VERB VBD _ 0 root _ _ 5 on _ ADP IN _ 6 case _ _ 6 guarantees _ NOUN NNS _ 4 nmod _ _ 7 that _ SCONJ IN _ 16 mark _ _ 8 any _ DET DT _ 9 det _ _ 9 elections _ NOUN NNS _ 16 nsubj _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 Israeli-occupied _ ADJ JJ _ 13 amod _ _ 13 territories _ NOUN NNS _ 9 nmod _ _ 14 would _ AUX MD _ 16 aux _ _ 15 be _ VERB VB _ 16 cop _ _ 16 impartial _ ADJ JJ _ 6 ccomp _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 made _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 remarks _ NOUN NNS _ 2 dobj _ _ 5 to _ ADP TO _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 PLO _ PROPN NNP _ 8 compound _ _ 8 gathering _ NOUN NN _ 2 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Baghdad _ PROPN NNP _ 8 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 occupied _ ADJ JJ _ 4 amod _ _ 4 lands _ NOUN NNS _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 underground _ ADJ JJ _ 7 amod _ _ 7 leaders _ NOUN NNS _ 12 nsubj _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 Arab _ ADJ JJ _ 11 amod _ _ 11 uprising _ NOUN NN _ 7 nmod _ _ 12 rejected _ VERB VBD _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 U.S. _ PROPN NNP _ 15 compound _ _ 15 plan _ NOUN NN _ 12 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 arrange _ VERB VB _ 15 acl _ _ 18 Israeli-Palestinian _ ADJ JJ _ 19 amod _ _ 19 talks _ NOUN NNS _ 17 dobj _ _ 20 as _ SCONJ IN _ 22 mark _ _ 21 Shamir _ PROPN NNP _ 22 nsubj _ _ 22 opposed _ VERB VBD _ 12 advcl _ _ 23 holding _ VERB VBG _ 22 xcomp _ _ 24 such _ ADJ JJ _ 25 amod _ _ 25 discussions _ NOUN NNS _ 23 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 Cairo _ PROPN NNP _ 23 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 Lebanese _ ADJ JJ _ 3 amod _ _ 2 Christian _ ADJ JJ _ 3 amod _ _ 3 lawmakers _ NOUN NNS _ 4 nsubj _ _ 4 presented _ VERB VBN _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 Arab _ PROPN NNP _ 7 compound _ _ 7 mediators _ NOUN NNS _ 4 nmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 talks _ NOUN NNS _ 4 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 Saudi _ PROPN NNP _ 12 compound _ _ 12 Arabia _ PROPN NNP _ 9 nmod _ _ 13 proposals _ NOUN NNS _ 4 dobj _ _ 14 for _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 new _ ADJ JJ _ 17 amod _ _ 17 timetable _ NOUN NN _ 13 nmod _ _ 18 for _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 withdrawal _ NOUN NN _ 17 nmod _ _ 21 of _ ADP IN _ 24 case _ _ 22 Syria _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 forces _ NOUN NNS _ 20 nmod _ _ 25 from _ ADP IN _ 26 case _ _ 26 Lebanon _ PROPN NNP _ 20 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 6 nsubj _ _ 3 currently _ ADV RB _ 2 advmod _ _ 4 under _ ADP IN _ 5 case _ _ 5 study _ NOUN NN _ 2 nmod _ _ 6 gives _ VERB VBZ _ 0 root _ _ 7 Damascus _ PROPN NNP _ 6 iobj _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 years _ NOUN NNS _ 6 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 pull _ VERB VB _ 9 acl _ _ 12 back _ ADV RB _ 11 advmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 eastern _ ADJ JJ _ 15 amod _ _ 15 Lebanon _ PROPN NNP _ 12 nmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 starting _ VERB VBG _ 20 case _ _ 18 from _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 time _ NOUN NN _ 9 nmod _ _ 21 Beirut _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 legislature _ NOUN NN _ 24 nsubj _ _ 24 increases _ VERB VBZ _ 20 acl:relcl _ _ 25 political _ ADJ JJ _ 26 amod _ _ 26 power _ NOUN NN _ 24 dobj _ _ 27 for _ ADP IN _ 28 case _ _ 28 Moslems _ PROPN NNPS _ 26 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Hurricane _ PROPN NNP _ 2 compound _ _ 2 Jerry _ PROPN NNP _ 3 nsubj _ _ 3 threatened _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 combine _ VERB VB _ 3 xcomp _ _ 6 with _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 highest _ ADJ JJS _ 9 amod _ _ 9 tides _ NOUN NNS _ 5 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 9 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 swamp _ VERB VB _ 5 xcomp _ _ 15 the _ DET DT _ 17 det _ _ 16 Texas-Louisiana _ PROPN NNP _ 17 compound _ _ 17 coast _ NOUN NN _ 14 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Thousands _ NOUN NNS _ 8 nsubjpass _ _ 2 of _ ADP IN _ 3 case _ _ 3 residents _ NOUN NNS _ 1 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 low-lying _ ADJ JJ _ 6 amod _ _ 6 areas _ NOUN NNS _ 3 nmod _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 ordered _ VERB VBN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 evacuate _ VERB VB _ 8 xcomp _ _ 11 as _ SCONJ IN _ 14 mark _ _ 12 the _ DET DT _ 13 det _ _ 13 storm _ NOUN NN _ 14 nsubj _ _ 14 headed _ VERB VBD _ 8 advcl _ _ 15 north _ ADV RB _ 14 advmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 Gulf _ PROPN NNP _ 14 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 Mexico _ PROPN NNP _ 18 nmod _ _ 21 with _ ADP IN _ 24 case _ _ 22 80 _ NUM CD _ 23 compound _ _ 23 mph _ ADJ JJ _ 24 amod _ _ 24 winds _ NOUN NNS _ 14 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 7 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 Arby _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 franchisees _ NOUN NNS _ 2 nmod _ _ 7 said _ VERB VBD _ 0 root _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 formed _ VERB VBD _ 7 ccomp _ _ 10 an _ DET DT _ 11 det _ _ 11 association _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 oppose _ VERB VB _ 11 acl _ _ 14 Miami _ PROPN NNP _ 18 compound _ _ 15 Beach _ PROPN NNP _ 18 compound _ _ 16 financier _ NOUN NN _ 18 compound _ _ 17 Victor _ PROPN NNP _ 18 compound _ _ 18 Posner _ PROPN NNP _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 control _ NOUN NN _ 13 dobj _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 restaurant _ NOUN NN _ 24 compound _ _ 24 chain _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 decision _ NOUN NN _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 latest _ ADJ JJS _ 6 amod _ _ 6 move _ NOUN NN _ 0 root _ _ 7 in _ ADP IN _ 10 case _ _ 8 an _ DET DT _ 10 det _ _ 9 escalating _ VERB VBG _ 10 amod _ _ 10 battle _ NOUN NN _ 6 nmod _ _ 11 between _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 franchisees _ NOUN NNS _ 10 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Mr. _ PROPN NNP _ 16 compound _ _ 16 Posner _ PROPN NNP _ 13 conj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 began _ VERB VBD _ 10 acl:relcl _ _ 19 in _ ADP IN _ 20 case _ _ 20 August _ PROPN NNP _ 18 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 21 nmod _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 group _ NOUN NN _ 21 nsubj _ _ 7 called _ VERB VBD _ 6 acl _ _ 8 R.B. _ PROPN NNP _ 10 compound _ _ 9 Partners _ PROPN NNP _ 10 compound _ _ 10 Ltd. _ PROPN NNP _ 7 xcomp _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 consisting _ VERB VBG _ 6 acl _ _ 13 of _ ADP IN _ 14 case _ _ 14 eight _ NUM CD _ 12 nmod _ _ 15 of _ ADP IN _ 19 case _ _ 16 Arby _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 largest _ ADJ JJS _ 19 amod _ _ 19 franchisees _ NOUN NNS _ 14 nmod _ _ 20 , _ PUNCT , _ 6 punct _ _ 21 offered _ VERB VBD _ 0 root _ _ 22 more _ ADJ JJR _ 24 advmod _ _ 23 than _ ADP IN _ 22 mwe _ _ 24 $ _ SYM $ _ 21 dobj _ _ 25 200 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 to _ PART TO _ 28 mark _ _ 28 buy _ VERB VB _ 21 advcl _ _ 29 Arby _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 Inc. _ NOUN NN _ 28 dobj _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 which _ PRON WDT _ 35 nsubj _ _ 34 is _ VERB VBZ _ 35 cop _ _ 35 part _ NOUN NN _ 31 acl:relcl _ _ 36 of _ ADP IN _ 38 case _ _ 37 DWG _ PROPN NNP _ 38 compound _ _ 38 Corp _ PROPN NNP _ 35 nmod _ _ 39 . _ PUNCT . _ 21 punct _ _ 1 DWG _ PROPN NNP _ 5 nsubj _ _ 2 is _ VERB VBZ _ 5 cop _ _ 3 a _ DET DT _ 5 det _ _ 4 holding _ NOUN NN _ 5 compound _ _ 5 company _ NOUN NN _ 0 root _ _ 6 controlled _ VERB VBN _ 5 acl _ _ 7 by _ ADP IN _ 9 case _ _ 8 Mr. _ PROPN NNP _ 9 compound _ _ 9 Posner _ PROPN NNP _ 6 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 week _ NOUN NN _ 3 nmod:npmod _ _ 3 later _ ADV RB _ 19 advmod _ _ 4 , _ PUNCT , _ 19 punct _ _ 5 Leonard _ PROPN NNP _ 7 compound _ _ 6 H. _ PROPN NNP _ 7 compound _ _ 7 Roberts _ PROPN NNP _ 19 nsubjpass _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 president _ NOUN NN _ 7 appos _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 chief _ ADJ JJ _ 13 amod _ _ 12 executive _ ADJ JJ _ 13 amod _ _ 13 officer _ NOUN NN _ 9 conj _ _ 14 of _ ADP IN _ 15 case _ _ 15 Arby _ PROPN NNP _ 9 nmod _ _ 16 's _ PART POS _ 15 case _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 was _ AUX VBD _ 19 auxpass _ _ 19 fired _ VERB VBN _ 0 root _ _ 20 in _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 dispute _ NOUN NN _ 19 nmod _ _ 23 with _ ADP IN _ 25 case _ _ 24 Mr. _ PROPN NNP _ 25 compound _ _ 25 Posner _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 19 punct _ _ 1 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 42 _ NUM CD _ 4 nummod _ _ 4 franchisees _ NOUN NNS _ 5 nsubj _ _ 5 announced _ VERB VBD _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 formation _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 an _ DET DT _ 10 det _ _ 10 association _ NOUN NN _ 7 nmod _ _ 11 -- _ PUNCT : _ 12 punct _ _ 12 called _ VERB VBN _ 10 dep _ _ 13 A.P. _ PROPN NNP _ 15 compound _ _ 14 Association _ PROPN NNP _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 12 xcomp _ _ 16 -- _ PUNCT : _ 12 punct _ _ 17 to _ PART TO _ 19 mark _ _ 18 `` _ PUNCT `` _ 19 punct _ _ 19 preserve _ VERB VB _ 10 acl _ _ 20 the _ DET DT _ 21 det _ _ 21 integrity _ NOUN NN _ 19 dobj _ _ 22 of _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Arby _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 system _ NOUN NN _ 21 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 28 '' _ PUNCT '' _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 franchisees _ NOUN NNS _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 owners _ NOUN NNS _ 2 appos _ _ 5 or _ CONJ CC _ 4 cc _ _ 6 operators _ NOUN NNS _ 4 conj _ _ 7 of _ ADP IN _ 8 case _ _ 8 1,000 _ NUM CD _ 4 nmod _ _ 9 of _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 1,900 _ NUM CD _ 13 nummod _ _ 12 franchised _ ADJ JJ _ 13 amod _ _ 13 Arby _ PROPN NNP _ 8 nmod _ _ 14 's _ PART POS _ 13 case _ _ 15 in _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 13 nmod _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 : _ PUNCT : _ 19 punct _ _ 21 `` _ PUNCT `` _ 24 punct _ _ 22 We _ PRON PRP _ 24 nsubj _ _ 23 have _ AUX VBP _ 24 aux _ _ 24 concluded _ VERB VBN _ 19 ccomp _ _ 25 that _ SCONJ IN _ 36 mark _ _ 26 continued _ ADJ JJ _ 27 amod _ _ 27 control _ NOUN NN _ 36 nsubj _ _ 28 of _ ADP IN _ 29 case _ _ 29 Arby _ PROPN NNP _ 27 nmod _ _ 30 's _ PART POS _ 29 case _ _ 31 by _ ADP IN _ 33 case _ _ 32 Victor _ PROPN NNP _ 33 compound _ _ 33 Posner _ PROPN NNP _ 27 nmod _ _ 34 is _ VERB VBZ _ 36 cop _ _ 35 totally _ ADV RB _ 36 advmod _ _ 36 unacceptable _ ADJ JJ _ 24 ccomp _ _ 37 to _ ADP TO _ 38 case _ _ 38 us _ PRON PRP _ 36 nmod _ _ 39 , _ PUNCT , _ 36 punct _ _ 40 because _ SCONJ IN _ 44 mark _ _ 41 it _ PRON PRP _ 44 nsubj _ _ 42 is _ VERB VBZ _ 44 cop _ _ 43 extremely _ ADV RB _ 44 advmod _ _ 44 likely _ ADJ JJ _ 36 advcl _ _ 45 to _ PART TO _ 46 mark _ _ 46 cause _ VERB VB _ 44 xcomp _ _ 47 irreparable _ ADJ JJ _ 48 amod _ _ 48 damage _ NOUN NN _ 46 dobj _ _ 49 to _ ADP TO _ 53 case _ _ 50 the _ DET DT _ 51 det _ _ 51 Arby _ PROPN NNP _ 53 nmod:poss _ _ 52 's _ PART POS _ 51 case _ _ 53 system _ NOUN NN _ 48 nmod _ _ 54 . _ PUNCT . _ 19 punct _ _ 1 We _ PRON PRP _ 2 nsubj _ _ 2 support _ VERB VBP _ 0 root _ _ 3 all _ DET DT _ 4 det _ _ 4 efforts _ NOUN NNS _ 2 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 remove _ VERB VB _ 4 acl _ _ 7 Victor _ PROPN NNP _ 8 compound _ _ 8 Posner _ PROPN NNP _ 6 dobj _ _ 9 from _ ADP IN _ 10 case _ _ 10 control _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 14 case _ _ 12 Arby _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 Inc. _ PROPN NNP _ 10 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 Arby _ PROPN NNP _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 system _ NOUN NN _ 14 conj _ _ 20 . _ PUNCT . _ 2 punct _ _ 21 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 group _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 consider _ VERB VB _ 3 ccomp _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 among _ ADP IN _ 10 case _ _ 9 other _ ADJ JJ _ 10 amod _ _ 10 things _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 withholding _ VERB VBG _ 6 ccomp _ _ 13 royalty _ NOUN NN _ 14 compound _ _ 14 payments _ NOUN NNS _ 12 dobj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 initiating _ VERB VBG _ 12 conj _ _ 17 a _ DET DT _ 19 det _ _ 18 class-action _ ADJ JJ _ 19 amod _ _ 19 lawsuit _ NOUN NN _ 16 dobj _ _ 20 seeking _ VERB VBG _ 19 acl _ _ 21 court _ NOUN NN _ 22 compound _ _ 22 approval _ NOUN NN _ 20 dobj _ _ 23 for _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 withholdings _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 Florida _ PROPN NNP _ 14 nmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 Renee _ PROPN NNP _ 5 compound _ _ 5 Mottram _ PROPN NNP _ 14 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 a _ DET DT _ 10 det _ _ 8 senior _ ADJ JJ _ 10 amod _ _ 9 vice _ NOUN NN _ 10 compound _ _ 10 president _ NOUN NN _ 5 appos _ _ 11 at _ ADP IN _ 12 case _ _ 12 DWG _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 responded _ VERB VBD _ 0 root _ _ 15 : _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 20 punct _ _ 17 We _ PRON PRP _ 20 nsubj _ _ 18 do _ AUX VBP _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 think _ VERB VB _ 14 ccomp _ _ 21 any _ DET DT _ 22 det _ _ 22 individual _ NOUN NN _ 26 nsubj _ _ 23 or _ CONJ CC _ 22 cc _ _ 24 group _ NOUN NN _ 22 conj _ _ 25 should _ AUX MD _ 26 aux _ _ 26 disrupt _ VERB VB _ 20 ccomp _ _ 27 a _ DET DT _ 29 det _ _ 28 winning _ ADJ JJ _ 29 amod _ _ 29 system _ NOUN NN _ 26 dobj _ _ 30 or _ CONJ CC _ 26 cc _ _ 31 illegally _ ADV RB _ 32 advmod _ _ 32 interfere _ VERB VB _ 26 conj _ _ 33 with _ ADP IN _ 36 case _ _ 34 existing _ ADJ JJ _ 36 amod _ _ 35 contractual _ ADJ JJ _ 36 amod _ _ 36 relationships _ NOUN NNS _ 32 nmod _ _ 37 for _ ADP IN _ 41 case _ _ 38 their _ PRON PRP$ _ 41 nmod:poss _ _ 39 own _ ADJ JJ _ 41 amod _ _ 40 self-serving _ ADJ JJ _ 41 amod _ _ 41 motives _ NOUN NNS _ 26 nmod _ _ 42 . _ PUNCT . _ 14 punct _ _ 1 September _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 steep _ ADJ JJ _ 4 amod _ _ 4 rise _ NOUN NN _ 8 nsubj _ _ 5 in _ ADP IN _ 7 case _ _ 6 producer _ NOUN NN _ 7 compound _ _ 7 prices _ NOUN NNS _ 4 nmod _ _ 8 shows _ VERB VBZ _ 0 root _ _ 9 that _ SCONJ IN _ 12 mark _ _ 10 inflation _ NOUN NN _ 12 nsubj _ _ 11 still _ ADV RB _ 12 advmod _ _ 12 persists _ VERB VBZ _ 8 ccomp _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 the _ DET DT _ 16 det _ _ 16 pessimism _ NOUN NN _ 26 nsubj _ _ 17 over _ ADP IN _ 19 case _ _ 18 interest _ NOUN NN _ 19 compound _ _ 19 rates _ NOUN NNS _ 16 nmod _ _ 20 caused _ VERB VBN _ 16 acl _ _ 21 by _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 new _ ADJ JJ _ 25 amod _ _ 24 price _ NOUN NN _ 25 compound _ _ 25 data _ NOUN NNS _ 20 nmod _ _ 26 contributed _ VERB VBD _ 8 conj _ _ 27 to _ ADP TO _ 32 case _ _ 28 the _ DET DT _ 30 det _ _ 29 stock _ NOUN NN _ 30 compound _ _ 30 market _ NOUN NN _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 plunge _ NOUN NN _ 26 nmod _ _ 33 Friday _ PROPN NNP _ 32 nmod:tmod _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 After _ SCONJ IN _ 2 mark _ _ 2 falling _ VERB VBG _ 15 advcl _ _ 3 for _ ADP IN _ 6 case _ _ 4 three _ NUM CD _ 6 nummod _ _ 5 consecutive _ ADJ JJ _ 6 amod _ _ 6 months _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 15 punct _ _ 8 the _ DET DT _ 11 det _ _ 9 producer _ NOUN NN _ 11 compound _ _ 10 price _ NOUN NN _ 11 compound _ _ 11 index _ NOUN NN _ 15 nsubj _ _ 12 for _ ADP IN _ 14 case _ _ 13 finished _ ADJ JJ _ 14 amod _ _ 14 goods _ NOUN NNS _ 11 nmod _ _ 15 shot _ VERB VBD _ 0 root _ _ 16 up _ ADV RB _ 15 advmod _ _ 17 0.9 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 dobj _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 month _ NOUN NN _ 15 nmod:tmod _ _ 21 , _ PUNCT , _ 25 punct _ _ 22 the _ DET DT _ 24 det _ _ 23 Labor _ PROPN NNP _ 24 compound _ _ 24 Department _ PROPN NNP _ 25 nsubj _ _ 25 reported _ VERB VBD _ 15 parataxis _ _ 26 Friday _ PROPN NNP _ 25 nmod:tmod _ _ 27 , _ PUNCT , _ 25 punct _ _ 28 as _ SCONJ IN _ 31 mark _ _ 29 energy _ NOUN NN _ 30 compound _ _ 30 prices _ NOUN NNS _ 31 nsubj _ _ 31 jumped _ VERB VBD _ 15 advcl _ _ 32 after _ SCONJ IN _ 33 mark _ _ 33 tumbling _ VERB VBG _ 31 advcl _ _ 34 through _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 summer _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 15 punct _ _ 1 Although _ SCONJ IN _ 16 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 report _ NOUN NN _ 16 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 released _ VERB VBN _ 3 acl:relcl _ _ 8 before _ SCONJ IN _ 12 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 12 nsubj _ _ 12 opened _ VERB VBD _ 7 advcl _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 did _ AUX VBD _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 trigger _ VERB VB _ 28 advcl _ _ 17 the _ DET DT _ 19 det _ _ 18 190.58-point _ ADJ JJ _ 19 amod _ _ 19 drop _ NOUN NN _ 16 dobj _ _ 20 in _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 Dow _ PROPN NNP _ 25 compound _ _ 23 Jones _ PROPN NNP _ 25 compound _ _ 24 Industrial _ PROPN NNP _ 25 compound _ _ 25 Average _ PROPN NNP _ 19 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 analysts _ NOUN NNS _ 28 nsubj _ _ 28 said _ VERB VBD _ 0 root _ _ 29 it _ PRON PRP _ 31 nsubj _ _ 30 did _ AUX VBD _ 31 aux _ _ 31 play _ VERB VB _ 28 ccomp _ _ 32 a _ DET DT _ 33 det _ _ 33 role _ NOUN NN _ 31 dobj _ _ 34 in _ ADP IN _ 38 case _ _ 35 the _ DET DT _ 36 det _ _ 36 market _ NOUN NN _ 38 nmod:poss _ _ 37 's _ PART POS _ 36 case _ _ 38 decline _ NOUN NN _ 31 nmod _ _ 39 . _ PUNCT . _ 28 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 immediately _ ADV RB _ 3 advmod _ _ 3 viewed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 price _ NOUN NN _ 6 compound _ _ 6 data _ NOUN NN _ 3 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 the _ DET DT _ 11 det _ _ 9 grimmest _ ADJ JJS _ 11 amod _ _ 10 inflation _ NOUN NN _ 11 compound _ _ 11 news _ NOUN NN _ 6 appos _ _ 12 in _ ADP IN _ 13 case _ _ 13 months _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 as _ ADP IN _ 16 case _ _ 16 evidence _ NOUN NN _ 3 nmod _ _ 17 that _ SCONJ IN _ 22 mark _ _ 18 the _ DET DT _ 20 det _ _ 19 Federal _ PROPN NNP _ 20 compound _ _ 20 Reserve _ PROPN NNP _ 22 nsubj _ _ 21 was _ VERB VBD _ 22 cop _ _ 22 unlikely _ ADJ JJ _ 16 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 allow _ VERB VB _ 22 xcomp _ _ 25 interest _ NOUN NN _ 26 compound _ _ 26 rates _ NOUN NNS _ 24 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 fall _ VERB VB _ 24 xcomp _ _ 29 as _ SCONJ IN _ 33 mark _ _ 30 many _ ADJ JJ _ 31 amod _ _ 31 investors _ NOUN NNS _ 33 nsubj _ _ 32 had _ AUX VBD _ 33 aux _ _ 33 hoped _ VERB VBN _ 24 advcl _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 Further _ ADV RB _ 2 advmod _ _ 2 fueling _ VERB VBG _ 23 advcl _ _ 3 the _ DET DT _ 4 det _ _ 4 belief _ NOUN NN _ 2 dobj _ _ 5 that _ SCONJ IN _ 11 mark _ _ 6 pressures _ NOUN NNS _ 11 nsubj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 economy _ NOUN NN _ 6 nmod _ _ 10 were _ VERB VBD _ 11 cop _ _ 11 sufficient _ ADJ JJ _ 4 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 keep _ VERB VB _ 11 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 Fed _ PROPN NNP _ 13 dobj _ _ 16 from _ SCONJ IN _ 17 mark _ _ 17 easing _ VERB VBG _ 13 advcl _ _ 18 credit _ NOUN NN _ 17 dobj _ _ 19 , _ PUNCT , _ 23 punct _ _ 20 the _ DET DT _ 22 det _ _ 21 Commerce _ PROPN NNP _ 22 compound _ _ 22 Department _ PROPN NNP _ 23 nsubj _ _ 23 reported _ VERB VBD _ 0 root _ _ 24 Friday _ PROPN NNP _ 23 nmod:tmod _ _ 25 that _ SCONJ IN _ 28 mark _ _ 26 retail _ ADJ JJ _ 27 amod _ _ 27 sales _ NOUN NNS _ 28 nsubj _ _ 28 grew _ VERB VBD _ 23 ccomp _ _ 29 0.5 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 28 dobj _ _ 31 in _ ADP IN _ 32 case _ _ 32 September _ PROPN NNP _ 28 nmod _ _ 33 , _ PUNCT , _ 28 punct _ _ 34 to _ ADP TO _ 35 case _ _ 35 $ _ SYM $ _ 28 nmod _ _ 36 145.21 _ NUM CD _ 37 compound _ _ 37 billion _ NUM CD _ 35 nummod _ _ 38 . _ PUNCT . _ 23 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 rise _ NOUN NN _ 3 nsubj _ _ 3 came _ VERB VBD _ 0 root _ _ 4 on _ ADP IN _ 5 case _ _ 5 top _ NOUN NN _ 3 nmod _ _ 6 of _ ADP IN _ 10 case _ _ 7 a _ DET DT _ 10 det _ _ 8 0.7 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 gain _ NOUN NN _ 5 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 August _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 and _ CONJ CC _ 3 cc _ _ 15 suggested _ VERB VBD _ 3 conj _ _ 16 there _ PRON EX _ 17 expl _ _ 17 is _ VERB VBZ _ 15 ccomp _ _ 18 still _ ADV RB _ 17 advmod _ _ 19 healthy _ ADJ JJ _ 21 amod _ _ 20 consumer _ NOUN NN _ 21 compound _ _ 21 demand _ NOUN NN _ 17 nsubj _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 economy _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 33 ccomp _ _ 4 the _ DET DT _ 6 det _ _ 5 Friday _ PROPN NNP _ 6 compound _ _ 6 report _ NOUN NN _ 16 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 combined _ VERB VBN _ 11 case _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 actions _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 Fed _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 weakened _ VERB VBD _ 3 ccomp _ _ 17 the _ DET DT _ 18 det _ _ 18 belief _ NOUN NN _ 16 dobj _ _ 19 that _ SCONJ IN _ 22 mark _ _ 20 there _ PRON EX _ 22 expl _ _ 21 was _ AUX VBD _ 22 aux _ _ 22 going _ VERB VBG _ 18 ccomp _ _ 23 to _ PART TO _ 27 mark _ _ 24 be _ VERB VB _ 27 cop _ _ 25 an _ DET DT _ 27 det _ _ 26 imminent _ ADJ JJ _ 27 amod _ _ 27 easing _ NOUN NN _ 22 xcomp _ _ 28 of _ ADP IN _ 30 case _ _ 29 monetary _ ADJ JJ _ 30 amod _ _ 30 policy _ NOUN NN _ 27 nmod _ _ 31 , _ PUNCT , _ 33 punct _ _ 32 '' _ PUNCT '' _ 33 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 Robert _ PROPN NNP _ 35 compound _ _ 35 Dederick _ PROPN NNP _ 33 nsubj _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 chief _ ADJ JJ _ 38 amod _ _ 38 economist _ NOUN NN _ 35 appos _ _ 39 at _ ADP IN _ 42 case _ _ 40 Northern _ PROPN NNP _ 42 compound _ _ 41 Trust _ PROPN NNP _ 42 compound _ _ 42 Co. _ PROPN NNP _ 38 nmod _ _ 43 in _ ADP IN _ 44 case _ _ 44 Chicago _ PROPN NNP _ 42 nmod _ _ 45 . _ PUNCT . _ 33 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 economists _ NOUN NNS _ 4 nsubj _ _ 3 were _ VERB VBD _ 4 cop _ _ 4 divided _ ADJ JJ _ 0 root _ _ 5 over _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 extent _ NOUN NN _ 4 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 inflation _ NOUN NN _ 11 compound _ _ 11 threat _ NOUN NN _ 7 nmod _ _ 12 signaled _ VERB VBD _ 11 acl _ _ 13 by _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 new _ ADJ JJ _ 16 amod _ _ 16 numbers _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 35 punct _ _ 2 The _ DET DT _ 6 det _ _ 3 overall _ ADJ JJ _ 6 amod _ _ 4 0.9 _ NUM CD _ 5 compound _ _ 5 % _ SYM NN _ 6 amod _ _ 6 increase _ NOUN NN _ 8 nsubj _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 serious _ ADJ JJ _ 35 ccomp _ _ 9 in _ ADP IN _ 10 case _ _ 10 itself _ PRON PRP _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 but _ CONJ CC _ 8 cc _ _ 13 what _ PRON WP _ 16 nsubj _ _ 14 is _ VERB VBZ _ 16 cop _ _ 15 even _ ADV RB _ 16 advmod _ _ 16 worse _ ADJ JJR _ 17 csubj _ _ 17 is _ VERB VBZ _ 8 conj _ _ 18 that _ SCONJ IN _ 29 mark _ _ 19 excluding _ VERB VBG _ 20 case _ _ 20 food _ NOUN NN _ 29 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 energy _ NOUN NN _ 20 conj _ _ 23 , _ PUNCT , _ 29 punct _ _ 24 the _ DET DT _ 27 det _ _ 25 producer _ NOUN NN _ 27 compound _ _ 26 price _ NOUN NN _ 27 compound _ _ 27 index _ NOUN NN _ 29 nsubj _ _ 28 still _ ADV RB _ 29 advmod _ _ 29 increased _ VERB VBD _ 17 ccomp _ _ 30 by _ ADP IN _ 32 case _ _ 31 0.7 _ NUM CD _ 32 nummod _ _ 32 % _ SYM NN _ 29 nmod _ _ 33 , _ PUNCT , _ 35 punct _ _ 34 '' _ PUNCT '' _ 35 punct _ _ 35 said _ VERB VBD _ 0 root _ _ 36 Gordon _ PROPN NNP _ 37 compound _ _ 37 Richards _ PROPN NNP _ 35 nsubj _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 an _ DET DT _ 40 det _ _ 40 economist _ NOUN NN _ 37 appos _ _ 41 at _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 National _ PROPN NNP _ 44 compound _ _ 44 Association _ PROPN NNP _ 40 nmod _ _ 45 of _ ADP IN _ 46 case _ _ 46 Manufacturers _ PROPN NNP _ 44 nmod _ _ 47 . _ PUNCT . _ 35 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 Sung _ PROPN NNP _ 4 compound _ _ 3 Won _ PROPN NNP _ 4 compound _ _ 4 Sohn _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 chief _ ADJ JJ _ 7 amod _ _ 7 economist _ NOUN NN _ 4 appos _ _ 8 at _ ADP IN _ 10 case _ _ 9 Norwest _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 7 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Minneapolis _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 blamed _ VERB VBD _ 0 root _ _ 15 rising _ VERB VBG _ 17 amod _ _ 16 energy _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 14 dobj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 the _ DET DT _ 22 det _ _ 20 annual _ ADJ JJ _ 22 amod _ _ 21 autumn _ NOUN NN _ 22 compound _ _ 22 increase _ NOUN NN _ 17 conj _ _ 23 in _ ADP IN _ 25 case _ _ 24 car _ NOUN NN _ 25 compound _ _ 25 prices _ NOUN NNS _ 22 nmod _ _ 26 for _ ADP IN _ 27 case _ _ 27 most _ ADJ JJS _ 14 nmod _ _ 28 of _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 September _ PROPN NNP _ 31 compound _ _ 31 jump _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 say _ VERB VB _ 18 ccomp _ _ 5 this _ PRON DT _ 9 nsubj _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 not _ PART RB _ 9 neg _ _ 8 bad _ ADJ JJ _ 9 amod _ _ 9 news _ NOUN NN _ 4 dep _ _ 10 ; _ PUNCT : _ 9 punct _ _ 11 this _ PRON DT _ 14 nsubj _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 a _ DET DT _ 14 det _ _ 14 blip _ NOUN NN _ 9 parataxis _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 core _ ADJ JJ _ 4 amod _ _ 4 rate _ NOUN NN _ 5 nsubj _ _ 5 is _ VERB VBZ _ 0 root _ _ 6 not _ PART RB _ 5 neg _ _ 7 really _ ADV RB _ 5 advmod _ _ 8 out _ ADP IN _ 5 advmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 line _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 1 All _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 energy _ NOUN NN _ 5 compound _ _ 5 prices _ NOUN NNS _ 7 nsubj _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 skewed _ VERB VBN _ 0 root _ _ 8 the _ DET DT _ 11 det _ _ 9 producer _ NOUN NN _ 11 compound _ _ 10 price _ NOUN NN _ 11 compound _ _ 11 index _ NOUN NN _ 7 dobj _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 measures _ VERB VBZ _ 11 acl:relcl _ _ 15 changes _ NOUN NNS _ 14 dobj _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 prices _ NOUN NNS _ 15 nmod _ _ 19 producers _ NOUN NNS _ 20 nsubj _ _ 20 receive _ VERB VBP _ 18 acl:relcl _ _ 21 for _ ADP IN _ 22 case _ _ 22 goods _ NOUN NNS _ 20 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 Inflation _ NOUN NN _ 4 nsubj _ _ 2 unquestionably _ ADV RB _ 4 advmod _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 fallen _ VERB VBN _ 0 root _ _ 5 back _ ADV RB _ 4 advmod _ _ 6 from _ ADP IN _ 9 case _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 torrid _ ADJ JJ _ 9 amod _ _ 9 pace _ NOUN NN _ 5 nmod _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 winter _ NOUN NN _ 9 nmod:tmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 when _ ADV WRB _ 21 advmod _ _ 14 a _ DET DT _ 16 det _ _ 15 steep _ ADJ JJ _ 16 amod _ _ 16 run-up _ NOUN NN _ 21 nsubj _ _ 17 in _ ADP IN _ 20 case _ _ 18 world _ NOUN NN _ 20 compound _ _ 19 oil _ NOUN NN _ 20 compound _ _ 20 prices _ NOUN NNS _ 16 nmod _ _ 21 sent _ VERB VBD _ 11 acl:relcl _ _ 22 the _ DET DT _ 23 det _ _ 23 index _ NOUN NN _ 24 nsubj _ _ 24 surging _ VERB VBG _ 21 dep _ _ 25 at _ ADP IN _ 28 case _ _ 26 double-digit _ ADJ JJ _ 28 amod _ _ 27 annual _ ADJ JJ _ 28 amod _ _ 28 rates _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 4 punct _ _ 1 Energy _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 4 nsubj _ _ 3 then _ ADV RB _ 4 advmod _ _ 4 plummeted _ VERB VBN _ 0 root _ _ 5 through _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 summer _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 causing _ VERB VBG _ 4 xcomp _ _ 10 the _ DET DT _ 11 det _ _ 11 index _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 decline _ VERB VB _ 9 xcomp _ _ 14 for _ ADP IN _ 17 case _ _ 15 three _ NUM CD _ 17 nummod _ _ 16 consecutive _ ADJ JJ _ 17 amod _ _ 17 months _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Overall _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 index _ NOUN NN _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 climbed _ VERB VBN _ 24 ccomp _ _ 7 at _ ADP IN _ 13 case _ _ 8 a _ DET DT _ 13 det _ _ 9 5.1 _ NUM CD _ 10 compound _ _ 10 % _ SYM NN _ 13 amod _ _ 11 compound _ ADJ JJ _ 13 amod _ _ 12 annual _ ADJ JJ _ 13 amod _ _ 13 rate _ NOUN NN _ 6 nmod _ _ 14 since _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 start _ NOUN NN _ 6 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 the _ DET DT _ 23 det _ _ 22 Labor _ PROPN NNP _ 23 compound _ _ 23 Department _ PROPN NNP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 While _ SCONJ IN _ 4 mark _ _ 2 far _ ADV RB _ 4 advmod _ _ 3 more _ ADV RBR _ 4 advmod _ _ 4 restrained _ ADJ JJ _ 20 advcl _ _ 5 than _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 pace _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 beginning _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 year _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 20 punct _ _ 15 that _ PRON WDT _ 20 nsubj _ _ 16 is _ VERB VBZ _ 20 cop _ _ 17 still _ ADV RB _ 20 advmod _ _ 18 a _ DET DT _ 20 det _ _ 19 steeper _ ADJ JJR _ 20 amod _ _ 20 rise _ NOUN NN _ 0 root _ _ 21 than _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 4.0 _ NUM CD _ 24 compound _ _ 24 % _ SYM NN _ 25 amod _ _ 25 increase _ NOUN NN _ 20 nmod _ _ 26 for _ ADP IN _ 27 case _ _ 27 all _ DET DT _ 25 nmod _ _ 28 of _ ADP IN _ 29 case _ _ 29 1988 _ NUM CD _ 27 nmod _ _ 30 . _ PUNCT . _ 20 punct _ _ 1 Moreover _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 this _ DET DT _ 4 det _ _ 4 year _ NOUN NN _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 good _ ADJ JJ _ 8 amod _ _ 7 inflation _ NOUN NN _ 8 compound _ _ 8 news _ NOUN NN _ 11 nsubj _ _ 9 may _ AUX MD _ 11 aux _ _ 10 have _ AUX VB _ 11 aux _ _ 11 ended _ VERB VBN _ 0 root _ _ 12 last _ ADJ JJ _ 13 amod _ _ 13 month _ NOUN NN _ 11 nmod:tmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 when _ ADV WRB _ 18 advmod _ _ 16 energy _ NOUN NN _ 17 compound _ _ 17 prices _ NOUN NNS _ 18 nsubj _ _ 18 zoomed _ VERB VBD _ 13 acl:relcl _ _ 19 up _ ADV RB _ 18 advmod _ _ 20 6.5 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 18 dobj _ _ 22 after _ SCONJ IN _ 23 mark _ _ 23 plunging _ VERB VBG _ 18 advcl _ _ 24 7.3 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 23 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 August _ PROPN NNP _ 23 nmod _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 expect _ VERB VBP _ 0 root _ _ 4 oil _ NOUN NN _ 5 compound _ _ 5 prices _ NOUN NNS _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 remain _ VERB VB _ 3 xcomp _ _ 8 relatively _ ADV RB _ 9 advmod _ _ 9 stable _ ADJ JJ _ 7 xcomp _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 months _ NOUN NNS _ 7 nmod _ _ 13 ahead _ ADV RB _ 12 advmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 leaving _ VERB VBG _ 7 xcomp _ _ 16 the _ DET DT _ 18 det _ _ 17 future _ ADJ JJ _ 18 amod _ _ 18 pace _ NOUN NN _ 21 nsubj _ _ 19 of _ ADP IN _ 20 case _ _ 20 inflation _ NOUN NN _ 18 nmod _ _ 21 uncertain _ ADJ JJ _ 15 xcomp _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 had _ AUX VBD _ 3 aux _ _ 3 expected _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 13 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 climb _ NOUN NN _ 13 nsubj _ _ 7 in _ ADP IN _ 9 case _ _ 8 oil _ NOUN NN _ 9 compound _ _ 9 prices _ NOUN NNS _ 6 nmod _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 month _ NOUN NN _ 6 nmod:tmod _ _ 12 would _ AUX MD _ 13 aux _ _ 13 lead _ VERB VB _ 3 ccomp _ _ 14 to _ ADP TO _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 substantial _ ADJ JJ _ 17 amod _ _ 17 rise _ NOUN NN _ 13 nmod _ _ 18 in _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 producer _ NOUN NN _ 22 compound _ _ 21 price _ NOUN NN _ 22 compound _ _ 22 index _ NOUN NN _ 17 nmod _ _ 23 , _ PUNCT , _ 3 punct _ _ 24 but _ CONJ CC _ 3 cc _ _ 25 the _ DET DT _ 28 det _ _ 26 0.9 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 28 amod _ _ 28 climb _ NOUN NN _ 30 nsubj _ _ 29 was _ VERB VBD _ 30 cop _ _ 30 higher _ ADJ JJR _ 3 conj _ _ 31 than _ SCONJ IN _ 33 mark _ _ 32 most _ ADJ JJS _ 33 nsubj _ _ 33 anticipated _ VERB VBD _ 30 ccomp _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 20 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 resurgence _ NOUN NN _ 11 nsubj _ _ 6 -LCB- _ PUNCT -LRB- _ 8 punct _ _ 7 in _ ADP IN _ 8 case _ _ 8 inflation _ NOUN NN _ 5 nmod _ _ 9 -RCB- _ PUNCT -RRB- _ 8 punct _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 going _ VERB VBG _ 3 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 continue _ VERB VB _ 11 xcomp _ _ 14 for _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 few _ ADJ JJ _ 17 amod _ _ 17 months _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 John _ PROPN NNP _ 22 compound _ _ 22 Mueller _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 chief _ ADJ JJ _ 25 amod _ _ 25 economist _ NOUN NN _ 22 appos _ _ 26 at _ ADP IN _ 29 case _ _ 27 Bell _ PROPN NNP _ 29 compound _ _ 28 Mueller _ PROPN NNP _ 29 compound _ _ 29 Cannon _ PROPN NNP _ 25 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 a _ DET DT _ 35 det _ _ 32 Washington _ PROPN NNP _ 35 compound _ _ 33 economic _ ADJ JJ _ 35 amod _ _ 34 forecasting _ NOUN NN _ 35 compound _ _ 35 firm _ NOUN NN _ 29 appos _ _ 36 . _ PUNCT . _ 20 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 predicted _ VERB VBD _ 0 root _ _ 3 that _ DET DT _ 4 det _ _ 4 inflation _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 moderate _ VERB VB _ 2 ccomp _ _ 7 next _ ADJ JJ _ 8 amod _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 saying _ VERB VBG _ 2 xcomp _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 credit _ NOUN NN _ 13 compound _ _ 13 conditions _ NOUN NNS _ 16 nsubj _ _ 14 are _ VERB VBP _ 16 cop _ _ 15 fairly _ ADV RB _ 16 advmod _ _ 16 tight _ ADJ JJ _ 10 ccomp _ _ 17 world-wide _ ADV RB _ 16 advmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 Dirk _ PROPN NNP _ 4 compound _ _ 3 Van _ PROPN NNP _ 4 compound _ _ 4 Dongen _ PROPN NNP _ 14 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 president _ NOUN NN _ 4 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 National _ PROPN NNP _ 10 compound _ _ 10 Association _ PROPN NNP _ 6 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 Wholesaler-Distributors _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 that _ SCONJ IN _ 26 mark _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 month _ NOUN NN _ 19 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 rise _ NOUN NN _ 26 nsubj _ _ 20 `` _ PUNCT `` _ 26 punct _ _ 21 is _ VERB VBZ _ 26 cop _ _ 22 n't _ PART RB _ 26 neg _ _ 23 as _ ADV RB _ 26 advmod _ _ 24 bad _ ADJ JJ _ 26 amod _ _ 25 an _ DET DT _ 26 det _ _ 26 omen _ NOUN NN _ 14 ccomp _ _ 27 '' _ PUNCT '' _ 26 punct _ _ 28 as _ SCONJ IN _ 33 mark _ _ 29 the _ DET DT _ 32 det _ _ 30 0.9 _ NUM CD _ 31 compound _ _ 31 % _ SYM NN _ 32 amod _ _ 32 figure _ NOUN NN _ 33 nsubj _ _ 33 suggests _ VERB VBZ _ 26 acl:relcl _ _ 34 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 37 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 examine _ VERB VBP _ 12 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 data _ NOUN NN _ 4 dobj _ _ 7 carefully _ ADV RB _ 4 advmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 increase _ NOUN NN _ 12 nsubjpass _ _ 11 is _ AUX VBZ _ 12 auxpass _ _ 12 concentrated _ VERB VBN _ 37 ccomp _ _ 13 in _ ADP IN _ 18 case _ _ 14 energy _ NOUN NN _ 18 compound _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 motor _ NOUN NN _ 14 conj _ _ 17 vehicle _ NOUN NN _ 18 compound _ _ 18 prices _ NOUN NNS _ 12 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 rather _ ADV RB _ 25 mark _ _ 21 than _ SCONJ IN _ 20 mwe _ _ 22 being _ VERB VBG _ 25 cop _ _ 23 a _ DET DT _ 25 det _ _ 24 broad-based _ ADJ JJ _ 25 amod _ _ 25 advance _ NOUN NN _ 18 acl _ _ 26 in _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 prices _ NOUN NNS _ 25 nmod _ _ 29 of _ ADP IN _ 33 case _ _ 30 consumer _ NOUN NN _ 33 compound _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 industrial _ ADJ JJ _ 30 conj _ _ 33 goods _ NOUN NNS _ 28 nmod _ _ 34 , _ PUNCT , _ 37 punct _ _ 35 '' _ PUNCT '' _ 37 punct _ _ 36 he _ PRON PRP _ 37 nsubj _ _ 37 explained _ VERB VBD _ 0 root _ _ 38 . _ PUNCT . _ 37 punct _ _ 1 Passenger _ NOUN NN _ 3 compound _ _ 2 car _ NOUN NN _ 3 compound _ _ 3 prices _ NOUN NNS _ 4 nsubj _ _ 4 jumped _ VERB VBD _ 0 root _ _ 5 3.8 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 4 dobj _ _ 7 in _ ADP IN _ 8 case _ _ 8 September _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 after _ SCONJ IN _ 11 mark _ _ 11 climbing _ VERB VBG _ 4 advcl _ _ 12 0.5 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 August _ PROPN NNP _ 11 nmod _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 declining _ VERB VBG _ 11 conj _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 late _ ADJ JJ _ 21 amod _ _ 21 spring _ NOUN NN _ 17 nmod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 summer _ NOUN NN _ 21 conj _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 September _ PROPN NNP _ 6 compound _ _ 6 increase _ NOUN NN _ 10 nsubj _ _ 7 was _ VERB VBD _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 one-time _ ADJ JJ _ 10 amod _ _ 10 event _ NOUN NN _ 3 ccomp _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 coming _ VERB VBG _ 10 advcl _ _ 13 as _ SCONJ IN _ 15 mark _ _ 14 dealers _ NOUN NNS _ 15 nsubj _ _ 15 introduced _ VERB VBD _ 12 advcl _ _ 16 their _ PRON PRP$ _ 18 nmod:poss _ _ 17 1990 _ NUM CD _ 18 nummod _ _ 18 models _ NOUN NNS _ 15 dobj _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 7 mark _ _ 2 all _ DET PDT _ 5 det:predet _ _ 3 the _ DET DT _ 5 det _ _ 4 price _ NOUN NN _ 5 compound _ _ 5 data _ NOUN NNS _ 7 nsubjpass _ _ 6 were _ AUX VBD _ 7 auxpass _ _ 7 adjusted _ VERB VBN _ 15 advcl _ _ 8 for _ ADP IN _ 11 case _ _ 9 normal _ ADJ JJ _ 11 amod _ _ 10 seasonal _ ADJ JJ _ 11 amod _ _ 11 fluctuations _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 car _ NOUN NN _ 14 compound _ _ 14 prices _ NOUN NNS _ 15 nsubj _ _ 15 rose _ VERB VBD _ 0 root _ _ 16 beyond _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 customary _ ADJ JJ _ 20 amod _ _ 19 autumn _ NOUN NN _ 20 compound _ _ 20 increase _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 Prices _ NOUN NNS _ 5 nsubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 capital _ NOUN NN _ 4 compound _ _ 4 equipment _ NOUN NN _ 1 nmod _ _ 5 rose _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 9 det _ _ 7 hefty _ ADJ JJ _ 9 amod _ _ 8 1.1 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 5 dobj _ _ 10 in _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 5 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 while _ SCONJ IN _ 19 mark _ _ 14 prices _ NOUN NNS _ 19 nsubj _ _ 15 for _ ADP IN _ 18 case _ _ 16 home _ NOUN NN _ 18 compound _ _ 17 electronic _ ADJ JJ _ 18 amod _ _ 18 equipment _ NOUN NN _ 14 nmod _ _ 19 fell _ VERB VBD _ 5 advcl _ _ 20 1.1 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 19 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Food _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 0.6 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 after _ SCONJ IN _ 8 mark _ _ 8 climbing _ VERB VBG _ 3 advcl _ _ 9 0.3 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 8 dobj _ _ 11 in _ ADP IN _ 12 case _ _ 12 August _ PROPN NNP _ 8 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Meanwhile _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 retail _ ADJ JJ _ 6 amod _ _ 5 sales _ NOUN NNS _ 6 compound _ _ 6 report _ NOUN NN _ 7 nsubj _ _ 7 showed _ VERB VBD _ 0 root _ _ 8 that _ SCONJ IN _ 11 mark _ _ 9 car _ NOUN NN _ 10 compound _ _ 10 sales _ NOUN NNS _ 11 nsubj _ _ 11 rose _ VERB VBD _ 7 ccomp _ _ 12 0.8 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 in _ ADP IN _ 15 case _ _ 15 September _ PROPN NNP _ 11 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 $ _ SYM $ _ 11 nmod _ _ 18 32.82 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 at _ ADP IN _ 3 case _ _ 3 least _ ADJ JJS _ 4 advmod _ _ 4 part _ NOUN NN _ 10 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 increase _ NOUN NN _ 4 nmod _ _ 8 could _ AUX MD _ 10 aux _ _ 9 have _ AUX VB _ 10 aux _ _ 10 come _ VERB VBN _ 16 ccomp _ _ 11 from _ ADP IN _ 13 case _ _ 12 higher _ ADJ JJR _ 13 amod _ _ 13 prices _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 analysts _ NOUN NNS _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 Sales _ NOUN NNS _ 6 nsubj _ _ 2 at _ ADP IN _ 5 case _ _ 3 general _ ADJ JJ _ 5 amod _ _ 4 merchandise _ NOUN NN _ 5 compound _ _ 5 stores _ NOUN NNS _ 1 nmod _ _ 6 rose _ VERB VBD _ 0 root _ _ 7 1.7 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 after _ SCONJ IN _ 10 mark _ _ 10 declining _ VERB VBG _ 6 advcl _ _ 11 0.6 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 August _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 while _ SCONJ IN _ 21 mark _ _ 17 sales _ NOUN NNS _ 21 nsubj _ _ 18 of _ ADP IN _ 20 case _ _ 19 building _ NOUN NN _ 20 compound _ _ 20 materials _ NOUN NNS _ 17 nmod _ _ 21 fell _ VERB VBD _ 6 advcl _ _ 22 1.8 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dobj _ _ 24 after _ SCONJ IN _ 25 mark _ _ 25 rising _ VERB VBG _ 21 advcl _ _ 26 1.7 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 25 dobj _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 Producer _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 intermediate _ ADJ JJ _ 5 amod _ _ 5 goods _ NOUN NNS _ 2 nmod _ _ 6 grew _ VERB VBD _ 0 root _ _ 7 0.4 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 September _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 after _ SCONJ IN _ 13 mark _ _ 13 dropping _ VERB VBG _ 6 advcl _ _ 14 for _ ADP IN _ 17 case _ _ 15 three _ NUM CD _ 17 nummod _ _ 16 consecutive _ ADJ JJ _ 17 amod _ _ 17 months _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 6 punct _ _ 1 Prices _ NOUN NNS _ 12 nsubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 crude _ ADJ JJ _ 4 amod _ _ 4 goods _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 an _ DET DT _ 7 det _ _ 7 array _ NOUN NN _ 4 appos _ _ 8 of _ ADP IN _ 10 case _ _ 9 raw _ ADJ JJ _ 10 amod _ _ 10 materials _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 jumped _ VERB VBD _ 0 root _ _ 13 1.1 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 12 dobj _ _ 15 after _ SCONJ IN _ 16 mark _ _ 16 declining _ VERB VBG _ 12 advcl _ _ 17 1.9 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 August _ PROPN NNP _ 16 nmod _ _ 21 and _ CONJ CC _ 16 cc _ _ 22 edging _ VERB VBG _ 16 conj _ _ 23 up _ ADP RP _ 22 compound:prt _ _ 24 0.2 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 22 dobj _ _ 26 in _ ADP IN _ 27 case _ _ 27 July _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 12 punct _ _ 1 Here _ ADV RB _ 2 advmod _ _ 2 are _ VERB VBP _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 Labor _ PROPN NNP _ 5 compound _ _ 5 Department _ PROPN NNP _ 9 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 producer _ NOUN NN _ 9 compound _ _ 8 price _ NOUN NN _ 9 compound _ _ 9 indexes _ NOUN NNS _ 2 dep _ _ 10 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 11 1982 _ NUM CD _ 13 nsubj _ _ 12 = _ SYM SYM _ 13 dep _ _ 13 100 _ NUM CD _ 9 dep _ _ 14 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 15 for _ ADP IN _ 16 case _ _ 16 September _ PROPN NNP _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 before _ ADP IN _ 20 case _ _ 19 seasonal _ ADJ JJ _ 20 amod _ _ 20 adjustment _ NOUN NN _ 9 nmod _ _ 21 , _ PUNCT , _ 9 punct _ _ 22 and _ CONJ CC _ 9 cc _ _ 23 the _ DET DT _ 25 det _ _ 24 percentage _ NOUN NN _ 25 compound _ _ 25 changes _ NOUN NNS _ 9 conj _ _ 26 from _ ADP IN _ 27 case _ _ 27 September _ PROPN NNP _ 25 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 1988 _ NUM CD _ 27 nummod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 CityFed _ PROPN NNP _ 3 compound _ _ 2 Financial _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 expects _ VERB VBZ _ 4 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 a _ DET DT _ 10 det _ _ 10 loss _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 18 case _ _ 12 at _ ADP IN _ 13 case _ _ 13 least _ ADJ JJS _ 18 nmod:npmod _ _ 14 $ _ SYM $ _ 18 dep _ _ 15 125 _ NUM CD _ 18 compound _ _ 16 million _ NUM CD _ 18 compound _ _ 17 to _ ADP TO _ 18 dep _ _ 18 $ _ SYM $ _ 10 nmod _ _ 19 150 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 for _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 third _ ADJ JJ _ 24 amod _ _ 24 quarter _ NOUN NN _ 10 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 period _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 CityFed _ PROPN NNP _ 7 nsubj _ _ 7 had _ VERB VBD _ 0 root _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 $ _ SYM $ _ 12 dep _ _ 12 485,000 _ NUM CD _ 9 nmod _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 but _ CONJ CC _ 9 cc _ _ 15 no _ DET DT _ 17 neg _ _ 16 per-share _ ADJ JJ _ 17 amod _ _ 17 earnings _ NOUN NNS _ 9 conj _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 CityFed _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 president _ NOUN NN _ 12 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 chief _ ADJ JJ _ 7 amod _ _ 6 executive _ ADJ JJ _ 7 amod _ _ 7 officer _ NOUN NN _ 3 conj _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 John _ PROPN NNP _ 10 compound _ _ 10 Atherton _ PROPN NNP _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 14 det _ _ 14 loss _ NOUN NN _ 15 nsubj _ _ 15 stems _ VERB VBZ _ 12 ccomp _ _ 16 from _ ADP IN _ 18 case _ _ 17 several _ ADJ JJ _ 18 amod _ _ 18 factors _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 nonperforming _ ADJ JJ _ 4 amod _ _ 4 assets _ NOUN NNS _ 5 nsubj _ _ 5 rose _ VERB VBD _ 2 ccomp _ _ 6 to _ ADP TO _ 10 case _ _ 7 slightly _ ADV RB _ 10 advmod _ _ 8 more _ ADJ JJR _ 10 advmod _ _ 9 than _ ADP IN _ 8 mwe _ _ 10 $ _ SYM $ _ 5 nmod _ _ 11 700 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 from _ ADP IN _ 14 case _ _ 14 $ _ SYM $ _ 5 nmod _ _ 15 516 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 between _ ADP IN _ 18 case _ _ 18 June _ PROPN NNP _ 5 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 September _ PROPN NNP _ 18 conj _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Approximately _ ADV RB _ 2 advmod _ _ 2 85 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 7 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 total _ NOUN NN _ 3 nmod _ _ 7 consisted _ VERB VBD _ 0 root _ _ 8 of _ ADP IN _ 13 case _ _ 9 nonperforming _ ADJ JJ _ 13 amod _ _ 10 commercial _ ADJ JJ _ 13 amod _ _ 11 real _ ADJ JJ _ 13 amod _ _ 12 estate _ NOUN NN _ 13 compound _ _ 13 assets _ NOUN NNS _ 7 nmod _ _ 14 . _ PUNCT . _ 7 punct _ _ 1 Accordingly _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 CityFed _ PROPN NNP _ 4 nsubj _ _ 4 estimated _ VERB VBD _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 provide _ VERB VB _ 4 ccomp _ _ 9 between _ ADP IN _ 10 advmod _ _ 10 $ _ SYM $ _ 8 dobj _ _ 11 85 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 and _ CONJ CC _ 10 cc _ _ 14 $ _ SYM $ _ 10 conj _ _ 15 110 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 for _ ADP IN _ 19 case _ _ 18 credit _ NOUN NN _ 19 compound _ _ 19 losses _ NOUN NNS _ 8 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 third _ ADJ JJ _ 23 amod _ _ 23 quarter _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 CityFed _ PROPN NNP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 10 mark _ _ 4 significant _ ADJ JJ _ 7 amod _ _ 5 additional _ ADJ JJ _ 7 amod _ _ 6 loan-loss _ ADJ JJ _ 7 amod _ _ 7 provisions _ NOUN NNS _ 10 nsubjpass _ _ 8 may _ AUX MD _ 10 aux _ _ 9 be _ AUX VB _ 10 auxpass _ _ 10 required _ VERB VBN _ 2 ccomp _ _ 11 by _ ADP IN _ 13 case _ _ 12 federal _ ADJ JJ _ 13 amod _ _ 13 regulators _ NOUN NNS _ 10 nmod _ _ 14 as _ ADP IN _ 15 case _ _ 15 part _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 current _ ADJ JJ _ 20 amod _ _ 19 annual _ ADJ JJ _ 20 amod _ _ 20 examination _ NOUN NN _ 15 nmod _ _ 21 of _ ADP IN _ 25 case _ _ 22 City _ PROPN NNP _ 25 compound _ _ 23 Federal _ PROPN NNP _ 25 compound _ _ 24 Savings _ PROPN NNP _ 25 compound _ _ 25 Bank _ PROPN NNP _ 20 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 CityFed _ PROPN NNP _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 primary _ ADJ JJ _ 30 amod _ _ 30 subsidiary _ NOUN NN _ 25 appos _ _ 31 , _ PUNCT , _ 25 punct _ _ 32 based _ VERB VBN _ 25 acl _ _ 33 in _ ADP IN _ 34 case _ _ 34 Somerset _ PROPN NNP _ 32 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 N.J _ PROPN NNP _ 34 appos _ _ 37 . _ PUNCT . _ 2 punct _ _ 1 City _ PROPN NNP _ 2 compound _ _ 2 Federal _ PROPN NNP _ 3 nsubj _ _ 3 operates _ VERB VBZ _ 0 root _ _ 4 105 _ NUM CD _ 6 nummod _ _ 5 banking _ NOUN NN _ 6 compound _ _ 6 offices _ NOUN NNS _ 3 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 New _ PROPN NNP _ 9 compound _ _ 9 Jersey _ PROPN NNP _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Florida _ PROPN NNP _ 9 conj _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Atherton _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 CityFed _ PROPN NNP _ 7 nsubj _ _ 5 will _ AUX MD _ 7 aux _ _ 6 also _ ADV RB _ 7 advmod _ _ 7 mark _ VERB VB _ 3 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 portfolio _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 high-yield _ ADJ JJ _ 13 amod _ _ 12 corporate _ ADJ JJ _ 13 amod _ _ 13 bonds _ NOUN NNS _ 9 nmod _ _ 14 to _ ADP TO _ 15 case _ _ 15 market _ NOUN NN _ 7 nmod _ _ 16 as _ ADP IN _ 18 case _ _ 17 a _ DET DT _ 18 det _ _ 18 result _ NOUN NN _ 7 nmod _ _ 19 of _ ADP IN _ 21 case _ _ 20 federal _ ADJ JJ _ 21 amod _ _ 21 legislation _ NOUN NN _ 18 nmod _ _ 22 requiring _ VERB VBG _ 21 acl _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 savings _ NOUN NNS _ 25 compound _ _ 25 institutions _ NOUN NNS _ 26 nsubj _ _ 26 divest _ VERB VB _ 22 ccomp _ _ 27 themselves _ PRON PRP _ 26 dobj _ _ 28 of _ ADP IN _ 30 case _ _ 29 such _ ADJ JJ _ 30 amod _ _ 30 bonds _ NOUN NNS _ 26 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 action _ NOUN NN _ 8 nsubj _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 CityFed _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 8 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 will _ AUX MD _ 8 aux _ _ 8 result _ VERB VB _ 0 root _ _ 9 in _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 charge _ NOUN NN _ 8 nmod _ _ 12 against _ ADP IN _ 14 case _ _ 13 third-quarter _ ADJ JJ _ 14 amod _ _ 14 results _ NOUN NNS _ 11 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 approximately _ ADV RB _ 17 advmod _ _ 17 $ _ SYM $ _ 11 nmod _ _ 18 30 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 CityFed _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 shed _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 13 nmod:poss _ _ 9 remaining _ VERB VBG _ 13 amod _ _ 10 mortgage _ NOUN NN _ 13 compound _ _ 11 loan _ NOUN NN _ 13 compound _ _ 12 origination _ NOUN NN _ 13 compound _ _ 13 operations _ NOUN NNS _ 7 dobj _ _ 14 outside _ ADP IN _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 principal _ ADJ JJ _ 17 amod _ _ 17 markets _ NOUN NNS _ 13 nmod _ _ 18 in _ ADP IN _ 20 case _ _ 19 New _ PROPN NNP _ 20 compound _ _ 20 Jersey _ PROPN NNP _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Florida _ PROPN NNP _ 20 conj _ _ 23 and _ CONJ CC _ 5 cc _ _ 24 , _ PUNCT , _ 5 punct _ _ 25 as _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 result _ NOUN NN _ 30 nmod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 is _ AUX VBZ _ 30 aux _ _ 30 taking _ VERB VBG _ 5 conj _ _ 31 a _ DET DT _ 32 det _ _ 32 charge _ NOUN NN _ 30 dobj _ _ 33 for _ ADP IN _ 35 case _ _ 34 discontinued _ ADJ JJ _ 35 amod _ _ 35 operations _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 All _ DET PDT _ 3 det:predet _ _ 2 these _ DET DT _ 3 det _ _ 3 actions _ NOUN NNS _ 10 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Mr. _ PROPN NNP _ 6 compound _ _ 6 Atherton _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 10 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 will _ AUX MD _ 10 aux _ _ 10 result _ VERB VB _ 0 root _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 loss _ NOUN NN _ 10 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 125 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 to _ ADP TO _ 15 dep _ _ 19 $ _ SYM $ _ 15 dep _ _ 20 150 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 for _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 third _ ADJ JJ _ 25 amod _ _ 25 quarter _ NOUN NN _ 13 nmod _ _ 26 . _ PUNCT . _ 10 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 however _ ADV RB _ 2 advmod _ _ 5 : _ PUNCT : _ 2 punct _ _ 6 `` _ PUNCT `` _ 51 punct _ _ 7 Depending _ VERB VBG _ 10 case _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 resolution _ NOUN NN _ 51 advcl _ _ 11 of _ ADP IN _ 14 case _ _ 12 certain _ ADJ JJ _ 14 amod _ _ 13 accounting _ NOUN NN _ 14 compound _ _ 14 issues _ NOUN NNS _ 10 nmod _ _ 15 relating _ VERB VBG _ 14 acl _ _ 16 to _ ADP TO _ 18 case _ _ 17 mortgages _ NOUN NNS _ 18 compound _ _ 18 servicing _ NOUN NN _ 15 nmod _ _ 19 and _ CONJ CC _ 10 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 outcome _ NOUN NN _ 10 conj _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 annual _ ADJ JJ _ 25 amod _ _ 25 examination _ NOUN NN _ 21 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 City _ PROPN NNP _ 28 compound _ _ 28 Federal _ PROPN NNP _ 25 nmod _ _ 29 currently _ ADV RB _ 31 advmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 progress _ NOUN NN _ 25 nmod _ _ 32 with _ ADP IN _ 33 case _ _ 33 respect _ NOUN NN _ 21 nmod _ _ 34 to _ ADP TO _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 appropriate _ ADJ JJ _ 37 amod _ _ 37 level _ NOUN NN _ 33 nmod _ _ 38 of _ ADP IN _ 41 case _ _ 39 loan _ NOUN NN _ 41 compound _ _ 40 loss _ NOUN NN _ 41 compound _ _ 41 reserves _ NOUN NNS _ 37 nmod _ _ 42 , _ PUNCT , _ 51 punct _ _ 43 the _ DET DT _ 45 det _ _ 44 total _ ADJ JJ _ 45 amod _ _ 45 loss _ NOUN NN _ 51 nsubj _ _ 46 for _ ADP IN _ 48 case _ _ 47 the _ DET DT _ 48 det _ _ 48 quarter _ NOUN NN _ 45 nmod _ _ 49 could _ AUX MD _ 51 aux _ _ 50 significantly _ ADV RB _ 51 advmod _ _ 51 exceed _ VERB VB _ 2 ccomp _ _ 52 this _ DET DT _ 53 det _ _ 53 range _ NOUN NN _ 51 dobj _ _ 54 . _ PUNCT . _ 2 punct _ _ 1 CenTrust _ PROPN NNP _ 3 compound _ _ 2 Savings _ PROPN NNP _ 3 compound _ _ 3 Bank _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 federal _ ADJ JJ _ 7 amod _ _ 6 thrift _ NOUN NN _ 7 compound _ _ 7 regulators _ NOUN NNS _ 8 nsubj _ _ 8 ordered _ VERB VBD _ 4 ccomp _ _ 9 it _ PRON PRP _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 suspend _ VERB VB _ 8 xcomp _ _ 12 dividend _ NOUN NN _ 13 compound _ _ 13 payments _ NOUN NNS _ 11 dobj _ _ 14 on _ ADP IN _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 two _ NUM CD _ 17 nummod _ _ 17 classes _ NOUN NNS _ 13 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 preferred _ ADJ JJ _ 20 amod _ _ 20 stock _ NOUN NN _ 17 nmod _ _ 21 , _ PUNCT , _ 4 punct _ _ 22 indicating _ VERB VBG _ 4 xcomp _ _ 23 that _ SCONJ IN _ 32 mark _ _ 24 regulators _ NOUN NNS _ 26 nmod:poss _ _ 25 ' _ PART POS _ 24 case _ _ 26 concerns _ NOUN NNS _ 32 nsubj _ _ 27 about _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 troubled _ ADJ JJ _ 30 amod _ _ 30 institution _ NOUN NN _ 26 nmod _ _ 31 have _ AUX VBP _ 32 aux _ _ 32 heightened _ VERB VBN _ 22 ccomp _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 statement _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 Miami-based _ ADJ JJ _ 6 amod _ _ 6 CenTrust _ PROPN NNP _ 7 nsubj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 regulators _ NOUN NNS _ 10 nsubj _ _ 10 cited _ VERB VBD _ 7 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 thrift _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 operating _ NOUN NN _ 15 compound _ _ 15 losses _ NOUN NNS _ 10 dobj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 apparent _ ADJ JJ _ 19 amod _ _ 19 losses _ NOUN NNS _ 15 conj _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 in _ ADP IN _ 24 case _ _ 22 its _ PRON PRP$ _ 24 nmod:poss _ _ 23 junk-bond _ NOUN NN _ 24 compound _ _ 24 portfolio _ NOUN NN _ 19 nmod _ _ 25 in _ SCONJ IN _ 26 mark _ _ 26 ordering _ VERB VBG _ 10 advcl _ _ 27 the _ DET DT _ 28 det _ _ 28 suspension _ NOUN NN _ 26 dobj _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 dividends _ NOUN NNS _ 28 nmod _ _ 32 . _ PUNCT . _ 7 punct _ _ 1 Regulators _ NOUN NNS _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 ordered _ VERB VBD _ 0 root _ _ 4 CenTrust _ PROPN NNP _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 stop _ VERB VB _ 3 xcomp _ _ 7 buying _ VERB VBG _ 6 xcomp _ _ 8 back _ ADP RP _ 7 compound:prt _ _ 9 the _ DET DT _ 11 det _ _ 10 preferred _ ADJ JJ _ 11 amod _ _ 11 stock _ NOUN NN _ 7 dobj _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 David _ PROPN NNP _ 3 compound _ _ 2 L. _ PROPN NNP _ 3 compound _ _ 3 Paul _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 chairman _ NOUN NN _ 3 appos _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 chief _ ADJ JJ _ 9 amod _ _ 8 executive _ ADJ JJ _ 9 amod _ _ 9 officer _ NOUN NN _ 5 conj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 criticized _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 14 det _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 Office _ PROPN NNP _ 11 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 Thrift _ PROPN NNP _ 17 compound _ _ 17 Supervision _ PROPN NNP _ 14 nmod _ _ 18 , _ PUNCT , _ 14 punct _ _ 19 which _ PRON WDT _ 20 nsubj _ _ 20 issued _ VERB VBD _ 14 acl:relcl _ _ 21 the _ DET DT _ 22 det _ _ 22 directive _ NOUN NN _ 20 dobj _ _ 23 , _ PUNCT , _ 11 punct _ _ 24 saying _ VERB VBG _ 11 advcl _ _ 25 it _ PRON PRP _ 28 nsubj _ _ 26 was _ VERB VBD _ 28 cop _ _ 27 `` _ PUNCT `` _ 28 punct _ _ 28 inappropriate _ ADJ JJ _ 24 ccomp _ _ 29 '' _ PUNCT '' _ 28 punct _ _ 30 and _ CONJ CC _ 28 cc _ _ 31 based _ VERB VBN _ 36 case _ _ 32 on _ ADP IN _ 36 case _ _ 33 `` _ PUNCT `` _ 36 punct _ _ 34 insufficient _ ADJ JJ _ 36 amod _ _ 35 '' _ PUNCT '' _ 36 punct _ _ 36 reasons _ NOUN NNS _ 28 conj _ _ 37 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 thrift _ NOUN NN _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 try _ VERB VB _ 2 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 6 xcomp _ _ 9 regulators _ NOUN NNS _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 reverse _ VERB VB _ 8 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 decision _ NOUN NN _ 11 dobj _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 suspension _ NOUN NN _ 11 nsubj _ _ 3 of _ ADP IN _ 7 case _ _ 4 a _ DET DT _ 7 det _ _ 5 preferred _ ADJ JJ _ 7 amod _ _ 6 stock _ NOUN NN _ 7 compound _ _ 7 dividend _ NOUN NN _ 2 nmod _ _ 8 is _ VERB VBZ _ 11 cop _ _ 9 a _ DET DT _ 11 det _ _ 10 serious _ ADJ JJ _ 11 amod _ _ 11 step _ NOUN NN _ 0 root _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 signals _ VERB VBZ _ 11 acl:relcl _ _ 14 that _ SCONJ IN _ 16 mark _ _ 15 regulators _ NOUN NNS _ 16 nsubj _ _ 16 have _ VERB VBP _ 13 ccomp _ _ 17 deep _ ADJ JJ _ 18 amod _ _ 18 concerns _ NOUN NNS _ 16 dobj _ _ 19 about _ ADP IN _ 23 case _ _ 20 an _ DET DT _ 21 det _ _ 21 institution _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 health _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 March _ PROPN NNP _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 regulators _ NOUN NNS _ 5 nsubj _ _ 5 labeled _ VERB VBD _ 0 root _ _ 6 CenTrust _ PROPN NNP _ 10 nsubj _ _ 7 a _ DET DT _ 10 det _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 troubled _ ADJ JJ _ 10 amod _ _ 10 institution _ NOUN NN _ 5 xcomp _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 '' _ PUNCT '' _ 5 punct _ _ 13 largely _ ADV RB _ 19 advmod _ _ 14 because _ ADP IN _ 19 case _ _ 15 of _ ADP IN _ 14 mwe _ _ 16 its _ PRON PRP$ _ 19 nmod:poss _ _ 17 big _ ADJ JJ _ 19 amod _ _ 18 junk-bond _ NOUN NN _ 19 compound _ _ 19 holdings _ NOUN NNS _ 5 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 operating _ NOUN NN _ 23 compound _ _ 23 losses _ NOUN NNS _ 19 conj _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 month _ NOUN NN _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 Office _ PROPN NNP _ 11 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 Thrift _ PROPN NNP _ 10 compound _ _ 10 Supervision _ PROPN NNP _ 7 nmod _ _ 11 ordered _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 institution _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 stop _ VERB VB _ 11 xcomp _ _ 16 paying _ VERB VBG _ 15 xcomp _ _ 17 common _ ADJ JJ _ 19 amod _ _ 18 stock _ NOUN NN _ 19 compound _ _ 19 dividends _ NOUN NNS _ 16 dobj _ _ 20 until _ SCONJ IN _ 25 mark _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 operations _ NOUN NNS _ 25 nsubj _ _ 23 were _ VERB VBD _ 25 cop _ _ 24 on _ ADP IN _ 25 case _ _ 25 track _ NOUN NN _ 15 advcl _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 months _ NOUN NNS _ 10 nmod _ _ 5 ended _ VERB VBD _ 4 acl _ _ 6 June _ PROPN NNP _ 5 nmod:tmod _ _ 7 30 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 CenTrust _ PROPN NNP _ 10 nsubj _ _ 10 had _ VERB VBD _ 0 root _ _ 11 a _ DET DT _ 13 det _ _ 12 net _ ADJ JJ _ 13 amod _ _ 13 loss _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 21.3 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 compared _ VERB VBN _ 23 case _ _ 20 with _ ADP IN _ 23 case _ _ 21 year-earlier _ ADJ JJ _ 23 amod _ _ 22 net _ ADJ JJ _ 23 amod _ _ 23 income _ NOUN NN _ 10 advcl _ _ 24 of _ ADP IN _ 25 case _ _ 25 $ _ SYM $ _ 23 nmod _ _ 26 52.8 _ NUM CD _ 27 compound _ _ 27 million _ NUM CD _ 25 nummod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 CenTrust _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 8 nsubj _ _ 4 is _ VERB VBZ _ 8 cop _ _ 5 Florida _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 largest _ ADJ JJS _ 8 amod _ _ 8 thrift _ NOUN NN _ 1 acl:relcl _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 holds _ VERB VBZ _ 0 root _ _ 11 one _ NUM CD _ 10 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 largest _ ADJ JJS _ 16 amod _ _ 15 junk-bond _ NOUN NN _ 16 compound _ _ 16 portfolios _ NOUN NNS _ 11 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 any _ DET DT _ 19 det _ _ 19 thrift _ NOUN NN _ 16 nmod _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 nation _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 Since _ ADP IN _ 2 case _ _ 2 April _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 pared _ VERB VBN _ 0 root _ _ 7 its _ PRON PRP$ _ 10 nmod:poss _ _ 8 high-yield _ ADJ JJ _ 10 amod _ _ 9 bond _ NOUN NN _ 10 compound _ _ 10 holdings _ NOUN NNS _ 6 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 $ _ SYM $ _ 6 nmod _ _ 14 890 _ NUM CD _ 15 compound _ _ 15 million _ NUM CD _ 13 nummod _ _ 16 from _ ADP IN _ 17 case _ _ 17 $ _ SYM $ _ 6 nmod _ _ 18 1.35 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Paul _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 only _ ADV RB _ 6 advmod _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 $ _ SYM $ _ 15 nsubj _ _ 7 150 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 current _ ADJ JJ _ 12 amod _ _ 12 holdings _ NOUN NNS _ 6 nmod _ _ 13 are _ VERB VBP _ 15 cop _ _ 14 tradeable _ ADJ JJ _ 15 amod _ _ 15 securities _ NOUN NNS _ 3 ccomp _ _ 16 registered _ VERB VBN _ 15 acl _ _ 17 with _ ADP IN _ 22 case _ _ 18 the _ DET DT _ 22 det _ _ 19 Securities _ PROPN NNP _ 22 compound _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 Exchange _ PROPN NNP _ 19 conj _ _ 22 Commission _ PROPN NNP _ 16 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 remainder _ NOUN NN _ 10 nsubj _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 said _ VERB VBD _ 10 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 are _ VERB VBP _ 10 cop _ _ 8 commercial _ ADJ JJ _ 10 amod _ _ 9 loan _ NOUN NN _ 10 compound _ _ 10 participations _ NOUN NNS _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 or _ CONJ CC _ 10 cc _ _ 13 private _ ADJ JJ _ 14 amod _ _ 14 placements _ NOUN NNS _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 that _ PRON WDT _ 19 nsubjpass _ _ 17 are _ AUX VBP _ 19 auxpass _ _ 18 n't _ PART RB _ 19 neg _ _ 19 filed _ VERB VBN _ 10 acl:relcl _ _ 20 with _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 SEC _ PROPN NNP _ 19 nmod _ _ 23 and _ CONJ CC _ 19 cc _ _ 24 do _ AUX VBP _ 26 aux _ _ 25 n't _ PART RB _ 26 neg _ _ 26 have _ VERB VB _ 19 conj _ _ 27 a _ DET DT _ 29 det _ _ 28 ready _ ADJ JJ _ 29 amod _ _ 29 market _ NOUN NN _ 26 dobj _ _ 30 . _ PUNCT . _ 10 punct _ _ 1 CenTrust _ PROPN NNP _ 8 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 regulators _ NOUN NNS _ 1 conj _ _ 4 have _ AUX VBP _ 8 aux _ _ 5 been _ VERB VBN _ 8 cop _ _ 6 in _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 dispute _ NOUN NN _ 0 root _ _ 9 over _ ADP IN _ 11 case _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 valuations _ NOUN NNS _ 8 nmod _ _ 12 for _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 junk _ NOUN NN _ 15 compound _ _ 15 bonds _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Office _ PROPN NNP _ 8 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Thrift _ PROPN NNP _ 5 compound _ _ 5 Supervision _ PROPN NNP _ 2 nmod _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ AUX VBN _ 8 aux _ _ 8 hounding _ VERB VBG _ 0 root _ _ 9 CenTrust _ PROPN NNP _ 8 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 provide _ VERB VB _ 8 advcl _ _ 12 current _ ADJ JJ _ 14 amod _ _ 13 market _ NOUN NN _ 14 compound _ _ 14 values _ NOUN NNS _ 11 dobj _ _ 15 for _ ADP IN _ 17 case _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 holdings _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 but _ CONJ CC _ 8 cc _ _ 20 CenTrust _ PROPN NNP _ 22 nsubj _ _ 21 has _ AUX VBZ _ 22 aux _ _ 22 said _ VERB VBD _ 8 conj _ _ 23 it _ PRON PRP _ 27 nsubj _ _ 24 ca _ AUX MD _ 27 aux _ _ 25 n't _ PART RB _ 27 neg _ _ 26 easily _ ADV RB _ 27 advmod _ _ 27 obtain _ VERB VB _ 22 ccomp _ _ 28 such _ ADJ JJ _ 29 amod _ _ 29 values _ NOUN NNS _ 27 dobj _ _ 30 because _ ADP IN _ 34 case _ _ 31 of _ ADP IN _ 30 mwe _ _ 32 the _ DET DT _ 34 det _ _ 33 relative _ ADJ JJ _ 34 amod _ _ 34 illiquidity _ NOUN NN _ 27 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 bonds _ NOUN NNS _ 34 nmod _ _ 38 and _ CONJ CC _ 34 cc _ _ 39 lack _ NOUN NN _ 34 conj _ _ 40 of _ ADP IN _ 43 case _ _ 41 a _ DET DT _ 43 det _ _ 42 ready _ ADJ JJ _ 43 amod _ _ 43 market _ NOUN NN _ 39 nmod _ _ 44 . _ PUNCT . _ 8 punct _ _ 1 Regulators _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 become _ VERB VBN _ 0 root _ _ 4 increasingly _ ADV RB _ 5 advmod _ _ 5 antsy _ ADJ JJ _ 3 xcomp _ _ 6 about _ ADP IN _ 14 case _ _ 7 CenTrust _ PROPN NNP _ 14 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 and _ CONJ CC _ 7 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 thrifts _ NOUN NNS _ 7 conj _ _ 12 ' _ PART POS _ 11 case _ _ 13 junk-bond _ NOUN NN _ 14 compound _ _ 14 holdings _ NOUN NNS _ 5 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 light _ NOUN NN _ 3 nmod _ _ 17 of _ ADP IN _ 23 case _ _ 18 the _ DET DT _ 23 det _ _ 19 recent _ ADJ JJ _ 23 amod _ _ 20 federal _ ADJ JJ _ 23 amod _ _ 21 thrift _ NOUN NN _ 23 compound _ _ 22 bailout _ NOUN NN _ 23 compound _ _ 23 legislation _ NOUN NN _ 16 nmod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 the _ DET DT _ 28 det _ _ 26 recent _ ADJ JJ _ 28 amod _ _ 27 deep _ ADJ JJ _ 28 amod _ _ 28 decline _ NOUN NN _ 23 conj _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 junk-bond _ NOUN NN _ 32 compound _ _ 32 market _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 legislation _ NOUN NN _ 3 nsubj _ _ 3 requires _ VERB VBZ _ 0 root _ _ 4 thrifts _ NOUN NNS _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 divest _ VERB VB _ 3 xcomp _ _ 7 themselves _ PRON PRP _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 junk _ NOUN NN _ 10 compound _ _ 10 bonds _ NOUN NNS _ 6 nmod _ _ 11 in _ ADP IN _ 17 case _ _ 12 the _ DET DT _ 17 det _ _ 13 new _ ADJ JJ _ 17 amod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 somber _ ADJ JJ _ 17 amod _ _ 16 regulatory _ ADJ JJ _ 17 amod _ _ 17 climate _ NOUN NN _ 6 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 6 case _ _ 2 American _ PROPN NNP _ 6 compound _ _ 3 Stock _ PROPN NNP _ 6 compound _ _ 4 Exchange _ PROPN NNP _ 6 compound _ _ 5 composite _ ADJ JJ _ 6 amod _ _ 6 trading _ NOUN NN _ 12 nmod _ _ 7 Friday _ PROPN NNP _ 12 nmod:tmod _ _ 8 , _ PUNCT , _ 12 punct _ _ 9 CenTrust _ PROPN NNP _ 11 compound _ _ 10 common _ ADJ JJ _ 11 amod _ _ 11 shares _ NOUN NNS _ 12 nsubj _ _ 12 closed _ VERB VBD _ 0 root _ _ 13 at _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 3 _ NUM CD _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 down _ ADV RB _ 12 advmod _ _ 18 12.5 _ NUM CD _ 19 nummod _ _ 19 cents _ NOUN NNS _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 statement _ NOUN NN _ 8 nmod _ _ 4 Friday _ PROPN NNP _ 8 nmod:tmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Paul _ PROPN NNP _ 8 nsubj _ _ 8 challenged _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 regulators _ NOUN NNS _ 12 nmod:poss _ _ 11 ' _ PART POS _ 10 case _ _ 12 decision _ NOUN NN _ 8 dobj _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 saying _ VERB VBG _ 8 advcl _ _ 15 the _ DET DT _ 16 det _ _ 16 thrift _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 operating _ NOUN NN _ 19 compound _ _ 19 losses _ NOUN NNS _ 30 nsubjpass _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 `` _ PUNCT `` _ 25 punct _ _ 22 apparent _ ADJ JJ _ 25 amod _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 junk-bond _ NOUN NN _ 25 compound _ _ 25 losses _ NOUN NNS _ 19 conj _ _ 26 `` _ PUNCT `` _ 30 punct _ _ 27 have _ AUX VBP _ 30 aux _ _ 28 been _ AUX VBN _ 30 auxpass _ _ 29 substantially _ ADV RB _ 30 advmod _ _ 30 offset _ VERB VBN _ 14 ccomp _ _ 31 by _ ADP IN _ 32 case _ _ 32 gains _ NOUN NNS _ 30 nmod _ _ 33 in _ ADP IN _ 35 case _ _ 34 other _ ADJ JJ _ 35 amod _ _ 35 activities _ NOUN NNS _ 32 nmod _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 bank _ NOUN NN _ 35 nmod _ _ 39 . _ PUNCT . _ 8 punct _ _ 40 '' _ PUNCT '' _ 8 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 said _ VERB VBD _ 0 root _ _ 4 substantial _ ADJ JJ _ 5 amod _ _ 5 reserves _ NOUN NNS _ 8 nsubjpass _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 set _ VERB VBN _ 3 ccomp _ _ 9 aside _ ADP RP _ 8 compound:prt _ _ 10 for _ ADP IN _ 12 case _ _ 11 possible _ ADJ JJ _ 12 amod _ _ 12 losses _ NOUN NNS _ 8 nmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 junk _ NOUN NN _ 16 compound _ _ 16 bonds _ NOUN NNS _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 for _ ADP IN _ 7 case _ _ 7 instance _ NOUN NN _ 10 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 CenTrust _ PROPN NNP _ 10 nsubj _ _ 10 added _ VERB VBD _ 0 root _ _ 11 $ _ SYM $ _ 10 dobj _ _ 12 22.5 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 to _ ADP TO _ 17 case _ _ 15 its _ PRON PRP$ _ 17 nmod:poss _ _ 16 general _ ADJ JJ _ 17 amod _ _ 17 reserves _ NOUN NNS _ 10 nmod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Paul _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 regulators _ NOUN NNS _ 8 nsubj _ _ 6 should _ AUX MD _ 8 aux _ _ 7 instead _ ADV RB _ 8 advmod _ _ 8 move _ VERB VB _ 3 ccomp _ _ 9 ahead _ ADV RB _ 8 advmod _ _ 10 with _ SCONJ IN _ 11 mark _ _ 11 approving _ VERB VBG _ 8 advcl _ _ 12 CenTrust _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 request _ NOUN NN _ 11 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 sell _ VERB VB _ 14 acl _ _ 17 63 _ NUM CD _ 16 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 71 _ NUM CD _ 21 nummod _ _ 21 branches _ NOUN NNS _ 17 nmod _ _ 22 to _ ADP TO _ 25 case _ _ 23 Great _ PROPN NNP _ 25 compound _ _ 24 Western _ PROPN NNP _ 25 compound _ _ 25 Bank _ PROPN NNP _ 16 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 28 det _ _ 28 unit _ NOUN NN _ 25 appos _ _ 29 of _ ADP IN _ 33 case _ _ 30 Great _ PROPN NNP _ 33 compound _ _ 31 Western _ PROPN NNP _ 33 compound _ _ 32 Financial _ PROPN NNP _ 33 compound _ _ 33 Corp. _ PROPN NNP _ 28 nmod _ _ 34 based _ VERB VBN _ 25 acl _ _ 35 in _ ADP IN _ 37 case _ _ 36 Beverly _ PROPN NNP _ 37 compound _ _ 37 Hills _ PROPN NNP _ 34 nmod _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 Calif _ PROPN NNP _ 37 appos _ _ 40 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 branch _ NOUN NN _ 3 compound _ _ 3 sale _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 centerpiece _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 CenTrust _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 strategy _ NOUN NN _ 6 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 transform _ VERB VB _ 10 acl _ _ 13 itself _ PRON PRP _ 12 dobj _ _ 14 into _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 traditional _ ADJ JJ _ 17 amod _ _ 17 S&L _ NOUN NN _ 12 nmod _ _ 18 from _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 high-flying _ ADJ JJ _ 21 amod _ _ 21 institution _ NOUN NN _ 12 nmod _ _ 22 that _ PRON WDT _ 23 nsubj _ _ 23 relied _ VERB VBD _ 21 acl:relcl _ _ 24 heavily _ ADV RB _ 23 advmod _ _ 25 on _ ADP IN _ 27 case _ _ 26 securities _ NOUN NNS _ 27 compound _ _ 27 trading _ NOUN NN _ 23 nmod _ _ 28 for _ ADP IN _ 29 case _ _ 29 profits _ NOUN NNS _ 23 nmod _ _ 30 , _ PUNCT , _ 6 punct _ _ 31 according _ VERB VBG _ 34 case _ _ 32 to _ ADP TO _ 31 mwe _ _ 33 Mr. _ PROPN NNP _ 34 compound _ _ 34 Paul _ PROPN NNP _ 6 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 Most _ ADJ JJS _ 2 amod _ _ 2 analysts _ NOUN NNS _ 7 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 thrift _ NOUN NN _ 5 compound _ _ 5 executives _ NOUN NNS _ 2 conj _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 a _ DET DT _ 9 det _ _ 9 decision _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 proposed _ ADJ JJ _ 13 amod _ _ 13 transaction _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 17 nsubjpass _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 announced _ VERB VBN _ 13 acl:relcl _ _ 18 in _ ADP IN _ 19 case _ _ 19 July _ PROPN NNP _ 17 nmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 long _ ADV RB _ 23 advmod _ _ 22 before _ ADP IN _ 23 case _ _ 23 now _ ADV RB _ 7 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Many _ ADJ JJ _ 2 nsubj _ _ 2 interpret _ VERB VBP _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 delay _ NOUN NN _ 2 dobj _ _ 5 as _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 indication _ NOUN NN _ 2 nmod _ _ 8 that _ SCONJ IN _ 11 mark _ _ 9 regulators _ NOUN NNS _ 11 nsubj _ _ 10 are _ VERB VBP _ 11 cop _ _ 11 skeptical _ ADJ JJ _ 7 ccomp _ _ 12 about _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 proposal _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 Branches _ NOUN NNS _ 6 nsubjpass _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 deposits _ NOUN NNS _ 1 conj _ _ 4 can _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 sold _ VERB VBN _ 0 root _ _ 7 at _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 premium _ NOUN NN _ 6 nmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 event _ NOUN NN _ 6 nmod _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 regulators _ NOUN NNS _ 15 nsubj _ _ 15 take _ VERB VBP _ 12 ccomp _ _ 16 over _ ADP RP _ 15 compound:prt _ _ 17 an _ DET DT _ 18 det _ _ 18 institution _ NOUN NN _ 15 dobj _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 CenTrust _ PROPN NNP _ 5 nsubj _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 however _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 touts _ VERB VBZ _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 branch _ NOUN NN _ 8 compound _ _ 8 sale _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 saying _ VERB VBG _ 5 advcl _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 would _ AUX MD _ 13 aux _ _ 13 bring _ VERB VB _ 10 ccomp _ _ 14 in _ ADP RP _ 13 advmod _ _ 15 $ _ SYM $ _ 13 dobj _ _ 16 150 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 reduce _ VERB VB _ 13 conj _ _ 20 the _ DET DT _ 21 det _ _ 21 thrift _ NOUN NN _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 assets _ NOUN NNS _ 19 dobj _ _ 24 to _ ADP TO _ 25 case _ _ 25 $ _ SYM $ _ 19 nmod _ _ 26 6.7 _ NUM CD _ 27 compound _ _ 27 billion _ NUM CD _ 25 nummod _ _ 28 from _ ADP IN _ 29 case _ _ 29 $ _ SYM $ _ 19 nmod _ _ 30 9 _ NUM CD _ 31 compound _ _ 31 billion _ NUM CD _ 29 nummod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 sale _ NOUN NN _ 6 nsubj _ _ 5 would _ AUX MD _ 6 aux _ _ 6 give _ VERB VB _ 2 ccomp _ _ 7 it _ PRON PRP _ 6 iobj _ _ 8 positive _ ADJ JJ _ 10 amod _ _ 9 tangible _ ADJ JJ _ 10 amod _ _ 10 capital _ NOUN NN _ 6 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 82 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 1.2 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 12 conj _ _ 20 of _ ADP IN _ 21 case _ _ 21 assets _ NOUN NNS _ 19 nmod _ _ 22 , _ PUNCT , _ 12 punct _ _ 23 from _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 negative _ ADJ JJ _ 26 amod _ _ 26 $ _ SYM $ _ 6 nmod _ _ 27 33 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 as _ ADP IN _ 31 case _ _ 30 of _ ADP IN _ 31 case _ _ 31 Sept. _ PROPN NNP _ 6 nmod _ _ 32 30 _ NUM CD _ 31 nummod _ _ 33 , _ PUNCT , _ 6 punct _ _ 34 thus _ ADV RB _ 35 advmod _ _ 35 bringing _ VERB VBG _ 6 advcl _ _ 36 CenTrust _ PROPN NNP _ 37 nsubj _ _ 37 close _ ADV RB _ 35 xcomp _ _ 38 to _ ADP TO _ 40 case _ _ 39 regulatory _ ADJ JJ _ 40 amod _ _ 40 standards _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 2 punct _ _ 1 CenTrust _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 branch _ NOUN NN _ 5 compound _ _ 5 sale _ NOUN NN _ 8 nsubj _ _ 6 would _ AUX MD _ 8 aux _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 reduce _ VERB VB _ 2 ccomp _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 large _ ADJ JJ _ 13 amod _ _ 13 amount _ NOUN NN _ 8 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 good _ ADJ JJ _ 16 amod _ _ 16 will _ NOUN NN _ 13 nmod _ _ 17 by _ ADP IN _ 19 case _ _ 18 about _ ADV RB _ 19 advmod _ _ 19 $ _ SYM $ _ 8 nmod _ _ 20 180 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Critics _ NOUN NNS _ 5 nsubj _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 however _ ADV RB _ 5 advmod _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 say _ VERB VBP _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 branch _ NOUN NN _ 8 compound _ _ 8 sale _ NOUN NN _ 10 nsubj _ _ 9 will _ AUX MD _ 10 aux _ _ 10 make _ VERB VB _ 5 ccomp _ _ 11 CenTrust _ PROPN NNP _ 13 nsubj _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 dependent _ ADJ JJ _ 10 xcomp _ _ 14 than _ ADP IN _ 15 case _ _ 15 ever _ ADV RB _ 13 advcl _ _ 16 on _ ADP IN _ 18 case _ _ 17 brokered _ ADJ JJ _ 18 amod _ _ 18 deposits _ NOUN NNS _ 13 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 junk _ NOUN NN _ 21 compound _ _ 21 bonds _ NOUN NNS _ 18 conj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Paul _ PROPN NNP _ 3 nsubj _ _ 3 counters _ NOUN NNS _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 he _ PRON PRP _ 6 nsubj _ _ 6 intends _ VERB VBZ _ 3 ccomp _ _ 7 to _ PART TO _ 9 mark _ _ 8 further _ ADV RB _ 9 advmod _ _ 9 pare _ VERB VB _ 6 xcomp _ _ 10 the _ DET DT _ 11 det _ _ 11 size _ NOUN NN _ 9 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 CenTrust _ PROPN NNP _ 11 nmod _ _ 14 by _ SCONJ IN _ 16 mark _ _ 15 not _ ADV RB _ 16 neg _ _ 16 renewing _ VERB VBG _ 9 advcl _ _ 17 more _ ADJ JJR _ 19 advmod _ _ 18 than _ ADP IN _ 17 mwe _ _ 19 $ _ SYM $ _ 16 dobj _ _ 20 1 _ NUM CD _ 21 compound _ _ 21 billion _ NUM CD _ 19 nummod _ _ 22 of _ ADP IN _ 24 case _ _ 23 brokered _ ADJ JJ _ 24 amod _ _ 24 certificates _ NOUN NNS _ 19 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 deposit _ NOUN NN _ 24 nmod _ _ 27 when _ ADV WRB _ 29 advmod _ _ 28 they _ PRON PRP _ 29 nsubj _ _ 29 come _ VERB VBP _ 16 advcl _ _ 30 due _ ADJ JJ _ 29 xcomp _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 thrift _ NOUN NN _ 5 nsubj _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 working _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 unload _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 junk-bond _ ADJ JJ _ 10 amod _ _ 10 portfolio _ NOUN NN _ 7 dobj _ _ 11 by _ SCONJ IN _ 12 mark _ _ 12 continuing _ VERB VBG _ 7 advcl _ _ 13 to _ PART TO _ 14 mark _ _ 14 sell _ VERB VB _ 12 xcomp _ _ 15 off _ ADP RP _ 14 compound:prt _ _ 16 the _ DET DT _ 17 det _ _ 17 bonds _ NOUN NNS _ 14 dobj _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 and _ CONJ CC _ 5 cc _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 plans _ VERB VBZ _ 5 conj _ _ 22 to _ PART TO _ 24 mark _ _ 23 eventually _ ADV RB _ 24 advmod _ _ 24 place _ VERB VB _ 21 xcomp _ _ 25 some _ DET DT _ 24 dobj _ _ 26 of _ ADP IN _ 27 case _ _ 27 them _ PRON PRP _ 25 nmod _ _ 28 in _ ADP IN _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 separate _ ADJ JJ _ 31 amod _ _ 31 affiliate _ NOUN NN _ 24 nmod _ _ 32 , _ PUNCT , _ 24 punct _ _ 33 as _ SCONJ IN _ 34 mark _ _ 34 required _ VERB VBN _ 24 advcl _ _ 35 under _ ADP IN _ 39 case _ _ 36 the _ DET DT _ 39 det _ _ 37 new _ ADJ JJ _ 39 amod _ _ 38 thrift _ NOUN NN _ 39 compound _ _ 39 law _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 5 punct _ _ 1 On _ ADP IN _ 5 case _ _ 2 a _ DET DT _ 5 det _ _ 3 recent _ ADJ JJ _ 5 amod _ _ 4 Saturday _ PROPN NNP _ 5 compound _ _ 5 night _ NOUN NN _ 21 nmod _ _ 6 , _ PUNCT , _ 21 punct _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 midst _ NOUN NN _ 21 nmod _ _ 10 of _ ADP IN _ 17 case _ _ 11 West _ PROPN NNP _ 12 compound _ _ 12 Germany _ PROPN NNP _ 17 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 most _ ADJ JJS _ 15 dep _ _ 15 popular _ ADJ JJ _ 17 amod _ _ 16 prime-time _ NOUN NN _ 17 compound _ _ 17 show _ NOUN NN _ 9 nmod _ _ 18 , _ PUNCT , _ 21 punct _ _ 19 a _ DET DT _ 20 det _ _ 20 contestant _ NOUN NN _ 21 nsubj _ _ 21 bet _ VERB VBD _ 0 root _ _ 22 the _ DET DT _ 23 det _ _ 23 host _ NOUN NN _ 21 dobj _ _ 24 that _ SCONJ IN _ 27 mark _ _ 25 she _ PRON PRP _ 27 nsubj _ _ 26 could _ AUX MD _ 27 aux _ _ 27 name _ VERB VB _ 21 ccomp _ _ 28 any _ DET DT _ 27 dobj _ _ 29 of _ ADP IN _ 32 case _ _ 30 100 _ NUM CD _ 32 nummod _ _ 31 different _ ADJ JJ _ 32 amod _ _ 32 cheeses _ NOUN NNS _ 28 nmod _ _ 33 after _ ADP IN _ 36 case _ _ 34 just _ ADV RB _ 36 advmod _ _ 35 one _ NUM CD _ 36 nummod _ _ 36 nibble _ NOUN NN _ 27 nmod _ _ 37 , _ PUNCT , _ 27 punct _ _ 38 while _ SCONJ IN _ 39 mark _ _ 39 blindfolded _ ADJ JJ _ 27 advcl _ _ 40 . _ PUNCT . _ 21 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 woman _ NOUN NN _ 3 nsubj _ _ 3 won _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 bet _ NOUN NN _ 3 dobj _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 21 cc _ _ 2 perhaps _ ADV RB _ 5 advmod _ _ 3 even _ ADV RB _ 4 advmod _ _ 4 more _ ADV RBR _ 5 advmod _ _ 5 remarkable _ ADJ JJ _ 21 dep _ _ 6 , _ PUNCT , _ 21 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 three-hour-show _ NOUN NN _ 21 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 Wetten _ X FW _ 12 compound _ _ 12 Dass _ X FW _ 8 appos _ _ 13 '' _ PUNCT '' _ 12 punct _ _ 14 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 15 Make _ PROPN NNP _ 17 dep _ _ 16 a _ DET DT _ 17 det _ _ 17 Bet _ PROPN NNP _ 12 dep _ _ 18 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 regularly _ ADV RB _ 21 advmod _ _ 21 wins _ VERB VBZ _ 0 root _ _ 22 the _ DET DT _ 24 det _ _ 23 top _ ADJ JJ _ 24 amod _ _ 24 slot _ NOUN NN _ 21 dobj _ _ 25 in _ ADP IN _ 30 case _ _ 26 the _ DET DT _ 27 det _ _ 27 country _ NOUN NN _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 TV _ NOUN NN _ 30 compound _ _ 30 ratings _ NOUN NNS _ 24 nmod _ _ 31 , _ PUNCT , _ 21 punct _ _ 32 sometimes _ ADV RB _ 33 advmod _ _ 33 drawing _ VERB VBG _ 21 advcl _ _ 34 as _ ADV RB _ 37 advmod _ _ 35 many _ ADJ JJ _ 37 advmod _ _ 36 as _ ADP IN _ 37 advmod _ _ 37 50 _ NUM CD _ 38 nummod _ _ 38 % _ SYM NN _ 33 dobj _ _ 39 of _ ADP IN _ 42 case _ _ 40 West _ ADJ JJ _ 41 amod _ _ 41 German _ ADJ JJ _ 42 amod _ _ 42 households _ NOUN NNS _ 38 nmod _ _ 43 . _ PUNCT . _ 21 punct _ _ 1 As _ SCONJ IN _ 6 mark _ _ 2 the _ DET DT _ 5 det _ _ 3 1992 _ NUM CD _ 5 nummod _ _ 4 economic _ ADJ JJ _ 5 amod _ _ 5 integration _ NOUN NN _ 6 nsubj _ _ 6 approaches _ NOUN NNS _ 13 advcl _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 Europe _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 cultural _ ADJ JJ _ 11 amod _ _ 11 curators _ NOUN NNS _ 13 nsubj _ _ 12 have _ AUX VBP _ 13 aux _ _ 13 taken _ VERB VBN _ 0 root _ _ 14 to _ ADP TO _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 ramparts _ NOUN NNS _ 13 nmod _ _ 17 against _ ADP IN _ 21 case _ _ 18 American _ ADJ JJ _ 21 amod _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 cultural _ ADJ JJ _ 21 amod _ _ 21 imperialism _ NOUN NN _ 13 nmod _ _ 22 , _ PUNCT , _ 13 punct _ _ 23 '' _ PUNCT '' _ 13 punct _ _ 24 threatening _ VERB VBG _ 13 xcomp _ _ 25 to _ PART TO _ 26 mark _ _ 26 impose _ VERB VB _ 24 xcomp _ _ 27 quotas _ NOUN NNS _ 26 dobj _ _ 28 against _ ADP IN _ 31 case _ _ 29 such _ ADJ JJ _ 31 amod _ _ 30 pop _ ADJ JJ _ 31 amod _ _ 31 invaders _ NOUN NNS _ 27 nmod _ _ 32 as _ ADP IN _ 34 case _ _ 33 `` _ PUNCT `` _ 34 punct _ _ 34 Dallas _ PROPN NNP _ 31 nmod _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 '' _ PUNCT '' _ 34 punct _ _ 37 `` _ PUNCT `` _ 34 punct _ _ 38 Miami _ PROPN NNP _ 39 compound _ _ 39 Vice _ PROPN NNP _ 34 conj _ _ 40 '' _ PUNCT '' _ 34 punct _ _ 41 and _ CONJ CC _ 34 cc _ _ 42 `` _ PUNCT `` _ 34 punct _ _ 43 L.A. _ PROPN NNP _ 44 compound _ _ 44 Law _ PROPN NNP _ 34 conj _ _ 45 . _ PUNCT . _ 13 punct _ _ 46 '' _ PUNCT '' _ 13 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 much _ ADJ JJ _ 10 nsubj _ _ 3 of _ SCONJ IN _ 7 mark _ _ 4 what _ PRON WP _ 7 dobj _ _ 5 the _ DET DT _ 6 det _ _ 6 Europeans _ PROPN NNPS _ 7 nsubj _ _ 7 want _ VERB VBP _ 2 acl _ _ 8 to _ PART TO _ 9 mark _ _ 9 protect _ VERB VB _ 7 xcomp _ _ 10 seems _ VERB VBZ _ 0 root _ _ 11 every _ DET DT _ 12 det _ _ 12 bit _ NOUN NN _ 14 dep _ _ 13 as _ ADV RB _ 14 advmod _ _ 14 cheesy _ ADJ JJ _ 10 xcomp _ _ 15 as _ SCONJ IN _ 19 mark _ _ 16 what _ PRON WP _ 21 dobj _ _ 17 they _ PRON PRP _ 19 nsubj _ _ 18 are _ AUX VBP _ 19 aux _ _ 19 trying _ VERB VBG _ 14 advcl _ _ 20 to _ PART TO _ 21 mark _ _ 21 keep _ VERB VB _ 19 xcomp _ _ 22 out _ ADP RP _ 21 compound:prt _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 militant _ ADJ JJ _ 4 amod _ _ 4 opposition _ NOUN NN _ 10 nsubj _ _ 5 to _ ADP TO _ 8 case _ _ 6 American _ ADJ JJ _ 8 amod _ _ 7 TV _ NOUN NN _ 8 compound _ _ 8 imports _ NOUN NNS _ 4 nmod _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 come _ VERB VBN _ 0 root _ _ 11 from _ ADP IN _ 13 case _ _ 12 French _ ADJ JJ _ 13 amod _ _ 13 television _ NOUN NN _ 10 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 movie _ NOUN NN _ 16 compound _ _ 16 producers _ NOUN NNS _ 13 conj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 who _ PRON WP _ 20 nsubj _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 demanded _ VERB VBN _ 13 acl:relcl _ _ 21 quotas _ NOUN NNS _ 20 dobj _ _ 22 ensuring _ VERB VBG _ 21 acl _ _ 23 that _ SCONJ IN _ 34 mark _ _ 24 a _ DET DT _ 27 det _ _ 25 full _ ADJ JJ _ 27 amod _ _ 26 60 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 34 nsubjpass _ _ 28 of _ ADP IN _ 32 case _ _ 29 Europe _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 TV _ NOUN NN _ 32 compound _ _ 32 shows _ NOUN NNS _ 27 nmod _ _ 33 be _ AUX VB _ 34 auxpass _ _ 34 produced _ VERB VBN _ 22 ccomp _ _ 35 in _ ADP IN _ 36 case _ _ 36 Europe _ PROPN NNP _ 34 nmod _ _ 37 . _ PUNCT . _ 10 punct _ _ 1 So _ ADV RB _ 2 advmod _ _ 2 far _ ADV RB _ 7 advmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 French _ PROPN NNPS _ 7 nsubj _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 failed _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 win _ VERB VB _ 7 xcomp _ _ 10 enough _ ADJ JJ _ 12 amod _ _ 11 broad-based _ ADJ JJ _ 12 amod _ _ 12 support _ NOUN NN _ 9 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 prevail _ VERB VB _ 12 acl _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 glance _ NOUN NN _ 16 nsubj _ _ 3 through _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 television _ NOUN NN _ 6 compound _ _ 6 listings _ NOUN NNS _ 2 nmod _ _ 7 and _ CONJ CC _ 2 cc _ _ 8 a _ DET DT _ 10 det _ _ 9 few _ ADJ JJ _ 10 amod _ _ 10 twists _ NOUN NNS _ 2 conj _ _ 11 of _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 European _ ADJ JJ _ 15 amod _ _ 14 television _ NOUN NN _ 15 compound _ _ 15 dial _ NOUN NN _ 10 nmod _ _ 16 suggest _ VERB VBP _ 0 root _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 reason _ NOUN NN _ 16 dobj _ _ 19 why _ ADV WRB _ 18 dep _ _ 20 . _ PUNCT . _ 16 punct _ _ 1 While _ SCONJ IN _ 3 mark _ _ 2 there _ PRON EX _ 3 expl _ _ 3 are _ VERB VBP _ 12 advcl _ _ 4 some _ DET DT _ 6 det _ _ 5 popular _ ADJ JJ _ 6 amod _ _ 6 action _ NOUN NN _ 3 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 drama _ NOUN NN _ 9 compound _ _ 9 series _ NOUN NN _ 6 conj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 few _ ADJ JJ _ 12 nsubj _ _ 12 boast _ VERB VBP _ 0 root _ _ 13 the _ DET DT _ 15 det _ _ 14 high _ ADJ JJ _ 15 amod _ _ 15 culture _ NOUN NN _ 12 dobj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 classy _ ADJ JJ _ 18 amod _ _ 18 production _ NOUN NN _ 15 conj _ _ 19 values _ VERB VBZ _ 18 dep _ _ 20 one _ PRON PRP _ 22 nsubj _ _ 21 might _ AUX MD _ 22 aux _ _ 22 expect _ VERB VB _ 15 acl:relcl _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 More _ ADJ JJR _ 4 amod _ _ 2 European _ ADJ JJ _ 4 amod _ _ 3 air _ NOUN NN _ 4 compound _ _ 4 time _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 filled _ VERB VBN _ 0 root _ _ 7 with _ ADP IN _ 10 case _ _ 8 low-budget _ ADJ JJ _ 10 amod _ _ 9 game _ NOUN NN _ 10 compound _ _ 10 shows _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 variety _ NOUN NN _ 13 compound _ _ 13 hours _ NOUN NNS _ 10 conj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 movies _ NOUN NNS _ 10 conj _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 talk _ NOUN NN _ 18 compound _ _ 18 shows _ NOUN NNS _ 10 conj _ _ 19 , _ PUNCT , _ 10 punct _ _ 20 many _ ADJ JJ _ 25 nsubj _ _ 21 of _ ADP IN _ 22 case _ _ 22 which _ PRON WDT _ 20 nmod _ _ 23 are _ VERB VBP _ 25 cop _ _ 24 authorized _ VERB VBN _ 25 amod _ _ 25 knock-offs _ ADJ JJ _ 10 acl:relcl _ _ 26 of _ ADP IN _ 29 case _ _ 27 their _ PRON PRP$ _ 29 nmod:poss _ _ 28 American _ PROPN NNP _ 29 compound _ _ 29 counterparts _ NOUN NNS _ 25 nmod _ _ 30 . _ PUNCT . _ 6 punct _ _ 1 One _ NUM CD _ 10 nsubj _ _ 2 of _ ADP IN _ 9 case _ _ 3 France _ PROPN NNP _ 9 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 most _ ADV RBS _ 6 advmod _ _ 6 popular _ ADJ JJ _ 9 amod _ _ 7 Saturday _ PROPN NNP _ 9 compound _ _ 8 night _ NOUN NN _ 9 compound _ _ 9 programs _ NOUN NNS _ 1 nmod _ _ 10 features _ VERB VBZ _ 0 root _ _ 11 semi-celebrities _ NOUN NNS _ 10 dobj _ _ 12 seeking _ VERB VBG _ 11 acl _ _ 13 out _ ADP RP _ 12 compound:prt _ _ 14 their _ PRON PRP$ _ 16 nmod:poss _ _ 15 grammar-school _ NOUN NN _ 16 compound _ _ 16 classmates _ NOUN NNS _ 12 dobj _ _ 17 for _ ADP IN _ 19 case _ _ 18 on-air _ ADJ JJ _ 19 amod _ _ 19 reunions _ NOUN NNS _ 12 nmod _ _ 20 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 Flemish _ ADJ JJ _ 4 amod _ _ 3 game _ NOUN NN _ 4 compound _ _ 4 show _ NOUN NN _ 5 nsubj _ _ 5 has _ VERB VBZ _ 0 root _ _ 6 as _ ADV RB _ 8 advmod _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 host _ NOUN NN _ 5 nmod _ _ 9 a _ DET DT _ 10 det _ _ 10 Belgian _ PROPN NNP _ 5 dobj _ _ 11 pretending _ VERB VBG _ 10 acl _ _ 12 to _ PART TO _ 14 mark _ _ 13 be _ VERB VB _ 14 cop _ _ 14 Italian _ ADJ JJ _ 11 xcomp _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 19 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 Italy _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 favorite _ ADJ JJ _ 6 amod _ _ 6 shows _ NOUN NNS _ 1 nmod _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 `` _ PUNCT `` _ 1 punct _ _ 9 Fantastico _ PROPN NNP _ 1 dep _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 '' _ PUNCT '' _ 1 punct _ _ 12 a _ DET DT _ 15 det _ _ 13 tepid _ ADJ JJ _ 15 amod _ _ 14 variety _ NOUN NN _ 15 compound _ _ 15 show _ NOUN NN _ 1 dep _ _ 16 , _ PUNCT , _ 1 punct _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 so _ ADV RB _ 19 advmod _ _ 19 popular _ ADJ JJ _ 0 root _ _ 20 that _ SCONJ IN _ 22 mark _ _ 21 viewers _ NOUN NNS _ 22 nsubj _ _ 22 clamored _ VERB VBD _ 19 ccomp _ _ 23 to _ PART TO _ 24 mark _ _ 24 buy _ VERB VB _ 22 xcomp _ _ 25 a _ DET DT _ 27 det _ _ 26 chocolate _ NOUN NN _ 27 compound _ _ 27 product _ NOUN NN _ 24 dobj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 `` _ PUNCT `` _ 27 punct _ _ 30 Cacao _ PROPN NNP _ 31 compound _ _ 31 Fantastico _ PROPN NNP _ 27 dep _ _ 32 , _ PUNCT , _ 27 punct _ _ 33 '' _ PUNCT '' _ 27 punct _ _ 34 whose _ PRON WP$ _ 35 nmod:poss _ _ 35 praises _ NOUN NNS _ 37 nsubjpass _ _ 36 were _ AUX VBD _ 37 auxpass _ _ 37 sung _ VERB VBN _ 27 acl:relcl _ _ 38 each _ DET DT _ 39 det _ _ 39 week _ NOUN NN _ 37 nmod:tmod _ _ 40 by _ ADP IN _ 42 case _ _ 41 dancing _ VERB VBG _ 42 amod _ _ 42 showgirls _ NOUN NNS _ 37 nmod _ _ 43 -- _ PUNCT : _ 22 punct _ _ 44 even _ ADV RB _ 50 advmod _ _ 45 though _ SCONJ IN _ 50 mark _ _ 46 the _ DET DT _ 47 det _ _ 47 product _ NOUN NN _ 50 nsubj _ _ 48 did _ AUX VBD _ 50 aux _ _ 49 n't _ PART RB _ 50 neg _ _ 50 exist _ VERB VB _ 22 advcl _ _ 51 . _ PUNCT . _ 19 punct _ _ 1 Topping _ VERB VBG _ 20 dep _ _ 2 the _ DET DT _ 4 det _ _ 3 cheese _ NOUN NN _ 4 compound _ _ 4 stunt _ NOUN NN _ 1 dobj _ _ 5 , _ PUNCT , _ 20 punct _ _ 6 on _ ADP IN _ 9 case _ _ 7 another _ DET DT _ 9 det _ _ 8 typical _ ADJ JJ _ 9 amod _ _ 9 evening _ NOUN NN _ 20 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 fun _ NOUN NN _ 9 nmod _ _ 12 on _ ADP IN _ 15 case _ _ 13 `` _ PUNCT `` _ 15 punct _ _ 14 Wetten _ X FW _ 15 compound _ _ 15 Dass _ X FW _ 9 nmod _ _ 16 , _ PUNCT , _ 20 punct _ _ 17 '' _ PUNCT '' _ 20 punct _ _ 18 a _ DET DT _ 19 det _ _ 19 contestant _ NOUN NN _ 20 nsubj _ _ 20 won _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 22 det _ _ 22 bet _ NOUN NN _ 20 dobj _ _ 23 with _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 25 det _ _ 25 show _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 host _ NOUN NN _ 22 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Thomas _ PROPN NNP _ 30 compound _ _ 30 Gottschalk _ PROPN NNP _ 27 appos _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 that _ SCONJ IN _ 35 mark _ _ 33 he _ PRON PRP _ 35 nsubj _ _ 34 could _ AUX MD _ 35 aux _ _ 35 identify _ VERB VB _ 22 dep _ _ 36 300 _ NUM CD _ 38 nummod _ _ 37 German _ ADJ JJ _ 38 amod _ _ 38 dialects _ NOUN NNS _ 35 dobj _ _ 39 over _ ADP IN _ 41 case _ _ 40 the _ DET DT _ 41 det _ _ 41 telephone _ NOUN NN _ 35 nmod _ _ 42 . _ PUNCT . _ 20 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 celebrity _ NOUN NN _ 3 compound _ _ 3 guest _ NOUN NN _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 U.S. _ PROPN NNP _ 11 dep _ _ 6 Ambassador _ PROPN NNP _ 5 dep _ _ 7 to _ ADP TO _ 9 case _ _ 8 West _ PROPN NNP _ 9 compound _ _ 9 Germany _ PROPN NNP _ 5 nmod _ _ 10 Richard _ PROPN NNP _ 11 compound _ _ 11 Burt _ PROPN NNP _ 3 appos _ _ 12 , _ PUNCT , _ 3 punct _ _ 13 also _ ADV RB _ 14 advmod _ _ 14 won _ VERB VBD _ 0 root _ _ 15 a _ DET DT _ 16 det _ _ 16 bet _ NOUN NN _ 14 dobj _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 someone _ NOUN NN _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 pile _ VERB VB _ 16 ccomp _ _ 21 up _ ADP RP _ 20 compound:prt _ _ 22 $ _ SYM $ _ 24 dep _ _ 23 150 _ NUM CD _ 24 nummod _ _ 24 worth _ NOUN NN _ 20 dobj _ _ 25 of _ ADP IN _ 26 case _ _ 26 quarters _ NOUN NNS _ 24 nmod _ _ 27 on _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 slanted _ ADJ JJ _ 30 amod _ _ 30 coin _ NOUN NN _ 20 nmod _ _ 31 . _ PUNCT . _ 14 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Burt _ PROPN NNP _ 4 nsubj _ _ 3 nonetheless _ ADV RB _ 4 advmod _ _ 4 paid _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 penalty _ NOUN NN _ 4 dobj _ _ 7 as _ SCONJ IN _ 11 mark _ _ 8 if _ SCONJ IN _ 7 mwe _ _ 9 he _ PRON PRP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 lost _ VERB VBN _ 4 advcl _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 agreeing _ VERB VBG _ 4 xcomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 spend _ VERB VB _ 13 xcomp _ _ 16 a _ DET DT _ 17 det _ _ 17 day _ NOUN NN _ 15 nmod:tmod _ _ 18 with _ ADP IN _ 24 case _ _ 19 West _ PROPN NNP _ 24 compound _ _ 20 German _ PROPN NNP _ 24 compound _ _ 21 Foreign _ PROPN NNP _ 24 compound _ _ 22 Minister _ PROPN NNP _ 24 compound _ _ 23 Hans-Dietrich _ PROPN NNP _ 24 compound _ _ 24 Genscher _ PROPN NNP _ 15 nmod _ _ 25 frying _ VERB VBG _ 15 xcomp _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 selling _ VERB VBG _ 25 conj _ _ 28 their _ PRON PRP$ _ 30 nmod:poss _ _ 29 combined _ ADJ JJ _ 30 amod _ _ 30 weight _ NOUN NN _ 25 dobj _ _ 31 in _ ADP IN _ 33 case _ _ 32 potato _ NOUN NN _ 33 compound _ _ 33 pancakes _ NOUN NNS _ 30 nmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 this _ PRON DT _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 18 advcl _ _ 4 like _ ADP IN _ 7 case _ _ 5 pretty _ ADV RB _ 6 advmod _ _ 6 weak _ ADJ JJ _ 7 amod _ _ 7 stuff _ NOUN NN _ 3 nmod _ _ 8 around _ ADP IN _ 9 case _ _ 9 which _ PRON WDT _ 11 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 raise _ VERB VB _ 7 acl:relcl _ _ 12 the _ DET DT _ 14 det _ _ 13 protectionist _ ADJ JJ _ 14 amod _ _ 14 barriers _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 it _ PRON PRP _ 18 nsubj _ _ 17 may _ AUX MD _ 18 aux _ _ 18 be _ VERB VB _ 0 root _ _ 19 because _ SCONJ IN _ 22 mark _ _ 20 these _ DET DT _ 21 det _ _ 21 shows _ NOUN NNS _ 22 nsubj _ _ 22 need _ VERB VBP _ 18 advcl _ _ 23 all _ DET PDT _ 25 det:predet _ _ 24 the _ DET DT _ 25 det _ _ 25 protection _ NOUN NN _ 22 dobj _ _ 26 they _ PRON PRP _ 28 nsubj _ _ 27 can _ AUX MD _ 28 aux _ _ 28 get _ VERB VB _ 25 acl:relcl _ _ 29 . _ PUNCT . _ 18 punct _ _ 1 European _ ADJ JJ _ 2 amod _ _ 2 programs _ NOUN NNS _ 4 nsubj _ _ 3 usually _ ADV RB _ 4 advmod _ _ 4 target _ VERB VBP _ 0 root _ _ 5 only _ ADV RB _ 9 advmod _ _ 6 their _ PRON PRP$ _ 9 nmod:poss _ _ 7 own _ ADJ JJ _ 9 amod _ _ 8 local _ ADJ JJ _ 9 amod _ _ 9 audience _ NOUN NN _ 4 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 often _ ADV RB _ 16 advmod _ _ 13 only _ ADV RB _ 16 advmod _ _ 14 a _ DET DT _ 16 det _ _ 15 small _ ADJ JJ _ 16 amod _ _ 16 portion _ NOUN NN _ 9 conj _ _ 17 of _ ADP IN _ 18 case _ _ 18 that _ PRON DT _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Mega-hits _ NOUN NNS _ 7 nsubj _ _ 2 in _ ADP IN _ 3 case _ _ 3 Germany _ PROPN NNP _ 1 nmod _ _ 4 or _ CONJ CC _ 3 cc _ _ 5 Italy _ PROPN NNP _ 3 conj _ _ 6 rarely _ ADV RB _ 7 advmod _ _ 7 make _ VERB VBP _ 0 root _ _ 8 it _ PRON PRP _ 7 dobj _ _ 9 even _ ADV RB _ 11 advmod _ _ 10 to _ ADP TO _ 11 case _ _ 11 France _ PROPN NNP _ 7 nmod _ _ 12 or _ CONJ CC _ 11 cc _ _ 13 Great _ PROPN NNP _ 14 compound _ _ 14 Britain _ PROPN NNP _ 11 conj _ _ 15 , _ PUNCT , _ 7 punct _ _ 16 and _ CONJ CC _ 7 cc _ _ 17 almost _ ADV RB _ 18 advmod _ _ 18 never _ ADV RB _ 19 neg _ _ 19 show _ VERB VBP _ 7 conj _ _ 20 up _ ADP RP _ 19 compound:prt _ _ 21 on _ ADP IN _ 23 case _ _ 22 U.S. _ PROPN NNP _ 23 compound _ _ 23 screens _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Attempts _ NOUN NNS _ 10 nsubj _ _ 2 to _ PART TO _ 3 mark _ _ 3 produce _ VERB VB _ 1 acl _ _ 4 `` _ PUNCT `` _ 7 punct _ _ 5 pan-European _ ADJ JJ _ 7 amod _ _ 6 '' _ PUNCT '' _ 7 punct _ _ 7 programs _ NOUN NNS _ 3 dobj _ _ 8 have _ AUX VBP _ 10 aux _ _ 9 generally _ ADV RB _ 10 advmod _ _ 10 resulted _ VERB VBN _ 0 root _ _ 11 in _ ADP IN _ 12 case _ _ 12 disappointment _ NOUN NN _ 10 nmod _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 annual _ ADJ JJ _ 3 amod _ _ 3 co-production _ NOUN NN _ 25 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 10 det _ _ 6 three-hour-long _ ADJ JJ _ 10 amod _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 Eurovision _ PROPN NNP _ 10 compound _ _ 9 Song _ PROPN NNP _ 10 compound _ _ 10 Contest _ PROPN NNP _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 13 featuring _ VERB VBG _ 3 acl _ _ 14 soft-rock _ ADJ JJ _ 15 amod _ _ 15 songs _ NOUN NNS _ 13 dobj _ _ 16 from _ ADP IN _ 17 case _ _ 17 each _ DET DT _ 15 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 20 _ NUM CD _ 21 nummod _ _ 20 European _ ADJ JJ _ 21 amod _ _ 21 countries _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 3 punct _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 described _ VERB VBN _ 0 root _ _ 26 as _ ADP IN _ 33 case _ _ 27 the _ DET DT _ 28 det _ _ 28 world _ NOUN NN _ 33 nmod:poss _ _ 29 's _ VERB VBZ _ 28 case _ _ 30 most _ ADV RBS _ 31 advmod _ _ 31 boring _ ADJ JJ _ 33 amod _ _ 32 TV _ NOUN NN _ 33 compound _ _ 33 show _ NOUN NN _ 25 nmod _ _ 34 . _ PUNCT . _ 25 punct _ _ 1 Another _ DET DT _ 25 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 `` _ PUNCT `` _ 1 punct _ _ 4 Jeux _ X FW _ 6 compound _ _ 5 Sans _ X FW _ 6 compound _ _ 6 Frontieres _ X FW _ 1 dep _ _ 7 , _ PUNCT , _ 1 punct _ _ 8 '' _ PUNCT '' _ 1 punct _ _ 9 where _ ADV WRB _ 15 advmod _ _ 10 villagers _ NOUN NNS _ 15 nsubj _ _ 11 from _ ADP IN _ 14 case _ _ 12 assorted _ ADJ JJ _ 14 amod _ _ 13 European _ ADJ JJ _ 14 amod _ _ 14 countries _ NOUN NNS _ 10 nmod _ _ 15 make _ VERB VBP _ 1 acl:relcl _ _ 16 fools _ NOUN NNS _ 15 dobj _ _ 17 of _ ADP IN _ 18 case _ _ 18 themselves _ PRON PRP _ 15 nmod _ _ 19 performing _ VERB VBG _ 15 xcomp _ _ 20 pointless _ ADJ JJ _ 21 amod _ _ 21 tasks _ NOUN NNS _ 19 dobj _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 is _ VERB VBZ _ 25 cop _ _ 24 a _ DET DT _ 25 det _ _ 25 hit _ NOUN NN _ 0 root _ _ 26 in _ ADP IN _ 27 case _ _ 27 France _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 25 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 U.S.-made _ ADJ JJ _ 3 amod _ _ 3 imitation _ NOUN NN _ 12 nsubj _ _ 4 under _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 title _ NOUN NN _ 3 nmod _ _ 7 `` _ PUNCT `` _ 6 punct _ _ 8 Almost _ PROPN NNP _ 9 compound _ _ 9 Anything _ PROPN NNP _ 10 nsubj _ _ 10 Goes _ PROPN NNP _ 6 dep _ _ 11 '' _ PUNCT '' _ 6 punct _ _ 12 flopped _ VERB VBD _ 0 root _ _ 13 fast _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 For _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 most _ ADJ JJS _ 4 amod _ _ 4 part _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 what _ PRON WP _ 8 nsubjpass _ _ 7 's _ AUX VBZ _ 8 auxpass _ _ 8 made _ VERB VBN _ 10 csubj _ _ 9 here _ ADV RB _ 8 advmod _ _ 10 stays _ VERB VBZ _ 0 root _ _ 11 here _ ADV RB _ 10 advmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 and _ CONJ CC _ 16 cc _ _ 14 for _ ADP IN _ 16 case _ _ 15 good _ ADJ JJ _ 16 amod _ _ 16 reason _ NOUN NN _ 10 dep _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 cream _ NOUN NN _ 24 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 British _ ADJ JJ _ 6 amod _ _ 6 crop _ NOUN NN _ 2 nmod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 literary _ ADJ JJ _ 10 amod _ _ 10 dramas _ NOUN NN _ 2 appos _ _ 11 that _ PRON WDT _ 13 nsubjpass _ _ 12 are _ AUX VBP _ 13 auxpass _ _ 13 shown _ VERB VBN _ 10 acl:relcl _ _ 14 on _ ADP IN _ 17 case _ _ 15 U.S. _ PROPN NNP _ 17 compound _ _ 16 public _ ADJ JJ _ 17 amod _ _ 17 television _ NOUN NN _ 13 nmod _ _ 18 as _ ADP IN _ 21 case _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 Masterpiece _ PROPN NNP _ 21 compound _ _ 21 Theater _ PROPN NNP _ 13 nmod _ _ 22 , _ PUNCT , _ 2 punct _ _ 23 '' _ PUNCT '' _ 2 punct _ _ 24 make _ VERB VBP _ 0 root _ _ 25 up _ ADP RP _ 24 compound:prt _ _ 26 a _ DET DT _ 29 det _ _ 27 relatively _ ADV RB _ 28 advmod _ _ 28 small _ ADJ JJ _ 29 amod _ _ 29 part _ NOUN NN _ 24 dobj _ _ 30 of _ ADP IN _ 33 case _ _ 31 British _ ADJ JJ _ 33 amod _ _ 32 air _ NOUN NN _ 33 compound _ _ 33 time _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 24 punct _ _ 1 Most _ ADJ JJS _ 3 amod _ _ 2 British _ ADJ JJ _ 3 amod _ _ 3 programming _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 more _ ADJ JJR _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 an _ DET DT _ 9 det _ _ 8 acquired _ ADJ JJ _ 9 amod _ _ 9 taste _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 instance _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 `` _ PUNCT `` _ 9 punct _ _ 8 One _ NUM CD _ 9 nummod _ _ 9 Man _ NOUN NN _ 2 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 His _ PRON PRP$ _ 12 nmod:poss _ _ 12 Dog _ PROPN NNP _ 9 conj _ _ 13 , _ PUNCT , _ 9 punct _ _ 14 '' _ PUNCT '' _ 9 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 herding _ NOUN NN _ 17 compound _ _ 17 contest _ NOUN NN _ 9 dep _ _ 18 among _ ADP IN _ 20 case _ _ 19 sheep _ NOUN NN _ 20 compound _ _ 20 dogs _ NOUN NNS _ 17 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 6 advmod _ _ 2 riveting _ ADJ JJ _ 6 dep _ _ 3 to _ ADP TO _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 British _ PROPN NNPS _ 6 nmod _ _ 6 are _ VERB VBP _ 0 root _ _ 7 hours _ NOUN NNS _ 6 nsubj _ _ 8 of _ ADP IN _ 10 case _ _ 9 dart-throwing _ NOUN NN _ 10 compound _ _ 10 championships _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 even _ ADV RB _ 13 advmod _ _ 13 more _ ADJ JJR _ 14 amod _ _ 14 hours _ NOUN NNS _ 7 conj _ _ 15 of _ ADP IN _ 18 case _ _ 16 lawn _ NOUN NN _ 18 compound _ _ 17 bowling _ NOUN NN _ 18 compound _ _ 18 contests _ NOUN NNS _ 14 nmod _ _ 19 and _ CONJ CC _ 7 cc _ _ 20 still _ ADV RB _ 21 advmod _ _ 21 more _ ADJ JJR _ 22 amod _ _ 22 hours _ NOUN NNS _ 7 conj _ _ 23 of _ ADP IN _ 25 case _ _ 24 snooker _ NOUN NN _ 25 compound _ _ 25 marathons _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 European _ ADJ JJ _ 2 amod _ _ 2 drama _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 had _ VERB VBN _ 0 root _ _ 5 better _ ADJ JJR _ 11 amod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 though _ SCONJ IN _ 9 mark _ _ 8 still _ ADV RB _ 9 advmod _ _ 9 mixed _ ADJ JJ _ 11 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 fortunes _ NOUN NNS _ 4 dobj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 popular _ ADJ JJ _ 5 amod _ _ 4 such _ ADJ JJ _ 5 amod _ _ 5 shows _ NOUN NNS _ 6 nsubj _ _ 6 focus _ VERB VBP _ 0 root _ _ 7 on _ ADP IN _ 10 case _ _ 8 narrow _ ADJ JJ _ 10 amod _ _ 9 national _ ADJ JJ _ 10 amod _ _ 10 concerns _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 French _ ADJ JJ _ 3 amod _ _ 3 knock-off _ NOUN NN _ 20 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 Dallas _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 '' _ PUNCT '' _ 3 punct _ _ 9 called _ VERB VBN _ 3 dep _ _ 10 `` _ PUNCT `` _ 11 punct _ _ 11 Chateauvallon _ PROPN NNP _ 9 xcomp _ _ 12 '' _ PUNCT '' _ 11 punct _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 set _ VERB VBN _ 9 conj _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 French _ ADJ JJ _ 18 amod _ _ 18 vineyard _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 had _ VERB VBD _ 0 root _ _ 21 a _ DET DT _ 23 det _ _ 22 good _ ADJ JJ _ 23 amod _ _ 23 run _ NOUN NN _ 20 dobj _ _ 24 in _ ADP IN _ 25 case _ _ 25 France _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 which _ PRON WDT _ 28 nsubj _ _ 28 ended _ VERB VBD _ 23 acl:relcl _ _ 29 after _ SCONJ IN _ 34 mark _ _ 30 the _ DET DT _ 32 det _ _ 31 female _ ADJ JJ _ 32 amod _ _ 32 lead _ NOUN NN _ 34 nsubjpass _ _ 33 was _ AUX VBD _ 34 auxpass _ _ 34 injured _ VERB VBN _ 28 advcl _ _ 35 in _ ADP IN _ 39 case _ _ 36 a _ DET DT _ 39 det _ _ 37 real-life _ ADJ JJ _ 39 amod _ _ 38 auto _ NOUN NN _ 39 compound _ _ 39 accident _ NOUN NN _ 34 nmod _ _ 40 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 2 punct _ _ 2 Schwarzwaldklinik _ PROPN NNP _ 27 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 '' _ PUNCT '' _ 2 punct _ _ 5 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 6 Black _ PROPN NNP _ 8 compound _ _ 7 Forest _ PROPN NNP _ 8 compound _ _ 8 Clinic _ PROPN NNP _ 2 appos _ _ 9 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 a _ DET DT _ 12 det _ _ 12 kind _ NOUN NN _ 2 appos _ _ 13 of _ ADP IN _ 18 case _ _ 14 German _ PROPN NNP _ 18 dep _ _ 15 `` _ PUNCT `` _ 18 punct _ _ 16 St _ PROPN NNP _ 18 compound _ _ 17 . _ PUNCT . _ 18 punct _ _ 18 Elsewhere _ PROPN NNP _ 12 nmod _ _ 19 '' _ PUNCT '' _ 18 punct _ _ 20 set _ VERB VBN _ 18 acl _ _ 21 in _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 health _ NOUN NN _ 24 compound _ _ 24 spa _ NOUN NN _ 20 nmod _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 is _ VERB VBZ _ 27 cop _ _ 27 popular _ ADJ JJ _ 0 root _ _ 28 in _ ADP IN _ 29 case _ _ 29 Germany _ PROPN NNP _ 27 nmod _ _ 30 , _ PUNCT , _ 27 punct _ _ 31 and _ CONJ CC _ 27 cc _ _ 32 has _ AUX VBZ _ 33 aux _ _ 33 spread _ VERB VBN _ 27 conj _ _ 34 into _ ADP IN _ 35 case _ _ 35 France _ PROPN NNP _ 33 nmod _ _ 36 . _ PUNCT . _ 27 punct _ _ 1 Italy _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 most _ ADV RBS _ 4 advmod _ _ 4 popular _ ADJ JJ _ 5 amod _ _ 5 series _ NOUN NN _ 8 nsubj _ _ 6 is _ VERB VBZ _ 8 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 drama _ NOUN NN _ 0 root _ _ 9 called _ VERB VBN _ 8 acl _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 La _ X FW _ 12 compound _ _ 12 Piovra _ X FW _ 9 xcomp _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 '' _ PUNCT '' _ 12 punct _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 `` _ PUNCT `` _ 12 punct _ _ 17 The _ PROPN NNP _ 18 compound _ _ 18 Octopus _ PROPN NNP _ 12 conj _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 '' _ PUNCT '' _ 8 punct _ _ 21 which _ PRON WDT _ 22 nsubj _ _ 22 chronicles _ VERB VBZ _ 8 acl:relcl _ _ 23 the _ DET DT _ 24 det _ _ 24 fight _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 29 case _ _ 26 an _ DET DT _ 29 det _ _ 27 idealistic _ ADJ JJ _ 29 amod _ _ 28 young _ ADJ JJ _ 29 amod _ _ 29 investigator _ NOUN NN _ 24 nmod _ _ 30 in _ ADP IN _ 31 case _ _ 31 Palermo _ PROPN NNP _ 29 nmod _ _ 32 against _ ADP IN _ 34 case _ _ 33 the _ DET DT _ 34 det _ _ 34 Mafia _ PROPN NNP _ 24 nmod _ _ 35 . _ PUNCT . _ 8 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 front-page _ ADJ JJ _ 4 amod _ _ 4 news _ NOUN NN _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 Italy _ PROPN NNP _ 4 nmod _ _ 7 earlier _ ADV RBR _ 9 advmod _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 4 nmod:tmod _ _ 10 when _ ADV WRB _ 15 advmod _ _ 11 the _ DET DT _ 13 det _ _ 12 fictional _ ADJ JJ _ 13 amod _ _ 13 inspector _ NOUN NN _ 15 nsubjpass _ _ 14 was _ AUX VBD _ 15 auxpass _ _ 15 gunned _ VERB VBN _ 4 advcl _ _ 16 down _ ADP RP _ 15 compound:prt _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 series _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Spain _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 most _ ADV RBS _ 4 advmod _ _ 4 popular _ ADJ JJ _ 5 amod _ _ 5 mini-series _ NOUN NN _ 10 nsubj _ _ 6 this _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 5 nmod:tmod _ _ 8 was _ VERB VBD _ 10 cop _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 Juncal _ PROPN NNP _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 '' _ PUNCT '' _ 10 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 story _ NOUN NN _ 10 dep _ _ 15 of _ ADP IN _ 18 case _ _ 16 an _ DET DT _ 18 det _ _ 17 aging _ VERB VBG _ 18 amod _ _ 18 bullfighter _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 trend _ NOUN NN _ 7 nsubjpass _ _ 4 is _ AUX VBZ _ 7 auxpass _ _ 5 pretty _ ADV RB _ 6 advmod _ _ 6 well _ ADV RB _ 7 advmod _ _ 7 established _ VERB VBN _ 23 ccomp _ _ 8 now _ ADV RB _ 15 advmod _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 local _ ADJ JJ _ 11 amod _ _ 11 programs _ NOUN NNS _ 15 nsubj _ _ 12 are _ VERB VBP _ 15 cop _ _ 13 the _ DET DT _ 15 det _ _ 14 most _ ADV RBS _ 15 advmod _ _ 15 popular _ ADJ JJ _ 7 advcl _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 with _ SCONJ IN _ 20 mark _ _ 18 American _ ADJ JJ _ 19 amod _ _ 19 programs _ NOUN NNS _ 20 dep _ _ 20 second _ ADJ JJ _ 15 advcl _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 Brian _ PROPN NNP _ 25 compound _ _ 25 Wenham _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 29 det _ _ 28 former _ ADJ JJ _ 29 amod _ _ 29 director _ NOUN NN _ 25 appos _ _ 30 of _ ADP IN _ 31 case _ _ 31 programs _ NOUN NNS _ 29 nmod _ _ 32 for _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 British _ PROPN NNP _ 36 compound _ _ 35 Broadcasting _ PROPN NNP _ 36 compound _ _ 36 Corp _ PROPN NNP _ 29 nmod _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 Given _ VERB VBN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 choice _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 everybody _ NOUN NN _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 watch _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 home-produced _ ADJ JJ _ 11 amod _ _ 11 show _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 8 punct _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 frequently _ ADV RB _ 4 advmod _ _ 3 there _ PRON EX _ 4 expl _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 n't _ PART RB _ 4 neg _ _ 6 much _ ADJ JJ _ 7 amod _ _ 7 choice _ ADJ JJ _ 4 nsubj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Thus _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 Europe _ PROPN NNP _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 begun _ VERB VBN _ 0 root _ _ 6 the _ DET DT _ 8 det _ _ 7 recent _ ADJ JJ _ 8 amod _ _ 8 crusade _ NOUN NN _ 5 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 produce _ VERB VB _ 8 acl _ _ 11 more _ ADJ JJR _ 13 amod _ _ 12 worthy _ ADJ JJ _ 13 amod _ _ 13 shows _ NOUN NNS _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 its _ PRON PRP$ _ 16 nmod:poss _ _ 16 own _ ADJ JJ _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 programs _ NOUN NNS _ 13 appos _ _ 19 with _ ADP IN _ 21 case _ _ 20 broader _ ADJ JJR _ 21 amod _ _ 21 appeal _ NOUN NN _ 18 nmod _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 28 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 basically _ ADV RB _ 5 advmod _ _ 5 got _ VERB VBD _ 28 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 start _ VERB VB _ 5 ccomp _ _ 8 from _ ADP IN _ 9 case _ _ 9 scratch _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 to _ PART TO _ 12 mark _ _ 12 train _ VERB VB _ 7 dep _ _ 13 writers _ NOUN NNS _ 12 dobj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 producers _ NOUN NNS _ 13 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 make _ VERB VB _ 12 advcl _ _ 18 shows _ VERB VBZ _ 17 dobj _ _ 19 that _ ADP IN _ 23 dobj _ _ 20 other _ ADJ JJ _ 21 amod _ _ 21 people _ NOUN NNS _ 23 nsubj _ _ 22 will _ AUX MD _ 23 aux _ _ 23 want _ VERB VB _ 18 acl:relcl _ _ 24 to _ PART TO _ 25 mark _ _ 25 see _ VERB VB _ 23 xcomp _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 '' _ PUNCT '' _ 28 punct _ _ 28 concedes _ VERB VBZ _ 0 root _ _ 29 Colin _ PROPN NNP _ 30 compound _ _ 30 Young _ PROPN NNP _ 28 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 head _ NOUN NN _ 30 appos _ _ 33 of _ ADP IN _ 39 case _ _ 34 Britain _ PROPN NNP _ 39 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 National _ PROPN NNP _ 39 compound _ _ 37 Film _ PROPN NNP _ 39 compound _ _ 38 Theatre _ PROPN NNP _ 39 compound _ _ 39 School _ PROPN NNP _ 32 nmod _ _ 40 . _ PUNCT . _ 28 punct _ _ 1 While _ SCONJ IN _ 6 mark _ _ 2 some _ DET DT _ 6 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 U.S. _ PROPN NNP _ 2 nmod _ _ 6 contend _ VERB VBP _ 17 advcl _ _ 7 that _ DET DT _ 11 mark _ _ 8 advertising _ NOUN NN _ 11 nsubj _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 the _ DET DT _ 11 det _ _ 11 bane _ NOUN NN _ 6 ccomp _ _ 12 of _ ADP IN _ 13 case _ _ 13 television _ NOUN NN _ 11 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 here _ ADV RB _ 16 advmod _ _ 16 many _ ADJ JJ _ 17 nsubj _ _ 17 believe _ VERB VBP _ 0 root _ _ 18 that _ DET DT _ 21 mark _ _ 19 its _ PRON PRP$ _ 20 nmod:poss _ _ 20 absence _ NOUN NN _ 21 nsubj _ _ 21 is _ VERB VBZ _ 17 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 blame _ VERB VB _ 21 xcomp _ _ 24 for _ ADP IN _ 31 case _ _ 25 the _ DET DT _ 28 det _ _ 26 European _ ADJ JJ _ 28 amod _ _ 27 TV _ NOUN NN _ 28 compound _ _ 28 industry _ NOUN NN _ 31 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 sluggish _ ADJ JJ _ 31 amod _ _ 31 development _ NOUN NN _ 23 nmod _ _ 32 . _ PUNCT . _ 17 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 recently _ ADV RB _ 8 advcl _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 national _ ADJ JJ _ 5 amod _ _ 5 governments _ NOUN NNS _ 8 nsubj _ _ 6 in _ ADP IN _ 7 case _ _ 7 Europe _ PROPN NNP _ 5 nmod _ _ 8 controlled _ VERB VBD _ 0 root _ _ 9 most _ ADJ JJS _ 8 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 air _ NOUN NN _ 13 compound _ _ 13 time _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 allowed _ VERB VBD _ 8 conj _ _ 16 little _ ADJ JJ _ 19 amod _ _ 17 or _ CONJ CC _ 16 cc _ _ 18 no _ DET DT _ 16 conj _ _ 19 advertising _ NOUN NN _ 15 dobj _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 Since _ SCONJ IN _ 5 mark _ _ 2 production _ NOUN NN _ 3 compound _ _ 3 costs _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 guaranteed _ VERB VBN _ 10 advcl _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 it _ PRON PRP _ 10 nsubj _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 matter _ NOUN NN _ 0 root _ _ 11 that _ SCONJ IN _ 17 mark _ _ 12 a _ DET DT _ 13 det _ _ 13 program _ NOUN NN _ 17 nsubjpass _ _ 14 could _ AUX MD _ 17 aux _ _ 15 n't _ PART RB _ 17 neg _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 sold _ VERB VBN _ 10 ccomp _ _ 18 abroad _ ADV RB _ 17 advmod _ _ 19 or _ CONJ CC _ 17 cc _ _ 20 put _ VERB VB _ 17 conj _ _ 21 into _ ADP IN _ 22 case _ _ 22 syndication _ NOUN NN _ 20 nmod _ _ 23 , _ PUNCT , _ 17 punct _ _ 24 as _ SCONJ IN _ 28 mark _ _ 25 most _ ADJ JJS _ 27 amod _ _ 26 American _ ADJ JJ _ 27 amod _ _ 27 programs _ NOUN NNS _ 28 nsubj _ _ 28 are _ VERB VBP _ 17 advcl _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 not _ ADV RB _ 3 neg _ _ 3 much _ ADJ JJ _ 4 amod _ _ 4 money _ NOUN NN _ 6 nsubjpass _ _ 5 was _ AUX VBD _ 6 auxpass _ _ 6 spent _ VERB VBN _ 0 root _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 shows _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 either _ ADV RB _ 6 advmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 a _ DET DT _ 14 det _ _ 14 situation _ NOUN NN _ 6 nmod:npmod _ _ 15 that _ PRON WDT _ 16 nsubj _ _ 16 encouraged _ VERB VBD _ 14 acl:relcl _ _ 17 cheap-to-make _ ADJ JJ _ 18 amod _ _ 18 talk _ NOUN NN _ 16 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 game _ NOUN NN _ 21 compound _ _ 21 shows _ NOUN NNS _ 18 conj _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 while _ SCONJ IN _ 24 mark _ _ 24 discouraging _ VERB VBG _ 16 advcl _ _ 25 expensive-to-produce _ ADJ JJ _ 26 amod _ _ 26 dramas _ NOUN NN _ 24 dobj _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 Now _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 however _ ADV RB _ 8 advmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 commercial _ ADJ JJ _ 6 amod _ _ 6 channels _ NOUN NNS _ 8 nsubj _ _ 7 are _ AUX VBP _ 8 aux _ _ 8 coming _ VERB VBG _ 0 root _ _ 9 to _ ADP TO _ 12 case _ _ 10 most _ ADJ JJS _ 12 amod _ _ 11 European _ ADJ JJ _ 12 amod _ _ 12 countries _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 and _ CONJ CC _ 8 cc _ _ 15 at _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 same _ ADJ JJ _ 18 amod _ _ 18 time _ NOUN NN _ 25 nmod _ _ 19 , _ PUNCT , _ 25 punct _ _ 20 satellite _ NOUN NN _ 23 compound _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 cable _ NOUN NN _ 20 conj _ _ 23 technology _ NOUN NN _ 25 nsubj _ _ 24 is _ AUX VBZ _ 25 aux _ _ 25 spreading _ VERB VBG _ 8 conj _ _ 26 rapidly _ ADV RB _ 25 advmod _ _ 27 . _ PUNCT . _ 8 punct _ _ 1 Just _ ADV RB _ 3 advmod _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 week _ NOUN NN _ 6 nmod:tmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Greece _ PROPN NNP _ 6 nsubj _ _ 6 authorized _ VERB VBD _ 0 root _ _ 7 two _ NUM CD _ 9 nummod _ _ 8 commercial _ ADJ JJ _ 9 amod _ _ 9 channels _ NOUN NNS _ 6 dobj _ _ 10 for _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 first _ ADJ JJ _ 13 amod _ _ 13 time _ NOUN NN _ 6 nmod _ _ 14 ; _ PUNCT : _ 6 punct _ _ 15 Spain _ PROPN NNP _ 17 nsubj _ _ 16 earlier _ ADV RBR _ 17 advmod _ _ 17 began _ VERB VBD _ 6 parataxis _ _ 18 to _ PART TO _ 19 mark _ _ 19 allow _ VERB VB _ 17 xcomp _ _ 20 commercial _ ADJ JJ _ 21 amod _ _ 21 television _ NOUN NN _ 19 dobj _ _ 22 alongside _ ADP IN _ 25 case _ _ 23 its _ PRON PRP$ _ 25 nmod:poss _ _ 24 state _ NOUN NN _ 25 compound _ _ 25 channels _ NOUN NNS _ 19 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 result _ NOUN NN _ 8 nsubj _ _ 3 is _ VERB VBZ _ 8 cop _ _ 4 a _ DET DT _ 8 det _ _ 5 new _ ADJ JJ _ 8 amod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 huge _ ADJ JJ _ 5 conj _ _ 8 appetite _ NOUN NN _ 0 root _ _ 9 for _ ADP IN _ 10 case _ _ 10 programming _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 perhaps _ ADV RB _ 5 advmod _ _ 3 to _ ADP TO _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 consternation _ NOUN NN _ 17 nmod _ _ 6 of _ ADP IN _ 7 case _ _ 7 those _ PRON DT _ 5 nmod _ _ 8 calling _ VERB VBG _ 7 acl _ _ 9 for _ ADP IN _ 10 case _ _ 10 quotas _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 17 punct _ _ 12 most _ ADJ JJS _ 17 nsubj _ _ 13 of _ ADP IN _ 15 case _ _ 14 this _ DET DT _ 15 det _ _ 15 void _ NOUN NN _ 12 nmod _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 likely _ ADJ JJ _ 0 root _ _ 18 to _ PART TO _ 20 mark _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 filled _ VERB VBN _ 17 xcomp _ _ 21 with _ ADP IN _ 27 case _ _ 22 the _ DET DT _ 27 det _ _ 23 cheapest _ ADJ JJS _ 27 amod _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 most _ ADV RBS _ 26 advmod _ _ 26 plentiful _ ADJ JJ _ 23 conj _ _ 27 programming _ NOUN NN _ 20 nmod _ _ 28 now _ ADV RB _ 29 advmod _ _ 29 available _ ADJ JJ _ 27 amod _ _ 30 -- _ PUNCT : _ 27 punct _ _ 31 reruns _ NOUN NNS _ 27 dep _ _ 32 -- _ PUNCT : _ 31 punct _ _ 33 usually _ ADV RB _ 35 advmod _ _ 34 of _ ADP IN _ 35 case _ _ 35 shows _ NOUN NNS _ 31 nmod _ _ 36 made _ VERB VBN _ 35 acl _ _ 37 in _ ADP IN _ 39 case _ _ 38 the _ DET DT _ 39 det _ _ 39 U.S. _ PROPN NNP _ 36 nmod _ _ 40 . _ PUNCT . _ 17 punct _ _ 1 Sky _ PROPN NNP _ 2 compound _ _ 2 Channel _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 6 det _ _ 5 British-based _ ADJ JJ _ 6 amod _ _ 6 venture _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 12 case _ _ 8 Australian-American _ ADJ JJ _ 12 amod _ _ 9 press _ NOUN NN _ 12 compound _ _ 10 tycoon _ NOUN NN _ 12 compound _ _ 11 Rupert _ PROPN NNP _ 12 compound _ _ 12 Murdoch _ PROPN NNP _ 6 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 offers _ VERB VBZ _ 0 root _ _ 15 what _ PRON WP _ 21 nsubj _ _ 16 must _ AUX MD _ 21 aux _ _ 17 be _ VERB VB _ 21 cop _ _ 18 a _ DET DT _ 21 det _ _ 19 baffling _ ADJ JJ _ 21 amod _ _ 20 cultural _ ADJ JJ _ 21 amod _ _ 21 mix _ NOUN NN _ 14 ccomp _ _ 22 to _ ADP TO _ 23 case _ _ 23 most _ ADJ JJS _ 21 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 its _ PRON PRP$ _ 26 nmod:poss _ _ 26 audience _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 financially _ ADV RB _ 3 advmod _ _ 3 struggling _ VERB VBG _ 4 amod _ _ 4 station _ NOUN NN _ 5 nsubj _ _ 5 offers _ VERB VBZ _ 0 root _ _ 6 programs _ NOUN NNS _ 5 dobj _ _ 7 obviously _ ADV RB _ 8 advmod _ _ 8 made _ VERB VBN _ 6 acl _ _ 9 available _ ADJ JJ _ 8 xcomp _ _ 10 cheaply _ ADV RB _ 8 advmod _ _ 11 from _ ADP IN _ 16 case _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 boss _ NOUN NN _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 ventures _ NOUN NNS _ 6 nmod _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 a _ DET DT _ 5 det _ _ 3 Madrid _ PROPN NNP _ 5 compound _ _ 4 hotel _ NOUN NN _ 5 compound _ _ 5 room _ NOUN NN _ 10 nmod _ _ 6 recently _ ADV RB _ 10 advmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 viewer _ NOUN NN _ 10 nsubj _ _ 10 caught _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 end _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 17 det _ _ 15 badly _ ADV RB _ 16 advmod _ _ 16 acted _ VERB VBN _ 17 amod _ _ 17 series _ NOUN NN _ 12 nmod _ _ 18 about _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 fishing _ NOUN NN _ 21 compound _ _ 21 boat _ NOUN NN _ 17 nmod _ _ 22 on _ ADP IN _ 27 case _ _ 23 Australia _ PROPN NNP _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 Great _ PROPN NNP _ 27 compound _ _ 26 Barrier _ PROPN NNP _ 27 compound _ _ 27 Reef _ PROPN NNP _ 21 nmod _ _ 28 , _ PUNCT , _ 10 punct _ _ 29 only _ ADV RB _ 32 advmod _ _ 30 to _ PART TO _ 32 mark _ _ 31 be _ AUX VB _ 32 auxpass _ _ 32 urged _ VERB VBN _ 10 advcl _ _ 33 by _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 British _ ADJ JJ _ 36 amod _ _ 36 announcer _ NOUN NN _ 32 nmod _ _ 37 to _ PART TO _ 39 mark _ _ 38 `` _ PUNCT `` _ 39 punct _ _ 39 stay _ VERB VB _ 32 xcomp _ _ 40 tuned _ VERB VBN _ 39 dep _ _ 41 for _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 further _ ADJ JJ _ 44 amod _ _ 44 adventures _ NOUN NNS _ 39 nmod _ _ 45 of _ ADP IN _ 48 case _ _ 46 Skippy _ PROPN NNP _ 48 compound _ _ 47 the _ DET DT _ 48 det _ _ 48 Kangaroo _ PROPN NNP _ 44 nmod _ _ 49 . _ PUNCT . _ 10 punct _ _ 50 '' _ PUNCT '' _ 10 punct _ _ 1 Lisa _ PROPN NNP _ 2 compound _ _ 2 Grishaw-Mueller _ PROPN NNP _ 20 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 Bonn _ PROPN NNP _ 2 nmod _ _ 5 , _ PUNCT , _ 2 punct _ _ 6 Laura _ PROPN NNP _ 7 compound _ _ 7 Colby _ PROPN NNP _ 2 conj _ _ 8 in _ ADP IN _ 9 case _ _ 9 Milan _ PROPN NNP _ 7 nmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 Tim _ PROPN NNP _ 12 compound _ _ 12 Carrington _ PROPN NNP _ 2 conj _ _ 13 in _ ADP IN _ 14 case _ _ 14 London _ PROPN NNP _ 12 nmod _ _ 15 and _ CONJ CC _ 2 cc _ _ 16 Carlta _ PROPN NNP _ 17 compound _ _ 17 Vitzhum _ PROPN NNP _ 2 conj _ _ 18 in _ ADP IN _ 19 case _ _ 19 Madrid _ PROPN NNP _ 17 nmod _ _ 20 contributed _ VERB VBD _ 0 root _ _ 21 to _ ADP TO _ 23 case _ _ 22 this _ DET DT _ 23 det _ _ 23 article _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 20 punct _ _ 1 British _ PROPN NNP _ 3 compound _ _ 2 Aerospace _ PROPN NNP _ 3 compound _ _ 3 PLC _ PROPN NNP _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 France _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 Thomson-CSF _ PROPN NNP _ 8 compound _ _ 8 S.A. _ PROPN NNP _ 3 conj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 they _ PRON PRP _ 12 nsubj _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 nearing _ VERB VBG _ 9 ccomp _ _ 13 an _ DET DT _ 14 det _ _ 14 agreement _ NOUN NN _ 12 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 merge _ VERB VB _ 14 acl _ _ 17 their _ PRON PRP$ _ 19 nmod:poss _ _ 18 guided-missile _ NOUN NN _ 19 compound _ _ 19 divisions _ NOUN NNS _ 16 dobj _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 greatly _ ADV RB _ 22 advmod _ _ 22 expanding _ VERB VBG _ 12 advcl _ _ 23 collaboration _ NOUN NN _ 22 dobj _ _ 24 between _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 two _ NUM CD _ 28 nummod _ _ 27 defense _ NOUN NN _ 28 compound _ _ 28 contractors _ NOUN NNS _ 23 nmod _ _ 29 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 50-50 _ ADJ JJ _ 4 amod _ _ 3 joint _ ADJ JJ _ 4 amod _ _ 4 venture _ NOUN NN _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 9 nsubjpass _ _ 7 may _ AUX MD _ 9 aux _ _ 8 be _ AUX VB _ 9 auxpass _ _ 9 dubbed _ VERB VBN _ 4 acl:relcl _ _ 10 Eurodynamics _ PROPN NNPS _ 9 xcomp _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 would _ AUX MD _ 13 aux _ _ 13 have _ VERB VB _ 0 root _ _ 14 combined _ ADJ JJ _ 16 amod _ _ 15 annual _ ADJ JJ _ 16 amod _ _ 16 sales _ NOUN NNS _ 13 dobj _ _ 17 of _ ADP IN _ 22 case _ _ 18 at _ ADP IN _ 19 case _ _ 19 least _ ADJ JJS _ 22 nmod:npmod _ _ 20 # _ SYM # _ 22 compound _ _ 21 1.4 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 16 nmod _ _ 23 -LRB- _ PUNCT -LRB- _ 24 punct _ _ 24 $ _ SYM $ _ 22 dep _ _ 25 2.17 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 -RRB- _ PUNCT -RRB- _ 24 punct _ _ 28 and _ CONJ CC _ 13 cc _ _ 29 would _ AUX MD _ 37 aux _ _ 30 be _ VERB VB _ 37 cop _ _ 31 among _ ADP IN _ 37 case _ _ 32 the _ DET DT _ 33 det _ _ 33 world _ NOUN NN _ 37 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 largest _ ADJ JJS _ 37 amod _ _ 36 missile _ NOUN NN _ 37 compound _ _ 37 makers _ NOUN NNS _ 13 conj _ _ 38 . _ PUNCT . _ 13 punct _ _ 1 After _ ADP IN _ 3 case _ _ 2 two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 13 nmod _ _ 4 of _ ADP IN _ 5 case _ _ 5 talks _ NOUN NNS _ 3 nmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 plans _ NOUN NNS _ 13 nsubj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 venture _ NOUN NN _ 7 nmod _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 sufficiently _ ADV RB _ 13 advmod _ _ 13 advanced _ ADJ JJ _ 0 root _ _ 14 for _ SCONJ IN _ 18 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 companies _ NOUN NNS _ 18 nsubj _ _ 17 to _ PART TO _ 18 mark _ _ 18 seek _ VERB VB _ 13 ccomp _ _ 19 French _ ADJ JJ _ 23 amod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 British _ ADJ JJ _ 19 conj _ _ 22 government _ NOUN NN _ 23 compound _ _ 23 clearance _ NOUN NN _ 18 dobj _ _ 24 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 companies _ NOUN NNS _ 3 nsubj _ _ 3 hope _ VERB VBP _ 0 root _ _ 4 for _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 final _ ADJ JJ _ 7 amod _ _ 7 agreement _ NOUN NN _ 3 nmod _ _ 8 by _ ADP IN _ 9 case _ _ 9 year-end _ NOUN NN _ 7 nmod _ _ 10 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 venture _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 strengthen _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 8 det _ _ 6 rapidly _ ADV RB _ 7 advmod _ _ 7 growing _ VERB VBG _ 8 amod _ _ 8 ties _ NOUN NNS _ 4 dobj _ _ 9 between _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 companies _ NOUN NNS _ 8 nmod _ _ 13 , _ PUNCT , _ 4 punct _ _ 14 and _ CONJ CC _ 4 cc _ _ 15 help _ VERB VB _ 4 conj _ _ 16 make _ VERB VB _ 15 xcomp _ _ 17 them _ PRON PRP _ 20 nsubj _ _ 18 a _ DET DT _ 20 det _ _ 19 leading _ ADJ JJ _ 20 amod _ _ 20 force _ NOUN NN _ 16 xcomp _ _ 21 in _ ADP IN _ 24 case _ _ 22 European _ ADJ JJ _ 24 amod _ _ 23 defense _ NOUN NN _ 24 compound _ _ 24 contracting _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 months _ NOUN NNS _ 14 nmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 string _ NOUN NN _ 14 nsubj _ _ 7 of _ ADP IN _ 9 case _ _ 8 cross-border _ ADJ JJ _ 9 amod _ _ 9 mergers _ NOUN NNS _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 joint _ ADJ JJ _ 12 amod _ _ 12 ventures _ NOUN NNS _ 9 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 reshaped _ VERB VBN _ 0 root _ _ 15 the _ DET DT _ 17 det _ _ 16 once-balkanized _ ADJ JJ _ 17 amod _ _ 17 world _ NOUN NN _ 14 dobj _ _ 18 of _ ADP IN _ 21 case _ _ 19 European _ ADJ JJ _ 21 amod _ _ 20 arms _ NOUN NNS _ 21 compound _ _ 21 manufacture _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 Already _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 British _ PROPN NNP _ 4 compound _ _ 4 Aerospace _ PROPN NNP _ 9 nsubj _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 French _ ADJ JJ _ 7 amod _ _ 7 government-controlled _ ADJ JJ _ 8 amod _ _ 8 Thomson-CSF _ PROPN NNP _ 4 conj _ _ 9 collaborate _ VERB VBP _ 0 root _ _ 10 on _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 British _ ADJ JJ _ 14 amod _ _ 13 missile _ NOUN NN _ 14 compound _ _ 14 contract _ NOUN NN _ 9 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 on _ ADP IN _ 21 case _ _ 17 an _ DET DT _ 21 det _ _ 18 air-traffic _ NOUN NN _ 21 compound _ _ 19 control _ NOUN NN _ 21 compound _ _ 20 radar _ NOUN NN _ 21 compound _ _ 21 system _ NOUN NN _ 14 conj _ _ 22 . _ PUNCT . _ 9 punct _ _ 1 Just _ ADV RB _ 3 advmod _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 week _ NOUN NN _ 5 nmod:tmod _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 announced _ VERB VBD _ 0 root _ _ 6 they _ PRON PRP _ 8 nsubj _ _ 7 may _ AUX MD _ 8 aux _ _ 8 make _ VERB VB _ 5 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 joint _ ADJ JJ _ 11 amod _ _ 11 bid _ NOUN NN _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 acl _ _ 14 Ferranti _ PROPN NNP _ 17 compound _ _ 15 International _ PROPN NNP _ 17 compound _ _ 16 Signal _ PROPN NNP _ 17 compound _ _ 17 PLC _ PROPN NNP _ 13 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 a _ DET DT _ 23 det _ _ 20 smaller _ ADJ JJR _ 23 amod _ _ 21 British _ ADJ JJ _ 23 amod _ _ 22 defense _ NOUN NN _ 23 compound _ _ 23 contractor _ NOUN NN _ 17 appos _ _ 24 rocked _ VERB VBN _ 23 acl _ _ 25 by _ ADP IN _ 28 case _ _ 26 alleged _ ADJ JJ _ 28 amod _ _ 27 accounting _ NOUN NN _ 28 compound _ _ 28 fraud _ NOUN NN _ 24 nmod _ _ 29 at _ ADP IN _ 32 case _ _ 30 a _ DET DT _ 32 det _ _ 31 U.S. _ PROPN NNP _ 32 compound _ _ 32 unit _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 sudden _ ADJ JJ _ 3 amod _ _ 3 romance _ NOUN NN _ 23 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 British _ PROPN NNP _ 6 compound _ _ 6 Aerospace _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Thomson-CSF _ PROPN NNP _ 6 conj _ _ 9 -- _ PUNCT : _ 6 punct _ _ 10 traditionally _ ADV RB _ 6 advmod _ _ 11 bitter _ ADJ JJ _ 12 amod _ _ 12 competitors _ NOUN NNS _ 6 dep _ _ 13 for _ ADP IN _ 15 case _ _ 14 Middle _ PROPN NNP _ 15 compound _ _ 15 East _ PROPN NNP _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Third _ PROPN NNP _ 20 compound _ _ 18 World _ PROPN NNP _ 20 compound _ _ 19 weapons _ NOUN NNS _ 20 compound _ _ 20 contracts _ NOUN NNS _ 15 conj _ _ 21 -- _ PUNCT : _ 6 punct _ _ 22 is _ AUX VBZ _ 23 aux _ _ 23 stirring _ VERB VBG _ 0 root _ _ 24 controversy _ NOUN NN _ 23 dobj _ _ 25 in _ ADP IN _ 30 case _ _ 26 Western _ PROPN NNP _ 27 compound _ _ 27 Europe _ PROPN NNP _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 defense _ NOUN NN _ 30 compound _ _ 30 industry _ NOUN NN _ 23 nmod _ _ 31 . _ PUNCT . _ 23 punct _ _ 1 Most _ ADV RBS _ 2 advmod _ _ 2 threatened _ VERB VBN _ 0 root _ _ 3 by _ ADP IN _ 7 case _ _ 4 closer _ ADJ JJR _ 7 amod _ _ 5 British _ PROPN NNP _ 7 compound _ _ 6 Aerospace-Thomson _ PROPN NNP _ 7 compound _ _ 7 ties _ NOUN NNS _ 2 nmod _ _ 8 would _ AUX MD _ 9 aux _ _ 9 be _ AUX VB _ 2 auxpass _ _ 10 their _ PRON PRP$ _ 13 nmod:poss _ _ 11 respective _ ADJ JJ _ 13 amod _ _ 12 national _ ADJ JJ _ 13 amod _ _ 13 rivals _ NOUN NNS _ 2 nsubjpass _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 including _ VERB VBG _ 17 case _ _ 16 Matra _ PROPN NNP _ 17 compound _ _ 17 S.A. _ PROPN NNP _ 13 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 France _ PROPN NNP _ 17 nmod _ _ 20 and _ CONJ CC _ 17 cc _ _ 21 Britain _ PROPN NNP _ 26 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 General _ PROPN NNP _ 26 compound _ _ 24 Electric _ PROPN NNP _ 26 compound _ _ 25 Co. _ PROPN NNP _ 26 compound _ _ 26 PLC _ PROPN NNP _ 17 conj _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 neither _ CONJ CC _ 3 cc:preconj _ _ 3 Matra _ PROPN NNP _ 17 nsubj _ _ 4 nor _ CONJ CC _ 3 cc _ _ 5 GEC _ PROPN NNP _ 3 conj _ _ 6 -- _ PUNCT : _ 7 punct _ _ 7 unrelated _ ADJ JJ _ 5 dep _ _ 8 to _ ADP TO _ 14 case _ _ 9 Stamford _ PROPN NNP _ 11 amod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 Conn.-based _ ADJ JJ _ 14 amod _ _ 12 General _ PROPN NNP _ 14 compound _ _ 13 Electric _ PROPN NNP _ 14 compound _ _ 14 Co. _ PROPN NNP _ 7 nmod _ _ 15 -- _ PUNCT : _ 7 punct _ _ 16 are _ AUX VBP _ 17 aux _ _ 17 sitting _ VERB VBG _ 0 root _ _ 18 quietly _ ADV RB _ 17 advmod _ _ 19 by _ ADV RB _ 17 advmod _ _ 20 as _ ADV RB _ 23 advmod _ _ 21 their _ PRON PRP$ _ 22 nmod:poss _ _ 22 competitors _ NOUN NNS _ 23 nsubj _ _ 23 join _ VERB VBP _ 17 ccomp _ _ 24 forces _ NOUN NNS _ 23 dobj _ _ 25 . _ PUNCT . _ 17 punct _ _ 1 Yesterday _ NOUN NN _ 8 nmod:tmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 a _ DET DT _ 4 det _ _ 4 source _ NOUN NN _ 8 nsubj _ _ 5 close _ ADV RB _ 4 amod _ _ 6 to _ ADP TO _ 7 case _ _ 7 GEC _ PROPN NNP _ 5 nmod _ _ 8 confirmed _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 his _ PRON PRP$ _ 11 nmod:poss _ _ 11 company _ NOUN NN _ 13 nsubj _ _ 12 may _ AUX MD _ 13 aux _ _ 13 join _ VERB VB _ 8 ccomp _ _ 14 the _ DET DT _ 16 det _ _ 15 Ferranti _ PROPN NNP _ 16 compound _ _ 16 fight _ NOUN NN _ 13 dobj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 as _ ADP IN _ 19 case _ _ 19 part _ NOUN NN _ 13 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 possible _ ADJ JJ _ 23 amod _ _ 23 consortium _ NOUN NN _ 19 nmod _ _ 24 that _ PRON WDT _ 26 nsubj _ _ 25 would _ AUX MD _ 26 aux _ _ 26 bid _ VERB VB _ 23 acl:relcl _ _ 27 against _ ADP IN _ 29 case _ _ 28 British _ PROPN NNP _ 29 compound _ _ 29 Aerospace _ PROPN NNP _ 26 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 Thomson-CSF _ PROPN NNP _ 29 conj _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 Companies _ NOUN NNS _ 14 nsubj _ _ 2 with _ ADP IN _ 3 case _ _ 3 which _ PRON WDT _ 6 nmod _ _ 4 GEC _ PROPN NNP _ 6 nsubj _ _ 5 has _ AUX VBZ _ 6 aux _ _ 6 had _ VERB VBD _ 1 acl:relcl _ _ 7 talks _ NOUN NNS _ 6 dobj _ _ 8 about _ ADP IN _ 13 case _ _ 9 a _ DET DT _ 13 det _ _ 10 possible _ ADJ JJ _ 13 amod _ _ 11 joint _ ADJ JJ _ 13 amod _ _ 12 Ferranti _ PROPN NNP _ 13 compound _ _ 13 bid _ NOUN NN _ 7 nmod _ _ 14 include _ VERB VBP _ 0 root _ _ 15 Matra _ PROPN NNP _ 14 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Britain _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Dowty _ PROPN NNP _ 21 compound _ _ 20 Group _ PROPN NNP _ 21 compound _ _ 21 PLC _ PROPN NNP _ 15 conj _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 West _ PROPN NNP _ 24 compound _ _ 24 Germany _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 Daimler-Benz _ PROPN NNP _ 27 compound _ _ 27 AG _ PROPN NNP _ 15 conj _ _ 28 , _ PUNCT , _ 15 punct _ _ 29 and _ CONJ CC _ 15 cc _ _ 30 France _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 Dassault _ PROPN NNP _ 33 compound _ _ 33 group _ NOUN NN _ 15 conj _ _ 34 . _ PUNCT . _ 14 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 it _ PRON PRP _ 5 nsubj _ _ 3 may _ AUX MD _ 5 aux _ _ 4 be _ VERB VB _ 5 cop _ _ 5 weeks _ NOUN NNS _ 19 ccomp _ _ 6 before _ SCONJ IN _ 12 mark _ _ 7 GEC _ PROPN NNP _ 12 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 its _ PRON PRP$ _ 11 nmod:poss _ _ 10 potential _ ADJ JJ _ 11 amod _ _ 11 partners _ NOUN NNS _ 7 conj _ _ 12 decide _ VERB VBP _ 5 advcl _ _ 13 whether _ SCONJ IN _ 15 mark _ _ 14 to _ PART TO _ 15 mark _ _ 15 bid _ VERB VB _ 12 ccomp _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 the _ DET DT _ 18 det _ _ 18 source _ NOUN NN _ 19 nsubj _ _ 19 indicated _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 GEC _ PROPN NNP _ 2 nsubj _ _ 2 plans _ VERB VBZ _ 0 root _ _ 3 first _ ADV RB _ 2 advmod _ _ 4 to _ PART TO _ 5 mark _ _ 5 study _ VERB VB _ 2 xcomp _ _ 6 Ferranti _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 financial _ ADJ JJ _ 9 amod _ _ 9 accounts _ NOUN NNS _ 5 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 14 dobj _ _ 12 auditors _ NOUN NNS _ 14 nsubj _ _ 13 recently _ ADV RB _ 14 advmod _ _ 14 said _ VERB VBD _ 9 acl:relcl _ _ 15 included _ VERB VBD _ 14 ccomp _ _ 16 # _ SYM # _ 18 compound _ _ 17 215 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 15 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 fictitious _ ADJ JJ _ 21 amod _ _ 21 contracts _ NOUN NNS _ 18 nmod _ _ 22 at _ ADP IN _ 25 case _ _ 23 a _ DET DT _ 25 det _ _ 24 U.S. _ PROPN NNP _ 25 compound _ _ 25 unit _ NOUN NN _ 21 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 International _ PROPN NNP _ 28 compound _ _ 28 Signal _ PROPN NNP _ 25 appos _ _ 29 & _ CONJ CC _ 28 cc _ _ 30 Control _ PROPN NNP _ 31 compound _ _ 31 Group _ PROPN NNP _ 28 conj _ _ 32 , _ PUNCT , _ 25 punct _ _ 33 with _ ADP IN _ 34 case _ _ 34 which _ PRON WDT _ 36 nmod _ _ 35 Ferranti _ PROPN NNP _ 36 nsubj _ _ 36 merged _ VERB VBD _ 25 acl:relcl _ _ 37 last _ ADJ JJ _ 38 amod _ _ 38 year _ NOUN NN _ 36 nmod:tmod _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 8 advmod _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 any _ DET DT _ 5 det _ _ 4 GEC _ PROPN NNP _ 5 compound _ _ 5 bid _ NOUN NN _ 8 nsubjpass _ _ 6 might _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 blocked _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 12 case _ _ 10 British _ ADJ JJ _ 12 amod _ _ 11 antitrust _ ADJ JJ _ 12 amod _ _ 12 regulators _ NOUN NNS _ 8 nmod _ _ 13 ; _ PUNCT : _ 8 punct _ _ 14 Ferranti _ PROPN NNP _ 19 nsubj _ _ 15 is _ VERB VBZ _ 19 cop _ _ 16 GEC _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 main _ ADJ JJ _ 19 amod _ _ 19 competitor _ NOUN NN _ 8 parataxis _ _ 20 on _ ADP IN _ 24 case _ _ 21 several _ ADJ JJ _ 24 amod _ _ 22 key _ ADJ JJ _ 24 amod _ _ 23 defense-electronics _ ADJ JJ _ 24 amod _ _ 24 contracts _ NOUN NNS _ 19 nmod _ _ 25 , _ PUNCT , _ 19 punct _ _ 26 and _ CONJ CC _ 19 cc _ _ 27 its _ PRON PRP$ _ 28 nmod:poss _ _ 28 purchase _ NOUN NN _ 32 nsubj _ _ 29 by _ ADP IN _ 30 case _ _ 30 GEC _ PROPN NNP _ 28 nmod _ _ 31 may _ AUX MD _ 32 aux _ _ 32 heighten _ VERB VB _ 19 conj _ _ 33 British _ PROPN NNP _ 35 compound _ _ 34 Defense _ PROPN NNP _ 35 compound _ _ 35 Ministry _ PROPN NNP _ 36 compound _ _ 36 worries _ NOUN NNS _ 32 dobj _ _ 37 about _ ADP IN _ 38 case _ _ 38 concentration _ NOUN NN _ 36 nmod _ _ 39 in _ ADP IN _ 44 case _ _ 40 the _ DET DT _ 41 det _ _ 41 country _ NOUN NN _ 44 nmod:poss _ _ 42 's _ PART POS _ 41 case _ _ 43 defense _ NOUN NN _ 44 compound _ _ 44 industry _ NOUN NN _ 38 nmod _ _ 45 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 consortium _ NOUN NN _ 3 compound _ _ 3 bid _ NOUN NN _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 however _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 would _ AUX MD _ 8 aux _ _ 8 diminish _ VERB VB _ 0 root _ _ 9 GEC _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 direct _ ADJ JJ _ 12 amod _ _ 12 role _ NOUN NN _ 8 dobj _ _ 13 in _ ADP IN _ 14 case _ _ 14 Ferranti _ PROPN NNP _ 12 nmod _ _ 15 and _ CONJ CC _ 8 cc _ _ 16 might _ AUX MD _ 18 aux _ _ 17 consequently _ ADV RB _ 18 advmod _ _ 18 appease _ VERB VB _ 8 conj _ _ 19 ministry _ NOUN NN _ 20 compound _ _ 20 officials _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 A _ DET DT _ 4 det _ _ 2 British _ PROPN NNP _ 4 compound _ _ 3 Aerospace _ PROPN NNP _ 4 compound _ _ 4 spokeswoman _ NOUN NN _ 5 nsubj _ _ 5 appeared _ VERB VBD _ 0 root _ _ 6 unperturbed _ ADJ JJ _ 5 xcomp _ _ 7 by _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 prospect _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 fight _ NOUN NN _ 9 nmod _ _ 13 with _ ADP IN _ 14 case _ _ 14 GEC _ PROPN NNP _ 12 nmod _ _ 15 for _ ADP IN _ 16 case _ _ 16 Ferranti _ PROPN NNP _ 12 nmod _ _ 17 : _ PUNCT : _ 5 punct _ _ 18 `` _ PUNCT `` _ 29 punct _ _ 19 Competition _ NOUN NN _ 22 nsubj _ _ 20 is _ VERB VBZ _ 22 cop _ _ 21 the _ DET DT _ 22 det _ _ 22 name _ NOUN NN _ 29 ccomp _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 game _ NOUN NN _ 22 nmod _ _ 26 , _ PUNCT , _ 29 punct _ _ 27 '' _ PUNCT '' _ 29 punct _ _ 28 she _ PRON PRP _ 29 nsubj _ _ 29 said _ VERB VBD _ 5 parataxis _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 least _ ADJ JJS _ 3 nmod:npmod _ _ 3 one _ NUM CD _ 6 nummod _ _ 4 potential _ ADJ JJ _ 6 amod _ _ 5 GEC _ PROPN NNP _ 6 compound _ _ 6 partner _ NOUN NN _ 10 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Matra _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 insists _ VERB VBZ _ 0 root _ _ 11 it _ PRON PRP _ 14 nsubj _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 n't _ PART RB _ 14 neg _ _ 14 interested _ ADJ JJ _ 10 ccomp _ _ 15 in _ ADP IN _ 16 case _ _ 16 Ferranti _ PROPN NNP _ 14 nmod _ _ 17 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 21 ccomp _ _ 4 nothing _ NOUN NN _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 say _ VERB VB _ 4 acl _ _ 7 about _ ADP IN _ 9 case _ _ 8 this _ DET DT _ 9 det _ _ 9 affair _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 which _ PRON WDT _ 14 nsubj _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 concern _ VERB VB _ 9 acl:relcl _ _ 15 us _ PRON PRP _ 14 dobj _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 '' _ PUNCT '' _ 21 punct _ _ 18 a _ DET DT _ 20 det _ _ 19 Matra _ PROPN NNP _ 20 compound _ _ 20 official _ NOUN NN _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Sunday _ PROPN NNP _ 21 nmod:tmod _ _ 23 . _ PUNCT . _ 21 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 missile _ NOUN NN _ 3 compound _ _ 3 venture _ NOUN NN _ 14 nsubj _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 British _ PROPN NNP _ 8 compound _ _ 7 Aerospace _ PROPN NNP _ 8 compound _ _ 8 spokeswoman _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 14 parataxis _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 is _ VERB VBZ _ 14 cop _ _ 12 a _ DET DT _ 14 det _ _ 13 needed _ ADJ JJ _ 14 amod _ _ 14 response _ NOUN NN _ 0 root _ _ 15 to _ ADP TO _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 new _ ADJ JJ _ 19 amod _ _ 19 environment _ NOUN NN _ 14 nmod _ _ 20 '' _ PUNCT '' _ 19 punct _ _ 21 in _ ADP IN _ 23 case _ _ 22 defense _ NOUN NN _ 23 compound _ _ 23 contracting _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 both _ DET DT _ 3 cc:preconj _ _ 3 Thomson _ PROPN NNP _ 14 nmod _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 British _ PROPN NNP _ 6 compound _ _ 6 Aerospace _ PROPN NNP _ 3 conj _ _ 7 , _ PUNCT , _ 14 punct _ _ 8 earnings _ NOUN NNS _ 14 nsubj _ _ 9 in _ ADP IN _ 12 case _ _ 10 their _ PRON PRP$ _ 12 nmod:poss _ _ 11 home _ NOUN NN _ 12 compound _ _ 12 markets _ NOUN NNS _ 8 nmod _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 come _ VERB VBN _ 0 root _ _ 15 under _ ADP IN _ 16 case _ _ 16 pressure _ NOUN NN _ 14 nmod _ _ 17 from _ ADP IN _ 21 case _ _ 18 increasingly _ ADV RB _ 19 advmod _ _ 19 tight-fisted _ ADJ JJ _ 21 amod _ _ 20 defense _ NOUN NN _ 21 compound _ _ 21 ministries _ NOUN NNS _ 16 nmod _ _ 22 ; _ PUNCT : _ 14 punct _ _ 23 and _ CONJ CC _ 14 cc _ _ 24 Middle _ PROPN NNP _ 26 compound _ _ 25 East _ PROPN NNP _ 26 compound _ _ 26 sales _ NOUN NNS _ 39 nsubjpass _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 traditional _ ADJ JJ _ 30 amod _ _ 30 mainstay _ NOUN NN _ 26 appos _ _ 31 for _ ADP IN _ 35 case _ _ 32 both _ DET DT _ 33 det _ _ 33 companies _ NOUN NNS _ 35 nmod:poss _ _ 34 ' _ PART POS _ 33 case _ _ 35 exports _ NOUN NNS _ 30 nmod _ _ 36 , _ PUNCT , _ 26 punct _ _ 37 have _ AUX VBP _ 39 aux _ _ 38 been _ AUX VBN _ 39 auxpass _ _ 39 hurt _ VERB VBN _ 14 conj _ _ 40 by _ ADP IN _ 42 case _ _ 41 five _ NUM CD _ 42 nummod _ _ 42 years _ NOUN NNS _ 39 nmod _ _ 43 of _ ADP IN _ 46 case _ _ 44 weak _ ADJ JJ _ 46 amod _ _ 45 oil _ NOUN NN _ 46 compound _ _ 46 prices _ NOUN NNS _ 42 nmod _ _ 47 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 venture _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 importance _ NOUN NN _ 8 nsubj _ _ 5 for _ ADP IN _ 6 case _ _ 6 Thomson _ PROPN NNP _ 4 nmod _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 great _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 Thomson _ PROPN NNP _ 2 nsubj _ _ 2 feels _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 future _ NOUN NN _ 9 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 defense _ NOUN NN _ 8 compound _ _ 8 business _ NOUN NN _ 4 nmod _ _ 9 depends _ VERB VBZ _ 2 ccomp _ _ 10 on _ SCONJ IN _ 11 mark _ _ 11 building _ VERB VBG _ 9 advcl _ _ 12 cooperation _ NOUN NN _ 11 dobj _ _ 13 with _ ADP IN _ 15 case _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 Europeans _ PROPN NNPS _ 12 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 European _ ADJ JJ _ 4 amod _ _ 3 defense _ NOUN NN _ 4 compound _ _ 4 industry _ NOUN NN _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 consolidating _ VERB VBG _ 0 root _ _ 7 ; _ PUNCT : _ 6 punct _ _ 8 for _ ADP IN _ 9 case _ _ 9 instance _ NOUN NN _ 17 nmod _ _ 10 , _ PUNCT , _ 17 punct _ _ 11 West _ PROPN NNP _ 12 compound _ _ 12 Germany _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 Siemens _ PROPN NNP _ 15 compound _ _ 15 AG _ PROPN NNP _ 17 nsubj _ _ 16 recently _ ADV RB _ 17 advmod _ _ 17 joined _ VERB VBD _ 6 parataxis _ _ 18 GEC _ PROPN NNP _ 17 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 takeover _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 26 case _ _ 23 Britain _ PROPN NNP _ 26 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 Plessey _ PROPN NNP _ 26 compound _ _ 26 Co. _ PROPN NNP _ 21 nmod _ _ 27 , _ PUNCT , _ 17 punct _ _ 28 and _ CONJ CC _ 17 cc _ _ 29 Daimler-Benz _ PROPN NNP _ 30 nsubj _ _ 30 agreed _ VERB VBD _ 17 conj _ _ 31 to _ PART TO _ 32 mark _ _ 32 buy _ VERB VB _ 30 xcomp _ _ 33 Messerschmitt-Boelkow _ PROPN NNP _ 37 compound _ _ 34 Blohm _ PROPN NNP _ 37 compound _ _ 35 G.m.b _ PROPN NNP _ 37 compound _ _ 36 . _ PUNCT . _ 37 punct _ _ 37 H _ PROPN NNP _ 32 dobj _ _ 38 . _ PUNCT . _ 37 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 missiles _ NOUN NNS _ 7 nmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 Thomson _ PROPN NNP _ 7 nsubjpass _ _ 5 is _ AUX VBZ _ 7 auxpass _ _ 6 already _ ADV RB _ 7 advmod _ _ 7 overshadowed _ VERB VBN _ 0 root _ _ 8 by _ ADP IN _ 10 case _ _ 9 British _ PROPN NNP _ 10 compound _ _ 10 Aerospace _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 by _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 home _ NOUN NN _ 15 compound _ _ 15 rival _ NOUN NN _ 10 conj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 France _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Aerospatiale _ PROPN NNP _ 20 compound _ _ 20 S.A. _ PROPN NNP _ 15 appos _ _ 21 ; _ PUNCT : _ 7 punct _ _ 22 to _ PART TO _ 24 mark _ _ 23 better _ ADV RBR _ 24 advmod _ _ 24 compete _ VERB VB _ 31 dep _ _ 25 , _ PUNCT , _ 28 punct _ _ 26 Thomson _ PROPN NNP _ 27 compound _ _ 27 officials _ NOUN NNS _ 28 nsubj _ _ 28 say _ VERB VBP _ 31 parataxis _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 they _ PRON PRP _ 31 nsubj _ _ 31 need _ VERB VBP _ 7 parataxis _ _ 32 a _ DET DT _ 33 det _ _ 33 partnership _ NOUN NN _ 31 dobj _ _ 34 . _ PUNCT . _ 7 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 justify _ VERB VB _ 12 advcl _ _ 3 50-50 _ ADJ JJ _ 4 amod _ _ 4 ownership _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 planned _ ADJ JJ _ 8 amod _ _ 8 venture _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 Thomson _ PROPN NNP _ 12 nsubj _ _ 11 would _ AUX MD _ 12 aux _ _ 12 make _ VERB VB _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 cash _ NOUN NN _ 15 compound _ _ 15 payment _ NOUN NN _ 12 dobj _ _ 16 to _ ADP TO _ 18 case _ _ 17 British _ PROPN NNP _ 18 compound _ _ 18 Aerospace _ PROPN NNP _ 12 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 Annual _ ADJ JJ _ 2 amod _ _ 2 revenue _ NOUN NN _ 13 nsubj _ _ 3 of _ ADP IN _ 8 case _ _ 4 British _ PROPN NNP _ 5 compound _ _ 5 Aerospace _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 missile _ NOUN NN _ 8 compound _ _ 8 business _ NOUN NN _ 2 nmod _ _ 9 is _ VERB VBZ _ 13 cop _ _ 10 about _ ADV RB _ 13 advmod _ _ 11 # _ SYM # _ 13 compound _ _ 12 950 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 18 ccomp _ _ 14 , _ PUNCT , _ 18 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 Thomson _ PROPN NNP _ 17 compound _ _ 17 spokesman _ NOUN NN _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 British _ PROPN NNP _ 2 compound _ _ 2 Aerospace _ PROPN NNP _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 chief _ ADJ JJ _ 6 amod _ _ 5 missile _ NOUN NN _ 6 compound _ _ 6 products _ NOUN NNS _ 7 nsubj _ _ 7 include _ VERB VBP _ 0 root _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 17-year-old _ ADJ JJ _ 10 amod _ _ 10 family _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 14 case _ _ 12 Rapier _ NOUN NN _ 14 compound _ _ 13 surface-to-air _ ADJ JJ _ 14 amod _ _ 14 missiles _ NOUN NNS _ 10 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 Thomson _ PROPN NNP _ 3 compound _ _ 2 missile _ NOUN NN _ 3 compound _ _ 3 products _ NOUN NNS _ 14 nsubj _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 with _ ADP IN _ 12 case _ _ 6 about _ ADV RB _ 7 advmod _ _ 7 half _ DET PDT _ 12 nummod _ _ 8 British _ PROPN NNP _ 9 compound _ _ 9 Aerospace _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 annual _ ADJ JJ _ 12 amod _ _ 12 revenue _ NOUN NN _ 14 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 include _ VERB VBP _ 0 root _ _ 15 the _ DET DT _ 19 det _ _ 16 Crotale _ ADJ JJ _ 19 amod _ _ 17 surface-to-air _ ADJ JJ _ 19 amod _ _ 18 missile _ NOUN NN _ 19 compound _ _ 19 family _ NOUN NN _ 14 dobj _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Interprovincial _ PROPN NNP _ 4 compound _ _ 2 Pipe _ PROPN NNP _ 4 compound _ _ 3 Line _ PROPN NNP _ 4 compound _ _ 4 Co. _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 8 nsubj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 delay _ VERB VB _ 5 ccomp _ _ 9 a _ DET DT _ 21 det _ _ 10 proposed _ VERB VBN _ 21 amod _ _ 11 two-step _ ADJ JJ _ 21 amod _ _ 12 , _ PUNCT , _ 21 punct _ _ 13 830 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 15 dep _ _ 15 Canadian-dollar _ ADJ JJ _ 21 dep _ _ 16 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 17 US$ _ SYM $ _ 21 dep _ _ 18 705.6 _ NUM CD _ 19 compound _ _ 19 million _ NUM CD _ 17 nummod _ _ 20 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 21 expansion _ NOUN NN _ 8 dobj _ _ 22 of _ ADP IN _ 24 case _ _ 23 its _ PRON PRP$ _ 24 nmod:poss _ _ 24 system _ NOUN NN _ 21 nmod _ _ 25 because _ SCONJ IN _ 33 mark _ _ 26 Canada _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 output _ NOUN NN _ 33 nsubj _ _ 29 of _ ADP IN _ 31 case _ _ 30 crude _ ADJ JJ _ 31 amod _ _ 31 oil _ NOUN NN _ 28 nmod _ _ 32 is _ AUX VBZ _ 33 aux _ _ 33 shrinking _ VERB VBG _ 8 advcl _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 Interprovincial _ PROPN NNP _ 19 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Canada _ PROPN NNP _ 8 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 biggest _ ADJ JJS _ 8 amod _ _ 6 oil _ NOUN NN _ 8 compound _ _ 7 pipeline _ NOUN NN _ 8 compound _ _ 8 operator _ NOUN NN _ 1 appos _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 a _ DET DT _ 12 det _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 transporter _ NOUN NN _ 8 conj _ _ 13 of _ ADP IN _ 14 case _ _ 14 crude _ NOUN NN _ 12 nmod _ _ 15 to _ ADP TO _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 U.S. _ PROPN NNP _ 12 nmod _ _ 18 , _ PUNCT , _ 1 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 revised _ VERB VBN _ 22 amod _ _ 21 industry _ NOUN NN _ 22 compound _ _ 22 forecasts _ NOUN NNS _ 23 nsubj _ _ 23 indicate _ VERB VBP _ 19 ccomp _ _ 24 that _ SCONJ IN _ 29 mark _ _ 25 Canadian _ ADJ JJ _ 27 amod _ _ 26 oil _ NOUN NN _ 27 compound _ _ 27 output _ NOUN NN _ 29 nsubj _ _ 28 will _ AUX MD _ 29 aux _ _ 29 total _ VERB VB _ 23 ccomp _ _ 30 about _ ADV RB _ 32 advmod _ _ 31 1.64 _ NUM CD _ 32 compound _ _ 32 million _ NUM CD _ 33 nummod _ _ 33 barrels _ NOUN NNS _ 29 dobj _ _ 34 a _ DET DT _ 35 det _ _ 35 day _ NOUN NN _ 33 nmod:npmod _ _ 36 by _ ADP IN _ 37 case _ _ 37 1991 _ NUM CD _ 29 nmod _ _ 38 , _ PUNCT , _ 29 punct _ _ 39 8 _ NUM CD _ 40 nummod _ _ 40 % _ SYM NN _ 41 nmod:npmod _ _ 41 lower _ ADJ JJR _ 29 xcomp _ _ 42 than _ ADP IN _ 45 case _ _ 43 a _ DET DT _ 45 det _ _ 44 previous _ ADJ JJ _ 45 amod _ _ 45 estimate _ NOUN NN _ 41 nmod _ _ 46 . _ PUNCT . _ 19 punct _ _ 1 Canadian _ ADJ JJ _ 3 amod _ _ 2 crude _ NOUN NN _ 3 compound _ _ 3 production _ NOUN NN _ 4 nsubj _ _ 4 averaged _ VERB VBD _ 0 root _ _ 5 about _ ADV RB _ 8 advmod _ _ 6 1.69 _ NUM CD _ 8 nummod _ _ 7 million _ NUM CD _ 8 nummod _ _ 8 barrels _ NOUN NNS _ 4 dobj _ _ 9 a _ DET DT _ 10 det _ _ 10 day _ NOUN NN _ 8 nmod:npmod _ _ 11 during _ ADP IN _ 15 case _ _ 12 1989 _ NUM CD _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 first _ ADJ JJ _ 15 amod _ _ 15 half _ NOUN NN _ 4 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 1 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 4 nmod _ _ 20 below _ ADP IN _ 19 case _ _ 21 the _ DET DT _ 23 det _ _ 22 1988 _ NUM CD _ 23 nummod _ _ 23 level _ NOUN NN _ 19 dep _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 capability _ NOUN NN _ 11 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 existing _ ADJ JJ _ 6 amod _ _ 6 fields _ NOUN NNS _ 3 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 deliver _ VERB VB _ 3 dep _ _ 9 oil _ NOUN NN _ 8 dobj _ _ 10 is _ AUX VBZ _ 11 aux _ _ 11 dropping _ VERB VBG _ 33 ccomp _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 '' _ PUNCT '' _ 11 punct _ _ 14 and _ CONJ CC _ 11 cc _ _ 15 oil _ NOUN NN _ 17 compound _ _ 16 exploration _ NOUN NN _ 17 compound _ _ 17 activity _ NOUN NN _ 21 nsubj _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 also _ ADV RB _ 21 advmod _ _ 20 down _ ADV RB _ 21 advmod _ _ 21 dramatically _ ADV RB _ 11 conj _ _ 22 , _ PUNCT , _ 11 punct _ _ 23 as _ SCONJ IN _ 26 mark _ _ 24 many _ ADJ JJ _ 25 amod _ _ 25 producers _ NOUN NNS _ 26 nsubj _ _ 26 shift _ VERB VBP _ 11 conj _ _ 27 their _ PRON PRP$ _ 28 nmod:poss _ _ 28 emphasis _ NOUN NN _ 26 dobj _ _ 29 to _ ADP TO _ 31 case _ _ 30 natural _ ADJ JJ _ 31 amod _ _ 31 gas _ NOUN NN _ 26 nmod _ _ 32 , _ PUNCT , _ 33 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 Ronald _ PROPN NNP _ 35 compound _ _ 35 Watkins _ PROPN NNP _ 33 nsubj _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 vice _ NOUN NN _ 38 compound _ _ 38 president _ NOUN NN _ 35 appos _ _ 39 for _ ADP IN _ 43 case _ _ 40 government _ NOUN NN _ 43 compound _ _ 41 and _ CONJ CC _ 40 cc _ _ 42 industry _ NOUN NN _ 40 conj _ _ 43 relations _ NOUN NNS _ 38 nmod _ _ 44 with _ ADP IN _ 47 case _ _ 45 Interprovincial _ PROPN NNP _ 47 nmod:poss _ _ 46 's _ PART POS _ 45 case _ _ 47 parent _ NOUN NN _ 38 nmod _ _ 48 , _ PUNCT , _ 47 punct _ _ 49 Interhome _ PROPN NNP _ 51 compound _ _ 50 Energy _ PROPN NNP _ 51 compound _ _ 51 Inc _ PROPN NNP _ 47 appos _ _ 52 . _ PUNCT . _ 33 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Watkins _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 volume _ NOUN NN _ 15 nsubj _ _ 5 on _ ADP IN _ 8 case _ _ 6 Interprovincial _ PROPN NNP _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 system _ NOUN NN _ 4 nmod _ _ 9 is _ VERB VBZ _ 15 cop _ _ 10 down _ ADV RB _ 15 advmod _ _ 11 about _ ADV RB _ 13 advmod _ _ 12 2 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 10 nmod:npmod _ _ 14 since _ ADP IN _ 15 case _ _ 15 January _ PROPN NNP _ 3 ccomp _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 expected _ VERB VBN _ 15 conj _ _ 19 to _ PART TO _ 20 mark _ _ 20 fall _ VERB VB _ 18 xcomp _ _ 21 further _ ADV RBR _ 20 advmod _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 making _ VERB VBG _ 15 advcl _ _ 24 expansion _ NOUN NN _ 25 nsubj _ _ 25 unnecessary _ ADJ JJ _ 23 xcomp _ _ 26 until _ ADP IN _ 29 case _ _ 27 perhaps _ ADV RB _ 29 advmod _ _ 28 the _ DET DT _ 29 det _ _ 29 mid-1990s _ NOUN NNS _ 25 dep _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 There _ PRON EX _ 6 expl _ _ 3 has _ AUX VBZ _ 6 aux _ _ 4 been _ VERB VBN _ 6 cop _ _ 5 a _ DET DT _ 6 det _ _ 6 swing _ NOUN NN _ 18 ccomp _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 pendulum _ NOUN NN _ 6 nmod _ _ 10 back _ ADV RB _ 6 advmod _ _ 11 to _ ADP TO _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 gas _ NOUN NN _ 14 compound _ _ 14 side _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 said _ VERB VBD _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 Many _ ADJ JJ _ 9 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 Canada _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 oil _ NOUN NN _ 1 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 gas _ NOUN NN _ 8 compound _ _ 8 producers _ NOUN NNS _ 5 conj _ _ 9 say _ VERB VBP _ 0 root _ _ 10 the _ DET DT _ 11 det _ _ 11 outlook _ NOUN NN _ 16 nsubj _ _ 12 for _ ADP IN _ 14 case _ _ 13 natural _ ADJ JJ _ 14 amod _ _ 14 gas _ NOUN NN _ 11 nmod _ _ 15 is _ VERB VBZ _ 16 cop _ _ 16 better _ ADJ JJR _ 9 ccomp _ _ 17 than _ SCONJ IN _ 21 mark _ _ 18 it _ PRON PRP _ 21 nsubj _ _ 19 is _ VERB VBZ _ 21 cop _ _ 20 for _ ADP IN _ 21 case _ _ 21 oil _ NOUN NN _ 16 ccomp _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 and _ CONJ CC _ 9 cc _ _ 24 have _ AUX VBP _ 25 aux _ _ 25 shifted _ VERB VBN _ 9 conj _ _ 26 their _ PRON PRP$ _ 27 nmod:poss _ _ 27 exploration _ NOUN NN _ 25 dobj _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 development _ NOUN NN _ 30 compound _ _ 30 budgets _ NOUN NNS _ 27 conj _ _ 31 accordingly _ ADV RB _ 25 advmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 number _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 active _ ADJ JJ _ 6 amod _ _ 5 drilling _ NOUN NN _ 6 compound _ _ 6 rigs _ NOUN NNS _ 2 nmod _ _ 7 in _ ADP IN _ 8 case _ _ 8 Canada _ PROPN NNP _ 6 nmod _ _ 9 is _ VERB VBZ _ 42 ccomp _ _ 10 down _ ADV RB _ 9 advmod _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 nmod:npmod _ _ 13 from _ ADP IN _ 16 case _ _ 14 a _ DET DT _ 15 det _ _ 15 year _ NOUN NN _ 16 nmod:npmod _ _ 16 ago _ ADV RB _ 10 advcl _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 the _ DET DT _ 20 det _ _ 20 number _ NOUN NN _ 25 nsubj _ _ 21 of _ ADP IN _ 24 case _ _ 22 completed _ VERB VBN _ 24 amod _ _ 23 oil _ NOUN NN _ 24 compound _ _ 24 wells _ NOUN NNS _ 20 nmod _ _ 25 is _ VERB VBZ _ 9 conj _ _ 26 `` _ PUNCT `` _ 25 punct _ _ 27 down _ ADV RB _ 25 advmod _ _ 28 more _ ADJ JJR _ 27 nmod:npmod _ _ 29 than _ ADP IN _ 30 case _ _ 30 that _ PRON DT _ 28 nmod _ _ 31 , _ PUNCT , _ 9 punct _ _ 32 due _ ADJ JJ _ 9 advmod _ _ 33 to _ ADP TO _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 increasing _ VERB VBG _ 36 amod _ _ 36 focus _ NOUN NN _ 32 nmod _ _ 37 on _ ADP IN _ 39 case _ _ 38 gas _ NOUN NN _ 39 compound _ _ 39 exploration _ NOUN NN _ 36 nmod _ _ 40 , _ PUNCT , _ 42 punct _ _ 41 '' _ PUNCT '' _ 42 punct _ _ 42 said _ VERB VBD _ 0 root _ _ 43 Robert _ PROPN NNP _ 44 compound _ _ 44 Feick _ PROPN NNP _ 42 nsubj _ _ 45 , _ PUNCT , _ 44 punct _ _ 46 manager _ NOUN NN _ 44 appos _ _ 47 of _ ADP IN _ 49 case _ _ 48 crude _ ADJ JJ _ 49 amod _ _ 49 oil _ NOUN NN _ 46 nmod _ _ 50 with _ ADP IN _ 55 case _ _ 51 Calgary _ PROPN NNP _ 55 nmod:poss _ _ 52 's _ PART POS _ 51 case _ _ 53 Independent _ PROPN NNP _ 55 compound _ _ 54 Petroleum _ PROPN NNP _ 55 compound _ _ 55 Association _ PROPN NNP _ 46 nmod _ _ 56 of _ ADP IN _ 57 case _ _ 57 Canada _ PROPN NNP _ 55 nmod _ _ 58 , _ PUNCT , _ 55 punct _ _ 59 an _ DET DT _ 61 det _ _ 60 industry _ NOUN NN _ 61 compound _ _ 61 group _ NOUN NN _ 55 appos _ _ 62 . _ PUNCT . _ 42 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Watkins _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 main _ ADJ JJ _ 6 amod _ _ 6 reason _ NOUN NN _ 13 nsubj _ _ 7 for _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 production _ NOUN NN _ 10 compound _ _ 10 decline _ NOUN NN _ 6 nmod _ _ 11 is _ VERB VBZ _ 13 cop _ _ 12 shrinking _ VERB VBG _ 13 amod _ _ 13 output _ NOUN NN _ 3 ccomp _ _ 14 of _ ADP IN _ 16 case _ _ 15 light _ ADJ JJ _ 16 amod _ _ 16 crude _ NOUN NN _ 13 nmod _ _ 17 from _ ADP IN _ 21 case _ _ 18 mature _ ADJ JJ _ 21 amod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 conventional _ ADJ JJ _ 21 amod _ _ 21 fields _ NOUN NNS _ 13 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 western _ ADJ JJ _ 24 amod _ _ 24 Canada _ PROPN NNP _ 21 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 Interprovincial _ PROPN NNP _ 2 nsubj _ _ 2 transports _ VERB VBZ _ 0 root _ _ 3 about _ ADV RB _ 4 advmod _ _ 4 75 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 2 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 all _ DET DT _ 8 det _ _ 8 crude _ NOUN NN _ 5 nmod _ _ 9 produced _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 12 case _ _ 11 western _ ADJ JJ _ 12 amod _ _ 12 Canada _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 and _ CONJ CC _ 2 cc _ _ 15 almost _ ADV RB _ 16 advmod _ _ 16 60 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 23 nsubj _ _ 18 of _ ADP IN _ 22 case _ _ 19 Interprovincial _ PROPN NNP _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 total _ ADJ JJ _ 22 amod _ _ 22 volume _ NOUN NN _ 17 nmod _ _ 23 consists _ VERB VBZ _ 2 conj _ _ 24 of _ ADP IN _ 26 case _ _ 25 light _ ADJ JJ _ 26 amod _ _ 26 crude _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 Nearly _ ADV RB _ 2 advmod _ _ 2 all _ DET DT _ 14 nsubjpass _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 crude _ ADJ JJ _ 6 amod _ _ 6 oil _ NOUN NN _ 2 nmod _ _ 7 that _ ADP IN _ 9 dobj _ _ 8 Canada _ PROPN NNP _ 9 nsubj _ _ 9 exports _ NOUN NNS _ 6 acl:relcl _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 9 nmod _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 transported _ VERB VBN _ 0 root _ _ 15 on _ ADP IN _ 18 case _ _ 16 Interprovincial _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 system _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 whose _ PRON WP$ _ 22 nmod:poss _ _ 21 main _ ADJ JJ _ 22 amod _ _ 22 line _ NOUN NN _ 23 nsubj _ _ 23 runs _ NOUN NNS _ 18 acl:relcl _ _ 24 from _ ADP IN _ 25 case _ _ 25 Edmonton _ PROPN NNP _ 23 nmod _ _ 26 to _ ADP TO _ 31 case _ _ 27 major _ ADJ JJ _ 31 amod _ _ 28 U.S. _ PROPN NNP _ 31 compound _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 Canadian _ ADJ JJ _ 28 conj _ _ 31 cities _ NOUN NNS _ 23 nmod _ _ 32 in _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 36 det _ _ 34 Great _ PROPN NNP _ 36 compound _ _ 35 Lakes _ PROPN NNPS _ 36 compound _ _ 36 region _ NOUN NN _ 31 nmod _ _ 37 , _ PUNCT , _ 31 punct _ _ 38 including _ VERB VBG _ 39 case _ _ 39 Chicago _ PROPN NNP _ 31 nmod _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Buffalo _ PROPN NNP _ 39 conj _ _ 42 , _ PUNCT , _ 39 punct _ _ 43 Toronto _ PROPN NNP _ 39 conj _ _ 44 and _ CONJ CC _ 39 cc _ _ 45 Montreal _ PROPN NNP _ 39 conj _ _ 46 . _ PUNCT . _ 14 punct _ _ 1 Canada _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 current _ ADJ JJ _ 5 amod _ _ 4 oil _ NOUN NN _ 5 compound _ _ 5 exports _ NOUN NNS _ 9 nsubj _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 U.S. _ PROPN NNP _ 5 nmod _ _ 9 total _ VERB VBP _ 26 ccomp _ _ 10 about _ ADV RB _ 11 advmod _ _ 11 600,000 _ NUM CD _ 12 nummod _ _ 12 barrels _ NOUN NNS _ 9 dobj _ _ 13 a _ DET DT _ 14 det _ _ 14 day _ NOUN NN _ 12 nmod:npmod _ _ 15 , _ PUNCT , _ 12 punct _ _ 16 or _ CONJ CC _ 12 cc _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 9.1 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 12 conj _ _ 20 of _ ADP IN _ 24 case _ _ 21 net _ ADJ JJ _ 24 amod _ _ 22 U.S. _ PROPN NNP _ 24 compound _ _ 23 crude _ NOUN NN _ 24 compound _ _ 24 imports _ NOUN NNS _ 19 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 John _ PROPN NNP _ 28 compound _ _ 28 Lichtblau _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 president _ NOUN NN _ 28 appos _ _ 31 of _ ADP IN _ 38 case _ _ 32 the _ DET DT _ 38 det _ _ 33 New _ ADJ JJ _ 34 amod _ _ 34 York-based _ ADJ JJ _ 38 amod _ _ 35 Petroleum _ PROPN NNP _ 38 compound _ _ 36 Industry _ PROPN NNP _ 38 compound _ _ 37 Research _ PROPN NNP _ 38 compound _ _ 38 Foundation _ PROPN NNP _ 30 nmod _ _ 39 . _ PUNCT . _ 26 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 ranks _ VERB VBZ _ 0 root _ _ 3 Canada _ PROPN NNP _ 2 dobj _ _ 4 as _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 fourth-largest _ ADJ JJ _ 7 amod _ _ 7 source _ NOUN NN _ 2 nmod _ _ 8 of _ ADP IN _ 10 case _ _ 9 imported _ ADJ JJ _ 10 amod _ _ 10 crude _ NOUN NN _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 behind _ ADP IN _ 14 case _ _ 13 Saudi _ PROPN NNP _ 14 compound _ _ 14 Arabia _ PROPN NNP _ 7 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Nigeria _ PROPN NNP _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 Mexico _ PROPN NNP _ 14 conj _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Lichtblau _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 Canada _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 declining _ VERB VBG _ 8 amod _ _ 7 crude _ NOUN NN _ 8 compound _ _ 8 output _ NOUN NN _ 20 nsubj _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 combined _ VERB VBN _ 14 case _ _ 11 with _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 fast-shrinking _ ADJ JJ _ 14 amod _ _ 14 output _ NOUN NN _ 8 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 U.S. _ PROPN NNP _ 17 compound _ _ 17 crude _ NOUN NN _ 14 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 will _ AUX MD _ 20 aux _ _ 20 help _ VERB VB _ 3 ccomp _ _ 21 intensify _ VERB VB _ 20 ccomp _ _ 22 U.S. _ PROPN NNP _ 23 compound _ _ 23 reliance _ NOUN NN _ 21 dobj _ _ 24 on _ ADP IN _ 25 case _ _ 25 oil _ NOUN NN _ 23 nmod _ _ 26 from _ ADP IN _ 27 case _ _ 27 overseas _ NOUN NN _ 25 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 particularly _ ADV RB _ 27 advmod _ _ 30 the _ DET DT _ 32 det _ _ 31 Middle _ PROPN NNP _ 32 compound _ _ 32 East _ PROPN NNP _ 27 dep _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 8 nsubj _ _ 3 's _ VERB VBZ _ 8 cop _ _ 4 very _ ADV RB _ 5 advmod _ _ 5 much _ ADV RB _ 8 advmod _ _ 6 a _ DET DT _ 8 det _ _ 7 growing _ VERB VBG _ 8 amod _ _ 8 concern _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 when _ ADV WRB _ 5 advmod _ _ 3 something _ NOUN NN _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 inevitable _ ADJ JJ _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 you _ PRON PRP _ 8 nsubj _ _ 8 learn _ VERB VBP _ 16 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 live _ VERB VB _ 8 xcomp _ _ 11 with _ ADP IN _ 12 case _ _ 12 it _ PRON PRP _ 10 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 said _ VERB VBD _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Lichtblau _ PROPN NNP _ 3 nsubj _ _ 3 stressed _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 16 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 delay _ NOUN NN _ 16 nsubj _ _ 7 of _ ADP IN _ 11 case _ _ 8 Interprovincial _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 proposed _ VERB VBN _ 11 amod _ _ 11 expansion _ NOUN NN _ 6 nmod _ _ 12 wo _ AUX MD _ 16 aux _ _ 13 n't _ PART RB _ 16 neg _ _ 14 by _ ADP IN _ 15 case _ _ 15 itself _ PRON PRP _ 16 nmod _ _ 16 increase _ VERB VB _ 3 ccomp _ _ 17 U.S. _ PROPN NNP _ 18 compound _ _ 18 dependence _ NOUN NN _ 16 dobj _ _ 19 on _ ADP IN _ 21 case _ _ 20 offshore _ ADJ JJ _ 21 amod _ _ 21 crude _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 however _ ADV RB _ 16 advmod _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 since _ SCONJ IN _ 29 mark _ _ 26 Canadian _ ADJ JJ _ 27 amod _ _ 27 imports _ NOUN NNS _ 29 nsubjpass _ _ 28 are _ AUX VBP _ 29 auxpass _ _ 29 limited _ VERB VBN _ 16 advcl _ _ 30 in _ ADP IN _ 32 case _ _ 31 any _ DET DT _ 32 det _ _ 32 case _ NOUN NN _ 29 nmod _ _ 33 by _ ADP IN _ 37 case _ _ 34 Canada _ PROPN NNP _ 37 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 falling _ VERB VBG _ 37 amod _ _ 37 output _ NOUN NN _ 29 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 Under _ ADP IN _ 2 case _ _ 2 terms _ NOUN NNS _ 17 nmod _ _ 3 of _ ADP IN _ 7 case _ _ 4 its _ PRON PRP$ _ 7 nmod:poss _ _ 5 proposed _ VERB VBN _ 7 amod _ _ 6 two-step _ ADJ JJ _ 7 amod _ _ 7 expansion _ NOUN NN _ 2 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 12 nsubj _ _ 10 would _ AUX MD _ 12 aux _ _ 11 have _ AUX VB _ 12 aux _ _ 12 required _ VERB VBN _ 7 acl:relcl _ _ 13 regulatory _ ADJ JJ _ 14 amod _ _ 14 approval _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 Interprovincial _ PROPN NNP _ 17 nsubj _ _ 17 intended _ VERB VBD _ 0 root _ _ 18 to _ PART TO _ 19 mark _ _ 19 add _ VERB VB _ 17 xcomp _ _ 20 200,000 _ NUM CD _ 21 nummod _ _ 21 barrels _ NOUN NNS _ 19 dobj _ _ 22 a _ DET DT _ 23 det _ _ 23 day _ NOUN NN _ 21 nmod:npmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 additional _ ADJ JJ _ 26 amod _ _ 26 capacity _ NOUN NN _ 21 nmod _ _ 27 to _ ADP TO _ 29 case _ _ 28 its _ PRON PRP$ _ 29 nmod:poss _ _ 29 system _ NOUN NN _ 19 nmod _ _ 30 , _ PUNCT , _ 19 punct _ _ 31 beginning _ VERB VBG _ 35 case _ _ 32 with _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 modest _ ADJ JJ _ 35 amod _ _ 35 expansion _ NOUN NN _ 19 advcl _ _ 36 by _ ADP IN _ 37 case _ _ 37 1991 _ NUM CD _ 35 nmod _ _ 38 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 system _ NOUN NN _ 4 nsubj _ _ 3 currently _ ADV RB _ 4 advmod _ _ 4 has _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 capacity _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 1.55 _ NUM CD _ 9 compound _ _ 9 million _ NUM CD _ 10 nummod _ _ 10 barrels _ NOUN NNS _ 6 nmod _ _ 11 a _ DET DT _ 12 det _ _ 12 day _ NOUN NN _ 10 nmod:npmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 Inland _ PROPN NNP _ 4 compound _ _ 2 Steel _ PROPN NNP _ 4 compound _ _ 3 Industries _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 that _ SCONJ IN _ 11 mark _ _ 9 third-quarter _ ADJ JJ _ 10 amod _ _ 10 earnings _ NOUN NNS _ 11 nsubj _ _ 11 dropped _ VERB VBD _ 7 ccomp _ _ 12 more _ ADJ JJR _ 14 advmod _ _ 13 than _ ADP IN _ 12 mwe _ _ 14 50 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 11 dobj _ _ 16 from _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 previous _ ADJ JJ _ 19 amod _ _ 19 quarter _ NOUN NN _ 11 nmod _ _ 20 as _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 result _ NOUN NN _ 11 nmod _ _ 23 of _ ADP IN _ 26 case _ _ 24 reduced _ ADJ JJ _ 26 amod _ _ 25 sales _ NOUN NNS _ 26 compound _ _ 26 volume _ NOUN NN _ 22 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 increased _ ADJ JJ _ 29 amod _ _ 29 costs _ NOUN NNS _ 26 conj _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 second _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 steelmaker _ NOUN NN _ 8 nsubj _ _ 8 had _ VERB VBD _ 0 root _ _ 9 net _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 8 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 45.3 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.25 _ NUM CD _ 12 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 including _ VERB VBG _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 pretax _ ADJ JJ _ 24 amod _ _ 24 charge _ NOUN NN _ 8 nmod _ _ 25 of _ ADP IN _ 26 case _ _ 26 $ _ SYM $ _ 24 nmod _ _ 27 17 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 related _ VERB VBN _ 24 amod _ _ 30 to _ ADP TO _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 settlement _ NOUN NN _ 29 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 suit _ NOUN NN _ 32 nmod _ _ 36 , _ PUNCT , _ 8 punct _ _ 37 on _ ADP IN _ 38 case _ _ 38 sales _ NOUN NNS _ 8 nmod _ _ 39 of _ ADP IN _ 42 case _ _ 40 $ _ SYM $ _ 42 dep _ _ 41 1.11 _ NUM CD _ 42 nummod _ _ 42 billion _ NUM CD _ 38 nmod _ _ 43 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 normal _ ADJ JJ _ 6 amod _ _ 5 seasonal _ ADJ JJ _ 6 amod _ _ 6 softness _ NOUN NN _ 15 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 lost _ ADJ JJ _ 9 amod _ _ 9 orders _ NOUN NNS _ 6 conj _ _ 10 caused _ VERB VBN _ 9 acl _ _ 11 by _ ADP IN _ 14 case _ _ 12 prolonged _ ADJ JJ _ 14 amod _ _ 13 labor _ NOUN NN _ 14 compound _ _ 14 talks _ NOUN NNS _ 10 nmod _ _ 15 reduced _ VERB VBD _ 3 ccomp _ _ 16 shipments _ NOUN NNS _ 15 dobj _ _ 17 by _ ADP IN _ 19 case _ _ 18 200,000 _ NUM CD _ 19 nummod _ _ 19 tons _ NOUN NNS _ 15 nmod _ _ 20 in _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 latest _ ADJ JJS _ 23 amod _ _ 23 quarter _ NOUN NN _ 15 nmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 compared _ VERB VBN _ 29 case _ _ 26 with _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 second _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 15 advcl _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 integrated-steel _ NOUN NN _ 8 compound _ _ 8 business _ NOUN NN _ 10 nsubjpass _ _ 9 was _ AUX VBD _ 10 auxpass _ _ 10 hurt _ VERB VBN _ 0 root _ _ 11 by _ ADP IN _ 13 case _ _ 12 continued _ ADJ JJ _ 13 amod _ _ 13 increases _ NOUN NNS _ 10 nmod _ _ 14 in _ ADP IN _ 16 case _ _ 15 materials _ NOUN NNS _ 16 compound _ _ 16 costs _ NOUN NNS _ 13 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 repair _ NOUN NN _ 21 compound _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 maintenance _ NOUN NN _ 18 conj _ _ 21 expenses _ NOUN NNS _ 16 conj _ _ 22 , _ PUNCT , _ 13 punct _ _ 23 as _ ADV RB _ 13 cc _ _ 24 well _ ADV RB _ 23 mwe _ _ 25 as _ ADP IN _ 23 mwe _ _ 26 higher _ ADJ JJR _ 28 amod _ _ 27 labor _ NOUN NN _ 28 compound _ _ 28 costs _ NOUN NNS _ 13 conj _ _ 29 under _ ADP IN _ 32 case _ _ 30 its _ PRON PRP$ _ 32 nmod:poss _ _ 31 new _ ADJ JJ _ 32 amod _ _ 32 contract _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 service-center _ NOUN NN _ 3 compound _ _ 3 business _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 hurt _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 reduced _ ADJ JJ _ 8 amod _ _ 8 margins _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 start-up _ ADJ JJ _ 11 amod _ _ 11 costs _ NOUN NNS _ 8 conj _ _ 12 associated _ VERB VBN _ 11 amod _ _ 13 with _ ADP IN _ 17 case _ _ 14 its _ PRON PRP$ _ 17 nmod:poss _ _ 15 Joseph _ PROPN NNP _ 17 compound _ _ 16 T. _ PROPN NNP _ 17 compound _ _ 17 Ryerson _ PROPN NNP _ 12 nmod _ _ 18 & _ CONJ CC _ 17 cc _ _ 19 Son _ PROPN NNP _ 20 compound _ _ 20 unit _ NOUN NN _ 17 conj _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 beginning _ VERB VBG _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 see _ VERB VB _ 6 xcomp _ _ 9 some _ DET DT _ 11 det _ _ 10 shipping-rate _ ADJ JJ _ 11 amod _ _ 11 improvements _ NOUN NNS _ 8 dobj _ _ 12 in _ ADP IN _ 15 case _ _ 13 both _ CONJ CC _ 15 cc:preconj _ _ 14 the _ DET DT _ 15 det _ _ 15 intergrated-steel _ NOUN NN _ 8 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 steel-service-center _ NOUN NN _ 18 compound _ _ 18 segments _ NOUN NNS _ 15 conj _ _ 19 , _ PUNCT , _ 8 punct _ _ 20 which _ PRON WDT _ 22 nsubj _ _ 21 should _ AUX MD _ 22 aux _ _ 22 result _ VERB VB _ 8 dep _ _ 23 in _ ADP IN _ 25 case _ _ 24 improved _ ADJ JJ _ 25 amod _ _ 25 results _ NOUN NNS _ 22 nmod _ _ 26 for _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 fourth _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 25 nmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 Inland _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 third-quarter _ ADJ JJ _ 5 amod _ _ 5 results _ NOUN NNS _ 8 nsubjpass _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 announced _ VERB VBN _ 2 ccomp _ _ 9 later _ ADV RB _ 11 advmod _ _ 10 this _ DET DT _ 11 det _ _ 11 week _ NOUN NN _ 8 nmod:tmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 year-earlier _ ADJ JJ _ 5 amod _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 20 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 when _ ADV WRB _ 13 advmod _ _ 8 the _ DET DT _ 9 det _ _ 9 industry _ NOUN NN _ 13 nsubj _ _ 10 was _ VERB VBD _ 13 cop _ _ 11 in _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 midst _ NOUN NN _ 5 acl:relcl _ _ 14 of _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 boom _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 20 punct _ _ 18 the _ DET DT _ 19 det _ _ 19 company _ NOUN NN _ 20 nsubj _ _ 20 had _ VERB VBD _ 0 root _ _ 21 net _ NOUN NN _ 20 dobj _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 61 _ NUM CD _ 25 compound _ _ 25 million _ NUM CD _ 23 nummod _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 or _ CONJ CC _ 23 cc _ _ 28 $ _ SYM $ _ 29 dep _ _ 29 1.70 _ NUM CD _ 23 conj _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 29 nmod:npmod _ _ 32 , _ PUNCT , _ 23 punct _ _ 33 on _ ADP IN _ 34 case _ _ 34 sales _ NOUN NNS _ 20 nmod _ _ 35 of _ ADP IN _ 36 case _ _ 36 $ _ SYM $ _ 34 nmod _ _ 37 1.02 _ NUM CD _ 38 compound _ _ 38 billion _ NUM CD _ 36 nummod _ _ 39 . _ PUNCT . _ 20 punct _ _ 1 Predicting _ VERB VBG _ 12 csubj _ _ 2 the _ DET DT _ 4 det _ _ 3 financial _ ADJ JJ _ 4 amod _ _ 4 results _ NOUN NNS _ 1 dobj _ _ 5 of _ ADP IN _ 7 case _ _ 6 computer _ NOUN NN _ 7 compound _ _ 7 firms _ NOUN NNS _ 4 nmod _ _ 8 has _ AUX VBZ _ 12 aux _ _ 9 been _ VERB VBN _ 12 cop _ _ 10 a _ DET DT _ 12 det _ _ 11 tough _ ADJ JJ _ 12 amod _ _ 12 job _ NOUN NN _ 0 root _ _ 13 lately _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 12 punct _ _ 1 Take _ VERB VB _ 0 root _ _ 2 Microsoft _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 1 dobj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 largest _ ADJ JJS _ 7 amod _ _ 7 maker _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 11 case _ _ 9 personal _ ADJ JJ _ 11 amod _ _ 10 computer _ NOUN NN _ 11 compound _ _ 11 software _ NOUN NN _ 7 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 generally _ ADV RB _ 14 advmod _ _ 14 considered _ VERB VBN _ 7 acl _ _ 15 an _ DET DT _ 17 det _ _ 16 industry _ NOUN NN _ 17 compound _ _ 17 bellwether _ NOUN NN _ 14 dobj _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 stunned _ VERB VBD _ 0 root _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 6 dobj _ _ 9 with _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 prediction _ NOUN NN _ 6 nmod _ _ 12 that _ DET DT _ 24 mark _ _ 13 growth _ NOUN NN _ 24 nsubj _ _ 14 in _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 personal _ ADJ JJ _ 18 amod _ _ 17 computer _ NOUN NN _ 18 compound _ _ 18 business _ NOUN NN _ 13 nmod _ _ 19 overall _ ADV RB _ 13 advmod _ _ 20 would _ AUX MD _ 24 aux _ _ 21 be _ VERB VB _ 24 cop _ _ 22 only _ ADV RB _ 23 advmod _ _ 23 10 _ NUM CD _ 24 nummod _ _ 24 % _ SYM NN _ 11 ccomp _ _ 25 in _ ADP IN _ 26 case _ _ 26 1990 _ NUM CD _ 24 nmod _ _ 27 , _ PUNCT , _ 24 punct _ _ 28 a _ DET DT _ 30 det _ _ 29 modest _ ADJ JJ _ 30 amod _ _ 30 increase _ NOUN NN _ 24 dep _ _ 31 when _ ADV WRB _ 32 advmod _ _ 32 compared _ VERB VBN _ 30 acl:relcl _ _ 33 with _ ADP IN _ 36 case _ _ 34 the _ DET DT _ 36 det _ _ 35 sizzling _ ADJ JJ _ 36 amod _ _ 36 expansion _ NOUN NN _ 32 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 years _ NOUN NNS _ 36 nmod _ _ 39 past _ ADJ JJ _ 38 amod _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 Investors _ NOUN NNS _ 18 nsubj _ _ 2 -- _ PUNCT : _ 3 punct _ _ 3 taking _ VERB VBG _ 18 parataxis _ _ 4 this _ PRON DT _ 3 dobj _ _ 5 as _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 sign _ NOUN NN _ 3 nmod _ _ 8 that _ SCONJ IN _ 16 mark _ _ 9 a _ DET DT _ 12 det _ _ 10 broad _ ADJ JJ _ 12 amod _ _ 11 industry _ NOUN NN _ 12 compound _ _ 12 slump _ NOUN NN _ 16 nsubj _ _ 13 was _ VERB VBD _ 16 cop _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 offing _ NOUN NN _ 7 ccomp _ _ 17 -- _ PUNCT : _ 3 punct _ _ 18 reacted _ VERB VBD _ 0 root _ _ 19 by _ SCONJ IN _ 20 mark _ _ 20 selling _ VERB VBG _ 18 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 stock _ NOUN NN _ 20 dobj _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 lost _ VERB VBD _ 24 acl:relcl _ _ 28 $ _ SYM $ _ 29 dep _ _ 29 3.25 _ NUM CD _ 27 dobj _ _ 30 that _ DET DT _ 31 det _ _ 31 day _ NOUN NN _ 27 nmod:tmod _ _ 32 to _ PART TO _ 33 mark _ _ 33 close _ VERB VB _ 27 advcl _ _ 34 at _ ADP IN _ 36 case _ _ 35 $ _ SYM $ _ 36 dep _ _ 36 52 _ NUM CD _ 33 nmod _ _ 37 in _ ADP IN _ 40 case _ _ 38 national _ ADJ JJ _ 40 amod _ _ 39 over-the-counter _ ADJ JJ _ 40 amod _ _ 40 trading _ NOUN NN _ 33 nmod _ _ 41 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 that _ PRON DT _ 3 nsubj _ _ 3 was _ VERB VBD _ 0 root _ _ 4 all _ DET DT _ 6 advmod _ _ 5 of _ ADP IN _ 6 advmod _ _ 6 three _ NUM CD _ 7 nummod _ _ 7 months _ NOUN NNS _ 8 nmod:npmod _ _ 8 ago _ ADV RB _ 3 advmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 week _ NOUN NN _ 5 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Microsoft _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 expects _ VERB VBZ _ 5 ccomp _ _ 8 revenue _ NOUN NN _ 7 dobj _ _ 9 for _ ADP IN _ 12 case _ _ 10 its _ PRON PRP$ _ 12 nmod:poss _ _ 11 first _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 8 nmod _ _ 13 ended _ VERB VBN _ 12 acl _ _ 14 Sept. _ PROPN NNP _ 13 nmod:tmod _ _ 15 30 _ NUM CD _ 14 nummod _ _ 16 to _ PART TO _ 17 mark _ _ 17 increase _ VERB VB _ 7 xcomp _ _ 18 34 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 announcement _ NOUN NN _ 3 nsubj _ _ 3 caused _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 stock _ NOUN NN _ 3 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 surge _ VERB VB _ 3 xcomp _ _ 10 $ _ SYM $ _ 11 dep _ _ 11 6.50 _ NUM CD _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 close _ VERB VB _ 9 advcl _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 75.50 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Microsoft _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 surprising _ ADJ JJ _ 4 amod _ _ 4 strength _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 one _ NUM CD _ 7 nummod _ _ 7 example _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 difficulty _ NOUN NN _ 7 nmod _ _ 11 facing _ VERB VBG _ 10 acl _ _ 12 investors _ NOUN NNS _ 11 dobj _ _ 13 looking _ VERB VBG _ 12 acl _ _ 14 for _ ADP IN _ 15 case _ _ 15 reassurances _ NOUN NNS _ 13 nmod _ _ 16 about _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 financial _ ADJ JJ _ 19 amod _ _ 19 health _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 23 case _ _ 21 the _ DET DT _ 23 det _ _ 22 computer _ NOUN NN _ 23 compound _ _ 23 firms _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 It _ PRON PRP _ 4 nsubj _ _ 3 's _ VERB VBZ _ 4 cop _ _ 4 hard _ ADJ JJ _ 15 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 know _ VERB VB _ 4 xcomp _ _ 7 what _ PRON WP _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 expect _ VERB VB _ 6 ccomp _ _ 10 at _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 point _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 said _ VERB VBD _ 0 root _ _ 16 Peter _ PROPN NNP _ 17 compound _ _ 17 Rogers _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 an _ DET DT _ 20 det _ _ 20 analyst _ NOUN NN _ 17 appos _ _ 21 at _ ADP IN _ 23 case _ _ 22 Robertson _ PROPN NNP _ 23 compound _ _ 23 Stephens _ PROPN NNP _ 20 nmod _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Co _ PROPN NNP _ 23 conj _ _ 26 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 industry _ NOUN NN _ 4 nsubj _ _ 4 defies _ VERB VBZ _ 0 root _ _ 5 characterization _ NOUN NN _ 4 dobj _ _ 6 . _ PUNCT . _ 4 punct _ _ 7 '' _ PUNCT '' _ 4 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 illustrate _ VERB VB _ 6 advcl _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Rogers _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 that _ SCONJ IN _ 18 mark _ _ 8 of _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 14 _ NUM CD _ 12 nummod _ _ 11 computer-related _ ADJ JJ _ 12 amod _ _ 12 firms _ NOUN NNS _ 18 nmod _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 follows _ VERB VBZ _ 12 acl:relcl _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 half _ NOUN NN _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 report _ VERB VB _ 6 ccomp _ _ 19 for _ ADP IN _ 23 case _ _ 20 their _ PRON PRP$ _ 23 nmod:poss _ _ 21 most _ ADV RBS _ 22 advmod _ _ 22 recent _ ADJ JJ _ 23 amod _ _ 23 quarter _ NOUN NN _ 18 nmod _ _ 24 earnings _ NOUN NNS _ 18 dobj _ _ 25 below _ ADP IN _ 29 case _ _ 26 last _ ADJ JJ _ 27 amod _ _ 27 year _ NOUN NN _ 29 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 results _ NOUN NNS _ 24 nmod _ _ 30 , _ PUNCT , _ 18 punct _ _ 31 and _ CONJ CC _ 18 cc _ _ 32 half _ NOUN NN _ 18 conj _ _ 33 above _ ADP IN _ 35 case _ _ 34 those _ DET DT _ 35 det _ _ 35 results _ NOUN NNS _ 32 dep _ _ 36 . _ PUNCT . _ 6 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 those _ DET DT _ 3 det _ _ 3 companies _ NOUN NNS _ 10 nmod _ _ 4 expected _ VERB VBN _ 3 acl _ _ 5 to _ PART TO _ 6 mark _ _ 6 have _ VERB VB _ 4 xcomp _ _ 7 a _ DET DT _ 9 det _ _ 8 down _ ADJ JJ _ 9 amod _ _ 9 quarter _ NOUN NN _ 6 dobj _ _ 10 are _ VERB VBP _ 0 root _ _ 11 Hewlett-Packard _ PROPN NNP _ 12 compound _ _ 12 Co. _ PROPN NNP _ 10 nsubj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 Amdahl _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 12 conj _ _ 16 and _ CONJ CC _ 12 cc _ _ 17 Sun _ PROPN NNP _ 19 compound _ _ 18 Microsystems _ PROPN NNP _ 19 compound _ _ 19 Inc. _ PROPN NNP _ 12 conj _ _ 20 , _ PUNCT , _ 12 punct _ _ 21 generally _ ADV RB _ 23 advmod _ _ 22 solid _ ADJ JJ _ 23 amod _ _ 23 performers _ NOUN NNS _ 12 appos _ _ 24 in _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 past _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 International _ PROPN NNP _ 4 compound _ _ 2 Business _ PROPN NNP _ 4 compound _ _ 3 Machines _ PROPN NNP _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 7 nsubjpass _ _ 5 also _ ADV RB _ 7 advmod _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 report _ VERB VB _ 7 xcomp _ _ 10 disappointing _ ADJ JJ _ 11 amod _ _ 11 results _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 Apple _ PROPN NNP _ 3 compound _ _ 2 Computer _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 8 nsubjpass _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 meanwhile _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 expected _ VERB VBN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 show _ VERB VB _ 8 xcomp _ _ 11 improved _ ADJ JJ _ 12 amod _ _ 12 earnings _ NOUN NNS _ 10 dobj _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 period _ NOUN NN _ 10 nmod _ _ 16 ended _ VERB VBN _ 15 acl _ _ 17 Sept _ PROPN NNP _ 16 nmod:tmod _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 Another _ DET DT _ 3 det _ _ 2 contradictory _ ADJ JJ _ 3 amod _ _ 3 message _ NOUN NN _ 4 nsubj _ _ 4 comes _ VERB VBZ _ 0 root _ _ 5 from _ ADP IN _ 7 case _ _ 6 Businessland _ PROPN NNP _ 7 compound _ _ 7 Inc. _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 computer _ NOUN NN _ 11 compound _ _ 11 retailer _ NOUN NN _ 7 appos _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 July _ PROPN NNP _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 6 nsubj _ _ 6 reported _ VERB VBD _ 0 root _ _ 7 that _ SCONJ IN _ 19 mark _ _ 8 booming _ ADJ JJ _ 9 amod _ _ 9 sales _ NOUN NNS _ 19 nsubj _ _ 10 of _ ADP IN _ 13 case _ _ 11 new _ ADJ JJ _ 13 amod _ _ 12 personal _ ADJ JJ _ 13 amod _ _ 13 computers _ NOUN NNS _ 9 nmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 Apple _ PROPN NNP _ 13 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 IBM _ PROPN NNP _ 15 conj _ _ 18 had _ AUX VBD _ 19 aux _ _ 19 resulted _ VERB VBN _ 6 ccomp _ _ 20 in _ SCONJ IN _ 25 mark _ _ 21 net _ ADJ JJ _ 22 amod _ _ 22 income _ NOUN NN _ 25 nsubj _ _ 23 more _ ADV RBR _ 25 advmod _ _ 24 than _ ADP IN _ 23 case _ _ 25 doubling _ VERB VBG _ 19 advcl _ _ 26 for _ ADP IN _ 29 case _ _ 27 its _ PRON PRP$ _ 29 nmod:poss _ _ 28 fourth _ ADJ JJ _ 29 amod _ _ 29 quarter _ NOUN NN _ 25 nmod _ _ 30 ended _ VERB VBN _ 29 acl _ _ 31 June _ PROPN NNP _ 30 nmod:tmod _ _ 32 30 _ NUM CD _ 31 nummod _ _ 33 to _ ADP TO _ 34 case _ _ 34 $ _ SYM $ _ 25 nmod _ _ 35 7.4 _ NUM CD _ 36 compound _ _ 36 million _ NUM CD _ 34 nummod _ _ 37 , _ PUNCT , _ 34 punct _ _ 38 or _ CONJ CC _ 34 cc _ _ 39 23 _ NUM CD _ 40 nummod _ _ 40 cents _ NOUN NNS _ 34 conj _ _ 41 a _ DET DT _ 42 det _ _ 42 share _ NOUN NN _ 40 nmod:npmod _ _ 43 . _ PUNCT . _ 6 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 month _ NOUN NN _ 7 nmod:tmod _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 however _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Businessland _ PROPN NNP _ 7 nsubj _ _ 7 warned _ VERB VBD _ 0 root _ _ 8 investors _ NOUN NNS _ 7 dobj _ _ 9 that _ SCONJ IN _ 20 mark _ _ 10 results _ NOUN NNS _ 20 nsubj _ _ 11 for _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 first _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 10 nmod _ _ 15 ended _ VERB VBD _ 14 acl _ _ 16 Sept. _ PROPN NNP _ 15 nmod:tmod _ _ 17 30 _ NUM CD _ 16 nummod _ _ 18 had _ AUX VBD _ 20 aux _ _ 19 n't _ PART RB _ 20 neg _ _ 20 met _ VERB VBN _ 7 ccomp _ _ 21 expectations _ NOUN NNS _ 20 dobj _ _ 22 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 expects _ VERB VBZ _ 3 ccomp _ _ 6 earnings _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 11 case _ _ 8 14 _ NUM CD _ 10 compound _ _ 9 to _ ADP TO _ 10 dep _ _ 10 17 _ NUM CD _ 11 nummod _ _ 11 cents _ NOUN NNS _ 6 nmod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 11 nmod:npmod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 down _ ADV RB _ 11 advmod _ _ 16 from _ ADP IN _ 18 case _ _ 17 25 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 year-earlier _ ADJ JJ _ 24 amod _ _ 24 period _ NOUN NN _ 18 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 While _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 4 det _ _ 3 earnings _ NOUN NNS _ 4 compound _ _ 4 picture _ NOUN NN _ 5 nsubj _ _ 5 confuses _ VERB VBZ _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 observers _ NOUN NNS _ 8 nsubj _ _ 8 say _ VERB VBP _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 forces _ NOUN NNS _ 22 nsubj _ _ 12 expected _ VERB VBD _ 11 acl _ _ 13 to _ PART TO _ 14 mark _ _ 14 shape _ VERB VB _ 12 xcomp _ _ 15 the _ DET DT _ 16 det _ _ 16 industry _ NOUN NN _ 14 dobj _ _ 17 in _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 coming _ ADJ JJ _ 20 amod _ _ 20 year _ NOUN NN _ 14 nmod _ _ 21 are _ VERB VBP _ 22 cop _ _ 22 clearer _ ADJ JJR _ 8 ccomp _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 Companies _ NOUN NNS _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 continue _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 war _ VERB VB _ 3 xcomp _ _ 6 over _ ADP IN _ 7 case _ _ 7 standards _ NOUN NNS _ 5 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 computer _ NOUN NN _ 3 compound _ _ 3 publishing _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 a _ DET DT _ 6 det _ _ 6 battle _ NOUN NN _ 10 nsubj _ _ 7 over _ ADP IN _ 8 case _ _ 8 typefaces _ NOUN NNS _ 6 nmod _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 hurting _ VERB VBG _ 0 root _ _ 11 Adobe _ PROPN NNP _ 13 compound _ _ 12 Systems _ PROPN NNP _ 13 compound _ _ 13 Inc. _ PROPN NNP _ 10 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 which _ PRON WDT _ 16 nsubj _ _ 16 sells _ VERB VBZ _ 13 acl:relcl _ _ 17 software _ NOUN NN _ 16 dobj _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 controls _ VERB VBZ _ 17 acl:relcl _ _ 20 the _ DET DT _ 21 det _ _ 21 image _ NOUN NN _ 19 dobj _ _ 22 produced _ VERB VBN _ 21 acl _ _ 23 by _ ADP IN _ 24 case _ _ 24 printers _ NOUN NNS _ 22 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 displays _ NOUN NNS _ 24 conj _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 Until _ ADP IN _ 2 case _ _ 2 recently _ ADV RB _ 5 advcl _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Adobe _ PROPN NNP _ 5 nsubj _ _ 5 had _ VERB VBD _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 lock _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 7 nmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 image _ NOUN NN _ 13 compound _ _ 13 software _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 5 punct _ _ 15 but _ CONJ CC _ 5 cc _ _ 16 last _ ADJ JJ _ 17 amod _ _ 17 month _ NOUN NN _ 27 nmod:tmod _ _ 18 Apple _ PROPN NNP _ 27 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Adobe _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 biggest _ ADJ JJS _ 23 amod _ _ 23 customer _ NOUN NN _ 18 appos _ _ 24 , _ PUNCT , _ 18 punct _ _ 25 and _ CONJ CC _ 18 cc _ _ 26 Microsoft _ PROPN NNP _ 18 conj _ _ 27 rebelled _ VERB VBD _ 5 conj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 Now _ ADV RB _ 6 advmod _ _ 2 the _ DET DT _ 4 det _ _ 3 two _ NUM CD _ 4 nummod _ _ 4 firms _ NOUN NNS _ 6 nsubj _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 collaborating _ VERB VBG _ 0 root _ _ 7 on _ ADP IN _ 9 case _ _ 8 an _ DET DT _ 9 det _ _ 9 alternative _ NOUN NN _ 6 nmod _ _ 10 to _ ADP TO _ 13 case _ _ 11 Adobe _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 approach _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 analysts _ NOUN NNS _ 17 nsubj _ _ 17 say _ VERB VBP _ 6 conj _ _ 18 they _ PRON PRP _ 20 nsubj _ _ 19 are _ VERB VBP _ 20 cop _ _ 20 likely _ ADJ JJ _ 17 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 carry _ VERB VB _ 20 xcomp _ _ 23 IBM _ PROPN NNP _ 22 dobj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 the _ DET DT _ 27 det _ _ 26 biggest _ ADJ JJS _ 27 amod _ _ 27 seller _ NOUN NN _ 23 appos _ _ 28 of _ ADP IN _ 30 case _ _ 29 personal _ ADJ JJ _ 30 amod _ _ 30 computers _ NOUN NNS _ 27 nmod _ _ 31 , _ PUNCT , _ 23 punct _ _ 32 along _ ADV RB _ 22 advmod _ _ 33 with _ ADP IN _ 34 case _ _ 34 them _ PRON PRP _ 32 nmod _ _ 35 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 short-term _ ADJ JJ _ 3 amod _ _ 3 outlook _ NOUN NN _ 11 nsubj _ _ 4 for _ ADP IN _ 7 case _ _ 5 Adobe _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 business _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 however _ ADV RB _ 11 advmod _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 appears _ VERB VBZ _ 0 root _ _ 12 strong _ ADJ JJ _ 11 xcomp _ _ 13 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 beginning _ VERB VBG _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 ship _ VERB VB _ 4 xcomp _ _ 7 a _ DET DT _ 10 det _ _ 8 new _ ADJ JJ _ 10 amod _ _ 9 software _ NOUN NN _ 10 compound _ _ 10 program _ NOUN NN _ 6 dobj _ _ 11 that _ PRON WDT _ 14 nsubjpass _ _ 12 's _ AUX VBZ _ 14 aux _ _ 13 being _ AUX VBG _ 14 auxpass _ _ 14 heralded _ VERB VBN _ 10 acl:relcl _ _ 15 as _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 boon _ NOUN NN _ 14 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 owners _ NOUN NNS _ 17 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 low-end _ ADJ JJ _ 22 amod _ _ 22 printers _ NOUN NNS _ 19 nmod _ _ 23 sold _ VERB VBN _ 22 acl _ _ 24 by _ ADP IN _ 25 case _ _ 25 Apple _ PROPN NNP _ 23 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 program _ NOUN NN _ 4 nsubjpass _ _ 3 is _ AUX VBZ _ 4 auxpass _ _ 4 aimed _ VERB VBN _ 0 root _ _ 5 at _ SCONJ IN _ 6 mark _ _ 6 improving _ VERB VBG _ 4 advcl _ _ 7 the _ DET DT _ 8 det _ _ 8 quality _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 printed _ ADJ JJ _ 11 amod _ _ 11 material _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 John _ PROPN NNP _ 2 compound _ _ 2 Warnock _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Adobe _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ JJ _ 8 amod _ _ 8 officer _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 said _ VERB VBD _ 0 root _ _ 11 the _ DET DT _ 17 det _ _ 12 Mountain _ PROPN NNP _ 17 dep _ _ 13 View _ PROPN NNP _ 12 compound _ _ 14 , _ PUNCT , _ 12 punct _ _ 15 Calif. _ PROPN NNP _ 12 dep _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 company _ NOUN NN _ 20 nsubj _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 been _ AUX VBN _ 20 aux _ _ 20 receiving _ VERB VBG _ 10 ccomp _ _ 21 1,000 _ NUM CD _ 22 nummod _ _ 22 calls _ NOUN NNS _ 20 dobj _ _ 23 a _ DET DT _ 24 det _ _ 24 day _ NOUN NN _ 22 nmod:npmod _ _ 25 about _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 product _ NOUN NN _ 22 nmod _ _ 28 since _ SCONJ IN _ 31 mark _ _ 29 it _ PRON PRP _ 31 nsubjpass _ _ 30 was _ AUX VBD _ 31 auxpass _ _ 31 demonstrated _ VERB VBN _ 20 advcl _ _ 32 at _ ADP IN _ 36 case _ _ 33 a _ DET DT _ 36 det _ _ 34 computer _ NOUN NN _ 36 compound _ _ 35 publishing _ NOUN NN _ 36 compound _ _ 36 conference _ NOUN NN _ 31 nmod _ _ 37 several _ ADJ JJ _ 38 amod _ _ 38 weeks _ NOUN NNS _ 39 nmod:npmod _ _ 39 ago _ ADV RB _ 31 advmod _ _ 40 . _ PUNCT . _ 10 punct _ _ 1 Meanwhile _ ADV RB _ 18 advmod _ _ 2 , _ PUNCT , _ 18 punct _ _ 3 competition _ NOUN NN _ 18 nsubj _ _ 4 between _ ADP IN _ 7 case _ _ 5 various _ ADJ JJ _ 7 amod _ _ 6 operating _ NOUN NN _ 7 compound _ _ 7 systems _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 10 nsubj _ _ 10 control _ VERB VBP _ 7 acl:relcl _ _ 11 the _ DET DT _ 13 det _ _ 12 basic _ ADJ JJ _ 13 amod _ _ 13 functions _ NOUN NNS _ 10 dobj _ _ 14 of _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 computer _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 spells _ VERB VBZ _ 0 root _ _ 19 trouble _ NOUN NN _ 18 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 software _ NOUN NN _ 22 compound _ _ 22 firms _ NOUN NNS _ 19 nmod _ _ 23 generally _ ADV RB _ 22 advmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 creates _ VERB VBZ _ 12 ccomp _ _ 4 uncertainty _ NOUN NN _ 3 dobj _ _ 5 and _ CONJ CC _ 3 cc _ _ 6 usually _ ADV RB _ 7 advmod _ _ 7 slows _ VERB VBZ _ 3 conj _ _ 8 down _ ADP RP _ 7 compound:prt _ _ 9 sales _ NOUN NNS _ 7 dobj _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Russ _ PROPN NNP _ 14 compound _ _ 14 Crabs _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 an _ DET DT _ 17 det _ _ 17 analyst _ NOUN NN _ 14 appos _ _ 18 at _ ADP IN _ 21 case _ _ 19 Soundview _ PROPN NNP _ 21 compound _ _ 20 Financial _ PROPN NNP _ 21 compound _ _ 21 Group _ PROPN NNP _ 17 nmod _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Crabs _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 this _ PRON DT _ 11 nsubj _ _ 5 probably _ ADV RB _ 11 advmod _ _ 6 is _ VERB VBZ _ 11 cop _ _ 7 behind _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 expected _ ADJ JJ _ 11 amod _ _ 10 weak _ ADJ JJ _ 11 amod _ _ 11 performance _ NOUN NN _ 3 ccomp _ _ 12 of _ ADP IN _ 14 case _ _ 13 Aldus _ PROPN NNP _ 14 compound _ _ 14 Corp. _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 maker _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 23 case _ _ 18 a _ DET DT _ 23 det _ _ 19 widely _ ADV RB _ 20 advmod _ _ 20 used _ VERB VBN _ 23 amod _ _ 21 computer _ NOUN NN _ 23 compound _ _ 22 publishing _ NOUN NN _ 23 compound _ _ 23 program _ NOUN NN _ 16 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 Aldus _ PROPN NNP _ 2 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 report _ VERB VB _ 2 xcomp _ _ 6 earnings _ NOUN NNS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 21 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 6 nmod _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 on _ ADP IN _ 13 case _ _ 13 revenues _ NOUN NNS _ 6 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 19.5 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 for _ ADP IN _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 6 nmod _ _ 22 , _ PUNCT , _ 6 punct _ _ 23 compared _ VERB VBN _ 25 case _ _ 24 with _ ADP IN _ 25 case _ _ 25 earnings _ NOUN NNS _ 6 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 30 _ NUM CD _ 28 nummod _ _ 28 cents _ NOUN NNS _ 25 nmod _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 on _ ADP IN _ 32 case _ _ 32 revenue _ NOUN NN _ 25 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 20.4 _ NUM CD _ 35 compound _ _ 35 million _ NUM CD _ 32 nmod _ _ 36 in _ ADP IN _ 39 case _ _ 37 the _ DET DT _ 39 det _ _ 38 year-earlier _ ADJ JJ _ 39 amod _ _ 39 period _ NOUN NN _ 25 nmod _ _ 40 . _ PUNCT . _ 2 punct _ _ 1 Aldus _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 6 nsubjpass _ _ 3 could _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 reached _ VERB VBN _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 comment _ NOUN NN _ 6 nmod _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 other _ ADJ JJ _ 4 amod _ _ 4 hand _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 battle _ NOUN NN _ 12 nsubjpass _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 bus _ NOUN NN _ 7 nmod _ _ 11 is _ AUX VBZ _ 12 auxpass _ _ 12 expected _ VERB VBN _ 0 root _ _ 13 to _ PART TO _ 14 mark _ _ 14 grow _ VERB VB _ 12 xcomp _ _ 15 increasingly _ ADV RB _ 16 advmod _ _ 16 irrelevant _ ADJ JJ _ 14 xcomp _ _ 17 . _ PUNCT . _ 12 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 bus _ NOUN NN _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 data _ NOUN NNS _ 6 compound _ _ 6 highway _ NOUN NN _ 0 root _ _ 7 within _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 computer _ NOUN NN _ 6 nmod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 IBM _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 backing _ VERB VBG _ 0 root _ _ 4 one _ NUM CD _ 5 nummod _ _ 5 type _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 bus _ NOUN NN _ 5 nmod _ _ 8 called _ VERB VBD _ 5 acl _ _ 9 microchannel _ ADJ JJ _ 8 xcomp _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 while _ SCONJ IN _ 27 mark _ _ 12 the _ DET DT _ 17 det _ _ 13 nine _ NUM CD _ 17 nummod _ _ 14 other _ ADJ JJ _ 17 amod _ _ 15 leading _ ADJ JJ _ 17 amod _ _ 16 computer _ NOUN NN _ 17 compound _ _ 17 makers _ NOUN NNS _ 27 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 including _ VERB VBG _ 20 case _ _ 20 H-P _ PROPN NNP _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Compaq _ PROPN NNP _ 24 compound _ _ 23 Computer _ PROPN NNP _ 24 compound _ _ 24 Corp. _ PROPN NNP _ 20 conj _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 have _ AUX VBP _ 27 aux _ _ 27 chosen _ VERB VBN _ 3 advcl _ _ 28 another _ DET DT _ 29 det _ _ 29 method _ NOUN NN _ 27 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Users _ NOUN NNS _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 care _ VERB VB _ 11 ccomp _ _ 6 about _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 bus _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 Daniel _ PROPN NNP _ 13 compound _ _ 13 Benton _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 an _ DET DT _ 16 det _ _ 16 analyst _ NOUN NN _ 13 appos _ _ 17 at _ ADP IN _ 18 case _ _ 18 Goldman _ PROPN NNP _ 16 nmod _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 Sachs _ PROPN NNP _ 18 conj _ _ 21 & _ CONJ CC _ 18 cc _ _ 22 Co _ PROPN NNP _ 18 conj _ _ 23 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Apple _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 family _ NOUN NN _ 13 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 Macintosh _ PROPN NNP _ 8 compound _ _ 8 computers _ NOUN NNS _ 5 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 for _ ADP IN _ 11 case _ _ 11 instance _ NOUN NN _ 13 nmod _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 uses _ VERB VBZ _ 2 dep _ _ 14 four _ NUM CD _ 16 nummod _ _ 15 different _ ADJ JJ _ 16 amod _ _ 16 buses _ NOUN NNS _ 13 dobj _ _ 17 `` _ PUNCT `` _ 13 punct _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 no _ DET DT _ 20 neg _ _ 20 one _ NOUN NN _ 21 nsubj _ _ 21 seems _ VERB VBZ _ 13 conj _ _ 22 to _ PART TO _ 23 mark _ _ 23 mind _ VERB VB _ 21 xcomp _ _ 24 . _ PUNCT . _ 2 punct _ _ 25 '' _ PUNCT '' _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 gap _ NOUN NN _ 8 nsubj _ _ 3 between _ ADP IN _ 4 case _ _ 4 winners _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 laggards _ NOUN NNS _ 4 conj _ _ 7 will _ AUX MD _ 8 aux _ _ 8 grow _ VERB VB _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 personal _ ADJ JJ _ 3 amod _ _ 3 computers _ NOUN NNS _ 11 nmod _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 Apple _ PROPN NNP _ 11 nsubjpass _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Compaq _ PROPN NNP _ 5 conj _ _ 8 and _ CONJ CC _ 5 cc _ _ 9 IBM _ PROPN NNP _ 5 conj _ _ 10 are _ AUX VBP _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 tighten _ VERB VB _ 11 xcomp _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 hold _ NOUN NN _ 13 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 their _ PRON PRP$ _ 18 nmod:poss _ _ 18 business _ NOUN NN _ 15 nmod _ _ 19 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 second-tier _ ADJ JJ _ 7 amod _ _ 7 firms _ NOUN NNS _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 continue _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 lose _ VERB VB _ 9 xcomp _ _ 12 ground _ NOUN NN _ 11 dobj _ _ 13 . _ PUNCT . _ 9 punct _ _ 1 Some _ DET DT _ 3 det _ _ 2 lagging _ VERB VBG _ 3 amod _ _ 3 competitors _ NOUN NNS _ 6 nsubj _ _ 4 even _ ADV RB _ 6 advmod _ _ 5 may _ AUX MD _ 6 aux _ _ 6 leave _ VERB VB _ 0 root _ _ 7 the _ DET DT _ 10 det _ _ 8 personal _ ADJ JJ _ 10 amod _ _ 9 computer _ NOUN NN _ 10 compound _ _ 10 business _ NOUN NN _ 6 dobj _ _ 11 altogether _ ADV RB _ 6 advmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Wyse _ PROPN NNP _ 2 compound _ _ 2 Technology _ PROPN NNP _ 8 nsubjpass _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 for _ ADP IN _ 5 case _ _ 5 instance _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 considered _ VERB VBN _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 candidate _ NOUN NN _ 8 xcomp _ _ 11 to _ PART TO _ 12 mark _ _ 12 sell _ VERB VB _ 10 acl _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 troubled _ ADJ JJ _ 15 amod _ _ 15 operation _ NOUN NN _ 12 dobj _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 Wyse _ PROPN NNP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 done _ VERB VBN _ 21 ccomp _ _ 5 well _ ADV RB _ 4 advmod _ _ 6 establishing _ VERB VBG _ 4 xcomp _ _ 7 a _ DET DT _ 9 det _ _ 8 distribution _ NOUN NN _ 9 compound _ _ 9 business _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 but _ CONJ CC _ 4 cc _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 have _ AUX VBP _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 delivered _ VERB VBN _ 4 conj _ _ 16 products _ NOUN NNS _ 15 dobj _ _ 17 that _ PRON WDT _ 18 nsubj _ _ 18 sell _ VERB VBP _ 16 acl:relcl _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Kimball _ PROPN NNP _ 23 compound _ _ 23 Brown _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 an _ DET DT _ 26 det _ _ 26 analyst _ NOUN NN _ 23 appos _ _ 27 at _ ADP IN _ 29 case _ _ 28 Prudential-Bache _ PROPN NNP _ 29 compound _ _ 29 Securities _ PROPN NNP _ 26 nmod _ _ 30 . _ PUNCT . _ 21 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Brown _ PROPN NNP _ 3 nsubj _ _ 3 estimates _ VERB VBZ _ 0 root _ _ 4 Wyse _ PROPN NNP _ 13 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 whose _ PRON WP$ _ 8 nmod:poss _ _ 7 terminals _ NOUN NNS _ 8 compound _ _ 8 business _ NOUN NN _ 10 nsubj _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 strong _ ADJ JJ _ 4 acl:relcl _ _ 11 , _ PUNCT , _ 4 punct _ _ 12 will _ AUX MD _ 13 aux _ _ 13 report _ VERB VB _ 3 ccomp _ _ 14 a _ DET DT _ 15 det _ _ 15 loss _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 18 case _ _ 17 12 _ NUM CD _ 18 nummod _ _ 18 cents _ NOUN NNS _ 15 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 for _ ADP IN _ 23 case _ _ 22 its _ PRON PRP$ _ 23 nmod:poss _ _ 23 quarter _ NOUN NN _ 15 nmod _ _ 24 ended _ VERB VBN _ 23 acl _ _ 25 Sept _ PROPN NNP _ 24 nmod:tmod _ _ 26 . _ PUNCT . _ 3 punct _ _ 1 Personal-computer _ NOUN NN _ 2 compound _ _ 2 makers _ NOUN NNS _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 continue _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 eat _ VERB VB _ 4 xcomp _ _ 7 away _ ADP RP _ 6 compound:prt _ _ 8 at _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 business _ NOUN NN _ 6 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 more _ ADV RBR _ 13 advmod _ _ 13 traditional _ ADJ JJ _ 15 amod _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 firms _ NOUN NNS _ 10 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Ever-more _ ADV RB _ 2 advmod _ _ 2 powerful _ ADJ JJ _ 4 amod _ _ 3 desk-top _ ADJ JJ _ 4 amod _ _ 4 computers _ NOUN NNS _ 19 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 designed _ VERB VBN _ 4 acl _ _ 7 with _ ADP IN _ 11 case _ _ 8 one _ NUM CD _ 11 nummod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 more _ ADJ JJR _ 8 conj _ _ 11 microprocessors _ NOUN NNS _ 6 nmod _ _ 12 as _ ADP IN _ 15 case _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 brains _ NOUN NNS _ 11 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 18 are _ AUX VBP _ 19 auxpass _ _ 19 expected _ VERB VBN _ 0 root _ _ 20 to _ PART TO _ 22 mark _ _ 21 increasingly _ ADV RB _ 22 advmod _ _ 22 take _ VERB VB _ 19 xcomp _ _ 23 on _ ADP RP _ 24 dep _ _ 24 functions _ NOUN NNS _ 22 nmod _ _ 25 carried _ VERB VBN _ 24 acl _ _ 26 out _ ADP RP _ 25 compound:prt _ _ 27 by _ ADP IN _ 30 case _ _ 28 more _ ADV RBR _ 29 advmod _ _ 29 expensive _ ADJ JJ _ 30 amod _ _ 30 minicomputers _ NOUN NNS _ 25 nmod _ _ 31 and _ CONJ CC _ 30 cc _ _ 32 mainframes _ NOUN NNS _ 30 conj _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 guys _ NOUN NNS _ 11 nsubjpass _ _ 4 that _ PRON WDT _ 5 nsubj _ _ 5 make _ VERB VBP _ 3 acl:relcl _ _ 6 traditional _ ADJ JJ _ 7 amod _ _ 7 hardware _ NOUN NN _ 5 dobj _ _ 8 are _ AUX VBP _ 11 aux _ _ 9 really _ ADV RB _ 11 advmod _ _ 10 being _ AUX VBG _ 11 auxpass _ _ 11 obsoleted _ VERB VBN _ 17 ccomp _ _ 12 by _ ADP IN _ 14 case _ _ 13 microprocessor-based _ ADJ JJ _ 14 amod _ _ 14 machines _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 Mr. _ PROPN NNP _ 19 compound _ _ 19 Benton _ PROPN NNP _ 17 nsubj _ _ 20 . _ PUNCT . _ 17 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 result _ NOUN NN _ 18 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 this _ DET DT _ 6 det _ _ 6 trend _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 18 punct _ _ 8 longtime _ ADJ JJ _ 10 amod _ _ 9 powerhouses _ NOUN NNS _ 10 dep _ _ 10 H-P _ PROPN NNP _ 18 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 IBM _ PROPN NNP _ 10 conj _ _ 13 and _ CONJ CC _ 10 cc _ _ 14 Digital _ PROPN NNP _ 16 compound _ _ 15 Equipment _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 10 conj _ _ 17 are _ AUX VBP _ 18 aux _ _ 18 scrambling _ VERB VBG _ 0 root _ _ 19 to _ PART TO _ 20 mark _ _ 20 counterattack _ VERB VB _ 18 xcomp _ _ 21 with _ ADP IN _ 23 case _ _ 22 microprocessor-based _ ADJ JJ _ 23 amod _ _ 23 systems _ NOUN NNS _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 their _ PRON PRP$ _ 26 nmod:poss _ _ 26 own _ ADJ JJ _ 23 nmod _ _ 27 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 they _ PRON PRP _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 have _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 act _ VERB VB _ 4 xcomp _ _ 7 quickly _ ADV RB _ 6 advmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Benton _ PROPN NNP _ 3 nsubj _ _ 3 expects _ VERB VBZ _ 0 root _ _ 4 Compaq _ PROPN NNP _ 3 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 unveil _ VERB VB _ 3 xcomp _ _ 7 a _ DET DT _ 8 det _ _ 8 family _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 12 case _ _ 10 high-end _ ADJ JJ _ 12 amod _ _ 11 personal _ ADJ JJ _ 12 amod _ _ 12 computers _ NOUN NNS _ 8 nmod _ _ 13 later _ ADV RB _ 15 advmod _ _ 14 this _ DET DT _ 15 det _ _ 15 year _ NOUN NN _ 6 nmod:tmod _ _ 16 that _ PRON WDT _ 18 nsubj _ _ 17 are _ VERB VBP _ 18 cop _ _ 18 powerful _ ADJ JJ _ 6 dep _ _ 19 enough _ ADV RB _ 18 advmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 serve _ VERB VB _ 18 xcomp _ _ 22 as _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 hub _ NOUN NN _ 21 nmod _ _ 25 for _ ADP IN _ 26 case _ _ 26 communications _ NOUN NNS _ 24 nmod _ _ 27 within _ ADP IN _ 29 case _ _ 28 large _ ADJ JJ _ 29 amod _ _ 29 networks _ NOUN NNS _ 26 nmod _ _ 30 of _ ADP IN _ 32 case _ _ 31 desk-top _ ADJ JJ _ 32 amod _ _ 32 machines _ NOUN NNS _ 29 nmod _ _ 33 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 raft _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 new _ ADJ JJ _ 6 amod _ _ 5 computer _ NOUN NN _ 6 compound _ _ 6 companies _ NOUN NNS _ 2 nmod _ _ 7 also _ ADV RB _ 9 advmod _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 targeted _ VERB VBN _ 0 root _ _ 10 this _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 server _ NOUN NN _ 14 compound _ _ 13 '' _ PUNCT '' _ 14 punct _ _ 14 market _ NOUN NN _ 9 dobj _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Population _ NOUN NN _ 2 compound _ _ 2 Drain _ NOUN NN _ 3 nsubj _ _ 3 Ends _ VERB VBZ _ 0 root _ _ 4 For _ ADP IN _ 6 case _ _ 5 Midwestern _ ADJ JJ _ 6 amod _ _ 6 States _ NOUN NNS _ 3 nmod _ _ 1 IOWA _ PROPN NNP _ 3 nsubj _ _ 2 IS _ AUX VBZ _ 3 aux _ _ 3 MAKING _ VERB VBG _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 comeback _ NOUN NN _ 3 dobj _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 So _ ADV RB _ 2 advmod _ _ 2 are _ VERB VBP _ 0 root _ _ 3 Indiana _ PROPN NNP _ 2 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Ohio _ PROPN NNP _ 3 conj _ _ 6 and _ CONJ CC _ 3 cc _ _ 7 Michigan _ PROPN NNP _ 3 conj _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 population _ NOUN NN _ 10 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 all _ DET DT _ 6 det _ _ 5 four _ NUM CD _ 6 nummod _ _ 6 states _ NOUN NNS _ 2 nmod _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 upswing _ NOUN NN _ 0 root _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 according _ VERB VBG _ 17 case _ _ 13 to _ ADP TO _ 12 mwe _ _ 14 new _ ADJ JJ _ 17 amod _ _ 15 Census _ PROPN NNP _ 17 compound _ _ 16 Bureau _ PROPN NNP _ 17 compound _ _ 17 estimates _ NOUN NNS _ 10 nmod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 following _ VERB VBG _ 20 case _ _ 20 declines _ NOUN NNS _ 10 nmod _ _ 21 throughout _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 early _ ADJ JJ _ 24 amod _ _ 24 1980s _ NOUN NNS _ 20 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 gains _ NOUN NNS _ 10 nsubj _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 to _ PART TO _ 6 mark _ _ 5 be _ VERB VB _ 6 cop _ _ 6 sure _ ADJ JJ _ 10 dep _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 are _ VERB VBP _ 10 cop _ _ 9 rather _ ADV RB _ 10 advmod _ _ 10 small _ ADJ JJ _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 Iowa _ PROPN NNP _ 6 nsubj _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 for _ ADP IN _ 4 case _ _ 4 instance _ NOUN NN _ 6 nmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 saw _ VERB VBD _ 26 ccomp _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 population _ NOUN NN _ 9 nsubj _ _ 9 grow _ VERB VB _ 6 ccomp _ _ 10 by _ ADP IN _ 12 case _ _ 11 11,000 _ NUM CD _ 12 nummod _ _ 12 people _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 0.4 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 conj _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 between _ ADP IN _ 19 case _ _ 19 1987 _ NUM CD _ 9 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 1988 _ NUM CD _ 19 conj _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 Census _ PROPN NNP _ 25 compound _ _ 25 Bureau _ PROPN NNP _ 26 nsubj _ _ 26 says _ VERB VBZ _ 0 root _ _ 27 . _ PUNCT . _ 26 punct _ _ 1 Still _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 even _ ADV RB _ 6 advmod _ _ 4 that _ DET DT _ 6 det _ _ 5 modest _ ADJ JJ _ 6 amod _ _ 6 increase _ NOUN NN _ 9 nsubj _ _ 7 is _ VERB VBZ _ 9 cop _ _ 8 good _ ADJ JJ _ 9 amod _ _ 9 news _ NOUN NN _ 0 root _ _ 10 for _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 state _ NOUN NN _ 9 nmod _ _ 13 that _ PRON WDT _ 16 nsubj _ _ 14 had _ AUX VBD _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 grown _ VERB VBN _ 12 acl:relcl _ _ 17 at _ ADP IN _ 18 case _ _ 18 all _ DET DT _ 16 nmod _ _ 19 since _ ADP IN _ 20 case _ _ 20 1981 _ NUM CD _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Between _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 11 nmod _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 1988 _ NUM CD _ 2 conj _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 North _ PROPN NNP _ 7 compound _ _ 7 Dakota _ PROPN NNP _ 11 nsubj _ _ 8 was _ VERB VBD _ 11 cop _ _ 9 the _ DET DT _ 11 det _ _ 10 only _ ADJ JJ _ 11 amod _ _ 11 state _ NOUN NN _ 0 root _ _ 12 in _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 Midwest _ ADJ JJS _ 11 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 lose _ VERB VB _ 11 acl _ _ 17 population _ NOUN NN _ 16 dobj _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 a _ DET DT _ 20 det _ _ 20 loss _ NOUN NN _ 16 nmod:npmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 4,000 _ NUM CD _ 23 nummod _ _ 23 people _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 Six _ NUM CD _ 9 nsubj _ _ 2 of _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 12 _ NUM CD _ 6 nummod _ _ 5 midwestern _ ADJ JJ _ 6 amod _ _ 6 states _ NOUN NNS _ 1 nmod _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 growing _ VERB VBG _ 0 root _ _ 10 steadily _ ADV RB _ 9 advmod _ _ 11 since _ ADP IN _ 12 case _ _ 12 1980 _ NUM CD _ 9 nmod _ _ 13 -- _ PUNCT : _ 9 punct _ _ 14 Illinois _ PROPN NNP _ 9 dep _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Kansas _ PROPN NNP _ 14 conj _ _ 17 , _ PUNCT , _ 14 punct _ _ 18 Minnesota _ PROPN NNP _ 14 conj _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 Missouri _ PROPN NNP _ 14 conj _ _ 21 , _ PUNCT , _ 14 punct _ _ 22 South _ PROPN NNP _ 23 compound _ _ 23 Dakota _ PROPN NNP _ 14 conj _ _ 24 and _ CONJ CC _ 14 cc _ _ 25 Wisconsin _ PROPN NNP _ 14 conj _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Northeast _ PROPN NNP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 holding _ VERB VBG _ 0 root _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 own _ ADJ JJ _ 5 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 population _ NOUN NN _ 11 compound _ _ 11 race _ NOUN NN _ 5 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 Seven _ NUM CD _ 6 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 nine _ NUM CD _ 4 nummod _ _ 4 states _ NOUN NNS _ 1 nmod _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 grown _ VERB VBN _ 0 root _ _ 7 each _ DET DT _ 8 det _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 since _ ADP IN _ 10 case _ _ 10 1980 _ NUM CD _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 including _ VERB VBG _ 14 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 lost _ VERB VBD _ 14 acl:relcl _ _ 18 4 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 population _ NOUN NN _ 19 nmod _ _ 23 during _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 1970s _ NOUN NNS _ 17 nmod _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 And _ CONJ CC _ 16 cc _ _ 2 although _ SCONJ IN _ 6 mark _ _ 3 Pennsylvania _ PROPN NNP _ 6 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 Massachusetts _ PROPN NNP _ 3 conj _ _ 6 suffered _ VERB VBD _ 16 advcl _ _ 7 slight _ ADJ JJ _ 8 amod _ _ 8 declines _ NOUN NNS _ 6 dobj _ _ 9 earlier _ ADV RBR _ 6 advmod _ _ 10 in _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 decade _ NOUN NN _ 9 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 they _ PRON PRP _ 16 nsubj _ _ 15 are _ AUX VBP _ 16 aux _ _ 16 growing _ VERB VBG _ 0 root _ _ 17 again _ ADV RB _ 16 advmod _ _ 18 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 same _ ADJ JJ _ 4 amod _ _ 4 time _ NOUN NN _ 14 nmod _ _ 5 , _ PUNCT , _ 14 punct _ _ 6 several _ ADJ JJ _ 7 amod _ _ 7 states _ NOUN NNS _ 14 nsubj _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 South _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 West _ PROPN NNP _ 10 conj _ _ 13 have _ AUX VBP _ 14 aux _ _ 14 had _ VERB VBN _ 0 root _ _ 15 their _ PRON PRP$ _ 18 nmod:poss _ _ 16 own _ ADJ JJ _ 18 amod _ _ 17 population _ NOUN NN _ 18 compound _ _ 18 turnaround _ NOUN NN _ 14 dobj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 Seven _ NUM CD _ 2 nummod _ _ 2 states _ NOUN NNS _ 11 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 grew _ VERB VBD _ 2 acl:relcl _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 early _ ADJ JJ _ 8 amod _ _ 8 1980s _ NOUN NNS _ 4 nmod _ _ 9 are _ AUX VBP _ 11 aux _ _ 10 now _ ADV RB _ 11 advmod _ _ 11 losing _ VERB VBG _ 0 root _ _ 12 population _ NOUN NN _ 11 dobj _ _ 13 -- _ PUNCT : _ 11 punct _ _ 14 West _ PROPN NNP _ 15 compound _ _ 15 Virginia _ PROPN NNP _ 11 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Mississippi _ PROPN NNP _ 15 conj _ _ 18 , _ PUNCT , _ 15 punct _ _ 19 Louisiana _ PROPN NNP _ 15 conj _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 Oklahoma _ PROPN NNP _ 15 conj _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 Montana _ PROPN NNP _ 15 conj _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 Wyoming _ PROPN NNP _ 15 conj _ _ 26 and _ CONJ CC _ 15 cc _ _ 27 Alaska _ PROPN NNP _ 15 conj _ _ 28 . _ PUNCT . _ 11 punct _ _ 1 Overall _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 though _ ADV RB _ 10 advmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 South _ PROPN NNP _ 10 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 West _ PROPN NNP _ 6 conj _ _ 9 still _ ADV RB _ 10 advmod _ _ 10 outpace _ VERB VBP _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 Northeast _ PROPN NNP _ 10 dobj _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 Midwest _ PROPN NNP _ 12 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 fast-growing _ ADJ JJ _ 18 amod _ _ 18 states _ NOUN NNS _ 23 nsubj _ _ 19 like _ ADP IN _ 20 case _ _ 20 Florida _ PROPN NNP _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 California _ PROPN NNP _ 20 conj _ _ 23 ensure _ VERB VBP _ 10 conj _ _ 24 that _ SCONJ IN _ 28 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 pattern _ NOUN NN _ 28 nsubj _ _ 27 will _ AUX MD _ 28 aux _ _ 28 continue _ VERB VB _ 23 ccomp _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 growth _ NOUN NN _ 4 compound _ _ 4 gap _ NOUN NN _ 14 nsubj _ _ 5 between _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 Sun _ PROPN NNP _ 8 compound _ _ 8 Belt _ PROPN NNP _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 regions _ NOUN NNS _ 8 conj _ _ 12 has _ AUX VBZ _ 14 aux _ _ 13 clearly _ ADV RB _ 14 advmod _ _ 14 started _ VERB VBN _ 0 root _ _ 15 narrowing _ VERB VBG _ 14 xcomp _ _ 16 . _ PUNCT . _ 14 punct _ _ 1 More _ ADJ JJR _ 3 nsubj _ _ 2 Elderly _ ADJ JJ _ 1 amod _ _ 3 Maintain _ VERB VBP _ 0 root _ _ 4 Their _ PRON PRP$ _ 5 nmod:poss _ _ 5 Independence _ NOUN NN _ 3 dobj _ _ 1 THANKS _ NOUN NNS _ 9 dep _ _ 2 TO _ ADP TO _ 4 case _ _ 3 modern _ ADJ JJ _ 4 amod _ _ 4 medicine _ NOUN NN _ 1 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 more _ ADJ JJR _ 7 amod _ _ 7 couples _ NOUN NNS _ 9 nsubj _ _ 8 are _ AUX VBP _ 9 aux _ _ 9 growing _ VERB VBG _ 0 root _ _ 10 old _ ADJ JJ _ 9 xcomp _ _ 11 together _ ADV RB _ 9 advmod _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 And _ CONJ CC _ 13 cc _ _ 2 even _ ADV RB _ 4 advmod _ _ 3 after _ SCONJ IN _ 4 mark _ _ 4 losing _ VERB VBG _ 13 advcl _ _ 5 a _ DET DT _ 6 det _ _ 6 spouse _ NOUN NN _ 4 dobj _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 more _ ADJ JJR _ 13 nsubj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 elderly _ ADJ JJ _ 8 nmod _ _ 12 are _ AUX VBP _ 13 aux _ _ 13 staying _ VERB VBG _ 0 root _ _ 14 independent _ ADJ JJ _ 13 xcomp _ _ 15 . _ PUNCT . _ 13 punct _ _ 1 A _ DET DT _ 5 det _ _ 2 new _ ADJ JJ _ 5 amod _ _ 3 Census _ PROPN NNP _ 5 compound _ _ 4 Bureau _ PROPN NNP _ 5 compound _ _ 5 study _ NOUN NN _ 10 nsubj _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 noninstitutionalized _ ADJ JJ _ 9 amod _ _ 9 population _ NOUN NN _ 5 nmod _ _ 10 shows _ VERB VBZ _ 0 root _ _ 11 that _ SCONJ IN _ 21 mark _ _ 12 64 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 21 nsubj _ _ 14 of _ ADP IN _ 15 case _ _ 15 people _ NOUN NNS _ 13 nmod _ _ 16 aged _ VERB VBN _ 15 amod _ _ 17 65 _ NUM CD _ 19 nummod _ _ 18 to _ ADP TO _ 19 dep _ _ 19 74 _ NUM CD _ 16 dep _ _ 20 were _ AUX VBD _ 21 aux _ _ 21 living _ VERB VBG _ 10 ccomp _ _ 22 with _ ADP IN _ 24 case _ _ 23 a _ DET DT _ 24 det _ _ 24 spouse _ NOUN NN _ 21 nmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 1988 _ NUM CD _ 21 nmod _ _ 27 , _ PUNCT , _ 21 punct _ _ 28 up _ ADV RB _ 21 advmod _ _ 29 from _ ADP IN _ 31 case _ _ 30 59 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 28 nmod _ _ 32 in _ ADP IN _ 33 case _ _ 33 1970 _ NUM CD _ 31 nmod _ _ 34 . _ PUNCT . _ 10 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 does _ AUX VBZ _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 mean _ VERB VB _ 0 root _ _ 5 they _ PRON PRP _ 8 nsubj _ _ 6 're _ VERB VBP _ 8 cop _ _ 7 less _ ADV RBR _ 8 advmod _ _ 8 likely _ ADJ JJ _ 4 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 live _ VERB VB _ 8 xcomp _ _ 11 alone _ ADV RB _ 10 advmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 however _ ADV RB _ 4 advmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 share _ NOUN NN _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 remained _ VERB VBN _ 0 root _ _ 5 at _ ADP IN _ 8 case _ _ 6 about _ ADV RB _ 7 advmod _ _ 7 24 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 4 nmod _ _ 9 since _ ADP IN _ 10 case _ _ 10 1970 _ NUM CD _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 changed _ VERB VBN _ 4 csubj _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 12 mark _ _ 6 more _ ADJ JJR _ 12 nsubj _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 young _ ADJ JJ _ 10 amod _ _ 10 elderly _ ADJ JJ _ 6 nmod _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 living _ VERB VBG _ 4 ccomp _ _ 13 with _ ADP IN _ 14 case _ _ 14 spouses _ NOUN NNS _ 12 nmod _ _ 15 rather _ ADV RB _ 14 cc _ _ 16 than _ ADP IN _ 15 mwe _ _ 17 with _ ADP IN _ 19 case _ _ 18 other _ ADJ JJ _ 19 amod _ _ 19 relatives _ NOUN NNS _ 14 conj _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 such _ ADJ JJ _ 23 case _ _ 22 as _ ADP IN _ 21 mwe _ _ 23 children _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1988 _ NUM CD _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 10 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 12 nsubj _ _ 6 of _ ADP IN _ 7 case _ _ 7 those _ PRON DT _ 5 nmod _ _ 8 aged _ VERB VBN _ 7 amod _ _ 9 65 _ NUM CD _ 11 nummod _ _ 10 to _ ADP TO _ 11 dep _ _ 11 74 _ NUM CD _ 8 dep _ _ 12 lived _ VERB VBD _ 0 root _ _ 13 with _ ADP IN _ 14 case _ _ 14 relatives _ NOUN NNS _ 12 nmod _ _ 15 other _ ADJ JJ _ 14 amod _ _ 16 than _ ADP IN _ 17 case _ _ 17 spouses _ NOUN NNS _ 15 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 down _ ADV RB _ 12 advmod _ _ 20 from _ ADP IN _ 22 case _ _ 21 15 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 19 nmod _ _ 23 in _ ADP IN _ 24 case _ _ 24 1970 _ NUM CD _ 22 nmod _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 people _ NOUN NNS _ 3 nsubj _ _ 3 get _ VERB VB _ 8 advcl _ _ 4 even _ ADV RB _ 5 advmod _ _ 5 older _ ADJ JJR _ 3 xcomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 many _ ADJ JJ _ 8 nsubj _ _ 8 become _ VERB VBP _ 0 root _ _ 9 widowed _ ADJ JJ _ 8 xcomp _ _ 10 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 16 cc _ _ 2 even _ ADV RB _ 4 advmod _ _ 3 among _ ADP IN _ 4 case _ _ 4 those _ PRON DT _ 16 nmod _ _ 5 aged _ VERB VBN _ 4 amod _ _ 6 75 _ NUM CD _ 5 dep _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 older _ ADJ JJR _ 5 conj _ _ 9 , _ PUNCT , _ 16 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 16 nsubj _ _ 12 living _ VERB VBG _ 11 acl _ _ 13 with _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 spouse _ NOUN NN _ 12 nmod _ _ 16 rose _ VERB VBD _ 0 root _ _ 17 slightly _ ADV RB _ 16 advmod _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 to _ ADP TO _ 21 case _ _ 20 40 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 16 nmod _ _ 22 in _ ADP IN _ 23 case _ _ 23 1988 _ NUM CD _ 21 nmod _ _ 24 from _ ADP IN _ 26 case _ _ 25 38 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 16 nmod _ _ 27 in _ ADP IN _ 28 case _ _ 28 1970 _ NUM CD _ 26 nmod _ _ 29 . _ PUNCT . _ 16 punct _ _ 1 Like _ ADP IN _ 4 case _ _ 2 their _ PRON PRP$ _ 4 nmod:poss _ _ 3 younger _ ADJ JJR _ 4 amod _ _ 4 counterparts _ NOUN NNS _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 older _ ADJ JJR _ 11 nsubj _ _ 8 elderly _ ADJ JJ _ 7 amod _ _ 9 are _ VERB VBP _ 11 cop _ _ 10 less _ ADV RBR _ 11 advmod _ _ 11 likely _ ADJ JJ _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 live _ VERB VB _ 11 xcomp _ _ 14 with _ ADP IN _ 16 case _ _ 15 other _ ADJ JJ _ 16 amod _ _ 16 relatives _ NOUN NNS _ 13 nmod _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 Only _ ADV RB _ 2 advmod _ _ 2 17 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 10 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 those _ PRON DT _ 3 nmod _ _ 6 aged _ VERB VBN _ 5 amod _ _ 7 75 _ NUM CD _ 6 dep _ _ 8 and _ CONJ CC _ 6 cc _ _ 9 older _ ADJ JJR _ 6 conj _ _ 10 lived _ VERB VBD _ 0 root _ _ 11 with _ ADP IN _ 12 case _ _ 12 relatives _ NOUN NNS _ 10 nmod _ _ 13 other _ ADJ JJ _ 12 amod _ _ 14 than _ ADP IN _ 15 case _ _ 15 spouses _ NOUN NNS _ 13 nmod _ _ 16 in _ ADP IN _ 17 case _ _ 17 1988 _ NUM CD _ 10 nmod _ _ 18 , _ PUNCT , _ 10 punct _ _ 19 down _ ADV RB _ 10 advmod _ _ 20 from _ ADP IN _ 22 case _ _ 21 26 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 19 nmod _ _ 23 in _ ADP IN _ 24 case _ _ 24 1970 _ NUM CD _ 22 nmod _ _ 25 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 likelihood _ NOUN NN _ 12 nsubj _ _ 3 of _ SCONJ IN _ 4 mark _ _ 4 living _ VERB VBG _ 2 acl _ _ 5 alone _ ADV RB _ 4 advmod _ _ 6 beyond _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 age _ NOUN NN _ 4 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 75 _ NUM CD _ 8 nmod _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 increased _ VERB VBN _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 40 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 12 nmod _ _ 16 from _ ADP IN _ 18 case _ _ 17 32 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 12 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 More _ ADJ JJR _ 2 amod _ _ 2 people _ NOUN NNS _ 4 nsubj _ _ 3 are _ AUX VBP _ 4 aux _ _ 4 remaining _ VERB VBG _ 0 root _ _ 5 independent _ ADJ JJ _ 4 xcomp _ _ 6 longer _ ADV RBR _ 4 advmod _ _ 7 presumably _ ADV RB _ 11 advmod _ _ 8 because _ SCONJ IN _ 11 mark _ _ 9 they _ PRON PRP _ 11 nsubj _ _ 10 are _ VERB VBP _ 11 cop _ _ 11 better _ ADJ JJR _ 4 advcl _ _ 12 off _ ADP RP _ 11 dep _ _ 13 physically _ ADV RB _ 11 advmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 financially _ ADV RB _ 13 conj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Careers _ NOUN NNS _ 2 nsubj _ _ 2 Count _ VERB VBP _ 0 root _ _ 3 Most _ ADV RBS _ 2 advmod _ _ 4 For _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 Well-to-Do _ ADJ JJ _ 2 nmod _ _ 1 MANY _ ADJ JJ _ 3 amod _ _ 2 AFFLUENT _ ADJ JJ _ 3 amod _ _ 3 people _ NOUN NNS _ 4 nsubj _ _ 4 place _ VERB VBP _ 0 root _ _ 5 personal _ ADJ JJ _ 6 amod _ _ 6 success _ NOUN NN _ 4 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 money _ NOUN NN _ 6 conj _ _ 9 above _ ADP IN _ 10 case _ _ 10 family _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 least _ ADJ JJS _ 4 advcl _ _ 3 that _ ADP IN _ 4 nsubj _ _ 4 's _ PART POS _ 0 root _ _ 5 what _ PRON WP _ 18 dobj _ _ 6 a _ DET DT _ 7 det _ _ 7 survey _ NOUN NN _ 18 nsubj _ _ 8 by _ ADP IN _ 9 case _ _ 9 Ernst _ PROPN NNP _ 7 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Young _ PROPN NNP _ 9 conj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 Yankelovich _ PROPN NNP _ 17 compound _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 Clancy _ PROPN NNP _ 17 appos _ _ 16 , _ PUNCT , _ 17 punct _ _ 17 Shulman _ PROPN NNP _ 9 conj _ _ 18 indicates _ VERB VBZ _ 4 ccomp _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Two-thirds _ NOUN NNS _ 4 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 respondents _ NOUN NNS _ 1 nmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 they _ PRON PRP _ 7 nsubj _ _ 6 strongly _ ADV RB _ 7 advmod _ _ 7 felt _ VERB VBD _ 4 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 need _ NOUN NN _ 7 dobj _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ VERB VB _ 12 cop _ _ 12 successful _ ADJ JJ _ 9 acl _ _ 13 in _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 jobs _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 while _ SCONJ IN _ 21 mark _ _ 18 fewer _ ADJ JJR _ 20 advmod _ _ 19 than _ ADP IN _ 20 advmod _ _ 20 half _ NOUN NN _ 21 nsubj _ _ 21 said _ VERB VBD _ 4 advcl _ _ 22 they _ PRON PRP _ 24 nsubj _ _ 23 strongly _ ADV RB _ 24 advmod _ _ 24 felt _ VERB VBD _ 21 ccomp _ _ 25 the _ DET DT _ 26 det _ _ 26 need _ NOUN NN _ 24 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 spend _ VERB VB _ 26 acl _ _ 29 more _ ADJ JJR _ 30 amod _ _ 30 time _ NOUN NN _ 28 dobj _ _ 31 with _ ADP IN _ 33 case _ _ 32 their _ PRON PRP$ _ 33 nmod:poss _ _ 33 families _ NOUN NNS _ 28 nmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Being _ VERB VBG _ 2 cop _ _ 2 successful _ ADJ JJ _ 13 csubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 careers _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 spending _ VERB VBG _ 2 conj _ _ 7 the _ DET DT _ 8 det _ _ 8 money _ NOUN NN _ 6 dobj _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 make _ VERB VBP _ 8 acl:relcl _ _ 11 are _ VERB VBP _ 13 cop _ _ 12 top _ ADJ JJ _ 13 amod _ _ 13 priorities _ NOUN NNS _ 0 root _ _ 14 for _ ADP IN _ 16 case _ _ 15 this _ DET DT _ 16 det _ _ 16 group _ NOUN NN _ 13 nmod _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 most _ ADJ JJS _ 3 amod _ _ 3 studies _ NOUN NNS _ 11 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 affluent _ ADJ JJ _ 7 amod _ _ 7 market _ NOUN NN _ 3 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 this _ DET DT _ 10 det _ _ 10 survey _ NOUN NN _ 11 nsubj _ _ 11 excluded _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 super-rich _ ADJ JJ _ 11 dobj _ _ 14 . _ PUNCT . _ 11 punct _ _ 1 Average _ ADJ JJ _ 3 amod _ _ 2 household _ NOUN NN _ 3 compound _ _ 3 income _ NOUN NN _ 9 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 sample _ NOUN NN _ 3 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 194,000 _ NUM CD _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 average _ ADJ JJ _ 14 amod _ _ 13 net _ ADJ JJ _ 14 amod _ _ 14 assets _ NOUN NNS _ 16 nsubjpass _ _ 15 were _ AUX VBD _ 16 auxpass _ _ 16 reported _ VERB VBN _ 9 conj _ _ 17 as _ ADP IN _ 19 case _ _ 18 $ _ SYM $ _ 19 dep _ _ 19 775,000 _ NUM CD _ 16 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 goal _ NOUN NN _ 3 nsubj _ _ 3 was _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 learn _ VERB VB _ 3 xcomp _ _ 6 about _ ADP IN _ 7 case _ _ 7 one _ NUM CD _ 5 nmod _ _ 8 of _ ADP IN _ 13 case _ _ 9 today _ NOUN NN _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 fastest-growing _ ADJ JJ _ 13 amod _ _ 12 income _ NOUN NN _ 13 compound _ _ 13 groups _ NOUN NNS _ 7 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 the _ DET DT _ 17 det _ _ 16 upper-middle _ ADJ JJ _ 17 amod _ _ 17 class _ NOUN NN _ 13 appos _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Although _ SCONJ IN _ 3 mark _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 represent _ VERB VBP _ 12 advcl _ _ 4 only _ ADV RB _ 5 advmod _ _ 5 2 _ NUM CD _ 6 nummod _ _ 6 % _ SYM NN _ 3 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 population _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 they _ PRON PRP _ 12 nsubj _ _ 12 control _ VERB VBP _ 0 root _ _ 13 nearly _ ADV RB _ 14 advmod _ _ 14 one-third _ NOUN NN _ 12 dobj _ _ 15 of _ ADP IN _ 17 case _ _ 16 discretionary _ ADJ JJ _ 17 amod _ _ 17 income _ NOUN NN _ 14 nmod _ _ 18 . _ PUNCT . _ 12 punct _ _ 1 Across _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 board _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 these _ DET DT _ 6 det _ _ 6 consumers _ NOUN NNS _ 7 nsubj _ _ 7 value _ VERB VBP _ 0 root _ _ 8 quality _ NOUN NN _ 7 dobj _ _ 9 , _ PUNCT , _ 7 punct _ _ 10 buy _ VERB VBP _ 7 conj _ _ 11 what _ PRON WP _ 13 dobj _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 like _ VERB VBP _ 10 dobj _ _ 14 rather _ ADV RB _ 13 cc _ _ 15 than _ ADP IN _ 14 mwe _ _ 16 just _ ADV RB _ 13 advmod _ _ 17 what _ PRON WP _ 19 dobj _ _ 18 they _ PRON PRP _ 19 nsubj _ _ 19 need _ VERB VBP _ 13 dep _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 and _ CONJ CC _ 7 cc _ _ 22 appreciate _ VERB VBP _ 7 conj _ _ 23 products _ NOUN NNS _ 22 dobj _ _ 24 that _ PRON WDT _ 26 nsubj _ _ 25 are _ VERB VBP _ 26 cop _ _ 26 distinctive _ ADJ JJ _ 23 acl:relcl _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Despite _ ADP IN _ 4 case _ _ 2 their _ PRON PRP$ _ 4 nmod:poss _ _ 3 considerable _ ADJ JJ _ 4 amod _ _ 4 incomes _ NOUN NNS _ 18 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 assets _ NOUN NNS _ 4 conj _ _ 7 , _ PUNCT , _ 18 punct _ _ 8 40 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 18 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 respondents _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 study _ NOUN NN _ 12 nmod _ _ 16 do _ AUX VBP _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 feel _ VERB VB _ 0 root _ _ 19 financially _ ADV RB _ 20 advmod _ _ 20 secure _ ADJ JJ _ 18 xcomp _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 and _ CONJ CC _ 18 cc _ _ 23 one-fourth _ NOUN NN _ 26 nsubj _ _ 24 do _ AUX VBP _ 26 aux _ _ 25 n't _ PART RB _ 26 neg _ _ 26 feel _ VERB VB _ 18 conj _ _ 27 that _ SCONJ IN _ 30 mark _ _ 28 they _ PRON PRP _ 30 nsubj _ _ 29 have _ AUX VBP _ 30 aux _ _ 30 made _ VERB VBN _ 26 ccomp _ _ 31 it _ PRON PRP _ 30 dobj _ _ 32 . _ PUNCT . _ 18 punct _ _ 1 Twenty _ NUM CD _ 2 nummod _ _ 2 percent _ NOUN NN _ 6 nsubj _ _ 3 do _ AUX VBP _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 even _ ADV RB _ 6 advmod _ _ 6 feel _ VERB VB _ 0 root _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 are _ VERB VBP _ 10 cop _ _ 9 financially _ ADV RB _ 10 advmod _ _ 10 well _ ADV RB _ 6 ccomp _ _ 11 off _ ADP RP _ 10 dep _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 Many _ ADJ JJ _ 7 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 affluent _ NOUN NN _ 1 nmod _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 n't _ PART RB _ 7 neg _ _ 7 comfortable _ ADJ JJ _ 0 root _ _ 8 with _ ADP IN _ 9 case _ _ 9 themselves _ PRON PRP _ 7 nmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 either _ ADV RB _ 7 advmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 1 About _ ADV RB _ 2 advmod _ _ 2 40 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 6 nsubj _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 feel _ VERB VB _ 0 root _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 're _ VERB VBP _ 10 cop _ _ 9 more _ ADV RBR _ 10 advmod _ _ 10 able _ ADJ JJ _ 6 ccomp _ _ 11 than _ ADP IN _ 12 case _ _ 12 others _ NOUN NNS _ 10 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 While _ SCONJ IN _ 3 mark _ _ 2 twothirds _ NOUN NNS _ 3 nsubj _ _ 3 feel _ VERB VBP _ 13 advcl _ _ 4 some _ DET DT _ 5 det _ _ 5 guilt _ NOUN NN _ 3 dobj _ _ 6 about _ SCONJ IN _ 8 mark _ _ 7 being _ VERB VBG _ 8 cop _ _ 8 affluent _ NOUN NN _ 5 acl _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 only _ ADV RB _ 11 advmod _ _ 11 25 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 13 nsubj _ _ 13 give _ VERB VBP _ 0 root _ _ 14 $ _ SYM $ _ 17 dep _ _ 15 2,500 _ NUM CD _ 17 nummod _ _ 16 or _ CONJ CC _ 17 cc _ _ 17 more _ ADJ JJR _ 13 dobj _ _ 18 to _ ADP TO _ 19 case _ _ 19 charity _ NOUN NN _ 13 nmod _ _ 20 each _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 13 nmod:tmod _ _ 22 . _ PUNCT . _ 13 punct _ _ 1 Thirty-five _ NUM CD _ 2 nummod _ _ 2 percent _ NOUN NN _ 3 nsubj _ _ 3 attend _ VERB VBP _ 0 root _ _ 4 religious _ ADJ JJ _ 5 amod _ _ 5 services _ NOUN NNS _ 3 dobj _ _ 6 regularly _ ADV RB _ 3 advmod _ _ 7 ; _ PUNCT : _ 3 punct _ _ 8 at _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 same _ ADJ JJ _ 11 amod _ _ 11 time _ NOUN NN _ 15 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 60 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 15 nsubj _ _ 15 feel _ VERB VBP _ 3 parataxis _ _ 16 that _ SCONJ IN _ 21 mark _ _ 17 in _ ADP IN _ 18 case _ _ 18 life _ NOUN NN _ 21 nmod _ _ 19 one _ PRON PRP _ 21 nsubj _ _ 20 sometimes _ ADV RB _ 21 advmod _ _ 21 has _ VERB VBZ _ 15 ccomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 compromise _ VERB VB _ 21 xcomp _ _ 24 one _ PRON PRP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 principles _ NOUN NNS _ 23 dobj _ _ 27 . _ PUNCT . _ 3 punct _ _ 1 Odds _ NOUN NNS _ 0 root _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Ends _ NOUN NNS _ 1 conj _ _ 1 THE _ DET DT _ 2 det _ _ 2 NUMBER _ NOUN NN _ 22 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 women _ NOUN NNS _ 2 nmod _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 minorities _ NOUN NNS _ 4 conj _ _ 7 who _ PRON WP _ 8 nsubj _ _ 8 hold _ VERB VBP _ 4 acl:relcl _ _ 9 jobs _ NOUN NNS _ 8 dobj _ _ 10 in _ ADP IN _ 12 case _ _ 11 top _ ADJ JJ _ 12 amod _ _ 12 management _ NOUN NN _ 9 nmod _ _ 13 in _ ADP IN _ 18 case _ _ 14 the _ DET DT _ 15 det _ _ 15 nation _ NOUN NN _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 largest _ ADJ JJS _ 18 amod _ _ 18 banks _ NOUN NNS _ 9 nmod _ _ 19 has _ AUX VBZ _ 22 aux _ _ 20 more _ ADV RBR _ 22 advmod _ _ 21 than _ ADP IN _ 20 case _ _ 22 doubled _ VERB VBN _ 0 root _ _ 23 since _ ADP IN _ 24 case _ _ 24 1978 _ NUM CD _ 22 nmod _ _ 25 . _ PUNCT . _ 22 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 American _ PROPN NNP _ 4 compound _ _ 3 Bankers _ PROPN NNP _ 4 compound _ _ 4 Association _ PROPN NNP _ 5 nsubj _ _ 5 says _ VERB VBZ _ 0 root _ _ 6 that _ SCONJ IN _ 8 mark _ _ 7 women _ NOUN NNS _ 8 nsubj _ _ 8 make _ VERB VB _ 5 ccomp _ _ 9 up _ ADP RP _ 8 compound:prt _ _ 10 47 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 8 dobj _ _ 12 of _ ADP IN _ 13 case _ _ 13 officials _ NOUN NNS _ 11 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 managers _ NOUN NNS _ 13 conj _ _ 16 in _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 top _ ADJ JJ _ 20 amod _ _ 19 50 _ NUM CD _ 20 nummod _ _ 20 banks _ NOUN NNS _ 13 nmod _ _ 21 , _ PUNCT , _ 11 punct _ _ 22 up _ ADV RB _ 11 advmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 33 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 22 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1978 _ NUM CD _ 25 nmod _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 share _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 minorities _ NOUN NNS _ 2 nmod _ _ 5 in _ ADP IN _ 7 case _ _ 6 those _ DET DT _ 7 det _ _ 7 positions _ NOUN NNS _ 2 nmod _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 risen _ VERB VBN _ 0 root _ _ 10 to _ ADP TO _ 12 case _ _ 11 16 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 9 nmod _ _ 13 from _ ADP IN _ 15 case _ _ 14 12 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 9 nmod _ _ 16 ... _ PUNCT : _ 9 punct _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Per-capita _ ADJ JJ _ 3 amod _ _ 2 personal _ ADJ JJ _ 3 amod _ _ 3 income _ NOUN NN _ 7 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 U.S. _ PROPN NNP _ 3 nmod _ _ 7 grew _ VERB VBD _ 0 root _ _ 8 faster _ ADV RBR _ 7 advmod _ _ 9 than _ ADP IN _ 10 case _ _ 10 inflation _ NOUN NN _ 8 nmod _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 7 nmod:tmod _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 according _ VERB VBG _ 17 case _ _ 15 to _ ADP TO _ 14 mwe _ _ 16 the _ DET DT _ 17 det _ _ 17 Bureau _ PROPN NNP _ 7 nmod _ _ 18 of _ ADP IN _ 20 case _ _ 19 Economic _ PROPN NNP _ 20 compound _ _ 20 Analysis _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 amount _ NOUN NN _ 16 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 income _ NOUN NN _ 2 nmod _ _ 5 divvied _ VERB VBN _ 2 acl _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 for _ ADP IN _ 9 case _ _ 8 each _ DET DT _ 9 det _ _ 9 man _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 woman _ NOUN NN _ 9 conj _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 child _ NOUN NN _ 9 conj _ _ 14 was _ VERB VBD _ 16 cop _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 16,489 _ NUM CD _ 0 root _ _ 17 in _ ADP IN _ 18 case _ _ 18 1988 _ NUM CD _ 16 nmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 up _ ADV RB _ 16 advmod _ _ 21 6.6 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 20 nmod:npmod _ _ 23 from _ ADP IN _ 25 case _ _ 24 $ _ SYM $ _ 25 dep _ _ 25 15,472 _ NUM CD _ 20 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 1987 _ NUM CD _ 25 nmod _ _ 28 . _ PUNCT . _ 16 punct _ _ 1 Per _ ADP IN _ 2 dep _ _ 2 capita _ NOUN NN _ 4 amod _ _ 3 personal _ ADJ JJ _ 4 amod _ _ 4 income _ NOUN NN _ 5 nsubj _ _ 5 ranged _ VERB VBD _ 0 root _ _ 6 from _ ADP IN _ 8 case _ _ 7 $ _ SYM $ _ 8 dep _ _ 8 11,116 _ NUM CD _ 5 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 Mississippi _ PROPN NNP _ 8 nmod _ _ 11 to _ ADP TO _ 13 case _ _ 12 $ _ SYM $ _ 13 dep _ _ 13 23,059 _ NUM CD _ 8 nmod _ _ 14 in _ ADP IN _ 15 case _ _ 15 Connecticut _ PROPN NNP _ 13 nmod _ _ 16 ... _ PUNCT : _ 5 punct _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 are _ VERB VBP _ 23 ccomp _ _ 3 13.1 _ NUM CD _ 4 compound _ _ 4 million _ NUM CD _ 5 nummod _ _ 5 students _ NOUN NNS _ 2 nsubj _ _ 6 in _ ADP IN _ 7 case _ _ 7 college _ NOUN NN _ 5 nmod _ _ 8 this _ DET DT _ 9 det _ _ 9 fall _ NOUN NN _ 2 nmod:tmod _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 up _ ADV RB _ 2 advmod _ _ 12 2 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 nmod:npmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 1988 _ NUM CD _ 11 nmod _ _ 16 , _ PUNCT , _ 23 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 National _ PROPN NNP _ 19 compound _ _ 19 Center _ PROPN NNP _ 23 nsubj _ _ 20 for _ ADP IN _ 22 case _ _ 21 Education _ PROPN NNP _ 22 compound _ _ 22 Statistics _ PROPN NNP _ 19 nmod _ _ 23 estimates _ NOUN NNS _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 About _ ADV RB _ 2 advmod _ _ 2 54 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 5 nsubj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 women _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 44 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 12 nsubj _ _ 10 are _ VERB VBP _ 12 cop _ _ 11 part-time _ ADJ JJ _ 12 amod _ _ 12 students _ NOUN NNS _ 5 conj _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 This _ DET DT _ 4 det _ _ 2 small _ ADJ JJ _ 4 amod _ _ 3 Dallas _ PROPN NNP _ 4 compound _ _ 4 suburb _ NOUN NN _ 6 nsubjpass _ _ 5 's _ PART POS _ 6 auxpass _ _ 6 got _ VERB VBD _ 0 root _ _ 7 trouble _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 6 punct _ _ 1 Trouble _ NOUN NN _ 0 root _ _ 2 with _ ADP IN _ 5 case _ _ 3 a _ DET DT _ 5 det _ _ 4 capital _ ADJ JJ _ 5 amod _ _ 5 T _ NOUN NN _ 1 nmod _ _ 6 and _ CONJ CC _ 1 cc _ _ 7 that _ PRON DT _ 8 nsubj _ _ 8 rhymes _ VERB VBZ _ 1 conj _ _ 9 with _ ADP IN _ 10 case _ _ 10 P _ NOUN NN _ 8 nmod _ _ 11 and _ CONJ CC _ 1 cc _ _ 12 that _ PRON DT _ 13 nsubj _ _ 13 stands _ VERB VBZ _ 1 conj _ _ 14 for _ ADP IN _ 15 case _ _ 15 pool _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 More _ ADV RBR _ 3 advmod _ _ 2 than _ ADP IN _ 1 mwe _ _ 3 30 _ NUM CD _ 4 nummod _ _ 4 years _ NOUN NNS _ 5 nmod:npmod _ _ 5 ago _ ADV RB _ 24 advmod _ _ 6 , _ PUNCT , _ 24 punct _ _ 7 Prof. _ PROPN NNP _ 9 compound _ _ 8 Harold _ PROPN NNP _ 9 compound _ _ 9 Hill _ PROPN NNP _ 24 nsubj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 the _ DET DT _ 13 det _ _ 12 con _ ADJ JJ _ 13 amod _ _ 13 man _ NOUN NN _ 9 appos _ _ 14 in _ ADP IN _ 21 case _ _ 15 Meredith _ PROPN NNP _ 16 compound _ _ 16 Willson _ PROPN NNP _ 21 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 The _ DET DT _ 21 det _ _ 20 Music _ NOUN NN _ 21 compound _ _ 21 Man _ NOUN NN _ 13 nmod _ _ 22 , _ PUNCT , _ 9 punct _ _ 23 '' _ PUNCT '' _ 9 punct _ _ 24 warned _ VERB VBD _ 0 root _ _ 25 the _ DET DT _ 26 det _ _ 26 citizens _ NOUN NNS _ 24 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 River _ PROPN NNP _ 29 compound _ _ 29 City _ PROPN NNP _ 26 nmod _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 Iowa _ PROPN NNP _ 29 appos _ _ 32 , _ PUNCT , _ 29 punct _ _ 33 against _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 game _ NOUN NN _ 24 nmod _ _ 36 . _ PUNCT . _ 24 punct _ _ 1 Now _ ADV RB _ 10 advmod _ _ 2 kindred _ ADJ JJ _ 3 amod _ _ 3 spirits _ NOUN NNS _ 10 nsubj _ _ 4 on _ ADP IN _ 8 case _ _ 5 Addison _ PROPN NNP _ 8 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 town _ NOUN NN _ 8 compound _ _ 8 council _ NOUN NN _ 3 nmod _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 barred _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 town _ NOUN NN _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 fanciest _ ADJ JJS _ 15 amod _ _ 15 hotel _ NOUN NN _ 10 dobj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 Grand _ PROPN NNP _ 19 compound _ _ 19 Kempinski _ PROPN NNP _ 15 appos _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 from _ SCONJ IN _ 22 mark _ _ 22 installing _ VERB VBG _ 10 advcl _ _ 23 three _ NUM CD _ 26 nummod _ _ 24 free _ ADJ JJ _ 26 amod _ _ 25 pool _ NOUN NN _ 26 compound _ _ 26 tables _ NOUN NNS _ 22 dobj _ _ 27 in _ ADP IN _ 30 case _ _ 28 its _ PRON PRP$ _ 30 nmod:poss _ _ 29 new _ ADJ JJ _ 30 amod _ _ 30 lounge _ NOUN NN _ 22 nmod _ _ 31 . _ PUNCT . _ 10 punct _ _ 1 Mayor _ PROPN NNP _ 3 compound _ _ 2 Lynn _ PROPN NNP _ 3 compound _ _ 3 Spruill _ PROPN NNP _ 10 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 two _ NUM CD _ 6 nummod _ _ 6 members _ NOUN NNS _ 3 conj _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 council _ NOUN NN _ 6 nmod _ _ 10 said _ VERB VBD _ 0 root _ _ 11 they _ PRON PRP _ 13 nsubj _ _ 12 were _ VERB VBD _ 13 cop _ _ 13 worried _ ADJ JJ _ 10 ccomp _ _ 14 about _ SCONJ IN _ 15 mark _ _ 15 setting _ VERB VBG _ 13 advcl _ _ 16 a _ DET DT _ 17 det _ _ 17 precedent _ NOUN NN _ 15 dobj _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 would _ AUX MD _ 20 aux _ _ 20 permit _ VERB VB _ 17 acl:relcl _ _ 21 pool _ NOUN NN _ 22 compound _ _ 22 halls _ NOUN NNS _ 20 dobj _ _ 23 along _ ADP IN _ 27 case _ _ 24 Addison _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 main _ ADJ JJ _ 27 amod _ _ 27 street _ NOUN NN _ 20 nmod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 mayor _ NOUN NN _ 18 nsubj _ _ 4 , _ PUNCT , _ 18 punct _ _ 5 in _ ADP IN _ 7 case _ _ 6 an _ DET DT _ 7 det _ _ 7 admonition _ NOUN NN _ 18 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 bears _ VERB VBZ _ 7 acl:relcl _ _ 10 a _ DET DT _ 12 det _ _ 11 rhythmic _ ADJ JJ _ 12 amod _ _ 12 resemblance _ NOUN NN _ 9 dobj _ _ 13 to _ ADP TO _ 15 case _ _ 14 Prof. _ PROPN NNP _ 15 compound _ _ 15 Hill _ PROPN NNP _ 12 nmod _ _ 16 's _ PART POS _ 15 case _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 warned _ VERB VBD _ 0 root _ _ 19 that _ SCONJ IN _ 22 mark _ _ 20 `` _ PUNCT `` _ 22 punct _ _ 21 alcohol _ NOUN NN _ 22 nsubj _ _ 22 leads _ VERB VBZ _ 18 ccomp _ _ 23 to _ ADP TO _ 24 case _ _ 24 betting _ NOUN NN _ 22 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 which _ PRON WDT _ 27 nsubj _ _ 27 leads _ VERB VBZ _ 24 acl:relcl _ _ 28 to _ ADP TO _ 29 case _ _ 29 fights _ NOUN NNS _ 27 nmod _ _ 30 . _ PUNCT . _ 18 punct _ _ 31 '' _ PUNCT '' _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 council _ NOUN NN _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 action _ NOUN NN _ 8 nsubj _ _ 5 is _ VERB VBZ _ 8 cop _ _ 6 yet _ ADV RB _ 7 advmod _ _ 7 another _ DET DT _ 8 amod _ _ 8 blow _ NOUN NN _ 0 root _ _ 9 to _ ADP TO _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 sport _ NOUN NN _ 8 nmod _ _ 12 that _ ADP IN _ 15 dobj _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 fans _ NOUN NNS _ 15 nsubj _ _ 15 claim _ NOUN NN _ 11 acl:relcl _ _ 16 has _ AUX VBZ _ 18 aux _ _ 17 been _ AUX VBN _ 18 auxpass _ _ 18 maligned _ VERB VBN _ 15 ccomp _ _ 19 unjustly _ ADV RB _ 18 advmod _ _ 20 for _ ADP IN _ 21 case _ _ 21 years _ NOUN NNS _ 18 nmod _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 Obviously _ ADV RB _ 7 advmod _ _ 3 they _ PRON PRP _ 7 nsubj _ _ 4 're _ VERB VBP _ 7 cop _ _ 5 not _ PART RB _ 7 neg _ _ 6 in _ ADP IN _ 7 case _ _ 7 touch _ NOUN NN _ 15 ccomp _ _ 8 with _ SCONJ IN _ 11 mark _ _ 9 what _ PRON WP _ 11 nsubj _ _ 10 's _ AUX VBZ _ 11 aux _ _ 11 going _ VERB VBG _ 7 acl _ _ 12 on _ ADP RP _ 11 compound:prt _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 Tom _ PROPN NNP _ 17 compound _ _ 17 Manske _ PROPN NNP _ 15 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 vice _ NOUN NN _ 20 compound _ _ 20 president _ NOUN NN _ 17 appos _ _ 21 of _ ADP IN _ 26 case _ _ 22 the _ DET DT _ 26 det _ _ 23 National _ PROPN NNP _ 26 compound _ _ 24 Pocket _ PROPN NNP _ 26 compound _ _ 25 Billiards _ PROPN NNP _ 26 compound _ _ 26 Association _ PROPN NNP _ 20 nmod _ _ 27 . _ PUNCT . _ 15 punct _ _ 1 Pool _ NOUN NN _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 hot _ ADJ JJ _ 0 root _ _ 4 in _ ADP IN _ 6 case _ _ 5 New _ PROPN NNP _ 6 compound _ _ 6 York _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Chicago _ PROPN NNP _ 6 conj _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 insists _ VERB VBZ _ 6 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 where _ ADV WRB _ 21 advmod _ _ 14 `` _ PUNCT `` _ 21 punct _ _ 15 upscale _ ADJ JJ _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 suit-and-tie _ ADJ JJ _ 18 amod _ _ 18 places _ NOUN NNS _ 21 nsubj _ _ 19 '' _ PUNCT '' _ 21 punct _ _ 20 are _ AUX VBP _ 21 aux _ _ 21 adding _ VERB VBG _ 6 acl:relcl _ _ 22 tables _ NOUN NNS _ 21 dobj _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 With _ ADP IN _ 7 case _ _ 2 today _ NOUN NN _ 7 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 tougher _ ADJ JJR _ 7 amod _ _ 5 drunk _ ADJ JJ _ 7 amod _ _ 6 driving _ NOUN NN _ 7 compound _ _ 7 laws _ NOUN NNS _ 16 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 adds _ VERB VBZ _ 16 parataxis _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 people _ NOUN NNS _ 16 nsubj _ _ 14 do _ AUX VBP _ 16 aux _ _ 15 n't _ PART RB _ 16 neg _ _ 16 want _ VERB VB _ 0 root _ _ 17 to _ PART TO _ 19 mark _ _ 18 just _ ADV RB _ 19 advmod _ _ 19 sit _ VERB VB _ 16 xcomp _ _ 20 around _ ADV RB _ 19 advmod _ _ 21 and _ CONJ CC _ 19 cc _ _ 22 drink _ VERB VB _ 19 conj _ _ 23 . _ PUNCT . _ 16 punct _ _ 24 '' _ PUNCT '' _ 16 punct _ _ 1 Besides _ ADP IN _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 rowdy _ ADJ JJ _ 4 amod _ _ 4 behavior _ NOUN NN _ 5 nsubj _ _ 5 seems _ VERB VBZ _ 0 root _ _ 6 unlikely _ ADJ JJ _ 5 xcomp _ _ 7 at _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Grand _ PROPN NNP _ 10 compound _ _ 10 Kempinski _ PROPN NNP _ 5 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 where _ ADV WRB _ 14 advmod _ _ 13 rooms _ NOUN NNS _ 14 nsubj _ _ 14 average _ VERB VBP _ 10 acl:relcl _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 200 _ NUM CD _ 14 dobj _ _ 17 a _ DET DT _ 18 det _ _ 18 night _ NOUN NN _ 16 nmod:npmod _ _ 19 and _ CONJ CC _ 14 cc _ _ 20 the _ DET DT _ 23 det _ _ 21 cheap _ ADJ JJ _ 23 amod _ _ 22 mixed _ ADJ JJ _ 23 amod _ _ 23 drinks _ NOUN NNS _ 24 nsubj _ _ 24 go _ VERB VBP _ 14 conj _ _ 25 for _ ADP IN _ 27 case _ _ 26 $ _ SYM $ _ 27 dep _ _ 27 3.50 _ NUM CD _ 24 nmod _ _ 28 a _ DET DT _ 29 det _ _ 29 pop _ NOUN NN _ 27 nmod:npmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 lounge _ NOUN NN _ 10 nmod _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 manager _ NOUN NN _ 7 compound _ _ 6 Elizabeth _ PROPN NNP _ 7 compound _ _ 7 Dyer _ PROPN NNP _ 10 nsubj _ _ 8 wo _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 admit _ VERB VB _ 0 root _ _ 11 patrons _ NOUN NNS _ 10 dobj _ _ 12 in _ ADP IN _ 13 case _ _ 13 jeans _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 T-shirts _ NOUN NNS _ 13 conj _ _ 16 or _ CONJ CC _ 13 cc _ _ 17 tennis _ NOUN NN _ 18 compound _ _ 18 shoes _ NOUN NNS _ 13 conj _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 a _ DET DT _ 3 det _ _ 3 majority _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 Addison _ PROPN NNP _ 7 compound _ _ 7 council _ NOUN NN _ 3 nmod _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 buy _ VERB VB _ 0 root _ _ 11 those _ DET DT _ 12 det _ _ 12 arguments _ NOUN NNS _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 Introducing _ VERB VBG _ 12 csubj _ _ 2 pool _ NOUN NN _ 1 dobj _ _ 3 , _ PUNCT , _ 4 punct _ _ 4 argued _ VERB VBD _ 12 parataxis _ _ 5 Councilwoman _ PROPN NNP _ 7 compound _ _ 6 Riley _ PROPN NNP _ 7 compound _ _ 7 Reinker _ PROPN NNP _ 4 nsubj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 would _ AUX MD _ 12 aux _ _ 10 be _ VERB VB _ 12 cop _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 dangerous _ ADJ JJ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 would _ AUX MD _ 3 aux _ _ 3 open _ VERB VB _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 can _ NOUN NN _ 3 dobj _ _ 6 of _ ADP IN _ 7 case _ _ 7 worms _ NOUN NNS _ 5 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 9 '' _ PUNCT '' _ 3 punct _ _ 1 Addison _ PROPN NNP _ 4 nsubj _ _ 2 is _ VERB VBZ _ 4 cop _ _ 3 no _ DET DT _ 4 neg _ _ 4 stranger _ NOUN NN _ 0 root _ _ 5 to _ ADP TO _ 6 case _ _ 6 cans _ NOUN NNS _ 4 nmod _ _ 7 of _ ADP IN _ 8 case _ _ 8 worms _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 either _ ADV RB _ 4 advmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 After _ SCONJ IN _ 5 mark _ _ 2 its _ PRON PRP$ _ 4 nmod:poss _ _ 3 previous _ ADJ JJ _ 4 amod _ _ 4 mayor _ NOUN NN _ 5 nsubj _ _ 5 committed _ VERB VBD _ 12 advcl _ _ 6 suicide _ NOUN NN _ 5 dobj _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 year _ NOUN NN _ 5 nmod:tmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 an _ DET DT _ 11 det _ _ 11 investigation _ NOUN NN _ 12 nsubj _ _ 12 disclosed _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 17 mark _ _ 14 town _ NOUN NN _ 15 compound _ _ 15 officials _ NOUN NNS _ 17 nsubj _ _ 16 regularly _ ADV RB _ 17 advmod _ _ 17 voted _ VERB VBD _ 12 ccomp _ _ 18 on _ ADP IN _ 21 case _ _ 19 their _ PRON PRP$ _ 21 nmod:poss _ _ 20 own _ ADJ JJ _ 21 amod _ _ 21 projects _ NOUN NNS _ 17 nmod _ _ 22 , _ PUNCT , _ 17 punct _ _ 23 gave _ VERB VBD _ 17 conj _ _ 24 special _ ADJ JJ _ 25 amod _ _ 25 favors _ NOUN NNS _ 23 dobj _ _ 26 to _ ADP TO _ 28 case _ _ 27 developer _ NOUN NN _ 28 compound _ _ 28 friends _ NOUN NNS _ 23 nmod _ _ 29 and _ CONJ CC _ 17 cc _ _ 30 dipped _ VERB VBD _ 17 conj _ _ 31 into _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 33 det _ _ 33 town _ NOUN NN _ 35 nmod:poss _ _ 34 's _ PART POS _ 33 case _ _ 35 coffers _ NOUN NNS _ 30 nmod _ _ 36 for _ ADP IN _ 37 case _ _ 37 trips _ NOUN NNS _ 30 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 retreats _ NOUN NNS _ 37 conj _ _ 40 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 revelations _ NOUN NNS _ 3 nsubj _ _ 3 embarrassed _ VERB VBD _ 0 root _ _ 4 town _ NOUN NN _ 5 compound _ _ 5 officials _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 although _ SCONJ IN _ 9 mark _ _ 8 they _ PRON PRP _ 9 nsubj _ _ 9 argued _ VERB VBD _ 3 advcl _ _ 10 that _ SCONJ IN _ 16 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 problems _ NOUN NNS _ 16 nsubj _ _ 13 were _ VERB VBD _ 16 cop _ _ 14 n't _ PART RB _ 16 neg _ _ 15 as _ ADV RB _ 16 advmod _ _ 16 severe _ ADJ JJ _ 9 ccomp _ _ 17 as _ SCONJ IN _ 20 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 media _ NOUN NNS _ 20 nsubj _ _ 20 suggested _ VERB VBD _ 16 dep _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 2 advmod _ _ 2 comes _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 pool _ NOUN NN _ 5 compound _ _ 5 flap _ NOUN NN _ 2 nsubj _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 18 ccomp _ _ 4 there _ PRON EX _ 5 expl _ _ 5 's _ VERB VBZ _ 3 ccomp _ _ 6 some _ DET DT _ 7 det _ _ 7 people _ NOUN NNS _ 5 nsubj _ _ 8 worried _ ADJ JJ _ 7 dep _ _ 9 about _ ADP IN _ 10 case _ _ 10 something _ NOUN NN _ 8 nmod _ _ 11 pretty _ ADV RB _ 12 advmod _ _ 12 ridiculous _ ADJ JJ _ 10 amod _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 '' _ PUNCT '' _ 18 punct _ _ 15 Councilman _ PROPN NNP _ 17 compound _ _ 16 John _ PROPN NNP _ 17 compound _ _ 17 Nolan _ PROPN NNP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 thought _ VERB VBD _ 0 root _ _ 4 this _ PRON DT _ 7 nsubjpass _ _ 5 was _ AUX VBD _ 7 auxpass _ _ 6 all _ DET DT _ 7 dep _ _ 7 taken _ VERB VBN _ 3 ccomp _ _ 8 care _ NOUN NN _ 7 dobj _ _ 9 of _ ADP IN _ 7 nmod _ _ 10 in _ ADP IN _ 14 case _ _ 11 ` _ PUNCT `` _ 14 punct _ _ 12 The _ DET DT _ 14 det _ _ 13 Music _ NOUN NN _ 14 compound _ _ 14 Man _ NOUN NN _ 7 nmod _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 only _ ADJ JJ _ 3 amod _ _ 3 thing _ NOUN NN _ 28 nsubj _ _ 4 Robert _ PROPN NNP _ 5 compound _ _ 5 Goldberg _ PROPN NNP _ 7 nsubj _ _ 6 could _ AUX MD _ 7 aux _ _ 7 praise _ VERB VB _ 3 acl:relcl _ _ 8 about _ ADP IN _ 12 case _ _ 9 CBS _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 new _ ADJ JJ _ 12 amod _ _ 12 show _ NOUN NN _ 3 nmod _ _ 13 `` _ PUNCT `` _ 12 punct _ _ 14 Island _ PROPN NNP _ 15 compound _ _ 15 Son _ PROPN NNP _ 12 dep _ _ 16 '' _ PUNCT '' _ 12 punct _ _ 17 -LRB- _ PUNCT -LRB- _ 18 punct _ _ 18 Leisure _ PROPN NNP _ 12 dep _ _ 19 & _ CONJ CC _ 18 cc _ _ 20 Arts _ PROPN NNP _ 18 conj _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 Sept. _ PROPN NNP _ 18 nmod:tmod _ _ 23 25 _ NUM CD _ 22 nummod _ _ 24 -RRB- _ PUNCT -RRB- _ 18 punct _ _ 25 was _ VERB VBD _ 28 cop _ _ 26 the _ DET DT _ 28 det _ _ 27 local _ ADJ JJ _ 28 amod _ _ 28 color _ NOUN NN _ 0 root _ _ 29 ; _ PUNCT : _ 28 punct _ _ 30 unfortunately _ ADV RB _ 40 advmod _ _ 31 neither _ CONJ CC _ 32 cc:preconj _ _ 32 he _ PRON PRP _ 40 nsubj _ _ 33 nor _ CONJ CC _ 32 cc _ _ 34 the _ DET DT _ 35 det _ _ 35 producers _ NOUN NNS _ 32 conj _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 show _ NOUN NN _ 35 nmod _ _ 39 have _ AUX VBP _ 40 aux _ _ 40 done _ VERB VBN _ 28 parataxis _ _ 41 their _ PRON PRP$ _ 42 nmod:poss _ _ 42 homework _ NOUN NN _ 40 dobj _ _ 43 . _ PUNCT . _ 28 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 14 nmod _ _ 3 : _ PUNCT : _ 14 punct _ _ 4 `` _ PUNCT `` _ 5 punct _ _ 5 Haole _ X FW _ 14 nsubj _ _ 6 '' _ PUNCT '' _ 5 punct _ _ 7 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 8 white _ ADJ JJ _ 5 dep _ _ 9 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 10 is _ VERB VBZ _ 14 cop _ _ 11 not _ PART RB _ 14 neg _ _ 12 the _ DET DT _ 14 det _ _ 13 ultimate _ ADJ JJ _ 14 amod _ _ 14 insult _ NOUN NN _ 0 root _ _ 15 ; _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 20 punct _ _ 17 Mainland _ ADJ JJ _ 18 amod _ _ 18 haole _ X FW _ 20 nsubj _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 is _ VERB VBZ _ 14 parataxis _ _ 21 . _ PUNCT . _ 14 punct _ _ 1 Richard _ PROPN NNP _ 2 compound _ _ 2 Chamberlain _ PROPN NNP _ 3 nsubj _ _ 3 dresses _ VERB VBZ _ 0 root _ _ 4 as _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 Mainland _ ADJ JJ _ 8 amod _ _ 8 haole _ X FW _ 3 nmod _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 '' _ PUNCT '' _ 3 punct _ _ 11 tucking _ VERB VBG _ 3 ccomp _ _ 12 in _ ADP RP _ 11 compound:prt _ _ 13 a _ DET DT _ 15 det _ _ 14 Hawaiian _ ADJ JJ _ 15 amod _ _ 15 shirt _ NOUN NN _ 11 dobj _ _ 16 and _ CONJ CC _ 11 cc _ _ 17 rolling _ VERB VBG _ 11 conj _ _ 18 up _ ADP RP _ 17 compound:prt _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 long _ ADJ JJ _ 21 amod _ _ 21 sleeves _ NOUN NNS _ 17 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 And _ CONJ CC _ 14 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 local _ ADJ JJ _ 4 amod _ _ 4 expression _ NOUN NN _ 14 nsubj _ _ 5 for _ ADP IN _ 6 case _ _ 6 brother _ NOUN NN _ 4 nmod _ _ 7 is _ VERB VBZ _ 14 cop _ _ 8 `` _ PUNCT `` _ 14 punct _ _ 9 brah _ X FW _ 14 compound _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 '' _ PUNCT '' _ 14 punct _ _ 12 not _ ADV RB _ 14 neg _ _ 13 `` _ PUNCT `` _ 14 punct _ _ 14 bruddah _ X FW _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 16 '' _ PUNCT '' _ 14 punct _ _ 1 And _ CONJ CC _ 22 cc _ _ 2 even _ ADV RB _ 7 advmod _ _ 3 if _ SCONJ IN _ 7 mark _ _ 4 a _ DET DT _ 5 det _ _ 5 nurse _ NOUN NN _ 7 nsubj _ _ 6 would _ AUX MD _ 7 aux _ _ 7 wear _ VERB VB _ 22 advcl _ _ 8 flowers _ NOUN NNS _ 7 dobj _ _ 9 in _ ADP IN _ 11 case _ _ 10 her _ PRON PRP$ _ 11 nmod:poss _ _ 11 hair _ NOUN NN _ 7 nmod _ _ 12 while _ NOUN NN _ 14 dep _ _ 13 on _ ADP IN _ 14 case _ _ 14 duty _ NOUN NN _ 7 dep _ _ 15 , _ PUNCT , _ 22 punct _ _ 16 if _ SCONJ IN _ 19 mark _ _ 17 she _ PRON PRP _ 19 nsubj _ _ 18 were _ VERB VBD _ 19 cop _ _ 19 engaged _ ADJ JJ _ 22 advcl _ _ 20 she _ PRON PRP _ 22 nsubj _ _ 21 would _ AUX MD _ 22 aux _ _ 22 know _ VERB VB _ 0 root _ _ 23 to _ PART TO _ 24 mark _ _ 24 wear _ VERB VB _ 22 xcomp _ _ 25 them _ PRON PRP _ 24 dobj _ _ 26 behind _ ADP IN _ 33 case _ _ 27 her _ PRON PRP _ 33 dep _ _ 28 left _ ADJ JJ _ 31 amod _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 not _ ADV RB _ 31 neg _ _ 31 right _ ADJ JJ _ 33 amod _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 ear _ NOUN NN _ 24 nmod _ _ 34 . _ PUNCT . _ 22 punct _ _ 1 Sorry _ ADJ JJ _ 8 discourse _ _ 2 , _ PUNCT , _ 8 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 show _ NOUN NN _ 8 nsubj _ _ 5 does _ AUX VBZ _ 8 aux _ _ 6 not _ PART RB _ 8 neg _ _ 7 even _ ADV RB _ 8 advmod _ _ 8 have _ VERB VB _ 0 root _ _ 9 the _ DET DT _ 12 det _ _ 10 one _ NUM CD _ 12 nummod _ _ 11 redeeming _ ADJ JJ _ 12 amod _ _ 12 quality _ NOUN NN _ 8 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 genuine _ ADJ JJ _ 16 amod _ _ 15 local _ ADJ JJ _ 16 amod _ _ 16 color _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 Anita _ PROPN NNP _ 2 compound _ _ 2 Davis _ PROPN NNP _ 0 root _ _ 1 Of _ ADP IN _ 5 case _ _ 2 all _ DET DT _ 5 det:predet _ _ 3 the _ DET DT _ 5 det _ _ 4 ethnic _ ADJ JJ _ 5 amod _ _ 5 tensions _ NOUN NNS _ 13 nmod _ _ 6 in _ ADP IN _ 7 case _ _ 7 America _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 13 punct _ _ 9 which _ PRON WDT _ 13 nsubj _ _ 10 is _ VERB VBZ _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 most _ ADV RBS _ 13 advmod _ _ 13 troublesome _ ADJ JJ _ 0 root _ _ 14 right _ ADV RB _ 15 advmod _ _ 15 now _ ADV RB _ 13 advmod _ _ 16 ? _ PUNCT . _ 13 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 good _ ADJ JJ _ 3 amod _ _ 3 bet _ NOUN NN _ 7 nsubj _ _ 4 would _ AUX MD _ 7 aux _ _ 5 be _ VERB VB _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 tension _ NOUN NN _ 0 root _ _ 8 between _ ADP IN _ 9 case _ _ 9 blacks _ PROPN NNPS _ 7 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Jews _ PROPN NNPS _ 9 conj _ _ 12 in _ ADP IN _ 15 case _ _ 13 New _ PROPN NNP _ 15 compound _ _ 14 York _ PROPN NNP _ 15 compound _ _ 15 City _ PROPN NNP _ 7 nmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 Or _ CONJ CC _ 5 cc _ _ 2 so _ ADP IN _ 5 advmod _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 must _ AUX MD _ 5 aux _ _ 5 seem _ VERB VB _ 0 root _ _ 6 to _ ADP TO _ 8 case _ _ 7 Jackie _ PROPN NNP _ 8 compound _ _ 8 Mason _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 13 det _ _ 11 veteran _ ADJ JJ _ 13 amod _ _ 12 Jewish _ ADJ JJ _ 13 amod _ _ 13 comedian _ NOUN NN _ 8 appos _ _ 14 appearing _ VERB VBG _ 13 acl _ _ 15 in _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 new _ ADJ JJ _ 19 amod _ _ 18 ABC _ PROPN NNP _ 19 compound _ _ 19 sitcom _ NOUN NN _ 14 nmod _ _ 20 airing _ NOUN NN _ 19 dep _ _ 21 on _ ADP IN _ 23 case _ _ 22 Tuesday _ PROPN NNP _ 23 compound _ _ 23 nights _ NOUN NNS _ 20 nmod _ _ 24 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 25 9:30-10 _ NUM CD _ 27 nummod _ _ 26 p.m. _ ADV RB _ 27 advmod _ _ 27 EDT _ PROPN NNP _ 20 dep _ _ 28 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 Not _ PART RB _ 2 dep _ _ 2 only _ ADV RB _ 18 advmod _ _ 3 is _ VERB VBZ _ 18 dep _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Mason _ PROPN NNP _ 3 nsubj _ _ 6 the _ DET DT _ 7 det _ _ 7 star _ NOUN NN _ 3 dep _ _ 8 of _ ADP IN _ 11 case _ _ 9 `` _ PUNCT `` _ 11 punct _ _ 10 Chicken _ PROPN NNP _ 11 compound _ _ 11 Soup _ PROPN NNP _ 7 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 '' _ PUNCT '' _ 18 punct _ _ 14 he _ PRON PRP _ 18 nsubj _ _ 15 's _ VERB VBZ _ 18 cop _ _ 16 also _ ADV RB _ 18 advmod _ _ 17 the _ DET DT _ 18 det _ _ 18 inheritor _ NOUN NN _ 0 root _ _ 19 of _ ADP IN _ 22 case _ _ 20 a _ DET DT _ 22 det _ _ 21 comedic _ ADJ JJ _ 22 amod _ _ 22 tradition _ NOUN NN _ 18 nmod _ _ 23 dating _ VERB VBG _ 22 acl _ _ 24 back _ ADV RB _ 23 advmod _ _ 25 to _ ADP TO _ 28 case _ _ 26 `` _ PUNCT `` _ 28 punct _ _ 27 Duck _ PROPN NNP _ 28 compound _ _ 28 Soup _ PROPN NNP _ 24 nmod _ _ 29 , _ PUNCT , _ 18 punct _ _ 30 '' _ PUNCT '' _ 18 punct _ _ 31 and _ CONJ CC _ 18 cc _ _ 32 he _ PRON PRP _ 36 nsubj _ _ 33 's _ VERB VBZ _ 36 cop _ _ 34 currently _ ADV RB _ 36 advmod _ _ 35 a _ DET DT _ 36 det _ _ 36 man _ NOUN NN _ 18 conj _ _ 37 in _ ADP IN _ 39 case _ _ 38 hot _ ADJ JJ _ 39 amod _ _ 39 water _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 18 punct _ _ 1 Here _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 neutral _ ADJ JJ _ 5 amod _ _ 5 language _ NOUN NN _ 7 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 is _ VERB VBZ _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 gist _ NOUN NN _ 7 nsubj _ _ 10 of _ ADP IN _ 14 case _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Mason _ PROPN NNP _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 remarks _ NOUN NNS _ 9 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 quoted _ VERB VBN _ 14 dep _ _ 17 first _ ADV RB _ 16 advmod _ _ 18 in _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Village _ PROPN NNP _ 21 compound _ _ 21 Voice _ PROPN NNP _ 16 nmod _ _ 22 while _ SCONJ IN _ 27 mark _ _ 23 he _ PRON PRP _ 27 nsubj _ _ 24 was _ VERB VBD _ 27 cop _ _ 25 a _ DET DT _ 27 det _ _ 26 paid _ ADJ JJ _ 27 amod _ _ 27 spokesman _ NOUN NN _ 16 advcl _ _ 28 for _ ADP IN _ 33 case _ _ 29 the _ DET DT _ 33 det _ _ 30 Rudolph _ PROPN NNP _ 33 compound _ _ 31 Giuliani _ PROPN NNP _ 33 compound _ _ 32 mayoral _ ADJ JJ _ 33 amod _ _ 33 campaign _ NOUN NN _ 27 nmod _ _ 34 , _ PUNCT , _ 16 punct _ _ 35 and _ CONJ CC _ 16 cc _ _ 36 then _ ADV RB _ 16 conj _ _ 37 in _ ADP IN _ 38 case _ _ 38 Newsweek _ PROPN NNP _ 36 nmod _ _ 39 after _ SCONJ IN _ 44 mark _ _ 40 he _ PRON PRP _ 44 nsubj _ _ 41 and _ CONJ CC _ 40 cc _ _ 42 the _ DET DT _ 43 det _ _ 43 campaign _ NOUN NN _ 40 conj _ _ 44 parted _ VERB VBD _ 36 advcl _ _ 45 company _ NOUN NN _ 44 dobj _ _ 46 . _ PUNCT . _ 7 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mason _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 8 mark _ _ 5 many _ ADJ JJ _ 7 amod _ _ 6 Jewish _ ADJ JJ _ 7 amod _ _ 7 voters _ NOUN NNS _ 8 nsubj _ _ 8 feel _ VERB VBP _ 3 ccomp _ _ 9 guilty _ ADJ JJ _ 8 xcomp _ _ 10 toward _ ADP IN _ 11 case _ _ 11 blacks _ NOUN NNS _ 9 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 so _ ADP IN _ 8 dep _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 support _ VERB VBP _ 8 parataxis _ _ 16 black _ ADJ JJ _ 17 amod _ _ 17 candidates _ NOUN NNS _ 15 dobj _ _ 18 uncritically _ ADV RB _ 15 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 7 mark _ _ 4 many _ ADJ JJ _ 6 amod _ _ 5 black _ ADJ JJ _ 6 amod _ _ 6 voters _ NOUN NNS _ 7 nsubj _ _ 7 feel _ VERB VBP _ 2 ccomp _ _ 8 bitter _ ADJ JJ _ 7 xcomp _ _ 9 about _ ADP IN _ 11 case _ _ 10 racial _ ADJ JJ _ 11 amod _ _ 11 discrimination _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 so _ ADP IN _ 7 dep _ _ 14 they _ PRON PRP _ 18 nsubj _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 too _ ADV RB _ 18 advmod _ _ 17 , _ PUNCT , _ 18 punct _ _ 18 support _ VERB VBP _ 7 parataxis _ _ 19 black _ ADJ JJ _ 20 amod _ _ 20 candidates _ NOUN NNS _ 18 dobj _ _ 21 uncritically _ ADV RB _ 18 advmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 6 mark _ _ 4 Jews _ PROPN NNPS _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 contributed _ VERB VBN _ 2 ccomp _ _ 7 more _ ADJ JJR _ 6 dobj _ _ 8 to _ ADP TO _ 10 case _ _ 9 black _ ADJ JJ _ 10 amod _ _ 10 causes _ NOUN NNS _ 6 nmod _ _ 11 over _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 years _ NOUN NNS _ 6 nmod _ _ 14 than _ ADP IN _ 16 case _ _ 15 vice _ X FW _ 16 compound _ _ 16 versa _ X FW _ 6 advcl _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Mason _ PROPN NNP _ 8 nsubj _ _ 6 did _ AUX VBD _ 8 aux _ _ 7 not _ PART RB _ 8 neg _ _ 8 use _ VERB VB _ 0 root _ _ 9 neutral _ ADJ JJ _ 10 amod _ _ 10 language _ NOUN NN _ 8 dobj _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 As _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 practitioner _ NOUN NN _ 26 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 ethnic _ ADJ JJ _ 6 amod _ _ 6 humor _ NOUN NN _ 3 nmod _ _ 7 from _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 old _ ADJ JJ _ 10 amod _ _ 10 days _ NOUN NNS _ 3 nmod _ _ 11 on _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Borscht _ PROPN NNP _ 14 compound _ _ 14 Belt _ PROPN NNP _ 10 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 live _ ADJ JJ _ 17 amod _ _ 17 television _ NOUN NN _ 14 conj _ _ 18 and _ CONJ CC _ 14 cc _ _ 19 the _ DET DT _ 21 det _ _ 20 nightclub _ NOUN NN _ 21 compound _ _ 21 circuit _ NOUN NN _ 14 conj _ _ 22 , _ PUNCT , _ 26 punct _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Mason _ PROPN NNP _ 26 nsubj _ _ 25 instinctively _ ADV RB _ 26 advmod _ _ 26 reached _ VERB VBD _ 0 root _ _ 27 for _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 vernacular _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 26 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Jews _ PROPN NNPS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 sick _ ADJ JJ _ 2 ccomp _ _ 7 with _ ADP IN _ 8 case _ _ 8 complexes _ NOUN NNS _ 6 nmod _ _ 9 '' _ PUNCT '' _ 6 punct _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 and _ CONJ CC _ 2 cc _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 called _ VERB VBD _ 2 conj _ _ 14 David _ PROPN NNP _ 15 compound _ _ 15 Dinkins _ PROPN NNP _ 26 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Giuliani _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 black _ ADJ JJ _ 21 amod _ _ 21 opponent _ NOUN NN _ 15 appos _ _ 22 , _ PUNCT , _ 15 punct _ _ 23 `` _ PUNCT `` _ 26 punct _ _ 24 a _ DET DT _ 26 det _ _ 25 fancy _ ADJ JJ _ 26 amod _ _ 26 shvartze _ NOUN NN _ 13 xcomp _ _ 27 with _ ADP IN _ 29 case _ _ 28 a _ DET DT _ 29 det _ _ 29 mustache _ NOUN NN _ 26 nmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 31 '' _ PUNCT '' _ 2 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Mason _ PROPN NNP _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 used _ VERB VBN _ 30 advcl _ _ 6 less _ ADV RBR _ 7 advmod _ _ 7 derogatory _ ADJ JJ _ 8 amod _ _ 8 language _ NOUN NN _ 5 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 articulate _ VERB VB _ 5 advcl _ _ 11 his _ PRON PRP$ _ 13 nmod:poss _ _ 12 amateur _ ADJ JJ _ 13 amod _ _ 13 analysis _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 voting _ NOUN NN _ 17 compound _ _ 17 behavior _ NOUN NN _ 13 nmod _ _ 18 of _ ADP IN _ 22 case _ _ 19 his _ PRON PRP$ _ 22 nmod:poss _ _ 20 fellow _ NOUN NN _ 22 compound _ _ 21 New _ PROPN NNP _ 22 compound _ _ 22 Yorkers _ PROPN NNP _ 17 nmod _ _ 23 , _ PUNCT , _ 30 punct _ _ 24 would _ AUX MD _ 30 aux _ _ 25 the _ DET DT _ 26 det _ _ 26 water _ NOUN NN _ 30 nsubj _ _ 27 be _ VERB VB _ 30 cop _ _ 28 quite _ ADV RB _ 30 advmod _ _ 29 so _ ADV RB _ 30 advmod _ _ 30 hot _ ADJ JJ _ 0 root _ _ 31 ? _ PUNCT . _ 30 punct _ _ 1 It _ PRON PRP _ 19 nsubj _ _ 2 probably _ ADV RB _ 19 advmod _ _ 3 would _ AUX MD _ 19 aux _ _ 4 , _ PUNCT , _ 19 punct _ _ 5 because _ SCONJ IN _ 19 mark _ _ 6 few _ ADJ JJ _ 19 nsubj _ _ 7 or _ CONJ CC _ 6 cc _ _ 8 none _ NOUN NN _ 6 conj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 people _ NOUN NNS _ 6 nmod _ _ 12 upset _ ADJ JJ _ 11 amod _ _ 13 by _ ADP IN _ 17 case _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Mason _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 remarks _ NOUN NNS _ 12 nmod _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 bothered _ VERB VBN _ 0 root _ _ 20 to _ PART TO _ 21 mark _ _ 21 distinguish _ VERB VB _ 19 xcomp _ _ 22 between _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 substance _ NOUN NN _ 21 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 his _ PRON PRP$ _ 27 nmod:poss _ _ 27 comments _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 the _ DET DT _ 30 det _ _ 30 fact _ NOUN NN _ 24 conj _ _ 31 that _ SCONJ IN _ 33 mark _ _ 32 he _ PRON PRP _ 33 nsubj _ _ 33 used _ VERB VBD _ 30 ccomp _ _ 34 insulting _ ADJ JJ _ 35 amod _ _ 35 language _ NOUN NN _ 33 dobj _ _ 36 . _ PUNCT . _ 19 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 some _ DET DT _ 11 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 Mr. _ PROPN NNP _ 7 compound _ _ 7 Mason _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 critics _ NOUN NNS _ 4 nmod _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 implied _ VERB VBN _ 0 root _ _ 12 that _ SCONJ IN _ 21 mark _ _ 13 his _ PRON PRP$ _ 14 nmod:poss _ _ 14 type _ NOUN NN _ 21 nsubj _ _ 15 of _ ADP IN _ 17 case _ _ 16 ethnic _ ADJ JJ _ 17 amod _ _ 17 humor _ NOUN NN _ 14 nmod _ _ 18 is _ VERB VBZ _ 21 cop _ _ 19 itself _ PRON PRP _ 21 nmod:npmod _ _ 20 a _ DET DT _ 21 det _ _ 21 form _ NOUN NN _ 11 ccomp _ _ 22 of _ ADP IN _ 23 case _ _ 23 racism _ NOUN NN _ 21 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 example _ NOUN NN _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 the _ DET DT _ 8 det _ _ 5 New _ PROPN NNP _ 8 compound _ _ 6 York _ PROPN NNP _ 8 compound _ _ 7 state _ NOUN NN _ 8 compound _ _ 8 counsel _ NOUN NN _ 12 nsubj _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 NAACP _ PROPN NNP _ 8 nmod _ _ 12 said _ VERB VBD _ 0 root _ _ 13 that _ SCONJ IN _ 20 mark _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Mason _ PROPN NNP _ 20 nsubj _ _ 16 is _ VERB VBZ _ 20 cop _ _ 17 `` _ PUNCT `` _ 20 punct _ _ 18 like _ ADP IN _ 20 case _ _ 19 a _ DET DT _ 20 det _ _ 20 dinosaur _ NOUN NN _ 12 ccomp _ _ 21 . _ PUNCT . _ 12 punct _ _ 1 People _ NOUN NNS _ 4 nsubj _ _ 2 are _ AUX VBP _ 4 aux _ _ 3 fast _ ADV RB _ 4 advmod _ _ 4 leaving _ VERB VBG _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 place _ NOUN NN _ 4 dobj _ _ 7 where _ ADV WRB _ 10 advmod _ _ 8 he _ PRON PRP _ 10 nsubjpass _ _ 9 is _ AUX VBZ _ 10 auxpass _ _ 10 stuck _ VERB VBN _ 6 acl:relcl _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 critics _ NOUN NNS _ 3 nsubj _ _ 3 fail _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 distinguish _ VERB VB _ 3 xcomp _ _ 6 between _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 type _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 ethnic _ ADJ JJ _ 11 amod _ _ 11 humor _ NOUN NN _ 8 nmod _ _ 12 that _ PRON WDT _ 13 nsubj _ _ 13 aims _ VERB VBZ _ 8 acl:relcl _ _ 14 at _ SCONJ IN _ 15 mark _ _ 15 disparaging _ VERB VBG _ 13 advcl _ _ 16 another _ DET DT _ 17 det _ _ 17 group _ NOUN NN _ 15 dobj _ _ 18 , _ PUNCT , _ 8 punct _ _ 19 such _ ADJ JJ _ 23 case _ _ 20 as _ ADP IN _ 19 mwe _ _ 21 `` _ PUNCT `` _ 23 punct _ _ 22 Polish _ ADJ JJ _ 23 amod _ _ 23 jokes _ NOUN NNS _ 8 nmod _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 ; _ PUNCT : _ 8 punct _ _ 26 and _ CONJ CC _ 8 cc _ _ 27 the _ DET DT _ 28 det _ _ 28 type _ NOUN NN _ 8 conj _ _ 29 that _ PRON WDT _ 31 nsubj _ _ 30 is _ VERB VBZ _ 31 cop _ _ 31 double-edged _ ADJ JJ _ 28 acl:relcl _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 aiming _ VERB VBG _ 31 xcomp _ _ 34 inward _ ADV RB _ 33 advmod _ _ 35 as _ ADV RB _ 34 cc _ _ 36 well _ ADV RB _ 35 mwe _ _ 37 as _ ADP IN _ 35 mwe _ _ 38 outward _ ADV RB _ 34 conj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 latter _ ADJ JJ _ 6 nsubj _ _ 3 typically _ ADV RB _ 6 advmod _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 humor _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 underdog _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 and _ CONJ CC _ 6 cc _ _ 12 it _ PRON PRP _ 14 nsubjpass _ _ 13 was _ AUX VBD _ 14 auxpass _ _ 14 perfected _ VERB VBN _ 6 conj _ _ 15 by _ ADP IN _ 17 case _ _ 16 both _ DET DT _ 17 cc:preconj _ _ 17 blacks _ PROPN NNPS _ 14 nmod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 Jews _ PROPN NNPS _ 17 conj _ _ 20 on _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 minstrel _ NOUN NN _ 25 compound _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 vaudeville _ NOUN NN _ 22 conj _ _ 25 stage _ NOUN NN _ 14 nmod _ _ 26 as _ ADP IN _ 28 case _ _ 27 a _ DET DT _ 28 det _ _ 28 means _ NOUN NN _ 14 nmod _ _ 29 of _ SCONJ IN _ 30 mark _ _ 30 mocking _ VERB VBG _ 28 acl _ _ 31 their _ PRON PRP$ _ 35 nmod:poss _ _ 32 white _ ADJ JJ _ 35 amod _ _ 33 and _ CONJ CC _ 32 cc _ _ 34 gentile _ ADJ JJ _ 32 conj _ _ 35 audiences _ NOUN NNS _ 30 dobj _ _ 36 along _ ADP IN _ 35 advmod _ _ 37 with _ ADP IN _ 38 case _ _ 38 themselves _ PRON PRP _ 36 nmod _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 hands _ NOUN NNS _ 15 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 a _ DET DT _ 6 det _ _ 6 zealot _ NOUN NN _ 3 nmod _ _ 7 like _ ADP IN _ 9 case _ _ 8 Lenny _ PROPN NNP _ 9 compound _ _ 9 Bruce _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 this _ DET DT _ 13 det _ _ 12 double-edged _ ADJ JJ _ 13 amod _ _ 13 blade _ NOUN NN _ 15 nsubj _ _ 14 could _ AUX MD _ 15 aux _ _ 15 cut _ VERB VB _ 0 root _ _ 16 both _ DET DT _ 18 cc:preconj _ _ 17 the _ DET DT _ 18 det _ _ 18 self _ NOUN NN _ 15 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 the _ DET DT _ 21 det _ _ 21 audience _ NOUN NN _ 18 conj _ _ 22 to _ ADP TO _ 23 case _ _ 23 ribbons _ NOUN NNS _ 15 nmod _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 wielded _ VERB VBN _ 14 advcl _ _ 3 by _ ADP IN _ 5 case _ _ 4 a _ DET DT _ 5 det _ _ 5 pro _ NOUN NN _ 2 nmod _ _ 6 like _ ADP IN _ 8 case _ _ 7 Jackie _ PROPN NNP _ 8 compound _ _ 8 Mason _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 it _ PRON PRP _ 14 nsubj _ _ 11 is _ VERB VBZ _ 14 cop _ _ 12 a _ DET DT _ 14 det _ _ 13 constructive _ ADJ JJ _ 14 amod _ _ 14 form _ NOUN NN _ 0 root _ _ 15 of _ ADP IN _ 16 case _ _ 16 mischief _ NOUN NN _ 14 nmod _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 Why _ ADV WRB _ 2 advmod _ _ 2 constructive _ ADJ JJ _ 0 root _ _ 3 ? _ PUNCT . _ 2 punct _ _ 1 Because _ SCONJ IN _ 16 mark _ _ 2 despite _ ADP IN _ 6 case _ _ 3 all _ DET PDT _ 6 det:predet _ _ 4 the _ DET DT _ 6 det _ _ 5 media _ NOUN NNS _ 6 compound _ _ 6 prattle _ NOUN NN _ 16 nmod _ _ 7 about _ SCONJ IN _ 12 mark _ _ 8 comedy _ NOUN NN _ 12 nsubj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 politics _ NOUN NNS _ 8 conj _ _ 11 not _ ADV RB _ 12 neg _ _ 12 mixing _ VERB VBG _ 6 acl _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 they _ PRON PRP _ 16 nsubj _ _ 15 are _ VERB VBP _ 16 cop _ _ 16 similar _ ADJ JJ _ 23 dep _ _ 17 in _ ADP IN _ 19 case _ _ 18 one _ NUM CD _ 19 nummod _ _ 19 respect _ NOUN NN _ 16 nmod _ _ 20 : _ PUNCT : _ 23 punct _ _ 21 Both _ DET DT _ 23 nsubj _ _ 22 can _ AUX MD _ 23 aux _ _ 23 serve _ VERB VB _ 0 root _ _ 24 as _ ADP IN _ 25 case _ _ 25 mechanisms _ NOUN NNS _ 23 nmod _ _ 26 for _ SCONJ IN _ 27 mark _ _ 27 easing _ VERB VBG _ 25 acl _ _ 28 tensions _ NOUN NNS _ 27 dobj _ _ 29 and _ CONJ CC _ 27 cc _ _ 30 facilitating _ VERB VBG _ 27 conj _ _ 31 the _ DET DT _ 32 det _ _ 32 co-existence _ NOUN NN _ 30 dobj _ _ 33 of _ ADP IN _ 34 case _ _ 34 groups _ NOUN NNS _ 32 nmod _ _ 35 in _ ADP IN _ 36 case _ _ 36 conflict _ NOUN NN _ 34 nmod _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 why _ ADV WRB _ 6 advmod _ _ 4 it _ PRON PRP _ 6 nsubj _ _ 5 's _ VERB VBZ _ 6 cop _ _ 6 dangerous _ ADJ JJ _ 2 advcl _ _ 7 to _ PART TO _ 8 mark _ _ 8 have _ VERB VB _ 6 xcomp _ _ 9 well-intentioned _ ADJ JJ _ 11 amod _ _ 10 thought _ NOUN NN _ 11 compound _ _ 11 police _ NOUN NNS _ 19 nsubj _ _ 12 , _ PUNCT , _ 19 punct _ _ 13 on _ ADP IN _ 15 case _ _ 14 college _ NOUN NN _ 15 compound _ _ 15 campuses _ NOUN NNS _ 19 dep _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 elsewhere _ ADV RB _ 15 conj _ _ 18 , _ PUNCT , _ 19 punct _ _ 19 taboo _ VERB VB _ 8 ccomp _ _ 20 all _ DET DT _ 22 det _ _ 21 critical _ ADJ JJ _ 22 amod _ _ 22 mention _ NOUN NN _ 19 dobj _ _ 23 of _ ADP IN _ 25 case _ _ 24 group _ NOUN NN _ 25 compound _ _ 25 differences _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 As _ SCONJ IN _ 4 mark _ _ 2 Elizabeth _ PROPN NNP _ 3 compound _ _ 3 Kristol _ PROPN NNP _ 4 nsubj _ _ 4 wrote _ VERB VBD _ 21 advcl _ _ 5 in _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 New _ PROPN NNP _ 9 compound _ _ 8 York _ PROPN NNP _ 9 compound _ _ 9 Times _ PROPN NNP _ 4 nmod _ _ 10 just _ ADV RB _ 14 advmod _ _ 11 before _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 Mason _ PROPN NNP _ 14 compound _ _ 14 donnybrook _ NOUN NN _ 4 nmod _ _ 15 , _ PUNCT , _ 21 punct _ _ 16 `` _ PUNCT `` _ 21 punct _ _ 17 Perhaps _ ADV RB _ 21 advmod _ _ 18 intolerance _ NOUN NN _ 21 nsubj _ _ 19 would _ AUX MD _ 21 aux _ _ 20 not _ PART RB _ 21 neg _ _ 21 boil _ VERB VB _ 0 root _ _ 22 over _ ADP RP _ 21 compound:prt _ _ 23 with _ ADP IN _ 25 case _ _ 24 such _ ADJ JJ _ 25 amod _ _ 25 intensity _ NOUN NN _ 21 nmod _ _ 26 if _ SCONJ IN _ 30 mark _ _ 27 honest _ ADJ JJ _ 28 amod _ _ 28 differences _ NOUN NNS _ 30 nsubjpass _ _ 29 were _ AUX VBD _ 30 auxpass _ _ 30 allowed _ VERB VBN _ 21 advcl _ _ 31 to _ PART TO _ 32 mark _ _ 32 simmer _ VERB VB _ 30 xcomp _ _ 33 . _ PUNCT . _ 21 punct _ _ 34 '' _ PUNCT '' _ 21 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 question _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 if _ SCONJ IN _ 9 mark _ _ 6 group _ NOUN NN _ 7 compound _ _ 7 conflicts _ NOUN NNS _ 9 nsubj _ _ 8 still _ ADV RB _ 9 advmod _ _ 9 exist _ VERB VBP _ 35 dep _ _ 10 -LRB- _ PUNCT -LRB- _ 14 punct _ _ 11 as _ SCONJ IN _ 14 mark _ _ 12 undeniably _ ADV RB _ 14 advmod _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 do _ VERB VBP _ 9 parataxis _ _ 15 -RRB- _ PUNCT -RRB- _ 14 punct _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 if _ SCONJ IN _ 27 mark _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Mason _ PROPN NNP _ 22 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 type _ NOUN NN _ 27 nsubj _ _ 23 of _ ADP IN _ 25 case _ _ 24 ethnic _ ADJ JJ _ 25 amod _ _ 25 humor _ NOUN NN _ 22 nmod _ _ 26 is _ VERB VBZ _ 27 cop _ _ 27 passe _ ADJ JJ _ 9 conj _ _ 28 , _ PUNCT , _ 35 punct _ _ 29 then _ ADV RB _ 35 advmod _ _ 30 what _ PRON WP _ 32 det _ _ 31 other _ ADJ JJ _ 32 amod _ _ 32 means _ NOUN NNS _ 35 dobj _ _ 33 do _ AUX VBP _ 35 aux _ _ 34 we _ PRON PRP _ 35 nsubj _ _ 35 have _ VERB VB _ 3 ccomp _ _ 36 for _ SCONJ IN _ 37 mark _ _ 37 letting _ VERB VBG _ 35 advcl _ _ 38 off _ ADP RP _ 37 compound:prt _ _ 39 steam _ NOUN NN _ 37 dobj _ _ 40 ? _ PUNCT . _ 35 punct _ _ 1 Do _ AUX VB _ 3 aux _ _ 2 n't _ PART RB _ 3 neg _ _ 3 say _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 TV _ NOUN NN _ 6 compound _ _ 6 sitcom _ NOUN NN _ 3 dep _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 because _ SCONJ IN _ 10 mark _ _ 9 that _ PRON DT _ 10 nsubj _ _ 10 happens _ VERB VBZ _ 3 advcl _ _ 11 to _ PART TO _ 14 mark _ _ 12 be _ VERB VB _ 14 cop _ _ 13 a _ DET DT _ 14 det _ _ 14 genre _ NOUN NN _ 10 xcomp _ _ 15 that _ ADP IN _ 28 nsubj _ _ 16 , _ PUNCT , _ 28 punct _ _ 17 in _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 desperate _ ADJ JJ _ 20 amod _ _ 20 need _ NOUN NN _ 28 nmod _ _ 21 to _ PART TO _ 22 mark _ _ 22 attract _ VERB VB _ 20 acl _ _ 23 everybody _ NOUN NN _ 22 dobj _ _ 24 and _ CONJ CC _ 22 cc _ _ 25 offend _ VERB VB _ 22 conj _ _ 26 nobody _ NOUN NN _ 25 dobj _ _ 27 , _ PUNCT , _ 28 punct _ _ 28 resembles _ VERB VBZ _ 14 acl:relcl _ _ 29 politics _ NOUN NNS _ 28 xcomp _ _ 30 more _ ADV RBR _ 28 advmod _ _ 31 than _ SCONJ IN _ 34 mark _ _ 32 it _ PRON PRP _ 34 nsubj _ _ 33 does _ AUX VBZ _ 34 aux _ _ 34 comedy _ NOUN NN _ 30 advcl _ _ 35 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 true _ ADJ JJ _ 0 root _ _ 4 that _ SCONJ IN _ 9 mark _ _ 5 the _ DET DT _ 7 det _ _ 6 best _ ADJ JJS _ 7 amod _ _ 7 sitcoms _ NOUN NNS _ 9 nsubj _ _ 8 do _ AUX VBP _ 9 aux _ _ 9 allow _ VERB VB _ 3 ccomp _ _ 10 group _ NOUN NN _ 11 compound _ _ 11 differences _ NOUN NNS _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 simmer _ VERB VB _ 9 xcomp _ _ 14 : _ PUNCT : _ 3 punct _ _ 15 yuppies _ NOUN NNS _ 3 parataxis _ _ 16 vs. _ ADP IN _ 18 case _ _ 17 blue-collar _ ADJ JJ _ 18 amod _ _ 18 Bostonians _ PROPN NNPS _ 15 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 Cheers _ PROPN NNP _ 15 nmod _ _ 22 '' _ PUNCT '' _ 21 punct _ _ 23 ; _ PUNCT : _ 15 punct _ _ 24 children _ NOUN NNS _ 15 dep _ _ 25 vs. _ ADP IN _ 26 case _ _ 26 adults _ NOUN NNS _ 24 nmod _ _ 27 in _ ADP IN _ 31 case _ _ 28 `` _ PUNCT `` _ 31 punct _ _ 29 The _ DET DT _ 31 det _ _ 30 Cosby _ PROPN NNP _ 31 compound _ _ 31 Show _ PROPN NNP _ 24 nmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 33 '' _ PUNCT '' _ 3 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 these _ PRON DT _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 not _ PART RB _ 6 neg _ _ 5 the _ DET DT _ 6 det _ _ 6 differences _ NOUN NNS _ 0 root _ _ 7 that _ PRON WDT _ 8 nsubj _ _ 8 make _ VERB VBP _ 6 acl:relcl _ _ 9 headlines _ NOUN NNS _ 8 dobj _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 Chicken _ PROPN NNP _ 4 compound _ _ 4 Soup _ PROPN NNP _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 '' _ PUNCT '' _ 9 punct _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Mason _ PROPN NNP _ 9 nsubj _ _ 9 plays _ VERB VBZ _ 0 root _ _ 10 Jackie _ PROPN NNP _ 9 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 Jewish _ ADJ JJ _ 14 amod _ _ 14 bachelor _ NOUN NN _ 10 appos _ _ 15 courting _ VERB VBG _ 14 acl _ _ 16 Maddie _ PROPN NNP _ 15 dobj _ _ 17 -LRB- _ PUNCT -LRB- _ 19 punct _ _ 18 Lynn _ PROPN NNP _ 19 compound _ _ 19 Redgrave _ PROPN NNP _ 16 appos _ _ 20 -RRB- _ PUNCT -RRB- _ 19 punct _ _ 21 , _ PUNCT , _ 16 punct _ _ 22 an _ DET DT _ 24 det _ _ 23 Irish _ ADJ JJ _ 24 amod _ _ 24 widow _ NOUN NN _ 16 appos _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 mother _ NOUN NN _ 24 conj _ _ 27 of _ ADP IN _ 28 case _ _ 28 three _ NUM CD _ 24 nmod _ _ 29 , _ PUNCT , _ 15 punct _ _ 30 against _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 wishes _ NOUN NNS _ 15 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 his _ PRON PRP$ _ 35 nmod:poss _ _ 35 mother _ NOUN NN _ 32 nmod _ _ 36 -LRB- _ PUNCT -LRB- _ 38 punct _ _ 37 Rita _ PROPN NNP _ 38 compound _ _ 38 Karin _ PROPN NNP _ 35 appos _ _ 39 -RRB- _ PUNCT -RRB- _ 38 punct _ _ 40 and _ CONJ CC _ 35 cc _ _ 41 her _ PRON PRP$ _ 43 nmod:poss _ _ 42 brother _ NOUN NN _ 43 compound _ _ 43 Michael _ PROPN NNP _ 35 conj _ _ 44 -LRB- _ PUNCT -LRB- _ 46 punct _ _ 45 Brandon _ PROPN NNP _ 46 compound _ _ 46 Maggart _ PROPN NNP _ 43 appos _ _ 47 -RRB- _ PUNCT -RRB- _ 46 punct _ _ 48 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ PART POS _ 3 dep _ _ 3 worth _ ADJ JJ _ 0 root _ _ 4 noting _ VERB VBG _ 3 dep _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 both _ DET DT _ 8 det _ _ 7 disapproving _ ADJ JJ _ 8 amod _ _ 8 relatives _ NOUN NNS _ 10 nsubj _ _ 9 are _ VERB VBP _ 10 cop _ _ 10 immigrants _ NOUN NNS _ 3 ccomp _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 least _ ADJ JJS _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 they _ PRON PRP _ 6 nsubj _ _ 5 both _ DET DT _ 6 dep _ _ 6 speak _ VERB VBP _ 0 root _ _ 7 with _ ADP IN _ 9 case _ _ 8 strong _ ADJ JJ _ 9 amod _ _ 9 accents _ NOUN NNS _ 6 nmod _ _ 10 , _ PUNCT , _ 6 punct _ _ 11 as _ SCONJ IN _ 12 dep _ _ 12 do _ VERB VBP _ 6 advcl _ _ 13 Jackie _ PROPN NNP _ 12 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Maddie _ PROPN NNP _ 13 conj _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 6 nsubj _ _ 2 could _ AUX MD _ 6 aux _ _ 3 n't _ PART RB _ 6 neg _ _ 4 be _ VERB VB _ 6 cop _ _ 5 more _ ADV RBR _ 6 advmod _ _ 6 obvious _ ADJ JJ _ 0 root _ _ 7 that _ SCONJ IN _ 14 mark _ _ 8 `` _ PUNCT `` _ 14 punct _ _ 9 Chicken _ PROPN NNP _ 10 compound _ _ 10 Soup _ PROPN NNP _ 14 nsubjpass _ _ 11 '' _ PUNCT '' _ 14 punct _ _ 12 is _ AUX VBZ _ 14 aux _ _ 13 being _ AUX VBG _ 14 auxpass _ _ 14 made _ VERB VBN _ 6 ccomp _ _ 15 from _ ADP IN _ 18 case _ _ 16 an _ DET DT _ 18 det _ _ 17 old _ ADJ JJ _ 18 amod _ _ 18 recipe _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 a _ DET DT _ 4 det _ _ 3 safe _ ADJ JJ _ 4 amod _ _ 4 one _ NUM CD _ 6 dep _ _ 5 -- _ PUNCT : _ 6 punct _ _ 6 imagine _ VERB VB _ 0 root _ _ 7 if _ SCONJ IN _ 16 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 romance _ NOUN NN _ 16 nsubj _ _ 10 in _ ADP IN _ 11 case _ _ 11 question _ NOUN NN _ 9 nmod _ _ 12 were _ VERB VBD _ 16 cop _ _ 13 between _ ADP IN _ 16 case _ _ 14 an _ DET DT _ 16 det _ _ 15 Orthodox _ PROPN NNP _ 16 compound _ _ 16 Jew _ PROPN NNP _ 6 advcl _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 a _ DET DT _ 19 det _ _ 19 member _ NOUN NN _ 16 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 Nation _ PROPN NNP _ 19 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 Islam _ PROPN NNP _ 22 nmod _ _ 25 . _ PUNCT . _ 6 punct _ _ 1 Back _ ADV RB _ 18 advmod _ _ 2 in _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 1920s _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 18 punct _ _ 6 the _ DET DT _ 10 det _ _ 7 play _ NOUN NN _ 10 compound _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 movie _ NOUN NN _ 7 conj _ _ 10 versions _ NOUN NNS _ 18 nsubj _ _ 11 of _ ADP IN _ 16 case _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 Abie _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 Irish _ PROPN NNP _ 16 compound _ _ 16 Rose _ PROPN NNP _ 10 nmod _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 made _ VERB VBD _ 0 root _ _ 19 the _ DET DT _ 20 det _ _ 20 theme _ NOUN NN _ 33 nsubj _ _ 21 of _ ADP IN _ 22 case _ _ 22 courtship _ NOUN NN _ 20 nmod _ _ 23 between _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 assimilated _ ADJ JJ _ 26 amod _ _ 26 offspring _ NOUN NN _ 22 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 Jewish _ ADJ JJ _ 31 amod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 Irish _ ADJ JJ _ 28 conj _ _ 31 immigrants _ NOUN NNS _ 26 nmod _ _ 32 so _ ADV RB _ 33 advmod _ _ 33 popular _ ADJ JJ _ 18 xcomp _ _ 34 that _ SCONJ IN _ 41 mark _ _ 35 its _ PRON PRP$ _ 36 nmod:poss _ _ 36 author _ NOUN NN _ 41 nsubj _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 Anne _ PROPN NNP _ 39 compound _ _ 39 Nichols _ PROPN NNP _ 36 appos _ _ 40 , _ PUNCT , _ 36 punct _ _ 41 lost _ VERB VBD _ 33 ccomp _ _ 42 a _ DET DT _ 44 det _ _ 43 plagiarism _ NOUN NN _ 44 compound _ _ 44 suit _ NOUN NN _ 41 dobj _ _ 45 on _ ADP IN _ 47 case _ _ 46 the _ DET DT _ 47 det _ _ 47 grounds _ NOUN NNS _ 41 nmod _ _ 48 that _ SCONJ IN _ 52 mark _ _ 49 the _ DET DT _ 50 det _ _ 50 plot _ NOUN NN _ 52 nsubj _ _ 51 has _ AUX VBZ _ 52 aux _ _ 52 entered _ VERB VBN _ 47 ccomp _ _ 53 the _ DET DT _ 55 det _ _ 54 public _ ADJ JJ _ 55 amod _ _ 55 domain _ NOUN NN _ 52 dobj _ _ 56 . _ PUNCT . _ 18 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 remained _ VERB VBN _ 0 root _ _ 5 there _ ADV RB _ 4 advmod _ _ 6 , _ PUNCT , _ 4 punct _ _ 7 as _ SCONJ IN _ 8 mark _ _ 8 evidenced _ VERB VBN _ 4 advcl _ _ 9 by _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 reappearance _ NOUN NN _ 8 nmod _ _ 12 in _ ADP IN _ 16 case _ _ 13 a _ DET DT _ 16 det _ _ 14 1972 _ NUM CD _ 16 nummod _ _ 15 CBS _ PROPN NNP _ 16 compound _ _ 16 sitcom _ NOUN NN _ 11 nmod _ _ 17 called _ VERB VBN _ 16 acl _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 Bridget _ PROPN NNP _ 21 nsubj _ _ 20 Loves _ PROPN NNP _ 21 dep _ _ 21 Bernie _ PROPN NNP _ 17 xcomp _ _ 22 , _ PUNCT , _ 16 punct _ _ 23 '' _ PUNCT '' _ 16 punct _ _ 24 whose _ PRON WP$ _ 26 nmod:poss _ _ 25 sole _ ADJ JJ _ 26 amod _ _ 26 distinction _ NOUN NN _ 27 nsubj _ _ 27 was _ VERB VBD _ 16 acl:relcl _ _ 28 that _ SCONJ IN _ 30 mark _ _ 29 it _ PRON PRP _ 30 nsubj _ _ 30 led _ VERB VBD _ 27 ccomp _ _ 31 to _ ADP TO _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 real-life _ ADJ JJ _ 34 amod _ _ 34 marriage _ NOUN NN _ 30 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 Meredith _ PROPN NNP _ 37 compound _ _ 37 Baxter _ PROPN NNP _ 34 nmod _ _ 38 and _ CONJ CC _ 37 cc _ _ 39 David _ PROPN NNP _ 40 compound _ _ 40 Birney _ PROPN NNP _ 37 conj _ _ 41 . _ PUNCT . _ 4 punct _ _ 1 Clearly _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 question _ NOUN NN _ 10 nsubj _ _ 5 with _ ADP IN _ 8 case _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 Chicken _ PROPN NNP _ 8 compound _ _ 8 Soup _ PROPN NNP _ 4 nmod _ _ 9 '' _ PUNCT '' _ 8 punct _ _ 10 is _ VERB VBZ _ 0 root _ _ 11 not _ PART RB _ 10 neg _ _ 12 whether _ SCONJ IN _ 16 mark _ _ 13 the _ DET DT _ 14 det _ _ 14 pot _ NOUN NN _ 16 nsubj _ _ 15 will _ AUX MD _ 16 aux _ _ 16 boil _ VERB VB _ 10 ccomp _ _ 17 over _ ADP RP _ 16 compound:prt _ _ 18 , _ PUNCT , _ 16 punct _ _ 19 but _ CONJ CC _ 16 cc _ _ 20 whether _ SCONJ IN _ 23 mark _ _ 21 it _ PRON PRP _ 23 nsubj _ _ 22 will _ AUX MD _ 23 aux _ _ 23 simmer _ VERB VB _ 16 conj _ _ 24 at _ ADP IN _ 25 case _ _ 25 all _ DET DT _ 23 nmod _ _ 26 . _ PUNCT . _ 10 punct _ _ 1 So _ ADP IN _ 2 case _ _ 2 far _ ADV RB _ 8 advmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 bubbles _ NOUN NNS _ 8 nsubj _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 few _ ADJ JJ _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 far _ ADV RB _ 11 advmod _ _ 11 between _ ADV RB _ 8 advmod _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 Part _ NOUN NN _ 7 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 problem _ NOUN NN _ 1 nmod _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 the _ DET DT _ 7 det _ _ 7 tendency _ NOUN NN _ 0 root _ _ 8 of _ ADP IN _ 10 case _ _ 9 all _ DET DT _ 10 det _ _ 10 sitcoms _ NOUN NNS _ 7 nmod _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 ever _ ADV RB _ 16 advmod _ _ 13 since _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 didactic _ ADJ JJ _ 16 amod _ _ 16 days _ NOUN NNS _ 7 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 Norman _ PROPN NNP _ 19 compound _ _ 19 Lear _ PROPN NNP _ 16 nmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 to _ PART TO _ 22 mark _ _ 22 preach _ VERB VB _ 7 acl _ _ 23 about _ ADP IN _ 25 case _ _ 24 social _ ADJ JJ _ 25 amod _ _ 25 issues _ NOUN NNS _ 22 nmod _ _ 26 . _ PUNCT . _ 7 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 some _ DET DT _ 3 det _ _ 3 extent _ NOUN NN _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 this _ DET DT _ 6 det _ _ 6 tendency _ NOUN NN _ 7 nsubj _ _ 7 emerges _ VERB VBZ _ 0 root _ _ 8 whenever _ ADV WRB _ 11 advmod _ _ 9 the _ DET DT _ 10 det _ _ 10 show _ NOUN NN _ 11 nsubj _ _ 11 tries _ VERB VBZ _ 7 advcl _ _ 12 to _ PART TO _ 13 mark _ _ 13 enlighten _ VERB VB _ 11 xcomp _ _ 14 us _ PRON PRP _ 13 dobj _ _ 15 about _ ADP IN _ 17 case _ _ 16 ethnic _ ADJ JJ _ 17 amod _ _ 17 stereotypes _ NOUN NNS _ 13 nmod _ _ 18 by _ SCONJ IN _ 19 mark _ _ 19 reversing _ VERB VBG _ 13 advcl _ _ 20 them _ PRON PRP _ 19 dobj _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 For _ ADP IN _ 2 case _ _ 2 instance _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Michael _ PROPN NNP _ 5 nsubj _ _ 5 dislikes _ VERB VBZ _ 0 root _ _ 6 Jackie _ PROPN NNP _ 5 dobj _ _ 7 not _ ADV RB _ 14 dep _ _ 8 because _ SCONJ IN _ 14 mark _ _ 9 he _ PRON PRP _ 14 nsubj _ _ 10 's _ VERB VBZ _ 14 cop _ _ 11 a _ DET DT _ 14 det _ _ 12 shrewd _ ADJ JJ _ 14 amod _ _ 13 Jewish _ ADJ JJ _ 14 amod _ _ 14 businessman _ NOUN NN _ 5 advcl _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 but _ CONJ CC _ 14 cc _ _ 17 because _ SCONJ IN _ 19 mark _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 quits _ VERB VBZ _ 14 conj _ _ 20 his _ PRON PRP$ _ 22 nmod:poss _ _ 21 well-paying _ ADJ JJ _ 22 amod _ _ 22 job _ NOUN NN _ 19 dobj _ _ 23 as _ ADP IN _ 25 case _ _ 24 a _ DET DT _ 25 det _ _ 25 salesman _ NOUN NN _ 22 nmod _ _ 26 in _ SCONJ IN _ 29 mark _ _ 27 order _ NOUN NN _ 26 mwe _ _ 28 to _ PART TO _ 29 mark _ _ 29 become _ VERB VB _ 19 advcl _ _ 30 a _ DET DT _ 32 det _ _ 31 social _ ADJ JJ _ 32 amod _ _ 32 worker _ NOUN NN _ 29 xcomp _ _ 33 . _ PUNCT . _ 5 punct _ _ 1 Even _ ADV RB _ 2 advmod _ _ 2 more _ ADV RBR _ 3 advmod _ _ 3 problematic _ ADJ JJ _ 4 dep _ _ 4 is _ VERB VBZ _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 incompatibility _ NOUN NN _ 4 nsubj _ _ 7 between _ ADP IN _ 9 case _ _ 8 sitcom _ NOUN NN _ 9 compound _ _ 9 preachiness _ NOUN NN _ 6 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Mr. _ PROPN NNP _ 12 compound _ _ 12 Mason _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 comic _ ADJ JJ _ 15 amod _ _ 15 persona _ NOUN NN _ 9 conj _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 best _ ADJ JJS _ 3 amod _ _ 3 moments _ NOUN NNS _ 7 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 show _ NOUN NN _ 3 nmod _ _ 7 occur _ VERB VBP _ 0 root _ _ 8 at _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 beginning _ NOUN NN _ 7 advcl _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 13 det _ _ 13 end _ NOUN NN _ 10 conj _ _ 14 -LRB- _ PUNCT -LRB- _ 19 punct _ _ 15 and _ CONJ CC _ 19 cc _ _ 16 occasionally _ ADV RB _ 19 dep _ _ 17 in _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 middle _ NOUN NN _ 10 dep _ _ 20 -RRB- _ PUNCT -RRB- _ 19 punct _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 when _ ADV WRB _ 25 advmod _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Mason _ PROPN NNP _ 25 nsubj _ _ 25 slips _ VERB VBZ _ 19 acl:relcl _ _ 26 into _ ADP IN _ 29 case _ _ 27 his _ PRON PRP$ _ 29 nmod:poss _ _ 28 standup _ ADJ JJ _ 29 amod _ _ 29 mode _ NOUN NN _ 25 nmod _ _ 30 and _ CONJ CC _ 25 cc _ _ 31 starts _ NOUN NNS _ 25 conj _ _ 32 meting _ VERB VBG _ 31 xcomp _ _ 33 out _ ADP RP _ 32 compound:prt _ _ 34 that _ DET DT _ 37 det _ _ 35 old-fashioned _ ADJ JJ _ 37 amod _ _ 36 Jewish _ ADJ JJ _ 37 amod _ _ 37 mischief _ NOUN NN _ 32 dobj _ _ 38 to _ ADP TO _ 40 case _ _ 39 other _ ADJ JJ _ 40 amod _ _ 40 people _ NOUN NNS _ 32 nmod _ _ 41 as _ ADV RB _ 40 cc _ _ 42 well _ ADV RB _ 41 mwe _ _ 43 as _ ADP IN _ 41 mwe _ _ 44 to _ ADP TO _ 45 case _ _ 45 himself _ PRON PRP _ 40 conj _ _ 46 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 7 cc _ _ 2 too _ ADV RB _ 3 advmod _ _ 3 often _ ADV RB _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 these _ DET DT _ 6 det _ _ 6 routines _ NOUN NNS _ 7 nsubj _ _ 7 lack _ VERB VBP _ 0 root _ _ 8 spark _ NOUN NN _ 7 dobj _ _ 9 because _ SCONJ IN _ 18 mark _ _ 10 this _ DET DT _ 11 det _ _ 11 sitcom _ NOUN NN _ 18 nsubj _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 like _ ADP IN _ 15 case _ _ 14 all _ DET DT _ 15 det _ _ 15 sitcoms _ NOUN NNS _ 18 nmod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 is _ VERB VBZ _ 18 cop _ _ 18 timid _ ADJ JJ _ 7 advcl _ _ 19 about _ SCONJ IN _ 20 mark _ _ 20 confronting _ VERB VBG _ 18 advcl _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Mason _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 stock _ NOUN NN _ 20 dobj _ _ 25 in _ ADP IN _ 26 case _ _ 26 trade _ NOUN NN _ 24 nmod _ _ 27 - _ PUNCT : _ 24 punct _ _ 28 ethnic _ ADJ JJ _ 29 amod _ _ 29 differences _ NOUN NNS _ 24 dep _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 'm _ AUX VBP _ 4 aux _ _ 3 not _ PART RB _ 4 neg _ _ 4 suggesting _ VERB VBG _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 the _ DET DT _ 7 det _ _ 7 producers _ NOUN NNS _ 8 nsubj _ _ 8 start _ VERB VB _ 4 ccomp _ _ 9 putting _ VERB VBG _ 8 xcomp _ _ 10 together _ ADV RB _ 9 advmod _ _ 11 episodes _ NOUN NNS _ 9 dobj _ _ 12 about _ ADP IN _ 13 case _ _ 13 topics _ NOUN NNS _ 11 nmod _ _ 14 like _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 Catholic-Jewish _ ADJ JJ _ 17 amod _ _ 17 dispute _ NOUN NN _ 13 nmod _ _ 18 over _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 Carmelite _ ADJ JJ _ 21 amod _ _ 21 convent _ NOUN NN _ 17 nmod _ _ 22 at _ ADP IN _ 23 case _ _ 23 Auschwitz _ PROPN NNP _ 21 nmod _ _ 24 . _ PUNCT . _ 4 punct _ _ 1 That _ DET DT _ 2 det _ _ 2 issue _ NOUN NN _ 13 nsubj _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 like _ ADP IN _ 6 case _ _ 5 racial _ ADJ JJ _ 6 amod _ _ 6 tensions _ NOUN NNS _ 13 nmod _ _ 7 in _ ADP IN _ 10 case _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 York _ PROPN NNP _ 10 compound _ _ 10 City _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 will _ AUX MD _ 13 aux _ _ 13 have _ VERB VB _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 cool _ VERB VB _ 13 xcomp _ _ 16 down _ ADP RP _ 15 compound:prt _ _ 17 , _ PUNCT , _ 15 punct _ _ 18 not _ PART RB _ 19 neg _ _ 19 heat _ VERB VB _ 15 dep _ _ 20 up _ ADP RP _ 19 compound:prt _ _ 21 , _ PUNCT , _ 15 punct _ _ 22 before _ SCONJ IN _ 25 mark _ _ 23 it _ PRON PRP _ 25 nsubj _ _ 24 can _ AUX MD _ 25 aux _ _ 25 simmer _ VERB VB _ 13 advcl _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 am _ AUX VBP _ 4 aux _ _ 4 suggesting _ VERB VBG _ 0 root _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 they _ PRON PRP _ 7 nsubj _ _ 7 stop _ VERB VB _ 4 ccomp _ _ 8 requiring _ VERB VBG _ 7 xcomp _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Mason _ PROPN NNP _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 interrupt _ VERB VB _ 8 xcomp _ _ 13 his _ PRON PRP$ _ 15 nmod:poss _ _ 14 classic _ ADJ JJ _ 15 amod _ _ 15 shtik _ NOUN NN _ 12 dobj _ _ 16 with _ ADP IN _ 18 case _ _ 17 some _ DET DT _ 18 det _ _ 18 line _ NOUN NN _ 12 nmod _ _ 19 about _ ADP IN _ 21 case _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 caring _ VERB VBG _ 18 acl _ _ 22 for _ ADP IN _ 24 case _ _ 23 other _ ADJ JJ _ 24 amod _ _ 24 people _ NOUN NNS _ 21 nmod _ _ 25 '' _ PUNCT '' _ 21 punct _ _ 26 that _ PRON WDT _ 28 nsubj _ _ 27 would _ AUX MD _ 28 aux _ _ 28 sound _ VERB VB _ 18 acl:relcl _ _ 29 shmaltzy _ NOUN NN _ 28 xcomp _ _ 30 on _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 lips _ NOUN NNS _ 28 nmod _ _ 33 of _ ADP IN _ 35 case _ _ 34 Miss _ PROPN NNP _ 35 compound _ _ 35 America _ PROPN NNP _ 32 nmod _ _ 36 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 your _ PRON PRP$ _ 3 nmod:poss _ _ 3 age _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 Jackie _ PROPN NNP _ 8 nsubj _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 you _ PRON PRP _ 8 nsubj _ _ 8 ought _ AUX MD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 know _ VERB VB _ 8 xcomp _ _ 11 that _ SCONJ IN _ 15 mark _ _ 12 you _ PRON PRP _ 15 nsubj _ _ 13 ca _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 make _ VERB VB _ 10 ccomp _ _ 16 soup _ NOUN NN _ 15 dobj _ _ 17 without _ SCONJ IN _ 18 mark _ _ 18 turning _ VERB VBG _ 15 advcl _ _ 19 up _ ADP RP _ 18 compound:prt _ _ 20 the _ DET DT _ 21 det _ _ 21 flame _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 official _ ADJ JJ _ 5 amod _ _ 3 White _ PROPN NNP _ 5 compound _ _ 4 House _ PROPN NNP _ 5 compound _ _ 5 reaction _ NOUN NN _ 12 nsubj _ _ 6 to _ ADP TO _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 plunge _ NOUN NN _ 5 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 has _ VERB VBZ _ 0 root _ _ 13 a _ DET DT _ 15 det _ _ 14 60-year _ ADJ JJ _ 15 amod _ _ 15 history _ NOUN NN _ 12 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 calm _ ADJ JJ _ 15 nmod _ _ 18 , _ PUNCT , _ 12 punct _ _ 19 right _ ADV RB _ 12 advmod _ _ 20 up _ ADP IN _ 19 case _ _ 21 through _ ADP IN _ 22 case _ _ 22 Friday _ PROPN NNP _ 19 nmod _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 Treasury _ PROPN NNP _ 4 compound _ _ 2 Secretary _ PROPN NNP _ 4 compound _ _ 3 Nicholas _ PROPN NNP _ 4 compound _ _ 4 Brady _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 in _ ADP IN _ 8 case _ _ 7 a _ DET DT _ 8 det _ _ 8 statement _ NOUN NN _ 5 nmod _ _ 9 Friday _ PROPN NNP _ 5 nmod:tmod _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 the _ DET DT _ 13 det _ _ 12 stock-market _ NOUN NN _ 13 compound _ _ 13 decline _ NOUN NN _ 17 nsubj _ _ 14 `` _ PUNCT `` _ 17 punct _ _ 15 does _ AUX VBZ _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 signal _ VERB VB _ 5 ccomp _ _ 18 any _ DET DT _ 20 det _ _ 19 fundamental _ ADJ JJ _ 20 amod _ _ 20 change _ NOUN NN _ 17 dobj _ _ 21 in _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 condition _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 economy _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 28 '' _ PUNCT '' _ 5 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 economy _ NOUN NN _ 10 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 '' _ PUNCT '' _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 added _ VERB VBD _ 10 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 remains _ VERB VBZ _ 0 root _ _ 11 well-balanced _ ADJ JJ _ 10 xcomp _ _ 12 and _ CONJ CC _ 10 cc _ _ 13 the _ DET DT _ 14 det _ _ 14 outlook _ NOUN NN _ 19 nsubj _ _ 15 is _ VERB VBZ _ 19 cop _ _ 16 for _ ADP IN _ 19 case _ _ 17 continued _ ADJ JJ _ 19 amod _ _ 18 moderate _ ADJ JJ _ 19 amod _ _ 19 growth _ NOUN NN _ 10 conj _ _ 20 . _ PUNCT . _ 10 punct _ _ 21 '' _ PUNCT '' _ 10 punct _ _ 1 Sound _ VERB VB _ 0 root _ _ 2 familiar _ ADJ JJ _ 1 xcomp _ _ 3 ? _ PUNCT . _ 1 punct _ _ 1 Here _ ADV RB _ 2 advmod _ _ 2 's _ VERB VBZ _ 16 dep _ _ 3 what _ PRON WP _ 6 dobj _ _ 4 Ronald _ PROPN NNP _ 5 compound _ _ 5 Reagan _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 2 dep _ _ 7 after _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 1987 _ NUM CD _ 10 nummod _ _ 10 crash _ NOUN NN _ 6 nmod _ _ 11 : _ PUNCT : _ 16 punct _ _ 12 `` _ PUNCT `` _ 16 punct _ _ 13 The _ DET DT _ 15 det _ _ 14 underlying _ ADJ JJ _ 15 amod _ _ 15 economy _ NOUN NN _ 16 nsubj _ _ 16 remains _ VERB VBZ _ 0 root _ _ 17 sound _ ADJ JJ _ 16 xcomp _ _ 18 . _ PUNCT . _ 16 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 nothing _ NOUN NN _ 2 nsubj _ _ 4 wrong _ ADJ JJ _ 3 amod _ _ 5 with _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 economy _ NOUN NN _ 4 nmod _ _ 8 ... _ PUNCT : _ 2 punct _ _ 9 all _ DET PDT _ 11 det:predet _ _ 10 the _ DET DT _ 11 det _ _ 11 indices _ NOUN NNS _ 12 nsubj _ _ 12 are _ VERB VBP _ 2 parataxis _ _ 13 up _ ADV RB _ 12 advmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 15 '' _ PUNCT '' _ 2 punct _ _ 1 Heard _ VERB VBN _ 0 root _ _ 2 that _ PRON DT _ 1 dobj _ _ 3 before _ ADV RB _ 1 advmod _ _ 4 ? _ PUNCT . _ 1 punct _ _ 1 After _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 1929 _ NUM CD _ 4 nummod _ _ 4 crash _ NOUN NN _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Herbert _ PROPN NNP _ 7 compound _ _ 7 Hoover _ PROPN NNP _ 8 nsubj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 : _ PUNCT : _ 8 punct _ _ 10 `` _ PUNCT `` _ 24 punct _ _ 11 The _ DET DT _ 13 det _ _ 12 fundamental _ ADJ JJ _ 13 amod _ _ 13 business _ NOUN NN _ 24 nsubj _ _ 14 of _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 country _ NOUN NN _ 13 nmod _ _ 17 ... _ PUNCT : _ 24 punct _ _ 18 is _ VERB VBZ _ 24 cop _ _ 19 on _ ADP IN _ 24 case _ _ 20 a _ DET DT _ 24 det _ _ 21 sound _ ADJ JJ _ 24 amod _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 prosperous _ ADJ JJ _ 21 conj _ _ 24 basis _ NOUN NN _ 8 ccomp _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Robinson _ PROPN NNP _ 9 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 57 _ NUM CD _ 5 nummod _ _ 5 years _ NOUN NNS _ 6 nmod:npmod _ _ 6 old _ ADJ JJ _ 2 amod _ _ 7 , _ PUNCT , _ 2 punct _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 elected _ VERB VBN _ 0 root _ _ 10 president _ NOUN NN _ 9 xcomp _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 chief _ ADJ JJ _ 14 amod _ _ 13 executive _ ADJ JJ _ 14 amod _ _ 14 officer _ NOUN NN _ 10 conj _ _ 15 of _ ADP IN _ 17 case _ _ 16 this _ DET DT _ 17 det _ _ 17 maker _ NOUN NN _ 10 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 magnetic _ ADJ JJ _ 21 amod _ _ 20 recording _ NOUN NN _ 21 compound _ _ 21 heads _ NOUN NNS _ 17 nmod _ _ 22 for _ ADP IN _ 24 case _ _ 23 disk _ NOUN NN _ 24 compound _ _ 24 drives _ NOUN NNS _ 21 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ VERB VBN _ 4 cop _ _ 4 president _ NOUN NN _ 0 root _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 chief _ ADJ JJ _ 8 amod _ _ 7 executive _ ADJ JJ _ 8 amod _ _ 8 officer _ NOUN NN _ 4 conj _ _ 9 of _ ADP IN _ 12 case _ _ 10 Amperex _ PROPN NNP _ 12 compound _ _ 11 Electronics _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 a _ DET DT _ 15 det _ _ 15 division _ NOUN NN _ 12 appos _ _ 16 of _ ADP IN _ 20 case _ _ 17 North _ PROPN NNP _ 20 compound _ _ 18 American _ PROPN NNP _ 20 compound _ _ 19 Philips _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 15 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 itself _ PRON PRP _ 20 appos _ _ 23 a _ DET DT _ 24 det _ _ 24 subsidiary _ NOUN NN _ 22 dep _ _ 25 of _ ADP IN _ 28 case _ _ 26 N.V _ PROPN NNP _ 28 compound _ _ 27 . _ PUNCT . _ 28 punct _ _ 28 Philips _ PROPN NNP _ 24 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 Netherlands _ PROPN NNPS _ 28 nmod _ _ 32 . _ PUNCT . _ 4 punct _ _ 1 Charles _ PROPN NNP _ 4 compound _ _ 2 J. _ PROPN NNP _ 4 compound _ _ 3 Lawson _ PROPN NNP _ 4 compound _ _ 4 Jr. _ PROPN NNP _ 19 nsubj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 68 _ NUM CD _ 4 amod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 who _ PRON WP _ 13 nsubj _ _ 9 had _ AUX VBD _ 13 aux _ _ 10 been _ VERB VBN _ 13 cop _ _ 11 acting _ ADJ JJ _ 13 amod _ _ 12 chief _ ADJ JJ _ 13 amod _ _ 13 executive _ NOUN NN _ 4 acl:relcl _ _ 14 since _ ADP IN _ 15 case _ _ 15 June _ PROPN NNP _ 13 nmod _ _ 16 14 _ NUM CD _ 15 nummod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 will _ AUX MD _ 19 aux _ _ 19 continue _ VERB VB _ 0 root _ _ 20 as _ ADP IN _ 21 case _ _ 21 chairman _ NOUN NN _ 19 nmod _ _ 22 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 former _ ADJ JJ _ 3 amod _ _ 3 president _ NOUN NN _ 12 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 chief _ ADJ JJ _ 6 amod _ _ 6 executive _ NOUN NN _ 3 conj _ _ 7 , _ PUNCT , _ 3 punct _ _ 8 Eric _ PROPN NNP _ 10 compound _ _ 9 W. _ PROPN NNP _ 10 compound _ _ 10 Markrud _ PROPN NNP _ 3 appos _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 resigned _ VERB VBD _ 0 root _ _ 13 in _ ADP IN _ 14 case _ _ 14 June _ PROPN NNP _ 12 nmod _ _ 15 . _ PUNCT . _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Senate _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decision _ NOUN NN _ 17 nsubj _ _ 5 to _ PART TO _ 6 mark _ _ 6 approve _ VERB VB _ 4 acl _ _ 7 a _ DET DT _ 10 det _ _ 8 bare-bones _ ADJ JJ _ 10 amod _ _ 9 deficit-reduction _ NOUN NN _ 10 compound _ _ 10 bill _ NOUN NN _ 6 dobj _ _ 11 without _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 capital-gains _ NOUN NNS _ 15 compound _ _ 14 tax _ NOUN NN _ 15 compound _ _ 15 cut _ NOUN NN _ 10 nmod _ _ 16 still _ ADV RB _ 17 advmod _ _ 17 leaves _ VERB VBZ _ 0 root _ _ 18 open _ ADJ JJ _ 17 xcomp _ _ 19 the _ DET DT _ 20 det _ _ 20 possibility _ NOUN NN _ 18 dep _ _ 21 of _ SCONJ IN _ 22 mark _ _ 22 enacting _ VERB VBG _ 20 acl _ _ 23 a _ DET DT _ 26 det _ _ 24 gains _ NOUN NNS _ 26 compound _ _ 25 tax _ NOUN NN _ 26 compound _ _ 26 reduction _ NOUN NN _ 22 dobj _ _ 27 this _ DET DT _ 28 det _ _ 28 year _ NOUN NN _ 22 nmod:tmod _ _ 29 . _ PUNCT . _ 17 punct _ _ 1 Late _ ADV RB _ 3 advmod _ _ 2 Friday _ PROPN NNP _ 3 compound _ _ 3 night _ NOUN NN _ 7 nmod:tmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 Senate _ PROPN NNP _ 7 nsubj _ _ 7 voted _ VERB VBD _ 0 root _ _ 8 87-7 _ NUM CD _ 7 advmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 approve _ VERB VB _ 7 xcomp _ _ 11 an _ DET DT _ 16 det _ _ 12 estimated _ ADJ JJ _ 16 amod _ _ 13 $ _ SYM $ _ 16 amod _ _ 14 13.5 _ NUM CD _ 15 compound _ _ 15 billion _ NUM CD _ 13 nummod _ _ 16 measure _ NOUN NN _ 10 dobj _ _ 17 that _ PRON WDT _ 20 nsubjpass _ _ 18 had _ AUX VBD _ 20 aux _ _ 19 been _ AUX VBN _ 20 auxpass _ _ 20 stripped _ VERB VBN _ 16 acl:relcl _ _ 21 of _ ADP IN _ 22 case _ _ 22 hundreds _ NOUN NNS _ 20 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 provisions _ NOUN NNS _ 22 nmod _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 would _ AUX MD _ 28 aux _ _ 27 have _ AUX VB _ 28 aux _ _ 28 widened _ VERB VBN _ 22 acl:relcl _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 rather _ ADV RB _ 28 cc _ _ 31 than _ ADP IN _ 30 mwe _ _ 32 narrowed _ VERB VBN _ 28 conj _ _ 33 , _ PUNCT , _ 28 punct _ _ 34 the _ DET DT _ 37 det _ _ 35 federal _ ADJ JJ _ 37 amod _ _ 36 budget _ NOUN NN _ 37 compound _ _ 37 deficit _ NOUN NN _ 28 conj _ _ 38 . _ PUNCT . _ 7 punct _ _ 1 Lawmakers _ NOUN NNS _ 3 nsubj _ _ 2 drastically _ ADV RB _ 3 advmod _ _ 3 streamlined _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 bill _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 blunt _ VERB VB _ 3 advcl _ _ 8 criticism _ NOUN NN _ 7 dobj _ _ 9 that _ SCONJ IN _ 12 mark _ _ 10 it _ PRON PRP _ 12 nsubj _ _ 11 was _ VERB VBD _ 12 cop _ _ 12 bloated _ ADJ JJ _ 8 ccomp _ _ 13 with _ ADP IN _ 16 case _ _ 14 special-interest _ NOUN NN _ 16 dep _ _ 15 tax _ NOUN NN _ 16 compound _ _ 16 breaks _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 spending _ NOUN NN _ 19 compound _ _ 19 increases _ NOUN NNS _ 16 conj _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ AUX VBP _ 4 aux _ _ 4 putting _ VERB VBG _ 19 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 deficit-reduction _ NOUN NN _ 7 compound _ _ 7 bill _ NOUN NN _ 4 dobj _ _ 8 back _ ADV RB _ 4 advmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 category _ NOUN NN _ 4 nmod _ _ 12 of _ SCONJ IN _ 16 mark _ _ 13 being _ VERB VBG _ 16 cop _ _ 14 a _ DET DT _ 16 det _ _ 15 deficit-reduction _ NOUN NN _ 16 compound _ _ 16 bill _ NOUN NN _ 11 acl _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Senate _ PROPN NNP _ 25 compound _ _ 21 Budget _ PROPN NNP _ 25 compound _ _ 22 Committee _ PROPN NNP _ 25 compound _ _ 23 Chairman _ PROPN NNP _ 25 compound _ _ 24 James _ PROPN NNP _ 25 compound _ _ 25 Sasser _ PROPN NNP _ 19 nsubj _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 D. _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Tenn _ PROPN NNP _ 27 dep _ _ 30 . _ PUNCT . _ 29 punct _ _ 31 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 32 . _ PUNCT . _ 19 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 Senate _ PROPN NNP _ 3 compound _ _ 3 supporters _ NOUN NNS _ 8 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 trimmer _ ADJ JJR _ 7 amod _ _ 7 legislation _ NOUN NN _ 3 nmod _ _ 8 said _ VERB VBD _ 0 root _ _ 9 that _ SCONJ IN _ 15 mark _ _ 10 other _ ADJ JJ _ 11 amod _ _ 11 bills _ NOUN NNS _ 15 nsubj _ _ 12 would _ AUX MD _ 15 aux _ _ 13 soon _ ADV RB _ 15 advmod _ _ 14 be _ AUX VB _ 15 aux _ _ 15 moving _ VERB VBG _ 8 ccomp _ _ 16 through _ ADP IN _ 17 case _ _ 17 Congress _ PROPN NNP _ 15 nmod _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 could _ AUX MD _ 20 aux _ _ 20 carry _ VERB VB _ 15 ccomp _ _ 21 some _ DET DT _ 20 dobj _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 measures _ NOUN NNS _ 21 nmod _ _ 25 that _ PRON WDT _ 28 nsubjpass _ _ 26 had _ AUX VBD _ 28 aux _ _ 27 been _ AUX VBN _ 28 auxpass _ _ 28 cast _ VERB VBN _ 24 acl:relcl _ _ 29 aside _ ADV RB _ 28 advmod _ _ 30 , _ PUNCT , _ 21 punct _ _ 31 including _ VERB VBG _ 35 case _ _ 32 a _ DET DT _ 35 det _ _ 33 capital-gains _ NOUN NNS _ 35 compound _ _ 34 tax _ NOUN NN _ 35 compound _ _ 35 cut _ NOUN NN _ 21 nmod _ _ 36 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 13 nmod _ _ 3 , _ PUNCT , _ 13 punct _ _ 4 the _ DET DT _ 7 det _ _ 5 companion _ ADJ JJ _ 7 amod _ _ 6 deficit-reduction _ NOUN NN _ 7 compound _ _ 7 bill _ NOUN NN _ 13 nsubj _ _ 8 already _ ADV RB _ 9 advmod _ _ 9 passed _ VERB VBN _ 7 acl _ _ 10 by _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 House _ PROPN NNP _ 9 nmod _ _ 13 includes _ VERB VBZ _ 0 root _ _ 14 a _ DET DT _ 16 det _ _ 15 capital-gains _ NOUN NNS _ 16 compound _ _ 16 provision _ NOUN NN _ 13 dobj _ _ 17 . _ PUNCT . _ 13 punct _ _ 1 House-Senate _ PROPN NNP _ 2 compound _ _ 2 negotiations _ NOUN NNS _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 likely _ ADJ JJ _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 begin _ VERB VB _ 4 xcomp _ _ 7 at _ ADP IN _ 8 case _ _ 8 midweek _ NOUN NN _ 6 nmod _ _ 9 and _ CONJ CC _ 6 cc _ _ 10 last _ VERB VB _ 6 conj _ _ 11 for _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 while _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 No _ DET DT _ 3 neg _ _ 3 one _ NOUN NN _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 predict _ VERB VB _ 16 ccomp _ _ 6 exactly _ ADV RB _ 7 advmod _ _ 7 what _ PRON WP _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 happen _ VERB VB _ 5 ccomp _ _ 10 on _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 House _ PROPN NNP _ 13 compound _ _ 13 side _ NOUN NN _ 9 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Senate _ PROPN NNP _ 21 compound _ _ 18 Minority _ PROPN NNP _ 21 compound _ _ 19 Leader _ PROPN NNP _ 21 compound _ _ 20 Robert _ PROPN NNP _ 21 compound _ _ 21 Dole _ PROPN NNP _ 16 nsubj _ _ 22 -LRB- _ PUNCT -LRB- _ 23 punct _ _ 23 R. _ PROPN NNP _ 21 appos _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 Kan _ PROPN NNP _ 23 dep _ _ 26 . _ PUNCT . _ 25 punct _ _ 27 -RRB- _ PUNCT -RRB- _ 23 punct _ _ 28 . _ PUNCT . _ 16 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 added _ VERB VBD _ 8 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 I _ PRON PRP _ 8 nsubj _ _ 8 believe _ VERB VBP _ 0 root _ _ 9 Republicans _ PROPN NNPS _ 13 nsubj _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 Democrats _ PROPN NNPS _ 9 conj _ _ 12 will _ AUX MD _ 13 aux _ _ 13 work _ VERB VB _ 8 ccomp _ _ 14 together _ ADV RB _ 13 advmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 get _ VERB VB _ 13 xcomp _ _ 17 capital-gains _ NOUN NNS _ 18 compound _ _ 18 reform _ NOUN NN _ 16 dobj _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 16 nmod:tmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 22 '' _ PUNCT '' _ 8 punct _ _ 1 White _ PROPN NNP _ 6 compound _ _ 2 House _ PROPN NNP _ 6 compound _ _ 3 Budget _ PROPN NNP _ 6 compound _ _ 4 Director _ PROPN NNP _ 6 compound _ _ 5 Richard _ PROPN NNP _ 6 compound _ _ 6 Darman _ PROPN NNP _ 7 nsubj _ _ 7 told _ VERB VBD _ 0 root _ _ 8 reporters _ NOUN NNS _ 7 dobj _ _ 9 yesterday _ ADV RB _ 7 nmod:tmod _ _ 10 that _ SCONJ IN _ 15 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 administration _ NOUN NN _ 15 nsubj _ _ 13 would _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 push _ VERB VB _ 7 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 keep _ VERB VB _ 15 xcomp _ _ 18 the _ DET DT _ 20 det _ _ 19 capital-gains _ NOUN NNS _ 20 compound _ _ 20 cut _ NOUN NN _ 17 dobj _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 final _ ADJ JJ _ 24 amod _ _ 24 version _ NOUN NN _ 17 nmod _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 bill _ NOUN NN _ 24 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 need _ VERB VB _ 17 ccomp _ _ 6 this _ PRON DT _ 5 dobj _ _ 7 as _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 way _ NOUN NN _ 5 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 get _ VERB VB _ 9 acl _ _ 12 capital _ NOUN NN _ 13 compound _ _ 13 gains _ NOUN NNS _ 11 dobj _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 House _ PROPN NNP _ 6 compound _ _ 2 Budget _ PROPN NNP _ 6 compound _ _ 3 Committee _ PROPN NNP _ 6 compound _ _ 4 Chairman _ PROPN NNP _ 6 compound _ _ 5 Leon _ PROPN NNP _ 6 compound _ _ 6 Panetta _ PROPN NNP _ 13 nsubj _ _ 7 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 8 D. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 Calif _ PROPN NNP _ 8 dep _ _ 11 . _ PUNCT . _ 10 punct _ _ 12 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 in _ ADP IN _ 16 case _ _ 15 an _ DET DT _ 16 det _ _ 16 interview _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 `` _ PUNCT `` _ 33 punct _ _ 19 If _ SCONJ IN _ 23 mark _ _ 20 that _ PRON DT _ 23 nsubj _ _ 21 's _ VERB VBZ _ 23 cop _ _ 22 the _ DET DT _ 23 det _ _ 23 signal _ NOUN NN _ 33 advcl _ _ 24 that _ PRON WDT _ 25 nsubj _ _ 25 comes _ VERB VBZ _ 23 acl:relcl _ _ 26 from _ ADP IN _ 29 case _ _ 27 the _ DET DT _ 29 det _ _ 28 White _ PROPN NNP _ 29 compound _ _ 29 House _ PROPN NNP _ 25 nmod _ _ 30 , _ PUNCT , _ 33 punct _ _ 31 that _ PRON WDT _ 33 nsubj _ _ 32 will _ AUX MD _ 33 aux _ _ 33 help _ VERB VB _ 13 ccomp _ _ 34 a _ DET DT _ 36 det _ _ 35 great _ ADJ JJ _ 36 amod _ _ 36 deal _ NOUN NN _ 33 nmod:npmod _ _ 37 . _ PUNCT . _ 13 punct _ _ 38 '' _ PUNCT '' _ 13 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Senate _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 decision _ NOUN NN _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 a _ DET DT _ 7 det _ _ 7 setback _ NOUN NN _ 0 root _ _ 8 for _ ADP IN _ 10 case _ _ 9 President _ PROPN NNP _ 10 compound _ _ 10 Bush _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 7 cc _ _ 12 will _ AUX MD _ 13 aux _ _ 13 make _ VERB VB _ 7 conj _ _ 14 approval _ NOUN NN _ 21 nsubj _ _ 15 of _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 capital-gains _ NOUN NNS _ 19 compound _ _ 18 tax _ NOUN NN _ 19 compound _ _ 19 cut _ NOUN NN _ 14 nmod _ _ 20 less _ ADV RBR _ 21 advmod _ _ 21 certain _ ADJ JJ _ 13 xcomp _ _ 22 this _ DET DT _ 23 det _ _ 23 year _ NOUN NN _ 21 dep _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Opponents _ NOUN NNS _ 6 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 cut _ NOUN NN _ 1 nmod _ _ 5 are _ AUX VBP _ 6 aux _ _ 6 playing _ VERB VBG _ 0 root _ _ 7 hardball _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 6 punct _ _ 1 Senate _ PROPN NNP _ 5 compound _ _ 2 Majority _ PROPN NNP _ 5 compound _ _ 3 Leader _ PROPN NNP _ 5 compound _ _ 4 George _ PROPN NNP _ 5 compound _ _ 5 Mitchell _ PROPN NNP _ 11 nsubj _ _ 6 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 7 D. _ PROPN NNP _ 5 appos _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Maine _ PROPN NNP _ 7 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 he _ PRON PRP _ 15 nsubj _ _ 13 was _ VERB VBD _ 15 cop _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 confident _ ADJ JJ _ 11 ccomp _ _ 16 '' _ PUNCT '' _ 15 punct _ _ 17 that _ SCONJ IN _ 27 mark _ _ 18 any _ DET DT _ 20 det _ _ 19 House-Senate _ PROPN NNP _ 20 compound _ _ 20 agreement _ NOUN NN _ 27 nsubj _ _ 21 on _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 deficit-reduction _ NOUN NN _ 24 compound _ _ 24 legislation _ NOUN NN _ 20 nmod _ _ 25 would _ AUX MD _ 27 aux _ _ 26 n't _ PART RB _ 27 neg _ _ 27 include _ VERB VB _ 15 ccomp _ _ 28 a _ DET DT _ 31 det _ _ 29 capital-gains _ NOUN NNS _ 31 compound _ _ 30 tax _ NOUN NN _ 31 compound _ _ 31 cut _ NOUN NN _ 27 dobj _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 a _ DET DT _ 4 det _ _ 3 senior _ ADJ JJ _ 4 amod _ _ 4 aide _ NOUN NN _ 18 nsubj _ _ 5 to _ ADP TO _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 House _ PROPN NNP _ 8 compound _ _ 8 Ways _ PROPN NNP _ 4 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Means _ PROPN NNP _ 11 compound _ _ 11 Committee _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 where _ ADV WRB _ 16 advmod _ _ 14 tax _ NOUN NN _ 15 compound _ _ 15 legislation _ NOUN NN _ 16 nsubj _ _ 16 originates _ VERB VBZ _ 8 acl:relcl _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 said _ VERB VBD _ 0 root _ _ 19 there _ PRON EX _ 20 expl _ _ 20 are _ VERB VBP _ 18 ccomp _ _ 21 n't _ PART RB _ 20 neg _ _ 22 any _ DET DT _ 24 det _ _ 23 `` _ PUNCT `` _ 24 punct _ _ 24 plans _ NOUN NNS _ 20 nsubj _ _ 25 to _ PART TO _ 26 mark _ _ 26 produce _ VERB VB _ 24 acl _ _ 27 another _ DET DT _ 29 det _ _ 28 tax _ NOUN NN _ 29 compound _ _ 29 bill _ NOUN NN _ 26 dobj _ _ 30 that _ PRON WDT _ 32 nsubj _ _ 31 could _ AUX MD _ 32 aux _ _ 32 carry _ VERB VB _ 29 acl:relcl _ _ 33 a _ DET DT _ 36 det _ _ 34 gains _ NOUN NNS _ 36 compound _ _ 35 tax _ NOUN NN _ 36 compound _ _ 36 cut _ NOUN NN _ 32 dobj _ _ 37 this _ DET DT _ 38 det _ _ 38 year _ NOUN NN _ 26 nmod:tmod _ _ 39 . _ PUNCT . _ 18 punct _ _ 40 '' _ PUNCT '' _ 18 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 obvious _ ADJ JJ _ 3 amod _ _ 3 place _ NOUN NN _ 24 nsubj _ _ 4 to _ PART TO _ 5 mark _ _ 5 attach _ VERB VB _ 3 acl _ _ 6 a _ DET DT _ 9 det _ _ 7 capital-gains _ NOUN NNS _ 9 compound _ _ 8 tax _ NOUN NN _ 9 compound _ _ 9 cut _ NOUN NN _ 5 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 perhaps _ ADV RB _ 9 advmod _ _ 13 other _ ADJ JJ _ 15 amod _ _ 14 popular _ ADJ JJ _ 15 amod _ _ 15 items _ NOUN NNS _ 9 dep _ _ 16 stripped _ VERB VBN _ 15 acl _ _ 17 from _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 deficit-reduction _ NOUN NN _ 20 compound _ _ 20 bill _ NOUN NN _ 16 nmod _ _ 21 , _ PUNCT , _ 9 punct _ _ 22 is _ VERB VBZ _ 24 cop _ _ 23 the _ DET DT _ 24 det _ _ 24 legislation _ NOUN NN _ 0 root _ _ 25 to _ PART TO _ 26 mark _ _ 26 raise _ VERB VB _ 24 acl _ _ 27 the _ DET DT _ 30 det _ _ 28 federal _ ADJ JJ _ 30 amod _ _ 29 borrowing _ NOUN NN _ 30 compound _ _ 30 limit _ NOUN NN _ 26 dobj _ _ 31 . _ PUNCT . _ 24 punct _ _ 1 Such _ ADJ JJ _ 2 amod _ _ 2 legislation _ NOUN NN _ 5 nsubjpass _ _ 3 must _ AUX MD _ 5 aux _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 enacted _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 end _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 month _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Senate _ PROPN NNP _ 3 compound _ _ 3 bill _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 pared _ VERB VBN _ 0 root _ _ 6 back _ ADV RB _ 5 advmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 an _ DET DT _ 9 det _ _ 9 attempt _ NOUN NN _ 5 nmod _ _ 10 to _ PART TO _ 11 mark _ _ 11 speed _ VERB VB _ 9 acl _ _ 12 deficit-reduction _ NOUN NN _ 11 dobj _ _ 13 through _ ADP IN _ 14 case _ _ 14 Congress _ PROPN NNP _ 11 nmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Because _ SCONJ IN _ 7 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 legislation _ NOUN NN _ 7 nsubjpass _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 n't _ PART RB _ 7 neg _ _ 6 been _ AUX VBN _ 7 auxpass _ _ 7 completed _ VERB VBN _ 11 advcl _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 President _ PROPN NNP _ 10 compound _ _ 10 Bush _ PROPN NNP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 0 root _ _ 12 until _ ADP IN _ 13 case _ _ 13 midnight _ NOUN NN _ 11 nmod _ _ 14 tonight _ NOUN NN _ 13 nmod:tmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 enact _ VERB VB _ 11 xcomp _ _ 17 across-the-board _ ADJ JJ _ 19 amod _ _ 18 spending _ NOUN NN _ 19 compound _ _ 19 cuts _ NOUN NNS _ 16 dobj _ _ 20 mandated _ VERB VBN _ 19 acl _ _ 21 by _ ADP IN _ 25 case _ _ 22 the _ DET DT _ 25 det _ _ 23 Gramm-Rudman _ PROPN NNP _ 25 compound _ _ 24 deficit-reduction _ NOUN NN _ 25 compound _ _ 25 law _ NOUN NN _ 20 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 Senators _ NOUN NNS _ 2 nsubj _ _ 2 hope _ VERB VBP _ 0 root _ _ 3 that _ SCONJ IN _ 11 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 need _ NOUN NN _ 11 nsubj _ _ 6 to _ PART TO _ 7 mark _ _ 7 avoid _ VERB VB _ 5 acl _ _ 8 those _ DET DT _ 9 det _ _ 9 cuts _ NOUN NNS _ 7 dobj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 pressure _ VERB VB _ 2 ccomp _ _ 12 the _ DET DT _ 13 det _ _ 13 House _ PROPN NNP _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 agree _ VERB VB _ 11 xcomp _ _ 16 to _ ADP TO _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 streamlined _ ADJ JJ _ 19 amod _ _ 19 bill _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 House _ PROPN NNP _ 3 nsubj _ _ 3 appears _ VERB VBZ _ 0 root _ _ 4 reluctant _ ADJ JJ _ 3 xcomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 join _ VERB VB _ 4 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 senators _ NOUN NNS _ 6 dobj _ _ 9 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 key _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 whether _ SCONJ IN _ 8 mark _ _ 5 House _ PROPN NNP _ 6 compound _ _ 6 Republicans _ PROPN NNPS _ 8 nsubj _ _ 7 are _ VERB VBP _ 8 cop _ _ 8 willing _ ADJ JJ _ 3 ccomp _ _ 9 to _ PART TO _ 10 mark _ _ 10 acquiesce _ VERB VB _ 8 xcomp _ _ 11 to _ ADP TO _ 16 case _ _ 12 their _ PRON PRP$ _ 14 nmod:poss _ _ 13 Senate _ PROPN NNP _ 14 compound _ _ 14 colleagues _ NOUN NNS _ 16 nmod:poss _ _ 15 ' _ PART POS _ 14 case _ _ 16 decision _ NOUN NN _ 10 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 drop _ VERB VB _ 16 acl _ _ 19 many _ ADJ JJ _ 21 amod _ _ 20 pet _ ADJ JJ _ 21 amod _ _ 21 provisions _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 Although _ SCONJ IN _ 5 mark _ _ 3 I _ PRON PRP _ 5 nsubjpass _ _ 4 am _ AUX VBP _ 5 auxpass _ _ 5 encouraged _ VERB VBN _ 33 advcl _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 Senate _ PROPN NNP _ 9 compound _ _ 9 action _ NOUN NN _ 5 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 33 parataxis _ _ 13 Chairman _ PROPN NNP _ 15 compound _ _ 14 Dan _ PROPN NNP _ 15 compound _ _ 15 Rostenkowski _ PROPN NNP _ 12 nsubj _ _ 16 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 17 D. _ PROPN NNP _ 15 appos _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Ill _ PROPN NNP _ 17 dep _ _ 20 . _ PUNCT . _ 19 punct _ _ 21 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 22 of _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 House _ PROPN NNP _ 25 compound _ _ 25 Ways _ PROPN NNP _ 15 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 Means _ PROPN NNP _ 28 compound _ _ 28 Committee _ PROPN NNP _ 25 conj _ _ 29 , _ PUNCT , _ 12 punct _ _ 30 `` _ PUNCT `` _ 33 punct _ _ 31 it _ PRON PRP _ 33 nsubj _ _ 32 is _ VERB VBZ _ 33 cop _ _ 33 uncertain _ ADJ JJ _ 0 root _ _ 34 whether _ SCONJ IN _ 40 mark _ _ 35 a _ DET DT _ 37 det _ _ 36 clean _ ADJ JJ _ 37 amod _ _ 37 bill _ NOUN NN _ 40 nsubjpass _ _ 38 can _ AUX MD _ 40 aux _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 achieved _ VERB VBN _ 33 ccomp _ _ 41 in _ ADP IN _ 44 case _ _ 42 the _ DET DT _ 44 det _ _ 43 upcoming _ ADJ JJ _ 44 amod _ _ 44 conference _ NOUN NN _ 40 nmod _ _ 45 with _ ADP IN _ 47 case _ _ 46 the _ DET DT _ 47 det _ _ 47 Senate _ PROPN NNP _ 44 nmod _ _ 48 . _ PUNCT . _ 33 punct _ _ 49 '' _ PUNCT '' _ 33 punct _ _ 1 Another _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 question _ NOUN NN _ 8 nsubj _ _ 4 hovering _ VERB VBG _ 3 acl _ _ 5 over _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 debate _ NOUN NN _ 4 nmod _ _ 8 is _ VERB VBZ _ 0 root _ _ 9 what _ PRON WP _ 12 dobj _ _ 10 President _ PROPN NNP _ 11 compound _ _ 11 Bush _ PROPN NNP _ 12 nsubj _ _ 12 thinks _ VERB VBZ _ 8 ccomp _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 He _ PRON PRP _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 been _ AUX VBN _ 4 aux _ _ 4 resisting _ VERB VBG _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 stripped-down _ ADJ JJ _ 7 amod _ _ 7 bill _ NOUN NN _ 4 dobj _ _ 8 without _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 guaranteed _ ADJ JJ _ 11 amod _ _ 11 vote _ NOUN NN _ 7 nmod _ _ 12 on _ ADP IN _ 16 case _ _ 13 his _ PRON PRP$ _ 16 nmod:poss _ _ 14 capital-gains _ NOUN NNS _ 16 compound _ _ 15 tax _ NOUN NN _ 16 compound _ _ 16 cut _ NOUN NN _ 11 nmod _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Republican _ ADJ JJ _ 3 amod _ _ 3 senators _ NOUN NNS _ 4 nsubj _ _ 4 saw _ VERB VBD _ 0 root _ _ 5 no _ DET DT _ 6 neg _ _ 6 way _ NOUN NN _ 4 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 overcome _ VERB VB _ 6 acl _ _ 9 a _ DET DT _ 11 det _ _ 10 procedural _ ADJ JJ _ 11 amod _ _ 11 hurdle _ NOUN NN _ 8 dobj _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 garner _ VERB VB _ 8 conj _ _ 14 the _ DET DT _ 16 det _ _ 15 60 _ NUM CD _ 16 nummod _ _ 16 votes _ NOUN NNS _ 13 dobj _ _ 17 needed _ VERB VBN _ 16 acl _ _ 18 to _ PART TO _ 19 mark _ _ 19 win _ VERB VB _ 17 xcomp _ _ 20 the _ DET DT _ 22 det _ _ 21 capital-gains _ NOUN NNS _ 22 compound _ _ 22 issue _ NOUN NN _ 19 dobj _ _ 23 on _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 floor _ NOUN NN _ 19 nmod _ _ 26 , _ PUNCT , _ 4 punct _ _ 27 so _ ADP IN _ 4 dep _ _ 28 they _ PRON PRP _ 29 nsubj _ _ 29 went _ VERB VBD _ 4 parataxis _ _ 30 ahead _ ADV RB _ 29 advmod _ _ 31 with _ ADP IN _ 34 case _ _ 32 the _ DET DT _ 34 det _ _ 33 streamlined _ ADJ JJ _ 34 amod _ _ 34 bill _ NOUN NN _ 30 nmod _ _ 35 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Senate _ PROPN NNP _ 3 compound _ _ 3 bill _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 stripped _ VERB VBN _ 0 root _ _ 6 of _ ADP IN _ 13 case _ _ 7 many _ ADJ JJ _ 13 amod _ _ 8 popular _ ADJ JJ _ 11 amod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 though _ ADP IN _ 11 dep _ _ 11 revenue-losing _ ADJ JJ _ 13 amod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 provisions _ NOUN NNS _ 5 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 number _ NOUN NN _ 20 nsubjpass _ _ 17 of _ ADP IN _ 18 case _ _ 18 which _ PRON WDT _ 16 nmod _ _ 19 are _ AUX VBP _ 20 auxpass _ _ 20 included _ VERB VBN _ 13 acl:relcl _ _ 21 in _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 House-passed _ ADJ JJ _ 24 amod _ _ 24 bill _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 1 These _ PRON DT _ 2 nsubj _ _ 2 include _ VERB VBP _ 0 root _ _ 3 a _ DET DT _ 5 det _ _ 4 child-care _ NOUN NN _ 5 compound _ _ 5 initiative _ NOUN NN _ 2 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 extensions _ NOUN NNS _ 5 conj _ _ 8 of _ ADP IN _ 11 case _ _ 9 soon-to-expire _ ADJ JJ _ 11 amod _ _ 10 tax _ NOUN NN _ 11 compound _ _ 11 breaks _ NOUN NNS _ 7 nmod _ _ 12 for _ ADP IN _ 14 case _ _ 13 low-income _ ADJ JJ _ 14 amod _ _ 14 housing _ NOUN NN _ 11 nmod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 research-and-development _ NOUN NN _ 17 compound _ _ 17 expenditures _ NOUN NNS _ 14 conj _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 missing _ VERB VBG _ 0 root _ _ 3 from _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Senate _ PROPN NNP _ 6 compound _ _ 6 bill _ NOUN NN _ 2 nmod _ _ 7 is _ VERB VBZ _ 2 aux _ _ 8 the _ DET DT _ 9 det _ _ 9 House _ PROPN NNP _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 repeal _ NOUN NN _ 2 nsubj _ _ 12 of _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 law _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 called _ VERB VBN _ 14 acl _ _ 17 Section _ PROPN NNP _ 16 xcomp _ _ 18 89 _ NUM CD _ 17 nummod _ _ 19 , _ PUNCT , _ 14 punct _ _ 20 that _ PRON WDT _ 21 nsubj _ _ 21 compels _ VERB VBZ _ 14 acl:relcl _ _ 22 companies _ NOUN NNS _ 21 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 give _ VERB VB _ 21 xcomp _ _ 25 rank-and-file _ ADJ JJ _ 26 amod _ _ 26 workers _ NOUN NNS _ 24 iobj _ _ 27 comparable _ ADJ JJ _ 29 amod _ _ 28 health _ NOUN NN _ 29 compound _ _ 29 benefits _ NOUN NNS _ 24 dobj _ _ 30 to _ ADP TO _ 33 case _ _ 31 top _ ADJ JJ _ 32 dep _ _ 32 paid _ VERB VBN _ 33 amod _ _ 33 executives _ NOUN NNS _ 29 nmod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 One _ NUM CD _ 3 nummod _ _ 2 high-profile _ ADJ JJ _ 3 amod _ _ 3 provision _ NOUN NN _ 21 nsubj _ _ 4 that _ PRON WDT _ 10 nsubj _ _ 5 was _ VERB VBD _ 10 cop _ _ 6 originally _ ADV RB _ 10 advmod _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 Senate _ PROPN NNP _ 10 compound _ _ 10 bill _ NOUN NN _ 3 acl:relcl _ _ 11 but _ CONJ CC _ 10 cc _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 cut _ VERB VBN _ 10 conj _ _ 14 out _ ADP RP _ 13 compound:prt _ _ 15 because _ SCONJ IN _ 17 mark _ _ 16 it _ PRON PRP _ 17 nsubj _ _ 17 lost _ VERB VBD _ 13 advcl _ _ 18 money _ NOUN NN _ 17 dobj _ _ 19 was _ VERB VBD _ 21 cop _ _ 20 the _ DET DT _ 21 det _ _ 21 proposal _ NOUN NN _ 0 root _ _ 22 by _ ADP IN _ 25 case _ _ 23 Chairman _ PROPN NNP _ 25 compound _ _ 24 Lloyd _ PROPN NNP _ 25 compound _ _ 25 Bentsen _ PROPN NNP _ 21 nmod _ _ 26 -LRB- _ PUNCT -LRB- _ 27 punct _ _ 27 D. _ PROPN NNP _ 25 appos _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Texas _ PROPN NNP _ 27 dep _ _ 30 -RRB- _ PUNCT -RRB- _ 27 punct _ _ 31 of _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 Senate _ PROPN NNP _ 35 compound _ _ 34 Finance _ PROPN NNP _ 35 compound _ _ 35 Committee _ PROPN NNP _ 25 nmod _ _ 36 to _ PART TO _ 37 mark _ _ 37 expand _ VERB VB _ 21 acl _ _ 38 the _ DET DT _ 39 det _ _ 39 deduction _ NOUN NN _ 37 dobj _ _ 40 for _ ADP IN _ 43 case _ _ 41 individual _ ADJ JJ _ 43 amod _ _ 42 retirement _ NOUN NN _ 43 compound _ _ 43 accounts _ NOUN NNS _ 39 nmod _ _ 44 . _ PUNCT . _ 21 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Bentsen _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 hopes _ VERB VBZ _ 3 ccomp _ _ 6 the _ DET DT _ 7 det _ _ 7 Senate _ PROPN NNP _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 consider _ VERB VB _ 5 ccomp _ _ 10 that _ DET DT _ 11 det _ _ 11 measure _ NOUN NN _ 9 dobj _ _ 12 soon _ ADV RB _ 9 advmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 delight _ NOUN NN _ 10 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 some _ DET DT _ 6 det _ _ 6 doctors _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 bill _ NOUN NN _ 10 nsubj _ _ 10 dropped _ VERB VBD _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 plan _ NOUN NN _ 10 dobj _ _ 13 passed _ VERB VBN _ 12 acl _ _ 14 by _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 Finance _ PROPN NNP _ 17 compound _ _ 17 Committee _ PROPN NNP _ 13 nmod _ _ 18 that _ PRON WDT _ 21 nsubj _ _ 19 would _ AUX MD _ 21 aux _ _ 20 have _ AUX VB _ 21 aux _ _ 21 overhauled _ VERB VBN _ 12 acl:relcl _ _ 22 the _ DET DT _ 25 det _ _ 23 entire _ ADJ JJ _ 25 amod _ _ 24 physician-reimbursement _ ADJ JJ _ 25 amod _ _ 25 system _ NOUN NN _ 21 dobj _ _ 26 under _ ADP IN _ 27 case _ _ 27 Medicare _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 To _ ADP TO _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 detriment _ NOUN NN _ 22 nmod _ _ 4 of _ ADP IN _ 7 case _ _ 5 many _ ADJ JJ _ 7 amod _ _ 6 low-income _ ADJ JJ _ 7 amod _ _ 7 people _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 22 punct _ _ 9 efforts _ NOUN NNS _ 22 nsubjpass _ _ 10 to _ PART TO _ 11 mark _ _ 11 boost _ VERB VB _ 9 acl _ _ 12 Medicaid _ PROPN NNP _ 13 compound _ _ 13 funding _ NOUN NN _ 11 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 especially _ ADV RB _ 18 advmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 rural _ ADJ JJ _ 18 amod _ _ 18 areas _ NOUN NNS _ 13 nmod _ _ 19 , _ PUNCT , _ 13 punct _ _ 20 also _ ADV RB _ 22 advmod _ _ 21 were _ AUX VBD _ 22 auxpass _ _ 22 stricken _ VERB VBN _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 Asked _ VERB VBN _ 25 advcl _ _ 2 why _ ADV WRB _ 5 advmod _ _ 3 senators _ NOUN NNS _ 5 nsubj _ _ 4 were _ AUX VBD _ 5 aux _ _ 5 giving _ VERB VBG _ 1 ccomp _ _ 6 up _ ADP RP _ 5 compound:prt _ _ 7 so _ ADV RB _ 8 advmod _ _ 8 much _ ADJ JJ _ 5 dobj _ _ 9 , _ PUNCT , _ 25 punct _ _ 10 New _ PROPN NNP _ 14 compound _ _ 11 Mexico _ PROPN NNP _ 14 compound _ _ 12 Sen. _ PROPN NNP _ 14 compound _ _ 13 Pete _ PROPN NNP _ 14 compound _ _ 14 Domenici _ PROPN NNP _ 25 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 ranking _ ADJ JJ _ 18 amod _ _ 18 Republican _ PROPN NNP _ 14 appos _ _ 19 on _ ADP IN _ 23 amod _ _ 20 the _ DET DT _ 23 det _ _ 21 Senate _ PROPN NNP _ 23 compound _ _ 22 Budget _ PROPN NNP _ 23 compound _ _ 23 Committee _ PROPN NNP _ 18 dep _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 `` _ PUNCT `` _ 30 punct _ _ 28 We _ PRON PRP _ 30 nsubj _ _ 29 're _ AUX VBP _ 30 aux _ _ 30 looking _ VERB VBG _ 25 ccomp _ _ 31 like _ ADP IN _ 32 case _ _ 32 idiots _ NOUN NNS _ 30 nmod _ _ 33 . _ PUNCT . _ 25 punct _ _ 1 Things _ NOUN NNS _ 4 nsubj _ _ 2 had _ AUX VBD _ 4 aux _ _ 3 just _ ADV RB _ 4 advmod _ _ 4 gone _ VERB VBN _ 0 root _ _ 5 too _ ADV RB _ 6 advmod _ _ 6 far _ ADV RB _ 4 advmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 8 '' _ PUNCT '' _ 4 punct _ _ 1 Sen. _ PROPN NNP _ 2 compound _ _ 2 Dole _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 7 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 move _ NOUN NN _ 7 nsubj _ _ 7 required _ VERB VBD _ 3 ccomp _ _ 8 sacrifice _ NOUN NN _ 7 dobj _ _ 9 by _ ADP IN _ 11 case _ _ 10 every _ DET DT _ 11 det _ _ 11 senator _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 worked _ VERB VBD _ 0 root _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 others _ NOUN NNS _ 5 nsubj _ _ 5 said _ VERB VBD _ 2 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 because _ SCONJ IN _ 9 mark _ _ 8 there _ PRON EX _ 9 expl _ _ 9 were _ VERB VBD _ 2 advcl _ _ 10 no _ DET DT _ 11 neg _ _ 11 exceptions _ NOUN NNS _ 9 nsubj _ _ 12 : _ PUNCT : _ 9 punct _ _ 13 all _ DET DT _ 15 det _ _ 14 revenue-losing _ ADJ JJ _ 15 amod _ _ 15 provisions _ NOUN NNS _ 17 nsubjpass _ _ 16 were _ AUX VBD _ 17 auxpass _ _ 17 stricken _ VERB VBN _ 9 parataxis _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Senate _ PROPN NNP _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 plan _ NOUN NN _ 4 dobj _ _ 7 by _ ADP IN _ 10 case _ _ 8 its _ PRON PRP$ _ 10 nmod:poss _ _ 9 Finance _ PROPN NNP _ 10 compound _ _ 10 Committee _ PROPN NNP _ 6 nmod _ _ 11 that _ PRON WDT _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 have _ AUX VB _ 14 aux _ _ 14 increased _ VERB VBN _ 6 acl:relcl _ _ 15 the _ DET DT _ 17 det _ _ 16 income _ NOUN NN _ 17 compound _ _ 17 threshold _ NOUN NN _ 14 dobj _ _ 18 beyond _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 22 nmod _ _ 20 senior _ ADJ JJ _ 21 amod _ _ 21 citizens _ NOUN NNS _ 22 nsubj _ _ 22 have _ VERB VBP _ 17 acl:relcl _ _ 23 their _ PRON PRP$ _ 26 nmod:poss _ _ 24 Social _ PROPN NNP _ 26 compound _ _ 25 Security _ PROPN NNP _ 26 compound _ _ 26 benefits _ NOUN NNS _ 27 nsubj _ _ 27 reduced _ VERB VBN _ 22 ccomp _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 bill _ NOUN NN _ 6 nsubj _ _ 6 dropped _ VERB VBD _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 plan _ NOUN NN _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 make _ VERB VB _ 8 acl _ _ 11 permanent _ ADJ JJ _ 10 xcomp _ _ 12 a _ DET DT _ 16 det _ _ 13 3 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 16 amod _ _ 15 excise _ NOUN NN _ 16 compound _ _ 16 tax _ NOUN NN _ 11 dep _ _ 17 on _ ADP IN _ 20 case _ _ 18 long-distance _ ADJ JJ _ 20 amod _ _ 19 telephone _ NOUN NN _ 20 compound _ _ 20 calls _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 no _ ADV RB _ 3 neg _ _ 3 longer _ ADV RBR _ 4 advmod _ _ 4 includes _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 plan _ NOUN NN _ 4 dobj _ _ 7 that _ PRON WDT _ 10 nsubj _ _ 8 would _ AUX MD _ 10 aux _ _ 9 have _ AUX VB _ 10 aux _ _ 10 repealed _ VERB VBN _ 6 acl:relcl _ _ 11 what _ PRON WP _ 12 nsubj _ _ 12 remains _ VERB VBZ _ 10 ccomp _ _ 13 of _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 completed-contract _ ADJ JJ _ 16 amod _ _ 16 method _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 accounting _ NOUN NN _ 16 nmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 which _ PRON WDT _ 22 nsubjpass _ _ 21 is _ AUX VBZ _ 22 auxpass _ _ 22 used _ VERB VBN _ 16 acl:relcl _ _ 23 by _ ADP IN _ 25 case _ _ 24 military _ ADJ JJ _ 25 amod _ _ 25 contractors _ NOUN NNS _ 22 nmod _ _ 26 to _ PART TO _ 27 mark _ _ 27 reduce _ VERB VB _ 22 xcomp _ _ 28 their _ PRON PRP$ _ 30 nmod:poss _ _ 29 tax _ NOUN NN _ 30 compound _ _ 30 burden _ NOUN NN _ 27 dobj _ _ 31 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 drops _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 5 det _ _ 5 provision _ NOUN NN _ 3 dobj _ _ 6 that _ PRON WDT _ 9 nsubj _ _ 7 would _ AUX MD _ 9 aux _ _ 8 have _ AUX VB _ 9 aux _ _ 9 permitted _ VERB VBN _ 5 acl:relcl _ _ 10 corporations _ NOUN NNS _ 9 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 use _ VERB VB _ 9 xcomp _ _ 13 excess _ ADJ JJ _ 15 amod _ _ 14 pension _ NOUN NN _ 15 compound _ _ 15 funds _ NOUN NNS _ 12 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 pay _ VERB VB _ 12 advcl _ _ 18 health _ NOUN NN _ 19 compound _ _ 19 benefits _ NOUN NNS _ 17 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 current _ ADJ JJ _ 22 amod _ _ 22 retirees _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 Also _ ADV RB _ 2 advmod _ _ 2 stricken _ VERB VBN _ 0 root _ _ 3 was _ AUX VBD _ 2 auxpass _ _ 4 a _ DET DT _ 6 det _ _ 5 fivefold _ ADJ JJ _ 6 amod _ _ 6 increase _ NOUN NN _ 2 nsubjpass _ _ 7 in _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 maximum _ ADJ JJ _ 11 amod _ _ 10 Occupational _ PROPN NNP _ 11 compound _ _ 11 Safety _ PROPN NNP _ 6 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Health _ PROPN NNP _ 15 compound _ _ 14 Administration _ PROPN NNP _ 15 compound _ _ 15 penalties _ NOUN NNS _ 11 conj _ _ 16 , _ PUNCT , _ 6 punct _ _ 17 which _ PRON WDT _ 20 nsubj _ _ 18 would _ AUX MD _ 20 aux _ _ 19 have _ AUX VB _ 20 aux _ _ 20 raised _ VERB VBN _ 6 acl:relcl _ _ 21 $ _ SYM $ _ 20 dobj _ _ 22 65 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 in _ ADP IN _ 26 case _ _ 25 fiscal _ ADJ JJ _ 26 amod _ _ 26 1990 _ NUM CD _ 20 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 provision _ NOUN NN _ 15 nsubjpass _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 would _ AUX MD _ 6 aux _ _ 5 have _ AUX VB _ 6 aux _ _ 6 made _ VERB VBN _ 2 acl:relcl _ _ 7 the _ DET DT _ 10 det _ _ 8 Social _ PROPN NNP _ 10 compound _ _ 9 Security _ PROPN NNP _ 10 compound _ _ 10 Administration _ PROPN NNP _ 13 nsubj _ _ 11 an _ DET DT _ 13 det _ _ 12 independent _ ADJ JJ _ 13 amod _ _ 13 agency _ NOUN NN _ 6 xcomp _ _ 14 was _ AUX VBD _ 15 auxpass _ _ 15 excised _ VERB VBN _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 approval _ NOUN NN _ 9 nsubj _ _ 3 of _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 Senate _ PROPN NNP _ 6 compound _ _ 6 bill _ NOUN NN _ 2 nmod _ _ 7 was _ VERB VBD _ 9 cop _ _ 8 especially _ ADV RB _ 9 advmod _ _ 9 sweet _ ADJ JJ _ 0 root _ _ 10 for _ ADP IN _ 12 case _ _ 11 Sen. _ PROPN NNP _ 12 compound _ _ 12 Mitchell _ PROPN NNP _ 9 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 who _ PRON WP _ 16 nsubj _ _ 15 had _ AUX VBD _ 16 aux _ _ 16 proposed _ VERB VBN _ 12 acl:relcl _ _ 17 the _ DET DT _ 18 det _ _ 18 streamlining _ NOUN NN _ 16 dobj _ _ 19 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Mitchell _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 relations _ NOUN NNS _ 25 nsubjpass _ _ 5 with _ ADP IN _ 8 case _ _ 6 Budget _ PROPN NNP _ 8 compound _ _ 7 Director _ PROPN NNP _ 8 compound _ _ 8 Darman _ PROPN NNP _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 who _ PRON WP _ 11 nsubj _ _ 11 pushed _ VERB VBD _ 8 acl:relcl _ _ 12 for _ SCONJ IN _ 18 mark _ _ 13 a _ DET DT _ 15 det _ _ 14 capital-gains _ NOUN NNS _ 15 compound _ _ 15 cut _ NOUN NN _ 18 nsubjpass _ _ 16 to _ PART TO _ 18 mark _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 added _ VERB VBN _ 11 advcl _ _ 19 to _ ADP TO _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 measure _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 8 punct _ _ 23 have _ AUX VBP _ 25 aux _ _ 24 been _ AUX VBN _ 25 auxpass _ _ 25 strained _ VERB VBN _ 0 root _ _ 26 since _ SCONJ IN _ 29 mark _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Darman _ PROPN NNP _ 29 nsubj _ _ 29 chose _ VERB VBD _ 25 advcl _ _ 30 to _ PART TO _ 31 mark _ _ 31 bypass _ VERB VB _ 29 xcomp _ _ 32 the _ DET DT _ 34 det _ _ 33 Maine _ PROPN NNP _ 34 compound _ _ 34 Democrat _ PROPN NNP _ 31 dobj _ _ 35 and _ CONJ CC _ 31 cc _ _ 36 deal _ VERB VB _ 31 conj _ _ 37 with _ ADP IN _ 39 case _ _ 38 other _ ADJ JJ _ 39 amod _ _ 39 lawmakers _ NOUN NNS _ 36 nmod _ _ 40 earlier _ ADV RBR _ 42 advmod _ _ 41 this _ DET DT _ 42 det _ _ 42 year _ NOUN NN _ 29 nmod:tmod _ _ 43 during _ ADP IN _ 45 case _ _ 44 a _ DET DT _ 45 det _ _ 45 dispute _ NOUN NN _ 29 nmod _ _ 46 over _ ADP IN _ 48 case _ _ 47 drug _ NOUN NN _ 48 compound _ _ 48 funding _ NOUN NN _ 45 nmod _ _ 49 in _ ADP IN _ 55 case _ _ 50 the _ DET DT _ 55 det _ _ 51 fiscal _ ADJ JJ _ 55 amod _ _ 52 1989 _ NUM CD _ 55 nummod _ _ 53 supplemental _ ADJ JJ _ 55 amod _ _ 54 spending _ NOUN NN _ 55 compound _ _ 55 bill _ NOUN NN _ 48 nmod _ _ 56 . _ PUNCT . _ 25 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 deficit _ NOUN NN _ 4 compound _ _ 3 reduction _ NOUN NN _ 4 compound _ _ 4 bill _ NOUN NN _ 5 nsubj _ _ 5 contains _ VERB VBZ _ 0 root _ _ 6 $ _ SYM $ _ 5 dobj _ _ 7 5.3 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 tax _ NOUN NN _ 11 compound _ _ 11 increases _ NOUN NNS _ 6 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 fiscal _ ADJ JJ _ 14 amod _ _ 14 1990 _ NUM CD _ 6 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 $ _ SYM $ _ 6 conj _ _ 18 26 _ NUM CD _ 19 compound _ _ 19 billion _ NUM CD _ 17 nummod _ _ 20 over _ ADP IN _ 22 case _ _ 21 five _ NUM CD _ 22 nummod _ _ 22 years _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 revenue-raising _ ADJ JJ _ 3 amod _ _ 3 provisions _ NOUN NNS _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 affect _ VERB VBP _ 3 acl:relcl _ _ 7 mostly _ ADV RB _ 8 advmod _ _ 8 corporations _ NOUN NNS _ 6 dobj _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 would _ AUX MD _ 3 dep _ _ 11 : _ PUNCT : _ 3 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Prevent _ VERB VB _ 0 root _ _ 3 companies _ NOUN NNS _ 2 dobj _ _ 4 that _ PRON WDT _ 6 nsubj _ _ 5 have _ AUX VBP _ 6 aux _ _ 6 made _ VERB VBN _ 3 acl:relcl _ _ 7 leveraged _ ADJ JJ _ 8 amod _ _ 8 buy-outs _ NOUN NNS _ 6 dobj _ _ 9 from _ SCONJ IN _ 10 mark _ _ 10 getting _ VERB VBG _ 2 advcl _ _ 11 federal _ ADJ JJ _ 13 amod _ _ 12 tax _ NOUN NN _ 13 compound _ _ 13 refunds _ NOUN NNS _ 10 dobj _ _ 14 resulting _ VERB VBG _ 13 acl _ _ 15 from _ ADP IN _ 16 case _ _ 16 losses _ NOUN NNS _ 14 nmod _ _ 17 caused _ VERB VBN _ 16 acl _ _ 18 by _ ADP IN _ 20 case _ _ 19 interest _ NOUN NN _ 20 compound _ _ 20 payments _ NOUN NNS _ 17 nmod _ _ 21 on _ ADP IN _ 22 case _ _ 22 debt _ NOUN NN _ 20 nmod _ _ 23 issued _ VERB VBN _ 22 acl _ _ 24 to _ PART TO _ 25 mark _ _ 25 finance _ VERB VB _ 23 xcomp _ _ 26 the _ DET DT _ 27 det _ _ 27 buy-outs _ NOUN NNS _ 25 dobj _ _ 28 , _ PUNCT , _ 2 punct _ _ 29 effective _ ADJ JJ _ 2 xcomp _ _ 30 Aug. _ PROPN NNP _ 29 nmod:tmod _ _ 31 2 _ NUM CD _ 30 nummod _ _ 32 , _ PUNCT , _ 30 punct _ _ 33 1989 _ NUM CD _ 30 nummod _ _ 34 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Require _ VERB VB _ 0 root _ _ 3 mutual _ ADJ JJ _ 4 amod _ _ 4 funds _ NOUN NNS _ 2 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 include _ VERB VB _ 2 xcomp _ _ 7 in _ ADP IN _ 10 case _ _ 8 their _ PRON PRP$ _ 10 nmod:poss _ _ 9 taxable _ ADJ JJ _ 10 amod _ _ 10 income _ NOUN NN _ 6 nmod _ _ 11 dividends _ NOUN NNS _ 6 dobj _ _ 12 paid _ VERB VBN _ 11 acl _ _ 13 to _ ADP TO _ 14 case _ _ 14 them _ PRON PRP _ 12 nmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 date _ NOUN NN _ 12 nmod _ _ 18 that _ ADP IN _ 22 advmod _ _ 19 the _ DET DT _ 20 det _ _ 20 dividends _ NOUN NNS _ 22 nsubjpass _ _ 21 are _ AUX VBP _ 22 auxpass _ _ 22 declared _ VERB VBN _ 17 dep _ _ 23 rather _ ADV RB _ 22 cc _ _ 24 than _ ADP IN _ 23 mwe _ _ 25 received _ VERB VBN _ 22 conj _ _ 26 , _ PUNCT , _ 2 punct _ _ 27 effective _ ADJ JJ _ 2 xcomp _ _ 28 the _ DET DT _ 29 det _ _ 29 day _ NOUN NN _ 27 nmod:tmod _ _ 30 after _ SCONJ IN _ 35 mark _ _ 31 the _ DET DT _ 33 det _ _ 32 tax _ NOUN NN _ 33 compound _ _ 33 bill _ NOUN NN _ 35 nsubjpass _ _ 34 is _ AUX VBZ _ 35 auxpass _ _ 35 enacted _ VERB VBN _ 29 dep _ _ 36 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Close _ VERB VB _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 loophole _ NOUN NN _ 2 dobj _ _ 5 regarding _ VERB VBG _ 4 acl _ _ 6 employee _ NOUN NN _ 9 compound _ _ 7 stock _ NOUN NN _ 9 compound _ _ 8 ownership _ NOUN NN _ 9 compound _ _ 9 plans _ NOUN NNS _ 5 dobj _ _ 10 , _ PUNCT , _ 2 punct _ _ 11 effective _ ADJ JJ _ 2 xcomp _ _ 12 June _ PROPN NNP _ 11 nmod:tmod _ _ 13 6 _ NUM CD _ 12 nummod _ _ 14 , _ PUNCT , _ 12 punct _ _ 15 1989 _ NUM CD _ 12 nummod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 that _ PRON WDT _ 20 nsubjpass _ _ 18 has _ AUX VBZ _ 20 aux _ _ 19 been _ AUX VBN _ 20 auxpass _ _ 20 exploited _ VERB VBN _ 2 dep _ _ 21 by _ ADP IN _ 23 case _ _ 22 investment _ NOUN NN _ 23 compound _ _ 23 bankers _ NOUN NNS _ 20 nmod _ _ 24 in _ ADP IN _ 26 case _ _ 25 corporate _ ADJ JJ _ 26 amod _ _ 26 takeovers _ NOUN NNS _ 20 nmod _ _ 27 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 3 nsubj _ _ 3 repeals _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 50 _ NUM CD _ 6 dep _ _ 6 % _ SYM NN _ 7 advmod _ _ 7 exclusion _ NOUN NN _ 3 dobj _ _ 8 given _ VERB VBN _ 7 acl _ _ 9 to _ ADP TO _ 10 case _ _ 10 banks _ NOUN NNS _ 8 nmod _ _ 11 on _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 interest _ NOUN NN _ 8 nmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 loans _ NOUN NNS _ 13 nmod _ _ 16 used _ VERB VBN _ 15 acl _ _ 17 to _ PART TO _ 18 mark _ _ 18 acquire _ VERB VB _ 16 xcomp _ _ 19 securities _ NOUN NNS _ 18 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 an _ DET DT _ 22 det _ _ 22 ESOP _ PROPN NNP _ 18 nmod _ _ 23 , _ PUNCT , _ 3 punct _ _ 24 if _ SCONJ IN _ 27 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 ESOP _ PROPN NNP _ 27 nsubj _ _ 27 owns _ VERB VBZ _ 3 advcl _ _ 28 less _ ADJ JJR _ 30 advmod _ _ 29 than _ ADP IN _ 28 mwe _ _ 30 30 _ NUM CD _ 31 nummod _ _ 31 % _ SYM NN _ 27 dobj _ _ 32 of _ ADP IN _ 36 case _ _ 33 the _ DET DT _ 34 det _ _ 34 employer _ NOUN NN _ 36 nmod:poss _ _ 35 's _ PART POS _ 34 case _ _ 36 stock _ NOUN NN _ 31 nmod _ _ 37 . _ PUNCT . _ 3 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Curb _ VERB VB _ 0 root _ _ 3 junk _ NOUN NN _ 4 compound _ _ 4 bonds _ NOUN NNS _ 2 dobj _ _ 5 by _ SCONJ IN _ 6 mark _ _ 6 ending _ VERB VBG _ 2 advcl _ _ 7 tax _ NOUN NN _ 8 compound _ _ 8 benefits _ NOUN NNS _ 6 dobj _ _ 9 for _ ADP IN _ 11 case _ _ 10 certain _ ADJ JJ _ 11 amod _ _ 11 securities _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 such _ ADJ JJ _ 16 case _ _ 14 as _ ADP IN _ 13 mwe _ _ 15 zero-coupon _ ADJ JJ _ 16 amod _ _ 16 bonds _ NOUN NNS _ 8 nmod _ _ 17 , _ PUNCT , _ 8 punct _ _ 18 that _ PRON WDT _ 19 nsubj _ _ 19 postpone _ VERB VBP _ 8 acl:relcl _ _ 20 cash _ NOUN NN _ 22 compound _ _ 21 interest _ NOUN NN _ 22 compound _ _ 22 payments _ NOUN NNS _ 19 dobj _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Raise _ VERB VB _ 0 root _ _ 3 $ _ SYM $ _ 2 dobj _ _ 4 851 _ NUM CD _ 5 compound _ _ 5 million _ NUM CD _ 3 nummod _ _ 6 by _ SCONJ IN _ 7 mark _ _ 7 suspending _ VERB VBG _ 2 advcl _ _ 8 for _ ADP IN _ 10 case _ _ 9 one _ NUM CD _ 10 nummod _ _ 10 year _ NOUN NN _ 7 nmod _ _ 11 an _ DET DT _ 13 det _ _ 12 automatic _ ADJ JJ _ 13 amod _ _ 13 reduction _ NOUN NN _ 7 dobj _ _ 14 in _ ADP IN _ 18 case _ _ 15 airport _ NOUN NN _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 airway _ NOUN NN _ 15 conj _ _ 18 taxes _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Speed _ VERB VB _ 0 root _ _ 3 up _ ADP RP _ 2 compound:prt _ _ 4 the _ DET DT _ 5 det _ _ 5 collection _ NOUN NN _ 2 dobj _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 payroll _ NOUN NN _ 9 compound _ _ 9 tax _ NOUN NN _ 5 nmod _ _ 10 from _ ADP IN _ 12 case _ _ 11 large _ ADJ JJ _ 12 amod _ _ 12 companies _ NOUN NNS _ 5 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 effective _ ADJ JJ _ 2 xcomp _ _ 15 August _ PROPN NNP _ 14 nmod:tmod _ _ 16 1990 _ NUM CD _ 15 nummod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Impose _ VERB VB _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 tax _ NOUN NN _ 2 dobj _ _ 5 on _ ADP IN _ 7 case _ _ 6 ozone-depleting _ ADJ JJ _ 7 amod _ _ 7 chemicals _ NOUN NNS _ 2 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 such _ ADJ JJ _ 11 case _ _ 10 as _ ADP IN _ 9 mwe _ _ 11 those _ PRON DT _ 7 nmod _ _ 12 used _ VERB VBN _ 11 acl _ _ 13 in _ ADP IN _ 15 case _ _ 14 air _ NOUN NN _ 15 compound _ _ 15 conditioners _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 in _ ADP IN _ 18 case _ _ 18 Styrofoam _ PROPN NNP _ 15 conj _ _ 19 , _ PUNCT , _ 7 punct _ _ 20 beginning _ VERB VBG _ 23 case _ _ 21 at _ ADP IN _ 23 case _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 1.10 _ NUM CD _ 2 advcl _ _ 24 a _ DET DT _ 25 det _ _ 25 pound _ NOUN NN _ 23 nmod:npmod _ _ 26 starting _ VERB VBG _ 28 case _ _ 27 next _ ADJ JJ _ 28 amod _ _ 28 year _ NOUN NN _ 2 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Withhold _ VERB VB _ 0 root _ _ 3 income _ NOUN NN _ 4 compound _ _ 4 taxes _ NOUN NNS _ 2 dobj _ _ 5 from _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 paychecks _ NOUN NNS _ 2 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 certain _ ADJ JJ _ 11 amod _ _ 10 farm _ NOUN NN _ 11 compound _ _ 11 workers _ NOUN NNS _ 7 nmod _ _ 12 currently _ ADV RB _ 13 advmod _ _ 13 exempt _ ADJ JJ _ 11 amod _ _ 14 from _ ADP IN _ 15 case _ _ 15 withholding _ NOUN NN _ 13 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Change _ VERB VB _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 collection _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 gasoline _ NOUN NN _ 8 compound _ _ 7 excise _ NOUN NN _ 8 compound _ _ 8 taxes _ NOUN NNS _ 4 nmod _ _ 9 to _ ADP TO _ 10 case _ _ 10 weekly _ ADV RB _ 2 nmod _ _ 11 from _ ADP IN _ 12 case _ _ 12 semimonthly _ ADV RB _ 2 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 effective _ ADJ JJ _ 2 xcomp _ _ 15 next _ ADP IN _ 16 amod _ _ 16 year _ NOUN NN _ 14 nmod:tmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Restrict _ VERB VB _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 ability _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 8 case _ _ 6 real _ ADJ JJ _ 8 amod _ _ 7 estate _ NOUN NN _ 8 compound _ _ 8 owners _ NOUN NNS _ 4 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 escape _ VERB VB _ 4 acl _ _ 11 taxes _ NOUN NNS _ 10 dobj _ _ 12 by _ SCONJ IN _ 13 mark _ _ 13 swapping _ VERB VBG _ 10 advcl _ _ 14 one _ NUM CD _ 15 nummod _ _ 15 piece _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 property _ NOUN NN _ 15 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 another _ DET DT _ 13 nmod _ _ 20 instead _ ADV RB _ 22 mark _ _ 21 of _ SCONJ IN _ 20 mwe _ _ 22 selling _ VERB VBG _ 13 advcl _ _ 23 it _ PRON PRP _ 22 dobj _ _ 24 for _ ADP IN _ 25 case _ _ 25 cash _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Increase _ VERB VB _ 0 root _ _ 3 to _ ADP TO _ 5 case _ _ 4 $ _ SYM $ _ 5 dep _ _ 5 6 _ NUM CD _ 2 nmod _ _ 6 a _ DET DT _ 7 det _ _ 7 person _ NOUN NN _ 5 nmod:npmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 $ _ SYM $ _ 10 dep _ _ 10 3 _ NUM CD _ 2 nmod _ _ 11 the _ DET DT _ 15 det _ _ 12 international _ ADJ JJ _ 15 amod _ _ 13 air-passenger _ NOUN NN _ 15 compound _ _ 14 departure _ NOUN NN _ 15 compound _ _ 15 tax _ NOUN NN _ 2 dobj _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 and _ CONJ CC _ 2 cc _ _ 18 impose _ VERB VB _ 2 conj _ _ 19 a _ DET DT _ 22 det _ _ 20 $ _ SYM $ _ 22 amod _ _ 21 3-a-person _ ADJ JJ _ 20 dep _ _ 22 tax _ NOUN NN _ 18 dobj _ _ 23 on _ ADP IN _ 25 case _ _ 24 international _ ADJ JJ _ 25 amod _ _ 25 departures _ NOUN NNS _ 18 nmod _ _ 26 by _ ADP IN _ 28 case _ _ 27 commercial _ ADJ JJ _ 28 amod _ _ 28 ships _ NOUN NNS _ 25 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 measure _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 includes _ VERB VBZ _ 0 root _ _ 5 spending _ NOUN NN _ 6 compound _ _ 6 cuts _ NOUN NNS _ 4 dobj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 increases _ NOUN NNS _ 6 conj _ _ 9 in _ ADP IN _ 11 case _ _ 10 federal _ ADJ JJ _ 11 amod _ _ 11 fees _ NOUN NNS _ 8 nmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Among _ ADP IN _ 3 case _ _ 2 its _ PRON PRP$ _ 3 nmod:poss _ _ 3 provisions _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Reduction _ PROPN NNP _ 0 root _ _ 3 of _ ADP IN _ 5 case _ _ 4 Medicare _ PROPN NNP _ 5 compound _ _ 5 spending _ NOUN NN _ 2 nmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 fiscal _ ADJ JJ _ 8 amod _ _ 8 1990 _ NUM CD _ 2 nmod _ _ 9 by _ ADP IN _ 11 case _ _ 10 some _ DET DT _ 11 advmod _ _ 11 $ _ SYM $ _ 2 nmod _ _ 12 2.8 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 in _ ADP IN _ 16 case _ _ 16 part _ NOUN NN _ 18 nmod _ _ 17 by _ SCONJ IN _ 18 mark _ _ 18 curbing _ VERB VBG _ 2 nmod _ _ 19 increases _ NOUN NNS _ 18 dobj _ _ 20 in _ ADP IN _ 21 case _ _ 21 reimbursements _ NOUN NNS _ 19 nmod _ _ 22 to _ ADP TO _ 23 case _ _ 23 physicians _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plan _ NOUN NN _ 4 nsubj _ _ 3 would _ AUX MD _ 4 aux _ _ 4 impose _ VERB VB _ 0 root _ _ 5 a _ DET DT _ 7 det _ _ 6 brief _ ADJ JJ _ 7 amod _ _ 7 freeze _ NOUN NN _ 4 dobj _ _ 8 on _ ADP IN _ 10 case _ _ 9 physician _ NOUN NN _ 10 compound _ _ 10 fees _ NOUN NNS _ 4 nmod _ _ 11 next _ ADP IN _ 12 amod _ _ 12 year _ NOUN NN _ 4 nmod:tmod _ _ 13 . _ PUNCT . _ 4 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Removal _ PROPN NNP _ 0 root _ _ 3 of _ ADP IN _ 10 case _ _ 4 the _ DET DT _ 7 det _ _ 5 U.S. _ PROPN NNP _ 7 compound _ _ 6 Postal _ PROPN NNP _ 7 compound _ _ 7 Service _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 operating _ NOUN NN _ 10 compound _ _ 10 budget _ NOUN NN _ 2 nmod _ _ 11 from _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 federal _ ADJ JJ _ 14 amod _ _ 14 budget _ NOUN NN _ 2 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 reducing _ VERB VBG _ 2 dep _ _ 17 the _ DET DT _ 18 det _ _ 18 deficit _ NOUN NN _ 16 dobj _ _ 19 by _ ADP IN _ 20 case _ _ 20 $ _ SYM $ _ 16 nmod _ _ 21 1.77 _ NUM CD _ 22 compound _ _ 22 billion _ NUM CD _ 20 nummod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 similar _ ADJ JJ _ 3 amod _ _ 3 provision _ NOUN NN _ 8 nsubj _ _ 4 is _ VERB VBZ _ 8 cop _ _ 5 in _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 House _ PROPN NNP _ 8 compound _ _ 8 version _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Authority _ PROPN NNP _ 0 root _ _ 3 for _ SCONJ IN _ 9 mark _ _ 4 the _ DET DT _ 7 det _ _ 5 Federal _ PROPN NNP _ 7 compound _ _ 6 Aviation _ PROPN NNP _ 7 compound _ _ 7 Administration _ PROPN NNP _ 9 nsubj _ _ 8 to _ PART TO _ 9 mark _ _ 9 raise _ VERB VB _ 2 acl _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 239 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 by _ SCONJ IN _ 14 mark _ _ 14 charging _ VERB VBG _ 9 advcl _ _ 15 fees _ NOUN NNS _ 14 dobj _ _ 16 for _ ADP IN _ 19 case _ _ 17 commercial _ ADJ JJ _ 19 amod _ _ 18 airline-landing _ ADJ JJ _ 19 amod _ _ 19 rights _ NOUN NNS _ 14 nmod _ _ 20 at _ ADP IN _ 24 case _ _ 21 New _ PROPN NNP _ 22 compound _ _ 22 York _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 LaGuardia _ PROPN NNP _ 19 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 John _ PROPN NNP _ 30 compound _ _ 27 F. _ PROPN NNP _ 30 compound _ _ 28 Kennedy _ PROPN NNP _ 30 compound _ _ 29 International _ PROPN NNP _ 30 compound _ _ 30 Airports _ PROPN NNP _ 24 conj _ _ 31 , _ PUNCT , _ 24 punct _ _ 32 O'Hare _ PROPN NNP _ 34 compound _ _ 33 International _ PROPN NNP _ 34 compound _ _ 34 Airport _ PROPN NNP _ 24 conj _ _ 35 in _ ADP IN _ 36 case _ _ 36 Chicago _ PROPN NNP _ 34 nmod _ _ 37 and _ CONJ CC _ 24 cc _ _ 38 National _ PROPN NNP _ 39 compound _ _ 39 Airport _ PROPN NNP _ 24 conj _ _ 40 in _ ADP IN _ 41 case _ _ 41 Washington _ PROPN NNP _ 39 nmod _ _ 42 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Increases _ NOUN NNS _ 0 root _ _ 3 in _ ADP IN _ 7 case _ _ 4 Nuclear _ PROPN NNP _ 7 compound _ _ 5 Regulatory _ PROPN NNP _ 7 compound _ _ 6 Commission _ PROPN NNP _ 7 compound _ _ 7 fees _ NOUN NNS _ 2 nmod _ _ 8 totaling _ VERB VBG _ 2 acl _ _ 9 $ _ SYM $ _ 11 dep _ _ 10 54 _ NUM CD _ 11 nummod _ _ 11 million _ NUM CD _ 8 dobj _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Direction _ NOUN NN _ 0 root _ _ 3 to _ ADP TO _ 7 case _ _ 4 the _ DET DT _ 7 det _ _ 5 U.S. _ PROPN NNP _ 7 compound _ _ 6 Coast _ PROPN NNP _ 7 compound _ _ 7 Guard _ PROPN NNP _ 2 nmod _ _ 8 to _ PART TO _ 9 mark _ _ 9 collect _ VERB VB _ 2 acl _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 50 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 from _ ADP IN _ 14 case _ _ 14 users _ NOUN NNS _ 9 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 Coast _ PROPN NNP _ 18 compound _ _ 17 Guard _ PROPN NNP _ 18 compound _ _ 18 services _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 -- _ PUNCT : _ 2 punct _ _ 2 Raising _ VERB VBG _ 0 root _ _ 3 an _ DET DT _ 5 det _ _ 4 additional _ ADJ JJ _ 5 amod _ _ 5 $ _ SYM $ _ 2 dobj _ _ 6 43 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 by _ SCONJ IN _ 9 mark _ _ 9 increasing _ VERB VBG _ 2 advcl _ _ 10 existing _ ADJ JJ _ 14 amod _ _ 11 Federal _ PROPN NNP _ 14 compound _ _ 12 Communications _ PROPN NNP _ 14 compound _ _ 13 Commission _ PROPN NNP _ 14 compound _ _ 14 fees _ NOUN NNS _ 9 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 penalties _ NOUN NNS _ 14 conj _ _ 17 and _ CONJ CC _ 9 cc _ _ 18 establishing _ VERB VBG _ 9 conj _ _ 19 new _ ADJ JJ _ 20 amod _ _ 20 fees _ NOUN NNS _ 18 dobj _ _ 21 for _ ADP IN _ 24 case _ _ 22 amateur _ ADJ JJ _ 24 amod _ _ 23 radio _ NOUN NN _ 24 compound _ _ 24 operators _ NOUN NNS _ 20 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 ship _ NOUN NN _ 27 compound _ _ 27 stations _ NOUN NNS _ 24 conj _ _ 28 and _ CONJ CC _ 24 cc _ _ 29 mobile _ ADJ JJ _ 31 amod _ _ 30 radio _ NOUN NN _ 31 compound _ _ 31 facilities _ NOUN NNS _ 24 conj _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 John _ PROPN NNP _ 3 compound _ _ 2 E. _ PROPN NNP _ 3 compound _ _ 3 Yang _ PROPN NNP _ 4 nsubj _ _ 4 contributed _ VERB VBD _ 0 root _ _ 5 to _ ADP TO _ 7 case _ _ 6 this _ DET DT _ 7 det _ _ 7 article _ NOUN NN _ 4 nmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 response _ NOUN NN _ 28 nmod _ _ 3 to _ ADP TO _ 9 case _ _ 4 your _ PRON PRP$ _ 9 nmod:poss _ _ 5 overly _ ADV RB _ 6 advmod _ _ 6 optimistic _ ADJ JJ _ 9 amod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 outdated _ ADJ JJ _ 9 amod _ _ 9 piece _ NOUN NN _ 2 nmod _ _ 10 on _ SCONJ IN _ 14 mark _ _ 11 how _ ADV WRB _ 12 advmod _ _ 12 long _ ADV RB _ 14 advmod _ _ 13 unemployment _ NOUN NN _ 14 nsubj _ _ 14 lasts _ VERB VBZ _ 9 acl _ _ 15 -LRB- _ PUNCT -LRB- _ 17 punct _ _ 16 People _ NOUN NNS _ 17 compound _ _ 17 Patterns _ NOUN NNS _ 9 dep _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Sept. _ PROPN NNP _ 17 dep _ _ 20 20 _ NUM CD _ 19 nummod _ _ 21 -RRB- _ PUNCT -RRB- _ 17 punct _ _ 22 : _ PUNCT : _ 28 punct _ _ 23 I _ PRON PRP _ 28 nsubj _ _ 24 am _ VERB VBP _ 28 cop _ _ 25 in _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 communications _ NOUN NN _ 28 compound _ _ 28 field _ NOUN NN _ 0 root _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 above _ ADP IN _ 32 case _ _ 31 entry _ NOUN NN _ 32 compound _ _ 32 level _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 28 punct _ _ 1 I _ PRON PRP _ 3 nsubjpass _ _ 2 was _ AUX VBD _ 3 auxpass _ _ 3 laid _ VERB VBN _ 0 root _ _ 4 off _ ADP RP _ 3 compound:prt _ _ 5 in _ ADP IN _ 6 case _ _ 6 August _ PROPN NNP _ 3 nmod _ _ 7 1988 _ NUM CD _ 6 nummod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 and _ CONJ CC _ 3 cc _ _ 10 after _ ADP IN _ 16 case _ _ 11 a _ DET DT _ 16 det _ _ 12 thorough _ ADJ JJ _ 16 amod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 exhausting _ ADJ JJ _ 12 conj _ _ 15 job _ NOUN NN _ 16 compound _ _ 16 search _ NOUN NN _ 19 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 was _ AUX VBD _ 19 auxpass _ _ 19 hired _ VERB VBN _ 3 conj _ _ 20 in _ ADP IN _ 21 case _ _ 21 August _ PROPN NNP _ 19 nmod _ _ 22 1989 _ NUM CD _ 21 nummod _ _ 23 . _ PUNCT . _ 3 punct _ _ 1 My _ PRON PRP$ _ 3 nmod:poss _ _ 2 unemployment _ NOUN NN _ 3 compound _ _ 3 insurance _ NOUN NN _ 4 nsubj _ _ 4 ran _ VERB VBD _ 0 root _ _ 5 out _ ADP RP _ 4 compound:prt _ _ 6 before _ SCONJ IN _ 8 mark _ _ 7 I _ PRON PRP _ 8 nsubj _ _ 8 found _ VERB VBD _ 4 advcl _ _ 9 a _ DET DT _ 10 det _ _ 10 job _ NOUN NN _ 8 dobj _ _ 11 ; _ PUNCT : _ 4 punct _ _ 12 I _ PRON PRP _ 13 nsubj _ _ 13 found _ VERB VBD _ 4 parataxis _ _ 14 cutbacks _ NOUN NNS _ 13 dobj _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 layoffs _ NOUN NNS _ 14 conj _ _ 17 in _ ADP IN _ 19 case _ _ 18 many _ ADJ JJ _ 19 amod _ _ 19 companies _ NOUN NNS _ 13 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 statistics _ NOUN NNS _ 27 nsubj _ _ 3 quoted _ VERB VBN _ 2 acl _ _ 4 by _ ADP IN _ 11 case _ _ 5 the _ DET DT _ 11 det _ _ 6 `` _ PUNCT `` _ 11 punct _ _ 7 new _ ADJ JJ _ 11 amod _ _ 8 '' _ PUNCT '' _ 11 punct _ _ 9 Census _ PROPN NNP _ 11 compound _ _ 10 Bureau _ PROPN NNP _ 11 compound _ _ 11 report _ NOUN NN _ 3 nmod _ _ 12 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 13 garnered _ VERB VBN _ 2 dep _ _ 14 from _ ADP IN _ 15 case _ _ 15 1984 _ NUM CD _ 13 nmod _ _ 16 to _ ADP TO _ 17 case _ _ 17 1986 _ NUM CD _ 15 nmod _ _ 18 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 19 are _ VERB VBP _ 27 cop _ _ 20 out _ ADP IN _ 27 advmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 date _ NOUN NN _ 20 nmod _ _ 23 , _ PUNCT , _ 27 punct _ _ 24 certainly _ ADV RB _ 27 advmod _ _ 25 as _ ADP IN _ 27 case _ _ 26 an _ DET DT _ 27 det _ _ 27 average _ NOUN NN _ 0 root _ _ 28 for _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 Northeast _ PROPN NNP _ 27 nmod _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 and _ CONJ CC _ 27 cc _ _ 33 possibly _ ADV RB _ 36 advmod _ _ 34 for _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 rest _ NOUN NN _ 27 conj _ _ 37 of _ ADP IN _ 39 case _ _ 38 the _ DET DT _ 39 det _ _ 39 country _ NOUN NN _ 36 nmod _ _ 40 . _ PUNCT . _ 27 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 think _ VERB VBP _ 0 root _ _ 3 what _ PRON WP _ 4 nsubj _ _ 4 bothered _ VERB VBD _ 10 csubj _ _ 5 me _ PRON PRP _ 4 dobj _ _ 6 most _ ADV RBS _ 4 advmod _ _ 7 about _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 piece _ NOUN NN _ 4 nmod _ _ 10 was _ VERB VBD _ 2 ccomp _ _ 11 that _ SCONJ IN _ 13 mark _ _ 12 there _ PRON EX _ 13 expl _ _ 13 seemed _ VERB VBD _ 10 ccomp _ _ 14 to _ PART TO _ 18 mark _ _ 15 be _ VERB VB _ 18 cop _ _ 16 an _ DET DT _ 18 det _ _ 17 underlying _ ADJ JJ _ 18 amod _ _ 18 attitude _ NOUN NN _ 13 xcomp _ _ 19 to _ PART TO _ 20 mark _ _ 20 tell _ VERB VB _ 18 acl _ _ 21 your _ PRON PRP$ _ 22 nmod:poss _ _ 22 readers _ NOUN NNS _ 20 dobj _ _ 23 all _ DET DT _ 25 nsubj _ _ 24 is _ VERB VBZ _ 25 cop _ _ 25 well _ ADJ JJ _ 20 dep _ _ 26 -- _ PUNCT : _ 25 punct _ _ 27 if _ SCONJ IN _ 31 mark _ _ 28 you _ PRON PRP _ 31 nsubjpass _ _ 29 're _ AUX VBP _ 31 aux _ _ 30 getting _ AUX VBG _ 31 auxpass _ _ 31 laid _ VERB VBN _ 35 csubj _ _ 32 off _ ADP RP _ 31 compound:prt _ _ 33 do _ AUX VBP _ 35 aux _ _ 34 n't _ PART RB _ 35 neg _ _ 35 worry _ VERB VB _ 25 parataxis _ _ 36 , _ PUNCT , _ 35 punct _ _ 37 and _ CONJ CC _ 35 cc _ _ 38 if _ SCONJ IN _ 41 mark _ _ 39 you _ PRON PRP _ 41 nsubj _ _ 40 're _ VERB VBP _ 41 cop _ _ 41 unemployed _ ADJ JJ _ 48 advcl _ _ 42 , _ PUNCT , _ 48 punct _ _ 43 it _ PRON PRP _ 48 nsubj _ _ 44 's _ VERB VBZ _ 48 cop _ _ 45 a _ DET DT _ 46 det _ _ 46 seller _ NOUN NN _ 48 nmod:poss _ _ 47 's _ PART POS _ 46 case _ _ 48 market _ NOUN NN _ 35 conj _ _ 49 . _ PUNCT . _ 2 punct _ _ 1 To _ PART TO _ 2 mark _ _ 2 top _ VERB VB _ 7 advcl _ _ 3 it _ PRON PRP _ 2 dobj _ _ 4 off _ ADP RP _ 2 compound:prt _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 you _ PRON PRP _ 7 nsubj _ _ 7 captioned _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 graph _ NOUN NN _ 7 dobj _ _ 10 showing _ VERB VBG _ 9 acl _ _ 11 the _ DET DT _ 13 det _ _ 12 average _ ADJ JJ _ 13 amod _ _ 13 number _ NOUN NN _ 10 dobj _ _ 14 of _ ADP IN _ 15 case _ _ 15 months _ NOUN NNS _ 13 nmod _ _ 16 in _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 job _ NOUN NN _ 19 compound _ _ 19 search _ NOUN NN _ 13 nmod _ _ 20 as _ ADP IN _ 22 case _ _ 21 `` _ PUNCT `` _ 22 punct _ _ 22 Time _ NOUN NN _ 7 nmod _ _ 23 Off _ ADP RP _ 22 amod _ _ 24 . _ PUNCT . _ 7 punct _ _ 25 '' _ PUNCT '' _ 7 punct _ _ 1 Are _ AUX VBP _ 3 aux _ _ 2 you _ PRON PRP _ 3 nsubj _ _ 3 kidding _ VERB VBG _ 0 root _ _ 4 ? _ PUNCT . _ 3 punct _ _ 1 Looking _ VERB VBG _ 6 csubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 a _ DET DT _ 4 det _ _ 4 job _ NOUN NN _ 1 nmod _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 one _ NUM CD _ 0 root _ _ 7 of _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 most _ ADV RBS _ 10 advmod _ _ 10 anxious _ ADJ JJ _ 11 amod _ _ 11 periods _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 my _ PRON PRP$ _ 14 nmod:poss _ _ 14 life _ NOUN NN _ 11 nmod _ _ 15 -- _ PUNCT : _ 6 punct _ _ 16 and _ CONJ CC _ 6 cc _ _ 17 is _ VERB VBZ _ 20 cop _ _ 18 for _ ADP IN _ 20 case _ _ 19 most _ ADJ JJS _ 20 amod _ _ 20 people _ NOUN NNS _ 6 conj _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 Your _ PRON PRP$ _ 2 nmod:poss _ _ 2 paper _ NOUN NN _ 3 nsubj _ _ 3 needs _ VERB VBZ _ 0 root _ _ 4 a _ DET DT _ 7 det _ _ 5 serious _ ADJ JJ _ 7 amod _ _ 6 reality _ NOUN NN _ 7 compound _ _ 7 check _ NOUN NN _ 3 dobj _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Reva _ PROPN NNP _ 2 compound _ _ 2 Levin _ PROPN NNP _ 0 root _ _ 1 Cambridge _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Mass _ PROPN NNP _ 1 appos _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 BULL _ PROPN NNP _ 5 compound _ _ 2 HN _ PROPN NNP _ 5 compound _ _ 3 INFORMATION _ PROPN NNP _ 5 compound _ _ 4 SYSTEMS _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 10 nsubj _ _ 6 is _ VERB VBZ _ 10 cop _ _ 7 a _ DET DT _ 10 det _ _ 8 U.S. _ PROPN NNP _ 10 compound _ _ 9 majority-owned _ ADJ JJ _ 10 amod _ _ 10 unit _ NOUN NN _ 0 root _ _ 11 of _ ADP IN _ 15 case _ _ 12 Cie. _ PROPN NNP _ 15 compound _ _ 13 des _ PROPN NNP _ 15 compound _ _ 14 Machines _ PROPN NNP _ 15 compound _ _ 15 Bull _ PROPN NNP _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 edition _ NOUN NN _ 12 nmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 name _ NOUN NN _ 12 nsubjpass _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 unit _ NOUN NN _ 7 nmod _ _ 11 was _ AUX VBD _ 12 auxpass _ _ 12 misstated _ VERB VBN _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Moody _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNP _ 4 compound _ _ 4 Service _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 reduced _ VERB VBD _ 5 ccomp _ _ 8 its _ PRON PRP$ _ 9 nmod:poss _ _ 9 rating _ NOUN NN _ 7 dobj _ _ 10 on _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 165 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 of _ ADP IN _ 16 case _ _ 15 subordinated _ ADJ JJ _ 16 amod _ _ 16 debt _ NOUN NN _ 11 nmod _ _ 17 of _ ADP IN _ 24 case _ _ 18 this _ DET DT _ 24 det _ _ 19 Beverly _ PROPN NNP _ 24 dep _ _ 20 Hills _ PROPN NNP _ 19 compound _ _ 21 , _ PUNCT , _ 19 punct _ _ 22 Calif. _ PROPN NNP _ 19 dep _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 thrift _ NOUN NN _ 16 nmod _ _ 25 , _ PUNCT , _ 5 punct _ _ 26 citing _ VERB VBG _ 5 xcomp _ _ 27 turmoil _ NOUN NN _ 26 dobj _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 market _ NOUN NN _ 27 nmod _ _ 31 for _ ADP IN _ 35 case _ _ 32 low-grade _ ADJ JJ _ 35 amod _ _ 33 , _ PUNCT , _ 35 punct _ _ 34 high-yield _ ADJ JJ _ 35 amod _ _ 35 securities _ NOUN NNS _ 30 nmod _ _ 36 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 it _ PRON PRP _ 5 nsubj _ _ 5 reduced _ VERB VBD _ 3 ccomp _ _ 6 its _ PRON PRP$ _ 7 nmod:poss _ _ 7 rating _ NOUN NN _ 5 dobj _ _ 8 on _ ADP IN _ 13 case _ _ 9 the _ DET DT _ 10 det _ _ 10 thrift _ NOUN NN _ 13 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 subordinated _ ADJ JJ _ 13 amod _ _ 13 debt _ NOUN NN _ 7 nmod _ _ 14 to _ ADP TO _ 15 case _ _ 15 B-2 _ ADJ JJ _ 5 nmod _ _ 16 from _ ADP IN _ 17 case _ _ 17 Ba-2 _ ADJ JJ _ 5 nmod _ _ 18 and _ CONJ CC _ 5 cc _ _ 19 will _ AUX MD _ 20 aux _ _ 20 keep _ VERB VB _ 5 conj _ _ 21 the _ DET DT _ 22 det _ _ 22 debt _ NOUN NN _ 20 dobj _ _ 23 under _ ADP IN _ 24 case _ _ 24 review _ NOUN NN _ 20 nmod _ _ 25 for _ ADP IN _ 28 case _ _ 26 possible _ ADJ JJ _ 28 amod _ _ 27 further _ ADJ JJ _ 28 amod _ _ 28 downgrade _ NOUN NN _ 20 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Columbia _ PROPN NNP _ 2 compound _ _ 2 Savings _ PROPN NNP _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 major _ ADJ JJ _ 6 amod _ _ 6 holder _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 10 case _ _ 8 so-called _ ADJ JJ _ 10 amod _ _ 9 junk _ NOUN NN _ 10 compound _ _ 10 bonds _ NOUN NNS _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 New _ ADJ JJ _ 3 amod _ _ 2 federal _ ADJ JJ _ 3 amod _ _ 3 legislation _ NOUN NN _ 4 nsubj _ _ 4 requires _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 8 mark _ _ 6 all _ DET DT _ 7 det _ _ 7 thrifts _ NOUN NNS _ 8 nsubj _ _ 8 divest _ VERB VBP _ 4 ccomp _ _ 9 themselves _ PRON PRP _ 8 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 such _ ADJ JJ _ 13 amod _ _ 12 speculative _ ADJ JJ _ 13 amod _ _ 13 securities _ NOUN NNS _ 8 nmod _ _ 14 over _ ADP IN _ 16 case _ _ 15 a _ DET DT _ 16 det _ _ 16 period _ NOUN NN _ 8 nmod _ _ 17 of _ ADP IN _ 18 case _ _ 18 years _ NOUN NNS _ 16 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 Columbia _ PROPN NNP _ 3 compound _ _ 2 Savings _ PROPN NNP _ 3 compound _ _ 3 officials _ NOUN NNS _ 6 nsubj _ _ 4 were _ VERB VBD _ 6 cop _ _ 5 n't _ PART RB _ 6 neg _ _ 6 available _ ADJ JJ _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 comment _ NOUN NN _ 6 nmod _ _ 9 on _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 downgrade _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 FRANKLIN _ PROPN NNP _ 3 compound _ _ 2 SAVINGS _ PROPN NNP _ 3 compound _ _ 3 ASSOCIATION _ PROPN NNP _ 0 root _ _ 4 -LRB- _ PUNCT -LRB- _ 5 punct _ _ 5 Ottawa _ PROPN NNP _ 3 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Kan. _ PROPN NNP _ 5 appos _ _ 8 -RRB- _ PUNCT -RRB- _ 5 punct _ _ 9 -- _ PUNCT : _ 3 punct _ _ 1 Moody _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Investors _ PROPN NNP _ 5 compound _ _ 4 Service _ PROPN NNP _ 5 compound _ _ 5 Inc. _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 downgraded _ VERB VBD _ 6 ccomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 rating _ NOUN NN _ 8 dobj _ _ 11 to _ ADP TO _ 12 case _ _ 12 B-2 _ ADJ JJ _ 8 nmod _ _ 13 from _ ADP IN _ 14 case _ _ 14 Ba-3 _ ADJ JJ _ 8 nmod _ _ 15 on _ ADP IN _ 18 case _ _ 16 less _ ADJ JJR _ 18 advmod _ _ 17 than _ ADP IN _ 16 mwe _ _ 18 $ _ SYM $ _ 8 nmod _ _ 19 20 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 of _ ADP IN _ 27 case _ _ 22 this _ DET DT _ 23 det _ _ 23 thrift _ NOUN NN _ 27 nmod:poss _ _ 24 's _ PART POS _ 23 case _ _ 25 senior _ ADJ JJ _ 27 amod _ _ 26 subordinated _ ADJ JJ _ 27 amod _ _ 27 notes _ NOUN NNS _ 18 nmod _ _ 28 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 rating _ NOUN NN _ 3 compound _ _ 3 concern _ NOUN NN _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Franklin _ PROPN NNP _ 10 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 troubled _ ADJ JJ _ 10 amod _ _ 9 diversification _ NOUN NN _ 10 compound _ _ 10 record _ NOUN NN _ 18 nsubj _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 securities _ NOUN NNS _ 14 compound _ _ 14 business _ NOUN NN _ 10 nmod _ _ 15 '' _ PUNCT '' _ 10 punct _ _ 16 was _ VERB VBD _ 18 cop _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 reason _ NOUN NN _ 4 ccomp _ _ 19 for _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 downgrade _ NOUN NN _ 18 nmod _ _ 22 , _ PUNCT , _ 4 punct _ _ 23 citing _ VERB VBG _ 4 xcomp _ _ 24 the _ DET DT _ 25 det _ _ 25 troubles _ NOUN NNS _ 23 dobj _ _ 26 at _ ADP IN _ 30 case _ _ 27 its _ PRON PRP$ _ 30 nmod:poss _ _ 28 L.F. _ PROPN NNP _ 30 compound _ _ 29 Rothschild _ PROPN NNP _ 30 compound _ _ 30 subsidiary _ NOUN NN _ 25 nmod _ _ 31 and _ CONJ CC _ 25 cc _ _ 32 the _ DET DT _ 34 det _ _ 33 possible _ ADJ JJ _ 34 amod _ _ 34 sale _ NOUN NN _ 25 conj _ _ 35 of _ ADP IN _ 37 case _ _ 36 other _ ADJ JJ _ 37 amod _ _ 37 subsidiaries _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 They _ PRON PRP _ 4 nsubj _ _ 3 perhaps _ ADV RB _ 4 advmod _ _ 4 had _ VERB VBD _ 16 ccomp _ _ 5 concern _ NOUN NN _ 4 dobj _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 we _ PRON PRP _ 9 nsubj _ _ 8 were _ AUX VBD _ 9 aux _ _ 9 getting _ VERB VBG _ 5 ccomp _ _ 10 out _ ADP IN _ 9 advmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 all _ DET PDT _ 13 det:predet _ _ 13 these _ DET DT _ 10 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Franklin _ PROPN NNP _ 21 compound _ _ 18 President _ PROPN NNP _ 21 compound _ _ 19 Duane _ PROPN NNP _ 21 compound _ _ 20 H. _ PROPN NNP _ 21 compound _ _ 21 Hall _ PROPN NNP _ 16 nsubj _ _ 22 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 0 root _ _ 4 it _ PRON PRP _ 8 nsubj _ _ 5 was _ VERB VBD _ 8 cop _ _ 6 a _ DET DT _ 7 det _ _ 7 little _ ADJ JJ _ 8 nmod:npmod _ _ 8 premature _ ADJ JJ _ 3 ccomp _ _ 9 on _ ADP IN _ 11 case _ _ 10 their _ PRON PRP$ _ 11 nmod:poss _ _ 11 part _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Just _ ADV RB _ 4 advmod _ _ 2 when _ ADV WRB _ 4 advmod _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 seemed _ VERB VBD _ 14 advcl _ _ 5 safe _ ADJ JJ _ 4 xcomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 go _ VERB VB _ 4 xcomp _ _ 8 back _ ADV RB _ 7 advmod _ _ 9 into _ ADP IN _ 10 case _ _ 10 stocks _ NOUN NNS _ 8 nmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 Wall _ PROPN NNP _ 13 compound _ _ 13 Street _ PROPN NNP _ 14 nsubj _ _ 14 suffered _ VERB VBD _ 0 root _ _ 15 another _ DET DT _ 17 det _ _ 16 severe _ ADJ JJ _ 17 amod _ _ 17 attack _ NOUN NN _ 14 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 nerves _ NOUN NNS _ 17 nmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 Does _ AUX VBZ _ 3 aux _ _ 2 this _ PRON DT _ 3 nsubj _ _ 3 signal _ VERB VB _ 0 root _ _ 4 another _ DET DT _ 6 det _ _ 5 Black _ PROPN NNP _ 6 compound _ _ 6 Monday _ PROPN NNP _ 8 nsubj _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 coming _ VERB VBG _ 3 ccomp _ _ 9 ? _ PUNCT . _ 3 punct _ _ 1 Or _ CONJ CC _ 7 cc _ _ 2 is _ VERB VBZ _ 7 cop _ _ 3 this _ PRON DT _ 7 nsubj _ _ 4 an _ DET DT _ 7 det _ _ 5 extraordinary _ ADJ JJ _ 7 amod _ _ 6 buying _ NOUN NN _ 7 compound _ _ 7 opportunity _ NOUN NN _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 just _ ADV RB _ 17 advmod _ _ 10 like _ SCONJ IN _ 17 mark _ _ 11 Oct. _ PROPN NNP _ 17 nsubj _ _ 12 19 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 1987 _ NUM CD _ 11 nummod _ _ 15 , _ PUNCT , _ 11 punct _ _ 16 eventually _ ADV RB _ 17 advmod _ _ 17 turned _ VERB VBD _ 7 acl:relcl _ _ 18 out _ ADP RP _ 17 compound:prt _ _ 19 to _ PART TO _ 20 mark _ _ 20 be _ VERB VB _ 17 xcomp _ _ 21 ? _ PUNCT . _ 7 punct _ _ 1 Here _ ADV RB _ 2 advmod _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 what _ PRON WP _ 11 dobj _ _ 4 several _ ADJ JJ _ 7 amod _ _ 5 leading _ ADJ JJ _ 7 amod _ _ 6 market _ NOUN NN _ 7 compound _ _ 7 experts _ NOUN NNS _ 11 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 money _ NOUN NN _ 10 compound _ _ 10 managers _ NOUN NNS _ 7 conj _ _ 11 say _ VERB VBP _ 2 dep _ _ 12 about _ ADP IN _ 15 case _ _ 13 Friday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 action _ NOUN NN _ 11 nmod _ _ 16 , _ PUNCT , _ 11 punct _ _ 17 what _ PRON WP _ 18 nsubj _ _ 18 happens _ VERB VBZ _ 11 conj _ _ 19 next _ ADV RB _ 18 advmod _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 what _ PRON WP _ 24 dobj _ _ 22 investors _ NOUN NNS _ 24 nsubj _ _ 23 should _ AUX MD _ 24 aux _ _ 24 do _ VERB VB _ 11 conj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Joseph _ PROPN NNP _ 2 compound _ _ 2 Granville _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 I _ PRON PRP _ 6 nsubj _ _ 3 'm _ VERB VBP _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 only _ ADJ JJ _ 6 amod _ _ 6 one _ NUM CD _ 24 ccomp _ _ 7 who _ PRON WP _ 8 nsubj _ _ 8 said _ VERB VBD _ 6 acl:relcl _ _ 9 there _ PRON EX _ 14 expl _ _ 10 would _ AUX MD _ 14 aux _ _ 11 be _ VERB VB _ 14 cop _ _ 12 an _ DET DT _ 14 det _ _ 13 October _ PROPN NNP _ 14 compound _ _ 14 massacre _ NOUN NN _ 8 ccomp _ _ 15 , _ PUNCT , _ 8 punct _ _ 16 all _ ADV RB _ 19 advmod _ _ 17 through _ ADP IN _ 19 case _ _ 18 late _ ADJ JJ _ 19 amod _ _ 19 August _ PROPN NNP _ 8 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 September _ PROPN NNP _ 19 conj _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 '' _ PUNCT '' _ 24 punct _ _ 24 says _ VERB VBZ _ 0 root _ _ 25 Mr. _ PROPN NNP _ 26 compound _ _ 26 Granville _ PROPN NNP _ 24 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 once _ ADV RB _ 33 advmod _ _ 29 a _ DET DT _ 33 det _ _ 30 widely _ ADV RB _ 31 advmod _ _ 31 followed _ VERB VBN _ 33 amod _ _ 32 market _ NOUN NN _ 33 compound _ _ 33 guru _ NOUN NN _ 26 appos _ _ 34 and _ CONJ CC _ 33 cc _ _ 35 still _ ADV RB _ 39 advmod _ _ 36 a _ DET DT _ 39 det _ _ 37 well-known _ ADJ JJ _ 39 amod _ _ 38 newsletter _ NOUN NN _ 39 compound _ _ 39 writer _ NOUN NN _ 33 conj _ _ 40 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Everyone _ NOUN NN _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 tell _ VERB VB _ 16 ccomp _ _ 5 you _ PRON PRP _ 4 dobj _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 this _ DET DT _ 8 det _ _ 8 time _ NOUN NN _ 10 nsubj _ _ 9 is _ VERB VBZ _ 10 cop _ _ 10 different _ ADJ JJ _ 4 ccomp _ _ 11 from _ ADP IN _ 12 case _ _ 12 1987 _ NUM CD _ 10 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 '' _ PUNCT '' _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 says _ VERB VBZ _ 0 root _ _ 17 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 9 punct _ _ 2 Well _ ADV RB _ 9 discourse _ _ 3 , _ PUNCT , _ 9 punct _ _ 4 in _ ADP IN _ 6 case _ _ 5 some _ DET DT _ 6 det _ _ 6 ways _ NOUN NNS _ 9 nmod _ _ 7 it _ PRON PRP _ 9 nsubj _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 different _ ADJ JJ _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 but _ CONJ CC _ 9 cc _ _ 12 technically _ ADV RB _ 17 advmod _ _ 13 it _ PRON PRP _ 17 nsubj _ _ 14 is _ VERB VBZ _ 17 cop _ _ 15 just _ ADV RB _ 17 advmod _ _ 16 the _ DET DT _ 17 det _ _ 17 same _ ADJ JJ _ 9 conj _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 If _ SCONJ IN _ 5 mark _ _ 2 you _ PRON PRP _ 5 nsubj _ _ 3 're _ VERB VBP _ 5 cop _ _ 4 a _ DET DT _ 5 det _ _ 5 technician _ NOUN NN _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 you _ PRON PRP _ 8 nsubj _ _ 8 obey _ VERB VBP _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 signals _ NOUN NNS _ 8 dobj _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 Right _ ADV RB _ 2 advmod _ _ 2 now _ ADV RB _ 5 advmod _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 're _ AUX VBP _ 5 aux _ _ 5 telling _ VERB VBG _ 0 root _ _ 6 me _ PRON PRP _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 get _ VERB VB _ 5 xcomp _ _ 9 the _ DET DT _ 10 det _ _ 10 hell _ NOUN NN _ 11 dep _ _ 11 out _ ADP RP _ 8 advmod _ _ 12 and _ CONJ CC _ 8 cc _ _ 13 stay _ VERB VB _ 8 conj _ _ 14 out _ ADV RB _ 13 advmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 see _ VERB VBP _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 major _ ADJ JJ _ 5 amod _ _ 5 support _ NOUN NN _ 2 dobj _ _ 6 until _ ADP IN _ 7 case _ _ 7 2200 _ NUM CD _ 5 nmod _ _ 8 . _ PUNCT . _ 2 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 see _ VERB VBP _ 0 root _ _ 3 a _ DET DT _ 4 det _ _ 4 possibility _ NOUN NN _ 2 dobj _ _ 5 of _ SCONJ IN _ 6 mark _ _ 6 going _ VERB VBG _ 4 acl _ _ 7 to _ ADP TO _ 8 case _ _ 8 2200 _ NUM CD _ 6 nmod _ _ 9 this _ DET DT _ 10 det _ _ 10 month _ NOUN NN _ 6 nmod:tmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 12 '' _ PUNCT '' _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Granville _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 he _ PRON PRP _ 8 nsubj _ _ 5 would _ AUX MD _ 8 aux _ _ 6 n't _ PART RB _ 8 neg _ _ 7 even _ ADV RB _ 8 advmod _ _ 8 think _ VERB VB _ 3 ccomp _ _ 9 of _ ADP IN _ 10 case _ _ 10 buying _ VERB VBG _ 8 nmod _ _ 11 until _ SCONJ IN _ 19 mark _ _ 12 at _ ADP IN _ 13 case _ _ 13 least _ ADJ JJS _ 16 nmod:npmod _ _ 14 600 _ NUM CD _ 16 compound _ _ 15 to _ ADP TO _ 16 dep _ _ 16 700 _ NUM CD _ 17 nummod _ _ 17 stocks _ NOUN NNS _ 19 nsubj _ _ 18 have _ AUX VBP _ 19 aux _ _ 19 hit _ VERB VBN _ 8 advcl _ _ 20 52-week _ ADJ JJ _ 21 amod _ _ 21 lows _ NOUN NNS _ 19 dobj _ _ 22 ; _ PUNCT : _ 3 punct _ _ 23 about _ ADV RB _ 25 advmod _ _ 24 100 _ NUM CD _ 25 nummod _ _ 25 stocks _ NOUN NNS _ 26 nsubj _ _ 26 hit _ VERB VBD _ 3 parataxis _ _ 27 new _ ADJ JJ _ 28 amod _ _ 28 lows _ NOUN NNS _ 26 dobj _ _ 29 Friday _ PROPN NNP _ 26 nmod:tmod _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Most _ ADJ JJS _ 3 amod _ _ 3 people _ NOUN NNS _ 10 nsubj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 '' _ PUNCT '' _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 10 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 10 punct _ _ 10 have _ VERB VBP _ 0 root _ _ 11 no _ DET DT _ 12 neg _ _ 12 idea _ NOUN NN _ 10 dobj _ _ 13 what _ PRON WP _ 17 nmod _ _ 14 a _ DET DT _ 16 det _ _ 15 massacre _ NOUN NN _ 16 compound _ _ 16 pattern _ NOUN NN _ 17 nsubj _ _ 17 looks _ VERB VBZ _ 12 ccomp _ _ 18 like _ ADP IN _ 13 case _ _ 19 . _ PUNCT . _ 10 punct _ _ 20 '' _ PUNCT '' _ 10 punct _ _ 1 Elaine _ PROPN NNP _ 2 compound _ _ 2 Garzarelli _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 quantitative _ ADJ JJ _ 3 amod _ _ 3 analyst _ NOUN NN _ 13 ccomp _ _ 4 with _ ADP IN _ 8 case _ _ 5 Shearson _ PROPN NNP _ 8 compound _ _ 6 Lehman _ PROPN NNP _ 8 compound _ _ 7 Hutton _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 3 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 Ms. _ PROPN NNP _ 11 compound _ _ 11 Garzarelli _ PROPN NNP _ 13 nsubj _ _ 12 had _ AUX VBD _ 13 aux _ _ 13 warned _ VERB VBN _ 0 root _ _ 14 clients _ NOUN NNS _ 13 dobj _ _ 15 to _ PART TO _ 16 mark _ _ 16 take _ VERB VB _ 13 xcomp _ _ 17 their _ PRON PRP$ _ 18 nmod:poss _ _ 18 money _ NOUN NN _ 16 dobj _ _ 19 out _ ADP IN _ 16 advmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 19 nmod _ _ 23 before _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 1987 _ NUM CD _ 26 nummod _ _ 26 crash _ NOUN NN _ 16 nmod _ _ 27 . _ PUNCT . _ 13 punct _ _ 1 Friday _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 big _ ADJ JJ _ 4 amod _ _ 4 drop _ NOUN NN _ 13 nsubj _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 she _ PRON PRP _ 7 nsubj _ _ 7 says _ VERB VBZ _ 13 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 `` _ PUNCT `` _ 13 punct _ _ 10 was _ VERB VBD _ 13 cop _ _ 11 not _ PART RB _ 13 neg _ _ 12 a _ DET DT _ 13 det _ _ 13 crash _ NOUN NN _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 This _ PRON DT _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 an _ DET DT _ 5 det _ _ 4 October _ PROPN NNP _ 5 compound _ _ 5 massacre _ NOUN NN _ 0 root _ _ 6 '' _ PUNCT '' _ 5 punct _ _ 7 like _ ADP IN _ 8 case _ _ 8 those _ PRON DT _ 5 nmod _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 occurred _ VERB VBD _ 8 acl:relcl _ _ 11 in _ ADP IN _ 12 case _ _ 12 1978 _ NUM CD _ 10 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 1979 _ NUM CD _ 12 conj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Now _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 as _ ADP IN _ 14 advmod _ _ 4 in _ ADP IN _ 7 case _ _ 5 those _ DET DT _ 7 det _ _ 6 two _ NUM CD _ 7 nummod _ _ 7 years _ NOUN NNS _ 3 nmod _ _ 8 , _ PUNCT , _ 14 punct _ _ 9 her _ PRON PRP$ _ 12 nmod:poss _ _ 10 stock _ NOUN NN _ 12 compound _ _ 11 market _ NOUN NN _ 12 compound _ _ 12 indicators _ NOUN NNS _ 14 nsubj _ _ 13 are _ VERB VBP _ 14 cop _ _ 14 positive _ ADJ JJ _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 So _ ADP IN _ 3 dep _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 thinks _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 damage _ NOUN NN _ 8 nsubj _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 short-lived _ ADJ JJ _ 3 ccomp _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 contained _ ADJ JJ _ 8 conj _ _ 11 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 Those _ DET DT _ 3 det _ _ 3 corrections _ NOUN NNS _ 4 nsubj _ _ 4 lasted _ VERB VBD _ 19 ccomp _ _ 5 one _ NUM CD _ 7 compound _ _ 6 to _ ADP TO _ 7 dep _ _ 7 four _ NUM CD _ 8 nummod _ _ 8 weeks _ NOUN NNS _ 4 nmod:tmod _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 took _ VERB VBD _ 4 conj _ _ 11 the _ DET DT _ 12 det _ _ 12 market _ NOUN NN _ 10 dobj _ _ 13 10%-12 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 nmod:npmod _ _ 15 down _ ADV RB _ 10 advmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 she _ PRON PRP _ 19 nsubj _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 This _ PRON DT _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 exactly _ ADV RB _ 7 advmod _ _ 5 the _ DET DT _ 7 det _ _ 6 same _ ADJ JJ _ 7 amod _ _ 7 thing _ NOUN NN _ 0 root _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 as _ ADV RB _ 10 advmod _ _ 10 far _ ADV RB _ 7 advmod _ _ 11 as _ SCONJ IN _ 14 mark _ _ 12 I _ PRON PRP _ 14 nsubjpass _ _ 13 'm _ AUX VBP _ 14 auxpass _ _ 14 concerned _ VERB VBN _ 10 advcl _ _ 15 . _ PUNCT . _ 7 punct _ _ 16 '' _ PUNCT '' _ 7 punct _ _ 1 Thus _ ADV RB _ 22 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 she _ PRON PRP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 22 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 if _ SCONJ IN _ 12 mark _ _ 7 the _ DET DT _ 11 det _ _ 8 Dow _ PROPN NNP _ 11 compound _ _ 9 Jones _ PROPN NNP _ 11 compound _ _ 10 Industrial _ PROPN NNP _ 11 compound _ _ 11 Average _ PROPN NNP _ 12 nsubj _ _ 12 dropped _ VERB VBD _ 22 advcl _ _ 13 below _ ADP IN _ 14 case _ _ 14 2450 _ NUM CD _ 12 nmod _ _ 15 , _ PUNCT , _ 22 punct _ _ 16 `` _ PUNCT `` _ 22 punct _ _ 17 It _ PRON PRP _ 22 nsubj _ _ 18 would _ AUX MD _ 22 aux _ _ 19 just _ ADV RB _ 22 advmod _ _ 20 be _ VERB VB _ 22 cop _ _ 21 a _ DET DT _ 22 det _ _ 22 fluke _ NOUN NN _ 0 root _ _ 23 . _ PUNCT . _ 22 punct _ _ 1 My _ PRON PRP$ _ 2 nmod:poss _ _ 2 advice _ NOUN NN _ 3 nsubj _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 buy _ VERB VB _ 3 xcomp _ _ 6 . _ PUNCT . _ 3 punct _ _ 7 '' _ PUNCT '' _ 3 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 she _ PRON PRP _ 3 nsubj _ _ 3 calculates _ VERB VBZ _ 10 advcl _ _ 4 it _ PRON PRP _ 3 dobj _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 average _ ADJ JJ _ 8 amod _ _ 8 stock _ NOUN NN _ 10 nsubj _ _ 9 now _ ADV RB _ 10 advmod _ _ 10 sells _ VERB VBZ _ 0 root _ _ 11 for _ ADP IN _ 17 case _ _ 12 about _ ADV RB _ 13 advmod _ _ 13 12.5 _ NUM CD _ 17 nummod _ _ 14 times _ NOUN NNS _ 17 compound _ _ 15 companies _ NOUN NNS _ 17 nmod:poss _ _ 16 ' _ PART POS _ 15 case _ _ 17 earnings _ NOUN NNS _ 10 nmod _ _ 18 . _ PUNCT . _ 10 punct _ _ 1 She _ PRON PRP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 that _ DET DT _ 4 det _ _ 4 ratio _ NOUN NN _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 climb _ VERB VB _ 2 ccomp _ _ 7 to _ ADP TO _ 8 case _ _ 8 14.5 _ NUM CD _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 given _ VERB VBN _ 13 case _ _ 11 current _ ADJ JJ _ 13 amod _ _ 12 interest _ NOUN NN _ 13 compound _ _ 13 rates _ NOUN NNS _ 6 conj _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 and _ CONJ CC _ 6 cc _ _ 16 still _ ADV RB _ 20 advmod _ _ 17 be _ VERB VB _ 20 cop _ _ 18 within _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 range _ NOUN NN _ 6 conj _ _ 21 of _ ADP IN _ 24 case _ _ 22 `` _ PUNCT `` _ 24 punct _ _ 23 fair _ ADJ JJ _ 24 amod _ _ 24 value _ NOUN NN _ 20 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 26 '' _ PUNCT '' _ 2 punct _ _ 1 Ned _ PROPN NNP _ 2 compound _ _ 2 Davis _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Friday _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 fall _ NOUN NN _ 4 nsubj _ _ 4 marks _ VERB VBZ _ 12 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 start _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 bear _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 6 nmod _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 Mr. _ PROPN NNP _ 14 compound _ _ 14 Davis _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 president _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 21 case _ _ 18 Ned _ PROPN NNP _ 21 compound _ _ 19 Davis _ PROPN NNP _ 21 compound _ _ 20 Research _ PROPN NNP _ 21 compound _ _ 21 Inc _ PROPN NNP _ 16 nmod _ _ 22 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Davis _ PROPN NNP _ 14 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 whose _ PRON WP$ _ 6 nmod:poss _ _ 6 views _ NOUN NNS _ 9 nsubjpass _ _ 7 are _ AUX VBP _ 9 auxpass _ _ 8 widely _ ADV RB _ 9 advmod _ _ 9 respected _ VERB VBN _ 3 acl:relcl _ _ 10 by _ ADP IN _ 12 case _ _ 11 money _ NOUN NN _ 12 compound _ _ 12 managers _ NOUN NNS _ 9 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 says _ VERB VBZ _ 0 root _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 expects _ VERB VBZ _ 14 ccomp _ _ 17 no _ DET DT _ 19 neg _ _ 18 1987-style _ ADJ JJ _ 19 amod _ _ 19 crash _ NOUN NN _ 16 dobj _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 was _ VERB VBD _ 12 ccomp _ _ 4 a _ DET DT _ 6 det _ _ 5 unique _ ADJ JJ _ 6 amod _ _ 6 combination _ NOUN NN _ 3 nsubj _ _ 7 in _ ADP IN _ 8 case _ _ 8 1987 _ NUM CD _ 3 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 Margin _ NOUN NN _ 3 compound _ _ 3 debt _ NOUN NN _ 8 nsubj _ _ 4 was _ VERB VBD _ 8 cop _ _ 5 at _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 record _ ADJ JJ _ 8 amod _ _ 8 high _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 was _ VERB VBD _ 0 root _ _ 3 tremendous _ ADJ JJ _ 5 amod _ _ 4 public _ ADJ JJ _ 5 amod _ _ 5 enthusiasm _ NOUN NN _ 2 nsubj _ _ 6 for _ ADP IN _ 9 case _ _ 7 stock _ NOUN NN _ 9 compound _ _ 8 mutual _ ADJ JJ _ 9 amod _ _ 9 funds _ NOUN NNS _ 5 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 main _ ADJ JJ _ 3 amod _ _ 3 thing _ NOUN NN _ 6 nsubj _ _ 4 was _ VERB VBD _ 6 cop _ _ 5 portfolio _ NOUN NN _ 6 compound _ _ 6 insurance _ NOUN NN _ 0 root _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 '' _ PUNCT '' _ 6 punct _ _ 9 a _ DET DT _ 12 det _ _ 10 mechanical _ ADJ JJ _ 12 amod _ _ 11 trading _ NOUN NN _ 12 compound _ _ 12 system _ NOUN NN _ 6 dep _ _ 13 intended _ VERB VBN _ 12 acl _ _ 14 to _ PART TO _ 15 mark _ _ 15 protect _ VERB VB _ 13 xcomp _ _ 16 an _ DET DT _ 17 det _ _ 17 investor _ NOUN NN _ 15 dobj _ _ 18 against _ ADP IN _ 19 case _ _ 19 losses _ NOUN NNS _ 15 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 21 `` _ PUNCT `` _ 6 punct _ _ 1 A _ DET DT _ 3 advmod _ _ 2 hundred _ NUM CD _ 3 compound _ _ 3 billion _ NUM CD _ 4 nummod _ _ 4 dollars _ NOUN NNS _ 8 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 stock _ NOUN NN _ 4 nmod _ _ 7 was _ VERB VBD _ 8 cop _ _ 8 subject _ ADJ JJ _ 0 root _ _ 9 '' _ PUNCT '' _ 8 punct _ _ 10 to _ ADP TO _ 11 case _ _ 11 it _ PRON PRP _ 8 nmod _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 such _ ADJ JJ _ 5 amod _ _ 5 selling _ NOUN NN _ 6 nsubj _ _ 6 contributed _ VERB VBD _ 0 root _ _ 7 to _ ADP TO _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 snowball _ NOUN NN _ 10 compound _ _ 10 effect _ NOUN NN _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 Today _ NOUN NN _ 7 nsubj _ _ 2 could _ AUX MD _ 7 aux _ _ 3 even _ ADV RB _ 7 advmod _ _ 4 be _ VERB VB _ 7 cop _ _ 5 an _ DET DT _ 7 det _ _ 6 up _ ADJ JJ _ 7 amod _ _ 7 day _ NOUN NN _ 0 root _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Davis _ PROPN NNP _ 11 nsubj _ _ 11 says _ VERB VBZ _ 7 parataxis _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 if _ SCONJ IN _ 17 mark _ _ 14 major _ ADJ JJ _ 16 amod _ _ 15 brokerage _ NOUN NN _ 16 compound _ _ 16 firms _ NOUN NNS _ 17 nsubj _ _ 17 agree _ VERB VBP _ 7 advcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 refrain _ VERB VB _ 17 xcomp _ _ 20 from _ ADP IN _ 22 case _ _ 21 program _ NOUN NN _ 22 compound _ _ 22 trading _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 Over _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 next _ ADJ JJ _ 5 amod _ _ 4 several _ ADJ JJ _ 5 amod _ _ 5 months _ NOUN NNS _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 though _ ADV RB _ 10 advmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 he _ PRON PRP _ 10 nsubj _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 things _ NOUN NNS _ 12 nsubj _ _ 12 look _ VERB VBP _ 10 ccomp _ _ 13 bad _ ADJ JJ _ 12 xcomp _ _ 14 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 15 ccomp _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 8 nsubj _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 aux _ _ 8 heading _ VERB VBG _ 3 ccomp _ _ 9 down _ ADV RB _ 8 advmod _ _ 10 into _ ADP IN _ 11 case _ _ 11 November _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 will _ AUX MD _ 5 aux _ _ 4 probably _ ADV RB _ 5 advmod _ _ 5 have _ VERB VB _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 year-end _ ADJ JJ _ 8 amod _ _ 8 rally _ NOUN NN _ 5 dobj _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 then _ ADV RB _ 12 advmod _ _ 12 go _ VERB VB _ 5 conj _ _ 13 down _ ADV RB _ 12 advmod _ _ 14 again _ ADV RB _ 12 advmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Sort _ NOUN NN _ 0 root _ _ 2 of _ ADP IN _ 6 case _ _ 3 a _ DET DT _ 6 det _ _ 4 two-step _ ADJ JJ _ 6 amod _ _ 5 bear _ NOUN NN _ 6 compound _ _ 6 market _ NOUN NN _ 1 nmod _ _ 7 . _ PUNCT . _ 1 punct _ _ 8 '' _ PUNCT '' _ 1 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 downturn _ NOUN NN _ 2 dobj _ _ 5 to _ PART TO _ 6 mark _ _ 6 carry _ VERB VB _ 2 xcomp _ _ 7 the _ DET DT _ 11 det _ _ 8 Dow _ PROPN NNP _ 11 compound _ _ 9 Jones _ PROPN NNP _ 11 compound _ _ 10 Industrial _ PROPN NNP _ 11 compound _ _ 11 Average _ PROPN NNP _ 6 dobj _ _ 12 down _ ADV RB _ 6 advmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 around _ ADP IN _ 15 amod _ _ 15 2000 _ NUM CD _ 6 nmod _ _ 16 sometime _ ADV RB _ 18 advmod _ _ 17 next _ ADJ JJ _ 18 amod _ _ 18 year _ NOUN NN _ 6 nmod:tmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 That _ PRON DT _ 8 nsubj _ _ 3 would _ AUX MD _ 8 aux _ _ 4 be _ VERB VB _ 8 cop _ _ 5 a _ DET DT _ 8 det _ _ 6 normal _ ADJ JJ _ 8 amod _ _ 7 bear _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 12 ccomp _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 guess _ VERB VBP _ 0 root _ _ 4 that _ ADP IN _ 7 nsubj _ _ 5 's _ PART POS _ 7 dep _ _ 6 my _ PRON PRP$ _ 7 nmod:poss _ _ 7 forecast _ NOUN NN _ 3 ccomp _ _ 8 . _ PUNCT . _ 3 punct _ _ 9 '' _ PUNCT '' _ 3 punct _ _ 1 Leon _ PROPN NNP _ 3 compound _ _ 2 G. _ PROPN NNP _ 3 compound _ _ 3 Cooperman _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 think _ VERB VB _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 market _ NOUN NN _ 9 nsubj _ _ 8 is _ AUX VBZ _ 9 aux _ _ 9 going _ VERB VBG _ 5 ccomp _ _ 10 through _ ADP IN _ 12 case _ _ 11 another _ DET DT _ 12 det _ _ 12 October _ PROPN NNP _ 9 nmod _ _ 13 '87 _ NUM CD _ 12 nummod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 think _ VERB VB _ 13 ccomp _ _ 5 that _ PRON DT _ 8 nsubj _ _ 6 's _ VERB VBZ _ 8 cop _ _ 7 the _ DET DT _ 8 det _ _ 8 case _ NOUN NN _ 4 ccomp _ _ 9 at _ ADP IN _ 10 case _ _ 10 all _ DET DT _ 8 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Cooperman _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 partner _ NOUN NN _ 15 appos _ _ 19 at _ ADP IN _ 20 case _ _ 20 Goldman _ PROPN NNP _ 18 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 Sachs _ PROPN NNP _ 20 conj _ _ 23 & _ CONJ CC _ 20 cc _ _ 24 Co. _ PROPN NNP _ 20 conj _ _ 25 and _ CONJ CC _ 18 cc _ _ 26 chairman _ NOUN NN _ 18 conj _ _ 27 of _ ADP IN _ 31 case _ _ 28 Goldman _ PROPN NNP _ 31 compound _ _ 29 Sachs _ PROPN NNP _ 31 compound _ _ 30 Asset _ PROPN NNP _ 31 compound _ _ 31 Management _ PROPN NNP _ 26 nmod _ _ 32 . _ PUNCT . _ 13 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Cooperman _ PROPN NNP _ 3 nsubj _ _ 3 sees _ VERB VBZ _ 0 root _ _ 4 this _ PRON DT _ 3 dobj _ _ 5 as _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 good _ ADJ JJ _ 8 amod _ _ 8 time _ NOUN NN _ 3 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 pick _ VERB VB _ 8 acl _ _ 11 up _ ADP RP _ 10 compound:prt _ _ 12 bargains _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 but _ CONJ CC _ 3 cc _ _ 15 he _ PRON PRP _ 18 nsubj _ _ 16 does _ AUX VBZ _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 think _ VERB VB _ 3 conj _ _ 19 there _ PRON EX _ 20 expl _ _ 20 's _ VERB VBZ _ 18 ccomp _ _ 21 any _ DET DT _ 22 det _ _ 22 need _ NOUN NN _ 20 nsubj _ _ 23 to _ PART TO _ 24 mark _ _ 24 rush _ VERB VB _ 22 acl _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 expect _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 market _ NOUN NN _ 3 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 open _ VERB VB _ 3 xcomp _ _ 8 weaker _ ADJ JJR _ 7 xcomp _ _ 9 Monday _ PROPN NNP _ 7 nmod:tmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 but _ CONJ CC _ 3 cc _ _ 12 then _ ADV RB _ 15 advmod _ _ 13 it _ PRON PRP _ 15 nsubj _ _ 14 should _ AUX MD _ 15 aux _ _ 15 find _ VERB VB _ 3 conj _ _ 16 some _ DET DT _ 17 det _ _ 17 stability _ NOUN NN _ 15 dobj _ _ 18 . _ PUNCT . _ 3 punct _ _ 19 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 ticks _ VERB VBZ _ 0 root _ _ 3 off _ ADP RP _ 2 compound:prt _ _ 4 several _ ADJ JJ _ 6 amod _ _ 5 major _ ADJ JJ _ 6 amod _ _ 6 differences _ NOUN NNS _ 2 dobj _ _ 7 between _ ADP IN _ 9 case _ _ 8 now _ ADV RB _ 9 advmod _ _ 9 and _ CONJ CC _ 6 acl _ _ 10 two _ NUM CD _ 11 nummod _ _ 11 years _ NOUN NNS _ 12 nmod:npmod _ _ 12 ago _ ADV RB _ 9 advmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Unlike _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 interest _ NOUN NN _ 5 compound _ _ 5 rates _ NOUN NNS _ 8 nsubj _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ AUX VBN _ 8 aux _ _ 8 falling _ VERB VBG _ 0 root _ _ 9 this _ DET DT _ 10 det _ _ 10 year _ NOUN NN _ 8 nmod:tmod _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 Unlike _ ADP IN _ 2 case _ _ 2 1987 _ NUM CD _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 dollar _ NOUN NN _ 8 nsubj _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 strong _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 And _ CONJ CC _ 9 cc _ _ 2 unlike _ ADP IN _ 3 case _ _ 3 1987 _ NUM CD _ 9 nmod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 economy _ NOUN NN _ 9 nsubj _ _ 7 does _ AUX VBZ _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 appear _ VERB VB _ 0 root _ _ 10 to _ PART TO _ 14 mark _ _ 11 be _ VERB VB _ 14 cop _ _ 12 in _ ADP IN _ 14 case _ _ 13 any _ DET DT _ 14 det _ _ 14 danger _ NOUN NN _ 9 xcomp _ _ 15 of _ ADP IN _ 16 case _ _ 16 overheating _ VERB VBG _ 14 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 economy _ NOUN NN _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 slower _ ADJ JJR _ 6 amod _ _ 6 growth _ NOUN NN _ 10 nsubj _ _ 7 this _ DET DT _ 8 det _ _ 8 year _ NOUN NN _ 6 nmod:tmod _ _ 9 also _ ADV RB _ 10 advmod _ _ 10 means _ VERB VBZ _ 23 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 outlook _ NOUN NN _ 19 nsubj _ _ 13 for _ ADP IN _ 15 case _ _ 14 corporate _ ADJ JJ _ 15 amod _ _ 15 profits _ NOUN NNS _ 12 nmod _ _ 16 `` _ PUNCT `` _ 19 punct _ _ 17 is _ VERB VBZ _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 good _ ADJ JJ _ 10 ccomp _ _ 20 , _ PUNCT , _ 23 punct _ _ 21 '' _ PUNCT '' _ 23 punct _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 So _ ADP IN _ 8 dep _ _ 3 it _ PRON PRP _ 8 nsubj _ _ 4 's _ VERB VBZ _ 8 cop _ _ 5 a _ DET DT _ 8 det _ _ 6 very _ ADV RB _ 7 advmod _ _ 7 mixed _ ADJ JJ _ 8 amod _ _ 8 bag _ NOUN NN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 1 Thus _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 concludes _ VERB VBZ _ 12 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 `` _ PUNCT `` _ 12 punct _ _ 7 This _ PRON DT _ 12 nsubj _ _ 8 is _ VERB VBZ _ 12 cop _ _ 9 not _ PART RB _ 12 neg _ _ 10 a _ DET DT _ 12 det _ _ 11 good _ ADJ JJ _ 12 amod _ _ 12 environment _ NOUN NN _ 0 root _ _ 13 to _ PART TO _ 16 mark _ _ 14 be _ VERB VB _ 16 auxpass _ _ 15 fully _ ADV RB _ 16 advmod _ _ 16 invested _ VERB VBN _ 12 acl _ _ 17 '' _ PUNCT '' _ 16 punct _ _ 18 in _ ADP IN _ 19 case _ _ 19 stocks _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 If _ SCONJ IN _ 5 mark _ _ 3 I _ PRON PRP _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 come _ VERB VBN _ 22 advcl _ _ 6 into _ ADP IN _ 7 case _ _ 7 Friday _ PROPN NNP _ 5 nmod _ _ 8 on _ ADP IN _ 9 case _ _ 9 margin _ NOUN NN _ 5 dep _ _ 10 or _ CONJ CC _ 9 cc _ _ 11 with _ SCONJ IN _ 14 mark _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 little _ ADJ JJ _ 14 amod _ _ 14 cash _ NOUN NN _ 9 conj _ _ 15 in _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 portfolios _ NOUN NNS _ 14 dep _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 I _ PRON PRP _ 22 nsubj _ _ 20 would _ AUX MD _ 22 aux _ _ 21 not _ PART RB _ 22 neg _ _ 22 do _ VERB VB _ 0 root _ _ 23 any _ DET DT _ 24 det _ _ 24 buying _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 22 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 we _ PRON PRP _ 3 nsubj _ _ 3 came _ VERB VBD _ 0 root _ _ 4 into _ ADP IN _ 5 case _ _ 5 Friday _ PROPN NNP _ 3 nmod _ _ 6 with _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 conservative _ ADJ JJ _ 9 amod _ _ 9 portfolio _ NOUN NN _ 3 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 so _ ADP IN _ 3 dep _ _ 12 I _ PRON PRP _ 14 nsubj _ _ 13 would _ AUX MD _ 14 aux _ _ 14 look _ VERB VB _ 3 parataxis _ _ 15 to _ PART TO _ 16 mark _ _ 16 do _ VERB VB _ 14 xcomp _ _ 17 some _ DET DT _ 19 det _ _ 18 modest _ ADJ JJ _ 19 amod _ _ 19 buying _ NOUN NN _ 16 dobj _ _ 20 '' _ PUNCT '' _ 16 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 behalf _ NOUN NN _ 16 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 clients _ NOUN NNS _ 22 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 26 `` _ PUNCT `` _ 3 punct _ _ 1 We _ PRON PRP _ 3 nsubj _ _ 2 're _ AUX VBP _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 look _ VERB VB _ 3 xcomp _ _ 6 for _ ADP IN _ 7 case _ _ 7 some _ DET DT _ 5 nmod _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 better-known _ ADJ JJ _ 11 amod _ _ 11 companies _ NOUN NNS _ 7 nmod _ _ 12 that _ PRON WDT _ 14 nsubjpass _ _ 13 got _ AUX VBD _ 14 auxpass _ _ 14 clocked _ VERB VBN _ 11 acl:relcl _ _ 15 '' _ PUNCT '' _ 14 punct _ _ 16 Friday _ PROPN NNP _ 14 nmod:tmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 John _ PROPN NNP _ 3 compound _ _ 2 Kenneth _ PROPN NNP _ 3 compound _ _ 3 Galbraith _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 the _ DET DT _ 6 det _ _ 5 latest _ ADJ JJS _ 6 amod _ _ 6 manifestation _ NOUN NN _ 19 ccomp _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 capacity _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 financial _ ADJ JJ _ 13 amod _ _ 13 community _ NOUN NN _ 9 nmod _ _ 14 for _ ADP IN _ 16 case _ _ 15 recurrent _ ADJ JJ _ 16 amod _ _ 16 insanity _ NOUN NN _ 9 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Galbraith _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 an _ DET DT _ 24 det _ _ 24 economist _ NOUN NN _ 21 appos _ _ 25 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 see _ VERB VBP _ 17 ccomp _ _ 4 this _ PRON DT _ 3 dobj _ _ 5 as _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 reaction _ NOUN NN _ 3 nmod _ _ 8 to _ ADP TO _ 13 case _ _ 9 the _ DET DT _ 13 det _ _ 10 whole _ ADJ JJ _ 13 amod _ _ 11 junk _ NOUN NN _ 13 compound _ _ 12 bond _ NOUN NN _ 13 compound _ _ 13 explosion _ NOUN NN _ 7 nmod _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 explosion _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 6 case _ _ 5 junk _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 takeovers _ NOUN NNS _ 6 conj _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 lodged _ VERB VBN _ 0 root _ _ 11 a _ DET DT _ 12 det _ _ 12 lot _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 insecure _ ADJ JJ _ 15 amod _ _ 15 securities _ NOUN NNS _ 12 nmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 hands _ NOUN NNS _ 10 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 investors _ NOUN NNS _ 18 nmod _ _ 21 and _ CONJ CC _ 10 cc _ _ 22 loaded _ VERB VBD _ 10 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 corporations _ NOUN NNS _ 22 dobj _ _ 25 that _ PRON WDT _ 28 nsubj _ _ 26 are _ VERB VBP _ 28 cop _ _ 27 the _ DET DT _ 28 det _ _ 28 objects _ NOUN NNS _ 24 acl:relcl _ _ 29 of _ ADP IN _ 30 case _ _ 30 takeovers _ NOUN NNS _ 28 nmod _ _ 31 or _ CONJ CC _ 30 cc _ _ 32 feared _ ADJ JJ _ 33 amod _ _ 33 takeovers _ NOUN NNS _ 30 conj _ _ 34 with _ ADP IN _ 36 case _ _ 35 huge _ ADJ JJ _ 36 amod _ _ 36 amounts _ NOUN NNS _ 22 nmod _ _ 37 of _ ADP IN _ 38 case _ _ 38 debt _ NOUN NN _ 36 nmod _ _ 39 rather _ ADV RB _ 38 cc _ _ 40 than _ ADP IN _ 39 mwe _ _ 41 equity _ NOUN NN _ 38 conj _ _ 42 . _ PUNCT . _ 10 punct _ _ 1 This _ PRON DT _ 4 nsubj _ _ 2 has _ AUX VBZ _ 4 aux _ _ 3 both _ CONJ CC _ 4 dep _ _ 4 made _ VERB VBN _ 0 root _ _ 5 investors _ NOUN NNS _ 6 dep _ _ 6 uneasy _ ADJ JJ _ 4 xcomp _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 corporations _ NOUN NNS _ 11 dep _ _ 10 more _ ADV RBR _ 11 advmod _ _ 11 vulnerable _ ADJ JJ _ 6 conj _ _ 12 . _ PUNCT . _ 4 punct _ _ 13 '' _ PUNCT '' _ 4 punct _ _ 1 Nevertheless _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 says _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 depression _ NOUN NN _ 9 nsubj _ _ 7 does _ AUX VBZ _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 appear _ VERB VB _ 4 ccomp _ _ 10 likely _ ADJ JJ _ 9 xcomp _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 18 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 18 ccomp _ _ 4 more _ ADJ JJR _ 5 amod _ _ 5 resiliency _ NOUN NN _ 3 nsubj _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 economy _ NOUN NN _ 5 nmod _ _ 9 at _ ADP IN _ 10 case _ _ 10 large _ ADJ JJ _ 8 nmod _ _ 11 than _ SCONJ IN _ 14 mark _ _ 12 we _ PRON PRP _ 14 nsubj _ _ 13 commonly _ ADV RB _ 14 advmod _ _ 14 suppose _ VERB VBP _ 5 advcl _ _ 15 , _ PUNCT , _ 18 punct _ _ 16 '' _ PUNCT '' _ 18 punct _ _ 17 he _ PRON PRP _ 18 nsubj _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 takes _ VERB VBZ _ 0 root _ _ 4 more _ ADJ JJR _ 5 amod _ _ 5 error _ NOUN NN _ 3 dobj _ _ 6 now _ ADV RB _ 3 advmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 have _ VERB VB _ 3 advcl _ _ 9 a _ DET DT _ 11 det _ _ 10 major _ ADJ JJ _ 11 amod _ _ 11 depression _ NOUN NN _ 8 dobj _ _ 12 than _ ADP IN _ 13 case _ _ 13 back _ ADV RB _ 3 advcl _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 Thirties _ NOUN NNS _ 13 nmod _ _ 17 -- _ PUNCT : _ 3 punct _ _ 18 much _ ADV RB _ 27 advmod _ _ 19 as _ SCONJ IN _ 27 mark _ _ 20 the _ DET DT _ 22 det _ _ 21 financial _ ADJ JJ _ 22 amod _ _ 22 community _ NOUN NN _ 27 nsubj _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 the _ DET DT _ 25 det _ _ 25 government _ NOUN NN _ 22 conj _ _ 26 may _ AUX MD _ 27 aux _ _ 27 try _ VERB VB _ 3 advcl _ _ 28 . _ PUNCT . _ 3 punct _ _ 29 '' _ PUNCT '' _ 3 punct _ _ 1 Mario _ PROPN NNP _ 2 compound _ _ 2 Gabelli _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 New _ PROPN NNP _ 6 compound _ _ 2 York _ PROPN NNP _ 6 compound _ _ 3 money _ NOUN NN _ 6 compound _ _ 4 manager _ NOUN NN _ 6 compound _ _ 5 Mario _ PROPN NNP _ 6 compound _ _ 6 Gabelli _ PROPN NNP _ 15 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 an _ DET DT _ 9 det _ _ 9 expert _ NOUN NN _ 6 appos _ _ 10 at _ SCONJ IN _ 11 mark _ _ 11 spotting _ VERB VBG _ 9 acl _ _ 12 takeover _ NOUN NN _ 13 compound _ _ 13 candidates _ NOUN NNS _ 11 dobj _ _ 14 , _ PUNCT , _ 6 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 that _ SCONJ IN _ 21 mark _ _ 17 takeovers _ NOUN NNS _ 21 nsubjpass _ _ 18 are _ VERB VBP _ 21 auxpass _ _ 19 n't _ PART RB _ 21 neg _ _ 20 totally _ ADV RB _ 21 advmod _ _ 21 gone _ VERB VBN _ 15 ccomp _ _ 22 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 Companies _ NOUN NNS _ 5 nsubj _ _ 3 are _ AUX VBP _ 5 aux _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 going _ VERB VBG _ 15 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 5 xcomp _ _ 8 companies _ NOUN NNS _ 7 dobj _ _ 9 around _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 world _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Examples _ NOUN NNS _ 2 nsubj _ _ 2 are _ VERB VBP _ 0 root _ _ 3 `` _ PUNCT `` _ 2 punct _ _ 4 Ford _ PROPN NNP _ 5 nsubj _ _ 5 looking _ VERB VBG _ 2 xcomp _ _ 6 at _ ADP IN _ 7 case _ _ 7 Jaguar _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 BellSouth _ PROPN NNP _ 10 nsubj _ _ 10 looking _ VERB VBG _ 5 parataxis _ _ 11 at _ ADP IN _ 13 case _ _ 12 LIN _ PROPN NNP _ 13 compound _ _ 13 Broadcasting _ PROPN NNP _ 10 nmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 15 '' _ PUNCT '' _ 2 punct _ _ 1 These _ DET DT _ 2 det _ _ 2 sorts _ NOUN NNS _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 takeovers _ NOUN NNS _ 2 nmod _ _ 5 do _ AUX VBP _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 require _ VERB VB _ 0 root _ _ 8 junk _ NOUN NN _ 9 compound _ _ 9 bonds _ NOUN NNS _ 7 dobj _ _ 10 or _ CONJ CC _ 9 cc _ _ 11 big _ ADJ JJ _ 13 amod _ _ 12 bank _ NOUN NN _ 13 compound _ _ 13 loans _ NOUN NNS _ 9 conj _ _ 14 to _ PART TO _ 15 mark _ _ 15 finance _ VERB VB _ 7 xcomp _ _ 16 them _ PRON PRP _ 15 dobj _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 so _ ADP IN _ 7 dep _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Gabelli _ PROPN NNP _ 21 nsubj _ _ 21 figures _ NOUN NNS _ 7 parataxis _ _ 22 they _ PRON PRP _ 24 nsubj _ _ 23 will _ AUX MD _ 24 aux _ _ 24 continue _ VERB VB _ 21 ccomp _ _ 25 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 was _ VERB VBD _ 0 root _ _ 5 up _ ADV RB _ 4 advmod _ _ 6 35 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 nmod:npmod _ _ 8 since _ SCONJ IN _ 13 mark _ _ 9 -LCB- _ PUNCT -LRB- _ 10 punct _ _ 10 President _ PROPN NNP _ 12 dep _ _ 11 -RCB- _ PUNCT -RRB- _ 10 punct _ _ 12 Bush _ PROPN NNP _ 13 nsubj _ _ 13 took _ VERB VBD _ 4 advcl _ _ 14 office _ NOUN NN _ 13 dobj _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 Mr. _ PROPN NNP _ 18 compound _ _ 18 Gabelli _ PROPN NNP _ 19 nsubj _ _ 19 says _ VERB VBZ _ 4 dep _ _ 20 , _ PUNCT , _ 19 punct _ _ 21 so _ ADP IN _ 4 dep _ _ 22 a _ DET DT _ 23 det _ _ 23 correction _ NOUN NN _ 24 nsubj _ _ 24 was _ VERB VBD _ 4 parataxis _ _ 25 to _ PART TO _ 27 mark _ _ 26 be _ AUX VB _ 27 auxpass _ _ 27 expected _ VERB VBN _ 24 xcomp _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 thinks _ VERB VBZ _ 0 root _ _ 3 another _ DET DT _ 4 det _ _ 4 crash _ NOUN NN _ 7 nsubj _ _ 5 is _ VERB VBZ _ 7 cop _ _ 6 `` _ PUNCT `` _ 7 punct _ _ 7 unlikely _ ADJ JJ _ 2 ccomp _ _ 8 , _ PUNCT , _ 2 punct _ _ 9 '' _ PUNCT '' _ 2 punct _ _ 10 and _ CONJ CC _ 2 cc _ _ 11 says _ VERB VBZ _ 2 conj _ _ 12 he _ PRON PRP _ 15 nsubj _ _ 13 was _ AUX VBD _ 15 aux _ _ 14 `` _ PUNCT `` _ 15 punct _ _ 15 nibbling _ VERB VBG _ 11 ccomp _ _ 16 at _ ADP IN _ 19 case _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 selected _ ADJ JJ _ 19 amod _ _ 19 stocks _ NOUN NNS _ 15 nmod _ _ 20 during _ ADP IN _ 23 case _ _ 21 Friday _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 plunge _ NOUN NN _ 15 nmod _ _ 24 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 Stocks _ NOUN NNS _ 15 nsubj _ _ 3 that _ PRON WDT _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 thrown _ VERB VBN _ 2 acl:relcl _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 just _ ADV RB _ 11 advmod _ _ 8 on _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 emotional _ ADJ JJ _ 11 amod _ _ 11 basis _ NOUN NN _ 5 nmod _ _ 12 are _ VERB VBP _ 15 cop _ _ 13 a _ DET DT _ 15 det _ _ 14 great _ ADJ JJ _ 15 amod _ _ 15 opportunity _ NOUN NN _ 27 ccomp _ _ 16 -LCB- _ PUNCT -LRB- _ 17 punct _ _ 17 this _ DET DT _ 19 dep _ _ 18 -RCB- _ PUNCT -RRB- _ 17 punct _ _ 19 week _ NOUN NN _ 15 nmod:tmod _ _ 20 for _ ADP IN _ 21 case _ _ 21 guys _ NOUN NNS _ 15 nmod _ _ 22 like _ ADP IN _ 23 case _ _ 23 me _ PRON PRP _ 21 nmod _ _ 24 , _ PUNCT , _ 27 punct _ _ 25 '' _ PUNCT '' _ 27 punct _ _ 26 he _ PRON PRP _ 27 nsubj _ _ 27 says _ VERB VBZ _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 Jim _ PROPN NNP _ 2 compound _ _ 2 Rogers _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 It _ PRON PRP _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 19 ccomp _ _ 4 to _ ADP TO _ 5 case _ _ 5 me _ PRON PRP _ 3 nmod _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 this _ PRON DT _ 10 nsubj _ _ 8 is _ VERB VBZ _ 10 cop _ _ 9 the _ DET DT _ 10 det _ _ 10 pin _ NOUN NN _ 3 ccomp _ _ 11 that _ PRON WDT _ 14 nsubj _ _ 12 has _ AUX VBZ _ 14 aux _ _ 13 finally _ ADV RB _ 14 advmod _ _ 14 pricked _ VERB VBN _ 10 acl:relcl _ _ 15 the _ DET DT _ 16 det _ _ 16 balloon _ NOUN NN _ 14 dobj _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Rogers _ PROPN NNP _ 19 dep _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 professor _ NOUN NN _ 21 appos _ _ 25 of _ ADP IN _ 26 case _ _ 26 finance _ NOUN NN _ 24 nmod _ _ 27 at _ ADP IN _ 29 case _ _ 28 Columbia _ PROPN NNP _ 29 compound _ _ 29 University _ PROPN NNP _ 24 nmod _ _ 30 and _ CONJ CC _ 24 cc _ _ 31 former _ ADJ JJ _ 32 amod _ _ 32 co-manager _ NOUN NN _ 24 conj _ _ 33 of _ ADP IN _ 34 case _ _ 34 one _ NUM CD _ 32 nmod _ _ 35 of _ ADP IN _ 40 case _ _ 36 the _ DET DT _ 40 det _ _ 37 most _ ADV RBS _ 38 advmod _ _ 38 successful _ ADJ JJ _ 40 amod _ _ 39 hedge _ NOUN NN _ 40 compound _ _ 40 funds _ NOUN NNS _ 34 nmod _ _ 41 in _ ADP IN _ 42 case _ _ 42 history _ NOUN NN _ 40 nmod _ _ 43 , _ PUNCT , _ 34 punct _ _ 44 Quantum _ PROPN NNP _ 45 compound _ _ 45 Fund _ PROPN NNP _ 34 appos _ _ 46 . _ PUNCT . _ 19 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 sees _ VERB VBZ _ 0 root _ _ 3 `` _ PUNCT `` _ 5 punct _ _ 4 economic _ ADJ JJ _ 5 amod _ _ 5 problems _ NOUN NNS _ 2 dobj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 financial _ ADJ JJ _ 8 amod _ _ 8 problems _ NOUN NNS _ 5 appos _ _ 9 '' _ PUNCT '' _ 5 punct _ _ 10 ahead _ ADV RB _ 5 advmod _ _ 11 for _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 U.S. _ PROPN NNP _ 2 nmod _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 with _ ADP IN _ 19 case _ _ 16 a _ DET DT _ 19 det _ _ 17 fairly _ ADV RB _ 18 advmod _ _ 18 strong _ ADJ JJ _ 19 amod _ _ 19 possibility _ NOUN NN _ 2 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 a _ DET DT _ 22 det _ _ 22 recession _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 Friday _ PROPN NNP _ 6 nmod:tmod _ _ 3 you _ PRON PRP _ 6 nsubj _ _ 4 could _ AUX MD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 sell _ VERB VB _ 11 ccomp _ _ 7 dollars _ NOUN NNS _ 6 dobj _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 says _ VERB VBZ _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Dealers _ NOUN NNS _ 4 nsubj _ _ 2 `` _ PUNCT `` _ 4 punct _ _ 3 would _ AUX MD _ 4 aux _ _ 4 give _ VERB VB _ 0 root _ _ 5 you _ PRON PRP _ 4 iobj _ _ 6 a _ DET DT _ 7 det _ _ 7 quote _ NOUN NN _ 4 dobj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 but _ CONJ CC _ 4 cc _ _ 10 then _ ADV RB _ 11 advmod _ _ 11 refuse _ VERB VB _ 4 conj _ _ 12 to _ PART TO _ 13 mark _ _ 13 make _ VERB VB _ 11 xcomp _ _ 14 the _ DET DT _ 15 det _ _ 15 trade _ NOUN NN _ 13 dobj _ _ 16 . _ PUNCT . _ 4 punct _ _ 17 '' _ PUNCT '' _ 4 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 dollar _ NOUN NN _ 4 nsubj _ _ 4 stays _ VERB VBZ _ 12 advcl _ _ 5 weak _ ADJ JJ _ 4 xcomp _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 he _ PRON PRP _ 8 nsubj _ _ 8 says _ VERB VBZ _ 12 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 that _ PRON WDT _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 add _ VERB VB _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 inflationary _ ADJ JJ _ 15 amod _ _ 15 pressures _ NOUN NNS _ 12 nmod _ _ 16 in _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 U.S. _ PROPN NNP _ 15 nmod _ _ 19 and _ CONJ CC _ 12 cc _ _ 20 make _ VERB VB _ 12 conj _ _ 21 it _ PRON PRP _ 29 nsubj _ _ 22 hard _ ADJ JJ _ 29 dep _ _ 23 for _ SCONJ IN _ 29 mark _ _ 24 the _ DET DT _ 27 det _ _ 25 Federal _ PROPN NNP _ 27 compound _ _ 26 Reserve _ PROPN NNP _ 27 compound _ _ 27 Board _ PROPN NNP _ 29 nsubj _ _ 28 to _ PART TO _ 29 mark _ _ 29 ease _ VERB VB _ 20 xcomp _ _ 30 interest _ NOUN NN _ 31 compound _ _ 31 rates _ NOUN NNS _ 29 dobj _ _ 32 very _ ADV RB _ 33 advmod _ _ 33 much _ ADV RB _ 29 advmod _ _ 34 . _ PUNCT . _ 12 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Rogers _ PROPN NNP _ 5 nsubj _ _ 3 wo _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 decide _ VERB VB _ 0 root _ _ 6 what _ PRON WP _ 8 nsubj _ _ 7 to _ PART TO _ 8 mark _ _ 8 do _ VERB VB _ 5 ccomp _ _ 9 today _ NOUN NN _ 8 nmod:tmod _ _ 10 until _ SCONJ IN _ 12 mark _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 sees _ VERB VBZ _ 5 advcl _ _ 13 how _ ADV WRB _ 19 advmod _ _ 14 the _ DET DT _ 18 det _ _ 15 London _ PROPN NNP _ 18 compound _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Tokyo _ PROPN NNP _ 15 conj _ _ 18 markets _ NOUN NNS _ 19 nsubj _ _ 19 go _ VERB VBP _ 12 ccomp _ _ 20 . _ PUNCT . _ 5 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 recommends _ VERB VBZ _ 0 root _ _ 3 that _ SCONJ IN _ 5 mark _ _ 4 investors _ NOUN NNS _ 5 nsubj _ _ 5 sell _ VERB VB _ 2 ccomp _ _ 6 takeover-related _ ADJ JJ _ 7 amod _ _ 7 stocks _ NOUN NNS _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 hang _ VERB VB _ 5 conj _ _ 11 on _ ADP RP _ 10 compound:prt _ _ 12 to _ ADP TO _ 15 case _ _ 13 some _ DET DT _ 15 det _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 stocks _ NOUN NNS _ 10 nmod _ _ 16 -- _ PUNCT : _ 15 punct _ _ 17 especially _ ADV RB _ 15 advmod _ _ 18 utilities _ NOUN NNS _ 15 dep _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 22 nsubj _ _ 21 often _ ADV RB _ 22 advmod _ _ 22 do _ VERB VBP _ 18 acl:relcl _ _ 23 well _ ADV RB _ 22 advmod _ _ 24 during _ ADP IN _ 25 case _ _ 25 periods _ NOUN NNS _ 22 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 economic _ ADJ JJ _ 28 amod _ _ 28 weakness _ NOUN NN _ 25 nmod _ _ 29 . _ PUNCT . _ 2 punct _ _ 1 Frank _ PROPN NNP _ 2 compound _ _ 2 Curzio _ PROPN NNP _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Many _ ADJ JJ _ 2 amod _ _ 2 people _ NOUN NNS _ 4 nsubj _ _ 3 now _ ADV RB _ 4 advmod _ _ 4 claim _ VERB VBP _ 0 root _ _ 5 to _ PART TO _ 7 mark _ _ 6 have _ AUX VB _ 7 aux _ _ 7 predicted _ VERB VBN _ 4 xcomp _ _ 8 the _ DET DT _ 10 det _ _ 9 1987 _ NUM CD _ 10 nummod _ _ 10 crash _ NOUN NN _ 7 dobj _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Queens _ PROPN NNP _ 6 compound _ _ 2 newsletter _ NOUN NN _ 6 compound _ _ 3 writer _ NOUN NN _ 6 compound _ _ 4 Francis _ PROPN NNP _ 6 compound _ _ 5 X. _ PROPN NNP _ 6 compound _ _ 6 Curzio _ PROPN NNP _ 8 nsubj _ _ 7 actually _ ADV RB _ 8 advmod _ _ 8 did _ VERB VBD _ 0 root _ _ 9 it _ PRON PRP _ 8 dobj _ _ 10 : _ PUNCT : _ 8 punct _ _ 11 He _ PRON PRP _ 12 nsubj _ _ 12 stated _ VERB VBD _ 8 parataxis _ _ 13 in _ ADP IN _ 14 case _ _ 14 writing _ NOUN NN _ 12 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 September _ PROPN NNP _ 12 nmod _ _ 17 1987 _ NUM CD _ 16 nummod _ _ 18 that _ SCONJ IN _ 25 mark _ _ 19 the _ DET DT _ 23 det _ _ 20 Dow _ PROPN NNP _ 23 compound _ _ 21 Jones _ PROPN NNP _ 23 compound _ _ 22 Industrial _ PROPN NNP _ 23 compound _ _ 23 Average _ PROPN NNP _ 25 nsubj _ _ 24 was _ VERB VBD _ 25 cop _ _ 25 likely _ ADJ JJ _ 12 ccomp _ _ 26 to _ PART TO _ 27 mark _ _ 27 decline _ VERB VB _ 25 xcomp _ _ 28 about _ ADV RB _ 29 advmod _ _ 29 500 _ NUM CD _ 30 nummod _ _ 30 points _ NOUN NNS _ 27 dobj _ _ 31 the _ DET DT _ 33 det _ _ 32 following _ ADJ JJ _ 33 amod _ _ 33 month _ NOUN NN _ 27 nmod:tmod _ _ 34 . _ PUNCT . _ 8 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Curzio _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 what _ PRON WP _ 5 nsubj _ _ 5 happens _ VERB VBZ _ 8 csubj _ _ 6 now _ ADV RB _ 5 advmod _ _ 7 will _ AUX MD _ 8 aux _ _ 8 depend _ VERB VB _ 3 ccomp _ _ 9 a _ DET DT _ 11 det _ _ 10 good _ ADJ JJ _ 11 amod _ _ 11 deal _ NOUN NN _ 8 dobj _ _ 12 on _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 Federal _ PROPN NNP _ 16 compound _ _ 15 Reserve _ PROPN NNP _ 16 compound _ _ 16 Board _ PROPN NNP _ 8 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 4 mark _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 promptly _ ADV RB _ 4 advmod _ _ 4 cuts _ VERB VBZ _ 21 advcl _ _ 5 the _ DET DT _ 7 det _ _ 6 discount _ NOUN NN _ 7 compound _ _ 7 rate _ NOUN NN _ 4 dobj _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 charges _ VERB VBZ _ 7 acl:relcl _ _ 10 on _ ADP IN _ 11 case _ _ 11 loans _ NOUN NNS _ 9 nmod _ _ 12 to _ ADP TO _ 13 case _ _ 13 banks _ NOUN NNS _ 11 nmod _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 he _ PRON PRP _ 16 nsubj _ _ 16 says _ VERB VBZ _ 21 parataxis _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 That _ PRON DT _ 21 nsubj _ _ 20 could _ AUX MD _ 21 aux _ _ 21 quiet _ VERB VB _ 0 root _ _ 22 things _ NOUN NNS _ 21 dobj _ _ 23 down _ ADP RP _ 21 compound:prt _ _ 24 . _ PUNCT . _ 21 punct _ _ 25 '' _ PUNCT '' _ 21 punct _ _ 1 If _ SCONJ IN _ 2 mark _ _ 2 not _ PART RB _ 7 advcl _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 `` _ PUNCT `` _ 7 punct _ _ 5 We _ PRON PRP _ 7 nsubj _ _ 6 could _ AUX MD _ 7 aux _ _ 7 go _ VERB VB _ 0 root _ _ 8 to _ ADP TO _ 9 case _ _ 9 2200 _ NUM CD _ 7 nmod _ _ 10 very _ ADV RB _ 11 advmod _ _ 11 soon _ ADV RB _ 7 advmod _ _ 12 . _ PUNCT . _ 7 punct _ _ 13 '' _ PUNCT '' _ 7 punct _ _ 1 Frank _ PROPN NNP _ 3 compound _ _ 2 W. _ PROPN NNP _ 3 compound _ _ 3 Terrizzi _ PROPN NNP _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Stock _ NOUN NN _ 2 compound _ _ 2 prices _ NOUN NNS _ 6 nsubj _ _ 3 `` _ PUNCT `` _ 6 punct _ _ 4 would _ AUX MD _ 6 aux _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 have _ VERB VB _ 21 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 go _ VERB VB _ 6 xcomp _ _ 9 down _ ADV RB _ 8 advmod _ _ 10 some _ DET DT _ 12 det _ _ 11 additional _ ADJ JJ _ 12 amod _ _ 12 amount _ NOUN NN _ 8 dobj _ _ 13 before _ SCONJ IN _ 15 mark _ _ 14 we _ PRON PRP _ 15 nsubj _ _ 15 become _ VERB VBP _ 6 advcl _ _ 16 positive _ ADJ JJ _ 15 xcomp _ _ 17 on _ ADP IN _ 18 case _ _ 18 stocks _ NOUN NNS _ 16 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Terrizzi _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 president _ NOUN NN _ 23 appos _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 managing _ VERB VBG _ 28 amod _ _ 28 director _ NOUN NN _ 25 conj _ _ 29 of _ ADP IN _ 33 case _ _ 30 Renaissance _ PROPN NNP _ 33 compound _ _ 31 Investment _ PROPN NNP _ 33 compound _ _ 32 Management _ PROPN NNP _ 33 compound _ _ 33 Inc. _ PROPN NNP _ 25 nmod _ _ 34 in _ ADP IN _ 35 case _ _ 35 Cincinnati _ PROPN NNP _ 33 nmod _ _ 36 . _ PUNCT . _ 21 punct _ _ 1 Renaissance _ PROPN NNP _ 10 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 which _ PRON WDT _ 4 nsubj _ _ 4 manages _ VERB VBZ _ 1 acl:relcl _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 $ _ SYM $ _ 4 dobj _ _ 7 1.8 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 drew _ VERB VBD _ 0 root _ _ 11 stiff _ ADJ JJ _ 12 amod _ _ 12 criticism _ NOUN NN _ 10 dobj _ _ 13 from _ ADP IN _ 15 case _ _ 14 many _ ADJ JJ _ 15 amod _ _ 15 clients _ NOUN NNS _ 10 nmod _ _ 16 earlier _ ADV RBR _ 18 advmod _ _ 17 this _ DET DT _ 18 det _ _ 18 year _ NOUN NN _ 10 nmod:tmod _ _ 19 because _ SCONJ IN _ 21 mark _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 pulled _ VERB VBD _ 10 advcl _ _ 22 entirely _ ADV RB _ 21 advmod _ _ 23 out _ ADP IN _ 25 case _ _ 24 of _ ADP IN _ 25 case _ _ 25 stocks _ NOUN NNS _ 21 nmod _ _ 26 at _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 beginning _ NOUN NN _ 21 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 year _ NOUN NN _ 28 nmod _ _ 32 and _ CONJ CC _ 21 cc _ _ 33 thus _ ADV RB _ 34 advmod _ _ 34 missed _ VERB VBD _ 21 conj _ _ 35 a _ DET DT _ 37 det _ _ 36 strong _ ADJ JJ _ 37 amod _ _ 37 rally _ NOUN NN _ 34 dobj _ _ 38 . _ PUNCT . _ 10 punct _ _ 1 Renaissance _ PROPN NNP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 keeping _ VERB VBG _ 0 root _ _ 4 its _ PRON PRP$ _ 5 nmod:poss _ _ 5 money _ NOUN NN _ 3 dobj _ _ 6 entirely _ ADV RB _ 9 advmod _ _ 7 in _ ADP IN _ 9 case _ _ 8 cash _ NOUN NN _ 9 compound _ _ 9 equivalents _ NOUN NNS _ 3 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 primarily _ ADV RB _ 9 advmod _ _ 12 U.S. _ PROPN NNP _ 14 compound _ _ 13 Treasury _ PROPN NNP _ 14 compound _ _ 14 bills _ NOUN NNS _ 9 dep _ _ 15 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 T-bills _ NOUN NNS _ 7 nsubj _ _ 3 probably _ ADV RB _ 7 advmod _ _ 4 are _ VERB VBP _ 7 cop _ _ 5 the _ DET DT _ 7 det _ _ 6 right _ ADJ JJ _ 7 amod _ _ 7 place _ NOUN NN _ 13 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 be _ VERB VB _ 7 acl _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 says _ VERB VBZ _ 0 root _ _ 14 . _ PUNCT . _ 13 punct _ _ 1 Regarding _ VERB VBG _ 0 root _ _ 2 the _ DET DT _ 5 det _ _ 3 Oct. _ PROPN NNP _ 5 compound _ _ 4 3 _ NUM CD _ 5 nummod _ _ 5 letter _ NOUN NN _ 1 dobj _ _ 6 to _ ADP TO _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 editor _ NOUN NN _ 5 nmod _ _ 9 from _ ADP IN _ 12 case _ _ 10 Rep. _ PROPN NNP _ 12 compound _ _ 11 Tom _ PROPN NNP _ 12 compound _ _ 12 Lantos _ PROPN NNP _ 5 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 chairman _ NOUN NN _ 12 appos _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 House _ PROPN NNP _ 18 compound _ _ 18 Subcommittee _ PROPN NNP _ 14 nmod _ _ 19 on _ ADP IN _ 20 case _ _ 20 Employment _ PROPN NNP _ 18 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Housing _ PROPN NNP _ 20 conj _ _ 23 , _ PUNCT , _ 5 punct _ _ 24 alleging _ VERB VBG _ 5 acl _ _ 25 : _ PUNCT : _ 1 punct _ _ 1 1 _ X LS _ 14 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ IN _ 14 mark _ _ 4 your _ PRON PRP$ _ 7 nmod:poss _ _ 5 Sept. _ PROPN NNP _ 7 compound _ _ 6 28 _ NUM CD _ 7 nummod _ _ 7 editorial _ NOUN NN _ 14 nsubj _ _ 8 `` _ PUNCT `` _ 7 punct _ _ 9 Kangaroo _ NOUN NN _ 10 compound _ _ 10 Committees _ NOUN NNS _ 7 dep _ _ 11 '' _ PUNCT '' _ 7 punct _ _ 12 was _ VERB VBD _ 14 cop _ _ 13 factually _ ADV RB _ 14 advmod _ _ 14 inaccurate _ ADJ JJ _ 0 root _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 deliberately _ ADV RB _ 17 advmod _ _ 17 misleading _ ADJ JJ _ 14 conj _ _ 18 . _ PUNCT . _ 14 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 thought _ VERB VBD _ 0 root _ _ 3 your _ PRON PRP$ _ 4 nmod:poss _ _ 4 editorial _ NOUN NN _ 7 nsubj _ _ 5 was _ VERB VBD _ 7 cop _ _ 6 factually _ ADV RB _ 7 advmod _ _ 7 accurate _ ADJ JJ _ 2 ccomp _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 deliberately _ ADV RB _ 10 advmod _ _ 10 elucidative _ ADJ JJ _ 7 conj _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 2 _ X LS _ 6 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ IN _ 6 mark _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Lantos _ PROPN NNP _ 6 nsubj _ _ 6 supported _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 rights _ NOUN NNS _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 witnesses _ NOUN NNS _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 take _ VERB VB _ 8 acl _ _ 14 the _ DET DT _ 16 det _ _ 15 Fifth _ PROPN NNP _ 16 compound _ _ 16 Amendment _ PROPN NNP _ 13 dobj _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 Yes _ INTJ UH _ 4 discourse _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 did _ VERB VBD _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 As _ SCONJ IN _ 3 mark _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 watched _ VERB VBD _ 9 advcl _ _ 4 him _ PRON PRP _ 3 dobj _ _ 5 on _ ADP IN _ 6 case _ _ 6 C-Span _ PROPN NNP _ 3 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 I _ PRON PRP _ 9 nsubj _ _ 9 heard _ VERB VBD _ 0 root _ _ 10 him _ PRON PRP _ 11 nsubj _ _ 11 speak _ VERB VB _ 9 ccomp _ _ 12 those _ DET DT _ 14 det _ _ 13 lovely _ ADJ JJ _ 14 amod _ _ 14 words _ NOUN NNS _ 11 dobj _ _ 15 about _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Bill _ PROPN NNP _ 14 nmod _ _ 18 of _ ADP IN _ 19 case _ _ 19 Rights _ PROPN NNPS _ 17 nmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 which _ PRON WDT _ 23 dobj _ _ 22 he _ PRON PRP _ 23 nsubj _ _ 23 quotes _ VERB VBZ _ 14 acl:relcl _ _ 24 from _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 transcript _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 hearings _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 did _ AUX VBD _ 3 aux _ _ 3 repeat _ VERB VB _ 0 root _ _ 4 those _ DET DT _ 6 det _ _ 5 nice _ ADJ JJ _ 6 amod _ _ 6 platitudes _ NOUN NNS _ 3 dobj _ _ 7 several _ ADJ JJ _ 8 amod _ _ 8 times _ NOUN NNS _ 3 nmod:npmod _ _ 9 as _ ADP IN _ 11 case _ _ 10 an _ DET DT _ 11 det _ _ 11 indication _ NOUN NN _ 3 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 his _ PRON PRP$ _ 14 nmod:poss _ _ 14 support _ NOUN NN _ 11 nmod _ _ 15 for _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 Constitution _ PROPN NNP _ 14 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 used _ VERB VBD _ 0 root _ _ 3 about _ ADV RB _ 4 advmod _ _ 4 56 _ NUM CD _ 5 nummod _ _ 5 words _ NOUN NNS _ 2 dobj _ _ 6 defending _ VERB VBG _ 2 xcomp _ _ 7 the _ DET DT _ 8 det _ _ 8 witnesses _ NOUN NNS _ 11 nmod:poss _ _ 9 ' _ PART POS _ 8 case _ _ 10 constitutional _ ADJ JJ _ 11 amod _ _ 11 rights _ NOUN NNS _ 6 dobj _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 Unfortunately _ ADV RB _ 9 advmod _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 by _ ADP IN _ 6 case _ _ 4 my _ PRON PRP$ _ 6 nmod:poss _ _ 5 rough _ ADJ JJ _ 6 amod _ _ 6 guess _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 he _ PRON PRP _ 9 nsubj _ _ 9 used _ VERB VBD _ 0 root _ _ 10 better _ ADJ JJR _ 12 advmod _ _ 11 than _ ADP IN _ 12 advmod _ _ 12 5,000 _ NUM CD _ 13 nummod _ _ 13 words _ NOUN NNS _ 9 dobj _ _ 14 heaping _ VERB VBG _ 9 xcomp _ _ 15 scorn _ NOUN NN _ 14 dobj _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 witnesses _ NOUN NNS _ 14 nmod _ _ 19 for _ SCONJ IN _ 20 mark _ _ 20 exercising _ VERB VBG _ 14 advcl _ _ 21 the _ DET DT _ 22 det _ _ 22 Fifth _ PROPN NNP _ 20 dobj _ _ 23 . _ PUNCT . _ 9 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 sandwiched _ VERB VBD _ 0 root _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 praise _ NOUN NN _ 2 dobj _ _ 5 of _ ADP IN _ 7 case _ _ 6 constitutional _ ADJ JJ _ 7 amod _ _ 7 meat _ NOUN NN _ 4 nmod _ _ 8 between _ ADP IN _ 10 case _ _ 9 large _ ADJ JJ _ 10 amod _ _ 10 loaves _ NOUN NNS _ 2 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 bilious _ ADJ JJ _ 13 amod _ _ 13 commentary _ NOUN NN _ 10 nmod _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 As _ SCONJ IN _ 5 mark _ _ 2 your _ PRON PRP$ _ 3 nmod:poss _ _ 3 editorial _ NOUN NN _ 5 nsubj _ _ 4 rightly _ ADV RB _ 5 advmod _ _ 5 pointed _ VERB VBD _ 29 advcl _ _ 6 out _ ADP RP _ 5 compound:prt _ _ 7 , _ PUNCT , _ 29 punct _ _ 8 Samuel _ PROPN NNP _ 9 compound _ _ 9 Pierce _ PROPN NNP _ 29 nsubjpass _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 former _ ADJ JJ _ 13 amod _ _ 12 HUD _ PROPN NNP _ 13 compound _ _ 13 secretary _ NOUN NN _ 9 appos _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 and _ CONJ CC _ 9 cc _ _ 16 Lance _ PROPN NNP _ 17 compound _ _ 17 Wilson _ PROPN NNP _ 9 conj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 Pierce _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 former _ ADJ JJ _ 23 amod _ _ 23 aide _ NOUN NN _ 17 appos _ _ 24 , _ PUNCT , _ 17 punct _ _ 25 `` _ PUNCT `` _ 29 punct _ _ 26 are _ AUX VBP _ 29 aux _ _ 27 currently _ ADV RB _ 29 advmod _ _ 28 being _ AUX VBG _ 29 auxpass _ _ 29 held _ VERB VBD _ 0 root _ _ 30 up _ ADV RB _ 29 advmod _ _ 31 to _ ADP TO _ 32 case _ _ 32 scorn _ NOUN NN _ 30 nmod _ _ 33 for _ SCONJ IN _ 34 mark _ _ 34 taking _ VERB VBG _ 29 advcl _ _ 35 the _ DET DT _ 37 det _ _ 36 Fifth _ PROPN NNP _ 37 compound _ _ 37 Amendment _ PROPN NNP _ 34 dobj _ _ 38 . _ PUNCT . _ 29 punct _ _ 1 '' _ PUNCT '' _ 10 punct _ _ 2 That _ PRON DT _ 10 nsubj _ _ 3 certainly _ ADV RB _ 10 advmod _ _ 4 is _ VERB VBZ _ 10 cop _ _ 5 not _ PART RB _ 10 neg _ _ 6 the _ DET DT _ 10 det _ _ 7 supposed _ ADJ JJ _ 10 amod _ _ 8 `` _ PUNCT `` _ 10 punct _ _ 9 distorted _ ADJ JJ _ 10 amod _ _ 10 reading _ NOUN NN _ 0 root _ _ 11 '' _ PUNCT '' _ 10 punct _ _ 12 indicated _ VERB VBN _ 10 acl _ _ 13 by _ ADP IN _ 15 case _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Lantos _ PROPN NNP _ 12 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 1 3 _ X LS _ 9 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ IN _ 9 mark _ _ 4 his _ PRON PRP$ _ 6 nmod:poss _ _ 5 `` _ PUNCT `` _ 6 punct _ _ 6 committee _ NOUN NN _ 9 nsubj _ _ 7 does _ AUX VBZ _ 9 aux _ _ 8 not _ PART RB _ 9 neg _ _ 9 deal _ VERB VB _ 0 root _ _ 10 with _ ADP IN _ 14 case _ _ 11 any _ DET DT _ 14 det _ _ 12 possible _ ADJ JJ _ 14 amod _ _ 13 criminal _ ADJ JJ _ 14 amod _ _ 14 activity _ NOUN NN _ 9 nmod _ _ 15 at _ ADP IN _ 16 case _ _ 16 HUD _ PROPN NNP _ 14 nmod _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 My _ PRON PRP$ _ 2 nmod:poss _ _ 2 colleagues _ NOUN NNS _ 6 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 I _ PRON PRP _ 2 conj _ _ 5 fully _ ADV RB _ 6 advmod _ _ 6 realize _ VERB VBP _ 0 root _ _ 7 we _ PRON PRP _ 11 nsubj _ _ 8 are _ VERB VBP _ 11 cop _ _ 9 not _ PART RB _ 11 neg _ _ 10 a _ DET DT _ 11 det _ _ 11 court _ NOUN NN _ 6 ccomp _ _ 12 ... _ PUNCT : _ 6 punct _ _ 13 etc _ X FW _ 6 dep _ _ 14 . _ PUNCT . _ 6 punct _ _ 15 '' _ PUNCT '' _ 6 punct _ _ 1 Absolute _ ADJ JJ _ 2 amod _ _ 2 rubbish _ NOUN NN _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 By _ ADP IN _ 7 case _ _ 2 any _ DET DT _ 7 det _ _ 3 `` _ PUNCT `` _ 7 punct _ _ 4 reasonable _ ADJ JJ _ 7 amod _ _ 5 man _ NOUN NN _ 7 compound _ _ 6 '' _ PUNCT '' _ 7 punct _ _ 7 criterion _ NOUN NN _ 20 nmod _ _ 8 , _ PUNCT , _ 20 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Lantos _ PROPN NNP _ 20 nsubj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 colleagues _ NOUN NNS _ 10 conj _ _ 14 have _ AUX VBP _ 20 aux _ _ 15 a _ DET DT _ 17 det _ _ 16 whole _ ADJ JJ _ 17 amod _ _ 17 bunch _ NOUN NN _ 20 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 people _ NOUN NNS _ 17 nmod _ _ 20 tried _ VERB VBN _ 0 root _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 convicted _ VERB VBN _ 20 conj _ _ 23 . _ PUNCT . _ 20 punct _ _ 1 Apparently _ ADV RB _ 5 advmod _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 their _ PRON PRP$ _ 4 nmod:poss _ _ 4 verdict _ NOUN NN _ 5 nsubj _ _ 5 is _ VERB VBZ _ 0 root _ _ 6 in _ ADV RB _ 5 advmod _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 Right _ ADV RB _ 2 advmod _ _ 2 now _ ADV RB _ 5 advmod _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 're _ AUX VBP _ 5 aux _ _ 5 pursuing _ VERB VBG _ 0 root _ _ 6 evidence _ NOUN NN _ 5 dobj _ _ 7 . _ PUNCT . _ 5 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 not _ ADV RB _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 bad _ ADJ JJ _ 6 amod _ _ 6 way _ NOUN NN _ 3 dep _ _ 7 to _ PART TO _ 8 mark _ _ 8 proceed _ VERB VB _ 6 acl _ _ 9 , _ PUNCT , _ 3 punct _ _ 10 just _ ADV RB _ 3 dep _ _ 11 somewhat _ ADV RB _ 12 advmod _ _ 12 different _ ADJ JJ _ 3 dep _ _ 13 from _ ADP IN _ 16 case _ _ 14 standard _ ADJ JJ _ 16 amod _ _ 15 American _ ADJ JJ _ 16 amod _ _ 16 practice _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 3 punct _ _ 1 How _ ADV WRB _ 5 advmod _ _ 2 was _ AUX VBD _ 5 auxpass _ _ 3 that _ DET DT _ 4 det _ _ 4 practice _ NOUN NN _ 5 nsubjpass _ _ 5 referred _ VERB VBN _ 0 root _ _ 6 to _ ADP TO _ 5 nmod _ _ 7 when _ ADV WRB _ 11 advmod _ _ 8 I _ PRON PRP _ 11 nsubj _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 in _ ADP IN _ 11 case _ _ 11 school _ NOUN NN _ 5 advcl _ _ 12 ? _ PUNCT . _ 5 punct _ _ 1 Ah _ INTJ UH _ 5 discourse _ _ 2 , _ PUNCT , _ 5 punct _ _ 3 yes _ INTJ UH _ 5 discourse _ _ 4 , _ PUNCT , _ 5 punct _ _ 5 something _ NOUN NN _ 0 root _ _ 6 called _ VERB VBN _ 5 acl _ _ 7 a _ DET DT _ 9 det _ _ 8 Star _ PROPN NNP _ 9 compound _ _ 9 Chamber _ PROPN NNP _ 6 xcomp _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Lantos _ PROPN NNP _ 6 nsubj _ _ 6 doth _ VERB VBZ _ 0 root _ _ 7 protest _ NOUN NN _ 6 dep _ _ 8 that _ SCONJ IN _ 12 mark _ _ 9 his _ PRON PRP$ _ 10 nmod:poss _ _ 10 subcommittee _ NOUN NN _ 12 nsubj _ _ 11 simply _ ADV RB _ 12 advmod _ _ 12 seeks _ VERB VBZ _ 7 ccomp _ _ 13 information _ NOUN NN _ 12 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 legislative _ ADJ JJ _ 16 amod _ _ 16 change _ NOUN NN _ 12 nmod _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 doubt _ NOUN NN _ 0 root _ _ 3 that _ PRON WDT _ 6 nsubj _ _ 4 's _ VERB VBZ _ 6 cop _ _ 5 partially _ ADV RB _ 6 advmod _ _ 6 true _ ADJ JJ _ 2 ccomp _ _ 7 . _ PUNCT . _ 2 punct _ _ 1 Everything _ NOUN NN _ 11 nsubj _ _ 2 that _ ADP IN _ 5 dobj _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 Lantos _ PROPN NNP _ 5 nsubj _ _ 5 says _ VERB VBZ _ 1 acl:relcl _ _ 6 in _ ADP IN _ 8 case _ _ 7 his _ PRON PRP$ _ 8 nmod:poss _ _ 8 letter _ NOUN NN _ 5 nmod _ _ 9 is _ VERB VBZ _ 11 cop _ _ 10 partially _ ADV RB _ 11 advmod _ _ 11 true _ ADJ JJ _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 right _ ADJ JJ _ 0 root _ _ 4 about _ ADP IN _ 8 case _ _ 5 his _ PRON PRP$ _ 6 nmod:poss _ _ 6 subcommittee _ NOUN NN _ 8 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 responsibilities _ NOUN NNS _ 3 nmod _ _ 9 when _ ADV WRB _ 11 advmod _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 comes _ VERB VBZ _ 8 acl:relcl _ _ 12 to _ ADP TO _ 13 mark _ _ 13 obtaining _ VERB VBG _ 11 advcl _ _ 14 information _ NOUN NN _ 13 dobj _ _ 15 from _ ADP IN _ 18 case _ _ 16 prior _ ADJ JJ _ 18 amod _ _ 17 HUD _ PROPN NNP _ 18 compound _ _ 18 officials _ NOUN NNS _ 13 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 if _ SCONJ IN _ 8 mark _ _ 3 his _ PRON PRP$ _ 4 nmod:poss _ _ 4 explanation _ NOUN NN _ 8 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 motivation _ NOUN NN _ 4 nmod _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 true _ ADJ JJ _ 15 advcl _ _ 9 , _ PUNCT , _ 15 punct _ _ 10 why _ ADV WRB _ 15 advmod _ _ 11 is _ AUX VBZ _ 15 auxpass _ _ 12 his _ PRON PRP$ _ 13 nmod:poss _ _ 13 investigation _ NOUN NN _ 15 nsubjpass _ _ 14 so _ ADV RB _ 15 advmod _ _ 15 oriented _ VERB VBN _ 0 root _ _ 16 as _ SCONJ IN _ 18 mark _ _ 17 to _ PART TO _ 18 mark _ _ 18 identify _ VERB VB _ 15 advcl _ _ 19 criminal _ ADJ JJ _ 20 amod _ _ 20 activity _ NOUN NN _ 18 dobj _ _ 21 ? _ PUNCT . _ 15 punct _ _ 1 Why _ ADV WRB _ 2 advmod _ _ 2 not _ ADV RB _ 4 dep _ _ 3 simply _ ADV RB _ 4 advmod _ _ 4 questions _ NOUN NNS _ 0 root _ _ 5 designed _ VERB VBN _ 4 acl _ _ 6 to _ PART TO _ 7 mark _ _ 7 identify _ VERB VB _ 5 xcomp _ _ 8 sources _ NOUN NNS _ 7 dobj _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 causes _ NOUN NNS _ 8 conj _ _ 11 of _ ADP IN _ 12 case _ _ 12 waste _ NOUN NN _ 8 nmod _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 inefficiency _ NOUN NN _ 12 conj _ _ 15 ? _ PUNCT . _ 4 punct _ _ 1 Such _ ADJ JJ _ 5 case _ _ 2 as _ ADP IN _ 1 mwe _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 what _ PRON WP _ 5 nsubj _ _ 5 happened _ VERB VBD _ 0 root _ _ 6 when _ ADV WRB _ 8 advmod _ _ 7 Congress _ PROPN NNP _ 8 nsubj _ _ 8 wanted _ VERB VBD _ 5 advcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 know _ VERB VB _ 8 xcomp _ _ 11 about _ ADV RB _ 15 advmod _ _ 12 $ _ SYM $ _ 15 amod _ _ 13 400 _ NUM CD _ 12 compound _ _ 14 toilet _ NOUN NN _ 15 compound _ _ 15 seats _ NOUN NNS _ 10 nmod _ _ 16 or _ CONJ CC _ 20 cc _ _ 17 whatever _ DET WDT _ 20 dobj _ _ 18 they _ PRON PRP _ 20 nsubj _ _ 19 supposedly _ ADV RB _ 20 advmod _ _ 20 cost _ VERB VBD _ 15 dep _ _ 21 ? _ PUNCT . _ 5 punct _ _ 1 No _ ADV RB _ 10 discourse _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 Lantos _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 complaints _ NOUN NNS _ 10 nsubj _ _ 7 simply _ ADV RB _ 10 advmod _ _ 8 wo _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 wash _ VERB VB _ 0 root _ _ 11 . _ PUNCT . _ 10 punct _ _ 1 4 _ X LS _ 6 dep _ _ 2 . _ PUNCT . _ 1 punct _ _ 3 That _ SCONJ IN _ 6 mark _ _ 4 the _ DET DT _ 5 det _ _ 5 Journal _ PROPN NNP _ 6 nsubj _ _ 6 defends _ VERB VBZ _ 0 root _ _ 7 `` _ PUNCT `` _ 6 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 sleaze _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 fraud _ NOUN NN _ 9 conj _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 waste _ NOUN NN _ 9 conj _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 embezzlement _ NOUN NN _ 9 conj _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 influence-peddling _ NOUN NN _ 9 conj _ _ 18 and _ CONJ CC _ 9 cc _ _ 19 abuse _ NOUN NN _ 9 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 public _ NOUN NN _ 9 nmod _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 took _ VERB VBD _ 9 acl:relcl _ _ 25 place _ NOUN NN _ 24 dobj _ _ 26 while _ SCONJ IN _ 30 mark _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Pierce _ PROPN NNP _ 30 nsubj _ _ 29 was _ VERB VBD _ 30 cop _ _ 30 secretary _ NOUN NN _ 24 advcl _ _ 31 of _ ADP IN _ 32 case _ _ 32 HUD _ PROPN NNP _ 30 nmod _ _ 33 , _ PUNCT , _ 6 punct _ _ 34 '' _ PUNCT '' _ 6 punct _ _ 35 etc. _ X FW _ 6 dep _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 so _ ADV RB _ 38 advmod _ _ 38 forth _ ADV RB _ 35 dep _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 No _ INTJ UH _ 12 discourse _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 to _ ADP TO _ 5 case _ _ 4 my _ PRON PRP$ _ 5 nmod:poss _ _ 5 mind _ NOUN NN _ 12 nmod _ _ 6 , _ PUNCT , _ 12 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Journal _ PROPN NNP _ 12 nsubj _ _ 9 did _ AUX VBD _ 12 aux _ _ 10 not _ PART RB _ 12 neg _ _ 11 `` _ PUNCT `` _ 12 punct _ _ 12 defend _ VERB VB _ 0 root _ _ 13 sleaze _ NOUN NN _ 12 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 fraud _ NOUN NN _ 13 conj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 waste _ NOUN NN _ 13 conj _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 embezzlement _ NOUN NN _ 13 conj _ _ 20 , _ PUNCT , _ 13 punct _ _ 21 influence-peddling _ NOUN NN _ 13 conj _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 abuse _ NOUN NN _ 13 conj _ _ 24 of _ ADP IN _ 27 case _ _ 25 the _ DET DT _ 27 det _ _ 26 public _ ADJ JJ _ 27 amod _ _ 27 trust _ NOUN NN _ 23 nmod _ _ 28 ... _ PUNCT : _ 12 punct _ _ 29 '' _ PUNCT '' _ 12 punct _ _ 1 it _ PRON PRP _ 2 nsubj _ _ 2 defended _ VERB VBD _ 0 root _ _ 3 appropriate _ ADJ JJ _ 5 amod _ _ 4 constitutional _ ADJ JJ _ 5 amod _ _ 5 safeguards _ NOUN NNS _ 2 dobj _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 practical _ ADJ JJ _ 9 amod _ _ 8 common _ ADJ JJ _ 9 amod _ _ 9 sense _ NOUN NN _ 5 conj _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 problem _ NOUN NN _ 20 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 9 dobj _ _ 5 the _ DET DT _ 6 det _ _ 6 Journal _ PROPN NNP _ 9 nsubj _ _ 7 so _ ADV RB _ 8 advmod _ _ 8 rightly _ ADV RB _ 9 advmod _ _ 9 pointed _ VERB VBN _ 2 acl:relcl _ _ 10 out _ ADP RP _ 9 compound:prt _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 number _ NOUN NN _ 9 nmod _ _ 14 of _ ADP IN _ 15 case _ _ 15 articles _ NOUN NNS _ 13 nmod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 is _ VERB VBZ _ 20 cop _ _ 18 not _ ADV RB _ 20 neg _ _ 19 the _ DET DT _ 20 det _ _ 20 likes _ NOUN NNS _ 0 root _ _ 21 of _ ADP IN _ 23 case _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Lantos _ PROPN NNP _ 20 nmod _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 who _ PRON WP _ 32 nsubj _ _ 26 after _ ADP IN _ 27 case _ _ 27 all _ DET DT _ 32 nmod _ _ 28 is _ VERB VBZ _ 32 cop _ _ 29 really _ ADV RB _ 32 advmod _ _ 30 a _ DET DT _ 32 det _ _ 31 bit _ ADJ JJ _ 32 amod _ _ 32 player _ NOUN NN _ 23 acl:relcl _ _ 33 on _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 stage _ NOUN NN _ 32 nmod _ _ 36 , _ PUNCT , _ 20 punct _ _ 37 but _ CONJ CC _ 20 cc _ _ 38 the _ DET DT _ 39 det _ _ 39 attempt _ NOUN NN _ 20 conj _ _ 40 by _ ADP IN _ 41 case _ _ 41 Congress _ PROPN NNP _ 39 nmod _ _ 42 to _ PART TO _ 43 mark _ _ 43 enhance _ VERB VB _ 39 acl _ _ 44 itself _ PRON PRP _ 43 dobj _ _ 45 into _ ADP IN _ 48 case _ _ 46 a _ DET DT _ 48 det _ _ 47 quasi-parliamentary/judicial _ ADJ JJ _ 48 amod _ _ 48 body _ NOUN NN _ 43 nmod _ _ 49 . _ PUNCT . _ 20 punct _ _ 1 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 2 Of _ ADP IN _ 3 case _ _ 3 course _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 we _ PRON PRP _ 8 nsubj _ _ 6 've _ AUX VBP _ 8 aux _ _ 7 also _ ADV RB _ 8 advmod _ _ 8 got _ VERB VBN _ 0 root _ _ 9 a _ DET DT _ 10 det _ _ 10 judiciary _ NOUN NN _ 8 dobj _ _ 11 that _ PRON WDT _ 12 nsubj _ _ 12 seeks _ VERB VBZ _ 10 acl:relcl _ _ 13 the _ DET DT _ 15 det _ _ 14 same _ ADJ JJ _ 15 amod _ _ 15 objective _ NOUN NN _ 12 dobj _ _ 16 . _ PUNCT . _ 8 punct _ _ 17 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 system _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 the _ DET DT _ 5 det _ _ 5 problem _ NOUN NN _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 not _ PART RB _ 5 dep _ _ 8 an _ DET DT _ 10 det _ _ 9 individual _ ADJ JJ _ 10 amod _ _ 10 member _ NOUN NN _ 7 dep _ _ 11 . _ PUNCT . _ 5 punct _ _ 1 Individuals _ NOUN NNS _ 4 nsubj _ _ 2 can _ AUX MD _ 4 aux _ _ 3 always _ ADV RB _ 4 advmod _ _ 4 have _ VERB VB _ 0 root _ _ 5 their _ PRON PRP$ _ 6 nmod:poss _ _ 6 hands _ NOUN NNS _ 7 nsubj _ _ 7 slapped _ VERB VBN _ 4 ccomp _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 's _ PART POS _ 0 root _ _ 3 when _ ADV WRB _ 8 advmod _ _ 4 such _ ADJ JJ _ 5 amod _ _ 5 slapping _ NOUN NN _ 8 nsubj _ _ 6 does _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 occur _ VERB VB _ 2 advcl _ _ 9 that _ ADP IN _ 12 advmod _ _ 10 we _ PRON PRP _ 12 nsubj _ _ 11 've _ AUX VBP _ 12 aux _ _ 12 got _ VERB VBN _ 2 dep _ _ 13 trouble _ NOUN NN _ 12 dobj _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 I _ PRON PRP _ 7 nsubj _ _ 2 do _ AUX VBP _ 7 aux _ _ 3 not _ PART RB _ 7 neg _ _ 4 by _ ADP IN _ 6 case _ _ 5 any _ DET DT _ 6 det _ _ 6 means _ NOUN NNS _ 7 nmod _ _ 7 defend _ VERB VB _ 0 root _ _ 8 HUD _ PROPN NNP _ 9 compound _ _ 9 management _ NOUN NN _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 kind _ NOUN NN _ 17 nsubj _ _ 6 of _ ADP IN _ 8 case _ _ 7 congressional _ ADJ JJ _ 8 amod _ _ 8 investigation _ NOUN NN _ 5 nmod _ _ 9 that _ PRON WDT _ 12 nsubjpass _ _ 10 has _ AUX VBZ _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 pursued _ VERB VBN _ 5 acl:relcl _ _ 13 is _ VERB VBZ _ 17 cop _ _ 14 a _ DET DT _ 17 det _ _ 15 far _ ADV RB _ 16 advmod _ _ 16 greater _ ADJ JJR _ 17 amod _ _ 17 danger _ NOUN NN _ 3 ccomp _ _ 18 to _ ADP TO _ 20 case _ _ 19 American _ ADJ JJ _ 20 amod _ _ 20 notions _ NOUN NNS _ 17 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 liberty _ NOUN NN _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 freedom _ NOUN NN _ 22 conj _ _ 25 than _ SCONJ IN _ 40 mark _ _ 26 any _ DET DT _ 27 det _ _ 27 incompetency _ NOUN NN _ 40 nsubj _ _ 28 -LRB- _ PUNCT -LRB- _ 34 punct _ _ 29 and _ CONJ CC _ 34 cc _ _ 30 , _ PUNCT , _ 34 punct _ _ 31 yes _ INTJ UH _ 34 discourse _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 maybe _ ADV RB _ 34 dep _ _ 34 criminality _ NOUN NN _ 27 appos _ _ 35 -RRB- _ PUNCT -RRB- _ 34 punct _ _ 36 within _ ADP IN _ 37 case _ _ 37 HUD _ PROPN NNP _ 27 nmod _ _ 38 could _ AUX MD _ 40 aux _ _ 39 possibly _ ADV RB _ 40 advmod _ _ 40 generate _ VERB VB _ 17 advcl _ _ 41 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 time _ NOUN NN _ 10 nsubj _ _ 4 I _ PRON PRP _ 5 nsubj _ _ 5 saw _ VERB VBD _ 3 acl:relcl _ _ 6 a _ DET DT _ 9 det _ _ 7 similar _ ADJ JJ _ 9 amod _ _ 8 congressional _ ADJ JJ _ 9 amod _ _ 9 hearing _ NOUN NN _ 5 dobj _ _ 10 was _ VERB VBD _ 0 root _ _ 11 when _ ADV WRB _ 18 advmod _ _ 12 `` _ PUNCT `` _ 17 punct _ _ 13 Tail _ PROPN NNP _ 17 compound _ _ 14 Gunner _ PROPN NNP _ 17 compound _ _ 15 Joe _ PROPN NNP _ 17 compound _ _ 16 '' _ PUNCT '' _ 17 punct _ _ 17 McCarthy _ PROPN NNP _ 18 nsubj _ _ 18 did _ VERB VBD _ 10 advcl _ _ 19 his _ PRON PRP$ _ 20 nmod:poss _ _ 20 work _ NOUN NN _ 18 dobj _ _ 21 . _ PUNCT . _ 10 punct _ _ 1 Raymond _ PROPN NNP _ 2 compound _ _ 2 Weber _ PROPN NNP _ 0 root _ _ 1 Parsippany _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 N.J _ PROPN NNP _ 1 appos _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 I _ PRON PRP _ 2 nsubj _ _ 2 disagree _ VERB VBP _ 0 root _ _ 3 with _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 statement _ NOUN NN _ 2 nmod _ _ 6 by _ ADP IN _ 8 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Lantos _ PROPN NNP _ 5 nmod _ _ 9 that _ SCONJ IN _ 13 mark _ _ 10 one _ PRON PRP _ 13 nsubj _ _ 11 should _ AUX MD _ 13 aux _ _ 12 not _ PART RB _ 13 neg _ _ 13 draw _ VERB VB _ 5 dep _ _ 14 an _ DET DT _ 16 det _ _ 15 adverse _ ADJ JJ _ 16 amod _ _ 16 inference _ NOUN NN _ 13 dobj _ _ 17 against _ ADP IN _ 20 case _ _ 18 former _ ADJ JJ _ 20 amod _ _ 19 HUD _ PROPN NNP _ 20 compound _ _ 20 officials _ NOUN NNS _ 13 nmod _ _ 21 who _ PRON WP _ 22 nsubj _ _ 22 assert _ VERB VBP _ 20 acl:relcl _ _ 23 their _ PRON PRP$ _ 26 nmod:poss _ _ 24 Fifth _ PROPN NNP _ 26 compound _ _ 25 Amendment _ PROPN NNP _ 26 compound _ _ 26 privilege _ NOUN NN _ 22 dobj _ _ 27 against _ ADP IN _ 28 case _ _ 28 self-incrimination _ NOUN NN _ 26 nmod _ _ 29 in _ ADP IN _ 31 case _ _ 30 congressional _ ADJ JJ _ 31 amod _ _ 31 hearings _ NOUN NNS _ 22 nmod _ _ 32 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Fifth _ PROPN NNP _ 3 compound _ _ 3 Amendment _ PROPN NNP _ 4 nsubj _ _ 4 states _ VERB VBZ _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 relevant _ ADJ JJ _ 7 amod _ _ 7 part _ NOUN NN _ 4 nmod _ _ 8 that _ SCONJ IN _ 14 mark _ _ 9 no _ DET DT _ 10 neg _ _ 10 person _ NOUN NN _ 14 nsubjpass _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 shall _ AUX MD _ 14 aux _ _ 13 be _ AUX VB _ 14 auxpass _ _ 14 compelled _ VERB VBN _ 4 ccomp _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 in _ ADP IN _ 19 case _ _ 17 any _ DET DT _ 19 det _ _ 18 criminal _ ADJ JJ _ 19 amod _ _ 19 case _ NOUN NN _ 14 nmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 to _ PART TO _ 24 mark _ _ 22 be _ VERB VB _ 24 cop _ _ 23 a _ DET DT _ 24 det _ _ 24 witness _ NOUN NN _ 14 xcomp _ _ 25 against _ ADP IN _ 26 case _ _ 26 himself _ PRON PRP _ 24 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 28 '' _ PUNCT '' _ 4 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 privilege _ NOUN NN _ 5 nsubj _ _ 3 against _ ADP IN _ 4 case _ _ 4 self-incrimination _ NOUN NN _ 2 nmod _ _ 5 precludes _ VERB VBZ _ 0 root _ _ 6 the _ DET DT _ 7 det _ _ 7 drawing _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 an _ DET DT _ 11 det _ _ 10 adverse _ ADJ JJ _ 11 amod _ _ 11 inference _ NOUN NN _ 7 nmod _ _ 12 against _ ADP IN _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 criminal _ ADJ JJ _ 15 amod _ _ 15 defendant _ NOUN NN _ 7 nmod _ _ 16 who _ PRON WP _ 17 nsubj _ _ 17 chooses _ VERB VBZ _ 15 acl:relcl _ _ 18 not _ PART RB _ 17 neg _ _ 19 to _ PART TO _ 20 mark _ _ 20 testify _ VERB VB _ 17 xcomp _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 Thus _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 in _ ADP IN _ 6 case _ _ 4 a _ DET DT _ 6 det _ _ 5 criminal _ ADJ JJ _ 6 amod _ _ 6 case _ NOUN NN _ 12 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 prosecutor _ NOUN NN _ 12 nsubj _ _ 10 can _ AUX MD _ 12 aux _ _ 11 not _ PART RB _ 12 neg _ _ 12 comment _ VERB VB _ 0 root _ _ 13 on _ ADP IN _ 17 case _ _ 14 a _ DET DT _ 15 det _ _ 15 defendant _ NOUN NN _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 failure _ NOUN NN _ 12 nmod _ _ 18 to _ PART TO _ 19 mark _ _ 19 testify _ VERB VB _ 17 acl _ _ 20 nor _ CONJ CC _ 12 cc _ _ 21 can _ AUX MD _ 25 aux _ _ 22 the _ DET DT _ 23 det _ _ 23 defendant _ NOUN NN _ 25 nsubjpass _ _ 24 be _ AUX VB _ 25 auxpass _ _ 25 compelled _ VERB VBN _ 12 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 take _ VERB VB _ 25 xcomp _ _ 28 the _ DET DT _ 29 det _ _ 29 stand _ NOUN NN _ 27 dobj _ _ 30 as _ ADP IN _ 32 case _ _ 31 a _ DET DT _ 32 det _ _ 32 witness _ NOUN NN _ 27 nmod _ _ 33 , _ PUNCT , _ 25 punct _ _ 34 thus _ ADV RB _ 35 advmod _ _ 35 forcing _ VERB VBG _ 25 xcomp _ _ 36 him _ PRON PRP _ 35 dobj _ _ 37 to _ PART TO _ 39 mark _ _ 38 `` _ PUNCT `` _ 39 punct _ _ 39 take _ VERB VB _ 35 xcomp _ _ 40 the _ DET DT _ 41 det _ _ 41 Fifth _ PROPN NNP _ 39 dobj _ _ 42 . _ PUNCT . _ 12 punct _ _ 43 '' _ PUNCT '' _ 12 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 privilege _ NOUN NN _ 8 nsubjpass _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 however _ ADV RB _ 8 advmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 limited _ VERB VBN _ 0 root _ _ 9 in _ ADP IN _ 10 case _ _ 10 accordance _ NOUN NN _ 8 nmod _ _ 11 with _ ADP IN _ 14 case _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 plain _ ADJ JJ _ 14 amod _ _ 14 language _ NOUN NN _ 10 nmod _ _ 15 to _ PART TO _ 16 mark _ _ 16 protect _ VERB VB _ 8 xcomp _ _ 17 the _ DET DT _ 18 det _ _ 18 defendant _ NOUN NN _ 16 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 criminal _ ADJ JJ _ 21 amod _ _ 21 matters _ NOUN NNS _ 16 nmod _ _ 22 only _ ADV RB _ 21 advmod _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 Supreme _ PROPN NNP _ 3 compound _ _ 3 Court _ PROPN NNP _ 9 nsubj _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 some _ DET DT _ 6 det _ _ 6 states _ NOUN NNS _ 3 conj _ _ 7 have _ AUX VBP _ 9 aux _ _ 8 specifically _ ADV RB _ 9 advmod _ _ 9 recognized _ VERB VBN _ 0 root _ _ 10 that _ SCONJ IN _ 17 mark _ _ 11 `` _ PUNCT `` _ 17 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 Fifth _ PROPN NNP _ 14 compound _ _ 14 Amendment _ PROPN NNP _ 17 nsubj _ _ 15 does _ AUX VBZ _ 17 aux _ _ 16 not _ PART RB _ 17 neg _ _ 17 preclude _ VERB VB _ 9 ccomp _ _ 18 the _ DET DT _ 19 det _ _ 19 inference _ NOUN NN _ 17 dobj _ _ 20 where _ ADV WRB _ 24 advmod _ _ 21 the _ DET DT _ 22 det _ _ 22 privilege _ NOUN NN _ 24 nsubjpass _ _ 23 is _ AUX VBZ _ 24 auxpass _ _ 24 claimed _ VERB VBN _ 17 advcl _ _ 25 by _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 party _ NOUN NN _ 24 nmod _ _ 28 to _ ADP TO _ 31 case _ _ 29 a _ DET DT _ 31 det _ _ 30 civil _ ADJ JJ _ 31 amod _ _ 31 cause _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 9 punct _ _ 33 '' _ PUNCT '' _ 9 punct _ _ 1 Baxter _ PROPN NNP _ 0 root _ _ 2 v. _ ADP IN _ 3 case _ _ 3 Palmingiano _ PROPN NNP _ 1 nmod _ _ 4 , _ PUNCT , _ 1 punct _ _ 5 425 _ NUM CD _ 6 nummod _ _ 6 U.S. _ PROPN NNP _ 1 appos _ _ 7 308 _ NUM CD _ 6 nummod _ _ 8 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 9 1976 _ NUM CD _ 1 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 . _ PUNCT . _ 1 punct _ _ 1 Thus _ ADV RB _ 12 advmod _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 in _ ADP IN _ 6 case _ _ 4 a _ DET DT _ 6 det _ _ 5 civil _ ADJ JJ _ 6 amod _ _ 6 case _ NOUN NN _ 12 nmod _ _ 7 , _ PUNCT , _ 12 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 defendant _ NOUN NN _ 12 nsubjpass _ _ 10 may _ AUX MD _ 12 aux _ _ 11 be _ AUX VB _ 12 auxpass _ _ 12 called _ VERB VBN _ 0 root _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 witness _ NOUN NN _ 12 nmod _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 he _ PRON PRP _ 20 nsubjpass _ _ 18 may _ AUX MD _ 20 aux _ _ 19 be _ AUX VB _ 20 auxpass _ _ 20 forced _ VERB VBN _ 12 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 testify _ VERB VB _ 20 xcomp _ _ 23 or _ CONJ CC _ 22 cc _ _ 24 take _ VERB VB _ 22 conj _ _ 25 the _ DET DT _ 26 det _ _ 26 Fifth _ PROPN NNP _ 24 dobj _ _ 27 , _ PUNCT , _ 12 punct _ _ 28 and _ CONJ CC _ 12 cc _ _ 29 his _ PRON PRP$ _ 30 nmod:poss _ _ 30 taking _ NOUN NN _ 35 nsubj _ _ 31 of _ ADP IN _ 33 case _ _ 32 the _ DET DT _ 33 det _ _ 33 Fifth _ PROPN NNP _ 30 nmod _ _ 34 may _ AUX MD _ 35 aux _ _ 35 permit _ VERB VB _ 12 conj _ _ 36 the _ DET DT _ 37 det _ _ 37 drawing _ NOUN NN _ 35 dobj _ _ 38 of _ ADP IN _ 41 case _ _ 39 an _ DET DT _ 41 det _ _ 40 adverse _ ADJ JJ _ 41 amod _ _ 41 inference _ NOUN NN _ 37 nmod _ _ 42 against _ ADP IN _ 43 case _ _ 43 him _ PRON PRP _ 41 nmod _ _ 44 in _ ADP IN _ 47 case _ _ 45 the _ DET DT _ 47 det _ _ 46 civil _ ADJ JJ _ 47 amod _ _ 47 matter _ NOUN NN _ 37 nmod _ _ 48 . _ PUNCT . _ 12 punct _ _ 1 He _ PRON PRP _ 3 nsubj _ _ 2 may _ AUX MD _ 3 aux _ _ 3 take _ VERB VB _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 Fifth _ PROPN NNP _ 3 dobj _ _ 6 in _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 civil _ ADJ JJ _ 9 amod _ _ 9 matter _ NOUN NN _ 3 nmod _ _ 10 only _ ADV RB _ 13 advmod _ _ 11 if _ SCONJ IN _ 13 mark _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 has _ VERB VBZ _ 3 advcl _ _ 14 a _ DET DT _ 16 det _ _ 15 good _ ADJ JJ _ 16 amod _ _ 16 faith _ NOUN NN _ 13 dobj _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 justifiable _ ADJ JJ _ 19 amod _ _ 19 belief _ NOUN NN _ 16 conj _ _ 20 that _ SCONJ IN _ 24 mark _ _ 21 his _ PRON PRP$ _ 22 nmod:poss _ _ 22 testimony _ NOUN NN _ 24 nsubj _ _ 23 may _ AUX MD _ 24 aux _ _ 24 subject _ VERB VB _ 16 dep _ _ 25 him _ PRON PRP _ 24 dobj _ _ 26 to _ ADP TO _ 28 case _ _ 27 criminal _ ADJ JJ _ 28 amod _ _ 28 prosecution _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 1 Allowing _ VERB VBG _ 14 csubj _ _ 2 the _ DET DT _ 3 det _ _ 3 defendant _ NOUN NN _ 1 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 take _ VERB VB _ 1 xcomp _ _ 6 the _ DET DT _ 7 det _ _ 7 Fifth _ PROPN NNP _ 5 dobj _ _ 8 in _ ADP IN _ 11 case _ _ 9 a _ DET DT _ 11 det _ _ 10 civil _ ADJ JJ _ 11 amod _ _ 11 matter _ NOUN NN _ 1 nmod _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 not _ PART RB _ 14 neg _ _ 14 based _ VERB VBN _ 0 root _ _ 15 on _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 constitutional _ ADJ JJ _ 18 amod _ _ 18 right _ NOUN NN _ 14 nmod _ _ 19 to _ PART TO _ 20 mark _ _ 20 refuse _ VERB VB _ 18 acl _ _ 21 to _ PART TO _ 22 mark _ _ 22 testify _ VERB VB _ 20 xcomp _ _ 23 where _ ADV WRB _ 27 advmod _ _ 24 one _ PRON PRP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 testimony _ NOUN NN _ 27 nsubj _ _ 27 harms _ VERB VBZ _ 20 advcl _ _ 28 him _ PRON PRP _ 27 dobj _ _ 29 in _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 civil _ ADJ JJ _ 32 amod _ _ 32 matter _ NOUN NN _ 27 nmod _ _ 33 , _ PUNCT , _ 14 punct _ _ 34 but _ CONJ CC _ 14 cc _ _ 35 because _ SCONJ IN _ 45 mark _ _ 36 the _ DET DT _ 37 det _ _ 37 testimony _ NOUN NN _ 45 nsubjpass _ _ 38 in _ ADP IN _ 41 case _ _ 39 the _ DET DT _ 41 det _ _ 40 civil _ ADJ JJ _ 41 amod _ _ 41 matter _ NOUN NN _ 37 nmod _ _ 42 could _ AUX MD _ 45 aux _ _ 43 be _ AUX VB _ 45 auxpass _ _ 44 unconstitutionally _ ADV RB _ 45 advmod _ _ 45 used _ VERB VBN _ 14 conj _ _ 46 against _ ADP IN _ 47 case _ _ 47 him _ PRON PRP _ 45 nmod _ _ 48 in _ ADP IN _ 52 case _ _ 49 a _ DET DT _ 52 det _ _ 50 subsequent _ ADJ JJ _ 52 amod _ _ 51 criminal _ ADJ JJ _ 52 amod _ _ 52 prosecution _ NOUN NN _ 45 nmod _ _ 53 . _ PUNCT . _ 14 punct _ _ 1 Absent _ ADJ JJ _ 11 ccomp _ _ 2 the _ DET DT _ 3 det _ _ 3 risk _ NOUN NN _ 1 dep _ _ 4 of _ ADP IN _ 6 case _ _ 5 such _ ADJ JJ _ 6 amod _ _ 6 prosecution _ NOUN NN _ 3 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 a _ DET DT _ 9 det _ _ 9 court _ NOUN NN _ 11 nsubj _ _ 10 may _ AUX MD _ 11 aux _ _ 11 order _ VERB VB _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 defendant _ NOUN NN _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 testify _ VERB VB _ 11 xcomp _ _ 16 . _ PUNCT . _ 11 punct _ _ 1 Thus _ ADV RB _ 26 advmod _ _ 2 , _ PUNCT , _ 26 punct _ _ 3 when _ ADV WRB _ 6 advmod _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 Pierce _ PROPN NNP _ 6 nsubj _ _ 6 asserted _ VERB VBD _ 26 advcl _ _ 7 the _ DET DT _ 8 det _ _ 8 Fifth _ PROPN NNP _ 6 dobj _ _ 9 in _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 noncriminal _ ADJ JJ _ 12 amod _ _ 12 proceeding _ NOUN NN _ 6 nmod _ _ 13 , _ PUNCT , _ 6 punct _ _ 14 particularly _ ADV RB _ 17 advmod _ _ 15 after _ SCONJ IN _ 17 mark _ _ 16 presumably _ ADV RB _ 17 advmod _ _ 17 receiving _ VERB VBG _ 6 advcl _ _ 18 extensive _ ADJ JJ _ 19 amod _ _ 19 advice _ NOUN NN _ 17 dobj _ _ 20 from _ ADP IN _ 22 case _ _ 21 legal _ ADJ JJ _ 22 amod _ _ 22 counsel _ NOUN NN _ 19 nmod _ _ 23 , _ PUNCT , _ 26 punct _ _ 24 one _ PRON PRP _ 26 nsubj _ _ 25 must _ AUX MD _ 26 aux _ _ 26 conclude _ VERB VB _ 0 root _ _ 27 that _ SCONJ IN _ 29 mark _ _ 28 he _ PRON PRP _ 29 nsubj _ _ 29 held _ VERB VBD _ 26 ccomp _ _ 30 a _ DET DT _ 34 det _ _ 31 good-faith _ NOUN NN _ 34 compound _ _ 32 , _ PUNCT , _ 34 punct _ _ 33 justifiable _ ADJ JJ _ 34 amod _ _ 34 belief _ NOUN NN _ 29 dobj _ _ 35 that _ SCONJ IN _ 40 mark _ _ 36 his _ PRON PRP$ _ 37 nmod:poss _ _ 37 testimony _ NOUN NN _ 40 nsubjpass _ _ 38 could _ AUX MD _ 40 aux _ _ 39 be _ AUX VB _ 40 auxpass _ _ 40 used _ VERB VBN _ 34 ccomp _ _ 41 against _ ADP IN _ 42 case _ _ 42 him _ PRON PRP _ 40 nmod _ _ 43 in _ ADP IN _ 47 case _ _ 44 a _ DET DT _ 47 det _ _ 45 subsequent _ ADJ JJ _ 47 amod _ _ 46 criminal _ ADJ JJ _ 47 amod _ _ 47 prosecution _ NOUN NN _ 40 nmod _ _ 48 . _ PUNCT . _ 26 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 subcommittee _ NOUN NN _ 9 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Congress _ PROPN NNP _ 2 conj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 the _ DET DT _ 8 det _ _ 7 American _ ADJ JJ _ 8 amod _ _ 8 public _ NOUN NN _ 2 conj _ _ 9 have _ VERB VBP _ 0 root _ _ 10 every _ DET DT _ 11 det _ _ 11 right _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 draw _ VERB VB _ 11 dep _ _ 14 the _ DET DT _ 16 det _ _ 15 adverse _ ADJ JJ _ 16 amod _ _ 16 inference _ NOUN NN _ 13 dobj _ _ 17 and _ CONJ CC _ 13 cc _ _ 18 to _ PART TO _ 19 mark _ _ 19 concur _ VERB VB _ 13 conj _ _ 20 with _ ADP IN _ 25 case _ _ 21 Mr. _ PROPN NNP _ 22 compound _ _ 22 Pierce _ PROPN NNP _ 25 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 own _ ADJ JJ _ 25 amod _ _ 25 belief _ NOUN NN _ 19 nmod _ _ 26 that _ SCONJ IN _ 30 mark _ _ 27 his _ PRON PRP$ _ 28 nmod:poss _ _ 28 testimony _ NOUN NN _ 30 nsubj _ _ 29 could _ AUX MD _ 30 aux _ _ 30 help _ VERB VB _ 25 ccomp _ _ 31 convict _ VERB VB _ 30 ccomp _ _ 32 him _ PRON PRP _ 31 dobj _ _ 33 of _ ADP IN _ 35 case _ _ 34 a _ DET DT _ 35 det _ _ 35 crime _ NOUN NN _ 31 nmod _ _ 36 . _ PUNCT . _ 9 punct _ _ 1 Drawing _ VERB VBG _ 12 csubj _ _ 2 the _ DET DT _ 4 det _ _ 3 adverse _ ADJ JJ _ 4 amod _ _ 4 inference _ NOUN NN _ 1 dobj _ _ 5 in _ ADP IN _ 9 case _ _ 6 a _ DET DT _ 9 det _ _ 7 noncriminal _ ADJ JJ _ 9 amod _ _ 8 congressional _ ADJ JJ _ 9 amod _ _ 9 hearing _ NOUN NN _ 1 nmod _ _ 10 does _ AUX VBZ _ 12 aux _ _ 11 not _ PART RB _ 12 neg _ _ 12 offend _ VERB VB _ 0 root _ _ 13 the _ DET DT _ 16 det _ _ 14 Fifth _ PROPN NNP _ 16 compound _ _ 15 Amendment _ PROPN NNP _ 16 compound _ _ 16 shield _ NOUN NN _ 12 dobj _ _ 17 against _ ADP IN _ 18 case _ _ 18 self-incrimination _ NOUN NN _ 16 nmod _ _ 19 . _ PUNCT . _ 12 punct _ _ 1 Clark _ PROPN NNP _ 4 compound _ _ 2 S. _ PROPN NNP _ 4 compound _ _ 3 Spalsbury _ PROPN NNP _ 4 compound _ _ 4 Jr _ PROPN NNP _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 Estes _ PROPN NNP _ 2 compound _ _ 2 Park _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Colo _ PROPN NNP _ 2 appos _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 Friday _ PROPN NNP _ 5 compound _ _ 4 the _ DET DT _ 5 det _ _ 5 13th _ PROPN NNP _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 stock _ NOUN NN _ 10 compound _ _ 10 market _ NOUN NN _ 11 nsubj _ _ 11 plummeted _ VERB VBD _ 5 conj _ _ 12 nearly _ ADV RB _ 13 advmod _ _ 13 200 _ NUM CD _ 14 nummod _ _ 14 points _ NOUN NNS _ 11 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Just _ ADV RB _ 3 advmod _ _ 2 a _ DET DT _ 3 det _ _ 3 coincidence _ NOUN NN _ 0 root _ _ 4 ? _ PUNCT . _ 3 punct _ _ 1 Or _ CONJ CC _ 11 cc _ _ 2 is _ VERB VBZ _ 11 aux _ _ 3 triskaidekaphobia _ NOUN NN _ 11 nsubj _ _ 4 -- _ PUNCT : _ 5 punct _ _ 5 fear _ NOUN NN _ 3 dep _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 number _ NOUN NN _ 5 nmod _ _ 9 13 _ NUM CD _ 8 dep _ _ 10 -- _ PUNCT : _ 5 punct _ _ 11 justified _ VERB VBN _ 0 root _ _ 12 ? _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 academia _ NOUN NN _ 12 nmod _ _ 3 , _ PUNCT , _ 12 punct _ _ 4 a _ DET DT _ 9 det _ _ 5 so-called _ ADJ JJ _ 9 amod _ _ 6 Friday _ PROPN NNP _ 9 dep _ _ 7 the _ DET DT _ 6 det _ _ 8 13th _ PROPN NNP _ 6 dep _ _ 9 effect _ NOUN NN _ 12 nsubjpass _ _ 10 has _ AUX VBZ _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 set _ VERB VBN _ 0 root _ _ 13 up _ ADP RP _ 12 compound:prt _ _ 14 and _ CONJ CC _ 12 cc _ _ 15 shot _ VERB VBD _ 12 conj _ _ 16 down _ ADP RP _ 15 compound:prt _ _ 17 by _ ADP IN _ 19 case _ _ 18 different _ ADJ JJ _ 19 amod _ _ 19 professors _ NOUN NNS _ 12 nmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 Robert _ PROPN NNP _ 2 compound _ _ 2 Kolb _ PROPN NNP _ 16 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 Ricardo _ PROPN NNP _ 5 compound _ _ 5 Rodriguez _ PROPN NNP _ 2 conj _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 professors _ NOUN NNS _ 2 appos _ _ 8 of _ ADP IN _ 9 case _ _ 9 finance _ NOUN NN _ 7 nmod _ _ 10 at _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 University _ PROPN NNP _ 7 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 Miami _ PROPN NNP _ 12 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 found _ VERB VBD _ 0 root _ _ 17 evidence _ NOUN NN _ 16 dobj _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 the _ DET DT _ 20 det _ _ 20 market _ NOUN NN _ 22 nsubjpass _ _ 21 is _ AUX VBZ _ 22 auxpass _ _ 22 spooked _ VERB VBN _ 17 ccomp _ _ 23 by _ ADP IN _ 26 case _ _ 24 Friday _ PROPN NNP _ 26 compound _ _ 25 the _ DET DT _ 26 det _ _ 26 13th _ PROPN NNP _ 22 nmod _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 But _ CONJ CC _ 14 cc _ _ 2 their _ PRON PRP$ _ 3 nmod:poss _ _ 3 study _ NOUN NN _ 14 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 6 nsubj _ _ 6 spanned _ VERB VBD _ 3 acl:relcl _ _ 7 the _ DET DT _ 9 det _ _ 8 1962-85 _ NUM CD _ 9 nummod _ _ 9 period _ NOUN NN _ 6 dobj _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 has _ AUX VBZ _ 14 aux _ _ 12 since _ ADV RB _ 14 advmod _ _ 13 been _ AUX VBN _ 14 auxpass _ _ 14 shown _ VERB VBN _ 0 root _ _ 15 to _ PART TO _ 17 mark _ _ 16 be _ AUX VB _ 17 auxpass _ _ 17 jinxed _ VERB VBN _ 14 xcomp _ _ 18 by _ ADP IN _ 21 case _ _ 19 an _ DET DT _ 21 det _ _ 20 unlucky _ ADJ JJ _ 21 amod _ _ 21 choice _ NOUN NN _ 17 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 data _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 14 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 '70s _ NOUN NNS _ 7 nmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 7 nsubj _ _ 7 took _ VERB VBD _ 0 root _ _ 8 falls _ NOUN NNS _ 7 dobj _ _ 9 nine _ NUM CD _ 10 nummod _ _ 10 times _ NOUN NNS _ 7 nmod:tmod _ _ 11 in _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 row _ NOUN NN _ 10 nmod _ _ 14 on _ ADP IN _ 17 case _ _ 15 Friday _ PROPN NNP _ 17 compound _ _ 16 the _ DET DT _ 17 det _ _ 17 you-know-what _ NOUN NN _ 7 nmod _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 date _ NOUN NN _ 4 nsubj _ _ 4 tends _ VERB VBZ _ 0 root _ _ 5 to _ PART TO _ 8 mark _ _ 6 be _ VERB VB _ 8 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 plus _ NOUN NN _ 4 xcomp _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 not _ ADV RB _ 12 neg _ _ 11 a _ DET DT _ 12 det _ _ 12 minus _ NOUN NN _ 8 appos _ _ 13 , _ PUNCT , _ 8 punct _ _ 14 for _ ADP IN _ 15 case _ _ 15 stocks _ NOUN NNS _ 8 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 according _ VERB VBG _ 20 case _ _ 18 to _ ADP TO _ 17 mwe _ _ 19 Yale _ PROPN NNP _ 20 compound _ _ 20 Hirsch _ PROPN NNP _ 4 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 23 det _ _ 23 collector _ NOUN NN _ 20 appos _ _ 24 of _ ADP IN _ 27 case _ _ 25 stock _ NOUN NN _ 27 compound _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 lore _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Another _ DET DT _ 2 det _ _ 2 study _ NOUN NN _ 3 nsubj _ _ 3 found _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 14 mark _ _ 5 the _ DET DT _ 6 det _ _ 6 82 _ NUM CD _ 14 nsubj _ _ 7 Fridays _ PROPN NNP _ 6 dep _ _ 8 the _ DET DT _ 7 det _ _ 9 13th _ ADJ JJ _ 7 amod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 1940-1987 _ NUM CD _ 13 nummod _ _ 13 period _ NOUN NN _ 6 nmod _ _ 14 had _ VERB VBD _ 3 ccomp _ _ 15 higher _ ADJ JJR _ 17 dep _ _ 16 than _ ADP IN _ 17 dep _ _ 17 average _ ADJ JJ _ 18 amod _ _ 18 returns _ NOUN NNS _ 14 dobj _ _ 19 -- _ PUNCT : _ 18 punct _ _ 20 higher _ ADJ JJR _ 21 dep _ _ 21 even _ ADV RB _ 18 amod _ _ 22 than _ ADP IN _ 23 case _ _ 23 Fridays _ PROPN NNPS _ 21 nmod _ _ 24 in _ ADP IN _ 25 case _ _ 25 general _ ADJ JJ _ 23 acl _ _ 26 , _ PUNCT , _ 23 punct _ _ 27 which _ PRON WDT _ 28 nsubj _ _ 28 tend _ VERB VBP _ 23 acl:relcl _ _ 29 to _ PART TO _ 32 mark _ _ 30 be _ VERB VB _ 32 cop _ _ 31 strong _ ADJ JJ _ 32 amod _ _ 32 days _ NOUN NNS _ 28 xcomp _ _ 33 for _ ADP IN _ 35 case _ _ 34 stock _ NOUN NN _ 35 compound _ _ 35 prices _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 On _ ADP IN _ 7 case _ _ 2 the _ DET DT _ 7 det _ _ 3 only _ ADJ JJ _ 7 amod _ _ 4 other _ ADJ JJ _ 7 amod _ _ 5 Friday _ PROPN NNP _ 7 compound _ _ 6 the _ DET DT _ 7 det _ _ 7 13th _ PROPN NNP _ 16 nmod _ _ 8 this _ DET DT _ 9 det _ _ 9 year _ NOUN NN _ 7 nmod:tmod _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 the _ DET DT _ 15 det _ _ 12 Dow _ PROPN NNP _ 15 compound _ _ 13 Jones _ PROPN NNP _ 15 compound _ _ 14 Industrial _ PROPN NNP _ 15 compound _ _ 15 Average _ PROPN NNP _ 16 nsubj _ _ 16 rose _ VERB VBD _ 0 root _ _ 17 about _ ADV RB _ 18 advmod _ _ 18 four _ NUM CD _ 19 nummod _ _ 19 points _ NOUN NNS _ 16 dobj _ _ 20 . _ PUNCT . _ 16 punct _ _ 1 Professor _ PROPN NNP _ 2 compound _ _ 2 Kolb _ PROPN NNP _ 3 nsubj _ _ 3 says _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 original _ ADJ JJ _ 6 amod _ _ 6 study _ NOUN NN _ 17 nsubjpass _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 titled _ VERB VBN _ 6 acl _ _ 9 Friday _ PROPN NNP _ 11 compound _ _ 10 the _ DET DT _ 11 det _ _ 11 13th _ PROPN NNP _ 8 xcomp _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 Part _ PROPN NNP _ 14 compound _ _ 14 VII _ PROPN NNP _ 11 appos _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 published _ VERB VBN _ 3 ccomp _ _ 18 tongue-in-cheek _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 a _ DET DT _ 4 det _ _ 3 similar _ ADJ JJ _ 4 amod _ _ 4 vein _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 he _ PRON PRP _ 7 nsubj _ _ 7 adds _ VERB VBZ _ 0 root _ _ 8 that _ SCONJ IN _ 22 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 anniversary _ NOUN NN _ 22 nsubj _ _ 11 of _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 1987 _ NUM CD _ 14 nummod _ _ 14 crash _ NOUN NN _ 10 nmod _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 Saturday _ PROPN NNP _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 full _ ADJ JJ _ 19 amod _ _ 19 moon _ NOUN NN _ 10 conj _ _ 20 could _ AUX MD _ 22 aux _ _ 21 have _ AUX VB _ 22 aux _ _ 22 played _ VERB VBN _ 7 ccomp _ _ 23 a _ DET DT _ 24 det _ _ 24 part _ NOUN NN _ 22 dobj _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 too _ ADV RB _ 22 advmod _ _ 27 , _ PUNCT , _ 22 punct _ _ 28 in _ ADP IN _ 32 case _ _ 29 Friday _ PROPN NNP _ 32 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 market _ NOUN NN _ 32 compound _ _ 32 activity _ NOUN NN _ 22 nmod _ _ 33 . _ PUNCT . _ 7 punct _ _ 1 reminiscent _ ADJ JJ _ 0 root _ _ 2 of _ ADP IN _ 3 case _ _ 3 those _ PRON DT _ 1 nmod _ _ 4 during _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 crash _ NOUN NN _ 3 nmod _ _ 8 -- _ PUNCT : _ 1 punct _ _ 9 that _ SCONJ IN _ 28 mark _ _ 10 as _ SCONJ IN _ 13 mark _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 prices _ NOUN NNS _ 13 nsubj _ _ 13 plummeted _ VERB VBD _ 28 advcl _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 trading _ NOUN NN _ 16 compound _ _ 16 activity _ NOUN NN _ 17 nsubj _ _ 17 escalated _ VERB VBD _ 13 conj _ _ 18 , _ PUNCT , _ 28 punct _ _ 19 some _ DET DT _ 21 det _ _ 20 phone _ NOUN NN _ 21 compound _ _ 21 calls _ NOUN NNS _ 28 nsubj _ _ 22 to _ ADP TO _ 24 case _ _ 23 market _ NOUN NN _ 24 compound _ _ 24 makers _ NOUN NNS _ 21 nmod _ _ 25 in _ ADP IN _ 27 case _ _ 26 over-the-counter _ ADJ JJ _ 27 amod _ _ 27 stocks _ NOUN NNS _ 24 nmod _ _ 28 went _ VERB VBD _ 1 parataxis _ _ 29 unanswered _ ADJ JJ _ 28 xcomp _ _ 30 . _ PUNCT . _ 1 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 could _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 get _ VERB VB _ 13 ccomp _ _ 6 dealers _ NOUN NNS _ 5 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 answer _ VERB VB _ 5 xcomp _ _ 9 their _ PRON PRP$ _ 10 nmod:poss _ _ 10 phones _ NOUN NNS _ 8 dobj _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Robert _ PROPN NNP _ 15 compound _ _ 15 King _ PROPN NNP _ 13 nsubj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 senior _ ADJ JJ _ 19 amod _ _ 18 vice _ NOUN NN _ 19 compound _ _ 19 president _ NOUN NN _ 15 appos _ _ 20 of _ ADP IN _ 22 case _ _ 21 OTC _ PROPN NNP _ 22 compound _ _ 22 trading _ NOUN NN _ 19 nmod _ _ 23 at _ ADP IN _ 25 case _ _ 24 Robinson-Humphrey _ PROPN NNP _ 25 compound _ _ 25 Co. _ PROPN NNP _ 19 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 Atlanta _ PROPN NNP _ 25 nmod _ _ 28 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 It _ PRON PRP _ 8 nsubj _ _ 3 was _ VERB VBD _ 8 cop _ _ 4 -LCB- _ PUNCT -LRB- _ 5 punct _ _ 5 like _ ADP IN _ 8 dep _ _ 6 -RCB- _ PUNCT -RRB- _ 5 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Friday _ PROPN NNP _ 0 root _ _ 9 before _ ADP IN _ 11 case _ _ 10 Black _ PROPN NNP _ 11 compound _ _ 11 Monday _ PROPN NNP _ 8 nmod _ _ 12 '' _ PUNCT '' _ 8 punct _ _ 13 two _ NUM CD _ 14 nummod _ _ 14 years _ NOUN NNS _ 15 nmod:npmod _ _ 15 ago _ ADV RB _ 8 advmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Whether _ SCONJ IN _ 5 mark _ _ 2 unanswered _ ADJ JJ _ 4 amod _ _ 3 phone _ NOUN NN _ 4 compound _ _ 4 calls _ NOUN NNS _ 5 nsubj _ _ 5 had _ VERB VBD _ 13 advcl _ _ 6 any _ DET DT _ 7 det _ _ 7 effect _ NOUN NN _ 5 dobj _ _ 8 or _ CONJ CC _ 5 cc _ _ 9 not _ ADV RB _ 5 conj _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 Nasdaq _ PROPN NNP _ 12 compound _ _ 12 stocks _ NOUN NNS _ 13 nsubj _ _ 13 sank _ VERB VBD _ 0 root _ _ 14 far _ ADV RB _ 15 advmod _ _ 15 less _ ADV RBR _ 13 advmod _ _ 16 than _ ADP IN _ 17 case _ _ 17 those _ PRON DT _ 15 nmod _ _ 18 on _ ADP IN _ 24 case _ _ 19 the _ DET DT _ 24 det _ _ 20 New _ PROPN NNP _ 21 compound _ _ 21 York _ PROPN NNP _ 24 compound _ _ 22 and _ CONJ CC _ 21 cc _ _ 23 American _ PROPN NNP _ 21 conj _ _ 24 exchanges _ NOUN NNS _ 17 nmod _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 Nonetheless _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 Nasdaq _ PROPN NNP _ 6 compound _ _ 5 Composite _ PROPN NNP _ 6 compound _ _ 6 Index _ PROPN NNP _ 7 nsubj _ _ 7 suffered _ VERB VBD _ 0 root _ _ 8 its _ PRON PRP$ _ 11 nmod:poss _ _ 9 biggest _ ADJ JJS _ 11 amod _ _ 10 point _ NOUN NN _ 11 compound _ _ 11 decline _ NOUN NN _ 7 dobj _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 11 nmod _ _ 15 and _ CONJ CC _ 11 cc _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 sixth _ ADJ JJ _ 11 conj _ _ 18 worst _ ADJ JJS _ 17 dep _ _ 19 ever _ ADV RB _ 17 advmod _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 diving _ VERB VBG _ 7 advcl _ _ 22 14.90 _ NUM CD _ 21 dobj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 3 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 22 conj _ _ 27 , _ PUNCT , _ 22 punct _ _ 28 to _ ADP TO _ 29 case _ _ 29 467.29 _ NUM CD _ 21 nmod _ _ 30 . _ PUNCT . _ 7 punct _ _ 1 Ten _ NUM CD _ 2 nummod _ _ 2 points _ NOUN NNS _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 drop _ NOUN NN _ 2 nmod _ _ 6 occurred _ VERB VBD _ 0 root _ _ 7 during _ ADP IN _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 last _ ADJ JJ _ 11 amod _ _ 10 45 _ NUM CD _ 11 nummod _ _ 11 minutes _ NOUN NNS _ 6 nmod _ _ 12 of _ ADP IN _ 13 case _ _ 13 trading _ VERB VBG _ 11 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 By _ ADP IN _ 2 case _ _ 2 comparison _ NOUN NN _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 the _ DET DT _ 9 det _ _ 5 New _ PROPN NNP _ 9 compound _ _ 6 York _ PROPN NNP _ 9 compound _ _ 7 Stock _ PROPN NNP _ 9 compound _ _ 8 Exchange _ PROPN NNP _ 9 compound _ _ 9 Composite _ PROPN NNP _ 10 nsubj _ _ 10 tumbled _ VERB VBD _ 0 root _ _ 11 5.8 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 Friday _ PROPN NNP _ 10 nmod:tmod _ _ 14 and _ CONJ CC _ 10 cc _ _ 15 the _ DET DT _ 19 det _ _ 16 American _ PROPN NNP _ 19 compound _ _ 17 Stock _ PROPN NNP _ 19 compound _ _ 18 Exchange _ PROPN NNP _ 19 compound _ _ 19 Composite _ PROPN NNP _ 20 nsubj _ _ 20 fell _ VERB VBD _ 10 conj _ _ 21 4 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 20 dobj _ _ 23 . _ PUNCT . _ 10 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Oct. _ PROPN NNP _ 10 nmod _ _ 3 16 _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 1987 _ NUM CD _ 2 nummod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 the _ DET DT _ 9 det _ _ 8 Nasdaq _ PROPN NNP _ 9 compound _ _ 9 Composite _ PROPN NNP _ 10 nsubj _ _ 10 fell _ VERB VBD _ 0 root _ _ 11 16.18 _ NUM CD _ 12 nummod _ _ 12 points _ NOUN NNS _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 or _ CONJ CC _ 12 cc _ _ 15 3.8 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 12 conj _ _ 17 , _ PUNCT , _ 10 punct _ _ 18 followed _ VERB VBN _ 10 advcl _ _ 19 by _ ADP IN _ 27 case _ _ 20 its _ PRON PRP$ _ 27 nmod:poss _ _ 21 devastating _ ADJ JJ _ 27 amod _ _ 22 46.12-point _ ADJ JJ _ 27 amod _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 or _ CONJ CC _ 22 cc _ _ 25 11 _ NUM CD _ 26 compound _ _ 26 % _ SYM NN _ 22 conj _ _ 27 slide _ NOUN NN _ 18 nmod _ _ 28 , _ PUNCT , _ 18 punct _ _ 29 three _ NUM CD _ 30 nummod _ _ 30 days _ NOUN NNS _ 31 nmod:npmod _ _ 31 later _ ADV RB _ 18 advmod _ _ 32 . _ PUNCT . _ 10 punct _ _ 1 Nasdaq _ PROPN NNP _ 2 compound _ _ 2 volume _ NOUN NN _ 4 nsubj _ _ 3 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 4 totaled _ VERB VBD _ 0 root _ _ 5 167.7 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 7 nummod _ _ 7 shares _ NOUN NNS _ 4 dobj _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 which _ PRON WDT _ 15 nsubj _ _ 10 was _ VERB VBD _ 15 cop _ _ 11 only _ ADV RB _ 15 advmod _ _ 12 the _ DET DT _ 15 det _ _ 13 fifth _ ADJ JJ _ 15 amod _ _ 14 busiest _ ADJ JJS _ 13 dep _ _ 15 day _ NOUN NN _ 4 dep _ _ 16 so _ ADV RB _ 17 advmod _ _ 17 far _ ADV RB _ 15 advmod _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 17 nmod:npmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 single-day _ ADJ JJ _ 3 amod _ _ 3 record _ NOUN NN _ 9 nsubjpass _ _ 4 of _ ADP IN _ 7 case _ _ 5 288 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 7 nummod _ _ 7 shares _ NOUN NNS _ 3 nmod _ _ 8 was _ AUX VBD _ 9 auxpass _ _ 9 set _ VERB VBN _ 0 root _ _ 10 on _ ADP IN _ 11 case _ _ 11 Oct. _ PROPN NNP _ 9 nmod _ _ 12 21 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 9 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 There _ ADV RB _ 6 nsubj _ _ 3 was _ VERB VBD _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 a _ DET DT _ 6 det _ _ 6 lot _ NOUN NN _ 20 ccomp _ _ 7 of _ ADP IN _ 8 case _ _ 8 volume _ NOUN NN _ 6 nmod _ _ 9 because _ SCONJ IN _ 13 mark _ _ 10 it _ PRON PRP _ 13 nsubj _ _ 11 was _ VERB VBD _ 13 cop _ _ 12 just _ ADV RB _ 13 advmod _ _ 13 impossible _ ADJ JJ _ 6 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 get _ VERB VB _ 13 xcomp _ _ 16 stock _ NOUN NN _ 17 nsubj _ _ 17 moved _ VERB VBN _ 15 dep _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 said _ VERB VBD _ 0 root _ _ 21 E.E. _ PROPN NNP _ 25 compound _ _ 22 `` _ PUNCT `` _ 25 punct _ _ 23 Buzzy _ PROPN NNP _ 25 compound _ _ 24 '' _ PUNCT '' _ 25 punct _ _ 25 Geduld _ PROPN NNP _ 20 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 president _ NOUN NN _ 25 appos _ _ 28 of _ ADP IN _ 33 case _ _ 29 Herzog _ PROPN NNP _ 33 compound _ _ 30 , _ PUNCT , _ 33 punct _ _ 31 Heine _ PROPN NNP _ 33 appos _ _ 32 , _ PUNCT , _ 33 punct _ _ 33 Geduld _ PROPN NNP _ 27 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 a _ DET DT _ 38 det _ _ 36 New _ PROPN NNP _ 38 compound _ _ 37 York _ PROPN NNP _ 38 compound _ _ 38 company _ NOUN NN _ 33 appos _ _ 39 that _ PRON WDT _ 40 nsubj _ _ 40 makes _ VERB VBZ _ 38 acl:relcl _ _ 41 markets _ NOUN NNS _ 40 dobj _ _ 42 in _ ADP IN _ 43 case _ _ 43 thousands _ NOUN NNS _ 40 nmod _ _ 44 of _ ADP IN _ 46 case _ _ 45 OTC _ PROPN NNP _ 46 compound _ _ 46 issues _ NOUN NNS _ 43 nmod _ _ 47 . _ PUNCT . _ 20 punct _ _ 1 Most _ ADJ JJS _ 9 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 complaints _ NOUN NNS _ 1 nmod _ _ 5 about _ ADP IN _ 8 case _ _ 6 unanswered _ ADJ JJ _ 8 amod _ _ 7 phone _ NOUN NN _ 8 compound _ _ 8 calls _ NOUN NNS _ 4 nmod _ _ 9 came _ VERB VBD _ 0 root _ _ 10 from _ ADP IN _ 12 case _ _ 11 regional _ ADJ JJ _ 12 amod _ _ 12 brokers _ NOUN NNS _ 9 nmod _ _ 13 rather _ ADV RB _ 12 cc _ _ 14 than _ ADP IN _ 13 mwe _ _ 15 individual _ ADJ JJ _ 16 amod _ _ 16 investors _ NOUN NNS _ 12 conj _ _ 17 . _ PUNCT . _ 9 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 King _ PROPN NNP _ 8 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 Robinson-Humphrey _ PROPN NNP _ 2 nmod _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 others _ NOUN NNS _ 2 conj _ _ 7 were _ VERB VBD _ 8 cop _ _ 8 quick _ ADJ JJ _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 add _ VERB VB _ 8 xcomp _ _ 11 that _ SCONJ IN _ 13 mark _ _ 12 they _ PRON PRP _ 13 nsubj _ _ 13 believe _ VERB VBP _ 10 ccomp _ _ 14 the _ DET DT _ 15 det _ _ 15 problem _ NOUN NN _ 16 nsubj _ _ 16 stemmed _ VERB VBD _ 13 ccomp _ _ 17 more _ ADV RBR _ 21 advmod _ _ 18 from _ ADP IN _ 21 case _ _ 19 traders _ NOUN NNS _ 21 nmod:poss _ _ 20 ' _ PART POS _ 19 case _ _ 21 inability _ NOUN NN _ 16 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 handle _ VERB VB _ 21 acl _ _ 24 the _ DET DT _ 25 det _ _ 25 volume _ NOUN NN _ 23 dobj _ _ 26 of _ ADP IN _ 27 case _ _ 27 calls _ NOUN NNS _ 25 nmod _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 rather _ ADV RB _ 21 cc _ _ 30 than _ ADP IN _ 29 mwe _ _ 31 a _ DET DT _ 33 det _ _ 32 deliberate _ ADJ JJ _ 33 amod _ _ 33 attempt _ NOUN NN _ 21 conj _ _ 34 to _ PART TO _ 35 mark _ _ 35 avoid _ VERB VB _ 33 acl _ _ 36 making _ VERB VBG _ 35 xcomp _ _ 37 trades _ NOUN NNS _ 36 dobj _ _ 38 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 subject _ NOUN NN _ 6 nsubj _ _ 3 is _ VERB VBZ _ 6 cop _ _ 4 a _ DET DT _ 6 det _ _ 5 sore _ ADJ JJ _ 6 amod _ _ 6 one _ NUM CD _ 0 root _ _ 7 for _ ADP IN _ 8 case _ _ 8 Nasdaq _ PROPN NNP _ 6 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 its _ PRON PRP$ _ 12 nmod:poss _ _ 11 market-making _ ADJ JJ _ 12 amod _ _ 12 companies _ NOUN NNS _ 8 conj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 17 nsubjpass _ _ 15 were _ AUX VBD _ 17 auxpass _ _ 16 widely _ ADV RB _ 17 advmod _ _ 17 criticized _ VERB VBN _ 12 acl:relcl _ _ 18 two _ NUM CD _ 19 nummod _ _ 19 years _ NOUN NNS _ 20 nmod:npmod _ _ 20 ago _ ADV RB _ 17 advmod _ _ 21 following _ VERB VBG _ 22 case _ _ 22 complaints _ NOUN NNS _ 17 nmod _ _ 23 from _ ADP IN _ 24 case _ _ 24 investors _ NOUN NNS _ 22 nmod _ _ 25 who _ PRON WP _ 28 nsubj _ _ 26 could _ AUX MD _ 28 aux _ _ 27 n't _ PART RB _ 28 neg _ _ 28 reach _ VERB VB _ 24 acl:relcl _ _ 29 their _ PRON PRP$ _ 30 nmod:poss _ _ 30 brokers _ NOUN NNS _ 28 dobj _ _ 31 or _ CONJ CC _ 28 cc _ _ 32 trade _ VERB VB _ 28 conj _ _ 33 in _ ADP IN _ 35 case _ _ 34 the _ DET DT _ 35 det _ _ 35 chaos _ NOUN NN _ 28 nmod _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 crash _ NOUN NN _ 35 nmod _ _ 39 . _ PUNCT . _ 6 punct _ _ 1 Peter _ PROPN NNP _ 2 compound _ _ 2 DaPuzzo _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 head _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 retail _ ADJ JJ _ 8 amod _ _ 7 equity _ NOUN NN _ 8 compound _ _ 8 trading _ NOUN NN _ 4 nmod _ _ 9 at _ ADP IN _ 12 case _ _ 10 Shearson _ PROPN NNP _ 12 compound _ _ 11 Lehman _ PROPN NNP _ 12 compound _ _ 12 Hutton _ PROPN NNP _ 4 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 declared _ VERB VBD _ 0 root _ _ 15 : _ PUNCT : _ 14 punct _ _ 16 `` _ PUNCT `` _ 21 punct _ _ 17 It _ PRON PRP _ 21 nsubj _ _ 18 was _ VERB VBD _ 21 cop _ _ 19 the _ DET DT _ 21 det _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 hour _ NOUN NN _ 14 ccomp _ _ 22 of _ ADP IN _ 23 case _ _ 23 trading _ NOUN NN _ 21 nmod _ _ 24 on _ ADP IN _ 26 case _ _ 25 a _ DET DT _ 26 det _ _ 26 Friday _ PROPN NNP _ 21 nmod _ _ 27 . _ PUNCT . _ 14 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 too _ ADV RB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 phones _ NOUN NNS _ 2 nsubj _ _ 6 ringing _ VERB VBG _ 5 acl _ _ 7 and _ CONJ CC _ 5 cc _ _ 8 too _ ADV RB _ 9 advmod _ _ 9 many _ ADJ JJ _ 10 amod _ _ 10 things _ NOUN NNS _ 5 conj _ _ 11 happening _ VERB VBG _ 10 acl _ _ 12 to _ PART TO _ 13 mark _ _ 13 expect _ VERB VB _ 2 advcl _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 makers _ NOUN NNS _ 13 dobj _ _ 16 to _ PART TO _ 19 mark _ _ 17 be _ VERB VB _ 19 cop _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 efficient _ ADJ JJ _ 13 xcomp _ _ 20 as _ ADP IN _ 21 case _ _ 21 robots _ NOUN NNS _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 was _ VERB VBD _ 4 cop _ _ 3 n't _ PART RB _ 4 neg _ _ 4 intentional _ ADJ JJ _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 we _ PRON PRP _ 9 nsubj _ _ 7 were _ VERB VBD _ 9 cop _ _ 8 all _ ADV RB _ 9 advmod _ _ 9 busy _ ADJ JJ _ 4 parataxis _ _ 10 . _ PUNCT . _ 4 punct _ _ 11 '' _ PUNCT '' _ 4 punct _ _ 1 James _ PROPN NNP _ 2 compound _ _ 2 Tarantino _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 head _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 7 case _ _ 6 OTC _ PROPN NNP _ 7 compound _ _ 7 trading _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 Hambrecht _ PROPN NNP _ 4 nmod _ _ 10 & _ CONJ CC _ 9 cc _ _ 11 Quist _ PROPN NNP _ 9 conj _ _ 12 in _ ADP IN _ 14 case _ _ 13 San _ PROPN NNP _ 14 compound _ _ 14 Francisco _ PROPN NNP _ 9 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 21 punct _ _ 19 It _ PRON PRP _ 21 nsubj _ _ 20 was _ VERB VBD _ 21 cop _ _ 21 just _ ADV RB _ 16 ccomp _ _ 22 like _ ADP IN _ 21 case _ _ 23 two _ NUM CD _ 24 nummod _ _ 24 years _ NOUN NNS _ 25 nmod:npmod _ _ 25 ago _ ADV RB _ 21 dep _ _ 26 . _ PUNCT . _ 16 punct _ _ 1 Everybody _ NOUN NN _ 3 nsubj _ _ 2 was _ AUX VBD _ 3 aux _ _ 3 trying _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 do _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 8 det _ _ 7 same _ ADJ JJ _ 8 amod _ _ 8 thing _ NOUN NN _ 5 dobj _ _ 9 at _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 same _ ADJ JJ _ 12 amod _ _ 12 time _ NOUN NN _ 5 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 Jeremiah _ PROPN NNP _ 2 compound _ _ 2 Mullins _ PROPN NNP _ 16 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 the _ DET DT _ 7 det _ _ 5 OTC _ PROPN NNP _ 7 compound _ _ 6 trading _ NOUN NN _ 7 compound _ _ 7 chief _ NOUN NN _ 2 appos _ _ 8 at _ ADP IN _ 11 case _ _ 9 Dean _ PROPN NNP _ 11 compound _ _ 10 Witter _ PROPN NNP _ 11 compound _ _ 11 Reynolds _ PROPN NNP _ 7 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 New _ PROPN NNP _ 14 compound _ _ 14 York _ PROPN NNP _ 11 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 proudly _ ADV RB _ 16 advmod _ _ 18 that _ SCONJ IN _ 21 mark _ _ 19 his _ PRON PRP$ _ 20 nmod:poss _ _ 20 company _ NOUN NN _ 21 nsubj _ _ 21 executed _ VERB VBD _ 16 ccomp _ _ 22 every _ DET DT _ 23 det _ _ 23 order _ NOUN NN _ 21 dobj _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 received _ VERB VBD _ 23 acl:relcl _ _ 26 by _ ADP IN _ 28 case _ _ 27 the _ DET DT _ 28 det _ _ 28 close _ NOUN NN _ 21 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 trading _ NOUN NN _ 28 nmod _ _ 31 . _ PUNCT . _ 16 punct _ _ 1 But _ CONJ CC _ 10 cc _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 added _ VERB VBD _ 10 parataxis _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 `` _ PUNCT `` _ 10 punct _ _ 7 you _ PRON PRP _ 10 nsubj _ _ 8 can _ AUX MD _ 10 aux _ _ 9 only _ ADV RB _ 10 advmod _ _ 10 take _ VERB VB _ 0 root _ _ 11 one _ NUM CD _ 12 nummod _ _ 12 call _ NOUN NN _ 10 dobj _ _ 13 at _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 time _ NOUN NN _ 10 nmod _ _ 16 . _ PUNCT . _ 10 punct _ _ 17 '' _ PUNCT '' _ 10 punct _ _ 1 Market _ NOUN NN _ 2 compound _ _ 2 makers _ NOUN NNS _ 3 nsubj _ _ 3 keep _ VERB VBP _ 0 root _ _ 4 supplies _ NOUN NNS _ 3 dobj _ _ 5 of _ ADP IN _ 6 case _ _ 6 stock _ NOUN NN _ 4 nmod _ _ 7 on _ ADP IN _ 8 case _ _ 8 hand _ NOUN NN _ 3 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 maintain _ VERB VB _ 3 advcl _ _ 11 orderly _ ADJ JJ _ 12 amod _ _ 12 trading _ NOUN NN _ 10 dobj _ _ 13 when _ ADV WRB _ 15 advmod _ _ 14 imbalances _ NOUN NNS _ 15 nsubj _ _ 15 occur _ VERB VBP _ 10 advcl _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 days _ NOUN NNS _ 7 nmod _ _ 3 like _ ADP IN _ 4 case _ _ 4 Friday _ PROPN NNP _ 2 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 that _ PRON WDT _ 7 nsubj _ _ 7 means _ VERB VBZ _ 0 root _ _ 8 they _ PRON PRP _ 10 nsubj _ _ 9 must _ AUX MD _ 10 aux _ _ 10 buy _ VERB VB _ 7 ccomp _ _ 11 shares _ NOUN NNS _ 10 dobj _ _ 12 from _ ADP IN _ 13 case _ _ 13 sellers _ NOUN NNS _ 10 nmod _ _ 14 when _ ADV WRB _ 19 advmod _ _ 15 no _ DET DT _ 16 neg _ _ 16 one _ NOUN NN _ 19 nsubj _ _ 17 else _ ADV RB _ 16 amod _ _ 18 is _ VERB VBZ _ 19 cop _ _ 19 willing _ ADJ JJ _ 10 advcl _ _ 20 to _ PART TO _ 19 xcomp _ _ 21 . _ PUNCT . _ 7 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 selling _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 frenzied _ ADJ JJ _ 8 advcl _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 prices _ NOUN NNS _ 8 nsubj _ _ 8 fall _ VERB VBP _ 0 root _ _ 9 steeply _ ADV RB _ 8 advmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 fast _ ADV RB _ 9 conj _ _ 12 . _ PUNCT . _ 8 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 22 advmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 faced _ VERB VBN _ 22 advcl _ _ 6 with _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 possibility _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 heavy _ ADJ JJ _ 11 amod _ _ 11 losses _ NOUN NNS _ 8 nmod _ _ 12 on _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 stocks _ NOUN NNS _ 11 nmod _ _ 15 in _ ADP IN _ 17 case _ _ 16 their _ PRON PRP$ _ 17 nmod:poss _ _ 17 inventories _ NOUN NNS _ 14 nmod _ _ 18 , _ PUNCT , _ 22 punct _ _ 19 market _ NOUN NN _ 20 compound _ _ 20 makers _ NOUN NNS _ 22 nsubj _ _ 21 themselves _ PRON PRP _ 20 nmod:npmod _ _ 22 began _ VERB VBD _ 0 root _ _ 23 dumping _ VERB VBG _ 22 xcomp _ _ 24 shares _ NOUN NNS _ 23 dobj _ _ 25 , _ PUNCT , _ 22 punct _ _ 26 exacerbating _ VERB VBG _ 22 xcomp _ _ 27 the _ DET DT _ 28 det _ _ 28 slide _ NOUN NN _ 26 dobj _ _ 29 in _ ADP IN _ 32 case _ _ 30 OTC _ PROPN NNP _ 32 compound _ _ 31 stock _ NOUN NN _ 32 compound _ _ 32 prices _ NOUN NNS _ 28 nmod _ _ 33 . _ PUNCT . _ 22 punct _ _ 1 On _ ADP IN _ 2 case _ _ 2 Friday _ PROPN NNP _ 8 nmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 some _ DET DT _ 6 det _ _ 5 market _ NOUN NN _ 6 compound _ _ 6 makers _ NOUN NNS _ 8 nsubj _ _ 7 were _ AUX VBD _ 8 aux _ _ 8 selling _ VERB VBG _ 12 ccomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 traders _ NOUN NNS _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 15 cc _ _ 2 , _ PUNCT , _ 15 punct _ _ 3 with _ SCONJ IN _ 5 mark _ _ 4 profits _ NOUN NNS _ 5 nsubj _ _ 5 sagging _ VERB VBG _ 15 advcl _ _ 6 on _ ADP IN _ 8 case _ _ 7 Wall _ PROPN NNP _ 8 compound _ _ 8 Street _ PROPN NNP _ 5 nmod _ _ 9 since _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 crash _ NOUN NN _ 5 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 companies _ NOUN NNS _ 15 nsubj _ _ 14 have _ AUX VBP _ 15 aux _ _ 15 kept _ VERB VBN _ 0 root _ _ 16 smaller _ ADJ JJR _ 18 amod _ _ 17 share _ NOUN NN _ 18 compound _ _ 18 stockpiles _ NOUN NNS _ 15 dobj _ _ 19 on _ ADP IN _ 20 case _ _ 20 hand _ NOUN NN _ 15 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Tarantino _ PROPN NNP _ 7 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 Hambrecht _ PROPN NNP _ 2 nmod _ _ 5 & _ CONJ CC _ 4 cc _ _ 6 Quist _ PROPN NNP _ 4 conj _ _ 7 said _ VERB VBD _ 0 root _ _ 8 some _ DET DT _ 9 det _ _ 9 prices _ NOUN NNS _ 10 nsubj _ _ 10 fell _ VERB VBD _ 7 ccomp _ _ 11 without _ SCONJ IN _ 13 mark _ _ 12 trades _ NOUN NNS _ 13 nsubj _ _ 13 taking _ VERB VBG _ 10 advcl _ _ 14 place _ NOUN NN _ 13 dobj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 as _ SCONJ IN _ 19 mark _ _ 17 market _ NOUN NN _ 18 compound _ _ 18 makers _ NOUN NNS _ 19 nsubj _ _ 19 kept _ VERB VBD _ 10 advcl _ _ 20 dropping _ VERB VBG _ 19 xcomp _ _ 21 the _ DET DT _ 22 det _ _ 22 prices _ NOUN NNS _ 20 dobj _ _ 23 at _ ADP IN _ 24 case _ _ 24 which _ PRON WDT _ 27 nmod _ _ 25 they _ PRON PRP _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 buy _ VERB VB _ 22 acl:relcl _ _ 28 shares _ NOUN NNS _ 27 dobj _ _ 29 . _ PUNCT . _ 7 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 Everyone _ NOUN NN _ 4 nsubj _ _ 3 was _ AUX VBD _ 4 aux _ _ 4 hitting _ VERB VBG _ 12 ccomp _ _ 5 everyone _ NOUN NN _ 8 nmod:poss _ _ 6 else _ ADV RB _ 5 amod _ _ 7 's _ PART POS _ 5 case _ _ 8 bid _ NOUN NN _ 4 dobj _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 So _ ADV RB _ 13 advmod _ _ 2 , _ PUNCT , _ 13 punct _ _ 3 while _ SCONJ IN _ 6 mark _ _ 4 OTC _ PROPN NNP _ 5 compound _ _ 5 companies _ NOUN NNS _ 6 nsubj _ _ 6 incurred _ VERB VBD _ 13 advcl _ _ 7 losses _ NOUN NNS _ 6 dobj _ _ 8 on _ ADP IN _ 9 case _ _ 9 Friday _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 trading _ NOUN NN _ 12 compound _ _ 12 officials _ NOUN NNS _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 damage _ NOUN NN _ 19 nsubj _ _ 16 was _ VERB VBD _ 19 cop _ _ 17 n't _ PART RB _ 19 neg _ _ 18 as _ ADV RB _ 19 advmod _ _ 19 bad _ ADJ JJ _ 13 ccomp _ _ 20 as _ SCONJ IN _ 24 mark _ _ 21 it _ PRON PRP _ 24 nsubj _ _ 22 was _ VERB VBD _ 24 cop _ _ 23 in _ ADP IN _ 24 case _ _ 24 1987 _ NUM CD _ 19 dep _ _ 25 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 Two _ NUM CD _ 3 nummod _ _ 3 years _ NOUN NNS _ 4 nmod:npmod _ _ 4 ago _ ADV RB _ 7 advmod _ _ 5 we _ PRON PRP _ 7 nsubj _ _ 6 were _ AUX VBD _ 7 aux _ _ 7 carrying _ VERB VBG _ 0 root _ _ 8 huge _ ADJ JJ _ 9 amod _ _ 9 inventories _ NOUN NNS _ 7 dobj _ _ 10 and _ CONJ CC _ 7 cc _ _ 11 that _ PRON DT _ 15 nsubj _ _ 12 was _ VERB VBD _ 15 cop _ _ 13 the _ DET DT _ 15 det _ _ 14 big _ ADJ JJ _ 15 amod _ _ 15 culprit _ NOUN NN _ 7 conj _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 I _ PRON PRP _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 know _ VERB VB _ 13 ccomp _ _ 5 of _ ADP IN _ 6 case _ _ 6 anyone _ NOUN NN _ 4 nmod _ _ 7 carrying _ VERB VBG _ 6 acl _ _ 8 big _ ADJ JJ _ 9 amod _ _ 9 inventories _ NOUN NNS _ 7 dobj _ _ 10 now _ ADV RB _ 7 advmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 King _ PROPN NNP _ 13 nsubj _ _ 16 of _ ADP IN _ 17 case _ _ 17 Robinson-Humphrey _ PROPN NNP _ 15 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 Tony _ PROPN NNP _ 2 compound _ _ 2 Cecin _ PROPN NNP _ 17 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 head _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 7 case _ _ 6 equity _ NOUN NN _ 7 compound _ _ 7 trading _ NOUN NN _ 4 nmod _ _ 8 at _ ADP IN _ 9 case _ _ 9 Piper _ PROPN NNP _ 4 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Jaffray _ PROPN NNP _ 9 conj _ _ 12 & _ CONJ CC _ 9 cc _ _ 13 Hopwood _ PROPN NNP _ 9 conj _ _ 14 in _ ADP IN _ 15 case _ _ 15 Minneapolis _ PROPN NNP _ 9 nmod _ _ 16 , _ PUNCT , _ 2 punct _ _ 17 said _ VERB VBD _ 0 root _ _ 18 that _ SCONJ IN _ 22 mark _ _ 19 Piper _ PROPN NNP _ 20 compound _ _ 20 Jaffray _ PROPN NNP _ 22 nsubj _ _ 21 actually _ ADV RB _ 22 advmod _ _ 22 made _ VERB VBD _ 17 ccomp _ _ 23 money _ NOUN NN _ 22 dobj _ _ 24 on _ ADP IN _ 25 case _ _ 25 Friday _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 17 punct _ _ 1 It _ PRON PRP _ 2 nsubj _ _ 2 helped _ VERB VBD _ 19 ccomp _ _ 3 that _ SCONJ IN _ 9 mark _ _ 4 his _ PRON PRP$ _ 5 nmod:poss _ _ 5 inventory _ NOUN NN _ 9 nsubj _ _ 6 is _ VERB VBZ _ 9 cop _ _ 7 a _ DET DT _ 8 det _ _ 8 third _ NOUN NN _ 9 nmod:npmod _ _ 9 smaller _ ADJ JJR _ 2 ccomp _ _ 10 now _ ADV RB _ 9 advmod _ _ 11 than _ SCONJ IN _ 13 mark _ _ 12 it _ PRON PRP _ 13 nsubj _ _ 13 was _ VERB VBD _ 9 advcl _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 years _ NOUN NNS _ 16 nmod:npmod _ _ 16 ago _ ADV RB _ 13 advmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 Joseph _ PROPN NNP _ 2 compound _ _ 2 Hardiman _ PROPN NNP _ 21 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 president _ NOUN NN _ 2 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 the _ DET DT _ 8 det _ _ 7 National _ PROPN NNP _ 8 compound _ _ 8 Association _ PROPN NNP _ 4 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 Securities _ PROPN NNP _ 11 compound _ _ 11 Dealers _ PROPN NNP _ 8 nmod _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 which _ PRON WDT _ 14 nsubj _ _ 14 oversees _ VERB VBZ _ 8 acl:relcl _ _ 15 the _ DET DT _ 19 det _ _ 16 Nasdaq _ PROPN NNP _ 19 compound _ _ 17 computerized _ ADJ JJ _ 19 amod _ _ 18 trading _ NOUN NN _ 19 compound _ _ 19 system _ NOUN NN _ 14 dobj _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 that _ SCONJ IN _ 31 mark _ _ 23 despite _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 rush _ NOUN NN _ 31 nmod _ _ 26 of _ ADP IN _ 27 case _ _ 27 selling _ VERB VBG _ 25 nmod _ _ 28 , _ PUNCT , _ 31 punct _ _ 29 he _ PRON PRP _ 31 nsubj _ _ 30 never _ ADV RB _ 31 neg _ _ 31 considered _ VERB VBD _ 21 ccomp _ _ 32 the _ DET DT _ 33 det _ _ 33 situation _ NOUN NN _ 36 nsubj _ _ 34 an _ DET DT _ 36 det _ _ 35 `` _ PUNCT `` _ 36 punct _ _ 36 emergency _ NOUN NN _ 31 xcomp _ _ 37 . _ PUNCT . _ 21 punct _ _ 38 '' _ PUNCT '' _ 21 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 pace _ NOUN NN _ 7 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 trading _ NOUN NN _ 3 nmod _ _ 6 was _ VERB VBD _ 7 cop _ _ 7 orderly _ ADJ JJ _ 11 ccomp _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 '' _ PUNCT '' _ 11 punct _ _ 10 he _ PRON PRP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 Nasdaq _ PROPN NNP _ 6 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Small _ PROPN NNP _ 6 compound _ _ 4 Order _ PROPN NNP _ 6 compound _ _ 5 Execution _ PROPN NNP _ 6 compound _ _ 6 System _ PROPN NNP _ 8 nsubj _ _ 7 `` _ PUNCT `` _ 8 punct _ _ 8 worked _ VERB VBD _ 0 root _ _ 9 beautifully _ ADV RB _ 8 advmod _ _ 10 , _ PUNCT , _ 8 punct _ _ 11 '' _ PUNCT '' _ 8 punct _ _ 12 as _ SCONJ IN _ 13 dep _ _ 13 did _ VERB VBD _ 8 advcl _ _ 14 the _ DET DT _ 16 det _ _ 15 automated _ ADJ JJ _ 16 amod _ _ 16 system _ NOUN NN _ 13 nsubj _ _ 17 for _ ADP IN _ 19 case _ _ 18 larger _ ADJ JJR _ 19 amod _ _ 19 trades _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 8 punct _ _ 21 according _ VERB VBG _ 24 case _ _ 22 to _ ADP TO _ 21 mwe _ _ 23 Mr. _ PROPN NNP _ 24 compound _ _ 24 Hardiman _ PROPN NNP _ 8 nmod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Nevertheless _ ADV RB _ 14 advmod _ _ 2 , _ PUNCT , _ 14 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 shock _ NOUN NN _ 14 nsubj _ _ 5 of _ ADP IN _ 8 case _ _ 6 another _ DET DT _ 8 det _ _ 7 steep _ ADJ JJ _ 8 amod _ _ 8 plunge _ NOUN NN _ 4 nmod _ _ 9 in _ ADP IN _ 11 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 undoubtedly _ ADV RB _ 14 advmod _ _ 13 will _ AUX MD _ 14 aux _ _ 14 shake _ VERB VB _ 0 root _ _ 15 many _ ADJ JJ _ 16 amod _ _ 16 investors _ NOUN NNS _ 18 nmod:poss _ _ 17 ' _ PART POS _ 16 case _ _ 18 confidence _ NOUN NN _ 14 dobj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 past _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 OTC _ PROPN NNP _ 7 compound _ _ 7 market _ NOUN NN _ 8 nsubj _ _ 8 thrived _ VERB VBD _ 0 root _ _ 9 on _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 firm _ ADJ JJ _ 12 amod _ _ 12 base _ NOUN NN _ 8 nmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 small-investor _ NOUN NN _ 15 compound _ _ 15 participation _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Because _ SCONJ IN _ 8 mark _ _ 2 Nasdaq _ PROPN NNP _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 trading _ NOUN NN _ 5 compound _ _ 5 volume _ NOUN NN _ 8 nsubj _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 returned _ VERB VBN _ 18 advcl _ _ 9 to _ ADP TO _ 11 case _ _ 10 pre-crash _ ADJ JJ _ 11 amod _ _ 11 levels _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 traders _ NOUN NNS _ 18 nsubj _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 OTC _ PROPN NNP _ 17 compound _ _ 16 market _ NOUN NN _ 17 compound _ _ 17 officials _ NOUN NNS _ 13 conj _ _ 18 hope _ VERB VBP _ 0 root _ _ 19 the _ DET DT _ 20 det _ _ 20 damage _ NOUN NN _ 24 nsubj _ _ 21 wo _ AUX MD _ 24 aux _ _ 22 n't _ PART RB _ 24 neg _ _ 23 be _ VERB VB _ 24 cop _ _ 24 permanent _ ADJ JJ _ 18 ccomp _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 they _ PRON PRP _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 worried _ ADJ JJ _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 were _ AUX VBD _ 5 aux _ _ 4 just _ ADV RB _ 5 advmod _ _ 5 starting _ VERB VBG _ 15 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 get _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 public _ NOUN NN _ 11 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 confidence _ NOUN NN _ 7 dobj _ _ 12 back _ ADP RP _ 7 compound:prt _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 lamented _ VERB VBD _ 0 root _ _ 16 Mr. _ PROPN NNP _ 17 compound _ _ 17 Mullins _ PROPN NNP _ 15 nsubj _ _ 18 of _ ADP IN _ 20 case _ _ 19 Dean _ PROPN NNP _ 20 compound _ _ 20 Witter _ PROPN NNP _ 17 nmod _ _ 21 . _ PUNCT . _ 15 punct _ _ 1 More _ ADV RBR _ 2 advmod _ _ 2 troubling _ ADJ JJ _ 3 dep _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 prospect _ NOUN NN _ 3 nsubj _ _ 6 that _ SCONJ IN _ 15 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 overall _ ADJ JJ _ 9 amod _ _ 9 collapse _ NOUN NN _ 15 nsubj _ _ 10 in _ ADP IN _ 12 case _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 prices _ NOUN NNS _ 9 nmod _ _ 13 could _ AUX MD _ 15 aux _ _ 14 permanently _ ADV RB _ 15 advmod _ _ 15 erode _ VERB VB _ 5 ccomp _ _ 16 the _ DET DT _ 17 det _ _ 17 base _ NOUN NN _ 15 dobj _ _ 18 of _ ADP IN _ 20 case _ _ 19 small-investor _ NOUN NN _ 20 compound _ _ 20 support _ NOUN NN _ 17 nmod _ _ 21 the _ DET DT _ 23 det _ _ 22 OTC _ PROPN NNP _ 23 compound _ _ 23 market _ NOUN NN _ 25 nsubj _ _ 24 was _ AUX VBD _ 25 aux _ _ 25 struggling _ VERB VBG _ 17 acl:relcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 rebuild _ VERB VB _ 25 xcomp _ _ 28 in _ ADP IN _ 30 case _ _ 29 the _ DET DT _ 30 det _ _ 30 wake _ NOUN NN _ 27 nmod _ _ 31 of _ ADP IN _ 35 case _ _ 32 the _ DET DT _ 35 det _ _ 33 October _ PROPN NNP _ 35 compound _ _ 34 1987 _ NUM CD _ 35 nummod _ _ 35 crash _ NOUN NN _ 30 nmod _ _ 36 . _ PUNCT . _ 3 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Cecin _ PROPN NNP _ 6 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 Piper _ PROPN NNP _ 5 compound _ _ 5 Jaffray _ PROPN NNP _ 2 nmod _ _ 6 says _ VERB VBZ _ 0 root _ _ 7 some _ DET DT _ 8 det _ _ 8 action _ NOUN NN _ 14 nsubj _ _ 9 from _ ADP IN _ 12 case _ _ 10 government _ NOUN NN _ 12 compound _ _ 11 policy _ NOUN NN _ 12 compound _ _ 12 makers _ NOUN NNS _ 8 nmod _ _ 13 would _ AUX MD _ 14 aux _ _ 14 allay _ VERB VB _ 6 ccomp _ _ 15 investor _ NOUN NN _ 16 compound _ _ 16 fears _ NOUN NNS _ 14 dobj _ _ 17 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 wo _ AUX MD _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 take _ VERB VB _ 19 ccomp _ _ 5 much _ ADJ JJ _ 4 dobj _ _ 6 more _ ADV RBR _ 5 amod _ _ 7 to _ PART TO _ 9 mark _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 scare _ VERB VB _ 4 advcl _ _ 10 the _ DET DT _ 11 det _ _ 11 hell _ NOUN NN _ 9 dobj _ _ 12 out _ ADP IN _ 9 advmod _ _ 13 of _ ADP IN _ 15 case _ _ 14 retail _ ADJ JJ _ 15 amod _ _ 15 investors _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 says _ VERB VBZ _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 sellers _ NOUN NNS _ 5 nsubj _ _ 3 on _ ADP IN _ 4 case _ _ 4 Friday _ PROPN NNP _ 5 nmod _ _ 5 came _ VERB VBD _ 0 root _ _ 6 from _ ADP IN _ 8 case _ _ 7 all _ DET DT _ 8 det _ _ 8 corners _ NOUN NNS _ 5 nmod _ _ 9 of _ ADP IN _ 12 case _ _ 10 the _ DET DT _ 12 det _ _ 11 OTC _ PROPN NNP _ 12 compound _ _ 12 market _ NOUN NN _ 8 nmod _ _ 13 -- _ PUNCT : _ 5 punct _ _ 14 big _ ADJ JJ _ 18 amod _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 small _ ADJ JJ _ 14 conj _ _ 17 institutional _ ADJ JJ _ 18 amod _ _ 18 investors _ NOUN NNS _ 5 dobj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 as _ ADV RB _ 18 cc _ _ 21 well _ ADV RB _ 20 mwe _ _ 22 as _ ADP IN _ 20 mwe _ _ 23 individual _ ADJ JJ _ 24 amod _ _ 24 investors _ NOUN NNS _ 18 conj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 makers _ NOUN NNS _ 24 conj _ _ 28 . _ PUNCT . _ 5 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 grateful _ ADJ JJ _ 3 amod _ _ 3 traders _ NOUN NNS _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 sell _ NOUN NN _ 7 compound _ _ 7 orders _ NOUN NNS _ 9 nsubj _ _ 8 generally _ ADV RB _ 9 advmod _ _ 9 ranged _ VERB VBD _ 4 ccomp _ _ 10 from _ ADP IN _ 12 case _ _ 11 20,000 _ NUM CD _ 12 nummod _ _ 12 shares _ NOUN NNS _ 9 nmod _ _ 13 to _ ADP TO _ 15 case _ _ 14 50,000 _ NUM CD _ 15 nummod _ _ 15 shares _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 9 punct _ _ 17 compared _ VERB VBN _ 19 case _ _ 18 with _ ADP IN _ 19 case _ _ 19 blocks _ NOUN NNS _ 9 advcl _ _ 20 of _ ADP IN _ 22 case _ _ 21 500,000 _ NUM CD _ 22 nummod _ _ 22 shares _ NOUN NNS _ 19 nmod _ _ 23 or _ CONJ CC _ 24 cc _ _ 24 more _ ADJ JJR _ 22 nummod _ _ 25 two _ NUM CD _ 26 nummod _ _ 26 years _ NOUN NNS _ 27 nmod:npmod _ _ 27 ago _ ADV RB _ 19 advmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 Shearson _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 Mr. _ PROPN NNP _ 4 compound _ _ 4 DaPuzzo _ PROPN NNP _ 5 nsubj _ _ 5 said _ VERB VBD _ 0 root _ _ 6 retail _ ADJ JJ _ 7 amod _ _ 7 investors _ NOUN NNS _ 9 nsubj _ _ 8 nervously _ ADV RB _ 9 advmod _ _ 9 sold _ VERB VBD _ 5 ccomp _ _ 10 stock _ NOUN NN _ 9 dobj _ _ 11 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 12 and _ CONJ CC _ 9 cc _ _ 13 never _ ADV RB _ 14 neg _ _ 14 returned _ VERB VBD _ 9 conj _ _ 15 to _ PART TO _ 16 mark _ _ 16 bargain-hunt _ VERB VB _ 14 xcomp _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 Institutional _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 24 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 7 nsubj _ _ 5 had _ AUX VBD _ 7 aux _ _ 6 been _ AUX VBN _ 7 aux _ _ 7 selling _ VERB VBG _ 2 acl:relcl _ _ 8 stock _ NOUN NN _ 7 dobj _ _ 9 throughout _ ADP IN _ 11 case _ _ 10 last _ ADJ JJ _ 11 amod _ _ 11 week _ NOUN NN _ 7 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 lock _ VERB VB _ 7 advcl _ _ 14 in _ ADP RP _ 13 compound:prt _ _ 15 handsome _ ADJ JJ _ 16 amod _ _ 16 gains _ NOUN NNS _ 13 dobj _ _ 17 made _ VERB VBN _ 16 acl _ _ 18 through _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 third _ ADJ JJ _ 21 amod _ _ 21 quarter _ NOUN NN _ 17 nmod _ _ 22 , _ PUNCT , _ 2 punct _ _ 23 were _ VERB VBD _ 24 cop _ _ 24 calmer _ ADJ JJR _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 had _ VERB VBD _ 21 ccomp _ _ 4 a _ DET DT _ 6 det _ _ 5 good _ ADJ JJ _ 6 amod _ _ 6 amount _ NOUN NN _ 3 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 selling _ VERB VBG _ 6 nmod _ _ 9 from _ ADP IN _ 10 case _ _ 10 institutions _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 but _ CONJ CC _ 6 cc _ _ 13 not _ ADV RB _ 16 neg _ _ 14 as _ ADP IN _ 15 dep _ _ 15 much _ ADJ JJ _ 16 amod _ _ 16 panic _ NOUN NN _ 6 conj _ _ 17 , _ PUNCT , _ 21 punct _ _ 18 '' _ PUNCT '' _ 21 punct _ _ 19 Mr. _ PROPN NNP _ 20 compound _ _ 20 DaPuzzo _ PROPN NNP _ 21 nsubj _ _ 21 said _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 If _ SCONJ IN _ 6 mark _ _ 3 they _ PRON PRP _ 6 nsubj _ _ 4 could _ AUX MD _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 sell _ VERB VB _ 11 advcl _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 some _ DET DT _ 11 nsubj _ _ 9 of _ ADP IN _ 10 case _ _ 10 them _ PRON PRP _ 8 nmod _ _ 11 put _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 shares _ NOUN NNS _ 11 dobj _ _ 14 back _ ADV RB _ 11 advmod _ _ 15 on _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 shelf _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 19 '' _ PUNCT '' _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 said _ VERB VBD _ 11 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 some _ DET DT _ 10 det _ _ 8 bigger _ ADJ JJR _ 10 amod _ _ 9 institutional _ ADJ JJ _ 10 amod _ _ 10 investors _ NOUN NNS _ 11 nsubj _ _ 11 placed _ VERB VBD _ 0 root _ _ 12 bids _ NOUN NNS _ 11 dobj _ _ 13 to _ PART TO _ 14 mark _ _ 14 buy _ VERB VB _ 12 acl _ _ 15 some _ DET DT _ 17 det _ _ 16 OTC _ PROPN NNP _ 17 compound _ _ 17 stocks _ NOUN NNS _ 14 dobj _ _ 18 whose _ PRON WP$ _ 19 nmod:poss _ _ 19 prices _ NOUN NNS _ 21 nsubjpass _ _ 20 were _ AUX VBD _ 21 auxpass _ _ 21 beaten _ VERB VBN _ 17 acl:relcl _ _ 22 down _ ADP RP _ 21 compound:prt _ _ 23 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 addition _ NOUN NN _ 6 nmod _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 Mr. _ PROPN NNP _ 5 compound _ _ 5 DaPuzzo _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 computer-guided _ ADJ JJ _ 9 amod _ _ 8 program _ NOUN NN _ 9 compound _ _ 9 selling _ NOUN NN _ 29 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 OTC _ PROPN NNP _ 12 compound _ _ 12 stocks _ NOUN NNS _ 9 nmod _ _ 13 in _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 Russell _ PROPN NNP _ 16 compound _ _ 16 Index _ PROPN NNP _ 12 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 2000 _ NUM CD _ 20 nummod _ _ 19 small _ ADJ JJ _ 20 amod _ _ 20 stocks _ NOUN NNS _ 16 nmod _ _ 21 and _ CONJ CC _ 16 cc _ _ 22 the _ DET DT _ 23 det _ _ 23 Standard _ PROPN NNP _ 28 nmod:poss _ _ 24 & _ CONJ CC _ 23 cc _ _ 25 Poor _ PROPN NNP _ 23 conj _ _ 26 's _ PART POS _ 23 case _ _ 27 500-stock _ PROPN NNP _ 28 compound _ _ 28 Index _ PROPN NNP _ 16 conj _ _ 29 sent _ VERB VBD _ 6 ccomp _ _ 30 occasional _ ADJ JJ _ 32 amod _ _ 31 `` _ PUNCT `` _ 32 punct _ _ 32 waves _ NOUN NNS _ 29 dobj _ _ 33 `` _ PUNCT `` _ 32 punct _ _ 34 through _ ADP IN _ 36 case _ _ 35 the _ DET DT _ 36 det _ _ 36 market _ NOUN NN _ 29 nmod _ _ 37 . _ PUNCT . _ 6 punct _ _ 1 Nasdaq _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 biggest _ ADJ JJS _ 4 amod _ _ 4 stocks _ NOUN NNS _ 6 nsubjpass _ _ 5 were _ AUX VBD _ 6 auxpass _ _ 6 hammered _ VERB VBN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Nasdaq _ PROPN NNP _ 4 compound _ _ 3 100 _ NUM CD _ 4 nummod _ _ 4 Index _ PROPN NNP _ 18 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 9 det _ _ 7 largest _ ADJ JJS _ 9 amod _ _ 8 nonfinancial _ ADJ JJ _ 9 amod _ _ 9 issues _ NOUN NNS _ 4 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 including _ VERB VBG _ 16 case _ _ 12 the _ DET DT _ 16 det _ _ 13 big _ ADJ JJ _ 16 amod _ _ 14 OTC _ PROPN NNP _ 16 compound _ _ 15 technology _ NOUN NN _ 16 compound _ _ 16 issues _ NOUN NNS _ 9 nmod _ _ 17 , _ PUNCT , _ 9 punct _ _ 18 tumbled _ VERB VBD _ 0 root _ _ 19 4.2 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 or _ CONJ CC _ 20 cc _ _ 23 19.76 _ NUM CD _ 20 conj _ _ 24 , _ PUNCT , _ 20 punct _ _ 25 to _ ADP TO _ 26 case _ _ 26 449.33 _ NUM CD _ 18 nmod _ _ 27 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 Nasdaq _ PROPN NNP _ 4 compound _ _ 3 Financial _ PROPN NNP _ 4 compound _ _ 4 Index _ PROPN NNP _ 11 nsubj _ _ 5 of _ ADP IN _ 7 case _ _ 6 giant _ ADJ JJ _ 7 amod _ _ 7 insurance _ NOUN NN _ 4 nmod _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 banking _ NOUN NN _ 10 compound _ _ 10 stocks _ NOUN NNS _ 7 conj _ _ 11 dropped _ VERB VBD _ 0 root _ _ 12 2 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 9.31 _ NUM CD _ 13 conj _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 to _ ADP TO _ 19 case _ _ 19 462.98 _ NUM CD _ 11 nmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 OTC _ PROPN NNP _ 3 compound _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 has _ VERB VBZ _ 0 root _ _ 5 only _ ADV RB _ 7 advmod _ _ 6 a _ DET DT _ 7 det _ _ 7 handful _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 takeover-related _ ADJ JJ _ 10 amod _ _ 10 stocks _ NOUN NNS _ 7 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 fell _ VERB VBD _ 0 root _ _ 4 sharply _ ADV RB _ 3 advmod _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 McCaw _ PROPN NNP _ 3 compound _ _ 2 Cellular _ PROPN NNP _ 3 compound _ _ 3 Communications _ PROPN NNP _ 9 nsubj _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 instance _ NOUN NN _ 9 nmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 offered _ VERB VBN _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 buy _ VERB VB _ 9 xcomp _ _ 12 LIN _ PROPN NNP _ 13 compound _ _ 13 Broadcasting _ PROPN NNP _ 11 dobj _ _ 14 as _ ADV RB _ 13 cc _ _ 15 well _ ADV RB _ 14 mwe _ _ 16 as _ ADP IN _ 14 mwe _ _ 17 Metromedia _ PROPN NNP _ 24 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 New _ PROPN NNP _ 24 compound _ _ 20 York _ PROPN NNP _ 24 compound _ _ 21 City _ PROPN NNP _ 24 compound _ _ 22 cellular _ ADJ JJ _ 24 amod _ _ 23 telephone _ NOUN NN _ 24 compound _ _ 24 interests _ NOUN NNS _ 13 conj _ _ 25 , _ PUNCT , _ 11 punct _ _ 26 and _ CONJ CC _ 11 cc _ _ 27 in _ ADP IN _ 30 case _ _ 28 a _ DET DT _ 30 det _ _ 29 separate _ ADJ JJ _ 30 amod _ _ 30 transaction _ NOUN NN _ 32 nmod _ _ 31 , _ PUNCT , _ 32 punct _ _ 32 sell _ VERB VB _ 11 conj _ _ 33 certain _ ADJ JJ _ 35 amod _ _ 34 McCaw _ PROPN NNP _ 35 compound _ _ 35 properties _ NOUN NNS _ 32 dobj _ _ 36 to _ ADP TO _ 38 case _ _ 37 Contel _ PROPN NNP _ 38 compound _ _ 38 Cellular _ PROPN NNP _ 32 nmod _ _ 39 . _ PUNCT . _ 9 punct _ _ 1 McCaw _ PROPN NNP _ 2 nsubj _ _ 2 lost _ VERB VBD _ 0 root _ _ 3 8 _ NUM CD _ 4 nummod _ _ 4 % _ SYM NN _ 2 dobj _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 or _ CONJ CC _ 4 cc _ _ 7 3 _ NUM CD _ 8 compound _ _ 8 1/2 _ NUM CD _ 4 conj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 to _ ADP TO _ 11 case _ _ 11 40 _ NUM CD _ 2 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 LIN _ PROPN NNP _ 2 compound _ _ 2 Broadcasting _ PROPN NNP _ 4 nsubj _ _ 3 , _ PUNCT , _ 4 punct _ _ 4 dropped _ VERB VBD _ 0 root _ _ 5 5 _ NUM CD _ 6 compound _ _ 6 1/2 _ NUM CD _ 4 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 or _ CONJ CC _ 6 cc _ _ 9 5 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 6 conj _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 to _ ADP TO _ 14 case _ _ 13 107 _ NUM CD _ 14 compound _ _ 14 1/2 _ NUM CD _ 4 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 turnover _ NOUN NN _ 8 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 both _ DET DT _ 5 det _ _ 5 issues _ NOUN NNS _ 2 nmod _ _ 6 was _ VERB VBD _ 8 cop _ _ 7 roughly _ ADV RB _ 8 advmod _ _ 8 normal _ ADJ JJ _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 1 On _ ADP IN _ 3 case _ _ 2 a _ DET DT _ 3 det _ _ 3 day _ NOUN NN _ 25 nmod _ _ 4 when _ ADV WRB _ 10 advmod _ _ 5 negative _ ADJ JJ _ 7 amod _ _ 6 takeover-related _ ADJ JJ _ 7 amod _ _ 7 news _ NOUN NN _ 10 nsubj _ _ 8 did _ AUX VBD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 sit _ VERB VB _ 3 acl:relcl _ _ 11 well _ ADV RB _ 10 advmod _ _ 12 with _ ADP IN _ 13 case _ _ 13 investors _ NOUN NNS _ 10 nmod _ _ 14 , _ PUNCT , _ 25 punct _ _ 15 Commercial _ PROPN NNP _ 16 compound _ _ 16 Intertech _ PROPN NNP _ 25 nsubj _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 a _ DET DT _ 19 det _ _ 19 maker _ NOUN NN _ 16 appos _ _ 20 of _ ADP IN _ 23 case _ _ 21 engineered _ ADJ JJ _ 23 amod _ _ 22 metal _ NOUN NN _ 23 compound _ _ 23 parts _ NOUN NNS _ 19 nmod _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 said _ VERB VBD _ 0 root _ _ 26 Haas _ PROPN NNP _ 29 nsubj _ _ 27 & _ CONJ CC _ 26 cc _ _ 28 Partners _ PROPN NNP _ 26 conj _ _ 29 advised _ VERB VBD _ 25 ccomp _ _ 30 it _ PRON PRP _ 29 dobj _ _ 31 that _ SCONJ IN _ 35 mark _ _ 32 it _ PRON PRP _ 35 nsubj _ _ 33 does _ AUX VBZ _ 35 aux _ _ 34 n't _ PART RB _ 35 neg _ _ 35 plan _ VERB VB _ 29 ccomp _ _ 36 to _ PART TO _ 37 mark _ _ 37 pursue _ VERB VB _ 35 xcomp _ _ 38 its _ PRON PRP$ _ 43 nmod:poss _ _ 39 previously _ ADV RB _ 40 advmod _ _ 40 reported _ VERB VBN _ 43 amod _ _ 41 $ _ SYM $ _ 43 amod _ _ 42 27.50-a-share _ ADJ JJ _ 41 dep _ _ 43 bid _ NOUN NN _ 37 dobj _ _ 44 to _ PART TO _ 45 mark _ _ 45 buy _ VERB VB _ 43 acl _ _ 46 the _ DET DT _ 47 det _ _ 47 company _ NOUN NN _ 45 dobj _ _ 48 . _ PUNCT . _ 25 punct _ _ 1 Commercial _ PROPN NNP _ 2 compound _ _ 2 Intertech _ PROPN NNP _ 3 nsubj _ _ 3 plummeted _ VERB VBD _ 0 root _ _ 4 6 _ NUM CD _ 3 dobj _ _ 5 to _ ADP TO _ 6 case _ _ 6 26 _ NUM CD _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 issues _ NOUN NNS _ 13 nsubj _ _ 3 of _ ADP IN _ 4 case _ _ 4 companies _ NOUN NNS _ 2 nmod _ _ 5 with _ ADP IN _ 6 case _ _ 6 ties _ NOUN NNS _ 4 nmod _ _ 7 to _ ADP TO _ 11 case _ _ 8 the _ DET DT _ 11 det _ _ 9 junk _ NOUN NN _ 11 compound _ _ 10 bond _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 6 nmod _ _ 12 also _ ADV RB _ 13 advmod _ _ 13 tumbled _ VERB VBD _ 0 root _ _ 14 Friday _ PROPN NNP _ 13 nmod:tmod _ _ 15 . _ PUNCT . _ 13 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 OTC _ PROPN NNP _ 4 compound _ _ 4 market _ NOUN NN _ 19 nmod _ _ 5 , _ PUNCT , _ 19 punct _ _ 6 First _ PROPN NNP _ 7 compound _ _ 7 Executive _ PROPN NNP _ 19 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 a _ DET DT _ 11 det _ _ 10 big _ ADJ JJ _ 11 amod _ _ 11 buyer _ NOUN NN _ 7 appos _ _ 12 of _ ADP IN _ 17 case _ _ 13 the _ DET DT _ 17 det _ _ 14 high-risk _ ADJ JJ _ 17 amod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 high-yield _ ADJ JJ _ 17 amod _ _ 17 issues _ NOUN NNS _ 11 nmod _ _ 18 , _ PUNCT , _ 7 punct _ _ 19 slid _ VERB VBD _ 0 root _ _ 20 2 _ NUM CD _ 19 dobj _ _ 21 to _ ADP TO _ 23 case _ _ 22 12 _ NUM CD _ 23 compound _ _ 23 1/4 _ NUM CD _ 19 nmod _ _ 24 . _ PUNCT . _ 19 punct _ _ 1 Among _ ADP IN _ 4 case _ _ 2 other _ ADJ JJ _ 4 amod _ _ 3 OTC _ PROPN NNP _ 4 compound _ _ 4 issues _ NOUN NNS _ 8 nmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 Intel _ PROPN NNP _ 8 nsubj _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 dropped _ VERB VBD _ 0 root _ _ 9 2 _ NUM CD _ 10 compound _ _ 10 1/8 _ NUM CD _ 8 dobj _ _ 11 to _ ADP TO _ 13 case _ _ 12 33 _ NUM CD _ 13 compound _ _ 13 7/8 _ NUM CD _ 8 nmod _ _ 14 ; _ PUNCT : _ 8 punct _ _ 15 Laidlaw _ PROPN NNP _ 16 compound _ _ 16 Transportation _ PROPN NNP _ 17 nsubj _ _ 17 lost _ VERB VBD _ 8 conj _ _ 18 1 _ NUM CD _ 19 compound _ _ 19 1/8 _ NUM CD _ 17 dobj _ _ 20 to _ ADP TO _ 22 case _ _ 21 19 _ NUM CD _ 22 compound _ _ 22 1/2 _ NUM CD _ 17 nmod _ _ 23 ; _ PUNCT : _ 8 punct _ _ 24 the _ DET DT _ 27 det _ _ 25 American _ ADJ JJ _ 27 amod _ _ 26 depositary _ ADJ JJ _ 27 amod _ _ 27 receipts _ NOUN NNS _ 35 nsubj _ _ 28 of _ ADP IN _ 29 case _ _ 29 Jaguar _ PROPN NNP _ 27 nmod _ _ 30 were _ VERB VBD _ 35 cop _ _ 31 off _ ADV RB _ 35 advmod _ _ 32 1/4 _ NUM CD _ 31 nmod:npmod _ _ 33 to _ ADP TO _ 35 case _ _ 34 10 _ NUM CD _ 35 compound _ _ 35 1/4 _ NUM CD _ 8 conj _ _ 36 ; _ PUNCT : _ 8 punct _ _ 37 MCI _ PROPN NNP _ 38 compound _ _ 38 Communications _ PROPN NNP _ 39 nsubj _ _ 39 slipped _ VERB VBD _ 8 conj _ _ 40 2 _ NUM CD _ 41 compound _ _ 41 1/4 _ NUM CD _ 39 dobj _ _ 42 to _ ADP TO _ 44 case _ _ 43 43 _ NUM CD _ 44 compound _ _ 44 1/2 _ NUM CD _ 39 nmod _ _ 45 ; _ PUNCT : _ 8 punct _ _ 46 Apple _ PROPN NNP _ 47 compound _ _ 47 Computer _ PROPN NNP _ 48 nsubj _ _ 48 fell _ VERB VBD _ 8 conj _ _ 49 3 _ NUM CD _ 48 dobj _ _ 50 to _ ADP TO _ 52 case _ _ 51 45 _ NUM CD _ 52 compound _ _ 52 3/4 _ NUM CD _ 48 nmod _ _ 53 and _ CONJ CC _ 8 cc _ _ 54 Nike _ PROPN NNP _ 55 nsubj _ _ 55 dropped _ VERB VBD _ 8 conj _ _ 56 2 _ NUM CD _ 57 compound _ _ 57 1/4 _ NUM CD _ 55 dobj _ _ 58 to _ ADP TO _ 60 case _ _ 59 66 _ NUM CD _ 60 compound _ _ 60 3/4 _ NUM CD _ 55 nmod _ _ 61 . _ PUNCT . _ 8 punct _ _ 1 Friday _ PROPN NNP _ 3 compound _ _ 2 , _ PUNCT , _ 3 punct _ _ 3 October _ PROPN NNP _ 0 root _ _ 4 13 _ NUM CD _ 3 nummod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 1989 _ NUM CD _ 3 nummod _ _ 1 The _ DET DT _ 8 det _ _ 2 key _ ADJ JJ _ 8 amod _ _ 3 U.S. _ PROPN NNP _ 8 compound _ _ 4 and _ CONJ CC _ 3 cc _ _ 5 foreign _ ADJ JJ _ 3 conj _ _ 6 annual _ ADJ JJ _ 8 amod _ _ 7 interest _ NOUN NN _ 8 compound _ _ 8 rates _ NOUN NNS _ 12 nsubj _ _ 9 below _ ADV RB _ 8 advmod _ _ 10 are _ VERB VBP _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 guide _ NOUN NN _ 0 root _ _ 13 to _ ADP TO _ 15 case _ _ 14 general _ ADJ JJ _ 15 amod _ _ 15 levels _ NOUN NNS _ 12 nmod _ _ 16 but _ CONJ CC _ 12 cc _ _ 17 do _ AUX VBP _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 always _ ADV RB _ 20 advmod _ _ 20 represent _ VERB VB _ 12 conj _ _ 21 actual _ ADJ JJ _ 22 amod _ _ 22 transactions _ NOUN NNS _ 20 dobj _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 PRIME _ ADJ JJ _ 2 amod _ _ 2 RATE _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 10 _ NUM CD _ 2 compound _ _ 2 1/2 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 base _ ADJ JJ _ 3 amod _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 on _ ADP IN _ 6 case _ _ 5 corporate _ ADJ JJ _ 6 amod _ _ 6 loans _ NOUN NNS _ 3 nmod _ _ 7 at _ ADP IN _ 13 case _ _ 8 large _ ADJ JJ _ 13 amod _ _ 9 U.S. _ PROPN NNP _ 13 compound _ _ 10 money _ NOUN NN _ 13 compound _ _ 11 center _ NOUN NN _ 13 compound _ _ 12 commercial _ ADJ JJ _ 13 amod _ _ 13 banks _ NOUN NNS _ 3 nmod _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 FEDERAL _ ADJ JJ _ 2 amod _ _ 2 FUNDS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 8 _ NUM CD _ 2 compound _ _ 2 13/16 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 0 root _ _ 4 high _ ADJ JJ _ 3 amod _ _ 5 , _ PUNCT , _ 3 punct _ _ 6 8 _ NUM CD _ 7 compound _ _ 7 1/2 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 3 appos _ _ 9 low _ ADJ JJ _ 8 amod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 8 _ NUM CD _ 12 compound _ _ 12 5/8 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 3 appos _ _ 14 near _ ADP IN _ 16 case _ _ 15 closing _ NOUN NN _ 16 compound _ _ 16 bid _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 8 _ NUM CD _ 19 compound _ _ 19 3/4 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 3 appos _ _ 21 offered _ VERB VBN _ 20 acl _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 Reserves _ NOUN NNS _ 0 root _ _ 2 traded _ VERB VBD _ 1 acl _ _ 3 among _ ADP IN _ 5 case _ _ 4 commercial _ ADJ JJ _ 5 amod _ _ 5 banks _ NOUN NNS _ 2 nmod _ _ 6 for _ ADP IN _ 8 case _ _ 7 overnight _ ADJ JJ _ 8 amod _ _ 8 use _ NOUN NN _ 2 nmod _ _ 9 in _ ADP IN _ 10 case _ _ 10 amounts _ NOUN NNS _ 2 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 $ _ SYM $ _ 10 nmod _ _ 13 1 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 or _ CONJ CC _ 12 cc _ _ 16 more _ ADJ JJR _ 12 conj _ _ 17 . _ PUNCT . _ 1 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Fulton _ PROPN NNP _ 9 compound _ _ 4 Prebon _ PROPN NNP _ 9 compound _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 U.S.A _ PROPN NNP _ 9 appos _ _ 7 . _ PUNCT . _ 6 punct _ _ 8 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 9 Inc _ PROPN NNP _ 1 dep _ _ 10 . _ PUNCT . _ 1 punct _ _ 1 DISCOUNT _ NOUN NN _ 2 compound _ _ 2 RATE _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 7 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 7 case _ _ 6 depository _ ADJ JJ _ 7 amod _ _ 7 institutions _ NOUN NNS _ 4 nmod _ _ 8 by _ ADP IN _ 14 case _ _ 9 the _ DET DT _ 14 det _ _ 10 New _ PROPN NNP _ 14 compound _ _ 11 York _ PROPN NNP _ 14 compound _ _ 12 Federal _ PROPN NNP _ 14 compound _ _ 13 Reserve _ PROPN NNP _ 14 compound _ _ 14 Bank _ PROPN NNP _ 2 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 CALL _ NOUN NN _ 2 compound _ _ 2 MONEY _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 9 _ NUM CD _ 6 compound _ _ 2 3/4 _ NUM CD _ 6 compound _ _ 3 % _ SYM NN _ 6 dep _ _ 4 to _ ADP TO _ 6 dep _ _ 5 10 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 charge _ NOUN NN _ 0 root _ _ 3 on _ ADP IN _ 4 case _ _ 4 loans _ NOUN NNS _ 2 nmod _ _ 5 to _ ADP TO _ 6 case _ _ 6 brokers _ NOUN NNS _ 4 nmod _ _ 7 on _ ADP IN _ 10 case _ _ 8 stock _ NOUN NN _ 10 compound _ _ 9 exchange _ NOUN NN _ 10 compound _ _ 10 collateral _ NOUN NN _ 2 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 placed _ VERB VBN _ 2 acl _ _ 4 directly _ ADV RB _ 3 advmod _ _ 5 by _ ADP IN _ 9 case _ _ 6 General _ PROPN NNP _ 9 compound _ _ 7 Motors _ PROPN NNP _ 9 compound _ _ 8 Acceptance _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 3 nmod _ _ 10 : _ PUNCT : _ 2 punct _ _ 1 8.60 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 30 _ NUM CD _ 5 compound _ _ 4 to _ ADP TO _ 5 dep _ _ 5 44 _ NUM CD _ 6 nummod _ _ 6 days _ NOUN NNS _ 2 nmod:npmod _ _ 7 ; _ PUNCT : _ 2 punct _ _ 8 8.55 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 2 dep _ _ 10 45 _ NUM CD _ 12 compound _ _ 11 to _ ADP TO _ 12 dep _ _ 12 59 _ NUM CD _ 13 nummod _ _ 13 days _ NOUN NNS _ 9 nmod:npmod _ _ 14 ; _ PUNCT : _ 2 punct _ _ 15 8.375 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 2 dep _ _ 17 60 _ NUM CD _ 19 compound _ _ 18 to _ ADP TO _ 19 dep _ _ 19 79 _ NUM CD _ 20 nummod _ _ 20 days _ NOUN NNS _ 16 nmod:npmod _ _ 21 ; _ PUNCT : _ 2 punct _ _ 22 8.50 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 2 dep _ _ 24 80 _ NUM CD _ 26 compound _ _ 25 to _ ADP TO _ 26 dep _ _ 26 89 _ NUM CD _ 27 nummod _ _ 27 days _ NOUN NNS _ 23 nmod:npmod _ _ 28 ; _ PUNCT : _ 2 punct _ _ 29 8.25 _ NUM CD _ 30 nummod _ _ 30 % _ SYM NN _ 2 dep _ _ 31 90 _ NUM CD _ 33 compound _ _ 32 to _ ADP TO _ 33 dep _ _ 33 119 _ NUM CD _ 34 nummod _ _ 34 days _ NOUN NNS _ 30 nmod:npmod _ _ 35 ; _ PUNCT : _ 2 punct _ _ 36 8.125 _ NUM CD _ 37 nummod _ _ 37 % _ SYM NN _ 2 dep _ _ 38 120 _ NUM CD _ 40 compound _ _ 39 to _ ADP TO _ 40 dep _ _ 40 149 _ NUM CD _ 41 nummod _ _ 41 days _ NOUN NNS _ 37 nmod:npmod _ _ 42 ; _ PUNCT : _ 2 punct _ _ 43 8 _ NUM CD _ 44 nummod _ _ 44 % _ SYM NN _ 2 dep _ _ 45 150 _ NUM CD _ 47 compound _ _ 46 to _ ADP TO _ 47 dep _ _ 47 179 _ NUM CD _ 48 nummod _ _ 48 days _ NOUN NNS _ 44 nmod:npmod _ _ 49 ; _ PUNCT : _ 2 punct _ _ 50 7.625 _ NUM CD _ 51 nummod _ _ 51 % _ SYM NN _ 2 dep _ _ 52 180 _ NUM CD _ 54 compound _ _ 53 to _ ADP TO _ 54 dep _ _ 54 270 _ NUM CD _ 55 nummod _ _ 55 days _ NOUN NNS _ 51 nmod:npmod _ _ 56 . _ PUNCT . _ 2 punct _ _ 1 COMMERCIAL _ ADJ JJ _ 2 amod _ _ 2 PAPER _ NOUN NN _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 High-grade _ ADJ JJ _ 3 amod _ _ 2 unsecured _ ADJ JJ _ 3 amod _ _ 3 notes _ NOUN NNS _ 0 root _ _ 4 sold _ VERB VBN _ 3 acl _ _ 5 through _ ADP IN _ 6 case _ _ 6 dealers _ NOUN NNS _ 4 nmod _ _ 7 by _ ADP IN _ 9 case _ _ 8 major _ ADJ JJ _ 9 amod _ _ 9 corporations _ NOUN NNS _ 4 nmod _ _ 10 in _ ADP IN _ 11 case _ _ 11 multiples _ NOUN NNS _ 4 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 $ _ SYM $ _ 14 dep _ _ 14 1,000 _ NUM CD _ 11 nmod _ _ 15 : _ PUNCT : _ 3 punct _ _ 1 8.65 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 30 _ NUM CD _ 4 nummod _ _ 4 days _ NOUN NNS _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.55 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 60 _ NUM CD _ 9 nummod _ _ 9 days _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.55 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 90 _ NUM CD _ 14 nummod _ _ 14 days _ NOUN NNS _ 12 nmod:npmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 CERTIFICATES _ NOUN NNS _ 0 root _ _ 2 OF _ ADP IN _ 3 case _ _ 3 DEPOSIT _ NOUN NN _ 1 nmod _ _ 4 : _ PUNCT : _ 1 punct _ _ 1 8.15 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 one _ NUM CD _ 4 nummod _ _ 4 month _ NOUN NN _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.15 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 months _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.13 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 months _ NOUN NNS _ 12 nmod:npmod _ _ 15 ; _ PUNCT : _ 2 punct _ _ 16 8.11 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 2 dep _ _ 18 six _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 2 punct _ _ 21 8.08 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 2 dep _ _ 23 one _ NUM CD _ 24 nummod _ _ 24 year _ NOUN NN _ 22 dep _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 Average _ NOUN NN _ 0 root _ _ 2 of _ ADP IN _ 4 case _ _ 3 top _ ADJ JJ _ 4 amod _ _ 4 rates _ NOUN NNS _ 1 nmod _ _ 5 paid _ VERB VBN _ 1 acl _ _ 6 by _ ADP IN _ 10 case _ _ 7 major _ ADJ JJ _ 10 amod _ _ 8 New _ PROPN NNP _ 10 compound _ _ 9 York _ PROPN NNP _ 10 compound _ _ 10 banks _ NOUN NNS _ 5 nmod _ _ 11 on _ ADP IN _ 14 case _ _ 12 primary _ ADJ JJ _ 14 amod _ _ 13 new _ ADJ JJ _ 14 amod _ _ 14 issues _ NOUN NNS _ 5 nmod _ _ 15 of _ ADP IN _ 17 case _ _ 16 negotiable _ ADJ JJ _ 17 amod _ _ 17 C.D.s _ NOUN NNS _ 14 nmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 usually _ ADV RB _ 21 advmod _ _ 20 on _ ADP IN _ 21 case _ _ 21 amounts _ NOUN NNS _ 5 nmod _ _ 22 of _ ADP IN _ 25 case _ _ 23 $ _ SYM $ _ 25 dep _ _ 24 1 _ NUM CD _ 25 nummod _ _ 25 million _ NUM CD _ 21 nmod _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 more _ ADJ JJR _ 25 conj _ _ 28 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 minimum _ ADJ JJ _ 3 amod _ _ 3 unit _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 $ _ SYM $ _ 6 dep _ _ 6 100,000 _ NUM CD _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Typical _ ADJ JJ _ 2 amod _ _ 2 rates _ NOUN NNS _ 0 root _ _ 3 in _ ADP IN _ 6 case _ _ 4 the _ DET DT _ 6 det _ _ 5 secondary _ ADJ JJ _ 6 amod _ _ 6 market _ NOUN NN _ 2 nmod _ _ 7 : _ PUNCT : _ 2 punct _ _ 1 8.65 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 one _ NUM CD _ 4 nummod _ _ 4 month _ NOUN NN _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.65 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 three _ NUM CD _ 9 nummod _ _ 9 months _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.55 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 six _ NUM CD _ 14 nummod _ _ 14 months _ NOUN NNS _ 12 nmod:npmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 BANKERS _ NOUN NNS _ 2 compound _ _ 2 ACCEPTANCES _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 8.52 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 30 _ NUM CD _ 4 nummod _ _ 4 days _ NOUN NNS _ 2 nmod:npmod _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 8.37 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 60 _ NUM CD _ 9 nummod _ _ 9 days _ NOUN NNS _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 2 punct _ _ 11 8.15 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 2 dep _ _ 13 90 _ NUM CD _ 14 nummod _ _ 14 days _ NOUN NNS _ 12 nmod:npmod _ _ 15 ; _ PUNCT : _ 2 punct _ _ 16 7.98 _ NUM CD _ 17 nummod _ _ 17 % _ SYM NN _ 2 dep _ _ 18 120 _ NUM CD _ 19 nummod _ _ 19 days _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 2 punct _ _ 21 7.92 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 2 dep _ _ 23 150 _ NUM CD _ 24 nummod _ _ 24 days _ NOUN NNS _ 22 nmod:npmod _ _ 25 ; _ PUNCT : _ 2 punct _ _ 26 7.80 _ NUM CD _ 27 nummod _ _ 27 % _ SYM NN _ 2 dep _ _ 28 180 _ NUM CD _ 29 nummod _ _ 29 days _ NOUN NNS _ 27 nmod:npmod _ _ 30 . _ PUNCT . _ 2 punct _ _ 1 Negotiable _ ADJ JJ _ 6 amod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 bank-backed _ ADJ JJ _ 6 amod _ _ 4 business _ NOUN NN _ 6 compound _ _ 5 credit _ NOUN NN _ 6 compound _ _ 6 instruments _ NOUN NNS _ 0 root _ _ 7 typically _ ADV RB _ 8 advmod _ _ 8 financing _ VERB VBG _ 6 acl _ _ 9 an _ DET DT _ 11 det _ _ 10 import _ NOUN NN _ 11 compound _ _ 11 order _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 6 punct _ _ 1 LONDON _ PROPN NNP _ 3 compound _ _ 2 LATE _ ADJ JJ _ 3 amod _ _ 3 EURODOLLARS _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 1 8 _ NUM CD _ 7 compound _ _ 2 13/16 _ NUM CD _ 7 compound _ _ 3 % _ SYM NN _ 7 dep _ _ 4 to _ ADP TO _ 7 dep _ _ 5 8 _ NUM CD _ 7 compound _ _ 6 11/16 _ NUM CD _ 7 compound _ _ 7 % _ SYM NN _ 0 root _ _ 8 one _ NUM CD _ 9 nummod _ _ 9 month _ NOUN NN _ 7 nmod:npmod _ _ 10 ; _ PUNCT : _ 7 punct _ _ 11 8 _ NUM CD _ 17 compound _ _ 12 13/16 _ NUM CD _ 17 compound _ _ 13 % _ SYM NN _ 17 dep _ _ 14 to _ ADP TO _ 17 dep _ _ 15 8 _ NUM CD _ 17 compound _ _ 16 11/16 _ NUM CD _ 17 compound _ _ 17 % _ SYM NN _ 7 dep _ _ 18 two _ NUM CD _ 19 nummod _ _ 19 months _ NOUN NNS _ 17 nmod:npmod _ _ 20 ; _ PUNCT : _ 7 punct _ _ 21 8 _ NUM CD _ 27 compound _ _ 22 13/16 _ NUM CD _ 27 compound _ _ 23 % _ SYM NN _ 27 dep _ _ 24 to _ ADP TO _ 27 dep _ _ 25 8 _ NUM CD _ 27 compound _ _ 26 11/16 _ NUM CD _ 27 compound _ _ 27 % _ SYM NN _ 7 dep _ _ 28 three _ NUM CD _ 29 nummod _ _ 29 months _ NOUN NNS _ 27 nmod:npmod _ _ 30 ; _ PUNCT : _ 7 punct _ _ 31 8 _ NUM CD _ 37 compound _ _ 32 3/4 _ NUM CD _ 37 compound _ _ 33 % _ SYM NN _ 37 dep _ _ 34 to _ ADP TO _ 37 dep _ _ 35 8 _ NUM CD _ 37 compound _ _ 36 5/8 _ NUM CD _ 37 compound _ _ 37 % _ SYM NN _ 7 dep _ _ 38 four _ NUM CD _ 39 nummod _ _ 39 months _ NOUN NNS _ 37 nmod:npmod _ _ 40 ; _ PUNCT : _ 7 punct _ _ 41 8 _ NUM CD _ 47 compound _ _ 42 11/16 _ NUM CD _ 47 compound _ _ 43 % _ SYM NN _ 47 dep _ _ 44 to _ ADP TO _ 47 dep _ _ 45 8 _ NUM CD _ 47 compound _ _ 46 9/16 _ NUM CD _ 47 compound _ _ 47 % _ SYM NN _ 7 dep _ _ 48 five _ NUM CD _ 49 nummod _ _ 49 months _ NOUN NNS _ 47 nmod:npmod _ _ 50 ; _ PUNCT : _ 7 punct _ _ 51 8 _ NUM CD _ 57 compound _ _ 52 5/8 _ NUM CD _ 57 compound _ _ 53 % _ SYM NN _ 57 dep _ _ 54 to _ ADP TO _ 57 dep _ _ 55 8 _ NUM CD _ 57 compound _ _ 56 1/2 _ NUM CD _ 57 compound _ _ 57 % _ SYM NN _ 7 dep _ _ 58 six _ NUM CD _ 59 nummod _ _ 59 months _ NOUN NNS _ 57 nmod:npmod _ _ 60 . _ PUNCT . _ 7 punct _ _ 1 LONDON _ PROPN NNP _ 4 compound _ _ 2 INTERBANK _ ADV RB _ 4 advmod _ _ 3 OFFERED _ VERB VBN _ 4 amod _ _ 4 RATES _ NOUN NNS _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 LIBOR _ PROPN NNP _ 4 appos _ _ 7 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 8 : _ PUNCT : _ 4 punct _ _ 1 8 _ NUM CD _ 2 compound _ _ 2 3/4 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 0 root _ _ 4 one _ NUM CD _ 5 nummod _ _ 5 month _ NOUN NN _ 3 nmod:npmod _ _ 6 ; _ PUNCT : _ 3 punct _ _ 7 8 _ NUM CD _ 8 compound _ _ 8 3/4 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 3 dep _ _ 10 three _ NUM CD _ 11 nummod _ _ 11 months _ NOUN NNS _ 9 nmod:npmod _ _ 12 ; _ PUNCT : _ 3 punct _ _ 13 8 _ NUM CD _ 14 compound _ _ 14 9/16 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 3 dep _ _ 16 six _ NUM CD _ 17 nummod _ _ 17 months _ NOUN NNS _ 15 nmod:npmod _ _ 18 ; _ PUNCT : _ 3 punct _ _ 19 8 _ NUM CD _ 20 compound _ _ 20 9/16 _ NUM CD _ 21 nummod _ _ 21 % _ SYM NN _ 3 dep _ _ 22 one _ NUM CD _ 23 nummod _ _ 23 year _ NOUN NN _ 21 dep _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 average _ NOUN NN _ 0 root _ _ 3 of _ ADP IN _ 6 case _ _ 4 interbank _ ADV RB _ 6 advmod _ _ 5 offered _ VERB VBN _ 6 amod _ _ 6 rates _ NOUN NNS _ 2 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 dollar _ NOUN NN _ 9 compound _ _ 9 deposits _ NOUN NNS _ 6 nmod _ _ 10 in _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 London _ PROPN NNP _ 13 compound _ _ 13 market _ NOUN NN _ 2 nmod _ _ 14 based _ VERB VBN _ 16 case _ _ 15 on _ ADP IN _ 16 case _ _ 16 quotations _ NOUN NNS _ 2 nmod _ _ 17 at _ ADP IN _ 20 case _ _ 18 five _ NUM CD _ 20 nummod _ _ 19 major _ ADJ JJ _ 20 amod _ _ 20 banks _ NOUN NNS _ 16 nmod _ _ 21 . _ PUNCT . _ 2 punct _ _ 1 FOREIGN _ ADJ JJ _ 3 amod _ _ 2 PRIME _ ADJ JJ _ 3 amod _ _ 3 RATES _ NOUN NNS _ 0 root _ _ 4 : _ PUNCT : _ 3 punct _ _ 1 Canada _ PROPN NNP _ 0 root _ _ 2 13.50 _ NUM CD _ 3 nummod _ _ 3 % _ SYM NN _ 1 dep _ _ 4 ; _ PUNCT : _ 1 punct _ _ 5 Germany _ PROPN NNP _ 1 dep _ _ 6 8.50 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 5 dep _ _ 8 ; _ PUNCT : _ 1 punct _ _ 9 Japan _ PROPN NNP _ 1 dep _ _ 10 4.875 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dep _ _ 12 ; _ PUNCT : _ 1 punct _ _ 13 Switzerland _ PROPN NNP _ 1 dep _ _ 14 8.50 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dep _ _ 16 ; _ PUNCT : _ 1 punct _ _ 17 Britain _ PROPN NNP _ 1 dep _ _ 18 15 _ NUM CD _ 19 nummod _ _ 19 % _ SYM NN _ 17 dep _ _ 20 . _ PUNCT . _ 1 punct _ _ 1 These _ DET DT _ 3 det _ _ 2 rate _ NOUN NN _ 3 compound _ _ 3 indications _ NOUN NNS _ 7 nsubj _ _ 4 are _ VERB VBP _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 directly _ ADV RB _ 7 advmod _ _ 7 comparable _ ADJ JJ _ 0 root _ _ 8 ; _ PUNCT : _ 7 punct _ _ 9 lending _ NOUN NN _ 10 compound _ _ 10 practices _ NOUN NNS _ 11 nsubj _ _ 11 vary _ VERB VBP _ 7 parataxis _ _ 12 widely _ ADV RB _ 11 advmod _ _ 13 by _ ADP IN _ 14 case _ _ 14 location _ NOUN NN _ 11 nmod _ _ 15 . _ PUNCT . _ 7 punct _ _ 1 TREASURY _ NOUN NN _ 2 compound _ _ 2 BILLS _ NOUN NNS _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 1 Results _ NOUN NNS _ 0 root _ _ 2 of _ ADP IN _ 11 case _ _ 3 the _ DET DT _ 11 det _ _ 4 Tuesday _ PROPN NNP _ 11 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 October _ PROPN NNP _ 4 dep _ _ 7 10 _ NUM CD _ 4 dep _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 1989 _ NUM CD _ 4 dep _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 auction _ NOUN NN _ 1 nmod _ _ 12 of _ ADP IN _ 16 case _ _ 13 short-term _ ADJ JJ _ 16 amod _ _ 14 U.S. _ PROPN NNP _ 16 compound _ _ 15 government _ NOUN NN _ 16 compound _ _ 16 bills _ NOUN NNS _ 11 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 sold _ VERB VBN _ 16 acl _ _ 19 at _ ADP IN _ 21 case _ _ 20 a _ DET DT _ 21 det _ _ 21 discount _ NOUN NN _ 18 nmod _ _ 22 from _ ADP IN _ 24 case _ _ 23 face _ NOUN NN _ 24 compound _ _ 24 value _ NOUN NN _ 21 nmod _ _ 25 in _ ADP IN _ 26 case _ _ 26 units _ NOUN NNS _ 18 nmod _ _ 27 of _ ADP IN _ 31 case _ _ 28 $ _ SYM $ _ 31 dep _ _ 29 10,000 _ NUM CD _ 31 compound _ _ 30 to _ ADP TO _ 31 dep _ _ 31 $ _ SYM $ _ 26 nmod _ _ 32 1 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 : _ PUNCT : _ 1 punct _ _ 1 7.63 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 13 _ NUM CD _ 4 nummod _ _ 4 weeks _ NOUN NNS _ 2 dep _ _ 5 ; _ PUNCT : _ 2 punct _ _ 6 7.60 _ NUM CD _ 7 nummod _ _ 7 % _ SYM NN _ 2 dep _ _ 8 26 _ NUM CD _ 9 nummod _ _ 9 weeks _ NOUN NNS _ 7 dep _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 FEDERAL _ PROPN NNP _ 5 compound _ _ 2 HOME _ PROPN NNP _ 5 compound _ _ 3 LOAN _ PROPN NNP _ 5 compound _ _ 4 MORTGAGE _ PROPN NNP _ 5 compound _ _ 5 CORP _ PROPN NNP _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 7 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 8 Freddie _ PROPN NNP _ 9 compound _ _ 9 Mac _ PROPN NNP _ 5 appos _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 : _ PUNCT : _ 5 punct _ _ 1 Posted _ VERB VBN _ 2 amod _ _ 2 yields _ NOUN NNS _ 0 root _ _ 3 on _ ADP IN _ 6 case _ _ 4 30-year _ ADJ JJ _ 6 amod _ _ 5 mortgage _ NOUN NN _ 6 compound _ _ 6 commitments _ NOUN NNS _ 2 nmod _ _ 7 for _ ADP IN _ 8 case _ _ 8 delivery _ NOUN NN _ 6 nmod _ _ 9 within _ ADP IN _ 11 case _ _ 10 30 _ NUM CD _ 11 nummod _ _ 11 days _ NOUN NNS _ 8 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 9.91 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 standard _ ADJ JJ _ 7 amod _ _ 5 conventional _ ADJ JJ _ 7 amod _ _ 6 fixedrate _ ADJ JJ _ 7 amod _ _ 7 mortgages _ NOUN NNS _ 2 appos _ _ 8 ; _ PUNCT : _ 2 punct _ _ 9 7.875 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 2 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 2 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 19 amod _ _ 14 rate _ NOUN NN _ 15 dep _ _ 15 capped _ VERB VBN _ 19 amod _ _ 16 one-year _ ADJ JJ _ 19 amod _ _ 17 adjustable _ ADJ JJ _ 19 amod _ _ 18 rate _ NOUN NN _ 19 compound _ _ 19 mortgages _ NOUN NNS _ 10 appos _ _ 20 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNP _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 FEDERAL _ PROPN NNP _ 4 compound _ _ 2 NATIONAL _ PROPN NNP _ 4 compound _ _ 3 MORTGAGE _ PROPN NNP _ 4 compound _ _ 4 ASSOCIATION _ PROPN NNP _ 0 root _ _ 5 -LRB- _ PUNCT -LRB- _ 7 punct _ _ 6 Fannie _ PROPN NNP _ 7 compound _ _ 7 Mae _ PROPN NNP _ 4 appos _ _ 8 -RRB- _ PUNCT -RRB- _ 7 punct _ _ 9 : _ PUNCT : _ 4 punct _ _ 1 Posted _ VERB VBN _ 2 amod _ _ 2 yields _ NOUN NNS _ 0 root _ _ 3 on _ ADP IN _ 7 case _ _ 4 30 _ NUM CD _ 5 compound _ _ 5 year _ NOUN NN _ 7 amod _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 commitments _ NOUN NNS _ 2 nmod _ _ 8 for _ ADP IN _ 9 case _ _ 9 delivery _ NOUN NN _ 7 nmod _ _ 10 within _ ADP IN _ 12 case _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 9 nmod _ _ 13 -LRB- _ PUNCT -LRB- _ 14 punct _ _ 14 priced _ VERB VBN _ 7 dep _ _ 15 at _ ADP IN _ 16 case _ _ 16 par _ NOUN NN _ 14 nmod _ _ 17 -RRB- _ PUNCT -RRB- _ 14 punct _ _ 1 9.86 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 standard _ ADJ JJ _ 7 amod _ _ 5 conventional _ ADJ JJ _ 7 amod _ _ 6 fixed-rate _ ADJ JJ _ 7 amod _ _ 7 mortgages _ NOUN NNS _ 2 appos _ _ 8 ; _ PUNCT : _ 2 punct _ _ 9 8.85 _ NUM CD _ 10 nummod _ _ 10 % _ SYM NN _ 2 dep _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 6/2 _ NUM CD _ 18 nummod _ _ 13 rate _ NOUN NN _ 18 amod _ _ 14 capped _ VERB VBD _ 13 dep _ _ 15 one-year _ ADJ JJ _ 18 amod _ _ 16 adjustable _ ADJ JJ _ 18 amod _ _ 17 rate _ NOUN NN _ 18 compound _ _ 18 mortgages _ NOUN NNS _ 10 appos _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Source _ NOUN NN _ 0 root _ _ 2 : _ PUNCT : _ 1 punct _ _ 3 Telerate _ PROPN NNP _ 5 compound _ _ 4 Systems _ PROPN NNP _ 5 compound _ _ 5 Inc _ PROPN NNP _ 1 dep _ _ 6 . _ PUNCT . _ 1 punct _ _ 1 MERRILL _ PROPN NNP _ 5 compound _ _ 2 LYNCH _ PROPN NNP _ 5 compound _ _ 3 READY _ PROPN NNP _ 5 compound _ _ 4 ASSETS _ PROPN NNP _ 5 compound _ _ 5 TRUST _ PROPN NNP _ 0 root _ _ 6 : _ PUNCT : _ 5 punct _ _ 1 8.33 _ NUM CD _ 2 nummod _ _ 2 % _ SYM NN _ 0 root _ _ 3 . _ PUNCT . _ 2 punct _ _ 1 Annualized _ ADJ JJ _ 3 amod _ _ 2 average _ ADJ JJ _ 3 amod _ _ 3 rate _ NOUN NN _ 0 root _ _ 4 of _ ADP IN _ 5 case _ _ 5 return _ NOUN NN _ 3 nmod _ _ 6 after _ ADP IN _ 7 case _ _ 7 expenses _ NOUN NNS _ 3 nmod _ _ 8 for _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 past _ ADJ JJ _ 12 amod _ _ 11 30 _ NUM CD _ 12 nummod _ _ 12 days _ NOUN NNS _ 3 nmod _ _ 13 ; _ PUNCT : _ 3 punct _ _ 14 not _ ADV RB _ 3 neg _ _ 15 a _ DET DT _ 16 det _ _ 16 forecast _ NOUN NN _ 3 dep _ _ 17 of _ ADP IN _ 19 case _ _ 18 future _ ADJ JJ _ 19 amod _ _ 19 returns _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 3 punct _ _ 1 Pension _ NOUN NN _ 2 compound _ _ 2 funds _ NOUN NNS _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 insurers _ NOUN NNS _ 2 conj _ _ 5 and _ CONJ CC _ 2 cc _ _ 6 other _ ADJ JJ _ 7 amod _ _ 7 behemoths _ NOUN NNS _ 2 conj _ _ 8 of _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 investing _ NOUN NN _ 11 compound _ _ 11 world _ NOUN NN _ 7 nmod _ _ 12 said _ VERB VBD _ 0 root _ _ 13 they _ PRON PRP _ 14 nsubj _ _ 14 began _ VERB VBD _ 12 ccomp _ _ 15 scooping _ VERB VBG _ 14 xcomp _ _ 16 up _ ADP RP _ 15 compound:prt _ _ 17 stocks _ NOUN NNS _ 15 dobj _ _ 18 during _ ADP IN _ 22 case _ _ 19 Friday _ PROPN NNP _ 22 nmod:poss _ _ 20 's _ PART POS _ 19 case _ _ 21 market _ NOUN NN _ 22 compound _ _ 22 rout _ NOUN NN _ 15 nmod _ _ 23 . _ PUNCT . _ 12 punct _ _ 1 And _ CONJ CC _ 3 cc _ _ 2 they _ PRON PRP _ 3 nsubj _ _ 3 plan _ VERB VBP _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 buy _ VERB VB _ 3 xcomp _ _ 6 more _ ADJ JJR _ 5 dobj _ _ 7 today _ NOUN NN _ 5 nmod:tmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Rightly _ ADV RB _ 9 advmod _ _ 2 or _ CONJ CC _ 1 cc _ _ 3 wrongly _ ADV RB _ 1 conj _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 many _ ADJ JJ _ 8 amod _ _ 6 giant _ ADJ JJ _ 8 amod _ _ 7 institutional _ ADJ JJ _ 8 amod _ _ 8 investors _ NOUN NNS _ 9 nsubj _ _ 9 appear _ VERB VBP _ 0 root _ _ 10 to _ PART TO _ 12 mark _ _ 11 be _ AUX VB _ 12 aux _ _ 12 fighting _ VERB VBG _ 9 xcomp _ _ 13 the _ DET DT _ 15 det _ _ 14 latest _ ADJ JJS _ 15 amod _ _ 15 war _ NOUN NN _ 12 dobj _ _ 16 by _ SCONJ IN _ 17 mark _ _ 17 applying _ VERB VBG _ 12 advcl _ _ 18 the _ DET DT _ 19 det _ _ 19 lesson _ NOUN NN _ 17 dobj _ _ 20 they _ PRON PRP _ 21 nsubj _ _ 21 learned _ VERB VBD _ 19 acl:relcl _ _ 22 in _ ADP IN _ 26 case _ _ 23 the _ DET DT _ 26 det _ _ 24 October _ PROPN NNP _ 26 compound _ _ 25 1987 _ NUM CD _ 26 nummod _ _ 26 crash _ NOUN NN _ 21 nmod _ _ 27 : _ PUNCT : _ 19 punct _ _ 28 Buying _ VERB VBG _ 32 csubj _ _ 29 at _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 bottom _ NOUN NN _ 28 nmod _ _ 32 pays _ VERB VBZ _ 19 parataxis _ _ 33 off _ ADP RP _ 32 compound:prt _ _ 34 . _ PUNCT . _ 9 punct _ _ 1 To _ PART TO _ 3 mark _ _ 2 be _ VERB VB _ 3 cop _ _ 3 sure _ ADJ JJ _ 8 advcl _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 investors _ NOUN NNS _ 8 nsubj _ _ 7 might _ AUX MD _ 8 aux _ _ 8 put _ VERB VB _ 0 root _ _ 9 away _ ADP RP _ 8 compound:prt _ _ 10 their _ PRON PRP$ _ 11 nmod:poss _ _ 11 checkbooks _ NOUN NNS _ 8 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 hurry _ NOUN NN _ 8 nmod _ _ 15 if _ SCONJ IN _ 17 mark _ _ 16 stocks _ NOUN NNS _ 17 nsubj _ _ 17 open _ VERB VBP _ 8 advcl _ _ 18 sharply _ ADV RB _ 19 advmod _ _ 19 lower _ ADJ JJR _ 17 advmod _ _ 20 today _ NOUN NN _ 17 nmod:tmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 could _ AUX MD _ 4 aux _ _ 3 still _ ADV RB _ 4 advmod _ _ 4 panic _ VERB VB _ 0 root _ _ 5 and _ CONJ CC _ 4 cc _ _ 6 bail _ VERB VB _ 4 conj _ _ 7 out _ ADP RP _ 6 compound:prt _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 6 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 their _ PRON PRP$ _ 4 nmod:poss _ _ 3 1987 _ NUM CD _ 4 nummod _ _ 4 performance _ NOUN NN _ 5 nsubj _ _ 5 indicates _ VERB VBZ _ 0 root _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 wo _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 abandon _ VERB VB _ 5 ccomp _ _ 11 stocks _ NOUN NNS _ 10 dobj _ _ 12 unless _ SCONJ IN _ 14 mark _ _ 13 conditions _ NOUN NNS _ 14 nsubj _ _ 14 get _ VERB VBP _ 10 advcl _ _ 15 far _ ADV RB _ 16 advmod _ _ 16 worse _ ADJ JJR _ 14 xcomp _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 Last _ ADJ JJ _ 3 amod _ _ 3 time _ NOUN NN _ 7 nmod:tmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 we _ PRON PRP _ 7 nsubjpass _ _ 6 got _ AUX VBD _ 7 auxpass _ _ 7 rewarded _ VERB VBN _ 22 ccomp _ _ 8 for _ SCONJ IN _ 9 mark _ _ 9 going _ VERB VBG _ 7 advcl _ _ 10 out _ ADV RB _ 9 advmod _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 buying _ VERB VBG _ 9 conj _ _ 13 stocks _ NOUN NNS _ 12 dobj _ _ 14 when _ ADV WRB _ 19 advmod _ _ 15 the _ DET DT _ 16 det _ _ 16 panic _ NOUN NN _ 19 nsubj _ _ 17 was _ VERB VBD _ 19 cop _ _ 18 the _ DET DT _ 19 det _ _ 19 worst _ ADJ JJS _ 9 advcl _ _ 20 , _ PUNCT , _ 22 punct _ _ 21 '' _ PUNCT '' _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 John _ PROPN NNP _ 25 compound _ _ 24 W. _ PROPN NNP _ 25 compound _ _ 25 Rogers _ PROPN NNP _ 22 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 president _ NOUN NN _ 25 appos _ _ 28 of _ ADP IN _ 33 case _ _ 29 Chicago-based _ ADJ JJ _ 33 amod _ _ 30 Ariel _ PROPN NNP _ 33 compound _ _ 31 Capital _ PROPN NNP _ 33 compound _ _ 32 Management _ PROPN NNP _ 33 compound _ _ 33 Inc. _ PROPN NNP _ 27 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 which _ PRON WDT _ 36 nsubj _ _ 36 manages _ VERB VBZ _ 33 acl:relcl _ _ 37 $ _ SYM $ _ 36 dobj _ _ 38 1.1 _ NUM CD _ 39 compound _ _ 39 billion _ NUM CD _ 37 nummod _ _ 40 of _ ADP IN _ 41 case _ _ 41 stocks _ NOUN NNS _ 37 nmod _ _ 42 . _ PUNCT . _ 22 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Rogers _ PROPN NNP _ 3 nsubj _ _ 3 spent _ VERB VBD _ 0 root _ _ 4 half _ DET PDT _ 6 det:predet _ _ 5 his _ PRON PRP$ _ 6 nmod:poss _ _ 6 cash _ NOUN NN _ 3 dobj _ _ 7 on _ ADP IN _ 8 case _ _ 8 hand _ NOUN NN _ 6 nmod _ _ 9 Friday _ PROPN NNP _ 3 nmod:tmod _ _ 10 for _ ADP IN _ 14 case _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 our _ PRON PRP$ _ 14 nmod:poss _ _ 13 favorite _ ADJ JJ _ 14 amod _ _ 14 stocks _ NOUN NNS _ 3 nmod _ _ 15 that _ PRON WDT _ 17 nsubj _ _ 16 have _ AUX VBP _ 17 aux _ _ 17 fallen _ VERB VBN _ 14 acl:relcl _ _ 18 apart _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 20 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 invest _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 6 det _ _ 6 rest _ NOUN NN _ 4 dobj _ _ 7 if _ SCONJ IN _ 10 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 10 nsubj _ _ 10 weakens _ VERB VBZ _ 4 advcl _ _ 11 further _ ADV RB _ 10 advmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 Denver-based _ ADJ JJ _ 5 amod _ _ 2 portfolio _ NOUN NN _ 5 compound _ _ 3 manager _ NOUN NN _ 5 compound _ _ 4 James _ PROPN NNP _ 5 compound _ _ 5 Craig _ PROPN NNP _ 8 nsubjpass _ _ 6 was _ AUX VBD _ 8 auxpass _ _ 7 n't _ PART RB _ 8 neg _ _ 8 daunted _ VERB VBD _ 0 root _ _ 9 when _ ADV WRB _ 13 advmod _ _ 10 Friday _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 rout _ NOUN NN _ 13 nsubj _ _ 13 shaved _ VERB VBD _ 8 advcl _ _ 14 $ _ SYM $ _ 13 dobj _ _ 15 40 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 from _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 value _ NOUN NN _ 13 nmod _ _ 20 of _ ADP IN _ 26 case _ _ 21 the _ DET DT _ 26 det _ _ 22 $ _ SYM $ _ 26 amod _ _ 23 752 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 Janus _ PROPN NNP _ 26 compound _ _ 26 Fund _ PROPN NNP _ 19 nmod _ _ 27 he _ PRON PRP _ 28 nsubj _ _ 28 oversees _ VERB VBZ _ 26 acl:relcl _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 waited _ VERB VBD _ 17 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 make _ VERB VB _ 3 xcomp _ _ 6 sure _ ADJ JJ _ 5 xcomp _ _ 7 all _ DET PDT _ 10 det:predet _ _ 8 the _ DET DT _ 10 det _ _ 9 program _ NOUN NN _ 10 compound _ _ 10 trades _ NOUN NNS _ 12 nsubj _ _ 11 had _ AUX VBD _ 12 aux _ _ 12 kicked _ VERB VBN _ 6 ccomp _ _ 13 through _ ADP RP _ 12 compound:prt _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 said _ VERB VBD _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 Then _ ADV RB _ 3 advmod _ _ 2 he _ PRON PRP _ 3 nsubj _ _ 3 jumped _ VERB VBD _ 0 root _ _ 4 into _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 market _ NOUN NN _ 3 nmod _ _ 7 : _ PUNCT : _ 3 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 spent _ VERB VBD _ 0 root _ _ 4 $ _ SYM $ _ 3 dobj _ _ 5 30 _ NUM CD _ 6 compound _ _ 6 million _ NUM CD _ 4 nummod _ _ 7 in _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 last _ ADJ JJ _ 10 amod _ _ 10 half-hour _ NOUN NN _ 3 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 money _ NOUN NN _ 3 compound _ _ 3 managers _ NOUN NNS _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 opened _ VERB VBD _ 0 root _ _ 6 their _ PRON PRP$ _ 7 nmod:poss _ _ 7 wallets _ NOUN NNS _ 5 dobj _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 was _ AUX VBD _ 4 aux _ _ 4 buying _ VERB VBG _ 27 ccomp _ _ 5 at _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 close _ ADJ JJ _ 4 nmod _ _ 8 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 9 Friday _ PROPN NNP _ 4 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 and _ CONJ CC _ 4 cc _ _ 12 I _ PRON PRP _ 15 nsubj _ _ 13 'll _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 aux _ _ 15 buying _ VERB VBG _ 4 conj _ _ 16 again _ ADV RB _ 15 advmod _ _ 17 because _ SCONJ IN _ 19 mark _ _ 18 I _ PRON PRP _ 19 nsubj _ _ 19 know _ VERB VBP _ 15 advcl _ _ 20 we _ PRON PRP _ 22 nsubj _ _ 21 're _ AUX VBP _ 22 aux _ _ 22 getting _ VERB VBG _ 19 ccomp _ _ 23 good _ ADJ JJ _ 24 amod _ _ 24 value _ NOUN NN _ 22 dobj _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Frederick _ PROPN NNP _ 30 compound _ _ 29 A. _ PROPN NNP _ 30 compound _ _ 30 Moran _ PROPN NNP _ 27 nsubj _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 president _ NOUN NN _ 30 appos _ _ 33 of _ ADP IN _ 37 case _ _ 34 Moran _ PROPN NNP _ 37 compound _ _ 35 Asset _ PROPN NNP _ 37 compound _ _ 36 Management _ PROPN NNP _ 37 compound _ _ 37 Inc. _ PROPN NNP _ 32 nmod _ _ 38 , _ PUNCT , _ 37 punct _ _ 39 Greenwich _ PROPN NNP _ 37 appos _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 Conn _ PROPN NNP _ 39 appos _ _ 42 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 no _ DET DT _ 5 neg _ _ 5 justification _ NOUN NN _ 3 nsubj _ _ 6 on _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 fundamental _ ADJ JJ _ 9 amod _ _ 9 level _ NOUN NN _ 3 nmod _ _ 10 for _ ADP IN _ 12 case _ _ 11 this _ DET DT _ 12 det _ _ 12 crash _ NOUN NN _ 3 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 14 '' _ PUNCT '' _ 3 punct _ _ 1 Unlike _ ADP IN _ 3 case _ _ 2 mutual _ ADJ JJ _ 3 amod _ _ 3 funds _ NOUN NNS _ 29 nmod _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 8 nsubjpass _ _ 6 can _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 forced _ VERB VBN _ 3 acl:relcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 sell _ VERB VB _ 8 xcomp _ _ 11 stockholdings _ NOUN NNS _ 10 dobj _ _ 12 when _ ADV WRB _ 14 advmod _ _ 13 investors _ NOUN NNS _ 14 nsubj _ _ 14 rush _ VERB VBP _ 10 advcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 withdraw _ VERB VB _ 14 xcomp _ _ 17 money _ NOUN NN _ 16 dobj _ _ 18 , _ PUNCT , _ 29 punct _ _ 19 big _ ADJ JJ _ 20 amod _ _ 20 investors _ NOUN NNS _ 29 nsubj _ _ 21 such _ ADJ JJ _ 24 case _ _ 22 as _ ADP IN _ 21 mwe _ _ 23 pension _ NOUN NN _ 24 compound _ _ 24 funds _ NOUN NNS _ 20 nmod _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 insurance _ NOUN NN _ 27 compound _ _ 27 companies _ NOUN NNS _ 24 conj _ _ 28 can _ AUX MD _ 29 aux _ _ 29 decide _ VERB VB _ 0 root _ _ 30 to _ PART TO _ 31 mark _ _ 31 ride _ VERB VB _ 29 xcomp _ _ 32 out _ ADP RP _ 31 compound:prt _ _ 33 market _ NOUN NN _ 34 compound _ _ 34 storms _ NOUN NNS _ 31 dobj _ _ 35 without _ SCONJ IN _ 36 mark _ _ 36 jettisoning _ VERB VBG _ 31 advcl _ _ 37 stock _ NOUN NN _ 36 dobj _ _ 38 . _ PUNCT . _ 29 punct _ _ 1 Most _ ADV RBS _ 2 advmod _ _ 2 often _ ADV RB _ 5 advmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 they _ PRON PRP _ 5 nsubj _ _ 5 do _ VERB VBP _ 0 root _ _ 6 just _ ADV RB _ 7 advmod _ _ 7 that _ DET DT _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 because _ SCONJ IN _ 12 mark _ _ 10 stocks _ NOUN NNS _ 12 nsubj _ _ 11 have _ AUX VBP _ 12 aux _ _ 12 proved _ VERB VBN _ 5 advcl _ _ 13 to _ PART TO _ 18 mark _ _ 14 be _ VERB VB _ 18 cop _ _ 15 the _ DET DT _ 18 det _ _ 16 best-performing _ ADJ JJ _ 18 amod _ _ 17 long-term _ ADJ JJ _ 18 amod _ _ 18 investment _ NOUN NN _ 12 xcomp _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 attracting _ VERB VBG _ 18 advcl _ _ 21 about _ ADV RB _ 22 advmod _ _ 22 $ _ SYM $ _ 20 dobj _ _ 23 1 _ NUM CD _ 24 compound _ _ 24 trillion _ NUM CD _ 22 nummod _ _ 25 from _ ADP IN _ 27 case _ _ 26 pension _ NOUN NN _ 27 compound _ _ 27 funds _ NOUN NNS _ 20 nmod _ _ 28 alone _ ADV RB _ 27 amod _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 If _ SCONJ IN _ 4 mark _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 bought _ VERB VBD _ 10 advcl _ _ 5 after _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 crash _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 you _ PRON PRP _ 10 nsubj _ _ 10 did _ VERB VBD _ 19 ccomp _ _ 11 very _ ADV RB _ 13 advmod _ _ 12 very _ ADV RB _ 13 advmod _ _ 13 well _ ADV RB _ 10 advmod _ _ 14 off _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 bottom _ NOUN NN _ 10 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 Stephen _ PROPN NNP _ 22 compound _ _ 21 B. _ PROPN NNP _ 22 compound _ _ 22 Timbers _ PROPN NNP _ 19 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 chief _ ADJ JJ _ 26 amod _ _ 25 investment _ NOUN NN _ 26 compound _ _ 26 officer _ NOUN NN _ 22 appos _ _ 27 of _ ADP IN _ 32 case _ _ 28 Chicago-based _ ADJ JJ _ 32 amod _ _ 29 Kemper _ PROPN NNP _ 32 compound _ _ 30 Financial _ PROPN NNP _ 32 compound _ _ 31 Services _ PROPN NNP _ 32 compound _ _ 32 Inc _ PROPN NNP _ 26 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 The _ DET DT _ 9 det _ _ 2 $ _ SYM $ _ 9 amod _ _ 3 56 _ NUM CD _ 4 compound _ _ 4 billion _ NUM CD _ 2 nummod _ _ 5 California _ PROPN NNP _ 9 compound _ _ 6 Public _ PROPN NNP _ 9 compound _ _ 7 Employees _ PROPN NNP _ 9 compound _ _ 8 Retirement _ PROPN NNP _ 9 compound _ _ 9 System _ PROPN NNP _ 14 nsubj _ _ 10 , _ PUNCT , _ 14 punct _ _ 11 for _ ADP IN _ 12 case _ _ 12 one _ NUM CD _ 14 nmod _ _ 13 , _ PUNCT , _ 14 punct _ _ 14 added _ VERB VBD _ 0 root _ _ 15 $ _ SYM $ _ 14 dobj _ _ 16 1 _ NUM CD _ 17 compound _ _ 17 billion _ NUM CD _ 15 nummod _ _ 18 to _ ADP TO _ 21 case _ _ 19 its _ PRON PRP$ _ 21 nmod:poss _ _ 20 stock _ NOUN NN _ 21 compound _ _ 21 portfolio _ NOUN NN _ 14 nmod _ _ 22 two _ NUM CD _ 23 nummod _ _ 23 years _ NOUN NNS _ 24 nmod:npmod _ _ 24 ago _ ADV RB _ 14 advmod _ _ 25 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 31 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 last _ ADJ JJ _ 4 amod _ _ 4 crash _ NOUN NN _ 5 nsubj _ _ 5 taught _ VERB VBD _ 31 ccomp _ _ 6 institutional _ ADJ JJ _ 7 amod _ _ 7 investors _ NOUN NNS _ 5 dobj _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 they _ PRON PRP _ 10 nsubj _ _ 10 have _ VERB VBP _ 5 ccomp _ _ 11 to _ PART TO _ 14 mark _ _ 12 be _ VERB VB _ 14 cop _ _ 13 long-term _ ADJ JJ _ 14 amod _ _ 14 holders _ NOUN NNS _ 10 xcomp _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 that _ SCONJ IN _ 21 mark _ _ 18 they _ PRON PRP _ 21 nsubj _ _ 19 ca _ AUX MD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 react _ VERB VB _ 10 conj _ _ 22 to _ ADP TO _ 24 case _ _ 23 short-term _ ADJ JJ _ 24 amod _ _ 24 events _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 good _ ADJ JJ _ 24 amod _ _ 27 or _ CONJ CC _ 26 cc _ _ 28 bad _ ADJ JJ _ 26 conj _ _ 29 , _ PUNCT , _ 31 punct _ _ 30 '' _ PUNCT '' _ 31 punct _ _ 31 said _ VERB VBD _ 0 root _ _ 32 Stephen _ PROPN NNP _ 34 compound _ _ 33 L. _ PROPN NNP _ 34 compound _ _ 34 Nesbitt _ PROPN NNP _ 31 dep _ _ 35 , _ PUNCT , _ 34 punct _ _ 36 senior _ ADJ JJ _ 38 amod _ _ 37 vice _ NOUN NN _ 38 compound _ _ 38 president _ NOUN NN _ 34 appos _ _ 39 for _ ADP IN _ 42 case _ _ 40 the _ DET DT _ 42 det _ _ 41 pension _ NOUN NN _ 42 compound _ _ 42 consultants _ NOUN NNS _ 38 nmod _ _ 43 Wilshire _ PROPN NNP _ 44 compound _ _ 44 Associates _ PROPN NNP _ 42 dep _ _ 45 in _ ADP IN _ 47 case _ _ 46 Santa _ PROPN NNP _ 47 compound _ _ 47 Monica _ PROPN NNP _ 44 nmod _ _ 48 , _ PUNCT , _ 47 punct _ _ 49 Calif _ PROPN NNP _ 47 appos _ _ 50 . _ PUNCT . _ 31 punct _ _ 1 `` _ PUNCT `` _ 10 punct _ _ 2 Those _ PRON DT _ 10 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 pulled _ VERB VBD _ 2 acl:relcl _ _ 5 out _ ADP RP _ 4 advmod _ _ 6 -LRB- _ PUNCT -LRB- _ 8 punct _ _ 7 of _ ADP IN _ 8 case _ _ 8 stocks _ NOUN NNS _ 5 dep _ _ 9 -RRB- _ PUNCT -RRB- _ 8 punct _ _ 10 regretted _ VERB VBD _ 0 root _ _ 11 it _ PRON PRP _ 10 dobj _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 10 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 `` _ PUNCT `` _ 10 punct _ _ 18 so _ ADV RB _ 10 advmod _ _ 19 I _ PRON PRP _ 20 nsubj _ _ 20 doubt _ VERB VBP _ 10 parataxis _ _ 21 you _ PRON PRP _ 23 nsubj _ _ 22 'll _ AUX MD _ 23 aux _ _ 23 see _ VERB VB _ 20 ccomp _ _ 24 any _ DET DT _ 26 det _ _ 25 significant _ ADJ JJ _ 26 amod _ _ 26 changes _ NOUN NNS _ 23 dobj _ _ 27 '' _ PUNCT '' _ 23 punct _ _ 28 in _ ADP IN _ 30 case _ _ 29 institutional _ ADJ JJ _ 30 amod _ _ 30 portfolios _ NOUN NNS _ 23 nmod _ _ 31 as _ ADP IN _ 33 case _ _ 32 a _ DET DT _ 33 det _ _ 33 result _ NOUN NN _ 23 nmod _ _ 34 of _ ADP IN _ 37 case _ _ 35 Friday _ PROPN NNP _ 37 nmod:poss _ _ 36 's _ PART POS _ 35 case _ _ 37 decline _ NOUN NN _ 33 nmod _ _ 38 . _ PUNCT . _ 10 punct _ _ 1 Stocks _ NOUN NNS _ 17 nsubj _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 as _ SCONJ IN _ 4 mark _ _ 4 measured _ VERB VBN _ 17 dep _ _ 5 by _ ADP IN _ 12 case _ _ 6 the _ DET DT _ 7 det _ _ 7 Standard _ PROPN NNP _ 12 nmod:poss _ _ 8 & _ CONJ CC _ 7 cc _ _ 9 Poor _ PROPN NNP _ 7 conj _ _ 10 's _ PART POS _ 7 case _ _ 11 500-stock _ PROPN NNP _ 12 compound _ _ 12 index _ NOUN NN _ 4 nmod _ _ 13 , _ PUNCT , _ 17 punct _ _ 14 have _ AUX VBP _ 17 aux _ _ 15 been _ VERB VBN _ 17 cop _ _ 16 stellar _ ADJ JJ _ 17 amod _ _ 17 performers _ NOUN NNS _ 0 root _ _ 18 this _ DET DT _ 19 det _ _ 19 year _ NOUN NN _ 17 nmod:tmod _ _ 20 , _ PUNCT , _ 17 punct _ _ 21 rising _ VERB VBG _ 17 advcl _ _ 22 27.97 _ NUM CD _ 23 nummod _ _ 23 % _ SYM NN _ 21 dobj _ _ 24 before _ ADP IN _ 27 case _ _ 25 Friday _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 plunge _ NOUN NN _ 21 nmod _ _ 28 , _ PUNCT , _ 21 punct _ _ 29 excluding _ VERB VBG _ 30 case _ _ 30 dividends _ NOUN NNS _ 21 nmod _ _ 31 . _ PUNCT . _ 17 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 Friday _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 slump _ NOUN NN _ 5 nsubj _ _ 5 leaves _ VERB VBZ _ 0 root _ _ 6 investors _ NOUN NNS _ 7 nsubj _ _ 7 ahead _ ADV RB _ 5 xcomp _ _ 8 more _ ADJ JJR _ 10 advmod _ _ 9 than _ ADP IN _ 8 mwe _ _ 10 20 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 7 dep _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 well _ ADV RB _ 17 advmod _ _ 14 above _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 annual _ ADJ JJ _ 17 amod _ _ 17 average _ NOUN NN _ 11 nmod _ _ 18 for _ ADP IN _ 19 case _ _ 19 stocks _ NOUN NNS _ 17 nmod _ _ 20 over _ ADP IN _ 22 case _ _ 21 several _ ADJ JJ _ 22 amod _ _ 22 decades _ NOUN NNS _ 17 nmod _ _ 23 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 You _ PRON PRP _ 4 nsubj _ _ 3 could _ AUX MD _ 4 aux _ _ 4 go _ VERB VB _ 19 ccomp _ _ 5 down _ ADV RB _ 4 advmod _ _ 6 400 _ NUM CD _ 7 nummod _ _ 7 points _ NOUN NNS _ 4 dobj _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 still _ ADV RB _ 10 advmod _ _ 10 have _ VERB VB _ 4 conj _ _ 11 a _ DET DT _ 13 det _ _ 12 good _ ADJ JJ _ 13 amod _ _ 13 year _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 16 case _ _ 15 the _ DET DT _ 16 det _ _ 16 market _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 James _ PROPN NNP _ 22 compound _ _ 21 D. _ PROPN NNP _ 22 compound _ _ 22 Awad _ PROPN NNP _ 19 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 president _ NOUN NN _ 22 appos _ _ 25 of _ ADP IN _ 30 case _ _ 26 New _ PROPN NNP _ 27 amod _ _ 27 York-based _ ADJ JJ _ 30 amod _ _ 28 BMI _ PROPN NNP _ 30 compound _ _ 29 Capital _ PROPN NNP _ 30 compound _ _ 30 Corp _ PROPN NNP _ 24 nmod _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Awad _ PROPN NNP _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 worries _ VERB VBZ _ 0 root _ _ 7 that _ SCONJ IN _ 12 mark _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 12 nsubj _ _ 10 `` _ PUNCT `` _ 12 punct _ _ 11 could _ AUX MD _ 12 aux _ _ 12 go _ VERB VB _ 6 ccomp _ _ 13 down _ ADV RB _ 12 advmod _ _ 14 800 _ NUM CD _ 17 nummod _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 900 _ NUM CD _ 14 conj _ _ 17 points _ NOUN NNS _ 12 dobj _ _ 18 in _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 22 det _ _ 20 next _ ADJ JJ _ 22 amod _ _ 21 few _ ADJ JJ _ 22 amod _ _ 22 days _ NOUN NNS _ 12 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 can _ AUX MD _ 3 aux _ _ 3 happen _ VERB VB _ 0 root _ _ 4 before _ SCONJ IN _ 7 mark _ _ 5 you _ PRON PRP _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 turn _ VERB VB _ 3 advcl _ _ 8 around _ ADV RB _ 7 advmod _ _ 9 . _ PUNCT . _ 3 punct _ _ 10 '' _ PUNCT '' _ 3 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 discerns _ VERB VBZ _ 2 ccomp _ _ 5 many _ ADJ JJ _ 6 amod _ _ 6 parallels _ NOUN NNS _ 4 dobj _ _ 7 with _ ADP IN _ 8 case _ _ 8 1987 _ NUM CD _ 6 nmod _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 including _ VERB VBG _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 emphasis _ NOUN NN _ 6 nmod _ _ 13 on _ ADP IN _ 15 case _ _ 14 takeover _ NOUN NN _ 15 compound _ _ 15 stocks _ NOUN NNS _ 12 nmod _ _ 16 and _ CONJ CC _ 12 cc _ _ 17 the _ DET DT _ 18 det _ _ 18 re-emergence _ NOUN NN _ 12 conj _ _ 19 of _ ADP IN _ 22 case _ _ 20 computerized _ ADJ JJ _ 22 amod _ _ 21 program _ NOUN NN _ 22 compound _ _ 22 trading _ NOUN NN _ 18 nmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 only _ ADJ JJ _ 4 amod _ _ 4 thing _ NOUN NN _ 21 nsubj _ _ 5 you _ PRON PRP _ 8 nsubj _ _ 6 do _ AUX VBP _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 have _ VERB VB _ 4 acl:relcl _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 21 parataxis _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 `` _ PUNCT `` _ 21 punct _ _ 15 is _ VERB VBZ _ 21 cop _ _ 16 the _ DET DT _ 21 det _ _ 17 ` _ PUNCT `` _ 21 punct _ _ 18 portfolio _ NOUN NN _ 21 compound _ _ 19 insurance _ NOUN NN _ 21 compound _ _ 20 ' _ PUNCT '' _ 21 punct _ _ 21 phenomenon _ NOUN NN _ 0 root _ _ 22 overlaid _ VERB VBN _ 21 acl _ _ 23 on _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 rest _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 21 punct _ _ 27 '' _ PUNCT '' _ 21 punct _ _ 1 Most _ ADV RBS _ 3 advmod _ _ 2 institutional _ ADJ JJ _ 3 amod _ _ 3 investors _ NOUN NNS _ 5 nsubj _ _ 4 have _ AUX VBP _ 5 aux _ _ 5 abandoned _ VERB VBN _ 0 root _ _ 6 the _ DET DT _ 10 det _ _ 7 portfolio _ NOUN NN _ 10 compound _ _ 8 insurance _ NOUN NN _ 10 compound _ _ 9 hedging _ NOUN NN _ 10 compound _ _ 10 technique _ NOUN NN _ 5 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 which _ PRON WDT _ 15 nsubjpass _ _ 13 is _ AUX VBZ _ 15 auxpass _ _ 14 widely _ ADV RB _ 15 advmod _ _ 15 thought _ VERB VBN _ 10 acl:relcl _ _ 16 to _ PART TO _ 18 mark _ _ 17 have _ AUX VB _ 18 aux _ _ 18 worsened _ VERB VBN _ 15 xcomp _ _ 19 the _ DET DT _ 21 det _ _ 20 1987 _ NUM CD _ 21 nummod _ _ 21 crash _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 1 Not _ ADV RB _ 3 neg _ _ 2 really _ ADV RB _ 3 advmod _ _ 3 insurance _ NOUN NN _ 8 ccomp _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 this _ DET DT _ 6 det _ _ 6 tactic _ NOUN NN _ 8 nsubjpass _ _ 7 was _ AUX VBD _ 8 auxpass _ _ 8 designed _ VERB VBN _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 soften _ VERB VB _ 8 xcomp _ _ 11 the _ DET DT _ 12 det _ _ 12 blow _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 16 case _ _ 14 declining _ VERB VBG _ 16 amod _ _ 15 stock _ NOUN NN _ 16 compound _ _ 16 prices _ NOUN NNS _ 12 nmod _ _ 17 and _ CONJ CC _ 10 cc _ _ 18 generate _ VERB VB _ 10 conj _ _ 19 an _ DET DT _ 21 det _ _ 20 offsetting _ VERB VBG _ 21 amod _ _ 21 profit _ NOUN NN _ 18 dobj _ _ 22 by _ SCONJ IN _ 23 mark _ _ 23 selling _ VERB VBG _ 18 advcl _ _ 24 waves _ NOUN NNS _ 23 dobj _ _ 25 of _ ADP IN _ 28 case _ _ 26 S&P _ PROPN NNP _ 28 compound _ _ 27 futures _ NOUN NNS _ 28 compound _ _ 28 contracts _ NOUN NNS _ 24 nmod _ _ 29 . _ PUNCT . _ 8 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 its _ PRON PRP$ _ 4 nmod:poss _ _ 3 severest _ ADJ JJS _ 4 amod _ _ 4 test _ NOUN NN _ 21 nmod _ _ 5 , _ PUNCT , _ 21 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 $ _ SYM $ _ 21 nsubj _ _ 8 60 _ NUM CD _ 9 compound _ _ 9 billion _ NUM CD _ 7 nummod _ _ 10 of _ ADP IN _ 12 case _ _ 11 portfolio _ NOUN NN _ 12 compound _ _ 12 insurance _ NOUN NN _ 7 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 effect _ NOUN NN _ 7 nmod _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 1987 _ NUM CD _ 18 nummod _ _ 18 crash _ NOUN NN _ 7 nmod _ _ 19 did _ AUX VBD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 work _ VERB VB _ 0 root _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 as _ SCONJ IN _ 26 mark _ _ 24 stock _ NOUN NN _ 25 compound _ _ 25 buyers _ NOUN NNS _ 26 nsubj _ _ 26 disappeared _ VERB VBD _ 21 advcl _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 stock _ NOUN NN _ 31 compound _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 futures _ NOUN NNS _ 28 conj _ _ 31 prices _ NOUN NNS _ 32 nsubj _ _ 32 became _ VERB VBD _ 26 conj _ _ 33 disconnected _ VERB VBN _ 32 xcomp _ _ 34 . _ PUNCT . _ 21 punct _ _ 1 Even _ ADV RB _ 4 advmod _ _ 2 without _ ADP IN _ 4 case _ _ 3 portfolio _ NOUN NN _ 4 compound _ _ 4 insurance _ NOUN NN _ 9 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 market _ NOUN NN _ 7 compound _ _ 7 conditions _ NOUN NNS _ 9 nsubj _ _ 8 were _ VERB VBD _ 9 cop _ _ 9 grim _ ADJ JJ _ 14 ccomp _ _ 10 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 money _ NOUN NN _ 13 compound _ _ 13 managers _ NOUN NNS _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Neil _ PROPN NNP _ 2 compound _ _ 2 Weisman _ PROPN NNP _ 27 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 whose _ PRON WP$ _ 9 nmod:poss _ _ 5 New _ PROPN NNP _ 6 amod _ _ 6 York-based _ ADJ JJ _ 9 amod _ _ 7 Chilmark _ PROPN NNP _ 9 compound _ _ 8 Capital _ PROPN NNP _ 9 compound _ _ 9 Partners _ PROPN NNP _ 11 nsubj _ _ 10 had _ AUX VBD _ 11 aux _ _ 11 converted _ VERB VBN _ 2 acl:relcl _ _ 12 85 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 11 dobj _ _ 14 of _ ADP IN _ 20 case _ _ 15 its _ PRON PRP$ _ 20 nmod:poss _ _ 16 $ _ SYM $ _ 20 amod _ _ 17 220 _ NUM CD _ 18 compound _ _ 18 million _ NUM CD _ 16 nummod _ _ 19 investment _ NOUN NN _ 20 compound _ _ 20 pool _ NOUN NN _ 13 nmod _ _ 21 to _ ADP TO _ 22 case _ _ 22 cash _ VERB VB _ 11 nmod _ _ 23 in _ ADP IN _ 25 case _ _ 24 recent _ ADJ JJ _ 25 amod _ _ 25 months _ NOUN NNS _ 11 nmod _ _ 26 , _ PUNCT , _ 2 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 he _ PRON PRP _ 30 nsubjpass _ _ 29 was _ AUX VBD _ 30 auxpass _ _ 30 besieged _ VERB VBN _ 27 ccomp _ _ 31 by _ ADP IN _ 34 case _ _ 32 Wall _ PROPN NNP _ 34 compound _ _ 33 Street _ PROPN NNP _ 34 compound _ _ 34 firms _ NOUN NNS _ 30 nmod _ _ 35 Friday _ PROPN NNP _ 30 nmod:tmod _ _ 36 asking _ VERB VBG _ 30 dep _ _ 37 him _ PRON PRP _ 36 dobj _ _ 38 to _ PART TO _ 39 mark _ _ 39 take _ VERB VB _ 36 xcomp _ _ 40 stock _ NOUN NN _ 39 dobj _ _ 41 off _ ADP IN _ 43 case _ _ 42 their _ PRON PRP$ _ 43 nmod:poss _ _ 43 hands _ NOUN NNS _ 39 nmod _ _ 44 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 got _ VERB VBD _ 21 ccomp _ _ 4 calls _ NOUN NNS _ 3 dobj _ _ 5 from _ ADP IN _ 8 case _ _ 6 big _ ADJ JJ _ 8 amod _ _ 7 block _ NOUN NN _ 8 compound _ _ 8 houses _ NOUN NNS _ 4 nmod _ _ 9 asking _ VERB VBG _ 4 acl _ _ 10 us _ PRON PRP _ 9 dobj _ _ 11 if _ SCONJ IN _ 13 mark _ _ 12 we _ PRON PRP _ 13 nsubj _ _ 13 want _ VERB VBP _ 9 advcl _ _ 14 to _ PART TO _ 15 mark _ _ 15 make _ VERB VB _ 13 xcomp _ _ 16 bids _ NOUN NNS _ 15 dobj _ _ 17 on _ ADP IN _ 18 case _ _ 18 anything _ NOUN NN _ 15 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Mr. _ PROPN NNP _ 23 compound _ _ 23 Weisman _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 who _ PRON WP _ 37 nsubj _ _ 26 , _ PUNCT , _ 37 punct _ _ 27 happy _ ADJ JJ _ 37 ccomp _ _ 28 with _ ADP IN _ 30 case _ _ 29 his _ PRON PRP$ _ 30 nmod:poss _ _ 30 returns _ NOUN NNS _ 27 nmod _ _ 31 on _ ADP IN _ 32 case _ _ 32 investments _ NOUN NNS _ 30 nmod _ _ 33 chalked _ VERB VBN _ 30 acl _ _ 34 up _ ADP RP _ 33 compound:prt _ _ 35 earlier _ ADV RBR _ 33 advmod _ _ 36 , _ PUNCT , _ 37 punct _ _ 37 declined _ VERB VBD _ 23 acl:relcl _ _ 38 the _ DET DT _ 39 det _ _ 39 offers _ NOUN NNS _ 37 dobj _ _ 40 . _ PUNCT . _ 21 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Weisman _ PROPN NNP _ 3 nsubj _ _ 3 predicts _ VERB VBZ _ 0 root _ _ 4 stocks _ NOUN NNS _ 6 nsubj _ _ 5 will _ AUX MD _ 6 aux _ _ 6 appear _ VERB VB _ 3 ccomp _ _ 7 to _ PART TO _ 8 mark _ _ 8 stabilize _ VERB VB _ 6 xcomp _ _ 9 in _ ADP IN _ 13 case _ _ 10 the _ DET DT _ 13 det _ _ 11 next _ ADJ JJ _ 13 amod _ _ 12 few _ ADJ JJ _ 13 amod _ _ 13 days _ NOUN NNS _ 8 nmod _ _ 14 before _ SCONJ IN _ 15 mark _ _ 15 declining _ VERB VBG _ 6 advcl _ _ 16 again _ ADV RB _ 15 advmod _ _ 17 , _ PUNCT , _ 15 punct _ _ 18 trapping _ VERB VBG _ 15 advcl _ _ 19 more _ ADJ JJR _ 20 amod _ _ 20 investors _ NOUN NNS _ 18 dobj _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 14 ccomp _ _ 4 it _ PRON PRP _ 10 nsubj _ _ 5 will _ AUX MD _ 10 aux _ _ 6 be _ VERB VB _ 10 cop _ _ 7 a _ DET DT _ 10 det _ _ 8 rigor _ NOUN NN _ 10 compound _ _ 9 mortis _ NOUN NN _ 10 compound _ _ 10 rally _ NOUN NN _ 3 ccomp _ _ 11 , _ PUNCT , _ 14 punct _ _ 12 '' _ PUNCT '' _ 14 punct _ _ 13 he _ PRON PRP _ 14 nsubj _ _ 14 said _ VERB VBD _ 0 root _ _ 15 . _ PUNCT . _ 14 punct _ _ 1 Meanwhile _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Friday _ PROPN NNP _ 4 nsubj _ _ 4 brought _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 reprieve _ NOUN NN _ 4 dobj _ _ 7 for _ ADP IN _ 9 case _ _ 8 money _ NOUN NN _ 9 compound _ _ 9 managers _ NOUN NNS _ 6 nmod _ _ 10 whose _ PRON WP$ _ 12 nmod:poss _ _ 11 investment _ NOUN NN _ 12 compound _ _ 12 styles _ NOUN NNS _ 14 nsubj _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 put _ VERB VBN _ 9 acl:relcl _ _ 15 them _ PRON PRP _ 14 dobj _ _ 16 at _ ADP IN _ 17 case _ _ 17 odds _ NOUN NNS _ 14 nmod _ _ 18 with _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 market _ NOUN NN _ 21 compound _ _ 21 rally _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 Especially _ ADV RB _ 2 advmod _ _ 2 gleeful _ ADJ JJ _ 3 dep _ _ 3 were _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 short _ ADJ JJ _ 6 amod _ _ 6 sellers _ NOUN NNS _ 3 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 who _ PRON WP _ 11 nsubjpass _ _ 9 have _ AUX VBP _ 11 aux _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 pounded _ VERB VBN _ 6 acl:relcl _ _ 12 by _ ADP IN _ 17 case _ _ 13 this _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 market _ NOUN NN _ 17 compound _ _ 17 climb _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 shorts _ NOUN NNS _ 3 nsubj _ _ 3 sell _ VERB VBP _ 0 root _ _ 4 borrowed _ VERB VBN _ 5 amod _ _ 5 shares _ NOUN NNS _ 3 dobj _ _ 6 , _ PUNCT , _ 3 punct _ _ 7 hoping _ VERB VBG _ 3 advcl _ _ 8 to _ PART TO _ 9 mark _ _ 9 profit _ NOUN NN _ 7 xcomp _ _ 10 by _ SCONJ IN _ 11 mark _ _ 11 replacing _ VERB VBG _ 9 advcl _ _ 12 them _ PRON PRP _ 11 dobj _ _ 13 later _ ADV RB _ 11 advmod _ _ 14 at _ ADP IN _ 17 case _ _ 15 a _ DET DT _ 17 det _ _ 16 lower _ ADJ JJR _ 17 amod _ _ 17 price _ NOUN NN _ 11 nmod _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 nation _ NOUN NN _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 largest _ ADJ JJS _ 6 amod _ _ 5 short-selling _ NOUN NN _ 6 compound _ _ 6 operation _ NOUN NN _ 9 nsubj _ _ 7 is _ VERB VBZ _ 9 cop _ _ 8 Feshbach _ PROPN NNP _ 9 compound _ _ 9 Brothers _ PROPN NNP _ 0 root _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Palo _ PROPN NNP _ 12 compound _ _ 12 Alto _ PROPN NNP _ 9 appos _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 Calif. _ PROPN NNP _ 12 appos _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 which _ PRON WDT _ 17 nsubj _ _ 17 said _ VERB VBD _ 9 acl:relcl _ _ 18 last _ ADJ JJ _ 19 amod _ _ 19 May _ PROPN NNP _ 17 nmod:tmod _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 its _ PRON PRP$ _ 23 nmod:poss _ _ 22 short _ ADJ JJ _ 23 amod _ _ 23 positions _ NOUN NNS _ 25 nsubj _ _ 24 had _ AUX VBD _ 25 aux _ _ 25 shown _ VERB VBN _ 17 ccomp _ _ 26 losses _ NOUN NNS _ 25 dobj _ _ 27 of _ ADP IN _ 29 case _ _ 28 10 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 26 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 year _ NOUN NN _ 26 nmod _ _ 33 up _ ADP IN _ 25 advmod _ _ 34 to _ ADP TO _ 36 case _ _ 35 that _ DET DT _ 36 det _ _ 36 point _ NOUN NN _ 33 nmod _ _ 37 . _ PUNCT . _ 9 punct _ _ 1 All _ DET DT _ 2 dep _ _ 2 that _ DET WDT _ 5 nsubj _ _ 3 now _ ADV RB _ 5 advmod _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 changed _ VERB VBN _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 're _ VERB VBP _ 4 cop _ _ 4 ahead _ ADV RB _ 13 ccomp _ _ 5 for _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 year _ NOUN NN _ 4 nmod _ _ 8 because _ ADP IN _ 10 case _ _ 9 of _ ADP IN _ 8 mwe _ _ 10 Friday _ PROPN NNP _ 4 nmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 the _ DET DT _ 15 det _ _ 15 firm _ NOUN NN _ 18 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 Kurt _ PROPN NNP _ 18 compound _ _ 18 Feshbach _ PROPN NNP _ 13 nsubj _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 're _ AUX VBP _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 making _ VERB VBG _ 0 root _ _ 6 a _ DET DT _ 7 det _ _ 7 killing _ NOUN NN _ 5 dobj _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 but _ CONJ CC _ 5 cc _ _ 10 we _ PRON PRP _ 11 nsubj _ _ 11 had _ VERB VBD _ 5 conj _ _ 12 a _ DET DT _ 14 det _ _ 13 good _ ADJ JJ _ 14 amod _ _ 14 day _ NOUN NN _ 11 nmod:tmod _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 Food _ PROPN NNP _ 7 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Drug _ PROPN NNP _ 1 conj _ _ 4 Administration _ PROPN NNP _ 7 compound _ _ 5 spokesman _ NOUN NN _ 7 compound _ _ 6 Jeff _ PROPN NNP _ 7 compound _ _ 7 Nesbit _ PROPN NNP _ 8 nsubj _ _ 8 said _ VERB VBD _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 agency _ NOUN NN _ 12 nsubj _ _ 11 has _ AUX VBZ _ 12 aux _ _ 12 turned _ VERB VBN _ 8 ccomp _ _ 13 over _ ADP RP _ 12 compound:prt _ _ 14 evidence _ NOUN NN _ 12 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 criminal _ ADJ JJ _ 18 amod _ _ 18 investigation _ NOUN NN _ 12 nmod _ _ 19 concerning _ VERB VBG _ 18 acl _ _ 20 Vitarine _ PROPN NNP _ 22 compound _ _ 21 Pharmaceuticals _ PROPN NNP _ 22 compound _ _ 22 Inc. _ PROPN NNP _ 19 dobj _ _ 23 to _ ADP TO _ 28 case _ _ 24 the _ DET DT _ 26 det _ _ 25 U.S. _ PROPN NNP _ 26 compound _ _ 26 Attorney _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 office _ NOUN NN _ 12 nmod _ _ 29 in _ ADP IN _ 30 case _ _ 30 Baltimore _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 Neither _ DET DT _ 2 cc:preconj _ _ 2 Vitarine _ PROPN NNP _ 19 nsubjpass _ _ 3 nor _ CONJ CC _ 2 cc _ _ 4 any _ DET DT _ 2 conj _ _ 5 of _ ADP IN _ 14 case _ _ 6 the _ DET DT _ 12 det _ _ 7 Springfield _ PROPN NNP _ 12 dep _ _ 8 Gardens _ PROPN NNP _ 7 compound _ _ 9 , _ PUNCT , _ 7 punct _ _ 10 N.Y. _ PROPN NNP _ 7 dep _ _ 11 , _ PUNCT , _ 7 punct _ _ 12 company _ NOUN NN _ 14 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 officials _ NOUN NNS _ 4 nmod _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 employees _ NOUN NNS _ 14 conj _ _ 17 have _ AUX VBP _ 19 aux _ _ 18 been _ AUX VBN _ 19 auxpass _ _ 19 charged _ VERB VBN _ 0 root _ _ 20 with _ ADP IN _ 22 case _ _ 21 any _ DET DT _ 22 det _ _ 22 crimes _ NOUN NNS _ 19 nmod _ _ 23 . _ PUNCT . _ 19 punct _ _ 1 Vitarine _ PROPN NNP _ 2 nsubj _ _ 2 won _ VERB VBD _ 0 root _ _ 3 approval _ NOUN NN _ 2 dobj _ _ 4 to _ PART TO _ 5 mark _ _ 5 market _ VERB VB _ 3 acl _ _ 6 a _ DET DT _ 7 det _ _ 7 version _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 12 case _ _ 9 a _ DET DT _ 12 det _ _ 10 blood _ NOUN NN _ 12 compound _ _ 11 pressure _ NOUN NN _ 12 compound _ _ 12 medicine _ NOUN NN _ 7 nmod _ _ 13 but _ CONJ CC _ 2 cc _ _ 14 acknowledged _ VERB VBD _ 2 conj _ _ 15 that _ SCONJ IN _ 17 mark _ _ 16 it _ PRON PRP _ 17 nsubj _ _ 17 substituted _ VERB VBD _ 14 ccomp _ _ 18 a _ DET DT _ 22 det _ _ 19 SmithKline _ PROPN NNP _ 22 compound _ _ 20 Beecham _ PROPN NNP _ 22 compound _ _ 21 PLC _ PROPN NNP _ 22 compound _ _ 22 product _ NOUN NN _ 17 dobj _ _ 23 as _ ADP IN _ 25 case _ _ 24 its _ PRON PRP$ _ 25 nmod:poss _ _ 25 own _ ADJ JJ _ 17 nmod _ _ 26 in _ ADP IN _ 27 case _ _ 27 tests _ NOUN NNS _ 17 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Nesbit _ PROPN NNP _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 said _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 FDA _ PROPN NNP _ 8 nsubj _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 asked _ VERB VBN _ 4 ccomp _ _ 9 Bolar _ PROPN NNP _ 11 compound _ _ 10 Pharmaceutical _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 recall _ VERB VB _ 8 xcomp _ _ 14 at _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 retail _ ADJ JJ _ 17 amod _ _ 17 level _ NOUN NN _ 13 nmod _ _ 18 its _ PRON PRP$ _ 21 nmod:poss _ _ 19 urinary _ ADJ JJ _ 21 amod _ _ 20 tract _ NOUN NN _ 21 compound _ _ 21 antibiotic _ NOUN NN _ 13 dobj _ _ 22 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 so _ ADV RB _ 3 advmod _ _ 3 far _ ADV RB _ 8 advmod _ _ 4 the _ DET DT _ 5 det _ _ 5 company _ NOUN NN _ 8 nsubj _ _ 6 has _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 complied _ VERB VBN _ 15 ccomp _ _ 9 with _ ADP IN _ 11 case _ _ 10 that _ DET DT _ 11 det _ _ 11 request _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 spokesman _ NOUN NN _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Bolar _ PROPN NNP _ 27 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 4 det _ _ 4 subject _ NOUN NN _ 1 appos _ _ 5 of _ ADP IN _ 8 case _ _ 6 a _ DET DT _ 8 det _ _ 7 criminal _ ADJ JJ _ 8 amod _ _ 8 investigation _ NOUN NN _ 4 nmod _ _ 9 by _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 FDA _ PROPN NNP _ 8 nmod _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 Inspector _ PROPN NNP _ 15 compound _ _ 15 General _ PROPN NNP _ 17 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 office _ NOUN NN _ 11 conj _ _ 18 of _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 Health _ PROPN NNP _ 17 nmod _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 Human _ PROPN NNP _ 24 compound _ _ 23 Services _ PROPN NNP _ 24 compound _ _ 24 Department _ PROPN NNP _ 20 conj _ _ 25 , _ PUNCT , _ 1 punct _ _ 26 only _ ADV RB _ 27 advmod _ _ 27 agreed _ VERB VBD _ 51 ccomp _ _ 28 to _ PART TO _ 29 mark _ _ 29 recall _ VERB VB _ 27 xcomp _ _ 30 two _ NUM CD _ 31 nummod _ _ 31 strengths _ NOUN NNS _ 29 dobj _ _ 32 of _ ADP IN _ 34 case _ _ 33 its _ PRON PRP$ _ 34 nmod:poss _ _ 34 version _ NOUN NN _ 31 nmod _ _ 35 of _ ADP IN _ 36 case _ _ 36 Macrodantin _ PROPN NNP _ 34 nmod _ _ 37 `` _ PUNCT `` _ 29 punct _ _ 38 as _ ADV RB _ 40 advmod _ _ 39 far _ ADV RB _ 40 advmod _ _ 40 down _ ADV RB _ 29 advmod _ _ 41 as _ ADP IN _ 43 case _ _ 42 direct _ ADJ JJ _ 43 amod _ _ 43 customers _ NOUN NNS _ 40 nmod _ _ 44 , _ PUNCT , _ 43 punct _ _ 45 mostly _ ADV RB _ 43 advmod _ _ 46 wholesalers _ NOUN NNS _ 43 dep _ _ 47 , _ PUNCT , _ 51 punct _ _ 48 '' _ PUNCT '' _ 51 punct _ _ 49 Mr. _ PROPN NNP _ 50 compound _ _ 50 Nesbit _ PROPN NNP _ 51 nsubj _ _ 51 said _ VERB VBD _ 0 root _ _ 52 . _ PUNCT . _ 51 punct _ _ 1 Bolar _ PROPN NNP _ 9 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 of _ ADP IN _ 4 case _ _ 4 Copiague _ PROPN NNP _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 N.Y. _ PROPN NNP _ 4 appos _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 earlier _ ADV RBR _ 9 advmod _ _ 9 began _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 12 det _ _ 11 voluntary _ ADJ JJ _ 12 amod _ _ 12 recall _ NOUN NN _ 9 dobj _ _ 13 of _ ADP IN _ 21 case _ _ 14 both _ DET DT _ 21 det _ _ 15 its _ PRON PRP$ _ 21 nmod:poss _ _ 16 100 _ NUM CD _ 17 compound _ _ 17 milligram _ NOUN NN _ 21 amod _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 50 _ NUM CD _ 20 compound _ _ 20 milligram _ NOUN NN _ 17 conj _ _ 21 versions _ NOUN NNS _ 12 nmod _ _ 22 of _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 drug _ NOUN NN _ 21 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 FDA _ PROPN NNP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 presented _ VERB VBD _ 4 ccomp _ _ 7 evidence _ NOUN NN _ 6 dobj _ _ 8 it _ PRON PRP _ 9 nsubj _ _ 9 uncovered _ VERB VBD _ 7 acl:relcl _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 6 nmod _ _ 13 indicating _ VERB VBG _ 6 dep _ _ 14 that _ SCONJ IN _ 16 mark _ _ 15 Bolar _ PROPN NNP _ 16 nsubj _ _ 16 substituted _ VERB VBD _ 13 ccomp _ _ 17 the _ DET DT _ 19 det _ _ 18 brand-name _ ADJ JJ _ 19 amod _ _ 19 product _ NOUN NN _ 16 dobj _ _ 20 for _ ADP IN _ 22 case _ _ 21 its _ PRON PRP$ _ 22 nmod:poss _ _ 22 own _ ADJ JJ _ 16 nmod _ _ 23 to _ PART TO _ 24 mark _ _ 24 gain _ VERB VB _ 16 advcl _ _ 25 government _ NOUN NN _ 26 compound _ _ 26 approval _ NOUN NN _ 24 dobj _ _ 27 to _ PART TO _ 28 mark _ _ 28 sell _ VERB VB _ 26 acl _ _ 29 generic _ ADJ JJ _ 30 amod _ _ 30 versions _ NOUN NNS _ 28 dobj _ _ 31 of _ ADP IN _ 32 case _ _ 32 Macrodantin _ PROPN NNP _ 30 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 Bolar _ PROPN NNP _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 denied _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 6 mark _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 switched _ VERB VBD _ 3 ccomp _ _ 7 the _ DET DT _ 9 det _ _ 8 brand-name _ ADJ JJ _ 9 amod _ _ 9 product _ NOUN NN _ 6 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 its _ PRON PRP$ _ 12 nmod:poss _ _ 12 own _ ADJ JJ _ 6 nmod _ _ 13 in _ ADP IN _ 15 case _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 testing _ NOUN NN _ 6 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 West _ ADJ JJ _ 3 amod _ _ 3 German _ ADJ JJ _ 4 amod _ _ 4 retailer _ NOUN NN _ 9 nsubj _ _ 5 ASKO _ PROPN NNP _ 8 compound _ _ 6 Deutsche _ PROPN NNP _ 8 compound _ _ 7 Kaufhaus _ PROPN NNP _ 8 compound _ _ 8 AG _ PROPN NNP _ 4 dep _ _ 9 plans _ VERB VBZ _ 0 root _ _ 10 to _ PART TO _ 11 mark _ _ 11 challenge _ VERB VB _ 9 xcomp _ _ 12 the _ DET DT _ 13 det _ _ 13 legality _ NOUN NN _ 11 dobj _ _ 14 of _ ADP IN _ 19 case _ _ 15 a _ DET DT _ 19 det _ _ 16 widely _ ADV RB _ 17 advmod _ _ 17 employed _ VERB VBN _ 19 amod _ _ 18 anti-takeover _ ADJ JJ _ 19 amod _ _ 19 defense _ NOUN NN _ 13 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 companies _ NOUN NNS _ 19 nmod _ _ 22 in _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Netherlands _ PROPN NNPS _ 21 nmod _ _ 25 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 eventual _ ADJ JJ _ 4 amod _ _ 3 court _ NOUN NN _ 4 compound _ _ 4 decision _ NOUN NN _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 become _ VERB VB _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 landmark _ NOUN NN _ 6 xcomp _ _ 9 in _ ADP IN _ 12 case _ _ 10 Dutch _ ADJ JJ _ 12 amod _ _ 11 corporate _ ADJ JJ _ 12 amod _ _ 12 law _ NOUN NN _ 8 nmod _ _ 13 because _ SCONJ IN _ 23 mark _ _ 14 the _ DET DT _ 15 det _ _ 15 lawsuit _ NOUN NN _ 23 nsubj _ _ 16 ASKO _ PROPN NNP _ 17 nsubj _ _ 17 plans _ VERB VBZ _ 15 acl:relcl _ _ 18 to _ PART TO _ 19 mark _ _ 19 file _ VERB VB _ 17 xcomp _ _ 20 would _ AUX MD _ 23 aux _ _ 21 be _ VERB VB _ 23 cop _ _ 22 the _ DET DT _ 23 det _ _ 23 first _ ADJ JJ _ 6 advcl _ _ 24 to _ PART TO _ 25 mark _ _ 25 challenge _ VERB VB _ 23 acl _ _ 26 the _ DET DT _ 28 det _ _ 27 entire _ ADJ JJ _ 28 amod _ _ 28 principle _ NOUN NN _ 25 dobj _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 practice _ NOUN NN _ 28 conj _ _ 31 of _ SCONJ IN _ 33 mark _ _ 32 companies _ NOUN NNS _ 33 nsubj _ _ 33 issuing _ VERB VBG _ 28 acl _ _ 34 voting _ ADJ JJ _ 36 amod _ _ 35 preferred _ ADJ JJ _ 36 amod _ _ 36 shares _ NOUN NNS _ 33 dobj _ _ 37 to _ ADP TO _ 39 case _ _ 38 management-controlled _ ADJ JJ _ 39 amod _ _ 39 trusts _ NOUN NNS _ 33 nmod _ _ 40 to _ PART TO _ 41 mark _ _ 41 dilute _ VERB VB _ 33 advcl _ _ 42 voting _ NOUN NN _ 43 compound _ _ 43 power _ NOUN NN _ 41 dobj _ _ 44 of _ ADP IN _ 46 case _ _ 45 common _ ADJ JJ _ 46 amod _ _ 46 stockholders _ NOUN NNS _ 43 nmod _ _ 47 . _ PUNCT . _ 6 punct _ _ 1 Up _ ADP IN _ 12 advmod _ _ 2 to _ ADP TO _ 3 case _ _ 3 now _ ADV RB _ 1 nmod _ _ 4 only _ ADJ JJ _ 6 amod _ _ 5 specific _ ADJ JJ _ 6 amod _ _ 6 aspects _ NOUN NNS _ 12 nsubjpass _ _ 7 of _ ADP IN _ 9 case _ _ 8 these _ DET DT _ 9 det _ _ 9 defenses _ NOUN NNS _ 6 nmod _ _ 10 have _ AUX VBP _ 12 aux _ _ 11 been _ AUX VBN _ 12 auxpass _ _ 12 challenged _ VERB VBN _ 21 ccomp _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 though _ SCONJ IN _ 15 mark _ _ 15 unsuccessfully _ ADV RB _ 12 advcl _ _ 16 , _ PUNCT , _ 21 punct _ _ 17 ASKO _ PROPN NNP _ 20 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Dutch _ ADJ JJ _ 20 amod _ _ 20 lawyers _ NOUN NNS _ 21 nsubj _ _ 21 noted _ VERB VBD _ 0 root _ _ 22 . _ PUNCT . _ 21 punct _ _ 1 Should _ AUX MD _ 4 aux _ _ 2 the _ DET DT _ 3 det _ _ 3 courts _ NOUN NNS _ 4 nsubj _ _ 4 uphold _ VERB VB _ 16 advcl _ _ 5 the _ DET DT _ 6 det _ _ 6 validity _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 this _ DET DT _ 9 det _ _ 9 type _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 defense _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 ASKO _ PROPN NNP _ 16 nsubj _ _ 14 will _ AUX MD _ 16 aux _ _ 15 then _ ADV RB _ 16 advmod _ _ 16 ask _ VERB VB _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 court _ NOUN NN _ 16 dobj _ _ 19 to _ PART TO _ 20 mark _ _ 20 overturn _ VERB VB _ 16 xcomp _ _ 21 such _ DET PDT _ 24 det:predet _ _ 22 a _ DET DT _ 24 det _ _ 23 vote-diluting _ ADJ JJ _ 24 amod _ _ 24 maneuver _ NOUN NN _ 20 dobj _ _ 25 recently _ ADV RB _ 26 advmod _ _ 26 deployed _ VERB VBN _ 24 acl _ _ 27 by _ ADP IN _ 30 case _ _ 28 Koninklijke _ PROPN NNP _ 30 compound _ _ 29 Ahold _ PROPN NNP _ 30 compound _ _ 30 NV _ PROPN NNP _ 26 nmod _ _ 31 . _ PUNCT . _ 16 punct _ _ 1 ASKO _ PROPN NNP _ 2 nsubj _ _ 2 says _ VERB VBZ _ 0 root _ _ 3 the _ DET DT _ 7 det _ _ 4 Dutch-based _ ADJ JJ _ 7 amod _ _ 5 international _ ADJ JJ _ 7 amod _ _ 6 food _ NOUN NN _ 7 compound _ _ 7 retailer _ NOUN NN _ 8 nsubj _ _ 8 had _ VERB VBD _ 2 ccomp _ _ 9 n't _ PART RB _ 8 neg _ _ 10 reasonable _ ADJ JJ _ 11 amod _ _ 11 grounds _ NOUN NNS _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 issue _ VERB VB _ 11 acl _ _ 14 preferred _ ADJ JJ _ 15 amod _ _ 15 stock _ NOUN NN _ 13 dobj _ _ 16 to _ ADP TO _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 friendly _ ADJ JJ _ 19 amod _ _ 19 trust _ NOUN NN _ 13 nmod _ _ 20 and _ CONJ CC _ 13 cc _ _ 21 thus _ ADV RB _ 22 advmod _ _ 22 dilute _ VERB VB _ 13 conj _ _ 23 the _ DET DT _ 24 det _ _ 24 worth _ NOUN NN _ 22 dobj _ _ 25 and _ CONJ CC _ 24 cc _ _ 26 voting _ NOUN NN _ 27 compound _ _ 27 power _ NOUN NN _ 24 conj _ _ 28 of _ ADP IN _ 29 case _ _ 29 ASKO _ PROPN NNP _ 24 nmod _ _ 30 and _ CONJ CC _ 29 cc _ _ 31 other _ ADJ JJ _ 32 amod _ _ 32 shareholders _ NOUN NNS _ 29 conj _ _ 33 . _ PUNCT . _ 2 punct _ _ 1 Speaking _ VERB VBG _ 9 advcl _ _ 2 through _ ADP IN _ 5 case _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 Dutch _ ADJ JJ _ 5 amod _ _ 5 lawyers _ NOUN NNS _ 1 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 ASKO _ PROPN NNP _ 9 nsubj _ _ 8 also _ ADV RB _ 9 advmod _ _ 9 disclosed _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 holds _ VERB VBZ _ 9 ccomp _ _ 12 a _ DET DT _ 15 det _ _ 13 15 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 stake _ NOUN NN _ 11 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 Ahold _ PROPN NNP _ 15 nmod _ _ 18 . _ PUNCT . _ 9 punct _ _ 1 It _ PRON PRP _ 4 nsubjpass _ _ 2 was _ AUX VBD _ 4 auxpass _ _ 3 previously _ ADV RB _ 4 advmod _ _ 4 thought _ VERB VBN _ 0 root _ _ 5 ASKO _ PROPN NNP _ 6 nsubj _ _ 6 held _ VERB VBD _ 4 ccomp _ _ 7 a _ DET DT _ 10 det _ _ 8 13.6 _ NUM CD _ 9 compound _ _ 9 % _ SYM NN _ 10 amod _ _ 10 stake _ NOUN NN _ 6 dobj _ _ 11 that _ PRON WDT _ 13 nsubjpass _ _ 12 was _ AUX VBD _ 13 auxpass _ _ 13 accumulated _ VERB VBN _ 10 acl:relcl _ _ 14 since _ ADP IN _ 15 case _ _ 15 July _ PROPN NNP _ 13 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Ahold _ PROPN NNP _ 2 nmod _ _ 5 said _ VERB VBD _ 0 root _ _ 6 his _ PRON PRP$ _ 7 nmod:poss _ _ 7 company _ NOUN NN _ 9 nsubj _ _ 8 is _ VERB VBZ _ 9 cop _ _ 9 confident _ ADJ JJ _ 5 ccomp _ _ 10 of _ ADP IN _ 13 case _ _ 11 its _ PRON PRP$ _ 13 nmod:poss _ _ 12 own _ ADJ JJ _ 13 amod _ _ 13 position _ NOUN NN _ 9 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 the _ DET DT _ 16 det _ _ 16 propriety _ NOUN NN _ 13 conj _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 preferred-share _ NOUN NN _ 20 compound _ _ 20 issue _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 5 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 termed _ VERB VBD _ 0 root _ _ 3 ASKO _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 legal _ ADJ JJ _ 6 amod _ _ 6 actions _ NOUN NNS _ 2 dobj _ _ 7 as _ ADP IN _ 9 case _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 unproductive _ ADJ JJ _ 2 advcl _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 to _ ADP TO _ 13 case _ _ 12 international _ ADJ JJ _ 13 amod _ _ 13 cooperation _ NOUN NN _ 9 nmod _ _ 14 among _ ADP IN _ 16 case _ _ 15 European _ ADJ JJ _ 16 amod _ _ 16 retailers _ NOUN NNS _ 13 nmod _ _ 17 . _ PUNCT . _ 2 punct _ _ 1 Chase _ PROPN NNP _ 6 compound _ _ 2 Manhattan _ PROPN NNP _ 6 compound _ _ 3 Bank _ PROPN NNP _ 6 compound _ _ 4 Chairman _ PROPN NNP _ 6 compound _ _ 5 Willard _ PROPN NNP _ 6 compound _ _ 6 Butcher _ PROPN NNP _ 10 nsubj _ _ 7 is _ VERB VBZ _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 conservative _ ADJ JJ _ 10 amod _ _ 10 banker _ NOUN NN _ 0 root _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 a _ DET DT _ 14 det _ _ 13 loyal _ ADJ JJ _ 14 amod _ _ 14 Republican _ PROPN NNP _ 10 conj _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 but _ CONJ CC _ 10 cc _ _ 17 on _ ADP IN _ 19 case _ _ 18 Friday _ PROPN NNP _ 19 compound _ _ 19 morning _ NOUN NN _ 21 nmod _ _ 20 he _ PRON PRP _ 21 nsubj _ _ 21 had _ VERB VBD _ 10 conj _ _ 22 few _ ADJ JJ _ 24 amod _ _ 23 kind _ ADJ JJ _ 24 amod _ _ 24 words _ NOUN NNS _ 21 dobj _ _ 25 for _ ADP IN _ 30 case _ _ 26 President _ PROPN NNP _ 27 compound _ _ 27 Bush _ PROPN NNP _ 30 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 economic _ ADJ JJ _ 30 amod _ _ 30 policy-making _ NOUN NN _ 21 nmod _ _ 31 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 38 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 are _ VERB VBP _ 38 ccomp _ _ 4 some _ DET DT _ 7 det _ _ 5 very _ ADV RB _ 6 advmod _ _ 6 significant _ ADJ JJ _ 7 amod _ _ 7 issues _ NOUN NNS _ 3 nsubj _ _ 8 out _ ADV RB _ 9 advmod _ _ 9 there _ ADV RB _ 7 advmod _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 such _ ADJ JJ _ 15 case _ _ 12 as _ ADP IN _ 11 mwe _ _ 13 the _ DET DT _ 15 det _ _ 14 fiscal _ ADJ JJ _ 15 amod _ _ 15 deficit _ NOUN NN _ 7 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 trade _ NOUN NN _ 19 compound _ _ 19 deficit _ NOUN NN _ 15 appos _ _ 20 , _ PUNCT , _ 15 punct _ _ 21 our _ PRON PRP$ _ 22 nmod:poss _ _ 22 relations _ NOUN NNS _ 15 appos _ _ 23 with _ ADP IN _ 24 case _ _ 24 Japan _ PROPN NNP _ 22 nmod _ _ 25 , _ PUNCT , _ 7 punct _ _ 26 that _ PRON WDT _ 27 nsubj _ _ 27 have _ VERB VBP _ 7 acl:relcl _ _ 28 to _ PART TO _ 31 mark _ _ 29 be _ VERB VB _ 31 cop _ _ 30 the _ DET DT _ 31 det _ _ 31 subject _ NOUN NN _ 27 xcomp _ _ 32 of _ ADP IN _ 34 case _ _ 33 major _ ADJ JJ _ 34 amod _ _ 34 initiatives _ NOUN NNS _ 31 nmod _ _ 35 , _ PUNCT , _ 38 punct _ _ 36 '' _ PUNCT '' _ 38 punct _ _ 37 he _ PRON PRP _ 38 nsubj _ _ 38 said _ VERB VBD _ 0 root _ _ 39 in _ ADP IN _ 41 case _ _ 40 an _ DET DT _ 41 det _ _ 41 interview _ NOUN NN _ 38 nmod _ _ 42 . _ PUNCT . _ 38 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 'd _ AUX MD _ 4 aux _ _ 4 like _ VERB VB _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 see _ VERB VB _ 4 xcomp _ _ 7 that _ DET DT _ 8 det _ _ 8 initiative _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 I _ PRON PRP _ 12 nsubj _ _ 12 have _ VERB VBP _ 4 conj _ _ 13 n't _ PART RB _ 12 neg _ _ 14 . _ PUNCT . _ 4 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 is _ VERB VBZ _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 a _ DET DT _ 6 det _ _ 5 big _ ADJ JJ _ 6 amod _ _ 6 shot _ NOUN NN _ 2 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 an _ DET DT _ 9 det _ _ 9 agenda _ NOUN NN _ 6 appos _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 few _ ADJ JJ _ 3 amod _ _ 3 hours _ NOUN NNS _ 4 nmod:npmod _ _ 4 later _ ADV RB _ 9 advmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 9 nsubj _ _ 9 dropped _ VERB VBD _ 0 root _ _ 10 190 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 9 dobj _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Politicians _ NOUN NNS _ 2 nsubj _ _ 2 tried _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 finger _ VERB VB _ 2 xcomp _ _ 5 each _ DET DT _ 4 dobj _ _ 6 other _ ADJ JJ _ 5 amod _ _ 7 for _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 blame _ NOUN NN _ 4 nmod _ _ 10 , _ PUNCT , _ 4 punct _ _ 11 although _ SCONJ IN _ 14 mark _ _ 12 many _ ADJ JJ _ 13 amod _ _ 13 analysts _ NOUN NNS _ 14 nsubj _ _ 14 doubt _ VERB VBP _ 4 advcl _ _ 15 that _ SCONJ IN _ 19 mark _ _ 16 Washington _ PROPN NNP _ 19 nsubj _ _ 17 was _ VERB VBD _ 19 cop _ _ 18 singly _ ADV RB _ 19 advmod _ _ 19 responsible _ ADJ JJ _ 14 ccomp _ _ 20 for _ ADP IN _ 24 case _ _ 21 Wall _ PROPN NNP _ 22 compound _ _ 22 Street _ PROPN NNP _ 24 nmod:poss _ _ 23 's _ PART POS _ 22 case _ _ 24 woes _ NOUN NNS _ 19 nmod _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Butcher _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 comments _ NOUN NNS _ 6 nsubj _ _ 6 make _ VERB VBP _ 0 root _ _ 7 one _ NUM CD _ 8 nummod _ _ 8 thing _ NOUN NN _ 15 nsubj _ _ 9 clear _ ADJ JJ _ 15 dep _ _ 10 : _ PUNCT : _ 15 punct _ _ 11 Some _ DET DT _ 15 nsubj _ _ 12 on _ ADP IN _ 14 case _ _ 13 Wall _ PROPN NNP _ 14 compound _ _ 14 Street _ PROPN NNP _ 11 nmod _ _ 15 wonder _ VERB VBP _ 6 xcomp _ _ 16 if _ SCONJ IN _ 20 mark _ _ 17 anyone _ NOUN NN _ 20 nsubj _ _ 18 is _ VERB VBZ _ 20 cop _ _ 19 in _ ADP IN _ 20 case _ _ 20 charge _ NOUN NN _ 15 advcl _ _ 21 of _ ADP IN _ 23 case _ _ 22 economic _ ADJ JJ _ 23 amod _ _ 23 policy _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 this _ PRON DT _ 1 dobj _ _ 3 : _ PUNCT : _ 1 punct _ _ 1 -- _ PUNCT : _ 10 punct _ _ 2 By _ ADP IN _ 5 case _ _ 3 11:59 _ NUM CD _ 5 nummod _ _ 4 p.m. _ ADV RB _ 5 advmod _ _ 5 tonight _ NOUN NN _ 10 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 President _ PROPN NNP _ 8 compound _ _ 8 Bush _ PROPN NNP _ 10 nsubj _ _ 9 must _ AUX MD _ 10 aux _ _ 10 order _ VERB VB _ 0 root _ _ 11 $ _ SYM $ _ 10 dobj _ _ 12 16 _ NUM CD _ 13 compound _ _ 13 billion _ NUM CD _ 11 nummod _ _ 14 of _ ADP IN _ 18 case _ _ 15 automatic _ ADJ JJ _ 18 amod _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 across-the-board _ ADJ JJ _ 18 amod _ _ 18 cuts _ NOUN NNS _ 11 nmod _ _ 19 in _ ADP IN _ 21 case _ _ 20 government _ NOUN NN _ 21 compound _ _ 21 spending _ NOUN NN _ 18 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 comply _ VERB VB _ 10 xcomp _ _ 24 with _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 Gramm-Rudman _ PROPN NNP _ 28 compound _ _ 27 budget _ NOUN NN _ 28 compound _ _ 28 law _ NOUN NN _ 23 nmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 cuts _ NOUN NNS _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 necessary _ ADJ JJ _ 0 root _ _ 5 because _ SCONJ IN _ 11 mark _ _ 6 Congress _ PROPN NNP _ 11 nsubj _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 administration _ NOUN NN _ 6 conj _ _ 10 have _ AUX VBP _ 11 aux _ _ 11 failed _ VERB VBN _ 4 advcl _ _ 12 to _ PART TO _ 13 mark _ _ 13 reach _ VERB VB _ 11 xcomp _ _ 14 agreement _ NOUN NN _ 13 dobj _ _ 15 on _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 deficit-cutting _ ADJ JJ _ 18 amod _ _ 18 bill _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 33 punct _ _ 2 We _ PRON PRP _ 6 nsubj _ _ 3 simply _ ADV RB _ 6 advmod _ _ 4 do _ AUX VBP _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 have _ VERB VB _ 33 ccomp _ _ 7 strong _ ADJ JJ _ 8 amod _ _ 8 leadership _ NOUN NN _ 6 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 try _ VERB VB _ 8 acl _ _ 11 to _ PART TO _ 12 mark _ _ 12 reduce _ VERB VB _ 10 xcomp _ _ 13 the _ DET DT _ 14 det _ _ 14 deficit _ NOUN NN _ 12 dobj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 make _ VERB VB _ 12 conj _ _ 17 tough _ ADJ JJ _ 18 amod _ _ 18 choices _ NOUN NNS _ 16 dobj _ _ 19 , _ PUNCT , _ 33 punct _ _ 20 '' _ PUNCT '' _ 33 punct _ _ 21 House _ PROPN NNP _ 26 compound _ _ 22 Budget _ PROPN NNP _ 26 compound _ _ 23 Committee _ PROPN NNP _ 26 compound _ _ 24 Chairman _ PROPN NNP _ 26 compound _ _ 25 Leon _ PROPN NNP _ 26 compound _ _ 26 Panetta _ PROPN NNP _ 33 nsubj _ _ 27 -LRB- _ PUNCT -LRB- _ 28 punct _ _ 28 D. _ PROPN NNP _ 26 appos _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 Calif _ PROPN NNP _ 28 dep _ _ 31 . _ PUNCT . _ 30 punct _ _ 32 -RRB- _ PUNCT -RRB- _ 28 punct _ _ 33 said _ VERB VBD _ 0 root _ _ 34 yesterday _ NOUN NN _ 33 nmod:tmod _ _ 35 on _ ADP IN _ 37 case _ _ 36 NBC _ PROPN NNP _ 37 compound _ _ 37 News _ PROPN NNP _ 33 nmod _ _ 38 's _ PART POS _ 37 case _ _ 39 `` _ PUNCT `` _ 37 punct _ _ 40 Meet _ PROPN NNP _ 42 dep _ _ 41 the _ DET DT _ 42 det _ _ 42 Press _ PROPN NNP _ 37 dep _ _ 43 . _ PUNCT . _ 33 punct _ _ 44 '' _ PUNCT '' _ 33 punct _ _ 1 -- _ PUNCT : _ 17 punct _ _ 2 For _ ADP IN _ 6 case _ _ 3 the _ DET DT _ 6 det _ _ 4 last _ ADJ JJ _ 6 amod _ _ 5 two _ NUM CD _ 6 nummod _ _ 6 weeks _ NOUN NNS _ 17 nmod _ _ 7 , _ PUNCT , _ 17 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 Bush _ PROPN NNP _ 10 compound _ _ 10 administration _ NOUN NN _ 17 nsubjpass _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 Federal _ PROPN NNP _ 14 compound _ _ 14 Reserve _ PROPN NNP _ 10 conj _ _ 15 have _ AUX VBP _ 17 aux _ _ 16 been _ AUX VBN _ 17 auxpass _ _ 17 engaged _ VERB VBN _ 0 root _ _ 18 in _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 semi-public _ ADJ JJ _ 21 amod _ _ 21 battle _ NOUN NN _ 17 nmod _ _ 22 over _ ADP IN _ 25 case _ _ 23 international _ ADJ JJ _ 25 amod _ _ 24 economic _ ADJ JJ _ 25 amod _ _ 25 policy _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 17 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 administration _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 trying _ VERB VBG _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 push _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 dollar _ NOUN NN _ 7 dobj _ _ 10 lower _ ADV RBR _ 7 advmod _ _ 11 ; _ PUNCT : _ 5 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 Fed _ PROPN NNP _ 16 nsubj _ _ 14 has _ AUX VBZ _ 16 aux _ _ 15 been _ AUX VBN _ 16 aux _ _ 16 resisting _ VERB VBG _ 5 parataxis _ _ 17 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 26 punct _ _ 2 One _ NUM CD _ 14 nsubj _ _ 3 of _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 things _ NOUN NNS _ 2 nmod _ _ 6 that _ PRON WDT _ 7 nsubj _ _ 7 continues _ VERB VBZ _ 5 acl:relcl _ _ 8 to _ PART TO _ 9 mark _ _ 9 worry _ VERB VB _ 7 xcomp _ _ 10 me _ PRON PRP _ 9 dobj _ _ 11 is _ VERB VBZ _ 14 cop _ _ 12 this _ DET DT _ 14 det _ _ 13 monetary _ ADJ JJ _ 14 amod _ _ 14 warfare _ NOUN NN _ 26 ccomp _ _ 15 between _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 Treasury _ PROPN NNP _ 18 compound _ _ 18 Department _ PROPN NNP _ 14 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 the _ DET DT _ 23 det _ _ 21 Federal _ PROPN NNP _ 23 compound _ _ 22 Reserve _ PROPN NNP _ 23 compound _ _ 23 Board _ PROPN NNP _ 18 conj _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 '' _ PUNCT '' _ 26 punct _ _ 26 said _ VERB VBD _ 0 root _ _ 27 Lawrence _ PROPN NNP _ 28 compound _ _ 28 Kudlow _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 a _ DET DT _ 36 det _ _ 31 Bear _ PROPN NNP _ 36 compound _ _ 32 , _ PUNCT , _ 31 punct _ _ 33 Stearns _ PROPN NNP _ 31 conj _ _ 34 & _ CONJ CC _ 31 cc _ _ 35 Co. _ PROPN NNP _ 31 conj _ _ 36 economist _ NOUN NN _ 28 appos _ _ 37 , _ PUNCT , _ 26 punct _ _ 38 on _ ADP IN _ 43 case _ _ 39 ABC _ PROPN NNP _ 43 nmod:poss _ _ 40 's _ PART POS _ 39 case _ _ 41 `` _ PUNCT `` _ 43 punct _ _ 42 This _ PROPN NNP _ 43 compound _ _ 43 Week _ PROPN NNP _ 26 nmod _ _ 44 . _ PUNCT . _ 26 punct _ _ 45 '' _ PUNCT '' _ 26 punct _ _ 1 -- _ PUNCT : _ 5 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 administration _ NOUN NN _ 5 nsubj _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 sent _ VERB VBN _ 0 root _ _ 6 out _ ADP RP _ 5 advmod _ _ 7 confusing _ ADJ JJ _ 8 amod _ _ 8 signals _ NOUN NNS _ 5 dobj _ _ 9 about _ ADP IN _ 11 case _ _ 10 its _ PRON PRP$ _ 11 nmod:poss _ _ 11 response _ NOUN NN _ 8 nmod _ _ 12 to _ ADP TO _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 recent _ ADJ JJ _ 15 amod _ _ 15 spate _ NOUN NN _ 11 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 airline _ NOUN NN _ 18 compound _ _ 18 takeovers _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Last _ ADJ JJ _ 2 amod _ _ 2 month _ NOUN NN _ 8 nmod:tmod _ _ 3 , _ PUNCT , _ 8 punct _ _ 4 Transportation _ PROPN NNP _ 7 compound _ _ 5 Secretary _ PROPN NNP _ 7 compound _ _ 6 Sam _ PROPN NNP _ 7 compound _ _ 7 Skinner _ PROPN NNP _ 8 nsubj _ _ 8 forced _ VERB VBD _ 0 root _ _ 9 Northwest _ PROPN NNP _ 10 compound _ _ 10 Airlines _ PROPN NNP _ 8 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 reduce _ VERB VB _ 8 xcomp _ _ 13 a _ DET DT _ 14 det _ _ 14 stake _ NOUN NN _ 12 dobj _ _ 15 held _ VERB VBN _ 14 acl _ _ 16 by _ ADP IN _ 20 case _ _ 17 KLM _ PROPN NNP _ 20 compound _ _ 18 Royal _ PROPN NNP _ 20 compound _ _ 19 Dutch _ PROPN NNP _ 20 compound _ _ 20 Airlines _ PROPN NNP _ 15 nmod _ _ 21 . _ PUNCT . _ 8 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 he _ PRON PRP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 since _ ADV RB _ 5 advmod _ _ 5 run _ VERB VBN _ 0 root _ _ 6 into _ ADP IN _ 7 case _ _ 7 opposition _ NOUN NN _ 5 nmod _ _ 8 from _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 Treasury _ PROPN NNP _ 7 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 the _ DET DT _ 14 det _ _ 13 White _ PROPN NNP _ 14 compound _ _ 14 House _ PROPN NNP _ 10 conj _ _ 15 over _ ADP IN _ 17 case _ _ 16 that _ DET DT _ 17 det _ _ 17 decision _ NOUN NN _ 7 nmod _ _ 18 . _ PUNCT . _ 5 punct _ _ 1 And _ CONJ CC _ 4 cc _ _ 2 he _ PRON PRP _ 4 nsubj _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 kept _ VERB VBN _ 0 root _ _ 5 mum _ ADJ JJ _ 4 xcomp _ _ 6 on _ SCONJ IN _ 11 mark _ _ 7 how _ ADV WRB _ 11 advmod _ _ 8 his _ PRON PRP$ _ 9 nmod:poss _ _ 9 decision _ NOUN NN _ 11 nsubj _ _ 10 might _ AUX MD _ 11 aux _ _ 11 affect _ VERB VB _ 5 advcl _ _ 12 a _ DET DT _ 13 det _ _ 13 bid _ NOUN NN _ 11 dobj _ _ 14 for _ ADP IN _ 16 case _ _ 15 United _ PROPN NNP _ 16 compound _ _ 16 Airlines _ PROPN NNP _ 13 nmod _ _ 17 , _ PUNCT , _ 13 punct _ _ 18 which _ PRON WDT _ 19 nsubj _ _ 19 includes _ VERB VBZ _ 13 acl:relcl _ _ 20 a _ DET DT _ 22 det _ _ 21 big _ ADJ JJ _ 22 amod _ _ 22 stake _ NOUN NN _ 19 dobj _ _ 23 by _ ADP IN _ 26 case _ _ 24 British _ PROPN NNP _ 26 compound _ _ 25 Airways _ PROPN NNP _ 26 compound _ _ 26 PLC _ PROPN NNP _ 22 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 say _ VERB VBP _ 0 root _ _ 4 uncertainty _ NOUN NN _ 12 nsubj _ _ 5 about _ ADP IN _ 9 case _ _ 6 Washington _ PROPN NNP _ 9 nmod:poss _ _ 7 's _ PART POS _ 6 case _ _ 8 anti-takeover _ ADJ JJ _ 9 amod _ _ 9 policy _ NOUN NN _ 4 nmod _ _ 10 was _ VERB VBD _ 12 cop _ _ 11 one _ NUM CD _ 12 nummod _ _ 12 reason _ NOUN NN _ 3 ccomp _ _ 13 that _ ADP IN _ 20 advmod _ _ 14 financing _ NOUN NN _ 20 nsubj _ _ 15 for _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 United _ PROPN NNP _ 19 compound _ _ 18 Airlines _ PROPN NNP _ 19 compound _ _ 19 takeover _ NOUN NN _ 14 nmod _ _ 20 fell _ VERB VBD _ 12 dep _ _ 21 through _ ADP RP _ 20 compound:prt _ _ 22 -- _ PUNCT : _ 12 punct _ _ 23 the _ DET DT _ 24 det _ _ 24 event _ NOUN NN _ 12 dep _ _ 25 that _ PRON WDT _ 26 nsubj _ _ 26 triggered _ VERB VBD _ 24 acl:relcl _ _ 27 the _ DET DT _ 29 det _ _ 28 market _ NOUN NN _ 29 compound _ _ 29 drop _ NOUN NN _ 26 dobj _ _ 30 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 many _ ADJ JJ _ 3 amod _ _ 3 ways _ NOUN NNS _ 14 nmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 backdrop _ NOUN NN _ 14 nsubj _ _ 7 to _ ADP TO _ 11 case _ _ 8 Friday _ PROPN NNP _ 11 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 decline _ NOUN NN _ 6 nmod _ _ 12 is _ VERB VBZ _ 14 cop _ _ 13 eerily _ ADV RB _ 14 advmod _ _ 14 similar _ ADJ JJ _ 0 root _ _ 15 to _ ADP TO _ 16 case _ _ 16 that _ PRON DT _ 14 nmod _ _ 17 of _ ADP IN _ 22 case _ _ 18 October _ PROPN NNP _ 22 nmod:poss _ _ 19 1987 _ NUM CD _ 18 nummod _ _ 20 's _ PART POS _ 18 case _ _ 21 508-point _ ADJ JJ _ 22 amod _ _ 22 crash _ NOUN NN _ 16 nmod _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 Then _ ADV RB _ 11 advmod _ _ 2 , _ PUNCT , _ 11 punct _ _ 3 as _ ADP IN _ 4 case _ _ 4 now _ ADV RB _ 11 advcl _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 budget _ NOUN NN _ 8 compound _ _ 8 debate _ NOUN NN _ 11 nsubj _ _ 9 was _ VERB VBD _ 11 cop _ _ 10 behind _ ADP IN _ 11 case _ _ 11 schedule _ NOUN NN _ 0 root _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 automatic _ ADJ JJ _ 15 amod _ _ 14 spending _ ADJ JJ _ 15 amod _ _ 15 cuts _ NOUN NNS _ 18 nsubj _ _ 16 were _ VERB VBD _ 18 cop _ _ 17 within _ ADP IN _ 18 case _ _ 18 days _ NOUN NNS _ 11 conj _ _ 19 of _ SCONJ IN _ 20 mark _ _ 20 taking _ VERB VBG _ 18 acl _ _ 21 hold _ NOUN NN _ 20 dobj _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Treasury _ PROPN NNP _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 locked _ VERB VBN _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 battle _ NOUN NN _ 4 nmod _ _ 8 over _ ADP IN _ 11 case _ _ 9 international _ ADJ JJ _ 11 amod _ _ 10 economic _ ADJ JJ _ 11 amod _ _ 11 policy _ NOUN NN _ 7 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 although _ SCONJ IN _ 22 mark _ _ 14 at _ ADP IN _ 16 case _ _ 15 that _ DET DT _ 16 det _ _ 16 time _ NOUN NN _ 22 nmod _ _ 17 it _ PRON PRP _ 22 nsubj _ _ 18 was _ VERB VBD _ 22 cop _ _ 19 with _ ADP IN _ 22 case _ _ 20 West _ ADJ JJ _ 22 amod _ _ 21 German _ ADJ JJ _ 22 amod _ _ 22 officials _ NOUN NNS _ 4 advcl _ _ 23 rather _ ADV RB _ 27 case _ _ 24 than _ ADP IN _ 23 mwe _ _ 25 the _ DET DT _ 27 det _ _ 26 Federal _ PROPN NNP _ 27 compound _ _ 27 Reserve _ PROPN NNP _ 22 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 And _ CONJ CC _ 26 cc _ _ 2 concern _ NOUN NN _ 26 nsubj _ _ 3 about _ ADP IN _ 5 case _ _ 4 official _ ADJ JJ _ 5 amod _ _ 5 actions _ NOUN NNS _ 2 nmod _ _ 6 aimed _ VERB VBN _ 5 acl _ _ 7 at _ ADP IN _ 8 case _ _ 8 takeovers _ NOUN NNS _ 6 nmod _ _ 9 -- _ PUNCT : _ 15 punct _ _ 10 then _ ADV RB _ 15 dep _ _ 11 by _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 tax-writing _ ADJ JJ _ 15 amod _ _ 14 House _ PROPN NNP _ 15 compound _ _ 15 Ways _ PROPN NNP _ 6 dep _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 Means _ PROPN NNP _ 18 compound _ _ 18 Committee _ PROPN NNP _ 15 conj _ _ 19 rather _ ADV RB _ 23 case _ _ 20 than _ ADP IN _ 19 mwe _ _ 21 the _ DET DT _ 23 det _ _ 22 Transportation _ PROPN NNP _ 23 compound _ _ 23 Department _ PROPN NNP _ 15 nmod _ _ 24 -- _ PUNCT : _ 15 punct _ _ 25 were _ AUX VBD _ 26 aux _ _ 26 making _ VERB VBG _ 0 root _ _ 27 markets _ NOUN NNS _ 28 nsubj _ _ 28 nervous _ ADJ JJ _ 26 xcomp _ _ 29 . _ PUNCT . _ 26 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 1987 _ NUM CD _ 3 nummod _ _ 3 crash _ NOUN NN _ 4 nsubj _ _ 4 brought _ VERB VBD _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 Reagan _ PROPN NNP _ 7 compound _ _ 7 administration _ NOUN NN _ 4 dobj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 Democratic _ ADJ JJ _ 10 amod _ _ 10 lawmakers _ NOUN NNS _ 7 conj _ _ 11 to _ ADP TO _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 table _ NOUN NN _ 4 nmod _ _ 14 for _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 first _ ADJ JJ _ 18 amod _ _ 17 budget _ NOUN NN _ 18 compound _ _ 18 summit _ NOUN NN _ 4 nmod _ _ 19 , _ PUNCT , _ 4 punct _ _ 20 resulting _ VERB VBG _ 4 advcl _ _ 21 in _ ADP IN _ 24 case _ _ 22 a _ DET DT _ 24 det _ _ 23 two-year _ ADJ JJ _ 24 amod _ _ 24 plan _ NOUN NN _ 20 nmod _ _ 25 to _ PART TO _ 26 mark _ _ 26 reduce _ VERB VB _ 24 acl _ _ 27 the _ DET DT _ 28 det _ _ 28 deficit _ NOUN NN _ 26 dobj _ _ 29 by _ ADP IN _ 32 case _ _ 30 more _ ADJ JJR _ 32 advmod _ _ 31 than _ ADP IN _ 30 mwe _ _ 32 $ _ SYM $ _ 26 nmod _ _ 33 76 _ NUM CD _ 34 compound _ _ 34 billion _ NUM CD _ 32 nummod _ _ 35 -- _ PUNCT : _ 20 punct _ _ 36 even _ ADV RB _ 41 advmod _ _ 37 though _ SCONJ IN _ 41 mark _ _ 38 the _ DET DT _ 39 det _ _ 39 deficit _ NOUN NN _ 41 nsubj _ _ 40 actually _ ADV RB _ 41 advmod _ _ 41 rose _ VERB VBD _ 20 advcl _ _ 42 by _ ADP IN _ 44 case _ _ 43 nearly _ ADV RB _ 44 advmod _ _ 44 $ _ SYM $ _ 41 nmod _ _ 45 12 _ NUM CD _ 46 compound _ _ 46 billion _ NUM CD _ 44 nummod _ _ 47 during _ ADP IN _ 49 case _ _ 48 that _ DET DT _ 49 det _ _ 49 period _ NOUN NN _ 41 nmod _ _ 50 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 17 cc _ _ 2 , _ PUNCT , _ 17 punct _ _ 3 barring _ VERB VBG _ 5 case _ _ 4 further _ ADJ JJR _ 5 amod _ _ 5 drops _ NOUN NNS _ 17 nmod _ _ 6 in _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 5 nmod _ _ 9 this _ DET DT _ 10 det _ _ 10 week _ NOUN NN _ 5 nmod:tmod _ _ 11 , _ PUNCT , _ 17 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 similar _ ADJ JJ _ 14 amod _ _ 14 outcome _ NOUN NN _ 17 nsubj _ _ 15 does _ AUX VBZ _ 17 aux _ _ 16 n't _ PART RB _ 17 neg _ _ 17 seem _ VERB VB _ 0 root _ _ 18 likely _ ADV RB _ 17 xcomp _ _ 19 this _ DET DT _ 20 det _ _ 20 year _ NOUN NN _ 17 nmod:tmod _ _ 21 . _ PUNCT . _ 17 punct _ _ 1 Lawmakers _ NOUN NNS _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 administration _ NOUN NN _ 4 compound _ _ 4 officials _ NOUN NNS _ 1 conj _ _ 5 agree _ VERB VBP _ 0 root _ _ 6 that _ SCONJ IN _ 16 mark _ _ 7 Friday _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 drop _ NOUN NN _ 16 nsubj _ _ 10 , _ PUNCT , _ 16 punct _ _ 11 by _ ADP IN _ 12 case _ _ 12 itself _ PRON PRP _ 16 nmod _ _ 13 , _ PUNCT , _ 16 punct _ _ 14 is _ VERB VBZ _ 16 cop _ _ 15 n't _ PART RB _ 16 neg _ _ 16 enough _ ADJ JJ _ 5 ccomp _ _ 17 to _ PART TO _ 18 mark _ _ 18 force _ VERB VB _ 16 xcomp _ _ 19 both _ DET DT _ 20 det _ _ 20 sides _ NOUN NNS _ 18 dobj _ _ 21 back _ ADV RB _ 18 advmod _ _ 22 to _ ADP TO _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 table _ NOUN NN _ 21 nmod _ _ 25 to _ PART TO _ 26 mark _ _ 26 try _ VERB VB _ 18 xcomp _ _ 27 to _ PART TO _ 28 mark _ _ 28 reach _ VERB VB _ 26 xcomp _ _ 29 a _ DET DT _ 31 det _ _ 30 deficit-reduction _ NOUN NN _ 31 compound _ _ 31 agreement _ NOUN NN _ 28 dobj _ _ 32 that _ PRON WDT _ 36 nsubj _ _ 33 would _ AUX MD _ 36 aux _ _ 34 be _ VERB VB _ 36 cop _ _ 35 more _ ADV RBR _ 36 advmod _ _ 36 serious _ ADJ JJ _ 31 acl:relcl _ _ 37 and _ CONJ CC _ 36 cc _ _ 38 more _ ADV RBR _ 39 advmod _ _ 39 far-reaching _ ADJ JJ _ 36 conj _ _ 40 than _ ADP IN _ 45 case _ _ 41 last _ ADJ JJ _ 42 amod _ _ 42 spring _ NOUN NN _ 45 nmod:poss _ _ 43 's _ PART POS _ 42 case _ _ 44 gimmick-ridden _ ADJ JJ _ 45 amod _ _ 45 plan _ NOUN NN _ 36 nmod _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 which _ PRON WDT _ 52 nsubjpass _ _ 48 still _ ADV RB _ 52 advmod _ _ 49 is _ AUX VBZ _ 52 auxpass _ _ 50 n't _ PART RB _ 52 neg _ _ 51 fully _ ADV RB _ 52 advmod _ _ 52 implemented _ VERB VBN _ 45 acl:relcl _ _ 53 . _ PUNCT . _ 5 punct _ _ 1 One _ NUM CD _ 15 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 the _ DET DT _ 5 det _ _ 4 biggest _ ADJ JJS _ 5 amod _ _ 5 reasons _ NOUN NNS _ 1 nmod _ _ 6 that _ ADP IN _ 11 advmod _ _ 7 new _ ADJ JJ _ 8 amod _ _ 8 talks _ NOUN NNS _ 11 nsubj _ _ 9 are _ VERB VBP _ 11 cop _ _ 10 n't _ PART RB _ 11 neg _ _ 11 likely _ ADJ JJ _ 5 dep _ _ 12 to _ PART TO _ 13 mark _ _ 13 come _ VERB VB _ 11 xcomp _ _ 14 about _ ADP RP _ 13 compound:prt _ _ 15 is _ VERB VBZ _ 0 root _ _ 16 that _ SCONJ IN _ 30 mark _ _ 17 , _ PUNCT , _ 30 punct _ _ 18 as _ SCONJ IN _ 20 mark _ _ 19 everyone _ NOUN NN _ 20 nsubj _ _ 20 learned _ VERB VBD _ 30 advcl _ _ 21 in _ ADP IN _ 22 case _ _ 22 1987 _ NUM CD _ 20 nmod _ _ 23 , _ PUNCT , _ 30 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 economy _ NOUN NN _ 30 nsubj _ _ 26 and _ CONJ CC _ 25 cc _ _ 27 the _ DET DT _ 28 det _ _ 28 market _ NOUN NN _ 25 conj _ _ 29 can _ AUX MD _ 30 aux _ _ 30 survive _ VERB VB _ 15 ccomp _ _ 31 a _ DET DT _ 34 det _ _ 32 one-day _ ADJ JJ _ 34 amod _ _ 33 508-point _ ADJ JJ _ 34 amod _ _ 34 tumble _ NOUN NN _ 30 dobj _ _ 35 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 Everybody _ NOUN NN _ 3 nsubj _ _ 3 thought _ VERB VBD _ 24 ccomp _ _ 4 we _ PRON PRP _ 6 nsubj _ _ 5 were _ AUX VBD _ 6 aux _ _ 6 looking _ VERB VBG _ 3 dep _ _ 7 at _ ADP IN _ 9 case _ _ 8 a _ DET DT _ 9 det _ _ 9 repetition _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 1929 _ NUM CD _ 9 nmod _ _ 12 , _ PUNCT , _ 6 punct _ _ 13 that _ SCONJ IN _ 16 mark _ _ 14 we _ PRON PRP _ 16 nsubj _ _ 15 were _ AUX VBD _ 16 aux _ _ 16 looking _ VERB VBG _ 6 dep _ _ 17 at _ ADP IN _ 19 case _ _ 18 a _ DET DT _ 19 det _ _ 19 recession _ NOUN NN _ 16 nmod _ _ 20 , _ PUNCT , _ 24 punct _ _ 21 '' _ PUNCT '' _ 24 punct _ _ 22 Rep. _ PROPN NNP _ 23 compound _ _ 23 Panetta _ PROPN NNP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 yesterday _ NOUN NN _ 24 nmod:tmod _ _ 26 in _ ADP IN _ 28 case _ _ 27 an _ DET DT _ 28 det _ _ 28 interview _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 That _ PRON DT _ 5 nsubj _ _ 3 did _ AUX VBD _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 happen _ VERB VB _ 0 root _ _ 6 . _ PUNCT . _ 5 punct _ _ 1 They _ PRON PRP _ 2 nsubj _ _ 2 learned _ VERB VBD _ 0 root _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 could _ AUX MD _ 5 aux _ _ 5 survive _ VERB VB _ 2 ccomp _ _ 6 it _ PRON PRP _ 5 dobj _ _ 7 without _ ADP IN _ 9 case _ _ 8 much _ ADJ JJ _ 9 amod _ _ 9 problem _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 11 '' _ PUNCT '' _ 2 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 administration _ NOUN NN _ 3 compound _ _ 3 officials _ NOUN NNS _ 5 nsubj _ _ 4 privately _ ADV RB _ 5 advmod _ _ 5 agree _ VERB VBP _ 0 root _ _ 6 with _ ADP IN _ 8 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Panetta _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 who _ PRON WP _ 11 nsubj _ _ 11 said _ VERB VBD _ 8 acl:relcl _ _ 12 a _ DET DT _ 14 det _ _ 13 precipitous _ ADJ JJ _ 14 amod _ _ 14 drop _ NOUN NN _ 19 nsubj _ _ 15 this _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:tmod _ _ 17 `` _ PUNCT `` _ 19 punct _ _ 18 is _ AUX VBZ _ 19 aux _ _ 19 going _ VERB VBG _ 11 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 force _ VERB VB _ 19 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 president _ NOUN NN _ 21 dobj _ _ 24 and _ CONJ CC _ 23 cc _ _ 25 Congress _ PROPN NNP _ 23 conj _ _ 26 to _ PART TO _ 27 mark _ _ 27 take _ VERB VB _ 21 xcomp _ _ 28 a _ DET DT _ 31 det _ _ 29 much _ ADJ JJ _ 31 amod _ _ 30 harder _ ADJ JJR _ 29 dep _ _ 31 look _ NOUN NN _ 27 dobj _ _ 32 at _ ADP IN _ 34 case _ _ 33 fiscal _ ADJ JJ _ 34 amod _ _ 34 policy _ NOUN NN _ 31 nmod _ _ 35 . _ PUNCT . _ 5 punct _ _ 36 '' _ PUNCT '' _ 5 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 that _ DET DT _ 3 det _ _ 3 case _ NOUN NN _ 8 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 there _ PRON EX _ 8 expl _ _ 6 will _ AUX MD _ 8 aux _ _ 7 be _ VERB VB _ 8 cop _ _ 8 plenty _ NOUN NN _ 0 root _ _ 9 of _ ADP IN _ 10 case _ _ 10 blame _ NOUN NN _ 8 nmod _ _ 11 to _ PART TO _ 12 mark _ _ 12 go _ VERB VB _ 8 acl _ _ 13 around _ ADP RP _ 12 compound:prt _ _ 14 . _ PUNCT . _ 8 punct _ _ 1 `` _ PUNCT `` _ 49 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 49 ccomp _ _ 4 an _ DET DT _ 6 det _ _ 5 underlying _ ADJ JJ _ 6 amod _ _ 6 concern _ NOUN NN _ 3 nsubj _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 part _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 American _ ADJ JJ _ 13 amod _ _ 13 people _ NOUN NNS _ 9 nmod _ _ 14 -- _ PUNCT : _ 18 punct _ _ 15 and _ CONJ CC _ 18 cc _ _ 16 there _ ADV RB _ 18 nsubj _ _ 17 should _ AUX MD _ 18 aux _ _ 18 be _ VERB VB _ 6 dep _ _ 19 - _ PUNCT : _ 18 punct _ _ 20 that _ SCONJ IN _ 25 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 administration _ NOUN NN _ 25 nsubj _ _ 23 has _ AUX VBZ _ 25 aux _ _ 24 not _ PART RB _ 25 neg _ _ 25 gone _ VERB VBN _ 6 dep _ _ 26 far _ ADV RB _ 27 advmod _ _ 27 enough _ ADV RB _ 25 advmod _ _ 28 in _ SCONJ IN _ 29 mark _ _ 29 cutting _ VERB VBG _ 25 advcl _ _ 30 this _ DET DT _ 31 det _ _ 31 deficit _ NOUN NN _ 29 dobj _ _ 32 and _ CONJ CC _ 25 cc _ _ 33 that _ SCONJ IN _ 37 mark _ _ 34 Congress _ PROPN NNP _ 37 nsubj _ _ 35 has _ AUX VBZ _ 37 aux _ _ 36 been _ VERB VBN _ 37 cop _ _ 37 unwilling _ ADJ JJ _ 25 conj _ _ 38 to _ PART TO _ 39 mark _ _ 39 cut _ VERB VB _ 37 xcomp _ _ 40 what _ PRON WP _ 43 dobj _ _ 41 the _ DET DT _ 42 det _ _ 42 administration _ NOUN NN _ 43 nsubj _ _ 43 asked _ VERB VBD _ 39 ccomp _ _ 44 us _ PRON PRP _ 43 dobj _ _ 45 to _ PART TO _ 46 mark _ _ 46 cut _ VERB VB _ 43 xcomp _ _ 47 , _ PUNCT , _ 49 punct _ _ 48 '' _ PUNCT '' _ 49 punct _ _ 49 said _ VERB VBD _ 0 root _ _ 50 Senate _ PROPN NNP _ 55 compound _ _ 51 Finance _ PROPN NNP _ 55 compound _ _ 52 Committee _ PROPN NNP _ 55 compound _ _ 53 Chairman _ PROPN NNP _ 55 compound _ _ 54 Lloyd _ PROPN NNP _ 55 compound _ _ 55 Bentsen _ PROPN NNP _ 49 nsubj _ _ 56 -LRB- _ PUNCT -LRB- _ 57 punct _ _ 57 D. _ PROPN NNP _ 55 appos _ _ 58 , _ PUNCT , _ 57 punct _ _ 59 Texas _ PROPN NNP _ 57 dep _ _ 60 -RRB- _ PUNCT -RRB- _ 57 punct _ _ 61 . _ PUNCT . _ 49 punct _ _ 1 Nevertheless _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 clearly _ ADV RB _ 6 advmod _ _ 5 will _ AUX MD _ 6 aux _ _ 6 take _ VERB VB _ 0 root _ _ 7 more _ ADJ JJR _ 6 dobj _ _ 8 than _ ADP IN _ 12 case _ _ 9 Friday _ PROPN NNP _ 12 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 190-point _ ADJ JJ _ 12 amod _ _ 12 decline _ NOUN NN _ 7 nmod _ _ 13 to _ PART TO _ 14 mark _ _ 14 overcome _ VERB VB _ 6 advcl _ _ 15 the _ DET DT _ 17 det _ _ 16 bitter _ ADJ JJ _ 17 amod _ _ 17 feelings _ NOUN NNS _ 14 dobj _ _ 18 that _ PRON WDT _ 20 nsubj _ _ 19 have _ AUX VBP _ 20 aux _ _ 20 developed _ VERB VBN _ 17 acl:relcl _ _ 21 between _ ADP IN _ 22 case _ _ 22 lawmakers _ NOUN NNS _ 20 nmod _ _ 23 and _ CONJ CC _ 22 cc _ _ 24 White _ PROPN NNP _ 29 compound _ _ 25 House _ PROPN NNP _ 29 compound _ _ 26 Budget _ PROPN NNP _ 29 compound _ _ 27 Director _ PROPN NNP _ 29 compound _ _ 28 Richard _ PROPN NNP _ 29 compound _ _ 29 Darman _ PROPN NNP _ 22 conj _ _ 30 over _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 capital-gains _ NOUN NNS _ 33 compound _ _ 33 fight _ NOUN NN _ 20 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 Hill _ PROPN NNP _ 2 compound _ _ 2 Democrats _ PROPN NNPS _ 5 nsubj _ _ 3 are _ VERB VBP _ 5 cop _ _ 4 particularly _ ADV RB _ 5 advmod _ _ 5 angry _ ADJ JJ _ 0 root _ _ 6 over _ ADP IN _ 10 case _ _ 7 Mr. _ PROPN NNP _ 8 compound _ _ 8 Bush _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 claim _ NOUN NN _ 5 nmod _ _ 11 that _ SCONJ IN _ 16 mark _ _ 12 the _ DET DT _ 14 det _ _ 13 capital-gains _ NOUN NNS _ 14 compound _ _ 14 cut _ NOUN NN _ 16 nsubj _ _ 15 was _ VERB VBD _ 16 cop _ _ 16 part _ NOUN NN _ 10 ccomp _ _ 17 of _ ADP IN _ 21 case _ _ 18 April _ PROPN NNP _ 21 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 budget _ NOUN NN _ 21 compound _ _ 21 accord _ NOUN NN _ 16 nmod _ _ 22 and _ CONJ CC _ 10 cc _ _ 23 his _ PRON PRP$ _ 24 nmod:poss _ _ 24 insistence _ NOUN NN _ 10 conj _ _ 25 on _ SCONJ IN _ 26 mark _ _ 26 combining _ VERB VBG _ 24 acl _ _ 27 it _ PRON PRP _ 26 dobj _ _ 28 with _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 deficit-reduction _ NOUN NN _ 31 compound _ _ 31 legislation _ NOUN NN _ 26 nmod _ _ 32 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 40 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 is _ VERB VBZ _ 40 ccomp _ _ 4 no _ DET DT _ 5 neg _ _ 5 prospect _ NOUN NN _ 3 nsubj _ _ 6 of _ ADP IN _ 10 case _ _ 7 any _ DET DT _ 10 det _ _ 8 so-called _ ADJ JJ _ 10 amod _ _ 9 grand _ ADJ JJ _ 10 amod _ _ 10 compromise _ NOUN NN _ 5 nmod _ _ 11 or _ CONJ CC _ 10 cc _ _ 12 deal _ NOUN NN _ 10 conj _ _ 13 next _ ADJ JJ _ 14 amod _ _ 14 year _ NOUN NN _ 10 nmod:tmod _ _ 15 because _ SCONJ IN _ 21 mark _ _ 16 the _ DET DT _ 17 det _ _ 17 administration _ NOUN NN _ 21 nsubj _ _ 18 simply _ ADV RB _ 21 advmod _ _ 19 did _ AUX VBD _ 21 aux _ _ 20 n't _ PART RB _ 21 neg _ _ 21 live _ VERB VB _ 3 advcl _ _ 22 up _ ADP RP _ 21 compound:prt _ _ 23 to _ ADP TO _ 27 case _ _ 24 this _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 deal _ NOUN NN _ 21 nmod _ _ 28 , _ PUNCT , _ 40 punct _ _ 29 '' _ PUNCT '' _ 40 punct _ _ 30 Senate _ PROPN NNP _ 34 compound _ _ 31 Majority _ PROPN NNP _ 34 compound _ _ 32 Leader _ PROPN NNP _ 34 compound _ _ 33 George _ PROPN NNP _ 34 compound _ _ 34 Mitchell _ PROPN NNP _ 40 nsubj _ _ 35 -LRB- _ PUNCT -LRB- _ 36 punct _ _ 36 D. _ PROPN NNP _ 34 appos _ _ 37 , _ PUNCT , _ 36 punct _ _ 38 Maine _ PROPN NNP _ 36 dep _ _ 39 -RRB- _ PUNCT -RRB- _ 36 punct _ _ 40 said _ VERB VBD _ 0 root _ _ 41 yesterday _ NOUN NN _ 40 nmod:tmod _ _ 42 on _ ADP IN _ 44 case _ _ 43 CBS _ PROPN NNP _ 44 compound _ _ 44 News _ PROPN NNP _ 40 nmod _ _ 45 's _ PART POS _ 44 case _ _ 46 `` _ PUNCT `` _ 44 punct _ _ 47 Face _ PROPN NNP _ 49 dep _ _ 48 the _ DET DT _ 49 det _ _ 49 Nation _ PROPN NNP _ 44 dep _ _ 50 . _ PUNCT . _ 40 punct _ _ 51 '' _ PUNCT '' _ 40 punct _ _ 1 During _ ADP IN _ 5 case _ _ 2 last _ ADJ JJ _ 3 amod _ _ 3 week _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 maneuverings _ NOUN NNS _ 16 nmod _ _ 6 on _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 deficit-cutting _ ADJ JJ _ 9 amod _ _ 9 bill _ NOUN NN _ 5 nmod _ _ 10 and _ CONJ CC _ 9 cc _ _ 11 the _ DET DT _ 13 det _ _ 12 capital-gains _ NOUN NNS _ 13 compound _ _ 13 issue _ NOUN NN _ 9 conj _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 there _ PRON EX _ 16 expl _ _ 16 were _ VERB VBD _ 0 root _ _ 17 signs _ NOUN NNS _ 16 nsubj _ _ 18 that _ SCONJ IN _ 26 mark _ _ 19 Senate _ PROPN NNP _ 20 compound _ _ 20 Republicans _ PROPN NNP _ 26 nsubj _ _ 21 and _ CONJ CC _ 20 cc _ _ 22 the _ DET DT _ 23 det _ _ 23 administration _ NOUN NN _ 20 conj _ _ 24 were _ VERB VBD _ 26 cop _ _ 25 at _ ADP IN _ 26 case _ _ 26 odds _ NOUN NNS _ 17 ccomp _ _ 27 . _ PUNCT . _ 16 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 very _ ADJ JJ _ 4 amod _ _ 4 moment _ NOUN NN _ 26 nmod _ _ 5 that _ ADP IN _ 9 advmod _ _ 6 Senate _ PROPN NNP _ 7 compound _ _ 7 Republicans _ PROPN NNPS _ 9 nsubj _ _ 8 were _ AUX VBD _ 9 aux _ _ 9 negotiating _ VERB VBG _ 4 dep _ _ 10 a _ DET DT _ 11 det _ _ 11 deal _ NOUN NN _ 9 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 exclude _ VERB VB _ 11 acl _ _ 14 capital _ NOUN NN _ 15 compound _ _ 15 gains _ NOUN NNS _ 13 dobj _ _ 16 from _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 deficit-reduction _ NOUN NN _ 19 compound _ _ 19 legislation _ NOUN NN _ 13 nmod _ _ 20 , _ PUNCT , _ 26 punct _ _ 21 White _ PROPN NNP _ 25 compound _ _ 22 House _ PROPN NNP _ 25 compound _ _ 23 spokesman _ NOUN NN _ 25 compound _ _ 24 Marlin _ PROPN NNP _ 25 compound _ _ 25 Fitzwater _ PROPN NNP _ 26 nsubj _ _ 26 told _ VERB VBD _ 0 root _ _ 27 reporters _ NOUN NNS _ 26 dobj _ _ 28 that _ SCONJ IN _ 34 mark _ _ 29 it _ PRON PRP _ 34 nsubj _ _ 30 was _ VERB VBD _ 34 cop _ _ 31 the _ DET DT _ 32 det _ _ 32 president _ NOUN NN _ 34 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 policy _ NOUN NN _ 26 ccomp _ _ 35 to _ PART TO _ 36 mark _ _ 36 include _ VERB VB _ 34 advcl _ _ 37 it _ PRON PRP _ 36 dobj _ _ 38 . _ PUNCT . _ 26 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 an _ DET DT _ 3 det _ _ 3 agreement _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 reached _ VERB VBN _ 30 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 strip _ VERB VB _ 5 xcomp _ _ 8 capital _ NOUN NN _ 9 compound _ _ 9 gains _ NOUN NNS _ 7 dobj _ _ 10 from _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 legislation _ NOUN NN _ 7 nmod _ _ 13 , _ PUNCT , _ 30 punct _ _ 14 Oregon _ PROPN NNP _ 17 compound _ _ 15 Sen. _ PROPN NNP _ 17 compound _ _ 16 Bob _ PROPN NNP _ 17 compound _ _ 17 Packwood _ PROPN NNP _ 30 nsubj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 the _ DET DT _ 22 det _ _ 20 ranking _ ADJ JJ _ 22 amod _ _ 21 GOP _ PROPN NNP _ 22 compound _ _ 22 member _ NOUN NN _ 17 appos _ _ 23 of _ ADP IN _ 28 case _ _ 24 the _ DET DT _ 28 det _ _ 25 tax-writing _ ADJ JJ _ 28 amod _ _ 26 Senate _ PROPN NNP _ 28 compound _ _ 27 Finance _ PROPN NNP _ 28 compound _ _ 28 Committee _ PROPN NNP _ 22 nmod _ _ 29 , _ PUNCT , _ 17 punct _ _ 30 hailed _ VERB VBD _ 0 root _ _ 31 it _ PRON PRP _ 30 dobj _ _ 32 . _ PUNCT . _ 30 punct _ _ 1 Asked _ VERB VBN _ 9 advcl _ _ 2 if _ SCONJ IN _ 5 mark _ _ 3 the _ DET DT _ 4 det _ _ 4 administration _ NOUN NN _ 5 nsubj _ _ 5 agreed _ VERB VBD _ 1 advcl _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 he _ PRON PRP _ 9 nsubj _ _ 8 curtly _ ADV RB _ 9 advmod _ _ 9 replied _ VERB VBD _ 0 root _ _ 10 : _ PUNCT : _ 9 punct _ _ 11 `` _ PUNCT `` _ 15 punct _ _ 12 The _ DET DT _ 13 det _ _ 13 adminstration _ NOUN NN _ 15 nsubj _ _ 14 will _ AUX MD _ 15 aux _ _ 15 have _ VERB VB _ 9 ccomp _ _ 16 to _ PART TO _ 17 mark _ _ 17 speak _ VERB VB _ 15 xcomp _ _ 18 for _ ADP IN _ 19 case _ _ 19 itself _ PRON PRP _ 17 nmod _ _ 20 . _ PUNCT . _ 9 punct _ _ 21 '' _ PUNCT '' _ 9 punct _ _ 1 Friday _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 tumble _ NOUN NN _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 spur _ VERB VB _ 0 root _ _ 7 action _ NOUN NN _ 6 dobj _ _ 8 on _ ADP IN _ 21 case _ _ 9 reconciling _ VERB VBG _ 21 dep _ _ 10 the _ DET DT _ 14 det _ _ 11 House _ PROPN NNP _ 14 compound _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Senate _ PROPN NNP _ 11 conj _ _ 14 versions _ NOUN NNS _ 9 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 deficit-reduction _ NOUN NN _ 18 compound _ _ 18 measure _ NOUN NN _ 14 nmod _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 a _ DET DT _ 21 det _ _ 21 process _ NOUN NN _ 7 nmod _ _ 22 that _ PRON WDT _ 25 nsubjpass _ _ 23 is _ AUX VBZ _ 25 auxpass _ _ 24 n't _ PART RB _ 25 neg _ _ 25 expected _ VERB VBN _ 21 acl:relcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 begin _ VERB VB _ 25 xcomp _ _ 28 until _ ADP IN _ 29 case _ _ 29 tomorrow _ NOUN NN _ 27 nmod _ _ 30 at _ ADP IN _ 32 case _ _ 31 the _ DET DT _ 32 det _ _ 32 soonest _ ADJ JJS _ 29 nmod _ _ 33 . _ PUNCT . _ 6 punct _ _ 1 Senate _ PROPN NNP _ 2 compound _ _ 2 Republicans _ PROPN NNPS _ 3 nsubj _ _ 3 expressed _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 5 det _ _ 5 hope _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 10 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 House _ NOUN NN _ 10 nsubj _ _ 9 would _ AUX MD _ 10 aux _ _ 10 follow _ VERB VB _ 5 ccomp _ _ 11 the _ DET DT _ 12 det _ _ 12 lead _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 Senate _ PROPN NNP _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 20 nsubj _ _ 18 on _ ADP IN _ 19 case _ _ 19 Friday _ PROPN NNP _ 20 nmod _ _ 20 agreed _ VERB VBD _ 15 acl:relcl _ _ 21 to _ PART TO _ 22 mark _ _ 22 drop _ VERB VB _ 20 xcomp _ _ 23 a _ DET DT _ 24 det _ _ 24 variety _ NOUN NN _ 22 dobj _ _ 25 of _ ADP IN _ 27 case _ _ 26 spending _ NOUN NN _ 27 compound _ _ 27 measures _ NOUN NNS _ 24 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 tax _ NOUN NN _ 30 compound _ _ 30 breaks _ NOUN NNS _ 27 conj _ _ 31 that _ PRON WDT _ 34 nsubj _ _ 32 would _ AUX MD _ 34 aux _ _ 33 have _ AUX VB _ 34 aux _ _ 34 increased _ VERB VBN _ 27 acl:relcl _ _ 35 the _ DET DT _ 38 det _ _ 36 fiscal _ ADJ JJ _ 38 amod _ _ 37 1990 _ NUM CD _ 38 nummod _ _ 38 deficit _ NOUN NN _ 34 dobj _ _ 39 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 48 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 market _ NOUN NN _ 4 nsubj _ _ 4 needs _ VERB VBZ _ 48 ccomp _ _ 5 a _ DET DT _ 7 det _ _ 6 strong _ ADJ JJ _ 7 amod _ _ 7 signal _ NOUN NN _ 4 dobj _ _ 8 that _ SCONJ IN _ 11 mark _ _ 9 we _ PRON PRP _ 11 nsubj _ _ 10 're _ VERB VBP _ 11 cop _ _ 11 serious _ ADJ JJ _ 7 ccomp _ _ 12 about _ ADP IN _ 14 case _ _ 13 deficit _ NOUN NN _ 14 compound _ _ 14 reduction _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 and _ CONJ CC _ 4 cc _ _ 17 the _ DET DT _ 19 det _ _ 18 best _ ADJ JJS _ 19 amod _ _ 19 way _ NOUN NN _ 23 nsubj _ _ 20 to _ PART TO _ 21 mark _ _ 21 do _ VERB VB _ 19 acl _ _ 22 that _ PRON DT _ 21 dobj _ _ 23 is _ VERB VBZ _ 4 conj _ _ 24 for _ SCONJ IN _ 30 mark _ _ 25 the _ DET DT _ 26 det _ _ 26 House _ PROPN NNP _ 30 nsubj _ _ 27 of _ ADP IN _ 28 case _ _ 28 Representatives _ PROPN NNPS _ 26 nmod _ _ 29 to _ PART TO _ 30 mark _ _ 30 strip _ VERB VB _ 23 advcl _ _ 31 their _ PRON PRP$ _ 32 nmod:poss _ _ 32 bill _ NOUN NN _ 30 dobj _ _ 33 '' _ PUNCT '' _ 30 punct _ _ 34 of _ ADP IN _ 36 case _ _ 35 similar _ ADJ JJ _ 36 amod _ _ 36 provisions _ NOUN NNS _ 30 nmod _ _ 37 , _ PUNCT , _ 48 punct _ _ 38 Sen. _ PROPN NNP _ 40 compound _ _ 39 Warren _ PROPN NNP _ 40 compound _ _ 40 Rudman _ PROPN NNP _ 48 nsubj _ _ 41 -LRB- _ PUNCT -LRB- _ 42 punct _ _ 42 R. _ PROPN NNP _ 40 appos _ _ 43 , _ PUNCT , _ 42 punct _ _ 44 N.H _ PROPN NNP _ 42 dep _ _ 45 . _ PUNCT . _ 44 punct _ _ 46 -RRB- _ PUNCT -RRB- _ 42 punct _ _ 47 . _ PUNCT . _ 48 punct _ _ 48 said _ VERB VBD _ 0 root _ _ 49 yesterday _ NOUN NN _ 48 nmod:tmod _ _ 50 . _ PUNCT . _ 48 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 White _ PROPN NNP _ 4 compound _ _ 3 House _ PROPN NNP _ 4 compound _ _ 4 Office _ PROPN NNP _ 20 nsubj _ _ 5 of _ ADP IN _ 6 case _ _ 6 Management _ PROPN NNP _ 4 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 Budget _ PROPN NNP _ 6 conj _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 whose _ PRON WP$ _ 11 nmod:poss _ _ 11 calculations _ NOUN NNS _ 12 nsubj _ _ 12 determine _ VERB VBP _ 4 acl:relcl _ _ 13 whether _ SCONJ IN _ 18 mark _ _ 14 the _ DET DT _ 16 det _ _ 15 Gramm-Rudman _ PROPN NNP _ 16 compound _ _ 16 targets _ NOUN NNS _ 18 nsubjpass _ _ 17 are _ AUX VBP _ 18 auxpass _ _ 18 met _ VERB VBN _ 12 ccomp _ _ 19 , _ PUNCT , _ 4 punct _ _ 20 estimated _ VERB VBD _ 0 root _ _ 21 that _ SCONJ IN _ 27 mark _ _ 22 the _ DET DT _ 25 det _ _ 23 House-passed _ ADJ JJ _ 25 amod _ _ 24 deficit-reduction _ NOUN NN _ 25 compound _ _ 25 measure _ NOUN NN _ 27 nsubj _ _ 26 would _ AUX MD _ 27 aux _ _ 27 cut _ VERB VB _ 20 ccomp _ _ 28 the _ DET DT _ 31 det _ _ 29 fiscal _ ADJ JJ _ 31 amod _ _ 30 1990 _ NUM CD _ 31 nummod _ _ 31 shortfall _ NOUN NN _ 27 dobj _ _ 32 by _ ADP IN _ 33 case _ _ 33 $ _ SYM $ _ 27 nmod _ _ 34 6.2 _ NUM CD _ 35 compound _ _ 35 billion _ NUM CD _ 33 nummod _ _ 36 , _ PUNCT , _ 33 punct _ _ 37 almost _ ADV RB _ 38 advmod _ _ 38 half _ DET DT _ 33 appos _ _ 39 of _ ADP IN _ 45 case _ _ 40 the _ DET DT _ 43 det _ _ 41 Congressional _ PROPN NNP _ 43 compound _ _ 42 Budget _ PROPN NNP _ 43 compound _ _ 43 Office _ PROPN NNP _ 45 nmod:poss _ _ 44 's _ PART POS _ 43 case _ _ 45 estimate _ NOUN NN _ 38 nmod _ _ 46 of _ ADP IN _ 47 case _ _ 47 $ _ SYM $ _ 45 nmod _ _ 48 11.0 _ NUM CD _ 49 compound _ _ 49 billion _ NUM CD _ 47 nummod _ _ 50 . _ PUNCT . _ 20 punct _ _ 1 Rep. _ PROPN NNP _ 2 compound _ _ 2 Panetta _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 that _ SCONJ IN _ 11 mark _ _ 5 OMB _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 figure _ NOUN NN _ 11 nsubj _ _ 8 would _ AUX MD _ 11 aux _ _ 9 still _ ADV RB _ 11 advmod _ _ 10 be _ VERB VB _ 11 cop _ _ 11 enough _ ADJ JJ _ 3 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 avoid _ VERB VB _ 11 xcomp _ _ 14 permanent _ ADJ JJ _ 15 amod _ _ 15 across-the-board _ NOUN NN _ 13 dobj _ _ 16 cuts _ VERB VBZ _ 15 dep _ _ 17 , _ PUNCT , _ 3 punct _ _ 18 but _ CONJ CC _ 3 cc _ _ 19 added _ VERB VBD _ 3 conj _ _ 20 : _ PUNCT : _ 19 punct _ _ 21 `` _ PUNCT `` _ 24 punct _ _ 22 We _ PRON PRP _ 24 nsubj _ _ 23 're _ AUX VBP _ 24 aux _ _ 24 getting _ VERB VBG _ 19 ccomp _ _ 25 very _ ADV RB _ 26 advmod _ _ 26 close _ ADV RB _ 24 xcomp _ _ 27 to _ ADP TO _ 29 case _ _ 28 the _ DET DT _ 29 det _ _ 29 margins _ NOUN NNS _ 26 nmod _ _ 30 here _ ADV RB _ 24 advmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 32 '' _ PUNCT '' _ 3 punct _ _ 1 No _ DET DT _ 2 neg _ _ 2 one _ NOUN NN _ 6 nsubj _ _ 3 in _ ADP IN _ 4 case _ _ 4 Washington _ PROPN NNP _ 2 nmod _ _ 5 was _ VERB VBD _ 6 cop _ _ 6 willing _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 take _ VERB VB _ 6 xcomp _ _ 9 the _ DET DT _ 10 det _ _ 10 blame _ NOUN NN _ 8 dobj _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 provoking _ VERB VBG _ 10 acl _ _ 13 Friday _ PROPN NNP _ 15 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 drop _ NOUN NN _ 12 dobj _ _ 16 in _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 stock _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 some _ DET DT _ 3 det _ _ 3 players _ NOUN NNS _ 5 nsubj _ _ 4 were _ VERB VBD _ 5 cop _ _ 5 quick _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 seize _ VERB VB _ 5 xcomp _ _ 8 the _ DET DT _ 9 det _ _ 9 moment _ NOUN NN _ 7 dobj _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 Before _ SCONJ IN _ 5 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 sun _ NOUN NN _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 set _ VERB VBN _ 23 advcl _ _ 6 on _ ADP IN _ 7 case _ _ 7 Friday _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 23 punct _ _ 9 Richard _ PROPN NNP _ 10 compound _ _ 10 Rahn _ PROPN NNP _ 23 nsubj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 the _ DET DT _ 15 det _ _ 13 supply-side _ ADJ JJ _ 15 amod _ _ 14 chief _ ADJ JJ _ 15 amod _ _ 15 economist _ NOUN NN _ 10 appos _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 U.S. _ PROPN NNP _ 19 compound _ _ 19 Chamber _ PROPN NNP _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 Commerce _ PROPN NNP _ 19 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 issued _ VERB VBD _ 0 root _ _ 24 a _ DET DT _ 25 det _ _ 25 statement _ NOUN NN _ 23 dobj _ _ 26 attributing _ VERB VBG _ 25 acl _ _ 27 the _ DET DT _ 28 det _ _ 28 drop _ NOUN NN _ 26 dobj _ _ 29 in _ ADP IN _ 31 case _ _ 30 stock _ NOUN NN _ 31 compound _ _ 31 prices _ NOUN NNS _ 28 nmod _ _ 32 to _ ADP TO _ 35 case _ _ 33 the _ DET DT _ 35 det _ _ 34 Senate _ PROPN NNP _ 35 compound _ _ 35 decision _ NOUN NN _ 26 nmod _ _ 36 to _ PART TO _ 37 mark _ _ 37 postpone _ VERB VB _ 35 acl _ _ 38 action _ NOUN NN _ 37 dobj _ _ 39 on _ ADP IN _ 41 case _ _ 40 capital _ NOUN NN _ 41 compound _ _ 41 gains _ NOUN NNS _ 38 nmod _ _ 42 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 24 punct _ _ 2 Investors _ NOUN NNS _ 20 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 who _ PRON WP _ 7 nsubj _ _ 5 had _ AUX VBD _ 7 aux _ _ 6 been _ AUX VBN _ 7 aux _ _ 7 holding _ VERB VBG _ 2 acl:relcl _ _ 8 assets _ NOUN NNS _ 7 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 anticipation _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 15 case _ _ 12 a _ DET DT _ 15 det _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 favorable _ ADJ JJ _ 15 amod _ _ 15 time _ NOUN NN _ 10 nmod _ _ 16 to _ PART TO _ 17 mark _ _ 17 sell _ VERB VB _ 15 acl _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 were _ AUX VBD _ 20 auxpass _ _ 20 spooked _ VERB VBN _ 24 ccomp _ _ 21 , _ PUNCT , _ 24 punct _ _ 22 '' _ PUNCT '' _ 24 punct _ _ 23 he _ PRON PRP _ 24 nsubj _ _ 24 said _ VERB VBD _ 0 root _ _ 25 . _ PUNCT . _ 24 punct _ _ 1 `` _ PUNCT `` _ 7 punct _ _ 2 There _ PRON EX _ 7 expl _ _ 3 have _ AUX VBP _ 7 aux _ _ 4 been _ VERB VBN _ 7 cop _ _ 5 many _ ADJ JJ _ 7 amod _ _ 6 preposterous _ ADJ JJ _ 7 amod _ _ 7 reasons _ NOUN NNS _ 0 root _ _ 8 advanced _ VERB VBN _ 7 acl _ _ 9 to _ PART TO _ 10 mark _ _ 10 support _ VERB VB _ 7 acl _ _ 11 a _ DET DT _ 14 det _ _ 12 capital-gains _ NOUN NNS _ 14 compound _ _ 13 tax _ NOUN NN _ 14 compound _ _ 14 cut _ NOUN NN _ 10 dobj _ _ 15 , _ PUNCT , _ 19 punct _ _ 16 '' _ PUNCT '' _ 19 punct _ _ 17 Sen. _ PROPN NNP _ 18 compound _ _ 18 Mitchell _ PROPN NNP _ 19 nsubj _ _ 19 said _ VERB VBD _ 7 dep _ _ 20 during _ ADP IN _ 23 case _ _ 21 his _ PRON PRP$ _ 23 nmod:poss _ _ 22 television _ NOUN NN _ 23 compound _ _ 23 appearance _ NOUN NN _ 19 nmod _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 `` _ PUNCT `` _ 7 punct _ _ 26 but _ CONJ CC _ 7 cc _ _ 27 I _ PRON PRP _ 28 nsubj _ _ 28 suggest _ VERB VBP _ 7 conj _ _ 29 that _ PRON DT _ 32 nsubj _ _ 30 is _ VERB VBZ _ 32 cop _ _ 31 perhaps _ ADV RB _ 32 advmod _ _ 32 more _ ADV RBR _ 28 ccomp _ _ 33 than _ ADP IN _ 34 case _ _ 34 any _ DET DT _ 32 nmod _ _ 35 of _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 others _ NOUN NNS _ 34 nmod _ _ 38 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 9 det _ _ 2 following _ ADJ JJ _ 9 amod _ _ 3 U.S. _ PROPN NNP _ 4 compound _ _ 4 Treasury _ PROPN NNP _ 9 compound _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 corporate _ ADJ JJ _ 4 amod _ _ 7 and _ CONJ CC _ 4 cc _ _ 8 municipal _ ADJ JJ _ 4 conj _ _ 9 offerings _ NOUN NNS _ 12 nsubjpass _ _ 10 are _ AUX VBP _ 12 auxpass _ _ 11 tentatively _ ADV RB _ 12 advmod _ _ 12 scheduled _ VERB VBN _ 0 root _ _ 13 for _ ADP IN _ 14 case _ _ 14 sale _ NOUN NN _ 12 nmod _ _ 15 this _ DET DT _ 16 det _ _ 16 week _ NOUN NN _ 14 nmod:tmod _ _ 17 , _ PUNCT , _ 12 punct _ _ 18 according _ VERB VBG _ 24 case _ _ 19 to _ ADP TO _ 18 mwe _ _ 20 Dow _ PROPN NNP _ 24 compound _ _ 21 Jones _ PROPN NNP _ 24 compound _ _ 22 Capital _ PROPN NNP _ 24 compound _ _ 23 Markets _ PROPN NNP _ 24 compound _ _ 24 Report _ PROPN NNP _ 12 nmod _ _ 25 : _ PUNCT : _ 12 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 15.2 _ NUM CD _ 3 compound _ _ 3 billion _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 8 case _ _ 5 three-month _ ADJ JJ _ 8 amod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 six-month _ ADJ JJ _ 5 conj _ _ 8 bills _ NOUN NNS _ 1 nmod _ _ 9 . _ PUNCT . _ 1 punct _ _ 1 Two-year _ ADJ JJ _ 2 amod _ _ 2 notes _ NOUN NNS _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 refinancing _ VERB VBG _ 2 acl _ _ 5 about _ ADV RB _ 6 advmod _ _ 6 $ _ SYM $ _ 4 dobj _ _ 7 9.6 _ NUM CD _ 8 compound _ _ 8 billion _ NUM CD _ 6 nummod _ _ 9 in _ ADP IN _ 11 case _ _ 10 maturing _ VERB VBG _ 11 amod _ _ 11 debt _ NOUN NN _ 6 nmod _ _ 12 . _ PUNCT . _ 2 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 9.75 _ NUM CD _ 3 compound _ _ 3 billion _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 6 case _ _ 5 52-week _ ADJ JJ _ 6 amod _ _ 6 bills _ NOUN NNS _ 1 nmod _ _ 7 . _ PUNCT . _ 1 punct _ _ 1 Connecticut _ PROPN NNP _ 2 compound _ _ 2 Light _ PROPN NNP _ 0 root _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Power _ PROPN NNP _ 5 compound _ _ 5 Co. _ PROPN NNP _ 2 conj _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 Three _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 3 nummod _ _ 3 shares _ NOUN NNS _ 0 root _ _ 4 of _ ADP IN _ 7 case _ _ 5 $ _ SYM $ _ 7 amod _ _ 6 25 _ NUM CD _ 5 compound _ _ 7 preferred _ ADJ JJ _ 3 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 via _ ADP IN _ 11 case _ _ 10 competitive _ ADJ JJ _ 11 amod _ _ 11 bidding _ NOUN NN _ 3 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 B&H _ PROPN NNP _ 4 compound _ _ 2 Crude _ PROPN NNP _ 4 compound _ _ 3 Carriers _ PROPN NNP _ 4 compound _ _ 4 Ltd. _ PROPN NNP _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 1 Four _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 9 case _ _ 7 Salomon _ PROPN NNP _ 9 compound _ _ 8 Brothers _ PROPN NNP _ 9 compound _ _ 9 Inc _ PROPN NNP _ 4 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 Baldwin _ PROPN NNP _ 3 compound _ _ 2 Technology _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 2.6 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 5 nummod _ _ 3 Class _ PROPN NNP _ 5 compound _ _ 4 A _ PROPN NNP _ 5 compound _ _ 5 shares _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 via _ ADP IN _ 11 case _ _ 8 Smith _ PROPN NNP _ 11 compound _ _ 9 Barney _ PROPN NNP _ 11 compound _ _ 10 Harris _ PROPN NNP _ 11 compound _ _ 11 Upham _ PROPN NNP _ 5 nmod _ _ 12 & _ CONJ CC _ 11 cc _ _ 13 Co _ PROPN NNP _ 11 conj _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 Blockbuster _ PROPN NNP _ 3 compound _ _ 2 Entertainment _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 11 amod _ _ 2 250 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 -LRB- _ PUNCT -LRB- _ 5 punct _ _ 5 face _ NOUN NN _ 11 dep _ _ 6 amount _ NOUN NN _ 5 dep _ _ 7 -RRB- _ PUNCT -RRB- _ 5 punct _ _ 8 Liquid _ PROPN NNP _ 11 compound _ _ 9 Yield _ PROPN NNP _ 11 compound _ _ 10 Option _ PROPN NNP _ 11 compound _ _ 11 Notes _ PROPN NNP _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 via _ ADP IN _ 17 case _ _ 14 Merrill _ PROPN NNP _ 17 compound _ _ 15 Lynch _ PROPN NNP _ 17 compound _ _ 16 Capital _ PROPN NNP _ 17 compound _ _ 17 Markets _ PROPN NNP _ 11 nmod _ _ 18 . _ PUNCT . _ 11 punct _ _ 1 Chase _ PROPN NNP _ 3 compound _ _ 2 Manhattan _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 14 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 7 case _ _ 7 Goldman _ PROPN NNP _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Sachs _ PROPN NNP _ 7 conj _ _ 10 & _ CONJ CC _ 7 cc _ _ 11 Co _ PROPN NNP _ 7 conj _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 Comcast _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 $ _ SYM $ _ 5 amod _ _ 2 150 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 convertible _ ADJ JJ _ 5 amod _ _ 5 debentures _ NOUN NNS _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 via _ ADP IN _ 9 case _ _ 8 Merrill _ PROPN NNP _ 9 compound _ _ 9 Lynch _ PROPN NNP _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 CSS _ PROPN NNP _ 2 compound _ _ 2 Industries _ PROPN NNP _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 1.3 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 8 case _ _ 7 Merrill _ PROPN NNP _ 8 compound _ _ 8 Lynch _ PROPN NNP _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Eastern _ PROPN NNP _ 3 compound _ _ 2 Utilities _ PROPN NNP _ 3 compound _ _ 3 Associates _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 1.5 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 8 case _ _ 7 PaineWebber _ PROPN NNP _ 8 compound _ _ 8 Inc _ PROPN NNP _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Employee _ PROPN NNP _ 4 compound _ _ 2 Benefit _ PROPN NNP _ 4 compound _ _ 3 Plans _ PROPN NNP _ 4 compound _ _ 4 Inc. _ PROPN NNP _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 1 Two _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 10 case _ _ 7 Dean _ PROPN NNP _ 10 compound _ _ 8 Witter _ PROPN NNP _ 10 compound _ _ 9 Capital _ PROPN NNP _ 10 compound _ _ 10 Markets _ PROPN NNP _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Exabyte _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 2,850,000 _ NUM CD _ 3 nummod _ _ 2 common _ ADJ JJ _ 3 amod _ _ 3 shares _ NOUN NNS _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 via _ ADP IN _ 7 case _ _ 6 Goldman _ PROPN NNP _ 7 compound _ _ 7 Sachs _ PROPN NNP _ 3 nmod _ _ 8 . _ PUNCT . _ 3 punct _ _ 1 Knowledgeware _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 0 root _ _ 3 -- _ PUNCT : _ 2 punct _ _ 1 2.4 _ NUM CD _ 2 compound _ _ 2 million _ NUM CD _ 4 nummod _ _ 3 common _ ADJ JJ _ 4 amod _ _ 4 shares _ NOUN NNS _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 via _ ADP IN _ 8 case _ _ 7 Montgomery _ PROPN NNP _ 8 compound _ _ 8 Securities _ PROPN NNP _ 4 nmod _ _ 9 . _ PUNCT . _ 4 punct _ _ 1 Oregon _ PROPN NNP _ 0 root _ _ 2 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 100 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 10 case _ _ 5 general _ ADJ JJ _ 7 amod _ _ 6 obligation _ NOUN NN _ 7 compound _ _ 7 veterans _ NOUN NNS _ 10 nmod:poss _ _ 8 ' _ PART POS _ 7 case _ _ 9 tax _ NOUN NN _ 10 compound _ _ 10 notes _ NOUN NNS _ 1 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Series _ PROPN NNP _ 10 appos _ _ 13 1989 _ NUM CD _ 12 nummod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 via _ ADP IN _ 17 case _ _ 16 competitive _ ADJ JJ _ 17 amod _ _ 17 bid _ NOUN NN _ 1 nmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 Washington _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 D.C. _ PROPN NNP _ 1 appos _ _ 4 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 200 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 10 case _ _ 5 1990 _ NUM CD _ 10 nummod _ _ 6 general _ ADJ JJ _ 10 amod _ _ 7 obligation _ NOUN NN _ 10 compound _ _ 8 tax _ NOUN NN _ 10 compound _ _ 9 revenue _ NOUN NN _ 10 compound _ _ 10 notes _ NOUN NNS _ 1 nmod _ _ 11 -LRB- _ PUNCT -LRB- _ 10 punct _ _ 12 Series _ PROPN NNP _ 13 compound _ _ 13 1990A _ PROPN NNP _ 10 dep _ _ 14 -RRB- _ PUNCT -RRB- _ 10 punct _ _ 15 , _ PUNCT , _ 1 punct _ _ 16 via _ ADP IN _ 18 case _ _ 17 competitive _ ADJ JJ _ 18 amod _ _ 18 bid _ NOUN NN _ 1 nmod _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 Virginia _ PROPN NNP _ 4 compound _ _ 2 Public _ PROPN NNP _ 4 compound _ _ 3 School _ PROPN NNP _ 4 compound _ _ 4 Authority _ PROPN NNP _ 0 root _ _ 5 -- _ PUNCT : _ 4 punct _ _ 1 $ _ SYM $ _ 2 dep _ _ 2 55,730,000 _ NUM CD _ 0 root _ _ 3 of _ ADP IN _ 6 case _ _ 4 school _ NOUN NN _ 6 compound _ _ 5 financing _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 2 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 1989 _ NUM CD _ 10 nummod _ _ 9 Series _ PROPN NNP _ 10 compound _ _ 10 B _ PROPN NNP _ 6 appos _ _ 11 -LRB- _ PUNCT -LRB- _ 13 punct _ _ 12 1987 _ NUM CD _ 13 nummod _ _ 13 resolution _ NOUN NN _ 6 appos _ _ 14 -RRB- _ PUNCT -RRB- _ 13 punct _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 via _ ADP IN _ 18 case _ _ 17 competitive _ ADJ JJ _ 18 amod _ _ 18 bid _ NOUN NN _ 2 nmod _ _ 19 . _ PUNCT . _ 2 punct _ _ 1 Austin _ PROPN NNP _ 0 root _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Texas _ PROPN NNP _ 1 appos _ _ 4 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 2 dep _ _ 2 68,230,000 _ NUM CD _ 0 root _ _ 3 of _ ADP IN _ 5 case _ _ 4 various _ ADJ JJ _ 5 amod _ _ 5 bonds _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 including _ VERB VBG _ 15 case _ _ 8 $ _ SYM $ _ 15 amod _ _ 9 32 _ NUM CD _ 8 compound _ _ 10 million _ NUM CD _ 8 compound _ _ 11 hotel _ NOUN NN _ 15 compound _ _ 12 occupancy _ NOUN NN _ 15 compound _ _ 13 tax _ NOUN NN _ 15 compound _ _ 14 revenue _ NOUN NN _ 15 compound _ _ 15 bonds _ NOUN NNS _ 2 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 Series _ PROPN NNP _ 18 compound _ _ 18 1989A _ PROPN NNP _ 15 appos _ _ 19 , _ PUNCT , _ 15 punct _ _ 20 and _ CONJ CC _ 15 cc _ _ 21 $ _ SYM $ _ 27 amod _ _ 22 36.23 _ NUM CD _ 23 compound _ _ 23 million _ NUM CD _ 21 nummod _ _ 24 convention _ NOUN NN _ 27 compound _ _ 25 center _ NOUN NN _ 27 compound _ _ 26 revenue _ NOUN NN _ 27 compound _ _ 27 bonds _ NOUN NNS _ 15 conj _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 Series _ PROPN NNP _ 30 compound _ _ 30 1989B _ PROPN NNP _ 27 appos _ _ 31 , _ PUNCT , _ 27 punct _ _ 32 via _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 35 det _ _ 34 Morgan _ PROPN NNP _ 35 compound _ _ 35 Stanley _ PROPN NNP _ 2 nmod _ _ 36 & _ CONJ CC _ 35 cc _ _ 37 Co. _ PROPN NNP _ 38 compound _ _ 38 group _ NOUN NN _ 35 conj _ _ 39 . _ PUNCT . _ 2 punct _ _ 1 California _ PROPN NNP _ 5 compound _ _ 2 Health _ PROPN NNP _ 5 compound _ _ 3 Facilities _ PROPN NNP _ 5 compound _ _ 4 Financing _ PROPN NNP _ 5 compound _ _ 5 Authority _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 144.5 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 8 case _ _ 5 Kaiser _ PROPN NNP _ 8 compound _ _ 6 Permanente _ PROPN NNP _ 8 compound _ _ 7 revenue _ NOUN NN _ 8 compound _ _ 8 bonds _ NOUN NNS _ 1 nmod _ _ 9 , _ PUNCT , _ 1 punct _ _ 10 via _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 PaineWebber _ PROPN NNP _ 13 compound _ _ 13 group _ NOUN NN _ 1 nmod _ _ 14 . _ PUNCT . _ 1 punct _ _ 1 Connecticut _ PROPN NNP _ 0 root _ _ 2 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 3 dep _ _ 2 100 _ NUM CD _ 3 nummod _ _ 3 million _ NUM CD _ 0 root _ _ 4 of _ ADP IN _ 9 case _ _ 5 general _ ADJ JJ _ 9 amod _ _ 6 obligation _ NOUN NN _ 9 compound _ _ 7 capital _ NOUN NN _ 9 compound _ _ 8 appreciation _ NOUN NN _ 9 compound _ _ 9 bonds _ NOUN NNS _ 3 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 College _ PROPN NNP _ 13 compound _ _ 12 Savings _ PROPN NNP _ 13 compound _ _ 13 Plan _ PROPN NNP _ 9 appos _ _ 14 , _ PUNCT , _ 9 punct _ _ 15 1989 _ NUM CD _ 17 nummod _ _ 16 Series _ PROPN NNP _ 17 compound _ _ 17 B _ PROPN NNP _ 9 appos _ _ 18 , _ PUNCT , _ 3 punct _ _ 19 via _ ADP IN _ 24 case _ _ 20 a _ DET DT _ 24 det _ _ 21 Prudential-Bache _ PROPN NNP _ 24 compound _ _ 22 Capital _ PROPN NNP _ 24 compound _ _ 23 Funding _ PROPN NNP _ 24 compound _ _ 24 group _ NOUN NN _ 3 nmod _ _ 25 . _ PUNCT . _ 3 punct _ _ 1 Pennsylvania _ PROPN NNP _ 5 compound _ _ 2 Higher _ PROPN NNP _ 5 compound _ _ 3 Education _ PROPN NNP _ 5 compound _ _ 4 Facilities _ PROPN NNP _ 5 compound _ _ 5 Authority _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 117 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 6 case _ _ 5 revenue _ NOUN NN _ 6 compound _ _ 6 bonds _ NOUN NNS _ 1 nmod _ _ 7 for _ ADP IN _ 9 case _ _ 8 Hahnemann _ PROPN NNP _ 9 compound _ _ 9 University _ PROPN NNP _ 6 nmod _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 Series _ PROPN NNP _ 1 appos _ _ 12 1989 _ NUM CD _ 11 nummod _ _ 13 , _ PUNCT , _ 1 punct _ _ 14 via _ ADP IN _ 18 case _ _ 15 a _ DET DT _ 18 det _ _ 16 Merrill _ PROPN NNP _ 18 compound _ _ 17 Lynch _ PROPN NNP _ 18 compound _ _ 18 group _ NOUN NN _ 1 nmod _ _ 19 . _ PUNCT . _ 1 punct _ _ 1 Tennessee _ PROPN NNP _ 3 compound _ _ 2 Valley _ PROPN NNP _ 3 compound _ _ 3 Authority _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 Three _ NUM CD _ 2 compound _ _ 2 billion _ NUM CD _ 0 root _ _ 3 of _ ADP IN _ 5 case _ _ 4 power _ NOUN NN _ 5 compound _ _ 5 bonds _ NOUN NNS _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 via _ ADP IN _ 10 case _ _ 8 First _ PROPN NNP _ 10 compound _ _ 9 Boston _ PROPN NNP _ 10 compound _ _ 10 Corp _ PROPN NNP _ 2 nmod _ _ 11 . _ PUNCT . _ 2 punct _ _ 1 University _ PROPN NNP _ 0 root _ _ 2 of _ ADP IN _ 3 case _ _ 3 Medicine _ PROPN NNP _ 1 nmod _ _ 4 And _ CONJ CC _ 3 cc _ _ 5 Dentistry _ PROPN NNP _ 3 conj _ _ 6 of _ ADP IN _ 8 case _ _ 7 New _ PROPN NNP _ 8 compound _ _ 8 Jersey _ PROPN NNP _ 1 nmod _ _ 9 -- _ PUNCT : _ 1 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 55 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 Series _ PROPN NNP _ 7 compound _ _ 6 C _ PROPN NNP _ 7 compound _ _ 7 bonds _ NOUN NNS _ 1 nmod _ _ 8 , _ PUNCT , _ 1 punct _ _ 9 via _ ADP IN _ 12 case _ _ 10 a _ DET DT _ 12 det _ _ 11 Prudential-Bache _ PROPN NNP _ 12 compound _ _ 12 group _ NOUN NN _ 1 nmod _ _ 13 . _ PUNCT . _ 1 punct _ _ 1 West _ PROPN NNP _ 3 compound _ _ 2 Virginia _ PROPN NNP _ 3 compound _ _ 3 Parkways _ PROPN NNP _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Economic _ PROPN NNP _ 6 compound _ _ 6 Development _ PROPN NNP _ 3 appos _ _ 7 And _ CONJ CC _ 6 cc _ _ 8 Tourism _ PROPN NNP _ 9 compound _ _ 9 Authority _ PROPN NNP _ 6 conj _ _ 10 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 143 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 parkway _ NOUN NN _ 7 compound _ _ 6 revenue _ NOUN NN _ 7 compound _ _ 7 bonds _ NOUN NNS _ 1 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Series _ NOUN NN _ 7 appos _ _ 10 1989 _ NUM CD _ 9 nummod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 via _ ADP IN _ 15 case _ _ 13 a _ DET DT _ 15 det _ _ 14 PaineWebber _ PROPN NNP _ 15 compound _ _ 15 group _ NOUN NN _ 1 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 San _ PROPN NNP _ 2 compound _ _ 2 Antonio _ PROPN NNP _ 0 root _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Texas _ PROPN NNP _ 2 appos _ _ 5 -- _ PUNCT : _ 2 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 640 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 10 case _ _ 5 gas _ NOUN NN _ 10 compound _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 electric _ ADJ JJ _ 5 conj _ _ 8 revenue _ NOUN NN _ 10 compound _ _ 9 refunding _ NOUN NN _ 10 compound _ _ 10 bonds _ NOUN NNS _ 1 nmod _ _ 11 , _ PUNCT , _ 1 punct _ _ 12 via _ ADP IN _ 16 case _ _ 13 a _ DET DT _ 16 det _ _ 14 First _ PROPN NNP _ 16 compound _ _ 15 Boston _ PROPN NNP _ 16 compound _ _ 16 group _ NOUN NN _ 1 nmod _ _ 17 . _ PUNCT . _ 1 punct _ _ 1 South _ PROPN NNP _ 3 compound _ _ 2 Dakota _ PROPN NNP _ 3 compound _ _ 3 Health _ PROPN NNP _ 0 root _ _ 4 & _ CONJ CC _ 3 cc _ _ 5 Education _ PROPN NNP _ 7 compound _ _ 6 Facility _ PROPN NNP _ 7 compound _ _ 7 Authority _ PROPN NNP _ 3 conj _ _ 8 -- _ PUNCT : _ 7 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 51.1 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 9 case _ _ 5 Rapid _ PROPN NNP _ 9 compound _ _ 6 City _ PROPN NNP _ 9 compound _ _ 7 Regional _ PROPN NNP _ 9 compound _ _ 8 Hospital _ PROPN NNP _ 9 compound _ _ 9 bonds _ NOUN NNS _ 1 nmod _ _ 10 , _ PUNCT , _ 1 punct _ _ 11 via _ ADP IN _ 21 case _ _ 12 a _ DET DT _ 21 det _ _ 13 Dougherty _ PROPN NNP _ 21 compound _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 Dawkins _ PROPN NNP _ 13 conj _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 Strand _ PROPN NNP _ 13 conj _ _ 18 & _ CONJ CC _ 13 cc _ _ 19 Yost _ PROPN NNP _ 13 conj _ _ 20 Inc. _ PROPN NNP _ 21 compound _ _ 21 group _ NOUN NN _ 1 nmod _ _ 22 . _ PUNCT . _ 1 punct _ _ 1 Small _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 3 nsubj _ _ 3 matched _ VERB VBD _ 0 root _ _ 4 their _ PRON PRP$ _ 7 nmod:poss _ _ 5 big _ ADJ JJ _ 7 amod _ _ 6 institutional _ ADJ JJ _ 7 amod _ _ 7 brethren _ NOUN NNS _ 3 dobj _ _ 8 in _ ADP IN _ 9 case _ _ 9 anxiety _ NOUN NN _ 3 nmod _ _ 10 over _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 weekend _ NOUN NN _ 3 nmod _ _ 13 , _ PUNCT , _ 3 punct _ _ 14 but _ CONJ CC _ 3 cc _ _ 15 most _ ADJ JJS _ 16 nsubj _ _ 16 seemed _ VERB VBD _ 3 conj _ _ 17 to _ PART TO _ 19 mark _ _ 18 be _ AUX VB _ 19 aux _ _ 19 taking _ VERB VBG _ 16 xcomp _ _ 20 a _ DET DT _ 22 det _ _ 21 philosophical _ ADJ JJ _ 22 amod _ _ 22 approach _ NOUN NN _ 19 dobj _ _ 23 and _ CONJ CC _ 16 cc _ _ 24 said _ VERB VBD _ 16 conj _ _ 25 they _ PRON PRP _ 27 nsubjpass _ _ 26 were _ AUX VBD _ 27 auxpass _ _ 27 resigned _ VERB VBN _ 24 ccomp _ _ 28 to _ ADP TO _ 29 mark _ _ 29 riding _ VERB VBG _ 27 advcl _ _ 30 out _ ADP RP _ 29 compound:prt _ _ 31 the _ DET DT _ 33 det _ _ 32 latest _ ADJ JJS _ 33 amod _ _ 33 storm _ NOUN NN _ 29 dobj _ _ 34 in _ ADP IN _ 37 case _ _ 35 the _ DET DT _ 37 det _ _ 36 stock _ NOUN NN _ 37 compound _ _ 37 market _ NOUN NN _ 33 nmod _ _ 38 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'm _ AUX VBP _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 losing _ VERB VBG _ 12 ccomp _ _ 6 faith _ NOUN NN _ 5 dobj _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 12 punct _ _ 11 '' _ PUNCT '' _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Boston _ PROPN NNP _ 16 compound _ _ 14 lawyer _ NOUN NN _ 16 compound _ _ 15 Christopher _ PROPN NNP _ 16 compound _ _ 16 Sullivan _ PROPN NNP _ 12 nsubj _ _ 17 as _ SCONJ IN _ 19 mark _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 watched _ VERB VBD _ 12 dep _ _ 20 the _ DET DT _ 21 det _ _ 21 market _ NOUN NN _ 22 nsubj _ _ 22 plunge _ NOUN NN _ 19 ccomp _ _ 23 on _ ADP IN _ 26 case _ _ 24 a _ DET DT _ 26 det _ _ 25 big _ ADJ JJ _ 26 amod _ _ 26 screen _ NOUN NN _ 19 nmod _ _ 27 in _ ADP IN _ 28 case _ _ 28 front _ NOUN NN _ 26 nmod _ _ 29 of _ ADP IN _ 32 case _ _ 30 a _ DET DT _ 32 det _ _ 31 brokerage _ NOUN NN _ 32 compound _ _ 32 firm _ NOUN NN _ 28 nmod _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 he _ PRON PRP _ 6 nsubj _ _ 3 's _ VERB VBZ _ 6 cop _ _ 4 not _ PART RB _ 6 neg _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 sure _ ADJ JJ _ 0 root _ _ 7 about _ ADP IN _ 8 case _ _ 8 everyone _ NOUN NN _ 6 nmod _ _ 9 else _ ADV RB _ 8 amod _ _ 10 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 think _ VERB VBP _ 19 ccomp _ _ 4 on _ ADP IN _ 5 case _ _ 5 Monday _ PROPN NNP _ 12 nmod _ _ 6 the _ DET DT _ 7 det _ _ 7 small _ ADJ JJ _ 12 nsubj _ _ 8 -LRB- _ PUNCT -LRB- _ 9 punct _ _ 9 investors _ NOUN NNS _ 7 dep _ _ 10 -RRB- _ PUNCT -RRB- _ 9 punct _ _ 11 are _ AUX VBP _ 12 aux _ _ 12 going _ VERB VBG _ 3 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 panic _ VERB VB _ 12 xcomp _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 sell _ VERB VB _ 14 conj _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 predicted _ VERB VBD _ 0 root _ _ 20 Mr. _ PROPN NNP _ 21 compound _ _ 21 Sullivan _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 whose _ PRON WP$ _ 24 nmod:poss _ _ 24 investments _ NOUN NNS _ 25 nsubj _ _ 25 include _ VERB VBP _ 21 acl:relcl _ _ 26 AMR _ PROPN NNP _ 27 compound _ _ 27 Corp. _ PROPN NNP _ 31 nmod:poss _ _ 28 's _ PART POS _ 27 case _ _ 29 American _ PROPN NNP _ 31 compound _ _ 30 Airlines _ PROPN NNP _ 31 compound _ _ 31 unit _ NOUN NN _ 25 dobj _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 several _ ADJ JJ _ 35 amod _ _ 34 mutual _ ADJ JJ _ 35 amod _ _ 35 funds _ NOUN NNS _ 31 conj _ _ 36 . _ PUNCT . _ 19 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 And _ CONJ CC _ 4 cc _ _ 3 I _ PRON PRP _ 4 nsubj _ _ 4 think _ VERB VBP _ 0 root _ _ 5 institutions _ NOUN NNS _ 7 nsubj _ _ 6 are _ AUX VBP _ 7 aux _ _ 7 going _ VERB VBG _ 4 ccomp _ _ 8 to _ PART TO _ 9 mark _ _ 9 come _ VERB VB _ 7 xcomp _ _ 10 in _ ADP IN _ 9 advmod _ _ 11 and _ CONJ CC _ 9 cc _ _ 12 buy _ VERB VB _ 9 conj _ _ 13 ... _ PUNCT : _ 4 punct _ _ 1 I _ PRON PRP _ 3 nsubj _ _ 2 'm _ AUX VBP _ 3 aux _ _ 3 going _ VERB VBG _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 hold _ VERB VB _ 3 xcomp _ _ 6 on _ ADP RP _ 5 compound:prt _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 If _ SCONJ IN _ 3 mark _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 sell _ VERB VBP _ 8 advcl _ _ 4 now _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 8 punct _ _ 6 I _ PRON PRP _ 8 nsubj _ _ 7 'll _ AUX MD _ 8 aux _ _ 8 take _ VERB VB _ 0 root _ _ 9 a _ DET DT _ 11 det _ _ 10 big _ ADJ JJ _ 11 amod _ _ 11 loss _ NOUN NN _ 8 dobj _ _ 12 . _ PUNCT . _ 8 punct _ _ 13 '' _ PUNCT '' _ 8 punct _ _ 1 Some _ DET DT _ 2 nsubj _ _ 2 evinced _ VERB VBD _ 0 root _ _ 3 an _ DET DT _ 4 det _ _ 4 optimism _ NOUN NN _ 2 dobj _ _ 5 that _ PRON WDT _ 8 nsubjpass _ _ 6 had _ AUX VBD _ 8 aux _ _ 7 been _ AUX VBN _ 8 auxpass _ _ 8 rewarded _ VERB VBN _ 4 acl:relcl _ _ 9 when _ ADV WRB _ 13 advmod _ _ 10 they _ PRON PRP _ 13 nsubj _ _ 11 did _ AUX VBD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 flee _ VERB VB _ 8 advcl _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 13 dobj _ _ 16 in _ ADP IN _ 17 case _ _ 17 1987 _ NUM CD _ 13 nmod _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 16 punct _ _ 2 Oh _ INTJ UH _ 5 discourse _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 I _ PRON PRP _ 5 nsubj _ _ 5 bet _ VERB VBP _ 16 ccomp _ _ 6 it _ PRON PRP _ 13 nsubj _ _ 7 'll _ AUX MD _ 13 aux _ _ 8 be _ VERB VB _ 13 cop _ _ 9 up _ ADV RB _ 13 advmod _ _ 10 50 _ NUM CD _ 11 nummod _ _ 11 points _ NOUN NNS _ 9 nmod:npmod _ _ 12 on _ ADP IN _ 13 case _ _ 13 Monday _ PROPN NNP _ 5 ccomp _ _ 14 , _ PUNCT , _ 16 punct _ _ 15 '' _ PUNCT '' _ 16 punct _ _ 16 said _ VERB VBD _ 0 root _ _ 17 Lucy _ PROPN NNP _ 18 compound _ _ 18 Crump _ PROPN NNP _ 16 nsubj _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 a _ DET DT _ 23 det _ _ 21 78-year-old _ ADJ JJ _ 23 amod _ _ 22 retired _ ADJ JJ _ 23 amod _ _ 23 housewife _ NOUN NN _ 18 appos _ _ 24 in _ ADP IN _ 25 case _ _ 25 Lexington _ PROPN NNP _ 23 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 Ky _ PROPN NNP _ 25 appos _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 Mrs. _ PROPN NNP _ 2 compound _ _ 2 Crump _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 her _ PRON PRP$ _ 7 nmod:poss _ _ 5 Ashwood _ PROPN NNP _ 7 compound _ _ 6 Investment _ PROPN NNP _ 7 compound _ _ 7 Club _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 portfolio _ NOUN NN _ 10 nsubj _ _ 10 lost _ VERB VBD _ 3 dep _ _ 11 about _ ADV RB _ 12 advmod _ _ 12 one-third _ NOUN NN _ 10 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 its _ PRON PRP$ _ 15 nmod:poss _ _ 15 value _ NOUN NN _ 12 nmod _ _ 16 following _ VERB VBG _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 Black _ PROPN NNP _ 20 compound _ _ 19 Monday _ PROPN NNP _ 20 compound _ _ 20 crash _ NOUN NN _ 10 nmod _ _ 21 , _ PUNCT , _ 10 punct _ _ 22 `` _ PUNCT `` _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 no _ DET DT _ 25 neg _ _ 25 one _ NOUN NN _ 27 nsubjpass _ _ 26 got _ AUX VBD _ 27 auxpass _ _ 27 discouraged _ VERB VBN _ 10 conj _ _ 28 , _ PUNCT , _ 10 punct _ _ 29 and _ CONJ CC _ 10 cc _ _ 30 we _ PRON PRP _ 31 nsubj _ _ 31 gained _ VERB VBD _ 10 conj _ _ 32 that _ PRON DT _ 31 dobj _ _ 33 back _ ADP RP _ 31 compound:prt _ _ 34 -- _ PUNCT : _ 36 punct _ _ 35 and _ CONJ CC _ 36 cc _ _ 36 more _ ADJ JJR _ 31 dep _ _ 37 . _ PUNCT . _ 3 punct _ _ 38 '' _ PUNCT '' _ 3 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 annual _ ADJ JJ _ 4 amod _ _ 4 congress _ NOUN NN _ 23 nmod _ _ 5 of _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 11 det _ _ 7 National _ PROPN NNP _ 11 dep _ _ 8 Association _ PROPN NNP _ 7 dep _ _ 9 of _ ADP IN _ 10 case _ _ 10 Investors _ PROPN NNP _ 7 nmod _ _ 11 Corp. _ PROPN NNP _ 4 nmod _ _ 12 at _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 Hyatt _ PROPN NNP _ 16 compound _ _ 15 Regency _ PROPN NNP _ 16 compound _ _ 16 hotel _ NOUN NN _ 4 nmod _ _ 17 in _ ADP IN _ 18 case _ _ 18 Minneapolis _ NOUN NNS _ 16 nmod _ _ 19 , _ PUNCT , _ 23 punct _ _ 20 the _ DET DT _ 21 det _ _ 21 scene _ NOUN NN _ 23 nsubj _ _ 22 was _ VERB VBD _ 23 cop _ _ 23 calm _ ADJ JJ _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Some _ ADV RB _ 2 advmod _ _ 2 500 _ NUM CD _ 3 nummod _ _ 3 investors _ NOUN NNS _ 12 nsubj _ _ 4 representing _ VERB VBG _ 3 acl _ _ 5 investor _ NOUN NN _ 6 compound _ _ 6 clubs _ NOUN NNS _ 4 dobj _ _ 7 from _ ADP IN _ 10 case _ _ 8 around _ ADP IN _ 10 amod _ _ 9 the _ DET DT _ 10 det _ _ 10 U.S. _ PROPN NNP _ 6 nmod _ _ 11 were _ AUX VBD _ 12 aux _ _ 12 attending _ VERB VBG _ 0 root _ _ 13 when _ ADV WRB _ 16 advmod _ _ 14 the _ DET DT _ 15 det _ _ 15 market _ NOUN NN _ 16 nsubj _ _ 16 started _ VERB VBD _ 12 advcl _ _ 17 to _ PART TO _ 18 mark _ _ 18 slide _ VERB VB _ 16 xcomp _ _ 19 Friday _ PROPN NNP _ 16 nmod:tmod _ _ 20 . _ PUNCT . _ 12 punct _ _ 1 But _ CONJ CC _ 11 cc _ _ 2 Robert _ PROPN NNP _ 3 compound _ _ 3 Showalter _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 an _ DET DT _ 6 det _ _ 6 official _ NOUN NN _ 3 appos _ _ 7 of _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 association _ NOUN NN _ 6 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 no _ DET DT _ 14 neg _ _ 13 special _ ADJ JJ _ 14 amod _ _ 14 bulletins _ NOUN NNS _ 24 nsubjpass _ _ 15 or _ CONJ CC _ 14 cc _ _ 16 emergency _ NOUN NN _ 17 compound _ _ 17 meetings _ NOUN NNS _ 14 conj _ _ 18 of _ ADP IN _ 22 case _ _ 19 the _ DET DT _ 20 det _ _ 20 investors _ NOUN NNS _ 22 nmod:poss _ _ 21 ' _ PART POS _ 20 case _ _ 22 clubs _ NOUN NNS _ 14 nmod _ _ 23 are _ AUX VBP _ 24 auxpass _ _ 24 planned _ VERB VBN _ 11 ccomp _ _ 25 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 16 nmod _ _ 3 , _ PUNCT , _ 16 punct _ _ 4 some _ DET DT _ 16 nsubj _ _ 5 of _ ADP IN _ 9 case _ _ 6 the _ DET DT _ 7 det _ _ 7 association _ NOUN NN _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 members _ NOUN NNS _ 4 nmod _ _ 10 -- _ PUNCT : _ 14 punct _ _ 11 long-term _ ADJ JJ _ 14 amod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 buy-and-hold _ ADJ JJ _ 14 amod _ _ 14 investors _ NOUN NNS _ 4 dep _ _ 15 -- _ PUNCT : _ 14 punct _ _ 16 welcomed _ VERB VBD _ 0 root _ _ 17 the _ DET DT _ 18 det _ _ 18 drop _ NOUN NN _ 16 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 prices _ NOUN NNS _ 18 nmod _ _ 21 . _ PUNCT . _ 16 punct _ _ 1 `` _ PUNCT `` _ 11 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 hope _ VERB VBP _ 11 ccomp _ _ 4 to _ PART TO _ 5 mark _ _ 5 take _ VERB VB _ 3 xcomp _ _ 6 advantage _ NOUN NN _ 5 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 it _ PRON PRP _ 5 nmod _ _ 9 , _ PUNCT , _ 11 punct _ _ 10 '' _ PUNCT '' _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 John _ PROPN NNP _ 13 compound _ _ 13 Snyder _ PROPN NNP _ 11 nsubj _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 member _ NOUN NN _ 13 appos _ _ 17 of _ ADP IN _ 23 case _ _ 18 a _ DET DT _ 23 det _ _ 19 Los _ PROPN NNP _ 23 compound _ _ 20 Angeles _ PROPN NNP _ 23 compound _ _ 21 investors _ NOUN NNS _ 23 nmod:poss _ _ 22 ' _ PART POS _ 21 case _ _ 23 club _ NOUN NN _ 16 nmod _ _ 24 . _ PUNCT . _ 11 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 has _ VERB VBZ _ 0 root _ _ 3 four _ NUM CD _ 4 nummod _ _ 4 stocks _ NOUN NNS _ 2 dobj _ _ 5 in _ ADP IN _ 6 case _ _ 6 mind _ NOUN NN _ 2 nmod _ _ 7 to _ PART TO _ 8 mark _ _ 8 buy _ VERB VB _ 2 xcomp _ _ 9 if _ SCONJ IN _ 12 mark _ _ 10 the _ DET DT _ 11 det _ _ 11 prices _ NOUN NNS _ 12 nsubj _ _ 12 drop _ VERB VBP _ 8 advcl _ _ 13 to _ ADP TO _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 level _ NOUN NN _ 12 nmod _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 wants _ VERB VBZ _ 15 acl:relcl _ _ 18 . _ PUNCT . _ 2 punct _ _ 1 Not _ ADV RB _ 2 neg _ _ 2 everyone _ NOUN NN _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 reacting _ VERB VBG _ 0 root _ _ 5 so _ ADV RB _ 6 advmod _ _ 6 calmly _ ADV RB _ 4 advmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 however _ ADV RB _ 4 advmod _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 and _ CONJ CC _ 4 cc _ _ 11 many _ ADJ JJ _ 12 nsubj _ _ 12 wonder _ VERB VBP _ 4 conj _ _ 13 about _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 long-term _ ADJ JJ _ 16 amod _ _ 16 implications _ NOUN NNS _ 12 nmod _ _ 17 of _ ADP IN _ 30 case _ _ 18 what _ PRON WP _ 21 nsubjpass _ _ 19 is _ AUX VBZ _ 21 auxpass _ _ 20 widely _ ADV RB _ 21 advmod _ _ 21 viewed _ VERB VBN _ 30 dep _ _ 22 as _ ADP IN _ 24 case _ _ 23 the _ DET DT _ 24 det _ _ 24 cause _ NOUN NN _ 21 nmod _ _ 25 of _ ADP IN _ 28 case _ _ 26 Friday _ PROPN NNP _ 28 nmod:poss _ _ 27 's _ PART POS _ 26 case _ _ 28 slide _ NOUN NN _ 24 nmod _ _ 29 , _ PUNCT , _ 30 punct _ _ 30 reluctance _ NOUN NN _ 16 nmod _ _ 31 by _ ADP IN _ 32 case _ _ 32 banks _ NOUN NNS _ 30 nmod _ _ 33 to _ PART TO _ 34 mark _ _ 34 provide _ VERB VB _ 30 acl _ _ 35 financing _ NOUN NN _ 34 dobj _ _ 36 for _ ADP IN _ 38 case _ _ 37 a _ DET DT _ 38 det _ _ 38 buy-out _ NOUN NN _ 34 nmod _ _ 39 of _ ADP IN _ 41 case _ _ 40 UAL _ PROPN NNP _ 41 compound _ _ 41 Corp. _ PROPN NNP _ 38 nmod _ _ 42 , _ PUNCT , _ 41 punct _ _ 43 parent _ NOUN NN _ 41 appos _ _ 44 of _ ADP IN _ 46 case _ _ 45 United _ PROPN NNP _ 46 compound _ _ 46 Airlines _ PROPN NNP _ 43 nmod _ _ 47 . _ PUNCT . _ 4 punct _ _ 1 Marc _ PROPN NNP _ 2 compound _ _ 2 Perkins _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 10 det _ _ 5 Tampa _ PROPN NNP _ 10 dep _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 Fla. _ PROPN NNP _ 5 dep _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 investment _ NOUN NN _ 10 compound _ _ 10 banker _ NOUN NN _ 2 appos _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 the _ DET DT _ 15 det _ _ 14 market _ NOUN NN _ 15 compound _ _ 15 drop _ NOUN NN _ 17 nsubj _ _ 16 is _ VERB VBZ _ 17 cop _ _ 17 one _ NUM CD _ 12 ccomp _ _ 18 of _ ADP IN _ 22 case _ _ 19 `` _ PUNCT `` _ 22 punct _ _ 20 a _ DET DT _ 22 det _ _ 21 tremendous _ ADJ JJ _ 22 amod _ _ 22 number _ NOUN NN _ 17 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 signs _ NOUN NNS _ 22 nmod _ _ 25 that _ SCONJ IN _ 31 mark _ _ 26 the _ DET DT _ 29 det _ _ 27 leveraged _ ADJ JJ _ 29 amod _ _ 28 take-out _ NOUN NN _ 29 compound _ _ 29 era _ NOUN NN _ 31 nsubj _ _ 30 is _ AUX VBZ _ 31 aux _ _ 31 ending _ VERB VBG _ 24 ccomp _ _ 32 . _ PUNCT . _ 12 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 no _ DET DT _ 4 neg _ _ 4 question _ NOUN NN _ 2 nsubj _ _ 5 that _ SCONJ IN _ 7 mark _ _ 6 there _ PRON EX _ 7 expl _ _ 7 's _ VERB VBZ _ 4 ccomp _ _ 8 a _ DET DT _ 10 det _ _ 9 general _ ADJ JJ _ 10 amod _ _ 10 distaste _ NOUN NN _ 7 nsubj _ _ 11 for _ ADP IN _ 12 case _ _ 12 leverage _ NOUN NN _ 10 nmod _ _ 13 among _ ADP IN _ 14 case _ _ 14 lenders _ NOUN NNS _ 7 nmod _ _ 15 . _ PUNCT . _ 2 punct _ _ 1 '' _ PUNCT '' _ 4 punct _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Perkins _ PROPN NNP _ 4 nsubj _ _ 4 believes _ VERB VBZ _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 however _ ADV RB _ 4 advmod _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 market _ NOUN NN _ 13 nsubjpass _ _ 11 could _ AUX MD _ 13 aux _ _ 12 be _ AUX VB _ 13 auxpass _ _ 13 stabilized _ VERB VBN _ 4 ccomp _ _ 14 if _ SCONJ IN _ 19 mark _ _ 15 California _ PROPN NNP _ 18 compound _ _ 16 investor _ NOUN NN _ 18 compound _ _ 17 Marvin _ PROPN NNP _ 18 compound _ _ 18 Davis _ PROPN NNP _ 19 nsubj _ _ 19 steps _ VERB VBZ _ 13 advcl _ _ 20 back _ ADV RB _ 19 advmod _ _ 21 in _ ADP IN _ 25 case _ _ 22 to _ ADP TO _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 United _ PROPN NNP _ 25 compound _ _ 25 bidding _ NOUN NN _ 19 nmod _ _ 26 with _ ADP IN _ 28 case _ _ 27 an _ DET DT _ 28 det _ _ 28 offer _ NOUN NN _ 19 nmod _ _ 29 of _ ADP IN _ 31 case _ _ 30 $ _ SYM $ _ 31 dep _ _ 31 275 _ NUM CD _ 28 nmod _ _ 32 a _ DET DT _ 33 det _ _ 33 share _ NOUN NN _ 31 nmod:npmod _ _ 34 . _ PUNCT . _ 4 punct _ _ 1 Sara _ PROPN NNP _ 2 compound _ _ 2 Albert _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 8 det _ _ 5 34-year-old _ ADJ JJ _ 8 amod _ _ 6 Dallas _ PROPN NNP _ 8 compound _ _ 7 law _ NOUN NN _ 8 compound _ _ 8 student _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 she _ PRON PRP _ 14 nsubj _ _ 12 's _ VERB VBZ _ 14 cop _ _ 13 generally _ ADV RB _ 14 advmod _ _ 14 skittish _ ADJ JJ _ 10 ccomp _ _ 15 about _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 stock _ NOUN NN _ 18 compound _ _ 18 market _ NOUN NN _ 14 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 the _ DET DT _ 22 det _ _ 21 takeover _ NOUN NN _ 22 compound _ _ 22 activity _ NOUN NN _ 18 conj _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 seems _ VERB VBZ _ 22 acl:relcl _ _ 25 to _ PART TO _ 26 mark _ _ 26 fuel _ VERB VB _ 24 xcomp _ _ 27 it _ PRON PRP _ 26 dobj _ _ 28 . _ PUNCT . _ 10 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 0 root _ _ 4 this _ DET DT _ 5 det _ _ 5 feeling _ NOUN NN _ 3 dobj _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 it _ PRON PRP _ 9 nsubjpass _ _ 8 's _ AUX VBZ _ 9 auxpass _ _ 9 built _ VERB VBN _ 5 ccomp _ _ 10 on _ ADP IN _ 11 case _ _ 11 sand _ NOUN NN _ 9 nmod _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 she _ PRON PRP _ 15 nsubj _ _ 15 says _ VERB VBZ _ 9 dep _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 that _ SCONJ IN _ 20 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 market _ NOUN NN _ 20 nsubj _ _ 20 rises _ VERB VBZ _ 9 dep _ _ 21 `` _ PUNCT `` _ 20 punct _ _ 22 but _ CONJ CC _ 20 cc _ _ 23 there _ PRON EX _ 24 expl _ _ 24 's _ VERB VBZ _ 20 conj _ _ 25 no _ DET DT _ 26 neg _ _ 26 foundation _ NOUN NN _ 24 nsubj _ _ 27 to _ ADP TO _ 28 case _ _ 28 it _ PRON PRP _ 26 nmod _ _ 29 . _ PUNCT . _ 3 punct _ _ 30 '' _ PUNCT '' _ 3 punct _ _ 1 She _ PRON PRP _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 her _ PRON PRP$ _ 4 nmod:poss _ _ 4 husband _ NOUN NN _ 1 conj _ _ 5 pulled _ VERB VBD _ 0 root _ _ 6 most _ ADJ JJS _ 5 dobj _ _ 7 of _ ADP IN _ 9 case _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 investments _ NOUN NNS _ 6 nmod _ _ 10 out _ ADP IN _ 5 advmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 market _ NOUN NN _ 10 nmod _ _ 14 after _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 1987 _ NUM CD _ 17 nummod _ _ 17 crash _ NOUN NN _ 5 nmod _ _ 18 , _ PUNCT , _ 5 punct _ _ 19 although _ SCONJ IN _ 22 mark _ _ 20 she _ PRON PRP _ 22 nsubj _ _ 21 still _ ADV RB _ 22 advmod _ _ 22 owns _ VERB VBZ _ 5 advcl _ _ 23 some _ DET DT _ 25 det _ _ 24 Texaco _ PROPN NNP _ 25 compound _ _ 25 stock _ NOUN NN _ 22 dobj _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Partly _ ADV RB _ 4 advmod _ _ 2 because _ ADP IN _ 4 case _ _ 3 of _ ADP IN _ 2 mwe _ _ 4 concern _ NOUN NN _ 27 dep _ _ 5 about _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 economy _ NOUN NN _ 4 nmod _ _ 8 and _ CONJ CC _ 4 cc _ _ 9 partly _ ADV RB _ 13 advmod _ _ 10 because _ SCONJ IN _ 13 mark _ _ 11 she _ PRON PRP _ 13 nsubj _ _ 12 recently _ ADV RB _ 13 advmod _ _ 13 quit _ VERB VBD _ 4 conj _ _ 14 her _ PRON PRP$ _ 15 nmod:poss _ _ 15 job _ NOUN NN _ 13 dobj _ _ 16 as _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 legal _ ADJ JJ _ 19 amod _ _ 19 assistant _ NOUN NN _ 15 nmod _ _ 20 to _ PART TO _ 21 mark _ _ 21 go _ VERB VB _ 13 advcl _ _ 22 to _ ADP TO _ 23 case _ _ 23 school _ NOUN NN _ 21 nmod _ _ 24 , _ PUNCT , _ 27 punct _ _ 25 `` _ PUNCT `` _ 27 punct _ _ 26 I _ PRON PRP _ 27 nsubj _ _ 27 think _ VERB VBP _ 0 root _ _ 28 at _ ADP IN _ 30 case _ _ 29 this _ DET DT _ 30 det _ _ 30 point _ NOUN NN _ 27 nmod _ _ 31 we _ PRON PRP _ 32 nsubj _ _ 32 want _ VERB VBP _ 27 ccomp _ _ 33 to _ PART TO _ 38 mark _ _ 34 be _ VERB VB _ 38 cop _ _ 35 a _ DET DT _ 36 det _ _ 36 lot _ NOUN NN _ 37 nmod:npmod _ _ 37 more _ ADV RBR _ 38 advmod _ _ 38 liquid _ ADJ JJ _ 32 xcomp _ _ 39 . _ PUNCT . _ 27 punct _ _ 40 '' _ PUNCT '' _ 27 punct _ _ 1 Others _ NOUN NNS _ 2 nsubj _ _ 2 wonder _ VERB VBP _ 0 root _ _ 3 how _ ADV WRB _ 4 advmod _ _ 4 many _ ADJ JJ _ 5 amod _ _ 5 more _ ADJ JJR _ 13 dobj _ _ 6 of _ ADP IN _ 8 case _ _ 7 these _ DET DT _ 8 det _ _ 8 shocks _ NOUN NNS _ 5 nmod _ _ 9 the _ DET DT _ 11 det _ _ 10 small _ ADJ JJ _ 11 amod _ _ 11 investor _ NOUN NN _ 13 nsubj _ _ 12 can _ AUX MD _ 13 aux _ _ 13 stand _ VERB VB _ 2 ccomp _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 all _ DET DT _ 4 dep _ _ 4 assumed _ VERB VBD _ 13 ccomp _ _ 5 October _ PROPN NNP _ 10 nsubj _ _ 6 '87 _ NUM CD _ 5 nummod _ _ 7 was _ VERB VBD _ 10 cop _ _ 8 a _ DET DT _ 10 det _ _ 9 one-time _ ADJ JJ _ 10 amod _ _ 10 shot _ NOUN NN _ 4 ccomp _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 San _ PROPN NNP _ 18 compound _ _ 15 Francisco _ PROPN NNP _ 18 compound _ _ 16 attorney _ NOUN NN _ 18 compound _ _ 17 David _ PROPN NNP _ 18 compound _ _ 18 Greenberg _ PROPN NNP _ 13 nsubj _ _ 19 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 told _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 little _ ADJ JJ _ 6 amod _ _ 6 guy _ NOUN NN _ 3 dobj _ _ 7 it _ PRON PRP _ 10 nsubj _ _ 8 could _ AUX MD _ 10 aux _ _ 9 only _ ADV RB _ 10 advmod _ _ 10 happen _ VERB VB _ 3 dep _ _ 11 once _ ADV RB _ 10 advmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 a _ DET DT _ 14 det _ _ 14 lifetime _ NOUN NN _ 10 nmod _ _ 15 , _ PUNCT , _ 10 punct _ _ 16 come _ VERB VBN _ 10 parataxis _ _ 17 on _ ADP RP _ 16 compound:prt _ _ 18 back _ ADV RB _ 16 advmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 Now _ ADV RB _ 4 advmod _ _ 2 it _ PRON PRP _ 4 nsubj _ _ 3 's _ AUX VBZ _ 4 aux _ _ 4 happening _ VERB VBG _ 0 root _ _ 5 again _ ADV RB _ 4 advmod _ _ 6 . _ PUNCT . _ 4 punct _ _ 7 '' _ PUNCT '' _ 4 punct _ _ 1 Mr. _ PROPN NNP _ 2 compound _ _ 2 Greenberg _ PROPN NNP _ 3 nsubj _ _ 3 got _ VERB VBD _ 0 root _ _ 4 out _ ADP RP _ 3 xcomp _ _ 5 just _ ADV RB _ 9 advmod _ _ 6 before _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 1987 _ NUM CD _ 9 nummod _ _ 9 crash _ NOUN NN _ 3 nmod _ _ 10 and _ CONJ CC _ 3 cc _ _ 11 , _ PUNCT , _ 3 punct _ _ 12 to _ ADP TO _ 14 case _ _ 13 his _ PRON PRP$ _ 14 nmod:poss _ _ 14 regret _ NOUN NN _ 17 nmod _ _ 15 , _ PUNCT , _ 17 punct _ _ 16 never _ ADV RB _ 17 neg _ _ 17 went _ VERB VBD _ 3 conj _ _ 18 back _ ADV RB _ 17 advmod _ _ 19 even _ ADV RB _ 23 advmod _ _ 20 as _ SCONJ IN _ 23 mark _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 23 nsubj _ _ 23 soared _ VERB VBD _ 17 advcl _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 time _ NOUN NN _ 5 nmod:tmod _ _ 3 he _ PRON PRP _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 ready _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 buy _ VERB VB _ 5 xcomp _ _ 8 in _ ADP RP _ 7 compound:prt _ _ 9 `` _ PUNCT `` _ 7 punct _ _ 10 when _ ADV WRB _ 13 advmod _ _ 11 the _ DET DT _ 12 det _ _ 12 panic _ NOUN NN _ 13 nsubj _ _ 13 wears _ VERB VBZ _ 7 advcl _ _ 14 off _ ADP RP _ 13 compound:prt _ _ 15 . _ PUNCT . _ 5 punct _ _ 16 '' _ PUNCT '' _ 5 punct _ _ 1 Still _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 he _ PRON PRP _ 4 nsubj _ _ 4 adds _ VERB VBZ _ 0 root _ _ 5 : _ PUNCT : _ 4 punct _ _ 6 `` _ PUNCT `` _ 4 punct _ _ 7 We _ PRON PRP _ 10 nsubj _ _ 8 ca _ AUX MD _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 have _ VERB VB _ 4 ccomp _ _ 11 this _ DET DT _ 12 det _ _ 12 kind _ NOUN NN _ 15 nsubj _ _ 13 of _ ADP IN _ 14 case _ _ 14 thing _ NOUN NN _ 12 nmod _ _ 15 happen _ VERB VB _ 10 ccomp _ _ 16 very _ ADV RB _ 17 advmod _ _ 17 often _ ADV RB _ 15 advmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 5 advmod _ _ 2 the _ DET DT _ 4 det _ _ 3 little _ ADJ JJ _ 4 amod _ _ 4 guy _ NOUN NN _ 5 nsubj _ _ 5 gets _ VERB VBZ _ 11 advcl _ _ 6 frightened _ ADJ JJ _ 5 xcomp _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 the _ DET DT _ 10 det _ _ 9 big _ ADJ JJ _ 10 amod _ _ 10 guys _ NOUN NNS _ 11 nsubj _ _ 11 hurt _ VERB VBP _ 0 root _ _ 12 badly _ ADV RB _ 11 advmod _ _ 13 . _ PUNCT . _ 11 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 5 nsubj _ _ 3 ca _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 survive _ VERB VB _ 0 root _ _ 6 without _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 little _ ADJ JJ _ 9 amod _ _ 9 guy _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 11 '' _ PUNCT '' _ 5 punct _ _ 1 Small _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 4 nsubj _ _ 3 have _ AUX VBP _ 4 aux _ _ 4 tiptoed _ VERB VBN _ 0 root _ _ 5 back _ ADV RB _ 4 advmod _ _ 6 into _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 market _ NOUN NN _ 4 nmod _ _ 9 following _ VERB VBG _ 11 case _ _ 10 Black _ PROPN NNP _ 11 compound _ _ 11 Monday _ PROPN NNP _ 4 nmod _ _ 12 , _ PUNCT , _ 17 punct _ _ 13 but _ CONJ CC _ 17 cc _ _ 14 mostly _ ADV RB _ 17 advmod _ _ 15 through _ ADP IN _ 17 case _ _ 16 mutual _ ADJ JJ _ 17 amod _ _ 17 funds _ NOUN NNS _ 4 dep _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 Discount _ ADJ JJ _ 3 amod _ _ 2 brokerage _ NOUN NN _ 3 compound _ _ 3 customers _ NOUN NNS _ 9 nsubj _ _ 4 `` _ PUNCT `` _ 9 punct _ _ 5 have _ AUX VBP _ 9 aux _ _ 6 been _ VERB VBN _ 9 cop _ _ 7 in _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 23 ccomp _ _ 10 somewhat _ ADV RB _ 9 advmod _ _ 11 but _ CONJ CC _ 10 cc _ _ 12 not _ ADV RB _ 14 neg _ _ 13 whole _ ADJ JJ _ 14 amod _ _ 14 hog _ NOUN NN _ 10 conj _ _ 15 like _ SCONJ IN _ 17 mark _ _ 16 they _ PRON PRP _ 17 nsubj _ _ 17 were _ VERB VBD _ 14 dep _ _ 18 two _ NUM CD _ 19 nummod _ _ 19 years _ NOUN NNS _ 20 nmod:npmod _ _ 20 ago _ ADV RB _ 17 advmod _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 Leslie _ PROPN NNP _ 26 compound _ _ 25 Quick _ PROPN NNP _ 26 compound _ _ 26 Jr. _ PROPN NNP _ 23 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 chairman _ NOUN NN _ 26 appos _ _ 29 of _ ADP IN _ 31 case _ _ 30 the _ DET DT _ 31 det _ _ 31 Quick _ PROPN NNP _ 28 nmod _ _ 32 & _ CONJ CC _ 31 cc _ _ 33 Reilly _ PROPN NNP _ 36 compound _ _ 34 discount _ ADJ JJ _ 36 amod _ _ 35 brokerage _ NOUN NN _ 36 compound _ _ 36 firm _ NOUN NN _ 31 conj _ _ 37 . _ PUNCT . _ 23 punct _ _ 1 Hugo _ PROPN NNP _ 2 compound _ _ 2 Quackenbush _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 senior _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 at _ ADP IN _ 10 case _ _ 8 Charles _ PROPN NNP _ 10 compound _ _ 9 Scwhab _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 Schwab _ PROPN NNP _ 14 compound _ _ 14 customers _ NOUN NNS _ 20 nsubj _ _ 15 `` _ PUNCT `` _ 20 punct _ _ 16 have _ AUX VBP _ 20 aux _ _ 17 been _ VERB VBN _ 20 cop _ _ 18 neutral _ ADJ JJ _ 20 amod _ _ 19 to _ ADP TO _ 20 dep _ _ 20 cautious _ ADJ JJ _ 12 ccomp _ _ 21 recently _ ADV RB _ 20 advmod _ _ 22 about _ ADP IN _ 23 case _ _ 23 stocks _ NOUN NNS _ 20 nmod _ _ 24 . _ PUNCT . _ 12 punct _ _ 25 '' _ PUNCT '' _ 12 punct _ _ 1 Individual _ ADJ JJ _ 2 amod _ _ 2 investors _ NOUN NNS _ 5 nsubj _ _ 3 are _ VERB VBP _ 5 cop _ _ 4 still _ ADV RB _ 5 advmod _ _ 5 angry _ ADJ JJ _ 12 ccomp _ _ 6 about _ ADP IN _ 8 case _ _ 7 program _ NOUN NN _ 8 compound _ _ 8 trading _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 Mr. _ PROPN NNP _ 11 compound _ _ 11 Quackenbush _ PROPN NNP _ 12 nsubj _ _ 12 says _ VERB VBZ _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Avner _ PROPN NNP _ 2 compound _ _ 2 Arbel _ PROPN NNP _ 10 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 a _ DET DT _ 8 det _ _ 5 Cornell _ PROPN NNP _ 8 compound _ _ 6 University _ PROPN NNP _ 8 compound _ _ 7 finance _ NOUN NN _ 8 compound _ _ 8 professor _ NOUN NN _ 2 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 says _ VERB VBZ _ 0 root _ _ 11 government _ NOUN NN _ 12 compound _ _ 12 regulators _ NOUN NNS _ 14 nsubj _ _ 13 will _ AUX MD _ 14 aux _ _ 14 have _ VERB VB _ 10 ccomp _ _ 15 to _ PART TO _ 18 mark _ _ 16 more _ ADV RBR _ 17 advmod _ _ 17 closely _ ADV RB _ 18 advmod _ _ 18 control _ VERB VB _ 14 xcomp _ _ 19 program _ NOUN NN _ 20 compound _ _ 20 trading _ NOUN NN _ 18 dobj _ _ 21 to _ PART TO _ 23 mark _ _ 22 `` _ PUNCT `` _ 23 punct _ _ 23 win _ VERB VB _ 14 xcomp _ _ 24 back _ ADP RP _ 23 compound:prt _ _ 25 the _ DET DT _ 26 det _ _ 26 confidence _ NOUN NN _ 23 dobj _ _ 27 of _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 small _ ADJ JJ _ 30 amod _ _ 30 investor _ NOUN NN _ 26 nmod _ _ 31 . _ PUNCT . _ 10 punct _ _ 32 '' _ PUNCT '' _ 10 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 it _ PRON PRP _ 8 nsubj _ _ 3 's _ VERB VBZ _ 8 cop _ _ 4 not _ PART RB _ 8 neg _ _ 5 only _ ADV RB _ 8 advmod _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 0 root _ _ 9 that _ PRON WDT _ 10 nsubj _ _ 10 has _ VERB VBZ _ 8 dep _ _ 11 some _ DET DT _ 13 det _ _ 12 small _ ADJ JJ _ 13 amod _ _ 13 investors _ NOUN NNS _ 14 nsubj _ _ 14 worried _ ADJ JJ _ 10 ccomp _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Alan _ PROPN NNP _ 2 compound _ _ 2 Helfman _ PROPN NNP _ 14 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 general _ ADJ JJ _ 6 amod _ _ 5 sales _ NOUN NNS _ 6 compound _ _ 6 manager _ NOUN NN _ 2 appos _ _ 7 of _ ADP IN _ 10 case _ _ 8 a _ DET DT _ 10 det _ _ 9 Chrysler _ PROPN NNP _ 10 compound _ _ 10 dealership _ NOUN NN _ 6 nmod _ _ 11 in _ ADP IN _ 12 case _ _ 12 Houston _ PROPN NNP _ 10 nmod _ _ 13 , _ PUNCT , _ 2 punct _ _ 14 said _ VERB VBD _ 0 root _ _ 15 he _ PRON PRP _ 19 nsubj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 his _ PRON PRP$ _ 18 nmod:poss _ _ 18 mother _ NOUN NN _ 15 conj _ _ 19 have _ VERB VBP _ 14 dep _ _ 20 some _ DET DT _ 23 det _ _ 21 joint _ ADJ JJ _ 23 amod _ _ 22 stock _ NOUN NN _ 23 compound _ _ 23 investments _ NOUN NNS _ 19 dobj _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 but _ CONJ CC _ 19 cc _ _ 26 the _ DET DT _ 28 det _ _ 27 overall _ ADJ JJ _ 28 amod _ _ 28 economy _ NOUN NN _ 32 nsubj _ _ 29 is _ VERB VBZ _ 32 cop _ _ 30 his _ PRON PRP$ _ 32 nmod:poss _ _ 31 chief _ ADJ JJ _ 32 amod _ _ 32 worry _ NOUN NN _ 19 conj _ _ 33 . _ PUNCT . _ 14 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 These _ DET DT _ 4 det _ _ 3 high _ ADJ JJ _ 4 amod _ _ 4 rollers _ NOUN NNS _ 5 nsubj _ _ 5 took _ VERB VBD _ 13 ccomp _ _ 6 a _ DET DT _ 8 det _ _ 7 big _ ADJ JJ _ 8 amod _ _ 8 bath _ NOUN NN _ 5 dobj _ _ 9 today _ NOUN NN _ 5 nmod:tmod _ _ 10 , _ PUNCT , _ 13 punct _ _ 11 '' _ PUNCT '' _ 13 punct _ _ 12 he _ PRON PRP _ 13 nsubj _ _ 13 said _ VERB VBD _ 0 root _ _ 14 in _ ADP IN _ 16 case _ _ 15 his _ PRON PRP$ _ 16 nmod:poss _ _ 16 showroom _ NOUN NN _ 13 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 which _ PRON WDT _ 23 nsubj _ _ 19 is _ VERB VBZ _ 23 cop _ _ 20 within _ ADP IN _ 23 case _ _ 21 a _ DET DT _ 23 det _ _ 22 few _ ADJ JJ _ 23 amod _ _ 23 miles _ NOUN NNS _ 16 acl:relcl _ _ 24 of _ ADP IN _ 28 case _ _ 25 the _ DET DT _ 28 det _ _ 26 multi-million _ ADJ JJ _ 27 dep _ _ 27 dollar _ NOUN NN _ 28 amod _ _ 28 homes _ NOUN NNS _ 23 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 some _ DET DT _ 28 nmod _ _ 31 of _ ADP IN _ 35 case _ _ 32 Houston _ PROPN NNP _ 35 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 richest _ ADJ JJS _ 35 amod _ _ 35 citizens _ NOUN NNS _ 30 nmod _ _ 36 . _ PUNCT . _ 13 punct _ _ 1 `` _ PUNCT `` _ 5 punct _ _ 2 And _ CONJ CC _ 5 cc _ _ 3 I _ PRON PRP _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 tell _ VERB VB _ 0 root _ _ 6 you _ PRON PRP _ 5 dobj _ _ 7 that _ SCONJ IN _ 13 mark _ _ 8 a _ DET DT _ 10 det _ _ 9 high _ ADJ JJ _ 10 amod _ _ 10 roller _ NOUN NN _ 13 nsubj _ _ 11 is _ AUX VBZ _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 going _ VERB VBG _ 5 ccomp _ _ 14 to _ PART TO _ 15 mark _ _ 15 come _ VERB VB _ 13 xcomp _ _ 16 in _ ADP IN _ 15 advmod _ _ 17 tomorrow _ NOUN NN _ 15 nmod:tmod _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 buy _ VERB VB _ 15 conj _ _ 20 a _ DET DT _ 22 det _ _ 21 Chrysler _ PROPN NNP _ 22 compound _ _ 22 TC _ PROPN NNP _ 19 dobj _ _ 23 by _ ADP IN _ 24 case _ _ 24 Maserati _ PROPN NNP _ 22 nmod _ _ 25 . _ PUNCT . _ 5 punct _ _ 26 '' _ PUNCT '' _ 5 punct _ _ 1 And _ CONJ CC _ 6 cc _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 finally _ ADV RB _ 6 advmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 there _ PRON EX _ 6 expl _ _ 6 were _ VERB VBD _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 gloaters _ NOUN NNS _ 6 nsubj _ _ 9 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 got _ VERB VBD _ 0 root _ _ 4 out _ ADP RP _ 3 xcomp _ _ 5 in _ ADP IN _ 6 case _ _ 6 1987 _ NUM CD _ 3 nmod _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 Everything _ NOUN NN _ 4 dep _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 '' _ PUNCT '' _ 4 punct _ _ 4 said _ VERB VBD _ 0 root _ _ 5 Pascal _ PROPN NNP _ 6 compound _ _ 6 Antori _ PROPN NNP _ 4 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 an _ DET DT _ 14 det _ _ 9 Akron _ PROPN NNP _ 14 dep _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 Ohio _ PROPN NNP _ 9 dep _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 plumbing _ NOUN NN _ 14 compound _ _ 14 contractor _ NOUN NN _ 6 appos _ _ 15 who _ PRON WP _ 17 nsubj _ _ 16 was _ AUX VBD _ 17 aux _ _ 17 visiting _ VERB VBG _ 14 acl:relcl _ _ 18 Chicago _ PROPN NNP _ 17 dobj _ _ 19 and _ CONJ CC _ 17 cc _ _ 20 stopped _ VERB VBD _ 17 conj _ _ 21 by _ ADP IN _ 27 case _ _ 22 Fidelity _ PROPN NNP _ 23 compound _ _ 23 Investments _ PROPN NNP _ 27 nmod:poss _ _ 24 ' _ PART POS _ 23 case _ _ 25 LaSalle _ PROPN NNP _ 27 compound _ _ 26 Street _ PROPN NNP _ 27 compound _ _ 27 office _ NOUN NN _ 20 nmod _ _ 28 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 just _ ADV RB _ 4 advmod _ _ 4 stopped _ VERB VBD _ 0 root _ _ 5 by _ ADP RP _ 4 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 see _ VERB VB _ 4 xcomp _ _ 8 how _ ADV WRB _ 9 advmod _ _ 9 much _ ADJ JJ _ 13 advmod _ _ 10 I _ PRON PRP _ 13 nsubj _ _ 11 would _ AUX MD _ 13 aux _ _ 12 have _ AUX VB _ 13 aux _ _ 13 lost _ VERB VBN _ 7 ccomp _ _ 14 . _ PUNCT . _ 4 punct _ _ 15 '' _ PUNCT '' _ 4 punct _ _ 1 Would _ AUX MD _ 5 aux _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Antori _ PROPN NNP _ 5 nsubj _ _ 4 ever _ ADV RB _ 5 advmod _ _ 5 get _ VERB VB _ 0 root _ _ 6 back _ ADV RB _ 5 advmod _ _ 7 in _ ADP RP _ 5 xcomp _ _ 8 ? _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 Are _ AUX VBP _ 4 aux _ _ 3 you _ PRON PRP _ 4 nsubj _ _ 4 kidding _ VERB VBG _ 0 root _ _ 5 ! _ PUNCT . _ 4 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 comes _ VERB VBZ _ 8 advcl _ _ 4 to _ ADP TO _ 5 case _ _ 5 money _ NOUN NN _ 3 nmod _ _ 6 : _ PUNCT : _ 8 punct _ _ 7 Once _ ADV RB _ 8 advmod _ _ 8 bitten _ VERB VBN _ 0 root _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 2,000 _ NUM CD _ 11 nummod _ _ 11 times _ NOUN NNS _ 12 nmod:npmod _ _ 12 shy _ ADJ JJ _ 8 dep _ _ 13 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 crowded _ ADJ JJ _ 3 amod _ _ 3 field _ NOUN NN _ 8 nsubj _ _ 4 for _ ADP IN _ 6 case _ _ 5 notebook-sized _ ADJ JJ _ 6 amod _ _ 6 computers _ NOUN NNS _ 3 nmod _ _ 7 is _ VERB VBZ _ 8 cop _ _ 8 about _ ADV RB _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 become _ VERB VB _ 8 xcomp _ _ 11 a _ DET DT _ 12 det _ _ 12 lot _ NOUN NN _ 13 nmod:npmod _ _ 13 more _ ADV RBR _ 14 advmod _ _ 14 crowded _ ADJ JJ _ 10 xcomp _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Compaq _ PROPN NNP _ 3 compound _ _ 2 Computer _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 6 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 long-awaited _ ADJ JJ _ 6 amod _ _ 6 entry _ NOUN NN _ 13 nsubjpass _ _ 7 today _ NOUN NN _ 6 nmod:tmod _ _ 8 into _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 notebook _ NOUN NN _ 11 compound _ _ 11 field _ NOUN NN _ 6 nmod _ _ 12 is _ AUX VBZ _ 13 auxpass _ _ 13 expected _ VERB VBN _ 0 root _ _ 14 to _ PART TO _ 15 mark _ _ 15 put _ VERB VB _ 13 xcomp _ _ 16 immediate _ ADJ JJ _ 17 amod _ _ 17 heat _ NOUN NN _ 15 dobj _ _ 18 on _ ADP IN _ 19 case _ _ 19 others _ NOUN NNS _ 15 nmod _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 market _ NOUN NN _ 19 nmod _ _ 23 , _ PUNCT , _ 19 punct _ _ 24 especially _ ADV RB _ 19 advmod _ _ 25 Zenith _ PROPN NNP _ 27 compound _ _ 26 Electronics _ PROPN NNP _ 27 compound _ _ 27 Corp. _ PROPN NNP _ 19 dep _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 the _ DET DT _ 32 det _ _ 30 current _ ADJ JJ _ 32 amod _ _ 31 market _ NOUN NN _ 32 compound _ _ 32 leader _ NOUN NN _ 27 appos _ _ 33 , _ PUNCT , _ 19 punct _ _ 34 and _ CONJ CC _ 19 cc _ _ 35 on _ ADP IN _ 37 case _ _ 36 a _ DET DT _ 37 det _ _ 37 swarm _ NOUN NN _ 19 conj _ _ 38 of _ ADP IN _ 40 case _ _ 39 promising _ ADJ JJ _ 40 amod _ _ 40 start-ups _ NOUN NNS _ 37 nmod _ _ 41 . _ PUNCT . _ 13 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 series _ NOUN NN _ 6 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 notebooks _ NOUN NNS _ 3 nmod _ _ 6 extends _ VERB VBZ _ 0 root _ _ 7 a _ DET DT _ 8 det _ _ 8 trend _ NOUN NN _ 6 dobj _ _ 9 toward _ ADP IN _ 10 case _ _ 10 downsizing _ NOUN NN _ 8 nmod _ _ 11 in _ ADP IN _ 15 case _ _ 12 the _ DET DT _ 15 det _ _ 13 personal _ ADJ JJ _ 15 amod _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 market _ NOUN NN _ 8 nmod _ _ 16 . _ PUNCT . _ 6 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 manufacturer _ NOUN NN _ 5 nsubj _ _ 3 already _ ADV RB _ 5 advmod _ _ 4 has _ AUX VBZ _ 5 aux _ _ 5 produced _ VERB VBN _ 0 root _ _ 6 a _ DET DT _ 8 det _ _ 7 clipboard-sized _ ADJ JJ _ 8 amod _ _ 8 computer _ NOUN NN _ 9 nsubj _ _ 9 called _ VERB VBD _ 5 ccomp _ _ 10 a _ DET DT _ 11 det _ _ 11 notepad _ NOUN NN _ 9 xcomp _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 and _ CONJ CC _ 5 cc _ _ 14 two _ NUM CD _ 15 nummod _ _ 15 others _ NOUN NNS _ 17 nsubj _ _ 16 have _ AUX VBP _ 17 aux _ _ 17 introduced _ VERB VBN _ 5 conj _ _ 18 even _ ADV RB _ 19 advmod _ _ 19 smaller _ ADJ JJR _ 21 amod _ _ 20 `` _ PUNCT `` _ 21 punct _ _ 21 palmtops _ NOUN NNS _ 17 dobj _ _ 22 . _ PUNCT . _ 5 punct _ _ 23 '' _ PUNCT '' _ 5 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 those _ DET DT _ 3 det _ _ 3 machines _ NOUN NNS _ 6 nsubjpass _ _ 4 are _ AUX VBP _ 6 auxpass _ _ 5 still _ ADV RB _ 6 advmod _ _ 6 considered _ VERB VBN _ 0 root _ _ 7 novelties _ NOUN NNS _ 6 xcomp _ _ 8 , _ PUNCT , _ 6 punct _ _ 9 with _ ADP IN _ 10 case _ _ 10 keyboards _ NOUN NNS _ 6 nmod _ _ 11 only _ ADV RB _ 13 advmod _ _ 12 a _ DET DT _ 13 det _ _ 13 munchkin _ NOUN NN _ 15 nsubj _ _ 14 could _ AUX MD _ 15 aux _ _ 15 love _ VERB VB _ 10 acl:relcl _ _ 16 and _ CONJ CC _ 10 cc _ _ 17 screens _ VERB VBZ _ 10 conj _ _ 18 to _ PART TO _ 19 mark _ _ 19 match _ VERB VB _ 17 acl _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 notebooks _ NOUN NNS _ 11 nsubj _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 by _ ADP IN _ 6 case _ _ 6 contrast _ NOUN NN _ 11 nmod _ _ 7 , _ PUNCT , _ 11 punct _ _ 8 may _ AUX MD _ 11 aux _ _ 9 be _ VERB VB _ 11 cop _ _ 10 the _ DET DT _ 11 det _ _ 11 first _ ADJ JJ _ 0 root _ _ 12 in _ ADP IN _ 15 case _ _ 13 their _ PRON PRP$ _ 15 nmod:poss _ _ 14 weight _ NOUN NN _ 15 compound _ _ 15 class _ NOUN NN _ 11 nmod _ _ 16 not _ PART RB _ 18 neg _ _ 17 to _ PART TO _ 18 mark _ _ 18 skimp _ VERB VB _ 11 dep _ _ 19 on _ ADP IN _ 20 case _ _ 20 features _ NOUN NNS _ 18 nmod _ _ 21 found _ VERB VBN _ 20 acl _ _ 22 in _ ADP IN _ 25 case _ _ 23 much _ ADV RB _ 24 advmod _ _ 24 bigger _ ADJ JJR _ 25 amod _ _ 25 machines _ NOUN NNS _ 21 nmod _ _ 26 . _ PUNCT . _ 11 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 say _ VERB VBP _ 0 root _ _ 3 they _ PRON PRP _ 5 nsubj _ _ 4 're _ VERB VBP _ 5 cop _ _ 5 faster _ ADJ JJR _ 2 dep _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 carry _ VERB VBP _ 5 conj _ _ 8 more _ ADJ JJR _ 9 amod _ _ 9 memory _ NOUN NN _ 7 dobj _ _ 10 than _ ADP IN _ 11 case _ _ 11 anything _ NOUN NN _ 9 nmod _ _ 12 else _ ADV RB _ 11 amod _ _ 13 of _ ADP IN _ 15 case _ _ 14 their _ PRON PRP$ _ 15 nmod:poss _ _ 15 size _ NOUN NN _ 11 nmod _ _ 16 on _ ADP IN _ 18 case _ _ 17 the _ DET DT _ 18 det _ _ 18 market _ NOUN NN _ 11 nmod _ _ 19 -- _ PUNCT : _ 5 punct _ _ 20 and _ CONJ CC _ 5 cc _ _ 21 they _ PRON PRP _ 23 nsubjpass _ _ 22 're _ AUX VBP _ 23 auxpass _ _ 23 priced _ VERB VBN _ 5 conj _ _ 24 aggressively _ ADV RB _ 23 advmod _ _ 25 at _ ADP IN _ 27 case _ _ 26 $ _ SYM $ _ 27 dep _ _ 27 2,400 _ NUM CD _ 23 nmod _ _ 28 to _ ADP TO _ 27 dep _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 5,000 _ NUM CD _ 27 dep _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 All _ DET DT _ 4 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 this _ PRON DT _ 1 nmod _ _ 4 comes _ VERB VBZ _ 0 root _ _ 5 in _ ADP IN _ 7 case _ _ 6 a _ DET DT _ 7 det _ _ 7 machine _ NOUN NN _ 4 nmod _ _ 8 that _ PRON WDT _ 9 nsubj _ _ 9 weighs _ VERB VBZ _ 7 acl:relcl _ _ 10 only _ ADV RB _ 11 advmod _ _ 11 six _ NUM CD _ 12 nummod _ _ 12 pounds _ NOUN NNS _ 9 dobj _ _ 13 and _ CONJ CC _ 9 cc _ _ 14 fits _ VERB VBZ _ 9 conj _ _ 15 comfortably _ ADV RB _ 14 advmod _ _ 16 into _ ADP IN _ 18 case _ _ 17 most _ ADJ JJS _ 18 amod _ _ 18 briefcases _ NOUN NNS _ 14 nmod _ _ 19 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 recent _ ADJ JJ _ 3 amod _ _ 3 months _ NOUN NNS _ 22 nmod _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 Compaq _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 competition _ NOUN NN _ 22 nsubj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 including _ VERB VBG _ 10 case _ _ 10 Zenith _ PROPN NNP _ 7 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Toshiba _ PROPN NNP _ 13 compound _ _ 13 Corp. _ PROPN NNP _ 10 conj _ _ 14 , _ PUNCT , _ 10 punct _ _ 15 Tandy _ PROPN NNP _ 16 compound _ _ 16 Corp. _ PROPN NNP _ 10 conj _ _ 17 and _ CONJ CC _ 10 cc _ _ 18 NEC _ PROPN NNP _ 19 compound _ _ 19 Corp. _ PROPN NNP _ 10 conj _ _ 20 all _ DET DT _ 22 dep _ _ 21 have _ AUX VBP _ 22 aux _ _ 22 introduced _ VERB VBN _ 0 root _ _ 23 portables _ NOUN NNS _ 22 dobj _ _ 24 that _ PRON WDT _ 25 nsubj _ _ 25 weigh _ VERB VBP _ 23 acl:relcl _ _ 26 approximately _ ADV RB _ 28 advmod _ _ 27 the _ DET DT _ 28 det _ _ 28 same _ ADJ JJ _ 25 dobj _ _ 29 and _ CONJ CC _ 25 cc _ _ 30 that _ PRON WDT _ 32 nsubjpass _ _ 31 are _ AUX VBP _ 32 auxpass _ _ 32 called _ VERB VBN _ 25 conj _ _ 33 notebooks _ NOUN NNS _ 32 xcomp _ _ 34 -- _ PUNCT : _ 32 punct _ _ 35 perhaps _ ADV RB _ 36 advmod _ _ 36 misleadingly _ ADV RB _ 32 advmod _ _ 37 . _ PUNCT . _ 22 punct _ _ 1 One _ NUM CD _ 2 nummod _ _ 2 analyst _ NOUN NN _ 15 nsubj _ _ 3 , _ PUNCT , _ 15 punct _ _ 4 noting _ VERB VBG _ 15 advcl _ _ 5 that _ SCONJ IN _ 13 mark _ _ 6 most _ ADJ JJS _ 8 amod _ _ 7 such _ ADJ JJ _ 8 amod _ _ 8 machines _ NOUN NNS _ 13 nsubj _ _ 9 are _ VERB VBP _ 13 cop _ _ 10 about _ ADV RB _ 11 advmod _ _ 11 two _ NUM CD _ 12 nummod _ _ 12 inches _ NOUN NNS _ 13 nmod:npmod _ _ 13 thick _ ADJ JJ _ 4 ccomp _ _ 14 , _ PUNCT , _ 15 punct _ _ 15 takes _ VERB VBZ _ 0 root _ _ 16 exception _ NOUN NN _ 15 dobj _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 name _ NOUN NN _ 15 nmod _ _ 20 . _ PUNCT . _ 15 punct _ _ 1 `` _ PUNCT `` _ 17 punct _ _ 2 This _ PRON DT _ 7 nsubj _ _ 3 is _ VERB VBZ _ 7 cop _ _ 4 n't _ PART RB _ 7 neg _ _ 5 quite _ ADV RB _ 7 advmod _ _ 6 a _ DET DT _ 7 det _ _ 7 notebook _ NOUN NN _ 17 ccomp _ _ 8 -- _ PUNCT : _ 7 punct _ _ 9 I _ PRON PRP _ 10 nsubj _ _ 10 call _ VERB VBP _ 7 parataxis _ _ 11 it _ PRON PRP _ 13 nsubj _ _ 12 a _ DET DT _ 13 det _ _ 13 phonebook _ NOUN NN _ 10 xcomp _ _ 14 , _ PUNCT , _ 17 punct _ _ 15 '' _ PUNCT '' _ 17 punct _ _ 16 he _ PRON PRP _ 17 nsubj _ _ 17 says _ VERB VBZ _ 0 root _ _ 18 . _ PUNCT . _ 17 punct _ _ 1 That _ PRON DT _ 5 nsubjpass _ _ 2 ca _ AUX MD _ 5 aux _ _ 3 n't _ PART RB _ 5 neg _ _ 4 be _ AUX VB _ 5 auxpass _ _ 5 said _ VERB VBD _ 0 root _ _ 6 of _ ADP IN _ 11 case _ _ 7 the _ DET DT _ 11 det _ _ 8 $ _ SYM $ _ 11 amod _ _ 9 2,400 _ NUM CD _ 8 compound _ _ 10 notepad _ NOUN NN _ 11 compound _ _ 11 computer _ NOUN NN _ 5 nmod _ _ 12 introduced _ VERB VBN _ 11 acl _ _ 13 a _ DET DT _ 15 det _ _ 14 few _ ADJ JJ _ 15 amod _ _ 15 weeks _ NOUN NNS _ 16 nmod:npmod _ _ 16 ago _ ADV RB _ 12 advmod _ _ 17 by _ ADP IN _ 20 case _ _ 18 GRiD _ PROPN NNP _ 20 compound _ _ 19 Systems _ PROPN NNP _ 20 compound _ _ 20 Corp. _ PROPN NNP _ 12 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 a _ DET DT _ 23 det _ _ 23 unit _ NOUN NN _ 20 appos _ _ 24 of _ ADP IN _ 25 case _ _ 25 Tandy _ PROPN NNP _ 23 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Instead _ ADV RB _ 4 case _ _ 2 of _ ADP IN _ 1 mwe _ _ 3 a _ DET DT _ 4 det _ _ 4 keyboard _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 features _ VERB VBZ _ 0 root _ _ 8 a _ DET DT _ 10 det _ _ 9 writing _ NOUN NN _ 10 compound _ _ 10 surface _ NOUN NN _ 7 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 an _ DET DT _ 14 det _ _ 13 electronic _ ADJ JJ _ 14 amod _ _ 14 pen _ NOUN NN _ 10 conj _ _ 15 and _ CONJ CC _ 10 cc _ _ 16 the _ DET DT _ 17 det _ _ 17 ability _ NOUN NN _ 10 conj _ _ 18 to _ PART TO _ 20 mark _ _ 19 `` _ PUNCT `` _ 20 punct _ _ 20 read _ VERB VB _ 17 acl _ _ 21 '' _ PUNCT '' _ 20 punct _ _ 22 block _ ADJ JJ _ 23 amod _ _ 23 printing _ NOUN NN _ 20 dobj _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 4 _ NUM CD _ 3 compound _ _ 3 1/2 _ NUM CD _ 4 nummod _ _ 4 pounds _ NOUN NNS _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 it _ PRON PRP _ 11 nsubjpass _ _ 7 may _ AUX MD _ 11 aux _ _ 8 be _ AUX VB _ 11 auxpass _ _ 9 too _ ADV RB _ 10 advmod _ _ 10 ambitiously _ ADV RB _ 11 advmod _ _ 11 named _ VERB VBN _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 but _ CONJ CC _ 11 cc _ _ 14 it _ PRON PRP _ 16 nsubj _ _ 15 nevertheless _ ADV RB _ 16 advmod _ _ 16 opens _ VERB VBZ _ 11 conj _ _ 17 up _ ADP RP _ 16 compound:prt _ _ 18 the _ DET DT _ 19 det _ _ 19 kind _ NOUN NN _ 16 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 marketing _ NOUN NN _ 22 compound _ _ 22 possibilities _ NOUN NNS _ 19 nmod _ _ 23 that _ PRON WDT _ 24 nsubj _ _ 24 make _ VERB VBP _ 19 acl:relcl _ _ 25 analysts _ NOUN NNS _ 26 nsubj _ _ 26 froth _ VERB VB _ 24 ccomp _ _ 27 . _ PUNCT . _ 11 punct _ _ 1 Palmtops _ NOUN NNS _ 2 nsubj _ _ 2 are _ VERB VBP _ 0 root _ _ 3 n't _ PART RB _ 2 neg _ _ 4 far _ ADV RB _ 5 advmod _ _ 5 behind _ ADV RB _ 2 advmod _ _ 6 . _ PUNCT . _ 2 punct _ _ 1 Atari _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 4 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 Portfolio _ PROPN NNP _ 20 nsubj _ _ 5 , _ PUNCT , _ 20 punct _ _ 6 introduced _ VERB VBN _ 20 advcl _ _ 7 in _ ADP IN _ 8 case _ _ 8 Europe _ PROPN NNP _ 6 nmod _ _ 9 two _ NUM CD _ 10 nummod _ _ 10 months _ NOUN NNS _ 11 nmod:npmod _ _ 11 ago _ ADV RB _ 6 advmod _ _ 12 and _ CONJ CC _ 6 cc _ _ 13 in _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 U.S. _ PROPN NNP _ 6 conj _ _ 16 in _ ADP IN _ 18 case _ _ 17 early _ ADJ JJ _ 18 amod _ _ 18 September _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 20 punct _ _ 20 weighs _ VERB VBZ _ 0 root _ _ 21 less _ ADV RBR _ 23 advmod _ _ 22 than _ ADP IN _ 21 mwe _ _ 23 a _ DET DT _ 24 nummod _ _ 24 pound _ NOUN NN _ 20 dobj _ _ 25 , _ PUNCT , _ 20 punct _ _ 26 costs _ VERB VBZ _ 20 conj _ _ 27 a _ DET DT _ 30 det _ _ 28 mere _ ADJ JJ _ 30 amod _ _ 29 $ _ SYM $ _ 30 dep _ _ 30 400 _ NUM CD _ 26 dobj _ _ 31 and _ CONJ CC _ 20 cc _ _ 32 runs _ VERB VBZ _ 20 conj _ _ 33 on _ ADP IN _ 36 case _ _ 34 three _ NUM CD _ 36 nummod _ _ 35 AA _ NOUN NN _ 36 compound _ _ 36 batteries _ NOUN NNS _ 32 nmod _ _ 37 , _ PUNCT , _ 20 punct _ _ 38 yet _ CONJ CC _ 20 cc _ _ 39 has _ VERB VBZ _ 20 conj _ _ 40 the _ DET DT _ 41 det _ _ 41 power _ NOUN NN _ 39 dobj _ _ 42 to _ PART TO _ 43 mark _ _ 43 run _ VERB VB _ 41 acl _ _ 44 some _ DET DT _ 45 det _ _ 45 spreadsheets _ NOUN NNS _ 43 dobj _ _ 46 and _ CONJ CC _ 45 cc _ _ 47 word _ NOUN NN _ 49 compound _ _ 48 processing _ NOUN NN _ 49 compound _ _ 49 programs _ NOUN NNS _ 45 conj _ _ 50 . _ PUNCT . _ 20 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 critics _ NOUN NNS _ 6 nsubj _ _ 3 , _ PUNCT , _ 6 punct _ _ 4 however _ ADV RB _ 6 advmod _ _ 5 , _ PUNCT , _ 6 punct _ _ 6 say _ VERB VB _ 0 root _ _ 7 its _ PRON PRP$ _ 8 nmod:poss _ _ 8 ability _ NOUN NN _ 14 nsubjpass _ _ 9 to _ PART TO _ 10 mark _ _ 10 run _ VERB VB _ 8 acl _ _ 11 commonplace _ ADJ JJ _ 12 amod _ _ 12 programs _ NOUN NNS _ 10 dobj _ _ 13 is _ AUX VBZ _ 14 auxpass _ _ 14 restricted _ VERB VBN _ 6 ccomp _ _ 15 by _ ADP IN _ 18 case _ _ 16 a _ DET DT _ 18 det _ _ 17 limited _ ADJ JJ _ 18 amod _ _ 18 memory _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Poquet _ PROPN NNP _ 3 compound _ _ 2 Computer _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 meanwhile _ ADV RB _ 8 advmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 has _ AUX VBZ _ 8 aux _ _ 8 introduced _ VERB VBN _ 0 root _ _ 9 a _ DET DT _ 13 det _ _ 10 much _ ADV RB _ 11 advmod _ _ 11 more _ ADV RBR _ 12 advmod _ _ 12 sophisticated _ ADJ JJ _ 13 amod _ _ 13 palmtop _ NOUN NN _ 8 dobj _ _ 14 that _ PRON WDT _ 16 nsubj _ _ 15 can _ AUX MD _ 16 aux _ _ 16 run _ VERB VB _ 13 acl:relcl _ _ 17 Lotus _ PROPN NNP _ 18 compound _ _ 18 1-2-3 _ PROPN NNP _ 16 dobj _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 other _ ADJ JJ _ 23 amod _ _ 21 sophisticated _ ADJ JJ _ 23 amod _ _ 22 software _ NOUN NN _ 23 compound _ _ 23 programs _ NOUN NNS _ 18 conj _ _ 24 , _ PUNCT , _ 16 punct _ _ 25 but _ CONJ CC _ 16 cc _ _ 26 costs _ VERB VBZ _ 16 conj _ _ 27 five _ NUM CD _ 28 compound _ _ 28 times _ NOUN NNS _ 30 nummod _ _ 29 as _ ADV RB _ 30 advmod _ _ 30 much _ ADJ JJ _ 26 dobj _ _ 31 . _ PUNCT . _ 8 punct _ _ 1 At _ ADP IN _ 2 case _ _ 2 stake _ NOUN NN _ 3 nmod _ _ 3 is _ VERB VBZ _ 0 root _ _ 4 what _ PRON WP _ 20 dobj _ _ 5 Mike _ PROPN NNP _ 6 compound _ _ 6 Swavely _ PROPN NNP _ 16 nsubj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Compaq _ PROPN NNP _ 10 nmod:poss _ _ 9 's _ PART POS _ 8 case _ _ 10 president _ NOUN NN _ 6 appos _ _ 11 of _ ADP IN _ 14 case _ _ 12 North _ PROPN NNP _ 14 compound _ _ 13 America _ PROPN NNP _ 14 compound _ _ 14 operations _ NOUN NNS _ 10 nmod _ _ 15 , _ PUNCT , _ 6 punct _ _ 16 calls _ VERB VBZ _ 28 dep _ _ 17 `` _ PUNCT `` _ 20 punct _ _ 18 the _ DET DT _ 20 det _ _ 19 Holy _ PROPN NNP _ 20 compound _ _ 20 Grail _ PROPN NNP _ 16 xcomp _ _ 21 of _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 computer _ NOUN NN _ 24 compound _ _ 24 industry _ NOUN NN _ 20 nmod _ _ 25 '' _ PUNCT '' _ 20 punct _ _ 26 -- _ PUNCT : _ 28 punct _ _ 27 the _ DET DT _ 28 det _ _ 28 search _ NOUN NN _ 3 nsubj _ _ 29 for _ ADP IN _ 33 case _ _ 30 `` _ PUNCT `` _ 33 punct _ _ 31 a _ DET DT _ 33 det _ _ 32 real _ ADJ JJ _ 33 amod _ _ 33 computer _ NOUN NN _ 28 nmod _ _ 34 in _ ADP IN _ 36 case _ _ 35 a _ DET DT _ 36 det _ _ 36 package _ NOUN NN _ 33 nmod _ _ 37 so _ ADV RB _ 38 advmod _ _ 38 small _ ADJ JJ _ 36 amod _ _ 39 you _ PRON PRP _ 41 nsubj _ _ 40 can _ AUX MD _ 41 aux _ _ 41 take _ VERB VB _ 38 ccomp _ _ 42 it _ PRON PRP _ 41 dobj _ _ 43 everywhere _ ADV RB _ 41 advmod _ _ 44 . _ PUNCT . _ 3 punct _ _ 45 '' _ PUNCT '' _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 5 nsubj _ _ 3 is _ VERB VBZ _ 5 cop _ _ 4 so _ ADV RB _ 5 advmod _ _ 5 new _ ADJ JJ _ 0 root _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 nobody _ NOUN NN _ 8 nsubj _ _ 8 knows _ VERB VBZ _ 5 ccomp _ _ 9 yet _ ADV RB _ 8 advmod _ _ 10 how _ ADV WRB _ 11 advmod _ _ 11 big _ ADJ JJ _ 14 dep _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 can _ AUX MD _ 14 aux _ _ 14 be _ VERB VB _ 8 ccomp _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 I _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 had _ VERB VBD _ 23 ccomp _ _ 5 a _ DET DT _ 6 det _ _ 6 lot _ NOUN NN _ 9 nsubj _ _ 7 of _ ADP IN _ 8 case _ _ 8 people _ NOUN NNS _ 6 nmod _ _ 9 trying _ VERB VBG _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 sell _ VERB VB _ 9 xcomp _ _ 12 me _ PRON PRP _ 11 iobj _ _ 13 services _ NOUN NNS _ 11 dobj _ _ 14 to _ PART TO _ 15 mark _ _ 15 find _ VERB VB _ 13 acl _ _ 16 out _ ADP RP _ 15 compound:prt _ _ 17 how _ ADV WRB _ 18 advmod _ _ 18 big _ ADJ JJ _ 20 dep _ _ 19 it _ PRON PRP _ 20 nsubj _ _ 20 is _ VERB VBZ _ 15 ccomp _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 Tom _ PROPN NNP _ 25 compound _ _ 25 Humphries _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 director _ NOUN NN _ 25 appos _ _ 28 of _ ADP IN _ 29 case _ _ 29 marketing _ NOUN NN _ 27 nmod _ _ 30 for _ ADP IN _ 31 case _ _ 31 GRiD _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 14 punct _ _ 2 Whether _ SCONJ IN _ 5 mark _ _ 3 it _ PRON PRP _ 5 nsubj _ _ 4 's _ VERB VBZ _ 5 cop _ _ 5 $ _ SYM $ _ 14 advcl _ _ 6 5 _ NUM CD _ 7 compound _ _ 7 billion _ NUM CD _ 5 nummod _ _ 8 or _ CONJ CC _ 5 cc _ _ 9 $ _ SYM $ _ 5 conj _ _ 10 3.5 _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 14 punct _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 does _ VERB VBZ _ 0 root _ _ 15 n't _ PART RB _ 14 neg _ _ 16 matter _ NOUN NN _ 14 dobj _ _ 17 . _ PUNCT . _ 14 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 huge _ ADJ JJ _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 5 '' _ PUNCT '' _ 3 punct _ _ 1 Consider _ VERB VB _ 0 root _ _ 2 the _ DET DT _ 3 det _ _ 3 growth _ NOUN NN _ 1 dobj _ _ 4 of _ ADP IN _ 5 case _ _ 5 portables _ NOUN NNS _ 3 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 9 nsubj _ _ 8 now _ ADV RB _ 9 advmod _ _ 9 comprise _ VERB VBP _ 5 acl:relcl _ _ 10 12 _ NUM CD _ 11 nummod _ _ 11 % _ SYM NN _ 9 dobj _ _ 12 of _ ADP IN _ 16 case _ _ 13 all _ DET DT _ 16 det _ _ 14 personal _ ADJ JJ _ 16 amod _ _ 15 computer _ NOUN NN _ 16 compound _ _ 16 sales _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 1 punct _ _ 1 Laptops _ NOUN NNS _ 10 nsubj _ _ 2 -- _ PUNCT : _ 4 punct _ _ 3 generally _ ADV RB _ 4 advmod _ _ 4 anything _ NOUN NN _ 1 dep _ _ 5 under _ ADP IN _ 7 case _ _ 6 15 _ NUM CD _ 7 nummod _ _ 7 pounds _ NOUN NNS _ 4 nmod _ _ 8 -- _ PUNCT : _ 4 punct _ _ 9 have _ AUX VBP _ 10 aux _ _ 10 become _ VERB VBN _ 0 root _ _ 11 the _ DET DT _ 15 det _ _ 12 fastest-growing _ ADJ JJ _ 15 amod _ _ 13 personal _ ADJ JJ _ 15 amod _ _ 14 computer _ NOUN NN _ 15 compound _ _ 15 segment _ NOUN NN _ 10 xcomp _ _ 16 , _ PUNCT , _ 10 punct _ _ 17 with _ SCONJ IN _ 19 mark _ _ 18 sales _ NOUN NNS _ 19 nsubj _ _ 19 doubling _ VERB VBG _ 10 advcl _ _ 20 this _ DET DT _ 21 det _ _ 21 year _ NOUN NN _ 19 nmod:tmod _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 Responding _ VERB VBG _ 9 dep _ _ 2 to _ ADP TO _ 4 case _ _ 3 that _ DET DT _ 4 det _ _ 4 demand _ NOUN NN _ 1 nmod _ _ 5 , _ PUNCT , _ 9 punct _ _ 6 however _ ADV RB _ 9 advmod _ _ 7 , _ PUNCT , _ 9 punct _ _ 8 has _ AUX VBZ _ 9 aux _ _ 9 led _ VERB VBN _ 0 root _ _ 10 to _ ADP TO _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 variety _ NOUN NN _ 9 nmod _ _ 13 of _ ADP IN _ 14 case _ _ 14 compromises _ NOUN NNS _ 12 nmod _ _ 15 . _ PUNCT . _ 9 punct _ _ 1 Making _ VERB VBG _ 5 csubj _ _ 2 computers _ NOUN NNS _ 3 nsubj _ _ 3 smaller _ ADJ JJR _ 1 xcomp _ _ 4 often _ ADV RB _ 5 advmod _ _ 5 means _ VERB VBZ _ 0 root _ _ 6 sacrificing _ VERB VBG _ 5 xcomp _ _ 7 memory _ NOUN NN _ 6 dobj _ _ 8 . _ PUNCT . _ 5 punct _ _ 1 It _ PRON PRP _ 4 nsubj _ _ 2 also _ ADV RB _ 4 advmod _ _ 3 has _ AUX VBZ _ 4 aux _ _ 4 precluded _ VERB VBN _ 0 root _ _ 5 use _ NOUN NN _ 4 dobj _ _ 6 of _ ADP IN _ 12 case _ _ 7 the _ DET DT _ 12 det _ _ 8 faster _ ADJ JJR _ 12 amod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 more _ ADV RBR _ 11 advmod _ _ 11 powerful _ ADJ JJ _ 12 amod _ _ 12 microprocessors _ NOUN NNS _ 5 nmod _ _ 13 found _ VERB VBN _ 12 acl _ _ 14 in _ ADP IN _ 16 case _ _ 15 increasing _ VERB VBG _ 16 amod _ _ 16 numbers _ NOUN NNS _ 13 nmod _ _ 17 of _ ADP IN _ 19 case _ _ 18 desktop _ ADJ JJ _ 19 amod _ _ 19 machines _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Size _ NOUN NN _ 4 compound _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 weight _ NOUN NN _ 1 conj _ _ 4 considerations _ NOUN NNS _ 7 nsubj _ _ 5 also _ ADV RB _ 7 advmod _ _ 6 have _ AUX VBP _ 7 aux _ _ 7 limited _ VERB VBN _ 0 root _ _ 8 screen _ NOUN NN _ 9 compound _ _ 9 displays _ NOUN NNS _ 7 dobj _ _ 10 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 competitive _ ADJ JJ _ 3 amod _ _ 3 sniping _ NOUN NN _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 get _ VERB VB _ 0 root _ _ 6 pretty _ ADV RB _ 7 advmod _ _ 7 petty _ ADJ JJ _ 5 xcomp _ _ 8 at _ ADP IN _ 9 case _ _ 9 times _ NOUN NNS _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Poquet _ PROPN NNP _ 3 compound _ _ 3 spokesman _ NOUN NN _ 8 nsubj _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 for _ ADP IN _ 6 case _ _ 6 example _ NOUN NN _ 8 nmod _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 criticizes _ VERB VBZ _ 0 root _ _ 9 the _ DET DT _ 11 det _ _ 10 Atari _ PROPN NNP _ 11 compound _ _ 11 Portfolio _ PROPN NNP _ 8 dobj _ _ 12 because _ SCONJ IN _ 14 mark _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 requires _ VERB VBZ _ 8 advcl _ _ 15 three _ NUM CD _ 16 nummod _ _ 16 batteries _ NOUN NNS _ 14 dobj _ _ 17 while _ SCONJ IN _ 20 mark _ _ 18 the _ DET DT _ 19 det _ _ 19 Poquet _ PROPN NNP _ 20 nsubj _ _ 20 needs _ VERB VBZ _ 14 advcl _ _ 21 only _ ADV RB _ 22 advmod _ _ 22 two _ NUM CD _ 20 dobj _ _ 23 . _ PUNCT . _ 8 punct _ _ 1 Both _ DET DT _ 2 det _ _ 2 palmtops _ NOUN NNS _ 4 nsubjpass _ _ 3 are _ AUX VBP _ 4 auxpass _ _ 4 dismissed _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 7 case _ _ 6 notebook _ NOUN NN _ 7 compound _ _ 7 makers _ NOUN NNS _ 4 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 who _ PRON WP _ 10 nsubj _ _ 10 argue _ VERB VBP _ 7 acl:relcl _ _ 11 that _ SCONJ IN _ 15 mark _ _ 12 they _ PRON PRP _ 15 nsubj _ _ 13 're _ VERB VBP _ 15 cop _ _ 14 too _ ADV RB _ 15 advmod _ _ 15 small _ ADJ JJ _ 10 ccomp _ _ 16 -- _ PUNCT : _ 26 punct _ _ 17 a _ DET DT _ 18 det _ _ 18 problem _ NOUN NN _ 26 dep _ _ 19 Poquet _ PROPN NNP _ 21 nsubj _ _ 20 also _ ADV RB _ 21 advmod _ _ 21 encountered _ VERB VBD _ 18 acl:relcl _ _ 22 in _ ADP IN _ 24 case _ _ 23 focus _ NOUN NN _ 24 compound _ _ 24 groups _ NOUN NNS _ 21 nmod _ _ 25 , _ PUNCT , _ 26 punct _ _ 26 admits _ VERB VBZ _ 15 parataxis _ _ 27 Gerry _ PROPN NNP _ 28 compound _ _ 28 Purdy _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 director _ NOUN NN _ 28 appos _ _ 31 of _ ADP IN _ 32 case _ _ 32 marketing _ NOUN NN _ 30 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 Poquet _ PROPN NNP _ 12 nsubj _ _ 2 , _ PUNCT , _ 12 punct _ _ 3 trying _ VERB VBG _ 12 advcl _ _ 4 to _ PART TO _ 5 mark _ _ 5 avoid _ VERB VB _ 3 xcomp _ _ 6 the _ DET DT _ 10 det _ _ 7 `` _ PUNCT `` _ 10 punct _ _ 8 gadget _ NOUN NN _ 10 compound _ _ 9 '' _ PUNCT '' _ 10 punct _ _ 10 label _ NOUN NN _ 5 dobj _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 responded _ VERB VBD _ 0 root _ _ 13 with _ ADP IN _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 tag _ NOUN NN _ 16 compound _ _ 16 line _ NOUN NN _ 12 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 `` _ PUNCT `` _ 16 punct _ _ 19 The _ DET DT _ 21 det _ _ 20 Poquet _ PROPN NNP _ 21 compound _ _ 21 PC _ PROPN NNP _ 16 dep _ _ 22 -- _ PUNCT : _ 21 punct _ _ 23 a _ DET DT _ 26 det _ _ 24 Very _ PROPN NNP _ 25 amod _ _ 25 Big _ PROPN NNP _ 26 amod _ _ 26 Computer _ PROPN NNP _ 21 dep _ _ 27 . _ PUNCT . _ 12 punct _ _ 28 '' _ PUNCT '' _ 12 punct _ _ 1 Despite _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 sniping _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 few _ ADJ JJ _ 6 nsubj _ _ 6 question _ NOUN NN _ 0 root _ _ 7 the _ DET DT _ 8 det _ _ 8 inevitability _ NOUN NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 move _ NOUN NN _ 8 nmod _ _ 12 to _ ADP TO _ 14 case _ _ 13 small _ ADJ JJ _ 14 amod _ _ 14 machines _ NOUN NNS _ 11 nmod _ _ 15 that _ PRON WDT _ 18 nsubj _ _ 16 do _ AUX VBP _ 18 aux _ _ 17 n't _ PART RB _ 18 neg _ _ 18 make _ VERB VB _ 14 acl:relcl _ _ 19 compromises _ NOUN NNS _ 18 dobj _ _ 20 . _ PUNCT . _ 6 punct _ _ 1 Toward _ ADP IN _ 3 case _ _ 2 that _ DET DT _ 3 det _ _ 3 end _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 experts _ NOUN NNS _ 6 nsubj _ _ 6 say _ VERB VBP _ 0 root _ _ 7 the _ DET DT _ 9 det _ _ 8 real _ ADJ JJ _ 9 amod _ _ 9 battle _ NOUN NN _ 11 nsubj _ _ 10 will _ AUX MD _ 11 aux _ _ 11 take _ VERB VB _ 6 ccomp _ _ 12 place _ NOUN NN _ 11 dobj _ _ 13 between _ ADP IN _ 15 case _ _ 14 center-stage _ ADJ JJ _ 15 amod _ _ 15 players _ NOUN NNS _ 11 nmod _ _ 16 like _ ADP IN _ 22 case _ _ 17 Toshiba _ PROPN NNP _ 19 compound _ _ 18 , _ PUNCT , _ 19 punct _ _ 19 Zenith _ PROPN NNP _ 22 compound _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 now _ ADV RB _ 19 advmod _ _ 22 Compaq _ PROPN NNP _ 15 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 Compaq _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 new _ ADJ JJ _ 4 amod _ _ 4 machines _ NOUN NNS _ 6 nsubjpass _ _ 5 are _ AUX VBP _ 6 auxpass _ _ 6 considered _ VERB VBN _ 0 root _ _ 7 a _ DET DT _ 9 det _ _ 8 direct _ ADJ JJ _ 9 amod _ _ 9 threat _ NOUN NN _ 6 xcomp _ _ 10 to _ ADP TO _ 12 case _ _ 11 start-up _ ADJ JJ _ 12 amod _ _ 12 firms _ NOUN NNS _ 9 nmod _ _ 13 like _ ADP IN _ 15 case _ _ 14 Dynabook _ PROPN NNP _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 which _ PRON WDT _ 18 nsubj _ _ 18 introduced _ VERB VBD _ 15 acl:relcl _ _ 19 in _ ADP IN _ 20 case _ _ 20 June _ PROPN NNP _ 18 nmod _ _ 21 a _ DET DT _ 22 det _ _ 22 computer _ NOUN NN _ 18 dobj _ _ 23 that _ PRON WDT _ 29 nsubj _ _ 24 , _ PUNCT , _ 29 punct _ _ 25 like _ ADP IN _ 26 case _ _ 26 Compaq _ PROPN NNP _ 29 nmod _ _ 27 's _ PART POS _ 26 case _ _ 28 , _ PUNCT , _ 29 punct _ _ 29 uses _ VERB VBZ _ 22 acl:relcl _ _ 30 an _ DET DT _ 33 det _ _ 31 Intel _ PROPN NNP _ 33 compound _ _ 32 286 _ NUM CD _ 33 nummod _ _ 33 microprocessor _ NOUN NN _ 29 dobj _ _ 34 and _ CONJ CC _ 29 cc _ _ 35 has _ VERB VBZ _ 29 conj _ _ 36 a _ DET DT _ 39 det _ _ 37 hard _ ADJ JJ _ 39 amod _ _ 38 disk _ NOUN NN _ 39 compound _ _ 39 drive _ NOUN NN _ 35 dobj _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 Dynabook _ PROPN NNP _ 4 compound _ _ 4 product _ NOUN NN _ 8 nsubj _ _ 5 is _ VERB VBZ _ 8 cop _ _ 6 twice _ ADV RB _ 8 advmod _ _ 7 as _ ADP IN _ 8 dep _ _ 8 heavy _ ADJ JJ _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 costs _ NOUN NNS _ 8 conj _ _ 11 more _ ADJ JJR _ 10 dobj _ _ 12 than _ ADP IN _ 13 case _ _ 13 Compaq _ PROPN NNP _ 11 nmod _ _ 14 's _ PART POS _ 13 case _ _ 15 . _ PUNCT . _ 8 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 announcement _ NOUN NN _ 5 nsubj _ _ 4 also _ ADV RB _ 5 advmod _ _ 5 spells _ VERB VBZ _ 0 root _ _ 6 trouble _ NOUN NN _ 5 dobj _ _ 7 for _ ADP IN _ 8 case _ _ 8 Zenith _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 which _ PRON WDT _ 13 nsubj _ _ 11 last _ ADJ JJ _ 12 amod _ _ 12 year _ NOUN NN _ 13 dep _ _ 13 had _ VERB VBD _ 8 acl:relcl _ _ 14 28 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dobj _ _ 16 of _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 U.S. _ PROPN NNP _ 20 compound _ _ 19 laptop _ NOUN NN _ 20 compound _ _ 20 market _ NOUN NN _ 15 nmod _ _ 21 but _ CONJ CC _ 13 cc _ _ 22 recently _ ADV RB _ 23 advmod _ _ 23 agreed _ VERB VBD _ 13 conj _ _ 24 to _ PART TO _ 25 mark _ _ 25 sell _ VERB VB _ 23 xcomp _ _ 26 its _ PRON PRP$ _ 28 nmod:poss _ _ 27 computer _ NOUN NN _ 28 compound _ _ 28 business _ NOUN NN _ 25 dobj _ _ 29 to _ ADP TO _ 33 case _ _ 30 Cie. _ PROPN NNP _ 33 compound _ _ 31 des _ PROPN NNP _ 33 compound _ _ 32 Machines _ PROPN NNP _ 33 compound _ _ 33 Bull _ PROPN NNP _ 25 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 the _ DET DT _ 39 det _ _ 36 French _ ADJ JJ _ 39 amod _ _ 37 government-owned _ ADJ JJ _ 39 amod _ _ 38 computer _ NOUN NN _ 39 compound _ _ 39 maker _ NOUN NN _ 33 appos _ _ 40 . _ PUNCT . _ 5 punct _ _ 1 Zenith _ PROPN NNP _ 2 compound _ _ 2 holders _ NOUN NNS _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 vote _ VERB VB _ 0 root _ _ 5 in _ ADP IN _ 6 case _ _ 6 December _ PROPN NNP _ 4 nmod _ _ 7 on _ ADP IN _ 13 case _ _ 8 the _ DET DT _ 13 det _ _ 9 proposed _ ADJ JJ _ 13 amod _ _ 10 $ _ SYM $ _ 13 amod _ _ 11 635 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 sale _ NOUN NN _ 4 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 a _ DET DT _ 16 det _ _ 16 price _ NOUN NN _ 13 appos _ _ 17 that _ PRON WDT _ 19 nsubj _ _ 18 could _ AUX MD _ 19 aux _ _ 19 slip _ VERB VB _ 16 acl:relcl _ _ 20 because _ SCONJ IN _ 23 mark _ _ 21 it _ PRON PRP _ 23 nsubjpass _ _ 22 is _ AUX VBZ _ 23 auxpass _ _ 23 pegged _ VERB VBN _ 19 advcl _ _ 24 to _ ADP TO _ 27 case _ _ 25 Zenith _ PROPN NNP _ 27 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 share _ NOUN NN _ 23 nmod _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 sales _ NOUN NNS _ 27 conj _ _ 30 . _ PUNCT . _ 4 punct _ _ 1 Compaq _ PROPN NNP _ 4 nsubj _ _ 2 is _ AUX VBZ _ 4 aux _ _ 3 already _ ADV RB _ 4 advmod _ _ 4 taking _ VERB VBG _ 0 root _ _ 5 aim _ NOUN NN _ 4 dobj _ _ 6 at _ ADP IN _ 10 case _ _ 7 Zenith _ PROPN NNP _ 10 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 market _ NOUN NN _ 10 compound _ _ 10 share _ NOUN NN _ 4 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 1 Rod _ PROPN NNP _ 2 compound _ _ 2 Canion _ PROPN NNP _ 12 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Compaq _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 chief _ ADJ JJ _ 10 amod _ _ 9 executive _ ADJ JJ _ 10 amod _ _ 10 officer _ NOUN NN _ 6 conj _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 notes _ VERB VBZ _ 0 root _ _ 13 pointedly _ ADV RB _ 12 advmod _ _ 14 that _ SCONJ IN _ 20 mark _ _ 15 Zenith _ PROPN NNP _ 19 nmod:poss _ _ 16 's _ PART POS _ 15 case _ _ 17 $ _ SYM $ _ 19 amod _ _ 18 2,000 _ NUM CD _ 17 compound _ _ 19 MinisPort _ PROPN NNP _ 20 nsubj _ _ 20 uses _ VERB VBZ _ 12 ccomp _ _ 21 an _ DET DT _ 27 det _ _ 22 `` _ PUNCT `` _ 27 punct _ _ 23 unconventional _ ADJ JJ _ 27 amod _ _ 24 '' _ PUNCT '' _ 27 punct _ _ 25 two-inch _ ADJ JJ _ 27 amod _ _ 26 floppy _ ADJ JJ _ 27 amod _ _ 27 disk _ NOUN NN _ 20 dobj _ _ 28 , _ PUNCT , _ 20 punct _ _ 29 whereas _ SCONJ IN _ 34 mark _ _ 30 Compaq _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 new _ ADJ JJ _ 33 amod _ _ 33 machines _ NOUN NNS _ 34 nsubj _ _ 34 use _ VERB VBP _ 20 advcl _ _ 35 the _ DET DT _ 40 det _ _ 36 more _ ADV RBR _ 37 advmod _ _ 37 common _ ADJ JJ _ 40 amod _ _ 38 3 _ NUM CD _ 39 compound _ _ 39 1/2-inch _ ADJ JJ _ 40 amod _ _ 40 disk _ NOUN NN _ 34 dobj _ _ 41 . _ PUNCT . _ 12 punct _ _ 1 John _ PROPN NNP _ 3 compound _ _ 2 P. _ PROPN NNP _ 3 compound _ _ 3 Frank _ PROPN NNP _ 12 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 president _ NOUN NN _ 3 appos _ _ 6 of _ ADP IN _ 9 case _ _ 7 Zenith _ PROPN NNP _ 9 compound _ _ 8 Data _ PROPN NNP _ 9 compound _ _ 9 Systems _ PROPN NNP _ 5 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 simply _ ADV RB _ 12 advmod _ _ 12 shrugs _ NOUN NNS _ 0 root _ _ 13 off _ ADP RP _ 12 compound:prt _ _ 14 such _ ADJ JJ _ 15 amod _ _ 15 criticism _ NOUN NN _ 12 dobj _ _ 16 , _ PUNCT , _ 12 punct _ _ 17 noting _ VERB VBG _ 12 advcl _ _ 18 that _ SCONJ IN _ 25 mark _ _ 19 3 _ NUM CD _ 20 compound _ _ 20 1/2-inch _ ADJ JJ _ 21 amod _ _ 21 floppies _ NOUN NNS _ 25 nsubj _ _ 22 were _ VERB VBD _ 25 cop _ _ 23 also _ ADV RB _ 25 advmod _ _ 24 `` _ PUNCT `` _ 25 punct _ _ 25 unconventional _ ADJ JJ _ 17 ccomp _ _ 26 '' _ PUNCT '' _ 25 punct _ _ 27 when _ ADV WRB _ 30 advmod _ _ 28 they _ PRON PRP _ 30 nsubj _ _ 29 first _ ADV RB _ 30 advmod _ _ 30 replaced _ VERB VBD _ 25 advcl _ _ 31 five-inch _ ADJ JJ _ 32 amod _ _ 32 disks _ NOUN NNS _ 30 dobj _ _ 33 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 We _ PRON PRP _ 5 nsubj _ _ 3 do _ AUX VBP _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 look _ VERB VB _ 25 ccomp _ _ 6 at _ ADP IN _ 7 case _ _ 7 it _ PRON PRP _ 5 nmod _ _ 8 as _ SCONJ IN _ 12 mark _ _ 9 not _ ADV RB _ 12 neg _ _ 10 being _ VERB VBG _ 12 cop _ _ 11 a _ DET DT _ 12 det _ _ 12 standard _ NOUN NN _ 5 advcl _ _ 13 , _ PUNCT , _ 5 punct _ _ 14 we _ PRON PRP _ 15 nsubj _ _ 15 look _ VERB VBP _ 5 parataxis _ _ 16 at _ ADP IN _ 17 case _ _ 17 it _ PRON PRP _ 15 nmod _ _ 18 as _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 new _ ADJ JJ _ 21 amod _ _ 21 standard _ NOUN NN _ 15 nmod _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 argues _ VERB VBZ _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 Analysts _ NOUN NNS _ 4 nsubj _ _ 2 do _ AUX VBP _ 4 aux _ _ 3 n't _ PART RB _ 4 neg _ _ 4 see _ VERB VB _ 0 root _ _ 5 it _ PRON PRP _ 4 iobj _ _ 6 that _ DET DT _ 7 det _ _ 7 way _ NOUN NN _ 4 dobj _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 30 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 ca _ AUX MD _ 5 aux _ _ 4 n't _ PART RB _ 5 neg _ _ 5 imagine _ VERB VB _ 30 ccomp _ _ 6 that _ SCONJ IN _ 9 mark _ _ 7 you _ PRON PRP _ 9 nsubj _ _ 8 'll _ AUX MD _ 9 aux _ _ 9 talk _ VERB VB _ 5 ccomp _ _ 10 to _ ADP TO _ 11 case _ _ 11 anyone _ NOUN NN _ 9 nmod _ _ 12 who _ PRON WP _ 15 nsubj _ _ 13 wo _ AUX MD _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 tell _ VERB VB _ 11 acl:relcl _ _ 16 you _ PRON PRP _ 15 dobj _ _ 17 this _ PRON DT _ 19 nsubj _ _ 18 is _ VERB VBZ _ 19 cop _ _ 19 dynamite _ NOUN NN _ 15 ccomp _ _ 20 for _ ADP IN _ 21 case _ _ 21 Compaq _ PROPN NNP _ 19 nmod _ _ 22 and _ CONJ CC _ 19 cc _ _ 23 a _ DET DT _ 24 det _ _ 24 stopper _ NOUN NN _ 19 conj _ _ 25 for _ ADP IN _ 26 case _ _ 26 everyone _ NOUN NN _ 24 nmod _ _ 27 else _ ADV RB _ 26 amod _ _ 28 , _ PUNCT , _ 30 punct _ _ 29 '' _ PUNCT '' _ 30 punct _ _ 30 says _ VERB VBZ _ 0 root _ _ 31 Gene _ PROPN NNP _ 32 compound _ _ 32 Talsky _ PROPN NNP _ 30 nsubj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 president _ NOUN NN _ 32 appos _ _ 35 of _ ADP IN _ 39 case _ _ 36 Professional _ PROPN NNP _ 39 compound _ _ 37 Marketing _ PROPN NNP _ 39 compound _ _ 38 Management _ PROPN NNP _ 39 compound _ _ 39 Inc _ PROPN NNP _ 34 nmod _ _ 40 . _ PUNCT . _ 30 punct _ _ 1 Adds _ PROPN NNP _ 0 root _ _ 2 Bill _ PROPN NNP _ 3 compound _ _ 3 Lempesis _ PROPN NNP _ 1 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 senior _ ADJ JJ _ 7 amod _ _ 6 industry _ NOUN NN _ 7 compound _ _ 7 analyst _ NOUN NN _ 3 appos _ _ 8 for _ ADP IN _ 9 case _ _ 9 DataQuest _ PROPN NNP _ 7 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 a _ DET DT _ 15 det _ _ 12 high-technology _ NOUN NN _ 15 compound _ _ 13 market _ NOUN NN _ 15 compound _ _ 14 research _ NOUN NN _ 15 compound _ _ 15 firm _ NOUN NN _ 9 appos _ _ 16 : _ PUNCT : _ 1 punct _ _ 17 `` _ PUNCT `` _ 1 punct _ _ 18 We _ PRON PRP _ 20 nsubj _ _ 19 basically _ ADV RB _ 20 advmod _ _ 20 think _ VERB VBP _ 1 ccomp _ _ 21 that _ SCONJ IN _ 26 mark _ _ 22 these _ PRON DT _ 26 nsubj _ _ 23 are _ VERB VBP _ 26 cop _ _ 24 very _ ADV RB _ 25 advmod _ _ 25 hot _ ADJ JJ _ 26 amod _ _ 26 products _ NOUN NNS _ 20 ccomp _ _ 27 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 problem _ NOUN NN _ 8 nsubj _ _ 3 Compaq _ PROPN NNP _ 5 nsubj _ _ 4 is _ AUX VBZ _ 5 aux _ _ 5 going _ VERB VBG _ 2 acl:relcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 have _ VERB VB _ 5 xcomp _ _ 8 is _ VERB VBZ _ 0 root _ _ 9 that _ SCONJ IN _ 14 mark _ _ 10 they _ PRON PRP _ 14 nsubj _ _ 11 wo _ AUX MD _ 14 aux _ _ 12 n't _ PART RB _ 14 neg _ _ 13 be _ VERB VB _ 14 cop _ _ 14 able _ ADJ JJ _ 8 ccomp _ _ 15 to _ PART TO _ 16 mark _ _ 16 make _ VERB VB _ 14 xcomp _ _ 17 enough _ ADJ JJ _ 16 dobj _ _ 18 of _ ADP IN _ 19 case _ _ 19 them _ PRON PRP _ 17 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 21 '' _ PUNCT '' _ 8 punct _ _ 1 Compaq _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 machines _ NOUN NNS _ 4 nsubj _ _ 4 include _ VERB VBP _ 0 root _ _ 5 the _ DET DT _ 10 det _ _ 6 3 _ NUM CD _ 7 compound _ _ 7 1/2-inch _ ADJ JJ _ 10 amod _ _ 8 floppy _ ADJ JJ _ 10 amod _ _ 9 disk _ NOUN NN _ 10 compound _ _ 10 drive _ NOUN NN _ 4 dobj _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 a _ DET DT _ 14 det _ _ 13 backlit _ ADJ JJ _ 14 amod _ _ 14 screen _ NOUN NN _ 10 conj _ _ 15 that _ PRON WDT _ 19 nsubj _ _ 16 is _ VERB VBZ _ 19 cop _ _ 17 only _ ADV RB _ 19 advmod _ _ 18 1/4-inch _ ADJ JJ _ 19 amod _ _ 19 thick _ ADJ JJ _ 14 acl:relcl _ _ 20 and _ CONJ CC _ 10 cc _ _ 21 an _ DET DT _ 24 det _ _ 22 internal _ ADJ JJ _ 24 amod _ _ 23 expansion _ NOUN NN _ 24 compound _ _ 24 slot _ NOUN NN _ 10 conj _ _ 25 for _ ADP IN _ 27 case _ _ 26 a _ DET DT _ 27 det _ _ 27 modem _ NOUN NN _ 24 nmod _ _ 28 -- _ PUNCT : _ 10 punct _ _ 29 in _ ADP IN _ 31 case _ _ 30 other _ ADJ JJ _ 31 amod _ _ 31 words _ NOUN NNS _ 10 nmod _ _ 32 , _ PUNCT , _ 10 punct _ _ 33 almost _ ADV RB _ 36 amod _ _ 34 all _ DET PDT _ 33 dep _ _ 35 the _ DET DT _ 36 det _ _ 36 capabilities _ NOUN NNS _ 10 appos _ _ 37 of _ ADP IN _ 41 case _ _ 38 a _ DET DT _ 41 det _ _ 39 typical _ ADJ JJ _ 41 amod _ _ 40 office _ NOUN NN _ 41 compound _ _ 41 machine _ NOUN NN _ 36 nmod _ _ 42 . _ PUNCT . _ 4 punct _ _ 1 Others _ NOUN NNS _ 4 nsubj _ _ 2 undoubtedly _ ADV RB _ 4 advmod _ _ 3 will _ AUX MD _ 4 aux _ _ 4 follow _ VERB VB _ 0 root _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 but _ CONJ CC _ 4 cc _ _ 7 most _ ADJ JJS _ 8 amod _ _ 8 analysts _ NOUN NNS _ 9 nsubj _ _ 9 believe _ VERB VBP _ 4 conj _ _ 10 Compaq _ PROPN NNP _ 11 nsubj _ _ 11 has _ VERB VBZ _ 9 ccomp _ _ 12 at _ ADP IN _ 13 case _ _ 13 least _ ADJ JJS _ 16 advmod _ _ 14 a _ DET DT _ 16 det _ _ 15 six-month _ ADJ JJ _ 16 amod _ _ 16 lead _ NOUN NN _ 11 dobj _ _ 17 on _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 competition _ NOUN NN _ 16 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 Toshiba _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 line _ NOUN NN _ 10 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 portables _ NOUN NNS _ 3 nmod _ _ 6 , _ PUNCT , _ 10 punct _ _ 7 for _ ADP IN _ 8 case _ _ 8 example _ NOUN NN _ 10 nmod _ _ 9 , _ PUNCT , _ 10 punct _ _ 10 features _ VERB VBZ _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 T-1000 _ PROPN NNP _ 10 dobj _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 which _ PRON WDT _ 20 nsubj _ _ 15 is _ VERB VBZ _ 20 cop _ _ 16 in _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 same _ ADJ JJ _ 20 amod _ _ 19 weight _ NOUN NN _ 20 compound _ _ 20 class _ NOUN NN _ 12 acl:relcl _ _ 21 but _ CONJ CC _ 20 cc _ _ 22 is _ VERB VBZ _ 24 cop _ _ 23 much _ ADV RB _ 24 advmod _ _ 24 slower _ ADJ JJR _ 20 conj _ _ 25 and _ CONJ CC _ 20 cc _ _ 26 has _ VERB VBZ _ 20 conj _ _ 27 less _ ADJ JJR _ 28 amod _ _ 28 memory _ NOUN NN _ 26 dobj _ _ 29 , _ PUNCT , _ 12 punct _ _ 30 and _ CONJ CC _ 12 cc _ _ 31 the _ DET DT _ 32 det _ _ 32 T-1600 _ PROPN NNP _ 12 conj _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 which _ PRON WDT _ 36 nsubj _ _ 35 also _ ADV RB _ 36 advmod _ _ 36 uses _ VERB VBZ _ 32 acl:relcl _ _ 37 a _ DET DT _ 39 det _ _ 38 286 _ NUM CD _ 39 nummod _ _ 39 microprocessor _ NOUN NN _ 36 dobj _ _ 40 , _ PUNCT , _ 36 punct _ _ 41 but _ CONJ CC _ 36 cc _ _ 42 which _ PRON WDT _ 43 nsubj _ _ 43 weighs _ VERB VBZ _ 36 conj _ _ 44 almost _ ADV RB _ 45 advmod _ _ 45 twice _ ADV RB _ 43 dobj _ _ 46 as _ ADP IN _ 47 case _ _ 47 much _ ADJ JJ _ 45 nmod _ _ 48 and _ CONJ CC _ 43 cc _ _ 49 is _ VERB VBZ _ 53 cop _ _ 50 three _ NUM CD _ 51 compound _ _ 51 times _ NOUN NNS _ 53 nummod _ _ 52 the _ DET DT _ 53 det _ _ 53 size _ NOUN NN _ 43 conj _ _ 54 . _ PUNCT . _ 10 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 third _ ADJ JJ _ 3 amod _ _ 3 model _ NOUN NN _ 10 nsubj _ _ 4 , _ PUNCT , _ 10 punct _ _ 5 marketed _ VERB VBN _ 10 advcl _ _ 6 in _ ADP IN _ 7 case _ _ 7 Japan _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 may _ AUX MD _ 10 aux _ _ 10 hit _ VERB VB _ 0 root _ _ 11 the _ DET DT _ 12 det _ _ 12 U.S. _ PROPN NNP _ 10 dobj _ _ 13 by _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 end _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 first _ ADJ JJ _ 19 amod _ _ 19 quarter _ NOUN NN _ 15 nmod _ _ 20 of _ ADP IN _ 21 case _ _ 21 1990 _ NUM CD _ 19 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 but _ CONJ CC _ 10 cc _ _ 24 by _ ADP IN _ 25 case _ _ 25 then _ ADV RB _ 33 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 analysts _ NOUN NNS _ 28 nsubj _ _ 28 say _ VERB VBP _ 33 parataxis _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 Compaq _ PROPN NNP _ 33 nsubj _ _ 31 will _ AUX MD _ 33 aux _ _ 32 have _ AUX VB _ 33 aux _ _ 33 established _ VERB VBN _ 10 conj _ _ 34 itself _ PRON PRP _ 33 dobj _ _ 35 as _ ADP IN _ 36 case _ _ 36 one _ NUM CD _ 33 nmod _ _ 37 of _ ADP IN _ 40 case _ _ 38 three _ NUM CD _ 40 nummod _ _ 39 major _ ADJ JJ _ 40 amod _ _ 40 players _ NOUN NNS _ 36 nmod _ _ 41 . _ PUNCT . _ 10 punct _ _ 1 What _ PRON WP _ 4 dep _ _ 2 about _ ADP IN _ 4 case _ _ 3 Big _ PROPN NNP _ 4 compound _ _ 4 Blue _ PROPN NNP _ 0 root _ _ 5 ? _ PUNCT . _ 4 punct _ _ 1 International _ PROPN NNP _ 4 compound _ _ 2 Business _ PROPN NNP _ 4 compound _ _ 3 Machines _ PROPN NNP _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 11 nsubjpass _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 analysts _ NOUN NNS _ 7 nsubj _ _ 7 say _ VERB VBP _ 11 parataxis _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 has _ AUX VBZ _ 11 aux _ _ 10 been _ AUX VBN _ 11 auxpass _ _ 11 burned _ VERB VBN _ 0 root _ _ 12 twice _ ADV RB _ 11 advmod _ _ 13 in _ SCONJ IN _ 14 mark _ _ 14 trying _ VERB VBG _ 11 advcl _ _ 15 to _ PART TO _ 16 mark _ _ 16 enter _ VERB VB _ 14 xcomp _ _ 17 the _ DET DT _ 19 det _ _ 18 laptop _ NOUN NN _ 19 compound _ _ 19 market _ NOUN NN _ 16 dobj _ _ 20 and _ CONJ CC _ 11 cc _ _ 21 shows _ VERB VBZ _ 11 conj _ _ 22 no _ DET DT _ 23 neg _ _ 23 signs _ NOUN NNS _ 21 dobj _ _ 24 of _ SCONJ IN _ 25 mark _ _ 25 trying _ VERB VBG _ 23 acl _ _ 26 to _ PART TO _ 27 mark _ _ 27 get _ VERB VB _ 25 xcomp _ _ 28 into _ ADP IN _ 29 case _ _ 29 notebooks _ NOUN NNS _ 27 nmod _ _ 30 anytime _ ADV RB _ 31 advmod _ _ 31 soon _ ADV RB _ 27 advmod _ _ 32 . _ PUNCT . _ 11 punct _ _ 1 Honeywell _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 8 nsubj _ _ 3 and _ CONJ CC _ 2 cc _ _ 4 International _ PROPN NNP _ 7 compound _ _ 5 Business _ PROPN NNP _ 7 compound _ _ 6 Machines _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 2 conj _ _ 8 received _ VERB VBD _ 0 root _ _ 9 Air _ PROPN NNP _ 11 compound _ _ 10 Force _ PROPN NNP _ 11 compound _ _ 11 contracts _ NOUN NNS _ 8 dobj _ _ 12 to _ PART TO _ 13 mark _ _ 13 develop _ VERB VB _ 11 acl _ _ 14 integrated _ ADJ JJ _ 15 amod _ _ 15 circuits _ NOUN NNS _ 13 dobj _ _ 16 for _ ADP IN _ 17 case _ _ 17 use _ NOUN NN _ 15 nmod _ _ 18 in _ ADP IN _ 19 case _ _ 19 space _ NOUN NN _ 17 nmod _ _ 20 . _ PUNCT . _ 8 punct _ _ 1 Honeywell _ PROPN NNP _ 3 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 contract _ NOUN NN _ 4 nsubj _ _ 4 totaled _ VERB VBD _ 0 root _ _ 5 $ _ SYM $ _ 4 dobj _ _ 6 69.7 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 and _ CONJ CC _ 4 cc _ _ 10 IBM _ PROPN NNP _ 12 dep _ _ 11 's _ PART POS _ 10 case _ _ 12 $ _ SYM $ _ 4 conj _ _ 13 68.8 _ NUM CD _ 14 compound _ _ 14 million _ NUM CD _ 12 nummod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Boeing _ PROPN NNP _ 2 compound _ _ 2 Co. _ PROPN NNP _ 3 nsubj _ _ 3 received _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 10 det _ _ 5 $ _ SYM $ _ 10 amod _ _ 6 46.7 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 Air _ PROPN NNP _ 10 compound _ _ 9 Force _ PROPN NNP _ 10 compound _ _ 10 contract _ NOUN NN _ 3 dobj _ _ 11 for _ SCONJ IN _ 12 mark _ _ 12 developing _ VERB VBG _ 10 acl _ _ 13 cable _ NOUN NN _ 14 compound _ _ 14 systems _ NOUN NNS _ 12 dobj _ _ 15 for _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 Minuteman _ PROPN NNP _ 18 compound _ _ 18 Missile _ PROPN NNP _ 14 nmod _ _ 19 . _ PUNCT . _ 3 punct _ _ 1 General _ PROPN NNP _ 3 compound _ _ 2 Dynamics _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 received _ VERB VBD _ 0 root _ _ 5 a _ DET DT _ 11 det _ _ 6 $ _ SYM $ _ 11 amod _ _ 7 29 _ NUM CD _ 8 compound _ _ 8 million _ NUM CD _ 6 nummod _ _ 9 Air _ PROPN NNP _ 11 compound _ _ 10 Force _ PROPN NNP _ 11 compound _ _ 11 contract _ NOUN NN _ 4 dobj _ _ 12 for _ ADP IN _ 15 case _ _ 13 electronic-warfare _ NOUN NN _ 15 compound _ _ 14 training _ NOUN NN _ 15 compound _ _ 15 sets _ NOUN NNS _ 11 nmod _ _ 16 . _ PUNCT . _ 4 punct _ _ 1 Grumman _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 received _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 9 det _ _ 5 $ _ SYM $ _ 9 amod _ _ 6 18.1 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 Navy _ PROPN NNP _ 9 compound _ _ 9 contract _ NOUN NN _ 3 dobj _ _ 10 to _ PART TO _ 11 mark _ _ 11 upgrade _ VERB VB _ 9 acl _ _ 12 aircraft _ NOUN NN _ 13 compound _ _ 13 electronics _ NOUN NNS _ 11 dobj _ _ 14 . _ PUNCT . _ 3 punct _ _ 1 Avco _ PROPN NNP _ 2 compound _ _ 2 Corp. _ PROPN NNP _ 3 nsubj _ _ 3 received _ VERB VBD _ 0 root _ _ 4 an _ DET DT _ 9 det _ _ 5 $ _ SYM $ _ 9 amod _ _ 6 11.8 _ NUM CD _ 7 compound _ _ 7 million _ NUM CD _ 5 nummod _ _ 8 Army _ PROPN NNP _ 9 compound _ _ 9 contract _ NOUN NN _ 3 dobj _ _ 10 for _ ADP IN _ 12 case _ _ 11 helicopter _ NOUN NN _ 12 compound _ _ 12 engines _ NOUN NNS _ 9 nmod _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 Sharp _ ADJ JJ _ 2 amod _ _ 2 increases _ NOUN NNS _ 9 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 price _ NOUN NN _ 2 nmod _ _ 6 of _ ADP IN _ 8 case _ _ 7 fresh _ ADJ JJ _ 8 amod _ _ 8 produce _ NOUN NN _ 5 nmod _ _ 9 caused _ VERB VBD _ 41 ccomp _ _ 10 Spain _ PROPN NNP _ 15 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 September _ PROPN NNP _ 15 compound _ _ 13 consumer _ NOUN NN _ 15 compound _ _ 14 price _ NOUN NN _ 15 compound _ _ 15 index _ NOUN NN _ 9 dobj _ _ 16 to _ PART TO _ 17 mark _ _ 17 shoot _ VERB VB _ 9 xcomp _ _ 18 up _ ADV RB _ 17 advmod _ _ 19 1.1 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 17 dobj _ _ 21 from _ ADP IN _ 24 case _ _ 22 the _ DET DT _ 24 det _ _ 23 previous _ ADJ JJ _ 24 amod _ _ 24 month _ NOUN NN _ 17 nmod _ _ 25 , _ PUNCT , _ 17 punct _ _ 26 pushing _ VERB VBG _ 17 advcl _ _ 27 the _ DET DT _ 29 det _ _ 28 annual _ ADJ JJ _ 29 amod _ _ 29 rate _ NOUN NN _ 26 dobj _ _ 30 of _ ADP IN _ 31 case _ _ 31 inflation _ NOUN NN _ 29 nmod _ _ 32 to _ ADP TO _ 34 case _ _ 33 6.8 _ NUM CD _ 34 nummod _ _ 34 % _ SYM NN _ 26 nmod _ _ 35 , _ PUNCT , _ 41 punct _ _ 36 the _ DET DT _ 38 det _ _ 37 National _ PROPN NNP _ 38 compound _ _ 38 Institute _ PROPN NNP _ 41 nsubj _ _ 39 of _ ADP IN _ 40 case _ _ 40 Statistics _ PROPN NNP _ 38 nmod _ _ 41 said _ VERB VBD _ 0 root _ _ 42 Friday _ PROPN NNP _ 41 nmod:tmod _ _ 43 . _ PUNCT . _ 41 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 monthly _ ADJ JJ _ 3 amod _ _ 3 increase _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 highest _ ADV RB _ 0 root _ _ 7 recorded _ VERB VBN _ 6 acl _ _ 8 in _ ADP IN _ 12 case _ _ 9 the _ DET DT _ 12 det _ _ 10 past _ ADJ JJ _ 12 amod _ _ 11 four _ NUM CD _ 12 nummod _ _ 12 years _ NOUN NNS _ 7 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 index _ NOUN NN _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 5 nsubj _ _ 5 registered _ VERB VBD _ 2 acl:relcl _ _ 6 156.8 _ NUM CD _ 5 dobj _ _ 7 at _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 end _ NOUN NN _ 5 nmod _ _ 10 of _ ADP IN _ 11 case _ _ 11 September _ PROPN NNP _ 9 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 has _ VERB VBZ _ 0 root _ _ 14 a _ DET DT _ 15 det _ _ 15 base _ NOUN NN _ 13 dobj _ _ 16 of _ ADP IN _ 17 case _ _ 17 100 _ NUM CD _ 15 nmod _ _ 18 set _ NOUN NN _ 15 dep _ _ 19 in _ ADP IN _ 20 case _ _ 20 1983 _ NUM CD _ 18 nmod _ _ 21 and _ CONJ CC _ 13 cc _ _ 22 is _ AUX VBZ _ 25 auxpass _ _ 23 n't _ PART RB _ 25 neg _ _ 24 seasonally _ ADV RB _ 25 advmod _ _ 25 adjusted _ VERB VBN _ 13 conj _ _ 26 . _ PUNCT . _ 13 punct _ _ 1 Prices _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 risen _ VERB VBN _ 0 root _ _ 4 5.9 _ NUM CD _ 5 nummod _ _ 5 % _ SYM NN _ 3 dobj _ _ 6 in _ ADP IN _ 10 case _ _ 7 the _ DET DT _ 10 det _ _ 8 first _ ADJ JJ _ 10 amod _ _ 9 nine _ NUM CD _ 10 nummod _ _ 10 months _ NOUN NNS _ 3 nmod _ _ 11 of _ ADP IN _ 13 case _ _ 12 the _ DET DT _ 13 det _ _ 13 year _ NOUN NN _ 10 nmod _ _ 14 , _ PUNCT , _ 3 punct _ _ 15 outstripping _ VERB VBG _ 3 advcl _ _ 16 both _ CONJ CC _ 22 cc:preconj _ _ 17 the _ DET DT _ 22 det _ _ 18 initial _ ADJ JJ _ 22 amod _ _ 19 3 _ NUM CD _ 20 compound _ _ 20 % _ SYM NN _ 22 amod _ _ 21 inflation _ NOUN NN _ 22 compound _ _ 22 goal _ NOUN NN _ 15 dobj _ _ 23 set _ VERB VBN _ 22 acl _ _ 24 by _ ADP IN _ 26 case _ _ 25 the _ DET DT _ 26 det _ _ 26 government _ NOUN NN _ 23 nmod _ _ 27 of _ ADP IN _ 32 case _ _ 28 Socialist _ PROPN NNP _ 32 compound _ _ 29 Prime _ PROPN NNP _ 32 compound _ _ 30 Minister _ PROPN NNP _ 32 compound _ _ 31 Felipe _ PROPN NNP _ 32 compound _ _ 32 Gonzalez _ PROPN NNP _ 26 nmod _ _ 33 and _ CONJ CC _ 22 cc _ _ 34 the _ DET DT _ 38 det _ _ 35 second _ ADJ JJ _ 38 amod _ _ 36 , _ PUNCT , _ 38 punct _ _ 37 revised _ VERB VBN _ 38 amod _ _ 38 goal _ NOUN NN _ 22 conj _ _ 39 of _ ADP IN _ 41 case _ _ 40 5.8 _ NUM CD _ 41 nummod _ _ 41 % _ SYM NN _ 38 nmod _ _ 42 . _ PUNCT . _ 3 punct _ _ 1 Japan _ PROPN NNP _ 4 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 wholesale _ ADJ JJ _ 4 amod _ _ 4 prices _ NOUN NNS _ 7 nsubj _ _ 5 in _ ADP IN _ 6 case _ _ 6 September _ PROPN NNP _ 7 nmod _ _ 7 rose _ VERB VBD _ 28 ccomp _ _ 8 3.3 _ NUM CD _ 9 nummod _ _ 9 % _ SYM NN _ 7 dobj _ _ 10 from _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 12 det _ _ 12 year _ NOUN NN _ 13 nmod:npmod _ _ 13 earlier _ ADV RBR _ 7 advcl _ _ 14 and _ CONJ CC _ 7 cc _ _ 15 were _ VERB VBD _ 7 conj _ _ 16 up _ ADV RB _ 15 advmod _ _ 17 0.4 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 16 nmod:npmod _ _ 19 from _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 previous _ ADJ JJ _ 22 amod _ _ 22 month _ NOUN NN _ 16 nmod _ _ 23 , _ PUNCT , _ 28 punct _ _ 24 the _ DET DT _ 25 det _ _ 25 Bank _ PROPN NNP _ 28 nsubj _ _ 26 of _ ADP IN _ 27 case _ _ 27 Japan _ PROPN NNP _ 25 nmod _ _ 28 announced _ VERB VBD _ 0 root _ _ 29 Friday _ PROPN NNP _ 28 nmod:tmod _ _ 30 . _ PUNCT . _ 28 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 wholesale _ ADJ JJ _ 4 amod _ _ 3 price _ NOUN NN _ 4 compound _ _ 4 index _ NOUN NN _ 5 nsubj _ _ 5 stood _ VERB VBD _ 0 root _ _ 6 at _ ADP IN _ 7 case _ _ 7 90.1 _ NUM CD _ 5 nmod _ _ 8 , _ PUNCT , _ 5 punct _ _ 9 compared _ VERB VBN _ 13 case _ _ 10 with _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 1985 _ NUM CD _ 13 nummod _ _ 13 base _ NOUN NN _ 5 advcl _ _ 14 of _ ADP IN _ 15 case _ _ 15 100 _ NUM CD _ 13 nmod _ _ 16 . _ PUNCT . _ 5 punct _ _ 1 Plunge _ NOUN NN _ 0 root _ _ 2 ? _ PUNCT . _ 1 punct _ _ 1 What _ DET WDT _ 2 det _ _ 2 plunge _ NOUN NN _ 0 root _ _ 3 ? _ PUNCT . _ 2 punct _ _ 1 Twenty-four _ NUM CD _ 6 nummod _ _ 2 New _ PROPN NNP _ 6 compound _ _ 3 York _ PROPN NNP _ 6 compound _ _ 4 Stock _ PROPN NNP _ 6 compound _ _ 5 Exchange _ PROPN NNP _ 6 compound _ _ 6 issues _ NOUN NNS _ 7 nsubj _ _ 7 hit _ VERB VBD _ 0 root _ _ 8 52-week _ ADJ JJ _ 9 amod _ _ 9 highs _ NOUN NNS _ 7 dobj _ _ 10 during _ ADP IN _ 13 case _ _ 11 Friday _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 trading _ NOUN NN _ 7 nmod _ _ 14 , _ PUNCT , _ 7 punct _ _ 15 despite _ ADP IN _ 23 case _ _ 16 the _ DET DT _ 20 det _ _ 17 Dow _ PROPN NNP _ 20 compound _ _ 18 Jones _ PROPN NNP _ 20 compound _ _ 19 Industrial _ PROPN NNP _ 20 compound _ _ 20 Average _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 190.58-point _ ADJ JJ _ 23 amod _ _ 23 plunge _ NOUN NN _ 7 nmod _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Stocks _ NOUN NNS _ 4 nsubj _ _ 2 of _ ADP IN _ 3 case _ _ 3 utilities _ NOUN NNS _ 1 nmod _ _ 4 held _ VERB VBD _ 0 root _ _ 5 up _ ADP RP _ 4 compound:prt _ _ 6 relatively _ ADV RB _ 7 advmod _ _ 7 better _ ADV RBR _ 4 advmod _ _ 8 than _ ADP IN _ 11 case _ _ 9 other _ ADJ JJ _ 11 amod _ _ 10 market _ NOUN NN _ 11 compound _ _ 11 sectors _ NOUN NNS _ 7 nmod _ _ 12 during _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 sell-off _ NOUN NN _ 4 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 And _ CONJ CC _ 8 cc _ _ 2 among _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 issues _ NOUN NNS _ 8 nmod _ _ 5 hitting _ VERB VBG _ 4 acl _ _ 6 new _ ADJ JJ _ 7 amod _ _ 7 highs _ NOUN NNS _ 5 dobj _ _ 8 were _ VERB VBD _ 0 root _ _ 9 Detroit _ PROPN NNP _ 11 compound _ _ 10 Edison _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 8 nsubj _ _ 12 and _ CONJ CC _ 11 cc _ _ 13 Niagara _ PROPN NNP _ 16 compound _ _ 14 Mohawk _ PROPN NNP _ 16 compound _ _ 15 Power _ PROPN NNP _ 16 compound _ _ 16 Corp _ PROPN NNP _ 11 conj _ _ 17 . _ PUNCT . _ 8 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 major _ ADJ JJ _ 3 amod _ _ 3 issues _ NOUN NNS _ 6 nsubj _ _ 4 hitting _ VERB VBG _ 3 acl _ _ 5 highs _ NOUN NNS _ 4 dobj _ _ 6 included _ VERB VBD _ 0 root _ _ 7 American _ PROPN NNP _ 8 compound _ _ 8 Telephone _ PROPN NNP _ 6 dobj _ _ 9 & _ CONJ CC _ 8 cc _ _ 10 Telegraph _ PROPN NNP _ 11 compound _ _ 11 Co. _ PROPN NNP _ 8 conj _ _ 12 , _ PUNCT , _ 8 punct _ _ 13 Westinghouse _ PROPN NNP _ 15 compound _ _ 14 Electric _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 8 conj _ _ 16 , _ PUNCT , _ 8 punct _ _ 17 Exxon _ PROPN NNP _ 18 compound _ _ 18 Corp. _ PROPN NNP _ 8 conj _ _ 19 and _ CONJ CC _ 8 cc _ _ 20 Cigna _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 8 conj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 the _ DET DT _ 25 det _ _ 24 big _ ADJ JJ _ 25 amod _ _ 25 insurer _ NOUN NN _ 21 appos _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 10 nmod _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 many _ ADJ JJ _ 6 amod _ _ 5 more _ ADJ JJR _ 6 amod _ _ 6 issues _ NOUN NNS _ 10 nsubj _ _ 7 -- _ PUNCT : _ 8 punct _ _ 8 93 _ NUM CD _ 6 dep _ _ 9 -- _ PUNCT : _ 8 punct _ _ 10 hit _ VERB VBP _ 0 root _ _ 11 new _ ADJ JJ _ 12 amod _ _ 12 lows _ NOUN NNS _ 10 dobj _ _ 13 . _ PUNCT . _ 10 punct _ _ 1 These _ PRON DT _ 2 nsubj _ _ 2 included _ VERB VBD _ 0 root _ _ 3 International _ PROPN NNP _ 6 compound _ _ 4 Business _ PROPN NNP _ 6 compound _ _ 5 Machines _ PROPN NNP _ 6 compound _ _ 6 Corp. _ PROPN NNP _ 2 dobj _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 which _ PRON WDT _ 13 nsubj _ _ 9 during _ ADP IN _ 12 case _ _ 10 Friday _ PROPN NNP _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 session _ NOUN NN _ 13 nmod _ _ 13 traded _ VERB VBD _ 6 acl:relcl _ _ 14 below _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 100 _ NUM CD _ 13 nmod _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 for _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 first _ ADJ JJ _ 22 amod _ _ 22 time _ NOUN NN _ 13 nmod _ _ 23 since _ ADP IN _ 24 case _ _ 24 June _ PROPN NNP _ 22 nmod _ _ 25 1984 _ NUM CD _ 24 nummod _ _ 26 . _ PUNCT . _ 2 punct _ _ 1 IBM _ PROPN NNP _ 2 nsubj _ _ 2 closed _ VERB VBD _ 0 root _ _ 3 at _ ADP IN _ 5 case _ _ 4 $ _ SYM $ _ 5 dep _ _ 5 102 _ NUM CD _ 2 nmod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 down _ ADV RB _ 2 advmod _ _ 8 $ _ SYM $ _ 9 dep _ _ 9 5.625 _ NUM CD _ 7 nmod:npmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 Other _ ADJ JJ _ 3 amod _ _ 2 new _ ADJ JJ _ 3 amod _ _ 3 lows _ NOUN NNS _ 4 nsubj _ _ 4 included _ VERB VBD _ 0 root _ _ 5 Navistar _ PROPN NNP _ 7 compound _ _ 6 International _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 4 dobj _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Union _ PROPN NNP _ 11 compound _ _ 10 Carbide _ PROPN NNP _ 11 compound _ _ 11 Corp. _ PROPN NNP _ 7 conj _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 Bethlehem _ PROPN NNP _ 15 compound _ _ 14 Steel _ PROPN NNP _ 15 compound _ _ 15 Corp. _ PROPN NNP _ 7 conj _ _ 16 , _ PUNCT , _ 7 punct _ _ 17 all _ DET DT _ 21 nsubjpass _ _ 18 of _ ADP IN _ 19 case _ _ 19 which _ PRON WDT _ 17 nmod _ _ 20 are _ AUX VBP _ 21 auxpass _ _ 21 included _ VERB VBN _ 7 acl:relcl _ _ 22 in _ ADP IN _ 25 case _ _ 23 the _ DET DT _ 25 det _ _ 24 industrial _ ADJ JJ _ 25 amod _ _ 25 average _ NOUN NN _ 21 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Meanwhile _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 two _ NUM CD _ 6 nummod _ _ 4 initial _ ADJ JJ _ 6 amod _ _ 5 public _ ADJ JJ _ 6 amod _ _ 6 offerings _ NOUN NNS _ 7 nsubj _ _ 7 braved _ VERB VBD _ 0 root _ _ 8 the _ DET DT _ 10 det _ _ 9 cascading _ ADJ JJ _ 10 amod _ _ 10 market _ NOUN NN _ 7 dobj _ _ 11 in _ ADP IN _ 14 case _ _ 12 their _ PRON PRP$ _ 14 nmod:poss _ _ 13 maiden _ ADJ JJ _ 14 amod _ _ 14 day _ NOUN NN _ 7 nmod _ _ 15 of _ ADP IN _ 18 case _ _ 16 national _ ADJ JJ _ 18 amod _ _ 17 over-the-counter _ ADJ JJ _ 18 amod _ _ 18 trading _ NOUN NN _ 14 nmod _ _ 19 Friday _ PROPN NNP _ 7 nmod:tmod _ _ 20 . _ PUNCT . _ 7 punct _ _ 1 Shares _ NOUN NNS _ 13 nsubj _ _ 2 of _ ADP IN _ 5 case _ _ 3 Rally _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 Inc. _ PROPN NNP _ 1 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 an _ DET DT _ 8 det _ _ 8 operator _ NOUN NN _ 5 appos _ _ 9 of _ ADP IN _ 11 case _ _ 10 fast-food _ NOUN NN _ 11 compound _ _ 11 restaurants _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 closed _ VERB VBD _ 0 root _ _ 14 at _ ADP IN _ 16 case _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 17 _ NUM CD _ 13 nmod _ _ 17 each _ DET DT _ 16 nmod:npmod _ _ 18 , _ PUNCT , _ 13 punct _ _ 19 up _ ADV RB _ 13 advmod _ _ 20 from _ ADP IN _ 25 case _ _ 21 its _ PRON PRP$ _ 25 nmod:poss _ _ 22 $ _ SYM $ _ 25 amod _ _ 23 15 _ NUM CD _ 22 compound _ _ 24 offering _ NOUN NN _ 25 compound _ _ 25 price _ NOUN NN _ 19 nmod _ _ 26 and _ CONJ CC _ 13 cc _ _ 27 shares _ NOUN NNS _ 38 nsubj _ _ 28 of _ ADP IN _ 32 case _ _ 29 Employee _ PROPN NNP _ 32 compound _ _ 30 Benefit _ PROPN NNP _ 32 compound _ _ 31 Plans _ PROPN NNP _ 32 compound _ _ 32 Inc. _ PROPN NNP _ 27 nmod _ _ 33 , _ PUNCT , _ 32 punct _ _ 34 a _ DET DT _ 36 det _ _ 35 health-care _ NOUN NN _ 36 compound _ _ 36 consultant _ NOUN NN _ 32 appos _ _ 37 , _ PUNCT , _ 32 punct _ _ 38 closed _ VERB VBD _ 13 conj _ _ 39 at _ ADP IN _ 41 case _ _ 40 $ _ SYM $ _ 41 dep _ _ 41 14.125 _ NUM CD _ 38 nmod _ _ 42 , _ PUNCT , _ 38 punct _ _ 43 up _ ADV RB _ 38 advmod _ _ 44 from _ ADP IN _ 49 case _ _ 45 its _ PRON PRP$ _ 49 nmod:poss _ _ 46 $ _ SYM $ _ 49 amod _ _ 47 12 _ NUM CD _ 46 compound _ _ 48 offering _ NOUN NN _ 49 compound _ _ 49 price _ NOUN NN _ 43 nmod _ _ 50 . _ PUNCT . _ 13 punct _ _ 1 Ford _ PROPN NNP _ 3 compound _ _ 2 Motor _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 6 nsubj _ _ 6 acquired _ VERB VBD _ 4 ccomp _ _ 7 5 _ NUM CD _ 8 nummod _ _ 8 % _ SYM NN _ 6 dobj _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 shares _ NOUN NNS _ 8 nmod _ _ 12 in _ ADP IN _ 14 case _ _ 13 Jaguar _ PROPN NNP _ 14 compound _ _ 14 PLC _ PROPN NNP _ 11 nmod _ _ 15 . _ PUNCT . _ 4 punct _ _ 1 Jaguar _ PROPN NNP _ 16 nsubjpass _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 the _ DET DT _ 6 det _ _ 4 London _ PROPN NNP _ 6 compound _ _ 5 Stock _ PROPN NNP _ 6 compound _ _ 6 Exchange _ PROPN NNP _ 1 conj _ _ 7 and _ CONJ CC _ 1 cc _ _ 8 the _ DET DT _ 10 det _ _ 9 U.S. _ PROPN NNP _ 10 compound _ _ 10 Securities _ PROPN NNP _ 1 conj _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Exchange _ PROPN NNP _ 13 compound _ _ 13 Commission _ PROPN NNP _ 10 conj _ _ 14 are _ AUX VBP _ 16 aux _ _ 15 being _ AUX VBG _ 16 auxpass _ _ 16 notified _ VERB VBN _ 23 ccomp _ _ 17 of _ ADP IN _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 transactions _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 23 punct _ _ 21 the _ DET DT _ 22 det _ _ 22 company _ NOUN NN _ 23 nsubj _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 U.S. _ PROPN NNP _ 5 compound _ _ 3 Federal _ PROPN NNP _ 5 compound _ _ 4 Trade _ PROPN NNP _ 5 compound _ _ 5 Commission _ PROPN NNP _ 6 nsubj _ _ 6 advised _ VERB VBD _ 0 root _ _ 7 Ford _ PROPN NNP _ 6 dobj _ _ 8 last _ ADJ JJ _ 9 amod _ _ 9 week _ NOUN NN _ 6 nmod:tmod _ _ 10 that _ SCONJ IN _ 14 mark _ _ 11 it _ PRON PRP _ 14 nsubj _ _ 12 would _ AUX MD _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 raise _ VERB VB _ 6 ccomp _ _ 15 any _ DET DT _ 16 det _ _ 16 objection _ NOUN NN _ 14 dobj _ _ 17 to _ ADP TO _ 19 case _ _ 18 the _ DET DT _ 19 det _ _ 19 acquisition _ NOUN NN _ 16 nmod _ _ 20 of _ ADP IN _ 22 case _ _ 21 as _ ADV RB _ 22 advmod _ _ 22 much _ ADJ JJ _ 19 nmod _ _ 23 as _ ADP IN _ 25 case _ _ 24 15 _ NUM CD _ 25 nummod _ _ 25 % _ SYM NN _ 22 nmod _ _ 26 of _ ADP IN _ 28 case _ _ 27 Jaguar _ PROPN NNP _ 28 compound _ _ 28 shares _ NOUN NNS _ 22 nmod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 5 det _ _ 2 No. _ NOUN NN _ 5 compound _ _ 3 2 _ NUM CD _ 5 nummod _ _ 4 auto _ NOUN NN _ 5 compound _ _ 5 maker _ NOUN NN _ 6 nsubj _ _ 6 disclosed _ VERB VBD _ 0 root _ _ 7 last _ ADJ JJ _ 8 amod _ _ 8 month _ NOUN NN _ 6 nmod:tmod _ _ 9 that _ SCONJ IN _ 11 mark _ _ 10 it _ PRON PRP _ 11 nsubj _ _ 11 wants _ VERB VBZ _ 6 ccomp _ _ 12 to _ PART TO _ 13 mark _ _ 13 buy _ VERB VB _ 11 xcomp _ _ 14 as _ ADV RB _ 15 advmod _ _ 15 much _ ADJ JJ _ 13 dobj _ _ 16 as _ ADP IN _ 18 case _ _ 17 15 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 nmod _ _ 19 of _ ADP IN _ 23 case _ _ 20 the _ DET DT _ 23 det _ _ 21 British _ ADJ JJ _ 23 amod _ _ 22 luxury-car _ NOUN NN _ 23 compound _ _ 23 maker _ NOUN NN _ 15 nmod _ _ 24 , _ PUNCT , _ 15 punct _ _ 25 the _ DET DT _ 26 det _ _ 26 maximum _ NOUN NN _ 15 appos _ _ 27 allowed _ VERB VBN _ 26 acl _ _ 28 under _ ADP IN _ 33 case _ _ 29 current _ ADJ JJ _ 33 amod _ _ 30 United _ PROPN NNP _ 33 compound _ _ 31 Kingdom _ PROPN NNP _ 33 compound _ _ 32 government _ NOUN NN _ 33 compound _ _ 33 restrictions _ NOUN NNS _ 27 nmod _ _ 34 . _ PUNCT . _ 6 punct _ _ 1 General _ PROPN NNP _ 3 compound _ _ 2 Motors _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 said _ VERB VBD _ 0 root _ _ 5 it _ PRON PRP _ 7 nsubj _ _ 6 had _ AUX VBD _ 7 aux _ _ 7 discussed _ VERB VBN _ 4 ccomp _ _ 8 the _ DET DT _ 9 det _ _ 9 possibility _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 joint _ ADJ JJ _ 13 amod _ _ 13 venture _ NOUN NN _ 9 nmod _ _ 14 with _ ADP IN _ 15 case _ _ 15 Jaguar _ PROPN NNP _ 13 nmod _ _ 16 before _ SCONJ IN _ 18 mark _ _ 17 Ford _ PROPN NNP _ 18 nsubj _ _ 18 began _ VERB VBD _ 7 advcl _ _ 19 buying _ VERB VBG _ 18 xcomp _ _ 20 shares _ NOUN NNS _ 19 dobj _ _ 21 . _ PUNCT . _ 4 punct _ _ 1 GM _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 6 nsubj _ _ 4 still _ ADV RB _ 6 advmod _ _ 5 is _ AUX VBZ _ 6 aux _ _ 6 talking _ VERB VBG _ 2 ccomp _ _ 7 with _ ADP IN _ 8 case _ _ 8 Jaguar _ PROPN NNP _ 6 nmod _ _ 9 about _ SCONJ IN _ 10 mark _ _ 10 acquiring _ VERB VBG _ 6 advcl _ _ 11 a _ DET DT _ 13 det _ _ 12 minority _ NOUN NN _ 13 compound _ _ 13 interest _ NOUN NN _ 10 dobj _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Investors _ NOUN NNS _ 20 nsubj _ _ 2 who _ PRON WP _ 3 nsubj _ _ 3 bought _ VERB VBD _ 1 acl:relcl _ _ 4 stock _ NOUN NN _ 3 dobj _ _ 5 with _ ADP IN _ 7 case _ _ 6 borrowed _ ADJ JJ _ 7 amod _ _ 7 money _ NOUN NN _ 3 nmod _ _ 8 -- _ PUNCT : _ 10 punct _ _ 9 that _ PRON DT _ 10 nsubj _ _ 10 is _ VERB VBZ _ 3 parataxis _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 `` _ PUNCT `` _ 10 punct _ _ 13 on _ ADP IN _ 14 case _ _ 14 margin _ NOUN NN _ 10 nmod _ _ 15 '' _ PUNCT '' _ 10 punct _ _ 16 -- _ PUNCT : _ 10 punct _ _ 17 may _ AUX MD _ 20 aux _ _ 18 be _ VERB VB _ 20 cop _ _ 19 more _ ADV RBR _ 20 advmod _ _ 20 worried _ ADJ JJ _ 0 root _ _ 21 than _ ADP IN _ 22 case _ _ 22 most _ ADJ JJS _ 20 nmod _ _ 23 following _ VERB VBG _ 27 case _ _ 24 Friday _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 market _ NOUN NN _ 27 compound _ _ 27 drop _ NOUN NN _ 20 nmod _ _ 28 . _ PUNCT . _ 20 punct _ _ 1 That _ PRON DT _ 2 nsubj _ _ 2 's _ VERB VBZ _ 0 root _ _ 3 because _ SCONJ IN _ 7 mark _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 brokers _ NOUN NNS _ 7 nsubj _ _ 6 can _ AUX MD _ 7 aux _ _ 7 require _ VERB VB _ 2 advcl _ _ 8 them _ PRON PRP _ 7 dobj _ _ 9 to _ PART TO _ 10 mark _ _ 10 sell _ VERB VB _ 7 xcomp _ _ 11 some _ DET DT _ 12 det _ _ 12 shares _ NOUN NNS _ 10 dobj _ _ 13 or _ CONJ CC _ 10 cc _ _ 14 put _ VERB VB _ 10 conj _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 more _ ADJ JJR _ 17 amod _ _ 17 cash _ NOUN NN _ 14 dobj _ _ 18 to _ PART TO _ 19 mark _ _ 19 enhance _ VERB VB _ 17 acl _ _ 20 the _ DET DT _ 21 det _ _ 21 collateral _ NOUN NN _ 19 dobj _ _ 22 backing _ VERB VBG _ 21 acl _ _ 23 their _ PRON PRP$ _ 24 nmod:poss _ _ 24 loans _ NOUN NNS _ 22 dobj _ _ 25 . _ PUNCT . _ 2 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 October _ PROPN NNP _ 9 nmod _ _ 3 1987 _ NUM CD _ 2 nummod _ _ 4 , _ PUNCT , _ 9 punct _ _ 5 these _ DET DT _ 7 det _ _ 6 margin _ NOUN NN _ 7 compound _ _ 7 calls _ NOUN NNS _ 9 nsubjpass _ _ 8 were _ AUX VBD _ 9 auxpass _ _ 9 thought _ VERB VBN _ 0 root _ _ 10 to _ PART TO _ 12 mark _ _ 11 have _ AUX VB _ 12 aux _ _ 12 contributed _ VERB VBN _ 9 xcomp _ _ 13 to _ ADP TO _ 16 case _ _ 14 the _ DET DT _ 16 det _ _ 15 downward _ ADJ JJ _ 16 amod _ _ 16 spiral _ NOUN NN _ 12 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 the _ DET DT _ 20 det _ _ 19 stock _ NOUN NN _ 20 compound _ _ 20 market _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 9 punct _ _ 1 Typically _ ADV RB _ 6 advmod _ _ 2 , _ PUNCT , _ 6 punct _ _ 3 a _ DET DT _ 5 det _ _ 4 margin _ NOUN NN _ 5 compound _ _ 5 call _ NOUN NN _ 6 nsubj _ _ 6 occurs _ VERB VBZ _ 0 root _ _ 7 when _ ADV WRB _ 13 advmod _ _ 8 the _ DET DT _ 9 det _ _ 9 price _ NOUN NN _ 13 nsubj _ _ 10 of _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 stock _ NOUN NN _ 9 nmod _ _ 13 falls _ VERB VBZ _ 6 advcl _ _ 14 below _ ADP IN _ 16 case _ _ 15 75 _ NUM CD _ 16 nummod _ _ 16 % _ SYM NN _ 13 nmod _ _ 17 of _ ADP IN _ 20 case _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 original _ ADJ JJ _ 20 amod _ _ 20 value _ NOUN NN _ 16 nmod _ _ 21 . _ PUNCT . _ 6 punct _ _ 1 If _ SCONJ IN _ 6 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 investor _ NOUN NN _ 6 nsubj _ _ 4 does _ AUX VBZ _ 6 aux _ _ 5 n't _ PART RB _ 6 neg _ _ 6 put _ VERB VB _ 20 advcl _ _ 7 up _ ADP RP _ 6 compound:prt _ _ 8 the _ DET DT _ 10 det _ _ 9 extra _ ADJ JJ _ 10 amod _ _ 10 cash _ NOUN NN _ 6 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 satisfy _ VERB VB _ 10 acl _ _ 13 the _ DET DT _ 14 det _ _ 14 call _ NOUN NN _ 12 dobj _ _ 15 , _ PUNCT , _ 20 punct _ _ 16 the _ DET DT _ 18 det _ _ 17 brokerage _ NOUN NN _ 18 compound _ _ 18 firm _ NOUN NN _ 20 nsubj _ _ 19 may _ AUX MD _ 20 aux _ _ 20 begin _ VERB VB _ 0 root _ _ 21 liquidating _ VERB VBG _ 20 xcomp _ _ 22 the _ DET DT _ 23 det _ _ 23 securities _ NOUN NNS _ 21 dobj _ _ 24 . _ PUNCT . _ 20 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 some _ DET DT _ 5 det _ _ 3 big _ ADJ JJ _ 5 amod _ _ 4 brokerage _ NOUN NN _ 5 compound _ _ 5 firms _ NOUN NNS _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 they _ PRON PRP _ 10 nsubj _ _ 8 do _ AUX VBP _ 10 aux _ _ 9 n't _ PART RB _ 10 neg _ _ 10 expect _ VERB VB _ 6 ccomp _ _ 11 major _ ADJ JJ _ 12 amod _ _ 12 problems _ NOUN NNS _ 10 dobj _ _ 13 as _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 result _ NOUN NN _ 12 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 margin _ NOUN NN _ 18 compound _ _ 18 calls _ NOUN NNS _ 15 nmod _ _ 19 . _ PUNCT . _ 6 punct _ _ 1 Margin _ NOUN NN _ 2 compound _ _ 2 calls _ NOUN NNS _ 8 nsubj _ _ 3 since _ ADP IN _ 4 case _ _ 4 Friday _ PROPN NNP _ 8 nmod _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 have _ AUX VBP _ 8 aux _ _ 7 been _ VERB VBN _ 8 cop _ _ 8 higher _ ADJ JJR _ 23 ccomp _ _ 9 than _ ADP IN _ 10 case _ _ 10 usual _ ADJ JJ _ 8 nmod _ _ 11 , _ PUNCT , _ 8 punct _ _ 12 but _ CONJ CC _ 8 cc _ _ 13 reasonable _ ADJ JJ _ 8 conj _ _ 14 , _ PUNCT , _ 23 punct _ _ 15 '' _ PUNCT '' _ 23 punct _ _ 16 a _ DET DT _ 17 det _ _ 17 spokesman _ NOUN NN _ 23 nsubj _ _ 18 for _ ADP IN _ 22 case _ _ 19 Shearson _ PROPN NNP _ 22 compound _ _ 20 Lehman _ PROPN NNP _ 22 compound _ _ 21 Hutton _ PROPN NNP _ 22 compound _ _ 22 Inc. _ PROPN NNP _ 17 nmod _ _ 23 said _ VERB VBD _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Merrill _ PROPN NNP _ 2 compound _ _ 2 Lynch _ PROPN NNP _ 9 nsubj _ _ 3 & _ CONJ CC _ 2 cc _ _ 4 Co. _ PROPN NNP _ 5 compound _ _ 5 officials _ NOUN NNS _ 2 conj _ _ 6 `` _ PUNCT `` _ 9 punct _ _ 7 do _ AUX VBP _ 9 aux _ _ 8 n't _ PART RB _ 9 neg _ _ 9 expect _ VERB VB _ 36 ccomp _ _ 10 -LCB- _ PUNCT -LRB- _ 19 punct _ _ 11 margin _ NOUN NN _ 12 compound _ _ 12 calls _ NOUN NNS _ 9 dobj _ _ 13 -RCB- _ PUNCT -RRB- _ 19 punct _ _ 14 to _ PART TO _ 19 mark _ _ 15 be _ VERB VB _ 19 cop _ _ 16 as _ ADV RB _ 17 advmod _ _ 17 big _ ADJ JJ _ 19 amod _ _ 18 a _ DET DT _ 19 det _ _ 19 factor _ NOUN NN _ 9 xcomp _ _ 20 as _ ADP IN _ 19 advmod _ _ 21 in _ ADP IN _ 22 case _ _ 22 1987 _ NUM CD _ 20 nmod _ _ 23 '' _ PUNCT '' _ 9 punct _ _ 24 because _ SCONJ IN _ 29 mark _ _ 25 fewer _ ADJ JJR _ 27 amod _ _ 26 individual _ ADJ JJ _ 27 amod _ _ 27 investors _ NOUN NNS _ 29 nsubj _ _ 28 are _ AUX VBP _ 29 aux _ _ 29 buying _ VERB VBG _ 9 advcl _ _ 30 stock _ NOUN NN _ 29 dobj _ _ 31 on _ ADP IN _ 32 case _ _ 32 margin _ NOUN NN _ 29 nmod _ _ 33 , _ PUNCT , _ 36 punct _ _ 34 a _ DET DT _ 35 det _ _ 35 spokesman _ NOUN NN _ 36 nsubj _ _ 36 said _ VERB VBD _ 0 root _ _ 37 . _ PUNCT . _ 36 punct _ _ 1 Hugo _ PROPN NNP _ 2 compound _ _ 2 Quackenbush _ PROPN NNP _ 19 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 senior _ ADJ JJ _ 6 amod _ _ 5 vice _ NOUN NN _ 6 compound _ _ 6 president _ NOUN NN _ 2 appos _ _ 7 at _ ADP IN _ 10 case _ _ 8 Charles _ PROPN NNP _ 10 compound _ _ 9 Schwab _ PROPN NNP _ 10 compound _ _ 10 Corp. _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 the _ DET DT _ 17 det _ _ 13 San _ PROPN NNP _ 14 amod _ _ 14 Francisco-based _ ADJ JJ _ 17 amod _ _ 15 discount _ ADJ JJ _ 17 amod _ _ 16 brokerage _ NOUN NN _ 17 compound _ _ 17 firm _ NOUN NN _ 10 appos _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 he _ PRON PRP _ 23 nsubj _ _ 21 did _ AUX VBD _ 23 aux _ _ 22 n't _ PART RB _ 23 neg _ _ 23 expect _ VERB VB _ 19 ccomp _ _ 24 any _ DET DT _ 26 det _ _ 25 immediate _ ADJ JJ _ 26 amod _ _ 26 problems _ NOUN NNS _ 23 dobj _ _ 27 with _ ADP IN _ 29 case _ _ 28 margin _ NOUN NN _ 29 compound _ _ 29 calls _ NOUN NNS _ 26 nmod _ _ 30 for _ ADP IN _ 32 case _ _ 31 Schwab _ PROPN NNP _ 32 compound _ _ 32 customers _ NOUN NNS _ 26 nmod _ _ 33 . _ PUNCT . _ 19 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 Schwab _ PROPN NNP _ 5 nsubj _ _ 4 had _ AUX VBD _ 5 aux _ _ 5 increased _ VERB VBN _ 2 dep _ _ 6 margin _ NOUN NN _ 7 compound _ _ 7 requirements _ NOUN NNS _ 5 dobj _ _ 8 `` _ PUNCT `` _ 5 punct _ _ 9 so _ ADP IN _ 5 dep _ _ 10 customers _ NOUN NNS _ 11 nsubj _ _ 11 have _ VERB VBP _ 5 parataxis _ _ 12 more _ ADJ JJR _ 11 dobj _ _ 13 of _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 cushion _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 2 punct _ _ 17 '' _ PUNCT '' _ 2 punct _ _ 1 He _ PRON PRP _ 2 nsubj _ _ 2 added _ VERB VBD _ 0 root _ _ 3 : _ PUNCT : _ 2 punct _ _ 4 `` _ PUNCT `` _ 2 punct _ _ 5 We _ PRON PRP _ 6 nsubj _ _ 6 learned _ VERB VBD _ 2 ccomp _ _ 7 a _ DET DT _ 8 det _ _ 8 lesson _ NOUN NN _ 6 dobj _ _ 9 in _ ADP IN _ 10 case _ _ 10 1987 _ NUM CD _ 6 nmod _ _ 11 about _ ADP IN _ 12 case _ _ 12 volatility _ NOUN NN _ 6 nmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Avis _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 11 nsubj _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 following _ VERB VBG _ 11 advcl _ _ 5 rival _ NOUN NN _ 7 compound _ _ 6 Hertz _ PROPN NNP _ 7 compound _ _ 7 Corp. _ PROPN NNP _ 9 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 lead _ NOUN NN _ 4 dobj _ _ 10 , _ PUNCT , _ 11 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 it _ PRON PRP _ 14 nsubj _ _ 13 is _ AUX VBZ _ 14 aux _ _ 14 backing _ VERB VBG _ 11 ccomp _ _ 15 out _ ADP IN _ 14 advmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 frequent-flier _ ADJ JJ _ 18 amod _ _ 18 programs _ NOUN NNS _ 15 nmod _ _ 19 with _ ADP IN _ 21 case _ _ 20 three _ NUM CD _ 21 nummod _ _ 21 airlines _ NOUN NNS _ 18 nmod _ _ 22 . _ PUNCT . _ 11 punct _ _ 1 The _ DET DT _ 8 det _ _ 2 Garden _ PROPN NNP _ 8 dep _ _ 3 City _ PROPN NNP _ 2 compound _ _ 4 , _ PUNCT , _ 2 punct _ _ 5 N.Y. _ PROPN NNP _ 2 dep _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 car-rental _ ADJ JJ _ 8 amod _ _ 8 company _ NOUN NN _ 9 nsubj _ _ 9 said _ VERB VBD _ 0 root _ _ 10 it _ PRON PRP _ 13 nsubj _ _ 11 wo _ AUX MD _ 13 aux _ _ 12 n't _ PART RB _ 13 neg _ _ 13 renew _ VERB VB _ 9 ccomp _ _ 14 contracts _ NOUN NNS _ 13 dobj _ _ 15 with _ ADP IN _ 21 case _ _ 16 NWA _ PROPN NNP _ 17 compound _ _ 17 Inc. _ PROPN NNP _ 21 nmod:poss _ _ 18 's _ PART POS _ 17 case _ _ 19 Northwest _ PROPN NNP _ 21 compound _ _ 20 Airlines _ PROPN NNP _ 21 compound _ _ 21 unit _ NOUN NN _ 14 nmod _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 Pan _ PROPN NNP _ 25 compound _ _ 24 Am _ PROPN NNP _ 25 compound _ _ 25 Corp. _ PROPN NNP _ 31 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 Pan _ PROPN NNP _ 31 compound _ _ 28 American _ PROPN NNP _ 31 compound _ _ 29 World _ PROPN NNP _ 31 compound _ _ 30 Airways _ PROPN NNP _ 31 compound _ _ 31 unit _ NOUN NN _ 21 conj _ _ 32 and _ CONJ CC _ 21 cc _ _ 33 Midway _ PROPN NNP _ 34 compound _ _ 34 Airlines _ PROPN NNP _ 21 conj _ _ 35 at _ ADP IN _ 37 case _ _ 36 the _ DET DT _ 37 det _ _ 37 end _ NOUN NN _ 13 nmod _ _ 38 of _ ADP IN _ 40 case _ _ 39 this _ DET DT _ 40 det _ _ 40 year _ NOUN NN _ 37 nmod _ _ 41 . _ PUNCT . _ 9 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 remains _ VERB VBZ _ 0 root _ _ 4 involved _ ADJ JJ _ 3 xcomp _ _ 5 in _ ADP IN _ 6 case _ _ 6 programs _ NOUN NNS _ 4 nmod _ _ 7 with _ ADP IN _ 13 case _ _ 8 AMR _ PROPN NNP _ 9 compound _ _ 9 Corp. _ PROPN NNP _ 13 nmod:poss _ _ 10 's _ PART POS _ 9 case _ _ 11 American _ PROPN NNP _ 13 compound _ _ 12 Airlines _ PROPN NNP _ 13 compound _ _ 13 unit _ NOUN NN _ 6 nmod _ _ 14 and _ CONJ CC _ 13 cc _ _ 15 Delta _ PROPN NNP _ 17 compound _ _ 16 Air _ PROPN NNP _ 17 compound _ _ 17 Lines _ PROPN NNP _ 13 conj _ _ 18 . _ PUNCT . _ 3 punct _ _ 1 Industry _ NOUN NN _ 2 compound _ _ 2 estimates _ NOUN NNS _ 3 nsubj _ _ 3 put _ VERB VBD _ 0 root _ _ 4 Avis _ PROPN NNP _ 7 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 annual _ ADJ JJ _ 7 amod _ _ 7 cost _ NOUN NN _ 3 dobj _ _ 8 of _ ADP IN _ 11 case _ _ 9 all _ DET DT _ 11 det _ _ 10 five _ NUM CD _ 11 nummod _ _ 11 programs _ NOUN NNS _ 7 nmod _ _ 12 at _ ADP IN _ 14 case _ _ 13 between _ ADP IN _ 14 advmod _ _ 14 $ _ SYM $ _ 3 nmod _ _ 15 8 _ NUM CD _ 16 compound _ _ 16 million _ NUM CD _ 14 nummod _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 $ _ SYM $ _ 14 conj _ _ 19 14 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 spokesman _ NOUN NN _ 7 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Avis _ PROPN NNP _ 2 nmod _ _ 5 would _ AUX MD _ 7 aux _ _ 6 n't _ PART RB _ 7 neg _ _ 7 specify _ VERB VB _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 costs _ NOUN NNS _ 7 dobj _ _ 10 but _ CONJ CC _ 7 cc _ _ 11 said _ VERB VBD _ 7 conj _ _ 12 the _ DET DT _ 14 det _ _ 13 three _ NUM CD _ 14 nummod _ _ 14 airlines _ NOUN NNS _ 17 nsubj _ _ 15 being _ AUX VBG _ 16 auxpass _ _ 16 dropped _ VERB VBN _ 14 acl _ _ 17 account _ NOUN NN _ 11 ccomp _ _ 18 for _ ADP IN _ 21 case _ _ 19 `` _ PUNCT `` _ 21 punct _ _ 20 far _ ADV RB _ 21 advmod _ _ 21 less _ ADJ JJR _ 17 nmod _ _ 22 than _ ADP IN _ 23 case _ _ 23 half _ DET DT _ 21 nmod _ _ 24 '' _ PUNCT '' _ 23 punct _ _ 25 of _ ADP IN _ 27 case _ _ 26 the _ DET DT _ 27 det _ _ 27 total _ NOUN NN _ 23 nmod _ _ 28 . _ PUNCT . _ 7 punct _ _ 1 Budget _ PROPN NNP _ 5 compound _ _ 2 Rent _ PROPN NNP _ 5 compound _ _ 3 a _ DET DT _ 5 det _ _ 4 Car _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 21 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 of _ ADP IN _ 8 case _ _ 8 Chicago _ PROPN NNP _ 5 nmod _ _ 9 , _ PUNCT , _ 5 punct _ _ 10 and _ CONJ CC _ 5 cc _ _ 11 National _ PROPN NNP _ 15 compound _ _ 12 Car _ PROPN NNP _ 15 compound _ _ 13 Rental _ PROPN NNP _ 15 compound _ _ 14 Systems _ PROPN NNP _ 15 compound _ _ 15 Inc. _ PROPN NNP _ 5 conj _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 of _ ADP IN _ 18 case _ _ 18 Minneapolis _ PROPN NNP _ 15 nmod _ _ 19 , _ PUNCT , _ 5 punct _ _ 20 both _ DET DT _ 21 dep _ _ 21 said _ VERB VBD _ 0 root _ _ 22 they _ PRON PRP _ 23 nsubj _ _ 23 had _ VERB VBD _ 21 ccomp _ _ 24 no _ DET DT _ 25 neg _ _ 25 plans _ NOUN NNS _ 23 dobj _ _ 26 to _ PART TO _ 27 mark _ _ 27 follow _ VERB VB _ 25 acl _ _ 28 suit _ NOUN NN _ 27 dobj _ _ 29 . _ PUNCT . _ 21 punct _ _ 1 In _ ADP IN _ 2 case _ _ 2 fact _ NOUN NN _ 5 nmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 Budget _ PROPN NNP _ 5 nsubj _ _ 5 indicated _ VERB VBD _ 0 root _ _ 6 it _ PRON PRP _ 7 nsubj _ _ 7 saw _ VERB VBD _ 5 ccomp _ _ 8 some _ DET DT _ 9 det _ _ 9 benefit _ NOUN NN _ 7 dobj _ _ 10 to _ ADP TO _ 11 mark _ _ 11 staying _ VERB VBG _ 9 acl _ _ 12 involved _ ADJ JJ _ 11 xcomp _ _ 13 in _ ADP IN _ 15 case _ _ 14 these _ DET DT _ 15 det _ _ 15 programs _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 in _ ADP IN _ 18 case _ _ 18 which _ PRON WDT _ 20 nmod _ _ 19 renters _ NOUN NNS _ 20 nsubj _ _ 20 earn _ VERB VBP _ 15 acl:relcl _ _ 21 frequent-flier _ ADJ JJ _ 22 amod _ _ 22 miles _ NOUN NNS _ 20 dobj _ _ 23 and _ CONJ CC _ 20 cc _ _ 24 fliers _ NOUN NNS _ 26 nsubj _ _ 25 can _ AUX MD _ 26 aux _ _ 26 get _ VERB VB _ 20 conj _ _ 27 car-rental _ ADJ JJ _ 28 amod _ _ 28 discounts _ NOUN NNS _ 26 dobj _ _ 29 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 21 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 can _ AUX MD _ 5 aux _ _ 4 not _ PART RB _ 5 neg _ _ 5 see _ VERB VB _ 21 ccomp _ _ 6 how _ ADV WRB _ 15 advmod _ _ 7 this _ DET DT _ 8 det _ _ 8 news _ NOUN NN _ 15 nsubj _ _ 9 by _ ADP IN _ 10 case _ _ 10 Hertz _ PROPN NNP _ 8 nmod _ _ 11 and _ CONJ CC _ 10 cc _ _ 12 Avis _ PROPN NNP _ 10 conj _ _ 13 can _ AUX MD _ 15 aux _ _ 14 not _ PART RB _ 15 neg _ _ 15 benefit _ VERB VB _ 5 ccomp _ _ 16 Budget _ PROPN NNP _ 18 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 programs _ NOUN NNS _ 15 dobj _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 Bob _ PROPN NNP _ 23 compound _ _ 23 Wilson _ PROPN NNP _ 21 nsubj _ _ 24 , _ PUNCT , _ 23 punct _ _ 25 Budget _ PROPN NNP _ 28 nmod:poss _ _ 26 's _ PART POS _ 25 case _ _ 27 vice _ NOUN NN _ 28 compound _ _ 28 president _ NOUN NN _ 23 appos _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 marketing _ NOUN NN _ 31 compound _ _ 31 planning _ NOUN NN _ 28 appos _ _ 32 . _ PUNCT . _ 21 punct _ _ 1 Northwest _ PROPN NNP _ 5 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 Midway _ PROPN NNP _ 1 conj _ _ 4 are _ VERB VBP _ 5 cop _ _ 5 two _ NUM CD _ 0 root _ _ 6 of _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 five _ NUM CD _ 9 nummod _ _ 9 airlines _ NOUN NNS _ 5 nmod _ _ 10 with _ ADP IN _ 11 case _ _ 11 which _ PRON WDT _ 13 nmod _ _ 12 Budget _ PROPN NNP _ 13 nsubj _ _ 13 has _ VERB VBZ _ 9 acl:relcl _ _ 14 agreements _ NOUN NNS _ 13 dobj _ _ 15 . _ PUNCT . _ 5 punct _ _ 1 National _ PROPN NNP _ 3 nsubj _ _ 2 also _ ADV RB _ 3 advmod _ _ 3 participates _ VERB VBZ _ 0 root _ _ 4 in _ ADP IN _ 8 case _ _ 5 the _ DET DT _ 8 det _ _ 6 Northwest _ PROPN NNP _ 8 compound _ _ 7 frequent-flier _ ADJ JJ _ 8 amod _ _ 8 program _ NOUN NN _ 3 nmod _ _ 9 along _ ADP IN _ 3 advmod _ _ 10 with _ ADP IN _ 13 case _ _ 11 four _ NUM CD _ 13 nummod _ _ 12 other _ ADJ JJ _ 13 amod _ _ 13 airlines _ NOUN NNS _ 9 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 including _ VERB VBG _ 16 case _ _ 16 Delta _ PROPN NNP _ 13 nmod _ _ 17 and _ CONJ CC _ 16 cc _ _ 18 USAir _ PROPN NNP _ 20 compound _ _ 19 Group _ PROPN NNP _ 20 compound _ _ 20 Inc. _ PROPN NNP _ 23 nmod:poss _ _ 21 's _ PART POS _ 20 case _ _ 22 USAir _ PROPN NNP _ 23 compound _ _ 23 unit _ NOUN NN _ 16 conj _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 month _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 13 advmod _ _ 4 , _ PUNCT , _ 13 punct _ _ 5 Hertz _ PROPN NNP _ 13 nsubj _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 of _ ADP IN _ 9 case _ _ 8 Park _ PROPN NNP _ 9 compound _ _ 9 Ridge _ PROPN NNP _ 5 nmod _ _ 10 , _ PUNCT , _ 9 punct _ _ 11 N.J. _ PROPN NNP _ 9 appos _ _ 12 , _ PUNCT , _ 5 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 that _ SCONJ IN _ 17 mark _ _ 15 it _ PRON PRP _ 17 nsubj _ _ 16 would _ AUX MD _ 17 aux _ _ 17 drop _ VERB VB _ 13 ccomp _ _ 18 its _ PRON PRP$ _ 20 nmod:poss _ _ 19 marketing _ NOUN NN _ 20 compound _ _ 20 agreements _ NOUN NNS _ 17 dobj _ _ 21 at _ ADP IN _ 23 case _ _ 22 year _ NOUN NN _ 23 compound _ _ 23 end _ NOUN NN _ 17 nmod _ _ 24 with _ ADP IN _ 25 case _ _ 25 Delta _ PROPN NNP _ 17 nmod _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 America _ PROPN NNP _ 28 compound _ _ 28 West _ PROPN NNP _ 25 conj _ _ 29 and _ CONJ CC _ 25 cc _ _ 30 Texas _ PROPN NNP _ 32 compound _ _ 31 Air _ PROPN NNP _ 32 compound _ _ 32 Corp. _ PROPN NNP _ 35 nmod:poss _ _ 33 's _ PART POS _ 32 case _ _ 34 Continental _ PROPN NNP _ 35 compound _ _ 35 Airlines _ PROPN NNP _ 25 conj _ _ 36 and _ CONJ CC _ 35 cc _ _ 37 Eastern _ PROPN NNP _ 38 compound _ _ 38 Airlines _ PROPN NNP _ 35 conj _ _ 39 , _ PUNCT , _ 17 punct _ _ 40 and _ CONJ CC _ 17 cc _ _ 41 that _ SCONJ IN _ 57 mark _ _ 42 pacts _ NOUN NNS _ 57 nsubjpass _ _ 43 with _ ADP IN _ 45 case _ _ 44 American _ PROPN NNP _ 45 compound _ _ 45 Airlines _ PROPN NNP _ 42 nmod _ _ 46 , _ PUNCT , _ 45 punct _ _ 47 UAL _ PROPN NNP _ 48 compound _ _ 48 Inc _ PROPN NNP _ 51 nmod:poss _ _ 49 's _ PART POS _ 48 case _ _ 50 United _ PROPN NNP _ 51 compound _ _ 51 Airlines _ PROPN NNP _ 45 conj _ _ 52 and _ CONJ CC _ 45 cc _ _ 53 USAir _ PROPN NNP _ 45 conj _ _ 54 also _ ADV RB _ 57 advmod _ _ 55 would _ AUX MD _ 57 aux _ _ 56 be _ AUX VB _ 57 auxpass _ _ 57 ended _ VERB VBN _ 17 conj _ _ 58 ... _ PUNCT : _ 57 punct _ _ 59 sometime _ ADV RB _ 57 advmod _ _ 60 after _ ADP IN _ 61 case _ _ 61 Dec. _ PROPN NNP _ 59 nmod _ _ 62 31 _ NUM CD _ 61 nummod _ _ 63 . _ PUNCT . _ 13 punct _ _ 1 At _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 time _ NOUN NN _ 6 nmod _ _ 4 , _ PUNCT , _ 6 punct _ _ 5 Hertz _ PROPN NNP _ 6 nsubj _ _ 6 said _ VERB VBD _ 0 root _ _ 7 its _ PRON PRP$ _ 9 nmod:poss _ _ 8 annual _ ADJ JJ _ 9 amod _ _ 9 fees _ NOUN NNS _ 13 nsubj _ _ 10 to _ ADP TO _ 12 case _ _ 11 those _ DET DT _ 12 det _ _ 12 airlines _ NOUN NNS _ 9 nmod _ _ 13 amounted _ VERB VBD _ 6 ccomp _ _ 14 to _ ADP TO _ 15 case _ _ 15 $ _ SYM $ _ 13 nmod _ _ 16 20 _ NUM CD _ 17 compound _ _ 17 million _ NUM CD _ 15 nummod _ _ 18 and _ CONJ CC _ 13 cc _ _ 19 that _ SCONJ IN _ 25 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 value _ NOUN NN _ 25 nsubj _ _ 22 of _ ADP IN _ 24 case _ _ 23 redeemed _ VERB VBN _ 24 amod _ _ 24 awards _ NOUN NNS _ 21 nmod _ _ 25 topped _ VERB VBD _ 13 conj _ _ 26 $ _ SYM $ _ 25 dobj _ _ 27 15 _ NUM CD _ 28 compound _ _ 28 million _ NUM CD _ 26 nummod _ _ 29 . _ PUNCT . _ 6 punct _ _ 1 Analysts _ NOUN NNS _ 7 nsubj _ _ 2 and _ CONJ CC _ 1 cc _ _ 3 competitors _ NOUN NNS _ 1 conj _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 doubt _ VERB VBP _ 0 root _ _ 8 the _ DET DT _ 9 det _ _ 9 numbers _ NOUN NNS _ 12 nsubj _ _ 10 were _ VERB VBD _ 12 cop _ _ 11 that _ ADV RB _ 12 advmod _ _ 12 high _ ADJ JJ _ 7 ccomp _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 Budget _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 its _ PRON PRP$ _ 5 nmod:poss _ _ 4 frequent-flier _ ADJ JJ _ 5 amod _ _ 5 costs _ NOUN NNS _ 13 nsubj _ _ 6 are _ VERB VBP _ 13 cop _ _ 7 `` _ PUNCT `` _ 13 punct _ _ 8 substantially _ ADV RB _ 13 advmod _ _ 9 below _ ADP IN _ 13 case _ _ 10 '' _ PUNCT '' _ 13 punct _ _ 11 Avis _ PROPN NNP _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 level _ NOUN NN _ 2 ccomp _ _ 14 . _ PUNCT . _ 2 punct _ _ 1 Robert _ PROPN NNP _ 3 compound _ _ 2 D. _ PROPN NNP _ 3 compound _ _ 3 Cardillo _ PROPN NNP _ 11 nsubj _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 Avis _ PROPN NNP _ 7 compound _ _ 6 vice _ NOUN NN _ 7 compound _ _ 7 president _ NOUN NN _ 3 appos _ _ 8 of _ ADP IN _ 9 case _ _ 9 marketing _ NOUN NN _ 7 nmod _ _ 10 , _ PUNCT , _ 3 punct _ _ 11 said _ VERB VBD _ 0 root _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 `` _ PUNCT `` _ 26 punct _ _ 14 The _ DET DT _ 15 det _ _ 15 proliferation _ NOUN NN _ 26 nsubj _ _ 16 and _ CONJ CC _ 15 cc _ _ 17 costs _ NOUN NNS _ 15 conj _ _ 18 attached _ VERB VBN _ 15 acl _ _ 19 to _ ADP TO _ 22 case _ _ 20 -LCB- _ PUNCT -LRB- _ 22 punct _ _ 21 frequent-flier _ ADJ JJ _ 22 amod _ _ 22 programs _ NOUN NNS _ 18 advcl _ _ 23 -RCB- _ PUNCT -RRB- _ 22 punct _ _ 24 have _ AUX VBP _ 26 aux _ _ 25 significantly _ ADV RB _ 26 advmod _ _ 26 diminished _ VERB VBN _ 11 ccomp _ _ 27 their _ PRON PRP$ _ 28 nmod:poss _ _ 28 value _ NOUN NN _ 26 dobj _ _ 29 . _ PUNCT . _ 11 punct _ _ 30 '' _ PUNCT '' _ 11 punct _ _ 1 This _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 been _ VERB VBN _ 5 cop _ _ 5 difficult _ ADJ JJ _ 12 ccomp _ _ 6 for _ ADP IN _ 8 case _ _ 7 both _ DET DT _ 8 cc:preconj _ _ 8 Hertz _ PROPN NNP _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 Avis _ PROPN NNP _ 8 conj _ _ 11 , _ PUNCT , _ 12 punct _ _ 12 said _ VERB VBD _ 0 root _ _ 13 Charles _ PROPN NNP _ 14 compound _ _ 14 Finnie _ PROPN NNP _ 12 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 car-rental _ ADJ JJ _ 18 amod _ _ 17 industry _ NOUN NN _ 18 compound _ _ 18 analyst _ NOUN NN _ 14 appos _ _ 19 at _ ADP IN _ 22 case _ _ 20 Alex _ PROPN NNP _ 22 compound _ _ 21 . _ PUNCT . _ 22 punct _ _ 22 Brown _ PROPN NNP _ 18 nmod _ _ 23 & _ CONJ CC _ 22 cc _ _ 24 Sons _ PROPN NNP _ 22 conj _ _ 25 . _ PUNCT . _ 12 punct _ _ 1 `` _ PUNCT `` _ 25 punct _ _ 2 They _ PRON PRP _ 5 nsubj _ _ 3 've _ AUX VBP _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 looking _ VERB VBG _ 25 ccomp _ _ 6 to _ PART TO _ 7 mark _ _ 7 get _ VERB VB _ 5 xcomp _ _ 8 their _ PRON PRP$ _ 9 nmod:poss _ _ 9 costs _ NOUN NNS _ 7 dobj _ _ 10 down _ ADV RB _ 7 advmod _ _ 11 , _ PUNCT , _ 5 punct _ _ 12 and _ CONJ CC _ 5 cc _ _ 13 this _ PRON DT _ 18 nsubj _ _ 14 is _ VERB VBZ _ 18 cop _ _ 15 a _ DET DT _ 18 det _ _ 16 fairly _ ADV RB _ 17 advmod _ _ 17 sensible _ ADJ JJ _ 18 amod _ _ 18 way _ NOUN NN _ 5 conj _ _ 19 to _ PART TO _ 20 mark _ _ 20 do _ VERB VB _ 18 acl _ _ 21 it _ PRON PRP _ 20 dobj _ _ 22 , _ PUNCT , _ 25 punct _ _ 23 '' _ PUNCT '' _ 25 punct _ _ 24 he _ PRON PRP _ 25 nsubj _ _ 25 said _ VERB VBD _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 CBS _ PROPN NNP _ 2 compound _ _ 2 Inc. _ PROPN NNP _ 4 nsubj _ _ 3 is _ AUX VBZ _ 4 aux _ _ 4 cutting _ VERB VBG _ 0 root _ _ 5 `` _ PUNCT `` _ 4 punct _ _ 6 The _ PROPN NNP _ 9 compound _ _ 7 Pat _ PROPN NNP _ 9 compound _ _ 8 Sajak _ PROPN NNP _ 9 compound _ _ 9 Show _ PROPN NNP _ 4 dobj _ _ 10 '' _ PUNCT '' _ 4 punct _ _ 11 down _ ADV RB _ 4 advmod _ _ 12 to _ ADP TO _ 14 case _ _ 13 one _ NUM CD _ 14 nummod _ _ 14 hour _ NOUN NN _ 4 nmod _ _ 15 from _ ADP IN _ 19 case _ _ 16 its _ PRON PRP$ _ 19 nmod:poss _ _ 17 current _ ADJ JJ _ 19 amod _ _ 18 90 _ NUM CD _ 19 nummod _ _ 19 minutes _ NOUN NNS _ 4 nmod _ _ 20 . _ PUNCT . _ 4 punct _ _ 1 CBS _ PROPN NNP _ 2 nsubj _ _ 2 insisted _ VERB VBD _ 0 root _ _ 3 the _ DET DT _ 4 det _ _ 4 move _ NOUN NN _ 8 nsubj _ _ 5 was _ VERB VBD _ 8 cop _ _ 6 n't _ PART RB _ 8 neg _ _ 7 a _ DET DT _ 8 det _ _ 8 setback _ NOUN NN _ 2 ccomp _ _ 9 for _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 program _ NOUN NN _ 8 nmod _ _ 12 , _ PUNCT , _ 11 punct _ _ 13 which _ PRON WDT _ 19 nsubj _ _ 14 is _ VERB VBZ _ 19 cop _ _ 15 the _ DET DT _ 16 det _ _ 16 network _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 first _ ADJ JJ _ 19 amod _ _ 19 entry _ NOUN NN _ 11 acl:relcl _ _ 20 into _ ADP IN _ 25 case _ _ 21 the _ DET DT _ 25 det _ _ 22 late-night _ ADJ JJ _ 25 amod _ _ 23 talk _ NOUN NN _ 25 compound _ _ 24 show _ NOUN NN _ 25 compound _ _ 25 format _ NOUN NN _ 19 nmod _ _ 26 since _ ADP IN _ 27 case _ _ 27 1972 _ NUM CD _ 19 nmod _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 I _ PRON PRP _ 3 nsubj _ _ 3 have _ VERB VBP _ 27 ccomp _ _ 4 every _ DET DT _ 5 det _ _ 5 intention _ NOUN NN _ 3 dobj _ _ 6 of _ SCONJ IN _ 7 mark _ _ 7 making _ VERB VBG _ 5 acl _ _ 8 this _ PRON DT _ 12 nsubj _ _ 9 the _ DET DT _ 12 det _ _ 10 best _ ADJ JJS _ 11 dep _ _ 11 possible _ ADJ JJ _ 12 amod _ _ 12 show _ NOUN NN _ 7 xcomp _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 having _ VERB VBG _ 22 csubj _ _ 15 it _ PRON PRP _ 16 nsubj _ _ 16 run _ VERB VB _ 14 ccomp _ _ 17 one _ NUM CD _ 18 nummod _ _ 18 hour _ NOUN NN _ 16 nmod:tmod _ _ 19 is _ VERB VBZ _ 22 cop _ _ 20 the _ DET DT _ 22 det _ _ 21 best _ ADJ JJS _ 22 amod _ _ 22 way _ NOUN NN _ 3 conj _ _ 23 to _ ADP TO _ 24 case _ _ 24 it _ PRON PRP _ 22 nmod _ _ 25 , _ PUNCT , _ 27 punct _ _ 26 '' _ PUNCT '' _ 27 punct _ _ 27 said _ VERB VBD _ 0 root _ _ 28 Rod _ PROPN NNP _ 29 compound _ _ 29 Perth _ PROPN NNP _ 27 nsubj _ _ 30 , _ PUNCT , _ 29 punct _ _ 31 who _ PRON WP _ 33 nsubjpass _ _ 32 was _ AUX VBD _ 33 auxpass _ _ 33 named _ VERB VBN _ 29 acl:relcl _ _ 34 vice _ NOUN NN _ 35 compound _ _ 35 president _ NOUN NN _ 33 xcomp _ _ 36 of _ ADP IN _ 39 case _ _ 37 late _ ADJ JJ _ 39 amod _ _ 38 night _ NOUN NN _ 39 compound _ _ 39 entertainment _ NOUN NN _ 35 nmod _ _ 40 in _ ADP IN _ 41 case _ _ 41 August _ PROPN NNP _ 33 nmod _ _ 42 . _ PUNCT . _ 27 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 This _ PRON DT _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 raise _ VERB VB _ 0 root _ _ 5 the _ DET DT _ 7 det _ _ 6 energy _ NOUN NN _ 7 compound _ _ 7 level _ NOUN NN _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 show _ NOUN NN _ 7 nmod _ _ 11 . _ PUNCT . _ 4 punct _ _ 12 '' _ PUNCT '' _ 4 punct _ _ 1 CBS _ PROPN NNP _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 continue _ VERB VB _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 program _ VERB VB _ 3 xcomp _ _ 6 action-adventure _ ADJ JJ _ 7 amod _ _ 7 shows _ NOUN NNS _ 5 dobj _ _ 8 to _ PART TO _ 9 mark _ _ 9 follow _ VERB VB _ 7 acl _ _ 10 the _ DET DT _ 12 det _ _ 11 Sajak _ PROPN NNP _ 12 compound _ _ 12 hour _ NOUN NN _ 9 dobj _ _ 13 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 5 cc _ _ 2 CBS _ PROPN NNP _ 3 compound _ _ 3 News _ PROPN NNP _ 5 nsubj _ _ 4 will _ AUX MD _ 5 aux _ _ 5 extend _ VERB VB _ 0 root _ _ 6 its _ PRON PRP$ _ 9 nmod:poss _ _ 7 four-hour _ ADJ JJ _ 9 amod _ _ 8 `` _ PUNCT `` _ 9 punct _ _ 9 Nightwatch _ PROPN NNP _ 5 dobj _ _ 10 '' _ PUNCT '' _ 9 punct _ _ 11 by _ ADP IN _ 13 case _ _ 12 30 _ NUM CD _ 13 nummod _ _ 13 minutes _ NOUN NNS _ 5 nmod _ _ 14 and _ CONJ CC _ 5 cc _ _ 15 begin _ VERB VB _ 5 conj _ _ 16 at _ ADP IN _ 17 case _ _ 17 1:30 _ NUM CD _ 15 nmod _ _ 18 a.m _ ADV RB _ 17 advmod _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 show _ NOUN NN _ 10 nsubj _ _ 3 , _ PUNCT , _ 10 punct _ _ 4 despite _ ADP IN _ 7 case _ _ 5 a _ DET DT _ 7 det _ _ 6 promising _ ADJ JJ _ 7 amod _ _ 7 start _ NOUN NN _ 10 nmod _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 has _ AUX VBZ _ 10 aux _ _ 10 slipped _ VERB VBN _ 0 root _ _ 11 badly _ ADV RB _ 10 advmod _ _ 12 in _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 weekly _ ADJ JJ _ 15 amod _ _ 15 ratings _ NOUN NNS _ 10 nmod _ _ 16 as _ SCONJ IN _ 17 mark _ _ 17 compiled _ VERB VBN _ 15 dep _ _ 18 by _ ADP IN _ 21 case _ _ 19 A.C. _ PROPN NNP _ 21 compound _ _ 20 Nielsen _ PROPN NNP _ 21 compound _ _ 21 Co. _ PROPN NNP _ 17 nmod _ _ 22 , _ PUNCT , _ 10 punct _ _ 23 finishing _ VERB VBG _ 10 xcomp _ _ 24 far _ ADV RB _ 27 advmod _ _ 25 below _ ADP IN _ 27 case _ _ 26 `` _ PUNCT `` _ 27 punct _ _ 27 Tonight _ PROPN NNP _ 23 nmod _ _ 28 '' _ PUNCT '' _ 27 punct _ _ 29 on _ ADP IN _ 30 case _ _ 30 NBC _ PROPN NNP _ 27 nmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 a _ DET DT _ 33 det _ _ 33 unit _ NOUN NN _ 30 appos _ _ 34 of _ ADP IN _ 37 case _ _ 35 General _ PROPN NNP _ 37 compound _ _ 36 Electric _ PROPN NNP _ 37 compound _ _ 37 Co. _ PROPN NNP _ 33 nmod _ _ 38 , _ PUNCT , _ 27 punct _ _ 39 and _ CONJ CC _ 27 cc _ _ 40 `` _ PUNCT `` _ 41 punct _ _ 41 Nightline _ PROPN NNP _ 27 conj _ _ 42 '' _ PUNCT '' _ 41 punct _ _ 43 on _ ADP IN _ 44 case _ _ 44 ABC-TV _ PROPN NNP _ 41 nmod _ _ 45 , _ PUNCT , _ 44 punct _ _ 46 a _ DET DT _ 47 det _ _ 47 unit _ NOUN NN _ 44 appos _ _ 48 of _ ADP IN _ 51 case _ _ 49 Capital _ PROPN NNP _ 51 compound _ _ 50 Cities/ABC _ PROPN NNP _ 51 compound _ _ 51 Inc _ PROPN NNP _ 47 nmod _ _ 52 . _ PUNCT . _ 10 punct _ _ 1 Further _ ADV RB _ 2 advmod _ _ 2 fractioning _ VERB VBG _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 late-night _ ADJ JJ _ 5 amod _ _ 5 audience _ NOUN NN _ 2 dobj _ _ 6 is _ VERB VBZ _ 2 aux _ _ 7 the _ DET DT _ 8 det _ _ 8 addition _ NOUN NN _ 2 nsubj _ _ 9 of _ ADP IN _ 14 case _ _ 10 the _ DET DT _ 14 det _ _ 11 `` _ PUNCT `` _ 14 punct _ _ 12 Arsenio _ PROPN NNP _ 14 compound _ _ 13 Hall _ PROPN NNP _ 14 compound _ _ 14 Show _ PROPN NNP _ 8 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 '' _ PUNCT '' _ 14 punct _ _ 17 syndicated _ VERB VBN _ 14 acl _ _ 18 by _ ADP IN _ 21 case _ _ 19 Paramount _ PROPN NNP _ 21 compound _ _ 20 Communications _ PROPN NNP _ 21 compound _ _ 21 Inc _ PROPN NNP _ 17 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 Tandem _ PROPN NNP _ 3 compound _ _ 2 Computers _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 21 nsubj _ _ 4 , _ PUNCT , _ 21 punct _ _ 5 preparing _ VERB VBG _ 21 advcl _ _ 6 to _ PART TO _ 7 mark _ _ 7 fight _ VERB VB _ 5 xcomp _ _ 8 with _ ADP IN _ 12 case _ _ 9 International _ PROPN NNP _ 12 compound _ _ 10 Business _ PROPN NNP _ 12 compound _ _ 11 Machines _ PROPN NNP _ 12 compound _ _ 12 Corp. _ PROPN NNP _ 7 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 a _ DET DT _ 15 det _ _ 15 piece _ NOUN NN _ 7 nmod _ _ 16 of _ ADP IN _ 19 case _ _ 17 the _ DET DT _ 19 det _ _ 18 mainframe _ ADJ JJ _ 19 amod _ _ 19 business _ NOUN NN _ 15 nmod _ _ 20 , _ PUNCT , _ 21 punct _ _ 21 said _ VERB VBD _ 0 root _ _ 22 it _ PRON PRP _ 23 nsubj _ _ 23 expects _ VERB VBZ _ 21 ccomp _ _ 24 to _ PART TO _ 25 mark _ _ 25 post _ VERB VB _ 23 xcomp _ _ 26 higher _ ADJ JJR _ 27 amod _ _ 27 revenue _ NOUN NN _ 25 dobj _ _ 28 and _ CONJ CC _ 27 cc _ _ 29 earnings _ NOUN NNS _ 27 conj _ _ 30 for _ ADP IN _ 34 case _ _ 31 its _ PRON PRP$ _ 34 nmod:poss _ _ 32 fiscal _ ADJ JJ _ 34 amod _ _ 33 fourth _ ADJ JJ _ 34 amod _ _ 34 quarter _ NOUN NN _ 27 nmod _ _ 35 ended _ VERB VBD _ 34 acl _ _ 36 Sept. _ PROPN NNP _ 35 nmod:tmod _ _ 37 30 _ NUM CD _ 36 nummod _ _ 38 . _ PUNCT . _ 21 punct _ _ 1 Tandem _ PROPN NNP _ 2 nsubj _ _ 2 said _ VERB VBD _ 0 root _ _ 3 it _ PRON PRP _ 4 nsubj _ _ 4 expects _ VERB VBZ _ 2 ccomp _ _ 5 to _ PART TO _ 6 mark _ _ 6 report _ VERB VB _ 4 xcomp _ _ 7 revenue _ NOUN NN _ 6 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 about _ ADV RB _ 10 advmod _ _ 10 $ _ SYM $ _ 7 nmod _ _ 11 450 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 and _ CONJ CC _ 7 cc _ _ 14 earnings _ NOUN NNS _ 7 conj _ _ 15 of _ ADP IN _ 17 case _ _ 16 35 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 14 nmod _ _ 18 to _ ADP TO _ 17 dep _ _ 19 40 _ NUM CD _ 20 nummod _ _ 20 cents _ NOUN NNS _ 17 dep _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 17 nmod:npmod _ _ 23 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 results _ NOUN NNS _ 13 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 7 nsubj _ _ 5 are _ VERB VBP _ 7 cop _ _ 6 in _ ADP IN _ 7 case _ _ 7 line _ NOUN NN _ 2 acl:relcl _ _ 8 with _ ADP IN _ 11 case _ _ 9 analysts _ NOUN NNS _ 11 nmod:poss _ _ 10 ' _ PART POS _ 9 case _ _ 11 estimates _ NOUN NNS _ 7 nmod _ _ 12 , _ PUNCT , _ 2 punct _ _ 13 reflect _ VERB VBP _ 24 ccomp _ _ 14 `` _ PUNCT `` _ 13 punct _ _ 15 a _ DET DT _ 17 det _ _ 16 continued _ ADJ JJ _ 17 amod _ _ 17 improvement _ NOUN NN _ 13 dobj _ _ 18 in _ ADP IN _ 21 case _ _ 19 our _ PRON PRP$ _ 21 nmod:poss _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 business _ NOUN NN _ 17 nmod _ _ 22 , _ PUNCT , _ 24 punct _ _ 23 '' _ PUNCT '' _ 24 punct _ _ 24 said _ VERB VBD _ 0 root _ _ 25 James _ PROPN NNP _ 26 compound _ _ 26 Treybig _ PROPN NNP _ 24 nsubj _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Tandem _ PROPN NNP _ 32 nmod:poss _ _ 29 's _ PART POS _ 28 case _ _ 30 chief _ ADJ JJ _ 32 amod _ _ 31 executive _ ADJ JJ _ 32 amod _ _ 32 officer _ NOUN NN _ 26 appos _ _ 33 . _ PUNCT . _ 24 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 year-earlier _ ADJ JJ _ 4 amod _ _ 4 period _ NOUN NN _ 7 nmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 Tandem _ PROPN NNP _ 7 nsubj _ _ 7 reported _ VERB VBD _ 0 root _ _ 8 net _ ADJ JJ _ 9 amod _ _ 9 income _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 30.1 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 31 _ NUM CD _ 17 nummod _ _ 17 cents _ NOUN NNS _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 revenue _ NOUN NN _ 9 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 383.9 _ NUM CD _ 26 compound _ _ 26 million _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Tandem _ PROPN NNP _ 2 nsubj _ _ 2 expects _ VERB VBZ _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 report _ VERB VB _ 2 xcomp _ _ 5 the _ DET DT _ 7 det _ _ 6 full _ ADJ JJ _ 7 amod _ _ 7 results _ NOUN NNS _ 4 dobj _ _ 8 for _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 quarter _ NOUN NN _ 7 nmod _ _ 11 next _ ADP IN _ 12 amod _ _ 12 week _ NOUN NN _ 4 nmod:tmod _ _ 13 . _ PUNCT . _ 2 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubj _ _ 2 have _ AUX VBP _ 3 aux _ _ 3 predicted _ VERB VBN _ 0 root _ _ 4 that _ SCONJ IN _ 12 mark _ _ 5 the _ DET DT _ 10 det _ _ 6 Cupertino _ PROPN NNP _ 10 dep _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Calif. _ PROPN NNP _ 6 dep _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 company _ NOUN NN _ 12 nsubj _ _ 11 will _ AUX MD _ 12 aux _ _ 12 report _ VERB VB _ 3 ccomp _ _ 13 revenue _ NOUN NN _ 12 dobj _ _ 14 of _ ADP IN _ 19 case _ _ 15 $ _ SYM $ _ 19 dep _ _ 16 430 _ NUM CD _ 19 compound _ _ 17 million _ NUM CD _ 19 compound _ _ 18 to _ ADP TO _ 19 dep _ _ 19 $ _ SYM $ _ 13 nmod _ _ 20 460 _ NUM CD _ 21 compound _ _ 21 million _ NUM CD _ 19 nummod _ _ 22 and _ CONJ CC _ 13 cc _ _ 23 earnings _ NOUN NNS _ 13 conj _ _ 24 of _ ADP IN _ 26 case _ _ 25 35 _ NUM CD _ 26 nummod _ _ 26 cents _ NOUN NNS _ 23 nmod _ _ 27 to _ ADP TO _ 26 dep _ _ 28 40 _ NUM CD _ 29 nummod _ _ 29 cents _ NOUN NNS _ 26 dep _ _ 30 a _ DET DT _ 31 det _ _ 31 share _ NOUN NN _ 26 nmod:npmod _ _ 32 . _ PUNCT . _ 3 punct _ _ 1 Commenting _ VERB VBG _ 11 advcl _ _ 2 on _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 results _ NOUN NNS _ 1 nmod _ _ 5 for _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 quarter _ NOUN NN _ 4 nmod _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 Mr. _ PROPN NNP _ 10 compound _ _ 10 Treybig _ PROPN NNP _ 11 nsubj _ _ 11 said _ VERB VBD _ 0 root _ _ 12 the _ DET DT _ 13 det _ _ 13 strength _ NOUN NN _ 20 nsubj _ _ 14 of _ ADP IN _ 19 case _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 19 nmod:poss _ _ 17 's _ PART POS _ 16 case _ _ 18 domestic _ ADJ JJ _ 19 amod _ _ 19 business _ NOUN NN _ 13 nmod _ _ 20 came _ VERB VBD _ 11 ccomp _ _ 21 as _ ADP IN _ 24 case _ _ 22 `` _ PUNCT `` _ 24 punct _ _ 23 a _ DET DT _ 24 det _ _ 24 surprise _ NOUN NN _ 20 nmod _ _ 25 '' _ PUNCT '' _ 24 punct _ _ 26 to _ ADP TO _ 27 case _ _ 27 him _ PRON PRP _ 24 nmod _ _ 28 , _ PUNCT , _ 11 punct _ _ 29 noting _ VERB VBG _ 11 xcomp _ _ 30 that _ SCONJ IN _ 39 mark _ _ 31 sales _ NOUN NNS _ 39 nsubj _ _ 32 `` _ PUNCT `` _ 31 punct _ _ 33 in _ ADP IN _ 35 case _ _ 34 every _ DET DT _ 35 det _ _ 35 region _ NOUN NN _ 31 nmod _ _ 36 of _ ADP IN _ 38 case _ _ 37 the _ DET DT _ 38 det _ _ 38 U.S. _ PROPN NNP _ 35 nmod _ _ 39 exceeded _ VERB VBD _ 29 ccomp _ _ 40 our _ PRON PRP$ _ 41 nmod:poss _ _ 41 plan _ NOUN NN _ 39 dobj _ _ 42 . _ PUNCT . _ 11 punct _ _ 43 '' _ PUNCT '' _ 11 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 5 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 U.S. _ PROPN NNP _ 5 compound _ _ 5 performance _ NOUN NN _ 7 nsubjpass _ _ 6 was _ AUX VBD _ 7 auxpass _ _ 7 helped _ VERB VBN _ 19 ccomp _ _ 8 by _ ADP IN _ 12 case _ _ 9 `` _ PUNCT `` _ 12 punct _ _ 10 a _ DET DT _ 12 det _ _ 11 record _ ADJ JJ _ 12 amod _ _ 12 quarter _ NOUN NN _ 7 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 new _ ADJ JJ _ 15 amod _ _ 15 customers _ NOUN NNS _ 12 nmod _ _ 16 , _ PUNCT , _ 19 punct _ _ 17 '' _ PUNCT '' _ 19 punct _ _ 18 he _ PRON PRP _ 19 nsubj _ _ 19 said _ VERB VBD _ 0 root _ _ 20 . _ PUNCT . _ 19 punct _ _ 1 Tandem _ PROPN NNP _ 2 nsubj _ _ 2 makes _ VERB VBZ _ 0 root _ _ 3 `` _ PUNCT `` _ 6 punct _ _ 4 fault-tolerant _ ADJ JJ _ 6 amod _ _ 5 '' _ PUNCT '' _ 6 punct _ _ 6 computers _ NOUN NNS _ 2 dobj _ _ 7 -- _ PUNCT : _ 8 punct _ _ 8 machines _ NOUN NNS _ 6 dep _ _ 9 with _ ADP IN _ 12 case _ _ 10 built-in _ ADJ JJ _ 12 amod _ _ 11 backup _ ADJ JJ _ 12 amod _ _ 12 systems _ NOUN NNS _ 8 nmod _ _ 13 -- _ PUNCT : _ 8 punct _ _ 14 that _ PRON WDT _ 15 nsubj _ _ 15 run _ VERB VBP _ 6 acl:relcl _ _ 16 stock _ NOUN NN _ 17 compound _ _ 17 exchanges _ NOUN NNS _ 15 dobj _ _ 18 , _ PUNCT , _ 17 punct _ _ 19 networks _ NOUN NNS _ 17 conj _ _ 20 of _ ADP IN _ 22 case _ _ 21 automatic _ ADJ JJ _ 22 amod _ _ 22 tellers _ NOUN NNS _ 19 nmod _ _ 23 and _ CONJ CC _ 17 cc _ _ 24 other _ ADJ JJ _ 27 amod _ _ 25 complex _ ADJ JJ _ 27 amod _ _ 26 computer _ NOUN NN _ 27 compound _ _ 27 systems _ NOUN NNS _ 17 conj _ _ 28 . _ PUNCT . _ 2 punct _ _ 1 Tomorrow _ NOUN NN _ 5 nmod:tmod _ _ 2 the _ DET DT _ 3 det _ _ 3 company _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 scheduled _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 announce _ VERB VB _ 5 xcomp _ _ 8 its _ PRON PRP$ _ 11 nmod:poss _ _ 9 most _ ADJ JJS _ 10 dep _ _ 10 powerful _ ADJ JJ _ 11 amod _ _ 11 computer _ NOUN NN _ 7 dobj _ _ 12 ever _ ADV RB _ 11 advmod _ _ 13 , _ PUNCT , _ 11 punct _ _ 14 which _ PRON WDT _ 20 nsubj _ _ 15 for _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 first _ ADJ JJ _ 18 amod _ _ 18 time _ NOUN NN _ 20 nmod _ _ 19 will _ AUX MD _ 20 aux _ _ 20 bring _ VERB VB _ 11 acl:relcl _ _ 21 it _ PRON PRP _ 20 dobj _ _ 22 into _ ADP IN _ 24 case _ _ 23 direct _ ADJ JJ _ 24 amod _ _ 24 competition _ NOUN NN _ 20 nmod _ _ 25 with _ ADP IN _ 26 case _ _ 26 makers _ NOUN NNS _ 24 nmod _ _ 27 of _ ADP IN _ 29 case _ _ 28 mainframe _ ADJ JJ _ 29 amod _ _ 29 computers _ NOUN NNS _ 26 nmod _ _ 30 . _ PUNCT . _ 5 punct _ _ 1 Tandem _ PROPN NNP _ 5 nmod:poss _ _ 2 's _ PART POS _ 1 case _ _ 3 new _ ADJ JJ _ 5 amod _ _ 4 high-end _ ADJ JJ _ 5 amod _ _ 5 computer _ NOUN NN _ 7 nsubjpass _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 called _ VERB VBN _ 0 root _ _ 8 Cyclone _ PROPN NNP _ 7 xcomp _ _ 9 . _ PUNCT . _ 7 punct _ _ 1 Prices _ NOUN NNS _ 18 nsubj _ _ 2 for _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 machine _ NOUN NN _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 which _ PRON WDT _ 8 nsubj _ _ 7 can _ AUX MD _ 8 aux _ _ 8 come _ VERB VB _ 4 acl:relcl _ _ 9 in _ ADP IN _ 11 case _ _ 10 various _ ADJ JJ _ 11 amod _ _ 11 configurations _ NOUN NNS _ 8 nmod _ _ 12 , _ PUNCT , _ 4 punct _ _ 13 are _ VERB VBP _ 18 cop _ _ 14 $ _ SYM $ _ 18 dep _ _ 15 2 _ NUM CD _ 18 compound _ _ 16 million _ NUM CD _ 18 compound _ _ 17 to _ ADP TO _ 18 dep _ _ 18 $ _ SYM $ _ 0 root _ _ 19 10 _ NUM CD _ 20 compound _ _ 20 million _ NUM CD _ 18 nummod _ _ 21 . _ PUNCT . _ 18 punct _ _ 1 Analysts _ NOUN NNS _ 2 nsubj _ _ 2 expect _ VERB VBP _ 0 root _ _ 3 the _ DET DT _ 5 det _ _ 4 new _ ADJ JJ _ 5 amod _ _ 5 computer _ NOUN NN _ 2 dobj _ _ 6 to _ PART TO _ 7 mark _ _ 7 wrest _ VERB VB _ 2 xcomp _ _ 8 a _ DET DT _ 10 det _ _ 9 hefty _ ADJ JJ _ 10 amod _ _ 10 slice _ NOUN NN _ 7 dobj _ _ 11 of _ ADP IN _ 12 case _ _ 12 business _ NOUN NN _ 10 nmod _ _ 13 away _ ADV RB _ 7 advmod _ _ 14 from _ ADP IN _ 15 case _ _ 15 IBM _ PROPN NNP _ 13 nmod _ _ 16 , _ PUNCT , _ 15 punct _ _ 17 the _ DET DT _ 19 det _ _ 18 longtime _ ADJ JJ _ 19 amod _ _ 19 leader _ NOUN NN _ 15 appos _ _ 20 in _ ADP IN _ 21 case _ _ 21 mainframes _ NOUN NNS _ 19 nmod _ _ 22 . _ PUNCT . _ 2 punct _ _ 1 `` _ PUNCT `` _ 22 punct _ _ 2 We _ PRON PRP _ 3 nsubj _ _ 3 believe _ VERB VBP _ 22 ccomp _ _ 4 they _ PRON PRP _ 6 nsubj _ _ 5 could _ AUX MD _ 6 aux _ _ 6 siphon _ VERB VB _ 3 ccomp _ _ 7 perhaps _ ADV RB _ 11 advmod _ _ 8 two _ NUM CD _ 11 compound _ _ 9 to _ ADP TO _ 11 dep _ _ 10 three _ NUM CD _ 11 compound _ _ 11 billion _ NUM CD _ 12 nummod _ _ 12 dollars _ NOUN NNS _ 6 dobj _ _ 13 from _ ADP IN _ 14 case _ _ 14 IBM _ PROPN NNP _ 6 nmod _ _ 15 '' _ PUNCT '' _ 6 punct _ _ 16 over _ ADP IN _ 20 case _ _ 17 the _ DET DT _ 20 det _ _ 18 next _ ADJ JJ _ 20 amod _ _ 19 few _ ADJ JJ _ 20 amod _ _ 20 years _ NOUN NNS _ 6 nmod _ _ 21 , _ PUNCT , _ 22 punct _ _ 22 said _ VERB VBD _ 0 root _ _ 23 George _ PROPN NNP _ 24 compound _ _ 24 Weiss _ PROPN NNP _ 22 dep _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 an _ DET DT _ 27 det _ _ 27 analyst _ NOUN NN _ 24 appos _ _ 28 at _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 Gartner _ ADJ JJR _ 31 amod _ _ 31 group _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 22 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 will _ AUX MD _ 3 aux _ _ 3 spur _ VERB VB _ 0 root _ _ 4 Tandem _ PROPN NNP _ 6 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 growth _ NOUN NN _ 3 dobj _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 19 punct _ _ 2 I _ PRON PRP _ 5 nsubj _ _ 3 'd _ AUX MD _ 5 aux _ _ 4 be _ VERB VB _ 5 cop _ _ 5 disappointed _ ADJ JJ _ 19 ccomp _ _ 6 if _ SCONJ IN _ 9 mark _ _ 7 the _ DET DT _ 8 det _ _ 8 company _ NOUN NN _ 9 nsubj _ _ 9 grew _ VERB VBD _ 5 advcl _ _ 10 by _ ADP IN _ 14 case _ _ 11 less _ ADJ JJR _ 13 advmod _ _ 12 than _ ADP IN _ 11 mwe _ _ 13 20 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 9 nmod _ _ 15 next _ ADJ JJ _ 16 amod _ _ 16 year _ NOUN NN _ 9 nmod:tmod _ _ 17 , _ PUNCT , _ 19 punct _ _ 18 '' _ PUNCT '' _ 19 punct _ _ 19 said _ VERB VBD _ 0 root _ _ 20 John _ PROPN NNP _ 21 compound _ _ 21 Levinson _ PROPN NNP _ 19 nsubj _ _ 22 , _ PUNCT , _ 21 punct _ _ 23 an _ DET DT _ 24 det _ _ 24 analyst _ NOUN NN _ 21 appos _ _ 25 at _ ADP IN _ 26 case _ _ 26 Goldman _ PROPN NNP _ 24 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 Sachs _ PROPN NNP _ 26 conj _ _ 29 & _ CONJ CC _ 26 cc _ _ 30 Co _ PROPN NNP _ 26 conj _ _ 31 . _ PUNCT . _ 19 punct _ _ 1 IBM _ PROPN NNP _ 3 nsubjpass _ _ 2 is _ AUX VBZ _ 3 auxpass _ _ 3 expected _ VERB VBN _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 respond _ VERB VB _ 3 xcomp _ _ 6 to _ ADP TO _ 7 case _ _ 7 Tandem _ PROPN NNP _ 5 nmod _ _ 8 's _ PART POS _ 7 case _ _ 9 Cyclone _ PROPN NNP _ 7 dep _ _ 10 by _ SCONJ IN _ 11 mark _ _ 11 discounting _ VERB VBG _ 5 advcl _ _ 12 its _ PRON PRP$ _ 14 nmod:poss _ _ 13 own _ ADJ JJ _ 14 amod _ _ 14 mainframes _ NOUN NNS _ 11 dobj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 which _ PRON WDT _ 18 dobj _ _ 17 analysts _ NOUN NNS _ 18 nsubj _ _ 18 say _ VERB VBP _ 3 dep _ _ 19 are _ VERB VBP _ 24 cop _ _ 20 roughly _ ADV RB _ 22 advmod _ _ 21 three _ NUM CD _ 22 compound _ _ 22 times _ NOUN NNS _ 24 nummod _ _ 23 the _ DET DT _ 24 det _ _ 24 price _ NOUN NN _ 18 ccomp _ _ 25 of _ ADP IN _ 28 case _ _ 26 a _ DET DT _ 28 det _ _ 27 comparable _ ADJ JJ _ 28 amod _ _ 28 system _ NOUN NN _ 24 nmod _ _ 29 from _ ADP IN _ 30 case _ _ 30 Tandem _ PROPN NNP _ 28 nmod _ _ 31 . _ PUNCT . _ 3 punct _ _ 1 `` _ PUNCT `` _ 13 punct _ _ 2 Obviously _ ADV RB _ 5 advmod _ _ 3 IBM _ PROPN NNP _ 5 nsubj _ _ 4 can _ AUX MD _ 5 aux _ _ 5 give _ VERB VB _ 13 ccomp _ _ 6 bigger _ ADJ JJR _ 7 amod _ _ 7 discounts _ NOUN NNS _ 5 dobj _ _ 8 to _ ADP TO _ 9 case _ _ 9 users _ NOUN NNS _ 5 nmod _ _ 10 immediately _ ADV RB _ 5 advmod _ _ 11 , _ PUNCT , _ 13 punct _ _ 12 '' _ PUNCT '' _ 13 punct _ _ 13 said _ VERB VBD _ 0 root _ _ 14 Mr. _ PROPN NNP _ 15 compound _ _ 15 Weiss _ PROPN NNP _ 13 nsubj _ _ 16 . _ PUNCT . _ 13 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Treybig _ PROPN NNP _ 4 nsubj _ _ 4 questions _ NOUN NNS _ 0 root _ _ 5 whether _ SCONJ IN _ 9 mark _ _ 6 that _ PRON DT _ 9 nsubj _ _ 7 will _ AUX MD _ 9 aux _ _ 8 be _ VERB VB _ 9 cop _ _ 9 enough _ ADJ JJ _ 4 ccomp _ _ 10 to _ PART TO _ 11 mark _ _ 11 stop _ VERB VB _ 9 xcomp _ _ 12 Tandem _ PROPN NNP _ 15 nmod:poss _ _ 13 's _ PART POS _ 12 case _ _ 14 first _ ADJ JJ _ 15 amod _ _ 15 mainframe _ NOUN NN _ 11 dobj _ _ 16 from _ SCONJ IN _ 17 mark _ _ 17 taking _ VERB VBG _ 11 advcl _ _ 18 on _ ADP RP _ 17 compound:prt _ _ 19 some _ DET DT _ 17 dobj _ _ 20 of _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 functions _ NOUN NNS _ 19 nmod _ _ 23 that _ PRON WDT _ 27 dobj _ _ 24 large _ ADJ JJ _ 25 amod _ _ 25 organizations _ NOUN NNS _ 27 nsubj _ _ 26 previously _ ADV RB _ 27 advmod _ _ 27 sought _ VERB VBD _ 22 acl:relcl _ _ 28 from _ ADP IN _ 32 case _ _ 29 Big _ PROPN NNP _ 30 compound _ _ 30 Blue _ PROPN NNP _ 32 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 machines _ NOUN NNS _ 27 nmod _ _ 33 . _ PUNCT . _ 4 punct _ _ 1 `` _ PUNCT `` _ 15 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 answer _ NOUN NN _ 7 nsubj _ _ 4 is _ VERB VBZ _ 7 cop _ _ 5 n't _ PART RB _ 7 neg _ _ 6 price _ NOUN NN _ 7 compound _ _ 7 reductions _ NOUN NNS _ 15 ccomp _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 but _ CONJ CC _ 7 cc _ _ 10 new _ ADJ JJ _ 11 amod _ _ 11 systems _ NOUN NNS _ 7 conj _ _ 12 , _ PUNCT , _ 15 punct _ _ 13 '' _ PUNCT '' _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 said _ VERB VBD _ 0 root _ _ 16 . _ PUNCT . _ 15 punct _ _ 1 Nevertheless _ ADV RB _ 4 advmod _ _ 2 , _ PUNCT , _ 4 punct _ _ 3 Tandem _ PROPN NNP _ 4 nsubj _ _ 4 faces _ VERB VBZ _ 0 root _ _ 5 a _ DET DT _ 6 det _ _ 6 variety _ NOUN NN _ 4 dobj _ _ 7 of _ ADP IN _ 8 case _ _ 8 challenges _ NOUN NNS _ 6 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 biggest _ ADJ JJS _ 12 nsubj _ _ 12 being _ NOUN NN _ 8 dep _ _ 13 that _ SCONJ IN _ 16 mark _ _ 14 customers _ NOUN NNS _ 16 nsubj _ _ 15 generally _ ADV RB _ 16 advmod _ _ 16 view _ VERB VBP _ 12 ccomp _ _ 17 the _ DET DT _ 18 det _ _ 18 company _ NOUN NN _ 20 nmod:poss _ _ 19 's _ PART POS _ 18 case _ _ 20 computers _ NOUN NNS _ 16 dobj _ _ 21 as _ ADP IN _ 22 case _ _ 22 complementary _ ADJ JJ _ 16 advcl _ _ 23 to _ ADP TO _ 26 case _ _ 24 IBM _ PROPN NNP _ 26 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 mainframes _ NOUN NNS _ 22 nmod _ _ 27 . _ PUNCT . _ 4 punct _ _ 1 Even _ ADV RB _ 3 advmod _ _ 2 Mr. _ PROPN NNP _ 3 compound _ _ 3 Treybig _ PROPN NNP _ 5 nsubj _ _ 4 is _ VERB VBZ _ 5 cop _ _ 5 reluctant _ ADJ JJ _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 abandon _ VERB VB _ 5 xcomp _ _ 8 this _ DET DT _ 9 det _ _ 9 notion _ NOUN NN _ 7 dobj _ _ 10 , _ PUNCT , _ 5 punct _ _ 11 insisting _ VERB VBG _ 5 xcomp _ _ 12 that _ SCONJ IN _ 19 mark _ _ 13 Tandem _ PROPN NNP _ 16 nmod:poss _ _ 14 's _ PART POS _ 13 case _ _ 15 new _ ADJ JJ _ 16 amod _ _ 16 machines _ NOUN NNS _ 19 nsubj _ _ 17 are _ VERB VBP _ 19 cop _ _ 18 n't _ PART RB _ 19 neg _ _ 19 replacements _ NOUN NNS _ 11 ccomp _ _ 20 for _ ADP IN _ 23 case _ _ 21 IBM _ PROPN NNP _ 23 nmod:poss _ _ 22 's _ PART POS _ 21 case _ _ 23 mainframes _ NOUN NNS _ 19 nmod _ _ 24 . _ PUNCT . _ 5 punct _ _ 1 `` _ PUNCT `` _ 12 punct _ _ 2 We _ PRON PRP _ 8 nsubj _ _ 3 're _ VERB VBP _ 8 cop _ _ 4 after _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 8 det _ _ 6 little _ ADJ JJ _ 8 amod _ _ 7 bigger _ ADJ JJR _ 6 dep _ _ 8 niche _ NOUN NN _ 12 ccomp _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 '' _ PUNCT '' _ 12 punct _ _ 11 he _ PRON PRP _ 12 nsubj _ _ 12 said _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 Do _ AUX VB _ 3 aux _ _ 2 n't _ PART RB _ 3 neg _ _ 3 jump _ VERB VB _ 0 root _ _ 4 yet _ ADV RB _ 3 advmod _ _ 5 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 stock _ NOUN NN _ 3 compound _ _ 3 market _ NOUN NN _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 swoon _ NOUN NN _ 7 nsubj _ _ 6 may _ AUX MD _ 7 aux _ _ 7 turn _ VERB VB _ 0 root _ _ 8 out _ ADP RP _ 7 compound:prt _ _ 9 to _ PART TO _ 12 mark _ _ 10 be _ VERB VB _ 12 cop _ _ 11 good _ ADJ JJ _ 12 amod _ _ 12 news _ NOUN NN _ 7 xcomp _ _ 13 for _ ADP IN _ 15 case _ _ 14 the _ DET DT _ 15 det _ _ 15 economy _ NOUN NN _ 12 nmod _ _ 16 . _ PUNCT . _ 7 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 one _ NUM CD _ 4 nummod _ _ 3 wild _ ADJ JJ _ 4 amod _ _ 4 hour _ NOUN NN _ 10 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 trading _ VERB VBG _ 4 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 market _ NOUN NN _ 10 nsubj _ _ 10 managed _ VERB VBD _ 0 root _ _ 11 to _ PART TO _ 12 mark _ _ 12 accomplish _ VERB VB _ 10 xcomp _ _ 13 what _ PRON WP _ 21 dobj _ _ 14 the _ DET DT _ 16 det _ _ 15 Bush _ PROPN NNP _ 16 compound _ _ 16 administration _ NOUN NN _ 19 nsubj _ _ 17 has _ AUX VBZ _ 19 aux _ _ 18 been _ AUX VBN _ 19 aux _ _ 19 trying _ VERB VBG _ 12 ccomp _ _ 20 to _ PART TO _ 21 mark _ _ 21 do _ VERB VB _ 19 xcomp _ _ 22 , _ PUNCT , _ 19 punct _ _ 23 unsuccessfully _ ADV RB _ 19 advmod _ _ 24 , _ PUNCT , _ 19 punct _ _ 25 for _ ADP IN _ 26 case _ _ 26 weeks _ NOUN NNS _ 19 nmod _ _ 27 . _ PUNCT . _ 10 punct _ _ 1 It _ PRON PRP _ 3 nsubj _ _ 2 is _ AUX VBZ _ 3 aux _ _ 3 forcing _ VERB VBG _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 Federal _ PROPN NNP _ 6 compound _ _ 6 Reserve _ PROPN NNP _ 3 dobj _ _ 7 to _ PART TO _ 8 mark _ _ 8 ease _ VERB VB _ 3 xcomp _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 grip _ NOUN NN _ 8 dobj _ _ 11 on _ ADP IN _ 12 case _ _ 12 credit _ NOUN NN _ 10 nmod _ _ 13 and _ CONJ CC _ 3 cc _ _ 14 it _ PRON PRP _ 15 nsubj _ _ 15 took _ VERB VBD _ 3 conj _ _ 16 the _ DET DT _ 17 det _ _ 17 wind _ NOUN NN _ 15 dobj _ _ 18 out _ ADP IN _ 15 advmod _ _ 19 of _ ADP IN _ 23 case _ _ 20 a _ DET DT _ 23 det _ _ 21 previously _ ADV RB _ 22 advmod _ _ 22 irrepressible _ ADJ JJ _ 23 amod _ _ 23 dollar _ NOUN NN _ 18 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 resulting _ VERB VBG _ 3 amod _ _ 3 decline _ NOUN NN _ 14 nsubj _ _ 4 in _ ADP IN _ 6 case _ _ 5 interest _ NOUN NN _ 6 compound _ _ 6 rates _ NOUN NNS _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 the _ DET DT _ 9 det _ _ 9 value _ NOUN NN _ 6 conj _ _ 10 of _ ADP IN _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 dollar _ NOUN NN _ 9 nmod _ _ 13 could _ AUX MD _ 14 aux _ _ 14 reinvigorate _ VERB VB _ 0 root _ _ 15 American _ ADJ JJ _ 16 amod _ _ 16 business _ NOUN NN _ 14 dobj _ _ 17 -- _ PUNCT : _ 16 punct _ _ 18 indeed _ ADV RB _ 16 advmod _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 the _ DET DT _ 22 det _ _ 21 entire _ ADJ JJ _ 22 amod _ _ 22 economy _ NOUN NN _ 16 appos _ _ 23 . _ PUNCT . _ 14 punct _ _ 1 This _ PRON DT _ 3 nsubj _ _ 2 may _ AUX MD _ 3 aux _ _ 3 sound _ VERB VB _ 0 root _ _ 4 strangely _ ADV RB _ 5 advmod _ _ 5 optimistic _ ADJ JJ _ 3 xcomp _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 After _ ADP IN _ 2 case _ _ 2 all _ DET DT _ 14 nmod _ _ 3 , _ PUNCT , _ 14 punct _ _ 4 until _ ADP IN _ 8 case _ _ 5 a _ DET DT _ 7 det _ _ 6 few _ ADJ JJ _ 7 amod _ _ 7 years _ NOUN NNS _ 8 nmod:npmod _ _ 8 ago _ ADV RB _ 14 advcl _ _ 9 , _ PUNCT , _ 14 punct _ _ 10 the _ DET DT _ 12 det _ _ 11 stock _ NOUN NN _ 12 compound _ _ 12 market _ NOUN NN _ 14 nsubjpass _ _ 13 was _ AUX VBD _ 14 auxpass _ _ 14 viewed _ VERB VBN _ 0 root _ _ 15 as _ ADP IN _ 17 case _ _ 16 a _ DET DT _ 17 det _ _ 17 barometer _ NOUN NN _ 14 nmod _ _ 18 of _ ADP IN _ 21 case _ _ 19 the _ DET DT _ 21 det _ _ 20 national _ ADJ JJ _ 21 amod _ _ 21 economy _ NOUN NN _ 17 nmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 When _ ADV WRB _ 3 advmod _ _ 2 it _ PRON PRP _ 3 nsubj _ _ 3 went _ VERB VBD _ 12 advcl _ _ 4 down _ ADV RB _ 3 advmod _ _ 5 , _ PUNCT , _ 12 punct _ _ 6 by _ ADP IN _ 8 case _ _ 7 all _ DET DT _ 8 det _ _ 8 tradition _ NOUN NN _ 12 nmod _ _ 9 , _ PUNCT , _ 12 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 12 nsubj _ _ 12 followed _ VERB VBD _ 0 root _ _ 13 . _ PUNCT . _ 12 punct _ _ 1 That _ PRON DT _ 3 nsubj _ _ 2 has _ AUX VBZ _ 3 aux _ _ 3 changed _ VERB VBN _ 0 root _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 partly _ ADV RB _ 20 advmod _ _ 6 because _ SCONJ IN _ 20 mark _ _ 7 the _ DET DT _ 9 det _ _ 8 two _ NUM CD _ 9 nummod _ _ 9 years _ NOUN NNS _ 20 nsubj _ _ 10 following _ VERB VBG _ 14 case _ _ 11 the _ DET DT _ 14 det _ _ 12 worst _ ADJ JJS _ 14 amod _ _ 13 stock-market _ NOUN NN _ 14 compound _ _ 14 plunge _ NOUN NN _ 9 nmod _ _ 15 in _ ADP IN _ 16 case _ _ 16 history _ NOUN NN _ 14 nmod _ _ 17 have _ AUX VBP _ 20 aux _ _ 18 been _ VERB VBN _ 20 cop _ _ 19 reasonably _ ADV RB _ 20 advmod _ _ 20 comfortable _ ADJ JJ _ 3 advcl _ _ 21 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 1987 _ NUM CD _ 3 nummod _ _ 3 crash _ NOUN NN _ 8 nsubj _ _ 4 was _ VERB VBD _ 8 cop _ _ 5 `` _ PUNCT `` _ 8 punct _ _ 6 a _ DET DT _ 8 det _ _ 7 false _ ADJ JJ _ 8 amod _ _ 8 alarm _ NOUN NN _ 15 ccomp _ _ 9 however _ ADV WRB _ 11 advmod _ _ 10 you _ PRON PRP _ 11 nsubj _ _ 11 view _ VERB VBP _ 8 advcl _ _ 12 it _ PRON PRP _ 11 dobj _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 '' _ PUNCT '' _ 15 punct _ _ 15 says _ VERB VBZ _ 0 root _ _ 16 University _ PROPN NNP _ 21 dep _ _ 17 of _ ADP IN _ 18 case _ _ 18 Chicago _ PROPN NNP _ 16 nmod _ _ 19 economist _ NOUN NN _ 21 compound _ _ 20 Victor _ PROPN NNP _ 21 compound _ _ 21 Zarnowitz _ PROPN NNP _ 15 nsubj _ _ 22 . _ PUNCT . _ 15 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 market _ NOUN NN _ 3 nsubj _ _ 3 seems _ VERB VBZ _ 0 root _ _ 4 increasingly _ ADV RB _ 5 advmod _ _ 5 disconnected _ ADJ JJ _ 3 xcomp _ _ 6 from _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 rest _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 nation _ NOUN NN _ 8 nmod _ _ 12 . _ PUNCT . _ 3 punct _ _ 1 Its _ PRON PRP$ _ 2 nmod:poss _ _ 2 spasms _ NOUN NNS _ 6 nsubjpass _ _ 3 ca _ AUX MD _ 6 aux _ _ 4 n't _ PART RB _ 6 neg _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 traced _ VERB VBN _ 0 root _ _ 7 to _ ADP TO _ 10 case _ _ 8 fundamental _ ADJ JJ _ 10 amod _ _ 9 business _ NOUN NN _ 10 compound _ _ 10 conditions _ NOUN NNS _ 6 nmod _ _ 11 , _ PUNCT , _ 6 punct _ _ 12 nor _ CONJ CC _ 6 cc _ _ 13 do _ AUX VB _ 15 aux _ _ 14 they _ PRON PRP _ 15 nsubj _ _ 15 appear _ VERB VBP _ 6 conj _ _ 16 to _ PART TO _ 17 mark _ _ 17 presage _ VERB VB _ 15 xcomp _ _ 18 major _ ADJ JJ _ 19 amod _ _ 19 shifts _ NOUN NNS _ 17 dobj _ _ 20 in _ ADP IN _ 22 case _ _ 21 the _ DET DT _ 22 det _ _ 22 economy _ NOUN NN _ 19 nmod _ _ 23 . _ PUNCT . _ 6 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 The _ DET DT _ 4 det _ _ 3 market _ NOUN NN _ 4 compound _ _ 4 today _ NOUN NN _ 5 nsubj _ _ 5 has _ VERB VBZ _ 23 ccomp _ _ 6 a _ DET DT _ 7 det _ _ 7 life _ NOUN NN _ 5 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 its _ PRON PRP$ _ 10 nmod:poss _ _ 10 own _ ADJ JJ _ 7 nmod _ _ 11 , _ PUNCT , _ 23 punct _ _ 12 '' _ PUNCT '' _ 23 punct _ _ 13 John _ PROPN NNP _ 14 compound _ _ 14 Akers _ PROPN NNP _ 23 nsubj _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 chairman _ NOUN NN _ 14 appos _ _ 17 of _ ADP IN _ 21 case _ _ 18 International _ PROPN NNP _ 21 compound _ _ 19 Business _ PROPN NNP _ 21 compound _ _ 20 Machines _ PROPN NNP _ 21 compound _ _ 21 Corp. _ PROPN NNP _ 16 nmod _ _ 22 , _ PUNCT , _ 14 punct _ _ 23 said _ VERB VBD _ 0 root _ _ 24 Saturday _ PROPN NNP _ 23 nmod:tmod _ _ 25 . _ PUNCT . _ 23 punct _ _ 1 `` _ PUNCT `` _ 3 punct _ _ 2 There _ PRON EX _ 3 expl _ _ 3 's _ VERB VBZ _ 0 root _ _ 4 nothing _ NOUN NN _ 3 nsubj _ _ 5 rational _ ADJ JJ _ 4 amod _ _ 6 about _ ADP IN _ 8 case _ _ 7 this _ DET DT _ 8 det _ _ 8 kind _ NOUN NN _ 5 nmod _ _ 9 of _ ADP IN _ 10 case _ _ 10 action _ NOUN NN _ 8 nmod _ _ 11 . _ PUNCT . _ 3 punct _ _ 12 '' _ PUNCT '' _ 3 punct _ _ 1 Of _ ADP IN _ 2 case _ _ 2 course _ NOUN NN _ 11 nmod _ _ 3 , _ PUNCT , _ 11 punct _ _ 4 the _ DET DT _ 5 det _ _ 5 health _ NOUN NN _ 11 nsubjpass _ _ 6 of _ ADP IN _ 8 case _ _ 7 the _ DET DT _ 8 det _ _ 8 economy _ NOUN NN _ 5 nmod _ _ 9 will _ AUX MD _ 11 aux _ _ 10 be _ AUX VB _ 11 auxpass _ _ 11 threatened _ VERB VBN _ 0 root _ _ 12 if _ SCONJ IN _ 15 mark _ _ 13 the _ DET DT _ 14 det _ _ 14 market _ NOUN NN _ 15 nsubj _ _ 15 continues _ VERB VBZ _ 11 advcl _ _ 16 to _ PART TO _ 17 mark _ _ 17 dive _ VERB VB _ 15 xcomp _ _ 18 this _ DET DT _ 19 det _ _ 19 week _ NOUN NN _ 15 nmod:tmod _ _ 20 . _ PUNCT . _ 11 punct _ _ 1 Sharply _ ADV RB _ 2 advmod _ _ 2 falling _ VERB VBG _ 4 amod _ _ 3 stock _ NOUN NN _ 4 compound _ _ 4 prices _ NOUN NNS _ 6 nsubj _ _ 5 do _ AUX VBP _ 6 aux _ _ 6 reduce _ VERB VB _ 0 root _ _ 7 consumer _ NOUN NN _ 8 compound _ _ 8 wealth _ NOUN NN _ 6 dobj _ _ 9 , _ PUNCT , _ 6 punct _ _ 10 damage _ VERB VB _ 6 conj _ _ 11 business _ NOUN NN _ 12 compound _ _ 12 confidence _ NOUN NN _ 10 dobj _ _ 13 and _ CONJ CC _ 6 cc _ _ 14 discourage _ VERB VB _ 6 conj _ _ 15 the _ DET DT _ 17 det _ _ 16 foreign _ ADJ JJ _ 17 amod _ _ 17 investors _ NOUN NNS _ 14 dobj _ _ 18 upon _ ADP IN _ 19 case _ _ 19 whom _ PRON WP _ 23 nmod _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 23 nsubj _ _ 22 now _ ADV RB _ 23 advmod _ _ 23 relies _ VERB VBZ _ 17 acl:relcl _ _ 24 for _ ADP IN _ 26 case _ _ 25 financial _ ADJ JJ _ 26 amod _ _ 26 sustenance _ NOUN NN _ 23 nmod _ _ 27 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 financial-services _ NOUN NNS _ 3 compound _ _ 3 industry _ NOUN NN _ 5 nsubjpass _ _ 4 was _ AUX VBD _ 5 auxpass _ _ 5 battered _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 9 case _ _ 7 the _ DET DT _ 9 det _ _ 8 1987 _ NUM CD _ 9 nummod _ _ 9 crash _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 more _ ADJ JJR _ 23 advcl _ _ 4 , _ PUNCT , _ 23 punct _ _ 5 although _ SCONJ IN _ 12 mark _ _ 6 the _ DET DT _ 8 det _ _ 7 stock _ NOUN NN _ 8 compound _ _ 8 market _ NOUN NN _ 12 nsubj _ _ 9 is _ VERB VBZ _ 12 cop _ _ 10 far _ ADV RB _ 11 advmod _ _ 11 less _ ADV RBR _ 12 advmod _ _ 12 overvalued _ ADJ JJ _ 23 advcl _ _ 13 today _ NOUN NN _ 12 nmod:tmod _ _ 14 than _ ADP IN _ 17 case _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 17 nmod:npmod _ _ 17 ago _ ADV RB _ 12 advcl _ _ 18 , _ PUNCT , _ 23 punct _ _ 19 the _ DET DT _ 21 det _ _ 20 U.S. _ PROPN NNP _ 21 compound _ _ 21 economy _ NOUN NN _ 23 nsubj _ _ 22 is _ VERB VBZ _ 23 cop _ _ 23 weaker _ ADJ JJR _ 0 root _ _ 24 . _ PUNCT . _ 23 punct _ _ 1 Growth _ NOUN NN _ 3 nsubj _ _ 2 is _ VERB VBZ _ 3 cop _ _ 3 slower _ ADJ JJR _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Profits _ NOUN NNS _ 3 nsubj _ _ 2 are _ VERB VBP _ 3 cop _ _ 3 softer _ ADJ JJR _ 0 root _ _ 4 . _ PUNCT . _ 3 punct _ _ 1 Debt _ NOUN NN _ 2 compound _ _ 2 burdens _ NOUN NNS _ 4 nsubj _ _ 3 are _ VERB VBP _ 4 cop _ _ 4 heavier _ ADJ JJR _ 0 root _ _ 5 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 25 cc _ _ 2 if _ SCONJ IN _ 8 mark _ _ 3 the _ DET DT _ 5 det _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 market _ NOUN NN _ 8 nsubj _ _ 6 does _ AUX VBZ _ 8 aux _ _ 7 n't _ PART RB _ 8 neg _ _ 8 continue _ VERB VB _ 25 advcl _ _ 9 to _ PART TO _ 10 mark _ _ 10 plummet _ VERB VB _ 8 xcomp _ _ 11 , _ PUNCT , _ 25 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 beneficial _ ADJ JJ _ 14 amod _ _ 14 effects _ NOUN NNS _ 25 nsubj _ _ 15 of _ ADP IN _ 18 case _ _ 16 lower _ ADJ JJR _ 18 amod _ _ 17 interest _ NOUN NN _ 18 compound _ _ 18 rates _ NOUN NNS _ 14 nmod _ _ 19 and _ CONJ CC _ 18 cc _ _ 20 a _ DET DT _ 22 det _ _ 21 lower _ ADJ JJR _ 22 amod _ _ 22 dollar _ NOUN NN _ 18 conj _ _ 23 may _ AUX MD _ 25 aux _ _ 24 well _ ADV RB _ 25 advmod _ _ 25 dominate _ VERB VB _ 0 root _ _ 26 . _ PUNCT . _ 25 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Fed _ PROPN NNP _ 17 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 9 nsubj _ _ 5 until _ ADP IN _ 6 case _ _ 6 Friday _ PROPN NNP _ 9 nmod _ _ 7 had _ AUX VBD _ 9 aux _ _ 8 been _ AUX VBN _ 9 aux _ _ 9 resisting _ VERB VBG _ 2 acl:relcl _ _ 10 moves _ NOUN NNS _ 9 dobj _ _ 11 to _ PART TO _ 12 mark _ _ 12 ease _ VERB VB _ 10 acl _ _ 13 credit _ NOUN NN _ 12 dobj _ _ 14 , _ PUNCT , _ 2 punct _ _ 15 is _ AUX VBZ _ 17 auxpass _ _ 16 now _ ADV RB _ 17 advmod _ _ 17 poised _ VERB VBN _ 0 root _ _ 18 to _ PART TO _ 19 mark _ _ 19 pour _ VERB VB _ 17 xcomp _ _ 20 money _ NOUN NN _ 19 dobj _ _ 21 into _ ADP IN _ 23 case _ _ 22 the _ DET DT _ 23 det _ _ 23 economy _ NOUN NN _ 19 nmod _ _ 24 if _ SCONJ IN _ 25 mark _ _ 25 needed _ VERB VBN _ 19 advcl _ _ 26 to _ PART TO _ 27 mark _ _ 27 soothe _ VERB VB _ 25 xcomp _ _ 28 the _ DET DT _ 29 det _ _ 29 markets _ NOUN NNS _ 27 dobj _ _ 30 . _ PUNCT . _ 17 punct _ _ 1 Fed _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 4 nsubj _ _ 3 may _ AUX MD _ 4 aux _ _ 4 protest _ VERB VB _ 0 root _ _ 5 that _ SCONJ IN _ 10 mark _ _ 6 this _ PRON DT _ 10 nsubj _ _ 7 does _ AUX VBZ _ 10 aux _ _ 8 n't _ PART RB _ 10 neg _ _ 9 necessarily _ ADV RB _ 10 advmod _ _ 10 mean _ VERB VB _ 4 ccomp _ _ 11 a _ DET DT _ 13 det _ _ 12 fundamental _ ADJ JJ _ 13 amod _ _ 13 change _ NOUN NN _ 10 dobj _ _ 14 in _ ADP IN _ 17 case _ _ 15 their _ PRON PRP$ _ 17 nmod:poss _ _ 16 interest-rate _ NOUN NN _ 17 compound _ _ 17 policies _ NOUN NNS _ 13 nmod _ _ 18 . _ PUNCT . _ 4 punct _ _ 1 But _ CONJ CC _ 8 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 experience _ NOUN NN _ 8 nsubj _ _ 4 of _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 crash _ NOUN NN _ 3 nmod _ _ 8 suggests _ VERB VBZ _ 0 root _ _ 9 the _ DET DT _ 10 det _ _ 10 Fed _ PROPN NNP _ 12 nsubj _ _ 11 is _ VERB VBZ _ 12 cop _ _ 12 likely _ ADJ JJ _ 8 ccomp _ _ 13 to _ PART TO _ 14 mark _ _ 14 bring _ VERB VB _ 12 xcomp _ _ 15 down _ ADP RP _ 14 advmod _ _ 16 short-term _ ADJ JJ _ 18 amod _ _ 17 interest _ NOUN NN _ 18 compound _ _ 18 rates _ NOUN NNS _ 14 dobj _ _ 19 in _ ADP IN _ 21 case _ _ 20 its _ PRON PRP$ _ 21 nmod:poss _ _ 21 effort _ NOUN NN _ 14 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 calm _ VERB VB _ 21 acl _ _ 24 markets _ NOUN NNS _ 23 dobj _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Anticipating _ VERB VBG _ 9 advcl _ _ 2 the _ DET DT _ 3 det _ _ 3 Fed _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 move _ NOUN NN _ 1 dobj _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 money _ NOUN NN _ 8 compound _ _ 8 traders _ NOUN NNS _ 9 nsubj _ _ 9 lowered _ VERB VBD _ 0 root _ _ 10 a _ DET DT _ 13 det _ _ 11 key _ ADJ JJ _ 13 amod _ _ 12 interest _ NOUN NN _ 13 compound _ _ 13 rate _ NOUN NN _ 9 dobj _ _ 14 known _ VERB VBN _ 13 acl _ _ 15 as _ ADP IN _ 19 case _ _ 16 the _ DET DT _ 19 det _ _ 17 Federal _ PROPN NNP _ 19 compound _ _ 18 Funds _ PROPN NNP _ 19 compound _ _ 19 rate _ NOUN NN _ 14 nmod _ _ 20 to _ ADP TO _ 22 case _ _ 21 8.625 _ NUM CD _ 22 nummod _ _ 22 % _ SYM NN _ 9 nmod _ _ 23 late _ ADV RB _ 24 advmod _ _ 24 Friday _ PROPN NNP _ 9 nmod:tmod _ _ 25 , _ PUNCT , _ 9 punct _ _ 26 down _ ADV RB _ 9 advmod _ _ 27 from _ ADP IN _ 29 case _ _ 28 8.820 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 26 nmod _ _ 30 the _ DET DT _ 31 det _ _ 31 day _ NOUN NN _ 29 nmod:tmod _ _ 32 before _ ADV RB _ 31 advmod _ _ 33 . _ PUNCT . _ 9 punct _ _ 1 Tiny _ ADJ JJ _ 2 amod _ _ 2 movements _ NOUN NNS _ 24 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 rate _ NOUN NN _ 2 nmod _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 which _ PRON WDT _ 8 nsubj _ _ 8 is _ VERB VBZ _ 5 acl:relcl _ _ 9 what _ PRON WP _ 11 dobj _ _ 10 banks _ NOUN NNS _ 11 nsubj _ _ 11 charge _ VERB VBP _ 8 ccomp _ _ 12 each _ DET DT _ 11 dobj _ _ 13 other _ ADJ JJ _ 12 amod _ _ 14 for _ ADP IN _ 16 case _ _ 15 overnight _ ADJ JJ _ 16 amod _ _ 16 loans _ NOUN NNS _ 11 nmod _ _ 17 , _ PUNCT , _ 24 punct _ _ 18 are _ VERB VBP _ 24 cop _ _ 19 usually _ ADV RB _ 24 advmod _ _ 20 among _ ADP IN _ 24 case _ _ 21 the _ DET DT _ 24 det _ _ 22 few _ ADJ JJ _ 24 amod _ _ 23 visible _ ADJ JJ _ 24 amod _ _ 24 tracks _ NOUN NNS _ 0 root _ _ 25 that _ PRON WDT _ 28 dobj _ _ 26 the _ DET DT _ 27 det _ _ 27 Fed _ PROPN NNP _ 28 nsubj _ _ 28 leaves _ VERB VBZ _ 24 acl:relcl _ _ 29 on _ ADP IN _ 32 case _ _ 30 the _ DET DT _ 32 det _ _ 31 monetary _ ADJ JJ _ 32 amod _ _ 32 markets _ NOUN NNS _ 28 nmod _ _ 33 . _ PUNCT . _ 24 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 dollar _ NOUN NN _ 4 nsubj _ _ 3 also _ ADV RB _ 4 advmod _ _ 4 began _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 decline _ VERB VB _ 4 xcomp _ _ 7 Friday _ PROPN NNP _ 4 nmod:tmod _ _ 8 as _ SCONJ IN _ 14 mark _ _ 9 the _ DET DT _ 11 det _ _ 10 stock _ NOUN NN _ 11 compound _ _ 11 market _ NOUN NN _ 13 nmod:poss _ _ 12 's _ PART POS _ 11 case _ _ 13 plunge _ NOUN NN _ 14 nsubj _ _ 14 caused _ VERB VBD _ 4 advcl _ _ 15 some _ DET DT _ 16 det _ _ 16 investors _ NOUN NNS _ 14 dobj _ _ 17 to _ PART TO _ 18 mark _ _ 18 reassess _ VERB VB _ 14 xcomp _ _ 19 their _ PRON PRP$ _ 20 nmod:poss _ _ 20 desire _ NOUN NN _ 18 dobj _ _ 21 to _ PART TO _ 22 mark _ _ 22 invest _ VERB VB _ 20 acl _ _ 23 in _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 U.S. _ PROPN NNP _ 22 nmod _ _ 26 . _ PUNCT . _ 4 punct _ _ 1 Treasury _ PROPN NNP _ 2 compound _ _ 2 officials _ NOUN NNS _ 5 nsubj _ _ 3 have _ AUX VBP _ 5 aux _ _ 4 been _ AUX VBN _ 5 aux _ _ 5 arguing _ VERB VBG _ 0 root _ _ 6 for _ ADP IN _ 7 case _ _ 7 months _ NOUN NNS _ 5 nmod _ _ 8 that _ SCONJ IN _ 13 mark _ _ 9 the _ DET DT _ 10 det _ _ 10 dollar _ NOUN NN _ 12 nmod:poss _ _ 11 's _ PART POS _ 10 case _ _ 12 strength _ NOUN NN _ 13 nsubj _ _ 13 was _ VERB VBD _ 5 ccomp _ _ 14 out _ ADP IN _ 13 advmod _ _ 15 of _ ADP IN _ 16 case _ _ 16 whack _ NOUN NN _ 14 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 economic _ ADJ JJ _ 19 amod _ _ 19 fundamentals _ NOUN NNS _ 16 nmod _ _ 20 , _ PUNCT , _ 13 punct _ _ 21 threatening _ VERB VBG _ 13 xcomp _ _ 22 to _ PART TO _ 23 mark _ _ 23 extinguish _ VERB VB _ 21 xcomp _ _ 24 the _ DET DT _ 26 det _ _ 25 export _ NOUN NN _ 26 compound _ _ 26 boom _ NOUN NN _ 23 dobj _ _ 27 that _ PRON WDT _ 29 nsubj _ _ 28 has _ AUX VBZ _ 29 aux _ _ 29 sustained _ VERB VBN _ 26 acl:relcl _ _ 30 manufacturers _ NOUN NNS _ 29 dobj _ _ 31 for _ ADP IN _ 33 case _ _ 32 several _ ADJ JJ _ 33 amod _ _ 33 years _ NOUN NNS _ 29 nmod _ _ 34 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 market _ NOUN NN _ 3 compound _ _ 3 drop _ NOUN NN _ 7 nsubj _ _ 4 has _ AUX VBZ _ 7 aux _ _ 5 now _ ADV RB _ 7 advmod _ _ 6 apparently _ ADV RB _ 7 advmod _ _ 7 convinced _ VERB VBN _ 0 root _ _ 8 foreign _ ADJ JJ _ 9 amod _ _ 9 investors _ NOUN NNS _ 7 dobj _ _ 10 that _ SCONJ IN _ 14 mark _ _ 11 the _ DET DT _ 12 det _ _ 12 Treasury _ PROPN NNP _ 14 nsubj _ _ 13 was _ VERB VBD _ 14 cop _ _ 14 right _ ADJ JJ _ 7 ccomp _ _ 15 about _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 overpriced _ ADJ JJ _ 18 amod _ _ 18 dollar _ NOUN NN _ 14 nmod _ _ 19 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 modest _ ADJ JJ _ 3 amod _ _ 3 drop _ NOUN NN _ 18 nsubjpass _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 dollar _ NOUN NN _ 3 nmod _ _ 7 -- _ PUNCT : _ 13 punct _ _ 8 only _ ADV RB _ 11 advmod _ _ 9 a _ DET DT _ 11 det _ _ 10 modest _ ADJ JJ _ 11 amod _ _ 11 one _ NUM CD _ 13 dep _ _ 12 , _ PUNCT , _ 13 punct _ _ 13 mind _ VERB VB _ 3 dep _ _ 14 you _ PRON PRP _ 13 dobj _ _ 15 -- _ PUNCT : _ 13 punct _ _ 16 would _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 auxpass _ _ 18 welcomed _ VERB VBN _ 0 root _ _ 19 by _ ADP IN _ 21 case _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 18 nmod _ _ 22 . _ PUNCT . _ 18 punct _ _ 1 That _ PRON DT _ 5 nsubj _ _ 2 was _ VERB VBD _ 5 cop _ _ 3 n't _ PART RB _ 5 neg _ _ 4 the _ DET DT _ 5 det _ _ 5 case _ NOUN NN _ 0 root _ _ 6 in _ ADP IN _ 7 case _ _ 7 1987 _ NUM CD _ 5 nmod _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 when _ ADV WRB _ 14 advmod _ _ 10 the _ DET DT _ 11 det _ _ 11 dollar _ NOUN NN _ 14 nsubj _ _ 12 was _ VERB VBD _ 14 cop _ _ 13 so _ ADV RB _ 14 advmod _ _ 14 weak _ ADJ JJ _ 7 acl:relcl _ _ 15 that _ SCONJ IN _ 22 mark _ _ 16 some _ DET DT _ 17 det _ _ 17 economists _ NOUN NNS _ 22 nsubj _ _ 18 and _ CONJ CC _ 17 cc _ _ 19 government _ NOUN NN _ 20 compound _ _ 20 officials _ NOUN NNS _ 17 conj _ _ 21 seriously _ ADV RB _ 22 advmod _ _ 22 worried _ VERB VBD _ 14 ccomp _ _ 23 that _ SCONJ IN _ 26 mark _ _ 24 it _ PRON PRP _ 26 nsubj _ _ 25 might _ AUX MD _ 26 aux _ _ 26 collapse _ VERB VB _ 22 ccomp _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 producing _ VERB VBG _ 26 ccomp _ _ 29 panic _ NOUN NN _ 28 dobj _ _ 30 among _ ADP IN _ 32 case _ _ 31 foreign _ ADJ JJ _ 32 amod _ _ 32 investors _ NOUN NNS _ 29 nmod _ _ 33 and _ CONJ CC _ 28 cc _ _ 34 diminishing _ VERB VBG _ 28 conj _ _ 35 the _ DET DT _ 36 det _ _ 36 flow _ NOUN NN _ 34 dobj _ _ 37 of _ ADP IN _ 39 case _ _ 38 foreign _ ADJ JJ _ 39 amod _ _ 39 capital _ NOUN NN _ 36 nmod _ _ 40 to _ ADP TO _ 42 case _ _ 41 the _ DET DT _ 42 det _ _ 42 U.S. _ PROPN NNP _ 36 nmod _ _ 43 . _ PUNCT . _ 5 punct _ _ 1 Another _ DET DT _ 3 det _ _ 2 big _ ADJ JJ _ 3 amod _ _ 3 difference _ NOUN NN _ 11 nsubj _ _ 4 between _ ADP IN _ 5 case _ _ 5 1987 _ NUM CD _ 3 nmod _ _ 6 and _ CONJ CC _ 5 cc _ _ 7 1989 _ NUM CD _ 5 conj _ _ 8 is _ VERB VBZ _ 11 cop _ _ 9 n't _ PART RB _ 11 neg _ _ 10 so _ ADV RB _ 11 advmod _ _ 11 comforting _ ADJ JJ _ 0 root _ _ 12 . _ PUNCT . _ 11 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 third _ ADJ JJ _ 4 amod _ _ 4 quarter _ NOUN NN _ 10 nmod _ _ 5 of _ ADP IN _ 6 case _ _ 6 1987 _ NUM CD _ 4 nmod _ _ 7 , _ PUNCT , _ 10 punct _ _ 8 the _ DET DT _ 9 det _ _ 9 economy _ NOUN NN _ 10 nsubj _ _ 10 spurted _ VERB VBD _ 0 root _ _ 11 at _ ADP IN _ 15 case _ _ 12 an _ DET DT _ 15 det _ _ 13 inflation-adjusted _ ADJ JJ _ 15 amod _ _ 14 annual _ ADJ JJ _ 15 amod _ _ 15 rate _ NOUN NN _ 10 nmod _ _ 16 of _ ADP IN _ 18 case _ _ 17 5.3 _ NUM CD _ 18 nummod _ _ 18 % _ SYM NN _ 15 nmod _ _ 19 . _ PUNCT . _ 10 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 consensus _ NOUN NN _ 5 nsubj _ _ 3 among _ ADP IN _ 4 case _ _ 4 economists _ NOUN NNS _ 2 nmod _ _ 5 is _ VERB VBZ _ 0 root _ _ 6 that _ SCONJ IN _ 8 mark _ _ 7 it _ PRON PRP _ 8 nsubj _ _ 8 grew _ VERB VBD _ 5 ccomp _ _ 9 a _ DET DT _ 14 det _ _ 10 much _ ADV RB _ 12 advmod _ _ 11 more _ ADV RBR _ 12 advmod _ _ 12 sluggish _ ADJ JJ _ 14 amod _ _ 13 2.3 _ NUM CD _ 14 nummod _ _ 14 % _ SYM NN _ 8 dobj _ _ 15 in _ ADP IN _ 18 case _ _ 16 the _ DET DT _ 18 det _ _ 17 third _ ADJ JJ _ 18 amod _ _ 18 quarter _ NOUN NN _ 8 nmod _ _ 19 of _ ADP IN _ 20 case _ _ 20 1989 _ NUM CD _ 18 nmod _ _ 21 , _ PUNCT , _ 18 punct _ _ 22 which _ PRON WDT _ 23 nsubj _ _ 23 ended _ VERB VBD _ 18 acl:relcl _ _ 24 two _ NUM CD _ 25 nummod _ _ 25 weeks _ NOUN NNS _ 26 nmod:npmod _ _ 26 ago _ ADV RB _ 23 advmod _ _ 27 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 plunge _ NOUN NN _ 8 nsubj _ _ 3 in _ ADP IN _ 5 case _ _ 4 stock _ NOUN NN _ 5 compound _ _ 5 prices _ NOUN NNS _ 2 nmod _ _ 6 `` _ PUNCT `` _ 8 punct _ _ 7 is _ AUX VBZ _ 8 aux _ _ 8 happening _ VERB VBG _ 21 ccomp _ _ 9 at _ ADP IN _ 11 case _ _ 10 a _ DET DT _ 11 det _ _ 11 time _ NOUN NN _ 8 nmod _ _ 12 when _ ADV WRB _ 17 advmod _ _ 13 the _ DET DT _ 14 det _ _ 14 economy _ NOUN NN _ 17 nsubj _ _ 15 has _ AUX VBZ _ 17 aux _ _ 16 already _ ADV RB _ 17 advmod _ _ 17 slowed _ VERB VBN _ 11 acl:relcl _ _ 18 down _ ADP RP _ 17 compound:prt _ _ 19 , _ PUNCT , _ 21 punct _ _ 20 '' _ PUNCT '' _ 21 punct _ _ 21 says _ VERB VBZ _ 0 root _ _ 22 economist _ NOUN NN _ 24 compound _ _ 23 Lawrence _ PROPN NNP _ 24 compound _ _ 24 Chimerine _ PROPN NNP _ 21 nsubj _ _ 25 of _ ADP IN _ 27 case _ _ 26 WEFA _ PROPN NNP _ 27 compound _ _ 27 Group _ PROPN NNP _ 24 nmod _ _ 28 , _ PUNCT , _ 27 punct _ _ 29 a _ DET DT _ 36 det _ _ 30 Bala _ PROPN NNP _ 36 dep _ _ 31 Cynwyd _ PROPN NNP _ 30 compound _ _ 32 , _ PUNCT , _ 30 punct _ _ 33 Pa. _ PROPN NNP _ 30 dep _ _ 34 , _ PUNCT , _ 30 punct _ _ 35 forecasting _ NOUN NN _ 36 compound _ _ 36 company _ NOUN NN _ 27 appos _ _ 37 . _ PUNCT . _ 21 punct _ _ 1 `` _ PUNCT `` _ 8 punct _ _ 2 A _ DET DT _ 3 det _ _ 3 lot _ NOUN NN _ 8 nsubjpass _ _ 4 of _ ADP IN _ 6 case _ _ 5 pent-up _ ADJ JJ _ 6 amod _ _ 6 demand _ NOUN NN _ 3 nmod _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 gone _ VERB VBN _ 0 root _ _ 9 . _ PUNCT . _ 8 punct _ _ 10 '' _ PUNCT '' _ 8 punct _ _ 1 Consumer _ NOUN NN _ 2 compound _ _ 2 spending _ NOUN NN _ 4 nsubj _ _ 3 did _ AUX VBD _ 4 aux _ _ 4 drop _ VERB VB _ 26 ccomp _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 months _ NOUN NNS _ 4 nmod _ _ 8 following _ VERB VBG _ 10 case _ _ 9 Black _ PROPN NNP _ 10 compound _ _ 10 Monday _ PROPN NNP _ 7 nmod _ _ 11 1987 _ NUM CD _ 10 nummod _ _ 12 -- _ PUNCT : _ 17 punct _ _ 13 `` _ PUNCT `` _ 17 punct _ _ 14 but _ CONJ CC _ 17 cc _ _ 15 only _ ADV RB _ 16 advmod _ _ 16 slightly _ ADV RB _ 17 advmod _ _ 17 and _ CONJ CC _ 4 dep _ _ 18 for _ ADP IN _ 21 case _ _ 19 a _ DET DT _ 21 det _ _ 20 short _ ADJ JJ _ 21 amod _ _ 21 period _ NOUN NN _ 17 conj _ _ 22 of _ ADP IN _ 23 case _ _ 23 time _ NOUN NN _ 21 nmod _ _ 24 , _ PUNCT , _ 26 punct _ _ 25 '' _ PUNCT '' _ 26 punct _ _ 26 recalls _ VERB VBZ _ 0 root _ _ 27 Mr. _ PROPN NNP _ 28 compound _ _ 28 Zarnowitz _ PROPN NNP _ 26 nsubj _ _ 29 , _ PUNCT , _ 28 punct _ _ 30 a _ DET DT _ 32 det _ _ 31 longtime _ ADJ JJ _ 32 amod _ _ 32 student _ NOUN NN _ 28 appos _ _ 33 of _ ADP IN _ 35 case _ _ 34 business _ NOUN NN _ 35 compound _ _ 35 cycles _ NOUN NNS _ 32 nmod _ _ 36 . _ PUNCT . _ 26 punct _ _ 1 `` _ PUNCT `` _ 4 punct _ _ 2 That _ PRON DT _ 4 nsubjpass _ _ 3 was _ AUX VBD _ 4 auxpass _ _ 4 offset _ VERB VBN _ 0 root _ _ 5 by _ ADP IN _ 6 case _ _ 6 strength _ NOUN NN _ 4 nmod _ _ 7 elsewhere _ ADV RB _ 6 advmod _ _ 8 . _ PUNCT . _ 4 punct _ _ 1 -LCB- _ PUNCT -LRB- _ 8 punct _ _ 2 The _ DET DT _ 3 det _ _ 3 effects _ NOUN NNS _ 8 nsubj _ _ 4 -RCB- _ PUNCT -RRB- _ 8 punct _ _ 5 were _ VERB VBD _ 8 cop _ _ 6 much _ ADV RB _ 7 advmod _ _ 7 less _ ADV RBR _ 8 advmod _ _ 8 severe _ ADJ JJ _ 0 root _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 less _ ADV RBR _ 11 advmod _ _ 11 prolonged _ ADJ JJ _ 8 conj _ _ 12 than _ SCONJ IN _ 15 mark _ _ 13 some _ DET DT _ 15 nsubj _ _ 14 had _ AUX VBD _ 15 aux _ _ 15 feared _ VERB VBN _ 8 ccomp _ _ 16 or _ CONJ CC _ 15 cc _ _ 17 expected _ VERB VBN _ 15 conj _ _ 18 . _ PUNCT . _ 8 punct _ _ 1 '' _ PUNCT '' _ 14 punct _ _ 2 Today _ NOUN NN _ 14 nmod:tmod _ _ 3 , _ PUNCT , _ 5 punct _ _ 4 he _ PRON PRP _ 5 nsubj _ _ 5 frets _ VERB VBZ _ 14 parataxis _ _ 6 , _ PUNCT , _ 5 punct _ _ 7 exports _ NOUN NNS _ 14 nsubj _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 business _ NOUN NN _ 11 compound _ _ 10 investment _ NOUN NN _ 11 compound _ _ 11 spending _ NOUN NN _ 7 conj _ _ 12 may _ AUX MD _ 14 aux _ _ 13 be _ VERB VB _ 14 cop _ _ 14 insufficient _ ADJ JJ _ 0 root _ _ 15 to _ PART TO _ 16 mark _ _ 16 pick _ VERB VB _ 14 xcomp _ _ 17 up _ ADP RP _ 16 compound:prt _ _ 18 the _ DET DT _ 19 det _ _ 19 slack _ ADJ JJ _ 16 dobj _ _ 20 if _ SCONJ IN _ 23 mark _ _ 21 stock _ NOUN NN _ 22 compound _ _ 22 prices _ NOUN NNS _ 23 nsubj _ _ 23 sink _ VERB VBP _ 14 advcl _ _ 24 this _ DET DT _ 25 det _ _ 25 week _ NOUN NN _ 23 nmod:tmod _ _ 26 and _ CONJ CC _ 23 cc _ _ 27 if _ SCONJ IN _ 29 mark _ _ 28 consumers _ NOUN NNS _ 29 nsubj _ _ 29 retrench _ VERB VBP _ 23 conj _ _ 30 in _ ADP IN _ 31 case _ _ 31 reaction _ NOUN NN _ 29 nmod _ _ 32 . _ PUNCT . _ 14 punct _ _ 1 What _ PRON WP _ 3 nsubj _ _ 2 's _ VERB VBZ _ 3 cop _ _ 3 more _ ADJ JJR _ 11 advcl _ _ 4 , _ PUNCT , _ 11 punct _ _ 5 the _ DET DT _ 8 det _ _ 6 corporate _ ADJ JJ _ 8 amod _ _ 7 borrowing _ NOUN NN _ 8 compound _ _ 8 binge _ NOUN NN _ 11 nsubj _ _ 9 has _ AUX VBZ _ 11 aux _ _ 10 n't _ PART RB _ 11 neg _ _ 11 abated _ VERB VBN _ 0 root _ _ 12 in _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 16 det _ _ 14 past _ ADJ JJ _ 16 amod _ _ 15 two _ NUM CD _ 16 nummod _ _ 16 years _ NOUN NNS _ 11 nmod _ _ 17 . _ PUNCT . _ 11 punct _ _ 1 `` _ PUNCT `` _ 27 punct _ _ 2 We _ PRON PRP _ 4 nsubj _ _ 3 've _ AUX VBP _ 4 aux _ _ 4 had _ VERB VBN _ 27 ccomp _ _ 5 two _ NUM CD _ 7 nummod _ _ 6 more _ ADJ JJR _ 7 amod _ _ 7 years _ NOUN NNS _ 4 dobj _ _ 8 of _ ADP IN _ 10 case _ _ 9 significant _ ADJ JJ _ 10 amod _ _ 10 accumulation _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 debt _ NOUN NN _ 10 nmod _ _ 13 ... _ PUNCT : _ 4 punct _ _ 14 just _ ADV RB _ 17 advmod _ _ 15 at _ ADP IN _ 17 case _ _ 16 the _ DET DT _ 17 det _ _ 17 time _ NOUN NN _ 4 nmod _ _ 18 when _ ADV WRB _ 22 advmod _ _ 19 earnings _ NOUN NNS _ 22 nsubjpass _ _ 20 are _ AUX VBP _ 22 aux _ _ 21 being _ AUX VBG _ 22 auxpass _ _ 22 squeezed _ VERB VBN _ 17 acl:relcl _ _ 23 , _ PUNCT , _ 27 punct _ _ 24 '' _ PUNCT '' _ 27 punct _ _ 25 Mr. _ PROPN NNP _ 26 compound _ _ 26 Chimerine _ PROPN NNP _ 27 nsubj _ _ 27 notes _ VERB VBZ _ 0 root _ _ 28 . _ PUNCT . _ 27 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 more _ ADV RBR _ 5 dep _ _ 3 a _ DET DT _ 4 det _ _ 4 company _ NOUN NN _ 5 nsubj _ _ 5 relies _ VERB VBZ _ 13 dep _ _ 6 on _ ADP IN _ 8 case _ _ 7 borrowed _ VERB VBN _ 8 amod _ _ 8 money _ NOUN NN _ 5 nmod _ _ 9 , _ PUNCT , _ 13 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 greater _ ADJ JJR _ 13 dep _ _ 12 its _ PRON PRP$ _ 13 nmod:poss _ _ 13 sensitivity _ NOUN NN _ 0 root _ _ 14 to _ ADP TO _ 17 case _ _ 15 an _ DET DT _ 17 det _ _ 16 economic _ ADJ JJ _ 17 amod _ _ 17 slowdown _ NOUN NN _ 13 nmod _ _ 18 . _ PUNCT . _ 13 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 9 nsubj _ _ 3 with _ ADP IN _ 7 case _ _ 4 a _ DET DT _ 7 det _ _ 5 strong _ ADJ JJ _ 7 amod _ _ 6 balance _ NOUN NN _ 7 compound _ _ 7 sheet _ NOUN NN _ 2 nmod _ _ 8 can _ AUX MD _ 9 aux _ _ 9 withstand _ VERB VB _ 0 root _ _ 10 an _ DET DT _ 12 det _ _ 11 unanticipated _ ADJ JJ _ 12 amod _ _ 12 storm _ NOUN NN _ 9 dobj _ _ 13 ; _ PUNCT : _ 9 punct _ _ 14 a _ DET DT _ 17 det _ _ 15 highly _ ADV RB _ 16 advmod _ _ 16 leveraged _ ADJ JJ _ 17 amod _ _ 17 company _ NOUN NN _ 19 nsubj _ _ 18 may _ AUX MD _ 19 aux _ _ 19 end _ VERB VB _ 9 parataxis _ _ 20 up _ ADP RP _ 19 compound:prt _ _ 21 in _ ADP IN _ 23 case _ _ 22 bankruptcy _ NOUN NN _ 23 compound _ _ 23 court _ NOUN NN _ 19 nmod _ _ 24 . _ PUNCT . _ 9 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 Fed _ PROPN NNP _ 7 nsubj _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 of _ ADP IN _ 5 case _ _ 5 course _ NOUN NN _ 7 nmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 knows _ VERB VBZ _ 0 root _ _ 8 that _ PRON DT _ 7 dobj _ _ 9 very _ ADV RB _ 10 advmod _ _ 10 well _ ADV RB _ 7 advmod _ _ 11 -- _ PUNCT : _ 7 punct _ _ 12 hence _ ADV RB _ 7 dep _ _ 13 its _ PRON PRP$ _ 14 nmod:poss _ _ 14 readiness _ NOUN NN _ 7 dep _ _ 15 to _ PART TO _ 16 mark _ _ 16 pump _ VERB VB _ 14 acl _ _ 17 credit _ NOUN NN _ 16 dobj _ _ 18 into _ ADP IN _ 20 case _ _ 19 the _ DET DT _ 20 det _ _ 20 economy _ NOUN NN _ 16 nmod _ _ 21 this _ DET DT _ 22 det _ _ 22 morning _ NOUN NN _ 16 nmod:tmod _ _ 23 . _ PUNCT . _ 7 punct _ _ 1 But _ CONJ CC _ 9 cc _ _ 2 , _ PUNCT , _ 9 punct _ _ 3 in _ ADP IN _ 5 case _ _ 4 the _ DET DT _ 5 det _ _ 5 process _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 Fed _ PROPN NNP _ 9 nsubj _ _ 9 risks _ VERB VBZ _ 0 root _ _ 10 reigniting _ VERB VBG _ 9 xcomp _ _ 11 inflation _ NOUN NN _ 10 dobj _ _ 12 . _ PUNCT . _ 9 punct _ _ 1 Even _ ADV RB _ 5 advmod _ _ 2 before _ ADP IN _ 5 case _ _ 3 Friday _ PROPN NNP _ 5 nmod:poss _ _ 4 's _ PART POS _ 3 case _ _ 5 events _ NOUN NNS _ 13 nmod _ _ 6 , _ PUNCT , _ 13 punct _ _ 7 Harvard _ PROPN NNP _ 11 compound _ _ 8 University _ PROPN NNP _ 11 compound _ _ 9 economist _ NOUN NN _ 11 compound _ _ 10 Benjamin _ PROPN NNP _ 11 compound _ _ 11 Friedman _ PROPN NNP _ 13 nsubj _ _ 12 was _ AUX VBD _ 13 aux _ _ 13 arguing _ VERB VBG _ 0 root _ _ 14 that _ SCONJ IN _ 20 mark _ _ 15 the _ DET DT _ 16 det _ _ 16 Fed _ PROPN NNP _ 20 nsubj _ _ 17 wo _ AUX MD _ 20 aux _ _ 18 n't _ PART RB _ 20 neg _ _ 19 be _ VERB VB _ 20 cop _ _ 20 able _ ADJ JJ _ 13 ccomp _ _ 21 to _ PART TO _ 22 mark _ _ 22 live _ VERB VB _ 20 xcomp _ _ 23 up _ ADP RP _ 22 compound:prt _ _ 24 to _ ADP TO _ 27 case _ _ 25 its _ PRON PRP$ _ 27 nmod:poss _ _ 26 tough _ ADJ JJ _ 27 amod _ _ 27 words _ NOUN NNS _ 22 nmod _ _ 28 on _ SCONJ IN _ 29 mark _ _ 29 eliminating _ VERB VBG _ 27 acl _ _ 30 inflation _ NOUN NN _ 29 dobj _ _ 31 because _ ADP IN _ 34 case _ _ 32 of _ ADP IN _ 31 mwe _ _ 33 its _ PRON PRP$ _ 34 nmod:poss _ _ 34 responsibility _ NOUN NN _ 22 nmod _ _ 35 to _ PART TO _ 36 mark _ _ 36 protect _ VERB VB _ 34 acl _ _ 37 fragile _ ADJ JJ _ 39 amod _ _ 38 financial _ ADJ JJ _ 39 amod _ _ 39 markets _ NOUN NNS _ 36 dobj _ _ 40 , _ PUNCT , _ 39 punct _ _ 41 banks _ NOUN NNS _ 39 conj _ _ 42 and _ CONJ CC _ 39 cc _ _ 43 highly _ ADV RB _ 44 advmod _ _ 44 leveraged _ ADJ JJ _ 45 amod _ _ 45 corporations _ NOUN NNS _ 39 conj _ _ 46 . _ PUNCT . _ 13 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 biggest _ ADJ JJS _ 3 amod _ _ 3 threat _ NOUN NN _ 12 nsubj _ _ 4 on _ ADP IN _ 7 case _ _ 5 the _ DET DT _ 7 det _ _ 6 economic _ ADJ JJ _ 7 amod _ _ 7 horizon _ NOUN NN _ 3 nmod _ _ 8 right _ ADV RB _ 9 advmod _ _ 9 now _ ADV RB _ 3 advmod _ _ 10 is _ VERB VBZ _ 12 cop _ _ 11 n't _ PART RB _ 12 neg _ _ 12 recession _ NOUN NN _ 15 ccomp _ _ 13 , _ PUNCT , _ 15 punct _ _ 14 he _ PRON PRP _ 15 nsubj _ _ 15 reasons _ VERB VBZ _ 0 root _ _ 16 ; _ PUNCT : _ 15 punct _ _ 17 it _ PRON PRP _ 20 nsubj _ _ 18 's _ VERB VBZ _ 20 cop _ _ 19 an _ DET DT _ 20 det _ _ 20 outbreak _ NOUN NN _ 15 parataxis _ _ 21 of _ ADP IN _ 23 case _ _ 22 uncontrolled _ ADJ JJ _ 23 amod _ _ 23 inflation _ NOUN NN _ 20 nmod _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 In _ ADP IN _ 3 case _ _ 2 the _ DET DT _ 3 det _ _ 3 end _ NOUN NN _ 14 nmod _ _ 4 , _ PUNCT , _ 8 punct _ _ 5 the _ DET DT _ 7 det _ _ 6 1987 _ NUM CD _ 7 nummod _ _ 7 collapse _ NOUN NN _ 8 nsubj _ _ 8 suggested _ VERB VBD _ 14 parataxis _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 the _ DET DT _ 11 det _ _ 11 economy _ NOUN NN _ 14 nsubj _ _ 12 does _ AUX VBZ _ 14 aux _ _ 13 n't _ PART RB _ 14 neg _ _ 14 move _ VERB VB _ 0 root _ _ 15 in _ ADP IN _ 16 case _ _ 16 lockstep _ NOUN NN _ 14 nmod _ _ 17 with _ ADP IN _ 19 case _ _ 18 stock _ NOUN NN _ 19 compound _ _ 19 prices _ NOUN NNS _ 16 nmod _ _ 20 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 economy _ NOUN NN _ 7 nsubj _ _ 3 does _ AUX VBZ _ 7 aux _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 however _ ADV RB _ 7 advmod _ _ 6 , _ PUNCT , _ 7 punct _ _ 7 depend _ VERB VB _ 0 root _ _ 8 on _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 confidence _ NOUN NN _ 7 nmod _ _ 11 of _ ADP IN _ 12 case _ _ 12 businesses _ NOUN NNS _ 10 nmod _ _ 13 , _ PUNCT , _ 12 punct _ _ 14 consumers _ NOUN NNS _ 12 conj _ _ 15 and _ CONJ CC _ 12 cc _ _ 16 foreign _ ADJ JJ _ 17 amod _ _ 17 investors _ NOUN NNS _ 12 conj _ _ 18 . _ PUNCT . _ 7 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 panic _ NOUN NN _ 9 nsubj _ _ 3 on _ ADP IN _ 5 case _ _ 4 Wall _ PROPN NNP _ 5 compound _ _ 5 Street _ PROPN NNP _ 2 nmod _ _ 6 does _ AUX VBZ _ 9 aux _ _ 7 n't _ PART RB _ 9 neg _ _ 8 exactly _ ADV RB _ 9 advmod _ _ 9 inspire _ VERB VB _ 0 root _ _ 10 confidence _ NOUN NN _ 9 dobj _ _ 11 . _ PUNCT . _ 9 punct _ _ 1 Surveys _ NOUN NNS _ 2 nsubj _ _ 2 suggested _ VERB VBD _ 0 root _ _ 3 that _ SCONJ IN _ 7 mark _ _ 4 consumer _ NOUN NN _ 5 compound _ _ 5 confidence _ NOUN NN _ 7 nsubj _ _ 6 was _ VERB VBD _ 7 cop _ _ 7 high _ ADJ JJ _ 2 ccomp _ _ 8 before _ ADP IN _ 9 case _ _ 9 Friday _ PROPN NNP _ 7 nmod _ _ 10 . _ PUNCT . _ 2 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 190-point _ ADJ JJ _ 3 amod _ _ 3 drop _ NOUN NN _ 6 nsubj _ _ 4 is _ VERB VBZ _ 6 cop _ _ 5 n't _ PART RB _ 6 neg _ _ 6 likely _ ADJ JJ _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 make _ VERB VB _ 6 xcomp _ _ 9 much _ ADJ JJ _ 8 dobj _ _ 10 of _ ADP IN _ 12 case _ _ 11 a _ DET DT _ 12 det _ _ 12 dent _ NOUN NN _ 9 nmod _ _ 13 ; _ PUNCT : _ 6 punct _ _ 14 multiply _ VERB VB _ 6 parataxis _ _ 15 that _ ADP IN _ 14 dobj _ _ 16 a _ DET DT _ 18 det _ _ 17 few _ ADJ JJ _ 18 amod _ _ 18 times _ NOUN NNS _ 19 nmod:npmod _ _ 19 over _ ADV RB _ 14 advmod _ _ 20 , _ PUNCT , _ 14 punct _ _ 21 though _ ADV RB _ 14 advmod _ _ 22 , _ PUNCT , _ 14 punct _ _ 23 and _ CONJ CC _ 14 cc _ _ 24 it _ PRON PRP _ 25 nsubj _ _ 25 will _ AUX MD _ 14 conj _ _ 26 . _ PUNCT . _ 6 punct _ _ 1 If _ SCONJ IN _ 20 mark _ _ 2 the _ DET DT _ 3 det _ _ 3 reactions _ NOUN NNS _ 20 nsubj _ _ 4 of _ ADP IN _ 5 case _ _ 5 executives _ NOUN NNS _ 3 nmod _ _ 6 gathered _ VERB VBD _ 5 acl _ _ 7 Saturday _ PROPN NNP _ 6 nmod:tmod _ _ 8 at _ ADP IN _ 10 case _ _ 9 Hot _ PROPN NNP _ 10 compound _ _ 10 Springs _ PROPN NNP _ 6 nmod _ _ 11 , _ PUNCT , _ 10 punct _ _ 12 Va. _ PROPN NNP _ 10 appos _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 for _ ADP IN _ 18 case _ _ 15 the _ DET DT _ 18 det _ _ 16 Business _ PROPN NNP _ 18 compound _ _ 17 Council _ PROPN NNP _ 18 compound _ _ 18 meetings _ NOUN NNS _ 6 nmod _ _ 19 are _ VERB VBP _ 20 cop _ _ 20 typical _ ADJ JJ _ 27 advcl _ _ 21 , _ PUNCT , _ 27 punct _ _ 22 business _ NOUN NN _ 23 compound _ _ 23 leaders _ NOUN NNS _ 27 nsubjpass _ _ 24 were _ AUX VBD _ 27 auxpass _ _ 25 n't _ PART RB _ 27 neg _ _ 26 overly _ ADV RB _ 27 advmod _ _ 27 rattled _ VERB VBN _ 0 root _ _ 28 by _ ADP IN _ 31 case _ _ 29 Friday _ PROPN NNP _ 31 nmod:poss _ _ 30 's _ PART POS _ 29 case _ _ 31 decline _ NOUN NN _ 27 nmod _ _ 32 . _ PUNCT . _ 27 punct _ _ 1 And _ CONJ CC _ 18 cc _ _ 2 if _ SCONJ IN _ 5 mark _ _ 3 foreign _ ADJ JJ _ 4 amod _ _ 4 investors _ NOUN NNS _ 5 nsubj _ _ 5 become _ VERB VBP _ 18 advcl _ _ 6 a _ DET DT _ 7 det _ _ 7 tad _ NOUN NN _ 8 nmod:npmod _ _ 8 more _ ADV RBR _ 9 advmod _ _ 9 cautious _ ADJ JJ _ 5 xcomp _ _ 10 -- _ PUNCT : _ 18 punct _ _ 11 well _ ADV RB _ 18 advmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 the _ DET DT _ 14 det _ _ 14 dollar _ NOUN NN _ 17 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 recent _ ADJ JJ _ 17 amod _ _ 17 strength _ NOUN NN _ 18 nsubj _ _ 18 suggests _ VERB VBZ _ 0 root _ _ 19 that _ SCONJ IN _ 23 mark _ _ 20 the _ DET DT _ 21 det _ _ 21 U.S. _ PROPN NNP _ 23 nsubj _ _ 22 can _ AUX MD _ 23 aux _ _ 23 stand _ VERB VB _ 18 ccomp _ _ 24 it _ PRON PRP _ 23 dobj _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 On _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 bottom _ ADJ JJ _ 4 amod _ _ 4 line _ NOUN NN _ 14 nmod _ _ 5 , _ PUNCT , _ 14 punct _ _ 6 the _ DET DT _ 9 det _ _ 7 most _ ADV RBS _ 8 advmod _ _ 8 comforting _ ADJ JJ _ 9 amod _ _ 9 fact _ NOUN NN _ 14 nsubj _ _ 10 for _ ADP IN _ 13 case _ _ 11 the _ DET DT _ 13 det _ _ 12 economic _ ADJ JJ _ 13 amod _ _ 13 outlook _ NOUN NN _ 9 nmod _ _ 14 is _ VERB VBZ _ 0 root _ _ 15 that _ SCONJ IN _ 20 mark _ _ 16 we _ PRON PRP _ 20 nsubj _ _ 17 've _ AUX VBP _ 20 aux _ _ 18 been _ VERB VBN _ 20 cop _ _ 19 through _ ADP IN _ 20 case _ _ 20 this _ PRON DT _ 14 ccomp _ _ 21 before _ ADV RB _ 20 advmod _ _ 22 . _ PUNCT . _ 14 punct _ _ 1 Two _ NUM CD _ 2 nummod _ _ 2 years _ NOUN NNS _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 14 advmod _ _ 4 , _ PUNCT , _ 14 punct _ _ 5 about _ ADV RB _ 8 advmod _ _ 6 the _ DET DT _ 8 det _ _ 7 only _ ADJ JJ _ 8 amod _ _ 8 point _ NOUN NN _ 14 nsubj _ _ 9 of _ ADP IN _ 10 case _ _ 10 comparison _ NOUN NN _ 8 nmod _ _ 11 was _ VERB VBD _ 14 cop _ _ 12 the _ DET DT _ 14 det _ _ 13 1929 _ NUM CD _ 14 nummod _ _ 14 crash _ NOUN NN _ 0 root _ _ 15 and _ CONJ CC _ 14 cc _ _ 16 the _ DET DT _ 18 det _ _ 17 subsequent _ ADJ JJ _ 18 amod _ _ 18 Depression _ NOUN NN _ 14 conj _ _ 19 . _ PUNCT . _ 14 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 doomsayers _ NOUN NNS _ 3 nsubj _ _ 3 had _ VERB VBD _ 0 root _ _ 4 a _ DET DT _ 6 det _ _ 5 receptive _ ADJ JJ _ 6 amod _ _ 6 audience _ NOUN NN _ 3 dobj _ _ 7 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 prosperity _ NOUN NN _ 7 nsubj _ _ 3 that _ PRON WDT _ 4 nsubj _ _ 4 followed _ VERB VBD _ 2 acl:relcl _ _ 5 Black _ PROPN NNP _ 6 compound _ _ 6 Monday _ PROPN NNP _ 4 nmod:tmod _ _ 7 permits _ VERB VBZ _ 0 root _ _ 8 a _ DET DT _ 11 det _ _ 9 more _ ADV RBR _ 10 advmod _ _ 10 optimistic _ ADJ JJ _ 11 amod _ _ 11 view _ NOUN NN _ 7 dobj _ _ 12 today _ NOUN NN _ 7 nmod:tmod _ _ 13 . _ PUNCT . _ 7 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 very _ ADV RB _ 4 advmod _ _ 4 least _ ADJ JJS _ 10 nmod _ _ 5 , _ PUNCT , _ 10 punct _ _ 6 the _ DET DT _ 7 det _ _ 7 establishment _ NOUN NN _ 10 nsubj _ _ 8 here _ ADV RB _ 7 advmod _ _ 9 is _ AUX VBZ _ 10 aux _ _ 10 taking _ VERB VBG _ 0 root _ _ 11 comfort _ NOUN NN _ 10 dobj _ _ 12 from _ ADP IN _ 16 case _ _ 13 the _ DET DT _ 14 det _ _ 14 nation _ NOUN NN _ 16 nmod:poss _ _ 15 's _ PART POS _ 14 case _ _ 16 success _ NOUN NN _ 10 nmod _ _ 17 in _ SCONJ IN _ 18 mark _ _ 18 handling _ VERB VBG _ 16 acl _ _ 19 the _ DET DT _ 21 det _ _ 20 last _ ADJ JJ _ 21 amod _ _ 21 go-around _ NOUN NN _ 18 dobj _ _ 22 . _ PUNCT . _ 10 punct _ _ 1 As _ SCONJ IN _ 10 mark _ _ 2 Sen. _ PROPN NNP _ 4 compound _ _ 3 Lloyd _ PROPN NNP _ 4 compound _ _ 4 Bentsen _ PROPN NNP _ 10 nsubj _ _ 5 -LRB- _ PUNCT -LRB- _ 6 punct _ _ 6 D. _ PROPN NNP _ 4 appos _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Texas _ PROPN NNP _ 6 dep _ _ 9 -RRB- _ PUNCT -RRB- _ 6 punct _ _ 10 observed _ VERB VBD _ 16 advcl _ _ 11 yesterday _ NOUN NN _ 10 nmod:tmod _ _ 12 , _ PUNCT , _ 16 punct _ _ 13 `` _ PUNCT `` _ 16 punct _ _ 14 The _ DET DT _ 15 det _ _ 15 Fed _ PROPN NNP _ 16 nsubj _ _ 16 avoided _ VERB VBD _ 0 root _ _ 17 a _ DET DT _ 18 det _ _ 18 meltdown _ ADJ JJ _ 16 dobj _ _ 19 last _ ADJ JJ _ 20 amod _ _ 20 time _ NOUN NN _ 16 nmod:tmod _ _ 21 . _ PUNCT . _ 16 punct _ _ 1 They _ PRON PRP _ 4 nsubj _ _ 2 are _ VERB VBP _ 4 cop _ _ 3 more _ ADV RBR _ 4 advmod _ _ 4 sophisticated _ ADJ JJ _ 0 root _ _ 5 this _ DET DT _ 6 det _ _ 6 time _ NOUN NN _ 4 nmod:tmod _ _ 7 . _ PUNCT . _ 4 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 chemical _ NOUN NN _ 3 compound _ _ 3 industry _ NOUN NN _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 expected _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 7 mark _ _ 7 report _ VERB VB _ 5 xcomp _ _ 8 that _ SCONJ IN _ 10 mark _ _ 9 profits _ NOUN NNS _ 10 nsubj _ _ 10 eroded _ VERB VBD _ 7 ccomp _ _ 11 in _ ADP IN _ 14 case _ _ 12 the _ DET DT _ 14 det _ _ 13 third _ ADJ JJ _ 14 amod _ _ 14 quarter _ NOUN NN _ 10 nmod _ _ 15 because _ ADP IN _ 18 case _ _ 16 of _ ADP IN _ 15 mwe _ _ 17 skidding _ VERB VBG _ 18 amod _ _ 18 prices _ NOUN NNS _ 10 nmod _ _ 19 in _ ADP IN _ 22 case _ _ 20 the _ DET DT _ 22 det _ _ 21 commodity _ NOUN NN _ 22 compound _ _ 22 end _ NOUN NN _ 18 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 the _ DET DT _ 25 det _ _ 25 business _ NOUN NN _ 22 nmod _ _ 26 . _ PUNCT . _ 5 punct _ _ 1 Producers _ NOUN NNS _ 18 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 commodity _ NOUN NN _ 4 compound _ _ 4 chemicals _ NOUN NNS _ 1 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 the _ DET DT _ 8 det _ _ 7 basic _ ADJ JJ _ 8 amod _ _ 8 chemicals _ NOUN NNS _ 4 appos _ _ 9 produced _ VERB VBN _ 8 acl _ _ 10 in _ ADP IN _ 12 case _ _ 11 huge _ ADJ JJ _ 12 amod _ _ 12 volumes _ NOUN NNS _ 9 nmod _ _ 13 for _ ADP IN _ 15 case _ _ 14 other _ ADJ JJ _ 15 amod _ _ 15 manufacturers _ NOUN NNS _ 9 nmod _ _ 16 , _ PUNCT , _ 4 punct _ _ 17 have _ AUX VBP _ 18 aux _ _ 18 seen _ VERB VBN _ 0 root _ _ 19 sharp _ ADJ JJ _ 21 amod _ _ 20 inventory _ NOUN NN _ 21 compound _ _ 21 cutting _ NOUN NN _ 18 dobj _ _ 22 by _ ADP IN _ 23 case _ _ 23 buyers _ NOUN NNS _ 21 nmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 Once _ ADV RB _ 4 advmod _ _ 2 the _ DET DT _ 4 det _ _ 3 chief _ ADJ JJ _ 4 amod _ _ 4 beneficiaries _ NOUN NNS _ 18 ccomp _ _ 5 of _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 7 det _ _ 7 industry _ NOUN NN _ 11 nmod:poss _ _ 8 's _ PART POS _ 7 case _ _ 9 now _ ADV RB _ 10 advmod _ _ 10 fading _ VERB VBG _ 11 amod _ _ 11 boom _ NOUN NN _ 4 nmod _ _ 12 , _ PUNCT , _ 18 punct _ _ 13 these _ DET DT _ 14 det _ _ 14 producers _ NOUN NNS _ 18 nsubj _ _ 15 also _ ADV RB _ 18 advmod _ _ 16 will _ AUX MD _ 18 aux _ _ 17 be _ AUX VB _ 18 aux _ _ 18 reporting _ VERB VBG _ 0 root _ _ 19 against _ ADP IN _ 22 case _ _ 20 exceptionally _ ADV RB _ 21 advmod _ _ 21 strong _ ADJ JJ _ 22 amod _ _ 22 performances _ NOUN NNS _ 18 nmod _ _ 23 in _ ADP IN _ 27 case _ _ 24 the _ DET DT _ 27 det _ _ 25 1988 _ NUM CD _ 27 nummod _ _ 26 third _ ADJ JJ _ 27 amod _ _ 27 quarter _ NOUN NN _ 22 nmod _ _ 28 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 20 punct _ _ 2 For _ ADP IN _ 3 case _ _ 3 some _ DET DT _ 13 nmod _ _ 4 of _ ADP IN _ 6 case _ _ 5 these _ DET DT _ 6 det _ _ 6 companies _ NOUN NNS _ 3 nmod _ _ 7 , _ PUNCT , _ 13 punct _ _ 8 this _ PRON DT _ 13 nsubj _ _ 9 will _ AUX MD _ 13 aux _ _ 10 be _ VERB VB _ 13 cop _ _ 11 the _ DET DT _ 13 det _ _ 12 first _ ADJ JJ _ 13 amod _ _ 13 quarter _ NOUN NN _ 20 ccomp _ _ 14 with _ ADP IN _ 17 case _ _ 15 year-to-year _ ADJ JJ _ 17 amod _ _ 16 negative _ ADJ JJ _ 17 amod _ _ 17 comparisons _ NOUN NNS _ 13 nmod _ _ 18 , _ PUNCT , _ 20 punct _ _ 19 '' _ PUNCT '' _ 20 punct _ _ 20 says _ VERB VBZ _ 0 root _ _ 21 Leonard _ PROPN NNP _ 22 compound _ _ 22 Bogner _ PROPN NNP _ 20 nsubj _ _ 23 , _ PUNCT , _ 22 punct _ _ 24 a _ DET DT _ 27 det _ _ 25 chemical _ NOUN NN _ 27 compound _ _ 26 industry _ NOUN NN _ 27 compound _ _ 27 analyst _ NOUN NN _ 22 appos _ _ 28 at _ ADP IN _ 31 case _ _ 29 Prudential _ PROPN NNP _ 31 compound _ _ 30 Bache _ PROPN NNP _ 31 compound _ _ 31 Research _ PROPN NNP _ 27 nmod _ _ 32 . _ PUNCT . _ 20 punct _ _ 1 `` _ PUNCT `` _ 6 punct _ _ 2 This _ PRON DT _ 6 nsubj _ _ 3 could _ AUX MD _ 6 aux _ _ 4 be _ VERB VB _ 6 cop _ _ 5 the _ DET DT _ 6 det _ _ 6 first _ ADJ JJ _ 0 root _ _ 7 of _ ADP IN _ 12 case _ _ 8 five _ NUM CD _ 12 nummod _ _ 9 or _ CONJ CC _ 8 cc _ _ 10 six _ NUM CD _ 8 conj _ _ 11 down _ ADJ JJ _ 12 amod _ _ 12 quarters _ NOUN NNS _ 6 nmod _ _ 13 . _ PUNCT . _ 6 punct _ _ 14 '' _ PUNCT '' _ 6 punct _ _ 1 Perhaps _ ADV RB _ 3 advmod _ _ 2 most _ ADV RBS _ 3 advmod _ _ 3 prominent _ ADJ JJ _ 22 ccomp _ _ 4 , _ PUNCT , _ 22 punct _ _ 5 Dow _ PROPN NNP _ 7 compound _ _ 6 Chemical _ PROPN NNP _ 7 compound _ _ 7 Co. _ PROPN NNP _ 22 nsubjpass _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 which _ PRON WDT _ 14 nsubj _ _ 10 as _ ADP IN _ 12 case _ _ 11 of _ ADP IN _ 12 case _ _ 12 midyear _ NOUN NN _ 14 nmod _ _ 13 had _ AUX VBD _ 14 aux _ _ 14 racked _ VERB VBN _ 7 acl:relcl _ _ 15 up _ ADP RP _ 14 compound:prt _ _ 16 eight _ NUM CD _ 19 nummod _ _ 17 consecutive _ ADJ JJ _ 19 amod _ _ 18 record _ ADJ JJ _ 19 amod _ _ 19 quarters _ NOUN NNS _ 14 dobj _ _ 20 , _ PUNCT , _ 7 punct _ _ 21 is _ AUX VBZ _ 22 auxpass _ _ 22 expected _ VERB VBN _ 0 root _ _ 23 to _ PART TO _ 24 mark _ _ 24 report _ VERB VB _ 22 xcomp _ _ 25 that _ DET DT _ 27 mark _ _ 26 profit _ NOUN NN _ 27 nsubj _ _ 27 decreased _ VERB VBD _ 24 ccomp _ _ 28 in _ ADP IN _ 31 case _ _ 29 the _ DET DT _ 31 det _ _ 30 latest _ ADJ JJS _ 31 amod _ _ 31 quarter _ NOUN NN _ 27 nmod _ _ 32 from _ ADP IN _ 35 case _ _ 33 a _ DET DT _ 34 det _ _ 34 year _ NOUN NN _ 35 nmod:npmod _ _ 35 earlier _ ADV RBR _ 27 advcl _ _ 36 , _ PUNCT , _ 27 punct _ _ 37 if _ SCONJ IN _ 41 mark _ _ 38 only _ ADV RB _ 41 advmod _ _ 39 by _ ADP IN _ 41 case _ _ 40 a _ DET DT _ 41 det _ _ 41 shade _ NOUN NN _ 27 advcl _ _ 42 . _ PUNCT . _ 22 punct _ _ 1 Though _ SCONJ IN _ 5 mark _ _ 2 Dow _ PROPN NNP _ 5 nsubj _ _ 3 has _ AUX VBZ _ 5 aux _ _ 4 aggressively _ ADV RB _ 5 advmod _ _ 5 diversified _ VERB VBN _ 15 advcl _ _ 6 into _ ADP IN _ 8 case _ _ 7 specialty _ NOUN NN _ 8 compound _ _ 8 chemicals _ NOUN NNS _ 5 nmod _ _ 9 and _ CONJ CC _ 8 cc _ _ 10 pharmaceuticals _ NOUN NNS _ 8 conj _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 the _ DET DT _ 13 det _ _ 13 company _ NOUN NN _ 15 nsubj _ _ 14 still _ ADV RB _ 15 advmod _ _ 15 has _ VERB VBZ _ 0 root _ _ 16 a _ DET DT _ 18 det _ _ 17 big _ ADJ JJ _ 18 amod _ _ 18 stake _ NOUN NN _ 15 dobj _ _ 19 in _ ADP IN _ 20 case _ _ 20 polyethylene _ NOUN NN _ 18 nmod _ _ 21 , _ PUNCT , _ 20 punct _ _ 22 which _ PRON WDT _ 24 nsubjpass _ _ 23 is _ AUX VBZ _ 24 auxpass _ _ 24 used _ VERB VBN _ 20 acl:relcl _ _ 25 in _ ADP IN _ 26 case _ _ 26 packaging _ NOUN NN _ 24 nmod _ _ 27 and _ CONJ CC _ 26 cc _ _ 28 housewares _ NOUN NNS _ 26 conj _ _ 29 . _ PUNCT . _ 15 punct _ _ 1 Analysts _ NOUN NNS _ 4 nmod:poss _ _ 2 ' _ PART POS _ 1 case _ _ 3 third-quarter _ ADJ JJ _ 4 amod _ _ 4 estimates _ NOUN NNS _ 15 nsubj _ _ 5 for _ ADP IN _ 11 case _ _ 6 the _ DET DT _ 11 det _ _ 7 Midland _ PROPN NNP _ 11 dep _ _ 8 , _ PUNCT , _ 7 punct _ _ 9 Mich. _ PROPN NNP _ 7 dep _ _ 10 , _ PUNCT , _ 7 punct _ _ 11 company _ NOUN NN _ 4 nmod _ _ 12 are _ VERB VBP _ 15 cop _ _ 13 between _ ADP IN _ 15 case _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 3.20 _ NUM CD _ 0 root _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 and _ CONJ CC _ 15 cc _ _ 19 $ _ SYM $ _ 20 dep _ _ 20 3.30 _ NUM CD _ 15 conj _ _ 21 a _ DET DT _ 22 det _ _ 22 share _ NOUN NN _ 20 nmod:npmod _ _ 23 , _ PUNCT , _ 15 punct _ _ 24 compared _ VERB VBN _ 27 case _ _ 25 with _ ADP IN _ 27 case _ _ 26 $ _ SYM $ _ 27 dep _ _ 27 3.36 _ NUM CD _ 15 advcl _ _ 28 a _ DET DT _ 29 det _ _ 29 year _ NOUN NN _ 30 nmod:npmod _ _ 30 ago _ ADV RB _ 27 advmod _ _ 31 , _ PUNCT , _ 30 punct _ _ 32 when _ ADV WRB _ 35 advmod _ _ 33 profit _ NOUN NN _ 35 nsubj _ _ 34 was _ VERB VBD _ 35 cop _ _ 35 $ _ SYM $ _ 30 advcl _ _ 36 632 _ NUM CD _ 37 compound _ _ 37 million _ NUM CD _ 35 nummod _ _ 38 on _ ADP IN _ 39 case _ _ 39 sales _ NOUN NNS _ 35 nmod _ _ 40 of _ ADP IN _ 41 case _ _ 41 $ _ SYM $ _ 39 nmod _ _ 42 4.15 _ NUM CD _ 43 compound _ _ 43 billion _ NUM CD _ 41 nummod _ _ 44 . _ PUNCT . _ 15 punct _ _ 1 A _ DET DT _ 3 det _ _ 2 Dow _ PROPN NNP _ 3 compound _ _ 3 spokeswoman _ NOUN NN _ 4 nsubj _ _ 4 declined _ VERB VBD _ 0 root _ _ 5 to _ PART TO _ 6 mark _ _ 6 comment _ VERB VB _ 4 xcomp _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 estimates _ NOUN NNS _ 6 nmod _ _ 10 . _ PUNCT . _ 4 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 investment _ NOUN NN _ 4 compound _ _ 4 firm _ NOUN NN _ 18 nmod _ _ 5 of _ ADP IN _ 10 case _ _ 6 Smith _ PROPN NNP _ 10 compound _ _ 7 Barney _ PROPN NNP _ 10 compound _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 Harris _ PROPN NNP _ 10 conj _ _ 10 Upham _ PROPN NNP _ 4 nmod _ _ 11 & _ CONJ CC _ 10 cc _ _ 12 Co. _ PROPN NNP _ 10 conj _ _ 13 , _ PUNCT , _ 18 punct _ _ 14 the _ DET DT _ 16 det _ _ 15 commodity-chemical _ ADJ JJ _ 16 amod _ _ 16 segment _ NOUN NN _ 18 nsubjpass _ _ 17 is _ AUX VBZ _ 18 auxpass _ _ 18 seen _ VERB VBN _ 0 root _ _ 19 pulling _ VERB VBG _ 18 xcomp _ _ 20 down _ ADP RP _ 19 advmod _ _ 21 overall _ ADJ JJ _ 22 amod _ _ 22 profit _ NOUN NN _ 19 dobj _ _ 23 for _ ADP IN _ 25 case _ _ 24 20 _ NUM CD _ 25 nummod _ _ 25 companies _ NOUN NNS _ 22 nmod _ _ 26 representative _ ADJ JJ _ 25 amod _ _ 27 of _ ADP IN _ 30 case _ _ 28 the _ DET DT _ 30 det _ _ 29 whole _ ADJ JJ _ 30 amod _ _ 30 industry _ NOUN NN _ 26 nmod _ _ 31 by _ ADP IN _ 36 case _ _ 32 8 _ NUM CD _ 36 compound _ _ 33 % _ SYM NN _ 36 dep _ _ 34 to _ ADP TO _ 36 dep _ _ 35 10 _ NUM CD _ 36 compound _ _ 36 % _ SYM NN _ 19 nmod _ _ 37 . _ PUNCT . _ 18 punct _ _ 1 `` _ PUNCT `` _ 23 punct _ _ 2 You _ PRON PRP _ 4 nsubj _ _ 3 will _ AUX MD _ 4 aux _ _ 4 find _ VERB VB _ 23 ccomp _ _ 5 the _ DET DT _ 6 det _ _ 6 commodities _ NOUN NNS _ 7 dep _ _ 7 off _ ADV RB _ 4 xcomp _ _ 8 more _ ADV RBR _ 7 advmod _ _ 9 than _ ADP IN _ 11 case _ _ 10 the _ DET DT _ 11 det _ _ 11 others _ NOUN NNS _ 8 nmod _ _ 12 and _ CONJ CC _ 7 cc _ _ 13 the _ DET DT _ 15 det _ _ 14 diversified _ ADJ JJ _ 15 amod _ _ 15 companies _ NOUN NNS _ 17 dep _ _ 16 about _ ADV RB _ 17 advmod _ _ 17 even _ ADJ JJ _ 7 conj _ _ 18 or _ CONJ CC _ 17 cc _ _ 19 slightly _ ADV RB _ 20 advmod _ _ 20 better _ ADJ JJR _ 17 conj _ _ 21 , _ PUNCT , _ 23 punct _ _ 22 '' _ PUNCT '' _ 23 punct _ _ 23 says _ VERB VBZ _ 0 root _ _ 24 James _ PROPN NNP _ 25 compound _ _ 25 Wilbur _ PROPN NNP _ 23 nsubj _ _ 26 , _ PUNCT , _ 25 punct _ _ 27 a _ DET DT _ 30 det _ _ 28 Smith _ PROPN NNP _ 30 compound _ _ 29 Barney _ PROPN NNP _ 30 compound _ _ 30 analyst _ NOUN NN _ 25 appos _ _ 31 . _ PUNCT . _ 23 punct _ _ 1 First _ PROPN NNP _ 3 compound _ _ 2 Boston _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 4 nsubj _ _ 4 projects _ VERB VBZ _ 0 root _ _ 5 that _ SCONJ IN _ 14 mark _ _ 6 10 _ NUM CD _ 14 nsubj _ _ 7 of _ ADP IN _ 10 case _ _ 8 the _ DET DT _ 10 det _ _ 9 15 _ NUM CD _ 10 nummod _ _ 10 companies _ NOUN NNS _ 6 nmod _ _ 11 it _ PRON PRP _ 12 nsubj _ _ 12 follows _ VERB VBZ _ 10 acl:relcl _ _ 13 will _ AUX MD _ 14 aux _ _ 14 report _ VERB VB _ 4 ccomp _ _ 15 lower _ ADJ JJR _ 16 amod _ _ 16 profit _ NOUN NN _ 14 dobj _ _ 17 . _ PUNCT . _ 4 punct _ _ 1 Most _ ADJ JJS _ 5 nsubj _ _ 2 of _ ADP IN _ 4 case _ _ 3 the _ DET DT _ 4 det _ _ 4 10 _ NUM CD _ 1 nmod _ _ 5 have _ VERB VBP _ 0 root _ _ 6 big _ ADJ JJ _ 8 amod _ _ 7 commodity-chemical _ ADJ JJ _ 8 amod _ _ 8 operations _ NOUN NNS _ 5 dobj _ _ 9 . _ PUNCT . _ 5 punct _ _ 1 Still _ ADV RB _ 7 advmod _ _ 2 , _ PUNCT , _ 7 punct _ _ 3 some _ DET DT _ 5 det _ _ 4 industry _ NOUN NN _ 5 compound _ _ 5 giants _ NOUN NNS _ 7 nsubjpass _ _ 6 are _ AUX VBP _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 report _ VERB VB _ 7 xcomp _ _ 10 continuing _ ADJ JJ _ 11 amod _ _ 11 gains _ NOUN NNS _ 9 dobj _ _ 12 , _ PUNCT , _ 7 punct _ _ 13 largely _ ADV RB _ 23 advmod _ _ 14 because _ SCONJ IN _ 23 mark _ _ 15 so _ ADV RB _ 16 advmod _ _ 16 much _ ADJ JJ _ 23 nsubj _ _ 17 of _ ADP IN _ 19 case _ _ 18 their _ PRON PRP$ _ 19 nmod:poss _ _ 19 business _ NOUN NN _ 16 nmod _ _ 20 is _ VERB VBZ _ 23 cop _ _ 21 outside _ ADP IN _ 23 case _ _ 22 commodity _ NOUN NN _ 23 compound _ _ 23 chemicals _ NOUN NNS _ 7 advcl _ _ 24 . _ PUNCT . _ 7 punct _ _ 1 Du _ PROPN NNP _ 3 compound _ _ 2 Pont _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 5 nsubjpass _ _ 4 is _ AUX VBZ _ 5 auxpass _ _ 5 thought _ VERB VBN _ 0 root _ _ 6 to _ PART TO _ 8 mark _ _ 7 have _ AUX VB _ 8 aux _ _ 8 had _ VERB VBD _ 5 xcomp _ _ 9 steady _ ADJ JJ _ 11 amod _ _ 10 profit _ NOUN NN _ 11 compound _ _ 11 growth _ NOUN NN _ 8 dobj _ _ 12 in _ ADP IN _ 14 case _ _ 13 white _ ADJ JJ _ 14 amod _ _ 14 pigments _ NOUN NNS _ 11 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 fibers _ NOUN NNS _ 14 conj _ _ 17 and _ CONJ CC _ 14 cc _ _ 18 polymers _ NOUN NNS _ 14 conj _ _ 19 . _ PUNCT . _ 5 punct _ _ 1 Moreover _ ADV RB _ 10 advmod _ _ 2 , _ PUNCT , _ 10 punct _ _ 3 the _ DET DT _ 8 det _ _ 4 Wilmington _ PROPN NNP _ 8 dep _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Del. _ PROPN NNP _ 4 dep _ _ 7 , _ PUNCT , _ 4 punct _ _ 8 company _ NOUN NN _ 10 nsubjpass _ _ 9 is _ AUX VBZ _ 10 auxpass _ _ 10 helped _ VERB VBN _ 0 root _ _ 11 when _ ADV WRB _ 13 advmod _ _ 12 prices _ NOUN NNS _ 13 nsubj _ _ 13 weaken _ VERB VBP _ 10 advcl _ _ 14 on _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 commodity _ NOUN NN _ 17 compound _ _ 17 chemicals _ NOUN NNS _ 13 nmod _ _ 18 it _ PRON PRP _ 19 nsubj _ _ 19 buys _ VERB VBZ _ 17 acl:relcl _ _ 20 for _ ADP IN _ 24 case _ _ 21 its _ PRON PRP$ _ 24 nmod:poss _ _ 22 own _ ADJ JJ _ 24 amod _ _ 23 production _ NOUN NN _ 24 compound _ _ 24 needs _ NOUN NNS _ 19 nmod _ _ 25 , _ PUNCT , _ 24 punct _ _ 26 such _ ADJ JJ _ 28 case _ _ 27 as _ ADP IN _ 26 mwe _ _ 28 ethylene _ NOUN NN _ 24 nmod _ _ 29 . _ PUNCT . _ 10 punct _ _ 1 Analysts _ NOUN NNS _ 3 nsubjpass _ _ 2 are _ AUX VBP _ 3 auxpass _ _ 3 divided _ VERB VBN _ 0 root _ _ 4 over _ SCONJ IN _ 9 mark _ _ 5 whether _ SCONJ IN _ 9 mark _ _ 6 Du _ PROPN NNP _ 7 compound _ _ 7 Pont _ PROPN NNP _ 9 nsubj _ _ 8 will _ AUX MD _ 9 aux _ _ 9 report _ VERB VB _ 3 advcl _ _ 10 much _ ADJ JJ _ 9 dobj _ _ 11 of _ ADP IN _ 13 case _ _ 12 a _ DET DT _ 13 det _ _ 13 gain _ NOUN NN _ 10 nmod _ _ 14 in _ ADP IN _ 17 case _ _ 15 the _ DET DT _ 17 det _ _ 16 latest _ ADJ JJS _ 17 amod _ _ 17 quarter _ NOUN NN _ 10 nmod _ _ 18 from _ ADP IN _ 23 case _ _ 19 its _ PRON PRP$ _ 23 nmod:poss _ _ 20 Conoco _ PROPN NNP _ 23 compound _ _ 21 Inc. _ PROPN NNP _ 23 compound _ _ 22 oil _ NOUN NN _ 23 compound _ _ 23 company _ NOUN NN _ 10 nmod _ _ 24 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 estimates _ NOUN NNS _ 6 nsubj _ _ 3 for _ ADP IN _ 5 case _ _ 4 Du _ PROPN NNP _ 5 compound _ _ 5 Pont _ PROPN NNP _ 2 nmod _ _ 6 range _ NOUN NN _ 0 root _ _ 7 from _ ADP IN _ 11 case _ _ 8 $ _ SYM $ _ 11 dep _ _ 9 2.25 _ NUM CD _ 11 compound _ _ 10 to _ ADP TO _ 11 dep _ _ 11 $ _ SYM $ _ 6 nmod _ _ 12 2.45 _ NUM CD _ 11 nummod _ _ 13 a _ DET DT _ 14 det _ _ 14 share _ NOUN NN _ 11 nmod:npmod _ _ 15 . _ PUNCT . _ 6 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 1988 _ NUM CD _ 5 nummod _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 9 nmod _ _ 6 , _ PUNCT , _ 9 punct _ _ 7 the _ DET DT _ 8 det _ _ 8 company _ NOUN NN _ 9 nsubj _ _ 9 earned _ VERB VBD _ 0 root _ _ 10 $ _ SYM $ _ 9 dobj _ _ 11 461 _ NUM CD _ 12 compound _ _ 12 million _ NUM CD _ 10 nummod _ _ 13 , _ PUNCT , _ 10 punct _ _ 14 or _ CONJ CC _ 10 cc _ _ 15 $ _ SYM $ _ 16 dep _ _ 16 1.91 _ NUM CD _ 10 conj _ _ 17 a _ DET DT _ 18 det _ _ 18 share _ NOUN NN _ 16 nmod:npmod _ _ 19 , _ PUNCT , _ 9 punct _ _ 20 on _ ADP IN _ 21 case _ _ 21 sales _ NOUN NNS _ 9 nmod _ _ 22 of _ ADP IN _ 23 case _ _ 23 $ _ SYM $ _ 21 nmod _ _ 24 7.99 _ NUM CD _ 25 compound _ _ 25 billion _ NUM CD _ 23 nummod _ _ 26 . _ PUNCT . _ 9 punct _ _ 1 Du _ PROPN NNP _ 2 compound _ _ 2 Pont _ PROPN NNP _ 3 nsubj _ _ 3 declined _ VERB VBD _ 0 root _ _ 4 to _ PART TO _ 5 mark _ _ 5 comment _ VERB VB _ 3 xcomp _ _ 6 . _ PUNCT . _ 3 punct _ _ 1 Monsanto _ PROPN NNP _ 2 compound _ _ 2 Co. _ PROPN NNP _ 7 nsubjpass _ _ 3 , _ PUNCT , _ 7 punct _ _ 4 too _ ADV RB _ 7 advmod _ _ 5 , _ PUNCT , _ 7 punct _ _ 6 is _ AUX VBZ _ 7 auxpass _ _ 7 expected _ VERB VBN _ 0 root _ _ 8 to _ PART TO _ 9 mark _ _ 9 continue _ VERB VB _ 7 xcomp _ _ 10 reporting _ VERB VBG _ 9 xcomp _ _ 11 higher _ ADJ JJR _ 12 amod _ _ 12 profit _ NOUN NN _ 10 dobj _ _ 13 , _ PUNCT , _ 7 punct _ _ 14 even _ ADV RB _ 22 advmod _ _ 15 though _ SCONJ IN _ 22 mark _ _ 16 its _ PRON PRP$ _ 17 nmod:poss _ _ 17 sales _ NOUN NNS _ 22 nsubjpass _ _ 18 of _ ADP IN _ 20 case _ _ 19 crop _ NOUN NN _ 20 compound _ _ 20 chemicals _ NOUN NNS _ 17 nmod _ _ 21 were _ AUX VBD _ 22 auxpass _ _ 22 hurt _ VERB VBN _ 7 advcl _ _ 23 in _ ADP IN _ 26 case _ _ 24 the _ DET DT _ 26 det _ _ 25 latest _ ADJ JJS _ 26 amod _ _ 26 quarter _ NOUN NN _ 22 nmod _ _ 27 by _ ADP IN _ 28 case _ _ 28 drought _ NOUN NN _ 22 nmod _ _ 29 in _ ADP IN _ 31 case _ _ 30 northern _ ADJ JJ _ 31 amod _ _ 31 Europe _ PROPN NNP _ 28 nmod _ _ 32 and _ CONJ CC _ 31 cc _ _ 33 the _ DET DT _ 35 det _ _ 34 western _ ADJ JJ _ 35 amod _ _ 35 U.S. _ PROPN NNP _ 31 conj _ _ 36 . _ PUNCT . _ 7 punct _ _ 1 The _ DET DT _ 4 det _ _ 2 St. _ PROPN NNP _ 3 amod _ _ 3 Louis-based _ ADJ JJ _ 4 amod _ _ 4 company _ NOUN NN _ 6 nsubjpass _ _ 5 is _ AUX VBZ _ 6 auxpass _ _ 6 expected _ VERB VBN _ 0 root _ _ 7 to _ PART TO _ 8 mark _ _ 8 report _ VERB VB _ 6 xcomp _ _ 9 again _ ADV RB _ 8 advmod _ _ 10 that _ SCONJ IN _ 21 mark _ _ 11 losses _ NOUN NNS _ 21 nsubj _ _ 12 in _ ADP IN _ 15 case _ _ 13 its _ PRON PRP$ _ 15 nmod:poss _ _ 14 G.D. _ PROPN NNP _ 15 compound _ _ 15 Searle _ PROPN NNP _ 11 nmod _ _ 16 & _ CONJ CC _ 15 cc _ _ 17 Co. _ PROPN NNP _ 19 compound _ _ 18 pharmaceutical _ ADJ JJ _ 19 amod _ _ 19 business _ NOUN NN _ 15 conj _ _ 20 are _ AUX VBP _ 21 aux _ _ 21 narrowing _ VERB VBG _ 8 ccomp _ _ 22 . _ PUNCT . _ 6 punct _ _ 1 Searle _ PROPN NNP _ 2 nsubj _ _ 2 continued _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 operate _ VERB VB _ 2 xcomp _ _ 5 in _ ADP IN _ 7 case _ _ 6 the _ DET DT _ 7 det _ _ 7 red _ NOUN NN _ 4 nmod _ _ 8 through _ ADP IN _ 11 case _ _ 9 the _ DET DT _ 11 det _ _ 10 first _ ADJ JJ _ 11 amod _ _ 11 half _ NOUN NN _ 2 nmod _ _ 12 of _ ADP IN _ 14 case _ _ 13 the _ DET DT _ 14 det _ _ 14 year _ NOUN NN _ 11 nmod _ _ 15 , _ PUNCT , _ 2 punct _ _ 16 but _ CONJ CC _ 2 cc _ _ 17 Monsanto _ PROPN NNP _ 19 nsubj _ _ 18 has _ AUX VBZ _ 19 aux _ _ 19 said _ VERB VBD _ 2 conj _ _ 20 it _ PRON PRP _ 21 nsubj _ _ 21 expects _ VERB VBZ _ 19 ccomp _ _ 22 Searle _ PROPN NNP _ 21 dobj _ _ 23 to _ PART TO _ 24 mark _ _ 24 post _ VERB VB _ 21 xcomp _ _ 25 a _ DET DT _ 26 det _ _ 26 profit _ NOUN NN _ 24 dobj _ _ 27 for _ ADP IN _ 28 case _ _ 28 all _ DET DT _ 26 nmod _ _ 29 of _ ADP IN _ 30 case _ _ 30 1989 _ NUM CD _ 28 nmod _ _ 31 . _ PUNCT . _ 2 punct _ _ 1 Most _ ADJ JJS _ 2 amod _ _ 2 estimates _ NOUN NNS _ 5 nsubj _ _ 3 for _ ADP IN _ 4 case _ _ 4 Monsanto _ PROPN NNP _ 2 nmod _ _ 5 run _ VERB VBP _ 0 root _ _ 6 between _ ADP IN _ 7 case _ _ 7 $ _ SYM $ _ 5 nmod _ _ 8 1.70 _ NUM CD _ 7 nummod _ _ 9 and _ CONJ CC _ 7 cc _ _ 10 $ _ SYM $ _ 7 conj _ _ 11 2 _ NUM CD _ 10 nummod _ _ 12 a _ DET DT _ 13 det _ _ 13 share _ NOUN NN _ 7 nmod:npmod _ _ 14 . _ PUNCT . _ 5 punct _ _ 1 A _ DET DT _ 2 det _ _ 2 year _ NOUN NN _ 3 nmod:npmod _ _ 3 ago _ ADV RB _ 7 advmod _ _ 4 , _ PUNCT , _ 7 punct _ _ 5 the _ DET DT _ 6 det _ _ 6 company _ NOUN NN _ 7 nsubj _ _ 7 posted _ VERB VBD _ 0 root _ _ 8 third-quarter _ ADJ JJ _ 9 amod _ _ 9 profit _ NOUN NN _ 7 dobj _ _ 10 of _ ADP IN _ 11 case _ _ 11 $ _ SYM $ _ 9 nmod _ _ 12 116 _ NUM CD _ 13 compound _ _ 13 million _ NUM CD _ 11 nummod _ _ 14 , _ PUNCT , _ 11 punct _ _ 15 or _ CONJ CC _ 11 cc _ _ 16 $ _ SYM $ _ 17 dep _ _ 17 1.67 _ NUM CD _ 11 conj _ _ 18 a _ DET DT _ 19 det _ _ 19 share _ NOUN NN _ 17 nmod:npmod _ _ 20 , _ PUNCT , _ 9 punct _ _ 21 on _ ADP IN _ 22 case _ _ 22 sales _ NOUN NNS _ 9 nmod _ _ 23 of _ ADP IN _ 24 case _ _ 24 $ _ SYM $ _ 22 nmod _ _ 25 2.02 _ NUM CD _ 26 compound _ _ 26 billion _ NUM CD _ 24 nummod _ _ 27 . _ PUNCT . _ 7 punct _ _ 1 Monsanto _ PROPN NNP _ 2 nsubj _ _ 2 declined _ VERB VBD _ 0 root _ _ 3 to _ PART TO _ 4 mark _ _ 4 comment _ VERB VB _ 2 xcomp _ _ 5 . _ PUNCT . _ 2 punct _ _ 1 But _ CONJ CC _ 6 cc _ _ 2 the _ DET DT _ 4 det _ _ 3 commodity-chemical _ ADJ JJ _ 4 amod _ _ 4 producers _ NOUN NNS _ 6 nsubjpass _ _ 5 are _ AUX VBP _ 6 auxpass _ _ 6 caught _ VERB VBN _ 0 root _ _ 7 on _ ADP IN _ 9 case _ _ 8 the _ DET DT _ 9 det _ _ 9 downside _ NOUN NN _ 6 nmod _ _ 10 of _ ADP IN _ 13 case _ _ 11 a _ DET DT _ 13 det _ _ 12 pricing _ NOUN NN _ 13 compound _ _ 13 cycle _ NOUN NN _ 9 nmod _ _ 14 . _ PUNCT . _ 6 punct _ _ 1 By _ ADP IN _ 3 case _ _ 2 some _ DET DT _ 3 det _ _ 3 accounts _ NOUN NNS _ 18 nmod _ _ 4 on _ ADP IN _ 6 case _ _ 5 Wall _ PROPN NNP _ 6 compound _ _ 6 Street _ PROPN NNP _ 3 nmod _ _ 7 and _ CONJ CC _ 6 cc _ _ 8 in _ ADP IN _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 industry _ NOUN NN _ 6 conj _ _ 11 , _ PUNCT , _ 18 punct _ _ 12 the _ DET DT _ 14 det _ _ 13 inventory _ NOUN NN _ 14 compound _ _ 14 reductions _ NOUN NNS _ 18 nsubj _ _ 15 are _ VERB VBP _ 18 cop _ _ 16 near _ ADP IN _ 18 case _ _ 17 an _ DET DT _ 18 det _ _ 18 end _ NOUN NN _ 0 root _ _ 19 , _ PUNCT , _ 18 punct _ _ 20 which _ PRON WDT _ 22 nsubj _ _ 21 may _ AUX MD _ 22 aux _ _ 22 presage _ VERB VB _ 18 ccomp _ _ 23 firmer _ ADJ JJR _ 24 amod _ _ 24 demand _ NOUN NN _ 22 dobj _ _ 25 . _ PUNCT . _ 18 punct _ _ 1 But _ CONJ CC _ 3 cc _ _ 2 doubters _ NOUN NNS _ 3 nsubj _ _ 3 say _ VERB VBP _ 0 root _ _ 4 growing _ VERB VBG _ 6 amod _ _ 5 production _ NOUN NN _ 6 compound _ _ 6 capacity _ NOUN NN _ 8 nsubj _ _ 7 could _ AUX MD _ 8 aux _ _ 8 keep _ VERB VB _ 3 ccomp _ _ 9 pressure _ NOUN NN _ 8 dobj _ _ 10 on _ ADP IN _ 11 case _ _ 11 prices _ NOUN NNS _ 8 nmod _ _ 12 into _ ADP IN _ 15 case _ _ 13 the _ DET DT _ 15 det _ _ 14 early _ ADJ JJ _ 15 amod _ _ 15 1990s _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 3 punct _ _ 1 In _ ADP IN _ 4 case _ _ 2 the _ DET DT _ 4 det _ _ 3 latest _ ADJ JJS _ 4 amod _ _ 4 quarter _ NOUN NN _ 11 nmod _ _ 5 , _ PUNCT , _ 11 punct _ _ 6 at _ ADP IN _ 11 advmod _ _ 7 least _ ADJ JJS _ 6 mwe _ _ 8 , _ PUNCT , _ 11 punct _ _ 9 profit _ NOUN NN _ 11 nsubjpass _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 fall _ VERB VB _ 11 xcomp _ _ 14 sharply _ ADV RB _ 13 advmod _ _ 15 . _ PUNCT . _ 11 punct _ _ 1 For _ ADP IN _ 3 case _ _ 2 Himont _ PROPN NNP _ 3 compound _ _ 3 Inc. _ PROPN NNP _ 18 nmod _ _ 4 , _ PUNCT , _ 18 punct _ _ 5 `` _ PUNCT `` _ 18 punct _ _ 6 how _ ADV WRB _ 7 advmod _ _ 7 far _ ADV RB _ 8 advmod _ _ 8 down _ ADV RB _ 10 dep _ _ 9 it _ PRON PRP _ 10 nsubj _ _ 10 is _ VERB VBZ _ 15 advcl _ _ 11 , _ PUNCT , _ 15 punct _ _ 12 we _ PRON PRP _ 15 nsubj _ _ 13 do _ AUX VBP _ 15 aux _ _ 14 n't _ PART RB _ 15 neg _ _ 15 know _ VERB VB _ 18 ccomp _ _ 16 , _ PUNCT , _ 18 punct _ _ 17 '' _ PUNCT '' _ 18 punct _ _ 18 says _ VERB VBZ _ 0 root _ _ 19 Leslie _ PROPN NNP _ 20 compound _ _ 20 Ravitz _ PROPN NNP _ 18 nsubj _ _ 21 at _ ADP IN _ 23 case _ _ 22 Salomon _ PROPN NNP _ 23 compound _ _ 23 Brothers _ PROPN NNP _ 20 nmod _ _ 24 . _ PUNCT . _ 18 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 projections _ NOUN NNS _ 6 nsubj _ _ 3 are _ VERB VBP _ 6 cop _ _ 4 in _ ADP IN _ 6 case _ _ 5 the _ DET DT _ 6 det _ _ 6 neighborhood _ NOUN NN _ 0 root _ _ 7 of _ ADP IN _ 9 case _ _ 8 50 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 6 nmod _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 to _ ADP TO _ 14 dep _ _ 13 75 _ NUM CD _ 14 nummod _ _ 14 cents _ NOUN NNS _ 9 dep _ _ 15 , _ PUNCT , _ 9 punct _ _ 16 compared _ VERB VBN _ 21 case _ _ 17 with _ ADP IN _ 21 case _ _ 18 a _ DET DT _ 21 det _ _ 19 restated _ ADJ JJ _ 21 amod _ _ 20 $ _ SYM $ _ 21 dep _ _ 21 1.65 _ NUM CD _ 9 nmod _ _ 22 a _ DET DT _ 23 det _ _ 23 share _ NOUN NN _ 21 nmod:npmod _ _ 24 a _ DET DT _ 25 det _ _ 25 year _ NOUN NN _ 26 nmod:npmod _ _ 26 earlier _ ADV RBR _ 21 advmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 when _ ADV WRB _ 31 advmod _ _ 29 profit _ NOUN NN _ 31 nsubj _ _ 30 was _ VERB VBD _ 31 cop _ _ 31 $ _ SYM $ _ 26 advcl _ _ 32 107.8 _ NUM CD _ 33 compound _ _ 33 million _ NUM CD _ 31 nummod _ _ 34 on _ ADP IN _ 35 case _ _ 35 sales _ NOUN NNS _ 31 nmod _ _ 36 of _ ADP IN _ 37 case _ _ 37 $ _ SYM $ _ 35 nmod _ _ 38 435.5 _ NUM CD _ 39 compound _ _ 39 million _ NUM CD _ 37 nummod _ _ 40 . _ PUNCT . _ 6 punct _ _ 1 Himont _ PROPN NNP _ 2 nsubj _ _ 2 faces _ VERB VBZ _ 0 root _ _ 3 lower _ ADJ JJR _ 4 amod _ _ 4 prices _ NOUN NNS _ 2 dobj _ _ 5 for _ ADP IN _ 8 case _ _ 6 its _ PRON PRP$ _ 8 nmod:poss _ _ 7 mainstay _ NOUN NN _ 8 compound _ _ 8 product _ NOUN NN _ 4 nmod _ _ 9 , _ PUNCT , _ 8 punct _ _ 10 polypropylene _ NOUN NN _ 8 appos _ _ 11 , _ PUNCT , _ 2 punct _ _ 12 while _ SCONJ IN _ 14 mark _ _ 13 it _ PRON PRP _ 14 nsubj _ _ 14 goes _ VERB VBZ _ 2 advcl _ _ 15 forward _ ADV RB _ 14 advmod _ _ 16 with _ ADP IN _ 21 case _ _ 17 a _ DET DT _ 21 det _ _ 18 heavy _ ADJ JJ _ 21 amod _ _ 19 capital _ NOUN NN _ 21 compound _ _ 20 investment _ NOUN NN _ 21 compound _ _ 21 program _ NOUN NN _ 14 nmod _ _ 22 to _ PART TO _ 23 mark _ _ 23 bolster _ VERB VB _ 21 acl _ _ 24 its _ PRON PRP$ _ 27 nmod:poss _ _ 25 raw _ ADJ JJ _ 27 amod _ _ 26 material _ NOUN NN _ 27 compound _ _ 27 supply _ NOUN NN _ 23 dobj _ _ 28 and _ CONJ CC _ 23 cc _ _ 29 develop _ VERB VB _ 23 conj _ _ 30 new _ ADJ JJ _ 31 amod _ _ 31 uses _ NOUN NNS _ 29 dobj _ _ 32 for _ ADP IN _ 33 case _ _ 33 polypropylene _ NOUN NN _ 31 nmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 whose _ PRON WP$ _ 36 nmod:poss _ _ 36 markets _ NOUN NNS _ 37 nsubj _ _ 37 include _ VERB VBP _ 33 acl:relcl _ _ 38 the _ DET DT _ 42 det _ _ 39 packaging _ NOUN NN _ 42 compound _ _ 40 and _ CONJ CC _ 39 cc _ _ 41 automobile _ NOUN NN _ 39 conj _ _ 42 industries _ NOUN NNS _ 37 dobj _ _ 43 . _ PUNCT . _ 2 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 company _ NOUN NN _ 11 nsubj _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 based _ VERB VBN _ 2 acl _ _ 5 in _ ADP IN _ 6 case _ _ 6 Wilmington _ PROPN NNP _ 4 nmod _ _ 7 , _ PUNCT , _ 6 punct _ _ 8 Del. _ PROPN NNP _ 6 appos _ _ 9 , _ PUNCT , _ 2 punct _ _ 10 is _ VERB VBZ _ 11 cop _ _ 11 81%-owned _ ADJ JJ _ 0 root _ _ 12 by _ ADP IN _ 16 case _ _ 13 Montedison _ PROPN NNP _ 16 compound _ _ 14 S.p _ PROPN NNP _ 16 compound _ _ 15 . _ PUNCT . _ 16 punct _ _ 16 A. _ PROPN NNP _ 11 nmod _ _ 17 , _ PUNCT , _ 16 punct _ _ 18 Milan _ PROPN NNP _ 16 appos _ _ 19 , _ PUNCT , _ 16 punct _ _ 20 which _ PRON WDT _ 21 nsubj _ _ 21 has _ VERB VBZ _ 16 acl:relcl _ _ 22 an _ DET DT _ 23 det _ _ 23 offer _ NOUN NN _ 21 dobj _ _ 24 outstanding _ ADJ JJ _ 23 amod _ _ 25 for _ ADP IN _ 28 case _ _ 26 the _ DET DT _ 28 det _ _ 27 Himont _ PROPN NNP _ 28 compound _ _ 28 shares _ NOUN NNS _ 23 nmod _ _ 29 it _ PRON PRP _ 33 nsubj _ _ 30 does _ AUX VBZ _ 33 aux _ _ 31 n't _ PART RB _ 33 neg _ _ 32 already _ ADV RB _ 33 advmod _ _ 33 own _ VERB VB _ 28 acl:relcl _ _ 34 . _ PUNCT . _ 11 punct _ _ 1 At _ ADP IN _ 4 case _ _ 2 Quantum _ PROPN NNP _ 4 compound _ _ 3 Chemical _ PROPN NNP _ 4 compound _ _ 4 Corp. _ PROPN NNP _ 13 nmod _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 New _ PROPN NNP _ 7 compound _ _ 7 York _ PROPN NNP _ 4 appos _ _ 8 , _ PUNCT , _ 4 punct _ _ 9 the _ DET DT _ 10 det _ _ 10 trouble _ NOUN NN _ 13 nsubj _ _ 11 is _ VERB VBZ _ 13 cop _ _ 12 lower _ ADJ JJR _ 13 amod _ _ 13 prices _ NOUN NNS _ 0 root _ _ 14 for _ ADP IN _ 15 case _ _ 15 polyethylene _ NOUN NN _ 13 nmod _ _ 16 , _ PUNCT , _ 13 punct _ _ 17 higher _ ADJ JJR _ 19 amod _ _ 18 debt _ NOUN NN _ 19 compound _ _ 19 costs _ NOUN NNS _ 13 conj _ _ 20 and _ CONJ CC _ 13 cc _ _ 21 the _ DET DT _ 22 det _ _ 22 idling _ NOUN NN _ 13 conj _ _ 23 of _ ADP IN _ 26 case _ _ 24 an _ DET DT _ 26 det _ _ 25 important _ ADJ JJ _ 26 amod _ _ 26 plant _ NOUN NN _ 22 nmod _ _ 27 due _ ADV RB _ 22 advmod _ _ 28 to _ ADP TO _ 30 case _ _ 29 an _ DET DT _ 30 det _ _ 30 explosion _ NOUN NN _ 27 nmod _ _ 31 . _ PUNCT . _ 13 punct _ _ 1 Some _ DET DT _ 2 det _ _ 2 analysts _ NOUN NNS _ 3 nsubj _ _ 3 hedge _ VERB VBP _ 0 root _ _ 4 their _ PRON PRP$ _ 5 nmod:poss _ _ 5 estimates _ NOUN NNS _ 3 dobj _ _ 6 for _ ADP IN _ 7 case _ _ 7 Quantum _ PROPN NNP _ 5 nmod _ _ 8 , _ PUNCT , _ 3 punct _ _ 9 because _ SCONJ IN _ 13 mark _ _ 10 it _ PRON PRP _ 13 nsubjpass _ _ 11 is _ AUX VBZ _ 13 auxpass _ _ 12 n't _ PART RB _ 13 neg _ _ 13 known _ VERB VBN _ 3 advcl _ _ 14 when _ ADV WRB _ 18 advmod _ _ 15 the _ DET DT _ 16 det _ _ 16 company _ NOUN NN _ 18 nsubj _ _ 17 will _ AUX MD _ 18 aux _ _ 18 book _ VERB VB _ 13 advcl _ _ 19 certain _ ADJ JJ _ 21 amod _ _ 20 one-time _ ADJ JJ _ 21 amod _ _ 21 charges _ NOUN NNS _ 18 dobj _ _ 22 . _ PUNCT . _ 3 punct _ _ 1 But _ CONJ CC _ 4 cc _ _ 2 the _ DET DT _ 3 det _ _ 3 estimates _ NOUN NNS _ 4 nsubj _ _ 4 range _ VERB VBP _ 0 root _ _ 5 from _ ADP IN _ 6 case _ _ 6 break-even _ ADJ JJ _ 4 nmod _ _ 7 to _ ADP TO _ 9 case _ _ 8 35 _ NUM CD _ 9 nummod _ _ 9 cents _ NOUN NNS _ 6 nmod _ _ 10 a _ DET DT _ 11 det _ _ 11 share _ NOUN NN _ 9 nmod:npmod _ _ 12 . _ PUNCT . _ 4 punct _ _ 1 In _ ADP IN _ 5 case _ _ 2 the _ DET DT _ 5 det _ _ 3 1988 _ NUM CD _ 5 nummod _ _ 4 third _ ADJ JJ _ 5 amod _ _ 5 quarter _ NOUN NN _ 8 nmod _ _ 6 , _ PUNCT , _ 8 punct _ _ 7 Quantum _ PROPN NNP _ 8 nsubj _ _ 8 earned _ VERB VBD _ 0 root _ _ 9 $ _ SYM $ _ 8 dobj _ _ 10 99.8 _ NUM CD _ 11 compound _ _ 11 million _ NUM CD _ 9 nummod _ _ 12 , _ PUNCT , _ 9 punct _ _ 13 or _ CONJ CC _ 9 cc _ _ 14 $ _ SYM $ _ 15 dep _ _ 15 3.92 _ NUM CD _ 9 conj _ _ 16 a _ DET DT _ 17 det _ _ 17 share _ NOUN NN _ 15 nmod:npmod _ _ 18 , _ PUNCT , _ 9 punct _ _ 19 on _ ADP IN _ 20 case _ _ 20 sales _ NOUN NNS _ 8 nmod _ _ 21 of _ ADP IN _ 22 case _ _ 22 $ _ SYM $ _ 20 nmod _ _ 23 724.4 _ NUM CD _ 24 compound _ _ 24 million _ NUM CD _ 22 nummod _ _ 25 . _ PUNCT . _ 8 punct _ _ 1 Another _ DET DT _ 4 det _ _ 2 big _ ADJ JJ _ 4 amod _ _ 3 polyethylene _ NOUN NN _ 4 compound _ _ 4 producer _ NOUN NN _ 11 nsubjpass _ _ 5 , _ PUNCT , _ 4 punct _ _ 6 Union _ PROPN NNP _ 8 compound _ _ 7 Carbide _ PROPN NNP _ 8 compound _ _ 8 Corp. _ PROPN NNP _ 4 appos _ _ 9 , _ PUNCT , _ 4 punct _ _ 10 is _ AUX VBZ _ 11 auxpass _ _ 11 expected _ VERB VBN _ 0 root _ _ 12 to _ PART TO _ 13 mark _ _ 13 post _ VERB VB _ 11 xcomp _ _ 14 profit _ NOUN NN _ 13 dobj _ _ 15 of _ ADP IN _ 18 case _ _ 16 between _ ADP IN _ 18 case _ _ 17 $ _ SYM $ _ 18 dep _ _ 18 1 _ NUM CD _ 14 nmod _ _ 19 a _ DET DT _ 20 det _ _ 20 share _ NOUN NN _ 18 nmod:npmod _ _ 21 and _ CONJ CC _ 18 cc _ _ 22 $ _ SYM $ _ 23 dep _ _ 23 1.25 _ NUM CD _ 18 conj _ _ 24 , _ PUNCT , _ 14 punct _ _ 25 compared _ VERB VBN _ 28 case _ _ 26 with _ ADP IN _ 28 case _ _ 27 $ _ SYM $ _ 28 dep _ _ 28 1.56 _ NUM CD _ 14 nmod _ _ 29 a _ DET DT _ 30 det _ _ 30 share _ NOUN NN _ 28 nmod:npmod _ _ 31 a _ DET DT _ 32 det _ _ 32 year _ NOUN NN _ 33 nmod:npmod _ _ 33 earlier _ ADV RBR _ 28 advmod _ _ 34 , _ PUNCT , _ 33 punct _ _ 35 when _ ADV WRB _ 38 advmod _ _ 36 the _ DET DT _ 37 det _ _ 37 company _ NOUN NN _ 38 nsubj _ _ 38 earned _ VERB VBD _ 33 advcl _ _ 39 $ _ SYM $ _ 38 dobj _ _ 40 213 _ NUM CD _ 41 compound _ _ 41 million _ NUM CD _ 39 nummod _ _ 42 on _ ADP IN _ 43 case _ _ 43 sales _ NOUN NNS _ 38 nmod _ _ 44 of _ ADP IN _ 45 case _ _ 45 $ _ SYM $ _ 43 nmod _ _ 46 2.11 _ NUM CD _ 47 compound _ _ 47 billion _ NUM CD _ 45 nummod _ _ 48 . _ PUNCT . _ 11 punct _ _ 1 Himont _ PROPN NNP _ 8 nsubj _ _ 2 , _ PUNCT , _ 1 punct _ _ 3 Quantum _ PROPN NNP _ 1 conj _ _ 4 and _ CONJ CC _ 1 cc _ _ 5 Union _ PROPN NNP _ 6 compound _ _ 6 Carbide _ PROPN NNP _ 1 conj _ _ 7 all _ DET DT _ 8 dep _ _ 8 declined _ VERB VBD _ 0 root _ _ 9 to _ PART TO _ 10 mark _ _ 10 comment _ VERB VB _ 8 xcomp _ _ 11 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 following _ ADJ JJ _ 7 nsubj _ _ 3 were _ VERB VBD _ 7 cop _ _ 4 among _ ADP IN _ 7 case _ _ 5 Friday _ PROPN NNP _ 7 nmod:poss _ _ 6 's _ PART POS _ 5 case _ _ 7 offerings _ NOUN NNS _ 0 root _ _ 8 and _ CONJ CC _ 7 cc _ _ 9 pricings _ NOUN NNS _ 7 conj _ _ 10 in _ ADP IN _ 16 case _ _ 11 the _ DET DT _ 16 det _ _ 12 U.S. _ PROPN NNP _ 16 compound _ _ 13 and _ CONJ CC _ 12 cc _ _ 14 non-U.S. _ ADJ JJ _ 12 conj _ _ 15 capital _ NOUN NN _ 16 compound _ _ 16 markets _ NOUN NNS _ 7 nmod _ _ 17 , _ PUNCT , _ 7 punct _ _ 18 with _ ADP IN _ 19 case _ _ 19 terms _ NOUN NNS _ 7 nmod _ _ 20 and _ CONJ CC _ 19 cc _ _ 21 syndicate _ NOUN NN _ 22 compound _ _ 22 manager _ NOUN NN _ 19 conj _ _ 23 , _ PUNCT , _ 7 punct _ _ 24 as _ SCONJ IN _ 25 mark _ _ 25 compiled _ VERB VBN _ 7 advcl _ _ 26 by _ ADP IN _ 31 case _ _ 27 Dow _ PROPN NNP _ 31 compound _ _ 28 Jones _ PROPN NNP _ 31 compound _ _ 29 Capital _ PROPN NNP _ 31 compound _ _ 30 Markets _ PROPN NNP _ 31 compound _ _ 31 Report _ PROPN NNP _ 25 nmod _ _ 32 : _ PUNCT : _ 7 punct _ _ 1 Dow _ PROPN NNP _ 3 compound _ _ 2 Chemical _ PROPN NNP _ 3 compound _ _ 3 Co. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 150 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 8 case _ _ 5 8.55 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 8 amod _ _ 7 senior _ ADJ JJ _ 8 amod _ _ 8 notes _ NOUN NNS _ 1 nmod _ _ 9 due _ ADJ JJ _ 1 amod _ _ 10 Oct. _ PROPN NNP _ 9 nmod:tmod _ _ 11 15 _ NUM CD _ 10 nummod _ _ 12 , _ PUNCT , _ 10 punct _ _ 13 2009 _ NUM CD _ 10 nummod _ _ 14 , _ PUNCT , _ 1 punct _ _ 15 priced _ VERB VBN _ 1 acl _ _ 16 at _ ADP IN _ 17 case _ _ 17 par _ NOUN NN _ 15 nmod _ _ 18 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 issue _ NOUN NN _ 20 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 which _ PRON WDT _ 6 nsubj _ _ 5 is _ VERB VBZ _ 6 cop _ _ 6 puttable _ ADJ JJ _ 2 acl:relcl _ _ 7 back _ ADV RB _ 6 advmod _ _ 8 to _ ADP TO _ 10 case _ _ 9 the _ DET DT _ 10 det _ _ 10 company _ NOUN NN _ 6 nmod _ _ 11 at _ ADP IN _ 12 case _ _ 12 par _ NOUN NN _ 6 nmod _ _ 13 on _ ADP IN _ 14 case _ _ 14 Oct. _ PROPN NNP _ 6 nmod _ _ 15 15 _ NUM CD _ 14 nummod _ _ 16 , _ PUNCT , _ 14 punct _ _ 17 1999 _ NUM CD _ 14 nummod _ _ 18 , _ PUNCT , _ 2 punct _ _ 19 was _ AUX VBD _ 20 auxpass _ _ 20 priced _ VERB VBN _ 0 root _ _ 21 at _ ADP IN _ 23 case _ _ 22 a _ DET DT _ 23 det _ _ 23 spread _ NOUN NN _ 20 nmod _ _ 24 of _ ADP IN _ 27 case _ _ 25 50 _ NUM CD _ 27 nummod _ _ 26 basis _ NOUN NN _ 27 compound _ _ 27 points _ NOUN NNS _ 23 acl _ _ 28 above _ ADP IN _ 27 case _ _ 29 the _ DET DT _ 30 det _ _ 30 Treasury _ PROPN NNP _ 33 nmod:poss _ _ 31 's _ PART POS _ 30 case _ _ 32 10-year _ ADJ JJ _ 33 amod _ _ 33 note _ NOUN NN _ 27 dep _ _ 34 . _ PUNCT . _ 20 punct _ _ 1 Rated _ VERB VBN _ 23 advcl _ _ 2 single-A-1 _ ADJ JJ _ 1 xcomp _ _ 3 by _ ADP IN _ 8 case _ _ 4 Moody _ PROPN NNP _ 8 nmod:poss _ _ 5 's _ PART POS _ 4 case _ _ 6 Investors _ PROPN NNP _ 8 compound _ _ 7 Service _ PROPN NNP _ 8 compound _ _ 8 Inc. _ PROPN NNP _ 1 nmod _ _ 9 and _ CONJ CC _ 1 cc _ _ 10 single-A _ ADJ JJ _ 1 conj _ _ 11 by _ ADP IN _ 16 case _ _ 12 Standard _ PROPN NNP _ 16 nmod:poss _ _ 13 & _ CONJ CC _ 12 cc _ _ 14 Poor _ PROPN NNP _ 12 conj _ _ 15 's _ PART POS _ 12 case _ _ 16 Corp. _ PROPN NNP _ 10 nmod _ _ 17 , _ PUNCT , _ 23 punct _ _ 18 the _ DET DT _ 20 det _ _ 19 non-callable _ ADJ JJ _ 20 amod _ _ 20 issue _ NOUN NN _ 23 nsubjpass _ _ 21 will _ AUX MD _ 23 aux _ _ 22 be _ AUX VB _ 23 auxpass _ _ 23 sold _ VERB VBN _ 0 root _ _ 24 through _ ADP IN _ 25 case _ _ 25 underwriters _ NOUN NNS _ 23 nmod _ _ 26 led _ VERB VBN _ 25 acl _ _ 27 by _ ADP IN _ 31 case _ _ 28 Merrill _ PROPN NNP _ 31 compound _ _ 29 Lynch _ PROPN NNP _ 31 compound _ _ 30 Capital _ PROPN NNP _ 31 compound _ _ 31 Markets _ PROPN NNP _ 26 nmod _ _ 32 . _ PUNCT . _ 23 punct _ _ 1 Centel _ PROPN NNP _ 3 compound _ _ 2 Capital _ PROPN NNP _ 3 compound _ _ 3 Corp. _ PROPN NNP _ 0 root _ _ 4 -- _ PUNCT : _ 3 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 150 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 9 _ NUM CD _ 6 compound _ _ 6 % _ SYM NN _ 7 amod _ _ 7 debentures _ NOUN NNS _ 1 nmod _ _ 8 due _ ADJ JJ _ 1 amod _ _ 9 Oct. _ PROPN NNP _ 8 nmod:tmod _ _ 10 15 _ NUM CD _ 9 nummod _ _ 11 , _ PUNCT , _ 9 punct _ _ 12 2019 _ NUM CD _ 9 nummod _ _ 13 , _ PUNCT , _ 1 punct _ _ 14 priced _ VERB VBN _ 1 acl _ _ 15 at _ ADP IN _ 16 case _ _ 16 99.943 _ NUM CD _ 14 nmod _ _ 17 to _ PART TO _ 18 mark _ _ 18 yield _ VERB VB _ 14 xcomp _ _ 19 9.008 _ NUM CD _ 20 nummod _ _ 20 % _ SYM NN _ 18 dobj _ _ 21 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 non-callable _ ADJ JJ _ 3 amod _ _ 3 issue _ NOUN NN _ 17 nsubjpass _ _ 4 , _ PUNCT , _ 3 punct _ _ 5 which _ PRON WDT _ 8 nsubjpass _ _ 6 can _ AUX MD _ 8 aux _ _ 7 be _ AUX VB _ 8 auxpass _ _ 8 put _ VERB VBN _ 3 acl:relcl _ _ 9 back _ ADV RB _ 8 advmod _ _ 10 to _ ADP TO _ 12 case _ _ 11 the _ DET DT _ 12 det _ _ 12 company _ NOUN NN _ 9 nmod _ _ 13 in _ ADP IN _ 14 case _ _ 14 1999 _ NUM CD _ 8 nmod _ _ 15 , _ PUNCT , _ 3 punct _ _ 16 was _ AUX VBD _ 17 auxpass _ _ 17 priced _ VERB VBN _ 0 root _ _ 18 at _ ADP IN _ 21 case _ _ 19 99 _ NUM CD _ 21 nummod _ _ 20 basis _ NOUN NN _ 21 compound _ _ 21 points _ NOUN NNS _ 17 nmod _ _ 22 above _ ADP IN _ 21 case _ _ 23 the _ DET DT _ 24 det _ _ 24 Treasury _ PROPN NNP _ 27 nmod:poss _ _ 25 's _ PART POS _ 24 case _ _ 26 10-year _ ADJ JJ _ 27 amod _ _ 27 note _ NOUN NN _ 21 dep _ _ 28 . _ PUNCT . _ 17 punct _ _ 1 Rated _ VERB VBN _ 15 advcl _ _ 2 Baa-1 _ ADJ JJ _ 1 xcomp _ _ 3 by _ ADP IN _ 4 case _ _ 4 Moody _ PROPN NNP _ 1 nmod _ _ 5 's _ PART POS _ 4 case _ _ 6 and _ CONJ CC _ 1 cc _ _ 7 triple-B-plus _ ADJ JJ _ 1 conj _ _ 8 by _ ADP IN _ 9 case _ _ 9 S&P _ PROPN NNP _ 7 nmod _ _ 10 , _ PUNCT , _ 15 punct _ _ 11 the _ DET DT _ 12 det _ _ 12 issue _ NOUN NN _ 15 nsubjpass _ _ 13 will _ AUX MD _ 15 aux _ _ 14 be _ AUX VB _ 15 auxpass _ _ 15 sold _ VERB VBN _ 0 root _ _ 16 through _ ADP IN _ 17 case _ _ 17 underwriters _ NOUN NNS _ 15 nmod _ _ 18 led _ VERB VBN _ 17 acl _ _ 19 by _ ADP IN _ 21 case _ _ 20 Morgan _ PROPN NNP _ 21 compound _ _ 21 Stanley _ PROPN NNP _ 18 nmod _ _ 22 & _ CONJ CC _ 21 cc _ _ 23 Co _ PROPN NNP _ 21 conj _ _ 24 . _ PUNCT . _ 15 punct _ _ 1 Federal _ PROPN NNP _ 5 compound _ _ 2 Home _ PROPN NNP _ 5 compound _ _ 3 Loan _ PROPN NNP _ 5 compound _ _ 4 Mortgage _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 500 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 Remic _ PROPN NNP _ 7 compound _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 securities _ NOUN NNS _ 1 nmod _ _ 8 offered _ VERB VBN _ 1 acl _ _ 9 in _ ADP IN _ 11 case _ _ 10 13 _ NUM CD _ 11 nummod _ _ 11 classes _ NOUN NNS _ 8 nmod _ _ 12 by _ ADP IN _ 15 case _ _ 13 Prudential-Bache _ PROPN NNP _ 15 compound _ _ 14 Securities _ PROPN NNP _ 15 compound _ _ 15 Inc _ PROPN NNP _ 8 nmod _ _ 16 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offering _ NOUN NN _ 28 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Series _ PROPN NNP _ 2 appos _ _ 5 102 _ NUM CD _ 4 nummod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 backed _ VERB VBN _ 28 dep _ _ 8 by _ ADP IN _ 14 case _ _ 9 Freddie _ PROPN NNP _ 14 compound _ _ 10 Mac _ PROPN NNP _ 14 compound _ _ 11 8 _ NUM CD _ 13 compound _ _ 12 1/2 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 securities _ NOUN NNS _ 7 nmod _ _ 15 with _ ADP IN _ 20 case _ _ 16 a _ DET DT _ 20 det _ _ 17 weighted _ ADJ JJ _ 20 amod _ _ 18 average _ NOUN NN _ 20 compound _ _ 19 remaining _ VERB VBG _ 20 amod _ _ 20 term _ NOUN NN _ 7 nmod _ _ 21 to _ ADP TO _ 22 case _ _ 22 maturity _ NOUN NN _ 20 nmod _ _ 23 of _ ADP IN _ 25 case _ _ 24 28.4 _ NUM CD _ 25 nummod _ _ 25 years _ NOUN NNS _ 20 nmod _ _ 26 , _ PUNCT , _ 28 punct _ _ 27 was _ AUX VBD _ 28 auxpass _ _ 28 priced _ VERB VBN _ 0 root _ _ 29 before _ ADP IN _ 34 case _ _ 30 the _ DET DT _ 31 det _ _ 31 market _ NOUN NN _ 34 nmod:poss _ _ 32 's _ PART POS _ 31 case _ _ 33 afternoon _ NOUN NN _ 34 compound _ _ 34 surge _ NOUN NN _ 28 nmod _ _ 35 . _ PUNCT . _ 28 punct _ _ 1 Among _ ADP IN _ 2 case _ _ 2 classes _ NOUN NNS _ 10 nmod _ _ 3 for _ ADP IN _ 4 case _ _ 4 which _ PRON WDT _ 7 nmod _ _ 5 details _ NOUN NNS _ 7 nsubj _ _ 6 were _ VERB VBD _ 7 cop _ _ 7 available _ ADJ JJ _ 2 acl:relcl _ _ 8 , _ PUNCT , _ 10 punct _ _ 9 yields _ NOUN NNS _ 10 nsubj _ _ 10 ranged _ VERB VBD _ 0 root _ _ 11 from _ ADP IN _ 13 case _ _ 12 8.78 _ NUM CD _ 13 nummod _ _ 13 % _ SYM NN _ 10 nmod _ _ 14 , _ PUNCT , _ 13 punct _ _ 15 or _ CONJ CC _ 13 cc _ _ 16 75 _ NUM CD _ 18 nummod _ _ 17 basis _ NOUN NN _ 18 compound _ _ 18 points _ NOUN NNS _ 13 conj _ _ 19 over _ ADP IN _ 18 case _ _ 20 two-year _ ADJ JJ _ 22 amod _ _ 21 Treasury _ PROPN NNP _ 22 compound _ _ 22 securities _ NOUN NNS _ 18 dep _ _ 23 , _ PUNCT , _ 13 punct _ _ 24 to _ ADP TO _ 26 case _ _ 25 10.05 _ NUM CD _ 26 nummod _ _ 26 % _ SYM NN _ 13 nmod _ _ 27 , _ PUNCT , _ 26 punct _ _ 28 or _ CONJ CC _ 26 cc _ _ 29 200 _ NUM CD _ 31 nummod _ _ 30 basis _ NOUN NN _ 31 compound _ _ 31 points _ NOUN NNS _ 26 conj _ _ 32 over _ ADP IN _ 31 case _ _ 33 10-year _ ADJ JJ _ 34 amod _ _ 34 Treasurys _ PROPN NNPS _ 31 dep _ _ 35 . _ PUNCT . _ 10 punct _ _ 1 Federal _ PROPN NNP _ 5 compound _ _ 2 Home _ PROPN NNP _ 5 compound _ _ 3 Loan _ PROPN NNP _ 5 compound _ _ 4 Mortgage _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 300 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 Remic _ PROPN NNP _ 7 compound _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 securities _ NOUN NNS _ 1 nmod _ _ 8 offered _ VERB VBN _ 1 acl _ _ 9 by _ ADP IN _ 13 case _ _ 10 Citicorp _ PROPN NNP _ 13 compound _ _ 11 Securities _ PROPN NNP _ 13 compound _ _ 12 Markets _ PROPN NNP _ 13 compound _ _ 13 Inc _ PROPN NNP _ 8 nmod _ _ 14 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 offering _ NOUN NN _ 8 nsubjpass _ _ 3 , _ PUNCT , _ 2 punct _ _ 4 Series _ PROPN NNP _ 2 appos _ _ 5 101 _ NUM CD _ 4 nummod _ _ 6 , _ PUNCT , _ 2 punct _ _ 7 is _ AUX VBZ _ 8 auxpass _ _ 8 backed _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 15 case _ _ 10 Freddie _ PROPN NNP _ 15 compound _ _ 11 Mac _ PROPN NNP _ 15 compound _ _ 12 9 _ NUM CD _ 14 compound _ _ 13 1/2 _ NUM CD _ 14 compound _ _ 14 % _ SYM NN _ 15 amod _ _ 15 securities _ NOUN NNS _ 8 nmod _ _ 16 . _ PUNCT . _ 8 punct _ _ 1 Pricing _ NOUN NN _ 2 compound _ _ 2 details _ NOUN NNS _ 6 nsubj _ _ 3 were _ VERB VBD _ 6 cop _ _ 4 n't _ PART RB _ 6 neg _ _ 5 immediately _ ADV RB _ 6 advmod _ _ 6 available _ ADJ JJ _ 0 root _ _ 7 . _ PUNCT . _ 6 punct _ _ 1 Federal _ PROPN NNP _ 5 compound _ _ 2 Home _ PROPN NNP _ 5 compound _ _ 3 Loan _ PROPN NNP _ 5 compound _ _ 4 Mortgage _ PROPN NNP _ 5 compound _ _ 5 Corp. _ PROPN NNP _ 0 root _ _ 6 -- _ PUNCT : _ 5 punct _ _ 1 $ _ SYM $ _ 0 root _ _ 2 200 _ NUM CD _ 3 compound _ _ 3 million _ NUM CD _ 1 nummod _ _ 4 of _ ADP IN _ 7 case _ _ 5 stripped _ ADJ JJ _ 7 amod _ _ 6 mortgage _ NOUN NN _ 7 compound _ _ 7 securities _ NOUN NNS _ 1 nmod _ _ 8 underwritten _ VERB VBN _ 7 acl _ _ 9 by _ ADP IN _ 12 case _ _ 10 BT _ PROPN NNP _ 12 compound _ _ 11 Securities _ PROPN NNP _ 12 compound _ _ 12 Corp _ PROPN NNP _ 8 nmod _ _ 13 . _ PUNCT . _ 1 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 agency _ NOUN NN _ 6 nmod:poss _ _ 3 's _ PART POS _ 2 case _ _ 4 first _ ADJ JJ _ 6 amod _ _ 5 strips _ NOUN NNS _ 6 compound _ _ 6 issue _ NOUN NN _ 8 nsubj _ _ 7 , _ PUNCT , _ 8 punct _ _ 8 collateralized _ VERB VBN _ 0 root _ _ 9 by _ ADP IN _ 14 case _ _ 10 Freddie _ PROPN NNP _ 14 compound _ _ 11 Mac _ PROPN NNP _ 14 compound _ _ 12 8 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 securities _ NOUN NNS _ 8 nmod _ _ 15 pooled _ VERB VBN _ 14 acl _ _ 16 into _ ADP IN _ 19 case _ _ 17 a _ DET DT _ 19 det _ _ 18 single _ ADJ JJ _ 19 amod _ _ 19 security _ NOUN NN _ 15 nmod _ _ 20 called _ VERB VBN _ 19 acl _ _ 21 a _ DET DT _ 22 det _ _ 22 Giant _ PROPN NNP _ 20 xcomp _ _ 23 , _ PUNCT , _ 8 punct _ _ 24 will _ AUX MD _ 26 aux _ _ 25 be _ AUX VB _ 26 auxpass _ _ 26 divided _ VERB VBN _ 8 dep _ _ 27 into _ ADP IN _ 31 case _ _ 28 interest-only _ ADJ JJ _ 31 amod _ _ 29 and _ CONJ CC _ 28 cc _ _ 30 principal-only _ ADJ JJ _ 28 conj _ _ 31 securities _ NOUN NNS _ 26 nmod _ _ 32 . _ PUNCT . _ 8 punct _ _ 1 The _ DET DT _ 2 det _ _ 2 collateral _ NOUN NN _ 5 nsubjpass _ _ 3 is _ AUX VBZ _ 5 aux _ _ 4 being _ AUX VBG _ 5 auxpass _ _ 5 sold _ VERB VBN _ 0 root _ _ 6 by _ ADP IN _ 9 case _ _ 7 a _ DET DT _ 9 det _ _ 8 thrift _ NOUN NN _ 9 compound _ _ 9 institution _ NOUN NN _ 5 nmod _ _ 10 . _ PUNCT . _ 5 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 principal-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 6 nsubjpass _ _ 4 will _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 repackaged _ VERB VBN _ 0 root _ _ 7 by _ ADP IN _ 9 case _ _ 8 BT _ PROPN NNP _ 9 compound _ _ 9 Securities _ PROPN NNP _ 6 nmod _ _ 10 into _ ADP IN _ 14 case _ _ 11 a _ DET DT _ 14 det _ _ 12 Freddie _ PROPN NNP _ 14 compound _ _ 13 Mac _ PROPN NNP _ 14 compound _ _ 14 Remic _ PROPN NNP _ 6 nmod _ _ 15 , _ PUNCT , _ 14 punct _ _ 16 Series _ PROPN NNP _ 14 appos _ _ 17 103 _ NUM CD _ 16 nummod _ _ 18 , _ PUNCT , _ 14 punct _ _ 19 that _ PRON WDT _ 21 nsubj _ _ 20 will _ AUX MD _ 21 aux _ _ 21 have _ VERB VB _ 14 acl:relcl _ _ 22 six _ NUM CD _ 23 nummod _ _ 23 classes _ NOUN NNS _ 21 dobj _ _ 24 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 interest-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 6 nsubjpass _ _ 4 will _ AUX MD _ 6 aux _ _ 5 be _ AUX VB _ 6 auxpass _ _ 6 sold _ VERB VBN _ 0 root _ _ 7 separately _ ADV RB _ 6 advmod _ _ 8 by _ ADP IN _ 10 case _ _ 9 BT _ PROPN NNP _ 10 compound _ _ 10 Securities _ PROPN NNP _ 6 nmod _ _ 11 . _ PUNCT . _ 6 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 principal-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 4 nsubj _ _ 4 pay _ VERB VBP _ 0 root _ _ 5 the _ DET DT _ 6 det _ _ 6 principal _ NOUN NN _ 4 dobj _ _ 7 from _ ADP IN _ 14 case _ _ 8 the _ DET DT _ 14 det _ _ 9 underlying _ ADJ JJ _ 14 amod _ _ 10 Freddie _ PROPN NNP _ 14 compound _ _ 11 Mac _ PROPN NNP _ 14 compound _ _ 12 8 _ NUM CD _ 13 compound _ _ 13 % _ SYM NN _ 14 amod _ _ 14 securities _ NOUN NNS _ 4 nmod _ _ 15 , _ PUNCT , _ 4 punct _ _ 16 while _ SCONJ IN _ 20 mark _ _ 17 the _ DET DT _ 19 det _ _ 18 interest-only _ ADJ JJ _ 19 amod _ _ 19 securities _ NOUN NNS _ 20 nsubj _ _ 20 pay _ VERB VBP _ 4 advcl _ _ 21 only _ ADJ JJ _ 22 amod _ _ 22 interest _ NOUN NN _ 20 dobj _ _ 23 . _ PUNCT . _ 4 punct _ _ 1 Freddie _ PROPN NNP _ 2 compound _ _ 2 Mac _ PROPN NNP _ 3 nsubj _ _ 3 said _ VERB VBD _ 0 root _ _ 4 the _ DET DT _ 6 det _ _ 5 principal-only _ ADJ JJ _ 6 amod _ _ 6 securities _ NOUN NNS _ 8 nsubjpass _ _ 7 were _ AUX VBD _ 8 auxpass _ _ 8 priced _ VERB VBN _ 3 ccomp _ _ 9 at _ ADP IN _ 11 case _ _ 10 58 _ NUM CD _ 11 compound _ _ 11 1/4 _ NUM CD _ 8 nmod _ _ 12 to _ PART TO _ 13 mark _ _ 13 yield _ VERB VB _ 8 xcomp _ _ 14 8.45 _ NUM CD _ 15 nummod _ _ 15 % _ SYM NN _ 13 dobj _ _ 16 , _ PUNCT , _ 3 punct _ _ 17 assuming _ VERB VBG _ 20 case _ _ 18 an _ DET DT _ 20 det _ _ 19 average _ ADJ JJ _ 20 amod _ _ 20 life _ NOUN NN _ 3 nmod _ _ 21 of _ ADP IN _ 23 case _ _ 22 eight _ NUM CD _ 23 nummod _ _ 23 years _ NOUN NNS _ 20 nmod _ _ 24 and _ CONJ CC _ 20 cc _ _ 25 a _ DET DT _ 26 det _ _ 26 prepayment _ NOUN NN _ 20 conj _ _ 27 of _ ADP IN _ 29 case _ _ 28 160 _ NUM CD _ 29 nummod _ _ 29 % _ SYM NN _ 26 nmod _ _ 30 of _ ADP IN _ 33 case _ _ 31 the _ DET DT _ 33 det _ _ 32 PSA _ PROPN NNP _ 33 compound _ _ 33 model _ NOUN NN _ 29 nmod _ _ 34 . _ PUNCT . _ 3 punct _ _ 1 The _ DET DT _ 3 det _ _ 2 interest-only _ ADJ JJ _ 3 amod _ _ 3 securities _ NOUN NNS _ 5 nsubjpass _ _ 4 were _ AUX VBD _ 5 auxpass _ _ 5 priced _ VERB VBN _ 0 root _ _ 6 at _ ADP IN _ 8 case _ _ 7 35 _ NUM CD _ 8 compound _ _ 8 1/2 _ NUM CD _ 5 nmod _ _ 9 to _ PART TO _ 10 mark _ _ 10 yield _ VERB VB _ 5 xcomp _ _ 11 10.72 _ NUM CD _ 12 nummod _ _ 12 % _ SYM NN _ 10 dobj _ _ 13 . _ PUNCT . _ 5 punct _ _ 1 There _ PRON EX _ 2 expl _ _ 2 were _ VERB VBD _ 0 root _ _ 3 no _ DET DT _ 5 neg _ _ 4 major _ ADJ JJ _ 5 amod _ _ 5 Eurobond _ PROPN NNP _ 2 nsubj _ _ 6 or _ CONJ CC _ 5 cc _ _ 7 foreign _ ADJ JJ _ 9 amod _ _ 8 bond _ NOUN NN _ 9 compound _ _ 9 offerings _ NOUN NNS _ 5 conj _ _ 10 in _ ADP IN _ 11 case _ _ 11 Europe _ PROPN NNP _ 2 nmod _ _ 12 Friday _ PROPN NNP _ 2 nmod:tmod _ _ 13 . _ PUNCT . _ 2 punct _ _ ================================================ FILE: a3/data/train.conll ================================================ [File too large to display: 29.5 MB] ================================================ FILE: a3/data/train.gold.conll ================================================ [File too large to display: 29.5 MB] ================================================ FILE: a3/local_env.yml ================================================ name: cs224n_a3 channels: - pytorch - defaults dependencies: - python=3.7 - numpy - tqdm - docopt - pytorch - torchvision ================================================ FILE: a3/parser_model.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-2021: Homework 3 parser_model.py: Feed-Forward Neural Network for Dependency Parsing Sahil Chopra Haoshen Hong """ import argparse import numpy as np import torch import torch.nn as nn import torch.nn.functional as F class ParserModel(nn.Module): """ Feedforward neural network with an embedding layer and two hidden layers. The ParserModel will predict which transition should be applied to a given partial parse configuration. PyTorch Notes: - Note that "ParserModel" is a subclass of the "nn.Module" class. In PyTorch all neural networks are a subclass of this "nn.Module". - The "__init__" method is where you define all the layers and parameters (embedding layers, linear layers, dropout layers, etc.). - "__init__" gets automatically called when you create a new instance of your class, e.g. when you write "m = ParserModel()". - Other methods of ParserModel can access variables that have "self." prefix. Thus, you should add the "self." prefix layers, values, etc. that you want to utilize in other ParserModel methods. - For further documentation on "nn.Module" please see https://pytorch.org/docs/stable/nn.html. """ def __init__(self, embeddings, n_features=36, hidden_size=200, n_classes=3, dropout_prob=0.5): """ Initialize the parser model. @param embeddings (ndarray): word embeddings (num_words, embedding_size) @param n_features (int): number of input features @param hidden_size (int): number of hidden units @param n_classes (int): number of output classes @param dropout_prob (float): dropout probability """ super(ParserModel, self).__init__() self.n_features = n_features self.n_classes = n_classes self.dropout_prob = dropout_prob self.embed_size = embeddings.shape[1] self.hidden_size = hidden_size self.embeddings = nn.Parameter(torch.tensor(embeddings)) ### YOUR CODE HERE (~9-10 Lines) ### TODO: ### 1) Declare `self.embed_to_hidden_weight` and `self.embed_to_hidden_bias` as `nn.Parameter`. ### Initialize weight with the `nn.init.xavier_uniform_` function and bias with `nn.init.uniform_` ### with default parameters. ### 2) Construct `self.dropout` layer. ### 3) Declare `self.hidden_to_logits_weight` and `self.hidden_to_logits_bias` as `nn.Parameter`. ### Initialize weight with the `nn.init.xavier_uniform_` function and bias with `nn.init.uniform_` ### with default parameters. ### ### Note: Trainable variables are declared as `nn.Parameter` which is a commonly used API ### to include a tensor into a computational graph to support updating w.r.t its gradient. ### Here, we use Xavier Uniform Initialization for our Weight initialization. ### It has been shown empirically, that this provides better initial weights ### for training networks than random uniform initialization. ### For more details checkout this great blogpost: ### http://andyljones.tumblr.com/post/110998971763/an-explanation-of-xavier-initialization ### ### Please see the following docs for support: ### nn.Parameter: https://pytorch.org/docs/stable/nn.html#parameters ### Initialization: https://pytorch.org/docs/stable/nn.init.html ### Dropout: https://pytorch.org/docs/stable/nn.html#dropout-layers ### ### See the PDF for hints. self.embed_to_hidden_weight = nn.Parameter(nn.init.xavier_uniform_(torch.empty(self.n_features*self.embed_size, self.hidden_size))) self.embed_to_hidden_bias = nn.Parameter(nn.init.uniform_(torch.empty(self.hidden_size))) self.dropout = nn.Dropout(p=self.dropout_prob) self.hidden_to_logits_weight = nn.Parameter(nn.init.xavier_uniform_(torch.empty(self.hidden_size, self.n_classes))) self.hidden_to_logits_bias = nn.Parameter(nn.init.uniform_(torch.empty(self.n_classes))) ### END YOUR CODE def embedding_lookup(self, w): """ Utilize `w` to select embeddings from embedding matrix `self.embeddings` @param w (Tensor): input tensor of word indices (batch_size, n_features) @return x (Tensor): tensor of embeddings for words represented in w (batch_size, n_features * embed_size) """ ### YOUR CODE HERE (~1-4 Lines) ### TODO: ### 1) For each index `i` in `w`, select `i`th vector from self.embeddings ### 2) Reshape the tensor using `view` function if necessary ### ### Note: All embedding vectors are stacked and stored as a matrix. The model receives ### a list of indices representing a sequence of words, then it calls this lookup ### function to map indices to sequence of embeddings. ### ### This problem aims to test your understanding of embedding lookup, ### so DO NOT use any high level API like nn.Embedding ### (we are asking you to implement that!). Pay attention to tensor shapes ### and reshape if necessary. Make sure you know each tensor's shape before you run the code! ### ### Pytorch has some useful APIs for you, and you can use either one ### in this problem (except nn.Embedding). These docs might be helpful: ### Index select: https://pytorch.org/docs/stable/torch.html#torch.index_select ### Gather: https://pytorch.org/docs/stable/torch.html#torch.gather ### View: https://pytorch.org/docs/stable/tensors.html#torch.Tensor.view ### Flatten: https://pytorch.org/docs/stable/generated/torch.flatten.html x = torch.Tensor([torch.index_select(self.embeddings, 0, w[b]).view(-1).detach().numpy() for b in range(w.shape[0])]) #x = torch.index_select(self.embeddings, 0, w.view(-1, )).view(w.size(0), self.n_features * self.embed_size) assert x.shape == (w.shape[0], self.n_features*self.embed_size) ### END YOUR CODE return x def forward(self, w): """ Run the model forward. Note that we will not apply the softmax function here because it is included in the loss function nn.CrossEntropyLoss PyTorch Notes: - Every nn.Module object (PyTorch model) has a `forward` function. - When you apply your nn.Module to an input tensor `w` this function is applied to the tensor. For example, if you created an instance of your ParserModel and applied it to some `w` as follows, the `forward` function would called on `w` and the result would be stored in the `output` variable: model = ParserModel() output = model(w) # this calls the forward function - For more details checkout: https://pytorch.org/docs/stable/nn.html#torch.nn.Module.forward @param w (Tensor): input tensor of tokens (batch_size, n_features) @return logits (Tensor): tensor of predictions (output after applying the layers of the network) without applying softmax (batch_size, n_classes) """ ### YOUR CODE HERE (~3-5 lines) ### TODO: ### Complete the forward computation as described in write-up. In addition, include a dropout layer ### as decleared in `__init__` after ReLU function. ### ### Note: We do not apply the softmax to the logits here, because ### the loss function (torch.nn.CrossEntropyLoss) applies it more efficiently. ### ### Please see the following docs for support: ### Matrix product: https://pytorch.org/docs/stable/torch.html#torch.matmul ### ReLU: https://pytorch.org/docs/stable/nn.html?highlight=relu#torch.nn.functional.relu embeddings = self.embedding_lookup(w) hidden_activations = torch.nn.functional.relu(embeddings @ self.embed_to_hidden_weight + self.embed_to_hidden_bias) hidden_activations_droppedout = self.dropout(hidden_activations) logits = hidden_activations_droppedout @ self.hidden_to_logits_weight + self.hidden_to_logits_bias ### END YOUR CODE return logits if __name__ == "__main__": parser = argparse.ArgumentParser(description='Simple sanity check for parser_model.py') parser.add_argument('-e', '--embedding', action='store_true', help='sanity check for embeding_lookup function') parser.add_argument('-f', '--forward', action='store_true', help='sanity check for forward function') args = parser.parse_args() embeddings = np.zeros((100, 30), dtype=np.float32) model = ParserModel(embeddings) def check_embedding(): inds = torch.randint(0, 100, (4, 36), dtype=torch.long) selected = model.embedding_lookup(inds) assert np.all(selected.data.numpy() == 0), "The result of embedding lookup: " \ + repr(selected) + " contains non-zero elements." def check_forward(): inputs =torch.randint(0, 100, (4, 36), dtype=torch.long) out = model(inputs) expected_out_shape = (4, 3) assert out.shape == expected_out_shape, "The result shape of forward is: " + repr(out.shape) + \ " which doesn't match expected " + repr(expected_out_shape) if args.embedding: check_embedding() print("Embedding_lookup sanity check passes!") if args.forward: check_forward() print("Forward sanity check passes!") ================================================ FILE: a3/parser_transitions.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-2021: Homework 3 parser_transitions.py: Algorithms for completing partial parsess. Sahil Chopra Haoshen Hong """ import sys class PartialParse(object): def __init__(self, sentence): """Initializes this partial parse. @param sentence (list of str): The sentence to be parsed as a list of words. Your code should not modify the sentence. """ # The sentence being parsed is kept for bookkeeping purposes. Do NOT alter it in your code. self.sentence = sentence ### YOUR CODE HERE (3 Lines) ### Your code should initialize the following fields: ### self.stack: The current stack represented as a list with the top of the stack as the ### last element of the list. ### self.buffer: The current buffer represented as a list with the first item on the ### buffer as the first item of the list ### self.dependencies: The list of dependencies produced so far. Represented as a list of ### tuples where each tuple is of the form (head, dependent). ### Order for this list doesn't matter. ### ### Note: The root token should be represented with the string "ROOT" ### Note: If you need to use the sentence object to initialize anything, make sure to not directly ### reference the sentence object. That is, remember to NOT modify the sentence object. self.stack = ['ROOT'] self.buffer = sentence[:] # or self.sentence.copy() self.dependencies = [] ### END YOUR CODE def parse_step(self, transition): """Performs a single parse step by applying the given transition to this partial parse @param transition (str): A string that equals "S", "LA", or "RA" representing the shift, left-arc, and right-arc transitions. You can assume the provided transition is a legal transition. """ ### YOUR CODE HERE (~7-12 Lines) ### TODO: ### Implement a single parsing step, i.e. the logic for the following as ### described in the pdf handout: ### 1. Shift ### 2. Left Arc ### 3. Right Arc if transition == 'S': buffer_head = self.buffer.pop(0) self.stack.append(buffer_head) elif transition == 'LA': dependent = self.stack.pop(-2) self.dependencies.append((self.stack[-1], dependent)) elif transition == 'RA': dependent = self.stack.pop() self.dependencies.append((self.stack[-1], dependent)) else: print(f"Unknown transition: {transition}") ### END YOUR CODE def parse(self, transitions): """Applies the provided transitions to this PartialParse @param transitions (list of str): The list of transitions in the order they should be applied @return dependencies (list of string tuples): The list of dependencies produced when parsing the sentence. Represented as a list of tuples where each tuple is of the form (head, dependent). """ for transition in transitions: self.parse_step(transition) return self.dependencies def minibatch_parse(sentences, model, batch_size): """Parses a list of sentences in minibatches using a model. @param sentences (list of list of str): A list of sentences to be parsed (each sentence is a list of words and each word is of type string) @param model (ParserModel): The model that makes parsing decisions. It is assumed to have a function model.predict(partial_parses) that takes in a list of PartialParses as input and returns a list of transitions predicted for each parse. That is, after calling transitions = model.predict(partial_parses) transitions[i] will be the next transition to apply to partial_parses[i]. @param batch_size (int): The number of PartialParses to include in each minibatch @return dependencies (list of dependency lists): A list where each element is the dependencies list for a parsed sentence. Ordering should be the same as in sentences (i.e., dependencies[i] should contain the parse for sentences[i]). """ dependencies = [] ### YOUR CODE HERE (~8-10 Lines) ### TODO: ### Implement the minibatch parse algorithm. Note that the pseudocode for this algorithm is given in the pdf handout. ### ### Note: A shallow copy (as denoted in the PDF) can be made with the "=" sign in python, e.g. ### unfinished_parses = partial_parses[:]. ### Here `unfinished_parses` is a shallow copy of `partial_parses`. ### In Python, a shallow copied list like `unfinished_parses` does not contain new instances ### of the object stored in `partial_parses`. Rather both lists refer to the same objects. ### In our case, `partial_parses` contains a list of partial parses. `unfinished_parses` ### contains references to the same objects. Thus, you should NOT use the `del` operator ### to remove objects from the `unfinished_parses` list. This will free the underlying memory that ### is being accessed by `partial_parses` and may cause your code to crash. # Initialize a list of PartialParses, one for each sentence partial_parses = [PartialParse(sentence) for sentence in sentences] # Shallow copy partial_parses. unfinished_parses = partial_parses[:] # While unfinished_parses is not empty do while unfinished_parses: # Take first batch_size parses in unfinished_parses as minibatch minibatch = unfinished_parses[:batch_size] # Use model to predict next transition for each partial parse in the minibatch transitions = model.predict(minibatch) # Perform parse step for each partial_parse_minibatch with their predicted transition for transition, partial_parse in zip(transitions, minibatch): partial_parse.parse_step(transition) # Remove completed parses if len(partial_parse.buffer) == 0 and len(partial_parse.stack) == 1: unfinished_parses.remove(partial_parse) dependencies = [parse.dependencies for parse in partial_parses] ### END YOUR CODE return dependencies def test_step(name, transition, stack, buf, deps, ex_stack, ex_buf, ex_deps): """Tests that a single parse step returns the expected output""" pp = PartialParse([]) pp.stack, pp.buffer, pp.dependencies = stack, buf, deps pp.parse_step(transition) stack, buf, deps = (tuple(pp.stack), tuple(pp.buffer), tuple(sorted(pp.dependencies))) assert stack == ex_stack, \ "{:} test resulted in stack {:}, expected {:}".format(name, stack, ex_stack) assert buf == ex_buf, \ "{:} test resulted in buffer {:}, expected {:}".format(name, buf, ex_buf) assert deps == ex_deps, \ "{:} test resulted in dependency list {:}, expected {:}".format(name, deps, ex_deps) print("{:} test passed!".format(name)) def test_parse_step(): """Simple tests for the PartialParse.parse_step function Warning: these are not exhaustive """ test_step("SHIFT", "S", ["ROOT", "the"], ["cat", "sat"], [], ("ROOT", "the", "cat"), ("sat",), ()) test_step("LEFT-ARC", "LA", ["ROOT", "the", "cat"], ["sat"], [], ("ROOT", "cat",), ("sat",), (("cat", "the"),)) test_step("RIGHT-ARC", "RA", ["ROOT", "run", "fast"], [], [], ("ROOT", "run",), (), (("run", "fast"),)) def test_parse(): """Simple tests for the PartialParse.parse function Warning: these are not exhaustive """ sentence = ["parse", "this", "sentence"] dependencies = PartialParse(sentence).parse(["S", "S", "S", "LA", "RA", "RA"]) dependencies = tuple(sorted(dependencies)) expected = (('ROOT', 'parse'), ('parse', 'sentence'), ('sentence', 'this')) assert dependencies == expected, \ "parse test resulted in dependencies {:}, expected {:}".format(dependencies, expected) assert tuple(sentence) == ("parse", "this", "sentence"), \ "parse test failed: the input sentence should not be modified" print("parse test passed!") class DummyModel(object): """Dummy model for testing the minibatch_parse function """ def __init__(self, mode = "unidirectional"): self.mode = mode def predict(self, partial_parses): if self.mode == "unidirectional": return self.unidirectional_predict(partial_parses) elif self.mode == "interleave": return self.interleave_predict(partial_parses) else: raise NotImplementedError() def unidirectional_predict(self, partial_parses): """First shifts everything onto the stack and then does exclusively right arcs if the first word of the sentence is "right", "left" if otherwise. """ return [("RA" if pp.stack[1] is "right" else "LA") if len(pp.buffer) == 0 else "S" for pp in partial_parses] def interleave_predict(self, partial_parses): """First shifts everything onto the stack and then interleaves "right" and "left". """ return [("RA" if len(pp.stack) % 2 == 0 else "LA") if len(pp.buffer) == 0 else "S" for pp in partial_parses] def test_dependencies(name, deps, ex_deps): """Tests the provided dependencies match the expected dependencies""" deps = tuple(sorted(deps)) assert deps == ex_deps, \ "{:} test resulted in dependency list {:}, expected {:}".format(name, deps, ex_deps) def test_minibatch_parse(): """Simple tests for the minibatch_parse function Warning: these are not exhaustive """ # Unidirectional arcs test sentences = [["right", "arcs", "only"], ["right", "arcs", "only", "again"], ["left", "arcs", "only"], ["left", "arcs", "only", "again"]] deps = minibatch_parse(sentences, DummyModel(), 2) test_dependencies("minibatch_parse", deps[0], (('ROOT', 'right'), ('arcs', 'only'), ('right', 'arcs'))) test_dependencies("minibatch_parse", deps[1], (('ROOT', 'right'), ('arcs', 'only'), ('only', 'again'), ('right', 'arcs'))) test_dependencies("minibatch_parse", deps[2], (('only', 'ROOT'), ('only', 'arcs'), ('only', 'left'))) test_dependencies("minibatch_parse", deps[3], (('again', 'ROOT'), ('again', 'arcs'), ('again', 'left'), ('again', 'only'))) # Out-of-bound test sentences = [["right"]] deps = minibatch_parse(sentences, DummyModel(), 2) test_dependencies("minibatch_parse", deps[0], (('ROOT', 'right'),)) # Mixed arcs test sentences = [["this", "is", "interleaving", "dependency", "test"]] deps = minibatch_parse(sentences, DummyModel(mode="interleave"), 1) test_dependencies("minibatch_parse", deps[0], (('ROOT', 'is'), ('dependency', 'interleaving'), ('dependency', 'test'), ('is', 'dependency'), ('is', 'this'))) print("minibatch_parse test passed!") if __name__ == '__main__': args = sys.argv if len(args) != 2: raise Exception("You did not provide a valid keyword. Either provide 'part_c' or 'part_d', when executing this script") elif args[1] == "part_c": test_parse_step() test_parse() elif args[1] == "part_d": test_minibatch_parse() else: raise Exception("You did not provide a valid keyword. Either provide 'part_c' or 'part_d', when executing this script") ================================================ FILE: a3/run.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-2021: Homework 3 run.py: Run the dependency parser. Sahil Chopra Haoshen Hong """ from datetime import datetime import os import pickle import math import time import argparse from torch import nn, optim import torch from tqdm import tqdm from parser_model import ParserModel from utils.parser_utils import minibatches, load_and_preprocess_data, AverageMeter parser = argparse.ArgumentParser(description='Train neural dependency parser in pytorch') parser.add_argument('-d', '--debug', action='store_true', help='whether to enter debug mode') args = parser.parse_args() # ----------------- # Primary Functions # ----------------- def train(parser, train_data, dev_data, output_path, batch_size=1024, n_epochs=10, lr=0.0005): """ Train the neural dependency parser. @param parser (Parser): Neural Dependency Parser @param train_data (): @param dev_data (): @param output_path (str): Path to which model weights and results are written. @param batch_size (int): Number of examples in a single batch @param n_epochs (int): Number of training epochs @param lr (float): Learning rate """ best_dev_UAS = 0 ### YOUR CODE HERE (~2-7 lines) ### TODO: ### 1) Construct Adam Optimizer in variable `optimizer` ### 2) Construct the Cross Entropy Loss Function in variable `loss_func` with `mean` ### reduction (default) ### ### Hint: Use `parser.model.parameters()` to pass optimizer ### necessary parameters to tune. ### Please see the following docs for support: ### Adam Optimizer: https://pytorch.org/docs/stable/optim.html ### Cross Entropy Loss: https://pytorch.org/docs/stable/nn.html#crossentropyloss optimizer = optim.Adam(parser.model.parameters(), lr=lr) loss_func = nn.CrossEntropyLoss(reduction = 'mean') ### END YOUR CODE for epoch in range(n_epochs): print("Epoch {:} out of {:}".format(epoch + 1, n_epochs)) dev_UAS = train_for_epoch(parser, train_data, dev_data, optimizer, loss_func, batch_size) if dev_UAS > best_dev_UAS: best_dev_UAS = dev_UAS print("New best dev UAS! Saving model.") torch.save(parser.model.state_dict(), output_path) print("") def train_for_epoch(parser, train_data, dev_data, optimizer, loss_func, batch_size): """ Train the neural dependency parser for single epoch. Note: In PyTorch we can signify train versus test and automatically have the Dropout Layer applied and removed, accordingly, by specifying whether we are training, `model.train()`, or evaluating, `model.eval()` @param parser (Parser): Neural Dependency Parser @param train_data (): @param dev_data (): @param optimizer (nn.Optimizer): Adam Optimizer @param loss_func (nn.CrossEntropyLoss): Cross Entropy Loss Function @param batch_size (int): batch size @return dev_UAS (float): Unlabeled Attachment Score (UAS) for dev data """ parser.model.train() # Places model in "train" mode, i.e. apply dropout layer n_minibatches = math.ceil(len(train_data) / batch_size) loss_meter = AverageMeter() with tqdm(total=(n_minibatches)) as prog: for i, (train_x, train_y) in enumerate(minibatches(train_data, batch_size)): optimizer.zero_grad() # remove any baggage in the optimizer loss = 0. # store loss for this batch here train_x = torch.from_numpy(train_x).long() train_y = torch.from_numpy(train_y.nonzero()[1]).long() ### YOUR CODE HERE (~4-10 lines) ### TODO: ### 1) Run train_x forward through model to produce `logits` ### 2) Use the `loss_func` parameter to apply the PyTorch CrossEntropyLoss function. ### This will take `logits` and `train_y` as inputs. It will output the CrossEntropyLoss ### between softmax(`logits`) and `train_y`. Remember that softmax(`logits`) ### are the predictions (y^ from the PDF). ### 3) Backprop losses ### 4) Take step with the optimizer ### Please see the following docs for support: ### Optimizer Step: https://pytorch.org/docs/stable/optim.html#optimizer-step # Forward pass: compute predicted logits logits = parser.model(train_x) # Compute loss loss = loss_func(logits, train_y) # Compute gradients of the loss w.r.t model parameters. loss.backward() # Take step with optimizer optimizer.step() ### END YOUR CODE prog.update(1) loss_meter.update(loss.item()) print ("Average Train Loss: {}".format(loss_meter.avg)) print("Evaluating on dev set",) parser.model.eval() # Places model in "eval" mode, i.e. don't apply dropout layer dev_UAS, _ = parser.parse(dev_data) print("- dev UAS: {:.2f}".format(dev_UAS * 100.0)) return dev_UAS if __name__ == "__main__": debug = args.debug assert (torch.__version__.split(".") >= ["1", "0", "0"]), "Please install torch version >= 1.0.0" print(80 * "=") print("INITIALIZING") print(80 * "=") parser, embeddings, train_data, dev_data, test_data = load_and_preprocess_data(debug) start = time.time() model = ParserModel(embeddings) parser.model = model print("took {:.2f} seconds\n".format(time.time() - start)) print(80 * "=") print("TRAINING") print(80 * "=") output_dir = "results/{:%Y%m%d_%H%M%S}/".format(datetime.now()) output_path = output_dir + "model.weights" if not os.path.exists(output_dir): os.makedirs(output_dir) train(parser, train_data, dev_data, output_path, batch_size=1024, n_epochs=10, lr=0.0005) if not debug: print(80 * "=") print("TESTING") print(80 * "=") print("Restoring the best model weights found on the dev set") parser.model.load_state_dict(torch.load(output_path)) print("Final evaluation on test set",) parser.model.eval() UAS, dependencies = parser.parse(test_data) print("- test UAS: {:.2f}".format(UAS * 100.0)) print("Done!") ================================================ FILE: a3/utils/__init__.py ================================================ ================================================ FILE: a3/utils/general_utils.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-2021: Homework 3 general_utils.py: General purpose utilities. Sahil Chopra """ import sys import time import numpy as np def get_minibatches(data, minibatch_size, shuffle=True): """ Iterates through the provided data one minibatch at at time. You can use this function to iterate through data in minibatches as follows: for inputs_minibatch in get_minibatches(inputs, minibatch_size): ... Or with multiple data sources: for inputs_minibatch, labels_minibatch in get_minibatches([inputs, labels], minibatch_size): ... Args: data: there are two possible values: - a list or numpy array - a list where each element is either a list or numpy array minibatch_size: the maximum number of items in a minibatch shuffle: whether to randomize the order of returned data Returns: minibatches: the return value depends on data: - If data is a list/array it yields the next minibatch of data. - If data a list of lists/arrays it returns the next minibatch of each element in the list. This can be used to iterate through multiple data sources (e.g., features and labels) at the same time. """ list_data = type(data) is list and (type(data[0]) is list or type(data[0]) is np.ndarray) data_size = len(data[0]) if list_data else len(data) indices = np.arange(data_size) if shuffle: np.random.shuffle(indices) for minibatch_start in np.arange(0, data_size, minibatch_size): minibatch_indices = indices[minibatch_start:minibatch_start + minibatch_size] yield [_minibatch(d, minibatch_indices) for d in data] if list_data \ else _minibatch(data, minibatch_indices) def _minibatch(data, minibatch_idx): return data[minibatch_idx] if type(data) is np.ndarray else [data[i] for i in minibatch_idx] def test_all_close(name, actual, expected): if actual.shape != expected.shape: raise ValueError("{:} failed, expected output to have shape {:} but has shape {:}" .format(name, expected.shape, actual.shape)) if np.amax(np.fabs(actual - expected)) > 1e-6: raise ValueError("{:} failed, expected {:} but value is {:}".format(name, expected, actual)) else: print(name, "passed!") ================================================ FILE: a3/utils/parser_utils.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-2021: Homework 3 parser_utils.py: Utilities for training the dependency parser. Sahil Chopra """ import time import os import logging from collections import Counter from . general_utils import get_minibatches from parser_transitions import minibatch_parse from tqdm import tqdm import torch import numpy as np P_PREFIX = '

:' L_PREFIX = ':' UNK = '' NULL = '' ROOT = '' class Config(object): language = 'english' with_punct = True unlabeled = True lowercase = True use_pos = True use_dep = True use_dep = use_dep and (not unlabeled) data_path = './data' train_file = 'train.conll' dev_file = 'dev.conll' test_file = 'test.conll' embedding_file = './data/en-cw.txt' class Parser(object): """Contains everything needed for transition-based dependency parsing except for the model""" def __init__(self, dataset): root_labels = list([l for ex in dataset for (h, l) in zip(ex['head'], ex['label']) if h == 0]) counter = Counter(root_labels) if len(counter) > 1: logging.info('Warning: more than one root label') logging.info(counter) self.root_label = counter.most_common()[0][0] deprel = [self.root_label] + list(set([w for ex in dataset for w in ex['label'] if w != self.root_label])) tok2id = {L_PREFIX + l: i for (i, l) in enumerate(deprel)} tok2id[L_PREFIX + NULL] = self.L_NULL = len(tok2id) config = Config() self.unlabeled = config.unlabeled self.with_punct = config.with_punct self.use_pos = config.use_pos self.use_dep = config.use_dep self.language = config.language if self.unlabeled: trans = ['L', 'R', 'S'] self.n_deprel = 1 else: trans = ['L-' + l for l in deprel] + ['R-' + l for l in deprel] + ['S'] self.n_deprel = len(deprel) self.n_trans = len(trans) self.tran2id = {t: i for (i, t) in enumerate(trans)} self.id2tran = {i: t for (i, t) in enumerate(trans)} # logging.info('Build dictionary for part-of-speech tags.') tok2id.update(build_dict([P_PREFIX + w for ex in dataset for w in ex['pos']], offset=len(tok2id))) tok2id[P_PREFIX + UNK] = self.P_UNK = len(tok2id) tok2id[P_PREFIX + NULL] = self.P_NULL = len(tok2id) tok2id[P_PREFIX + ROOT] = self.P_ROOT = len(tok2id) # logging.info('Build dictionary for words.') tok2id.update(build_dict([w for ex in dataset for w in ex['word']], offset=len(tok2id))) tok2id[UNK] = self.UNK = len(tok2id) tok2id[NULL] = self.NULL = len(tok2id) tok2id[ROOT] = self.ROOT = len(tok2id) self.tok2id = tok2id self.id2tok = {v: k for (k, v) in tok2id.items()} self.n_features = 18 + (18 if config.use_pos else 0) + (12 if config.use_dep else 0) self.n_tokens = len(tok2id) def vectorize(self, examples): vec_examples = [] for ex in examples: word = [self.ROOT] + [self.tok2id[w] if w in self.tok2id else self.UNK for w in ex['word']] pos = [self.P_ROOT] + [self.tok2id[P_PREFIX + w] if P_PREFIX + w in self.tok2id else self.P_UNK for w in ex['pos']] head = [-1] + ex['head'] label = [-1] + [self.tok2id[L_PREFIX + w] if L_PREFIX + w in self.tok2id else -1 for w in ex['label']] vec_examples.append({'word': word, 'pos': pos, 'head': head, 'label': label}) return vec_examples def extract_features(self, stack, buf, arcs, ex): if stack[0] == "ROOT": stack[0] = 0 def get_lc(k): return sorted([arc[1] for arc in arcs if arc[0] == k and arc[1] < k]) def get_rc(k): return sorted([arc[1] for arc in arcs if arc[0] == k and arc[1] > k], reverse=True) p_features = [] l_features = [] features = [self.NULL] * (3 - len(stack)) + [ex['word'][x] for x in stack[-3:]] features += [ex['word'][x] for x in buf[:3]] + [self.NULL] * (3 - len(buf)) if self.use_pos: p_features = [self.P_NULL] * (3 - len(stack)) + [ex['pos'][x] for x in stack[-3:]] p_features += [ex['pos'][x] for x in buf[:3]] + [self.P_NULL] * (3 - len(buf)) for i in range(2): if i < len(stack): k = stack[-i-1] lc = get_lc(k) rc = get_rc(k) llc = get_lc(lc[0]) if len(lc) > 0 else [] rrc = get_rc(rc[0]) if len(rc) > 0 else [] features.append(ex['word'][lc[0]] if len(lc) > 0 else self.NULL) features.append(ex['word'][rc[0]] if len(rc) > 0 else self.NULL) features.append(ex['word'][lc[1]] if len(lc) > 1 else self.NULL) features.append(ex['word'][rc[1]] if len(rc) > 1 else self.NULL) features.append(ex['word'][llc[0]] if len(llc) > 0 else self.NULL) features.append(ex['word'][rrc[0]] if len(rrc) > 0 else self.NULL) if self.use_pos: p_features.append(ex['pos'][lc[0]] if len(lc) > 0 else self.P_NULL) p_features.append(ex['pos'][rc[0]] if len(rc) > 0 else self.P_NULL) p_features.append(ex['pos'][lc[1]] if len(lc) > 1 else self.P_NULL) p_features.append(ex['pos'][rc[1]] if len(rc) > 1 else self.P_NULL) p_features.append(ex['pos'][llc[0]] if len(llc) > 0 else self.P_NULL) p_features.append(ex['pos'][rrc[0]] if len(rrc) > 0 else self.P_NULL) if self.use_dep: l_features.append(ex['label'][lc[0]] if len(lc) > 0 else self.L_NULL) l_features.append(ex['label'][rc[0]] if len(rc) > 0 else self.L_NULL) l_features.append(ex['label'][lc[1]] if len(lc) > 1 else self.L_NULL) l_features.append(ex['label'][rc[1]] if len(rc) > 1 else self.L_NULL) l_features.append(ex['label'][llc[0]] if len(llc) > 0 else self.L_NULL) l_features.append(ex['label'][rrc[0]] if len(rrc) > 0 else self.L_NULL) else: features += [self.NULL] * 6 if self.use_pos: p_features += [self.P_NULL] * 6 if self.use_dep: l_features += [self.L_NULL] * 6 features += p_features + l_features assert len(features) == self.n_features return features def get_oracle(self, stack, buf, ex): if len(stack) < 2: return self.n_trans - 1 i0 = stack[-1] i1 = stack[-2] h0 = ex['head'][i0] h1 = ex['head'][i1] l0 = ex['label'][i0] l1 = ex['label'][i1] if self.unlabeled: if (i1 > 0) and (h1 == i0): return 0 elif (i1 >= 0) and (h0 == i1) and \ (not any([x for x in buf if ex['head'][x] == i0])): return 1 else: return None if len(buf) == 0 else 2 else: if (i1 > 0) and (h1 == i0): return l1 if (l1 >= 0) and (l1 < self.n_deprel) else None elif (i1 >= 0) and (h0 == i1) and \ (not any([x for x in buf if ex['head'][x] == i0])): return l0 + self.n_deprel if (l0 >= 0) and (l0 < self.n_deprel) else None else: return None if len(buf) == 0 else self.n_trans - 1 def create_instances(self, examples): all_instances = [] succ = 0 for id, ex in enumerate(examples): n_words = len(ex['word']) - 1 # arcs = {(h, t, label)} stack = [0] buf = [i + 1 for i in range(n_words)] arcs = [] instances = [] for i in range(n_words * 2): gold_t = self.get_oracle(stack, buf, ex) if gold_t is None: break legal_labels = self.legal_labels(stack, buf) assert legal_labels[gold_t] == 1 instances.append((self.extract_features(stack, buf, arcs, ex), legal_labels, gold_t)) if gold_t == self.n_trans - 1: stack.append(buf[0]) buf = buf[1:] elif gold_t < self.n_deprel: arcs.append((stack[-1], stack[-2], gold_t)) stack = stack[:-2] + [stack[-1]] else: arcs.append((stack[-2], stack[-1], gold_t - self.n_deprel)) stack = stack[:-1] else: succ += 1 all_instances += instances return all_instances def legal_labels(self, stack, buf): labels = ([1] if len(stack) > 2 else [0]) * self.n_deprel labels += ([1] if len(stack) >= 2 else [0]) * self.n_deprel labels += [1] if len(buf) > 0 else [0] return labels def parse(self, dataset, eval_batch_size=5000): sentences = [] sentence_id_to_idx = {} for i, example in enumerate(dataset): n_words = len(example['word']) - 1 sentence = [j + 1 for j in range(n_words)] sentences.append(sentence) sentence_id_to_idx[id(sentence)] = i model = ModelWrapper(self, dataset, sentence_id_to_idx) dependencies = minibatch_parse(sentences, model, eval_batch_size) UAS = all_tokens = 0.0 with tqdm(total=len(dataset)) as prog: for i, ex in enumerate(dataset): head = [-1] * len(ex['word']) for h, t, in dependencies[i]: head[t] = h for pred_h, gold_h, gold_l, pos in \ zip(head[1:], ex['head'][1:], ex['label'][1:], ex['pos'][1:]): assert self.id2tok[pos].startswith(P_PREFIX) pos_str = self.id2tok[pos][len(P_PREFIX):] if (self.with_punct) or (not punct(self.language, pos_str)): UAS += 1 if pred_h == gold_h else 0 all_tokens += 1 prog.update(i + 1) UAS /= all_tokens return UAS, dependencies class ModelWrapper(object): def __init__(self, parser, dataset, sentence_id_to_idx): self.parser = parser self.dataset = dataset self.sentence_id_to_idx = sentence_id_to_idx def predict(self, partial_parses): mb_x = [self.parser.extract_features(p.stack, p.buffer, p.dependencies, self.dataset[self.sentence_id_to_idx[id(p.sentence)]]) for p in partial_parses] mb_x = np.array(mb_x).astype('int32') mb_x = torch.from_numpy(mb_x).long() mb_l = [self.parser.legal_labels(p.stack, p.buffer) for p in partial_parses] pred = self.parser.model(mb_x) pred = pred.detach().numpy() pred = np.argmax(pred + 10000 * np.array(mb_l).astype('float32'), 1) pred = ["S" if p == 2 else ("LA" if p == 0 else "RA") for p in pred] return pred def read_conll(in_file, lowercase=False, max_example=None): examples = [] with open(in_file) as f: word, pos, head, label = [], [], [], [] for line in f.readlines(): sp = line.strip().split('\t') if len(sp) == 10: if '-' not in sp[0]: word.append(sp[1].lower() if lowercase else sp[1]) pos.append(sp[4]) head.append(int(sp[6])) label.append(sp[7]) elif len(word) > 0: examples.append({'word': word, 'pos': pos, 'head': head, 'label': label}) word, pos, head, label = [], [], [], [] if (max_example is not None) and (len(examples) == max_example): break if len(word) > 0: examples.append({'word': word, 'pos': pos, 'head': head, 'label': label}) return examples def build_dict(keys, n_max=None, offset=0): count = Counter() for key in keys: count[key] += 1 ls = count.most_common() if n_max is None \ else count.most_common(n_max) return {w[0]: index + offset for (index, w) in enumerate(ls)} def punct(language, pos): if language == 'english': return pos in ["''", ",", ".", ":", "``", "-LRB-", "-RRB-"] elif language == 'chinese': return pos == 'PU' elif language == 'french': return pos == 'PUNC' elif language == 'german': return pos in ["$.", "$,", "$["] elif language == 'spanish': # http://nlp.stanford.edu/software/spanish-faq.shtml return pos in ["f0", "faa", "fat", "fc", "fd", "fe", "fg", "fh", "fia", "fit", "fp", "fpa", "fpt", "fs", "ft", "fx", "fz"] elif language == 'universal': return pos == 'PUNCT' else: raise ValueError('language: %s is not supported.' % language) def minibatches(data, batch_size): x = np.array([d[0] for d in data]) y = np.array([d[2] for d in data]) one_hot = np.zeros((y.size, 3)) one_hot[np.arange(y.size), y] = 1 return get_minibatches([x, one_hot], batch_size) def load_and_preprocess_data(reduced=True): config = Config() print("Loading data...",) start = time.time() train_set = read_conll(os.path.join(config.data_path, config.train_file), lowercase=config.lowercase) dev_set = read_conll(os.path.join(config.data_path, config.dev_file), lowercase=config.lowercase) test_set = read_conll(os.path.join(config.data_path, config.test_file), lowercase=config.lowercase) if reduced: train_set = train_set[:1000] dev_set = dev_set[:500] test_set = test_set[:500] print("took {:.2f} seconds".format(time.time() - start)) print("Building parser...",) start = time.time() parser = Parser(train_set) print("took {:.2f} seconds".format(time.time() - start)) print("Loading pretrained embeddings...",) start = time.time() word_vectors = {} for line in open(config.embedding_file).readlines(): sp = line.strip().split() word_vectors[sp[0]] = [float(x) for x in sp[1:]] embeddings_matrix = np.asarray(np.random.normal(0, 0.9, (parser.n_tokens, 50)), dtype='float32') for token in parser.tok2id: i = parser.tok2id[token] if token in word_vectors: embeddings_matrix[i] = word_vectors[token] elif token.lower() in word_vectors: embeddings_matrix[i] = word_vectors[token.lower()] print("took {:.2f} seconds".format(time.time() - start)) print("Vectorizing data...",) start = time.time() train_set = parser.vectorize(train_set) dev_set = parser.vectorize(dev_set) test_set = parser.vectorize(test_set) print("took {:.2f} seconds".format(time.time() - start)) print("Preprocessing training data...",) start = time.time() train_examples = parser.create_instances(train_set) print("took {:.2f} seconds".format(time.time() - start)) return parser, embeddings_matrix, train_examples, dev_set, test_set, class AverageMeter(object): """Computes and stores the average and current value""" def __init__(self): self.reset() def reset(self): self.val = 0 self.avg = 0 self.sum = 0 self.count = 0 def update(self, val, n=1): self.val = val self.sum += val * n self.count += n self.avg = self.sum / self.count if __name__ == '__main__': pass ================================================ FILE: a4/README.md ================================================ # NMT Assignment Note: Heavily inspired by the https://github.com/pcyin/pytorch_nmt repository ================================================ FILE: a4/__init__.py ================================================ ================================================ FILE: a4/chr_en_data/dev.chr ================================================ ᏉᎳ, ᎠᎴ ᏌᏱᎳ, ᎠᎴ ᏗᎹᏗ, ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᏕᏏᎶᏂᎦ ᎢᏤᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏣᏁᎶᏛᎢ. ᎤᏂᏣᏘᏃ ᎤᎾᏛᎦᏅ ᎤᏂᏍᏆᏂᎪᏒᎩ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᎪᎥᎩ ᎦᎸᎳᏗ ᏓᏳᏠᎠᏒᎩ, ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒᎩ; ᎾᏍᎩᏃ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎡᎶᎯ ᎢᎦ ᎤᏘᏍᏔᏅᎩ. ᎯᎠᏃ ᎾᏍᎩ ᎢᏣᏙᎯᎱᎯᏍᏙ ᎨᏎᏍᏗ; Ꮣ ᏰᏥᏩᏛᎯ ᎠᏲᎵ ᎠᏥᏣᏄᎴᏍᏗ, ᏐᏈᎵ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎦᏅᎨᏍᏗ. ᎨᏍᏗ ᏳᏬᎯᏳᎮ ᏄᏍᏛ ᎠᎪᏩᏘᏍᎬ, ᎠᏎᏃ ᎤᏙᎯᏳ ᏕᎦᏁᎵᏍᎨ ᏛᎦ, ᎦᏙᎵᎨ ᏍᎩᎾᎾ. ᏥᏌᏃ ᏣᎷᏏᎵᎻ ᏭᏴᎴᎢ, ᎠᎴ ᎤᏔᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏴᎴᎢ; ᎿᏉᏃ ᎬᏩᏚᏫᏛ ᏚᎧᎿᏂᏙᎸ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏚᎧᎿᏅ, ᎠᎴ ᎿᏉ ᎤᏒᎯᏴᏱ ᎨᏎᎢ, ᎤᏄᎪᏤ ᏇᏗᏂᏱ ᏭᎶᏎ ᎠᏁᎮ ᏔᎳᏚ ᎢᏯᏂᏛ. ᏔᎵ ᎢᏳᎾᏙᏓᏆᏍᏗ ᏙᏥᎭᏲᎲ, ᏐᏉ ᎣᏥᏩᏛᎲ ᎤᏛᏐᏅ ᎾᎥᏂ ᏗᎨᏫ ᏃᎴ ᎤᏩᏌ ᎦᏂᎩᎸ, ᏏᏆ ᎭᏫᏯ ᏧᏙᎢᏓ ᎤᏛᏅ ᏃᎴ ᎾᎥᏂ ᏍᎪᎯᏍᏆ ᎢᏳᏕᏘᏴᏓ. ᎨᏍᏗ ᏱᏥᎪᏩᏘᏍᎨ ᎢᏣ ᎣᎩᏅᎪᎢᏍᏗ. ᎤᎴᏅᎮ ᎠᏦᏱᎲᎢ ᎠᎳᏂ. ᏥᏌᏃ ᎤᏄᎪᏤ ᎠᎴ ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏏᏌᎵᏱ ᏈᎵᎩ ᏕᎦᏚᎲ ᏭᏂᎶᏎᎢ; ᏩᎾᎢᏒᏃ ᏚᏛᏛᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎬᏉᏎᎰ ᏴᏫ? ᏣᏌᏙᏰᏃ ᎢᎦᎦᏛ ᏓᏳᏂᎷᏤᎵ ᏂᎬᎾᏛ ᏗᏁᎯ. ᏚᏁᏤᎴᏃ ᎤᏂᏣᏘ ᎦᏙᎯ ᎤᎾᏂᏢᏗᏱ; ᎦᎵᏉᎩᏃ ᎦᏚ ᏚᎩᏒ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᏚᎬᎭᎷᏰᎢ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏁᎴ ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᏧᏂᏁᏗᏱ; ᎢᎬᏱᏗᏢᏃ ᏚᏂᏁᎴ ᎤᏂᏣᏘ ᏴᏫ. ᏓᏓᏁᏄᎸᏗᏍᎨ ᏃᎴ ᏓᏲᏍᏔᏁᎮ ᏴᏫ. ᏣᏄᏏ, ᎡᎶᏗ ᏃᎴ ᎰᎻ ᎤᏂᎷᏤᎢ ᏍᎩᏴᎯ, ᏚᏂᏍᏓᏩᏗᏎ ᎠᎳᏂ, ᎪᏱᏁᎢ, ᎡᎳᏆᏗ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ. ᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎣᏂᏉ ᎤᎷᏨᎩ, ᎠᎴ ᎠᏤᎵᏍᏛ ᏭᏴᎸᎩ, ᎠᎴ ᏚᎪᎲᎩ ᏙᎴᏛ ᏗᏄᏬ ᏕᎦᏅᎢ. ᎯᎠ ᏁᏥᏪᏏ ᏌᏯᏂ ᎤᏪᏥ ᎠᎨᏴ; ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᏣᏤᎵ ᏓᏯᎢ, ᏓᏣᎷᏤᎵ ᎤᏓᏙᎵᏍᏗᏳ, ᎠᎴ ᎤᎩᎸᏕᏍᏗ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎪᎱᏍᏗ ᎠᏛᏁᎯ ᎤᏪᏥ ᎠᎩᎾ. ᎬᏂᏳᏉ, ᎢᏨᎾᏄᎪᏫᏎ ᎤᏕᎵᏛ ᎨᏒᎢ; ᎥᏝ ᏂᎦᏛ ᏴᏓᏗᎵᏅᏥ, ᏂᎦᏗᏳᏍᎩᏂ ᎡᎩᏁᏟᏴᏍᏗ ᎨᏎᏍᏗ ᎤᎬᏫᏳ Ross, ᏗᏘᎭᏁᎩ ᎠᏂᏣᎳᎩ, ᎠᏂᏐ ᏗᏂᎳᏫᎩ ᏄᏂᏁᎩᏴ ᏍᏉ ᎤᏁᎦ ᎨᏎ. ᎠᏂᏐᎢ ᎡᎾᎢ ᏂᏓᏅᏁ ᎦᏓ. ᎿᏉᏃ ᏔᎵᏁ ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᎪᏙ ᏨᏁᎴ ᏕᏣᏍᏚᎢᎡᎴ ᏘᎦᏙᎵ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎩᎶ ᎠᎩᏍᎦᎩ ᎾᏍᎩ ᏄᏛᏁᎸ. ᏧᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎬᏪᏎᎴᎢ; ᏣᏚᎵᏍᎪᏃ ᎣᎩᏰᎯᏒᏍᏗᏱ? ᏛᎾᎵᏛᏔᏂ ᎾᏍᎩ; ᏂᎯᏍᎩᏂ ᏁᏣᏛᏁᏍᏗᏉ; ᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᏓᏳᏁᏔᏥ ᎠᏄᏬ ᎾᏍᎩᏯᎢ; ᏌᏉᏍᎩᏂ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᏪᏅᏎᎢ, ᏭᏍᎪᎭ ᎦᏙᎯ, ᎠᎴ ᏫᏚᏩᏍᎦᎳᏁ ᎤᎾᏝᎢ ᏧᏤᎵ ᎠᏕᎸ. Philadelphia ᏓᏳᎶᏒ ᎠᏧᏣ ᏦᎢ ᎢᏴ ᎤᏍᏆᎵᏒ ᏚᏇᏍᏗ, ᎠᏥᎸ ᏫᏚᏗᏅᏒ. “ᎯᎠᏛ ᎾᏅᏛᏁᎰ ᏱᎾᏚᎳᏑᏝᎾ,” ᎤᏛᏁ ᏩᎭᏯ ᎭᎴ ᎾᏦᎯᏍᎬ. ᎾᏍᎩ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎿᏉ ᏗᏗᏲᎵ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎢᎩᏃᎸᏔᏂᏓᏍᏗᏱ ᏂᎨᏒᎾ ᏂᎦᎥᏉ ᏗᏕᏲᏗ ᎨᏒ ᎦᏃᎸᏔᏂᏙᎲᎢ, ᎤᎾᏓᎵᏓᏍᏗᏳ ᎨᏒ ᏴᏫ, ᎠᏂᏏᎾᏌᏅ ᎠᏂᎦᏘᏴ ᎤᎾᏓᎶᏄᎮᏗᏱ; ᏌᎳᏓ ᏚᏏᎳᏛ ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ, ᏅᏯ ᎢᏥᎲᎾ. ᎹᏗ ᎤᏲᎮᏒᎯ ᎤᏙ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎪᎯ ᎠᏎ ᎠᏒᎦ, ᏅᎩᏰᏃ ᏁᏒᎭ ᎦᏰᏥᏂᏌᏅᎯ. ᎦᎸᎳᏗᏰᏃ ᎤᏤᎵᎪᎯ ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᎦᏁᎳ, ᏑᎾᎴᎢᏳ ᏧᏪᏅᏎ ᏥᏚᏅᏒᏎ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎯ ᏖᎸᎳᏗ ᏚᏫᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ. ᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᎢᎦᏪᏛ ᎨᏒᎢ, ᎠᎦᏔ ᎠᎦᏔᏉ ᏓᎬᏩᎸᏍᎨᏍᏗ, ᎧᏳᎦᏃ ᎧᏳᎦᏉ ᏓᎬᏩᎸᏍᎨᏍᏗ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᎣᏍᏛ ᎢᏳᏅᎿᏕᎩ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏗᏂᎳᏫᎩ, ᎾᏍᎩ ᎬᏩᏂᏴᎯᎸᎯ, ᎢᏥᎷᎩᏍᎪ ᎠᏓᎾᏌᎲᏍᎩ ᏤᏥᏲᎰ ᎾᏍᎩᏯᎢ, ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏥᏕᏥᏁᎭ? ᎾᏍᎩ ᏥᏚᏍᏆᏂᎪᏗ ᏥᏚᏩᏍᎦᎳ ᏂᎦᎥ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒ ᎠᎴ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ. ᏎᎦᏨ ᏩᎩᏍᏚᎩᏒ ᎠᏍᏚᏗ, ᏥᏩᏛᎲ ᏗᏓᎯ, ᎠᏂᏫᏄᏣ ᏧᎵᎢ ᏚᏟᏃᎮᏛ. ᎠᎴ ᎤᏬᎯᏤ ᎬᏩᎪᏩᏘᏍᎨ ᎨᎵᎵ ᎾᏍᎩ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎢᏧᎳᎭ ᏥᎷᏏᎵᎻ ᎤᏂᎷᏨᎯ; ᎾᏍᎩ ᏧᏤᎵ ᎬᏩᏃᎮᏍᎩ ᏴᏫ ᎠᏂᎦᏔᎲᎢ. ᏰᎵ ᏍᎪᎯᏍᏆ ᏴᏫ ᎤᏁᏙᎸ ᎠᎾᏓᎪᎾᏗᏍᎬ, ᎨᏍᏗ ᎩᎶ ᏯᎦᏔᎮᎢ ᏄᎵᏍᎨᏗᏴ ᏄᏛᏁᎸ ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩ. ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎠᎯᏗᏳ ᎧᏁᎢᏍᏗᏱ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ ᎠᏛᏗᏱ; ᎠᎴ ᎯᎠ ᎢᎦᏪᏍᏗᏱ, ᏔᎴᎲᎦ ᎠᎴ ᎮᏓ? ᎪᎯᎢᏴ ᎤᎵᏖᎸᏁ. ᎾᎨᎢᏴ ᎣᎭᏁ, ᎠᎾᏓᎭᏲᎯ ᎠᏂᎾᎷᏍᎬ ᏚᎨᏓᎵᏴ ᎾᎥᏂᎨ ᎠᏂᎷᎬ ᎤᏙᏓᏈᏒ. ᎠᎴ ᏓᎬᏩᎵᎥᏂᎵ, ᎠᎴ ᏓᎬᏩᎵ; ᏦᎢᏁᏃ ᎢᎦ ᏙᏛᎠᎴᎯᏌᏂ. Ꮂ…Ꮂ… ᎠᏗᎲ ᎢᎦ ᎤᏍᎦᏱᏓ ᎨᏒ! ᎠᏎᏃ ᎢᏣᏛᎩᏍᎨᏍᏗ ᏓᏅᏩ ᎠᎴ ᏧᏓᎴᏅᏛ ᏂᎦᎵᏍᏔᏂᏙᎲᎢ, ᏞᏍᏗ ᏱᏥᏍᎦ-ᎢᎮᏍᏗ; ᎯᎠᏰᏃ ᎾᏍᎩ ᎠᏎ ᎢᎬᏱ ᎢᏳ-ᎵᏍᏙᏗ, ᎥᏝᏍᎩᏂ ᎢᎬᏪᏅᏛᏉ ᎤᎵᏍᏆᏗᏍᏗ ᏱᎨᏎᏍᏗ. ᏃᏗ ᏓᏰᏍᏛᎥᏍᎨ ᎤᏩᏂ ᎠᎴ ᎠᎭᎾᏬ ᎤᏩᏌ ᏧᏩᏅ, ᏔᎵ ᎢᎦ ᏓᎦᎸᎦᏍᎨ ᎤᏐᏱ ᎦᏙ ᏧᏥᎶᏍᏔᏅ, ᏗᏦᎯᏓ ᏕᎦᏰᏫᏍᎨ. ᎯᎸᏍᎩ ᎢᏯᎦᏴᎵ ᏕᎯᏅᎪᏩ ᎪᎰᏍᏗ ᏳᎵᏍᏔᏅᎾ. “ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ. ᎠᏆᏛᎦᏅᎩᏃ ᎠᏍᏓᏯ ᎧᏁᎬ ᎩᎶ ᎦᎸᎳᏗ ᏛᏓᎴᎲᏍᎬᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎬᏂᏳᏉ ᎤᏁᎳᏅᎯ ᎤᎵᏦᏛ ᏴᏫ ᎠᏁᎲ ᎤᏓᏑᏯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏁᎲ ᏛᏕᏂ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎨᏎᏍᏗ ᏴᏫ, ᎤᏁᎳᏅᎯᏃ ᎤᏩᏒ ᎾᏍᎩ ᎠᏁᎲ ᎡᎮᏍᏗ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏏᎵ ᏧᏁᏢᏔᏅᏛ ᏥᎩ; ᎾᏍᎩ ᎤᎾᏤᎵᎦ ᏥᎩ [ᎤᏁᎳᏅᎯ] ᏧᏪᏥ ᎢᎨᎬᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏥᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏚᎢᏍᏙᏗ ᎨᏒᎢ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏳᏪᏎᎭ, ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩ ᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏟᎯᏳ ᎾᏍᎩ Ꮎ ᎦᏚᎲᎢ. ᎣᏍᏓᎦ ᎨᏎᏍᏗ ᏫᏗᎷᏨ ᏗᎨᏅᏒ, ᎯᏓᎵᎪᏅ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ?” “ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᏓᏊᎧᏔ ᏂᎯ ᏍᏓᎵᎪᏒ ᎠᎨᏳᏣ,” ᏥᏲᏎᎸ ᎣᎩᎾᎵ Michael. ”ᏄᏓᎴᏒ ᎠᎩᎸᏉᏗ ᎭᏂ.” ᎤᏓᏅᏎᏃ ᏭᏂᏍᏓᏕᏎ ᏣᏂ ᏗᏓᏍᏚᏗᏱ. “ᏍᎩᏗ ᎢᎩᏂᎬᎦ,” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎠᏌᎻᏓ, ᎤᎩᎸᏉ, ᎤᏁᎸᏔᏁ ᎤᎵᏒᏗ ᎦᎶᏇ, ᎠᏎᏃ ᏚᏩᏰᏐᏪᎢᏉ ᎤᏁᎸᏔᏅ ᎤᎧᏁᏴᏗ ᎠᎭᏳᎾᏚᎳ. ᎤᏓᏅᏖᏔᏅ ᎠᏌᎻᏓ. ᎤᏏᎳᏛᏙᏗ ᎦᏓᎡ ᏏᏆ ᎡᏆ ᎧᏴᏌᏛ ᎠᎬᏱᏣ ᏭᎴᏫᏍᏔᏁ. ᎿᏉᏃ ᎠᎨᏴ ᎤᎷᏨ ᎤᏓᏙᎵᏍᏓᏁᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᏍᎩᏍᏕᎢ. ᎠᏎᏃ ᏚᏓᏂᏴᎲ ᏃᎴ ᎤᏛᏒ. ᎡᎵᏊᏃ ᎢᎦ ᏚᏃᏴᎬ ᏚᏬᏪᎳᏅ ᏍᏛᎾ ᏁᎵᏍᎪᎯ ᏅᎩ ᎤᎴᏅᎮ ᏕᎪᏪᎵᏍᎬ ᏗᎧᏁᎢᏍᏗ ᏣᎳᎩ ᎦᏬᏂᎯᏍᏗ. ᎩᎶ ᎾᏆᎵᎪᏁᎲᎾ, ᎾᏍᎩ ᎠᏆᏡᏗᎭ; ᎩᎶᏃ ᏃᏍᏗᏟᏏᏍᎬᎾ, ᎾᏍᎩ ᏯᏗᎦᎴᏯᏍᎦ. ᎠᎴ ᎥᏝ ᎿᏉ ᏰᎵ ᎠᏇᏥ ᎨᏍᏉᏎᏗ ᏱᎩ; ᏘᏅᏏᏓᏍᏗᏉ ᏔᎫᏴᎡᎯ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏍᏋᎦ. ᏩᏏᏓᏂ ᏣᏲᎪ. ᎦᏙᏃ ᏯᏆᏕᏯᏙᏔᏅᎭ? “ᏔᎵ ᎢᏯᏅᏓ ᎢᏯᏆᏕᏘᏴᏓ ᏃᏉ ᏓᎩᏯᏪᎦ ᎨᎥᎢ, ᎤᏛᏁ. ᎠᎩᏁᎫ ᎾᏆᎵᏍᏔᏅ ᎦᏢᏆᏍᎬᎢ; ᏂᎯ ᏂᏍᎩᏴᏂᏌᏏ; ᏂᎯᏰᏃ ᏍᎩᎸᏉᏙᏗ ᎨᏒᎩ; ᎥᏝ ᏰᏃ ᏑᏓᎴᎩ ᎤᏅ ᎡᏍᎦ ᏱᎦᏥᏲᎠᏍᎦ ᏄᏂᎬᏫᏳᏒ ᎨᏥᏅᏏᏛ, ᎾᏍᏉ ᎠᏴ ᎪᎱᏍᏗ ᏂᎨᏒᎾ ᏱᎩ. ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎠᏆᏓᏅᏛ ᎤᎧᎵᏨᎯ ᎤᏣᏘ ᎡᎯᏍᏗ ᎨᏒᎢ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᎦᎢ. ᎠᏂ ᎢᏥᏁᏍᏗ ᎠᎴ ᎢᏧᎳᎭ ᎢᏗᏯᏫᏍᎨᏍᏗ. ᏰᎵ ᎪᎯᏓ ᎡᏝᏪᎯ ᏄᎵᏍᏔᏁ, ᎠᎾᏗᎦᎴᏯᏍᎨ ᎠᎾᏓᎭᏲᎯ, ᎠᎬᏱᏣ ᏃᎴ ᎠᎾᏕᎭᏲᎮ. ᎪᎯᏊᏴ ᏆᏧ ᎢᎪᎢ ᎠᏭᏴ ᏩᎩᎶᏒ Ꮎ ᎠᏓᏁᎸ ᎨᏒ ᎾᎥᏂ. ᎠᏎᏃ ᏓᎻ, ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᎳ, ᏗᏗᎹ ᏧᏙᎢᏛ, ᎥᏝ ᏱᎨᎴ ᏥᏌ ᎤᎷᏨ. ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎯ ᏕᏥᏴᎨᏍᏗ ᎠᎴ ᎢᏥᏍᎪᏂᎮᏍᏗ, ᎡᎶᎯᏍᎩᏂ ᎠᎵᎮᎵᎨᏍᏗ; ᏂᎯᏃ ᎤᏲ ᎢᏣᏓᏅᏖᏍᏗ, ᎠᏎᏃ ᎤᏲᎢᏣᏓᏅᏛ ᎤᎵᎮᎵᏍᏗ ᏮᏛᏓᏁᏟᏴᏍᏔᏂ. ᏌᏊ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ. ”ᏙᎢᏳᏍᏗ ᎠᎩᎵᏓᏍᏓ?” ᎤᏛᏛᏁ ᏏᏆ, ᎣᏍᏓ ᏭᏛᏂᏌᎾ ᏭᏅᏥᎸᎢ. ᎤᏃᏍᎩᏛᏃ ᎨᏒ ᏞᏍᏗ ᎿᏉ ᏳᏃᏍᎩᏎᏍᏗ; ᏚᎸᏫᏍᏓᏁᎮᏍᏗᏉᏍᎩᏂ ᏕᎬᏗᏍᎨᏍᏗ ᏧᏬᏰᏂ ᎣᏍᏛ ᎨᏒ ᎾᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᎦᎬᏩᏁᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎤᏂᎬᏎᎯ ᎨᏒᎢ. ᏌᏌ ᎠᏂᏓ ᏕᏥᎦᏖᏃᎭ.” ᏱᏓᎩᏯᏪᎬᎾ ᏃᎴ ᏯᎩᏚᎬᎾ ᏓᎩᎷᏫᏍᏔᏁᎲ. ᏠᎨᏏᏃ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏂᏂᏴᎮ ᏧᏅᏏᏓᏍᏗ, ᎠᏏᏴᏫ ᎤᏂᎸᏂᎴᎢ, ᏐᎢᏃ ᎤᏂᎴᎢ, ᏐᎢᏃ ᏅᏯ ᏚᏅᏂᏍᏔᏁᎢ. ᎤᎸᏃ ᎡᎮ ᎺᎵ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏬᎴ ᏥᏌ ᏚᎳᏍᎬᎢ, ᎠᎴ ᎤᏛᏓᏍᏕ ᎦᏬᏂᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎤᏟ ᎢᎪᎯᏛ ᎦᏲᎦᏛᏂᏗᏍᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ, ᎣᏏᏳ ᎣᎩᏰᎸᏅᎩ ᎣᎬᏒ ᎣᎩᎧᎯᏯᏍᏗᏱ ᎡᏗᏂᏱ; ᎾᏍᎩ ᎤᏩᏒ ᎠᎦᏔᎲ ᎤᏪᎪᏗᏱ ᏗᎬᏩᎸᏌᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᏄᏚᏯᏍᏛᎾ, ᎠᎴ ᏄᏓᏁᎪᏳᏒᎾ, ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏍᎩ ᎢᏳᏍᏗ ᏄᏓᏓᎸᎾ; ᎾᏍᎦᏅᎾᏍᎩᏂ ᎢᏳᎵᏍᏙᏗᏱ ᎠᎴ ᎪᎱᏍᏗ ᎾᎫᎢᏍᏛᎾ. “ᎬᏲᎵᎭ, ᎤᏐᏱᏉᏗ ᏏᏲ,” ᎤᏛᏁ ᎩᎶ. ᎤᏣᏘᏰᏃ ᎢᏳᏓᎴᎩ ᏂᏗᎥ ᎢᏗᏍᎦᏅᎪᎢ. ᎢᏳᏃ ᎩᎶ ᎦᏬᏂᏍᎬ ᎾᏍᎦᏅᎬᎾ ᏥᎨᏐᎢ, ᎾᏍᎩ ᏄᎪᎸᎾ ᎨᏐ ᎠᏍᎦᏯ, ᏰᎵᏉ ᎬᏪᎾᎯᏍᏙᏗ ᏂᎬ ᎠᏰᎸᎢ. ᎤᏍᎫᏴ ᎤᏭᏓᎳᎩᏍᏓᏁ ᎠᏍᏚᎩᏍᏗ. ᎦᎸᎳᏗᏣ ᎨᏍᏗ ᎪᎱᏍᏗ ᏯᎵᏖᎸᎮᏍᎨᎢ: ᏩᎦ ᎤᎾᏣᏪᏐᎸᏍᏕ, ᏐᏈᎵ ᎠᏂᏟᏁᎢ. ᎢᏳᏃ ᏴᏫ ᎢᏳᎾᏛᏁᏗ ᎢᏯᏆᏛᏁᎸᎯ ᏱᎩ, ᏅᎩ ᏗᏂᏅᏌᏗ ᎤᏂᏍᎦᏎᏗ ᎣᎦᎵᎸᎯ ᏱᎩ ᎡᏈᏌ ᎦᏚᎲᎢ, ᎦᏙ ᎬᎩᏁᏉᏤᏗ ᎣᏍᏛ ᎨᏒ, ᎢᏳᏃ ᏧᏂᏲᎱᏒᎯ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ? ᎢᏓᎵᏍᏓᏴᎲᏍᎨᏍᏗ, ᎠᎴ ᎢᏓᏗᏔᏍᎨᏍᏗ; ᏑᎾᎴᏉᏰᏃ ᏙᏓᏗᏲᎱᏏ. ᎯᎠᏰᏃ ᏄᏪᏎ ᎤᏓᏅᏛᎢ; ᎢᏳᏃ ᎤᏄᏩᎥᏉ ᏯᏆᏒᏂᎸ, ᎠᏎ ᏯᏆᏗᏫ. ᏐᏁᎳ ᏧᏪᏥ ᏚᏁᏍᎩᎴ ᏌᏌ. “Ꮘ-Ꮘ-Ꮘ!” ᎤᎾᏛᏁ ᏌᏌ ᎠᏂᏓ. ᏣᎵ ᎤᏩᏌ ᎤᏬᏂᏒ, ᎤᏁᎸᏔᏅ ᎤᏎᎵᏓᏍᏗ ᏚᎾᏢᎥ ᏧᏬᏰᏂ. “ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᏌᎳᏓ ᎡᏝᏪᎯ. ᎭᏫᏂᏣ, ᎤᏓᏅᏘ ᏃᎴ ᎢᎪᎯᏓ ᎠᏓᏍᏕᎵᏍᎩ ᎨᏒ. ᏄᏟᏂᎬᎬ ᎠᏏᎳᏛᏙᏗ ᎬᏓ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᏁᎮᎢ. ᏂᎦᏓ ᎧᏅᏂᏍᎩ ᏍᎩᏄᎾᏍᏗ, ᎡᎵᏍᏗ.” ᏌᎳᏓ ᏃᎴ ᏫᎵᎻ ᎤᏅᏌ ᎨᏎᎢ. “ᎡᎭ ᎤᏟᏍᏓ!” ᎤᏛᏁ ᏫᎵᎻ. ᏑᎾᎴ ᏄᎵᏍᏔᎾ, ᏂᎦᏓ ᎢᎦᎯ ᏥᏂᎦᎵᏍᏗ ᎤᎾᏗᏛᎮ. ᎦᎵᏣᏗ ᏃᎴ ᎦᏟᏓ ᏃᎴ ᎪᎰᏍᏗ ᏚᏇᏍᏘ ᏧᏙᎢᏓ ᏚᏅᏯ, ᎤᏍᏗ ᎢᎾᎨ ᎡᎯ ᏧᏂᎯᏍᏙᏗ, ᎠᏂᏍᎦᏯᏯ. ᎠᏂᏳᏩᏁᎦ ᏧᎾᎦᏎᏂ ᎠᏂᏅᎦᎵᏗᏍᎪ ᎠᏓᏁᏖᎸ ᎤᏩᏙᎯᏴᏓ ᏧᏙᏓᏋᏓ. ᎡᎳᏗᏣ ᏧᎦᏎᏍᏕᎢ ᏫᎵᎻ. ᎾᎯᏳ ᎼᏏ ᎤᏕᏁᎢ, ᎠᎴ ᎤᏩᏔᏅᎯ ᎤᏬᏚᎯᏳ ᎨᏎᎢ, ᎠᎴ ᎠᏥᏍᏆᏂᎪᏔᏁ ᎤᏙᏓ ᎦᏁ-ᎸᎢ ᏦᎢ ᎢᏯᏅᏙ. ᎿᏉᏰᏃ ᏂᎪᎯᎸᎾᏉ, ᎾᏍᎩ ᎤᎷᎯᏍᏗ ᏥᎩ ᏓᎦᎷᏥ, ᎠᎴ ᎥᏝ ᏴᏛᏙᎯᏗ. ”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ.” ᎤᏛᏛᏁ ᏌᎳᏓ, ᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏔᏅ ᏱᎨᏎ ᎣᎳ ᎤᎧᏲᏓ. ᎤᎵᏂᎩᏛᏰᏃ ᎠᏉᎯᏳᎭ, ᎾᏍᎩ ᎥᏝ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏛᏂᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎨᏥᎸᏉᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎪᎯ ᏤᎭ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏎ ᎤᎾᏄᎪᎢᏍᏗ ᏥᎩ, ᏙᏉ ᎢᏳᏍᏗ ᎠᏰᎸᏗ ᏧᎾᎪᎰᏍᏔᏅ ᏓᏓᏁᎸ ᏃᎴ ᏧᏂᎸ ᎠᏂᎾᏌ? ᎠᏎᏃ ᎨᏍᏗ ᏍᎩᎾᎾ ᏱᏄᎵᏍᏔᎾ. ᎬᏂᏳᏉ ᏂᏨᏃᏁᎸ. ᎠᎩᏚᏚ ᏍᏊ ᎢᎪᎯᏓ ᏓᏁᎶᏗᏍᎪ ᎤᎾᏗᎴᎩ ᏥᎩ ᎢᏳᎾᏍᏗ, ᏍᏆᏂᏯ ᎤᎦᎾᏮ ᎠᎹᏰᎵ ᏗᏳᎾᏓᎴᏅ. ᎾᏍᎩᏯᏃ ᎾᏍᏉ ᎪᎯ ᎨᏒᎢ ᎤᎾᎵᏃᎯᏴᎯ ᎠᏁᎭ ᎾᏍᎩᏯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏩᏔᏅ ᏚᏑᏰᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎢᏥᎪᎲᎭ ᎤᏍᎦᎢᏍᏗᏳ ᎬᏃᏌᏛᎯ ᎢᎬᏁᎯ, ᎾᏍᎩ ᏕᏂᎵ ᎠᏙᎴᎰᏍᎩ ᏧᏁᎢᏍᏔᏁᎢ, ᎦᏙᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, (ᎩᎶ ᎠᎪᎵᏰᏍᎨᏍᏗ ᎪᎵᎨᏍᏗ,) [ᎤᏁᎳᏅᎯᏰᏃ] ᎣᏏᏳ ᎤᏰᎸᏗ ᎡᎩᏅᎦᎸᏗᏱ ᏥᏌ ᎦᎶᏁᏛ ᎠᏰᎸ ᏌᏉ ᎢᏯᎵᏍᎪᎸᏔᏅᎯ ᎨᏒ ᎢᏳᏩᏂᏌᏛ. ᎠᏕᎳ ᎬᏘ ᏗᎪᏚᎢᏍᏔᏅ ᏧᏔᏬᏗ ᏓᏆᎳᏑᏢ, ᏗᏥᏂᎨᏂ ᏩᏍᏗ ᏗᎧᏁᏴᏓ ᏃᎴ ᏗᎦᎸᎩᏓ ᏕᎦᏰᏫᏒ. ᎠᏎᏍᎩᏂ ᏄᏍᏛ ᏓᏆᏚᏍᏔᏅᎢ ᎠᏎ ᎢᏯᏆᏛᏁᏗ, ᎨᏍᏗ ᎠᏎ ᏯᏆᎵᏍᎦᏂᏎᎢ.” “ᏄᏓᎴ ᎧᏃᎮᏗ ᏍᎩᏃᎯᏏ!” ᎤᏓᏍᏗᏰᏔᏁ ᏫᎵᎻ. ᎦᎢᏒ, ᏫᎦᎢᏒ. ᎠᎨᏯ ᎤᏴᎵᎸ ᎠᎭᏰᎲ ᎤᏃᏩ ᎤᎶᏛ ᏏᏆ ᎭᏫᏯ, ᎠᏂᏤ ᏄᎾ ᏗᏒᎾᏔᏅ ᏃᎴ ᎠᎪᏍᏔ ᎠᎩᏍᏗ ᎪᎢ ᎠᏍᏚᏨ. ᏂᎯᏍᎩᏂ ᎮᏯᏔᎯᏳ ᎨᏎᏍᏗ ᏂᎦᎥ ᏂᏣᏛᎿᏕᎬᎢ, ᎲᏂᏗᏳ ᎨᏎᏍᏗ ᎯᎩᎵᏲᎬᎢ, ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ ᎠᎵᏥᏙᏂᏙᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᏰᎵᎦᏯ ᎯᏍᏆᏗᏍᎨᏍᏗ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎤᏙᎯᏳ ᎦᎵᏍᏓᏴᎲᎦ ᏃᎴ ᎦᏛᏁᎵᏍᎬ! ᏅᏦᎠᏎᏍᎬᎾ ᎠᎦᏘᏰᎢ ᎪᎳ ᎤᎶᏐᎲᏍᏗ ᏃᎴ ᎤᏂᎷᎯᏍᏗ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ. ᎤᏅᎪᏤ ᏚᎨᏓᎵᏴ, ᏧᎵᏑᏫᏓ ᏧᏆᎶᎦ ᏕᎦᏓᎥ ᏕᏧᎬ, ᎠᎦᏗᏛ ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎦᎴᎩ ᎤᏛᏒ ᎪᎨ, ᎦᎵᏬᎨ ᎠᎪᏩᏘᏍᎬ ᎢᏳᏓᏅᎯᏓ, ᏃᎴ ᏧᎧᎭᏲᏒ ᏚᏅᏓᏒ, ᎤᏒᎮᎯ ᎤᎾᎷᏎ ᎠᏙᎯ ᏕᏧᎬ ᎧᏂᎩᏓ ᏧᏆᎶᎦ, ᎬᏂᎨ ᎤᏍᎪᎸ ᎪᎳ ᎢᏳᏍᏗ ᏃᏥᏳ ᎢᏣ ᎬᏂᎨ ᏚᏭᏌᎥ ᎦᎸᎳᏗᎨ ᏚᏅᏓᏒ, ᎡᎶᎯ ᎤᏓᏴᎳᏘ ᏃᎴ ᎡᏝᏪᎯ, ᏓᎳᏍᎨᏍᎬ ᎠᏛᎪᏗ ᏱᎨᏒᎾ ᏩᎾᎢ ᎦᎳᎨᏴ ᏃᏥ ᎤᏬᎰᏒ. ᎠᏇᏙᏅ ᏧᏂᎷᏫᏍᏔᏁᏗ ᏓᏍᏆᏚᎸ. “ᎡᏝᏪ ᎨᏎᏍᏗ!” ᎤᎵᏍᏔᏴᏗ ᏫᏓᏥᎩᏏ!” ᎤᎵᏍᎫᏪ ᏲᎾ ᎤᏤᏍᏙ, ”ᎣᏍᏓᏗ ᎠᎩᏰᎸᎲ, ᎬᏅ ᎢᎪᎯᏓ ᎨᏍᏗ ᎯᎸᎯᏳ ᏍᎩᏲᏍᏓ ᎠᎩᏰᎸᏅ ᏱᎩ.” ᎡᏣᎵᎡᎵᏤᎮᏍᏗ ᏂᎪᎯᎸ ᎤᏁᎳᏅᎯ ᎠᎴ ᎠᎦᏴᎵᎨᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎬᏩᎵ, ᎢᏨᏗᏍᎨᏍᏗ ᏚᏙᎥ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ; ᎨᏍᏗ ᏴᎦᏔᎰᎢ, ᎯᎸᎢᏴ ᎬᏙᏗ ᏥᎨᏐᎢ. ᏄᏍᏛᏉ, ᎦᏓᏲᏍᏗ ᏥᏓᎫᏕᎪ ᎠᎴ ᏗᎷᎬᏒ ᎠᏕᎳ ᎢᏳᏍᏗ ᎠᏆᏂᏲᎯᎲ. ᏍᎩᏴᏃ ᏭᏩᎩᏰᏫᏒ ᎪᏪᎵ, ᎦᏅᏃᏫ ᎤᏧ ᏍᏔᏝᏅ. ᎪᏱᏁᎢ ᏕᎦᎿᏬᏍᏗᏍᎨ ᏲᎾ ᎤᏤᏍᏙ. ᎠᏎᏃ ᎤᏁᏣ ᏝᏗ ᎩᎶ ᏲᎩᎾᎵᎪᏎ ᎠᏉᏎᎸ. ᎾᏍᎩᏃ ᎤᏂᏲᏍᏙᏔᏅ ᎠᎴ ᎤᏂᏐᏢᎢᏍᏔᏅ, ᎤᏄᏬ ᎤᏩᏣᎬᏅᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎩᎬ ᏗᏥᏍᎪᎵ ᎢᏨᏒ ᏕᏣᏓᏅᎵᏰᎡᏍᏗ, ᎠᏴ ᎥᏝ ᏯᏆᏓᏅᎵᏰᎥ; ᎿᏉ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᏮᏓᏥᎶᏏ. ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎥᏝ ᏳᏃᎵᏤᎢ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒ ᎨᎬᏍᎦᎳᏁᎴᎢ, ᎠᎴ ᎥᏝ ᏯᏂᎦᏔᎮ ᎢᏳᏍᏗ ᎦᏛᎬ ᎾᏍᎩ ᎤᏁᏨᎢ. ᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏂᎯ ᏗᏤ-ᎳᏍᏓ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎯᏍᎩᏉ ᎦᏚ ᏙᏥᏰᎭ ᎠᎴ ᎠᏣᏗ ᏔᎵᏉᎢ; ᎢᏳᏍᎩᏂᏃᏅ ᏲᎩᏩᏎᏅ ᏂᎦᏛ ᎯᎠ ᎾᏍᎩ ᏴᏫ ᎤᎾᎵᏍᏓᏴᏗ. ᎠᏎᏃ ᎪᎯ ᏥᎩ, ᎿᏉ ᎡᏥᎦᏙᎥᏒᎯ ᏥᎩ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏯᏛᏅ ᎤᏁᎳᏅᎯ ᎢᏥᎦᏙᎥᏒᎯ ᏥᎩ, ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᎢᏣᏨᎭ ᏙᏣᎵᏍᎦᏍᏙᏗᎭ ᎠᏩᎾᎦᎳ ᎠᎴ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏗᎴᏅᏙᏗ ᏗᏕᎶᏆᏍᏗ, ᎾᏍᎩ ᎠᏏ ᎾᎿ ᏥᏣᏚᎵ ᏤᏥᎾᏝ ᏔᎵᏁ ᎢᏣᎵᏍᏙᏗᏱ? ᎤᎷᏤᎸᎩ ᎠᎨᏴ ᎠᏰᎲᎩ ᎫᎫ ᏅᏯ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎠᏟᏍᏛᎩ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᏠᏁᏗ, ᎠᎴ ᎤᎶᏁᏔᏅᎩ ᎠᏍᎪᎵ ᎦᏅᎬ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ. ᏂᎦᏓ ᎠᎾᏤᏩᏍᎪ ᎠᎵᏍᏓᏴᏗ ᎠᎾᏓᎪᎾᏗᏍᎬ. ”ᏥᏓᎯᏉᏗ, ᎧᏂᎩᏓ ᏗᏆᎵᎢ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏙᏓᏆᏓ ᏛᎦᎿᏂ, ᏃᎴ ᏴᎦᎦᎷᎩ ᏲᎾ ᎤᏤᏍᏙ ᏥᏄᏲᎢᏯ ᏙᏱ. ᎿᏉᏃ ᎢᎦ ᏄᎵᏍᏔᏅ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏫᏚᏯᏅᎮᎢ; ᎾᏍᎩᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᏔᎳᏚ ᎢᏯᏂᏛ ᏚᏑᏰᏎᎢ, ᎠᎴ ᎨᏥᏅᏏᏛ ᏚᏬᎡᎢ-- “ᎪᎱᏍᏗ ᏘᏃᎩ!” ᎤᏓᏍᏗᏰᏔᏁ ᏫᎵᎻ, ᏓᎧᏔᏍᏗᏍᎨᎢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎠᏆᏛᎦᏅᎩ ᎠᏍᏓᏯ ᎠᏂᏁᎬ ᎤᏂᏣᏘ ᏴᏫ ᎦᎸᎳᏗ ᎢᏴᏛ, ᎯᎠ ᏅᏛᏂᏪᏍᎬᎩ, ᏱᎰᏩ ᎡᏗᎸᏉᏓ; ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏥᎸᏉᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏍᏛ ᎠᏥᏰᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎤᏤᎵᎦ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᎢᎦᏁᎳᏅᎯ; ᎠᏎᏃ ᎤᏚᎩ ᎠᏋᎭ ᏞᎩᏳ ᎬᎪᏩᏛᏗᏱ, ᎠᎴ ᎿᏉ ᏗᏂᎰᎵ ᏗᎩᏅᏙᏗᏱ ᎩᎾᎵᏃᎮᏗᏱ. ᏅᏩᏙᎯᏯᏛ ᏂᏣᏛᎢᏕᎨᏍᏗ. ᎢᎦᎵᎢ ᏫᎨᏣᏲᎵᎭ. ᎦᎾᏙᎠᏗᏒ ᎩᏲᎵᎸᎭ ᎢᎦᎵᎢ. ᎬᏂᏳᏉ ᎢᏨᏯᎵᏍᎪᎸᏓᏏ ᏗᏣᎳᏍᏓᎡᏗᏱ ᎢᎾᏛ ᎠᎴ ᏗᏂᏙᎬ ᏗᎾᏓᏨᏯᏍᏗᏍᎩ, ᎠᎴ ᎢᏣᏓᎵᏁᎯᏕᏗᏱ ᏂᎦᎥ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎦᏍᎩ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏰᎵ ᎤᏲ ᎢᎨᏨᏁᏗ ᏱᎨᏎᏍᏗ. ᎿᏉᏃ ᎪᎯᏗᏳ ᎦᏲᎦᎵᏍᏓᏴᏅᎯ ᏄᎵᏍᏔᏅ ᏉᎳ ᏚᎴᏅᎩ ᎠᏰᎵ ᎤᎾᏣᎥᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ, ᏱᏍᎩᏲᎢᏳᏁᎢ, ᎠᎴ ᏅᏗᏥᎧᏙᏴᎾᏉ ᏱᎨᏎ ᏟᏗ, ᎥᏝ ᎾᏍᎩ ᎯᎠ ᎤᏐᏅ ᏱᏂᎨᏣᎵᏍᏓᏁᎴ ᎠᎴ ᏱᎨᏥᎪᎶᎯᏎᎴᎢ. ᎤᏩᏒᏍᎩᏂ ᎠᏓᎪᎵᏰᏍᎨᏍᏗ ᏴᏫ, ᎩᎳᏃ ᎿᏉ ᎠᎩᏍᎨᏍᏗ ᎾᏍᎩ ᎦᏚ, ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ ᎾᏍᎩ ᎤᎵᏍᏈᏗ. ᏄᎵᏍᏙᏗ, ᏂᎦᏓ ᎤᏂᎾᎥ ᏃᎴ ᏚᏂᏂᏌᎥ ᏗᎦᏂᏴᎡᏗ ᎩᎳᏈᏴ. ᎦᏲᏟ ᎬᏂᎨᏒ ᏱᏄᏅᏁᎳ ᎤᎾᏓᏟᏴᏗ, ᏃᎴ ᏗᏗᏂᏴᎡᏗ ᏚᎨᏓᎵᏴ, ᎢᎦᎴᏅᏗ ᏄᏍᏛ ᎢᏗᏰᎵᏒ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ, ᎠᏏ ᏗᏗᏲᎵ ᏥᎨᏒᎩ, ᏤᎩᎾᏝᎢ ᎨᏒᎩ, ᎢᎦᏓᏄᏴᏛᎩ ᏗᎴᏅᏙᏗ ᏗᏕᎶᏆᏍᏗ ᎡᎶᎯ ᎡᎯ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏙᏥᏅᎵ ᏧᏓᏏ ᎠᎴ ᏌᏱᎳ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏂᏁᎬᎢ ᎤᏠᏱ ᏓᎨᏥᏃᎮᎮᎵ. ᎦᎵ ᏧᏂᏍᏚᎩᏛ ᎨᏒ ᏚᏂᏁᎸ ᎨᎦᎫᏴᎡ ᎤᎾᏕᏒᏗ ᎠᏂᎨᏯ. ”ᎪᎱᏍᏗᏃ ᏳᎵᏍᏔᏂᏙᎸᎾ ᎨᏎᏍᏗ, Ꭵ,” ᎤᏛᏁ. ᎠᏂᎦᏘᏱ ᎠᏂᏙᎾᎥ ᏚᎾᎦᏎᏍᏛ ᎤᏂᏍᎦᏅᏨ ᎠᏂᏅ ᏧᏁᏃᏅᏗ ᏧᎬ ᎭᏫᏂᏨ, ᏧᏃᏰᏅ ᏗᎦᏢᎢᏓ ᏗᏂᎦᎶ ᎠᏰᎵ ᏂᏚᏅᏅ ᏯᎾᏟᏃᎮᏍᎬᎾ. ᎤᏁᏤᎸᎩᏃ ᎠᏍᎪᎯᏧᏛ ᏗᏘᏂᏙᎯ ᏧᎧᎿᏩᏗᏓᏍᏗᏱ ᏉᎳ, ᎠᎴ ᎤᏁᎳᎩ ᏪᏓ ᎤᏪᎵᏎᏗᏱ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᏣᏅᏍᏙᏒᎩ ᎩᎶ ᎢᏳᏍᏗ ᎤᎾᎵᎢ ᎤᏍᏕᎸᎯᏓᏍᏗᏱ ᎠᎴ ᎤᏩᏛᎯᎯᏍᏗᏱ. ᎰᏩᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᏆᏓᏅᏒᎩ ᏪᏣᏯᏅᏗᏱ; ᎣᏏᏳᏃ ᏂᏣᏛᏁᎸ ᏥᎷᎩ. ᎿᏉᏃ ᏂᎦᏛ ᎠᏂ ᎣᏤᏙᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎣᎦᏛᏅᎢᏍᏗ ᎣᎦᏛᎪᏗᏱ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏣᏁᏤᎸᎯ ᎨᏒᎢ. ᎦᏃᎮᏅ ᎠᏂᏫᏍᎩ ᏧᏂᎳᏫᏤ, ᎤᏪᎾᎢ ᎦᎵᏦᎯᏓ ᏗᏘᏲᎯ Savannah ᏓᏳᎶᏒ, ᎤᏓᎴᏨ ᎡᎲ ᎠᎾᏗᏍᎬ. ᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᎯᏙᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᎸᎳᏗ ᏨᏗᏓᏁᎸ ᏓᏳᏄᎪᏨᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎦᏁᎲᎩ ᎪᏍᏓᏯ ᎠᏍᎫᏕᏍᏗ. ᏂᏓᎦᏪᏏᏒᏃ ᏂᎦᏓ ᏃᏊ ᎣᏍᏓ ᎣᎦᏛᏓᏍᏛ ᎠᎴ ᎡᏝᏪ ᎣᏥᏅᏜᎥᎢ. ᎥᏝᏰᏃ ᎠᏓᏫ ᏯᏥᎶᏄᎡᎴᎢ, ᎠᎨᏴᏍᎩᏂ ᎠᏥᎶᏄᎡᎸ ᎤᏍᎦᏅᏤᎢ. ᎾᏂᎥᏰᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎨᏥᏁᏤᎸᎯ ᎨᏐ ᏧᎾᎵᏍᎪᎸᏙᏗᏱ ᎠᏓᏁᏗ ᎨᏒ ᎠᎴ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎾᏍᏉ ᎠᏎ ᎪᎱᏍᏗ ᎤᏲᎯᏍᏗ ᎨᏎ ᎤᎵᏍᎪᎸᏙᏗ. ᏴᏫᏃ ᎾᎥ ᎠᏂᏙᎾᎢ ᎤᎾᏛᎦᏅ, ᎠᏴᏓᏆᎶᏣ, ᎤᎾᏛᏅᎩ. ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏗᎧᎿᏩᏗᏙᎯ ᏓᏳᏬᏁᏓ. ”ᎯᏒᎦᏗ ᏂᏣᏍᏛᎢᏉ,” ᎤᏛᏁ ᎤᏃᏕᎾ ᎠᏓᎯ ᎩᎳ ᎤᏴᎵᎸ. “ᏙᎢᏳᏍᏗ ᎠᏓᎴᏍᎩᏱᏍᎩ ᎤᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎯᎠ?” ᎤᎵᏍᎦᏎᏔᏁᎢ. “ᎭᏩ, ᎣᏏᏗ ᎯᏰᎸᎾ,” ᎤᎵᏍᎦᏂᏏ ᎢᏳᏍᏗ ᏄᏪᏎ ᏥᏍᏕᏥ. ᎭᎴᏫᏍᏓ, ᎠᎨᏳᏣ! ᎾᏍᎩᏃ ᎠᎨᏔᎮ ᏄᎵᏍᏓᏁᎸᎢ, ᎤᎷᏤ ᎠᎴ ᎡᎳᏗ ᎤᏓᏅᏁᎴᎢ, ᎠᎴ ᏂᎦᏛ ᏚᏳᎪᏛ ᎤᏃᏁᎴᎢ. ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎭᏛᎩᏍᎪ ᎯᎠ ᏥᎾᏂᏪᎭ? ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᎥ, ᏝᏍᎪ ᎯᎸᎯᏳ ᎯᎠ ᏱᏥᎪᎵᏰᎣᎢ; ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎠᎴ ᏗᏂᏍᏓᎢ ᎠᏂᎰᎵ ᎤᏄᎪᏨᎯ ᏣᏩᏛᏙᏔᏅ ᎡᏣᎸᏉᏙᏗᏱ? ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏥᎪ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏂᎦᏔᎯ ᏰᎵ ᎠᎹᏟ ᏯᏅᎾ ᎠᏕᏒᎲᏍᎩ ᎤᏁᎳᏗᏙᎲ ᎢᎪᎯᏛ? ᎢᎪᎯᏛ ᎠᏕᏒᎲᏍᎩ ᎤᏁᎳᏗᏙᎲ, ᎥᏝ ᏰᎵ ᎠᎹᏟ ᏴᎬᏅᎾ. ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎪᏪᎵᎯ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᎤᏪᏂᏒᎯ, ᎯᎠ ᏥᏂᎦᏪᎭ; ᎤᏪᎷᎦ ᎩᎶ ᎢᎾᎨᎢ, ᎯᎠ ᏂᎦᏪᎭ; ᎡᏣᏛᏅᎢᏍᏓᏏ ᏱᎰᏩ ᎤᎶᎯᏍᏗᏱ, ᏚᏅᏅ ᏗᏥᏥᏃᎯᏍᏓ. ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᏟᎶᏍᏔᏅᎯᏉ ᏥᎨᏎ ᎾᎯᏳ ᎨᏒᎢ, ᎾᎿᏂ ᏥᏓᎾᎵᏍᎪᎸᏗᏍᎨ ᎠᏓᏁᏗ ᎨᏒ ᎠᎴ ᎾᏍᏉ ᎠᏥᎸ-ᎨᎳᏍᏙᏗ, ᎾᏍᎩ Ꮎ ᎢᏳᏛᏁᎸᎯ ᏰᎵ ᎾᏍᎦᏅᎾ ᎢᎬᏩᏁᏗ ᏂᎨᏒᎾ ᏥᎨᏎ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᎨᏒᎢ; ᏧᏂᏲᎱᏒᎯᏃ ᏧᎾᎴᎯᏐᏗ ᎨᏒᎢ, ᎾᎯᏳ ᎾᏍᎩ ᎯᎠ ᏓᎾᎴᎯᏌᏅᎭ, ᎦᎪ ᎤᏓᎵᎢ ᎨᏎᏍᏗ ᎾᏍᎩ ᎯᎠ? ᎦᎵᏉᎩᏰᏃ ᎢᏯᏂᏛ ᎠᎾᏓᏰᎲᎩ. ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ ᎪᏪᎳᏅ, ᎠᏓᏁᏝᏍᎨ ᎤᏁᎾᎢ ᎠᏂᏴᏫᏯ ᎤᎾᏓᏂᏯᏍᏗᏉ, ᏧᏂᏍᏆᏂᎪᏙᏗᏉ ᏚᏂᏂᏴᎲ - ᎦᏙ ᏃᎴ ᏓᏂᏂᎩᎸ ᏃᎴ ᎠᏂᎱᏣ ᏚᏂᎾᏌᎥ - ᎠᎹᏰᎵ ᎠᏁᎯ ᎢᏯᎾᎵᏍᏗᏍᎩ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᏞᏍᏗ ᏣᏍᏚᏅᎩ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎠᏂ ᎯᎠ ᎪᏪᎵᎯ; ᎤᏍᏆᎸᎯᏗᏰᏃ. ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ ᏂᎯ ᏌᏯᏂ ᎤᏪᏥ, ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᏣᏤᎵᎦ ᏓᏯᎢ, ᎠᎩᎾ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎤᏪᏥ ᎤᎩᎸᏗ. ᏧᏴᏨᏗᏣ ᏓᏳᏂᎶᏒ ᏴᏫ ᎠᎦᏓ ᎣᏏᏉ ᎠᏁᎵᏍᎩ ᏃᎴ ᎠᎦᏓ ᎤᎾᏓᏎᎳᏓᏅ. ᎤᎸᏉᏗ ᎤᏅᏗ ᎨᏎ ᏫᎵᎻ ᏃᎴ ᎠᎵᎮᎵᎨ ᏲᎾ ᎤᏤᏍᏙ ᏯᎦᎾᏬᏗ ᎫᎦ. ᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎯᎨᏴ, ᎦᏙᏃ ᏙᎭᏠᏱᎭ? ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏁᏒ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎠᎴ ᎤᏂᏅᏅ ᏂᏥᎦᏔᎲᎾ ᎨᏒᎢ. ᎠᏎᏃ ᎩᏅᏌ ᎢᏂᎦᏔᎮᏍᏗ . ᎤᏂᏲᏍᎩᏂ ᏴᏫ ᎤᎾᏠᎾᏍᏗ ᎠᏂᏁᏉᎨᏍᏗ ᎤᏂᏲ ᎨᏒᎢ, ᏓᏂᎶᎾᏍᏗᏍᎨᏍᏗ ᎠᎴ ᎨᏥᎶᎾᏍᏗᏍᎨᏍᏗ. ᏍᏗᏍᎨᏍᏗ ᎠᎴ ᎨᏥᎶᎾᏍᏗᏍᎨᏍᏗ. ᏫᎵᎻ ᎤᎨᏳᎯ.” ᎨᎢᏴ ᎣᎩᏁᏅᏓ, ᏫᏥᏴᏍᏔᏅ ᎠᏍᏆᏚᎸ ᎦᎵ ᎠᎾᏘᎨ ᎠᏂᎨᏯ ᏃᎴ ᎢᎦᏓ Ꮳ. “ᎠᏯ ᏍᏉ,” ᎤᏛᏁ ᏐᎢ ᎠᏍᎦᏯ. ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᏤᏣᎨᏅᏴ ᏣᏍᏆᏂᎪᏕᏍᏗ, ᏣᏍᏕᎵᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᏥᎩᏯᎠ. ᎡᏗᎿᎸᏍᏗᏍᎨᏍᏗᏍᎪ ᎤᎬᏫᏳᎯ? ᎤᏟᏍᎪ ᏂᏕᎦᎵᏂᎬᎦ ᎡᏍᎦᏉ ᎾᏍᎩ? ᏰᎵ ᎤᎵᏍᎨᏓ ᎯᎾᏌ ᏏᏆ. ᎤᏦᎢᏎᏗ ᎤᎵᏖᎸᏁ ᎪᏱᏁ. “ᏕᎦᏂᏰᏨ?” ᎢᏳ ᎠᎴ ᏏᏓᏁᎸ ᎨᏒ ᏔᎵ ᏱᏄᏓᎠ, ᎤᏩᏒᏉ ᏯᏓᏡᏗᎭ, ᎾᏍᎩ ᏏᏓᏁᎸ ᎨᏒ ᎥᏝ ᏰᎵ ᏱᏂᎬᏩᏍᏗᏉ. ᏂᎦᏓ ᎠᏰᎸ ᏧᏘᏅᏍᏔᏃ ᎠᏧᏣ ᎽᏍᏕ. ᎤᏥ ᎤᏃᎯᏎᎳ ᏲᎾ ᎤᏤᏍᏙ, ᎦᎾᏍᏓ ᎬᏗ ᎤᏩᏂᏍᏗ ᎤᏁᎸᏔᏅᎢ ᎧᏅᏂᏍᎩ ᎡᎳᏆᏗ, ᎤᏒᎮᎯ ᏳᎵᏍᏔᏴᏅᎾ ᎤᏂᏏᏗ ᎤᏪᏅᏍᏗ ᏄᏩᏁᎴᎢ ᎠᎳᏂ, ᎠᏥᏍᏛᏗᏍᏔᏁᎢ. ᎾᏍᎩᏴ ᎱᏂᎷᏣ ᎠᏂᎴᏴᏍᎩ ᏃᎴ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᏣᏄᏏ ᏗᎾᏛᏁᎵᏍᎬ ᎤᏁᏙᎸ, ᏄᏩᏁᎰᏁ ᏚᏏᎳᏛ ᏌᎳᏓ. ᎨᏍᏗ ᏙᏓᏆᏓ ᏱᏓᎦᏓᏏᏙᎳ ᎤᏲ ᎤᎾᏗᏅᏗ ᎠᎩᏲᎲ ᏕᎦᏃᏣᏢ. ᎤᏁᎦᎭ ᎨᏎ, ᎩᎦᎨ ᎤᏍᎪᎸ ᏗᎦᎴᏂ ᎾᎥᏂ ᏃᎴ ᎧᏴᏐᎵ ᏃᎴ ᎤᏬᏍᎩᎵ ᎨᏎᎢ. ᎠᏎᏃ ᏂᎦᏛᏁᎲ ᎾᏍᎩ ᏂᎦᎦᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᎦᏥᏲᏍᏙᏓᏁᏗᏱ ᎤᎾᏜᏅᏓᏕᏗᏱ ᎾᏍᎩ ᎾᏍᎩ Ꮎ ᏧᎾᏚᎵᎭ ᎤᎾᏜᏅᏓᏕᏗᏱ; ᎾᏍᎩ ᎾᎿ ᎠᎾᏢᏈᏍᎬ ᎾᏍᎩ ᎠᏴ ᏃᎦᏍᏛ ᎾᏍᎩᏯ ᏄᎾᏍᏛ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏓ. ᎪᎯᏱᏃ ᎢᏴᏛ ᏅᏩᏓᎴ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᎾᏍᏉ ᎾᎿ ᎮᎸ ᎢᎩ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᏍᎦᏯ, ᎥᏝ ᎠᏴ ᎾᎿ ᎨᎸ ᏱᎩ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎩᎶ ᏰᎭᎾᏍᎩ ᎤᏮᏕᏨᎯ ᎢᎨᏎᏍᏗ ᎠᏓᏁᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏧᏙ, ᎠᎴ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏚᎶᎨᏒᎢ, ᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᏧᎾᎳᏑᎸᏗᏱᏍᎩᏂ; ᎠᎴ ᏞᏍᏗ ᏔᎵ ᏱᏗᏣᏄᏬᏍᎨᏍᏗ. ᏔᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᎩ, ᎣᏓᎸᏃ ᎡᏆ ᏣᏓᏪᎵᎩᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ ᎠᎺᏉᎯ ᏭᎾᏗᏅᎩ; ᎢᏳᏬᏨᎯ ᎩᎬ ᏄᎵᏍᏔᏅᎩ; ᎦᏓᏅᏖᏍᎬᏰᏃ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏃᎬᏁᎸ ᎠᏴ ᎣᎩᏅᏏᏛ ᎣᏂᏱ ᎨᏒᎢ, ᏦᎩᏲᎱᎯᏍᏗᏱ ᎾᏍᎩᏯᎢ; ᏗᎪᎦᎧᏃᏗᏰᏃ ᏃᎦᎵᏍᏔᏅ ᎡᎶᎯ ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᎴ ᏴᏫ. ᎠᏎᏃ ᎦᏥᏅᎵ ᎣᏣᎵᏅᏟ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎣᏣᏢᏈᏍᎬ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ; ᎾᏍᎩ ᎢᏣᏛᏅᎢᏍᏔᏅᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎾᎩᏪᏒᎢ. ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎯᏲᏍᏗᏍᎩ, ᏦᎢᏉᏃ ᎢᎦ ᎯᏰᎢᎵᏙᎯ ᎭᏁᏍᎨᏍᎩ, ᎭᎵᏍᏕᎸ ᏨᏒ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᏓᏓᎿᏩᏍᏛ ᎡᎭᏠᎠᎯ. ᏃᎴ ᎨᎵᎠ ᏧᏍᏆᏴᏍᏗ ᎤᏪᏅᏍᏗ ᏍᏉ--- ᏯᎩᏂᎬᎦ ᎩᎶ ᎤᏓᏏᏓᏍᏗ ᏃᎴ ᏄᏓᎴᏒ ᏧᎷᏫᏍᏔᏁ. ᎤᎴᏅᎮ ᏕᎫᏔᎩᏍᎬ ᏅᏯ, ᎠᏧᏣ ᎦᎾᎥ ᏚᏌᏁ, ᏧᏔᏂᏓ ᏚᎴᏅᏔᏁ, ᏅᏯ ᏂᏂᏚᏍᏛ ᎠᏓᏅᏖᏍᎨ ᎤᏩᏌ, ᎨᏍᏗ ᏯᏓᏅᏖᏍᎨ ᏗᎦᎨᏓ ᏱᎩ. ᎠᏴ ᏧᏓᏏ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏓᏍᏗ ᎠᎴ ᏥᎻ ᏦᏍᏓᏓᏅᏟ, ᏫᏨᏲᎵᎦ ᏂᎯ ᏂᏥᏍᎦᏅᎾ ᎢᏨᏁᎸᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᏎᎨᎢ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎡᏥᏍᏆᏂᎪᏔᏅᎯ, ᎠᎴ ᎡᏥᏩᏂᏌᏛ ᎡᏥᏍᏆᏂᎪᏔᏅᎯ, ᎠᎴ ᎡᏥᏯᏅᏛ ᎢᏣᏓᏅᏘ ᎢᏣᎵᏍᏙᏗᏱ; ᎠᎴ ᏦᏩ ᎾᏍᏉ ᎨᎵᎵ ᎤᏂᎩᏎᎢ ᎤᏄᎪᏤ ᎠᏎᎵᏗ ᎦᏑᎲᎢ, ᏭᎷᏤ ᏧᏗᏱ, ᏕᏫ ᏧᏪᏚᎲᎢ, ᎦᏚᏱ ᏧᏙᎢᏛ, ᏕᏫᏰᏃ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ ᎤᎦᏴᎵᎨ ᎨᏎᎢ ᎠᎴ ᏕᏫ, ᎾᏍᏉᏰᏃ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᏱᎾᏂᎥ ᏗᎨᏤᏲᎲᏍᎩ ᎦᎶᏁᏛ ᏕᏣᏁᎶᏛᎢ, ᎠᏎᏃ ᎥᏝ ᏯᏂᎪᏗ ᏗᏥᏙᏓ; ᎦᎶᏁᏛᏰᏃ ᏥᏌ ᏕᏣᏁᎶᏛ ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏗ ᏍᎩᏯᏕᏁᎸᎩ. ᎤᎵᏂᎩᏛᏃ ᎤᏁᏤᎸ, ᎩᎳᏉ ᎢᏴᏛ ᎤᏁᏤᎴ ᎤᏓᏅᏍᏗᏱ; ᎤᎵᏏᏂᏕᎾ, ᏦᏍᎪᎯ ᎠᎴ ᏅᎩᏍᎪᎯ ᎢᏯᏂ ᎠᏁᎨ ᎠᏂᎭᏰᎯ ᏚᏂᏇᏅᏛ ᏧᏍᏆᏅᎾ, ᏗᏓᏍᏔᏴᏙᏗ ᏃᎴ ᏧᏍᏗ ᎪᎰᏍᏗ ᏳᏰᎸᏛᎾ, ᎤᎾᏅᏙᏗ ᏧᏂᎶᏒ. ᏎᎷ ᏗᏣᏲᎦ! ᏝᏉᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᎩᎶ ᎤᏁᎫᏥᏛ ᏥᏚᎾᏚᏓᏙ ᏌᏉᏉ ᎠᏂᏰᎸ ᎨᏒᎢ? ᎯᎠᏰᏃ ᏂᎦᏪᎭ, ᎠᏂᏔᎵ ᏌᏉᏉ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᎤᏂᏇᏓᎸᎢ. ᏥᎳᏇᎵᏃ ᎠᏆᏯᏗ ᎤᏕᏁᎴᎢ, ᎠᏆᏯᏗᏃ ᎢᎳᏯᎩᎻ ᎤᏕᏁᎴᎢ; ᎢᎳᏯᎩᎻᏃ ᎡᏐ ᎤᏕᏁᎴᎢ; ᏍᏈᏯ ᎣᎩᎾᏗᏔᎲ ᎤᎩᏓᏟᏅᏯ ᎤᏤᎵ ᎠᏓᏴᏍᏔᎩᏍᎩ. ᏕᎭᎷᏱ ᎠᏅᏂᏍᎩ ᏑᎦᏔ ᎢᏥᏤᎢ ᎢᏳᏍᏗ ᏩᎩᎷᏨ. ᏄᏓᎴ ᎣᎩᎾᎵᏱ Nick ᏧᏙᎢᏓ ᎤᎷᏨᎢ, ᎡᏧᎳ ᎤᎾᎴᏅᎲ ᎠᎾᏝᏃᎮᏍᎬᎢ. ᏂᎦᏓ ᏙᏊᎧᏔᏅ ᎣᎩᎾᎵ Michael ᎤᎾᎵ ᎠᎨᏳᏣ Jenny ᏧᏙᎢᏓ ᎤᏴᏍᏗ ᎣᎨᏅᏍᏗᏱ. ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏨᏍᏛᎦ ᎠᏨᏍᏙᏗ ᎠᏖᎵᏙ ᏱᎫᏢᏗᏍᎪᎢ, ᎠᎴ ᎦᏂᏢᏩ ᏱᎦᎧᎲᏍᎪᎢ; ᎦᎪᏗᏱᏍᎩᏂ ᎦᎧᎲᏍᎪᎢ, ᎾᏍᎩ ᎠᏂᏴᎯᎯ ᎤᏂᎪᏩᏛᏗᏱ ᎢᎦᎦᏛᎢ. ᎬᏂᏳᏉ ᏞᎩᏳ ᏓᏥᎷᏥ; ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᏆᏂᎪᏗᏍᎩ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎠᏂ ᎪᏪᎵᎯ ᎪᏪᎸᎢ. ᎤᏒᎯ ᎤᏰᏤ, ᎤᎪᏅ ᎨᏎ ᎪᏛ. ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎤᎵᏰᎢᎶᎸ ᏥᏌ ᎠᏍᏓᏯ ᎤᏪᎷᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᎶᎢ, ᎢᎶᎢ, ᎳᎹ ᏌᏆᏓᏂ? ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎯᎠ ᏄᏍᏗ ᎦᏛᎦ, ᎠᏆᏁᎳᏅᎯ, ᎠᏆᏁᎳᏅᎯ, ᎦᏙᏃ ᎥᏍᏋᏕᎩ? ᎯᎠ ᎠᏂᏣᎳᎩ ᎭᏫᏂᏳ ᏧᎾᏍᎪᏎ ᏗᎦᎾᏗᏫᏒᎢ ᎯᎠ ᎤᏍᏗ ᎦᏅᏅ ᏃᎴ ᏧᏅᏒᏁᎢ ᏧᏩᏂᎦᏢ ᎬᏗ. ᎤᏍᏗ ᎧᏅᏂᏍᎩ ᎤᏅᎪᏤ ᎦᏅᏙᏗ. “ᏰᎵᏉᏍᎪ ᏱᏍᏆᏑᏯᎩᎢ ᏗᏆᏙᏍᏗ - “ᎦᏅᎯᏓ ᏱᎨᏒᎾ, ᎪᏚᎢᏍᏔᏅ ᏱᎨᏒᎾ, ᏃᎴ ᎤᏩᎨᏫᏓ ᏱᎨᏒᎾ?” ᎠᏂᏐᎢᏃ ᎨᏥᎾᏰᏍᎩ ᏕᏥᏍᏕᎵᏍᎨᏍᏗ, ᏕᏨᏕᎨᏍᏗ ᎠᏥᎸᏱ; ᎢᏥᏂᏆᏘᎮᏍᏗ ᎠᏄᏬ ᎤᏇᏓᎸ ᎠᏚᏯᏍᏙᏔᏅᎯ. ᏅᏩᏓᎴ ᏓᏟᎶᏍᏛ ᎢᏣᏛᎬᎦ; ᎡᎮ ᎩᎶ ᎠᏍᎦᏯ ᎦᏁᎳ, ᎾᏍᎩ ᏖᎸᎳᏗ ᏚᏫᏎᎢ, ᎠᎴ ᎤᏐᏲᎴ ᎬᏩᏚᏫᏛ, ᎠᎴ ᎤᏍᎪᏎ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎪᏢᏗᏱ, ᎠᎴ ᎤᏁᏍᎨᎮ ᎢᏅ ᎢᎦᏘ, ᎠᎴ ᏚᏙᎳᏍᏔᏁ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎢᏅᏃ ᏭᎶᏎᎢ. ᏫᎬᏩᏯᏅᎲᏃ ᎡᎵᎣᏈᎦ ᎬᏩᏘᏃᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᎦᏲᎦᏛᎪᏗᏉ ᏄᏍᏛ ᎾᏍᎩ ᎯᎠ ᎢᏤ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᏥᏃᎮᎭ? ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ ᏂᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎤᏓᏁᏗ ᎨᏒ ᎦᏃᎮᎰᎲᏍᏗ ᏂᎨᏒᎾ ᏥᎩ. ᏆᎴᏗᏃ ᎤᏚᎵᏍᎬ ᏥᏌ ᎤᏪᎪᏗᏱ ᏅᏧᎵᏍᏙᏔᏁ ᏔᎵᏁ ᏚᏁᏤᎴᎢ. ᎤᎭᎨᏛ ᎤᎶᎩᎸ ᎦᎸᎶᎢ ᎡᎳᏗ ᏂᏚᏍᏛ ᏚᎶᎩᎸ, ᎨᏍᏗ ᏳᏓᏴᎳᏖ ᏅᏙ, ᏃᎴ ᎬᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᏂᎦᎵᏍᏗᏍᎬ ᎢᎦ. ᎤᏙᎰᏎ ᏫᎵᎻ. ᎭᎾᏉ ᏩᎴᏫᏍᏗ. ᏂᎯ ᎾᏍᏉ ᎢᏥᏍᎦᏯ ᎢᏣᏁᎳᏛᎭ ᏗᏣᏓᎵᎢ ᎾᏍᎩᏯ ᎢᏯᏛᏁᏗ ᎨᏒ ᎢᏥᎦᏔᎲᎢ, ᎠᎴ ᏕᏥᎸᏉᏕᏍᏗ ᎾᏍᎩᏯ ᏗᎦᎸᏉᏙᏗ ᏥᎩ ᏗᏂᏩᎾᎦᎳᎢ, ᎠᎴ ᏗᎦᎸᏉᏙᏗ ᏥᎩ ᎠᏖᏆᎶᎯ ᎣᏤᎵ ᎨᏒ ᎬᏩᎦᏗᏯ ᎬᏂᏛ ᎡᏥᏁᎸᎢ; ᎾᏍᎩᏃ ᏞᏍᏗ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎪᎱᏍᏗ ᎠᏲᏍᏙᏗᏍᎩ ᏱᎨᏎᏍᏗ. “ᎠᏎ ᏍᎩᎾᏆᏍᏗ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎾᎧᎿᏂᏙᎸ, ᎥᏝ ᎿᏉ ᎩᎶ ᏳᏂᎪᎮᎢ, ᏥᏌ ᎤᏩᏒ, ᎠᎴ ᎤᏅᏒ. ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᏓᏥᏴᏁᎵ ᏥᏌ, ᎦᎶᏁᏛ ᏣᏃᏎᎰᎢ? ᏩᎦᏛᎥᎦ, ᎬᏬᏎᎴ ᏂᎦᏛ. ᎾᏍᎩᏰᏃ ᏄᏍᏛ ᎢᏣᏚᎵᏍᎬ ᎢᎨᏣᏛᏁᏗᏱ ᏴᏫ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᏕᏣᏛᏁᎮᏍᏗ. ᎢᏨᏲᏪᎳᏁᎭ ᏗᏥᏲᎵ ᎢᏥᏍᎦᏅᏨᏰᏃ ᎡᏥᏙᎵᏨ ᏅᏧᎵᏍᏙᏔᏅ ᏥᏌ ᏕᎤᏙᎥᎢ. ᎠᏎᏃ ᎥᏝᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎢᏳᎢᎦ ᎨᏒᎢ, ᏯᎾᎵᏕᎸᎲᎦᏰᏃ ᏴᏫ, ᎤᎾᏛᏁᎢ. ᎩᎶᏰᏃ ᎤᎮᏍᏗ, ᎾᏍᎩ ᎠᏥᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃᏄᎲᎾ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏥᎩᏒᏗ ᎨᏎᏍᏗ ᎾᏍᏉ ᎤᎲᎢ. ᏂᎦᏓ ᎠᎪᏨ, ᎤᏛᏅ Irish ᎠᏧᏣ. ᎾᏍᎩᏍᎩᏂ ᏄᏍᏕᏍᏗ ᎡᎶᎯ ᎠᎵᏍᏆᏛᎭ; ᏗᏂᎧᎿᏩᏗᏙᎯ ᏛᏂᎷᏥ, ᏙᏛᎾᎦᎴᏅᏔᏂ ᎤᏂᏁᎫᏥᏛ ᎠᎴ ᎤᎾᏓᏅᏘ; ᎤᎬᏫᏳᎯᏃ ᏅᏩᏙᎯᏯᏛ ᎤᏪᎯ ᎤᏩᏒ ᎠᏎ ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᏅᏩᏙᎯᏯᏛ ᏂᎪᎯᎸᎢ. ᎤᎬᏫᏳᎯ ᏂᏥᎥ ᏕᏥᎧᎿᏗᏙᎮᏍᏗ. ᎦᎪ ᎠᏩᎾᎦᎶᎢ, ᎠᏴᏃ ᏂᏥᏩᏂᎦᎸᎾ ᎨᏐᎢ? ᎦᎪ ᏚᏬᏕᎯᎰᎢ, ᎠᏴᏃ ᏂᏥᎴᏴᏍᎬᎾ ᎨᏐᎢ? ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎠᎾᏛᎵᏍᎬ. ᎠᎴ ᎦᏙᏃ ᎢᏨᏒ ᎨᏒ ᏗᎨᏧᎪᏙᏗ ᏂᎨᏒᎾ ᎢᎩ ᏚᏳᎪᏛ ᎨᏒᎢ? ᏧᎾᏛᎯᏍᏙᏗ ᏗᏂᎳᏫᎩ, ᏩᎦ ᎢᏳᎾᎵᏦᎯᏓ, ᏧᎾᏤᎵ ᏓᏆᎴᎳ ᏫᏕᎦᎷᎬ ᏅᏙ ᏥᏭᏕᎵᎪ, ᏎᎦᏉ ᏃᏉᏃ ᎭᏁᎬ ᏧᏁᏅᏒ ᏧᎾᎾᏏᏗ. ᎢᎦᏓ ᎤᏄᎵᏍᏙᏗ. ᎬᏂ ᏂᏗᎥ ᏫᏗᏱᎶᎸᎭ ᏌᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎡᏙᎯᏳᏒᎢ ᎠᎴ ᎡᏗᎦᏔᎲᎢ-ᏗᎦᏛᎾᏯ ᎢᏗᏍᎦᏯ ᎢᎦᎵᏍᏙᏗᏱ-ᎠᎧᎵᎢ ᎠᏟᎶᎥ ᎦᎶᏁᏛ ᏂᎦᏛ ᎢᎦᎵᏍᏙᏗᏱ; ᏃᎴ ᏙᎢᏳᏍᏗ ᎬᏲᎵᎭ?” ᎠᎴ ᏱᏥᏅᎵ ᎾᏍᎩ ᎠᏁᎩ Ꮎ ᎢᏓᎵᏅᏟ, ᏂᎬᎾᏛ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏁᎶᏗ ᎬᏩᎸᏉᏗᏳ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ; ᎬᏂ ᏅᏩᏓᎴ ᎤᎬᏫᏳᎯ ᎤᎾᏄᎪᏨ ᎾᏍᎩ ᏄᎦᏔᎲᎾ ᏦᏩ. ᎠᏎᏃ ᎢᏣᏚᎵ ᏍᎩᎢᏍᏗᏱ ᎠᏴ ᏚᏳᎪᏛ ᎢᏨᏃᏁᎸᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏯᏛᎦᏁᎸᎯ ᎨᏒᎢ; ᎥᏝ ᎾᏍᎩ ᏱᎾᏛᏁᎮ ᎡᏆᎭᎻ. ᎠᎴ ᎾᏍᎩ ᎢᏤ ᏴᏫ ᎢᏣᏄᏬᏍᏗᏱ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ ᎪᏢᏅᎯ ᏥᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏙᎯᏳᏒ ᎠᏍᎦᏅᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ”ᏌᏌ ᎤᏪᏥ ᎤᎪᏏᏓ ᎤᏍᏆᏂᎪᏔᏅ ᎬᏅᎢ ᏌᎳᏓ,” ᎤᏛᏁ ᏫᎵᎻ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ ᏣᏑᏰᏒ, ᏣᎦᏙᎥᎯᏍᏗᏱ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎯᎪᏩᏛᏗᏱ ᎾᏍᎩ Ꮎ ᎾᏍᎦᏅᎾ, ᎠᎴ ᎠᎰᎵ ᎦᎾᏄᎪᎬ ᎧᏁᎬ ᏣᏛᎪᏗᏱ. ᏚᏔᎷᎩᏍᎨ ᏧᏍᏆᏴᏍᏗ ᏗᎦᏙᎵ. ᎾᏍᎩ ᎾᏍᏉ ᎢᏳᏩᏂᏌᏛ ᎪᎯᏳᏗ ᎢᏛᏗᏍᎬ ᎨᎩᎷᎯᏍᏗ ᏥᏄᎵᏍᏔᏅ ᎯᎠ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᎿ ᏥᏕᏗᏙᎦ, ᎠᎴ ᏥᏓᎵᎮᎵᎦ ᎤᏚᎩ ᎢᎬᏒ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎡᎩᏁᏗᏱ. ᎾᎯᏳᏃ ᎢᏳᏓᎴᏅᏛ Ꭰ-ᏂᏍᎦᎢᎮ ᎪᎱᏍᏗ ᎬᏩᏛᏛᏗᏱ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏰᎵᏉ ᏂᏫ; ᎾᏍᎩ ᎯᎠ ᎿᏛᏁᎮᏍᏗ, ᎲᏁᏍᏗᏃ. ᎠᏥᎸ-ᎤᎦᏔ ᏓᏤᎸ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏧᎩᏎ ᎠᎴ ᎤᏫᏒᏗᏱ ᏥᏭᏗᏅᏎᎢ; ᎠᎴ ᎤᏛᏎᎢ, ᎠᎴ ᎡᏉᎯᏳ ᏄᎵᏍᏔᏁ ᏡᎬᎢ; ᎠᎴ ᏥᏍᏆ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᏚᏩᏂᎦᎸ ᎤᎾᎭᏓᏕᎢ. ᏨᏒ ᎭᎵᏍᏕᏄ, ᎠᎴ ᎡᎭᏠᎠᎯ ᏓᏓᎿᏩᏍᏛᎢ. ᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎥᎩᏙᎵᏨᎩ; ᎾᏍᎩ ᎠᏴ ᎨᏒ ᎾᎩᎬᏫᏳᏒ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᏩᏍᏛ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᏧᎾᏟᎶᏍᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎣᏂ ᎬᏬᎯᏳᏅᎯ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏫᏚᎷᎩ. ᎤᏂᎩᏍᏔᏁ ᎦᏅᏫᏍᏗᏍᎩ. ᎤᏒᎯ ᎢᏴ, ᎠᏂᏐᎢ ᎠᏂᏟᏅ, ᏚᏏᎳᏛ ᏚᎷᏫᏍᏔᏁᎮ ᏌᎳᏓ. ᎰᎵᎦᏧ?” ᎤᎵᏍᎪᏳᏁ ᏥᏍᏕᏥ. ᎰᏩᏃ ᎾᏍᎩ ᏧᏅᏏᏓᏍᏗ ᏕᎦᏅᎿᏩᏗᏒ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎤᏂᏟᏌᏁ ᎾᏂᎥ ᏚᏂᏩᏛᎲ ᎤᏂᏲ ᎠᎴ ᎠᏃᏍᏛ; ᎿᏉᏃ ᏙᏗᎨᎦᏨᏍᏔᏂᏒ ᏰᎵ ᏄᎵᏍᏔᏂᎴ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ. ᎠᎴ ᎢᏣᏓᎦᏌᏯᏍᏕᏍᏗ ᎢᏨᏒ ᎨᏒᎢ, ᏞᏍᏗ ᎢᎸᎯᏳ ᏕᏣᏓᏅᏛ ᎦᎨᏛ ᏱᏂᏣᎵᏍᏓᏁᎮᏍᏗ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎢᏥᎶᏒᏍᏗᏍᎬ ᎢᏣᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᏕᏥᏴᏍᏕᏍᎬᎢ, ᎠᎴ ᎡᎶᎯ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎾᏍᎩᏃ ᎾᎯᏳ ᎢᎦ ᏂᏤᎵᏍᎬᎾ ᎢᏥᎷᏤᏗᏱ. ᎠᎬᏱ ᏚᏕᏯᏍᏛᎢ ᏚᏲᏍᏔᏁ ᎠᏰᎵ ᎾᎥᏂ. [ᎬᏩᏍᏓᏩᏗᏙᎯᏃ] ᎤᏅᎨᏫᏒᎯ ᎨᏎ ᎦᏚ ᏧᎾᏕᏅᏗᏱ, ᎥᏝ ᎠᎴ ᏳᎶᏒᏍᏕ ᏌᏉ ᎦᏚ ᎤᏂᎸ ᏥᏳᎯ. ”ᏰᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ.” ᎾᏍᏉ ᎢᎸᎯᏢ ᎯᎠ ᏂᎦᏪᎭ, ᎠᏥᎸ-ᎮᎶᎯ ᏂᎯ ᏂᎪᎯᎸᎢ ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ. ᏂᎨᎵᏍᎪᏗ ᏴᎬᏍᏆᏓᎩᏄᎦ ᎠᎦᏛ ᎬᏂᎬᎬᎢ.” ᎠᎳᏂ ᎤᏍᎦᏤ ᏣᏄᏏ. ᎠᏂᎦᏗ ᏴᏫ, ᎤᏍᏗᎩ ᎤᏂᏴᏍᏗ. ᎾᏍᎩᏃ ᏗᏯᎥ ᏴᏓᎧᏁᎩ ᎯᎠ ᏱᏅᏓᎦᏫ, ᏞᏍᏗ ᏍᏆᏕᏯᏙᏔᏅᎩ; ᎦᎶᎯᏍᏗᏱ ᎦᏳᎳ ᎠᏍᏚᎭ, ᏗᏂᏲᎵᏃ ᏗᏇᏥ ᎣᏥᏂᏝᎠ, ᎥᏝ ᏰᎵ ᏴᎦᎦᏗᏛ ᏱᏙᎦᎬᎥᏏ. “Ꮘ-Ꮘ-Ꮘ!” ᎠᏂᏐᎢᏍᎩᏂ ᎨᏥᏅᏏᏛ ᎥᏝ ᎩᎶ ᏱᏥᎪᎡ ᏥᎻ ᎤᏩᏒ ᎤᎬᏫᏳᎯ ᎠᎾᎵᏅᏟ. ᏓᎧᏁ ᏲᎾ ᎤᏤᏍᏙ ᎤᏓᏅᏖᏗᏍᎩ ᏗᎧᏃᏗ ᎤᎧᏛ. ᎠᏆᏎᎪᏔᏅ, ᏅᎩ ᎢᏯᏂ ᏕᏥᏲᎸ ᏇᎯ ᎦᏄᎸ ᏎᎷ ᏓᏫᏒ. ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏧᏓᎴᏅᏛ ᎨᏒ ᎢᎬᏁᎯ ᏱᎩ, ᏅᏩᏙᎯᏯᏛᏍᎩᏂ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏥᏄᏍᏗ ᏂᎦᏛ ᏚᎾᏓᏡᏩᏗᏒ ᎤᎾᏓᏅᏘ. ᎨᏍᏗ ᏳᏓᏅᏖᎳ. ᎦᏙ ᎤᏲᎢᏴ ᏃᎴ ᏚᏑᎬ ᎯᏍᎩᏍᏆ ᎢᏯᏂ ᎠᏂᏍᎦᏯ ᏧᎾᏗᏍᎦᎳᏁᏗ ᏐᏉ ᎢᏯᎦᏴᎵ ᎢᏯᏂ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᏲᎩᏩᏔᎲ. ᎤᏟᏰᏃ ᎤᏂᏰᎸᏒᎩ ᏴᏫ ᎤᎾᏓᎸᏉᏙᏗ ᎨᏒ ᎡᏍᎦᏉ ᎤᏁᎳᏅᎯ ᎤᏓᎸᏉᏙᏗ ᎨᏒᎢ. ᎠᏏᏴᏫ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏅᏏᏓᏍᏗ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᎬᎪᎡ ᏥᏍᏕᏙᎲᎩ ᎠᏫᏒᏗᏱ? ᎤᏛᎦᏅᏃ ᎾᏍᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᎨᏒᎢ, ᎤᎴᏅᎮ ᎤᏪᎷᏁ, ᎯᎠ ᏄᏪᏎᎢ, ᏕᏫ ᎤᏪᏥ, ᏥᏌ, ᏍᎩᏙᎵᎩ. ᎥᎥ, ᎾᏍᎩ ᏂᎦᏪᏍᎬ ᎡᏙᏓ, Ꮭ ᏍᎩᏂ ᏣᏓᏅᏖᎢ. ᎭᏕᏬ! ᎭᏕᏬ! ᎨᏍᏗ ᎠᏯ ᎬᏍᏆᎵᏍᎦᏍᏙᏗ ᏱᎩ .” ᎾᏍᎩᏰᏃ ᎯᎠ Ꮀ ᎤᎬᏩᎸᎩ ᏥᏫᏨᏲᏪᎳᏁᎸᎩ, ᎾᏍᎩ ᎢᏨᎪᎵᏰᏍᎬᎩ, ᎾᏍᎩ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᏂᏨᏪᏎᎲ ᏂᏣᏛᏁᎲ ᎠᎴ ᏂᏣᏛᏁᎲᎾ ᎨᏒᎢ. XVIII. ᎤᏁᏌᎯᏴᏓ ᎤᎵᏏᏂᏕᎾ ᎣᏍᏓ ᏯᎩᏰᎸ ᏣᎵᏍᏙᏂ ᏱᎨᏙᎮ, Dock Street ᏱᎦᎢᏎ, ᎤᏛᏅ ᏣᎵᏍᏙᏂ ᏓᏳᎶᏒ ᎠᏧᏣ. ”ᎨᏍᏗ ᏱᏘᎵᏬᏥ,” ᎤᏛᏁ ᏌᎳᏓ ᎬᏣᏗ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᎤᏓᎨᏳᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᏓᏚᏓᏙᏗ ᎨᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᎢᎨᏙᎸᎯ ᏥᎩ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᏥᏌ ᎢᎨᎳᏗᏙᎸᎢ, ᏔᎵᏁᏃ ᎤᏁᎷᏁᎢ ᎯᏯᏛᎥᎦ ᎤᎾᏛᏁᎢ. ᏃᏗ ᎦᏓᎥ ᎱᎾᎦᏙᏍᏔᏁᎢ. ᏔᎳᏚ ᏓᏂᏃᎩᏍᎬ ᎨᏍᏗ ᎤᎯᏐᏗ ᏱᏄᏩᏁᎮ ᏫᎵᎻ. ᎢᎦᏓ ᎠᏔᎴᏒ ᎤᏂᏁᎩᏍᏗ ᎠᎹ ᎤᏴᏣ ᎦᏩᏙᎤᏍᎬ, ᎤᎸᏂᏗᏍᎩ ᎠᏑᎳᎩᏍᎨ, ᏫᏓᏗᎩᏍᎨ ᎠᏔᎴᏒ, ᎠᏎ ᎤᏬᏨᏛ. ᎠᏰᎵ ᎦᎵ ᏚᏂᎨᎯᏙᏅ ᏴᏫ ᏍᎩᏴ ᎪᎩ. ᎯᎠ ᏥᏄᏪᏎᎢ; ᎯᎠ ᏴᏫ ᏘᏩᏛᎱᎦ, ᎠᎴ ᎯᎠ ᏫᏂᏫ; ᎢᏣᏛᎩᏍᎬᎢ ᎢᏣᏛᎩᏍᎨᏍᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏦᎵᎨᏍᏗ, ᎠᎴ ᎢᏥᎪᏩᏘᏍᎬᎢ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎠᏎᏃ ᎥᏝ ᏱᏣᏙᎴᎰᏍᎨᏍᏗ. ᎤᏙᏩᏗᏍᎬ ᏚᏃᏞ ᏗᏂᏲᏟ, ᏧᏍᏆᏅᎾ ᎢᎦ ᎱᎾᎵᏍᏔᏴᏃᎾ, ᏚᎾᎾᏏᏁᎢ ᏃᎴ ᏚᏂᏢᏁᎢ. ᏫᎦᎷᎩᏃ ᎠᏩᏘᏍᎪ ᎬᏃᏌᎲᎯ ᎠᎴ ᎪᏚᎢᏍᏔᏅᎯ ᎨᏐᎢ. ᎤᏂᏁᏨᏃ ᎯᎠ ᏄᏂᏪᏎᎴ ᏥᏌ, ᎥᏝ ᏲᏥᎦᏔᎭ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ ᎾᏍᏉ ᏴᏫ ᏴᏓᏨᏃᏁᎵ ᎢᏳᏍᏗ ᎠᏆᎵᏍᎦᏍᏙᏛ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏛᏁᎭ. ᏨᏓᏥ ᎠᏥᎸᏍᎩ ᎤᎵᏍᎬᏓᎨ ᎧᎵ ᎨᏐ ᎤᏅᏗ, ᏦᎢ ᎤᏆᏅᏕᎾ ᎦᏄᎸ ᎧᎵ ᎤᏓᏁᎲ, ᎠᏴᏣᏗᏍᏗᏍᎩ ᎧᎵ ᏕᎦᎶᏙ ᏧᏴᏣ ᏗᏗᏔᏍᏗ. ᎦᎵᎡᎵᎦ ᎬᎩᎷᏤᎸ ᏍᏗᏇᎾ ᎠᎴ ᏉᏚᏁᏓ ᎠᎴ ᎠᎦᏱᎦ; ᏂᎯᏰᏃ ᏥᏥᎷᎶᏤᎲᎩ ᎠᏂᎧᎵᏏᏌ ᎾᏍᎩ. ᎠᏂᏐ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎠᏃᎦᏍᎬ ᎪᏛ ᎤᎾᎦᏙᏍᏛ. ᎾᏍᏉᏍᎩᏂ ᎢᏨᏲᏎᎭ ᎠᎾᎵᎮᎵᎪ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏌᏉ ᎠᏍᎦᎾ ᎦᏁᏟᏴᎾ ᎤᏓᏅᏛᎢ. ᎨᏍᏗ ᏳᎾᎦᏎᏍᏔᏅ ᏓᏒᎭᏂᎲ ᏗᏂᏐᎯ, ᎦᏣᏃᏍᏓ ᏓᎾᎴᎲᏍᎨ ᎾᏍᎩᏯ ᎦᎾᏌᎢ ᏪᏌ. ᎤᎷᏨᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᏭᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏗᏍᏇᏲᎲᏍᎩ, ᏗᏍᏇᏲᎲᏍᎩ; ᎠᎴ ᎤᏚᏣᎳᏁᎢ. ᎬᏩᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ. ᎤᎾᏕᎰᏔᏃᏅᏃ ᎤᏂᏄᏪᏎ ᎦᏌᎴᎾ, ᎠᎴ ᎤᏩᏒ ᏧᏄᏪ ᏚᏂᏄᏬᎡᎢ; ᎠᎴ ᎤᎾᏛᏗᏱ ᏭᎾᏘᏅᏍᏔᏁᎢ. ᏂᎦᏛ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎸ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᏕᏥᎸᏫᏍᏓᏁᎲ ᏗᏥᏍᏕᎸᏗᏱ ᏗᏂᏩᎾᎦᎳᎢ, ᎠᎴ ᎢᏣᏅᏓᏗᏍᏗᏱ ᏧᏁᏤ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎯᎠ ᏥᏄᏪᏎᎢ, ᎤᏟ ᎣᏏᏳ ᎠᏓᏅᏓᏗᏍᏗ ᏴᏓᏁᎭ, ᎡᏍᎦᏉ ᏴᏓᏗᏁᎭ. ᎦᎪᏰᏃ ᎤᎦᏙᎥᏐ ᏄᏍᏛ ᎤᏓᏅᏛ ᏱᎰᏩ? ᎠᎴ ᎦᎪ ᎤᎾᏖᏉᎶᏃ ᎤᎾᏓᏅᏖᎶᎢ? ᏗᏨᏂᏗᏳ ᎢᏣᎵᏍᏙᏗᏱ ᎤᏚᎸᏗᏳ ᏂᏣᎵᏍᏓᏁᎭ; ᎾᏍᎩ ᎿᏉ ᎤᏁᎳᏅᎯ ᎤᏏᏳ ᎤᏴᎸᏗ ᎨᏒ ᎢᏣᏛᏁᎸᎯ ᎨᏎᏍᏗ, ᎢᏣᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᏄᏍᏛ ᎠᏚᎢᏍᏛᎢ. ᎠᏆᎵᏍᏇᏔᏬ ᎡᎳᏗ ᎾᏆᏅ ᏃᏊᎴ ᎤᎭᎨᏓ ᎦᏌᎴᏂᏍᏊ. ᎠᏓᏍᏓᏴᏗ ᏚᎷᏫᏍᏔᏁᎲ ᎤᏛᎦᏁᎢ ᎠᎳᏂ ᏃᎴ ᎤᎯᏐᏗ ᎤᎷᏤᎴᎢ ᏍᏉ. ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᏴ ᏫᏥᏙᎬ ᎠᏲᏓᏌᎵᎥ, ᎣᎭᏁ ᎠᏦᎭᏴ ᏫᏓᏊᏓᎸᏅ ᏐᏈᎵ ᏧᏔᎾᎶ. ᏚᏑᎬ ᎭᏫᏂᏨ ᏚᏥᏡᏅ, ᏧᏍᏆᏅᎾ ᎬᏘ ᎤᏚᏒᏅ ᎤᎦᏘᏛ. ᎤᏍᏆᏙᎾ ᎠᎳᏂ ᏃᎴ ᎤᎧᎭᏲᏔᏃᎾ, ᏭᎬᏫᏳᏒ ᎤᏓᏅᎦᎸᏓ ᏃᎴ ᎤᏬᏚ ᏏᏆ ᏄᎵᏍᏔᏁᎢ. ᏣᏁᎳ ᎢᎦ ᏥᎨᏒ ᏧᏪᏥ. ”ᎣᏏᏉᏍᎪ ᎠᎵᏍᏓᏴᏗ ᎠᎩᎶᏙᏗ ᏱᏩᏇᏙᎳ ᏛᎩᎦᏛᏂ ᎦᏲᏟ ᏯᏆᏘᏰᎳ ᎤᏒᎮᎯ ᎠᎵᏍᏓᏴᏗ? ᎠᎴ ᎥᎬᏩᏛᏛᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᎪᎨ? ᎢᎳᏯᏯᎪ ᏂᎯ? ᎯᎠᏃ ᏄᏪᏒᎩ; ᎥᏝ. ᏥᎪᎨ ᎾᎠᏙᎴᎰᏍᎩ ᏂᎯ? ᎥᏝ, ᎤᏛᏅᎩ. ᎠᏆᏛᏅ. ᏂᎦᏗᎹᏏ,-ᏥᏌ ᏒᏃᏱ ᎤᎷᏤᎸᎯ, ᎾᏍᎩ ᎨᎸᎩ,-ᎾᏍᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏙᎢᏳᏍᏗ ᏚᏙᎠ ᏍᎩᎾᎾ ᏏᏆ?” ᎠᏂᏆᎵᏏᏰᏃ, ᎠᎴ ᎾᏂᎥᏉ ᎠᏂᏧᏏ, ᎢᏳᏃ ᎣᏍᏛ ᏂᏚᎾᏑᎴᎲᎾ ᏱᎩ, ᎥᏝ ᏱᎾᎵᏍᏓᏴᎲᏍᎪᎢ, ᏓᏂᎧᎿᏩᏕᎪ ᏄᏂᏪᏒ ᎡᏘ ᎤᎾᏕᏅᎯ. ᎠᏎᎩ ᎢᎪᎯᏓ ᎮᎮᏍᏗ---ᎧᎪ ᏯᎧᏔᎭ? ᎣᏍᏓ ᎯᎩᏍᏙᏍᎨᏍᏗ ᏣᎵᏍᏓᏴᏗ ᏃᎴ ᎦᏲᏟ ᎯᎯᏱᏍᎨᏍᏗ ᏧᏍᏆᏴᏍᏗ ᎤᎩᏍᏗ. ᎿᏉᏃ ᎾᎯᏳ ᎢᎦ ᎤᏒᎢ, ᎠᎴᏂᏍᎬ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎦᎶᎯᏍᏗᏱ ᏓᏍᏚᎲᎩ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᏓᏂᎳᏫᎥᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᏓᏂᏍᎦᎢᎲ ᎠᏂᏧᏏ, ᎤᎷᏨᎩ ᏥᏌ, ᎠᏰᎵ ᎤᎴᏅᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ. ᏰᎵᏉ ᏕᎭᏁᎶᏓ ᏃᎴ ᎭᏛᎯᏍᏔᎾ ᏏᏆ ᎤᏍᏗ, ᏃᎴ ᎨᏍᏗ ᎤᏍᏗ ᏱᎩ ᏫᎵᎻ, ᎠᏎ ᎦᎾᏗᏅᏗ.” ᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᏣᏓᎨᏳᏒᎢ, ᎠᎴ ᏕᎭᏓᏁᎳᏁᎲᎢ, ᎠᎴ ᏦᎯᏳᏒᎢ, ᎠᎴ ᎲᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ; ᎤᎵᏍᏆᎸᏗᏁ ᎤᏟ ᎢᎦᎢ ᎨᏒ ᎡᏍᎦᏉ ᎢᎬᏱᏱ. ᎩᎶ ᎠᏂᏴᎩ ᏓᏘᎾᏫᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏴᎩ ᎠᎦᏘᏁᏫᏛᏗ ᎨᏎᏍᏗ; ᎩᎶ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎠᏓᎯᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏎ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎬᏗ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᎠᏂ ᎾᏍᎩ ᏗᏅᏂᏗᏳ ᎨᏒ ᎠᎴ ᏃᎯᏳᏒ ᎤᎾᏓᏅᏘ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ. ᎿᏉᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎢᏴᏛ ᏫᏚᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᏥᎷᏏᎵᎻ ᏫᏗᎦᏘ, ᎠᎴ ᏂᎦᎥ ᏚᏃᏪᎸ ᎠᎾᏙᎴᎰᏍᎩ ᏴᏫ ᎤᏪᏥ ᎠᏥᏃᎮᏍᎬ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ. ᎤᏒᎯ ᎤᎶᎩᎸᎰᏅ ᏱᎩ ᏃᎴ ᎨᏴ ᎤᏃᏴᎬ ᏃᎴ ᎠᏙ ᏓᏳᏓᎴᏅ ᎤᏃᏴᎬ, ᎠᏓᎯ ᏱᏂᎦᎩ, ᎨᏍᏗ ᎣᏍᏓ ᏯᏂᏟᏅᎨ. ᏣᎵᏓᏍᏓ, ᎨᏍᏗ ᎠᏣᏗ ᏱᎩ ᎠᏯ...ᎠᎩᏯᏍᎦᏟ. ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᎨᏎᏍᏗ ᎠᎦᏔᎲ ᎾᏍᎩ ᎤᎬᏩᎴᎢ ᏧᎵᏁᏃᏗ ᏧᏭᎪᏓᏁᏗᏱ ᏗᏅᏃᏛ ᎠᎴ ᏧᏂᏲᎱᏒᎯ. ᎤᎯᏐᏗ ᏄᏛᏅ ᎤᎵᏏᎩ ᎠᏙᎯ. ᎭᎾᏓᏬᏍᎬ ᏃᎴ ᎠᏏ ᏓᎾᏓᏍᏚᏥᏍᎬ ᏗᏂᏲᏟ, ᏌᏬᏚ ᏓᏁᎶᎲᏍᎨ ᏫᎵᎻ. ᎤᎦᏃᏩ ᏃᎴ ᏧᎦᏣᎳᎩᏍᏗ ᎨᏎ ᏌᏬᏚ. ᎠᎴ ᎢᎸᏍᎩ ᏧᎾᏍᏗ ᎠᏣᏗ ᏓᏂᏁᎮᎢ, ᎤᎵᎮᎵᏨᏃ ᎤᏁᏤ ᎾᏍᎩ ᎾᏍᏉ ᎢᎬᏱᏗᏢ ᏧᏂᏅᏗᏱ. ᎤᏗᏍᎦᏝᏩᏕᎨ ᏧᏍᏆᏴᏍᏗ. [ᏥᏌᏃ] ᎾᏍᎩ ᏄᏪᏒ, ᎢᎬᏱ ᎤᏪᏅᎭ ᎤᎿᎷᏎ ᏥᎷᏏᎵᎻ ᏩᎦᏖᎢ. “Ꭵ,” ᏧᏛᏁ. ᏥᎪ ᎩᎶ ᏳᏅᏍᏙᎯ ᎠᎹ ᎯᎠ ᎾᏍᎩ ᏗᎨᎦᏬᏍᏗᏱ ᎾᏍᎩ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏥᎨᏥᏁᎸ ᎾᏍᎩᏯ ᎠᏴ ᎡᎨᏁᎸᎢ? ᎤᏲᎰᏒ ᎦᎾᎡ ᎦᏙ. ᎤᏬᏚᏨ ᎤᏬᏒᏅ ᎤᏁᏝᏅ. ᎢᎸᎯᏢᏃ ᎠᏓᏁᎸ ᎢᏥᏴᎯᎮᏍᏗ ᎾᎭᏉ ᎢᏥᏁᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏣᏂᎩᏍᎨᏍᏗ. “ᎨᏍᏗ ᎨᎩᏲᎰᏎᏗ ᏱᎩ ᏗᎩᎷᏫᏍᏓᏁᏗ!” ᎤᏪᎷᏁ ᎰᎻ. ”ᎠᏎᏱᎩ ᎭᏩ ᏯᏂᏬᏂ,” ᎤᏛᏁ. ᏃᏉᏗ ᎤᏕᏯᎵᏙᎴᎢ ᎠᏓᏏᏙᎮᎢ, ᏗᎩᏏ ᎦᎸᎳᏗ ᎢᏣ ᎠᎶᏕᏍᏗᏍᎨᎢ. ᎧᎪᏃ ᏛᎩᏍᏕᎸᎯᎢ ᎯᎠᏃ ᏂᏥᏪᏍᎪᎢ; ᎢᏳᏃ ᎠᏴ ᏲᏤᎮ ᎾᎯᏳ ᏦᎩᏙᏓ ᏣᏁᎮᎢ, ᎥᏝ ᏱᏙᎦᏲᏣᎵᎪᏁᎴ ᎩᎬ ᏚᎾᏤᏪᎸ ᎠᎾᏙᎴᎰᏍᎩ. ᎠᏏᏴᏫᏰᏃ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐ ᎠᏓᏅᏙ ᎠᏏᎾᏍᏛ ᎤᏬᏂᎯᏍᏗᏱ; ᏅᏩᏓᎴᏃ ᎠᎦᏔᎾᎢ ᎢᎦᎦᏛ ᎤᏬᏂᎯᏍᏗᏱ ᎾᏍᎩᏉ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐᎢ; ”ᎭᏩ,” ᎤᏛᏁ ᏫᎵᎻ. ᎢᏳᏍᎩᏂᏃ ᎾᏍᎩ Ꮎ ᎤᏁᎫᏥᏛ ᎠᏥᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎦᏪᏍᎨᏍᏗ ᏧᏓᏅᏛᎢ; ᎠᎩᏅᏏᏙᎯ ᎪᎯᏗᎭ ᎤᎷᎯᏍᏗᏱ; ᎤᏓᎸᏉᏗ ᏚᎧᎾᏁᎢ ᏚᎾᎧᏛᎢ ᎢᏴ ᏫᎵᎻ. ᎿᏉᏃ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ ᎤᏣᏘ ᏦᎯᏳᎭ; ᏄᏍᏛᏣᏚᎵᏍᎬ ᏫᏂᏣᎵᏍᏓᏏ. ᎾᎯᏳᏉᏃ ᎤᏪᏥ ᎤᏗᏩᏎᎢ. ᎰᏩᏃ ᏫᏚᏯᏅᎮ ᏂᎦᏛ ᎤᏅᏏᏙᎯ ᏧᏚᎩ, ᎢᎬᏱᏱᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᎳᎪ ᎢᎦᎢ ᏣᏚᎦ ᎠᎩᏅᏏᏙᎯ. ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎤᏠᏱ ᏄᏅᏅ ᎦᎶᏁᏛ ᎠᎴ ᏈᎵᏱᎵ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎢᏧᎳᏉ ᎤᎾᏤᎵᎦ ᎨᏐ ᎪᎯᏳᎲᏍᎩ ᎠᎴ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ? ᏄᏟᏂᎬᎬ ᏭᏓᏓᎩᏅᏎ, ᎠᏍᎪᎵ ᎢᏣ ᎠᎬᏱ. ᎠᎴ ᎢᏨᏔᏲᏎᎭ, ᎢᏓᎵᏅᏟ, ᏕᏤᏯᏔᎲᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏄᎾᏁᎸᎾ, ᏕᏥᎦᎵᏍᏓᏗᏍᎨᏍᏗ ᏗᏩᎾᎦᎳ ᏧᎾᏓᏅᏘ, ᏕᏥᏂᏴᏎᏍᏗ ᏗᏂᏩᎾᎦᎳᎢ, ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ ᎾᏂᎥ [ᎤᏣᏘᏂ ᏂᎨᏣᏛᏁᎲᎢ.] ᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏣᏛᏁᎮᏍᏗ ᎠᏗᏒᏍᏗ ᎨᏒ ᎠᎴ ᎠᏎᏉ ᎠᏢᏈᏍᏗ ᎨᏒ ᎬᏗ; ᎡᎳᏗᏉᏍᎩᏂ ᏂᏕᏨᏅ ᏕᏣᏓᏅᏛ ᎢᏥᏏᏴᏫᎭ ᎤᏟ ᏂᏕᏥᎸᏉᏕᏍᏗ ᎠᏂᏐᎢ ᎡᏍᎦᏉ ᎢᏨᏒ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎣᎬᏒ ᎣᏣᏢᏈᏍᎦ ᎢᏨᏁᎢᏍᏗᏍᎬ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏍᏗᏒ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎾᏍᎩ ᏗᏨᏂᏗᏳ ᎨᏒ ᎠᎴ ᎢᏦᎯᏳ ᎨᏒ ᏂᎦᎥ ᎤᏕᏯᏙᏗ ᎠᎴ ᎠᎩᎵᏯ ᎢᏥᎷᏤᎲᎢ; ᎬᎨᏳᎢ, ᏚᏳᎪᏛ ᎿᏛᏁᎭ ᏂᎦᎥ ᏂᏕᎭᏛᏁᎲ ᎤᎾᎵᎪᎯ ᎠᎴ ᎠᏁᏙᎯ. ᎾᏍᎩᏰᏃ ᎠᏍᎦᏂ ᎾᎦᏔᎲᎾ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎠᏍᎦᎾ ᎤᏰᎸᏅ ᎠᏴ ᎨᏒ ᏅᏧᎵᏍᏙᏔᏅ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎠᏴ ᏂᏗᏍᎦᏅᎾ ᎢᎩᏰᎸᏗᏱ ᎤᏁᎳᏅᎯ ᏕᎦᎧᏂᏍᎬᎢ. ᎠᎴ ᎨᏍᏗ ᏗᎾᏟᎯ ᏃᎴ ᏗᎾᏓᎾᏒᎲᏍᏗ ᎢᎫᏩᎾᎵᏍᏙᏗ ᏱᎩ. ᏲᏎᎢ ᎣᏍᏓ ᎬᎪᏩᏛᏗ ᏱᎨᏎ ᏫᎵᎻ. ᏂᎯ ᏍᎩᎪᏩᏘᏍᎬ ᎢᏲᏍᏓ. ᎠᎴ ᏨᏍᎩᏃᎢ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ ᎠᎩᎵᏲᎨᎢ, ᎠᎴ ᎾᎿ ᎢᏅ ᏭᎪᎮ ᎡᏆᎭᎻ, ᎠᎴ ᎳᏏᎳ ᎡᏆᎭᎻ ᎦᏁᏥᎢ. ᎠᎴ Ꭴ'ᏃᏅᎩ, ᎠᎴ ᎥᏝ ᏳᏓᏱᎴᎢ, Ꭴ'ᏃᏅᏉᏍᎩᏂ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎠᏴ ᎦᎶᏁᏛ ᏱᎩ. ᎦᏰᎵᏍᏗ ᏳᏫᎦᏢᎾ, ᎾᏍᎩᏯ ᎣᏍᏓ ᏅᎩ ᏗᎦᏅᏌᏗ. ᏦᎨᏏ, ᎦᎵᏦᏕ ᎾᎥᏂ, ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎠᏙᎯ, ᎦᏓᏁᏍᏙ---ᏂᎬᎾᏛ ᎠᏓᎨᏳᏗ ᏃᎴ ᏗᎧᏃᎩᏓ ᏃᎴ ᏚᎾᏁᏍᎩᎸ ᏃᎴ ᏧᏪᏥ. ᎡᎳᏗᏃ ᎠᎩᏅᏨᎩ, ᎧᏁᎬᏃ ᎠᏆᏛᎦᏅᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏐᎳ, ᏐᎳ, ᎪᏙᏃ ᎤᏲ ᏂᏍᏋᏁᎭ? ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎾᏍᎩ ᎤᎪᏗ ᎤᏭᏖᏛ ᎥᏝ ᏳᏘᏰᎮᎢ; ᎾᏃ ᎦᏲᎵ ᎤᏭᏖᏛ ᎥᏝ ᏳᎷᎶᏤᎮᎢ. ᏈᏓᏃ ᏥᎷᏏᎵᎻ ᏭᎷᏨ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏕᎬᏩᎦᏘᎸᏎᎢ, ᏂᎦᏓ ᏥᎦᏔᎲ ᏄᎾᏍᏛ, ᏂᎦᏗᏳ ᏗᏃᎵᎩ. ᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᎤᏠᏱᏉ ᎠᎵᏍᏓᏴᏗ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎠᎾᎵᏍᏓᏴᏗᏍᎬᎢ, ᎾᏂᎥᏰᏃ ᎤᏅᏒ ᏚᎾᎵᏅᏫᏍᏗᏕᎬ ᎠᏂᏰᎮᏍᏗ. ᏥᏍᏆᏯ ᏗᎧᏃᎩᏍᎩ ᏛᎦᎷᏥ ᏃᎴ ᏓᎧᏃᎩᏏ, ᏩᎶᏏ ᏛᎠᏂᏰᏥ, ᎤᎦᏃᏩ ᏛᎦᏃᎸᏂ. ᎤᏩᏓᎴ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᎣᏍᏛ ᎤᎦᏔ ᎤᎶᎨᏒ ᏧᏫᏎᎢ. ᏥᏌᏃ ᎤᏁᏨ ᏔᎵᏁ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎤᏔᏂᏓ ᎢᎾᏓ ᎾᏍᎩ ᎠᏁᏙᎮ ᎾᎿ ᎦᏓ ᎠᎲ ᎠᏥᎦᏘᏗᏍᏗ ᏌᏥᏯ ᏉᎳ ᏧᏙᎢᏛ ᎠᎦᏔᎿᎢ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏫᏚᏯᏅᎮ ᏆᏂᏆ ᎠᎴ ᏐᎳ ᎤᏔᏲᎴ ᎤᏛᎪᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎤᏁᏍᏔᎵ ᎢᏧᏴᏣ ᎨᏎ ᏅᏯ, ᏂᎪᎯᎸᎾ ᎩᎦ ᏓᏔᏍᎩᏍᎨ ᏕᎦᏰᏌᏛ ᏅᏯ ᏚᏰᏝᎸ. ᎤᎵᏍᏆᎸᏗ ᎤᏍᏗ ᎧᏅᏂᏍᎩ ᎤᎴᏫᏍᏔᏁ ᎤᏟᏃᎮᏔᏁ ᏫᎵᎻ Ꮟ ᏱᎪᏒᏍᎬᎾ ᎤᏃᎴ ᎠᏲᏙᏗ. ”ᎭᏩ, ᏏᏲ!” ᏂᎬᎾᏛ ᎤᏰᏥᏍᎨ. ᎩᎦᎨ ᎠᏯᏦ ᎤᎭᏯᏨ, ᏌᎪᏂᎨ ᎤᏅᏣᏘ ᎤᎭᏄᏮ, ᎤᏬᏗᎨ ᎤᏑᎸ, ᏃᎴ ᏗᎪᎢᎭ ᏧᏣᏬᏓ ᏚᎳᏑᏢ ᏱᏗᎪᏚᎢᏍᏛᎾ. ᏌᏌ ᎤᏅᏫᏍᏔᏁ ᏫᎵᎻ, ᏣᏄᏏ ᏗᎦᏅᏍᎨᏂ ᎠᏰᎵ ᏭᏓᏒᏍᏔᏁᎢ. ᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏧᏏ ᎤᎾᎵᎪᏁᎢ, ᎤᎾᏎᎵᏔᏁ ᏚᎾᏓᏁᏤᎴ ᎨᏥᏍᎩᏅᏗᏍᏗᏱ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᎪᎱᏍᏗ ᏴᎨᏗᎦ ᎠᎴ ᏴᎨᏓᏗᏔ, ᎬᏂ ᏉᎳ ᎡᏗᎸᎯ ᎨᏎᏍᏗ. ᎿᏉᏃ ᏚᏍᏆᎸᏔᏅᎩ, ᏌᏩᏂ ᏈᏓ ᏭᎷᏤᎸᎩ, ᎠᎴ ᎾᏍᏉ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᏥᏌ ᎤᎨᏳᎯ, ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎤᏂᏁᏒ ᎤᏂᏄᎪᏫᏒ ᎤᎬᏫᏳᎯ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᎥᏝ ᏲᏥᎦᏔᎭᏭᏂᏅᏅᎢ. ᎨᏍᏗ ᎪᎱᏍᏗ ᎡᏍᎦ ᏱᏓᏣᎵᏍᏓᏁᎵ ᏃᏉ. ᎯᎠ ᏄᏂᏪᏎᎴ ᎡᎳᏂ; ᏗᏍᎩᏲᏢᎾᏏ ᏦᎦᏁᎳᏅᎯ ᏗᎪᎦᏘᏂᏙᎯ, ᎯᎠᏰᏃ ᎼᏏ ᎢᏥᏈᏱ ᏂᏙᏓᏲᎦᏘᏅᏍᏔᏅᎯ ᎥᏝ ᏲᏥᎦᏔᎭ ᏄᎵᏍᏓᏁᎸᎢ. ᎡᎵ ᏎᎦ ᏓᏆᎧᎾᏅ ᏗᎪᏪᎵᏍᎩ, ᎭᏩ ᏣᏣᏅᏓᏕᎸ ᎤᏛᏅ. ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎤᏂᏲᎴ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ; ᏓᏂᏍᎦᎢᎮᏰᏃ ᏴᏫ. “ᏗᏍᏉᏏᏌᏏ, ᎨᏍᏗ ᏱᏓᏘᎪᎭ ᏗᏣᏤᎵ ᏗᏂᏲᏟ! ᎣᎩᏁᎫ ᎠᏴ ᎦᎶᏁᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᏂᎯᏍᎩᏂ ᎢᏥᎦᏔᎿᎢ ᎦᎶᏁᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᏦᏥᏩᎾᎦᎳ ᎠᏴ, ᏂᎯᏍᎩᏂ ᏗᏣᎵᏂᎩᏗᏳ; ᎡᏥᎸᏉᏗᏳ ᏂᎯ, ᎠᏴᏍᎩᏂ ᎣᎩᏂᏆᏘᎯ. ᎢᎬᏱᏱ ᎨᏒᎢ, ᏥᏯᎵᎡᎵᏤᎭ ᎠᏆᏁᎳᏅᎯ ᎬᏗᎭ ᏚᏙᎥ ᏥᏌ ᎦᎶᏁᏛ, ᏂᏥᎥ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏦᎯᏳᏒ ᏂᎬᎾᏛ ᎡᎶᎯ ᎠᏂᏃᎮ ᏍᎬᎢ. ᎯᎠ ᎾᏍᎩ ᎢᎦᏪᏛ ᏥᎩ ᎤᎪᎯᏳᎭ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᏓᏯ ᏕᎯᎬᏍ\ᎸᏅᎭ, ᎾᏍᎩ ᎤᎪᎸ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏃᎯᏳᏒᎢ; “ᎡᎳᏆᏗ ᎭᎴᏫᏍᏔ!” ᎤᏛᏁ ᎤᏥ. ᎾᏍᎩ ᎠᎦᏘᏗᏍᏙᏗ ᏥᎩ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ, ᎬᏂ ᎢᎦᏤᎵᎦ ᏂᏛᏁᎸᎭ ᎠᎫᏴᏛ ᎠᏩᏒᎯ ᎢᎦᏤᎵᎦ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ. ᎾᏥᏙᎵᎬᎾᏰᏃ ᏣᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ ᏄᏓᏙᎵᏨᎯ; ᎠᏓᏙᎵᏍᏗᏃ ᎨᏒ ᎠᏓᎵᏁᏗᏕᎭ ᏗᎫᎪᏙᏗ ᎨᏒᎢ. ᏫᏥᎢᎦ ᎢᎦ ᏓᏲᎾᏍᏓᏢᎥ ᎠᏂᏟᏅ ᎠᎴ ᎠᏥᎸᏳᎵ ᎾᎥ ᎠᏂᏅ ᏯᏂᏬᏂᏍᎬᎾ. ᏔᎵᏚ ᎢᏳᏩᎬᏘ ᎤᏰᏤ ᏫᎵᎻ, ᎬᏂᎨᏍᏙ ᏫᏓᎧᏁᎢ, ᎤᏛᎦᏍᏕᎢ ᎤᏃᏴᎬ ᏃᎴ ᎠᏓᏅᏖᏍᎨ ᎢᏳᏩᏂᎸ ᎨᏒ. ᏗᏣᎧᎾᎦ, ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ! ᎠᏂᏧᏏᏃ ᎤᏂᏔᏲᏎᎸᎩ ᏆᎴᏗ ᏗᏂᏅᏍᎨᏂ ᏗᎨᏥᏍᏆᎵᏎᏗᏱ ᎠᎴ ᏗᎨᏥᏁᏍᏗᏱ, ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎨᏒᎢ, ᏞᏍᏗ ᎤᎾᏙᏓᏆᏍᎬ ᏱᏗᎦᏕᏍᏗ ᎠᏁᎵᏍᎬᎩ, ᎾᏍᎩᏰᏃ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎦᎸᏉᏗᏳ ᎨᏒᎩ. ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏧᏏ, ᎾᏍᎩ ᎭᏫᏂᏗᏢ ᎠᏧᏏ ᏥᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎤᎾᏫᏱ ᎡᎯ ᏥᎩ, ᎤᏓᏅᏙᎩᎯ ᎡᎯ, ᎥᏝᏃ ᎪᏪᎵᏉ ᏂᎦᏪᏍᎬ ᏗᎧᎿᏩᏕᎩ; ᎾᏍᎩ ᎥᏝ ᏴᏫᏉ ᎬᏩᎸᏉᏙᏗ ᏱᎩ, ᎤᏁᎳᏅᎯᏍᎩᏂ. ᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎤᏁᎳᎩ ᎮᎳ ᎪᎯ ᎨᏒᎢ, ᎣᏏᏳᏰᏃ ᎾᏍᎩ ᎢᎩᎾᏛᏁᏗᏱ ᎩᏂᏍᏆᏗᏍᏗᏱ ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒᎢ. ᎩᎳ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎴᎢ. ᎾᏍᎩ ᎠᏴ ᎬᏅ ᎠᏂᏍᏕᎵᏍᎬᎢ,ᎤᏅᏒ ᏗᏂᏴᏤᏂ ᎡᎳᏗ ᏚᏂᏅᏅ; ᎾᏍᎩ, ᎥᏝ ᎠᏋᏒᏉ ᏱᎦᏥᏯᎵᎡᎵᏤᎭ, ᎾᏍᏉᏍᎩᏂ ᏂᎦᏛ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ; ᎤᏇᏓᎵᏰᏃ ᎤᏚᎵᏍᎬ ᏓᎦᏘᎴᎪ ᎠᏓᏅᏙ, ᎠᎴ ᎠᏓᏅᏙ ᎤᏚᎵᏍᎬ ᏓᎦᏘᎴᎪ ᎤᏇᏓᎵ; ᎾᏍᎩᏃ ᎯᎠ ᏗᎾᏓᏡᏗᏍᎩ ᏂᎦᎵᏍᏗᎭ; ᎾᏍᎩᏃ ᏂᎦᎵᏍᏙᏗᎭ ᏄᏍᏛ ᎢᏣᏚᎵᏍᎬ ᎥᏝ ᏱᏅᎨᏣᏛᎦ. ᏦᎢ ᎢᏳᏩᎬᏘ ᎡᏆ ᎠᎵᏍᏓᏴᎲᏍᎨᎢ. ᎢᎯ ᎤᏣᎴᏓ ᎭᏫᏩᏔ, ᏕᎭᏘᏃᎸ ᏧᏤᎵ ᏴᏫ ᎢᎩᏍᏕᎵᏍᎩ. ᏃᏗ ᎤᎵᏏᎩ ᎤᎧᎲᏛ ᎤᎶᏎ ᏅᏙ ᎠᎬᏱᏣ. ᎠᏂᏐᎢᏍᎩᏂ ᎠᏴᏉ ᏕᏥᏁᏤᎭ ᎥᏝᏃ ᎤᎬᏫᏳᎯ; ᎢᏳᏃ ᎩᎶ ᎢᏓᎵᏅᏟ ᎤᏓᎵᎢ ᏴᏪᎧᎭ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ, ᎣᏏᏳᏃ ᏯᏪᎸᏍᎦ ᎠᏏᏉ ᎤᎾᏁᎳᏗᏍᏗᏱ, ᏞᏍᏗ ᎢᏴᏛ ᏱᎦᎧᎲᏍᎨᏍᏗ. “ᎭᎳᏑᏢᎩ! ᎭᎳᏑᏢᎩ!” ᎤᏛᏁ ᏥᏍᏚ. ᎥᏝ ᎾᏍᎩᏯ ᎧᏃᎮᏛ ᏕᎦᏥᏯᏠᎢᏍᏓᏁᎸ ᏧᏂᎦᏴᎵᎨᎢ, ᎾᎯᏳ ᎦᏂᏲᏯᏁᏒ ᎦᏥᏄᎪᏫᏍᏗᏱ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲᎢ; ᎥᏝᏰᏃ ᏳᏂᏍᏆᏂᎪᏔᏁ ᎧᏃᎮᏛ ᏕᎦᏥᏯᏠᎢᏍᏓᏁᎸᎢ, ᎠᎴ ᎠᏴ ᎥᏝ ᏱᎦᏥᏯ-ᎦᏎᏯᏍᏔᏁᎢ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ. ᏚᏑᎬ ᎭᏫᏂᏣ ᎠᎭᎾᏬ ᎤᎭᎨᏛ ᎦᎵᏦᏩᏛ ᎾᏍᎩᏯ, ᎧᏂᎩᏓ ᎨᏎᏍᏗ ᎪᎰᏍᏗ ᎠᎩᏍᏘ, ᏧᏩᏌ ᏔᎵ ᎢᎦ ᏘᎵ ᏃᎴ ᏐᎯ ᏚᏦᏩᏁ, ᏔᎵ ᏄᏒ ᏧᏭᏔᎩᏛ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎡᏙᎢᏳᏒᎢ, ᎾᏍᎩ ᎢᏳᏃ ᏂᎦᎥ ᎪᎱᏍᏗ ᎡᏗᏔᏲᏏ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒᎢ, ᎢᎦᏛᎦᏁᎲᎢ. ᎤᏁᎳᏅᎯ ᎤᏬᏢᏅᎯ ᏥᎩ ᎡᎳᏂᎬᎢ ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᏁᎯ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ ᎤᎾᏤᎵᎦ, ᎥᏝ ᏱᎦᏁᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎩᎶ ᏧᏬᏱ ᏧᏮᏔᏅᎯ ᏧᏁᏍᎨᎲᎯ. ᎦᏛᏅᎥᏍᏗᏍᎬ, ᎠᎩᏩᏒ Sketches and Eccentricities of Col. David Crockett, ᎧᏫ ᏧᎾᏗᏔᏍᏗ ᏩᎩᎷᏨ ᎠᎩᎪᎵᏰᎥ. ᏣᏔᏲᏎᎯ ᎯᏁᎮᏍᏗ, ᏣᏙᎸᎡᏗᏱᏃ ᎤᏚᎵᏍᎩ ᏞᏍᏗ ᎢᏴᏛ ᎢᎯᏯᏛᏁᎸᎩ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᎪ ᎠᏆᏒᏂᎦ? ᏂᎦᏛᏃ ᎤᎾᏓᏱᎸ, ᏈᏓ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏔᏕᏲᎬᏍᎩ, ᎤᏂᏣᏘ ᎨᏣᏓᏡᏫᏍᏗᏕᎦ ᎠᎴ ᎨᏣᏁᏄᎳᏍᏗᎭ, ᏥᎪᏃ ᎦᎪ ᎠᏆᏒᏂᎦ ᎢᎭᏗᎭ? ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏳᏃ ᎯᎠ ᎡᎳᏪᏱ ᏳᏅᏅ, ᏅᏯ ᎩᎳᏉ ᎢᏴᏛ ᏯᏁᎷᎲᎦ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎠᏥᎸ-ᎤᎦᏔ ᏥᏂᎬ ᎢᎩᏛ ᎪᎯᏛ ᎪᎯᏳᏗ ᎨᏒ ᏱᏥᎭ, ᎯᎠ ᏱᏂᏥᏪᏏ ᎯᎠ ᎫᏩ-ᏧᏁᎬ ᏥᏡᎦ, ᏫᏕᏣᎾᏍᏕᏢᏓ, ᎠᎴ ᎠᎺᏉᎯ ᏪᏣᎧᎲᎦ, ᎠᎴ ᏱᏦᎯᏳᎲᎦ. ᏕᏏᎶᏂᎦᏰᏃ ᏫᎨᏙᎲ ᏌᏉ ᏂᏣᏓᏅᏒᎩ ᎠᎩᏂᎬᏎᎲ ᎠᏆᎵᏍᏕᎸᏙᏗ, ᎠᎴ ᎾᏍᏉ ᏔᎵᏁᎢ. ᎠᎦᏛ ᎤᏂᏐᏱ ᎡᏍᎦᏉ ᎠᏴ ᎾᏍᎩ ᎠᏂᎫᏌ ᎠᎴ ᎢᏳᏍᏗᏉ ᏱᏗᎪᎠ. ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎪᎯᏍᎩᏂ ᏥᎩ, ᎩᎶ ᎠᏕᎸ-ᏗᎦᎶᏗ ᎤᎾᎡᏍᏗ, ᎦᏁᎨᏍᏗ, ᎠᎴ ᎾᏍᏉ ᏕᎦᎶᏗ; ᎩᎶᏃ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏄᏩᏴᎾ ᎨᏎᏍᏗ, ᏫᎦᎾᏚᎦ ᎤᏄᏬ ᎠᎴ ᏭᏩᎯ. ᏙᎢᏳᏍᏗ ᎯᏂᏃᎮᏍᎨ, ᏫᎵᎻ, ᏥᎩᏂᏲᏍᏓᏏ?” ᎠᏂᎶᏏᏙ ᎠᎾᎴᏫᏍᏗᏍᎨ ᎤᎾᎦᏎᏍᏕᎢ. ᎦᏙᏃ ᎮᎵ ᏓᏳᏬᏪᎳᏅ? ᎭᎸᎢᏳ ᎤᏤᎵᏛ ᎦᏃᏟᏙᎯ ᏣᎪᏘᏍᎨᎢ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏛᎢ ᏍᎩᎾ ᎤᏩᏏ ᏚᏓᏥᎶᏍᏓᏅᎢ ᎢᎾᎨᎢ ᎢᏣ ᏫᎦᎶᏍᎬᎢ ᏃᎴ ᏕᎧᏃᎩᏍᎨ, ᎤᏪᎳ ᏥᎩᎠ ᏧᏪᎳ ᏕᏥᎩᏍᎪᎢ Ꮡ, Ꮜ, ᏌᎢ ᏔᎧᏔᏍᏓ ᏃᎴ ᏫᏢᎾ!” ᎢᏓᎵᏅᏟ, ᏥᎪ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏰᎵᏉ ᏯᎾᏓᏛᎦ ᎣᎵᏩ ᏡᎬ ᎠᎾᏓᏛᏍᎩ, ᎠᎴ ᏥᎪ ᏖᎸᎳᏗᎯ ᏒᎦᎳ-ᎢᏳᏍᏗ ᏯᎾᏓᏛᎦ? ᎾᏍᏉᏍᎩᏂ ᎥᏝ ᏰᎵ ᏌᏉ ᎦᏄᎪᎬ ᏴᏛᎦᏄᎪᎢ ᎠᎹ ᎤᎶᏥᏛ ᎠᎴ ᎠᎹ ᎤᎶᏥᏛ ᏂᎨᏒᎾ. ᎢᏥᎦᏔᎭᏰᏃ ᏄᏍᏛ ᏕᏨᏲᎯᏎᎸ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᎣᏏᏳ ᎤᏰᎸᏅᎯ ᎨᏒᎢ. ᎨᏍᏗ ᏄᎶᏒᏍᏛᎾ ᏱᎩ. ᏥᏌᏃ ᎾᏍᎩ ᎤᏛᎦᏅ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᎩ ᏂᏚᏂᏢᎬᎾ Ꮭ ᎤᏚᎸᏗ ᏱᏄᎾᎵᏍᏓᏁᎰ ᏗᏓᏅᏫᏍᎩ, ᏧᏂᏢᎩᏍᎩᏂ; ᎢᏝ ᎤᎾᏓᏅᏘ ᏱᏗᏥᏯᏅᎯᎸ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᏚᎾᏓᏅᏛ ᏧᏂᏁᏟᏴᏍᏗᏱ. ᎠᏂᎫᏌ ᏃᎴ ᏤᎩᏏᏂ ᎤᎾᏟᎸ ᎠᏰᎵ ᎢᏴ ᏚᏂᏲᎰᏎᎴ ᎠᏂᏴᏫ. “ᎡᎳᏗ ᏱᏂᎦᏛᎦ ᎾᎥᏂᎨ ᏳᏩᎩᎦᏛᎲᎦ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᎴ ᎾᏍᎩ ᏄᏩᏂᏌᏅᎩ ᏂᎦᏗᏳ ᏧᎾᏍᏗᏱ ᎠᎴ ᏧᎾᏛᎾ, ᏧᏁᎿᎢ ᎠᎴ ᎤᏲᎢᏳᎾᏛᎿᏕᎩ, ᏂᏗᎨᏥᎾᏝᎥᎾ ᎠᎴ ᏗᎨᏥᎾᏝᎢ, ᏗᎨᎪᏪᎶᏗᏱ ᏗᏂᎦᏘᏏᏗᏢ ᏧᏃᏰᏂ, ᎠᎴ ᏗᏂᎬᏓᎨᏂ; ᎦᎸᎳᏗ ᏫᏚᎧᎾᏅ, ᎨᏍᏗ ᏣᎵᎮᎵᎪ ᎠᎩᎪᏩᏘᏍᎬ ᏱᏅᏩᏍᏖ. ᎤᏍᎦᏍᏓᏁᎴ ᎤᏛᎦᎾ ᏓᏬᏂᏍᎬ. ᎤᎯᎨᏛ ᏧᏍᏆᎸᏓ ᏎᎷ ᏅᏙ ᏚᏅᏓᏒ ᎦᎸᎳᏗᏨ ᎤᏓᏴᎳᏛ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏄᏓᎵᏓᏍᏛᎾ ᏥᎩ, ᎾᏍᎩ [ᏄᏙᎯᏳᎭ] ᎠᏴ ᎢᏨᏁᏤᎲ ᎥᎥ ᎠᎴ ᎥᏝ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏏᏗ ᎪᎯ ᎨᏒ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎩᎶ ᏲᏥᎦᏔᎭ ᎾᏍᎩᏯ ᎤᏇᏓᎵ ᎠᎦᏔᎲᎢ. ᎠᎴ ᎾᏍᏉ ᎢᏳ ᎦᎶᏁᏛ ᎣᏥᎦᏙᎥᏒᎯ ᏱᎩ ᎤᏇᏓᎵ ᎠᎦᏔᎲ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎿᏉ ᏲᏥᎦᏔᎭ. ᎱᏚᎯᏁᎾ ᏲᎾ ᎤᏤᏍᏙ ᏍᏉ ᎤᏚᎯᏅᏎ ᏫᎵᎻ, ᎠᏎᏃ ᎤᏴᏥ ᎠᎹ ᎤᏪᎵᏎ. ᎾᏍᎩᏃ ᏂᎯ ᏈᎵᎩᏱ ᎢᏤᎯ, ᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᏉ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎬᏱᏱ ᎢᏨᏯᎵᏥᏙᏁᎸ ᎾᎯᏳ ᎹᏏᏙᏂ ᎠᏆᏂᎩᏒ, ᎥᏝ ᎢᎸᎯᏢ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎪᎱᏍᏗ ᏱᎬᏆᏛᏁᎴ ᎾᏍᎩ ᎠᏓᏁᏗ ᎠᎴ ᎥᏓᏘᏁᏗ ᎨᏒ ᎤᎬᏩᎵ, ᏂᎯ ᎢᏨᏒ. ᎤᏂᏴᎬ ᏚᏐᏨ ᎠᎹᏱ, ᎦᏚᏏ ᏭᎾᎷᏒ, ᎤᏃᎴ ᎦᏣᏄᎳ ᎢᏳᏍᏗ, ᎠᏎᏃ ᎦᏳᎸ ᎤᎾᏕᎶᎰᏒ ᎨᏒ ᎤᏂᏃᎮᎸ. ᎤᎦᏃᏩ ᎨᏎ ᎤᏅᏗ ᎤᏍᏉᏟ ᎭᏫᏂ. ᎩᎶᏰᏃ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏓᎧᎿᏩᏕᎦ, ᏑᏓᎴᎩᏉᏃ ᎪᎱᏍᏗ ᏯᏲᏍᏗᎭ, ᏂᎦᏛ ᏚᏲᏍᏔᏃᎢ. “ᎡᏚᏥ ᏍᏉᏎᎮᏍᏗ.” ᏂᎪᎯᎸᎾ ᎤᎭᏲᎴ ᏑᎾᎴ ᎤᎵᏍᏓᏴᏗ ᏣᏄᏏ. ᎤᎧᏲᏓ ᎠᏏᎳᏛᏙᏗ ᎠᏍᏓ ᎤᏮᏙᏗ ᎤᏪᎵᏎ ᎠᏤ ᎧᏃᎮᏓ ᎤᏬᏪᎶᏗ. ᎦᎵ ᏚᎸᏔᏁ ᏗᎩᏣᏗ ᏦᎯᏍᏙᏗ ᏧᎭᎾᏬ ᏃᎴ ᏗᎵᏰᏑᎶ ᎣᏍᏓ ᏗᏒᎢᏍᏔᏅ, ᏥᏳ ᏧᎾᏗᏔᏍᏗ ᎡᏙᎲ, ᏃᎴ ᎠᎦᏗᏓ ᎠᏕᎳ, ᏧᏙᏗ ᎠᏤ ᎠᎴᏂᏍᎬ. “ᎬᏚᎢᏍᏔᏁᎭ ᏕᏥᎾᏫᏍᏗ ᎠᏆᏓᏅᏙᎩ.” ᏂᎦᏛᏃ ᎤᏠᏱ ᏧᎾᏢᏫᏍᏙᏗ ᎤᎾᎴᏅᎮ ᎤᏂᏲᎴᎢ. ᎢᎬᏱᏱ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏠᎨᏏ ᎠᎩᏩᏒ, ᎠᎴ ᎠᏎ ᎠᏇᏅᏍᏗ ᎠᎴ ᎠᏆᎦᏔᏅᏍᏗ ᏂᎦᎵᏍᏗᎭ; ᎬᏔᏲᏎ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎡᏣᏅᏟ ᎤᎷᏨ, ᏣᏙᏓᏃ ᎦᎵᏦ ᏔᏅᎯ ᏩᎦ ᎠᎩᎾ ᎤᎸ,ᏙᎯᏱ ᎤᎾᏄᎪᏥᎸ ᎢᏳᏍᏗ. ᎾᏍᎩᏯᏰᏃ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨ ᎤᏣᏘ ᏦᏥᎩᎵᏲᎦ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎤᏣᏔ ᎣᎩᏁᎭ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ ᎦᎶᏁᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ. ᏂᎦᎥ ᎠᎦᏴᎵᎨ ᎤᎲ ᎠᏆᏤᎵᎦ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏥᏂᏥᏫ, ᎠᏆᏤᎵᎦ ᎨᏒ ᏛᎩᏏ ᎠᎴ ᏓᏥᎾᏄᎪᏫᏎᎵ. ᎡᎵᏏᏃ ᏃᏊ ᎪᎯ ᎢᏴ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎢ ᎪᎱᏍᏗᏛ ᏗᏓᏛᎦᏂᏒ ᎢᎩᏃᎯᏎᎭ. ᎩᎶ ᎠᏴ ᎠᎩᎷᏤᎮᏍᏗ ᏂᏗᎦᏂᏆᏘᎲᎾᏃ ᎢᎨᏎᏍᏗ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏧᏙ, ᎥᎥ, ᎠᎴ ᎤᏩᏒ ᎾᏍᏉ ᎬᏅᎢ, ᎥᏝ ᏰᎵ ᎠᎩᏍᏓᏩᏗᏙᎯ ᏱᏅᎦᎵᏍᏓ. ᎢᏧᎳ ᎤᏁᏅᏎ ᏏᏆ ᎠᏍᏚᏗ. ᎾᏃ ᏧᏂᏲᎱᏒᎯ ᏧᎾᎴᎯᏐᏗ ᎨᏒ, ᏱᏏ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎤᏪᏲᏓᏛᎢ, ᎾᎯᏳ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ, ᏧᏬᏎᎴᎢ. ᎠᎾᎢᏒᏃ ᏅᏃᎯ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᏓᎬᏍᏓᏩᏗᏙᎵ ᏂᎦᎥ ᎮᏙᎲᎢ. ᎠᏤ ᎤᏍᎪᏍᏗ ᎠᏔᎴᎦᏒ ᎤᏪᎵᏒ ᎨᏎ. “ᏱᎬᏆᏚᎵ ᏍᎩᎾᎾ ᎢᏳᎵᏍᏙᏗ. ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᏚᏪᏎᎴ ᏴᏫ, ᎤᎶᎩᎸ ᎢᏥᎪᏩᏛ ᏅᏙ ᏭᏕᎵᎬ ᏓᎦᎶᎯ, ᎩᎳᏉ ᎢᏴᏛ ᎯᎠ ᏂᏥᏪᏍᎪᎢ, ᎠᎹ ᏛᏰᎢᎵ; ᎾᏍᎩᏃ ᏂᎦᎵᏍᏗᏍᎪᎢ. ᎢᏳᏃ ᎢᏥᎧᎵᎢᎮᏍᏗ ᎦᎸᏉᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸᎢ, ᏨᏒ ᏥᏂᏣᏓᎨᏳᎭ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ, ᏣᏗᎭ, ᎣᏏᏳ ᏱᏂᏣᏛᎦ. ᎤᏂᏍᏆᏛᏃ ᏂᎦᏛ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᎤᏤᎵᎦ, ᎢᎤᎾᏨᏎ ᎨᎵᎵ ᏭᏂᎶᏎ, ᎤᏅᏒ ᏧᏂᏚᎲ ᎾᏎᎵᏗ ᏭᏂᎷᏤᎢ. ᎤᏙᎯᏳᎯ ᎩᎶ ᎯᎠ ᏱᏅᎦᏫ, ᏂᎯ ᏦᎯᏳᎭ, ᎠᏴᏃ ᏓᎩᎸᏫᏍᏓᏁᎭ; ᎬᏂᎨᏒ ᏂᏍᏋᏂᏏ ᏦᎯᏳᏒ ᏕᏣᎸᏫᏍᏓᏁᎲ ᏅᏗᏍᎬᎾ ᎨᏒᎢ, ᎠᏴᏃ ᎬᏂᎨᏒ ᏅᏓᎬᏴᏁᎵ ᎠᏉᎯᏳᏒ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎬᏗᏍᎬᎢ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎩᎶ ᏥᏥᎶᏄᎮᎵ; ᎡᎳᏗ ᎢᏣ ᎤᏬᎰᏎᎢ ᎾᏍᎩᏯ ᎪᏪᎵ ᎠᎦᎷᏴ, ᏲᎾ ᎤᏤᏍᏙ ᎤᏍᏘᏰᎬ ᎤᏒᏥᎴᎢ. “Ꭾ-Ꭰ-Ꭰ!” ᎤᎾᏛᏁ ᎤᏂᏃᏕᎾ ᎠᏂᏓ. ᎢᏣᎵᏍᏗᏴᎲᏍᎬᏰᏃ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎢᎬᏱ ᎢᏥᎩᏍᎪ ᎢᏨᏒ ᎢᏣᏤᎵᎦ; ᎠᏏᏴᏫᏃ ᎠᎪᏄ ᎤᏲᏏᏍᎪᎢ, ᏅᏩᏓᎴᏃ ᎤᏴᏍᏕᏍᎪᎢ. ᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᏗᏍᎬ, ᎾᏍᎩ ᎥᎩᏁᎸᎯ ᏥᎩ, ᎯᎠ ᏂᎦᏥᏪᏎᎭ ᎾᏂᎥᏉ ᏥᎨᏣᏓᏑᏯ; ᏞᏍᏗᏉ ᏯᏂᎶᏒᏍᏗᏍᎨᏍᏗ ᎠᎾᏓᏅᏖᏍᎬ ᎾᏍᎩ ᏥᏚᏳᎪᏗ ᎤᎾᏓᏅᏖᏗᏱ, ᎤᎾᎵᏏᎾᎯᏍᏗᏍᎩᏂ ᎨᏎᏍᏗ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎪᎯᏳᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏚᏟᎶᎡᎸ ᎠᏂᏏᏴᏫᎭᎢ. ᎤᏣᏘᏰᏃ ᎠᎩᎵᏯ ᎨᏒ, ᎠᎴ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎬ ᏫᏨᏲᏪᎳᏁᎸᎩ ᎤᏣᏘ ᏗᎦᏥᎦᏌᏬᎢᎯ ᎨᏒᎢ; ᎥᏝ ᎠᏗᎾ ᎤᏲ ᎤᎾᏓᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᏯᏇᎵᏎᎢ, ᎢᏥᎦᏙᎥᎯᏍᏗᏱᏉᏍᎩᏂ ᎾᏍᎩ ᎤᏣᏔᏅᎯ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ. ᎠᏎᏃ ᏛᏍᏆᎸᎯ, ᎠᎴ ᎿᏉ ᎤᏍᏆᎸᎲ, ᎾᏍᎩ ᎤᏙᎯᏳᏒ ᎠᎾᏓᏙᎵᏍᏗᏍᎩ ᏛᎾᏓᏙᎵᏍᏓᏁᎵ ᎠᎦᏴᎵᎨ ᏙᏛᏅᏔᏂ ᏧᎾᏓᏅᏙ ᎠᎴ ᏚᏳᎪᏛᎢ; ᎠᎦᏴᎵᎨᏰᏃ ᏚᏲᎰ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᎬᏩᏓᏙᎵᏍᏓᏁᎯ. ᎢᏳᏃ ᎡᏙᏓ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏂᏓᎩᎸᏫᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᏞᏍᏗ ᏍᎩᏲᎢᏳᏅᎩ ᎤᎾᏙᎴᎰᏒᏰᏃ ᎢᎸᎯᏳ ᏥᎨᏎᎢ ᎥᏝ ᏴᏫᏉ ᎠᏓᏅᏖᏍᎬ ᏴᏗᏓᎴᏁᎢ; ᎠᏃᏍᏛᏍᎩᏂ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᏂᏁᎨ ᎢᏳᏂᏪᏍᏗᏱ ᏄᏅᏁᎲ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ᏃᎴ ᏭᎳᎩᏒ, ᎱᏗᏔᎲ, ᎠᎭᏰᏊ. ᎠᏃᎯᏳᎲᏍᎩᏃ ᎤᏟ ᏂᎦᎡ ᎬᏩᏁᏉᏤᎴ ᎤᎬᏫᏳᎯ, ᎤᏂᏣᏔᏅᎯ ᎨᏎ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ. ᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏥᏔᏲᎭ, ᎠᏎ ᏓᏰᏥᏁᎵ; ᎢᏥᏲᎦ, ᎠᏎ ᏓᏥᏩᏛᎯ; ᎢᏨᏂᎦ, ᎠᏎ ᏓᏰᏥᏍᏚᎢᎡᎵ; ᎠᎴ ᎤᏓᏁᏟᏴᏎ ᏓᏂᎧᏅᎢ, ᎠᎴ ᎤᎧᏛ ᏗᎬᏩᎸᏌᏓ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏄᏩᎥ ᎢᎦ-ᎦᏛ ᏥᏄᏁᎩᏴ ᏄᏁᎩᏰᎢ. ᏥᎪ ᎠᏴ ᎾᏍᏉ ᏣᏚᎵ ᏍᏗᎯᏍᏗᏱ ᎾᏍᎩᏯ ᎤᏒᎯ ᏥᎸᎩ ᎢᏥᏈᏱ ᎡᎯ? ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎴᎭᏫ ᎤᏁᎫᏥᏛ ᎥᏝ ᏯᏥᏛᏔᏁ ᎨᏥᏛᏔᏅ ᎾᏍᎩ Ꮎ ᏄᏃᎯᏳᏒᎾ ᏥᎨ-ᏎᎢ, ᎾᏍᎩ ᏙᎯᏱ ᏥᏚᏓᏂᎸᏤ ᎢᏳᏍᏗ ᎤᏂᎦᏛᏂᏙᎯ. ᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎨᏒ ᎢᏣᏓᏤᎵᏛ ᏂᎨᏒᎾ ᎨᏎᎢ, ᎪᎯᏍᎩᏂ ᏥᎩ ᎢᏣᏓᏤᎵᏛ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏂᏣᎵᏍᏔᏅ; ᎾᏍᎩ ᎥᏝ ᎡᏥᏙᎵᏨᎯ ᏱᎨᏎᎢ, ᎪᎯᏍᎩᏂ ᏥᎩ ᎡᏥᏙᎵᏨᎯ. ᎾᏍᎩ ᎯᎠ Ꮎ ᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ; ᎥᏝ ᎾᏍᎩᏯ ᏗᏥᎦᏴᎵᎨᎢ ᎹᎾ ᏣᏂᎩᏍᎨᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏂᏲᎱᏒᎯ ᏥᎩ; ᎯᎠ ᎦᏚ ᎠᎩᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏁᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏛᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏍᎩ ᎯᎠ ᎠᏍᏓᏱᏳ ᎧᏃᎮᏛ; ᎦᎪ ᏰᎵ ᏯᏛᎬᎦ? ᏥᏌᏃ ᏚᏁᏤᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉ ᎤᏍᏆᎸᎲ ᏴᏫ ᎤᏪᏥ ᎠᏥᎸᏉᏙᏗᏱ. ᎤᏣᏘᏰᏃ ᎤᏚᎵᏍᎬᎩ ᎢᏥᎪᏩᏛᏗᏱ ᏂᏥᎥᎢ, ᎠᎴ ᎤᏣᏘ ᎦᎨᏛ ᎤᏓᏅᏔᏩᏕᎬᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎢᏣᏛᎦᏅ ᎤᏢᏨᎢ. ᏉᎳᏃ ᏫᏚᏬᏕᏒ ᏏᏄᎩᏝᏅᎯ ᎠᏓ, ᎠᎴ ᏚᎲᏔᏅ, ᎢᎾᏛ ᎤᏗᎴᎬ ᏓᏳᎾᏄᎪᏨᎩ ᎤᏬᏰᏂ ᎤᏪᏖᎳᏛᏨᎩ. ᎾᎠ ᏭᎷᏤ ᎠᏒᏛ ᏗᏥᏯ. ᎠᎢᏒ ᏕᎦᏃᏴᎵᏍᏗᏍᎨ ᏧᏆᎶᎬ, ᏚᏃᏴᎬ ᎤᎾᎵᎪᏗ. ᏄᏍᏛ ᎤᏓᏍᏔᏴᏅ ᎬᏣᏝᏅ ᏑᎾᎴ ᎠᎩᏍᏗ, ᎠᏍᏔᏱ ᎠᎩᏍᏗ ᏅᏙ ᎧᎸᎬ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏇᏥ, ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ; ᏅᏩᏙᎯᏯᏛ ᏥᎮᎾ, ᎠᎴ ᏣᏗᏩᏒᎯ ᎨᏎᏍᏗ ᏣᏢᎬᎢ. ᏫᏚᏯᏅᎮᏃ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏕᎤᏲᎯᏎᎴ ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᎠᏕᎸ,] ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎪᎱᏍᏗ ᏕᏨᏗᏍᎨᏍᏗ ᎬᏂ ᎢᏥᎷᏨᎭ. ᏤᎦᏈᏃ ᎢᏥᏈᏱ ᏭᎶᏎᎢ, ᎤᏲᎱᏎᏃ, ᎠᎴ ᎾᏍᏉ ᏗᎩᎦᏴᎵᎨᎢ. “ᎭᏂ ᏅᎩᏍᎪ ᎠᏂᏎᏂᏏ. ᎤᏁᎦ ᎠᏓᏁᎸ ᎠᏇᏅᏒ, ᎪᏪᎵ ᎠᎩᏃᎮᏍᎩ ᎦᎳᎱᏂ ᎠᎩᏅᏁᎸ ᏥᏁᎲ, ᎠᎩᏯᏖᏅ ᏯᏆᏧᏓᏉ, ᏚᏂᏓᎭᎾᏫᏲᏤ ᏣᎾᎵᏙᎩᏯᏍᎨ ᏔᎵᏍᎪᏣᏁᎳ ᎤᏕᏘᏴᏌᏗᏒ, ᏤᎩᏏᏂ ᎤᎬᏫᏳ ᏄᎵᏍᏔᏁ ᎦᎳᎱᏂ ᏔᎵᏁ ᎠᎴᎲᏍᎩ ᎤᎬᏫᏳ, ᏍᎩᏴ ᎤᏲᎯᏍᏔᏁ ᎦᎳᎱᏂ, ᏓᏳᏓᎴᏅᏓ ᎤᎾᏔᏲᎴ, ᏚᏳᎪᏛ ᏚᏂᎲ ᏕᎦᏚᎲ. ᎪᎯ ᎢᏴ ᏃᏊ ᎠᏊ ᎢᏴ ᏙᏱ ᏗᏢ ᏄᏪᏏᏢ ᏃᏊ ᎤᏕᏲᎸ ᎦᎵᏦᏕ ᏃᏊ ᏧᎶᏒ ᎢᏗᏜ ᏭᎶᏒ ᏏᏊ ᏂᎦᏪᏏᏐᎢᏊ ᏫᎬᏩᏕᎵᏦᎲᏍᎩ ᏂᎦᏪᏏᏒᎢ. ᎤᏍᎩᏗᏎᎢ ᏍᎪᎯᏍᏆ ᏓᎳᏚ ᎢᏯᎳᏏᏔᏅ ᎢᎦᏅᎯᏓ ᎨᏒ ᏃᎴ ᏐᏁᎵᏍᎪ ᏔᎵ ᎢᏯᎳᏏᏔᏅ ᎢᎦᏘ ᎨᏒ ᏃᎴ ᏂᎦᏓ ᏗᏓᏖᎶᎯᏍᏗ ᏚᏓᏔᎶᏒ ᏃᎴ ᏂᎬᎾᏛ ᎠᏰᎸᎢ ᏕᎦᏓᎥ ᏗᏌᎪᏂᎨ ᏗᏇᏡᏍᏗ, ᎦᏂᏓᏛ ᏍᏉ ᎤᏓᎡ ᏌᎪᏂᎨ ᎠᏇᏡᏍᏗ. ᎤᏒᎯ, ᏚᏑᎬ ᎤᏗᏍᎦᏞ, ᎤᏍᏘ ᎤᏬᏔᏅ ᏃᎴ ᎤᎦᏃᏫ ᎤᏢᏁ. “ᏓᎴᎲᎦ! ᎾᏍᎩᏃ ᏓᎨᏳᏗᏱ ᎬᏙᏗᏱ ᏂᎬ ᎣᎾᏫᏱ, ᎠᎴ ᏂᎬ ᎠᏓᏅᏖᏗᏱ, ᎠᎴ ᏂᎬ ᎠᏓᏅᏙ, ᎠᎴ ᏂᎦᎥ ᏃᎵᏂᎬᎬᎢ, ᎠᎴ ᎾᎥ ᎢᏳᎾᏓᎳ ᎤᏩᏒ ᎤᏓᎨᏳᏒ ᎾᏍᎩᏯ ᎤᎨᏳᏗᏱ, ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏂᎦᏛ ᏗᎬᏩᏃᏍᏛ ᎠᏥᎸ ᏗᎨᎳᏍᏙᏗ, ᎠᎴ ᎠᎵᏍᎪᎸᏙᏗ. ᎾᏍᎩᏃ ᎠᏴ ᎠᎴ ᏂᎯ ᎢᏧᎳᎭ ᏗᎦᎵᏂᎪᎯᏍᏗᏍᎩ ᎦᎶᏁᏛ ᎡᏓᏤᎵᎦ ᎨᏒᎢ, ᎠᎴ ᎢᎩᎶᏁᎥᎯ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ; ᎤᏃᎯᎸᏍᏔᏁᎢ ᎤᏏᎳᏛ ᎦᏓᎢ, ᎦᏙ ᏫᏚᏬᏥᎴᎢ. ᏦᎯᏍᏙᏗ ᏧᏃᏩ ᏃᎴ ᏦᎯᏍᏙᏗ ᏧᏁᏍᏔᎳ ᎧᏁᏍᎦ ᏗᎦᏇᏅᏔᏅ. “Ꭳ, ᎤᏙᏳᎯ ᎤᏛᏁ ᎧᏅᏂᏍᎩ. ᏃᏗ ᏫᎵᏂ ᎤᏬᏂᏎ: “ᎦᏙᏃ ᎭᏛᏁ ᎭᎾᏂ, ᏌᎳᏓ?” ᎠᏆᏟᏂᎬᏁᎸ, ᎤᏒ ᏂᎦᎵᏍᏘᏍᎬ ᎦᏓᏁᏝᏁᎲ Macallan's ᎠᏥᏍᏛ, ᎠᏎᏃ ᏐᏉ ᎢᏳᏩᎬᏘ ᏑᎾᏙᏓᏆᏍᏗ, ᏯᎦᏕ, ᏳᏲᏍᏔᏁ ᎠᏕᎳ ᏗᎩᎶᏙᏗ. ᎠᎴ ᎤᎴᏁ ᏚᏜᏌᏛ ᎣᏂᏗᏢ ᏓᏠᏱᎮᎢ, ᎠᎴ ᎤᎴᏅᎮ ᏧᎳᏏᏕᏂ ᏚᏬᏑᎴᏔᏁ ᏧᎦᏌᏬᎸᎯ, ᎠᎴ ᏚᎧᏲᏙᏔᏁ ᎤᏍᏗᏰᎬᎢ, ᎠᎴ ᏚᏚᏣᎳᏁ ᏧᎳᏏᏕᏂ, ᎠᎴ ᏚᎶᏁᏔᏁ ᎠᏠᏁᏗ. ᏂᎦᏓ ᏚᏳᎪᏛ ᎢᏳᎾᎵᏍᏔᏁᏗ. ᏣᎵ ᎤᏩᏓᏍᎬ ᏓᏲᎾᏍᏓᏝᎥ ᎤᏂᎭᏴᏒ ᎤᏂᎩᏍᏗ, ᎠᎵᏍᏔᏴᏗ ᏓᏳᏓᎴᏅᏓᏱᎩ, ᏰᎵ ᎠᎾᎵᎮᎵᎩ ᎨᏒ. ᏕᎤᏲᎵᎸᏃ ᎣᏍᏛ ᎤᏱᎸᏒᎩ ᎤᏃᎮᎸᎩ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᏕᎤᎸᏫᏍᏓᏁᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᎾᏍᎩ ᏉᎳ ᎠᎬᏗᏍᎬᎢ. ᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎠ ᎢᎦᏪᏛ ᎢᎩ; ᏞᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎯᎪᎵᏰᎥᎩ. Ꮀ ᎤᎬᏫᏳᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎦᏔᎯᏳ ᏥᎩ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎧᏃᎮᏗ ᎨᏒ ᎠᏂᏧᏏ ᏥᏚᏁᎭ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎬᏔᏲᏎᎭ ᏂᏗᏣᏯᏪᎬᎾ ᏍᏆᏛᎦᏁᏗᏱ. ᎤᏩᏒᎯᏴᏓ ᎨᏎᎢ. ᏭᏩᏌᏙᏰ ᏗᎦᏂᎩᎸᎢᏣ ᏏᏆ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ. ᎠᎴᏬ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏙᏓᎦᏟᎶᏍᏔᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ? ᎠᎴ ᏧᏂᏲᎱᏒᎯ ᎥᎦᏥᎪᎥᎩ, ᏧᎾᏍᏗ ᎠᎴ ᏧᎾᏛᎾ, ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᏚᎾᎴᏅᎩ; ᎪᏪᎵᏃ ᏚᏂᏍᏚᎢᏒᎩ; ᎠᎴ ᏅᏩᏓᎴ ᎪᏪᎵ ᎤᏂᏍᏚᎢᏒᎩ, ᎾᏍᎩ ᎬᏂᏛ ᎠᏓᏁᎯ ᏥᎩ; ᏧᏂᏲᎱᏒᎯᏃ ᏙᎨᎫᎪᏓᏁᎸᎩ ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎪᏪᎵᎯ, ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ. ᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏗᏒᏌᏘ ᏱᏅᏩᏍᏗ; -ᎠᏴ ᎥᏝ ᎾᏍᎩ ᎢᏲᎦᏛᏁᏗ ᏲᎩᎭ, ᎥᏝ ᎠᎴ ᎾᏍᏉ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ. “ᎭᏂ,” ᎤᏛᏁ ᏏᏆ. ᎭᏗ ᏔᎵᏓᏍᏗᏍᎭ. ᎠᎴ ᎾᏍᏉ ᏙᏣᎧᎭ ᎾᏍᎩ ᎾᏧᏂᏂᏴᎯ ᏓᎾᏕᏲᎲᏍᎬ ᎠᏂᏂᎦᎴᏓᏂ, ᎾᏍᎩ ᎠᏴ ᏥᏥᏂᏆᏘᎭ. ᏈᎵᎩᏃ ᏗᎦᏚᎲ ᏌᎺᎵᏱ ᏭᎶᏎᎢ, ᎠᎴ ᏚᎵᏥᏙᏁᎴ ᏚᏃᎮᎮᎴ ᎦᎶᏁᏛ. “ᎤᏙᎯᏳ ᎪᎯᏗ ᏪᏙᎰ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᏍᏆᏒᏂᎸᎩ, ᏝᏰᏃ ᎠᏏ ᎡᏙᏙᏱ ᏫᏯᏆᎵᏌᎳᏓᏅ; ᎮᎾᏉᏍᎩᏂ ᎣᏣᎵᏅᏟ ᏗᏂᏅᎢ, ᎯᎠᏃ ᏫᏂᎩᏪᏏ; ᎡᏙᏙᏱ ᎠᏆᎵᏌᎳᏓᏂᏗ ᎠᎴ ᏂᎯ ᎢᏥᏙᏙᏱ; ᎠᏆᏤᎵᎦ ᎤᏁᎳᏅᎯᏱ, ᎠᎴ ᎢᏣᏤᎵᎦ ᎤᏁᎳᏅᎯᏱ. ᎠᏎᏃ ᎤᏣᏘᏂ ᎢᏳᏛᏁᎸᎯ ᎾᎥ ᎢᏧᎾᏓᎳ ᏗᎤᏪᏌᏙᏰᏉ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᎪ ᏂᏣᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏗᏍᎩᏳᎪᏓᏁᎯ ᎢᏣᎧᏅ ᏂᎯ? ᏞᏍᏗ ᎩᎶ ᏱᏥᏚᎨᏍᏗ ᎪᎱᏍᏗ, ᏗᏣᏓᎨᏳᏗᏱ ᎤᏩᏒ; ᎩᎶᏰᏃ ᏅᏩᏓᎴ ᏳᎨᏳᎭ ᎤᎧᎵᎸ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬᎢ. ᎢᏧᎳᎭ ᎠᏂᏅᎩ ᏌᏩᏂ ᏈᏓ, ᎠᎴ ᏓᎻ ᏗᏗᎹ ᏧᏙᎢᏛ, ᎠᎴ ᏁᏓᏂᎵ ᎨᎵᎵ ᎡᎯ ᎨᏂ ᎦᏚᎲᎢ, ᎠᎴ ᏤᏈᏗ ᏧᏪᏥ, ᎠᎴ ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ. ᎤᏍᏆᏂᎩᏗ ᏂᎦᎵᏍᏔ ᏃᎴ ᎧᏃᎮᏓ ᎯᎩᎷᏥᏏ ᎭᏂ ᎡᎶᎯ, ᎭᏂ ᎢᎦᏤᎵ ᏕᎦᎶᎨᏒ, ᏃᎴ ᎨᏍᏗ ᏏᏆᏉ ᏱᎩ.” ᎢᏳᎾᏃ ᏰᏥᎪᎥ ᏴᏫ ᎤᏪᏥ ᏳᎵᏌᎳᏓᏅ ᎾᎿ ᏧᏌᎴᏅ ᏱᏬᎶᏒ? ᎢᏥᏍᎦᏯ, ᏕᏥᎨᏳᏎᏍᏗ ᏗᏣᏓᎵᎢ, ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎾᏍᏉ ᏧᎨᏳᏎ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏓᏍᏕᎵᏍᎬ ᎤᏩᏒ ᏥᏚᏓᏲᏎᎢ, ᏱᏥᏯᏙᎵᏣ ᎠᏌᎻᏓ ᎠᏍᎦᎢᎲ, ᎯᎪ ᎢᎦ ᏱᎦᏓᏍᏔᏴᎾ, ᏱᎦᎵᏍᏔᏴᎾ ᏃᎴ ᏱᎦᏣᏪᏐᎸᏍᏔᎾ, ᎣᏍᏓ ᏱᏂᎦᎵᏍᏔ ᎠᏆᏛᏅ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎨᏆᏂ ᏭᎶᏒᎩ, ᎤᏩᏒ, ᎠᎴ ᎤᏥ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎠᎴ ᎾᎿ ᎢᎸᏍᎩᏉ ᏄᏂᏒᎸᎩ. ᎦᏙᎴᎣᏍᎦᏰᏃ ᏣᏚᎲ ᎤᏴᏍᏗ ᎠᏓᎪᎯ, ᎠᎴ ᎠᏍᎦᏂ ᏣᏓᎸᏍᏛᎢ. ”ᏄᏍᏆᏂᎩᏗ ᎠᏂᏯᎠ!” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ. ᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ ᏱᏍᏗᎦᏔᎭ ᏄᏍᏛ ᎢᏍᏗᏔᏲᎯᎲᎢ. ᏥᏌ ᏰᎵᏉ ᎨᏍᏓᏗᏔᏍᏗ ᎤᎵᏍᏈᏗ ᎾᏍᎩ ᎠᏆᏗᏔᏍᏗ ᏥᎩ? ᎠᎴ ᏗᎦᏰᏍᏓᏬᏍᏗ ᎾᏍᎩ ᏗᏓᏬᏍᏗ ᎨᏒ ᎾᏍᎩ ᎥᏆᏬᏍᏙᏗ ᏥᎩ? ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎠᎾᎢᏒᎢ, ᎾᏍᎩ ᎢᎸᎯᏢ ᎦᏚᎲ ᎤᎷᏤᎢ; ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᎹᏗ ᏧᏙᎢᏛ ᏚᏓᏂᎸᏤ ᎦᏁᎸᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎢᏨᏒ ᎨᏒ ᎤᏙᎯᏳᎯ ᏗᏥᏲᎱᏒᎯ ᎨᏒ ᎢᏣᏓᏓᏅᏖᏍᎨᏍᏗ ᎠᏍᎦᏂ ᎤᎬᏩᎵ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎤᎬᏩᎵ ᏗᏨᏃᏛ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏌᏛ. ”ᎤᏬᏍᎩᎵ. ᎠᎴ ᏚᏗᏅ ᎠᏕᎸ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎢᏴᏛ ᏭᎶᏒ, ᎤᏩᏒ ᏭᏓᏛᏁᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎾᏍᎩ ᎢᏳᎵᏍᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ ᎦᏛᎬᎩ. ᎿᏉᏃ ᎤᏂᏍᏆᏛ ᎾᏍᎩ ᎤᏂᏃᎮᏗ ᎨᏒᎢ, ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒ ᏨᏗᎦᎾᏄᎪᎦ ᏓᎿᏩ ᏅᏓᎬᏁᎵ ᏓᏳᎾᏡᏔᏂ, ᎠᎴ ᏓᏳᏂᏎᎪᎩᏏ, ᎠᎴ ᏓᏓᏳᏂᎵ. ᎾᏍᎩᏍᎩᏂ Ꮎ ᎣᏒ ᎦᏙᎯ ᏣᏫᏎᎢ; ᎾᏍᎩ ᏣᏛᎩᏍᎪ ᎧᏃᎮᏛ ᎠᎴ ᏥᎪᎵᎪᎢ, ᎠᎴ ᎾᏍᏉ ᏣᎦᏔᏛᏍᎪᎢ, ᎠᎴ ᏥᎦᎾᏄᎪᏫᏍᎪᎢ, ᎢᎦᏛ ᎠᏍᎪᎯᏧᏈ ᎤᏁᏉᏨ Ꭿ, ᎢᎦᏛᏃ ᏑᏓᎳᏍᎪᎯ, ᎢᎦᏛᏃ ᏦᎠᏍᎪᎯ. ᎠᏎᏃ ᏈᏓ ᎥᏗᎣᎩ ᏭᎷᏨ ᎬᏂᎨᏒ ᏕᏥᎦᏘᎸᏒᎩ, ᎦᏰᎫᎢᏍᏙᏗᏰᏃ ᎨᏒᎩ. ᏥᏳᎯᏃ ᎤᏣᎢᏒ ᎩᎳᏉ ᎢᏴᏛ ᏚᏠᏎ ᎠᏍᎦᏯ ᏓᏓᏂᏌᎲ ᏅᏓᏳᎶᏒᎯ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎢ, ᎦᏙ ᎤᏍᏗ ᎾᏍᎩ Ꮎ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏒ ᏗᏥᎦᏴᎵᎨ ᎥᏝ ᎤᏲ ᎢᏳᏅᏁᎸᎯ ᏱᎩ? ᎠᎴ ᏕᎤᏂᎸ ᎤᎾᏙᎴᎰᏛᎯ ᎬᏂᎨᏒ ᎢᏳᏅᏁᎸᎯ ᎤᎷᎯᏍᏗᏱ ᎾᏍᎦᏅᎾ ᎾᏍᎩ ᏂᎯ ᎡᏥᎶᏄᎡᎸᎯ ᎠᎴ ᎡᏥᎸᎯ ᏥᏄᎵᏍᏔᏅ; ᏫᎵᎻ ᎤᏓᎾᏫᏛᎮ ᎤᎵᏗᏍᎩᏎᎢ. ᎠᎩᏫᏯᏰᏃ ᎤᏙᎯᏳᏒ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎠᎩᎩᎬ ᎤᏙᎯᏳᏒ ᎠᏗᏔᏍᏗ. ᏍᎪᏯ ᎦᏥᎶᏅᎮᏗ ᏱᎩ,” ᏰᎵᏉ ᏱᏥᎶᏅᎥᎳ ᎠᏍᎦᏯ ᎤᏪᎵᏎ ᏌᎳᏓ, ᏴᏫ ᎨᏍᏗ ᏍᎪᏯ ᎾᏂᏌᎹᏗᏴ ᏱᎾᏂᏌᎹᏗᏯ ᏴᏫ.” ᏂᎯ ᎢᏣᏓᏙᎵᏍᏓᏁᎭ ᎪᎱᏍᏗ ᎾᏍᎩ ᏂᏥᎦᏔᎲᎾ; ᎠᏴᏍᎩᏂ ᎣᏥᎦᏔᎭ ᎢᏳᏍᏗ ᎣᏣᏓᏙᎵᏍᏓᏁᎲᎢ; ᎠᏂᏧᏏᏰᏃ ᎠᏁᎲ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏅᏓᏳᎾᏄᎪᎢᏍᏗ. (ᎠᏓᏅᏙᏰᏃ ᎦᎾᏄᎪᏫᏍᎪ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ,) ᎢᎸᎯᏳᏃ ᎢᏴᏛ ᎤᎷᏤ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ ᎤᏂᎾᏝᎢ, ᎣᏍᏛᏃ ᏄᏅᏁᎴᎢ. ᎠᎹ ᎤᎷᎯᏍᏗ ᎤᎾᏓᏍᏓᏴᏗ ᎦᏙᎨ ᏲᎾ ᎤᏤᏍᏙ ᏧᏃᏩ ᏓᎧᏲᏗᏍᎨ ᏑᎾᎴᎢ ᎤᎾᎵᏍᏓᏴᏅᎢ, ᎤᏥᎯ ᏕᎬᏗᏰᏍᎨᎢ ᏧᏃᏩ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏪᎿᎢ ᏴᏫ ᎠᏍᏓᏱᏳ ᏭᏴᏍᏗᏱ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎠᎱᏍᏕᏍᏗᏰᏃ ᎨᏒ ᎤᏙᎯᏳᎯ ᏣᏍᏕᎵᎭ ᎢᏳᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏱᎿᏛᏁᎭ; ᎢᏳᏍᎩᏂ ᎯᏲᏍᏗᏍᎩ ᏱᎩ ᏗᎧᎿᏩᏛᏍᏗ, ᎡᏣᎱᏍᏕᏎᎸᎯ ᎨᏒ ᎡᏣᎱᏍᏕᏎᎸᎯᏉ ᏂᎨᏒᎾ ᏂᎦᎵᏍᏗᎭ. ᎾᏍᎩ ᎦᎸᎳᏗ ᏭᏕᏗ ᏥᎩ ᎬᏂ ᎾᎯᏳ ᎠᎵᏱᎶᎸᎭ ᎤᏓᏁᏟᏴᏍᏗ ᎨᏒ ᏂᎦᎥᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ ᏥᎩ ᏧᏤᎵ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎵᎰᏍᎩ ᏗᏂᎰᎵ ᏧᏩᏔᏅᎯ ᏥᎩ, ᎡᎶᎯ ᏧᏙᏢᏅᎢ ᏅᏓᎬᏩᏓᎴᏅᏛ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎪᎴᏏᏂ, ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏇᏣᏱᏗ; ᎢᏳᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸ ᏂᎯ ᎢᏤᎲ ᏱᏙᎦᎸᏫᏍᏓᏁᎴ ᏔᏯ ᎠᎴ ᏌᏙᏂ, ᎪᎯᎩ ᏗᎬᏩᏂᏁᏟᏴᏛ ᏱᎨᏎ ᏚᎾᏓᏅᏛᎢ, ᏧᏏᏕᎾ ᏱᏚᎾᏄᏬᎡ ᎠᎴ ᎪᏍᏚ ᏳᎾᏓᏅᎵᏰᎡᎢ. ᎠᎴ ᎾᏍᎩ ᎤᎵᏁᏨ ᎬᏂᏛ ᎠᏓᏁᎯ ᎨᏒ ᎠᏓᎯᎯᏉ ᎾᏆᎵᏍᏓᏁᎸᎩ ᎠᏴ. ᎤᏬᎯᏳᏁ ᏫᎵᎻ. ᎤᏠᏱᎭᏉ ᎨᏎᏍᏗ ᏕᏣᏓᏓᏅᏖᏍᎬᎢ. ᏞᏍᏗ ᏱᏣᎦᏌᏯᏍᏕᏍᏗ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎨᏒᎢ, ᏕᏤᎳᏗᏙᎮᏍᏗᏍᎩᏂ ᎤᎾᏓᏙᎵᏍᏗ. ᏞᏍᏗ ᎢᏥᎦᏔᎾᎢ ᏱᏣᏓᏰᎸᏎᏍᏗ. ᏕᏧᎬ ᎾᎥᏂ ᏧᏏᏩ. ᎭᏫᏂ ᎤᏛᎸᎮᎢ ᏫᎵᎻ. ᎢᏣᏛᎦᏅᏰᏃ ᏄᏍᏛ ᏧᏩᎫᏔᏅᏒ ᎠᏆᎴᏂᏙᎸ ᎠᏂᏧᏏ ᏧᎾᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏕᏥᎦᎿᏩᏗᏒᎢ, ᎾᏍᎩ ᎤᎶᏒᏍᏔᏅᎯ ᎦᏥᏯᏕᏯᏙᏔᏅ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎠᎴ ᏕᏥᏛᏔᏅᎢ. ᎢᎬᏱᏃ ᏩᎦᏊ ᎠᎴᏱᎩ ᎪᎱᏍᏗᏊ ᏄᏓᎴ ᎦᎾᏝᎢ ᏱᎡᏙᎭ ᎣᎨᎵᏒᎢ. ᏍᎩ.” ᎯᎠ ᏄᏂᏪᏒᎩ, ᎢᏨᏯᎵᏒᎵᏤᎭ, ᏂᎯ ᏣᎬᏫᏳᎯ ᏣᏁᎳᏅᎯ, ᏫᎾᏍᏛᎾ ᏣᎵᏂᎩᏛ, ᏂᎯ ᎾᏍᎩ ᏤᎭ, ᎠᎴ ᎾᏍᎩ ᏤᎲᎩ, ᎠᎴ ᎾᏍᎩ ᏤᎮᏍᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏣᎩᏒ ᎤᏣᏘ ᏣᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏣᎬᏫᏳᎯ ᏥᏂᏣᎵᏍᏔᏅ. ᎢᏨᎨᏳᎢ, ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ, ᎢᏥᎳᏅᏓᏕᎮᏍᏗᏍᎩᏂ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ, ᎠᏞᎢᏍᏗ ᎨᏒ ᎠᏴ ᎠᏆᏤᎵᎦ; ᎠᏴ ᏓᎦᎫᏴᎯ, ᎠᏗᎭ ᏱᎰᏩ. ᎤᏂᏃᏕᎾ ᏚᏩᎧ ᎰᎻ, ᏣᎨ?” “ᎢᏨᏯᎵᎡᎵᏤᎭ,” ᎤᏛᏁ ᏌᎳᏓ. ᎤᏟᏍᏔ ᎤᏂᏯᎦᎵᏴᎲ ᎦᏙ ᎠᏂᏲᏍᎩ. ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᏴᏫ ᏗᏂᏩᎾᎦᎳ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏄᏅᏁᎰᎢ; ᎧᏁᏨᎯᏍᎩᏂ ᎠᏎᎵᏔᏅᎯ ᎠᏍᏓᏱᏗᏍᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎵᏁᏨ ᎣᏂ ᏧᎵᏁᏤᎢ, ᎤᏪᏥ [ᎠᏥᎸᎨᎶᎯ] ᏄᏩᏁᎴ ᎾᏍᎩ ᏂᎪᎯᎸ ᎦᎷᎶᎩ ᏂᎨᏒᎾ ᏥᎩ. ᎾᏁᏳ ᎡᎶᏛ ᏅᎩ ᎢᎦᏚᎩ ᎨᏒ ᏍᏓᏚᎩ ᎠᏥᏕᏘᏗᏍᏗ ᎤᏛᎦᏁ ᏕᎦᏃᏣᎸ ᏥᏌ. ᏣᎵ ᏚᎭᏄᏮ ᏃᎴ ᏧᏍᏆᏅᎾ ᎦᏓᏁ ᏃᎴ ᏗᎦᎨᏛ ᏂᏚᎵᏍᎦᏅ. ᎥᏝ ᎠᎴ ᏴᏫ ᏗᏂᎭᏄᎸᎯ ᎠᎴ ᏩᎦ ᎠᏂᎩᎾ ᎤᏂᎩᎬ ᎬᏗᏍᎬᎢ, ᎤᏩᏒᏍᎩᏂ ᎤᎩᎬ ᎬᏗᏍᎬᎢ, ᏌᏉ ᏄᏴᎴ ᎦᎸᏉᏗᏳ ᏗᎨᏒᎢ, ᎿᏉ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᎫᏴᏙᏗ ᎢᎩᏩᏛᎡᎸ. ᎾᏍᎩ ᎩᎶ ᎠᏥᏖᎸᏗᏱ ᏂᎨᏒᎾ ᎯᎠ ᎾᏍᎩ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏛ; ᎢᏨᏒᏰᏃ ᎢᏥᎦᎳᎭ ᎾᏍᎩ ᎢᎦᎵᏍᏓᏁᏗᏱ ᎡᎩᏁᏤᎸᎯ ᎨᏒᎢ. ᏍᎩᎾᎾ ᏍᏉ ᎤᏩᏎ ᎪᏪᎵ ᎤᏙᏗ, ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᏚᎵᎬᏩᎳᏁᎳ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎩᎶ ᏱᏗᏧᎪᏓᏁᎮᏍᏗ ᎠᎵᏍᏓᏴᏗ ᎤᎬᏩᎵ, ᎠᎴ ᎠᏗᏔᏍᏗ, ᎠᎴ ᎦᎸᏉᏗ ᎢᎦ, ᎠᎴ ᎢᏤ ᏅᏙ ᎠᏢᏁᎬᎢ, ᎠᎴ ᏚᎾᏙᏓᏆᏍᎬ ᎢᎦ; ᎪᎯᏳᏗᏃ ᎨᏒ ᎯᎠ ᏄᏍᏗ ᎦᏛᎬᎢ, ᎤᎵᏂᎩᏛ ᎪᎯᏳᏗᏱ ᎠᎪᏩᏛᏗᏱ ᎨᏒ ᏄᏍᏛ ᎤᏚᎩ ᎣᏩᏒᎢ, ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎢᏳᏓᎵᏍᏓᏁᏗᏱ ᎡᎲ ᎾᏍᎩ Ꮎ ᎠᏏ ᎠᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎠᏴ ᎠᏆᏓᏅᏘ ᎠᏫ-ᏗᏥᎦᏘᏯ. ᎤᏓᏅᏘ ᎠᏫ-ᏗᎦᏘᏯ ᎬᏅᎢ ᎡᎳᏗ ᏓᏁᎰ ᎠᏫ. ᏃᏗ ᎡᎳᏗ ᏭᏅᏍᏔᏁᎢ, ᏔᎵ ᏚᏏᎳᏛᏁ. ᎤᏂᏲᎴᏃ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎯᎠ ᏓᎦᏟᎶᏍᏗ, ᎠᎴ ᎦᎪ ᎠᏥᏃᎮᏎ ᎯᎠ ᏥᎦᏪᎳ? ᏏᏌ, ᎢᎬᏬᏎᎴᎢ. ᏂᎦᏓ ᏗᎩᎷᏂᏗᏍᎬ ᏔᎵᏍᎪ ᎢᎦᏕᏘᏴᏓ. ᎠᎴ ᎤᏣᏘ ᎤᏗᎴᎩ ᎨᏒ ᏕᎨᏥᎴᏴᏙᏔᏅᎩ ᏴᏫ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏙᎥ ᎤᏂᏐᏢᎢᏍᏔᏅᎩ, ᎾᏍᎩ ᎠᏓᏅᏖᏍᎬᏉ ᎢᎬᏩᏁᎵᏓᏍᏗ ᏥᎩ ᎯᎠ ᎾᏍᎩ ᎤᏕᏯᏙᏗ ᎨᏒᎢ; ᎠᎴ ᎥᏝ ᏱᏚᏂᏁᏟᏴᏎ ᏚᏁᏓᏅᏛ ᎾᏍᎩ ᎬᏩᎸᏉᏙᏗᏱ. ᎠᏒᏛᏛ ᎨᏎ. ᎾᏍᎩᏃ ᎾᏂᏪᏍᎬᎢ ᎦᏂᎳ ᏚᏂᏲᏍᏙᏓᏁᎴ ᎤᏂᏣᏘ ᎠᏥᎸ-ᎬᏩᏁᎴᏗᏱ ᎠᎾᏓᏅᏖᏍᎬᎢ. ᎦᏙᎭᏃ ᏱᎩ? ᎤᏂᏣᏛᎩᏃ ᎤᏃᎯᏳᏅᎯ ᎤᏂᎷᏨᎩ, ᎠᏂᏃᎲᏍᎬ ᎠᎴ ᎬᏂᎨᏒ ᎾᏅᏁᎲᏚᏂᎸᏫᏍᏓᏁᎸᎢ. ᎠᏟᏰᎵᏒ, ᏏᏅᏓ ᏃᎴ ᏚᏕᏘᏴᏌᏗᏒ ᏕᎦᎷᎬ ᏃᎴ ᏕᎦᎶᏐᎲᏍᎬ ᎨᏍᏗ ᎧᏂᎩᏓ ᏱᎨᏎ ᏧᎵᎢ. ᎠᏴᏰᏃ ᎤᏙᎯᏳᎯ ᎠᎩᎪᏁᎳ ᏥᏰᎸ ᎨᏒᎢ, ᏥᎦᏔᏩᏕᎦᏍᎩᏂ ᎠᏆᏓᏅᏙᎩᎯ, ᎦᏳᎳ ᏥᏥᎦᏔᏩᏕᎪ ᎾᏍᎩᏯᎢ ᏕᏥᏳᎪᏓᏁᎸ ᎾᏍᎩ ᎯᎠ ᎢᏳᏛᏁᎸᎯ, ᎤᏍᏗ ᎠᏣᏗ, ᎭᏓᏬᏣ. ᎤᏍᏆᏂᎩᏗ ᏏᏆ.” “ᏰᎵ ᎤᏓᏂᎳ ᏌᎳᏓ. ᎦᏲᏟ ᎠᏍᎦᎢᎮ ᎤᏍᏗ ᎠᏣᏗ, ᎠᏎᏃ ᎾᎥᏂ ᏭᎷᏤ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥ ᏱᎩ ᎠᏣᏗ ᏂᎯ ᎢᏳᏍᏗ. ᎠᎴ ᏯᏃᎩᏳ ᎤᏲ ᏂᎦᏥᏴᏁᎲ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎨᏌᏗᏒᎢ,ᎠᎴ ᎤᏂᏐᏢᎢᏍᏙᏗᏱ ᏂᎦᏥᏴᏁᎲᎩ; ᎤᏣᏔᏅᎯᏃ ᎦᏥᏂᏆᏘᎲ ᎾᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏲ ᏂᎦᏥᏴᏁᎲ ᏅᏩᏓᎴ ᏙᏗᎦᏚᎲ ᏫᎦᏥᎨᎰᎢᎲᎩ. ᎤᏲᏰᏃ ᎢᏳᎾᏛᎿᏕᎩ ᏂᎪᎯᎸ ᎨᏤᎳᏗᏙᎭ, ᎠᎴ ᎢᏳᏉ ᎢᏤᎴᏍᎬᎢ ᎣᏍᏛ ᏱᏂᏕᏣᏛᏂᏏ; ᎠᏴᏍᎩᏂ ᎥᏝ ᏂᎪᎯᎸ ᏱᏨᏰᎳᏗᏙᎭ. ᎢᏳ ᎠᎴ ᏚᏳᎪᏕᏍᏗ ᎾᏍᏉ ᎠᏴ ᎠᏇᏅᏍᏗᏱ, ᎾᏍᎩ ᏓᏲᏤᏅᏍᏔᏂ. ᎣᎭᏁ, ᎠᏫ, ᎦᎾᏌ ᏃᎴ ᎠᏫ ᎢᏳᏍᏗ ᏛᎠᏂᎷᏥ ᏃᎴ ᎡᏘᏴ ᏄᎾᏛᏁᎵᏙᎸ ᏛᎤᏂᎷᏤᎵ. ᎢᏨᏔᏲᏎᎭ ᏂᎯ ᏗᏦᎯᏳᏗᏱ ᎾᏍᎩ ᎢᏳᎾᏍᏗ, ᎠᎴ ᎾᏂᎥ ᎢᏧᎳᎭ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎠᎾᎵᏂᎬᏁᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏤᏣᏓᏂᎸᎩ ᎤᎬᏫᏳᎯ ᏗᎧᎿᏩᏕᎩ ᎨᏒ ᎢᏳᏍᏗ ᎤᏣᏘ ᎣᏏᏳ ᎠᏰᎸᏗ ᎢᏨᏓ; ᎠᎴ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏕᏥᎸᏉᏕᏍᏗ; ᏴᏫ ᏂᏂᏫ ᏣᏁᎲᎩ ᏙᏛᎾᎴᏂ ᏓᎬᏩᎾᏡᏔᏂ ᎪᎯ ᏣᏁᎭ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏒᎢ, ᎠᎴ ᎤᏂᏍᎦᏅᏨ ᎬᏂᎨᏒ ᎤᏛᏅᏁᎵ; ᎾᏍᎩᏰᏃ ᏚᎾᏓᏅᏃ ᏚᎾᏓᏅᏛ ᏚᏂᏁᏟᏴᏒᎩ ᏦᎾ ᎠᎵᏥᏙᎲᏍᎬ ᏄᏩᏂᏌᏅᎩ, ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎨᏉ ᏦᎾ. ”ᎲᎦ ᎢᏯᏂ?” ᎤᏛᏛᏁ ᎡᎶᏗ. ᎠᏁᎷᏁᏃ ᏌᏉ ᎢᎦᎦᏛ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎷᎦ ᎯᎠ ᎠᏍᎦᏯ, ᏆᎳᏆᏃ ᏗᏍᎩᏲᎯᏏ. ᏃᏗ ᏧᏁᎸᏗ ᏕᎦᏅᏙᎬᎢ ᏗᎬᏗ ᎤᎴᏅᎮ ᏓᎦᎵᏍᎬ ᏓᏏᎳᏛᎢ, ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏚᏂᏴᏙᏛ ᎧᏅᏑᎸᎢ. ᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎤᏛᏛᏅᎩ ᏥᏌ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᎴ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬ ᎤᎬᏩᎵ. ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᏓᏓᏂᎸᎨᏍᏗ ᏥᏅᏏᏛ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎩᎶᏃ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎤᏛᎩᏅᏏᏛ ᏓᏓᏂᎸᎨᏍᏗ. ᏆᎴᏗᏱ ᎤᏪᏅᏎᎢ, ᏥᏌ ᎠᏰᎸᎢ ᏭᏔᏲᎴᎢ, ᎿᏉᏃ ᏆᎴᏗ ᎤᏁᏤ ᎠᏰᎸᎢ ᏧᏂᏲᎯᏎᏗᏱ. ᎢᏗᎦᏔᎭᏰᏃ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏓᏅᏙ ᎤᏠᏱ ᎨᏒᎢ; ᎠᏴᏍᎩᏂ ᎤᏇᏓᎵ ᎠᏆᏘᏂ-ᏙᎯ, ᎥᎩᎾᏗᏅᏛ ᎠᏍᎦᏂ ᎠᎩᎾᏢᏗᏱ. ᏫᏤᎾᏉ ᏚᏬᏎᎸ ᏁᏂᏏ ᎠᏂᏍᎦᏯ, ᏣᎵ, ᎶᏩᏂ, ᏣᏥ ᏃᎴ ᏤᎩ. ᎾᏍᎩ ᎯᎠ ᏣᎾᏕᎦᏪᏎᎮᎢ, ᎨᎾ, ᎤᏍᏗ ᎠᎨᏳᏣ, ᎨᎾ ᏣᎵᏏ ᏩᏣᏔᏬᎢᏏ ᏍᏔᏰᎬᎢ. Ꮽ-ᏣᎢᏒᏃ, ᏚᏠᏎ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎦᏚᎲ ᏅᏓᏳᏄᎪᏨᎯ, ᎪᎯᏗᏳ ᎠᏂᏍᎩᎾ ᎬᏩᏯᎢ ᏂᎨᏎᎢ, ᎠᎴ ᎥᏝ ᏱᏓᏄᏬᏍᎨᎢ, ᎥᏝ ᎠᎴ, ᎠᏓᏁᎸ ᏯᏕᎲᏍᎨᎢ, ᏓᏤᎵᏍᏛᏉᏍᎩᏂ. ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᎤᏙᏢᏁ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏁᏉᎢᏍᏗᏱ. ᎠᏎᏃ ᎾᎿ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏁᏉᏥᏕᎬ ᎾᎿ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏟᎯᏳ ᎤᏁᏉᏥᏕᎬᎩ; ᎧᏅᏩᏅ ᏏᏆ ᎭᏫᏯ, ᎪᎢ, ᎠᎹ ᎠᏑᏱ ᎪᏒᏅ, ᎤᏁᎦ ᏎᎷ ᎢᏣ, ᎤᏂᎧᎭᏲᏓ ᏚᏯ, ᏁᏩᏓ, ᎤᏂᎧᏲᎭᏓ ᏒᎧᏔ ᏃᎴ ᏆᎾ, ᎠᎪᏗ ᎤᎧᏔ, ᎤᎵᏏᎩ ᎧᎵᏎᏥ, ᎠᏑᏴᏗ, ᎬᏂᎨ ᎫᎵᏙᏗ, ᎠᏂᏤ ᎧᏫ ᏚᏯ ᏃᎴ ᎤᏍᏗ ᏗᏍᏙᏍᏙᏗ. ᎥᏝ ᎡᎶᎯ ᎠᏁᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎠᏴ ᎡᎶᎯ ᎨᎢ ᏂᎨᏒᎾ ᏥᎩ. ᎿᏉᏃ ᏂᎯ ᏫᏙᏓᎨᏥᏲᏏ ᎢᏥᎩᎵᏲᎢᏍᏗᏱ, ᎠᎴ ᏙᏓᎨᏥᎵ; ᎠᎴ ᏂᎦᏗᏳ ᏄᎾᏓᎴᏒ ᏴᏫ ᎨᏥᏍᎦᎨᏍᏗ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᏂᎯ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎭᏢ ᏣᏓᏨᏯᏍᏗᎨᏒᎢ? ᏂᎯ ᏗᏓᏂᏐᏗᏱ ᎨᏒᎢ, ᎭᏢ ᏣᏓᏎᎪᎩᏍᏗ ᎨᏒᎢ? ᎯᎠᏰᏃ ᎠᏲᎩ ᎨᏒ ᎠᏲᎩ ᏂᎨᏒᎾ ᏛᏄᏬᏍᏔᏂ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎠᏲᎱᏍᏗ ᎨᏒ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᏛᏄᏬᏍᏔᏂ. ᎤᏂᏣᏘᏃ ᎤᏂᎪᎲ ᏄᏛᏁᎸ ᏉᎳ ᎤᏂᏌᎳᏓᏁ ᎠᏂᏁᎬᎢ, ᎵᎨᎣᏂᏯ ᎠᏁᎯ ᎤᏂᏬᏂᎯᏍᏗ ᎤᏅᏔᏁ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎸᎳᏗ ᎠᏁᎯ ᎠᎾᏠᎠᏏᎦ ᏴᏫ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᎢᏳᎾᏍᏗ. ᎠᏆᏛᎦᏅ Canada. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏕᎩᎪᏩᏗᎭ ᎤᏂᏣᏘ ᎨᏣᏁᏄᎳᏍᏗᏍᎬ, ᏥᎪᏃ ᎦᎪ ᎠᏆᏒᏂᎦ ᎢᎭᏗᎭ? ᎠᏎᏃ ᎨᏍᏗ ᎯᎸᎯᏳ ᎠᏆᏛᎦᏅ ᏱᎩ ᎩᎶ ᎤᎵᏬᏨ ᎤᏓᏅᏙᎩ ᎤᏲᏤᎸ ᎠᏯ ᎤᏰᎸᏗ. ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏁᎳᏗᏍᏗᏱ ᏗᏥᎾᏫᏱ ᎪᎯᏳᏗ ᎬᏙᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏂᎯ ᎠᏓᎨᏳᏗ ᎨᏒ ᏗᏣᎵᎾᏍᏕᏝᏗᏍᏔᏅᎯ ᎠᎴ ᏗᏣᎵᏍᏓᏱᏗᏍᏔᏅᎯ ᎨᏒᎢ, ᎤᏂᏣᏘᏃ ᏚᏂᏁᏤᎸᎩ ᎡᎳᏪᏱ ᎤᏅᏗᏱ. ᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᏍᎩᏂᏙᎵᎩ, ᏣᎬᏫᏳᎯ ᏕᏫ ᎤᏪᏥ. ᎤᏪᏴ ᎾᎥ ᏥᏍᏚ ᎠᎴ ᏌᎶᎵ ᏓᎾᏟᏃᎮᏍᎬ. ᏂᎦᏛᏃ ᎤᎾᏛᎦᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᏱᎩ ᏥᏓᎩᎵᏲᎢᏍᏙᏗᏍᎬ ᏥᎷᏏᎵᎻ ᎯᎠ ᏕᏅᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎩ? ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂ ᎤᎷᏨᎩ, ᎾᏍᎩ ᏧᎸᏍᏗ ᏫᏚᏘᏃᎮᏗᏱ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ. ᎠᎴ [ᏥᎾᏰᏍᎦ.] ᏔᎵᏁ ᏫᏥᎷᏨᎭ, ᎠᏆᏁᎳᏅᎯ ᎠᏆᏕᎰᎯᏍᏙᏗᏱ ᎢᏥᎦᏔᎲᎢ, ᎠᎴ ᎦᏥᏍᎪᏂᏍᏗᏱ ᎤᏂᏣᏘ ᎦᏳᎳ ᎤᏂᏍᎦᏅᏨᎯ ᏥᎩ, ᎠᎴ ᎤᏲ ᏄᏂᏰᎸᏅᎾ ᏥᎩ ᎦᏓᎭ ᏄᎾᏛᏁᎸᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏚᎾᏂᏏᏅᎢ, ᎠᎴ ᎤᎾᎵᏐᏢᎢᏍᏔᏅᎢ. ᎠᎪᏙᏗ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎠᎨᏴ ᏧᎩᏎ ᎠᎴ ᏧᏑᏴᏁ ᏦᎢ ᎢᏳᏠᎶᏛ ᎢᏒ ᎦᎸᎢ, ᎬᏂ ᏂᎦᏛ ᎤᏬᏘᏐᏅ. ᏣᏄᏏ ᎤᏅᏕ ᏫᎵᎻ, ᎩᏟ ᏭᏂᏴᎮ. ᎤᏂᏍᏆᏛᏃ ᎢᎪᎯᏛ ᏚᎵᏒᏍᏛᎢ, ᎥᎤᎾᏨᏏᏗᏒ ᎠᏲᎵ ᏥᏌ ᏥᎷᏏᎵᎻ ᏗᎤᏗᎩᏰᎢ, ᏦᏩᏃ ᎠᎴ ᎤᏥ ᎥᏝ ᏱᏁᎵᏍᎨᎢ. ᎢᎦ ᎢᏴ ᎤᏲᎯᏍᏔᏅ, ᎤᏍᏘ ᎤᏬᏔᏅ ᏃᏥ ᏧᏍᏙᏰᏛ ᏃᎴ ᎠᏓᏯ ᎠᏓ ᏚᏮᏔᏅ. ᎾᎯᏳᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎤᏂᏣᏘ; ᏥᎪ ᎦᏃᏍᎩᏍᎩ ᏥᏥᏲᎰ ᎾᏍᎩᏯ ᎢᏥᎷᎩ ᏍᎩᏂᏴᎯᎦ, ᎠᏰᎳᏍᏗᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏗᏥᏁᎯ? ᏂᏚᎩᏨᏂᏒ ᎢᏧᎳᎭ ᎢᏗᏅᎩ ᏕᎦᏕᏲᎲᏍᎬᎩ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎥᏝᏃ ᏱᏍᎩᏂᏱᏍᎨᎢ. ᎠᏂᏩᏥᏂ ᏛᎾᏈᏴ ᎤᏂᏲᎰᏎᎸ ᏭᏕᎵᎬ ᏩᏂᎷᏨ. ᏧᏳᎪᏘ ᎨᏒ ᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ ᏕᎨᏥᎴ ᎣᎬᏌ ᎣᎦᏤᎵᎪ. ᏥᎷᏏᎵᎻᏃ ᎡᏙᎲ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎢᏳ ᎨᏒᎢ, ᎤᏂᏣᏛᎩ ᎤᏃᎯᏳᏅ ᏚᏙᎥᎢ, ᎤᏂᎪᎲ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎢ. ᎠᏎᏃ ᎪᎯ ᎨᏒ ᏂᎯ ᎾᏍᏉ ᎯᎠ ᏂᎦᏛ ᎢᏴᏛ ᏂᏕᏨᏁᎭ; ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎧᎾᎸᎢᏍᏗ ᎨᏒᎢ, ᎠᏓᏂᏆᏗᏍᏗ ᎨᏒᎢ, ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ, ᎤᏁᎢᎸᏗ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏗᏥᎰᎵ ᏅᏓᏳᏄᎪᏨᎯ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎴᎢ, ᏫᏚᏂᏁᎴ ᏗᎨᎦᏁᎶᏗ ᏆᏂᏆ ᎠᎴ ᏐᎳ ᏚᎾᎨᏅᏕᎢ. ᏂᎯᏃ ᎨᏆᏂ ᎦᎸᎳᏗ ᎢᏴᏛ ᏤᏣᏌᎳᏓ, ᏨᏍᎩᏃᎢ ᏴᏓᏰᎶᎥᏔᏂ; ᎢᏳᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸ ᏂᎯ ᎢᏤᎲ ᏱᏙᎦᎸᏫᏍᏓᏁᎴ ᏐᏓᎻᏱ, ᎠᏏ ᎪᎯ ᎨᏒ ᏱᏂᎬᏩᏍᏕᏉ. ᏎᎦ ᎤᎦᏘᏛ ᎠᏓᏅᏖᎵᏙ, ᎤᎦᏙᏍᏛ ᏧᎦᏒᏍᏗ ᏓᎴᎲᏍᎬ ᎦᏅᏃᏩ. ᏚᎴᏅ ᏣᎵ, ᎠᏓ ᏗᏍᏆᎸᎦᏒ ᎢᏳᏍᏗ ᏚᏃᏴᎵᏒ ᏗᎦᏁᎨᏂ. “ᎠᎾᏔᏍᎩ ᏗᏗᏧᎬ ᏫᎶᎯ, ᎦᏙ ᎭᏍᎪᎳ! III. ᎤᏓᎵᏗᎩᎡᎸ ᎤᏙᎯᏳᎯᏯ ᏥᏁᎦ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ, ᎥᏝ ᏱᎦᏥᎪᎥᏍᎦ, ᎠᏆᏓᏅᏛ ᎾᏍᏉ ᎠᏉᎯᏳᏓᏁᎯ ᏂᎦᎵᏍᏗᎭ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ, ᏧᎦᏴᎵᎨᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎠᏎᏃ ᏚᏁᏤᎴ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ Ꮔ-ᎵᏍᏔᏅᎢ. ᎠᏂᏐ ᎨᏥᎾᏌᎢ ᏚᎾᎧᎾᏁᎢ. ᎠᏂᎦᏔᎾᎢ ᎠᎾᏤᎸᏍᎬᎢ, ᎤᏂᏁᎫ ᏄᎾᎵᏍᏔᏁᎢ; ᎠᏏᏉᏃ ᎤᏂᎯᏍᏗᏱ ᎠᎾᏓᏅᏖᏍᎬᎩ, ᏑᎾᏓᏡᎩ ᎨᏒ ᎠᏂᏯᏫᏍᏗ ᏗᏘᏂᏙᎯ ᎤᏛᎦᏅᎩ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᎾᎵᏖᎸᎲᏍᎬᎢ; ᎾᏍᎩᏯᏉ. ᎠᎴ ᎤᏚᎵᏍᎨ ᎠᎨᎳᏍᏙᏗᏱ ᎤᏅᎪᎣᏒᎯ ᎤᏪᎿᎢ ᎤᏪᏍᎩᎸᎢ; ᎠᎴ ᎾᏍᏉ ᎩᎵ ᎤᏂᎷᏤ ᏚᏂᎦᎾᏕ ᏚᏂᎦᎾᏕ ᏚᏥᏓᎸᎢ. ᎦᎪᏃ ᏂᎯ ᏥᏂᏣᏛᏅ ᎤᏓᏑᏯ ᎤᏪᎵᎯᏍᎬᏉ ᏰᎵ ᏌᏉ ᎢᏳᏟᎶᏛ ᏱᎧᏁᏉᏣ ᎬᏅᎢ? ᎾᏍᎩᏃ ᏫᏚᏯᏅᎲ, ᎯᎠ ᏂᏚᏪᏎᎴ ᏚᏟᎶᏍᏓᏁᎴᎢ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏎᏓᏂ ᏱᎦᏄᎪᏩ ᏎᏓᏂ? ᏥᏌᏃ ᎤᏩᏛᎦ ᎠᎩᎾ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ, ᎤᎩᎸᏅᎩ, ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅᏥᎪᏪᎳ; ᎠᏁᎷᎩᏍᎪ ᎠᎨ ᎢᏳᏓᏅᎯᏓ ᏃᏊᎴ ᏗᎠᏨᏍᎪ ᏃᏊᎴ ᎢᎠᏁᎷᎩᏍᎪ ᎤᏠᏱᏊ ᏳᏚᎵᎭ ᎩᎶ ᎤᏍᏓᏩᏛᏍᏗᎢ. ᎠᎼ ᎠᏁᎰ. ᎠᎨᏰᏃ ᎤᏙᎴᎰᏒ ᏄᏗᏍᎦᎸᎾ ᎨᏒᎢ, ᎤᎷᏤ ᎤᏪᎾᏫᏍᎨᎢ, ᎠᎴ ᎢᎬᏱᏢ ᎤᏓᏅᏁᎴᎢ, ᏂᎦᏛᏃ ᏴᏫ ᎠᏂᎦᏔᎲ ᎤᏃᏁᎴ ᎤᏧᎵᏍᏙᏔᏅ ᎤᏒᏂᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎩᎳᏉ ᎢᏴᏛ ᎤᏗᏩᏒᎢ. ᎢᏥᎪᎵᏰᏍᎨᏍᏗ ᎾᏍᎩ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᎤᎬᏫᏳᎯ. ᎢᏳᏍᎩᏃᏂ ᎾᏍᎩ ᎤᏤᎵ ᏱᏓᎩᎸᏫᏍᏓᏁᎭ, ᎾᏍᏉ ᎠᏴ ᏂᏍᎩᏲᎢᏳᎲᏍᎬᎾ ᏱᎩ, ᎠᏎ ᎢᏦᎯᏳᎲᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏰᎵ ᎨᏣᏙᎴᎰᎯᏍᏗ ᎠᎴ ᎨᏦᎯᏳᏗ ᏱᎩ ᎠᎦᏴᎵᎨᎢ, ᎠᎩᏯᎥᎢ ᎠᎴ ᎾᏍᎩ ᎠᏴᏥᏯᎥᎢ ᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ ᎠᏓᎵᏅᏟ, ᏂᎦᎥ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏂᎦᎥ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏂᎦᎥ ᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏏᏳ ᎬᏰᎸᏗ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏏᏳ ᎠᏂᏃᎮᏍᎨᏍᏗ; ᎢᏳᏃ ᎣᏏᏳ ᎢᏯᏛᏁᏗ ᏰᎭ, ᎢᏳᏃ ᎪᎱᏍᏗ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏕᏣᏓᏅᏖᏍᎨᏍᏗ. ᏞᏍᏗ ᏱᏥᎵᏓᏍᏔᏁᏍᏗ; ᎥᏝ ᎦᏰᏥᎶᏄᎡᏗ ᏱᎩ ᎤᏁᎳᏅᎯ; ᏄᏍᏛᏰᏃ ᎩᎶ ᎠᏫᏍᎬᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎦᏟᏏᏍᎨᏍᏗ. ᎪᎯᏳᏗᏰᏃ ᎨᏒ ᎣᏨᏗᎭ ᎣᏤᏙᎲᎢ, ᎥᏝᏃ ᎠᎪᏩᏛᏗ ᎨᏒᎢ. ᎬᏂᎨᏒᎢᏳᏰᏃ ᏂᎦᎵᏍᏗᎭ ᎾᏍᎩ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏧᏓ ᎠᏂᎳᏍᏓᎸ ᏧᏓᎴᏅᎲᎢ; ᎾᏍᎩ ᎠᏂᎳᏍᏓᎸ ᎼᏏ ᎥᏝ ᏱᏚᏁᎢᏍᏔᏁ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎨᏒ ᎤᎬᏩᎵ. ᎦᎷᏯᏍᏗ ᎦᏅᏬᎢ ᏭᏒᎭᏂᎸ ᏣᎵ, ᎤᏏᏅᏒ. ᎤᏰᏤ ᏦᎢ-ᏅᎩᏁ ᎦᏃᎯᎵᏓᏍᏗ ᏅᏙ, ᎤᏯᏛᎮ ᎤᏔᎷᎩᏍᎩ ᎦᏄᎸ, ᏕᎨᏴ ᏚᏅᏓᏒ ᏫᏗᎦᎶᏍᎩ, ᏌᎪᏂᎨ ᎠᏨᏍᏛ ᏚᏓᏴᎳᏖ. ᏚᏏᏔᏛᏃ ᎾᎿ ᎤᏓᏅᏒᎩ. ᎩᎦᎨ ᏧᏍᎪᎸ ᏧᏂᏥᎸᏍᎩ ᎤᏄᏝᎡᎢ ᎢᏈᎬᎢ. ᏙᎩᎾᏙᎨᎲ, ᎣᏍᏓ ᏙᎩᎾᎴᏅ, ᎦᎶᎯᏍᏗ ᎾᎥᏂ ᏫᏙᎩᎾᎴᏅ. ᎠᏆᏙᎴᎰᏒᏃ ᎾᏍᎩ ᏧᏂᎧᎿᏩᏛᏍᏗᏉ ᎧᏃᎮᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎫᎢᏍᏗᏍᎬᎢ ᎬᏩᏲᎱᎯᏍᏗᏃ ᎠᎴ ᎦᏰᎦᎸᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎾᎫᎢᏍᏛᎾ ᎨᏒᎢ. ᎠᏂᏧᏏᏃ ᎤᏂᏄᎪᏨ ᏗᎦᎳᏫᎢᏍᏗ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᏲᎴ ᎾᏍᎩ ᎯᎠ ᎨᏥᏃᎮᎮᏗᏱ ᏔᎵᏁ ᎤᎾᏙᏓᏆᏍᎬᎢ. ᎤᏔᏂᏗᎨ ᎢᏳᏅᏁᎸ ᏓᏥᎶᏍᏛ ᎣᎯᏍᏙᏗ ᏗᏣᎪᏩᏛᏗ ᎤᏳᎦ ᏗᏂᏱᏙᎢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᏉᎳ ᎡᏗᏂᏱ ᎤᏓᏅᏒᎩ ᎪᎵᏂᏗᏱ ᏭᎷᏨᎩ. ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᏓᎾᎵᏍᏕᏓᎵᏴᏍᎨᎢ. ᎠᏆᏁᎳᏅᎯ ᏥᏯᎵᎡᎵᏤᎰ ᎢᏳᏍᏗᎭ ᎢᏨᏯᏅᏓᏗᎬᎢ, ᎤᏓᏅᏖᎸᏃ ᏭᎷᏤ ᏗᎦᏁᎸ ᎺᎵ, ᏣᏂ ᎹᎦ ᏧᏙᎢᏛ ᎤᏥ, ᎾᎿ ᎤᏂᏣᏖ ᏓᏂᎳᏫᎡ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᎢ. ᎠᏎᏃ ᎡᎳᏪᏉ ᎤᏩᏎᎢ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏳᏛᏁ ᏨᏁᏤᎢ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏔᎵᏁ ᎤᏛᏛᏁ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯᏍᎪ ᎦᎶᏁᏛ, ᎠᏥᎸᏉᏗ ᎤᏪᏥ? ᎠᎴ ᎦᏙᏃ ᎢᎯᎪᏩᏘᏍᎪ ᎤᏢᏓᎸᏛ ᎤᎦᏑᎲᎢ ᏗᏍᏓᏓᏅᏟ, ᏁᎵᏍᎬᎾᏃ ᎢᎨᏐ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ. ᎤᏍᏚᏁᏃ ᎪᏪᎵ ᎠᎴ ᏫᎤᏅᏁᎴ ᎠᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᏪᏁᎢ. ᏂᎦᏛᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏯᎢ ᎤᏯᏅᏒᎯ ᏕᎬᏩᎧᎿᏁᎢ. ᎴᎣᏗᏏᏰᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ ᎡᎺᏅ ᏥᏚᏙᎥ, ᎾᏍᎩ Ꮎ ᏄᏓᎵᏓᏍᏛᎾ ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎧᏃᎮᏍᎩ ᏥᎩ, ᏗᏓᎴᏅᏗᏍᎩ ᎤᏬᏢᏅᏅ ᎤᏁᎳᏅᎯ. “ᏁᎵᎾ? ᎤᏛᏁ. ᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎷᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᎪᎱᏍᏗ ᏗᎦᏓᏛᏙᏗ ᏱᎩ ᏂᎯ, ᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᏥᎪ ᎠᏂ ᏣᎷᏥᎸ ᏍᎩᏂᎩᎵᏲᎢᏍᏙᏗᏱᏉ ᎠᏏᏉ ᎾᏍᏆᎵᏍᎬᎾ? ᎯᎠᏃ ᎾᎩᏪᏒᎩ, ᎦᏙ ᏓᎦᏛᏁᎵ, ᏣᎬᏫᏳᎯ? ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏔᎴᎲᎦ, ᏕᎹᏍᎦ ᎮᎾ, ᎾᎿᏃ ᏓᏰᏣᏆᏁᎵ ᏂᎦᎥ ᏚᏚᎪᏔᏅ ᎢᏣᏛᏁᏗᏱ. “ᎤᏰᎸᏛᏃ ᏥᏍᎦᏃᎸᏍᎦ, ᎦᏕᎶᎣᏍᎦ ᏂᏥᎦᏴᎸ. ᏔᎵ ᏧᏙᏓᏆᏓ ᎫᏩᏂᎩᏛ. ᏎᎦᏨ ᎦᎷᎨ ᏲᎾ ᎤᏤᏍᏙ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᎠᎴ ᎬᏩᏎᎪᎩᏍᏔᏅᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎩᎬ, ᎠᎴ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᎤᏃᎯᏳᏒᎢ, ᎾᏍᎩ ᏓᏅᏅ ᏂᏚᏂᎸᏉᏛᎾ ᎨᏒᎢ. ᎠᎴ ᏛᎡᏙᎵ ᏧᎶᏄᎮᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᎩ ᏅᎩ ᏂᏚᏓᎠᏗᏒ ᏓᏁᏩᏗᏒᎢ ᎡᎶᎯ ᏣᏁᎭ ᎾᏍᎩ ᎪᎦ ᎠᎴ ᎺᎪᎦ, ᎾᏍᎩ ᏧᏪᏟᏐᏗᏱ ᏧᎾᎵᏍᏗᏱ; ᎾᏂᎥᏃ ᏃᏳ ᎠᎺᏉᎯ ᎠᎲ ᎾᏂᎥ. ᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᏛᎦᎾ ᎠᎾᏓᎪᎾᏗᏍᎬ ᎤᏂᎬᏫᏳᎯ, ᎬᎩᏁᏥᏏ ᏔᎵᏍᎪᎯᏍᎩ ᎠᏕᎸ ᏦᏥᏁᏗ ᎰᎻ ᎠᎪᏕᏍᎩ, ᎤᎾᎵᎪᎯ ᎤᏍᏆᏓ ᎠᏯᏨᏗ ᏗᎪᏪᎵ, ᎢᏨᏯᎵᎮᎵᏤᎭ ᏄᏍᏛ ᏄᏛᏁᎸ ᏏᏆ---ᎯᎠ ᎤᏔᎷᎩᏍᎩ, ᎯᎠ ᎤᏣᏔ ᎣᏍᏓ, ᎯᎠ ᏳᏨᏉᏛᎾ-“ᏄᏂᏣᏛ ᏚᏘᏃᎸ ᎠᏂᎦᏖᏃᎵᏙᎯ ᎭᏂ ᏍᎦᏚᎩ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.” “ᎭᏂᏉ ᎨᏙᎮᏍᏗ,” ᎤᎵᏍᎦᏎᏔᏁᎢ ᏥᏍᏕᏥ. “ᎦᏲᏟ ᎤᏬᏨᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏥᏔᏲᎭ ᎢᏣᏓᏙᎵᏍᏓ, ᎢᏦᎯᏳᎲᏍᎨᏍᏗ ᎡᏥᏁᎢ ᎨᏒᎢ, ᎠᎴ ᎠᏎ ᎢᏥᎮᏍᏗ. ᎠᏎᏃ ᎥᏝ ᏰᏥᎦᏔᎭ, ᎠᏴᏍᎩᏂ ᏥᎦᏔᎭ; ᎢᏳᏃ ᎥᏝ ᏱᏥᎦᏔᎭ ᏱᏚᏗᎭ ᏥᏰᎪᎩᏉ ᏱᎩ, ᏂᎯ ᏥᏂᏣᏍᏗ ᎾᏍᎩᏯᎢ; ᎠᏎᏃ ᏥᎦᏔᎭ, ᎠᎴ ᎤᏁᏨ ᎠᎩᏍᏆᏂᎪᏗ. ᏂᎦᏓ ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎨᏯ ᎤᏐᏱ ᎤᎾᏅᏕ ᎧᏃᎮᏗ. ᏗᎾᏙᏱᏁ ᎠᎾᎵᏍᎩᏍᏔᏁᎩ ᏐᏈᎵ ᏗᏥᎶᏍᏔᏅ ᏗᎩᎸᏙᏗ ᎠᎾᏕᏲ ᎢᏣ ᏃᎴ ᎧᏃᎩᏍᏗ ᏧᏃᏴᎬ ᎢᏣ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᏗᎾᏛᏁᎵᏍᎬ ᎢᏣ, ᎧᏂᎩᏓ ᏧᏂᎦᏴᎵ ᎫᏩᎾᎦᏎᏍᏙᏗ ᏱᎨᏒᎾ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᎢᏳᏍᏗᏉ ᎢᏳᎾᏛᏁᏗ ᎠᏁᎵᏍᎬᎢ. ᎾᏍᎩᏰᏃ ᏚᏙᎥ ᏅᏧᎵᏍᏙᏔᏅ ᎠᏁᏙᎭ ᎪᎱᏍᏗ ᏂᏓᏂᏂᏟᏍᎬᎾ ᏧᎾᏓᎴᏅᏛ ᏴᏫ. ᎢᏣᏉᏗ, ᎡᎵᏍᏗ. ᎨᏍᏗ ᏳᎾᏟᎸ. ᎢᏳᏃ ᎠᏋᏒ ᏱᎦᏓᏃᎮᎭ, ᏥᏃᎮᏍᎬ ᎥᏝ ᏱᎬᏙᎯᏳᎭ. ᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎠᏂᎦᏔᎮᎢ ᎣᏍᏓ ᏴᏫ ᎨᏒᎢ, ᎡᏝᏪᎯ ᎨᏎᎢ ᏃᎴ ᎤᏓᏅᏘ. ᎠᏉᏰᏅ ᎦᎵ ᏏᎦᏫ ᏓᎩᏓᏍᎩᏌᏅ ᏃᎴ ᎠᏥᏍᏛ ᏫᏍᎩ ᎠᎩᎳᎩᏒ ᎠᎩᏇᏅᏛ, ᏣᎵ ᎤᏬᏛ ᎠᏇᏅᏒ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏚᎵᏍᎪᎸᏓᏁᎴᎢ. ᏗᎦᏓᎭᏃ ᏗᏓᏅᏙ ᎤᏂᏄᎪᏨ, ᏏᏆ ᏫᏚᏂᏴᏎᎴᎢ; ᏑᎾᏓᏡᎩᏃ ᎤᎾᏁᎷᎩᏎ ᎤᏂᎦᏐᎠᏎ ᎦᏁᏡᎩ ᎨᏒ ᎥᏓᎵ ᏭᎾᎵᏔᏗᏅᏎᎢ, (ᏔᎵ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡᎢ,) ᎠᎴ ᎥᏓᎵ ᏚᏂᎬᏤᎢ. ᎡᎶᏓᏂ ᎪᎱᏍᏗ ᎠᏋᏅ ᎡᏥᏲᎵᎸᎭ. ᎾᏏᏌ ᏚᏓᏘᎾᎥ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎠᏃᎯᏳᎲᏍᎩ ᎨᏒ ᏕᏥᏲᎵᎸᎭ. ᎠᎴ ᏛᏂᏩᏛᎯ ᎨᎦᎫᏴᏓᏁᏗ ᏂᏚᏳᎪᏛᎾ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩᏯ [ᎨᎦᎫᏴᏓᏁᏗ ᏥᎩ] ᎣᏏᏳ ᎤᏥᏰᎸᎯ ᎢᎦ ᎨᏒ ᎣᏍᏛ ᏧᎾᎵᏍᏓᏴᏗᏱ. ᏥᏚᏓᏓᎶᎢ ᎠᎴ ᎪᎱᏍᏗ ᏧᏍᏙᎢ ᎾᏍᎩᏯᎢ, ᎣᏏᏳ ᎤᏂᏰᎸᎭ ᎤᏅᏒ ᎠᎾᏓᎵᏓᏍᏗᏍᎬᎢ, ᎾᎯᏳ ᎢᏧᎳᎭ ᎢᏣᎵᏍᏓᏴᎲᏍᎬᎢ. ᎠᏓᏁᎸᏃ ᎤᏴᎸ, ᎥᏝ ᎩᎶ ᏳᎵᏍᎪᎸᏓᏁᎴ ᎤᏴᏍᏗᏱ, ᏈᏓ ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ ᎤᏅᏒ, ᎠᎴ ᎠᎨᏳᏣ ᎤᏙᏓ ᎠᎴ ᎤᏥ. “ᎧᎪᏃ ᎤᏚᎵ ᎢᎪᎯᏓ ᎤᏕᏘ?” ᎤᎵᏍᎦᏎᏔᏁ ᏥᏍᏕᏥ. “ᎭᏩ, ᎨᏍᏗᏗ ᎦᏣᏬᏂᎯᏍᏗ ᏱᎩ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᎴ ᎥᏝ ᎿᏉ ᎤᏁᎳᎩ ᎪᎱᏍᏗ ᏫᏓᏛᏂᏏ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᏰᏤᎵᏎᎰᎢ; ᏗᏂᏲᏟ ᏧᏂᏥ ᏑᏥᎶᏓ ᎢᎬᎾᏕᎾ ᎤᎾᏓᏅᏖᏗᏍᎨ ᏍᎩᎾᎾ ᎠᎵᏖᎸᏂᏍᏗ. ᎤᎯᏐᏗ ᏄᏪᏒ, ᎡᎶ ᎣᏍᏓ ᎢᎦᎬᏁᏗ ᏱᎨᏒᎾ ᏣᎵᏛᏗᏍᎪ. ᎠᏂᎸᏉᏗᏍᎨ ᎤᏂᎳᏅᎯ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᎬᏫᏂᎨᏳᎯᏳ ᎨᏎᎢ. ᎤᎬᏫᏳᎯᏃ ᏂᏚᎩᏨᏂᏒ ᎤᎾᎵᎪᏒ ᏕᎠᎵᎪᏗᏍᎨ ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗ ᎨᏒᎢ. ᏂᎯ ᎾᏍᏉ ᏗᏨᏃᏛ ᏅᏯ ᎡᏣᏁᏍᎨᎲᎯ ᎠᏓᏅᏙ ᎠᏓᏁᎸ ᎢᏰᏨᏁᎸᎯ, ᎡᏥᎸᏉᏔᏅᎯ ᎠᏥᎸᎢᏤᎶᎯ, ᎡᏣᎵᏍᎪᎸᏓᏁᏗᏱ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᏰᎵᏉ ᏗᎬᎠᏓᏂᎸᎢᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ. ᏐᏉ ᎠᎪᏪᎵ ᎠᏫᎾ, Irishman, ᏄᏪᏒ, ᏱᏚᏓᎴᏨᎾ ᏱᎨᏎ ᏚᏂᏁᎦᎸ, ᎾᎥᏂᎨ ᏗᎧᏃᏗ ᎠᎦᏴᎵᎨ ᎤᏩᏌ ᎤᎵᏏ, ᎤᎵᏍᏆᎸᏗ ᎤᎪᎲ. ᏓᎻ ᎤᏁᏨᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎠᎴ ᏣᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ! ᏂᎯᏰᏃ ᎦᎸᏉᏗᏳ ᎢᏍᎩᏴᏁᎯ ᎠᎴ ᏍᎩᏯᎵᎮᎵᏍᏗᏍᎩ. ᎾᏍᎩ ᎠᏫᏍᎩ ᎧᏃᎮᏛ ᎠᏫᏍᎪᎢ. ᎾᏍᎩ ᎾᏍᏉ ᏨᏓᏣᏂᎪᎯᏍᏔᏂ ᎤᎵᏍᏆᏗᏍᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎾᏍᎩ ᎦᏰᏧᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ. ᏂᎯᏍᎩᏂ ᏞᏍᏗ ᏔᏕᏲᎲᏍᎩ, ᏰᏦᏎᎮᏍᏗ; ᎠᏏᏴᏫᏰᏃ ᏗᏤᏲᎲᏍᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ; ᏂᎦᏛᏃ ᏂᎯ ᎢᏣᎵᏅᏟᏉ. ”ᎦᏕᎶᎣᏍᎦᏗ ᎤᏛᏁ ᏫᎵᎻ. ᎤᎵᏍᏓᏴᏅᎢ ᏕᏅᎴᏅᎩ ᎠᎴ ᎤᏄᏪᏒᎩ, ᎠᎴ ᎤᏁᏒᎩ ᎠᏄᏬ-ᏗᏑᎴᏗ, ᎤᏓᏠᏍᏔᏅᎩ; ᎯᎠ ᏂᎨᏥᏪᏎᎸᎩ, ᏞᏍᏗ ᎪᎱᏍᏗ ᎢᏨᏁᎸᎩ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᏕᏡᎬᎢ, ᎬᏂ ᏗᏗᏰᎸᏔᏅᎯ ᎨᏎᏍᏗ ᏗᏂᎬᏓᎨᏂ ᎢᎦᏁᎳᏅᎯ ᏧᏤᎵ ᏧᏅᏏᏓᏍᏗ. ᎠᏂᎪᏕᏍᎩ ᎢᎪᎯᏓ ᏓᏂᏍᎦᎨᎢ, ᏃᎴ ᏓᏳᏂᏴᏍᏗ ᏱᎨᏒᎾ ᏓᏂᏏᎳᏛᎥᏍᎨ. ᏥᏌᏃ ᎠᎢᏒ ᎨᎵᎵ ᎥᏓᎷᎶᏗ ᏚᎪᎮ ᎠᏂᏔᎵ ᎠᎾᎵᏅᏟ, ᏌᏩᏂ ᏈᏓ ᏣᏃᏎᎰᎢ ᎤᏅᏟᏃ ᎡᏂᏗ, ᎥᏓᎵ ᎠᏂᎦᏯᎷᎥᏍᎨᎢ-ᎠᏂᎦᏯᎷᎥᏍᎩᏰᏃ ᎨᏎᎢ. ᏐᏉ ᎢᏳᏩᎬᏘ ᏚᏂᏯᎬ ᏥᏍᏆ ᎧᏃᏍᎦ ᎦᏚᎢᏣ ᏧᏂᏒᎾᏔᏅ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᎭᎵᎮᎵᎩ ᏔᎷᎸᎥᏍᎩ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏂᏔᏓᎾᏄᎪᏫᏍᎬᎾ; ᎭᎴᏅ ᎮᎷᎲᎦ, ᏂᎯ ᏂᏘᎾᏄᎪᏫᏍᎬᎾ; ᎾᏰᏃ, ᎾᏥᏰᎲᎾ ᎤᏟ ᎾᏂᎥ ᏚᏪᎧᎭ ᏧᏪᏥ ᎡᏍᎦᏉ Ꮎ ᎠᏥᏰᎯ. ᏂᎯᏍᎩᏂ ᎥᏝ ᏰᏥᎦᏌᏯᏍᏔᏅ ᎤᏲ ᎢᏳᏛᎲᏕᎩ. ᏝᏍᎪ ᏧᏁᎿᎢ ᎤᏲ ᏱᏂᎨᏨᎿᏕᎪᎢ, ᎠᎴ ᏱᏗᎨᏣᏘᏃᎯᎰ ᏗᎫᎪᏙᏗᏱ? ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎠᏁᎳᏅᎯ ᎨᏒ ᎠᎬᏍᎦᎳᏁᎸᎯ ᏱᎩ; ᏂᎦᏗᏳᏉᏍᎩᏂ ᎤᏰᎸᎭᎢ, ᎠᎴ ᏧᏞᏛ ᎾᏍᎩ ᏙᏗᎧᏅ ᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᎢᏰᏛᏁᏗ ᏥᎩ ᏂᎦᏛᏁᎸᎢ. ᎯᏍᎩ ᏍᎪᎯ ᎠᏂᏎᏂᏏ ᏃᎴ ᏅᎩ ᎯᏍᎩ ᎠᏂᏎᏂᏏ ᏚᏁᎴ ᎡᎳᏆᏗ. ᎠᎴ ᎼᏏ ᎢᎾᏛ ᏧᏌᎳᏓᏁ ᎢᎾᎨᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᏓᏰᏥᏌᎳᏗᏂ, ᎢᏨᏲᏎᎭᏰᏃ, ᎯᎠ ᎾᏍᎩ ᏥᎪᏪᎳ ᎠᏎ ᎠᏏ ᏛᏙᎯᏳᏂ ᎠᏴ ᏅᏓᎬᏂᏌᏂ; ᎠᎴ ᎠᏂᏍᎦᎾ ᎨᎦᏎᎸᎢ ᎾᏍᎩ ᎠᎦᏠᏯᏍᏔᏅᎩ; ᎠᏴᏰᏃ ᎠᎩᏃᎮᏍᎬ ᎠᏎ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏔᏂ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ; ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᎦᏁᎳ, ᎤᏒᎢ, ᎠᎴ ᏒᏃᏱ ᎠᏰᎵ, ᎠᎴ ᏣᏔᎦ ᎠᏂᏴᎬᎢ, ᎠᎴ ᏑᎾᎴᎢ; ᏃᏗ ᎩᎳ ᏫᎦᏟᎮ ᏫᎵᎻ, ᎱᏛᎦᏁ ᎡᏝᏪᎯ ᎤᏟᏃᎮᏛ, ᎤᏐᏱ ᏧᏟᏃᎮᏗᏍᎨ ᎤᎩᏨᏓ ᎤᏒᎯ. ᏚᏣᏯᎩᏎ ᏃᎴ ᎤᎵᏣᎬᏔᏁᎢ ᏫᎵᎻ ᏃᎴ ᎤᎵᏰᏔᏁᎢ. ”Ꭳ, ᎣᏏᏉᏗ ᎠᏟᏰᎵ,” ᎤᏛᏁ. ᎠᏎᏃ ᎾᎯᏳ ᎢᎦ ᎨᏒ ᎠᎴ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ, Ꮭ ᎾᏍᏉ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᎠᏁᎯ, ᎡᏙᏓᏍᎩᏂ ᎤᏩᏒᎯᏳ. ᎤᏍᎦᎣᏅ ᎤᏓᎦᏙᏍᏕ ᏫᎵᎻ. Ꭷ, ᎼᏏ ᎣᎩᏁᏨᎸᎩ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏅᏯ ᏗᎨᎬᏂᏍᏙᏗᏱ; ᎠᏎᏃ ᏂᎯ ᎦᏙ ᎭᏗᎭ? ᏆᎴᏗᏃ ᎤᏍᏆᏏᎪᏎ ᎤᏜᏏᏛᎡᎮ ᎾᏞᎬ ᎤᏲᎱᏒᎢ; ᏭᏯᏅᎲᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᎤᏛᏛᏁ, ᏰᎵᏍᎪ ᎪᎯᎩ ᎬᏩᏲᎱᏒᎯ, ᎤᏛᏁᎢ. ”ᏙᎢᏳᏍᏗ ᏓᏓᎪᏪᎳᏂ? ᎤᏛᏛᏁ ᏣᏄᏏ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏓᏰᏥᎩᏒᎵ, ᏅᏩᎾᏓᎴᏃ ᏓᎨᏥᏁᎵ, ᎾᏍᎩ ᏰᎵ ᎬᏩᏂᎾᏄᎪᏫᏍᏗ ᎤᏓᏔᏅᎯ. ᎾᏍᎩ ᏧᏪᎫᏔᏅᏒ ᎥᏝ ᎬᏂᎨᏒ ᎢᎨᎬᏁᎸᎯ ᏱᎨᏎ ᏴᏫ ᏧᏁᏥ, ᎾᏍᎩᏯ ᎪᎯ ᎬᏂᎨᏒ ᏥᏂᎨᎬᏁᎭ ᏧᏤᎵ ᎨᏥᎸᏉᏗ ᎨᏥᏅᏏᏛ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎠᏓᏅᏙ ᎬᏗ; “ᎤᏙᎯᏳᎭᏍᎪ ᏥᏂᏪᎠ?” ᎤᏛᏁ- ᎨᎵᏍᎬ ᏯᎵᎮᎵᎦ.” ᎾᏍᎩ ᎣᏏᏳ ᎤᏰᎸᏗ ᏥᎩ ᎾᏂᎥ ᏴᏫ ᎨᏥᏍᏕᎸᏗᏱ, ᎠᎴ ᎤᏂᎷᎯᏍᏗᏱ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏚᏳᎪᏛ ᎨᏒᎢ. ᎠᎩᏫᏯ ᎠᎩᏍᎩ, ᎠᎴ ᎠᎩᎩᎬ ᎠᏗᏔᏍᎩ, ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏙᏓᏥᏯᎴᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ. ᎠᎴ ᎠᏂ ᏔᎵᏁ ᎯᎠ ᏂᎦᏪᎭ, ᎥᏝ ᏴᎬᏂᏴᎭ ᎠᏆᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ. ᎦᏙᎨ ᎤᎬᏫᏳᎭ? ᎤᏟᏍᎪ ᏂᏙᎯ? ᎥᏝ ᎤᏍᏗᎩᏛ ᎤᏅ; ᎦᏳᎳᏰᏃ ᏕᎫᎪᏔᏅ ᎾᏍᎩ ᎢᏧᎳ ᎠᏂᏧᏏ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᏂᎦᏗᏳ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᎾᏓᏄᏴᏛᎢ. ᏔᎵᎭ ᎢᏳᎾᏙᏓᏆᏍᏗ ᏥᏓᎠᏂᎷᏥᏐ ᎦᏰᎵᏍᏗ. ᏗᏂᏆᎵ ᏫᏓᎴᏐᏍᎬ ᏗᏂᏅᏍᎨᏂ ᎢᏣ ᎾᏍᎩᏯ ᏗᏟ ᎦᏃᎯᎢᏙ ᏗᎦᏅᏍᎨᏂ. ᎨᏍᏗ ᎠᏂᏬᏂᏍᎩ ᏱᎩ ᎧᏅᏂᏍᎩ. ᎠᏎᏃ ᎤᎦᏛᎴᏎ ᎠᏰᎵ ᎠᏂᏙᎾᎥ ᎢᎬᏪᏅᏍᏔᏁᏉ; ᎠᏎᏃ ᏂᎯ ᎯᎠ ᏂᏥᏪᏍᎪᎢ; ᎢᏳᏃ ᎩᎶ ᎯᎠ ᏂᎦᏪᏎᎮᏍᏗ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, ᎠᏆᎵᏍᎪᎸᏔᏅᎲ ᏰᎵ ᎨᏣᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ ᏂᏣᏛᏁᎲ, ᏗᎾᏓᏂᏱᏍᎩ ᎤᏂᏁᏨ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝ ᎢᎸᎯᏳ ᎩᎶ ᏱᎬᏩᏬᏂᏐ ᎾᏍᎩᏯ ᎯᎠ ᏂᎦᏪᏍᎬ ᎦᏬᏂᏍᎬᎢ. “ᎩᏙᏓ, ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎠᏌᏆᎴᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎾᏍᎩᏰᏃ Ꮎ ᎤᏴᎸᎯ ᏥᎨᏐ ᎤᏣᏪᏐᎸᏍᏙᏗᏱ, ᎾᏍᏉ ᎤᏲᎯᏍᏔᏅᎯ ᎨᏐ ᏚᎸᏫᏍᏓᏁᎲ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏄᏛᏁᎸ ᎤᏲᎯᏍᏔᏅᎢ. ᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᏥᎷᏏᎵᎻ ᎤᏂᎩᏎ ᏤᎵᎪ ᎤᏪᏅᏎᎢ, ᏗᎾᏓᎾᏌᎲᏍᎩᏃ ᏚᎾᏓᏩᏛᏔᏁᎢ, ᎾᏍᎩ ᏕᎬᏩᏄᏪᏎ ᏚᏄᏩᎥᎢ, ᎠᎴ ᎬᏩᎵᎥᏂᎴᎢ, ᎠᎴ ᎤᎾᏓᏅᏎ ᎬᏩᏕᏤ ᎠᏰᎵ ᎢᏴᏛ ᎤᏲᎱᏒᎯ ᎨᏎᎢ. ᎠᎺᏉᎯᏃ ᎤᎶᏗ ᏃᏳᎯ ᎨᏒ ᎥᏉᎴᏔᏅᎩ, ᎠᎴ ᏅᎩ ᏗᎦᏅᏌᏗ ᏥᎪᎥᎩ ᎠᎺᏉᎯ ᏓᏳᏚᎩᏒᎩ, ᎦᎵᏉᎩ, ᏓᏍᎫᏓᏛᎩ ᎠᎴ ᎠᏍᎪᎯ ᏚᎷᎬᎩ, ᏚᎷᎬᏃ ᎠᏍᎪᎯ ᏚᎵᏍᏚᎸᎩ, ᏓᏍᎫᏓᏛᏃ ᎤᏁᎳᏅᎯ ᏚᏙᎥ ᎠᎺᏢᎢᏍᏙᏗ ᎨᏒ ᎪᏪᎸᎩ. ᎤᏏᏩ ᏂᏕᎦᎵᏍᏗᏍᎬ ᏓᏓᏁᎸ, ᏩᏂᏴᎯᎮ ᎤᏂᏃᏴᎵᏓ, ᎠᏂᏗᏍᎩᏏᏍᎨ ᎦᎾᏌᎢ ᏃᎴ ᎤᏂᎯᏴᏓ. ᎢᎪᎯᏓ ᎠᏅᏓᏗᏍᏗ ᎯᎪ ᎤᏒᎯ, ᎬᏅᎢ ᎢᎪᎯᏓ ᏥᏍᏕᏥ.” ᎡᎶᏛᏰᏃ ᎤᎸᏉᏗᏳ ᎨᏎ ᏣᏂ, ᎠᎦᏔᎮᏰᏃ ᎤᏓᏅᏘᏳ ᎠᎴ ᎾᏍᎦᏅᎾ ᎨᏒ ᎠᏍᎦᏯ, ᎠᎴ ᎤᎦᏌᏯᏍᏗᏳ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎤᏛᎦᏅ [ᎠᏓᏥᏙᎲᏍᎬ,] ᎤᏣᏖ ᏚᎸᏫᏍᏓᏁᎴᎢ, ᎠᎴ ᎤᎵᎮᎵᏨᎯ ᎠᏛᏓᏍᏓᏁᎮᎢ. ᎨᎵᏍᎬᏃ ᏯᏇᏅᏎᏉ ᏩᏏᏓᏂ, ᏗᏆᎵ ᏥᎬᎩᏍᏕᎸᎮ ᎠᎩᏩᏛᏗ ᏗᎩᎷᏫᏍᏔᏁᏗ. ᎾᎯᏳᏉᏃ ᎤᎴᏅᎲᎩ ᎤᏲᎸ ᎢᏳᏛᏁᏗᏱ ᎤᎶᏄᎮᏗᏱ. ᎠᏎᏃ ᎠᏂᏧᏏ ᏕᏏᎶᏂᎦ ᎠᏁᎯ, ᎤᎾᏛᎦᏅ ᏉᎳ ᎾᏍᏉ ᏈᎵᏯ ᎠᎵᏥᏙᎲᏍᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎧᏃᎮᏛ, ᎾᎿ ᎾᏍᏉ ᏭᏂᎷᏨᎩ, ᏴᏫ ᏚᏂᏖᎸᏅᎩ. ᎾᏍᎩᏃ ᎾᏥᏪᏎᎸ ᎠᏥᏁᏤᎸ, ᏫᏚᏔᏅᎩ ᏗᏓᏍᏚᏗᏱ ᎪᏢᏒ ᎦᎵᏦᎦ ᎭᏫᏂ, ᎠᎴ ᎠᏍᏓᏯ ᏚᏅᏎᏙᏅ ᎠᏙᎯ. “ᎮᎵᏍᎨᎢᎨ ᎪᎨᏱ ᏥᏔᎦ ᎨᏒ ᎠᏯ?” ᏩᏐᎾ ᎤᏰᏓᏬᏨᎯ ᎥᏝ ᏧᏍᏆᎵᏍᏗ ᏱᎨᏎᏍᏗ, ᎠᎴ ᏙᎴᏛ ᏧᎦᏒᏍᏗ ᎥᏝ ᎤᏩᏜᏗᏍᏗ ᏱᎨᏎᏍᏗ, ᎬᏂ ᎠᏓᎵᏁᎯᏙᏅᎭ ᏚᏳᎪᏛ ᎨᏒ ᏓᏰᎵᎯᏍᏗᏍᎬᎢ. ᎨᏍᏗ ᎭᏂᏉ ᎬᏯᏓᏍᏗ ᏱᎩ ᏃᎴ ᏱᏥᎾᏬᎩ. ᎾᏍᎩ ᏞᎩᏉ ᏤᏥᏖᎸᎾᏗᏱ ᏂᎨᏒᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᏣᏕᏯᏔᏁᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᏉ ᎠᏓᏅᏙ ᎬᏗ, ᎠᎴ ᎦᏬᏂᏒᎯ, ᎠᎴ ᎪᏪᎵ ᎪᏪᎳᏅᎯ ᎬᏗ ᎠᏴ ᎣᎦᏓᏅᏏᏛ ᏥᎨᏐ ᎢᏳᏍᏗ; ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎤᏍᏆᎸᎯᏕᏅ ᏥᎨᏐ ᎾᏍᎩᏯᎢ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎢᏤᎾ ᏗᎦᏚᎲᎢ, ᎾᎿ ᏤᎲ ᎠᏍᎦᏯ, ᎯᎠᏃ ᎾᏥᏪᏎᎸᎭ; ᏗᏕᏲᎲᏍᎩ ᎯᎠ ᏂᎦᏪᎭ; ᎿᏉ ᎠᎩᏍᏆᎸᎡᎵᏗ, ᎬᎩᏍᏓᏩᏗᏙᎯ ᎯᏁᎸ ᏓᏲᏥᏍᏆᏂᎪᏔᏂ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ. ᎡᏃᏱᏃ ᎠᏰᎵ ᏉᎳ ᎠᎴ ᏌᏱᎳ ᎤᎾᏓᏙᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏂᏃᎩᏍᏔᏁᎢ; ᏗᎨᏥᏍᏚᎯᏃ ᎾᏍᎩ ᎤᎾᏛᎦᏁᎢ. ᏞᏍᏗ ᎠᎴ ᎤᏕᎵᏛ ᏱᏗᏓᏂᏏᎲᏍᎨᏍᏗ ᎾᏍᎩᏯ ᎢᎦᏛ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎢ, ᎠᎴ ᏏᎦᏉ ᏦᎢᏦᏁ ᎢᏯᎦᏴᎵ ᏥᏚᏂᏲᏎᎢ. ᎬᏩᏛᏓᏍᏓᏁᎲᎩᏃ ᎬᏂ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒ, ᎿᏉᏃ ᎤᏂᏌᎳᏓᏅᎩ ᎠᏂᏁᎬ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎡᎶᎯ ᏩᎦᏘᎿᏫᏛ ᎾᏍᎩᏉ ᎢᏳᏍᏗ ᏴᏫ; ᎥᏝᏰᏃ ᏰᎵ ᎬᏁᏍᏗ ᎦᏰᎵᏍᏗ ᏱᎩ. ᎠᎵᏍᏕᎸᏙᏗᏃ ᎠᎵᏍᏚᎶ ᎢᏥᎾᎩ, ᎠᎴ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎠᏓᏅᏙ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏥᎩ; ᎾᏍᎩᏯ ᎾᏍᏉ ᏅᏓᏨᏴᏁᎵ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ, ᎢᏳᏃ ᏗᏣᏓᏅᏛ ᎢᏴᏛ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᏂᏗᏥᏙᎵᎬᎾ ᎢᎨᏎᏍᏗ ᎢᏣᏓᏅᏟ ᎤᏂᏍᎦᏅᏨᎢ. ᎤᏂᏣᏘᏃ ᏕᎤᏅᏩᏁ ᏧᏂᏢᎩ ᏧᏓᎴᏅᏛ ᎥᏳᎩ ᎤᏁᎯ; ᎠᎴ ᎤᏂᏣᏘ ᎠᏂᏍᎩᎾ ᏚᏄᎪᏫᏎᎢ; ᎠᎴ ᎥᏝ ᏩᏂᏁᎩ ᏱᏕᎵᏎᎮ ᎠᏂᏍᎩᎾ, ᎤᏗᎦᎵᏍᏙᏗᏍᎨ ᎬᏬᎵᎬᎢ. ᎾᏍᎩᏃ ᎠᏴ ᎣᎩᏅᏏᏛ ᎦᎶᏁᏛ ᎣᏣᏓᏁᏟᏴᏍᏔᏁᎸᎯ; ᎾᏍᎩᏯᏉ ᎤᏁᎳᏅᎯ ᏥᏥᏍᏗᏰᏗᏍᎪ ᎠᏴ ᏦᎬᏗᏍᎪᎢ, ᎦᎶᏁᏛ ᎣᏣᏓᏁᏟᏴᏍᏓᏁᎭ, ᎢᏨᏔᏲᏎᎭ ᎤᏁᎳᏅᎯ ᏙᎯ ᎢᏨᏁᏗᏱ. ᏅᏙ ᎠᎧᎸᎬ ᏓᎶᏂᎨ ᏫᏚᎸᏌᏛ ᎤᎭᎨᏛ ᎤᎧᎭᏛ ᎠᎼ ᎦᏚᎢᏣ, ᏎᎦᏨ ᏫᏥᎪᏩᏘᏍᎬ ᎢᏤᎯ ᎢᎾᎨ ᎣᏥᎶᏍᎬ. ᏒᎦᏔ ᏃᎴ ᏒᎩ ᎠᎦᎷᏴᏓ ᏓᎩᏝᏅ ᎭᏫᏂ ᏥᏍᏆ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᎠᎦᎷᏴ ᏫᏓᎩᎸᏅ ᎤᏂᏁᎦᎸ ᎭᏫᏂᏨ ᏃᎴ ᏗᏂᏁᏥ. “ᏗᏂᏲᏟᎵ” ᎤᎵᏍᎦᏎᏔᏁᎢ ᏌᏌ. ᎠᏎᏃ ᎤᏓᏅᏖᏗᏍᎨ ᎠᏎ ᎤᏛᏛᏗ ᎨᏎᎢ. ᎿᏉᏃ ᏅᏯ ᏚᏂᎩᏒᎩ, ᏗᎬᏩᏂᏍᏙᏗ, ᎠᏎᏃ ᏥᏌ ᎤᏗᏍᎦᎳᏅᎩ, ᎠᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏄᎪᏨᎩ, ᎠᏰᎵ ᎠᏂᏙᎾᎥ ᎤᎦᏛᎴᏒᏍᏔᏅᎩ, ᎠᎴ ᎤᎶᏐᏅᎩ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎤᏛᎾ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏱᏣᏣᏪᏐᎸᏍᏔᎾᏉ - “ᎨᏍᏗ ᎩᎶ ᏔᎷᎩᏍᎩ ᎤᏍᏆᏓ ᏱᏓᏣᏓᏁᎵ,” ᏌᏩᏂ ᏈᏓ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎦᏯᎷᏂ. ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᏉ ᏓᏕᏏ. ᎤᏁᏅᏒᎩ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏳᎯ ᎤᎾᏣᏅᎩ; ᎾᎯᏳᏃ ᏒᏃᏱ ᎥᏝ ᎪᎱᏍᏗ ᏳᏂᏂᏴᎮᎢ. ᎤᏔᏲᎴᏃ ᏗᎪᏪᎶᏗᏱ ᎠᎴ ᎤᏬᏪᎳᏁ ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏣᏂ ᏚᏙᎥ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ. ᎡᎵᏍᎨ ᏧᏳᎪᏘ ᏂᎦᏪᏍᎨ ᏁᏂᏏ, ᎠᎾᏓᎭᏲᎯ ᏃᎴ ᎠᏂᏲᏍᎩ ᏱᏕᎬᏂᎷᎦ ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ, ᎠᏎᏃ ᎧᎪ ᏯᎦᏔᎭ? “ᏣᎨ ᏯᏕᎶᎰᏍᎦ ᏂᎦᏗ ᏙᎩᎷᏫᏍᏔᏁᎲ? ᎪᎯᏳᎲᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎤᏪᎭ ᎪᎯᏳᏗᏍᎩ; ᎤᏁᎳᏅᎯ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏰᎪᏅ, ᏅᏗᎦᎵ ᏍᏙᏗᎭ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏃᎮᎸᎢ ᎤᏪᏥ ᎤᏁᎢᏍᏔᏅᎢ. ᎡᏝᏪᎢᏊᏃ ᏓᏆᎧᎿᏅ ᏞᎦ. ᏈᎵᏕᎵᏈᏃ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎠᏍᎦᎾ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎦᏰᎪᎩ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎠᏍᏚᎢᏍᏗ ᏕᏫ ᎤᏤᎵᎦ ᎦᏁᎯ, ᎾᏍᎩ ᎠᏍᏚᎢᏍᎩ ᏥᎩ, ᎩᎶᏃ ᎠᏍᏚᎲᏍᎩ ᏂᎨᏒᎾ ᏥᎩ; ᎠᎴ ᎠᏍᏚᎲᏍᎩ, ᎩᎶᏃ ᎠᏍᏚᎢᏍᎩ ᏂᎨᏒᎾ ᏥᎩ. ᎤᎵᏍᏆᎵᏓ ᏥᎨᏐ ᎪᏯᏛᎢ ᏄᎵᏍᏔᏁᎮ. ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏴ ᎥᎩᏁᎸᎢ, ᎾᏍᎩᏯ ᎠᏏᎾᏌᏂ ᏄᎬᏫᏳᏒ ᏗᏁᏍᎨᏍᏗ ᎢᏳᏛᏁᏗ ᎾᏆᏛᏁᎸ ᎦᎫᏍᏛᏗ ᎠᎩᏅ, ᏅᏩᏓᎴᏃ ᎾᎿ ᎤᏁᏍᎨᎲ. ᎠᏎᏃ ᎾᏂᎥ ᎩᎶ ᎠᏁᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎠᎾᏁᏍᎨᏍᎬ ᎾᎿᏂ. ᎤᏐᏅ ᏂᏨᏁᎮᏍᏗ ᎩᎶ ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ ᎤᏐᏅ ᏱᏁᏨᏁᎮᏍᏗ. ᎢᎬᏱ ᏂᏣᏓᏅᏖᏍᎨᏍᏗ ᎣᏍᏛ ᎢᏣᏛᏁᎵᏓᏍᏗ ᎨᏒ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ. ᎢᏳᏃ ᎿᏉ ᎠᏍᎦᏯ ᎦᏁᎳ ᏓᎴᏅᎭ ᎠᎴ ᎠᏍᏚᏅᎭ ᎦᎶᎯᏍᏗᏱ, ᏂᎯᏃ ᎢᏣᎴᏅᎲ ᏙᏱᏗᏢ ᎢᏥᏙᎾᎥᎢ, ᎠᎴ ᎢᏨᏂᎮᏍᏗ ᎦᎶᎯᏍᏗᏱ ᎯᎠ ᏂᏤᏪᏍᎨᏍᏗ, ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎡᏍᎩᏍᏚᎢᏏ; ᎠᎴ ᏗᎧᏁᏨ ᎯᎠ ᏅᏗᏥᏪᏎᎸᎭ, ᎥᏝ ᏱᏥᎦᏔᎭ ᏗᏣᏓᎴᏅᎢ; ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏫᏄᏣ ᏳᏘᎦ ᏧᏙᎢᏛ ᎠᏦᎳᏅ ᎤᏪᎸᎩ, ᎠᏍᏓᏯ ᎦᎵᎲᎩ; ᏉᎳᏃ ᎪᎯᏗᏳ ᎠᎵᏥᏙᎲᏍᎬ ᎢᏳᏍᏗ, ᎦᎵᎲ ᎤᏪᏇᏴᏒᎩ ᎠᎴ ᏦᎢᏁ ᏗᏲᏓᏞᎲ ᏓᏳᏙᎣᏒᎩ, ᎠᎴ ᎠᏥᏁᏒᎩ ᎤᏲᎱᏒᎯ ᎨᏒᎩ. ᎾᏍᎩ Ꮎ ᎠᎾᎵᎮᎵᎩ ᎢᏧᎳᎭ ᎢᏣᎵᎮᎵᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏗᎾᏠᏱᎯ ᎢᏧᎳᎭ ᏕᏣᏠᏱᎮᏍᏗ. ᏦᎩᎦᏴᎵᎨ ᎠᎾᏓᏙᎵᏍᏗᏍᎬᎩ ᎠᏂ ᎣᏓᎸᎢ, ᎠᏎᏃ ᏂᎯ ᎯᎠ ᏂᏥᏪᏍᎪᎢ; ᏥᎷᏏᎵᎻᏍᎩᏂ ᎾᎿ ᎤᎬᏫᏳᎭ ᎠᏓᏙᎵᏍᏙᏗᏱ. ᎤᏲᏍᏛᏉ ᎾᏆᏍᏗ ᎠᏴ! ᎦᎪ ᏛᏇᏓᎴᏏ ᎯᎠ ᎾᏍᎩ ᏥᏰᎸ ᎠᏓᎯᎯ ᎠᏆᏚᏓᎸᏛᎢ. ᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ. ᏑᎾᏙᏓᏆᏍᏗ ᎾᏋᏁᎰᏁᏍᏗ, ᎤᏛᏅ ᏗᎵᏍᏇᏔᏬ ᏗᎪᏒᏍᎩ. ᏩᎾᎢᏒᏃ ᏐᎢ ᎠᏒᏛᏗ ᎤᏩᏛᎮ ᏙᏯ. ᏌᏉᎯᏳᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᏥᏕᎫᏓᎴᏍᏗᎭ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ, ᎠᎴ ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᎪᎯᏳᏗ ᎨᏒ ᏥᏕᎫᏓᎴᏍᏗᎭ. ᎬᏂᏳᏉ ᏓᎦᎷᏥ ᎤᎶᎩᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏓᎬᏩᎪᎯ ᎠᎴ ᎾᏍᏉ ᏗᎬᏪᏘᎸᎯ; ᏂᎦᏗᏳᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎡᎶᎯ ᎠᏁᎯ ᏙᏛᎾᏠᏱᎵ ᎾᏍᎩ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎰᏩᏉ. ᎡᎺᏅ. ᎾᏍᎩ ᎾᎿ ᏣᎮ ᎪᎱᏍᏗ ᎬᏙᏗ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎦᏩᏒᎩ ᎠᏥᎸᎨᎳᏍᏗ ᎦᎶᏗ, ᎠᎴ ᎾᎿ ᏥᏥᏰ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎫᏢᏔᏃᏅᎯ ᏥᎨᏎᎢ, ᎾᎿᏂ ᏥᎦᎴ ᎠᏕᎸᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏖᎵᏙ ᎹᎾ ᏥᎦᎶᏕᎢ, ᎠᎴ ᎡᎳᏂ ᎤᏙᎳᏅᏍᏙᏗ ᏣᏥᎸᏍᎨᎢ, ᎠᎴ ᏅᏯ ᏗᏯᏖᏅ ᎾᎿ ᏥᎪᏪᎴ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ. ᎢᎦ ᏒᎮᏱᏣ ᎯᏍᎩᏃᎯᏎᎸ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎡᏚᏥ ᎰᎻ ᎤᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᎾᏍᎩᏃ ᎡᎶᏗᏏ ᎤᏪᏥ ᎠᏛ ᎤᏴᎵᎸ, ᎠᎴ ᎤᎵᏍᎩᏒ, ᎠᎴ ᎡᎶᏛ ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᎠᏂᏂᏜᎢ ᎣᏏᏳ ᎤᏂᏰᎸᏅ, ᎤᎬᏫᏳᎯ ᎯᎠ ᏄᏪᏎᎴ ᎠᏛ, ᏍᎩᏔᏲᏏ ᎢᏳᏍᏗᏉ ᎮᎵᏍᎬᎢ, ᏓᎬᏁᎵᏃ. ᎿᏉᏃ ᎦᎬᏩᏂᏐᏢᏔᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏂᎯ ᎾᏍᎩ ᎯᏍᏓᏩᏗᏙᎯ, ᎠᏴᏍᎩᏂ ᎼᏏ ᎣᏥᏍᏓᏩᏗᏙᎯ. ᏞᏍᏗ ᏂᏗᏣᏙᎵᎬᎾ ᎢᏧᎳᎭ ᏱᏕᏥᎩᎳᎾᎳᏗᏍᎨᏍᏗ ᎾᏃᎯᏳᎲᏍᎬᎾ; ᎦᏙᏰᏃ ᎤᏍᏗ ᏚᎾᏚᏓᏛ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎨᏒᎢ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᏌᏉ ᏄᏅᏅ ᎢᎦ-ᎦᏘ ᎠᎴ ᎤᎵᏏᎩ? ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᏛᎦᏅᎯ, ᏄᏛᏁᎸᎾᏃ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏓᏤᎸ ᏂᏚᎫᏍᏓᎥᎾ ᎦᏙᎯᏉ ᎠᏓᏁᎸ ᏧᏁᏍᎨᎮᎢ; ᎡᏉᏂᏃ ᎾᎿ ᎤᎵᏂᎩᏗᏳ ᎡᏂᎵᎯᎮᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏪᏇᏴᏎᎢ; ᎤᏍᎦᏎᏗᏳᏃ ᏄᎵᏍᏔᏁ ᎤᏲᏨ ᎾᏍᎩ ᎠᏓᏁᎸᎢ. ᎤᎵᏂᎩᏛᏰᏃ ᎤᏚᎩ ᎤᏩᏒ ᎠᎦᏁᎳᏅᎯ ᎨᏒ ᎠᎦᏘᏯ ᎨᏥᎾᏄᎪᏫᏒ ᎤᏁᎳᏅᎯ ᏧᏪᏥ. ᎠᏎᏃ ᏴᏫ ᎤᏂᎵᏅᏨ, ᎤᏍᎦᏯ ᎤᎷᏤ ᎤᏲ ᎤᎦᏔ ᎤᏫᏎ ᎤᏣᎴᏍᏗ ᎠᏫᏒ ᎤᏑᏴᏁᎢ; ᎠᎴ ᎢᎤᏪᏅᏎ. ᎠᎴ ᏓᏥᎦᏙᎥᏏ ᏚᏳᎪᏛᎢ, ᏚᏳᎪᏛᏃ ᏂᏕᏥᎾᏝᎥᎾ ᏅᏓᏨᏁᎵ. ᎠᎴ ᏥᎷᏏᎵᎻ ᎤᏘᏃᎴᎢ, ᎠᎴ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏍᎪᎵ ᎤᎩᎸᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᏨᏒ ᎭᏓᎶᎥᏓ ᎠᏂ; ”ᎨᎾ ᏩᎶᏏ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ. ᎤᏓᏅᏖᎴ ᎤᎧᏛᏅᏍᏗ. ᎢᏧᎳ ᏗᎪᏍᏔᏱ, ᏰᎵᏉ ᎧᏃᎨᏂ ᎤᏍᏙᏴᏗ, ᎠᏎᏃ ᏧᏬᏰᏂ ᏱᏓᏲᏍᏔ ᏣᏉ ᏧᏔᏂᏓᏍᏗ. “ᏣᏛᎦᏍᏕᏍᏗᏛ ! ᎩᎶᏰᏃ ᎠᏆᏕᎰᏍᎨᏍᏗ ᎠᏴ ᎠᎴ ᎠᎩᏁᏨᎢ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎤᏕᎰᎯᏍᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎦᎷᏨᎭ ᎤᏄᏬᏍᏕᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏩᏒ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏙᏓ ᎤᏤᎵᎦ, ᎠᎴ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᎾᏤᎵᎦ. ᏧᏁᎳᏃ ᎢᏴᏛ ᏫᏄᏒᎸ ᎾᏍᎩ ᎯᎠ ᏄᏪᏐᎢ, ᎯᎠ Ꮔ-ᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏈᏓ ᎠᎴ ᏣᏂ ᎠᎴ ᏥᎻ ᏚᏘᏅᏎ ᎠᎴ ᎤᎿᎷᏎ ᎣᏓᎸ ᎤᏓᏙᎵᏍᏔᏅᏎᎢ. ᏴᏫᏰᏃ ᎤᏔᎳᏬᏍᎬᎢ ᎥᏝ ᏱᎦᎾᏄᎪᏫᏍᎪ ᏚᏳᎪᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎠᎴ ᎣᏦᎯᏳᎲᏍᎦ, ᎠᎴ ᎣᏥᎦᏔᎭ ᏂᎯ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ. ᎾᏃ ᎠᏄᎦᎸᎯ ᏧᎳᎨᏯᏛᏤᎢ ᎨᏥᏛᎦ ᎾᏍᎩ ᎠᎾᏛᎬᎦ. ᎢᎸᎯᏢ ᏥᏩᏂᎶᏍᎪᎢ, ᎡᎶᎯᏃ ᎡᎯ ᎤᏪᎵᎯᏍᏗ ᎠᎴ ᎨᏅᎢᏍᏗ ᎨᏒ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎨᏒ ᎠᏂᏁᏄᎳᏍᏗᏍᎪᎢ, ᎠᎴ ᎥᏝ ᏯᏂᎾᏄᎪᏫᏍᎪ ᎤᎦᏛᎾᏨᎯ. ”ᏙᎢᏳᏍᏗ, ᏫᎵᎻ?” ᏤᏥᏲᎯᏎᎸᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎣᏍᏛ ᏄᏅᎿᏕᎬᎢ ᎠᏎᏃ ᎥᏝ ᎢᏥᏍᏆᏂᎪᏔᏅᎯ ᏱᎩ. ᎠᏎᏃ ᎾᏍᏉ ᎾᏍᎩ ᎤᏂᏃᎮᎸᎯ ᎥᏝ ᎤᏠᏱ ᏱᎨᏎᎢ. ᎠᏎᏃ ᎩᎳᏉ ᎢᏴᏛ ᏥᏌ ᏚᏁᏤᎸᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᎦᎵᏍᏗᏉ ᎢᏣᏓᏅᏓᏓ, ᎠᏴᏉᏰᏃ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ. ᎠᎦᏴᎵᎨ ᎤᎮᏳᎯᏳ ᎤᏪᏥ, ᎠᎴ ᏂᎦᏗᏳ ᎪᎱᏍᏗ ᏚᏲᎯᏎᎸ. ᏍᏈᏍᏗ ᎠᎵᏍᏓᏴᏗ ᎠᏂᏰᎮ, ᏙᎯ ᎢᏳᏅᏁ ᏃᎴ ᎤᎾᎵᏍᏓᏴᏗ. ᏃᏗ ᎦᏙ ᏩᏓᏑᏴᎥᏍᎦ. ᎠᎴ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎤᏬᎯᏳᏅᎯ; ᎾᏍᎩᏰᏃ Ꮕ-ᏧᏪᏎᎸ ᎣᎱᏩ ᎾᏍᎩ ᎠᏎ ᏅᏓᎦᎵᏍᏔᏂ. ᎪᎯᏍᎩᏂ ᎨᏒ ᎠᏍᎦᏂ ᏂᏗᏥᎾᏝᎥᎾ ᏥᎩ, ᎠᎴ ᎤᎾᎳᏅᎯ ᏗᏥᎾᏝᎢ ᏥᏄᎵᏍᏔᏅ, ᎢᏥᏁᏉᎥᎯ ᎢᏥᎭ ᏂᏥᏍᎦᏅᎾ ᎢᏨᏁᎯ, ᏩᎵᏍᏆᏗᎯᎲᏃ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ. ᏑᏓᎴᎩᏍᎩᏂᏃᏅ [ᎤᎾᏚᎵᏍᎬᎩ,] ᎾᏍᎩ ᏦᏍᏓᏅᏓᏗᏍᏗᏱ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏆᎵᎦᎵᏴᏒᎩ ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗᏱ. ᎾᏍᎩᏰᏃ ᏴᏫ ᎢᏳᏩᏂᏌᏛ ᏥᎩ ᎠᎰᎱᎯᏍᏗ ᎨᏒ ᏤᎭ, ᏴᏫ ᎾᏍᏉ ᎢᏳᏩᏂᏌᏛ ᎠᏳᎱᏒ ᏗᎴᎯᏐᏗ ᏥᎩ. ᎠᎴ ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎾᎿ ᎤᎾᏓᏡᎬ ᎤᏪᎷᏁᎢ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏍᏗᏰᏗᎭ ᏘᏯᎦᏃᏗᏱ ᎠᏇᏥ; ᎤᏩᏒᎯᏳᏰᏃ ᎠᏇᏥ ᎾᏍᎩ; ᎯᎠ ᏅᏓᏳᏪᏎᎸᎩ; ᏂᎯᏍᎪ Ꮎ ᎤᎷᎯᏍᏗ ᏥᎩ, ᏥᎪᎨ ᏅᏩᏓᎴ ᎣᏥᎦᏖᏃᎮᏍᏗ? ᎤᏟᏂᎩᏓ ᏃᎴ ᎪᎱᏍᏗ ᏯᏍᎦᎢᎲᎾ ᎨᏎ, ᏭᏳᎪᏛᎢ, ᎢᏧᎳ ᏌᏌ ᎤᏪᎵᎯᏍᏗ ᏄᎾᎵᏍᏔᏁᎮᎢ ᏄᏁᎵᏛ ᎤᏓᏅᏖᏗ ᏧᏍᏆᏴᏍᏗ. ᏑᎾᎴ ᎢᏣ ᎨᏒ ᎡᏝᏪᎯ ᎦᏟᎮ ᏧᏍᏆᏴᏍᏗ ᎧᏁᏍᎬ ᎭᏫᏂᏣ. ᏣᎵᏍᏙᏂ ᏧᏛᏒ, Fanny Kemble ᎤᏲᎯᏍᏔᎾ ᎠᎬᏱ ᎠᎨᏯ ᎠᏛᏁᎵᏍᎬ High, Low, Jack ... Game, ᏭᎴᏅᎮ, ᏂᎦᏓ ᎠᏂᏃᎮᏍᎨ. ᎦᏅᏅ ᎠᎾᎢᏒ ᎤᏅᏌ ᎠᎾᏓᏍᎦᏍᏔᏁ ᎠᏂᏍᎦᏯ, ᎪᎰᏍᏗ ᎤᏍᎦᏎᏗ ᏤᏙᎰ ᎤᎵᏏᎬ ᎢᎾᎨᎢ ᎠᏁᎵᏍᎬ. ᎠᎨᏴᏃ ᏔᎵ ᏓᏥᏕᎸᎩ ᎠᏬᏎᎵ ᎤᏔᏅ ᏗᎧᏃᎨ, ᎾᏍᎩ ᎢᎾᎨ ᏭᏃᎯᎸᏍᏙᏗᏱ ᎠᏥᏰᎸᎾᏁᎸᎩ, ᎾᎿ ᎤᏤᎵᎪᎯ ᏗᎨᏒᎢ, ᎾᎿ ᎠᎨᎳᏍᏗᏱ ᏑᏕᏘᏴᏛ, ᎠᎴ ᏔᎵ ᏧᏕᏘᏴᏛ, ᎠᎴ ᎠᏰᎵ ᎢᏳᏕᏘᏴᏛ, ᎾᏍᎩ ᎠᏥᎧᎲᏍᏗᏱ ᎢᎾᏛ ᎠᎦᏔᎲᎢ. ᎣᏏᏰᏃ ᎯᎠ ᎾᏥᏪᏎᎭ, ᏥᏯᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᏥᏯᏙᎵᎩ ᎨᎵᏍᎨᏍᏗ, ᎠᎴ ᎤᏪᏙᎵᏍᏗ ᏥᏯᏓᏅᏓᏗᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏪᏙᎵᏍᏗ ᏥᏯᏓᏅᏓᏓ ᎨᎵᏍᎨᏍᏗ. ᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏙᎴᎰᏍᎩᏍᎪ? ᎥᎥ, ᎢᏨᏲᏎᎭ. ᎠᎴ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏙᎴᎰᏍᎩ. ”ᎤᏙᏳᎯ. ᏲᏎᎢ ᏐᏉᎯᎭ ᎤᏂᏯᎩᏍᏗ ᏱᏕᏥᏲᎴ ᏥᏍᏆ, ᎠᏎᏃ ᎾᎥᏂᏉ ᏄᎵᏍᏔᏅ. ᏂᎦᏛᏃ ᎡᎳᏗ ᏙᎩᏅᏨ, ᎾᏁᎬ ᎠᏆᏛᎦᏅᎩ ᎠᎩᏁᏤᎲᎩ, ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎬᏗᏍᎬᎩ; ᎯᎠ ᏂᎦᏪᏍᎬᎩ ᏐᎳ, ᏐᎳ, ᎦᏙᏃ ᎤᏲ ᏂᏍᏋᏁᎭ? ᎤᏕᏯᏙᏗᏳ ᏗᏣᎲᏖᏍᏗᏱ ᏗᎪᏍᏓᏯ. ᎠᏴ ᏠᏗᏯ-ᎵᏏᏯ ᏫᎬᏲᎵᎦ ᎤᏣᏘ ᎰᏍᏛ ᏣᎬᏫᏳᎯ ᏈᎵᏏ. ᏄᎾᏟᏂᎬᎬ ᎤᏅᏔᏁᎢ ᎠᏂᏍᎦᏯ ᎤᏄᏔᎩᏎ ᎧᏁᏌᎢ ᏃᎴ ᏭᏂᏌᏕᎢ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᏂᎬᎾᏛᏃ ᎢᏥᏈᏱ ᎠᎴ ᎨᎾᏂ ᏚᎪᏄᎶᏎᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎩᎵᏯ ᏄᎵᏍᏔᏁᎢ, ᏗᎩᎦᏴᎵᎨᏃ ᎤᎾᏠᎨ ᎤᎾᎵᏍᏓᏴᏗ. ᏥᏌᏃ ᎠᏍᏓᏯ ᎤᏪᎷᏅ, ᎤᎵᏍᏆᏕᎴᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏘ ᎨᏒ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᏚᏂᎪᎲ ᏧᏅᎨᏫ ᎠᏂᏬᏂᏍᎪᎢ, ᎠᎴ ᎠᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᏧᏂᏲᎱᏎᎸᎯ ᎤᏂᏃᏍᏛ ᏄᎾᎵᏍᏔᏅᎢ, ᎠᎴ ᏗᏗᏲᏅᎵ, ᎬᏩᏁᏓᏍᏗ ᏄᎵᏍᏔᏅᎢ ᎠᎴ ᏗᏂᎨᏫ ᎬᏩᏂᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎢ; ᎤᏂᎸᏉᏔᏅᎩᏃ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ. ᏫᏥᎢᎦ ᎠᎵᎮᎵᎨ ᏃᎴ ᎤᏬᎯᏳᎮ. ᎢᏥᏙᏓ ᎡᏆᎭᎻ ᎠᎵᎮᎵᏍᏗ ᎤᏚᎩ ᎡᏩᏒ ᎤᎪᏩᏛᏍᏗᏱ ᎪᎯ ᎨᏒ ᎠᏴ ᎨᎥᎢ, ᎠᎴ ᎤᎪᎲᎩ ᎠᎴ ᎣᏏᏳ ᎤᏓᏅᏓᏛᎩ. ᎤᏩᏃᏪᎢ ᎤᏃᎴ ᎤᎶᏎ. ᎤᏣᏘᎾ ᏚᏏᎳᏛ ᏗᏓᎴᎲᏍᎨ ᎦᏬᏂᏍᎬ. ᏫᎵᎻ ᎤᏓᏍᏓᏩᏛᏎ. ᎠᎴ ᎠᎩᏆ ᎯᎠ ᏁᏥᏪᏎᎸᎭ, ᏣᎦᏌᏯᏍᏕᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎤᎬᏩᎵ ᏤᏣᏲᎯᏎᎸᎯ, ᎾᏍᎩ ᏣᎧᎵᎢᏍᏗᏱ. ᎠᎩᏙᏓ. ᏥᏌᏃ ᎤᏄᎪᏨᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏓᏅᏒᎩ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸ ᎬᏩᏃᏁᎸᎩ ᏂᏚᏍᏛ ᏓᏓᏁᎸ ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ. ᏅᏙᎠᏰᎵ ᏬᎩᎶᏒ, ᎭᎾ ᎣᎦᏂᎩᏛ ᏬᏙᏥᎭᏯᎸ ᏚᏗᏱ, ᎩᏟᏗᎦᏓᎥ, ᏙᏱ ᏗᏦᎭᏴ, ᏧᏙᏓᏆᏓ ᎣᎦᏂᎩᏒ, ᎤᏲᎢᏴ ᎤᏂᎶᎯᏍᏗ ᎨᏒ ᏐᏈᎵ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏲᎩᏩᏛᎭ, ᎠᎴᏃ ᎠᏂᏃᎯᎵᏙ ᏚᏂᎾᏦᏩᏛ, ᏃᎴ ᏐᏉ ᏗᎨᏫ ᎠᏍᎦᏯ, ᎤᏄᎸᏅ ᎤᏂᎩᏍᏗ, ᏃᎴ ᏍᎩᏴ ᎠᎦᏗᏓ ᎤᎦᎭᎾᏅ, ᏕᏧᎬ ᏕᎦᏓᎥ ᏧᏆᎶᎦ ᎠᏂᏓᎶᏁᎨ ᏃᎴ ᎠᏂᎩᎦᎨ ᎨᏒ ᏃᎴ ᎦᏙ ᎤᏓᏫᏍᎩᎨ ᎨᏒ. ᏄᏍᏛ ᎠᎩᎪᎲ ᎡᏙᏙᏱ ᎾᏍᎩ ᏥᏁᎪᎢ; ᏂᎠᏃ ᏄᏍᏛ ᎢᏥᎪᎲ ᎢᏥᏙᏙᏱ ᎾᏍᎩ ᏂᏣᏛᏁᎰᎢ. ᎯᏳᏩᏁᎦ, ᎤᏛᏅ ᏗᎪᏪᎵᏍᎩ, ᎨᏍᏗ ᏳᏛᏛᎾ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎡᏦᎢᏳᎲᏍᎩ ᏥᎩ ᎦᎸᏉᏗᏳ ᎡᏂᏰᎸᎠ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ, ᎾᏍᎩ Ꮎ ᏅᏯ ᏗᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎾᎵᏍᏓᏁᎸ; ᎿᏉᏃ ᎩᎶ ᎤᎷᏤ ᎤᏂᏃᏁᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏗᏓᏍᏚᏗᏱ ᏥᏕᏥᏴᏔᏅᎩ ᎠᏂᏯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏂᏙᎾᎠ, ᎠᎴ ᏓᏁᏲᎲᏍᎦ ᏴᏫ. ᎿᏉᏃ ᏉᎳ ᏛᏍᏚᎢᏏᏒᎩ ᎠᎰᎵ, ᎨᎵᏲ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏂᏧᏏ; ᎢᏳᏃ ᎤᏲ ᎢᏳᏛᏁᎸᎯ ᏱᎩ, ᎠᎴ ᎤᏍᎦᏅᏨᎯ ᏱᎩ, ᎢᏥᏧᏏ, ᏚᏳᎪᏛ ᏱᎩ ᎢᏨᏯᏛᏓᏍᏓᏁᏗᏱ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏤ-Ꮎ, ᎠᎴ ᎯᎠ ᏫᏁᏥᏪᏏ Ꮎ ᎫᎳ, ᎬᏂᏳᏉ ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎦ, ᎠᎴ ᏕᎦᏓᏅᏫᎭ ᎪᎯ ᎢᎦ ᎠᎴ ᎤᎩᏨᏅᎢ, ᏦᎢᏁᏃ ᎢᎦ ᎠᎩᏍᏆᏛᎯ ᎨᏎᏍᏗ. ᏞᏍᏗ ᎾᏍᎩ ᎯᎠ ᎢᏥᏍᏆᏂᎪᏒᎩ, ᏛᏍᏆᎸᎯᏰᏃ ᎾᎯᏳ ᏓᏤᎵᏍᏛ ᎠᏂᏯᎢ ᏂᎦᏛ ᏛᎾᏛᎦᏂ ᎧᏁᎬᎢ, ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎢᏥᏔᏲᎯᎮᏍᏗ ᎪᎳ ᎠᎴ ᎤᎾᏙᏓᏆᏍᎬ ᎢᏣᎵᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎬᏆᏚᎸᏗ ᏂᎦᎵᏍᏗ ᎪᎯ ᎨᏒ ᎢᏨᏰᎳᏗᏓᏍᏗᏱ, ᎠᎴ ᎠᎩᏁᏟᏴᏍᏗᏱ ᏥᏁᎬᎢ; ᎤᏯᏰᏃ ᎢᏨᏴᏍᎦ. ᎿᏉᏃ ᎠᎨᏴ ᎤᎯᏴᎩ ᎠᎹ ᎤᏢᏗ, ᎠᎴ ᏗᎦᏚᎲ ᏭᎶᏒᎩ, ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ ᏴᏫ; ᎠᎴ ᏚᏂᏃᎩᏒᎩ ᎼᏏ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏅᏏᏓᏍᏗ ᏧᏃᎩᏛ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏤᎵ ᏗᎧᏃᎩᏍᏗ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎦᎸᏉᏗᏳ ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏣᎬᏫᏳᎯ ᎠᎴ ᏣᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᏣᎵᏂᎩᏛ; ᎣᏍᏛ ᎠᎴ ᏚᏳᎪᏛ ᎢᎭᏛᏁᎵᏙᎯ ᏂᎯ ᏣᎬᏫᏳᎯ ᎤᎾᏓᏅᏘ ᎤᎾᏤᎵᎦ. ᏔᎷᎩᏍᎩ ᎦᏅᎦᏩᎶᏍᎩ ᎨᏎ ᏗᎦᏁᎦᎳᏫᏍᏙᏗ ᎠᎴ ᏗᏔᎴᏍᏙᏗ ᎦᎪᏢᏍᎬ. Georgia ᎠᏕᎳ ᎤᏁᎦ ᏗᏗᏙᏗ ᎠᎴ ᏴᎩ ᏕᎪᏢᏗᏍᎬ. ᎣᎦᏓᏅᏘᏳᏍᎩᏂ ᎨᏒᎩ ᎢᏨᏰᎳᏗᏙᎲᎢ, ᎾᏍᎩᏯ ᏧᏓᏍᏓᎢ ᏥᏓᏍᏆᏂᎪᏗᏍᎪ ᏧᏪᏥ; ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏲ ᎢᎨᎬᎾᏕᎩ ᏚᏳᎪᏛ ᎨᏒ ᎤᏂᏍᏛᏗᏍᎩ, ᎤᎾᏤᎵᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. “Ꮎ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᎤᏴᏈᏓᎩᏎ ᎪᏪᎵ. ᎾᎥᏂ ᎠᎵᏍᎩᏍᏔᏂᏙᎮ ᎰᎻ, ᎤᎵᏍᏇᏔᏬ ᎬᏗ ᎦᏃᎸᎥᏗᏍᎨ. ᎫᎭᏢ ᏭᎾᏌᎾᎩᏎ ᏣᏥ ᎠᏎᏃ ᎤᏄᎸᏁ. ᎭᏫᏂ ᎤᏁᎳᏕ ᏧᏍᏆᏴᏍᏗ ᎪᎳ ᎤᎷᏣ. ᎠᏂᏧᏣ ᏥᎨᏎ ᏗᎬ ᏩᏂᏙᎵᏨ ᎨᏎ. “ᏙᎢᏳᏍᏗ ᎪᏟᏍᏗ?” ᎤᎾᏏᏅᏎ, ᎤᎾᎪᏙᏍᏓᏁ ᎢᎾᏓ. ᎠᏎᏃ ᎤᏂᏣᏔ ᎢᎬᏱ ᎣᏂᏱ ᎨᏎᏍᏗ; ᎣᏂᏱᏃ ᏥᎩ ᎢᎬᏱ ᎢᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏥᎧᎵᏨᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏳᎪᏛ ᎨᏒ ᎤᏓᎴᏅᎯ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏐᏗᏱ, ᎾᏍᎩ ᎤᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎠᎴ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎯᎠ ᏥᏂᎦᏪᏍᎬᎩ, ᏴᏫ ᎤᏪᏥ ᎠᏎ ᏴᏫ ᎠᏂᏍᎦᎾ ᏗᎨᏥᏲᎯᏎᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᎦᏛᏗ ᏓᏓᎾᏩᏍᏛᎢ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏧᎴᎯᏐᏗ. ᎤᏁᏨᏃ ᎯᎠ ᏂᏑᏪᏎᎴᎢ, ᎦᏙ ᎤᏍᏕ ᎢᏥᏁᏤᎴ ᎼᏏ? ᎠᎾᎵᏅᏟᏃ ᏚᏲᏍᎨᏍᏗ ᎠᎾᎵᏅᏟ ᎤᏲᏞᎯᎯᏍᏗᏱ; ᎠᏍᎦᏯᏃ ᎤᏪᏥ ᏚᏲᏍᎨᏍᏗ; ᎠᎴ ᏗᎨᎦᏅᎩ ᏓᎾᎴᎲᏍᎨᏍᏗ ᏧᏂᎦᏴᎵᎨ ᏓᎾᏡᏗᏍᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎾᏅᏂᏏᏍᎨᏍᏗ ᏕᎨᏥᎢᎮᏍᏗ. ᎬᏂᏳᏉ ᎢᏥᏁᎸ ᏅᏔ ᏁᏨᏁᎸ; ᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᏴᎨᏍᎩᎪᏩᏛ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎬᏂ ᎯᎠ ᎢᏥᏪᏍᏗᏱ ᎠᏍᏆᎸᎲᎭ, ᎠᏥᎸᏉᏗᏳ ᎾᏍᎩ Ꮎ ᏱᎰᏩ ᏕᏅᏙᎥ ᏥᎦᎷᎯᏍᏗᎭ. ᎠᎴ ᏞᏍᏗ ᏱᏗᎩᏯᏪᎨᏍᏗ ᎣᏍᏛ ᏕᎩᎸᏫᏍᏓᏁᎲᎢ; ᎾᎯᏳᏰᏃ ᎠᏍᏆᎸᎲᎭ ᎢᎩᏟᏐᏗ ᎨᏎᏍᏗ, ᎢᏳᏃ ᏂᏗᏗᏩᎾᎦᎶᎬᎾ ᎢᎨᏎᏍᏗ. ᎠᎴ ᎠᎵᏥᏙᎲᏍᎨ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏓᏁᎸ ᎨᎵᎵ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎭᏢ ᎡᏙᎭ? ᎥᏝ ᏱᏥᎦᏔᎭ, ᎡᏛᏅᎩ. ”ᎾᎥᏂᎨᏃ,” ᎤᏛᏁ ᏌᎳᏓ. “ᎭᏩ!” ᎤᏁᎷᏁ ᏂᎦᏓ. ᎤᎬᏫᏳᎯᏃ ᎤᏬᏰᏂ ᏔᎵ ᎤᏛᏗᏕᎨᎢ, ᎤᏂᏤᏖᏃ ᎤᏃᎯᏳᏁᎢ, ᎤᎬᏫᏳᎯᏃ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏔᏁᎢ. ”ᎤᏍᏆᏂᎩᏘ ᏏᏆ.” ᎤᏛᏁ. ᏩᏆᏅᏓᏛ ᏰᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎣᎦᏂᎩᏒ ᏃᎴ ᏙᎩᎵᏦᏩᏔᏅ, ᎨᏍᏗ ᎣᏍᏓ ᏱᎦᏟᎮ ᎠᏌᎻᏓ ᏚᎾᏓᏒᎢ, ᏳᏃᏴᎳᏌ ᎤᏆᎶᎦ ᎦᏙᎥᏍᎬ ᏃᎴ ᎠᏑᏰᎯᏙᎲ ᎤᏤᏥᏍᏗ, ᎠᏓᎾᏩᏍᎬ. ᎠᏂᏐᏃ ᏅᎦ ᏗᏂᏅᏌᏓ ᏂᏚᏅᏔᏁᎴ. ᎤᏏᏩ ᏱᎩ ᎠᎫᏍᏉᏟᎢ ᏃᎴ ᎧᎵᎢ ᏱᎩ ᏣᏓᏅᏖᏗ, ᏍᏓᏱ ᎨᏐ ᏫᎦᏢᏗ. V. ᏌᎳᏓ “ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᏴᏳ!” ᎠᏍᎦᏂᏰᏃ ᎤᏓᎫᏴᎡᏗ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᎩ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏁᏗ ᎨᏒ ᎬᏂᏛ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ, ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎢᏳᏩᏂᏌᏛ. ᏉᎳᏃ ᎤᏃᏍᏛ ᏔᎵ ᏧᏕᏘᏴᏛ ᎤᏁᎳᏛᎩ ᎤᏤᎵᎦ ᎤᏙᎳᏒᎯ ᎠᏓᏁᎸᎢ, ᎠᎴ ᏓᏓᏂᎸᎬᎩ ᏂᎦᏛ ᎬᏩᏩᏘᏍᎩ, ᎨᎦᏓᏴᎡᎸᏃ, ᎤᏂᎪᏁᎶᎯᏎᎴᏉ ᎠᏍᎦᏯ ᎦᏁᎳ, ᏴᏫ ᏂᏂᏫ ᏣᏁᎮ ᏙᏛᎾᎴᏂ ᎪᎯ ᏣᏁᎭ ᏗᎫᎪᏗᏱ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏚᎪᎵᏁᏗᏱ ᏅᏛᏅᏁᎵ; ᏚᏂᏁᏟᏴᏎᏰᏃ ᏚᎾᏓᏅᏛ ᏦᎾ ᏚᎵᏥᏙᏁᎸ; ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᏍᎦᏉ ᏦᎾ. ᏚᏂᏴᎲᎩ ᏧᏪᏲᏔ ᏧᎦᏄᏓᏅᎯᏛ ᎠᎴ ᎤᏂᏄᎪᏨᎩ ᏚᎾᏠᏒᏒᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒ ᎤᏁᎷᏅᎩ, ᎰᏌᎾ! ᎠᏥᎸᏉᏗᏳ ᏫᏂᎦᎵᏍᏓ ᏱᎰᏩ ᏚᏙᏍᏛ ᏨᏓᏯᎢ, ᎤᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ. ᎢᏳᏰᏃ ᏴᏫ ᎨᏥᏍᎦᏅᏤᎲ ᏱᏗᎨᏥᏁᎭ, ᎾᏍᏉ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎢᏥᏙᎵᏍᏗ ᎨᏎᏍᏗ. ᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᏃᎴ ᎤᏂᏁᏌᏟ ᎠᏂᏳᏩᏁᎦ ᏚᏂᏍᏔᏩᏗᏎ, ᏑᎵ ᏣᏂᏌᏩᏄᎪ ᎪᎰᏍᏗ ᎤᎵᏬᏨ ᎢᎦᎦᏓ. ᎤᏓᏅᏙᎩ ᎤᏓᎾᏫᏍᏔᏁᎢ. ᎤᎾᎵᏍᎨᏛ ᎠᏂᏴᏫᏯ ᏗᎨᎦᏥᎶᏍᏔᏅ ᏓᏍᏆᏂᎪᏛ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏧᏂᎷᏫᏍᏔᏁᏗ ᏥᏯᏘᏅᏒ. ᏥᏌᏃ ᎾᏍᎩ ᎯᎠ ᎤᏛᎦᏅ, ᎤᏍᏆᏂᎪᏎᎴᎢ, ᎠᎴ ᎤᎦᏔᎲᏎᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎵ ᏴᏫ ᎾᏍᎩ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ; ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᎾᏍᏉ ᎢᏏᎵ ᎠᏁᎲ ᎾᏍᎩ ᎢᎦᎢ ᎪᎯᏳᏗ ᎨᏒ ᏯᎩᏩᏛᎲ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᏗᎨᎪᏪᎵ ᎠᏂᏲᏍᎩ, ᏎᎦᏨ ᏕᎨᏥᏲᏍᎬ, ᏥᏳ ᎬᏘ ᏓᏂᏐᏍᎬ ᎨᏴ, ᏭᏂᏩᏍᎬ ᎠᏓᏴᏍᏓᎩᏍᎩ ᏍᎪᏂᏴ ᏓᏳᎶᏒ ᎠᎴ ᏔᎾᏏ ᏫᏍᎩ. ᎦᏍᎩᎸᏃ ᏓᏓᎴᎲᏍᎬᎩ ᎠᎾᎦᎵᏍᎩ, ᎠᎴ ᎠᏴᏓᏆᎶᏍᎩ ᎠᎴ ᎤᏃᏴᎬᎢ; ᎠᎴ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏧᏥᏍᏟ ᏓᏓᏪᎵᎩᏍᎬᎩ ᎢᎬᏱᏗᏢ ᎦᏍᎩᎸᎢ, ᎯᎠ ᎾᏍᎩ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏕᎦᏥᏯᏟᎶᏍᏓᏁᎭ, ᎠᏂᎪᏩᏘᏍᎬᏰᏃ ᎥᏝ ᏱᎾᏛᎩᎭ ᎠᎴ ᎥᏝ ᏱᏃᎵᎦ. ᎤᏴᏥ ᏄᎵᏍᏔᏁ ᎡᎶᎯ. ᎡᏝᏪ ᏄᎵᏍᏔᏁ ᏎᎦ. ᎭᏂ ᏱᏓᏅᎥᎦ ᎯᎪ ᎢᎦ, ᏑᎾᎴ ᏱᏕᏗᏰᎷᎦ. ᏩᏥᏯᏅᎲᏃ ᏔᏓᎳ ᎤᎴᏅᎲᎩ ᎤᏬᎯᏍᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏂᎯ ᎢᏣᏂᏌᏅᎯ ᎤᏣᏘ ᏅᏩᏙᎯᏯᏛ ᏦᏤᎭ, ᎠᎴ ᎣᏍᏛ ᏥᏄᎾᎵᏍᏓᏁᎭ ᏴᏫ ᎣᎦᏤᎵᎪᎯ ᏣᎦᏌᏯᏍᏗᏳ ᎨᏒ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ, ᎣᏂᏃ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎴ ᏌᏚ ᎢᏯᏂᏛ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᏚᎬᏍᎪᎸᏁ ᏂᎦᎵᏍᏙᏗᏍᎨ ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᎠᎴ ᏗᏍᏓᏱᏳ ᎨᏒ ᏧᏂᎾᏫ, ᏂᏚᏃᎯᏳᏅᎾ ᎨᏎ ᎢᏳᏍᏗ ᎾᏍᎩ ᎬᏩᎪᎲᎯ ᏧᎴᎯᏌᏅᎯ ᏂᎨᏎᎢ. ᏗᏨᏍᏗ ᎨᏒ ᎾᏂᎥᏉ ᎠᏁᎲ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᎴ ᏓᎾᏤᎲ ᎦᎳᏫᏎᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ; ᎤᏕᎵᏛᏍᎩᏂ ᏗᎾᏂᏏᎲᏍᎩ ᎠᎴ ᏗᎾᏓᏲᏁᎯ ᎤᏁᎳᏅᎯ ᏙᏓᎱᎪᏓᏁᎵ. ᎣᏂᏃ ᎢᏴᏛ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏕᎦᏚᏩᏗᏒ ᏧᏛᎾ ᎠᎴ ᏧᏍᏗ ᎤᏪᏙᏁᎢ, ᎠᎵᏥᏙᎲᏍᎨ ᎠᎴ ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎧᏃᎮᏍᎩ, ᏔᎳᏚᏃ ᎢᏯᏂᏛ ᎤᎾᎵᎪᏩᏕᎨᎢ; ᎿᏉᏃ ᏗᎤᎷᏨ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏂᏅᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎿᏉ ᎢᏥᎵᏅᎩ ᎠᎴ ᎢᏥᏯᏪᏐᎸᎦ; ᎬᏂᏳᏉ ᎢᏳ ᎨᏒ ᎤᏍᏆᎸᎯᏗ, ᏴᏫᏃ ᎤᏪᏥ ᎠᎦᏡᏔᏅ ᎤᏂᏁᎫᏥᏛ ᏴᏫ ᏕᎨᏥᏲᎯᏎᎸ. ᎠᎴ ᏂᎯ ᎨᏆᏂ ᎦᎸᎳᏗ ᎢᏴᏛ ᏤᏣᏌᎳᏓ, ᏨᏍᎩᏃ ᎢᏴᏛ ᏮᏓᏰᏣᎶᎥᏔᏂ. ᏥᏯᏛᏛᏅ ᎡᏍᎦ ᏱᏄᏩᏁ. ᎾᏍᎩᏯ ᎢᏴᏛ ᎤᎶᏒᏍᏗ ᏔᎵ ᎠᏛᏗᏍᎩ ᏫᎬᏁᎴ ᏥᏌ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ. “ᏐᏉ ᎢᏳᏩᎧᏘ Chapel Hill ᎨᏒᎢ…” ᎾᎿ ᏥᏌ ᎢᎬᏱ ᎡᎩ ᏫᎩᏴᏎᎸᎯ ᏥᎩ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏂᎪᎯᎸ ᎠᏥᎧᏅᎯ ᏥᎩ, ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ. ᎤᏂᎧᎵᏤᏃ ᎤᏂᏔᎳᏬᏍᎬᎢ; ᏚᎾᎵᏃᎮᎴᏃ ᎤᏅᏒ ᎢᏳᏅᏁᏗᏱ ᏥᏌ. ᎠᎩᏍᏛᏛ ᏩᏏᏓᏂ ᎠᏁᎯ ᎣᎦᎵᎪᏅ. ᎥᏝᏰᏃ ᏂᎯ ᏍᎩᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᏲᏥᏂᎳᏗᎭ; ᎢᏨᏁᎭᏎᏍᏗᏂ ᏍᎩᎸᏉᏙᏗᏱ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏳᏂᎭ ᏧᎾᏬᎯᎵᏴᏍᏓᏁᏗ, ᎢᏨᏰᎵᏎᎭ, ᎾᏍᎩ ᎦᏚᏉ ᎡᎯ ᎠᎾᏢᏉᏙᏗᏍᎩ ᏥᎩ, ᏙᏧᎾᏓᏅᏛᏃ ᎠᎾᏢᏉᏙᏗᏍᎩ ᏂᎨᏒᎾ. ᏍᏈᏯ ᎠᏂᏬᏂᏍᎪ ᏴᏫ - “ᏥᏚᎢᏍᏗ ᏂᏥᏪᏍᎬ. ᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ, ᏉᎳ ᎤᏓᏅᏖᎸᎩ ᎤᏓᏅᏛᎢ, ᎿᏉ ᎹᏏᏙᏂ ᎠᎴ ᎡᎧᏯ ᎤᎶᏐᏅᎯ, ᏥᎷᏏᎵᎻ ᏭᎶᎯᏍᏗᏱ , ᎯᎠ ᏄᏪᏒᎩ; ᎾᎿ ᎬᏇᏙᏅᎯ ᎨᏎᏍᏗ ᎶᎻ ᎾᏍᏉ ᎠᏎ ᏛᏥᎪᎢ. ᎠᏎᏃ, ᏕᎫᎪᏗ ᎯᎸᎢᏳ ᎪᎱᏍᏗ ᏛᏛᏂ ᎮᏂᎵ ᏛᏛᎦᏍᏔᏂ ᏲᎾ ᎤᏤᏍᏙ. ᏎᎦᎾᎨᏍᏗᏉ ᎤᎪᎮ ᎪᏍᏔᏱ ᎧᏴᏐᎵ ᎠᏓ ᎪᏒᏔᏅᎯ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ. ᎠᎴ ᎦᎸᎶᎢ ᎤᏓᏅᏒᎩ ᎾᏍᎩᏯ ᎪᏪᎵ ᏣᎦᏇᏅᏍᎪᎢ; ᎠᎴ ᏂᎦᏛ ᏕᎣᏓᎸ ᎠᎴ ᎠᎹᏰᎵ ᏚᏪᎧᎲᎢ ᏚᏓᏅᏒᎩ ᎾᎿ ᏄᎾᏛᏅᎢ. ᎾᏍᎩᏰᏃ ᎯᎠ ᎠᎩᎩᎬ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏂᏨᏘ ᏥᎨᎦᏤᏪᎸ, ᎦᎨᏥᏁᏗᏱ ᎤᏂᏍᎦᏅᏨᎢ. ᏏᏌᎵᏱᏃ ᎤᏚᎩᏒ, ᎠᎴ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏫᏚᏲᎵᎸ, ᎥᏘᎣᎩ ᏭᎶᏒᎩ. ᎭᎵᏥᏙᎲᏍᎨᏍᏗ ᎧᏃᎮᏛ, ᏣᎵᏁᏅᏕᏍᏗᏉ ᏰᎵ ᎨᏎᏍᏗ ᎠᎴ ᏰᎵ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᏕᎯᎬᏍᎦᎸᎥᏍᎨᏍᏗ, ᏕᎯᏍᎦᎨᏍᏗ, ᏕᎯᏍᏗᏰᏗᏍᎨᏍᏗ ᎲᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎬᏂᏛ ᎨᏒ ᎠᎴ ᏗᏕᏲᏗ ᎨᏒᎢ. ”ᏌᎳᏓ?” ᎤᏛᏁ. ”ᎧᏁᏍᎦ ᎦᏝ ᎠᏆᏏᏃᎲᎢ! ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᏤᎦᏈ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎤᎸᏉᏔᏅ ᎤᏪᏥ ᏥᏌ, ᎾᏍᎩ ᏂᎯ ᏥᏕᏥᏲᏒᎩ ᎠᎴ ᏤᏣᏓᏱᎸᎩ ᎠᎦᏔᎲ ᏆᎴᏗ, ᎾᏍᎩ ᎤᏪᎪᏗᏱ ᏧᏰᎸᏒᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎠᏍᎦᏂ ᏳᎬᏫᏳᏌᏕᎨᏍᏗ ᏗᏲᎩ ᏗᏥᏰᎸᎢ, ᎾᏍᎩ [ᎠᏍᎦᏂ] ᎢᏦᎯᏳᏗᏱ ᎾᎿ [ᏗᏥᏰᎸ] ᎤᏚᎸᏅᎥᏍᎬᎢ. ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏛᏍᏆᎸᎯ ᎠᎴ ᎿᏉ ᎤᏍᏆᎸᎲ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏛᎪᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎧᏁᎬᎢ, ᎠᎴ ᎤᎾᏛᎦᏅᎯ ᎤᎾᏛᏂᏗᏍᏗ ᎨᏎᏍᏗ. ᏚᏑᎬ ᏧᏍᎩᏃ ᎦᏰᎩ ᏚᏬᎪᏔᏁ ᏚᎵᏘᎾᎥ ᏣᎵ, ᎾᎥᏂ ᎤᏓᏄᏖᏴᏓ ᎤᏍᏔᎦᎸ, ᎠᏎᏃ ᎤᏓᏅᎯᏓ ᎨᏎ. ᎱᎵᏍᎦᏴᏍᏔᏁᎢ ᏧᏩᎩ. ᎠᏎᏃ ᎤᏓᏱᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏥᎦᏔᎭ, ᎥᏝ ᎠᎴ ᏱᎪᎵᎦ ᏂᏪᏍᎬᎢ. ᎤᏄᎪᏤᏃ ᏙᏱᏗᏢ ᏩᏲᏓᏝᎲ ᏭᎶᏎᎢ; ᏣᏔᎦᏃ ᎤᏴᎵᏎᎢ. ᎥᏣ ᏂᎦᏓ, ᎠᏂᎩᎶᎯ, ᎠᏂᏬᏗ, ᎠᏂᏩᏯ ᏃᎴ ᎠᏂᎧᏫ. ᎿᏉᏃ ᎥᎠᎢᏒᎩ, ᏧᏅᏏᏓᏍᏗ ᏕᎬᏩᏠᏒᎩ ᎠᎴ ᎬᏩᏃᏁᎸᎩ, ᏤᏥ ᎬᏅ, ᎥᎬᏬᏎᎸᎩ. ᎤᎵᏍᏗᏃ ᎤᏂᏄᎪᏨ ᏚᎾᎵᏖᏎ ᎠᏤᎵᏍᏛᎢ; ᏚᏂᎾᏫᏍᎨᏃ ᎠᎴ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ; ᎥᏝ ᎠᎴ ᎩᎶ ᎠᎱᏍᏗ ᏳᏃᏎᎴᎢ; ᎠᏂᏍᎦᎢᎮᏰᏃ. ᏅᏃᎱᎶᏗ-Ꮓ ᏧᎳᎨᏯᏛᏤᎢ ᎾᏍᎩ ᎠᎾᏛᎩᏍᎩ ᎨᏥᏛᎦ; ᎿᏉᏃ ᎠᏍᎩᎾ ᎦᎷᎪᎢ, ᎠᎴ ᎠᎩᏍᎪ ᎦᏄᎪᏫᏍᎪ ᎧᏃᎮᏛ ᏧᏂᎾᏫᏱ, ᎦᎬᏩᏃᎯᏳᏗ ᎠᎴ ᎦᎨᏥᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᏧᎾᏄᎪᏨ, ᎥᏝ ᎿᏉ ᏗᏕᏲᎲᏍᎩ ᏗᎦᏘᏂᏙᎯ ᏱᎩ. XI. ᎤᏍᏆᏂᎩᏗ “ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ ᎯᏍᏚᏣ,” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎠᏍᎩᏗᏍᎨᎢ ᏗᎪᏍᏛᏂᏍᏗ ᏗᎳᏍᎦᎶᏗ ᏕᎦᏅᏗᏍᏗᏍᎬᎢ ᎠᎿᏬ ᎪᏒᏔᏅ ᏪᏌ ᏃᎴ ᎤᏂᏃᏕᎾ ᏗᏂᏯᎩᏍᎩ ᎠᏂᏴᏫᏯᎯ ᎤᏩᎾ ᏧᏍᏆᏅᎾ ᎠᏓᏒᎲᏍᎬ. ᏫᏥᎢᎦ ᏳᏓᏁᏖᎸᎾ, ᏔᎵᏉ ᏚᎴᏍᎨᎮ ᏭᏗᏅᏎ ᎦᎷᏯᏍᏗ. ᎤᏁᎳᏅᎯᏃ ᎤᏩᏒ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏂᎦᎷᎶᎬᎾ ᎢᏥᏅᎦᎸᏗ ᎨᏎᏍᏗ; ᎠᎴ ᏂᎬ ᎢᏣᏓᏅᏖᏗᏱ ᎠᎴ ᏗᏣᏓᏅᏙ ᎠᎴ ᏗᏥᏰᎸᎢ ᏤᏤᏍᏆᏂᎪᏓᏁᏗ ᎨᏎᏍᏗ, ᏂᏚᏚᎯᏍᏛᎾ ᎢᏣᎵᏍᏙᏗᏱ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎦᎷᏨ ᎢᏳᎢ. ᎾᏍᎩ ᏗᎦᎸᏌᏓᏗᏍᎩ ᏥᎨᏒᎩ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩᏯ ᏗᏟᎶᏍᏔᏅᎯ ᏥᎨᏒᎩ ᎾᏍᎩ ᏄᏍᏛᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏥᏚᏍᏆᏂᎪᏗᏕᎬᎩ ᏥᎬᏗᏍᎬᎩ ᎤᎵᏂᎩᏗᏳ ᎧᏁᎬᎢ, ᎾᎯᏳ ᎤᏩᏒ ᎤᏓᏛᏔᏅ ᎤᏅ ᎦᎸᎭ ᎢᎩᏍᎦᏅᏨᎢ, ᎤᏪᏁᎢ ᎠᎦᏘᏏᏗᏢ ᎦᎸᏉᏗᏳ ᎨᏒ ᎦᎸᎳᏗ. ᏂᎯ ᎲᏤᏅᏍᏗ ᏱᎨᏒᎾ ᎯᎨᏎᏍᏗ, ᎠᏯ ᏍᏉ ᎨᏙᎮᏍᏗᏉ. ᏂᎯᏍᎩᏂ ᏕᏣᏂᏴᏎᏍᏗ ᏄᏍᏛ ᏣᏕᎶᏆᎥᎢ ᎠᎴ ᏦᎯᏳᏅᎢ; ᎯᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎯᏯᏕᎶᏆᎡᎸᎯ ᎨᏒᎢ, ᎤᏗᏍᏚᏅ, ᎤᏍᏘᏰᎬ ᎤᏭᏒᏅ ᎤᎧᏛ, ᎭᎾᏉ ᎤᎵᏍᏆᏙᏅ. ᎤᎵᎮᎵᏍᏗ ᎠᏁᎮ ᏂᎦᏓ ᎠᏣᏗ ... ᏣᏉᏲᎪ ᎤᏍᏗ ᎠᏣᏗ. ”Ꭳ, Ꭵ, ᏫᎵᎻ ᎤᎸᏉᏗ ᏌᎳᏓ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎠᏥᏃᎯᏎᎴ ᏗᎧᏃᎮᎸᎥᏍᎩ ᏗᏉᏪᎳᏅ ᎨᏒ, ᎠᏎᏃ ᎨᏍᏗ ᏧᎪᎵᏰᏓ ᏱᎨᏎ. II. ᏫᎵᎻ ᎦᏙᏃ ᎤᏪᎵᏎ. ᎠᎴ ᏅᏩᏓᎴ ᎤᏍᏆᏂᎪᎩ ᎤᎾᏄᎪ ᏨᎩ ᎦᎸᎳᏗ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏣᏅ ᎩᎦᎨ ᎢᎾᏛ [ᏫᏥᎪᎥᎩ,] ᎦᎸᏉᎩ ᏓᏍᎫᏓᏛᎩ, ᎠᎴ ᎠᏍᎪᎯ ᏕᎤᎷ-ᎬᎩ, ᎠᎴ ᎦᎸᏈᎩ ᏚᎵᏍᏚᎸᎩ ᏓᏍᎫᏓᏛᎢ. ᏍᏓᏯ ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎿᏉᏃ ᎠᏂᏯᏫᏍᎩ, ᏥᏌ ᎬᏩᏛᏅ, ᏚᏂᏁᏒᎩ ᏧᏄᏬ, ᏅᎩ ᏂᏚᏂᏛᎩ, ᏌᏉ ᎢᎦᏛᎯ ᎠᏏᏴᏫ ᎠᏯᏫᏍᎩ ᎤᏤᎵᎦ ᏄᏅᏁᎸᎩ; ᎠᎴ ᎾᏍᏉ ᎭᏫᏂ ᎤᏄᏬᎥᎯ. ᎾᏍᎩ ᎭᏫᏂ ᎠᏄᏬ ᎥᏝ ᎦᏰᏫᏛ ᏱᎨᏎᎢ, ᏂᎬ ᎬᏅᎯ ᎨᏒᎩ. ᎠᏓ ᎪᏍᏔᏱ ᎦᎦᏓᎢ ᎦᏯᎩᏍᎬ ᏌᎶᎵ, ᎠᏍᎪᎵ ᏓᏳᎴᏅᏓ ᎡᎳᏗ ᎠᏰᎸᎢ, ᏕᎦᏄᎳᏥᏴ ᎠᎩᏍᎬ ᎭᏫᏯ ᎾᏍᎩᏯ ᏎᎷ ᏣᏍᏗᎩᏍᎪ. ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏁᎯ ᎠᏂᏬᏂᏍᎩ ᏯᏗᎭ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏆᏛᏅᎢᏍᏗ ᎠᏉᎯᏳᏗ ᏂᎦᏪᏍᎬᎢ. ᎥᏝᏃ ᎩᎶ ᎠᏂᏅᏜᎢ ᏳᏬᎵᏤ ᏄᏍᏛ ᎦᏛᎬ ᎾᏍᎩ ᏄᏪᏎᎸᎢ. ᏱᏣᏕᎶᎰᏌ ᏄᏍᏛ ᎢᏯᏋᏁᏗ ᏩᎦ ᎭᏫᏯ ᏕᎦᏄᎳᏥᏴ ᎭᏫᏂᏨ ᏓᏳᎣᏒ. “ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᎪᏱᏁ. ᏥᎪᏩᏛ ᎠᎩᏏ ᏧᎬᏩᎶᏗ. ᎦᎪ ᏓᎦᏟᎶᏍᏗ, ᎠᎴ ᎦᎪ ᎠᏥᏃᎮᏎ ᎯᎠ ᏥᎪᏪᎳ? ᎤᏂᏁᏤᏃ, ᏏᏌ, ᎤᎾᏛᏁᎢ. ᎦᏍᎩᎸ ᏗᏒᏗ ᎠᏍᏓ ᎬᏗ ᏕᎬᏍᎪ ᏃᎴ ᎠᎵᏲ ᎠᏋᏗ ᏥᏏᎾ.” ᏚᏅᏓᏒᏰᏃ ᎤᏪᏅᏒ, ᏍᎩᎾᎾ ᏄᏍᏕᏍᏗ. ᎦᎸᏉᏗᏳᏍᎩᏂ ᎩᎬ ᎡᏣᎫᏴᏔᏅᎯ ᎨᏒᎢ, ᎤᎩᎬ ᎦᎶᏁᏛ ᎾᏍᎩᏯ ᎠᏫ-ᎠᎩᎾ ᎪᎱᏍᏗ ᏄᎪᎸᏫ ᎠᎴ ᏄᏓᏓᎸᎾ; ᏐᏉ ᎤᏒᎯ ᎤᏂᎵᏦᏩᏛ ᎾᎥᏂ ᎤᏗᎧᎸᏎ ᏣᎵ, ᏗᎠᎢᏒ ᏚᎪᎮ ᎭᏫᏯ ᏕᎦᏓᎥ, ᏗᎩᎦᎭ ᏓᏯᏙᎳᏛ ᎾᏍᎩᏯ ᏂᏚᏍᏖ. ᎤᎵᏗᏨ, ᎧᏅᏑᎸᎢ ᎦᏯᎴᎢ. ᎪᎱᏍᏗ ᎤᏍᏆᏂᎩᏗ ᎤᎪᎮ ᏫᎵᎻ. ᎠᎴ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᏙᎯ ᏥᏄᏩᏁᎸ ᎡᏗᏍᎦᎩ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ, ᎠᎴ ᎠᏴ ᎣᎦᏒ-ᎦᎶᏔᏅ ᏙᎯ ᎢᎬᏁᎯ ᏗᎦᎸᏫᏍᏓᏁᏗ; ᎤᏄᎸᏁᎢ ᏧᏭᎪᏙᏗ ᎢᏳᏍᏗ ᎤᏍᎦᏅᏨ. ᎣᏍᏛ ᏕᏥᏁᏤᎮᏍᏗ ᎨᏥᏍᎩᏅᏗᏍᎩ, ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎨᏥᏙᎵᏍᏗᏱ ᎦᎨᏥᏐᏢᏗᏍᎩ. ᎤᏓᏲᎵᏍᏗ ᎤᏩᏌ ᎠᎨᏲᏅ ᎨᏎ ᎠᏌᎻᏓ ᎠᏂᏐᎢ ᏦᎢ ᎢᏯᏂ ᏤᏆ ᎦᎶᏇ ᏧᏂᏅᎦᎶᏗ. ᎢᎬᏩᏙᏢᏔᏁᏃ, ᎠᏂᎦᏔᎮᏰᏃ ᎤᏲᎱᏒᎯ ᎨᏒᎢ. ᏍᎦᏃᎳ ᏚᎷᏫᏍᏔᏁᎮ ᎠᏂᏐᎢ ᎤᏁᏝᏅ ᏧᏬᏒᏅ ᎠᏂᏟᏁ. ᎠᎴ ᎢᏳ ᏧᏪᏥ ᏱᎩ, ᎿᏉ ᎢᎦᏘᏰᎯ ᏧᎬᏩᎶᏗ; ᎢᎦᏘᏰᏗ ᏧᎬᏩᎶᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᎢᎦᏘᏰᏗ; ᎢᏳᏃ ᎰᏩ ᏱᎦᏠᏯᏍᏗᎭ ᎠᎩᎵᏲᎬᎢ, ᎾᏍᏉ ᎢᎦᏠᏯᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸᏉᏗᏍᎬᎢ. ᎢᎦᏛᏃ ᎾᎥ ᎠᏂᏙᎾᎢ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎬᏂᏳᏉ, ᎢᏔᏯ ᎠᏯᏂᎭ. ᎣᎭᏁ ᎢᏣ ᏚᎶᏔᎴ, ᎦᏲᏟ ᏚᏲᏎ ᏗᏔᎾᎶ, ᏗᏴᎩᏍᏙᏗ ᏚᏰᏝᎴ ᎩᎦ ᎬᏔᏍᎩᏍᎩ. ᎤᏂᏣᏖᏍᏗᏰᏃ ᎠᏴ ᏓᏆᏙᎥ ᎠᏂᎷᎯᏍᏗᏍᎨᏍᏗ, ᎠᏴ ᎦᎶᏁᏛ, ᎠᎾᏗᏍᎨᏍᏗ; ᎠᎴ ᎤᏂᏣᏓᏍᏗ ᏓᏂᎶᏄᎮᏍᎨᏍᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎩᎶ ᎣᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᎨᏐᎢᎬᏪᏅᏛ; ᎩᎶᏃ ᎾᏍᎩ Ꮎ ᎯᎠ ᏄᏍᏛᎾ ᏱᎩ, ᎠᏎ Ꮭ ᎦᎬᏍᎦᎶᏗ ᏱᎨᏐᎢ. ᏚᎾᎴᏁᏃ ᎠᎴ ᎬᏩᏄᎪᏫᏎ ᎦᏚᎲᎢ, ᎠᎴ ᏭᏩᏝᎥ ᎤᏌᎯᎸ ᏫᎬᏩᏘᏅᏍᏔ ᎾᎿ ᎤᏂᏚᎲ ᎦᎧᎲᎢ, ᏗᎬᏩᎶᎥᏔᏂᏎ ᏫᎵᎻ ᎤᏍᎦᏃᎳ ᎤᎵᏍᏔᏴᏁᎢ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ. ᏗᏯᏙᎵ ᏕᎦᏆᏛ, ᏣᏍᏆᏄᏍᎪ ᎢᏳᏍᏗ ᎤᏃᏴᎵᏒ ᏌᏬᏚ. ᏩᎾᎢᏒᏛ ᏥᏍᏚ, “ᎠᎭᏂ ᏐᎢ! ᎠᎭᏂ ᏐᎢ!” ᎤᏛᎮ ”ᎣᏍᏓ ᎠᎩᏰᎸᎭ,” ᎤᏛᏁ ᏫᎵᎻ. ᏔᎵᏍᎪᏔᎵ ᎦᎶᏇ ᎦᏁ ᎦᎷᎪ ᎡᎶᏗ, ᎠᏲᎯᎰ...” ᎭᎾ ᎠᏰᎵ ᎤᏩᏛᎮᎢ ᎩᎳ ᎤᏑᎸᏓ ᎢᎦ ᎤᎵᏍᏔᏴᏅ ᎩᎶ: ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅᎯ ᎨᎵᏍᎩ, ᎠᎦᎸᏓ ᎤᏅᏗ ᎤᏍᏔᏲᏒ, ᎤᏪᏥ ᎫᏅ ᎤᏘᏴ ᏃᎴ ᎠᏰᎵ ᎤᏕᏅ ᎤᏥᏴᎭ ᏒᎧᏔ. ᎤᏟᏍᎩᏂ ᎢᏳᎵᏂᎩᏛ ᏳᏃᎵᎸ ᎠᎴ ᏳᏎᎪᎩᏒ, ᎤᎩᎡᎰ ᏂᎦᏛ ᎤᎵᏍᎦᏍᏙᏗ ᎤᎵᏍᎦᏍᏙᏔᏅᎢ, ᎠᎴ ᎠᏯᏙᎯᎰ ᏧᎬᏩᎶᏗ ᎤᏓᏬᏅᎲᎢ. ᏣᏂᏰᏃ ᏗᏓᏬᏍᎩ ᎤᎷᏨᎩ ᎥᏝ ᎦᏚ ᏯᎩᏍᎨᎢ, ᎥᏝ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏯᏗᏔᏍᎨᎢ; ᎯᎠᏃ ᏂᏥᏪᏎ; ᎠᏍᎩᎾ ᎤᏯᎠ. ᎤᎵᎮᎵᏍᏗ ᎤᏓᏅᏔᏕᎢ. ᎾᏍᎩ ᎡᏍᎦᏂᏦᎭᏍᎬᎾ ᎨᏒ ᏑᏓᎴᎩ ᎤᏅ ᎬᏩᎦᏘᏯ ᎤᏓᎵᏍᎪᎸᏓᏁᏗ ᎨᏒᎢ; ᎢᏥᎦᏖᏃᎲ ᎤᎷᎯᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ; ”ᎨᎾ ᏏᏆ!” ᏧᏛᏁ ᏣᏄᏏ. ᎠᎴ ᎡᏥᎧᎵᎸᎯ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏅᎯ ᎾᏍᎩ ᏄᎬᏫᏳᏌᏕᎩ ᏥᎩ ᎾᏂᎥ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ; ᎠᎴ ᎤᏓᏅᎯᏗᎢ ᎠᏆᏂᎩᏍᏗ ᎠᏏ ᎾᎩᏢᏅᎾ, ᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᎤᏠᏱᏉ ᎠᏗᏔᏍᏗ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎠᎾᏗᏔᏍᎬᎢ; ᎾᏍᎩᏰᏃ ᏅᏯ ᎠᏓᏅᏙ ᎤᏍᏚᎢᏛ, ᎾᏍᎩ ᏧᏂᏍᏓᏩᏗᏙᎮᎢ, ᎾᎿ ᎤᏄᎪᏨᎯ ᎠᎾᏗᏔᏍᎨᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᏅᏯ ᎦᎶᏁᏛ ᎨᏒᎩ. ”ᎤᏣᏔ ᎣᏍᏓ ᏍᎩᎾᎾᏂ,” ᎤᏛᏁ ᏣᏄᏏ. ᎤᎾᏜᎢᏃ ᎤᎸᏉᏔᏁ ᏂᏚᏳᎪᏛᎾ ᎢᏯᏛᎾᎯ ᎤᎦᏌᏯᏍᏗᏕᎩ, ᎤᏗᎦᎵᏍᏙᏍᎨ ᎤᏏᎾᏌᏅᏨᎢ; ᎡᎶᎯᏰᏃ ᏧᏪᏥ ᎤᏅᏒ ᎠᏁᎲᎢ, ᎤᏟ ᎾᏂᏏᎾᏌᏅ ᎡᏍᎦᏉ ᎢᎦᎦᏘ ᏧᏪᏥ. ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏓᏅᏙ ᎨᏒᎢ, ᎠᏓᏓᏈᏍᏗ ᎨᏒᎢ, ᏗᏗᏲᏍᏗ ᎨᏒᎢ, ᏗᏓᏛᏳᏤᏗ ᎨᏒᎢ, ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᏓᏓᏐᎮᏗ ᎨᏒᎢ, ᏔᎵ ᎢᏯᏓᏗᏍᏗ ᎨᏒᎢ, ᎤᎾᏓᏤᎵᏛ ᎨᏒᎢ, ᎿᏉᏃ ᎯᎠ ᏅᏓᎦᏥᏪᏎᎵ; ᎥᏝ ᎢᎸᎯᏳ ᏱᏨᎦᏔᎮᎢ; ᎤᏟ ᏫᏥᎶᎯ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᎯ. ᎤᏓᎸᏉᏗ ᏂᎨᏒᎾ ᏃᎴ ᎠᎵᎮᎵᎩ ᏗᎧᏃᏗ ᎨᏎᎢ. ᎠᎩᏍᏆᏙᏅ ᎦᏗᏲᎯᎲ ᎯᎠ ᎾᎩᏪᏒ: ᏍᎩᏍᏕᎳ ᏙᏥᏩᏘᏍᎬ ᎤᎾᏓᎸ ᏃᎴ ᏕᏨᏯᏓᏂᎸᎦ ᎢᏣᎵᎪᏗ ᏲᎾ ᏧᏤᎵ ᏴᏫ. ᏑᏁᏎᏃ, ᎠᎴ ᎤᎵᏍᏓᏴᏁ ᎠᏂᎦᏔᎲᎢ. ᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤ ᎾᏍᎩ ᏂᏚᏪᏎᎸᎢ, ᎠᎴ ᎨᎬᏍᎦᎳᏁᎴᎢ, ᎾᏍᎩ Ꮔ-ᏂᎪᎲᎾ ᎨᏎᎢ; ᎠᎴ ᎠᏂᏍᎦᎢᎮ ᎬᏩᏛᏛᏗᏱ ᎾᏍᎩ Ꮔ-ᏪᏒᎢ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᎾᏉᏃ; ᏦᎯᏳᏒ ᏣᏍᏕᎸ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏍᏓᏩᏛᏎ ᏥᏌ ᎠᎢᏒᎢ. ᏧᏓᎴᏅᏓ ᎤᎾᏓᏍᏔᏴᏗ ᎨᏒ ᏕᎦᏚᎲ. ================================================ FILE: a4/chr_en_data/dev.en ================================================ Paul, and Silvanus, and Timothy, unto the church of the Thessalonians in God our Father and the Lord Jesus Christ; And when the multitudes heard it, they were astonished at his teaching. After these things I saw another angel coming down out of heaven, having great authority; and the earth was lightened with his glory. And this is the sign unto you: Ye shall find a babe wrapped in swaddling clothes, and lying in a manger. He could hardly believe what he was seeing, and although he detested flies, he was sorry for this one. And 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. And 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. And no clear way through, at least none that I could see. Mrs. Zuckerman began to cry. And 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? for so shall it come upon all them that dwell on the face of all the earth. And 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. She brought threat and disorder down on the people. Lurvy and John Arable and Mr. Zuckerman came along at that moment, followed by Mrs. Arable and Mrs. Zuckerman and Avery and Fern. Simon Peter therefore also cometh, following him, and entered into the tomb; and he beholdeth the linen cloths lying, Tell 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. Behold, I tell you a mystery: We all shall not sleep, but we shall all be changed, Chief Ross, the head man for the whole Nation, was as white as any congressman. Other organisms make them into soil. They said therefore unto him, What did he to thee? how opened he thine eyes? And 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? They shall perish; but thou continuest: And they all shall wax old as doth a garment; But he that received the one went away and digged in the earth, and hid his lord’s money. The Philadelphia boy broke the blowgun into three pieces and threw them into the fire. This is what they do when they put on shoes, said Wolf, nearly crying that 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; Charlotte’s Web Jesus 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. For 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. Ye have heard that it was said, An eye for an eye, and a tooth for a tooth: And 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? in whom are all the treasures of wisdom and knowledge hidden. Finally 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. and 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. Nobody, of the hundreds of people that had visited the Fair, knew that a grey spider had played the most important part of all. Which is easier, to say, Thy sins are forgiven thee; or to say, Arise and walk? After a while she bestirred herself. Far behind them, trackers rose up the slopes of the coves and drew nearer by the day. and they shall scourge and kill him: and the third day he shall rise again. he was going ::huff:: ::puff:: ::huff:: because it was so afraid! And 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. Then 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. You’ve rousted out thousands of them without incident. Okay, said Wolf. And 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: who 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; Verily 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. Won’t it be wonderful to be back home in the barn cellar again with the sheep and the geese? “Dude,” I assured him, “I will absolutely NOT make any moves on your girlfriend.” “I love everything about this place.” and he sent and beheaded John in the prison. “That's just what we need,” said Avery. Smith, 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. That worried Smith. She let herself down on a dragline until she hung in the air just in front of the big pig’s snout. But she came and worshipped him, saying, Lord, help me. But it held and grew. When he had enough letters -- about eighty-four or so -- he began writing. He that is not with me is against me; and he that gathereth not with me scattereth. I am no more worthy to be called thy son: make me as one of thy hired servants. But not Wasseton. Why should I bother? “I’m less than two months old and I’m tired of living,” he said. I 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. Then saith he unto them, My soul is exceeding sorrowful, even unto death: abide ye here, and watch with me. There was a long silence, and then the hunters spread out and moved forward and began circling around him. I realized soon, I passed close by this one nearby building. But Thomas, one of the twelve, called Didymus, was not with them when Jesus came. Verily, 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. Once you were just a seed, now you are an apple tree. “What did I do wrong?” asked the pig, when he recovered from his bump. Let 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. I'm expecting goslings.” But I kept working, tirelessly and without hope. And the husbandmen took his servants, and beat one, and killed another, and stoned another. And she had a sister called Mary, who also sat at the Lord’s feet, and heard his word. Wherefore when we could no longer forbear, we thought it good to be left behind at Athens alone; that 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. “Salutations are greetings,” said the voice. For 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. The blow glanced off the key. Overhead, on the main floor, nothing stirred: the cows were resting, the horses dozed. If 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. for she said within herself, If I do but touch his garment, I shall be made whole. The goose was sitting on nine eggs. “Bee-bee-bee!” said the goslings. Then just Charley talked and tried to make gestures with his bound hands. “Maybe,” said Charlotte quietly. Underneath her rather bold and cruel exterior, she had a kind heart, and she was to prove loyal and true to the very end. It’s made out of the toughest material I have. And he said, A certain man had two sons: All spiders do, I guess.” Charlotte and Wilbur were alone. “Oh, hurry!” said Wilbur. When morning came, everybody got up at daylight. They 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. White people wipe their ass on the notion of peace every day. Wilbur watched from below. At which season Moses was born, and was exceeding fair; and he was nourished three months in his father’s house: For yet a very little while, He that cometh shall come, and shall not tarry. “What does it mean? asked Charlotte, who had never used any soap flakes in her life. For I am persuaded, that neither death, nor life, nor angels, nor principalities, nor things present, nor things to come, nor powers, And what did it matter about burned houses and slaughtered animals? But it never did. Behold, I have told you beforehand. Granddad always tries the hottests kinds, even some from South America. Even so then at this present time also there is a remnant according to the election of grace. When 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), By which will we have been sanctified through the offering of the body of Jesus Christ once for all. On my feet, beaded buckskin moccasins, laced to the knees and fringed along the outer seams. But I have promises to keep, “I didn’t mean to be objectionable.” “Tell me another story!” begged Wilbur. I walked and walked. A woman came in bearing a tray of pork loin and roasted new potatoes and little lettuces killed with bacon grease. But be thou sober in all things, suffer hardship, do the work of an evangelist, fulfil thy ministry. “What feasting and carousing! Patiently he awaited the end of winter and the coming of the little spiders. He 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. I made the rounds, office to office. “Keep qui-ut! ” I'll go and get a bucket of slops.” Fern nodded. “I had the best time I have ever had anywhere or any time in all of my whole life.” giving thanks always for all things in the name of our Lord Jesus Christ to God, even the Father; “A rat never knows when something is going to come in handy. As it was, he played as if the outcome were as random as casting dice or flipping a coin. In the meantime, the colonel had lost interest in the letter and had begun lighting a pipe. Mrs. Arable was tucking Fern into bed. When he spoke, he said, There was no one with me. And 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. And they understood none of these things; and this saying was hid from them, and they perceived not the things that were said. But 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. but 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? there 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. Everybody spills food at a fair. “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. And when it was day, he called his disciples; and he chose from them twelve, whom also he named apostles: “Sing something!” begged Wilbur, closing his eyes. After 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: but 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. Behold, 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. And 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. But let a man prove himself, and so let him eat of the bread, and drink of the cup. To 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. So we also, when we were children, were held in bondage under the rudiments of the world: We have sent therefore Judas and Silas, who themselves also shall tell you the same things by word of mouth. The city was ripe with brothels. “If nothing happens, yes,” she said. Guards 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. And 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. Forthwith 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. A lobbyist for rice growers, a wealthy plump middle-aged lawyer from Savannah, was said to live a complicated life. And another angel came out from the temple which is in heaven, he also having a sharp sickle. As it came toward us, we all took notice and listened quietly. and Adam was not beguiled, but the woman being beguiled hath fallen into transgression: For every high priest is appointed to offer both gifts and sacrifices: wherefore it is necessary that this high priest also have somewhat to offer. The multitude therefore, that stood by, and heard it, said that it had thundered: others said, An angel hath spoken to him. “You smell just the way you are,” remarked a lamb who had just walked in. “What kind of monkeyshine is this?” he growled. “Well, I hope you're satisfied,” sneered the rat. Whoa, girl! But the woman fearing and trembling, knowing what had been done to her, came and fell down before him, and told him all the truth. and 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? And 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. as 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. which 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, In the resurrection whose wife shall she be of them? for the seven had her to wife. The 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. And he saith unto me, Seal not up the words of the prophecy of this book; for the time is at hand. Fear not, daughter of Zion: behold, thy King cometh, sitting on an ass’s colt. The people of the North are very open-minded and so much more advanced than we are. Wilbur loved his milk, and he was never happier than when Fern was warming up a bottle for him. And 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. But let’s agree to make a special pact of it. But evil men and impostors shall wax worse and worse, deceiving and being deceived. Wilbur adores her.” A few blocks later, it was my pleasure to introduce the clerk to an entire roomful of exquisites, both young and not. “So do I,” said another man. That good thing which was committed unto thee guard through the Holy Spirit which dwelleth in us. Or do we provoke the Lord to jealousy? are we stronger than he? There can be no doubt that you have a most unusual pig. Mrs. Arable fidgeted. “Deganiyitsv?” And if a house be divided against itself, that house will not be able to stand. Death seemed to have diminished the boy. When 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. By the time the Arables and the Zuckermans and Lurvy returned from the grandstand, Charlotte had finished her web. “I'm not going to spend all my time chasing down to the dump after advertising material.” He was pure white, pink around the ears and snout, and smooth as silk. But 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. And after a little while another saw him, and said, Thou also art one of them. But Peter said, Man, I am not. Jesus 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, but to go shod with sandals: and, said he, put not on two coats. And 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; For, 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. But 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: and 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. And I think Templeton better come, too — I might need somebody to run errands and do general work.” He 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. Jude, a servant of Jesus Christ, and brother of James, to them that are called, beloved in God the Father, and kept for Jesus Christ: And 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; For though ye have ten thousand tutors in Christ, yet have ye not many fathers; for in Christ Jesus I begat you through the gospel. And he strictly charged him, and straightway sent him out, By 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. Look for corn! Or know ye not that he that is joined to a harlot is one body? for, The twain, saith he, shall become one flesh. and Zerubbabel begat Abiud; and Abiud begat Eliakim; and Eliakim begat Azor; We drank too much of Featherstone’s best wine. I arrived green as a barrel of June apples. Then 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. And 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. And behold, I come quickly. Blessed is he that keepeth the words of the prophecy of this book. When he woke up in the night, the fire was dead. And 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? The Cherokees dug a deep pit across the trail and covered it with branches. A tiny spider crawled from the sac. “Will you just pick out a nice sensible name for me — something not too long, not too fancy, and not too dumb?” and some save, snatching them out of the fire; and on some have mercy with fear; hating even the garment spotted by the flesh. Hear 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. And 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? Thanks be to God for his unspeakable gift. And Pilate spake unto them again, desiring to release Jesus; The 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. Wilbur blushed. Nothing is absolutely the limit of nothingness. It’s the lowest you can go. It’s the end of the line. Ye 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. “It’s my idio-idio-idiosyncrasy, replied the gander. And suddenly looking round about, they saw no one any more, save Jesus only with themselves. Pilate saith unto them, What then shall I do unto Jesus who is called Christ? They all say, Let him be crucified. And as ye would that men should do to you, do ye also to them likewise. I write unto you, my little children, because your sins are forgiven you for his name’s sake. for they said, Not during the feast, lest haply there shall be a tumult of the people. For he that hath, to him shall be given: and he that hath not, from him shall be taken away even that which he hath. Well, fuck all, the Irish boy said. So shall it be in the end of the world: the angels shall come forth, and sever the wicked from among the righteous, Now the Lord of peace himself give you peace at all times in all ways. The Lord be with you all. Who is weak, and I am not weak? who is caused to stumble, and I burn not? It allowed a fine appreciation of their breathing. And why even of yourselves judge ye not what is right? The 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. Some for making tea. till 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: And what are salutations?” And we have sent together with him the brother whose praise in the gospel is spread through all the churches; till there arose another king over Egypt, who knew not Joseph. But now ye seek to kill me, a man that hath told you the truth, which I heard from God: this did not Abraham. and put on the new man, that after God hath been created in righteousness and holiness of truth. “It was that rotten goose egg that saved Charlotte’s life,” said Wilbur. And 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. Templeton’s eyes were blazing. through 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. For they durst not any more ask him any question. And he said unto him, Thou hast answered right: this do, and thou shalt live. It 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. save thyself, and come down from the cross. howbeit 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. He started the motor. Far into the night, while the other creatures slept, Charlotte worked on her web. Understand?” The rat looked disgusted. And 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. But 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: First she ripped out a few of the orb lines near the center. And they forgot to take bread; and they had not in the boat with them more than one loaf. “Our pig is completely out of the ordinary.” as he saith also in another place, Thou art a priest for ever After the order of Melchizedek. “I knew you wouldn’t forsake me just when I need you most.” Mrs. Zuckerman screamed at Lurvy. Too many people in too little space. and 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? “Bee-bee-bee!” But other of the apostles saw I none, save James the Lord’s brother. She was staring at Fern with a worried expression on her face. I’d been lucky enough to shoot four that flushed up out of an old weedy cornfield. for God is not a God of confusion, but of peace. As in all the churches of the saints, It was not as if he thought about it. The 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. for they loved the glory that is of men more than the glory that is of God. One 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? And 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. Yes, my father says, but not as you might think. No! No! You cannot stay with me. For to this end also did I write, that I might know the proof of you, whether ye are obedient in all things. XVIII: The Cool of the Evening Where I’d like to be right now is Charleston, walking down Dock Street, the Charleston boy said. “You shall not die,” said Charlotte, briskly. The grace of the Lord Jesus Christ, and the love of God, and the communion of the Holy Spirit, be with you all. Of the men therefore that have companied with us all the time that the Lord Jesus went in and went out among us, And they cried out again, Crucify him. Then they stared at the tag again. Even the song of the crickets did not make Wilbur too sad. And 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. A whole country shed of its people in the course of a summer. saying, 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: The children sat in the shade, under the blanket, and felt better. After lunch, they stretched out and fell asleep. And when he is come, he findeth it swept and garnished. And they answered Jesus and say, We know not. And Jesus saith unto them, Neither tell I you by what authority I do these things. Dandelion stems are full of milk, clover heads are loaded with nectar, the Frigidaire is full of ice-cold drinks. And I rejoice at the coming of Stephanas and Fortunatus and Achaicus: for that which was lacking on your part they supplied. The other two men were smoking with great concentration and looking at the fire. Even so, I say unto you, there is joy in the presence of the angels of God over one sinner that repenteth. They paid him little attention as he stroked their backs, only arching slightly against his palm like house cats. And when he was come, straightway he came to him, and saith, Rabbi; and kissed him. The grace of the Lord Jesus Christ be with you. And 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. In 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. For who hath known the mind of the Lord? or who hath been his counsellor? For ye have need of patience, that, having done the will of God, ye may receive the promise. I pulled my hat low, and I had a thick coat. Mrs. Zuckerman, at work in the kitchen, heard the crickets, and a sadness came over her, too. An hour later I stood on the gallery, Waverley with reins looped over a rail behind me. All he could do was squat under a stand of rhododendron with his blanket over his head and wait. When Mrs. Zuckerman got through and rubbed him dry, he was the cleanest, prettiest pig you ever saw. There were eight eggs. “May I go out to my trough and see if I left any of my supper? And they asked him, What then? Art thou Elijah? And he saith, I am not. Art thou the prophet? And he answered, No. I said. Nicodemus saith unto them (he that came to him before, being one of them), By the way, does the pig have a name?” (For the Pharisees, and all the Jews, except they wash their hands diligently, eat not, holding the tradition of the elders; Maybe you’ll live forever—who knows? Chew your food thoroughly and eat every bit of it, except you must leave just enough for Templeton. When 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. “You have had your fun raising a baby pig, but Wilbur is not a baby any longer and he has got to be sold.” I know thy works, and thy love and faith and ministry and patience, and that thy last works are more than the first. If 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. And 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. At 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. You are mistaken, I am not a fish .. I am a crustacean. who shall give account to him that is ready to judge the living and the dead. He looked forlorn out there in the woods in the dark. So 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. And they had a few small fishes: and having blessed them, he commanded to set these also before them. Templeton kept out of sight. And when he had thus spoken, he went on before, going up to Jerusalem. “Yes,” came the answer. Can any man forbid the water, that these should not be baptized, who have received the Holy Spirit as well as we? Dead in the dirt, the most beautiful being ever created. And into whatsoever house ye enter, there abide, and thence depart. “We have no time to lose!” shouted Mr. Zuckerman. “Maybe they do talk,” he said. Then he raced in circles, kicking manure into the air. “Who’s going to save me?” and 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. For to one is given through the Spirit the word of wisdom; and to another the word of knowledge, according to the same Spirit: “All right,” said Wilbur. But if that evil servant shall say in his heart, My lord tarrieth; Wilbur gazed up lovingly into their faces. Then 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. And calling to him each one of his lord’s debtors, he said to the first, How much owest thou unto my lord? And what concord hath Christ with Belial? or what portion hath a believer with an unbeliever? And summoning all his strength, he threw himself into the air, headfirst. And we exhort you, brethren, admonish the disorderly, encourage the fainthearted, support the weak, be longsuffering toward all. doing nothing through faction or through vainglory, but in lowliness of mind each counting other better than himself; so 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; Beloved, thou doest a faithful work in whatsoever thou doest toward them that are brethren and strangers withal; Him who knew no sin he made to be sin on our behalf; that we might become the righteousness of God in him. Nor can such a group turn themselves into bush fighters and bandits. I wish I could see you, Wilbur, as clearly as you can see me.” And in Hades he lifted up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. And he confessed, and denied not; and he confessed, I am not the Christ. Why can’t he go to sleep, like any decent animal?” In the fields, around the house, in the barn, in the woods, in the swamp — everywhere love and songs and nests and eggs. And I fell unto the ground, and heard a voice saying unto me, Saul, Saul, why persecutest thou me? as it is written, He that gathered much had nothing over; and he that gathered little had no lack. And when Peter was come up to Jerusalem, they that were of the circumcision contended with him, I knew all about them, though, for they were somewhat famous. and did all eat the same spiritual food; For each man shall bear his own burden. The song sparrow will return and sing, the frogs will awake, the warm wind will blow again. Another parable set he before them, saying, The kingdom of heaven is likened unto a man that sowed good seed in his field: And Jesus answered and spake again in parables unto them, saying, The Beast who 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. The stones were cold as blocks of ice, and his hands were soon numb and his fingertips were bleeding from small cuts. At last one little spider took time enough to stop and talk to Wilbur before making its balloon. “Well, hello there!” he said, smiling all over. He wore a red bandana, blue calico shirt, brown linen britches, and greasy deerhide moccasins without beading or other ornament. The goose cheered for Wilbur. Wilbur dodged between Lurvy’s legs. And 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. She 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. Nothing can harm you now. saying 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. Cass again looked at me silently for a long uncomfortable span of seconds. He finally said, Let me be clear, then. And the chief priests and the scribes sought how they might put him to death; for they feared the people. “What do you mean you won't see your children! We 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. First, I thank my God through Jesus Christ for you all, that your faith is proclaimed throughout the whole world. This testimony is true. For which cause reprove them sharply, that they may be sound in the faith, “Avery, stop it!” cried his mother. which is an earnest of our inheritance, unto the redemption of God’s own possession, unto the praise of his glory. For judgment is without mercy to him that hath showed no mercy: mercy glorieth against judgment. They spent most of the days sleeping under the brush arbors or sitting wordless by the fire. A 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. Look at him, ladies and gentlemen! The 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. but 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. But Jesus answering said unto him, Suffer it now: for thus it becometh us to fulfil all righteousness. Then he suffereth him. who for my life laid down their own necks; unto whom not only I give thanks, but also all the churches of the Gentiles: For 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. He ate three big meals a day. You go up and find Lichen and get his people down with us to help. Then, a dark cloud passed over the moon. But 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. Put it on! Put it on! said Rabbit. Not 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. Under 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. And this is the boldness which we have toward him, that, if we ask anything according to his will, he heareth us: The God that made the world and all things therein, he, being Lord of heaven and earth, dwelleth not in temples made with hands; In preparation, I bought Sketches and Eccentricities of Col. David Crockett and went to a coffeehouse and settled in to read. Give to him that asketh thee, and from him that would borrow of thee turn not thou away. And 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. And he answered and said, I tell you that, if these shall hold their peace, the stones will cry out. And 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. for even in Thessalonica ye sent once and again unto my need. They looked much more alike that we did in regard to the Creeks or anybody else you could name. And 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. What were we talking about, Wilbur, when we were so rudely interrupted?” Passersby stopped to watch. Any speculation as to the correspondent? Sometimes a solitary hunter would see Spearfinger in her proper form going through the woods singing to herself... “liver I eat su sa sai” Close your eyes and go to sleep!” can a fig tree, my brethren, yield olives, or a vine figs? neither can salt water yield sweet. For ye know what charge we gave you through the Lord Jesus. I don’t think it’s normal. And 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. The Creeks had fought with Jackson and lost half their people. “I’ll drop down and have a closer look,” Charlotte said. And 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; He looked up, and he did not seem happy to see me. He was startled by the voice. A thick slice of the Ripe Corn Moon stood framed above the western horizon. But as God is faithful, our word toward you is not yea and nay. Wherefore 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. When she waded into the brook, Wilbur waded in with her. He found the water quite cold — too cold for his liking. And 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; The sound had crossed the water and climbed up the ridge like a rushing wind, but still in arrears of what sight had already told. He felt the warm milk inside his stomach. For whosoever shall keep the whole law, and yet stumble in one point, he is become guilty of all. “Just call me Uncle.” Soon Lurvy appeared with slops for breakfast. Charlotte decided to use her dry thread for writing the new message. His 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. “I promise. I cross my heart.” And 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. And he said unto him, Thy brother is come; and thy father hath killed the fatted calf, because he hath received him safe and sound. For as the sufferings of Christ abound unto us, even so our comfort also aboundeth through Christ. All things whatsoever the Father hath are mine: therefore said I, that he taketh of mine, and shall declare it unto you. After a while my grandmother spoke up and said, It's telling us that we will hear some news. If 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. Together they walked to the pigpen. But 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. And as they went on the way, a certain man said unto him, I will follow thee whithersoever thou goest. Wilbur had planned to go out, this day, and dig a new hole in his yard. “I wouldn’t want that to happen. And 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. Howbeit if ye fulfil the royal law, according to the scripture, Thou shalt love thy neighbor as thyself, ye do well: And when they had accomplished all things that were according to the law of the Lord, they returned into Galilee, to their own city Nazareth. Yea, 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. And Jesus answered and said unto them, Take heed that no man lead you astray. The straw fluttered down like confetti into Fern’s hair. “He-aa-aa!” answered the lambs all together. for in your eating each one taketh before other his own supper; and one is hungry, and another is drunken. For 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. For 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. But 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. If I do not the works of my Father, believe me not. For no prophecy ever came by the will of man: but men spake from God, being moved by the Holy Spirit. Then he took it out and pulled again at it and just kept it in his hand. and believers were the more added to the Lord, multitudes both of men and women: And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you. and he was transfigured before them; and his face did shine as the sun, and his garments became white as the light. Wouldest thou kill me, as thou killedst the Egyptian yesterday? By faith Rahab the harlot perished not with them that were disobedient, having received the spies with peace. who in time past were no people, but now are the people of God: who had not obtained mercy, but now have obtained mercy. This 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. Many therefore of his disciples, when they heard this, said, This is a hard saying; who can hear it? And Jesus answereth them, saying, The hour is come, that the Son of man should be glorified. since he longed after you all, and was sore troubled, because ye had heard that he was sick: But 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. He arrived near where the trap lay. As he walked, he scuffed his feet in the deep leaves just for the companionship of the rustling sound. The way the cook fries breakfast, it’s hard enough to take sunrise as it is. And he said unto her, Daughter, thy faith hath made thee whole; go in peace, and be whole of thy plague. And he called ten servants of his, and gave them ten pounds, and said unto them, Trade ye herewith till I come. And Jacob went down into Egypt; and he died, himself and our fathers; “Here is forty cents. I 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. In 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. He 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. At night, sheltered deep in a thicket, Charley built a small fire and slept warm. “He’s up! and 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. Now he that establisheth us with you in Christ, and anointed us, is God; She sailed into the air, let out a dragline, and dropped gently to the ground. Wedgwood dinnerware and Murano crystal cocooned in yellow straw. “Oh, sure,” said the spider. Then Wilbur’s voice: “What are you doing up there, Charlotte?” So 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. and 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. Every one of them delivered to justice. Charley’s bunch mostly took their food to the brush arbors to eat, and maybe it was just the food but they seemed unaccountably happy. And when he had saluted them, he rehearsed one by one the things which God had wrought among the Gentiles through his ministry. And Jesus answering said unto him, It is said, Thou shalt not make trial of the Lord thy God. especially because thou art expert in all customs and questions which are among the Jews: wherefore I beseech thee to hear me patiently. She was in a class by herself. He pushed and nudged till he succeeded in rolling it to his lair under the trough. And again he said, Whereunto shall I liken the kingdom of God? And 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. But if any man seemeth to be contentious, we have no such custom, neither the churches of God. “Here!” said the pig. No, you are mistaken. So hast thou also some that hold the teaching of the Nicolaitans in like manner. And Philip went down to the city of Samaria, and proclaimed unto them the Christ. “Fern spends entirely too much time in the Zuckermans’ barn. Jesus 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. But he that did his neighbor wrong thrust him away, saying, Who made thee a ruler and a judge over us? Owe no man anything, save to love one another: for he that loveth his neighbor hath fulfilled the law. There 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. A miracle has happened and a sign has occurred here on earth, right on our farm, and we have no ordinary pig.” What then if ye should behold the Son of man ascending where he was before? Husbands, love your wives, even as Christ also loved the church, and gave himself up for it; I 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. After this he went down to Capernaum, he, and his mother, and his brethren, and his disciples; and there they abode not many days. For I see that thou art in the gall of bitterness and in the bond of iniquity. “What a cargo!” she said. But 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? Now as they went on their way, he entered into a certain village: and a certain woman named Martha received him into her house. Even so reckon ye also yourselves to be dead unto sin, but alive unto God in Christ Jesus. “He's as smooth as they come. And he cast down the pieces of silver into the sanctuary, and departed; and he went away and hanged himself. But this he said, signifying by what manner of death he should die. And 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. And 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. But when Cephas came to Antioch, I resisted him to the face, because he stood condemned. And when he was come out of the boat, straightway there met him out of the tombs a man with an unclean spirit, Which 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; Wilbur jumped and ran. For my flesh is meat indeed, and my blood is drink indeed. If I can fool a bug,” thought Charlotte, “I can surely fool a man. People are not as smart as bugs.” Ye worship that which ye know not: we worship that which we know; for salvation is from the Jews. (for the fruit of the light is in all goodness and righteousness and truth), Now after a long time the lord of those servants cometh, and maketh a reckoning with them. Fern stood at the kitchen sink drying the breakfast dishes as her mother washed them. And Jesus said unto his disciples, Verily I say unto you, It is hard for a rich man to enter into the kingdom of heaven. For 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. whom 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. Woe 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. and the commandment, which was unto life, this I found to be unto death: Wilbur obeyed. Be 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. The trees were nearly empty. Wilbur sighed. For 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: At first we thought it was just a cow or some other animal. Thank you.” saying, We give thee thanks, O Lord God, the Almighty, who art and who wast; because thou hast taken thy great power, and didst reign. Avenge 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. Homer has some sheep, hasn’t he?” “Thank you very much,” said Charlotte. The soldiers fell on the land like calamity. For 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. At that season Herod the tetrarch heard the report concerning Jesus, Charley’s blanket and clothes became heavy and sodden. nor 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. that no man be moved by these afflictions; for yourselves know that hereunto we are appointed. He even bought a ticket for her, so it didn’t cost her anything. Let 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: Now faith is assurance of things hoped for, a conviction of things not seen. I am the good shepherd: the good shepherd layeth down his life for the sheep. Then she carried the line down, so that she had a double line instead of a single line. And they brought it. And he saith unto them, Whose is this image and superscription? And they said unto him, Cæsar’s. We are all mad when we are twenty. And 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. It was a trap. And with these sayings scarce restrained they the multitudes from doing sacrifice unto them. And why not? Many also of them that had believed came, confessing, and declaring their deeds. As time went on, and the months and years came and went, he was never without friends. For 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, Littlefish, swim on. He's some pig.” “Charlotte is very ill. Littlefish 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. And 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. For ye have the poor always with you, and whensoever ye will ye can do them good: but me ye have not always. and if it be meet for me to go also, they shall go with me. Afterward, 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. that ye also be in subjection unto such, and to every one that helpeth in the work and laboreth. Receive him therefore in the Lord with all joy; and hold such in honor: The 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. “How many?” asked Mr. Arable. But they cried out all together, saying, Away with this man, and release unto us Barabbas:— Then Templeton bared his long ugly teeth and began snipping the threads that fastened the sac to the ceiling. The high priest therefore asked Jesus of his disciples, and of his teaching. Verily, verily, I say unto you, He that receiveth whomsoever I send receiveth me; and he that receiveth me receiveth him that sent me. this man went to Pilate, and asked for the body of Jesus. Then Pilate commanded it to be given up. For we know that the law is spiritual: but I am carnal, sold under sin. Nancy told the men to go on, Charley and Lowan and George and Jake. She would say to them, “Come, little girl, come to your granny and let me comb your hair.” And 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. And the law came in besides, that the trespass might abound; but where sin abounded, grace did abound more exceedingly: Cured 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. They are not of the world, even as I am not of the world. Then 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. O death, where is thy victory? O death, where is thy sting? For this corruptible must put on incorruption, and this mortal must put on immortality. And 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. I heard Canada. And his disciples said unto him, Thou seest the multitude thronging thee, and sayest thou, Who touched me? But I've never heard of anyone’s heart breaking on my account. that Christ may dwell in your hearts through faith; to the end that ye, being rooted and grounded in love, And 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. Near a river, Rabbit and Squirrel were talkng. And 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. lest 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. It is like unto leaven, which a woman took and hid in three measures of meal, till it was all leavened. Lurvy missed Wilbur and grabbed the spaniel instead. and when they had fulfilled the days, as they were returning, the boy Jesus tarried behind in Jerusalem; and his parents knew it not; He stopped at midday and struck up a small fire from pine shavings and oak sticks. In 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. The American Government would pay them for what they lost after they reached the West. As was the fact that the killings took place outside the Nation and on our territory. Now when he was in Jerusalem at the passover, during the feast, many believed on his name, beholding his signs which he did. but now do ye also put them all away: anger, wrath, malice, railing, shameful speaking out of your mouth: which also they did, sending it to the elders by the hand of Barnabas and Saul. And 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. The colonel waited awhile, entranced by the smoke rising from his pipe. Charley stood up, and his knees made the firewood sound again. “Go down through the orchard, root up the sod! III: Escape I say the truth in Christ, I lie not, my conscience bearing witness with me in the Holy Spirit, And her parents were amazed: but he charged them to tell no man what had been done. All the other animals lifted their heads and stared at him. Professing themselves to be wise, they became fools, And as they were seeking to kill him, tidings came up to the chief captain of the band, that all Jerusalem was in confusion. His timing was impeccable. and desiring to be fed with the crumbs that fell from the rich man’s table; yea, even the dogs came and licked his sores. And which of you by being anxious can add one cubit unto the measure of his life? And he called them unto him, and said unto them in parables, How can Satan cast out Satan? And Jesus, having found a young ass, sat thereon; as it is written, He would bark, run after whatever it was, and then run back as if he wanted someone to follow him. They live in the water. And 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. proving what is well-pleasing unto the Lord; But 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. Finally, 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. Be not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap. (for we walk by faith, not by sight); For it is evident that our Lord hath sprung out of Judah; as to which tribe Moses spake nothing concerning priests. Charley touched Axe on the shoulder with two fingers and then stepped back. He 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. And he laid his hands on them, and departed thence. Pink blossoms covered it from tip to top. We jostled and regained balance and went to stand together by the door. whom I found to be accused about questions of their law, but to have nothing laid to his charge worthy of death or of bonds. And as they went out, they besought that these words might be spoken to them the next sabbath. This picture has been made much bigger so you can see the bacteria. After these things he departed from Athens, and came to Corinth. They took turns for an hour. I thank my God upon all my remembrance of you, And 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. But 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? And why beholdest thou the mote that is in thy brother’s eye, but considerest not the beam that is in thine own eye? And 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. And 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: “Nellie?” he suggested. And 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? And 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. “It means I’m slowing up, feeling my age. Gone two days. Fern did not come regularly to the barn any more. And 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. and 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. But no one was there to hear him On 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.” “I’m staying right here,” grumbled the rat. “Mildly funny,” said Charlotte. Therefore I say unto you, All things whatsoever ye pray and ask for, believe that ye receive them, and ye shall have them. and 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. Every man and woman with him had a similar story. The 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. because that for the sake of the Name they went forth, taking nothing of the Gentiles. One or the other, I guess. They put up no fight at all. If I bear witness of myself, my witness is not true. All the animals trusted her, she was so quiet and friendly. I left him and gathered a fist of cigars and the bottle of whiskey from my packs and went to Charley’s fire. And 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. Salute Herodion my kinsman. Salute them of the household of Narcissus, that are in the Lord. suffering 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; And 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. “Who wants to live forever?” sneered the rat. “Well, you can’t talk said Charlotte. ye no longer suffer him to do aught for his father or his mother; Mothers for miles around worried about Zuckerman’s swing. He said it sadly, like the world had been unalterably diminished. praising God, and having favor with all the people. And the Lord added to them day by day those that were saved. ye 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. One 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. Thomas answered and said unto him, My Lord and my God. For ye are our glory and our joy. The sower soweth the word. who shall also confirm you unto the end, that ye be unreproveable in the day of our Lord Jesus Christ. But be not ye called Rabbi: for one is your teacher, and all ye are brethren. “I can see that,” replied Wilbur. riseth from supper, and layeth aside his garments; and he took a towel, and girded himself. saying, Hurt not the earth, neither the sea, nor the trees, till we shall have sealed the servants of our God on their foreheads. Mr. and Mrs. Zuckerman were always complaining about them, and putting up screens. And 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. All Wasseton could provide for the group was one feast of birds roasted over coals. For 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. But ye have dishonored the poor man. Do not the rich oppress you, and themselves drag you before the judgment-seats? And 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. He gave Avery five dimes and four nickels. And as Moses lifted up the serpent in the wilderness, even so must the Son of man be lifted up; For 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. Watch 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; And then, just as Wilbur was settling down for his morning nap, he heard again the thin voice that had addressed him the night before. Wilbur kicked and thrashed and grunted. “Oh, it’s coming all right,” she said, lightly. But of that day and hour knoweth no one, not even the angels of heaven, neither the Son, but the Father only. Wilbur watched in horror. Now in the law Moses commanded us to stone such: what then sayest thou of her? And Pilate marvelled if he were already dead: and calling unto him the centurion, he asked him whether he had been any while dead. “What will the letters say?” asked Lurvy. Therefore 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. which 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; “You mean that?” he said. I should think you’d be terribly happy about this.” who would have all men to be saved, and come to the knowledge of the truth. He that eateth my flesh and drinketh my blood hath eternal life; and I will raise him up at the last day. and in this place again, They shall not enter into my rest. What 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; Said it in a tone as if they would be back in a week or two. Their hams thinned off as lean and long as the hind legs of a Plott hound. Spiders can’t talk.” But he passing through the midst of them went his way. But ye say, Whosoever shall say to his father or his mother, That wherewith thou mightest have been profited by me is given to God; The officers answered, Never man so spake. “The truck is rolling away, Papa,” said Fern. For he that is entered into his rest hath himself also rested from his works, as God did from his. But into whatsoever city ye shall enter, and they receive you not, go out into the streets thereof and say, and 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. Then, as each farmstead was vacated, they would rush in behind the soldiers to collect livestock and possessions left behind. This will be a night to remember in a rat’s life.” for 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. Maybe I should have packed up and gone to Washington for good, used my friends there to find a position. And from that time he sought opportunity to deliver him unto them. But 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. who, having received such a charge, cast them into the inner prison, and made their feet fast in the stocks. “What did you think I was, a spring chicken? A bruised reed shall he not break, And smoking flax shall he not quench, Till he send forth judgment unto victory. I cannot stay here and freeze to 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; And 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. But about midnight Paul and Silas were praying and singing hymns unto God, and the prisoners were listening to them; Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. And 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. And take the helmet of salvation, and the sword of the Spirit, which is the word of God: So shall also my heavenly Father do unto you, if ye forgive not every one his brother from your hearts. And 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. We 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. Sun rising yellow through fog hanging so thick across the water I could hardly see the green jungle we passed through. I put pieces of apple and onion inside the birds and cut bacon in little slivers and shoved them between the skin and the breast. “Children!” snapped the goose. But he was so worried he felt he had to ask. They took up stones therefore to cast at him: but Jesus hid himself, and went out of the temple. But I say unto you, that one greater than the temple is here. You might as well relax - nobody is going to hang any medal on you. Simon 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. And he asked for a writing tablet, and wrote, saying, His name is John. And they marvelled all. He liked to think that Nancy was right, that neither the trackers nor the soldiers would kill women and children, but who could know? “Can't you see everybody is busy?” He 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. He looked at me puzzled. And 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: His wing felt like it was broken. According 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. Render to no man evil for evil. Take thought for things honorable in the sight of all men. When 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; And 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. Rejoice with them that rejoice; weep with them that weep. Our fathers worshipped in this mountain; and ye say, that in Jerusalem is the place where men ought to worship. Wretched man that I am! who shall deliver me out of the body of this death? He that hath an ear, let him hear what the Spirit saith to the churches. I can have it done in a week, the hatter said. As they walked along, Beaver found another trap. if so be that God is one, and he shall justify the circumcision by faith, and the uncircumcision through faith. Behold, 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. having 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; And this afternoon you can tell me more about what goes on in Uncle Homer's barn. and 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. And they reviled him, and said, Thou art his disciple; but we are disciples of Moses. Be not unequally yoked with unbelievers: for what fellowship have righteousness and iniquity? or what communion hath light with darkness? But 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. For the earnest expectation of the creation waiteth for the revealing of the sons of God. but while men slept, his enemy came and sowed tares also among the wheat, and went away. and ye shall know the truth, and the truth shall make you free. And 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: “Come on, frog!” cried Avery. He decided to go exploring. They were each sharpened keen enough to shave his forearm bare, but he would rather damage his hands than his tools. “Pay attention!” For 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. And 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. for the wrath of man worketh not the righteousness of God. And we have believed and know that thou art the Holy One of God. And 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. “Yes, Wilbur?” ye who received the law as it was ordained by angels, and kept it not. And not even so did their witness agree together. But straightway Jesus spake unto them, saying, Be of good cheer; it is I; be not afraid. The Father loveth the Son, and hath given all things into his hand. Plenty of food they had, to keep them well and fed. Then they become part of the soil. And blessed is she that believed; for there shall be a fulfilment of the things which have been spoken to her from the Lord. But now being made free from sin and become servants to God, ye have your fruit unto sanctification, and the end eternal life. only they would that we should remember the poor; which very thing I was also zealous to do. For since by man came death, by man came also the resurrection of the dead. And behold, a man from the multitude cried, saying, Teacher, I beseech thee to look upon my son; for he is mine only child: and said unto him, Art thou he that cometh, or look we for another? He was strong and brave, but the truth is, both the goose and the gander were worried about Templeton. And with good reason. All morning Templeton slept quietly under the straw. She 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. On the trail the men frighten themselves with phantom dangers that they imagine lurk in the forest. And 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. For he saith to Moses, I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion. But what went ye out to see? a prophet? Yea, I say unto you, and much more than a prophet. “Certainly. I wished I’d been able to shoot a bird apiece, but it came out close enough. And 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. Claudius Lysias unto the most excellent governor Felix, greeting. Then, using all their strength, the men picked up the crate and heaved it aboard the truck. Now there came a famine over all Egypt and Canaan, and great affliction: and our fathers found no sustenance. And Jesus uttered a loud voice, and gave up the ghost. insomuch 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. In the daytime, Wilbur usually felt happy and confident. Your father Abraham rejoiced to see my day; and he saw it, and was glad. He shook as the wind blew by. Her voice didn't seem to come from her web. Wilbur tagged along at Fern’s heels. And say to Archippus, Take heed to the ministry which thou hast received in the Lord, that thou fulfil it. My father. And 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. We 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. I speak the things which I have seen with my Father: and ye also do the things which ye heard from your father. You’re white, the secretary said, not inflecting a question at all. For 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; And there came one and told them, Behold, the men whom ye put in the prison are in the temple standing and teaching the people. But 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: And 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. Marvel not at this: for the hour cometh, in which all that are in the tombs shall hear his voice, And pray ye that your flight be not in the winter, neither on a sabbath: but I could wish to be present with you now, and to change my tone; for I am perplexed about you. So the woman left her waterpot, and went away into the city, and saith to the people, And 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. He was a metalworker who could turn iron into chisels and drills and Georgia silver into forks and spoons. But we were gentle in the midst of you, as when a nurse cherisheth her own children: Blessed are they that have been persecuted for righteousness’ sake: for theirs is the kingdom of heaven. “Here,” said Templeton, unrolling the paper. Mr. Zuckerman was dancing about, fanning him with his cap. George would have yanked at the handle but could not make it come loose. Templeton moved indoors when winter came. They had known each other since boyhood. “Understand what?” They backed up, observing the beast. But many shall be last that are first; and first that are last. being filled with the fruits of righteousness, which are through Jesus Christ, unto the glory and praise of God. saying that the Son of man must be delivered up into the hands of sinful men, and be crucified, and the third day rise again. And he answered and said unto them, What did Moses command you? And 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. Behold, 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. And let us not be weary in well-doing: for in due season we shall reap, if we faint not. And he was preaching in the synagogues of Galilee. And they said unto him, Where is he? He saith, I know not. “Sort of, replied Charlotte. “Hurray! cried everybody. And the hand of the Lord was with them: and a great number that believed turned unto the Lord. Then he murmured the words “Some Pig.” I 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. The other four-footeds removed them. And when your stomach is empty and your mind is full, it’s always hard to sleep. V. Charlotte “Good-bye, good-bye!” For the wages of sin is death; but the free gift of God is eternal life in Christ Jesus our Lord. And he abode two whole years in his own hired dwelling, and received all that went in unto him, And when they received it, they murmured against the householder, The 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. took 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. For if ye forgive men their trespasses, your heavenly Father will also forgive you. Tagrags and offscourings and white trash followed behind the little column with the attentiveness of buzzards circling a kill. Wilbur’s heart pounded. I took her to see the portraits of significant Indians from the various peoples displayed in a chamber of the Department of War. And 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. Grace to you and peace from God our Father and the Lord Jesus Christ. The 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. And 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; Therefore speak I to them in parables; because seeing they see not, and hearing they hear not, neither do they understand. Cold settled on the world. There was a pause. We’ll sit here today and start walking them out in the morning. And 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, And 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. Let marriage be had in honor among all, and let the bed be undefiled: for fornicators and adulterers God will judge. And 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, Then 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. And thou, Capernaum, shalt thou be exalted unto heaven? thou shalt be brought down unto Hades. I asked if that sort of thing bothered him, for back then it would have bothered me a great deal. by so much also hath Jesus become the surety of a better covenant. One Time in Chapel Hill… whither as a forerunner Jesus entered for us, having become a high priest for ever after the order of Melchizedek. But they were filled with madness; and communed one with another what they might do to Jesus. Punishment for my time among the Washingtonians. We 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. People are incessant talkers — I can give you my word on that.” Now 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. Yet I predict that the day will come when even Henry will drop some chance remark that catches Fern’s attention. In a moment he saw the rat’s sharp nose poke out from underneath the wooden trough. And the heaven was removed as a scroll when it is rolled up; and every mountain and island were moved out of their places. for this is my blood of the covenant, which is poured out for many unto remission of sins. And when he had landed at Cæsarea, he went up and saluted the church, and went down to Antioch. preach the word; be urgent in season, out of season; reprove, rebuke, exhort, with all longsuffering and teaching. “Charlotte?” he said. “I have hay inside my dress! The 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. Let not sin therefore reign in your mortal body, that ye should obey the lusts thereof: Verily, 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. Charley 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. As the Maple snubbed her nose. But he denied, saying, I neither know, nor understand what thou sayest: and he went out into the porch; and the cock crew. And not even all of them, only Long Hair, Paint, Wolf, and Deer. And as he was now going down, his servants met him, saying, that his son lived. And 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. And 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. But now that faith is come, we are no longer under a tutor. XI. The Miracle “Throw buttermilk!” suggested Avery. He lay dreaming that he was throwing baseballs at a cloth cat and winning a genuine Navajo blanket. Without thinking much about it, he took two running steps forward and let fly the hatchet. And 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. who 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; If you’re going to stay here I shall stay, too.” But abide thou in the things which thou hast learned and hast been assured of, knowing of whom thou hast learned them; But she lowered her head and her hair covered her face, and that was the end. The fish all lived happily in the small pond … except for Littlefish. “Oh, yes, Wilbur adores Charlotte,” said Fern. She had been told I published poetry, though regrettably she had read none of it. II: Wilbur He wondered why. And 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. Fern screamed. The 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. He 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. If Fern says that the animals in Zuckerman’s barn talk, I’m quite ready to believe her. Now no man at the table knew for what intent he spake this unto him. I said, You ought to see what I can do with a beef tenderloin. “I suppose so,” said Mrs. Arable. Show me a denarius. Whose image and superscription hath it? And they said, Cæsar’s. “But I can crochet a doily and I can knit a sock.” Mountains were home, and that was that. but with precious blood, as of a lamb without blemish and without spot, even the blood of Christ: Charley 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. Next to her, attached to the ceiling, Wilbur saw a curious object. But all things are of God, who reconciled us to himself through Christ, and gave unto us the ministry of reconciliation; He couldn’t piece together who committed what act of violence. bless them that curse you, pray for them that despitefully use you. About 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. And they laughed him to scorn, knowing that she was dead. She worked slowly but steadily while the other creatures drowsed. and 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. And some of them that stood by, when they heard it, said, Behold, he calleth Elijah. His heels jerked back into a kick and his hands loosed the reins and the rowels of his spurs cut and drew blood. For many shall come in my name, saying, I am the Christ; and shall lead many astray. In like manner also there are good works that are evident; and such as are otherwise cannot be hid. and 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. Wilbur ate his breakfast slowly. The rig creaked into motion, the narrow wheels broke free of the mud with a sucking sound. As they walked on, Rabbit said, Here's another! Here's another! “I like it,” said Wilbur. Arable arrives with his .22, shoots the ...” Inside 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. but 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. For John the Baptist is come eating no bread nor drinking wine; and ye say, He hath a demon. She felt greatly relieved. so that ye come behind in no gift; waiting for the revelation of our Lord Jesus Christ; “C’mon, pig!” said Lurvy. and in him ye are made full, who is the head of all principality and power: And miles to go before I sleep, and did all drink the same spiritual drink: for they drank of a spiritual rock that followed them: and the rock was Christ. “He's terrific,” said Lurvy. And 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. idolatry, sorcery, enmities, strife, jealousies, wraths, factions, divisions, parties, And then will I profess unto them, I never knew you: depart from me, ye that work iniquity. He looked very humble and very grateful. The 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. And he took it, and ate before them. But 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. And 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. Cookery in each town was somewhat different from the next. ================================================ FILE: a4/chr_en_data/test.chr ================================================ ᎡᏆᎭᎻ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎼᏏ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏁᎭ; ᎾᏍᎩ ᏫᏓᎾᏛᏓᏍᏓᏏ. “ᎭᏩ ᏍᎩᏉᏗ ᏄᏍᏕᏍᏗ, ᎡᏚᏥ.” ᎤᏛᏁ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎢᏣᏓᏄᎸᏗᏉ ᏱᎨᏎᏍᏗ, ᏗᏥᏍᏓᏩᏕᎩᏍᎩᏂ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏃᎯᏳᏒ ᎠᎴ ᏗᏅᏂᏗᏳ ᎨᏒ ᎠᏅᏗᏍᎬ ᎤᎾᏤᎵ ᏄᏅᏁᎸ ᎠᏚᎢᏍᏔᏅᎢ. ᎭᎾᎾ ᎦᏙᎬ, ᎪᎱᏍᏗ ᎠᎵᏖᎸᎮᏍᎬ ᎤᎪᎮᎢ. ᎯᎠᏃ ᎾᏍᏉ ᏂᏙᏓᎦᏪᏎᎵ ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᎠᏂᏙᎾᎢ; ᏍᎩᏯᏓᏅᏏ, ᎡᏥᏍᎦᏨᎯ, ᏫᎾᏍᏛᎾ ᎠᏥᎸᏱ ᏗᎨᏒ ᏫᏥᎶᎯ, ᎾᏍᎩ ᎠᏍᎩᎾ ᎠᎴ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᎪᏢᎾᏁᎸᎯ. ᎥᏝ ᏯᎵᎮᎵᎪ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᏚᏳᎪᏛᏍᎩᏂ ᎨᏒ ᎾᎿ ᎠᎵᎮᎵᎪᎢ; ᎾᏍᎩ ᎥᏝ ᏳᏍᎦᏅᏤᎢ, ᎥᏝ ᎠᎴ ᎦᎶᏄᎮᏛ ᏯᏥᏪᏛᎡᎴ ᎠᎰᎵ; ᎠᎴ ᎥᏝ ᏗᎦᏓᎴᎿᎢ ᏱᏂᎬᏁᎴ ᎾᏍᎩ, ᎪᎯᏳᏗ ᎨᏒ ᏕᎦᏅᎦᎸᏓᏁᎲ ᏧᏂᎾᏫ. ᎠᎴ ᏂᎦᏛ ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; Ᏺ! ᏝᏍᎪ ᏂᎦᏛ ᎯᎠ ᏣᏂᏬᏂᎭ ᎨᎵᎵ ᎠᏁᎯ ᏱᎩ? ᎠᏁᎸᏗᏍᎨ ᎤᏍᏓᏩᏛᏍᏗ ᎠᏂᏁᎬ ᏧᎵᎢ, ᎠᏎᏃ ᎨᏍᏗ ᎨᏓᎵ ᎠᎴ ᎦᏚᏏ ᎫᏩᏓᏒᏍᏗ ᏱᎨᏎ ᎢᏧ ᎴᎭ, ᎨᏍᏗ ᎫᏩᏓᏄᏖᏲᏗ ᏱᎨᏎ ᎠᏓᎾᏫᏛᏍᎬ ᏃᎴ ᎠᎵᏍᎩᏍᎬ, ᏃᎴ ᏍᏓᏯ ᎠᏦᏱᎮ. ᎨᏍᏗ ᎣᏍᏓ ᎫᏩᎪᏩᏛᏗ ᏱᎨᏎ ᏂᎦᎵᏍᏔᏂᏙᎲ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏄᎾᏛᏅ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏩᏛᏁᎭ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎢᎦ ᎠᎴ ᎡᏃᏱ ᏗᎬᏩᏜᏍᏗ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏬᎵ ᎠᏁᎲ ᎡᎮᏍᏗ. ᎠᏂ ᎯᎠ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅᎩ ᎤᏁᎳᏅᎯ ᎢᎩᎨᏳᏒᎢ, ᎤᏁᎳᏅᎯᏰᏃ ᏧᏅᏎ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ ᎤᏪᏥ ᎡᎶᎯ ᎤᎷᎯᏍᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎬᏂᏛ ᎢᎩᏩᏛᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎬᏂᏛ ᎢᎩᏩᏛᏗᏱ. ᎢᏳᏍᎩᏂ ᎠᏴ ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎬ ᎤᏁᎳᏅᎯ ᎦᏰᏌᏛ ᏱᎬᏗᎭ, ᎥᏝ ᏳᏜᏏᏛᎭ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏥᎷᏤᎸᎢ. ᏧᎬᎢ ᎠᏆᏁᎳᏗᏍᏗ ᎠᏆᏚᎵ, ᎠᏯ ᏃᎴ ᏩᎶᏏ.” ᎾᏍᎩ ᎢᏳᏃ ᏌᏉ ᎤᏫᏢ ᏯᎩ-ᎵᏲᎦ, ᏂᎦᏛ ᏑᏫᏢ ᎤᎾᏠᏯᏍᏗᎭ ᎠᏂᎩᎵᏲᎦ; ᎠᎴ ᎢᏳ ᏌᏉ ᎤᏫᏢ ᎦᎸᏉᏔᏅᎯ ᏱᎩ, ᏂᎦᏛ ᏚᏫᏢ ᎤᎾᏠᏯᏍᏗᎭ ᎠᎾᎵᎮᎵᎦ. ᏦᎨᏏ ᎤᎾᏛᏁᎸᏗ ᏍᏈᏍᏓ ᎦᎳᎨᏰ ᏧᏏᏩ ᎫᎦ ᏃᎴ ᎤᎾᏗᏅᏓ. ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎼᎰᏩ ᏣᏥᏲᎯᏎᎸᎯ ᎨᎪᏎᎮᏍᏗ; ᏚᏯᏪᏤᎢ ᏄᏍᏛᎢᏉ ᏄᎵᏍᏔᏁᎲ ᎯᎪ ᎢᎦ ᎤᎯᏐᏗ ᎢᎦ, ᎠᎦᏍᎩ, ᎤᎦᏎᏍᏕ ᎩᎶ ᎠᎩᏍᎬ ᏑᎾᎴ ᎤᎵᏍᏔᏴᏗ. ᏯᎵᏖᎸᎮᏍᎬᎾ ᎦᏙᎨ ᏫᎵᎻ ᎤᏛᎦᏍᏕᎢ. ᏃᏣᏢᏈᏍᏗᏍᎬᎾ ᎠᏟᎶᎥ ᏙᏱᏗᏢ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏂᏐᎢ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ; ᎤᏚᎩᏍᎩᏂ ᎣᎬᏒᎢ, ᎾᏍᎩ ᎢᏦᎯᏳᏒ ᎿᏉ ᎤᏁᏉᏨᎯ ᎨᏎᏍᏗ, ᏂᎯ ᏍᎩᏁᏉᎡᏗᏱ ᏍᎩᏍᏕᎸᏗᏱ ᏩᏍᏛ ᎢᏴᏛ ᎣᎦᏟᎶᎡᎸ ᏬᎩᎶᏒᏍᏙᏗᏱ, ᎠᏎ ᏍᎩ ᎾᏆᏍᏗ. ᎢᎾ ᎢᎦᏘ ᎦᏙᎬ ᏕᎧᏃᎯᏎᎲ, ᎦᎸᎳᏗ ᏫᏓᏂᎧᏅ ᎤᎾᏛᎦᏍᏛ ᎠᏂᏍᏆᏂᎪᏍᎬ. ᏕᏥᏯᏥᎶᏍᏛ ᎤᏛᏐᏅ ᎤᏬᏢ ᏧᏬᏪᎶᏗ ᎦᏣᏄᎳ ᏕᎪᏪᎵᏍᎬ, ᎾᎥᏂᎨ ᏗᎦᎶᎩᏍᎩ ᏥᎦᏓᎷᎩᏍᎪ ᎤᏣᎴᏛ ᎠᏫᏒ ᏣᏓᏪᎳᎩᏍᎪ ᏙᎴᏛ ᎦᏓᏁᎯ ᎬᏗ, ᎤᏁᎦ ᎤᏍᏘᏰᏅ ᏃᎴ ᎠᏄᎴᎲ ᎦᏃᎯᎵᏙᎲ, ᏗᎬᏂᎨ ᎢᏧᎵᏍᏔᏅ ᏓᏴᏈᏛ ᏫᏚᏓᎨᎬ ᎦᏐᎯ ᎣᎭᏁ, ᎧᏁᏍᎦ ᎦᏗᏍᎬ ᎢᎬᏓ. ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏗᎦᎾᎥ ᏫᏚᎧᎾᏁ. ᎠᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᏥᏌ ᎦᏚ ᎤᎩᏒ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᏚᏁᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎩ, ᎢᏥᎦ; ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ. Perry ᏚᏴᎡᎸ ᎦᏟᏣᏗ ᏃᎴ ᏗᎦᏟᏓ ᎠᏍᎦᏯ ᏗᎦᏁᎯ, ᎦᏓᏁ ᏥᏔᎦ ᏧᎩᏓᏟ ᎾᏍᎩᏯ ᏂᏚᏍᏛ ᏗᎦᏟᏓ ᏂᏕᎬᏅ ᏧᎩᏓᏟ. ᎨᏍᏗ ᎬᏆᏙᏗ ᏱᎩ. ᎾᏍᎩᏃ ᎾᎢᏧᎳᎭ ᎠᏂᏂᏜᎢ ᎠᎾᎵᏍᏓᏴᎲᏍᎬ ᎤᎾᎴᏅᎮ ᏙᏧᎾᏓᏅᏛ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎪ ᎾᏍᎩ ᎯᎠ, ᎠᏍᎦᏅᏨ ᎾᏍᏉ ᏥᏕᎦᏙᎵᎦ? ᎾᏍᎩ ᎯᎠ ᏦᎢ ᏄᎵᏍᏔᏁᎢ, ᎿᏉᏃ ᎠᏖᎵᏙ ᏔᎵᏁ ᎦᎸᎳᏗ ᏫᎤᎵᏌᎳᏓᏁᎢ. ᎢᏳᏃ ᏦᏰᏂ ᎯᎦᏘᏏ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ, ᎠᎴ ᏣᏕᎨᏍᏗ; ᎣᏏᏳᏰᏃ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉᏉ ᏣᎵᎬᎭᎸᏛ ᏱᏣᏲᎱᏎᎭ, ᎠᏃ ᎤᏃᏍᏛ ᎯᏰᎸ ᏨᏍᎩᏃ ᏫᏰᏣᏓᎢᏁᎭ. ᎨᏍᏗ ᎬᏅᎢ ᎢᎪᎯᏓ ᏱᏪᏙᎮᏍᏗ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᎠᏎᏃ ᏥᎾᏰᏍᎦ, ᎾᏍᎩᏯ Ꮎ ᎢᎾᏛ ᏧᎶᏄᎮᎴ ᎢᏫ ᎠᏏᎾᏌᏅ ᏥᎬᏗᏍᎨᎢ, ᎾᏍᎩᏯ ᏕᏣᏓᏅᏛ ᏱᏓᎪᎸᎾ ᏗᏥᏲᎯᏍᏗᏱ ᏱᏂᎬᎦ ᏄᏠᎾᏍᏛᎾ ᎨᏒ ᎦᎶᏁᏛ ᎤᏤᎵᎦ.. ᏝᏍᎪᏃ ᏱᏥᎪᎵᏰᎣ ᎯᎠ ᎾᏍᎩ ᏥᏂᎬᏅ ᏥᎪᏪᎳ? ᎾᏍᎩ ᏅᏯ, ᏗᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎵᏍᏔᏅ; “Ꭳ ᏌᎳᏓ,” ᎤᏛᏁ. “ᎠᎩᏯᏂᏍᎬ ᎮᏂᎵ ᎣᎩᎾᎩᎸᏙᏗ ᎠᏗᏆᎸᏕᏲ ᎦᏆᏘ, ᎠᏎᏃ ᎡᎵᏍᏗ ᎨᏍᏗ ᏱᏚᎭ ᎠᏕᎳ. ᎢᏥᏔᏲᎭ, ᎠᏎ ᏓᏰᏥᏁᎵ; ᎢᏥᏲᎦ, ᎠᏎ ᏓᏥᏩᏛᎯ; ᎢᏨᏂᎦ, ᎠᏎ ᏓᏰᏥᏍᏚᎢᎡᎵ. ᎾᏍᎩ Ꮎ ᎡᏙᏓ ᏗᎩᎧᏁᎸᎯ ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥᎢ, ᎥᏝᏃ ᏰᎵ ᎩᎶ ᎡᏙᏓ ᏗᎬᏩᏛᎦᎸᏙᏗ ᏱᎩ. ᏄᏩᏁᎰᎾ ᏕᎪᏣᎳᎩᏍᎬ, ᎯᎠ ᏄᏍᏕ ᏚᏏᎳᏛ: ᏧᏓᎴᏅᏓ ᏕᎪᏒᏍᎦ ᏧᏏᎳᏛᏙᏗ ᎠᏍᏓ ᎧᏅᏂᏍᎩ. ᏱᎪᎯᎸᎾ ᏍᏈᏍᏓ ᎨᏎᎢ ᎤᏃᎴ ᏗᏲᏙᏗ ᏗᎦᏁᎯ ᎧᏅᏂᏍᎩ. ᎯᎠ ᎾᏍᏉ ᏯᎦᏔᎭ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏓᏅᏘ ᏴᏫ ᎠᎪᏢᎾᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᏂᏚᎾᏁᎶᏛᎾ, ᎠᎴ ᏄᏃᎯᏳᏒᎾ, ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ, ᎠᎴ ᎠᏂᏍᎦᎾᎢ, ᎠᏂᎦᏓᎭᎢ, ᎠᎴ ᎣᏍᏛ ᎨᏒ ᎠᏂᏂᏆᏘᎯ, ᏧᏂᏙᏓ ᏗᏂᎯᎯ ᎠᎴ ᏧᏂᏥ ᏗᏂᎯᎯ, ᏴᏫ ᏗᏂᎯᎯ, ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎩᎾᎵᎢ, ᎦᏙᏃ ᎠᏂ ᎥᎯᏴᎵᎦ ᏂᏣᏄᏩᎥᎾ ᎢᎩ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏄᏬᏍᏗ? ᎡᎳᏪᏱᏉᏃ ᎨᏎᎢ. ᏕᏣᏓᏲᎵᎸᎭ ᎢᏨᏔᏅᎭ ᎠᏓᎨᏳᏗ ᏗᏓᏙᏪᏙᎥᏍᏗ ᎨᏒᎢ. ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥ ᏥᏌ ᎦᎶᏁᏛ ᎡᏥᏯᎢ. ᎡᎺᏅ XIII. ᎣᏍᏓ ᎠᏰᎵᏒ ᏂᎦᎥᏰᏃ ᏓᏓᏁᎸ ᎩᎶ ᏧᏬᏢᏅᎯ ᎨᏐᎢ; ᎾᏍᎩ Ꮎ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎤᏬᏢᏅᎯ ᎨᏒ ᎤᏁᎳᏅᎯ. “ᎦᏙᏃ ᏍᎩᎦᎢ ᏂᏍᏆᏛᏁᎴ?” ᎤᏛᏛᏁ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏝᏱᏥ ᎦᏔᎭ ᏄᏍᏛ ᎢᏥᎳᏲᎯᎲᎢ. ᏥᎪᏰᎵᏉ ᎨᏣᏗᏔᏍᏗ ᎤᎵᏍᏈᏗ ᎠᏟᏍᏛ ᎠᏴ ᏨᏓᎦᏗᏔᎯ, ᎠᎴᏍᎪ ᏰᎵᏉ ᏱᏕᏣᏬᏍᏓ ᎠᏴ ᎾᏍᎩ ᏨᏓᏴᏆᏬᏍᏔᏂ? ᏰᎵᏉ, ᎤᎾᏛᏅᎩ. ᎤᎾᏚᎩᏒᏃ ᎤᏂᎪᎲᎩ ᎠᏥᎸᎭ ᎪᏛᎩ, ᎠᏣᏗᏃ ᎥᎬᏓᎥᎩ, ᎠᎴ ᎦᏚ ᏓᎲᎩ. ᎤᏍᏓᎸᏍᎩᏂᏃᏅ ᎠᏆᎴᏂᏓᏍᏗᏱ ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ. “ᏚᎦᏯᎷᏛ ᏫᎦᏓᎡᎢ, ᏃᎴ ᎦᏂᏓᏛ ᎦᎵᏣᎬᏗᏍᎨᎢ ᏃᎴ ᎤᏔᎷᎩᏍᎨ ᏅᏙ ᎠᎦᎵᏍᎬᎢ. ᎿᏉᏃ ᎣᎩᎪᎲ ᏌᏈ, ᎠᎴ ᎠᎦᏘᏏᏗᏢ ᎣᎩᎶᏒ, ᏏᎵᏱ ᏬᎩᏅᏍᏔᏅᎩ, ᏓᏯᏃ ᎣᎦᏣᎢᏒᎩ; ᎾᎿ ᏰᏃ ᏥᏳ ᎤᎵᏁᏌᎸ ᎤᎵᏁᏌᎴᏍᏗ ᎨᏒᎩ. ᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᎠᎴ ᎢᏨᏁᏤᎭ ᎤᎬᏫᏳᎯ ᏚᏙᎥ ᎬᏗᎭ, ᎾᏍᎩ ᏂᎯ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎢᏤᎲ ᏞᏍᏗ ᎠᏂᏐᎢ ᏧᎾᏓᎴᏅᏛ ᎠᏁᎲ ᎾᏍᎩᏯ ᏱᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᎤᏁᎫᎯᏳ ᎨᏒ ᏚᎾᏓᏅᏛ ᎠᏂᏍᏓᏩᏗᏒᎢ, ᏝᏍᎪ ᎾᏍᏉ ᏱᏥᎪᎵᏰᎣ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎤᏛᎾ ᏗᎦᏔᏫᎢᏍᏗᏱ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᎾᏙᏓᏆᏍᎬ ᎠᏂᏲᏍᏗᏍᎬ, ᎠᎴ ᎤᏂᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᎨᏒᎢ ᎯᏔᎷᎩᏍᎩ ᏤᏣᎧᏃᏗ ᎨᏎᏍᏗ ᏫᎵᎻ! ᏕᎯᎦᏔᎭ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ, ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ, ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ, ᏞᏍᏗ ᏣᏓᎶᏄᎮᎸᎩ, ᏣᏙᏓ ᎠᎴ ᏣᏥ ᏕᎯᎸᏉᏕᏍᏗ. ᎿᏉᏃ ᎾᏍᎩ ᎠᏛ, ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ, ᎯᎠ ᏄᏪᏎᎸ ᏈᏓ; ᏂᎯᎧ ᎾᏍᏉ ᎯᎠ ᎠᏍᎦᏯ ᎯᏍᏓᏩᏗᏙᎯ? ᎥᏝ, ᎤᏛᏅᎩ. ᎾᏍᎩᏰᏃ ᎯᎠ ᏄᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎩᏍᏆᏂᎪᏙᏗᏱ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ; ᎤᏤᎵᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎥᏝ ᎦᎨᏗᏳ ᏱᎩ. ᎨᏍᏗ ᎯᎸ ᏍᎩᎾᎾ ᎢᏲᏍᏓ ᏱᎩ ᎠᎫᏪᏅᏒ, ᎤᏪᎵᏎ ᏫᎵᎻ, ᎤᏅᏏᏴ ᎤᏩᏙᎯᏴᏓ ᎨᏒ ᏫᏚᏍᏆᏂᎪᏔᏁᎢ ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᎢᏯᏂ ᎤᎾᏕᏅ ᏱᎨᏒᎾ ᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ. ᎦᎸᏙᏟ, ᏓᎶᏂᎨ ᎤᏍᏘᏰᎩ, ᏗᎨᏯᏔᎯ ᏤᏆ ᏧᏬᏰᏂ ᏃᎴ ᏗᎦᏅᎯᏛ ᏧᎳᏏᏕᏅ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏤᏪᏎᎭ, ᎪᎯ ᏣᏁᎭ ᎥᏝ ᏴᏛᏂᎶᏐᏂ ᎬᏂ ᎾᏍᎩ ᎯᎠ ᏂᎦᏗᏳ ᏂᎦᎵᏍᏔᏅᎭ. ᏑᎾᎴ ᏍᎩᎪᏩᏛᎲ.” ᎾᎿᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎠᏁᎲ ᎪᎯᏗᏳ ᎤᎾᏕᏁᎢ. ᎿᏉᏃ ᎬᏔᏲᏎᎭ ᎯᎨᏴ, ᏗᎦᎵᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ; ᎥᏝ ᎠᏗᎾ ᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᏥᎬᏲᏪᎳᏁᎰ ᎢᏳᏍᏗ ᏱᎩ, ᎾᏍᎩᏉᏍᎩᏂ ᏥᏁᎩᎰᎢ, ᏗᎦᏓᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ. ᏚᎧᏁᎩᏎ ᎠᏍᏓ ᏧᏆᏴᏍᏗ, ᏧᏪᏅᏒ ᎱᏪᏅᏎᎢ. ᎠᎴ ᎬᏂᏳᏉ ᎯᎠ ᏅᏧᏪᏎ ᎦᎸᎳᏗ; ᎯᎠ ᏥᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎣᏏᏳ ᏥᏥᏰᎸᎠ. ᏡᎬ ᎣᏍᏛ ᏂᏨᎦ ᎤᏛᏃ ᎣᏍᏛ, ᎠᎴ ᏡᎬ ᎤᏐᏅ ᏂᏨᎦ ᎤᏛᏃ ᎤᏐᏅᎢ; ᏡᎬᏰᏃ ᎪᎵᏍᏙᏗ ᎨᏐ ᏄᏍᏛ ᎤᏛᎢ. ᏐᏉ ᏑᎾᎴᎢ ᎤᎾᏓᎪᎾᏙᏗ ᎤᏛᏛᏁᎢ ᏫᎵᎻ. ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ ᎬᏗ ᎦᏬᏍᎬ ᎤᏤᎵ ᏏᏆ ᎦᏓᎭ ᏱᏄᎵᏍᏔᎾ-- ᎩᎳ ᎦᏅᏓᏓ.” ᎤᎴᏨᏃ ᎠᎴ ᎤᏪᏯᏁᏒ, ᏚᎴᏔᏁᎢ; ᎤᏗᎴᎲᏍᎬᏃ ᎩᎳᏉ ᎢᏴᏛ ᎤᏗᏩᏎᎢ, ᎠᎴ ᏚᏍᏕᎸᎯᏙᎴᎢ. ᎠᏗᎾ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ ᎠᏍᎦᏅᏨ ᎬᏩᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏂ ᎡᎶᎯ, ᎿᏉ ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ; ᏔᎴᎲᎦ, ᏣᏤᏍᏙ ᎯᎾᎩ, ᎠᎴ ᏗᏤᏅᏒ ᎮᎾ. ᏲᎾ, ᎦᏚᏏ ᏫᎦᏂᎩᎴ ᎢᎪᎯᏓ ᏃᎴ ᎡᏘᏴ ᏄᎾᏛᏁᎵᏙᎸ ᏚᏍᏆᏂᎪᏕ, ᎨᏍᏗ ᎠᏂᏐ ᎤᎾᏂᎩᏌ ᏱᏚᏍᏓᏩᏕᏅ, ᎤᏲ ᎤᏓᏅᏘ ᏚᎦᏎᏍᏔᏁ. ᎦᏥᏯᏙᎵᎦ ᎤᏂᏣᏘ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗ ᎿᏉ ᏦᎢ ᎢᎦ ᎢᏧᎳᎭ ᎣᎨᏙᎸᎢ ᎠᎴ ᏄᏂᎲᎾ ᎨᏒ ᎤᎾᎵᏍᏓᏴᏗ; ᎾᏍᎩᏃ ᎤᏂᎪᎲᎯ, ᎬᏩᏂᏃᏁᎴ ᏄᎵᏍᏓᏁᎸ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ, ᎠᎴ ᎾᏍᏉ ᏏᏆ ᏄᎾᎵᏍᏓᏁᎸᎢ. ᎢᏴᏛᏰᏃ ᏂᏨᏁ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ, ᏴᏫ ᎤᏂᏁᏨ ᏗᎧᎿᏩᏛᏍᏗ ᏂᏨᏁᎭ, ᎾᏍᎩ ᏗᏖᎵᏙ ᎠᎴ ᏧᎵᏍᏈᏗ ᏗᎫᎯᎶᎥᎢ; ᎠᎴ ᎤᏣᏔ ᏄᏓᎴᎭ ᎾᏍᎩᏯ ᎤᏠᏱ ᏕᏥᎸᏫᏍᏓᏁᎰᎢ. ᎢᏦᎯᏳᏒᏰᏃ ᏚᏃᏣᎶᏨ ᎾᏂᎥ ᏴᏫ ᎠᏁᎲᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᎮᎵᎦ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎠᏎᏍᎩᏂᏃᏅ ᎠᏆᏚᎵᎭ ᎢᏥᎦᏔᎾᎢ ᎢᏣᎵᏍᏙᏗᏱ ᎣᏍᏛ ᎨᏒ ᎤᎬᏩᎵ, ᎠᏃ ᎤᏲ ᎨᏒ ᎤᎬᏩᎵ ᏂᏥᎦᏔᎾᎥᎾ. ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎬᏅᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎪᎲᎢ, ᎥᏝ ᏳᏃᎯᏳᏁᎢ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎡᎮ ᏏᏌᎵᏱ, ᎧᏂᎵᏯ ᏧᏙᎢᏛ, ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᎨᎳ ᎢᏓᎵ ᏧᎾᏙᎢᏛ ᎤᎾᏓᏡᎬ. ᎦᎸᎳᏗᏣ ᏪᏙᎮ ᏲᎾ ᎤᏤᏍᏙ ᏓᏍᏕᏓᎵᏴᏍᎨ ᏧᎳᏑᎶ. ᎯᎠ ᎾᏍᏉ ᏄᏪᏎ ᏚᏟᎶᏍᏓᏁᎴᎢ; ᎩᎶ ᎢᏳᏍᏗ, ᎡᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᎤᏫᏎ ᏖᎸᎳᏗ ᏚᏫᏒᎢ; ᎤᎷᏤᏃ ᎤᏲᎴ ᎤᏓᏔᏅᎯ, ᎠᎴ ᎥᏝ ᏳᏩᏛᎮᎢ. ᏂᎦᏛᏃ ᎠᏆᏤᎵᎦ ᏂᎯ ᏣᏤᎵᎦ, ᏂᎯᏃ ᏣᏤᎵᎦ ᎠᏴ ᎠᏆᏤᎵᎦ; ᎠᎴ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᎩᎸᏉᏗᎭ. ᏈᎵᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏔᎵᏧᏈ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᏧᎬᏩᎶᏗ ᎦᏚ ᎥᏝ ᏰᎵ ᏱᎦᎩ, ᎾᏍᎩ ᎠᏂᏏᏴᏫᎭ ᎤᏍᏗ ᎤᏂᎩᏒᏍᏗᏱ. ᏙᏱᏢᏃ ᏭᎶᏒ ᏅᏩᏓᎴ ᎤᎪᎮᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴ ᎾᎿ ᎠᏁᏙᎯ; ᎾᏍᏉ ᎯᎠ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᏓᏁᏙᎲᎩ. ᎡᎳᏗ ᎠᎩᎶᏫᏍᏗ ᎤᎾᏅᏗ ᏫᎦᎷᎩ. ᏃᎴ ᏄᏓᎴᎯ ᎧᏅᏂᏍᎩ. ᎿᏉᏃ ᏣᏂ ᏂᏙᏓᏳᏅᏏᏛ ᎢᎤᏁᏅ, ᎤᎴᏅᎮ ᏣᏂ ᏚᏁᎢᏍᏓᏁᎴ ᏴᏫ; ᎦᏙ ᎢᏣᎦᏔᏅᏎ ᎢᎾᎨᎢ? ᏩᏐᎾᏍᎪ ᎤᏃᎴ ᎤᏖᎸᎮᏍᎬᎢ? ᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤ ᎾᏍᎩ ᏂᏚᏪᏎᎸᎢ. ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎤᏲ ᎢᏨᏯᏓᏅᏓᏗᏍᏔᏅᎩ ᎪᏪᎵ ᏫᏨᏅᏁᎸᎢ, ᎥᏝ ᎤᏲ ᏯᎩᏰᎸᎭ, ᎤᏲᏍᎩᏂᏃᏅ ᎠᎩᏰᎸᏒᎩ; ᎢᏥᎪᏩᏘᏰᏃ ᎾᏍᎩ ᎤᏲ ᎢᏣᏓᏅᏓᏗᏍᏯᏅᎢ, ᎠᏎᏃ ᏞᎦᏉ. ᎠᏎᏃ ᏲᏥᎦᏔ ᎤᏙᎯᏳᎭ ᎠᏂᏃᎮᏍᎬ, ᎨᎵᏍᎬᏃ ᎠᏎᏉ ᎠᏂᏃᎮ. ᎤᏩᏅᏓᏕᎢ ᏰᎵ ᏎᎦ ᏳᎦᎾᏅᎾ ᏱᎩ, ᎡᎳᏗ ᏂᎦᎵᏍᏗᏍᎨ ᎠᎹ. ᎾᏍᏉ ᎠᎴ Ꮎ ᏔᎵ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎾᏍᏉ ᏔᎵ ᎢᏯᎦᏴᎵ ᎤᏁᏉᏤᎴᎢ. ᎿᏉᏃ ᏌᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᎵᎵ ᎤᏁᏅᏒᎩ ᏦᏓᎸ ᏥᏌ ᎤᎾᏎᎮᎸᎢ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏥᎪ ᎤᏩᏒ ᏛᏓᎵ? ᎯᎠ ᏥᏂᎦᏪᎭ; ᏫᏥᎦᏛ ᎥᏝ ᏫᏴᎨᏥᎷᎩ. ᏃᏉ, ᎤᏁᎦᎸ ᏩᏍᏘ ᎦᏓᏁ ᏄᎵᏍᏔᎾ, ᎤᎴᏫᏍᏔᏅ ᎠᎦᏍᎬ, ᎤᎧᎭᏙᏅ. ᎬᏩᎵᎥᏂᏍᏗᏱᏃ ᎬᏩᏘᏃᎸ, ᏉᎳ ᎯᎠ ᏄᏪᏎᎸᎩ ᎾᎥ ᎦᏙᎩ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ; ᏰᎵᏉᏍᎪ ᏗᎧᎾᏩᏛᏍᏗ ᏂᎬᏅ ᎦᏰᏥᎵᎥᏂᏍᏗ ᎠᏍᎦᏯ ᎠᎶᎻ, ᎤᏍᎦᏅᏨ ᏧᏚᎪᏔᏅᎯ ᏂᎨᏒᎾ ᏱᎩ? ”ᏕᎷᎨ ᎤᎵᏑᏫᏓ ᎯᏅᎪᎢ!” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏣᏄᏏ ᎤᏩᏌ ᎤᏪᏅᏎ, ᏚᎦ ᎤᏪ ᏧᎵᎢ ᎤᎾᏛᏁᎸᏗ. ᎤᏒᏙᏂ ᎠᏓ ᎤᏂᏴᏩᏛᎮ. ᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎤᎩᏎ ᎢᏗᏍᎦᎾᎯᏳ ᎨᏒ ᎤᏩᏒ ᎠᏰᎸ ᏞᎬ ᏧᎩᎵᏲᏤᎢ, ᎾᏍᎩ ᎠᏴ ᏗᎩᏲᎱᏒᎯ ᎨᏒ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎢᏗᏢ, ᏗᏛᏃᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏳᎪᏛ ᎢᏗᏢ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏥᎵᎥᏂᎸᎢ ᎢᏣᏗᏫᏍᏗᎭ. ᎢᎪᎯᏓ ᏓᏥᏍᏆᏂᎪᏔᏂ ᏥᏯᏅᏓᏗᏍᎬ. ᎤᎵᏒᏅ ᎤᏩᏇᏅᏛ ᎤᏤᏍᏛᏙᏗ, ᎤᏪᏅᏒ ᎠᏥᎨᎯᏙᎸ. ᎭᎾᎾ, ᎠᏰᎵ ᏚᏏᎳᏛ ᎧᏃᎮᏓ ᎪᏪᎴ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎼᏏ ᎤᎵᏍᎪᎸᏔᏁ ᎪᏪᎶᏗᏱ ᏙᎦᎴᏅᎲᎢ, ᎠᎴ ᎠᏓᎢᏅᏗᏱ. ᎪᎱᏍᏗᏃ ᏄᏂᎲᎾ ᎨᏒ ᎤᎾᎫᏴᏙᏗ, ᏚᏲᏎᏉ ᎢᏧᎳ. ᎾᏍᎩᏃ ᏍᎩᏃᎲᏏ, ᎦᎪ ᎾᏍᎩ ᎤᏟ ᏄᏓᎨᏳᏎᏍᏗ? ᎤᏍᎦᏃᎳ ᎤᏍᏚᏤ ᏫᎵᎻ ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ ᎠᏍᎪᎵ ᏃᎴ ᎦᏐᎯ, ᎢᏧᎳ ᎢᏣ ᎠᏰᎸᎢ ᏃᎴ ᎤᎧᏛ ᏫᎦᏩᏙᎣᏍᎨ ᎠᎾᏍᎪᎵᏰᏍᎨ ᎤᏳᏩᏅ ᏃᎴ ᎤᏁᎦᎸ ᎠᎳᏂ ᏃᎴ ᎰᎻ. ᎤᏩᏙᎯᏴᏓ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᏃᎴ ᎦᏢᏍᎩ ᎨᏎᎢ. ”ᎭᎴᏫᏍᏓ ᎪᎱᏍᏗ ᏄᏰᎸᏛᎾ, ᏫᎵᎻ!” ᎤᏛᏁ ᎤᏔᎾᏱᎨ ᎤᏃᏕᎾ. ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᏉ ᎬᏗᏍᎬ ᏎᎵ ᎤᏩᏒ ᏧᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎠᏲᎵ ᏧᎾᏄᎪᏫᏎ ᎿᏉ ᏧᏓᎾᏄᎪᏫᏍᏗᏱ ᎤᎶᏐᏁᎸᎯ ᏥᎨᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏄᏓᎵᏓᏍᏛᎾ ᎤᏰᎸᏅ ᎾᏍᎩ Ꮎ ᎤᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ. ᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏥᏪᎭ, ᏝᏍᎪ ᏳᎾᏛᎦᏅ? ᎥᎥ, ᎤᏙᎯᏳᎯ, ᎤᎾᏓᏃᏴᎵᏍᏛ ᏚᏰᎵᏒ ᎡᎳᏂᎬᎢ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎡᎶᎯ ᏩᏍᏛ ᎢᏴᏛ ᏚᏰᎵᏒ. “ᏤᏍᏗ ᏯᎵᏖᎸᎮᏍᎨᏍᏗ ᏧᏍᏆᏴᏍᏗ!” ᎤᏛᏁ ᏌᎳᏓ. ᎠᏥᏅᏍᏓᏕᎳ ᎤᎾᏕᎬ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏲᎯᏍᏔᎾ, ᎤᎵᏍᎦᏎᏓᏁ ᎠᏥᏅᏍᏔᏕᎲ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎨᏒ ᎬᏂᎨᏒ ᎢᏰᏛᏁᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏂᎦᏛᏁᎵᏙᎸᎢ. ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ; ᎥᏝ ᏴᎨᏍᎩᎪᏩᏛ ᎪᎯ ᎢᏳᏓᎴᏅᏛ, ᎬᏂ ᎯᎠ ᏂᏥᏪᏒᎭ; ᎠᏥᎸᏉᏗᏳ ᎾᏍᎩ ᏱᎰᏩ ᏕᎤᏙᎥ ᏥᎦᎷᎯᏍᏗᎭ. ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎩᎶ ᏗᏥᏩᏛᏗᏱ ᏴᎩᏁᏤᎸ, ᎠᏫ ᎤᏂᏃᏕᎾ ᎤᎾᎴᎾᎸᎯ ᎤᏅᏒ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎬᏒᎢ. ᎢᏨᎨᏳᎢ, ᏕᎦᏓᎨᏳᏎᏍᏗ; ᎠᏓᎨᏳᏗᏰᏃᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏓᏳᏓᎴᏅᎯ, ᎩᎶᏃ ᏧᏓᎨᏳᏐ ᎤᏁᎳᏅᎯ ᎤᎾᏄᎪᏫᏒᎯ ᎨᏐᎢ, ᎠᎴ ᎠᎦᏔᎰ ᎤᏁᎳᏅᎯ. ᎠᎴ ᎾᏍᎩ ᎾᏍᏉ ᎡᏆᎭᎻ ᏂᎦᏛ ᏧᎬᏩᎶᏗ ᎠᏰᎲ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏧᏁᎸᏁᎢ; ᎢᎬᏱᏱ ᎨᏒ [ᏚᏙᎥ] ᎠᏁᏢᏔᏅᎯ ᎨᏒ ᎤᎬᏫᏳᎯ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎦᏛᎦ, ᎣᏂᏃ ᎾᏍᏉ ᏎᎳᏂ ᎤᎬᏫᏳᎯ ᎠᎪᏎᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏅᏩᏙᎯᏯᏛ ᎤᏚᎵᏍᎩ ᏥᎦᏛᎦ. ᏣᎵ ᎤᏌᎵᏓᏁ ᎤᏔᏂᏓ ᏅᏯ, ᏔᎷᎩᏍᎩ ᎠᏍᏚᎩᏍᏗ ᎬᏗ ᏍᏗᏫ ᎤᏪᏍᎯᏔᏁ ᎤᏔᏂᏓ ᎢᎾᏓ ᎠᏍᎪᎵ. ᏚᎾᏦᏝ ᎧᏅᏑᎸ ᎠᏂᏯᎥ, Amy ᏃᎴ Ginger, ᏃᎴ Amy ᎤᎾᎵᎪᏒ ᎠᏫᎾ ᎬᏆᎧᏙᏍᏛᎢ. “Ꭵ, ᎤᏙᎯᏳ,” ᎤᏛᏁ ᏫᎵᎻ. ᎡᏝᏪ ᎨᏎᏍᏗ! ᎣᏂᏱᏃ ᎤᏪᏥ ᎤᏅᏎᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏎ ᏛᏂᎸᏉᏔᏂ ᎠᏇᏥ. ᎤᎪᎵᏰᎡ ᏚᏙᎥ ᎦᏯᎸᏅ ᏌᎳᏓ. “ᎠᎬᏱ, ᏫᎦᏓᎾᏫᏗᏍᎪ ᏛᎦ ᏧᎩᎸ ᎢᏣ. “Ꭷ!” ᎤᏛᏁ ᏌᎳᏓ. ᏥᏅᏁᎸ ᎪᏪᎵ ᏃᎴ ᏥᏃᎯᏎᎸ ᎢᏳᏍᏗ ᎢᏯᏛᏁᎵᏓᏍᏗ - ᎤᏟᏍᏔ ᎠᎩᏁᎢᏍᏔᏅ ᎠᏁᎯᏯ ᏃᎴ ᎤᏅᏌ ᎤᎾᏤᎵ ᎨᏒ ᎦᏙ - ᏂᏚᏍᏛ ᏤᎩᏏᏂ ᏗᎦᏙᎵ ᏰᎵᏉ ᎠᏂᏔᎵ ᎢᏯᏂ ᏧᎯᏍᏗ. ᎾᎦᏛᏰᏃ ᎤᏚᎢᏍᏔᏅᎢ ᎤᏁᎳᏅᎯ ᎾᏍᎩ Ꮎ ᎢᏳᏩᏂᏌᏛ, ᎥᎥ ᎬᏛᏗ, ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎨᏐ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, Ꮎ-ᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏙᏗᏱ ᎠᏴ ᎢᏲᎬᏁᏗᏱ. ᏫᎦᎢᏒ ᎠᎩᏒᏍᏗ ᎠᏆᏂᎩᏛ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏧᏂᎸᏫᏍᏔᏁᏗ, ᏴᏫ ᎨᏍᏗ ᏳᎾᏕᎶᎰᏌ ᏄᏓᎴ ᎾᏆᏍᏛᎢ, ᎤᏂᏣᏘ ᎨᏒ ᏧᎾᏓᎴᏅᏓ ᎠᏂᏴᏫ, ᎠᏂᎫᏌ ᏃᎴ Turks. ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏛ ᎠᏂᏃᏔᏅᎥᏍᎩ, ᎾᏍᎩ ᏧᏪᏅᎢᏍᏔᏅᎯ, ᎢᏅ ᏗᏂᏙᎾᎡᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᎩᎵᏲᎬ ᎠᏂᏍᎦᎢᎲᎢ, ᏓᎾᏠᏱᎮᏍᏗ ᎠᎴ ᏓᏂᏴᎨᏍᏗ, Ꮒ, ᎦᏐᎸᏓᎩᎠ!” ᎯᎠ ᏄᏪᏒ: “ᏂᎦᏗ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏕᎯ ᎯᏓᎵᎮᎵᎦ ᏅᎩ ᏧᎾᏙᏓᏆᏍᏗ ᎤᎧᏘᏛ ᏌᏌ, ᏃᏉ ᎪᎱᏍᏗ ᎬᏂᎨᏒ ᏄᎵᏍᏓᏏ. ᎤᏬᏗᎨ ᏃᎴ ᎤᎾᏉᏓᏘ ᎢᏳᏍᏗ ᎠᏗᏔᏍᏗ ᎡᏘᏴ ᏥᎨᏎ ᏭᏩᏅᏔᏗᏍᏔᏅ, ᏔᎵ ᏧᏥᏍᏔᏅ, ᎡᏘᏴ ᏧᎶᏒ ᎤᎴᏅᎲ ᎧᏃᎮᏍᎬ ᎠᏌᎻᏓ. ᎠᏧᏣ ᏥᎨᏎ ᏃᎴ ᎠᏫᎾ ᏫᏄᎵᏍᏔᏅ, ᏍᎩᏉ ᏂᎦᎥ ᎤᏃᎮᏗ. ᎢᏳᏍᏗᎭᏰᏃ ᎯᎠ ᎾᏍᎩ ᎦᏚ ᎢᏥᎩᏍᎨᏍᏗ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎤᎵᏍᏈᏗ ᎢᏣᏗᏔᏍᎨᏍᏗ, ᎬᏂᎨᏒ ᏂᏨᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏲᎱᏒᎢ, ᎬᏂ ᎦᎷᏨᎭ. ᏯᏃᎩᏳᏃ ᎠᏥᎸᏱ ᎠᎴ ᎠᏑᏱ ᎤᏓᎡᎪᎢ, ᎾᏍᎩ ᎤᎯᏍᏗᏱ; ᎢᏳᏍᎩᏂᏃᏅ ᎪᎱᏍᏗ ᎨᏣᏛᏁᏗ ᎨᏎᏍᏗ, ᏍᎩᏍᏙᎵᎩ, ᎠᎴ ᏍᎩᏍᏕᎸ. ᎤᏁᎳᎩ ᏕᏣᏓᏕᎵᏎᎮᏍᏗ, ᎠᎴ ᏗᎨᏣᏓᏁᎮᏍᏗ ᏕᏣᏓᏍᎦᏅᏤᎲᎢ, ᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᏱᏓᎾᏓᏕᎵᏎᎭ; ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎦᎨᏥᏁᎸ ᎢᏥᏍᎦᏅᏨᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ. ᏂᎯᏍᎩᏂ ᏞᏍᏗ ᎾᏍᎩ ᏄᎾᏍᏛ ᏱᏂᏣᏍᏕᏍᏗ, ᎢᏥᏙᏓᏰᏃ ᎠᎦᏔᎰ ᎢᏳᏍᏗ ᎢᏥᏂᎬᎬ ᎠᏏᏉ ᏁᏥᏔᏲᏎᎸᎾ ᏥᎨᏐᎢ. ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏂᎯ ᏕᎬᏲᎯᏏ, ᎠᏇᏥ ᏗᎹᏗ, ᎾᏍᎩᏯ ᏄᏂᏪᏒ ᏂᎯ ᎾᏍᎩᎾ ᏕᎲᏗᏍᎬ ᏯᎵᎦ ᎣᏍᏛ ᎠᎵᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎤᏁᎳᎩ ᏤᎵᏎᏅ, ᎠᎴ ᎲᏂᏗᏳ ᎨᏒᎩ, ᎠᎴ ᏓᏆᏙᎥ ᏅᏧᎵᏍᏙᏔᏅ ᎯᎩᎵᏲᎬᎩ, ᎠᎴ ᎥᏝ ᏱᏗᏣᏯᏪᏤᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᏂᎯ ᎢᏨᎨᏳᎢ, ᎢᏣᎵᏘ ᎢᏣᏓᏅᏏ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ. ᎤᎩᏓᏍᏕ ᎢᎪᎯᏛ ᎠᏂᏃᎩᏍᏗᏍᎬ ᏃᎴ ᎠᎾᎵᏍᎩᏍᎬ ᏃᎴ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ ᏙᏍᏔᏦᏍᎬ. ᏗᏃᏪᎵᏍᎩᏃ ᎨᏒ ᎠᏏᏴᏫ ᎤᎷᏤᎸ, ᎤᏛᎦᏅ ᎠᎾᎵᏃᎮᏍᎬᎢ, ᎠᎴ ᎤᏙᎴᎰᏒ ᎣᏏᏳ ᏄᏪᏒ ᏚᏁᏤ ᎸᎢ, ᎤᏛᏛᏁᎢ, ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒᎢ? ᎤᏛᏁᎢ. ᎠᏴ ᏣᏂ ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎦᎵᏉᎩ ᏂᏣᏓᏡᎬ ᎡᏏᏱ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎾᏍᎩ ᎾᏤᎭ, ᎠᎴ ᏤᎲᎩ, ᎠᎴ ᏤᎮᏍᏗ; ᎠᎴ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎾᏍᎩ ᎤᏪᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏣᏁᎭ; ᎣᏍᏓ ᎾᏛᎦ ᎰᎻ! ᎠᎴ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏦᎦᏤᎵ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏥᏕᎬᏩᏲᏎ ᏣᎫᎪᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ, ᎠᎴ ᏥᎬᏩᏛᏅᎩ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᎨᏒ ᏗᏅᏃᏛ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᏁᎸᎩ ᎦᎵᏉᎩ ᎫᎫ ᎠᏕᎸᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᏗᎧᎵᎢ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᏤᎭ. ᎠᏎᏃ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ ᎤᎲᎢ ᎬᏩᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏍᎦᏅᏨᎢ ᎠᏂ ᎡᎶᎯ (ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ,) ᎠᎴ ᎬᏂᏳᏉ ᏞᎩᏳ ᏓᏥᎷᏥ; ᎠᎴ ᎠᏆᎫᏴᏗ ᏥᏰᎮᏍᏗ, ᎦᏥᏁᏗᏱ ᏋᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ. ᏄᏍᏛ ᎠᏆᎴᏂᏙᎸ ᏥᏫᏄᏣ ᏅᏧᎵᏍᏔᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎦᏥᏰᎳᏗᏙᎸᎩ ᏗᏆᏤᎵ ᏴᏫ ᏥᎷᏏᎻ, ᏂᎦᏛ ᎠᏂᏧᏏ ᎠᏂᎦᏔᎭ, ᏈᏓᏍᎩᏂ ᏙᏱᏗᏢᏉ ᎦᎶᎯᏍᏗᏱ ᎤᎴᏅᎩ. ᎿᏉᏃ ᎾᏍᎩ Ꮎ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎦᏔᎯ, ᎤᏄᎪᏨᎩ, ᏭᎵᏃᎮᏔᏅᎩ ᎠᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ, ᎠᎴ ᎤᏴᏔᏅᎩ ᏈᏓ. ᏐᏈᎵ ᏚᏂᏌᎵᏓᏁ ᏗᏂᎴᏂ ᎤᎾᏛᎦᎾ ᏌᏌ ᎤᏪᎷᎬ; ᏂᎪᎯᎸᎾ ᏂᎦᏓ ᎠᏂᎦᏔᎮᎢ. ᎤᏙᎯᏳ ᎣᏍᏓ ᎡᎶᎯ ᎯᏓᎯ ᏱᎩ. ᎬᏩᏁᏤᎸ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎠᏴ ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ, ᎠᎴ ᎥᏝ ᎢᎸᎯᏳᎩᎶ ᏱᏙᎩᎾᏢᏃᎢ, ᎦᏙᏃ ᏂᏕᏥᎾᏝᎥᎾ ᏅᏓᏰᏨᏁᎵ, ᏣᏗᎭ? ᏗᏓᏘᏂᏙᎯ ᎾᏍᎩ ᏚᏪᏲᏁ ᎢᏳᎾᏛᏁᏗ ᎤᏂᎦᏛᎴᎯᏍᏗ ᎾᎦᎥᎢ. ᎢᎾ ᎢᎭᏘ ᏣᎴᏗ ᎯᎠ ᏧᏟᏂᎩᏓ ᏕᏈᎬᎢ ᎾᏍᎩᏯᎢ. ᏣᏟᏂᎩᏓ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎠᏍᎦᏯ ᎤᏪᏰᏂ ᎤᏩᎢᏎᎸᎯ; ᎠᏰᎵ ᎭᎴᎲᎦ. ᎢᏳᏍᎩᏂ ᏕᎭᏕᎳᏍᏗᏍᎨᏍᏗ, ᏫᏘᏯᏂᏍᎨᏍᏗ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎪᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᎤᏂᏲᎱᏎᎸᎯ, ᏗᏂᏲᏅᎵ, ᎠᎴ ᏗᏂᎨᏫ; ᏧᎬᏩᎶᏗ ᎡᏥᏩᎯᏍᏔᏅᎯ; ᏞᏍᏗ ᏴᏫᏉ ᏗᎨᏥᎾᏝᎢ ᏱᎨᏎᏍᏗ. ᎿᏉᏃ ᎠᏚᎸᏗ ᎨᏒ ᎠᏙᏢᎾ ᎠᏍᎦᏂ ᎦᎾᏄᎪᏫᏍᎪᎢ; ᎠᏍᎦᏂᏃ ᎠᏍᏆᏓ ᎿᏉ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎪᎢ. ᏐᏉ ᎠᏓᏁᎸ ᎠᏦᎭᏱᏍᏙᏗ ᎠᏓ ᎬᏘ ᎠᏲᏓᏌᎲ, ᎠᏓ ᏃᎴ ᎦᏓᏆᏟ ᎬᏘ ᎠᎱᏣᏬᎳᏛ, ᏗᏒᏆᎶᏍᏗ ᎪᏒᏔᏅ ᏎᎷ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎦᏂᏏ ᎠᎴ ᏔᎵ, ᏐᏉ ᎦᏍᎩᎸ, ᏗᎬᏅ ᏗᎦᏍᎩᎶ. ”ᏫᎵᎻ ᏓᏥᏩᏛᎮᏏ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎨᏍᏗ ᏱᏥᎦᏔ ᎤᏰᎸᏛ ᏍᎩᎾᎾ ᎢᎦᏪᏍᏗ.” “Ꭷ,” ᎤᏛᏁ. ᎠᏆᏚᎸᎲᏃ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎬᏬᎯᏍᏗᏍᎬᎢ, ᏥᏯᏘᏃᎸᎩ ᏓᏂᎳᏫᎥᎢ. ᏃᏗ ᏭᎩᏎ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ. ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᎤᎾᏞᏒ, ᎯᎠ ᏥᎾᏂᏪᎠ, ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᎦᏳᎳ ᎤᎶ ᏐᏅ; ᎠᎴ ᏓᏂᎷᏆᏗᏁᎭ ᎢᎦᏛ ᎤᏃᎯᏳᏒᎢ. ᏙᏌ ᎤᏍᎦᎸᏨ ᏓᏳᏓᎴᏅᏓ ᎠᏳᎩ ᎤᏨᎬ ᎾᏍᎩᏴ. Perry ᎨᏍᏗ ᎣᏍᏓ ᏯᏏᎾᏎ ᎤᏆᏂᏲᏍᏘ, ᎠᏎᎩ ᏱᏚᎾᏓᏍᏕᏓᎵᏴᎾ ᏱᎨᏎ ᎠᏕᎳ. “ᎲᎦ ᎢᏳᏕᏘᏴᏓ ᏲᎾ ᎤᏤᏍᏙ?” ᏱᏗᏣᏓᏟᏴᎾ ᏳᏫᏣᏴᎳ, ᎡᏣᏙᏁᏓ ᏰᎳ ᎰᎻ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏭᏙᏯᏅᎯᏛ ᏭᏂᏴᎲᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏍᏗ ᏦᎯᏳᎯ, ᎦᏙᎯ ᎥᏣᏜᏏᏛᏏ? ᏐᏓᎻᏃ ᎠᎴ ᎪᎹᎵ ᏕᎦᏚᎲ ᎪᏍᏚᏥᏂᏚᏩᏁᎴᎢ, ᎠᎴ ᏥᏚᏭᎪᏓᏁᎴ ᏧᎷᏆᏗᏅᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏯᏔᎲᏍᎩ ᏥᏂᏚᏩᏁᎸ ᎣᏂ ᎤᎾᏕᏗ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᎨᏒᎢ, ᎤᎴᏅᎮᏃ ᏚᏬᏁᏔᏁ ᏓᏟᎶᏍᏗᏍᎬᎢ. ᎩᎶ ᎢᏳᏍᏗ ᏖᎸᎳᏗ ᏚᏫᏎᎢ, ᎠᎴ ᎤᏐᏱᎴ ᎬᏩᏚᏫᏛ, ᎠᎴ ᎤᏍᎪᏎ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎪᏢᏗᏱ, ᎠᎴ ᎤᏁᏍᎨᎮ ᎢᏅ ᎢᎦᏘ, ᎠᎴ ᏚᏙᎳᏍᏔᏁ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎢᏅ ᏭᎶᏎᎢ. ᎢᏯᏔᏬᏍᏔᏅ ᎣᏁ ᎢᏴ, ᎤᏅᏏᏴ ᎡᏓᏍᏗ ᎤᏬᏞ ᏲᎾ ᎤᏤᏍᏙ ᎤᏄᏞ ᎤᏤᎵ ᎤᏍᏗ, ᎨᏲᎲᏍᎨ ᎫᎫ ᎤᏍᏛᎢᏍᏗ. ᎯᎠ ᎾᏍᎩ ᎼᏏ ᎾᏍᎩ ᎯᎠ ᏥᏂᏚᏪᏎᎴ ᎢᏏᎵ ᏧᏪᏥ; ᎤᎬᏫᏳᎯ ᎢᏣᏁᎳᏅᎯ ᏓᏥᎾᏄᎪᏫᏎᎵ ᎠᏙᎴᎰᏍᎩ ᎢᏣᎵᏅᏟ ᎨᏒ ᏓᎦᎾᏄᎪᏥ ᎠᏴ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᏓᏰᏣᏛᎦᏁᎵ. “ᏌᏌ ᎠᏂᏓ, ᏐᏉ ᎦᎵᏉᎩ ᏩᏍᏗ?” ᎤᏔᎳᏭᏎᏃ ᎤᎾᏝᎢ, ᎠᎴ ᏫᏚᏲᎯᏎᎴ ᏗᎾᏓᏍᏚᎲᏍᎩ ᎤᎫᏴᎰᎲᏍᏗᏱ ᏂᎦᏛ ᎠᏥᏚᎬ ᎢᎪᎯᏛ. “ᎬᏲᎵᎭᏛ ᎱᏛᏁᎢ. ᎡᏝᏪᎯ ᏄᎵᏍᏔᏃᏁ. ᎾᎿᏃ ᏚᎴᏅ, ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎠᏍᏛ ᏭᎷᏤᎢ, ᎠᎴ ᎠᏣᏁᎸ ᏭᏴᎸ, ᎥᏝ ᏳᏚᎵᏍᎨ ᎩᎶ ᎤᏙᎴᎰᎯᏍᏗᏱ; ᎠᏎᏃ ᎥᏝ ᎬᏩᏗᏍᎦᎶᏗ ᏱᎨᏎᎢ. ᏌᏌ ᎤᎷᏤ ᎾᏍᎩᏴ, ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ ᎫᏩᏍᏓᏩᏗᏎ. ᎾᏍᎩ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎾᏍᎩ ᎯᎠ ᎡᎶᎯ ᎤᏁᎳᏅᎯ ᎤᏰᎸᎯ ᏚᎵᏏᎲᏍᏓᏁᎸ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᏧᏂᎸᏌᏓᏕᏗᏱ ᏂᎨᏒᎾ ᎢᎦ-ᎦᏛ ᎤᏘᏍᏛ ᎦᎸᏉᏗᏳ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏥᎩ. ᎠᏎᏃ ᎠᎦᏔᎮ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎦᏯ ᎤᏩᎢᏎᎸᎯ ᎤᏬᏰᏂ; ᏔᎴᎲᎦ, ᎠᎴ ᎠᏰᎵ ᎭᎴᏂᎦ. ᏚᎴᏅᏃ ᎤᎴᏂᎴᎢ. ᎠᏎᏃ ᎤᎾᎦᏙᏍᏔᏅᎩ, ᏓᎪᏘᏏ ᎠᎴ ᎤᏲᎱᏒᎯ ᏓᎦᏅᏥ ᏛᏰᎶᎢᏍᏔᏂ, ᎠᏁᎵᏍᎬᎩ; ᎠᏎᏃ ᎤᏬᎯᏨ ᎤᎾᎦᏙᏍᏔᏅ, ᎠᎴ ᎤᎾᏙᎴᎰᏒ ᎪᎱᏍᏗ ᏄᎵᏍᏓᏁᎸᎾ ᎨᏒᎢ, ᎤᏂᏁᏟᏴᏒᎩ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎦᎸᎳᏗ ᎡᎯ, ᎤᎾᏛᏅᎩ. ᏍᎩᏴ ᎠᏓᎴᏂᏍᎩ ᎤᏓᏍᏕᏓᎵᏴᏒ ᎦᏚᎲ. ᎠᏂᏐᎢᏃ ᎢᎦᏛ ᏧᏯᏕᎾ ᏧᎾᎩᎸᏙᏗᏱ, ᎢᎦᏛᏃ ᏥᏳ ᏧᎵᏢᎸᏛ. ᎠᎴ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎩ, ᏂᎦᏛ ᎤᎾᏛᏂᏛᎩ ᎤᎾᏚᎩᏒᎩ. ᎠᏓᏰᏍᎩᏃ ᎤᏢᎩ ᎤᎷᏤᎴᎢ, ᎤᏓᏙᎵᏍᏓᏁᎴ ᏚᎵᏂᏆᏅᏁᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ, ᏰᎵᏉ ᏱᏍᎩᏅᎦᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᏔᏲᏏ ᎤᎶᎨᏛ ᏧᏅᏍᏗᏱ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᎦᏛᎾᏤᎸᎢ. ᏫᏥ ᎢᏯᏂ ᎤᏐᏱ ᏗᎨᎦᏃᏗ ᎨᏎ, ᏐᏉ ᎤᏩᏌ ᎤᏍᏗ ᎠᏣᏗ Ꮳ. ᎠᎴ ᎾᏍᏉ ᎢᎦ ᎠᏑᏰᎭ, ᎯᎠ ᏂᎦᏪᎭ ᎤᏬᎯᏨᎯ ᎣᏂ ᏕᏫ ᎠᎬᏗᏍᎬᎢ, ᎪᎯ ᎢᎦ, ᎾᏍᎩᏯ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ, ᎪᎯ ᎢᎦ, ᎢᏳᏃ ᎧᏁᎬ ᎢᏣᏛᎪᏗᏱ ᎢᏣᏑᎵᏍᎨᏍᏗ, ᏞᏍᏗ ᏱᏗᏥᏍᏓᏲᏔᏁᏍᏗ ᏗᏥᎾᏫ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎯᎠ ᏅᏓᎦᏛᏁᎵ; ᏙᏓᏥᏲᏍᏔᏂ ᎠᎩᏅᏗᏱ ᏓᏓᏁᎸᎢ, ᏧᏛᏂᏗᏃ ᏓᏓᎦᏁᏍᎨᎯ; ᎾᎿᏃ ᏓᏥᏂ ᏂᎦᏛ ᎠᏆᏛᎯᏎᎸᎯ ᎠᎴ ᎠᎩᎾᎥᎢ. ᏃᎴᏍᏉ ᏎᎦᎾᎨᏍᏗ ᏫᎯᎷᏨ ᏗᎦᏦᎯᏍᏗ ᏏᏆ ᎠᏍᏚᏗᎯ!” ᎾᏄᏍᏗ ᏂᎦᏪ ᏃᏉ!” ᎯᎠ ᏄᏪᏒ Crockett, ᏩᎾᏗ ᎤᏉᏅᏗ, ᏃᎴ ᎤᏋᏂᏍᏗ, ᎨᏍᏗ ᎠᏓᎸᏉᏙᏗ ᏱᎩ. ᏙᏱᏨ ᎤᏪᏅᏎ. ᏑᏒᎯᏓ ᎠᎬᏱ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᎤᎴᏅᏗ, ᏂᎦᏓ ᎠᎯᏗᎨᏍᏗ ᎤᏂᏟᏅᏤ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏲᏪᎳᏏ ᎦᏥᏁᎢᏍᏗᏍᎬ ᎾᏍᎩ Ꮎ ᎨᏥᎵᏓᏍᏗᏍᎩ. ᎢᏳᏰᏃ ᏰᎵᏉ ᏱᎨᏎᎢ, Ꮭ ᏱᎬᏩᏂᎦᎯᏍᏔᏁ ᏧᎾᎵᏍᎪᎸᏗᏍᎬᎢ; ᎠᎾᎵᏍᎪᎸᏗᏍᎩᏰᏃ ᎨᏒ ᏌᏉ ᏱᏄᎾᏓᏅᎦᎸᎮ ᎥᏝ ᎿᏉ ᎠᏂᏍᎦᎾ ᏱᎬᏩᏂᏰᎸᏎᎢ. ᏂᎦᏗᏃ ᎬᏩᏰᏍᏔᏁ. ᎾᎯᏳᏃ ᎾᏍᎩ ᎯᎠ ᎾᏂᎦᏔᎲᎾ ᏥᎨᏎᎢ ᎤᏁᎳᏅᎯ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎢ; ᎠᏎᏃ ᎿᏉ ᏕᎧᏁᏤᎭ ᎾᏂᎥ ᏴᏫ ᏂᎬᎾᏛᎢ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾ ᏓᏅᏛᎢ; ᏚᏔᏲᎡᎸᏃ ᎤᏂᏴᏍᏗᏱ, ᎠᎴ ᏚᏍᏆᏂᎪᏔᏁᎢ. ᎤᎩᏨᏛᏃ ᏈᏓ ᏕᎤᏍᏓᏩᏛᏎᎢ, ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎾᎵᏅᏟ ᏦᏈ ᎠᏁᎯ ᎬᏩᎵᎪᏁᎴᎢ. ᏈᏓᏃ ᎠᎴ ᏣᏂ ᎢᏧᎳᎭ ᎤᏁᏅᎭ ᎤᏛᏅ-ᏗᎦᎳᏫᎢ-ᏍᏗᏱ, ᎠᏓᏙᎵᏍᏙᏗᏱ ᎨᏒ ᎢᏳᎢ, ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒᎢ. ᎢᎦᏛᏃ ᎤᎾᏓᏑᏴ ᎤᏃᎯᏳᏅᎩ, ᎠᎴ ᏚᎾᎵᎪᏁᎸᎩ ᏉᎳ ᎠᎴ ᏌᏱᎳ, ᎠᎴ ᎤᏂᏣᏔᏅᎯ ᎠᏂᎪᎢ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᎠᏂᎦᏲᎵᏉ ᏂᎨᏒᎾ ᏄᏂᎬᏫᏳᏒ ᎠᏂᎨᏴ. (ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏙᏓ ᏂᎬᏴᎦ,) ᎠᎦᏔᎲ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏥᎪᎯᏳᎲᏍᎨᎢ, ᎾᏍᎩ ᏗᎬᏂᏗᏍᎩ ᏥᎩ ᏧᏂᏲᎱᏒᎯ, ᎠᎴ ᏗᏯᏂᏍᎩ ᏥᎩ ᏧᎾᏓᎴᏅᏛ ᎾᏍᎩ ᎾᏁᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏣᏁᎰ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᎤᏂᏃᎮᎸᎯ ᏥᎩ ᏣᏓᎨᏳᎯᏳ ᎨᏒ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏂᎦᏔᎲᎢ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏘᏍᏕᎸᎲ ᎠᎾᎢᏒᎢ, ᎤᏁᎳᏅᎯ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎢᏳᎾᏛᏁᏗ, ᎣᏏᏳ ᏅᏔᏛᏁᎵ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏣᏂ ᏗᏓᏬᏍᎩ; ᎢᎦᏛᏍᎩᏂ ᎢᎳᏯ [ᎠᎾᏗᎭ;] ᎢᎦᏛᏃ, ᎩᎶ ᎢᏳᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ. ᎢᏥᎦᏔᎭᏰᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏪᎾᎢᏳ ᏥᎨᏎᎢ, ᎠᏎᏃ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏄᎵᏍᏔᏅᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎨᏒ ᎢᏳᏩᏂᏐᏗᏱ ᏂᎯ ᏗᏤᎿᎢ ᎢᏣᎵᏍᏙᏗᏱ. ᎨᏍᏗᏗ ᏳᏓᎴᏣ. ᏦᎢ ᎢᏳᏩᎫᏗ ᎦᎾᏍᏓ ᏕᎬᎩᎵᎥᏂᏍᏔᏅᎩ; ᏌᏉ ᏅᏯ ᏂᏕᎬᏋᏂᏍᏔᏅᎩ; ᏦᎢ ᎢᏳᏩᎫᏗ ᏥᏳ ᎠᏆᏦᏛ ᎤᏲᏨᎩ; ᎤᎵᏨᏓᏆᏛ ᎠᎴ ᎤᏙᏓᏆᏛ ᎠᏍᏛᎬ ᎾᏆᏛᏅᎩ; [ᏥᏌᏃ ᏚᏅᏎ ᏈᏓ ᎠᎴ ᏣᏂ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏍᏕᎾ ᏫᏍᏓᏛᏅᎢᏍᏓ ᎧᏃᎯᏰᎩ, ᎾᏍᎩ ᎢᎦᎵᏍᏓᏗᏱ. ᎠᎴ ᎾᏍᎩ ᎠᏥᏅᏩᏅᎯ ᎥᏝ ᏯᎦᏔᎮ ᎾᏍᎩ ᎨᏒᎢ; ᏥᏌᏰᏃ ᎤᏕᎵᏛ ᎤᏓᏅᏒᎩ; ᎤᏂᏣᏛᏰᏃ ᎾᎿ ᎠᏁᏙᎲᎩ. ᎢᏣᏛᏓᏍᏓ; ᎬᏂᏳᏉ, ᎠᏫᏍᎩ ᎤᏫᏒᏎᎢ; ᎤᏰᏤ ᏧᏍᏆᏴᏍᏗ ᎦᏅᎨᎢᏉ. ᎠᎴ ᏂᎦᏗᏳ ᏴᏫ ᎨᏥᏍᎦᎩ ᎨᏎᏍᏗ ᏴᏫ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎠᎴ ᎥᏝ ᏳᎾᏓᏎᎪᎩᏎᎢ; ᎥᏝ ᎠᎴ ᎿᏉ ᎢᎸᎯᏳ ᏳᏂᏩᏛᎮ ᎦᎸᎳᏗ ᎤᎾᏕᏗᏱ. ᏂᏥᎪᎸᎾ ᎢᏨᏁᏗ ᎨᏎᏍᏗ, ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᏗᎨᏥᎸᏫᏍᏓᏁᏗ ᎣᏏᏳ ᎤᏰᎸᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᎢᏣᏛᏁᏗᏱ ᏂᏨᏁᎲ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ; ᎾᏍᎩ ᎠᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎠᎺᏅ. ᎠᏴ ᎢᎦᎦᏘ ᎡᎶᎯ ᎠᎩᎷᏥᎸ, ᎾᏍᎩ ᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎿᏉ ᎤᎵᏏᎬ ᎤᏕᏗ ᏱᎨᏎᏍᏗ. ᏥᏌᏃ ᎤᏙᎴᎰᏒ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᎵᏃᎮᎭ ᎦᏚ ᏂᏗᏥᏰᎲᎾ ᎨᏒ ᎢᏳᏍᏗ? ᎠᏏᏉᏍᎪ ᏂᏣᏙᎴᎰᏍᎬᎾ ᎢᎩ, ᎠᎴ ᏂᏦᎵᎬᎾ ᎢᎩ? ᎠᏏᏉᏍᎪ ᎠᏍᏓᏯ ᏂᏕᏨᏅ ᏗᏥᎾᏫ? ᎤᎩᏨᏛᏃ ᏇᏗᏂᏱ ᏧᏂᎶᏒ ᎠᎪᏄ ᎤᏲᏏᏍᎨᎢ; ᎠᏆᏅᏛ, ᏰᎵ ᎪᎯᏛ ᎣᎩᎵᏦᏩᏔᏅ ᎠᏙᎯ ᎠᏂᏲᏍᎩ, ᏓᎩᏯᏪᏨ ᎠᏂᏲᏍᎩ ᎤᏩᏌ ᎣᎦᎵᎪᏅ. ᎠᏂᎨᏯ ᎣᎦᎵᎪᏘ ᎠᏆᏚᎵᏍᎬ. ᎤᏓᎴᏨᏉ ᎨᏒ. ᎠᏎᏃ ᎤᎦᏔᎲᏒ ᏚᎬᏍᎪᎸᏁ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏍᏗᎦᏔᎭ ᏄᏍᏛ ᎠᏓᏅᏙ ᎢᏍᏗᎲᎢ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎠᏥᏃᎮᏍᎬ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪ-ᏪᎳ; ᎬᏂᏳᏉ ᏥᏅᎵ ᏥᏅᏏᏓᏍᏗ ᏣᎧᏛ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᏓᏣᏛᏅᎢᏍᏓᏁᎵ ᏣᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ. “Ꮒ! Ꮒ!” ᎠᏗᎮ ᏙᏯ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏌᏓᏠᎦ, ᎠᎴ ᏔᎳᏑᎸᎦ. ᎾᏍᎩᏃ ᏄᏛᏁᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎭᏄᏬᏣ ᎠᎴ ᏍᎩᏍᏓᏩᏚᎦ. ᎠᎾᎦᏴᎵᎨᏃ ᎠᏂᎨᏴ ᏗᏣᏥ ᎾᏍᎩᏯᎢ, ᎠᏂᏫᏅᎨᏃ ᎠᏂᎨᏴ ᏤᏣᏙ ᎾᏍᎩᏯᎢ, ᎤᏐᏅ ᏄᏓᏑᏴᎾ. ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᎪᎵ ᏫᎵᎻ. ᏃᎦᏓᏅᎦᎸᎾ ᎨᏒᎢ, ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎪᎯᏙᏳ ᎤᏁᎳᎩ ᎣᏤᎵᏎᎬᎢ, ᎣᎦᏓᏅᏘᏳ ᎨᏒᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎣᎨᎲᎢ, ᏄᏠᎾᏍᏛᎾ ᎠᏓᎨᏳᏗ ᎣᎨᎲᎢ. ᏍᏗ ᎪᎰᏍᏗ ᎤᏰᎸᏗ ᏱᎨᏎ ᏩᏏᏓᏂ ᎦᏚᎲᎢ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᏓᎾᏛᏓᏍᏓᏁᎲᎾ ᏱᎩ ᎼᏏ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ, ᎥᏝ ᎾᏍᏉ ᏴᎬᏃᎯᏳᎲᎦ, ᎾᏍᏉ ᎩᎶ ᎤᏲᎱᏒᎯ ᏱᏚᎴᏅ. ᎭᏢ ᎠᏏᎾᏌᏂ? ᎭᏢ ᏗᎪᏪᎵᏍᎩ? ᎭᏢ ᎦᏬᏂᏍᎬ ᎠᏗᏒᎯᎯ ᎠᏂ ᎡᎶᎯ ᎡᎯ? ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᎠᎵᏍᎦᏁᏛᏉ ᏱᏄᏩᏁᎸ ᎠᏏᎾᏌᏅ ᎡᎶᎯ? ᏂᎦᏓ ᎤᏃᏴᎬ ᎤᏩᏙᎯᏴᏓ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᎤᏓᏅᏖ, ᎣᏍᏓ ᎤᏰᎸᎮ ᎬᏅᎢ ᏃᎴ ᎡᎶ ᎡᎲᎢ ᎯᎪ ᎪᎨ ᎤᏓᏏᏂᏕᎾ. ᎠᏯ ᎾᏆᏔᏅ ᏂᏣᏛᎾ. ᏥᏌ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎩᎶ ᏳᏗᏔᎲ ᎯᎠ ᎠᎹ ᏔᎵᏁᏉ ᎤᏔᏕᎪᏗ; ᎪᎯᏓ ᎤᎪᎵᏰᎥ ᎤᏬᏩ ᏃᎴ ᎦᏰᏌᏛ ᏭᏭᏍᏔᏅ, ᎬᏨᎢᏍᏗᏍᎩ ᏭᏩᏌᏙᎭᏴ ᎭᏂᏨ ᎦᏍᎩᎸ. ᏏᏊᏃ Ꮎ ᎠᏧᏣ ᎯᎠ ᎢᏄᏪᏎᎴᎢ ᎢᏈᎬᎢ, ᏂᎯᎾᎲ! ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏗᏥᏄᎦ ᎢᎦᏛ ᎠᏣᏗ ᎩᎳᏉ ᏥᏕᏥᏂᏴ. ᎠᏤᎯ ᎡᎾᎢ ᏚᏂᏂᎬᎪ ᏧᎾᏛᎯᏍᏗᏍᎩ. ᎠᏍᎦᏯ ᎤᎨᏳᏎᏍᏗ ᎤᏓᎵᎢ ᎾᏍᎩᏯ ᎤᎨᏳᏗ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᎨᏴ ᎤᎨᏳᏎᏍᏗ ᎤᏰᎯ. ᎨᏍᏗ ᏄᎶᏐᏍᏛᎾ ᏱᎩ. ᎦᎵᏦᏕ ᏭᏴᎴ ᎠᏌᏃ ᎱᎿᏬᎡ, ᎬᎩᏍᏗ ᎢᏳᏍᏗ ᏗᎧᏃᏗ ᏃᎴ ᎠᎵᏍᏇᏔᏬ ᎠᎾᎵᎪᎲᏍᎩ. ᎤᏲᎱᏒᎯᏃ ᏓᏳᏄᎪᏨᎩ, ᏧᏬᏰᏂ ᎠᎴ ᏧᎳᏎᏕᏂ ᏚᏓᎸᏍᏛᎩ ᏗᎦᎸᏓᎸᏛ ᏗᏄᏬ, ᎤᎧᏛᏃ ᎠᏯᏠ ᎤᏓᎸᏍᏛᎩ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏣᎸᏒ ᎠᎴ ᏤᏥᏲᎯ. ᎿᏉᏃ ᎺᎵ ᎤᎩᏒᎩ ᏑᏓᎨᏛ ᎠᏠᏁᏗ ᎾᏓ ᏧᏙᎢᏛ ᎪᎱᏍᏗ ᎾᏑᏴᎾ, ᎤᏣᏘ ᏧᎬᏩᎶᏗ, ᎠᎴ ᏚᏅᎵᏰᎥᎩ ᏥᏌ ᏧᎳᏏᏕᏂ, ᎠᎴ ᎤᏍᏘᏰᎬ ᎤᏩᏔᏅᎩ ᏚᏅᎦᎸᎲᎩ ᏧᎳᏏᏕᏂ. ᎠᎴ ᎦᎵᏦᏕ ᎤᎧᎵᏨᎩ ᎦᏩᏒᎬ ᎠᏠᏁᏗ. ᎠᏎᏉ ᎥᎩᏅᏏᏓ ᎨᏎᏍᏗ ᎠᎴ ᎧᏂᎩᏓᏉ. ᎾᎯᏳ ᎢᎦ ᏓᏆᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ; ᎥᏝᏃ ᎠᎦᏴᎵᎨ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ ᏂᎯ ᎢᏥᏍᏕᎸᏗᏱ ᏱᏨᏲᏎᎭ; ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎢᏨᏗᏍᎬ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎬᏗ ᏤᏥᏍᏆᏂᎪᏗ ᎡᏥᏍᏕᎸᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎾᏍᎩ ᎡᏥᏍᏕᎸᏗ ᎨᏒ ᏣᏛᏅᎢᏍᏗ ᎬᏂᎨᏒ ᎢᎬᏁᏗᏱ ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ. ᎯᎸᎢᏴ ᏱᏚᏯᏪᏣ ᏫᎵᎻ ᎠᏁᎵᏗ ᎦᏅᎬ ᎤᎵᏗᏨ ᎠᏥᎸᎥᏍᎨ. ᎾᏍᎩᏃ ᏄᏪᏒ ᎤᏓᏅᏒᎩ, ᎠᎴ ᎤᏕᎵᏛ ᏭᏯᏅᎲᎩ ᎤᎸᎢ ᎺᎵ, ᎯᎠ ᏄᏪᏒᎩ; ᏗᏕᏲᎲᏍᎩ ᎦᎷᎩ ᎠᎴ ᏗᏣᏯᏂᎭ. ᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩ ᏂᏣᏴᏢᎾ ᎠᎴ ᏂᏣᏗᎴᎬᎾ ᎨᏒᎢ; ᎤᏟ ᏱᏥᏰᎸᎾ ᏱᏣᏴᏜ ᎠᎴ ᏱᏣᏗᎴᎦᏉ. ᎡᏘᏴ ᏥᎨᏒ ᎠᏂᏣᎳᎩ ᎠᏂᏴᏫ ᏙᎯᏯᎾᏊ ᏣᏁᎮᎢ ᎢᎾᎨᎢ ᎦᏚᏏ. ᏰᎵᏉ ᏯᏓᏅᏛᎳ ᎤᏍᏓᎦᏴᎯᏓ ᏗᎦᏒᏍᏔᏅ ᏏᏆ ᎭᏫᏯ ᏃᎴ ᎣᏍᏓ ᎠᎩᏍᏗ ᎨᏒᎢ. ᎣᎩᎵᏦᏫᏛ ᎤᏟᏂᎩᏛ ᎨᏴ ᎾᎥᏂ, ᏲᎾ ᎤᏤᏍᏙ ᏗᎦᏯᎵ ᏕᎫᎲ ᏤᏆ ᏅᏯ. ᎤᏚᎸᎲᏃ ᎡᎧᏯ ᎤᏪᏅᏍᏗᏱ, ᎠᎾᏓᏅᏟ ᎤᏃᏪᎳᏅᎩ ᏗᏂᏔᏲᏎᎸᎩ ᎠᏃᎯᏳᎲᏍᎩ ᏗᎬᏩᏓᏂᎸᎢᏍᏗᏱ; ᎾᏍᎩᏃ ᏭᎷᏨ, ᎤᏣᏘ ᏚᏍᏕᎸᎲᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏣᏛ ᎢᏳᏩᏂᏌᏛ ᎤᏃᎯᏳᏅᎯ. ᎧᏁᏌ ᎦᎵᏗᏓᏅ ᏕᎦᏒᏛ ᏧᏏᏩ ᏓᏍᏆᏚᎸ, ᏓᏦᎭᏴ ᎤᏏᏩ ᎨᏒ ᏗᏥᎶᏍᏔᏅ. ᎥᏝ ᎠᎴ ᏰᎵ ᎬᏩᏃᎯᏳᏙᏗ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᎿᏉ ᏥᎬᏇᎯᏍᏗᎭ. “ᎣᏏᏉᏗ ᎤᏪᎷᏁ ᎰᎻ. ᎠᏎᏃ ᎨᏍᏗ ᏱᏓᎪᎢᏳᏂ ᎡᏣᏈᏳᎡᏗ ᏕᏣᏒᏅ ᎠᏕᎳ, ᏥᏄᎦᏌᏍᏗᏉ ᏥᏔᏲᎯ. ᎠᎴ ᎤᏂᏣᏘ ᏑᏰᎵᎯᏍᏔᏅᎩ, ᎠᎴ ᏥᏳᎯ ᏭᏣᏅᎩ, ᎠᎴ ᎹᎩᏕᎵ ᏭᎾᏄᎪᏨᎩ. “ᎣᏏᏉᏍᎪ ᏗᎧᏃᏗ?” ᎤᏛᏛᏁ ᎦᏂᎦᏔ. ᎢᏥᎾᏄᎪᏩᏲᎪ ᎠᏙᎴᎰᎯᏍᏙᏗ ᏕᏥᏁᏟᏴᏒ ᏕᏣᏓᏅᏛᎢ; ᎪᎯᎢᏴ, ᎤᎪᎮᎢ ᎤᏓᎴᏨ ᏗᎧᏃᏗ ᎠᏣᏗ, ᏍᏈᏍᏓ ᏚᏣᎡᎢ ᎠᏍᎪᎵ. ᎤᏅᎪᏨ ᏚᏑᎬ ᎭᏫᏂᏨ, ᎤᏩᏨᏩᏍᏔᏅ ᏧᏍᏆᏅᎾ, ᎨᏓᎵ ᎤᏪᏅᏒ ᎤᎧᎭᏛ ᎦᏓᏁᏍᏙ ᎠᏙᎯ. ᎠᏂᏍᎦᏰᎬᏍᏔ ᎠᏂᏍᎦᏯ ᏕᎦᏘᏁᎬ ᏧᎾᎵᏍᏔᏴᏗ ᏃᎴ ᏧᎾᏗᏔᏍᏗ, ᎭᎾᏉ ᎢᏴ ᏩᎩᏍᏛᏗ ᎨᏒ ᎦᏥᏯᏓᏁᏥᏴᏍᎬ. ᏂᏗᎦᎵᏂᎬᎬᎾᏰᏃ ᎠᏎ ᏥᎨᏎᎢ, ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎦᎶᏁᏛ ᎢᎩᏲᎱᎯᏎᎴ ᎢᏗᏍᎦᎾᎢ. ᎾᏍᎩ ᎬᏩᎾᏙᎴᎰᎯᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎨᏒᎢ ᏚᎾᏓᏲᏒ ᎤᎾᎵᏐᏢᎢᏍᏙᏗᏱ, ᏄᏓᎴᏒ ᎦᏓᏒ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏧᎬᏩᎶᏗ ᎤᏂᎬᎥᏍᎬ ᏅᏧᎵᏍᏙᏔᏅ. ᎢᏨᏒᏰᏃ ᎢᏥᎦᏔᎭ, ᎢᏓᎵᏅᏟ, ᏄᏍᏛ ᏫᏨᎷᏤᎸᎢ, ᎾᏍᎩ ᎠᏎᏉᏉ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎾᎿ ᎢᎩᏙᎵᏨᎯ ᏥᎩ ᎾᏍᎩ ᎠᏥᎨᏳᎢ ᎢᏳᏩᏂᏌᏛ; ᎾᏂᏚᏍᏗ ᏕᎩᎾᏓᏴᎳᏛ ᎠᎼ ᎭᏫᏂ. ᎾᎥᏃ ᏭᎷᏨ, ᎾᎿ ᎠᎦᏐᎠᏍᎬ ᎢᏴᏛ ᎣᎵᏩᏲ ᎤᏌᎯᎸᎢ, ᏂᎦᏛ ᎤᏂᏥᏘ ᎨᏒ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎾᎴᏅᎮ ᎠᎾᎵᎮᎵᎨ ᎠᎴ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ ᎠᏍᏓᏯ ᎠᏂᏁᎨᎢ. ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸ ᎤᏂᎪᎲᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪᎭ, ᎯᏰᎩ ᏂᎯ ᎯᎵᎯ, ᎠᎴ ᏔᎴᎲᎦ ᎩᏯᏓᏅᏏ ᏧᏂᏲᎱᏒᎯ ᎩᏯᏓᏑᏴᎢ, ᎦᎶᏁᏛᏃ ᏓᏣᏁᎵ ᎢᎦ-ᎦᏘ. ᎤᏂᎦᎸᏍᏓᏅ, ᎢᎾᏓ ᎠᏦᏫᏎᏍᎨ ᎠᏥᏂᏴᎲ. Ꭷ, ᎤᎬᏫᏳᎯ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎨᏒ ᎡᎯ, ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ, ᎠᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎤᏩᏒᎯ ᎠᎦᏔᎿᎢ ᎤᏁᎳᏅᎯ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᎴ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ; ᎡᎺᏅ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎠᎩᏅᏏᏛ ᎢᏯᏆᏛᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᎩᏍᏆᏗᏍᏗᏱ, ᎾᏍᎩ ᎠᏴ ᎠᏆᎵᏍᏓᏴᏗ. ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎾᏂᎥ ᎾᏍᎩ ᏗᎨᏥᏰᎸᎳᏅᎯ ᎨᏒᎢ; ᎠᎴ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎩ ᏕᎨᏥᏰᎸᏔᏅᎩ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏗᏥᏍᎦᎢᎮᏍᏗ. ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎳ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎤᏕᎵᏛ ᏱᎩ ᎾᏍᎩ ᎠᏙᎴᎰᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏥᏌᏃ ᏚᏌᎳᏓᏅ ᏗᎦᏙᎵ, ᎠᎴ ᏚᎪᎲ ᎤᏂᏣᏘ ᏗᎬᏩᎷᏤᎵᏒᎢ, ᎯᎠ ᏄᏪᏎᎸᎩ ᏈᎵᎩ; ᎭᏢ ᏓᎩᏩᏏ ᎦᏚ ᎯᎠ ᎤᏂᎩᏍᏗ. ᏝᏍᎪ ᎯᎠ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗ ᏱᎨᏎ ᎦᎶᏁᏛ, ᎠᎴ ᏬᏴᏍᏗ ᏱᎨᏎ ᎦᎸᏉᏗᏳ ᎤᏤᎵ ᏗᎨᏒᎢ. ᎾᏍᎩᏃ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎢᎤᎷᏨ ᎤᎾᏄᎪᏫᏎᎴ ᎤᏅᏏᏙᎯ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᎦᏁᎳᏃ ᎤᎾᎸᎯᏳ ᎨᏒ ᎯᎠ ᏄᏪᏎᎴ ᎤᏅᏏᏓᏍᏗ, ᎮᎾ ᏄᎳ ᏫᏴᎲ ᎡᎾᎢᏓᏍᏗᏱ ᎠᎴ ᏧᏍᏗ ᏕᎦᎳᏅᏛᎢ ᎦᏚᎲᎢ, ᎠᎴ ᏕᎭᏘᏃᎸᎭ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎠᎴ ᎪᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᎤᏂᏲᎱᏎᎸᎯ, ᎠᎴ ᏗᏂᏲᎤᎵ, ᎠᎴ ᏗᏂᎨᏫ. ᎾᎩᎾᏃ ᎪᏍᏓᏱ ᏥᎦᏰᏌᏕ ᏃᎴ ᎦᏅᎯᏓ ᏗᏓᏰᎳᏍᏙᏗ ᎢᏳᏍᏗ ᏥᎨᏎᎢ ᏃᎴ ᎦᏁᎦᏗᏓᎸᎦᏍᏙᏗ ᎢᏳᏍᏗ ᏣᏄᏍᏕ. ᏰᏥᎸᏉᏔᏅᏃ ᏧᏬᏚᎯ ᏧᏄᏩᎢ, ᎠᎴ ᎯᎠ ᏱᏁᏥᏪᏎᎸ, ᎠᏂ ᎣᏍᏛ ᎨᏒ ᎯᎲᎦ, ᎤᏲᏃ ᎢᏳᏛᎿᏕᎩ ᎯᎠ ᏱᏁᏥᏪᏎᎸ, ᎾᎿ Ꮎ ᎯᏙᎨᏍᏗ, ᎠᎴ ᎠᏂ ᎯᎲᎦ ᎯᏆᎳᏏᏗᏱ ᎠᎩᏍᎩᎸ ᎭᏫᏂᏗᏢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ, ᎡᎩᏚᎦ, ᎥᏝ ᎤᏇᏓᎵ ᏱᎩᏚᎦ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎢᎩᏍᏓᏩᏗᏓᏍᏗᏱ ᎢᏕᎲᎢ. ᎤᏔᎷᎩᏍᎩ ᎤᏬᏪᎳᏁ ᏌᎳᏓ, ᏃᎴ ᎤᏔᎷᎩᏍᎨ ᏫᎵᎻ ᎠᎦᎵᏍᎬᎢ. ᏃᎴᏍᏉ, ᏫᏥᎢᏲᏍᏓ ᎨᏒ, ᏔᎵᏍᎪᏔᎵ ᎢᏳᏕᏘᏴᏓ Mrs. Chapman. ᎤᏁᏤᎸᏃ, ᎯᎠ ᏄᏪᏎᎢ, Ᏺ! ᏂᏦᎯᏳᏒᎾ ᎪᎯ ᏥᏤᎭ! ᎢᎳᎪ ᎢᎪᎯᏛ ᎢᏨᏰᎳᏗᏙᎮᏍᏗ? ᎢᎳᎪ ᎢᎪᎯᏛ ᎤᏁᎳᎩ ᎢᏨᏰᎵᏎᎮᏍᏗ? ᎠᏂ ᎯᏯᏘᏃᎦ. ᎢᎠᏓᎵᏅᏟ, ᎡᏦᏳᏒ ᎦᎸᏉᏗᏳ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᏞᏍᏗ ᏔᎵ ᏳᏛᏕᏍᏗ ᏗᏓᎸᏉᏙᏗ ᎨᏒᎢ. ᏂᎦᏛᏃ ᎵᏓ ᎠᎴ ᏎᎶᏂ ᎠᏁᎯ ᎬᏩᎪᎮᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏔᏁᎢ. ᎤᏬᏘᏒ ᏄᏍᏕ ᏗᎧᏃᏗ ᏃᎴ ᏧᏯᏪᎩ ᏅᏩᏍᏕᎢ. ᎠᎾᏘᏲᏍᎬ ᎨᏍᏗ ᏳᎾᎵᏍᏖᎸᏔᎾ ᎠᏂᏣᎳᎩ. ᏥᏁᎦ ᎠᏂᎦᏔᎾᎢ ᏥᎦᏥᏁᏤᎰ ᎾᏍᎩᏯᎢ; ᎢᏥᎪᎵᏯ ᏂᏥᏪᏍᎬᎢ. ᎤᏍᏗ ᎦᏚᎲ ᎨᏒ. ᎩᎶᏍᎩᏂ ᎠᏆᏓᏱᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎠᎦᏓᏱᏍᏗ ᎨᏎᏍᏗ ᎠᏂᎦᏔᎲ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ. ᎤᎩᏨᏓ ᎢᎦ ᎠᎦᏍᎩ ᎣᎩᎳᏦᏩᏔᏅ. ᏧᏄᏬᏃ ᏚᏔᎷᎩᏍᎨᎢ, ᎤᏣᏘ ᏧᏁᎩᏳ ᎨᏎᎢ ᎥᏃᏥ ᏥᏄᏁᎩᏴ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᎥᏝ ᎩᎶ ᏗᎬᎩᎶᏍᎩ ᎠᏂ ᎡᎶᎯ ᎡᎯ ᎾᏍᎩ ᎢᏧᏁᎬ ᏱᏂᏙᎦᎬᎦ. ᏃᏗ ᎤᏔᎷᎩᏍᎩ ᏥᎪᏪᎴ ᏓᏏᎳᏛ, ᎢᏳᏍᏗᏉ ᎨᏒ ᎾᏛᏁᎮ ᎤᏔᎷᎪᏗ. ᎤᏣᏘ ᎢᏨᏲᎢᏳᎭ; ᎤᏣᏘ ᎢᏨᎸᏉᏗᏍᎪᎢ; ᎠᎩᎧᎵᏨᎯ ᎤᎦᎵᏍᏗ ᎨᏒᎢ; ᎤᏣᏔᏅᎯ ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎪ ᏂᎦᎥ ᎣᏥᎩᎵᏲᏥᏙᎲᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᎢᏨᏯᏓᏅᏖᎸ ᎤᎧᎵᏍᏗ ᎣᎦᏓᏅᏓᏛᎩ ᏂᎦᎥ ᎣᏥᎩᎵᏲᎬ ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎬᎢ, ᏂᎯ ᎢᏦᎯᏳᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ. ᎭᏕᏬ Mr. Cass, ᏃᏉ ᎠᏆᏣᏅᏓᏕ. ᏃᎴ ᎯᎸᎢᏴ ᎠᏣᏗ ᎤᏍᎦ ᏳᏂᏁᎳ ᏪᏌ, ᎠᏣᏗ ᎢᏳᏍᏗ ᎠᏒᎨ. ᎠᏎᏃ ᏍᏏᏉᏯ ᎤᏕᎶᏆᎡ ᏄᏓᎴ ᎢᏳᏛᏁᏗᎢ. ᏥᏌᏃᎤᎪᎲ ᎾᏍᎩ ᎤᏂᏣᏘ ᎠᎾᏁᎷᎩᏍᎬ ᎠᎾᏓᏟᏏᏍᎬᎢ, ᎤᏍᎦᏤ ᎦᏓᎭ ᎠᏓᏅᏙ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏨᎨᏩᎠᎴ ᏗᏣᎵᎡᎾ ᎠᏓᏅᏙ, ᎬᏁᏤᎭ, ᎡᎯᏄᎪᎢ, ᎠᎴ ᏞᏍᏗ ᎿᏉ ᎢᎸᎯᏳ ᏥᎯᏴᎵ. ᎯᎠᏍᎩᏂᏃᏅ ᏂᎤᏍᏗ ᎢᏣᎭ, ᎾᏍᎩ ᎢᎯᏂᏆᏘᎭ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏂᏂᎦᎴᏓᏂ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏴ ᏥᏥᏂᏆᏘᎭ. ᏃᎴ ᎭᏫᏂ ᎡᏆ ᎠᏓᏁᎸ, ᏧᏁᎦ ᎦᏍᎩᎸ ᏗᏰᏍᏛᏗ ᏃᎴ ᎠᏕᎳ ᎤᏁᎦ ᏗᎪᏒᏍᏔᏅ ᏴᎩ ᏃᎴ ᏗᏗᏙᏗ ᏃᎴ ᏦᎯᏍᏙᏗ ᏧᏃᏩ. ᎠᎴ ᏗᎧᏃᎩᏍᏙᏗ ᏗᏂᏃᎩᏍᏗᏍᎩ, ᎠᎴ ᏗᏂᏃᎩᏍᎩ, ᎠᎴ ᎠᏦᏔᏍᏗ ᏗᏂᏃᎩᏍᏗᏍᎩ, ᎠᎴ ᏗᏂᏤᎷᎯᏍᎩ ᎤᎾᏓᏃᏴᎵᏍᏛ ᎥᏝ ᎠᎴ ᎪᏢᏅᎥᏍᎩ ᏄᏓᎴᏒᏉ ᎪᎱᏍᏗ ᎪᏢᏍᎩ ᎿᏉ ᏰᏣᏩᏛᎡᎴᏍᏗ; ᎠᎴ ᏅᏯ ᎠᏍᏙᏍᎩ ᎤᏃᏴᎬ ᎥᏝ ᎿᏉ ᎡᏣᏛᎦᏁᏗ ᏱᎨᏎᏍᏗ; ᎯᎸᎢᏴ ᏓᏲᎪ ᏓᏏᎳᏛ ᏍᎪᏯ ᏓᎾᏣᏯᎩᏍᎬᎢ, ᎣᏍᏓ ᎢᏳᏩᏁᏗ ᎨᏐ ᎧᏅᏂᏍᎩ ᎧᎵ ᏧᏔᎸᎩᏓ ᏱᎩ. ᎠᎴ ᎠᏣᏗ ᏯᏔᏲᎯᎭ, ᏥᎪ ᎢᎾᏛᏉ ᏴᎦᏅᎥᏏ? ᎢᎸᎯᏢᏃ ᎤᏱᎶᎯᏏ ᎤᎩᎸᏍᎪᎢ; ᎠᎴ ᏓᎭᏬᎢᎰᎢ, ᎠᎴ ᏕᎦᎸᏓᎩᏍᎪ ᏕᎦᏄᏙᎬᎢ, ᎠᎴ ᎤᎸᏕᎯᎰᎢ; ᎨᏣᏍᏓᏩᏗᏙᎯᏃ ᎦᏥᏔᏲᏎᎸ ᎤᏂᏄᎪᏫᏍᏗᏱ; ᎠᏎᏃ ᎤᏂᏄᎸᏅᏉ. ᎠᏰᎴᎩ ᎤᏏᏩᎸ ᎣᎭᏁ ᏥᏥᏯᎧᎯᏯᏍᎬ ᎠᎨᏯ. ᏅᏃ ᎠᏕᎭᏲᎲ ᏭᏂᎷᏣ, ᏕᎦᏆᏛ ᏫᏚᎶᏒ ᏌᏬᏚ ᏕᏥᎪᏩᏘᏍᎬ, ᎠᎬᏱᏣ ᏩᎦᏘᏗᏒ ᏂᎦᏓ ᎣᎬᎭᏂᎸ. ᏥᏳᎯᏃ ᎤᎾᏣᎢᏒ ᎩᎳᏉ ᎢᏴᏛ ᎬᏬᎵᏤᎢ. ᏎᎦ ᎤᎾᎴᏫᏍᏔᏁ ᎤᏛᏐᏅ ᎤᏤᏥᏍᏗ ᏗᎦᏂᎩᎸ, ᎠᏆᏛᎦᎾ, ᎠᏇᎵᏒ ᎨᏍᏗ ᏍᎩᎾᎾ ᎢᏳᎾᏛᏁᏗ ᏱᎨᏎ. ᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᏱᏥᎦᏔᎭ, ᎣᏏᏳ ᏱᏣᏓᏅᏔ ᎾᏍᎩ ᏱᏂᏣᏛᏁᎭ. ᎡᏆ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏓ ᎦᎶᎯᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏗᏍᏆᏂᎪᏙᏗ, ᏏᏆ ᎤᏴᏍᏗ ᎦᎸᎳᏗᏣ. ᎯᎪ ᏑᎾᎴ ᎤᏪᏝᎴᎾ ᏏᏆ ᏣᏄᏏ, ᎤᏕᎶᎰᏎ ᏓᏏᎳᏛ ᎾᏍᎩᏃ ᎤᎧᎭᏕ, ᎣᏍᏓ ᎠᎪᏩᏛᏗ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎤᎧᎭᏗ ᏱᎩ. ”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ!” ᏍᏓᏯ ᏄᏪᏎ ᏫᎵᎻ, ᎦᏙ ᏭᏓᏓᎩᏅᏎ. ᏁᎳᏚ ᎢᏍᎪᎯᏧᏈ ᏔᎵᏍᎪᎯ ᏅᎩ ᏧᏕᏘᏴᏌᏗᏒ ᎠᏥᏁᎴ ᏍᏏᏉᏯ ᎠᏕᎳ ᎤᏁᎦ ᎠᎧᏁᏍᏗ. ᏫᏥ ᏩᏓᏬᎢᎡ, ᎾᎨᎢᏴ ᎣᏁ ᎢᏣ ᏅᏲ ᎭᏫᏂᏣ ᎤᏛᎦᏁ ᏂᏗᎦᏪᏍᎬ. ᏥᎻ, ᎤᏁᎳᏅᎯ ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᏅᏏᏛ, ᏫᏥᏲᎵᎦ ᏔᎳᏚ ᏂᏥᎳᏍᏓᎸ ᎢᏣᏗᎦᎴᏲᏨᎯ ᏥᎩ. ᏥᏲᏎᎸ ᎨᏍᏗᏗ ᏣᏓᏅᏖᏙᏗᏱᎩ ᏱᎬᎾᏦᏎᏛ ᏣᎵ ᏧᏤᎵ ᏴᏫ, ᎠᏆᏑᏯᎩᏍᏗ ᏱᎩ ᎶᏩᏂ ᎠᎴ ᏣᏥ ᎬᎩᏴᏣᎦᏍᏗ ᎠᎴ ᎤᎵᏨᏓᏆᏓ ᎠᏆᏗ ᎠᎩᏰᏨ, ᎬᎩᏯᏣᎦᏍᏗ ᏱᎦᏑᏯᎩ. ᎥᏝᏰᏃ ᏯᏆᏚᎵ ᎪᎯ ᎨᏒ ᎦᎢᏒ ᎢᏨᎪᏩᏛᏗᏱ; ᎠᏎᏃ ᎤᏚᎩ ᎠᏋᎭ ᎢᎸᏍᎩ ᎢᎪᎯᏛ ᎢᏨᏯᏕᏁᏗᏱ, ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎣᏏᏳ ᏳᏰᎸᏅ. ᎾᏍᎩ ᎯᎠ ᎢᎬᏱᏱ ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᏗᎧᎿᏩᏛᏍᏗ. ᎤᏣᏘᏂᏍᎩᏂ ᏂᏣᏛᏁᎭ, ᎠᎴ ᏧᎬᏩᎶᏗ ᏕᏥᎩᎡᎭ, ᎠᎴ ᎾᏍᎩ ᎢᏣᎵᏅᏟ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᎳᏗᏍᏗᏱ ᏥᎯᎳᏓ ᏣᏤᎵ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ, ᏂᎦᏛᏰᏃ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎠᏂᏱᏍᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏧᏂᏲᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ. ᎠᏍᎪᎵᏃ ᏕᎬᏩᏂᎮ ᎦᎾᏍᏓ ᎬᏗ, ᎠᎴ ᏕᎬᏩᎵᏥᏍᏆᏍᎨᎢ, ᎠᎴ ᏓᎾᎵᏂᏆᏅᎥᏍᎨ ᎬᏩᏓᏙᎵᏍᏓᏁᎮᎢ. ᎦᎶᏁᏛᏰᏃ ᎾᏍᏉ ᏌᏉ ᏄᎩᎵᏲᏤ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏍᏛᏕᎢ, ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎠᏂᏍᎦᎾ ᏚᎩᎵᏲᏤᎴᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯᏱ ᏫᏗᎦᏘᏃᎯᏍᏗᏱ; ᎠᏥᎴᎢ ᎤᏇᏓᎵ ᎨᏒᎢ, ᎠᏎᏃ ᎠᏓᏅᏙ ᎤᏩᏂᏕᎢ. ᏃᏉ ᎧᏂᎩᏛ ᏄᎵᏍᏔᏅ, ᏚᎴᏅ ᎦᏚᏏ ᎢᏣ ᎤᎵᏗᎩᏒ. ᎾᏍᎩᏃ ᎤᏁᏅ ᏫᏚᏂᏃᏁᎴ ᎠᏂᏐᎢ; ᎾᏍᏉ ᎥᏝ ᏱᏚᏃᎯᏳᏁ ᎾᏍᎩ.. “ᏔᎵᏁ, ᏥᏇᏅᏍᎪ.” ᎨᏍᏗ ᏱᏥᎦᏔ ᏍᎩᎾᎩᏪᏒ. ᏗᎾᏓᏂᏱᏍᎩᏃ ᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒ ᏚᏂᏃᏁᎴ ᏗᏄᎪᏗᏍᎩ. ᎤᏂᏍᎦᎴᏃ ᎤᎾᏛᎦᏅ ᎠᏂᎶᎻ ᎨᏒᎢ. “ᎦᏙ ᎠᏗᎭ?” ᎤᏛᏁ ᏌᎳᏓ. ᎤᏍᏗ ᎢᏈᎬᎢ, ᎦᏙᏊᎢ? ᎤᏓᏛᏛᏁᎢ ᎤᏍᏗ ᎠᏧᏣ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ, ᎤᏂᏅᏏᏙᎯ ᎦᎷᏨᎭ ᏓᏩᏛᎲᎭ ᎠᏂᏯᏫᏍᎬᎢ; ᎤᏙᎯᏳᎯᏯ ᎢᏣᏲᏎᎭ ᏛᏓᏠᎵ ᎤᏩᏒ, ᎠᎴ ᏙᏓᎧᏁᏤᎵ ᎤᎾᏂᏢᏗᏱ [ᎤᎾᎵᏍᏓᏴᏗᏱ,] ᎠᎴ ᏓᎦᎷᏥ ᏙᏛᏍᏕᎸᎯ. “ᏍᎩᏙᎵᎩ ᏂᎦᏓ,” ᎡᏝᏪᎯ ᏄᏪᏎ ᏫᎵᎻ. ᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎬᏩᎪᎲ, ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᏯᏛᎥᎦ! ᎯᏯᏛᎥᎦ! ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᎯ ᎡᏣᏗᎿᏫᏛ, ᎠᎴ ᎡᏣᏛᎥᎦ; ᎠᏴᏰᏃ ᎥᏝ ᏱᏥᏩᏘᎭ ᎤᏍᎦᏅᏨᎢ. ᏗᏓᏁᎸ ᏭᎷᏣ ᎰᎻ, ᏚᎿᏩᎩᏎ ᏚᎷᏫᏍᏔᏁᎲ ᏧᎿᏬ ᏃᎴ ᏦᎯᏍᏙᏗ ᏚᎿᏬᎡ. ᎠᎴ ᏕᏓᏓᏓᏅᏖᏍᎨᏍᏗ, ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎴ ᏱᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏗᎦᏓᏂᎳᏕᏗᏱ ᏗᎩᏄᏫᏍᏓᏁᏗᏱ; ᎠᏎᏃ ᏉᎳ ᎠᏍᏓᏯ ᎤᎵᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ ᏨᏒ ᎪᎱᏍᏗ ᎤᏲ ᎢᏣᏓᏛᏁᎸᎩ, ᎠᏂᏰᏃ ᏂᎦᏛ ᎣᏥᏯᎠ. ᎯᎸᎢᏴ ᏍᎩᎾᎾ ᏄᎵᏍᏔᏁ ᎨᎵᏍᎪ, ᎤᏛᏅ. ᎠᏍᎩᎾᏃ ᎤᏘᏅᏎ ᎤᎿᎷᏔᏁ ᎢᏅᎢᎦᏘ ᎣᏓᎸᎢ, ᎠᎴ ᏚᏎᎮᎴ ᎩᎳᏉ ᎢᏴᏛ ᎢᎪᎯᏛ ᏂᎦᎥ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎡᎶᎯ. ᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎡᏥᏍᏕᎸᏙᏔᏅᎯ ᎪᎯᏳᏗ ᎨᏒ ᎬᏔᏅᎯ; ᎠᎴ ᎾᏍᎩ ᎥᏝ ᎢᏨᏒ ᎨᏒ ᏅᏗᏳᏓᎴᏅᎯ; ᎤᏁᎳᏅᎯ ᎤᎵᏍᎪᎸᏔᏅᎯ; ᏕᎦᏃᏣᎸᏃ ᏂᎬᎾᏛ ᏏᎵᏱ ᎤᏰᎵᏎᎢ; ᏕᎬᏩᏘᏃᎮᎴᏃ ᏂᎦᏛ ᏧᏂᏢᎩ, ᏧᏓᎴᏅᏛ ᎥᏳᎩ ᎠᎴ ᎡᎯᏍᏗ ᎤᏂᏱᎵᏙᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ, ᎠᎴ ᎾᏍᏉ ᏧᏂᎸᏃᏘᏍᎩ, ᎠᎴ ᎾᏍᏉ ᏧᏂᎾᏫᏍᎩ; ᏚᏅᏩᏁᏃ. ᎿᏃ ᏅᎩ ᏗᎦᏅᏌᏗ ᏥᎪᎥᎯ ᏢᏓᏥᏧᎶᎸᏗ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᎰᎵᏃ ᏢᏓᏥ ᎤᏃᏕᏅ ᎠᎰᎵ ᏥᏄᏍᏙ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎢᎾᏛᏃ ᎤᏁᎸᎩ ᎤᏤᎵ ᎤᎵᏂᎬᎬᎢ ᎠᎴ ᎤᏤᎵ ᎤᏪᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎤᏣᏗ ᎢᏳᏛᏁᎵᏓᏍᏗᏱ ᎤᎵᏍᎪᎸᏓᏁᎸᎩ. ᏃᏗᏍ ᎠᎦᏍᎬ ᎤᏴᏨ ᎠᎦᏍᎬ ᏃᎴᏍᏊ, ᎪᎯᏴ ᎠᏫᏴ ᎠᏆᏂᎩᏓ ᏃᏊ ᎤᎴᎾᎲ ᎫᏘᏍᎬ. “ᏃᎴ ᏄᏓᎴ ᎠᎾᏓᏤᎵ ᏌᎳᏓ ᎤᏃᎴ ᎠᏲᏙᏗ ᎠᎩᎸᏗᏍᎩ. ᏓᏱᏓᎵᏃ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎾᏍᎩ Ꮎ ᏗᎦᏙᎵ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎾᏍᎩᏯ ᏥᎩ, ᏧᎳᏏᏕᏂᏃ ᎥᏣᏱ ᎬᏩᏔᎷᎩᏍᎩ ᎾᏍᎩᏯ ᏥᎩ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎦᎴᏂ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎦᏃᎪ ᎤᎸᏍᏓᏁᎸᎯ ᏚᎵᎧᏁᏴᎮ, ᎠᎴ ᎣᏍᏛ ᎤᏬᏂᏎᎢ. ᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏕᏥᎨᏳᏎᏍᏗ ᎨᏥᏍᎦᎩ; ᎣᏍᏛ ᏕᏥᏁᏤᎮᏍᏗ ᎨᏥᏍᎩᏅᏗᏍᎩ, ᎣᏍᏛ ᏂᏕᏣᏛᏁᎮᏍᏗ ᎨᏥᏂᏆᏘᎯ, ᎠᎴ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎦᏰᎪᎩ ᎨᏥᏃᎮᏍᎩ ᎠᎴ ᎤᏲ ᎢᎨᏨᏁᎯ. ᎤᎾᏛᎦᏅᏃ ᎾᏍᎩ, ᎤᏂᎸᏉᏔᏅᎩ ᎤᎬᏫᏳᎯ. ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎢᏓᎵᏅᏟ, ᎭᏙᎴᎰᏍᎦ ᏄᏂᏧᏈᏍᏛ ᎠᏂᏧᏏ ᎤᏃᎯᏳᏅᎯ; ᏂᎦᏛᏃ ᎤᏣᏘ ᎤᏂᎸᏉᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ. ᎪᎯᏍᎩᏂ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎡᏓᏚᏓᎳᎡᎸ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏲᎱᏒᎯ ᎨᏒ ᏗᎩᎾᏢᏅᎯ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏤ ᎠᏓᏅᏙ ᎢᎬᏙᏗᏱ ᎪᎱᏍᏗ ᎡᏓᏛᏁᏗᏱ, ᎥᏝᏃ ᎪᏪᎸᏉ ᎢᎬᏙᏗᏱ ᎾᏍᎩᏯ ᏂᎦᏛᏁᎸ ᏧᏩᎫᏔᏅᏒᎢ. ᎣᏏᏉᏧ? ᏲᎾ ᎤᏤᏍᏙ ᎤᏍᏘᏰᎬ ᎠᏂᏥᎸᏍᎩ ᏗᎬᏔᏅ ᎤᏬᏚᎢᏍᏕᎢ. ᏥᎪ ᎢᏨᎶᏄᎡᏍᎨ ᎦᏥᏴᏗᏍᎨ ᎩᎶ ᎦᏥᏅᏏᏛ ᏫᎨ-ᏥᎷᏤᎸᎯ? ᎡᏥᏅᏏᏓᏍᏗ, ᏕᏦᎯᏳᏎᏍᏗ ᏂᎦᎥ ᏂᎨᏥᏪᏎᎲ ᎨᏥᏅᏏᏙᎯ ᎠᏂ ᎤᏇᏓᎵ ᎨᏒᎢ; ᎥᏝ ᏥᏛᏓᏗᎧᏃ ᎾᏍᎩᏯᎢ, ᏴᏫᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏗ, ᎣᏏᏳᏍᎩᏂ ᎢᏥᏰᎸᎯ ᎨᏎᏍᏗ ᏗᏥᎾᏫᏱ, ᎡᏥᎾᏰᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ: IX. ᏫᎵᎻ ᎤᏨᏉᏙᏗ ᎠᏯᏙᎵ ᎦᎶᎯᏍᏗᏱ ᎢᏥᏴᏍᏓ ᎠᏯᏖᏂᏰᏃ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎠᏯᏖᏂ ᏅᏃᎯ ᎠᏲᎱᎯᏍᏗᏱ ᏫᎦᎾᏄᎪᎬᎢ, ᎤᏂ ᏣᏔᏃ ᎾᎿ ᎠᏂᎶᏍᎦ. ᏗᏂᎧᎿᏩᏗᏙᎯᏰᏃ ᎥᏝ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏱᏂᏚᏩᏁᎸ ᎾᏍᎩ ᎾᎿ ᎡᎶᎯ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎨᏒᎩ, ᎾᏍᎩ ᏥᏗᏁᎢᏍᏗᎭ. ᏚᏂᏃᎩᏒᏃ ᏗᎧᏃᎩᏍᏗ ᎤᏂᏄᎪᏨᎩ, ᎣᎵᏩᏲᎢ ᎤᏌᎯᎸ ᏭᏂᎶᏒᎩ. ”ᏐᏉ ᎢᏳᏪᏅᏍᏗ, ᏒᏙᏂ ᎦᎵ ᏣᎵᏍᏓᏴᏗ ᏚᎵᎬᏩᏝ.” ᎨᏍᏗ ᎩᎶ ᏳᎪᎭ ᎤᎵᏏᎬᎢ. ᎠᎴ ᏣᏃᎮᏍᎩ ᏍᏗᏫ ᎤᎩᎬ ᎤᏤᏬᏨ ᎠᏴ ᎾᏍᏉ ᎾᎥ ᏥᏙᎬᎩ ᎠᎴ ᎣᏏᏳ ᎠᎩᏰᎸᏒᎩ ᎤᏲᎱᏒᎢ, ᎠᎴ ᏕᏥᎦᏘᏴᎩ ᏧᎾᏄᏬ ᎾᏍᎩ ᎬᏩᎯᎯ. ᎠᏌᎩᏛᎤᏙᏓᏆ ᏗᏆᏂᎩᏒ ᎤᎨᏓᎵᏴ ᎨᏴ. ᎠᏙᎴᏆᏍᏗ, ᏗᏂᏲᏟ ᏗᏛᎯᏍᏙᏗ, ᎠᏂᏩᏥᏂ, ᏗᎪᎵᏰᏗ, ᏗᎪᏪᎳᏅ, ᎠᎵᏍᏔᏴᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᎾᏫ ᎣᏏᏳ ᎤᏓᏅᏓᏛᎩ, ᏥᏃᎦᏃ ᎠᎵᎮᎵᎬᎩ, ᎾᏍᏉᏃ ᎠᎩᏇᏓᎸ ᏓᏳᏯᏪᏐᎵ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ; ᎨᏍᏗ ᎤᏍᏆᏂᎩᏘ ᏱᎨᏎ. ᎠᎴ ᎾᏍᏉ ᏕᏥᏲᎵᎸᎭ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎾᎿ ᎠᏂᏁᎸᎢ. ᎡᏥᏲᎵᎸᎭ ᎤᏣᏘ ᏥᎨᏳᎢ ᎢᏈᏂᏓ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᎬᏛᎾᏨᎯ ᏥᏂᎦᎵᏍᏗᎭ ᎡᎦᏯ ᎦᎶᏁᏛ ᎠᎵᏍᎪᎸᏓᏁᏗ. ᎯᎠ ᏴᏫ ᎾᎥ ᎬᎩᎷᏤᎭ ᎠᏂᎰᎵ ᎠᏅᏗᎭ, ᎠᎴ ᏚᏂᎭᏁᎦᎸ ᏓᏅᏗ ᎬᎩᎸᏉᏗᎭ, ᎠᏎᏃ ᎤᏂᎾᏫ ᎢᏅᎯᏳ ᏄᏅᏅ. ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏪᎿᎢᏳ ᏥᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏣᏘ ᎤᏓᎨᏳᏗ ᎨᏒ ᏧᏩᏔᏁ ᎠᏴ ᎢᎩᎨᏳᎯᏳ ᏥᏄᎵᏍᏔᏁᎢ, ᎤᏗᎴᎩ ᎨᏎ. ᎩᎶᏰᏃ ᎤᎮᏍᏗ ᎠᏥᏁᏗ ᎨᏎᏍᏗ, ᎤᏣᏘᏃ ᎤᏍᏆᏂᎪᏕᏍᏗ; ᎩᎶᏍᎩᏂ ᏄᎲᎾ ᎨᏎᏍᏗ ᎠᏥᎩᎡᏗᏉ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᏍᏉ ᎤᎲᎢ. ᎠᏓᏍᏓᏴᏗ ᏦᎳᏂ ᏭᎪᎮ, ᏃᎴ ᎩᎳᏈᏴ ᎠᏂᏍᎦᏯ ᏫᏚᏃᎯᏎᎴ. ᏥᏌᏃ ᏩᏥᏯᏅᎲᎩ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎤᏂᎷᎯᏍᏗᏱ. ᎠᏂᏴᏫᏃ ᎤᏂᏑᎵᎪᏤ ᎠᏅᏙᎵᏗᏍᎬ Ꮎ ᎠᏂᏔᎵ ᏗᎾᏟᎭ ᎤᎾᎴᏅᏎ ᏓᎾᏓᏙᏪᎳᏁᎲ ᎠᎴ ᎠᏂᎪᎵᏰᏍᎬ ᏣᎳᎩ. ᎦᏩᏍᏛᏂᏍᏗᏃ ᎤᏪᏢᏅ, ᏂᎦᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏚᏄᎪᏫᏒᎩ, ᎠᎴ ᎾᏍᏉ ᎠᏫ, ᎠᎴ ᏩᎩ; ᏚᏤᏮᎩᏃ ᎠᏕᎸ ᏚᏂᎲ ᎠᏕᎸ ᏗᏂᏁᏟᏴᏍᎩ, ᎠᎴ ᏚᎷᏆᏗᏅᏒᎩ ᏕᎦᏍᎩᎸᎢ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎿᏉ ᎾᏍᎩ ᎯᎠ ᏥᏍᏆᏛᎭ, ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᏂᎦᏥᏴᏁᎸ ᎤᏂᎪᏩᏛᏗᏱ, ᎯᎠ ᎾᏍᎩ ᎤᏓᏔᏅᎯ, ᏫᏨᎶᎢᏍᏓᏅᏗ ᎨᏎᏍᏗ ᏍᏆᏂᏱ ᏫᏥᎦᏖᏍᏗ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏝᏍᎪ ᎯᎠ ᏱᏂᎬᏪᏎᎴᎢ; ᎢᏳᏃ ᎰᎯᏳᎲᏍᎨᏍᏗ, ᏣᎪᏩᏛᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎠᎴ ᎾᏍᎩ ᎠᏴ ᎣᏏᏳ ᎤᏰᎸᏅᎯ ᎤᏁᎳᏅᎯ, ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓᏅᏛ ᏫᏨᎷᏤᏗᏱ, ᎠᎴ ᎢᏧᎳᎭ ᏂᎯ ᏗᎩᎦᎵᏍᏙᎯᏍᏗᏱ. ᎿᏉᏃ ᏥᏌ ᎠᎦᏔᎯᏳ ᎨᏒ ᏂᎦᎥ ᎿᏉ ᎤᎵᏍᏆᏛᎢ, ᎪᏪᎸ ᎤᏙᎯᏳᏗᏱ, ᎠᎩᏔᏕᎩᎭ, ᎤᏛᏅᎩ. ᎾᏂᎥ ᎩᎶ ᎪᎦᏓᏅᏖᏍᎬ ᎦᎶᏁᏛ ᎣᎩᏅᏏᏓᏍᏗ ᎾᏍᎩᏯ ᎪᎦᏓᏅᏖᏍᎨᏍᏗ, ᎠᎴ ᎣᎦᎦᏌᏯᏍᏗᎨᎩ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᏐᏉ ᎤᎵᏏᏂᏕᏅ ᎣᏣᎵᏍᏔᏴᎲᏍᎬ, ᏌᎪᏂᎨ ᏗᏑᏫᏍᏙᏗ ᏗᏫᏍᎩ ᎤᏓᎵ ᎤᏛᎦᏍᏔᏅ ᏥᏃᎮᏍᎬ ᏗᏆᏛᏒ, ᎢᏰᎵᏍᏗᎢᎦᏃ ᎤᏛᏅ. ᏤᏍᏗ ᎭᎾ ᏱᏣᏓᏬᎡᏍᏗ ᎤᏍᏗ ᎠᏣᏗ! ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᎳᏯ ᎦᏳᎳ ᎤᎷᏨ, ᎠᎴ ᎥᏝ ᏱᎬᏬᎵᏦᎢ, ᎠᏎᏃ ᏂᎦᎥ ᎤᎾᏚᎵᏍᎬᎢ ᏂᎬᏩᏁᎸ. ᎾᏍᏉᏍᎩᏂ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩᏯ ᏅᏓᎬᏩᏁᎵ. ᎠᏁᎵᏗ ᏍᏉ ᏓᎧᏔᏍᏗᏍᎨ. ᎤᎵᏏᏂᏗ ᎠᏌᏙᏱᏍᎨ ᎠᏁᎵᏗ ᎦᎸᏙᏗ. ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᏧᏰᏍᏙᏗ ᏧᏤᎵ ᏧᏂᏍᏗ. ᏰᎵ ᏎᎦ ᎦᏚᏏ ᎤᎾᏁᎳᏗᏍᏗ ᎢᎦ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎯᎠ ᎾᏍᎩ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎤᏟ ᎢᎦᎢ ᎠᎲᎦ ᎡᏍᏚᏉ ᏂᎦᏛ ᎠᏂᏐᎢ. ᎩᎶ ᎠᏏᏴᏫ ᎯᎠ ᎢᏳᎾᏍᏗ ᏗᏂᏲᎵ ᏓᏓᏂᎸᎨᏍᏗ ᎠᏴ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ; ᎩᎶᏃ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎥᏝ ᎠᏴ ᏱᏓᏆᏓᏂᎸᎨᏍᏗ, ᏅᏛᎩᏅᏏᏛᏍᎩᏂ ᏓᏓᏂᎸᎨᏍᏗ. ᏔᎵᏚ ᎢᏯᏂ ᎠᏂᏍᎦᏯ, ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ - ᏩᎢ ᎤᎾᏁᎶᏔᏅ ᏣᎵ ᏚᏓᏘᎿᎥ. ᎠᏗᏍᎪ ᎠᎵᏰᎾ, ᎪᎱᏍᏗ ᏧᏂᎵᏬᏨ ᏓᏂᏯᎩᏍᎪ ᎤᏂᏥᏯ ᏃᏗ ᎦᏙ ᏫᏓᎾᏗᎩᏍᎪ. ᏥᏳᎯᏃ ᎣᏂᏗᏢ ᎤᏣᎡ ᎦᎵᎮᎢ, ᎠᎫᏍᏙ ᎤᎫᏍᏓᎡᎢ; ᎬᏩᏰᏍᏔᏁᏃ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᏝᏍᎪ ᎪᎱᏍᏗ ᏰᎵᎭ ᏨᏓᏲᏣᏗᏒᏂ? ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏨᏍᏛᎦ ᎠᏨᏍᏙᏗ ᎤᏕᎵᏒ ᏱᎦᎧᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ ᎠᏟᎶᏍᏗ ᏱᎫᏢᏗᏍᎪᎢ, ᎦᎪᏗᏱᏍᎩᏂ ᎦᎪᏗᏍᎪᎢ, ᎾᏍᎩ ᏅᏛᏂᏴᎯᎯ ᎤᏂᎪᏩᏛᏗᏱ ᎢᎦ ᎦᏛᎢ. ᎤᏁᎷᏁ ᏌᏌ. ᎢᏳᏃ ᎪᎱᏍᏗ ᏓᏆᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏎ ᎢᏯᏆᏛᏁᏗ. ᎾᏍᎩ ᏭᎷᏨ ᎠᎴ ᎤᎪᎲ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᏚᏔᏲᏎᎴ ᏂᎦᏛ ᎤᎵᏂᎩᏛ ᎤᎾᏓᏅᏓᏗᏍᏗᏱ ᏧᏂᏂᏴᏗᏱ ᎤᎬᏫᏳᎯ. ᎾᎯᏳ ᎢᎦ ᏥᏌ ᎤᏄᎪᏨᎩ ᎠᏓᏁᎸᎢ, ᎠᎴ ᎥᏓᎷᎶᏗ ᎤᏪᏅᎩ. ᎠᏃ ᎠᏉᎳ ᎢᎩᏅᏟ, ᎤᏣᏘ ᏥᏍᏗᏰᏓ ᏫᏥᎷᏤᏗᏱ ᎤᏁᏅᏍᏙᏗᏱ ᎠᎾᎵᏅᏟ; ᎠᏎᏃ ᎥᏝ ᏳᏚᎸ ᎠᏎ ᎪᎯ ᎨᏒ ᎤᏪᏅᏍᏗᏱ; ᏮᏓᎦᎷᏥ ᎠᏗᎾ ᎤᏜᏅᏓᏕᎸᎭ. ᎤᏐᏅᏤᎯᏃ ᏕᎤᎧᎿᏅ ᎾᏍᎩ ᎬᏩᏚᏫᏛ ᏄᎾᏛᏅ, ᎤᏕᏯᏔᏁᎲ ᏗᏍᏓᏱᏳ ᎨᏒ ᏧᏂᎾᏫ, ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎦᏯ; ᎭᏙᏯᏅᎯᏛ. ᎤᏙᏯᏅᎯᏕᏃ, ᎤᏪᏰᏂᏃ ᎬᏩᏃᏍᏛ ᏄᎵᏍᏔᏁ ᎾᏍᎩᏯ ᏐᎢ ᏄᏍᏛᎢ. ᎥᏝ ᎠᎴ ᎾᏍᎩᏉ ᏱᏂᎦᎥ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎾᏍᏉ ᎡᏓᎵᎡᎵᎦ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎪᎯ ᎨᏒ ᎢᎩᏁᎸᎯ ᏥᎩ ᎪᎯᏍᏙᏗ ᎨᏒᎢ. ᎢᏣ ᎠᏟᏰᎵᏒ ᎠᏤᎯ ᎡᎶ, ᎠᏍᎦᎩ ᎤᏩᏙᎯᏴᏓ. ᎤᏁᎳᏅᎯᏰᏃ ᎠᏆᏤᎵ ᎠᎦᏔᎯ ᏂᎦᎥ ᎢᏨᎨᏒᎵ ᏥᏌ ᎦᎶᏁᏛ ᎤᏓᎨᏳᏗ ᎬᏗᏍᎬᎢ. ᏈᎵᎩᏃ, ᏩᏓᎳᎻᏃ, ᏓᎻᏃ, ᎹᏚᏃ ᎠᏕᎸ ᎠᎩᏏᏙᎯ, ᏥᎻᏃ ᎡᎵᏈ ᎤᏪᏥ, ᎴᏈᏯᏃ ᏓᏗᏯ ᏣᏃᏎᎰᎢ, ᏧᏂᎳᏫᎢᏍᏗᏱᏃ ᎠᏯᎡ ᎠᏍᎦᏯ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎢ, ᎠᎴ ᎤᏪᎷᏁ, ᎤᎩᏨᏓᏃ, ᎠᏧᏣᏃ ᏩᎦᎦᏛᏁ ᎤᎵᎢ. ᏔᎷᏣ ᎦᎵ ᎠᎩᎳᏗᏓᏅ ᎠᎵᏍᏔᏴᏗ, ᎨᏍᏗ ᎣᏍᏓ ᏯᎩᏰᎸᎮ ᎠᏂᏲᏍᎩ ᎤᎾᎵᏍᏔᏴᏗ. ᏙᎯ ᎦᎢᏒ; ᏍᏈᏍᏓ ᎫᏘᏍᎬ. ᎾᏍᎩ ᎤᎾᏫᏱ ᏫᎾᏴᎯᎲᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎤᏍᏉᎵᏱᏉᏍᎩᏂ, ᎠᎴ ᏫᎦᎶᎯᏍᏗᏍᎬᏉ, ᎾᏍᎩᏃ ᎦᏅᎦᎵᏍᎬ ᏂᎦᎥ ᎠᎵᏍᏓᏴᏗ? “ᎨᏍᏗ ᎭᏂᏣ ᏣᏯᎠ ᏁᏆᎸ ᎢᎧᏛ ᏱᎩ,” ᎤᏛᏁ ᏐᏉ ᎾᎥ ᎦᏙᎩ, “ᎠᏎᏃ ᎭᎦᏓ ᎤᏓᏅᎦᎸᏓ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎦᏙ ᎤᏍᏗ ᏗᏓᏬᏍᏙᏗ ᎨᏒ ᏕᏣᏬᏍᏔᏁᎢ? ᏣᏂ ᏧᏓᏬᏍᏙᏗ ᎨᏒ, ᎤᎾᏛᏅᎩ. ᎠᎦᏘᏏᏃ ᎤᏬᏯᏁᏒ ᏕᎤᎴᏔᏁᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏧᎳᏏᏕᏂ ᎠᎴ ᏗᏓᏆᎵᎢ ᏧᎵᏂᎩᏗᏳ ᏂᏚᎵᏍᏔᏁᎢ. ᎤᎦᏔᎲᏍᏔᏅ ᎦᏍᎩᎶ ᎠᏯ ᎠᏉᏢ ᎢᏣ, ᎢᏧᎳ ᏧᏬᏰᏂ ᎬᏘ ᎠᎭᏰᎲ ᎤᏁᏍᏔᎳ ᎠᏥᏍᏛ ᏫᏍᎩ, ᏗᎧᏂᎨᏂ ᎠᏰᎵ. ᎤᏛᏅ ᎠᏧᏣ, ᎯᎸᏄᏒ ᏙᏥᏂᏴᎲ ᎠᏂᏐᎢ. ᎤᏙᎯᏳ ᎤᎵᏍᎨᏗ ᎭᎩᏴᏍᏗ ᏧᏪᏥ ᏗᎦᏅᏙᏗ. ᎠᏎᎩ ᎣᏍᏓ ᎨᏎ ᏕᏣᏏᎳᏛ. ᎠᏓᏅᏙᎩ ᎨᏒ ᎦᏗᎭ, ᎥᏝ ᎠᏗᎾ ᏨᏒ ᏣᏓᏅᏙᎩ, ᏐᎢᏍᎩᏂ ᎤᏓᏅᏙᎩ; ᎦᏙᏰᏃ ᎦᎵᏍᏙᏗ ᎠᏴ ᎢᏯᏆᏛᏁᏗ ᎠᎩᎲ ᏅᏩᏓᎴ ᎤᏓᏅᏙ ᏧᏭᎪᏙᏗ ᏱᏂᎦᎵᏍᏗᎭ? ᎢᏳᏰᏃ ᏯᏆᏚᎵ ᎠᏆᏢᏈᏍᏗᏱ, ᎥᏝ ᎠᎩᏁ-Ꭻ ᏱᎦᎨᏎᏍᏗ; ᎤᏙᎯᏳᎯᏰᏃ ᎨᏒ ᏱᏥᏃᎲᎵ; ᎠᏎᏃ ᎤᏁᎳᎩ ᎥᎨᎳ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎩᎶ ᎠᏆᏓᏅᏖᏍᎬ ᎤᏟ ᏱᏂᎠᎩᎸᏉᏗ ᎠᏃ ᎾᏆᏍᏛ ᎠᎩᎪᏩᏘᏍᎬᎢ, ᎠᎴ ᏄᏍᏛ ᎠᏆᏛᎩᏍᎬᎢ. ᎾᏍᎩᏰᏃ ᎯᎠ ᎢᏯᏂᏪᏍᎩ, ᎬᏂᎨᏒᎢᏳ ᎾᏅᏁᎰ ᎤᎾᏤᎵᎪᎯ ᎤᏂᏲᎲᎢ. ᎡᎶᏛᏃ ᎤᏲᎸ ᎠᎴ ᎤᏠᏨ ᏚᎪᎵᏰᎡ ᎬᏩᎦᏘᏛᎯ ᎠᎴ ᎤᏁᏤ ᏧᏂᏲᎱᎯᏍᏗᏱ. ᏧᏗᏱᏃ ᎤᏓᏅᏒ, ᏏᏌᎵᏱ ᏭᏕᏁᎢ. ᏂᎪᎯᎸ ᏦᏥᏰᎸ ᎣᏥᏱᏙᎰ ᎤᏲᎱᏒ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᏍᎩ ᎾᏍᏉ ᎬᏅ ᏥᏌ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏴ ᏦᏥᏰᎸᎢ. ᎠᎴ ᏚᏁᏤᎸᎩ ᎬᏭᎯᏍᏗᏍᎩ ᎨᏣᎷᏤᏗᏱ; ᎾᏍᎩᏃ ᎪᎯᎵᏰᏍᎬᎢ ᏨᏒ ᎨᏣᎦᏙᎥᎯᏍᏗ ᏱᏂᎦᎵᏍᏓ ᎯᎠ ᏂᎦᏛ ᏦᏧᎢᏍᏗᎭ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵ ᎨᏎᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎤᎬᏫᏳᎯ ᏥᏯᎵᏍᎦᏍᏙᏗ, ᏂᎯ ᎢᏤᎲ ᎤᎬᏩᎵ ᎾᏍᎩ ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᏅᏛᎢ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎢᏣᏕᏯᏙᏗᏍᎩ ᎤᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ, ᎤᏁᎳᎩ ᎩᎶ ᎦᎨᏎᏍᏗ. ᎭᏂᏉ ᎠᏆᏗ. ᎨᏍᏗᏰᏃ ᎠᎩᎸᏂ-ᎠᎩᎸᏂ--ᎠᎩᎸᏂᏗᏍᎩ ᏱᎩ. ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᎪᎵ, ᏚᎦᏔᏍᏔᏁᎢ, ᏭᏩᏌᏙᏰᎢ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏙᎯᏉ ᎢᏳᏍᏗ ᎤᏪᏙᎴ ᎾᎿ ᎠᏥᏚᎢᏍᏓᏁᎸ ᎦᏙᎯ, ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ ᎾᏍᎩᏯ, ᏕᎦᎵᏦᏛᏉ ᎠᏁᎮ ᎢᏧᎳᎭ ᎡᏏᎩ ᎠᎴ ᏤᎦᏈ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ. ᎦᏙᏃ ᎢᏣᏚᎵᎭ? ᏥᎪ ᎦᎾᏍᏓ ᏥᏁᎢ ᏮᏌᏨᎷᏤᎵ? ᏥᎪᎨ ᎠᏓᎨᏳᏗᏳ ᎨᏒ, ᎠᎴ ᎤᏓᏅᏘ ᎠᏓᏅᏙ ᎬᏗ ᏮᏓᏨᎷᏤᎵ? ᏚᎾᏔᎶᎬ ᎬᏂᎨᏒ ᎨᏒ ᏓᎶᏂᎨ ᏓᏂᏅᏙᎬ. ᏃᎴ ᎯᏲᎮᎸ ᎡᎳᏆᏗ ᏍᏉ ᎤᏛᏅᎢᏍᏙᏗ. ᎾᏍᏉᏍᎩᏂᏃᏅ ᎠᏴ ᎠᎩᎭ ᎤᏇᏓᎵ ᎨᏒ ᎬᏆᎵᏍᎦᏍᏙᏙᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎩᎶ ᏰᎵ ᏳᎭ ᏳᏰᎸ ᎤᏇᏓᎵ ᎨᏒ ᎬᏩᎵᏍᎦᏍᏙᏙᏗ ᎨᏒᎢ, ᎠᏴ ᎤᏟ ᎢᎦᎢ [ᎠᎩᎭ;] ᎪᎯᏰᏃ ᎨᏒ ᏥᎪ ᏴᏫ ᏗᏆᎵᎢ ᏂᏕᎬᏁᎭ? ᎤᏁᎳᏅᎯᎨ? ᏥᎪᎨ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏴᏫ ᎠᎩᏲᎭ? ᎢᏳᏰᏃ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏴᏫ ᎠᏏ ᏯᎩᏲᎭ, ᎥᏝ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏙᎯ ᏱᎦᎩ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ ᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ ᎤᏟᎯᏳ ᎾᏍᎩ ᎦᏚᎲᎢ. ᎾᏍᎩᏃ ᎠᏂᎪᏗᏳ ᏧᎾᏁᎶᏔᏅ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗᏱ ᎧᏃᎲᏍᎩ ᏧᏓᎴᏅᏛ ᏄᎵᏍᏔᏂᏙᎸ ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᏦᎪᎯᏳᎭ, ᏃᎴ ᎬᏯᎵᎮᎵᏤ ᏂᏣᏓᎾᏘᏴ. ᎾᎯᏳᏉᏃ ᏚᏅᏩᏁ ᎤᏂᏣᏘ ᏚᏂᏢᎬ ᎠᎴ ᎥᏳᎩ ᏚᏂᏱᎵᏙᎲ, ᎠᎴ ᎤᏂᏲᏗᏓᏅᏙ ᎬᏩᏂᏱᎵᏙᎲᎢ; ᎠᎴ ᎤᏂᏣᏘ ᏗᏂᎨᏫ ᎬᏩᏂᎪᏩᏛᏗ ᏄᏩᏁᎴᎢ. ᏌᎩᏯᏃ ᎤᎴᏁ ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ, ᎬᏂᏳᏉ, ᏣᎬᏫᏳᎯ, ᎠᏰᎵ ᎢᎦᎢ ᏧᎬᏩᎶᏗ ᎠᎩᎲ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏕᏥᎥᏏ; ᎢᏳ ᎠᎴ ᎦᏰᎪᎩ ᎠᏋᏔᏅᎯ ᏱᎩ ᎩᎶ ᎪᎱᏍᏗ ᏱᏥᎬᎡᎸ, ᏅᎩ ᎢᏳᏩᎫᏗ ᎢᎦᎢ ᏥᎥᏏ. ᎤᏪᎿᎢᏍᎩᏂ ᎡᎳᏗ ᎾᎬᏁᎸᎢ; ᎧᏃᏍᎦᏰᏃ ᎤᏥᎸᏒ ᏥᎦᎶᏍᎪ ᎾᏍᎩᏯ ᏓᎦᎶᏐᏂ. ᎤᎩᏨᏓ ᎠᎦᏍᎩ ᏃᎴ ᎤᎵᏏᎩ ᎨᏎ. [ᎠᏓᏅᏙᏃ] ᎤᏪᎷᏅ, ᎠᎴ ᎤᏣᏘ ᎤᎩᎸᏅ, ᎤᏄᎪᏤᎢ; ᎠᎴ ᎤᏲᎱᏒᎯᏉ ᎾᏍᎩᏯ ᎨᏎᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏖ, ᎠᏲᎱᎯ, ᎠᎾᏗᏍᎨᎢ. ᎦᎷᏯᏍᏗ ᎤᏓᎵ ᏓᎶᏂᎨ ᏩᎩᎦ ᏚᏩᎭᏂᏍᏔᏅ ᎠᏥᎸᏳᎸᏗ. ᎨᎫᏓᎴᏛ ᏂᏗᎨᏥᎬᏩᎶᏓᏁᎸᎾ ᎬᏔᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎠᎫᏴᏙᎢ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎤᏪᎲᎢ; “ᎪᎱᏍᏗ ᏥᏩᏔ ᎤᏪᏯ ᎾᎥ,” ᎤᏛᏁ ᏙᏯ. ᎡᎳᏗᏨ ᏫᏥᎦᏙ. ᏫᏥᏲᎯᏍᏓ ᎠᏂᏳᏩᏁᎦ ᎾᎾᏛᏁᎲ ᎢᏥᏍᏓᏩᏗᏒ , ᎢᏥᏍᏙᏍᎨᏍᏗ ᏎᎷ, ᏁᎳᎩ ᎨᏎᏍᏗ ᏔᎷᎩᏍᎩ ᏃᎴ ᏗᎬᏔᏂᏓᏍᏗ, ᎢᎾᎨ ᎡᎯ ᎦᏁᎦ ᏗᏥᎾᏬᏣ, ᏤᏍᏗ ᎠᎾᏬ, ᏗᎦᏆᏘ ᏕᏥᎾᏰᏍᎨᏍᏗ, ᎦᏓᎷᎪᏗ ᎠᏓᏍᎦᎩ ᎢᏥᏰᎸᎮᏍᏗ, ᎤᏪᏘ ᎠᎵᏍᎩᏍᏗ ᎢᏣᎵᏍᎩᏍᎨᏍᏗ. ᎾᏍᎩᏰᏃ ᏥᏄᏍᏕ ᎾᎯᏳ ᏃᏯ ᏤᎮᎢ, ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ. ”ᎨᏍᏗ ᎪᎱᏍᏗ ᏯᏂᏂᏱ. ᎣᏂᏃ ᎢᏴᏛ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏗᏱ ᎦᎵᏦᏛ ᎤᎵᏍᏚᎢᏛ ᎨᏒᎩ ᎦᎸᎳᏗ; ᎤᏍᏆᏙᏅ ᎠᏓᏅᏖᏍᎬ ᏲᎾ, ᏣᎵ ᎢᎦᏑᏯᎩᎡᎴ, ᎨᏍᏗ ᏳᏬᎯᏳᎮ ᏲᎾ, ᎨᏍᏗ ᎤᎫᏍᏛᏅ ᏱᎨᏎᎢ. ᎠᏋᏌ ᎠᏇᏅᏒ ᎤᎵᎪᎲᏍᏗ, ᎡᎳᏗ ᎦᎢᏒ ᏰᎵ ᏧᏙᏓᏆᏓ ᎤᏲᎢᏴ, ᏕᏥᏲᎲ ᏚᎨᏓᎵᏴ ᏃᎴ ᎠᎹᏳᎸᏓ, ᎦᏚᏏᏴ ᎠᏍᏔᎦᏢ ᏕᏥᏩᏛᎲ ᎤᏩᏓᏍᎬ ᎤᏣᎴᏓ. ᏃᎴ ᎱᏃᎮᎸ ᎱᏲᎰᏎᎸ ᏧᎶᎨᏍᏗ ᎤᏪᏘ ᎦᏓ ᎦᏓᏍᎬᎢ ᎦᏚᎲ ᎪᏫ, ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ ᏥᎨᏥᎨᎯᏙᎮ ᏭᏕᎵᎬ ᎢᏣ ᏅᏙ ᎠᏰᎵ. ᎦᎵᎡᎵᎩ ᏥᏕᎾᏦᎯ, ᎠᏎᏃ ᏫᏥ ᏩᏆᏓᏬᏍᏗ. ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏁᏙᎸᎩ, ᎠᎴ ᏚᎾᏚᏫᏍᏔᏅᎩ ᎠᏂᏅ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎦᏚᎲᎢ; ᎠᏥᎸᏃ ᎤᎯᎳᏅᎯᏱ ᎦᎸᎳᏗ ᏛᎤᎶᏒᎩ ᎠᎴ ᏚᏂᎰᏅᎩ. ᏂᎯᏍᎩᏂ ᎠᎹᏟ ᎲᏍᎨᏍᏗ, ᎭᏠᏁᏍᎨᏍᏗ, ᎠᎴ ᎭᎬᏍᏉᏍᎨᏍᏗ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏯᏃ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎲᎩ ᏉᎳ ᎠᎬᏗᏍᎬᎩ; ᏔᎵᏁ ᎢᎣᎦᏛᎦᎾ ᏂᎤᏪᏌ ᏃᏊ ᏍᏗᎩᏓ ᎾᎥᏂᎨ ᏂᎬᏩᏍᏛ. ᎠᏂᎪᏗᏳᏃ ᏴᏫ ᏚᏂᎳᏫᏦᎸ ᎾᏍᎩ ᎬᏩᎷᏤᎸ ᏕᎦᏚᏩᏗᏒ ᏂᏙᏓᏳᏂᏄᎪᏨᎯ, ᎤᏁᏤ ᏚᏟᎶᏍᏓᏁᎴᎢ; ᎠᎴ ᎤᏣᏘ ᎤᏍᏗᏰᏔᏁ ᎾᎿ ᎨᏒ ᏧᏄᎪᏫᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏓᏆᎴᎳ ᎦᎵ ᎠᏌᎾᎢ ᏚᏓᏅᎭᏅ ᎾᏍᎩᏯ ᎠᏥᎳ ᏓᏆᎴᎳ Cranshaw ᏙᏰ ᎤᎾᏛᏅᎢᏍᏔᏅ ᎤᏁᏅᏍᏗ ᏭᏕᎵᎬ. ᎾᏍᎩ ᏄᏪᏒ ᎦᏙᎯ ᎤᎵᏥᏍᏋᎩ, ᎠᎴ ᎾᏍᎩ ᏝᏬᏔ ᎤᏬᏢᏔᏅᎩ ᎤᎵᏥᏍᏋᎯ, ᎠᎴ ᎾᏍᎩ ᏞᏬᏔ ᏚᏅᎵᏰᏓᏁᎸᎩ ᏗᎨᏫ ᏗᎦᏙᎵ, ᏌᎳᏓ ᏍᏉ ᎠᏍᏆᏂᎪᏍᎬᎢ ᎤᏏᎳᏛ ᎬᏗ ᎡᎳᏗ ᏄᏛᏁᎴᎢ ᎣᎯᏍᏗᎨ ᎤᎪᏩᏛᏗ. ᎠᏂᏍᎦᎢᎮ ᎠᏲᏟ ᎤᎶᎣᎯᏍᏗ. ᎦᎶᏁᏛᏰᏃ ᎥᏝ ᏱᎩᏅᏎ ᏗᏆᏓᏬᏍᏗᏱ, ᎠᏆᎵᏥᏙᏗᏱᏍᎩᏂ ᎣᏍᏛ ᎧᏃᎮᏛ; ᎥᏝ ᎠᎵᏏᎾᎯᏍᏗ ᎨᏒ ᎦᏬᏂᎯᏍᏗᏱ ᎠᏋ ᏙᏗᏱ, ᎦᎶᏁᏛᏰᏃ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎠᏎᏉᏉ ᏱᏅᎦᎵᏍᏓ. ᎿᏉᏃ ᎤᏒ ᏄᎵᏍᏔᏅ, ᎾᏍᎩ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎤᎾᏙᏓᏈᏕᎾ ᎢᎦ ᎨᏒᎢ. ᎨᏥᏄᎪᏫᏒᏃ ᏴᏫ, ᎤᏴᎸᎩ ᎤᏬᏰᏂ ᎤᏂᏴᎲᎩ, ᎠᎨᏳᏣᏃ ᏚᎴᏅᎩ. ᎢᏳ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎢᏥᎩᎵᏲᎨᏍᏗ, ᏅᏩᏙᎯᏯᏛᏉ ᎨᏎᏍᏗ. ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏞᏍᏗ ᏱᏣᏕᏯᏔᏁᎮᏍᏗ; ᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᎢᎦᏪᏛ ᎨᏒᎢ; ᎯᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ, ᎯᏍᎦᎨᏍᏗᏃ ᏣᏍᎦᎩ. ᎭᏕᏬ,” ᎤᏛᏁ. ᎤᎨᏳᎯ ᏚᎧᎾᏁ ᎤᏪᏥ ᎠᎨᏳᏣ. ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏓ ᏥᏫᏨᏯᏅ ᎢᏨᎪᏩᏛᏗᏱ ᎠᎴ ᎢᎦᎵᏃᎮᏗᏱ, ᎢᏏᎵᏰᏃ ᎤᏚᎩ ᎤᏅᏒᎢ ᏅᏧᎵᏍᏙᏔᏅ ᎯᎠ ᏧᏓᏕᏒᏛ ᏨᏆᎸᏍᏗ. ᎤᎦᎾᏍᏓ ᎢᏳᏍᏗ ᎠᏙᎯ ᏓᏳᏓᎴᏅ. ᎢᏧᎳ ᎤᏂᎦᎾᏍᏓ ᏃᎴ ᎤᏂᏴᏍᏗ ᎢᏳᎾᏍᏗ. ᎢᏳᏍᎩᏂ ᏙᏣᏓᏍᎦᎶᎨᏍᏗ ᎠᎴ ᏙᏣᏓᏯᎣᎲᏍᎨᏍᏗ, ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏥᏙᏣᏓᏛᏔᏂ. ᏗᏣᎧᏅᎦ ᎢᎾ ᎢᏗᎦᏔ ᏕᏈᎬᎢ, ᎠᏗᎭ ᎡᏙᏓ. ᎾᏍᎩᏯ ᎠᏗᏒᏍᏗ ᎨᏒ ᎢᏤᎲ ᎾᏍᎩ ᎠᏴ ᏥᏍᎩᎪᎡᎸᎩ, ᎠᎴ ᎪᎯ ᏥᏣᏛᎩᎭ ᎠᏇᎲᎢ. ᎤᎩᏨᏓ ᏩᎩᎷᏣ ᎠᏦᎭᏴ, ᏥᏩᏛᎲ ᎠᏌᎻᏓ ᏦᎢ ᏧᏅᏏᏱ ᎤᎵᏦᏩᏛ ᎤᏩᏌ. (ᎢᏳᏍᏗᏉ ᎨᏒ ᎫᏔᎩᏏᏙᎮ ᏦᎨᏏ. ᏥᎸᏉᏗ ᎩᎦ,” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏓᏅᏘ ᎤᏬᏂᎯᏍᏗ ᏄᏪᏎ. ᏧᏁᎵᏁᏃ ᎢᎦ ᏔᎵᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏂᏯᎥᎩ ᎦᎵᏦᏕ, ᎠᎴ ᏓᎻ ᎨᎸᎩ. ᏥᏌ ᎤᎷᏨᎩ, ᏗᎦᎶᎯᏍᏗᏱ ᏓᏍᏚᎲᎩ, ᎠᏰᎵ ᎤᎴᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ. ᎿᏉᏃ ᏂᎦᏗᏳ ᎤᏂᏣᏘ ᎠᏂᎨᏕᎳ ᎤᎾᏤᎵᎪᎯ ᏂᎬᎾᏛ ᏗᏁᎯ ᎬᏩᏔᏲᏎᎴ ᏧᏓᏅᎡᏗᏱ; ᎤᏣᏘᏰᏃ ᎠᏂᏍᎦᎢᎮᎢ; ᏥᏳᎯᏃ ᎤᏣᏅ ᎢᎤᏨᏎᎢ. ᎰᎻ ᏍᏉ ᎤᏛᎦᏁ, ᏧᏅᎪᏤ ᎬᏔᏂᏓᏍᏗ ᎠᏍᏆᏂᎪᏙᏗ, ᎬᏔᏂᏓᏍᏗ ᎣᏍᏓ ᏂᎬᏁᎮ. “ᏏᏆ ᏗᏍᏚᏗ” ᎤᏛᏁ ᎪᏱᏁᎢ. “ᎦᏲᏟ ᏓᎩᏯᏪᎦ, ᎡᎵᏍᏗ. ᏂᏥᎥᏃ ᎡᏥᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᏕᏣᏓᏁᎮᏍᏗ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎠᏃᏍᏛ ᎨᏥᎦᏘᏗᏍᏗ ᏧᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏗᏯ ᎤᏓᏁᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎤᏪᏅ ᎤᏁᏙᎸᎯ ᏫᏚᏃᏁᎴ ᎤᏲ ᏚᎾᏓᏅᏛᎢ ᎠᎴ ᏓᎾᏠᏱᎲᎢ. ᎠᏂᏂᏒᏃ ᏥᏳ ᎤᎸᏁᎢ; ᎤᏃᎴᏃ ᎤᏱᎶᎴ ᎥᏓᎸᎢ; ᎤᏂᎧᎵᏤᎴᏃ ᎠᎹ, ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᏄᎾᎵᏍᏓᏁᎴᎢ. ᎿᏉᏃ ᎠᏍᎦᏯ ᎦᏁᎳ ᏧᏅᏏᏓᏍᏗ ᎬᏩᎷᏤᎴᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏍᎩᏅᏏᏓᏍᏗ, ᏝᏍᎪ ᎣᏍᏛ ᎤᎦᏔ ᏱᏣᏫᏎ ᏣᎶᎨᏒᎢ? ᎦᏙ ᏗᎦᎵᏍᏙᏓᎭ ᎤᏲ ᏧᏰᎦ? “ᎦᏙᏃ ᏕᏣᏏᎳᏛ ᏱᏣᎩᎳ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᎠᎴ ᎾᏍᎩ ᎩᎶ ᎬᏩᏩᎯᏍᏗ ᏂᎨᏒᎾ ᎠᎴ ᎬᏩᎾᏗᏅᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎠᎪᏪᎵ, ᎠᎴ ᏚᏙᎥᏉ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎪᏪᎶᏔᏅᎯ, ᎠᎴ ᏚᏙᎥ ᎢᎦᎢ ᎠᏎᏍᏗᏱ ᎨᏒ ᎠᎪᏪᎶᏔᏅᎯ. ᎤᎧᏘᏛ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏃᎴ ᎠᏆᎧᏙᏍᏛ. ᎾᏍᎩᏃ ᎯᎠ ᎬᏂᎨᏒ ᏄᏪᏎᎢ. ᏈᏓᏃ ᎤᏯᏅᎲ ᎤᎴᏅᎮ ᎤᎬᏍᎪᎸᏁᎢ. ᎦᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎢᎾᎩ ᎠᎦᏘᎾᏫᏛᎮ ᎾᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ; ᎠᎴ ᎥᏝ ᏯᏥᏩᏛᎮᎢ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏘᎾᏫᏛᎮᎢ; ᎠᏏᏉᏰᏃ ᎾᎦᏘᎾᏫᏗᏍᎬᎾ ᎨᏎ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᎾᎬᏁᎴᎢ. ᏍᏈᏯ ᏪᏙᎰ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ --- ᎨᏍᏗ ᎣᏍᏓ ᏱᎩ ᏨᏌ ᏥᎨᏐ.” ᎨᏍᏗᏗ ᎦᎸᎳᏗ ᎤᎬᏫᏳ ᎢᏳᏍᏗᏱᎩ, ᎦᏚᎲ ᎤᎬᏫᏳ ᎾᎥᏂᎨ. ᎨᏍᏗ ᏳᏪᎵᏌ, ᎠᏓᏬᏍᎬ ᎡᏉᎯᎨ ᏃᎴ ᎦᏣᏄᎵᎨ ᏂᎦᎵᏍᏗᏍᎨᎢ ᎨᏴᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏏᏴᏫ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᏭᏁᏎ ᏚᏬᎵ, ᎠᎴ ᏧᏂᏣᏯᏍᏗ ᎤᎧᎵᎢᏍᏔᏁᎢ, ᎦᎾᏍᏙᎯᏃ ᎤᏪᏆᏙᏔᏅ ᏭᏅᏁᎴ ᎾᏍᎩ ᎤᏗᏔᏍᏗ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏴ ᏗᎴᎯᏐᏗ ᎨᏒ ᎠᎴ ᎬᏂᏛ. ᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ, ᎢᏳ ᎾᏍᏉ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎬᏁᏍᏗ. ᎤᎩᏨᏓ ᏑᎾᎴ, ᏕᎦᎦᏙᏍᏔᏅ ᎨᏥᏅᎪᏫᏍᎬ ᎠᏦᎭᏴ ᎤᎯᏐᏗ ᎤᎾᏓᏅᏅ. ᏔᎷᎩᏍᎩ ᎢᏣ ᎠᎢᏎᎢ ᎠᏎᏃ ᎤᎦᏔᎲᏒ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᎧᎿᏅ, ᏈᏓ ᎤᎬᏍᎪᎸᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏐᎭᏛ ᎭᎴᎲᎦ ᏎᏓᏂ; ᎥᏝᏰᏃ ᎤᏁᏪᏅᎯ ᎤᏤᎵ ᎨᏒ ᎣᏏᏳ ᏱᏣᏰᎸᎭ, ᏴᏫᏍᎩᏂ ᎤᎾᏤᎵ ᎨᏒᎢ. ᏞᏍᏗᏉ ᏱᏗᏑ-ᎵᎪᎨᏍᏗ ᎢᏓᏓᏟᏌᏂᏙᎲᎢ, ᎢᎦᏛ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᏥᎩ; ᏕᏣᏓᏬᏁᏗᏍᎨᏍᏗᏍᎩᏂ; ᎠᎴ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ, ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ ᏥᏥᎪᏩᏗ ᎤᏍᏆᎸᎯᏗᏒ ᎾᎯᏳ ᎢᎦ. ᏂᎦᏗᏳᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎤᎾᏗᏔᎲ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏓᏑᏱ ᎾᏍᎩ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎾᏍᎩ ᎤᏕᎵᏛ ᏚᎾᏂᏏᏂᏙᎸ, ᎠᎴ ᎠᏂᏃᏗᏍᎩ ᎡᎶᎯ ᎠᏁᎯ ᏚᏁᏅᎢᏍᏔᏅ ᎾᏍᎩ ᎤᏣᏘ ᎤᏢᏉᏗ ᎡᎲᎢ. ᎦᏃᏍᎩᏛ ᎨᏒᎢ, ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏲ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎦᎶᏄᎮᏛ ᎨᏒᎢ, ᎠᎵᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ, ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᏓᏐᏢᎢᏍᏙᏗᏱ, ᎠᏢᏉᏙᏗᏱ, ᎠᎵᏍᎦᎿᏫᏍᏗ ᎨᏒᎢ. ᎠᎴ ᎤᏭᏓᎴᏍᎨ ᏂᎦᏛ ᎤᏲ ᏄᎵᏍᏓᏁᎵᏕᎬᎢ, ᎠᎴ ᎤᏁᎴ ᎣᏏᏳ ᎠᎦᏓᏅᏖᏗᏱ ᎠᎴ ᎠᎦᏔᎿᎢᏳ ᎨᏒ ᎠᎦᏔᎲ ᏇᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏈᏱ, ᎠᎴ ᏄᎬᏫᏳᏌᏕᎩ ᏄᏩᏁᎴ ᎢᏥᏈᏱ, ᎠᎴ ᏂᎦᏛ ᎦᏁᎸᎢ. ᎠᎴ ᏂᏚᏂᏴᏒᎾ ᎨᏒ ᎠᏍᎪᎵ, ᎾᎿ ᏨᏗᏓᎴᎲᏍᎦ ᏂᎬ ᎠᏰᎸᎢ ᏚᎯᏞᏫᏒᎢ ᎠᎴ ᏧᏩᏚᎾ ᏚᏪᏙᎸᎢ ᎤᎵᏍᏕᎸᏙᏙᎢ, ᎠᎴ ᏚᏚᏓᏕᏫᏐᎢ ᎠᏛᏍᎪᎢ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎩ ᎤᏁᏉᏍᎬᎢ. ᏂᎦᏛᏃ ᎤᎾᏛᎦᏅᎯ ᎤᏂᏍᏆᏂᎪᏎ ᏄᏍᏛ ᎬᏩᏂᏃ ᎮᎮᎸ ᎠᏫ-ᏗᏂᎦᏘᏯ. ᏥᏄᏍᏗᏛᎾ ᎢᏳᏉ ᎤᏲᏣᏃᎲᏍᏗ. ᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᏲᏍᏓ ᎯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏦᎢᏉᏃ ᎢᎦ ᏓᏥᏱᎵᏙᎵ ᎿᏉ ᏛᎦᏁᏍᎨᎰᏂ. ᏂᎦᏗᏳ ᎤᎾᎦᎡᏍᏛ Crockett. ᏯᏆᎩᎸᏅᎾ ᏱᎩ ᏓᏆᎴᎸ, ᎠᏆᏓᏲᎰᏎᎸ ᏱᎩ. ᎥᏝᏍᎩᏂᏃᏅ ᏩᎩᏂᎪᎯ ᎬᏂᎨᏒ ᎢᏯᏋᏁᎯ ᏳᏪᎵᏎᎢ, ᎾᏍᎩ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎢᎩᎦᏃᏓᏁᎲᎢ ᎦᎸᎳᏗ ᏗᎦᎶᏍᎬᎢ, ᎠᎴ ᎢᎦᎵᏍᎪᎸᏓᏁᎲ ᎤᏣᏘ ᎪᎱᏍᏗ ᎤᏛᎯᏍᏗᏱ ᏂᏓᏕᏘᏴᎯᏒᎢ, ᏗᎩᎾᏫ ᏓᎧᎵᎢᏍᏗᏍᎬ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᎤᎵᎮᎵᏍᏗ. ᏕᎨᏥᎧᏅᏃ ᎤᎾᎵᎪᏅᎯ ᏗᏂᏅ ᏭᏂᎶᏎᎢ, ᎠᎴ ᏭᏂᏃᎮᎴ ᏂᎦᎥ ᏂᎬᏩᏂᏪᏎᎸ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ. ᎢᎦ ᎤᎵᏍᏔᏴᏗ ᏄᎵᏍᏔᏅ. ᎢᏓᎵᏅᏟ ᏞᏍᏗ ᎢᏥᏣᏘ ᏗᏣᏕᏲᎲᏍᎩ ᏱᎨᏎᏍᏗ, ᎢᏥᎦᏔᎭᏰᏃ ᎤᏟ ᎢᎦᎢ ᎢᎩᏍᏛᏗᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎡᏥᏍᏓᏩᏕᎩ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᏧᎨᏳᎯ ᏧᏪᏥ; ᎤᏰᏤ ᏧᏍᏆᏴᏍᏗ. ᏫᏨᏲᏪᎳᏏ ᎢᏣᏓᏅᏘ ᎪᎶᏏ ᎢᏤᎯ ᎠᎴ ᎢᏣᎵᏅᏟ ᎦᎶᏁᏛ ᎡᏦᎯᏳᎲᏍᎩ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᏗᏟᏰᎵᏓᏍᏗ, ᏱᏓᏂᏅᏙᎬᎾ ᎤᏂᏲ ᏧᎾᏛᏐᏅ ᎤᎾᏓᏓᏍᎬ, ᎤᎾᏏᏅᏒ. ᎤᏍᏗᎩᎨ ᎨᏒ ᏓᏳᎴᏅᏓ?” ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᏣᏤᎵᎪᎯ ᎯᏄᎪᎢ ᎠᎴ ᎪᎱᏍᏗ ᏗᏨᎩ, ᎠᎴ ᎾᎿ ᎦᏙᎯ ᎬᏯᏎᎮᏗ ᎨᏒ ᏫᎷᎩ. ᎠᏰᎵ ᏚᏏᎳᏛᎢ ᎤᏣᏅᏕᎢ. ᏩᎾᎯᎨ ᎢᎬᏛᏁᏗᏱᎩ, ᎠᏆᏛᏅᎢᏍᏘ ᎠᏆᏛᎪᏗ. ᏗᎨᏃ ᎡᎳᏗ ᏓᎦᏂᎩᏏ. ᎿᏉᏃ ᏂᎦᏛ ᏔᎵᏁ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝᏍᏗ ᎯᎠ ᎠᏍᎦᏯ, ᏆᎳᏆᏍᎩᏂ. ᎾᏍᎩ ᏆᎳᏆ ᎠᏓᎾᏌᎲᏍᎩ ᎨᏒᎩ. ᏚᏃᏓᎳᎲ ᏚᏔᎷᎩᏍᎬ ᎠᎦᎵᏍᎬ. ᎯᎠᎧᏂ ᏗᏁᏍᎨᏍᎩ ᎤᏪᏥ, ᎺᎵᎧᏂ ᎤᏥ, ᎠᎴᎧᏂ ᎠᎾᎵᏅᏟ ᏥᎻ, ᎠᎴ ᏦᏏ ᎠᎴ ᏌᏩᏂ ᎠᎴ ᏧᏓᏏ? ᏏᏉ ᏂᏛᏥᏪᏏ ᎧᏃᎮᏓ. ᏱᎰᏩᏰᏃ ᏗᎦᏙᎵ ᏓᎧᎿᏩᏗᏙ ᎤᎾᏓᏅᏘ, ᎠᎴ ᏗᎦᎴᏂ ᏚᏛᏓᏍᏗ ᎠᎾᏓᏙᎵᏍᏗᏍᎬᎢ, ᎤᎧᏛᏍᎩᏂ ᏱᎰᏩ ᏕᏡᏔᏅ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏦᏰᏂ ᎠᎴ ᏣᎳᏏᏕᏂ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ ᎠᎴ ᏫᏣᏕᎨᏍᏗ; ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏦᏰᏂ ᎠᎴ ᏣᎳᏏᏕᏂ ᏣᏲᎱᎮᎸᎯ ᏱᎩ ᎬᏂᏛ ᏗᎨᏒ ᏫᏱᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏱᏘᏰᏌᏓ ᎠᎴ ᎢᏧᎳ ᏗᏣᎳᏏᏕᏂ ᏫᏰᏣᏓᏅ ᏂᎬᏠᏍᎬᎾ ᎨᏒ ᎠᏥᎸᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏓᏏ ᎣᏥᏔᏲᏎᎸᎩ, ᎾᏍᎩ ᏄᏍᏛ ᎤᎴᏅᎲᎢ, ᎾᏍᎩᏯ ᎢᏳᏛᏁᏗᏱ ᎤᏍᏆᏗᏍᏗᏱᎢᏤᎲ ᎤᏠᏱ ᎢᏣᏓᏁᏗᏱ ᏂᏨᏁᎲᎢ. ᏰᎵ ᎪᎯᏛ ᎤᏬᏢ ᎨᎵ ᏓᏆᎴᎳ ᎠᏍᏚᏗ ᎣᎭᏂ ᎡᎩ, ᎡᎳᏗ ᏄᏩᏅ ᎠᏍᎪᎵ, ᎤᏍᏘᏰᎬ ᎤᏭᏌᏁᎲ ᎤᎦᏛ. ᎡᏐᏃ ᏎᏙᎩ ᎤᏕᏁᎴᎢ; ᏎᏙᎩᏃ ᎡᎩᎻ ᎤᏕᏁᎴᎢ; ᎡᎩᎻᏃ ᎢᎳᏯᏗ ᎤᏕᏁᎴᎢ; ᎠᎾᎢᏒᏃ ᏓᏂᏃᏁᎵᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏂᏳᏉ ᏥᏌ ᏚᎾᏠᏎᎢ; ᏙᎯᏱ ᏕᏓᏓᎪᏩᏛ, ᎤᏛᏁᎢ. ᎤᏂᎷᏨᏃ ᏧᎳᏏᏕᏂ ᏚᏂᏂᏴᎮᎢ, ᎡᎳᏗ ᏂᎬᏩᏛᏁᎴᎢ. ᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᎩᎭ ᎠᏆᎵᏍᏓᏴᏗ ᏂᎯ ᏂᏥᎦᏔᎲᎾ. ᎿᏉ ᎢᏥᎧᎵᏨᎯ, ᎿᏉ ᎢᏤᎿᎢᏳ, ᎢᏥᎬᏫᏳᎯ ᎨᏒᎢ ᎠᏴ ᏂᏨᏯᎵᎪᏁᎸᎾ, ᎠᎴ ᏲᎯ ᎤᏙᎯᏳᎯ ᎢᏥᎬᏫᏳᎯ ᏱᎩ, ᎠᏴ ᎾᏍᏉ ᎢᏧᎳᎭ ᎢᎩᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎯᎠ ᏱᏂᏥᏪᏍᎨᏍᏗ; ᎦᏙ ᏓᏲᏥᎩ, ᎠᎴ ᎦᏙ ᏓᏲᏣᏗᏔᎯ, ᎠᎴ ᎦᏙ ᏓᏲᏣᏄᏬᎢ? ᎨᏍᏗ ᎤᎾᏓᏅᏖᎸ ᏱᎨᏎ ᏧᏂᎯᏍᏗ. ᏂᎦᏛᏃ ᏙᏧᏁᏅᏒ ᏫᏙᎤᏂᎶᏒᎩ. ᎤᎾᏑᎵᏍᎬᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎠᏎᏃ ᎾᏃᎵᎬᎾ ᏄᏍᏛ ᎠᏂᏬᏂᏍᎬ, ᎠᎴ ᏄᏍᏛ ᎠᏂᏍᏓᏱᏗᏍᎬᎢ. ᎾᏍᎩ ᎾᎿ ᎩᎶ ᎤᎾᎪᎸᏛ ᏥᎩ, ᏄᎵᏌᎶᏛᎾ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏭᎾᎦᏔᎲᏍᏔᏅ; ᎠᎩᏙᏓ ᏲᎾ ᎤᏙᎯᏳ ᎤᎬᏫᏳ. ᎠᎴ ᎢᏨᏍᏗᏰᏗᎭ, ᎢᏓᎵᏅᏟ, ᎤᏓᏅᏘ ᏗᏣᏓᏂᎸᎢᏍᏗᏱ ᎢᏨᏬᏁᏗᏍᎬᎢ; ᎢᎸᏍᎩᏉᏰᏃ ᎢᎧᏁᏨᎯ ᎢᏨᏬᏁᏓ ᎠᏂ ᎪᏪᎵᎯ. ᎢᎪᎯᏓ ᎠᏛᏛᎮᏍᎪ ᎠᎵᏰᎾ. ᎿᏉᏃ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎬᏍᎦᎢᏍᏓᎩ ᏂᏚᏅᏁᎸᎾ ᏫᏚᏂᏯᏅᎮᎢ; ᏓᏂᏍᎦᎢᎮᏰᏃ ᎤᏂᏣᏘ, ᏅᏯ ᏱᏕᎪᎬᏂᏍᏓ ᎠᏁᎵᏍᎨᎢ. ᎠᎴ ᎾᏍᏉ ᎦᏳᎳ ᎦᎷᏯᏍᏗ ᎠᏅᎯ ᏚᎿᏍᏕᏢ ᏕᏡᎬᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏗᏳ ᏕᏡᎬ ᎣᏍᏛ ᎾᏓᏛᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏗᎦᎴᏴᏍᏙᏗ ᎠᎴ ᎠᏥᎸᏱ ᏫᏓᏗᏅᏗ ᎨᏎᏍᏗ. ᎤᏍᏗᎩᏛᏃ ᎢᏴᏛ ᎢᎤᏪᏅ, ᎡᎳᏗ ᎤᏓᏅᏁᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁ, ᎤᏔᏲᎴᎢ. ᎾᏍᎩ ᏴᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ, ᎾᎯᏳ ᎨᏒ ᎤᎶᎯᏎᏗᏱᏉ. ᎪᎳ ᏓᎦᎷᏥ ᏂᎪᎯᎸᎾ. ᏦᎢ ᏧᏙᏓᏆᏓ ᎠᏇᏙᎸ Cranshaw, ᎾᏍᎩᏯ ᎪᎩ ᏦᏍᏔᏛᏍᎩ ᏥᎨᏒ. ᎧᏂᎩᏓ ᎨᏒ ᎤᎩᏓᏟᏅᏯ ᏃᎴ ᎠᎾᎥ ᎠᏂᎲᏍᎬ. ᎠᏍᏆᏙᏅ, ᎬᏂᎨᏒ ᏂᏥᏴᏁᎸ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎠᎩᏅᏁᎸ ᎪᏪᎵ ᏃᎴ ᏥᏯᏁᏓᏍᏔᏁᎸ, ᏂᎦᏓ ᏥᏃᎯᏎᎸ ᎤᏚᏓᎸᏅ ᏂᎦᏓ ᎤᏂᏍᎦᏅᏨ ᏱᎨᏒᎾ ᏁᎳᎩᏉ ᏱᎩ ᏲᏥᏂᏴ ᏣᎵ ᏏᏅᏓᏉ ᎢᏴ. ᎾᏍᎩ ᎹᏗᏓᏯ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᎼᏏ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᎠᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏏᎳ, ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎾᎩ ᎤᏪᏥ ᎨᏎᎢ, ᏞᏍᏗ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎤᎬᏫᏳᎯ ᎪᎱᏍᏗ ᏛᎩᏁᎵ, ᏰᎵᏍᎨᏍᏗ. ᎣᏏᏉᏗ ᏃᏣᏛᏁᎰ. ᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎠ ᏥᏂᏪᎭ, ᎠᏇᎿᎠ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏯᎩᏂᎬᏎᎭ; ᏂᎦᏔᎲᎾᏃ ᎢᎩ ᎤᏲ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᎤᏪᏙᎵᏍᏗ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏂᏣᎲᎾ ᎨᏒᎢ, ᎠᎴ ᏘᎨᏫ ᎨᏒᎢ, ᎠᎴ ᏣᏰᎸᎭ ᎨᏒᎢ, ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ ᏑᏓᎴᎩ ᏓᏨᏯᏛᏛᏂ, ᎢᏳᏃ ᎾᏍᎩ ᎢᏍᎩᏃᏁᎸ ᎾᏍᎩ ᎠᏴ ᏓᏨᏃᏁᎵ ᎢᏳᏍᏗ ᎠᏆᎵᏍᎦᏍᏙᏛᎢ, ᎯᎠ ᎾᏍᎩ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ. ᎿᏉᏃ ᎾᏍᎩ, ᎠᎬᎭᎸᏛ ᎤᎩᏒ, ᎩᎳᏉ ᎢᏴᏛ ᎤᏄᎪᏨᎩ, ᎠᎴ ᏒᏃᏱ ᎨᏒᎩ. ᎤᏣᏘᏍᎩᏂ ᏕᎤᏫᏞᏫᏒ, ᎠᏎᏃ ᏌᏉᏉ ᎠᏰᎸᎢ. ᏍᎩᏴ ᎤᏓᏏᏂᏕᏅ ᏴᏫ ᏗᎦᎦᏥᎶᏍᏔᏅ ᏙᎩᎾᏑᏯᎩᏒ ᏦᎩᏂᎪᎵᏰᏗ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ ᏟᎣᏆ ᏧᏙᎢᏛ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏥᎪ ᎮᏙᎯᏉ ᏂᎯ ᏥᎷᏏᎵᎻ, ᎠᎴ ᏂᎦᏔᎲᎾᏉ ᎾᏍᎩ ᎾᎿ ᏄᎵᏍᏔᏂᏙᎸ ᎪᎯ ᏥᎩ? ᎢᏳᏍᎩᏂ ᏂᎦᏛ ᏯᎾᏙᎴᎰᏍᎦ, ᏳᏴᎵᎸᏃ ᎩᎶ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎩᎶ ᎾᎦᏔᎾᎥᎾ, ᎾᏂᎥ ᎬᏬᎯᏳᏓᏁᎰᎢ, ᎠᎴ ᎾᏂᎥ ᏕᎬᏭᎪᏓᏁᎰᎢ; “ᎣᏏᏉᏍᎪ ᎦᏟᎰ ᎤᏒᎯ?” ᎤᎨᏳᎯᏳᏰᏃ ᎢᎩᏠᏱ ᎨᏒ ᏴᏫ, ᎠᎴ ᎢᎦᏁᏍᎨᎸ ᏗᎩᎳᏫᎢᏍᏗᏱ. ᏂᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏣᏢᏆᏙᏗᎭ, ᎯᏲᏍᏗᏍᎬᏍᎪ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏐᏢᎯ ᏂᏴᏁ ᎤᏁᎳᏅᎯ? ᏴᎩ ᎦᎵ ᎠᏤ ᎧᏁᏍᎦ ᎤᏁᎴ ᏫᎵᎻ ᏣᏄᏏ. ᎩᎶᏰᏃ ᎠᎹ ᎤᎵᏍᏈᏗ ᎠᎧᎵᎢ ᎢᏣᏗᏔᏍᏗ ᎢᏥᏁᏁᎯ ᎠᏴ ᏓᏆᏙᎥᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎦᎶᏁᏛ ᎡᏣᏤᎵ ᎨᏒ ᎢᏳᏍᏗ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎥᏝ ᎤᏲᎱᏎᏗ ᏱᎨᏎᏍᏗ ᎠᎦᎫᏴᎡᏗ ᎨᏒᎢ. “ᎲᎦ ᎢᏴ ᏓᏛᏄᎪᏔᏂ ᏫᎵᎻ?” ᎤᏛᏛᏁ ᎠᎳᏂ. ᎤᏁᎳᎩ ᎢᎫᎳᎭ ᏫᏓᏛᎯ ᎬᏂ ᎠᎦᏛᎾᏨᎭ; ᎿᏉᏃ ᎠᎦᏛᎾᏨ ᎯᎠ ᏅᏓᎦᏥᏪᏎᎵ ᎠᏂᏍᎫᏕᏍᎩ; ᎢᎬᏱ ᎢᏥᏟᏌ ᎤᏲ, ᎠᎴ ᏗᏦᏛᏣ ᏗᎪᎲᏍᏙᏗ, ᎤᏣᎴᏍᏗᏍᎩᏂ ᎢᏥᏟᏌ ᎠᎩᏍᏆᏂᎪᏙᏗᏱ. ᎥᏝᏰᏃ ᎩᎶ ᎠᏥᎦᏔᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏚᎵᏍᎪᎢ ᎤᏕᎵᏛ ᏱᏚᎸᏫᏍᏓᏁᎰᎢ. ᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᎿᏛᏁᎮᏍᏗ, ᎡᎶᎯ ᎬᏂᎨᏒ ᏂᏯᏛᏂᏏ. ”ᎤᏙᎯᏳ ᎤᏲᎢ,” ᎤᏪᎵᏎ ᏫᎵᎻ. ᎠᏂᏣᎳᎩ ᏩᏂᎦᏛ, ᎠᏆᏛᏅ, ᏣᎳᎩᏱ ᎠᏰᎵ ᎮᎰ. ᏧᎾᏓᎸ ᎤᏩᏌ ᏕᎦᏓᏁᏖ. ᏕᏤᏯᏙᏤᎮᏍᏗ ᎩᎵ, ᏕᏤᏯᏙᏤᎮᏍᏗ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ; ᏕᏤᏯᏙᏤᎮᏍᏗ ᏗᏂᎱᏍᏕᏍᎩ. ᎢᏥᎪᏩᏖᏍᎨᏍᏗᏍᎩᏂ ᎤᏍᎦᎢᏍᏗ ᎠᏛᏗᏍᎩ ᏕᏂᎵ ᎠᏙᎴᎰᏍᎩ ᎤᏁᎢᏍᏔᏅᎯ, ᎦᏙᎨᏍᏗ ᎾᎿ ᎬᏩᎴᏗ ᏂᎨᏒᎾ, (ᎩᎶ ᎠᎪᎵᏰᏍᎨᏍᏗ ᎪᎵᎨᏍᏗ,) ᎿᏉ ᏧᏗᏱ ᎠᏂᏂ ᎠᎾᎵᏒᎭ ᏙᏦᏓᎸ ᏩᏂᎶᏒᎭ. ᎩᎶ ᎤᎨᏳᏎᏍᏗ ᎬᏅᎢ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎠᏍᎦᎨᏍᏗ ᎬᏅᎢ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎬᏂᏛ ᏫᎾᏍᏛᎾ ᏗᎨᏒ ᎬᏗᏍᎩ. ᏚᏛᏅᎢᏍᏔᏁ ᏧᏏᎳᏛᏙᏗ, ᏭᏭᏓᎸᏁᎢ ᎠᏍᏓ, ᏃᏗ ᎡᎳᏗ ᏄᏛᏁᎴ. ᎠᎴ Ꮎ ᏁᏔᏚ ᎢᏯᏂᏛ Ꮜ-ᎶᎻ ᎢᏅᎢᎦᏘ ᎠᏓᏁᎸ ᏧᎾᏐᏁᎢ, ᎠᎴ ᏥᏚᏂᎴᎢ, ᏥᎪ ᎢᏣᏓᏅᏖᏍᎬ ᏧᏂᎪᎾᏛᏔᏅᎯ ᎨᏎ ᎠᏂᏍᎦᎾᎯᏳ ᎬᏒ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ? ᎤᎬᏫᏳᎯᏍᎩᏂᏃᏅ ᎾᎥ ᎦᏙᎬᎩ ᎠᎴ ᎠᏆᎵᏂᎪᎯᏍᏔᏅᎩ; ᎾᏍᎩ ᎠᏴ ᎨᏒ ᎠᎩᏍᏆᏗᏍᏗᏱ ᎠᏰᎸᏒᎩ ᎠᎵᏥᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏛᎯᏗᏱ; ᎠᎴ ᎥᎩᎴᏒᎩ ᏢᏓᏥ ᎠᎰᎵ ᏥᎳᎥᎢ. ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏤᎵᎪ ᎾᎥ ᎤᎷᏨ, ᎩᎶ ᎢᏳᏍᏗ ᏗᎨᏫ ᏅᏙᎱᎶᏗ ᎤᏬᎴ ᎠᏚᎳᏗᏍᎨᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎢᏴᏛ ᎢᏨᏁᏔᏅᎩ ᎢᏦᎯᏳᏒᎢ, ᎾᏍᎩ ᎤᏤᏘ ᎤᏓᎫᏴᎡᏗ ᏥᎩ. ᏑᏒᎯᏓ ᏯᏂᎩᏍᎬᎾ ᎤᎩᏓᏟᏅᏯ ᏚᎪᎰᏍᏔᎾ ᏚᏍᏆᏂᎪᏛ ᏧᏂᎧᎭᏲᏔᏅ ᎢᎾᎨ ᎠᏁᎯ ᏧᎸ ᏙᏱᏨ. ᏴᏫᏃ ᎬᏩᏂᎪᎮ ᎠᎾᏂᎩᏍᎬᎢ, ᎠᎴ ᎤᏂᏣᏖ ᎬᏬᎵᎨᎢ, ᎠᎴ ᎡᎳᏗᏉ ᏚᏂᏍᏆᎸᏔᏁ ᎾᎿ ᎢᏗᏢ ᏭᏂᎶᏎ ᏕᎦᏚᏩᏗᏒ ᏂᏙᏓᏳᏂᎶᏒᎯ, ᏕᎬᏩᏂᎩᏰᏃ, ᎠᎴ ᏫᎬᏩᏓᏟᏌᏁᎴᎢ. “ᏏᏲ!” ᎤᏛᏁ. ᎤᏐᏱᎭ ᎾᏛᏁᎲ ᏣᎵ ᏌᎶᎵ ᏳᏩᏯᎦ. ᎤᎾᏙᏓᏆᏍᎬ ᎦᎵ ᎨᏎ ᏧᏂᎳᏫᎢᏍᏗ. ᎤᏨᏉᏗ ᏱᎨᏒᎾ ᎤᏬᏪᎴ ᏚᏏᎳᏛ ᎠᏰᎵ. “ᎤᏲ ᎠᎩᏰᎸᎭ,” ᎤᏪᎷᏁᎢ ᏫᎵᎻ. ᎠᏎᏍᎩᏂ, ᎦᎸᎾᏗᏣ ᏓᏋᎿ ᎥᏍᎩᏳᏍᏗ, ᎪᎶᏇᏍᏊ ᏥᏁᎲ. ᎠᏎᏃ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ ᏰᎵᏉ ᎠᏂ ᎡᎶᎯ ᎬᏩᏓᏙᎵᏍᏗ ᎨᏒ ᎣᏍᎦᏅᏨᎢ, (ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ;) ᎯᎠ ᏂᎬᏪᏎᎭ; ᏔᎴᎲᎦ, ᏣᏤᏍᏙ ᎯᎾᎩ, ᎠᎴ ᏗᏤᏅᏒ ᎮᎾ. ᏅᏯ ᎤᏍᏔᎦᏢ ᏭᏍᏆᎵᏒ ᎤᏁᏍᏔᎵ, ᎤᏅᏍᎦᎳᏛ ᎤᏩᎾᏬᎯᏍᏗ. “ᏌᎳᏓ, ᏙᎢᏳᏍᏗ ᎯᏃᎮᎭ?” ᎤᏖᏗ! ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏞᏍᏗ ᎡᏥᏅᏍᏓᏕᎸᎩ; ᎩᎶᏰᏃ ᏂᎦᏡᏗᏍᎬᎾ ᏱᎩ ᎾᏍᎩ ᎢᎦᎵᎪᏁᎯ. ᎠᎴ ᎾᏍᏉ ᏕᎬᏩᏘᏃᎮᎴ ᏧᎾᏍᏗ ᏗᏂᏲᎵ, ᎾᏍᎩ ᏧᏏᏔᏗᏍᏗᏱ; ᎠᏎᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏙᎴᎰᏒ ᏚᏂᎬᏍᎪᎸᏁᎢ. ᎡᎳᏆᏗ ᏍᏉ ᏚᎾᏓᏲᎵᎴ ᏗᎫᎪᏗᏍᎩ. ᎬᏂᎨᏒᏃ ᏂᎬᏩᎾᏛᏁᎴ ᎢᎳᏯ ᎠᎴ ᎼᏏ; ᏥᏌᏃ ᎬᏩᎵᏃᎮᏗᏍᎨᎢ. ᎤᏬᏯᏁᏒᏃ ᏕᎤᎴᏔᏁᎢ; ᏫᏚᏯᏅᎲᏃ ᎤᎾᏓᏅᏘ ᎠᎴ ᏧᏃᏑᎶᏨᎯ, ᏕᎤᎾᏄᎪᏎᎴ ᎬᏃᏛ. ᎤᎾᎵᏃᎯᏴᎯᏃ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏐᏈᎵᎯ ᎤᎩᎵ ᎤᏤᎵᎦ ᏕᎨᏥᎢᏍᏔᏅᎩ, ᎾᏍᎩ ᎠᎰᎵ ᏨᏓᎦᏄᎪᎬᎩ; ᏂᎦᏛᏃ ᏥᏍᏆ ᎾᏍᎩ ᎤᏂᏇᏓᎸ ᏚᏃᎸᎯᏍᏔᏅᎩ. “ᎭᏂ, ᎭᏂ, ᎭᏂ!” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ. ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙ ᎢᏤᎵ ᎡᏣᏓᏅᏖᏍᎬ ᎦᎶᏁᏛ, ᎦᎪ ᎤᏪᏥ? ᏕᏫ, ᎥᎬᏬᏎᎸᎩ. ᎨᏍᏗ ᎪᎱᏍᏗ ᎠᏆᏕᎩ ᏱᎩ.” ᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᎪ ᏓᎩᎲᎡᎵ ᏅᏯ ᎠᏤᎵᏍᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎲᎢ? ᎦᎵᏉᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ; ᎠᎴ ᎦᎸᎳᏗ ᎢᏴᏛ ᎠᏍᏓᏯ ᏗᎧᏁᎬᎩ ᎩᎶᎢ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎠᏂ ᎡᎶᎯ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᏤᎵ ᎦᎶᏁᏛ ᏧᎾᏤᎵ ᏂᏕᎦᎵᏍᏓ; ᎠᎴ ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ. ᎤᏲᏰᏃ ᎢᏳᎾᏛᎿᏕᎩ ᏂᎪᎯᎸ ᎨᏤᎳᏗᏙᎭ; ᎠᏴᏍᎩᏂ ᎥᏝ ᏂᎪᎯᎸ ᏱᏨᏰᎳᏗᏙᎭ. ᏥᏌᏃ ᎤᏛᎦᏅ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᏚᏂᏢᎬᎾ ᎥᏝ ᎤᏚᎸᏗ ᏱᏄᎾᎵᏍᏓᏁᎰ ᏗᏓᏅᏫᏍᎩ, ᏧᏂᏢᎩᏍᎩᏂ. ᎠᏯᏙᎯᎯ ᏌᏉᎭ ᎠᏓᏰᎮᏍᏗ, ᎣᏍᏛ ᏗᎧᎿᏩᏗᏙᎯ ᏧᏪᏥ ᎠᎴ ᎤᏩᏒ ᏚᏓᏘᎿᎥᎢ. ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ ᎢᏥᎦᏲᎵ ᎠᏫ; ᎢᏥᏙᏓᏰᏃ ᎣᏏᏳ ᎤᏰᎸᎭ ᎢᏥᏁᏗᏱ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏣᏕᏲᎰᏰᏃ ᎠᎺᏉᎯ ᎠᎴ ᎦᏙᎯ ᎡᏥᏲᎰ ᎠᏏᏴᏫ ᏄᏍᏛ ᎢᏦᎯᏳᏒ ᎪᎯᏳᎲᏍᎩ ᎢᏰᏨᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏁᏨᎦ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏟ ᏨᏍᎩᏃᎢ ᎤᏪᏥ ᏁᏨᏁᎰ ᎡᏍᎦᏉ ᎢᏨᏒ. ᎬᏩᏔᏲᏎᎸᏃ ᎤᏬᎯᎢᏍᏗᏱ ᏧᏪᎳᏗᏓᏍᏗᏱ ᎥᏝ ᏳᏬᎯᏳᏁᎢ; ᎠᏎᏗ ᎠᏒᎩ ᎨᏐ, ᎾᏰᏃ ᏄᏍᏗ ᎡᎲᎢ. ᎢᏥᎾᏕᎨᏍᏗ ᎢᏥᎿᎥᎢ ᎠᎴ ᎢᏣᏓᏁᎸᎥᏍᎨᏍᏗ; ᎢᏣᏓᏁᎴᏍᏗ ᏕᎦᎶᏗ ᏂᏚᏪᏔᎬᎾ, ᏧᎬᏩᎶᏗ ᎦᎸᎳᏗ ᏫᏥᏟᏏᏍᎨᏍᏗ ᎠᏗᏒᎲᏍᎩ ᏂᎨᏒᎾ, ᎾᎿ ᏫᎬᏩᎷᎯᏍᏗ ᏂᎨᏒᎾ ᎦᏃᏍᎩᏍᎩ, ᎠᎴ ᏥᏍᎪᏯ ᏫᎬᏩᏲᏍᏙᏗ ᏂᎨᏒᎾ. ᎤᏂᎷᏥᎸᏃ ᎠᎴ ᏚᏂᎳᏫᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏂᏃᎮᎴ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏄᎾᏛᏁᎸᎢ, ᎠᎴ ᏚᏍᏚᎢᎡᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎪᎯᏳᏗ ᎨᏒ ᎦᎶᎯᏍᏗᏱ. ᏥᏌᏃ ᎠᏍᎩᎾ ᎤᏍᎦᏨᎩ; ᎠᏍᎩᎾᏃ ᎤᏄᎪᏨᎩ ᎠᏧᏣ, ᎠᎴ ᎾᎯᏳᏉ ᎤᏗᏩᏒᎩ. ᎠᏯ ᎩᎾᎵᎪᎮᏍᏗ. ᎾᏍᎩᏃ ᎾᎯᏳ ᏥᎨᏎᎢ, Ꮎ-Ꭹ ᎤᏇᏓᎵ ᎤᏕᏔᏅᎯ ᏣᏕᏯᏙᏗᏍᎨ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ ᎤᏕᏔᏅᎯ, ᎾᏍᎩᏯ ᏄᏍᏗ ᎪᎯ ᎨᏒᎢ. ᎬᏂᎨ ᎤᏍᎪᎸ ᎨᏎᎢ ᎠᏰᎸᎢ, ᎬᏂᎨ ᎤᏍᏓᏅᏁ ᎭᏫᏂᏣ. ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏴᎵᎴ---ᎤᎵᏏᏂᏗ ᎠᏍᎦᏂᎵᏎ ᎠᏦᏴ ᎾᎥᏂ. ᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏥᏄᎾᎵᏍᏓᏁᎴ ᏗᏟᎶᏍᏙᏗ ᎠᏰᎸᏎᎢ; ᎠᎴ ᎦᎪᏪᎳ ᎠᏴ ᎢᎦᏅᏓᏗᏍᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᏴ ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎨᏒ ᎡᎶᎯ ᏥᎩᎷᏤᎸ. ᎠᏍᏛᎢ ᎠᏙᎯ ᎠᏂᏙᎾᎥ ᎤᏂᏃᏴᎵᏓ ᎠᏂᎦᏘᏴ ᎤᏂᏁᏙᎸᏗ ᎦᎵᏦᏕ. ᎯᎸᎯᏨ ᎤᎴᏫᏍᏔᏁ ᏣᎵ ᎠᏛᎵᏍᎨ, ᏚᎦᏙᏍᏖ ᏁᏂᏏ ᏃᎴ ᏗᎾᏓᏍᏔᎢ ᏃᎴ ᏧᏂᏍᏗ ᏗᏂᏲᏟ ᏃᎴ ᎠᏂᏫᎾᎨ ᎠᏂᏍᎦᏯ ᎠᎾᏟᏂᎬ ᏁᎲ ᎠᎬᏱᏣ ᎠᏂᎾᎷᏍᎬ ᎦᏚ ᎤᏅᏓᏒ. ᏥᏌᏃ ᎤᎪᎲ ᎤᏣᏘ ᎤᏲ ᎤᏰᎸᏒᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎦᎥ ᎠᏍᏓᏱᏳ ᏧᏁᎿᎢ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᏗᎨᏒ ᏭᏂᏴᏍᏗᏱ! ᎠᎴ ᎾᏍᏉ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏂᏙᏓ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏩᏒ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᏉᏍᎩᏂ ᎠᏂᏍᏓᏪᏕᎩ ᏥᎩ ᏚᎳᏏᏅᏒ ᎢᎩᏙᏓ ᎡᏆᎭᎻ, ᎾᏍᎩ ᏧᏬᎯᏳᏎ ᎠᏥᎤᏍᏕᏎᎸᎯ ᎠᏏ ᏂᎨᏒᎾ ᏥᎨᏎᎢ. ᎯᎠ ᎤᏁᏍᏓᎳ ᎫᎦ ᎨᏍᏗ ᎦᏓ ᏱᏂᏓᎦᎵᏍᏔᎾ ᏰᎵ ᎢᏯᎦᏴᎵ ᏧᏕᏘᏴᏓ. “ᏣᏑᎶᎩ ᎭᏫᏂ ᎯᎸᎥᎦ ᏣᎿᏬ ᎡᎳᏆᏗ!” ᎤᏪᎷᏁ ᎠᎳᏂ. ᎭᏫᏂ ᏕᎦᎶᏛ ᏧᏪᏥ ᎤᎦᏃᏩ ᏃᎴ ᎤᎧᎭᏲᏓ ᎨᏎᏍᏗ. ᏍᎩᏃᎯᏏ ᎭᎾ ᎮᏙᎲᎢ. ᏚᏁᏤᎸᏃ ᎤᏂᏣᏘ ᎧᏁᏍᎪᎯ ᎨᏒ ᎤᎾᏅᏗᏱ, ᏚᎩᏒᏃ ᎯᏍᎩ ᎦᏚ ᎠᎴ ᏔᎵ ᎠᏣᏗ ᏚᏁᏒ, ᎦᎸᎳᏗᏃ ᏫᏚᎧᎾᏅ ᎤᎵᎮᎵᏨᎩ, ᎠᎴ ᏚᎬᎭᎷᏴ ᏚᏁᎸᎩ ᎦᏚ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᏣᏘ ᏫᏚᏂᏁᎸᎩ. ᏃᏗ ᏌᎳᏓ ᏚᎾᎧᎾᏁᎢ ᎪᎯᏓ. ᎢᏥᏁᏉᎨᏍᏗᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏩᎵ ᎠᎴ ᎡᏥᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ; ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎪᎯ ᎨᏒ, ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪᏃ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎠᎴ ᎠᎦᏔᎾᎢ ᎠᏓᏁᎸ ᎠᏥᎦᏘᏗᏍᏗ, ᎾᏍᎩ ᎤᏅᏏᏙᎯ ᏄᎬᏫᏳᏌᏕᎩ ᏅᏓᏳᏩᏁᎵ ᎦᏁᎸᎢ, ᎾᏍᎩ ᏧᏁᏗᏱ ᎤᎾᎵᏍᏓᏴᏗ ᏂᏓᏍᏆᎸᎯᏒᎢ? ᎠᏋᎦᏎᎠᏍᏙᏗᎢ ᎤᏤᎵᎢ ᎢᎾᎨᎢ ᎥᏃᏥ ᎠᎧᎵᎢᎲᎢ ᎤᏮᏔᏅ ᎠᏰᎸ ᎤᏇᏓᎵ ᎨᏒ ᎠᏲᎱᏍᎬᎢ, ᏧᎬᏩᎴ ᎬᏂᎨᏒ ᎢᏨᏁᏗᏱ ᏂᏥᏍᎦᏅᎾ ᎠᎴ ᎪᎱᏍᏗ ᏁᏧᎢᏍᏛᎾ ᎠᎴ ᎦᏰᏥᎳᏫᏎᏗ ᏂᎨᏒᎾ ᎾᏍᎩ ᎠᎦᏔᎲᎢ; ᎾᏍᎩᏃ ᏔᎵ ᏫᏄᏒᎸ ᎾᎿ ᎤᏂᎩᏒᎩ, ᎠᎴ ᎨᎵᎵ ᏭᎶᏒᎩ. ᏥᏌᏃ ᎾᎿ ᎤᏂᎩᏒ ᏔᏲᎢ ᎠᎴ ᏌᏙᏂᏱ ᏭᎶᏒᎩ. ᏗᏂᏲᏟ ᏍᏉ ᏧᏁᎷᏁᎢ, ᏃᏗ ᏂᎦᏓ ᎤᏁᏅᏎ ᏗᎾᏓᎪᎾᏗᏍᎬ. ᎾᏍᎩᏃ ᏚᎵᏔᏗᏅᏎᎢ, ᎤᎴᏁᎢ, ᎠᎴ ᎤᏪᏙᎴᎢ, ᎠᎴ ᎢᏧᎳᎭ ᏭᏂᏴᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎡᏙᎮᎢ, ᎠᎴ ᏓᎵᏔᏕᎨᎢ, ᎠᎴ ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ. ᎠᎴ ᎬᏂᏳᏉ ᎤᎷᏤ ᎩᎶ ᎢᏳᏍᏗ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏤᎳ ᏧᏙᎢᏛ; ᎤᎪᎲᏃ [ᏥᏌ] ᏚᎳᏍᎬ ᎤᏓᏅᏁᎢ, ᎾᎯᏳᏰᏃ ᏅᏩᏙᎯᏯᏛ ᎠᎴ ᏄᎾᏰᎯᏍᏛᎾ ᎠᎾᏗᏍᎨᏍᏗ, ᎿᏉ ᏄᏰᎶᎢᏍᏔᏅᏛ ᎠᏓᏛᏗᏍᎩ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᎩᎵᏯ ᏧᎷᏤᎰ ᎠᎨᏴ ᎦᏁᎵᏛ; ᎠᎴ ᎥᏝ ᎤᎾᏗᏫᏎᏗ ᏱᎨᏎᏍᏗ. ”ᎣᏍᏓ ᎤᏒᎯ, ᏌᎳᏓ!” ᎤᏙᎯᏳᎯᏯᏰᏃ ᎠᎾᏡᏗᏍᎬ ᎾᏍᎦᏅᎾ ᏤᏥ ᏥᏌ ᎾᏍᎩ ᎯᎶᏁᏛ ᎢᏧᎳ ᎡᎶᏛ ᎠᎴ ᏆᏂᏗ ᏆᎴᏗ ᎠᎴ ᏴᏫ ᏧᎾᏓᎴᏅᏛ ᎠᎴ ᎢᏏᎵ ᏴᏫ ᏚᏂᎳᏫᏨᎩ, ᎠᎴ ᏞᏍᏗ ᎤᏲ ᏰᏣᏓᏅᏓᏗᏍᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎢᏥᏰᎸᏔᏅᎯ ᏥᎩ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎡᏧᏓᎴᏍᏗ ᎨᏒ ᎠᏍᏆᎸᎲᎭ. ᎠᏦᏴ ᏭᏂᏬᎯᎶᏎ, ᎠᏦᏴ ᎠᏰᎵ ᎤᎾᏓᏄᎸ ᎤᏁᏅᏎ ᏏᏆ ᎠᏍᏚᏗ ᎢᏣ. ᎤᎵᎮᎵᏍᏗ ᏂᎦᎵᏍᏓ. “ᎭᏂᏉ ᏥᏙᎦ.” ᎠᎴ ᏫᏨᎶᎢᏍᏓᏁᏗᏱ ᎹᏏᏙᏂ ᏩᎩᎷᎯᏍᏗᏱ, ᎠᎴ ᎹᏏᏙᏂ ᏗᎦᏂᎩᏒ ᏔᎵᏁ ᏅᏓᏨᎷᏤᏗᏱ, ᎠᎴ ᏧᏗᏱ ᏫᏥᎦᏛ ᏍᎩᏯᏘᏅᏍᏗᏱ. ᎿᏉᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎯ ᏚᏄᎪᏔᏅ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᏧᏓᏴᎡᏗᏱ ᏏᎦ, ᏖᎸᎳᏗ ᏙᏧᏫᏒ ᏚᏅᏎᎢ. ᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅ ᏓᏟᎶᏍᏗᏍᎬᎢ, ᎤᎾᏙᎴᎰᏒᎩ ᎤᏅᏒ ᎨᏥᏛᎬᎢ. ᏂᎯ ᎢᏥᎦᏔᎯ ᏂᏣᎵᏍᏗᎭ, ᎠᎴ ᎾᏍᏉ ᎤᏁᎳᏅᎯ, ᏂᎦᎥ ᎾᏍᎦᏅᎾ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ, ᎠᎴ ᎦᎫᎯᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎣᎨᏙᎸ ᎢᏨᏰᎳᏗᏙᎸ ᏂᎯ ᎢᏦᎯᏳᎯ; ᏰᎵᏉᏰᏃ ᏱᎩᏰᎸᎭ ᎦᏳᎳ ᎢᎦᎴᏂᏙᎸ ᏕᎩᎸᏫᏍᏓᏁᎸ ᎣᏏᏳ ᎤᏂᏰᎸᏗ ᎨᏒ ᎾᏂᎦᏔᎾᎥᎾ, ᎾᎯᏳ ᏥᏕᏙᎲ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏚᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎬᏓᏴᏍᏕᏍᏗᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏍᎦᎾᏩᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏓᎾᏗᏔᏍᎬ ᎨᎳᏗᏓᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ; “ᎯᏥᎦᏘᏰᏍᏗ ᏕᎦᏃᏣᏢᎢ!” ᎠᎴ ᎤᏣᏖ ᏧᏓᎴᏅᏛ ᏚᏪᏲᏁ ᏚᏟᎶᏍᏓᏁᎴᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴ ᏓᏕᏲᎲᏍᎬᎢ, ᏫᎵᎻ ᎣᏍᏓ ᎤᏰᎴᎮ ᎠᎦᎦᏙᏍᏗᏍᎬ. ᏩᏏᏓᏂ ᏚᎦᏘᎸᏒ ᎠᏲᏟ ᎨᏒ, ᎠᏂᏍᎦᏯ ᏧᏍᏔᏩᏛᏍᏗ ᎤᏚᎸᎲ. ᏉᎳᏃ ᎤᏁᎳᏫᏎᎸᎩ ᏒᏃᏱ; ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎼᏗᏙᏂ ᎡᎯ ᎦᏙᎨᎢ, ᎤᏔᏲᏎᎮᎢ, ᎯᎠ ᏄᏪᏎᎮᎢ; ᎹᏏᏙᏂ ᏫᎷᎩ, ᎠᎴ ᏫᏍᎩᏍᎨᎸ. ᏍᏈᏍᏓ ᎤᏓᏑᏲ ᎪᎱᏍᏗ ᎦᏙᎯ ᎠᏓᏍᎨ. ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎸᎳᏗ ᎡᎯ ᎤᏂᏐᏢᎢᏍᏔᏅᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏚᏁᎯᏍᏓᏁᎲᎢ ᎠᎴ ᏚᏂᏥ-ᏍᏓᎸᎢ, ᎠᎴ ᎥᏝ ᎤᏲ ᏳᏂᏰᎸᏁ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ. ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏗᏔᏲᎭ ᎢᎩᏁᎰᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎢᎩᏍᏆᏂᎪᏛ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏕᎩᎸᏫᏓᏁᎲ ᎾᏍᎩ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᏕᎩᎧᏅᎢ. ᎾᏍᎩᏃ Ꮎ ᎤᏤᎵ ᎠᏛ ᏧᏲᏍᎩ ᏧᏨᏍᏗᏱ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏧᏲᏍᎩ ᏂᎨᏒᎾ ᏧᏨᏍᏗᏱ ᎤᏟ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ. ᏚᏳᎪᏛᏍᎩᏂ ᏧᎸᏫᏍᏓᏁᎯ ᎢᎦᎦᏛ ᎦᎷᎪᎢ, ᎤᏚᎵᏍᎪ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᏔᎵ ᎩᏄᏗᏘ ᏃᎴ ᏔᎵ ᏍᎪᎯ ᎠᏂᏎᏂᏏ ᏚᏁᎴ ᏲᎾ ᎤᏤᏍᏙ. ᎣᏍᏓ ᎠᎩᏬᏂᏍᏗ ᏥᏏᎹᏛ ᏓᎬᏔᏂᏒ ᎠᏆᎵᏍᏙᏗ. ᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏌ ᎬᏩᎷᏤᎸᎩ ᎤᏅᏒ ᎨᏒᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙᏃ ᏦᎩᏄᎸᏅᎩ ᎣᏥᏄᎪᏫᏍᏗᏱ? ᎤᏍᎦᏨ ᏥᏔᏲᏎᎲ. ᎨᏍᏗ ᏳᏓᏅᏌ ᏫᎵᎻ. ᎣᏍᏓ ᏗᎧᏃᏗ ᏥᎨᏐ ᎤᏪᎵᏍᏗ ᎰᎻ. ᎬᏂᎨᏒ ᏄᏍᏛᎢ ᎦᏙᎯ, ᎤᏂᏂᎬᎬ ᏓᏳᏓᎴᏅᏓ ᏯᏂᎷᎩ. ᎠᎴᏬ ᎢᏓᎵᏅᏟ, ᏕᏥᎦᏔᎭ ᏍᏗᏇᎾ ᏚᏓᏘᎾᎥᎢ, ᎾᏍᎩ ᎢᎬᏱ ᎤᏓᏔᏅᎯ ᎨᏒ ᎠᎦᏯ, ᎠᎴ ᎾᏍᎩ ᏚᎾᏓᏲᏒ ᏧᏂᏍᏕᎸᎯᏓᏍᏗᏱ ᎤᎾᏓᏅᏘ; ᏑᎾᎴᏉᏃ ᏔᎵᏁ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎷᏨᎩ; ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎥᎬᏩᎷᏤᎸᎩ; ᎤᏪᏅᏃ ᏑᏪᏲᏅᎩ. ᏧᎵᏨᏯᏍᏗ ᎨᏎ Ꮭ ᏱᏓᏓᏲᏍᎨᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏯᏅᏓᏗᏍᏗᎭ ᏣᏖᎸᏗᏱ ᎤᏁᎳᏅᎩ ᏣᏁᎸᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏥᏣᏯᎠ, ᎾᏍᎩ ᏕᎬᏯᏏᏔᏛ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ. ᎾᎿᏃ ᎢᎬᏱᏗᏢ ᏗᏓᏂᏐᏗᏱ ᏚᏃᎴ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᎠᎴ ᏐᎢ ᎺᎵ. ᏂᎬᎾᏛ ᎦᎳᎨᏲ ᏥᏍᏕᏥ ᎤᎩᏍᏗ---ᏕᎦᎵᏦᏩᏛ, ᎠᏌᏅᏗ, ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ---Ꭽ ᏰᎵᏉ ᏂᎦᎣ ᎤᏁᎸᏗ ᎤᏂᏑᎸᏓ ᎠᎵᏍᏓᏴᏗ, ᏰᎵᏉ ᏍᏈᏍᏓ ᎤᎾᏓᏓᏍᎬ ᏥᏍᏕᏥ ᎤᎾᎵᏍᏓᏴᏗ.” ᏥᏌᏃ ᏚᏪᏙᎵᏨ ᏗᏂᎦᏙᎵ ᏚᏒᏁᎸᎩ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᏂᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎩ; ᎠᎴ ᎬᏩᏍᏓᏩᏛᏒᎩ. ᎠᎴ ᏂᎦᏛ ᎤᏁᏅᏎ ᎨᎦᏎᏍᏗᏱ ᎠᏂᏏᏴᏫᎭ ᎨᏒ ᏙᏓᏂᏚᎲᎢ. ”ᎠᏯᏖᎾ ᎢᏳᏛᏅᏓᎩᏓᎩ ᎭᏗ?” ᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏏᏌ ᎣᎦᏍᏓ ᎤᏁᏨᎯ ᎤᎾᏄᎪᏤ ᏂᎬᎾᏛ ᎡᎶᎯ ᎨᎦᏎᏍᏗᏱ. ᏗᏘᏲᏍᏗ ᏃᎴ ᎠᏓᎾᏅᏗ ᎤᏩᏌ ᏥᎬᏫᏳ. ᎠᏎᏃ ᎢᏥᎪᏩᏘᎭ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏥᏰᎸ ᎠᏆᏚᏓᏕᏫᏒᎢ, ᎾᏍᎩ ᏗᎦᏘᎴᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏓᏅᏙᎩᎯ ᎠᎲᎢ, ᎠᎴ ᏥᏴᎩ ᎢᏯᏋᏁᎯ ᎠᏇᏓᎸᎥᏍᎩ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎠᏍᎦᏂ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏥᏰᎸ ᎠᏆᏚᏓᏕᏫᏒ ᎠᎲᎢ. ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎡᎲᎩ ᏣᏂ ᏧᏙᎢᏛ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏅᏏᏛ ᎨᏒᎩ. ᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏬᏑᎶᏨᎯ ᏧᏪᏥ ᎠᎴ ᏧᎵᏏ ᏯᏁᎭ, ᎾᏍᎩ ᎠᎾᏕᎶᏆᏍᎨᏍᏗ ᏧᏂᎸᏉᏙᏗᏱ ᏙᏧᏁᏅᏒ ᎠᏁᎯ, ᎠᎴ ᏧᎾᎫᏴᎡᏗᏱ ᏧᏂᎦᏴᎵᎨᎢ; ᎾᏍᎩᏰᏃ ᎣᏏᏳ, ᎠᎴ ᏧᏓᏂᎸᎢᏍᏗᏳ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎾᏍᎩ ᎾᏍᏉ ᎤᎬᏩᎵ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ, ᏥᎦᏟᏂᎬᏁᎭ ᎾᏍᎩᏯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎵᏂᎩᏗᏳ ᏥᏚᎸᏫᏍᏓᏁᎭ ᏗᏆᏓᏅᏛᎢ. ᎾᏍᎩᏃ ᎠᏄᎮᎵᏤᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏂᎪᎯᎸ ᎢᎦᎵᎮᎵᏍᏗᏱ ᏥᏂᎬᏁᎭ ᎢᎦᏓᎵᏁᎯᏛ ᎤᎬᏩᎵ ᎦᎶᏁᏛ ᎡᏓᎵᏍᎦᏍᏙᏛᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏥᏂᎬᏁᎭ ᎦᏩᏒᎬ ᎤᏩᏒ ᎠᏥᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏴ ᎢᎬᏗᏍᎬ ᏂᎦᎥ ᏕᎨᏌᏗᏒᎢ. ᎢᏳᏓᎵᎭ, ᎡᏘᏴ ᏥᎨᏎ ᎤᏂᏍᎦᏎᏗ ᎨᏎ, ᎠᏎᏃ ᎨᏥᏁᏘᏍᏔᏅ ᎨᏥᏔᎶᏍᎬ. ᎠᏎᏃ, ᎠᏎᏉᏉ ᎬᎩᎸᏉᏗᎭ ᏥᏓᎾᏕᏲᎲᏍᎦ ᏓᎾᏕᏲᎲᏍᎬ ᏴᏫᏉ ᎤᏂᏁᏨᎯ. ᎤᏭᏔᎩᏒ ᎧᏫ ᎠᏥᏍᏙᏗ, ᎤᎾᏤᎸ ᎠᏥᏍᏛ, ᏍᎩᏴ ᎤᏣᏅᏓᏕᎸ ᏗᎪᏪᎵᏍᎩ ᎣᏍᏓ ᎢᏳᏩᏁᏗ ᎤᎵᏓᏍᏔᏅ. ᎠᏏᏃ ᎤᏃᏒᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ, ᏥᏌ ᎠᎦᏔᎯᏳ ᎨᏒᎩ ᎤᏍᏆᎸᎡᏱ ᎠᏂ ᎡᎶᎯ ᎤᏓᏅᏍᏗᏱ, ᎠᎦᏴᎵᎨᏍᏛᏱ ᏭᎶᎯᏍᏗᏱ, ᏧᎨᏳᎯᏳ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏒᎩ ᏧᏤᎵᎦ ᎡᎶᎯ ᎠᏁᎯ, ᎬᎵᏍᏆᏗᏍᎩ ᏧᎨᏳᎯᏳ ᎨᏒᎩ. ᎭᏂ ᎤᏍᏆᎸᎲ ᎬᏂᎨᏒ ᎢᏯᏋᏁᏗ ᏂᏥᎨᏳᎥ. ᏚᏩᏩᏍᏛᏂᎸ ᏗᏂᏐᎯ ᏗᏂᎳᏴᏅᎯᏛ ᏧᏔᎾᎶ ᎬᏘ, ᏚᏂᎾᏌᎾᎩᏒ. ᎤᏪᎷᎦ ᎩᎶ ᎢᎾᎨᎢ, ᎯᎠ ᏂᎦᏪᎭ; ᎡᏣᏛᏅᎢᏍᏓᏏ ᏱᎰᏩ ᎤᎶᎯᏍᏗᏱ, ᏚᏅᏅ ᏗᏥᏥᏃᎯᏍᏓ. ᎤᎵᏗᏨ ᏭᏩᏌᏙᏰᎢ ᎧᏁᏍᎦ, ᏗᎩᏏ ᏭᎾᏏᏁᎢ. ᏍᎩᎾᎾ ᏱᏄᏛᏁᎳ, ᎾᏍᏉ ᏗᎨᏫ ᏳᏫᎦᎷᎩ ᎨᏴ ᎯᎸᎢᏴ. ᎠᏗᎾ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎠᏍᎦᏂ ᏗᏥᎾᏝᎢ ᏥᎨᏒᎩ, ᎠᏎᏃ ᏗᏥᎾᏫ ᎬᏗ ᎢᏦᎯᏳᏅ ᎾᏍᎩ ᏄᏍᏛ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᏤᏥᏲᎯᏎᎸᎯ ᎨᏒᎢ. ᏩᎦ ᏃᎴ ᏐᏈᎵ ᎤᏂᎩᏍᏗ ᏧᎾᏕᎨ ᎡᎳᏗᏣ. ᏐᏉ ᏑᏒᎯᏓ ᎠᎩᏒᎸ ᎦᏚᎲ ᎭᎾ ᎾᎥᏂ ᎤᏂᎷᏨ ᎢᎾᎨ ᎠᏁᎯ ᏏᏆ, ᏌᏬᏚ ᎠᏁᎯ ᏥᏍᏛᎾ ᎢᏳᏂᏍᏗ ᏓᏂᏯᎩᏍᎬ, ᏏᏆ ᏧᎵᎩᏏ ᏗᎬᏣᏝᏅ ᎢᏳᏍᏗ ᏓᏂᎩᏍᏙᏍᎬ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎦᏙ ᏓᏓᏛᏂ? ᏥᎪ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎤᏪᎭ ᎤᏁᎳᏅᎯ? ᎬᏩᏟᏍᏗ. ᎠᎴ ᎡᎶᎯ ᎠᏁᎯ ᏕᎦᎶᏄᎮᎭ ᎬᏗᏍᎬ ᎤᏍᏆᏂᎪᏗ ᏗᎬᏩᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᎦᏔᎲ ᏅᎩ-ᏗᎦᏅᏌᏗ; ᎯᎠ ᏏᏕᎦᏪᏎᎭ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏁᎯ, ᎾᏍᎩ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏗᏟᎶᏍᏔᏅᎯ ᎢᏦᏢᎾ, ᎾᏍᎩ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎬᏗ ᎠᏥᏐᏅᏅᎯ ᎠᎴ ᏧᏛᏂᏛᎩ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏓᎨᏏ ᏓᏥᏅᏩᏁᏏ. ᎥᏝᏰᏃ ᎣᎬᏒ ᏲᏣᏓᏃᎮᎭ ᎣᏣᎵᏥᏙᎲᏍᎬᎢ, ᎦᎶᏁᏛᏍᎩᏂ ᏥᏌ ᎤᎬᏫᏳᎯ; ᎠᏴᏃ ᏂᎯ ᎣᎩᏅᏏᏓᏍᏗ ᎨᏒ ᎾᏍᎩ ᏥᏌ ᏅᏗ-ᎦᎵᏍᏙᏗᏍᎬᎢ. ᏅᏩᎾᏓᎴᏃ ᏴᏫ ᎾᎿ ᎠᏁᎯ ᎤᏤᏘ ᎣᏏᏳ ᎪᎩᏍᏆᏂᎪᏔᏅᎩ; ᎤᏃᏔᏅᏰᏃ ᏕᎪᎦᏓᏂᎸᏨᎩ ᏂᎦᏛ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᎦᏍᎬᎢ ᎠᎴ ᎤᏴᏢᎢ. ᎠᎴ ᏂᎦᏛ ᎤᎾᎵᏍᏓᏴᏅᎩ, ᎠᎴ ᏚᏃᎸᏒᎩ. ᎠᎴ ᎤᏄᏖᏒᎩ ᎤᎵᎬᎭᎷᏴᎯ ᎦᎵᏉᎩ ᎢᏯᎧᎵᎢ ᏔᎷᏣ. ᎤᏙᎯᏳ, ᎨᏍᏗᏗ ᏱᏗᏥᏯᎩ, ᏕᎦᏗᏔᏍᎪ--- ᎩᎦ ᎤᏂᏁᎲ. ”ᏗᎦᏅᏏᏙ ᎠᏧᏣ ᏍᏇᎵᏎ ᎠᏯ?” ᎤᎵᏍᎦᏎᏔᏁ ᏥᏍᏕᏥ. ᎿᏉᏃ ᎤᎴᏅᎲᎩ ᏚᎬᏍᎪᎸᏅᎩ ᏚᏂᏚᎲᎢ ᎾᎿ ᎤᏟ ᎢᎦᎢ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏚᎾᏓᏅᏛ ᏂᏚᏂᏁᏟᏴᏒᎾ ᎨᏒᎢ. ᏥᎪ ᏂᎯ ᎤᏟ ᎡᏣᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎡᏆᎭᎻ ᎣᎩᏙᏓ, ᏧᏲᎱᏒ? ᎠᎴ ᎾᏍᏉ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏂᏲᎱᏒ. ᎦᎪ ᏂᎯ ᎭᏤᎸᏍᎦ? ᎺᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎦᎸᏉᏗᎭ ᎣᎱᏩ, ᏅᏙ ᏥᏗᎧᎸᎦ ᎩᎳ ᎡᎨ ᎤᏂᏏᏗ, ᎢᎦ ᎠᏗᏗᏍᎨ, ᎩᎦᎨ ᏃᎴ ᎤᏬᏘᏓ ᎦᏳᏐᎵ, ᎠᎦᏗᏓ ᎠᎩᏍᎨ ᏩᎦ ᎭᏫᏯ, ᎩᎳ ᎠᎴᏂᏍᎨ ᎤᏕᎳᏓ ᏚᎷᏫᏍᏔᏁᎲ. ᎾᏍᎩ ᎤᏣᏘ ᎢᎩᏁᎸᎯ ᏥᎩ ᎬᏗᏍᎬ ᏂᎦᎥ ᎠᎦᏙᎮᎯᏍᏗ ᎨᏒ ᎠᎴ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ; ᎠᎴ ᎠᎰᎵ ᏗᎦᏄᎪᎦ ᎪᏍᏓᏯ ᎭᏰᎳᏍᏗᎦᏅᎯᏛ, ᎾᏍᎩ ᏧᏩᏂᏍᏙᏗᏱ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ; ᎠᎴ ᏔᎷᎩᏍᎩ ᎬᏗ ᏗᎬᏩᏁᎶᏙᏗᏱ ᏅᏓᎬᏁᎵ; ᎠᎴ ᏖᎸᎳᏗ ᎦᏨᏩᏍᏙᏗᏱ ᎠᎳᏍᏓᎡᎭ ᎾᏍᎩ ᎤᏓᏑᏱ ᎤᏍᎦᏎᏗ ᎠᎴ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ”ᎮᏙ ᎯᎸᎯ ᏧᏍᏆᏴᏍᏗ?,” ᏭᏛᏁ ᏫᎵᎻ. ᎤᎬᏫᏳᎯᏰᏃ ᏓᎩᏲᎯᏎᎸᎩ ᎾᏍᎩ ᎾᏍᏉ ᏥᏕᏨᏲᎯᏎᎸᎩ, ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᎯᏳ ᏒᏃᏱ ᎠᏥᎶᏄᎡᎸ, ᎦᏚ ᎤᎩᏎᎢ; ᎢᏳᏃ ᏱᎦᏥᏯᏂᎩᏍᏗᎭ ᏙᏧᏁᏅᏒ ᏯᏁᎦ ᏄᎾᎵᏍᏓᏴᏅᎾ, ᏩᎾᎢᏒᏉ ᏱᏓᏂᏩᎾᎦᎶᎩ; ᎢᎦᏛᏰᏃ ᎢᏅᎯᏳ ᏙᏧᏁᏅ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏔᎵᏁ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎬᏱᏱ ᏄᎵᏐᏃᎢ, ᎾᏍᎩ ᏠᎨᏏ ᎤᏣᎴᏍᏗ ᏓᏫᏒ ᎤᎶᏎᎢ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᏍᎫᏕᏎ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎤᏂᏍᏗᎨ ᎠᎾᏍᎪᎵᏰᏍᎨ ᏧᏃᏰᏂ. ᎦᏙ ᎠᎪᎵᏰᏍᎩ ᎠᎵᏰᎾ. “ᎤᎶᏒᏍᏗ ᎦᏓᎭ ᏗᎦᎴᏂ ᎣᏁᎯ,” ᎤᏛᏁ ᎠᎳᏂ. ᎤᎾᏅᏓᏕᏃ ᎤᏁᏨᎢ, ᏗᎬᏩᎩᏨᏗ ᎤᏣᏘ ᎣᏣᏓᏙᎵᏍᏗᏍᎬ ᎣᏥᏔᏲᎯᎲ, ᎾᏍᎩ ᏗᎦᏲᎩᎪᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᎧᏛᎢ, ᎠᎴ ᎣᎩᎧᎵᏏᏐᏗᏱ ᎾᏍᎩ ᎦᎷᎶᏥᏙᎲ ᎢᏦᎯᏳᏒᎢ. “ᎤᏙᎯᏳᎯ,” ᎤᎾᏛᏁ ᎧᏅᏂᏍᎩ. ᏈᏓᏃ ᎠᎴ ᎨᏥᏅᏏᏛ ᎤᏂᏁᏨ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᏁᎳᏅᎯ ᎣᏦᎯᏳᏗ, ᎥᏝᏃ ᏴᏫ. ᎠᏍᎩᎾᏃ ᎦᏄᎪᏫᏍᎨᎢ, ᎠᎴ ᎤᏩᎨᏫ ᎨᏎᎢ. ᎯᎠ Ꮓ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏍᎩᎾ ᎤᏄᎪᏨ ᎤᏩᎨᏫ ᎤᏬᏂᏎᎢ; ᏴᏫᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ. ”ᏓᎩᏏᎳᏛ ᏥᏥᏓᎣᎢ ᎡᎳᏗ ᏧᏫᏄᏍᏙ ᏥᏍᎪᎵ. ᏃᏗ ᏔᎵᏁ ᏫᏚᎧᎾᏁ ᏃᎴ ᎤᎪᎮ ᎪᎱᏍᏗ, ᎡᎳᏗ ᏭᏁ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ. ᎣᎦᏣᏅᏃ ᏥᏳᎯ ᎡᏟᎻᏗ ᎡᎯ ᎣᎩᎧᏙᏴᎩ, ᎡᏏᏱ ᎤᎶᏗᏢ ᎣᎩᏅᏍᏙᏗᏱ ᎣᎩᏰᎸᏒᎩ, ᎩᎶ ᎢᏳᏍᏗ, ᎡᎵᏍᏓᎦ ᏧᏙᎢᏛ, ᎹᏏᏙᏂ ᏕᏌᎶᏂᎦ ᎦᏚᎲ ᎡᎯ, ᎣᏤᎲᎩ. ᎣᎯᏍᏙᏓ ᎡᏓᏍᏗ ᎨᏎᎢ, ᎡᎵᏍᎨ ᏫᎵᎻ, ᎤᎦᏃᏩ ᎡᎳᏗ, ᏧᎵᎪ ᎤᏂᏃᏴᎵᏓ ᏌᏌ, ᏓᏓᏍᏕᏓᎵᏴᏍᎬ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏗᎴᎬ ᎢᎦ ᎡᎯ ᏅᏙ, ᎠᏂᎶᏍᎬ ᏥᏍᏆᏯ, ᎾᎥᏂ ᏄᎾᏛᏅ ᏥᏍᏕᏥ, ᎤᏐᏱ ᏄᎾᏍᏛ ᎤᏂᏃᏕᎾ, ᏚᎸᏉᏛ ᎧᏅᏂᏍᎩ, ᎠᏒᎬ ᏗᎩᏏ, ᏃᎴ ᏄᏬᏚᎲ ᏂᎦᏓ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᎬᏫᏳᎯ ᎤᏅᏎ ᎠᏯᏫᏍᎩ, ᎠᎴ ᎤᏁᏤ ᎤᏍᎪ ᎤᏂᏲᎯᏍᏗᏱ; ᎤᏪᏅᏎᏃ, ᎠᎴ ᏭᏍᎫᏕᏎ ᏗᏓᏍᏚᏗᏱ ᎠᏯᎥᎢ, ᏐᎢ ᎠᎧᏘᏏ ᎢᏣ ᎤᏬᏰᏂ ᎤᏩᏂᎦᎸ ᎤᏎᎵᏙᎸ, ᎠᎧᏍᎩᏂ ᎢᏣ ᎤᏬᏰᏂ ᎦᏌᎴᏅ ᎤᏦᏩᏛ ᏭᎸ. ᏃᏉ ᎤᏍᏆᎸ ᎣᎦᏂᎩᏍᏗ. ᎾᏍᎩᏃ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎤᎾᏛᎦᏅᎩ, ᎾᏍᎩᏰᏃ ᏠᎨᏏ ᎤᎾᏤᎵᎦᏯ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎠᏎᎵᏓᎹ ᏕᎤᏙᎥ, ᎾᏍᎩ ᎩᎬᏱ ᎦᏛᎦ. ᎠᎴ [ᏥᎩᎧᎭ] ᏄᎬᏫᏳᏌᏕᎩ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᎤᎦᏌᏯᏍᏗᏕᎩ; ᎩᎶ ᏳᏢᏣ ᏴᏫ ᎾᎥ ᏂᏚᎾᏓᎸ ᏓᎾᏓᏩᏛᎯᏙᎲ ᎠᎴᏱᎩ ᏓᏂᏨᏓᏆᏍᎬ ᎤᏢᎩ ᎠᏂᎦᏘᏗᎯᎲ. ᎠᏎᏃ ... ᎨᏍᏗ ᎫᏩᎩᎸᏙᏗ ᏱᎨᏎ ᏔᎵ ᎩᎦᏆᏘ, ᏃᎴ ᎪᎯᎢᏴ ᎦᎴᏴᏍᎨ ᏚᏄᏮ. ᎾᏍᎩᏰᏃ ᎢᏳᏩᏂᏌᏛ ᎠᏴ ᎢᏧᎳ, ᏌᏉ ᎠᏓᏅᏙ ᎬᏗ, ᎠᎦᏴᎵᎨ ᏫᎦᏰᏗᎷᏤᏗ ᏄᎵᏍᏔᏅ. ᎠᏎᎩ ᏗᏥᎶᏍᏗᏍᎩ ᎤᏘᏃᎯᏍᏗ ᏓᏳᏚᎸ. ᏌᎩᎻᏃ ᏫᏗᎨᏥᏅᏍᏔᏁᎢ ᎠᎴ ᏕᎨᏥᏂᏌᏁ ᎠᏤᎵᏍᏛ ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᏕᎸ ᏧᎫᏴᏔᏁ ᏥᏚᏩᏎᎴ ᎡᎹ ᏧᏪᏥ, ᎾᏍᎩ ᏌᎩᎻ ᎤᏙᏓ. ᏥᏌᏃ ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴ ᏗᎧᎿᎦᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ; ᏚᏳᎪᏗᏍᎪ ᏗᏓᏅᏬᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ? ᏚᎵᏂᏆᏅᏅᏃ ᎠᏍᏓᏯ ᎤᏪᎷᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏞᏍᏗ ᎯᎠ ᎤᏂᏍᎦᏅᏨ ᏱᎦᎯᏍᏔᏁᏍᏗ. ᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎸᏁᎢ. ᎠᎾᏍᎪᏏᏙᎲ ᏗᏂᏴᏐᎵ ᏃᎴ ᏙᏰ ᏓᏂᏅᏙᎬ ᏗᎬᏘ, ᎤᏂᎭᏲᎲ ᎣᏍᏓ ᎤᏂᎩᏍᏗ ᏍᎪᏯ ᎠᎴ ᏧᏂᏍᏗ ᏥᏍᏕᏥ. ᎾᏍᎩᏰᏃ ᏄᏩᏂᏌᏅᎩ ᎤᏂᏣᏛᎩ ᎠᏂᏧᏏ ᎤᎾᏓᏅᏒᎩ, ᎠᎴ ᏥᏌ ᏫᎬᏬᎯᏳᏅᎩ. ᏳᏂᎾᏗᏅᏎᏰᏃ ᎾᏍᎩ ᎯᎠ ᎠᏠᏁᏗ ᏦᎢᏧᏈ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᎤᎶᏒᏍᏗ ᏱᏚᎵᎬᏩᎳᏁᎢ, ᎠᎴ ᎤᏲᎢᏳᎾᏛᎿᏕᎩ ᏗᎬᏁᏗ ᏱᎨᏎᎢ. ᎠᎴ ᎬᏩᎪᏁᎶᎯᏎᎴᎢ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎦᏙᏃ Ꮭ ᏱᏦᎵᎦ ᏥᏬᏂᏍᎬᎢ? ᏅᏗᎦᎵᏍᏙᏗᏍᎩᏂ ᏥᏁᎬ ᏰᎵ ᎨᏣᏛᎪᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎾᏍᎩ Ꮎ ᏧᏃᎮᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎤᏃᎮᎸᎯ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᎪᎲᎢ. ᏂᎯᏍᎩᏂ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏗ ᏰᏣᏕᎶᏆᎡᎸ ᎦᎶᏁᏛ, ᎢᏣᎵᎮᎵᎨᏍᏗ ᎠᎴ ᎤᏣᏔᏅᎯ ᎣᏍᏛ ᎢᏣᏓᏅᏖᏍᏗ, ᎤᏣᏘᏰᏃ ᎡᏣᎫᏴᎡᏗ ᎦᎸᎳᏗ; ᎾᏍᎩᏯᏰᏃ ᎤᏥ ᏂᏚᏅᏁᎸᎩ ᎠᎾᏙᎴᎰᏍᎩ ᎢᎬᏱ ᏥᏂᎨᏤᏅᎡᎸ. ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂ ᎨᏴ ᏗᎨᏥᏅᏩᏅᎯ ᎤᏂᏲ ᏗᏓᏅᏙ ᎬᏩᎾᏕᏯᏙᏗᏍᎬ ᎠᎴ ᏚᏂᏢᎬᎢ, ᎾᏍᎩ ᎺᎵ ᎹᎦᏕᎵ ᎡᎯ ᏣᏃᏎᎰᎢ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎠᏂᏍᎩᎾ ᎬᏩᏄᎪᏤᎸᎯ, ᎭᏙᏯᎯᏗᏍᎬ ᏕᎯᏅᏫᏍᎬᎢ ᎠᎴ ᎤᏰᎸᏛᎢ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏅᏗᏍᎬ ᏕᎤᏙᎥ ᏥᏌ ᎾᏍᎦᏅᎾ ᏤᏥ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᎡᎵᎦ, ᎨᏨᏲᎢᏳᏗ ᎨᏒ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎤᎬᏩᎵ. ᏰᎵᏃ ᎤᏬᎯᏨ ᎠᏂᏧᏏ ᎤᏂᏃᎮᎴ ᎤᏂᎯᏍᏗᏱ. ᎬᏂᏳᏉᏃ ᎬᏩᏘᏃᎮᎴ ᎠᏍᎦᏯ ᎤᏢᎩ ᎤᎸᏓᎸᎥᏍᎩ ᎦᏅᎨ ᎠᏤᏍᏙᎩᎯ; ᏥᏌᏃ ᎤᏙᎴᎰᏒ ᎠᏃᎯᏳᎲᏍᎬᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ; ᎠᏇᏥ, ᎤᎦᎵᏍᏘᏳᏉ ᎭᏓᏅᏓᏓ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ. ᏍᎪᎯ ᎢᏳᏕᏘᏴᏓ. ᎠᎴ ᏥᏌ ᎧᏁᏉᏥᏎ ᎠᎦᏔᎿᎢᏳ ᎨᏒ ᎠᎴ ᎠᏛᏍᎬᎢ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎴ ᏴᏫ ᎬᏩᎨᏳᎯᏳ ᎨᏒᎢ. ᎠᎴ ᎯᎠ ᏄᏪᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᎴ ᎠᏜᏫᏍᏗᏍᎨᏍᏗ ᎤᏓᎵᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏂᏔᎵ ᏌᏉᏉ ᎤᏂᏇᏓᎸᎢ? “ᏃᏉᏗ ᏫᎵᎻ ᎧᏃᎮᎭ!” ᎪᎯᎩ ᏂᎫᏩᏪᏓ ᎨᏎᎢ ᏤᎩᏏᏂ, ᏭᏕᎵᎬ ᏫᏚᏩᎪᏗ ᏂᎦᏓ ᎠᏂᏴᏫᏯ. ᎢᏧᎳ ᏙᏍᏔᎧᎾᏅ ᎦᏚ ᏗᎦᏌᏆᎸ ᎭᏫᏯ ᏗᎨᎵᏍᎩ, ᎦᏚ ᏧᎦᎾᏍᏓ ᎠᏓᏴᏍᏕᏍᎩ ᏗᏑᏱ, ᏒᎦᏔ ᏃᎴ ᏆᎷᏌ ᏗᎦᏓᏫᏔᏅ ᏗᏑᏰᏛ. ᎠᏦᏴ ᏭᎷᏤ ᏫᎵᎻ ᎤᏕᎶᎰᏎ ᏧᏳᎪᏗ ᏄᏪᏒ ᏌᏌ-- ᏐᏉ ᎠᏯᏖᎾ ᎢᏳᏛᏅᏓᎩᏓ ᎨᏎ. ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏞᏍᏗ ᎩᎶ ᏯᏆᏕᏍᏙᏔᏁᏍᏗ; ᏥᏰᎸᏰᏃ ᏓᎩᏁᎸᎭ ᎠᏐᎴᎰᎯᏍᏙᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᏥᏯᏤᎵ ᎨᏒᎢ. ᎠᎴ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ, ᎾᏍᎩᏃ ᏥᏌ ᏕᎯᏲᎥᎭ, ᏧᏤᎵᏰᏃ ᏴᏫ ᏙᏛᏍᏕᎸᎯ ᏙᏓᎫᏓᎴᏏ ᎤᏂᏍᎦᏅᏨᎢ. ᎤᏁᎫᏥᏓ, ᏧᎦᎸᏓ ᏃᎴ ᎩᎦ ᎠᏗᏔᏍᎩ ᏌᎳᏓ---ᏄᏓᎴᏒ ᎣᏍᏓ ᏯᎩᏰᎸᎲᎾ. ᎤᏒᏙᏂ, ᎠᏎᏍᎩᏂ ᎠᏆᏍᎦᏱᏓᏃ ᎨᏒ. ᎠᏆᏍᎦᏰᎾ ᏥᎨᎲ ᎠᏎᏍᎩᏂ, Ꮓ, ᏲᎵᎪ, ᎩᎶ… ᎠᏍᎩᎾᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᎯᏁᎩ ᎯᎠ ᏅᏯ ᎦᏚ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏂᏆᎵᏏᏃ ᎤᎾᏙᎴᎰᏒ, ᎯᎠ ᏂᏚ ᏂᏪᏎᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎦᏙᏃ ᏗᏤᏲᎲᏍᎩ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎢᏧᎳᎭ ᎢᎠᎾᎵᏍᏓᏴᎲᏍᎦ? ᎡᎳᏆᏗ ᏫᎵᎻ ᎤᏔᏪᏙᏁ. ᎠᏏᏉᏃ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎨᏎ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎾᎵᎮᎵᎬᎢ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᎵᏍᏓᏴᏗᏍᎪ ᎠᏂ ᎢᏥᎭ? ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏚᏂᏘᎴ ᏧᏂᎾᏫᏱ, ᎠᎴ ᏧᏂᎯᏍᏗᏱ ᎤᏂᏱᎵᏙᎴᎢ. ᎾᏍᎩᏃ ᎠᏏᏴᏫ ᎨᏒ ᏧᎾᏓᎴᏁᎢ ᎠᎴ ᎾᏍᎩ ᎤᏲᎱᏒᎯᏉ ᎾᏍᎩᏯ ᎨᏒᎢ, ᏃᏈᏏ ᎦᎸᎶ ᏣᏂᎧᎳ ᏥᏄᏂᏧᏈᏍᏗ ᎢᏳᏂᏧᏈᏍᏗ, ᎠᎴ ᏃᏳ ᎠᎺᏉᎯ ᎤᏣᏘ ᏥᎦᎳᎨᏴ ᎬᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ ᏥᎩ ᎢᏳᏂᏧᏈᏍᏗ. ᎠᎦᏍᎦᏃᎶᏍᎦ, ᏧᏳᎪᏗ ᏯᎩᏃᎮᎳ. ᎠᏎᏃ ᏆᎾᎥᎢ ᏄᏍᏛᎢ ᎤᏬᏰᏂ ᏍᎩᏴᏃ ᎯᎠ ᎠᏂᏃᏟᏙᎯ ᏰᎵ ᎤᏂᏲᏍᏙᏗ ᎨᏒ ᎯᎠ ᎤᏐᏅᎢ ᏍᎩᎵ. ᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏨᎪᎥᎩ ᏗᎧᎸᎬ ᎢᏗᏢ ᏧᏳᎵᎾᎳᏓᏩᏗᏒᎩ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏓᏰᎸᏙᏗ ᎨᏒ ᎦᏁᎲᎩ; ᎠᎴ ᎠᏍᏓᏯ ᏚᎵᏍᏓᏁᎸᎩ ᏅᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᎨᏥᏁᎸᎯ ᏥᎨᏎ ᎪᎱᏍᏗ ᎤᏅᏁᏗᏱ ᎡᎶᎯ ᎠᎴ ᎠᎺᏉᎯ, ᎢᎦᏛᏃ ᎤᎾᎴᏅᎮ ᏕᎬᏩᎵᏥᏍᏆᏍᎨᎢ, ᎠᎴ ᎤᎧᏛ ᎬᏭᏢᏁᎮᎢ, ᎠᎴ ᎠᏍᏈᏅ ᎨᎬᏩᏂᏗᏍᎨᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎮᎢ, ᎭᏙᎴᎰᎯ; ᎠᎴ ᎨᏥᏅᏏᏓᏍᏗ ᏕᎬᏩᏂᎮᎢ. ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎤᏅᏏᏙᎯ ᎦᎷᏨᎭ ᎤᏩᏛᎲ ᎾᏍᎩ ᎾᏛᏁᎲᎢ. “ᎠᏯᏛ ᎡᎵᏊ ᏯᏆᎾᏔ,” ᎤᏛᏁ ᏩᎭᏯ. “ᏗᎨᏏ.” ᎾᎪᏔᏅ-ᎾᏃ ᎦᏚ ᎠᎩᏍᏗᏱ ᎤᏍᏆᎸᎯᏗᏎᎢ, ᎾᏍᎩ ᎧᏃᎯᏰᏃ ᏗᎵᏍᏓᏴᏗᏱ ᏥᏚᏙᎠ. ᏒᏃᏱ ᎠᏍᏆᎶᎦ, ᎿᏉ ᎤᎩᏨᏂᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏛᎦ ᎤᎵᏏᎬ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎢᏓᏄᏬᏍᏓ ᎠᎵᏍᎦᏍᏙᏙ ᎢᎦ-ᎦᏛ ᎡᎯ. ᎢᎸᎯᏳᏰᏃ ᏧᎾᏄᎪᏤ ᏚᏓᏏ ᎩᎶ ᏧᏤᎸᏎᎢ, ᎠᏂᏍᎦᏯ ᏅᎩᏧᏈ ᎢᏴᏛ ᎢᏯᏂᏛ ᏥᎬᏩᎵᎪᏁᎴᎢ, ᎾᏍᎩ ᏣᏥᎴᎢ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎬᏬᎯᏳᏅᎯ ᏧᎾᏗᎦᎴᏲᏤ ᎠᎴ ᏥᏫᎬᏩᏂᏲᏙᎴᏉ. ᎦᏚᏏᎢᏰᏛ ᎠᏓᎾᏅ, ᏍᎪᏁ ᎨᏴ, ᎠᏍᎩᏗᏨ ᏗᏥᎶᏓ ᎢᏳᏍᏗ ᏄᏍᏛ. ᎤᏙᎰᎯᏍᏗ ᎨᏎ ᏍᎩᎾᎾ ᏱᏄᎾᏛᏁᎸᎾ ᎨᏒ, ᎡᏍᎦᏉ ᏄᎾᏛᏁᎸ Burr ᏃᎴ Hamilton ᎤᏪᏘ ᎤᏂᏃᎮᎸ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏦᏏᏏᏍᎩ! ᎢᏥᏴᏫᏛᎲᏰᏃ ᎠᏍᏚᎢᏍᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎥᏝᏰᏃ ᎢᏨᏒ ᏱᏥᏴᎸ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏂᏴᎯᎯ ᏕᏥᏲᏍᏙᏓᏁᎸ. ᎣᏍᏛ ᏴᏫ ᎣᏍᏛ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ ᎣᏍᏛ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎪᎢ; ᎤᏲᏃ ᏴᏫ ᎤᏲ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ ᎤᏲᎨᏒ ᎦᎾᏄᎪᏫᏍᎪᎢ; ᎤᏣᏛᏰᏃ ᎤᎾᏫ ᎤᏪᎲ ᎠᎰᎵ ᎧᏁᎪᎢ. ᏥᏯᏦᏨ ᎨᎵ. ᎬᏂᏳᏉᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎴᏂᎴ ᎦᏅᎬᎢ, ᎢᎦᏃ ᎤᏙᏤ ᏗᏓᏍᏚᏗᏱ; ᎤᏩᏂᎸᏃ ᏈᏓ ᎠᏍᏆᎨᏂ, ᏕᎤᎴᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏔᎴᎲᎦ ᏞᎩᏳ. ᏧᏓᏕᏒᏛᏃ ᏚᏓᏕᏛᏃ ᏚᏙᎠᏎ ᏧᏬᏰᏂ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎵᏏ ᎤᏛᎦᏅ ᎺᎵ ᎤᏲᎵᎲᎢ, ᎠᏲᎵ ᎦᏁᎵᏒ ᎤᎵᏖᎸᏁᎢ; ᎠᎴ ᎵᏏ ᎤᎧᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, “Ꭷ ᎯᏍᏕᎾᏃ,” ᎤᏛᏁ. ᏗᏂᏅᎪᎢ ᏕᎷᎨ ᏧᎵᏑᏫᏓ ᏂᏚᎵᏍᏔᏁ ᏃᎴ ᎩᎦᎨ ᏧᎵᏑᏫᏓ ᏂᏚᎵᏍᏔᏁᎢ. ᎪᎯᏳᏙᏗ ᎦᏓ ᎾᏅᏁᎲ ᏃᏉ. ᎾᏍᎩ ᎯᎠ ᏂᎦᏗᏳ ᏥᏌ ᏚᏬᏁᏔᏅᎩ ᎤᏂᏣᏘ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᏂᏓᏟᎶᏍᏓᏁᎲᎾᏃ ᎨᏒ ᎥᏝ ᏱᏚᏬᏁᏔᏁᎢ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎦᏪᎳ, ᏓᏥᏛᏔᏂ ᎠᏂᏏᎾᏒ ᎠᏂᏏᎾᏌᏂ, ᎠᎴ ᎠᏎᏉ ᏅᏓᎦᏥᏴᏁᎵ ᎠᏁᏯᏔᎯ ᎠᏁᏯᏔᎲᎢ. ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᎴᎢ, ᏣᎬᏫᏳᎯ, ᎤᏁᎳᎩ ᎮᎳ ᎪᎯ ᎾᏍᏉ ᏧᏕᏘᏴᏌᏗ, ᎬᏂ ᎦᏍᎪᏏᏙᎸᎭ, ᎠᎴ ᎣᏍᏛ ᎦᏓ ᏥᏅᎭ. ᎠᏎᏃ ᎠᏂᏧᏏ ᎠᏂᏁᎬ ᎾᏍᎩ ᎤᏂᏐᏅᏤᎸ, ᎠᏎ ᏏᏐᎢ ᏩᎩᎲᏍᏙᏗ ᎾᏆᎵᏍᏓᏁᎸᎩ; ᎥᏝᏍᎩᏂᏃᏅ ᎪᎱᏍᏗ ᏯᎩᎮᎢ ᎦᏥᏳᎢᏍᏙᏗ ᏗᏆᏤᎵᎦ ᏴᏫ. ᎨᏍᏗ ᎩᎳᏈᏴ ᏱᏚᏭᏔᎩᏌ, ᎤᎵᏍᏔᏴᏃᎾ ᎩᎳ. ᎠᏇᎵᏒ ᏐᏉ ᎢᎧᏁᏨ ᏳᏁᏤ, ᏯᏋᎨᏫᏎ ᏂᎦᏓ ᏃᎴ ᎬᎩᏍᏆᏂᎪᏔᏅ ᏥᏧᏣ ᏥᎨᏒ, ᎤᏆᏓᎩᏅᏓ ᎨᏎ, ᎢᏣᏉ ᏱᏥᏍᏔᏩᏛᏎ. ᎾᏍᎩᏃ ᏄᏪᏒ ᏚᏰᎵᎯᏍᏔᏅᎩ ᏓᏂᎳᏫᎥᎢ. ᎭᏂ, ᎤᏂᎦᎵᏴᎲᎢ ᎠᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎠᏓᏒᎩ ᎢᏳᏂᏍᏗ ᏃᎴ ᏒᏗᏩᏟ ᎤᎾᏓᏓᏍᎬ ᎣᏁᎯ,ᎠᎦᏗᏓ ᎦᎳᎨᏰ ᏧᏪᏘ ᎫᎦ, ᏔᎷᎩᏍᎩ ᏧᏏᏩ, ᏗᎦᏓᎭ ᏗᎿᏬ, ᏔᎷᎩᏍᎩ ᏧᏲᏨ, ᎤᏁᏍᏔᎳ ᏧᏲᏨ, ᏗᎦᎯᏓᏍᏙᏗ ᏧᏲᏨ, ᎦᏂᏏ ᏗᏒᏗ ᏧᏲᏨ, ᏧᎵᏬᏨ ᎠᎾᎦᎵᏍᎩ, ᏧᏪᏘ ᎪᏪᎵ ᏗᎪᎵᏰᏗ, ᎡᏓᏍᏗ ᏗᎦᏅᎦᎶᏙᏗ, ᏧᏤᏌᏗ ᏗᏑᎶ, ᏧᎦᏣᏅᎪᏥᏓ ᏴᎩ, ᏧᏔᎸᎩᏓ ᏔᎷᎩᏍᎩ ᏗᎪᏱᏂᏓᏍᏗ, ᏧᏅᎨᏫᏒ ᏗᏍᏚᏙᏗ ᏃᎴ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏂᎨᏒᎾ ᏧᏓᎴᏅᏓ, ᎤᏓᏐᏯᏍᏕᎢ ᎤᏅᏗ ᎤᏁᏍᏔᎵ ᎪᏒᏙᏗ ᎦᏗᏆᎸᏕᏴᏍᏙᏗ. ᎤᏲ ᎢᏴᏉ ᏚᏅᏓᏒ, ᏚᎨᏓᎵᏴ ᏃᎴ ᎭᏫᏂ ᏫᎦᎶᎯᏍᏗ, ᏃᎴ ᎦᎸᎳᏗ ᏚᏍᏔᎦᏢ ᏫᏗᎦᎶᎣᏍᎩ ᏅᏲᎯ ᎠᎹ ᏕᎨᏴ. ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎠᎯᏗᏳ? ᏥᎪ ᎯᎠ ᏱᎾᎦᏪᏎ ᎤᎸᏓᎸᎥᏍᎩ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ; ᎯᎠᎨ ᏱᎾᎦᏪᎠ, ᏔᎴᎲᎦ, ᎠᎴ ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᎮᏓ? ᏩᎩᏠᏩ ᎦᎸᎳᏗ!” ᎡᎳᏗ ᏭᏭᏓᎸᏁ ᎠᏍᏓ. ᎿᏉᏃ ᎤᎾᎵᏍᏓᏴᏃᏅ, ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ ᏌᏩᏂ ᏈᏓ; ᏌᏩᏂ, ᏦᎾ ᎤᏪᏥ, ᏂᎯ ᎤᏟ ᏂᏍᎩᎨᏳᎭ ᎡᏍᎦᏉ ᎯᎠ? ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᎥ, ᏣᎬᏫᏳᎯ, ᎯᎦᏔᎭ ᎬᎨᏳᎢᏳ ᎨᏒᎢ. ᎯᎠ ᏄᏪᏎᎸᎩ; ᎨᎮᎶᎮᏍᏗ ᏗᏆᏤᎵᎦ ᎤᏂᏃᏕᎾ ᎠᏂᎩᎾ. ᎣᏏᏳ ᎢᏥᏰᎸᎯ ᎪᎱᏍᏗ ᎢᏣᏛᏁᎲ, ᎤᎬᏫᏳᎯ ᏥᏁᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ, ᎥᏝᏃ ᏴᏫᏉ ᏥᏂᏕᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ; ᎠᎦᏙᎥᎯᏍᏗᏰᏃ ᎨᏒ ᎠᏂ ᎡᎶᎯ ᎡᎯ ᎠᎵᏍᎦᏁᏛᏉ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᏕᎦᏂᏱᎭ ᎠᏂᎦᏔᎿᎢ ᎬᏗᎭ ᎤᏅᏒ ᎠᏂᏏᎾᏌᏅᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏚᏃᏣᎶᏥᏙᎸᎢ ᎾᎿ ᏂᎬᎾᏛ ᏚᏰᎵᏏᏙᎸᎩ. ᎯᎠᏃ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎦᏅᏏᏓᏍᏗ ᏙᏱᏗᏢ ᏧᎵᏏᎬ ᏪᏣᏓᎤᎦ; ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ. ᎢᏳᏃ ᎠᎾᎵᏅᏟ ᎯᎠ ᎾᏍᎩ ᏱᎩᏯᏅᏓᏗᏍᏔᏅ, ᎰᏍᏛ ᎨᏎᏍᏗ ᎡᏣᏅᏏᏓᏍᏗ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎡᏤᎳᏍᏔᏅᎯ ᎨᏎᏍᏗ ᎧᏃᎮᏛ ᎪᎯᏳᏗ ᎨᏒ ᏥᎧᏃᎮᎭ, ᎠᎴ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎦᏳᎳ ᏗᏣᏂᏴᏛ ᏥᎩ. ᏰᎵ ᎠᏓᏅᏖᏍᎬ ᏲᎾ ᎣᏍᏓ ᎦᏯᎩᏍᏗ ᏱᎩ ᏃᏉ. ᎠᏆᎧᏛ ᎠᏆᏒᏂᎸ, ᏄᏍᏛ ᏤᏣᎧᏃᏗ ᎠᏆᏚᎵ ᎬᏯᏅᏓᏗᏍᏘ, ᎠᏎ ᏎᎦᏉ ᏱᎩ ᎤᏛᏅ. ᏃᏉ ᎤᏍᏆᎸ ᏧᏪᏥ ᏗᎦᎶᏙᏗ ᎠᏋᏗ ᏃᎴ ᎧᎵ ᏗᎩᎶᏙᏗ ᏧᏪᏥ.” ᎠᎴ ᎾᏍᎩ ᎬᏩᎷᏤᎸᎩ ᏈᎵᎩ, ᏇᏣᏱᏗ ᎦᏚᎲ ᎨᎵᎵ ᎡᎯ, ᎠᎴ ᎬᏩᏔᏲᏎᎸᎩ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎣᎦᏚᎵᎭ ᎣᏥᎪᏩᏛᏗᏱ ᏥᏌ. ᎥᏝᏰᏃ ᏩᎦ ᏧᎾᎪᏅᏍᏓᎵ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᎩᎬ ᏰᎵ ᎬᏩᏂᎲᏍᏗ ᏱᎨᏎ ᎠᏍᎦᏂ ᎨᏒᎢ. ᏂᎯ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏁᏥ, ᎠᎴ ᎾᏍᏉ ᏧᏪᏥ ᎠᏚᎢᏍᏛᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᏚᏚᎢᏓᏁᎸᎢ, ᎯᎠ ᏥᏄᏪᏎᎴ ᎡᏆᎭᎻ; ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏄᎾᏓᎴᏒ ᏴᏫ ᎡᎶᎯ ᎠᏁᎯ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ. “ᎤᏙᎯᏳᎭᏧ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ. ᎤᎵᏍᎫᏪ. ᏍᏓᏯ ᎤᏩᏇᏅᏔᏁᎢ ᎣᏍᏓᏓᏤᎵ, ᎫᏩᎵᏖᎸᎮᏗ ᏱᎨᏒᎾ. ᎦᎶᎾᏍᏗᎭ ᎤᏙᎴᏋ ᏓᎩᏁᎵ: ᎠᏲᏟ ᏥᏕᎧᏃᎮᏍᎪ ᎤᏕᎳᏗ ᏂᏚᎬᏅ ᎢᏳᏍᏗ ᏱᎩᏬᏂᏌ, ᎣᏏᏉ ᏱᏂᏗᏫ. ᎤᎴᏫᏍᏔᏅ, ᏥᏔᎦ ᏚᏪᏝᎸ ᎠᎬᏱ ᏯᎦᏘᎾᏫᏗᏍᎬᎾ. ᎠᏓᏅᏙ ᏱᎰᏩ ᎤᏤᎵ ᏔᎵ ᎠᏆᏛᏓᏁᎵᏕᎦ ᏅᏗᎦᎵᏍᏙᏗ ᏣᎩᎶᏁᎥ ᎦᏥᏯᎵᏥᎣᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ; ᏗᎩᏅᏒ ᏗᎦᏥᏅᏬᏗᏱ ᎤᏲ ᎤᎾᏓᏅᏔᏩᏕᎩ, ᎦᏥᏃᏁᏗᏱ ᎠᏂᏴᎩ ᎬᏩᎾᏚᏓᎴᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏂᎨᏫ ᎬᏩᏂᎪᏩᏛᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎦᏥᏯᎪᏗᏱ ᏗᎨᏥᏂᏆᎶᏔᏅᎯ, ᎿᏉᏃ ᎦᎸᎶᎢ ᏓᎦᎾᏄᎪᏥ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵ ᎤᏰᎸᏛᎢ, ᎠᎴ ᎿᏉ ᏂᎦᏛ ᏓᏂᎳᏍᏓᎸ ᎡᎶᎯ ᏙᏛᏂᏴᎳᏏ, ᎠᎴ ᏛᏂᎪᎯ ᏴᏫ ᎤᏪᏥ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸ ᎦᎸᎶᎢ, ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏕᏍᏗ. ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᎠᎴ ᏗᎩᏙᏓ, ᎢᏣᏛᏓᏍᏓ ᎯᎠ ᎠᏆᎵᏍᏕᎸᏙᏗ ᎿᏉ ᏨᏓᏥᏬᏂᏏ. ᎠᎴᏬ, ᏱᎰᏩ ᎠᎦᏔᎭ ᎠᎾᏓᏅᏖᏍᎬ ᎠᏂᎦᏔᎿᎢ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎨᏒᎢ. ᏚᏳᎪᏛ ᎨᏒᎢ, ᎡᏙᏙᏱ ᏫᏥᎦᏛᎢ, ᎠᎴ ᎿᏉ ᏂᏍᎩᎪᏩᏘᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ; ᎠᎴ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᏙᏗᎧᏅᎢ, ᎥᏝ ᎠᎴ ᎤᏗᏔᏍᏗ ᏱᎨᏎᏍᏗ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᎴ ᎠᏓᏴᏍᏕᏍᏗᏍᎩ; ᎠᎴ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎤᏥ ᎤᎾᏅᎪᏫᏒ ᎤᏓᎬᏩᏓᎴᏅᏛ. ᎠᏎᏃ ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎠᎧᎵᎢ ᎤᏍᏆᎸᎲᎢ, ᎤᏁᎳᏅᎯ ᏧᏅᏎ ᎤᏪᏥ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏎᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎤᏓᏄᏴᏕᎢ, ᎬᏂᏳᏉ ᎾᏍᏉ ᏥᏳᏧᏛᎾ ᏤᏉᎯᏳᏍᎩᏂᏃᏅ ᎠᎴ ᎤᏍᎦᏎᏗ ᎤᏃᎴ ᏕᎦᏂᏙᎰᎢ, ᎠᏎᏃ ᏓᏂᎦᏔᎲᏏᏙᎰ ᎠᏅᏘᏍᎪ ᎤᏍᏗᎩᏳ ᎦᏌᏛᏍᏗ ᎾᎿᏉ ᎢᏗᏢ ᎤᏚᎸ ᎦᏌᏛᏍᎩ. ᎣᏍᏓ ᏂᎦᎵᏍᏗᏍᎨ ᎠᏓ ᎬᏗ ᎠᏥᏲᏓᎩᏍᎬ ᎦᏐᎯᎢ. ᎧᏃᎮᏓ ᎠᏉᏪᎳᏅ ᏓᎩᏏᎳᏛ, ᏥᎸᏉᏗᏍᎬ ᏫᎵᎻ, ᎠᏂᎩ. ᎠᏎ ᏒᏃᏱ ᎠᏰᎵ ᏱᎩ ᎠᏎ ᎪᎱᏍᏗ ᎠᎵᏖᎸᎮᏍᎪ. ᏓᎻ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎥᏝ ᏲᏥᎦᏔᎭ ᏫᎦᏛᎢ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏲᏥᎦᏔᎭ ᏫᎦᏅᏅᎢ. ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎢᏣᏖᏆᎶᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᏕᏥᎧᎿᏩᏗᏒᎢ, ᎢᎬᏱᏱ ᎢᎦ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ; ᎤᏣᏘᏃ ᎤᏲᎢᏳ ᎤᏂᏰᎸᏅᎩ, ᎠᎴ ᎤᎾᎴᏅᎲᎩ ᎠᏂᏏᏴᏫᎭ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏥᎪ ᎠᏴ? ᎾᏍᎩᏃ ᎤᎪᎲ ᏈᏓ ᎤᎦᎾᏬᏍᎬᎢ, ᏚᎧᎿᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᎾᏍᏉ ᏥᏍᏕᏙᎲᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ. ᏕᏣᏓᏲᎵᎮᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏗᏓᏔᏪᏙᎥᏍᏗ ᎨᏒᎢ. ᏔᎵᏁᏃ ᏅᏩᏓᎴ ᎤᏅᏎᎢ; ᎠᎴ ᎾᏍᎩ ᎤᏂᎴᎢ; ᎠᎴ ᎤᏂᏣᏖ ᏅᏩᎾᏓᎴᎢ; ᎢᎦᏛ ᏓᏂᎵᎥᏂᎮᎢ, ᎢᎦᏛᏃ ᏓᏂᎯᎮᎢ. ᏚᏁᏤᎴᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎯᎠ ᏥᏂᏣᏛᏅ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎠᎴ ᏩᎦ ᏳᎸᏤ-Ꮈ ᎠᏔᎴᏒ ᎥᏝ ᎩᎳᏉ ᎢᏴᏛ ᏱᏮᎦᎳᎩ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ? ᎾᏍᎩ ᎤᏪᏥ ᎠᎩᎾᏄᎪᏫᏎᏗᏱ, ᎾᏍᎩ ᎠᏴ ᎦᎵᏥᏙᎲᏍᎬ ᎬᏂᎨᏒ ᎢᏥᏴᏁᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ; ᎩᎳᏉ ᎢᏴᏛ, ᎥᏝ ᎤᏂᏇᏓᎵ ᎠᎴ ᎩᎬ ᎤᏂᏁᎯ ᏱᏗᎦᏥᏯᏁᎶᏔᏁᎢ; ᎠᏲᎵᏃ ᎠᏛᏍᎨᎢ ᎠᎴ ᎧᏁᏉᎨ ᎤᎵᏂᎪᏍᎬ ᎤᏓᏅᏛᎢ, ᎠᎴ ᎢᎾᎨᏉ ᎡᎮᎢ ᎬᏂ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎸ ᎢᏏᎵ. ᎩᎶ ᏕᎦᎵᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ. ”ᎦᎴᏴᏍᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏓᏆᎴᎳ ᏭᎾᎩᎸᏁᎢ ᎤᏟᏍᏓ ᎤᏁᏅᏎ. ᎯᎦᏔᎭᎨ ᎠᎬᏱ ᎠᏰᎩ ᎨᏒ ᏍᏔᎵᎢ?” ᏥᏌᏃ ᎤᏙᎴᎰᏒ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᎢᎡᏣᏕᏯᏙᏗ ᎠᎨᏴ? ᎣᏏᏳᏰᏃ ᏚᎸᏫᏍᏓᏏ ᏥᎾᏋᎦ. ᎾᏂᎥᏰᏃ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎾᏙᎴᎰᏍᎬᎩ ᏣᏂ ᎤᎾᏄᎪᏥᎸ ᎢᏯᏍᏘ. ᏣᏂᏰᏃ ᏚᏳᎪᏛ ᏚᎸᏫᏍᏓᏁᎲ ᎢᏥᎷᏤᎸᎩ, ᎠᎴ ᎥᏝ ᏰᏦᎢᏳᏁᎢ, ᎠᏕᎸᏍᎩᏂ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᎨᏴ ᏧᎾᏤᏌᏘ ᏥᎬᏪᎯᏳᏅᎩ; ᏂᎯᏃ ᎢᏣᏙᎴᎰᏒ ᎥᏝ ᎣᏂ ᏱᏗᏥᏁᏟᏴᏎ ᏕᏣᏓᏅᏛ ᎡᏦᎢᏳᏗᏱ. ᎢᎸᏍᎩᏃ ᏫᏄᏒᎸ ᏈᎵᏏ ᎤᎷᏨᎩ, ᎤᏘᏃᎸᎩ ᎤᏓᎵᎢ ᏚᏏᎵ, ᎾᏍᎩ ᎠᏧᏏ ᎨᏒᎩ, ᎤᏓᏅᏒᎩ ᏩᏥᏯᏅᏗᏱ ᏉᎳ; ᎤᏛᎦᏁᎸᎩᏃ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᎨᏒ ᎤᎬᏩᎵ. ᏚᏓᏲᏎ ᏗᎧᏂᎨᏂ ᏣᎵᏍᏙᏂ, ᎠᎭᎾᏬ ᏗᏴᏉᎴᏴᏓ ᎾᏍᎩᏯ ᏭᏅᏤ ᎦᏙ, ᎨᏍᏗ ᏔᎵᏁ ᏳᏓᏅᏌ. ᏯᎦᏔᎲᎾ ᎢᏳᎵᏍᏔᏁᏗ ᎤᎾᏕᏘᏱᏍᎬ ᎠᏍᏆᎸᎲ; ᏯᎦᏔᎲᎾ ᎰᎻ ᏃᎴ ᏣᏄᏏ ᎠᎾᏓᏅᏖᏍᎬ ᎤᏂᎯᏍᏗ.” ᎦᏲᏟᏉ ᎤᎵᎪᎲᏍᏗ ᏄᎵᏍᏔᏅ ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ. ᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎦᏰᏥᏐᏢᏛᎢ, ᎠᎴ ᏤᏥᎩᎵᏲᎢᏍᏗᏍᎬᎢ; ᎢᎸᎯᏳᏃ ᏕᏣᎵᎪᏁᎸ ᎾᏍᎩ ᎢᎨᎬᏁᎸᎯ. ᏌᎪᏂᎨ ᏥᏍᏆ ᏧᏓᏏ ᏧᏙᎢᏓ ᎡᎭᎢ, ᎣᏍᏓ ᎤᏓᏅᏘ ᎨᏎᎢ - ᎠᏍᏕᎵᏍᎨᎢ ᎤᏥ ᎠᏛᏅᎢᏍᏗᏍᎬ ᎢᏳᏰᏃ ᏱᏙᎩᎸᏃᏗᎭ, ᎤᏁᎳᏅᎯᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎢᏳ ᎠᎴ ᏙᎯ ᏱᏙᎦᏓᏅᏔ, ᏂᎯᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᎠᏥᏅᏁᎴᏃ ᎪᏪᎵ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᎤᏬᏪᎳᏅᎯ. ᎤᏍᏚᎢᏒᏃ ᎪᏪᎵ ᎤᏩᏛᎮ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎢ; ᎾᎿᏂ ᏧᏩᎫᏔᏅᏒ ᎢᏤᏙᎸᎢ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎡᎶᎲ ᎠᏁᎯ, ᎾᏍᎩᏯ [ᎤᏚᎵᏍᎬ] ᎦᏃᎴᏍᎬ ᎡᎯ ᎡᎬᏫᏳᏌᏕᎩ, ᎾᏍᎩ ᎠᏓᏅᏙ ᎪᎯ ᎨᏒ ᏥᏚᎸᏫᏍᏓᏁ ᏚᎾᏓᏅᏛ ᎪᎯᏳᏗ ᏂᎨᏒᎾ ᎨᏒ ᏧᏪᏥ; ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏂᏥᎥ ᏂᎯ ᏙᏓᏦᏕᎵ ᎪᎯ ᏒᏃᏱ ᏥᎩ, ᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎯᎠᏰᏃ ᏂᎬᏅᎢᎪᏪᎳ, ᎠᏫ ᏗᎦᏘᏯ ᏓᏥᏴᏂᎵ, ᎤᏂᏃᏕᎾᏃ ᏛᎾᏗᎦᎴᏲᏥ. ᎾᎿᏃ ᏫᏱᎦᏣᏅ ᎤᎩᏨᏛ ᎦᏲᏏ ᏧᏳᎪᏗ ᎣᏥᏂᏒᎩ. ᎤᎩᏨᏛᏃ ᏎᎼᏏ ᏬᎩᎷᏨᎩ; ᏠᏥᎵᏯᏃ ᎣᎩᏒᎸ ᎤᎩᏨᏛ ᎹᎵᏔ ᏬᎩᎷᏨᎩ. ᏂᏚᎩᏨᏂᏒᏃ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏓᏓᏁᎳᏗᏒ ᎾᏂᏑᎵᎪᎬᎾ ᎨᏎ ᏓᎾᏕᏲᎲᏍᎨ ᎠᎴ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏩᎵ. ᎠᎴ ᎤᏣᏛ ᏄᏒᎸᎩ ᎾᏍᎩ ᎾᏛᏁᎲᎩ; ᎠᏎᏃ ᏉᎳ ᎤᏕᏯᏔᏁᎸ ᎤᎦᏔᎲᏒᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ ᎾᏍᎩ ᎠᏓᏅᏙ; ᎬᏁᏥ ᏥᏌ ᎦᎶᏁᏛ ᏕᎤᏙᎥ ᎬᏗᎭ, ᎾᏍᎩ ᎪᎱᎪᏤᏗᏱ. ᎾᎯᏳᏉᏃ ᎤᏄᎪᏨᎩ. ᎾᎥ ᎢᏗᎷᎨᏍᏗ ᎢᏛᏗᏍᎨᏍᏗ ᏄᏠᎾᏍᏛᏅ ᏗᎩᎾᏫ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎩᎾᏫ ᏤᎩᏍᏚᏞᎸᎯ ᏤᎩᏅᎦᎸᎯ ᎤᏲ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏗᏰᎸ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎹ ᏤᎪᏑᎴᏓᏁᎸᎯ. ᏗᎫᎪᏙᏗ ᎨᏒᎢ, ᎤᎬᏫᏳᎯ ᎯᎠ ᎡᎶᎯ ᎤᏤᎵᎦ ᏣᎫᎪᏓᏁᏗ ᎨᏒ ᎢᏳᏍᏗ. ᎢᏳᏃ ᏚᏩᏂᎦᎸ ᎢᎦᏛ ᏱᏗᎬᏂᎦᎴᏒ, ᏂᎯᏃ ᎢᎾᎨ-ᎮᎯ ᎣᎵᏩ ᏡᎬ ᎾᎿ ᏱᏫᏰᏣᏱᏢᏔᏅ, ᎠᎴ ᎾᏍᎩᏯ ᎤᎾᎵᏍᏕᎶᏛ ᏱᏤᎳᏗᏍᏗ ᏱᏣᎵᏍᏕᎸᏗ ᏚᎿᏍᏕᏢ ᎠᎴ ᎦᎵᏦᏅ ᎣᎵᏩ ᏡᎬᎢ; ᏤᏍᏗ ᏫᎨᏣᎸᏅ ᏱᏗᏣᏓᏟᏴᎲᎾ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏏᏉ ᎦᏪᏂᏍᎨᎢ, ᏧᎾᎸᎪᏤ, ᏧᏓᏏ, ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ, ᏓᏘᏁᎮ ᎤᏂᏣᏘ, ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏗᏂᏁᎯ, ᏅᏓᎬᏩᏂᏅᏏᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᏗᏂᎳᏫᎩ. ᎾᏍᎩᏃ ᎤᏇᏓᎵ ᏧᎾᏘᏂᏙᎯ ᎨᏒ ᎥᏝ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏱᏅᎬᎾᏛᎦ. ᎥᏝᏰᏃ ᏰᎵ ᏴᎦᏲᏣᏡᏓ ᎤᏙᎯᏳᎯ ᎨᏒᎢ, ᏲᏥᏍᏕᎸᏍᎩᏂ ᎤᏙᎯᏳᎯ ᎨᏒᎢ. “ᎤᏙᏳᎾᏏ ᏰᎵ ᏓᏓᏁᎸ ᏱᏓᏥᏍᏓᎵᎩ,” ᎤᏛᏁ. “ᏅᏓ ᏣᎧᎸᎬ ᎫᏩᏗᏛᏓ ᏲᎾ ᎤᏤᏍᏙ, ᏍᎩᏃ ᎢᏳᏍᏗ ᏏᏆ ᏧᎾᏌ ᏃᏉ. ᎣᏂᏃ ᏅᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎥᎦᏥᎪᎥᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᎡᎶᎯ ᏓᏂᏙᎬᎩ, ᏚᏂᏂᏴᏒᎩ ᎤᏃᎴ ᏅᎩ ᏂᏙᏗᎦᎶᏍᎬ ᎡᎶᎯ, ᎾᏍᎩ ᎤᏃᎸᏗᏱ ᏂᎨᏒᎾ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᏕᏡᎬᏉ. ᎾᏍᎩ ᎧᏃᎮᏛ ᎢᏥᎦᏔᎭ, ᎬᏂᎨᏒ ᏥᏄᎵᏍᏔᏅ ᏂᎬᎾᏛ ᏧᏗᏱ, ᎨᎵᎵ ᏨᏓᏳᏓᎴᏅᎲ ᏗᏓᏬᏍᏗ ᎨᏒ ᎤᎬᏩᎵᏄᎵᏥᏙᏃ ᏣᏂ-- “ᎭᏕᏬ,” ᎤᏛᏁ ᏌᎳᏓ, “ᎨᎵᎠ ᎠᏇᏅᏒ ᏱᎨᏙᎭ ᏯᏆᏁᎸᏔᎾ ᏗᎩᎷᏫᏍᏔᏁᏗ ᎦᏲᏟ.” ᏥᏌᏃ ᏚᎦᏔᎲᎡᎸ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎨᏴ ᏥᎷᏏᎵᎻ ᏧᏪᏥ, ᏞᏍᏗ ᎠᏴ ᏍᎩᏍᎪᏂᎸᎩ, ᎢᏨᏒᏍᎩᏂ ᏗᏣᏓᏍᎪᏂᎦ, ᎠᎴ ᏗᏤᏥ ᏗᏥᏍᎪᏂᎦ. ᎭᎾᎾ ᎦᏙᎨᎢ, ᎠᏓᏅᏖᏍᎨᎢ, ᎪᎱᏍᏗ ᏂᎦᏪᏍᎬ ᎤᏛᎦᏁᎢ. ᏭᏂᎷᏤᏃ, “ᎠᎭᏂ,” ᎤᏛᏁ ᏙᏯ, “ᏙᎤᏍᏗ?” ᎥᏝ ᏱᏥᏑᎵᎪᎪ [ᎤᏁᎳᏅᎯ] ᏥᏯᎵᎡᎵᏤᎲ ᏂᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ, ᏂᎯ ᎢᏨᏁᎢᏍᏗᏍᎬ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ; ᏐᏉᎯᎭ ᏕᎬᏔᎶᏍᎨ ᏃᏈᏏ. ᏚᏂᏏᏩᏍᎦ ᏃᎴ ᏚᏂᏳᏍᎩᎷᏙᎦ ᏃᎴ ᏧᎾᎭᏬᏍᏙᏗ ᏗᎦᏓᏁ ᏚᎾᎵᏍᏔᏁ, ᎠᏥᎷᏳᎸᏗ ᏓᎾᏛᎥᏍᎦ ᏓᏂᎧᎭᏲᏗ, ᎠᏎᏃ ᎤᎭᏰᏌᏛ ᏃᎴ ᏓᎦᏍᎬ ᏗᎦᏓᏁ ᏂᏕᎬᏁ, ᏃᎴ ᎤᏐᏱ ᎭᎴᏂ. ᎠᏎᏃ ᎥᏝ ᎩᎶ ᎬᏂᎨᏒ ᏳᏃᎮᏍᎨᎢ, ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᏂᎾᏰᏍᎬ ᎠᏂᏧᏏ. ᎠᏂ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎢᏛᏓ. ᎩᎶ ᎤᏬᎵᏣᏘ ᎨᏎᏍᏗ ᏩᏎᎦ ᎢᎦᎢ ᎨᏒ ᎠᎦᏎᏍᏗᏱ ᏅᎩ-ᏗᎦᏅᏎᏗ; ᏴᏫᏰᏃ ᎤᏎᏍᏗ ᎨᏒ ᎤᎬᏩᎳ; ᎠᎴ ᎾᏍᎩ ᎠᎦᏎᏍᏗ ᎨᏒ ᎯᎠ ᏂᎦᎥ, ᏑᏓᎵᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏑᏓᎵᎦᎵ. ᎠᏂ ᎯᎠ ᎢᎦᏓᎨᏳᏗ ᎨᏒ ᎤᎧᎵᏨᎯ, ᏄᎵᏍᏔᏅ Ꮎ-Ꭹ ᏂᏗᎾᏰᏍᎬᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᎾᏍᏉ ᎾᏍᎩ ᏂᎦᏍᏗ ᎠᏴ ᎠᏂ ᎡᎶᎯ. ᎾᏍᎩ ᏄᏍᏛ ᎢᎬᏱᏱ ᎢᏣᎴᏂᏙᎸ ᎤᎬᏩᎵ ᎢᏴᏛ ᎢᏨᏁᏗᏱ ᎤᏪᏘ ᏴᏫ ᎾᏍᎩ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏓᎵᏓᏍᏗ ᎠᏚᎸᏅᏗ ᎨᏒᎢ; ᎠᏂᏐᎢᏃ ᏚᏂᏂᏴᎮ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏗᎬᏩᏂᏐᏢᏔᏁᎢ, ᎠᎴ ᏚᏂᎴᎢ. ᎤᎾᏛᎦᏅᏃ ᎾᏍᎩ ᎡᎳᏪ ᎤᏅᏁᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ: ᎾᏍᏉᎧᏂ ᎤᏁᎳᏅᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏕᎤᏁᎸ ᏚᎾᏓᏅᏛ ᏧᏂᏁᏟᏴᏍᏗᏱ ᎬᏂᏛ ᏩᎵᏱᎶᎯᎯ. ᎦᎪ ᎦᏰᎪᎩ, ᎢᏳᏃ ᎾᏍᎩ ᏂᎨᏒᎾ ᏱᎩ Ꮎ ᎠᏓᏱᎯ ᏥᏌ ᎦᎶᏁᏛ ᎨᏒᎢ. ᎾᏍᎩ Ꮎ ᎦᎶᏁᏛᎠᏡᏗᏍᎩ, ᎠᏓᏱᎯ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᏪᏥ. ᎠᏎᏃ ᎦᏙ ᎠᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏬᎯᎵᏴᏍᏓᏁᎲᎢ? ᎬᏆᎵᏃᎯᏰᏗᏱ ᎾᏋᏁᎸ ᎦᎵᏉᎩ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏂᏚᎾᎵᏂᏆᏅᏁᎸᎾ ᏇᎠᎵ. ᎿᏉᏃ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᎦᏚᎲ ᎾᎥ ᎤᎷᏨ, ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎤᏲᎱᏒᎯ ᎠᏂᏄᎪᏫᏍᎨ ᎠᏂᏂᏎᎢ, ᎤᏩᏒᎯᏳ ᎤᏪᏥ ᎨᏎ ᎤᏥ, ᎠᎴ ᎾᏍᎩ ᎤᏬᏑᎶᏨᎯ ᎨᏎᎢ; ᎤᏂᏣᏖᏃ ᏴᏫ ᎦᏚᎲ ᎠᏁᎯ ᎬᏩᏍᏓᏩᏗᏎᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎣᏍᏛ ᎢᎬᏁᎰᏅᎯ ᎨᏎᎢ, ᎠᏥᎸ-ᎠᏁᎶᎯ ᏂᎪᎯᎸ ᏩᏂᏴᎯᎮ ᎢᎬᏱᏱ ᏓᏓᎯᏢ ᎦᎵᏦᏛᎢ, ᏫᏚᏂᎸᏫᏍᏓᏁᎮ [ᎤᏁᎳᏅᎯ] ᎤᏤᎵ ᎤᎬᏩᎵ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏱᏗᏓᏓᏚᎪᏓᏁᎮᏍᏗ; ᎯᎠᏍᎩᏂ ᎤᎬᏫᏳᏎᏍᏗ ᏕᏧᎪᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏓᏙᏕᏍᏗᏍᎩ ᎠᎴ ᎤᏍᏢᏂᏍᏗᏍᎩ ᎢᏥᏗᏱ ᏂᎨᏒᎾ ᎢᏣᎵᏅᏟ ᎤᎶᎯᏍᏗᏱ. ᎠᏍᏆᏗᏍᎬ, ᏙᏉ ᏓᏛᏁᎵ? ”Ꮎ ᏄᏍᏗ ᎠᏆᏤᎵ ᏩᎶᏏ!” ᎤᏛᏁ ᎡᎳᏆᏗ, ᎠᎹ ᎤᏩᏩᏙᎣᎢᏍᏗ ᎠᏯᏔᎾᎸᎢ ᏭᏩᎧᏁᎢ, ᏫᏄᏩᏁᎴ ᎤᏬᏰᏂ ᎤᎩᏍᏗ ᎨᎵᏍᎩ. ᎠᎴ ᎯᎠ ᎢᏯᏂᏪᏍᎩ, ᎦᏙ ᎤᎵᏍᏔᏅ ᎤᎷᎯᏍᏗᏱ ᎤᏚᎢᏍᏔᏅᎢ? ᎠᏂᎦᏴᎵᎨᏰᏃ ᎬᏩᏂᎵᏅᏨᎯ ᏅᏓᎬᏩᎴᏅᏛ, ᏅᏩᏍᏗᏉ ᏂᎦᎥ ᎪᎱᏍᏗ ᏥᏄᏍᏛᏉ ᏧᏓᎴᏅᎲ ᎤᏬᏢᏅᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ. ᏃᎴ ᎢᎦᏉ ᎯᏍᏗᎷᏤᏍᏗ ᎭᏂ ᏓᏆᎴᎳ, ᏂᎦᏓ ᎯᏓᎵᏍᏓᏴᏅ ᎢᎦ. ᎣᏣᎵᎡᎵᏤᎰ ᎤᏁᎳᏅᎯ ᏂᎪᎯᎸ ᏂᎯ ᏂᏥᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ, ᎢᏨᏁᎢᏍᏗᏍᎪ ᎣᏣᏓᏙᎵᏍᏗᏍᎬᎢ; ᎩᎶ ᏣᏆᏟᏃᎮᏗᏍᎬ ᎦᏢᏗ ᎠᏍᏆᎵᏍᎬ ᏫᎧᏁᎩ. ᎤᏂᏣᏘᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᏥᏌ ᎠᏙᎴᎰᏍᎩ, ᎾᏎᎵᏗ ᎡᎯ ᎨᎵᎵ ᎦᏚᎲᎢ. ᏓᏔᎴᏒ ᏚᎵᏍᏚᎩᏍᏔᏁ, ᎠᎹ ᎤᏲ ᏚᎧᎵᏤ. ᎤᏤᎵᎪᎯ ᎤᎷᏨᎩ, ᎠᏎᏃ ᏧᏤᎵ ᎥᏝ ᏱᏗᎬᏩᏓᏂᎸᏤᎢ. ᎤᎶᎩᎸᏃ ᏧᎶᏎ ᎧᏁᎬ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏥᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎡᏣᏛᏓᏍᏓᏁᎮᏍᏗ. ”ᏌᎳᏓ?” ᎤᏛᏁ ᎡᏝᏪᎯ. ᎠᎾᏓᏩᏛᎯᏙ ᏓᎾᏟᏃᎮᏗᏍᎬ, ᏭᏅᎨᏫᏎ ᏧᏂᎷᏫᏍᏓᏁᏗ ᏦᎨᏏ. ”ᎡᎵᏍᏗ ᎦᏂᎦᏔ ᎡᎹᏂᏓ ᏓᏥᏯᎵᏃᎮᏔᏂ ᏔᎵᏁ ᎯᏥᎪᎥ. ᏕᏤᎶᎮᏍᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏥᎨᏣᏓᏑᏯ, ᏕᏥᎦᏘᏰᏍᏗ, ᎥᏞᏍᏗ ᎣᏏᏳ ᏂᏥᏰᎸᏒᎾ ᎣᏏᏳᏍᎩᏂ ᎢᏥᏰᎸᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎥᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎢᏥᎬᎥᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏍᎨᏍᏗ, ᎣᏏᏳᏍᎩᏂ ᎢᏥᏰᎸᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎤᎾᏚᏓᎴ ᏧᏂᏓᏍᎩᏐᏗ ᏂᎦᏓ ᎠᏂᏴᏫᏯ ᎦᏚᏏ, ᎨᏴ ᏃᎴ ᏚᎨᏓᎵᏴ. ᏄᏍᏛ ᎠᏗᏔᏍᏗ ᎦᏳᎸ ᎤᎪᏏᏓ ᎠᎧᎭᏲᏔᏅ, ᏌᏬᏛ ᏌᎷᏱ ᏓᏳᎶᏒ ᎠᎾᎪᎲᏍᏗᏍᎪ ᎠᏂᏍᎦᏥ ᏃᎴ Irish ᎾᏍᎩᏯ ᏯᎾᏌ ᏧᎾᏗᎩᏛ ᏣᎾᎪᎲᏍᏗᏍᎪ ᎢᎪᏗ ᎢᏣ. ᏳᏍᏆᎶᏤᎸ ᎠᏛᎵᏍᎬ, ᎤᏍᎧᏃᎳ ᎠᎢᏎ, ᏂᎪᎯᎸᎾ ᎾᎨᎢᏴ ᎠᎬᏱᏣ ᏄᏛᎾᏗᏎ ᏲᎾ. ᎪᎨᏱᏨ ᎦᏙ ᏩᎾᎯ ᏱᏄᎵᏍᏔᎾ ᎦᏓᎷᎪᏗ, ᎠᏆᏤᎵ ᏏᏓᏁᎸ ᎣᏣᎴᏂᏍᎪ ᎣᏥᏫᏒᎥᏍᎬᎢ. “ᎤᏓᎸᏉᏗ ᏂᎨᏒᎾ,” ᎤᏛᏁ ᎰᎻ. ᎦᎶᏁᏛᏰᏃ ᎥᏝ ᏱᏭᏴᎸ ᎦᎸᏉᏗᏳ ᏕᎨᏒᎢ ᎩᎶ ᏧᏬᏰᏂ ᏧᏮᏔᏅᎯ ᏧᏬᏢᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏙᎯᏳᎯ (ᎦᎸᏉᏗᏳ ᎨᏒ) ᏗᏟᎶᏍᏔᏅᎯ ᎨᏒᎢ; ᎦᎸᎳᏗᏍᎩᏂ ᏂᎨᏒ ᏭᏴᎸ, ᎪᎯ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎬᏂᎨᏒ ᎢᎦᏛᏁᏗᏱ; ᎠᎴ ᎬᏂᎨᏒ ᎾᏅᏁᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏰᎵ ᏗᎨᎩᏂᏴᏗ ᎠᎴ ᏗᎨᎩᎧᎿᏩᏛᏍᏗ ᏂᎨᏒᎾ, ᎢᏗᎶᎻ ᎨᏒ ᎢᏳᏍᏗ. ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏅᏓᏳᏩᏁᎵ ᏂᎦᎥ ᎤᎿᎥᎢ. “ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎯ ᏓᎦᎶᏏ ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ.” ᏚᎧᏔᏍᏔᏁᎢ ᏫᎵᎻ. ᎾᏍᎩ ᎾᎤᏇᏓᎵ ᎤᎾᏄᎪᏫᏒᎯ ᎤᏇᏓᎵᏉ ᎨᏐᎢ; ᎾᏍᎩ ᎾᎠᏓᏅᏙ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏓᏅᏙ ᎨᏐᎢ. ᎠᎴ ᎤᏣᏛᎩ ᏓᏨᏍᏛᎩ ᎦᎸᎳᏗ ᎾᎿ ᏓᏂᎳᏫᎥᎢ. ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎠᏥᏃᎮᎸ ᎦᎪᎯᏳᏗ ᏁᏨᏁᎸᎢ; ᏆᎴᏗᏃ ᎤᏛᎦᏅ ᎨᎵᎵ ᎠᏂᏁᎢᏍᏗᏍᎬ ᎤᏛᏛᏁ, ᎨᎵᎵᏍᎪ ᎡᎯ ᎯᎠ ᎠᏍᎦᏯ, ᎤᏛᏁᎢ. ᏃᏉ ᎤᏍᏆᎸ ᏩᎶᏏ ᏃᎴ ᏥᏍᏆ ᏗᏂᏃᎩᏍᎩ ᎠᎾᎵᎮᎵᏍᏗ ᎡᎶᎯ ᏓᏳᏓᎴᏅ ᎠᏙᎯ ᏃᎴ ᏚᏑᎬ ᎠᏏ ᎡᎯ. ᎠᏎᏃ ᎦᎪ ᎯᎠ ᏥᏂᏣᏛᏅ, ᎡᏥᏅᏏᏓᏍᏗ ᏱᎦᏓᎷᎩᎭ, ᎠᎴ ᏱᎨᎶᎸᎥᏍᎦ, ᏠᎨᏏ ᏅᏓᏳᎶᏐᏅᎯ, ᎩᎳᏉ ᎢᏴᏛ ᎯᎠ ᏱᏁᏥᏪᏏ, ᎮᎾ ᏩᎵᏍᏓᏴᎲᎦ? ᎨᏍᏗ ᎠᏂᏲᏍᎩ ᏧᎾᏕᎶᏆᏍᏗ ᎤᏙᎴᏋ ᏱᎨᏎ ᏍᎩᎾᎾ ᎢᏳᏪᏍᏗ, ᎤᏩᏌ ᎤᏓᏅᏖᎸ ᏂᎦᏪᏍᎨ ᏱᏚᏁᏤᎸ, ᎣᎯᏍᏙᏓ ᏱᎬᎩᏰᎸᎾ ᎠᏂᏧᏣ ᎡᎵᏍᎨ, ᎤᏅᏌ ᎤᎾᏓᏅᏖᎸ ᎢᏳᎾᏛᏁᏗ ᎨᏥᏁᏤᎲ. ᎢᎸᎯᏢᏃ ᎦᏚᎲ ᏩᏴᎯᎲᎢ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏕᎬᏩᏠᏎᎢ, ᎢᏅ ᏧᎾᎴᏅᏁᎢ; ᎩᎳᏊ ᎢᏴᏃ, Ꮎ ᎤᎦᏔ ᏚᏩᏅᎦᏢᏅᎢ ᎠᎴ ᎤᎪᏗ ᏧᎦᎶᎦ ᏚᏛᏎᎢ. ”ᎠᎴᏃ ᎨᏍᏗ ᏲᎾ ᎤᏤᏍᏙ ᏥᏂᏕᎪᏍᏓᏯ ᏗᎦᎴᏂ ᏱᏂᏗᎪᏍᏓᏯ ᏗᏂᎴᏂ,” ᎤᏛᏁ. ᏑᎾᎴ ᏱᏄᎵᏍᏔᎾ ᎠᏂᎦᏓᏁ ᏃᎴ ᎤᎾᏣᏪᏐᎸᏍᏔᏅ ᏱᎨᏒᎾ ᎨᏐ. “ᎡᏣᏲᎮᎰ ᏣᎵᏍᏓᏴᏗ ᏔᎷᎩᏍᎩ ᎪᏱᏂᏓᏍᏗ ᎦᎶᏛ. ᎤᎵᏂᎩᏛᏯᏰᏃ ᎦᏬᏂᏍᎬ ᎬᏗᏍᎬ ᎤᏃᎯᏳᏗᏱ ᏄᏩᏁᎸᎩ ᎠᏂᏧᏏ ᏕᎦᎳᏫᎥᎢ, ᏗᎦᎸᏉᏗ ᎪᏪᎵ ᏕᎬᏗᏍᎬᎢ ᎬᏂᎨᏒ ᏂᎬᏁᎲ ᏥᏌ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ. ᎠᏂᏣᎳᎩ ᏗᎾᏘᏂᏙᎯ ᎤᎬᏫᏳ Ross ᏃᎴ ᎦᏄᎾᏓᎴᎩ, ᏱᏭᏂᎷᏣ ᏩᏏᏓᏂ ᎦᏚᎲ, ᎤᏂᏃᎮᏗ ᎠᏂᎦᏘᎴᎬ ᎨᎬᏬᎣᏙᏗ, ᎤᏂᏐᏱᏉ ᎨᏎ ᏄᏍᏛ ᏄᎾᏍᏛ ᎤᎾᏟᏂᎩᏓ. ᎠᎴ ᎬᏂᏳᏉ ᏨᎨᏫ ᎨᏎᏍᏗ, ᎠᎴ ᎨᏣᏁᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎾᏍᎩ ᎯᎠ ᏂᎦᎵᏍᏔᏅᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᏦᎯᏳᏅᎾ ᎨᏒ ᏥᏁᎬᎢ, ᎾᏍᎩ ᎠᏎ ᎢᏳᎵᏍᏙᏗ ᏥᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏍᏆᎸᎲᎭ. ᏗᏣᎳᏏᏕᏂᏃ ᏕᏣᎳᏑᎶᏕᏍᏗ ᎠᏛᏅᎢᏍᏔᏅᎯ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ; ᎯᎪ ᎢᎦ ᏓᏥᏩᏛ ᎣᎩᎾᎵᎢ.” ᎾᏍᎩᏯᏍᎩᏂ ᎾᏍᏉ ᏂᎯ, ᎢᏳᏃ ᎿᏉ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎢᏥᎪᎲᎭ, ᎢᏥᎦᏔᎮᏍᏗ ᎡᏍᎦᏂᏳ ᎨᏒᎢ, ᎦᎶᎯᏍᏗᏱᏉ ᎨᏒᎢ. ᎪᎱᏍᏗ ᏧᏂᎵᏬᏨ ᎦᏓ ᎾᏅᏁᎰᎢ. ᏧᏍᏗ ᏕᎨᏴ ᏃᎴ ᏕᎨᎵᏍᎦᎸᎲ ᏓᏆᎷᏌᏗᏍᎨ ᎠᎹ ᎦᏣᏄᎳ ᎨᏴᎢ. ᏐᎵᎹᏅᏃ ᎶᏉᎹ ᎤᏕᏁᎴᎢ; ᎶᏉᎹᏃ ᎡᏆᏯ ᎤᏕᏁᎴᎢ; ᎡᏆᏯᏃ ᎡᏏ ᎤᏕᏁᎴᎢ; ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏙᏛᎾᎴᏂ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᎠᏰᎵ ᏚᏙᏢ-ᏩᏗᏒ ᏙᏛᎾᏓᏡᏔᏂ; ᎬᏂᏳᏉ ᎠᏛ ᎾᏥᏰᎲᎾ ᎦᏁᎵᏛ ᎨᏎᏍᏗ, ᎠᎴ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ, ᎾᏍᎩᏃ ᎢᎹᏄᎡᎵ ᎠᏃᏎᎮᏍᏗ, ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎨᏒ ᎯᎠ ᏄᏍᏗ ᎦᏛᎦ, ᎤᏁᎳᏅᎯ ᎢᎨᎳᏗᏙᎭ. ᎾᏍᎩᏃ ᏥᏁᎦ ᎢᎬᏱᏱᏉ ᎨᏒᎢ, ᎠᏯᏲᏍᏗ ᎨᏒᎢ, ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒᎢ, ᏗᏅᏓᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ, ᎾᏍᎩ ᎾᏂᎥ ᏴᏫ ᎤᎬᏩᎵ, ᎣᏏᏉᏃ ᎠᏁᎵᏍᎨ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎠᏎᏃ ᎨᏍᏗ ᎤᏓᏁᏥᏴᏓ ᏱᎨᏎ ᎤᏤᏍᏗ. ”ᎨᎵᎠ ᎤᏕᏯᏙᏗ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏥᎵᎾᎠ? ᏗᏣᎴᎲᎦ ᎢᏣᏓᏙᎵᏍᏗ, ᎾᏍᎩ ᎤᏓᎴᎾᏍᏗᏱ ᎨᏒ ᏫᏥᏴᏍᏗᏱ ᏂᎨᏒᎾ. “ᏍᎩᎪᏩᏘᎭᏧ ᏃᏉ?” ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏧᏄᏬᏉ ᎾᏍᏉ ᏱᏓᏆᏒᏂᎸ, ᏯᏆᏗᏫ. ᎠᏂᎨᏴᏃ ᎾᏍᏉ ᎨᎵᎵ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ, ᎣᏂ ᎠᎾᎵᏍᏓᏩᏗᏎᎢ, ᎠᎴ ᎤᏂᎪᎮ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᏂᎬᏅ ᎤᏂᏅᏅ ᎠᏰᎸᎢ. ᎠᏦᏴ ᏙᏰ ᏫᏚᎧᎾᏁ ᏫᎵᎻ, ᏌᏌ ᏗᎦᏙᎨ. ᎦᏙᏃ ᏱᏟᎲᎾ ᏥᎩ, ᏫᎵᎻ?” ᏃᎴ ᎠᎧᏔᎮᎢ ᎤᏩᏙᎯᏴᏓ ᎨᏒ ᏧᏤᎵ ᏗᏂᏲᏟ. ᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴᏉ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ. ᎠᎴ ᎿᏉ ᎤᎩᏨᏅ ᎤᏂᎨᏎ ᎠᎴ ᎢᎾᎨ ᏭᎶᏎᎢ; ᎤᏂᏣᏘᏃ ᎬᏩᏲᎴᎢ, ᎠᎴ ᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎬᏩᏗᎩᏯᏍᎨᎢ, ᏞᏍᏗ ᏍᎩᏯᏓᏅᎡᎸᎩ ᎬᏬᏎᎮᎢ. ᎯᎠᏰᏃ ᏂᎦᏛᎭ ᎦᎸᏉᏗ ᎪᏪᎵ; ᏞᏍᏗ ᏱᏲᏴᏑᎳᏁᏍᏗ ᏩᎦ ᎠᎦᏔᏙᎥᏗᏍᎩ; ᎠᎴ, ᎪᎱᏍᏗ ᎠᏛᏁᎯ ᎠᎦᎫᏴᎡᏗ ᎨᏐ ᏚᎸᏫᏍᏓᏁᎸᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎥᏝ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᎤᏚᎵᏍᎬ ᏱᏅᏧᎵᏍᏙᏔᏁᎢ, ᎦᏃᏍᎩᏍᎩᏍᎩᏂ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎠᎴ ᏕᎦᎶᏗ ᎦᏁᎲᎢ ᎠᎴ ᎾᎿ ᎦᎳᏅᎯ ᎦᏃᏍᎩᏍᎬᎢ. ᎾᏃ ᏨᏓᏍᎩᏲᏪᎳᏁᎸ ᎤᎬᏩᎵ; ᎣᏏᏳ ᎠᏍᎦᏯ ᏄᏃᏟᏍᏔᏅᎾ ᏱᎩ ᎠᎨᏴ. “ᏃᏗ ᏙᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎢ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᏦᎯᏍᏙᏗ ᏚᏂᎾᎥ ᏧᎾᎿᏬ ᏚᎾᎿᏬᎥᏎ. ᎾᏂᏃᏍᎩᏍᎬᎾ, ᎬᏂᎨᏒᏍᎩᏂ ᎾᏅᏁᎮᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏒᎢ; ᎾᏍᎩ ᎤᏃᏚᎢᏍᏙᏗᏱ ᏂᎦᎥᏉ ᎾᎾᏛᏁᎲ ᎾᏍᎩ ᏗᏕᏲᏅᎯ ᎨᏒ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ ᎤᏤᎵᎦ. “ᏲᎾ ᎤᏤᏍᏙ!” ᎤᏍᎦᎢᏍᏔᏁ ᎤᏥ. ᎠᎧᏔᎮᎢ ᎠᏥᏲᎵᎲ. ᏧᏗᏱ ᎤᏂᎩᏒᎩ ᎠᎴ ᏔᎵᏁ ᎨᎵᎵ ᏮᎤᎶᏒᎩ. ᎠᎬᏱᏣ ᎦᏙᎨᎢ, ᎠᏫᏒᏗ ᎢᏣ ᏱᏭᎶᏌ, ᏃᎴ ᎰᎻ ᏣᎢᏎ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᎪᏱᏁ. ᎠᏎᏃ ᏥᏤᎾ, ᎠᎴ ᏫᏥᏃᎲᏏ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᎴ ᏈᏓ ᎾᏍᎩ ᎢᎬᏱ ᏫᏚᎶᎯᏎᏗᏱ ᎨᎵᎵ; ᎾᎿ ᏓᏰᏥᎪᎢ, ᎾᏍᎩᏯ ᏂᏥᏪᏎᎸᎢ. ᎢᎳᎩᏳ ᎢᏨᎪᎡ ᏁᏣᎦᏔᎲᎾ, ᎢᏨᏴᏔᏁᏃ; ᎠᎴ ᏣᏰᎸᎭ ᎨᏎᎢ, ᎢᏨᏄᏬᎡᏃ; ᏞᏍᏗ ᎢᏂᎵᏓᏍᏓᏅᎩ, ᎢᏨᎨᏳᎢ ᎢᏓᏓᏅᏟ; ᏂᎯ ᏨᏌ ᏫᎦᏣᎩᏍᏗ. ᎾᏉᏃ ᏫᎬᏩᎷᏤᎴ ᏥᎷᏏᎵᎻ ᎠᎴ ᏂᎦᏛ ᏧᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᏅᎾᏛ ᏦᏓᏂ, ᎤᏰᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᏓᏃᏴᎵᏍᏗᎭ, ᎠᎴ ᏙᏣᏠᏱᎭ? ᎥᏝ ᏳᏲᎱᏒ ᎠᎨᏳᏣ, ᎦᎵᎭᏉᏍᎩᏂ. ᎢᏨᏲᏪᎳᏁᎸᎩ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏤᏓᏍᏗᏱ ᏂᎨᏒᎾ ᎤᏕᏒᎾ ᏗᎾᏂᏏᎲᏍᎩ; ᎤᏂᏄᎸᏅᏃ ᎦᏙᎬ ᎾᎥ ᎤᏂᎷᎯᏍᏗᏱ ᎠᏂᏁᏄᎸ ᎢᏳᏍᏗ, ᎤᏅᏁᏎ ᎾᎿ ᎠᏯᎥᎢ; ᎤᏅᏁᏒᏃ, ᎡᎳᏗ ᏄᏅᏁᎴ ᎠᏤᏍᏙ ᎾᎿ ᎤᎵᏓᎸᎥᏍᎩ ᎦᏅᎬᎢ. ᎠᏆᏅᏔ ᎠᎩᏒᎸ ᏧᎾᏗᏔᏍᏗ ᎦᏚᏏᎢᏰᏛ, ᎤᏂᎯᏐᏓᏁ ᏍᎪᏂᏯ ᏓᏳᏂᎶᏒ ᎤᏂᏃᎩᏍᏙᏗ ᏄᏙ ᏥᎧᎸᎪ ᎢᎪᎯᏓ. ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏱᏚᏳᎪᏗ ᏗᎩᏒᏗᏱ ᏗᏂᏲᎵ ᎤᎾᏤᎵ ᎦᏚ, ᎩᎵᏃ ᏫᏓᏗᏁᏘᏱ. ᏥᎷᏏᎵᎻᏃ ᎠᏁᏙᎮ ᎠᏂᏧᏏ ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎩ ᏅᏓᏳᏂᎶᏒᎯ ᏄᎾᏓᎴᏒ ᎠᏁᎲ ᏴᏫ ᎦᎸᎶ ᎭᏫᏂᏗᏢ. ᎠᎴ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎾᏍᎩ ᏂᏌᎵᏍᏓ. ᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᎢᎬᏱᏱ ᎨᏒ ᎠᎴ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ. ᎤᏔᏕᎩᏍᎩ ᎠᎹ ᎬᏂᏛ ᎠᏓᏁᎯ ᎦᏄᎪᎬ ᏓᏥᏁᏁᎵ ᏧᎬᏩᎶᏗ ᏂᎨᏒᎾ. ᎤᎩᏨᏓᏃ ᏃᏊ ᎯᎠᏴ ᎧᎸ ᏅᏙ ᏃᏊ ᎤᎷᏨ ᎾᎥ ᎢᏦᎦᏓᎵ ᎠᎴ ᎣᎩᏃᎯᏎᎸ ᎾᎯᏳ ᏒᏃᏱ ᎠᏟᎢᎵᏒ ᎤᏲᎱᏎ Ꮎ ᎤᏛᏐᏅ ᏧᏢᎬᎢ. ᎾᏍᎩ ᎤᎷᏨᎩ ᎧᏃᎮᏍᎩ ᎨᏒᎩ, ᎾᏍᎩ ᎢᎦ-ᎦᏘ ᎤᏃᎮᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎾᏂᎥ ᎤᏃᎯᏳᏗᏱ. ᎠᏎᏃ ᏂᎯ ᎢᏨᏃᎮᎮᎭ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᏥᎨᏥᏚᎢᏍᏓᏁᎴ ᏗᎩᎦᏴᎵᎨᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎷᏤ ᎤᏪᏙᎴ ᏦᏓᏂ ᎾᎥᏂᎨ ᎨᏒᎢ, ᎠᎵᏥᏙᎲᏍᎨ ᎧᏃᎮᏍᎨ ᏗᏓᏬᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏛ ᎨᏒ ᎣᏓᏅᏛᎢ, ᎾᏍᎩ ᎦᏴᏓᏘᏁᏗᏱ ᎣᏍᎦᏅᏨᎢ; “ᏯᏓᏅᏖᎳ ᎠᎬᏱ ᏥᏕᎾᏙᎵᎬ ᏣᏇᎵᏒ ᏣᏁᎫᏥᏓ ᏃᎴ ᎩᎦ ᏣᏔᏕᎩᏍᎩ ᎨᏒ!” ᏂᎯᏍᎩᏂ ᎢᏳᏃ ᏔᏓᏙᎵᏍᏔᏂᏎᏍᏗ ᏫᏴᎯᎮᏍᏗ ᎧᏅᏑᎸᎢ, ᎿᏉᏃ ᏣᏍᏚᏁᏍᏗ ᎦᎶᎯᏍᏗᏱ, ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᏣᏙᏓ ᎤᏕᎵᏒ ᎡᎯ, ᏣᏙᎵᏃ ᎤᏕᎵᏒ ᎠᎪᏩᏘᏍᎩ ᎠᏎ ᏣᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎬᏂᎨᏒᎢ. ᎤᎩᏨᏓ ᏳᏂᎳᎩᏒ ᏏᏆ, ᎭᏂᏓᏫᏗᏍᎬ ᎭᏫᏯ ᎠᎴ ᎠᏂᎾᏌᎾᎩᏍᎬ ᎭᏫᏯ ᏃᎴ ᏧᎾᏦᏍᏗ ᎭᏂᏍᏚᏥᏍᎬ ᏃᎴ ᎤᎾᏗᎴᎩ ᎤᏂᏥᎸ ᎠᏂᏅᎵᏰᏍᎬ, ᎠᎹ ᎤᏓᏑᏱ ᏎᎷ ᎦᏚ ᎪᎢ ᏗᎬᏣᏝᏅ ᎠᏂᎩᏍᎬ. ”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ.” ᎿᏉᏃ ᏅᏛᎩᏅᏏᏛ ᏧᏬᎸ ᏫᏥᎦᏘ, ᎥᏝᏃ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᏳᏓᏑᏯ ᏯᏆᏛᏛᎲᏍᎦ, ᎯᎠ ᏱᏂᎦᏪ; ᎭᏢ ᏫᎦᏘ? ᎠᏴᏰᏃ ᎠᏓᏅᏛ ᎢᏳᏩᏂᏌᏛ ᎢᏗᎦᏘᏴ ᎤᏚᎩ ᎢᎬᏒ ᎢᎦᏚᏓᎴᏍᏙᏗᏱ ᎪᎯᏳᏗ ᎨᏒᎢ. ᎿᏉᏃ ᎠᏴ ᎥᏝ ᎡᎶᎯ ᏱᎨᎠ, ᎯᎠᏍᎩᏂ ᎡᎶᎯ ᎠᏁᎭ, ᎠᏴᏃ ᏗᏦᎸ ᏫᏥᎦᏘ. ᎡᏣᎸᏉᏗᏳ ᎡᏙᏓ, ᏨᏒ ᏕᏣᏗᎥ ᎲᏗᏍᎨᏍᏗ ᏕᎯᏍᏆᏂᎪᏕᏍᏗ ᏗᏍᎩᎧᏁᎸᎯ, ᏌᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᎯ ᎠᏴᏃ ᏌᏉᏉ ᏥᎩ. ᎢᎦ ᏣᏓᏴᎳᏔᏍᎦ ᎦᎸᎶᎢ ᏃᎴ ᏥᏍᏆᏯ ᏣᎾᎵᏖᎸᎮᎭ, ᏩᎦ ᏥᏓᏂᏖᎸᎮ ᎤᎾᏓᏕᏒᏓ, ᏥᏔᎦ ᎠᏨᏯᎢ ᏣᏙᎯᎠ, ᏃᏈᏏ ᏣᏂᏍᎪᎸᎦ, ᎠᎬᏱ ᏥᏓᏓᏏᏙᎭ ᏓᏆᎴᎳ ᏅᏃᎯ, ᎭᏂ ᏱᏗᏣᎧᎾᎾ ᎬᏂᎨᏒ ᏱᏂᎬᏴᏂᏏ ᎪᎱᏍᏗ, ᎬᏂᎨᏒ ᏱᏂᎬᏴᏂᏏ ᎠᏉᏒᏅ.” ᏚᎧᎿᏙᎸᏃ ᎬᏩᏚᏫᏛ ᏂᎦᏛ ᏄᎾᏛᏅᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎦᏯ; ᎭᏙᏯᏅᎯᏛ. ᎾᏍᎩᏃ ᏄᏛᏁᎴᎢ; ᎤᏬᏰᏂᏃ ᎤᏗᏩᏎ ᎾᏍᎩᏯ ᏐᎢ ᏄᏍᏛ ᏄᎵᏍᏔᏁᎢ. ᎦᏣᏄᎳ ᏓᎾᏛᏍᎨᎢ. ᎠᏎᏃ, ᎢᏧᎳ ᏐᎦᎳᏂ ᏚᏳᏂᎶᏒ ᏃᎴ ᏄᏓᎴᏨ ᎤᎾᏓᏅᏖᏗ. ᎡᎳᏗ ᎤᎨᏓᎵᏴ ᎤᏂᎾᏅᎪᏤ, ᎭᎾ ᏚᏂᎪᎮ ᏚᏅᏓᏒ ᏗᎦᏙᎩ ᏌᎪᏂᎨ ᏧᏴᏨ ᎢᏣ, ᎾᎥᏂᎨ ᎠᏦᎭᏴ ᎬᏂᎨᏒ ᎢᎬᏁ ᎠᎵᏍᏆᏗᏍᎬ ᎡᎶ. ᎪᏪᎵ ᎦᎸᏉᏗ ᎤᏁᎦ ᏓᏴᏈᏛ ᎢᏳᏁᎦ ᎨᏎ ᎤᏁᎦᎸ ᎠᎵᏥᏙᎲᏍᎩ. ᎤᏂᏁᎫᎯᏍᏗ ᎤᎦᏔ ᏍᏉ ᎢᎬᏱᏊ ᏙᏥᏫᏍᎪ, ᏙᏣᎪᏎᏍᏗᏍᎪ ᎠᎦᎾᏬᎲᏍᎬ ᎢᎪᎯᏓ ᎩᎳᏃ ᎦᏙ ᏫᏙᏥᏰᎲᏍᏗᏍᎪᎢ. ᎠᎴ ᎾᏍᏉ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎾᎥ ᏥᏕᎦᏚᎮᎢ, ᎾᏍᎩᏯ ᎾᎾᏛᏁᎮ ᏓᎾᏓᏲᏍᎨ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᎠᏂᏍᏓᏩᏗᏙᎮ ᎤᏪᏓᎵ ᎠᏍᏓᏳᏛᏍᏗ ᎤᏇᏓᎵ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᏓᏕᏯᏔᎲᏍᎩ ᏂᎨᎬᏁᎴᎢ ᎠᏂᎩᎵᏲᎨ ᎤᏂᏍᏛᏗᏍᏗ ᎨᏒ ᎬᏠᏍᎩ ᏂᎨᏒᎾ ᎠᏥᎸᏱ. ᏌᏉᏰᏃ ᎢᏳᎵᏍᎪᎸᏔᏅᎯ ᎨᏒ ᎤᏮᏔᏅ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏄᏂᎪᎸᎾ ᏂᏚᏩᏁᎸ Ꮎ ᎾᏂᏍᎦᏅᎾ ᎢᎨᎬᏁᎸᎯ. ᏯᏓᏅᏍᎬᎾ ᎦᎾᎡ ᎠᎹ ᎠᎡᎭᏲᎮ ᎠᎹ ᎠᏰᎸ. ᎤᎷᏤᎴ ᎠᏛ ᎾᏍᎩ ᏦᏩ ᏧᏙᎢᏛ ᎠᏍᎦᏯ ᎤᏓᏴᏍᏗ, ᎾᏍᎩ ᏕᏫ ᎤᏁᏢᏔᏅᏛ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎠᏛ ᎺᎵ ᏧᏙᎢᏛ ᎨᏎᎢ. ᎾᏍᎩ ᏕᎭᏓᏅᏖᏍᎨᏍᏗ, ᎾᏍᎩᏉ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ, ᎾᏍᎩᏃ ᏣᏁᏉᏤᎲ ᎬᏂᎨᏒ ᏄᎾᎵᏍᏓᏁᎮᏍᏗ ᏂᎦᏛ. ᏥᏙᎬ ᎤᏓᏐᎸ. ”ᎭᏓᎾᏫᏓ ᏃᎴ ᎭᎵᏍᎩ!” ᎤᏛᏁ ᏥᏔᎦ ᎠᏨᏯ. ᎢᎦᏃ ᎤᏬᏚᎯ ᎨᏎᎢ Ꮎ ᏒᎦᏔ ᎢᏈᎬᎢ ... ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏙᎯᏳᎯ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒ ᏓᏤᎸ, ᎾᏍᎩ ᎾᎿ ᎣᏩᏒ ᎣᏓᏅᏖᏛ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏃᎦᏌᏯᏍᏛᎾ ᎨᏒ ᎥᏰᎸᎢ, ᎥᏝᏃ ᎾᏍᎩ ᎠᎦᎸᏉᏗᏍᎬᎢ, ᎤᏇᏓᎵ ᎤᏂᎬᏎᎲ ᎥᏩᏛᎡᎲᎢ. ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏥᎾᏝᎢ ᎥᏝ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐᎢ, ᎡᏍᎦᏉ ᎤᎾᏝᎢ; ᎠᎴ ᎥᏝ ᎠᏥᏅᏏᏛ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐᎢ, ᎡᏍᎦᏉ ᏅᏓᏳᏅᏏᏛ. ᎾᎿᏰᏃ ᏧᎬᏩᎶᏗ ᏫᏥᎲᎢ ᎠᏎ ᎾᏍᏉ ᏫᏓᎮᏍᏗ ᏗᏣᏓᏅᏙ. ᏰᎵ ᎢᏳᏥᎶᏓ ᏓᏳᏂᎶᏒ ᎠᏂᎷᎨᎢ ᏴᏫ ᎠᎾᎧᏔᏂᏙᎢ ᏫᎵᎻ ᏃᎴ ᎠᏂᎪᎵᏰᏍᎩ ᏚᏬᏪᎸ ᏌᎳᏓ ᏚᏏᎳᏛᎢ. ᎤᎧᎭᏛ ᎤᎾᏓᏴᎳᏔᏅ ᎠᎾᏓᎭᏲᎯ, ᎠᎬᏱᏣ ᎤᎾᏓᏌᎬᏍᏔᏅ ᏯᎾᎴᏫᏍᏘᏍᎬᎾ. ᏥᏌᏃ ᎾᎿ ᎤᏓᏅᏒ, ᎤᎪᎲᎩ ᎠᏍᎦᏯ ᎹᏚ ᏧᏙᎢᏛ, ᎤᏬᎸᎩ ᎠᏰᎵ ᎠᎫᏴᏗᏱ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᏍᎩᏍᏓᏩᏚᎦ. ᏚᎴᏅᏃ ᎤᏍᏓᏩᏛᏒᎩ. ᏃᎴ ᎠᏂᏫᎾ ᎠᏂᎦᎸᏥ ᏗᏂᏍᏕᎵᏙ ᎠᏂᎦᎸᏥ ᏗᏂᎳᏫᎩ ᎨᏍᏗ ᏯᏃᎵᎨ ᎦᏁᎸᏗᏍᎬ ᎠᎩᏬᏂᏍᏗ. ᎠᏐᏴᏃ ᎦᏚᎲ ᏔᎳᏚ ᏕᎦᎫᏍᏓᎥᎩ, ᏕᎦᎫᏍᏓᎥᏃ ᏔᎳᏚ ᏚᎾᏙᎥᎢ [ᏕᎪᏪᎸᎩ,] ᎾᏍᎩ ᏔᎳᏚ ᎢᏯᏂᏛ ᎤᏃᏕᎾ ᎠᎩᎾ ᏧᏅᏏᏛ ᏚᎾᏙᎥᎢ. ᎠᏏᏴᏫᏃ ᎤᏓᏑᏴᎩ, ᎧᏱᏆ ᏧᏙᎢᏛ, ᎾᎯᏳ ᎤᏕᏘᏴᏌᏗᏒ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎪᎱᏍᏗ ᏱᏥᎦᏔᎭ, ᎤᎬᏫᏳᎯᏃ ᎾᏍᎩ ᎯᎠ ᎠᎦᏔᎭ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏛᏓᏍᏛ ᏂᏥᏍᎦᎢᎲᎾ ᏥᏥᏁᎦ; ᏥᎦᏔᎭᏰᏃ ᎯᎠ ᎾᏍᎩ ᎪᎱᏍᏗ ᎠᎬᏍᎦᎳᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏞᏰᏃ ᎤᏅᏏᏴ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏱᎩ. “ᏤᏍᏗᏉ, ᏤᏍᏗ ᏯᏛᏁᎵᏍᎨᏍᏗ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ. ᎢᏳᏃ ᎾᏍᎩ ᎠᏛᎦᏅ ᎤᎬᏫᏳᎯ, ᏓᏲᏥᏍᏗᏰᏔᏂ, ᎠᎴ ᏓᏨᏍᏕᎸᎯ. ᏔᎵᏁᏃ ᎠᏰᏙᎳᏛ ᎤᏗᏗᏢ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᎤᏟ ᎢᎦᎸᏉᏗ ᏣᏃᏎᎮᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂ ᎤᏂᎷᏥᎸ, ᏄᎵᏍᏛᏉ ᎤᎩᏨᏛ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸ ᎠᎩᏅᎩ, ᎠᎴ ᎠᎩᏁᏨᎩ ᎾᏍᎩ ᎠᏍᎦᏯ ᏩᏥᏯᏅᏗᏱ. ᏗᎧᎿᏩᏛᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎤᎬᏩᎳ ᎾᏍᎩ ᎦᏓᎭ ᏂᎨᏒᎾ ᎣᎾᏫ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎣᏍᏛ ᏗᎫᎪᏙᏗ ᎨᏒ ᎠᎴ ᏄᏠᎾᏍᏛᎾ ᎪᎯᏳᏗ ᎨᏒᎢ; ᏅᏩᏓᎴᏃ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᎠᎩᎪᎲᎩ, ᎦᎸᏉᏗ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏓᏂᏰᎲᎩ ᎦᎵᏉᎩ ᎢᏳᏓᎴᎩ ᎤᎵᏍᏆᎸᏗ ᎤᏕᏔᏙᏗ; ᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎠᏂᎧᎵᏏᏏᎭ. ᏗᏂᎾᏌᎲᏍᎩ ᏧᎾᏓᏍᏔᏴᏙᏗ ᎦᏯᎱᎶ ᎣᎭᏁ ᏚᎾᏛ, ᎠᎭᎸᏂ ᎢᏳᏍᏗ ᏚᏃᏴᎬ ᎠᏁᎬ ᏅᏃ. ᏗᏓᏴᎳᏛᏍᎩ ᎤᏂᎲ ᎠᎴ ᏧᎵᏏᏅᏓᏊ ᎢᏳᏍᏗ. ᎩᏟᏃ ᏃᏊ ᎤᏕᎶᎰᏌ ᎣᏥᏍᏓᏩᏕᎬ ᏫᏂᎦᏯᎢᏒ Ꮭ ᏃᏊ ᏱᏗᎤᏨᏎ. ᏩᎩᎷᏨ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏗᎪᏪᎵᏍᎩ ᏧᎷᏫᏍᏓᏅᏗ, ᎤᏙᎰᎯᏍᏗ ᏩᎩᏰᎸ ᎠᏙᎩᏯᏍᏗ ᎣᏍᏓ ᎾᏋᏁᎳ. ᎤᎵᎮᎵᏤ ᎠᎪᏩᏘᏍᎬ ᎪᏱᏁᎢ ᏃᎴ ᎤᏬᏍᎩᎵ ᎦᏍᎩᎶ ᎤᏕᎴ ᎤᏩᏘ. ᏍᎩᎾᏃ ᎢᏳᏍᏗ ᎠᏲᏟᎨ ᏓᏲᎪ. ᎠᎫᏩᏌ ᎠᎫᏤᎵ ᎦᏙ ᎤᎵᏍᎨᏛ ᎠᏰᎸᏗ ᎭᏂ ᎢᏕᎲ. ᎤᎴᏫᏍᏔᏁ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᎡᏂᎾᏯᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏂᏤᎸᎩ ᎬᏙᎬ ᎾᎥ ᎠᏂᏙᎾᎢ ᎠᎰᎵ ᎬᏩᏂᏍᏗᏱ. ================================================ FILE: a4/chr_en_data/test.en ================================================ But Abraham saith, They have Moses and the prophets; let them hear them. “Very well, Uncle,»” replied Charlotte. that ye be not sluggish, but imitators of them who through faith and patience inherit the promises. As he stood there, he noticed something move. Then 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: rejoiceth not in unrighteousness, but rejoiceth with the truth; who did no sin, neither was guile found in his mouth: and he made no distinction between us and them, cleansing their hearts by faith. And they were all amazed and marvelled, saying, Behold, are not all these that speak Galilæans? He 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. Therefore 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. Herein 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. But if I by the finger of God cast out demons, then is the kingdom of God come upon you. “I want to live in a tree, with my frog.” And whether one member suffereth, all the members suffer with it; or one member is honored, all the members rejoice with it. The infield was littered with bottles and trash. (as it is written in the law of the Lord, Every male that openeth the womb shall be called holy to the Lord), This was almost more than Wilbur could stand: on this dreary, rainy day to see his breakfast being eaten by somebody else. Wilbur stood still and cocked his ears. not 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, “I’ve always been dreadfully near-sighted. Bear loomed over them at his lean excessive height and told the story, and the children looked up and listened in amazement. I 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. He looked at the egg sac. And 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. The 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. I can’t say. And they that sat at meat with him began to say within themselves, Who is this that even forgiveth sins? And this was done thrice: and straightway the vessel was received up into heaven. And 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. But I doubt that she spends her entire life in Homer Zuckerman’s barn cellar. But 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. Have ye not read even this scripture: The stone which the builders rejected, The same was made the head of the corner; “Oh, Charlotte,” he said. “Henry invited me to go on the Ferris wheel again, only I don’t think he has any money left. Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you: My 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. When she was finished ripping things out, her web looked something like this: A spider can produce several kinds of thread. The air was soon filled with tiny balloons, each balloon carrying a spider. as 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, and he saith unto him, Friend, how camest thou in hither not having a wedding-garment? And he was speechless. Salute one another with a kiss of love. Peace be unto you all that are in Christ. XIII. Good Progress For every house is builded by some one; but he that built all things is God. “Why did you do all this for me?” he asked. But 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. So when they got out upon the land, they see a fire of coals there, and fish laid thereon, and bread. yet to abide in the flesh is more needful for your sake. “There was the fish, caught only by one fin, and its tail wildly thrashing and shining in the sun. And 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. This I say therefore, and testify in the Lord, that ye no longer walk as the Gentiles also walk, in the vanity of their mind, Or have ye not read in the law, that on the sabbath day the priests in the temple profane the sabbath, and are guiltless? Look radiant, Wilbur! Thou 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. The maid therefore that kept the door saith unto Peter, Art thou also one of this man’s disciples? He saith, I am not. For this is the love of God, that we keep his commandments: and his commandments are not grievous. There is no place like home, Wilbur thought, as he placed Charlotte's five hundred and fourteen unborn children carefully in a safe corner. He was a slim blond-headed fellow, gangly and not yet in complete control of his big hands and long feet. Verily I say unto you, This generation shall not pass away, till all things be accomplished. You'll see me in the morning.” And they tarried no little time with the disciples. And 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. Templeton untied his string and took it back to his home. and lo, a voice out of the heavens, saying, This is my beloved Son, in whom I am well pleased. Either 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. One morning Wilbur asked her about the Fair. My grandmother used to bathe her pig with buttermilk when it got dirty — I just remembered.” and he came and took her by the hand, and raised her up; and the fever left her, and she ministered unto them. But 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. Bear, 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. I have compassion on the multitude, because they continue with me now three days, and have nothing to eat: And they that saw it declared unto them how it befell him that was possessed with demons, and concerning the swine. Ye leave the commandment of God, and hold fast the tradition of men. For 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. And they, when they heard that he was alive, and had been seen of her, disbelieved. Now there was a certain man in Cæsarea, Cornelius by name, a centurion of the band called the Italian band, Fern was upstairs changing her sneakers. And he spake this parable; A certain man had a fig tree planted in his vineyard; and he came seeking fruit thereon, and found none. and all things that are mine are thine, and thine are mine: and I am glorified in them. Philip answered him, Two hundred shillings’ worth of bread is not sufficient for them, that every one may take a little. And 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. Then down wide steps to the parlor. Then another spider. And 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? And they understood not the saying which he spake unto them. For 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), But we cannot verify their tales, and tales are all I believe them to be. He remembered that when the rain didn't come for a few days, the water level would drop. In like manner he also that received the two gained other two. But the eleven disciples went into Galilee, unto the mountain where Jesus had appointed them. The Jews therefore said, Will he kill himself, that he saith, Whither I go, ye cannot come? Then, at the point when he became wet to the skin, the rain tapered away to nothing but dense fog. And 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? “Your tongue is purple!” screamed Fern. Lurvy wandered off by himself, hoping to meet friends and have some fun on the midway. They found a tube of wood. who 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. I shall always treasure her memory. And then she shouldered her bedroll and walked off into exile. There, in the center of the web, neatly woven in block letters, was a message. And they said, Moses suffered to write a bill of divorcement, and to put her away. When they had not wherewith to pay, he forgave them both. Which of them therefore will love him most? Avery 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. He felt peaceful and happy and sleepy. “Stop your nonsense, Wilbur!” said the oldest sheep. By faith even Sarah herself received power to conceive seed when she was past age, since she counted him faithful who had promised: But 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. “Be still, Templeton!” said Charlotte. He 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. So then each one of us shall give account of himself to God. For 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. But he answered and said, I was not sent but unto the lost sheep of the house of Israel. Beloved, let us love one another: for love is of God; and every one that loveth is begotten of God, and knoweth God. to 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; Stephen snared the head of the great serpent with the iron key as Charlie hefted the boulder. Amy 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. “Why, yes, of course,” said Wilbur. No more talking! But afterward he sent unto them his son, saying, They will reverence my son. Charlotte examined the label. “First,” said Charlotte, “I dive at him.” She plunged headfirst toward the fly. “There!” said Charlotte. When 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. For 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. As 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. The merchants of these things, who were made rich by her, shall stand afar off for the fear of her torment, weeping and mourning; Look up here in the corner of the doorway! Here I am. Look, I’m waving!” She 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.’ Something 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. For as often as ye eat this bread, and drink the cup, ye proclaim the Lord’s death till he come. And 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. forbearing one another, and forgiving each other, if any man have a complaint against any; even as the Lord forgave you, so also do ye: Be not therefore like unto them: for your Father knoweth what things ye have need of, before ye ask him. This 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; and thou hast patience and didst bear for my name’s sake, and hast not grown weary. Wherefore, my beloved, flee from idolatry. We met at the sorts of parties where the music and dancing went on until past midnight, and then supper was served. And 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? John 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; Good work, Zuckerman! and how the chief priests and our rulers delivered him up to be condemned to death, and crucified him. And 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. But that ye may know that the Son of man hath authority on earth to forgive sins (he saith to the sick of the palsy), Behold, I come quickly; and my reward is with me, to render to each man according as his work is. My manner of life then from my youth up, which was from the beginning among mine own nation and at Jerusalem, know all the Jews; but 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. The 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. The world is a wonderful place when you're young.” They 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? He was a leader because he showed his people how to survive -- how to stand tall and proud like these trees. And he saith unto the man that had his hand withered, Stand forth. But when thou makest a feast, bid the poor, the maimed, the lame, the blind: Ye were bought with a price; become not bondservants of men. Then the lust, when it hath conceived, beareth sin: and the sin, when it is fullgrown, bringeth forth death. One 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. “I’m going to visit Wilbur,” Fern announced. I hardly know the meaning of the word.” “There,” he said. And desiring to know the cause wherefore they accused him, I brought him down unto their council: Then he picked up the pail. men who concerning the truth have erred, saying that the resurrection is past already, and overthrow the faith of some. He was going through a spell of malaria about then. Perry 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. “How old is Fern?” Struggle! If you were to walk into the crate without resisting, Zuckerman might think you were bewitched. And immediately Jesus stretched forth his hand, and took hold of him, and saith unto him, O thou of little faith, wherefore didst thou doubt? and 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; And 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. A 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. This 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. “Goslings, one through seven?” And his lord was wroth, and delivered him to the tormentors, till he should pay all that was due. “Salutations!” repeated the voice. At last things calmed down. And 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. The goose appeared, followed by her seven goslings. in 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. But 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. But 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. From that point forward, everything changed entirely in the village. and 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. And 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. Pray ye therefore the Lord of the harvest, that he send forth laborers into his harvest. Most of them looked the same, except for one small fish. he 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. And 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. And be back at our regular meeting place by the pigpen very soon!” Look what it says!” Crockett said, Oh, I’m a big target and easy to hit, so there’s no honor in it. He walked out to the yard again. The night before the County Fair, everybody went to bed early. These things have I written unto you concerning them that would lead you astray. Else would they not have ceased to be offered? because the worshippers, having been once cleansed, would have had no more consciousness of sins. Everyone laughed. The times of ignorance therefore God overlooked; but now he commandeth men that they should all everywhere repent: So 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. Now Peter and John were going up into the temple at the hour of prayer, being the ninth hour. And 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. (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. who bare witness to thy love before the church: whom thou wilt do well to set forward on their journey worthily of God: And they told him, saying, John the Baptist; and others, Elijah; but others, One of the prophets. For 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. “It doesn’t make any difference. Thrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day have I been in the deep; And he sent Peter and John, saying, Go and make ready for us the passover, that we may eat. But he that was healed knew not who it was; for Jesus had conveyed himself away, a multitude being in the place. Hearken: Behold, the sower went forth to sow: Templeton grinned and lay still. And ye shall be hated of all men for my name’s sake. and they prevailed not, neither was their place found any more in heaven. make 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. I am come a light into the world, that whosoever believeth on me may not abide in the darkness. And 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? And on the morrow, when they were come out from Bethany, he hungered. My 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. Complicated. But he turned, and rebuked them. This is he of whom it is written, Behold, I send my messenger before thy face, Who shall prepare thy way before thee. Look! Look! Beaver was saying And 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. the elder women as mothers; the younger as sisters, in all purity. Wilbur hung his head. in pureness, in knowledge, in longsuffering, in kindness, in the Holy Spirit, in love unfeigned, And in Washington City that did not amount to anything. And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, if one rise from the dead. Where is the wise? where is the scribe? where is the disputer of this world? hath not God made foolish the wisdom of the world? All 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. You are just as big as me Jesus answered and said unto her, Every one that drinketh of this water shall thirst again: The colonel took the time to look at his plate and thumb it, sloshing, to the far side of the table. Once again the boy said to the tree, Look at you! Jesus saith unto them, Bring of the fish which ye have now taken. Plants need nutrients to grow. Let the husband render unto the wife her due: and likewise also the wife unto the husband. It doesn’t seem normal. She went back into the house and put on her dress that looked like a watermelon and the hat that matched. He 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. Mary 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. It would be as a free agent or nothing at all. In that day ye shall ask in my name: and I say not unto you, that I will pray the Father for you; who by the power of God are guarded through faith unto a salvation ready to be revealed in the last time. Sometimes, on these journeys, Wilbur would get tired, and Fern would pick him up and put him in the carriage alongside the doll. And when she had said this, she went away, and called Mary her sister secretly, saying, The Teacher is here, and calleth thee. I know thy works, that thou art neither cold nor hot: I would thou wert cold or hot. Long ago the Cherokee people lived in peace and harmony in the mountain forests. He might start thinking about crisp, crunchy bacon and tasty ham. We were camped beside a strong-running creek filled with mossy boulders. And 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; Packing crates stood in stacks in the emptied rooms, their walls bare of paintings. Neither can they prove to thee the things whereof they now accuse me. “He’s all right,” cried Mr. Zuckerman. And under no circumstances would he consent to my outrageous claims for reimbursement of expenses. And he sent away the multitudes, and entered into the boat, and came into the borders of Magadan. “Does she look well?” asked the doctor. Bring forth therefore fruit worthy of repentance: After a while, Littlefish found himself in a pool of water where he saw a strange looking fish with many bumps on his head. Charley rose from under the rhododendron and twisted the water out of his blanket and set out again downhill through the foggy dripping woods. I took men of influence out for suppers and drinks, but I could not offer any more in the way of inducement. For while we were yet weak, in due season Christ died for the ungodly. who being past feeling gave themselves up to lasciviousness, to work all uncleanness with greediness. For yourselves, brethren, know our entering in unto you, that it hath not been found vain: to the praise of the glory of his grace, which he freely bestowed on us in the Beloved: Look at our shadows on the bottom of the creek. And 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; Wherefore he saith, Awake, thou that sleepest, and arise from the dead, and Christ shall shine upon thee. Angered, the beast writhed in its prison. Now unto the King eternal, immortal, invisible, the only God, be honor and glory for ever and ever. Amen. Jesus saith unto them, My meat is to do the will of him that sent me, and to accomplish his work. And 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: Fear them not therefore: for there is nothing covered, that shall not be revealed; and hid, that shall not be known. Jesus 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? Behooved it not the Christ to suffer these things, and to enter into his glory? And 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. She had a sharp finger as long as a dagger and shaped like an awl. and 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; So then, brethren, we are debtors, not to the flesh, to live after the flesh: Charlotte had written the word RADIANT, and Wilbur really looked radiant as he stood in the golden sunlight. And also, stunningly, that Mrs. Chapman was twenty-two. And 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. My brethren, hold not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons. And all that dwelt at Lydda and in Sharon saw him, and they turned to the Lord. She looked rather swollen and she seemed listless. No argument had helped the Nation. I speak as to wise men; judge ye what I say. It was a small town. but he that denieth me in the presence of men shall be denied in the presence of the angels of God. The next afternoon we made camp in the rain. and his garments became glistering, exceeding white, so as no fuller on earth can whiten them. When 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. Great 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. for this cause, brethren, we were comforted over you in all our distress and affliction through your faith: I said, No, Mr. Cass. I have plenty of time right now. And whenever the cat was given a fish-head to eat, the barn would smell of fish. But Sequoyah learned a different lesson. And 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. But this thou hast, that thou hatest the works of the Nicolaitans, which I also hate. And inside the big house, white tablecloths and silver and china in the dining room. And 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; However, 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. or if he shall ask for a fish, will give him a serpent? and 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. The 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. And when they were come out of the boat, straightway the people knew him, They 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. If ye know these things, blessed are ye if ye do them. There 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. “I don’t want to die!” screamed Wilbur, throwing himself to the ground. And in 1824, they gave Sequoyah a silver medal. As Littlefish swam on, he heard a distant voice coming from behind him out of the opening beside the large rock. James, a servant of God and of the Lord Jesus Christ, to the twelve tribes which are of the Dispersion, greeting. But 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. For I do not wish to see you now by the way; for I hope to tarry a while with you, if the Lord permit. This is the great and first commandment. Nay, but ye yourselves do wrong, and defraud, and that your brethren. Then saith Jesus unto him, Put up again thy sword into its place: for all they that take the sword shall perish with the sword. And they smote his head with a reed, and spat upon him, and bowing their knees worshipped him. Because 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; Then they were gone, and he rose and fled upward. And they went away and told it unto the rest: neither believed they them. “Next, I wrap him up.” Actually, it’s a silly expression, and I am surprised that I used it at all. And the serjeants reported these words unto the magistrates: and they feared when they heard that they were Romans; “What does it say?” asked Charlotte. What's wrong little tree? the boy asked. Blessed 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. “I beg everyone’s pardon,” whispered Wilbur. When 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. When Mr. Zuckerman got back to the house, he took off his work clothes and put on his best suit. and let us consider one another to provoke unto love and good works; But Paul cried with a loud voice, saying, Do thyself no harm: for we are all here. At least sometimes that’s the way I think it was, he said. And he led him up, and showed him all the kingdoms of the world in a moment of time. for by grace have ye been saved through faith; and that not of yourselves, it is the gift of God; And 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. And 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. It was cold and rainy, and after I had walked for a bit, it started it snowing. “Charlotte has another cousin who is a balloonist. And 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: And his ears were opened, and the bond of his tongue was loosed, and he spake plain. but I say unto you, Love your enemies, and pray for them that persecute you; And 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: But 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. How are you? Fern had a crown of daisies in her hair. Did I take advantage of you by any one of them whom I have sent unto you? Servants, 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: IX. Wilbur’s Boast Enter 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. For not unto angels did he subject the world to come, whereof we speak. And when they had sung a hymn, they went out into the mount of Olives. “An hour of freedom is worth a barrel of slops.” Nobody noticed it in the darkness. and 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. Minus my day of travel from Valley River. Education, child-rearing, government, literature, journalism, cuisine. Therefore my heart was glad, and my tongue rejoiced; Moreover my flesh also shall dwell in hope: But there was nothing unique about that. and salute the church that is in their house. Salute Epænetus my beloved, who is the firstfruits of Asia unto Christ. This people honoreth me with their lips; But their heart is far from me. but God, being rich in mercy, for his great love wherewith he loved us, The sun beat down on everything. For 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. She saw him from the kitchen window, and she immediately shouted for the men. and Jesus also was bidden, and his disciples, to the marriage. The people stopped jeering when two warriors wrote to each other. and 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; When therefore I have accomplished this, and have sealed to them this fruit, I will go on by you unto Spain. Jesus saith unto her, Said I not unto thee, that, if thou believedst, thou shouldest see the glory of God? that I may come unto you in joy through the will of God, and together with you find rest. After this Jesus, knowing that all things are now finished, that the scripture might be accomplished, saith, I thirst. Let a man so account of us, as of ministers of Christ, and stewards of the mysteries of God. At 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. Don't swim there Littlefish! but 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. The doll would close her eyes, too, and Fern would wheel the carriage very slowly and smoothly so as not to wake her infants. Equipage for living out in the high mountains for some time to come. And he said, Of a truth I say unto you, This poor widow cast in more than they all: Whosoever shall receive one of such little children in my name, receiveth me: and whosoever receiveth me, receiveth not me, but him that sent me. There were about a dozen of them, men, women, and children—three generations of Charley’s family. Asmeret says earthworms eat dead things and then leave droppings in the soil. And 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? No 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. The geese cheered. If ye shall ask anything in my name, that will I do. who, 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: On that day went Jesus out of the house, and sat by the sea side. But 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. And 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. and not only so, but we also rejoice in God through our Lord Jesus Christ, through whom we have now received the reconciliation. The entire direction of the new world, though, was against peace. For God is my witness, how I long after you all in the tender mercies of Christ Jesus. Philip, and Bartholomew; Thomas, and Matthew the publican; James the son of Alphæus, and Thaddæus; And straightway there was in their synagogue a man with an unclean spirit; and he cried out, The next morning, the boy went to check on his friend. I had a pannier full of my own stores, not caring much for army victuals. I was walking calmly; it was snowing a lot. because it goeth not into his heart, but into his belly, and goeth out into the draught? This he said, making all meats clean. “He isn’t as big as that pig next door,” remarked one bystander, “but he's cleaner. And he said, Into what then were ye baptized? And they said, Into John’s baptism. And he took him by the right hand, and raised him up: and immediately his feet and his ankle-bones received strength. He turned his chair my way and sat leaned forward, holding his whiskey glass two-handed between his knees. The boy said, We caught the others some time ago. She cannot accompany us home, because of her condition. Therefore, it is absolutely necessary that I take her egg sac with me. Perhaps your web is a good thing after all.” conscience, I say, not thine own, but the other’s; for why is my liberty judged by another conscience? For 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. For they that say such things make it manifest that they are seeking after a country of their own. And 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. always bearing about in the body the dying of Jesus, that the life also of Jesus may be manifested in our body. from whom thou wilt be able, by examining him thyself, to take knowledge of all these things whereof we accuse him. Grace to you and peace from God our Father and the Lord Jesus Christ. I 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. I have to stay right here, I’m no flibberty-ibberty-gibbet. He put his head down, shut his eyes, and pushed. By 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: What will ye? shall I come unto you with a rod, or in love and a spirit of gentleness? Their grimacing mouths shone full of long yellow teeth. And tell Avery to get ready. though I myself might have confidence even in the flesh: if any other man thinketh to have confidence in the flesh, I yet more: For 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. I say unto you, It shall be more tolerable in that day for Sodom, than for that city. Forasmuch as many have taken in hand to draw up a narrative concerning those matters which have been fulfilled among us, And I thank you for your generous sentiments.” In that hour he cured many of diseases and plagues and evil spirits; and on many that were blind he bestowed sight. And 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. and the rich, in that he is made low: because as the flower of the grass he shall pass away. The next day was rainy and dark. And 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. Axe’s wife brought out some chunks of yellow squash and cooked them at the edge of the fire until they softened up. being justified freely by his grace through the redemption that is in Christ Jesus: I found something near the river, said Beaver. I was looking downward. Stop 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. And as were the days of Noah, so shall be the coming of the Son of man. “They don't catch anything. And after these things I saw, and the temple of the tabernacle of the testimony in heaven was opened: The 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. I 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. He 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. It's very nice to meet you, but I must swim on. And 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. But thou, when thou fastest, anoint thy head, and wash thy face; And God wrought special miracles by the hands of Paul: When we heard it the second time, it seemed a little closer. And when a great multitude came together, and they of every city resorted unto him, he spake by a parable: And he besought him much that he would not send them away out of the country. The loaded wagons stood lined in a train outside Cranshaw, ready for the journey west. When he had thus spoken, he spat on the ground, and made clay of the spittle, and anointed his eyes with the clay, Charlotte got so interested, she lowered herself on a dragline so she could see better. They feared some child would fall off. For 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. And when even was now come, because it was the Preparation, that is, the day before the sabbath, But when the crowd was put forth, he entered in, and took her by the hand; and the damsel arose. But even if ye should suffer for righteousness’ sake, blessed are ye: and fear not their fear, neither be troubled; Ye have heard that it was said, Thou shalt love thy neighbor, and hate thine enemy: “Certainly not,” he said, looking down at his daughter with love. For 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. Tasting sweet and dark like a rendering of the forest. They are sweet and tart at the same time. But if ye bite and devour one another, take heed that ye be not consumed one of another. Look at the tall trees, says my father. having the same conflict which ye saw in me, and now hear to be in me. When I reached the fort a hard day’s ride later, I found Smith alone in his pale pyramidal tent. (Templeton had a habit of picking up unusual objects around the farm and storing them in his home. I love blood,” said Charlotte, and her pleasant, thin voice grew even thinner and more pleasant. And 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. And 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. Mr. Zuckerman heard, and he came out of the machine shed where he was mending a tool. “Out to the hoghouse,” replied Mrs. Arable. “A little tired, perhaps. according as each hath received a gift, ministering it among yourselves, as good stewards of the manifold grace of God; She went and told them that had been with him, as they mourned and wept. But 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. And 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? “Why aren’t you on your web?” asked Wilbur. and 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. The colonel waited and watched. And he spake the saying openly. And Peter took him, and began to rebuke him. By 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: You're spending too much time in that barn —it isn’t good for you to be alone so much.” It’s not like being president. More like mayor. He did not notice that as he swam on the stream grew larger and faster. And 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. Jesus said unto her, I am the resurrection, and the life: he that believeth on me, though he die, yet shall he live; Next morning, I watched from up the hill as the fort emptied out in a sad parade. He kept walking toward the pail of slops. But 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. not 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. For 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. covetings, wickednesses, deceit, lasciviousness, an evil eye, railing, pride, foolishness: and 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. and 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. And all that heard it wondered at the things which were spoken unto them by the shepherds. Things are at such a state they could fall apart in a moment. Jesus answered and said unto them, Destroy this temple, and in three days I will raise it up. Crockett had the attention of everyone. Hesitate to get in the cart, and you are lost. And 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. And being let go, they came to their own company, and reported all that the chief priests and the elders had said unto them. That was his dinner. Be not many of you teachers, my brethren, knowing that we shall receive heavier judgment. Be ye therefore imitators of God, as beloved children; Templeton grinned. To the saints and faithful brethren in Christ that are at Colossæ: Grace to you and peace from God our Father. The Court, a toothless and ultimately corrupt bunch of old men, backed down. Just because it's smaller than the others?” and said unto him, Get thee out of thy land, and from thy kindred, and come into the land which I shall show thee. She had left a space in the middle of the web. Then he said, If there were an easier way, I’d be willing to entertain offers. I will have to try to walk there They cried out therefore again, saying, Not this man, but Barabbas. Now Barabbas was a robber. Honed edges flashed in the sun. Is not this the carpenter’s son? is not his mother called Mary? and his brethren, James, and Joseph, and Simon, and Judas? “I will repeat the message. For 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. And 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. Insomuch that we exhorted Titus, that as he had made a beginning before, so he would also complete in you this grace also. Claire sat for a long time on the tailboard of the last wagon, leaning forward with her hair covering her face. and Azor begat Sadoc; and Sadoc begat Achim; and Achim begat Eliud; And behold, Jesus met them, saying, All hail. And they came and took hold of his feet, and worshipped him. But he said unto them, I have meat to eat that ye know not. Already 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. Be not therefore anxious, saying, What shall we eat? or, What shall we drink? or, Wherewithal shall we be clothed? There had not been a plan to the killings. And they went every man unto his own house: desiring to be teachers of the law, though they understand neither what they say, nor whereof they confidently affirm. from which things some having swerved have turned aside unto vain talking; My father Bear’s the real chief. But I exhort you, brethren, bear with the word of exhortation: for I have written unto you in few words. Asmeret is always asking questions. Then went the captain with the officers, and brought them, but without violence; for they feared the people, lest they should be stoned. And 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. And he went forward a little, and fell on the ground, and prayed that, if it were possible, the hour might pass away from him. For winter will be here soon I 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. I 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. the son of Mattathias, the son of Amos, the son of Nahum, the son of Esli, the son of Naggai, For let not that man think that he shall receive anything of the Lord; It's not a bad pitch, on the whole.” Because 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: And 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. He then having received the sop went out straightway: and it was night. But now they are many members, but one body. We chose to examine only portraits that evening. And 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? But if all prophesy, and there come in one unbelieving or unlearned, he is reproved by all, he is judged by all; “Sleep well at night?” for he loveth our nation, and himself built us our synagogue. thou who gloriest in the law, through thy transgression of the law dishonorest thou God? Lurvy gave Wilbur a forkful of fresh straw. For 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. “When are the judges going to decide about Wilbur?” asked Mrs. Zuckerman. Let 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. For no man doeth anything in secret, and himself seeketh to be known openly. If thou doest these things, manifest thyself to the world. “This is really awful,” thought Wilbur. Where the Nation is going, I said. You live on the Nation. All I’m interested in is the killers. Beware of the dogs, beware of the evil workers, beware of the concision: But 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: He that loveth his life loseth it; and he that hateth his life in this world shall keep it unto life eternal. Swinging her spinnerets into position, she attached her thread and then dropped down. Or 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? But 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. And it came to pass, as he drew nigh unto Jericho, a certain blind man sat by the way side begging: Cast not away therefore your boldness, which hath great recompense of reward. The night before his departure, Featherstone built a midnight blaze of his collected works of taxidermy, a nightmare bonfire on the lawn. And the people saw them going, and many knew them, and they ran together there on foot from all the cities, and outwent them. “Hello!” she said. Charley had a pattern to eating a squirrel. On Sunday the church was full. The word HUMBLE was woven neatly in the center. “But I can’t stand it,” shouted Wilbur. But I had my collar turned up like that, and I was carrying a gun. But 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. He went to the rock face and broke off the end of an icicle and put it in his mouth to melt. “Charlotte, what are you talking about?” Delicious! But Jesus said unto him, Forbid him not: for he that is not against you is for you. And they were bringing unto him also their babes, that he should touch them: but when the disciples saw it, they rebuked them. Avery put out his hand and the judge shook hands with him, too. And there appeared unto them Elijah with Moses: and they were talking with Jesus. And he gave her his hand, and raised her up; and calling the saints and widows, he presented her alive. and 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. “Here, here, here!” said the gander. saying, What think ye of the Christ? whose son is he? They say unto him, The son of David. I never throw anything away.” And they were saying among themselves, Who shall roll us away the stone from the door of the tomb? And 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. For the poor ye have always with you; but me ye have not always. But when he heard it, he said, They that are whole have no need of a physician, but they that are sick. Let deacons be husbands of one wife, ruling their children and their own houses well. Fear not, little flock; for it is your Father’s good pleasure to give you the kingdom. Woe 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. And when they asked him to abide a longer time, he consented not; “He has a perfect right to smell, considering his surroundings. Sell 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. And 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. And Jesus rebuked him; and the demon went out of him: and the boy was cured from that hour. Stay with me. But as then he that was born after the flesh persecuted him that was born after the Spirit, so also it is now. Its body was grey with a black stripe underneath. The rat entered the barn the way he always did — creeping along close to the wall. Now 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. The rabble that followed the soldiers to loot the farmsteads stood off at the edge of woods and waited. At 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. And Jesus seeing him said, How hardly shall they that have riches enter into the kingdom of God! and 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. This glass bottle will not become soil for thousands of years. “Tuck your shirt in, Avery!” cried Mrs. Zuckerman. The eggs are inside and will be warm and dry.” “Please, please, tell me where you are. And 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. Then they stared at Charlotte. But grow in the grace and knowledge of our Lord and Saviour Jesus Christ. To him be the glory both now and for ever. Amen. And 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? To watch his woods fill up with snow. yet now hath he reconciled in the body of his flesh through death, to present you holy and without blemish and unreproveable before him: And after the two days he went forth from thence into Galilee. And Jesus went out thence, and withdrew into the parts of Tyre and Sidon. The children answered their cheer, and away went everybody to the Fair. And leaping up, he stood, and began to walk; and he entered with them into the temple, walking, and leaping, and praising God. And there cometh one of the rulers of the synagogue, Jairus by name; and seeing him, he falleth at his feet, When 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. “Good night, Charlotte!” for 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, And grieve not the Holy Spirit of God, in whom ye were sealed unto the day of redemption. They climbed the fence into the lane and walked lazily toward the pigpen. She is very excited. “I’m right here.” and 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. And when he had agreed with the laborers for a shilling a day, he sent them into his vineyard. And when the chief priests and the Pharisees heard his parables, they perceived that he spake of them. Ye are witnesses, and God also, how holily and righteously and unblamably we behaved ourselves toward you that believe: For 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: “Stand by for an announcement!” And he taught them many things in parables, and said unto them in his teaching, Wilbur was pleased to receive so much attention. Wasseton began to object that he was not a child and should go with the men. And 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. She says lots of things go into the soil. and they blasphemed the God of heaven because of their pains and their sores; and they repented not of their works. and whatsoever we ask we receive of him, because we keep his commandments and do the things that are pleasing in his sight. So then both he that giveth his own virgin daughter in marriage doeth well; and he that giveth her not in marriage shall do better. But he that doeth the truth cometh to the light, that his works may be made manifest, that they have been wrought in God. Mr. Arable gave Fern two quarters and two dimes. Grammar and vocabulary as a weapon. Then came the disciples to Jesus apart, and said, Why could not we cast it out? And so he scorned my proposition. Wilbur did not budge. We want Zuckerman to think Wilbur is nicely filled out, not all shrunk up. It 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. Now 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), And early in the morning he came again into the temple, and all the people came unto him; and he sat down, and taught them. He was a brave man because he never gave up. For 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. And Mary Magdalene was there, and the other Mary, sitting over against the sepulchre. Everywhere 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.” And Jesus, being moved with compassion, touched their eyes; and straightway they received their sight, and followed him. And all went to enrol themselves, every one to his own city. “Did you say a board was loose?” Now it came to pass in those days, there went out a decree from Cæsar Augustus, that all the world should be enrolled. And I’m just the chief when it comes to business and law. but 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. There came a man, sent from God, whose name was John. But 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. whereunto I labor also, striving according to his working, which worketh in me mightily. But 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. Now and again, they were. They were once a fierce people, but they’re long since worn down from losing. But in vain do they worship me, Teaching as their doctrines the precepts of men. He 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. Now 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. It was my Lancelot moment. He popped the reins on the mules’ backs, and they pulled. The voice of one crying in the wilderness, Make ye ready the way of the Lord, Make his paths straight; So he pushed the straw to one side and stretched out in the manure. By doing so, even a blind man would strike the river eventually. But 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; And there was always hay being pitched down to the cows and the horses and the sheep. I 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. What shall we say then? Is there unrighteousness with God? God forbid. And 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. And he saith unto him, I will come and heal him. For we preach not ourselves, but Christ Jesus as Lord, and ourselves as your servants for Jesus’ sake. And 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. And they all ate, and were filled: and they took up that which remained over of the broken pieces, seven baskets full. Of course, I don’t really eat them. I drink them—drink their blood. “What do you think I am, a messenger boy? grumbled the rat. Then began he to upbraid the cities wherein most of his mighty works were done, because they repented not. Art thou greater than our father Abraham, who died? and the prophets died: whom makest thou thyself? And Mary said, My soul doth magnify the Lord, He 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. which he made to abound toward us in all wisdom and prudence, And 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. “Are you out there, Templeton?” called Wilbur. For 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; and if I send them away fasting to their home, they will faint on the way; and some of them are come from far. Now 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. Asmeret is a soil scientist. “He’s filthy behind the ears,” said Mrs. Zuckerman. And they remembered his words, night and day praying exceedingly that we may see your face, and may perfect that which is lacking in your faith? “You can indeed,” said the spiders. But Peter and the apostles answered and said, We must obey God rather than men. And 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. “When I’m hanging head—down at the top of my web. He 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. And 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. It 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. And 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, The other made little jerky emphatic gestures with just his fisted right hand and kept his left in his coat pocket. This is our moment for setting forth. And 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.) and having a great priest over the house of God; When someone was sick, the people in the neighboring area would come and sit up with the sick. But … she could not ride her bicycle, and after a while she was too hot in the suit. for through him we both have our access in one Spirit unto the Father. He may want to bring a photographer. and 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. And Jesus answering spake unto the lawyers and Pharisees, saying, Is it lawful to heal on the sabbath, or not? And 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. They rooted with their flanged snouts and long tusks for something in the ground that they savored, some grub or minuscule rodent. because that by reason of him many of the Jews went away, and believed on Jesus. For this ointment might have been sold for above three hundred shillings, and given to the poor. And they murmured against her. Grace to you and peace from God our Father and the Lord Jesus Christ. Why do ye not understand my speech? Even because ye cannot hear my word. who bare witness of the word of God, and of the testimony of Jesus Christ, even of all things that he saw. But ye did not so learn Christ; Rejoice, and be exceeding glad: for great is your reward in heaven: for so persecuted they the prophets that were before you. and certain women who had been healed of evil spirits and infirmities: Mary that was called Magdalene, from whom seven demons had gone out, while thou stretchest forth thy hand to heal; and that signs and wonders may be done through the name of thy holy Servant Jesus. I rejoice that in everything I am of good courage concerning you. And when many days were fulfilled, the Jews took counsel together to kill him: And 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. Avery was ten. And Jesus advanced in wisdom and stature, and in favor with God and men. and 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? “Now isn’t that just the word for Wilbur!” Jackson had long since announced his intention to remove all Indians to the West. Both of us eyed the little special doughballs filled with meat, the dense rum cakes and dark mincemeats. Wilbur walked up to the fence and saw that the goose was right—one board was loose. Henceforth let no man trouble me; for I bear branded on my body the marks of Jesus. And 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. Charlotte is fierce, brutal, scheming, bloodthirsty—every - thing I don't like. It was a shotgun, but I was still scared. I was scared, but when you’re dating someone… And the devil said unto him, If thou art the Son of God, command this stone that it become bread. And when the Pharisees saw it, they said unto his disciples, Why eateth your Teacher with the publicans and sinners? Avery kissed Wilbur. And while they still disbelieved for joy, and wondered, he said unto them, Have ye here anything to eat? But they, when they heard this, were cut to the heart, and were minded to slay them. wherefore 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. I think I’m languishing, to tell you the truth.” It was in the soft palm of her hand. At last the hunters could destroy the evil witch. And 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, And 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. Blessed is that servant, whom his lord when he cometh shall find so doing. I will very likely know what it is, said Wolf. I will go too. Now the feast of unleavened bread drew nigh, which is called the Passover. The 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. For 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. From up the hill at the trading post, looking down across the river, there was a dream geometry to the place. And it is a shame they didn’t, for they would have put Burr and Hamilton in the shade as a piece of history. Woe unto you lawyers! for ye took away the key of knowledge: ye entered not in yourselves, and them that were entering in ye hindered. The 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. Claire was gone. And 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. And 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; “Now run along!” he said. Their tongues turned from purple to red. There is evidence of soil being made right now. All these things spake Jesus in parables unto the multitudes; and without a parable spake he nothing unto them: For it is written, I will destroy the wisdom of the wise, And the discernment of the discerning will I bring to nought. And he answering saith unto him, Lord, let it alone this year also, till I shall dig about it, and dung it: But when the Jews spake against it, I was constrained to appeal unto Cæsar; not that I had aught whereof to accuse my nation. The boy did not do it immediately but waited until he finished eating his dinner. I 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. And when he had thus spoken, he dismissed the assembly. Here, 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. The 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. Which 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? Please climb up!” At the bottom, she attached the thread. So 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. with good will doing service, as unto the Lord, and not unto men: For the wisdom of this world is foolishness with God. For it is written, He that taketh the wise in their craftiness: And the fame hereof went forth into all that land. And cast ye out the unprofitable servant into the outer darkness: there shall be the weeping and the gnashing of teeth. If 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: But the thought kept weighing on him that a bear would be awfully good eating about now. She touched my face and said, I want to remember how you look, at least for a while. It’s time I made an egg sac and filled it with eggs.” these therefore came to Philip, who was of Bethsaida of Galilee, and asked him, saying, Sir, we would see Jesus. For it is impossible that the blood of bulls and goats should take away sins. Ye 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. “Is that true?” asked Wilbur. It made a bouncing motion with its front end. My cousin wrapped it up so tight it couldn’t budge.” But 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. Then she stopped and insisted on feeding her chickens before she was taken away. The 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, and 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. Brethren and fathers, hear ye the defence which I now make unto you. and again, The Lord knoweth the reasonings of the wise, that they are vain. of righteousness, because I go to the Father, and ye behold me no more; For 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. but when the fulness of the time came, God sent forth his Son, born of a woman, born under the law, Behold, 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. He felt the pleasant rubbing of the stick along his itchy back. The message I wrote in my web, praising Wilbur, has been received. Even at midnight there is usually something stirring. Thomas saith unto him, Lord, we know not whither thou goest; how know we the way? for your fellowship in furtherance of the gospel from the first day until now; And they were exceeding sorrowful, and began to say unto him every one, Is it I, Lord? and seeing Peter warming himself, she looked upon him, and saith, Thou also wast with the Nazarene, even Jesus. Salute one another with a holy kiss. And he sent another; and him they killed: and many others; beating some, and killing some. And 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? to reveal his Son in me, that I might preach him among the Gentiles; straightway I conferred not with flesh and blood: And the child grew, and waxed strong in spirit, and was in the deserts till the day of his showing unto Israel. He that hath an ear, let him hear what the Spirit saith to the churches. “He’s hot,” said Fern. The Arables climbed into their truck and hurried over. How can you be sure your friend is an early riser?” But Jesus perceiving it said unto them, Why trouble ye the woman? for she hath wrought a good work upon me. For all the prophets and the law prophesied until John. For 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. But 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. The joints of Charleston’s knees let go and he collapsed like pleated cloth straight to the ground and did not move further. He 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.” There was hardly any autumn that year. partly, being made a gazingstock both by reproaches and afflictions; and partly, becoming partakers with them that were so used. There was a blue bird named Buddy, as happy as he could be - he was helping his mom get ready. For whether we are beside ourselves, it is unto God; or whether we are of sober mind, it is unto you. And there was delivered unto him the book of the prophet Isaiah. And he opened the book, and found the place where it was written, wherein 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; And 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. And 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. And every day, in the temple and at home, they ceased not to teach and to preach Jesus as the Christ. And 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. let 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, of judgment, because the prince of this world hath been judged. But 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; Don't go without a tussle. And 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. and they that are in the flesh cannot please God. For we can do nothing against the truth, but for the truth. “It would surely set the houses ablaze as well,” said he. “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. After 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. that saying ye yourselves know, which was published throughout all Judæa, beginning from Galilee, after the baptism which John preached; “No,” said Charlotte, “I believe I’d better stay home and see if I can’t get some work done.” But Jesus turning unto them said, Daughters of Jerusalem, weep not for me, but weep for yourselves, and for your children. He was standing there, thinking of her, when he heard a small voice. When they arrived, the beaver said, here; what is it? cease not to give thanks for you, making mention of you in my prayers; One by one the stars went out. They 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. Yet no man spake openly of him for fear of the Jews. Here 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. Herein 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. that ye put away, as concerning your former manner of life, the old man, that waxeth corrupt after the lusts of deceit; and the rest laid hold on his servants, and treated them shamefully, and killed them. And when they heard these things, they held their peace, and glorified God, saying, Then to the Gentiles also hath God granted repentance unto life. Who 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. But what saith the answer of God unto him? I have left for myself seven thousand men, who have not bowed the knee to Baal. Now 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. Now these things having been thus prepared, the priests go in continually into the first tabernacle, accomplishing the services; Let 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. In conclusion, what are we to do with him? “Look at my frog!” said Avery, placing the frog on the drainboard and holding out his hand for pie. and 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. And be back here at the truck at noontime so we can all have lunch together. We give thanks to God always for you all, making mention of you in our prayers; Will the party who addressed me at bedtime last night kindly speak up. And the multitudes said, This is the prophet, Jesus, from Nazareth of Galilee. Holes opened in the ground and filled with bad water. He came unto his own, and they that were his own received him not. And a voice came out of the cloud, saying, This is my Son, my chosen: hear ye him. “Charlotte?” he said, softly. The Zuckermans were so busy with visitors they forgot about other things on the farm. “I think I shall ask Dr. Dorian about her the next time I see him. Tend 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; Their job was to work their way upriver and clean the Indians out of the mountains cove by cove. A 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. But when Charley grew short of breath and slowed to a walk, the bear soon outdistanced him. In the spring when the ground gets soft enough to turn, our family start putting in our garden. “ ‘Humble,’ ” said Mr. Zuckerman. For 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: and set forth customs which it is not lawful for us to receive, or to observe, being Romans. Of a truth I say unto you, that he will set him over all that he hath. “The school bus will be along in half an hour.” Wilbur shut his eyes. That which is born of the flesh is flesh; and that which is born of the Spirit is spirit. And there were many lights in the upper chamber where we were gathered together. even as the testimony of Christ was confirmed in you: But when Pilate heard it, he asked whether the man were a Galilæan. This is the hour when frogs and thrushes Praise the world from the woods and the rushes. But 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; It 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. And as he entered into a certain village, there met him ten men that were lepers, who stood afar off: In no time at all, the seedling grew branches and more leaves. “Maybe our ears aren’t as sharp as Fern’s,” he said. Most mornings they arose at dawn, wet and unrested. “You have your meals brought to you in a pail. for he powerfully confuted the Jews, and that publicly, showing by the scriptures that Jesus was the Christ. When 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. And 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. and having shod your feet with the preparation of the gospel of peace; Today I shall find my friend.” even so ye also, when ye see all these things, know ye that he is nigh, even at the doors. They break dead things down into soil. The streams and ditches bubbled and chattered with rushing water. and Solomon begat Rehoboam; and Rehoboam begat Abijah; and Abijah begat Asa; Then said he unto them, Nation shall rise against nation, and kingdom against kingdom; Behold, 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. I exhort therefore, first of all, that supplications, prayers, intercessions, thanksgivings, be made for all men; And that was all fine for those people out on the Nation, but it hadn’t changed the Possum’s mind a bit. “I suppose it is uncomfortable. and said unto them, Why sleep ye? rise and pray, that ye enter not into temptation. “See me now?” she asked. For she said, If I touch but his garments, I shall be made whole. And the women, who had come with him out of Galilee, followed after, and beheld the tomb, and how his body was laid. Wilbur looked through the fence and saw the goose standing there. “Why aren't you asleep, Wilbur?” And she knew her children were safe. But he saith unto them, It is I; be not afraid. And 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. For the scripture saith, Thou shalt not muzzle the ox when he treadeth out the corn. And, The laborer is worthy of his hire. Now 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. Now concerning the things whereof ye wrote: It is good for a man not to touch a woman. “Then what happened?” asked Wilbur. The Zuckermans went up to change into their best clothes. not purloining, but showing all good fidelity; that they may adorn the doctrine of God our Saviour in all things. “Fern!” snapped her mother. She knew he was saying good-bye in the only way he could. he left Judæa, and departed again into Galilee. Mrs. 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. But go, tell his disciples and Peter, He goeth before you into Galilee: there shall ye see him, as he said unto you. And when saw we thee a stranger, and took thee in? or naked, and clothed thee? Be not deceived, my beloved brethren. You are the only one that can get it. Then went out unto him Jerusalem, and all Judæa, and all the region round about the Jordan; And when he was entered in, he saith unto them, Why make ye a tumult, and weep? the child is not dead, but sleepeth. I wrote unto you in my epistle to have no company with fornicators; And 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. I remember overnighting at a tavern in the hill country, where homesick Irish fiddlers and pipers and drummers played their music until almost sunrise. And he answered and said, It is not meet to take the children’s bread and cast it to the dogs. Now there were dwelling at Jerusalem Jews, devout men, from every nation under heaven. And 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. The 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. The same came for witness, that he might bear witness of the light, that all might believe through him. And we bring you good tidings of the promise made unto the fathers, And he came into all the region round about the Jordan, preaching the baptism of repentance unto remission of sins; “To think that when I first met you I thought you were cruel and bloodthirsty! ” But 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. When 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. “I don’t want to die.” But now I go unto him that sent me; and none of you asketh me, Whither goest thou? For we through the Spirit by faith wait for the hope of righteousness. And 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. “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.” And he looked round about on them all, and said unto him, Stretch forth thy hand. And he did so: and his hand was restored. They grew quite rapidly. Of course, they were both from South Carolina and thus given to strange enthusiasms. They 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. The minister’s skin was as white as the thin pages of the Bible open on his lap. We start tomatoes early, helping them along until it gets warm enough to put them in the ground. Even 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. For by one offering he hath perfected for ever them that are sanctified. It went still and lay with the water flowing around the bulk of it in a pair of smooth curves. to a virgin betrothed to a man whose name was Joseph, of the house of David; and the virgin’s name was Mary. Be diligent in these things; give thyself wholly to them; that thy progress may be manifest unto all. But Claire ran to me. “Jump and dance!” said the rooster. The apple tree was beautiful … Which 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. Verily, verily, I say unto you, A servant is not greater than his lord; neither one that is sent greater than he that sent him. for where thy treasure is, there will thy heart be also. People came from miles around to look at Wilbur and to read the words on Charlotte’s web. Hunters bloomed out of the fog and ran past him without letup. And 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. Nor could any of the young aides to French diplomats understand me when I tried to speak. And the wall of the city had twelve foundations, and on them twelve names of the twelve apostles of the Lamb. But a certain one of them, Caiaphas, being high priest that year, said unto them, Ye know nothing at all, For 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. “Come now, let’s not make a scene,” said the spider. And if this come to the governor’s ears, we will persuade him, and rid you of care. And after the second veil, the tabernacle which is called the Holy of holies; When 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. But the end of the charge is love out of a pure heart and a good conscience and faith unfeigned: And 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. The bandits’ cook pots hung behind their saddles, clashing like unpleasant bells as they coursed along the roadways. They had a television, and we would go just about every evening. When the dog noticed that we were willing to follow him, he kept going and did not run back. I returned to the office of the secretary of war as soon as my embarrassing entrance into politics could be corrected. He was glad to see Mrs. Arable and gave her a comfortable chair. That means they break down into smaller and smaller pieces. Private ownership of land was intended to mean something in this country. The truck stopped. And the high priest Ananias commanded them that stood by him to smite him on the mouth. ================================================ FILE: a4/chr_en_data/train.chr ================================================ ᎠᎴ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏛ ᎠᏃᎯᏳᎲᏍᎩ ᎠᎾᏚᏓᎴᎭ ᏂᎦᎥ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᎨᏣᏚᏓᎳᎡᏗ ᏂᎨᏒᎾ ᏥᎨᏒ ᎼᏏ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏕᏥᎧᎿᏩᏗᏒ ᎢᏳᏍᏗ. ᎤᏯᎪᏅ ᎠᏰᎸᎢ, ᎠᏍᎪᎵ ᎤᏍᏆᏄᏤ ᎫᏕᎶᎰᎯᏍᏗ ᏄᏍᏛ ᎢᎪᎯᏛ, ᏩᏥᎳᏉ ᎢᏳᏍᏗ. ᎠᏎᏃ ᎾᏂᎥ ᎤᎾᏤᎵᏛᎭ; ᎦᎶᏁᏛ ᏧᏓᎴᏅᏔᏅᎯ; ᎣᏂᏃ ᎾᏍᎩ ᎾᎦᎶᏁᏛ ᏧᏤᎵ ᎨᏒ ᎾᎯᏳ ᎦᎷᏨᎭ. ᎤᏓᎴᏨ ᎨᏎ ᎱᎷᏨᎢ. ᎾᏍᎩᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᏪᎧᏅᎩ ᎠᏫᏅ ᎠᎴ ᎠᏁᏤᎸᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᎩᎶ ᎯᏃᏁᎸ ᎾᏍᎩ ᎯᎠ ᎬᏂᎨᏒ ᏂᏍᏋᏁᎸᎢ. ᏭᏌᎩᏒ ᎪᏪᎵ ᎣᏍᏓ ᎤᎪᎵᏰᎥ ᎠᏍᏓᏱᏛ, ᏔᎵᏁ ᏄᏪᏒ, ᎦᎸᎳᏗ ᎠᏓᏅᏖᎵᏙ ᎤᏥᎸ. ᎠᎴ ᏞᏍᏗ ᏂᎯ ᏱᏥᏲᎮᏍᏗ ᎢᏳᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᎢᏳᏍᏗ ᎢᏣᏗᏔᏍᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏧᏢᏫᏛ ᏱᏂᏚᏍᏕᏍᏗ ᏕᏣᏓᏅᏛᎢ. ᎤᏩᏃᏪ ᏫᎵᎻ ᎤᎪᎭ. ᎾᎿᏃ ᏚᎴᏅ, ᏧᏗᏱ ᎦᏓ ᎠᎲᎢ ᎤᎷᏤᎢ, ᏦᏓᏂ ᎠᏍᎪᏂᏗᏢ ᏧᎶᎯᏍᏔᏁᎢ; ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᏔᎵᏁ ᎢᎬᏩᏓᏟᏌᏁᎴᎢ; ᎠᎴ ᎢᏳᏛᏁᏗ ᎨᏒ ᏄᏛᏁᎴᎢ, ᏔᎵᏁ ᏚᏪᏲᏁᎢ. ᏣᏍᎪᏃ ᎢᎦᏓ ᏦᎯᏍᏙᏗ ᏱᎩ. ᎤᏏᏩ ᎨᏎᎢ ᎤᎾᏓᎪᎾᏙᏗ. ᎠᎴ ᎣᏍᏛ ᎾᎾᏛᏁᎮᏍᏗ, ᎠᎴ ᎤᏁᎿᎢᏳ ᎨᏎᏍᏗ ᎣᏍᏛ ᎾᎾᏛᏁᎲᎢ, ᎠᎴ ᎠᏂᎦᎵᏰᏍᏗ ᎤᎾᏓᏁᏗᏱ, ᎠᏂᏯᏙᎯᎯ ᎨᏎᏍᏗ ᎤᏂᎲᎢ, ᎠᎦᏗᏓ ᏚᎾᏓᏚᎯᏍᏕᎢ ᎤᏲ ᎠᏒᎬ, ᏃᎴ ᎤᏩᎬᏘᎶᏓ ᎤᏃᎮᎴ ᏫᎵᎻ ᏄᎵᏍᏔᏁᎸ ᎡᎳᏆᏗ ᏃᎴ ᎤᏁᎸᏔᏅ ᎤᏂᏴᏗ ᏌᎳᏓ ᏃᎴ ᎤᏪᏥ ᎤᎪᏏᏓ ᎤᏲᏨ ᎤᎨᎯᏙᎸ ᎡᎳᏆᏗ. ᎢᎸᏍᎩᏍᎪ ᎢᏯᏥᏛᎯ ᎦᎶᏁᏛ? ᏉᎳᏍᎪ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏁ ᎢᏥᏍᏕᎸᏗᏱ? ᎠᎴᏍᎪ ᏉᎳ ᏚᏙᎥ ᏕᏣᏬᏍᏔᏁᎢ? ᎤᎦᏙᏍᏛᎢ ᏫᎵᎻ ᏚᏲᏎ ᎠᏦᏴᎢ ᏃᎴ ᎤᎵᏌᎵᏓᏁᎢ. ᎤᏁᎷᏁᎢ ᎤᎾᏓᏓᏍᎩ. ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎥᏝ ᏱᎨᎦᏛᎦᏃ ᎩᎶ ᏚᏍᏚᎢᎡᎸ ᏗᎦᏙᎵ ᏗᎨᏫ ᎤᏕᏅᎯ. ”ᎪᎱᏍᏗ ᏕᏥᎪᏩᏘᎭ,” ᎤᏛᏁ ᎠᏝᏪᎯ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ; ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ. ᏃᏉᏗ ᎯᏢᎾ.” ᏍᎩᏴᏃ ᎠᏥᎳ ᎠᎪᎲᏍᎬ ᎯᎠ ᎠᏂᏴᏫ ᏣᎾᏴᎩᏍᎨ ᏗᎧᏃᎩᏓ ᎠᏥᎸ ᎢᏣ ᏗᏓᏅᏫᏍᎩ ᏗᎧᏃᎩᏓ. ᎤᏍᏆᏙᏅ ᎤᎦᏔᎲᏍᎬ ᏄᏍᏛ, ᎤᏅᎦᎸᎲ ᎪᎢᎭ ᎦᏰᏌᏛ. ᎠᎴ ᎾᏍᎩ ᏥᏫᏍᎪᎢ, ᎥᏝ ᎾᏍᎩ ᎠᏰᎸ ᎤᏙᏢᏗ ᎨᏒ ᏱᏫᏍᎪᎢ, ᎤᎦᏔᎭᏉᏍᎩᏂ, ᎤᏣᎴᏍᏗᏉ ᏱᎩ, ᎠᎴ ᎪᎱᏍᏗᏉ ᎤᏍᏗ ᏅᏩᏓᎴ ᏱᎩ; ᎤᏲ ᎤᎾᏗᏅᏗ ᏪᏙᎰ ᎢᎪᎯᏓ ᏃᎴ ᏓᎪᏩᏘᏍᎪ ᏧᏪᏘ ᏗᎪᏪᎵ ᏗᎪᎵᏰᏗ. ᎾᎯᏳᏃ ᎤᏒᎯ ᎢᏈᎬᎢ ᏂᎦᏟᎮ, ᎠᏧᏣᏃ ᏒᎦᏔ ᏚᎧᏁᏞᎢ ᎥᎿ ᎤᏩᏅᎦᏢᎢ ᏒᎦᏔ ᎢᏈᎬᎢ. ᏍᎩᏃ ᎣᏍᏓ ᎠᏆᏅᏛ, ᎢᏳᏍᏘ ᎤᎾᎩᎵ ᎠᏂᏲᏍᎨ ᏃᎴ ᎠᏁᎩ ᎤᏂᏍᎦᏅᏨ ᏑᎾᎴ ᏥᏂᎦᎵᏍᏗ ᏣᎾᏂᎩᏍᎨ, ᎠᏌᎻᏓ ᎤᏍᎦᎢᏓ ᎤᏔᏁ ᎤᏍᏗ ᎪᏪᎵ ᏗᏆᏥᎶᏍᏔᏅ ᎠᏥᎶᏛ. ᏤᏍᏗᏗ ᏱᏙᎨᏍᏗᏉ, ᏫᎵᎻ! ᎬᏂᎨᏒᎢᏳ ᎢᏰᏨᏁᎸᎯ ᏂᎯ ᎦᎶᏁᏛ ᎤᏤᎵ ᎪᏪᎵ ᎨᏒᎢ, ᎠᏴ ᏦᎩᎸᏫᏍᏓᏁᎸᎯ, ᎪᏪᎳᏅᎯ ᎪᏪᎶᏗ ᎬᏔᏅᎯ ᏂᎨᏒᎾ, ᎠᏓᏅᏙᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎬᏂᏛ ᎤᏤᎵ ᎬᏔᏅᎯ; ᎥᏝ ᏅᏲᎯ ᏗᎪᏪᎶᏗᏱ ᏗᎪᏪᎳᏅᎯ ᏱᎩ, ᎤᏇᏓᎵᏍᎩᏂ ᎨᏒ ᏗᎪᏪᎶᏗᏱ ᎣᎾᏫᏱ. ᎯᎠᏃ ᏅᏥᏪᏎᎸᎩ, ᏣᎬᏫᏳᎯ ᏂᎯ ᎯᎦᏔᎭ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎠᏍᎩᏂ Ꮎ ᎤᏣᏘ ᎠᎩᎵᏯ ᎨᏒ ᏅᏓᏳᏂᎶᏒᎯ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎩᎬᏱ ᏧᏅᎩᎶᎥᎯ ᏧᎾᏁᏬ ᎠᎴ ᏧᏁᎬ ᎢᏧᏅᏁᎸᎯ. ᎠᏎᏴᏫᏃ ᏚᏍᏆᎸᏔᏅ, ᎠᎴ ᏚᏬᎵ ᏧᏂᏦᏯᏍᏗ ᏭᎧᎵᎢᏍᏔᏅ, ᎠᎴ ᎦᎾᏍᏙᎯ ᎤᏪᏆᏔᏅ, ᎤᏁᏁᎸ ᎤᏗᏔᏍᏗ; ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᎩ, ᎢᏓᏙᎴᎰᎯ, ᏥᎪᏃ ᎢᏔᏯ ᏓᎦᎷᏥ ᏓᏳᏠᎥᏔᏂᎵ. ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏫᎦᎷᎬ ᎢᎦ ᏒᎯᏰᏣ ᎠᏗᏔᎯᏙ ᏃᎴ ᎠᏓᏩᏛᎯᏙ. ᎿᏉᏃ ᎠᏂᏯᏫᏍᎩ ᏚᏂᎦᎵᏒᎩ ᎠᏍᏕᏱᏛ ᎤᏍᏗ ᏥᏳ ᎦᏙᏌᏗᏍᏛᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏬᎰᏒᎩ. ᎠᏎᏃ ᎾᏍᎩ ᏂᏣᏛᎦ ᏕᏥᏍᎦᏅᏥ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎤᏲ ᏂᏕᏨᎦ ᏗᏩᎾᎦᎳ ᏚᎾᏓᏅᏛᎢ, ᎦᎶᏁᏛ ᎡᏥᏍᎦᏅᏤᎰᎢ. “ᎨᏍᏗᏗ ᏍᏆᏬᏣ ᏱᎬᏲᏎᎳ,” ᎤᏛᏁ ᎰᎻ. ᎤᏍᏗ ᏚᏄᏌᏛ, ᎠᏎ ᎤᏍᎪᏍᏛ ᎠᎦᎵᏍᎬ ᎦᏲᏟᏉ ᎠᎪᏩᏛᏗ, ᎠᏥᎸ ᎠᏨᏍᏛ ᎨᏍᏗ ᎠᎪᏩᏛᏗ ᏱᎨᏎ. ᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᎠᏏ ᏂᎦᎾᏄᎪᎬᎾ ᏥᎨᏎᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎭᏫᏂᏗᏢ ᏂᎦᏛ ᏅᎩ, ᎡᎩᏍᏚᎲᎩ ᎪᎯᏳᏗ ᎨᏒ ᎣᏂ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎨᏒ ᎢᏯᏍᏗ. ᎤᎾᏓᏅᏘᏃ ᎪᎯᏳᏗ ᎨᏒ ᎤᎾᏛᏂᏗᏍᏕᏍᏗ; ᎩᎶᏍᎩᏂ ᎢᏳᏍᏗ ᎢᎠᏨᏍᎨᏍᏗ ᎠᏆᏓᏅᏙ ᎥᏝ ᎣᏏᏳ ᏳᏰᎸᏎᏍᏗ ᎾᏍᎩ. ᎾᏍᎩᏃ ᎾᏂᎥ ᏚᏲᎱᎯᏎᎴᎢ, ᎾᏍᎩ Ꮎ ᏗᏅᏃᏛ ᏥᎩ ᎪᎯ ᎨᏒ ᎢᏳᏓᎴᏅᏛ ᎤᏅᏒᏉ ᎤᎾᏤᎵ ᎤᎬᏩᎵ ᎤᎾᎴᏂᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᏤᎵ ᎤᎬᏩᎵ ᏧᏲᎱᎯᏎᎸᎯ ᎠᎴ ᏧᎴᎯᏌᏅᎯ ᏥᎩ. ᏂᎯ ᎾᏍᏉ ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ; ᏗᏣᎵᏂᎪᎯᏍᏓ ᏗᏥᎾᏫ, ᎤᎬᏫᏳᎯᏰᏃ ᎤᎷᎯᏍᏗᏱ ᎤᏍᏆᎸᎯᏗ. ᎢᏥᏁᎬᏍᎩᏂ ᎯᎠ ᏄᏍᏕᏍᏗ, ᎥᎥ, ᎥᎥ; ᎥᏝ, ᎥᏝ; ᎤᏟᏰᏃ ᏥᏂᎦᎣ ᎤᏲᏉ ᎨᏒ ᏗᏓᎴᏂᏍᎪᎢ. ᎠᎴ ᎾᏍᏉ ᏗᎦᏤᎵᎦ ᏩᎾᏕᎶᏆ ᏂᎪᎯᎸ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎾᏍᎩ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎾᏍᎩ ᎠᏂᏁᏉᏍᎩ ᎢᏳᎾᎵᏍᏙᏗᏱ. ᎢᏤᏯᏔᎮᏍᏗ, ᎢᏥᏯᏫᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ; ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎢᏳ ᎨᏒᎢ. ᎣᏲᎢᏳᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ, ᎠᎴ ᎢᏥᏆᎵᏏ, ᎢᏣᏠᎾᏍᏗ! ᏂᎯᏰᏃ ᏓᏓᏂᏌᎲ ᏕᏣᏤᎸ ᏄᏪᎵᏍᏛᎾ ᏥᎨᏐᎢ, ᎠᎴ ᏴᏫ ᎦᏚᎢ ᎠᏂᎶᏍᎩ ᎥᏝ ᏱᎾᏙᎴᎰᏍᎪᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᏥᏂᏨᏪᏎᎸᎩ, ᎠᏏᏉ ᏥᏨᏰᎳᏗᏙᎲᎩ, ᎾᏍᎩ ᏂᎦᎥ ᎾᏍᎩ ᎠᏎ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ ᎪᏪᎳᏅᎯ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎼᏏ ᎤᏤᎵᎦ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏃᏪᎸᎢ, ᎠᎴ ᏗᎧᏃᎩᏍᏗᏱ, ᎠᏴ ᎬᎩᏃᎮᏍᎬᎢ. ᎦᎶᏇ ᏭᏴᎮ ᏃᎴ ᏄᏓᎴ ᎦᏚ ᎤᎦᎾᏍᏓ ᎠᏔᎸᎩᏓ ᎡᎳᏆᏗ. ᎾᏍᎩᏯ ᎠᏗᎾ ᎦᎶᏁᏛ ᎣᏍᏛ ᎧᏃᎮᏛ ᏧᎵᎶᎲᏍᎦ ᏂᏣᏛᏁᎴᏙᎮᏍᏗ; ᎾᏍᎩ ᎢᏳᏃ ᏱᏫᏨᎷᏤᎸ ᎠᎴ ᏱᏫᏨᎪᎥ, ᎠᎴ ᏯᎩᎪᏁᎸᏉ, ᏱᎦᏛᎬᎦ ᏂᏣᏛᎿᏕᎬᎢ, ᎤᎵᏂᎩᏛ ᏕᏥᏙᎬ ᏌᏉ ᎠᏓᏅᏙᎩᎯ, ᏌᏉ ᎠᏓᏅᏖᏗ ᎬᏗ, ᎠᏤᏉᎶᎯ ᎢᏣᏟᏂᎬᏁᏗᏱ ᎢᏥᏍᏕᎸᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ. ᎾᏍᎩᏃ ᎤᏕᏘᏴᏌᏗᏒᎢ ᏭᎵᏏᎩᏴᎢ ᎤᏒᎯᏰᏱ ᎾᏍᎩ ᎯᎠ ᏥᏌ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏂᎦᏛ ᎣᏥᏃᎮᏍᎩ. ᎯᏅᏏᏓᏍᏗ ᏕᏫ ᎠᎰᎵ ᏨᏔᏅᎯ ᎯᎠ ᎢᏣᏪᏛ ᏥᎩ; ᎦᏙᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᎳᏬᏎᎢ, ᎠᎴ ᏴᏫ ᎤᎾᏓᏅᏖᎴ ᎢᏳᎾᏛᏁᏗᏱ ᎾᏍᎩ ᎢᎬᏩᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎰᎵᎦᏧ?” ᏓᏨᏃᎯᏎᎵ ᏥᎸᏉᏗ ᎨᏒ ᎯᏥᏥ. ”ᏂᎬᎾᏛ ᎠᏓᏅᎵᏰᎠ,” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎢᏣᏛᎩᏍᎨᏍᏗᏃ ᏓᏅᏩ, ᎠᎴ ᎠᏂᏃᎮᎵᏙᎲ ᏓᏅᏩ, ᏞᏍᏗ ᏱᏣᏕᏯᏔᏁᎮᏍᏗ; ᎾᏍᎩᏰᏃ ᎠᏎ ᎢᏳᎵᏍᏙᏗ; ᎤᎵᏍᏆᏗᏍᏗᏱᏍᏗᏂ ᎨᏒ ᎠᏏ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎨᏥᏅᏏᏛ ᎠᏂᏅ ᎢᎬᏱᏗᏢ ᏚᏂᎧᏁᎢ; [ᎨᏥᏅᏛᏃ] ᎤᎾᏓᏙᎵᏍᏔᏅ ᏚᎾᏏᏔᏕᎢ. ᎠᎴ ᏅᎩᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏆᏛᎦᏅᎩ ᎧᏁᎬ ᏅᎩᎬ ᎾᏍᎩ Ꮎ ᎬᏃᏛ ᎯᎠ ᏂᎦᏪᏍᎬᎢ, ᎡᎭᎦᏔᏄᎦ. ᏲᎾ ᎤᏤᏍᏙ ᏭᎧᏔᏁᎢ ᎧᏁᏌᎢ, ᎧᏴᏐᎵ ᎬᏗ ᎠᎲᏏᏙᎮ ᎧᏁᏍᎦ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎢᏣᏛᏟᎶᏒᎲ, ᎾᏍᎩᏯ ᎡᏣᎵᎾᎶᏒᏗ ᎨᏎᏍᏗ; ᏂᎯᏃ ᎢᏣᏛᎩᏍᎩ ᎡᏥᏁᏉᎡᏗ ᎡᏥᏁᏗ ᎨᏎᏍᏗ. ᏫᎬᏲᏪᎳᏏ ᏗᎹᏗ ᎬᎨᏳᎢ ᎠᏇᏥ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎤᏓᏙᎵᏣᏛ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎦᎶᏁᏛ ᏥᏌ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ. ᎠᏗᎾ ᎢᏨᏂᏗᏳ ᎨᏒ ᎤᎧᎵᏨᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ; ᎾᏍᎩᏃ ᏂᎯ ᎢᏥᎧᎵᏨᎯ ᎠᎴ ᎢᏥᏃᏍᏛ ᎨᏎᏍᏗ, ᎪᎱᏍᏗ ᏂᏥᎪᎸᎾ. ᏌᏩᏂᏃ ᏈᏓ ᎤᏍᏓᏩᏛᏒᎩ ᏥᏌ, ᎠᎴ ᎾᏍᏉ ᏅᏩᏓᎴ ᎠᏓᏍᏓᏩᏗᏙᎯ. ᎾᏍᎩ ᎠᏓᏍᏓᏩᏗᏙᎯ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎦᏔᎯ ᎨᏒᎩ; ᎢᏧᎳᎭᏃ ᏥᏌ ᎤᏂᏴᎸᎩ ᎤᏜᏅᏛᎢ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎦᏁᎸᎢ. ᏝᏍᎪ ᏚᏳᎪᏛ ᏱᎩ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎨ ᎢᏯᏋᏁᏗᏱ ᎠᏆᏤᎵ ᎨᏒᎢ? ᏥᏌ ᎯᎦᏙᎵ ᎤᏲᎢᏳ ᎢᎩ ᏅᏗᎦᎵᏍᏙᏗ ᎠᏴ ᎠᏆᏓᏅᏘᏳ ᎨᏒᎢ? ᎾᏍᎩᏃ ᎿᏉ ᎤᏂᏣᏘ ᎤᎾᏙᎴᎰᏒ ᏥᏌ ᎾᎿ ᏄᏙᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᎰᎯ, ᎾᏍᎩ ᎾᏍᏉ ᏥᏳᎯ ᏚᎾᏣᏅᎩ, ᎠᎴ ᎨᏆᏂ ᎤᏂᎷᏨᎩ, ᎠᏂᏲᎲᎩ ᏥᏌ. “ᎠᏯᏍᎪ ᎠᏆᏓᏅᏖᏙᏗ.” ᎠᏎᏃ ᎤᏛᎦᏅ ᎠᏥᎳ ᎤᎬᏫᏳᎯ ᎨᏒ ᏧᏗᏱ ᎤᏙᏓ ᎡᎶᏛ ᎤᏓᏁᏟᏴᏍᏓᏁᎸᎢ, ᎤᏍᎦᎴ ᎾᎿ ᏭᎶᎯᏍᏗᏱ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏯᏔᏅᎯ ᎨᏒ ᎠᏍᎩᏓᏍᎬᎢ, ᎨᎵᎵ ᏭᎪᎸᏍᏔᏁᎢ; ᎬᏩᏛᏛᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎢᎳᎪᏃ ᎢᏳ ᎯᎠ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏔᏂ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᎾᎯᏳ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎠᎵᏰᎢᎶᎸᎭ? ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏔᏲᏎᎭ ᏗᏥᏩᎾᎦᎶᎢᏍᏗᏱᏉ ᏂᎨᏒᎾ ᎠᏴ ᎢᏨᎩᎵᏲᏤᎲ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᏨᏁᎯ ᏥᎩ. ᎠᏎᏃ ᏗᏘᏲᎯ ᏃᎴ ᎤᏓᎾᏂ, ᏃᏉᏃ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎤᏩᏌ. ᏃᎴ ᎠᏏᎾᏌᏂ, ᏄᎾᏓᎴᎲ ᎠᏂᏴᏫᏯ ᎤᏂᎶᏒ ᏧᎷᏫᏍᏓᏁᏗ. ᎾᏍᎩᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯ ᎾᏍᏉ ᎯᏍᎩ ᎢᎦᏚᎩ ᏣᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ. ᏃᏊᏃ ᏅᎩᏁ ᏒᏃᏱ Ꮭ ᏲᎨᏅᏎ ᎡᎵᏏᏍᎩᏂ ᏧᏪᏅᏒ ᎣᎨᏅᏒ. ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᎨᏥᏁᎢᏍᏗᏍᎨᏍᏗ, ᎤᏣᏘ ᎨᏥᎨᏳᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏣᏘ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎢᏥᏁᎸᎢ. ᏂᎦᏓ ᎦᎸᏅ ᎤᏂᏰ, ᏣᏉ ᎠᏰᎵᏉ. ᎦᏅᏙᏗ ᎢᏳᏍᏗ ᎨᏎᎢ, ᎠᎴ ᏒᏚᎵ. ᏴᏫ ᏚᎾᏓᏅᏛ ᏚᎸᏕᎯᎮᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᏂᎾᏰᏍᎬ ᎠᎴ ᎠᏂᎦᏖᏃᎲ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎡᎳᏂᎬ ᎤᎾᏄᎪᎢᏍᏗ ᎨᏒᎢ; ᎤᏂᏣᏘᏰᏃ ᎦᎸᎶ ᏣᏂᎧᎳ ᏛᎾᎵᏖᎸᏂ. ᎤᏟᏍᏓ ᏥᏚᏝᏗᏗᏅᏎ! ᏂᎪᎯᎸᎾ ᏚᏓᏴᎳᏛ ᎤᏩᏌ ᏗᎪᏩᏛᏗ ᎨᏎ ᏃᎴ ᎠᏂᎾᏁᏍᎬ ᎤᏂᏃᏕᎾ ᎠᏂᎩᏍᏙᏍᎬ, ᏃᎴ ᎢᏳᏓᎵ ᎠᏛᎪᏗ ᎨᏎ ᏩᎦ ᎤᏕᎵᏌᏛᏗ ᎦᎸᎳᏗᏣ. ᎣᏂᏉ ᎠᏓᏏᏎᎢ ᎡᎳᏆᏗ, ᎤᏂᏴ ᎧᏴᏐᎵ. ᏥᏌᏃ ᏔᎵᏁ ᎠᏍᏓᏯ ᎤᏁᏨ ᏕᎤᏲᏎ ᎤᏓᏅᏙ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᏳᎾᎵᏱᎶᎮᎵ ᎯᎠ ᎪᎯ ᏣᏁᎭ. ᏦᎳᏂᎾ? ”ᎭᏩ,” ᎤᏰᎸᏗᏗ ᏗᏁᎶᏗ, ᎠᏓᏏᏓᏍᏗ ᏃᎴ ᎠᏓᎾᏫᏗ ᏃᎵ ᎤᎵᎮᎵᏍᏗ ᎢᏯᏛᏁᏗ. ᎥᏝ ᎠᏂ ᏘᎦᎾ, ᏚᎴᏅᏰᏃ ᎾᏍᎩᏯ ᏄᏪᏒᎢ; ᎡᏍᏕᎾ ᎡᏍᏓᎦᏔ ᎤᎬᏫᏳᎯ ᎠᏥᏅᏅᎢ. ᏒᏃᏱ ᏱᏄᎵᏍᏔᏅ ᏃᏊ, ᎢᎾᎨ ᎠᏇᏓᏍᏗ ᎠᎴ - ᎠᏋᏌ ᎠᏇᏓᏍᏗ. ᎠᏥᎸᏳᎵ ᏩᏆᏅ, ᎠᏉᏢ ᎾᎥᏂ ᏓᎩᏛ ᎦᎶᏇ. ᎢᏤᏃ ᏗᎧᏃᎩᏍᏗ ᏚᏂᏃᎩᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏚᏳᎪᏗ ᏂᎯ ᏣᏁᏍᏗᏱ ᎪᏪᎵ ᎠᎴ ᏗᏣᏲᏍᏙᏗᏱ ᏓᏍᏚᎲᎢ; ᎡᏣᎸᎩᏰᏃ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏂᏍᎩᏴᏁᎸ ᏣᎩᎬ ᏍᎩᏩᎯᏍᏔᏅ, ᏫᏗᏍᎩᏯᏅᎲ ᏂᎦᏛ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏓᏁᏩᏗᏒᎢ. ᎤᏁᎳᏅᎯᏃ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏂᏥᎥ ᎢᏤᎳᏗᏙᎮᏍᏗ. ᎡᎺᏅ ᎾᏍᎩᏃ ᎯᎠ ᏥᏄᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎠᏛᎪᏗᏱ ᏗᏓᎴᎲᏍᎦ, ᎠᏛᎪᏗᏱᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᏗᏓᎴᎲᏍᎦ. ᎠᏎᏃ ᎡᏆᎭᎻ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏇᏥ, ᎭᏅᏓᏓ,. ᏂᎯ ᎠᏏ ᏣᎴᏂᏙᎲᎩ ᎯᏩᏘᏍᎬ ᏣᏤᎵᎦ ᎣᏍᏛ, ᎠᎴ ᎳᏏᎳ ᎾᏍᏉ ᎠᏩᏘᏍᎬᎩ ᎤᏤᎵᎦ ᎤᏲᎢ. ᎠᏎᏃ ᎿᏉ ᎠᏥᏄᏬᎯᏍᏔᏅ, ᏂᎯᏃ ᎢᎯᎩᎵᏲᎦ. ᎦᏂ ᏕᎦᎸ ᏃᎴ ᏗᏛᏅᎢᏍᏔᏅ ᏧᏂᏍᏔᏲᏍᏗ. Ꭷ, ᏦᏈ ᏘᏅᎵ ᎠᏂᏫᏅ, ᏫᏯᏅ ᏌᏩᏂ ᏈᏓ ᏧᏙᎢᏛ, ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏤᎮᎢ, ᎠᏴ ᎣᎦᏛᎦᏅᎯ, ᏦᏥᎦᏙᎵ ᏦᎬᏔᏅᎯ ᎣᎩᎪᎲᎯ, ᎾᏍᎩ ᏦᎦᎧᎿᏅᎯ, ᎠᎴ ᏦᎪᏰᏂ ᏦᎬᏔᏅᎯ ᎣᎦᏒᏂᎵᏙᎸᎯ, ᎧᏃᎮᏛ ᎬᏂᏛ-- “ᏣᏛᎦᏁ ᎢᏗᎦᏪᏍᏗ ᎤᏓᏴᎳᏔᏅ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ ᏰᎵ ᎤᏩᏃᏫᏍᎩ. ᏗᏂᎨᏫᏃ ᎠᎴ ᏗᏂᏲᎤᎵ ᎬᏩᎷᏤᎸᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᏅᏩᏅᎩ. ᏥᎦᏔᎭᏰᏃ ᎯᎠ ᎾᏍᎩ ᎥᎩᏍᏕᎸᏗᏱ ᏭᎵᏰᎢᎶᎯᏍᏗ ᎨᏒᎢ ᏂᎯ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᏅᏓᎦᎵᏍᏙᏔᏂ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎤᏓᏅᏙ ᎥᎩᏁᎲᎢ; ᎢᏨᏲᏎᏰᏃ ᎥᏝ ᎿᏉ ᎯᎠ ᎾᏍᎩ ᏴᎦᎦᎵᏍᏓᏴᏓ ᎬᏂ ᎤᎵᏍᏆᏛᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ”ᎭᏦᎣᏍ” ᎠᏎᏃ ᎢᏓᎵᏅᏟ ᎠᏆᏚᎵᎭ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᎩ ᎫᏓᎴᏅᏛ ᎾᏆᎵᏍᏓᏁᎸᎢ ᎤᏁᏉᎢᏍᏗᏱᏉ ᏄᏩᏁᎸ ᎣᏍᏛ ᎧᏃᎮᏛ; ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᏂᏓᎨᏨᏁᎵ,” ᎠᎦᏛ ᎠᏂᏗᎨ ᏏᏆ ᏓᏂᎯᎰ ᎤᏴᏣ ᏱᏄᎵᏍᏔᎾ. ᎠᏂᏯᏫᏍᎩᏃ, ᏂᎨᏥᏪᏎᎸ ᎨᏥᏁᏤᎸ ᏄᎾᏛᏁᎸ, ᎤᏂᏯᏅᎲᎩ ᏉᎳ, ᎠᎴ ᏒᏃᏱ ᏭᏂᎶᏒ, ᎥᏗᏇᏗ ᏭᎾᏘᏃᎸᎩ. ᎢᏳᏰᏃ ᎦᎫᏍᏛᏗ ᏧᏛᎯ ᏱᎩ, ᎠᎴ ᎬᏩᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏱᎩ, ᏂᎦᏛ ᎠᏂᎪᏩᏘᏍᎩ ᏯᎾᎴᏅ ᏱᎬᏩᏕᎰᏛ, ”ᎯᎾᏓᏖᎸᏂᎦ ᎠᏓᏖᎸᏂᏍᏗ!” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎦᏙᏰᏃ ᏗᎦᎵᏍᏙᏗᎭ ᎢᎯᎦᏔᎭ, ᎯᎨᏴ, ᎦᎯᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᏣᏰᎯ? ᎠᎴ ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᎢᎯᎦᏔᎭ ᎯᏍᎦᏯ ᎦᎯᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᏣᏌᎵᎢ? ᎢᎬᏩᏘᏃᎮᎴᏃ ᎩᎶ ᏧᎵᎡᎾ, ᎠᎴ ᎦᏂᎳ ᎦᏬᏂᏍᎩ; ᎠᎴ ᎢᎬᏩᏍᏗᏰᏔᏁ ᎾᏍᎩ ᎤᏏᏔᏗᏍᏗᏱ. ᎡᎶ ᏦᎩᏲᎰᏎᎸ ᎬᎦᏔ ᎣᎩᏲᎰᏎᎳ. ᏃᏗ ᎤᎴᏅᎮ ᎬᏍᎬ ᎭᎾ ᏚᎦᎵᎴ ᏚᏏᎳᏛ. ᎯᎯᎷᏣ ᎣᎩᏱᏂᏣᏍᏛᎾ ᎨᏎᏍᏗ, ᏍᎩᏴ ᏱᎦᏛᎦᏍᏓ ᎢᏳᏍᏗ ᏣᏚᎵᏍᎬ. “ᏤᏍᏗ ᎤᏗᎴᎩ ᏱᏂᏍᏔᎵᏍᏔᏁᏍᏗ!” ᎤᏛᏁ ᎤᏂᏥ. ᎠᏆᎴᏅᏔᏅ ᏥᏍᎦᎬ ᎠᏤᎯ ᎡᎶ ᎤᏂᏦᎣᏍᏙᏗ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏍᎩᎾᎵᏍᎪᎸᏓᏏ, ᎾᏍᎩ ᏦᎩᏂᏗᏱ, ᎠᏏᏴᏫ ᎯᎦᏘᏏᏗᏢ, ᏐᎢᏃ ᎯᎦᏍᎦᏂᏗᏢ, ᏣᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎾᏃ ᏩᎩᎸᏴᏨ ᎠᏯ ᎭᎾ ᏥᎩ, ᎡᏧᎳ ᎣᎩᏂᏓᏂᏴ. “ᎲᎦ ᎢᏴ ᏣᏕᏘᏱᎭ? ᎾᏍᎩ Ꮎ ᎣᎩᎪᎲᎯ ᎠᎴ ᎣᎦᏛᎦᏅᎯ ᎨᏒ ᎢᏨᎾᏄᏫᏎᎭ, ᎾᏍᏉ ᏂᎯ ᎢᏣᏖᎳᏗᏍᏗᏱ ᎣᎦᏚᏓᏕᏫᏒᎢ; ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎣᎦᏚᏓᏕᏫᏒ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ. ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᎤᎴᏨᎩ ᎠᎴ ᏚᏃᏁᎸᎩ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎪᎲ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ ᏄᏪᏒ ᎤᎵᏃᎮᏔᏅᎢ. ᏣᏄᏏ, ᎨᏍᏗ ᎠᏍᏆᏂᎪᎯ ᏱᎨᏎ ᎤᏬᏚᏨ, ᎤᏕᎶᎰᏎ ᏄᏬᏚᎲ ᏓᏏᎳᏛ, ᎤᎭᏲᎳ ᏏᏆ ᎤᎩᏍᏗ ᏃᎴ ᎤᏕᎶᎰᏎ ᏁᏆᎸ ᏃᎴ ᏃᏒ ᎢᏳᏩᏁᎸ ᎨᏒ. ᎥᏝᏰᏃ ᏰᎵ ᏴᎦᏥᏁᎢᏍᏓ ᎾᏍᎩ ᎦᎶᏁᏛ ᏄᏛᏁᎸᎾ ᎨᏒ ᎠᏴ ᎠᏋᏗᏍᎬᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎬᏩᏃᎯᏳᏗ ᏂᏕᎬᏁᎲᎢ, ᎧᏃᎮᏛ ᎠᎴ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᏗᏍᎬᎢ, ᏓᏥᏁᎢᏍᏔᏂ ᎦᎵᏥᏙᏅ, ᏰᎵ ᎤᎵᏍᎨᏓ ᏅᎩ ᏗᎦᏅᏌᏗ ᎢᎩᏩᏔᎰᎦ ᎭᏂ ᏍᎦᏚᎩ. “ᏔᏟᏂᏆᏅᎥᎦ!” ᎡᏝᏪᎯ ᏄᏪᏎᎢ ᎠᎦᏴᎵ ᎤᏃᏕᎾ. ᎠᏓᏅᏛᎳ ᏣᏙᏓ ᎤᏛᏙᏗ. ᎩᎳᏃ ᎠᏍᎩᎾ ᎤᏓᏅᎡᎴᎢ, ᎬᏂᏳᏉᏃ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎬᏩᏍᏕᎸᎯᏙᎴᎢ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᎨᏒ ᎦᏥᏬᏁᏗᏍᎬᎩ ᎡᎶᎯ; ᏯᏃᎩᏳ ᏕᎦᏕᏲᎲᏍᎬ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎪᏢᏩᏗᏒᎢ. ᎠᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᎿ ᎠᏂᏧᏏ ᏂᎪᎯᎸ ᏧᏂᎳᏫᏦᎯᏍᏗᏱ ᏥᎩ, ᎤᏕᎵᏛᏃ ᎥᏝ ᎪᎱᏍᏗ ᎠᏆᏛᏅᎯ ᏱᎩ. ᎠᏂᏍᏔᏩᏗᏒ ᏕᏥᏅᏫᏍᏔᏅ, ᎨᏍᏗ ᎠᏕᎶᎰᎯᏍᏗ ᏱᎩ ᎾᏂᎥ ᎠᏂᏴᏫᏯ ᎭᏂ ᏍᎦᏚᎩ, ᏃᎴ ᎤᏂᏍᏔᏩᏛᏍᏗ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ ᎨᎬᏬᎣᏗ. ᏣᏄᏏ ᎠᏥᎾᏌᎢ ᏍᏉ ᎤᏛᎦᏁ ᎠᏂᎾᏁᏍᎬᎢ. ᎤᏲᎯᏍᏔᏁ ᎬᏄᏯᎩᏍᎬ ᎪᏍᏔᏱ ᎠᏂᎴᎩ ᏓᏫᏒ, ᎤᏓᏍᏕᎸᎲᏎ. ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᎦᏔᎿᎢ ᎠᏂᏈᎫᎳ ᎠᎴ ᎠᏂᏍᏙᎢᎦ ᎬᏩᎵᏃᎮᏔᏅᎩ; ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙ ᎤᏚᎵ ᎤᏛᏗᏱ ᎯᎠ ᏄᏪᎸᏛᎾ ᎦᏬᏂᏍᎩ; ᎠᏂᏐᎢᏃ ᎯᎠ; ᏅᏩᎾᏓᎴ ᏴᏫ ᏧᎾᏤᎵ ᎦᎸᎳᏗ ᎠᏁᎯ ᏗᎦᎾᏄᎪᏫᏍᎩ ᏅᏩᏍᏗ; ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᎵᏥᏙᏁᎲᎢ ᏥᏌ ᎠᎴ ᏗᎴᎯᏐᏗ ᎨᏒ ᎤᎬᏩᎵ. ᎠᏴᏰᏃ ᏕᎬᎦᎿᏩᏗᏙᎭ, ᎠᎴ ᎥᏝ ᎩᎶ ᏱᏙᎨᏣᏘᎷᎦ ᎤᏐᏅ ᎪᎱᏍᏗ ᏨᏁᏗᏱ, ᎤᏂᏣᏔᏰᏃ ᏴᏫ ᎠᏂ ᎦᏚᎲ ᏓᎩᎧᎭ. ᎤᎾᏙᏓᏆᏍᎬᏃ ᎦᏚᎲ ᎣᎩᏄᎪᏨᎩ, ᎡᏉᏄᎶᏗ ᏬᎩᎶᏒᎩ ᏙᏥᏬᏁᏔᏅ ᎠᏂᎨᏴ ᎾᎿ ᎤᎾᏓᏟᏌᏅᎯ. ᏥᏌᏃ ᎾᎿ ᎤᏂᎩᏒ ᎨᎵᎵ ᎥᏓᎷᎶᏗ ᎤᎷᏨᎩ, ᎤᎿᎷᏒᏃ ᎤᏌᎯᎸ ᎾᎿᎤᏪᏅᎩ. ᎡᎳᏆᏗ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᎤᎾᏛᎦᏁ ᎪᏍᏚᎭ ᏅᏃ ᎠᎾᎢᏒ. “ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏫᎵᎻ, “ᏥᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏗ.” ᎠᎴᏬ, ᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏨᏲᏪᎳᏁᎭ, ᎾᏍᎩ ᎤᏙᎯᏳᎭ [ᎦᎶᏁᏛ] ᎨᏒᎢ ᎠᎴ ᏂᎯ ᎨᏒᎢ; ᎤᎵᏏᎬᏰᏃ ᎤᎶᏐᏅ, ᎿᏉᏃ ᏚᏳᎪᏛ ᎢᎦᎦᏘ ᏚᎸᏌᏛ. ᎨᏍᏗ ᏱᏚᏔᎾ ᎠᏯᏖᏅ ᎫᎭᏟ ᎠᏰᎳᏍᏗ ᎠᎴ ᎦᎷᏯᏍᏘ, ᎦᏁᎦ ᏗᎪᏒᏔᏅ ᏚᎳᏗᏍᏛ ᎤᏓᏦᎲ ᏚᏓᎥ, ᏩᏀᎢᎨ ᎤᏍᎪᏍᏗ ᏱᎨᏎ ᏍᎩᎾᎾ ᏱᏚᏔᏁ. ᎠᏁᎵᏗ ᎦᎸᏙᏗ ᎦᏌᏙᏱᏓᏍᏗ ᏳᏌᏙᏰᎾ, ᏫᎵᎻ ᎠᏓᏍᏓᏩᏕᎨ. ᎠᎴ ᎤᏕᏒ ᏙᎴᏛ ᎠᏄᏬ ᎤᏪᏣᏄᎶᏔᏁᎢ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏅᏁ ᎾᏍᎩ ᏅᏲᎯ ᎠᏔᎴᏛ, ᎾᏍᎩ ᎾᎿ ᎢᎸᎯᏳ ᎩᎶ ᎾᏥᏅᏅᎾ ᎨᏒᎢ. ᎤᎬᏫᏳᎯᏃ ᎤᏤᎵ ᎧᏃᎮᏒ ᎤᏂᏃᎮᎮᎴ ᎾᏍᎩ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎦᏁᎸᎢ ᎠᏂᏯᎢ. ᏫᎵᎻ ᏍᏉ ᎤᏚᎵᏍᎬ ᎢᏴ ᎤᎪᏩᏛᏗ. ᎢᏳᏰᏃ ᎠᏤᎷᎯᏍᏗ ᎦᎪᎵᏍᏗ ᏂᎨᏒᎾ ᏳᏃᏴᎦ, ᎦᎪ ᏯᏛᏅᎢᏍᏓ ᏓᎿᏩ ᎤᏪᏅᏍᏗᏱ? ᎡᎮᎾ, ᎤᏛᏅᎩ. ᎿᏉᏃ ᏈᏓᏥᏳᎯ ᎤᏣᎢᏒ ᎠᎹᏱ ᎦᏚᎢ ᎠᎢᏒᎩ ᏥᏌ ᏤᏙᎲ ᏩᎦᏛᎩ. ᎠᎴ ᎡᏣᎵᏍᎪᎸᏓᏁᎭ ᎢᏦᎯᏳᏒ ᏄᏍᏛ ᎤᎬᏩᎸᎢ, ᎾᏍᎩ ᏗᏣᏓᏅᏙ ᏗᏍᏕᎸᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎠᏂᏔᎵ ᏌᏉᏉ ᎨᏎᏍᏗ ᎤᏂᏇᏓᎸᎢ; ᎾᏍᎩᏃ ᎥᏝ ᎿᏉ ᎠᏂᏔᎵ ᏱᎩ, ᏌᏉᏉᏍᎩᏂ ᎤᏂᏇᏏᎸᎢ. ᏂᎪᎯᎸᎾ ᎤᎾᏓᏅᏖᎴ. ᎦᎵᏉᎩ ᏣᏁᎳ ᏩᏍᏗ ᏧᏍᏆᏴᏍᏗ ᏧᏙᎢᏓ ᏥᏍᏕᏥ, ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ ᎦᏂᎩᎵ ᎤᎾᏟᏃᎮᏗ ᎤᏓᏅᏖᎴ. ᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏥᎦᏔᎭ ᎤᎷᎯᏍᏗ ᎨᏒ ᎺᏌᏯ-ᎾᏍᎩ ᎦᎶᏁᏛ ᏣᏃᏎᎰᎢ-ᎾᏍᎩ ᎦᎷᏨᎭ, ᏓᎩᏃᏁᎵ ᏂᎦᎥ ᎦᎱᏍᏗ. “ᎨᏍᏗ ᎯᎸᎯᏳ ᏱᏛᏋᎨᏫ ᎬᏅᎢ ᎢᎪᎯᏓ.” ᏧᏓᎴᏅᎲ ᎤᎵᎪᎲᏍᏗ, ᏍᏈᏍᏔ ᎠᏓᏣᏁᎯ ᏬᏯ ᎠᏂᎷᎪ, ᎠᏂᎦᏗᏛ ᎾᏍᎩᏯ ᎤᎵᏏᎩ ᎨᏴ ᏧᎦᏃᏮ ᎢᏣ ᎦᎸᎶᎢ, ᎤᏍᎪᏍᏓ ᎤᎵᏑᏫᏛ ᎠᏙᎯ ᏩᏂᎷᎪ, ᎦᏲᏟ ᏧᏙᏓᏆᏓ, ᎾᏍᎩᏯ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᎧᎭᏛ ᏥᏍᏆ ᎭᏫᏯ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᎤᏍᏆᎸᎲᎩ ᎠᏂᏧᏏ ᏧᎾᎵᏍᏓᏴᏗᏱ; ᎠᎴ ᏥᏌ ᏥᎷᏏᎵᎻ ᎤᏪᏅᏒᎩ. ᎾᏍᎩ ᎤᏛᎦᏅ ᏥᏌ ᎠᏥᏃᎮᏍᎬᎢ, ᎣᏂᏗᏢ ᎤᏅᏘᏛ ᏄᎾᏛᏅ ᎤᎷᎯᏍᏔᏁ, ᎠᎴ ᎤᏒᏂᎴ ᎤᏄᏮᎢ. ᎠᏴᏫᏯᎯ ᏧᏍᏆᏅᎾ ᏚᎾᎾᏬᏍᏔᏁᎢ. ᎰᎻ ᎤᏄᎩᏣᏁᎢ ᎠᎳᏂ. ᎠᏤᎯ ᎤᎩᏓᏟ ᎤᏬᏛᎸᎲ ᎠᏰᎳᏍᏘ ᎬᏘ, ᎦᏁᎯ ᏗᎪᏪᎶᏙᏗ ᏭᎳᏛ, ᎦᏲᏟ ᏧᏬᏪᎳᏅ ᏃᏉ ᏭᏩᏂᎦᎸᏅ ᎪᏪᎵ, ᎡᎳᏗ ᏭᏓᎩᏅᏒ, ᎾᏍᎩᏯ ᏕᏧᎬ ᏣᏛᏍᎪ ᎪᏪᎵ. ᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎩᏲᎴ ᎠᏂ ᎡᎶᎯ, ᎠᎴ ᎬᏂᎨᏳᎢᏳ Ꮭ ᎪᎱᏍᏗ ᏴᎨᏗᏄᎪᏩ. ᎾᏍᎩ ᎤᏚᎩ ᎦᎬᏗ ᏂᎨᏒᎾ ᏥᎨᏎᎢ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏧᏬᎯᏳᏁᎢ, ᎾᏍᎩ ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏙᏓ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏂᏧᏈᏍᏕᏍᏗ ᏣᏁᏢᏔᏅᎯ; ᎤᏦᎢᏎᏗ ᎤᎵᏖᎸᏁᎢ ᎦᏍᎩᎶᏘ ᎪᏱᏁ. ᎠᏎ ᏱᏄᎾᎵᏍᏔᏏ ᎤᏂᎭᏲᏗ ᎤᏂᎩᏍᏗ, ᏧᎾᏦᎯᏍᏗ ᎤᏍᏗ ᎤᎾᏓᏓᏍᎩ ᎤᏂᎭᏲᎲ ᎤᎾᎵᏍᏖᎸᏙᏗ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏥᏔᏲᏎᎭ ᎾᏍᎩ ᏂᎯ ᎪᎱᏍᏗ ᎤᏐᏅ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ ᏂᎨᏒᎾ; ᎥᏝ ᎠᏴ ᎣᏏᏳ ᎣᎩᏰᎸᏒ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏆᏚᎵᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᏂᎯᏍᎩᏂ ᎾᏍᎩ Ꮎ ᏚᏳᎪᏛ ᎨᏒ ᎢᏣᏛᏁᏗᏱ, ᎤᏁᎳᎩ ᎣᎩᏐᏅᎢᏍᏔᏅᎯ ᏱᏅᏩᏍᏗ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎠᏎᏉ ᏂᏨᏁᎰ ᎢᏨᏗᏍᎪ ᏂᎯ ᎢᏥᏁᏨᎢ; ᎠᎴ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎾᏍᎩ ᎢᏳᏍᏗᏓᏂ ᏂᏣᏛᏁᎰᎢ. ᎿᏉᏃ ᏚᏲᎯᏎᎸᎩ ᎤᎾᏛᏗᏱ. ᎤᏂᏂᏴᏛᎩᏃ ᏥᏌ ᎠᎴ ᎤᎾᏘᎾᏫᏛᎲᎩ. ”ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᎠᎳᏂ. ᏂᎦᏓᎮᎾ ᎤᏩᎾᏕ ᎡᎵᏍᎨ ᏩᎭᏯ. ᎿᏉᏃ ᏚᏰᎵᎯᏍᏔᏅ ᎤᏂᏣᏘ ᎣᏓᎸ ᎤᎿᎷᏒᎩ ᎤᏩᏒ ᎨᏒᎢ, ᎤᏓᏙᎵᏍᏔᏅᏒᎩ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎾᎿ ᎤᏩᏒᏉ ᎨᏒᎩ. ᎰᏩᏃ ᎦᏚᎲ ᎤᏂᏄᎯᏨᎩ, ᎠᎴ ᎥᎬᏩᎷᏤᎸᎩ. Ꭵ, ᎠᏆᏛᏅ. ᎠᏂᏲᎵᎮᏉ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ. ᎢᎦᏛᏃ ᎨᏥᎪᎵᏰᏍᎨ ᎦᎨᏥᏐᏢᏗᏍᎬ ᎠᎴ ᏕᎨᏥᎵᎥᏂᎲᎢ, ᎠᎴ ᎾᏍᏉ ᏕᎨᎦᎸᎢᎲ ᎠᎴ ᏕᎨᏥᏍᏚᎲᏍᎬᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᏥᎪ ᎤᏁᎳᏅᎯ ᎢᏴᏛ ᏂᏚᏩᏁᎸ ᏧᏤᎵ ᏴᏫ? ᎬᏩᏟᏍᏗ. ᎠᏴᏰᏃ ᎾᏍᏉ ᏥᎢᏏᎵ, ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ ᏅᏛᏆᏓᎴᏅᎯ, ᏇᏂ ᎠᏂᎳᏍᏓᎸ ᎨᎳ. ᎤᏁᎳᏅᎯᏰᏃ ᎠᏉᎯᏳᏓᏁᎯ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏥᏥᏯᏛᏁᎭ ᎠᏆᏓᏅᏙ ᏥᎬᏗᎭ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏪᏥ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏂᎬᏁᎲᎢ, ᎾᏍᎩ ᏂᏥᏲᎯᏍᏗᏍᎬᎾ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ, ᏂᎪᎯᎸ ᎦᏓᏙᎵᏍᏗᏍᎬ. ᏚᏙᏓᏈᏒ ᎣᏁᎯ, ᎠᎾᏓᏩᏛᎯᏙ ᎠᎦᏕ ᏓᏟᏃᎮᏗᏍᎨ ᎰᎻ, ᎤᏩᎨᏫᏎ ᏦᎨᏏ ᏧᎷᏫᏍᏔᏁᏗ. ᎤᏓᏓᎩᏅᏎ ᏃᎴ ᎤᎵᏰᏔᏁᎢ ᎠᏑᎵᎪᎬ. ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᎬᏩᏂᎸᏫᏍᏓᏁᏗ ᎢᎨᎬᏁᏗ ᎨᏒᎢ, ᎠᏎᏃ ᎾᏍᎩᏉ ᏌᏉ ᎤᏁᎳᏅᎯ ᏂᎦᏛ ᎾᏍᎩ ᏗᎬᏩᏂᎸᏫᏍᏓᏁᏗ ᎢᎨᎲᏁᎯ ᎾᏂᎥᎢ. “ᎭᏩ, ᏕᏂᎬᏩᏝᎦ,” ᎤᏛᏁ ᏥᏍᏕᏥ. ᏥᎪ ᏌᏉ ᎦᏄᎪᎬ ᏗᎦᏄᎪᎪ ᎤᎦᎾᏍᏛ ᎠᎹ ᎠᎴ ᎤᏴᏍᏗ? Ꮎ-ᏍᎩᏂ ᎤᏓᎵ ᎠᏓᏅᏖᏍᎪ ᏧᏓᎴᏅᏛ ᎡᎶᎯ ᎡᎯ, ᎢᏳᏛᏁᏗᏱ ᎤᏓᎵᎢ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ. ᎠᏆᏛᏅ. ᎤᏥᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎨᏥᏅᏏᏓᏍᏗ; ᏂᎦᎥ ᏂᏥᏪᏎᎲ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎭ. ᎦᎦᏛᏃ ᏓᎾᏠᏱᎮ ᎠᎴ ᎠᏂᏍᎪᏂᎮᎢ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ ᏗᏣᏠᏱᎸᎩ; ᎥᏝ ᏳᏲᎱᏒ, ᎦᎵᎭᏉᏍᎩᏂ. “ᏍᎩᏃᎯᏏ ᎢᏳᏍᏗ ᏅᏁᎲᎢ ᎭᏩᏧ,” ᎤᏍᏗᏰᏔᏁ ᏫᎵᎻ. ᎩᎶ [ᎤᏁᎳᏅᎯ] ᎤᏪᏥ ᎠᏓᏱᎯ, ᎾᏍᎩ ᎥᏝ ᏳᏪᎭ ᎠᎦᏴᎵᎨᎢ; [ᎾᏍᎩᏍᎩᏂ Ꮎ ᎪᎯᏳᎲᏍᎩ ᎤᏪᏥ ᎾᏍᎩ ᎤᏪᎭ ᎾᏍᏉ ᎠᎦᏴᎵᎨᎢ.] ᎾᏂᎥ ᎨᏣᏔᏲᏎᎯ ᏕᎯᏁᎮᏍᏗ; ᎪᎱᏍᏗᏃ ᏣᎾᎥ ᏣᎩᎡᎯ ᏞᏍᏗ ᎯᎳᏲᏎᎸᎩ. ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏳᎳ ᎢᏨᏃᏁᎸ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏛᏓᏍᏔᏁᎢ; ᎦᏙᏃ ᎢᏣᏚᎵ ᏔᎵᏁ ᎢᏣᏛᎪᏗᏱ? ᎾᏍᏉᏍᎪ ᏂᎯ ᎢᏣᏚᎵᎭ ᎡᏥᏍᏓᏩᏗᏙᎯ ᎢᏣᎵᏍᏙᏗᏱ. “ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ,” ᎤᏛᏁ ᏌᏌ. ᏂᎦᏓᏃ ᏣᏂᎧᏔᎮᎢ ᎠᏓᏪᎯ ᎨᏒ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎨᏒ ᏃᎴ ᎢᏳᏊ ᏗᏁᎳᏔᏂᏒᎢ ᎤᏅᎪᎢᏍᏗ ᎭᎾ ᎠᏔᎸᎧᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏨᏁᎲ ᎠᏥᎪᏗ ᎨᏒᎢ, ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎢᏨᏗᏍᎨᏍᏗ ᏕᏣᏓᏁᏤᎲ ᎾᎥ ᎢᏣᏓᎳ; ᏕᎦᏚᏓᏕᏫᏒᏰᏃ. ᏩᎾᎢ ᎤᏂᏏᏗ ᎦᏟᎮ ᏫᎵᎻ. ᎯᎪ ᏑᎾᎴ ᏣᏍᏆᏙᏅ, ᎠᏯ ᏍᏉ ᎠᎦᏍᏆᏙᏅ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ. ᎯᎠᏃ ᎪᏪᎵ ᎦᏅᏙᏗ ᎣᏂᏴ ᎩᎶ ᎠᏙᎯ. “ᏓᏆᎴᎳ ᏫᎲᎦ ᎤᏁᏍᏔᎳ ᎤᏅᏗ ᏧᎾᏦᏯᏍᏗ ᎠᏥᏍᏔᏅᎯ!” ᎤᏓᏅᏫᏍᏔᏁ ᎡᎶᏗ. ᏥᏌᏃ ᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎬᏩᎪᎮ ᎾᏍᎩ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ, ᎾᏍᎩ ᏑᎾᏓᏡᎩ ᎬᏩᏴᎸᎯ, ᎤᏬᎴᎢ, ᎠᎴ ᏚᏄᏪᎢ, ᎠᎴ ᏙᎯ ᎤᏓᏅᏖᎢ; ᎠᎴ ᎠᏂᏍᎦᎢᎮᎢ. ᎯᎠᏰᏃ ᎾᏍᎩ ᎮᎦ ᏌᎾᏱ ᎣᏓᎸ ᏓᏟᎶᏍᏗ, ᎡᎴᏈᎠ ᏦᏓᎸ, ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎾᏍᎩᏯ ᏥᎩ, ᎾᏍᎩ ᎪᎯ ᏄᏍᏛᎢ, ᎾᏍᎩᏰᏃ ᏕᎨᏥᎾᏝᎠ ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ. ᏏᏲ ᎤᏛᏁ ᎠᎬᏱ ᎤᏅᎪᏨ ᎧᏅᏂᏍᎩ, ᎠᏎᏃ ᎡᏝᏪᎯ ᏄᏪᏎ. ᎨᏍᏗ ᏳᏛᎦᎾ ᏫᎵᎻ. ᎤᏕᎰᏌᏘᏰᏃ. ᎤᏂᎩᏍᏗᏱ ᏗᏓᏂᏐᏗᏱ ᎤᎵᏍᏚᎢᏛ ᏥᎨᏐ ᎾᏍᎩᏯᎢ; ᏗᏂᏃᎪᎢ ᎠᎾᏓᎶᏄᎮᏗᏍᎪᎢ, ᎢᎾᏛ ᏚᏂᏁᎲ ᎠᏓᎯᎯ ᏚᏂᎭᏁᎦᎸ ᎭᏫᏂᏗᏢ ᏚᏂᏁᎭ. ”ᎤᏙᏳᎯ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎦᏢᏍᎩ ᏌᎳᏓ ᎤᏒᎯ ᏚᎷᏫᏍᏔᏁᎸ, ᎤᏰᏤ ᏚᎦᏙᏍᏕᎢ. ᎠᎴ ᎠᏆᏚᎵ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ, ᎾᏍᎩ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎨᏒ ᎦᎶᏁᏛ ᎠᏍᎪᎵ ᎨᏒᎢ; ᎠᎨᏴᏃ ᎨᏒ ᎠᏍᎪᎵ ᎠᏍᎦᏯ ᎨᏒᎢ; ᎦᎶᏁᏛᏃ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏍᎪᎵ ᎨᏒᎢ. ᎠᏎᏃ ᏞᏍᏗ ᏙᎯᏳᏅᎩ; ᏅᎦᏍᎪᎯᏰᏃ ᎤᏗᏢᏍᏙᏗ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎬᏩᎭᎷᎦ, ᎾᏍᎩ ᎤᎾᏎᎵᏔᏅᎯ ᏚᎾᏓᏁᏤᎸ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎤᎾᏗᏔᏍᏗᏱ ᏂᎨᏒᎾ, ᎬᏂ ᎤᏂᎸᎯ ᎨᏎᏍᏗ; ᎿᏉᏃ ᎤᎾᏛᏅᎢᏍᏗ ᎠᏂᎦᏘᏴ ᎤᎾᏛᎪᏗᏱ ᏣᏚᎢᏍᏔᏅᎢ. ᎹᏏᏙᏂᏰᏃ ᏬᎩᎷᏨ, ᎥᏝ ᎣᎩᏇᏓᎸ ᎬᏩᏣᏪᏐᎸᏍᏙᏗ ᏱᎨᏎᎢ, ᎬᏩᏚᎾᏛᏍᎩᏂ ᎣᎦᏕᏯᏙᏗᎬᎩ; ᏙᏱᏗᏢ ᎠᎵᏛ ᎨᏒᎢ, ᎭᏫᏂᏃ ᎢᏗᏢ ᎣᏥᎾᏰᏍᎬᎢ. ᎢᏨᏬᏁᏔᏅᏰᏃ ᎥᏝ ᎠᏓᎴᎾᏍᏗᏍᎩ ᏱᎨᏎᎢ, ᎥᏝ ᎠᎴ ᎦᏓᎭᎢ, ᎥᏝ ᎠᎴ ᎠᏠᏄᎮᏛ; ᎠᏦᎭᏴ ᎠᏂᏓᎪᏎᎬ ᎤᏂᏍᎦᏅᏨ, ᎢᏂᎦᏗᏛ ᏥᏧᏥᏉ ᏥᎨᏒ ᏦᎦᏓᏙᎵᏨ, ᎦᏙ ᎠᏂᏅ ᎠᏓᏴᏍᏔᎩᏍᎩ ᏓᎾᏗᏔᏍᎬ, ᎧᏁᏌ ᎦᏂᏏᏅᏍᏗ ᏕᎦᎶᏛ ᎤᏂᏩᏒ, ᏗᏥᎾᏌ ᎠᏂᎦᏘᏴ ᏩᏳᏍᏙᏗ ᎭᏫᏂ. ᎩᎶ ᎤᏩᏒ ᎬᏅ ᎤᏍᏕᎸᏗᏱ ᎤᏲᎮᏍᏗ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏲᎱᏎᎮᏍᏗ, ᎾᏍᎩ ᎤᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎤᏂᏌᏁ ᎤᏪᏥ ᏃᎴ ᎣᎭᏁ ᎤᏂᏌᏁ ᎤᏓᎵ. ᎤᏓᏑᏰᏛᏃ ᎠᎾᎵᏖᎸᎲᏍᎬ ᎤᎵᏙᎯᏍᏔᏅ, ᏉᎳ ᏫᏚᏯᏅᎲᎩ ᎠᏃᎯᏳᎲᏍᎩ, ᏚᏲᎵᎸᏃ, ᎤᏂᎩᏒᎩ ᏑᏏᏙᏂ ᎤᏪᏅᏍᏗᏱ ᎤᏰᎸᏅᎩ. ᎯᏍᎩᏃ ᎢᏯᏂᏛ ᎠᏂᎦᏔᎿᎢ ᎨᏎᎢ, ᎯᏍᎩᏃ ᎤᏂᏁᎫ. ᏂᎪᎯᎸᎾ ᎤᎪᎮ ᏥᏍᏕᏥ ᎠᏯᏖᏅ ᎤᏦᎣᏏᏗᏒ. ᎾᏍᎩ Ꮎ ᎤᏛᎦᏅ ᏥᏌ ᏧᏗᏱ ᏧᎶᏒ ᎨᎵᎵ ᎤᎷᏥᎸᎢ, ᎤᏩᏛᎲᏒᎩ, ᎠᎴ ᎤᏔᏲᏎᎸᎩ ᎤᏪᏅᏍᏗᏱ ᏭᏅᏬᏗᏱ ᎤᏪᏥ, ᎤᏲᎱᏏᏕᎾᏰᏃ ᎨᏒᎩ. ᎤᏃᎴ ᏗᏲᏙᏗ ᎧᏂᎩᏓ ᎨᏎᎢ. ”ᏙᎢᏳᏍᏗ ᏓᏂᏂᏱᏍᎪ ᏴᏫ ᎭᎾ Queensborough ᎠᏒᏨ---ᏍᎪᏯᎨ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᏩᎩᎷᏣ ᏧᏂᎷᏫᏍᏔᏁᏗ, ᎨᏍᏗ ᎭᎲᎦ ᏯᏉᏎᎳ ᏗᎪᏪᎵᏍᎩ, ᏰᎵ ᎪᎯᏓ ᏓᏆᎧᎾᏅ, ᎨᏍᏗ ᎪᎯᏛ ᏱᏓᎬᏲᏍᏓᏁᎸ, ᎦᏕᎶᎣᏍᎦ ᏗᎵᏍᏇᏔᏬ ᎢᏗᏅᏁ ᏃᎴ ᏗᎳᏑᎶ ᎢᏗᏅᏁ ᏗᏣᏦᎯᏍᏗ ᎨᏒ. ᎠᎴ ᎦᎵᏦᏔᏅᎯ ᏩᎦ ᎠᎩᎾ ᏫᏘᏯᏅ, ᎠᎴ ᎡᏥᎷᎦ; ᎠᎴ ᎢᏓᎵᏍᏓᏴᎲᎦ, Ꭳ-Ꮫ ᎢᏓᏓᏅᏓᏓ. ᎠᎴ ᎢᏤ ᏥᏓᏂᏃᎩᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ ᎢᎬᏱᏗᏢ ᎦᏍᎩᎸᎢ, ᎠᎴ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅ ᎢᎬᏱᏗᏢ, ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᏄᎾᏛᏅᎢ; ᎥᏝ ᎠᎴ ᎩᎶ ᎬᏩᏕᎶᏆᏍᏗ ᏱᎨᏎ ᎾᏍᎩ Ꮎ ᏗᎧᏃᎩᏍᏗ Ꮎ ᎤᏅᏒ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ, ᎾᏍᎩ ᎡᎶᎯ ᎨᎪᏣᎴᏛ ᎨᎦᎫᏴᏛ ᎨᏒᎢ. ᎭᏢᎨᏃ ᎠᏢᏆᏍᏗ ᎨᏒᎢ? ᎢᏴᏛ ᎢᎬᏁᎸᎯ. ᎦᏙ ᎤᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎦᏔᏅᎯ? ᏗᎦᎸᏫᏍᏓᏁᏗᏱᏍᎪ ᎠᏓᏁᏤᎯ? ᎥᏝ; ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᎬᏔᏅᎯ ᎪᎯᏳᏗ ᎨᏒ ᎠᏓᏁᏤᎯ. ᎩᎶᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᏣᏥ ᎠᎴ ᎢᏣᎵᏅᏟ ᏙᏱ ᎠᏂᏙᎾᎠ, ᎨᏣᎵᏃᎮᏙᏗᏱ ᎤᎾᏚᎵᎭ. ᏔᎵᏁ ᎢᎦ ᎢᏅᏪᏅᏎ ᎠᎴ ᎾᏍᏉ ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎤᏒᎯᏴ Ᏹ, ᎾᏍᎩᏯ ᏂᎤᏛᏁᎴᎢ. ᎥᏝ ᎿᏉ ᏠᎨᏏ ᎦᎳᎨᏯᏛᏗ ᎠᎴ ᎣᏍᏛ ᎦᏓ ᎦᏡᎬ ᎬᏗ ᏱᎨᏐᎢ; ᏭᎾᏕᎪᏉ. ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ. “ᏄᏓᎴ ᎪᎨ ᎠᎵᏛᏓ,” ᎭᏫᏂ ᎤᏛᎴᎮ. ᎾᏍᎩ ᎯᎠ ᏔᎳᏚ ᎢᏯᏂᏛ ᏥᏌ ᏚᏅᏒᎩ ᏑᏁᏤᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᎢᏗᏢ ᏞᏍᏗ ᏫᏥᎶᏒᎩ, ᎠᎴ ᏌᎺᎵ ᎠᏁᎯ ᏚᏂᏚᎲ ᏞᏍᏗ ᎢᏥᏴᎸᎩ ᏕᏣᏙᎥ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎸ ᎠᏂᏍᎦᏯ ᎡᎶᎯ ᏔᏑᏰᏛ ᏗᏍᎩᎧᏁᎸᎯ ᏥᎩ. ᏗᏣᏤᎵᎦ ᎨᏒᎩ, ᎠᎴ ᏕᏍᎩᎧᏁᎸᎩ; ᎠᎴ ᎤᏂᏍᏆᏂᎪᏔᏅ ᎧᏃᎮᏛ ᏣᏤᎵᎦ. ᎿᏉᏃ ᎠᏏᏉ ᎾᏍᏆᎵᏍᎬᎾ ᎨᏒ ᎢᏨᏃᎲᏏ, ᎾᏍᎩ ᎠᏍᏆᎸᎲᎭ ᎢᏦᎯᏳᏗᏱ. ᎤᎬᏫᏳᎯᏃ ᎿᏉ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᏠᎾᏍᏗ! ᏝᏍᎪ ᏂᎯ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎤᎾᏙᏓᏆ-ᏍᎬ ᏰᏤᎵᏌᏕᏍᎪ ᏗᎨᎳᏍᏗᏱ ᎢᏣᏤᎵ ᏩᎪ ᎠᎴ ᏐᏈᎵᏗᎦᎵᎠᏅ-ᎯᏛ, ᎠᎴ ᏰᏣᏘᏁᎪ ᎠᎹ ᏰᏣᏗᏔᏍᏔᏁᎪᎢ? ᎤᏂᏲᎲᎩ ᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒ ᎦᏛᎬᎢ ᎠᏓᏅᏙ ᎦᎶᏁᏛ ᎤᏤᎵᎦ ᎾᏍᎩ ᎤᏂᏯᎥᎢ, ᎢᎬᏱ ᎦᏰᎯ ᎬᏂᎨᏒ ᏥᏂ-ᎬᏁᎮ ᎤᎩᎵᏲᎢᏍᏗᏱ ᎦᎶᏁᏛ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎣᏂ ᎤᎾᏄᎪᎢᏍᏗᏱ. ᎠᎴᎾ ᎠᏂᏐᎢ. ᎭᏩ ᏧᏍᏆᏴᏍᏗ, ᎣᏏᏉᏗ ᎨᏎᏍᏗ ᎣᎳ ᏗᎦᏃᏣᏟ, ᎡᎵᏍᏗ. ᎠᏂᏍᎦᎢᎲ ᎦᏓᏁᏍᏙ ᎤᎵᏏᎩ ᎠᏙ ᏃᎴ ᏚᏅᏓᏒ, ᎾᏍᎩᏯ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏂᏍᎦᏎᏗ ᎠᏂᏍᎦᏯ. ᏗᏂᏰᎸ ᏩᎦ ᏧᎧᏅᏍᏔᏟ ᏗᏂᏍᎪᎵ. ᏰᎵ ᎢᎫᏩᎾᏕᏁᏗ ᎨᏒ, ᎠᎾᏕᏒᏂᏙᎲ, ᏚᏂᏴᏍᏔᎩᏍᎬ, ᎤᏒᎯ ᏔᎵᎭ ᎢᏳᎦᏘ ᏑᎾᏙᏓᏆᏍᏗ. ᎠᎴ ᏄᏍᏛ ᏭᏓᎪᎾᏛᏛ ᎡᏉᎯᏳ ᎨᏒ ᎤᎷᏂᎬᎬ ᎬᏂᎨᏒ ᏂᎬᏁᎸ ᎢᎪᎯᏳᏅᎯ ᏥᎩ, ᎾᏍᎩᏯ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏣᏔᏅᎯ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎠᏏᏴᏫᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᏥᏌ ᎦᏁᏥᏱ ᎦᏍᏛᎦᎸᎩ, ᎾᏍᎩ ᏥᏌ ᎤᎨᏳᎯ. ᎠᏎᏃ ᏗᎵᏰᎢᎶᎵ ᎢᎦ ᏓᎨᏥᏯᏅᎡᎵ ᎤᏕᏒᏂᎸᎯ, ᎾᎯᏳᏃ ᎿᏉ ᎠᎹᏟ ᎠᏅᏍᎨᏍᏗ. ᎠᎴ ᎾᏍᎩ ᎠᏥᏩᏛᎡᎸᎩ ᎤᏂᎩᎬ ᎠᎾᏙᎴᎰᏍᏗ, ᎠᎴ ᎤᎾᏓᏅᏘ, ᎠᎴ ᏂᎦᏛ ᎡᎶᎯ ᏗᎨᏥᎸᎯ ᎨᏒᎢ. ᎨᏥᏅᏏᏛᏃ ᎢᎤᏂᎷᏨ, ᎬᏩᏃᏁᎴ ᏂᎦᏛ ᏄᎾᏛᏁᎸᎢ. ᏚᏘᏅᏎᏃ ᎠᎴ ᎤᏅᏒ ᎨᏒ ᎢᎾᎨ ᏭᎶᏎ ᎦᏚᎲ ᎾᎥ ᏇᏣᏰᏗ ᏣᏃᏎᎰᎢ. ᎤᏂᏣᏛᎩᏃ ᎤᎾᏓᏑᏴᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏍᎩᎾ ᎤᏯᎠ, ᎠᎴ ᎤᎸᏃᏘᎭ; ᎦᏙᏃ ᎢᎡᏣᏛᏓᏍᏓᏁᎭ? ᏥᏌᏃ ᎯᎠ ᏄᏪᎭᎴᎢ; ᏍᎩᏍᏓᏩᏚᎦ, ᎤᎾᏁᎳᎩᏃ ᏧᏂᏲᎱᏒᎯ ᏓᏂᏂᏏᏍᎨᏍᏗ ᏧᎾᏤᎵ ᏧᏂᏲᎱᏒᎯ. ᎭᎴᏫᏍᏓ! ᎠᎴ ᎾᏍᏉ ᎤᎪᎮ ᎩᎶ ᎢᏳᏍᏗ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎾᎿ ᎠᎲᏍᎨ ᏔᎵ ᎠᎩᏄᏛᏗ ᎢᏯᏓᏅᏖᏗ. ᎢᏳᏍᎩᏂ, ᎢᎩᏲᎲ ᎦᎶᏁᏛ ᎢᎫᏓᎴᏍᏗᏱ, ᎬᏂᎨᏒ ᏱᏄᎵᏍᏔᏅ ᎢᎬᏒ ᎾᏍᏉ ᎢᏗᏍᎦᎾᎯᏳ ᎨᏒᎢ, ᎦᎶᏁᏛᏍᎪ ᎠᏍᎦᎾ ᎠᏍᏕᎵᏍᎩ ᏂᎦᎵᏍᏗᎭ? ᎬᏩᏟᏍᏗ. ᎠᏓᎴᏴᏗᏍᎩ. ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎥᏝ ᎾᏍᎩ ᏣᏃᎵᏤ ᎢᎬᏱᏱ, ᏥᏌᏍᎩᏂ ᎠᏥᎸᏉᏔᏅ ᎿᏉ ᎤᎾᏅᏓᏛᎩ ᎾᏍᎩ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸ ᎠᏥᏃᎮᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏂᎬᏩᏁᎸᎢ. ᎠᏎᏃ ᏍᎩᎾᎾ ᏄᏛᏁᎴ. ᏯᎵᏖᎸᎮᏍᎬᎾ ᎦᏙᎨ ᏫᎵᎻ ᎠᏕᎶᎰᏍᎨᎢ ᎢᏧᎳ ᎢᏣ ᏫᎦᏩᏙᎥᏍᎬ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ. ᎾᏍᎩ ᏧᏂᎾᏫ ᎤᎦᎵᏍᏗ ᏗᎬᏩᏓᏅᏓᏗᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏚᎾᏚᏓᏕᏫᏍᏛ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏭᏂᏱᎶᎯᏍᏗᏱ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎨᏒ ᏄᏜᏏᏛᏒᎾ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎪᎵᏍᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, ᎤᏂᎦᏙᎥᎯᏍᏗᏯ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎤᏤᎵᎦ, ᎠᎴ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ᎠᏗᎾ ᏞᏍᏗ ᎡᏥᏍᎦᎩ ᎢᏳᏍᏗ ᏰᏣᏓᏅᏖᏍᎨᏍᏗ, ᎡᏥᎬᏍᎪᎸᎥᏍᎨᏍᏗᏍᎩᏂ ᎢᏣᏓᏅᏟ ᎾᏍᎩᏯᎢ. ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎣᏍᏛ ᎧᏃᎮᏛ ᏧᏂᏲᎱᏒᎯ ᎾᏍᏉ ᎨᎦᎵᏥᏙᏁᎴᎢ, ᏗᎨᎫᎪᏓᏁᏗᏱ ᎤᏇᏓᎵ ᎨᏒ ᎾᏍᎩᏯ ᏴᏫ ᏧᏄᎪᏙᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏧᏭᎪᏙᏗ ᎨᏒ ᏗᏅᏃᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏧᎾᏓᏛᏙᎩᎯ ᎨᏒᎢ. ᎠᏎᏃ ᎢᏅᎯᎨᏍᏗ ᎢᏴ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎠ ᎾᏍᏉ ᏂᎬᏅ ᎢᎪᏪᎳ; ᏞᏍᏗ ᎯᎪᎵᏰᎥᎩ ᏱᎰᏩ ᏣᏁᎳᏅᎯ. ᎤᎸᏂᏗᏍᎩ ᎢᏳᏍᏗ ᎨᏎ ᏗᎦᏙᎵ. “ᎯᎠᏛ ᎾᏅᏛᏁᎰ ᏱᎾᏚᎳᏑᏝᎾ,” ᎤᏛᏁ ᏩᎭᏯ - ᏙᏳ ᎠᎩᏟᏲᎦ ᏃᏊ. ᎦᎦᎨ ᎤᎦᏙᎥᏐ ᏱᎰᏩ ᎤᏓᏅᏛᎢ, ᎾᏍᎩ ᏰᎵ ᎬᏪᏲᏗ ᎢᎬᏩᎵᏍᏙᏗ? ᎠᏴᏍᎩᏂ ᎦᎶᏁᏛ ᎤᏓᏅᏛ ᎢᎨᎭ. ᎤᏂᏣᏛᎩᏍᎩᏂᏃᏅ ᎾᏍᏉ ᎤᏂᎬᏫᏳᎯ ᎬᏬᎯᏳᏅᎩ; ᎠᏎᏃ ᎠᏂᏆᎵᏏ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎥᏝ ᎬᏂᎨᏒ ᏱᏄᏅᏁᎴᎢ, ᏗᎦᎳᏫᎢᏍᏗᏱ ᏱᏙᎩᏄᎪᏩ ᎠᏁᎵᏍᎬᎩ. ᎾᏍᎩᏃ ᏄᏪᏒ, ᏚᎾᏄᎪᏫᏎᎸᎩ ᏧᏬᏰᏂ ᎠᎴ ᎠᏍᏆᎨᏂ. ᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎣᏍᏛ ᎤᎾᏓᏅᏓᏛᎩ ᎤᏂᎪᎲ ᎤᎬᏫᏳᎯ. ᎿᏉᏃ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; [ᎤᏁᎳᏅᎯ] ᎤᏪᏥ ᎥᏝ ᏰᎵᎦ ᎪᎱᏍᏗ ᎤᏩᏒ ᎨᏒ ᏱᏙᎬᏩᎸᏫᏍᏓᏏ, ᎠᎪᏩᏘᏍᎬᏍᎩᏂ ᎤᏙᏓ ᏚᎸᏫᏍᏓᏁᎲᎢ; ᎾᏍᎩᏰᏃ ᏄᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ ᎾᏍᎩ ᎾᏍᏉ ᎤᏪᏥ ᏚᎸᏫᏍᏓᏁᎰᎢ. ᎬᏩᏛᏛᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᏗᏃᏪᎵᏍᎩ ᎢᎳᏯ ᎢᎬᏱ ᏓᎦᎷᏥ ᏣᎾᏗᏍᎪᎢ? ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᏫᎬᏲᏪᎳᏏ, ᎠᎴ ᎤᏚᎩ ᎠᏋᎭ ᏂᎪᎯᎸᎾᏉ ᏫᎬᎷᏤᏗᏱ; ᎤᏍᎪᏒ ᏭᏕᎵᏨ ᎤᎦᏙᏍᏕ ᏫᎵᎻ. ”ᎯᎦᏔᎭᏍᎪ ᎢᎪᎯᏓ ᏚᏟᏰᎵᏙᎸ ᎤᏂᏒᏣᏗᏍᏗ? ᎾᏍᎩᏯ ᎾᏍᏉ ᏰᎵᎦᎾᎨ ᏗᏍᎩᏯᏓᏂᎸᏨᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏴ ᎨᏒ ᎢᏨᏯᎵᎡᎵᏍᏗᏍᎬᎢ, ᎾᏍᎩᏯ ᏍᎩᏯᎵᎡᎵᏍᏙᏗ ᏥᎩ, ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏤᎵ ᎢᎦ ᎨᏎᏍᏗ. ᎢᎤᏍᏗᏯᏛᎾ ᏳᎳᏍᏕᎵᏴᏌ ᏗᎧᎾᏗ ᎠᏎᏃ ᏅᏱ ᎠᏍᏓᏱ ᏥᎨᏎᎢ ᎱᏁᎦᎸᎢ ᏃᎴ ᎨᏍᏓᏗ ᎦᏟᏓ ᎬᏔᎸᎦᏍᏙᏗ ᏱᎨᏎᎢ. ᎠᏎᏃ ᎤᏓᏱᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎨᏴ, ᎥᏝ ᏱᏥᎦᏔᎭ ᎾᏍᎩ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ; ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏙᏓᎧᏁᏤᎵ ᏗᎨᏣᎧᎾᏩᏗᏓᏍᏗᏱ ᎨᏣᏍᏆᏂᎪᏙᏗᏱ; ᏕᎫᎪᏓᏁᎸ ᎠᎴ ᎡᏥᎸ ᎾᏍᎩᏅᎾ, ᎥᏝ Ꮓ ᏱᏣᏞᏤᎭ. ᎠᎦᎸᏓ ᏱᎬᏃᎢᏏ. ᎯᎠᏃ ᏂᎦᏪᏍᎨ: ᎤᏍᏆᏂᎩᏗ ᏏᏆ! ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸ ᏗᎩᎦᏴᎵᎨᎢ, ᎡᏆᎭᎻ, ᎠᎴ ᎾᏍᎩ ᏧᏁᏢᏔᏅᏛ ᎨᏒ ᏂᎪᎯᎸᎢ. ᎪᎯ ᎾᏍᎩ ᏦᎢᏁ ᎿᏉ ᏥᏮᏓᏨᎷᏤᎵ. ᎠᏂᏔᎵ ᎠᎴ ᏦᎢ ᎠᏂᎦᏔᎯ ᏗᎬᏙᏗ ᎨᏎᏍᏗ ᎠᏍᏓᏱᏗᏍᏗ ᏂᎦᎥ ᎧᏃᎮᏗ ᎨᏒᎢ. ᎤᏩᏌ ᎦᏂᎩᎸ Mrs. Chapman, ᏔᎵ ᎠᎴ ᏦᎢ ᎢᏯᏂ ᏗᎨᏥᎾᏌᎢ, ᎤᏂᏲᎯᏍᏔᎾ ᎪᎰᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ, ᏥᏯᎵᎪᏁᎸ ᏧᏪᏅᏒ. ᎤᏁᎦ ᏃᎴ ᎤᏬᏍᎩᎵ ᎤᏬᏚᏨ ᏄᎵᏍᏔᏁᎢ ᏫᎵᎻ. “ᎯᏣᎦᏎᏍᏓ ᏄᏔᎷᎩᏍᎬ ᎯᎠ ᏅᎩ ᏗᎦᏅᏌᏗ! “ᏂᎦᏉ ᎾᎾᏛᎦ ᎪᎱᏍᏗ ᏳᏰᎵᏛᎾ!” ᎤᎵᏍᎦᏎᏔᏁᎢ ᏥᏍᏕᏥ. ᏭᎵᎪᎾᏛ ᎤᏍᏘᏰᎩ ᏳᎾᎵᏙᎩᏯ ᏤᎩᏏᏂ ᏃᎴ ᎦᎳᎱᏂ, ᏯᏂᏲᏔᎲᎦ ᎠᏓᏒᎲᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎦᏬᏂᏍᎨᏍᏗ, ᎠᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏔᏲᎯᎮᏍᏗ ᎠᏥᏍᏕᎸᏗᏱ ᎤᏁᏢᏙᏗᏱ. ᏳᏴᎵᎳ ᎠᏍᏆᏚᎸ, ᏕᎦᏔᎶᎬ ᏓᏧᏍᏛ ᎠᎾᎦᏔᎲᏍᎬ ᏗᏂᏍᎪᎵ ᎤᎾᎦᏙᏍᏛ. “ᎡᎵᏍᏗ, “ᎤᏛᏁ ᏌᏌ ᎠᏨᏯ, “Ꭴ ᏔᎵ ᏣᏣ ᏔᎵ ᏔᏔ ᏔᏔ ᏔᏔ.” ᎯᎸ ᎢᏴ ᎤᏒᎯ ᎤᏲ ᎠᏍᎩᏗᏍᎨᎢ. ᏰᎵ ᎢᏯᏂ ᎠᏂᏍᎦᏯ ᎤᎾᏛᏅᎢᏍᏔᏁ ᎤᎾᎵᏍᏕᎸᏗ. ᎤᏴᏍᏗ ᏭᏓᏒᏍᏙᏗ ᎤᏛᏅᎢᏍᏔᏁ ᏫᎵᎻ. ᎾᏍᎩ ᏥᏥᎦᏔᎭ ᎢᏥᏏᏴᏫᎭ ᏂᏨᏪᏎᎸ ᎢᏨᏬᏁᏔᏅ, ᎠᎴ ᎢᏨᎦᎵᏍᏓᏛ, ᎠᎴ ᎢᏨᏰᏯᏔᏅᎢ, ᎾᏍᎩᏯ ᎠᎦᏴᎵᎨ ᏥᏂᏕᎦᏪᏎᎰ ᏧᏪᏥ, ᏂᎦᏛᏰᏃ ᎤᏣᏘ ᎤᏂᎲ ᎤᏃᏣᎴᏛ ᎠᏂᎲᎦ; ᎾᏍᎩᏍᎩᏂ-ᎤᏂᎩᏛ ᎨᏒ ᎠᎲᎦ ᏂᎦᏛ ᎤᎲᎢ, ᏂᎦᏛ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎲᎢ. ᎯᎠᏃ ᏂᏑᏪᏎᎴᎢ, ᎦᏙ ᎢᏍᏗᏃᎮᎭ ᎯᎠ ᎾᏍᎩ ᏥᏍᏓᎵᏃᎮᎭ ᎢᏍᏓᎢᏒᎢ ᎠᎴ ᎤᏲᏉ ᏥᏅᏩᏍᏗ ᏥᏍᏓᏓᏅᏔ? ᎩᎳᏉᏃ ᎢᏴᏛ ᏧᎳᏏᏕᏄᎶᏗ ᎤᏅᏤᎢ, ᎠᎴ ᎤᎵᏍᏆᏕᎴᎢ. ᎠᏂᏫᏅᏃ ᎤᏂᏴᎸ ᎤᏂᏩᏛᎮ ᎤᏲᎱᏒᎯ ᎢᎨᏎᎢ, ᎤᏂᎾᏫᏛᎲᏃ ᏭᏂᏂᏌᏁ ᎤᏰᎯ ᏫᎦᏅᎢ. ᎠᎴᏬ ᎤᏙᎯᏳᎯ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎪᏢᏒᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᎬᏩᎵ, ᎠᎴ ᎡᎶᎯ ᎡᎯ ᎦᎸᏉᏗᏳ ᎦᎵᏦᏛᎢ. ᎫᏓᎸᏗ! ᏅᏩᏓᎴ ᎡᎭ ᎠᏴ ᎠᎩᏃᎮᏍᎩ, ᎠᎴ ᏥᎦᏔᎭ ᎤᏙᎯᏳᎯ ᎨᏒ ᎾᏍᎩ ᎧᏃᎮᏍᎬᎢ, ᎠᏴ ᎠᎩᏃᎮᏍᎬᎢ. ᎠᎩᏄᎸᎲᎦ ᏩᎦᏌᎩᏍᏗ, ᏃᎴ ᎨᏍᏗ ᎬᎩᏠᏫᏍᏗ ᏱᎩ. ᏃᎬᎨᏫᏍᎬᎾ ᎣᏣᏅᏓᏗᏍᎪ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎢᏦᎯᏳᏒ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎢᏣᎵᏂᎬᏁᎲ ᎠᏓᎨᏳᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᏗᏨᏂᏗᏳ ᎨᏒ ᎤᏚᎩ ᎡᏨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎾᏍᎩ ᎢᎩᏙᏓ; ᎭᏩ, ᎠᏆᏛᏅ. ᎤᏣᏘᏃ ᎤᏃᎸᏅ, ᎥᏓᎵ ᏓᎵᏍᏗᎳᏁᎬᎩ. ᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎠᎴ ᎠᎦᏬᏍᎨᏍᏗ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ; ᏂᎪᎯᏳᎲᏍᎬᎾᏍᎩᏂ ᏣᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎤᎬᏫᏳᎯ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ; ᎢᎸᎯᏢᏃ ᏄᏛᎿᏕᎬ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎠᏓᏅᏙ, ᎾᎿ ᎡᎭ ᎣᏩᏒ ᎣᏤᎵ ᎠᏓᏅᏙ, ᎾᎿ ᎡᎭ ᎣᏩᏒ ᎣᏓᏤᎵᎦᏯ ᎨᏒᎢ. ᎣᏍᏓ ᏙᎩᎾᎦᏎᏍᏔᏅ ᏐᏉᎯᎭ ᏃᎴ ᎣᎩᎾᏁᎸᏔᏅ ᎣᎩᏃᎵᏍᏗ ᎠᎵᏥᏙᎲᏍᎩᏱᎩ ᎠᎴ ᎤᏴᏍᏓᎩᏍᎩᏱᎩ. ᎾᏍᎩᏃ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏤᎲᎩ, ᎠᎴ ᎾᏍᎩ ᏁᎲᎾ ᏥᎩ, ᎾᏍᎩ ᏧᏁᎵᏁᎢ, ᎠᎴ ᎾᏍᎩ ᏚᎵᏉᎩ ᎢᏯᏂᏛ ᎨᏒ ᎨᎳ, ᎠᎴ ᎠᏥᏛᏙᏗᏱ ᏮᏓᎦᎶᏏ. ᎾᏍᎩ ᎯᎠ ᎤᎾᏎᎵᏙᎴ ᎠᏏ ᏌᎵᏂ ᏏᏓᏱ ᎤᎬᏫᏳᎯ ᏂᎨᏒᎾ ᏥᎨᏎᎢ. ᎢᏣᏛᎬᎦ ᎠᏐᏢᎢᏍᏗᏍᎬᎢ; ᎦᏙ ᎢᏤᎵᎭ? ᏂᎦᏛᏃ ᏕᎬᏭᎪᎵᏁᎴ ᏰᎵᏉ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒᎢ. ᎤᏚᎩᏉᏰᏃ ᎢᎬᎭ ᎡᎩᏍᏕᎸᏗᏱ; ᎤᏚᎩᏍᎩᏂ ᎣᏩᏒ ᎠᎪᎲᎯ ᏥᎨᏐᎢ ᎥᏝ ᎤᏚᎩ ᏲᏩᏐᎢ; ᎪᎱᏍᏗᏰᏃ ᏨᎪᏩᏘᏍᎪᎢ, ᎦᏙᏃ ᎠᏏ ᎤᏚᎩ ᏱᎦᏲᏩᎭ? ᎠᏎᏃ ᎤᏅᏌ ᎤᎾᏤᎵ, ᏐᏉ ᎢᏯᎦᏴᎵ ᎢᏰᏆ, ᎨᏍᏗᎭ ᎠᎦᏗᏓ ᏱᎩ ᎤᏪᎵᏎ ᏲᎾ. ᏍᎩᏃᎲᏏ, ᏂᎯ ᎢᏣᏚᎵᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎢᏣᏓᏄᏴᏙᏗᏱ, ᏝᏍᎪ ᏱᏣᏛᎩᎭ ᏗᎧᎿᏩᏛᏍᏗ? ᎤᏂᏃᏕᎾ ᏧᎳᏏᏕᎾ ᎾᎥᏂ ᎠᏂᎾᏣᎡᎢ. ᎢᏳ ᎠᎴ ᏛᎪᎩᏁᎵ ᏗᏤᎵᏎᎯ ᏱᏗᏣᏙᎳᏍᏗᎭ; ᎦᏙ ᎢᏥᎭ ᎦᏰᏣᎵᎡᎵᏤᏗ ᎨᏒᎢ? ᎠᏂᏍᎦᎾᏰᏃ ᎾᏍᏉ ᎠᏂᏍᎦᎾ ᏓᎾᏙᎳᏍᏗᏍᎪᎢ, ᎾᏍᎩ ᎢᎦᎢ ᏔᎵᏁ ᎥᎨᏥᏁᏗᏱ. ᏂᎯᏰᏃ ᎠᏫ ᎤᎾᎴᏲᎥᎯ ᎾᏍᎩᏯ ᎨᏎᎢ; ᎪᎯᏍᎩᏂ ᎨᏒ ᎢᏣᏨᏒ ᎡᏥᎷᏤᎸ ᎠᏫ-ᏗᎦᏘᏯ ᎠᎴ ᏗᏣᏓᏅᏙ ᏗᎦᏘᏯ. ᏅᎩ ᎤᎩᏨᏓ ᏄᎵᏍᏔᏂᏙᎸ ᏧᏓᎴᏅᏓ ᎤᏂᏃᎮᎸ ᏃᎴ ᎤᏃᏪᎳᏅ ᎣᎭᏁ ᏚᏕᏘᏴᏌᏗᏒ. ᎣᎦᎵᏍᏔᏴᏃᎾ ᏍᎦᏚᎩ ᏧᎳᏍᎩ ᏲᏣᎴᏫᏍᏗᏍᎬᎾ ᏔᎵ ᎠᎴ ᏦᎢ ᏧᏙᏓᏆ, ᎤᏣᎴᏓ ᏧᏤᎵ ᎠᏂᏍᎦᏯ ᎣᎦᎵᎪᏅ ᎣᏥᎭᏯᎸᏒ ᏣᎵ. ᏌᏌ ᏍᏉ, ᎤᏂᏃᏕᎾ ᎢᏧᎳᎭ ᎠᏁᎮᎢ. ᎠᏴᏍᎩᏂ ᎨᏒ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎾᏍᎩ [ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ] ᎡᎩᏰᎸᎾᏁᏗ ᏥᎩ, ᎡᏙᎯᏳᎲᏍᎩ ᎾᏍᎩ ᏧᎴᏔᏅᎯ ᎤᏲᎱᏒ ᏥᏌ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ; ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᎾᏍᎩ; ᎢᏂᏯ, ᏥᏌ ᎦᎶᏁᏛ ᏣᏅᏮᎦ; ᏔᎴᎲᎦ, ᎠᎴ ᎯᏰᏍᏛᎢᏌ ᏣᏂᏏᏗᏱ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎴᏁᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎨᏲᎲᏍᎩ ᎨᏒᎩ, ᎦᎶᏁᏛᏱ ᏗᎦᏘᏁᎩ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎢᎦᏚᏓᎴᏍᏙᏗᏱ. ᎠᏓᏪᎯ ᎪᏍᏗᏳᎵ ᎦᎶᎪᏗ ᎤᏃᎮᎴ ᎤᏕᎶᎰᏒ. ᎣᏍᏓ ᎠᏒᎩ ᎪᎢ ᎬᏗᏍᎬ, ᎤᎵᏔᏬᎥ ᏫᏚᏍᏔᏅᏅ, ᏚᏯ ᏓᏫᏒ ᏚᏍᏔᏅᏅ ᎢᎦᎦᏓ ᏄᏍᏛ ᎤᏍᎫᏓᏁᎦᎸ. ᎠᏎᏃ ᎤᎾᎵᎪᎯ ᏕᎬᏩᏚᏫᏍᏕᎢ ᏚᎴᏁᎢ, ᎠᎴ ᏗᎦᎦᎲ ᏭᏴᎴᎢ. ᎤᎩᏨᏛᏃ ᏆᏂᏆ ᎤᎾᏂᎩᏎᎢ, ᏓᏈ ᏭᏂᎶᏎᎢ. ᎡᏗᎨᏳᎠ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎢᎬᏱ ᎢᎩᎨᏳᎯᏳ ᏄᎵᏍᏔᏅᎢ. ”ᎨᏍᏗᏃ ᎤᏙᎯᏳ ᏱᏥᎦᏔ,” ᎤᏛᏁ ᏌᎳᏓ. ᎢᏳᏃ ᎩᎶ ᎢᏍᏓᏛᏛᏅ ᎦᏙᏃ ᎢᎡᏍᏕᎵᏌᏕ-Ꭽ? ᎢᏍᏙᏎᎸᎭ, ᎯᎠ ᏁᏍᏗᏪᏎᎸᎭ; ᎤᎬᏫᏳᎯᏰᎾ ᎤᏚᎵᎭ. ᎠᏧᏣ Crockett ᏚᏓᏁᏄᎸᏁ - ᎤᎵᏍᎦᏰᎬᏍᏔ ᎠᎴ ᎤᏙᏔ - ᎤᏂᏌᏙᏴᏗ ᏚᎾᏓᏁᏤᎸ. ᏧᏂᏲᎱᎯᏍᎩᏂᏃᏅ ᎤᎾᎴᎯᏐᏗ ᎨᏒ ᏥᏥᏁᎢᏍᏗᎭ, ᏝᏍᎪ ᏱᏥᎪᎵᏰᏱ ᎤᏁᎳᏅᎯ ᎢᏥᏁᏤᎸᎯ, ᎯᎠ ᏥᏂᎦᏪᎭ? ᎠᏴ ᏈᏓ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᏫᏨᏲᏪᎳᏏ ᎢᏣᏗᎦᎴᏲᏨᎯ ᏋᏗᏱ ᎢᏤᏙᎯ ᎠᎴ ᎨᎴᏏᏱ ᎠᎴ ᎨᏆᏙᏏ ᎠᎴ ᎡᏏᏱ ᎠᎴ ᏈᏗᏂᏱ; ᎤᏣᏘ ᎪᎩᏍᏗᏰᏗᏍᎬ ᎪᎩᏔᏲᏎᎲᎩ ᎾᏍᎩ ᎤᏂᏅᎯ ᏦᎦᏓᏂᎸᎢᏍᏗᏱ, ᎠᎴ ᎣᎦᏖᏆᎶᏗᏱ ᏦᏥᏍᏕᎸᏗᏱ ᏧᎾᏁᎶᏗ. ᎠᏎᏗ, ᎠᏆᏚᏓᎸᏅ ᎤᏟᏂᎩᏓ. ᎠᎴ ᏓᏆᎧᎿᏅᎩ, ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎠᏂᏁᎬ ᎠᏂᏁᎬ ᎤᏂᏣᏘ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᎾᏚᏫᏍᏛ ᎦᏍᎩᎸᎢ, ᎠᎴ ᎠᏂᏁᎬ ᏗᏅᏃᏛ ᎠᎴ ᏧᎾᏛᏐᏅᎯ; ᎯᎠᏃ ᎾᏂᎥᎩ, ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎤᎶᏏᎶᏛ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ, ᎠᎴ ᎠᎦᏴᎵ ᎤᎦᏴᎳᏥᎶᏛ. ᎠᏓᏬᏍᏗ ᏥᎨᏐ ᎪᎨ ᎤᏗᎴᎩ ᏥᏓᏙᏓᏇᎪ! ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴ ᎾᏍᎩ; ᎠᎴ ᏓᏰᏥᎪᎢ ᏴᏫ ᎤᏪᏥ ᎤᏬᎴᏍᏗ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎠᎴ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸ ᎦᎸᎶᎢ. ᏆᎴᏗᏃ ᎯᎠ ᏂᎦᏪᏎᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏴᏫ, ᎥᏝ ᏱᏥᏣᏘ ᎤᏍᎦᏅᏨ ᎯᎠ ᎠᏍᎦᏯ. ᎠᏂᏧᏏᏃ ᎤᎾᏤᎵᎦ ᎧᏃᎯᏰᎩ ᏗᎵ ᏍᏓᏴᏗᏱ ᎤᏍᏆᎸᎯᏗᏒᎩ; ᎤᏂᏣᏛᎩᏃ ᎾᎿ ᎤᎾᏂᎩᏒᎩ ᏥᎷᏏᎵᎻ ᏭᏂᎶᏒᎩ ᎠᏏᏉ ᎾᏍᏆᎵᏍᎬᎾ ᏫᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ, ᎤᎾᏓᏅᎦᎸᏗᏱ ᎤᏂᏰᎸᏒᎩ. ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᏕᏲᎲᏍᎩ, ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᎩᏍᏆᏂᎪᏔᏅ ᏥᏧᏣ ᎨᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ. ᎠᎴ ᎠᏆᏓᏅᏙ ᎤᎵᎮᎵᏤᎸ ᎤᏁᎳᏅᎯ ᎠᎩᏍᏕᎵᏍᎩ. ᏫᏥ ᎢᏣ ᎤᏂᎾᎷᏒ ᏍᎩᎾᎾ ᏃᎴ ᎠᏂᏫᎾᎨ ᎠᏂᏍᎦᏯ. ᎩᎶᏍᎩᏂ ᏕᎪᏕᏍᏗᏍᎨᏍᏗ ᏌᏉ ᎯᎠ ᏧᎾᏍᏗᎦ ᎨᏒ ᎾᏍᎩ ᎬᏉᎯᏳᎲᏍᎩ, ᎤᏟ ᎣᏏᏳ ᎠᏍᏙᏍᎩ ᏅᏯ ᏯᏥᏯᏝᏅ, ᎠᎴ ᎠᏍᏛᎬ ᎠᎺᏉᎯ ᏯᏥᎬᏴ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏚᎾᏓᏅᏛᎢ; ᎤᎾᏤᎵᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᏌᏊᏃ ᎩᎳᏊ ᎢᏴᏓ ᏥᏲᎵᏨ ᎾᎥ ᎢᏦᎦᏓᎵ ᎨᏒᎢ. ᎿᏉᏃ ᎢᎦ ᎤᏓᎴᏅᏛ ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎢᏯᏍᏘ ᎤᏒᎯᏰᏱ ᎢᏗᏢ ᎤᎵᏏᎲᏒᎩ ᏂᎬ ᎾᏍᎩ ᎦᏙᎯ. ᏣᏄᏏ ᏚᎷᏫᏍᏔᏁᎮ ᎪᏒᏍᎬ ᏫᎵᎻ ᎤᏦᏙᏗ, ᎤᏛᎦᏁᎢ ᎦᏃᎩᏍᏗ ᏃᎴ ᎠᎧᏔᎮᎢ ᏃᏉ ᎤᏍᏆᎸᎲ ᏄᎾ ᏧᎳᎩᏍᏗ. ᎥᏝ ᎾᏍᎩ ᎨᎾ ᏄᏛᏁᎸᎢ, ᎾᏍᎩ ᎤᏁᎫᏥᏛ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎨᏎᎢ, ᎠᎴ ᎤᏅᏟ ᏧᎴ. ᎦᏙᏃ ᎢᎤᎴᎢ? ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᎩᏂ ᎤᏩᏒ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏲᎢᏳ ᎨᏒᎢ, ᎤᏅᏟᏃ ᏚᎸᏫᏍᏓᏁᎲ ᎣᏏᏳ ᎨᏒᎢ. ᎦᏣᏅᎵ ᎤᎵᎪᏚᏅ, ᎨᏍᏗ ᏱᏥᎦᏔ ᏥᏳᏳᎪᏘ ᎢᏳᏍᏘ ᏂᎵᏍᏔᏅ, ᎢᏳᏍᏘ ᏄᏛᏁᎸ. ᎠᏥᎸ-ᎤᎦᏔ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎦᏙᎯ ᏣᏫᏐᎢ, ᏥᏭᏓᎪᎾᏛᏗ ᎤᏍᏗᎩᏳ ᎡᏍᎦᏉ ᏂᎦᎥ ᎤᎦᏔ ᎦᏙᎯ ᏓᎭᏛᎢ. ᏚᎳᏍᎨᏅ ᎦᏙ ᎤᏍᎪᎸᎢᎨ ᏂᎦᎵᏍᏗᏍᎨ, ᎾᏍᎩᏯ ᎦᎸᎶ ᎢᏣ ᏣᎵᏌᎳᏗᏍᎪ. ᎤᏁᎸᏔᏁ ᎤᏩᏗ, ᏯᎪᏩᏘᏍᎬᎾ ᏂᏚᏍᏖ ᏗᎦᏙᎵ ᏚᎦᏙᏍᏖ ᏚᏑᎬ ᏧᏆᎶᎦ ᎢᏤᎯ ᎢᏳᏍᏘ ᏚᏨᏍᏛ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᏂᎯ ᎾᏍᏉ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏦᏏᏏᏍᎩ ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ! ᏕᏥᏐᏈᎸᏍᎪᏰᏃ ᏴᏫ ᏗᎵᏒᏍᏗ ᎤᏕᏯᏙᏗ ᏗᎵᏒᏍᏗᏱ, ᎢᏨᏒᏍᎩᏂ ᎥᏝ ᏴᎨᏥᏃᏟᏍᏓ ᏗᎵᏒᏍᏗ ᏴᎨᏨᏓ ᏌᏉ ᎢᏥᏰᏌᏛᎢ. ᎠᏇᏂ ᎡᏥᏲᎵᎸᎭ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎴ ᏍᏕᎩ ᏥᎨᏳᎢ. ᎩᎳᏉ ᎤᏂᏅᎪᏦᏅ ᎠᏂᎾᎩᎵ ᏩᏂᏴᎯᎮ ᎤᏂᏃᏴᎵᏓ, ᏳᎾᎦᏔᎲᏌ ᎤᎾᏁᎳᏛ ᏓᏂᎪᏩᏘᏍᎨ ᏓᎾᎩᎸᏗᏍᎬ ᏗᏂᎳᏴᏅᎯᏓ ᎠᎴ ᎠᏂᎾᏏᏂᏒ ᎠᏍᏕᏴᏓ ᎬᏘ ᎨᏯᏔ ᏏᏆ, ᎤᏁᎷᎩ ᏥᏔᎦ ᏓᏂᎨᎯᏙᎲ ᎯᎸᎢᏴ ᎠᎾᎵᎮᎵᎬ, ᏓᎾᎪᎲᏍᏗᏍᎨ ᏓᏓᏁᎸ ᎤᏏᏩ ᏱᏄᏅᏁᎳ. ᎾᏍᎩᏰᏃ ᏂᎦᏛ ᎯᎠ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎡᎶᎯ ᏓᏁᏩᏗᏒ ᎤᏂᏲᎰᎢ; ᎢᏥᏙᏓᏃ ᎠᎦᏔᎰ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎢᏥᏂᎬᎬᎢ. ᏧᏅᏏᏴ ᎤᎵᏏᎬ ᏭᎷᏨ, ᎭᎾᎾ ᎣᎯᏍᏙᏗ ᎤᎾᏛᎪᏗ ᎦᏬᏂᏍᎬ. ᎤᏕᎳᏓ ᎤᎵᏗᏨ ᎤᎭᎷᎨ ᎩᏟ, ᏣᏄᏏ ᎭᏂᏣ. ᎾᏍᎩ Ꮎ ᎤᎾᏓᏅᎦᎸᏛ ᎨᏒᎢ, ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᎾᏓᎥᎦᎸᎡᎸᎯ ᎨᏐᎢ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎦᏓᎭ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎠᎴ ᏄᏃᎯᏳᏒᎾ, ᎥᏝ ᎪᎱᏍᏗ ᎤᎾᏓᏅᎦᎸᎡᎸᎯ ᏱᎨᏐᎢ; ᎾᏍᏉᏍᎩᏂ ᏚᎾᏓᏅᏛ ᎠᎴ ᏧᏄᎪᏙᏗᏱ ᎦᏓᎭ ᎢᏗᎬᏁᎸᎯ. ᎠᏂᏐᎢᏍᎩᏂ ᏧᏂᏲᎱᏒᎯ ᎥᏝ ᏯᏁᎮ ᎬᏂ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᏚᎶᏐᏅ. ᎯᎠ ᎾᏍᎩ ᎢᎬᏱᏱ ᏗᎴᎯᏐᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎣᏍᏛ ᎾᎦᏛᏁᎸ ᎡᏆᎭᎻ ᎾᏍᎩ ᎤᏂᎷᏤᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏥᏌ ᎦᎶᏁᏛ ᏅᏓᏳᏓᎴᏅᎯ; ᎾᏍᎩ ᎡᏥᏁᏗᏱ ᎠᏓᏅᏙ ᎠᏚᎢᏍᏛ ᎪᎯᏳᏗ ᎬᏙᏗ ᎨᏒᎢ. Ꭷ, ᏗᏥᏲᎵ, ᏥᏌ ᎡᏥᏯᎡᏍᏗ, ᎾᏍᎩᏃ ᎾᎯᏳ ᎦᎾᏄᎪᏥᎸᎭ ᏂᏗᎾᏰᏍᎬᎾ ᎨᏎᏍᏗ ᎠᎴ ᏂᏓᏕᎰᏍᎬᎾ ᎨᏎᏍᏗ ᎠᎦᏔᎲᎢ ᎾᎯᏳ ᎦᎷᏥᎸᎭ. ᎥᏝ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᏳᏓᏑᏯ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎤᎧᎵᏨᎯᏍᎩᏂ ᎨᏒ ᎠᏓᎨᏳᏗ ᎦᏄᎪᏫᏍᎦ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ; ᎦᎾᏰᎯᏍᏗᏰᏃ ᎨᏒ ᎠᎩᎵᏯ ᎤᏪᎭ; ᎩᎶ ᏥᎦᎾᏰᏍᎪᎢ ᎥᏝ ᎤᎧᎵᏨᎯ ᏱᎨᏐ ᎠᏓᎨᏳᏗ ᎨᏒᎢ. “ᎠᏯᏗ ᎨᎵᏍᎬ ᎤᏣᏔ ᎣᏍᏓ ᏂᎯ,” ᎤᏛᏁ ᏌᎳᏓ, ᏍᎩᏰᏃ ᎠᏎᏍᏗ. ᎨᏣᎦᏙᎥᎯᏍᏗᏰᏃ ᏂᎦᎵᏍᏗᎭ ᎾᏍᎩ ᎠᏏᏉ ᏔᎳᏚᏉ ᏄᏒᎭ ᏥᎷᏏᎵᎻ ᎬᏆᏓᏙᎵᏍᏔᏅᏒᎯ. ᎦᎸᎳᏗᏢᏃ ᎪᏪᎴ ᏄᏍᏛ ᎠᏓᎢᏍᏛᎢ, ᎯᎠ ᏂᎬᏁᎢ, ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒ, ᎤᏪᏛᏨᎩ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎬᏬᎯᏳᎲᏍᎩ ᎨᏥᏁᏗ ᎨᏒᎢ; ᏝᏰᏃ ᎠᏏ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏱᎦᎾᏄᎪᎨᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏥᏌ ᎠᏏ ᎾᏥᎸᏉᏗᏍᎬᎾ ᎨᏒᎢ. ᎠᏎᎩ ᎤᏲ ᏱᏂᎬᎦ ᏤᏣᎧᏃᏗ “ᎭᏂᏉ ᎮᏙᎮᏍᏗ!” ᎤᏛᏁ ᎤᏥ. ᎤᎾᎴᏃ ᏄᎵᏍᏔᏅ, ᏂᎦᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏁᎲ ᎠᏫ ᎤᏂᏃᎮᎴ ᎢᏳᎾᏛᏁᏗᏱ ᏥᏌ ᎤᏂᎯᏍᏗᏱ. ᎾᏍᎩᏃ ᏌᏉ ᎢᏤ ᏥᎪᏎᎭ, ᏐᎢ ᎤᏪᏘ ᏂᎬᏁᎭ. ᎪᎱᏍᏗᏰᏃ ᎤᏪᏘ ᎢᎬᏁᎸᎯ ᎠᎴ ᎤᏪᏔᏨᎯ ᏥᎨᏐ, ᎤᏲᏥᏕᏅ ᎨᏐᎢ. ᎠᎴ ᎾᏍᏉ ᎩᎬ ᏚᏍᏚᏟᏍᏔᏁ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ. ᏣᎬᏫᏳᎯ, ᎦᎢᏒ ᎢᎦ ᎠᏰᎵ ᎠᎩᎪᎲᎩ ᎢᎦᎦᏛᎢ, ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩ ᎤᏍᎪᏒᎢ ᎤᏟ ᎨᏒᎩ ᎡᏍᎦᏉ ᏅᏙ, ᏓᏆᏚᏫᏍᏔᏅᎩ ᎠᏴ ᎠᎴ ᎾᏍᏉ ᎣᏤᎯ. ᎠᏎᏃ ᎠᎩᎪᎲ ᏂᏚᏳᎪᏛᎾ ᎾᎾᏛᏁᎲᎢ, ᎾᏍᎩᏯ ᏚᏳᎪᏛ ᏓᏕᏲᎲᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ, ᏂᎦᏛ ᎠᏂᎦᏔᎲ ᎯᎠ ᏅᏥᏪᏎᎸᎩ ᏈᏓ, ᎢᏳᏃ ᏂᎯ, ᎯᏧᏏ ᏥᎩ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏱᏄᏍᏗ ᏰᎭ, ᎠᏂᏧᏏᏃ ᏄᏍᏛ ᎠᏁᎲ ᎾᏍᎩᏯ ᏄᏍᏛᎾ ᏱᎩ ᎮᎲᎢ, ᎦᏙᏃ ᎠᏂᏧᏏ ᏄᏍᏛ ᎠᏁᎲ ᎾᏍᎩᏯ ᎤᎾᏕᏗᏱ ᏥᏂᏕᎲᏁᎭ ᏧᎾᏓᎴᏅᏛ ᏴᏫ? ᎢᎦ ᎾᎥᏂ ᎨᏒ, ᎦᏍᎩᎸ ᎣᎭᏁ ᎤᏬᏢ, ᏑᎾᎴ ᎤᎾᎵᏍᏔᏴᏅ ᎦᎳᎨᏴ ᏧᏃᏩ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏌᎳᏓᏅ ᎠᎦᏘᏏ ᎤᏪᏰᏂ ᎤᏩᏔᏅ, ᎤᎬᏫᏳᎯ ᎠᎴ ᎠᏓᏍᏕᎵᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ, ᎢᏏᎵ ᏧᏁᏗᏱ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᎦᎨᏥᏁᏗᏱ ᎤᏂᏍᎦᏅᏨᎢ. ᎠᎪᏄᏰᏃ ᎠᎩᏲᏏᏍᎬᎩ, ᎥᏝᏃ ᏱᏍᎩᏰᎳᏍᏔᏁᎢ; ᎠᎩᏔᏕᎩᏍᎬᎩ, ᎥᏝᏃ ᏱᏍᎩᎤᏁᎢ; ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎤᏍᏆᏂᎪᏗᏳ ᎤᏕᎵᏛ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏗ ᎨᏒᎢ; ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎾᎬᏁᎴ ᎤᏬᏓᎵ ᎨᏒᎢ, ᏄᏠᎾᏍᏛᎾ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎠᏓᏅᏙ, ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᎪᎮᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎨᎦᎵᏥᏙᏁᎴ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎨᎢ, ᎠᏂ ᎡᎶᎯ ᎠᎪᎢᏳᏁᎢ, ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏫᏓᎦᏓᏂᎸᏤᎢ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎥᏝ ᎿᏉ ᎠᏴ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎭ, ᎠᏍᎦᏂᏍᎩᏂ ᎾᏍᎩ ᏣᎩᏯᎠ. ᎤᏓᏏᏂᏕᏅ ᏭᏂᎷᏤ ᎦᎷᏯᏍᏗ, ᏚᎾᎭᏄᏮ, ᏚᏂᏍᏘᏰᎬ, ᎤᏂᏁᎦᎸ ᎠᏒᎨ ᏧᏂᎶᏒ - ᎠᏂᏒᎨ ᎤᎭᏰᏌᏛ ᏧᏆᎶᎬ, ᎪᏍᏔ, ᎢᎾᎨ ᎠᏁᎯ ᏧᎾᏗᎩᏓ, ᎠᎵ ᏃᎴ ᎠᏓ ᏧᎦᏒᏍᏗ. ᏣᏂ ᏥᏓᏓᏬᏍᎬᎢ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᏣᏥᏌᎳᏓᏅ ᏤᎩᏯᏅᎡᎸᎩ, ᎾᏍᎩ ᎯᎠ ᎠᏂᏍᎦᏯ ᎠᏎ ᏌᏉ ᎠᏑᏰᏍᏍᏗ, ᎾᏍᎩ ᎢᎨᎳᏗᏓᏍᏗᏱ ᎤᏃᎮᏗᏱ ᏥᏌ ᏕᎤᎴᎯᏌᏅ ᎢᏗᏃᎮᏍᎬᎢ. ᎠᏒᎨ ᏍᏉ ᎤᎧᏔ, ᏧᏂᏯᏨᏗ ᏃᎴ ᏗᎦᏆᏙᏗ ᎪᎢ ᏃᎴ ᎠᏣ ᏗᎪᏒᏔᏅ ᏗᎳᏑᎶ ᏃᎴ ᎠᏤ ᎠᏍᏕᏯᏓ. ᏗᎦᏅᏍᎨᏂ ᏚᏩᏒᏙᎣᏎ, ᎫᏩᏓᏅᏖᏗ ᏱᎨᏒᎾ ᏄᎵᏍᏔᏁ, ᎭᎾᏉ ᎱᏅᏤᎢ, ᎤᎸᏖᎴ. ᏆᎴᏗᏃ ᎤᏁᏤ ᏄᏍᏛ ᎤᎦᏚᎵᏍᎬ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᏗᏓᎯᏍᏗ ᎨᏒᎢ, ᎤᏓᏴᏍᏕᏍᏗ ᎨᏒᎢ, ᏧᏂᏴᏍᏕᏍᎩ ᏧᏂᎳᏫᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗᏓᏂ; ᎯᎠ ᎾᏍᎩ ᎦᏳᎳ ᏂᏨᏃᏁᎭ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏨᏃᏁᎸᎯ ᏥᎩ ᏧᏩᏓᏔᏅᏒᎢ, Ꮎ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ ᎥᏝ ᎤᎾᏤᎵ ᏱᏅᎦᎵᏍᏓ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏏ ᏯᎩᏍᏆᎸᎡᎭ; ᏂᎯᏍᎩᏂ ᏂᎪᎯᎸᏉ ᎢᏥᏍᏆᎸᎡᎰᎢ. ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏍᏗ ᎨᏎᏍᏗ ᎤᏂᎷᏤᏗᏱ ᎤᎵᏂᎩᏛ ᎤᏂᎶᏄᎮᏍᎩ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗ ᎤᏃᎯᏳᏗᏱ ᎦᏰᎪᎩ ᎨᏒᎢ; Boudinot ᏃᎴ ᎠᏫᎾ Ridge ᏃᎴ ᏧᎾᏓᎵ ᎤᎵᎮᎵᏍᏗ ᏄᏅᏁᎴ ᎠᏁᎬ. ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎾᏍᏉ ᏴᏫ ᏕᎬᏩᏠᏒᎩ, ᎤᎾᏛᎦᏅᎩᏰᏃ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎢ. ᎠᏴᏃ ᎣᏥᏃᎮᏍᎩ ᎾᏍᎩ ᏂᎦᏛ ᏄᏛᏁᎵᏙᎸ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎪᎯ ᎠᎴ ᏥᎷᏏᎵᎻ; ᎾᏍᎩ ᏧᏂᎸᎩ ᎨᏛ ᏧᎾᏛᏅᎩ. ᎤᎵᏇᏅᎮ ᎦᏂᏓᏛ. ᎤᏂᏣᏖᏃ ᎬᏩᎬᏍᎪᎸᏁ ᎬᏩᏁᏤᎴ ᎡᎳᏪᏱ ᎤᏮᏗᏱ; ᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᎤᏪᎷᏁᎢ, ᏕᏫ ᎤᏪᏥ ᏍᎩᏙᎵᎩ, ᎠᏗᏍᎨᎢ. ᎠᏯᏠᏃ ᎤᏂᏍᏚᎶᏔᏅᎯ ᎥᏝ ᏙᎴᏛ ᏗᏄᏬ ᏕᎦᏅ ᏱᎦᏁᎢ, ᎤᏁᎳᎩ ᎦᏇᏅᎯ ᎢᏴᏛ ᏫᎦᏅᎩ. ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᏪᎯ, ᎾᏍᎩ ᎬᏂᏛ ᎤᏪᎭ; ᎤᏁᎳᏅᎯᏃ ᎤᏪᏥ ᏄᏪᎲᎾ ᎥᏝ ᏳᏪᎭ ᎬᏂᏛ. ᏂᎦᏓ ᎢᏥᎷᏨᎯ. ᏃᏊᏛ ᎤᎴᏅᎮ ᎠᏒᎬ ᏩᎭᏯ. ᏥᏌᏃ ᎩᎳᏉ ᎢᏴᏛ ᎤᏙᎴᎰᏒ ᎤᏩᏒ ᎨᏒ ᎤᏓᏅᏬᏗ ᎨᏒ ᎤᏄᎪᏨᎢ, ᎤᎦᏔᎲᏎ ᎾᎿ ᎤᏅᏘᏛ ᎠᏂᏙᎾᎥᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᏓᏒᏂᎦ ᏗᏆᏄᏬ? ᎼᏏ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎢᏥᏁᎸᎩ; ᎥᏝᏍᎩᏂᏃᏅ ᎼᏏ ᎤᎾᏄᎪᏫᏒᎯ ᏱᎩ, ᎠᏂᎦᏴᎵᎨᏍᎩᏂ ᎤᏂᎾᏄᎪᏫᏒᎯ; ᏂᎯᏃ ᎤᎾᏙᏓᏆᏍᎬᏃ ᎢᎡᏥᎤᏍᏕᏎᎰ ᎠᏍᎦᏯ. ᏨᏅᎦᏍᎪᏃ ᏫᏣᎷᎯᏍᏗ ᏗᎨᏅᏒ?” ᏚᎾᎴᏁᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎴ ᎦᏰᎪᎩ ᎤᏂᏃᎮᎴ ᎬᏩᏡᏗᏍᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎠᎬᏱ ᎤᏂᏲᎸᎢᏍᏔᏅ’ ᎪᏪᎴ. ᎢᏗᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏣᎦᎴᏔᏅᎯ ᎨᏒᎢ, ᎥᏝ ᏔᎵᏁ ᎤᏲᎱᎯᏍᏗ ᏱᎩ; ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎥᏝ ᎿᏉ ᎤᏓᎵᏁᎯᏕᎯ ᏱᎩ. ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏳᏩᏴᎳ, ᏥᏍᏆᏯ ᏗᏂᏅᎪᎪ ᏚᎾᏁᏍᎩᎸ ᎠᏂᏃᎯᎸᏍᏗᏍᎪ ᏃᎴ ᎤᎾᎵᏍᎦᏎᏙ. ”ᏥᎩ,ᏥᎩ!” ᎠᎾᏗᏍᎪ. ᎠᎴ ᎾᏍᎩ ᎠᏥᏂᏌᏅᎢ, ᎠᎴ ᎾᏍᎩ ᏦᎢᏁ ᎢᎦ ᏙᎤᎴᎯᏌᏅ ᎾᏍᎩᏯ ᏂᎬᏅᎪᏪᎵᎯ; ᏂᎦᏓ ᎠᏂᏳᏩᏁᎦ ᏚᏂᏚᎭ, ᎯᏍᎩ ᎢᏯᏂ ᏗᎾᎵᏔᏕᎩ ᎩᏟ ᏗᏒᏓᏆᎶᏍᏗ ᏗᎪᏒᏔᏅ ᏓᏓᏁᎸ ᏃᎴ ᏗᏦᎭᏱ ᏧᏂᎳᏫᎢᏍᏗ, ᎤᏂᏣᏘ ᎠᏂᎾᏰᏍᎩ ᎠᏂᏃᎮ ᎠᏂᏍᏈᏍᏔ ᎠᏂᏴᏫᏯ ᎤᎾᏗᏍᎦᏢ ᏚᏅᏓᏒᎢ. ᎦᎸᏉᏗᏳᏍᎩᏂ ᎤᏓᏅᏙ ᎨᏒ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎬᏂᎨᏒ ᏥᎾᎬᏁᎴ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ, ᎾᏍᎩ ᎾᎿ ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅᎢ; ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ, ᎨᏍᏗ ᏳᏛᎦᏍᏔᎾ ᏫᎵᎻ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏉᎳ ᏒᏃᏱ ᎤᏁᎳᏫᏎᎲᎢ; ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᎯᏂᎨᏍᏗᏉᏍᎩᏂ ᎠᎴ ᏞᏍᏗ ᎡᎳᏪ ᏨᏅᎩ, ᏥᏯᎵᎡᎵᏤ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏥᏕᏥᏯᏁᎶᏗ, ᎾᏍᎩᏯ ᏗᎩᎦᏴᎵᎨ ᏄᎾᏛᏁᎸᎢ, ᏥᎬᏗᎭ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏆᏓᏅᏙ, ᏂᏥᏲᎯᏍᏗᏍᎬᎾ, ᎢᎦ ᎠᎴ ᏒᏃᏱ ᎬᏯᏅᏓᏗᏍᎬ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ, ᎣᎩᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏃᎩᎸᏉᏛᎾ ᎨᏒᎢ, ᎤᏲ ᎣᎩᏃᎮᏍᎬ ᎠᎴ ᎣᏍᏛ ᎣᎩᏃᎮᏍᎬᎢ; ᎣᎦᏠᎾᏍᏗ ᏥᎨᏐ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᏃᎦᏠᎾᏍᏛᎾ ᎨᏒᎢ, ᎤᎵᏍᏆᏙᏅ ᎤᎧᎭᏲᏛ ᎪᎨ, ᎤᏍᎦᏎᏗ ᏚᎦᎭᎾᏅ ᏚᏅᏓᏒ ᏚᎵᎢᏍᏗ ᎧᎸ ᎤᎵᏍᏆᏙᏅ ᏚᏧᎬ ᎧᏂᎩᏛ ᎨᏒ ᏧᏆᎶᎦ ᏃᎴ ᎩᎦᎨ ᏕᎦᎾᎱᎩᏍᎬ. ᎿᏉᏃ ᏓᎧᏁᏥ ᎯᎠ ᏂᏙᏓᎦᏪᏎᎵ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩᏰᏃ ᏁᏣᏛᏁᎸᎾ ᎨᏒ ᎤᏍᏗᎧᏂ ᎯᎠ ᎾᏍᎩ, ᎠᏴ ᎥᏝ ᏱᏂᏍᎩᏯᏛᏁᎴᎢ. ᎪᏍᏗᎭ ᎬᏂᎨ ᎦᏌᎴᏅ ᎤᎭᏄᏪ ᏃᎴ ᎤᏁᎦ ᎠᎭᎾᏬ, ᎠᎾᎵᎮᎵᏍᏗᏍᎩ ᎨᏎ ᎦᎸᎳᏗ ᏧᏙᎴᏋ ᎠᏁᎸᏙᏗ Princeton ᎦᎸᎳᏗ ᏗᏙᎴᏆᏍᏗ. ᏯᏂᎷᎬᎾ ᏥᎨᏎ ᎠᏂᏳᏩᏁᎦ, ᎠᏂᏴᏫᏯ ᏓᎾᏟᎲ ᎩᎦᎭ ᎨᏎ, ᎯᎸᎢᏴ ᏴᏫ ᎫᏩᏓᏁᏖᏗ ᏱᎨᏒᎾ, ᎾᎥᏂᎨ ᎠᏁᏦ. ᎠᎩᎪᎲ ᎤᏧᏍᏓᎷᎩᏍᎬ ᏚᏂᏍᏔᏲᎳ ᎦᎶᏇ, ᎤᎵᏌᎴᏓᏨ ᏚᎦᏒᏍᏛ ᏕᏧᎬ ᎣᎭᏁ ᎢᏣ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏦᎢᏁ ᎢᎦ ᎤᏂᏩᏛᎮ ᎤᏛᏃᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᏬᎴ ᎠᏰᎵ ᎠᏂᏅ ᏗᎾᏕᏲᎲᏍᎩ ᏓᏛᏓᏍᏓᏁᎮ ᎠᎴ ᏓᏛᏛᎮᎸᎥᏍᎨᎢ. ᎠᏎᏃ ᎾᏍᏉ ᎪᎯᏳᏗ ᎨᏒ ᎢᏣᎵᎬᏑᎶᏓ, ᎾᏍᎩ ᎢᏨᏗᏍᎬ ᏰᎵᏉ ᏗᎨᏨᏜᏕᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏥᏍᏟ ᎦᏂ ᎠᏍᎩᎾ ᏧᏤᎵᎦ. ᎬᏩᏚᏫᏛᏃ ᎤᎦᏖᏃᎴ ᎤᎪᏩᏛᏗᏱ ᎾᏍᎩ ᎯᎠ ᎢᏳᏛᏁᎸᎯ. ᎡᎳᏗ ᏄᏛᏁᎳ ᎠᏍᏓ ᎤᏬᏒᏁ. ᎤᏎᎦᏨᎯᏃ ᎾᎿ ᎣᎩᎶᏐᏅ, ᏬᎩᎷᏨᎩ ᎣᏍᏛ ᏗᏔᎳᏗᏍᏗᏱ ᏚᏙᎥᎢ, ᎾᎥ ᎦᏚᎲ ᎴᏏᏱ ᏧᏙᎢᏛ. ᎤᏭᏯᏔ ᎨᏒ ᎪᎱᏍᏗ. ᏰᎵ ᏧᏙᏓᏆᏓ ᎤᏓᏬᎢᏙᎴ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗᏳ ᏱᎩ ᎾᏍᏉ ᎾᏍᎩ ᏧᏅᏏᏓᏍᏗ ᏚᏳᎪᏛ ᎨᏒ ᎨᏥᏅᏏᏓᏍᏗ ᏯᎾᏤᎸᏍᎦ; ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎨᏎᏍᏗ. ᎠᏎᏃ ᎾᏍᎩ ᏚᏄᎪᏔᏅᎢ ᎤᏛᎦᏁ ᏐᎳ. ᏂᎪᎯᎸᏃ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᏗᎦᎶᎯᏍᏗᏱ ᏚᏂᎭᎷᏁ ᎤᏂᎯᏍᏗᏱ. ᎩᎶ ᏗᎦᎴᏅᏗᏍᎩ ᏌᏉ ᎠᎴ ᏔᎵ ᎢᏯᎨᏯᏔᏅᎯ ᎨᏎᏍᏗ ᎡᏥᏲᎢᏎᎸᎭ; ᎠᎬᏱ ᎤᎾᏅᎪᏣ ᎬᏂᎨ ᎤᏍᎪᎸ-ᎢᏤᎯ ᎠᏍᎪᎵ ᏌᏌ ᎠᏓᎯ ᏧᎩᏓᏟ ᎠᏰᎵ, ᎤᎧᏖᏃᎴ, ᎤᎪᎮᎢ ᏌᎳᏓ ᏃᎴ ᏚᏃᏣᏝᏁ. ᎡᏆᏃ ᎤᏁᏐᎠᏒᎩ ᏴᏫ ᎠᏁᎲ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᏌᏉᎭ ᎨᏒ ᏔᎸᏗ ᏄᏓᎨᏒ ᏄᏓᎨᏒᎩ; ᏴᏫᏃ ᎤᏁᎳᏅᎯ ᎤᏂᏐᏢᎢᏍᏔᏅᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏁᏍᏓᎳ ᎤᎾᏕᏯᏙᏗᏍᎬᎢ; ᎤᏣᏘᏰᏃ ᎤᎾᏕᏯᏙᏗᏍᎬᎩ ᎾᏍᎩ. ᎾᏍᎩᏃ ᎤᏂᏃᎮᎸ ᎠᎴ ᎤᎾᎵᏥᏙᏅ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎤᎾᏨᏎ ᏥᎷᏏᎵᎻ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎤᏣᏖ ᏌᎺᎵᏱ ᎠᏁᎯ ᏚᏂᏚᎲ ᎤᎾᎵᏥᏙᏁ Ꭳ-Ꮫ ᎧᏃᎮᏛ. ᏍᎩᏴᏃ ᏥᎨᏒ ᎠᏂᏍᎦᏯ ᎠᏂᏪᏏᏍᎬ ᏳᏂᏃᎮᎸ ᎤᏂᏥᏍᏔᏢ ᎾᎥᏂᎨ ᎤᏂᏴᏍᎩᎷᏓ. ᎠᏕᎭᏲᎯ ᎨᏴ ᎾᎥᏂ ᎨᏓᎵ ᏭᎶᏒ, ᎾᎥᏂ ᎤᏁᎦ ᎦᏩᏐᎥᏍᎬ ᏃᎴ ᎭᏫᏂ ᎬᏂᎨ ᎦᏁᎲ. ᏲᎾ ᎠᏇᏲᏅ ᎠᏍᎦᎢᏍᏗ ᏱᎨᏒᎾ ᏃᎴ ᎤᏒᎯ ᎨᏙᎲ ᏄᏓᎴ ᎾᏆᎵᏍᏔᏁ. ᎨᎦᏙᎳᎡᎸᎩ, ᎠᏎᏃ ᎥᏝ ᎾᎿ ᎠᏁᎳ ᏱᎨᏎᎢ, ᎢᏳᏰᏃ ᎾᎿ ᎠᏁᏔ ᏱᎨᏎᎢ, ᎠᏎ ᏱᏂᎬᏩᎾᏛᏁᎢ, ᎠᏎᏃ [ᎤᎾᏙᏣᏒᎩ] ᎬᏂᎨᏒ ᎢᏳᎾᎵᏍᏙᏗᏱ ᎾᎿ ᏂᎦᏛ ᎠᏁᎳ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏧᏏᏅᏓ ᎠᎬᏱ ᎨᎬᏬᎣᏙᏗ, ᏗᎪᏪᎳᏅ ᏚᏂᎭᏂᏙᎸ ᏩᏏᏓᏂ ᏃᎴ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏧᏂᎷᏫᏍᏔᏁᏗ. ᎯᎠ ᎠᏍᎦᏯ ᎠᏂᏧᏏ ᎬᏩᏂᏴᎲᎩ, ᎠᎴ ᏓᎬᏩᎵᏒᎩ, ᎿᏉ ᎠᏂᏯᏫᏍᎩ ᏕᎦᏘᏅᏒᎩ, ᎠᎴ ᏥᏍᏕᎸᎲᎩ, ᎠᏆᏛᎦᏅᎯ ᎨᏒ ᎠᎶᎻ ᎨᏒᎢ. ᏗᏛᎯᏍᏗᏍᎩ ᏓᎾᏑᏴᎥᏍᎪ ᎦᏙᎯ. ᎠᏂᎦᏲᏟᎨ ᏴᏫ ᏕᏗᎭᏲᎲ ᎣᎯᏍᏙᏗ. ᎤᏩᏒᏃ ᎠᎵᏍᏕᎵᏍᎬ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎤᏍᏗᎤᏅ ᎠᎩᏍᎦᏅᏨᎯ ᏱᎩ ᎠᏂᏧᏏ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎤᏂᎲᎢ, ᎥᏝ ᎠᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᏏᏌ ᎪᎱᏍᏗ ᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ. ᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᎪᏪᎵ ᎢᏥᎪᎵᏰᎥᎭ, ᎴᎣᏗᏏᏯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎾᏍᏉ ᎤᏂᎪᎵᏰᏗᏱ ᏂᏨᏁᎸᎭ; ᎠᎴ ᎾᏍᏉ ᏂᎯ ᎢᏥᎪᎵᏰᎥᎭ ᎴᎣᏗᏏᏯ ᏅᏓᏳᎶᎯᏍᏗ ᏥᎩ. ᏲᎾ ᎤᏤᏍᏙ ᎤᏄᎩᏣᏁ ᎤᏥ. ᎤᏁᏍᏔᎶᏨ ᎠᎹᏳᎸᏓ, ᎤᏯᏛᏅ ᏬᏯ ᎤᏤᏍᏙ, ᎤᏴᏣ ᎢᎦ ᏅᏙ ᏭᏕᎵᎬ ᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎦᎸᎶᎢ. ᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎤᏂᏄᎪᏨ ᎤᏂᏃᎮᎸ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎯᎠ ᏳᎬᏫᏳᎭ ᏱᏂᏥᏪᎭ; ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎣᏏ ᏳᏰᎸᏅ, ᏙᏨᏁᏍᏗ ᎠᎴ ᎯᎠ ᏃᏣᏛᏁᎮᏍᏗ ᎠᎴ ᎯᎠᏉ. ᎠᎴ ᏍᎩᎾᎾ ᎾᏛᏁᎰᏅ ᏱᏣᎷᏣ. ᎬᏂᏳᏉᏃ ᎠᎨᏴ ᎤᏢᎩ ᎩᎬ ᎤᏪᏅᎡᎯ ᏔᎳᏚ ᏧᏕᏘᏴᏓ ᎢᎬᏩᎵᏍᏔᏅᎯ, ᎣᏂᏗᏢ ᎤᎷᎯᏍᏓᏁᎸᎩ, ᎦᏓᎷᏯᏛ ᎤᏄᏩᎥ ᎤᏒᏁᎸᎩ. ᏍᏏᏉᏯᏃ ᎤᎴᏅᎮ ᏓᏟᎶᏍᏗᏍᎬ ᏗᎬᏟᎶᏍᏙᏗ ᏗᎧᏁᎢᏍᏗ ᏣᎳᎩ ᎦᏬᏂᏍᏗ, ᏌᏊ ᏗᏟᏍᏙᏗ ᏌᏊ ᎢᎧᏁᎢᏍᏗ. ᎢᏨᏲᏪᎳᏁᎭ ᎢᏥᎦᏴᎵᎨᎢ, ᎡᏥᎦᏙᎥᏒᏰᏃ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏤᎭ. ᎢᏨᏲᏪᎳᏁᎭ ᎢᏥᏫᏅ, ᎡᏥᏎᎪᎩᏒᏰᏃ ᎤᏁᎫᏥᏛ. ᎢᏨᏲᏪᎳᏁᎭ ᏗᏥᏲᎵ, ᎡᏥᎦᏙᎥᏒᏰᏃ ᎠᎦᏴᎵᎨᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ, ᏩᏛᎬᎦ. “ᎠᎩᏲᏏᎭ,” ᎤᏛᏁ ᎡᎳᏆᏗ, ᏂᎯᏍᎩᏂ ᎣᏏᏳ ᏣᎦᏙᎥᏒ ᏄᏍᏛ ᏓᏆᏕᏲᏅᎢ, ᏄᏍᏛ ᎠᏆᎴᏂᏙᎸᎢ, ᏄᏍᏛ ᏓᏇᎪᏔᏅ ᏗᏆᏓᏅᏛᎢ, ᎠᏉᎯᏳᏒᎢ, ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᏆᏓᎨᏳᎯᏳ ᎨᏒᎢ, ᎤᏁᎳᎩ ᎨᎵᏍᎬ ᏥᎩᎵᏲᎬᎢ, “ᎭᏩ, ᏂᎦᏓ ᎯᏕᏙ, ᏥᏍᏕᏥ ᎤᏩᏌ ᎧᏂᎩᏓ,” ᎤᏛᏁ ᏌᎳᏓ. ᎦᎸᏉᏗ ᎠᏧᏙᏗ ᎡᎶ. ᏗᏂᏁᎵᏛᏍᎩᏂ ᎠᎴ ᏧᏂᏍᏓᎢ ᎤᏲᎢᏳ ᎢᏳ-ᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎨᏒᎢ! ᎤᏣᏘᏰᏃ ᎠᎩᎵᏯ ᎡᎮᏍᏗ ᎠᏂ ᎦᏙᎯ, ᎠᎴ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎯᎠ ᏴᏫ. ᎦᏙᏃ ᎢᏳ ᎢᎦᏛ ᏄᏃᎯᏳᏅᎾ ᏱᎩ? ᏥᎪ ᏄᏃᎯᏳᏅᎾ ᎨᏒ ᎠᏎᏉᏉ ᏱᏂᎬᎦ ᎤᏁᎳᏅᎯ ᎦᎪᎯᏳᏗ ᎨᏒᎢ? ᎠᏂᎨᏴ ᏗᎬᏩᏂᏲᎱᎯᏎᎸᎯ ᏗᏅᏃᏛ ᏔᎵᏁ ᏂᏙᎨᏥᏲᎯᏎᎮᎢ; ᎢᎦᏛᏃ ᏥᎨᏥᎩᎸᏍᎨᎢ, ᏂᏓᎾᏓᏂᎸᎬᎾ ᎨᎫᏓᎴᏍᎬᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏟ ᎢᏲᏍᏛ ᎤᏂᏩᏛᏗᏱ ᎤᎾᏚᎵᏍᎬ ᏗᎴᎯᏐᏗ ᎨᏒᎢ; ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎣᏍᏛ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎤᏓᏩᏗᏍᏙᏛ ᏧᏪᎲᎩ, ᎠᎴ ᎠᎧᎵᎢ ᏗᏟᎶᏍᏔᏅᎯ ᏂᎨᏒᎾ ᏥᎨᏒᎩ, ᎥᏝ ᏰᎵᎦ, ᎾᏍᎩ ᏗᏓᏍᎪᎸᏙᏗ ᏓᏅᏗᏍᎬ, ᏂᏓᏕᏘᏴᎯᏒ ᏂᎪᎯᎸ ᏥᏓᎾᎵᏍᎪᎸᏗᏍᎨᎢ ᎾᎿ ᎠᏂᎷᎩ ᏄᏂᎪᎸ-Ꮎ ᎢᎬᏩᏅᏁᏗ ᏱᎨᏎᎢ. ᎧᎪ ᏣᏍᎦᎳᏤᎢ ᎯᏂᏓᏛ ᎯᎪ ᏑᎾᎴᎢ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ ᎠᎬᏱᏣ? ᏧᏍᏆᏴᏍᏗᏗ. ᏧᎴᏐᎣᏅ ᎨᏎ ᏗᎧᏃᎨᎾ ᏃᎴ ᏗᎦᏅᏍᎨᎾ ᎠᏧᏣ, ᏧᏔᏂᏓ ᏂᏚᏍᏕ ᏧᎪᎳ ᏗᎧᏂᎨᏅ ᏃᎴ ᏗᎧᏃᎨᏅ. ᎾᏗᏍᏊ, ᏒᎯᏰ ᏱᏄᎵᏍᏓᏅ ᏃᏉ ᎨᎪ, ᏧᎾᏕᎶᏆᏍᏗ ᏚᏂᏰᎵᏒ, ᎨᎪᏗ ᏒᏃᏱ ᎢᎪᎯᏓ ᏫᎨᏙᎰ. ᎠᎩᎸᏉᏗ ᎨᏒ ᏗᏓᎾᏅ ᎾᎩᎶᎯᏍᏗ ᎣᏏ ᎠᎩᏰᎸᏒ ᏓᏆᎴᎳ ᎬᎩᎯᎵᏓᏍᏗ ᎨᏒᎢ. ᎠᏎᏃ ᎤᏂᏍᏓᏱᏕ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏓᏖᎸᎲᏍᎦ ᎯᎠ ᏴᏫ, ᏓᏕᏲᏂᏙᎭ ᏧᏗᏱ ᏂᎬᎾᏛᎢ, ᎨᎵᎵ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏂ ᎢᏯᏍᏘ. ᎾᏍᎩ ᏄᏪᏒᎩ ᎤᏪᏛᏨᎩ ᎢᏳᎵᏍᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ ᎨᏍᎥᎢ, ᎾᏍᎩᏃ ᎤᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ. ᎾᏍᎩᏃ ᏁᏪᏒ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏍᏓᏩᏚᎦ. “ᎧᎪ ᎤᏩᎬᏗᎶᏓ ᏭᏪᏙᎴᎢ ᎤᏲ ᏩᏗᏅᏗ?” ᎤᏛᏛᏁ. “ᏛᏛᏓᏂᎩ? ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏍᏏᏉᏯ Ꮭ ᎤᎬᏫᏳᎯ ᏰᎨᏎ ᎠᏎᏍᎩᏂ ᏚᎨᏳᏒ ᏧᏤᎵ ᎠᏂᏴᏫ ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎪᎯᏰᏃ ᏥᎩ ᏦᏨᏃᏛ, ᎢᏳᏃ ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏕᏣᏁᎶᏛᎢ. ᎤᎵᏍᎫᎭᏴ ᏃᎴ ᎤᏓᏅᏖᎯᎶᎥ, ᎨᏍᏗ ᎠᏌᎹᏗᏴ-ᎤᎦᏎᏂ ᏱᎩ, ᏍᎩᎾ ᎢᏳᏍᏗ ᏫᏥᎢᏴ ᎤᏬᏚ ᎠᏇᎵᏒ. ᎠᏯ ᏍᏉ ᏍᎩᎾᏆᏍᏛ. ᏃᏈᏏ ᏗᏴᏈᎴᏴᏓ ᎠᎾᏕᎭᏲᎲ. ᎨᏍᏗ ᏍᏓᏯ ᎦᏬᏂᏍᎩ ᏱᎩ, ᎠᏎᏃ ᎦᏬᏂ.” ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏓᏥᏯᎵᎪᎸᏓᏁᎵ ᎤᏪᏗᏱ ᎠᏉᎸᎢ ᎠᏆᏤᎵ ᎦᏍᎩᎸᎢ, ᎾᏍᎩᏯ ᏣᏆᏓᏎᎪᎩᏒ ᎠᎴ ᏣᎩᏅ ᎡᏙᏓ ᎤᏬᎸ ᎾᏍᎩ ᎤᏪᏍᎩᎸᎢ. ᎠᏂᏍᎦᏯ ᎨᏥᎸ ᎤᎵᏍᎨᏓ ᏱᎨᏒᎾ ᎠᎾᏟᎲ, ᎾᏍᎩᏯ ᏅᏯ ᎢᏳᏍᏗ ᏧᏂᎵᏬᏨ, Hastings ᎠᎴ Culloden ᎠᎴ Sharpsburg ᎠᎾᏟᎲ ᏱᎨᏥᎴ. ᎠᎦᏔᎮᎢ ᎢᏧᏍᏗ ᏧᎿᏬᏍᏗ. ᎦᏕᎶᎥᏍᎬ ᎠᎾᏟᏃᎮᏍᎬ. ᎤᏩᏌᏆᏝᎴᎢ, ᏫᎵᎻ ᎤᏴᏍᏗ ᎢᏣ ᎤᏪᏅᏎ. ᎢᏳᏩᏁᎰᏂᏕᎾ ᏚᏏᎳᏛ ᏌᎳᏓ ᎱᎷᏣ ᏧᏍᏆᏴᏍᏗ, ᎦᏁᎮᎢ ᎪᏪᎵ ᏗᎦᏃᏣᏝᏍᎩ ᎤᏩᏥᎦᎸᏓ. ᎠᏒᎬ ᎤᎶᏒᏍᏗ, ᎧᎪ ᏳᏚᎵ ᎤᏕᏘ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏥ ᎤᎪᏏᏓ ᎠᏦᏅᏔᏅ?” ᏂᎦᏓ ᎠᏂᎸᏉᏗᏍᎨ ᏓᏏᎳᏛ. ᏂᎯᏍᎩᏂ ᎥᏝ ᏱᏦᎯᏳᎲᏍᎦ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎯ ᎠᏫ ᏗᏆᏤᎵᎦ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏥᏂᏨᏪᏎᎸᎩ. ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ. ᎢᏣᏓᏅᏘᏳ ᎨᏒ ᎾᏅᎢ ᏴᏫ ᎠᏂᎦᏔᎮᏍᏗ; ᎤᎬᏫᏳᎯ ᎾᎥᏂᏳ ᏓᏯᎢ. ᎤᏅᏒᏃ ᎨᏒ ᎤᎾᎵᏃᎮᎴ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎦᏚ ᏂᏗᏗᏰᎲᎾ ᎨᏒᎢ. ᎤᎩᏒᏃ ᎤᎵᏍᏈᏗ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎢᏥᎩ ᎠᎴ ᎢᏥᏯᏙᎦ ᎢᏨᏒ ᎨᏒᎢ. ᎿᏉ ᎠᏆᏓᏅᏙ ᎡᏕᏯᏔᏁᎭ; ᎦᏙᏃ ᏓᎦᏛᏂ? [ᎯᎠᏍᎪ ᏅᏓᏥᏪᏏ,] ᎡᏙᏓ, ᏍᏊᏓᎳᎩ ᎪᎯ ᎨᏒᎢ? ᎠᏎᏃ ᎾᏍᎩ ᎢᏳᏍᏗ ᏣᎩᏍᏆᎸᎡ ᎪᎯ ᎠᎩᏍᏆᎸᎡᏗᏱ ᎠᎩᎷᏥᎸ. ᎪᎯᎢᏴ ᎤᎵᏌᎵᏓᏁ ᎤᎧᎭᏛ. ᎾᏍᎩᏃ ᎯᎠ ᏣᏂ ᎤᏄᏪ ᎨᎻᎵ ᎤᏍᏘᏰᏅᎯ, ᎦᏃᏥᏃ ᎤᏓᏠᏍᏕᎢ, ᎤᎵᏍᏓᏴᏗᏃ ᎥᎴ ᎨᏎ ᎢᎾᎨᏃ ᎡᎯ ᏩᏚᎵᏏ. ᎪᎯᏍᎩᏂ ᎨᏒ ᎢᏣᎵᎮᎵᎦ ᎢᏣᏢᏆᏍᎬᎢ; ᏂᎦᏛ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎤᏲᏉ ᎨᏐᎢ. ᏕᏤᏲᎲᏍᎨᏍᏗ ᏧᏂᎧᎿᏩᏛᏍᏗᏱ ᏂᎦᎥ ᎢᏨᏁᏤᎸᎢ; ᎬᏂᏳᏉᏃ ᏂᎪᎯᎸ ᎢᏨᏰᎳᏗᏙᎭ ᏫᎬᎵᏍᏆᏗᏍᎩ ᎡᎶᎯ. ᎡᎺᏅ. ᏥᏓᏥᎶᎢ ᎭᏂᏣ ᎠᏍᏚᎲᎢ ᏏᏆ---ᎡᏚᏥ ᏣᏓᏙᏎᎰᎢ ---ᏌᎪᏂᎨ ᎠᏇᏡᏍᏗ ᎦᏓ ᎠᏦᏴᎢ. Cranshaw ᎠᏇᏅᏒ, ᏯᏆᏓᏅᏛᎾ ᎢᏳᏍᏗ ᏃᎴ ᎠᏆᏢᏲᎵᎸ ᎠᏆᏟᏃᎮᏙᏗ. ᎿᏉᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᎾᏓᏅᎡᎸ, ᎦᎸᎳᏗ ᎾᎤᏂᎶᏒ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴ ᎠᏫ-ᏗᏂᎦᏘᏯ; Ꭷ, ᎿᏉ ᎦᏚᏱ ᎢᏕᎾ, ᎠᎴ ᏫᏓᏙᎴᎰᎯ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏅᎢ, ᎾᏍᎩ ᎣᎰᏩ ᎬᏂᎨᏒ ᏥᏂᎬᏂᏏ. ᏄᏃᎵᏣᏛᎾ, ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏛ ᎠᏂᏲᏍᏗᏍᎩ, ᎪᎱᏍᏗ ᏧᏅᎾ ᏂᏚᏂᎨᏳᏒᎾ, ᎬᏩᏃᎯᏍᏗ ᏂᎨᏒᎾ, ᏄᎾᏓᏙᎵᏣᏛᎾ; ᎢᎳᎪ ᎢᏴᏛ ᎢᎦᎢ ᎤᏟᎯᏳ ᎦᎶᏁᏛ ᎤᎩᎬ, ᏗᏣᏓᏅᏙ ᏙᏓᏥᏅᎦᎸᎡᎵ ᏙᏓᏥᎧᎲᏏ ᎠᏓᎯᎯ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ, ᎬᏂᏛᏃ ᎤᏁᎳᏅᎯ ᏤᏣᏁᎶᏙᏗᏱ ᏅᏓᏨᏁᎵ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎡᎯ ᎠᏓᏅᏙ ᎬᏗᏍᎬ ᏄᏓᏅᎦᎸᎾ [ᎠᏍᎦᎾ,] ᎦᎶᏁᏛ ᎤᏩᏒ ᎤᏓᎵᏍᎪᎸᏔᏅᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎤᏓᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎩ? “ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ, “ᎭᏂᏗ ᎰᎻ ᎠᎪᏕᏍᎩ ᎤᏤᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ. ᎠᎴ ᎣᏥᏅᏒᎩ ᏗᎹᏗ, ᎣᏣᎵᏅᏟ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎪᎱᏍᏗ ᎠᏛᏁᎯ, ᎠᎴ ᎠᏴ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ, ᎠᎴ ᏗᏥᎧᎵᏍᏓᏗᏍᏗᏱ ᎢᏦᎯᏳᏒ ᎤᎬᏩᎵ; ᏴᏫ ᎢᏳᏂᏪᏍᏗ ᏂᏥᏪᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏥᏇᏓᎸ ᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ; ᏗᏥᏰᎸᏰᏃ ᎢᏣᏚᏓᏕᏫᏒ ᏥᏕᏥᏲᏒᎩ ᎦᏓᎭ ᎠᎴ ᎤᏲ ᎨᏒ ᎤᏂᎾᏝᎢ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎪᎯ ᎨᏒᎢ, ᏗᏥᏰᎸ ᎢᏣᏚᏓᏕᏫᏒ ᏗᏥᏲᎯ ᎤᏂᎾᏝᎢ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎤᏥᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎥᏞᏍᏗ; ᏣᏂᏍᎩᏂ ᎠᎪᏎᎮᏍᏗ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎢᏗᏢ ᏭᎦᏔᎲᏍᏔᏅ ᎯᎠ ᏂᏚᏪᏎᎵ ᎤᏅᏒ ᎨᏒᎢ, ᏗᎦᎸᏉᏔᏅᎯ ᏗᎦᏙᎵ ᎾᏍᎩ ᏥᏓᎪᏩᏘᎭ ᏂᎯ ᏥᏥᎪᏩᏘᎭ; ᏍᏔᏲ ᎤᏃᎯᎸᏎ Ꮎ ᎠᏒᏛᏓ. ᏍᏈᏍᏓ ᎤᏃᎴ ᏗᏲᏙᏗ ᏓᏓᏌᎳᏗᏍᎨᎢ, ᏓᏕᏲᎮᎢ ᏃᎴ ᎦᎶᎯᏍᏗ ᏫᏗᎦᏅᎪᎨ, ᎦᏲᏟ ᎦᏃᎸᎥᏍᎬ ᏓᏘᏁᎨ. ᎠᏂᏦᏕᏆᏠᏥ ᎡᏝᏪᎯ ᎠᏂᎶᏏᏙᎮ ᎦᎶᎯᏍᏗ, ᏓᏂᏲᎮᎲ ᎤᎾᎵᏍᏓᏴᏗ ᎠᏂᏓ. ᎯᎠ ᎾᏍᎩ Ꮎ ᏥᎨᎳᏗᏙᎮ ᎤᎾᏓᏡᏩᏕᎬ ᎢᎾᎨᎢ, ᏔᎵ ᏧᏛᏗᏕᎨ ᏗᎧᎿᏩᏗᏙᎯ ᎾᏍᎩ ᏧᏁᏤᎴ ᎣᏓᎸ ᏌᎾᏱ, ᏥᎨᎳᏗᏙᎮ ᎠᏁᏙᎲ ᏗᎩᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏥᏓᏥᏲᎯᏎᎴ ᎠᏛᏂᏗᏍᏙᏗ ᎧᏃᎮᏛ ᎠᏴ ᎢᎩᏁᏗ. ᎾᏍᎩᏰᏃ ᎯᎠ ᎦᎸᏉᏗᏳ, ᎢᏳᏃ ᎩᎶ ᎤᏁᎳᏅᎯ ᏧᏓᏅᏛ ᎤᎸᏉᏗᏳ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎬᏂᏗᏳ ᏱᎩ ᎠᎩᎵᏲᎬᎢ, ᏂᏚᏳᎪᏛᎾ ᎠᏥᎩᎵᏲᎢᏍᏗᏍᎬᎢ. ᎠᎴ ᎬᏂᏳᏉ ᏘᏁᎵᏥ, ᎠᎴ ᏘᎾᏄᎪᏫᏏ ᎠᎫᏣ, ᎠᎴ ᏥᏌ ᏙᏘᏲᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏥᏄᏍᏗ ᏣᏉᎯᏳᎭ, ᏥᎦᏔᎭ ᎠᏆᎴᏂᏓᏍᏗᏱ ᎠᎴ ᏂᏥᎥ ᎢᏨᏰᎳᏗᏓᏍᏗᏱ, ᎾᏍᎩ ᎢᏥᏁᏉᏤᏗᏱ ᎠᎴ ᎢᏣᎵᎮᎵᏍᏗᏱ ᎢᏦᎯᏳᏒᎢ. ᎰᎻ ᎤᏟᏍᏓ ᏭᏴᏅᎮ ᎠᎳᏂ. ᎢᎦᏓᏃ ᎠᏂᏃᎮᏍᎬ, ᏯᏆᎵᎪᏅᎾ ᎠᏂᏲᏍᎩ ᏃᎴ ᎠᏂᏴᏫᏯ ᎤᎾᏂᎩᏒ ᏅᏃ, ᎨᏇᏲᏔᏅ ᎪᎰᏍᏘ ᏱᏅᎦᎵᏍᏔ. “ᎤᏨᏉᏗ ᏱᎨᏒᎾᎩ?” ᎤᏛᏁ ᏌᎳᏓ. “ᏏᏲ,” ᎤᏛᏁ. ᎾᏍᎩᏂ: ᎤᏩᏅᏛ ᏣᎳᎩᏱ ᎠᏰᎵ ᏃᎴ ᎾᎥᏂ ᏓᏥᎶᎥ ᏧᏴᏨ ᎢᏣ ᎦᏯᎴᏅ: ᎦᏛᏅᎥᏍᏗᏍᎬ ᎧᏃᎮᏍᎩ ᎠᏥᎶᏛ, ᎣᏍᏓ ᏣᏰᎸᏗ ᎭᏕᎶᎰᏒ ᏄᏍᏗᏓᏅ ᎠᏰᎵ ᏙᎩᎷᏫᏍᏔᏅᎭ, ᏕᏥᎾᏌᎥ ᏧᏃᏪᎳᏅ ᏗᎩᎷᏤᎸ ᏃᎴ ᎠᏋᏌ ᎠᏆᏕᎶᎰᏒ. ᎾᏗᏍ, ᏍᏓᏲᏒ ᏩᏌ ᎠᏇᎷᏅ ᎦᎶᏪ ᏩᏆᏗᏅᏒ ᎾᏱᏄᎳ ᎠᏆᏢᏍᏛᏅ… ᎯᎠ ᎢᏊᏛ ᏴᏩᏒ ᏂᎦᏛᏁᎲ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏤᎾ ᏫᏗᏤᏲᎲᎦ ᎾᎦᏛ ᏄᎾᏓᎴᏒ ᏴᏫ, ᏕᏣᏬᏍᎨᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᏚᏙᎥ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᏪᏥ ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎤᏩᏙᎯᏴᏓ, ᎤᏛᏅ ᎤᏣᎴᏓ. ᎯᏍᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎠᎩᎪᎲᎩᏃ ᏃᏈᏏ ᎦᎸᎶᎢ ᏓᏳᏓᎴᏅᎩ ᎡᎶᎯᏃ ᎤᏬᏥᎸᎩ; ᎠᎴ ᎾᏍᎩ [ᏃᏈᏏ] ᎠᏥᏕᎸᎩ ᎠᏍᏚᎢᏍᏗ ᎾᏍᎩ ᏫᎾᏍᏛᎾᎠᏔᎴᏒ ᎠᏍᏚᎢᏍᏙᏗ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎫᎾᏛᏐᏅᎯ ᎨᏒ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᏞᏍᏗ ᏗᏣᏠᏱᎸᎩ; ᎬᏂᏳᏉ ᏢᏓᏥ ᎤᏃᏕᎾ ᏧᏓ ᎠᏂᏔᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ, ᏕᏫ ᎤᏱᏝᏅᎯ, ᎤᏓᏎᎪᎩᏒ ᎤᏍᏚᎢᏍᏗᏱ ᎪᏪᎵ, ᎠᎴ ᏧᏲᏍᏙᏗᏱ ᎦᎵᏉᎩ ᏂᏓᏍᏚᎲᎢ. ᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ, ᏫᏨᏲᏪᎳᏏ ᎢᏣᏓᏅᏘ ᎡᏈᏌ ᎢᏤᎯ, ᎠᎴ ᎡᏦᎯᏳᎲᏍᎩ ᎦᎶᏁᏛ ᏥᏌ, ᎤᏐᏱᏉ ᏄᏅᎾᏕᎨ ᏗᎨᏥᎾᏌᎢ. ᏣᏂᏃ ᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎪᎲᎩ ᎠᏏᏴᏫ ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎬᎩ ᏕᏣᏙᎥ ᎬᏗᏍᎬᎩ; ᎥᏝᏃ ᏱᎩᏍᏓᏩᏗᏙᎭ; ᎣᏥᏅᏍᏓᏕᎸᎩᏃ ᏂᎩᏍᏓᏩᏕᎬᎾ ᎨᏒ ᎢᏳᏍᏗ. ᎠᎴ ᏃᏈᏏ ᎠᏂᎧᎸ ᎦᎸᎶᎢ ᎠᏂᏅᎪᎠᏍᎨᏍᏗ, ᎠᎴ ᎤᏂᏣᏖ ᎦᎸᎶ ᏣᏂᎧᎳ ᏛᎾᎵᏖᎸᏂ. ᏑᎾᎴ ᏓᎨᏏ ᎤᏲ ᎤᎾᏗᏅᏗ. ᏃᎴ ᏕᎦᏅᏅ ᏗᏂᏅᎦᎴᎯᏙ, ᎠᏂᏃᏍᎩᏍᎩ, ᎠᎾᏓᏅᏕᎵᏙ ᎠᏯ ᎢᏳᎾᏍᏗ, ᎤᏂᎾᏒᎾᎩᏍᎩ ᎠᏒᎬ ᎩᎦ ᎠᎴ ᎠᏕᎳ, ᎢᏳᏍᏗᏉ ᏭᏗᏅᏓ ᎦᏚᎲ. ᎾᏍᎩᏃ ᎤᎵᏂᎩᏗᏳ ᏚᏂᎸᏫᏍᏓᏁᎮ ᎨᏥᏅᏏᏛ ᏓᎾᏕᏲᎲᏍᎬᎢ, ᎠᎴ ᎤᎾᎵᎪᏒᎢ, ᎠᎴ ᎦᏚ ᎠᏂᎬᎭᎷᏯᏍᎬᎢ, ᎠᎴ ᎠᎾᏓᏙᎵᏍᏗᏍᎬᎢ. ᏥᏌᏃ ᏚᎪᎲ ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏜᏫᏍᏗᏍᎬᎢ, ᎤᏁᏤ ᎢᏍᎪᏅ ᏭᏂᎶᎯᏍᏗᏱ. “ᏑᎾᎴ ᎤᎵᏍᏔᏴᏗ ᎯᎲᏏ!” ᎤᏛᏁ. ᎾᏍᎩ ᎤᏛᎦᏅ ᏱᎳᏉ ᎢᏴᏛ ᏚᎴᏅᎩ, ᎠᎴ ᏭᎷᏤᎸᎩ. ᎠᏆᏕᎶᎰᏒ ᎠᏂᏧᏣ ᎠᏅᏗᏍᎬ ᏍᎩᎾᎾ ᎢᎦᏪᏍᏗ ᏳᏂᏬᏂᏌ, ᎠᏎᏃ ᏄᏓᎴ ᎤᏰᎸᏛ ᏱᏄᏂᏪᏌ, ᎠᏎᏃ ᎫᏩᏛᎪᏗ ᏱᎨᏒᎾ ᏍᎦᏰᎬᏍᏔ. ᎦᏣᏄᎳ ᏚᎴᏁ ᎡᎳᏆᏗ. ᎾᏍᏓᏴ ᎤᏦᏱᎴᎢ. ᏫᏥᏤᎢ ᏕᎨᏴ, ᏚᏑᎬ ᎦᎵ, ᎠᏫ ᏃᎴ ᎠᏴᏫᏯ ᎤᏅᏌ ᏫᎫᏩᏂᎶᎯᏍᏗ ᎠᎾᏓᏅᏏᏁᎩ. ᎬᏩᎦᏗᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎢᏤᎳᏗᏙᎮᏍᏗ ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒᎢ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎠᎦᏴᎵᎨ ᎤᏪᏥ, ᏚᏳᎪᏛ ᎨᏒᎢ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ. ᎣᎦᏑᏰᎸ ᎣᏣᎵᏎᎲ, ᎣᏥᏁᎸ ᎠᎵᏍᏔᏴᏗ ᎤᏛᏐᏅ ᏁᎳᎩᏉ ᎨᏒ ᏏᏆ ᎭᏫᏯ. ᎠᎦᏓ ᎤᏂᎸᏉᏗ ᎠᏁᎲ ᎠᏂᏴᏫᏯ, ᎨᏍᏗ ᏯᏂᎦᏔ ᏄᏍᏗᏓᏅ ᎠᏁᎲ ᏙᏰ, ᏳᎾᏚᎵᏍᎬᎾ ᏁᎳᎩ ᎤᏁᎵᏍᏗ ᏕᎦᏂᏌᎲ ᏧᏂᎦᏴᎵ, ᎾᏍᎩᎤᏃᎯᏳᎲ. ᎤᏟᏰᏃ ᎬᎩᏰᎸᎩ ᎾᏂᎥᏉ ᏴᏫ ᎠᏴ ᎾᏆᏍᏛ ᎾᏍᎩᏯ ᏱᏄᎾᏍᏗ. ᎠᏎᏃ ᎠᏂᏏᏴᏫᎭ ᎤᎾᏤᎵᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏂᏁᎸ ᎤᏂᎰᎢ, ᎠᏏᏴᏫ ᎯᎠ ᎾᏍᎩ ᏂᎤᏍᏙᎢ, ᏅᏩᏓᎴᏃ ᏅᏩᏓᎴ ᏄᏍᏙᎢ. ᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ, ᎠᏎᏃ ᏚᎪᎭ ᎠᏂᏔᎵ ᏩᏂᏌᏙᏱᏍᎬᎢ ᏫᎵᎻ ᎧᏁᏌᎢ ᎤᏓᏅᏖᎴ ᏍᏉ ᎤᏪᏅᏍᏗ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᏱᏦᎵᎦᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏛᎢ? ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏱᏕᏦᎵᎩ ᏂᎦᏛ ᏓᏟᎶᏍᏛᎢ? ᏆᎴᏗᏃ ᏔᎵᏁ ᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᏚᎵ ᏥᏴᏁᏗᏱ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᏤᏦᏎᎭ? ᎦᎵᎡᎵᎪ ᎠᎦᏗᏓ ᎦᎥᏍᎩ ᎧᏅᏂᏍᎩ ᏥᎩ ᎠᏯ.” ᎠᎴ ᎢᎬᏱ ᎤᎾᏄᎪᏨᎯ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᏍᎩᏯ ᏄᎵᏂᎬᎬ ᏄᎵᏂᎬᎬᎩ, ᎠᎴ ᎡᎶᎯ ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎠᏁᎯ ᎤᎾᏓᏙᎵᏍᏓᏁᏗᏱ ᏂᏕᎬᏁᎲᎩ ᎢᎬᏱ ᎤᎾᏄᎪᏨᎯ ᏅᎩ-ᏗᎦᏅᏌᏗ, ᎾᏍᎩ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏴᏛ ᎠᏥᏐᏅᏅ ᎤᏗᏩᏒᎯ. Ꮎ-ᏍᎩᏂᏃ ᏰᎵ ᏗᏂᏃᏨᎵ ᎨᏒᎢ, ᎾᏍᎩ ᏄᎾᏍᏛᎢ ᎥᏝ ᎪᎱᏍᏗ ᎠᏋᏁᎯ ᏱᎩ, ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎦᎸᏉᏗᎭ ᎩᎶ ᏄᏍᏛᎢ; ᎾᏍᎩᏰᏃ ᏗᏂᏃᏣᎵ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᏱᎬᎩᏁᏉᎡᎴᎢ; ᎤᏑᎶᏛ ᏄᎵᏍᏔᏅ ᏥᏑᎵᎪᎬ, ᎠᏆᏟᏂᎪᎲᏍᏔᏅ ᎠᏆᏓᏅᏖᎵᏓᏍᏗ ᏗᏂᎳᏫᎩ ᎠᏁᏙᎲ Boston ᏃᎴ ᏄᏯᎩ ᎦᏚᎲ ᏓᏳᏂᎶᏒ, ᎤᏂᎩᏌᏓ ᎨᏎ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᎪᎲ. ᏍᎩᏄᏍᏕ ᎠᎾᏛᏛᎲᏍᎨ. ᎪᎳᏅ ᏗᏣᏓᏅᏛᎵ; ᎥᏝᏰᏃ ᏯᏂᏫᏍᎪᎢ, ᎥᏝ ᎠᎴ ᏯᏂᏍᎫᏕᏍᎪᎢ; ᎥᏝ ᎠᎴ ᏧᎾᏓᎾᏅᏗᏱ ᎠᎴ ᎤᏂᏅᏗᏱ ᏱᏓᏓᏁᎸ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏕᎨᎶᎰᎢ. ᏂᎦᎥᎤᏟ ᏁᏥᎸᏉᏗ ᏂᎯ ᎡᏍᎦᏉ ᏥᏍᏆ. ᏕᎤᏁᎶᏙᏍᎩᏂ ᏗᎬᏪᏲᎲᏍᎩ ᎠᎴ ᎤᎾᏕᏌᏯᏍᏗᏕᎩ ᎠᎦᏴᎵᎨᎢ ᏚᏒᏍᏛ ᎬᏗᏍᎩ. ᎾᏍᎩ ᎬᏂᎨᏒ ᎾᏅᏁᎭ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏯᏛᏁᏗ ᎨᏒ ᏧᏂᎠᏫᏱ ᎪᏪᎸᎢ, ᏚᎾᏓᏅᏛ ᎾᏍᏉ ᎪᎯᏳᏙᏗᏍᎬᎢ, ᎠᎴ ᎠᎾᏓᏅᏖᏍᎬ ᏓᎾᏓᏚᎯᏍᏗᏍᎬ, ᎠᎴ ᏓᎾᏓᏚᏓᎴᏍᎬᎢ. ᎠᏎᏃ ᎤᏚᎩ ᎬᏍᎦ ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᎩ ᎠᏴ ᎣᎩᏐᏅᎢᏍᏔᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏂᎦᏓ ᎣᏥᏴᏫᏯ. ᎠᏎᎩ ᎠᏎᏉ ᏂᎦᏛᏁᎮ. ᏗᏕᎶᏆᏍᎩ ᎥᏝ ᎤᏟ ᏱᎾᏥᎸᏉᏙᎢ ᎡᏍᎦᏉ ᏧᏪᏲᎲᏍᎩ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᎥᏝ ᎤᏟ ᏱᎾᏥᎸᏉᏙᎢ ᏒᏍᎦᏉ ᎤᏅᏏᏙᎯ. ᏌᎳᏓ ᎫᏪᏂᏍᏗ ᏱᎨᏒᎾ ᏧᏁᏅᏒ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏰᎵᏉ ᎤᏩᏌ ᏧᏘᏅᏍᏗ ᏧᏤᎵ ᏗᏂᏲᏟ. ᎹᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎦᏔᎭ ᏙᏗᎴᎯᏌᏂᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ. ᎤᏰᏤᎢ ᎡᎶᏗ. ᏕᏣᏘᏃᎦᏰᏃ ᎯᎠ Ꮎ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎦᎸᏉᏗ ᏕᎨᏒ ᎠᏂᏃᏍᎩᏍᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎢᏣᏤᎵ ᎦᎸᎳᏗ ᎡᎯ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ ᏂᎨᏒᎾ. XIV. ᎦᏂᎦᏔ ᎡᎹᏂᏓ ᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᎿᏂ ᎯᎠ ᏂᎨᏥᏪᏎᎸᎢ, ᏂᎯ ᎥᏝ ᎠᏴ ᏗᏆᏤᎵ ᏴᏫ ᏱᎩ; ᎾᎿᏂ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎨᎪᏎᎮᏍᏗ. ᏂᏚᎩᏨᏂᏒᏃ ᏓᏕᏲᎲᏍᎨ ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ. ᎠᏎᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏫ ᎬᏩᏝᏫᏍᏗᏕᎨ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ. ᏚᎷᏫᏍᏓᏁᎲ ᎠᏓᏅᏖᏍᎨᎢ ᏲᎾ ᎤᏤᏍᏙ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ, ᏂᎦᎥ ᏂᎦᏛᏁᎲ ᎾᏂᎥᏉ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏥᏂᎦᏥᏯᏛᏁᎰᎢ, ᎾᎩᏲᎲᎾ ᏥᎨᏐ ᎠᏋᏒᏉ ᎠᏆᎵᏍᏕᎩᏙᏗ,, ᎤᏂᏣᏘᏍᎩᏂ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎨᏥᏍᏕᎸᏗᏱ. ᏔᎵᏃ ᎠᎺᏉᎯ ᏕᎨᏒ ᏭᎾᎵᏱᎶᎸ, ᏥᏳ ᎤᏂᏝᏗᏤᎸᎩ ᎦᏙᎯ; ᎢᎬᏱᏗᏢᏃ ᎠᏍᏓᏱᏳ ᏄᎵᏍᏔᏅ, ᎥᏝ ᏰᎵ ᎬᏩᎵᏖᎸᏗ ᏱᎨᏎᎢ, ᎣᏂᏗᏢᏍᎩᏂ ᎤᏲᏨᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎤᎵᏂᎩᏗᏳ ᏓᎵᏍᏗᎳᏁᎬ ᎠᎺᏉᎯ. “ᏣᏉᎩ ᏱᏛᎮᏏ? ᎤᏦᏱᎴᎢ. ᎤᏍᎦᏃᎵ ᎤᏓᎾᏏᏅᏍᏔᏁᎢ ᎠᏦᏴᎢ ᏧᏍᏆᏴᏍᏗ, ᎤᏅᏏᏴ ᏭᏓᏓᎩᏅᏎᎢ. ᎢᏳᏃ ᎩᎶ ᏥᏅᏏᏓᏍᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ; ᎨᎥᏃ ᎾᎿ ᎾᏍᏉ ᏥᏅᏏᏓᏍᏗ ᎡᎮᏍᏗ. ᎢᏳᏃ ᎩᎶ ᏥᏅᏏᏓᏍᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎡᏙᏓ ᎤᎸᏉᏙᏗ ᎨᏎᏍᏗ. ᎠᏎᏃ, ᎢᏨᎨᏳᎢ, ᎢᏣᏅᏓᏓ ᎧᏃᎮᏛ ᎢᎸᎯᏳ ᎤᏂᏃᎮᏛ ᎨᏥᏅᏏᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᏧᏤᎵᎦ; ᎾᏍᎩᏯ ᎠᏓᏅᏙ ᎠᎩᏍᎩ ᎤᏥᏯ ᏣᎫᏩᏯᎩᏍᎪ, ᎦᏁᎬᎭ ᎤᏩᏌ. “ᎣᏍᏓ ᎾᏛᎦ ᎠᎨᏳᏣ,” ᎤᏓᏙᏎᎴ. ᎠᎴ ᎤᏓᏅᏁ ᎤᎵᏯᏍᏚᏁ ᏚᎳᏍᎬ ᎾᎥᎢ, ᎠᎵᎮᎵᏤᎮᎢ. ᎠᎴ ᏌᎺᎵᏱ ᎡᎯ ᎨᏎᎢ. “ᎯᏗᏍᏆᏙᎾ ᎯᎪ ᎢᎦ ᏕᏓᏦᏍᎬᎢ. ᎠᏂᎦᏓᎭᏰᏃ ᏗᏓᏅᏙ ᎠᏍᏓᏯ ᎠᏁᎷᎲᏍᎨ ᏕᎬᏩᏂᏄ-ᎪᎨ ᎤᏂᏣᏖ ᎬᏩᏂᏯᎢ, ᎠᎴ ᎤᏂᏤᏖ ᏧᏂᎾᏫᏍᎩ ᎠᎴ ᏗᏂᏲᎤᎵ ᏚᎾᏗᏩᏍᎨᎢ. ᎤᎬᏫᏳᎯ ᎠᎨᏴ ᏧᎦᎾᏴ ᏤᎮᎢ ᏙᏛᎴᏂ ᏓᏳᎾᏡᏔᏂ ᎪᎯ ᏣᏁᎭ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏒᎢ, ᎠᎴ ᎤᏂᏍᎦᏅᏨ Ꭼ Ꮒ ᎨᏒ ᎤᏓᎬᏁᎵ; ᎾᏍᎩᏰᏃ ᎦᏙᎯ ᏩᏍᏛ ᎢᏴᏛ ᏧᏪᏅᏎ ᎤᏛᎦᏂᎴ ᏐᎵᎼᏅ ᎠᎦᏔᎿᎢᏳ ᎨᏒᎢ, ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏐᎵᎼᏅ. ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎬᏩᏃᎯᏳᎯ ᏚᏂᏲᎱᏎᎢ, ᏂᏚᎾᏓᏂᎸᏨᎾ ᎾᏍᎩ Ꮎ ᎨᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒᎢ, ᎢᏅᏍᎩᏂ ᏫᏓᏂᎪᏩᏘᏍᎨᎢ ᎠᎴ ᏄᎾᏜᏏᏛᎡᎲᎾ ᎨᏎᎢ, ᎠᎴ ᏚᏂᏂᏴᎮᎢ, ᎠᎴ ᎠᏂᏃᎲᏍᎨ ᏅᏩᎾᏓᎴᏉ ᎠᎴ ᎠᏁᏙᎯᏉ ᎨᏒ ᎠᏂ ᎡᎶᎯ. ᎤᎨᏓᎵᏴ ᎠᎾᏓᏑᏲᎰᏗᏍᎨ ᎠᎹ ᏗᎦᏁᎲ ᏩᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏁᏓᏍᏗ. ᏍᎩᎾᎾ ᎤᎾᏓᏔᎶᏒ. ᎠᎨᏴᏍᎩᏂ ᎦᏅᎯᏛ ᏳᏍᏘᏰᎦ ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎯ ᎨᏐᎢ; ᎤᏍᏘᏰᎬᏰᏃ ᎠᏥᏁᎸ ᎤᎦᏢᏙᏗ. ᎾᏍᎩ ᏅᏧᎵᏍᏙᏔᏅ ᎣᏏᏳ ᎣᎩᏰᎸᏅ ᏂᎦᏛ ᏌᏉ ᎢᎦᎦᏛ, ᏗᏤᎲ ᏦᏥᏅᏍᏗᏱ ᏦᏣᏑᏰᏛ ᎠᏂᏍᎦᏯ ᏧᏂᏍᏓᏩᏛᏍᏗᏱ ᏦᏥᎨᏳᎯ ᏆᏂᏆ ᎠᎴ ᏉᎳ, ᎢᏳᏃ ᎾᏍᎩ ᎤᏍᏗᎧᏂ ᎨᏒ ᏰᎵ ᎢᎨᏣᏛᏁᏗ ᏂᎨᏒᎾ ᏱᎩ, ᎦᏙᏃ ᎠᏏ ᏅᏩᏓᎴ ᏫᏤᎵᎯᏍᎪᎢ? ᏓᏍᏆᏚᎸ ᏧᏂᎷᏫᏍᏔᏁᏗ ᎠᏇᏙᏅ, ᎠᏂᏍᎦᏯ ᎠᏂᏯᎢ ᎠᏂᏅ ᎠᎾᏛᎦᏍᏗᏍᎬ, ᎠᏎᏃ ᎦᏕᎶᎥᏍᎬ ᎤᎴᏫᏍᏔᏅ ᎤᎾᏓᏅᏖᏗ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏣᏂ ᎤᏙᎯᏳᎯ ᏓᏓᏬᏍᏗᏍᎬᎩ ᏗᏓᏬᏍᏙᏗ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᎤᎬᏩᎵ, ᏕᎧᏁᏤᎲ ᏴᏫ, ᎤᏃᎯᏳᏗᏱ ᎣᏂ ᏅᏓᏰᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᏕᎪᏎᎲᎩ. ᏗᎦᏓᎷᎩᏍᎩ ᎤᏚᎵᏍᎨᎢ ᏧᎪᏩᏛᏗ ᎰᎻ. ”Ꭵ, ᎤᏛᏁ ᎰᎻ. ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎨᎬᏁᎸᎯ ᏥᎨᏎᎢ ᎤᏅᏒᏉ ᎾᎾᎵᏍᏕᎵᏍᎬᎾ ᎨᏒᎢ, ᎠᏴᏍᎩᏂ ᎨᎩᏍᏕᎵᏍᎬᎢ ᎨᎩᏃᎮᎮᎸ ᎾᏍᎩ ᎪᎯ ᎬᏂᎨᏒ ᏥᏂᎨᏨᏁᎭ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᏣᎵᏥᏙᏁᎸᎯ ᏥᎩ, ᎠᏅᏗᏍᎬ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎦᎸᎳᏗ ᏅᏓᏰᏥᏅᏏᏛ; ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᎾᏚᎵᎭ ᎤᏂᎪᎵᏰᏗᏱ. ᎿᏉᏃ ᎠᏰᎵ ᎢᏴᏛ ᎠᎵᏰᎢᎵᏒ ᏓᎾᎵᏍᏓᏴᏍᎬᎢ ᏥᏌ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏴᎸᎩ, ᎠᎴ ᏚᏕᏲᏅᎩ. ᏂᎯ ᏣᏤᎵ ᎦᏙᎯ ᏍᏉ. ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗᏳ, ᎡᎶᎯᏃ ᏙᎯᎣ ᎨᏎᏍᏗ, ᎣᏍᏛ ᎨᎦᏓᏅᏖᏍᎨᏍᏗ ᏴᏫ. ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎪᎯ ᏣᏁᎭ ᎤᏂᏲ ᏗᎾᏓᏲᏁᎯ ᎤᏰᎸᏛ ᎤᏂᏲᎰᎢ; ᎠᏎᏃ ᎤᏰᎸᏛ ᎥᏝ ᎨᏥᏁᏗ ᏱᎨᏎᏍᏗ, ᏦᎾ ᎠᏙᎴᎰᏍᎩ ᎤᏤᎵᎦ ᎤᏰᎸᏛ ᎤᏩᏒ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎢᏨᎨᏳᎢ, ᎾᏍᎩ ᎦᏳᎳ ᏥᏥᎦᏔᎭ, ᎢᏤᏯᏔᎮᏍᏗ, ᏞᏍᏗ ᎠᏂᎾᎦᎾ ᎤᏂᎵᏓᏍᏔᏅ ᏕᏣᏘᏂᏒ ᏗᏥᏅᏨᎩ ᏗᏥᏲᏒᎩ ᎤᎵᏂᎩᏛ ᏂᏣᏛᏅᎢ. ᎤᏓᏅᏎ ᏌᎳᏓ. ᎤᏂᏁᏨᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏣᏂ ᏗᏓᏬᏍᎩ; ᎢᎦᏛᏍᎩᏂ ᎢᎳᏯ; ᎠᏂᏐᎢᏃ, ᎩᎶ ᎢᏳᏍᏗ ᎢᎸᎯᏳ ᎤᎾᏕᏅᎯ ᎠᎾᏙᎴᎰᏍᎩ ᏚᎴᎯᏌᏅ [ᎠᎾᏗᏍᎪᎢ.] ᏞᏍᏗ ᏣᏍᎦᎸᎩ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᏣᎩᎵᏲᎢᏍᏗ ᏥᎩ; ᎬᏂᏳᏉ ᎠᏍᎩᎾ ᏂᎯ ᎢᏣᏓᏡᎬ ᎩᎶ ᏗᏓᏍᏚᏗᏱ ᏙᏓᏥᏴᏔᏂ ᎡᏥᎪᎵᏰᏗᏱ; ᎠᏍᎪᎯᏃ ᏧᏒᎯᏛ ᏓᏥᎩᎵᏲᏥ; ᎤᎵᏂᎩᏛ ᏘᎧᎿᏩᏚᎦ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎠᎵᏍᏚᎶᏃ ᎬᏂᏛ ᎠᏓᏁᎯ ᏓᎬᏅᏁᎵ. ᎠᎴ ᎾᏍᏉ ᎤᏚᎩ ᎤᏩᏒᎩ ᏉᎳ ᎠᏕᎸ ᏧᏁᏗᏱ, ᎾᏍᎩᏃ ᏧᏲᎯᏍᏗᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᏯᏃᎩᏳ ᎠᏓᏅᏍᎬᎩ ᏩᏯᏂᏍᎬᎩ, ᎠᎴ ᎠᎵᏃᎮᏗᏍᎬᎩ. ᏗᎪᏩᏛᏗ ᎤᎢᏒ ᏅᏃ, ᎤᎾᏓᏴᎳᏛ ᎤᏬᏚ ᎠᏎᏃ ᎤᎯᏐᏗ. ᏄᏍᏛ ᎠᎾᏓᏛᏍᎬᎢ ᏙᏓᏦᎵᏍᏔᏂ. ᏥᎪ ᏴᏫ ᏖᎸᎳᏗ ᏓᎾᏕᏍᎪ ᏥᏍᏚᏂᎩᏍᏗᎯ? ᎠᎴ ᏒᎦᏔ-ᎢᏳᎾᏍᏗ ᏥᎪᏥᏥᎯ ᏓᎾᏕᏍᎪᎢ? ᏂᎬᎾᏛ ᎠᎦᏕᏃᎰ ᎤᏙᎯᏳᎲ ᎦᏓ ᎪᏒᏅ. ᎦᏥᏯᏘᏃᎮᎸᎩᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ, ᎠᏎᏃ ᎤᏂᏄᎸᏅᎩ ᎤᏂᏅᏬᏗᏱ. “ᎮᎵᎠᏍᎪ ᎣᏏᏉ ᎨᏎᏍᏗ?” ᎤᏛᏛᏁ. ᏞᏍᏗ ᎤᏐᏅ ᏁᏨᏁᎸ ᏱᏣᏓᎵᏁᎯᏕᎴᏍᏗ, ᎤᏐᏅᏍᎩᏂ ᏁᏨᏁᎸ ᎯᏯᏓᎵᏁᎯᏕᎮᏍᏗ ᎣᏍᏛ ᎿᏛᏁᎲᎢ. ᎢᎦᏛᏃ ᏕᏥᏙᏓᎨᏍᏗ, ᏧᏓᎴᏅᏛ ᏂᏕᏣᏛᏁᎮᏍᏗ; ᎭᏟᏂᎬᏁᎸᎭ ᏂᎪᎯᎸᎾᏉ ᏣᎷᎯᏍᏗᏱ ᎠᏂ ᎨᏙᎲᎢ. ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎡᏏᏱ ᏫᎨᏥᏲᎵᎭ. ᎡᏈᎳ ᎠᎴ ᏈᏏᎳ ᎤᏣᏘ ᏫᎨᏥᏲᎵᎭ ᎤᎬᏫᏳᎯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏲᎵᏍᏗ ᎨᏒᎢ, ᎬᏩᎾᎵᎪᏁᎭ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎾᏍᎩ ᎠᏂᏁᎸᎢ. ᎤᏂᏩᏛᎮᏃ ᏅᏯ ᎢᏴᏛ ᏫᎦᏌᏆᎴᎸᏍᏔᏅᎯ ᎨᏎ ᎠᏤᎵᏍᏛᎢ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏯᎩᎸᏃᏘᎭ, ᎰᏍᏛ ᏇᏍᏓ, ᏥᏁᎦᏉᏍᎩᏂ ᏚᏳᎪᏛ ᎨᏒᎢ ᎠᎴ ᏃᎸᏃᏘᏍᎬᎾ ᎧᏁᎢᏍᏗ ᎨᏒᎢ. “ᎦᏙᏃ ᏂᎦᏗ ᏥᏣᏦᏱᎭ? ᎤᏛᏛᏁᎢ ᎰᎻ. ᎾᏂᎥᏍᎩᏂ ᏗᎬᏩᏓᏂᎸᏨᎯ ᏕᎤᎵᏍᎪᎸᏓᏁᎸᎩ ᎤᏁᎳᏅ Ꭿ ᏧᏪᏥ ᎢᏳᎾᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᏕᎤᏙᎥ ᎠᏃᎯᏳᎲᏍᎩ; ”ᏙᎦᎵᏍᏗ ᎭᏓᏅᏖᏍᎬ, ᎲᎦᎢᏴ ᏫᏣᎷᏣ? ᎩᎳᏈᏴ ᏃᎴ ᏗᎤᏁᏤ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎢᎤᎷᏥᎸ, ᎤᎬᏫᏳᎯ ᎢᏯᎬᏁᎸᎯ ᎨᏎᎢ, ᎤᏁᏤ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ ᏫᎨᏥᏯᏅᏗᏱ ᎬᏩᎷᏤᏗᏱ, ᎾᏍᎩ Ꮎ ᎠᏕᎸ ᏧᎨᏅᏛᎯ, ᎾᏍᎩ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎢᎦᎢ ᎠᏂᏏᏴᏫ ᎤᏂᏁᏉᏤᎸ ᎠᏂᏃᏗᏍᎬᎢ. ᎯᎠᏍᎩᏂ ᏤᏥ ᎤᎤᏦᏅᎯᏉ, ᎾᏍᎩ ᏣᏒᏁᎸᎯ ᏧᎬᏩᎶᏗ ᎠᏂᎨᏴᎯ ᎤᏂᏁᎫᏥᏛ ᎤᏪᎳᏗᏙᎸᎢ, ᎢᎯᎡᎸ ᎦᎵᏦᏔᏅᎯ ᏩᎦ ᎠᎩᎾ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᎤᏐᏅ ᎠᎩᏁᏤᏍᏗ, ᎾᏍᎩ ᎯᎦᏔᎯ ᏫᏂᎦᎵᏍᏓ ᎤᏐᏅ ᎠᎩᏁᏨᎢ; ᎢᏳᏍᎩᏂ ᎣᏏᏳ ᎠᎩᏁᏤᏍᏗ, ᎦᏙᏃ ᏥᏍᏋᏂᎭ? ᏧᏍᏗ ᏓᏂᏏᎳᏛᎥᏍᎨ ᎦᏅᏙᏗ ᎾᎥᏂ. ᎤᏍᏉᏟ ᎤᏒᏂᎴ, ᎤᏰᏣᏍᏔᏁᎢ ᎤᏃᏕᎾ, ᎦᎸᎳᏗᏣ ᎤᏂᏏᏅᏎᎢ. “ᏁᎵᏍᎬᎢᏍᎪ ᏄᏛᏁᎴᎢ ᎤᏓᏛᏛᏁ ᏫᎵᎻ. “ᏙᏳᎩ?” ᎤᏛᏁ ᏌᎳᏓ, ᎤᎨᏳᎯ ᏚᎧᎾᏁ. ᎤᏇᏓᎵᏰᏃ ᎠᎦᏌᏯᏍᏙᏗ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ; ᎠᏓᏅᏙ. ᏍᎩᏂ ᎠᏕᏌᏯᏍᏙᏗᏱ ᎬᏂᏛ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏗᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ. ᎾᏍᎩᏃ ᎠᏁᎲᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎠᎾᎵᏅᏟ; ᎤᏓᏂᎵᎨᏃ ᎤᏕᏒᏅᎩ, ᎠᎴ ᎤᏲᎱ-Ꮢ ᏧᏪᏥ ᎾᏁᎲᎾ. ᎢᏣᏓᏁᎮᏍᏗ, ᏂᎯᏃ ᎠᏎ ᎡᏥᏁᏗ ᎨᏎᏍᏗ; ᎣᏍᏛ ᎠᏟᎶᏛ, ᎠᏍᏓᏲᏔᏅᎯ, ᎠᎴ ᎠᏖᎸᏅᎯ, ᎠᎴ ᎬᏤᏪᎩ, ᎨᏥᏁᏗ ᎨᏎᏍᏗ ᏴᏫ ᏕᏣᏓᏠᎲᎢ. ᏄᏍᏛᏰᏃ ᎢᏣᏓᏟᎶᎡᎸ ᎾᏍᎩᏯ ᎾᏍᏉ ᎡᏣᏟᎶᎡᏗ ᎨᏎᏍᏗ; ᎤᏂᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎡᎶᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᎾᏓᏙᏕᏍᏗᏍᎩ, ᎠᏎᏰᏃ ᏗᎾᏓᏙᏕᏍᏗᏍᎩ ᎤᏂᎾᏄᎪᎢᏍᏗ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᏗᏓᏙᏕᏍᏗᏍᎩ ᎤᎾᏄᎪᏫᏒᎯ. ᏦᎢᏃ ᎢᎦ ᏅᎩᏁᏃ ᎠᏰᎵ ᎤᎶᏐᏅ ᎠᏓᏅᏙ ᎬᏂᏛ ᎠᏓᏁᎯ ᎤᏁᎳᏅᎯ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ ᎬᏩᏂᏴᎸᎩ, ᎠᎴ ᏚᎾᎴᏅᎩ, ᎾᏍᎩᏃ ᎬᏩᏂᎪᎲᎯ ᎤᏣᏘ ᎤᏂᎾᏰᏒᎩ. “ᏣᏉ ᎯᎪ ᎤᏒᎯ,” ᎤᏛᏁ ᎡᏝᏪ ᎢᏳᏍᏗ. ᎢᏳ ᎠᎴ ᎭᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎠᎭ ᏞᏍᏗ ᏄᎾᏍᏛ ᎤᎾᏠᎾᏍᏗ ᏱᏂᏣᏍᏕᏍᏗ; ᎾᏍᎩᏰᏃ ᎣᏐ ᎤᏂᏰᎸᏐ ᎤᎾᏓᏙᎵᏍᏙᏗᏱ ᎤᎾᎴᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏚᏅᏏᏯᏅ ᏕᎦᎳᏅᏛ ᎡᎾᎢᏓᏍᏗᏱ, ᏴᏫᏉ ᎬᏩᏂᎪᏩᏛᏗᏱ ᎤᎾᏚᎵᏍᎪᎢ. ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎨᎦᎫᏴᎡᎸ. ᏱᏥᎦᏙᎥᏎᏍᎩᏂ ᎦᏛᎬ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏪᎠ, ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏆᏚᎵᎭ, ᎥᏝᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎨᏒᎢ, ᎥᏝ ᎤᏂᏍᎦᏅᏨᎯ ᏱᏙᎨᏥᏰᎸᏁ ᏄᏂᏍᎦᏅᏨᎾ. ᏩᏍᏛ ᎢᏯᎦᏴᎵ ᏧᏕᏘᏴᏓ ᏓᏂᎭᎷᎥᏍᎨ ᏍᎪᏯ ᏃᎴ ᏛᎦ ᎧᏅᏂᏍᎩ. ᎠᏓᏖᎸᎮᏍᎩ ᎠᎵᏍᎩᏍᏗ ᏯᎩᏨᎦ ᏰᎵᏉ ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏱᎬᎦ ᎢᎦᏪᏍᏗ ᏓᎩᏏᎳᏛᎢ.” ᎾᎯᏳ ᏥᏌ ᎤᎴᏅᎮ ᎠᎵᏥᏙᎲᏍᎨᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎿᏉᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ. ᎠᏂᏧᏏᏰᏃ ᎤᏰᎸᏛ ᎠᏂᏔᏲᎯᎭ, ᎠᏂᎪᎢᏃ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎤᏂᏲᎭ; ᎤᏣᏘᏅ ᎢᏣ, ᏕᎦᏚᎲ ᎤᎿᏕᎨᏒ, ᏧᎾᏗᏔᏍᏗ ᏃᎴ ᎤᏂᏲ ᎠᏂᎨᏯ ᏚᏂᏁᎸ ᏃᎴ ᎦᎶᏇ ᎬᏘ ᏗᎾᏟ ᏃᎴ ᎠᏰᎳᏍᏗ ᎬᏘ ᏗᎾᏟ. ᎾᎥᏂ ᏱᏣᎪᎵᏰ, ᏱᎪᏩᏔ ᎦᏙ ᏭᎪᏍᎬ. ”ᎭᏩ, ᎨᏍᏗᏗ ᏓᎳᎳ ᏕᎯᎦᏖᏃᎲ ᏱᎨᎵᏍᎨ,” ᎤᏛᏁ ᏫᎵᎻ, ᏰᎵ ᎤᏂᎦᎸᎯ. ᎧᎵ ᎠᏂᏅ ᏗᎦᏅᎯᏓ ᏗᎦᏍᎩᎶᎩ, ᏗᏂᏲᏟ ᎡᏓᏍᏘ ᎠᏂᏅ ᎠᎴ ᎠᏂᏅᎬ. ᎯᎸᎯᏨ ᏗᎨᏥᏂᏴᏓ, ᎪᎰᏍᏘ ᎫᏩᏛᏁᏗ ᏱᎨᏒᎾ ᏧᏍᏕᎸᏗ. ᏦᎢ ᎢᏳᏩᎬᏘ ᎤᏙᏓᏈᏒ ᏩᏩᏛᎯᏙᎮ ᏫᎵᎻ, ᏧᏍᏆᎸᎰ ᎠᎵᏍᏓᏴᏗ, ᏃᎴ ᎤᏚᏓᎸᏁᎸ ᏫᎵᎻ ᏍᎩᎾᎾ ᏄᏛᏁᎴ. ᎠᏲᎱᏍᏗ ᎤᏓᏨᏯᏍᏗ ᎨᏒ, ᎾᏍᎩ ᎠᏍᎦᏂ; ᎠᏍᎦᏂᏃ ᎤᎵᏂᎪᎯᏍᏗᏍᎩ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ. ᏲᎾ ᎤᏤᏍᏙ ᏏᏆ ᎤᏴᏍᏗ ᏭᏴᎴᎢ ᏃᎴ ᏫᎵᎻ ᎦᎾᎥ ᎾᎥᏂ ᏚᏟᏂᏆᏅᏁ. ᎠᎴ ᎾᏍᏉ ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎢᏧᎳᎭ ᏕᎨᎦᏘᏅᎭ ᏗᎨᏥᎢᏍᏗᏱ. ᎬᏩᏔᏲᏎᎴᏃ ᏧᏁᏤᏗᏱ ᏂᎨᏒᎾ ᏗᏍᏛᎬ ᏭᏂᎶᎯᏍᏗᏱ. ᎰᎻ ᎨᏍᏗ ᏳᎵᏍᎪᎵᏓᏁᎮ ᎤᏅᎪᎢᏍᏗ ᏫᎵᎻ ᎠᎴ ᏭᏴᏍᏗ ᏲᎾ ᎤᏤᏍᏙ ᏫᎵᎻ ᎤᏴᏍᏗ. ”ᏓᏓᎾᏁᎶᏂᎨ ᏧᏍᏆᏴᏍᏗ?” ᎤᏛᏛ ᏫᎵᎻ. ᎬᏁᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎠᎴ ᎨᎦᏑᏰᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᏂᎦᏔᎲᎢ, ᎯᎠ ᎾᏍᎩ ᏣᎦᏌᏯᏍᏙᏗᏱ ᎢᎬᏱ ᎦᏰᎯ ᏂᏚᎪᏗᏍᎬᎾ, ᎠᎴ ᏕᏣᎸᏫᏍᏓᏁᎲ ᎩᎶ ᏂᏯᎵᎪᏁᎲᎾ. ᎠᎴ ᎾᏍᏉ ᎴᎭᏫ ᎤᏁᎫᏥᏛ ᏝᏍᎪ ᏕᎤᎸᏫᏍᏓᏁᎲ ᏳᏚᏓᎴᏍᏔᏁᎢ ᏚᏓᏂᎸᏨ ᎾᏍᎩ Ꮎ ᏅᏓᎨᏥᏅᏏᏛ ᎠᎴ ᏚᏅᏫᏍᏔᏅ ᎤᏣᏘᏂ ᎢᏗᏢ ᏭᏂᎶᎯᏍᏗᏱ? ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎠᏁᏙᎲ ᎤᎷᏨ, ᎤᏂᏣᏘ ᏚᎪᎮ ᎬᏩᎾᏓᏡᏫᏍᏕᎢ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎬᏩᎾᏛᏛᎮᎸᎢᏍᎨᎢ. ”ᏍᏆᏛᎦᏍᏓ, ᏍᏆᏛᎦᏍᏓ!” ᎤᏪᎷᏁ ᏌᏌ. ᎡᏘᏴᏓ ᏓᎫᏩᎴᏅᏓ ᏓᏍᏆᏂᎪᏗᏍᎬ ᏣᏁᏆ ᏃᎴ ᏧᏂᏍᏗ ᎢᎾᎨ ᎤᎾᏕᏅ, ᏃᏥ ᏧᎧᎭᏲᏓ ᏥᏓᏓᏪᎳᎩᏍᎪ ᎢᎦᎦᏓ, ᏚᎾᎧᏛ ᎬᏂᎨᏒ ᎠᏓᏪᎳᎩᏍᎬ, ᎤᏃᎴ ᎠᏒᎢᏍᏗᏍᎬ ᏏᏆ ᎤᏍᏘᏯᏅ ᎠᎪᎲᏍᎬ ᎠᏒᎬ. ᎢᎬᏱᏱᏃ ᎠᎴ ᏔᎵᏁ, ᎠᏂᏯᏫᏍᎬ ᎤᏂᎶᏒ ᏭᏂᎷᏤ ᏔᎷᎩᏍᎩ ᏗᏍᏚᏛ ᏗᎦᏚᎲ ᏫᎦᎾᏄᎪᎢᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎤᏩᏒᏉ ᎤᎾᎵᏍᏚᎢᎡᎴᎢ. ᎤᏂᏄᎪᏨᏃ ᏌᏉ ᎦᎳᏅᏛ ᎤᏂᎶᏎᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏓᏓᎴᏔᏁᎢ. ᏏᏲ ᎤᏍᏗ ᎠᏣᏗ. ᎤᏛᏁ ᎠᏤᎯ ᎠᏣᏗ, ᏗᎦᏌᏆᎸ ᏚᏁᎦᎸ ᏗᎬᏗ, ᎠᏯ ᏓᎶᎨ ᎬᏉᏎᎰ ᎠᏂᏣᎳᎩ. ᏅᏲ ᏥᏓᎣ ᏃᎴ ᏕᏥᏅᎦᎵᏍᎪ. ᎦᏳᎳᏰᏃ ᎢᎦᏛ ᎤᎾᎪᎸᏒ ᏎᏓᏂ ᎤᎾᏍᏓᏩᏕᏅ. ᎤᏔᏕᎩᏍᎨ ᏃᎴ ᎤᏲᏏᏍᎨᎢ ᏥᏍᏕᏥ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏔᏲᏎᎭ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᎾᏍᎩᏰᏃ ᎯᎠ ᎢᏣᎵᏍᏕᎸᏙᏗ; ᎯᎠ ᏰᏃ ᏥᏂᏣᏛᏅ ᎥᏝ ᎩᎶ ᏌᏉᎤᏅ ᎤᏍᏘᏰᏅᎯ ᎠᏓᎦᏙᎠᏏ. ᏃᎴ ᏍᏉ, ᎤᏩᏌ ᎤᏓᏟᏃᎮᏕ, ᏰᎵ ᏚᎷᏫᏍᏔᏁᎴ ᏰᎵ ᎤᏦᏍᏗ ᏧᎷᏫᏍᏔᏁᏗ. ᎾᎯᏳᏃ ᎢᎦ ᏆᎴᏗ ᎠᎴ ᎡᎶᏛ ᎤᎾᎵᎢᏕᎢ; ᏗᎾᏓᏍᎦᎩᏰᏃ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏎ ᎾᎯᏳ ᎢᏯᏍᏘ. ᎤᏍᎦᏃᎵ ᎾᎥᏂ ᎤᎷᏤ ᎤᏔᏂᏗᎨ ᎠᏣᏗ, ᎡᎳᏗ ᎢᏳᏍᏗ ᎤᏬᏂᏎ, ᏏᏲ ᎤᏍᏗ ᎠᏣᏗ, ᎤᎬᏍᏕᎵ ᎬᏉᏎᎰ ᎠᏂᏣᎳᎩ. ᎥᎥ, ᏚᏳᎪᏗ ᎨᎵᎭ ᎢᎪᎯᏛ ᎠᏂ ᎯᎠ ᎦᎵᏦᏛ ᏥᏯᎥᎢ, ᎢᏨᏰᏍᏛᏙᏗᏱ ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ; ᎠᏍᎦᏯᏱ ᎠᏓᎾᏅᎥᏍᎩ ᏃᎴ ᎠᏙᎩᏯᏛ, ᎤᏍᏗ ᎠᏍᎦᏯ ᎤᏨᏉᏗ, ᎠᏍᎧᎾᎢ ᎢᏣ ᎦᎴᏂ ᎠᏯᏙᎯ ᎤᏍᏘᏰᎬ ᎤᏭᏌᎥ ᎤᎨᏬᏗ ᎨᏒ. ᎦᎸᎳᏗ ᏭᏔᎷᎨᎢ ᎦᏓᎡᎢ, ᏎᎦ ᏓᎦᏢᏂᏎ, ᏁᎳᎩ ᎤᏓᏅᏖᏗᏍᎨᎢ ᏫᎵᎻ. ᏃᏉᏗ ᏙᏳ ᏧᏂᎾᎸᏤ ᎭᎾᏉ ᏧᏂᏂᏴᎮ ᏍᎩᎾ ᏥᏍᏆ ᏃᎴ ᏧᎾᏣᎧᏎᎴ ᎦᎾᎪᎢ. ᏅᏃᎯ ᎠᏂᎶᏏᏙᎲ ᏕᎦᎦᏙᏍᏙ ᎠᏂᎩᎶ, Claire ᏥᎦᏖᏃᎰ, ᎤᎩᏓᏟᏅᏯ ᏳᎾᎵᎪ ᏯᏂᏩᏛᎯᏙ ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ. ᎢᎬᏱᏃ ᎤᎷᏨᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᎾᏝᎢ, ᏣᏤᎵ ᏑᏓᎨᏛ ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᎤᏁᏉᏨ. ᎾᎦᎥ ᎣᏍᏛ ᎠᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᎥ ᎣᏌᏂ ᎠᏓᏁᏗ ᎨᏒ ᎦᎸᎳᏗ ᏗᏓᎴᎲᏍᎦ ᎠᎴ ᎠᏠᎠᏏᎯᎭ ᏗᏓᎴᎲᏍᎦ ᎠᎦᏴᎵᎨᏍᏛᏱ ᎢᎦᎦᏘ ᎤᏪᎯ, ᎾᏍᎩ ᎬᏩᏓᏁᏟᏴᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎬᏩᎦᏔᎲᏍᏗ ᎨᏒ ᏄᏓᏴᎳᏛᏫ ᎨᏒᎢ. ᏄᏓᎴ ᎤᏚᎵᏍᎬ, ᎨᎵ ᎤᏓᏂᏰ ᎤᏛᏅᎢᏍᏙᏗ ᎤᎾᎥ. ᎨᏍᏗ ᏗᎬᏩᏎᏍᏗ ᏱᎨᏎ ᏫᎵᎻ, ᎠᎧᏔᎮᎢ ᏰᎵ ᎾᏂᎡ ᏧᎵᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏭᎩᏨᏅ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏧᎾᏛᏐᏅᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᏂᎦᏛ ᏗᏂᎳᏫᎩ ᎤᎾᎵᏃᎮᎸ ᎤᎾᎸᎴ ᏥᏌ, ᎠᎴ ᎤᎾᏖᎾᏫᏛᎮᎢ, ᎠᎴ ᏆᎴᏗ ᏫᏚᏂᏲᎯᏎᎴᎢ. ᎤᎳᏏᏕᎾ ᎬᏗ ᎤᏒᏂᎴ ᏧᏍᏆᏴᏍᏗ ᎧᏁᏍᎪ ᎭᏫᏂᏣ. ᎠᎴ ᏏᏂᎹᏂ, ᎠᎴ ᏗᎦᏩᏒᎩ, ᎠᎴ ᎠᏠᏁᏗ, ᎠᎴ ᎠᏜ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ, ᎠᎴ ᎪᎢ, ᎠᎴ ᏩᎾᎨ ᎤᏣᎴᏍᏗ ᎢᏒ, ᎠᎴ ᎤᏣᎴᏍᏗᎤᎦᏛ, ᎠᎴ ᎦᎾᏝᎢ, ᎠᎴ ᎠᏫ-ᎤᏂᏃᏕᏅ, ᎠᎴ ᏐᏈᎵ, ᎠᎴ ᏧᏍᏗ-ᏓᏆᎴᎷ, ᎠᎴ ᏴᏫ-ᏗᎦᎾᏝᎢ, ᎠᎴ ᏴᏫ ᏧᎾᏓᏅᏙ. ᏧᏓᏃᏣᏟ ᎠᏍᎦᏯ ᎨᏒ, ᎢᏓᏗᏍᎪ, ᎾᏗᎦᎵᏍᏙᏗᏃ ᎾᏍᎩ ᏧᏬᎷᏩᏛᏓ ᏗᎪᏪᎶᏙᏗ ᎠᏯ ᎢᏗᏣᎳᎩ ᎡᎵᏊ ᎨᎪᏪᎶᏗ ᎢᎬᏌ ᎢᎩᏬᏂᎯᏍᏗ. ᎾᏍᎩ ᏗᏥᎦᎵᏍᏓᏕᏗ ᎨᏎᏍᏗ ᏗᏥᎾᏫ, ᎠᎴ ᏗᏣᎵᏂᎪᎯᏍᏙᏗ ᎨᏎᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎢᏥᏬᏂᎯᏍᏗᏱ ᎠᎴ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ. ᎿᏉᏃ ᎡᎩᎵᏈ ᎯᎠ ᏄᏪᏎᎸᎩ ᏇᏍᏓ; ᎠᏴ ᎾᏍᏉ ᎠᏋᏒ ᎠᏆᏚᎵᎭ ᏥᏯᏛᎦᏁᏗᏱ ᎾᏍᎩ ᎠᏍᎦᏯ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎤᎩᏨᏅ ᏘᏯᏛᎦᏁᎵ. ᎠᎬᏱ ᏓᎩᏯᎬ ᏓᎬᎾ, ᏕᎦᏕᎣᏍᏔᏅ ᎦᏍᎩᎸ ᎠᏂᏂ. ᎠᏎᏃ ᎾᏂᎥ ᎠᏂᎪᎵᏰᏍᎨᏍᏗ ᎤᏅᏒ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎿᏉᏃ ᎤᏅᏒ ᎨᏒ ᎤᏂᎮᏍᏗ ᎤᎾᎵᎮᎵᏍᏙᏗ, ᎥᏝᏃ ᏅᏩᎾᏓᎴ ᎨᏒᎢ. ᏂᎪᎯᎸ ᏂᎦᏓᏙᎵᏍᏗᏍᎬ ᏂᏥᏔᏲᎯᎲ ᏂᎯ ᏂᏥᎥ ᎡᏥᏙᎵᏍᏗᏱ, ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓᏅᏛ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ, ᎯᎠ ᏂᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᎩᎬ, ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎠᏍᏓᏱᏗᏍᎩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏥᏁᏤ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ. ᎾᎯᏳᏃ ᏥᎨᏒᎩ ᎦᏙ ᎤᏍᏗ ᎢᏥᏄᏉᏤᎮ ᎾᏍᎩ ᎪᎯ ᏥᏣᏕᎰᏍᎦ? ᎠᏲᎱᎯᏍᏗᏰᏃ ᎨᏒ ᏭᎵᏰᎢᎶᎯᏍᏗ ᎾᏍᎩ. ᏑᎾᎴᏃ ᎠᎾᎢᏒᎢ, ᎤᏂᎪᎮ ᎡᎦᏔᎢᏳᏍᏗ ᎲᎬ ᎤᏩᏴᏒᎯ ᎨᏎ ᏚᎿᏍᏕᏢ ᏅᏓᎬᏩᏓᎴᏅᏛ. ᎢᏣᏕᎶᏆᏗᏰᏃ ᎢᏨᎥᏏ, ᎾᏍᎩᏯ ᏂᏨᏯᏛᏁᎸ ᎢᏣᏛᏁᏗᏱ. ᏂᎦᏓ ᎦᏚᎲᎢ ᏧᏂᎷᏗᏤᎢ ᎡᏆ ᏣᏚᏂᎳᏫᏤ ᎾᏍᏊ ᏣᏚᎧᏔᏁ ᎯᎳᎪ ᎾᏍᏊ ᏧᏂᏲᎯᏍᏗᏊ. ᎣᏍᏓ ᎤᏰᎸᎮ ᏌᎳᏓ ᏚᎶᏅᎮᎸ. ᎢᏣᎵᎮᎵᎩ ᎾᏍᎩ ᏄᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᏂᎯ ᎦᎸᎶᎢ ᎠᎴ ᏂᎯ ᎢᏣᏓᏅᏘ ᎠᎴ ᎡᏥᏅᏏᏛ, ᎠᎴ ᎢᏣᏙᎴᎰᏍᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᎦᏞᏥ. ᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᏗᏄᎪᏗᏍᎩ ᏚᏂᏅᏎ ᏗᎾᏓᏂᏱᏍᎩ, ᎯᎠ ᏫᏄᏂᏪᏍᏗᏱ; ᏘᎧᎲᎦ Ꮎ ᎠᏂᏍᎦᏯ. ᏎᎦ ᎨᏍᏗ ᎪᎱᏍᏗ ᏳᏛᎾ ᏌᎳᏓ. ᎤᎴᏫᏍᏙᏗᎢ ᏗᎦᎶᎩᏍᎩ ᏧᏪᏅᏒᎢ ᎾᏓᏁᎸᎾ ᏱᎩ ᎡᏍᎦᏂ ᎠᎴ ᎤᏙᎯᏳᎯ ᎵᏫ ᏧᏪᏥ ᎠᏥᎸᎨᎳᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎨᏥᏁᏗ ᎨᏒᎢ ᎨᎦᏒᎦᎸᏗᏍᎨ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏧᏂᏂᏢᏗᏱ ᏴᏫ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᎨᏒᎢ, ᎾᏍᏉ ᎡᏆᎭᎻ ᎠᏰᎵ ᏅᏓᏳᎾᏓᎴᏅᎯ ᎨᏒᎢ. ᏎᎦᏨ ᎦᏬᏂᏍᎬᎢ ᏃᏊ. ᎠᏎᏃ ᎢᏣᏓᏑᏯ ᏂᏦᎯᏳᎲᏍᎬᎾ. ᏥᏌᏰᏃ ᏗᏓᎴᏂᏍᎬ ᏂᏓᎦᏔᎰ ᎾᏍᎩ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ, ᎠᎴ ᎾᎦᏔᎰᎢ ᎾᏍᎩ ᎾᎤᏡᏗᏍᎩ ᎢᏳᎵᏍᏙᏗ. ᎾᏍᎩ ᎠᏍᎩᎾ ᎢᎩᎶᏄᎮᏗᏱ ᏂᎨᏒᎾ; ᎥᏝ ᏰᏃ ᏱᎩᎪᏁᎸ ᎾᏍᎩ ᎠᏓᏅᏖᎵᏙᎲᎢ. ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᎠᏞᏍᎨᏍᏗ ᏚᏲᏍᎨᏍᏗ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎩᎶᏃ ᎢᎤᎦᏔᎲᏍᎨᏍᏗ, ”ᎣᏍᏓ ᎠᎩᏰᎸᎰ ᏩᏇᏓᏍᏗ ᎭᎾ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏅᏩᏓᎴᏰᏃ ᎦᎫᏍᏛᏗ ᎥᏝ ᎩᎶ ᎬᏩᏗ ᏱᎩ ᎾᏍᎩ ᎤᏩᏒ ᎦᏳᎳ ᎠᏅᎯ ᏥᎩ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏥᎩ. ᎾᎥᏃ ᏓᏓᎿᏩᏍᏛ ᏥᏌ ᎦᏛᎢ ᎠᏂᏙᎾᎥᎩ ᎤᏥ, ᎤᏂᏃ ᎤᎸᎢ ᎺᎵ ᏟᎣᏆ ᎤᏓᎵᎢ, ᎺᎵᏃ ᎹᎩᏕᎵ ᎡᎯ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᎿᏉ ᎢᏦᎯᏳᎲᏍᎦ? “ᎨᎵᎠ ᏰᎵᏉ ᏓᏓᎴᏅᎯᏉ ᏰᏙᎲᎾ ᏥᏍᏕᏥ. ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎩ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎤᏩᏒ ᎢᎩᎩᏍᏓᏁᎸᎩ ᏗᏗᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ, ᏕᎩᏢᎬᏃ ᏧᏤᎵ ᏂᏚᏩᏁᎸᎩ. ᎪᎯᏰᏃ ᎨᏒ ᎤᏍᎪᎸ ᎢᏗᎪᏩᏗᎭ ᎠᏓᎨᏗᏱ; ᎾᎯᏳᏍᎩᏂ ᎨᏎᏍᏗ ᏕᎦᎧᏛ ᏙᏓᏓᏓᎪᎯ; ᎪᎯ ᎨᏒ ᎢᎦᏛᏉ ᏥᎦᏔᎭ; ᎾᎯᏳᏍᎩᏂ ᎨᏎᏍᏗ ᏥᎦᏔᎮᏍᏗ ᎾᏍᎩᏯ ᎾᏍᏉ ᎥᎩᎦᏔᎲᎢ. ᎠᎴ ᎠᏏ ᎤᏣᏔ ᏥᏌ ᏧᎸᏫᏍᏓᏁᎸᎯ, ᎾᏍᎩ ᎢᏳᏃ ᏂᎦᏛ ᏱᎪᏪᏔᏅ, ᎦᏓᏅᏖᏍᎬ ᎡᎶᎯ ᎾᏍᏉ ᏯᎧᎵᎩᏉ ᎪᏪᎵ ᎾᏍᎩ ᏗᎪᏪᎳᏅᎯ. ᎡᎺᏅ. ”ᎠᏯ ᎤᏙᎯᏳᎯ,” ᎤᎵᏍᏗ ᎢᏳᏍᏗ ᏂᏧᏪᏎ. ᎤᏁᏅᏎᏃ, ᎠᎴ ᏭᏂᏩᏛᎮ ᎠᎩᎾ ᎨᎵᏌᏕ ᎦᎶᎯᏍᏗᏳᎶᏗ ᏙᏱᏗᏢ, ᎾᎿ ᏕᎦᏅᏅ ᏓᏠᏍᎬᎢ; ᎤᏁᎵᏌᏕᏎᏃ. ᏎᎦ ᎠᎴᏫᏍᏘᏍᎬ ᎠᏛᎦᏍᏘᏍᎨ ᎢᏴ ᎠᎬᏱᏣ ᎠᎵᏖᎸᎮᏍᎬ ᏧᏆᎶᎬ. ᏔᎷᏣ ᎫᏌᎢ ᎠᎵᏎᎮ, ᎦᏢᏍᏙᏗ ᎤᏐᏓᎴ, ᏭᎷᏣ ᎠᏯᏖᏅ ᏂᎦᎵᏍᏗᏍᎬ ᎤᎨᏓᎵᏴ, ᎤᏩᎾᏕᏍᎩ ᏄᏍᏛ, ᏧᎧᎭᏲᏛ ᏚᎦᏌᏛ ᎦᏄᎸ ᏃᎴ ᏧᏯᏛᏅ ᏧᏆᎶᎦ ᏃᎴ ᎡᎳᏗ ᎠᏛᏍᏗ. ”Ꭳ, ᎤᏬᏚᏨ ᎢᎦ, ᏎᎦᏨ ᎦᎷᎩ! ᎾᏍᎩᏃ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏩᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᎩᏙᏓ, ᎾᏍᎩ ᎢᎩᎨᏳᎯᏳ ᏥᎨᏒᎩ, ᎠᎴ ᏥᎩᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ, ᎠᎴ ᎣᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᏥᏌ ᎤᏁᏨᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᎩᎶ ᎠᎩᎨᏳᎯ ᏱᎩ, ᎾᏍᎩ ᏧᎧᎿᏩᏛᏍᏗ ᎠᎩᏁᏨᎢ; ᎡᏙᏓᏃ ᎤᎨᏳᎯ ᎢᏳᎵᏍᏙᏗ, ᎠᎴ ᏓᏲᏍᏗᎷᏤᎵ, ᎠᎴ ᎦᏁᎸᎢ ᏓᏲᏍᏓᏁᎳᏗ. ᎤᏂᏩᏙᎯᏴᏓ ᏐᏈᎵ ᏧᏂᎾᏌᎾᎩᏛ ᏓᏆᎴᎳ ᏚᎾᏦᏔᏁ ᏭᏂᎷᏤ ᏭᏕᎵᎬ. ᎥᏝ ᎩᎶ ᎤᏓᎨᏳᎯᏳ ᎨᏒ ᏴᎬᎪᎾᏛᏓ ᎤᎵᎢ ᏗᏲᎱᎯᏎᎯ. ᏓᎦᎵᏍᎬ ᏃᎴ ᏓᎦᏍᎬ, ᏂᎪᎯᎸᎾ ᎦᏙᎯ ᏗᎾᎪᏘᏍᎪ ᎤᎾᏨᏓᎵ. ᎠᏂᎯᎠ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎥᏝ ᎤᏁᎳᏅᎯ ᎡᏗᎨᏳᎢᏳ ᏄᎵᏍᏔᏅᎢ, ᎠᏴᏍᎩᏂ ᎢᎩᎨᏳᎯᏳ ᏄᎵᏍᏔᏅᎢ, ᎠᎴ ᏧᏅᏒ ᎤᏤᎵᎦ ᎤᏪᏥ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᎫᏴᏙᏗ ᎢᎩᏍᎦᏍᏨᎢ. ᎤᎾᎳᏅᎯᏰᏃ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎦᎸᎶᎢ ᏨᏗᏓᎴᎲᏍᎦ ᏥᏓᎦᏘᎴᎦ ᏄᏓᎴᏒ ᎤᏁᎳᏅᎯ ᏄᏂᎸᏉᏛᎾ ᎨᏒ, ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᏴᏫ, ᎾᏍᎩ ᏚᏳᎪᏛ ᏣᏂᎾᎯᏍᏗᎭ ᎤᏲ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ; ᎦᏓᏁᏍᏛ ᏃᎴ ᎤᎵᏏᎬ ᎠᏁᎰ ᎤᎪᏏᏓ ᎢᏗᏅᏁ. ᎢᎦᏛᏃ ᎣᏒ ᎦᏙᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎠᎴ ᏧᏛᏎᎢ, ᎠᎴ ᎤᎦᏔᏔᏁᎢ ᎤᏁᏉᏤ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏩᎫᏗ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᎤᎵᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ ᏃᎴ ᏄᏓᎴ ᏰᎵ ᎤᏒᎯ ᎢᏴ ᎠᏥᎸᏳᎸᏗ ᏙᎩᏃᏢ ᏣᎵ. ᎪᎯᏃ ᏥᎩ ᎢᏗᎦᏔᎭ ᎢᏳᏍᏗ ᎠᏲᏍᏙᏗᏍᎬ ᎬᏂᎨᏒ ᎢᏔᎬᏁᏗᏱ ᎾᎯᏳ ᎬᏂᎨᏒ ᎢᏯᎬᏁᏗ ᎨᏒᎢ. ᏐᏉ ᎢᏯᎦᏴᎵᏉ ᎾᏂᎭ? ᎠᎾᏘᎨ ᎠᏂᎨᏯ, ᏗᏂᏲᏟ ᏃᎴ ᏁᏂᏏ ᏧᏆᎶᎬ ᎤᎾᏅᏁ ᎤᎾᏢᏲᎵᎸ ᎢᎾᎯᎨᏍᏗ ᎤᏁᏅᏍᏗ. “Ꮒ,” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ ᏩᏎᎯᎮᎢ. ᎵᏏᏃ ᎿᏉ ᎤᏍᏆᎸᎡᎴ ᎤᏕᏗᏱ ᎠᏲᎵ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎠᏧᏣ. ᎠᏙᎯ ᎮᏓ! ᎠᎴ ᎢᎦᏛ ᎤᎾᏓᏑᏴᎩ ᎤᎾᏚᎵᏍᎬᎩ ᎬᏩᏂᏴᏗᏱ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏳᏏᎳᏕᎢ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᏧᏴᎴ ᎾᎯᏳ ᏤᎮ ᎡᏆᏱᏓ. ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᏧᎨ ᎠᎦᏙᏗ ᎦᏚ, ᎾᏍᎩ ᎬᎩᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏎ ᎠᏥᎸᎠᏁᎶᎯ ᎤᏅᏒ, ᎠᎴ ᎾᏍᏉ ᏥᏚᏁᎴ ᎾᏍᎩ ᎠᏁᎯ. ᎿᏉᏃ ᎤᎾᏓᏅᏖᎸᎩ ᎬᏩᏂᏴᏗᏱ: ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏳᏏᏔᏕᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏏ ᏄᏍᏆᎸᎡᎸᎾ ᎨᏒᎢ. ᎡᏝᏪᎯ ᏄᎵᏍᏔᎾ ᏗᎪᏪᎵᏍᎩ, ᎠᏓᏅᏖᎵᏙ ᎦᏅᏃᏩ ᎤᏬᎦᏒ. ᎨᏍᏗ ᏗᏣᏏᎳᏛᏗ ᏱᎩ. ᎣᏍᏓ ᎠᎦᏎᏍᏔᏅ ᏂᎦᎵᏍᏔᏁᎲ, ᎤᏬᎯᏳᏅ ᏁᎳᎩ ᎤᏪᎵᏍᏗ ᎢᏕᎲ, ᏚᏬᎯᏳᏅ ᎦᏙ ᏕᎩᏂᏲᎲ ᏃᎴ ᏳᏃᎯᏳᎲᎾ ᎨᏒ ᏕᎪᏪᎸ ᏕᎦᏙᎥ ᏁᎳᎩ ᎤᏪᎵᏍᏗ. ᎥᏝ ᎠᎴ ᎩᎶ ᏳᏓᏑᏰ ᏳᏂᎬᎨᎢ, ᎾᏂᎥᏰᏃ ᎦᏓ ᎠᎴ ᏓᏓᏁᎸ ᏧᏂᎯ ᏚᏂᎾᏗᏅᏎᎢ, ᎾᏍᎩᏃ ᎤᏂᎾᏗᏅᏛ ᏧᎬᏩᎳᏅᎯ ᎤᏂᏲᎴᎢ, ᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎤᏬᎸ ᎤᎷᏨᎩ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏥᏌ ᏂᎯ ᏙᏓᏍᏉᏑᎴᎵ ᏗᏆᎳᏏᏕᏂ? ᏞᏍᏗ ᎾᏍᎩ Ꮎ ᎠᎵᏍᏓᏴᎲᏍᎩ ᏅᎵᏌᎵᏉ ᏳᏰᎸᏁᏍᏗ Ꮎ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ; ᎠᎴ ᏞᏍᏗ ᎾᏍᎩ Ꮎ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᏱᏚᏭᎪᏓᏁᎴᏍᏗ Ꮎ ᎠᎴᏍᏓᏴᎲᏍᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᏚᏓᏂᎸᏨ. ᏍᏔᏯ ᎢᏳᎵᏍᏔᏅ ᎤᎾᎳᏍᏘᏰᎥ ᎦᏙ ᎤᎾᏛᏁᎸᏗ ᎠᏰᎵ, ᎠᏩᏛᏗ ᏎᎷ ᎠᎾᏔᏍᎩᏍᎩ, ᎤᏁᏍᏔᎶᏨ ᎤᎦᎾᏍᏓ ᎤᏪᏥ ᎠᎦᏅ ᎤᏩᎾᏬᏒ, ᎨᏂᏗ ᏗᎦᏅᎵᏰᏓ ᏒᎧᏔ ᏧᎾᏗᏅᏓ ᏧᏂᏯᏪᏨ ᏗᏂᏲᏟ, ᎧᎵᏎᏥ ᎤᎸᏌᏔᏅ, ᎠᎹ ᏧᏓᏅᎵᏰᏓ ᎤᎾᏔᏅ, ᎤᎦᎾᏍᏓ ᎤᏁᏍᏔᎳ, ᎦᏲᏟ ᎤᏂᎬ ᎤᏁᏍᏔᎶᏨ ᎤᏅᏗ ᏗᎦᎶᏔᏅ, ᏃᎴ ᎠᏓ ᏗᎦᏯᎸᏅ ᎨᏂᏗ. ᎠᏓᏍᏓᏴᏗ ᎦᏍᎩᎸ ᎠᏌᎾᎡ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ, ᏃᎴ ᎠᏒᎨ ᎧᏫ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᎦᏓᏁ ᎦᏅᎵᏰᎥ ᎠᏦᏴ, ᏃᎴ ᎠᏓ ᏧᎦᏒᏍᏗ ᎠᏓᏍᏓᏴᏗ ᏓᏳᏓᎴᏅ. ᎠᎵᏥᏙᎲᏍᎬᎩ ᎧᏃᎮᏍᎬᎩ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᏓᏕᏲᎲᏍᎬᎩ ᎧᏃᎮᏍᎬᎩ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎤᏍᏗᎤᏅ ᎾᏍᎦᎢᎲᎾ, ᎠᎴ ᎩᎶ ᏄᏅᏍᏓᏕᎲᎾ. ᎦᎸᎶᎢ ᎢᎦᎯᎨ ᏄᎵᏍᏔᏁ. ᎿᏛᎦ, ᏣᎵ ᎠᎬᏱ ᏱᏓᏩᏘᏍᎬᎾ. ᏧᏩᏍᏉᎸ ᏚᏩᏩᏙᎣᏎ ᎤᎧᏛ ᏃᎴ ᏭᏂᏴᎮ ᎦᎷᏯᏍᏗ ᏃᎴ ᎤᏁᎸᏔᏁ ᎤᎩᎡᏗ ᎤᏙᏓ. ᎡᏣᎵᎡᎵᏤᎲ ᎠᎦᏴᎵᎨᎢ ᎾᏍᎩ ᏰᎵᏉ ᎢᎦᏠᏯᏍᏙᏗ ᎢᎬᏩᎵᏍᏙᏗ ᎢᎬᏁᎸᎯ ᏥᎩ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎤᎾᏓᏅᏘ ᎢᎦ-ᎦᏛ ᎠᏁᎯ; ᎨᎦᏅᏔᏗᏍᏔᏁ ᎠᏂᏴᏫ ᎡᏘᏯ ᎤᏛᎾ ᏃᏈᏏ ᎤᏃᎯᎸᏍᏔᏅ, ᎠᎦᏗᏓ ᏱᎫᏩᎾᏅᏔ. ᏂᎯᎾᎲ! “ᏍᏈᏯ ᏗᎦᎷᏫᏍᏔᏁᏗ ᏂᎬᏁᎰ ᎤᎵᏍᏗ. ᎣᏍᏓ ᎠᏓᏓᏍᎩᏐᏗ ᎭᎾᎾ. ᎢᏳᏃ ᏁᏙᎢᏳᏅᎾ ᎢᎨᏎᏍᏗ ᎠᏎ ᏅᏩᏍᏗᏉ ᎦᎪᎯᏳᏗ ᎨᏒᎢ; ᎥᏝ ᎤᏩᏒ ᏴᎬᏓᏓᏱᎦ. ᏔᎵᏁᎢ ᎨᏒ, ᎨᏍᏗ ᏏᏆ ᏱᏗᏥᏍᏆᏂᎪᏍᎦ. ᎤᏲᏰᏃ ᎢᏳᎾᏛᎿᏕᎩ ᏂᎪᎯᎸ ᎨᏤᎳᏗᏙᎭ, ᎠᏴᏍᎩᏂ ᎥᏝ ᏂᎪᎯᎸ ᏱᏨᏰᎳᏗᏙᎭ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏑᏓᎴᎩ ᏓᏨᏯᏛᏛᏂ; ᎦᏙ ᏚᏳᎪᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ? ᎣᏍᏛᏍᎪ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ, ᎤᏲᎨ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ? ᎬᏅ ᎠᏍᏕᎸᏗᏱ, ᎠᏓᎯᏍᏗᏱᎨ? ᎢᏳᏃ ᎠᏴ ᎠᎩᎬᏫᏳᎯ ᎢᏣᏤᎵᎦ ᎠᎴ ᏗᏨᏰᏲᎲᏍᎩ ᏗᏣᎳᏏᏕᏂ ᏱᏗᏨᏲᏑᎴᎭ, ᎾᏍᏉᏍᎩᏂ ᎢᏨᏒ ᎢᏣᎳᏏᏕᏂ ᏱᏗᏣᏓᏙᏑᎴᎭ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᎧᏍᏆᏂᎪᏎᎴ ᎾᏍᎩ ᏄᏪᏒᎢ. ᎠᏎᏃ ᏥᏌ ᏔᎵᏁ ᎢᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᏥᏲᎵ. ᎾᏍᏓᏯ ᎾᏍᎩ ᎨᏅᎢᏍᏗ ᎨᏒ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏭᏂᏴᏍᏗᏱ. ”Ꭷ ᎾᎦᎸᎳᏗᏴ ᎭᎩᎶᏩ, ᎯᎠ ᎢᏳᏍᏗ.” ᎾᏍᎩ ᏤᏣᏟᏴᏏ, ᎤᎵᏂᎩᏛ ᎨᏎᏍᏗ ᎢᏦᎯᏳᏒᎢ, ᎢᏥᎦᏔᎭᏰᏃ ᎤᏠᏱ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᏂᎧᎵᎢᎲ ᎢᏣᎵᏅᏟ ᎡᎶᎯ ᏣᏁᎭ. ᏙᏓᏆᏓ ᏓᏂᎭᏲᎲ ᎤᎾᎵᏗᎩᏛ, ᎠᎹ ᏕᎨᏴ, ᏚᏙᎥ ᏍᏔᏯ ᎢᏗᎦᏪᏍᏗ ᏫᏥᎢᏍᏔᏯ ᏗᏍᏇᎵᏰᏗ, ᎤᏒᎯ ᏱᏄᎵᏍᏔᎾ ᎠᏧᏍᏛ ᎾᎥᏂ ᎤᏬᏠ ᏍᎦᏰᎬᏍᏔ ᏕᎪᏪᎵᏍᎪ ᎧᏃᎮᏍᎩ, ᏍᏓᏯ ᎠᏍᎩᎾᏗᏍᎪ ᎤᏄᎸᎲᏍᎬ ᏧᏍᏇᎵᏰᏗ ᏚᏙᎥ ᎠᎹ ᏕᎨᏴ. ᎾᎯᏳᏰᏃ ᏥᏨᏰᎳᏗᏙᎲᎩ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏛᎩ ᎢᏨᏁᏤᎸᎩ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ ᏄᏚᎵᏍᎬᎾ ᏱᎩ, ᏧᎸᏫᏍᏓᏁᏗᏱ ᎾᏍᏉ ᎤᎵᏍᏓᏴᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎾᏍᎩ ᎪᎯ ᎨᏒ ᎠᏥᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏩᎫᏗ ᎤᎶᏒᏍᏗ ᏓᏓᏁᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏧᏙ, ᎠᎴ ᏧᏥ, ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏕᎦᎶᎨᏒᎢ, ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᏔᎵ ᎤᏛᏗ; ᏐᎢᏱᏃ ᏗᎨᏒ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ. ᏓᎴᎲᎦ ᏏᏆ! ᏧᏒᎯᏓ ᏧᏓᏄᎸ ᎢᎦ ᎢᏳ ᎠᏳᎢᏂᏒ ᎠᎼ ᎡᏙ ᏥᏳ, ᏃᎴ ᏄᏓᎴ ᎤᏍᏓᏩᏛᏓ ᏥᏳ, ᎠᎼ ᎡᏉ ᎤᎵᏗᏣ ᏕᎦᏚᎲ ᎣᎩᎶᏒ, ᏃᎴ ᏄᏓᎴ ᏥᏳ, ᏬᎩᎷᎯᏍᏗ ᎾᎥ. ᎠᏎᏃ ᎢᏌᏯ ᏂᎦᎾᏰᏍᎬᎾ ᎯᎠ ᏂᎦᏪᎭ, ᎬᎩᏩᏛᎲᎩ ᎾᏍᎩ Ꮎ ᏂᎬᎩᏲᎸᎾ, ᎬᎩᏩᏛᎲᎩ ᎾᏍᎩ Ꮎ ᏂᎬᎩᏲᎸᎾ ᎨᏒᎢ; ᎬᏂᎨᏒ ᏂᎬᏋᏁᎸᎩ ᎠᏁᎲ ᎾᏍᎩ Ꮎ ᎾᎾᏛᏛᎲᏍᎬᎾ ᎨᏒ ᎨᎥᎢ. ᎾᏍᎩ ᎤᏗᏔᏍᏗ ᎨᏎᏍᏗ ᎨᎦᎨᎠᏗᏔᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏓᏑᏱ, ᎾᏍᎩ ᎠᎹ ᎾᏑᏴᎾ ᎦᏐᏅᏴᎯ ᏥᎩ, ᎾᏍᎩ ᎤᎿᎸᏒ ᎠᏩᏘᏍᎩ ᎤᎵᏍᏈᏗᎯ ᎠᏢᎯ ᏥᎩ; ᎠᎴ ᎾᏍᎩ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᎠᏥᎩᎵᏲᎢᏍᏙᏗ ᎨᏎᏍᏗ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᏂᎦᏔᎲᎢ, ᎠᎴ ᎤᏃᏕᎾ-ᎠᎩᎾ ᎠᎦᏔᎲᎢ; ᎣᏏᏳ ᏂᎨᏒᎾ. “ᎠᎵᎮᎵᎩ! ᎤᏰᎸᏗ “ᎤᏨᏉᏗ ᏱᎨᏒᎾ’ ᏃᎴ “ᎦᏙᎯ ᎾᎥᏂ, ᏍᎩᏗ ᏄᏍᏗ ᏫᎵᎻ.” ᏳᏂᏔᏕᎩᎠ ᎤᏂᏥ ᎠᏂᎩᏍᎨ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎪᎯ ᎨᏒ ᎤᏟ ᎢᎦᎸᏉᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏩᏛᎲ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏰᎵ ᎠᎴᎲᏍᎩ ᎨᏒ ᎤᏟ ᎢᏲᏍᏛ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎤᎬᏩᎸᎢ, ᎾᏍᎩ ᎤᏟ ᎢᏲᏍᏛ ᏓᏚᎢᏍᏛ ᏧᎵᏍᏓᏱᏍᏗ. ᎤᏲᏰᏃ ᏧᎸᏫᏍᏓᏁᎯ ᎠᏍᎦᎪ ᎢᎦᎦᏘ, ᎠᎴ ᎥᏝ ᏱᎦᎷᎪ ᎢᎦᎦᏛᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᏄᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎩᎶ ᎢᎦᎦᏛ ᎨᎠ ᏯᏗᎭ, ᏗᎾᏓᏅᏟᏃ ᏯᏍᎦᎦ, ᎤᎵᏏᎬᏉ ᎡᎭ ᎩᎳᎯᏳ. ᏦᎩᏗᏣ ᎠᏂᎴᏴᏍᎩ ᏗᏁᎲ, ᎪᏱᏅᏍᏗ ᏔᎷᎩᏍᎩ ᎠᎹ ᎤᏗᎴᎩ ᎠᏥᏍᏛ ᎤᏬᏱᏅᏍᏔᏁᎢ ᏲᎾ ᎤᏤᏍᏙ ᎤᏒᏍᏗ ᎢᏣ ᏃᎴ ᎤᏓᏬᎡ. ᏥᏌᏃ ᏔᎵᏁ ᎡᎯᏍᏗ ᎤᏓᏅᏖᏛ ᎠᏤᎵᏍᏛ ᎤᎷᏨᎩ. ᎤᏍᏓᎦᎸ ᎨᏒᎩ, ᎠᎴ ᏅᏯ ᎠᏍᏚᏛᎩ. ᏔᎳᏚᏃ ᎢᏳᏟᎶᏛ ᎤᎵᏰᎢᎶᎸ ᎤᎵᏏᎲᏎ ᏂᎬᎾᏛ ᎾᎿ ᎦᏙᎯ, ᏦᎢ ᎢᏳᏟᎶᏛ ᎢᏯᏍᏘ. ᏂᎯᏍᎩᏂ ᎢᏤᏯᏔᎮᏍᏗ; ᎬᏂᏳᏉ ᏂᎦᏛ ᏂᏨᏃᏁᎸ. ᏣᎵ ᏃᎴ ᏍᏗᏫ ᏚᏂᏁᏤᎴ ᎢᏴ ᏗᏗᏳᎾᎴᏗ. ᎠᎴ ᎾᏍᎩ ᏚᏙᎥ ᎪᎯᏳᏗ ᎨᏒ ᎤᏧᎵᏍᏙᏔᏅ ᎾᏍᎩ ᏚᏙᎢ ᎤᎵᏂᎪᎯᏍᏔᏅ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏤᏥᎪᏩᏘᎭ ᎠᎴ ᏤᏥᎦᏔᎭ; ᎥᎥ, ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎤᏤᎵᎦ ᎯᎠ ᎤᏃᏍᏛᏯ ᏄᏩᏁᎸ ᎢᏥᎦᏔᎲ ᏂᎦᏛ. ᎢᏳᏰᏃ ᎤᎾᏗᏫᏎᎸᎯ ᏱᎩ ᎦᏓᎭ ᎨᏒ ᎡᎶᎯ ᎡᎯ, ᎠᏅᏗᏍᎬ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ, ᏔᎵᏁᏃ ᏱᏅᏁᏒ ᎾᎿᏂ ᎠᎴ ᏱᎨᏥᏎᎪᎩᏒ, ᎤᎵᏍᏆᎸᏗ ᏄᎾᎵᏍᏓᏁᎸ ᎤᏟ ᎤᏲᎢᏳ ᎡᏍᎦᏉ ᎢᎬᏱᏱ. ᏑᏓᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎩᎶᏃ ᎧᏁᎬ ᎠᏆᏛᎦᏅᎩ ᏛᏓᎴᎲᏍᎬᎩ ᏅᎩ ᏂᏕᎤᎷᎬ ᎠᏕᎸᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏥᎦᎧᎭ, ᏃᎴ ᎣᏍᏓ ᎠᏗᏔᏍᏗ! ᎠᎹ ᎤᏁᎩᏒᏎ ᏣᏄᏏ. ᎠᏎᏃ ᎣᏍᏓ ᏄᏍᏗᏓᏅ ᏭᏂᎶᎯᏍᏗ, ᏏᏅᏓ ᎢᎪᎯᏓ ᏚᏟᏰᎵᏙᎴ ᏭᏂᎷᎯᏍᏗ, ᎩᎳ ᏗᎨᎦᏨᏍᏔᏅ ᎣᏍᏓ ᎤᏂᏰᎸᏁ ᏚᏂᏂᏗ ᎦᎸ ᏄᏍᏗᏓᏅ ᏃᎴ ᎤᎵᎪᎲᏍᏗ ᏧᏆᎶᎦ ᏚᎵᏑᏫᏒ ᏓᏓᏍᏕᏓᎵᏴᏍᎬ, ᏓᏂᏐᏍᎬ ᏔᎾᏏ ᏃᎴ Arkansas ᏚᏅᏓᏒ. Ꮎ ᎠᏰᏟ ᎦᏙᎬ. ᎤᏔᎾᏃ ᎤᏓᏍᏕᏎᎢ. ᎪᏙᏃ ᎬᏙᏗ ᏗᎧᎿᏩᏛᏍᏗ? ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏫᎫᏓᏔᏅᎯ ᎨᏎᎢ, ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎠᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗ ᎨᏒ ᎬᏗᏍᎩ; [ᎠᎴ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ] ᏗᏂᎧᎿᏩᏗᏙᎯ ᎣᏍᏛ ᏄᏅᎿᏕᎨ ᎾᏍᎩ ᏧᏒᎦᎴ ᎠᏰᎵ ᏁᎴᏁᎯ. ᎩᏁᏤᎮᏍᏗ ᏧᏁᎿᎢ ᏥᎩ ᎠᏂ ᎡᎶᎯ ᎾᏍᎩ ᎤᎾᏢᏉᏗ ᏱᏉ ᏂᎨᏒᎾ, ᎠᎴ ᎤᎾᎵᏍᎦᏍᏙᏙᏗᏱ ᏂᎨᏒᎾ ᎤᏓᎵᏓᏍᏗ ᎨᏅᎢᏍᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏂᏛ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏣᏘ ᎢᎩᏁᎯ ᏥᎩ ᎾᎦᎥ ᏄᏓᎴᏒ ᎣᏍᏛ ᎢᎦᎵᏍᏓᏁᏗ. ᎾᏍᎩ ᎤᏕᎵᏛ ᎬᏍᎦᎳᏅᎯ ᏥᎨᏒᎩ ᎡᏘ ᏥᎨᏒ ᎠᎴ ᎤᎾᏓᏁᏟᏴᏒᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎠᏎᏃ ᎪᎯ ᏥᎩ ᎬᏂᎨᏒ ᏥᏂᎨᎬᏁᎸ ᎤᎾᏓᏅᏘ ᏧᏤᎵᎦ; ᏒᎧᏔ ᎤᏂᏥᎸᏍᏗ ᎤᏍᏆᎸᎮ, ᏓᎦᎾᏬᏍᎨ ᎢᎦ. ᎢᏓᏕᎲᏍᎪᎢ, ᏎᎦ ᎢᏕᎰᎢ, ᏕᏗᎵᏬᎪ. ᏇᏍᏓᏃ ᎯᎠ ᏄᏪᏒᎩ; Ꮳ-ᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎢᏥᏍᎦᏯ ᎠᏂ ᏥᏗᎾ; ᎡᏥᎪᏩᏗᎭ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᎩ; ᎡᏄᎯᏍᏗᏍᎬ ᏂᎦᏛ ᎤᏂᏣᏘ ᎠᏂᏧᏏ ᏥᎬᎩᎷᏤᎸᎩ ᏥᎷᏏᎵᎻ, ᎠᎴ ᎾᏍᏉ ᎠᏂ, ᎯᎠ ᏥᎾᏂᏪᏍᎬᎩ; ᎥᏝ ᎣᏏᏳ ᏱᎦᎩ ᎠᏏᏉ ᏱᎬᏅ. ᏚᏃᏴᎨ ᎠᏓᏅᏍᎬ ᎾᏍᎩᏯ ᎦᏓᏆᏟ-ᎤᏲᏨ ᏓᏛᏂᏍᏗᏍᎬ. ᎣᏍᏓ ᎠᏗᏍᎦᎶᏗ ᏂᏚᏍᏕ ᎭᎾᎾ - ᎣᏍᏓ ᎤᏚᏒᏗ ᏥᏍᏕᏥ. ᎠᏂᏆᎵᏏᏃ ᎠᎴ ᎠᏂᏌᏚᏏ ᎤᏂᎷᏨᎩ, ᎬᏩᎪᎵᏰᏍᎬᏃ ᎬᏩᏔᏲᏎᎸᎩ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ. ᏥᏌᏃ ᎾᏍᎩ ᎯᎠ ᎤᏛᎦᏅ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏏ ᏑᏓᎴᎩ ᏣᎷᎳ; ᎯᎾᏚᎦ ᏂᎦᏛ ᏣᎾᎥᎢ, ᎠᎴ ᏘᏯᏙᎯᏏ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎦᎸᎳᏗᏃ ᏫᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᏖᏒᏃ ᏍᎩᏍᏓᏩᏕᏒᎭ. ᎥᏝ ᎪᎱᏍᏗ ᎤᏟ ᎢᎦᎢ ᎠᏆᎵᎮᎵᏍᏗ ᏍᎩᏯ ᏱᎩ ᏂᎦᎥ ᎠᏆᎵᎮᎵᏍᏗᎬ ᎦᏛᎬᎦ ᏗᏇᏥ ᏚᏳᎪᏛ ᎨᏒ ᎠᏁᏙᎲᎢ. ᏍᎩᏴ ᎠᏓᎴᏂᏍᎩ, ᎠᏥᎨᏳ ᎠᏃᏎᎮᎢ - ᎠᏍᎦᎡ ᏂᎨᏒ ᏗᎵᎯ ᎭᎾ ᎦᏚᎲ ᎡᎯ. ᎭᏂ ᎬᎩᏂᎬᎦ. ᏗᏂᎦᏙᎵ ᏫᏗᎨᎦᎵᏏᎲᏍᏓᏏ, ᎾᏍᎩ ᎤᏂᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᏂᎪᎯᎸ ᏚᎾᏗᏌᏓᏕᎨᏍᏗ. ᎠᎴ ᎤᎬᏫᏳᎯ ᏧᏎᎮᏗ ᎨᏎᏍᏗ ᏗᏥᎾᏫ ᎡᏥᎨᏳᎢ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏗᏒᏂᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎦᎶᏁᏛ ᎾᏍᎩᏯᎢ. ᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᏱᏏ ᏧᏁᏤ ᎪᏪᎵ ᎦᏅᏁᏗᏱ ᏗᎦᎴᏅᏙᏗ, ᎠᎴ ᎠᎨᎯᏓᏍᏗᏱ? ᎤᏍᏗ ᎦᏚᎲ ᏩᏯ ᏧᏙᎢᏓ. ”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᏚᏁᏤᎴᏃ ᎤᎾᏂᏢᏗᏱ ᏂᎦᏛᎢᏤᎧᏁᏍᎪᎯ ᎨᏒ ᏧᎾᏓᏡᏅᏛ. ᎬᏩᏛᏛᏅᎩᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᏥᏕᎭᏓᏬᏍᎦ, ᎢᏳᏃ ᏂᎯ ᎾᏍᎩ ᎾᎦᎶᏁᏛ ᎠᎴ ᎢᎳᏯ ᎠᎴ ᎾᏍᎩ ᎾᎠᏙᎴᎰᏍᎩ ᏂᎨᏒᎾ ᏱᎩ? ᎠᎾᏓᏁᎸᏍᎨᏍᏗ ᎤᏅᏒ ᎤᎾᏤᎵᎦ ᎣᏍᏛ ᎦᎫᏍᏛᏗ ᎠᏏ ᎾᏍᏆᎵᏍᎬᎾ ᎾᎯᏳ ᎤᏍᏆᎸᏗ ᏥᎩ, ᎾᏍᎩ ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᏗᎬᏩᏂᏂᏴᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎿᏉ ᎥᏝ ᎢᎸᎯᏳ ᎬᏂᎨᏒ ᏱᏚᏪᎳᏗᏙᎴ ᎠᏂᏧᏏ; ᎾᎿᏍᎩᏂ ᎤᏂᎩᏒᎩ, ᎢᎾᎨ ᎾᎥ ᏭᎶᏅᎩ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ. ᎾᏍᎩ ᎤᏙᎯᏳᏒ ᎤᏁᎳᏅᎯ ᎤᏃᎮᏍᎩ ᎤᏂᏁᏟᏴᏍᏔᏁ ᎦᏰᎪᎩ ᎨᏒᎢ, ᎠᎴ ᎤᏟ ᎢᎦᎢ ᎤᎾᏓᏙᎵᏍᏓᏁᎴ ᎠᎴ ᎪᎱᏍᏗ ᎤᎾᏛᏁᎴ ᎠᎪᏢᏅᎯᏉ ᎨᏒ ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏬᏢᏅᎯ, ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᏥᎩ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ. “ᎰᎵᏍᎦᏍᎪᏃ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ. ᎤᏒᎮᏱᏣ ᏄᎵᏍᏔᏁᎢ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏃᎴ ᎤᏩᏙᎯᏴᏓ ᏄᏍᏕ. ᎾᏉᏃ ᏉᎳ ᎠᎴ ᏆᏂᏆ ᎧᏁᏉᎨ ᎾᏂᏍᎦᎢᎲᎾ ᎨᏒᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏂᎯ ᎢᎬᏱ ᎠᏎ ᎡᏥᏃᎮᎮᏗ ᎨᏒᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ; ᎠᏎᏃ ᎢᏢᏉ ᏥᏂᏨᏁᎭ ᎠᎴ ᎢᏨᏒ ᎢᏣᏓᏅᏖᏍᎬ ᏰᎵ ᎦᏰᏥᏁᏗ ᏂᎨᏒᎾ ᏥᏥᏰᎸ ᎬᏂᏛ, ᎬᏂᏳᏉ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᏬᏍᏓᎦᏔᎲᏍᏓ. ᎠᏰᎵᏉ ᎢᏴ ᏗᎪᏩᏛᏗ ᏗᎦᏓᏁ ᏕᏧᎬ, ᎠᏍᎧᏅᎢ ᎢᏣ ᎦᎾᎱᎩᏍᎬ ᎨᏴ. “ᏥᏳ ᎦᏣᏄᎳ ᎦᏃᎯᎵᏙ ᏓᏥᏰᎴᏏ ᏃᎴ ᏄᏓᎴ ᏓᏥᏴᏂᎵ” ᎠᏴᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏳᏩᏂᏌᏛ ᎠᎩᏲᎱᏒᎯᏉ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎠᏆᎴᏂᏓᏍᏗᏱ. ᎢᏳᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏱᏂᎬᏁᎭ ᏱᎦᏄᏬᎭ ᎧᏁᏍᎦ ᏠᎨᏏ ᎡᎯ, ᎪᎯ ᎢᎦ ᏤᎭ, ᎤᎩᏨᏅᏃ ᏗᎦᏚᏗᏱ ᏭᎾᏗᏅᏗ ᏥᎩ, ᏝᏍᎪ ᎤᏟᎯᏳ ᏱᏂᏙᎨᏥᏄᏬᏣ, ᎤᏍᏗ ᎢᏦᎯᏳᎯ? ᏤᏍᏗ ᏱᏣᎴᏃᎴᏍᏗ! ᏍᏈᏍᏔ ᏗᏒᏅ ᎪᏪᎵ ᏃᎴ ᏍᏈᏍᏔ ᏗᎭᎾᏬ ᏗᏴᏈᏛᏅ ᏚᎸᏔᏁ ᎧᏁᏌᎢ. ᎾᏍᎩᏰᏃ ᏄᏍᏛ ᏱᎩ, ᎿᏉ ᎭᎵᎮᎵᏨ ᏣᏓᏅᏙ ᎲᏔᏅᎭ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ Ꮎ ᎾᎦᏔᎾᎥᎾ ᎤᏪᏗᏱ ᏳᏬᎳ, ᏰᎵ ᎡᎺᏅ ᏯᏛ ᎭᎵᎮᎵᎩ? ᏂᎪᎵᎬᎾᏰᏃ ᏱᎩ ᏂᏪᏍᎬᎢ. ᎩᎶᎨ ᎤᎾᎵᎪ? ᎾᏍᎩᏃ ᎯᎠ ᏄᎾᏍᏛᎩ ᎥᎦᏥᎪᎥᎩ ᏐᏈᎵ ᎠᏆᏁᎳᏫᏎᎲᎢ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏧᎾᎩᎵ, ᏮᎾᏓᏁᏣᏍᏚᎸᎩ ᎠᏥᎸ ᎠᎴ ᏅᏯ ᏤᏏᏂ ᏧᏐᎢᏛ, ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᏗᎪᏢᏔᏅᎯ. ᏗᏂᏍᎪᎵᏃ ᏐᏈᎵ ᎠᏓᏥ ᎤᏂᏃᏕᏅ ᏥᏓᏂᏍᎫᏓᏛ ᎾᏍᎩᏯ ᎨᏒᎩ; ᏗᏂᎰᎵᏃ ᏓᎦᏄᎪᎬᎩ ᎠᏥᎸ ᎠᎴ ᏧᎦᏒᏍᏗ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ. ᎾᏍᎩ ᎾᏍᏉ ᏥᏅᏗᎦᎵᏍᏙᏗ ᎡᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎩ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ, ᎡᎦᏑᏰᏛ ᏥᎩ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏓᏅᏖᎸᎢ, ᎾᏍᎩ Ꮎ ᏥᏑᎸᏫᏍᏓᏁᎭ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎾᏍᎩᏯ ᎤᏩᏒ ᎤᏓᏅᏛ ᏚᏭᎪᏔᏂᎸᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂᏃᏅ ᏗᎦᎵᏍᏓᏗᏍᎩ ᎤᏪᎵᎯᏍᏗ ᎤᎾᏓᏅᏔᏩᏕᎩ, ᎣᎩᎦᎵᏍᏓᏗᏍᏔᏅᎩ ᏓᏓᏏ ᎤᎷᏨᎢ; ᎾᎯᏳᏍᎩᏂ ᎨᏎᏍᏗ, ᎤᎶᏐᏁᏍᏗ ᎾᏍᎩ ᎠᎩᎵᏯ, ᏅᏙ ᎢᎦ ᎡᎯ ᏛᎵᏏᎲᏏ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎥᏝ ᎢᎦ ᏳᏖᏍᏕᏗ; ᎫᎾᏓᎴᎩ ᎤᏩᏌ ᎤᏕᎶᎰᏒ ᎠᏍᏆᏗᏍᏗ ᏱᎦᏌᏙᎭᏴ, ᎠᏎᏃ ᏚᎾᏓᏲᏎ ᎤᎾᏓᏓᏍᎬ. ᎥᏝ ᎩᎶ ᏰᎵ ᏴᎬᎩᎷᏥᏏ, ᎬᏂ ᎠᎦᏴᎵᎨᎢ ᏅᏛᎩᏅᏏᏛ ᎤᏎᏒᏛ ᏱᎩ; ᎠᎴ ᎠᏴ ᎾᏍᎩ ᏙᏓᏥᏯᎴᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎥᏥᎪᎥᎩ ᎦᎸᎳᏗ ᏓᏳᏠᎠᏒᎩ, ᎦᏁᎲᎩ ᎠᏍᏚᎢᏍᏗ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒᎢ, ᎠᎴ ᎤᏣᏘ ᎡᏆ ᏧᏓᏕᏒᏛ ᎤᏒᎦᎸᎩ. ᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᎠᏂᏴᏫᏯ ᏩᏂᎷᏨ, ᎠᎦᏘᏰᏍᏗ ᎤᏪᏅᎢᏍᏗ ᎠᏂᏐ ᎤᏁᎾᎢ ᎠᏂᏴᏫᏯ ᏄᎾᏍᏛ. ᎯᎠ ᎾᏍᎩ ᎾᏆᏛᏁᎸ ᏱᎰᏩ ᎾᎯᏳ ᎢᎦ ᏕᎠᏆᎧᎿᏅ, ᎠᎩᎲᎡᏗᏱ ᎤᏕᎰᎯᏍᏗ ᎥᏆᏓᏅᏖᏗᏱ ᏴᏫ ᎠᏁᎲᎢ. ”ᎨᏍᏗ ᏍᎩᎾᎾ ᎢᎦᏛᏁ ᏱᎩ, ᎬᎩᏅᏗᏍᏙᏗ ᏱᎩ,” ᎤᏛᏁ ᏥᏍᏕᏥ, ”ᎣᎯᏍᏙᏗ ᎠᎩᏰᎸᎰ ᎠᏆᎵᏍᏓᏴᏗ, ᎤᏕᎳᏓ ᏗᎦᎦᏙᏍᏙᏗ ᏃᎴ ᎠᏆᏗᏍᎦᎶᏗ. ᎠᏎᏃ ᎥᏝ ᎢᎬᏱ ᏱᎨᏎ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ ᏥᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏇᏓᎵ ᏥᎩ; ᎣᏂᏃ ᎢᏴᏛ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ ᏥᎩ. ᏚᎴᏅᏃ ᎤᏄᎪᏤ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏌᏩᏂᏃ ᎦᏁᎸ ᏭᏴᎴᎢ ᏌᏩᏂᏃ ᎤᏓᎵᎢ ᎤᏥ ᎤᏣᏘ ᎤᏗᎴᎲᏍᎨᎢ; ᎬᏩᏔᏲᏎᎴᏃ ᎤᏍᏕᎸᏗᏱ. ᏥᏌᏃ ᎤᎷᏤ ᏚᏒᏂᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏗᏣᎴᎲᎦ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎩᎶ ᎠᏍᎦᏯ ᎤᎦᏔ ᏳᏫᏒ ᎦᏙᎯ; ”ᎡᏝᏪᎯ, ᏫᎵᎻ!” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏛᎦᏍᏕ ᎤᏲ ᎠᏂᏃᎮᏍᎬ. ᎠᎬᏱ ᎪᎨ ᎤᎵᎮᎵᏍᏗ ᏄᎾᎵᏍᏔᏁᎰ ᏥᏍᏆ. ᎤᏟᏍᏓ ᏚᎴᏁ ᏫᎵᎻ, ᎧᏁᏍᎬ ᏗᎦᏟᎮ. ᎤᏅᏏᏙᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏅᏏᏓᏍᏗ, ᎯᏄᎪᎢ ᏕᎦᏅᎿᏩᏗᏒ ᎠᎴ ᏓᏐᏴᎢ ᏫᎶᎯ, ᎠᎴ ᎠᏎ ᎤᏂᏴᏍᏗᏱ ᏂᎩᏴᏁᎸᎭ ᎾᏍᎩ ᎤᎧᎵᎢᏍᏗᏱ ᏥᏁᎸᎢ. ᎠᏂᎪᏩᏗᏍᎬᏰᏃ ᎢᏳᏍᏗ ᎾᏍᎩ ᎯᎠ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏛᏂᎸᏉᏔᏂ ᏂᎦᎵᏍᏙᏍᎨᏍᏗ ᎬᏂᎨᏒ ᏂᏨᏁᎲ ᎢᏦᎯᏳᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎠᎴ ᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏂᏥᎨᏳᎿᎥᎾ ᎨᏒ ᏕᏥᏁᎲ ᎾᏍᎩ, ᎠᎴ ᎾᏂᎥᏉ; ᎪᎩ ᎨᏒ, ᎠᎦᏗᏛ ᏚᎭᏄᏮ ᏗᏴᎦᎴᏴᏓ, ᎾᏍᎩᏯ ᎤᏍᏗ ᎤᎵᏍᎨᏛ ᏱᎦᎳᎩᏒ ᎠᏍᏆᏂᎪᏛ, ᏧᏬᏚ ᎧᏁᏌ ᏃᎴ ᎭᎦᎶᏗ. ᎠᏎᎩ ᏔᎵᏁ ᎯᏣᏚᎵᏍᎨᏍᏗ ᎠᏕᎳ ᎡᏣᏈᏴᎡᏗ ᏕᏣᏄᏫᏍᏔᏁᎸ? ᎤᏛᏅ. ᏑᏓᎵ ᏧᏙᏓᏆᏓ ᏑᎾᏙᏓᏆᏍᏗ, ᏯᎦᎵᏍᎬᎾᏉ ᎠᏗᏛᏗ, ᏚᏑᎬ ᏗᎭᏯᎸᏍᏗ ᏴᏫ, ᏂᎦᎥ ᎤᏂᎾᎥ ᏗᎩᎡᏗ, ᏗᏗᏦᎭᏴ ᎢᏣ ᏗᏰᎸᏍᏗ. ᏌᎳᏓ ᏓᏏᎳᏛᎥᏍᎨ. ᎤᎾᏂᏢᏁᏃ ᎣᏍᏛ ᏚᎾᏓᏅᎿᏁᎢ ᎠᏍᎪᎯᏧᏈ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᎾᏓᏡᏅᏛ. ᎾᏍᎩᏯ ᏅᏧᏓᎴᏅᎲᎾ ᎤᏓᏅᏖᎸᎢ, ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏣᎬᏗᏍᎨ ᏧᏓᏅᏖᎴᎢ; ᏓᎩᏯᏪᏥᏙᎸ ᎠᎴ ᎡᎯᏍᏗ ᎾᎿᎵᏍᏓᏁᎸᎢ; ᏯᏃᎩᏳ ᏂᏥᎸᏍᎬᎾ ᎨᏒᎢ; ᎠᎪᏄ ᎠᎩᏲᏏᏍᎬᎢ ᎠᎴ ᎠᎩᏔᏕᎩᏍᎬᎢ; ᏯᏃᎩᏳ ᎠᎹᏟ ᎬᏍᎬᎢ; ᎤᏴᏢ ᎠᎴ ᎠᎩᏰᎸᎭ ᎨᏒᎢ. ”ᏏᏆ ᎤᏅᎪᏨ! ᏖᎸᎳᏗ-ᎦᏨᏩᏍᏙᏗᏱ ᎦᏚᎲ ᏙᏱᏗᏢ ᎤᎾᎳᏍᏓᎡᎸᎩ, ᎩᎬᏃ ᏓᏳᏨᏨᎩ ᏖᎸᎳᏗ-ᎦᏨᏩᏍᏙᏗᏱ, ᎠᎴ ᏐᏈᎵ ᏚᎾᏔᎾᎸ ᎢᏴᏛ ᏂᏚᏂᎶᏨᎩ, ᎾᏍᎩ ᏔᎵᏧᏈ ᎢᏳᏟᎶᏛ ᎢᎬᎾᏕᏅ. ᎠᎴ ᏚᏂᏂᏴᎮ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏚᏂᏴᏔᏁᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏂᏯᏙᎯᎯ ᎨᏥᎸᏉᏗ ᎨᏎᏍᏗ, ᎥᏞᏍᏗ ᏧᏓᎴᏅᏛ ᎢᏯᏂᏪᏍᎩ ᏱᎨᏎᏍᏗ, ᎠᎴ ᎥᏞᏍᏗ ᏱᎦᎨᎠᏗᏔᏍᏗ ᎤᏂᎦᎾᏏᏍᎩ ᏱᎨᏎᏍᏗ, ᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎤᏂᎬᎥᏍᎩ ᏱᎨᏎᏍᏗ; ᎡᎳᏗᏣ! ᏥᏛᏦᏱᎵᏐ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁ ᎤᎧᏛ. ᎧᏃᎮᏛᏰᏃ ᏗᏠᎯᏍᏔᏅᎯ ᏥᎨᏐᎢ, ᎠᏎ ᎠᎯᏍᏗ ᎨᏐ ᎠᏍᏓᏱᏗᏍᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ. ᎠᏎᏃ ᎿᏉ ᏗᎹᏗ ᎣᎩᎷᏤᎸᎯ ᏥᎩ, ᏗᏤᎲ ᏅᏓᏳᎶᏒᎯ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎣᎩᏃᎮᎮᎸᎯ ᏥᎩ, ᏗᏤᎲ ᏅᏓᏳᎶᏒᎩ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎣᎩᏃᎮᎮᎸᎯ ᏥᎩ, ᎢᏦᎯᏳᏒ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏤᎲ ᎤᎬᏩᎵ, ᎠᎴ ᏂᎪᎯᎸ ᎣᏏᏳ ᏍᎩᏯᏅᏛᎢ, ᎤᏣᏘ ᎢᏣᏚᎵᏍᎬ ᏍᎩᎪᏩᏛᏗᏱ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎣᎦᏚᎵᏍᎬ ᎢᏨᎪᏩᏛᏗᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏙᎡᏥᎩᏏᏉ ᏌᏉ ᎢᏯᎦᏴᎵ ᎠᏕᎸ, ᎠᏍᎪᎯᏃ ᎢᏯᎦᏴᎵ ᏧᎯ ᏤᏥᎥᏏ. ᏗᎨᏥᎢᏍᏗᏗ ᎤᏂᏍᎦᏅᏨ. ᎠᎴ ᏚᏂᏍᏗᏰᎬᎩ ᎠᏂᎨᏴ ᏥᏚᏂᏍᏗᏰᎦ ᎾᏍᎩᏯᎢ, ᎠᎴ ᏓᏂᏄᏙᎬ ᏢᏓᏥ ᎤᏂᏃᏕᎾ ᏥᏓᏂᏄᏙᎦ ᎾᏍᎩᏯ ᎨᏒᎩ. ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎤᏟᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥᎢ. ᎡᎶᎯ ᎤᎾᏄᎪᏨᎯ ᎡᎶᎯᏉ ᎡᎯ ᎨᏐᎢ, ᎠᎴ ᎦᏬᏂᏍᎬ ᎡᎶᎯᏉ ᎡᎯ ᎨᏐᎢ, ᎦᎸᎳᏗᏍᎩᏂ ᏅᏓᏳᎶᏒᎯ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥᎢ. ᎩᎶᏰᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᎾᏍᎩ ᎤᏪᏥ ᎠᏛᏄᏣ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎢ, ᎤᏛᎦᏅ ᎠᏥᏃᎮᏍᎬᎢ, ᎤᎷᏤ ᎠᎴ ᏚᎳᏍᎬ ᎤᏓᏅᏁᎢ: ᏂᎦᎥᏉᏍᎪ ᎢᏥᏁᎫ? ᎠᏓᏅᏙ ᎬᏗ ᏥᏣᎴᏅᎲ, ᎤᏇᏓᎵᏍᎪ ᎬᏗ ᎢᏥᏍᏆᏗᎭ? ᎩᏲᎵᎸᎭ ᏈᏍᎦ ᎠᎴ ᎡᏈᎳ, ᎠᎴ ᎣᏁᏏᏉᎳ ᏚᏓᏘᏅᎥᎢ. ᎤᏟ ᎣᏏᏳ ᎭᏫᏯ ᎠᎩᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏗᏔᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏛᏁᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏗᏍᏓᏓᏅᏟ ᏧᏬᏕᏍᏗᏍᎩ, ᎠᎴ ᎤᏍᏢᏂᏍᏗᏍᎩ, ᎠᎴ ᎠᏩᎾᎦᎳ ᎢᏳᏩᏁᎯ. ᎢᎦ ᎠᎾᎢᏒ, ᎠᏧᏣ ᏩᏏᏓᏂ ᏚᏲᎸ ᏘᎵ ᏕᏧᎬ ᎤᎾᎩᎸ ᏌᎶᎵ ᏚᏇᏍᏘ ᎬᏘ, ᎦᎸᎳᏗᎨ ᎨᏒ ᏚᏇᏍᏘ ᎠᏍᎦᏉ ᎠᏧᏣ. ᎧᏃᎮᏛᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏁᏉᎨᎢ, ᎾᏂᎥᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏣᏘ ᎠᏂᏁᏉᎨ ᏥᎷᏏᎵᎻ, ᎤᏂᏣᏘᏃ ᎠᏥᎸᎠᏁᎶᎯ ᎤᏃᎯᏳᏁ ᎪᎯᏳᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎾᎿ ᎠᏂᏁᎳ ᎤᏩᏙᎯᏯᏛ ᏗᎬᏩᎾᏓᏂᎸᎢᏍᏗ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏩᏙᎯᏯᏛ ᎢᏣᏤᎵ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏗᎬᏩᎾᏓᏂᎸᎢᏍᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏒᏉ ᎢᏥᎷᏤᏗ ᎢᎨᏎᏍᏗ. ᎣᎯᏍᏙᏗ ᎦᏓᏅᏖᏍᎪ ᎠᏋᏌ ᏱᎩ.” ᎠᏂᏯᏫᏍᎩᏃ ᏧᏂᎯᏍᏗᏱ ᎤᎾᏓᏅᏖᎸᎩ ᎠᏂᏴᎩ; ᎩᎶᏰᏃ ᏯᏴᎢᏄᎦ ᏯᏚᎩ ᎠᎴ ᏯᎵᏗ ᎠᏁᎵᏍᎬᎩ. ᎤᏛᏛᏅ ᎠᏌᎻᏓ. ᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏓᏅᏘ ᏱᏂᏥᏪᏎᎰ ᏥᏍᏕᏥ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏅᏓᏓᏛᏁᎵ ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᏱᎦᎵᏍᎪᎸᏓᏁᎸ. ᎠᎴ ᎤᏚᎵᏍᎨ ᏧᏪᏰᏍᏗᏱ ᎧᎵᏎᏥ ᎤᎾᏓᏛᏅᎯ ᏏᏆ ᎤᎾᎵᏍᏓᏴᏗ, ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏱᏚᏅᏁᎮᎢ. ᎦᏙᏃ ᎠᏴ ᎢᏍᏆᏛᏛᎲᏍᎦ? ᎾᏍᎩ Ꮎ ᏔᏛᏛᎲᎦ ᎤᎾᏛᎦᏅᎯ ᎾᏍᎩ ᏂᎦᏥᏪᏎᎸᎢ. ᎬᏂᏳᏉ ᎠᏂᎦᏔᎭ ᎾᎩᏪᏒᎢ. ᎩᎶᏃ ᎬᏅ ᎢᎠᏩᏘᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎢᎤᏲᎱᏎᎮᏍᏗ ᎬᏅ ᎠᏴ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏩᏛᏗ ᎨᏎᏍᏗ. ᎯᎠᏃ ᎢᎾᏓ ᏧᎪᎳ, ᏰᎵ ᎢᏯᏅᏓ ᎤᎵᏬᏨ. ᎠᎴ ᎾᎿ ᎬᏩᏚᏫᏛ ᎤᏁᏙᎴᎢ, ᎠᎴ ᏧᏂᏢᎩ ᏚᏂᏂᏙᎴ ᏗᏤᏍᏙᎩᎯ ᏚᏂᏢᏕ, ᏫᏓᏂᏃᎯᎮ ᎠᎾᏛᎬᎦ ᎾᎿ ᎡᏙᎲᎢ. ᎤᏅᏍᎦᎸᏁ ᏫᎵᎻ ᎦᏂᏓᏛ ᏃᎴ ᎾᏍᏓᏴ ᏭᏍᎦᎳᏤ. ᎠᏏᏃ ᏙᎤᏂᏍᎦᏨ, ᏚᏂᎧᏁᎢ, ᎤᎾᏠᏤ ᎪᎱᏍᏗ ᎬᏩᏂᏍᏛᏗᏍᏗ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᏣᏘ ᏴᏫ, ᏂᎦᏛᏰᏃ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ. ᎤᏓᎴᏨ ᏄᎵᏍᏔᏁ ᎤᎧᏛ ᎡᎶᏗ. ᎢᏝᏃ ᎼᏏ ᏥᏄᏛᏁᎴ [ᏱᏃᏣᏛᏁᎭ] ᏧᎵᎬᏚᎳᏁ ᎾᏍᎩ ᎢᏗᎵ ᏧᏪᏥ ᏫᏗᎬᏩᎾᎧᏃᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏩᏍᏛ ᎾᏍᎩ Ꮎ ᎠᎲᏛ ᏥᎩ. ᎠᏃᎯᏍᏗᏍᎩᏂ ᎠᏃᎯᏍᏗᏍᎬᎢ ᎠᏂᏫᏍᎪ ᏚᏳᎪᏛ ᎤᎾᏄᎪᏫᏍᏗ ᎨᏒᎢ. “ᎦᏨ ᏧᏍᏆᏴᏍᏗ?” ᎤᏛᏁ ᎬᏣᏗ. ᎠᏎᏃ ᎠᏂᏧᏏ, ᎤᏂᏣᏘ ᏚᏂᎪᎲ, ᎤᏂᎧᎵᏤ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎠᎾᏡᏗᏍᎨ ᏉᎳ ᏂᎦᏪᏍᎬ ᎦᏬᏂᏍᎬᎢ, ᎤᏂᎪᏁᎶᏍᎨᎢ ᎠᎴ ᎠᏂᏐᏢᎢᏍᏗᏍᎨᎢ. ᎪᎵᎦᏓᏃ ᏚᏙᎥ ᏫᎬᏩᏘᏅᏔᏁᎢ, ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎨᏒ ᎤᏍᏆᎷᎪ ᎦᏛᎦ. ᎤᏔᎾ ᎩᎦᎨ ᏒᎦᏔ ᏂᏨᏅᏓ, ᎤᏓᏙᏎᎴᎢ. ᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎴ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᏖᎸᎳᏗ ᏚᏫᏒᎢ, ᎬᏂᏳᏉ, ᎿᏉ ᏦᎢ ᎾᏕᏘᏴ ᏥᎷᎬᎩ ᎠᎩᏲᎲᎩ ᎤᏓ-ᏔᏅᎯ ᎯᎠ ᎾᏍᎩ ᎡᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ, ᎠᎴ ᎥᏝ ᏱᏥᏩᏘᎭ; ᎯᎴᏴᏍᏓ; ᎦᏙᏃ ᎢᎤᎨᏗ ᎦᏙᎯ? ᎪᎨᏱ ᏏᏆ ᎠᏃᏎᎮ ᏫᎵᎻ ᏗᏂᎶᎩᏍᎩ. ᏂᎦᎵᏍᏙᏗ ᎪᎨᏱ ᎤᏕᏅ. ᎦᏙᎯᏃ ᎤᏍᏕᎸᎲᎩ ᎠᎨᏴ, ᎠᎴ ᎦᏙᎯ ᎤᏍᏚᎢᏒᎩ ᎠᎰᎵ ᎠᎴ ᎤᎩᏐᏅᎩ ᎦᏃᎱᎩᏍᎬ ᎾᏍᎩ ᎢᎾᏛ ᎠᎰᎵ ᏅᏓᏳᏄᎪᏫᏒᎯ. ᎣᏍᏓ ᏍᎦᏥ ᏫᏍᎩ ᎠᏥᏍᏛ ᏥᏰᎲ, ᎤᎵᎮᎵᏍᏛ, ᎢᎾᏗᏛ ᏥᏲᏎᎸ. “ᏣᏏ ᏯᏕᏠᏆᏍᎦ.” ᎤᎵᎮᎵᏍᏗ ᎢᎦ ᏄᎵᏍᏔᏁᎴ ᏫᎵᎻ. ᎠᎴ ᎾᏍᏉ ᎤᎾᎦᏌᏯᏍᏗᏕᎩ ᎤᏚᎩ ᎨᏒᏐ ᏚᏳᎪᏛ ᎢᏳᎾᏛᏁᏗᏱ. ᎠᏥᎾᏝᎢᏃ ᎥᏝ ᎠᏓᏁᎸ ᏂᎪᎯᎸ ᎡᎯ ᏱᎨᏐᎢ; ᎠᎦᏅᎩᏍᎩᏂ ᏂᎪᎯᎸ ᎡᎰᎢ. ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ ᎿᏉ ᏩᏠᎠᎯ ᏓᏓᎿᏩᏍᏛᎢ, ᎾᏍᎩ ᎣᎩᎪᏩᏛᏗᏱ ᎠᎴ ᎣᎪᎯᏳᏗᏱ. ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᏗᎨᎦᏛᏅᎯ ᎦᎬᏩᏐᏢᏕᎢ. ᎠᏏᏴᏫᏃ, ᎤᏙᎴᎰᏒ ᎠᏥᏅᏩᏅᎢ, ᏗᎤᏨᏎᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏁᏤ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎤᎾᏠᏨᏃ ᎢᏳᎾᏛᏁᏗᏱ ᎤᏂᏴᏔᏂᎯᏍᏗᏱ ᎤᏂᏣᏘ ᎨᏒ ᎢᏳᏍᏗ, ᎦᏌᎾᎵ ᎤᎾᎩᎳᏫᏎᎢ, ᎾᎿᏃ ᏧᏂᎦᏛᎴᎯᏍᏔᏁ ᎤᎾᏠᎥᏔᏂᎴ ᎤᏤᏍᏙ ᎬᏩᏠᏯᏍᏗ ᎤᎾᏓᏡᎬ ᎠᏰᎵ, ᏥᏌ ᎢᎬᏱᏢ ᎤᏂᏅᏁᎴᎢ. ᎬᏲᎵᎭ! ᏕᏣᏂᏴᏒ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏍᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎩᎶ ᎢᏴᏛ ᎢᏳᏅᏁᏔᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎬᏩᏂᏲᏥᏙᎸ; Ꮎ-ᏍᎩᏂ ᎠᏓᏅᏙ ᎤᏪᎯ ᏂᎦᎥ ᎠᎪᏩᏘᏍᎪᎢ, ᎠᏎᏃ ᎤᏩᏒ ᏄᏍᏛ ᎥᏝ ᎩᎶ ᏳᎪᏩᏘᏍᎪᎢ. ᏩᎭᏯᏃ, “ᎭᏩ,” ᎤᏛᏁ, ᏎᎦᏨ ᎦᏬᏂᏍᎦ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᎨᏙᏓᎦᏥᏟᎶᏍᏔᏂ ᏴᏫ ᎪᎯ ᏣᏁᎭ? ᎠᎴ ᎦᏙ ᏓᎾᏤᎸ? ᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ ᏕᏫ ᏄᏛᏁᎸ ᎠᎪᏄ ᏧᏲᏏᏍᎨ, ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ, ᏕᏣᏏᎳᏛ ᏣᎩᎳ?” ᎤᏟᏂᎪᎲᏍᏗᏍᎨᎢ ᎾᏂᏪᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᏥᎸᎨᎳᏍᏗ ᎨᏒ ᎠᏂᎵᏫ ᏥᎨᎦᏒᎦᎶᏕ, ᏅᏍᎦᏅᎾ ᎢᎬᏩᏓᏛᏁᏗ ᏱᎨᏎᎢ, (ᎠᏥᎸ-ᎨᎳᏍᏗᏰᏃ ᎨᏒ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏚᎾᏚᏓᏖ ᏴᏫ ᎦᎾᏓᏂᎸᏨ) ᎦᏙᏃ ᎠᏏ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎨ ᏅᏩᏓᎴ ᎠᏥᎸᎨᎶᎯ ᎤᎾᏄᎪᎢᏍᏗᏱ ᎹᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ, ᎡᎳᏂᏃ ᎾᏍᎩᏯ ᎦᏰᎪᏎᏗ ᏂᎨᏒᎾ ᎨᏒᎢ? ᎿᏉᏃ ᏥᏌ ᎤᎷᏨ ᎤᏙᎴᎱᏒᎩ ᎦᏳᎳ ᏅᎩ ᏧᏙᏓᏉᏛ ᎬᏩᏂᏅᏅᎯ ᎨᏒ ᎠᏤᎵᏍᏛᎢ. ᏤᏍᏗ ᏣᎴᏫᏍᏔᏅ ᏃᏉ. ᏴᏫ ᎤᏂᏁᏨᎯ ᎠᎴ ᏧᎾᏕᏲᏅᎯ? ᎾᏍᎩ ᏞᏍᏗ ᏣᏒᏂᎸᎩ; ᏞᏍᏗ ᎤᏍᏗᎤᏅ ᏣᎬᎩ; ᏞᏍᏗ ᏣᏱᏙᎸᎩ; ᎦᏰᎪᎩᏃ ᎠᏂᏃᎮᏍᎩ ᏚᏂᎧᏁᎢ, ᎾᏍᎩ ᎯᎠ ᎢᏯᏂᏪᏍᎩ; ᎯᎠ ᎠᏍᎦᏯ Ꮭ ᏯᏑᎵᎪᎦ ᎧᏁᎬ ᎠᏐᏢᎢᏍᏗᏍᎬ ᎯᎠ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ. ᎱᎷᏨ ᎠᏂᏔᎵ ᎠᏂᏧᏣ ᏚᏅᏫᏍᏔᏅ ᏫᏚᏂᏯᏂᏗ ᏐᏈᎵ. ᎦᏙ ᎢᏤᎵᎭ; ᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᎠᏍᎪᎯᏧᏈ ᎠᏫ ᏱᏚᎾᏝᎠ, ᏌᏉᏃ ᏳᎴᏲᎡᎸ, ᏝᏍᎪ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏯᏂᏛ ᏱᏗᎬᏕᎪᎢ, ᎠᎴ ᏱᏗᎧᎾᎷᏏᏙᎰ ᎦᏚᏏ ᏳᏲᎰ ᎤᎴᏲᎡᎸᎯ? ᎿᏉᏃ ᎾᏍᎩ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ ᎦᎷᏨᎭ, ᎦᏙ ᏙᏓᎬᏁᎵ ᎾᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ? ᎤᎬᏫᏳᏌᏕᎩ ᎤᏚᎩᏒ ᎠᎹ ᎩᎦᎨᎠᏗᏔᏍᏗ ᎢᏳᎵᏍᏔᏅᎯ, ᎠᎴ ᎾᎦᏔᎲᎾ ᎨᏎ ᏧᎶᏒᎢ, ᎨᏥᏅᏏᏓᏍᏗᏍᎩᏂ ᎠᎹ ᎤᏂᏢᏛ ᎠᏂᎦᏔᎲᎩ, ᎤᎬᏫᏳᏌᏕᎩ ᏭᏯᏅᎲᎩ ᎠᏍᎦᏯ ᏣᎦᏨᏍᏗᏍᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᏥᏂᏉᏘᎸᎩ ᎾᏍᎩ Ꮎ ᏴᏫ, ᎠᎴ ᎯᎠ ᎾᎩᏪᏒᎩ, ᏂᎪᎯᎸ ᏚᎴᎾᎯᎭ ᏧᏂᎾᏫ; ᎠᎴ ᎥᏝ ᎤᏂᎦᏙᎥᏒᎯ ᏱᎩ ᏓᎩᏅᏅᎢ. ᎾᏍᏉᏃ ᎥᎪᎩᏍᏓᏩᏛᏒᎩ ᎢᎸᏍᎩ ᎢᏯᏂᏛ ᎠᏃᎯᏳᎲᏍᎩ ᏏᏌᎵᏱ ᎠᏁᎯ, ᎠᎴ ᎤᎾᏘᏅᏒᎩ ᎩᎶ ᎢᏳᏍᏗ ᏁᏌᏂ ᏧᏙᎢᏛ ᏌᏈ ᎡᎯ, ᎢᎸᎯᏳ ᎬᏬᎯᏳᏅᎯ, ᎾᏍᎩ ᎦᏁᎸ ᎣᎦᏅᏗᏱ ᎤᏂᏰᎸᏒᎩ. ᏥᏌ ᏚᏁᏤᎸᎩ; ᏝᏍᎪ ᎯᎠ ᏘᏂ ᎬᏅ ᏱᎪᏪᎳ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ; ᏂᎯ ᎢᏨᏁᎳᏅᎯ, ᎠᏆᏛᏅᎩ? ᎾᎿᏃ ᎢᎾᎨ ᎡᏙᎮ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ, ᏎᏓᏂ ᎤᎪᎵᏰᏍᎨᎢ; ᎠᎴ ᎢᎾᎨ ᎡᎿᎢ ᏕᎨᎳᏗᏙᎮᎢ; ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᏍᏕᎸᎯᏙᎮᎢ. ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎨᏒ, ᎢᏴᏛᎭᏉ ᎠᎴ ᏧᏓᎴᏅᏛ ᎬᏔ-ᏅᎯ ᏥᏕᎧᏁᏤᎮ ᏗᎩᎦᏴᎵᎨ ᎠᎾᏙᎴᎰᏍᎩ ᏕᎬᏗᏍᎬᎢ, ᏥᏃᎯᏎᎸ ᎠᏌᎻᏓ ᏂᏪᏒ ᏣᎵ, ᏎᎦᏗ ᏱᎩᎦᏘᏛ ᎢᎦᏛ ᏯᏂᎷᎩ ᎤᏛᏅ. ᎠᏴ ᎠᏆᏓᏅᏘ ᎠᏫ-ᏗᏥᎦᏘᏯ; ᎠᎴ ᏕᏥᎦᏔᎭ ᏗᏆᏤᎵᎦ, ᎠᎴ ᏗᏆᏤᎵᎦ ᎬᎩᎦᏔᎭ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎯᎠ ᏄᏍᏕ ᎬᏂᎨᏒ ᏂᎬᏁᎮᎢ, ᎾᏍᎩ Ꮎ ᎤᏟ ᎢᎦᎸᏉᏗ ᏗᎨᏒ ᏫᎦᏅᏅ ᎠᏏ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᏏᏉ ᏥᏂᎬᏩᏍᏕ ᎢᎬᏱᏱ ᎦᎵᏦᏛᎢ; ᎠᎺ ᎣᏏᏳ; ᎠᏎᏃ ᎠᎹ ᏳᏥᏍᎪᎸ ᎦᏙ ᏱᏨᎦ ᏄᏥᏍᎪᎸᎾ ᏱᏂᏨᎦ? ᎠᎺ ᎢᏥᎶᏨᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏙᎯᏱ ᏂᏨᏁᏍᏗ ᎢᏤᎲᎢ. ᏂᎯᏍᎩᏂ ᏗᏥᎦᏙᎵ ᏗᎦᎸᏉᏔᏅᎯ, ᎾᏍᎩᏃᏓᎪᏩᏘᎭ, ᎠᎴ ᏕᏥᎵᎷᎬᎢ, ᎾᏍᎩᏰᏃ ᏓᏛᎩᎭ; ”ᏴᎦᏥᏲᏍᏓᏗ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ. ᎤᏩᏛᎲᏃ ᎩᎶ ᎢᏳᏍᏗ ᎠᏧᏏ ᎡᏈᎳ ᏧᏙᎢᏛ, ᏋᏗᏱ ᎤᏕᏅᎯ, ᎩᎳᎢ ᎤᎷᏦᏅᎯ ᎢᏓᎵ ᏅᏓᏳᎶᏒᎯ, ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ ᏈᏏᎳ ᏧᏙᎢᏛ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᏠᏗᏯ ᎤᏁᏨ ᏂᎦᏛ ᎠᏂᏧᏏ ᎶᎻ ᎤᎾᏓᏅᏍᏗᏱ, ᎾᏍᎩ ᏚᏩᏛᎯᎸᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏥᏠᎦ ᏕᏥᏓᏅᏛᎢ, ᎢᏣᎵᏏᎾᎯᏍᏗᏳ ᎨᏎᏍᏗ, ᎠᎴ ᎬᎵᏍᏆᏗᏍᎩ ᎤᏚᎩ ᎢᏨᏎᏍᏗ ᎡᏥᏁᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏂᎯ ᎡᏥᏲᎮᏗ ᏥᎩ ᎾᎯᏳ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎭ. ᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ, ᎠᎴ ᎤᏂᎬᎥᏍᎩ, ᎠᎴ ᏧᏂᏴᏍᏕᏍᎩ, ᎠᎴ ᎠᎾᏓᏐᎮᎯ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎠᎾᏓᎩᎡᎯ, ᎾᏍᎩ ᎥᏝ ᎤᎾᏤᎵ ᏱᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ. ᎠᎪᎵᏰᏍᎬ ᏓᏏᎳᏛ ᏫᎵᎻ, ᏚᏄᏌᏛ ᏃᎴ ᎪᏍᏓᏱ ᎤᎧᏛ ᎤᏓᏴᎳᏔᏁᎢ. ᏣᎦᏁᎶᏗ ᎪᎱᏍᏗ ᎠᏥᎳᏫᏎᎲᎢ ᏞᏍᏗ ᏱᏣᏛᏓᏍᏗᏍᎨᏍᏗ ᎬᏂ ᎠᏂᏔᎵ ᎠᎴ ᎠᏂᏦᎢ ᎤᏂᏃᎮᏛ ᎨᏎᏍᏗ. ᎠᏰᎵᏒ ᏂᎦᏓ ᏍᎪᏯ ᏧᏒᎲᏍᏗ ᎣᏏᏉ ᏂᎦᎵᏍᏗᏍᎨ. ᏃᏉ ᏑᎾᎴ ᏣᎵᏍᏓᏴᏗ ᏗᎦᎶᏛ ᏫᏥᎦᏘ, ᏱᏣᏓᏅᏛᎾ ᏥᎩ ᏨᏌ ᏣᎩᏍᏗ.” ᎠᎴ ᎾᏍᏉ ᏥᎻ ᎠᎴ ᏣᏂ ᏤᏈᏗ ᏧᏪᏥ ᎾᏍᎩ ᎤᎾᎵᎪᎯ ᏥᎨᏎ ᏌᏩᏂ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴ ᏌᏩᏂ; ᏞᏍᏗ ᏣᏍᎦᎸᎩ; ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏴᏫ ᏘᏏᏱᏍᎩ ᎨᏎᏍᏗ. ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ. ᏧᏓᏏᏃ ᎾᏍᎩ ᎤᏡᏗᏍᎩ ᎾᏍᏉ ᎦᏙᎬᎩ ᎠᏂᏙᎾᎥᎢ. “ᎤᏍᏆᏂᎩᏗᏍᎪ ᎮᎵᎠ?” ᎤᏎᎵᏓᏁᎴᏃ [ᎯᎠ ᏄᏪᏎᎢ,] ᎢᏳᏍᏗᏉ ᎮᎵᏍᎬ ᏍᎩᏔᏲᏏ, ᏓᎬᏁᎵᏃ, ᎾᏍᏉ ᎠᏰᎵ ᎢᏴᏛ ᏱᎩ ᎾᎿ ᎠᎩᎬᏫᏳᎯ ᎨᏒᎢ. ᎥᎩᏃᏁᎸᎯᏰᏃ ᎢᎩ ᎢᏓᎵᏅᏟ ᏂᎯ ᎡᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᏠᎢ ᏚᏓᏘᎾᎥ ᎨᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᏗᏥᏲᏍᏗ ᎨᏒ ᎢᏤᎲᎢ. ᏧᏩᎩ ᏃᎴ ᎠᏔᏒᎩ ᏧᏆᎶᎦ ᏧᏍᎪᏍᏓ ᏧᎵᏑᏫᏓ ᏂᏕᎦᎵᏍᏗᏍᎨ ᏃᎴ ᎦᏃᎸᎥᏍᎬ ᏕᎦᏙᎣᏗᏍᎨ ᏧᏆᎶᎦ ᏐᏉᎯᎭ ᎦᏙᎯ. ᎾᏍᎩᏃ ᏕᎨᏥᏲᏒ ᎥᏘᎣᎩ ᏭᏂᎷᏤᎢ, ᏚᏂᎳᏫᏛᏃ ᎤᏂᏣᏘ ᏚᏂᏅᏁᎴ ᎾᏍᎩ ᎪᏪᎵ. ᏂᎦᏓ ᎠᎾᏓᏩᏛᎯᏙᎢ ᏏᏆ ᎤᏴᏍᏗ ᎣᏍᏓ ᎾᏂᏪᏎᎮᎢ ᏫᎵᎻ. ᎠᏂᏦᎢᏰᏃ ᎠᏂᏃᎮᏍᎩ ᎦᎸᎳᏗ; ᎠᎦᏴᎵᎨᎢ, ᎧᏃᎮᏛ, ᎦᎸᏉᏗᏳᏃ ᎠᏓᏅᏙ; ᎾᏍᎩᏃ ᎯᎠ ᎠᏂᏦᎢ ᎨᏒ ᏌᏉᏉ. ᎤᏗᎴᎩ ᏄᎵᏍᏔᏏ.” ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎡᎶᎯ ᎤᎷᎯᏍᏗᏱ ᏴᏧᏅᏒ ᎤᏪᏥ ᏧᏭᏓᏁᏗᏱ ᎡᎶᎯ, ᎾᏍᎩᏍᎩᏂ ᎢᏳᏩᏂᏐᏗᏱ ᎡᎶᎯ ᎠᏥᏍᏕᎸᏗᏱ. ᏕᏣᏓᏠᎮᏍᏗ, ᏕᏥᏨᏍᏛᏃ ᏓᏓᏪᎵᎩᏍᎨᏍᏗ. ᏧᎾᏁᎶᏗᏃ ᎤᎾᏓᏡᎬ ᎢᏴᏛ ᏫᏗᎬᏩᏂᎧᏅ ᎤᏂᎶᏎ ᏈᏂᏏ ᎠᎴ ᏌᎺᎵᏱ ᎠᏂᏃᎮᏍᎨ ᎠᎾᎦᏔᎲᏍᎬ ᏧᎾᏓᎴᏅᏛ ᏴᏫ; ᎤᏩᏘᏃ ᏚᎾᎵᎨᎵᏍᏔᏁ ᏂᎦᏛ ᎠᎾᏓᏅᏟ. “ᎬᏲ--ᏙᎩᎢᏳᏍᏗ?” ᎤᏪᎷᏁ. ᎿᏉᏃ ᏧᎦᎿᏁᎢ, ᎠᎴ ᏥᏚᏃᎱᎦᏁᎢ, ᎠᎴ ᏧᏃᎸᏁᎢ, ᎾᎿ ᎠᏓᏁᎸ ᏥᏚᏱᎶᎴᎢ; ᎠᏎᏃ ᎥᏝ ᏳᏲᏤᎢ, ᏅᏥᎯᏰᏃ ᎦᎧᎮᎢ. ᎨᎵᏍᎬ ᎠᏆᏘᏲᏍᏛ ᎪᏟᏍᏗ ᎨᏒ ᏃᎴ ᎫᏩᎾᏛᏓᎮᎸᏗ ᏱᎨᏒᎾ. ᏓᏨᏍᏕᎢ ᎤᎾᏛᏁᎸᏗ ᎠᏰᎵ, ᏃᎴ ᎠᏛᎪᏗ ᎨᏎ ᏚᏃᏴᎬ ᏧᏂᏆᏂᏲᏍᏗ ᏃᎴ ᎧᏃᎩᏍᏗ ᏐᏈᎵ ᏗᏥᎶᏍᏔᏅ ᏗᎩᎸᏙᏗ ᏓᏳᏓᎴᏅ ᏃᎴ ᎠᏍᎦᏯ ᏗᏗᏯᏂᏍᎬᎢ ᏗᏎᏍᏗ ᏧᏂᏆᏂᏲᏍᏙᏗ. ᎩᎶ ᎦᎵᎷᎨᏍᏗ, ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎤᏩᏁᏗ ᏱᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎭᏅᏓᏓ ᏄᏍᏛ ᏕᏣᏓᏂᎸᏨ ᎠᎴ ᏣᏛᎦᏅᎢ, ᎠᎴ ᎠᏍᏓᏯ ᏘᏂᏴ ᎠᎴ ᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏂᏯᏫᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏓᎬᎷᏤᎵ ᎦᏃᏍᎩᏍᎩ ᏥᎦᎷᎪ ᎾᏍᎩᏯᎢ, ᎥᏝ ᎠᎴ ᏱᎦᏔᎮᏍᏗ ᎢᏳ ᎨᏒ ᏗᎬᎷᏤᎵᏒᎢ. ᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᎾᏓᎢᏍᏛᎾ ᎨᏎᏍᏗ, ᏌᏉ ᎠᏓᏰᎮᏍᏗ, ᎠᏃᎯᏳᎲᏍᎩ ᏚᏪᎧᎮᏍᏗ ᏧᏪᏥ, ᏂᎨᏥᎳᏫᏎᎲᎾ ᏄᎾᏁᎸᎾ ᎤᎾᎴᏂᏙᎸᎢ, ᎠᎴ ᏂᏚᎾᏓᏁᎶᏛᎾ. ᎿᏉᏃ ᎾᎥ ᎬᏩᎷᏤᎴ ᏂᎦᏛ ᎠᏕᎸ ᎠᏂᎩᏏᏛᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ. ᏞᏍᏗ ᎠᎴ ᎦᎶᏁᏛ ᏰᏗᎪᎵᏰᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᎩ Ꮎ ᎢᎦᏛ ᎾᏍᏉ ᏥᎬᏩᎪᎵᏰᎡᎢ, ᎠᎴ ᎾᏍᎩ ᎢᎾᏛ ᏥᎬᏩᏂᏛᏔᏁᎢ. ᏂᎬᎾᏛ ᎠᏁᎰ ᎥᏳᎩ ᎠᏂᏱᏙ. ᎾᏍᎩᏍᎪᏃ ᎢᏳᏍᏗ ᎠᏎᏉᏉ ᏂᏛᏁᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎢᏛᏗᎭ? ᎬᏩᏟᏍᏗ; ᎢᏗᏍᏓᏱᏗᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏥᎪᎥᎯ ᎠᎺᏉᎯ ᎠᎴ ᎦᏙᎯ ᏧᏔᏏᏅᎯ, ᎦᎸᎳᏗ ᎢᏗᏢ ᎤᏌᎳᏓᏅᎩ ᎤᏬᏰᏂ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎦᏓᏅᎦᎵᎠ, ᎾᏍᏉ ᎤᏅᏒ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎤᎾᎿᏅᎦᎸᏙᏗᏱ. ᎾᏍᎩ ᎢᏳᏏᏗ ᎥᏝ ᏰᎵ ᎬᏩᏃᎯᏳᏗ ᏱᎨᏎᎢ; ᏔᎵᏁᏰᏃ ᎢᏌᏯ ᎯᎠ ᏄᏪᏎᎢ. ᎩᎶᏍᎩᏂᏃᏅ ᎢᏳᎾᏍᏗ ᎬᏩᎵᎪᏁᎸᎩ ᎠᎴ ᎤᏃᎯᏳᏅᎩ; ᎾᎿ ᎨᎸᎩ ᏓᏲᏂᏏᏯ ᎡᎵᎣᏈᎦ ᎦᎲᏍᎩ ᏗᎫᎪᏘᏍᎩ ᎠᎴ ᎠᎨᏴ ᏕᎺᎵ ᏧᏙᎢᏛ, ᎠᎴ ᏅᏩᎾᏓᎴ ᎾᏍᏉ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏁᎮᎢ; ᏚᏛᏛᏁᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎬᏉᏎᎰ ᏴᏫ? ᎢᎸᎯᏢᏃ ᎦᏚᎲ ᏩᏴᎯᎲᎢ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏕᎬᏩᏠᏎᎢ,ᎢᏅ ᏓᎾᎴᏅᏁᎢ; ”ᎯᎠᏃ ᏂᏕᎦᏪᏍᎨᏍᏗ, ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏗᎦᏃᏣᏟ ᏏᏆ ” ᎢᏳᏰᏃ ᎩᎶ ᎢᏳᏍᏗ ᏱᏣᎪᎲ ᏂᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏤᎯ ᏱᏅᎦ ᏯᎵᏍᏓᏴᎲᏍᎦ ᎠᏓᏁᎸ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎤᏤᎵᎦ; ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎤᏓᏅᏛ, ᎠᏩᎾᎦᎳ ᎨᏒ, ᏂᎦᎾᏰᏍᎬᎾ ᏱᏅᎦᎵᏍᏓ ᎤᎵᏍᏓᏴᏙᏗᏱ ᏧᏓᎴᏅᏛ ᎾᏍᎩ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ; ᎢᏓᎪᎲᏍᏗ ᎤᏓᏁᎸᎢ, ᎠᏎᎯᏅ. ᎾᏍᎩᏃ ᏧᏪᏥ ᏥᏂᏣᎵᏍᏔᏅ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎤᏁᎳᏅᎯ ᏧᏅᏒ ᎤᏪᏥ ᎤᏓᏅᏙ ᏗᏣᏓᏅᏙᎩᎯ, ᎤᏪᎷᎦ ᎯᎠ ᏂᎦᏪᎭ, ᎠᏆ, ᎡᏙᏓ. ᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᏂᏧᏏ ᏧᎾᏤᎦ ᎬᏩᏃᎮᎮᎸᎩ ᎠᏄᎯᏍᏗᏍᎬ ᏉᎳ ᎠᎴ ᎬᏩᏍᏗᏰᏔᏅᎩ, ᎦᏣᏄᎸ ᏚᏯᎰᏎᎲ, ᎡᎵᏍᎬ ᎠᏂᏐ ᎠᏂᏔᎵ ᎣᏍᏓ ᎤᏂᎷᏤᎯ. ᏂᎪᎯᎸᎾᏉᏃ ᎤᏛᏐᏅ ᎤᏃᎮᎴ ᎠᏥᎸᏳᎶᏗ ᎤᏬᏢ ᏙᏱᏨ, ᎦᎸᏙᎵ ᎠᏍᎦᏯ ᎤᎾᏅᎪᏤ ᎢᎾᎨ ᏓᏳᎶᏒ. ᎤᏛᎦᏁ ᏗᎾᎢᏒ, ᎠᏂᏍᏔᏩᏗᏎ ᏧᎶᏒ ᏧᎵᏬᏨ ᏧᏆᎶᎬ, ᎬᏂᎨᏒ ᎾᏍᎩᏯ ᎦᏓᎷᎪᏗ ᎤᏂᏏᏅᏒ. ᎠᎦᎵᎡᎵᏤᎰᏍᎪ ᎾᏍᎩ ᎠᏥᏅᏏᏓᏍᏗ ᎾᏥᏪᏎᎸ ᏄᏛᏁᎸᎢ? ᎥᏝ ᎠᎩᏰᎸᎭ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎭᏝ ᎢᏦᎯᏳᏒᎢ? ᎾᏍᎩᏃ ᎠᏂᏍᎦᎢᎲ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎠᏍᎦᏯ? ᏕᎧᏁᏤᏰᏃ ᎤᏃᎴ ᎠᎴ ᎠᎹ, ᎠᎴ ᎢᎬᏬᎯᏳᎲᏍᎦ. ᎾᏃ ᎾᏍᎩ ᎯᎠ ᎡᎶᎯ ᎪᎱᏍᏗ ᎠᏅᏗᏍᎩ ᏞᏍᏗ ᎤᏣᏘᏂᏉ ᏱᎾᏅᏁᏗᏍᎨᏍᏗ; ᎯᎠᏰᏃ ᎡᎶᎯ ᏄᏍᏛ ᎦᎶᏐᎲᏍᎦᏉ. ᎠᏴᏰᏃ ᎠᎩᎷᏥᎸ, ᏗᎾᏓᏍᎦᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏍᎦᏯ ᎤᏙᏓᏃ, ᎠᎴ ᎠᎦᏅᎩ ᎠᎨᏴ ᎤᏥᏃ, ᎠᎴ ᎤᏓᏦᎯᏯ ᎤᏦᎯᏃ; ᎠᎵᏰᎾ! ᏧᏓᎴᏅᏓ ᏓᏓᏳᎶᏒ ᏕᏥᎾᎩᏍᎬ ᏗᎪᏪᎳᏅ ᏗᏥᎶᏍᏔᏅ. ᎠᏓᏅᏙ ᎠᏆᏘᏂᏙᎲᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎢᎦ ᎨᏒᎢ, ᎠᏆᏛᎦᏅᎩᏃ ᎠᏆᏐᎭᏛ ᎢᏗᏢ ᎠᏍᏓᏯ ᎧᏁᎬ ᎾᏍᎩᏯ ᎠᏤᎷᎩ ᏧᏃᏴᎪᎢ, ᎯᎠᏃ ᎾᏍᎩ ᏥᏄᏍᏗ ᎡᎩᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎢᏨᎨᏳᎢ, ᎢᏓᏓᏅᎦᎸ ᎢᏗᎲᎾ ᏄᏓᎴᏒ ᎦᏓᎭ ᎨᏒ ᎢᎩᏇᏓᎸ, ᎠᎴ ᎢᎦᏓᏅᏙᎩᎯ, ᎢᏗᏍᏆᏗᏍᎨᏍᏗ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎤᏁᎳᏅᎯ ᎡᏗᎾᏰᏍᎬᎢ. ᎠᏐᏴᏃ ᏣᏍᏆ ᏅᏯ ᎠᏁᏍᎨᏛᎩ; ᎦᏚᎲᏃ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏛᎩ, ᏧᎸᏌᏛ ᎠᏓᎨᏗ ᎾᏍᎩᏯᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎦᎶᏁᏛᏱ ᎤᎦᎵᏍᏗ ᏅᏓᎬᏩᏓᎴᏗ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᏓᏄᏬᎯᏍᏗᏍᎩ ᎬᏩᏓᏁᏗ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎬᏖᏉᎶᏗ ᎨᏎᏍᏗ ᎠᏓᏅᏙ ᎥᏓᏘᏁᏗ ᎨᏒᎢ, ᎢᏳᏃ ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎤᏓᏅᏘ ᎨᏒ ᎡᎮᏍᏗ, ᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ, ᎢᏳᏰᏃ ᎢᏧᎳᎭ ᏗᎩᏲᎱᏒᎯ ᎨᏎᏍᏗ, ᎠᏎ ᎾᏍᏉ ᎢᏧᎳᎭ ᏕᏛᏁᏍᏗ; ᎠᏎᏃ ᏥᏌ ᎤᏛᎦᏅ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ Ᏹ-ᏍᎦᎢᎮᏍᏗ; ᏦᎯᏳᏎᏍᏗᏉ, ᏓᏳᏗᏩᏏᏃ. ᎤᏩᎦᏘᎶᏓ ᎠᏇᏙᎸ ᎢᏤ ᎢᏦᏛ, ᎠᏎᏃ ᎨᏍᏗ ᏱᏥᎦᏔᎮ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ. ”ᏍᎩᏃᎯᏎᎸ ᎦᎬᏍᏕᎸᏗ ᎨᏎᏍᏗ.” ᎢᏳᏃ ᏴᏫᏉ ᎠᏁᎲᎢ, ᏲᎦᏛᏅ, ᏂᎦᏛᏉ ᏴᏫ ᏅᏯ ᏱᏕᎪᎬᏂᏍᏓ; ᏣᏂᏰᏃ ᎠᏙᎴᎰᏍᎩ ᎨᏒᎩ, ᎠᏁᎵᎭ. ᎠᎦᏍᎩ ᎤᏲᏍᏔᏁᎴ ᎤᏓᏅᏖᎸ ᏫᎵᎻ. ᎢᏳᏍᎩᏂᏃ ᎩᎶ ᏂᏓᏛᏅᎢᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎤᏩᏒ ᏧᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᎭ ᎤᏩᏒ ᏚᏓᏘᎿᎥᎢ, ᎾᏍᎩ ᎤᏓᏱᎸ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏟ ᎤᏲᎢᏳ ᎡᏍᎦᏉ Ꮎ ᏄᏬᎯᏳᏒᎾ. ᏔᏁᏃ ᎤᏄᎪᏤ ᎥᏓᎵ ᎤᎶᏗ ᎤᏪᏙᎴᎢ; ᎠᎴ ᏂᎦᏛ ᎤᏂᏣᏘ ᏫᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎾᏍᎩ ᏚᏪᏲᏁᎢ. ᎩᎶ ᎾᏆᎵᎪᏁᎲᎾ ᏥᎨᏐ ᎠᏆᏡᏗᏍᎪᏉ; ᎩᎶᏃ ᏃᏍᏗᏟᏏᏍᎬᎾ ᏥᎨᏐ ᎠᏗ-ᎦᎴᏯᏍᎪᏉ. ᎠᎬᏱ ᎠᏛᏛᏅ ᎾᏂᎥ, ᎤᎾᏟᏂᎬᎬ, ᎤᏂᏐᏯᏍᏗᏍᎩ ᎨᏒ ᎠᏁᎲ, ᎤᎾᎵᏍᏔᏴᏗ. ᎿᏉᏃ ᏔᎵᏁ ᏔᎵ ᏄᎾᏓᏛᎩ ᎠᏂᏧᏏ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᏄᏪᏒᎢ. ᎠᎫᏩᏌ ᏴᏙᎭ ᏚᏅᏓᏒ ᏰᎵ ᏧᏙᏓᏆᏓ, ᎠᎫᏍᏕᎵ ᏯᎾᎢᏳᎾ - ᎠᏲᎯᏍᏘ ᎠᎫᎾᏰᎯᎲ ᎢᎾᎨᎢ. ᎯᏍᎩ ᎢᏳᎾᏓᎨᏛ ᎤᏂᎧᎭᏲᏒ ᏚᏯ ᏃᎴ ᎤᏁᎸᏗ ᎠᏓᏅᏖᏗ ᎤᏩᏌ ᎠᏆᎵᏍᎪᎸᏛ, ᏃᎴ ᎬᏍᏕᏓᎵᏴᏍᏗ ᏱᎨᏒᎾ. ᎤᎸᏉᏗ ᎨᏎ ᎤᏍᎪᎵᏰᏗ, ᎤᏪᎵᏍᏗ, ᏃᎴ ᎦᏂᏏ ᏭᏂᏏᏗ. ᏝᏍᎪᏃ ᏱᏗᏥᏁᎸ ᎾᎿ ᎢᏔᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎢᏔᏗᏔᏍᏗᏱ? ᏥᎪᎨ ᎢᏥᏐᏢᏗᎭ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏕᏣᏕᎰᎯᏍᏗᎭ ᏄᏂᎲᎾ? ᎦᏙ ᏓᏨᏲᏎᎵ? ᏓᏨᎸᏉᏔᏂᏧ? ᎯᎠ ᏂᏨᏛᏁᎲ ᎥᏝ ᏱᏨᎸᏉᏗᎭ. ᏧᎾᏟᏍᏗ? ᎦᎵᎡᎵᎩ ᏕᎩᎾᏦᏒᎢ ᎤᎬᏍᏕᎵ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ. Ꮟ ᎦᏲᏟ ᎤᏓᏅᏖᏗᏍᎨᎢ ᏭᏩᎦᏘᏗᏒᎢ, ᎨᏍᏗ ᏳᏬᎯᏳᎮ ᎧᏅᏂᏍᎩ ᎤᏍᏆᏂᎪᏙᏗ ᎬᏅᎢ. ᎤᏰᏤ ᎡᎶᏗ. ᎣᏂᏱᏃ ᎠᎨᏴ ᎾᏍᏉ ᎤᏲᎱᏒᎩ. ᎾᏍᏉ ᎪᏍᏚᏉ ᎢᏥᏚᎲ ᎦᎳᎨᏴᎢ, ᎾᏍᎩ ᎣᎩᏯᎸᎬᎢ ᎣᏥᏅᎪᎥᏗ ᎢᏨᎢᏰᎭ; ᎠᏎᏃ ᎯᎠ ᏄᏍᏕᏍᏗ ᎢᏥᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎥᏂᏳ ᎢᏥᎷᏤᎸᎢ. ᏂᎪᎯᎸᎾᏉ ᎤᏂᏲᎯᏍᏔᏅ ᎠᎾᏛᎦᏍᏗᏍᎬ, ᎤᎾᎴᏅᎲ ᎠᎾᏓᏅᏖᏍᎬ ᎢᏳᏍᏗ ᎤᎵᏍᏕᎸᏙᏗ, ᎾᏍᎩ ᎤᏅᏌ. ᎠᏏᏉ ᎾᏍᎩ ᏂᏕᎦᏪᏎᎲᎩ, ᎬᏂᏳᏉ ᎩᎶ ᎢᏳᏍᏗ ᏄᎬᏫᏳᏌᏕᎩ ᎤᎷᏨ ᎤᏓᏙᎵᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎠᏇᏥ ᎠᎨᏳᏣ ᎦᏳᎳ ᎤᏲᎱᏏᏕᎾ. ᎠᏗᎾ ᎮᎾ, ᎯᏯᏒᏂᎸᎭ, ᎠᎭ ᏛᎠᏛᏂᏗᏉ. ᎤᎾᏕᎳᎰᏌ ᏐᏉ ᎠᎨᏯ ᎠᏴᏫᏯ ᏧᎾᎭᏰᏍᏗ, ᏣᎦᏥᎶᏍᏔᏅ ᎤᎾᎪᎰᏍᏔᏁᎢ ᏅᏃ ᎠᏰᎵ ᏃᎴ ᏧᏂᎳᏫᎢᏍᏗ ᎭᎸᎾ ᏚᏂᏃᏴᎵᏍᏔᏁ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎤᎵᏨᏓᏆᏓ. ᎢᏤᏍᎩᏃ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏎ ᏗᏤ ᏗᏑᏢᏛ ᏗᏟᏍᏙᏗ; ᎩᎳ ᎿᏉ ᎢᏧᎳ ᏂᏗᎬᏩᏍᏙᎢ ᎾᏍᎩ ᎾᎿ ᎤᏣᏘ ᏥᏣᎵᎮᎵᎦ, ᎪᎯᏍᎩᏂᏃᏅ ᏞᎦ, ᎢᏳᏃ ᎨᏎᏍᏗ, ᎡᎯᏍᏗ ᎢᏣᏓᏅᏔᏩᏕᎦ ᎤᏗᎦᎵᏍᏙᏗᎭ ᏧᏓᎴᏅᏛ ᎢᏥᎪᎵᏰᏍᏗ ᎢᏣᎵᏩᏛᎡᎲᎢ, ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎢᏍᎩᏂᏲᎮᎢ? ᏝᏍᎪ ᏱᏍᏗᎦᏔᎮ ᎡᏙᏙᏱ ᎠᏎ ᎠᏇᏓᏍᏗ ᎨᏒᎢ? ᎢᏨᏒᏰᏃ ᎢᏥᎦᏔᎭ ᎯᎠ ᎾᏍᎩ ᏗᏉᏰᏂ ᏓᏋᏔᏅᎯ ᎠᎩᏩᏛᎲ ᎠᎩᏂᎬᏎᎲ ᎠᏋᏒ ᎠᎴ ᎾᏍᏉ ᎣᏤᎯ. ᎠᎴ ᎠᏴ ᎥᏝ ᏱᏥᎦᏔᎮᎢ; ᎠᏎᏃ ᎾᏍᎩ ᎢᏏᎵ ᎨᏥᎾᏄᎪᏫᏎᏗᏱ ᏅᏧᎵᏍᏙᏔᏅ ᎠᎩᎷᏨ ᎠᎹ ᏕᎦᏓᏬᏍᏗᎭ. ᎾᏍᎩᏰᏃ ᏄᏩᏅ ᏥᏕᏛᏅ, ᎠᎴ ᏥᏓᎵᏖᎸᎲᏍᎦ, ᎠᎴ ᏥᏕᎭ; ᎾᏍᎩ ᎾᏍᏉ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᎧᏃᎩᏍᏗ ᏗᏃᏪᎵᏍᎩ ᏗᏣᏤᎵᎦ ᎯᎠ ᏄᏂᏪᏒ; ᎠᏴᏰᏃ ᎾᏍᏉ ᎾᏍᎩ ᏧᏪᏥ. ᏥᏌ ᎤᎷᏨᎩ ᎤᎩᏒᎩ ᎦᏚ ᎠᎴ ᏚᏁᎸᎩ, ᎠᎴ ᎾᏍᏉ ᎠᏣᏗ ᏚᏅᏁᎸᎩ. ᎾᏍᎩ ᏥᏅᎵ ᏫᏥᎷᏤᏗᏱ, ᎾᏍᎩ ᏂᏣᏛᎿᏕᎬ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎤᎬᏩᎵ, ᎠᎴ ᏗᏥᎦᎵᏍᏓᏕᏗᏱ ᏗᏥᎾᏫ ᎤᎬᏩᎵ; ᎠᏎᏃ ᎠᎦᏔᎾᎢ ᏧᏪᏥ ᏂᎦᏛ ᎣᏏᏳ ᎢᎬᏩᏰᎸᎭ ᏍᎪᎯ ᎢᏯᎳᏏᏔᏅ ᎢᏴ ᏫᏓᏲᎯᎲ ᏩᏁᎢ ᏗᏲᏍᏙᏗ ᎬᏘ, ᏐᏉ ᎢᏳᏦᏔᏅ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎾᏍᎩ ᎯᎠ ᎪᎯ ᎨᏒ ᎥᏝ ᏳᏃᎯᏳᏅ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏣᏤᎵ ᎢᏳᏩᏂᏐᏗᏱ ᎾᏍᎩ ᎾᏍᏉ ᎨᏥᏙᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᏣᎶᏅᎮᎭ ᏣᏂᏴᏗᎯ-ᏂᏴᏗᎯ. ᏧᏓᏏᏃ ᎠᏓᏡᏗᏍᎩ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᏥᎪ ᎠᏴ? ᎯᎠ ᏄᏪᏎᎸᎩ; ᏰᎵ ᏂᏫ. “ᎦᏨ ᎮᏙᎭ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ”ᏙᎢᏳᏍᏗ?” ᎢᏳᏃ ᎰᏩ ᎦᎶᏁᏛ ᏚᎴᏅ ᏗᏣᎴᏅᎯ ᎨᏎᏍᏗ, ᎢᏥᏲᎮᏍᏗ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎨᏒᎢ, ᎾᎿ ᎦᎶᏁᏛ ᎤᏬᎸ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏᏗᏢ. ᎤᎵᏍᎦᏂᏍᏛᏍᎩᏂ ᎧᏃᎮᎸᏗ ᎨᏒ ᎠᎴ ᎤᎾᏓᏁᏟᏴᏒᏒᎢ, ᎠᎴ ᏗᏘᏲᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎬᏩᎵ ᏕᎭᏓᏅᏒᎮᏍᏗ, ᎬᏩᎾᏓᏍᏕᎸᏗᏰᏃ ᏂᎨᏒᎾ ᎠᎴ ᎠᏎᏉᏉ ᎾᏍᎩ. ᎠᏴ ᏍᎩᏍᏓᏩᏕᎩ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᏴ ᎾᏍᏉ ᎦᎶᏁᏛ ᏥᏍᏓᏩᏕᎩ ᏥᎩ. ᎠᎼ ᎡᎳᏗ ᏄᏛᏁᎸ. ᎠᏂᏧᏏ ᏕᎦᎵᏦᏛᎢ-ᏧᎾᎵᏍᏓᏴᏗᏱ ᎤᏍᏆᎸᎯᏗᏒᎩ. ᎣᎭᏁ ᎢᏴ ᎩᎳ ᎤᎾᏓᏅᏖᏙᏗ. ᎿᏃ ᎡᎶᎯ ᎠᏁᎯ ᏛᎾᎵᎮᎵᏥ ᎾᏍᎩ ᎨᏒ ᏅᏗᎦᏍᏙᏗᏍᎨᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎤᎾᏓᏅᏔᏩᏕᎨᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᏓᎾᏓᏁᎸᎥᏍᎨᏍᏗ; ᎯᎠᏰᏃ ᎠᏂᏔᎵ ᎠᎾᏙᎴᎰᏍᎩ ᎬᏩᏂᎩᎵᏲᎢᏍᏔᏅᎩ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏁᎯ. ᏍᎩᎾᎾ ᎢᏳᏩᏂᏌᏓ ᏚᏂᏴᏍᏓᎩᏍᎨ, ᎠᏰᎵ ᎢᏴ ᎠᏦᎭᏴ ᎾᎥᏂ ᎠᏂᏁ ᎤᏂᏰᏥᏍᎨ ᎠᏂᏐ ᎠᏰᎵ ᎢᏴ ᎠᏂᏁ ᎠᏦᎭᏴ ᎾᎥᏂ ᏧᏍᏆᏅᏂ ᎬᏘ ᏚᎾᏚᏌᎡ ᎤᏂᏁᎬᏒ ᎠᎴ ᏓᎾᏦᎭᏱᎮ. ᎢᏳᏍᎩᏂᏃᏅ ᎤᏇᏓᎸ ᏯᏆᎴᏂᏙᎸ, ᎯᎠ ᎾᏍᎩ ᎠᎩᎾᏄᎪᏫᏍᏗ ᏓᎩᎸᏫᏍᏓᎪᎲᎢ; ᎠᎴ ᎥᏝ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏑᏰᏍᏗᏱ. ᎠᎴ ᎠᏴ ᎢᎩᎦᏙᎥᏒ ᎠᎴ ᎢᎪᎯᏳᏅ ᎤᏁᎳᏅᎯ ᎢᎩᎨᏳᎯᏳ ᎨᏒ-Ꭲ. ᎤᏁᎳᏅᎯ ᎠᏓᎨᏳᏗ ᎨᏒ ᏚᏙᎥ, ᎠᏓᎨᏳᏗᏃ ᎨᏒ ᎡᎯ ᎤᎾᎳᏅᎯ ᎠᏯᎣᎢ, ᎠᎴ ᎤᎾᎳᏅᎯ ᎾᏍᎩ ᎤᏯᎣᎢ. ᎤᎵᏍᏗ ᏄᎵᏍᏔᏁᎮ ᏣᏄᏏ. ᎠᏎᏃ ᎤᏕᎸᏛ ᏧᎾᏂᏏᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᏂᏏᏴᏫᎭ ᎠᏂᏍᎦᏯ ᏧᎾᏓᎵᎢ ᏚᏂᎧᎮᏍᏗ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᎠᏂᎨᏴ ᏗᎬᏩᏂᏰᎯ ᏚᏂᎧᎮᏍᏗ. ᏰᎵᏉ ᎢᏳᏪᏍᏘ ᎯᎸᎯᏴ ᎤᎪᎲ ᏱᎨᏒᎾ ᎩᎳ ᎠᏲᎰᏍᎬ, ᎦᏳᎳ ᎤᏲᎰᏒ ᏂᎨᏎ Perry ᎦᏙ ᏭᏅᏥᎳ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎪᎲ ᎥᏓᎵ ᎦᏚᎩ; ᎠᎢᏒᎢ ᎤᎾᏓᏅᏖᏔᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏰᎯ ᎯᎠ. ᎠᏂᏍᎦᎢᎲᏃ ᎢᏳᏍᏗ ᏅᎾᎵᏍᏔᏅᎩ. ᎾᏍᎩᏯᏉ ᎤᎬᏫᏳᎯ ᏚᏭᎪᏔᏅ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎾᎵᏥᏙᎲᏍᎩ ᏥᎩ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃ ᎮᏛ ᎤᎾᎵᏍᏕᎸᏙᏗᏱ. ᎠᎴ ᏓᎬᏩᏐᏢᎢᏍᏔᏂ, ᎠᎴ ᏓᎬᏩᎵᎥᏂᎵ, ᎠᎴ ᏙᏓᎬᏩᎵᏥᏍᏈ, ᎠᎴ ᏓᎬᏩᎵ; ᏦᎢᏁᏃ ᎢᎦ ᏔᎵᏁ ᏙᏛᎠᎴᏂ. ᏰᎵ ᏧᏕᏘᏴᏓ ᎠᏆᏕᏅ ᎨᏎ ᎭᏂ ᎦᏓᏁᏍᏛ ᎠᏙ, ᏥᎦᏔᎲ ᎢᏯᏆᏛᏁᏗ. ᎢᎦᏓ ᏧᎾᏦᏍᏗ ᎠᎩᏍᏗ Ꮎ ᏍᎩᏅ ᎭᎴᏉ ᏂᏙᎩᏨᏍᎪ ᏦᏥᏅᎪᎢ. ᎾᏂᎥᏰᏃ ᎤᏅᏒᏉ ᎤᎾᏤᎵ ᎨᏒ ᎤᏂᏲᎰᎢ, ᎥᏝᏃ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵ ᎨᏒᎢ. ᎾᏍᎩ ᎯᎠ ᏥᏌ ᏄᏪᏒ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏘᏅᏒᎩ, ᎤᏄᎪᏨᎩ ᏚᏪᏐᏨᎩ ᎩᏠᏂ ᎤᏪᏴᎢ, ᎾᎿ ᎠᏫᏒᏗᏱ ᎪᏢᏒᎩ, ᎾᎿ ᎤᏴᎸᎩ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ. ᏂᎯ ᏯᏑᏯᎩ ᎢᏳᏍᏗ ᏣᏚᎵᏍᎬ ᎠᎬᏱ, ᎩᎳ ᏱᎦᎵᏍᏓᏴᎲᎦ. “ᎠᏆᏓᏓᏏᎾᎲᏍᏙᏗᎩᏉ ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎤᏛᏅ ᎠᏓᎦᏘᏕᎯ. ᎣᎭᏁ ᏚᎾᏦᏩᏛ ᏃᎴ ᎤᏍᏗ ᏗᎦᎶᏙᏗ ᏓᏂᎳᎩᏍᎨ ᎤᏂᎾᏕᎨ. ᎠᏂᏆᎵᏏᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᎾᎴᏅᎮ ᎬᏩᏛᏛᎮᎸᏁᎢ, ᎬᏩᏔᏲᏎᎴ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎬᏩᎪᎵᏰᏍᎨᎢ. ᎢᏳᏃ ᎢᏣᏁᎳᏅᎯ ᏧᏬᏎᎸᎯ ᏱᎩ, ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎨᏥᏁᏤᎸᎯ, ᎠᎴ ᎪᏪᎵ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᏱᎩ, ᎤᏣᏘᏃ ᎤᏂᏬᏂᏒ ᏈᏓ ᏕᎤᎴᏁᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᏂᎯ ᎢᏥᎦᏔᎭ ᎿᏉ ᏰᎵ ᎪᎯᎩ ᎤᏁᎳᏅᎯ ᎠᏴ ᎠᏆᏑᏰᏒ ᎢᎦᏓᏡᎬ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏴ ᎬᏆᏛᎦᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩᏃ ᎤᏃᎯᏳᏗᏱ. “ᎭᏩᏃ,” ᎤᏛᏁ, ᎧᏃᎩᏍᎩ ᎢᏳᏍᏗ ᎦᏬᏂᏍᎩ. ᎠᏥᎸᏳᎵ ᎾᎥᏂ ᎤᎴᏫᏍᏔᏅ ᏣᎵ. ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ; ᏚᏩᏛᎰᎸᏰᏃ ᎠᎴ ᏚᏓᏴᎲ ᏧᏤᎵᎦ ᏴᏫ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᏂᎪᎯᎸ ᎣᏣᏓᏙᎵᏍᏗᏍᎪ ᎢᏨᏯᏅᏓᏗᏍᎪ, ᎾᏍᎩ ᎣᎦᏁᎳᏅᎯ ᎤᏓᏯᏅᏗ ᎨᏒ ᎢᏥᏯᏅᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎤᏍᏆᏗᏍᏗᏱ ᏂᎦᏛ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏓᏅᏘᏳ ᎨᏒᎢ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᏧᎸᏫᏍᏓᏁᏗ ᎬᏔᏅᎯ ᎤᎵᏂᎩᏛ ᎨᏒᎢ; ᏗᎦᏅᎯᏓ ᏔᎷᎩᏍᎩ ᏓᏆᏛᏅ, ᎩᎦᎨ ᎧᏃᏍᎦ ᎦᏚᎢᏣ ᏓᏋᏂᏍᏔᏅ. “ᎤᏙᎱᏳᎭᏍᎪ? ᎤᏛᏛᏁ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏛᏛᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᎦᎪ ᎤᏍᎦᏅᏤᎢ, ᎯᎠᏍᎪ, ᏧᎦᏴᎵᎨᎢᎨ, ᏗᎨᏫ ᏧᏕᏁᎢ? ᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎸᎩ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ; ᏥᎦᏘᏏ ᎢᏗᏢ ᏦᎴᏍᏗ, ᎬᏂ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ; ᏥᏰᏲᏅ ᎢᏳᏪᏍᏗ ᎠᎦᏘᏱ, ᏗᎨᏃ New Jersey ᏱᏤᎾᏉ. ᎦᏄᎸ ᎯᎦ! ᎢᏳᏃ ᏣᏱᎵᏙᎯ ᏗᏓᎪᏗᏍᎩᏱ ᏍᏓᎢᏎᏍᏗ, ᎠᏏᏉ ᏫᏍᏓᎢᏒᎢ, ᎭᏟᏂᎬᏁᎸᎭ ᎯᏯᏚᎵᏔᎡᏗᏱ; ᏗᏓᎪᏗᏍᎩᏱ ᎾᏏ ᏫᏱᏣᏘᏃᎦ, ᏗᏓᎪᏗᏍᎩᏃ ᏗᏓᏂᏱᏍᎩᏱ ᏫᏱᏕᏣᏲᎯ, ᏗᏓᏂᏱᏍᎩᏃ ᏗᏓᏍᏚᏗᏱ ᏫᏱᏣᏴᏓ. ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎥᏝ ᎩᎶ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᏱᎩ, ᎥᏝ, ᏌᏉ ᎤᏅ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᎢ, ᎾᏍᎩ ᎣᏓᎸ ᏭᎶᎭ ᎤᏓᏙᎵᏍᏔᏅᏎᎢ, ᎠᎴ ᎤᏨᏓᏇ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎲᎢ. “ᏰᎵ ᎤᎵᏍᎨᏓ ᏍᎩᎾᎾ ᏏᏆ ᎠᎾᏗᎭ.” Ꭷ ᎦᏙᎯ ᎨᏎ ᎯᎠ ᎠᏍᎦᏯ ᏍᏏᏉᏯ? ᎡᏙᏓ ᎠᏆᏛᏛᏅ. ᎡᏣᎪᎾᏓ, ᏫᎵᎻ. ᎭᏫᏂ ᏓᏳᏓᎴᏅ ᎤᏛᎸᎮᎢ ᏫᎵᎻ. ᏍᎩᎾᎾ ᏂᎦᏪ ᏓᏏᎳᏛ ᎠᏰᎵ.” ”ᏣᏂᏏᏗ ᎮᎾᏗᎾ,” ᎤᏛᏁ ᏌᎳᏓ. ᎧᏁᏌᎢ ᏭᏴᎴᎢ ᏧᏍᏆᏴᏍᏗ, ᎧᏁᏍᎦ ᎤᏚᏒᏓᏁᎢ. ᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᏄᎬᏫᏳᏌᏕᎩ ᎤᎿᎸᎯ ᎤᏁᏤᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏥᏌ ᎤᏓᏅᏩᏅ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏚᏳᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏴᏫ; ᎾᎯᏳᏍᎩᏂ ᎢᏥᎷᎨᏍᏗ ᎠᎴ ᏕᏥᏅᏫᏍᎨᏍᏗ, ᏞᏍᏗᏃ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ. ᎦᏙᏰᏃ ᎠᏗᎭ ᎦᎸᏉᏗ ᎪᏪᎵ? ᎡᏆᎭᎻ ᎤᏬᎯᏳᏁ ᎤᏁᎳᏅᎯ, ᎾᏍᎩᏃ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎴᎢ. ᎿᏉᏃ ᎤᎾᎸᎸ ᎤᏁᎵᏌᎾᏫᏛᎮᎢ, ᏆᏂᏛ ᏆᎴᏗ ᎤᎬᏫᏳᎯ ᏫᏚᏂᏲᎯᏎᎴᎢ. ᏃᎴ ᎤᏐᏱ, ᎨᎦᏑᏯᎩᏍᏗ ᏱᎨᏒᎾ. ”Ꭳ, ᎨᏍᏗ ᏯᏆᏅᏔ,” ᎤᏛᏁ ᏫᎵᎻ. ᎠᎴ ᏄᎨᏳᏅᎾ ᏥᎨᏎ ᎡᏘ ᎡᎶᎯ ᏥᎨᏎᎢ, ᏃᏯᏍᎩᏂ ᏧᏁᎳ ᏧᏛᏕᎢ ᎨᏒ ᎾᏍᎩ ᎠᎵᏥᏙᎲᏍᎩ ᏚᏳᎪᏛ ᏗᎧᎾᏩᏗᏙᎯ ᏥᎨᏎᎢ, ᎠᎴ ᏥᏚᏃᎱᎪᏔᏁ ᎡᎶᎯ ᎠᏂᏍᎦᎾ ᎠᏁᎲᎢ, ᎠᏎᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎡᏥᏅᏍᏓᏕᎸᎩ; ᎥᏝᏰᏃ ᏰᎭ ᎩᎶ ᏓᏆᏙᎥ ᎬᏗᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎯ, ᎾᏍᎩ ᎢᎬᏪᏅᏛ ᎤᏐᏅ ᎬᎩᏁᎢᏍᏙᏗ. ᎠᎴᎾ ᎤᏩᏌ. “ᏙᏳ ᏥᏍᎦᎢᎭ,” ᎤᏛᏁ ᎠᎳᏂ. ᎦᏅᏙᏗ ᎦᏚᎢ ᎤᏂᎳᎯᏙᎴ, ᎤᏂᎦᏛᎲᏍᎬ ᎤᎾᏤᎵ ᎠᏤᎯ ᎡᎶᎯ. ᎢᏨᏲᏪᎳᏏ ᎦᏲᎵ ᏏᎷᏪᏂ ᎤᏅᏍᏗ ᎾᏍᎩ ᎦᎳᏏᏛᏗ ᏂᎨᏒᎾ ᎢᏣᎵᏅᏟ ᎦᏓᏅᏖᏍᎬᎢ, ᎢᏒᏔᏲᏎᎭ, ᎠᎴ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ ᎾᏍᎩ ᎯᎠ ᎾᎿ ᏥᏕᏥᏙᎦ ᎤᏙᎯᏳᏒ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎩᎶ ᏧᏮᏕᏨᎯ ᏱᎩ ᎦᏁᎸᎢ, ᎠᎴ ᏧᎦᏴᎵᎨᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ, ᏅᏓᏳᎵᏍᏙᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎤᎵᏍᏆᏙᏅ, ᏂᎦᏓ ᎤᏣᎴᏓ ᏧᏤᎵ ᏴᏫ ᏬᎩᎷᏨ ᏩᏯ. ᎢᏳᏍᎩ ᏉᏃ ᏫᏄᏒᎸ ᎤᏪᏥ ᎣᏂ ᎡᎯ ᏂᎦᏛ ᎤᏪᏟᏌᏁᎢ, ᎠᎴ ᎤᏂᎩᏎ ᎢᏅ ᏭᎶᏎᎢ, ᎾᎿᏃ ᏄᏁᎸᎾ ᎡᎲᎢ ᏭᏤᏫᏙᎴ ᏧᎬᏩᎶᏗ ᎤᎲᎢ. ᏓᏂᏍᏔᏲᎯᎲ ᎤᏃᏴᎬ ᎤᎷᏨ ᏥᏙᎬ, ᏣᏁᎳ ᏧᎦᎭᏲᏛ ᎠᏓ ᎢᏓᎵᏍᏆᎵᏍᎪ ᎾᎥᏂᎨ, ᎤᎾᎵᎪᎲ ᏄᏍᏆᎸᏨ ᎢᏕᎲ, ᎠᏰᎵᏒ, ᎾᎥᏂᎨ ᏨᏍᎩᏃ ᏧᎵᏏᎬ ᏧᏫᏗᎸᎪ. ᎤᏂᏣᏘᏃ ᎠᏂᏁ ᎬᏩᏓᏡᏫᏍᏕᎢ; ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᏣᏥ ᎠᎴ ᎢᏣᎵᏅᏟ ᏙᏱᏗᏢ ᏗᎨᏣᏲᎭ. ᎤᏪᎵᏎ ᎦᏲᏟ ᎤᏬᏂᎯᏍᏗ ᎨᏎ ᎯᎠ ᎤᎵᏍᎨᏛ ᏂᎦᎵᏍᏗᏍᎬ. ᏕᏣᏲᎢᏎᎮᏍᏗᏍᎩᏂ ᎦᏪᏢᏗ ᎨᏒ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎠᎴ ᎠᏂᎦᏴᎵᎨ ᎤᏂᏃᎮᎸᏗ ᏥᎩ; ᎠᎴ ᏣᎸᏫᏍᏓᏁᎮᏍᏗ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᎨᏒᎢ. ᎯᏍᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏪᏗᏱ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ, ᎤᏥᎵᎪᎯᏃ ᎨᏒ ᎤᎧᎵᏦᏅᎩ ᎤᎵᏏᎩ; ᏓᏂᏃᏓᏛᏃ ᏚᏂᎩᏍᏙᎥᎩ ᏚᏁᎯᏍᏓᏁᎲ ᎢᏳᏍᏗ, ᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏍᎦᏯᏍᎪ ᏗᏩᎾᎨ ᏧᏄᏩᎢ? ᎬᏂᏳᏉ ᏗᏩᎾᎨ ᏧᎾᏄᏩᎢ ᎤᏂᎬᏫᏳᎯ ᏓᏂᏁᎸ ᎠᏁᎰᎢ. ᎤᎾᏰᎯᏍᏗ ᏕᎬᎦᏆᏂᏍᎨ Ross ᏃᎴ Ridge, ᏂᏛᏓᎴᏂᏍᎬ ᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ ᎠᏁᎯ ᎠᏂᏴᏫᏯ ᏕᏥᏍᏕᎵᏍᎬ, ᎠᏆᏁᎸᏓᎾ ᎣᎦᎵᎪᏗ ᎣᏥᏰᎵᏒ, ᎢᏧᎳ ᎠᏂᏍᎦᏯ ᎬᏇᏯᏔᏅ ᏤᏍᏗ ᏌᏬᏛᎭ ᎠᎹ ᏱᏂᏨᏁᎴᏍᏗ ᎤᏍᏗ ᎠᎦᏎᏍᏙᏗ ᎯᏰᎵᏒ. ᎯᎠ ᏥᏄᏪᏎᎢ, ᏕᏣᏙᎥ ᎬᏂᎨᏒ ᏅᏓᎦᏥᏴᏁᎵ ᎣᏣᎵᏅᏟ; ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏰᎵ ᏙᏓᎬᏃᎩᏍᏔᏂ. ᏦᏩ ᎠᎵᎹᏗᏱ ᎡᎯ ᎠᏥᎸᏉᏗ ᏗᎦᎳᏫᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎠᎦᏘᏰ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎷᎯᏍᏗᏱ, ᎾᏍᎩ ᎤᎷᏤᎢ, ᎠᎴ ᎾᏍᎦᎢᎲᎾ ᏭᏴᎴ ᏆᎴᏗᏱ, ᎠᎴ ᎤᏔᏲᎴ ᏥᏌ ᎠᏰᎸᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᏠᎨᏏ ᎩᎬ ᎤᎶᎨᏒ ᎠᏃᏎᎭ ᎪᎯ ᏥᎩ. ᏗᏓᏬᏍᏗ ᎨᏒ ᏗᏕᏲᏅᎯ ᎤᎬᏩᎵ, ᎠᎴ ᏗᏓᏏᏔᏗᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏧᏂᏲᎱᏒᎯ ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏗᎫᎪᏙᏗ ᎨᏒ ᎤᎬᏩᎵ. ᎠᎴ ᎤᏓᏔᏅᎯ ᎾᏍᎩ ᏣᏓᏅᏙ ᏧᎬᎥᏍᎬᎩ ᏣᏓᏅᎡᎸ, ᎠᎴ ᏂᎦᎥ ᎤᏢᏉᏗ ᎠᎴ ᏗᎦᎸᏉᏗ ᏥᎨᏒ ᎨᏣᏓᏅᎡᎸ, ᎠᎴ ᎥᏝ ᎿᏉ ᏫᏗᎨᏣᏩᏛᏗ ᏱᎨᏎᏍᏗ. ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎣᎦᏅᏔ ᎾᏍᎩ Ꮎ ᎠᏓᎶᏄᎮᏍᎩ, ᎠᏏᏉ ᏥᎬᏅᎩ, ᎯᎠ ᏥᏄᏪᏒᎩ; ᏦᎢᏁᏉ ᎢᎦ ᏙᏛᎦᎴᏂ. ᎤᏬᏂᏌ ᎡᏝᏪᎯ ᏄᏪᏎᎢ, ᎨᏍᏗ ᎣᏍᏓ ᏳᏛᎦᎾ ᏂᎦᏪᏍᎬ ᏫᎵᎻ. ᎦᏄᎸ ᏗᏗᏂᏃᎩᏍᎨᎢ ᏔᎳᏚ. ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏛᎩᏍᎩ ᏥᏁᎬᎢ, ᎠᎴ ᎪᎯᏳᎲᏍᎩ ᏅᏛᎩᏅᏏᏛ ᎾᏍᎩ ᎤᎭ ᎬᏂᏛ ᎾᎵᏍᏆᏗᏍᎬᎾ, ᎠᎴ ᎾᏍᎩ ᎥᏝ ᏧᏚᎪᏙᏗ ᏱᎩ ᎤᏍᎦᏅᏨᎢ, ᎠᏲᎱᎯᏍᏗᏍᎩᏂ ᎨᏒ ᎤᏓᏅᏒ, ᎬᏂᏛ ᏗᎨᏒ ᏬᎶᏒ. ᎾᏍᎩ ᏧᏍᎩᏃ. ᎾᎦᏛᏍᎪ ᏧᎾᏓᏅᏬᏗᏱ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ? ᏂᎦᏛᏍᎪ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏓᏂᏬᏂᎭ? ᏂᎦᏛᏍᎪ ᎠᎾᏁᏢᏗᎭ? ᎾᏍᎩ ᎦᎸᎳᏗ ᏭᎶᏒ ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎠᎦᏘᏏᏗᏢ ᏭᏬᎳ, ᏗᏂᎧᎿᏩᏗᏙᎯᏂ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᏗᎬᏩᏁᎶᏗ ᏄᎵᏍᏔᏅ. “ᎭᏂ ᎦᎸᎳᏗᏣ.” ᎾᏍᎩ ᏧᏴᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎠᎴ ᏧᎩᏎ ᎠᎴ ᏧᎨ ᎦᏚ ᎠᎦᎩᏗ, ᎠᎴ ᎾᏍᏉ ᏥᏚᏁᎴ ᎾᏍᎩ ᏣᏁᎮᎢ; ᎾᏍᎩ ᏂᎦᏳᎪᏛᎾ ᏥᎩ ᎩᎶ ᎤᎩᏍᏗᏱ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏅᏒ. ᏙᎩᎵᏂᎲᎢ, ᎣᎩᏴᎩᏅᎢ, ᎤᏓᏓᏍᎨᏛ ᎤᎾᎵᏖᎸᏅᎢ, ᏙᎩᎸᏫᏍᏓᏁᎲᎢ, ᎣᏥᏯᏫᏍᎬᎢ, ᎠᎹᏟ ᎣᏨᏍᎬᎢ, ᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎡᏆᎭᎻ ᎣᎩᏙᏓ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᏂᎯ ᎡᏆᎭᎻ ᏧᏪᏥ ᏱᎩ, ᎡᏆᎭᎻ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏱᏗᏥᎸᏫᏍᏓᏁᎭ. ᏕᏥᎧᎿᏩᏛᎡᎲ ᎤᎬᏫᏳᎯ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏆᎵᏍᎦᏍᏛᎾ ᎨᏒᎢ, ᎠᎴ ᏕᏥᎦᏌᏬᎢᎲᎢ, ᎠᎴ ᎠᎩᎪᎵᏰᏍᎩ ᎠᏆᎵᏩᏛᎡᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏂᏧᏏ ᎪᎱᏍᏗ ᎬᏋᏁᏗᏱ ᏚᏄᎪᏔᏅᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᏉ ᏕᎤᏲᏎ ᎦᏓᎭ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎤᏅᏙᏗᏱ ᎤᏅᏒ ᏧᏂᏐᏢᎢᏍᏙᏗᏱ ᏗᏂᏰᎸ ᎤᏅᏒᏉ ᏂᏓᎾᏓᏛᏁᎲᎢ; ᎾᎯᏳ ᎡᎶᏛ ᎤᎬᏫᏳᎯ ᎨᏎ ᏧᏗᏱ, ᎩᎶ ᎢᏳᏍᏗ ᎡᎮ ᎠᏥᎸ-ᎨᎶᎯ ᏤᎦᎳᏯ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎡᏆᏯ ᎠᎦᏘᏅᏔᏅ ᎨᎳ ᎨᏎᎢ, ᎤᏓᎵᎢᏃ ᎡᎳᏂ ᏧᏪᏥᏛᎯ ᎨᏒ ᎤᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ, ᎠᎴ ᎵᏏ ᏚᏙᎡᎢ. ᎠᏎᏃ ᎤᏉᏌᏁ ᎢᎸᏍᎩ ᎢᎪᎯᏛ; ᎣᏂᏍᎩᏂ ᎯᎠ ᏂᎤᏪᏎ ᎤᏩᏒ ᏧᏓᏅᏛᎢ, ᏞᏍᎩᏂᏃᏅ ᏱᏥᎾᏰᏍᎦ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎥᏝ ᏱᏗᏥᏯᏁᎶᏗ ᏴᏫ; ᎡᏙᏓ ᎠᎩᎨᏳᎯᏳ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏨᎨᏳᎢᏳ ᏂᎯ. ᏅᏩᏍᏗᏗᏎᏍᏗᏉ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎤᏬᎵᏨ ᏈᏓ ᎦᏬᏂᏍᎬᎢ ᎣᏒ ᎤᏰᎸᏒ ᏅᏓᎵᏍᏙᏔᏁ ᏄᏍᏚᎢᏒᎾᏉ ᎨᏎ ᎦᎶᎯᏍᏗᏱ, ᏚᏍᏆᎸᏔᏁᏉ ᏭᏴᎴᎢ ᎠᎴ ᏭᏃᏁ ᏈᏓ ᎦᏙᎬ ᎦᎶᎯᏍᏗᏳᎶᏗ. ᏥᏌᏃ ᎤᏁᏟ ᎯᎠ ᏂᏑᏪᏎᎴᎢ, ᏏᏌ ᎡᏣᎫᏴᏏ ᏏᏌ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏃ ᎤᏄᎳᏅᎯ ᎤᏤᎵᎦ. ᎢᎬᏩᏍᏆᏂᎪᏎᎴᏃ. ᎤᎵᎮᎵᏍᏗ ᎤᏓᏅᏖᎢ. ᎠᎴ ᎤᎾᎴᏅᎮ ᎠᏂᏲᎵᎮᎢ, ᎢᏨᏲᎵᎦ, ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ, ᎠᎾᏗᏍᎨᎢ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏨᏃᎮᎮᎭ, ᎾᏍᎩ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏱᎬᏗ ᏱᎦᏬᏂᎭ, ᏥᏌ ᎠᏥᏍᎩᏅᏛᎯ ᎥᏝ ᏰᎵ ᏴᎬᏛ; ᎥᏝ ᎠᎴ ᎩᎶ ᏥᏌ ᎤᎬᏫᏳᎯ ᏴᎬᏛ, ᎬᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏱᎬᏗᎭ. “ᎯᎠ ᏭᎶᏒᏍᏛ ᏭᏲᎢᏴ ᎠᏆᏛᎦᏅᎯ.” ᎠᏴ ᏉᎳ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎬᎩᏁᏤᎸᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎩ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎢᎦᏤᎵᎦ, ᎾᎯᏳᎮᏃ ᏥᎨᏒ ᎤᏟ ᎢᎦ ᎡᎳᏗᏊ ᎣᏤᏙᎯ ᎨᏒ ᎢᎸᏢ ᏲᎨᎾ. ᎠᏴᏃ ᏃᏊ ᎠᎩᏍᎦᏍᏓᏁᎲ ᎤᎴᏅᎲ. ᎠᎩᎦᏛᏅᏒ ᏄᏛᎾᏕᎬ ᎠᏌᎻᏓ, ᎤᏩᏌ ᎤᏬᏛ. ᎧᏅᏂᏍᎩ ᎡᎲᎢ ᎠᏎ ᎤᏦᏍᏗ ᎨᏐᎢ, ᏂᎦᎥ ᏗᏌᏛᏗ ᏃᎴ ᏛᎦ ᏗᎦᏯᎩᏍᏗ. ᏃᏗ ᎤᎷᏤ ᎰᎻ ᎡᏝᏪᎯ ᎨᏒ ᏑᎾᎴᎢ, ᏧᏴᏨ ᎢᏣ ᎦᎶᎯᏍᏗ ᎤᏍᏚᎩᏎ. ᎠᎬᏱ ᎤᏕᏃᏅ ᏫᎵᎻ, ᎧᏁᏌᎢ ᎡᎮ ᎠᏓᏍᏓᏴᏗ ᎾᎥᏂ. ᏥᏌᏃ ᏧᏂᏦᏯᏍᏗ ᎤᏁᎩᏒ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉ ᎠᎵᏍᏆᏓ; ᎤᎵᏍᎫᏫᏒᏃ ᏕᎤᏲᏒᎩ ᎤᏓᏅᏙ. ᎠᎴ ᎣᎦᏛᏅᎢᏍᏗ ᏦᏥᏍᏛᏗᏍᏙᏗᏱ ᎾᏂᎥ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ, ᎾᎯᏳ ᎢᏦᎯᏳᏒ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ. ”ᎣᏍᏓᏗ ᎨᏎᎢ!” ᎠᏂᏫᎾ ᎠᏂᎳᎨᏴ ᏗᎫᏩᎭᏄᏫ ᏧᏐᏴᎭ ᏃᎴ ᎦᏌᎴᏅ, ᏗᎦᏓᏁ ᎢᏗᎦᎵᏍᏗᏍᎩ ᏱᎨᏒᎾ, ᏩᏚᎵᏏ ᎤᏃᏒᏅ ᏧᏂᏅᎵᏰᏛ. ᎩᎶ ᎤᏓᏅᏖᏗ ᎨᏎᏍᏗ. ᎬᏩᎾᏝᎢᏃ ᎤᎾᏙᎴᎰᏒ ᎤᏚᎩ ᎤᏅᏒ ᏧᎬᏩᎶᏗ ᎤᏂᏩᏛᏗᏱ ᎤᏲᏨᎢ, ᏗᏂᏂᏴᎲᎩ ᏉᎳ ᎠᎴ ᏌᏱᎳ, ᎠᎴ ᎾᏍᎩ ᎦᏃᏙᏗᏱ ᏫᏚᎾᏘᏃᎮᎸᎩ ᏗᎨᎦᏁᎶᏗ. ᏣᏂᏃ ᎤᏂᎵᏤᎸᎩ, ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎾᏍᎩ ᎾᏥᏍᏕᏙᎲᎩ ᏦᏓᏂ ᏍᎪᏂᏗᏢ, ᎾᏍᎩ ᏥᏃᎮᏍᎬᎩ, ᎬᏂᏳᏉ ᎾᏍᎩ ᏓᏓᏬᎠ, ᎠᎴ ᏂᎦᏛᏉ ᎬᏩᎷᏤᎭ. ᎠᏍᎪᎯᏃ ᏕᎤᎷᎬ ᏥᏕᏣᎪᎲᎩ, ᎾᏍᎩ ᎠᏍᎪᎯ ᎤᏂᎬᏫᏳᎯ ᎦᏛᎦ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎢᏳᎾᎵᏍᏙᏗᏱ ᎨᏒ ᎠᏏ ᎨᏥᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎨᎦᎵᏍᎪᎸᏓᏁᎭᏍᎩᏂᏃᏅ ᎤᏂᎬᏫᏳᎯ ᎤᏂᏁᎢᏍᏗ ᎨᏒ ᎤᏂᏁᎢᏍᏗᏱ ᏌᏉ ᎢᏳᏟᎶᏛ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏠᏱ ᎧᏁᎬᎢ. “ᎤᎸᏕᎦ. ᎦᎪ ᏂᎯ ᏂᏣᏛᏅᎢ ᎤᏓᏑᏯ ᎠᏏᎾᏌᏂ ᎠᎴ ᎠᎦᏔᏂᎢ? ᎾᏍᎩ ᏫᎦᎾᏄᎪᏩ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ ᏫᎬᏙᏓ ᎣᏏᏳ ᎾᏛᏁᎲᎢ, ᎠᎴ ᏫᎬᏙᏓ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᏔᎵ ᎤᏛᏕᏍᏗ ᎤᏓᏅᏘ ᎨᏒᎢ. Ꭷ, ᏔᎴᎲᎦ, ᎭᏠᎠᎯ, ᎠᎴ ᏘᏍᏓᏩᏚᎦ ᎪᎱᏍᏗ ᏂᏗᏣᏢᏫᏎᎲᎾ, ᎠᏴᏰᏃ ᏗᏥᏅᏏᏛ. ᎢᏥᎲᏒᏰᏃ ᎦᎵᏦᏙᏗ ᎼᎳᎩ ᎤᏤᎵᎦ ᎠᎴ ᎤᏁᎳᏅᎯ ᎢᏥᏰᎸᎯ ᎴᎻᏈᏂ ᎤᏤᎵᎦ ᏃᏈᏏ, ᏗᏟᎶᏍᏔᏅᎯ ᎾᏍᎩ ᏗᏦᏢᏅᎯ ᏗᏣᏓᏙᎵᏍᏓᏁᏗ; ᏓᏗᎶᏂᏃ ᎤᏗᏗᏢ ᏫᏙᏓᏨᏯᎧᏂ. ᎾᎯᏳ ᎡᎶᏛ ᎤᎬᏫᏳᎯ ᎤᎴᏅᎮ ᏚᏕᏯᏙᏔᏁ ᎢᎦᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ. ᎠᎹ ᎨᏴ ᏭᎶᏒ. “ᎾᏍᎩᎩ!” ᎤᏛᏁ, ᎤᏲ ᎤᏰᎸᎯ. ᎧᏁᏍᎬ ᎤᎾᏏᏁ ᏧᏍᏆᏴᏍᏗ. ᏣᏉᎩ ᎣᏍᏓ ᎠᎩᏰᎸᏍᎩ ᏱᎩ ᎠᏆᏛᏅ. ᏗᎩᎦᏴᎵᎨᎢ ᎹᎾ ᎠᎾᎵᏍᏓᏴᏗᏍᎬᎩ ᎢᎾᎨᎢ, ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ; ᏕᎠᏁᎲᎩ ᎦᏚ ᎤᏂᎩᏍᏗ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ. ᎿᏉᏃ ᎤᎾᏓᏅᏘ ᎬᏩᏂᏔᎷᎩᏍᎩ ᎨᏎᏍᏗ ᎤᏂᏙᏓ ᎤᏤᎵᎪᎯ, ᏅᏙ ᎾᏍᎩᏯᎢ. ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ. ᏥᏌᏃ ᏔᎵᏁ ᏥᏳᎯ ᏙᎤᏪᏐᏨ ᎢᏍᎪᎾ ᏫᎤᎷᏨ, ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏓᏡᏫᏍᏔᏁᎢ; ᎠᎴ ᎥᏓᎵ ᎤᎶᏗ ᎡᏙᎮᎢ. ᏱᏗᏙᏪᎵ ᎤᏝᏂᎩᏓ ᏱᏂᎬᎦ. ᎦᏙᏃ Ꮭ ᏗᏍᏆᏂᎪᏙᏗᏱ ᏱᏫᏙᏣᏁ ᏗᏆᏤᎵ ᎠᏕᏄ, ᎠᎩᎷᏥᎸᏃ ᏗᏆᏤᎵ ᎠᎴ ᎤᏂᏁᏉᏨᎯ ᏱᏓᎩᎩᏎᎢ. ᏚᏟᎶᏍᏓᏁᎴᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎤᏪᎿᎢ ᎠᏍᎦᏯ ᎤᎶᎨᏒ ᎤᏣᏘ ᎤᏛᏒᏁᎴᎢ; ᏞᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏱᏣᏲᏍᏔᏁᏍᏗ ᎠᎵᏍᏓᏴᏗᏉ ᏱᏅᏧᎵᏍᏙᏔᏁᏍᏗ. ᏄᏓᎴᏒᏰᏃ ᎪᎱᏍᏗ ᎤᏙᎯᏳᎯ ᎦᏓᎭ ᏂᎨᏒᎾ; ᎤᏲᏍᎩᏂ ᎾᏛᏁᎰ ᎾᏍᎩ Ꮎ ᏴᏫ ᎠᎵᏍᏓᏴᎲᏍᎬ ᎩᎶ ᏱᏗᎪᏕᏍᏗᎭ. ᎠᎴ ᎯᎠᏉ ᎾᏍᏉ ᎤᏅᏒ ᏳᏂᏃᎮᎸ, ᎢᏳᏃ ᎤᏲ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎤᏂᏩᏛᏛ ᏱᎩ ᏕᎦᎳᏫᎥ ᏥᏙᎬᎢ, ᎠᏥᎸᏳᎸᏗ ᎾᎥ ᏙᎩᎾᏅ ᎠᏆᏛᎦᏍᏔᏅ ᎧᏃᎮᏍᎬ. ᎲᎦ ᎢᏳᏓᏅᎯᏓ ᏫᎦᎶᎯᏍᏗ? ᎥᏝᏰᏃ ᏱᏚᎾᏓᎴᎾᎠ ᎠᏂᏧᏏ ᎠᏃ ᎠᏂᎪᎢ; ᎾᏍᎩᏉᏰᏃ ᎤᎬᏫᏳᎯ ᎾᏂᎥ ᎤᎾᏤᎵᎦ ᎤᏣᏘ ᎤᏪᎿᎢᏳ ᏧᏍᏕᎸᏗᏱ ᎾᏂᎥᎬᏩᏓᏙᎵᏍᏓᏁᎯ. ᎠᏎᏃ ᏈᏓ ᎠᎴ ᏣᏂ ᎤᏂᏁᏨ ᎯᎠ ᏂᏚᏂᏪᏎᎴᎢ; ᎢᏳᏃ ᏚᏳᎪᏕᏍᏗ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏂᏍᎬᎢ ᏂᎯ ᎤᏟ ᎢᎦᎢ ᎢᏨᏯᏛᏓᏍᏓᏁᏗᏱ ᎡᏍᎦᏉ ᎤᏁᎳᏅᎯ, ᏗᏧᎪᏓ ᏂᎯ. “ᏌᎳᏓ, ᏙᎢᏳᏍᏗ ᏫᏣᏍᏕᎵᏛᎢ? ᎤᏛᏛᏁ ᏫᎵᎻ. ᎿᏉᏃ ᎠᏏᏴᏫ ᏥᏌ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏧᏙᎢᏛ, ᏌᏩᏂ ᎤᏪᏥ, ᎾᏍᎩ ᎤᏡᏗᏍᏍᎩ ᎢᏳᎵᏍᏙᏗ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙᎨ ᎤᏍᏗ ᎤᏟ ᎠᎯᏗᏳ ᎧᏁᎢᏍᏗᏱ, ᏥᎪ ᎯᎠ ᏱᎾᎦᏪᎠ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ? ᎯᎠᎨ ᏱᎾᎦᏪᎠ, ᏔᎴᎲᎦ ᎠᎴ ᎨᏓ? ᎩᎶᏃ ᏌᏉ ᎯᎠ ᏧᎾᏍᏗ ᎨᏒᎢ ᎤᎵᏍᏈᏗᏉ ᎠᎧᎵᎢ ᎤᏴᏜ ᎠᎹ ᎠᎱᎥᏍᎨᏍᏗ ᎠᎩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎤᏙᎯᏳᎯᏯ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎾᏍᎩ ᎤᏲᎱᏎᏗ ᏱᎨᏎᏍᏗ ᎠᎦᎫᏴᎡᏗ ᎨᏒᎢ. ᏂᎦᎥᏍᎩᏂ ᏧᏓᎴᏅᏛ ᏗᎬᏍᎪᎸᏅᎯ ᏥᎨᏐ ᎢᎦ-ᎦᏘ ᎬᏗ ᎬᏂᎨᎡ ᎢᏗᎬᏁᎸᎯ ᎨᏐᎢ; ᎾᏍᎩᏰᏃ ᎬᏂᎨᏒ ᎢᏗᎬᏁᎯ ᎨᏒ ᎾᏍᎩ ᎢᎦ-ᎦᏘ. ᏈᏓᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏂᏥᎥ ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᏫᏕᏣᏬᏣ, ᏥᏌ ᎦᎶᏁᏛ ᏕᎤᏙᏍᏛᎢ, ᎡᏥᏙᎵᏍᏗᏱ ᎢᏥᏍᎦᏅᏨᎢ;; ᎦᎸᏉᏗᏳᏃ ᎠᏓᏅᏙ ᏓᏰᏥᏁᎵ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏱᏍᏆᏓᏙᎵᏍᏓᏁᎸ, ᏂᎦᏗᏳ ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ. ᎤᏂᎳᏅᎯ ᎤᏩᏒᎯᏳ ᎠᎦᏔᎾᎢ ᏥᎩ, ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ. “ᎮᎵᎠᏍᎪ ᏄᏓᎴ ᎠᏓᏅᏖᏍᎨᏍᏗ ᎤᎵᏗᏣ ᏏᏆ ᏃᎴ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᏃᎴ ᎧᏅᏂᏍᎩ?” “ᏛᎦ ᏕᎯᏯᎩᏍᎪ?” ᎭᏫᏂ ᏓᏳᏓᎴᏅ ᎤᏛᎴᎮ ᏫᎵᎻ. ᏣᎵ ᏃᎴ ᎤᎵᏘᎾᎥ ᎤᎾᎵᏓᎩᏎ ᎾᏍᎩᏯ ᎨᏥᏌᎭᏙᎭᏴ ᎠᏫ ᎠᎴ ᏇᎯ ᎤᎾᏟᏫᏛᏗ ᎠᏂᏃᎯᎵᏙ ᎢᏣ. ᎤᏁᏨᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᏓᏰᏍᎩ ᎤᏢᎬ ᎤᎵᏛᏔᏁᎢ, ᎠᎴ ᎤᏓᏅᎦᎸᏛ ᎨᏎᎢ. ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎵᏓᏍᏗᎭ ᏂᏥᎦᏔᎥᎾ ᎨᏒ ᎢᏳᏍᏗ ᏄᏍᏛ ᎪᏪᎸᎢ, ᎠᎴ ᏄᎵᏂᎬᎬ ᎤᏁᎳᏅᎯ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏂᏲᏎ ᏗᎦᏯᎷᏗ ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᏂᏚᎩᏨᏂᏒᏃ ᏌᏉ ᎢᎦᎦᏛ ᎠᏁᏙᎮ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎦᏚ ᎠᏂᎬᎭᎷᏯᏍᎨ ᏓᏓᏁᎳᏗᏒᎢ, ᏓᎾᎵᏍᏓᏴᎲᏍᎨ ᎠᎾᎵᎮᎵᎨ ᎠᎴ ᎤᏠᎾᏍᏗ ᏄᏓᏑᏴᎾ ᎨᏎ ᏧᏂᎾᏫᏱ, ᏙᎩᎾᏦᏒ ᏂᎦᏓ ᎠᏃᎵᎩ ᎠᏛᏁᎵᏍᎩ Mrs. Chapman ᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᏧᏴᏨᏗᏣ ᏓᏳᎶᏒ ᏗᎦᎳᏫᎩ ᏧᏪᏅᏒ, ᎤᏍᏗ ᎤᎵᏏᎩ ᎠᏍᎦᏯ, ᎦᏲᏟ ᎤᏍᏘᏰᎩ ᏃᎴ ᎦᏲᏟ ᎤᏁᎷᎯ. ᎾᏍᎩ ᎠᏆᏕᎶᎰᏌ, ᎠᎩᏁᎢᏍᏔᏅ ᎣᏍᏔᎵᏍᏔᏴᎲᏍᎬ. ᎠᎴ ᎯᎦᏔᎭ ᏄᏍᏛ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎯᎪᏩᏘᎭ ᏧᏓᎴᏅᏛ ᏧᏓᎴᎿᎢ ᎨᏒᎢ, ᎠᎴ ᎯᎪᏩᏘᎭ ᏧᏓᎴᏅᏛ ᏧᏓᎴᎿᎢ ᎨᏒᎢ, ᎡᏤᏲᏅᎯ ᏗᎧᎿᏩᏛᏍᏗᏱ; ᏝᏍᎪ ᏲᎯᏳᎲᏍᎦ ᎠᏴ ᎠᎦᏴᎵᎨᎢ ᏥᏯᎥᎢ, ᎠᎴ ᎠᎦᏴᎵᎨ ᎠᏴ ᎠᎩᏯᎥᎢ? ᎧᏃᎮᏛ ᏥᏨᏃᎮᎮᎰᎢ, ᎥᏝ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᏱᏥᏁᎪᎢ, ᎠᎦᏴᎵᎨᎢᏍᎩᏂ ᏣᎩᏯᎠ ᎾᏍᎩ ᏚᎸᏫᏍᏓᏁᎰᎢ. “ᎨᏍᏗᏃ ᎣᏍᏓ ᎠᎩᏰᎸᎯ ᏱᎩ ᎤᏲ ᎧᏃᎮᏓ ᎠᏆᏗᎦᎴᏲᏗ,” ᎤᏛᏁ ᎤᏃᏕᎾ, ”ᎠᏎᏃ ᎯᎳᏦᎯᏓ ᏂᎨᏨᏁ, ᏓᎨᏣᎵᏰᏃ, ᏍᎩᏃ ᎢᏳᏍᏗ.” ᎠᎴ ᎦᎪ ᎠᏍᏛᎩ ᎨᏒ ᏮᏓᎦᎶᏏ? (ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏧᎴᏙᏗᏱ;) ᎯᏬᏂᏍᎬ ᎣᏍᏛ ᏱᎩ ᎾᏍᎩ ᎬᎪᏁᎶᎯᏍᏗ ᏂᎨᏒᎾ; ᎾᏍᎩ Ꮎ ᏣᏡᏗᏍᎩ ᎬᏩᏕᎰᎯᏍᏗ ᏱᎩ ᏄᎲᏅ ᎨᏒ ᎢᏳᏍᏗ ᎪᎱᏍᏗ ᎤᏐᏅ ᎶᏃᎮᏗᏱ. ᏙᎢᏳᏍᏗ ᎠᎵᏍᏆᏙᏗ ᎧᏃᎮ? ᏂᎯ ᎾᏍᏉ ᏍᎩᏍᏕᎵᏍᎬ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎣᎩᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᎣᎩᏙᎵᏨ ᎤᏂᏣᏘ ᎢᏳᏅᏂᏌᏛ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎤᏂᏣᏘ ᎤᎾᎵᎮᎵᏤᏗᏱ [ᎤᏁᎳᏅᎯ] ᎠᏴ ᎨᏒ ᎢᏳᏍᏗ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᏃᏯ, ᎤᏁᎳᏅᎯ ᎤᏪᏯᏔᏅ ᎤᏁᎢᏍᏓᏁᎸ ᏧᏓᎴᏅᏛ ᎠᏏ ᎤᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎤᎾᏰᏎᎢ, ᎤᏛᏅᎢᏍᏔᏁ ᏥᏳ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏚᏓᏘᎾᎥᎢ; ᎾᏍᎩ ᏄᏛᏁᎸ ᎤᏮᏔᏁ ᏚᏭᎪᏓᏁᎴ ᎡᎶᎯ, ᎠᎴ ᎤᏤᎵ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᎪᎯᏳᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ. ᏃᏗ ᎤᏍᏆᎸ ᎤᏓᏏᏂᏕᎾ ᎠᎵᏍᏓᏴᏗ ᎤᏪᎵᏎ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎯᎸ ᎤᏪᏅᏍᏗ. ᎠᎴ ᎤᎩᏨᏛ, ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎤᎶᏐᏅᎯ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏆᎵᏏ ᏕᎬᏩᎳᏫᏤ ᏆᎴᏗ, ᎠᎻᏟᏯ ᎡᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᏥᎨᏳᎢ ᎢᏧᎳᎭ ᎣᏍᏙᎯᏳᎲᏍᎩ ᎤᎬᏫᏳᎯ. ᏍᏉᏰᏃ ᎤᎾᎵᏍᏔᏴᏗ ᎧᏅᏂᏍᎩ ᎤᏐᏱ ᏫᎬᎬᏛᎢ.” ᎦᎸᎶ ᎠᎴ ᎡᎶᎯ ᏙᏓᎦᎶᏐᏂ, ᎠᏴᏍᎩᏂ ᎠᎩᏁᏨᎢ ᎥᏝ ᏴᏓᎦᎶᏐᏂ. “ᏍᎩᎾᎾ ᏥᏍᏕᏥ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏆᏏᏗᏱᏃ ᎤᏂᎶᏐᏅ ᏆᎻᏈᎵᏱ ᏭᏂᎷᏤᎢ. ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏥᎪᎥᎩ, ᎡᎲᎩ, ᎠᎴ ᎥᏝ ᏰᎭ; ᎠᎴ ᏙᏛᎴᏂ ᏫᎾᏍᏛᎾ ᏗᏔᎴᏒ ᏓᎦᏄᎪᏥ, ᎠᎴ ᎠᏥᏛᏙᏗᏱ ᏴᏓᎦᎶᏏ, ᎾᏍᎩᏃ Ꮎ ᎡᎶᎯ ᎠᏁᎯ ᎾᏍᎩ ᏚᎾᏙᎥ ᏂᏗᎪᏪᎳᏅ ᎾᎬᏂᏛ ᎪᏪᎵᎯ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᎴᏅᏛ ᏛᏂᏍᏆᏂᎪᏏ ᎠᏂᎪᎲᎭ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᏍᎩ ᏤᎲᎩ, ᎠᎴ ᏁᎲᎾ ᏥᎩ, ᎠᏎᏃ ᎾᏍᎩ ᏤᎭ. ᎣᏏᏳᏃ ᎢᏣᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᎥᏝᏰᏃ ᏴᎦᎨᏣᎫᏴᏏ; ᎡᏣᎫᏴᎡᏗᏰᏃ ᎨᏎᏍᏗ ᏓᎾᎴᎯᏌᏅ ᎤᎾᏓᏅᏘ. ᏃᎴ, ᎤᏓᏅᏖᏗᏍᎬ ᎤᎯᏐᏓᏁᎲ ᎣᏍᏓ ᏱᎨᏒᎾ ᎨᏒ ᎠᏂᏁᎸ ᏎᎳ ᏃᎴ ᎤᏲ ᎤᎾᏓᏅᏛ ᏧᎸᎢ, ᎢᏧᎳ ᏓᏰᎵᏒ, ᎠᎵᏙᎩᏯᏍᏗ ᏃᎴ ᎠᏓᎸᏉᏗ, ᏚᎾᎵᎪᎲ, ᎢᏧᎳ ᎠᏁᎸᏗᏍᎬ ᎣᏍᏓ ᎢᏳᏩᏁᏗ ᎡᎶ ᎤᏲ ᎢᏳᎵᏍᏔᏅ. ᎢᏳᏃ ᎡᏥᎩᎵᏲᎢᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᏧᏪᏥ ᏂᏓᏛᏁᎲ ᏂᏣᏛᏁᎭ ᎤᏁᎳᏅᎯ; ᎦᎪᏰᏃ ᎡᎭ ᎠᏲᎵ ᎾᏍᎩ ᎤᏙᏓ ᏄᎩᎵᏲᎢᏍᏗᏍᎬᎾ? ᎦᏅᏅᏃ ᎠᎾᎢᏎ ᏥᎷᏏᎵᎻ ᏣᏂᎦᏖᎢ; ᏥᏌᏃ ᎢᎬᏱ ᏚᏪᏅᎡᎴᎢ; ᎤᏂᏍᏆᏂᎪᏎᏃ; ᎾᏍᎩᏃ ᎠᎾᎵᏍᏓᏩᏗᏒ ᎠᏂᏍᎦᎢᎮᎢ. ᏔᎵᏁᏃ ᏚᏯᏅᎲ ᏔᎳᏚ ᎢᏯᏂᏛ, ᎤᎴᏅᎮ ᏚᏃᏁᎴ ᎾᏍᎩ ᎢᏳᎵᏍᏓᏁᎵᏓᏍᏗ ᎨᏒᎢ. ᎾᏍᎩ ᏧᎵᏂᎪᎯᏍᏙᏗᏱ ᏗᏥᎾᏫ, ᎾᏍᎩ ᎦᏰᏧᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎾᏍᎩ ᎢᎩᏙᏓ, ᎾᎯᏳ ᎦᎷᏨᎭ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎠᏁᎮᏍᏗ ᏂᎦᏗᏳ ᎤᎾᏓᏅᏘ ᏧᏤᎵᎦ. ᎩᎳᏊᏃ ᎢᏴᏓ ᎦᏌᏆᎸ ᎠᏓᏪᎳᎩᏍᎩ ᎠᎳᏍᎦᎸᏗ ᎢᎩᏓ ᏭᎵᏌᎳᏓᏅ ᎦᎸᎶ ᎢᏗᏢ ᎠᎴ ᎢᎸᏍᎩᏊ ᎢᎳᏏᏗ ᎢᏴ ᏭᏍᎪᎸᏨ. ᏃᎴ ᎧᎪ ᏂᎯ?” ᎠᎴ ᎠᏤᎵᏍᏛ ᏗᎤᎾᏨᏎᎢ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏄᎵᏍᏔᏂᏙᎸ ᏚᏂᏃᏁᎴ ᏌᏚ ᎢᏯᏂᏛ, ᎠᎴ ᏂᎦᏛ ᎠᏂᏐᎢ. ᎠᎴ ᏥᎦᏔᎭ, ᎾᏍᎩ ᎿᏉ ᏫᏨᎷᏤᎸᎭ ᏂᎦᎥ ᎣᏍᏛ ᎤᏓᏁᏗ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ ᏥᏰᎮᏍᏗ ᏫᏨᎷᏤᏗ ᎨᏎᏍᏗ. ᎩᎳᏈᏴ ᏄᏓᎴ ᏭᏃᎮᎸ ᏣᎵ, ᏂᏕᎬᏁᎲ ᎾᏂᏏ ᏱᏚᏩᏰᏫᏌ ᏧᏑᎶ. ”ᏙᏱ ᏫᎧᎲᎦ ᏍᎩᎾᎾᏂ!” ᎤᏛᏁ ᎠᎳᏂ. “ᏙᏕᏣᏙᎠ? ᎤᏓᏅᏘ ᎤᏓᏛᏛᏁ. XXII. ᎤᎦᏃᏩ ᏚᏃᏄᎥᏍᎬ ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏥᎩᏁᎭ ᎢᎦᏓᏎᎪᎩᏍᏗᏱ, ᏨᏗᏓᎴᎲᏍᎦ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎦᎪ ᏂᎯ, ᏣᎬᏫᏳᎯ? ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏴ ᏥᏌ ᎤᏲ ᏥᏂᏴᏁᎭ: ᎤᏕᏯᏙᏗᏳ ᏗᏣᎲᏖᏍᏗᏱ ᏗᎪᏍᏓᏯ. ᏉᎳᏃ, ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏒ ᏄᏛᏁᎸᎩ, ᏚᏴᏎᎸᎩ, ᎠᎴ ᏦᎢ ᏄᎾᏙᏓᏆᏍᎬ ᎪᏪᎵ ᎬᏗᏍᎬ ᏕᎦᏬᏁᏗᏍᎬᎩ, ᎾᎯᏳᏰᏃ ᎨᏒ ᏓᏣᎵᏰᎢᎶᎮᎵ, ᎾᏍᎩ ᎨᏣᏍᎦᎩ ᎨᏒ ᏙᏛᏁᎵᏍᎦᎸᎯ ᎬᏩᏚᏫᏛ, ᎠᎴ ᏙᏓᎨᏣᏚᏫᏍᏔᏂ, ᎠᎴ ᏅᎦᏘᏓᏂ ᎨᏣᎵᏍᏚᏕᏍᏗ. ᎢᏳᏰᏃ ᏱᏙᎯᏳᎲᏍᎦ ᏥᏌ ᎤᏲᎱᏒᎢ, ᎠᎴ ᏚᎴᎯᏌᏅᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎾᏍᎩ Ꮎ ᏥᏌ ᎤᎾᎵᏍᎦᏍᏙᏔᏅᎯ ᎤᏂᎵᏅᏨᎯ ᎤᏁᎳᏅᎯ ᏧᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᏥᏌ ᎦᎷᏨᎭ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏕᎯᎪᏩᏗᏍᎪ ᎯᎠ ᎾᏍᎩ ᏤᏆ ᏓᏓᏁᎸᎢ? ᎥᏝ ᏌᏉ ᏅᏯ ᎧᏃᎯᏴᎯ ᏱᎨᏎᏍᏗ ᏱᏚᏓᏌᏝᎮᏍᏗ, ᎾᏍᎩ ᏂᎪᎲᏔᏅᎾ ᏱᎨᏎᏍᏗ. ”ᏃᏥᎥ ᎣᎩᎸᏉᏗ.” ᎠᏆᏓᏅᏖᏗ ᎨᏐᎢ, ᎢᏳᏍᏗᏉ ᏛᎦ, ᏍᎪᏯ ᏃᎴ ᎠᏂᏃᎯᎵᏙ ᏍᎪᏯ ᏗᏥᏂᏴᏗ ᎨᏐᎢ. ᏚᏏᏔᏕᏃ; ᎠᎴ ᎩᎳᏉ ᎢᏴ-Ꮫ ᎦᏥᏃᏍᏛ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ. ᎾᏍᎩ ᏧᏩᎫᏔᏅᏒ ᏂᏣᏍᏕᎵᏍᎬᎾ ᏥᎨᏒᎩ, ᎪᎯᏍᎩᏂ ᏥᎩ ᏣᏍᏕᎵᏍᎩ, ᎠᎴ ᎠᏴ ᎠᎩᏍᏕᎵᏍᎩ; ᎢᎦᏓ ᏅᏬᏘ. ᏝᏃ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏱᎦᎩ ᎯᎠ ᏥᏚᏟᎶᏍᏗ ᎠᎴ ᏥᏚᏬᏪᎳ. ᎤᏓᏏᏂᏕᏅ ᎠᎩᏩᏒᎬ ᏧᎦᏒᏍᏗ ᎤᎾᏓᏍᏔᏴᏗ ᏕᎪᏛ, ᏧᎵᏏᎦᏉ ᎠᏂᎾᎷᏍᎬ ᎠᏂᏍᎦᏰᎬᏍᏔ ᎠᏂᏁᎩᏏᏙ ᎤᎾᏗᏔᏍᏗ ᏃᎴ ᏧᎾᏟᏃᎮᏗ. ᏉᎳᏃ ᎬᏩᏘᎿᏫᏛᏛ ᎡᏗᏂᏱ ᏫᎬᏩᏘᏃᎸᎩ; ᎠᎴ ᎾᏍᎩ ᎨᏥᏁᏤᎸ ᏌᏱᎳ ᏗᎹᏗᏃ ᎤᎾᏛᎪᏗ, ᏄᎵᏍᏛᏉ ᎬᏩᎷᏤᏗᏱ, ᎤᎾᏂᎩᏒᎩ. ᎾᏍᎩ ᏄᏪᏒ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏌᏩᏂ ᎤᏪᏥ ᎠᏥᏛᎬᎩ; ᎾᏍᎩᏰᏃ ᎤᏡᏗᏍᎩ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎩ, ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ ᎾᎿ ᎨᎳ ᎨᏒᎩ. ᎹᎵᏔᏃ ᎤᏓᏅᏒᎩ ᎡᏈᏌ ᏫᏚᏯᏅᎲᎩ ᏗᎨᎦᏁᎶᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ. ᎬᏂᎨ ᎦᏌᎴᏅ ᎠᏆᎭᏄᏮ, ᎠᏆᏛᏍᏛ ᏓᎾᎵᎪᎲᏍᎬ ᎠᏆᏍᏚᎸ, ᎾᏍᎩᏯ ᎠᏆᏯᏨ ᎦᏚᎢᏣ ᎤᏁᎦ ᎠᏖᏍᏔᏅ ᎠᏆᎭᏄᏭ. “Ꭵ, ᎤᏙᎯᏳᎯ! ᏔᎵᏁᏃ ᎤᎴᏅᎮ ᏚᏕᏲᏁ ᎥᏓᎷᎶᏗ; ᎤᏂᏣᏘᏃ ᎬᏩᏓᏡᏫᏍᏔᏁᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏳᎯ ᎤᏣᏁᎢ, ᎠᎴ ᎥᏓᎵ ᎠᏔᎸ ᎤᏪᏁᎢ; ᏂᎦᏛᏃ ᎤᏂᏣᏘ ᎨᏒ ᎥᏓᎷᎶᏗ ᏙᏱ ᎨᏒ ᎠᏂᏙᎾᎡᎢ. “ᎭᏩ,” ᎤᏛᏁ. ᎤᎪᎲᏃ ᏥᏌ, ᎤᏪᎷᏁᎢ, ᎠᎴ ᎤᏓᏅᏁ ᎦᏙᎬ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎠᏍᏓᏯ ᎯᎠ ᏄᏪᏎᎢ; Ꭶ-Ꮩ Ꮧ-ᎩᎾᏓ-ᏛᏙᏗ, ᏥᏌ, ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏪᏥ? ᎬᏔᏲᏎᎭ ᏞᏍᏗ ᏍᎩᎩᎸᏅᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏭᏓᏔᏅᎯ ᏞᏍᏗ ᏴᏫ ᏧᎦᎴᏅᏔᏅᎩ. ᏂᎯᏍᎩᏂ ᎾᏍᎩ ᏂᏥᏑᎵᎪᎬᎾ ᎢᎨᏙᎸᎯ ᎤᏲ ᎾᏆᎵᏍᏓᏁᎵᏙᎲᎢ; ᎾᏃ ᎤᏍᏗ ᎠᏧᏣ ᎯᎠ ᎤᏥᏪᏎᎴᎢ, ᏂᎯᎾᎲ! ᏃᎴ ᎡᎳᏆᏗ ᎣᏍᏓ ᎤᏰᎸᏁ ᎦᏓᏁ ᏄᎵᏍᏔᏅ, ᏃᎴ ᎤᏬᏨᏗ ᎠᏛᏁᎵᏍᎩ ᎢᏳᏍᏗ ᏄᏛᏁᎴ. Ꮳ ᎪᎰᏍᏗ, ᏥᏲᏎᎸ. ᎩᎶ ᎢᏳᏍᏗ ᎤᏅᏒᏉ ᎠᏁᎲ ᎡᎯ, ᎠᏙᎴᎰᏍᎩ ᎤᏅᏒᏉ ᎤᎾᏤᎵᎦ, ᎯᎠ ᏄᏪᏎᎢ, ᏟᏗᏱ ᎠᏁᎯ ᎠᏂᏰᎪᎩ ᎨᏐ ᏂᎪᎯᎸᎢ, ᎤᏂᏲ ᎢᎾᎨ ᎠᏁᎯ, ᏧᏍᎦᏃᎸ ᏧᏂᏍᏉᎵᏱ. ᏂᎯᏰᏃ, ᎢᏓᎵᏅᏟ, ᎡᏥᏯᏅᏛ ᎢᏣᏓᏤᎵ ᎢᏣᎵᏍᏙᏗᏱ; ᎠᏗᎾ ᏞᏍᏗ ᎾᏍᎩ ᎢᏣᏓᏤᎵ ᎨᏒ ᏱᏨᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏇᏓᎵ ᎤᏚᎸᎲᎥᏍᎬ ᎢᏣᏛᏁᏗᏱ ᏥᏥᎳᏅᏓᏕᎶ ᎾᏍᎩᏯᎢ; ᎠᏓᎨᏳᏗᏍᎩᏂ ᎢᏨᏗᏍᎬ ᎣᏍᏛ ᏂᏕᏣᏓᏛᏁᎮᏍᏗ. ᏚᏟᎷᎬᏎ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ. “Ꮘ-Ꮘ-Ꮘ!” ᎢᏧᎳ ᏧᏬᏰᏂ ᏗᎬᏗ ᎠᎩᎨᎯᏙᎸ. ᏙᏣᏕᏋᎯᏍᏗᏉᏃ ᏂᎯ, ᎠᎴ ᎥᏝ ᎤᏲᏉ ᏱᏥᏰᎸᏅ, ᎾᏍᎩ ᎯᎠ ᎢᏳᏛᏁᎸᎯ ᎦᏰᏥᏄᎪᏫᏍᏗ ᎢᏣᏓᏡᎬ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎬᏩᎵ. ᏗᏥᎦᎵᏰᏃ ᎬᏗ ᏥᎪᏩᏛ ᏣᏤᎵ ᎠᎵᏍᏕᎸᏙᏗ. ᏐᏉᎯᎭ ᏓᏂᏏᎳᏛᎥᏍᎨ, ᏌᎳᏓ ᏧᏪᏥ ᎠᏂᎨᏳᏣ. ᎠᎴ ᏮᏓᏨᎷᏤᎵ, ᎹᏏᏙᏂ ᎠᏰᎵ ᎠᎩᎶᏒᎯ ᎨᏎᏍᏗ; ᎹᏏᏙᏂᏰᏃ ᎠᏰᎵ ᎠᎩᎣᎯᏍᏗᏱ ᏂᎦᎵᏍᏗᎭ. ᎤᏍᎦᏃᎵ ᎤᎵᏖᎸᏁ. ᏭᏂᎷᏨᏃ ᎧᏫᎵ ᏚᏙᎥᎢ, ᎾᎿ ᏓᏓᎿᏩᏍᏛ ᎬᏩᏛᏁᎢ, ᎠᎴ ᏚᎾᏛᏁ ᎤᏲᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᏏᏴᏫ ᎠᎦᏘᏏᏗᏢ, ᏐᎢᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ. ᎾᏍᎩ ᎠᏴ ᎢᎬᏱᏱ ᎣᏣᎵᏍᎦᏍᏙᏔᏅᎯ ᎦᎶᏁᏛ ᎢᏲᎬᏂᏐᏗᏱ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ; ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎤᏂᏍᏓᏲᏒ ᎠᎴ ᏄᏃᎯᏳᏅᎾ ᏄᎵᏍᏔᏅ, ᎠᎴ ᎣᏐᏅᏉ ᎤᏂᏃᎮᎸ ᎾᏍᎩ ᎦᏅᏅ ᎤᎬᏩᎵ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᏚᏓᏅᎡᎸᎩ, ᎠᎴ ᏚᏓᏓᎴᏔᏅᎩ ᎠᏃᎯᏳᎲᏍᎩ ᏕᎦᏬᏁᏗᏍᎬᎩ ᏂᏚᎩᏨᏂᏒ ᎩᎶ ᎢᏳᏍᏗ ᏓᎳᎾ ᏧᏙᎢᏛ ᏧᏕᏲᏗᏱ. ”ᏩᎶᏏ ᏣᎧ---ᏣᏉᏍᎪ ᏰᎵᏉᏱᎩ?” ᎩᎶᏃ ᏑᏟᎶᏛ ᎢᏍᏕᏅᏍᏗᏱ ᏂᏨᏁᎮᏍᏗ, ᏔᎵ ᎢᏳᏟᎶᏛ ᎢᏍᏕᎨᏍᏗ. “ᎯᏍᎪᎵ ᎦᏣᏄᎳ ᏫᎦᎷᎩ ᎩᎦ.” ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᎠᏏᏉ ᎠᎾᎵᏃᎮᏍᎨ ᎠᎴ ᏓᎾᏓᏛᏛᎲᏍᎨᎢ, ᏥᏌ ᎤᏩᏒ ᎾᎥ ᎤᎷᏨ ᎾᏍᎩ ᎤᏁᏅᏍᏔᏁᎢ. ᎦᏙ ᎢᏳᏍᏗ ᎤᏰᎸᏗ? ᎯᎠ ᎠᏗᎾ ᏂᎦᏥᏪᏎᎭ ᏂᏓᎾᏤᎲᎾ ᎠᎴ ᏧᏃᏑᎶᏨᎯ, ᎣᏏᏳ ᎠᏴ ᎾᏆᏛᏅ ᎾᏍᎩᏉ ᏱᏅᏩᎾᏛᏅ. ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎧᏔᎭ ᏧᏪᏥ ᏗᏗ ᎤᏰᎸᏗ, ᏫᎵᎻ. ᎬᏂᏳᏉ, ᎠᏴ ᏉᎳ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᎢᏳᏃ ᏱᏕᏥᎤᏍᏕᏎᎸ, ᎦᎶᏁᏛ ᎥᏝ ᎪᎱᏍᏗ ᏴᎦᏰᏣᎵᏍᏕᎸᏙᏓ. ᎪᏃᎦᏍᎩᏂ ᎥᏝ ᎩᎶ ᏰᎵ ᏴᎬᏓᏅᏘᏐᏓ, ᎾᏍᎩ ᎤᏲᎢ ᎬᏎᎪᎩᏍᏗ ᏂᎨᏒᎾ, ᎠᎧᎵᎢ ᎠᏓᎯᎯ ᏅᏬᏘ. ᎤᎬᏫᏳᏎᏍᏗᏍᎩᏂ ᎢᏣᏓᏁᎮᏍᏗ ᏄᏍᏛ ᎢᏥᎲᎢ; ᎬᏂᏳᏉᏃ ᏂᎦᏗᏳ ᎢᏣᏓᏅᎦᎡᎸᎯ ᎨᏎᏍᏗ. ᎣᏥᏳᎢᏂᏒ ᎤᏬᏗᎨ ᎨᏴ ᎠᎹᏳᎸᏗ ᎢᏣ, ᎤᏒᎯ ᎯᎸᎯᏨ ᏌᎷᏱ ᎾᎥ ᎣᏣᎴᏫᏍᏗᏍᎬ, ᏓᎶᏂᎨ ᏚᏓᏴᎳᏛ ᏓᏨᏍᏛ, ᏃᏥ ᎢᏳᏍᏗ ᏓᏥᏍᏛ ᏒᏙᏂ ᏃᎴ ᎤᏥᎸ ᏗᎧᏁᎯᏓ ᎦᎸᎳᏗ ᏕᎦᏒᏛ ᎠᏲᏓᏒ. ᎠᏂᎱᏥ ᏚᏂᎸᏫᏍᏔᏁᎲ ᎦᏚᎢᏣ ᏱᏚᎾᏄᏮᎾ, ᎠᎵ ᏓᏂᎴᏴᏍᎬ ᏃᎴ ᏓᏂᏃᎩᏍᎬ ᏧᏟᏂᎩᏓ ᏗᎧᏃᎩᏍᏗ, ᎠᏂᏌᎲᏍᎬ ᏧᏓᎴᏅᏓ ᏥᏳ. ᎠᎾᏓᏤᎵᏃ ᏫᏚᏐᏍᏔᏁᎢ ᏚᏏᎳᏛ ᎠᎹ ᎨᏴᎢ. ᎿᏉᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎾᎥ ᎤᎷᏨ, ᎤᏂᏴᎲᎩ, ᎠᎴ ᎤᏁᏨᎩ ᏔᎵ ᏧᏓᏕᏒᏛ ᏣᎦᎸᏍᏙᏗᏱ, ᎠᎴ ᎤᏛᏛᏅᎩ ᎢᏳᏍᏗ ᎨᏒ, ᎠᏍᎦᏯ, ᎠᎴ ᏄᏛᏁᎸᎢ. ᎢᏳᏃ ᎦᏓᎭ ᎠᏓᏅᏙ ᏴᏫᎯ ᎦᏄᎪᎢ, ᎤᎧᏲᏛᎯ ᎡᏙᎰᎢ ᎤᏯᏪᏐᎸᏍᏗᏱ ᎤᏲᎰᎢ, ᎠᏎᏃ ᎥᏝ ᏯᏩᏘᏍᎪᎢ. ᎢᏳᏰᏃ ᎣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᏴᏗᏓᎴᎲᏍᎦ, ᎥᏝ ᎠᏚᎢᏍᏛ ᏴᏗᎬᏓᎴᎲᏍᎦ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎡᏆᎭᎻ ᎤᎵᏍᎪᎸᏓᏁᎴ ᎠᏚᎢᏍᏗᏍᎬ ᎤᏮᏔᏁᎢ. ᎥᏝ ᎠᏗᎾ ᏅᏩᎾᏓᎴ ᏗᎨᏥᎪᏗᏱ ᏂᎯᏃ ᎠᏍᏓᏯ ᎢᏰᏨᏁᏗᏱ ᏱᎦᏗᎭ; ᎣᏂᏃ ᏑᏪᎶᏁᎴ ᏗᏄᎯ-ᏗᏍᎩ ᏅᎩᏧᏈ ᎯᏍᎩᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎢᏴᏛ ᎢᎪᎯᏛ, ᏌᎻ ᎠᏙᎴᎰᏍᎩ ᏤᎮ ᎢᏯᏍᏗ. ᎢᏳᏰᏃ ᏳᎾᏅᏖ ᎾᎿ ᏧᏂᏄᎪᏨᎢ ᏳᎾᏜᏅᏓᎴᏉ ᎥᎤᎾᏨᏍᏗᏱ; ᎦᏓᏅᏖᏍᎬᏰᏃ ᎥᏝ ᎤᏍᏗ ᎤᏅ ᎡᏍᎦ ᏱᎦᏥᏲᎠᏍᎦ ᏄᏂᎬᏫᏳᏒ ᎨᏥᏅᏏᏛ ᎨᏒᎢ. ᏥᏌᏃ ᏭᏴᎸᎩ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏚᏄᎪᏫᏒᎩ ᏂᎦᏛ ᎠᏂᎾᏕᎩ ᎠᎴ ᎤᏂᏩᏍᎩ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᎷᏆᏗᏅᏒᎩ ᏚᏂᏍᎩᎸ ᎠᏕᎸ ᏗᏂᏁᏟᏴᏍᎩ, ᎠᎴ ᎫᎴ ᏗᏂᏍᎪᏂᎯ ᏗᏂᎾᏕᎩ ᎤᎾᏅᏗᏱ. ”ᎠᏂᎪᏕᏍᎩ ᏫᏗᏏᎸᏂᏏ,” ᎤᏬᏎᎴ ᏲᎾ ᎤᏤᏍᏙ ᎪᏱᏁᎢ. ᏧᏳᎪᏗ ᏍᎩᎾᎾ? ᎦᎵᏃᎡᏔᏅ ᎠᎾᎲᏍᎩ ᏧᏂᎷᏫᏍᏔᏁᏗ ᏃᎴ ᏗᎨᏥᏅᏏᏙ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏍᏓᏚᎵ ᎢᏍᏛᏯᏛᏁᏗᏱ? ᏕᎤᏒᏍᏔᏅᏰᏃ ᎢᎦ ᎾᎯᏳ ᎡᎶᎯ ᏚᏳᎪᏛ ᏧᏭᏙᏓᏁᏗᏱ, ᎬᏗᏍᎬ ᎠᏍᎦᏯ ᎾᏍᎩ ᎤᏪᎧᏅᎯ, ᏄᏜᏏᏛᏒᎾ ᏂᏚᏩᏁᎸ ᎾᏂᎥ ᏴᏫ ᎾᏍᎩ ᏕᎤᎴᏔᏅᎢ ᎤᏲᎱᏒᎢ. ᏒᎧᏔ ᏧᎬ ᎭᏫᏂᏣ ᎣᏍᏓ ᏄᏩᏁᎴ ᎡᎶᏗ ᎤᏕᏗ ᏫᎵᎻ. ᎡᏆ ᎧᏁᏌᎢ ᎠᏓ ᎪᏒᏔᏅ ᎧᏁᏍᎦ ᎧᎵ ᎦᎶᏛ, ᎦᎶᎯᏍᏗ ᎠᎦᎸᏓ ᎤᏴᎯᏍᏗ ᏃᎴ ᎤᏅᎪᎢᏍᏗ ᎡᎵᏍᎬᎢ. ᎦᎪ ᏧᏄᎪᏓᏁᎯ? ᎦᎶᏁᏛᏍᎪ, ᎾᏍᎩ ᏧᏂᎱᏎᎢ, ᎥᎥ, ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᏥᏚᎴᎯᏅ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏁᎳᏅᎯ ᎠᎦᏗᏏᏗᏢ ᏧᏬᎳ, ᎾᏍᎩ ᎾᏍᏉ ᏥᎦᎵᏍᏗᏰᏓᏁᎭ? ᎩᎳ - ᏅᎩ ᎢᏯᏂ ᎠᏂᏍᎦᏯ ᏚᏂᏅᏣ ᏗᏂᏂᎨᎾ ᏚᎵᏍᏆᏙᎾ, ᎠᏆᏛᎦᏅ ᏓᏂᏍᏔᏲᎯᎲ ᏍᎪᏂᏴᏣ ᏥᏙᎬ ᎠᏆᎬᏎᏍᏛ. ᎪᎰᏍᏗ ᎠᏆᏚᎴᎲᎡᎲ, ᏥᏍᎦᎢᎲ ᏁᎳᎩᏉ ᎠᏇᎵᏍᏗ ᏄᏛᏁᎸ ᎨᎵᏍᎬ. ᏃᎴ ᏂᎬᎾᏛ ᎣᏍᏓ ᎠᏗᏍᎦᎶᏗ ᏃᎴ ᎣᏍᏓ ᎦᏃᎯᎵᏓᏍᏗ. ᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ ᎤᏂᏣᏘᏍᏗ ᎯᎠ ᏅᏓᎬᎩᏪᎭᎵ; ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᏝᏍᎪ ᏕᏣᏙᎥ ᏲᏨᏗᏍᎨ ᏲᏣᏙᎴᎰᏍᎨᎢ? ᎠᎴ ᏝᏍᎪ ᏕᏣᏙᎥ ᏲᏨᏗᏍᎨ ᎠᏂᏍᎩᎾ ᏱᏙᏥᏄᎪᏫᏍᎨᎢ? ᎠᎴ ᏝᏍᎪ ᏕᏣᏙᎥ ᏲᏨᏗᏍᎨ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗ ᏱᏙᎩᎸᏫᏍᏓᏁᎮᎢ? ᏥᏍᏛᎾ ᎢᏳᏍᏘ ᎠᎵᏖᎸᎮᏍᎨ ᏣᎵ. ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ, ᎾᏍᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎦᎶᏁᏛ ᎤᎬᏩᎵ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᏳᎳ ᎬᏩᏍᏓᏱᏛᎯ ᏥᎨᏎᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯ ᏫᏄᏕᏘᏴᎲ ᎣᏂ ᎦᎾᏄᎪᏫᏒᎯ ᏥᎩ, ᎥᏝ ᎬᏩᏲᏍᏙᏗ ᏱᎩ, ᎾᏍᎩ ᏰᎵ ᎠᏎᏉ ᎢᏳᏩᏁᏗᏱ ᎠᏚᎢᏍᏛᎢ. ᎢᏳ ᎠᎴ ᎦᎵᏉᎩ ᏂᏣᏍᎦᏅᏤᎮᏍᏗ ᏏᎦ ᎨᏒ, ᎠᎴ ᎦᎵᏉᎩ ᏂᏣᎷᏤᎮᏍᏗ ᏏᎦ ᎨᏒ, ᎯᎠ ᏂᏣᏪᏎᎮᏍᏗ, ᎤᏲ ᎠᎩᏰᎸᎭ, ᎠᏎ ᎯᏯᏙᎵᎨᏍᏗᏉ. ᏑᏓᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎡᏆ ᎡᏉᏂ ᎤᏪᏴ ᏳᏇᏗ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎠᎹᏃ ᎾᎿ ᎡᎬ ᎤᎶᏐᏅᎩ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏗᎧᎸᎬ ᎢᏗᏢ ᎠᏁᎯ ᎤᏂᏅᏅ ᎨᎦᏛᎢᏍᏓᏁᏗᏱ ᎠᏰᎸᏒᎩ. ᎠᎴ ᎡᎾ ᏧᏬᎸᎢ ᎢᎬᏱ ᏫᎬᏩᏘᏅᏍᏔᏅᎩ, ᎾᏍᎩᏰᏃ ᎧᏱᏆ ᎤᎿᏥᏴᎩ, ᎠᎴ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎩ ᎾᎯᏳ ᎤᏕᏘᏴᏌᏗᏒᎢ. ᏂᎦᏓ ᏓᏍᏔᏅᏅ, ᏦᎩᏂᎸᏂᏗᏍᎩ ᎢᎦᎦᏓ ᎣᎩᏂᏰᏨ, ᎾᏍᎩ ᎨᏒᎢ ᏚᎭᏁᎦᎸ ᎾᎥᏂᎨ ᎩᎦᎨ ᎤᏔᎷᎩᏍᎩ ᏅᏯ ᏂᏚᏍᏛ. ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎤᏍᎦᎩ ᎠᏥᏛᏙᏗ ᎨᏒᎢ. ᏚᎪᎲᏃ ᎤᏂᏣᏘ ᏴᏫ, ᏚᏪᏙᎵᏨᎩ, ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏩᎾᏉ ᏓᏂᎶᎬᎢ, ᎠᎴ ᎤᎾᏗᎦᎴᏲᏨᎯ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎠᏫ ᎤᏂᏃᏕᎾ ᏁᎲᎾ ᏥᎨᏐ ᎤᏂᎦᏘᏯ. ᏍᏓᏯ ᎦᏬᏂᏍᎩ ᏂᏧᏪᏎ: ᎯᏣᏛᎦᏍᏓ! ᏂᎦᏗᏳᏍᎩᏂ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏴᏫᏉ ᎬᏩᏂᎪᏩᏛᏗᏱ ᎤᏂᏰᎸᏐᎢ. ᏗᏯᏖᎾ ᏂᏓᏅᏁᎰ ᏧᎾᎬᏓᏃᏍᏗ, ᎠᎴ ᏓᏂᏯᏛᎥᏍᏗᏍᎪ ᏕᎦᏓᎷᏯᏛ ᏧᎾᏄᏬ; ᎾᏍᎩ ᏥᏌ ᎤᎷᏤᎸᎩ ᏒᏃᏱ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏗᏍᏇᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᏔᏕᏲᎲᏍᎩ ᎨᏒ ᎤᏁᎳᏅᎯ ᏅᏓᏣᏅᏏᏛ ᎨᏒᎢ: ᎥᏝᏰᏃ ᎩᎶ ᎾᏍᎩ ᎯᎠ ᎤᏍᏆᏂᎪᏗ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ ᏱᏙᎬᏩᎸᏫᏍᏓᏏ, ᎤᏁᎳᏅᎯ ᏂᏚᎧᎿᏩᏗᏙᎲᎾᏱᎩ. ᎠᎴ ᎩᎶ ᎦᏬᏂᏍᎬ ᎠᏡ-ᏗᏍᎨᏍᏗ ᏴᏫ ᎤᏪᏥ, ᎦᏰᏥᏙ-ᎵᏍᏗᏉ ᎨᏎᏍᏗ; ᎩᎶᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ ᎥᏝ ᎦᏰᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᏓᏁᎸᏃ ᎢᏥᏴᎭ ᎢᏥᏲᎵᎮᏍᏗ. ᏓᏂᏐᏥᏙᎰ ᎪᎱᏍᏗ ᎣᎯᏍᏙᏗ ᏯᏂᏩᏔ ᏍᎪᏂᏯ ᎠᏁᎵᏍᎪ. ᎠᏎᏃ ᏥᏌ ᏚᏁᏤᎸᎩ [ᎯᎠ ᏂᏚᏪᏎᎸᎩ,] ᎡᏙᏓ ᎪᎯ ᎢᏯᏍᏘ ᏚᎸᏫᏍᏓᏁᎰᎢ, ᎠᏴᏃ ᎾᏍᏉ ᏓᎩᎸᏫᏍᏓᏁᎰᎢ. ”ᎾᎥᏂ ᎢᎦ,” ᎤᏪᎵᏎ. ”ᏙᎩᎢᏳᏍᏗ?” ᎤᏛᏁ ᏫᎵᎻ. ᎦᏚᏏᏨ ᏚᎨᏓᎵᏴ ᎤᎾᏗᎦᎵᏴᎡ, ᎠᎬᏱᏣ ᏓᏂᏰᎵᏎ ᏣᎵ ᏧᏤᎵ ᏴᏫ. ᎢᏤᏲᏎᎭ, ᎾᎯᏳ ᏒᏃᏱ ᎨᏎᏍᏗ ᎠᏂᏔᎵ ᏌᏉ ᎠᏤᏍᏙᎩᎯ ᏓᏂᏅᎨᏍᏗ; ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎿᏉ ᎠᏂᏔᎵ ᏱᎩ; ᏌᏉᏉᏍᎩᏂ ᎤᏂᏇᏓᎸᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏭᏓᏔᏅᎯ ᎨᏒ ᏞᏍᏗ ᏴᏫ ᏱᏚᎦᎴᏅᏔᏁᏍᏗ. ᎤᏲ ᏄᏛᎿᏕᎬᎢ ᎠᏥᎩᎡᎸᎩ ᎤᏤᎵ ᎨᏒ ᏚᏳᎪᏛᎢ; ᎠᎴ ᎦᎪ ᏙᏓᎧᏃᎮᎵ ᏴᏫ ᎾᎯᏳ ᏤᎮ ᎠᏁᎯ? ᎬᏅᏰᏃ ᎤᏂᎩᏒᎩ ᎡᎶᎯ. ᎾᏍᎩ ᏂᎯ ᎠᎴ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᏰᎵᏉ ᎨᏦᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎾᏯᏛᎥᎢ ᎠᎴ ᏂᎦᏅᎯᏒᎢ, ᎠᎴ ᎾᎯᏫᏂᏴᎢ, ᎠᎴ ᏂᎦᏛᎢ; ᎠᏕᎸᏃ-ᎠᎩᏏᏙᎯ ᎢᏅ ᏧᎴᏁᎢ, ᎥᏝ ᏰᎵ ᎦᎸᎳᏗ ᏫᏗᎬᏩᎧᏃᏗ ᏱᎨᏎᎢ, ᎦᏁᏥᏉᏍᎩᏂ ᎤᏩᏂᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᏁᎳᏅᎯ, ᏍᎩᏙᎵᎩ ᏥᏍᎦᎾᎢ. ᎠᏂᎨᏕᎳᏃ ᎤᎾᏤᎵᎪᎯ ᏭᏂᎷᏤ, ᎾᏍᎩ ᎨᎵᎵ ᏧᏳᎪᏗ ᏍᎪᏂᏗᏢ ᏥᎩ. ᎣᏂᏱᏃ ᎾᏍᏉ ᎠᏴ ᎥᏥᎪᎥᎩ, ᎾᏍᎩᏯ ᎩᎶ ᎤᏕᏗᏱ ᏄᏍᏆᎸᎲᎾᏉ ᏣᏕᎲᏍᎪ ᏣᏓᎪᏩᏘᏍᎪᎢ. ᎠᏂᏧᏏ ᎯᏍᎩ ᏂᎬᎩᎵᎥᏂᎸᎩ ᎢᏳᏍᏗᎭ ᏌᏉ ᎦᎷᎶᎩ ᏅᎦᏍᎪᎯ ᎢᎬᏋᏂᏍᏗᏱ; ᏃᎴ ᏧᏳᎪᏗ ᏂᏚᏩᏁᎴ ᏚᏄᏌᏛ. ᏐᎳᏃ ᎾᏍᎩ ᎾᏍᏉ ᏉᎳ ᏥᏚᏙᎥ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᎧᎵᏨᎯ ᎨᏎ ᎾᏍᎩ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏁᎢ, ᎠᏂᏐ ᏦᎢ ᎢᏯᏂ ᎠᏂᏧᏣ ᎢᏅᎯᎨ ᎢᏴ ᎠᏙᎯ ᎠᏂᏅ, ᎦᎶᏇ ᏚᏅᏴ ᎾᎥᏂ. ᎧᎪ ᎤᏓᏅᏖᏗᏍᎪ ᏄᏛᎾᏕᎬ ᏧᏍᏆᏴᏍᏗ?” ᎠᏎᏃ ᎤᎬᏫᏳᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎮᎾ, ᎾᏍᎩᏰᏃ ᏥᏯᏑᏰᏛ ᎠᏖᎵᏙ ᎠᏆᏤᎵᎦ ᏓᏆᏙᎥ ᎠᏱᏙᎯ ᎠᏂᎦᏔᎲ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ. ᏰᎵᏉᏰᏃ ᏗᏕᎶᏆᏍᎩ ᏧᏪᏲᎲᏍᎩ ᎢᏧᎳᎭᏉ ᏱᎩ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᎢᏧᎳᎭᏉ ᏱᎩ. ᎢᏳᏰᏃ ᏧᏓᏘᎿᎢ ᎠᏓᏁᎸ ᏇᎵᏥᏆ ᏳᏃᏎᎸ, ᎤᏟ ᎠᎯᏗᏳ ᎾᏍᎩ ᎢᏧᏂᏪᏎᏗᏱ ᏚᏓᏘᎿᎥᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩᏯ ᏤᏣᏓᏂᎸᏨᎯ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ, ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ ᎡᏥᏍᏓᏩᏗᏒᎢ; ᎠᎴ ᏅᏩᏓᎴ ᎩᎶ ᏗᎧᏁᎬ ᎦᎸᎳᏗ ᎠᏆᏛᎦᏅᎩ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᏂᎯ ᏗᏆᏤᎵᎦ ᏴᏫ ᎡᏥᏄᎪᎢ, ᎾᏍᎩ ᎢᏣᏠᏯᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᎤᏍᎦᏅᏥᏙᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᎤᏕᏯᏙᏗ ᎨᏒ ᎢᏣᏠᏯᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᎤᏍᏗᏃ ᎢᏈᎬᎢ ᏄᏓᏪᏎᎴᎢ, ᏍᏆᎦᏎᏔᏁᎢᏃ ᎠᎴ ᏍᎩᎨᏳᏒᎢ. ᎾᏍᎩ ᎡᎶᎯ ᎡᎲᎩ, ᎠᎴ ᎾᏍᎩ ᎡᎶᎯ ᎤᏬᏢᏅᎯ ᎨᏒᎩ, ᎠᎴ ᎡᎶᎯ ᎥᏝ ᏳᏬᎵᏤᎢ. ᏂᎦᎾᏰᏍᎬᎾ ᏫᎨᏴ ᏕᎦᎶᎨᏒ ᎠᏰᎵ, ᏲᎾ ᎤᏤᏍᏙ ᏗᎦᏯᎵ ᏅᏯ ᎦᏚᎢᏣ ᏫᎦᎶᏍᎬ ᎠᎹ. ᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᎵᏁᏨ ᏥᎩ ᏧᎵᏠᏯᏍᏗ ᎠᏚᎢᏍᏛᎢ, ᎠᏎ ᏗᏓᏴᎳᏔᏍᎩ ᏄᎾ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᎠᏍᏗᎩᏛ ᎦᏅᏛ ᎤᏣᎴᏍᏔ, ᏩᏐᏝ ᎢᏯᏂᎵᏍᏗᏍᎩ ᎠᏂᏓᎶᏂᎨ ᎤᏂᏥᏯ ᏚᏂᏧᏫᏍᏔᏁᎲ ᎭᏫᏂ, ᏃᎴ ᎦᏲᏟ ᎤᏂᏪᏘᎨᏒ ᏍᎨᏫ. ᎦᏲᏟᎨᏉ ᏱᏃᏥᎠ. ᎾᏍᎩ ᎠᎦᏁᎳᏅᎯ ᎤᏩᏒ ᎾᏍᏉ ᎤᏚᏓᎴᏍᏗᏱ ᎠᏲᎩ ᎨᏒ ᎤᎾᏝᎥᎢ, ᎦᎸᏉᏗᏳ ᏂᏗᎨᏥᎾᏝᎥᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎤᎾᏤᏕ ᏫᏗᎨᏥᎪᎩᏱ. ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏳᏃ ᎩᎶ ᎠᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᏥᏁᎬᎢ, ᎾᏍᎩ ᎥᏝ ᎢᎸᎯᏳ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ. ᎣᏍᏛᏰᏃ ᎧᏃᎮᏛ ᎣᎦᏤᎵᎦ ᎥᏝ ᎧᏁᏨᎯᏉ ᎨᏒ ᏱᏥᎷᎯᏍᏓᏁᎴᎢ, ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎨᏒ ᎾᏍᏉ ᏔᎵ ᎤᏛᏛᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏥᏥᎦᏔᎭ ᏃᎦᏍᏛ ᎢᏨᏰᎳᏗᏙᎸ ᏂᎯ ᏥᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ. ᏃᏉᏗ ᏥᎦᏔ ᎢᏴ ᎬᏩᏛᏗ, ᏛᏥᎷᏥᏗ ᏛᎬᏩᏔᎰᎵ. ᎢᎸᎯᏳᏰᏃ ᏥᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᏂᏓᏆᏁᎶᏛᎾ ᎨᏒ ᎢᏳᎢ ᎬᏃᏛ ᎨᏒᎩ; ᎤᎵᏁᏨᏍᎩᏂ ᎤᎷᏨ, ᎠᏍᎦᏂ ᎤᏛᏂᏛᎩ, ᎠᏴᏃ ᎠᎩᏲᎱᏒᎩ. ᎭᏟᏂᎬᏁᎮᏍᏗ ᎬᏂᎨᏒ ᎢᏨᏁᏗᏱ ᎣᏏᏳ ᏣᏰᎸᏒ ᎤᏁᎳᏅᎯ, ᏗᏣᎸᏫᏍᏓᏁᎯ ᎨᏎᏍᏗ ᎨᏣᏕᎰᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎣᏍᏛ ᏘᏯᏙᎮᎯ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ. ᎲᎦ ᎢᎪᎯᏓ ᏓᏟᏰᎵᏙ ᎤᏣᎩᏍᏗ ᏌᏌ?” ᎾᏍᎩᏰᏃ Ꮎ ᎠᏲᎵᎯ ᎤᏪᎳᏗᏍᏗᎭ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎤᎵᏍᏆᏙᏂᏓ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ. ᎠᏎᏃ ᏥᎠ ᎥᏝ ᎤᏩᏒ ᏱᏚᏓᏲᏎᎢ, ᎾᏂᎥᏰᏃ ᏓᎦᏔᎲᎩ, ᏂᎦᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏨᏗᏍᎨᏍᏗ. ᎾᏍᎩᏯ ᎠᎦᏴᎵᎨ ᏣᎩᎦᏔᎭ, ᎠᎴ ᎠᏴ ᎠᎦᏴᎵᎨ ᏥᏥᎦᏔᎭ. ᎠᎴ ᎬᏅ ᎡᎳᏗ ᏕᏥᏁᎭ ᎠᏫ. ᎬᏃᏓ ᏩᎶᏏ ᎦᏁᎮᎢ ᎡᎳᏆᏗ. ᏫᎵᎻ ᏯᏥᎳ, ᎤᏏᏩ ᏱᎩ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᏚᏙᏓᏈᏒ, ᏣᎵᏐᏓ ᏂᏓᏣᎵᏍᏔᏂ, ᏰᎵᏉ ᎭᏂᏣ ᏣᏍᏉᏟ ᏩᎪᏩᏛᏗ ᎨᏎᏍᏗ.” ᎠᎴ ᎬᏂᏳᏉ, ᎦᏓᏅᎵ ᎢᏥᎷᏤᏗᏱ ᎡᏙᏓ ᎤᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ; ᎠᏎᏃ ᏥᎷᏏᎵᎻ ᎦᏚᎲ ᎢᏥᏁᏍᏗ ᎬᏂ ᎢᏣᏄᏬᏍᏕᏍᏗ ᎤᎵᏂᎩᏛ ᎨᏒ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ. ᏂᎦᏛᏰᏃ ᎡᏗᏂᏱ ᎠᏁᎯ ᎠᎴ ᎢᎸᎯᏢ ᏗᏁᎯ ᎾᎿ ᎠᏁᏙᎯ ᎥᏝ ᎪᎱᏍᏗ ᏱᏚᏂᎸᏫᏍᏓᏁᎮᎢ, ᎠᏂᏃᎮᏍᎬ ᎤᏩᏒ ᎠᎴ ᎠᎾᏛᎩᏍᎬ ᎪᎱᏍᏗ ᎢᏤᎢ. “ᎬᏲᎵᎭ!” ᎤᏛᏁ. ᎤᏪᏥᏍᎩᏂᏃᏅ ᎨᏎᎢ ᎠᏎᏃ ᎤᏬᎯᏳᎯᏍᏓ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏕᎶᏆᎡ ᎤᎩᎵᏲᏨ ᎤᎦᏙᎥᎯᏍᏔᏁᎢ; ᎾᏍᎩᏃ Ꮎ ᏅᏓᎨᏥᏅᏏᏛ, ᏫᎤᏂᎷᏨ ᏗᏓᏁᎸ, ᎠᏥᏅᏏᏓᏍᏗ ᎤᏢᏨᎯ ᎤᏂᏩᏛᎮ ᎤᏗᏩᏒᎯ ᎢᎨᏎᎢ. ᎠᏴ ᎾᏍᎩ ᎾᎦᏚ ᎠᏛᏂᏗᏍᏙᏗ. ᏕᏣᏂᏴᏎᏍᏗ ᎾᏍᎩ ᏗᏣᏟᎶᏍᏔᏅᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᏍᏆᏛᎦᏁᎸᎯ ᏥᎩ, ᎲᏗᏍᎨᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᏅᏓᏳᏓᎴᏅᎯ. ᏱᏚᏂᏯᏪᏣ ᎠᎾᏓᏩᏛᎯᏙᎢ ᎠᏰᎵ ᎢᏴ ᎠᏓᏄᏖᏲᎮᎢ. ᎠᏴ ᏥᏌ ᏗᏥᏅᏒ ᎠᏆᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏨᏁᏗᏱ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ. ᎠᏴ ᏕᏫ ᎤᏪᏥ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒᎢ, ᎠᎴ ᏃᏈᏏ ᏧᎦᏙᏴᎢᏍᏗ ᎠᎴ ᏑᎾᎴ ᎡᎯ. ᏓᏘᎪᎯᏗ. ᎢᎦ ᎨᏒ ᎦᏟᎮᎢ ᎤᏒᎯ ᎡᏙᎵᏙᎮ. ᏂᎯᏰᏃ ᎡᏥᏚᎢᏍᏓᏁᎸᎯ ᎠᎴ ᏗᏤᏥ ᎠᎴ ᎾᏂᎥ ᎢᏅ ᏗᏁᎯ, ᎾᏍᎩ ᎾᏂᎥ ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ ᎢᎦᏤᎵ ᏧᏯᏅᏗ ᎨᏒᎢ. ᎰᏩᏃ ᎤᏂᎤᎪᏫᏒ ᏖᎸᎳᏗ ᏓᏫᏒᎢ, ᎤᏂᎴᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ Ꮎ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ ᎦᏙ ᏙᏓᎬᏁᎵ ᎾᏍᎩ? ᎤᏁᎳᏅᎯ ᎠᏓᏅᏙ; ᎾᏍᎩᏃ Ꮎ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᏧᎾᏓᏅᏙ ᎠᎴ ᏚᏳᎪᏛ ᏧᏅᏙᏗ ᎤᎾᏓᏙᎵᏍᏓᏁᏗ. ᎧᏃᎨᏂ ᎤᏮᏔᏅ ᎤᎾᏄᎪᏫᏒ ᎤᎵᏂᎩᏛ ᎨᏒᎢ; ᎤᎾᏢᏉᏗ ᏙᏧᎾᏓᏅᏛ ᏚᏗᎦᎴᏯᏍᏔᏅ. ᏘᏍᏚᎢᎡᏗᏱ ᏗᏂᎦᏙᎵ, ᎠᎴ ᎤᎵᏏᎬ ᏄᎾᏛᏅ ᏘᎪᎸᏍᏗᏱ ᎢᎦᎦᏛ ᎢᏗᏢ ᏫᏘᎦᏔᎲᏍᏗᏱ, ᎠᎴ ᏎᏓᏂ ᎤᏤᎵᎪᎯ ᏄᎾᏛᏅ ᏘᎪᎸᏍᏗᏱ ᏙᏘᎦᏔᎲᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᏫᏘᎦᏔᎲᏍᏙᏗᏱ; ᎾᏍᎩ ᏗᎦᎨᏥᏁᏗᏱ ᎤᏁᏍᎦᏅᏨᎢ, ᎠᎴ ᎬᏩᏂᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎨᏥᏅᎦᎸᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎥᏉᎯᏳᏗ ᎨᏒᎢ. ᎤᏩᏓᎷᏯᏛ ᎬᏗ ᏚᏲᎵᎴ ᏃᏗ ᏭᏓᏬᎡ ᏫᏥ. ᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᏓᏡᏫᏍᏔᏅᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏳᎯ ᎤᏣᏅᎩ, ᎠᎴ ᎤᏪᏅᎩ. ᏂᎦᏗᏳᏃ ᎾᏍᎩ ᎤᏂᏣᏘ ᎠᎹᏳᎶᏗ ᎠᏂᏙᎾᎥᎩ. ᏧᏓᏏᏰᏃ ᏕᎦᎶᏗ ᎦᏁᎲ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎢᎦᏛ, ᎯᎠ ᏥᏌ ᏂᎦᏪᏏ ᎤᏁᎵᏒᎩ; ᎪᎱᏍᏗ ᏣᏩᎯ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒ ᎢᏳ ᎪᎱᏍᏗ ᎢᎬᏙᏗ; ᎠᎴ ᎯᎠ ᏱᎩ; ᎪᎱᏍᏗ ᏘᎲᏏ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ. ᎠᏓᎾᏏᏁᎩ ᏧᏅᎪᏤ ᎡᎳᏆᏗ, ᎤᏟᏴᏍᎪᏳᏁᎴ ᏫᎵᎻ. ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ ᎠᎾᏙᎴᎰᏍᎩᏱ; ᎠᎴ ᏂᎦᏛ ᎤᏁᎳᏅᎯ ᏧᏪᏲᏅᎯ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏛ ᎤᎾᏛᎦᏁᎸᎯ ᎠᎴ ᎤᎾᏕᎶᏆᎡᎸᎯ ᎠᎦᏴᎵᎨᎢ, ᎬᎩᎷᏤᎰᎢ. ᎦᏙ ᎬᏙᏗ, ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎩᎶ ᎠᏉᎯᏳᎭ ᏯᏗᎭ, ᏂᏚᎸᏫᏍᏓᏁᎲᎾᏃ ᏱᎩ? ᎤᏬᎯᏳᏒᏍᎪ ᏰᎵᏉ ᏳᏍᏕᎸ? ᎠᎴ ᎩᎶ ᎦᏬᏂᏍᎬ ᎠᏡᏗᏍᎨᏍᏗ ᏴᏫ ᎤᏪᏥ, ᎠᏥᏙᎵᏍᏗᏉ ᎨᏎᏍᏗ; ᎩᎶᏍᎩᏂ ᎦᏬᏂᏍᎬ ᎠᏡᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎥᏝ ᎠᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ ᎪᎯ ᎨᏒ ᎠᎴ ᎾᏍᏉ ᏐᎢᏱ ᏗᎨᏒᎢ. ᎤᏲ ᎤᏓᏅᏖᏗ ᏱᏗᎲᏏ. ᎧᏁᏍᎦ ᏃᎴ ᏗᎩᏏ ᎢᏳᏍᏗ ᎠᏒᎨ. ᎢᏳᏃ ᏴᏫᏉ ᎠᏁᎲ ᏱᎦᏛᏅ, - ᎾᏍᎩ ᏓᏂᏍᎦᎢᎮ ᏴᏫ; ᏂᎦᏛᏰᏃ ᏴᏫ ᎠᏙᎴᎰᏍᎩ ᎤᏙᎯᏳᎯ ᎬᏩᏰᎸᎭ ᏣᏂ. ᎢᏳᏃ ᏱᏅᏩᏍᏗᏗᏉ ᎢᏦᎯᏳᏒᎢ, ᎦᎫᏍᏛᏅᎯ ᎠᎴ ᎠᏍᏓᏱᏛᎯ ᎨᏒᎢ, ᎠᎴ ᎢᏴᏛ ᎢᎦᏰᏨᏁᏗ ᏂᎨᏒᎾ ᏱᎩ ᎤᏚᎩ ᎢᏨᏒ ᎣᏍᏛ ᎧᏃᎮᏛᏱ, ᎾᏍᎩ ᎢᏣᏛᎦᏅᎯ ᏥᎩ, ᎾᏂᎥ ᎨᎦᏁᎳᏅᎯ ᎨᏒ ᎨᎦᎵᏥᏙᏁᎸᎯ ᏥᎩ ᎦᎸᎶ ᎭᏫᏂᏗᏢ ᏄᎾᏛᏅᎢ; ᎾᏍᎩ ᎾᎿ ᎠᏴ ᏉᎳ ᎪᎱᏍᏗ ᎦᏛᏁᎯ ᏥᏅᏋᏁᎸ; ᎿᏉᏃ ᏔᎵᏁ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏴ ᎦᎶᎯᏍᏗᏱ ᎠᏫ ᎤᎾᏤᎵᎦ. ᎦᏲᏟ ᎠᎩᎶᏔᏅ ᏔᎷᎩᏍᎩ ᎤᎸᏫᏒ, ᏫᏥ ᎢᎦ ᎨᏒ ᎧᏫ ᎦᏗᏔᏍᎬ ᎠᏉᏢ ᏕᎦᎦᏙᏍᏛ ᏴᏫ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ. ᎠᎴ ᎤᎬᏫᏳᎯ ᎠᏎ ᏛᏇᏓᎴᏏ ᏂᎦᎥ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎴ ᏛᎩᏍᏆᏂᎪᏔᏂ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᏗᎨᏒ ᏫᎦᎷᎩ. ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ, ᎡᎺᏅ. ᎾᏍᎩ ᎾᏍᏉ ᏧᏂᎸᎩ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏅᏒ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎠᏴ ᎠᎦᏕᏯᏙᏔᏅᎩ; ᎠᎴ ᎥᏝ ᎣᏏᏳ ᎤᏰᎸᏗ ᎤᏁᎳᏅᎯ ᏱᎾᎾᏛᏁᎭ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᏓᏂᎦᏘᎴᎦ; ᎿᏉᏃ ᎤᎾᏓᏅᏘ ᏛᏂᏁᏥ ᎯᎠ ᏅᏓᎬᏩᏪᏎᎵ; ᏣᎬᏫᏳᎯ, ᎢᎳᎩᏳ ᎢᏨᎪᏒ ᏣᏲᏏᏍᎨᎢ, ᎢᏨᏰᎳᏍᏔᏁᏃ; ᎠᎴ ᏣᏔᏕᎩᏍᎨᎢ, ᎢᏨᎤᏁᏃ; ᎾᏍᎩᏃ ᏄᏪᏒ, ᎠᏂᏧᏏ ᎤᎾᏓᏅᏒᎩ, ᎤᏅᏒ ᎤᏣᏛᎩ ᏭᎾᎵᏃᎮᎸᎩ. ᎢᏳ ᎠᎴ ᏎᏓᏂ ᏎᏓᏂ ᏱᎦᏄᎪᏫᏍᎦ, ᏔᎵ ᎾᏓᏗᏍᎪᎢ ᎤᏩᏒᏉ ᎠᏓᏡᏗᏍᎪᎢ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏱᏂᎬᏩ ᏍᏗᏉ ᎤᏤᎵᎪᎯ? ᎠᏛᎩᏍᎨ ᏍᏔᏯ ᎠᎾᏛᎵᏍᎬ ᎤᏂᎾᎷᏏᏗᏒ. ᎠᎹ ᎤᎵᏗᏍᏔᏅ, ᎠᏥᎸᏳᎵ ᎤᏅ ᎠᏥᏍᏛ ᎠᎵᏥᏍᎩ ᎠᎹ, ᎣᏓᎵᎦᎵ ᎤᎦᎷᎭᏴ ᏫᏚᏝᏅ. ᏎᎦᏨ ᎤᏂᎷᏤ ᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ. ᎠᎴ ᎤᏂᏩᎯᏍᏔᏅᎩ ᎥᏘ ᏗᎪᏢᏍᎩ ᎤᎶᎨᏒᎢ, ᎾᏍᎩᏯ ᏱᎰᏩ ᎠᏇᏲᏅᎢ. ᏧᏍᏆᏴᏍᏗ ᎨᏍᏗ ᎯᎸ ᎠᎪᏩᏛᏗ ᏱᎨᏎᎢ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏆ-ᏚᎵᎭ ᎠᏂᏫᏅᎨᏌᏂ ᏧᎾᏨᏍᏗᏱ, ᏗᏂᏲᎵ ᏧᏂᎾᏄᎪᏫᏍᏗᏱ, ᏧᏂᏍᏆᏂᎪᏙᏗᏱ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎬᏩᎾᏡᏗᏍᎩ ᏧᏂᎳᏅᏓᏕᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎤᏐᏅ ᎬᏩᏂᏃᎮᏗᏱ. ᏦᎢᎭᏃ ᎠᎴ ᏅᎩᎭ ᎢᏳᏟᎶᏛ ᎤᏂᎦᏪᎸ, ᎤᏂᎪᎲᎩ ᏥᏌ ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏒᎩ, ᎠᎴ ᏥᏳᎯ ᎾᎥ ᎤᎷᏥᏗᏒᎩ. ᎠᎴ ᎠᏂᏍᎦᎢᎲᎩ. ᏃᎴ ᎤᏦᏱᎴ ᏫᎵᎻ, ᏃᏉ ᏔᎵᏁᎢ ᏔᎵ ᏧᏙᏓᏆᏓ. ᎠᏗᏆᎸᏕᏲᎮ ᎦᎸᎶᎢ ᏃᎴ ᎠᎦᏕ ᎠᎦᎸᎳᏗᎨ ᏄᏍᏕᎢ ᎤᏒᎯ. ᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᎯᎠ ᎣᏍᏛ ᎨᏥᏃᎮᏍᎩ ᏥᎨᏎ ᎤᏃᎯᏳᏒ ᎢᏳᏩᏂᏌᏛ, ᎥᏝ ᏄᏍᏛ ᎨᏥᏚᎢᏍᏓᏁᎸ ᏱᏚᏁᏓᏂᎸᏤᎢ; ᎠᎴ ᎩᎶ ᏗᎦᏬᏁ-ᏗᏍᎩ ᎨᏎᏍᏗ, ᏗᎦᏬᏁᏙᏗᏉ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ; ᎠᎴ ᎩᎶ ᏓᏯᏙᎮᎮᏍᏗ, ᏄᎨᏳᎲᏍᎬᎾ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ; ᎩᎶ ᏣᎦᏁᎶᏗ ᎨᏎᏍᏗ, ᎣᏍᏛ ᎤᎦᏌᏯᏍᏗ ᎨᏎᏍᏗ; ᎩᎶ ᎠᏓᏙᎵᎨᏍᏗ, ᎤᎧᎵᏍᏗ ᎤᏓᏅᏛ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ. ᏌᏯᏂᏍᎩᏂ ᎣᏓᎸ ᎢᏥᎷᏨ, ᎠᎴ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏚᎲᎢ, ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎦᎸᎳᏗ ᎡᎯ, ᎠᎴ ᏗᎬᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ ᎨᏥᏅᏏᏓᏍᏗ ᏧᎾᏓᏡᎬᎢ, ᎧᏂᎨᏂ ᏭᏂᏴᎲ ᏣᎵ, ᏎᎦᏨ ᏚᎴᏅ. ᏧᏂᏲᎱᏒᎯᏃ ᎾᏍᎩ ᏧᎾᎴᎯᏐᏗ ᎨᏒᎢ; ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ ᎼᏏ ᎤᏤᎵ ᎪᏪᎵᎯ, ᎾᏍᎩ ᎤᏪᏲᏓᏛ ᎤᏁᎳᏅᎯ ᎤᎵᏃᎮᏔᏅᎢ, ᎯᎠ ᏄᏪᏎᎸᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏆᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏆᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᎾᏍᎩᏃ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎠᎦᏔᎯ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎤᏅᏏᏙᎯ, ᎠᎴ ᏄᏛᏅᎢᏍᏔᏅᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᏄᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᎤᏣᏘ ᎢᏯᎬᏂᏍᏗ ᎨᏎᏍᏗ. “ᏗᎨᏥᎾᏌᎢ ᎠᎾᏟᏃᎮᏍᎪ ᎠᏗᏍᎬ. ᎠᎴ ᎾᏍᏉ ᎠᎾᏗᏒᎯᎮ ᎾᏍᎩ Ꮎ ᎤᏅᏒ ᎨᏒ ᎤᏟ ᎠᏥᎸᏉ-ᏗᏳ Ꭲ-ᏳᎵᏍᏙᏗ ᎨᏒᎠᎴ ᎾᏍᏉ ᎠᎾᏗᏒᎯᎮ ᎾᏍᎩ Ꮎ ᎤᏅᏒ ᎨᏒ ᎤᏟ ᎠᏥᎸᏉ-ᏗᏳ Ꭲ-ᏳᎵᏍᏙᏗ ᎨᏒᎢ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᏓᏓᏂᎸᎨᏍᏗ ᎯᎠ ᎠᏲᎵ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ; ᎩᎶᏃ ᎠᏴ ᏓᏆᏓ-ᏂᎸᎨᏍᏗ, ᏓᏓᎸᎨᏍᏗ ᏅᏛᎩᏅᎢ, ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎤᏕᎵᏛ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏓ; ᎾᏍᎩᏃ ᏯᎵᏰᏍᏕᎲᎦ ᎤᏁᎳᏅᎯ ᏯᏓᏙᎵᏍᏓᏏ, ᎠᎴ ᏱᏕᎦᏃᏣᎸᎦ ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯᏯ ᎢᏣᏓᏑᏴᎢ. ᎪᎯᏃ ᏥᎩ ᎦᎵᎡᎵᎦ, ᎥᏝ ᎠᏗᎾ ᎤᏲ ᎢᏣᏓᏅᏓᏛ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭᏍᎩᏂ ᏗᎨᏥᏁᏟᏴᏍᏗ ᏕᏣᏓ ᏅᏛ ᎢᏴᏛ ᎤᏲ ᎢᏣᏓᏅᏓᏛᎢ; ᎤᏲᏰᏃ ᎢᏣᏓᏅᏓᏛᎩ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᏥᎩ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎪᎱᏍᏗ ᎡᏍᎦ ᎢᏨᏴᏁᏗᏱ ᏂᎨᏒᎾ. ᎿᏉᏃ ᎤᏥ ᎤᏪᏲᏅᎯ ᏂᎨᏎᎢ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏂ ᏍᎩᏲᎮᎸᎭ ᏣᏂ ᏗᏓᏬᏍᎩ ᎤᏍᎪ ᎠᏖᎵᏙ ᎦᎶᏕᏍᏗ. “ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ, “ᏱᎬᏚᎢᏍᏓᏏ ᏳᏫᏍᎩᎩᎡᎳ ᏌᎳᏓ ᎤᏤᎵ ᏧᏪᏥ ᏗᎦᏅᏙᏗ, ᎯᎪ ᎠᎴᏂᏍᎩ ᏂᎯ ᎠᎬᏱ ᏯᎵᏍᏓᏴᎲᎦ ᎠᎩᏲᎮᎲ ᎠᎵᏍᏓᏴᏗ ᏣᏄᏏ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᏚᎵᏂᏆᏅᏅᎩ ᎠᎴ ᎾᎦᏛ ᎠᏂᎦᏔᎲ ᎤᏓᏙᎵᏍᏔᏅᎩ. ᎤᏂᏣᏘᏃ ᏚᏂᏄᎪᏫᏎ ᎠᏂᏍᎩᎾ, ᎠᎴ ᎪᎢ ᏚᏂᏣᏁᏔᏁ ᎤᏂᏣᏘ ᏧᏂᏢᎩ, ᎠᎴ ᏚᏂᏅᏩᏁᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᏏᏴᏫ ᎤᏍᎦᏅᏨ ᎢᏳᏩᏂᏌᏛ ᎠᏍᎦᏅᏨ ᏗᎫᎪᏙᏗ ᎨᏒ ᏂᎦᏗᏳ ᏴᏫ ᏧᏂᎷᏤᎸ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏏᏴᏫ ᏚᏳᎪᏛ ᏄᏛᏁᎸ ᎢᏳᏩᏂᏌᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏁᏗ ᎨᏒ ᎤᏂᎷᏤᎸ ᏂᎦᏗᏳ ᏴᏫ ᎨᎫᏓᎴᏍᏗᏱ ᎬᏂᏛ ᎤᏂᏩᏛᏗᏱ ᎤᎬᏩᎳ. ᎤᏍᎦᎣᏅ ᎨᏎ ᏫᎵᎻ. ”ᏍᏈᏯ ᎦᏓᏅᏖᎭ,” ᎤᏛᏁ ᏫᎵᎻ. “ᏁᎳᎩ ᏫᎦᎵᏬᎩ,” ᎤᏛᏁ ᏥᏍᏕᏥ. “ᏣᏥ ᎣᎩᎾᎵ ᎨᏒᎩ,” ᎤᏛᏁ ᏫᎵᎻ. ᎭᎾᎾ ᏱᏩᏔ ᏄᏍᏗᏓᏅ ᏭᎶᏒᏍᏗ ᏣᏍᎩᏗᏒᎯ. ᎾᏃ ᎠᏧᏣ ᎢᎦᎢ ᎠᎵᎮᎵᎬᎢ. ᎧᏁᏍᎦ ᎫᏔᎩᏍᏙᏗ ᏭᏴᎮ ᏣᏄᏏ ᏃᎴ ᎤᎩᏒᏎ ᎦᏓᎭ ᏂᎨᏒᎾ ᎧᏁᏍᎦ. ᎧᏃᎯᏰᎩᏃ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎨᏒᎩ, ᎠᎴ ᏔᎳᏚ ᎢᏳᏟᎶᏛ ᎢᏴᏛ ᎧᎳᏩᏗᏒ ᎨᏒᎩ, ᏆᎴᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏂᏧᏏ; ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᎢᏣᏤᎵᎦ! ᎪᎯᏳᏗ ᎨᏒ ᎲᏗᏍᎨᏍᏗ ᎣᏍᏛ ᎠᎵᏍᏗ ᎨᏒ ᎭᎵᎮᏍᏗ. ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎨᏒ ᏘᏂᏴ, ᎾᎿ ᎾᏍᏉ ᎡᏣᏯᏅᏛ ᏥᎩ, ᎠᎴ ᏣᏃᏅᎯ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏗ ᎨᏒ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎯ ᎠᏂᏚᏔᎲᎢ. ᏗᏧᎧᎬᎢ ᏧᎩᎴ ᏃᎴ ᏣᏚᏃᎩᏎᎢ, ᎤᏂ, ᎤᏂ, ᎤᏂ, ᏥᏍᏆ ᏔᏯᎪᎦ. ᎱᎷᏣ, ᎠᏣ ᏗᎪᏒᏔᏅ ᏚᎳᏑᏞᎢ ᏃᎴ ᎤᏪᏘ ᎠᏣ ᎦᏌᎴᎾ ᎤᏄᏪᎢ, ᏃᎴ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ ᎠᏥᏍᏛ ᎪᏱᏁᎮᎢ ᏃᎴ ᎤᏍᏗ ᎦᎾᏧ Ꮎ ᎦᏁᎮᎢ. ᎠᎴ ᎢᏣᏛᎩᏍᎨᏍᏗ ᏓᎿᏩ ᎠᎴ ᎠᏂᏃᎮᎵᏙᎲ ᏓᎿᏯ; ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎤᏪᎵᎯᏍᏗ ᏱᏂᏣᎵᏍᏓᏁᎴᏍᏗ; ᎾᏍᎩᏰᏃ ᏂᎦᏗᏳ ᎠᏎ ᎢᏳᎵᏍᏙᏗ, ᎠᏎᏃ ᎤᎵᏍᏆᏗᏍᏗᏱ ᎨᏒ ᎠᏏ ᎨᏎᏍᏗ. ᎢᏤᏯᏔᎮᏍᏗ ᏥᎦᏰᏥᏐᏢᏔᏂ ᏌᏉ ᎯᎠ ᏧᎾᏍᏗᎦ; ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ; ᎦᎸᎳᏗ ᏦᏒ ᏧᎾᏤᎵᎦ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏂᎪᎯᎸ ᎠᏂᎪᏩᏘᏍᎪ ᎤᎧᏛ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ. ᏭᏴᎸᏃ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᎴᏅᎮ ᏚᏄᎪᏫᏎ ᎾᎿ ᎠᏂᏃᏗᏍᎩ, ᎠᎴ ᎤᏂᏩᏒᎥᏍᎩ; “Ꮘ-Ꮘ-Ꮘ!” ᎤᏃᏴᎵᏙᎮ ᎠᏕᎳ ᎤᏁᎦ ᏗᎪᏒᏔᏅ ᏗᎬᏙᏗ, ᏗᏌᏅᏙᏗ, ᏧᏍᏗ ᎠᎹ ᏗᎦᎵᏙᏗ ᏃᎴ ᏍᏈᏍᏓ ᏗᎬᏔᏂᏓᏍᏗ. ᎿᏉᏰᏃ ᎦᏓᎵᏍᎪᎸᏗᎭ, ᎠᎴ ᎾᎯᏳ ᎠᏇᏅᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎯᏗ. ᎠᎴ ᎠᏓᏅᏙ ᎤᏓᏅᏖᎮᎸᎯ ᏭᎷᏤ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᏧᎦᏴᎵᎨᏃ ᎤᏂᏴᏔᏂᎸ ᎠᏲᎵ ᏥᏌ ᎾᏍᎩ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏳᎾᏛᏁᏗᏱ, ᏣᎳᎩ ᎠᏰᎵ ᎤᎵᎮᎵᏤ ᏍᏏᏉᏯ ᏚᏬᎷᏩᏛᎲ ᏗᎪᏪᎶᏗ ᏣᎳᎩ. ᎤᏍᏗ ᏃᎴ ᎤᎵᏍᏗ. ᏓᏂᎳᏫᎥᏃ ᏚᏂᏰᎵᏒ ᎤᏂᏣᏖ ᎠᏂᏧᏏ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᎠᏂᏧᏏ ᏓᎾᎵᎪᏁᎸᎯ ᏚᏂᏍᏓᏩᏛᏎ ᏉᎳ ᎠᎴ ᏆᏂᏆ, ᎾᏍᎩᏃ ᏚᏂᏬᏁᏔᏁ ᏚᏂᏔᏲᏎᎴ ᏧᏂᏲᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ. ”ᏥᎭᏓᏅᏛᎳ, ᏥᎭᏓᏅᏛᎳ!” ᎤᏪᎷᏁᎢ ᏌᏌ. ᎢᏳᏰᏃ ᎼᏏ ᏱᎡᏦᎢᏳᎲᏍᎨᎢ ᎠᏴ ᏱᏍᎩᏲᎢᏳᏁᎢ, ᎾᏍᎩᏰᏃ ᎠᏴ ᎠᎩᏃᎮᏍᎬᎢ ᎤᏬᏪᎳᏅᎩ. ᎾᏍᎩᎾ ᎾᏍᏉ ᏂᎯ, ᎿᏉ ᏂᎦᏛ ᏄᏤᏪᏎᎸ ᏂᏣᏛᏁᎰᏅᎭ, ᎯᎠ ᏂᏥᏪᏒᎭ, ᎪᏞᏍᏗ ᎣᎬᏙᏗ ᏂᎨᏒᎾ ᎣᎩᏅᏏᏓᏍᏗ; ᎢᏲᎦᏛᏁᏗᏉ ᎨᏒ ᏃᎦᏛᏁᎸ. ᎩᎶ [ᏥᏌ] ᏥᏯᎠ ᏯᏗᎭ, [ᏥᏌ] ᎤᏪᏙᎸ ᎾᏍᎩᏯ ᎾᏍᏉ ᏰᏙᎭ. “ᏲᎾ ᎤᏤᏍᏙ ᎤᏰᎸᏗ,” ᏚᏬᏏᏌᏁ. “ᏓᎩᏯᏪᎪ, ᏃᎴ ᎤᎯᏐᏗ ᎠᏆᏓᏅᏘ ᏂᏗᎦᎵᏍᏙᏗ ᎨᏍᏗ ᏱᏗᏓᏥᎪᏩᏛ ᏗᏆᏤᎵ ᏗᏂᏲᏟ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᏱᎦᏥᏁᏤᎸ ᎠᎾᎵᏅᏟ ᎠᏇᎵᏒᎩ ᎢᎬᏱ ᏫᎨᏥᎷᏤᏗᏱ, ᎠᎴ ᎢᎬᏱ ᏭᎾᏛᏅᎢᏍᏙᏗᏱ ᎢᏥᏗ ᎨᏒ, ᎾᏍᎩ ᎦᏳᎳ ᎧᏁᎢᏍᏔᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏛᏅᎢᏍᏔᏃᏅᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎣᏏᏳ ᎢᏥᏰᎸᎯ ᎢᏥᏅᎯ ᎨᏒᎢ, ᎥᏝᏃ ᎢᏥᎨᏳᏅᎯ ᎾᏍᎩᏯᎢ. ”ᎠᏎᏃ, ᏗᎦᎵᎢ, ᏳᏲᏣ ᏍᎩᎾᎾ ᎤᏪᏘ ᎤᏪᏥ, ᏍᎩᏉ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏔᎵᏁᏍᎩᏂ ᏫᎦᎵᏦᏛ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏩᏒ ᏌᏉ ᏫᎾᏴᎯᎮ ᏂᏓᏕᏘᏴᎯᏒᎢ, ᎥᏝ ᎠᎴ ᎩᎬ ᏂᎦᏁᏤᎲᎾ ᏱᎨᏎᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎤᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᎤᏂᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ. ᎾᏍᎩᏃ ᏚᏙᎥ ᎤᏅᏙᏗᏱ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᎠᎴ ᎠᏍᎦᏅᏨ ᎥᏓᏗᏙᎵᏍᏗ ᎨᏒ ᎨᎦᎵᏥᏙᏁᏗᏱ ᏂᎦᏛ ᏧᎾᏓᎴᏅᏛ ᏓᏁᏩᏗᏒᎢ, ᏥᎷᏏᎵᎻ ᎤᎾᎴᏅᏗᏱ. ᏥᏌᏃ ᎤᎦᏔᎲᏒ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏒ ᏚᎪᎲ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙ ᎢᏍᏗᏲᎭ? ᎯᎠᏃ ᏂᎬᏩᏪᏎᎸᎩ; ᏔᏈ--ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎦᏛᎦ ᏔᏕᏲᎲᏍᎩ--ᎭᏢ ᏗᏤᏅ. ”ᎭᏩ,” ᎤᏛᏁ ᏌᎳᏓ, ”ᏨᏌ ᎭᏓᏌᎳᏗᏍᎨᏍᏗ. ᏔᎵᏁᏃ ᎤᏗᏌᏓᏛ, ᎦᏙᎯ ᎤᏬᏪᎳᏅᎩ. “ᎠᏯᏗ ᏍᏉ,” ᏃᎴ ᏦᎢᏁ ᏄᏪᏎᎢ. “ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ, “ᏤᏍᏗ ᏱᏨᏳᏓᏕᎮᏍᏗ. ᎢᏥᎦᏔᎮᏍᏗ ᏂᎦᏛ, ᎠᎴ ᏂᎦᏛ ᎢᏏᎵ ᎠᏁᎯ ᎠᏂᎦᏔᎮᏍᏗ ᎾᏍᎩ ᏕᎤᏙᎥ ᏥᏌ ᎦᎶᏁᏛ ᎾᏎᎵᏗ ᏤᎲᎩ, ᎾᏍᎩ ᏓᏓᎿᏩᏍᏛ ᏤᏣᏛᏅᎩ, ᎤᏁᎳᏅᎯ ᏥᏕᎤᎴᏔᏅ ᎤᏲᎱᏒᎢ, ᎾᏍᎩ ᏄᏩᏂᏌᏅ ᎯᎠ ᎠᏍᎦᏯ ᎤᏗᏩᏒᎯ ᏥᎦᏙᎦ ᏕᏥᎧᏅᎢ. ᎯᎠᏍᎩᏂᏃᏅ ᎢᏣᏛᏁᏗᏱ ᎤᏟ ᎢᎦᎢ ᎢᏨᏍᏗᏰᏗᎭ, ᎾᏍᎩ ᏞᎦᎾᎨ ᏗᏤᎲ ᏔᎵᏁ ᏮᏆᏘᏃᎯᏍᏗᏱ. ᎤᎪᎮᎢ ᎦᎸᎳᏗᏣ ᎤᏅᏏᏴ ᎤᏴᏍᏗ. ᏰᎵ ᎾᏂᎥ ᏗᏂᏲᏟ, ᎠᏂᏰᎬ ᏚᏂᏲᏏᏍᎬ ᏃᎴ ᏓᎾᏦᎭᏱᎲ. ᏐᏈᎵ ᎤᏂᏴᏍᏗ ᎠᏩᏛᏗ ᎤᎧᏔ ᎠᎾᎵᏙᎩᏯᏍᎩ ᏐᏈᎵ ᎤᎾᏤᏮ. ᎨᏍᏗ ᎩᎶ ᏰᎵᏍᎨᎢ ᎦᏳᎳ ᎠᏂᏯᎥ ᏥᏍᏕᏥ ᏃᎴ ᎧᏅᏂᏍᎩ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏄᏩᎥ ᏚᏪᏣᎦᎸᎮᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎠᏏ ᏱᏗᎦᏚᎵ ᎠᏂᏃᎮᏍᎩ? ᏏᏓᏁᎸᎯ ᎠᎾᏑᏯᎩᏍᎬ ᏧᏂᏰᏍᏛᏗ ᏧᏍᏆᏅᎾ ᎦᏙᎯ. ᏂᎯᏰᏃ ᎢᏤᎲ ᎤᏓᎴᏅᎩ ᎤᏃᏴᎵᏒᎩ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎥᏝ ᎹᏏᏙᏂᏉ ᎠᎴ ᎡᎦᏯ ᎤᏩᏒ ᏱᏭᎷᏤᎢ, ᎾᏍᏉᏍᎩᏂ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᎤᏁᎳᏅᎯ ᎡᏦᎢᏳᏒ ᏚᏰᎵᏒ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎠᏎ ᎪᎱᏍᏗ ᎣᎦᏛᏗ ᏱᎩ. ᎦᎵᏉᎩᏃ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏳᏂᏄᎪᏨᎩ, ᏓᏂᏰᎲᎩ ᎦᎵᏉᎩ ᎤᏕᏯᏙᏗ, ᏚᎾᏄᏮᎩ ᏂᏚᏓᏅᎦᎸᎾ ᎠᎴ ᏧᏁᎬ ᏙᎴᏛ ᏗᏄᏬ, ᎠᎴ ᏗᏂᏁᏥᏱ ᏚᎾᏓᏠᎲᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᏗᎪᏢᏅᎯ ᏗᏓᏠᏍᏗ. ᎢᏳᏲᏎᏰᏃ ᎤᏂᏣᏛᎩ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎤᎾᏚᎸᎲᎩ ᏂᎯ ᏥᏥᎪᏩᏘ ᎤᏂᎪᏩᏛᏗᏱ, ᎠᏎᏃ ᎥᏝ ᏳᏂᎪᎮᎢ; ᎠᎴ ᎤᎾᏛᎪᏗᏱ ᎾᏍᎩ ᏂᎯ ᏥᏣᏛᎩᎭ, ᎠᏎᏃ ᎥᏝ ᏳᎾᏛᎦᏁᎢ ᎭᏕᏬ. ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᏥᏁᎸ ᎠᏓᏙᎵᏍᏙᏗᏱ ᎠᏓᏁᎸ ᏚᏙᎠ, ᎠᏎᏃ ᏂᎯ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎤᏍᏓᎦᎸ ᏂᏨᏁᎸ. ᏕᏥᏁᎸᏰᏃ ᎧᏃᎮᏛ ᎾᏍᎩ ᏍᎩᏁᎸᎯ ᏥᎩ; ᎠᎴ ᎾᏍᎩ ᏚᎾᏓᏂᎸᏨ, ᎠᎴ ᎤᏂᎦᏙᎥᏒ ᎤᏙᎯᏳᏒ ᏂᎯ ᏖᎲ ᏅᏛᏆᏓᎴᏅᎯ ᎨᏒᎯ; ᎠᎴ ᎤᏃᎯᏳᏅ ᏂᎯ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ. ᎬᏂᏳᏉᏃ ᎨᎾᏂ ᎡᎯ ᎠᎨᏴ ᎾᎿ ᎾᎥ ᏅᏓᏳᎶᏒᎯ ᎤᏪᎷᏅᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏙᎵᎩ, ᏣᎬᏫᏳᎯ ᏕᏫ ᎤᏪᏥ, ᎠᏇᏥ ᎠᎨᏴ ᎤᏣᏔᏅᎯ ᎤᏕᏯᏙᏗᎭ ᎠᏍᎩᎾ. ᎠᏎᎩ ᎤᏐᏱ ᎠᏁᎵᏍᎪ ᎠᏕᏒᎲᏍᎩ ᎦᏣᏄᎳ ᏳᎴᏫᏍᏔᎾ ᏏᏱᎾᏍᏆᏗᏍᎬᎾ, ᏱᎬᎾᎵᎮᎵᎦ ᏧᏙᏓᏋᏓ ᎫᏩᎾᏓᏏᏀᎥᏍᏙᏗ ᏱᎩ ᎠᏂᏏᏀᎥ. ᎠᏎᏃ ᏂᎦᎥᏉ ᎠᎩᎭ ᎠᎴ ᎤᏣᏔᏅᎯ; ᎠᎩᎧᎵᏬᎯ, ᏗᏆᏓᏂᎸᏨᎯ ᎨᏒ ᎢᏆ'ᎶᏓᏓ ᎤᏲᎸᎯ ᎾᏍᎩ ᏅᏓᏣᏓᏅᏒᎯ, ᎤᏣᏘ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎠᏥᎸ ᎨᎳᏍᏗ ᏗᎬᏓᏂᎸᎢᏍᏗ, ᎣᏏᏳ ᎤᏰᎸᏗ ᎤᏁᎳᏅᎯ. ᎥᏝᏰᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏱᎩᎧᎭ ᎾᏍᎩ ᎨᎩᏙᎵᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏕᎩᏩᏂᎦᎸᎢ, ᏂᎦᎥᏉᏍᎩᏂ ᎠᏥᎪᎵᏰᎲᎩ ᎠᏴ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᎾᏍᎦᏅᎾ ᎨᏒᎩ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎣᏂ ᏦᏩ ᎠᎵᎹᏗᏱ ᎡᎯ, ᏥᏌ ᎠᏍᏓᏩᏗᏙᎯ ᎨᏒᎩ, ᎠᏎᏃ ᎤᏕᎵᏛᏉ ᎠᏂᏧᏏ ᏓᏍᎦᎢᎲᎢ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ, ᎾᏍᎩ ᏦᏩ ᎤᏔᏲᏎᎸᎩ ᏆᎴᏗ ᎤᏁᏍᏗᏱ ᏥᏌ ᎠᏰᎸᎢ. ᏆᎴᏗᏃ ᎤᎵᏍᎪᎸᏓᏁᎸᎩ. ᎰᏩᏃ ᎤᎷᏨᎩ ᎤᏁᏒᎩ ᏥᏌ ᎠᏰᎸᎢ. ᏄᏓᎴ ᎧᏃᎮᏗ ᎱᏃᎯᏎᎴ ᏌᎳᏓ, ᏄᏓᎴ ᎠᎾᏓᏤᎵ ᎱᏃᎮᎴ, ᎤᏃᎴ ᎠᏲᏙᏗ ᏗᎩᎸᏗᏍᎩ. ᎤᎧᎵᏤ ᎤᏓᏅᏙᎩ ᎠᎵᎮᎵᎬ ᏫᎵᎻ. ᎪᎯᏍᎩᏂ ᎤᏟ ᎢᏲᏍᏛ ᎤᎾᏤᎵᎪᎯ ᎤᏂᏲᎭ, ᎾᏍᎩ ᎦᎸᎶᎢ ᏗᏍᏆᏂᎪᏛᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎥᏝ ᏯᏕᎰᏍᎦ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᎪᏎᏗᏱ; ᏚᏛᏅᎢᏍᏓᏁᎸᏰᏃ ᎦᏚᎲᎢ. ᎤᎩᏨᏛᏃ ᏉᎳ ᎣᎦᎵᎪᎯ ᎣᎦᏂᎩᏒᎩ ᏏᏌᎵᏱ ᏬᎩᎷᏨᎩ. ᏬᎩᏴᎸᏃ ᎦᏁᎸ ᏈᎵᎩ ᎠᎵ ᏥᏙᏂᏙᎯ, ᎾᏍᎩ ᎦᎸᏉᎩ ᎢᏯᏂᏛ ᎠᎦᎵᎪᏔᏅᎯ, ᎾᎿ ᎣᎦᏅᏅᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎵᎮᎵᎩ ᏂᎦ ᎦᎸᎶᎢ ᎨᏒᎢ, ᎠᎴ ᏂᎯ ᎾᎿ ᏥᏤᎭ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎡᎶᎯ ᎢᏤᎯ, ᎠᎴ ᎠᎺᏉᎯ ᎢᏤᎯ! ᎠᏍᎩᎾᏰᏃ ᎢᏣᏠᎠᏎᎵᎦ, ᎤᏣᏘ ᎤᏔᎳᏬᏍᎬᎢ ᎠᎦᏔᎭᏰᏃ ᎤᏍᏆᎳᎯᏳ ᎨᏒ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎢ. ᎾᏍᎩ ᎠᏥᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᏣᏘ ᎢᏳᏩᏓᏗ ᎪᎯ ᎨᏒᎢ, ᏐᎢᏱᏃ ᏗᎨᏒ ᎬᏂᏛ ᏫᎾᏍᏛᎾ. ᎯᎠᏰᏃ ᏄᏍᏗ ᎤᎵᏁᏨ ᎠᏚᎢᏍᏛᎢ. ᎯᎠᏉ ᎢᏳ ᏓᏥᎷᏥ, ᎠᎴ ᏎᎵ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ. ᎠᎴ ᎠᏍᎫᏕᏍᎩ ᎠᎦᎫᏴᎡᎰᎢ, ᎠᎴ ᎤᏍᎫᏕᏒᎯ ᏫᎦᏟᏏᏍᎪ ᎬᏂᏛ ᏗᎨᏒᎢ, ᎾᏍᎩ ᎢᏧᎳ ᎤᎾᎵᎮᎵᏍᏗᏱ ᏂᎦᎵᏍᏗᏍᎪ ᎠᏫᏍᎩ ᎾᏃ ᎠᏍᎫᏕᏍᎩ. ᎢᏳᏍᎩᏂ ᎯᎦᏙᎵ ᎤᏲ ᎢᎨᏎᏍᏗ, ᏂᎬ ᎯᏰᎸᎢ ᎤᎧᎵᏦᏅᎯ ᎨᏎᏍᏗ ᎤᎵᏏᎩ. ᎢᏳᏍᎩᏂᏃ ᎢᎦᎦᏘ ᎭᏫᏂ ᏤᎲ ᎤᎵᏏᎩᏉ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᎵᏏᎩ ᏂᎦ ᎡᏉᎯᏳ! ᏭᏯᏅᎮᏃ ᎠᏏᏴᏫ ᎠᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᏛᏛᏁ ᎤᏰᎸᎥ ᎾᏍᎩ ᎾᎾᏛᏁᎲᎢ. ᏃᏉᏃ ᏣᏁᎳ, ᏃᏉᏃ ᏐᏁᎳ. ᎤᎵᏍᏛᏧᏁ ᏣᎵ ᎭᏫᏂ ᎤᏛᎴᎮ. ᎾᏍᎩ ᏄᎵᏓᏍᏔᏅᎾ ᎨᏒ ᎾᏍᎩ Ꮎ ᎤᏁᏤᎸᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎼᏏ ᏄᏓᎵᏓᏍᏛᎾ ᏥᎨᏎ ᏂᎦᎥ ᏚᏓᏘᎾᎥᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᏱᎦᎵᎭ ᏓᏳᏗᏩᏏᏉ. ᏥᏌᏃ ᎿᏉ ᎠᏎ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᎤᏂᏰᎸᏎᎢ, ᎾᏍᎩ ᎯᎳᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎢᏳᏃ ᎩᎶ ᏳᏲᏍᏔᏅ ᎤᏁᎳᏅᎯ ᎦᏁᎸᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏓᏳᏲᏍᏔᏂ; ᎤᏁᎳᏅᎯᏰᏃ ᎦᏁᎸ ᎦᎸᏉᏗᏳ, ᎾᏍᎩᎾ ᏂᎯ ᏥᎩ. ᏣᏚᎳᏛ ᏃᎴ ᏣᏁᏨ ᎣᎩᏌᏙᏴᏗ ᎠᏴᏫᏯᏍᏛ ᏫᏗᎦᎪᏗ ᎤᎾᎵᎩᏛ ᎭᏂ ᎢᏣ ᎤᎾᏗᏍᎦᏟ ᎣᎩᎷᏤᎸ, ᎾᏆᏛᏁᎳ ᏄᏍᏛ ᏣᏚᎵᏍᎬ. ᎦᏯ ᎠᎩᏍᏆᏂᎪᏗᏍᎩ ᎠᎴ ᎾᏂᎥᏉ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᏍᏆᏂᎪᏗᏍᎩ, ᏫᏥᏲᎵᎦ. ᎢᎳᏍᏓ, ᎠᏰᎵ ᎡᎯ ᎦᏚᎲ ᎠᎲ ᎠᎦᏘᏯ, ᏫᏥᏲᎵᎦ, ᎠᎴ ᏉᏓ, ᎢᏓᎵᏅᏟ. ᎠᏆᏚᏓᎳ. ᎤᏩᏌ ᎭᏫᏂ ᎬᏅᎢ ᎠᎴᏂᏍᎪ ᏃᎴ ᎢᎦᎵᏍᎪᎸᏓᏁᎰ ᎢᎩᎪᏩᏛᏘ. ᎥᏝ ᎠᎴ ᎡᏃᏱ ᏱᎨᏎᏍᏗ ᎾᎿᏂ, ᎥᏝ ᎠᎴ ᏳᎾᏚᎵ ᎠᏨᏍᏙᏗ, ᎠᎴ ᏅᏙ ᎢᎦᎡᎯ ᎢᎦ ᎤᏘᏍᏛᎢ; ᎤᎬᏫᏳᎯᏰᏃ ᎤᏁᎳᏅᎯ ᎢᎦ ᏓᏘᏍᏓᏁᎭ, ᎤᏂᎬᏫᏳᎯᏃ ᎨᏎᏍᏗ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎯᎠᏃᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏛᏍᏆᎸᎯ ᎾᎯᏳ ᎨᏒ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎢᏥᎪᏩᏛᏗᏱ ᏌᏉ ᎢᎦ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵᎦ, ᎠᎴ ᎥᏝ ᏴᎨᏥᎪᏩᏛ. ᎤᏅᏕᏨ ᏚᏳᎪᏛ ᎦᏅᏅᎢ, ᎠᎴ ᎤᎾᎴᏲᎥ, ᎤᏂᏍᏓᏩᏕᏅ ᎤᎶᏒ ᏇᎳᎻ ᏉᏌ ᎤᏪᏥ, ᎣᏏᏳ ᏧᏰᎸᏎ ᏂᏚᏳᎪᏛᎾ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᎫᏴᏗ, ᎦᎵᎡᎵᎦ ᏕᎩᎾᏙᎵᏨ, ᏃᏗ ᎭᏇᏅᏍᏗ.” ᎠᎾᎦᎱᎥᏍᎬ ᏅᏙ, ᎠᏰᎵᏒ ᏅᏙ ᏧᏟᎷᏆᏛᏍᏗ, ᎣᏍᏓ ᎠᎩᏰᎸᎲ ᏍᎩᏴ. ᎠᎦᏴᎵ ᏗᎧᏃᏗ ᏲᎾ, ᏂᎦᏓ ᎠᏰᎸᎢ ᎠᏲᏟᎨ ᏄᏍᏛ, ᏣᏉ ᏧᎪᎳ ᏧᎦᏌᏘ ᏕᎦᏰᏌᏛ. ᏕᎬᏩᎦᏚᏢᏅᏃ ᎤᎧᏛ ᏕᎬᏩᏂᎮᎢ, ᎬᏩᏛᏛᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎭᏙᎴᎰᎯ, ᎦᎪ ᏥᏨᏂᎦ? ᎤᏍᏆᏂᎩᏗ ᏄᎵᏍᏔᏅ ᎤᏃᎮᎴ ᎠᎵᏥᏙᎲᏍᎩ. “ᎧᎹ! ᏏᏛ ᏔᎵ ᏕᎯᏂᏅᏌᏓ,” ᎤᏛᏁ ᏥᏍᏚ. ᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎸᎩ; ᏍᎩᎪᏩᏛᎲ ᎠᏎᏃ ᎥᏝ ᏱᏦᎯᏳᎲᏍᎦ. ᎣᏏᏳᏍᎩᏂ ᏂᎪᎯᎸ ᎤᏣᏘ ᎢᏥᎨᏳᏗᏱ ᎣᏍᏛ ᎨᏒᎢ, ᎥᏝᏃ ᎾᎯᏳᏉ ᎢᏨᏰᎳᏗᏙᎲ ᎤᏩᏒ. “ᏎᎦᏨ ᏕᎯᏕᏦ ᏕᏣᏏᎳᏛ.” ᎠᎴ ᎤᎬᏫᏳᎯ ᎬᏂᏛ ᎠᏓᏁᎯ ᎡᏥᎸᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ ᎤᏓᎸᎯ ᎡᏥᎧᏁᏗᏱ; ᎨᏴ ᏫᏥ ᎢᏣ ᎤᎾᎷᏒ ᏭᏬᎯᎶᎯᏍᏗ ᎭᏂᏨ ᎤᎨᏓᎵᏴ, ᎨᏴ ᏭᏩᏐᎯᏍᏗ ᏄᏓᎴ ᎨᏴ ᏃᎴ ᎤᏂᎵᏦᏩᏛ ᎢᏣ. ᏧᏒᎯᏓ ᏥᏯᎥ ᏴᏫ ᏗᏘᏂᏙᎯ ᏥᏯᎥ ᎠᏥᎳ ᏓᏆᎴᎳ ᏧᎷᎯᏍᏗ. ᏥᏌᏃ ᎬᏩᎷᏤᎸ, ᎤᏣᏘ ᎬᏩᏍᏗ ᏰᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏓᏅᏖᏳ ᎾᏍᎩ ᎯᎠ ᏥᏅᏘᏍᏛᏁᎵ; ᏏᎮᎾ ᏂᎦᏓ ᎤᏩᎾᏙ ᎤᏤᎸᏍᎰ ᏩᎭᏯ ᎤᏂᏃᏕᎾ ᏓᏂᎾᏆᏗᏍᎨᎢ. ᎠᎴ ᎩᎶ ᏓᏓᏂᎸᎨᏍᏗ ᏌᏉ ᎾᏍᎩ ᎯᎠ ᎢᏳᏍᏗ ᎠᏲᎵ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ. ᎪᎨᏱ ᏏᏆ ᏂᎯ?” ᎿᏉᏃ ᏂᎦᏛ ᎠᎾᏛ ᎤᎾᏗᏓᏁᏎᎢ, ᎠᎴ ᏚᏂᏥᏃᏍᎦᎸᎮ ᏚᏂᏨᏍᏛᎢ. ᏃᏗ ᎤᏃᎴ ᏗᏲᏙᏗ ᏧᎾᎩᎸᏗ ᎦᎵ ᏄᎵᏍᏔᏁ ᎦᎸᎳᏗᏣ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎾᎥᏂᎨ ᎤᏬᏍᎩᎵ ᏣᎦᏍᎪ. ᎩᎳᏈᏴ ᏫᎩᏂᏴᏍᏗ ᎧᏁᏌᎢ ᏧᏍᏆᏴᏍᏗ ᏃᎴ ᎣᎩᎾᏗᏍᎦᎶᏗ.” ᎠᏎᏃ ᎥᏝ ᎠᎾᏨᏍᎩ ᏥᎩ [ᎤᎾᏓᏡᎬ] ᎢᏖᎳ ᏱᎩ, ᎾᏍᎩ ᎨᏥᏛᏙᏗ ᎨᏒ ᎢᏴᏛ ᏥᏩᏂᎷᎦ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᎾᏓᏡᎬ ᎢᏖᎳ, ᎾᏍᎩ ᎤᏃᎯᏳᏒ ᏥᏓᏂᏍᏕᎸᏗ ᏧᎾᏓᏅᏙ. ᎯᎠ ᎾᏍᎩ ᏥᏂᏥᏪᎠ, ᏥᎪ ᏴᏫᏉ ᎤᏓᏅᏖᏛ ᏂᏥᏪᎠ? ᎾᏍᏉᎨ ᎾᏍᎩᏯ ᏂᎦᏪᎭ ᏗᎧᎿᏩᏛᏍᏗ? ᏃᏗ ᎭᎾᏓᏅᏍᎨ ᏐᎢ ᎤᏔᏂᏗᎨᏍᏗ ᎠᏍᏚᎲ ᏏᏆ ᏗᎦᏅᎬ. ᎾᏍᎩᏯ ᎤᏣᏘ ᎠᏆᏚᎵᏍᎬ ᎠᎴ ᎤᏚᎩ ᎠᏋᏒᎢ, ᎾᏍᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎠᏆᏕᎰᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᏂᎦᎥᏉᏍᎩᏂ ᏂᏥᏍᎦᎢᎲᎾ ᎨᏒᎢ, ᏥᏄᏍᏙᏉ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎪᎯ, ᎦᎶᏁᏛ ᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏥᏰᎸ ᎬᏗ, ᎾᏍᏉ ᎬᏃᏛ ᎨᏒ ᎠᎴ ᎠᎩᏲᎱᎯᏍᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎩᎶ ᎤᏇᏓᎵ ᎨᏒ ᎤᏢᏈᏍᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᎠᎦᏔᎲᎢ. ᏥᏌᏃ ᎤᏓᏅᏎ ᏚᏘᏅᏎ ᎬᏩᏍᏓᏩᏗᏐᎯ ᎥᏓᎵ ᏭᏂᎶᏎᎢ; ᎤᏂᏣᏘᏃ ᎬᏩᏍᏓᏩᏛᏎᎢ, ᎤᏓᏳᏂᎶᏒᎯ ᎨᎵᎵ, ᎠᎴ ᏧᏗᏱ, ᎤᎵᏍᎨᏛ ᎠᎩᏰᎸᎲ, ᎯᏍᎩ ᎢᏧᏓᎴᎦ ᎠᏆᏛᎦᏅ ᏄᎵᏍᏔᏂᏙᎸ, ᎨᏍᏗ ᏧᏐᏴᎭ ᏱᎨᏎ, ᎠᏉᎵᏨ ᏥᏳᎪᏗ ᏄᎵᏍᏔᏅ. ᎤᏟᏍᏔ ᎠᏇᏅᏒ Cranshaw, ᎠᏆᏛᎦᎾ ᎤᏂᎩᏒ ᎤᎩᏓᏟᏅᏯ, ᏥᏩᏛᎲ ᎨᎵ ᎤᏂᎦᎸ ᎧᏁᏌᎢ ᎦᏟᏅᎥᏍᎬ ᎤᏂᎾᎥ, ᎠᏂᎱᏣ ᎠᎾᏨᏏᏰᏍᎬ, ᎠᏫᏌᏅ ᎨᏍᏗ ᎣᏍᏓ ᏯᏛᏍᎨ, ᎤᏂᏅᎫᎯᏍᏗ, ᏩᎩᎦ, ᎢᏯ, ᎬᎩᏍᏗ, ᎤᏍᏗ ᎤᏬᏰᏅ ᏂᎬᎸ, ᎦᏄᎸ ᎠᏓᏔᏍᎩ ᏥᏆ ᎤᎾᎵᏍᏔᏴᏗ ᎠᏙᏩᏗᏍᏗᏍᎬ ᎠᏫᏌᏅ. Ꮎ-ᏍᎩᏂ ᎨᏥᏯᏅᏛ ᏥᎩ, ᎢᏧᎳᏉ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ, ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎴ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎤᏂᏰᎸᎯ. ᎭᎾ ᎢᏣ ᏖᏏᏒ. ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ ᏦᎯᏍᏙᏗ ᏗᎾᎿᏬᏍᎩ ᎠᎾᏘᎨ ᎠᏂᎨᏯ ᏃᎴ ᎦᏲᏟ ᎤᎾᏓᏂᎵᎨᎢ - ᎬᏂᎨᏒ ᏂᏓᏅᏁᎲ ᏗᏂᏅᏗ. ᎤᏓᏅᏖᎸ ᏍᎦᏰᎬᏍᏓ ᏧᏗᎦᎴᏲᏗ ᎠᏂᏍᎦᏯ, ᎢᎦᏓ ᏗᎭᏦᏴ ᏚᎾᏘᏅᏒ ᎤᏂᏍᎦᏅᏨ, ᎯᏍᎩᏉ ᏃᏥᎥ ᏦᏥᏩᏘᏍᎩ ᏣᎵ ᏧᏤᎵ ᏴᏫ. ᎿᏉᏃ ᎦᏃᎸᎥᏍᎬ ᎤᏂᏴᎲ ᏥᏳ, ᎠᎴ ᎾᏍᎩ ᎤᏄᎸᏅ ᎤᏃᎴ ᏧᎦᏛ ᏭᎶᎯᏍᏗᏱ ᎤᏁᎳᎩ ᎧᏄᎯᏎᏍᏗ ᎣᎨᎵᏒᎩ. ᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎤᎪᎮ ᎠᏕᎸ ᎠᎩᏏᏙᎯ ᎵᏫ ᏧᏙᎢᏛ, ᎤᏪᎴ ᎠᏰᎵ ᎡᎯ ᎠᏕᎸ ᎠᎫᏴᏗᏱ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏍᎩᏍᏓᏩᏚᎦ. ᎤᏍᎦᏃᎵ ᎤᏏᏃᎴ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᏏᏆ ᎤᏴᏍᏗ ᎾᎥ ᏃᎴ ᎤᎴᏫᏍᏔᏁ. ᎾᎿᏃ ᎤᏂᏅᏅᎩ ᏥᏌ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏂᏧᏏ ᎤᎾᏧᏏ ᎤᎾᏤᎵᎦ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎨᏒᎢ; ᏗᏓᏂᏐᏗᏱᏰᏃ ᎾᎥᏉ ᎨᏒᎩ. “ᎨᏍᏗ ᏥᎾᏆᏟᏂᎬᎬ ᏯᏆᏟᏂᎬᎦ ᎯᎪᎢᏳᎳ. ᎤᏌᎨ ᎢᏳᏍᏗ ᎤᏬᏂᏎ ᎠᏎᏃ ᎤᏓᏅᏘ. ᎨᏍᏗᏰᏃ ᏚᏳᏂᏍᏗ ᎤᏂᎦᎾᏍᏓ ᎢᏳᏍᏗ ᏱᎩ ᎢᎯ. ᏂᎯ ᎡᎶᎯ ᎠᎩᎷᎯᏍᏗᏱ ᏍᎩᏅᏏᏛ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎡᎶᎯ ᎦᏥᏅᎵ ᎾᏍᎩ. ᎩᎳ ᏧᎾᏙᎣᏒ ᏧᏆᎶᎦ ᎦᎳᎨᏴ ᎠᎾᏓᏏᏎ ᎤᎾᎵᏍᎩᏛ, ᎣᎭᏂ ᎤᎾᏕᏅ ᏗᏂᏂᎨᏅ ᎢᎦᏘ ᎦᎳᎨᏴ. ᎠᏴᏰᏃ ᎢᎪᎯᏳᏅᎯ ᎨᏒ ᎢᏗᏴᎯᎭ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏄᏪᏒᎢ, ᎾᏍᎩᏯ ᎠᏆᏎᎵᏔᏅ ᎠᎩᏔᎳᏬᏍᎬᎢ, ᎾᏍᎩ ᎤᏂᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎠᏆᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ; ᎠᏍᏆᏛᎯᏍᎩᏂᏃᏅ ᎨᏒᎩ ᏕᎦᎸᏫᏍᏓᏁᎸ ᎡᎶᎯ ᏧᏙᏢᎤ ᎤᏓᎬᏩᏓᎴᎤᏛ. ᎾᏍᎩ ᏂᎦᏑᏰᏐᎢ ᏧᏪᏥ ᎢᎬᏁᏗᏱ ᎠᎬᏗᏍᎬ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ. ᏆᎴᏗᏃ ᏔᎵᏁ ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎪᎱᏍᏗ ᏯᏗᎭ? ᎬᏂᏳᏉ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎠᏂᏃᎮᎭ ᎨᏣᏡᏗᎭ. ᎢᎪᎯᏍᏓᏁᎯᏰᏃ ᎾᏍᎩ, ᎢᏧᎳ ᏌᏉᏉ ᎢᎬᏁᎸᎯ, ᎠᎴ ᎤᏲᏍᏔᏅᎯ ᎢᎦᏓᏓᎴᏗᏍᎩ ᎠᏐᏴᎢ; Ꭷ ᏤᏍᏗ ᏱᏍᏆᏘᏲᏍᏗᏍᎨᏍᏗ ᏃᎴ ᏫᏢᎾ!” ᏒᎦᏔ ᎢᏈᎬᎢ ᎯᎠ ᎢᏄᏪᏎᎴᎢ, ᎥᎥ, ᏃᏊᏃ ᎠᏇᏆᏨᎢ ᏒᎦᏔ ᎢᏈᎬᎢ ᎯᎠᏃ ᏓᎶᏂᎨ ᏒᎦᏔ ᎠᏃᏍᏓ ᎠᏎᏃ Ꮭ ᎢᎸᎯᏳ ᏱᎦᏥᏴᎨᏳ Ꮎ ᎢᎬᏱᎢ ᏒᎦᏔ, ᎾᏍᎩ ᎤᏁᏝᏅᎯ ᎩᎦᎨᎢ ᎢᏳᏩᏁᎸᎢ ... ᎤᏳᏩᏅ ᏗᏂᏲᏟ ᎤᎾᎭᎾᏬᏍᏙᏗ ᎫᏔᏅ. ᏐᏁᎳ ᎢᏳᏩᏂᎸ, ᎤᎷᏤ ᎡᎶᏗ ᎤᏤᎵ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᏃᎴ ᏫᎵᎻ ᎤᏴᏍᏗ ᎾᎥᏂ ᎤᎴᏫᏍᏔᏁᎢ. ᎢᏳᏃ ᎩᎶ ᏳᎪᎲ ᏗᎾᏓᏅᏟ ᏳᏍᎦᏅᏨ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏔᏲᎯᎮᏍᏗ ᎠᎴ ᎠᏎ ᎬᏂᏛ ᏓᏰᏥᏁᎵ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎤᏂᏍᎦᏅᏨᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᎡᎭ ᎠᏍᎦᏅᎢᏍᏗ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᏔᏲᎯᎮᏍᏗ ᎾᏍᎩ ᎠᏥᏙᎵᏍᏗᏱ ᏱᎦᏗᎭ. Jenny ᎣᏍᏓᏟᏃᎮᏍᎬ ᏫᏚᏯᏪᏣ Michael. ᎤᏍᎦᎢᏓᏉ ᏄᏍᏛ ᎤᎧᏛ, ᏯᎦᏔᎲᎾ ᏧᏓᎴᏅᎲ ᎠᏥᏍᏛᏅ. [ᏍᏗᏫᏃ] ᎯᎠ ᏄᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᎠᎴ ᏗᎩᏙᏓ, ᎢᏣᏛᏓᏍᏓ. ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏗ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎢᎩᏙᏓ ᎡᏆᎭᎻ ᎾᏍᎩ ᎾᎯᏳ ᎺᏌᏆᏕᎻ ᏤᎮᎢ, ᎠᏏᏉ ᎨᎳᏂ ᎾᏁᎳᏗᏍᎬᎾ ᏥᎨᏎᎢ; ”ᎯᎦᏔᎭᏗ,” ᎤᏛᏁ ᎤᎵᏍᎨᏓ ᎦᏬᏂᏍᎩ, ”ᎢᎪᎯᏓ ᏂᎨᎵᏍᎪ ᎣᎯᏍᏙᏗ ᎢᏗᎾᏌᎥ ᏍᎩᎾᎾ ᏏᏆ. ᏥᎪᏃ ᎭᏓᏅᏖᏍᎬ ᏂᎯ ᏴᏫ, ᎾᏍᎩ ᏚᎪᏓᏁᎯ ᏥᎩ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ, ᎠᎴ ᎾᏍᎩᏯ ᎢᎭᏛᏁᎯ ᏥᎩ, ᏔᏚᏓᎳᎡᎵ ᎤᏁᎳᏅᎯ ᏧᏭᎪᏙᏗ ᎨᏒᎢ? ᎾᏍᎩᏃ ᎿᏉ ᎯᎠ ᎠᏲᎩ ᎨᏒ ᎠᏲᎩ ᏂᎨᏒᎾ ᎨᏒ ᎤᏄᏬᏍᏔᏁᏍᏗ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎠᏲᎱᏍᎩ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᎨᏒ ᎤᏄᏬᏍᏔᏁᏍᏗ, ᎿᏉ ᏄᎵᏍᏔᏁᏍᏗ ᎯᎠ ᎢᎦᏪᏛ ᎨᏒ ᏥᎪᏪᎳ, ᎠᏓᎵᏁᎯᏗᏍᎩ ᎨᏒ ᎤᎩᏐᏅ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ. ᎢᏳᏍᎩᏂ ᎦᎶᏁᏛ ᎢᏥᏯᎡᏍᏗ, ᎠᏰᎸ ᎤᏙᎯᏳᎯ ᎤᏲᎱᏒᎯ ᎠᏍᎦᏂ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎠᏓᏅᏙᏍᎩᏂ ᎬᏃᏛ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᎯᎠ ᏄᏂᏪᏎᎢ; ᏗᏓᏍᏚᏗᏱ ᎤᏙᎯᏳᎯ ᎣᎩᏩᏛᎲ ᎤᎵᏂᎩᏗᏳ ᎠᏍᏚᎲᎩ, ᎠᎴ ᎠᏂᎦᏘᏯ ᎠᏂᏙᎾᎥ ᏙᏱᏗᏢ ᎦᎶᎯᏍᏗᏳᎶᏗ, ᎠᏎᏃ ᎣᎩᏍᏚᎢᏒ ᎥᏝ ᎩᎶ ᏲᏥᏩᏛᎮ ᏱᏯᎡᎢ. ᎦᎪᏰᏃ ᎤᏟ ᎠᏥᎸᏉᏗᏳ, ᎠᎵᏍᏓᏴᎲᏍᎩ ᎠᏃ ᎠᏓᏍᏕᎸᎯᏙᎯ? ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎠᎵᏍᏓᏴᎲᏍᎩ? ᎠᏴᏍᎩᏂ ᎢᏨᏰᎳᏗᏙᎭ ᎠᏓᏍᏕᎸᎯᏙᎯ ᎾᏍᎩᏯᎢ. ᏙᏳ ᎠᏉᏚᎯ ᎯᎧᏔᎭ.” ᏉᎳᏃ ᎠᎩᎳᏫᏍᏗᏱ ᎤᎷᏨ ᎠᏂᏯᏫᏍᎩ ᎬᏩᏅᏒᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎬᏍᎦᎢᏍᏓᎩ ᎾᎾᏛᏁᎲ ᎤᏂᏣᏘ. ᎾᏉᏗ ᏓᏯᎢ. ᏇᏣᏱᏗᏃ ᏭᎷᏤᎢ; ᏗᎨᏫᏃ ᎠᏍᎦᏯ ᎬᏩᏘᎣᎮᎴᎢ, ᎠᎴ ᎤᏂᏔᏲᏎᎴ ᎾᏍᎩ ᎤᏒᏂᏍᏗᏱ. ᏂᎪᎯᎸ ᏑᎾᎴ ᏳᏗᏛᎭᏉ, ᎠᏙᎥᏗᏍᎨ ᎤᏅᏗ, ᎤᏯᏤᏗ ᎠᎧᏁᏍᎨ ᏴᏤᏂ. ᏩᏏᏓᏂ ᎦᏚᎲ ᎠᎾᏁᏍᎨᏍᎬ, ᏌᏬᏚ ᎠᎼᏱ ᎨᏴ ᎾᎥ, ᎦᏲᏟᏉ ᎠᎹ ᎡᏉ ᎦᎸᎳᏗᏣ, ᎠᏰᎵᏋ ᎢᎬᏓ ᎦᏚᎲ ᏓᏓᏌᎳᏗᏍ, ᎦᏲᏟ ᏧᏗᎦᎴᏱᏛ ᏧᏔᏂᏛ ᏧᏂᎳᏫᎢᏍᏗ, ᎨᏍᏗ ᎠᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᎢᏧᏅᏃᎰᏅᏱ ᎠᎴ ᏧᏲᏨ. ᎣᏏᏳᏰᏃ ᎤᏰᎸᏅ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎠᏴ ᎣᏏᏳ ᏍᎩᏰᎸᏅ, ᎪᎱᏍᏗ ᏗᏨᏯᏰᏅᏙᏗᏱ ᏂᎨᏒᎾ, ᎯᎠ ᎤᏩᏒ ᎾᏍᎩ ᎠᏎ ᎢᏯᏛᏁᏗ ᏥᎩ; ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᏫᎨᏥᏲᎵᎭ, Ꮀ ᎤᎬᏫᏳᎭ ᎾᏍᎩ Ꮎ ᏏᏌ ᏚᏓᏘᎾᎥᎢ. ᎤᏟᏂᎩᏓ ᎠᏟᏰᎵ ᎠᎹ, ᏓᏣᎾᏌᎾᎩᏏ ᎠᏔᎴᎦᏒᎢ! ᎤᏪᏥᏍᎩᏂ ᎯᎠ ᏂᎦᏪᏎᎭ, ᏣᏤᎵ ᎦᏍᎩᎸ, ᏣᏁᎳᏅᎯ, ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᏂᎬᏩᏍᏗᏉ; ᎠᏙᎳᏅᏍᏗ ᏚᏳᎪᏛ ᎠᏛᏁᏙᏗ ᎾᏍᎩ ᎠᏙᎳᏅᏍᏗ ᎪᎱᏍᏗ ᏨᏗᎭ ᎾᎿ ᏣᎬᏫᏳᎯ ᎨᏒᎢ. ᎠᏏᏉ ᎾᏍᎩ ᏂᎦᏪᏍᎨᎢ ᎤᎶᎩᎳᏕᎢ ᎠᎴ ᎤᏄᏢᏔᏁᎢ; ᎠᎴ ᎤᏂᏍᎦᎴ ᎤᏂᏄᏴᎸ ᎤᎶᎩᎸᎢ. ᎤᎵᎪᎲᏍᏗ ᏅᏙ ᎤᎷᏨ. ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᎦᎶᏁᏛ. ᎠᏎᏃ ᎢᎦᏛ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᎦᎶᏁᏛ ᎨᎵᎵ ᏅᏏᏳᎾᏄᎪᎢᏍᏗ? ᎿᏉᏃ ᎤᏂᏁᏒᎩ ᏥᏌ ᎠᏰᎸᎢ ᎠᎴ ᏙᎴᏛ ᎠᏄᏬ ᎤᏂᏣᏄᎶᏔᏅᎩ, ᎠᎴ ᎾᏍᏉ ᏗᎦᏩᏒᎩ ᏚᏂᏣᏄᎳᏅᎩ, ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎠᏂᏧᏏ ᏓᎾᏓᏂᏌ. ᏓᏆᎴᎳ ᏭᎩᎸᏁ ᏃᎴ ᎠᎵᏥᏙᎲᏍᎩ ᏧᏪᏅᏒ ᏭᎷᏤ. ᏙᎠᏆᏛᏁᏗ ᎠᏆᎴᏅᏗ?” ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏣᎸᏃᏘᏉ. ᎠᏎᏃ ᎤᏍᏓᏱᏕᏉ ᎧᏁᎬᎢ, ᎤᏙᎯᏳᎯ ᎾᏍᎩ ᏄᏍᏗ, ᎤᏛᏁᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᏓᎧᎿᏩᏗᏙᎯᏉ. ᎩᎦᎨ ᎩᎦ ᎤᏁᎲ. ᎦᎪ Ꮎ ᎡᎶᎯ ᎠᏎᎪᎩᏍᎩ ᎢᏳᏃ ᎾᏍᎩ ᏂᎨᏒᎾ ᏱᎩ ᎾᏍᎩ Ꮎ ᎪᎯᏳᎲᏍᎩᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ? ᎠᏥᏅᏏᏓᏍᏗᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᏅᏏᏙᎯ, ᏂᏣᏪᏒ ᎾᏍᎩᏯ ᏂᎦᏛᎦ, ᎠᏏᏉᏃ ᎤᏜᏅᏛ. ᏣᏁᎳ ᏕᎦᏅᏌᏛ ᏚᎷᏫᏍᏔᏁᎮ ᏚᏍᏕᎵᏍᎬ. ᎦᏙᏃ ᏥᏄᏍᏗ ᏥᏂᎦᏛᎦ?” “Ꭵ, ᎤᏙᏳᎯ, ᎢᎪᎯᏓ ᎤᏲᏏᏍᎪᎢ.” ᏍᏈᏍᏔ ᎩᎦ ᏄᏍᏖ ᏧᏬᏗᎨ ᏧᏆᎶᎬ, ᎠᏌᎻᏓ ᎤᎩᎸ ᎢᏣ ᎤᎾᎦᏯᎲᏎ ᎠᏂᏍᎦᏯ ᎦᎷᏯᏍᏘ ᏗᏂᏁ. ᏧᎬᏩᎶᏗᏰᏃ ᎡᏥᏩᎯᏍᏔᏅᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᎸᏉᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎢᏥᏰᎸ ᎢᏨᏗᏍᎨᏍᏗ, ᎠᎴ ᏗᏣᏓᏅᏙ ᏕᏨᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏥᎩ. ᏗᎤᎷᏨᏃ ᏚᏩᏛᎮ ᏔᎵᏁ ᎠᏂᎵᎾᎡᎢ, ᏗᏂᎦᏙᎵᏰᏃ ᏗᎦᎨᏗᏳ ᎨᏎᎢ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎴᎢ, ᎠᎴ ᏂᎦᏛ ᎤᎾᏅᏗᏱ ᏂᏚᏅᎴᎢ. ”ᎦᏓᏅᏖᏍᎬ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ, ”ᎢᏳᏍᏗᏉ ᎤᏃᎯᏳᏗ ᏴᏫ.” ᎢᏳᏃ ᏯᏆᏛᏅᎢᏍᏔᏁᏅ ᎢᏥᏴᏍᏗᏱ, ᏔᎵᏁ ᏛᏥᎷᏥ ᎠᎴ ᎠᏋᏒ ᎠᏉᎸ ᏙᏓᏨᏯᏓᏂᎸᏥ, ᎾᏍᎩ ᎠᏴ ᎨᎥ ᎾᏍᏉ ᎾᎿ ᎢᏣᏕᏗᏱ. ᎩᎶ ᏗᎾᏓᏅᏟ ᎠᏍᎦᎩ ᏱᎩ ᎾᏍᎩ ᏴᏫ ᎠᎯᎯ; ᎢᏥᎦᏔᎭᏃ ᏴᏫ ᎠᎯᎯ ᎬᏂᏛ ᏄᏪᎲᎾ ᎨᏒᎢ. ᎤᏅᏗ ᎠᎧᏓᏢᎩᏓ, ᏣᏄᏏ ᎤᏑᎸᏓ ᎨᎵᏍᎩ, ᏄᎾ ᏗᎬᏣᏝᏅ, ᎠᎦᏅ ᎦᏅᎵᏰᏗ, ᏒᎧᏔ ᎨᎵᏍᎩ, ᎦᏚ ᎤᎦᎾᏍᏓ ᏃᎴ ᏧᏓᎴᏅᏓ ᎤᏂᏑᎸᏓ. ᎲᎦ ᏧᏒᎯᏓ ᎩᎳ ᏛᏯᏛᏂ?” ᏚᏂᏃᎩᏎ ᏔᎳᏚ. ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏧᎦᏴᎵᎨ ᎯᎠ ᏄᏂᏪᏒ; ᎿᏉ ᎤᏛᎾ, ᎤᏩᏒ ᎡᏣᏛᏛᎲᎦ. “ᏕᎦᏂᏱᏣ, ᏓᏂᏏᎾᏔᏅ Ꭿ -“ ᎢᎦᏛᏃ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᎳᏯ ᎯᎠ. ᎢᎦᏛᏃ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎠᏙᎴᎰᏍᎩ ᎯᎠ, ᎠᎴ ᎩᎶ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏒ ᎾᏍᎩᏯᎢ. ᏥᎦᏔᎭ, ᎠᎴ ᎠᏉᎯᏳᏗ ᎾᏋᏁᎸ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᏩᏒᏉ ᎨᏒ ᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎩᎶᏍᎩᏂ ᎪᎱᏍᏗ ᎦᏓᎭ ᎠᏰᎸᏍᎩ, ᎾᏍᎩ ᎦᏓᎭ ᏄᎵᏍᏓᏁᎰᎢ. ᎦᎵᏬᎨ, ᎠᏎᏃ ᎦᏲᏟ ᏄᏟᏂᎬᎨ ᏰᎵ ᎤᏓᏅᏍᏗ. ᎠᎦᏛ ᎧᏂᎬᎬ ᏍᎩᎾᎾ ᎤᏰᎸᏗ. ᎠᎴ ᎦᎵᏉᎩ ᎾᏂᎥ ᎤᏂᎬᏫᏳᎯ; ᎯᏍᎩ ᎢᏯᏂᏛ ᎤᎾᎵᏛᏔᏅ, ᎠᎴ ᎠᏏᏴᏫ ᎡᎭ, ᏐᎢᏃ ᎥᏝ ᎠᏏ ᏱᎦᎾᏄᎪᎦ; ᎠᎴ ᎦᎷᏨᎭ ᏝᎦ ᎤᏕᏗ ᎨᏎᏍᏗ. ”ᏙᏱᏨ ᏱᎨᏙ, ᎭᏫᏂ ᎤᏩᏌ ᎬᏇᏅᏍᏗ,” ᎤᏛᏁ. ᎠᏂᏫᏅᎨᏌᏂᏍᎩᏂ ᏧᏃᏑᎶᏨᎯ ᎩᏲᎢᏎᎮᏍᏗ; ᎢᏳᏰᏃ ᏄᎾᏁᎸᎾ ᏂᎦᎵᏍᏓ ᎠᏁᎲ, ᎦᎶᏁᏛᏃ ᎤᏁᎳᎩ ᎠᏁᎳ, ᎿᏉ ᎤᎾᏚᎵᏍᎪ ᏧᎾᏨᏍᏗᏱ, ᏧᏙᏓᏋᏓ ᎡᎳᏗ ᏄᏩᏁ ᎠᏍᎪᎵ ᎧᏅᏂᏍᎩ, ᎠᎦᏘᏰᎢ ᎤᎷᏤᏗ ᎠᏓᏅᏖᎸ. ᎤᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎾᎯᏳᏉ ᎤᎾᏁᎶᏔᏁ ᎤᏂᏂᏴᏗᏱ, ᎠᏎᏃ ᏚᏂᏍᎦᎴ ᏴᏫ; ᎤᎾᏙᎴᎨᏎᏰᏃ ᎾᏍᎩ ᎯᎠ ᏚᏟᎶᏍᏔᏅ ᎤᏅᏒ ᎨᏥᏛᎬᎢ. ᎡᎵᏍᏗ ᏯᎾᏓᏅᏖ ᎨᏥᏍᏗ ᏯᏗᎭ, ᎨᎵᎠ ᎤᏙᎯᏳᎭ. ᎠᎦᏔᎯᏳᏰᏃ ᎨᏒᎩ ᎾᏍᎩ Ꮎ ᎤᎶᏄᎮᏍᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ, ᎥᏝ ᏂᏥᎥ ᎢᏣᏓᏅᎦᎸᏛ ᏱᎩ, ᎤᏛᏅᎩ. ᎤᎴᏐᏛ ᎤᏬᏗᎨ ᎩᏟ ᏚᎴᏅ ᏃᎴ ᎤᏕᎭᏯᎸ ᎾᎥᏂᎨ ᏭᎷᏨ ᎠᏓᏪᎳᎩᏍᎬ. ᎯᎠᏗ ᏱᏂᏥᏫ, ᎤᏐᏱ ᏄᏂᏍᏆᏂᎩᏗ ᎧᏅᏂᏍᎩ ᏃᎴ ᏏᏆ ᏄᏍᏛᎢ ᎮᏂᎵ ᎤᎵᏲᏗ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎬᏩᎦᏘᏯ ᎠᏆᏓᏙᎵᏍᏗ ᎨᏒ ᏰᎵᏉ ᎨᏣᎵᏍᏕᎸᏙᏗ; ᎠᏆᎵᏂᎬᎬᏰᏃ ᎤᎧᎵᏨᎯ ᎢᎬᏁᎸᎯ ᎾᎿ ᏩᎾᎦᎳ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏣᏘ ᎠᏆᎵᎮᎵᏨᎯ ᎤᏟ ᎠᎩᏰᎸᎭ ᎠᏆᏢᏈᏍᏗᏱ ᏥᏩᎾᎦᎵᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎦᎶᏁᏛ ᎠᏊᏢᏙᏗᏱ. ᎭᏂ ᎣᏍᏓ ᎣᎩᏰᎸᎭ, ᏃᎴ ᏂᎯ ᏍᏉ ᎣᏍᏓ ᎢᏨᏰᎸ. ᎠᏎᏴᏃ ᎤᏟᎶᎥᎩ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎤᏟᎶᎥᎩ, ᎾᏍᎩ ᏴᏫ ᎤᏟᎶᏍᏗ ᎢᎦᏅᎯᏛ, ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏟᎶᏍᏗ. ᎾᎿᏰᏃ ᏫᏥᎲ ᏧᎬᏩᎶᏗ, ᎾᎿ ᎾᏍᏉ ᏫᏓᎮᏍᏗ ᏗᏥᎾᏫ. ᎠᏏᏉᏃ ᏂᎦᎷᎬᎾ ᏥᎨᏎᎢ, ᏣᏂ ᏧᎵᏥᏙᏁᎸᎯ ᎨᏎ ᎾᏂᎥ ᏴᏫ ᎢᏏᎵ, ᏧᏃᎮᎮᎸᎯ ᎨᏎ ᏗᏓᏬᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏍᏗ ᎣᏓᏅᏛ ᎤᎬᏩᎵ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᎢᏦᎯᏳᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎤᏓᏍᏛᏗᏍᏗᏉ ᎨᏒ ᎢᏳᏍᏗ, ᏦᏓᏅᏛᏍᎩᏂ ᎾᏍᏉ ᎣᏎᎮᎲ ᎢᏳᏍᏗ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏠᎨᏏ ᎤᏣᎴᏍᏗ ᏓᏫᏒ ᎤᎶᏎ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᎴᏅᎮ ᎠᎾᎢᏒ ᎤᏂᏍᎫᏕᏍᏔᏅᏎ ᎤᏣᎴᏍᏗ. ᏍᏓᏯ ᏚᎧᏔᏍᏔᏁᎢ, ᏭᏓᎾᏫᏛᎮ. ᎾᏍᎩᏃ ᎢᏳᎩᎶ ᎠᎪᎾ ᎤᏲᏏᏍᎨᏍᏗ, ᏧᏪᏅᏒ ᎠᎵᏍᏓᏴᎲᏍᎨᏍᏗ; ᎾᏍᎩ ᏕᏥᎳᏫᎩ ᎢᏥᏍᎦᏅᏨ ᏗᏧᎪᏓᏁᎯᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᏭᏃᏒᏃ ᎣᏍᏛ ᏂᎬᏁᎸᎭ ᏫᏥᎷᏨᎭ. ᏂᎪᎯᎸ ᏥᏯᎵᎡᎵᏤᎰ ᎤᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ, ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎡᏥᏁᎸᎯ ᏥᎩ. ᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎷᏨᎩ ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᎴᏅᎩ, ᎠᏰᎲᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏜ ᎦᏩᏒᎩ ᎠᎪᎲᏍᏙᏗᏱ; ᎤᏣᏘᏃ ᎠᏥᏁᎸᎩ ᎠᏜ ᎦᏩᏒᎩ ᎾᏍᎩ ᎤᎵᏍᎪᎸᏙᏗᏱ ᎤᏠᏯᏍᏙᏗᏱ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᏂᎦᏛ ᎤᎾᏓᏅᏘ, ᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎦᏍᏗᎸ ᎢᎬᏱᏗᏢ ᏥᎦᎧᎭ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏛ ᎤᎪᎲ ᎠᏥᎸᏳᎶᏗ ᎤᏬᎸᎢ, ᎠᎴ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎠᏍᎦᏯ ᎾᏍᏉ ᏓᏁᏙᎲᎩ ᎾᏍᎩ. ᏞᏍᏗ ᏱᏗᏣᏓᏥᎪᏁᎮᏍᏗ, ᎢᏴᏛᏰᏃ ᎢᏰᏨᏁᎸᎯ ᎤᏪᏘ ᏴᏫ ᏚᎸᏫᏍᏓᏁᎲ ᎬᏩᎵᏠᏯᏍᏗ; ᎤᏂᏣᏘᏰᏃ ᎨᏥᏯᏅᏛ, ᎠᏎᏃ ᎠᏂᎩᏲᎵᏳ ᎨᎦᏑᏰᏛ. ᏚᏳᎪᏛ ᏱᎧᏃᎮᎸ, ᎠᏋᏌ ᎠᏆᏤᎵ ᎨᏒ. ᎠᏂᏬᏗᎨ ᏥᏔᎦ ᏃᎴ ᎫᎴ ᏗᏂᏍᎪᏂᎯ ᎤᎾᏓᏓᏍᎩᏌᎲ. ᏂᎬᎾᏛ ᏓᏔᎴᎦᏎ ᏚᏍᎪᏒ ᏃᎴ ᎤᎶᎯᏍᏗ ᏂᏚᏩᏁ ᎰᎻ ᏚᎶᎨᏒ, ᎩᎶ ᎫᏩᎪᏩᏛᏗ ᏱᎨᏒᎾ. ᎢᏳᏃ ᎾᏍᎩ ᏄᏍᏛᎾ ᏱᎩ, ᎦᏙ ᏛᎾᏛᏁᎵ ᏧᏂᏲᎱᏒᎯ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏥᏕᎨᎦᏬᏍᎪᎢ? ᎢᏳᏃ ᏧᏂᏲᎱᏒᎯ ᎠᏎ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎦᏙᏃ ᏧᏂᏲᎱᏒᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏙᎨᎦᏬᏍᎪᎢ? ᏒᎧᏔ ᎠᏂᏥᎸᏍᎪ ᏍᏉ. ᏩᏚᎵᏏ ᎠᏂᏃᎯᎵᏙᎰ ᏒᎧᏔ ᏕᏧᎬ ᎾᎥᏂ. ᏍᏓᏯ ᏚᏓᏟᏴᎮ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏗᎯᏯᏍᎬ ᎠᎴᏅᏙᏗ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᏕᏲᏗ ᎨᏒᎢ, ᏂᎦᎷᎶᎬᎾ ᎨᏒ ᎢᏴᏛ ᏫᏗᏰᎢᎶᎦ; ᏔᎵᏁ ᎦᎫᏍᏛᏗ ᏂᏗᎲᏍᎬᎾ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᎤᎬᏩᎵ, ᎠᏓᎯᎯᏉ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏥᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏣᏘᎿᏫᏛ, ᎢᏨᏒ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎢᏨᏓ ᎡᏥᏱᎵᏓ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᎤᎵᏁᏨᎯ ᏱᎩ ᏴᏫ ᎣᏥᎯᏍᏗᏱ. ᎠᎴᏬ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏟ ᎠᎯᏗᏳ ᎨᎻᎵ ᎤᎦᏛᎴᎯᏍᏗᏱ ᏴᎩ ᎦᏏᏁᎾᏛᏗᏱ ᎡᏍᎦᏉ ᎤᏪᎿᎢ ᏴᏫ ᏭᏴᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎿᏉᏃ ᎯᏍᎦᏍᎪᎯᏁ ᎢᎦ ᎤᏍᏆᎸᎲ, ᏂᎦᏛ ᏌᏉ ᎢᎦᎦᏛ ᎤᎾᏓᏡᎨᎢ. ᎿᏉᏃ ᎹᏗ ᎠᎴ ᏄᏪᏎᎸᎩ ᏥᏌ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᎠᏂ ᏱᎮᏙᎮᎢ, ᎥᏝ ᏱᎬᏩᏲᎱᏎ ᎥᎩᏙ. ᏂᎦᏛᏃ ᎠᏂᏍᎩᎾ ᎬᏩᏍᏗᏰᏔᏁ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᏁᎳᎩ ᏏᏆ ᏗᏁᏙᎲ ᏬᏥᎶᎯ, ᎾᏍᎩ ᏫᏙᏥᏴᏏ. ᏝᏍᎪ ᏲᎩᎭ ᎣᎦᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᎣᎦᏗᏔᏍᏗᏱ? ᏗᏙᏪᎳᏁᏗᏱᏉᏍᎩᏂ ᏧᏂᏲᎯᏍᏗᏱ ᎦᏓᎭ ᎢᏧᎵᏍᏔᏅᎯ ᎾᏍᎩ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏬᏍᏔᏅᎯ, ᎠᎴ ᎩᎬ. ᎠᎴ ᎾᏂᎥ ᏴᏫ ᎬᏂᎨᏒ ᎢᎦᏥᏴᏁᏗᏱ ᏄᏍᏛ ᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᎡᎶᎯ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎬᏍᎦᎳᏅᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎡᎲᎢ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏬᏢᏅᏅᎯ ᏥᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ; ᏝᏛᏏ ᏯᏕᏠᎦᏩᏍᎦ ᎤᏪᎵᏎ ᏥᏍᏚ. ᎢᏧᎳ ᎢᏣ ᎤᏍᏗ ᎨᏴ ᏔᎾᏏ ᏃᎴ ᏓᎦᏏᏱ ᎢᏣ ᏙᏥᏲᎦ, ᏰᎵ ᏧᏙᏓᏆᏓ ᎣᏣᎢᏒ, ᎦᏲᏟᏉ ᎢᏳᏥᎶᏓ, ᏂᎦᏓ ᎣᎩᎦᏛᎲᏍᎬ ᎤᏂᏃᎮᏛ. ᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎮ ᏗᎦᏅᏏᏙ ᎠᏧᏣ ᎠᏥᏰᎸᎲ. ᏚᏙᏓᏈᏒ ᎠᏂᏃᎯᎴᎬ ᏤᎩ ᏃᎴ ᏣᏥ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏂᎸ ᎠᏫ ᏏᏅᏓ ᎤᎶᏐᏅ. ᎦᏍᎩᎸᏃ ᎢᎬᏱᏗᏢ ᎥᏓᎸᎩ ᎠᏓᎰᏗ ᎢᏗᎬᏤᎵᏛ, ᏅᏯ ᏗᎬᎸᏌᏛ ᎾᏍᎩᏯ ᎨᏒᎩ; ᎦᏍᎩᎸᏃ ᎠᏰᎵ, ᎠᎴ ᎬᏩᏚᏫᏛ ᎾᎿ ᎦᏍᎩᎸ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎥᎦᏥᎪᎥᎩ, ᎠᎧᎵᏬᎯ ᏓᏂᎧᏅᎩ ᎢᎬᏱᏗᏢ ᎠᎴ ᎣᏂᏗᏢ. ᎭᏓᎾᏫᏗᏍᎩ ᎭᎵᏍᎩ! ᏣᏂᏰᏃ ᎤᏙᎯᏳᎯ ᎠᎹ ᏓᏓᏬᏍᏗᏍᎬᎩ; ᏂᎯᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏙᏓᏰᏣᏬᏍᏔᏂ ᎢᎸᏍᎩᏉ ᎢᏳᏒᎯ. ᎬᏩᏟᏍᏗ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏍᏗ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎤᏁᎳᏅᎯ ᎡᎶᎯ ᏱᏕᎫᎪᏓᏏ? ᏄᏓᎵᏓᏍᏛᎾ ᎾᏍᎩ Ꮎ ᎢᏣᏯᏅᏛ, ᎾᏍᏉ ᎾᏍᎩ ᎠᏎ ᏥᏅᏛᏛᏁᎵ. ᏧᏳᎪᏗ ᏄᏪᏎᎢ ᎠᎦᏴᎵ ᎤᏃᏕᎾ---Ꮟ ᎦᏟᎮ ᎤᎾᎵᎢ. ᎾᏍᎩ ᏂᎪᎯᎸ ᎠᎾᏕᎶᏆᏍᎪᎢ, ᎠᏎᏃ ᎥᏝ ᎢᎸᎯᏳ ᏱᏩᏂᏰᎢᎶᎯᎰ ᏚᏳᎪᏛ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ. Ꭷ, ᎦᏙᏃ ᎢᎭᏙᎯᏗᎭ? ᏔᎴᎲᎦ, ᎠᎴ ᏪᏣᏬᏣ, ᎠᎴ ᎰᏑᎵ ᏣᏍᎦᏅᏨᎢ, ᎯᏔᏲᎯᎮᏍᏗ ᎲᏗᏍᎨᏍᏗ ᏕᎤᏙᎥ ᎤᎬᏫᏳᎯ. ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏣᏛᏁᎲᎢ, ᏗᏥᎾᏫᏱ ᎣᏏᏳ ᎢᏥᏰᎸᎯ ᏕᏥᎸᏫᏍᏓᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏁᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ, ᎥᏝᏃ ᏴᏫ ᏥᏂᏕᏣᏛᏁᎰᎢ; “ᏔᏑᎳ ᏃᎴ ᎭᎬᏍᏉᏣ ᎡᎳᏆᏗ!” ᎠᎧᏘᏌ ᎢᏣ ᎤᏬᏰᏂ ᎦᏁᎭ ᎦᎷᏯᏍᏘ ᎠᎧᏍᎩᏂ ᎢᏣ ᎠᏰᎳᏍᏘ, ᎪᏍᏔᏴ ᎢᏣ ᎤᏍᏉᏟ ᎤᏰᎵᏍᏙᏗ. ᎢᎸᎯᏢᏰᏃ ᎦᎵᏉᎩᏁ ᎢᎦ ᎤᏁᎢᏍᏔᏅ ᎯᎠ ᏄᏪᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎵᏉᎩᏁ ᎢᎦ ᎤᏯᏪᏐᎴ ᎤᏲᎯᏍᏔᏁ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎣᏍᏛ ᏡᎬ ᎥᏝ ᏰᎵ ᎤᏲ ᏴᎬᏓᏛᎦ, ᎠᎴ ᎤᏲ ᏡᎬ ᎥᏝ ᏰᎵ ᎣᏍᏛ ᏴᎬᏓᏛᎦ. ᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ, ᎢᏓᎵᏅᏟ, ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎤᏰᎵᎯᏍᏗᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏥᏄᏍᏗ ᏂᎯ ᎢᏤᎲᎢ; ᏝᏰᎾ ᎩᎶ ᏲᎩᏅᏒ, ᎤᎾᏛᏁᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏂᎯ ᎾᏍᏉ ᎢᏤᎾ ᏖᎸᎳᏗ ᏙᏗᏫᏒᎢ; ᏚᏳᎪᏛᏃ ᎨᏒ ᏓᏨᏯᎫᏴᎡᎵ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᎴ ᎤᏓᎵᎢ ᎠᏜᏩᏍᏗᏍᎨᏍᏗ; ᎠᏴ ᏌᏩᏂ ᏈᏓ, ᎠᎸᎾᏝᎢ ᎠᎴ ᎠᎩᏅᏏᏛ ᏥᏌ ᎦᎶᏁᏛ, ᎦᏥᏲᏪᎳᏏ ᎾᏍᎩ Ꮎ ᎨᏥᏁᎸᎯ ᏥᎩ ᎣᎩᏁᎸ ᎾᏍᎩᏯᎢ, ᎦᎸᏉᏗᏳ ᎪᎯᏳᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᏁ ᎤᏓᏅᏘᏳ ᎨᏒ ᎢᎦᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ. ᎢᏳᏍᎩᏂ ᎧᏁᏨᎯ ᎠᎴ ᎪᎱᏍᏗ ᏚᏙᎥ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏣᏤᎵᎦ ᎧᏃᎮᏗ ᏱᎩ, ᎢᏨᏒ ᏗᏥᎸᏫᏍᏓᏏ, ᎥᏝᏰᏃ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᏱᏙᎦᎫᎪᏓ. ᎤᎵᏍᎦᏰᎬᏍᏔᏁᎢ ᏌᏌ. ᏚᏅᏫᏍᏔᏁᎢ ᎢᏳᎾᏛᏁᏗ. ᏌᏌ ᎤᎵᏍᎦᏰᎬᏍᏔᏁᎢ. ᎿᏉᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᏂᏁᏨ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᎤᏰᎸᏛ ᎣᎦᏚᎵ ᎢᏨᎪᏩᏛᏒᏗᏱ. ᏃᏗ ᎤᎵᎪᎲᏍᏗ ᏱᎩ ᏧᎧᏎᏍᏕ ᏧᎦᏒᏍᏗ ᎤᎳᏌᎳᏙᏗ ᏕᏍᎬᎢ ᎦᎸᎾᏗᏣ. ”ᏣᎵᎢᎨ ᏣᏚᎵᎭ, ᏫᎵᎻ?” ᎤᏛᏁ ᎪᎱᏍᏗ. ᏕᏥᏯᎦᎿᏅ ᎠᏓᎦᏘᏕᎯ, ᎤᎵᎮᎵᏍᏗ ᏂᏚᏍᏛ ᏗᎦᏙᎵ ᏃᎴ ᎤᎦᏛ. ᎠᏎᏃ ᎤᏚᎵᏍᎬ ᎤᏚᏓᎴᏍᏗᏱ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ, ᎦᎪᏃ ᎾᎥ ᎢᏦᎩᎾᏓᎳ? ᎠᏎᏃ ᏌᎳᏓ ᏍᏉᏎᎮᏍᏗ.” ᎤᏅᏌ ᎠᏁᎲ. ᎢᏣᏅᏔᏉᏰᏃ, ᎢᏓᎵᏅᏟ, ᏙᎩᎸᏫᏍᏓᏁᎸ ᎠᎴ ᏙᎩᏯᏪᏥᏙᎸᎢ; ᏗᎬᏩᎩᏨᏗᏰᏃ ᏙᎩᎸᏫᏍᏓᏁᎲ ᏃᎦᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᏏᏴᏫ ᏂᏣᏛᏅ ᎦᎨᏛ ᎢᏲᏨᏴᏁᏗᏱ, ᎢᏨᏯᎵᏥᏙᏁᎸᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᏅᏩᏙᎯᏯᏛᏃ ᎦᏅᏅ ᎥᏝ ᎤᏂᎦᏙᎥᏒᎯ ᏱᎩ. ᏭᏕᎭᏲᎸ ᏅᏯ ᎦᏓᏍᎬ ᎦᎸᎳᏗ ᏭᎾᎷᏒ, ᏃᏉ ᎡᎳᏗ ᏭᎶᏒ ᏗᎨᏴ ᎢᏣ. ᎠᎾᎵᏅᏟᏃ ᎩᎳᏉ ᎢᏴᏛ ᏚᎾᏘᎾᏫᏛᎲᎩ ᏉᎳ ᎠᎴ ᏌᏱᎳ, ᏈᎵᏯ ᏒᏃᏱ ᏫᏚᎾᏘᏅᏍᏔᏅᎩ. ᎾᏍᎩᏃ ᎾᎿ ᏭᏂᎷᏨ, ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏭᏂᏴᎸᎩ. ᏥᏌᏃ ᎤᏕᏅ ᎦᏚᏱ ᎦᏚᎲ ᏧᏗᏱ, ᎾᎯᏳ ᏤᎮ ᎡᎶᏛ ᎤᎬᏫᏳᎯ, ᎬᏂᏳᏉ ᎤᏂᎷᏤ ᏥᎷᏏᎵᎻ ᎠᏂᎦᏔᎿᎢ ᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ ᏧᏂᎶᏎᎢ, ᎠᏎᏃ ᏂᎯ ᎣᏏᏳ ᏂᏣᏰᎸᏅᎾ ᎥᏝ ᏯᏆᏚᎸᎮ ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱ; ᎾᏍᎩ ᎣᏍᏛ ᏂᏍᏆᏛᏁᎲ ᎣᏏᏳ ᏣᏰᎸᏅ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝᏃ ᎾᏍᎩ ᎠᏎ ᎢᏣᏛᏁᏗᏱ ᏂᏣᎵᏍᏓᏁᎲᎢ. ᎯᎠᏃ ᏧᎬ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏏᏉ ᎡᏆᎭᎻ ᏁᎲᎾ ᏥᎨᏒᎩ, ᎠᏴ ᏂᎨᎣᎢ. ᏗᎦᏓᎭ ᏗᎪᏪᎵ ᏃᎴ ᏗᎿᏬ ᏧᏲ ᎤᏰᎦᎸᏔᏁᎢ, ᏃᎴ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎩᏗ ᏳᏩᏛᎭ ᎭᎾᎾ ᎠᏍᏆᏂᎪᏗᏍᎨᎢ. ᎠᏂᏲᏍᎩ ᎠᎹᏳᎸᏓ ᎾᎥᏂ ᏫᏚᏂᎧᏅ ᏣᎵ ᏃᎴ ᎠᏂᏧᏣ, ᎭᎾ ᎠᏂᏙᎾᎥ ᏱᏂᎦᏔᎲᎾ ᎢᏳᎾᎵᏍᏔᎡᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎭᏅᏓᏓ ᎾᎿ ᏗᏣᎶᎠᏒᎢ, ᎠᎴ ᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᎬᏱᏱ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏗᏣᎸᏫᏍᏓᏏ; ᎢᏳᏃ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᏞᎩᏳ ᏓᎬᎷᏤᎵ, ᎠᎴ ᏓᏥᎧᎲᏏ ᎠᏨᏍᏙᏗ ᎦᎪᏙᏗ ᏣᏤᎵᎦ, ᎢᏳᏃ ᏂᏣᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ ᏣᏓᏅᏛᎢ. ᎡᏤᎾ, ᎠᏴ ᏍᎩᎷᏥ, ᏂᎦᏗᏳ ᎠᎩᎵᏯ ᏗᏥᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎦᎨᏛ ᏗᏣᎵᏎᎯ, ᎠᏴᏃ ᏓᏨᏯᏪᏐᎸᏍᏔᏂ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏥᏍᎦᎢᎭ? ᎤᏍᏗ ᎢᏦᎯᏳᎯ! ᎿᏉᏃ ᏚᎴᏅ ᏚᏍᎦᏤ ᎤᏃᎴ ᎠᎴ ᎥᏓᎵ, ᎤᏣᏘᏃ ᎤᏓᏥᎾᏍᏛᎯ ᏄᎵᏍᏔᏁᎢ. ᎤᎵᏍᏆᎸᏗᏃ, ᎢᏓᎵᏅᏟ, ᏅᏩᏙᎯᏯᏛᏉ ᏂᏣᏛᎿᏕᎨᏍᏗ. ᎪᎱᏍᏗ ᏂᏥᎪᎸᎾ ᎨᏎᏍᏗ, ᎤᎦᎵᏍᏗᏉ ᏕᏣᏓᏅᏖᏍᏗ, ᎤᏠᏱᏉ ᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ, ᏅᏩᏙᎯᏯᏛᏉ ᎢᏤᎮᏍᏗ; ᎤᏁᎳᏅᎯᏃ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏥᎩ, ᎢᏤᎳᏗᏙᎮᏍᏗ. ᏙᎴᏛᏃ ᎠᏄᏬ ᎤᏂᏰᎢ, ᎠᎴ ᎤᏰᎸᎭ ᏚᎵᏘᎡᎴᎢ. ᎤᏕᎶᎰᏍᏌ Ꮟ ᎦᏲᏟ ᎠᏥᏍᏛ ᎠᎹ, ᎤᏌᎳᏓᏁ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᎤᏓᏍᏚᏤ, ᏃᏗ ᎱᎵᏴᏍᎪᏳᏁ. ᎠᏍᎦᏂ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᏍᎩᎾ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏐᎢ, ᏗᏓᎴᏁᏍᎬᏰᏃ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏍᎩᎾ ᎠᏍᎦᏅᎪᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎩ, ᎤᏲᏍᏙᏗᏱ ᎠᏍᎩᎾ ᏚᎸᏫᏍᏓᏁᎸᎢ. ᎠᏂᏐᎢ ᎠᎾᏗᏍᎨ ᎤᏲ ᎠᏆᏓᏅᏛ, ᎠᏆᏓᏂᏴ ᎠᎹᏱ ᏕᎦᏐᏍᎬ ᏃᏥ ᏧᎬ ᎭᏫᏂᏨ, ᎠᏋᏌ ᎦᏓᏅᏖᏍᎬ ᏄᏍᏛ ᎾᏆᏛᏁᎸ. ᎠᎩᏄᎸᏅᏃ ᎠᎩᎪᏩᏛᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏗᎬᏩᎸᏌᏓ ᎾᏍᎩ ᎢᎦ ᎦᏛᎢ, ᎣᏤᎯ ᎬᏉᏱᏁᏅ, ᏕᎹᏍᎦ ᏩᎩᏴᎸᎩ. ᎠᏌᎻᏓ ᎤᏚᎵᏍᎬ ᎠᎾᎦᏎᏍᏗᏍᎩ ᏧᏩᎪᏗ ᎤᎵᏨᏓᏆᏓ. ᎠᎴ ᏧᏭᏓᎴᏍᏗᏱ ᎾᏍᎩ Ꮎ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎠᏂᎾᏰᏍᎬ ᏥᏅᏗᎦᎵᏍᏗᏍᎨ ᏓᏅᏅ ᎢᎪᎯᏛ ᏧᎾᏓᏲᏒᎯ ᏥᎨᏒ ᏕᎨᏥᎾᏝᎥᎢ. ᎯᎠ ᏄᏪᏎᎢ; ᏥᏍᎦᏅᎩ ᏄᏍᎦᏅᏨᎾ ᎩᎬ ᏥᎦᏡᏓ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎦᏙ ᎾᏍᎩ ᎠᏴ ᎣᎬᏙᏗ? ᏨᏒ ᎾᏍᎩ ᏗᏣᎸᏫᏍᏓᏏ. ᎠᏎᏃ ᎧᏃᎮᏛ ᏂᎦᏪᏍᎬ ᎢᏣᏛᏁᎯ ᎨᏎᏍᏗ, ᏞᏍᏗᏃ ᎢᏣᏛᎩᏍᎩᏉ ᎤᏩᏒ ᏱᎨᏎᏍᏗ, ᎢᏨᏒ ᏱᏣᏓᎵᏓᏍᏗᏍᎨᏍᏗ. ᎠᏎᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏂᏃᎮᎸᎩ ᎳᏏᎳ ᎾᏍᏉ ᎤᏂᎯᏍᏗᏱ, ᏕᎬᏩᏏᏔᏕᏃ, ᎠᎴ ᎬᏩᏂᏴᎮᎢ. ᏑᎾᎴ ᎫᏩᎴᏅᏓ ᎠᎦᏍᎬ. ᏚᏃᎸᏒᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎢᏥᏟᏌ ᎤᎵᎬᎭᎷᏴᎯ ᎤᏘᏴᎯ, ᏞᏍᏗ ᎪᎱᏍᏗ ᏳᏤᏬᏤᏍᏗ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏌᏩᏂ, ᏌᏩᏂ ᎬᏂᏳᏉ, ᏎᏓᏂ ᎤᏔᏲᎸ ᎠᎦᎵᏍᎪᎸᏓᏁᏗᏱ ᎢᏨᎫᏍᏙᏗᏱ ᎤᏣᎴᏍᏗ ᏣᏅᏧᏍᏗᏍᎪ ᎾᏍᎩᏯᎢ. ᎾᏍᎩ ᎪᎱᏍᏗ ᏅᏓᏳᎵᏱᎸᏍᏙᏗᏱ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᏩᏆᎵᏰᎢᎶᎯᏍᏗᏱ. ᏣᏂᏃ ᎿᏉ ᎠᎧᎵᎢᎮ ᏧᎳᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᎪ ᏍᎩᏰᎵᏎᎭ? ᎥᏝ ᎠᏴ ᎾᏍᎩ ᏱᎩ, ᎠᏎᏃ ᎬᏂᏳᏉ ᎣᏂ ᏓᏯᎢ ᎾᏍᎩ ᏚᎳᏑᎸ ᎥᏝ ᎠᏴ ᏰᎵ ᏗᎬᎩᎧᏁᏴᏗ ᏱᎩ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ. ᎤᎬᏫᏳᎯ ᎤᏚᎵᎭ. ᏦᎯᏳᏒ ᎠᏆᎵᏍᎦᏍᏙᏛ ᏫᎬᏲᏪᎳᏁᎸᎩ, ᏥᎦᏔᎲᎩ ᎾᏍᏉ ᏣᎶᏒᏍᏙᏗᏱ ᎨᏒ ᎿᏛᏁᎲ ᏄᏍᏛ ᎬᏁᏤᎲᎢ. ᎠᏝᏅᏓᏗᏍᎬ ᎨᏍᏗ ᎤᏂᏣᏘ ᎠᎴ ᎠᏂᏳᏩᏁᎦ ᎤᎾᏤᎵ ᏱᎨᏎ ᎪᏪᎵ ᎠᏌᎥ ᏚᏙᎥ ᎪᏪᎴ. ᏥᏌ ᏚᏁᏤᎸ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏍᎩᏲᎭ ᎥᏝ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎢᏥᎪᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏉᏍᎩᏂ ᎦᏚ ᏕᏥᎬᎢ, ᎠᎴ ᏕᏦᎸᏒᎢ. XVII. ᎡᏚᏥ ᎩᎶ ᏣᏯᎣ [ᎦᎶᏁᏛᏱ] ᎥᏝ ᏯᏍᎦᏅᎪᎢ; ᎩᎶ ᏣᏍᎦᏅᎪᎢ ᎥᏝ ᎤᎪᎲᎯ ᏱᎨᏐᎢ, ᎥᏝ ᎠᎴ ᎤᎦᏙᎥᏒᎯ ᏱᎨᏐᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎿᏉ ᏩᎭ ᏗᎬᏩᎾᏚᎪᏓᏁᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᏯᎢ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒ ᎾᏂᏍᏓᏩᏕᎬᎾ ᏥᎩ, ᎠᏓᏅᏙᏍᎩᏂ ᏣᏂᏍᏓᏩᏕᎦ. ᎢᏳᏃ ᎾᏍᎩ ᎤᏁᎳᎩ ᏰᏕᎵᏎᎭ, ᏂᎦᏗᏳ ᏓᎬᏬᎯᏳᏂ, ᎠᏂᎶᎻᏃ ᏛᏂᎷᏥ ᎠᎴ ᏓᎨᎩᎩᎡᎵ ᎢᎦᏤᎵᎪᎯ ᎠᎴ ᏗᎦᏤᎵ ᏴᏫ ᏙᏓᎨᎩᏯᏅᎡᎵ. ᏚᏍᎪᎵᏰᎡ ᏗᎦᏙᎵ ᏃᎴ ᎣᏍᏓ ᎤᎦᏙᏍᏔᏁᎢ ᏚᏏᎳᏛ ᏌᎳᏓ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏣᏔ ᎨᏣᏓᏑᏯ ᏗᏂᏩᎾᎦᎳ ᎠᎴ ᏧᏂᏢᏥᏰᏍᎩ, ᎠᎴ ᏰᎵ ᎤᏂᏣᏔ ᎠᏂᎵᎾᎠ. ᎠᎴ ᎦᎾᏍᏓ ᎥᎩᏕᎸᎩ ᎠᏙᎳᏅᏍᏗ ᎾᏍᎩᏯᎢ; ᏗᎧᎿᎦᏗᏙᎯᏃ ᎤᎴᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᏔᎴᎲᎦ, ᎠᎴ ᎭᏢᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᏔᎴᎲᎦ, ᎠᎴ ᎭᏟᎶᏣ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎾᏓᏙᎵᏍᏗᏍᎩ ᏥᎩ ᎾᎿᏂ. ᎠᎩᏃᎮᎸ ᏗᎦᏘᏍᏗ ᎦᏰᏌᏗ ᎣᎬᏌ ᎣᎦᏤᎵ ᎨᏎ, ᎠᏥᎸᏉᏗ ᎠᎦᏴᎵᎨ ᎨᏎ, ᏀᎢᏳ ᎤᏲ ᏄᎵᏍᏔᏁ ᎤᎴᏅᎮ ᎠᏤᎸᏍᎬ ᏃᎴ ᎦᎵ ᎠᏰᎸ ᏚᏩᏥᏍᎦᎸᏤ ᏅᏯ ᎢᏗᏍᏔᏱ, ᎠᏰᎳᏍᏘ ᎠᎴ ᎦᏝᏗ ᏗᎬᏩᏲᏍᏙᏗ ᏱᎨᏒᎾ. ᏣᎨ ᏱᎪᏩᏘᎭ ᎡᎳᏗ ᏫᏄᏍᏛ ᏚᏏᎳᏛ ᎦᎨᏒ ᎠᏣᏗ? ᎾᏍᎩ ᎣᏏᏳ ᎬᏩᏃᎮᏍᎩ ᎨᏒᎩ ᎠᎾᏓᏅᏟ ᎵᏍᏗ ᎠᎴ ᎢᎪᏂᏯ ᎠᏁᎯ. “ᎠᏋᏌᎩ?” ᏍᏈᏍᏓ ᏧᎪᎲ ᏏᏆ ᎤᏂᎷᏨ ᏃᎴ ᎤᎾᎵᏛᏔᏅ. ᎠᏙᎯ ᏳᏬᏙᎳ ᎠᎵᏰᎾ, ᏍᎩᎾᎾ ᏂᎦᏓ ᏓᎪᎵᏰᏍᎪ. ᎮᏏᎦᏯᏃ ᎹᎾᏏ ᎤᏕᏁᎴᎢ; ᎹᎾᏏᏃ ᎠᎼᏂ ᎤᏕᏁᎴᎢ; ᎠᎼᏂᏃ ᏦᏌᏯ ᎤᏕᏁᎴᎢ; ᎩᎶᏍᎩᏂ ᎠᏢᏈᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᎠᏢᏈᏍᏗᏍᎨᏍᏗ. ᏫᏥᎢᎦ ᎨᏒ ᎠᏁᎵᏍᎬ ᎤᏒᎮᎯ ᎤᎾᎵᏍᏔᏴᏗ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᎠᏂᏇᏅᏗᏍᎬ ᎠᏤᎯ ᎦᎾᏍᏓ, ᎠᏓᏪᎳᎩᏍᎬ ᎦᏚᎢᏣ ᎠᎾᏁᎸᏗᏍᎬ ᎤᏬᏗᎨ ᎢᏳᎵᏍᏙᏗ ᏯᏓᏪᎳᎩᏍᎬᎾ. ᎠᏯᏙᎵᏳᏰᏃ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎠᏯᏙᎵᏳ ᏅᏃᎯ ᎬᏂᏛ ᏫᎦᎾᏄᎪᎬᎢ, ᎠᎴ ᎠᏂᎦᏲᎵᏳ ᎠᏂᏩᏘᎭ. ᎯᎠ ᎾᏍᎩ ᎤᏩᏒ ᏍᎩᏃᏁᏗᏱ ᎠᏆᏚᎵᎭ; ᎠᏓᏅᏙᏍᎪ ᏕᏥᏲᎯᏎᎴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏂᏣᏛᏁᎲᎢ, ᏥᎪᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎢᏦᎯᏳᎯ ᎢᏣᏛᎩᏍᎬᎢ? ᎪᎳ ᏓᎦᎶᏐᏂ, ᏓᏛᏍᏆᎶᏥ ᎢᎦ, ᎤᏁᏍᏓᎳ ᏓᎬᎾᏬᏏ ᎠᎹ ᏗᎦᏁᎲ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏚᏗ. ᎤᎵᏏᏂᏗ ᏄᏪᏎ, “ᏲᎾ ᎤᏤᏍᏙ, ᏣᏕᎶᏆᏍᏗ ᎨᏎᏍᏗ ᏣᏓᏓᏏᎾᎲᏍᏙᏗ.” ᏴᏫᏰᏃ ᎤᏪᏥ ᏓᎦᎷᏥ ᎤᏙᏓ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏕᏍᏗ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏓᏘᏁᎮᏍᏗ; ᎿᏉᏃ ᏙᏛᎫᏴᎡᎵ ᎾᏂᎥ ᏴᏫ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ. ᎢᎾ ᏓᏕᏏ, ᎠᏆᏛᏅ, ᏭᏕᎵᎬ ᏓᏕᏏ. ᎯᎠᏃ ᎸᎵᏍᏔᏁ ᎾᎥ ᎤᎷᏨ ᏒᎦᏙᎯ ᎠᎴ ᏇᏗᏂᏱ, ᎾᎿ ᎣᎵᏩᏲᎯ ᎤᏌᎯᎸ ᏥᏚᏙᎠ, ᎾᏍᎩ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏅᏎᎢ, ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎤᎦᏔ ᏧᏫᏎᎢ ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ; ᏩᏥᎳ ᎤᏍᏔᏲᏎᎴ, ᎦᏅᏓᏛ ᎤᏩᏯᎸᏤ ᎠᎰᎴ ᎦᏚᎢᏣ. ᏥᏌᏃ ᎠᎦᏔᎯᏳ ᎨᏒ ᏂᎦᎥ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏪᏅᏒᎩ ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎦᎪ ᎡᏥᏲᎭ? ᎨᏍᏗ ᎣᏍᏓ ᎢᎦ ᏱᎨᏎᏍᏗ ᎤᏪᎵᏎ ᎤᏃᎴ. ᎢᏥᎪᏩᏘᎭ ᏂᎦᏅᎯᏒ ᎪᏪᎵ ᎢᏨᏲᏪᎳᏁᎸᎢ, ᎠᏋᏒ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ. ᎤᏩᏒᏃ ᎤᏏᏙᎵ ᏙᎴᏛ ᎠᏄᏬ, ᎠᎴ ᎤᏕᏒ ᎠᏰᎸᎢ, ᎠᎴ ᎠᏄᏬᎩᎯ ᏙᎴᏛ ᎤᏪᏣᎸᎳᏅ, ᎠᏤᎵᏍᏛ ᎤᏅᏁ ᎾᏍᎩ ᏅᏲᎯ ᎠᏍᎪᏒᎢ, ᎠᎴ ᏅᏲᎯ ᎠᏍᎪᏒᎢ, ᎠᎴ ᏅᏯ ᎤᏪᏌᏉᎴᎴᎢ ᎠᏤᎵᏍᏛ ᎦᎶᎯᏍᏗᏱ ᎤᏁᎢ. ᏗᎤᎷᏨᏃ ᏚᏩᏛᎮ ᏔᎵᏁ ᎠᏂᎵᎾᎡᎢ, ᏗᏂᎦᏙᎵᏰᏃ ᏗᎦᎨᏗᏳ ᎨᏎᎢ, ᎥᏝ ᎠᎴ ᏱᏂᎦᏔᎮ ᎢᏳᏂᏪᏍᏗᏱ ᎤᏂᏁᏤᏗᏱ. ᎠᎴ ᎬᏩᏚᏫᏛ ᎾᎿ ᎦᏍᎩᎸ ᏅᎩᏦᏁ ᏕᎦᎧᎲ ᏗᏍᎩᎳᏗᏍᏗ; ᏗᏍᎩᎳᏗᏍᏗᏱᏃ ᎥᎦᏥᎪᎥᎩ ᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏣᎾᎵᏍᏚᎸᏃ ᏗᎵᏍᏚᎶ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ. ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᏭᏎᎴ ᏣᏄᏏ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏓᏁᎸ ᎢᎸᎯᏢ ᎢᏥᏴᎯᎮᏍᏗ, ᎾᎿᏉ ᎢᏣᏅᎥᏍᎨᏍᏗ ᎬᏂ ᎥᏣᏂᎩ ᎾᎿᏂ. ᎿᏉᏃ ᏗᎾᏓᏂᏱᏍᎩ ᎬᏩᏂᎷᏤᎸᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏆᎵᏏ. ᎯᎠᏃ ᏂᏚᏂᏪᏎᎸᎩ; ᎦᏙᏃ Ꮭ ᏴᎡᏣᏘᏃᎦ? ᎯᎠ ᎾᏍᎩ ᎡᏥᏍᏗᏰᏔᏅᎯ ᏥᎩ ᎥᏝ ᎢᏥᏯᏅᏛ ᎤᏓᏅᏖᎸᎯ ᏱᎩ. ”ᎭᎦᏎᏍᏕᏍᏗ ᎩᏟ!” ᎤᏛᏁ ᎤᏃᏕᎾ. ᎠᎬᏱ ᎤᏂᏩᏛᎯᏙᎸ ᏫᎵᎻ ”ᎤᏍᏆᏂᎩᏗ ᏏᏆ” ᏥᎨᏎᎢ ᎱᏂᎷᏤ ᏃᏉ ”ᎤᏣᏓ ᎣᏍᏓ” ᎨᏒ. ᎠᏎᏃ ᎾᎯᏳᎢ, ᎤᏁᎳᏅᎯ ᏁᏥᎦᏔᎲᎾ ᏥᎨᏒᎩ, ᎪᎱᏍᏗ ᏕᏥᎧᎿᏩᏗᏙᎲᎩ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎤᎾᏁᎳᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎩᎶᏍᎩᏂ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏂᎯ ᎢᏤᎲᎢ, ᎾᏍᎩ ᎡᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ. ᎠᏎᏃ ᎬᏂᏳᏉ ᎾᏍᎩ ᎤᏬᏰᏂ ᎠᏆᏡᏗᏍᎩ ᎣᎩᎾᏖᏆᎶᎭ ᎠᏂ ᎦᏍᎩᎸᎢ. ᏐᏉ ᎤᏩᏌ ᏗᎦᏅᎥᏍᎩᎭ? ᏗᏣᎴᎲᎦ! ᎢᏓᎢᏎᏍᏗ! ᎬᏂᏳᏉ ᎠᏉ ᏓᏯᎢ ᎠᏆᏡᏗᏍᎩ. ᎠᎦᏙᎥᎯᏍᏗᏍᎩᏂᏃᏅ ᎨᏒ ᎣᏨᏗᏍᎪ ᎣᏥᏬᏂᎯ ᎪᎱᏍᏗ ᏄᏂᎷᎶᏤᎲᎾ; ᎥᏝ ᎠᏗᎾ ᎡᎶᎯ ᎤᏤᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎢᎦᎵᏍᏗᏍᎩ ᏥᎩ. ᎤᏠᎩ ᎠᎳᏂ ᏭᏏᎳᏛᏁᎴ, ᎤᏚᏥ ᎰᎻ ᏭᏴᏅᎮ ᎤᏠᎩ ᎠᎳᏂ. ᏩᎦ ᏃᎴ ᏐᏈᎵ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏙᎸ ᎤᏴᎵᎴ ᎤᎾᏟᏃᎮᎴ ᏲᎾ ᎤᏤᏍᏙ. “ᎤᏲᏨ ᎠᏆᏛᏅᏙᎩ ᏓᏥᎵᏬᏥ,” ᎠᏓᏰᎵᏍᎨ. ᎩᎶᏰᏃ ᎤᏚᎵᏍᎨᏍᏗ ᎤᏍᏕᎸᏗᏱ ᎬᏅᎢ, ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏲᎱᏎᎮᏍᏗ ᎬᏅᎢ, ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎤᏩᏛᏗ ᎨᏎᏍᏗ. ᎠᏎᏃ ᎭᏫᏂ ᎠᏰᎸᎢ ᏭᏭᏍᏔᏁ ᎠᏰᎳᏍᏘ. ᎥᏝ ᎿᏉ ᎠᏥᏅᏴᏓᏍᏗ ᎾᏍᎩᏯᎢ, ᎤᏟᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏥᏅᏏᏓᏍᏗ, ᎣᏅᏟ ᎠᎨᏳᎯ ᎾᏍᎩᏯᎢ, ᎠᏴ Ꮀ ᎤᎬᏫᏳᎭ ᏥᎨᏳᎢ, ᏂᎯᏍᎩᏂ ᏂᎦᎥ ᎤᏟᎯᏳ ᎯᎨᏳᎢ, ᎾᏍᎩ Ꮎ ᎤᏇᏓᎵ ᎨᏒ ᎠᎴ ᎤᎬᏫᏳᎯ ᏕᏍᏓᏁᎶᏛᎢ? ᎾᏍᎩᏃ ᎡᎳᏪ ᎤᏅᏅ, ᏥᎻ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᎠᏴ ᏍᎩᏯᏛᏓᏍᏓᏏ. ᎨᎵᎠ ᎠᏍᏓ ᎠᎩᏂᎬᎦ ᎠᎩᏂᏱᏍᎩ. ᎠᏓᏁᎸ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏂᏴᏍᏗ ᏃᎴ ᏦᎨᏏ ᏃᎴ ᎠᏙᎯ ᏚᎾᏬᏍᏔᏁᎢ. “ᎠᏁᎵᏗ ᏓᎦᏓᏒᏂ ᎠᏗᏆᎸᏕᏲ ᎦᏆᏗ ᏓᏥᏆᎸᏕᏱ ᏃᎴ ᏧᏳᎪᏗ ᎠᏎᏍᏗ ᏛᎴᏫᏍᏔᏂ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏚᎧᏔᏍᏔᏁᎢ ᏫᎵᎻ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎬᏩᎪᏁᎶᎯᏎᎸᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎯᎠ ᏄᏪᏒᎢ, ᎠᏴ ᎾᏍᎩ ᎾᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏛᎶᏒᎯ. ᏂᎯᏍᎩᏂ ᏂᏥᏍᎦᏅᎾ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎾᏍᎦᏅᎾ ᏥᎩ. ᎡᏕᏲᎲᎦ ᎯᎠ ᎤᏓᏅᏕᏙᏗ, ᎠᎾᏗᏍᎨ ᎾᎥ ᎢᏳᎾᏓᎵ. “ᏥᎦᏔ, ᎠᏎᏃ ᎾᎥᏂ ᎤᏩᏌ ᏥᎪᏩᏘ,” ᎤᏛᏁ ᏌᎳᏓ. ᏏᏆ ᎤᏅᎪᏨ! ᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎤᎾᎵᎮᎵᏤ ᏐᏉ ᎤᎾᎵ ᎤᏓᎵᏗᎩᎡᎸ. ᎢᏳᎾᏛᏁᏗᏱ ᏂᎦᎥ ᏦᏰᏂ ᎠᎴ ᎭᏓᏅᏖᏍᎬ ᎦᏳᎳ ᏗᏧᎪᏔᏅᎯ ᏥᎨᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ. ᎢᎦᏓ ᎠᏈᏴᏗ ᏧᏂ ᏃᎴ ᎢᎦᏓ ᎧᏂᎩᏓ. ᏰᎵ ᏩᎩᏍᏘᏅ ᎤᏐᏱ ᏦᎩᏂᎶᏒ Crockett, ᎢᏧᎳ ᎣᎩᏂᎾᎩᏗᏅᏓ ᎨᏒ. ᎠᏎᏃ Crockett ᏄᎵᏍᏔᏂᏙᎸ ᎤᏲᏍᏔᏁ ᏚᏓᏁᏤᎸ ᎤᏙᏓ, ᎤᎵᏗᎩᎡᎸ ᎤᎵᏍᎩᏰᏗᏍᏔᏁ ᏏᏆ ᏗᏰᎵᏙ, ᎠᎬᏱ ᏣᎾᏂᎩᏍᎨ. ᎭᎵᏍᎪᎥᏍᎦ.” ᏥᏌᏃ ᎤᎷᏨ ᏚᏬᏁᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᎩᏁᎸ ᏂᎦᎥ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ. ᎠᏧᏣᏃ ᏏᏊ ᎢᏈᎬᎢ ᏩᏥᎷᏤᎸᎢ. ᎾᎿᏃ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᎬᏬᎵᏨ, ᎬᏩᏚᏫᏛ ᏚᎾᏓᏅᏏᏙᎸᎩ, ᏕᎬᏩᏘᏃᎮᎸᎩ ᏂᎦᏛ ᏧᏂᏢᎩ. ᎠᏎᏃ ᏂᎦᎥ ᎾᏍᎩ ᎬᏆᎵᏍᏕᎸᏙᏗ ᎠᎩᏰᎸᏅᎢ, ᎾᏍᎩ ᎡᏍᎦᏉ ᎢᏯᏋᏁᎯ ᎠᎩᏰᎸᎭ ᎦᎶᏁᏛ ᏅᏓᎦᎵᏍᏙᏓ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ; ᎭᏓᏅᎾ, ᏓᎬᏅᏏᏰᏃ ᎢᏅ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲᎢ. ᎾᎨ ᎢᏴ ᎠᏓᏪᎳᎩᏍᎬ ᎠᏂᏅ ᏴᏫ, ᎤᎵᏏᎩ ᎤᎾᏓᏴᎳᏛ. ᎠᏂᏃᎯᎵᏙ ᏚᏂᏌᎴᏓᏅ ᎦᎶᏇ. ᎧᏄᎦᏟ ᎤᏅᏂᏎᎢ, ᎤᏩᎨᏫᏎᎢ ᎧᏄᎦᏟ ᎠᎦᏅ ᎤᏍᏆᏂᎪᏙᏗ ᎠᎳᏂ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏛ ᏥᎪᏩᏘᎭ, ᎠᎴ ᏴᏫ ᎤᏪᏥ ᎦᏙᎦ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏᏗᏢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ ᏕᏫ ᏄᏛᏁᎸ ᏧᏂᎬᏎᎮ ᎢᏳ, ᎠᎴ ᎠᎪᏄ ᏧᏲᏏᏍᎨᎢ, ᎤᏩᏒ, ᎠᎴ ᎾᏍᎩ ᏣᏁᎮᎢ? ”ᎨᏍᏗ ᎤᎵᏬᏥᏕᎾ ᏱᎩ,” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎠᏂᏆᎵᏏᏃ ᎬᏩᎷᏤᎸ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏚᏳᎪᏗᏍᎪ ᎠᏍᎦᏯ ᎤᏓᎢᏅᏗᏱ ᎤᏓᎵᎢ? ᎬᏩᎪᎵᏰᏍᎨᎢ. ᎦᏳᎸ ᎤᏂᎶᎯᏎᎸ ᎤᏍᎦᏎᏗ ᎤᏟᏲᎵᏍᏗ ᏭᏂᎷᏨ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ ᎦᏙ ᎠᏴ ᏗᎩᎾᏓᏛᏙᏗ? ᎥᏝ ᎠᏏ ᎠᏴ ᏯᎩᏍᏆᎸᎡᎸ. ᎠᎴ ᎠᏤᎷᎩ ᎤᏃᏴᎬᎢ, ᎠᎴ ᎧᏁᎬ ᎤᏃᏴᎬᎢ; ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅᎯ ᎤᏂᏔᏲᎴ ᏔᎵᏁ ᎾᏍᎩ ᎢᎨᏂᏪᏎᏗᏱ ᏂᎨᏒᎾ. ᎠᏎᏍᎩᏂᏃᏅ ᎯᎠ ᎾᏍᎩ ᎥᏝᏍᏗ ᏱᏣᎵᎮᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏗᏓᏅᏙ ᎨᏦᎯᏳᏒᎢ; ᎢᏣᎵᎮᎵᎨᏍᏗᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏕᏣᏙᎥ ᎦᎸᎳᏗ ᏦᏒ ᏫᏗᎪᏪᎸᎢ. ᎦᎳᎱᏂ ᏧᎷᏫᏍᏔᏁᏗ ᏙᎩᎾᏦᏒ Crockett, ᎦᎸᎳᏗ ᎨᏒ ᏕᎦᏃᏣᏢ. ᏑᏓᎵᏃ ᏫᏄᏒᎸ ᏥᏌ ᏚᏘᏅᏒᎩ ᏈᏓ, ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ ᏥᎻ ᏗᎾᏓᏅᏟ, ᎠᎴ ᏚᎿᎷᏔᏅᎩ ᎢᏅ ᎢᎦᏘ ᏱᏓᎸ ᎤᏅᏒ ᎨᏒᎢ, ᏭᎾᎩᏎ ᏩᎶᏏ. ”ᎤᏍᎦᏃᎵᎨᏍᏗ ᏂᏫ!” ᏃᏉ ᏥᏩᏘᏍᎪ ᎠᏓᏟᏔᏗᏍᎬ ᎠᏙ. ᎠᎦᏴᎵᎨᏰᏃ ᎾᏍᏉ ᎥᏝ ᎩᎶ ᏱᏗᎫᎪᏓᏁᎰᎢ, ᏚᏲᎯᏎᎸᏍᎩᏂ ᎤᏪᏥ ᎾᎦᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ, ᎢᏣᏛᎬᎦ ᎢᏨᎨᏳᎢ ᎢᏓᎵᏅᏟ, ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᏱᏚᏑᏰᏒ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎡᎶᎯ ᎠᏁᎯ, ᎤᏁᎿᎢᏳ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏙᎵᎦ ᎤᏤᎵᎪᎯ ᎾᏍᎩ ᏧᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ ᎬᏩᎨᏳᎯ? ᎬᏂᏳᏉᏃ ᎠᏄᏬ ᎠᏰᏙᎳᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏚᎵᏍᏡᏰᎢ, ᎦᎸᎳᏗ ᏧᎴᏅᎮ ᎡᎳᏗ ᏭᏍᏆᏗᏍᏔᏁᎢ; ᎠᎴ ᎦᏙᎯ ᎤᎵᏖᎸᏁᎢ, ᎠᎴ ᏅᏯ ᏚᎾᎵᏍᏡᏰᎢ. ᏙᏳᏗᏍ ᎠᏎᏛᏎ ᏑᏟᎶᏓ ᎾᎥ, ᏃᏊ ᎤᏔᏅ ᏦᎨᏏ ᏄᏍᏛ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎩᎶ ᎤᎬᏫᏳᎯ ᏧᏓᏅᏖᎴ ᎣᏍᏛ ᎢᏳᏅᏁᏗᏱ ᏚᏚᎬ ᏧᏅᏏᏓᏍᏗ. ᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏪᏢᏅᎯ ᎨᏒ ᎣᏏᏳ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᎠᏲᎢᏎᏗ ᏱᎩ, ᎢᏳᏃ ᎤᎵᎮᎵᏍᏗ ᎣᏓᏅᏛ ᏱᏛᏓᏂᎸᎦ; ᎢᏳᏃ ᏗᎹᏗ ᏫᎦᎷᏨᎭ, ᎢᏣᎦᏌᏯᏍᏕᏍᏗ ᏂᎦᎾᏰᏍᎬᎾᏉ ᎢᏤᎳᏗᏓᏍᏗᏱ; ᏚᎸᏫᏍᏓᏁᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎤᏠᏱᏉ ᎠᏴ. ᎤᏪᎳ ᏥᎩᎠ, ᏧᏪᎳ ᏕᏥᎩᏍᎪᎢ Ꮡ, Ꮜ, ᏌᎢ ᏃᏉᏗᏍᏉ ᏣᏂᎧᏔᎮ ᎢᏳᏊ ᏓᎦᎷᏥᏒ ᏍᎩᎾ. ᎭᎪᏘᏍᎬᎢ ᏧᎧᏒᏍᏗ. “ᏧᏍᏆᏴᏍᏗ?” ᎠᏎᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎾᏍᏉ ᏂᎦᏛ ᏱᏚᏃᏕᏍᏔᏅ, ᎠᏴ ᎠᏎᎥᏝ. ᎠᎬᏱ ᎢᏣ ᎤᏍᏔᏩᏛᏎ ᎤᏢᏲᎵᎲ ᎢᎪᎯᏓ, ᏃᏉ ᎤᎵᏍᏆᏛ ᎤᎪᎲ ᎤᏩᏍᏉᎸ ᎩᎦ ᏃᎴ ᎤᏕᎭᏯᎵᏙᎴ, ᎪᎰᏍᏘ ᏯᏩᏘᏍᎬᎾ. ᎠᏃᎯᏳᎲᏍᎩᏃ ᎠᏂᏏᏴᏫᎭ ᏰᎵ ᎢᎬᏩᎾᏛᏁᏗ ᎨᏒ ᏚᏄᎪᏔᏁ ᎤᎾᏓᏅᏍᏗᏱ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎠᎾᎵᏅᏟ ᏧᏗᏱ ᎠᏁᎯ. ᏫᎨᏣᏲᎵᎦ ᎡᎦᏉ, ᏗᏧᎳᎭ ᎣᏍᏗᏴᎩ ᎦᎶᏁᏛ ᏥᏌ ᎣᎩᏂᏍᏛᏗᏍᎬᎢ; ᎠᏏᏉ ᎧᏁᎨᎢ, ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᏁᎸ ᏅᏓᏳᎾᏓᎴᏅᎯ ᎤᏂᎷᏤ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎤᏲᎱᏒ ᏤᏥ; ᎦᏙᏃ ᎠᏏᏉ ᎢᎯᏯᏕᏯᏙᏗᎭ ᏗᏕᏲᎲᏍᎩ? ᎠᏎᏃ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏞᏍᏗ ᎠᏎᏉ ᏱᏨᎫᏘᎶᏍᎨᏍᏗ ᎾᏍᎩ ᏥᎾᎾᏛᏁᎰ ᏧᎾᏓᎴᏅᏛ ᏴᏫ; ᎤᏣᏘᏰᏃ ᎣᏥᏁᎬ ᎤᏓᎦᎵᏍᏙᏔᏂ ᏓᏲᎦᏛᎦᏁᎵ ᎠᏁᎵᏍᎪᎢ. ᏰᎵ ᎪᎯᏓ ᎤᏬᏢ ᏱᎧᏁᎬᎾ ᏃᎴ ᎪᎦᏍᎬ ᎦᏅᏃᏩ ᎦᏅᎯᏓ ᎫᎭᏟ, ᎪᏍᏔᎭ ᏂᎦᎵᏍᏗᏍᎬ ᎢᎪᎯᏛ. ᏧᎾᏄᎪᏫᏎᏗᏱ ᎪᎯ ᎨᏒ ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎨᏒᎢ; ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎫᏓᎴᏍᎩ ᎾᏍᎩ Ꮎ ᎪᎯᏳᎲᏍᎩ ᏥᏌ. “ᏦᎢ ᎢᏯᏂ ᏌᏌ ᎠᏂᏨᏯ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏗᎭ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᏗᎾ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎰᏩ ᏕᏥᎨᏳᏎᏍᏗ ᏗᏣᏓᎵᎢ ᎾᏍᎩᏯ ᎢᏨᏒ ᏂᏣᏓᎨᏳᏒᎢ; ᎠᎨᏴᏃ ᎤᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎤᏰᎯ. ᎤᏍᏆᎸᎲ ᎢᏴ, ᎡᎳᏗ ᏄᏛᏁᎸ ᏲᎾ ᎤᏏᎳᏓᏅ ᎤᎭᏄᏮ, ᎤᏁᎦᎸ ᎤᏓᏁᎪᏴᏓ ᏂᎦᎵᏍᏗᏍᎬ ᏃᎴ ᎦᏓᎥ ᏧᎪᎸ ᎦᏚᎢᏣ, ᏚᏔᎷᎩᏍᎬ ᏚᏁᎷᎲ, ᎾᏍᎩᏯ ᎠᏕᎳ ᎤᏁᎦ ᏗᏍᎪᎵᏰᎥ, ᎤᏍᏆᏙᏅ ᎠᏥᏂᏐᏗ ᎤᎭᏴᏍᏗ. ᏐᏉ ᎢᏳᏩᏂᎸ ᎢᏴ ᎤᎵᏍᏔᏴᏃᏁᏍᏗ. ᎠᏎᏃ ᎤᏄᎪᏨ, ᎤᎴᏅᎮ ᎤᏣᏘ ᏚᏰᎵᎯᏍᏔᏁᎢ, ᎠᎴ ᏚᏃᏣᎳᏁ ᎾᏍᎩ, ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏥᏌ ᎥᏝ ᎿᏉ ᎬᏂᎨᏒ ᏫᎬᏩᏴᏍᏗ ᏱᎨᏎ ᎦᏚᎲᎢ, ᏙᏱᏗᏢᏉᏍᎩᏂ ᎢᎾᎨ ᏕᎨᏌᏗᏒ ᎡᏙᎮᎢ; ᏂᎬᎾᏛᏉᏃ ᏂᏙᏓᏳᏂᎶᏒᎯ ᎬᏩᎷᏤᎮᎢ. ᏴᏫᏰᏃ ᎤᏪᏥ ᎤᎬᏫᏳᎯ ᎾᏍᏉ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ. ᎧᏂᎩᏓ ᏌᎳᏓ ᎨᏎᏍᏗ ᏳᏂᏴᎲ ᎠᏧᏣ. ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᏓᏁᎯ ᎢᏥᎧᎵᎢᏍᏗ ᎨᏎᏍᏗ ᏄᏓᎴᏒ ᎤᎵᎮᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᎢᏦᎯᏳᏒ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎤᏣᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎩ ᎢᏨᏒᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᎵᏂᎬᎬ ᎢᏳᏩᏂᏌᏛ. ᎠᎴ ᎤᎬᏫᏳᎯ ᎤᏂᎧᎲᎩ ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᏥᎩ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒᎢ, ᎾᏍᎩᏃ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎠᏆᏙᎾ ᏚᏙᎥ, ᎠᏂᎪᎢᏍᎩᏂ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏉᎵᏯᏂ ᏚᏙᎥ. “ᏕᏍᏔᎦᏎᏍᏕᏍᏗ ᏚᎾᏦᏩᏛ ᏗᏂᏓᎾᏌᎲᏍᎩ!” ᏚᏪᏯᏙᏔᏁᎢ ᎤᏂᏙᏓ. ᎤᏰᎸᏛᏃ ᎠᎪ-ᏩᏛᏗ ᎨᏎᏍᏗ ᏅᏙ ᎢᎦ ᎡᎯ ᎧᎸᎢ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎧᎸᎢ, ᎠᎴ ᏃᏈᏏ ᎠᏂᎧᎸᎢ; ᎠᎴ ᎡᎶᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲ ᎤᏪᎵᎯᏍᏗ, ᎠᎴ ᎤᏕᏯᏙᏗ ᏅᏓᏳᎾᎵᏍᏓᏁᎵ; ᎠᎺᏉᎯ ᎠᎴ ᎠᎹ ᏓᎵᏍᏗᎳᏁᎬ ᎤᏍᏆᏃᏴᎨᏍᏗ; ᎦᎪᎨ ᎠᏍᎦᏯ ᎯᎠ ᏥᏂᏣᏛᏅ, ᎢᏳᏃ ᎤᏪᏥ ᎦᏚ ᏳᏔᏲᏎᎭ, ᏅᏯᏉ ᏯᎲᏏ? ᎤᏍᎦᏃᎵ ᎠᏓᏏᏎᎢ ᏓᏆᎴᎳ. ᏕᎾᏓᎪᎲᎤᎢ ᎩᏥ, ᎬᎨᏳ. ᎤᏲ ᎢᏳᎵᏍᏔᏁᎸᎯ, ᎠᏍᎦᏯᏯ ᏗᏘᏲᎯ Cooper ᏰᎵ ᎪᎯᏛ ᎤᏩᏙᏁᎲ ᎨᏎ ᎤᏛᏐᏅ ᎤᎬᏫᏳᎯ, ᎠᏂᎦᏗᏛ ᎠᏂᏴᏫᏯ ᏧᏂᎶᎯᏎᎸ ᎨᏎ ᏰᎵ ᎪᎯᏛ. ᎦᎸᎳᏗ ᎤᏤᎵᎪᎯ ᎾᏍᎩᏯᏉ ᎩᎶ ᎤᎬᏫᏳᎯ ᏧᏛᏅᎢᏍᏔᏁ ᏣᎦᏨᏍᏙᏗᏱ ᎤᏪᏥ ᎠᏫᏅ, ᎢᏳᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨ ᎤᎾᏤᎵ ᏱᏂᎨᎬᏁᎭ, ᎿᏉ ᎠᏎᏉ ᏂᎦᎵᏍᏗᎭ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏚᎢᏍᏛ ᎪᎱᏍᏗ ᎬᎪᏗ ᏂᎨᏒᎾ ᏂᎦᎵᏍᏗᎭ. ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏪᏘ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏚᎩᏛ ᎢᎬᏪᏅᏛ ᎢᏤ ᏳᏚᎵᏍᎪᎢ; ᎯᎠᏰᏃ ᏂᎦᏪᏍᎪᎢ, ᎤᏪᏘ ᎤᏟ ᏃᎯ. ᎠᏣᎳᎩᏃ ᎠᏍᎦᏯ ᎠᎴ ᏁᏙᎮ ᎠᎹ ᏰᏟ ᎢᏤ ᏂᎨᏎ ᎾᎾᏃ ᏧᏓᎴᏁ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎠᏴ ᎠᏆᏛᎦᏅ ᎡᏦᎢᏳᏒ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᏕᏥᎨᏳᏒ ᎾᏂᎥ ᎤᎾᏓᏅᏘ, ᎾᏍᎩ ᎦᎳᏐᏫᏍᏗ ᎤᏤᎵᎦ ᎠᏰᎭ, ᎠᎴ ᏂᎦᏛ ᏓᎦᎳᏐᏫᏏ, ᎤᏤᎵᏃ ᎤᎦᏔᏔᏅᎯ ᏓᎦᏟᏌᏂ ᏛᏂ ᎠᏓᎾᏅᏗᏱ ᎤᏘᏴᎯᏍᎩᏂ ᏛᎪᎲᏍᏔᏂ ᏂᎬᏠᏍᎬᎾ ᎠᏥᎸᏱ. “ᎭᏗ, ᏣᏉ, ᏓᏆᏎᎸ. ᎢᎬᏱᏃ ᏭᏗᏢᏍᏔᏅ ᎤᎸᏎ ᎫᏩᏧᏁᎬ ᏡᎬ ᎤᎪᏩᏛᏗᏱ ᎤᏚᎵᏍᎨᎢ; ᎾᎿᏰᏃ ᎢᏗᏢ ᏭᎶᎯᏍᏗ ᎨᏎᎢ. ᎠᎴ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒ ᎬᏂ ᏱᎰᏩ ᎤᏤᎵ ᎦᏣᏁᏛ ᎤᎪᎲᎯ ᏱᎩ “ᎨᏍᏗᏗ ᎤᎵᏬᏨ ᏱᎩ,” ᏧᏪᎷᏁ ᎰᎻ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᎢᎠᏎᎵᏛᏍᎨᏍᏗ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᏥᎸᎨᎳᏍᏗᏱ, ᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᎿ ᎠᎲᎢ. ”ᎭᏩ,” ᎤᏛᏁ ᎠᎳᏂ, ”ᎠᏯ ᎨᎵᏍᎬ ᎦᏲᏟ ᏣᎵᏓᏍᏔᏅ, ᎨᏍᏗ ᎧᏅᏂᏍᎩᏉ ᏱᎩ.” ᏥᏌᏃ ᎯᎠ ᏂᏑᏪᏎᎸᎩ; ᏝᏍᎪ ᎢᎸᎯᏳ ᏱᏥᎪᎵᏰᎣ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ? ᎠᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏅᏯ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎵᏍᏔᏅ; ᎾᏍᎩ ᎯᎠ ᏱᎰᏩ ᏄᏛᏁᎸ, ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏕᏓᎧᏂᏍᎬᎢ. ᎬᏃᎯᏎᎲ ᎢᏴ ᏕᎯᏍᏔᏅᏂᏍᎨᏍᏗ ᏥᏲᏎᎸ. ᏓᎿᏩᏃ ᏄᎵᏍᏔᏅᎩ ᎦᎸᎳᏗ; ᎹᏱᎩᎵ ᎠᎴ ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏑᎾᎵᎸᎩ ᏚᏂᎦᏘᎸᏒᎩ ᎢᎾᏛ; ᎢᎾᏛᏃ ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᎾᏟᏴᎲᎩ, ᎿᏉᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙᏃ ᏥᏍᏓᎵᎪᏅ ᎡᏍᏗᎪᎵᏰᏗᏱ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎠᏓᏅᏙ? ᎬᏂᏳᏉ ᎠᏉ ᎦᎶᎯᏍᏗᏱ ᏧᎾᎳᏏᏕᏂ ᏣᏰᎯ ᎬᏩᏂᏌᏅᎯ, ᎾᏍᎩᏃ ᏂᎯ ᏛᎨᏣᎾᏫᏛᎯ. ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᏥᎨᏐ ᎥᏝ ᎠᏍᎦᏂ ᏱᏚᎸᏫᏍᏓᏁᎰᎢ; ᎾᏍᎩᏰᏃ ᎤᏤᎵᎦ ᎤᎦᏔ ᎤᏪᎰᎢ, ᎥᏝ ᎠᎴ ᏰᎵ ᎬᏩᏍᎦᏅᎢᏍᏗ ᏱᎨᏐᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᎨᏒᎢ. ᏅᎩᏉ ᎢᏳᏩᏂᎸ ᎨᏎ ᎠᏎᏃ ᎦᏳᎳ ᎤᏛᏅᎢᏍᏕ ᎤᏂᏏᏗ ᎤᏪᏅᏍᏗ ᏫᎵᎻ. ᎠᏎᏃ ᏅᏙ ᎢᎦ-ᎡᎯ ᏧᎧᎸᏨ ᎤᎴᏴᏎᎢ; ᎠᎴ ᏂᏚᎿᏍᏕᏢᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎤᎿᏍᎬᏤᏉ. ᎯᎸ ᏳᏪᏅ ᏓᏆᎴᎳ ᏃᎴ ᎠᏁᏙᎯ ᏓᎴᏫᏍᏗᏍᎨ, ᎠᎾᎦᏙᏍᏗᏍᎨ ᎦᎶᏍᎬ. ᏂᎦᏓ ᎤᎵᏍᏕᏓᎵᏴᏓ. ᎾᏍᏓᏴ ᎤᏰᏤ ᏌᎳᏓ, ᎤᎵᏖᎸᏂᎴ ᏚᏏᎳᏛ. ᎤᏬᏚᎯᏳᏍᎩᏂ ᏂᎦᏛᏅᎢ ᎥᏝ ᏳᏂᎬᎪᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᏚᏭᏓᏔᏂᏙᎸ ᎠᏰᎸᎢ, ᎤᏟ ᎢᎦᎢ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎸ ᎾᏍᎩ ᎾᎿ ᎡᏍᎦ ᎨᏒᎢ; ᎾᎯᏳᏉᏃ ᏒᏃᏱ ᏚᏯᏅᎮᎢ, ᎠᎴ ᏚᏬᏑᎴᎴ ᏕᎨᏥᎵᎥᏂᎸᎢ; ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎠᎦᏬᎡ ᎤᏩᏒ ᎠᎴ ᏂᎦᏛ ᏧᏤᎵᎦ. ᏧᏓᏋᏓ ᎠᎦᏕ ᎣᏍᏓ ᎤᏰᎸᎮ ᏌᎳᏓ ᏫᎵᎻ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎯᎠ ᏂᎨᏥᏪᏎᎸᎭ; ᎢᎾᎨ ᎡᏙᎭ; ᏞᏍᏗ ᎾᎿ ᏫᏥᎶᏒᎩ; ᎬᏂᏳᏉ ᎤᏕᎵᏒ ᎧᏅᏑᎸ ᎠᏯᎠ; ᏞᏍᏗ ᏥᏦᎯᏳᏂ. ”ᏣᏚᏥ ᎰᎻ ᎯᎸᎢᏴ ᎠᏛᎯᏍᏗᏍᎪ ᏏᏆ. “ᎠᎦᏛ ᎣᏍᏓ ᎠᏰᎸᏗ ᎠᏓᏑᏲᎲᏙᏗ,” ᎤᏛᏁ ᎡᎳᏆᏘ. ᎤᎵᏏᎬ ᎢᏨᏁᏤᎸᎢ ᎢᎦᎦᏛ ᎢᏥ ᏁᎨᏍᏗ; ᎡᏣᏙᏅᎡᎸᏃ ᎨᏒ ᎦᏌᎾᎵ ᎢᏣᎵᏥᏙᎲᏍᎨᏍᏗ. ᏒᎧᏔ ᏗᏧᎬ ᎭᏫᏂᏣ ᏤᏙᎭ. ᏰᎵᏉ ᏚᏋᏙᏗ ᏥᎢᏍᏙᏗ ᏲᎾ ᎤᏪᎵᏎ. ᏚᎾᎵᏥᏇᏃ ᎠᎴ ᎤᏂᏴᎡᎴ ᎦᎾᏍᏓ ᎠᎴ ᎤᏂᏍᏆᎸᏂᏍᏔᏁᎢ. ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᏣᏁᎳ ᎢᏳᏩᏂᎸ ᏫᏓᏂᏅᎨᎢ ᎦᏂᏏ. ᎦᎦᏍ ᎡᏍᏛ ᏒᎦᏔ ᎢᏳᎾᏍᏗ ᏗᎨᎵᏍᎩ ᏕᎦᎶᏛ, ᎠᏰᎳ ᏓᎶᏂᎨ ᎠᏕᎳ ᎢᏗᎬᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎦᏙᎩᏯᏍᎬ ᎥᏝ ᎬᏁᎳᎩᏉ ᎾᏍᎩᏯ ᏱᎦᏙᎩᏯᏍᎦ; ᎦᎵᎲ ᎥᏝ ᎩᎶ ᎤᏃᎴᏉ ᏥᎦᎵᎥᏂᎰ ᎾᏍᎩᏯ ᏱᎦᎵᎭ. ᎤᏙᎯᏳᎩ?” ᎤᏦᏱᎴ ᏫᎵᎻ. Ꮭ ᎿᏉ ᏰᎵ ᎩᎶ ᏍᎦᏁᏨᎯ ᎬᏩᏁᏤᏗ ᏱᎨᏎᎢ; Ꮭ ᎠᎴ ᎩᎶ ᎾᎯᏳ ᎢᏳᏓᎴᏅᏛ ᏰᎵ ᎦᎬᏩᏛᏛᏗ ᏱᎨᏎᎢ. ᏍᏔᏯ ᎠᏂᏬᏂᏍᎪ ᏃᎴ ᎡᏝᏪᎯ, ᎨᏍᏗ ᏱᎪᎵᎨ ᎢᏳᏍᏗ ᎾᏂᏪᏍᎬ ᎡᎳᏗᏨ ᏥᏙᎬ. ᏏᏌ, ᎤᎾᏛᏅᎩ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏏᏌ ᎠᏗᎾ ᎡᏥᎲᏏ ᏏᏌ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᏓᏗᎶᏂᏃ ᏫᏗᎨᎦᏘᏃᎸ ᏤᎪᎾᏯ ᏌᎳᏓᏱᎵ ᎤᏕᏁᎴᎢ; ᏌᎳᏓᏱᎵᏃ ᏥᎳᏇᎵ ᎤᏕᏁᎴᎢ; ᎠᎴ ᎠᎰᎵ ᎤᏍᏚᎢᏒᎩ ᎤᏁᎳᏅᎯ ᎠᏐᏢᎢᏍᏗᏍᎬᎢ, ᏚᏙᎥ ᎦᎬᏩᏐᏢᏙᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎾᏍᎩ ᎾᎦᎸᎳᏗ ᎠᏁᎯ. ᎾᏍᎩᏃ Ꮎ ᎤᎪᎲᎯ ᎤᏃᎮᎸᎩ, ᎧᏃᎮᏍᎬᏃ ᎤᏙᎯᏳᎭ, ᎠᎴ ᎠᎦᏔᎭ ᎤᏙᎯᏳᎯ ᎧᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᎨᏦᎯᏳᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᎴ ᎾᏍᎩ ᏓᎬᏩᎵ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏙᏛᎠᎴᏂ. ᎤᏣᏔᏅᎯᏃ ᎤᏲ ᎤᏂᏰᎸᏅᎩ. ᎭᏁᎵᏍᎬ ᏱᏄᏍᏛᎾ ᏱᎩ. ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎨᏒ ᎾᎥ ᎢᎦᏓᎳ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᏂᏓᏛᏁᎮᏍᏗ ᎾᏍᎩ ᎣᏍᏛ ᎨᏒ ᎤᎵᏂᎪᎯᏍᏗᏱ ᎤᎬᏩᎵ. ᎠᎦᏙᎥᎯᏍᏗᏃ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ; ᎠᎵᏏᎾᎯᏍᏙᏗᏃ ᎨᏒ ᏔᎵᎢᏨᏗᏍᎨᏍᏗ ᏗᏨᏂᏗᏳ ᎨᏒᎢ; ᏗᏣᏂᏗᏳᏃ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩᏰᏃ ᎾᏍᏉ ᎾᎾᏛᏁᎮ ᎡᏘ ᎠᏃᏍᏛ ᎠᏂᎨᏴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏍᎦᏍᏙᏗᏍᎩ ᏓᎾᏣᏅᏍᎨᎢ, ᏚᏃᎯᏳᎭ ᏗᎬᏩᏂᏰᎯ, ᎤᏍᎪᏒ ᏭᎶᏒ ᏂᎬᎾᏛ ᎡᏙᎮ, ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᎴᏂᏍᎩ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏩᏍᏗ, ᎩᎶ ᏳᎪᎲᎾ. ᎤᎬᏫᏳᎯᏃ ᏓᎧᏁᏥ ᎯᎠ ᏂᏙᏓᎦᏪᏎᎵ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩᏰᏃ ᏥᏁᏣᏛᏁᎸ ᎤᏍᏗᎧᏂ ᎯᎠ ᎾᏍᎩ ᎣᏣᎵᏅᏟ, ᎠᏴ ᏂᏍᎩᏯᏛᏁᎸᎩ. ᏫᏥ ᎢᏣ ᏭᎶᏎ, ᎩᎳ ᎤᏕᏅ ᎤᏃᏕᎾ ᎠᏓᎯ ᎤᏍᏓᏩᏗᏒ ᎤᎪᎮ ᏫᎵᎻ. “ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᏥᏍᏕᏥ ᎤᏤᎵ ᏦᏒᎢ. ᎶᎻᏍᎩᏂ ᎤᏪᏙᎸ ᎤᎵᏂᎩᏛ ᎠᎩᏲᎸᎩ, ᎠᎴ ᎠᎩᏩᏛᎲᎩ. ᎤᏰᏤ ᏧᏍᏆᏴᏍᏗ. ᏓᏔᎴᎦᏒ ᎦᎸᎳᏗ ᎠᏦᎭᏴ, ᏃᎴ ᎤᎾᎴᏗ ᏙᎪᏒᎲ ᎤᎾᎴᏗ ᏗᏂᏍᏔᏲᎯ. ᎤᎵᏏᎩ ᏂᎦᎵᏍᏗᏍᎬ, ᎤᏍᏗ ᎪᏔᏍᎨ ᏔᎷᎩᏍᎩ ᎪᎭᏱᏅᏍᏘ ᎠᎰᎵ ᎢᎬᏓ. ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᎪᎯᏓ ᎤᏰᎵᏙᎴ ᎧᏃᎯᏎᎲ ᎠᎵᏥᏙᎲᏍᎩ ᎤᏍᏆᏂᎩᏗ ᏄᎵᏍᏔᏅ ᏕᎦᎶᎨᏒ. ᎠᏰᎵᏃ ᎤᏜᏅᏛ ᎾᎿ ᎡᏓᏍᏗᏱ, ᎠᎴ ᎢᏧᎳᏗᏢ ᎤᏪᏴᎢ, ᏡᎬᎩ ᎬᏂᏛ ᎠᏓᏁᎯ ᏡᎬᎢ, ᎾᏍᎩ ᏔᎳᏚ ᎢᏳᏓᎴᎩ ᎠᏓᏛᏍᎬᎩ ᎠᎴ ᏂᏓᏦᎳᏂᏒ ᎬᎾᏍᎬᎩ ᎤᏓᏔᏅᎯ; ᎤᎳᏍᏚᏒᏃ ᎤᎾᏅᏬᏗ ᎨᏒᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏓᏅᏖᏍᎩ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏔᏲᎴ ᎤᏩᏛᏗᏱ ᎤᏁᎳᏗᏍᏗᏱ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᏁᏂᏏ ᎢᏣ ᎤᎵᏍᎫᏩ ᏣᎵ. ᎿᏉᏃ ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒᎢ, ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏧᏙᎢᏛ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏫᏚᎷᏤᎴᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᏜᏩᏍᏗᏍᎨᏍᏗᏃ ᎤᏓᎵᎢ, ᎾᏍᎩᏃ ᎠᏂᏔᎵ ᏌᏉᏉ ᎨᏎᏍᏗ ᎤᏂᏇᏓᎸᎢ. ᏙᎢᏳᏍᏗ ᎭᏗ ᎣᎯᏍᏙᏗ?, ᎤᏛᏅ ᎠᏂᏴᏫ ᏧᎦᏎᏍᏗᏕᎩ “ᏏᏆ ᎤᎾᏕᏁ ᎤᏒᎯ.” ᎨᏍᏗ ᏔᎵᏁᎢ ᏳᏓᏅᏌ. ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎡᏆᎭᎻ ᏅᏓᏳᏁᏢᏔᏅᏛ, ᎠᎴ ᎩᎶ ᎢᏣᏓᏑᏰᏍᏗ ᎡᏥᎾᏰᏍᎩ ᎤᏁᎳᏅᎯ, ᏂᎯ ᎢᏣᏛᎪᏗ ᎡᏥᏰᎸᎾᏁᎸ ᎧᏃᎮᏛ ᎾᏍᎩ ᎯᎠ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎧᏃᎮᏍᎩ. ᏰᎵᏉᎴ ᏱᎩ ᎠᏆᏛᏅ. ᏚᏖᎸᏅ ᏧᎳᏏᏕᏅ, ᎣᏍᏓ ᏧᏂᎪᏩᏛᏗ. ᎺᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏗᎧᎿᏩᏗᏙᎯ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏱᏂᎦᎵᏍᏓ, ᏂᏥᎦᏔᎲᎾᏃ ᏥᎩ ᎠᏍᎦᏯ? ᎤᎬᏓᎴᏃ ᎤᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᎢᎬᏱ ᎨᎾ ᏥᏂᏌᏄᎦ ᎡᏙᏓ. ᎦᏓ ᎦᏓᏁ ᎢᏳᏍᏗ ᎠᏒᎨ ᎤᏃᎴ, ᏃᏥ ᎢᏳᏍᏗ, ᎤᎦᎾᏍᏓ ᎪᎨᏱ. ᎤᏣᏗᏍᎩᏂᏃᏅ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎩ ᎠᏂᎦᏔᎲᎢ, ᎠᏎᏃ ᎥᏝ ᏱᎬᏬᎯᏳᏁᎢ. ”ᏐᏉ ᎠᏯᏖᎾ ᎢᏳᏛᏅᏓᎩᏓ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏆᎭᎻ, ᎾᎯᏳ ᎠᏥᎪᎵᏰᎥ ᎡᏏᎩ ᎤᎵᏍᎪᎸᏔᏁᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎤᏩᏒᎯᏳ ᎤᏪᏥ ᎤᎵᏍᎪᎸᏔᏁᎢ. ᎠᎴ ᎤᎵᏍᏈᏗ ᎤᎩᏒ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᎾᏍᎩ ᏚᏁᎴᎢ; ᏂᎦᏛᏃ ᎾᏍᎩ ᎤᎾᏗᏔᎮᎢ. ᎠᎳᏂ ᏃᎴ ᎪᏱᏁᎢ ᏓᏆᎴᎳ ᏩᎩᏠᏫᏍᏗ ᎦᎾᎸᎢ ᏓᏂᏙᎨᎢ. ᎪᎯᏳᎯᏃ ᎠᏓᏃᎵᏍᏙᏗ ᎨᏒ ᏓᏳᏍᏕᎸᎯ ᎤᏢᎩ, ᎤᎬᏫᏳᎯᏃ ᏙᏓᏳᎴᏔᏂ; ᎢᏳ ᎠᎴ ᎤᏍᏚᏅᏨᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᏣᏥᏂᎯᏎᏗ ᎨᏎᏍᏗ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ. ᏫᏚᏯᏅᎲᏃ ᏴᏫ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎠᎩᏍᏓᏩᏛᏍᏗᏱ, ᎤᏩᏒ ᎠᏓᏓᏱᎮᏍᏗ, ᎠᎴ ᎤᏩᏒ ᎤᏤᎵ ᏧᏓᎾᏩᏛ ᎠᏱᏍᎨᏍᏗ, ᎠᎴ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ. ᎯᎠᏍᎩᏂ ᎪᏪᎳ ᎢᏦᎯᏳᏗᏱ ᏥᏌ ᎪᎶᏁᏛ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ, ᎢᏦᎯᏳᎲᏍᎬᏃ ᎬᏂᏛ ᎢᏣᏥᎵ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏚᏙᎥ ᏅᏓᏳᎵᏰᎢᎸᏍᏙᏗᏱ. ᏓᏍᏚᎩᏍᎨ ᏗᏂᏰᎸᎢ ᏃᎴ ᏓᎩᏍᎨ ᏧᏪᎵᏏᏯ. ᎢᎬᏩᏙᏢᏔᏁᏉᏃ. ᏂᎦᏛᏃ ᏚᏄᎪᏫᏐᏅ, ᎯᎠ ᎾᏍᎩ ᎠᎨᏳᏣ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ ᏚᏘᏅᏎ, ᎠᎴ ᏭᏴᎴ ᎾᎿ ᎠᎨᏳᏣ ᏗᏐᏅᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎯᏁᎨᏍᏗ ᎠᎴ ᏕᎭᏕᏲᎲᏍᎨᏍᏗ. ᏤᏍᏗ ᏱᏦᎯᏳᏁᏍᏗ, ᏤᏍᏗ ᏱᏦᎯᏳᏁᏍᏗ. ᎼᏏᏃ ᎤᎪᎲ ᎤᏍᏆᏂᎪᏎ ᏄᏍᏛ ᎠᎪᏩᏘᏍᎬᎢ. ᎤᎪᎵᏰᏗᏱᏃ ᎤᏰᎸᏅ ᎾᎥ ᏭᎷᏨ ᏗᎪᎵ-ᏰᏎᎢ, ᎤᎬᏫᏳᎯ ᎧᏁᎬ ᎤᏛᎦᏁ [ᎯᎠ ᏂᎦᏪᏍᎨᎢ;] ᎠᏎᏃ ᎤᏁᏨ, ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᏴᏫ ᎥᏝ ᎦᏚᏉ ᎤᏩᏒ ᏱᎬᎿᏗᏍᏗ, ᏂᎦᎥᏍᎩᏂ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎠᎰᎵ ᏅᏓᏳᎾᏄᎪᏨᎯ. ᏅᎩ ᏗᏂᏅᏌᏗ ᏃᎴ ᎠᏤ ᎠᎾᎢ ᎠᏁᎰᎢ. ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎠᏥᎸ-ᎨᎶᎯ ᎢᎩᎵᎶᎲᏍᎩ ᎨᏒᎩ, ᎾᏍᎩ ᎾᏍᎦᏅᎾ, ᎤᏲ ᎢᎬᏩᏓᏛᏁᏗ ᏂᎨᏒᎾ, ᎠᏍᎦᎾ ᏄᏓᏅᎦᎸᎾ, ᎠᏂᏍᎦᎾ ᎠᏁᎲ ᎠᎦᏓᏓᎴᏔᏅᎯ, ᎠᎴ ᎦᎸᎶ ᎤᏗᏗᏢ ᎢᏴᏛ ᎠᏥᏌᎳᏓᏅᎯ; ᎠᏎᏃ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᎪᎱᏍᏗ ᎡᏍᎦ ᎬᏰᎸᎾᏁᎲ ᎢᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᎩ ᏥᏰᎵᏎᎭ Ꮎ ᎠᎨᏴ ᏤᏏᏈᎵ, ᎦᏙᎴᎣᏍᎩ ᎠᏴ ᏣᏗᎭ, ᏧᏪᏲᏗᏱ ᎠᎴ ᏧᎶᏄᎮᏗᏱ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏕᎴᏛ ᏧᎾᏂᏏᏗᏱ ᏗᏆᏤᎵ ᎦᏥᏅᏏᏛ, ᎠᎴ ᎤᏂᎩᏍᏗᏱ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ. ᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎥᏝ ᎪᎱᏍᏗ ᏯᎩᏖᎸᎲᏍᎦ, ᎠᎴ ᎾᏍᏉ ᎬᏅ ᎥᏝ ᎤᏣᏘ ᏯᎩᎸᏉᏗ, ᎢᏳᏃ ᎤᎵᎮᎵᏍᏗ ᏯᏆᏓᏅᏔ ᏯᎩᏍᏆᏛ ᎦᎴᏂᏙᎲᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎠᎩᏁᎸᎯ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎬᏂᎨᏒ ᏂᎬᏁᎲ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎧᏃᎮᏍᎩ. ᎰᏩᏃ ᎾᏍᎩ ᎾᏆᏛᏁᎸᎩ ᏥᎷᏏᎵᎻ; ᎠᎴ ᎤᏂᏣᏛᎩ ᎤᎾᏓᏅᏘ ᏕᏥᏍᏚᏅᎩ ᏗᏓᏍᏚᏗᏱ, ᎬᎩᏁᏤᎸᎯ ᎨᏒᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ; ᏕᎨᏥᎷᎦᏃ ᏥᏁᎬᎩ ᎦᏥᏯᏡᏗᏍᎬᎢ. ᏂᎦᏛᏃ ᎤᏂᎾᏰᏎᎢ; ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎠᏥᎸᏉᏗ ᎠᏙᎴᎰᏍᎩ ᎦᎾᏄᎪᎩ ᎢᏕᎲᎢ; ᎠᎴ ᎯᎠ; ᎤᏁᎳᏅᎯ ᏓᏩᏛᎯᎦ ᏧᏤᎵ ᏴᏫ. ᎾᏍᎩᏰᏃ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎨᏒ ᎠᏂᏯᏙᎯᎲᎢ, ᎠᏂᏩᏛᏗᎭ ᎣᏍᏛ ᎨᎦᏓᏅᏖᏗᏱ, ᎠᎴ ᎤᏣᏘ ᏄᎾᏰᎯᏍᏛᎾ ᎠᏓᏅᏓᏗᏍᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ. ᎥᏍᏈᏯ ᎾᏆᎵᏍᏔᏁᎸ ᏐᏊ ᎢᏳᏩᎦᏘ. ᎧᏁᎬᏃ ᎥᏝ ᏰᎵ ᎦᎬᏩᏂᎪᏁᎶᎯᏎᏗ ᏱᎨᏎ ᏴᏫ ᎠᏂᎦᏔᎲᎢ; ᎤᏂᏍᏆᏂᎪᏎᏃ ᏄᏪᏒ ᎤᏁᏨᎢ, ᎠᎴ ᎡᎳᏪᏱ ᎤᏅᏁᎢ. ᎤᏓᏅᎣᏃ ᎤᎷᏥᏌᏁᎴᎢ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎤᏗᏛᎮᎢ; ᎤᏁᏤᏃ ᎤᎵᏍᏓᏴᏗ ᎤᏂᏁᏗᏱ. ᏙᏴᏛᏃ ᏚᏪᏍᏔᏁᎮ ᏧᎳᏏᏕᎾ ᏩᎭᏯ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎠᏫᏍᎬᎢ, ᎾᏍᎩ ᎢᎦᏛ ᏅᏃ ᎱᎶᏗ ᎤᎳᎨᏯᏛᏤᎢ, ᏥᏍᏆᏃ ᎠᎸᎶᎢ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᎷᏤ ᎠᎴ ᎤᏂᎪᏁᎢ. ᎠᎩᎷᏤᎸ ᎤᎴᏂᎸᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏗᎾᏓᏅᏟ ᏐᎳ, ᏥᎯᎪᏩᏛ. ᎾᎯᏳᏉᏃ ᏙᏥᏯᎦᎿᏅᎩ. ”ᏫᎵᎻ ᎤᎾᎵ. ᏥᏌᎤᏁᏨᎩ; ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎩᎶ ᎠᎹ ᎠᎴ ᎠᏓᏅᏙ ᎬᏩᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᎥᏝ ᏴᎬᏴᎭ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏁᏅᏎ ᎠᎴ ᏗᎦᏚᎲ ᏭᏂᏩᏛᎮ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸᎢ; ᎤᎾᏛᏅᎢᏍᏔᏁᏃ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ. ᎦᏌᏆᎸ ᎤᏬᏗᎨ ᎠᎨᏯ, ᎦᏙᏗ ᎢᏳᏍᏗ ᏴᏫ ᎤᏍᏚᎩᏒ ᎠᏍᏚᏗ. ᏭᏂᏍᏆᏓᏃ ᎤᎳᏍᏛᏟᏁ ᏩᎭᏯ. ᏫᎵᎻ ᎦᏅᎬ ᎤᎵᏗᏨ ᏚᏟᏂᏆᏅᏁ ᎡᎳᏆᏗ, ᎠᏍᎪᎵᏰᏍᎨ ᏃᎴ ᎤᏨᏉᏗ ᎠᏛᏁᎵᏍᎨ. ᏍᏈᏍᏓ ᏴᏫ ᎫᏩᏩᏛᎯᏙᎴ ᎾᎯᏳ ᎢᎦ ᏒᎮᏱᏣ, ᏃᎴ ᎠᎴᏂᏙᎮ ᎤᏣᏓ ᎣᏍᏓ ᏗᎧᏃᏗ ᎮᎵᏍᎬ. ᎢᏥᏯᏫᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏓᎪᎵᏰᏗᏱ ᎨᏒ ᏫᏥᎾᏄᎪᎢᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎠᏓᏅᏙ ᎤᏙᎯᏳᎯ ᎤᏛᏅᎢᏍᏗ, ᎤᏇᏓᎸᏍᎩᏂ ᏩᎾᎦᎳᎯᏳ. ᎤᏲᎢᏴ ᎢᎦᏪᏍᏗ, ᎤᏙᎯᏳ ᎧᏃᎮᏍᎬ ᎠᎵᏏᏕᏅ ᎦᏂᏏᏅᏒ ᏰᎵ ᎢᎦ. ᏤᏍᏗ ᏎᎾ ᏯᏓᏬᏍᎨᏍᏗ ᎤᏍᏗ ᎠᏣᏗ; ᎨᏍᏗ ᎣᏍᏓ ᏱᏨᎪᏩᏘ ᏣᏍᏗᎩ. ᏴᏨᏯᏤᏍᏛᏓ. “ᎭᏂᏉ ᎢᎨᏅᏒ ᎢᏕᏙᎮᏍᏗ ᎡᏝᏪᎯ-ᏝᏪᎯ-ᏝᏪᎯ. ᏧᎾᎵᏗᎩᏓᎾ ᎤᎾᏗᏍᎦᏟ ᏚᏅᏓᏒ? ᏫᎵᎻ ᎠᏍᎪᎵ ᎾᎥᏂ ᏚᏟᏂᏆᏁ ᎡᎳᏆᏗ, ᎠᏍᎪᎵᏰᏍᎨ. ᎠᎴ ᎥᏝ ᏱᎬᎩᏩᏛᎮ ᎩᎶ ᏲᏍᏓᏗᏒᎯᎮ ᎣᏍᏗᏬᏂᏍᎬᎢ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎥᏝ ᏱᏗᏥᏖᎸᎲᏍᎨ ᏚᎾᏓᏅᏛ ᏴᏫ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎨᏌᏗᏒᎢ ᎠᎴ ᎢᎸᎯᏢ ᎦᏚᎲᎢ. ᎠᏴ ᏃᏊ ᏦᎢ ᎢᏲᏦᎢ ᎣᏥᏍᏓᏩᏛᏒ ᎠᎴ ᎢᎸᏢ ᎩᏄᏛᏗ ᎢᏳᏟᎶᏓ ᎢᏳᏓᏅᎯᏓ ᎤᏂᎩᏒ ᎪᎱᏍᏗ ᏣᎨᎯᏐ ᎢᏳᏍᏗ ᎤᏔᎾ ᏧᏍᎦ ᏡᎬ ᎤᏕᏲᎸ ᎠᎴ ᎦᎸᎳᏗ ᎢᏗᏜ ᏫᏓᏑᏫᏍᎪ. ᎢᎬᏱᏱᏰᏃ ᎨᏒ ᏕᏥᎳᏫᎩ ᎢᏣᏓᏡᎬ ᎢᎸᏍᎩ ᏂᏣᏓᏗᏍᎬ ᎦᏛᎩᎭ; ᎠᎴ ᎪᎢᏳᎲᏍᎦᏉ ᎢᎦᏛ. ”ᎤᏍᏓᎦᏴᎯᏓ ᎭᏗ.” ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏍᏉ, ᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎠᎯᏗᎨ ᎤᏂᏟᏅᏤ, ᏌᎳᏓ ᎤᏩᏌ. ᏂᎦᏓ ᏩᏂᏙᎾᎡ ᏏᏆ ᎠᏍᏚᏗ, ᎤᎾᎦᏙᏍᏕᎢ ᏓᏏᎳᏛ ᏃᎴ ᎤᏩᎦᏘᎶᏓ ᎾᏂᏪᏍᎨ ᎪᏪᎸ, ᎾᎥ ᎦᏙᎨ ᏫᎵᎻ, ᎤᏣᏓ ᎣᏍᏓ ᎤᏓᏅᏖ, ᎡᏆ ᎤᏤᎸᎯ ᎠᎧᏖᏃᎮ. ᎯᎸᏍᎩᏃ ᏫᏄᏒᏢ, ᎤᏍᏗᏃ ᎠᏧᏣ ᎤᏩᏛᎮᎢ ᎢᏈᎬᎢ ᎤᏲ ᎤᏓᏅᏖ ᎠᎴ ᏚᏩᏅᎦᏢ ᏚᏁᏃᏛᎢ. ”ᎩᎶ ᏣᏆᏟᏃᎮᏗᏍᎬ ᎤᏒᎯ ᎦᏢᏗ ᎤᏍᏆᎸᎲ, ᎬᏂᎨᏒ ᏫᎾᏛᎦ!” ᎠᎴ ᎢᎩᎬᏫᏳᎯ ᎠᎴ ᎠᏥᎸ-ᎢᏕᎶᎯ ᎢᎬᏁᎸᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏙᏓ ᏧᏤᎵᎦ; ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎠᎪᏎᎮᏍᏗ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ. ᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏂᏣᏘ ᏗᎧᎸᎬ ᎠᎴ ᏭᏕᎵᎬ ᎢᏗᏢ ᏗᏂᎶᏍᎨᏍᏗ, ᎠᎴ ᎢᏧᎳᎭ ᎠᎾᏅᎥᏍᎨᏍᏗ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ, ᎦᎸᎳᏗ ᎡᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ”ᎧᏁᎢᏍᏗ ᎯᏍᎩᏲᎮᎸ!” ᏭᏬᏎᎵᎡ ᏌᎳᏓ. ᎣᏍᏛᏍᎩᏂ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏓᎾᏣᏅᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎠᏂᎨᏴ ᏧᏂᎵᎶᎲᏍᎦ. ᎢᏳᏉ ᎠᏆᏕᎶᎰᏒ ᎤᏂᏣᏘ ᎬᏂᎨᏒ ᏂᏚᏅᏅ ᏧᎾᏥᎶᏍᏔᏅ ᏗᏂᎳᏫᎩ ᏚᏂᏍᏆᏚᎸ, ᎭᎾᎾ ᏗᏦᎯᏍᏗ ᎠᎾᏔ ᏃᎴ ᎠᎾᏘᎨ ᎠᏂᎨᏯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏚᎩ ᎠᏋᎭ ᎾᏍᎩ ᏥᏅᏍᏗᏱ ᎢᎬᏪᏅᏛ ᎦᏙᎴᎣᏒᏉ ᎢᏯᏉᎵᏍᏓᏁᏗ ᎨᏒᎢ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᏣᏍᏆᏗᏍᏗᏱ ᏣᏚᎵᏍᎨᏍᏗ, ᎮᎾ, ᏫᎾᏚᎦ ᏣᎿᎥᎢ, ᎠᎴ ᏘᎲᏏ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎦᎸᎳᏗᏃ ᏫᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᎠᎴ ᏖᏒ ᏍᎩᏍᏓᏩᏕᏒᎭ. ᎥᏝ ᎢᏨᏲᏎᎭ; ᏂᎯᏍᎩᏂ ᏂᏗᏥᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ, ᏂᎦᏛ ᎾᏍᎩᏯ ᏓᏩᏗᏒᏂ. ᎧᏂᎩᏛ ᎦᏣᏃᏍᏓ ᎢᏰᏆ ᎡᎳᏗ ᎢᎦᏘ ᎠᏍᎦᏯ ᎤᏢᏗ, ᎦᏓᏁ ᎤᏍᏗ ᏅᏯ ᎦᎳᎨᏴ ᎠᎫᏬᏰᏅ ᎢᏯᏖᏅ ᎠᎹᏳᎸᏓ ᎾᎥᏂ. ᎣᏍᏓ ᎤᎧᏙᏍᏔᏁᎢ ᏫᎵᎻ ᎡᎶᏗ, ᎤᏙᎯᏳᎯ, ᎣᏍᏓ ᏏᏆ, ”ᎤᏍᏆᏂᎩᏗ ᏏᏆ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎥᏝᏰᏃ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᎠᎩᏁᏨᎯ ᏱᎩ, ᎠᎦᏴᎵᎨᎢᏍᎩᏂ ᏅᏛᎩᏅᏏᏛ, ᎾᏍᎩ ᎠᎩᏁᏨᎸ ᎢᏯᎩᏪᏍᏗᏱ ᎠᎩᏬᏂᎯᏍᏗᏱ. ”ᏓᏓᎾᏁᎶᏂᎨ?” ᎤᏛᏛᏁ. “ᎡᏝᏪ ᎨᏎᏍᏗ, ᏫᎵᎻ. ᎠᏎᏃ ᎢᏥᎦᏔᎭ ᎠᏩᎾᎦᎳᎯᏳ ᎨᏒ ᎠᎩᏇᏓᎸᎢ ᎢᏨᏯᎵᏥᏙᏁᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎬᏱᏱ; ᎩᎳᏈᏴ ᎦᏣᏃᏍᏓ ᎤᏩᏁ ᏫᎵᎻ. “ᎤᏙᎯᏳᎭᏧ?” ᎤᏛᏛᏁ ᏥᏍᏕᏥ, ᎤᎾᏰᎯᏍᏗ ᎤᎦᏙᏍᏕᎢ ᎦᏅᏙᏗ. ᎠᏂᏃᏔᏅᎲᏍᎩᏃ ᎡᎶᎯ ᎠᏁᎯ ᏙᏛᎾᏠᏱᎵ ᎠᎴ ᏙᏛᏂᏴᎳᏏ ᏓᎬᏩᏍᎪᏂᎵ ᎾᏍᎩ; ᎥᏝᏰᏃ ᎿᏉ ᎩᎶ ᏱᎬᏩᏂᏩᎯᏎᎭ ᎦᏃᏙᏗ; ᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᎤᏂᏲᎴ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ; ᎬᏩᎾᏰᏍᎨᏰᏃ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏍᎬ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ. “ᎤᏍᏆᏂᎩᏗ. “ᎢᎪᎯᏓ ᎦᏓᏅᏖᏍᎪᎢ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎤᏂᏥ ᎦᎳᎩᏍᎨ ᎦᎴᏂ. ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᏚᎾᎴᏅᎩ, ᎠᎴ ᎠᏰᎵᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏂᎳᏫᏨᎩ ᎠᎾᏡᏗᏍᎬ ᎤᎬᏫᏳᎯ ᎠᎴ ᎠᎾᏡᏗᏍᎬ ᎤᏤᎵ ᎦᎶᏁᏛ. ᎤᏁᎳᏅᎯᏰᏃ ᏚᎳᏁᎸ ᎫᏂᎾᏫᏱ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎤᏂᏍᏆᏗᏍᏗᏱ, ᎠᎴ ᏌᏉᎢᏳᏅᏁᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏧᏂᏲᎯᏎᏗᏱ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᎿ ᎤᏂᎬᏫᏳᎯ ᎨᏒᎢ, ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᏁᏨ ᎾᏍᎩ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏎᏍᏗ. ᎢᏳ ᎠᎴ ᎠᎦᎴᏂ ᎯᎠ ᏱᏄᏪᏒ, ᎠᏴ ᎠᎦᏔ ᏂᎨᏒᎾ ᏥᎩ ᎥᏝ ᎠᏰᎸ ᏯᏆᏘᏝ; ᎾᏍᎩᏍᎪ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᎠᏰᎸ ᏳᏘᏝ? ᎦᏕᎶᎣᏍᎦ ᎪᎱᏍᏗ ᎤᏲ ᏱᏣᎵᏍᏔᏁᎳ ᎠᏎ ᎠᏯ ᏍᎩᎷᏤᎰᎢ. ᎡᎶᏛᏃ ᎤᎬᏫᏳᎯ ᎤᏛᎦᏅ ᎾᏍᎩ, ᎤᏪᎵᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ, ᎠᎴ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ. ᎠᏏᏉ ᏓᏂᎳᏫᎥ ᎠᏂᏆᎵᏏ, ᏥᏌᏚᏛᏛᏅᎩ, Ross ᎤᏓᏅᏖᏗᏍᎬ, ᏂᏛᏓᎴᏂᏍᎬ ᎠᎦᏛ ᏥᏬᏂᏍᎬ ᏣᎳᎩ, ᎨᏍᏗ ᏙᏰ ᏂᎦᎵᏍᏗᏍᎬ ᎫᏩᏁᎢᏍᏙᏗ ᏱᎨᏎ, ᎦᏲᏟᏉ ᎪᎵᎬ ᏧᏤᎵ ᎠᏂᏴᏫ ᎠᏂᏬᏂᏍᎬ. ᏂᎯᏃ ᎢᎸᎯᏳ ᏁᏣᏓᎴᏉ ᏥᎨᏎᎢ, ᎠᎴ ᎡᏥᏍᎦᎩ ᏥᎨᏎ ᏙᏗᏣᏓᏅᏛᎢ ᎾᏍᎩ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ ᎠᏎᏃ ᎪᎯ ᎿᏉ ᎢᏦᎯᏍᏓᏁᎸ, “ᎠᏯᎨ ᎪᎱᏍᏗ ᏂᏍᏋᏁᎭ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎾᏍᏉ ᎢᏣᏛᏅᎢᏍᏕᏍᏗ; ᏴᏫᏰᏃ ᎤᏪᏥ ᏓᎦᎷᏥ ᎢᏳᏉ ᎠᎵᏰᎢᎵᏒ ᏂᏤᎵᏍᎬᎾ ᎨᏒᎢ. ᏂᎯᏃ ᏗᏥᏲᎱᏒᎯ ᏂᎨᏒ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸ ᎢᏣᏚᏓᎸᎢ ᎠᎴ ᏂᏕᏥᎤᏍᏕᏎᎸᎾ ᎨᏒ ᎢᏥᏇᏓᎸᎢ, ᏗᏨᏃᏛ ᏂᏨᏁᎸ ᎾᏍᎩ ᎬᏃᏛ ᎾᎬᏁᎸᎢ, ᎦᏰᏥᏁᎸ ᏂᎦᏗᏳ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏗᎻᏟᏯ ᎠᎴ ᎾᏍᎩ ᏣᏁᎭ ᎠᏃᏢᏅᎥᏍᎩ ᎠᏄᎯᏍᏗᏍᎨᏍᏗ ᎩᎶᎢ, ᎤᏜᏅᏛ ᏗᏓᏱᎵᏓᏍᏗᏱ, ᎠᎴ ᎨᏥᎦᏘᏗᏍᏗ ᎠᏁᎭ; ᏫᏓᎾᏓᏱᎵᏓ. ᎠᎬᎭᎸᏛᏃ ᎠᏥᏁᎸ ᏎᏓᏂ ᎤᏴᏎᎸᎩ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏍᎩ ᎢᏣᏛᏁᏗ ᎨᏒ ᏄᎳᏉ ᎿᏛᎦ. ᎠᏍᎪᎯᏧᏈᏃ ᏗᏘᏂᏙᎯ, ᎾᏍᎩ ᎤᏛᎦᏅ, ᏭᏃᏁᎸᎩ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ, ᎯᎠ ᏫᏄᏪᏒᎩ; ᎮᏯᏔᎮᏍᏗ ᎯᎠ ᏥᏅᏔᏛᏁᎵ; ᎯᎠᏰᏃ ᎠᏍᎦᏯ ᎠᎶᎻ. ᎢᏥᏁᎬᎢ ᎠᎴ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᏄᏍᏛ ᎤᏂᏁᎢᏍᏗ ᎨᏒ ᎠᎴ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᏗᎨᎫᎪᏓᏁᏗ ᏥᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎬᏓᎧᎲᏍᎩ ᎨᎬᏓᏁᏗ ᏥᎩ. ᎠᏓᏫᏰᏃ ᎢᎬᏱ ᎠᎪᏢᏁᎢ, ᎩᎳᏃ ᎢᏫ. ᎠᏎᏃ ᎠᏨᏉᏗᏍᎨ. ᎠᎴ ᎠᏂᎪᏩᏗᏍᎬ ᎤᏲ ᏄᏓᏑᏴᎾ ᎢᏣᎴᏂᏙᎲ ᎤᎵᏠᏯᏍᏛ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ. ᎠᏎᏃ ᏂᎦᏛ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏅᎩ ᎤᏙᎯᏳᏗᏱ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏃᏪᎳᏅᎯ. ᎿᏉᏃ ᏂᎦᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏕᏨᎩ ᎠᎴ ᎤᎾᎵᏒᎩ. ᏞᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏲᏍᏔᏂᎸ ᏱᏍᎩᏰᎵᏎᎮᏍᏗ; ᎥᏝᏍᎩᏂ ᏱᏓᎩᏲᏍᏔᏂᎸ, ᏓᎩᎧᎵᎵᎸᏍᎩᏂ. ᎤᏁᎳᏅᏗᏃ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ, ᎾᏍᎩ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏲᎱᏒ ᏔᎵᏁ ᏧᎴᏔᏅᎯ ᏥᎩ, ᎾᏍᎩ Ꮎ ᎠᏥᎸᏉᏗ ᎠᏫ-ᏗᎦᏘᏯ ᎢᏯᎬᏁᎸᎯ, ᎬᏔᏅᎯ ᎩᎬ, ᎠᏲᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎠᏍᏓᏱᏗᏍᎩ, “ᏃᏗ ᏥᏍᏆᏙᎾ,” ᎤᏛᏁ. ᎿᏉᏃ Ꭴ ᏂᏣᏘ ᎠᏁᏙᎲ ᎤᏂᎷᏨ, ᎤᎷᏤᎸᎩ ᎠᏍᎦᏯ ᏚᎵᏂᏆᏅᏁᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎩᎶ ᎧᏁᎬ ᎦᎸᎳᏗ ᏛᏓᎴᎲᏍᎬᎩ ᎯᎠ ᏅᏛᎩᏪᏎᎲᎩ, ᎰᏪᎸᎩ, [ᎯᎠ ᏅᎦ,] ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏧᏂᏲᎱᏒᎯ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏚᎾᏁᎶᏛ ᏗᏂᏲᎱᏍᎩ ᎪᎯ ᎢᏳᏓᎴᏅᏛ; ᎤᏙᎯᏳᎯ ᎠᏗᎭ ᎠᏓᏅᏙ ᎾᏍᎩ ᎬᏩᎾᏣᏪᏐᎸᏍᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ; ᎠᎴ ᏚᏂᎸᏫᏍᏓᏁᎸ ᏓᏳᏂᏍᏓᏩᏕᏏ. ”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ,” ᎤᎵᏰᏔᏁ. ᎣᏍᏓ ᎤᏰᎸᎮ ᏕᎬᏍᎬ ᏃᎴ ᎠᏍᎦᏯᏯ ᎨᏎᎢ. ᏗᏂᏍᎪᎵᏃ ᎪᏍᏚ ᏚᏂᏝᏅᎩ, ᎠᎴ ᎤᏁᎷᏅᎩ ᏓᎾᏠᏱᎲᎢ, ᎠᎴ ᏓᏂᏴᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎤᏲᏍᏛᏉ, ᎤᏲᏍᏛᏉ, ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲᎢ, ᎾᎿ ᏧᏁᎿᎢ ᏥᏄᎾᎵᏍᏔᏅᎩ ᏂᎦᏛ ᎠᎺᏉᎯ ᏥᏳ ᏗᏂᏂᏙᎯ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏣᏘ ᎤᏪᎿᎢᏳ ᎨᏒᎢ, ᏑᏟᎶᏛᏉᏰᏃ ᎢᎪᎯᏛ ᏅᏔ ᎾᎬᏁᎸ. ᏎᎦᎾᎨᏍᏗᏉ ᎤᏂᎸᏉᏗ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏧᏙᎢᏓ ᏧᏂᏒᏍᏗ ᏩᎩᎷᏨ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎯᏓ ᎬᏆᏁᎳᏗᏍᏗ ᏱᎨᏎ ᎭᎾᏂ, ᎦᎸᎳᏗ ᏧᎵᎬᏩᎶᏗ ᎨᏒ ᎭᎾᏂ. ᎠᎦᏗᏛ ᏚᏬᏪᎳᏅ ᏗᏘᏲᎯ ᎪᏪᎵ ᏫᏚᏅᏁᎴ ᏩᏏᏓᏂ ᎦᏚᎲ ᎠᏁᎯ ᏧᎵ ᎠᎵᏍᎦᏃᏍᎬᎢ ᎨᏍᏗ ᎫᏩᏂᎨᏳᏓᏁᏗ ᏱᎩ ᎤᏓᏅᏖᎵᏓᏍᏗ ᏃᎴ ᎠᎦᏗᏛ ᎠᏥᏚᎨ ᎠᏕᎳ, ᏧᏓᎴᏅᏓ ᏃᎴ ᎠᎵᏍᏔᏴᏗ ᏚᏩᎯᏎᎸ ᎠᏂᏴᏫᏯ, ᎤᏂᏄᎸᏅ ᏧᏂᏁᏗ ᎤᏂᏂᎬᎬ. ᎾᏂᎥᏰᏃ ᎩᎶ ᎤᏂᏍᎦᏅᏨᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏄᏂᎲᎾ ᎾᏍᏉ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏔᏅᎾ ᎤᏂᎩᎵᏲᎢᏍᏗ; ᎠᎴ ᎾᏂᎥ ᎩᎶ ᎤᏂᏍᎦᏅᏨᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏂᎯ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎨᎬᏓᏁᏗ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ Ꭰ ᎠᏰᎸ ᎨᏒᎢ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ; ᎾᏍᎩ ᏗᏓᎴᏅᏗᏍᎩ, ᏧᏓᎴᏅᏔᏅᎯ ᎤᏲᎱᏒ ᏧᎴᎯᏌᏅᎯ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏄᎾᏓᎴᏒ ᎢᎬᏱ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᎩ ᏯᏛᏛᎲᏍᎦ ᎪᎱᏍᏗ ᎦᎵᏓᏍᏔᏅᎢ ᏱᎩ. ᎥᏝ ᎠᎴ ᎿᏉ ᏰᎮᏍᏗ ᎤᏐᏅᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏤᎵ ᎦᏍᎩᎶ ᎾᎿ ᎦᏍᎩᎴᏍᏗ; ᏧᏤᎵᏃ ᏧᏅᏏᏓᏍᏗ ᎬᏩᏓᏙᎵᏍᏓᏁᎮᏍᏗ; ᎠᎹᏳᎸᏓ ᎾᎥ ᏂᎦᏓ ᎠᏣᏗ ᏃᎴ ᎠᎹ ᎤᏓᏑᏱ ᎠᎹ ᎢᏳᏍᏗ ᎠᏒᎬ. ᎠᏎ ᎢᎦᏉ ᎠᎾᏘᏲᎯᎲ ᎠᏂᏴᏫᏯ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎣᏍᏓ ᏱᏄᎾᎵᏍᏔᏁᎳ, ᏣᏍᏉ ᎤᏂᎾᎦ, ᏃᎴ ᎨᎵᏍᎬ ᏲᎾ ᏧᏤᎵ ᎠᏂᏬᏗᎨ ᎠᏂᏴᏫ ᎪᎰᏍᏗ ᎣᏍᏓ ᏱᏂᏚᏓᎵᏍᏔᏁᎵ. ᎤᏐᏱ ᎠᏂᏃᎮᏍᎬ ᎾᏍᎩᏯ ᎢᎦ ᎨᏥᏰᎵᏒ, ᏚᏯᏪᏤ ᏁᏂᏏ, ᎣᎭᏁ ᏓᏍᏔᏩᏗᏎ, ᏐᏉ ᎠᏧᏣ ᎠᏲᏍᎩ ᎤᏩᏌᏙᎭᏰ ᎦᎶᏇ ᎬᏘ ᎠᎴ ᎪᏍᏔᏱ ᏂᎬᏅ ᎦᎶᏇ. ᎢᏧᎳᏰᏃ ᎾᏍᎩ Ꮎ ᏗᎦᏅᎦᎵᏍᎩ ᎨᏒ ᎠᎴ ᎾᏍᎩ ᎨᏥᏅᎦᎵᏍᎩ ᎨᏒ ᎤᏂᏠᏱᏉ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏳᏰᎸᎭ ᎣᏣᎵᏅᏟ ᏧᏬᏎᏗᏱ; ᎠᏰᎸᏰᏃ ᏧᏓᎴᏅᎯ ᏗᏯᏠ ᎠᎴ ᏗᏞᏌᏙ ᏓᏂᏃᎮᎲᎩ ᏧᏂᏢᎩ, ᎥᏳᎩᏃ ᎠᎵᏛᏗᏍᎬᎩ, ᎤᏂᏲᏃ ᏗᏓᏅᏙ ᎬᏩᏂᏄᎪᎬᎩ. ᎠᎴ ᎾᏍᎩ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎤᏏᏙᎵ ᏙᎴᏛ ᏧᏄᏪᏍᏗᏱ, ᏗᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎴ ᏧᏁᎬ; ᎤᏏᏙᎵᏰᏃ ᏙᎴᏛ ᏚᏳᎪᏛ ᏄᎾᏛᏁᎵᏙᎸ ᎤᎾᏓᏅᏘ ᎦᏛᎦ. ᎤᏂᎪᎲᏃ ᎤᏂᏃᎮᎵᏙᎴ ᏄᏍᏛ ᎨᏥᏃᎮᎮᎸ ᎾᏍᎩ ᎠᏲᎵ ᎠᏥᏁᎢᏍᏗᏍᎬᎢ. ᎩᎶᏃ ᎤᏩᏒᏉ ᏚᏓᏘᎿᎥ ᎬᏩᏍᎦᎩ ᎨᏎᏍᏗ. ᏧᏴᏨ ᎢᏣ ᏓᏳᏓᎴᏅ ᎦᏃᎸᎥᏍᎬ ᏃᎴ ᎠᎬᏱ ᎤᎭᏲᎸ ᎤᏂᏥ. ᏧᎦᏌᏬᎸ ᏚᏓᏁᏁᎢ ᏗᎦᏙᎵ ᏲᎾ ᎤᏤᏍᏙ. ᏗᏂᎴᏂᏃ ᏓᏂᎦᏔᎲᏍᎨᏍᏗ ᎠᎾᏛᎩᏍᎬ ᏚᏳᎪᏛᎢ, ᎠᏎᏉᏃ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎢᏗᏢ ᏩᎾᎦᏔᎲᏍᏗᏍᎨᏍᏗ. ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏣᏤᎵᎦ ᏖᏅᎦᎸᏓ; ᎧᏃᎮᏛ ᏣᏤᎵᎦ ᎾᏍᎩ ᎦᏰᎪᎩ ᎦᏰᎪᎩ ᏂᎨᏒᎾ. ᎠᎴ ᎥᏝ ᎾᏍᎩᏯ ᎠᏏᏴᏫᏉ ᎤᏍᎦᏅᏨᎯ ᎢᏳᏩᏂᏌᏛ [ᏗᎨᎫᎪᏓᏁᏗ ᏥᏄᎵᏍᏔᏁ] ᎾᏍᎩᏯ ᏱᏄᏍᏗ ᎤᏓᏁᏗ ᎨᏒᎢ; ᎠᏍᎦᏅᏨᏰᏃ ᏗᎫᎪᏙᏗ ᎨᏒ ᏌᏉᏉ ᎢᏯᏍᎦᏅᏨᎯ ᏅᏓᏳᏓᎴᏅᎯ; ᎬᏩᎦᏘᏯᏍᎩᏂ ᎤᏓᏁᏗ ᎨᏒ ᎤᏣᏘ ᎢᏯᏍᎦᏅᏨᎯ ᎠᏚᏓᎴᏍᏙᏗ ᎤᎬᏩᎳ. ᎠᎴ ᎾᎯᏳ ᎢᏳᏓᎴᏅᏛ ᎤᏂᏣᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏨᏒᎩ, ᎠᎴ ᎥᏝ ᎿᏉ ᎢᎸᎯᏳ ᏳᏁᏙᎴᎢ. ᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎨᏒᎩ ᎤᎾᏁᎳᎩ ᎤᏅᏒ ᏚᏂᏅᏅ ᏩᏂᎶᎯ ᏚᏪᎵᏎᎴ ᏂᎦᏛ ᏄᎾᏓᎴᏒ ᏴᏫ; ᏗᏓᏍᏚᏗᏱᏃ ᎠᎦᏘᏯ, ᎤᏰᏨ ᎠᎴ ᎤᏙᎴᎰᏒ ᎦᎶᎯᏍᏗᏱ ᏗᏓᏍᏚᏗᏱ ᏧᎵᏍᏚᎢᏛ ᎨᏒᎢ, ᎤᎸᎮ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ, ᎠᎴ ᎤᏩᏒ ᏗᏓᎵᏎᎢ, ᏗᎨᏥᏍᏚᎯ ᎤᎾᎵᏒ ᎡᎵᏍᎨᎢ. ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᎬᏫᏳᎯ ᏚᎴᏅ ᎤᏙᎯᏳᎯ, ᎠᎴ ᏌᏩᏂ ᎬᏂᎨᏒ ᏄᏛᏁᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎣᎦᏚᎵᏍᎬᎩ ᏫᏨᎷᏤᏗᏱ, ᎠᎴ ᎠᏴ, ᏉᎳ, Ꮀ ᎤᎬᏫᏳᏒᎩ, ᏌᏉ ᎠᎴ ᏔᎵᏁ ᎠᏆᏚᎸᎲᎩ; ᎠᏎᏃ ᏎᏓᏂ ᎣᎩᏲᏍᏙᏓᏁᎲᎩ. ᏂᎯ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ ᏣᏗᎭ, ᏥᎪ ᎢᎭᏓᏲᏂᏆᏘᎭ, ᏥᎪ ᏂᎯ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎯᏐᏢᏗᎭ? ᎠᎾᎵᏃᎮᏍᎬᏃ ᎠᏂᏃᎮᏍᎨ ᏂᎦᏛ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᏣᎦᏎᏍᏕᏍᏗ ᏓᏥᏇᏅᏂ ᏛᎦ.” ᎦᏚᏃ ᎤᎩᏎᎢ, ᎠᎴ ᎤᎵᎮᏟᏨ, ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᏚᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ, ᎾᏍᎩ ᏂᎯ ᎡᏣᎫᏴᏔᏅᎯ ᏥᎩ, ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ. ᎤᏂᏃᏕᎾ ᏍᏉ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎾᎥᏂ ᎠᏁᏙᎮ ᎤᎾᎵᏍᎦᏍᏛᎢ. ᎠᏴᏰᏃ ᎯᎠ ᎠᏂ ᎦᎵᏦᏛ ᏦᏥᏯᎠ ᎣᎩᎵᏰᏗᎭ, ᏂᎦᎵᏍᏙᏗᎭ ᎦᎨᏛ ᏃᎦᏛᎿᏕᎬᎢ; ᎥᏝ ᏦᎩᏄᏪᏍᏗᏱ ᎣᎦᏚᎵᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ; ᏦᎩᏄᏬᏍᏗᏱᏍᎩᏂ; ᎾᏍᎩ ᎠᏲᎱᏍᎩ ᎨᏒ ᎠᏥᎩᏍᏗᏱ ᎬᏂᏛ ᎤᎩᏐᎲᏍᏗᏱ. ᏏᏍᏉᏯᏃ ᏚᏓᏲᏎ ᏕᎪᏪᎵᏍᎨ ᏗᎧᏁᎢᏍᏗ ᎤᏍᏈᏯᏃ ᎨᏎ ᏗᎧᏁᎢᏍᏗ ᎠᎴ ᎤᏍᏈᏯ ᏗᏅᏓᏗᏍᏗ ᎨᏎᎢ. ᎤᏩᏌ ᎤᏬᏢ ᎠᏌᎻᏓ Moets ᎧᏃᎩᏍᏗᏍᎬ ᎠᏤᎷᎯᏍᏗ. ᏌᏉᎯᏳᏰᏃ ᎡᎮ ᎤᏪᏥ ᎠᎨᏳᏣ ᏔᎳᏚ ᎢᏴᏛ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎾᏍᎩ ᎠᏲᎱᏍᎨᎢ. ᎠᎢᏒᏃ ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏓᏡᏩᏍᏗᏕᎨᎢ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎾᏍᎩ ᏂᏗᎥ ᏤᎦᏬᎥᎯ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᏕᏓᏓᏲᎯᏎᎲᎢ, ᎾᏍᎩ ᎤᏲᎱᏒ ᎤᎬᏩᎵ ᏕᎦᏬᎥᎢ? ᏚᏅᏓᏒ ᏓᏳᏓᎴᏅ, ᎤᏓᏂᏴᏓ ᏴᏫᏯ ᎤᎬᏫᏳ ᎤᏛᎯᏍᏔᏅ. ”ᏙᏔᏛᏁᎵ?” ᎤᏛᏁ ᏫᎵᎻ. ᎤᏔᎷᎩᏍᎩ ᎤᏓᏅᏅ ᎦᏍᎩᎸ ᎾᏍᎩᏯ ᎡᎳᏆ ᎤᎶᏒ. “ᎠᏃᏍᏓ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏦᎢᏁ ᎢᎦ ᏕᎤᎴᏔᏅᎩ ᎠᎴ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ, ᎢᏳᏃ ᎩᎶ ᎦᏙᏃ ᎾᏍᎩ ᏂᏍᏓᏛᏁᎭ ᎢᏍᏙᏎᎸᎭ? ᎤᎬᏫᏳᎯ ᎤᏚᎵᎭ, ᎢᏍᏓᏛᏅᎭ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏙᏓᏳᏲᏏ ᎠᏂ ᎡᏍᏓᏘᏃᎯᏍᏗᏱ. ᏎᎦᏃ ᏗᎦᏅᎯᏛ ᏧᏆᎶᎦ ᎭᏂᏨ ᏩᎨᎯᏙᎲ ᎠᎦᏍᎬ, ᏃᎴ ᎩᎳᏈᏴ Ꮳ. ᎾᎦᏛ ᎢᏓᎵᏅᏟ ᏫᎨᏥᏲᎵᎭ. ᏕᏣᏓᏲᎵᏍᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏗᏓᏙᏪᏙᎥᏍᏗ ᎨᏒᎢ. “ᎭᏩᏃ, ᎤᏙᎯᏳ ᎤᏗᎴᎦ,” ᎤᏛᏁ ᎪᏱᏁᎢ, ᎠᏓᏃᏰᎮ ᎭᏫᏂ ᎦᏁᏍᏓᎳᏗᏍᏗᏍᎩ ᏗᎦᏃᏣᏝᏍᎩ ᎬᏗ. ᎢᎦᏓ ᏓᎾᏦᎭᏱᎮ, ᎢᎦᏓ ᎤᏬᏨᏗ ᎾᏅᏁᎭ ᏄᎾᎵᏍᏔᏁᎲ, ᏫᏥᎢᎦ ᎨᏒ ᎡᏝᏪᎯ ᎠᎾᏓᏅᏖᏍᎨ ᏄᏍᏛ ᏄᎾᎵᏍᏔᏁᎲ. ᏚᏓᏅᎡᎴᏃ ᏅᏯ ᏫᎬᏗᏅᏗ ᎢᏴᏛ ᎠᎴ ᏚᎵᏂᏆᏁ ᎤᏓᏙᎵᏍᏔᏁᎢ, ᎥᎥ, ᎤᏛᏁᎢ. ᎠᏓᏁᎸᏃ ᎤᎷᏨ ᏥᏌ ᎤᏲᏍᏙᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙ ᎮᎵᎭ, ᏌᏩᏂ; ᎦᎪ ᎠᏰᎵ ᎬᏩᎾᏓᏴᎡᎰ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ; ᏧᏁᏥᏍᎪ, ᏅᏩᎾᏓᎴᎨ? ᎠᏥᎸᏳᎵ ᎠᏆᏅ ᎠᎩᏃᎮᎸ ᎧᏃᎮᏗ ᏂᎦᏓ ᎦᏳᎸ ᎾᏂᎦᏔᎰ. ᏃᏗ ᏓᎪᏩᏘᏍᎨᎢ ᎤᏂᏃᏕᎾ ᏃᎴ ᎠᏂᏓ. “ᎠᏯᎨ ᏍᏉ ᏱᏕᏍᎬᏏ?” ᎤᏛᏛᏁ ᎡᎳᏆᏗ. ᎧᏃᎮᏛᏰᏃ ᏓᏠᎯᏍᏛ ᎠᏍᏓᏱᏳ ᎨᏐ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎠᎸᎯ ᏥᎨᏐᎢ; ᎥᏝ ᎠᎴ ᎠᏍᏓᏱᏛᎯ ᏱᎨᏐ ᎠᎵᏍᎪᎸᏙᏗ ᎠᏏᏉ ᏥᎬᏃᎢ. ᎠᎴ ᎾᏍᎩ ᎤᏁᏨᎢ ᎥᏝ ᏱᏥᏯᎠ, ᎾᏍᎩᏰᏃ Ꮎ ᏅᏓᏳᏅᏏᏛ ᎥᏝ ᏰᏦᎢᏳᎲᏍᎦ. ᎡᎳᏗ ᏄᏩᏁᎸ ᎠᏍᎪᎵ ᎨᎵ ᏃᎴ ᎤᏍᏘᏰᎬ ᎦᏓᎥ ᎤᎧᏛ ᎠᎬᏱᏣ ᎾᏍᎩᏯ ᎤᏔᎷᎩᏍᎩ ᏦᎳᏂ ᎠᏯᏙᎳᏛ ᏯᏍᏚᏅ. ᎤᎪᎮᏃ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏛ ᎨᏎᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎢᏳᏍᏗ ᎠᏖᎵᏙ ᎡᎳᏗ ᏅᏧᏍᏗᏗᏎ, ᎾᏍᎩᏯ ᎡᏆ ᎠᏄᏬ, ᏅᎩ ᏚᏅᏏᏴ ᏥᏕᎦᎸᎣᎢ, ᎾᏍᎩᏃ ᎡᎳᏗ ᎢᎬᏁᎸᎯ ᏥᎨᏐ ᎡᎶᎯ ᎢᏴᏛ. ᎤᏪᏅᏃ, ᏔᎳᏚ ᎢᏯᏂᏛ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏳᏃ ᎩᎶ ᎢᎬᏱ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎣᏂᏱ ᎠᎦᎴᏙᏗ ᎨᏎᏍᏗ ᎾᏂᎥᎢ, ᎠᎴ ᎾᏂᎥ ᎬᏩᏅᏏᏙᎯ ᎨᏎᏍᏗ. ᏂᎬᎾᏛ ᎬᏃᏓ, ᎾᏍᎩᏍᏉ ᎦᏄᎸ ᎤᏍᎬᏓᎨ ᏩᏥᎳ ᎤᏓᏅᎵᏰᎥ. ᏯᏲᏍᏔᎾ, ᎢᏤᎯ ᎤᎵᏑᏫᏓ ᏍᎪᏯ ᎠᏯᎣ ᎭᏫᏂ. ᎠᏎᏃ ᏐᎳ ᎧᏁᏉᎨᏉ ᎤᎵᏂᎪᏍᎬᎢ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᏚᎪᎾᏛᏔᏁ ᎠᏂᏧᏏ ᏕᎹᏍᎦ ᎠᏁᎯ, ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎾᏍᎩ ᎯᎠ ᎦᎶᏁᏛ ᎨᏒᎢ. ᎣᏍᏓ ᎠᏁᎮᎢ ᏩᎦ ᏃᎴ ᏐᏈᎵ ᏧᏂᏍᏆᏂᎪᏙᏗ - “ᎤᏒᎯ ᏃᎴ ᎢᎦ, ᎪᎳ ᏃᎴ ᎪᎩ, ᎪᎨᏱ ᏃᎴ ᎤᎵᎪᎲᏍᏗ, ᏧᏍᎪᎸ ᎢᎦ ᏃᎴ ᏧᏍᎪᏍᏓ ᎢᎦ. ᎠᏲᏟ ᎢᏳᏍᏗ ᏂᏪᎠ. ᎡᎳᏆᏗ ᎤᏃᎴ ᎠᏲᏙᏗ ᎤᏓᎡᎢ ᎦᎴᏂ ᏃᎴ ᎠᎩᏍᏙᏍᎨᎢ ᎨᏂᏗ ᎦᏅᎵᏰᏓ ᏑᎧᏔ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᎸᎯᏢ ᎯᎠ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎵᏥᏙᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎯᎠ ᎾᏍᎩ ᏥᎾᏛᎦ ᎾᏍᏉ ᎤᏂᏃᎮᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᎦᏅᏓᏗᏍᏙᏗ. ᏂᎦᏗ ᎠᏂᎧᏔᎮᎢ ᎤᎵᏍᎨᏓ ᏏᏆ ᎤᏂᎧᎲ ᎠᏂᎪᏕᏍᎩ. ᏥᏌᏃ ᎾᎿ ᎤᏓᏅᏒ, ᎠᏂᏔᎵ ᏗᏂᎨᏫ ᎠᏂᏍᎦᏯ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎤᏁᎷᎬᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᏍᎩᏂᏙᎵᎩ ᏂᎯ ᏕᏫ ᎤᏪᏥ. ᎠᎴ ᎬᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎤᏓᎵᏓᏍᏗ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎠᏁᎲ ᎾᏍᎩ ᎨᏥᏛᏙᏗ ᎨᏒᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᏚᎾᏓᏂᎸᏨᎾ ᎨᏒ ᏚᏳᎪᏛ ᎠᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎨᏥᏍᏕᎸᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᎴ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎢᏣᏄᏬᏍᏕᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎫᏓᏛᏍᎩ ᏥᎩ ᏂᎦᎷᎶᎬᎾ. ᏅᏯᏃ ᏚᏅᏂᏍᏔᏁ ᏍᏗᏫ ᎠᏓᏙᎵᏍᏗᏍᎨᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏣᎬᏫᏳᎯ, ᏥᏌ, ᏔᏓᏂᎸᎩ ᎠᏆᏓᏅᏙᎩ. ᏐᏉ ᎤᏩᏌ ᏥᎪᏩᏘ.” ᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎢᏨᏃᏁᎭ, ᎩᎶ ᎠᏂ ᏓᏂᏙᎦ ᎥᏝ ᏴᏛᎾᏙᎴᎰᏏ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᏂᎪᎲᎭ. ᎢᎸᎯᏢᏰᏃ ᎠᏂᏔᎵ ᎠᎴ ᎠᏂᏦᎢ ᏥᏓᏂᎳᏫᎣ ᎠᏴ ᏓᏆᏙᎥ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ, ᎾᎿ ᎠᏰᎵ ᎠᏆᏓᏑᏲᎢ. ᎿᏉᏃ ᏂᎦᏛ ᏴᏫ ᎤᎾᏛᏓᏍᏛ, ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏧᎾᎳᏏᏕᏂ ᏗᏯᏄᎵᏳ ᎩᎬ ᎤᎾᏓᏤᏪᏗᏱ. ᎠᏎᎩ ᎠᎦᏗ ᏗᎦᎷᏫᏍᏔᏁᏗ ᎡᎵᏍᎨ ᏗᏟᏃᎮᏙᏗ ᎠᎾᎵᏙᎩᏯᏍᎩ, ᏰᎵᏉ ᏥᏳᎪᏗ ᏱᏥᏃᎯᏎᎴ ᏍᎩᎾᎾ ᏯᏍᎦᎢ. ᎠᎴ ᎥᏝ ᎯᎠᏉ ᏗᎩᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏩᏒ ᎤᏁᎳᎩ ᏫᎬᏩᏲᏥᏓᏍᏗ ᏱᎩ; ᎾᏍᏉᏍᎩᏂ ᎠᏓᏁᎸ ᎦᎸᏉᏗᏳ ᎦᎸᎳᏗ ᎡᎯ ᏓᏰᏂ ᎤᏤᎵᎦ ᎠᏎᏉᏉ ᎢᎬᏩᎵᏍᏔᏂᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏒ ᏫᎬᏩᏲᏥᏓᏍᏗ, ᎾᏍᎩ ᏂᎦᏛ ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᏥᎬᏩᎸᏉᏗᎭ. ᎾᏍᎩ (ᎧᏃᎮᏍᎩ) ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏠᏱᏉ ᎤᎾᏤᎵ ᏂᎨᎬᏁᎲᎢ, ᎠᎴ ᎾᏍᎩᏉ ᎠᏰᎵ ᎠᏁᎯ ᎨᏒᎢ, ᎠᎴ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬ ᎤᏚᎢᏍᏔᏅ ᎤᏁᎳᏗᏍᏗᏍᎬᎢ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏔᏅᎯ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎦᏌᏯᏍᏕᏍᏗ ᏂᎦᎥ ᏚᏳᎪᏛ ᎢᏣᎴᏂᏓᏍᏗᏱ, ᏞᏍᏗ ᎤᏂᏁᎫ ᎢᏳᎾᏛᏁᏗ, ᎠᏂᎦᏔᎾᎢᏍᎩᏂ ᎢᏳᎾᏛᏁᏗ, ᎨᏍᏗ ᎬᎩᏢᏗ ᏱᎨᏎ, ᎪᎰᏍᏗ ᏴᏥᏅᏓ ᎨᎵᏍᎬ. ᎦᏳᎳᏰᏃ ᎤᏂᎪᎲᎯ ᎨᏒᎩ ᏠᏆᎹ ᎡᏈᏌ ᎡᎯ, ᎾᏍᎩ ᏉᎳ ᎠᏁᏙᎲ ᎦᏚᎲᎢ, ᎾᏍᎩ ᏉᎳ ᎤᏴᏔᏂᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎵᏍᎬᎩ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏃ ᎰᏍᏛ ᎢᏍᏉᏎᎭ ᎠᏴ? ᎥᏝ ᎩᎶ ᎣᏍᏛ ᏱᎩ, ᏌᏉ ᎤᏩᏒᎯᏳ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ. ᎡᎳᏆᏗ ᎦᏳᎳ ᏄᏑᎸᎮ, ᎦᎸᎳᏗ ᏪᏙᎮ ᏭᏲᎮᎢ ᏗᏓᎾᎩᏍᎩ. ᎤᏙᎯᏳᏃ ᏱᎾᏛᎦ ᎠᏇᎵᏒᏱ. ”ᏤᏍᏗ ᏄᏓᎴ ᎩᎶ ᎯᏃᎯᏎᎸ,” ᎤᏛᏁ ᎠᎵᏥᏙᎲᏍᎩ. ᎠᏎᏃ ᏉᎳ ᎤᏁᏨ ᎠᏥᎦᏘᏗᏍᏗᏱ, ᎠᎴ ᎣᎦᏍᏓ ᏧᏭᎪᏓᏁᏗᏱ, ᎠᎩᏁᏨᎩ ᎠᏥᎦᏘᏗᏍᏗᏱ, ᎬᏂ ᎬᏆᏓᏅᏍᏗ ᏱᏄᎵᏍᏔᏅ, ᏏᏐᎢ. ᎿᏉᏃ ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎷᏨᎩ ᎨᏏᎻᏂ ᏚᏙᎥᎢ, ᎯᎠᏃ ᏂᏚᏪᏎᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎠᏂ ᎢᏥᏁᏍᏗ ᎬᏂ ᎢᏢ ᏫᎦᏓᏙᎵᏍᏔᏅᎭ. ᏫᎵᎻ, ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᎠᎩᏌ ᏃᎴ ᏌᏌ ᎠᏨᏯᎢ ᏃᎴ ᏌᏌ ᎠᏂᏓ ᏃᎴ ᏌᎳᏓ ᏃᎴ ᎠᏯ.” ᎤᎭᎶᎨᎢ ᏥᏍᏕᏥ. ᎾᎯᏳᏉᏃ ᎧᎳᏩᏗᏒ ᎤᏣᏘ ᎤᎵᏖᎸᏅᎩ ᎦᏙᎯ, ᎠᏍᎪᎯᏃ ᎢᎦᏛᎯ ᎨᏒ ᎦᏚᎲ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎤᏲᏨᎩ, ᎦᏙᎯᏃ ᎠᎵᏖᎸᎲᏍᎬ ᎢᏳᎢ ᎦᎸᏉᎩ ᎢᏯᎦᏴᎵ ᏴᏫ ᏙᎨᏥᎸᎩ; ᎤᎾᎵᏃᎯᏴᎯᏃ ᎤᏂᏍᎦᎸᎩ, ᎠᎴ ᎦᎸᎳᏗ ᎡᎯ ᎤᏁᎳᏅᎯ ᎤᏂᎸᏉᏔᏅᎩ. ᎠᎪᎾ ᏧᏂᏲᏏᏍᎩ ᏃᎴ ᎧᏂᎩᏓ ᎤᎾᎵᏍᏕᎸᏙᏗ, ᎤᎦᏨᏅ ᎪᏥᏓ ᏒᏕᎾ ᎠᏎᏃ ᎧᏂᎩᏛ ᎦᎾ, ᎦᏟᏣᏗ ᎠᏎᏃ ᏦᎢᏉ ᏗᎦᏟᏓ, ᎠᏚᏇᏍᏗ, ᎠᎫᏬᏰᏂ ᎦᎵ ᏗᏲᏍᏙᏗ ᎤᏍᏆᏓ ᎠᏓ ᏗᎪᏒᏔᏅ. ᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᏓᏐᏴ ᏤᎵᎪ ᏚᏪᏒᏙᎠᏎᎢ, ᎿᏉ ᎦᎵᏉᎩ ᏧᏒᎯᏛ ᏂᏚᎾᏚᏫᏍᏔᏁᎢ. “ᎡᎳᏆᏗ, ᎩᎳᏈᏴ ᎯᏅᎪᎢ ᎧᏁᏌᎢ!” ᏧᏍᎦᏤᎢ ᎤᏥ. ᎨᏍᏗ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎸ ᏱᎩ.” ᎦᎸᎳᏗ, ᎡᎳᏗ, ᎾᎥᏂ, ᎾᎨ ᎢᏴ. ᎾᏍᎩ ᎢᏥᎪᎵᏰᎥᎭ ᏓᏦᎵᏍᏙᏔᏂ ᎪᎵᎬ ᎤᏕᎵᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; “ᎭᏩ, ᎯᏥᏲᎯᏍᏓ!” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ. ᎢᏧᎳᎭᏃ ᎠᏁᎵᏍᎨ ᎯᎸᎢᏴ ᎡᏆ ᏍᎦᏚᎩ ᏂᏗᎦᎵᏍᏔᏂ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎠᏤ ᏃᏈᏏ ᏛᏂᏯᎸᏂ ᎦᏓᏘ. ᏥᏌᏃ ᎤᏁᏤ ᎠᎴ ᎯᎠ ᏁᏪᏎᎴᎢ; ᎠᏆᏐᎭᏛ ᎭᎴᏓ ᏎᏓᏂ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ; ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᏕᎯᏯᏁᎶᏕᏍᏗ. ᎠᏎᏃ ᎨᏍᏗ ᎢᎦᎵᏍᏗ ᏱᎩ, ᎢᎩᏂᏴᏗ ᏕᎩᎸᏅᏗᏍᎬ ᏃᎴ ᎣᏍᏓ ᎢᎬᏁᏗ. ᎠᎴᏬ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᎠᏂᏔᎵ ᏂᎯ ᏥᏤᏙᎭ ᎠᎾᎵᎪᎲᏍᎨᏍᏗ ᎠᏂ ᎡᎶᎯ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎠᏂᏔᏲᎯᎮᏍᏗ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏎᏍᏗ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ. ᎤᎬᏫᏳᎯᏃ ᎤᏛᎦᏅ ᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅ ᏥᏌ ᎤᏟ ᎢᏯᏂᎢ ᎬᏩᏍᏓᏩᏕᎩ ᏂᏕᎬᏁᎲ ᎠᎴ ᏕᎦᏬᏍᎬᎢ, ᎡᏍᎦᏉ ᏣᏂ, ᎠᎴ ᏙᏓᎸ ᎠᎴ ᏅᏯ ᎯᎠ ᏂᏚᏂᏪᏎᎸᎩ, ᏍᎩᏯᏐᎥᎦ, ᎠᎴ ᏍᎩᏴᏍᎦᎸᎥᎦ ᎾᏍᎩ ᎣᎩᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏪᎵ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎣᎦᏢᏔᏍᏗᏱ ᏂᎨᏒᎾ; ᎾᏍᎩ ᏄᏪᏎ ᎢᏌᏯ, ᎾᎯᏳ ᏧᎪᎮ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏧᏃᎮᎴᎢ. ᏕᏣᎵᏅᏫᏍᏗᏕᎬ ᏕᏣᏓᏴᎡᎮᏍᏗ, ᎾᏍᎩᏃ ᏂᏣᏛᏁᎲ ᎢᏥᎧᎵᎢᎮᏍᏗ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ. ᎾᎩᏪᏐᎾᏉ, ᎤᏲ ᎠᎩᏰᎸᏅ. “ᏃᎴ ᎠᎾᏓᎪᎾᏗᏍᎩ ᎣᏍᏓ ᎤᎾᎴᏅᏗ ᎡᎵᏍᏗ.” ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏃᎴ ᏧᏬᏪᎳᏁ ᎡᏝᏪᎯ ᎤᎾᏟᏃᎮᎸ, ᎦᏍᎩᎸ ᏭᎵᏍᏛᏧᏅ ᏗᎪᏪᎵᏍᎩ ᏗᎪᏪᎶᏙᏗ ᎦᏁᎯ ᏭᎳᏛ ᎤᎩᏓᏟ ᎤᎴᏅᎲ ᏕᎪᏪᎵᏍᎬ. ᏂᎦᏓ ᎤᎾᏓᏅᎾᏁᎢ ᎠᏦᏴ, ᏎᎦ ᎤᎾᎦᏙᏍᏕᎢ ᏫᎵᎻ ᏃᎴ ᎤᏬᏚᏟ: ᎢᏤᎯ ᎤᎵᏑᏫᏓ ᎧᏁᏌᎢ. ᎿᏉᏃ ᎤᏂᏣᏖᏍᏗ ᏚᏃᏕᎯᎮᏍᏗ, ᎠᎴ ᏓᎾᏓᏡᏗᏍᎨᏍᏗ ᎠᎴ ᏓᎾᏓᏍᎦᎨᏍᏗ. ᎪᎳ ᎢᎪᎯᏓ ᎤᎦᏎᏍᏕᎢ ᏌᎳᏓ ᎤᏤᎵ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᎾᏍᎩᏯ ᎤᏩᏌ ᏧᏤᎵ ᏗᏂᏲᏟ. ᎠᎴ ᎥᏝ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎢᏳᏍᏗ ᎢᏴᏛᎭᏉ ᎤᏓᎵᏍᎪᎸᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᏓᏕᏘᏴᎮᎬ, ᎪᎱᏍᏗ ᎤᏂᎩᎬ ᎬᏗ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏥᎾᏛᏁᎮ ᎦᎸᏉᏗᏳ ᎨᏒ ᏥᏩᏴᎯᎮᎢ; ᏂᎦᏛᏃ ᏴᏫ ᏑᎾᎴᎢᏳ ᎬᏩᎷᏤᎮ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ. ᏦᎢᏃ ᏧᏒᎯᏛ ᎾᎪᏩᏗᏍᎬᎾ ᎨᏎᎢ, ᎠᎴ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᎠᎴ ᎾᏗᏔᏍᎬᎾ ᎨᏎᎢ. ᎤᏪᎵᏍᏗ ᏂᎦᏓ ᎠᏂᎨᎯᏎ. ᏙᏱᏨ ᎤᏪᏅᏎ ᏏᏆ. ᎿᏉᏃ ᏚᏛᏛᏅᎩ ᎢᏳᎢ ᎤᎴᏅᎲ ᏏᏲᏍᏛ ᏄᎵᏍᏓᏁᎸᎢ. ᎤᏒᎯ ᏌᏉ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᏄᏗᎴᎲᏍᎬᎾ ᏄᎵᏍᏔᏅᎩ, ᎥᎬᏬᏎᎸᎩ. ᎦᎢᏒᏰᏃ ᎠᎴ ᏓᎩᎪᎲ ᏓᎩᎪᎲ ᎦᎸᏉᏗᏳ ᏗᏥᏰᎸᎯ, ᎠᎩᏩᏛᎲᎩ ᎾᏍᏉ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᎠ ᏅᎬᏅ ᎥᎪᏪᎸᎩ; ᎾᏥᎦᏔᎲᎾ ᎦᎸᎳᏗ ᎡᎯ ᎤᏤᎵᎦ. ᎾᏍᎩᏃ ᎰᏩ ᏁᏥᎦᏔᎲᎾ ᏤᏣᏓᏙᎵᏍᏓᏁᎭ ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ. ᎠᏎᏃ ᎠᏴ ᏂᏥᏪᎭ, ᏝᏍᎪ ᏯᏂᎦᏔᎮ ᎢᏏᎵ? ᎢᎬᏱ ᎨᏒ ᎼᏏ ᎯᎠ ᏂᎦᏪᎭ, ᎢᏣᏛᏳᎨᏗᏱ ᏅᏓᏨᏴᏁᎵ ᏓᎦᏥᏴᏔᏂ ᎾᏍᎩ Ꮎ ᎠᏰᎵ ᎤᏃᏢᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏄᎾᏓᏅᏛᎾ ᏴᏫ ᎦᏥᏴᏗᏍᎬ ᏓᏨᎾᎸᏍᏔᏂ. ᎠᏒᏆᎶᏍᏗ ᎤᎴᏴᏒ ᏥᏳ ᎤᏬᏢ, ᏧᎾᏛᏐᏅ ᎤᎾᎵᎪᎲ ᏓᏗᏔᏍᎬ. ᎦᏨᏗ ᏓᏕᏏ? ᎠᏧᎬ ᎾᎥᏂ ᎠᎦᏘᏰ ᎤᏕᎶᎰᎯᏍᏗ ᎤᏓᏙᎵᏍᏔᏅ. ᏚᎷᏫᏍᏔᏁᎸ ᏓᏳᏓᎴᏅᏓ, ᎠᎵ ᎤᎴᏴᏒ ᏗᎦᏓᏁ ᏂᏚᎵᏍᏔᏁ ᏚᏄᏮ, ᎪᎰᏍᏗ ᎤᎵᏍᏔᏁ ᎦᏙᎯ, ᎤᏄᎸᏁ ᏧᎴᏗ. ᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏘᏃᎮᎸᎩ ᎠᎨᏴ ᎠᏓᏲᏁᎲ ᎠᏥᏂᏴᏛ; ᎠᏰᎵᏃ ᎤᏂᎧᏅ, ᎾᏂᎥᏉᏍᎩᏂ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ ᎩᎶ ᎾᏍᎩ ᏳᎾᏰᏍᎦ ᎠᎴ ᏚᏳᏙᏛ ᏱᏚᎸᏫᏍᏓᏁᎭ ᎾᏍᎩ ᏓᎦᏓᏂᎸᎪᎢ. ᎨᏍᏗ ᏅᏲ ᎭᏫᏂᏣ ᎬᏗᏍᎦᎶᏗ ᏱᎩ. Ꭷ, ᎢᏣᏕᎶᏆ ᏓᏟᎶᏍᏛ ᏒᎦᏔᎢᏳᏍᏗ ᏡᎬᎢ; ᎢᏳᏰᏃ ᏚᏩᏂᎦᎸ ᏗᏓᎨ ᏂᏕᎦᎵᏍᏓ, ᎠᎴ ᎩᎳᎢ ᏥᎦᎳᏍᏚᎲᏍᎪᎢ, ᎢᏥᎦᏔᎰ ᎪᎩ ᎾᎥᏂᏳ ᎨᏒᎢ. ᎠᏎᏃ ᎯᎠ ᏅᏓᎦᏪᏏ, ᎢᏨᏲᏎᎭ, ᎥᏝ ᏱᏥᎦᏔᎭ ᏗᏣᏓᎴᏅᎢ; ᏍᎩᏯᏓᏅᏏ, ᏂᏥᎥ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᎯ. ᏥᎷᏏᎵᎻᏃ ᎾᎥ ᏭᏂᎷᏨ ᎾᏍᎩ ᏒᎦᏙᎯ ᎠᏯ ᏇᏗᏂᏱ ᎢᏴᏛ, ᎣᎵᏩᏲᎯ ᎤᏌᎯᎸᎢ, ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏅᏎᎢ, ᎤᎾᏅᏁᏃ ᎠᎴ ᎤᏂᏯᏫᏎ. ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏄᏂᏍᏆᏂᎪᏔᏅᎾ ᏥᎨᏎ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏂᎨᎬᏁᎸ ᏧᏅᏕᏤᏉᏍᎩᏂ ᎤᎾᏤᎵᎪᎯ ᎠᏁᎲᎢ, ᏧᏓᏕᏒᏛ ᏗᎬᏩᏲᎢᏍᏗ ᏂᎨᏒᎾ ᏕᎨᎦᎸᏍᏗ ᎤᎵᏏᎬᎢ, ᎦᎸᏉᏗᏳ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎠᏍᏆᎸᎲ ᎬᏗᏍᎩ. ᎠᏎᏃ ᎢᏗᎦᏔᎭ ᎯᎠ ᎠᏍᎦᏯ ᏧᏓᎴᏅᎢ, ᎦᎶᏁᏛᏍᎩᏂ ᎦᎷᏨᎭ ᎥᏝ ᎩᎶ ᏱᎬᎦᏔᎮᏍᏗ ᏧᏓᎴᏅᎢ. ᏫᏥᏤᎢ ᎢᏴ ᏱᏓᏌᏙᎭᏯ ᏴᏫ, ᎤᎾᏓᏅᏖᏗ ᎤᏂᏲᎰᏎ. ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏗᎦᏚᏓᎴᏍᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏍᎩᏯ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎤᏚᎩ ᎢᎬᏒᎢ. ᎬᏩᏟᏍᏗᏰᏃ ᎾᏍᎩ Ꮎ ᎢᎸᎯᏳ ᎢᎦᎨᎦᏗᏍᏓᏁᎸᎯ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏁᎶᏔᏅᎯ ᎨᏒ ᎦᎸᎶᎢ ᏅᏓᏳᏓᎴᏅᎯ ᎠᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎨᎦᏠᏯᏍᏔᏅ ᎨᏥᏁᎸᎯ. ᎾᏃ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅ ᎤᎬᏩᎵ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎾᏂᎦᏔᎲᎾ ᎨᏎᏍᏗ, ᏱᏨᏰᎵᏎᎭ. ᏂᎬᎾᏛ ᎠᏒᎨ ᏓᏳᏓᎴᏅ ᎤᎪᏏᏓ ᎤᏪᏥ. ᏰᎵ ᏱᏚᏂᏲᏏ ᏃᏉ ᏚᏙᎣᏐᏅ ᏧᏆᎶᎦ, ᏙᏉ ᏄᏍᏕᏍᏗ ᏧᎪᎳ ᏅᏙ ᎦᎷᏨ? ”ᎡᎭ!” ᏩᏓᏅᏛᎳ!” ᏔᎵᏁᏃ ᎯᎠ ᏅᏗᎠᏥᏪᏎᎵᎢ; ᎤᏁᎳᏅᎯ ᎤᏅᎦᎸᏛ ᎾᏍᎩ Ꮮ-Ꮧ ᎦᏓᎭ ᏲᏎᎮᏍᏗ. ᎯᎠᏃ ᎾᏍᎩ ᎣᏒ ᎦᏙᎯ ᏥᎨᏥᏫᏎᎴᎢ; ᎾᏍᎩ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ, ᎠᎴ ᏗᎾᏓᏂᎸᎩ, ᎠᎴ ᎠᏂᎦᏔᏛᏍᎩ, ᎢᎦᏛ ᏦᎠᏍᎪᎯ ᎢᏳᏩᏓᏗ, ᎢᎦᏛᏃ ᏑᏓᎳᏍᎪᎯ, ᎢᎦᏛᏃ ᎠᏍᎪᎯᏧᏈ. ᏐᏉ ᎢᎦ ᏍᎪᎯᏍᏆ ᎤᎶᏒᏍᏗ ᎤᏂᎷᏤᎢ ᎠᎾᎧᏔᏂᏙ ᏃᎴ ᎠᏂᎸᏉᏗᏍᎨᎢ. ᏈᎵᎩᏍᎩᏂ ᎠᏥᏩᏛᎮ ᎠᏦᏓ; ᎠᎢᏒᏃ ᎠᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᎦᏛ ᏕᎦᏚᎲ ᎬᏂ ᏏᏌᎵᏱ ᏭᎷᏨ. ᎢᏳᏰᏃ ᎣᏏᏳ ᎠᎩᏰᎸᏅᎯ ᎾᏍᎩ ᎯᎠ ᏱᏂᎦᏛᏁᎭ ᎥᏆᎫᏴᎡᎭ; ᎢᏳᏍᎩᏂ ᎣᏏᏳ ᎠᎩᏰᎸᏅᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᎿᏉ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎥᏆᏒᎦᎶᏔᏅ. “ᎨᏍᏗ ᎪᎱᏍᏗ ᎤᏕᏯᏙᏗᏍᎩ ᏱᎩ ᎠᎦᏍᏆᏟ. ᎿᏉᏃ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᎤᎷᏨ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏚᏪᏲᏅᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎠᎴ ᎯᎠᏄᏂᏪᏒᎩ; ᎦᏙ ᎤᎵᏍᏙᏔᏅ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᏣᎦᎳ ᎿᎠ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏥᏚᎸᏫᏍᏓᏁᎭ? ᎩᎶ ᎤᏩᏒ ᎤᏓᏅᏖᏛ ᏥᎦᏬᏂᏍᎪᎢ, ᎤᏩᏒᏉ ᎠᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏲᎰᎢ; ᎩᎶᏍᎩᏂ ᏅᏓᏳᏅᏏᏛ ᎠᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏲᎰᎢ, ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏐᎢ, ᎠᎴ ᎥᏝ ᎠᏠᎾᏍᏗ ᎨᏒ ᏳᏓᏑᏲᎢ. ᎠᏙᎯ ᎠᏍᏛᎢ, ᏥᏍᏆᏯ ᎤᏁᎦ ᎦᏁᏥᎢ (ᎺᏌᏧᏎᏗ ᎢᏴ ᏓᏳᎶᏒ) ᏂᎦᏪᏍᎪᎢ,” Ꭳ, ᎫᏫᏍᎫᏫ, ᎫᏫᏍᎫᏫ, ᎫᏫᏍᎫᏫ!” ᎠᏎᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏕᎸ ᏗᏣᏤᎵ ᏫᏓᎵᏗᏛᏓ ᏨᏒ ᎭᎵᏛᏗᏍᎬᎢ, ᏅᏓᎦᎵᏍᏙᏓ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒ ᏰᎵᏉ ᎠᏕᎸ ᎬᏩᎯᏍᏙᏗ ᏤᎳ. ᎡᏈᎵ ᎤᎩᎬ ᏅᏛᎴᏅᏛ, ᏤᎩᎳᏯ ᎤᎬᎬ ᏩᏍᏗ, ᎾᏍᎩ ᏧᎵᏍᏆᏕᎴ ᎠᏰᎵ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᏛᏅᏃ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎨᏥᏔᏲᏎᏗ ᎨᏎᏍᏗ ᎪᎯ ᏣᏁᎭ. ᎬᏅᎢ ᏥᏚᎢᏍᏓᏁ. ᎯᎸᎢᏴ ᎤᏩᏙᎯᏴᏓ ᎢᏳᏍᏗ ᎠᏒᎨ, Ꮳ ᎪᎱᏍᏗ ᎤᏲ ᎢᏳᎵᏍᏙᏗ ᏱᎨᏒᎾ ᎢᏳᏍᏗ ᏄᏍᏕ. ᎠᎨᏴᏃ Ꮎ ᏥᎪᏩᏘᏍᎬᎩ ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲ ᎦᏛᎦ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎡᏁᎲ ᎤᎬᏫᏳᏌᏕᎩ ᏥᎩ. ᎬᏩᏃᏁᎴᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᏥ ᎠᎴ ᎢᏣᎵᏅᏟ ᏙᏱᏗᏢ ᏓᏂᏙᎦ ᎤᎾᏚᎵ ᎨᏣᎪᏩᏛᏗᏱ. ᎠᏎᏃ, ᎠᏴ ᎦᏓᏅᏖᏍᎬ, ᎤᏟ ᎢᎦᎢ ᏅᏩᏙᎯᏯᏛ ᏳᏓᏅᏔ, ᏱᏅᏩᏍᏗᏉ ᎡᎲᎢ; ᎠᎴ ᎦᏓᏅᏖᏍᎬ ᎠᏴ ᎾᏍᏉ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎠᏇᎭ. “ᏌᏌ?” ᎤᏛᏁ ᏌᎳᏓ. ᎾᏍᎩᏃ ᏆᎩ ᏫᎤᎾᏂᎩᏒ ᏭᏂᎷᏤ ᎥᏘᎣᎩ ᎦᏚᎲ ᏆᏏᏗᏱ; ᎤᎾᏙᏓᏆᏍᎬᏃ ᎢᎦ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏂᏴᎸ ᎤᎾᏅᏁᎢ. “ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ ᏫᎵᎻ, “ᏱᏣᎸᏂᏗᏍᎬᎾ ᏱᎨᏎᎢ, ᏱᏣᏕᎶᎰᏎᎢ ᏧᏪᏥ ᏧᏩᏅᏙᏗ ᏄᏩᏁᎸ ᏌᎳᏓ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎡᏥᏁᏉᎡᏗ ᎨᏎᏍᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎴ ᏥᏌ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ. ᎾᏍᎩᏰᏃ Ꮎ ᎯᎠ ᎾᏍᎩ ᎤᎬᏩᎵ ᎠᏥᏁᎢᏍᏔᏅᎯ ᎨᏒ ᎤᏣᏘᏂ ᎠᏂᎳᏍᏓᎸ ᎨᎳ ᎨᏒᎩ, ᎾᏍᎩ [ᎠᏂᎳᏍᏓᎸ] ᎤᏓᎴᏅᎯ ᎥᏝ ᎩᎶ ᎠᏥᎸᎨᎳᏍᏗᏱ ᏱᏚᎸᏫᏍᏓᏁᎮᎢ. ᎠᏎᏍᎩᏂᏍᏊ, ᏍᏈᏍᏓᎾᏍᏊ ᎫᏘᏍᎬᏃ. ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏱᎩᏲᎱᏎᎴᏍᏗ ᏕᎩᎸᏫᏍᏓᏁᎸᎢ, ᎢᏗᏩᏛᎲᏉᏍᎩᏂ ᎤᎧᎵᏨᎯ ᎡᎦᎫᏴᏓᏁᏗ. ᎩᎶᏃ ᎢᏳᏍᏗ ᏗᎪᏪᎵᏍᎩ ᎤᎷᏤᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᏕᏲᎲᏍᎩ ᏓᎬᏍᏓᏩᏗᏙᎵ ᏂᎦᎥ ᎮᏙᎲᎢ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎠᎴ ᎤᏅᏒ ᎨᏒ ᏚᎾᏓᏛᏛᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎦᏙ ᎤᏰᎸᏗ ᎯᎠ? ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎢᏤ ᏗᏕᏲᏗ ᎨᏒᎢ? ᎤᎵᏂᎩᏛᏰᏃ ᎤᎲ ᎬᏗ ᏕᎧᏁᏤᎰ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ, ᎠᎴ ᎬᏬᎯᏳᎲᏍᎪᎢ. ᏚᏌᎳᏓᏁᏃ ᏗᎦᏙᎵ ᏚᎧᎾᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏄᏪᏎᎢ; ᎣᏏᏳ ᎢᏣᎵᏍᎠᏁᏗ ᎤᏲ ᎢᏣᏛᎿᏕᎩ; ᎢᏣᏤᎵᏰᏃ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎦᎪᏰᏃ ᎯᎠ ᏥᏂᏣᏛᏅ, ᏯᏓᏅᏖ ᎢᏅ ᎢᎦᏘ ᎤᏁᏍᎨᏗᏱ, ᎥᏝ ᎢᎬᏱ ᏱᎦᎲᏍᎪ ᏯᏎᎯᎰ ᎢᎦᎢ ᏧᎬᏩᏔᏂᎯᏍᏗ ᎨᏒᎢ, ᎤᏙᎴᎰᎯᏍᏗᏱ ᏰᎵ ᎬᏩᏍᏆᏗᏍᏙᏗ ᎢᎦᎢ ᎤᎲᎢ. ᎾᏍᎩ ᏗᎵᏍᏓᏴᏗᏱᏉ ᎨᏒ ᎠᎴ ᎠᏗᏔᏍᏗᏱᏉ ᎨᏒ ᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎨᏒᎢ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏇᏓᎵᏉ ᎨᏒ ᏧᎬᏩᎴᎢ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᏥᏂᎨᎬᏁᎴ ᎤᏓᏁᏟᏴᏍᏗ ᎨᏒ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎢᎪᎯᏛ. ᎠᏎᏃ ᎤᏙᏓ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ; ᎣᏌᏂ ᎠᏄᏬ ᏫᏥᎾᎩ, ᎡᏥᏄᏬᏣ, ᎠᎴ ᎡᏥᏰᏑᏍᏙᎦ, ᎠᎴ ᏤᏣᎳᏑᎸᎦ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏛ ᏴᏫ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᎾᏍᎩ Ꮎ ᎠᏙᎴᎰᏍᎩ. ᎾᎦᏛᏃ ᎤᏣᏘ ᏚᎾᏠᏱᎸᎩ, ᎠᎴ ᏉᎳ ᎠᎩᎵᎨᏂ ᎤᏂᏯᎸᏨ ᎬᏩᏔᏪᏙᏅᎩ. ”ᎨᏍᏗ ᎤᏦᎠᏎᏗ ᏱᎩ. ᎤᎧᏲᏓ, ᎦᏁᏔᏱ ᏕᎬᏗᏍᎪ ᏕᎦᎫᏍᏛᎥ, ᏃᎴ ᏧᎦᏣᎳᎩᏍᏗ ᎠᏍᏓ ᏕᎬᏗᏍᎪ ᏧᏌᏛᏙᏗ --- ᏍᎪᏯ ᏧᏂᏴᏙᏗ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎬᏩᏓᏅᎡᎮᎢ, ᏈᏓ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ, ᏔᏕᏲᎲᏍᎩ, ᎣᏏᏳ ᎠᏂ ᏥᏕᏙᎭ; ᎠᎴ ᏦᎢ ᏫᏙᏥᎵᏦᏛᎦ; ᏌᏉ ᏂᎯ ᏣᏤᎵᎦ, ᏌᏉᏃ ᎼᏏ ᎤᏤᎵᎦ, ᏌᏉᏃ ᎢᎳᏯ ᎤᏤᎵᎦ, ᎥᏝ ᏯᎦᏔᎮ ᏂᎦᏪᏍᎬᎢ. ᎾᏆᏕᏘᏴᎲ ᎣᏍᏓ ᏱᎧᏁᏉᎦ ᎾᏆᏓᎨᏒ.” ᎠᏰᎵ ᎢᏴ ᎠᎬᏱᏉ ᎤᏂᏯᎨ, ᏭᏩᎬᏛ ᏧᏌᎨᎢ ᎤᏂᎦᎭᎷᏰ, ᎠᏥᎷᏳᎵ ᎾᎥᏂ ᎤᏂᎧᎭᏲᏔᏁ. ”ᎠᏯᏗ ᎩᎾᎵᎢ ᏱᎩ. ᎤᎦᏔ ᏚᏩᏇᏅᏛ ᎤᏤᏌᏙᎩ ᏚᏪᏝᎸ ᏥᏔᎦ. ᎠᎴ ᎤᏁᎳᏅᎯ ᏥᏔᏲᏎᎭ ᎠᎦᏔᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏆᏓᏅᏙ ᎤᏬᎯᏳᏓᏂᏗᏱ, ᎾᏍᎩ ᎢᏨᎨᏳᎥᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏏ ᎪᎵᏂᏗᏱ ᏫᏂᏥᎷᎬᎾ ᏥᎩ; ᏭᏕᎵᎬ. ᎢᏳᏰᏃ ᏚᏳᎪᏛ ᎧᏁᎩ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏟ ᎢᎦᎢ ᎤᏁᏉᏨᎯ ᏱᎩ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎲᎢ ᎠᏴ ᎦᏥᎪᎲᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎦᏙᏃ ᎠᏴ ᎾᏍᏉ ᎠᏏᏉ ᏛᏊᎪᏓᏁᎭ ᏥᏍᎦᎾ ᎾᏍᎩᏯᎢ? ᏫᏥᎢᎦ ᎨᏒ ᎧᏁᏍᎦ ᎢᏳᏍᏗ ᎠᏒᎨ. ᏍᏈᏍᏓᏰᏃ ᎤᏂᏍᏆᏂᎪᏕ ᎧᏁᏍᎦ ᎦᎸᎳᏗᏣ. ᎿᏉᏃ ᏚᏂᏐᏨ ᎨᏂᏏᎳᏗ ᎤᏂᎷᏨᎩ. ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏂᎬᏁᎸ ᎤᏓᏅᏙ ᎤᏮᏔᏅ; ᎠᏓᏅᏙᏰᏃ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎠᎪᎵᏰᏍᎪᎢ, ᎾᏍᏉ ᎬᏍᎦᎵ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎯᎠ ᎾᏍᎩ ᏥᏂᏥᏪᎭ ᏩᏴᎭ ᏗᏥᎴᏂ; ᏴᏫᏰᏃ ᎤᏪᏥ ᏴᏫ ᏗᎨᏥᏲᎮᏎᏗ ᎨᏎᏍᏗ. ᎠᏎᏃ ᏧᎾᏁᎶᏗ ᎤᏂᏯᏅᎮ ᏒᏃᏱ ᎠᎴ ᏔᎷᏣ ᎤᏂᏲᏔᏁ ᎤᎾᏠᎥᏔᏁ ᎠᏐᏴᎢ. ᎠᏓᏪᎳᎩᏍᎬ ᎤᏁᎳᏛ, ᎬᏂᎨ ᏧᎦᏒᏍᏗ ᏓᏦᎯᏍᏗᏍᎬ ᎤᎶᎩᎸ, ᏫᎦᎷᎬᎾᏉ ᎠᏕᎭᏲᎲ ᏅᏃ. ᎠᏎᏃ ᏅᏧᎵᏍᏙᏔᏅᎢ ᎪᎯ ᏣᎪᏩᏘᎭ ᎥᏝ ᏲᏍᏗᎦᏔᎭ; ᎠᎴ ᎠᏴ ᎥᏝ ᏲᏍᏗᎦᏔᎭ ᎾᏍᎩ Ꮎ ᏧᏍᏚᎢᎡᎸᎯ ᎨᏒ ᏗᎦᏙᎵ. ᎿᏉ ᎠᏗᏃᎾ ᎤᏛᎾ, ᎡᏣᏛᏛᎲᎦ, ᎤᏩᏒ ᏓᎧᏃᎮᎵ. ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏙᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎾᏍᎩᏯ ᎾᏍᎩᏯ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎰᎲᏍᏗᏱ, ᎠᏴ ᎤᏇᏓᎵ ᎨᏒ ᎢᏗᏍᏓᏩᏕᎩ ᏂᎨᏒᎾ ᏏᎩ, ᎠᏓᏅᏙᏍᎩᏂ ᎢᏗᏍᏓᏩᏕᎩ. ᎠᎴ ᎾᏍᏉ ᎦᎸᎳᏗ ᎠᏁᎭ ᏗᎪᏢᏅᎯ, ᎠᎴ ᎡᎶᎯ ᎠᏁᎭ ᏗᎪᏢᏅᎯ; ᎠᏎᏃ ᏧᏬᏚᎯᏳ ᎨᏒ ᎦᎸᎳᏗ ᎠᏁᎯ ᏅᏩᏓᎴᎢ, ᎠᎴ ᏧᏬᏚᎯᏳ ᎨᏒ ᎡᎶᎯ ᎠᏁᎯ ᏅᏩᏓᎴᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᎩᏨᏛ, ᎾᏍᎩ ᏗᎦᏚᎲ ᎾᏱᏂ ᏧᏙᎢᏛ ᏭᏴᎴᎢ; ᏰᎵᏃ ᎠᏂᎪᏗᏳ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏍᏓᏩᏛᏎᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ. ᎾᏍᎩᏃ ᎯᎠ ᎤᏛᎦᏅ ᎤᏣᏘ ᎤᏲ ᎤᏰᎸᏁᎢ; ᎤᏣᏘᏰᏃ ᎤᏪᎿᎢᏳ ᎨᏎᎢ. ᎦᏁᏍᏓᎳᏗᏍᏗᏍᎩ ᎠᏍᎩᏗᏍᎨᎢ ᎠᎳᏂ. ᎤᏩᏌ ᎡᏙᎮ ᎤᎨᏓᎵᏴ ᏧᏴᏨ ᎢᏣ, ᎤᏲᎢᏴ, ᎯᎸᎢᏴ ᏅᏃᎯ ᎢᏯᏖᏅ ᎨᏴ, ᎠᏯᏙᎵ ᎨᏎ ᎦᎶᎯᏍᏗ, ᎦᏣᏃᏍᏓ ᏓᎴᎲᏍᎬ ᎠᎹ ᎨᏴ ᎠᏍᏛᎢ. ᏂᎪᎯᎸ ᎡᎶᎯ ᎨᏙᎲᎢ, ᎠᏴ ᎡᎶᎯ ᎢᎦ ᎦᏥᏯᏘᏍᏓᏁᎯ. ᎾᏃ ᏗᎾᏠᏱᎯ ᏥᎩ, ᏂᏓᎾᏠᏱᎲᎾᏉ ᎢᏳᏍᏗ ᎨᏎᏍᏗ; ᎾᎿ ᎠᎾᎵᎮᎵᎩ ᏥᎩ, ᎾᎾᎵᎮᎵᎬᎾᏉ ᎢᏳᏍᏗ ᎨᏎᏍᏗ; ᎾᏃ ᎤᏂᏩᏍᎩ ᏥᎩ, ᏄᏂᎲᎾᏉ ᎢᏳᏍᏗ ᎨᏎᏍᏗ; ᎠᎴᏍᏊ ᎥᏳᎩ ᎬᏗ ᎠᏰᏟᏴ ᎤᎾᏗᏨᏁ ᎦᏚᎲ ᏂᎬᏫᏍᏕ ᏚᏂᎾᎡ ᏗᎪᏪᎳᏅ ᏗᏣᎳᎩ ᏗᎪᏪᎵ. ᎢᏓᎵᏅᏟ, ᎠᎩᎾᏫᏱ ᎢᏴᏛ ᎠᏆᏚᎵᎭ, ᎠᎴ ᏥᏯᏓᏙᎵᏍᏓᏁᎭ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗᏱ. ᎾᏍᎩ Ꮎ ᎣᏥᏃᎮᏍᎬ ᎤᏣᏘ ᎪᎱᏍᏗ ᎦᏲᎦᏛᏗ, ᎠᎴ ᎤᏦᏍᏗᏳ ᏗᎪᏏᏐᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏗᏥᏍᎦᏃᎵᏳ ᎨᏒ ᎢᏣᏛᎪᏗᏱ. ᏤᏍᏗ ᏤᏅᏒ. ᏗᏂᏲᏟ ᎣᏍᏓ ᎤᏂᏰᎸᎮ ᏧᎾᏁᎶᏗ. ᏛᏂᎾᏄᎪᏥᏰᏃ ᎤᎾᏠᎾᏍᏗ ᎦᎶᏁᏛ ᎠᎴ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎠᏂᎾᏄᎪᏫᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏰᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᏱᏓᏂᎶᏄᎲᎵ ᎾᏍᏉ ᎨᎦᏑᏰᏛ. ᎠᏎᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᏚᏂᏍᏗᏰᏔᏁ ᎤᏂᏣᏘ ᎨᏒ ᏆᎳᏆ ᎤᏂᏔᏲᏎᏗᏱ, ᏥᏌᏃ ᎤᏂᎯᏍᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏥᏅᏏᏓᏍᏗ ᎡᎳᏗ ᎤᏓᏅᏁᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᏍᎩᏙᎵᎩ ᏍᎩᎦᏘᏓ, ᏂᎦᏛᏃ ᏓᎬᏯᎫᏴᎡᎵ. ᎢᎬᏱ ᎤᏩᏛᎲᎩ ᎤᏤᎵ ᎤᏂᎵ ᏌᏩᏂ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎣᏥᏩᏛᎲ ᎺᏌᏯ; (ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎦᎶᏁᏛ ᎦᏛᎦ.) ᎠᎴ ᏚᏔᏲᏎᎴ ᎪᏪᎵ ᏧᏅᏍᏗ ᏕᎹᏍᎦ ᏗᎦᏚᎲ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᏍᎩᏃ ᎢᏳ ᏱᏚᏩᏛᎲ ᎩᎶ ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏂᎧᎿᏩᏕᎩ, ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎾᏍᎩ ᏗᎨᎦᎸᎢᏛ ᏧᏘᏃᎯᏍᏗᏱ ᏥᎷᏏᎵᎻ. ᎾᏍᏉ ᏉᎳ ᏱᎩ, ᎠᎴ ᎠᏉᎳ, ᎠᎴ ᏏᏆᏏ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎬᏂᏛ, ᎠᎴ ᎠᏲᎱᎯᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎪᎯ ᎨᏒ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏏ ᏥᎨᏎᏍᏗ; ᏂᎦᏗᏳ ᎢᏣᏤᎵᎦ; ᎥᏝᏰᏃ ᏱᎦᏕᎣᏍᎦ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎯ, ᎾᏍᎩ ᎾᎿ ᎠᎾᎵᏍᏕᎸᏙᏗᏍᎬ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ; ᎠᏂᏧᏏ ᎢᎬᏱ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ. ᎢᎬᏱᏱ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎢᏥᏏᏴᏫᎭ ᎢᏣᏓᏁᎸᏍᎨᏍᏗ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎢᏥᏁᏉᎡᎸᎢ, ᎾᏍᎩᏃ ᏞᏍᏗ ᏫᏥᎷᏨᎭ ᎩᎳ ᏫᎦᏟᏐᏗ ᏱᎨᏎᏍᏗ. ᎠᏆᏗᎳᎾᎶᏰᏃ ᏄᎯᏐᏛᎾ, ᎦᎵᏎᎲᏃ ᎤᏓᏌᎧᎯᏳ. Ꭷ, ᎡᎵᏍᏗ ᎯᏣᏕᎶᎰᏌ ᏂᎦᎵᏍᏔᏂᏙᎲ ᏔᎵᎭ ᏧᏙᏓᏆᏓ. ᎨᏍᏗ ᏱᏥᎦᏔᎮ ᏂᎦᏓ ᏚᎾᏙᎥ. ᎠᎴ ᎾᏂᎥᏉ ᏴᏫ ᎨᏥᏍᎦᎩ ᎨᏎᏍᏗ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎠᏎᏃ ᎾᏍᎩ ᎬᎵᏍᏆᏗᏍᎩ ᎠᏟᏂᎬᏁᎯ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎠᏍᎦᏂᏍᎩᏂ ᎤᎵᏁᏨ ᎬᏗᏍᎬᎢ ᏄᏓᎴᏒ ᎤᏲ ᎠᏆᏚᎸᏅᏗᏱ ᎾᏋᏁᎸᎩ. ᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᎦᏂ ᎤᏲᎱᏒᎯ ᏱᎩ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᎠᏁᎰ ᎠᏰᎸ ᎾᏍᎩᏯ ᎣᏏ ᎤᏰᎸᏅᎢ, ᎠᎴ ᏄᏓᎴᏒ ᎤᎦᏔ ᎤᏤᎵᎦᏯ ᎠᏰᎸᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏍᎩᏃᎲᏏ, ᎦᏙ ᎮᎵᎭ? ᏥᏌ ᏚᏳᎪᏗ ᏏᏌ ᎠᎫᏴᎡᏗᏱ ᎠᏰᎵ ᎠᎫᏴᏗ ᎨᏒᎢ; ᏝᎨ? ᎤᏂᏅᏍᏙᏍᎨᏍᏗ ᏗᏨᏍᏗᏱ, ᎠᏂᏁᎨᏍᏗ ᎪᎱᏍᏗ ᎢᏳᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏗᏲᎯᏍᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏬᏢᏅᎯ ᏥᎩ ᎤᎵᎮᎵᏨᎯᏉ ᏧᎾᏓᏂᎸᎢᏍᏗᏱ ᎠᏃᎯᏳᎲᏍᎩ ᎠᎴ ᎤᏂᎦᏙᎥᏒᎯ ᏥᎩ ᏚᏳᎪᏛᎢ. ᏂᎪᎯᎸᎾ, ᎱᏃᎯᏳᎲ ᏃᎴ ᎤᎾᏅᎪᎢᏍᏗ ᎤᏓᎵᎨᏲᏤᎢ, ᏕᎦᏅᏅ ᏚᎧᎵᏤ ᎠᏂᎷᎬ ᏴᏫ ᎦᏚᏏ ᏓᏳᏂᎶᏒ. ᎤᎪᎲᏃ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏅᏃᎱᎶᏗ, ᎾᎿ ᏭᎷᏨᎩ; ᎠᏎᏃ ᎥᏝ ᎪᎱᏍᏗ ᏳᏩᏛᎮᎢ, ᎤᎳᏍᏚᏒ ᎤᏩᏒ; ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᎢᎸᎯᏳ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏱᏣᏓᏔᏁᏍᏗ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᎤᏩᏴᏒᎩ. ᎾᏍᎩᏰᏃ ᎠᏴ ᎡᎦᎵᎪᏔᏅᎯ ᏥᎨᏒᎩ, ᎠᎴ ᎠᎨᎳᏗᏍᏔᏅᎯ ᏥᎨᏒ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎾᏓᏙᎵᎩ ᎬᎭᏃᏓ ᎾᏅᏁ ᎠᏂᏔᏲᎯᎲ ᎨᎬᏬᎣᏗ ᏱᎨᏒᎾ, ᏃᎴ ᏱᏓᏂᏃᎯᏎᎲᎾ ᎨᏒ ᎤᎯᏍᏙᏗ ᎨᏒ ᎤᎾᏓᏅᏖᎸ. Connecticut ᏫᏚᏩᎧᏁ ᏧᎾᏙᎴᏆᏍᏗ ᎦᏄᏓᎴᎩ. ᎤᎾᏙᎴᏆ Latin ᎤᏂᎪᎵᏰᏗ ᏃᎴ ᎦᎵ ᏧᏃᏪᎶᏗ, ᎱᏂᎷᏤ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎠᏂᏍᎦᏰᎬᏍᏓ ᏚᎾᎭᏄᏮ, ᏧᏐᏱ ᏐᏈᎵ ᏗᏂᏂᏏᏁᎩ ᏓᏆᎴᎳ ᏧᎾᎩᎸᏗ, ᎤᏂᏐᏱ ᏗᏂᏁᎵ, ᎠᏂᏳᏩᏁᎦ ᎠᏂᎨᏯ. ᏂᎦᏓ ᏅᎩ ᎢᏯᏂ ᎠᏂᏓᏉ, ᏄᏍᏗᏓᏅ ᎣᎯᏍᏙᏗ ᎢᏳᏅᏂᏗ. ᎾᏍᎩᏃ Ꮎ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏛᎦᏅᎩ ᎤᏁᏨ; ᎠᎴ ᎾᏍᎩ ᎤᏂᏍᏓᏩᏛᏒᎩ ᏥᏌ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎡᎩᏩ ᏧᏙᎢᏛ ᏕᎤᎶᏁᎢ, ᎠᏓᏅᏙ ᎤᏩᏔᏁ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎤᏣᏘ ᎤᎪᏄᎶᎯᏍᏗᏱ ᏂᎬᎾᏛᎢ; ᎾᏍᎩᏃ ᏄᎵᏍᏔᏅᎩ ᎾᎯᏳ ᎦᎶᏗ ᏏᏌ ᎤᎬᏫᏳᎯ ᏥᎨᏒᎩ. ”ᎦᏚᏏ ᎢᏣ ᏩᏓᏒᏍᏓ!” ᎤᏛᏁ ᎤᏃᏕᎾ. ”Ꭾ, ᎾᏄᏍᏗ ᎡᏆ ᎧᏅᏂᏍᎩ!” ᎤᏛᏁ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎠᏓᏅᏖᏍᎬ ᎠᎦᏴᎵᎨ ᏅᏛᎩᏅᏏᏛ, ᎾᏍᎩ ᎩᎶ ᎠᎪᏩᏘᏍᎩ, ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎤᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ; ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏙᏓᏥᏯᎴᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ. ᎤᏰᎶᏒ ᎨᏒ ᎢᎦᏪᏍᏗ perhaps ᎠᏗᏍᎬ ᏱᏚᏅᏫᏍᏔᎾ. ᎤᎧᏎᏍᏔᏁᎢ ᎤᏕᎶᎰᏌ ᎩᎶ ᏱᏚᎧᏅᎾ ᎨᏒ ᏭᏴᎴ ᎧᏁᏌᎢ ᏃᎴ ᎧᏁᏍᎦ ᎬᏗ ᎱᏚᏒᏁ ᎡᎳᏗᏣ. ᎦᏚᎢᏣ ᏳᏂᎶᏌ ᎠᎾᏓᎭᏲᎯ ᎩᎳ ᎫᏩᏂᎪᏩᏛᏗ ᏚᏑᎬ. ᎾᏍᎩᏍᎩᏂ ᎢᏥᏯᏅᏛ ᎠᏍᎦᎾᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎢᏥᏍᎦᎾᎯ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᏂᎦᎥ ᏂᏣᏛᎿᏕᎬᎢ. ᏕᏥᏲᎵᎸᎭ ᎠᏏᏂᏟᏓ, ᏈᎵᎦᏂ, ᎭᎹᏏ, ᏆᏠᏆᏏ, ᎭᎷᏏ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᏁᎭ. ᎾᏍᎩᏃ ᏧᏂᏣᏔ ᏣᎾᏢᏈᏍᎦ ᎤᏇᏓᎵ ᎬᏙᏗ ᎨᏒᎢ, ᎠᏴ ᎾᏍᏉ ᏓᎦᏢᏆᏏ. ᎤᏢᏉᏗ ᎢᏤᎲᎩ ᎡᎶᎯ ᎠᎴ ᏂᏣᏁᎸᎾ; ᏕᏤᎶᎸ ᏗᏥᎾᏫ, ᎾᏍᎩᏯ ᏥᎾᎾᏛᏁᎰ ᏗᎯᏍᏗᏱ ᎨᏒ ᎢᎦ ᎠᏍᏆᎸ. ᎣᏂᏃ ᎾᏍᏉ ᎠᏂᏐᎢ ᎠᎾᏛ ᎤᏂᎷᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎡᏍᎩᏍᏚᎩ. ᎠᏂᎨᏴ ᏗᏣᏤᎵ ᎡᎳᏪᏉ ᎤᏅᏎᏍᏗ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎥᏝᏰᏃ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎩ ᎾᏍᎩ ᎤᏂᏬᏂᎯᏍᏗᏱ; ᎤᏃᎯᏳᏗᏱᏉᏍᎩᏂ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏥᏂᎦᏪ ᏗᎧᎿᏩᏛᏍᏗ. ᎤᏣᏘ ᏂᎦᎥ ᏄᏓᎴᏒᎢ; ᏄᎬᏫᏳᏒ ᎠᏗᎾ ᏅᏗᎦᎵᏍᏙᏗ ᎾᏍᎩ ᎨᎦᎨᏅᏴ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎢ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ ᏂᎯ ᏥᏍᎩᏯᎦᏁᎭ; ᏕᏥᎨᏳᏎᏍᏗ ᎨᏥᏍᎦᎩ, ᎣᏍᏛ ᏂᏕᏣᏛᏁᎮᏍᏗ ᎨᏥᏂᏆᏘᎯ, ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏂᎦᏛ ᏧᏂᎳᏫᎥ ᎤᏂᏲᎮ ᎤᏂᏃᎮᎸᎯ ᏥᏌ ᎤᏡᏗᏍᎩ, ᎾᏍᎩ ᎤᏂᎯᏍᏗᏱ, ᎤᎾᏠᏤᏃ. ᎤᎦᏯᎷᏛ ᎤᏭᏓᎸᏤ ᎠᏣᏗ, ᎩᏥ; ᏰᎵ ᎠᎵᏣᎬᏗᏍᎨᎢ ᎦᏂᏓᏛ ᏃᎴ ᎤᏔᎷᎩᏍᎨ ᏅᏓ ᎠᎦᎵᏍᎬ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᏂᏥᏍᎦᏒᎾ? ᎦᏙ ᏗᎦᎵᏍᏙᏗ ᏂᏦᎯᏳᏒᎾ ᎢᎩ? ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎪᎯᎸ ᎤᎦᎵᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎪᎢ, ᎠᎴ ᎣᏥᎦᏔᎭ ᎾᏍᎩ ᏂᎪᎯᎸ ᎣᏥᏁᎸ ᎠᏂ ᏦᏥᏰᎸᎢ, ᎤᎬᏫᏳᎯ ᎡᎲ ᎣᎩᎪᏁᎸᎢ; ᏣᏂᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᎠᏅᏍᎩ ᎨᏎᎢ; ᎤᏂᎷᏤᏃ ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎦᏙᏃ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᏣᏅᏍᎪᎢ, ᏂᎯᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᎾᏅᏍᎬᎾ ᏥᎨᏐᎢ? ᎤᎴᏅᎭ ᏣᎵ ᎤᏓᎵ ᏁᏂᏏ ᏚᏯᏪᏨ. ᎾᎿᏃ ᎥᎦᎧᎲᎩ ᎠᏖᎵᏙ ᏧᏂᏦᏯᏍᏗ ᎠᎧᎵᏬᎯ; ᏚᏬᎢᎵᏃ ᏧᏂᏦᏯᏍᏗ ᎤᏂᎧᎵᎢᏍᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᎯᏏᏈ ᎤᏂᏆᏙᏔᏅᎩ, ᎠᎰᎵ ᎾᎥ ᎤᏂᏩᏌᏔᏅᎩ. ᎠᏓ ᎬᏘ ᏓᏥᎶᏍᏗᏍᎨ ᎡᎳᏗᏨ ᎠᏰᎸᎢ ᎾᏍᎩᏯ ᏥᏓᎾᏥᎶᏍᏗᏍᎪ ᏧᏃᏰᏅ ᏗᏂᏲᏟ. ᏗᏥᏲᎵ ᏞᏍᏗ ᎩᎶ ᏱᏥᎶᏄᎮᎴᏍᏗ; ᏚᏳᎪᏛ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᎾᏍᎦᏅᎾ, ᎾᏍᎩᏯ [ᎦᎶᏁᏛ] ᎾᏍᎦᏅᎾ ᏥᎩ. ᎾᎯᏳ ᏥᏌ ᎬᏩᎷᏤᎸ ᎬᏩᏍᏓᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᎪ ᎤᏟᎠᏥᎸᏉᏗᏳ ᎾᎿ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎠᎴ ᎤᎩᏨᏛ ᏣᏂ ᏭᎪᎲᎩ ᏥᏌ ᎦᏙᎬ ᎢᏗᏢ ᏛᎦᏛᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ; ᏤᏣᎦᏅᎦ ᎠᏫ-ᎠᎩᎾ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎠᎲᏍᎩ ᎡᎶᎯ ᎤᏂᏍᎦᏅᏨᎢ. ᎧᏴᏐᎵ ᎤᏂᏴᎮ ᏗᏓᏁᎸ ᎢᏣ ᏭᏓᏒᏍᏔᏁᎢ. ᎤᎩᏨᏓ ᏑᎾᎴᎢ, ᎠᏥᎸᏳᎶᏗ ᎾᎥᏂ, ᎧᏫ ᎠᎵᏥᏍᎬ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᎤᏛᏣᏢ, ᎠᏌᎻᏓ ᎠᎦᏔᎾᎢ ᎤᏤᎸᏅ, ᎠᏋᏌ ᎾᏋᏂᏌᏅ ᎠᎦᏗ ᎠᎩᏬᏂᏒ ᎤᏒᎯ ᎤᏛᏅ. ᏗᎩᏏ ᎦᏓᏍᎬᎢ ᎣᏍᏓ ᏄᏩᏁᎴ ᎤᏍᏆᏂᎪᏙᏗ, ᎠᏯᏖᎾ ᎦᎾᎸ ᎾᎥᏂ. ᎿᏉᏃ ᏑᎾᏓᏡᎩ, ᎠᎴ ᎠᏂᏯᏫᏍᎩ ᏗᏘᏂᏙᎯ, ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎠᏂᏧᏏ ᏧᏂᏁᏤᎸᎯ, ᎬᏩᏂᏴᎲᎩ ᏥᏌ, ᎠᎴ ᎬᏩᎸᎸᎩ. ᎤᏙᎯᏳᎯ; ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏕᎨᏥᏂᎦᎸᎲᎩ; ᎠᎴ ᏂᎯ ᏥᏙᎦ ᏦᎯᏳᏒ ᏂᎬᏂᏏᎭ. ᏞᏍᏗᏉ ᎤᏟ ᏱᏣᏤᎸᏎᏍᏗ, ᎯᎾᏰᏍᎨᏍᏗᏍᎩᏂ; ᎠᏎᏃ ᎥᏝ ᏳᎵᏍᎪᎸᏓᏁᎴᎢ ᏥᏌ, ᎯᎠᏉᏍᎩᏂ ᏄᏪᏎᎴᎢ, ᏥᎮᎾ ᏗᏤᏅᏒ ᎪᎱᏍᏗ ᏗᏨᎾ ᏗᏁᎲᎢ, ᎠᎴ ᏫᏗᏃᎲᏏ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᎤᎬᏫᏳᎯ ᏂᏣᏛᏁᎸᎢ, ᎠᎴ ᏣᏙᎵᏨᎢ. ᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᏗᎾᏓᏅᏟ ᎠᏍᎦᎨᏍᏗ ᎪᎱᏍᏗ ᏄᏍᏛᏗᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ ᏗᏄᎪᏗᏍᎩᏱ; ᎩᎶᏃ ᏗᎾᏓᏅᏟ ᏂᏣᏓᏅᏛᎾ ᎢᎪᏎᎮᏍᏗ, ᏕᎦᎳᏫᎥ ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᏣᏁᎫ ᎢᎪᏎᎮᏍᏗ, ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ ᏨᏍᎩᏃ ᎠᏥᎸᏱ. ᎤᎷᏨᏃ, ᎠᏂᏧᏏ ᏥᎷᏏᎵᎻ ᏅᏓᏳᎶᏒᎯ ᎬᏩᏚᏫᏛ ᎤᎾᎴᏅᏅᎩ, ᎠᎴ ᎤᏣᏛᎩ ᎠᎴ ᎦᎨᏛ ᎠᏄᎯᏍᏗᏍᎬᎩ ᏉᎳ, ᎾᏍᎩ ᎤᏙᎯᏳᏒ ᎬᏂᎨᏒ ᎢᎬᏩᏅᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎩ. ᎠᏴᏍᎩᏂ ᎦᏓᏅᏖᏍᎬ ᏅᎵᏌᎵᏉ ᏂᎯ ᏗᏍᎩᏳᎪᏓᏁᏗᏱ, ᎠᎴ ᎠᏫᏉ ᏧᏭᎪᏙᏗ ᎨᏒᎢ; ᎥᎥ, ᎥᏝ ᎠᏋᏒ ᏱᏗᎦᏓᏚᎪᏓᏁᎭ; ᎠᏎᏃ ᏓᎬᏍᏕᎸ, ᎩᎳᏈᏴ ᎡᏝᏪ ᎨᏎᏍᏗ. ᎠᎴ ᎾᏍᏉ ᎤᏚᎩ ᏥᏴᎠ ᎤᏁᎳᏅᎯ, ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏓᏅᏘ ᎠᎴ ᎤᏂᏁᎫᏥᏛ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏅᏒ ᏧᏃᎯᏳᎭ. ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎣᎦᏁᎳᎩ; ᎦᏙ ᏗᎦᏓᏛᏙᏗ ᏂᎯ ᏥᏌ ᎾᏎᎵᏗ ᎮᎯ? ᏍᎩᏛᏔᏂᏄᎴ? ᎬᎦᏔᎭ ᏂᎯ ᎾᏍᎩ ᎨᏒᎢ-ᎦᎸᏉᏗᏳ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎨᏒᎢ ᎯᎠᏃ ᏂᎦᏪᏎᎴᎢ, ᎦᎪ ᎯᎠ ᏥᏂᏣᏛᏅ ᎤᎵᎢ ᏰᎭ, ᎠᎴ ᎡᏃᏱ ᎠᏰᎵ ᏱᏭᎷᏤᎸ, ᎠᎴ ᎯᎠ ᏱᏄᏪᏎᎸ, ᎩᎾᎵᎢ, ᏦᎢ ᎦᏚ ᏗᏍᏆᏙᎳᏍᏓ; ᏚᏟᏂᏆᏅᏁ ᏫᎵᎻ, ᏂᎦᏓ ᎤᏔᎷᎩᏍᎬ ᎤᎵᏛᏔᏁᎢ. ᏂᎯᏍᎩᏂ ᏗᏤᎾᎢ ᏥᎩ, ᎤᏲ ᎢᏣᎵᏍᏓᏁᏗ! ᎦᏳᎳᏰᏃ ᎢᏥᎭ ᎢᏥᎦᎵᏍᏓᏗᏍᎩ. ᎿᏉ ᎢᏨᏃᏁᎭ, ᎠᏏᏉ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎾ, ᎾᏍᎩ ᎿᏉ ᏂᎦᎵᏍᏔᏅᎭ ᎢᏦᎯᏳᏗᏱ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ. ᎪᏯᏛ ᎭᏫᏂᏣ ᏫᏄᏩᏁᎢ ᎠᏍᎪᎵ. ᏓᏕᏲᎱᏍᎨᏃ ᎢᎸᎯᏢ ᎠᏓᏁᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎾᏙᎴᏆᏍᎬᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎾᏍᏉ, ᎢᏳᏃ ᎢᎬᏩᏍᏗᎭᏉ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ, ᎨᏥᏱᏢᏗ ᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᏰᎵᏉ ᏔᎵᏁ ᏗᎬᏩᏱᏢᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᏞᏍᏗ ᎢᎩᏣᎦᎸᎢᏒᎩ, ᎢᏓᏎᎯᏉᏍᎩᏂ ᎢᏓᏙᎴᎰᎯ ᎤᏤᎵᎦ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ; ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸ ᎯᎠ ᏥᏂᎬᏅ; ᏚᏂᏯᏙᎸᎩ ᏗᏆᏄᏬ, ᎠᎴ ᎠᏆᏄᏬᏍᏗ ᎤᎾᏌᏍᏔᏅᎩ. ᎯᎠ ᎾᏍᎩ ᎠᏂᏯᏫᏍᎩ ᏄᎾᏛᏁᎸᎩ. ᏗᏥᎦᏴᎵᎨᎢ ᎹᎾ ᎠᎾᎵᏍᏓᏴᏗᏍᎬᎩ ᎢᎾᎨᎢ, ᎠᎴ ᏚᏂᏲᎱᏒ; ”ᎦᎵᏉᎩ ᎠᏎᏍᏗ ᎣᏍᏓ ᎠᎫᎷᏤᏗ.” ᏌᏉ ᎤᎬᏫᏳᎯ, ᏌᏉ ᎪᎯᏳᏗ ᎨᏒᎢ, ᏌᏉ ᏗᏓᏬᏍᏗ ᎨᏒᎢ; ᎨᏍᏗ ᏩᎾᎢᏱᎩ ᎤᏔᎷᎩᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏫᎵᎻ ᎠᏎᏃ ᏍᏔᏯ ᎠᏁᎸᏗᏍᎨᎢ. ᎠᏎᏃ ᎤᏩᏒ ᎠᏰᎸ ᎠᏓᏁᎸ ᎧᏁᎢᏍᏗᏍᎬᎩ ᎾᏍᎩ ᏄᏪᏒ. ᏥᏳᎯᏃ ᎤᏣᏅ, ᏚᏪᏐᏤᎢ, ᎤᏩᏒᏃ ᎤᏪᏚᎲ ᏭᎷᏤᎢ. ᎾᎯᏳᏰᏃ ᏰᎵᏉ ᏗᎨᏣᏕᏲᏗ ᎡᏤᎵᏎᎸᎢ, ᎤᏚᎸᏗᏉ ᏂᏣᎵᏍᏓᏁᎭ ᎩᎶ ᏔᎵᏁ ᎢᏤᏲᏗᏱ ᏄᏍᏛ ᎢᎬᏱᏱ ᏗᏕᎶᏆᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ; ᎠᎴ ᎤᏅᏗ ᎤᎾᏚᎵᏍᎩ ᎾᏍᎩᏯ ᏂᏣᎵᏍᏔᏅ, ᎥᏝᏃ ᎤᏴᏍᏗ ᎠᎵᏍᏓᏴᏗ. “ᏕᏨᏯᏓᏂᎸᎦ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. “ᎠᏥᎪᏅᏔᏁᎢ ᎠᏣᏗ. “ᎡᏝᏪᎯ, ᏧᏍᏆᏴᏍᏗ!” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ. ᎠᏎᏃ ᎤᏁᎷᏅᏉ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎷᎦ! ᎯᎷᎦ! ᎯᏯᏛᎥᎦ! ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏓᏥᏯᏛᏂᏍᎪ ᎢᏣᏤᎵᎦ ᎤᎬᏫᏳᎯ? ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᎥᏝ ᏲᎩᎧᎭ ᎤᎬᏫᏳᎯ, ᏏᏌ ᎤᏩᏒ! ᎯᎠᏃ ᎾᏍᎩ ᏅᏃᎱᎶᏗ ᎾᎿ ᎧᏃᎮᏛ ᏥᎨᏥᏫᏎᎴᎢ; ᎿᏉᏃ ᎠᎾᏛᎬᎦ, ᎠᏍᎩᎾ ᎦᎷᎪ ᎩᎳᏉ ᎢᏴᏛ, ᎠᎴ ᎠᎩᏍᎪ ᎧᏃᎮᏛ ᏧᏂᎾᏫᏱ ᎠᏫᏒᎯ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯ ᎢᏥᏆᎵᏏ ᎤᎵᏍᏈᏗ ᎠᎴ ᎠᏖᎵᏙ ᎦᏚᎢᏗᏢ ᏕᏥᏅᎦᎵᏍᎪᎢ; ᎭᏫᏂᏍᎩᏂ ᎨᏒ ᎢᏥᎧᎵᏨᎯ ᎨᏐ ᎠᏎᏉ ᎠᏓᎩᎡᏗ ᎨᏒ ᎠᎴ ᎠᏍᎦᎾᎢ. ᎡᏏᏱᏃ ᎬᏗᏍᎩ ᎬᏩᏍᏓᏩᏛᏒᎩ ᏐᏇᏓ ᏈᎵᏱ ᎡᎯ, ᏕᏏᎶᏂᎦᏃ ᎠᏁᎯ ᎡᎵᏍᏓᎦ ᎠᎴ ᏏᎬᏓ, ᎦᏯᏃ ᏓᏈ ᎡᎯ, ᏗᎹᏗᏃ, ᎡᏏᏱᏃ ᎠᏁᎯ ᏗᎩᎦ ᎠᎴ ᏠᏆᎹ. ᏗᎬᏩᎸᏌᏛᏍᎩᏂ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎨᏒ ᎣᏍᏛ ᎢᏯᎾᏛᏁᎯ, ᎠᏂᏧᏏ ᎢᎬᏱ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ; ᏧᏓᏏᏃ ᎤᏡᏗᏍᎩ ᎾᏍᏉ ᎠᎦᏔᎯᏳ ᎨᏒᎩ ᎾᎿᏂ, ᏥᏌᏰᏃ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏯᏃᎩᏳ ᎾᎿ ᏓᏂᎳᏫᎬᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᏟᏂᎬᏁᎮᏍᏗ ᎾᎩᏴᏍᏗᏱ, ᏱᏅᏎᎦᎩᏰᏃ ᎩᎶ ᎾᏍᎩ ᏧᏕᎶᏆᎡᎸᎯ ᎨᏒ ᎾᏍᎩᏯ ᏄᏬᎯᏳᏒᎾ ᎨᏒ ᏴᎦᏅᎢᏍᏓ. ᏥᎪ ᎦᎶᏁᏛ ᏧᏅᏏᏓᏍᏗ ᎾᏍᎩ? (ᎤᏁᎫ ᎤᏁᎢᏍᏗ ᏥᏁᎦ,) ᎠᏴ ᎤᏟᎢ; ᏓᎩᎸᏫᏍᏓᏁᎲ ᎤᏟ ᎢᎦᎢ; ᎥᎩᎵᎥᏂᎸ ᎤᏟᎯᏳ ᎢᎦᎢ; ᏗᎦᏍᏚᏗᏱ ᎥᎩᏴᏔᏅᎢ ᎤᏟ ᎢᎦᎢ; ᎠᎩᏲᎱᏏᏕᎾ ᎨᏒ ᏯᏃᏉ; “ᎣᏏᏉᏗ ᏫᎵᎻ ᏃᏉ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎾᏍᎩᏃ ᎤᏂᎪᎵᏰᎥ, ᎤᎾᎵᎮᎵᏤ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᏍᎩ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ ᎨᏒᎢ ᎠᏎᏃ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎨᏒ ᎢᏓᏓᏎᎪᎩᏍᎩ ᎠᎴ ᎤᏟ ᎢᎦᎢ, ᎾᏍᎩ Ꮎ ᎢᎩᎨᏳᎯᏳ ᎢᏳᎵᏍᏔᏅᎯ ᏥᎩ ᎢᏳᏩᏂᏌᏛ. “ᎠᏎᏃ ᎨᏍᏗ ᏚᏳᎪᏛᎢ ᏱᎩ,” ᎤᏦᏱᎴ ᏲᎾ ᎤᏤᏍᏙ. ᏚᎨᎯᏙᎸᎩᏃ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ. ᎠᏦᏴ ᏭᏴᎴ. Ꮶ ᎢᏳᏟᎶᏓ ᎾᎥ, ᏧᏪᏅᏒ ᎨᎲ. ᎻᏏᏱ ᏭᏂᎷᏨ, ᎤᎾᏓᏅᏖᎸᎩ ᏈᏗᏂᏱ ᏭᏂᎶᎯᏍᏗᏱ, ᎠᏎᏃ ᎥᏝ ᎤᎾᏁᎳᎩ ᏱᏚᏪᎵᏎᎴ ᎠᏓᏅᏙ. ᏕᎦᏄᎪᏩᏃ ᏧᏤᎵᎦ ᎠᏫ, ᎢᎬᏱ ᏓᎴᏁᎰᎢ, ᎠᎴ ᎠᏫ ᎬᏩᏍᏓᏩᏕᎪᎢ; ᎠᏃᎵᎪᏰᏃ ᎧᏁᎬᎢ; ”ᏗᏁᎸᏙᏗᎨ?” ᏐᏉ ᎢᏳᏩᎦᏘ, ᏥᏫᎾ ᏥᎨᎲ, ᎣᎩᎾᎵᎪᏓ ᎡᎲ ᎠᎨᏳᏣ. ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; Ꮀ ᎤᏍᏆᏂᎪᏗᏳ ᎾᏍᎩ, ᏂᏥᎦᏔᎲᎾ ᏥᎩ ᏧᏓᎴᏅᎢ, ᎠᏃ ᏥᏓᎩᏍᏚᎢᎡᎸ ᏗᏥᎦᏙᎵ. ᎾᏍᎩᏃ, ᎪᎱᏍᏗ ᎤᎵᏍᏔᏅ. ᎾᏂᎥᏰᏃ ᎠᏥᎸ ᎬᏗ ᎠᎹ ᎨᏥᏅᏝᏰᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏂᎦᎥ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎠᎹ ᎦᏅᎵᏰᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎠᏆᏚᎵᎭ ᎠᏂᏍᎦᏯ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᎤᎾᏓᏙᎵᏍᏙᏱ, ᏧᏂᏌᎳᏙᏗᏱ ᏗᎦᏓᎭ ᏂᎨᏒᎾ ᏧᏃᏰᏂ ᏄᏂᏔᎳᏬᏍᎬᎾ ᎠᎴ ᏄᎾᏜᏏᏛᎡᎲᎾ. ᎢᏳᏍᎩᏂᏃ ᏙᏣᏓᎸᏉᏗᏍᎨᏍᏗᏉ, ᎢᏥᏍᎦᏅᎨᏍᏗ, ᎠᎴ ᏗᎧᎾᏩᏛᏍᏗ ᏕᏧᎪᏓᏁᎮᏍᏗ ᎢᏥᏍᎦᏅᏨᎯ ᎨᏒᎢ. ᎠᎦᏗ ᏚᏯᏪᎬ ᏣᎵ ᎤᏚᎬ ᎤᎯᏍᏗ ᏏᏆ ᎦᎷᏯᏍᏗᏉ ᎬᏘ. ᎠᎴ ᏔᎵᏁ ᏅᏩᏓᎴ ᎤᏅᏎ ᎤᏅᏏᏓᏍᏗ ᎦᎬᏩᏂᏐᏢᏔᏅ, ᎠᏒᎭ ᎤᏂᎨᎯᏙᎴᎢ. ᎨᏍᏗ ᏄᏍᏛ ᎤᏃᏴᎬ ᎠᏇᎵᏒ ᏳᏃᏴᎨ ᎠᎦᎸᏥ. ᏚᏓᏅᎡᎸᏃ, ᎠᎴ ᏔᎵᏁ ᏥᏳᎯ ᎤᏣᏅ, ᎠᏍᎪᎾ ᏭᎶᏎᎢ. “ᏫᎵᎻ ᏚᏙᎡᏍᏗ,” ᎤᏩᏌ ᏄᏓᏪᏎᎴ. ”ᎯᏯᎦᏎᏍᏕᏍᏗ ᎰᎻ!” ᎤᏪᎷᏁ ᏌᏌ ᎠᏨᏯ. ᎤᎵᏍᎨᏛ ᎤᏰᎸᎯ ᎠᎩᏃᎯᏎᎸ ᎫᏩᏖᎰᎸ ᎤᎾᎵᏗᎩᏛ. ᎾᏃ ᎠᎩᏍᏗᏱ ᎤᎬᏩᎵ ᎪᎱᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᎢᏗᎦᏔᎭ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎱᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᎠᏂ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᏅᏩᏓᎴ ᎤᏁᎳᏅᎯ ᏁᎲᎾ ᎨᏒ, ᏌᏉ ᎤᏩᏒ. ᎾᎥᏃ ᎢᏳᎾᏓᎵ ᎤᏂᏑᎵᎪᏤ ᎤᏂᏰᏣᏍᎬ ᎾᏗᎦᎵᏍᏙᏗᏍᎨ ᏍᏏᏉᏯ ᎤᏪᏥ ᏑᏓᎵ ᎢᏳᏕᏘᏴᏓ ᎠᎨᏳᏣ ᎤᏕᎶᏆᎡ ᏧᎪᎵᏰᏗ ᏣᎳᎩ ᎠᎴ ᏧᏬᏪᎶᏗ. ᎤᎾᎵᏓᎩᏍᏗ ᎤᎾᏗᏍᎦᎶᏗ ᎠᎴ ᏧᎾᏓᏲᎯᏍᏗ? ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏓᏅᏅ ᏧᎾᎵᏍᎪᎸᏔᏅᎯ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏅᏙᎥ ᏅᏗᎦᎵᏍᏗᏙᏗᏍᎬᎢ. ᎬᏂᎨᏒᏍᎩᏂ ᏂᎬᏁᎲ ᎠᏓᏅᏙ ᎠᏂᏏᏴᏫᎭ ᎨᏥᏁᎭ ᎪᎱᏍᏗ ᎣᏍᏛ ᎤᏅᏙᏗᏱ. ᏧᏂᏐᎯᏍᏗ ᎤᏛᏅ Philadelphia ᏓᏳᎶᏒ ᎠᏧᏣ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏰᎵ ᏂᏫ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᎸᎯᏳ ᏓᏰᏥᎪᎢ ᏴᏫ ᎤᏪᏥ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᎵᏂᎬᎬ ᎤᏬᎴᏍᏗ, ᎠᎴ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸ ᎦᎸᎶᎢ. “ᏥᏟᏔᏓ, ᎤᏩᏙᎯᏴᏓ ᎨᏎᏍᏗ,” ᎤᏍᎦᎳᏤ ᏛᎦ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏅᏖᏍᏗ ᎾᏍᎩ ᏂᎯ ᏧᏩᎫᏔᏅᏒ ᏗᏣᏓᎴᏅᏛ ᏴᏫ ᎤᏇᏓᎵ ᎨᏒᎢ, ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᎨᏦᏎᎸᎯ ᎾᏍᎩ Ꮎ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎨᎪᏎᎯ ᏥᎩ, ᎾᏍᎩ ᎤᏇᏓᎸ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏗᎪᏱ ᏗᎬᏔᏅᎯ; ᎤᏃᎯᏳᏅ ᏂᎦᏪᏍᎬ ᏍᎩᎾᎾ ᎢᏳᏕᏘᏴ ᏄᏍᏛ ᏗᎧᏃᏗ, ᏃᎴ ᎠᏉᎯᏳᏔᏅ ᏣᏉ ᎡᏍᎦ ᏱᏂᎬᏛᎦ ᏃᎴ ᎤᎵᏍᏗ. ᎤᏟᏍᏓ ᎤᏅᎪᏤ ᏫᎵᎻ, ᎤᏟᏍᏓ ᎤᎪᏁ ᏂᎦᏓ, ᏃᎴ ᎤᎦᎾᏕ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ. ᎢᏓᎵᏅᏟ ᎾᏂᎥ ᎩᎶ ᏄᏛᏅᏉ ᎠᏥᏯᏅᎲ, ᎾᎿ ᏅᏩᏛᏁᏍᏗ ᎤᏁᎳᏅᎯ ᏓᎧᎿᏩᏗᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᎨᏳᎢ, ᏂᎪᎯᎸᏉ ᏥᏦᎯᏳᎲᏍᎪᎢ, ᎥᏝ ᎠᏴ ᏥᎦᏔᎲᏉ ᎢᏳᏍᏗ, ᎪᎯᏍᎩᏂ ᎨᏒ ᎠᎩᎪᏁᎸᎢ ᎤᏟ ᎢᎦᎢ ᏗᏥᎸᏫᏍᏓᏏ ᎡᏥᏍᏕᎸᏗᏱ ᎨᏒᎢ, ᎢᏥᎾᏰᏍᎬ ᎠᎴ ᏕᏥᎾᏫᏍᎬᎢ; ᎪᎯᏓ ᏚᎾᎧᎾᏁᎢ ᏫᎵᎻ. ᏰᎵ ᏥᏍᎦᏰᎬᏍᏓ ᏨᏆᎧᏃᏗ ᎨᏒ. ᏒᎧᏔ ᎤᏩᏂᎦᏢ, ᎤᎩᎶ ᏛᎦ ᏗᎦᏂᏱᏍᎩ ᎦᏂᏓᏛ ᎠᏓᏂᏛᏂᏍᎪ ᏃᎴ ᏗᎦᏒᎳᏍᎪ. ᏗᎧᏃᎩᏍᎩ ᏥᏍᏆᏯ, ᎠᎧᏔᎭ ᎤᏍᏆᎳ ᏃᎴ ᎤᏬᏚᏨ ᎨᏒ ᎬᏅᎢ, ”ᎤᎦᎾᏍᏓ, ᎤᎦᎾᏍᏓ, ᎤᎦᎾᏍᏓ.” ᎾᏍᎩ ᏣᏍᏆᏂᎪᏙᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ, ᏄᏓᏓᎸᎾ ᎠᎴ ᎪᎱᏍᏗ ᎦᏰᏤᎵᏎᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎦᎾᏄᎪᏥᎸ ᎬᏗᏍᎩ, ᎡᏍᎦᏰᏃ ᎤᏰᎸᏅ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᏛᏍᏆᎸᎯ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎢᏤ ᎧᏃᎮᏛ ᏗᎦᏥᏯᏠᎢᏍᏓᏁᏗᏱ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒ ᎠᎴ ᏧᏓ ᏏᏓᏁᎸᎯ ᎨᏒᎢ. ᎢᏳᏰᏃ ᏂᎯ ᎢᎾᎨ ᎡᎯᏯ ᎣᎵᏩ ᏡᎬᏨᏱᏢᏅᎯ ᏱᎩ, ᎠᎴ ᎾᎿ ᎮᎯᏯ ᏂᎨᏒᎾ ᎨᏒ ᎣᏍᏛ ᎣᏍᏛ ᎣᎵᏩ ᏡᎬ ᏰᏨᏱᏢᏅ, ᎤᏟᎯᏳᏍᎩᏂ ᎠᎯᏘᏳ ᎾᏍᎩ Ꮎ ᎾᎿ ᎠᏁᎯᏯ ᏥᎩ, ᎨᏥᏱᏢᏗ ᎾᎿ ᎤᏅᏒ ᎤᎾᏤᎵᎦᏯ ᎣᎵᏩ ᏡᎬᎢ. ᎤᏍᏆᎸᎲ ᏧᏪᏥ ᏗᎩᏗ, ᎠᏎ ᏗᎩᏗ ᏧᏪᏥ, ᏯᎾᏓᎪᎾᏗ ᎠᎴ ᏣᏉ. ᎾᏍᎩ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎾᏍᎩᏯ ᎠᏓᏅᏙ ᎦᎾᎯᏍᏙᏗ ᏥᎩ, ᎡᏍᎦ ᏂᎦᎵᏍᏗᏍᎬᎾ ᎠᎴ ᎬᏗᏏᏴᏍᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎾᏍᎩ ᏥᏩᏴᎯᎭ ᎾᏍᎩ ᎠᏰᏙᎳᏛ ᎤᏗᏗᏢ; ᏅᏙ ᎢᎦ ᎡᎯ ᎤᏤᎵᏛ ᎤᏬᏚᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᏅᏩᏓᎴᎢ, ᎠᎴ ᏧᏃᏚᎯᏳ ᎨᏒ ᏃᏈᏏ ᏅᏩᏓᎴᎢ; ᎠᎴ ᏃᏈᏏ ᎧᎸ ᎤᏬᏚᎯᏳ ᎨᏒ ᏅᏩᏓᎴ ᏄᏍᏙ ᏃᏈᏏ ᏄᏍᏛ ᎤᏬᏚᎯᏳ ᎨᏒᎢ. ᎿᏉᏃ ᏌᎺᎵᏱ ᎦᏚᎲ ᎤᎷᏨᎩ ᏌᎦ ᏧᏙᎢᏛ ᎾᏍᎩ ᎾᎥ ᏥᎦᏚᎭ ᎦᏓ ᎠᎲ ᏤᎦᏈ ᏧᏁᎴ ᎤᏪᏥ ᏦᏩ. ᏩᎩᎷᏨ, ᎯᏥᏧᏣ, ᎨᏍᏗ ᏂᎯ ᎢᏤᏅᏒ ᏱᎩ ᎭᏂ ᎠᏆᏛᏅ, ᎠᏎᎩ ᎤᎯᏐᏗ ᎢᏣᏓᏅᏙ. ᏃᏗ ᎠᎵᎦᏲᏙᏗ ᎤᏰᎸ ᏣᎵᎧᏲᏗᏍᎪ ᎱᏰᎸᏁᎢ. ᎾᏆᏕᏘᏴᎲ ᏂᎬᏂᏏ ᎡᎵᏍᏗ.” ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏏ ᏞᎦ ᎢᏨᏰᎳᏗᏙᎭ, ᎿᏉᏃ ᏅᏛᎩᏅᏏᏛ ᏧᏬᎸ ᏮᏛᏥᎶᏏ. ᎬᏂᏳᏉ ᎢᏣᏤᎵ ᎦᎵᏦᏕ ᏅᏔ ᏁᏨᏁᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏓᏍᏓᏩᏗᏙᎯ ᏥᏌ ᎤᎨᏳᎯ ᎯᎠ ᏄᏪᏎᎸᎩ ᏈᏓ; ᎤᎬᏫᏳᎯ ᎾᏍᎩ. ᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎤᏛᎦᏅ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎦᏚᎢ ᎤᏄᏬᏍᏗ ᎤᏓᏠᏍᏔᏅᎩ ᎨᏒᎢ, ᎦᏚᎢ ᎤᏄᏬᏍᏗ ᎤᏓᏠᏍᏔᏅᎩ, ᏂᏚᏄᏩᎥᎾᏰᏃ ᎨᏒᎩ, ᎠᎴ ᎥᏓᎵ ᏭᎵᏔᏗᏅᏒᎩ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏂᏲᏏᏍᎩ ᎠᎴ ᎤᏂᏔᏕᎩᏍᎩ ᎤᎾᏓᏅᏘ ᎢᏳᎾᎵᏍᏙᏗᏱ; ᏛᎨᏥᎧᎵᎵᏰᏃ. ᏛᎦ, ᏍᎪᏯ, ᏙᎵᏓᏍᏆ, ᏩᏐᏝ, ᏧᏂᏌ, ᏙᏌ, ᎡᏙᏓ ᏗᎦᏅᎯᏓ ᏗᎦᏅᏌᏗ, ᏧᏂᎦᏃᏥ, ᏔᎳᏚ--- ᎢᏳᏍᏗᏉ ᎫᏓᎸᎬ ᏓᎩᏏᎳᏛ, ᏍᏉᏰᏃ ᎠᏆᏕᏗ, ᏣᎨ?” ᏰᎵᏉᏍᎪ ᏂᎦᏗ ᎤᏂᎸᏉᏗ ᏏᏆ ᏯᏘᏃᎦ ᎰᎻ ᎠᎪᏕᏍᎩ ᎤᎾᏛᏁᎸᏗ ᎠᎬᏱᏣ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ ᎠᎬᏱᏣ. ᎯᎠᏰᏃ ᏴᏫ ᏧᏂᎾᏫ ᏚᎵᏦᎲᏒ, ᎠᎴ ᏓᏂᎵᎷᎬ [ᎦᏲᎵᏳ ᏓᏛᎩᎭ, ᎠᎴ ᏗᏂᎦᏙᎵ ᏚᏂᏍᏚᏅ; ᎾᏍᎩ ᏗᏂᎦᏙᎵ ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏓᏂᎵᎷᎬ ᏗᎬᏩᎾᏛᎪᏙᏗᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏧᏂᎾᏫ ᏗᎬᏩᏃᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏗᎬᏩᎾᏓᏁᏟᏴᎡᏗ] ᏂᎨᏒᎾ ᏚᎾᏓᏅᏛ, ᎠᎴ ᏗᎦᎦᏥᏅᏬᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏴ ᏣᏂ, ᎢᏓᎵᏅᏟ ᎾᏍᏉ ᏥᎩ, ᎠᎴ ᎢᎦᎵᎪ ᏩᏕᎩ ᎢᏗᎩᎵᏲᏥᏙᎲᎢ, ᎠᎴ ᎬᏂᏗᏳ ᎨᏒ ᎾᏍᎩ ᎤᏤᎵᎦ, ᎠᏴ ᎨᏙᎲᎩ ᎠᎹᏰᎵ ᏆᏗᎹ ᏥᏚᏙᎥ, ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎠᎩᏍᏛᏗᏍᎬᎩ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᏥᏃᎮᏍᎬ ᎢᏳᏍᏗ. ᏣᏁᎳ ᎠᏰᎵ ᏫᎦᏅᎨᎢ ᏣᏄᏏ. ᎤᎩᏨᏓ ᏑᎾᎴ, ᎤᎾᏛᏅᎢᏍᏔᎾ ᏧᏂᏰᎸᏍᏗ, ᏚᏅᏍᎦᏝᏁ ᎦᎷᏯᏍᏘ ᏚᎾᎭᏄᏮ ᎭᏫᏂᏣ, ᎣᎭᏁ ᎢᏴ ᏧᏅᏙᏗ ᏗᎪᏍᏔᏱ ᏗᎬᏙᏗ ᎤᏁᎵᏎ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᎼᏏ ᏱᏥᏁᎴ ᎾᏍᎩ Ꮎ ᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ; ᎡᏙᏓᏍᎩᏂ ᎢᏥᏁᎭ ᎦᏚ ᎤᏙᎯᏳᎯᏯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏭᎷᏣ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎪᏪᎵ ᎤᏅᏍᎦᎴ ᏗᎦᏃᏣᏝᏍᎩ ᎤᏩᏣᎦᎸᏓ ᎠᎪᎵᏰᏗ ᎪᏪᎵ. ᎤᏄᎪᏨᏃ ᎤᏍᏓᏩᏛᏎᎢ; ᎠᎴ ᎥᏝ ᏯᎦᏔᎮ ᎤᏙᎯᏳᎯ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᏄᏛᏁᎸᎢ, ᎠᏆᏁᎳᏫᏎᏉ ᎡᎵᏍᎨᎢ. ᎬᏂᏳᏉ ᎠᏠᏱᎭ ᎨᎦᎫᏴᏓᏁᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᏍᎫᏕᏒᎯ ᏕᏥᎶᎨᏒᎢ, ᎾᏍᎩ ᏗᏥᎾᎯᏍᏓᏁᎸᎯ ᏥᎩ, ᎤᎾᎵᏍᏛᏃ ᎾᏍᎩ ᎤᏂᏍᎫᏕᏒᎯ ᏚᎵᎠᏴᎸ ᎤᎬᏫᏳᎯ ᏓᎿᏩ ᎠᏁᎩ ᎤᎾᏤᎵᎦ. ᎠᏎᏃ, ᏐᏉ ᎢᏳᏩᎦᏘ, ᏒᏃᏱ, ᏍᏊ ᎤᏴᏣ ᏥᎨᏒ ᎠᏎᏍᎩᏂ, ᏛᏆᏂᎩᏒ, ᏕᎦᏁᎸ ᏒᏃᏱ, ᏔᎵᏚ ᎾᏎ ᎾᎥ ᎨᏒ. ᏙᏓᏆᏓ ᎠᎬᏱ ᎾᎧᏔᎮᎢ ᏌᏌ ᎤᏂᎷᏥᏗᏒ---ᎠᏛᎩᏍᎨ ᎤᎵᏍᏗ ᎾᏂᏪᏍᎬ ᎤᏪᏥ ᎭᏫᏂ. ᎠᎴ ᏅᏩᏓᎴ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎥᏥᎪᎥᎩ ᎦᏙᎯ ᏓᏳᏄᎪᏥᏗᏒᎩ; ᎠᎴ ᏔᎵ ᏚᎷᎬᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᏥᏚᎷᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎢᎾᏛ ᎦᏬᏂᏍᎬ ᎾᏍᎩᏯ ᎦᏬᏂᏍᎬᎩ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᎪᎱᏍᏗ ᎢᏣᏓᏁᎳᏅᎩ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎢᏣᎢᏒᎢ, ᏞᏍᏗ ᏗᏙᎳᏅᏍᏗ, ᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᎦᏚ, ᎠᎴ ᎠᏕᎸ; ᎠᎴ ᎢᏥᏏᏴᏫᎭ ᏞᏍᏗ ᏔᎵ ᏗᏣᏄᏬ ᏱᏗᏥᏁᎮᏍᏗ. ᎠᏎᏃ ᎥᏝ ᎾᏍᏉ ᏓᏓᏏ, ᎾᏍᎩ ᎣᏍᏕᎯ, ᎠᎪᎢ ᏂᎨᏒ, ᎠᏎ ᎠᏥᎤᏍᏕᏎᏗ ᏱᎨᏎᎢ; ᎡᎯᏍᏛ ᎤᏰᏍᏔᏁᎢ ᏫᎵᎻ. ᏝᏍᎪ ᏲᎩᎭ ᏦᏘᏂᏓᏍᏗᏱ ᎤᏃᎯᏳᎯ ᏦᎦᏓᎵᎢ, ᎾᏍᎩᏯ, ᎾᎾᏛᏁᎲ ᎠᏂᏐᎢ ᎨᏥᏅᏏᏛ, ᎠᎴ ᎾᎾᏛᏁᎲ ᎤᎬᏫᏳᎯ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏏᏆᏏ? ᎠᏎᏃ ᎤᏟ ᎢᎦᎢ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏓᏁᎰᎢ--ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪᎭ; ᎤᏁᎳᏅᎯ ᎤᎾᏢᏉᏗ ᏓᏡᏗᏍᎪᎢ, ᎤᎾᏓᏙᎵᏍᏗᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏓᏁᎰᎢ. ᏗᏣᎧᏅᎦ, ᎢᏥᏂᏆᏘᎯ, ᎠᎴ ᎢᏥᏍᏆᏂᎪᎯ ᎠᎴ ᎢᏣᏗᏒᏅ; ᎠᏴᏰᏃ ᎪᎯ ᎢᏤᎲ ᏓᎩᎸᏫᏍᏓᏁ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎥᏝ ᏴᎨᏦᎯᏳᎲᎦ ᎾᏍᏉ ᎠᏎ ᎩᎶ ᏱᏥᏁᎮᎮᎸ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏫᏅ ᎤᏍᏓᏩᏛᏎᎢ, ᏙᎴᏛ ᎠᏄᏬ ᎤᏓᏇᏅᏕ ᎤᏰᎸᎭ ᎨᏒᎢ; ᎠᏂᏫᏅᏃ ᎬᏩᏂᏴᎮᎢ. ᎾᏃ ᏅᏲᎯ ᏧᎳᎨᏯᏛᏤᎢ, ᎨᏥᏛᎦ ᎾᏍᎩ ᎠᎾᏛᎬᎦ ᎤᎵᎮᎵᏍᏗᏳ ᏥᏓᎾᏓᏂᎸᎪ ᎧᏃᎮᏛ; ᎠᎴ ᎥᏝ ᏱᏚᏂᎿᏍᏕᏠᎢ; ᏞᎦ ᎠᏃᎯᏳᎲᏍᎪᎢ; ᎠᎴ ᎨᏥᎪᎵᏯ ᎠᏂᏑᎵᎪᎪᎢ. ᎠᎦᏗᏓ ᏅᏩᏍᏛ. ᎿᏉᏃ ᏉᎳ ᏕᎤᎴᏅ ᎠᏰᎵ ᎡᎵᎣᏈᎦ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎡᏗᏂᏱ ᎢᏤᎯ, ᎦᏙᎴᎣᏍᎦ ᎢᏥᎧᎵᏨᎯ ᎨᏒ ᏕᏥᎾᏰᏍᎬ ᎦᎸᎳᏗ ᎠᏁᎯ. ᎰᎻ, ᎡᎶᏗ ᏃᎴ ᏣᏄᏏ ᏃᎴ ᎡᎳᏆᏗ ᏭᏂᏴᎮ ᎧᏁᏌᎢ ᏭᏂᏌᏕ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᏅᏯ ᏓᎷᎬᏍᎨ ᏥᏍᏛᎾ ᏚᎭᏲᎲ, ᏐᏉᎯᎭ ᏓᏩᏘᏍᎬ ᏧᏂᏄᏌᏘ ᏓᏍᎫᏆᏓᎩᏍᎨ ᏃᎴ ᏂᏕᎬᎾᏓᎩᏍᎨ ᏧᎾᏓᏇᏅᎩᏍᏙᏗ, ᏕᎦᏯᎩᏍᎨ ᏓᏂᏂᏓᏛ ᏃᎴ ᎣᎭᏁ ᏗᏂᏅᏍᎨᏂ, ᎠᎾᏁᎸᏗᏍᎬᏉ ᎤᎾᎵᏗᎩᏍᏗ. ᏅᎩᏨᏓ ᏑᎾᎴᎢ ᎢᎦ ᏣᏓᏴᎳᏔᏍᎦ ᎦᎸᎶᎢ ᏃᎴ ᏥᏍᏆᏯ ᏣᎾᎵᏖᎸᎮᎭ ᏕᏧᎬᎢ, ᏩᎦ ᏥᏓᏂᏃᏴᎵᏍᏗᎭ ᏧᎾᏓᏕᏒᏓ ᏃᎴ ᏥᏔᎦ ᎠᏨᏯᎢ ᏣᏙᎯᎠ ᏃᎴ ᎠᎬᏱ ᏥᏓᏓᏏᏙᎭ ᏓᏆᎴᎳ ᏅᏃᎯ. ᎤᏰᏤ ᏫᎵᎻ ᏃᎴ ᎤᏯᎴᎢ ᏌᎳᏓ. ᎠᏂᏍᎩᎾᏰᏃ ᏧᎾᏓᏅᏙ ᎾᏍᎩ, ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸᏫᏍᏓᏁᎭ, ᎡᎶᎯ ᎠᏁᎯ ᎤᏂᎬᏫᏳᎯ ᎠᎴ ᎡᎳᏂᎬ ᏓᏂᏩᏛᎮᎦ, ᎾᏍᎩ ᏧᏂᏟᏐᏗᏱ ᏧᎾᎵᏍᏗᏱ ᎤᏂᏰᎸᎭ ᎦᎸᏉᏗ ᎢᎦ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏥᎩ. ᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᏙᏍᏓᏦᏍᎬ Mrs. Chapman, ᎠᏆᎵᏏᏀᎥᏍᏗ ᎨᏒ, Mrs. ᏭᏓᏂᏴᎡᎲ. ᎦᎶᎯᏍᏗᏳᎳ ᎤᎴᏅ ᏐᏉ ᎤᏬᏰᏂ ᎬᏘ ᎤᏍᏗᎩᏛ ᎨᏒ ᎪᎢᎭ ᎠᏫ ᎦᏁᎬ ᎤᏓᎥ ᎦᎶᎯᏍᏗ, ᏐᎢ ᎤᏬᏰᏅ ᎠᎬᏓᎨᏂ ᏫᏄᏩᏅ ᏙᎩᎧᏅ ᏐᏈᎵ ᎣᏥᏅ ᎠᎦᏍᎩ. ᎥᏝᏰᏃ ᏯᏆᏚᎵ, ᎢᏓᎵᏅᏟ, ᏂᏥᎦᏔᎲᎾᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒᎢ, (ᎢᏥᎦᏔᎾᎢᏉᏰᏃ ᏱᏅᏣᎵᏍᏓ ᎢᏨᏒ ᎢᏣᏓᏅᏖᏍᎬᎢ,) ᎾᏍᎩ ᎠᎫᏏᏲᎢᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎸ ᎢᎦᏛ ᎢᏏᎵ, ᎬᏂ ᎤᏂᏣᏘ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏴᎸᎯ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏚᏗᎦᎴᏯᏍᏔᏅ; ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏚᏁᎸ; ᎤᏓᏅᏘᏳ ᎨᏒ ᏅᏩᏍᏗᏉ ᏂᎪᎯᎸᎢ. ”ᎬᏯᎵᎮᎵᏤᎭ!” ᏍᏓᏯ ᏄᏪᏎ ᏫᎵᎻ. ᏒᎦᎾᏲᎪ! ᏔᎵᏚ ᎢᏯᏂ ᏧᏁᏠᏍᏗ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏯᎾᏛᏁᎯ, ᎾᏍᎩ ᎬᏂᏛ ᏡᎬ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏫᎬᏩᏂᏴᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᎦᏚᎲᎢ. ᎠᎦᏴᎵᎨᏰᏃ ᎬᏂᏛ ᎤᏤᎵᎦ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎤᏁᎸ ᎤᏪᏥ ᎬᏂᏛ ᎤᏣᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ. ᏤᏍᏗ ᎠᎦᏗᏓ ᏱᏍᏗᎨᏍᏗ ᎪᎱᏍᏗ ᏍᏗᏨᎢᏍᏙᏗ.” ᎠᏆᏅᏛ ᏔᏘᏲᎯ. “ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ ᏄᏍᏛ ᎠᎦᏍᏉᏟᎢ,” ᎤᎵᏍᎦᏎᏔᏁᎢ ᏧᏍᏆᏴᏍᏗ. ᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎬᏂ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎠᏂᎶᏐᏅᎭ ᏌᏉ ᎤᏍᏗ ᎠᎴ ᏌᏉ ᏭᏍᏗᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎥᏝ ᏴᎦᎶᎯ ᎬᏂ ᏂᎦᏗᏳ ᎠᎧᎵᏨᎭ. ᎤᎬᏫᏳᎯᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᎪ ᎯᎠ ᎠᏂᏔᎵ ᎨᏒ ᎢᏣᏚᎵ ᏗᏨᏲᎯᏎᏗᏱ? ᏆᎳᏆ, ᎤᎾᏛᏁᎢ. Ꭸ ᏩᎩᎷᏨ ᏃᎴ ᎠᏆᎴᏫᏍᏔᏅ ᎠᏆᏔᎲᏒᏃ, ᎩᎶ ᏄᏓᎴ ᏯᎧᏔᎭ ᎢᎦᏪᏍᏗ ᎠᎴ ᎧᏃᎮᏓ, ᏱᎦᎵᎡᎵᎩ ᎠᏋᏗ ᏓᎩᏏᎳᏛᎢ. ᎤᏬᎯᏨᏃ, ᎠᎴ ᎤᎾᏰᎯᏍᏗᏳ ᏄᎵᏍᏔᏅ ᏥᏳ ᎦᏂᏓᏍᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎹᏟ ᎬᏗ ᎨᏒ ᎤᎶᏐᏅᎢ, ᏉᎳ ᏚᏪᏯᏔᏅᎩ, ᎬᏃᏌᏍᏗᏍᎬᎢ ᎤᏩᏂᎨᎢ ᎥᏃᏥ “Ꮘ-Ꮘ-Ꮘ!” ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎢᏥᎷᏤᎸᎩ ᎯᎠ ᏥᎾᏂᏪ ᎠᎾᏙᎴᎰᏍᎩ; ᎾᏍᎩ ᎤᏣᏘ ᎠᏆᏚᎵᏍᎬ ᎬᎪᏩᏛᏗᏱ, ᎠᎴ ᎦᏅᏓᏗᏍᎬ ᏕᏣᏠᏱᎸᎢ ᎾᏍᎩᏃ ᎠᎩᎧᎵᎢᏍᏗᏱ ᎤᎵᎮᎵᏍᏗ ᎨᏒᎢ, ᎢᎬᏪᏅᏛᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎪᏢᏩᏗᏒ ᎤᎵᏥᏙᏁᎢ, ᎤᏃᎮᎴ ᎦᎶᏁᏛ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ. ᎤᏔᎷᎩᏍᎩ ᎤᎵᎪᎲᏍᏗ, ᎤᎧᎭᏲᏛ ᏏᏅᏓ ᎨᏐ ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏲ ᏄᏍᏗᏓᏅ ᏍᎩᏴ, ᏕᏧᎬ ᎧᏂᎩᏛ ᏧᏆᎶᎦ, ᎾᏍᎩᏯ ᎤᏁᏍᏔᎳ ᎤᏲᏨ ᎦᎸᎶ ᏧᏓᏴᎳᏙ ᏂᏚᏍᏛ ᏕᏧᎬ, ᏃᎴ ᏅᏬᏘ ᎪᏒᏙᏗ ᎠᎾᎢ, ᎤᏬᏗᎨ ᎧᏁᏌᏟ ᎦᎳᎨᏴ ᎦᏙ. ᎠᏋᏌ ᎠᏆᏓᏍᏕᎸᏗ, ᏥᏌᎹᏗᏴ ᎬᏗᏍᎪ, ᎠᎴ ᏯᎩᏲᏏᎭ. “ᏥᎦᏔ ᎭᎾ ᏥᏴ ᎧᏁᏌᎢ ᎣᎳ ᏗᎬᎩᎶᏍᏙᏗ ᎦᎶᏔᏅ ᎠᏍᏆᏂᎪᏛ, ᎠᏓ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏍᎩ ᎯᎠ ᏥᏂᎦᏪ ᏥᎧᏁᎦ ᎥᏝ ᎠᏍᎩᎾ ᎤᏯᎢ ᎤᏁᎢᏍᏗ ᏱᎩ; ᏥᎪ ᎠᏍᎩᎾ ᏰᎵ ᏱᏓᏍᏚᎢᏏ ᏗᎨᏫ ᏗᎦᏙᎵ. “ᎮᎾᏗᎾ, ᎯᏣᏚᎵᏍᎨᏍᏗ ᏣᎪᏩᏛᏗ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.” ᏚᏯᏪᏣ ᏍᎩᎾᏛᏁᎲ, ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏍᎪᏍᏗ, ᏚᏯᏪᎨ ᎦᏙᏩᏕᎬ, ᏚᏯᏪᎨ ᎦᏅᎬ. ᎯᎠᏰᏃ ᏄᏪᏎᎴᎢ, ᎡᎯᏄᎪᎢ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ, ᏂᎯ ᎯᎦᏓᎭ ᎠᏓᏅᏙ. ᎤᏍᎪᏃ ᎤᏂᏲᎴ ᎠᏖᎵᏙᎩᎯ, ᎠᎴ ᎤᏂᏁᎴ ᎠᏛ, ᎾᏍᎩᏃ ᎤᏥ ᏭᏁᎴᎢ. ᏥᏌᏃ ᎤᎪᎲ ᏭᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᎨᏴ, ᏣᏢᎬ ᎡᏧᏓᎳᎩ. ᎠᎴ ᎾᏍᎩ ᎧᏃᎮᏍᎩ ᎢᏣᎵᏍᏕ ᎸᏙ-Ꮧ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ. ᎤᏂᏣᏘᏃ ᎤᏂᎪᎲ, ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏧᎵᏍᎪᎸᏓᏁᎸᎯ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏴᏫ. ᏌᏊ ᎢᏳᏩᎪᏗ ᏒᏃᏱ ᏫᎣᎩᎷᏣ ᏦᎨᏅᏒ ᎩᏟ ᎤᏍᎦᏎᏗᏊ ᏂᎦᏪᏍᎬ ᏓᏑᏫᏍᎬ ᎤᏠᏱᏊ ᎪᎱᏍᏗ ᎠᏊᎢᏴ ᏣᎪᏩᏘᏍᎪᎢ. ᏰᎵᏉ ᎦᏅᏍᏔ ᎬᏘ ᏚᏩᎭᏂᏍᏗ. ᎿᏉᏃ ᏕᎦᎳᏫᎥᎢ ᎩᎶ ᎢᏳᏍᏗ ᏚᎴᏁ ᎠᏆᎵᏏ ᎨᎺᎵ ᏧᏙᎢᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᎾᏂᎥ ᏴᏫ ᎬᏩᎸᏉᏗ, ᎠᎴ ᎤᏁᏤ ᎨᏥᏅᏏᏛ ᏞᎦ ᏧᏂᎧᎲᏍᏗᏱ. ᎢᏤᏯᏔᎯᏳ ᎨᏎᏍᏗ ᎾᏍᎩᏃ ᏞᏍᏗ ᎩᎶ ᎡᏍᎦ ᎤᏬᎭᏒᎩ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ; ᏞᏍᏗ ᎤᏴᏍᏗ ᎤᎿᏍᏕᏢ ᎦᎾᏄᎪᎬ ᎢᏣᏕᏯᏙᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎤᏂᏣᏘ ᎦᏓᎭ ᎢᏳᎾᎵᏍᏔᏅᎩ; ᏮᎩᏙᎵᎩ, ᏧᏍᏆᏴᏍᏗ ᎨᎵᎠ. ᎠᎴ ᎬᏂᏳᏉ ᎾᎿ ᎬᏂᎨᏒ ᏂᎬᏩᎾᏛᏁᎴ ᎼᏏ ᎠᎴ ᎢᎳᏯ ᎬᏩᎵᏃᎮᏗᏍᎨᎢ. ᏄᏨᏉᏛᎾ ᏃᎴ ᎨᏍᏗ ᎣᏍᏓ ᎤᏰᎸᎯ ᏱᎩ ᏯᏂᎸᏉᏗᎭ. ᎠᏎᏃ ᎤᎾᏟᏂᎬᏁᎴ ᎠᏍᏓᏯ ᎠᏂᏁᎬᎢ, ᎠᏂᏔᏲᎯᎮ ᎠᎦᏛᏗᏱ. ᎾᏍᎩᏃ Ꮎ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏂᏁᎬ ᎤᎬᏫᏳᏤᎢ. ᎠᏁᏓᎶᏄᎮᏍᎩ, ᎤᏂᎫᏏᏯ, ᎤᎾᏓᎵᏌᎳᏗ, ᎤᏂᎨᏳᎯ ᏱᏍᏛ ᎤᎾᏓᏅᏓᏗᏍᏗᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏂᎨᏳᏒᎾ, ᎠᏎᏃ ᏐᏊ ᎪᎱᏍᏗ ᏧᎾᏓᏕᏙᏗᏍᎨᎢ ᎤᎵᎮᎵᏍᏗ ᎠᏁᎲᎢ... ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ! ᎨᏍᏗ ᏳᏓᏍᏕᏓᎵᏴᏌ ᎤᎧᏛ ᏲᎾ. ᎠᏧᎬ ᎾᎥᏂ ᎤᎵᏍᏛᏧᏁ, ᏫᏓᎧᏁᎢ ᎠᏙᎯ ᎦᎸᎳᏗᎨ ᏚᏅᏓᏒ, ᎤᏓᏙᎵᏍᏔᏁᎴ ᏲᎾ ᏃᎴ ᎢᎾᎨ ᎠᏁᎯ ᎠᏟᏅᏨ, ᏍᏔᏯ ᏄᏪᏎ ᎤᏚᎩ ᏱᎨᏒᎾ. ᎿᏉᏃ ᏆᎴᏗ ᎤᏂᏴᎲᎩ ᏥᏌ ᎠᎴ ᎤᎵᎥᏂᎸᎩ. ᎢᎦ-ᎦᏘ ᏧᏂᎸᏌᏓᏕᏗ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᏗᏣᏤᎵ ᏴᏫ ᎢᏏᎵ ᎤᎾᏤᎵᎦ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᎯᎾᏃ ᎦᎪ ᏍᎩᏲᏎᎭ? ᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏁᏪᏎᎴᎢ, ᎦᎶᏁᏛ ᏂᎯ. ᎠᎦᏑᏴᏛ ᎡᏣᎸᎢ ᏧᏪᏥ ᏫᎨᏣᏲᎵᎭ. ᎡᎺᏅ. ᎾᏍᎩ Ꮎ ᎧᏁᎬ ᎾᎯᏳ ᎡᎶᎯ ᎤᏖᎸᏁᎢ; ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎤᏚᎢᏍᏔᏅ, ᎯᎠ ᏄᏪᏒ, ᎠᏏ ᏌᏉ ᏅᏓᏥᏖᎸᏂ ᎥᏝ ᎡᎶᎯᏉ ᎤᏩᏒ, ᎦᎸᎶᎢᏍᎩᏂ ᎾᏍᏉ. “ᏙᎢᏳᏍᏗ ᏂᎦᎵᏍᏗᎭ?” ᎤᏛᏛᏁ, ᏚᎪᎭ ᎨᏥᎾᏌᎢ ᎤᎾᏓᏓᏍᎬ. ᎭᏢ ᏗᏓᎴᎲᏍᎦ ᏓᎿᏩ ᎠᎴ ᏗᎵᏍᏗ ᎨᏒ ᏂᎯ ᎢᏤᎲᎴ? ᏝᏍᎪ ᎾᏍᎩ ᎠᏚᎸᏗ ᎨᏒ ᏗᏥᏰᎸ ᎭᏫᏂ ᏥᏓᎵᎭ ᎾᎿ ᏴᏗᏓᎴᎲᏍᎦ? ᎤᎾᎵᏘᏔᏅ ᏐᏈᎵ - ᏚᎾᏓᏍᏕᏓᎵᏴ ᎦᎷᏯᏍᏗ, ᎠᎬᏱ ᏐᏉ ᏃᎴ ᎠᏂᏐᎢ - ᎦᎨ ᎠᎵᏍᏆᏍᏗᎬ ᏃᎴ ᎤᎵᎪᎲᏍᏗ ᎠᎴᏂᏍᎬ. ᎠᎴ ᎾᏍᏉ ᎪᏪᎳ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎠᏂᏔᎵ ᎤᏂᏃᎮᎸᎯ ᎨᏒ ᎤᏙᎯᏳᎯᏯ ᎨᏒᎢ. ᏐᏉ ᎢᎦ ᎦᏓᏩᏕᎬ ᏚᏏᎳᏛ, ᎤᏍᏗ ᎠᏣᏗ ᎤᏭᏓᎸᏤ ᎠᏓᎾᏫᏗᏍᎬ. ᎦᏙ ᎰᏩ ᎤᏍᏗ? ᎠᏆᏓᏅᏙ ᎬᏗᏍᎨᏍᏗ ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎠᎴ ᎦᎪᎵᏍᏗ ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ; ᎠᎴ ᎠᏆᏓᏅᏙ ᎬᏗᏍᎨᏍᏗ ᏕᏥᏃᎩᏍᎨᏍᏗ ᎠᎴ ᎦᎪᎵᏍᏗ ᏕᏥᏃᎩᏍᎨᏍᏗ. “ᎠᎵᏍᏆᏙᎾ ᏃᎴ ᎠᎵᏛᏓ, ᎠᎵᏍᏆᏙᎾ ᏃᎴ ᎠᎵᏛᏓ. ᏦᏩᏃ ᎤᏰᏨ ᎤᎸᏅᎢ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᏅᏓᏳᏅᏏᏛ ᏄᏪᏎᎸ ᏄᏛᏁᎴᎢ, ᎤᏯᏅᎨᏉ ᎤᏓᏴᏍᏗ. ᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᎾᏍᎩ ᎤᏘᏰᏗ ᎨᏒᎢ, ᎠᏲᎵ ᎨᏒ ᎢᎪᎯᏛ, ᎥᏝ ᏱᏚᎾᏓᎴᎿᎣ ᎠᏥᎾᏝᎢ, ᏄᎬᏫᏳᏌᏕᎩ ᎡᎦᏃ ᏄᏓᎴᏒ ᎪᎱᏍᏗ. “ᎦᏙᏃ ᏍᎩᎪᏩᏘᏍᎬᎾ? ᎤᏛᏛᏁ ᏏᏆ. ᏫᎵᎻ-ᎢᎵᎻ-ᎢᎵᎻ ᎤᏩᏌ ᏓᏰᏏ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ.” ᎦᏓᏁ ᏂᏚᎵᏍᏔᏁ ᏗᎦᏙᎵ ᏚᏌᏬᎴ. ᎢᏳ ᎠᎴ ᎩᎶ ᎤᏓᏎᎪᎩᏍᏗᏱ ᏣᏟᏂᎬᏁᎰᎢ, ᎥᏝ ᏯᏘᏍᏚᎸᏍᎪᎢ ᎬᏂ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᎢᏳᏛᏁᎸᎯ ᏥᎨᏐᎢ. ᎤᏛᏅᎢᏍᏕ ᏧᎴᏗ ᏲᎾ ᎤᏤᏍᏙ ᎩᎶ ᎦᏬᏂᏍᎬ ᎤᏛᎦᏁ. ᏰᎵ ᎢᏯᏂ ᏙᎦᏦᏒ ᏗᏂᎳᏫᎩ, ᏃᎴ ᏔᎵᎭ ᎤᎾᏛᏐᏅ ᏗᏂᎳᏫᎩ, ᏐᏉ ᏂᎦᏓ ᎠᏃᎵᎩ ᎠᏘᏲᎯ ᏣᏂ ᎦᎳᎱᏂ. “Ꭾ, ᏍᏆᎦᏎᏍᏕᏍᏗ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ, ᎠᏓᎾᏏᏂᏙᎮ ᏏᏆ ᎤᏴᏍᏗ ᎧᏁᏌᎢ. “ᎠᏇᏍᏔᏁᎯ! ᎠᏇᏍᏔᏁᎯ!” ᎢᏴᏛᏃ ᏭᏂᎶᏒ, ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏃᎮᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎠᏍᎦᏯ ᎥᏝ ᎪᎱᏍᏗ ᏱᏚᎸᏫᏍᏓᏁᎭ ᎬᏩᏲᎱᏍᏗ ᎠᎴ ᎦᏰᎦᎸᏍᏗ ᎨᏒᎢ. ᏚᎨᏩᏗᏍᏗᏍᎬ. ᎤᏪᏅᏎᏃ ᏐᎣᏁᎵᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒᎢ, ᎠᎴ ᏚᎦᎮ ᏅᏩᎾᏓᎴ ᎦᏃᏙᏗᏱ ᎠᏂᏙᎾᎡ ᎪᎱᏍᏗ ᎾᎾᏛᎲᎾ, ᎠᏂᏐᎢᏍᎩᏂ ᎬᎩᎨᏳᎯᏳ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᏂᎦᏔᎭᏰᏃ ᎥᎩᏁᏤᎸᎯ ᎨᏒ ᎠᎩᏍᏕᎸᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ. ᏥᏙᎬ ᏥᎦᏘᏴ, ᎩᎳᏈᏴ ᎤᏩᎩᏰᏫᏒ ᎠᏓᏅᏖᏍᎬ, ᎡᏝᏪᎯ ᏄᎵᏍᏔᏅ. ᎠᎴ ᎠᎩᎪᎲᎩ ᎡᏆ ᎤᏁᎬ ᎦᏍᎩᎶ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎤᏪᎵ, ᎾᏍᎩ ᎤᎧᏛᎢ ᎡᎶᎯ ᎠᎴ ᎦᎸᎶᎢ ᎬᏩᎵᎡᎸᎩ, ᎥᏝ ᎠᎴ ᎢᎸᎯᏢ ᎬᏩᎵᎡᎸᎩ, ᎥᏝ ᎠᎴ ᎢᎸᎯᏢ ᎬᏩᏛᏗ ᏱᎨᏎ ᏭᏂᎶᎯᏍᏗᏱ. “ᎤᏨᏉᏗ ᏱᎨᏒᎾ ᏔᎵ ᏂᏚᏓᎴ ᏗᎪᏏᏐᏗ. ᎤᎩᏨᏓ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᎦᎹ, ᏧᎾᎳᏏᏕᏅ, ᏗᎧᏴᏤ ᏃᎴ ᏧᏳᏘ ᏗᏑᏱ. ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎠᏥᎸᎠᏁᎶᎯ, ᎾᏍᎩ ᎤᏩᏙᏗ ᏂᎦᎵᏍᏗᏍᎨ ᎠᏜ ᎦᏩᏒᎩ ᎾᎯᏳ ᏩᏴᎭ ᏱᎰᏩ ᎤᏤᎵ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏂᎦᏛ ᎾᏆᏛᎿᏕᎬ ᏗᎩᎦ ᎬᏂᎨᏒ ᏅᏓᏨᏁᎵ, ᎾᏍᎩ ᎣᏥᎨᏳᎢ ᎣᏣᎵᏅᏟ, ᎠᎴ ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎤᏠᏱ ᎠᏥᏅᏏᏓᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ; ᎯᎠ ᏧᏕᏘᏴᏌᏓ ᏐᏉ ᏃᎴ ᏔᎵᏉ ᎠᏂᎶᏍᎨ. ᎣᎭᏁ ᏂᎦᏓ ᎤᎾᎵᏛᏔᏃᏅ. ᏓᏟᎶᏍᏛᏃ ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ; ᎤᎦᏔ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏛᎦ. ᎩᎶᏍᎩᏂ ᎣᏍᏛ ᎠᎪᎵᏰᏍᎨᏍᏗ ᎠᎧᎵᎸᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎬᎧᎲᏍᎩ ᏥᎩ, ᎠᎴ ᎦᏯᎢᏎᏍᏗ, ᎾᏍᎩ ᎠᏍᎦᏯ ᎣᏍᏛ ᎤᏓᏅᏓᏗᏍᏗ ᎨᏎᏍᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩᏰᏃ ᎤᏩᎨᏫᏌᏘ ᏂᎨᏒᎾ ᎠᏛᎩᏍᎩ, ᏧᎸᏫᏍᏓᏁᎯᏍᎩᏂ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᏕᎳ ᎤᏁᎦ ᏗᎪᏒᏍᏔᏅ ᏃᎴ ᎠᏂᏃᎮᏍᎬ ᎡᏆ ᎤᏁᎦ ᎡᏙᏓ ᎨᏍᏗ ᎯᎸ ᏱᏭᏂᎷᎨᎢ. ᏦᎢᏁ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏌᏩᏂ, ᏦᎾ ᎤᏪᏥ, ᏍᎩᎨᏳᎭᏧ? ᏈᏓ ᎤᏲᎢᏳ ᎤᏓᏅᏓᏛᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏦᎢᏁ ᏍᎩᎨᏳᎭᏧ ᎤᏬᏎᎸᎢ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ ᏂᎦᎥ ᎪᎱᏍᏗ ᎯᎦᏔᎭ, ᎯᎦᏔᎭ ᎬᎨᏳᎢᏳ ᎨᏒᎢ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏕᎮᎶᎮᏍᏗ ᏗᏆᏤᎵᎦ ᎤᏂᏃᏕᎾ. ᎥᏝ ᎢᎸᎯᏳ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᎪᎲᎯ ᏱᎩ. ᎢᏳᏃ ᏗᎦᏓᎨᏳᎯᏳ ᏱᎩ, ᎤᏁᎳᏅᎯ ᎢᎩᏯᎠ, ᎠᎴ ᎠᏴ ᎡᏗᎨᏳᏒ ᎤᎧᎵᏨᎯ ᎨᏐᎢ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎩᎶ ᎠᏆᏒᏂᎦ; ᎦᏙᎴᎰᏍᎦᏰᏃ ᎠᏆᏓᏅᏬᏗ ᎨᏒ ᎠᎩᏄᎪᏤᎸᎢ. ᎤᏂᏩᏒᎨ ᎦᏓ ᎤᎧᎭᏲᏓ ᏐᏈᎵ ᎤᎾᎵᏙᎩᏯᏍᏗ ᏓᏳᏓᎴᏅ ᎦᏓᏁ ᏄᏩᏁᎸ ᎠᎹᏗᏍᏚᏥᏍᎩ ᏃᎴ ᏚᏂᏩᏒᎨᎢ ᏩᎦ ᎭᏫᏯ ᎠᏍᏙᏓ ᏚᏅᏣᏢ ᏃᎴ ᏓᏂᎪᏩᏗᏍᎨ ᎤᏃᎴ ᏗᏲᏙᏗ ᏚᎧᏌᏛᎢ. ᏓᏍᏆᎶᎨ ᎢᎦ ᎤᎵᎪᎲᏍᏗ, ᏣᏄᏏ ᏓᏲᎯᎮ ᏩᎩᎦ ᏃᎴ ᎢᏯ ᎠᏫᏌᏅ ᏫᏚᎩᏓ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏓᎲᏍᎨᎢ, ᎤᏂᏯᏛᏗ ᏱᎨᏒᎾ ᎤᏒᎯ. “ᎠᏆᏟᏂᎩᏓ ᏨᏆᎧᏃᏗ ᎢᎪᎯᏓ ᏔᎵᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᏗᎨᏫ; ᎦᏙ ᏂᎯ ᏎᏗᎭ ᎾᏍᎩ ᎯᏃᎮᏍᎬᎢ ᏥᏕᏣᏍᏚᎢᎡᎸ ᏘᎦᏙᎵ? ᎠᏙᎴᎰᏍᎩ, ᎤᏅᏛᏅᎩ. Ꮟ ᏛᎬᏔᏲᏎᎵ ᏫᏤᏓᏍᏗ.” ᎪᎱᏍᏗᏃ ᏧᏩᏅ ᎤᎾᏛᎦᏅ, ᎤᏁᏅᏎ ᎬᏩᏂᏴᎲᏎᎢ; ᎯᎠᏰᏃ ᎾᏂᏪᏍᎨᎢ, ᎤᎸᏃᏘᎭ. ᎠᎴ ᏦᎢ ᎢᎨᏥᏛᎯ ᎨᏒ ᎾᏍᎩ ᎨᏒᏁᎳᏅᎯ ᎨᏒ ᎠᎺᏉᎯ ᎠᏁᎲᎢ ᎠᎴ ᏗᏅᏃᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏂᏨᎯ ᏚᏂᎵᏬᏨᎩ; ᎠᎴ ᏥᏳ ᏧᏛᎾ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᏲᏨᎩ. ᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ, ᎠᎴ ᏩᏍᏛ ᏧᏓᏂᎸᎢᏍᏗᏳ; ᏥᏌᏃ ᏄᎬᏫᏳᏌᏕᎩ ᎦᏁᎸ ᎤᎷᏨ, ᎠᎴ ᏚᎪᎲ ᏗᏂᏤᎷᎯᏍᎩ, ᎠᎴ ᏴᏫ ᏓᏂᏴᎬᎢ, ᏂᎦᏓ ᎤᎾᎵᎮᎵᏤ ᎤᏂᏩᏛ ᏔᎵᏁ ᎤᏍᏆᏂᎩᏗ ᏄᎵᏍᏔᏅ ᏓᏏᎳᏛᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎨᎶ ᏣᎦᏔᎰᎢ ᎣᏍᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎾᏍᎩᏃ ᎾᏛᏁᎲᎾ ᏥᎨᏐᎢ, ᎾᏍᎩ ᎾᎿ ᎠᏍᎦᏅᎪᎢ. ”ᎤᏬᏚᏨ ᏣᏓᏃᏴᎵᏍᏗ,” ᎬᏣᏓᏗ ᏄᏪᏎ ᎠᎦᏴᎵ ᎤᏃᏕᎾ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᏳᎯ ᎠᎦᏘᏏᏗᏢ ᎢᏥᎦᏯᎷᎥᎦ, ᏙᏓᏥᏩᏛᎯᏃ. ᎰᏩᏃ ᎤᏂᎦᏯᎷᏅᎩ, ᎿᏉᏃ ᎥᏝ ᏰᎵ ᎬᏩᎾᏎᎯᏍᏗ ᏱᎨᏎᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᏣᏛ ᎠᏣᏗ. ᎤᏛᏅ ᏲᎾ. “ᏙᎢᏳᏍᏗ ᎦᎵᏍᏗᎭ ᎠᎪᏕᏍᎩ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏎᏓᏂ ᏥᎪᎥᎩ ᎠᎾᎦᎵᏍᎩ ᎦᎸᎳᏗ ᏨᏗᎦᏙᎠᏍᎪ ᎾᏍᎩᏯ ᏓᏳᏙᎠᏒᎩ. ᎾᎯᏳᏃ ᎤᏃᏢᏁ ᏩᎦ ᎠᎩᎾ, ᎾᏍᎩᏃ ᏗᏟᎶᏍᏔᏅᎯ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎤᏂᏲᎮᎴᎢ, ᎠᎴ ᎤᎾᎵᎮᎵᏤᎴ ᎤᏅᏒ ᏧᏃᏰᏂ ᏧᏅᏔᏅᎯ ᎤᏃᏢᏅᎯ. ᎤᎾᏁᎳᎩ, ᏗᏂᎨᏫᏉ ᏗᏂᎨᏫ ᏗᎾᏘᏂᏙᎯ; ᎢᏳᏃ ᏗᎨᏫ ᏯᏘᏂ ᏗᎨᏫ ᎢᏧᎳ ᎠᏔᎴᏒ ᏧᏂᎸᎢᏍᏗ. ᎠᏂᏲᏍᎩ ᎣᎦᎵᎪᏅ, ᎤᏂᏂᏴᏗ ᏣᎵ, ᏚᎾᏓᎸ. ᎾᏍᎩᏃ ᎯᎠ ᏂᎯ ᏥᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᏂᎦᏛᏉ ᏂᎦᏥᏪᏎᎭ-ᎢᏥᏯᏫᏍᎨᏍᏗ. ᏗᏣᎧᏅᎦ ᏗᏉᏰᏂ ᎠᎴ ᏗᏆᎳᏏᏕᏂ, ᎠᏋᏒᏉ ᎯᎠ ᏥᎾᏆᏛᏅ; ᏍᎩᏯᏒᏂᎦ ᎠᎴ ᎢᏣᏙᎴᎰᎯ; ᎠᏓᏅᏙᏰᏃ ᎥᏝ ᏳᏇᏓᎳ, ᎠᎴ ᎥᏝ ᏧᎪᎳ ᏱᏚᎸ ᎾᏍᎩᏯ ᏥᏥᎪᏩᏘᎭ ᎠᏴ ᏂᏓᏋᏅᎢ. ᎨᏍᏗ ᎠᏓᏅᏖᏗ ᏱᎨᏎ ᎾᏍᎩᏴ. ᏂᏑᎩᏨᏂᏒ ᎢᏨᏰᎳᏗᏙᎲ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎥᏝ ᏱᏣᏁᎶᏔᏁ ᏍᎩᏂᏴᏗᏱ; ᎠᏎᏃ ᎢᏣᏤᎵᎦ ᎪᎯ ᏥᎩ, ᎠᎴ ᎤᎵᏏᎩ ᎤᎵᏂᎬᎬᎢ. ᏥᏌᏃ ᎤᏓᏥᏃᎯᏍᏔᏅ, ᎠᎴ ᎠᎨᏴᏉ ᎤᏩᏒ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ, ᎭᏢ Ꮎ ᎨᏧᎯᏍᏗᏍᎩ? ᏝᏍᎪ ᎩᎶ ᏣᏍᏕᏅᏨᎢ ᏱᏕᎫᎪᏓ? ᏎᎦᏨ ᎤᎪᎮ ᎩᎶ ᎤᏟᏃᎮᏔᏅ ᎤᏓᏅᏘ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏨᏁᎮᏍᏗ ᏂᎦᎥ ᎦᏓᎭ ᎨᏒᎢ ᎠᎴ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏲ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎢᏨᏔᏅᎭ ᏕᏣᏓᏂᎸᏨᎭ ᎧᏃᎮᏛ ᎬᏱᏝᏅᎯ, ᎾᏍᎩ ᏰᎵᏉ ᏗᎬᏩᏍᏕᎸᏗ ᏥᎩ ᏗᏣᏓᏅᏙᎩ. ᎾᏗᏍ, ᎦᎢᏒ ᎪᎱᏍᏗ ᎠᏰᏟ ᏅᏃ ᎦᏙᎬ ᎩᎳᏊᏯ ᎪᎯᏓ. ᏥᎪ ᎦᏚ-ᎢᏗᏢ ᏄᏍᏛ ᏗᎧᏃᏗᏱ ᎪᎱᏍᏗ ᏕᏣᎧᏂᏍᎪᎢ? ᎢᏳᏃ ᎩᎶ ᎤᏩᏒᏉ ᎠᏓᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ ᎦᎶᏁᏛ ᏥᏯᏤᎵ ᎠᏴ ᎢᎡᎵᏍᎨᏍᏗ, ᎤᏩᏒ ᎨᏒ ᏔᎵᏁ ᎯᎠ ᎾᏍᎩ ᏥᎠᏓᏅᏛᎵ, ᎾᏍᎩ ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎤᏤᎵ ᎨᏒ ᎾᏍᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎦᎶᏁᏛ ᎣᏣᏤᎵᎦ. ᏍᎩᎾᎾ ᎢᏴ ᏓᏳᏓᎴᏅᏓ ᎨᏍᏗ ᏯᏆᎵᏍᏇᏚᏁ ᏓᏆᎭᏄᏮ ᏗᎵᎪᎲᏍᎩ ᏱᎨᏒᎾ. ᎾᏍᎩᏃ ᏥᏣᎦᎾᏩᏉ, ᏂᏣᏴᏢᎾ ᎠᎴ ᏂᏣᏗᎴᎬᎾ ᏥᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᎬᏯᎵᎦᏍᏔᏂ ᏥᎣᎵ ᏓᎬᏄᎪᏫᏏ. ᏚᏜᏅᏛᏰᏃ ᏓᏂᏃᎯᎮ ᏧᏂᏢᎩ, ᏗᏤᏍᏙ ᎠᎴ ᏗᎦᏂᏟ ᏓᏂᏢᏗᏍᎨᎢ ᎾᏍᎩ ᎤᏓᏩᏗᏍᏛᏉ ᎾᏍᏉ ᏈᏓ ᎠᎢᏒᎢ ᎢᎦᏛ ᎤᏄᏢᏙᏗᏱ. ᏐᎳᏃ ᎠᏏᏉ ᎬᏬᎳᏕᏍᎨ ᏕᎦᎾᏰᏓᏁᎮ ᎠᎡ ᏧᎯᏍᏗᏱ ᎧᏁᎨ ᎤᎬᏫᏳᎯ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏬᎸ ᏭᎶᏎᎢ, ᎤᏓᏅᏖᎴ ᎤᏍᏕᏓᎵᏴᏍᏗ ᎢᏳᏍᏗ ᎭᏂᏃᎮᏍᎬᎢ. ᎢᏳ ᎠᎴ ᎢᏣᏓᏅᏟᏉ ᎤᏅᏒ ᏱᏗᏥᏲᎵᎭ, ᎦᏙ ᎢᏣᏛᏁᎲ ᏕᏥᎪᎾᏛᏗ ᎠᏂᏐᎢ? ᏝᏍᎪ ᎾᏍᎩ ᏱᎾᎾᏛᏁᎰ ᎠᏰᎵ-ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ? ᎨᏍᏗᏗ ᏱᏓᏲᎩᏍᏆᏂᎪᏔᏂ ᎠᏤ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎠᏍᎦᏯ ᏃᎴ ᎤᏁᏝᏅᎯ ᎤᏪᎵᏎ ᏍᎩᏴ. ᎩᎶ ᎤᏐᏅ ᎤᏂᏃᎮᏗᏱ ᏂᎨᏒᎾ, ᏧᎾᏘᏲᏌᏘ ᏂᎨᏒᎾ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎤᎾᏓᏅᏘᏍᎩᏂ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗᏱ ᎾᏂᎥᏉ ᎠᏂᎦᏔᎲ ᎤᏣᏘ ᎤᎾᏓᏅᏘᏳ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎦᏙ ᏓᏓᏛᏂ ᎡᏆᎭᎻ ᎢᎩᏙᏓ ᎤᏩᏛᎲ ᎤᏇᏓᎵ ᎨᏒ ᏅᏓᏳᏓᎴᏅᏛ? “ᎡᏝᏪᎯ,” ᏧᏬᏎᎴ ᏲᎾ ᎤᏤᏍᏙ. ᎵᏓᏃ ᎠᎴ ᏦᏈ ᎾᎥ ᏂᏚᏓᎴᎢ, ᎠᏃᎯᏳᎲᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏈᏓ ᎡᏙᎲ ᎵᏓ, ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏚᏂᏅᏎ ᏭᏂᏔᏲᏎᏗᏱ ᎤᏙᎯᏗᏍᏗᏱ ᏂᎨᏒᎾ ᏂᏙᏓᏳᏩᏛᎲᏍᏗᏱ. ᎥᏝ ᏳᏜᏏᏛᎡᎮ ᎤᏁᎳᏅᎯ ᎤᏚᎢᏍᏔᏅᎢ ᏄᏬᎯᏳᏒᎾ ᎨᏒ ᎢᏳᏍᏗ; ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎨᏎ ᎤᏬᎯᏳᏒᎢ, ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ, “ᎨᏍᏗ ᎯᎸᎯᏳ ᏍᎩᎾᎾ ᎢᏳᎵᏍᏔᏅ ᏱᎩ.” ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᏂᎯ ᏂᏣᏛᏁᎭ ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ. ᏥᏌᏃ ᎤᏛᎦᏅ, ᏥᏳ ᎤᏦᏔᏅᎩ ᎾᎿ ᎤᏂᎩᏒᎩ ᎤᏓᏰᎵᎸ ᎢᎾᎨ ᏭᎶᏒᎩ ᎿᏉᏃ ᏴᏫ ᎤᎾᏛᎦᏅ, ᎡᎳᏗ ᎨᏩᏍᏓᏩᏛᎡᎩ ᏕᎦᏚᎲ ᏙᏓᏳᏁᏅᏒᎩ. ᏥᎷᏏᎵᎻᏃ ᏔᎵᏁ ᎤᏂᎷᏤᎢ; ᎤᏛᏅᏃ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎡᏙᎮᎢ, ᎬᏩᎷᏤᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᏗᏂᎳᏫᎩ, ᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᏗᎧᎿᏩᏗᏍᏗ ᏄᏂᎲᎾ ᏥᎩ, ᎤᏅᏒ ᎤᎾᏓᏅᏖᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏱᎾᎾᏛᏁᎭ, ᎾᏍᎩ ᎯᎠ, ᏗᎧᎿᏩᏛᏍᏗ ᏄᏂᎲᎾ ᏥᎩ, ᎤᏅᏒᏉ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎾᎾᎵᏍᏗᎭ; ᎤᏁᎵᏒᏃ ᎤᎩᎸᏉᏔᏅ ᏩᎩᎷᎯᏍᏗ ᏗᏇᏅᏒ. ᏚᎧᎾᏁ ᏏᏆ. ᏑᎾᎴ ᏱᏄᎵᏍᏔᎾ, ᏫᏕᎦᎾᏬᏍᎬ ᎣᏣᏂᎩᏍᎬ ᏗᏆᎭᎾᏬ, ᏗᎦᏓᏁ ᏃᎴ ᏧᏴᏣ, ᏥᏰᎸ ᏓᎦᎾᏬᏗᏍᎬ, ᎨᏍᏗ ᎢᎪᎯᏛ ᎤᏲ ᏯᏆᏓᏅᏖᎢ. ”ᏂᎦᏓ ᎢᏣᎦᏎᏍᏓ!” ᎤᏪᎷᏁ. “ᏥᎪᏩᏔ! ᎤᏛᏁ ᎡᎳᏆᏗ, ᎡᎳᏗ ᏭᏕ ᎦᎶᏇ. ᎡᏂᎾᏯᏃ ᎤᏪᏅᏎᎢ, ᎠᎴ ᎠᏓᏁᎸ ᎤᏴᎴᎢ, ᏚᏏᏔᏛᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏐᎳ ᎥᎩᏅᏟ, ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏂᏣᏛᏁᎴ ᏔᎢᏒᎢ ᏗᎩᏅᏒ ᎥᏣᎪᏩᏛᏗᏱ ᎠᎴ ᏣᎧᎵᎢᏍᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ᎾᏍᎩᏰᏃ ᎢᏣᎵᏍᏓᏁᏗᏱ ᎡᏥᏯᏅᏛ; ᎦᎶᏁᏛᏰᏃ ᎾᏍᏉ ᎢᎩᎩᎵᏲᏤᎴᎢ, ᎠᎴ ᎢᎩᎯᏰᎴ ᏗᎩᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎤᏪᏙᎸ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ. ᎱᏙᎯᏳᎭᏰᏃ, ᎢᏳᏍᏗᏉ ᏂᏥᏪᏍᎬ ᏧᏳᎪᏗ ᎢᏯᎩᏪᏍᏗ. ᏫᏚᏓᏴᎳᏛᎢ ᏭᎵᏛᏓᏁᎢ. ᎥᏝᏍᎩᏂᏃᏅ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᏱᎦᏁᎸ ᏓᏓᏁᎸ ᎩᎶ ᏧᏃᏰᏂ ᏧᏅᏔᏅᎯ ᏧᎾᏁᏍᎨᎲᎩ, ᎾᏍᎩᏯ ᎠᏙᎴᎰᏍᎩ ᎯᎠ ᏥᏂᎦᏪᎠ; ᎬᏩᎷᏤᎴᏃ ᎩᎶ ᎢᏳᏍᏗ ᎤᎸᏓᎸᎥᏍᎩ ᎠᏂᏁᎮᎢ, ᎾᏍᎩ ᏅᎩ ᎢᏯᏂᏛ ᎬᏩᏃᎴᎢ. ᎠᎴ ᎢᏨᏍᏗᏰᏗᎭ ᎢᏓᎵᏅᏟ, ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎨᏒᎢ, Ꮎ-ᏍᎩ ᏍᎩᏯᎵᎪᏁᏗᏱ ᎤᏁᎳᏅᎯ ᎡᏓᏓᏙᎵᏍᏓᏁᎲ ᎠᏴ ᎨᏒ ᎤᎬᏩᎵ, “ᎤᏰᎸᏗᏍᎪ,” ᎤᏛᏛᏁ ᏫᎵᎻ, ᎭᏂᏉ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏗᏍᏆᏂᎪᏙᏗ ᎯᏤᎮᏍᏗ, ᏃᎴ ᏦᎢ ᎢᏯᏂ ᏗᏆᎵ ᎨᏎᏍᏗ?” ᎦᏚᏏ ᏭᎾᎵᏒᏍᏔᏁ. “ᏓᏣᏓᏅᏖᏔᏂᏗ ᎤᏴᏥ ᏑᎾᎴ ᎤᏃᎸᏔᏂ ᎦᎸ ᎤᎵᏬᏨ ᎯᎨᏎᏍᏗ ᏫᎵᎻ, ᎩᎶ ᏳᏲᎸᎾ ᎨᏎᏍᏗ ᎤᎦᏃᏩ ᎤᏂᏑᎸᏓ ᎤᏂᏥᏍᏗ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ. ᎯᎠᏍᎩᏂ ᎤᏐᏅ ᎠᏂᏃᎮᎭ ᎾᏍᎩ ᎾᏂᎦᏔᎲᎾ; ᎾᏍᎩᏍᎩᏂ ᎤᏅᏒ ᎨᏒ ᏥᎾᎦᏔᎭ, ᎾᏍᎩᏯ ᎦᎪᎵᏍᏗᏉ ᏣᏁᎿᎠ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᎾᎿ ᎤᏲ ᎾᎾᏓᏛᏁᎭ. ᎤᏂᏲᎯᏍᏔᏅ ᏓᎾᏦᎭᏱᎲ ᏗᏂᏲᏟ, ᏍᏔᏯ ᎠᎾᏛᎵᏍᎬ ᎤᏩᏌ ᎠᏛᎪᏗ ᎨᏒ. ᏧᏁᎦ ᏧᎪᎳ ᎣᎦᎾ ᏧᏣᏲᏍᏘ ᏧᏂᎪᏍᏙᏓ. ᎯᎠᏰᏃ ᎾᏍᎩ ᎹᏓᎩᏏᏕᎩ, ᎤᎬᏫᏳᎯ ᏎᏓᎽ, ᎠᏥᎸ-ᎨᎶᎯ ᎨᏎᎢ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏥᏚᏠᏎ ᏧᏨᏏᏗᏒ ᏫᏚᎰᏅᎯ ᎤᏂᎬᏫᏳᎯ, ᎠᎴ ᎣᏍᏛ ᏧᏁᏤᎴᎢ; ᏍᎩᏃ ᏄᏍᏗᏓᏅ ᎤᏩᎦᏗᏗᏒᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏍᎩᏂᏍᏓᏩᏚᎦ, ᏴᏫᏃ ᎢᏍᏗᎦᏯᎷᎥᏍᎩ ᏅᏓᏍᏛᏴᏁᎵ. ᎾᏍᎩ ᏥᏏ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎣᏆᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏌᎵᎹ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎾᏐᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏂᎥᏉ ᏤᎩᎤᎦᏎᏅ ᏗᎪᏪᎶᏗ ᎦᏁ ᏃᎴ ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᎪᎰᏍᏗ ᏱᎾᏛᏁᎲᎾ ᎤᏁᎸᏙᏗ ᎠᏋᏂᏍᏗ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎥᏝ ᎩᎶ ᎤᏚᎸᎲ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎥᏝ ᎠᎴ ᏚᏍᏆᎸᏔᏅ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎤᎾᎳᏅᎯᏍᎩᏂ ᎤᏓᏅᏖᎸᎢ ᎾᏍᎩ ᏗᎦᏙᎵᎩ ᏥᎩ. ᏥᏌ ᎤᏁᏨᎩ; ᏝᏍᎪ ᏔᎳᏚ ᎢᏳ-ᏟᎶᏛ ᏱᎩ? ᎢᏳᏃ ᎩᎶ ᎢᎦ ᏤᏙᎰᎢ, ᎥᏝ ᏱᏚᏬᏕᎯᎰᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᎪᏩᏘᏍᎬ ᎢᎦ ᎠᏂ ᎡᎶᎯ ᏚᎸᏌᏛᎢ. ᏔᎵᏁᏃ ᎢᎤᎩᎳᏫᏒ, ᎠᎴ ᎤᎬᎭᎷᏴ ᎦᏚ, ᎠᎴ ᎤᎬ, ᎠᎴ ᎪᎯᏛ ᎤᏬᏂᏒ, ᎤᎩᏨᏕᏱ ᎬᏗᏍᎩ, ᎿᏉ ᎤᏂᎩᏒᎩ. ᎾᏍᎩ ᎾᎿ ᎠᏰᎸ ᎢᎸᎯᏢ ᏧᎦᎴᏅᏛ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᏚᏫᏞᏫᏒ ᏧᎾᏓᏍᏆᏂᎪᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ. ᏝᏍᎪ ᎪᏪᎵ ᎯᎠ ᏱᏂᎦᏪᎭ? ᎦᎶᏁᏛ ᏕᏫ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗ, ᎠᎴ ᎦᏚᏱ ᎦᏚᎲᎢ ᏕᏫ ᎤᏕᏅᎢ? ᏥᏌᏃ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏦᏓᏂ ᏗᎤᏨᏎᎢ, ᎠᎴ ᎠᏓᏅᏙ ᎢᎾᎨ ᏭᏘᏅᏍᏔᏁᎢ, ᏓᎾᏓᎵᏢᏍᎪᏰᏃ ᏗᎦᎨᏛ ᏗᎵᏒᏍᏗ ᎠᎴ ᎤᏕᏯᏙᏗ ᏗᎵᏒᏍᏗᏱ, ᎾᏍᎩᏃ ᏴᏫ ᏓᏂᏃᎭᏝᎲᏍᎪᎢ; ᎠᏎᏃ ᎤᏅᏒ ᎥᏝ ᏌᏉ ᎠᏂᏰᏌᏛ ᏴᎬᏅᏓ ᏱᏙᎬᏂᏖᎸᎲᎦ. ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎤᏂᏔᎳᏬᏍᎬᎢ ᎤᏂᎧᎵᏨᎩ, ᎠᎴ ᎤᏁᎳᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᎸᏉᏗᏳ ᏓᏰᏂ ᎡᏈᏌ ᎠᏁᎯ ᎤᎾᏤᎵᎦ. ᎠᎴ ᏌᏊ ᏯᎦᏴᎵ ᎾᏕᏘᏯ ᏂᏗᏈᎪᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏕᎾ ᏪᏗᎷᏥ ᎦᎵᏦᏛ ᏙᏱᏗᏢ, ᎢᎦᏠᏯᏍᏗᏍᎨᏍᏗ ᎦᏰᏥᏐᏢᏗᏍᎬᎢ; ᎤᏒᎢᏴ ᎦᏬᏂᏍᎬ, ᎠᏆᏛᎦᏍᏙ, ᎠᎩᏃᎯᏎᎲ ᏄᏛᏁᎸ ᏍᎩᏴ ᎢᎦ ᏃᎴ ᎢᏳᏍᏗᏉ ᎠᏓᏅᏖᏍᎬ. ᏃᏉ ᏨᏌ ᏔᏕᎶᎰᏏ ᏄᏳᏛ ᏏᏆ.” ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎩᎶ ᎠᏂ ᏓᏂᏙᎦ ᎥᏝ ᏴᏛᎾᏙᎴᎰᏏ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎬᏂ ᎠᏂᎪᎲᎭ ᏴᏫ ᎤᏪᏥ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒ ᎦᎾᏄᎪᏥᎸᎭ. ᎾᏍᎩ ᎥᏝ ᏑᏟᎶᏛ ᎤᏅ ᎢᎪᎯᏛ ᎤᎾᏁᎳᎩ ᏱᏙᏤᎵᏎᎴᎢ ᎡᎳᏗ ᏂᏙᏣᏛᏁᎲᎢ; ᎾᏍᎩ ᎣᏍᏛ ᎧᏁᎮᏛ ᎤᏙᎯᏳᎯ ᎨᏒ ᎢᎬᏩᏍᏗᎭ ᎢᏤᏩᏍᏗᎭ ᎢᏤᎳᏗᏓᏍᏗᏱ. ᎬᏂᏳᏉ ᎢᏨᏅᎵ ᎠᏫ ᎤᏂᏃᏕᎾ ᏣᏁᎳᏗᏙᎰ ᏩᏲᎯ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎾᏛ ᎢᎨᏥᏏᎾᏌᏂ ᎨᏌᏍᏗ, ᎠᎴ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ ᎢᎨᏣᏓᏅᏘ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᏗᏅᏃᏛ ᎠᏂᎸᏉᏓ ᎠᎴ ᎠᎾᎵᎮᎵᏥ ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎾᏍᎩ ᏂᎪᎯᎸ ᎾᎵᏍᏆᏗᏍᎬᎾ ᏤᎭ, ᏥᏌᏃ ᎠᏓᏅᏙ ᎤᏘᏂᏙᎲ ᎨᎵᎵ ᎢᎤᎷᏤᎢ; ᏕᎦᏃᏣᎸᏃ ᎾᎿ ᎬᏩᏚᏫᏛ ᏚᏰᎵᏏᏙᎴᎢ. “ᏃᏉ---ᎢᎫᏩᏟᏍᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏯᏕᎰᏍᎨᏍᏗ ᎯᏃᎮᏍᎬ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ, ᎠᎴ ᏞᏍᏗ ᏱᏍᏆᏕᎰᏍᎨᏍᏗ ᎠᏴ ᏥᏴᎩ ᎾᏍᎩ ᎤᏤᎵᎦ, ᏤᎳᏗᏍᏗᏍᎨᏍᏗᏍᎩᏂ ᎠᎩᎵᏲᎬ ᎣᏍᏛ ᎧᏃᎮᏛ, ᏣᏍᏕᎵᏍᎨᏍᏗ ᎤᎵᏂᎩᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎤᎾᏓᏓᏍᎬ ᎤᏂᏍᏓᏱᏙᎾ ᎪᏪᎵ, ᏐᏉ ᏄᏪᏎ, ᎨᎵᏍᎬᏃ ᎢᎬᏌ ᎢᎦᏓᎯᏍᏙᏗ ᎢᏗᏍᏓᏱᏛ. ᎯᏣᎵᏍᎪᎸᏓᏏ ᎤᎶᎯᏍᏗ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᎣᎦᏕᎶᎰᏒ ᎠᏂᏍᎦᎦ ᎤᎾᏓᏅᏍᏗ ᎠᏂᏴᏫᏯ, ᏃᎴ ᎤᏲ ᎤᎾᏓᏅᏔ, ᎤᏂᏚᎬ ᎬᎭᏃᏓ ᏂᎦᎵ ᏍᏗ ᏱᎨᎦᎵᏍᎪᏁᎸ, ᏰᎵ ᎠᏍᏆᏂᎪᎯᏍᏗ. ᎯᏗᏍᏓᏩᏚᎦ ᎠᎵᏰᎾ ᎠᏙᎯ ᎡᏙᎲᎢ. “ᎠᎾᏓᎪᎾᏗᏍᎬ ᎠᏂᏍᎦᏰᎬᏍᏓ ᎠᎾᎵᎮᎵᎦ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᎰᎻ ᎠᎪᏕᏍᎩ ᏃᎴ ᏂᎦᏗ ᎠᏃᎵᎩ ᏏᏆ. ᎩᎶ ᏓᎿᏩ ᏤᎪᎢ ᎥᏝ ᎬᏅ ᎤᎵᏍᏕᎸᏙᏗ ᏕᎤᎸᏫᏍᏓᏁᎲ ᏯᏚᏓᎸᏗᏍᎪᎢ, ᎤᏚᎵᏍᎪ ᎠᏍᎦᏰᎬᏍᏓ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ. ᎿᏉᏃ ᏓᏓᎿᏩᏍᏛ ᎬᏩᏛᏅ ᎤᏂᏯᏙᎴ ᏧᏁᏬᎢ, ᎤᎾᏎᎸᎮ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎾᏍᎩ ᎠᏂᏏᏴᏫᎭ ᏧᏂᏁᏒᏍᏗ ᎨᏒᎢ. ᏝᏍᎪ ᎤᏟ ᎢᎦᎢ ᏱᏂᏙᎬᏩᏳᎪᏗ ᎠᏥᏍᏛᏗᏍᏙᏗᏱ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᎳᏍᏓᎡᎸᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎩᎬᎧᏃᎮᏛ ᏗᏠᎯᏍᏙᏔᏅᎯ ᎾᏍᎩ ᎤᏓᏅᎦᎶᏔᏅᎯ ᎨᏒ ᎦᏓᎭ ᎤᏰᎸᏅᎯ, ᎠᎴ ᎦᎬᏩᏐᏢᏔᏅᎯ ᎬᏩᎦᏘᏯ ᎠᏓᏙᎵᎩ ᎠᏓᏅᏙ. ᎢᏣᏠᎾᏍᏗ! ᏰᎵᏉ ᎢᏣᏙᎴᎰᏍᎪ ᏄᏍᏛ ᎦᎸᎳᏗ, ᎠᎴ ᎡᎶᎯ; ᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ ᏂᏣᏙᎴᎰᏍᎬᎾ ᏥᎩ ᎪᎯ ᎨᏒᎢ? ᎠᏎᏃ ᎥᏝ ᎢᎳᏯ ᏯᏥᏅᏎ ᎩᎶ ᏭᎷᏤᏏᏱ, ᎠᎨᎥ ᎤᏬᏑᎶᏨᎯ ᎤᏩᏒ, ᏌᎴᏓ ᎾᏍᎩ ᏌᏙᏂ ᎦᏚᎲ ᎦᏁᎳ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏓᏅᏒ ᎾᏍᎩ ᎧᏂᎵᏯ ᎤᏬᏁᏔᏅᎯ, ᎠᏂᏔᎵ ᏫᏚᏯᏅᎮ ᎠᏓᏁᎸ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᏌᏉ ᎠᏯᏫᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ ᏂᎪᎯᎸ ᎬᏩᎦᏘᏗᏍᎩ ᎨᏒ ᎨᎳ. ᎠᏆᏦᎩ ᎠᏆᏣᏪᏐᎸᏍᏗ ᏃᎴ ᎠᎩᎦᏘᏗᏍᏗ, ᎪᎳ ᎠᏂᎩᏍᎬ ᎢᎪᎯᏓ. ᎢᏳᏍᎩᏂ ᎾᏍᏉ ᎠᏴ, ᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏱᏨᏯᎵᏥᏙᏁᎸ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏨᏯᎵᏥᏙᏁᎸᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎠᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ. ᎠᏎᏃ ᎥᏝ ᎤᏟ ᎢᏴᏛ ᎬᏩᏁᏅᏍᏗ ᏱᎩ, ᎾᏂᎦᏔᎿᎥᎾᏰᏃ ᎨᏒ ᎬᏂᎨᏒ ᏅᏓᏳᎾᎵᏍᏓᏁᎵ ᎾᏂᎥᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏥᏄᏍᏕ ᎾᏍᎩ. ᎣᏍᏓ ᎠᎵᏍᏓᏴᏗ! ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏅᏖᏍᏗ, ᎯᎠ ᎾᏍᎩ ᎠᎵᏍᏕᎸᏙᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎨᏥᏁᎸᎯ, ᎠᎴ ᎾᏍᎩ ᏛᎾᏛᏓᏍᏔᏂ. ᏱᏥᏃᎦ ᎪᏪᎵ ᎠᎪᎵᏰᏗ ᎠᎦᎸᏓ ᎬᎩᏩᏛᏗ ᎨᏎᏍᏗ”. ᎤᏅᏒᏃ ᎨᏒ ᎤᎾᎵᏃᎮᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎢᏳᏃ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎦᏛᏅ, ᎯᎠ ᏱᏂᎦᏫ, ᎦᏙᏃ Ꮭ ᏱᎡᏦᎢᏳᏁᎢ? ᏁᎳᎩᏉ ᎨᏎᏍᏗ ᎠᏟᎸ. ᎨᏍᏗ ᏱᏓᎬᏯᏧᏔᏅ ᎤᏛᏅ. ᏂᎦᏛᏃ ᏴᏫ ᎬᏩᎪᎮ ᎡᏙᎲᎢ ᎠᎴ ᎦᎸᏉᏗᏍᎬ ᎤᏁᎳᏅᎯ. ᎤᏛᎦᏅᏃ ᎤᏂᏣᏘ ᎠᏂᎶᏍᎬ ᎤᏛᏛᏁ ᎾᏍᎩ ᎤᏰᎸᏛᎢ. ᎠᎴ ᏔᎵᏁ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎠᏍᏛ ᎤᏂᎩᏒ ᎨᎵᎵ ᎥᏓᎸ ᏭᎷᏤᎢ, ᎠᏰᎵ ᎤᎶᏎ ᎠᏍᎪᎯ-ᏗᎦᏚᎩᏱ ᏍᎦᏚᎩ ᎨᏒᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎥᏥᎪᎥᎩ ᏅᏙ ᎢᎦᎡᎯ ᎧᎸ ᎬᏙᎬᎩ; ᎠᎴ ᎤᏪᎷᏅᎩ ᎠᏍᏓᏯ ᎤᏁᏨᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎾᎯᎥ ᏥᏍᏆ ᎦᎸᎶ ᎠᏰᎵ ᎠᏂᏃᎯᎵᏙᎯ, ᎡᏤᎾ ᎢᏣᏓᏟᏌ ᎠᏥᎸᏉᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ; ᏂᎯᏍᎩᏂ ᎥᏝ ᎤᏇᏓᎵ ᏗᏣᏘᏂᏙᎯ ᏱᎩ, ᎠᏓᏅᏙᏍᎩᏂ ᏗᏣᏘᏂᏙᎯ, ᎢᏳᏃ ᎰᏩ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏱᏥᏯᎠ. ᎠᎴ ᎢᏳ ᎩᎶ ᎦᎶᏁᏛ ᎤᏓᏅᏙ ᏄᏪᎲᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎾᎥᏝ [ᎦᎶᏁᏛ] ᎤᏤᎵ ᏱᎦᎩ. ᎤᏪᏘ ᏧᎬ ᏃᏥ ᎦᎸᎳᏗᎨᏍᏗ ᎭᎾ ᎦᏙ. ᎤᏪᎵᎯᏍᏗᏃ ᎡᎶᎯ ᎡᎯ, ᎠᎴ ᎨᏅᎢᏍᏗ ᎨᏒ ᎤᏓᎵᏓᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᎪᎱᏍᏗ ᎠᏚᎸᏗ ᎨᏒ, ᎠᏂᏴᎯᎲ ᎠᏂᏁᏄᎳᏍᏗᏍᎪ ᎧᏃᎮᏛ, ᎠᎴ ᎾᏍᎩ ᎾᎦᏔᏛᏍᎬᎾᏉ ᎨᏐᎢ. ᎿᏉᏃ ᎡᎶᏛ ᎤᏲᎱᏒ, ᎬᏂᏳᏉ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᏦᏩ ᎠᏍᎩᏓᏍᎬ ᎢᏥᏈᏱ, ᎬᏂᏳᏉᏃ ᎠᎨᏴ ᎾᎿ ᎦᏚᎲ ᎡᎯ, ᎠᏍᎦᎾᎢ, ᎤᏙᎴᎰᏒ ᏥᏌ ᎠᏆᎵᏏ ᎦᏁᎸ ᎦᏅᎬ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ, ᎤᏲᎴ ᎫᎫ ᏅᏯ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎠᏟᏍᏕ ᎠᏠᏁᏗ, ”ᎠᏎᏃ ᎨᏍᏗ ᎤᏣᏘ ᎣᏍᏓ ᏱᎩ ᎠᏯ ᏌᎳᏓ.” ᎠᏐᏩᏘᏍᎪ ᎦᏓ ᏃᎴ ᎤᎪᏏᏓ ᎢᏯᏅᏁ ᏂᎬᎾᏛᎢ. ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏥᎦᏔᎲ ᏂᎪᎯᎸᎾᏉ ᎢᏴᏛ ᎠᎩᏗᏱ ᎨᏒ ᎠᏆᏤᎵ ᎦᎵᏦᏛᎢ, ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎾᏋᏁᎸᎢ. ᎾᏍᎩᏃ ᏧᏓᎴᎿᎢ ᎡᎩᏁᎸᏅᎯ ᏥᎩ ᎾᏍᎩᏯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎩᏁᎸᎢ, ᎢᏳᏃ ᎠᏙᎴᎰᎯᏍᏗ ᏱᎩ, ᎾᏍᎩᏯ ᎪᎯᏳᏗ ᎨᏒ ᎡᎦᏟᎶᎡᎸ ᎢᏛᏗᏍᎨᏍᏗ [ᎢᏓᏙᎴᎰᏍᎨᏍᏗ;] ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᎣᏁ ᎱᎷᏣ ᎡᎶᏗ, ᎧᏁᏌ ᎦᏁᎮ. ᎠᏂᏴᏫ ᎨᎵ ᏱᎩ, ᎠᏴᏫᏯᎯ. ᎠᎴ ᏔᎵᏁ ᏪᎯ ᎾᏍᎩ ᎤᏓᏴᏒᎩ, ᎠᎴ ᎤᏲᎱᏒ ᏧᏪᏥ ᎾᏁᎲᎾ. ᏐᏉ ᎢᎦ ᏒᎮᏱᏣ ᎤᏍᏆᏂᎩᏗ ᎠᏂᏃᎮᏍᎬ ᎤᏛᎦᏍᏔᏁᎢ ᏃᎴ ᎾᎾᏛᏁᎲ. ᎠᎦᎵᎭ ᎪᎯ ᎢᎦ. ᎠᎴ ᎦᏙᎯ ᏓᎨᏣᏡᏂ, ᎠᎴ ᏗᏤᏥ ᎬᏂᏯᎢ ᎨᏎᏍᏗ; ᎠᎴ ᎥᏝ ᎨᏣᎯᏰᏗ ᏱᎨᏎᏍᏗ ᏌᏉ ᏅᏯ ᏱᏚᏓᏌᏝᎮᏍᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏔᎲᎾ ᏥᎨᏒ ᎢᏳ ᎡᏣᏩᏛᎯᎯᏍᏗ ᎨᏒᎢ. ᏧᏍᏆᏴᏍᏗ ᏳᏚᎵᏍᎬᎾ ᎤᏅᎪᎢᏍᏗ ᎢᎦ ᎨᏒᎢ ᎡᏝᏪᎯ ᎤᏗᏍᎦᏞᎢ ᎧᏁᏍᎬ ᎭᏫᏂᏣ ᎧᏁᏌᎢ ᎡᎳᏗ. ᎢᏍᎪᏂᏗᏢᏃ ᏭᎷᏨ ᎦᎩᏏᏂ ᎤᎾᏤᎵᎪᎯ, ᎠᏂᏔᎵ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ ᏕᎬᏩᏠᏎᎢ, ᏓᏓᏂᏌᎲ ᏧᏂᏄᎪᏤᎢ, ᎤᏣᏔᏅᎯ ᎤᏂᎿᎸᎯᏳ ᎨᏎᎢ, ᎾᏍᎩ ᎥᏝ ᎩᎶ ᎾᎿ ᎬᏩᎶᎯᏍᏗ ᏱᎨᏎᎢ. ᎣᎦᏚᏓᎳ ᏂᎪᎯᎸ ᎣᏣᎵᎡᎵᏤᏗᏱ ᎤᏁᎳᏅᎯ ᏂᎯ ᎢᏓᎵᏅᏟ ᎤᎬᏩᎵ, ᏥᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏲᎦᏛᏁᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏦᎯᏳᏒ ᎤᏣᏘ ᏣᏛᏍᎦ, ᎠᎴ ᏕᏣᏓᎨᏳᏒ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎤᏣᏘ ᏥᎧᏁᏉᎦ; ᎠᏏᏴᏫ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎬᏩᎵᏍᏓᏴᏙᏗ ᎨᏒ ᎤᏬᎯᏳᏐᎢ; ᎩᎶᏃ ᎠᏩᎾᎦᎳ ᎠᏛᏒᎥᏍᎩᏉ ᎠᎵᏍᏓᏴᏗᏍᎪᎢ. ᏈᏓᏍᎩᏂ ᎠᎴ ᎾᏍᎩ ᎾᎠᏁᎯ ᎤᏣᏘ ᏓᏂᎸᏍᎨᎢ; ᎤᏂᏰᏨᏃ ᎤᏂᎪᎮ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎦᏙᎬ ᏗᏂᏙᎩ. ᎤᏞᎩᏰᏃ ᎾᎯᏳ ᎨᏒ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏂᎦᏗᏳ ᎪᏪᎳᏅᎯ ᎨᏒ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎤᏁᏤ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ, ᎠᎴ ᎩᎬ ᎤᏂᏍᏚᏟᏍᏗᏱ [ᎦᎶᎯᏍᏗᏱ,] ᎾᏍᎩ ᎢᎬᏱ ᎤᎾᏕᏅᎯ ᏗᏛᏗᏍᎩ ᎪᎱᏍᏗ ᎤᏅᏁᏗᏱ ᏂᎨᏒᎾ. ᏅᏩᏓᎴᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᏓᎬᏍᏓᏩᏗᏙᎵ; ᎠᏎᏃ ᎢᎬᏱ ᎨᎾ ᏫᎦᏥᏲᎵᎦ ᏅᏛᏂᏂ ᏗᏇᏅᏒᎢ. ᎣᏏᏳᏰᏃ ᎤᏂᏰᎸᏅ ᎹᏏᏙᏂ ᎠᎴ ᎡᎦᏯ ᎠᏁᎯ ᎪᎱᏍᏗ ᎤᏂᏗᏱ ᏅᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎤᎾᏓᏅᏘ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎤᎾᎵᏍᏕᎸᏙᏗ. ᎠᎴ ᎿᏉ ᎤᏲ ᏂᎨᏨᎿᏕᎨᏍᏗ ᎢᎸᎯᏢ ᎦᏚᎲᎢ, ᎢᎶᎵᏍᎨᏍᏗ ᏅᏩᎵᎴ ᏗᎦᏚᎲ ᏫᏥᎶᏍᎨᏍᏗ. ᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎢᏏᎵᏱ ᏕᎦᏚᎲᎢ ᏱᎨᏤᏙᏁᏍᏗ ᎿᏉ ᏴᏫ ᎤᏪᏥ ᏓᎦᎷᏥ. ᎡᎳᏗ ᏄᏛᏁᎸ ᏐᏈᎵ ᎨᏓᎵ ᏭᏓᏒᏍᏔᏅ, ᎠᏌᎻᏓ ᎤᎩᎸᏗ, ᎾᎨ ᎢᏴ ᏂᏚᏩᏅ ᏗᎫᏍᎨᏂ, ᎤᏟᏫᏛᏍᏗ ᏧᏚᎵᏍᎪ ᎾᏍᎩᏯ. ᎾᎥ ᎡᏥᎷᏥᏏ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏃ ᏂᎯ ᎾᎥ ᏓᏥᎷᏤᎵ. ᏗᏦᏑᎵ ᏗᏦᏰᏂ ᎢᏥᏍᎦᎾᎢ, ᎠᎴ ᏗᏥᏅᎦᎸ ᏗᏥᎾᏫ ᏔᎵ ᎢᏧᏓᎢ ᏗᏣᏓᏅᏘ. “ᏤᏍᏗ ᎯᎸᎯ!” ᎤᏦᏱᎴ. ᏗᏂᎧᎿᏩᏙᎯᏰᏃ ᎨᏒ ᎦᎪ ᎢᎸᎯᏳ ᎯᎠ ᏄᏪᏎᎶᎢ, ᎠᏇᏥ ᏂᎯ ᎪᎯ ᎢᎦ ᏍᏆᏕᎲᏏ? ᎠᎴ ᎾᏍᏉ ᎯᎠ; ᎠᏴ ᏥᎦᏴᎵᎨ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ Ꮎ ᎠᏯᏥ ᎨᏎᏍᏗ? ᎣᏍᏓ ᎠᎩᏍᏗ ᎨᏎ---ᎤᏅᏗ, ᎤᎧᏔ ᎠᏰᎵ, ᎦᏚᎢ ᏗᎬᏂᏍᏔᏅ ᎦᏚ, ᏩᎩᎦ ᎦᏁᎦ, ᏔᎵ ᎢᎦ ᎦᏚ ᏧᏍᏔᎦᏴᎯᏓ, ᎦᏚ ᎤᎦᎾᏍᏓ, ᎠᏣᏗ ᎦᏙᎦ, ᏐᏉ ᎠᏓᎶᏂᎨ ᎠᏯᎨᏨ, ᏰᎵ ᎢᎦ ᎤᎦᎢ) ᏗᎦᎸᏅ, ᎤᏬᏗᎨ ᎤᏅᏗ ᎤᏍᏔᏲᏒ, ᎦᏚ ᎤᎦᎾᏍᏓ ᎦᏌᏆᏞᎸ, ᎪᏪᎵ ᏔᎷᎩᏍᎩ ᎦᏯᎸᏅ ᏃᎴ ᎠᏗᏙᏗ ᎦᎵ ᏒᏗᏩᏟ ᎦᏁᎯ ᎤᏍᏓᏲᏒ. ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ ᏱᏦᏞ ᏍᎩᏴ ᎤᎵᏏᏂᏕᎾ, ᎯᎠ ᎢᏳᏍᏗ ᏱᏣᏛᎦᏁᎢ: “Ꭷ, ᏃᏗ ᏄᏓᎴ ᎢᎦᏪᏍᎩ! ᎿᏉᏃ ᎢᎦ ᏄᎵᏍᏔᏅ ᎥᏝ ᏳᏃᎵᏤ ᎾᎿ ᎦᏙᎯ; ᎠᏎᏃ ᎤᏂᎪᎲ ᎠᎺᏉᎯ ᏭᏩᏂᎦᎸᎢ, ᏰᎵ ᎬᏚᎩᏍᏗ ᎨᏒᎢ, ᎾᎿ ᏭᏂᏅᏍᏙᏗᏱ ᏥᏳ ᎤᏂᏰᎸᏅᎩ, ᎢᏳᏃ ᏰᎵ ᏱᎩ. ᎠᎴᏬ ᏅᎩ ᏗᏂᏅᏌᏗ ᎤᏂᎩᎬ ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏥᏫᎦᏁᏨᏍᏗᏍᎨ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ, ᎾᏍᎩ ᏗᏂᏰᎸ ᎦᎵᏦᏛ ᏙᏱᏗᏢ ᏓᎾᎪᎲᏍᏗᏍᎨᎢ. ᎾᏍᎩ ᎠᏆᏚᎵᏍᎬᎩ ᏥᏯᎧᎯᏯᏍᏗᏱ ᎠᏂ ᎨᏙᎲᎢ, ᎾᏍᎩ ᏂᎯ ᏍᎩᏍᏕᎸᎯᏓᏍᏗ ᎨᏒ ᎠᎩᏍᏕᎸᎯᏓᏍᏗᏱ ᎥᏆᎸᎢᏛ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎩᏍᏛᏗᏍᎬᎢ; ᎢᎦ ᏏᏆ ᎠᏍᏚᎲ ᎱᏂᎷᏤ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ. ᎤᏲ ᏦᎦᏓᏅᏔᏩᏕᎪ ᎾᏍᎩᏯ, ᎠᏎᏃ ᏯᏃ ᎣᏣᎵᎮᎵᎪᎢ; ᎤᏲ ᏥᏃᎦᏛᎿᏕᎪ ᎾᏍᎩᏯ, ᎠᏎᏃ ᎤᏂᏣᏘ ᏙᏤᏅᎢᏍᏗᏍᎪᎢ; ᎪᎱᏍᏗ ᏃᎩᎲᎾ ᏥᎨᏐ ᎾᏍᎩᏯ, ᎠᏎᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎣᎦᏤᎵᎦ. ᎠᎹ ᏃᎴ ᎤᏃᎴ ᏩᏓᏑᏴᎥᏍᎬ ᏍᏉ. ᎭᏩ ᎯᎠ ᏃᏉ ᏱᎩ, ᎠᏆᏚᎵ ᏣᏛᎦᏍᏙᏗ ᎪᎰᏍᏗ, ᎣᎭᏁ ᎠᏆᏚᎵ ᎠᏆᏛᎦᏍᏙᏗ ᎢᏳᏍᏗ ᏁᎵᏍᎬ. ᎠᏥᎳ ᏓᏆᎴᎳ ᏧᏟᎷᏆᏗᏅᏓ ᎤᎵᎨᏯᏛᏅ ᎾᎥᏂᎨᎢ ᏄᏍᏛ. ᏥᏌᏃ ᏚᎧᎿᏅ, ᎤᎨᏳᎯᏳ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏑᏓᎵᎩ ᏣᎷᎳ; ᏫᎾᏚᎦ ᏂᎦᎥ ᎪᎱᏍᏗ ᏣᎾᎥᎢ, ᎠᎴ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎩᏁᎸᎭ, ᏦᏒᏃ ᏫᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᎠᎴ ᏖᏒᎭ, ᏧᏓᎿᏩᏛ ᎪᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᎠᎴ ᏖᏒᎭ, ᏧᏓᎿᏩᏛ ᎯᏴᎲᎭ, ᎠᎴ ᏍᎩᏍᏓᏩᏕᏒᎭ. ᏥᏌᏃ ᎤᏍᎦᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎡᎳᏪ ᎲᎾ, ᎠᎴ ᎯᏄᎪᎢ. “ᎡᎭ, Ꮟ ᎩᎳᎯ ᎭᏓᏅᏖ ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᎩᎸᏙᏗ?” ᎤᏛᏁ ᎡᎳᏆᏗ ᎤᏲ ᎤᏰᎸᎯ. ᎯᎠ ᏄᏪᏎᎢ, ᎢᏍᏕᎾ ᎢᏢ ᎾᏨᏗᎦᏚᎭ, ᎾᎿᏃ ᏫᏍᏗᎷᏨᎭ ᏓᏰᏍᏗᏩᏛᎯ ᎠᎩᎾ ᎨᎵᏌᏕᏍᏗ, ᎾᏍᎩ ᎥᏝ ᎠᏏ ᎩᎶ ᎤᎩᎸᏔᏅᎯ ᏱᎩ; ᎡᏍᏕᎵᏌᏕᏒᎭ ᎠᎴ ᏣᏍᏓᏘᏁᏒᎭ. ᎠᎴ ᎠᏏ ᎤᏟ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ, ᎢᏳᏃ ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯ ᏅᏩᏓᎴ ᎠᏥᎸ-ᎨᎶᎯ ᏱᎦᎾᏄᎪᎦ, ᎢᏳᏃ ᏰᎵ ᎤᏚᎩ ᏂᎨᏒᎾ. ᎠᎵᏥᏙᏂᏙᎮᏃ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏂᎬᎾᏛ ᎨᎵᎵ, ᎠᎴ ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎨᎢ. ᎠᏎᏃ, ᎨᎵᎠ ᎨᏍᏗ ᏱᏓᎦᏕᎶᎣᏏ ᎤᏒᎯ ᏓᎩᎷᏫᏍᏔᏁᎸ. ᏦᎢᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎤᏣᏘᏃ ᎡᏆ ᏃᏈᏏ ᎤᏬᎭᏒᎩ ᎦᎸᎳᏗ ᏗᏳᏓᏅᎩ, ᎠᏨᏍᏙᏗ ᏣᏓᏪᎵᎩᏍᎪ ᎾᏍᎩᏯᎢ, ᎡᏉᏂᏃ ᏚᏪᏴ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᏥᏍᏠᏨᎩ, ᎠᎴ ᎠᎺ ᏕᎦᏄᎪᎬ ᏚᏥᏍᏠᏨᎩ. ᎨᏍᏗ ᏴᎦᏔᎭ ᎢᏳᎵᏍᏙᏗ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ. ᎢᎦᏛᏃ ᏓᎾᏕᎰᏗᏍᎬ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏤ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏚᏂᎧᎵᏨ. ᏐᏉ ᎤᏬᏰᏂ ᎤᏌᎵᏓᏅ ᏥᏣᎩᎨᎯᏙᎰ ᎢᎦᎦᏓ, ᏃᏉ ᎱᎴᏅᎲ ᏕᎧᏃᎮᏍᎬ ᏗᏤ ᏧᎳᏑᎶ, ᎨᏂᏗ ᎨᏂᏗ ᏅᏬᏘ ᎤᏓᏑᏱ ᎤᏅᏍᎦᎸ. ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎠᏥᏌᎳᏓᏅ, ᎦᏳᎳ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏩᏔᏅᎯ ᏧᏁᏤᎸᎯ ᏂᎨᏎ ᎨᏥᏅᏏᏛ ᎾᏍᎩ ᏧᏑᏰᏛ. ᏃᏗ ᎠᎵᏍᏛᏧᏍᏗ ᎠᎧᏁᎲ. ᎢᏣᏉᎨᏒ, ᏚᏅᏓᏒ ᏓᏯᏙᎳᏛᎥᏍᎬ ᎦᎸᎶᎢ. ᏗᎦᏙᎵ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᏍᎪᎵᏃ ᎤᏣᏘ ᏚᎵᏍᏚᎸᎩ; ᎠᎴ ᏚᏙᎥ ᎪᏪᎸᎩ ᎾᏍᎩ ᎩᎶ ᎬᏬᎵᏍᏗ ᏂᎨᏒᎾ ᎤᏩᏒᏍᎩᏂᏃᏅ ᎪᎵᎬᎩ. ᏧᏓᎴᏅᏛᏍᎩᏂᏃᏅ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎵᏍᎪᎸᏔᏅᎯ, ᎠᏎᏃ ᎾᏍᎩᏉ ᏌᏉ ᎠᏓᏅᏙ. ᎨᏍᏗ ᎡᏝᏪᎯ ᏱᎨᏐ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏭᏕᎵᏤ ᎤᏔᎴᎦᏒ, ᎦᏌᏙᏱᏎ ᏌᏌ ᎤᏪᏥ ᎠᎬᏱᏣ. ᎢᏳᏃ ᎦᏰᏥᏐᏢᏕᏍᏗ ᎦᎶᏁᏛ ᏚᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ, ᎠᏓᏅᏙᏰᏃ ᎦᎸᏉᏗᏳ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎢᏤᎳᏗᏙᎭ; ᎾᏍᎩ Ꮎ ᎨᏒ ᎦᎬᏩᏐᏢᏗ, ᏂᎯᏍᎩᏂ ᎨᏒ ᎠᏥᎸᏉᏗᎭ. ”ᏥᏂᏕᎯᏫ ᏚᏙᏍᏛᎢ, ᎨᏍᏗ ᎣᏍᏓ ᏱᏓᎩᏂᏴ ᎠᎬᏱᎯᎩ ᎾᏄᏍᏗ ᏓᎩᏏᎳᏛᎢ-“ᎣᏍᏓᎦ ᎠᎪᏩᏛᏗ ᎤᏰᏌᏛᎢ ᏄᏍᏛᎢ?” “ᎭᏓᏏᏓ!” ᎤᏓᏅᏫᏍᏔᏁ ᏌᎳᏓ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏃᎮᎮᎸ ᎤᏦᏍᏗ ᎪᎵᏍᏗᏱ ᎠᏋᏔᏅ; ᎠᏎᏃ ᏛᏍᏆᎸᎯ ᎿᏉ ᎥᏝ ᏱᏨᏯᎵᏃᎮᏗᏍᎨᏍᏗ ᎤᏦᏍᏗ ᎪᎵᏍᏗᏱ ᎬᏗ, ᎬᏂᎨᏒᎢᏳᏍᎩᏂ ᏓᏨᎾᏄᎪᏫᏎᎵ ᎠᎦᏴᎵᎨᎢ. ᎢᏳᏃ ᏅᏩᏙᎯᏯᏛ ᎤᏪᏥ ᎾᎿ ᎡᎮᏍᏗ, ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎤᎷᏤᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᎾᎿ ᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎢᏨᏒᏉ ᎢᏥᎷᏥᏌᏁᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎾᏍᎩ ᎥᎩᎸᏉᏙᏗ ᎨᏒ ᏂᎯ ᏍᎩᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎦᏥᏁᎸ, ᏌᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᎯ ᎠᏴᏃ ᏌᏉᏉ ᏥᎩ; ᏤᏍᏗ Ꮟ ᎪᎱᏍᏗ ᏱᏍᎩᏃᎯᏎᎴᏍᏗ. ᎨᏍᏗ ᏱᎦᏚᎵ ᎰᎻ ᎤᏓᏅᏖᏗ ᎤᏍᏓᎦᏴᎯᏓ ᎨᏒ ᏫᎵᎻ. ᎾᏍᎩᏃ ᎢᏥᎪᏩᏘᎭ ᏴᏫ ᏕᎤᎸᏫᏍᏓᏁᎲ ᎠᏚᏓᎴᏍᏗᏍᎬᎢ, ᎥᏝᏃ ᎪᎯᏳᏗᏉ ᎨᏒ ᎤᏩᏒ. ᎤᎩᏓᏟᏅᏯ ᎢᎾ? ᎠᏂᏴᏫᏃ ᎾᏍᎩ Ꮎ ᏧᎾᏛᏐᏅᎯ ᎨᏒ ᎤᏁᏨᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎦᎪ ᎯᎠ ᎾᏧᏁᎬ ᏧᎾᏄᏩᎢ ᏥᎩ? ᎠᎴ ᎭᏢ ᏧᎾᏓᎴᏁᎢ? ᎿᏉᏃ ᎠᏂᏧᏏ ᎤᏅᏒᏉ ᏚᎾᏘᏲᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎯᎠ ᎠᏍᎦᏯ ᏱᎩᎲᏏ ᎤᏩᏒ ᎤᏫᏯ ᎢᎦᎵᏍᏓᏴᏙᏗ? ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏗᎦᎵᏍᏙᏗᏍᎩᏂ ᏂᎯ ᎡᏥᏁᎸᎯ ᎨᏒ ᎢᏦᎵᏍᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬ ᏫᏳᎯ ᎨᏒᎢ, Ꮎ-ᏍᎩᏂ ᎥᏝ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎩ. ᎿᏉᏃ ᎠᏂᏔᎵ ᏠᎨᏏ ᎠᏁᏙᎮᏍᏗ, ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ; ᎤᏐᏅᎢᏴ. ”ᏔᎷᎩᏍᎩ ᎬᏗ ᏣᎶᏅᎮᎭ. ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᎾᏍᎩ ᎠᏛᎩᏍᎨᏍᏗ. “ᎣᏍᏓ ᏱᏂᏣᎵᏍᏓ ᏍᏉᏟᎢ ᏱᏤᎯᏍᏔᏁᎳ.” ᎾᏍᎩᏃ ᏧᎾᏟᎶᏍᏙᏗ ᏂᏣᎵᏍᏔᏅᎩ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ ᎹᏏᏙᏂ ᎠᏁᎯ ᎠᎴ ᎡᎦᏯ ᎠᏁᎯ. ᏌᎳᏓ ᎤᏕᎶᎰᏎ ᎤᏙᎰᏒ. ᎬᏣᏙᏗ ᏄᏪᏎᎴ ᎤᏃᏕᎾ ᎠᏓᎯ. ᎠᏎᏃ ᏄᏪᎯᏨᎾᏉ ᎣᏂ, ᎤᏱᎶᎸᎩ ᎤᏃᎴ ᏳᎶᏟᏛ ᏧᏙᎢᏛ. ᎦᎸᎳᏗ ᎨᏒ ᎨᏴ ᏃᎴ ᎤᎭᎨᏛ ᎡᎳᏬᏗ ᎠᎭᏱᏒ. ᎿᏉᏃ ᎠᏂᏄᎪᎬᎢ ᎬᏂᏳᏉ ᎩᎶ ᎬᏩᏘᏃᎮᎸᎩ ᎠᏍᎦᏯ ᎤᏩᎨᏫ, ᎠᏍᎩᎾ ᎤᏯᎢ. ᎾᎿᏃ ᎠᏁᏙᎮ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ. ᏥᏌᏃ ᎤᏴᎴ ᎠᎴ ᎤᎶᏎ ᏤᎵᎪ. ᎤᏓᏬᎡ, ᎤᏩᏛ ᏧᎶᏒ ᎢᎪᎯᏓ. ᎡᏂᎾᏯᏃ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏅᏤ ᎠᎴ ᎤᎵᏍᏆᏕᎴᎢ. ᎾᏂᎥᏃ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ ᎤᎾᏛᎦᏅᎯ ᎤᏣᏔᏅᎯ ᎤᏂᎾᏰᏎᎢ. ᎦᎵᏉᎩᏃ ᎦᏚ ᏚᎩᏒᎩ ᎠᎴ ᏚᏁᏒ ᎠᏣᏗ, ᎤᎵᎮᎵᏨᏃ, ᏚᎬᎭᎷᏴᎩ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏫᏚᏁᎸᎩ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏂᏣᏘ ᏫᏚᏂᏁᎸᎩ. ᎠᏎᏃ ᎤᏟ ᎤᎵᏂᎩᏛ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎾᏍᏉ ᎢᏧᎳᎭ ᏗᎩᏂᏲᏞᎯᏍᏗ ᏱᎩ, ᎠᏎ ᎥᏝ ᏴᎦᎬᏯᏓᏱᎦ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏂᏪᏎ ᏂᎦᏛ. ᏂᎯᏍᎩᏂ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎯᎠ ᏄᏍᏕᏍᏗ; ᎣᎩᏙᏓ ᎦᎸᎳᏗ ᎨᎯ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏕᏣᏙᎥᎢ. ᎢᎦᏛᏃ ᎨᏥᏅᏏᏛ ᏚᏪᎧᏁᎢ; ᎢᎦᏛᏃ, ᎠᎾᏙᎴᎰᏍᎩ; ᎢᎦᏛᏃ, ᎠᎾᎵᏥᏙᏂᏙᎯ; ᎢᎦᏛᏃ, ᏗᏂᎦᏘᏯ ᎠᎴ ᏗᎾᏕᏲᎲᏍᎩ; ᎠᎴ ᎾᎿ ᏪᎮ ᎬᏂ ᎡᎶᏛ ᎤᏲᎱᏒ; ᎤᏙᎯᏳᏁ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎢ, ᎠᏙᎴᎰᏍᎩ ᏧᏮᏔᏁᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎢᏥᏈᏱ ᏫᏥᏯᏅᎲ ᎠᏇᏥ. ᎤᎩᏨᏛᏃ ᏌᏙᏂ ᎣᎩᏃᏠᏨᎩ. ᏧᎵᏯᏏᏃ ᎣᏍᏛ ᏄᏛᏁᎸᎩ ᏉᎳ, ᎤᎵᏍᎪᎸᏓᏁᎸᎩᏰᏃ ᏧᎵᎢ ᏧᏩᏛᎲᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎬᏩᏍᏆᏂᎪᏙᏗᏱ. ᎣᏏᏳ ᏱᏥᏰᎸᎾ ᎢᏳᏃ ᏂᏥᎥ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏱᏗᏥᏬᏂᎭ; ᎠᏎᏃ ᎰᎤᎬᏫᏳᎭ ᏱᏣᏙᎴᎰᏍᎦ; ᎤᏟᏰᏃ ᎠᏥᎸᏉᏗᏳ ᎾᏍᎩ Ꮎ ᎠᏙᎴᎰᏍᎩ, ᎡᏍᎦᏉ ᎾᏍᎩ Ꮎ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏗᎦᏬᏂᏍᎩ, ᎢᏳᏍᎩᏂᏃᏅ ᏯᏁᏢᏗᎭ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏧᎾᎵᏂ ᎪᎯᏍᏗᏱ. ᏕᏤᏯᏙᏤᎮᏍᏗ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᏫ ᎤᏂᏃᏕᎾ ᎦᏁᎦ ᏧᎾᏄᏩᎢ ᏥᎨᏥᎷᏤᎰᎢ; ᎠᏎᏃ ᎭᏫᏂ ᎨᏒ ᏩᏯ ᎤᏂᎬᎥᏍᎩ ᎨᏐᎢ. ᎾᏍᎩ ᎠᏂᎦᏔᎲ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏄᎾᏓᏄᏴᏛᎾ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏆᏓᏄᏴᏛᎾ ᏥᎨᏐ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎬᎩᏁᏉᏤᏗᏱ ᎾᏍᎩ Ꮎ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏄᎾᏓᏄᏴᏛᎾ, ᎠᏎᏃ ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏆᏓᏄᏴᏛᎾ ᏱᎩ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎠᏆᏓᏄᏴᏗᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏁᎮᎢ, ᎠᏏᏴᏫ ᎠᏥᏅᏝᎢ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ, ᏐᎢᏃ ᎾᏥᎾᏝᎥᎾ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ. ”ᏄᏦᏍᏛᎾ ᎨᏎᎢ,” ᎤᏓᏙᏎᎴ ᎤᏩᏌ. ᎠᎴ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ ᎢᎾᏛ ᎾᏍᎩ ᏅᎩ-ᏓᎦᏅᏌᏗ ᎤᎵᏂᎬᎬ ᎤᏁᎸᎯ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ, ᎯᎠ ᎾᏁᏪᏍᎬᎩ, ᎦᎪ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏄᏍᏛ ᎾᏍᎩᏯ ᏄᏍᏗ? ᎦᎪ ᏰᎵ ᎾᏍᎩ ᏓᎿᏩ ᏱᎾᏅᎦ? ᎯᎠᏃ ᏂᏓᎬᏪᏎᎵ, ᏧᏍᏆᏴᏍᏗ, ᎯᎬᏩᏛᏔᏅᎯ ᎱᏍᏔᏂᏙᎲ-ᎯᏙᎲ-ᎯᏙᎲ ᎤᏁᎸᏗ ᎯᏴᏐᎵ ᎾᎥᏂ ᏌᏌ ᎠᏂᏓ, ᎤᏁᏘᏍᏗ ᏓᎬᎵᎥᏂᎵ.” ᎾᏍᎩᏃ ᎯᎠ ᎠᏥᏃᎮᏍᎬ ᏧᏗᏱ ᏂᎬᎾᏛ ᏚᏰᎵᏏᏙᎴᎢ, ᎠᎴ ᎾᎿ ᎬᏩᏚᏫᏛ ᎨᏒᎢ. ᎬᏩᏍᏓᏩᏗᎯ ᎯᎠ ᏅᎩᏩᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎿᏉ ᎬᏂᎨᏒᎢᏳ ᎯᏁᎦ, ᎥᏝᏃ ᎤᏦᏍᏗ ᎪᎵᏍᏗᏱ ᏱᏁᎦ. ᎯᎠᏰᏃ ᎾᏍᎩ ᏄᏍᏗ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ, ᏗᏣᏓᏅᎦᎸᏛ ᎢᏣᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏗᏥᏲᎯᏍᏗᏱ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ; ᏌᏌ ᎠᏨᏯᎢ ᎤᏩᏛᎮᎢ ᎤᏂᏲᏍᏔᏅ, ᏏᏓᏁᎸ ᏫᏚᏘᏅᏍᏔᏁᎢ ᏒᎧᏔ ᏗᏗᏧᎬᎢ ᎢᏣ. ᏒᎧᏔ ᎡᎳᏗ ᎦᎳᎨᏴ ᏚᏂᎨ. ᎤᏍᏗ ᏍᎪᏯ ᎤᏍᏆᏂᎪᏛ ᎤᏩᏯᎨᎢ. ᎦᎵᏉᎩᏁᏃ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ ᎡᎳᏪ ᎤᏅᏅᎩ ᎦᎸᎳᏗ ᎠᏰᎵ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ. ᎠᏆᏚᎵ ᎠᏤ ᎧᏁᏍᎦ ᎯᏁᏗ ᎤᏂᏏᏗ ᏧᏙᏓᏋᏓ. ᏂᎦᏗᏳᏃ ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᎧᎵᏨᎯ ᎤᎾᏰᎯᏍᏗ ᎤᎾᏓᏅᏓᏕᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏍᏆᏂᎪᏗᏳ ᎢᏗᎪᏩᏛ ᎪᎯ ᎢᎦ. ᎤᏙᎯᏳᎭᏍᎪᏃ ᎠᏚᎸᏗ ᎠᎵᏍᏔᏴᏗ ᏥᏃᎮᎭ? ᎠᎴ ᎯᎠ ᏅᏧᏪᏎ ᎦᎸᎳᏗ, ᏂᎯ ᎬᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎣᏏᏳ ᎬᏰᎸᎢ ᏥᎩ. ᎾᎯᏳᏃ ᎤᏅᏂᏍᏗᏱ ᎨᏒ ᎤᏅᏏᏓᏍᏗ ᎤᏅᏎ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏗᎡᎲᎢ, ᎾᏍᎩ ᏂᏙᏓᎬᏩᏅᏁᏗᏱ ᎤᎾᏓᏛᏅᎯ ᏖᎸᎳᏗ ᏓᏫᏒᎢ; ᎠᏎᏃ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᎵᎥᏂᎸ ᎠᏒᎭ ᎤᏂᎨᎯᏙᎴᎢ. ”ᏣᏁᎳ ᎢᎦ ᎨᏎ ᏧᏪᏥ, ᎠᏎᏃ ᏐᏉ ᎤᏪᏥ ᎨᏍᏗ ᏳᏣᎩᏌ. ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᏌᏌ, ᏧᏍᏆᏴᏍᏗ ᎤᏁᎴ. ᏫᏥ ᏭᏴᏍᏔᏁᎢ. ᏧᎵᏠᏯᏍᏗ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎠᏩᏛᏗᏱ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏞᏩᏥᎪᏗ ᏂᎨᏒᎾ ᏧᏚᎢᏍᏔᏁ ᎠᏏ ᎾᏓᎴᏂᏍᎬᎾ ᏥᎨᏎ ᎡᎶᎯ; ᏍᎦᏚᎩ ᎤᎬᏫᏳ Ross ᎠᎴ ᏍᎦᏚᎩ ᎤᎬᏫᏳ ᎦᏄᏓᎴᎩ, ᎠᏤ ᎤᏔᏂᏓ ᎦᎵᏦᏕ ᎠᏂᏂᎩᎸ. ᏍᎩᏃᏳᏍᏗ Ꮎ ᏥᏓᏇᏍᏓᏁᎮ ᏗᎳᏑᎶ, ᏧᎾᏍᏗᎩᏃ ᎨᏎ.” “ᎨᏍᏗᏗ ᏱᏓᏓᎴᎦ,” ᎤᏛᏁ ᏌᎳᏓ. ᏣᏁᎳ ᏕᎦᏅᏌᏕ, ᏃᎴ ᏐᏉ ᎬᏗ ᎤᏲᎵᎮ ᎤᏓᏅᏘ. ”ᎭᏩ,” ᎤᏛᏁ ᎤᏙᏓ, ”ᎤᏍᏗᎩᎨ ᏍᎩᎾᎾ.” ᎠᎢᏒ ᎠᏁᎸᏗᏍᎨᎢ ᎤᏍᎦᏍᏗ ᏱᎨᏒᎾ. ᎠᏂᎨᏯ ᎤᏂᏗᏍᎩᏌᏁ ᎦᏲᏟ ᎤᏅᏔᏂᏓᏍᏗ ᎠᎾᎵᏗᎩᏍᎬ. ᏎᎦᏨ ᎤᎵᏛᏔᏁᎢ. ᏃᎩᎦᏔᎲᎾ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᎣᏏᏳ ᎣᎩᎦᏔᎯ ᎨᏒᎢ; ᏥᏙᏥᏲᎱᏍᎪ ᎾᏍᎩᏯᎢ, ᎬᏂᏳᏉᏃ ᏦᏨᏃᏛ; ᎣᎩᏍᏛᏗᏍᏔᏅᎯ, ᎣᎩᎸᎯᏃ ᏂᎨᏒᎾ; ᎦᏚᎲᏃ ᎥᏝ ᏯᎾᏚᎵ ᏅᏙ-ᎢᎦ-ᎡᎯ ᎠᎴ ᏅᏙ-ᎡᏃᏱ-ᎡᎯ ᎤᎦᎵᎯᏍᏗᏱ ᎾᎿᏂ; ᎦᎸᏉᏗᏳᏰᏃ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎢᎦᎤᏘᏍᏛ ᎾᎿᏂ, ᎠᎴ ᎤᏃᏕᎾ-ᎠᎩᎾ ᎢᎦ ᎠᏘᏍᏗᏍᎩ ᎢᎩ ᎾᎿᏂ. ᎤᎵᏂᎩᏛᏃ ᏚᏅᏍᏓᏕᎴ ᏚᏁᏤᎴ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ, ᎠᎴ ᎢᎸᎯᏢ ᎦᏚ-Ꮂ ᎢᏥᎷᎨᏍᏗ, ᎠᎴ ᏕᎨᏣᏓᏂᎸᎨᏍᏗ, ᏄᏍᏛ ᎨᏤᎳᏍᏗᏍᎬ ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ. ᎿᏉᏃ ᎬᏂᎨᏒ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎳᏏᎳ ᎤᏲᎱᏒ; ᎤᏙᎯᏳᎯᏰᏃ ᎾᏍᎩ ᏂᏣᏛᏁᎭ ᎾᏂᎥ ᏕᏥᎨᏳᎭ ᎠᎾᎵᏅᏟ ᎹᏏᏙᏂ ᎠᏁᎯ; ᎠᏎᏃ ᎢᏨᏍᏗᏰᏗᎭ, ᎢᏓᎵᏅᏟ, ᎢᏥᏁᏉᎢᏍᏗᏱ ᎤᏟᎯᏳ ᎢᎦᎢ; ”ᏔᏣᎪᎳᏗᎾ!” ᎤᏪᎷᏁᎢ ᎡᎳᏆᏗ, ᎭᏫᏂᏗᏣ ᏭᎵᏖᎸᏂᎴᎢ. ᏫᏥᎪᏩᏛᏗ ᎨᏒ, ᎢᏳᏓᎵᎭ ᏧᏪᏅᏒ. ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎪᎱᏍᏗ ᏂᏗᏣᏓᏕᎵᏎᎲᎾ ᎠᎴ ᏥᏣᏗᏒᎯᎲᎾ ᎨᏎᏍᏗ; ᎠᏎᏃ ᏅᎵᏌᎵᏉ ᏗᏅᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏣᏘᏂᏉ ᏭᏂᎶᏎᎢ, ᎠᏏᏴᏫ ᏧᎶᎨᏒᎢ, ᏐᎢᏃ ᎤᏃᏙᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᏕᏨᏅᎢ, ᎢᏳᏍᏗ ᎢᏥᎩᏍᏗᏱ ᎠᎴ ᎢᏳᏍᏗ ᎢᏣᏗᏔᏍᏗᏱ, ᏞᏍᏗ ᎠᎴ ᏗᏥᏰᎸᎢ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎢᏳᏍᏗ ᏗᏣᏄᏬᏍᏗᏱ. ᏝᏍᎪ ᎠᎬᏅ ᎤᏟᎯᏳ ᏱᎩ ᎡᏍᎦᏉ ᎠᎵᏍᏓᏴᏗ? ᎠᎴ ᏝᏍᎪ ᎠᏰᎸᎢ ᎡᏍᎦᏉ ᏗᏄᏬ? ᏦᎢᏁᏃ ᎢᏳᏟᎶᏛ ᎢᏴ ᎧᏔᏩᏗᏒ ᎤᏒᎯᏰᏱ ᎢᏗᏢ ᏥᏌ ᎤᏁᏤ ᎠᏍᏓᏯ, ᎯᎠ ᏄᏪᏎᎢ; ᎢᎳ, ᎢᎳ, ᎳᎹ ᏌᏆᏓᏂ? ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎦᏛᎬᎢ, ᎤᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ, ᎦᏙᏃ ᎢᏍᏮᏕᏨᏉ? ᏍᏔᏱ ᎨᏒ ᎢᏧᎴᎭ ᎣᎩᎾᎵᎪᏗ ᏑᏙᏓᏆᏓ ᎠᎴ ᏔᎵ, ᎠᏎᏃ ᎣᏍᏓ ᏥᏰᎸᎥ, ᎨᏍᏗ ᏯᏆᏚᎵᏍᎨ ᎠᎩᏅᏗᏍᏗ ᎠᎵᎮᎵᏍᏙᏗ. ᎠᎬᏱᏣ ᏓᏂᏅᏌᏛᎢ ᏗᎬᏗ ᎤᏂᏲᎵᎴ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ. ᏥᏌᏃ ᏫᏚᏯᏅᎲ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᎦᏔᎭ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᏁᎪ ᎢᏳᎾᏛᏁᎵᏓᏍᏗᏱ ᏴᏫ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎠᏂᏁᏥᏙᎲ ᎾᎾᏛᏁᎰᎢ. ”ᎨᎾ ᏏᏆ!” ᎤᏛᏁ ᎰᎻ, ᎦᎵᎥᏂᎮ ᏔᎷᎩᏍᎩ ᎪᏱᏂᏓᏍᏗ ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎩᏁᎸ ᎠᏓᏅᏙ ᎤᏓᏍᎦᏍᏗ, ᎤᎵᏂᎩᏛᏍᎩᏂ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎴ ᎣᏍᏛ ᎠᏓᏅᏖᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏏᏗ, ᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎥᏝ ᎾᏉᎯᏳᏅᎾ ᏱᎨᏎ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎠᎩᎪᎲᎢ. ᎠᎴ ᎾᏍᎩᏯ ᏤᏂ ᎠᎴ ᏨᏈ ᏣᎾᏡᏗᏍᎨ ᎼᏏ ᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᎠᎾᏡᏗ ᏚᏳᎪᏛ ᎨᏒᎢ; ᎠᏂᏍᎦᏯ ᎤᏲᏨᎯ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᎨᏥᏲᎢᏎᏛ ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎤᎬᏩᎵ. ᏗᎩᏏ ᎦᏓᏍᎬ ᏭᎩᎶᏫᏎ ᏫᎵᎻ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏣᏚᎵᏍᎬ ᏴᏫ ᎢᎨᏣᏛᏁᏗᏱ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᏕᏣᏛᏁᎮᏍᏗ; ᎾᏍᎩᏰᏃ ᎯᎠ ᏄᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ, ᎠᎴ ᏧᎾᏓᏅᏙ ᎬᏩᏄᎯᏍᏔᏅ, ᎤᏂᏄᎪᏨᎩ ᏌᏉ ᎤᏛᏂᏛ ᎤᏓᏂᎵᎨ ᏚᏓᎴᏅᏔᏅᎩ, ᎣᏂᏱ ᏫᎬᏩᏛᏅᎩ; ᏥᏌᏃ ᎤᏩᏒ ᏄᎵᏍᏔᏅᎩ, ᎠᎨᏴᏃ ᎠᏰᎵ ᎦᏙᎬᎩ. ᎠᏏᏴᏫ ᎡᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏢᏍᎩ ᏰᎵᏉ ᎬᏩᏓᏍᏕᎸᏗ ᎠᎴ ᎬᏩᏓᎯᏍᏗ; ᎦᎪ ᏂᎯ ᏅᏩᏓᎴ ᏥᏕᎯᏳᎪᏓᏁᎭ? “ᎠᎩᏲᏏ,” ᎤᏛᏁ ᏍᏗᏫ. ᏃᏗ ᎡᎳᏗ, ᎡᎳᏗ, ᎡᎳᏗ, ᎦᎸᎶ ᏓᎦᏅᎪᎢᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎭᏫᏂ, ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎦᎸᎳᏗ ᎾᎥᏂᎨ, ᏃᏗ ᏙᏱ ᎢᏣ, ᎠᏎᏃ ᎾᎥᏂᎨᏉ ᏃᎴ ᎡᎳᏗᎨᎢ ᎤᏩᎬᏘᎶᏓ. ᏃᏗ ᎩᎶ ᏄᏓᎴ ᎤᏁᎸᏙᏗ. ᎢᎬᏱᏱᏰᏃ ᎨᏒ ᏕᏣᏲᎯᏎᎸᎩ ᎾᏍᎩ ᎾᏍᏉ ᎠᏴ ᏨᎩᏲᎯᏎᎸᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎠᏴ ᎢᎩᏍᎦᏅᏨ ᎢᎩᏲᎱᎯᏎᎸᎢ, ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎵᎯ; ᏦᏈᏃ ᎡᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᎨᏴ ᏧᏁᎶᏗ, ᏓᏈᏗ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᏓᎩ ᎦᏛᎦ, ᎾᏍᎩ ᎯᎠ ᎤᎧᎵᏨᎯ ᎨᏎ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ ᎠᎴ ᎠᏓᏁᎸᎥᏍᎬᎢ. ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ. ᎣᎦᏢᏲᎳᏃ ᎪᎱᏍᏗ ᎣᏥᎪᏩᏛᏗ ᎡᏙᏓ ᏥᎨᏒ ᏃᏊ ᏗᏡᎬ ᎦᎸᎳᏗ ᎢᏗᏢ ᏫᏚᎵᏐᏍᏔᏅ ᎤᏒᏕᎾ ᎦᎶᏇ ᎠᎴ ᏫᏚᏍᏓᏲᎸ. ᎡᎶᏛᏃ ᎤᎬᏫᏳᎯ ᎤᏛᎦᏁ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎬᎢ; ᏚᏃᏣᎶᏤᏰᏃ ᎾᏍᎩ ᏚᏙᎥᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎ ᎡᎶᏛ, ᏣᏂ ᏗᏓᏬᏍᎩ ᏓᎴᎯᏌ ᎤᏲᎱᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏍᏆᏂᎪᏗ ᏥᏕᎤᎸᏫᏍᏓᏁᎭ. “Ꮎ,” ᎤᏛᏁ. ᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ, ᎢᏓᎵᏅᏟ, ᏗᏣᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᎡᏣᎵᏍᎦᏍᏙᏛᎢ, ᎠᎴ ᎢᏣᎵᏍᎦᏍᏙᏛ ᎤᏣᏔᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎯᎠ ᎾᏆᎵᏍᏓᏁᎸᎩ ᎦᎢᏒᎢ, ᏕᎹᏍᎦ ᎾᎥ ᏩᏗᎷᏨ, 'ᎢᎦ ᎠᏰᎵ ᎢᏴᏛ, ᎤᏰᎶᎢᏍᏔᏅᎩ ᎤᏣᏘ ᏚᎸᏌᏓᏛᎩ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᏓᏆᏚᏫᏍᏔᏅᎩ. “Ꭵ, ᎠᏎᏃ ᎭᎦᏓ ᎡᏝᏪᎯ ᎯᎪ ᎢᎦ. ᎠᏎᏃ ᎠᏓᏅᏬᎯᏍᏗᏍᎩ ᎦᎷᏨᎭ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏅᏓᏥᏅᏍᏗ ᏥᎩ ᏂᎯ ᎢᏥᎷᏤᏗᏱ, ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎠᏓᏅᏙ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏅᏛᏓᎴᎲᏍᎩ, ᎾᏍᎩ ᏛᎩᏃᎮᎵ ᎬᏂᎨᏒ ᏅᏛᏋᏁᎵ. ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎤᎬᏩᎴ ᎦᎶᏁᏛ ᎤᎾᏚᏓᎴᏍᏙᏗᏱ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏧᏏ ᎤᏟ ᎢᎦᎢ ᎤᎾᏚ-ᎸᎲᎩ ᎤᏂᎯᏍᏗᏱ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎥᏝ ᎤᎾᏙᏓᏆᏍᎬᏉ ᎤᏩᏒ ᎤᏲᏍᏔᏅᎢ, ᎾᏍᏉᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᏙᏓ ᎤᏛᏅᎢ, ᎢᏧᎳᎭ ᎤᏁᎳᏅᎯ ᎾᏓᏛᏁᎲᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏂᏚᏎᎸᎩ; ᏞᏍᏗ ᏱᏥᎪᏁᎶᏍᎨᏍᏗ. ᎨᏍᏗ ᏱᏄᎵᏍᏔᎾ ᏄᏪᎵᏒ ᏤᎩᏏᏂ. ᎡᏣᎫᏴᏏ ᎾᏍᎩᏯ ᎢᏣᎫᏴᎡᎸᎢ, ᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎡᏣᎫᏴᏏ ᎾᏍᎩᏯ ᏚᎸᏫᏍᏓᏁᎸᎢ; ᎤᎵᏍᏈᏗ ᎤᎧᎵᎸᎯ ᎾᏍᎩ ᏔᎵ ᎢᏳᏩᎫᏗ ᎡᏥᎧᎵᎢᏏ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎩᎶ ᎠᏫᏉ ᏱᏓᏢᏆᏍᏙᏗᏍᎨᏍᏗ; ᏂᎦᏗᏳᏰᏃ ᏧᏓᎴᏅᏛ ᎢᏣᏤᎵᎦ; ᏯᏍᎦᎳ ᎤᏪᏅᏍᏗ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ.” ᏴᏧᏓᏍᎪᏃ ᎤᏩᏙᎯᏴᏓ? ᎿᏉᏃ ᎡᎶᏛ ᎤᏕᎵᏛ ᏫᏚᏯᏅᎲ ᎾᏍᎩ ᎠᏂᎦᏔᎿᎢ, ᎣᏍᏛ ᏚᏛᏘᏌᏁ ᎢᏳᏉ ᎾᏍᎩ ᏃᏈᏏ ᎤᎾᏄᎪᏨᎢ. ᏩᏍᏛ ᎤᏂᎯᏐᏗ ᎠᏂᏴᏫᏯ. ᎤᏁᎳᏅᎯ ᏥᏯᎵᎡᎵᏤᎭ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎢᏳᏩᏂᏌᏛ. ᎾᏍᎩᏃ ᎠᏆᏓᏅᏖᏗᏱ ᎬᏗᎭ, ᎠᏴᏉ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏕᏥᎦᎾᏩᏕᎦ, ᎠᎩᏇᏓᎸᏍᎩᏂ ᎨᏒ ᎬᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᎦᏂ ᎤᏤᎵ ᏕᏥᎦᎿᏩᏕᎦ. “ᏙᏳ ᏦᏚᎯ ᎨᎵᎠ,” ᎤᏛᏁ ᏫᎵᎻ. ᏰᎵ ᎣᏍᏓ ᏥᏰᎸᎥ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏚᎵᏍᎨ Davy Crockett ᏔᎵᏁ ᏥᏯᎴᏁᏗ, ᎠᎴ ᎣᎩᎾᎵᎪᏗ ᎠᎴ ᎣᎩᎾᎵ ᎢᏳᎵᏍᏙᏗ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙᏃ ᏗᏃᏪᎵᏍᎩ, ᎢᎳᏯ ᎢᎬᏱ ᏓᎦᎷᏥ, ᏣᎾᏗᏍᎪᎢ? ᎠᏴ ᎾᏍᎩ Ꮎ ᎦᏚ ᎬᏂᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ. ᎢᏳᏃ ᎩᎶ ᎠᎩᏍᎨᏍᏗ ᎾᏍᎩ ᎯᎠ ᎦᏚ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏁᏍᏗ. ᎠᎴ ᎾᏍᎩ Ꮎ ᎦᏚ ᏨᏓᏥᏁᎵ ᎾᏍᎩ ᎠᏴ ᎠᎩᏫᏯ, ᎾᏍᎩ ᏥᏙᏛᎩᏲᏏ ᎡᎶᎯ ᎤᏛᏂᏗᏍᏙᏗ. ᏕᎦᎫᏍᏓᎥᏃ ᎠᏐᏴ ᎦᏚᎲᎢ ᏕᎪᏑᎢᏍᏛᎩ ᏄᏓᎴᏒ ᏗᎦᎸᏉᏗ ᏅᏯ; ᎢᎬᏱᏱ ᎦᎫᏍᏓᎥ ᏣᏍᏆ ᎨᏒᎩ, ᏔᎵᏁᏃ ᏌᏆᏯ, ᏦᎢᏁᏃ ᎦᎵᏏᏙᏂ, ᏅᎩᏁᏃ ᎡᎻᎳ, ᏃᏆᎴ ᎠᏂᏌᏚᏏ ᎢᎬᏩᎷᏤᎴᎢ, ᎾᏍᎩ ᎠᏲᎱᏒ ᎥᏝ ᏗᎴᎯᏐᏗ ᏱᎩ ᎠᎾᏗᏍᎩ; ᎠᎴ ᎢᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᎬᏂᏳᏉᏰᏃ ᎢᏨᏲᎯᏏ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏣᏘ ᎠᎵᎮᎵᏍᏗ, ᎾᏂᎥ ᏴᏫ ᎤᎾᏛᎪᏗ. ᏃᏊᏃ ᎤᎴᏅᎮ ᏚᏃᏴᎬ ᏗᎧᏁᎢᏍᏗ ᏕᎪᏪᎵᏍᎬ ᎠᏴ ᎢᎩᏬᏂᎯᏍᏗ ᏣᎳᎩ. ᎢᏣᎵᏏᎾᎯᏍᏗ ᎢᏤᏙᎮᏍᏗ ᎠᏂᎦᏔᎲ ᎾᏍᎩ Ꮎ ᎠᏁᎸ ᏂᎨᏒᎾ, ᎢᏧᏓᎴᏍᎨᏍᏗ ᎪᎯ ᎨᏒ ᎠᎵᏱᎵᏒᎢ. ᏙᎢᏳᏍᏗ ᏓᏗᏩᏛᎯ. ᎠᎬᏱ ᎪᎨ ᎤᎾᏣᎩᏎ ᏧᏪᏥ ᏌᏌ. ᎪᎯᏱᏃ ᎢᏴᏛ ᎬᏩᎷᏤᎴ ᎾᎥ ᎠᏂᏙᎾᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴ ᏈᏓ; ᎤᏙᎯᏳᎯ ᎾᏍᏉ ᏂᎯ ᎢᏤᏙᎸᎯ, ᎯᏬᏂᏍᎬᏰᏃ ᎬᏂᎨᏒ ᏂᏨᏁᎭ. ᏔᎵᏁᏃ ᎨᏒᎢ, ᎾᏍᎩᏯᏉ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ, ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᎾᏍᎩᏯ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ. ᎥᏝ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏛᏍᏗ. ᏯᎭ ᎤᏟ ᎢᎦᎸᏉᏗ ᎡᏍᎦᏉ ᎾᏍᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎢᎦᏚᏓᎴᏍᏔᏅᎯ ᏥᎩ, ᏅᏩᏙᎯᏯᏛ ᏂᎬᏅ ᎤᏁᎳᎥᎯ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ; ᏓᏆᎴᎳ ᏭᎩᎸᏁᎢ ᎤᏪᏅᏎ ᏧᎷᏫᏍᏔᏁᏗ ᎦᏂᎦᏔ ᏗᎦᏚᎲᎢ. ᎾᏍᎩᏃ Ꮎ ᎦᎶᏁᏛ ᏧᏤᎵᎦ ᏥᎩ ᏓᏓᎿᏩᏍᏛ ᎤᎾᏛᏅ ᎤᏇᏓᎵ ᎨᏒ ᎬᏩᏠᏯᏍᏗ ᎤᏚᎸᎲᏗ ᎨᏒ ᎠᎴ ᎤᎬᎥᎯᏍᏗ ᎨᏒᎢ. “ᏣᏓᏬᏍᏗ ᎤᏍᏆᎸᎭ!” ᎤᏛᏁ ᎰᎻ ᎤᎵᎮᎵᏍᏗ. ᎤᏂᏁᎫᏥᏛ, ᎠᏂᏍᎦᏯ ᏗᎾᏂᏏᎲᏍᎩ, ᏴᏫ ᏗᏂᏃᏍᎩᏍᎩ, ᎠᏂᏰᎪᎩ, ᎦᏰᏙᎩ ᎠᎾᏎᎵᏛᏍᎩ, ᎠᎴ ᎾᏍᏉ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏍᎩ ᏗᎦᏘᎴᎩ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒᎢ; ᎤᏛᎦᎾ ᎤᏁᎷᎬ ᏃᎴ ᏓᎾᏏᏛᏂᎲ ᏔᎵᏁᎢ, ᎩᎳᏈᏴ ᎤᎸᏖᎴᎢ. ”ᏍᎩ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ. ᏥᎪᏩᏘᏍᎬᏭ ᎤᎿ ᎢᎪᎯᏓ ᎪᎱᏍᏗ ᎾᏆᎵᏍᏓᏁᎸ ᎢᎦ ᎢᏯ. ᎢᏤᎾᏍᎩᏂ, ᏫᏣᏕᎶᏆ ᎦᏛᎬ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏪᎭ; ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏆᏚᎵᎭ, ᎥᏝᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎨᏒᎢ. ᎥᏝᏰᏃ ᎾᏂᏍᎦᏅᎾ ᏱᏗᏥᏯᏅᎯᎸ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ. ᎬᎸᏉᏔᏅ ᎡᎶᎯ; ᎠᎩᏍᏆᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏍᎩᏁᎸᎯ ᏥᎩ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ. ᏂᎦᎥᏉ ᎢᎬᏆᏛᏁᏗ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩ ᏣᏆᎵᏂᎪᎯᏍᏗᎭ. ᎣᏂᏃ ᏑᏟᎶᏛ ᎢᏴᏛ ᎢᎪᎯᏛ, ᏅᏩᏓᎴ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎨᏒ ᎤᏍᏓᏱᏕᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯ ᎯᎠ ᎾᏍᏉ ᏓᏁᏙᎲᎩ; ᎨᎵᎵᏰᏃ ᏕᎯ ᎢᎩ. ᎠᎴ ᎾᏍᏉ ᏍᏗᏇᎾ ᏚᏓᏘᎾᎥ ᏕᎦᏥᏯᏬᎥᎩ; ᏅᏩᏓᎴᏃ ᎥᏝ ᏱᏆᏅᏔ ᏥᏯᏬᎥᎢ. ᏗᎦᏘᎭᏁᎩ ᏃᎴ ᎦᏁᏗᏍᏗᏍᎩ, ᎠᏯ ᎠᏋᏌ ᎢᎬᏆᏛᏁᏗ. ᏐᏁᎳ ᎢᏳᏕᏘᏴᏓ ᏥᎨᏎ ᎦᏳᎪᎲ Galway Bay, Ꮳ ᏰᎵᏍᎨ ᎤᎪᏩᏛᏗ ᎯᎠ ᎢᏣ ᎠᏥᏂᏌᎲ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙ ᏙᏓᏓᏤᎳᏍᏔᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ? ᎦᏙᎨ ᏓᏟᎶᏍᏛ ᏙᏓᏓᏟᎶᏍᏔᏂ? ᏥᎦᏔᎭ ᏁᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ; ᎬᏂᏳᏉ ᎢᎬᏱᏢ ᏂᎬᏴᏂᏏ ᎠᏍᏚᎢᏛ ᎦᎶᎯᏍᏗᏱ, ᎥᏝᏃ ᎩᎶ ᎬᏩᏍᏚᏗ ᏱᎩ; ᎠᏏᏰᏃ ᎤᏍᏗᏱᏛ ᏣᎵᏂᎬᎦ, ᎠᎴ ᏣᏍᏆᏂᎪᏔᏅ ᎧᏃᎮᏛ ᎠᏆᏤᎵᎦ, ᎠᎴ ᎥᏝ ᏱᏣᏓᏱᎸ ᏓᏆᏙᎥᎢ. ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᏧᏴᎴᎢ, ᎠᎴ ᎠᎦᏙᏗ ᎦᏚ ᏧᎨᎢ, ᏰᎵ ᎬᏩᎩᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏎᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ, ᎠᏥᎸᏍᎩᏂ-ᎠᏁᎶᎯ ᎤᏅᏒ? ᏧᏩᏍᏉᎸ ᏧᏍᏗ ᎩᎦᎨ ᏅᏯ ᎢᏳᏍᏗ ᏚᏓᏁᎮ ᏧᏆᎶᎬ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏕᎾ ᏭᏗᎷᏥ ᎦᎵᏦᏛ ᏙᏱᏗᏢ, ᎢᎦᏠᏯᏍᏗᏍᎨᏍᏗ ᎦᏰᏥᏐᏢᏗᏍᎬᎢ; ᎤᎦᏃᏩ ᎤᏅᏗ ᎤᏥᏍᏔᏁ, ᏲᎾ ᎤᏤᏍᏙ ᎤᏁᎴ. ᎾᏍᏉᏍᎩᏂ ᎢᏥᏍᏗᏰᎬ ᎢᏥᏍᎪᎵ ᏂᎦ-ᏗᏳ ᏗᏎᎸᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᏂᎯ ᎤᏟ ᎢᎦᎢ ᏗᏣᎬᏩᎶᏗ ᎡᏍᎦᏉ ᎤᏂᏣᏘ ᏥᏍᏆᏯ. ᏫᏓᏥᏅᏂ ᏗᏥᎶᏍᏔᏅ ᏄᏍᏛ ᎠᏰᎵ ᎦᎸᎳᏗᏣ ᏥᏥᏃᎮᎭ ᏓᏎᎯᎲ ᏥᏳᎪᏗ ᏄᏓᎴ ᏓᏎᎯ ᎠᎬᏱ ᏗᏥᎶᏓ ᏦᎩᎾᎩᏛ. ᏚᎾᏌᏅᏃ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎬᏂᎨᏒ ᏚᎾᏄᎪᏫᏎᎢ, ᏓᏓᎵᏁᎯᏕᎨᎢ ᎾᏍᎩ [ᏓᏓᎿᏩᏍᏛ] ᎬᏗᏍᎬᎢ. ᎿᏉᏃ ᎠᏂᏯᏫᏍᎩ ᎤᎬᏫᏳᎯ ᏧᏤᎵᎦ ᎤᎬᏫᏳᎯ ᎦᏁᎸ ᎤᏂᏴᏔᏁ ᏥᏌ, ᎠᎴ ᎾᎿ ᏕᎬᏩᏚᏫᏍᏔᏁ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎠᏂᏯᏫᏍᎩ. ᎤᎵᏏᏂᏗ ᏧᎩᎶᏫᏎ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ. ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏎᏃ ᎾᏍᎩᏉ ᏌᏉ ᎤᎬᏫᏳᎯ. ᎠᏎᏉᏍᎪ ᏂᎦᏪ ᎢᏥᏰᎸᎭ ᎯᎠ ᏥᏂᎦᏪ ᎪᏪᎵ; ᎠᏓᏅᏙ ᏥᎩᏯᎠ ᎤᏚᎵᏍᎬ ᎠᏛᏳᎨᏗ ᎨᏒ ᏩᎦᏘ. ᎠᎴ ᎢᏥᎦᏔᎭ ᎾᏍᎩ ᎬᏂᎨᏒ ᎾᎥᏁᎸᎢᎩᎲᎡᏗᏱ ᎢᎩᏍᎦᏅᏨᎢ; ᎤᏩᏒᏍᎩᏂ ᎥᏝ ᏳᏪᎭ ᎠᏍᎦᏂ. ᎧᏁᏌᎢ ᏩᏂᏌᏙᏯᏍᎬ ᏫᎵᎻ, ᎤᏓᏐᎴ ᏣᏄᏏ ᎦᎾᏤᎯ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᎠᏥᏍᏛ ᎠᎹ. ᏞᏍᏗ ᎩᎶ ᏳᏐᏅᏤᎴᏏᏗ ᎯᏫᏂᏳ ᎨᏒᎢ; ᎦᎨᏣᏕᎶᏆᎡᏗᏍᎩᏂ ᎨᏎᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ, ᎯᏬᏂᏍᎬᎢ ᎠᎴ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᏣᏓᎨᏳᎡᎢ, ᎠᎴ ᏣᏓᏅᏖᏗᏱ, ᎠᎴ ᏦᎯᏳᏒᎢ, ᎠᎴ ᎦᏓᎭᏂᎨᏒᎾ ᎨᏒᎢ. ᎪᎱᏍᏗᏰᏃ ᎤᎾᏓᏛᏁᏗᏱ ᏗᏂᎰᎵ ᎠᎴ ᏓᏂᏂᏓᏛ ᏛᏓᎴᎲᏍᎬᎩ; ᏓᏂᏂᏓᏛᏰᏃ ᎢᎾᏛ ᏥᏄᏍᏗ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᎴ ᏓᏂᏍᎫᏓᏛᎩ, ᎠᎴ ᎾᏍᎩ ᏓᏅᏗᏍᎬᎩ ᎪᎱᏍᏗ ᎠᎾᏓᏛᏁᎲᎩ. ᏏᏓᏁᎸᎯ ᎬᏆᏕᎭᏯᏍᏛ ᎤᏂᏚᎩ ᏱᎨᏒᎾ ᎨᏥᏌᎭᏙᎭᏴ ᎠᏂᏴᏫ. ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎤᏤᎵ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒ ᏣᎩᏯᎠ, ᎥᏝ ᎥᎩᏲᎯᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᎯᎠ ᎾᏍᎩ ᎦᏢᏈᏍᎬ ᎡᎧᏯ ᏂᎬᎾᏛᎢ. ᏂᎦᏓᏍᎪᏃ ᎠᏂᏴᏫᏯᎭ? ᏧᏪᏘ ᏗᎧᎾᏩᏛᏍᏗ ᏕᏥᏍᏔᏩᏕᎪ. ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᏂᏥᏍᎦᎢᎲᎾ ᎠᎦᏴᎵᎨ ᏕᏫ ᎢᏨᏃᎮᎯᏏ, ᎾᏍᎩ ᎤᏲᎱᏒᎢ ᎠᎴ ᎠᏥᏂᏌᏅᎢ, ᎤᏤᎵᏃ ᎠᏤᎵᏍᏛ ᎠᏏ ᎪᎯ ᏥᎩ ᎢᎦᏓᏑᏴᎢ. ᎤᎾᏙᏓᏆᏍᎬᏃ ᎤᎶᏐᏅ, ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏥᏌ ᎤᏥ ᎠᎴ ᏌᎶᎻ ᎤᏂᏩᏒᎯ ᎨᏎ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎤᏂᎷᎯᏍᏗᏱ ᎤᏂᏰᎸᏎ ᎠᎴ ᎬᏩᎶᏁᏗᏱ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᎦᏛᏅᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎢᏳᏍᏗ ᎪᎱᏍᏗ ᎤᏟ ᎢᏲᏍᏛ, ᎾᏍᎩ ᏄᏂᎷᎶᏤᎲᎾ ᎢᎨᎬᏁᏗᏱ ᏂᎨᏒᎾ ᎠᏴ ᏂᎦᏠᏯᏍᏗᏍᎬᎾ. ᎧᏃᎮᏛᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏛᏃᏍᎨᎢ ᎠᎴ ᎧᏁᏉᎨᎢ. ᏥᎷᏏᎵᎻ! ᏥᎷᏏᎵᎻ! ᎠᎾᏙᎴᎰᏍᎩ ᏘᎯᎯ, ᎠᎴ ᎨᏣᎷᏤᏗᏱ ᎨᏥᏅᏒᎯ ᏅᏯ ᏛᏂᏍᏗᏍᎩ! ᏯᏃᎩᏳ ᎠᏆᏚᎵᏍᎬ ᎦᏥᏯᏟᏐᏗᏱ ᏗᏤᏥ, ᎾᏍᎩᏯ ᏣᏔᎦ ᏣᏕᎦᏟᏏᏍᎪ ᏧᏪᏥ ᎠᏂᏛ ᏗᎧᏃᎨᏂ ᎭᏫᏂᏗᏢ; ᎠᏎᏃ ᎥᏝ ᏱᏣᏚᎵᏍᎨᎢ. ᎤᎾᎵᏥᏙᏁᎸᏃ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᎦᏚᎲᎢ, ᎠᎴ ᎠᏂᎪᏗᏳ ᏚᎾᎵᎪᏔᏅ, ᏔᎵᏁ ᎵᏍᏗ ᎠᎴ ᎢᎪᏂᏯ ᎠᎴ ᎥᏘᎣᎩ ᏫᎤᏂᎶᏎᎢ, ᏰᎵᏗ ᎭᏫᏂ ᏥᏯᎠ ᏃᏉ -- ᏄᏓᏅᎯᏒ ᏫᏓᏥᎷᏥ.” ᏃᎴ ᏍᏓᏯ ᏫᎾᎩᏪᏒ. “ᎨᏍᏗᎩ ᎪᎱᏍᏗ ᏱᎦᎵᏍᏗᏍᎨᎢ.” ᎧᎪᎩ? ᎠᎩᏲᏍᏙᏗ ᏓᎩᏏᎳᏛᎢ. “ᎤᏣᏔ ᎣᏍᏓ,” ᎠᏉᏪᎶᏗ. ᏚᏂᏅᎦᎴᎰᏅ. ᏥᏲᎵᎩ. ᎾᎯᏳ ᏥᏌ ᎠᎢᏒᎩ ᎠᏫᏒ ᎤᏣᎴᏍᏗ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎠᎪᏄ ᏚᏂᏲᏏᏍᎬᎩ, ᎠᎴ ᎤᎾᎴᏅᎲᎩ ᎤᏂᏍᎫᏕᏒᎩ ᎤᏣᎴᏍᏗ ᎠᎴ ᎤᏂᏍᏗᎬᎩ ᎠᎧᏍᎨᏂ ᎢᏣ ᎤᏓᏏᏁᎢ. ᏳᏩᏁᎦ ᎦᏬᏂᏍᎩ ᎨᏎ, ᏍᏔᏴ ᏄᏪᏒ, ᎦᎵᏥᏩ ᎤᎶᏐᏅ. ᏓᏲᏥᏂᏧ, ᏝᎨ ᏴᏓᏲᏥᏂ? ᎠᏎᏃ ᎠᎦᏔᎮ ᎤᎾᏠᎾᏍᏛᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏍᎩᎪᎵᏰᎭ? ᎡᏍᎩᎥᏏ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᎾᏍᎩ ᎠᎩᎪᏩᏛᏗᏱ. ᎾᏍᎩᏃ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎪᎯᏳᏗᏍᎩ ᎠᏰᎸᎭ, ᎥᏝ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏃᎯᏳᏓᏁᎯ ᏱᎩ, ᎠᏍᎩᏂ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ; ᎠᏙᎴᎰᎯᏍᏗ [ᎤᏃᎯᏳᏓᏁᎯ] ᏱᎩ, ᎠᏃᎯᏳᎲᏍᎩᏍᎩᏂ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᎯ ᎧᏂ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᏅᏩᏍᏙᎢ ᏴᏫ ᎠᏂᎦᏔᎲᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᏓᎦᏔᎭ ᏗᏥᎾᏫ; ᎾᏍᎩᏰᏃ ᎦᎸᏉᏗᏳ ᏧᏂᏰᎸᏐ ᏴᏫ, ᎤᏂᏆᏘᏍᏗᏳ ᎤᏁᎳᏅᎯ ᏓᎧᏂᏍᎬᎢ. ᎦᏙᏃ ᎡᎵᏍᎨ ᏣᎵ, ᏂᎦᎥ ᎤᏲ ᎤᏂᎶᎯᏍᏗ ᎨᏒ ᎠᏂᏴᏫ. ᎤᏟ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᏱᎨᏎ ᏅᏯ ᎠᏍᏙᏍᎩ ᏯᏥᏯᏝᏁᎢ, ᎠᎴ ᎠᎺᏉᎯ ᏱᏩᎦᏓᎢᏅᏎᎢ, ᎠᏃ ᎯᎠ ᎠᏏᏴᏫ ᏧᎾᏍᏗ ᎨᏒ ᏧᏬᏕᏍᏗᏱ. ᎠᎬᏱ ᎪᎨ ᏍᏈᏍᏓ ᎨᏐ ᎠᏲᏟ ᎤᎩᏍᏗ, ᎤᏗᏔᏍᏗ, ᎤᏍᏆᏄᏨᏗ ᏃᎴ ᎤᎩᏍᏙᏍᏗ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎬᏩᏓᏡᏫᏍᏔᏅᎩ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎯᎳᎪ ᏅᏓᎪᎯᏥ ᏍᎩᏰᎵᎢᏍᏗᏍᎨᏍᏗ? ᎢᏳᏃ ᏂᎯ ᎦᎶᏁᏛ ᎨᏎᏍᏗ, ᏍᎩᏃᎲᏏ ᏚᏳᎪᏛᎢ. ᎠᎴᏬ ᎣᏏᏳ ᎬᏩᏃᎮᏍᎩ ᏱᎩ ᎢᏴᏛ ᎤᏅᎫᏛᎢ, ᎤᏐᏅᏰᏃ ᎠᏥᏃᎮᏍᎩ ᏱᏅᎦᎵᏍᏓ, ᎠᎴ ᎠᏍᎩᎾ ᎤᏌᏛ ᏳᏪᎯ. ᎨᏍᏗ ᎩᎶ ᏯᏇᏠᎰ. ᎠᎴᏥᏌ ᎠᎦᏔᎲᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᎦᎥ ᎠᏰᎵ ᎪᏢᏒᎢ ᏔᎵ ᏥᎾᏓᏗᏍᎪ ᎤᏩᏒᏉ ᏣᏓᏡᏗᏍᎪ ᎠᏥᎪᏉ; ᎠᎴ ᏂᎦᎥ ᎦᏚᎲ ᎠᎴ ᎠᏓᏁᎸ ᏔᎵ ᏥᎾᏓᏗᏍᎪ ᎤᏩᏒᏉ ᏣᏓᏡᏗᏍᎪ ᎥᏝ ᏱᏂᎬᏩᏍᏙᏉ. ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᎾᏁᏢᏔᏅᏛ ᎨᏒ ᎵᏫ ᎠᏂᎳᏍᏓᎸ ᏅᏧᏓᎴᏅᎲᎾ ᏥᎩ, ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏚᏓᏂᎸᏤᎴ ᎡᏆᎭᎻ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒ ᏣᎦᎨᏅᏯ. ᎠᎴ ᎦᏙᎯ ᎤᏣᏘ ᏓᎵᏖᎸᏂᏙᎮᏍᏗ, ᎠᎴ ᏓᎪᏄᎶᏏᏙᎮᏍᏗ; ᎠᎴ ᎥᏳᎩᎯᏳ ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ; ᎠᎴ ᎤᎾᏰᎯᏍᏗᏳ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎤᏰᎸᏛ ᎦᎾᏄᎪᎨᏍᏗ ᎦᎸᎶᎢ. ᎤᏁᎳᏅᎯᏰᏃ ᎤᏤᎵᎦ ᎦᏚ ᎾᏍᎩ ᎯᎠ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᏥᎩ, ᎠᎴ ᎬᏂᏛ Ꭰ'ᏁᎯ ᏥᎩ ᎡᎶᎯ. ᎢᏳᏍᎩᏂ ᏥᏌ ᎤᏲᎱᏒ ᏧᎴᏔᏅᎯ ᎤᏓᏅᏙ ᎢᏥᏯᎡᏍᏗ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏧᎴᏔᏅᎯ ᎾᏍᏉ ᏙᏓᎬᏃᎯᏍᏔᏂ ᏗᏲᎱᏍᎩ ᏗᏥᏰᎸᎢ ᏓᎬᏔᏂ ᎤᏓᏅᏙ ᎾᏍᎩ ᏥᏥᏯᎠ. ᎠᏎᏃ ᎠᏫᏒᎯ ᏥᎨᏐᎢ, ᏗᏛᏍᎪᎢ, ᎠᎴ ᎤᏟ ᎡᏉᎯᏳ ᏂᎦᎵᏍᏗᏍᎪ ᎡᏍᎦᏉ ᏂᎦᎥ ᎤᏰᎿᎥᎢ, ᎠᎴ ᏤᏉᎯᏳ ᏓᏱᏢᏍᎪᎢ; ᎠᎴ ᏥᏍᏆ ᎤᏜᏅᏛ ᎠᏂᏃᎯᎵᏙᎯ ᏰᎵᏉ ᎤᏓᏩᏗᏍᏛ ᎭᏫᏂᏗᏢ ᎠᎾᎭᏗᏍᎪᎢ. ᎤᎭᎨᏓ ᏚᏄᏌᏖᎢ ᎦᏂᎦᏔ ᎡᎹᏂᏓ. ᎠᏎᏃ ᏧᏤᎵ ᏴᏫ ᎢᎬᏩᏂᏆ-ᏘᎴᎢ, ᎠᎴ ᏚᏂᏅᏎ ᎬᏩᎨᎮᎩ, ᎯᎠ ᏫᎾᏂᏪᏍᎨᎢ, ᎥᏝ ᏲᎦᏚᎵ ᎯᎠ ᎠᏍᎦᏯ ᎤᎬᏫᏳᎯ ᎣᎦᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ. ᎢᏳ ᎠᎴ ᎡᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏂᏗᎦᎸᏉᏗᏍᎬᎾ ᏥᏕᎫᎪᏓᏁᎭ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᏂᎪᎯᎸ [ᎠᏂ] ᎢᏣᎴᏂᏙᎲᎢ ᎢᏤᏯᏔᎯ ᎨᏎᏍᏗ ᎢᏤᎲᎢ. ᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᏗᏁᏍᎨᏍᎩ ᏱᎩ, ᎺᎵ ᎤᏪᏥ, ᏥᎻ, ᎠᎴ ᏦᏏ, ᎠᎴ ᏧᏓ, ᎠᎴ ᏌᏩᏂ ᎠᎾᎵᏅᏟ? ᎠᎴ ᏧᏙ ᏝᏍᎪ ᎠᏂ ᏱᎨᎦᏓᏑᏯ? ᎥᎬᏩᏐᏅᏤᎸᎩᏃ. ᏰᎵᏉ ᎤᏍᏔᏩᏛᏍᏗ ᏚᏕᏲᏔᏅ ᏧᏆᎶᎦ ᏃᎴ ᏧᎵᏍᏆᎵᏓ ᏚᏩᏂᎦᏢ ᏃᎴ ᎩᎦ, ᎧᏂᎩᏓ ᏄᎵᏍᏔᏅ ᎤᎶᏒᎢ, ᎠᎬᏱᏣ ᎤᏪᏅᏎ ᎡᎵᏍᎬᏉ ᎢᏳᏛᏁᏘ ᏲᎾ ᏄᏍᏘᏓᏅ ᎢᎾᎨᎢ ᎤᏗᏍᎦᎶᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎾᏍᏉ, ᎾᏍᎩ, ᎾᏂᏍᎦᏅᎾ ᎢᏧᏩᏁᏗᏱ ᏴᏫ ᎤᏩᏒ ᎤᎩᎬ ᎬᏗᏍᎬᎢ, ᎦᎶᎯᏍᏗᏱ [ᏥᎷᏏᎵᎻ] ᏙᏱᏗᏢ ᎤᎩᎵᏲᏤᎢ. ᎦᏲᏟ Ꮟ ᏕᎦᏓᎡ ᏧᏏᎳᏛᏅ ᎦᎶᎯᏍᏗᏳᎳ ᎦᎸᎳᏗᏣ. ᎠᏍᏃ ᎯᎠ ᎤᏬᏑᎶᏨᎯ ᏣᏆᏕᏯᏙᏗᎭ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏚᏳᎪᏛ ᏅᏓᏥᏯᏛᏁᎵ, ᏂᎪᎯᎸᏰᏃ ᎦᎷᎬ ᏱᏓᎩᏯᏪᎢᏍᏓ. “ᎠᏆᏔᏃ ᏙᎤᏍᏗ ᎨᏒ ᎯᎠ,” ᎤᏛᏁ ᏩᎭᏯ. ᎦᎶᏁᏛᏃ ᎤᏇᏓᎵ ᎨᏒ ᎢᎩᎩᎵᏲᏤᎸᎯ ᏥᎩ, ᏂᎯ ᎾᏍᏉ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏓᏅᏙ ᎢᏣᎵᏍᎦᏍᏙᏙᏗ ᏂᏨᎦ; ᎾᏍᎩᏰᏃ Ꮎ ᎤᏇᏓᎵ ᎨᏒ ᎤᎩᎵᏲᏨᎯ ᏥᎨᏐᎢ ᏚᏲᏐ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ, ᎦᎪᎨᏃ ᎢᏳᏍᏗ ᏉᎳ, ᎠᎴ ᎠᏉᎳ ᎦᎪ? ᏝᏍᎪ ᎨᏥᏅᏏᏓᏍᏗᏉ ᏱᎩ, ᎾᏍᎩ ᎢᏳᏅᏂᏌᏛ ᏥᏦᎯᏳᏅᎩ, ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎠᏂᏏᏴᏫᎭ ᏚᏁᎸᎢ? ᏕᏫᏰᏃ ᎤᏩᏒ ᎤᎬᏫᏳᎯ ᎢᎪᏎᎭ; ᎦᏙᏃ ᏗᎦᎴᏍᏙᏗᎭ ᎤᏪᏥ ᎢᎩ? ᎤᏂᏣᏘᏃ ᏴᏫ ᎤᎾᎵᎮᎵᏨᎯ ᎬᏩᏛᏓᏁᎴᎢ. ᎦᏙᏃ ᎤᏍᏗ ᎾᏍᎩ ᎾᎿ ᎡᏍᎦ ᏕᏦᎭᏍᎦ ᏗᏐᎢ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᎯᎠ ᎤᏩᏒ, ᎾᏍᎩ ᎠᏴ ᎠᏋᏒ ᎦᎨᏛ ᏂᏨ ᏴᏁᎸᎾ ᎨᏒᎢ? ᎨᏍᎩᎥᏏᏉ ᎠᏗᎾ ᎯᎠ ᎾᏍᎩ ᎤᏣᏘᏂ ᏂᏨᏯᏛᏁᎸᎢ. ᎤᏪᏅᏎᏃ ᏫᏚᎵᏃᎮᏔᏁ ᏄᏂᎬᏫᏳ-Ꮢ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ, ᎢᏳᏩᏁᏗᏱ. ᎿᏉᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎤᏂᏁᏤ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᏰᎵᎦᏯ ᏂᏫ. ᎾᏍᎩᏃ Ꮎ ᏥᏄᏍᏗ ᎤᏚᎩ ᏦᎬᎭ, ᎤᏣᏘ ᎠᎯᏗᏳ ᎦᎪᎵᏍᏗ ᎣᏥᏬᏂᎭ; ᎣᏍᏛᏃ ᎧᏃᎮᏛ ᎢᎬᏱ ᏂᎬᎾᏛ ᏧᏁᏩᏗᏒ ᏴᏫ ᎠᎵᏥᏙᏗ ᎨᏎᏍᏗ. ᎤᎵᏂᎩᏛᏃ ᏗᎧᎿᏩᏗᏙᎯ ᏅᏯ ᎤᎩᏒᎩ, ᎤᏔᏅ ᏗᏍᏙᏍᎩ ᏅᏯ ᎾᏍᎩᏯᎢ, ᎠᎺᏉᎯᏃ ᏭᏗᏅᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎾᏍᎩᏯ ᎬᏍᎦᎢᏍᏓᎩ ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲ ᏓᏓᎶᏂ ᎠᏥᏲᏍᏙᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎿᏉ ᎬᏩᏛᏗ ᏱᎨᏎᏍᏗ. ᎠᏎᏃ ᏍᏉ ᏚᎸᏉᏕᎢ ᏧᏤᎵ ᏗᏂᏲᏟ ᏃᎴ ᏧᎵᏏ, ᎠᏎᏃ ᎨᏍᏗ ᏐᏉ ᎧᏅᏂᏍᎩ ᏳᎨᏛᏓ ᎤᏓᏅᏙᎩ. ᎤᏲᏂᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᎪᎴᏏᏂ! ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᏇᏣᏱᏗ! ᎢᏳᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏱᏙᎦᎸᏫᏍᏓᏁᎴ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᏂᎯ ᎢᏤᎲ ᏕᎦᎸᏫᏍᏓᏁᎸᎢ, ᎪᎯᎩ ᏗᎬᏩᏂᏁᏟᏴᏛ ᏱᎨᏎ ᏚᎾᏓᏅ-ᏛᎢ, ᏧᏏᏕᎾ ᏱᏚᎾᏄᏩᎡ ᎠᎴ ᎪᏍᏚᎯ ᏳᎾᏅᏁᎢ. ᎦᏚᏏ ᎢᏰᏛ ᎨᏴ ᏥᏙᎬ ᎾᎨ ᎢᏴ ᏕᎦᎦᏙᏍᏛ, ᏧᏂᏍᏗ ᏄᎾᏍᏛ ᎠᏂᏍᎦᏯ, ᎠᎾᏛᏁᎵᏍᎩ ᎠᏲᏓᏌᎲ ᎾᏍᎩᏯ, ᎬᏛᎪᏗ ᏱᎨᏒᎾ ᎠᏂᏬᏂᏍᎬ. ᎨᏍᏗ ᎦᎵᏥᏙᎥᏍᎩᏱᎩ. ᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎢᎬᏩᏛᏛᏁ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎥᏝ ᏱᏓᏂᎧᎿᏩᏕᎦ ᎡᏘ ᎤᎾᏕᏅᎯ ᎤᏂᏁᏨᎢ, ᎾᏍᎩ ᏂᏚᎾᏑᎴᎲᎾᏉ ᏣᎾᎵᏍᏓᏴᎲᏍᎦ? ᎾᏍᎩᏰᏃ ᎦᏳᎳ ᏥᏂᏓᎦᏔᎰᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏂᏚᏑᏰᏐ ᎤᏪᏥ ᏄᏍᏛ ᎾᏍᎩᏯ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᎬᏱ ᎡᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏂᏣᏘ ᎠᎾᎵᏅᏟ ᎠᏁᎲᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏚᏳᎪᏗᏍᎪ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎤᏲᎨ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ? ᎬᏅᎩᎶ ᎠᏍᏕᎸᎡᏗᏱ, ᎠᎯᏍᏗᏱᎨ? ᎡᎳᏪᏉᏃ ᎤᏅᏎᎢ. ᎠᏴᏍᎩᏂ ᏂᏗᎥ ᏂᏗᎦᎵᎬᏚᎸᎾ ᎠᏓᎨᏗᏱ ᎾᏍᎩᏯ ᏕᏓᎧᏂᏍᎬ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎢᏓᏓᏁᏟᏴᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏂᏓᎵᏍᏗᎭ, ᎦᎸᏉᏗᏳ ᎨᏒ ᎢᎩᎲ ᎧᏁᏉᏤᎦ, ᎤᎬᏫᏳᎯ ᎤᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩᏯᎢ. ᎨᏍᏗ ᎤᏩᏌ ᏱᎨᏎ. ᎾᏍᎩ ᏄᏍᏗ ᎯᎠ ᎢᏨᏃᎮᎮᎸ ᎠᏴ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏯᏓᏅᏓᏗᏍᏙᏗᏱ. ᎡᎶᎯ ᎤᏕᏲᏙᏗ ᏓᏥᏩᏛᎯ; ᎠᏎᏃ ᎤᎦᎵᏍᏗᏉ ᎢᏣᏓᏅᏖᏍᏗ; ᎠᏴ ᏥᏎᎪᎬᏒ ᎡᎶᎯ. “ᎭᏕᏬ, ᎭᏕᏬ! ᎨᏍᏗ ᎬᏍᏆᎵᏍᎦᏍᏙᏗᏱᎩ.” ᎤᎦᏔᎲᏎ ᎡᏆ ᎠᏓᏯ. ᎠᏎᏉᏍᎩᏂ ᎾᎾᏛᏁᎭ ᎬᏆᏓᏙᎵᏍᏓᏁᎭ, ᏥᏓᎾᏕᏲᎲᏍᎦ ᏓᎾᏕᏲᎲᏍᎬ ᏴᏫᏉ ᎤᏂᏁᏨᎯ. ᏫᏍᏗᏯᏅᏛᏃ ᏱᎦᎷᎩ ᎯᎠ ᏱᏂᏣᏪᏏ, ᎯᏯᏜᏅᏓᏗᏏ ᎯᎠ; ᎿᏉᏃ ᏣᏕᎰᏒᎯ ᏯᎴᏅ ᎡᎳᏗ ᎨᏒ ᏗᏂᏢᏗᏱ ᏫᏱᎶᎯ. “ᏛᎵᎩ ᎭᏗ?” ᏔᎵ ᏧᏒᎯᏓ ᎬᎩᏢᏅ ᎨᏒ . “ᎭᎾᏉ ᏙᎦᏘᏁᎬ ᎤᏃᎴ. ᎠᏎᏃ, ᎠᏙᎯ ᎤᎴᎿᎴᎢ. ᏚᏕᏲᏁᏃ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᎯᎠ ᏱᏂᎬᏅ ᏱᎪᏪᎳ, ᎠᏆᏤᎵ ᎠᏓᏁᎸ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏓᏙᎵᏍᏙᏗᏱ ᏚᏙᎡᏍᏗ? ᏂᎪᏍᎩᏂ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎤᏍᏓᎦᎸ ᏂᏨᏁᎸ. ᏥᏌ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏟ ᎦᎸᏉᏗ ᏁᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒ ᎯᎠ ᎾᏍᎩ; ᎭᏛᎬᎦ ᎢᏏᎵ; ᏱᎰᏩ ᎢᎦᏁᎳᏅᎯ ᏌᏉᎯᏳ ᏱᎰᏩ; ᏃᎴᏍᏉ, ᏍᎩᏂᏲᏍᏓᏁ ᎣᏍᏓ ᎣᏍᏓᏟᏃᎮᏍᎬ. ᎤᎾᏅᏗ ᏦᎳᏂ ᏗᎬᏂᎨ ᎤᏍᎪᎸ ᎨᏒ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏂᏦᎵᎬᎾ ᏱᎨᏎᏍᏗ, ᎢᏦᎵᎩᏍᎩᏂ ᎨᏎᏍᏗ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᏅᎬᏫᏳᎯ. ᎣᏍᏓ ᎤᏰᎸᎮ ᎤᏬᏨᏗ ᎠᏛᏁᎵᏍᎬ, ᏂᎦᏗ ᎤᎾᎦᏎᏍᏛᎢ, ᎤᎾᏛᏁᎸᏗ ᎠᎬᏱᏣ. ᎧᏂᎩᏛ ᏣᎳᎩᏱ ᎠᏰᎵ. ᎩᎳᏈᏴ ᏭᏩᏅᏓᏕᎢ ᏄᎦᏌᎴᏍᎬ ᎠᎵᏍᏓᏴᏗ ᏧᏍᏆᏴᏍᏗ. ᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅᎩ ᎤᏂᏣᏘ ᎾᏍᎩ ᎬᏩᏃᎮᏍᎬ ᎤᏕᎵᏛ ᏓᎾᎵᏃᎮᎵᏙᎲᎢ. ᎠᎴ ᎠᏂᏆᎵᏏ ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏚᏂᏅᏒᎩ ᏗᎾᏓᏂᏱᏍᎩ ᎾᏍᎩ ᏭᏂᏂᏴᏗᏱ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎡᏣᏙ ᏙᏛᎠᎴᎯᏌᏂ. ᎯᎠ ᏄᏪᏒᎩ; ᎠᏴ ᎾᏍᎩ Ꮎ ᎤᏪᎷᎩ ᎯᎠ ᏥᏂᎦᏪ ᎢᎾᎨᎢ; ᎢᏥᏥᏃᎯᏍᏓ ᏅᏃᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ; ᎾᏍᎩ ᏄᏪᏒ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ. ᏌᏩᏂᏃ ᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᎦᎶᏁᏛ ᏂᎯ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ. ᏓᎩᎳᎩᏒ ᎦᏂ ᎡᎳᏗ ᏂᏓᏋᏁᎸ ᏗᎦᏅᏆᎶᏍᏗ. ᎢᏳᏰᏃ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎦᎫᎯᏍᏙᏗ ᏂᎨᏒᎾ ᏱᎨᏎᎢ, ᎥᏝ ᏅᏩᏓᎴ ᎧᏃᎮᏛ ᏗᏠᎯᏍᏙᏗᏱ ᏱᎬᏩᏂᏔᏲᎴᎢ. ᎣᏏᏳᏰᏃ ᎠᎩᏰᎸᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎢᎦ ᎬᏗᎭ ᎭᏫᏂ ᎠᏇᎲ ᏴᏫ. ᏗᏓᏁᎸ ᏥᎮᎾ, ᏫᎬᏃᎮᎸ ᎤᏍᏗᎩᎨ ᏏᏆ ᏫᏥᎷᏨ. ᎾᏍᎩ ᎢᏥᎩᏍᏗᏱ ᎤᏂᎬᏫᏳᎯ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᎠᏂᏍᎦᏰᎬᏍᏓ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᎠᏂᏍᎦᏯ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᏐᏈᎵ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎾᏧᎾᎩᎸᏗ, ᏂᏗᎨᏥᎾᏝᎥᎾ ᎠᎴ ᏗᎨᏥᎾᏝᎢ, ᎾᏍᏉ ᏧᎾᏍᏗ ᎠᎴ ᏧᎾᏔᏅ. ᏌᎳᏓ ᎤᎧᏨᏫᏍᏔᏁᎴ ᏲᎾ ᎤᏤᏍᏙ. ᎢᎦᏃ ᎿᏉ ᎦᎶᏐᎲᏍᎨᎢ ᎬᏩᎷᏎᎴ ᏔᎳᏚ ᎢᏯᏂᏛ ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏤᎴᎢ, ᏘᏰᎵᎯᏍᏓ ᎤᏂᏣᏘ, ᎾᏍᎩ ᏩᏁᎾ ᏙᏗᎦᏚᎲ ᎠᎴ ᏙᏗᎦᎶᎨᏒ ᎠᏂ ᎬᏩᏚᏫᏛ Ꮻ-ᏚᏂᏒᏍᏗᏱ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏗ ᏭᏂᏩᏛᏗᏱ; ᎠᏂᏰᏃ ᎢᎾᎨᏉ ᎨᏒ ᎢᏕᏙᎭ. ᎣᎦᎵᏥᏙᏗᏱ ᎣᏍᏛ ᎧᏃ-ᎮᏛ ᏗᏤᎲ ᎤᏗᏗᏢ, ᎥᏝᏃ ᎣᎦᏢᏈᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏅᏩᏓᏕ ᎩᎶ ᏩᏍᏛ ᎢᏴᏛ ᎠᎦᏟᎶᎡᎸᎢ, ᎦᏳᎳ ᎣᎦᏛᏅᎢᏍᏓᏁᎸᎯ ᎨᏒᎢ. ᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎯᎠ ᏱᏂᏪᏏ ᏗᏍᏓᏓᏅᏟ; ᏗᎾᏓᏅᏟ ᎬᎸᏏ ᎤᏢᏓᎸᏛ ᏣᎦᏑᎲᎢ, ᏨᏒᏃ ᏂᎪᏩᏘᏍᎬᎾ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ? ᏣᏠᎾᏍᏗ! ᎢᎬᏱ ᎯᎸ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ, ᎿᏉᏃ ᎬᏂᎨᏒᎢᏳ ᏣᎪᏩᏛᏗᏱ ᎨᏎᏍᏗ ᎯᎸᎡᏗᏱ ᎤᏢᏓᎸᏛ ᏗᏍᏓᏓᏅᏟ ᎤᎦᏑᎲᎢ. ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎩᎶ ᎾᏍᎩ Ꮎ ᏫᎨᏥᏯᏅᏛ ᎨᏒ ᏴᏛᎾᎵᏍᏓᏴᏔᏂ ᏓᏆᏕᎳᏍᏔᏅᎢ. ᎦᏲᏟ ᎦᎳᎨᏰ ᎤᏂᏥᏯ ᎠᏂᏯ ᏘᎵ ᏃᎴ ᏐᎯ ᎦᏙ, ᏧᏆᎶᎦ ᏱᏚᏓᎥᎾ ᏕᏧᎬ ᎭᏫᏂᏣ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏛᎩ ᎾᏍᎩ ᎤᏃᎯᏳᏅᎩ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎠᏂᎪᎢ ᎠᏂᎨᏴ, ᎠᎴ ᎠᏂᏍᎦᏯ ᎠᏂᎦᏲᎵᏉ ᏂᎨᏒᎾ. ᎨᏍᏗ ᎪᎰᏍᏗ ᎦᏳᏩᎾᏛᏁᏗ ᏱᎨᏎ. ᎾᏍᎩᏃ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎣᎩᏱᎵᏙᎭ ᎠᏴ, ᏂᎯᏍᎩᏂ ᎬᏂᏛ. ᏂᎯ ᏕᏧᎪᏗᏍᎪ ᎤᏇᏓᎵᏉ ᏧᏬᎪᏙᏗ ᎨᏒᎢ; ᎠᏴ ᎥᏝ ᎩᎶ ᏱᏗᏥᏳᎪᏓᏁᎰᎢ. ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎠᏂᏯᏫᏍᎩ ᏕᏥᎧᎭ, ᎢᏤᎾ ᎾᏍᏓᏴ ᎢᎨᏨᏁᏗ ᎨᎡ ᏫᏂᏨᎦ. ᎤᏅᏗ ᎠᏉᎳᏔᏅ ᎤᏥᏍᏓᏁᎴ ᏫᎵᎻ ᎤᏤᎵ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ, ᎠᏤᎯ ᎧᏁᏍᎦ ᏭᏗᏅᏎ ᎤᏴᏍᏗ, ᏃᏗ ᎤᏁᏅᏎ ᏩᎦ ᏧᏂᏍᏚᏗ ᎰᎻ, ᎠᎳᏂ ᏃᎴ ᎠᏂᎴᏴᏍᎩ ᏚᎾᎦᏔᏅᏎᎢ ᎠᏂᎧᎵ ᏩᎦ ᏃᎴ ᎤᏂᎦᏖᏅᎸᏎ. ᎣᏍᏓ ᏏᏆ ᏧᏬᏪᎳᏁ ᏚᏏᎳᏛ ᏌᎳᏓ, ᎤᏣᏓ ᎣᏍᏓ ᏗᎧᏃᏗ ᎠᏁᎸᏗᏍᎨᎢ ᏫᎵᎻ. ᎢᎬᏱᏱ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᏢᏓᏥ ᎤᏃᏕᎾ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏔᎵᏁᏃ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᏩᎦ ᎠᎩᎾ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏦᎢᏁᏃ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᏴᏫ ᎤᎧᏛ ᎾᏍᎩᏯ ᎤᎧᏛᎩ, ᎤᎩᏁᏃ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᎦᏃᎯᎵᏙᎯ ᎠᏬᏎᎵ ᎾᏍᎩᏯ ᎨᏒᎩ. ᏍᎩᎾᎾ ᎢᏯᏆᏛᏁᏗ ᎨᏎᏍᏗ, ᎠᏂᏲᏍᎩ ᏓᎦᏥᏁᏤᎵ ᏂᎦᏓ ᎠᏂᏴᏫᏯ ᏧᏂᏅᎪᏫᏍᏘ, ᎢᏳᏍᏗᏉ ᎤᏤᎵᎪ ᎦᏙ ᎠᏁᎲ. ᎤᏓᏅᏙᎩ ᎤᎵᏍᏗ ᏚᎷᏫᏍᏔᏁᎮ ᏃᎴ ᎤᎯᏐᏗ ᏃᎴ ᎤᎦᏴᎳᏨ ᎢᏳᏍᏗ ᏄᎵᏍᏗᏍᎨᎢ, ᎠᏎᏃ ᎭᎦᏔᎮᎢ ᎤᏍᏆᏂᎪᏔᏅᎢ ᏫᎵᎻ ᎬᏅᎢ, ᏃᎴ ᎤᏩᏙᎯᏴᏓ ᎤᏓᏅᏖᎢ. ᎤᏍᏆᏙᎾ ᎧᏃᎮᏍᎬ ᎤᏃᎯᎸᏒ, ᎩᎳ ᎠᎬᏱ ᎠᏥᎸᏳᎵ ᎾᎥᏂ, ᏦᎳ ᏚᎦᏒᏍᏛ ᏃᎴ ᎤᏬᏗᎨ ᏫᏍᎩ, ᎨᏍᏗ ᏐᏉ ᎢᎧᏁᏨ ᏧᏃᎯᏎᎸ ᏱᎨᏎ ᏚᎵᏘᎾᎥ ᎤᏲᎰᏎᎸ ᏲᎾ, ᏍᎩᏴ ᎤᏒᎯ ᏥᎦᎷᎨ ᎤᏃᎯᎵᏙᎸ ᏁᏂᏏ ᏧᏃᎯᏎᎳ ᎡᏝᏪᎯ, ᎦᏂᏏ ᏓᏂᏅᎬ, ᏃᏥ ᏧᏩᏂᎦᏝᏅ ᎪᏒᏔᏅ, ᎤᏩᏄᎩᏣᏁ ᏃᎴ ᎤᎧᏛ ᎤᏍᎪᎵᏰᎡ ᏃᎴ ᏣᏁᎸᏔᏁᏗ ᎤᏬᏎᎴ, ᎯᎸᎢᏴ ᏍᎩᏉ ᎢᎦ ᎢᏓᏓᏔᎶᏍᎪ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ; ᏔᎴᎲᎦ, ᎮᎾ ᏗᎦᎳᏅᏛ ᎦᏥᏃᏍᏛ ᏥᏚᏙᎥ, ᏧᏓᏏᏃ ᎦᏁᎸ ᏫᏲᎦ ᏐᎳ ᏧᏙᎢᏛ ᏓᏌ ᎡᎯ. ᎬᏂᏳᏰᏃ ᎠᏓᏙᎵᏍᏗᎭ, ᎠᏎᏃ ᎠᏂᏧᏏ ᏚᏂᏖᎸᏁ ᎨᏥᎸᏉᏗ ᎠᏂᎨᏴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᎾᎿ ᎦᏚᎲ ᏗᎨᎦᏁᎶᏗ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎾᏍᎩ ᏄᏅᏂᏌᏁ ᎦᎨᏥᏐᏢᏙᏗᏱ ᏉᎳ ᎠᎴ ᏆᏂᏆ, ᎠᎴ ᏚᏂᎨᎯᏙᎴ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ. ᎠᏂᎦᏗᏓ ᎤᏂᏲ ᎨᏒ, ᎠᏎᎩ ᏥᏄᎾᏍᏗᏉ ᏴᏫ. ᎠᏏᏉᏃ ᎦᏚᎲ ᏪᏙᎲᎩ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏍᏗᏰᏔᏅᎩ, ᏗᏍᎩᏰᏲᎲᏍᎩ, ᎭᎵᏍᏓᏴᎲᎦ, ᎠᎾᏗᏍᎬᎩ. ᎢᏧᎳ ᏍᏉ ᏚᏂᏯᏪᎨ. ᎤᎷᏣ ᏣᏄᏏ ᏔᎷᎩᏍᎩ ᎪᏱᏁ ᎢᎦ ᎤᎵᏍᏓᏴᏗ ᏫᎵᎻ ᎦᎶᏛ, ᎾᎨᎢᏴ ᏏᏆ ᎤᏴᏍᏗ ᎤᎴᏫᏍᏔᏁ. ᎠᎦᏍᎩᏃ ᎾᏍᎩ ᏧᏫᏎᎢ, ᎾᏍᎩ ᎠᏍᎩᎾ; ᎤᎦᏛᎾᎢᏍᏗᏱᏃ ᎨᏒ ᎾᏍᎩ ᎠᎵᏍᏆᏛᎭ ᎡᎶᎯ; ᎠᏂᏍᎫᏕᏍᎩᏃ ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ. ᎠᏆᎵᏏᏃ ᎾᏍᎩ ᏭᏯᏅᏛ ᎤᎪᎲ, ᎤᏁᏤ ᏧᏓᏅᏛ ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᎯᎠ ᎠᏍᎦᏯ ᎢᏳᏃ ᎠᏙᎴᎰᏍᎩ ᏱᎨᏎ ᏳᏙᎴᎰᏎ ᎾᏍᎩ ᎨᏒ ᎠᎴ ᎢᏳᏍᏗᏉ ᎨᏒ ᎯᎠ ᎠᎨᏴ ᏧᏃᏟᏍᏗᎭ, ᎠᏍᎦᎾᏰᏃ. ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎡᏍᎦ ᎢᏯᏥᎸᏉᏗ ᎨᏒ ᎣᏍᏛ ᎤᏁᏤᎰ ᎤᏟ ᎢᏯᏥᎸᏉᏗ. ᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎾᏍᎩ ᎨᏥᏍᏕᎸᏛ ᎨᏒ ᎾᏍᎩ ᏚᎸᏌᏛ ᎠᏁᏙᎮᏍᏗ; ᎤᏂᎬᏫᏳᏃ ᎡᎶᎯ ᎠᏁᎯ ᎾᎿ ᎠᏂᏴᎯᎭ ᎨᏥᎸᏉᏛ ᎠᎴ ᏧᎾᏤᎵ ᏧᏓᎴᏅᏛ ᏗᎦᎸᏉᏗ. ᎯᎠ ᎠᏗᎾ ᏂᏥᏪᎭ, ᏥᎪ ᏚᏃᏕᎸ ᏰᎵ ᏧᏂᏅᎢᏍᏗᏱ ᎠᏰᎸᏎᎢ? ᎬᏩᏟᏍᏗ; ᎾᏍᎩᏍᎩᏂ ᏚᏂᏅᏨ ᏄᏩᏂᏌᏅ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᏂᎷᏤᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎤᎾᏛᏳᎨᏗᏱ ᎢᏳᏅᏂᏐᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎤᎩᏨᏅ ᎢᏴᏛ ᏱᏫᏤᎵᎯᏍᎨᏍᏗ, ᎤᎩᏨᏅᏰᏃ ᎤᏩᏒ ᏧᏓᎴᏅᏛ ᏛᏕᎵᎯᏍᏔᏂ. ᏰᎵᏉ ᎤᏲ ᎢᎦ ᎤᏪᎲᎢ. ᎯᎠᏍᎩᏂ ᏂᏥᏪᎭ, ᎾᏍᎩ Ꮎ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏥᎸ ᎨᎳᏍᏙᏗ ᏣᎾᎵᏍᎪᎸᏗᎪᎢ, ᎠᏂᏍᎩᎾ ᏓᎾᎵᏍᎪᎸᏔᏁᎰᎢ, ᎥᏝᏃ ᎤᏁᎳᏅᎯ; ᎥᏝᏃ ᏯᏆᏚᎵᎭ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵ ᎨᏒ ᎢᏤᎳᏗᏍᏙᏗᏱ. ᎠᎴ ᎦᎪ ᎢᏳᏍᏗ ᎤᎬᏫᏳᎯ, ᏓᎿᏩ ᏱᏅᏛᏅᏁᎵ ᏅᏩᏓᎴ ᎤᎬᏫᏳᎯ, ᎥᏝ ᎢᎬᏱ ᏱᎦᎲᏍᎪ ᎠᎴ ᏯᏓᏅᏖᏍᎪ ᏰᎵᏉ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᏓᏘᏁᎲ ᏗᎬᏩᎾᏟᏴᏗ ᎨᏒ ᏧᎦᏘᎴᎩ ᏔᎳᏍᎪᎯ ᎢᏯᎦᏴᎵ ᏓᏘᏁᎲᎢ. ᎡᎳᏆᏗ ᎤᏄᎩᏣᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎿᏉᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏓᏘᏂᏙᎯ ᎠᎴ ᎾᏍᎩ ᎾᎢᏧᎳᎭ ᏥᏌ ᎬᏩᏯᏫᏍᎩ, ᎤᎾᏙᎴᎰᏒ ᎦᏙᎯ ᎠᎵᏖᎸᎲᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸᎢ, ᎤᏣᏖ ᎤᏂᏍᎦᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎ ᎯᎠ. ᎾᏍᎩ ᎤᏂᏣᏘ ᏁᏍᏛ ᏓᎾᏓᏅᏖᏍᎬ ᏧᏂᎾᏫᏱ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ: ᎥᎥ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎾᏍᏉ ᏨᏒ ᏣᏓᏅᏙ ᏓᏣᏘᎵ. ᎦᏁᏥ ᎢᏴ ᎢᎦᏘ ᏚᏌᏁ ᏅᏯ, ᏩᏯ ᏃᎴ ᏲᎾ ᎤᎾᏕᏯᏙᏗ ᏱᎨᏒᎾ ᎦᏂᏌᎲ. ᎠᏂᎶᏏᏙᎢᏃ ᎤᏂᏐᏗᏉ ᏅᏯ ᎦᏚᎢ ᎤᏪᎵᏎ. ᏅᎩᏁᏃ ᎨᏒ ᏗᎧᎿᎧᏩᏗᏙᎯ ᏅᏙ ᎢᎦ-ᎡᎯ ᎧᎸ ᎤᏪᏐᏴᏅᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎠᏥᎸ ᎬᏗ ᏧᎴᏴᏙᏗᏱ ᏴᏫ. ᎿᏉᏃ ᏉᎳ ᏚᏯᏅᎲᎩ ᎠᏂᏍᎦᏯ, ᎤᎩᏨᏛᏃ ᎢᏧᎳᎭ ᎤᎾᏓᏅᎦᎸᎲᎩ, ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏂᏴᎸᎩ, ᎧᏃᎲᏍᎬᎩ ᎤᎵᏍᏆᏛ ᎢᎪᎯᏛ ᎠᏓᏅᎦᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎬᎢ ᎠᏓᏁᏗ ᎨᏒ ᎠᏂᏏᏴᏫᎭ ᎤᎾᎵᏍᎪᎸᏙᏗ ᎨᏒᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎸᎯᏢ ᎦᏚᎲ ᎡᏙᎲᎢ, ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᏂᎬ ᎠᏓᏰᏍᎩ ᎤᏢᎩ ᎾᎿ ᎡᏙᎮᎢ; ᎾᏍᎩ ᏥᏌᎤᎪᎲ ᎤᏯᏍᏚᏎᎢ, ᎠᎴ ᎤᏔᏲᏎᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ ᏰᎵᏉ ᏱᏍᎩᏅᎦᎸ. ᏭᏩᏅᏓᏕᎢ ᏄᏪᏎᎸ ᎡᏆ ᎠᏣᏗ ᎾᏍᎩᏃ... ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᎸᏉᏗ ᎢᏓᎵᏅᏟ, ᎢᏣᏠᏯᏍᏗᏍᎩ ᎦᎸᎳᏗ ᎤᎬᏩᎵ ᎥᏓᏘᏯᏅᏗ ᎨᏒᎢ, ᎡᏣᏓᏅᏛᎵ ᎦᎶᏁᏛ ᏥᏌ ᎠᏥᏅᏏᏛ ᎠᎴ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎾᏍᎩ ᏤᏓᏁᎶᏗ ᏥᎩ. ᎠᏎᏃ ᏚᎪᎲ ᎤᏂᏣᏘ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ ᎠᏂᎷᎬ ᏓᏓᏬᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᎭᎴᎢ; Ꮵ! ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᎦᎪ ᎢᏤᏯᏔᏅ ᎡᏣᎵᎡᏗᏱ ᎤᏔᎳᏬᎯᏍᏗ ᏨᏣᎢ? ᎠᏂᏍᎩᎾᏃ ᎬᏩᏔᏲᏎᎴᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎢᏳᏃ ᏍᎩᏂᏄᎪᏫᏒᎭ, ᎤᎾᏁᎳᎩ ᏍᎩᏁᎵᏎᎸᎭ ᏏᏆ ᏑᎾᏓᏡᎩ ᏫᎪᏍᏗᏴᏍᏗᏱ. ᎤᏬᎵᏃ ᏣᎦᎦᏃᏗᏱ ᏣᏍᏆ ᏅᏯ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᎴ ᏌᏗᏂ ᏅᏯ; ᎤᏅᎪᏔᏛᎩᏃ ᎬᏩᏚᏫᏛ ᎦᏍᎩᎸᎢ, ᏗᎧᏃᏗᏱ ᎡᎻᎳ ᏅᏯ ᎾᏍᎩᏯ ᎨᏒᎩ. ᎠᏎᏃ ᎠᏏ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏄᎵᏍᏔᏅᎾ ᎨᏎᏍᏗ ᏙᏓᎨᏥᏂᏴᎯ ᎠᎴ ᎤᏲᏅᏓᎨᏨᏁᎵ, ᏕᎨᏥᏲ-ᏍᎨᏍᏗ ᏧᏂᎳᏫᎢ-ᏍᏗᏱ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ, ᎠᎴ ᏕᏣᏗᏃᎯᎮᏍᏗ ᎤᏂᎬᏫᏳᎯ ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏚᏃᎸ ᎢᎬᏱᏗᏢ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎾᏍᎩᏃ ᎠᏰᎵ ᏗᎴᏁᎯ ᏥᎨᏐ ᎥᏝ ᎠᏏᏴᏫᏉ ᎠᏰᎵ ᎠᎴᏁᎯ ᏱᎨᏐᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎠᏏᏴᏫᏉ. ᏧᏂᏴᏍᏓᎩᏍᎩ ᏄᎾᏍᏛ ᎾᏆᏍᏗ. ᎠᏎ ᎠᏯ ᎤᎬᏫᏳᎲ ᎤᏊᎪᏓᏁᎸ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏧᏂᏲᎱᏒᎯ ᏓᏂᏂᏏᏍᎨᏍᏗ ᏗᎬᏩᏂᏲᎱᎯᏎᎸᎯ; ᏂᎯᏍᎩᏂ ᎮᎾ ᏩᎵᏥᏙᎲᎦ ᏫᏃᎲᎵ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎡᏂᎾᏯ, ᎦᏙᏃ ᏎᏓᏂ ᏣᎾᏫ ᎢᏣᎧᎵᎡᎸ, ᎯᏯᏥᎪᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᏣᎬᏩᎳᏅᎯ. ᏂᎦᎥ ᎪᎱᏍᏗ ᏓᎩᏲᎯᏎᎸ ᎡᏙᏓ, ᎠᎴ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ ᎤᏪᏥ ᎤᏙᏓᏉ ᎤᏩᏒ; ᎥᏝ ᎠᎴ ᎩᎶ ᏯᎦᏔᎭ ᎠᎦᏴᎵᎨᎢ ᎤᏪᏥ ᎤᏩᏒ, ᎩᎶᏃ ᎾᏍᎩ ᏥᎾᏄᎪᏫᏏ ᎡᎳ ᎤᏪᏥ. ᎠᏥᎾ ᏧᎬ ᏗᏧᏓᎴᏁ ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᎯᎾᏃ ᎦᎪ ᏍᎩᏳᏎᎭ? ᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎡᎵᏍᏗ ᎣᏍᏓ ᎠᏰᎸᏗ ᏗᏏᎳᏛᏗ. ᎡᎳᏗ ᏑᏓᎵ ᎢᏯᎳᏏᏔᏅ ᎢᎬᏓ, ᎭᏫᏂᏨ ᏩᎾ ᎦᏙ, ᏍᎪᎯᏍᏆ ᏧᏕᏘᏴᏓ ᏕᎪᎰᏍᎬ ᏴᎩ ᏃᎴ ᏩᎾ ᎦᏙ ᏚᎪᏒ ᏴᎩ. ᎤᎾᏕᏘᏱᏍᎬ ᏓᎦᎷᏥ, ᏃᏗ ᏓᎫᏔᏂ. ᎤᎴᏫᏍᏔᏁ ᏌᎳᏓ. ᎢᏧᎳᎭᏃ ᎤᏁᏙᎸᎯ ᏴᏫ ᎾᎯᏳ ᎠᏤᎵᏍᏛ ᏭᏯᏅᎲ ᎳᏏᎳ, ᎠᎴ ᎤᏲᎱᏒ ᏕᎤᎴᏔᏅ, ᎤᏂᏃᎮᎸᎩ. ”ᏁᎳᎩ!” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎢᏳᏰᏃ ᎡᏆᎭᎻ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏚᏓᎴᏍᏔᏅᎯ ᏱᎩ, ᎤᎭ ᎤᏢᏈᏍᏙᏗ; ᎠᏎᏃ ᎥᏝ [ᏳᎭ,] ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎭᏢᏃ ᏧᏓᎴᏁ ᎯᎠ ᏥᏚᏙᎠ? ᎠᎴ ᎠᏍᏓᏯ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎣᎦᏁᎳᏅᎯ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᏍᎩᎸ ᏧᏬᎳ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎬᏭᎯᏍᏗᏍᎩ ᏚᎾᎴᏅ, ᎥᏝ ᎪᎱᏍᏗ ᏳᏂᎾᏄᎪᏫᏎ ᎾᏍᎩ ᏯᏂᎾᏄᎪᏩ ᎠᏇᎵᏒ ᎾᏍᎩ ᎠᏄᎯᏍᏗᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎰᏍᏛ ᏈᎵᏏ, ᏂᎪᎯᎸ ᎠᎴ ᏂᎬᎾᏛ ᏂᎦᎥ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎣᏣᏓᏂᎸᎪᎢ. ᎾᏍᎩᏴ ᎦᏳᎳ ᎣᎭᏂᏱ ᎨᏎ ᎩᎶ ᎯᏍᏕᎸᏗ. ᎡᎶᏛᏃ ᎠᎴ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ ᎦᎬᏩᏐᏢᏔᏁᎢ, ᎠᎴ ᎬᏩᏕᎰᏔᏁᎢ, ᎠᎴ ᏗᎬᏩᎸᏎᏛ ᎠᏄᏬ ᎤᏂᏄᏬᎥ ᏆᎴᏗ ᏔᎵᏁ ᏭᏂᎧᏁᎴᎢ. ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᏒ ᏥᎩ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᏧᏭᎪᏛᏗ ᏧᏭᎪᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏰᎵ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎢᏤᎯ ᎡᏤᎵᏎᏗᏱ, ᎾᏍᎩ ᎾᏍᏉ ᎤᎬᏩᎵ ᏥᏥᎩᎵᏲᎦ. ᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏥᎪ ᎾᏍᏉ ᏂᎯ ᎨᎵᎵ ᎮᎯ? ᏣᏲᎦ ᎠᎴ ᎭᎦᏌᏯᏍᏓ, ᏝᏰᏃ ᎨᎵᎵ ᎤᎾᏄᎪᎢᏍᏗ ᏱᎩ ᎠᏙᎴᎰᏍᎩ. ᎠᎴ ᎩᎶ ᏠᎨᏏ ᏪᏙᎯ ᏞᏍᏗ ᏴᏗᎤᏨᏎᏍᏗ ᏧᏄᏬ ᏱᏚᏁᏐᎴᏍᏗ. ᎠᏍᎡᏃ ᎤᏟ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ ᎡᏍᎦᏉ ᏂᎯ. ᏃᏗ ᏩᎧᏲᏍᎪᎢ ᎤᏍᏓᎦᏴᎯᏓ ᏂᎦᎵᏍᏗᏍᎪ. ᏦᎢᏁᏃ ᏫᏚᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎨᏥᎵᏁᏍᏗᏉ ᎿᏉ, ᎠᎴ ᎢᏣᏣᏪᏐᎸᏍᏓ; ᎿᏉ ᎦᎶᏐᎾ-ᎿᏉ ᎠᏍᏆᎸ ᎾᎯᏳ ᎨᏒᎢ; ᎬᏂᏳᏉ ᏴᏫ ᎤᏪᏥ ᎠᏂᏍᎦᎾ ᏕᎨᏥᏲᎯᏏ. ᏣᏛᎦᏅᎯᏍᎩ Queensborough ᎠᏒᏨ?” ᎤᎵᏍᏛᏂᎴᎢ ᏫᎵᎻ. ᎿᏉᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏞᏍᏗ ᏗᏣᎵᏌᎳᏁᎸ ᎯᎠ ᎠᏂᏍᎦᏯ, ᎤᎾᏁᎳᎩ ᏗᏤᎵᏏ, ᎢᏳᏰᏃ ᎯᎠ ᎠᎾᏓᏅᏖᏍᎬ ᎠᎴ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏴᏫᏉ ᏅᏓᏳᏓᎴᏅᎯ ᎢᎨᏎᏍᏗ, ᎤᏲᏥᏓᏍᏗᏉ; ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏒᏂᎦᎵᏍᏓ ᎯᎠ ᏂᏥᏪᏍᎪᎢ; ᎤᎸᎦᎵᏱᏌᏛ ᎨᏎᏍᏗ, ᎦᎸᎶᏰᏃ ᎩᎦᎨᎢᏳ ᎢᎩ. ᏧᏓᏏ, ᎾᎥᏂ ᎯᏃᎯᎵᏎᏍᏗ ᎤᎾᏰᎯᏍᏗ ᏫᏓᏗᎶᏏ.” ᎤᏁᎳᎩ ᏅᏇᏲᏅᎾ ᏱᎩ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏗ ᏥᎦᏔᎾᎥᎢ; ᏂᎦᎥᏉᏍᎩᏂ ᏃᎦᏍᏛ ᎬᏂᎨᏒ ᏃᎦᎵᏍᏔᏅ ᎾᏂᎥ ᎠᏂᎦᏔᎲ ᏂᎯ ᎢᏤᎲᎢ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ; ᏧᏗᏱ ᎦᏚᏱ ᎦᏚᎲᎢ; ᎯᎠᏰᏃ ᏄᏩᏅ ᎤᏬᏪᎳ ᎠᏙᎴᎰᏍᎩ; ᏕᎭᏘᏃᎸ ᏃᏉ ᏱᏂᏲᎯᏍᏔ ᎢᏳᏍᏘᏉ ᎢᏂᏰᎵᏒ. ᎦᎵᏦᏕᏃ ᏭᏴᎸ ᏚᏓᏅᎡᎸ ᏴᏫ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏛᏛᏁ ᏓᏟᎶᏍᏛ ᎤᎬᏩᎵ. ᎤᎵᎮᎵᏤ ᎠᏎᏃ ᎤᎸᏔᎵᏕᎾ ᏄᎵᏍᏔᏁᎮ. ᏧᏍᏆᏴᏍᏗ ᎦᏟᎮ. ᎨᏍᏗ ᏗᎫᏩᎦᏙᏍᏙᏗ ᏱᎨᏎ ᏃᏉ. ᎠᎩᏚᏚ ᎤᏛᏅ. ᏂᎦᏓ ᎣᏏᏉᏧ?” ᎾᏍᎩᏯᏃ ᎯᎠ ᏂᎬᏅ ᎦᏪᎳ, ᎢᎬᏱᏱ ᏴᏫ ᎠᏓᏫ ᎬᏃᏛ ᏄᎵᏍᏔᏁᎢ; ᎣᏂᏱᏃ ᎠᏓᏫ ᎠᏓᏅᏙ ᎬᏂᏛ ᏗᏁᎯ ᏄᎵᏍᏔᏁᎢ. ”ᎠᎳᏂ, ᏫᏏᎳᏗᎥᏏ ᏗᎦᏃᏣᏝᏍᎩ ᏐᏉ ᎤᎩᏓᏟ, ᏫᏃᎯᏏ ᏄᎵᏍᏔᏅᎢ. ᎾᏍᎩᏃ ᎠᏆᎵᏃᎮᏔᏅᎯ ᎦᏁᎲᎩ ᎠᏕᎸᏓᎶᏂᎨ ᎠᏢᏔᏅᎯ ᎠᏟᎶᏍᏗ, ᎦᏚᎲ ᎠᏟᎶᏍᏗ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᏗᏟᎶᏍᏗ, ᎠᎴ ᎠᏐᏴ ᎠᏟᎶᏍᏗ. ᏌᏊᏃ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ. ᏑᎾᎴ ᏄᎵᏍᏔᎾ ᎠᎦᏕ ᎤᏬᏚᏨ ᎨᏎ ᏌᎳᏓ ᏚᏏᎳᏛ. ᎠᎴ ᎤᎴᏅᎮ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎪᎯ ᎢᎦ ᏥᎩ ᎠᎴ ᎾᏍᎩ ᎪᏪᎸ ᎠᏙᎯᏳᎲᎦ ᎢᏣᏛᎩᏍᎬᎢ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏂᏦᎯᏳᏒᎾ ᎠᎴ ᎢᏣᎦᏔᎲᏛ ᎪᎯ ᏥᏤᎭ, ᎢᎳᎪ ᏂᎪᎯᎴᏍᏗ ᎢᏨᏰᎳᏗᏙᎮᏍᏗ? ᎢᎳᎪ ᏂᎪᎯᎴᏍᏗ ᎤᎾᏁᎳᎩ ᎢᏨᏰᎵᏎᎮᏍᏗ? ᏍᎩᏯᏘᏃᎯᏏ ᎾᎿ ᏙᏥᏩᏛᎲᎩ ᎣᏣᏓᏅᏟ, ᎠᎴ ᎪᎩᏔᏲᏎᎸᎩ ᎦᎸᏉᎩ ᏧᏒᎯᏛ ᏓᏂᏁᎸ ᎣᎦᏅᏗᏱ. ᎿᏉᏃ ᎶᎻ ᏫᏚᏳᎪᏛ ᏬᎩᎶᏒᎩ. ᏃᏊ ᎤᎦᏛᏓᏁᎸ ᎡᏙᏓ ᏥᎨᏒ ᎠᎴ ᎦᎶᏇ ᎤᏒᏕᎾ ᏭᏴᎲ ᎦᎵᏦᏕ. ᎢᏳᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ; ᎿᏉ ᎥᏝ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎥᏝ ᎿᏉ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏱᎦᎩ. ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ, ᎿᏉ ᎥᏝ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎥᏝ ᎿᏉ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏱᎦᎩ. ᎿᏉᏃ ᎤᏂᏃᎮᎴ ᎤᏅᏒ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎤᎾᏓᏡᎬ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ. ᎾᏍᎩ ᏆᎳᏆ ᎤᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅ ᎾᎿ ᎦᏚᎲ ᎠᎴ ᎤᏓᎸᎢ ᎠᏥᏍᏛᏗᏍᏔᏁ ᏗᏓᏍᏚᏗᏱ ᎠᏥᏴᏔᏅᎯ ᎨᏎᎢ. ᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏂᏁᎮ ᎤᏂᎯᏍᏙᏗ. ᎢᎦ ᎢᏣᏘᏍᏗᏍᎬ ᏚᏂᎸᏌᏓᏕᎮᏍᏗ ᏴᏫ, ᎾᏍᎩᏃ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏂᎪᏩᏘᏍᎨᏍᏗ, ᎠᎴ ᎠᏂᎸᏉᏗᏍᎨᏍᏗ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ. ᎤᏛᎦᏍᏔᏅ ᏓᏊᎪᏔᏅ ᎤᏗᏔᎲ ᏫᏍᎩ ᎤᎵᏏᏅᏓ. ᏧᏓᏏᏃ ᎠᎴ ᏌᏱᎳ, ᎤᏣᏖ ᎢᎧᏁᏨᎯ ᏚᏂᏬᏁᏔᏁ ᎠᎾᏓᏅᏟ ᎠᎴ ᏚᎾᎵᏂᎪᎯᏍᏔᏁᎢ, ᎾᏍᏉᏰᏃ ᎤᏅᏒ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏎᎢ. ᎣᏁᎢᏴ ᏑᎾᎴᎢ, ᎱᏂᎷᏤ ᎨᏥᎾᏌᎢ ᏦᎨᏏ ᎤᏁᏙᎸ--- ᎤᏂᏃᏕᎾ, ᎤᏂᏃᏕᎾ ᎠᏂᏓ, ᏌᏌ ᎠᏨᏯᎢ, ᏌᏌ ᎠᎩᏌ ᏃᎴ ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ. ᎣᏍᏓᎦ ᎡᏓᏍᏗ ᎭᎾ ᏃᎴ ᎡᏝᏪᎯ. ᎯᎾᏘᏃᎦ, ᎤᏛᏅ ᏲᎾ. ᎾᎯᏳᏃ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᏂᏲᎮᏍᏗ ᏴᏫ, ᎠᎴ ᎥᏝ ᎤᏂᏩᏛᏗ ᏱᎨᏎᏍᏗ; ᎠᎴ ᎤᎾᏚᎵᏍᎨᏍᏗ ᏧᏂᏲᎱᎯᏍᏗᏱ, ᎠᏎᏃ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎾᎵᏘᎡᏗ ᎨᏎᏍᏗ. ᎠᏴᏰᏃ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏩᏒᎢᏍᏗ ᏃᏣᎵᏍᏗᎭ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᏧᏂᏲᎱᎯᏍᏗ ᏥᎩ. ᏣᎵ ᏃᎴ ᎠᏂᏧᏣ ᏗᏂᏙᎬ ᎾᎥᏂ ᏭᎴᏅ ᎤᏣᎴᏛ. ᏐᏈᎵ ᏍᏖᏴᏓ ᎬᏘ ᏗᎧᏁᎸ ᏗᏂᏅᏍᎨᏂ ᎤᎾᎵᏍᏔᏴᏃᎾ, ᎤᎵᏏᎬ ᎢᏴ ᎤᏂᏍᎦᎢᏛ ᏓᎾᎳᏍᎨᏍᎬ ᏃᎴ ᏂᏛᏂᏪᏍᎬ. ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎤᏂᎷᏤ, ᏗᏓᎾᏏᏁᎩ ᎠᏂᎾᏏᏂᏎᎢ. ᎯᏍᎩ ᎢᏳᏩᎬᏘ ᎤᏩᎭᏂᎸ ᎠᏓᏅᏙ. ᏍᏓᏯ ᏚᏃᏴᎨ ᏧᏍᏆᏴᏍᏗ ᏕᎦᏅᏙᎬ ᎠᏓ ᎠᏍᎪᎩᏍᎬ. ᏂᎯ ᎢᏨᏒ ᎢᏥᎦᏔᎯ ᎯᎠ ᏥᏂᏥᏪᏍᎬᎩ; ᎠᏴ ᎥᏝ ᎦᎶᏁᏛ ᏱᎩ, ᎥᎩᏅᏏᏛᏉᏍᎩᏂ ᎢᎬᏱ ᏥᏰᏅᎡᎯ. ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏕᏫ ᎢᎩᏙᏓ ᎤᏤᎵ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏱᎰᏩ ᏚᏙᏍᏛ ᏥᎦᎷᎯᏍᏗᎭ; ᎰᏌᎾ ᏩᏍᏛᎦᎸᎳᏗᏳ. ᎠᎪᏍᏗ ᎨᏒ ᏍᎩ ᏄᏍᏛ ᎠᏯᏖᏂ. ᎡᎵᏍᏗ ᎦᏲᏟ ᏥᏁᎢᏯ ᎠᏆᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ.” ᎤᎯᏐᏗ ᎤᏓᏅᏘ, ᎤᏓᏏᏁᎢ ᏃᎴ ᎠᎦᏍᎬ ᎤᏛᎦᏍᏔᏁᎢ ᏫᎵᎻ. ᎾᏍᎩᏃ ᏅᏓᎦᎵᏍᏔᏂ ᏂᎦᏗᏳ ᎢᏏᎵ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏌᏯᏂ ᏅᏓᏳᏓᎴᏅᎯ ᏓᎦᎷᏥ ᏗᎫᏓᎴᏍᎩ, ᎠᎴ ᎢᏴᏛ ᏅᏓᎬᏁᎵ ᎤᏁᎳᏅᎯ ᏄᏂᎸᏉᏛᎾ ᎨᏒ ᎢᎦᏈ ᎤᏪᎲᎢ. ᏗᎦᏙᎵ ᏃᎴ ᏗᎦᎴᏂ ᎤᏩᏩᏙᎣᏎ ᎤᎵᏍᏓᏴᏗ. ᎤᏙᏓᏆᏓ ᎭᏫᏂ ᎠᏯᎡᎢ ᏫᎵᎻ, ᎤᏣᏪᏐᎸᏍᏕ ᎧᏁᏍᎪ. ᎾᏍᎩ ᎠᏴ ᎥᎩᏁᏤᎸᎯ ᎦᎵᏥᏙᎲᏍᎩ ᎠᎴ ᎥᎩᏅᏏᏛ ᎠᎴ ᏗᎦᏥᏰᏲᎲᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ. ᎠᎴ ᏫᎾᏍᏛᎾ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ ᏤᎦᏈ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎠᏁᎲᎢ; ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎨᏒ ᎴᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ. ᎠᏎᏃ ᏩᏥᏰᏍᏗᏍᎬ ᎧᏁᏌᎢ ᎤᎦᏨᏩᏍᏔᏁᎴ ᏌᎳᏓ. ᎬᏩᏛᏛᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᎯᏬᏂᏍᎬ ᎠᎴ ᏕᎭᏕᏲᎲᏍᎬ ᏚᏳᎪᏛ ᎨᏎᎢ, ᎠᎴ ᏂᏘᎸᏉᏙᏛᎾ ᎨᏒ ᏄᎾᏍᏛ ᏴᏫ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎦᏅᏅ ᎤᏙᎯᏳᎯᏯ ᏕᎭᏕᏲᎲᏍᎬᎢ; ᏫᏚᏯᎲᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏚᏁᎴ ᎾᏂᎥ ᎠᏂᏍᎩᎾ ᎬᏩᏃᎯᏳᏏᏱ, ᎠᎴ ᏚᏂᏢᎬ ᏧᎾᏓᏅᏬᏗᏱ. ᎤᏍᏚᎩᏎ ᎤᏬᏱᏂᏓᏍᏗ ᎪᏱᏁ. ᎤᏂᏣᏖᏃ ᏧᎾᏄᏬ ᏅᏃᎯ ᏚᏄᏰᏍᏛᏁᎢ; ᎢᎦᏛᏃ ᏕᏡᎬ ᏚᏅᏂᎦᎸᎮᎢ, ᎠᎴ ᏅᏃᎯ ᏚᏂᎳᎨᏯᏛᏁᎢ. ᎠᎴ ᏓᏆᎧᎿᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ, ᎠᏰᎵ ᎦᏍᎩᎸᎢ ᎠᎴ ᎠᏰᎵ ᏄᎾᏛᏅ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ, ᎠᎴ ᎠᏰᎵ ᎠᏂᏅ ᏧᎾᏛᏐᏅᎯ, ᎥᎦᏙᎬᎩ ᎤᏃᏕᎾ ᎠᎩᎾ, ᎠᎸᎯ ᎢᏳᏍᏗ ᎨᏒᎩ ᏓᎧᏅᎩ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᎦᏛᎦ, ᎾᏍᎩ ᏂᎬᎾᏛ ᎡᎶᎯ ᏗᎦᏅᏒᎯ ᏥᎩ. “’ᎠᏤ ᎤᏔᎷᎩᏍᎩ ᎠᎵᏖᎸᎮᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ ᎤᏍᎦᏃᎵ. ᎨᏍᏗ ᏳᏁᎸᏔᏅ ᏧᎦᎴᏅᏗ ᎭᏫᏯ ᏃᎴ ᎤᏯᏍᎦ, ᎢᏧᎳ ᏚᎩᏍᏙᎡ ᏚᎩᏎ. ᎠᎴ ᎾᎿ ᎦᏅᎬᎩ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ, ᏦᎠᏍᎪᎯ ᏁᎳᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎬᏩᏢᏨᎯ ᏄᏗᏩᏍᎬᎾ ᎨᏒᎩ. ᎨᏍᏗ ᏫᏥᎢᎦ ᏳᏂᏬᏂᏌ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ. ᎠᎴ ᎤᎦᎵᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎪᎢ, ᎠᎴ ᎤᏟ ᎦᏲᎩᏰᎸᏗ ᎠᏰᎸ ᎣᎩᎪᏁᎶᎢᏍᏗᏱ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎡᎲ ᏬᎦᏁᎳᏗᏍᏗᏱ. ᎠᏓᏅᏙᏃ ᎠᎴ ᎠᏥᏰᎯ ᎡᎮᎾ ᎠᎾᏗᎭ. ᎠᎴ ᎠᏛᎩᏍᎩ ᎡᎮᎾ ᎠᏗᏍᎨᏍᏗ. ᎠᎴ ᎩᎶ ᎤᏔᏕᎩᏍᎩ ᏫᎦᎷᎩ; ᎠᎴ ᎪᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎦᏁᎩ ᏍᎨᏍᏗ ᎠᎹ ᎬᏂᏛ ᎠᏓᏁᎯ ᏧᎬᏩᎶᏗ ᏂᎨᏒᎾ. ᎠᏎᏃ ᏚᎾᏦᎭᏱᎸᏉ. ᎠᏆᏛᎦᏅ ᏂᏓᏛᏁᎰᏅ ᎭᏂ, Florida ᏓᏕᏏ ᎤᏛᏅ Perry. ᎾᏍᎩ ᏦᏥᎦᏔᎭ, ᎢᏓᎵᏅᏟ ᎤᏁᎳᏅᎯ ᎢᏥᎨᏳᎯ, ᎡᏣᏑᏰᏛ ᎨᏒᎢ. ᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎤᏂᏁᏨ ᎯᎠ ᏂᏚᏂᏪᏎᎸᎩ; ᏥᎪ ᏂᎯ ᎾᏍᏉ ᎡᏥᎶᏄᎡᎸ? ᏉᎳᏃ ᏚᎴᏅ, ᎤᏬᏰᏂᏃ ᎤᏖᎸᏅ, ᎯᎠ ᏄᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎢᏏᎵ ᏧᏪᏥ ᎠᎴ ᎤᏁᎳᏅᎯ ᎢᏥᎾᏰᏍᎩ, ᎢᏣᏛᏓᏍᏓ. ᎯᎠᏃ ᏧᏆᎶᎦ ᎦᏙ ᏫᏚᎾᎪᏒ. ᏂᏥᎥᏰᏃ ᏰᎵ ᎨᏥᏙᎴᎰᎯᏍᏗ ᏌᏉ ᎤᏪᏒᏛ; ᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏕᎶᏆᏍᏗᏱ, ᎠᎴ ᎾᏂᎥ ᎤᏂᎦᎵᏍᏓᏗᏍᏗᏱ. ᏍᎩᏄᏍᏕ ᏄᏂᏪᏎ ᏩᏏᏓᏂ ᏃᎴ ᏤᎩᏏᏂ, ᏍᎩᎾᎾ ᎤᏩᏌ ᏱᏂᏣᏛᏁᎳ ᏓᏣᏓᏂᏱ. ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏚᏂᎩᏒ ᎠᏕᎸ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᏚᏳᎪᏛ ᏱᎦᎩ ᎠᏕᎸ-ᏗᏗᏱ ᏱᏗᏗᎲᏍᎦ, ᎩᎬᏰᏃ ᏧᎬᏩᎳᏅᎯ. ᎥᏈᎪᎵᏱᏃ ᎠᎴ ᎠᏆᎶᏂᏯ ᎤᏁᏙᏅ, ᏕᏏᎶᏂᎦ ᏭᏂᎷᏨᎩ, ᎾᎿ ᎠᏂᏧᏏ ᏓᏂᎳᏫᎢᏍᏗᏱ ᎠᏓᏁᎸᎩ. ᎦᏓᏁᏍᏙ ᏃᎴ ᎤᎦᎭᏛ ᏃᎴ ᎤᏕᏘᏴᏌᏗᏒ ᎠᎦᏍᎪ. ᏂᎯᏰᏃ ᎢᏨᏬᏁᏗᎭ ᏗᏣᏓᎴᏅᏛ ᏴᏫ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎥᎩᏅᏏᏛ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎦᏥᏯᎵᏥᏙᏁᏗᏱ, ᏥᎸᏉᏗᎭ ᏄᏍᏛ ᎥᏆᏒᎦᎶᏛᎢ; ᎾᏍᎩᏰᏃ ᎯᎠ ᎣᏏᏳ ᎠᎴ ᏧᏓᏂᎸᎢᏍᏗᏳ ᏓᎧᏅ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ, ”ᏓᏥᎶᎣᏔᏂ ᎧᏅᏂᏍᎩ, ᎧᏁᏌᎢ ᏫᏓᎦᎸᏥᎵ,” ᎤᏛᏁ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᏦᎯᏳᏒᎾ ᎨᏒᎢ. ᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏱᏦᎯᏳᎭ ᎾᏍᏉ ᎠᏥᎸᏉ ᎤᎦᏔ ᎢᎩᏛ, ᎯᎠ ᏱᏂᏥᏪᏏ ᎯᎠ ᏦᏓᎸ, ᎭᏓᏅᎾ ᎢᏢ ᏫᎶᎯ, ᎠᎭ ᎤᏓᏅᏍᏗ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏱᎨᏥᏄᎸᎲᏍᎦ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏧᏣᎷᏤᎵ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᏓᏣᏓᏩᏗᏍᏙᏔᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏨᏓᏣᏕᏁᎵ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎠᎪᏎᎮᏍᏗ. ᎾᏍᎩ ᏁᏥᎳᏫᏎᎲᎾ ᎠᎴ ᏂᏣᏠᎾᏍᏛᎾ ᎨᏎᏍᏗ, ᎤᏁᎳᏅᎯ ᏧᏪᏥ, ᎦᏰᏧᎢᏍᏙᏗ ᏂᎨᏒᎾ, ᎢᏣᏓᏑᏴ ᎤᎾᏓᏥᏃᏍᏆᏰᏛ ᎠᎴ ᎤᎾᎪᎸᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎾᏍᎩ ᎾᎿ ᎠᏁᎲ ᏕᏥᎸᏌᏓᏗᎭ ᎡᎶᎯ ᎢᎦ ᏗᏣᏘᏍᏓᏁᎯ ᎾᏍᎩᏯᎢ; ᎯᎧᏔᎭ ᎨᏍᏗ ᏗᎧᏃᎮᏗ ᏱᏓᏂᏃᎮᏍᎪᎢ ᎧᏅᏂᏍᎩ. ᏂᏗᎦᎵᏍᏗᏍᎪᎢ ᎣᎭᏁ ᎢᏴ ᎡᎯᏍᏗ ᏂᏛᏁᎰ. ᎾᏂᎥᏉ ᎤᎾᏞᏒ ᎦᏅᏅᎢ, ᎢᏳᎾᏍᏗᎭᏉ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏂᎨᏒᎾ ᏄᎾᎵᏍᏔᏅ; ᎥᏝ ᎩᎶ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᏱᎩ, ᎥᏝ ᏌᏉ ᎤᏅ. ᎤᏲ ᎤᏂᏰᎸᏒᎩ Ꮀ ᎤᎬᏫᏳᏒ ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᎤᏁᏨ ᎾᏍᎩ ᎤᎧᏛ ᎿᏉ ᎤᏂᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏥᏳᏃ ᏗᏔᎸᎢ ᏫᎬᏪᎧᏅᎩ. ᎤᏩᏓᎴᏃ ᎤᎷᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᎾᏝᎢ, ᎬᏂᏳᏉ ᎠᏂ ᏣᏤᎵ ᏑᏓᎨᏒ, ᎠᎩᏍᏆᏂᎪᏛᎩ ᎠᎩᏣᏄᎸᎩ ᎠᏯᏠᎩᎯ; ᎦᎪᎨ ᏅᏩᏓᎴᏂᏨᏁᎸ? ᎠᎴ ᎦᏙ ᏣᎭ ᎾᏍᎩ ᏁᏣᏁᎸᎾ ᎨᏒᎢ? ᎢᏳᏃ ᎡᏣᏁᎸᎯ ᏱᎩ, ᎦᏙᏃ ᎢᎭᏢᏈᏍᎦ ᏁᏣᏁᎸᎾᏉ ᏥᎨᏐ ᎾᏍᎩᏯᎢ? ᎢᏳᏰᏃ ᏱᎦᏓᏙᎵᏍᏗ ᏱᎬᏗᎭ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᏆᏓᏅᏙ ᎠᏓᏙᎵᏍᏗᏍᎪᎢ; ᎠᏆᏓᏅᏛᏍᎩᏂ ᎥᏝ ᏱᎦᎾᏄᎪᏫᏍᎪ ᎣᏍᏛ ᎨᏒᎢ. ᏥᏌᏃ ᎤᎪᎲᎩ ᎾᏍᎩ ᎠᏍᎦᏯ ᎦᏅᎬᎢ, ᎠᎴ ᎤᏙᎴᎰᏒ ᎨᏒᎢ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᏚᎵᏍᎪ ᎡᏣᏅᏬᏗᏱ? ᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎿᏉ ᎣᏣᏙᎴᎰᎯ ᎠᏍᎩᎾ ᏣᏯᎥᎢ. ᎡᏆᎭᎻ ᎤᏲᎱᏒ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ, ᏂᎯᏃ ᎯᎠ ᏂᎯᏪᎭ; ᎢᏳᏃ ᎩᎶ ᎠᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᏥᏁᎬᎢ, ᎾᏍᎩ ᎥᏝ ᎢᎸᎯᏳ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᏙᎴᎰᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᎴ ᏚᎾᏓᏁᏣᏍᏚᎸᎩ ᏔᎷᎩᏍᎩ ᏗᎪᏢᏔᏅᎯ ᏗᏓᏁᏣᏍᏚᎶ ᎾᏍᎩᏯᎢ; ᏗᏂᏃᎨᏂᏃ ᏚᏃᏴᎬ ᎤᏂᏣᏘ ᏐᏈᎵ ᏓᏆᎴᎷ ᏥᏓᏂᎾᏏᏂᏐ ᏓᎿᏩ ᏣᎾᎢᏐ ᎾᏍᎩᏯ ᎨᏒᎩ. ᏂᎦᎥᏰᏃ ᎤᏇᏓᎵ ᎨᏒ ᎧᏃᏍᎦᏉ ᎾᏍᎩᏯᎢ, ᎠᎴ ᏂᎦᎥ ᎤᏓᎸᏉᏙᏗ ᎨᏒ ᏴᏫ, ᎧᏁᏍᎦ ᎤᏥᎸᏒ ᎾᏍᎩᏯᎢ. ᎧᏁᏍᎦ ᎧᏴᏍᎪᎢ, ᎠᎴ ᎤᏥᎸᏒᎢ ᎦᏙᎠᏍᎪᎢ, ᎧᏃᎮᏛᏍᎩᏂ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᏂᎪᎯᎸ ᎡᎭ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎦᏔᏅᎯᎠᏎ ᎤᏩᏥᏍᎦᎸ ᎢᏳᏍᏗ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏁᎢ; ᏚᎴᏅᏃ ᎠᎦᏬᎡᎢ. ᏂᎦᏓᏗ ᎧᏂᎩᏓ ᏦᎳᏂ. ᎤᎵᏍᎫᏪ ᏲᎾ ᎤᏤᏍᏙ. ᏑᏕᏘᏴᏓ ᎣᏁ, ᏂᎦᏓ ᎤᎪᏐᏅ ᎦᏅᏙᏗ. ᎨᏎᎻᏂᏃ ᏚᏙᎥ ᎤᏂᎷᏤᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᏂ ᎢᏥᏁᏍᏗ, ᏫᎦᏓᏙᎵᏍᏗᏍᎬ ᎢᎪᎯᏛ. ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᏓᏂᏙᎨ ᎤᎵᏂᎩᏛ ᎬᏭᎯᏍᏗᏍᎨᎢ. ᎠᎴ ᎠᏂᎪᏗᏳ ᎠᎾᎵᏅᏟ ᎤᎬᏫᏳᎯ ᏧᎾᏁᎶᏗ ᎥᏆᎸᎥ ᎢᏳᏩᏂᏌᏛ ᏚᎾᎵᎪᏛ ᏚᎾᏓᏅᏛᎢ, ᎤᏟ ᎢᎦᎢ ᎾᏂᎾᏰᏍᎬᎾ ᏄᎾᎵᏍᏔᏅ ᎧᏃᎮᏛ ᎾᏂᏍᎦᎢᎲᎾ ᎤᏂᏃᎮᏗᏱ. ”ᎤᏓᏙᎵᏍᏗ ᏍᎩᎾᏂ,” ᎤᏛᏁ ᏫᎵᎻ, ᏃᏗ ᎤᏙᏩᏗᏍᎬ ᎤᏓᏏᏁᎢ ᎩᎳᏈᏴ ᏭᏢᏁ. ᎾᏍᎩᏯ ᏂᎪᎩᏪᏎᎸ ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏓᎴᏅᏛ ᎤᏅᏒ ᎤᏂᎪᎯᏙᎸᎯ, ᎠᎴ ᎧᏃᎮᏛ ᎤᎾᎵᏥᏙᏅᎯ ᎨᏒᎢ-- ᎡᎳᏗ ᏄᏛᏁᎴ ᏌᎳᏓ ᏃᎴ ᎤᏍᏗ ᏄᎵᏍᏔᏁᎢ ᎤᏗᏍᎦᏢ ᎠᏔᎴᎦᏒᎢ, ᎤᎪᏩᏛᏗ ᏱᎨᏒᎾ ᎡᎳᏆᏗ. ᏍᏈᏍᏓ ᏴᏫ ᎤᎾᏕᏯᏍᏕᎢ. ᎤᎵᏏᏂᏗ ᎠᏰᎴᎮᎢ ᎡᎶᏗ ᎩᎶ ᎤᏦᎣᏍᏙᏗ ᏱᎨᏒᎾ. ᎨᏍᏗ ᏣᏍᏆᏂᎪᎯᏍᏗ ᏱᎩ ᏗᎧᎾᏩᏛᏍᏗ. (ᎣᎦᎵᏍᏕᎸᏙᏗᏰᏃ ᎨᏒ ᏓᏅᏩ ᎣᏣᎢᏒ ᎥᏝ ᎤᏇᏓᎵ ᏧᏩᏙᏗ ᏱᎩ, ᏧᎵᏂᎩᏗᏳᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎢᏳᏩᏂᏌᏛ, ᏓᏐᏲᎥᏗᏍᎬ ᎤᎵᏂᎩᏛ ᏓᏐᏴᎢ.) ᎠᎩᏁᎵᏍᎪ ᎤᎵᏲᏗ.” ᎾᏉᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏓᏍᏗ ᎤᎾᏙᎴᎰᏒ ᏄᎵᏍᏔᏅᎢ ᎤᏣᏘ ᎤᏲ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏂᎷᏤ ᎤᏂᏃᏁᎴ ᏧᏂᎾᏝᎢ ᏂᎦᏛ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᏝᏍᎪ ᏗᏩᎵ ᏗᎪᏢᏍᎩ ᏳᎭ ᎠᏓᏅᏖᏍᎬ ᎢᏳᏩᏁᎵᏓᏍᏗᏱ ᎦᏓᏆᎳ, ᎾᏍᎩᏉ ᎦᎾᏆᎸᏒ ᎠᎬᎭᎸᏛ ᏌᏉ ᎠᏖᎵᏙ ᎤᏬᏢᏗᏱ ᎦᎸᏉᏙᏗ, ᏅᏩᏓᎴᏃ ᎦᎸᏉᏗᏗ ᏂᎨᏒᎾ? ᎿᏉᏃ ᎤᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏙᏓ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ. ”ᏫᎵᎻ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏍᎩᏥᏍᎩ. ᏉᎳᏃ ᎠᏏ ᎤᏬᎯᏨᎩ ᎤᏪᏙᎸᎩ; ᎿᏉᏃ ᏚᏲᎵᎸ ᎠᎾᏓᏅᏟ, ᏥᏳᎯ ᏭᏣᏅᎩ ᏏᎵᏱ ᏭᎶᏒᎩ; ᎠᎴ ᎾᏍᏉ ᏈᏏᎳ ᎠᎴ ᎡᏈᎳ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎤᎵᏍᏙᏰᎲᎯ ᎨᏒᎩ ᏒᏟᏯ ᎢᏴᏛ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏚᎢᏍᏓᏁᎸᎯ ᎨᏒᎩ. ᎠᎴ ᎾᏍᎩ ᎠᏥᏁᎸᎩ ᎤᎾᏓᏅᏘ ᏓᎿᏩ ᎢᏳᏅᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏧᏎᎪᎩᏍᏗᏱ; ᎠᎴ ᎠᏥᏁᎸᎩ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏗᎬᏩᏁᎶᏙᏗᏱ ᎾᏂᎥ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ. ᏍᎩᎾᎾ ᏄᎵᏍᏗᏍᎪ ᎯᎸᎢᏴ. ᎠᎴ ᎨᏍᏗ ᎾᎥᏂ ᏱᎩ. ᎤᎾᏕᎰᏔᏁᏅᏃ, ᎬᏩᏄᏪᏎ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏩᏒ ᏧᏄᏬ ᏕᎬᏩᏄᏬᎡᎢ, ᎠᎴ ᏫᎬᏩᏘᏅᏍᏔᏁ ᎬᏩᏛᏗᏱ. “Ꭾ-Ꭰ-Ꭰ!” ᎤᎾᏛᏁᎢ ᎤᏂᏃᏕᎾ. ᏍᏈᏍᏔ. ᎬᏂᏳᏉᏃ ᎾᏍᎦᎢᎲᎾ ᎦᏬᏂᎭ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏯᏃᏎᎭ. ᏥᏌ ᎤᏂᎬᏫᏳᎯ ᎤᏙᎯᏳᎯ ᎠᏂᎦᏔᎭ ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᎦᎶᏁᏛ ᎨᏒᎢ? ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎩᎶ ᏥᏥᎾᏌᏂ, ᎠᏏᎾᏍᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎬᏗ, ᎾᏍᎩᏯ ᏴᏫ ᏓᎾᏕᏲᎲᏍᎬᎢ, ᎾᏍᎩᏯ ᎡᎶᎯ ᏗᎴᏅᏙᏗ ᏓᏕᏲᎲᏍᎬᎢ, ᎥᏝᏃ ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᏓᏕᏲᎲᏍᎬᎢ; ᏔᎵ ᎢᎦ ᏕᏣᏂᎬᎦ ᏗᏣᏏᎳᏛᏗ.” ᎯᎠ ᎾᏥᏪᏎᎲᎩ ᏑᏓᎵᏁ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏤᎷᎩ ᎦᏁᎯ, ᏔᎸᏒ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏔᏅ ᎡᏉᏂ ᎤᏪᏴ ᎷᏇ Ꮧ ᏥᏕᎨᎦᎸᎥ. ᏦᏌᏯᏃ ᏤᎪᎾᏯ ᎠᎴ ᎠᎾᏓᏅᏟ ᎬᏩᏕᏁᎴᎢ; ᎾᎯᏳ ᏓᏗᎶᏂ ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁᎢ; “Ꭵ, ᎤᏙᏳᎯ,” ᎤᏛᏁ ᏥᎷᏏᎵᎻᏃ ᎤᏂᎷᏨ ᎦᎬᏩᎾᏓᏂᎸᏤ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᎴ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ; ᎤᏂᏃᎮᎴᏃ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏄᏛᏁᎸ ᎤᏂᏍᏕᎸᎯᏙᎸᎢ. ᏑᎾᎴ ᏯᎩᏰᏨ ᎠᏓᎾᏅ ᎠᏲᏓᏒ ᏫᎦᏗᏔᏍᎬ ᎧᏫ, ᏳᎧᎭᏛᎾᏱᎩ ᎠᎴ ᏯᎦᏍᎬᎾᏱᎩ, ᏍᎪᏁ ᎨᏴ ᏫᏕᎦᎦᏂᏍᎬ ᏗᏦᎭᏴ, ᏕᎦᎦᎡᏍᏗᏍᎬ ᏑᎾᎴᎢ ᏓᏂᏐᏍᎬ ᎠᏂᏲᏍᎩ, ᎦᏚᏏ ᏗᏂᏯᎴᎩ ᎠᏂᏴᏫᏯ ᏓᏓᏁᎸ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏏᎵ ᏧᏪᏥ ᎢᏤᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎢᏣᏓᏅᏖᏍᎬ ᎢᏗᏳᏁᏗᏱ ᎯᎠ ᎠᏂᏍᎦᏯ. ᎾᏍᎩᏴ ᎶᏩᏂ ᏄᏛᏁᎳ, ᏄᏓᎴ ᎠᏍᎦᏯ, ᏣᏥ ᎡᎵᏍᏗ, ᎢᏧᎳ ᏧᏬᏰᏂ ᎬᏘ ᎤᏩᎭᏂᎴ Philadelphia ᏓᏳᎶᏒ ᎠᏧᏣ ᎠᏴᏤᏂ ᏃᎴ ᎦᏅᏬᎢ ᎠᏰᎵ. ᎠᎬᏱ ᎠᏆᎩᎸᏅ ᎠᎹᏱ ᎡᏙ ᏥᏳ - ᎤᏲ ᎢᏳᏍᏗ ᎦᏆᏘ ᎠᏰᎸᏍᏗ, ᎠᏍᏛᎪᏒ ᏃᎴ ᎠᏑᏫᏍᏗ ᎤᏂᎬᎬ, ᎨᏍᏗ ᎣᏍᏓ ᏂᎨᎵᏍᎬ ᏱᏄᏍᏕ, ᏩᎦᎸᎳᏗᏴ ᎠᏳᎢᏁᎩ ᏥᎦᏖᏃᎲ - ᏥᏍᎦᏰᎬᏍᏔ ᎤᏁᎵᏍᏗ ᎠᏆᏚᎵᏍᎬ. ᏔᎵᏁᏃ ᏭᏴᎴ ᏗᎦᎳ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎾᎿᏃ ᎡᏙᎮ ᎠᏍᎦᏯ ᎤᏬᏰᏂ ᎤᏩᎢᏎᎸᎯ. ᎠᎴ ᎾᏍᏉ ᎦᏳᎳ ᎦᎷᏯᏍᏗ ᎠᎭ ᏚᎿᏍᏕᏢ ᏕᏡᎬᎢ; ᎾᏍᎩᏃ ᏂᎦᏛ ᏕᏡᎬ ᎠᏃᏍᏛ ᎾᎾᏓᏛᏍᎬᎾ ᏗᎦᎴᏴᏍᏙᏗ ᎠᎴ ᎠᏥᎸᏱ ᏫᏓᏗᏅᏗ ᎨᏎᏍᏗ. ᏣᎳᎩᏱ ᎠᏰᎵ ᎨᎵ ᎨᏎ ᎠᎵᏥᏙᎲᏍᎩ Ꮳ ᎠᎹᏰᎵ, ᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏎ ᎤᏪᏅᏍᏗ ᎨᏎ. “ᎤᏂᏍᏆᏂᎩᏗ ᎣᏣᏓᏤᎵ. ᎾᏍᎩᏃ Ꮎ ᏅᏓᎨᏥᏅᏏᏛ ᎠᏂᏆᎵᏏᏱ ᎤᎾᎵᎪᎯ ᎨᏒᎩ. “ᎨᏍᏗ ᎬᏕᎶᎰᎯᏍᏗ ᏱᎩ ᎠᏲᏟᎨᎢ ᎤᏕᏅ ᏥᎨᏒ. “ᏃᏉ ᎦᏙ ᏓᎦᏛᏁᎵ?” “ᏕᎾᏓᎪᎲᏳᏛ ᎤᏛᏁ, ᏭᎶᏌ ᎦᎶᎯᏍᏗ. ᏂᎦᏓ ᏚᏒᎭᏂᎶᎾ, ᎣᏍᏓ ᎤᏒᎯ ᏚᏬᏎᎴ, ᏭᎾᏏᏁ ᏧᏍᏆᏅᎾ ᎭᏫᏂᏨ, ᎤᏢᏁ. ᎤᏂᏃᎮᎸᎩᏃ ᎨᏒ ᎤᏅᏒ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏂᎦᏕᏅᎾ ᏥᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᎤᏲᏃ ᎠᏓᏅᏙ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏥᏌ ᏥᎦᏔᎭ, ᎠᎴ ᏉᎳ ᏥᎦᏔᎭ, ᏂᎯᏍᎩᏂ ᎦᎪ ᎢᏣᏍᏗ? ᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏗᏳ ᏄᎵᏍᏔᏂᏙᎴ ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎢ ᎯᎠ ᏥᏄᏪᏎ ᏱᎰᏩ ᎠᏙᎴᎰᏍᎩ ᎠᎬᏗᏍᎬᎢ; ᎾᏍᎩᏃ ᎤᎷᏨ ᎣᏤᏙᎲ, ᎠᎴ ᎤᏁᏒ ᏉᎳ ᎤᏓᏠᏍᏗ, ᎠᎴ ᏚᎸᎸ ᎤᏩᏒ ᏧᏬᏰᏂ, ᎠᎴ ᏧᎳᏏᏕᏂ, ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᏂᎦᏪᎠ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ; ᎾᏍᎩ ᎯᎠ ᏅᏛᏅᏁᎵ ᎠᏂᏧᏏ ᏥᎷᏏᎵᎻ ᏛᎾᎸᎵ ᎠᏍᎦᏯ ᎯᎠ ᎠᏓᏠᏍᏗ ᎤᏤᎵᎦ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏫᏙᏛᏂᏲᎯᏎᎵ. ᎨᏍᏗ ᎩᎶ ᏳᏁᎸᏔᏅ ᏧᎴᏫᏍᏙᏗ. ᎼᏏᏰᏃ ᎡᏘ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏕᎦᏚᏩᏗᏒ ᏕᎤᏪᎭ ᎬᏩᎵᏥᏙᎲᏍᎩ, ᏓᏥᎪᎵᏰᏍᎬᎢ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏄᎾᏙᏓᏈᏒᎢ. ᎠᎴ ᎤᏲᎴ ᎤᏍᎪ ᎠᏖᎵᏙᎩᎯ ᏕᎶᏕᎢ, ᎠᎴ ᎠᏛ ᎤᏁᎴᎢ; ᎠᏛᏃ ᎤᏥ ᎤᏁᎴᎢ. ᎡᏈᏌ ᏧᎾᏁᎶᏗ ᎤᎾᏓᎲᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏃᏈᏏ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᏥᏚᏒᎦᎳ, ᎾᏍᎩ Ꮎ ᏤᏙᎭ ᎠᏰᎵ ᏕᎦᎧᎲ ᎦᎵᏉᎩ ᏗᏨᏙᏍᏗ ᏗᎦᎪᏙᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ. ᎠᎴ ᎨᏣᏛᎦᏁᎸ ᏕᎮᏲᎲᏍᎬᎢ ᏂᎦᏛ ᎠᏂᏧᏏ, ᎾᏍᎩ ᏧᎾᏓᏑᏯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᏧᏂᏲᎯᏍᏗᏱ ᎼᏏ, ᎯᎠ ᏂᏪᏍᎬᎢ; ᏞᏍᏗ ᏱᏗᏥᎱᏍᏕᏎᎮᏍᏗ ᏗᏂᏲᎵ, ᎠᎴ ᏞᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏥᏍᏓᏩᏕᎨᏍᏗ. ᎠᏍᎩᎾᏃ ᎠᏥᏄᎪᏫᏒ ᎤᏩᎨᏫ ᎤᏬᏂᏒᎩ. ᎤᏂᏣᏘᏃ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝ ᎢᎸᎯᏳ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎪᎲᎯ ᏱᎩ ᎢᏏᎵᏱ. ᎾᏍᎩ ᎤᏪᏥ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏕᏫ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏧᏕᏁᎢ ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒᎢ; ᎿᏉᏃ ᏇᏍᏓ ᎾᎿ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏛ ᎤᎷᏨ, ᏦᎢ ᏫᏄᏒᎸ, ᏏᏌᎵᏱ ᎤᏂᎩᏒᎩ ᏥᎷᏏᎵᎻ ᏭᎶᏒᎩ. ᎩᎶ ᎢᏤᎲ ᎤᏓᏑᏰᏍᏗ ᎤᏢᎨᏍᏗ, ᏫᏓᏯᏂᏍᎨᏍᏗ ᏗᎨᎦᏗᎶᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩᏃ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏂᏔᏲᎯᎮᏍᏗ ᎠᏥᏍᏕᎸᏗᏱ, ᎬᏩᎶᏁᏗᏍᎨᏍᏗ ᎠᏠᏁᏗ ᎠᏅᏗᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏚᏙᎥᎢ; ᎢᏣᏤᎵ ᎨᏎᏍᏗ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏣᎵᏍᎪᎸᏔᏁᎸᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎤᎾᏙᏓᏉᏅᎯᏃ, ᎩᎳ ᎢᎦ ᏂᎦᎵᏍᏗᏍᎨᎢ ᎠᎴᏂᏍᎬ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᎠᎴ ᏐᎢ ᎺᎵ ᎤᎾᎦᏔᏂᎴ ᎠᏤᎵᏍᏛᎢ. ᎠᏥᎸᏱᏃ ᏭᏙᎥᏔᏅᎩ ᎢᎾᏛ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏳᎵᏍᏔᏁᎢ. ᎦᏓ ᎠᎪᎵᏰᏍᎪ ᏃᎴ ᎢᏳᏍᏗ ᏂᎬᏁᎲ ᎦᏓ. ”Ꭵ, ᎣᏍᏓ ᏏᏆ ᏂᏗᎦᎵᏍᏔᏂ,” ᎤᏛᏁ ᎰᎻ. ᎤᎷᏣ ᎦᏍᎩᎶᎩ ᎤᏩᏗ, ᎤᎵᏖᎸᏁ ᎧᏁᏌᎢ, ᏃᎴ ᎤᏃᏴᎨ ᎭᏫᏂ. ᎦᎵᏦᏕ ᏧᏅᎪᏤ ᎦᎸᎳᏗ ᎢᏗᎦᏘ ᏗᎳᏑᎶ ᏧᎳᏑᎵ, ᎪᎢ ᎦᏂᏤᎮ ᏃᎴ ᎦᏅᎯᏓ ᎠᏰᎳᏍᏗ ᎦᏁᎮ. ᎠᎫᎵᏦᏩᏛ ᎤᏒᎯ, ᎪᏟᏍᏗ ᎨᏐ ᎧᏁᎢᏍᏗ ᎠᎹ ᎨᏴ ᏓᏳᏓᎴᏅ, ᎯᎸᎢᏴ ᏂᎦᏓ ᏗᏒᏍᏙᏗ ᎤᎵᏍᎨᏛ. ᎠᎴ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ ᎦᏥᏁᎰᎢ, ᎥᏝᏃ ᎢᎸᎯᏳ ᏧᏂᏲᎱᎯᏍᏗ ᏱᎩ, ᎠᎴ ᎥᏝ ᎩᎶ ᏗᏆᏑᎦᎸᏙᏗ ᏱᎩ. ᏂᎦᎥ ᏓᏋᏂᎦᎸᎢ ᎾᎾᏓᏛᎥᏍᎬᎾ ᏥᎨᏐ ᏕᎬᏂᎦᎵᏍᎪᎢ; ᏂᎦᏛᏃ ᎠᎾᏓᏛᎥᏍᎩ ᏕᎬᏂᎦᎷᏬᏍᎪᎢ ᎤᏟ ᎢᎦᎢ ᎤᎾᏓᏛᏗᏱ ᎤᏰᎸᏐᎢ. ᎢᏏᎵ ᎤᏅᏏᏓᏍᏗ ᎤᏍᏕᎸᎲ ᎠᏅᏓᏗᏍᎬ ᎤᏓᏙᎵᏣᏛᎢ, ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᏗᎨᎦᏁᎶᏗ ᎡᏏᏱ ᎠᏁᎯ, ᏉᎳ ᏧᎵᎢ, ᎤᎾᏓᏅᏒᎩ ᏫᎬᏩᏔᏲᏎᎸᎩ, ᏭᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎤᎾᏛᏁᎸᏗᏱ. ᎤᏄᏖᏎᏃ ᎤᎵᎬᎭᎷᏴᎯ ᏔᎳᏚ ᏗᎧᎵᎢ ᏔᎷᏣ, ᎠᎴ ᎾᏍᏉ ᎠᏣᏗ. “ᎭᏛᎦᏍᏓ! ᎠᎾᎵᏅᏟ ᏗᎨᏳᏗ ᎨᏒ ᏅᏩᏍᏗᏗᏎᏍᏗᏉ. ᎢᏳ ᎠᎴ ᏎᏓᏂ ᏔᎵ ᏱᏄᏓᎠ ᎤᏩᏒ ᏯᏓᏡᏗᎭ, ᎦᏙ ᏘᎦᎵᏍᏙᏗ ᏱᏂᎬᏩᏍᏗᏉ ᎤᏤᎵᎪᎯ? ᏅᏗᎦᎵᏍᏙᏗᎭ ᏇᎵᏥᏆ ᎤᏍᏕᎵᎭ ᎠᏂᏍᎩᎾ ᏥᏕᎦᏄᎪᏫᏍᎦ ᏥᏍᎩᏲᏎᎭ. ᏯᏋᎨᏫᏐᏉ ᏩᏯ ᎦᏚᎲ. ᎤᏁᏅᏎᏃ ᎠᎴ ᏭᏂᏩᏛᎮ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸᎢ; ᎤᎾᏛᏅᎢᏍᏔᏁᏃ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ. “ᏓᏁᏏᎨ ᏗᎾᏓᎪᎾᏗᏍᎬ? ᎭᎾ ᏳᏫᏗᏣᎾ ᏧᏪᏥ,” ᎤᏍᏗᏰᏔᏁ ᏫᎵᎻ. ᎤᏁᎦ ᎨᏎ. ᎾᏍᎩ Ꮎ ᎤᎷᎯᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᏎᏓᏂ ᏧᎸᏫᏍᏓᏁᏗ ᏚᎸᏫᏍᏓᏁᎮ-ᏍᏗ ᎬᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎦᏰᎪᎩ ᎤᏰᎸᏛᎢ, ᎤᎵᎪᎲᏍᏗ, ᎠᎵᏍᏆᏗᏍᎬ ᎦᏃᎯᎵᏓᏍᏗ ᏅᏙ, ᎠᏉᏌᎯᏌᏅ ᏄᎵᏍᏔᏁᎸ ᏣᎵ, ᎬᎩᏃᎯᏎᎸ ᏁᏂᏏ, ᎶᏩᏂ, ᏣᏥ ᏃᎴ ᏤᎩ. ᎤᎿᏛ ᎠᏒᏛ ᏗᎦᎾᎥ ᏭᎳᏏᏔᏁ… ᏥᏌᏃ ᎤᎪᎲ ᎤᏥ, ᎠᎴ ᎤᎪᎲ ᎾᎥ ᎦᏙᎬ ᎤᏍᏓᏩᏗᏙᎯ ᎤᎨᏳᎯ, ᎯᎠ ᏄᏪᏎᎸᎩ ᎤᏥ; ᎯᎨᏴ, ᎬᏂᏳᏉ ᏤᏥ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙ ᎦᎵᏍᏙᏗᎭ ᏂᏦᎵᎬᎾ ᏥᎩ? ᏃᎪᎱᏍᏗ ᎤᎦᎾᏍᏓ ᎠᎩᏍᏗ ᎢᏳᏍᏗ ᎤᏃᏴᎦ.” ᎠᏎᏃ ᎠᏂᎦᏔᎿᎢ ᎤᏂᏁᏨ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏝᎨ ᏰᎵ ᏱᏙᎨᎩᏰᎵᎦ ᏂᎦᏛ, ᎢᏤᎾᏉᏍᎩᏂ ᏗᏂᏃᏗᏍᎬ, ᎢᏨᏒ ᏫᏥᏩᎯ. ᎤᎩᏨᏛᏃ ᎿᏉ ᎤᏂᎩᏒ, ᏔᎵ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᏑᎴᏎᎢ, ᎠᎴ ᏚᏁᎴ ᎦᏁᎳ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᏍᏆᏂᎪᏕᏍᏗ, ᎢᎦᎢᏃ ᏫᎦᎶᏒᏍᏗᏍᎬ ᏣᎫᏴᎯᏙᎸᎢ, ᎢᏥᎷᏨᎭ ᎢᎬᏯᎫᏴᎡᎸᎭ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏁᏤᎭ ᏗᏣᏓᎨᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏒ ᎾᏍᎩ ᎠᏛᎩᏍᎪ ᎤᏁᎳᏅᎯ ᎧᏁᎬᎢ; ᏂᎯ ᏂᏣᏛᎩᏍᎬᎾ ᏥᎩ ᏁᏗᎦᎵᏍᏙᏗ ᎤᏁᎳᏅᎯ ᏅᏓᏣᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎭᏂ ᎢᏣ ᏗᏘᏅ ᎭᏓᏅᏖᏍᎬ, ᎠᎧᎵᏨ ᎤᏏᏩ ᎨᏒ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏴ ᎠᎩᎩᎬ ᎢᏨ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏂᏣᏘ ᏥᎨᎦᏤᏪᎸ. ᏫᎵᎻᏃ ᎪᏎᎰ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ, ᎾᏍᎩ ᎠᏴ ᎢᏧᎳᎭ ᎢᎩᎧᎵᏍᏙᎯᏍᏗᏱ ᎬᏔᏅᎯ ᎠᏴ ᏂᎯᏃ ᎤᏠᏱ ᎢᎪᎯᏳᏒᎢ. ᎢᏧᎴᎭ ᎢᎩᎾᏕᏘᏴᏓ. ᎾᏍᎩ ᏚᏘᎿᏫᏛᎮᎢ ᏂᏚᎸᏫᏍᏓᏁᎶ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᎢᏥᏈᏱ ᎠᎴ ᎠᎹ-ᎩᎦᎨᏍᏛᏱ ᎠᎴ ᎢᎾᎨ ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ. ᎣᎯᏍᏙᏗ ᎤᏰᎸᎮ ᎤᏅᏌ ᏥᎨᏎ ᎤᏩᏌ ᏃᎴ ᏗᎨᏥᎾᏌᎢ. ᎠᏂ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ ᏗᏅᏂᏗᏳ ᎨᏒ ᎤᎾᏓᏅᏘ; ᎠᏁ ᎠᏁᎭ ᏗᏂᏍᏆᏂᎪᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᏥᏌ ᎤᏤᎵᎦ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ ᎬᏂ ᎤᎬᏫᏳᎯ ᎦᎷᏨᎭ. ᎬᏂᏳᏉ ᎤᎶᎨᏛ ᎠᎦᏘᏲ ᎦᎸᏉᏗ ᎡᎶᎯ ᎤᎾᏄᎪᏫᏒᎯ, ᎠᎴ ᎬᏂᏗᏳ ᎨᏐ ᎠᎦᏘᏲᎢ, ᎬᏂ ᎤᎦᎾᏏ ᎢᎬᏱᏱ ᎠᎴ ᎣᏂᏱ ᎤᎦᏃᏗ ᎨᏒᎢ. ”ᎦᎵᏉᎩ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏈᎵᎩᏃ ᎤᏍᏚᎢᏒ ᎠᎰᎵ, ᎾᏍᎩ ᎾᎿ ᎪᏪᎸ ᎤᎴᏅᎡᎢ ᎤᏃᎮᎮᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏌ ᎤᎬᏩᎵ. ᎭᎾ ᎢᏴ ᏭᎷᏤ ᏣᎵ ᎤᏢᎾ ᏧᏍᏆᏅᎾ ᎭᏫᏂᏨ ᎦᏚᏏ. ᎦᏙᏃ ᏓᏓᏛᏂ ᎯᎠ ᎾᏍᎩ ᏥᏄᏍᏗ? ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᏱᎩᏍᏕᎵᎭ ᎦᎪ ᏱᎦᏡᏓ? ᎤᎾᏝᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎣᏏᏳ! ᎰᏍᏛ ᎠᎴ ᎯᎦᎵᏯ ᎡᏣᏅᏏᏓᏍᏗ! ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ ᎤᏍᏗ ᏧᏓᎴᏅᏛ ᏕᏣᎸᏫᏍᏓᏁᎸᎢ; ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏣᎬᏫᏳᏌᏕᎩ ᏅᏓᎬᏴᏁᎵ; ᎯᏴᎭ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗᏱ ᏣᎾᏝᎢ ᎤᏤᎵᎪᎯ. ᏂᎯᏰᏃ ᏧᏩᎫᏔᏅᏒ ᏁᏦᎢᏳᏒᎾ ᏥᎨᏒᎩ ᎤᏁᎳᏅᎯ, ᎠᏎᏃ ᎪᎯ ᎡᏥᏙᎵᏨᎯ ᎢᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ; ᎨᏍᏗ ᏥᏍᏆ ᎬᏆᏕᏯᏙᏗ ᏱᎩ ᎥᏝ Ꮓ ᎢᏤᎳᏲᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎾᎾᏛᏁᎲ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏁᎳᏅᎯ ᎾᏂᎦᏔᎲᎾ ᏥᎩ; ᎠᏍᏚᎩᏍᏗ ᎤᏂᏴᏩᏛᎮ - ᎦᏅᎯᏓ, ᏔᎷᎩᏍᎩ ᎪᏒᏓᏅ. ᏗᎹᏰᏃ ᎠᏋᏕᏨ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏟ ᎤᏰᎸᏅ ᎪᎯ ᎨᏒᎢ, ᎠᎴ ᏕᏏᎶᏂᎦ ᏭᎶᏒ; ᏞᏏᏂ ᎨᎴᏏᏱ ᏭᎶᏒ, ᏓᏓᏏ ᏕᎵᎺᏏᏱ ᏭᎶᏒ; ᎾᏍᎩᏃ ᏗᏥᏅᎦᎸᏛ ᏥᎩ ᏗᏣᏓᏅᏙ ᏕᏥᎧᎾᏩᏛᏒ ᏚᏳᎪᏛ ᏥᏅᏧᎵᏍᏙᏔᏅ, [ᎦᎸᏉᏗᏳ] ᎠᏓᏅᏙ ᏥᏨᏔᏅ, ᏄᏠᎾᏍᏛᎾ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏨᏙᏗᏱ ᏗᏥᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎢᏣᎵᏅᏟ, ᎤᎵᏂᎩᏛ ᏕᏣᏓᎨᏳᏎᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᎦᏓᎭ ᏂᎨᏒᎾ ᎢᏥᎾᏫ. XII. ᏧᎾᏦᎯᏍᏗ ᎯᎠ ᎠᎴ ᎾᏍᎩ ᎢᏨᏲᏪᎳᏁᎭ ᎢᏣᎵᎮᎵᎬ ᎤᎧᎵᎢᏍᏗᏱ. ᎦᏥᏲᎢᏳᏓᏁᎯᏰᏃ ᎾᏍᎩ ᎤᏣᏘ ᎤᎾᏚᎵᏍᎬ ᎤᏁᎳᏅᎯ ᎪᎱᏍᏗ ᎤᎾᏛᏁᏗᏱ; ᎠᏎᏃ ᎥᏝ ᎠᎦᏙᎮᎯᏍᏗ ᎨᏒ ᏯᏅᏗᎭ. ᎨᏍᏗ ᎤᏩᏙᎯᏴᏓ ᎢᎫᏩᎵᏍᏔᏁᏗ ᏱᎩ, ᏂᏓᎦᎵᏍᏙᏗ ᎠᏂᏲᏍᎩ ᏚᏂᎭᏲᎮ ᎾᏍᎩᏯ ᎢᎾᎨ ᎡᎯ ᎠᏫ. ᎾᏍᎩᏃ ᏧᏂᏲᎱᏒᎯ ᏗᏂᏰᎸᎢ ᏕᎦᏁᏍᏗ ᏕᎦᎳᏅᏛ ᎡᏓᏍᏗᏱ ᎡᏆ ᎦᏚᎲᎢ, ᎾᏍᎩ ᏓᏟᎶᏍᏛ ᏐᏓᎻ ᏣᏃᏎᎭ ᎠᎴ ᎢᏥᏈ, ᎾᎿ ᎾᏍᏉ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᎠᏥᎸᎢ. ᎾᎯᏳ ᎢᎦ ᎤᏁᎳᏅᎯ ᎤᏕᎵᏛ ᎨᏒ ᏴᏫ ᎤᎾᏤᎵᎦ ᏕᎫᎪᏓᏁᎸᎭ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ, ᎾᏍᎩᏯ ᏂᎦᏪᏍᎬ ᎠᏆᏤᎵ ᎣᏍᏛ ᎧᏃᎮᏛ. ᎠᏎᏃ ᎪᏪᎵ ᎦᎸᏉᏗ ᎬᏂᎨᏒ ᏂᎬᏁᎭ ᏂᎦᏗᏳ ᎤᏂᏍᎦᏅᏨᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏚᎢᏍᏛ ᏥᏌ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᎨᏒ ᏅᏛ-ᏓᎴᎲᏍᎩ, ᎾᏍᎩ ᎨᏥᏁᏗᏱ ᎠᏃᎯᏳᎲᏍᎩ. ᎾᎯᏳᎡᏃ ᎠᏏ ᏂᎦᏃᎱᎩᏍᎬᎾ ᏥᎨᏎᎢ, ᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ, ᎠᎴ ᏓᎾᏗᏔᏍᎨᎢ, ᎠᎴ ᏓᎾᏕᏒᎲᏍᎨᎢ ᎠᎴ ᏕᎨᏥᏰᎨᎢ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᏃᏯ ᎤᏣᏅ ᏥᏳᎯ, ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎩ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎪᎯᏰᏃ ᎢᎦ ᎢᏣᏕᏁᎸ ᏕᏫ ᎤᏪᏚᎲᎢ, ᎢᏥᏍᏕᎵᏍᎩ ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ. ᎭᏩ ᎠᏆᏛᏅ. ᏂᎦᏓ ᎨᏦᎵᎩ ᏃᎴ ᎣᏍᏓ ᏏᏆ ᏂᎯ. ᎥᏣᏰᏃ ᏧᏂᏣᏔᏉ ᏥᏄᎾᏍᏗ ᏱᏃᎦᏍᏗ, ᎾᏍᎩ ᎠᏂᏲᏍᏗᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᏃᎦᏠᎾᏍᏛᎾᏍᎩᏂ ᎨᏒ ᏦᏨᏗᏍᎪᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏥᏂᎬᏂᏏᏍᎩ ᎾᏍᎩᏯᎢ, ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎣᏥᏁᎢᏍᏗ ᎦᎶᏁᏛ. “ᎠᏎᏃ ᎨᏍᏗ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗ ᏱᎩ. ᎾᏍᎩ Ꮎ ᎾᎯᏳ ᎤᏇᏓᎵ ᎨᏒ ᎤᎴᏂᏙᎸ, ᎤᏓᏙᎵᏍᏓᏁᎸ ᎠᎴ ᎤᏔᏲᏎᎸ, ᎠᏍᏓᏴ ᏓᏠᏱᎲ, ᎠᎴ ᏓᎦᏌᏬᎢᎲ ᎬᏩᏠᏯᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏔᏲᏎᎸ ᎾᏍᎩ ᏰᎵᏉ ᎬᏩᏍᏕᎸᏗ ᎬᏭᏓᎴᏍᏘ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏛᎦᏁᎴ ᎦᎾᏰᏍᎬ ᎤᎬᏩᎵ; ᎡᎳᏆ ᏳᏯᏍᎬᎾ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᎧᏃᎮᏛ ᎬᏜᏏᏛᎡᏗ ᏂᎨᏒᎾ ᎠᎴ ᎤᏙᎯᏳᎯᏯ. ᎤᎬᏫᏳᎯᏃ ᎤᏁᎳᏅᎯ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎤᎾᏤᎵᎦ ᏧᏅᏎ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏧᏤᎵ ᏧᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏂᎪᎯᎸᎾᏉ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ. ᏞᏍᏗ ᎩᎶ ᏥᏥᎷᏄᎮᎵ ᏥᏥᏲᏍᏙᏓᏁᎵ ᎠᏌᏍᏛ ᎡᏥᏁᏗᏱ ᎤᏚᎵᏍᎬ ᎤᏓᏙᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᎾᏓᏙᎵᏍᏓᏁᏗᏱ, ᎾᏍᎩ ᎤᎵᏌᎳᏁᎲ ᎤᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᏎᏉᏉ ᎠᏕᏋᎯᏍᏗᏍᎬ ᎬᏗᏍᎬ ᎤᏇᏓᎵ ᎤᏓᏅᏖᏗ ᎨᏒᎢ; ᎦᎵᏉᎩᏃ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎥᎦᏥᎪᎥᎩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏣᏂᏙᎾᎠ; ᎦᎵᏉᎩᏃ ᏗᏤᎷᎩ ᏕᎨᏥᏕᎸᎩ ᎾᏍᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏓᎦᏘᎴᎨᏍᏗ ᎠᏰᎵ ᎪᏢᏒᎢ, ᏓᎦᏘᎴᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᎪᏢᏅᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏗᏂᎦᏘᎴᎩ ᏧᎾᏚᎪᏓᏁᏗᏱ ᎠᏂᏩᏛᏗᏍᎨᏍᏗ. ᎢᏳᏃ ᏂᎬ ᎯᏰᎸ ᎧᎵᏬᎯ ᎨᏎᏍᏗ ᎢᎦ ᎦᏘ, ᎢᎸᎯᏢ ᏄᏓᏓᎸᎾ ᎤᎵᏏᎩ, ᏂᎬ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ ᎢᎦ ᎦᏘ, ᎾᏍᎩᏯ ᎠᏨᏍᏙᏗ ᎣᏍᏛ ᎠᏓᏪᎵᎩᏍᎬ ᎢᎦ ᏥᏣᏘᏍᏓᏁᎰᎢ. ᎠᎧᎵᎢᏍᎩᏂ ᎨᏒ ᎠᎵᏰᎢᎶᎸᎭ, ᎿᏉ ᎾᏍᎩ ᎢᎦᏛᏉ ᎨᏒ ᏛᎵᏛᏔᏂ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᎾᏂᏢᏅᎩ [ᏥᏌ] ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎥᏝ ᏱᏥᏁᎦ ᎾᏍᎩ ᎯᎠ ᎠᏎ ᎢᏣᏛᏁᏗᏱ, ᎠᏂᏐᎢᏍᎩᏂ ᎤᎾᎵᎦᎵᏴᏅ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᎴ ᎠᎩᎪᎵᏰᏗᏱ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏥᎲ ᏄᏠᎾᏍᏛᎾ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏣᏓᎦᎵᏍᏓᏗᏍᏗᏍᎨᏍᏗ ᎯᎠ ᎾᏍᎩ ᏥᏕᏣᏓᏪᏎᎲᎢ. ᎠᎴ ᏫᏚᎪᎲᎩ ᎤᏁᎬ ᏚᎾᏣᏅᏛᎩ ᎠᏂᏔᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᏃᎸᎩ, ᏌᏉ ᎤᎵᏍᏘᏅᎢ, ᏐᎢᏃ ᏚᏜᏌᏔᏅᎢ. ᎢᏗᏫᏍᎪ ᎤᏇᏓᎵ ᎠᏰᎸ ᎠᏫᏒᎯ ᎨᏐᎢ, ᎠᏓᏅᏙ ᎤᏙᏢᏒ ᏗᎴᏙᏗ ᎨᏎᏍᏗ. ᎤᏇᏓᎵ ᎠᏰᎸ ᎡᎭ, ᎠᎴ ᎠᏓᏅᏙ ᎤᏙᏢᏒ ᎡᎭ. ᎠᏂᏫᏅᏃ ᏚᎾᎴᏁ ᎠᎴ ᎤᏂᏣᏄᎳᏁᎢ, ᎤᏂᎾᏫᏛᎲᏃ ᏭᏂᏂᏌᏁᎢ. ᎡᎾᎢ ᎤᎵᏬᏨ ᎠᎪᏍᎪᎢ. ᎾᏍᎩ ᏗᎬᏩᎾᏚᎪᏓᏁᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏂᎥ ᎾᏍᎩ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏂᏚᏳᎯᏛᎾᏍᎩᏂ ᎨᏒ ᎠᏃᎯᏳᎲᏍᎩ. Ꮭ ᏳᏚᎵᏍᎨ ᎤᎾᎵᏛᏙᏗ ᎾᏍᎩᏯ ᎠᏂᏲᏁᎦ ᎢᏳᎾᎵᏍᏙᏗ. ᎾᏍᎩ ᎤᏣᏘ ᎠᏓᎪᎵᏰᏍᎩ ᎠᏂᎩᎵᏲᎬ, ᎤᏣᏘ ᎠᎾᎵᎮᎵᎬ ᎠᎴ ᎤᏣᏘ ᎤᏲ ᏄᎾᏛᎿ ᏕᎬ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎸ ᏄᏂᎨ-ᏳᎿᎥᎾ ᎨᏒᎢ. ᏥᏌᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏬᎸ ᏭᎾᏘᏅᏍᏔᏁᎢ; ᎾᏍᎩᏃ ᏕᎬᏩᎳᏫᎡ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ, ᎠᎴ ᏗᏂᎳᏫᎩ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ. ᎦᏲᏟ ᏓᏥᏃᎮᎵ ᏄᎾᏛᎾᏕᎬ ᎠᏂᏴᏫᏯ ᏍᎩᎾᎾ ᎤᏰᎸᏗ. ᎿᏉᏃ ᏴᏫ ᎦᏁᏄᎵ ᎤᎾᏓᏟᏌᏅ, ᎤᎴᏅᎮ ᎯᎠ ᏄᏪᏎᎢ; ᎤᏂᏲ ᎪᎯ ᏣᏁᎭ; ᎤᏂᏲᎭ ᎤᏰᎸᏛᎢ; ᎠᏎᏃ ᎥᏝ ᎨᏥᎾᏄᎪᏫᏎᏗ ᏱᎨᏎᏍᏗ ᎤᏰᎸᏛᎢ, ᏦᎾ ᎠᏙᎴᎰᏍᎩ ᎤᏤᎵ ᎤᏰᎸᏛ ᎤᏩᏒ. “ᎨᏍᏗ ᏱᏥᎦᏔᎮ ᏧᏪᏥ ᏘᎲᏍᎩ ᎨᏒ,” ᎤᏛᏁ ᏫᎵᎻ ᎠᏍᏆᏂᎪᏍᎩ. ᎿᏉᏃ ᏉᎳ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ ᎨᏆ ᏫᎤᎾᏣᏅ ᏭᏂᎷᏤ ᏆᎩ ᎦᏚᎲ ᏆᎻᏈᎵᏱ. ᏣᏂᏃ ᎤᎾᏓᏓᎴᏓᏁᎸ ᏥᎷᏏᎵᎻ ᏫᎤᎶᏎᎢ. ᎤᏕᏘᏴᏌᏗᏒ ᏯᏂᎷᎬᎾ ᎠᏂᏲᏍᎩ, ᎠᏂRidge ᎤᎾᏓᏓᏍᎬ ᎤᎾᎴᏅᎮ ᏓᏂᎯᏯᏍᎬ ᏧᎾᏁᏍᎨᏛ ᏗᏍᏙᏍᏗ, ᏗᎦᏐᏍᏙᏗ ᏥᏳ, ᏚᎾᏓᎾᏅ ᏃᎴ ᏗᏦᎣᏍᏙᏗ, ᏭᏕᎵᎬ ᎢᏣ ᎠᏁᎨ, ᎦᏲᏟ ᏚᎾᏘᏅᏎ ᎠᏂᎱᏣ ᏚᏂᎾᏌᎥ, ᏭᏅᎬᏛ ᎣᎭᏂ ᎤᏁᏅᏍᏗ. ᎾᏍᎩᏃ ᏙᎦᎦᎴᏅᎲ ᎠᎴ ᏥᏳᎯ ᎣᎦᏣᏅ, ᏧᏳᎪᏗ ᏬᎩᏅᏍᏔᏅᎩ ᎪᎣᏏ ᏬᎩᎷᏨᎩ, ᎤᎩᏨᏛᏃ ᎶᏗᏱ, ᎾᎿ Ꮓ ᏫᎣᎨᏅ ᏆᏖᎵ ᏬᎩᎷᏨᎩ. ᏭᏃᏯᏁᏒᎩᏃ ᎡᎵᎩ ᎤᏂᏣᏘ ᎠᏂᏙᎾᎥᎢ, ᎾᏍᎩ ᎠᏂᏧᏏ ᎠᏂᏅᏫᏍᏗᏍᎬᎩ; ᎡᎵᎩᏃ ᎤᏕᎸᏅ ᎤᏬᏰᏂ ᎤᏚᎵᏍᎬᎩ ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬᎢ ᏧᏬᏁᏙᏗᏱ ᏴᏫ. “ᎠᏎᏃ ᏗᎦᏃᏣᏟ ᎢᎩᎷᏥᏏ, ᎠᎳᏂ---ᎤᏍᏆᏂᎩᏗ ᏗᎦᏃᏣᏟ. ᎾᏍᎩ [ᏥᏌ ᎦᎶᏁᏛ] ᎡᏥᎪᎥᎯ ᏂᎨᏒᎾ ᎢᎡᏥᎨᏳᎭ; ᎠᎴ ᎾᏍᎩ ᎪᎯ ᎨᏒ ᏁᏥᎪᏩᏘᏍᎬᎾ, ᎠᏎᏃ ᎡᏦᎯᏳᎲᏍᎬᎢ ᎡᏣᎵᎮᎵᎦ ᎢᏨᏗᎭ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎦᏃᎮᏗ ᏂᎨᏒᎾ ᎠᎴ ᎦᎸᏉᏔᏅᎯ; ᎾᏍᎩᏃ ᎤᏩᏒᎯ ᏄᏩᏓᎴᎢ ᎤᏃᏴᎬᎢ ᎦᏃᎸᏍᎬᎢ ᎾᎿᏃ ᎤᏪᏙᏅ ᎠᎴ ᎤᏣᏘ ᏚᏪᏁᏔᏅ, ᎠᏂᎪᎢ ᎤᎾᏤᎵᎪᎯ ᏭᎷᏨᎩ. ᎢᏳᏰᏃ ᎾᏍᎩ ᎤᏲᎱᏒ ᏗᏓᏤᎵᏛ ᎢᏰᎬᏁᎸᎯ ᎨᏎᏍᏗ, ᎾᏍᏉᏍᎩᏂ ᏚᎴᎯᏌᏅ ᏗᏓᏤᎵᏛ ᎢᏰᎬᏁᏗ ᎨᏎᏍᏗ. ”ᏙᎢᏳᏍᏗ ᏍᎩᎾᏂ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ, ᎤᏲ ᎤᏓᏅᏘ. ᏚᎵᏖᎸᏁ ᏚᏄᏌᏛ ᏧᏍᏆᏴᏍᏗ. ᎠᏴᏰᏃ ᏦᏤᎭ ᏂᎪᎯᎸᏉ ᏦᎩᏲᎱᏏᏕᎾ ᏥᏌ ᎣᎩᏍᏛᏗᏍᎬᎢ, ᎾᏍᎩ ᎬᏅ ᎾᏍᏉ ᏥᏌ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏴ ᎠᏲᎱᏍᎩ ᎣᎩᏇᏓᎸᎢ. ᏙᏱᏨ ᎤᏪᏓᏍᏗ ᎤᏴᏣ ᏃᎴ ᎦᏓᏁ ᎨᏎᎢ. ᎤᏣᏘᏃ ᏓᏆᏠᏱᎸᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎩᎶ ᎬᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒ ᏰᎵ ᎬᏩᏍᏚᎢᏍᏗ ᎠᎴ ᎬᏩᎪᎵᏰᏗ ᎨᏒ ᎪᏪᎵ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏗᎬᏩᎧᏃᏗ., ᏙᎢᏳᏍᏗ ᏲᎩᏂᏃᎯᏎᎴ ᎦᏲᏟ ᏧᎾᏓᏟᏴᏗ. ᎠᏴᏍᎩᏂ ᏂᎦᎯᎸ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒ ᎠᎴ ᎧᏃᎮᏛ ᏙᏓᏲᎩᎸᏫᏍᏓᏁᏗ. “ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᎤᎯᏐᏓᏁᎯ. ᎤᏬᎯᏨᏃ ᎾᎿ ᎣᎦᏅᏅ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎤᎷᏨᎩ, ᎡᎩᏩ ᏧᏙᎢᏛ, ᏧᏗᏱ ᏅᏓᏳᎶᏒᎯ. ᎠᎦᏴᎵᎨᏰᏃ ᏥᏓᎴᏗᏍᎪ ᏧᏂᏲᎱᏒᎯ, ᎠᎴ ᏗᏅᏃᏛ ᏥᏂᏕᎬᏁᎰᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᎤᏪᏥ ᏗᏅᏃᏛ ᏂᏕᎬᏁᎰ ᎾᏂᎥ ᎾᏍᎩᏉ ᎡᎳ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎾᏓᏅᏟ ᎠᏁᎲ ᎤᏰᎵᏒᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎾᏍᎩ ᎠᏓᏍᏓᏩᏗᏙᎯ ᎥᏝ ᎠᏛᏲᎱᏏ. ᎠᏎᏃ ᏥᏌ ᎥᏝ ᎠᏛᏲᎱᏏ ᎥᏝ ᏳᏬᏎᎴᎢ, ᎯᎠᏉᏍᎩᏂ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᏥᎷᏨᎭ ᎬᏗᏍᎩ ᎡᎮᏍᏗ ᏯᏇᎵᏒ, ᎦᏙ ᎾᏍᎩ ᏨᏙᏗ. ᎠᏓᏁᎸᏃ ᎤᏂᏴᎸ ᎤᏂᎪᎮ ᎠᏲᏝ ᎠᎴ ᎤᏥ ᎺᎵ, ᎠᎴ ᎡᎳᏗ ᏚᎾᏓᏅᏁᎢ, ᎤᎾᏓᏙᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᎳᏅᏛ ᏚᏂᏍᏚᎢᏒ ᎤᏂᏁᎸᏁ ᏅᎾᎵᏍᎪᎸᏔᏅᎯ, ᎠᏕᎸ-ᏓᎶᏂᏛ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎠᏜ, ᎠᎴ ᎻᎳ. ᎾᎯᏳ ᎤᏑᎵᎪᏨ ᎩᏟ ᎤᏍᎦᏎᏗ ᏂᎦᏪᏍᎬ ᏓᏑᏫᏍᎬᎢ. “ᏫᏗᏯᎷᎦ ᏐᎢ ᎠᎳᏑᎶ. “ᎪᎱᏍᏗ ᏂᎬᏁ, ᎠᏎ ᏍᎩᏥᏄᏍᏙ. ᎤᏂᏁᎫᏰᏃ ᎤᎾᏁᎳᎩ ᏙᏤᎵᏎᎭ ᎣᏏᏳ ᎢᏥᏰᎸᎭ, ᏂᎯ ᎢᏥᎦᏔᎾᎢ ᎨᏒ ᎢᏳᏍᏗ. ᎤᏕᎸ ᎦᎷᏯᏍᏘ ᏣᎵ. ᎾᏃ ᎣᏒ ᎦᏙᎯ ᏧᎳᎨᏯᏛᏤᎢ ᎨᏥᏛᎦ ᎾᏍᎩ ᏄᏠᎾᏍᏛᎾ ᎠᎴ ᎣᏍᏛ ᎨᏒ ᎤᏂᎾᏫ ᎬᏗ ᎠᎾᏛᎬᎦ ᎧᏃᎮᏛ, ᎠᏂᏍᏆᏂᎪᏗᏍᎪᎢ, ᎠᎴ ᎠᏂᎾᏄᎪᏫᏍᎪ ᎤᎦᏔᏔᏅᎯ ᎠᏅᏂᏗᏳ ᎨᏐᎢ. ᎯᎠ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏟᏗᏱ ᏨᏓᎬᏯᎧᎯᏴᎩ, ᎾᏍᎩ ᎣᏍᏛ ᎢᏨᏁᎵᏓᏍᏗᏱ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏃᏒᏅᎢ, ᎠᎴ ᏘᎪᏗᏱ ᏗᎨᎦᏁᎶᏗ ᏕᎦᏚᏩᏗᏒᎢ, ᎾᏍᎩᏯ ᎢᏣᏛᏁᏗᏱ ᎬᏁᏤᎸᎢ; ᎣᎩᏒᎸ. ᎦᏙᏃ ᏓᎦᎵᏍᏙᏓ ᎠᏴ ᎾᏍᎩ ᏥᎾᏆᎵᏍᏓᏏ, ᎾᏍᎩ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᎤᏥ ᏣᎩᎷᏥᏏ? ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎳ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏂᎨᏒᎾ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎤᏕᎵᏛ ᏱᏂᎬᏃ, ᎾᏍᎩ ᎠᏎ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ. ᏙᏉ ᏣᎵᏍᏔᏁᎭ ᏣᏄᏏ? ᏥᏯᎸᏒ. ᏣᏂᏃ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏫᏚᏯᏅᎮ ᏥᏌ ᏤᏙᎲ ᏚᏅᏎ ᎯᎠ ᎾᏄᏪᏎᎢ; ᏂᎯᏍᎪ ᎤᎷᎯᏍᏗ ᏥᎩ? ᏥᎪᎨ ᏅᏩᏓᎴ ᎣᏥᎦᏕᏃᎮᏍᏗ? ᎤᏏᏩ ᎨᏎᎢ. ᎠᎾᏗᏍᎪ ᎠᏂᏳᏩᏁᎦ ᎤᏅᏌ ᎭᎾᏂ. ᏚᏂᎪᎵᏰᎥᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ, ᏗᎦᎳᏫᎢᏍᏗᏱ ᎨᏥᎦᏘᏗᏍᏗ ᎤᎾᏓᏅᏎ ᎯᎠ ᏫᏂᏚᏂᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎢᏳᏃ ᏗᎨᏥᏬᏁᏙᏗ ᎨᏎᏍᏗ ᏴᏫ, ᎢᏥᏁᎩ. ”ᎣᎯᏍᏙᏗ ᎠᎪᏩᏛᏗ ᏔᎵ ᎢᏳᏩᎦᏘ ᏗᏏᎳᏛᏅ ᏱᎩ ᏂᎦᏓ. ᏌᏩᏂ ᏈᏓᏭᏣᏅᎩ, ᎠᎴ ᎪᏱ ᏭᎾᏏᏃᎸᎩ ᎠᎦᏯᎷᏗ ᎠᎧᎵᏬᎯ ᏣᏁᏆ ᎠᏣᏗ, ᏍᎪᎯᏧᏈ ᎯᏍᎩᏍᎪᎯ ᏦᎢᎦᎵ ᎤᏂᎥᎩ. ᎾᏍᎩᏒᎦᏃ ᎾᏂᎥᎩ ᎠᏎᏃ ᎠᎦᏯᎷᏗ ᎥᏝ ᏳᏲᏤᎢ. ᎩᎶ ᏄᏓᎴ ᏱᏥᏔᏲᏏ ᎠᎩᏍᏕᎸᏗ” ᎠᎴ ᏓᏤᎵᏍᏛ ᏚᏂᏄᎪᏤ ᏧᎴᏅᎯ ᏂᎨᏎᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎦᏚᎲ ᎤᏂᏴᎴᎢ, ᎠᎴ ᎤᏂᏣᏖ ᎬᏂᎨᏒ ᏂᏚᎾᏛᏁᎴᎢ. ᎾᎿᏂ ᎥᏝ ᎩᎶ ᎠᎪᎢ ᏱᎩ, ᎠᎴ ᎠᏧᏏ, ᎠᏥᎤᏍᏕᏎᎸᎯ ᎠᎴ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ, ᏅᏩᏓᎴ ᏴᏫ, ᏏᏗᏱ ᎡᎯ, ᎠᏥᎾᏝᎢ ᎠᎴ ᎾᏥᎾᏝᎥᎾ; ᎦᎶᏁᏛᏍᎩᏂ ᏂᎦᎥ ᎪᎱᏍᏗ ᏂᎦᎵᏍᏓ, ᎠᎴ ᏂᎦᏗᏳ ᏗᏯᎢ. “ᎦᎵᎡᎵᎩ ᏥᎬᎪᏩᏔ. ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᏁᏨᎩ ᏗᏐᏴ ᏩᏥᏴᏙᏗᏱ, ᎠᎴ ᎠᏥᎵᎥᏂᎲ ᎠᏥᎪᎵᏰᏗᏱ, ᎤᏚᎵᏍᎬᎩ ᎤᏙᎴᎰᎯᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᎦᎥ ᎠᏁᎷᎲᏍᎬ ᎬᏩᏡᏗᏍᎬᎢ. ᎯᎠ ᎠᏂᏣᎳᎩ ᏧᎾᏛᏓᏍᏓᏁᎢ ᏃᎴ ᏧᎾᎾᎾᏖᎢ ᏍᎩᎾ ᏗᎧᏃᎩᏓ ᎯᎪᎢᎦ. ᏭᏢᏁᎢ ᏫᎵᎻ ᎠᏓᏅᏖᏍᎨ ᎢᏳᏛᏁᏗ. ᎤᏓᏅᏪᎥ ᎠᎩᏍᏙᎯ ᎤᏩᏌ, ᏓᏴᏈᏛ ᏗᎬᎯᏓ. ᏧᎦᏌᏬᎸ ᏚᎧᎵᏤ ᏗᎦᏙᎵ. ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᎦᎷᏨᎭ ᎤᏩᏛᎲᎭ ᎾᏍᎩ ᎾᏛᏁᎲᎢ. ᎠᏂᏧᏏᏃ ᎾᏍᏉ ᎤᏂᏍᏓᏱᏛᎩ, ᎤᏙᎯᏳᎯ ᎾᏍᎩ ᏄᏍᏗ, ᎤᎾᏛᏅᎩ. ᎭᏟᏂᎬᏁᎸᎭ ᎠᏂ ᏣᎷᎯᏍᏗᏱ ᎠᏏᏉ ᎪᎳ ᏂᎨᏒᎾ. ᏳᏇᎳ ᏫᏣᏲᎵᎦ, ᎠᎴ ᎾᏍᏉ ᏇᏗᏂ, ᎠᎴ ᎳᎾᏏ, ᎠᎴ ᏠᏗᏯ, ᎠᎴ ᎾᏂᎥ ᎠᎾᎵᏅᏟ. ᎠᏫᏃ ᎤᏂᏃᏕᎾ ᎠᎦᏘᏏ ᎢᏗᏢ ᏙᏓᎦᎪᏔᏂ, ᎠᏫᏃ ᏗᏂᎭᏄᎸᎯ ᎠᎦᏍᎦᏂ ᎢᏗᏢ; ᏂᎦᏓ ᏃᏉ ᎯᏥᏧᏣ! ᏂᎯᏍᎪ ᎦᎶᏁᏛ? ᏍᎩᏃᎲᏏ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏳᏃ ᏱᏨᏃᏁᎸ ᎥᏝ ᏴᎨᏦᎯᏳᎲᎦ; ᎩᎶ ᎤᏍᎦᏅᏨ ᏕᏥᏲᏍᎨᏍᏗ ᏗᏲᏒᎯ ᎨᏎᏍᏗ, ᎩᎶᏃ ᎤᏍᎦᏅᏨ ᏕᏥᏂᏱᏍᎨᏍᏗ ᏗᎦᏂᏴᏗ ᎨᏎᏍᏗ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᏰᎯ ᏫᏯᏅ, ᎠᏂᏃ ᎢᏍᏗᎷᏨᎭ. ᎠᎴ ᎾᏍᎩ ᎠᏰᎸ ᏤᎯ ᎾᏍᎩ ᎡᏍᎦ ᎢᏴᏛ ᎢᏗᎦᎸᏉᏗ ᎢᎩᏰᎸᏒ, ᎾᏍᎩ ᎤᏟ ᎢᏗᎦᎸᏉᏗ ᏂᏕᏛᏁᎰᎢ; ᎠᎴ ᏄᏬᏚᏒᎾ ᎨᏒ ᏂᎦᏛᏅᎢ ᎾᏍᎩ ᎤᏟ ᎤᏬᏚᎯᏳ ᏂᎦᎵᏍᏗᏍᎪᎢ; ᎯᎠᏃ ᎾᏍᎩ ᎢᏥᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᎢᏳ ᎦᏁᎳ ᏯᎦᏔᎮ ᎢᏳᏟᎶᏛ ᎠᎵᏰᎢᎵᏒ ᏗᎦᎷᏥᏒ ᎦᏃᏍᎩᏍᎩ, ᏳᏯᏫᏎᎢ, ᎠᎴ ᎥᏝ ᏩᎩᏴᏏ ᎠᏓᏁᎸ ᏱᎬᏪᎵᏎᎢ. ᏣᏂ ᏥᏓᏓᏬᏍᎬᎩ, ᎦᎸᎳᏍᎪ ᏧᏓᎴᏁᎢ, ᏴᏫᏉᎨ ᎠᏁᎲᎢ? ᏍᎩᏃᎲᏏ. ᎢᏳᏃ ᎠᏩᏛ ᎠᏃᎭᏢᎥᏍᎪᎢ ᎠᎵᎮᎵᎪᎢ. ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ. ᏥᎪᏃ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎨᏒ ᎠᎩᎯᎯᏉ ᏄᎵᏍᏔᏁᎢ? ᎬᏩᏟᏍᏗ. ᎠᏍᎦᏂᏍᎩᏂ, ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᏄᏍᏛ ᎠᏍᎦᏂ, ᏚᎸᏫᏍᏓᏁᎲᎩ ᎠᎩᎯᏍᏗᏱ ᎬᏗᏍᎬᎩ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏍᎦᏂ ᎤᎵᏁᏨ ᎢᏳᏩᏂᏌᏛ ᎤᏣᏘ ᎠᏍᎦᎾᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎤᎪᎵᏰᏍᎨ ᎠᏍᎩᎾ. ᎾᏍᎩᏃ ᎢᎪᎯᏛ ᎥᏝ ᎪᎱᏍᏗ ᏳᏎᎢ ᎾᏍᎩᏃ ᎤᎵᏍᏆᏛ ᎩᎳ ᎤᏲᏏᏌᏁᎢ. ᎯᎠ ᎪᏪᎵ ᎧᏃᎮᎭ ᏧᏁᏢᏔᏅᏒ ᏥᏌ ᎦᎶᏁᏛ, ᏕᏫ ᎤᏪᏥ, ᎡᏆᎭᎻ ᎤᏪᏥ. ᎠᎴ ᎠᎨᏴ ᎡᎳᏩᏱ ᎠᏕᎶᏆᏍᎨᏍᏗ ᎤᏣᏘ ᎤᏬᎯᏳᎯᏳ ᎨᏎᏍᏗ. ᏭᎾᎵᏍᏔᏅᏃ ᎤᎾᏓᏛᏛᏁᎢ; ᎠᏂᏍᎪ ᎤᏬᎳ ᏌᏩᏂ ᏈᏓ ᏑᏙᎢᏛ, ᎤᎾᏛᏁᎢ. ᎠᏰᎵ ᎢᏳᏥᎶᏛ ᎨᏰ ᎢᏴ ᎨᏴ ᏙᏥᎧᎯᏴ ᏐᏈᎵ, ᎡᏝᏪᎯ ᏬᎩᎾᎷᏒ ᎤᎭᎨᏛ ᎦᎳᎨᏴ ᏧᏯᏛᎯ ᏧᏆᎶᎦ. ᏂᎦᏓ ᏓᏋᏔᏅ ᏄᏓᎴᏒ ᎢᎦᏪᏍᏗ ᏲᎾ ᏥᏯᏙᎴᏇᎸ ᏃᎴ ᎦᏥᏯᏙᎴᏇᎸ ᏧᏂᏲᎰᏒ ᏳᏩᏁᎦ ᏗᏃᏪᎵᏍᎩ ᏗᏥᎸᏉᏔᏅ ᏃᎴ ᏰᎵ ᏧᏙᏓᏆᏓ ᎦᏥᏯᏕᏙᏛ ᏗᏟᏰᎵᏓᏍᏘ ᎦᏙ ᏚᏂᏂᏴᏛ ᎠᎾᏓᏒᎯᎲ ᏃᎴ ᎤᎾᏤᎵᎪ ᎠᏥᎶᎥ ᏃᎴ ᎢᏳᏍᏘ ᎤᏤᎵ ᏩᎦ ᎤᏲᏍᏔᏅ ᎠᏐᎭᏴᎢ. ᎡᎳᏆᏗ ᎤᏬᏰᏂ ᎦᎵ ᏭᎩᏎ ᎧᏁᏍᎦ ᎦᎸᎳᏗ ᎢᏣ ᏭᏗᏅᏎ ᏃᎴ ᏍᏓᏯ ᎤᏪᎷᏁᎢ. ᏂᏓᏂᎵ ᎤᏅᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ; ᏂᎯ ᏣᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ. ᎦᏅᎬᏃ ᎾᎥ ᎤᎴᏁ, ᎠᎴ ᎤᏍᎦᏤ ᎤᏗᎴᎲᏍᎬᎢ, ᎤᏙᎣᎴᏃ ᎤᏗᎴᎲᏍᎬᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏗᏛᎮ, ᎠᎴ ᏚᏍᏕᎸᎪᏙᎴᎢ. ᎤᏣᏘᏰᏃ ᏥᏕᎦᎯᏞᏫᏒ ᏌᏉ ᎠᏰᎸ ᎨᏒᎢ, ᎠᎴ ᎾᎦᏛ ᏕᎦᎯᏞᏫᏒ ᎤᏠᏱ ᏂᎨᏒᎾ ᏥᎩ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎨᏒᎢ; “ᎭᎳᏑᏢᎩ! ᎭᎳᏑᏢᎩ!” ᎤᏃᏎᎴ ᏩᎭᏯ. ”ᎦᎵᎡᎵᎦ ᏳᏣᎩᏒᎾ ᏥᎨᏎ ᎠᏓᎯ,” ᎤᏛᏁ. ᎠᏂᎨᏯ ᎤᎵᏗᏨ ᏚᎾᏁᎢ. ᎿᏉᏃ ᎤᎬᏫᏳᎯ ᎯᎠ ᏂᏚᏪᏎᎴ ᎨᏥᏅᏏᏓᏍᏗ; ᎡᏣᎸᏣ ᏧᏪᏰᏂ ᎠᎴ ᏧᎳᏏᏕᏂ; ᎠᎴ ᎡᏥᎾᏫᏛ, ᎠᎴ ᎥᏙᏱᏗᏢ ᏧᎵᏏᎬ ᏪᏣᏓᎤᎦ. ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᎡᏥᏲᎭ, ᎾᏍᎩ ᏣᎦᏛᎥᏍᎬᎩ; ᏚᎴᎯᏌᏅ; ᎥᏝ ᎠᏂ ᏱᎦᏅ; ᏗᏣᎧᏅᎦ Ꭰ ᎤᏂᏅᏅᎢ. “ᎤᏙᎯᏳᎩ?” ᎤᏛᏁ ᏫᎵᎻ. “ᎭᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ”ᏙᎢᏳᏍᏗ ᎤᏦᎢᏎᏗ?” ᎤᏛᏛᏁ ᎰᎻ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏕᏥᏯᎵᏂᏆᏅᏁᎭ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᏥᏌ ᎦᎶᏁᏛ ᎤᏙᏓ, ᎠᏆᎵᏍᏗ ᎠᏆᏦᎣᎯᏍᏗ ᎧᏁᏌᎢ. ᎢᏳᏉ ᏫᏛᏂᎸᏂ ᏫᎵᎻ ᎧᏁᏌᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒ ᎠᎴ ᎩᎬ ᎥᏝ ᎤᎾᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ; ᎥᏝ ᎠᎴ ᎠᏲᎩ ᎨᏒ ᎤᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᎠᏲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏚᏂᏖᎸᏁᏃ ᎤᏂᏣᏘ ᏴᏫ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎤᏂᏃᎴᏃ ᎠᎴ ᎤᏂᏂᏴᎮ ᎠᎴ ᏕᎦᎳᏫᎥ ᎤᎾᏘᏃᎴᎢ. ᏛᎦ ᎠᏓᎾᏏᏂᏎᎢ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ, ᏭᏟᏫᏛ, ᏌᎳᏓ ᏚᏏᎳᏛ ᏭᏩᏯᎸᏥᎴ. ᏗᏍᎩᏯᏓᏂᎸᎩ; ᎥᏝ ᎩᎶ ᎤᏣᏘᏂ ᏱᏃᏨᏁᎸ, ᎥᏝ ᎩᎶ ᎠᏍᎦᎾ ᏱᏃᏨᏁᎸ, ᎥᏝ ᎩᎶ ᏲᏥᎶᏄᎡᎸ. ᏴᏫ ᎢᏳᏍᏗ ᎠᎩᏃᎮᎸ, ᎣᎯᏍᏙᏗ ᎧᏁᎢᏍᏗ ᎠᏋᏔᏅ, ᎩᎳ ᏣᎾᏛᎩᏍᎪ ᎠᎩᏃᎮᎸ. ᎩᎳ ᎤᏕᎶᎰᏎ ᎤᏂᎩᏏᏗᏒ, ᎡᏆ ᎠᏣᏗ ᏄᎵᏍᏔᏁ ᏃᎴ ᎨᏍᏗ ᏯᏍᎦᎢᎮ. ᎧᏁᎬ ᎤᎶᏐᏅ ᎤᏩᏒᏉ ᎠᏥᏩᏛᎮ ᏥᏌ. ᎡᎳᏪᏱᏉᏃ ᎤᏅᏎᎢ, ᎠᎴ ᎥᏝ ᎩᎶ ᏳᏂᏃᏁᎴ ᎾᎯᏳ ᎨᏒ ᏄᏍᏛ ᎤᏂᎪᎲᎢ. ᎤᏂᏁᎦᎳᎩᏍᏗ ᎤᏂᏁᎦᎸ, ᎤᏅᎨᏫᏍᏗ ᎤᎾᏅᏛ, ᎤᎾᏓᏅᏍᏗ. ᎠᎴ ᎤᏂᏣᏛᎩ ᎬᏬᎯᏳᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᎶᏁᏛ ᎦᎷᏨᎭ, ᏥᎪᎤᏟ ᎢᎦᎢ ᎤᏍᏆᏂᎪᏗ ᏙᏓᏳᎸᏫᏍᏓᏁᎵ, ᎡᏍᎦᏉ ᎯᎠ ᎾᏍᎩ ᏥᏚᎸᏫᏍᏓᏁᎸ? ”ᏰᎵ ᎤᎵᏍᎨᏓ ᎪᎱᏍᏗ,” ᎤᏛᏁ. ᎠᎴ ᎯᎠ ᏥᏂᏓᏂᏪᏎᎰᎢ; ᎠᏤᎷᎩ ᎣᎬᏔᏅ ᏕᏨᏃᎩᎡᎸ, ᎠᏎᏃ ᎥᏝ ᏱᏣᎵᏍᎩᏒ; ᏙᏥᏴᎬᎩ ᎢᏣᏛᎪᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏗᏣᏠᏱᎸ. “ᎨᏍᏗ ᎤᏩᏌ ᎤᏓᏅᏖᎸ ᏱᎩ ᎤᏍᏗᎩ ᎤᏕᏅ ᏣᎨ? ᏧᎦᏴᎵᎨᏃ ᎬᏩᎪᎲ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎤᏥᏃ ᎯᎠ ᏄᏪᏎᎴᎢ ᎠᏇᏥ, ᎦᏙᏃ ᏅᏍᎩᎾᏛᏂᏏᏉ? ᏣᏙᏓ ᎢᏍᏛᏲᎲᎩ ᎤᏪᎵᎯᏍᏗ ᎣᎩᎾᏓᏅᏔᏩᏕᎬᎩ. ᏂᎯᏍᎩᏂ ᎥᏞᏍᏗ ᎾᏍᎩ ᏱᏂᏨᏁᏍᏗ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏂᎯ ᏂᏣᏛᏅ ᎤᏟ ᎢᏯᏥᎸᏉᏗ; ᎾᏍᎩ ᎠᏫᎾᎨ ᎾᏍᎩᏯ ᎨᏎᏍᏗ; ᎾᏍᎩᏯ Ꮎ ᏄᎬᏫᏳᏌᏕᎩ ᏗᏍᏕᎸᎯᏙᎯ ᎾᏍᎩᏯ ᎨᏎᏍᏗ. ”ᏱᎦᎵᎡᎵᎩ ᎬᏍᏕᎸᏗ.” ᎠᎬᏱ ᏑᎾᎴ ᎤᏰᏤ ᎤᏃᎴ. ᏌᏊ ᏥᏗᏩᏗ ᎠᎳᏑᎶᎢ. ᎪᎩᏅᏍᏓᏕᎰᎢ ᏦᏥᏬᏁᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎦᎨᏥᏍᏕᎸᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎤᏂᎧᎵᎢᏍᏗᏱ ᏂᎪᎯᎸ ᎤᏂᏍᎦᏅᏨᎢ; ᎤᏔᎳᏬᎯᏍᏗᏍᎩᏂ ᎨᏒ ᏩᏍᏛ ᎢᏴᏛ ᎤᏂᎷᏤᎸ. ᎿᏉᏃ ᏚᏒᏁᎸ ᏗᏂᎦᏙᎵ, ᎯᎠ ᏄᏪᏒᎩ; ᏄᏍᏛ ᎢᏍᏙᎯᏳᎲᏍᎬ ᎾᏍᎩᏯ ᏂᏍᏓᎵᏍᏓᏏ. ᎠᏂᏫᏅ ᎾᏍᏉ ᏕᎯᏁᏤᎮᏍᏗ ᎤᎾᎵᏏᎾᎯᏍᏗ ᎢᏳᎾᎵᏍᏙᏗᏱ. ᎤᏛᎦᏅᏃ ᎤᏢᎬᎢ, ᎾᎿ ᎡᏙᎲᎢ ᎠᏏᏔᎵ ᏅᎤᏙᏓᏋᎩ. ᏔᎵᏁ ᏗᎦᏁᎲ ᎠᎹ ᏭᎷᏤ ᎤᏍᏗ ᎠᏣᏗ, ᏃᏗ ᎤᏛᎦᏁ ᏏᏲ ᎠᏗᏍᎬ. “ᏭᏲᎢᏴ ᏫᏣᎩᏍᏔᏁ,” ᎤᏛᏁ ᏫᎵᎻ. ᎢᏴᏛᎭᏰᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎷᏥᎯᎲᎩ ᎠᏓᏬᏍᏗᏱ, ᎠᎴ ᎠᏖᎸᎲᏍᎬᎩ ᎠᎹ, ᎩᎶᏃ ᎾᏍᎩ ᏧᏌᎴᏅᏔᏅᎯ ᎤᏚᏅᎯ ᎿᏉ ᎠᏖᎸᏅᎯ ᏥᎨᏐ ᎠᎹ, ᎤᏗᏩᏍᎬᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎥᏳᎩ ᎤᏱᎵᏙᎲᎢ. ᎠᎴ ᎿᏉ ᏂᎪᎯᎸ ᎠᎦᏘᏯ ᎬᏂ ᎬᏩᏍᎦᎩ ᏧᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎨᎬᏁᎸᎭ. ᎣᏂᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᏔᎵᏁ ᏧᏗᏱ ᏫᏗᎶᎯ. ᎠᎴᏫᏍᏘᏍᎨ ᎠᏔᏍᎩᏍᎬ ᎠᎴ ᎠᏓᏅᏫᏍᎨ. ᏗᎨᏥᎾᏌᎢ ᎨᏥᏅᏙᏔᏁᎢ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏥᏌᏃ ᎾᏍᎩ ᏚᎧᎿᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᎨᏒ ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎨᏒ ᎥᏝ; ᎤᏁᎳᏅᎯᏰᏃ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᎬᏛᏁᏗ. ᎪᏫ ᎤᏓᏅᏒ ᏗᎦᎳᏫᎩ ᏬᎩᏂᏲᎯᏍᏔᏅ ᎣᏍᏗᏃᎮᏍᎬ ᎢᏯᏛᏁᎵᏓᏍᏗ, ᏧᏓᎴᏅᏓᏉ ᏬᎩᏂᏃᎮᎸ, ᎤᏛᏐᏅ ᎠᎾ ᎠᏫᎾᎨᏍᏗ. Van Buren ᎤᏍᏓᏩᏛᏎ ᏤᎩᏏᏂ ᎠᏰᎵᏒ ᎠᏂᏴᏫᏯ ᏧᎾᎳᏏᏙᏗ, ᎾᏍᎩᏯ ᎠᏓᏬᏍᎩ ᏧᏂᏱᏍᎪ ᎦᎾᎱᎩᏍᎬ. ᎠᏓᎨᏳᏗ ᎨᏒ ᎥᏝ ᎤᏲ ᏱᏄᏩᏁᎰ ᎾᎥ ᎢᏳᎾᏓᎳ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎧᎵᎢᎭ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬᎢ. ᎩᎶᏍᎩᏂ ᎤᏣᏘᏂ ᎢᏯᏛᏁᎯ ᎠᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᏣᏘᏂ ᏄᏛᏁᎸᎢ; ᎥᏝᏃ ᎩᎶ ᎠᏥᎸᏉᏙᏗ ᏱᎨᏎᏍᏗ. ᎠᏲᎵᎮᎢ, ᎭᎾᏉ ᎦᏙᎨ ᎤᎦᏙᏍᏕ ᏭᏕᎵᎬ ᏩᏕᏲᎲᎢ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎢ. ᎢᏳᏃ ᎠᏍᎦᏯ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏯᏥᏅᏍᏕᏎᎭ, ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎼᏏ ᎤᏤᎵ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏥᎪ ᎢᏍᎩᏍᎦᎦ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏍᎦᏯ ᏂᎬ ᎠᏰᎸ ᏥᏥᏅᏩᏅ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ? ᏂᎦᏛ ᎠᏂ ᏃᎦᏛᏅᎢ ᏫᎨᏣᏲᎵᎦ. ᏕᎯᏲᎵᎸᎭ ᎾᏍᎩ Ꮎ ᎨᎩᎨᏳᎯ ᎪᎯᏳᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ. ᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᏍᎦᏯ, ᎯᎠ ᎾᏍᎩ ᎠᎹ ᏍᎩᏁᎲᏏ, ᏞᏍᏗᏃ ᎠᎩᏔᏕᎦᏅᎩ, ᎠᎴ ᏞᏍᏗ ᎠᏂ ᎠᎩᏢᎯᎸᎩ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᎵᏗ ᏧᏙ-Ꮫ, ᎩᎦᎨ ᏗᏄᏬ ᎦᏃᏗᏍᎩ, ᏓᏱᏓᎵ ᎦᏚᎲ ᎡᎯ, ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏔᏁᎯ, ᎤᏛᏓᏍᏔᏅᎩ. ᎾᏍᎩ ᎤᎾᏫᏱ ᎤᎬᏫᏳᎯ ᎤᏍᏚᎢᏒᎩ, ᎤᏛᏓᏍᏙᏗᏱ ᏉᎳ ᎧᏁᎬᎢ. ᎠᏎᏃ ᏂᎯ ᎡᏣᏓᏱᎸᎩ ᎾᏍᎩ ᎾᏯᎦᏅᎾ ᎠᎴ ᎤᏓᏅᏘ, ᎢᏥᏔᏲᎸᎩᏃ ᎤᏓᎸᎯ ᎡᏥᎧᏁᏗᏱ ᏯᎩᏂᎬᎦᏰᏃ. ᎠᎴ ᎤᏲᎴ ᏥᏌ ᎤᎪᏩᏛᏗᏱ, ᎾᏍᎩ ᏄᏍᏛᎢ; ᎠᏎᏃ ᎤᏄᎸᏁ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᏣᏘ ᎨᏒᎢ, ᎤᏍᏗᎩᏳᏰᏃ ᎨᏎᎢ. ᏰᎵ ᏧᏙᏓᏆᏓ ᏃᎴ ᏧᏒᎯᏓ ᏧᎶᏐᏅ ᏰᎵ ᎢᏯᏂ ᎠᏂᏤ ᏧᎵᎢ ᏚᎾᏦᏎᎢ ᎠᏂᎩᏍᎬ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏂᎪᎯᎸ ᎤᏁᎳᏅᎯ ᎦᎸᏉᏙᏗ ᎨᏒ ᎢᏓᎵᏍᎪᎸᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏕᎩᎭᎦᎸ ᏧᎾᏄᎪᏫᏒᎯ ᎢᏓᎵᏍᎪᎸᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏕᏅᏙᎥ ᎬᏂᎨᏒ ᏂᏛᏁᎲ ᎡᏓᎵᎡᎵᏤᎲᎢ. ᏗᏄᎪᏗᏍᎩ ᏗᏂᏅ ᏧᏓᎾᏫᏛᎮ ᏣᏄᏏ ᏃᎴ ᎱᎵᏛᏓᏁᎢ. ᏴᏫ ᎤᏪᏥ ᎠᎢ ᏄᏍᏛ ᎪᏪᎵ ᎠᏥᏃᎮᏍᎬᎢ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏫ ᎤᏪᏥ ᎠᏡᏗᏍᎩ. ᎣᏏᏳ ᏱᎨᏎ ᎾᏍᎩ ᎠᏍᎦᏯ ᏄᏕᏅᎾᏉ ᏱᎨᏎᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏲᎵ ᎤᏙᏓ ᎤᏪᎷᏁᎢ, ᎠᎴ ᏗᎬᎦᏌᏬᎢᎯ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎪᎢᏳᎲᏍᎦ; ᏍᎩᏍᏕᎸᏏ ᎾᏉᎯᏳᏒᎾ ᎨᏒᎢ. ᎣᏂᏃ ᏥᏌ ᎾᏍᎩ ᎤᏩᏓᎲᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎡᏣᏅᏩᏅ; ᏞᏍᏗ ᎿᏉ ᎢᎸᎯᏳ ᏱᏣᏍᎦᏅᏤᏍᏗ, ᎤᏟᏰᏃ ᎢᏳᏲ ᏱᏣᎷᏥᏏ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎤᏂᏁᏨᎩ, ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᏝᏍᎪ ᏚᏳᎪᏛ ᏲᏥᏁᎦ, ᏌᎺᎵᏱ ᎮᎯ ᎠᎴ ᎠᏍᎩᎾ ᏣᏯᎢ, ᏥᏨᏲᏎᎭ? ᏐᏉ ᏔᎵ ᏩᏍᏗ, ᎤᏢᏗ ᎤᏓᏅᏖᎴᎢ. ᎾᎯᏳ ᏥᏌᎤᎵᎮᎵᏤ ᎤᏓᏅᏙᎩᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏯᎵᎡᎵᏤᎭ ᎡᏙᏓ ᏣᎬᏫᏳᎯ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ, ᎾᏍᎩ ᎯᎠ ᏥᏕᎲᏍᎦᎳᏁᎸ ᎠᏂᏏᎾᏌᏂ ᎠᎴ ᎠᏁᏯᏔᎯ, ᏗᏂᏲᎵᏃ ᏥᏕᎯᎾᏄᎪᏫᏎᎸ; ᎥᎥ, ᎡᏙᏓ; ᎾᏍᎩᏰᏃ ᎤᏏᏳ ᏣᏰᎸᏅᎯ. ᏧᎦᏃᏮ ᎢᏣ ᏫᏚᎧᎾᏅ ᏣᎵ, ᏧᏟᏴᎦᏕᏩᏓ ᎬᏂᎨ ᎤᏍᎪᎸ ᏚᏅᏓᏎ ᎡᎶᎯ ᎢᏳᏓᏅᎯᏓ. “ᎠᏯ ᏍᏉ,” ᎤᏛᏁ ᎠᎵᏰᎾ. ᎠᎴ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎩᎶᏂᏗᏥᏲᏕᏍᏗᏍᎬᎾ ᎢᎨᏎᏍᏗ. ᎥᏝ ᎠᎴ ᎤᏚᎸᏗ ᏱᏄᎵᏍᏓᏁᎮ ᎩᎶ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᏄᏍᏛ ᏴᏫ, ᎠᎦᏔᎲᎩᏰᏃ ᏄᏍᏛ ᎭᏫᏂ ᎤᏪᎲ ᏴᏫ. ᎢᎦᏛᏃ ᎠᏄᎦᎸᎯ ᎤᎳᎨᏯᏛᏤᎢ; ᎠᏄᎦᎸᏃ ᎢᏧᎳᎭ ᏗᎤᏛᏎᎢ, ᎠᎴ ᎤᏁᏄᎳᏍᏔᏁᎢ. ᏣᏉ. ᏣᎵ ᎨᏍᏗ ᏗᏟ ᏱᎩ. ᎠᏎᏉ, ᎤᎸᏛ ᎡᏙᎰ ᏃᎴ ᎧᎾᏥᏍᏕᏥ ᏃᎴ ᏩᏚᎵᏏ ᎫᏩᏨᏯᏍᎪ ᏃᎴ ᏩᎶᏏ ᏃᎴ ᎢᎾᏓ ᏕᎦᏃᎯᎰ ᏗᏓᏁᎸ ᏃᎴ ᎢᏳᏍᏗᏉ ᎠᎡᏂᎲ ᎠᏲᏍᏗᏍᎪ. ᏙᏰ ᏕᎦᏅᏙᎬ ᎠᏰᎳᏍᏗ ᏗᎦᏅᎯᏓ ᎾᎥᏂᎨ ᏂᏚᏍᏛ, ᎠᏯᏖᏅ ᎠᎫᏰᎸᏍᏗ. ᏂᎦᏓ ᎾᏂᏪᏍᎨᎢ, ᎨᏍᏗ ᎯᎸᎢᏴ ᎤᏂᎪᎲ ᏱᎨᏎ ᏍᎩᎾᎾ ᎢᏳᏍᏆᏂᎩᏗ ᏏᏆ. ᎠᏎᏃ ᎤᎵᏏᏂᏗ ᎤᏪᏅᏎ ᎤᏲ ᎤᎾᏗᏅᏗ. ᎪᎯᎢᏴ ᎱᎷᏤ ᎠᎦᎸᏓ ᎤᏥᎸ ᎠᎿᏬ ᎤᏃᎴ. ᎠᎩᏁᎢᏍᏔᏅ ᎠᎦᎸᏥ ᎠᏆᏙᎴᏋ, ᎦᏬᏂᏍᏗ ᎠᏙᎴᏆᏍᏙᏗ ᏃᎴ ᎢᏗᎦᏪᏍᏗ ᎧᏃᎮᏍᎩ ᏗᎬᏗ. ᏍᎦᏫᏍᏗ ᎠᎦᎸᏥ ᎪᏪᎵ ᎠᏆᏚᎵᏍᎬ ᏗᎩᎪᎵᏰᏗ, ᎾᏍᎩᏂ Rousseau's Meditations of a Solitary Walker ᏃᎴ Abbé Prévost's Manon Lescaut, ᎢᏧᎳ ᎠᏆᏟᏂᎬᏁᎸ ᏚᎵᎬᏩᏢ, ᎭᏉ ᎠᎩᎾᎩᏛ ᎠᎩᏰᎸᏅ Voltaire. ᎾᏍᎩᏃ ᎤᏇᏓᎵ ᏄᏍᏛ ᏕᎤᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒᎢᏳ; ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ-ᎠᏓᏲᏁᏗ ᎨᏒᎢ, ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎦᏓᎭ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏁᎫᏥᏛ ᎨᏒᎢ, ᎢᏳᏃ ᏰᎵ ᏂᎨᏒᎾ ᏱᎩ, ᎠᏏ ᏐᎢ ᎢᏅᎯᏳ ᏨᎢᏐᎢ, ᏕᎦᏅᏍᎪ ᏧᏅᏏᏛ ᎠᏔᏲᎯᎰ ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ. ”Ꭾ ᏧᏍᏆᏴᏍᏗ?” ᏭᏛᏁ. ᏣᏉᎩ ᎪᎰᏍᏗ ᏱᏂᏓᎦᎵᏍᏔᏂ. ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᎦᎾᏏᏍᎩ ᏂᎨᏒᎾ, ᏗᏓᏛᏂᎯ ᏂᎨᏒᎾ, ᏧᎬᏩᎶᏗ ᎤᎬᎥᏍᎩ ᏂᎨᏒᎾ, ᎤᏓᏅᏘᏍᎩᏂ, ᏧᏘᏲᏌᏘ ᏂᎨᏒᎾ, ᎠᏕᎸ ᏧᎨᏳᎯ ᏂᎨᏒᎾ. ᎨᏍᏗ ᎣᏍᏓ ᎦᏰᎵᏍᏗ ᏱᎨᏎᎢ ᎤᏍᏗ ᎠᎨᏳᏣ ᏓᏍᏆᏂᎪᏍᎬ ᏗᎦᎾᏌᎢ. ᎿᏉᏃ ᎢᏨᏁᏤᎭ, ᎢᏓᎵᏅᏟ, ᎣᏨᏗᎭ ᏚᏙᎥ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᏗᏣᏓᏓᎴᏓᏁᏗᏱ ᎾᏂᎥ ᎠᎾᎵᏅᏟ ᎤᏣᏘᏂ ᎢᏯᎾᏛᏁᎵᏙᎯ, ᎠᎴ ᏂᏓᏂᎧᎿᏩᏕᎬᎾ ᏗᏕᏲᏗ ᎨᏒ ᎠᏴ ᏗᎪᎦᏓᏂᎸᏤᎸᎯ, ᎠᏰᎸᏰᏃ ᎥᏝ ᏌᏉᏉ ᎤᏫᏞᏫᏒ ᏱᎩ, ᎤᏣᏘᏍᎩᏂ ᏚᏫᏞᏫᏒᎢ. ᏥᏁᎢᏍᏗᎭ ᎾᏍᎩ Ꮎ ᎤᎵᎮᎵᏍᏗ ᏣᎩᎭ ᏂᎯ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎣᎦᏤᎵ ᏨᏗᏓᎴᎲᏍᎦ, ᏥᏲᎱᏍᎪ ᏂᏚᎩᏨᏂᏒᎢ. ᏌᏉᏃ ᎠᏔᎸ ᏥᏳ ᎤᏣᏁᎢ ᎾᏍᎩ ᏌᏩᏂ ᎤᏤᎵᎦ ᎨᏎᎢ, ᎠᎴ ᎤᏔᏲᏎᎴ ᎤᏍᏗᎩᏛ ᎢᏴᏛ ᏭᎧᏙᏯᏍᏗᏱ. ᎤᏪᏁᏃ ᎠᎴ ᏚᏪᏲᏁ ᎤᏂᏣᏘ ᏥᏳᎯ ᎬᏩᏣᎢ. ᎠᏍᎪᎯᏧᏈᏃ ᏗᏘᏂᏙᎯ ᎠᎢᏗᏢ ᏧᏳᎪᏗ ᎦᏙᎩ, ᎤᏙᎴᎰᏒ ᎾᏍᎩ ᎤᏪᎷᏅᎢ, ᎠᎴ ᎤᎵᏍᏆᏕᎸᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯ ᎯᎠ ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᎢ. ᏕᏗᎶᏅᎲᎳ ᎠᏂᎪᏕᏍᎩ, ᏃᎴ ᏍᏉ ᏂᎦᏓ ᎠᏂᏐᎢ. ᎠᏏᏉᏃ ᏈᏓ ᎠᏓᏅᏖᏍᎨ ᎤᏁᎳᏫᏎᎸᎢ, ᎠᏓᏅᏙ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎠᏂᏦᎢ ᎠᏂᏫᏅ ᎨᏣᏲᎭ. ᎠᏓᏅᏙ ᎠᏓᏪᎵᎩᏍᎬ ᏞᏍᏗ ᏴᎠᏗᏍᎨᏍᏗ. ”ᎡᏆ ᎬᏂᎨ ᎤᏍᎪᎸ. ᏞᏍᏗ ᎢᏣᏓᏅᏙ ᏳᏕᏍᏔᏁᎮᏍᏗ; ᎡᏦᎢᏳᎲᎦ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᏍᎩᏲᎢᏳᎲᎦ. “ᎯᎦᏔᎭᏍᎪᏃ ᎤᏰᎸᏛ ᎭᎵᏦᎯᏓ ᏥᏂᎨᏨᏁ? ᎠᎴᏬ ᏠᎠᏏ ᏗᎩᎷᏨ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎠᏆᎵᏥᏙᏂᎸ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎠᎩᏍᏚᎩᎡᎸ ᎤᎬᏫᏳᎯ, ᏐᏉ ᎢᎦ ᎤᏍᏗ ᎠᏣᏗ ᎠᏓᎾᏫᏗᏍᎬ ᎤᏭᏓᎸᏤᎢ ᏚᏏᎳᏛ. ᏂᏥᏪᏎᎸ ᎠᏉᏪᎳᏅ To C - , ᏥᏃᎯᏎᎸ ᎤᏃᏪᎳᏅ Arcadian ᎪᏪᎵ. ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎸ ᎤᏃᏁᎸᎯ; ᎦᎪ ᎡᏥ? ᎠᎴ ᎦᎪ ᎣᏣᎵᏅᏟ? ᎤᏅᏓᏒ ᎾᎥᏂ ᎤᏍᏗ ᎠᎹ ᎦᏁᎮᎢ. ᎤᏍᎩ ᎾᎿ ᏭᏓᎪᎾᏛᏔᏅᎯ ᎡᏉᎯᏳ ᎠᎴ ᎦᎸᏉᏗᏳ ᎡᎩᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎯᎠ ᏕᏨᏗᏍᎬ ᎨᏣᏠᏯ ᏍᏙᏗ ᏱᏂᎦᎵᏍᏓ ᎤᏁᎳᏅᎯ ᏄᏍᏛᎢ, ᎡᏣᏗᏫᏎᎸᎯ ᎨᏒ ᎤᏲᎢ ᎡᎶᎯ ᏤᎭ ᎠᏚᎸᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ. ᏍᏈᏍᏓ ᏂᎦᎵᏍᏗᏍᎬ ᎨᏍᏗ ᏯᎦᏔᎭ ᏫᎵᎻ ᎡᎵᏍᎨ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ, ᏕᎤᎦᎵᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᎯᏍᏗ ᎤᏪᎲᎢ, ᎥᏝᏰᏃ ᏴᎵ ᏂᎪᎯᎸ ᎾᏍᎩ ᎬᏩᏂᏴᏗ ᏱᎨᏎᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᏕᏨᏅᎢ, ᎢᏳᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ; ᎠᎴ ᏗᏥᏰᎸᎢ, ᎢᏳᏍᏗ ᏗᏣᏄᏬᏍᏗᏱ. ᎠᏎᏃ ᎤᏒ ᎢᎪᎯᏓ ᏫᎨᏙᎲ ᏧᎾᏦᎯᏍᏗ, ᎬᎩᎸᏉᏗᏍᎬ ᎠᏂᎨᏯ ᎠᏂᏯᎢ. “ᎤᎵᏬᏨᏉ ᏱᎩ,” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎤᏛᏅ. ᎾᎥᏗ ᏧᏩᏓᎾᏏᏂᎴ ᎠᏂᏃᏟᏙ ᎦᏙ ᏗᏔᎳᎧᏒᎢ ᏃᎴ ᏗᎦᏟᏓ ᎫᎾᏗ ᏣᏚᏂᏲᎴ ᏍᎩᎾ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎠᏎᏃ ᏣᏓᎳᏍᏆᎵᏍᏗᏍᎨ ᏗᎦᏟᏓ ᏃᎴ ᎡᎳᏗ ᏣᏗᏥᏤᎮ ᏍᎩᏴ ᏯᏚᏅᏂᎵ ᏅᏱ ᎦᏁᎦ. ᏍᏈᏍᏓ ᎠᎾᎴᏫᏍᏗᏍᎨ ᎤᎾᎧᏙᏍᏕ ᏃᎴ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎦ ᎤᏁᎦᎸ, ᎤᏓᏅᏘ ᏃᎴ ᎤᏔᎷᎩᏍᎩ ᏗᎧᏃᏗ. ᏣᏂᏰᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏎ ᎡᎶᏛ, ᎥᏝ ᏱᏚᏳᎪᏗ ᎡᏣᏅᏟ ᎤᏓᎵᎢ ᏣᏓᏰᎭ. ᎾᏍᎩᏰᏃ ᏄᏍᏛ ᎢᏣᏓᎳᏫᏎᎸ ᎠᏎ ᎾᏍᏉ ᏛᎡᏥᎳᏫᏎᎵ, ᎠᎴ ᏄᏍᏛ ᎢᏣᏓᏟᎶᏒᎸ ᎾᏍᏉ ᏛᎡᏣᏟᎶᎡᎵ. ᎨᏍᏗ ᎤᏂᎪᎲ ᏱᎨᏎ ᎢᎾᎨ ᎡᎯ ᎤᏛᏂᏗᎨᏍᏗ ᎣᎦᎾ, ᏩᏌᏅ ᎤᎾᏓᏅᏖᏗᏍᎬ. ᎠᏆᏚᎵ ᎠᏆᏛᎵᏗ ᎤᏃᎴ ᏃᎴ ᎠᏆᎾᏏᏗ ᎤᏬᏚᏨ ᎠᎦᎵᏍᎬ.” ᏂᎯᏍᎩᏂ ᎡᏣᏑᏰᏛ ᎢᏥᏠᏱ ᎨᏒᎢ, ᎢᏥᎬᏫᏳᎯ ᎠᏥᎸ-ᎢᏤᎶᎯ, ᎡᏥᎸᏉᏔᏅᎯ ᎢᏣᏓᏤᎵᏛ ᎨᏒᎢ, ᎤᏣᏘ ᏗᏣᎬᏩᎳᏅᎯ ᏴᏫ, ᎾᏍᎩ ᏧᎵᏏᎬᏫᏥᏯᏅᏛ, ᎤᏍᏆᏂᎪᏗᏳᏃ ᎢᎦ ᎦᎸᏌᏛ ᏫᏥᎧᏅᎯ; ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏂᎦᏛ, ᎢᏳᏃ ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎠᎩᏍᏓᏩᏛᏍᏗᏱ ᎤᏩᏒ ᎠᏓᏓᏱᎮᏍᏗ, ᎠᎴ ᎠᏱᏍᎨᏍᏗ ᏂᏚᎩᏨᏂᏒ ᎤᏤᎵ ᏧᏓᎿᏩᏛ, ᎠᎴ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ. ᎩᎶ ᎠᏂᏍᎦᏅᎬ ᎬᏂᎨᏒ ᎨᏐ ᎢᎬᏪᏅᏛ, ᎢᎬᏱ ᏫᎦᎷᎪ ᏗᎫᎪᏙᏗᏱ ᎨᏒᎢ, ᎩᎶᏃ ᎤᎨᏍᏓᏩᏕᎪᎢ. “ᎭᏗᏓ!” ᎤᏪᎷᏁ ᏫᎵᎻ. “ᎨᏍᏗ ᎪᎱᏍᏗ ᏯᏕᎶᎰᏍᎦ ᏃᏉ,” ᎤᏛᏁ. ᎥᏝᏍᎩᏂ ᎤᏁᎳᎩ ᏱᏥᏰᎵᏎ ᎠᎨᏴ ᏧᏕᏲᏗᏱ ᎠᎴ ᎤᏓᎵᏁᎯᏕᏗᏱ ᎠᏍᎦᏯ, ᎡᎳᏪᏱᏉᏍᎩᏂ ᎤᏩᏗᏱ. Ꭾ ᏣᎵ, ᎤᎦᏃᏮ ᎭᎲᎦ ᏥᏲᏎᎸ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏔᎵᏁᎢ, ᎠᎴ ᏦᎢᏁᎢ, ᎦᎵᏉᎩᏁ ᏫᎬᏗᏍᎩ. ᏎᎦᏨ, ᏐᏉ ᏑᎾᎴᎢ ᎫᏰᏉᏂ ᎠᏰᎵ ᎠᏰᎵᏒ,” ᎤᏓᏅᏖᎴ. ᎠᏔᎴᎦᏒ ᎤᏩᏌ ᎤᏍᎪᏒ ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎠᏍᎦᏯᏯ ᎨᏒ. ᎠᏓᏫᏰᏃ ᎢᏳᏩᏂᏌᏛ ᏂᎦᏗᏳ ᏥᏓᏂᏲᎱᏍᎦ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᏂᎦᏗᏳ ᏗᏅᏃᏛ ᏅᏛᎨᎬᏁᎵ. ᎤᏬᏗᎨ ᏓᏥᏍᏛ ᏓᏓᎾᏇᏍᎬ ᏕᎪᏪᎵᏍᎬ. “ᎯᎠ ᏏᏆ ᎠᎬᏱ ᎠᏓᏔᎶᎯ ᎦᏳᎳ.” ᎤᎾᎦᏙᏍᏕᎢ ᏗᎦᏃᏣᏢ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ. ᎤᏥᏯ. “ᏃᎴ ᏤᏍᏗ ᎦᏓᎭ ᏱᏂᏍᏔᎵᏍᏔᏁᏍᏗ!” ᎠᎬᏂᏗᏳᏃ ᎨᏒ ᎣᏩᏒ ᎣᏓᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎾᏓᏛᏁᎲᎢ; ᎣᏩᏒᏃ ᎣᏓᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᏓᏩᏛᎡᎲᎢ; ᎤᏘᏲᎸ ᎦᎷᏯᏍᏗ, ᏂᎦᏓ ᏚᏅᏓᏒ, ᏧᏍᏗ ᏕᎨᏴ ᏧᏔᏂᏛ ᏕᎨᏴ ᏫᏗᎦᎷᎩ, ᏂᎦᏓ ᎤᏲᎢᏴ. ᏂᎬᎾᏛ ᎤᎧᏖᏃᎴ ᏫᎵᎻ. ᎦᎵᏦᏕ ᏭᏴᎴ ᏃᎴ ᏭᎦᏛᏁ ᏧᎿᏬ ᏧᏍᏆᏂᎪᏙᏗ. ᏙᎮᎵᎠ?” ᎥᏝᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎠᎰᎵ ᏭᏴᎸᎯ ᎦᏓᎭ ᏱᏄᏩᏁᎰ ᏴᏫ, ᎠᎰᎵᏍᎩᏂ ᏅᏓᏳᏄᎪᏨᎯ ᎾᏍᎩ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ. “ᎤᏙᎯᏳᎭᏗ” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ. ᎠᎴ ᎾᏍᏉ ᎾᏂᎥ ᎤᎾᏚᎵᏍᎩ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᎨᏒ ᎤᏂᏍᏓᏩᏛᏍᏗᏱ ᎦᎶᏁᏛ ᏥᏌ ᎠᏃᎯᏳᎲᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎾᏍᎩ ᎠᏎ ᎤᏲ ᎢᎨᎬᏁᏗ. ᏣᏁᎳ ᏧᏕᏘᏴᏓ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏥᎸᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮ ᎤᎯᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎾᎯᏳ ᎤᎵᏱᎶᎸ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎾᎿ ᎨᎸᎢ, ᎠᎴ ᎤᏂᏌᎳᏓᏁ ᎠᏂᏁᎬ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏥᏌ ᏔᏕᏲᎲᏍᎩ, ᏍᎩᏯᏙᎵᎩ. ᎣᏍᏓ ᎠᏆᏅᏛ ᏓᏥᏃᎡᎵ. ᏅᏯ, ᏧᏆᎶᎦ, ᏃᎴ ᏅᎩ ᏗᏂᏅᏌᏗ ᏰᎵᏉ ᎦᏓ ᏫᎾᎵᏍᏗ. ᎤᎦᎿᏩ ᏍᏊ ᎨᏒ. ᎠᏎᏃ ᏰᎵ ᏎᎦ ᎣᎩᎾᎵᎪᏅ ᏍᎩᎾ ᎠᏍᎦᏯ, ᎠᏆᏕᎶᎰᏒ ᎤᎵᏗᏨ ᎡᏙᎲ ᎬᏂᎨ ᎠᏥᎾᏌᎢ ᎢᎪᎯᏛ ᏃᎴ ᎤᏓᎴᏨ ᏳᏩᏁᎦ ᎦᏬᏂᏍᎬ Bermuda ᏭᏙᎴᏋ. ᏕᏥᏍᏆᏂᎪᏙ ᏓᏙᏓᏇᎬᎢ, ᎠᎴ ᏓᏦᎳᏁᎬᎢ, ᎠᎴ ᏓᏍᏆᎸᎮᎬᎢ, ᎠᎴ ᏓᏕᏘᏴᎮᎬᎢ. ᎡᏙᏓ ᎦᏁᎸᎢ ᎤᏣᏔ ᏓᏓᏁᎸ. ᎢᏳᏃ ᎾᏍᎩ ᏄᏍᏛᎾ ᏱᎨᏎᎢ, ᏱᏨᏃᏁᎴᎢ. ᎦᏛᏅᎢᏍᏔᏂ ᎢᏥᏴᏍᏗᏱ. “ᎨᏍᏗ ᎠᏆᏛᎦᏅ ᏱᎩ ᏐᏉ ᎪᎱᏍᏗ ᎤᏛᏅ,” ᎤᏛᏁ. ᎢᎦᏓ ᏧᏂᏯᎩᏍᏗ. ᎪᎯᏃ ᎨᏒ ᎠᏁᎭ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩ ᏦᎢ; ᏭᏓᎪᎾᏛᏛᏍᎩᏂ ᎦᎸᏉᏗ ᎬᏒ ᎠᏓᎨᏳᏗ ᎨᏒᎢ. ᎣᏏᏉᏍᎪ ᎯᏰᎵ?” ᏗᏃᏪᎵᏍᎩᏂ ᏧᎾᏤᎵ ᎠᎴ ᎠᏂᏆᎵᏏ ᏚᏂᏔᎳᏬᎯᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙᏃ ᎢᏧᎳᎭ ᎢᏣᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎢᏣᏗᏔᏍᎦ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾᎢ? ᎾᏍᎩᏃ ᎤᏄᎪᏨ, ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉ ᏴᏫ ᎤᏪᏥ ᎠᏥᎸᏉᏓ, ᎾᏍᎩᏃ ᏂᎬᏂᏌ ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏓ. ”ᎨᏍᏗ ᏯᏆᏚᎵ ᎥᎩᏍᏗ. ᏥᎾᏝᎥᎢ ᎤᏍᏗ ᏐᏈᎵ ᎤᎵᏎᎩᏳ ᏯᏰᎸᎭ ᎨᏍᏗ ᎠᎾᏓᏍᏔᏴᎲᏍᎩ ᏱᎨᏎ ᎠᏂᏧᏣ. ᎡᎶᏛᏍᎩᏂ ᎤᏛᎦᏅ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᏂ ᎯᎠ, ᎾᏍᎩ ᎠᏴ ᏥᏥᏍᎫᏕᏒᎩ; ᎾᏍᎩ ᏚᎴᎯᏌᏅ ᎤᏲᎱᏒᎢ. ᏚᎾᏘᏃᎸᏃ ᏕᎦᎳᏫᎥ ᎢᎬᏱᏗᏢ ᏑᏂᎧᏁᎢ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏛᏛᏁᎢ, ᎤᎵᎦᎵᏴᎮᎢ ᎠᏴᏤᏂ ᏫᎵᎻ. “ᎩᎶ ᏰᎵᎠ ᏦᎢ ᎾᏂᎥ ᎠᏂᏨᏯ ᏌᏌ, ᏦᎢ ᏌᏌ ᏃᎴ ᏔᎵᏍᎪᏐᏉ ᏌᏌ ᎠᏂᏓ. ᏌᏩᏂ, ᎾᏍᎩ ᎾᏍᏉ ᏈᏓ ᏚᏬᎡᎢ, ᎡᏂᏗᏃ ᎾᏍᎩᏉ ᎤᏅᏟ. ᏥᎻ ᎠᎴ ᏣᏂ, ᏈᎵᎩ ᎠᎴ ᏆᏙᎳᎻ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏙᏓᎦᏅᎦᎸᎯ ᏂᎦᏛ ᏓᏂᎦᏌᏬᎢᎲᎢ; ᎥᏝ ᎠᎴ ᎿᏉ ᏰᎮᏍᏗ ᎠᏲᎱᎯᏍᏗ, ᎠᎴ ᎤᏲ ᎠᏰᎸᏗ ᎨᏒ, ᎠᎴ ᏗᏠᏯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎿᏉ ᏰᎮᏍᏗ ᎡᎯᏍᏗ ᎨᏒᎢ; ᎢᎬᏱᏱᏰᏃ ᏧᏓᎴᏛ ᏤᎲ ᎤᎶᏐᏅ. ᎦᎶᏁᏛᏍᎩᏂ ᎤᎷᏨᎯ ᏥᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎢᏳᎵᏍᏔᏅᎯ ᏧᎸᏫᏍᏓᏁᏗᏱ ᎣᏍᏛ ᎨᏒ ᎤᎬᏩᎵ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎨᏒᎩ, ᎾᏍᎩ ᏴᏗᏍᎬ ᎢᏟ ᎢᎦᎸᏉᏗ ᎠᎴ ᏂᎦᎷᎶᏥᏙᎲᎾ ᎦᎵᏦᏛᎢ, ᎩᎶ ᏧᏬᏰᏂ ᏧᏮᏔᏅᎯ ᏂᎨᏒᎾ ᎤᏬᏢᏅᎯ, ᎾᏍᎩ ᏯᏛᏅ, ᎠᏁᎳᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏂᎦᏓ ᎭᏂᎧᏔᎮᎢ. ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎥᏝ ᎦᎷᎶᎩ ᏂᎨᏒᎾ ᎢᎬᏁᎯ ᏱᎨᏎ ᎪᎱᏍᏗ; ᎤᏟᏍᎩᏂ ᎢᏝᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᏴᏔᏂᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎢᏛᏗᏍᎬ ᎾᎥ ᎦᏰᏗᎷᏤᏗ ᏥᏂᎦᎵᏍᏗᎭ ᎤᏁᎳᏅᎯ ᎦᎷᎶᎩ ᏂᎨᏒᎾ ᏂᎬᏁᎭ. ᎠᏎᏃ ᏥᏌ ᎤᏙᎴᎰᏒ ᎾᎿᎤᏓᏅᏒᎩ; ᎤᏂᏣᏘᏃ ᎬᏩᏍᏓᏩᏛᏒᎩ; ᎠᎴ ᏂᎦᏛ ᏚᏅᏩᏅᎩ, ᎾᏍᎩ ᏧᏂᏲᏒᎯ ᎨᏒᎢ, ᎬᏩᏟᏍᏗ ᏔᎵᏁ ᎢᏤ ᎢᎨᎬᏁᏗᏱ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᏚᎾᏓᏅᏛ ᏭᏂᎷᎯᏍᏗᏱ; ᎤᏅᏒᏰᏃ ᏔᎵᏁ ᎤᎾᏓᏛᏁᎸᎯ ᎢᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎠᎴ ᎬᏂᎨᏒ ᎬᏩᏕᎰᎯᏍᏔᏅᎯ ᎢᎩ. ᎤᏁᎳᏅᎯᏰᏃ ᏰᎵᏉ ᎨᏥᏁᏗ ᎤᏣᏘ ᏄᏓᎴᏒ ᎪᎱᏍᏗ, ᎾᏍᎩ ᏂᎯ ᏂᎪᎯᎸ ᏂᏥᏂᎬᏎᎲᎾ ᎨᏒ ᏂᎦᎥ ᏧᏓᎴᏅᏛ, ᎣᏍᏛ ᎨᏒ ᎤᏣᏘ ᏗᎨᏥᎸᏫᏍᏓᏁᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏂᎥᏃ ᏴᏫ ᎤᎾᏰᎯᏍᏗᏳ ᎤᎾᏓᏅᏓᏕᎢ, ᎤᏣᏖᏃ ᏧᏓᎴᏅᏛ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᏚᏂᎸᏫᏍᏓᏁᎮ ᎨᏥᏅᏏᏛ. ᎨᏍᏗ ᎡᎳᏗ ᎭᏫᏂ ᎾᎥᏂ ᏳᏓᏬᎠ. ᎾᏍᎩ ᎢᏳᏃ ᏰᎵ ᎢᎬᏆᏛᏁᏗ ᏱᎩ, ᎾᏍᎩ ᎢᏯᏋᏂᏐᏗᏱ ᎤᎾᏟᏂᎬᏁᏗᏱ ᎣᎩᏠᏱ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎢᎦᏛ ᎦᏥᏍᏕᎸᏗᏱ. ᎦᎸᏉᏗᏳᏍᎩᏂᏃᏅ ᎠᏓᏅᏙ ᎬᏂᎨᏒ ᏂᎬᏁᎭ ᏕᎦᏚᏩᏗᏒᎢ, ᎾᏍᎩ ᎬᎩᎦᏘᏴ ᎥᏆᎸᏍᏗ ᎨᏒ ᎠᎴ ᎤᏲ ᎢᏯᏆᎵᏍᏓᏁᏗ ᎨᏒᎢ. ᏥᎩᏁᎸ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏧᎬᏩᎶᏗ ᎠᏲᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎦᏓᎭ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏍᎪᎸᎩ ᏂᎨᏒᎾ, ᏦᏒ ᎡᏥᏍᏆᏂᎪᏓᏁᎸᎯ ᏂᎯ, ᏧᏙᏓᏋᏓ ᎦᏙᎨ ᏫᎵᎻ ᎾᎥᏂ ᏚᎧᏙᏍᏕ ᏧᏓᏣᎦᎸᏓ ᏧᏏᏩ ᏓᏏᎳᏛ ᏃᎴ ᎭᎴᏉ ᎾᏦᏱᎮᎢ. ᎤᏕᎶᎰᏎᎢ ᏄᏍᏛ ᎤᏃᏴᎬ ᎠᏛᎵᏍᎬ, ᎤᏩᏙᎯᏴᏓ ᎦᏟᎮ ᎭᏫᏂ ᎧᏁᏍᎪ. ᏑᏕᏘᏴᏓ ᏥᎨᏎ ᎤᏩᎧᎮ ᎤᏓᎵ ᏃᎴ ᎤᏪᏥ. ᎠᎨᏯ ᎤᎨᏳᎯ ᏃᎴ ᎤᏍᎦᎡᏅ ᏂᎨᏒᎾ ᏧᏔᎷᎩᏍᎩ ᏗᎦᏙᎵ ᎠᏧᏣ. ᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᏁᎢᏍᏔᎾ ᎤᏍᏆᏂᎩᏗ ᎨᏒ ᏓᏏᎳᏛ. ᎢᏳᏰᏃ ᏥᏍᎦᎾ ᏱᎩ, ᎠᎴ ᎬᎩᏲᎱᎯᏍᏗ ᎢᎦᎢ ᎠᎩᏍᎦᏅᏨᎯ ᏱᎩ, ᎥᏝ ᏱᏙᎬᏆᎵᏢᏫᏏ ᎠᎩᏲᎱᎯᏍᏗᏱ; ᎢᏳᏍᎩᏂ ᏄᏙᎯᏳᏒᎾ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᏥᎬᏇᎯᏍᏗᎭ, ᎥᏝ ᎩᎶ ᏰᎵ ᏗᎬᏩᏂᏲᎯᏎᏗ ᏱᎩ ᎠᏴ. ᏏᏐᎢ ᏫᏥᎥᏍᏓ. ᎤᏁᎳᏅᎯᏰᏃ ᏂᏚᎨᏳᏅᎾ ᏥᎨᏎ ᏗᏂᎧᎾᏩᏗᏙᎯ ᎤᏂᏍᎦᏅᏨᎯ, ᏨᏍᎩᏃᏉᏍᎩᏂ ᏥᏫᏚᏓᎢᏅᏎᎢ, ᎠᎴ ᏥᏚᏲᏎ ᏧᏓᏕᏒᏛ ᏗᎨᎦᎸᏍᏙᏗᏱ ᎤᎵᏏᎬ ᎨᏥᏍᏆᏂᎪᏙᏗᏱ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏒ ᎢᏳᎢ, ᎠᏴᏰᏃ ᏥᏲᎢᏳᏓᏁᎭ ᎾᏍᎩ ᎤᏣᏘᎢᏣᏕᎵᎯᏍᏓᏁᎲ ᏂᎯ ᎠᎴ ᎴᎣᏗᏏᏯ ᎠᏁᎯ, ᎠᎴ ᎭᏱᎳᏆᎵ ᎠᏁᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎦᎶᏁᏛ ᎬᏬᎯᏳᏗ ᏥᎩ, ᎾᏍᎩᏯ ᎠᏂᎨᏴ ᏗᎬᏩᏂᏰᎯ ᏧᏃᎯᏳᏗ ᏂᎦᎥ [ᏂᎬᏩᏂᏪᏎᎲᎢ.] ᎠᏴᏍᎩᏂ ᏥᎦᏔᎭ, ᎾᎿᏰᏃ ᏅᏛᏆᏓᎴᏅᎯ, ᎠᎴ ᎾᏍᎩ ᏗᎩᏅᏒ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏍᏗᏰᏗᎭ ᎠᏴ ᏍᎩᏯᏕᎶᏆᎡᎯ ᎢᏣᎵᏍᏙᏗᏱ. ᎬᏂᎬᎦ, ᏌᎳᏓ. ᎠᏴ ᏉᎳ ᎠᎩᏅᏏᏛ ᏥᏌ ᎦᎶᏁᏛ ᏅᏧᎵᏍᏙᏔᏅ ᎤᏁᎳᏅᎯ ᎣᏏ ᎤᏰᎸᏅᎢ, ᎾᏍᎩᏯ ᎠᏚᎢᏍᏛ ᎬᏂᏛ ᎡᎩᏁᏗᏱ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᏨᏗᏓᎴᎲᏍᎦ; ᏗᎩᎦᏴᎵᎨ ᎢᎾᎨ ᎤᏂᎮ ᎦᎵᏦᏛ ᎠᏙᎴᎰᎮᏍᏙᏗ, ᎾᏍᎩᏯ ᎤᏁᏨᎢ ᎼᏏ ᏧᏁᏤᎴ ᎤᏬᏢᏗᏱ ᏧᏟᎶᏍᏙᏗᏱ ᏄᏍᏛ ᎤᎪᎲᎢ. ᎤᏇᏓᎵᏰᏃ ᎠᎦᏌᏯᏍᏙᏗᏱ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᎦᏘᎴᎩ; ᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎧᎿᏩᏕᎩ ᏱᎩ, ᎥᏝ ᎠᎴ ᎤᏙᎩᏳᎯ ᎾᏍᎩ ᏰᎵ ᏱᏅᎬᏛᎦ; ᎬᏩᎪᎲᏃ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎸᎩ. ᎠᏎᏃ ᎢᎦᏛ ᎤᎾᏜᏏᏛᎡᎸᏉ. ᎠᏂᎨᏴ ᎾᏍᏉ ᎠᏂᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎤᎵᎶᎲᏍᎩ ᏱᎩ, ᎤᏐᏅ ᎠᎾᏓᏃᎮᏍᎩ ᏂᎨᏒᎾ, ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏂᎦᎾᏏᏍᎩ ᏂᎨᏒᎾ, ᎣᏍᏛ ᎨᏒ ᏗᎾᏕᏲᎲᏍᎩ; ᎠᏓᏅᏙᏃ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎪᎱᏍᏗ ᏂᏗᏣᏢᏫᏎᎲᎾ ᏘᏍᏓᏩᏚᎦ. ᎾᏍᏉᏃ ᎯᎠ ᎾᏍᎩ ᏑᏓᎵ ᎢᏯᏂᏛ ᎢᏓᏓᏅᏟ ᎬᏆᎵᎪᏁᎸᎩ, ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᏗᎦᏁᎸ ᏬᎩᏴᎸᎩ. ᎤᏰᏨ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎾᏍᎩᏯ ᎤᏬᏨᏗ ᏣᎩᏃᎮᎶ ᎠᎦᏴᎵ ᏌᎪᏂᎨ ᎬᎵ ᏗᎨᎮᎩ ᎩᏟ. ᎥᏝ ᏥᏛᏓᏗᎧᏃ ᎢᏳᏍᏗ, ᏴᏫᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏗ; ᎦᎶᏁᏛᏍᎩᏂ ᏧᏅᏏᏓᏍᏗ ᎢᏳᎾᏛᏁᏗ, ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᏂᏣᏛᏁᎲᎢ, ᏗᏥᎾᏫᏱ ᏨᏗᏓᎴᎲᏍᎪᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏥᏙᎦ ᎡᎵᏍᎨᏍᏗ ᎨᏯᏔᎮᏍᏗ ᏱᎦᏅᎩᏰᏃ. ᎤᎬᏩᎸᎩ ᎾᏍᎩ ᎪᎯ ᎨᏥᎸᏉᏗ ᎨᏒ ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᎨᏒ ᎦᎸᎳᏗᏳ ᏕᎨᏌᏗᏒᎢ, ᎤᏂᎦᏙᎥᎯᏍᏗᏱ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎠᎦᏙᎥᎯᏍᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎨᎬᏗᏍᎬ ᏧᎾᏁᏟᏗ ᎤᎾᏓᏡᎬᎢ; ᎿᏉ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᏥᎷᎩ ᏄᏍᏛ ᏣᏚᎵᏍᎬ ᎢᏯᏆᏛᏁᏗᏱ ᏣᏁᎳᏅᎯ. ᎢᎬᏱᏱ [ᎤᏁᎢᏍᏔᏅ] ᎠᏲᏍᏗᎭ, ᎾᏍᎩ ᏔᎵᏁ [ᎤᏁᎢᏍᏔᏅ] ᎤᏍᏓᏱᏗᏍᏗᏱ. ᏧᏓᎴᏅᏓ ᎤᏂᏑᎸᏓ, ᎠᎹ ᎤᎦᏃᏩ, ᏒᎧᏔ ᎦᏁᎦ, ᎠᏓᎶᏂᎨ ᏧᎾᏍᏕᏥ ᎦᏁᎦ, ᎭᏫᏯ ᎤᏂᏑᎸᏓ, ᏎᎷ ᏗᎦᏄᎳᎩᏓ ᏧᏂᎾᏦᏴᏍᏗ ᏃᎴ ᎤᏅᏗ ᎤᏍᏔᏲᏒ ᎦᏇᏅᏔᏅ. ᏂᏥᎥᏰᏃ ᏤᏣᏬᎥᎯ ᏥᎩ ᎦᎶᏁᏛ ᎡᏣᎵᎪᏁᎲᎢ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎡᏣᏄᏬᎥ. ᎪᎱᏍᏗ ᏕᎪᏪᎳ ᎧᏁᏌᎢ. ᎾᏍᎩᏴᏃ, ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎧᏴᏐᎴ ᏧᏍᏆᏴᏍᏗ ᎤᏗᏍᎦᎶᏗ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ. ᎠᏎᏃ ᎥᏝ ᏧᏃᎵᏤ ᎾᏍᎩ ᏄᏪᏒ ᎠᎴ ᎠᏂᏍᎦᎢᎮ ᎤᎾᏛᏛᏗᏱ. ᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ ᏥᏕᏓᏛᎩᎠ ᏗᏗᏏᏴᏫᎭ ᏕᎦᏛᏒ ᏗᎩᏬᏂᎯᏍᏗ? “ᎠᏯᏗ ᏱᎬᏃᎯᏏ ᏓᏆᏙᎥ,” ᎤᏛᏁ ᎠᎬᏱ ᎧᏅᏂᏍᎩ, ᏱᏍᎩᏃᎯᏎᎳ ᎤᏰᎸᏛ ᏥᏣᏃᏫᎠ.” “ᎢᎦᏛ ᎠᏂᏴᏫᏯ ᏧᎾᏍᏗᎩᏓ ᏚᎾᎳᏑᏠᏓᎾᏗᏍᎪ ᎠᎴ ᏚᏂᏪᏍᏔᏁᎰ. ᎾᏍᎩᏃ ᎾᏉ ᏥᏩᏘᎭ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎣᏍᏛ ᎢᏯᏆᏛᏁᏗᏱ ᎠᏆᏚᎸ, ᎤᏲ ᎨᏒ ᏓᎩᎧᎿᏩᏗᏙᎰᎢ. ᎤᎵᏏᎩ ᎨᏎ ᏃᏉ, ᏭᎴᏅᎮ ᏚᎷᏫᏍᏔᏁᎲ ᏌᎳᏓ. ᎤᏁᎳᏅᎯᏰᏃ ᏚᏙᎥ ᎬᏩᏂᏐᏢᏗ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ ᏂᎯ ᎢᏨᏂᏌᏛ, ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸᎢ. ᎢᏳᏃ ᎩᎶ ᏄᎨᏳᏒᎾ ᎢᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎠᏥᏍᎩᏅᏛᎯ ᎨᏎᏍᏗ. ᎤᎬᏫᏳᎯ ᏓᎦᎷᏥ. ᏳᎵᏍᏆᏙᎾ ᎢᎦ, ᎠᏗᏍᎬ ᎠᏌᎻᏓ, ᏧᎾᏦᏴᏍᏗ ᎪᏍᏔ ᏧᏅᏍᎦᏠ ᎢᏳᏍᏗ ᎤᏰᎸᎮ. ᎥᏝ ᎠᎴ ᎿᏉ ᏗᎬᏩᏂᏲᎱᎯᏍᏗ ᏱᎨᏎᏍᏗ; ᏗᏂᎧᎿᏩᏗᏙᎯᏍᎩᏂ ᎦᎸᎳᏗ ᎠᏁᎯ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏄᎾᏍᏕᏍᏗ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎾᏍᎩ, ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᏧᏪᏥ ᎨᏒ ᎢᏳᏍᏗ. ᎤᏂᎷᏤᏃ ᎠᎴ ᏚᏂᏍᏗᏰᏔᏁᎢ; ᏚᏂᏄ-ᎪᏫᏒᏃ ᏚᏂᏔᏲᏎᎴ ᎾᎿ ᎦᏚᎲ ᎤᎾᏓᏅᏍᏗᏱ. ”ᏕᎭᏓᏟᏴᎲ ᏍᎩᎾᎾ ᎢᏣᏛᏁᏗ ᎨᏎᏍᏗ,” ᎤᏛᏁ, ”ᎠᏎᏃ ᏣᏓᏅᏘ ᎭᏅᏓᏛ ᎭᏂ ᎧᏁᏌᎢ ᎠᏆᏗᏍᎦᏢᎢ, ᎨᏍᏗ ᏯᏆᏚᎵ ᎥᏆᎳᏍᏛᏗ, ᎠᏆᎧᏛ ᎥᏆᎶᏕᏍᏗ, ᎠᎴ ᏍᏇᏅ ᎬᏗ ᎥᎩᎵᎥᏂᏍᏗ, ᎠᎴ ᎥᏆᏦᎥᏍᏙᏗ, ᎠᎴ ᎥᎩᎾᏑᎩᏍᏗ, ᎠᎴ ᎥᎩᏰᎵᏍᏗ. ᎾᏍᎩ ᏥᏄᏍᏗ ᎬᏂᎨᏒᎢᏳ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏨᏒᏉ ᏕᏣᏓᏰᎢᎵᏙᎲᎢ. ᎦᏙᏃ ᎤᏟ ᎣᏏᏳ ᏂᏥᏰᎸᏍᎬᎾ ᏥᎩ ᎤᏲ ᎢᏰᏨᏁᏗᏱ? ᎦᏙᏃ ᎤᏟ ᎣᏏᏳ ᏂᏥᏰᎸᏍᎬᎾ ᏥᎩ ᏧᎬᏩᎶᏗ ᎡᏥᎩᎡᏗᏱ? ᏞᏍᏗ ᎠᏎᏉ ᏱᏥᏰᎸᏍᎨᏍᏗ ᎠᏙᎴᎰᎯᏍᏗ ᎨᏒᎢ. ᏌᏌ ᏍᏉ ᎾᎥᏂ ᎠᏁᏙᎮ ᎾᏍᎩᏯ ᎠᏂᏧᏣ ᏅᏬᏘ ᎤᏂᎾᏗᏅᏗ ᏣᏁᏙᎰ, ᏃᎴ ᏎᎷ ᏃᎴ ᏙᏈᏌᏂ ᏕᎨᏠᎮᎢ ᎰᎻ ᎤᎵᎮᎵᏍᏗ ᎤᎾᏓᏅᏖᏗ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᏂᎯ ᎡᏥᏁᎸᎯ ᎢᏦᎵᏍᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎠᏂᏐᎢᏍᎩᏂ ᏗᎨᎦᏟᎶᏍᏓᏁᏗ; ᎾᏍᎩ ᎠᏂᎪᏩᏘᏍᎬ ᎬᏩᏂᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎠᎾᏛᎩᏍᎬ ᎬᏩᏃᎵᏍᏗ ᏂᎨᏒᎾ. ᏔᎵᎾ ᎯᎠ ᏅᎤᏪᏎᎸᎩ; ᏌᏩᏂ, ᏦᎾ ᎤᏪᏥ, ᏍᎩᎨᏳᎭᏧ? ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᎥ ᏣᎬᏫᏳᎯ, ᎯᎦᏔᎭ ᎬᎨᏳᎢᏳ ᎨᏒᎢ. ᎯᎠ ᏄᏪᏎᎸᎩ; ᏕᎮᎶᎮᏍᏗ ᏗᏆᏤᎵᎦ ᎤᏂᏃᏕᎾ. ᎾᏍᎩ ᎬᏩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ, ᏂᎪᎯᎸ ᏕᎨᏌᏗᏒᎢ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎡᎺᏅ. ᏓᏂᏃᎩᎢᏍᏗᏍᎨᎢ ᎠᎵᏍᏆᏗᏍᎬ ᎪᎩ, ᎤᎯᏐᏗ ᎧᏃᎩᏍᏗ. ᎤᏚᎵᏍᎨᏍᏗ ᎤᏛᎪᏗ. “ᏣᏁᎸᏔᏅᎯᏍᎪᏃ ᏣᏏᎳᏛᏗ?” ᎤᏛᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ. ᎢᏨᎨᏳᎢ, ᎢᏳᏃ ᎠᏆᏟᏂᎬᏁᎸ ᏫᏨᏲᏪᎳᏁᏗᏱ ᏂᎦᏗᏳᏉ ᎢᎦᏤᎵ ᎢᎦᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ, ᎤᏚᎸᏗ ᎾᏆᎵᏍᏓᏁᎸᎩ ᏫᏨᏲᏪᏔᏁᎲ ᎢᏨᏍᏗᏰᏙᏗᏱ, ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎢᏣᏗᏒᏎᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎦᏳᎳ ᏗᎨᏥᏲᎯᏎᎸᎯ ᏥᎩ ᎤᎾᏓᏅᏘ. ᏖᎾᎾᏏᎾᎩ ᎯᏍᎪᎵ, ᏃᏉ ᏛᎾᎢ. ᎭᏫᏂᏰᏃ ᏅᏓᏳᏓᎴᏅᎯ, ᏴᏫ ᎤᎾᏫᏱ, ᏗᏓᎴᎲᏍᎦ ᎤᏲ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎠᏓᏲᏁᏗ ᎨᏒᎢ, ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᏓᎯᏍᏗ ᎨᏒᎢ, ”ᏙᎢᏳᏍᏗ ᎤᏍᏆᏂᎩᏗ ᏏᏆ.” ᎤᏛᏛᏁ ᎠᎳᏂ, ᎩᎳ ᎣᏍᏓ ᏄᎵᏍᏗᏍᎨᎢ ᎤᏍᎦᏍᏓᏁᎸ. ᎰᏩᏃ ᎤᏂᏟᏌᏅᎩ, ᎠᎴ ᏔᎳᏚ ᏔᎷᏣ ᏚᏂᎧᎵᏍᏔᏅᎩ ᎤᎵᎬᎭᎷᏴᎯ ᎯᏍᎩ ᎤᏣᎴᏍᏗ-ᎢᏳᏍᏗ ᎦᏚ ᎾᏍᎩ ᎤᎾᎵᏍᏓᏴᏅᎯ ᎤᎾᏘᏰᎸᎯ. ᎠᏋᏌ ᏓᎦᏕᎶᎣᏏ.” ᎡᏝᏪᎯ ᏚᎪᎵᏰᎥ ᏓᏴᏈᏛ ᎪᏪᎵ ᏗᎪᏪᎵᏍᎩ. ᏰᎵᏉ ᏂᎯ ᏣᎬᏫᏳᎯ ᎦᏰᏣᏁᎢᏍᏓᏁᏗ ᎡᏣᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎡᏤᎸᏉᏙᏗ ᎨᏒ, ᎠᎴ ᏣᎵᏂᎩᏗᏳ ᎨᏒᎢ; ᏂᎦᏗᏳᏰᏃ ᎪᎱᏍᏗ ᏦᏢᏅᎯ, ᎠᎴ ᎭᏓᏅᏖᏍᎬ ᎢᏨᏁᎵᏓᏍᏗᏱ ᎡᎭ, ᎠᎴ ᎪᏢᏅᎯ. ᎠᎨᏴᏃ ᎤᎵᏘᏒᎩ ᎢᎾᎨ ᏭᎶᏒᎩ, ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏛᎾᎢᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎠᎨᎳᏍᏗᏱ ᏌᏉ ᎢᏯᎦᏴᎵ ᏔᎵᏧᏈ ᏑᏓᎵᏍᎪᎯ ᏧᏒᎯᏛ. ᎾᏍᏉᏃ ᎠᏕᎸ-ᎠᏂᎩᏏᏙᎯ ᎤᏂᎸᏐᎴ ᏗᎨᎦᏬᏍᏗᏱ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏓᏲᏣᏛᏁᎵ? ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏂᏣᏘ ᎦᎸᎳᏗ ᎠᏁᎯ ᎬᏩᎵᎪᏁᎴ ᏗᎧᎿᏩᏗᏙᎯ, ᎤᏁᎳᏅᎯ ᎠᏂᎸᏉᏗᏍᎨᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎠᎴ ᏗᎩᎸᏙᏗ ᏗᏍᏓᏛᏅᎢᏍᏓ ᎾᏍᎩ ᏉᎳ ᎠᎾᎩᎸᏔᏅᎭ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏩᎾᏘᏃᎮᎸᎭ ᏈᎵᏏ ᎤᎬᏫᏳᎯ. “ᎡᏯ!” ᎤᏪᎷᏁ. ᏁᏓᏂᎵᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏰᎵᏍᎪ ᎪᎱᏍᏗ ᎣᏍᏛ ᏅᏓᎬᏩᎾᏄᎪᎢᏍᏗ ᎾᏎᎵᏗ? ᏈᎵᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏁᎾ, ᏩᎦᏔ. ”ᎲᎦ ᎢᏳᏩᏂᎸ?” ᎡᏝᏪᎯ ᎤᏛᏛᏁ ᏌᏌ. ᎠᏓ ᎠᏍᏆᎸᎩᏓ ᎤᏬᏢ ᎠᏥᏲᎴ ᎠᏫᎾ, ᎤᏍᎦᎸ ᎨᏎ ᎤᎴᏗ. ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ ᎾᎯᏳ ᎢᎦ ᏴᏫ ᎤᏪᏥ ᎦᎾᏄᎪᏂᎸᎭ. ”ᏃᏉ ᎱᎳᏛᎥᎦ ᏗᏣᏏᎳᏛᏙᏗ, ᎭᏓᎾᏫᏓ, ᎡᎳᏗ ᎾᏛᏁᎲ ᏩᏓᏏᎳᏛᎥᎦ!” ᎤᎩᏨᏓᏍᎩᏂ ᎤᏒ ᎤᏠᏱ ᏄᏛᏁᎸ. ᎤᎵᏗᏨ ᎤᏬᏟ ᎠᏍᎦᏯ ᎤᏕᎸ ᎦᏅᏃᏩ Perry. ᎫᎭᎳᎲ ᎤᏅᎦᎳᎲ, ᏔᎵ ᎢᏳᏩᎬᏘ ᎤᏬᎦᏒ ᏃᎴ ᏭᏓᏕᎸ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏗᎨᏚᎪᏓᏁᏗ ᎨᏒᎢ? ᎥᏝᏍᎪᏃ ᏰᎵ ᏱᏙᎨᏚᎪᏓ ᎪᎱᏍᏗ ᎪᎯᏉ ᎨᏒ ᎤᎬᏩᎵ? ᏭᏩᎦᏘᏗᏒ ᎮᎲᎢ ᎣᏏᏉ ᎨᏎᏍᏗ. ”ᏙᎢᏳᏍᏗ?” ᎤᏛᏁ ᎧᏅᏂᏍᎩ. ᎤᏍᏆᏙᏅ ᎧᏃᎮᏍᎬ ᎤᏃᎮᏗ ᎦᎷᏯᏍᏗ, ᎠᏯᏍᏉ ᎠᏆᏓᏅᏖᏔᏅ ᎢᏳᏍᏗ ᎤᏲ ᎣᎩᎭᏲᎮᏗ ᏣᎵ, ᎠᏂᏲᏍᎩ ᎠᏂᎷᏨ. ᎣᎭᏂ ᎤᎦᏎᏍᏙᏗ ᎠᏌᎻᏓ, ᏅᎩ ᎢᏳᏩᎭᏂᎸ ᎠᎴᏂᏍᎩ ᏅᏙ ᎧᎸᎬ ᎢᎪᎯᏛ, ᎠᏂᏐᎢ ᏦᎢ ᎠᏂᏧᏣ ᏭᏲᎢᏴ ᎤᎾᎦᏎᏍᏙᏗ, ᎠᏂᏔᎵᎭ ᎢᏯᏂ ᎤᏂᏰᏨ, ᎢᎪᎯᏛ ᏐᏉ ᏱᎦᏟ, ᏔᎵ ᎢᏳᏪᏅᏍᏘ ᏓᎾᏍᏕᏓᎵᏴᏍᎬ. ᎾᏍᎩᏃ ᎦᎵᏉᎩ ᏧᏙᏓᏆᏛ ᎤᎶᏐᏅ, ᎣᎦᏂᎩᏒᎩ, ᏬᏥᎦᏛ ᎢᏗᏢ ᏬᎩᎶᏒᎩ; ᏂᎦᏛᏃ ᎾᏍᎩ, ᎠᎴ ᏧᎾᏓᎵᎢ ᎠᎴ ᏧᏁᏥ ᏗᎬᎾᏘᏁᎯ ᎦᏚᎲ ᏫᏚᎾᏄᎪᎬ ᏫᏕᎪᎩᎧᏅᎩ. ᎠᎹᏳᎶᏗᏃ ᏙᎦᎵᏂᏆᏅᏅ ᎣᎦᏓᏙᎵᏍᏔᏅᎩ. ᎤᏲ ᏫᏄᎾᎵᏍᏓᏏ! ᎨᎾᏰᏃ ᎤᏅᏅ ᎤᏂᏍᏓᏩᏕᏅ, ᎠᎴ ᎨᎦᎫᏴᏓᏁᏗ ᎤᎾᏚᎵᏍᎬ ᎤᏂᎬᎥᏍᎬ ᎤᏂᎨᎮᎾ ᏇᎳᎻ ᎤᎵᏓᏍᏔᏅ, ᎠᎴ ᎨᏥᏛᏔᏅ, ᏚᏂᎦᏘᎸᏒ ᎪᎵ ᏧᎦᏘᎸᏛ ᎨᏒᎢ. ᎠᎴ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎠᎹ ᏥᏕᏣᎪᎲᎩ, ᎾᎿ ᎤᏁᎫᏥᏛ ᎠᎨᏴ ᏧᏬᎳ, ᏴᏫ ᎦᏛᎦ, ᎠᎴ ᎤᏂᏣᏘ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏤᎵᏗ ᏴᏫ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ. ᎠᏎᏃ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᎡᏍᎦ ᎬᏰᎸᎾᎲ ᎢᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᎿ ᏕᏣᎧᎲ ᏇᎳᎻ ᏓᏕᏲᎲᏍᎬ ᏧᏂᏂᏴᎯ, ᎾᏍᎩ Ꮎ ᏇᎳᎻ ᏇᎳᎻ ᏧᏪᏲᏁ ᎢᎬᏱᏗᏢ ᏧᏁᏗᏱ ᏧᏃᏕᎯᎯ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏂᎩᏍᏗᏱ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ, ᎠᎴ ᎤᏕᎵᏛ ᏧᎾᏂᏏᏗᏱ. ᏅᎩᏍᎪ ᎢᏯᏂ ᏱᎾᏓ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸ ᏔᎳᏚ ᎢᏯᏂᏛ; ᏥᎪ ᎾᏍᏉ ᏂᎯ ᏛᏣᏓᏅᏏ? ᎢᎦ ᎤᏗᎴᎩ ᏄᎵᏍᏔᏁ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎥᏝ ᏴᏛᎦᎯᏄᎪᎢ, ᎬᏂ ᎤᎵᏍᏆᎸᏗ ᎠᏰᎵᎢᏯᏓᏅᏖᏗ ᎭᎫᏴᎲᎭ. ᎠᎴ ᏓᎦᏟᏂᎬᏁᎵ ᎠᎩᎶᏐᏅᎯ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎨᏨᎨᏫᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᏄᎪ ᎢᏣᏓᏑᏴ ᎠᏁᎲᎢ, ᎠᎴ ᎢᏣᏖᎴᏛ ᎨᏎᏍᏗ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏞᏍᏗ ᎢᏣᏒᏂᎸᎩ ᎪᎱᏍᏗ ᎦᏓᎲᎢ; ᎠᏴᏃ ᏙᏓᏨᏯᏓᏂᎸᏥ, ᎬᏂᏳᏉ ᏄᏍᏆᏂᎪᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎦᏴᎵᎨ ᎢᎩᏁᎸ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎦᏰᎪᏎᏗ ᏥᎩ. ᎡᎶᎯ ᎠᏴ ᏂᎩᎦᏔᎲᎾ ᏥᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏄᎦᏔᎲᎾ ᏥᎨᏒᎩ. ᏕᏥᏯᎦᎭᎾᏅ ᎠᏌᎻᏓ. ᎦᏣᏄᎸ ᎤᏪᏅᏒ, ᏂᎪᎯᎸᎾ ᏭᎷᏤ ᎨᏴ, ᎨᏓᎵ ᎤᏍᏔᏩᏛᏎ ᎨᏴ. ᎧᏅᏂᏍᎩ ᎠᏎ ᎪᎱᏍᏗ ᎤᏛᏁᏗ, ᎠᏯ ᏥᏌᏛᎥᏍᎩ. ᎦᏥᏔᏲᏎᎲ ᎠᏓᏍᏕᎸᏓ, ᏕᎬᎦᏆᎾᏂᏍᎬ, ᏄᏓᎴ ᎠᏓᏅᏙ ᎠᎦᎾᏬᏗᏍᎩ ᏩᏂᏃᎮᏍᎪ, ᎤᏙᎯᎤ ᎪᎯᏳᏗ, ᎦᎵᏬᎩ ᎠᏍᎦᏯ ᎦᎶᏁᏛ ᏧᏟᏃᎮᏙ ᎾᎥᏂᎨ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ, ᎨᎥ ᏄᏙᎯᏳᏒᎢ, ᎠᏗᎭ ᏱᎰᏩ, ᏂᎦᏗᏳ ᏙᏓᎬᏆᎵᏂᏆᏅᏁᎵ ᎠᏴ, ᎠᎴ ᏂᎦᏗᏳ ᎬᏂᎨᏒ ᏅᏓᎬᏩᏁᎵ ᎤᏁᎳᏅᎯ. ᏫᏥ ᎢᎦ ᎤᏃᎴ ᎠᏲᏙᏗ ᏗᎾᏓᎢ ᎠᎾᏂᎩᏍᎨᎢ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏌᏩᏂ, ᎠᎩᎭ ᎪᎱᏍᏗ ᎬᏲᏎᏗ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᏔᏕᏲᎲᏍᎩ, ᏂᏫᎪᎦ. ᎤᎵᏍᏆᎸᏗᏃ ᎢᎦ, ᎾᏍᎩ ᎦᎸᏉᏗ ᎢᎦ ᎨᏒ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᏥᏌ ᏚᎴᏅᎩ ᎠᎴ ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏳᏃ ᎩᎶ ᎤᏔᏕᎩᏍᎨᏍᏗ, ᎠᏴ ᏩᎩᎷᏥ, ᎠᎴ ᏩᏗᏔ. ᎢᏳᏃ ᎩᎶ ᏕᎨᎦᏨᏍᏗᏍᎬ ᏤᏅ-ᏍᏗᏱ ᏣᏯᏅᎲᎭ, ᏞᏍᏗ ᏄᎬᏫᏳᏒ ᏗᏂᏢᏗᏱ ᏣᏂᏏᏅᎩ; ᎤᏟᏰᏃ ᎢᏯᏥᎸᏉ-Ꮧ ᎡᏍᎦᏉ ᏂᎯ ᏩᏥᏯᏅᏛ ᏱᏂᎦᎩ; ᎬᏂᏳᏉ ᏕᏗᎭᎾᎳᏗᏍᎪ ᏐᏈᎵ ᎨᎪᎯᏳᏗᏱ, ᎠᎴ ᏂᎬ ᏗᏂᏰᎸ ᏕᏗᎪᎸᏏᏙᎰᎢ. ᎯᎠᏍᎩᏂ ᎾᏍᎩᏯ ᎪᎱᏍᏗᏉ ᏤᎿᎠ ᎨᎪᏢᏅᎯ ᎨᎨᎢᏍᏗᏱ ᎠᎴ ᎨᏥᏛᏙᏗᏱ, ᎾᏍᎩ ᎠᏂᏐᎢᏍᏗᏱ ᎠᎴ ᎨᏥᏛᏙᏗᏱ, ᎾᏍᎩ ᎠᏂᏐᏢᎢᏍᏗᏍᎪ ᏧᏓᎴᏅᏛ ᎾᏃᎵᎬᎾ ᎨᏒᎢ, ᎠᎴ ᏛᎾᎵᏛᏔᏂ ᎤᏅᏒ ᎤᏂᏲᎢᏳ ᎨᏒᎢ. ᎤᏟ ᎠᎯᏗᏳ ᎨᎻᎵ ᏴᎩ ᎦᏌᏁᎾᏛᏗᏱ ᎤᎦᏛᎴᎯᏍᏗᏱ, ᎠᏃ ᎤᏪᎿᎢ ᏴᏫ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏭᏴᏍᏗᏱ. ᏓᎩᎪᎲᎩᏃ ᎢᏤ ᎦᎸᎶᎢ ᎠᎴ ᎢᏤ ᎦᏙᎯ; ᎢᎬᏱᏱᏰᏃ ᎦᎸᎶᎢ ᎠᎴ ᎢᎬᏱᏱ ᎦᏙᎯ ᏥᎨᏒᎩ ᎤᏂᎶᏐᏅᎩ; ᎠᎴ ᎥᏝ ᎿᏉ ᎠᎺᏉᎯ ᏱᎨᏎᎢ. ᎦᏥᏔᏲᏎᎸᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎤᏂᏄᎪᏫᏍᏗᏱ; ᎠᏎᏃ ᎤᏂᏄᎸᏍᎩ. ᎤᏍᎦᏃᎵ ᎡᎳᏗ ᏄᏛᏁᎴ ᏫᎵᎻ ᎤᏴᏍᏗ ᎢᏣ. ᏥᏌᏃ ᎤᏍᎦᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎡᎳᏪ ᎲᎾ, ᎠᎴ ᎯᏄᎪᎢ ᎠᏍᎩᎾᏃ ᎠᏂᏅ ᎠᏰᎵ ᎤᏍᏢᏂᏍᏔᏅ ᎤᏄᎪᏤ ᎠᏍᎦᏲᎯ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏳᏩᏁᎴᎢ. ᎦᏄᎸ ᎤᏰᎨ ᎤᏴᏍᏗ ᏃᎴ ᎤᏙᏩᏗᏍᎨ ᎦᏌᎾᎳ ᎤᏂᎵᏦᏩᏕ. ᎠᏂᎵᎯᏰᏃ, ᏒᏃᏱ ᏓᏂᎵᎰᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᏧᏂᏴᏍᏕᏍᎩ, ᏒᏃᏱ ᏚᏂᏴᏍᏕᏍᎪᎢ. “ᏑᎾᎴ ᎬᏃᎯᏎᎸ,” ᎤᏛᏁ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏔᎴᎲᎦ, ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᎮᏓ. ᏥᏰᎸᏍᎩᏂ ᎡᎳᏗ ᏂᏥᏴᏫᏕᎪᎢ, ᎠᎴ ᏥᎾᏝᎢ ᏂᏥᏴᏁᎰᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᎦᏥᏯᎵᏥᏙᏁᎸᎯ ᎨᏒ ᏭᏅᎫᏛᎢ, ᎠᏴ ᎠᏋᏒ ᎥᎩᏐᏅᎢᏍᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ. Ꭷ ᏃᏉ ᎤᏍᏆᎸ ᏣᏢᏗ ᏫᎵᎻ.” ᎯᎠᏃ ᏄᏪᏒ ᏣᎵ, ᎤᏏᏩ ᎢᏳᏍᏗ ᎨᏒ ᎦᏇᏅᏛ ᎠᏧᏣ, ᏎᎷ ᏗᎦᏄᎶᏔᏅ ᏥᏕᎦᏇᏅᏙ ᎢᏳᏍᏗ ᏄᏍᏕ. ᎤᏥᏯ ᎠᏩᏔ ᏃᎴ ᏧᏗᎩᏏ! ”ᎠᎩᎸᏉᏗ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ,” ᎤᏛᏁ ᏫᎵᎻ. ᏞᏍᏗ ᏕᏣᎧᏂᏍᎬᏉ ᏱᏗᏧᎪᏗᏍᎨᏍᏗ, ᏚᏳᎪᏛᏍᎩᏂ ᏕᏧᎪᏗᏍᎨᏍᏗ. ᎿᏉᏃ ᏥᏌ ᎨᎵᎵ ᏧᎶᏎᎢ, ᏦᏓᏂ ᎤᎷᏤ ᏣᏂ ᎡᏙᎲᎢ ᎠᎦᏬᏍᏗᏱ ᎤᏰᎸᏎᎢ. ᏍᎩᏄᏍᏛ, ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎦᏎᎾᏔ Mont Blanc ᎢᎦᎸᎳᏗ ᏳᏓᎸᎳᏓ, ᎠᎹᏳᎸᏓ ᏌᏬᏚ ᏓᏳᏓᎴᏅᏓ, ᏃᎴ ᎠᏂᏍᎦᏯ ᎭᎾᎾ ᏓᏳᎾᏓᎴᏅ ᏧᎵᎦᏔ ᏯᎾᏓᏕᎵᏎᎮ. ᏚᏯᏪᎨ ᏩᎶᏏ ᏑᎾᎴ ᎤᎵᏖᎸᏂᎸᎢ. ᎠᏍᎪᎯᏃ ᎢᏯᏂᏛ ᎤᎾᏛᎦᏅ, ᎤᎾᎴᏅᎮ ᎤᏣᏘ ᎡᏍᎦ ᏚᏂᏰᎸᎾᏁᎴ ᏥᎻ ᎠᎴ ᏣᏂ. ᎤᏂᏥ ᎤᏩᏇᏔᏅ ᎤᏐᏓᎸᏅ, ᎨᏓᎵ ᏫᎦᏅᏅ ᏭᎶᏒ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏗᏍᏓᏩᏗᏎᏍᏗ ᎾᏍᎩ ᏙᎯ ᎢᎬᏁᎯ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏗᎨᎦᏓᎵᏂᎪᎯᏍᏙᏗ ᎨᏒᎢ. ᎡᏥᏅᏏᏓᏍᏗ, ᏕᏦᎯᏳᏎᏍᏗ ᎾᏍᎩ ᎨᏥᏅᏏᏙᎯ ᎠᏂ ᎤᏇᏓᎵ, ᎨᏒᎢ, ᎢᏥᎾᏰᏍᎨᏍᏗ ᎠᎴ ᏕᏥᎾᏫᏍᎨᏍᏗ, ᎣᏏᏳ ᎢᏥᏰᎸᎯ ᎨᏎᏍᏗ ᏗᏥᎾᏫᏱ, ᎦᎶᏁᏛ ᏥᏁᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᏚᏂᎳᏫᏨ ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᎪ ᎢᏣᏚᎵ ᏗᏨᏲᎯᏎᏗᏱ? ᏆᎳᏆᏍᎪ? ᏥᏌᎨᎦᎶᏁᏛ ᏣᏃᏎᎰᎢ? ”ᏣᎦᏎᏍᏕᏍᏗ ᏔᏕᎶᎰᏏ ᎾᏛᏁᎲ.” ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏒᏁᎴ ᎤᎾᎵᏍᏓᏴᏃᏅ, ᎤᎵᏍᏈᏗ ᎤᎩᏎᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎾᏍᎩ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᏴ ᎠᎩᎩᎬ ᏨᏛᏍᏓᏱᏗ; ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ, ᎢᏳᏍᏗᎭ ᎾᏍᎩ ᎢᏣᏗᏔᏍᎨᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎬᎢ. ᎨᏍᏗ ᎩᎶ ᏳᎪᏩᏛᎭ. ᎢᏳᏍᎩᏂᏃᏅ ᎩᎶ ᎤᏣᏘᏂ ᎠᏰᎸᏗ ᏂᏥᏯᏛᏁᎭ ᎠᏆᏤᎵ ᎠᏛ ᎢᎡᎵᏍᎨᏍᏗ, ᎢᎦᎶᏍᎨᏍᏗ ᏰᎵᎦᏯ ᎢᏳᏕᏘᏴᏛ ᎨᏒᎢ, ᎠᎴ ᎠᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᎢᎨᏎᏍᏗ, ᎤᏚᎵᏍᎬᏉ ᎾᏛᏁᎮᏍᏗ, ᎥᏝ ᏱᎬᏍᎦᏅᎨᏍᏗ; ᏓᎾᏤᎨᏍᏗᏉ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎯᎠ ᏂᎦᏪᎠ ᏅᏩᏓᎴ ᎪᏪᎸᎢ; ᎾᏍᎦᏅᎾ ᏣᏤᎵ ᎥᏝ ᎤᏁᎳᎩ ᏭᎪᎯ ᎦᎯᏰᎵᏎᏗ ᏱᎩ. ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎾᏛᏁᎰᎢ; ᎥᏝ ᎤᏩᏒᏉ ᎤᏤᎵ ᏳᏲᎰᎢ; ᎥᏝ ᏳᏔᎳᏬᎯᏌᏙᎢ; ᎥᏝ ᎤᏲ ᏯᏓᎳᏫᏎᎰᎢ; ᎭᎾᎢᏣ, ᏄᏓᎴ ᎠᏂᏬᏂᏍᎬ ᎠᏂᏍᎦᏯ, ᏚᎦᏌᏛ ᏚᏂᎭᎦᎸ ᎠᎬᏱᏣ, ᏥᏔᎦ ᎠᏂᎦᏌ ᎩᎳ ᎤᏪᏥ ᎤᏂᏅ ᏕᎬᏆᏅᏔᏗᏘᏍᎬ. ᎤᎾᏛᏂᏛᏃ ᎩᎳ ᎤᎾᏙᎴᎰᏒᎩ ᎾᏍᎩ ᎠᎹᏰᎵ ᎻᎳᏗ ᏚᏙᎥᎢ, ᎩᎳᏈᏴ ᏭᏅᎪᏤ, ᎢᎾ ᎢᎦᏘ ᎦᏄᎸ ᏗᎦᏙᎨ. ᎠᎵᎮᎵᎨ ᏲᎾ ᎤᏤᏍᏙ ᎠᎧᏔᎲ ᎤᎦᏃᏫ ᎨᏒ ᎤᏢᏗ ᎤᏤᎵ ᎤᏍᏗ. ᎾᏍᎩᏃ Ꮎ ᎤᏔᏅ ᎢᎾᏛ ᎠᏥᏄᎪᏫᏒᎩ, ᎾᏍᎩ ᎾᎠᎦᏴᎵ ᎢᎾᏛ, ᎠᏍᎩᎾ ᏣᎪᏎᎭ, ᎠᎴ ᏎᏓᏂ, ᎾᏍᎩ ᏥᏕᎦᎶᏄᎮᎭ ᏂᎬᎾᏛ ᎡᎶᎯ [ᎠᏁᎯ;] ᎾᏍᎩ ᏓᏰᏥᏄᎪᏫᏒᎩ ᎡᎶᎯ ᏓᏰᎦᏓᎢᏅᏒᎩ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎢᏧᎳᎭ ᏓᎨᏥᏄᎪᏫᏒᎩ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᏕᏣᏓᏅᏖᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏧᏓᏅᏖ ᎦᎶᏁᏛ ᏥᏌ; ᏰᎵ ᏧᏕᏘᏴᏓ ᎣᎬᏌ ᎣᏣᏓᏍᏕᎵᏍᎩ ᏃᏤᎰ ᎠᏰᎵ ᏙᏰ. ᏫᏥᎢᎦ ᎨᏒ ᎨᏍᏗ ᏗᎬᎪᏩᏛᏗᏱᎩ ᎤᎪᏏᏓ ᎢᏯᏅᏁ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏱᏍᏗᏍᎨᎢᎮᏍᏗ; ᎢᏍᏕᎾ ᏫᏗᏍᏗᏃᎲᏏ ᎣᏣᎵᏅᏟ ᎨᎵᎵ ᏭᏂᎶᎯᏍᏗᏱ, ᎾᎿᏃ ᏓᎬᎩᎪᎯ. ᎾᏍᎩᏃ ᏄᏪᏒ, ᎦᏚ ᎤᎩᏒᎩ ᎠᎴ ᎤᎵᎮᎵᏤᎸᎩ ᎤᏁᎳᏅᎯ ᏂᎦᏛ ᎠᏂᎦ-ᏔᎲᎢ, ᎤᎬᎭᎷᏴᏃ ᎤᎴᏅᎲᎩ ᎤᎵᏍᏓᏴᏅᎩ. ᎣᏍᏓ ᎠᏛᏅ ᏏᏆ---ᎤᏁᎦ ᏥᏍᏕᏥ ᏂᎬᎸ ᎢᎬᏓ.” ᎠᏎᏃ, ᎢᏧᎴᎭ ᏙᎩᎾᏗᏔᎲ Ridge ᎤᎬᏫᏳ ᎠᏂᏁᎵ, ᎣᏍᏓ ᎣᎩᎾᏟᏃᎮᎸ, ᎢᏯᏛᏁᎵᏓᏍᏗ ᏲᏍᏗᏃᎮᏍᎬᎾ ᏱᎩ. ᏧᏃᏍᏛ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ ᎠᎴ ᏗᎵᏍᎪᎸᏙᏗ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ ᎥᏝ ᎣᏏᏳ ᏱᏗᏣᏰᎸᏁᎢ; ᎯᎠᏃ ᏅᏓᏥᏪᏎᎵ ᎠᏆᏓᏅᏙ; ᎠᏆᏓᏅᏙᎩ, ᎤᏣᏔ ᏣᏍᏆᏂᎪᏗ ᏧᎬᏩᎶᏗ ᎤᏣᏘ ᎢᏧᏕᏘᏴᏗ ᏣᎵᏍᏕᎸᏙᏗ; ᎭᏣᏪᏐᎸᏍᏓ, ᎭᎵᏍᏓᏴᎲᏍᎨᏍᏗ, ᎭᏗᏔᏍᏏᏍᏗ, ᎭᎵᎮᎵᎨᏍᏗ. ᎯᎳᏳᎢ ᏳᏢᏂ ᎠᏲᏟ, ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏛ ᏥᏕᎦᏘᏍᏗᏍᎨ ᏍᎩᎾ ᎦᏂᎯᏓ ᎦᏁᎦᏗᏓᎸᎦᏍᏙᏗ ᎦᏰᏌᏛᎢ ᏃᎴ ᏧᏪᎳ ᏣᏕᎦᎵᎩᎡᎮᎢ. ᎠᏎᏃ ᏄᏃᎯᏳᏒᎾ ᎠᏂᏧᏏ ᏚᏂᏖᎸᏁ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩᏃ ᏄᏅᏂᏌᏁ ᏗᏂᏍᎦᎩ ᏄᎵᏍᏔᏁ ᎠᎾᎵᏅᏟ. ᏗᏓᎴᏂᏍᎬᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏧᎳᎭ ᎠᏁᎮᎢ. ᎣᏁᏉ ᎢᏴ ᎤᎧᏌᏬᎸ ᎤᏓᏁᏁ ᎠᎦᏙᎵ ᏫᎵᎻ. ᏴᏫ ᎤᏪᏥ ᎤᎷᏨ ᎠᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎠᏗᏔᏍᎦ, ᎯᎠᏃ ᏂᎠᏂᏪᎭ; ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎤᎬᎥᏍᎩ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ, ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᏕᎾ ᎤᎾᎵᎢ. ᎠᏎᏃ ᎠᎦᏔᎿᎢ ᏧᏪᏥ ᎣᏏᏳ ᎢᎬᏩᏰᎸᎭ. ᎡᎶᏛᏃ ᎤᎪᎲ ᏥᏌ, ᎤᏣᏘ ᎣᏎ ᎤᏰᎸᏁᎢ; ᎪᎯᏗᏳᏰᏃ ᏅᏩᏚᎵᏍᎨ ᎤᎪᏩᏛᏗᏱ, ᏅᏗᎦᎵᏍᏗᏙᏗᏍᎨ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎠᏥᏃᎮᏍᎬ ᎤᏛᎦᏅᎢ, ᎠᎴ ᎤᏚᎩ ᎤᏩᏎ ᎤᎪᏩᏛᏗᏱ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎭᎴᏫᏍᏓ ᎭᏦᏱᎲ! ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏤᎾ ᎾᏍᏉ ᏂᎯ ᏖᎸᎳᏗ ᏙᏗᎳᏗ ᏙᏗᏫᏒᎢ, ᏚᏳᎪᏛᏃ ᎨᏒ ᏓᏨᏯᏓᏴᎡᎵ. ᎤᏁᏅᏎᏃ. ᎤᎦᏃᏩ ᎤᎵᏍᏓᏴᏗ ᏭᏤᎢ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏃᎴ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ ᎠᎩᏍᎬ ᏫᎵᎻ, ᎦᎾᏍᏗ ᎬᏗ ᏓᏣᎪᏍᎨ ᏣᏄᏏ. ᎢᏥᎦᏔᎭ ᎾᏍᎩ ᏂᏥᎦᏔᎾᎥᎾ ᏥᎨᏒᎩ, ᏥᏕᏥᏍᏓᏩᏗᏒᎩ ᎯᎠ ᎾᏍᎩ ᏧᏅᎨᏫ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎾᏍᎩᏯ ᏥᏕᏣᏘᏂᏙᎲᎩ. ᎠᏓᏅᏖᏍᎪ ᎢᏳᏍᏗ ᎠᎪᎵᏰᏍᎬ ᎦᏙᎯ. “ᏂᎦᏓ ᏗᎩᎷᏫᏍᏔᏏ, ᎠᎳᏂ, ᎩᏂᏧᎦ ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ!” ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎠᏓᏙᎵᏍᏙᏗᏱ ᎣᎨᏅ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏛ, ᎠᏓᏅᏙ ᎠᏙᏂᏍᎩ ᎤᏯᎢ, ᏙᎦᏠᏒᎩ, ᎾᏍᎩ ᎤᏣᏛ ᏧᎬᏩᎶᏗ ᏓᏩᏛᎡᎲᎩ ᎬᏩᎾᏝᎢ ᎠᏙᏂᏍᎬ ᎬᏗᏍᎩ. ᎠᎴ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎺᎵᎩᏏᏕᎩ ᎾᏍᎩᏯ ᎤᏬᏎᎭ ᎤᏁᎳᏅᎯ. ᎡᏣᏅᏓᏓ ᎶᏛ ᎤᏓᎵᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏅ ᏚᏂᏅᏤ ᏚᏂᏯᏍᏚᏎᎢ, ᎤᏣᏘ ᎤᏂᏍᏕᎴᎢ. ᏍᎩᏴ ᎣᎯᏍᏙᏗ ᎦᏓᏅᏖᏍᎪᎢ, ᏍᎩᏴᎯ ᏂᎦᏓ ᎩᎦ ᏥᏍᎪᎵ ᏫᎦᏁᎰᎢ. ᎠᏥᏯᏙᏅ ᎨᏎ ᏤᎩᏏᏂ ᏄᎵᏍᎦᏂᏒ ᎦᎳᎱᏂ, ᏔᎵᏁ ᎤᎴᏁ, ᎤᏐᏱ ᏄᏛᏁᎴ ᏍᎦᏬᏂᏏ ᎠᏙᏫ ᎤᎬᏫᏳ ᏥᎨᏎ. ᏫᎦᏃᎯᎵᏙ ᏣᏥ ᎤᏛᏅ. ᎠᎴ ᎠᎦᏔ ᎥᏝ ᎯᎠ ᎢᎬᏩᏪᏎᏗ ᏱᎩ ᎤᏬᏰᏂ, ᎥᏝ ᏱᎬᏯᏚᎵᎭ; ᎠᎴᏬ ᎠᏍᎪᎵ ᎥᏝ ᎯᎠ ᎢᏗᎬᏩᏪᏎᏗ ᏱᎩ ᏧᎳᏏᏕᏂ, ᎥᏝ ᏱᏗᏍᏛᏯᏑᎵᎭ. ᎢᏳᏰᏃ ᎨᏥᎨᏳᎯᏉ [ᎤᏅᏒ] ᏱᏗᏥᎨᏳᎭ, ᎦᏙ ᎢᏥᎭ ᎦᏰᏣᎵᎡᎵᏤᏗ ᎨᏒᎢ? ᎠᏂᏍᎦᎾᏰᏃ ᎾᏍᏉ ᏚᏂᎨᏳᏐ ᎬᏩᏂᎨᏳᎯ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᎳᎪ ᎦᏚ ᏕᏥᏰᎭ? ᎦᎵᏉᎩ, ᎢᎸᏍᎩᏃ ᏧᎾᏍᏗ ᎠᏣᏗ, ᎤᎾᏛᏅᎩ. ᎢᎦᏛᏃ ᎤᎾᏓᏑᏴᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᏗᎨᏫ ᏗᎦᏙᎵ ᏧᏍᏚᎢᎡᎸᎯ, ᎾᏍᏉ ᎾᏍᎩ ᏱᏂᎬᏩᏂᏌᏁ ᏄᏲᎱᏒᎾ ᏱᎦᎨᏎ ᎯᎠ ᎠᏍᎦᏯ? ᎿᏉᏃ ᎠᏴ ᏗᏛᏃᏛ ᎠᎴ ᎢᏓᎴᏂᏙᎯ ᎾᏍᎩ ᎢᏧᎳᎭ ᎡᎦᏘᎾᏫᏛᏗ ᎨᏎᏍᏗ ᎤᎶᎩᎸᎢ, ᏫᏕᏓᏠᎢᏍᏗᏱ ᎤᎬᏫᏳᎯ ᎦᎸᎶᎢ; ᎾᏍᎩᏃ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᎢᏧᎳᎭ ᏫᏕᎮᏍᏗ. ᎠᏴ ᎡᏙᏓᏃ ᏌᏉᏉ. ᎢᏳᏃ ᎩᎶ ᏱᏥᎷᏤᎸ ᎠᎴ ᏄᏲᎸᎾ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᏗᏕᏲᏗ ᎨᏒᎢ, ᏞᏍᏗ ᏕᏥᏁᎸ ᏱᏕᏣᎵᏂᎸᏤᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏰᏥᏲᎵᎴᏍᏗ; ᎾᏍᎩᏯ ᏂᏗᎨᏥᎾᏝᎥᎾ ᎢᏳᏍᏛᏁᏗ ᏂᏣᏛᏁᎮᏍᏗ, ᎥᏝᏍᏗ ᎠᏗᎾ ᏂᏕᏥᎾᏝᎥᎾ ᎨᏒ ᏱᏨᏗᏍᎨᏍᏗ ᏱᏧᏢᎥᏍᎨᏍᏗ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏧᏅᏏᏓᏍᏗ ᎢᏳᎾᏛᏁᏗ ᏂᏣᏛᏁᎮᏍᏗ. ᎤᏙᎯᏳᎯᏰᏃ ᏚᏓᏂᎸᏨᎩ ᏥᏬᏁᏔᏅᎢ; ᎠᏎᏃ ᎤᏟᎯᏳ ᏄᎵᎦᎵᏴᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎤᏩᏒᏉ ᎤᏓᏅᏖᏛ ᎢᏥᏩᏛᎲᏒᎩ. ᏓᏆᏒᎭᏂᎸ ᏕᎦᏰᏌᏛ ᏚᎦᏌᏛ ᏧᎪᎳ . ᏧᏍᏆᏴᏍᏗ, ᎤᏪᏅᏒ ᎤᏣᏪᏐᎸᏍᏕ, ᎩᎳᏈᏴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ ᏭᏓᏒᏍᏔᏁᎢ. ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸᎩ ᏗᎦᏐᎯᏍᏗᏱ ᏦᏓᏂ ᏍᎪᏂᏗᏢ ᎾᎿ ᏣᏂ ᏓᏓᏪᏍᎬᎢ. ᏧᎬᏩᎶᏗ ᎢᏥᎲᎢ ᎤᎪᏒ; ᏗᏣᏄᏬᏃ ᏥᏍᎪᏴ ᎦᏂᏯᎥ; ᎤᏓᏅᏘ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᏍᎩ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎦᏁᎸ ᎠᏂᎮ, ᎤᏣᏘ ᏗᏁᎸᎥᏍᎩ ᏴᏫ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏂᎪᎯᎸ ᎠᏓᏙᎵᏍᏓᏁᎯ. ᎾᎿ ᎤᎾᏤᎵ ᏥᏍᎪᏴ ᏂᎦᎵᏬᎬᎾ ᏗᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᏂᎬᏠᏍᎬᎾ ᏗᎨᏒᎢ. ᎠᎳᏂ ᎤᏓᏍᏓᏴᏗ ᏦᎳᏂ ᏫᏗᎨᏰᎢ. ᏄᏬᎯᏳᏒᎾᏰᏃ ᎠᏍᎦᏯ ᎤᏓᏅᎦᎸᏛ ᎢᎩ ᎤᏓᎵᎢ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᏄᏬᎯᏳᏒᎾ ᎠᎨᏴ ᎤᏓᏅᎦᎸᏛ ᎢᎩ ᎤᏰᎯ ᎢᏳᏩᏂᏌᏛ; ᎥᏝᏰᏃ ᎾᏍᎩ, ᎿᏉ ᏗᏤᏥ ᎠᏂᎦᏓᎭ ᏱᎩ; ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎤᎾᏓᏅᎦᎸᏛ ᎢᎩ. ᎠᎴ ᎬᏂᏳᏉ ᎡᎮ ᎠᏍᎦᏯ ᏌᎩᏯ ᏧᏙᎢᏛ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎨᏎ ᎠᏕᎸᎠᎩᏏᏙᎯ, ᎠᎴ ᎤᏪᎿᎢᏳ ᎨᏎᎢ. ᎪᎯᎢᏴ ᎤᎵᏛᏓᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎨᎢ ᎦᏅᏅ ᏭᎶᏎᎢ ᎠᏂᎪᏕᏍᎩ ᏗᏁᎲ ᎢᏣ. ᏯᎾᎵᎪᎲᏍᎬ? ᎨᏍᏗ ᏯᏆᎵᏍᎪᎢ. ᎾᎦᎥ ᎪᎱᏍᏗ ᎠᏂᏃᏗᏍᎬ ᎦᏃᏙᏗᏱ, ᎢᏥᎩᏍᎨᏍᏗ, ᎠᎴ ᏝᏍᏗ ᎪᎱᏍᏗ ᏱᏣᏛᏛᎲᏍᎨᏍᏗ ᎠᏓᏅᏙᎩ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎧᏂᎩᏛ ᏚᏳᎪᏛ ᎡᎶ. ᎢᏳᏰᏃ ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᏗᎩᏲᎱᏒᎯ ᎨᏎᏍᏗ, ᎢᏙᎯᏳᎲᏍᎦ ᎢᏧᎳᎭ ᏗᏛᏃᏛ ᎢᏳᎵᏍᏙᏗᏱ; ᏔᎵ ᎢᏳᏩᎬᏘ ᏚᏏᏛᏂᎸ ᎠᎦᏴᎵᎨ. ᎠᎴ ᎤᏂᏣᏛᎩ ᎠᏂᏌᎺᎵ ᎾᎿ ᎦᏚᎲ ᎠᏁᎯ ᎬᏬᎯᏳᏅᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏃᎮᎸ ᎠᎨᏴ ᎯᎠ ᏥᏄᏪᏎᎢ; ᎠᎩᏃᏁᎸᎩ ᏂᎦᎥ ᎾᏆᏛᏁᎵᏙᎸᎢ. ᏞᏍᏗ ᏗᏣᏓᎨᏳᏔᏅᎩ ᎢᏗᏣᏓᏛᏁᏗ ᎨᏒᎢ, ᏂᎬ ᎣᏏᏳ ᏗᏣᏓᏰᎸᎾᏁᎸᎯ ᏱᎩ ᏞᎦ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ, ᎾᏍᎩ ᎢᏣᏜᏅᏓᏕᏗᏱ ᎠᎹᏟ ᎢᏨᏗᏱ ᎠᎴ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᏔᎵᏁᏉ ᏙᏣᏓᏩᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏎᏓᏂ ᎢᏥᎪᎵᏰᏗᏱ ᏂᎨᏒᎾ ᎨᏣᎵᏍᏆᏂᎪᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᏍᏗ. “ᎢᎩᏅᏅᎢᏍᏗ ᏃᏉ ᎠᎵᏉ ᎾᏍᎩ ᎢᏳᏍᏗ [ᎠᏍᎦᏯ] ᏅᏍᏛᏛᎢ ᎾᏍᎩ ᎤᏂᏣᏘ ᏥᎬᏩᏍᏛᏗᏍᏔᏅ. ᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᏥᏂᎨᏥᏪᏎᎴ ᎡᏘ ᏣᏁᎮᎢ; ᏞᏍᏗ ᏣᏓᎸᎩ; ᎠᎴ ᎩᎶ ᎠᏓᎯᎮᏍᏗ ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ ᏗᏄᎪᏗᏍᎩᏱ. ᏕᏥᏲᎵᎸᎭ ᏆᎶᎳᎦ, ᎠᎴ ᏧᎵᎠ, ᏂᎵᎠ, ᎠᎴ ᎾᏍᎩ ᎤᏙ, ᎠᎴ ᎣᎵᎻᏆ, ᎠᎴ ᎾᏂᎥᏉ ᎤᎾᏓᏅᏘ ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᏁᎭ. ᎬᏂᎨᏒ ᎬᎭᏂᎲ ᎠᏉᏰᏅ ᏃᎴ ᏥᎴᏂ ᎦᎸᎳᏗᏨ. ᎿᏉᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᏳᎯ ᎠᎦᏘᏏᏗᏢ ᎢᏥᎦᏯᎷᎥᎦ, ᏙᏓᏥᏩᏛᎯᏃ. ᎰᏩᏃ ᎤᏂᎦᏯᎷᏅᎩ, ᎿᏉᏃ ᎥᏝ ᏰᎵ ᎬᏩᎾᏎᎯᏍᏗ ᏱᎨᏎᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᏣᏛ ᎠᏣᏗ. ᎦᏨ ᎮᎵ ᎠᏆᏚᎵ ᎠᏇᏓᏍᏗ ᎯᎪ ᎤᏓᏏᏂᏕᎾ?” ᎩᎶ ᎼᏏ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏴᏛ ᎢᏳᏩᏁᏔᏅᎯ ᏥᎨᏎ ᎠᏲᎱᏍᎨ ᎦᏰᏥᏙᎵᏍᏗ ᏂᎨᏒᎾ ᎠᏂᏔᎵᎭ ᎠᏂᎦᏔᎯ ᎤᏂᏃᎮᎸᎯ ᎬᏔᏅᎯ; ᎢᏳᏃ ᎩᎶ ᎤᏓᏅᎦᎸᏛ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎠᏖᎵᏙ ᎦᎸᏉᏗ ᎨᏎᏍᏗ, ᎦᎸᏉᏔᏅᎯ, ᎠᎴ ᏱᏍᏛ ᎢᎬᏁᎸᎯ ᎪᎱᏍᏗ ᎤᏩᏙᏗᏱ ᎦᏁᎳ; ᎠᎴ ᎠᏛᏅᎢᏍᏔᏅᎯ ᎾᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᎬᏩᎵ. ᎠᏎᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏞᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ, ᎾᎯᏳᏰᏃ ᏱᎩ ᎤᏣᏘ ᏯᎾᎵᏖᎸᎲᎦ ᏴᏫ. ᏣᎢ ᎢᏳᏩᎬᏘ ᏩᏇᏙᎸ ᏩᏏᏓᏂ ᏍᎩᏴ ᏚᏕᏘᏴᏌᏗᏒ, ᎠᏆᏟᏂᎬᏁᎸ ᎨᏍᏗ ᏲᎦᎵᏍᏕᎸᏔᎾ. ᎬᏩᏟᏍᏗ. ᎠᏴ ᏗᎩᏲᎱᏒᎯ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᎦᏙ ᏱᏚᎵᏍᏙᏓ ᏰᎵ ᎠᏏ ᎾᎿ ᎠᏓᎴᏂᏓ? ᎠᎴ ᏓᎩᎪᎲ ᏕᎦᏍᎩᎸᎢ, ᎾᎿᏃ ᎤᎾᏅᏅᎩ ᎠᎴ ᏧᏄᎪᏙᏗᏱ ᎥᎨᎦᎵᏍᎪᎸᏓᏁᎸᎩ; ᎠᎴ ᏙᏥᎪᎥᎩ ᏧᎾᏓᏅᏙ ᏗᎨ ᏥᏍᎫᏕᏒᎯ ᎾᏍᎩ ᏥᏌ ᎠᏂᏃᎮᏍᎬ ᎤᏂᏍᏛᏛᎯ ᎠᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏂᏃᎮᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᏅᎩ-ᏗᎦᏅᏌᏗ, ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᏗᎨᎪᏪᎳᏅᎯ ᏂᎨᏒᎾ ᏗᏂᎬᏓᎨᏂ, ᎠᎴ ᏧᏃᏰᏂ; ᎠᎴ ᎾᏍᎩ ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᎠᏁᎲᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎥᎨᏒᎩ ᏌᏉ ᎢᏯᎦᏴᎵᎢᏧᏕᏘᏴᏛ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏏ ᏔᎵ ᎤᏛᏕᎨᏍᏗ ᏕᏣᏓᏅᏛᎢ ᎡᎺᏅ ᎠᏏᎳᏛᏗ! ᎤᎦᏅᎾ ᏄᏪᏂᏌᏁ ᎤᎵᏌᎵᏓᏁ ᎨᏴ, ᏰᎵᏉ ᎠᏍᏛᎩ ᎨᏎ ᏦᎩ ᎢᏣ ᏭᏓᏬᎥᏍᏗ. ᎾᏍᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎦᏃᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏕᎸ-ᎤᏁᎬ, ᎠᎴ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏅᏯ, ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ, ᎠᎴ ᎤᏏᏙᎵ ᏙᎴᏛ, ᎠᎴ ᏗᏕᎭᎷᎨᎢ, ᎠᎴ ᏗᏩᎾᎨᎢ, ᎠᎴ ᏗᎩᎦᎨᎢ, ᎠᎴ ᎾᎦᎥ ᏗᎦᎸᏉᏗ ᎠᏓ, ᎠᎴ ᏂᎦᎥ ᏗᏖᎵᏙ ᎧᎹᎹ ᏧᏓᏄᏙᏅᎯ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏂᎦᎥ ᏗᏖᎵᏙ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᏓ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎥᏣᏱ, ᎠᎴ ᏔᎷᎩᏍᎩ, ᎠᎴ ᎠᏂᏓᏫᏍᎦᎨ ᏅᏯ, ᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏓᏍᏗ, ᎥᎩᏅᏏᏛ ᎢᏴᏋᏁᎸᎯ, ᎥᏆᏓᏓᎴᏔᏅᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏆᎵᏥᏙᏗᏱ, ᎠᏗᎾ ᎤᏁᎳᏅᎯ ᎤᏣᏔᏅᎯ ᎤᏓᏙᎵᏣᏘ ᎾᏍᎩ ᎢᎩᏯᏅᏛ ᏥᎩ ᎤᏤᎵ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎦᎸᏉᏗᏳ ᎨᏒ ᏫᎩᎷᎯᏍᏗᏱ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ, ᎾᏍᎩ ᏞᎦ ᎢᏥᎩᎵᏲᏨᎯ ᎨᏎᏍᏗ, ᏂᏥᎪᎸᎾ ᏫᏂᏨᎦ, ᎠᎴ ᏫᏣᎵᏂᎪᎯᏍᏓ, ᎠᎴ ᎢᏣᎵᏂᎩᏛ ᏫᏂᏨᎦ, ᎠᎴ ᎦᏰᏥᏖᎸᏗ ᏂᎨᏒᎾ ᏫᏂᏨᎦ. ᎦᎶᏁᏛ ᎢᎦᎫᏴᎲ ᎢᎫᏓᎴᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏓᏍᎦᎢᏍᏙᏗ ᎨᏒᎢ, ᎠᏥᏍᎦᏨᎯ ᏄᎵᏍᏔᏅ ᎠᏴ ᎢᎩᏍᏕᎵᏍᎬᎢ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᎠᏥᏍᎦᏨᎯ ᎩᎶ ᏡᎬ ᎠᎦᏛᏅᎯ. ᏓᎪᏩᏘᏍᎬ ᎤᏅᏌ ᏧᏂᎵᏏ ᎬᏂᎨᏒ ᏂᏓᏅᎭᏁᎲ ᏃᎴ ᎠᏂᏃᎮᏍᎬ ᏍᎩᏴ ᎢᎦ ᏧᎷᏤ ᎤᏂᎵᏦᏩᏛ ᎩᎦᎭ ᏗᎫᏍᎨᏂ ᎢᏴ, ᎤᏣᏍᏈᏗ ᎦᏐᎯ ᎦᎨᏒ ᎠᎵᏎᎲ, ᎡᏆ ᏲᎾ, ᎬᏂᎨ ᎦᏁᎦ ᎤᏩᏇᏅᏛ ᎭᏫᏯ. ᏂᎦᏗᏳᏃ ᎬᏩᏕᏦᏁᎢ, ᎠᎴ ᎤᎾᎵᏎᎢ. ᏥᏯᎵᎡᎵᏤᎭ ᎠᏆᏁᎳᏅᎯ, ᎾᏍᎩ ᎤᏟ ᎢᎦᎢ ᏗᎬᎩᏬᏂᎯᏍᏗ ᎨᏒ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎡᏍᎦᏉ ᏂᎯ ᏂᏥᎥᎢ; ᏣᎬᏫᏳᎯ, ᎯᏯᏙᎵᎩ ᎠᏧᏣ ᎠᏇᏥ, ᎬᎵᏰᏃ ᎬᏩᎯᎭ, ᎠᎴ ᎤᏣᏘ ᎠᎩᎵᏲᎦ, ᏯᏃᎩᏳᏰᏃ ᎠᏥᎸᏱ ᎬᏛᎪᎢ ᎠᎴ ᎠᎹᏱ ᎠᎬᎪᎢ. “ᏙᎯᏤᎵᎠ ᏍᎩᎾᎾ ᏏᏆ?” ᎠᏛᏛᎲᏍᎨᎢ ᎰᎻ, ᎡᏆ ᎤᏤᎸ. ᎣᏂᏃ ᏅᏩᏓᎴ ᏄᏍᏕ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎴ ᎠᏂᏔᎵ ᎾᎿ ᎠᏁᎳ ᎠᎾᎢᏎᎢ, ᏙᏗᎦᎶᎨᏒ ᏩᏂᎦᏖᎢ. ᎠᎴ ᎾᏍᎩ ᎢᎦ-ᎦᏘᏍᏗᏍᎩ ᎤᎵᏏᎬ ᏚᎸᏌᏕᎢ, ᎤᎵᏏᎩᏃ ᎥᏝ ᏱᏑᏓᏂᎸᏤᎢ. ᏅᏩᏍᏗ ᎠᏁᏉᎦ ᏂᏣᏓᎨᏒ.” “Ꭽ!” ᎤᏪᎵᏎ ᏥᏍᏚ. ᏅᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯᎾ ᎢᎳᎪ ᎡᏣᏚᎦ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏍᎪᎯᏧᏈ ᎢᏳᏟᎶᏛ ᎤᏣᎴᏍᏗ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎯᎾᎩ ᎪᏪᎵ ᎡᏣᏚᎬᎢ, ᎠᎴ ᏁᎳᏍᎪᎯ ᎰᏪᎸᎦ. ᎠᏴᏰᏃ ᏓᏨᏁᎵ ᎢᏥᏪᏍᏗᏱ ᎠᎴ ᎠᎦ-ᏙᎥᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᏂᎦᏛ ᎨᏣᏈᏗ-ᏍᎩ ᏰᎵ ᏗᎬᏩᏂ-ᏘᎸᏍᏗ ᎠᎴ Ꭼ-ᏩᏂᏎᎷᎩᏍᏗ Ꮒ-ᎨᏒᎾ ᎨᏎᏍᏗ. ᏂᎯ ᎡᎵᏊ ᏱᏣᎾᏔ Ꮩ ᎤᏍᏗ ᎨᏒ.” ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎢᏨᏃ ᎾᏍᎩ ᎢᏣᏓᏅᏘ ᎨᏒ ᏂᏗᏥᎪᎾᏛᏔᏅᎾ ᎢᎨᏎᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ, ᎥᏝ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏴᎨᏥᏴᎭ. ᎿᏉᏃ ᏚᏚᎪᏔᏅ ᎢᏓᎵ ᏭᎩᏅᏍᏙᏗᏱ ᏥᏳ, ᏚᏂᏲᏒᎩ ᏉᎳ ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᏅᏩᎾᏓᎴ ᎠᏂᏴᎩ, ᎾᏍᎩ ᏚᏂᏲᎯᏎᎸ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᏧᎵᏯᏏ ᏧᏐᎢᏛ, ᎨᎳ ᏑᎾᏓᏡᎩ ᎨᏒ ᎣᎦᏍᏓ ᏧᏤᎵᎦ. ᎯᎠᏃ ᎾᏍᏉ ᎠᏄᎦᎸᎯ ᏣᏫᏎᎢ, ᎾᏯᎩ ᏣᏛᎩᏯᎪ ᎧᏃᎮᏛ, ᎡᎶᎯᏃ ᎤᏪᎵᎯᏍᏗ ᎨᏒ ᎠᎴ ᎨᏅᎢᏍᏗ ᎨᏒ ᎤᏓᎵᏓᏍᏛ ᎠᏂᏁᏄᎳᏍᏗᏍᎪ ᎧᏃᎮᏛ, ᎾᏍᎩᏃ ᎾᎦᏔᏛᎬᎾᏉ ᎨᏐᎢ. ᎯᎸᎢᏴ ᎣᏏᏉ ᎨᏐᎢ. ᎯᎸᎢᏴ Ꮳ. ᏕᏤᏯᏙᏤᎮᏍᏗ ᎠᏗᎾ ᏴᏫ, ᏕᎦᎳᏫᎥᏰᏃ ᏙᏓᎨᏣᏘᏃᎵ, ᏧᏂᎳᏫᎢᏍᏗᏱᏃ ᏙᏓᎨᏥᎵᎥᏂᎵ. ᏌᎳᎻᏃ ᎠᏁᏙᎲᎢ ᎤᏂᏃᎮᎴ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎾᏘᏁᎮᏃ ᎾᏍᏉ ᏣᏂ ᎤᏂᏍᏕᎸᎯᏙᎯ. ᎢᏳ ᎠᎴ ᎦᎶᏁᏛ ᏧᎴᎯᏌᏅᎯ ᏂᎬᏒᎾ ᏱᎩ, ᎢᏦᎯᏳᏒ ᎠᏎᏉᏉ ᏂᎦᎵᏍᏗᎭ; ᎠᏏᏉ ᎢᏥᏍᎦᏅᏨ ᎢᏣᏚᏓᎳ. ᎾᏍᎩ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᏱᏥᎦᏔᎭ ᎢᏣᏛᏁᏗᏱ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ ᎢᏥᏰᎸᎢ ᎤᏓᏅᎦᎸᏛ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎤᎵᏂᏛᏃ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᏕᏥᎩᎵᏲᎢᏍᏗᏍᎬᎩ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᎬᎢ; ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎤᎬᏩᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏕᏥᎧᎿᏩᏗᏒᎢ, ᎦᏴᎩᎳᏫᏎᏗ ᏂᎨᏒᎾ ᎨᏒᎩ. ᎿᏉᏃ ᏧᏓᏏ ᏚᏘᏁᏅ ᏑᎾᏓᏡᎩ ᎠᏂᏯᏫᏍᎩ, ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏉᎵᏏ ᏅᏓᏳᎾᏓᎴᏅᎯ, ᎾᎿ ᎤᎷᏨᎩ, ᏓᏂᏁᎲᎩ ᏗᏨᏍᏙᏗ ᎠᎴ ᏗᎵᏍᎦᏍᏙᏙᎢ. ᏗᏆᏤᎵᏃ ᎠᏂᏔᎵ ᎠᏂᎦᏔᎯ ᏓᎦᏥᏁᎵ [ᎤᎾᏙᎴᎰᎯᏍᏗᏱ] ᎠᎴ ᎠᎾᏙᎴᎰᏍᎨᏍᏗ ᏌᏉ ᎢᏯᎦᏴᎵ ᏔᎵᏧᏈ ᏑᏓᎵᏍᎪᎯᏃ ᏧᏒᎯᏛ, ᏧᏏᏕᏅ ᏚᎾᏄᏩᎡᏍᏗ. ᎾᎿ ᎠᏂᏂᏜᎥᎩ ᎤᏂᏣᏘ ᏧᏂᏢᎩ, ᎠᎴ ᏗᏂᎨᏫ, ᎠᎴ ᏗᏂᏲᎤᎵ, ᎠᎴ ᎤᏅᎢᏒᎯ, ᎠᏂᎦᏘᏴᎩ ᎤᎵᏖᎸᏗᏱ ᎠᎹ. ᏣᏥᏚᎢᏍᏓᏁᎴᏰᏃ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎡᎶᎯ, ᎥᏝ ᎡᏆᎭᎻ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎨᏎᎢ, ᎪᎯᏳᏗᏍᎩᏂ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ. ᎠᎴ ᎩᎶ ᎤᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ ᎾᏍᎩ ᎡᏥᎾᏝᎢ ᎨᏎᏍᏗ. ᎢᎦ ᏧᏘᏍᏓᏁᏗᏱ ᎤᎵᏏᎬ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᏓᏩᏗᏍᏙᏛ ᏣᏂᎾ, ᎠᎴ ᏗᎦᏖᏅᏍᏗᏱ ᏅᏩᏙᎯᏯᏛ ᎦᏅᏅᎢ. ᎯᎠ ᏄᏂᏪᏎᎢ; ᎯᎠ ᎣᏂᏱ ᎤᏂᎷᏨᎯ ᏌᏉᏉ ᎢᏳᏟᎶᏛ ᏚᏂᎸᏫᏍᏓᏏ, ᎢᏧᎳᎭᏉᏃ ᏅᏍᎩᏴᎦ ᎠᏴ ᎾᏍᎩ ᎦᎨᏒ ᎠᎴ ᎤᏗᎴᎬ ᎢᎦ ᏦᎩᎸᏫᏍᏓᏁᎸᎯ. ᎾᏂᎥ ᏗᎨᏥᎾᏝᎢ ᎾᏍᎩ ᏗᎨᏥᎩᎳᎾᎳ ᏥᎩ ᎤᏣᏘ ᏧᏂᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏗᎬᏩᏂᎾᏝᎢ, ᎾᏍᎩ ᏚᏙᎥ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏤᎵ ᏗᏕᏲᏗ ᎨᏒ ᎠᏐᏢᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᎠᏂᏔᎵ ᎠᏂᎨᏴ ᎠᏂᏍᏙᏍᎨᏍᏗ ᎠᏍᏙᏍᎩᏱ, ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ. “Ꭳ, ᎪᎱᏍᏗ ᏂᎬᏁ,” ᎤᏛᏁ. ᎤᏛᏅ ᎠᏌᎻᏓ, ᏑᎾᎴᎢᏉ ᎤᎾᏂᎩᏎ ᎠᏦᎭᏴ, ᏚᏂᎭᏯᎸᏎ ᏴᏫ ᏧᎾᏘᏃᎯᏍᏗ ᎠᏦᎭᏴ. ᎢᏳᏍᎩᏂ ᏗᏍᏓᏓᏅᏟ ᎠᎵᏍᏓᏴᏗ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎡᎯᏍᏗ ᏱᏯᏓᏅᏓᏗᏍᏔᏅ, ᎿᏉ ᎥᏝ ᎠᏓᎨᏳᏗ ᎨᏒ ᏴᏗᎭ ᎾᏍᎩ ᎿᏛᏁᎲᎢ. ᏞᏍᏗ ᎭᎵᏍᏓᏴᎲᏍᎬ ᎯᏛᏙᏔᏅᎩ ᎾᏍᎩ Ꮎ ᎦᎶᏁᏛ ᎤᏲᎱᎯᏎᎸᎯ. ᎠᎴ ᎩᎶ ᏠᎨᏏ ᎡᏙᎯ ᏞᏍᏗ ᏴᏗᎤᏨᏎᏍᏗ ᎤᏄᏬ ᏳᏁᏐᎴᏍᏗ. ᎿᏉᏃ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏥᏍᏕᎾ ᎠᎴ ᏣᏂ ᏪᏍᏗᏃᎲᏏ ᏄᏍᏛ ᎢᏍᏗᎪᎲ ᎠᎴ ᏄᏍᏛ ᎢᏍᏓᏛᎦᏅᎢ; ᎾᏍᎩ ᏗᏂᎨᏫ ᎠᏂᎪᏩᏘᏍᎬᎢ, ᏗᏂᏲᎤᎵ ᎠᏁᏙᎲᎢ, ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᎨᏥᏅᎦᎵᏍᎬᎢ, ᏧᏂᎵᎡᏅ ᎠᎾᏛᎩᏍᎬᎢ, ᏧᏂᏲᎱᏒᎯ ᏕᎨᎦᎴᏗᏍᎬᎢ, ᎤᏲᏃ ᎢᏳᎾᏛᎿᏕᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᎦᎵᏥᏙᏁᎲᎢ. ᎪᎯᏍᎩᏂ ᎿᏉ ᎢᎸᎯᏢ ᏄᏜᏅᏛᎾ ᏥᎩ ᎠᏂ ᎤᏚᏫᏛ, ᎠᎴ ᎢᎸᏍᎩ ᎾᏕᏘᏴ ᎤᏣᏘ ᏥᏅᏆᏚᎵᏍᎪ ᏫᏨᎷᏤᏗᏱ; ᎩᎶᏍᎩᏂ ᎠᏥᎪᎵᏰᏍᎪᎢ ᎢᏳᏃ ᎤᏩᏒ ᎤᏚᎵᏍᎬ ᏧᏘᏁᎯ ᎠᎴ ᏧᏌᏛᎥᏍᎪᎢ. ᎾᎿᏃ ᏦᎢ ᎢᏯᏅᏙ ᎤᏪᏙᎸ, ᎠᎴ ᎠᏂᏧᏏ ᏧᏄᎪᏔᏅ ᎪᎱᏍᏗ ᎬᏩᏁᏗᏱ, ᏏᎵᏱ ᏓᏰᏏᏒᎩ ᏥᏳᎯ ᏛᏣᏂᏒᎩ, ᎤᏓᏅᏖᎸᎩ ᏛᎤᏨᏍᏗᏱ ᎼᏏᏙᏂ ᏭᎶᎯᏍᏗᏱ. ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎲ ᎠᏂᏧᏏ ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ ᎾᏍᎩ ᎤᏁᎴᏅᎯ ᎦᏁᏟᏴᎡᏗ ᎨᏒ ᎣᏓᏅᏛᎢ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᏍᏗ ᏛᏥᎷᏥ ᎠᎴ ᏛᏥᎵᏦᏘᏌᏂ ᏕᏫ ᎤᏤᎵ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎡᎳᏗ ᎤᏪᏡᏒᎯ ᏥᎩ, ᎠᎴ ᏛᏥᎵᏦᏘᏌᏂ ᎤᎵᏦᏙᎠᏒᎢ, ᎠᎴ ᏛᏥᎧᎯᏌᏂ. ᎤᏂᎸᏉᏗ ᎨᏒ ᎠᏂᏫᎾ ᎤᏂᏚᎩ ᏃᎴ ᎠᏂᎫᏌ ᏃᎴ ᎠᏂᏣᎳᎩ ᏃᎴ Seminole ᏗᏂᎳᏫᎩ ᏩᏏᏓᏂ ᎦᏚᎲ, ᏓᏂᏃᎮᏍᎬ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ. ᏯᎾᎵᏖᎸᎲᏍᎬᎾ ᎤᏂᏃᏕᎾ. ᎩᎶᏰᏃ ᎾᏍᎩ ᏂᎦᏡᏗᏍᎬᎾ ᏥᎨᏐ, ᎾᏍᎩ ᎢᎦᎵᎪᏁᎯ ᎨᏐᎢ. ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᏓᏍᏗᏰᏗᎭ ᏴᏫ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎲ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏂᏲᏍᏙᏗᏱ. “ᎯᏃᏉ ᎨᏒ,” ᎤᏛᏁ ᎰᎻ, ”ᎭᏂ ᎡᎶᎯ ᏅᎩᏉ ᎾᏂᎠ ᏴᏫ ᎠᏂᎦᏔ ᎤᏍᏆᏂᎩᏘ ᏄᎵᏍᏔᏅᎢ---ᎠᏋᏌ, ᎠᏆᏓᎵ ᎠᎳᏂ, ᏥᎾᏌᎢ ᏣᏄᏏ, ᏃᎴ ᏂᎯ.” ᎢᎦᏛᏃ ᎠᏄᎦᎸᎯ ᎤᎳᎨᏯᏛᏤᎢ; ᎠᏄᎦᎸᏃ ᏧᏛᏎᎢ, ᎠᎴ ᎤᏁᏄᎳᏍᏔᏁᎢ, ᎠᎴ ᏄᎾᏄᎪᏫᏒᎾ ᎨᏎ ᎤᎦᏔ. ᎨᏍᏗ ᏱᏥᎪᎠ ᎡᏂᏏ ᎠᏂᏁᎵ ᏦᏲᏎᎸ ᏣᎵ. ᎯᎢᏃ ᏍᏏᏉᏯ ᎠᏍᎦᏯ ᎤᎵᏍᎨᏓ ᎨᏎ, ᎢᏓᏗᎰ. ᎠᏎᏃ ᏥᏌ ᏫᏚᏯᏅᎲ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᎦᏔᎭ ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎨᏥᏰᎸᎢ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᏗᎬᏩᎾᏁᎶᏙᏗᏱ ᎾᏅᏁᎰᎢ; ᏧᏂᎸᏉᏗᏃ ᎨᏒ ᎬᏩᎾᏓᎵᏁᎯᏕᎰᎢ. ᎯᎠᏍᎩᏂ [ᎠᏍᎦᏯ] ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏤᎭ ᎤᎶᏏᎲᏍᏗ ᏂᎨᏒᎾ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎢ. ᏁᎵᏍᎬᏃ, ᏗᏤ ᏗᎳᏑᎶ ᏦᎯᏍᏙᏗ ᏧᎳᏑᏝᏅ. ᎣᏍᏓ ᎠᏓᎾᏫᏛᏗ ᏃᎴ ᎠᏗᏍᎦᎶᏗ. ᎩᎶᏰᏃ ᏱᎦᏬᏂᎭ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᏴᏫ ᏱᏗᎦᏬᏁᏗᏍᎪᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ; ᎥᏝᏰᏃ ᎩᎶ ᏳᏬᎵᏤᎰᎢ; ᎠᏓᏅᏙᏍᎩᏂᏃᏅ ᎬᏗ ᎦᏬᏂᏍᎬ ᎤᏕᎵᏛ ᎦᎾᎸᎪᏫᏍᎪᎢ. ᎠᏎᏃ ᎢᏙᎯᏳᎲᏍᎦ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏴ ᎡᎩᏍᏕᎸᏗ ᎨᏒᎢ, ᎾᏍᎢᏯ ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗ ᏥᎩ. ᏃᎴ ᏍᏈᏍᏙᏒ ᎤᎵᎮᎵᏍᏗ ᎤᏩᏙᎯᏴᏓ ᎢᎦ ᏭᏩᎦᏘᏗᏒ. ᎢᏓᎵᏅᏟ, ᎢᏣᏖᏆᎶᎯ ᏍᎩᏍᏓᏩᏕᎩ ᎨᏎᏍᏗ, ᎠᎴ ᏕᏣᎦᏌᏯᏍᏕᏍᏗ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ ᎠᏁᏙᎲᎢ, ᎾᏍᎩ ᎠᏴ ᏍᎩᏯᏕᎶᏆᎡᎯ ᏥᏕᏍᎩᏯᎧᎭ. ᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᎪᎲ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎬ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ, ᎯᎠ ᏂᏚᏂᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎦᏙᏃ ᎢᏧᎳᎭ ᏣᎾᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎢᏧᎳᎭ ᏣᎾᏗᏔᏍᎦ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾᎢ. ᎿᏉᏃ ᏅᎩᏁ ᎢᏳᎾᏓᏁᏟᏴᏛ ᎨᏒ ᎠᏂᏯᏫᏍᎩ ᏒᏃᏱ ᏥᏌ ᏫᏚᎷᏤᎸᎩ ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏒᎩ. ᏕᎤᎧᎿᏅᏰᏃ ᎤᏲ ᏄᏛᎿᏕᎬ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ; ᎬᏂᏳᏉᏰᏃ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎾᎾᏓᏁᏟᏴᏏᏒ ᏴᏫ ᎦᎸᏉᏗᏳ ᎬᏉᏎᎮᏍᏗ. ᏅᏩᏙᎯᏯᏛᏃ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒ, ᎾᏍᎩ ᏥᎦᎶᏒᏍᏗᎭ ᏂᎦᎥ ᎬᏓᏅᏖᏗ ᎨᏒᎢ, ᏧᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏗᏥᎾᏫ ᎠᎴ ᏗᏣᏓᏅᏙ, ᎦᎶᏁᏛ ᏥᏌ ᏂᎬᏂᏏᏍᎨᏍᏗ. ᎠᎴ ᎾᏍᏉ ᎦᎸᏉᏗ ᎠᏓᏅᏙ ᎣᎪᎯᏳᏓᏁᎯ; ᎦᏳᎳᏰᏃ ᎯᎠ ᎾᏍᎩ ᎢᏳᏪᏛ ᏂᎨᏐᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏎᎵᏔᏁ ᎤᏚᎢᏍᏓᏁᎴ ᎤᏁᏗᏱ ᏄᏍᏛᏉ ᎤᏔᏲᎸᎢ. ᎾᏍᏉᏃ ᎤᏂᏣᏖ ᏕᎦᏚᏩᏗᏒ ᏅᏓᏳᏂᎶᏒᎯ ᏥᎷᏏᎵᎻ ᎠᏂᎷᎨᎢ, ᏓᎾᏖᏃᎯᎮ ᏧᏂᏢᎩ ᎠᎴ ᎠᏂᏍᎩᎾ ᎬᏩᏂᏱᎵᏙᎯ; ᏂᎦᏛᏃ ᏕᎨᏥᏅᏩᏁᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎢᏳᏃ ᏔᎵ ᏄᏛᏛᎾ ᎢᎨᏎᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᎵᏬᏨᎯ, ᎤᏩᏒᏉ ᎨᏒ ᎢᏳᏍᏗ. ᎩᎶ ᎾᏱᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎠᎴ ᎾᎩᏍᏓᏩᏕᎬᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎠᏴ ᎠᏆᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ. ”ᏩᎾᎢ ᏗᎦᎶᏅᎮᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᎡᎵᏍᏗ ᎯᏃᎯᏳᎲᎦ, ᎤᏛᏅ. ᎢᏳ ᎠᎴ ᎩᎶ ᎢᎪᏣᎴᏍᎨᏍᏗ ᎢᎦᏛ ᎧᏃᎮᏛ ᎪᏪᎵᎯ ᎯᎠ ᎾᏍᎩ ᎠᏙᎴᎰᏒᎯ ᎨᏒᎢ, ᎤᏁᎳᏅᎯ ᎠᏎ ᏓᏳᏬᏣᎳᎡᎵ ᎤᏤᎵ ᎨᏒ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎦᏚᎲᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᎪᏪᎸ ᎠᏂ ᎪᏪᎵᎯ. “ᎨᏍᏗ ᏳᏩᎾᏔ ᏙᎤᏍᏗ ᎨᏒ,” ᎤᏛᏁ ᏌᎶᎵ. ᎬᎾᏰᏍᎬᏰᏃ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎯᏍᏓᏱᏳ ᎨᏒ ᎯᏍᎦᏯ; ᎯᎩᏍᎪᏰᏃ ᎾᏍᎩ ᏂᏣᏅᎾ ᎨᏒᎢ, ᎠᎴ ᎯᏍᎫᏕᏍᎪ ᎾᏍᎩ ᏂᏣᏫᏒᎾ ᎨᏒᎢ. ᎿᏉᏃ ᏔᎵᏁ ᏭᏂᏯᏅᎲᎩ ᎠᏍᎦᏯ ᏗᎨᏫ ᎢᏳᎵᏍᏔᏅᎯ; ᎯᎠᏃ ᏄᏂᏪᏎᎸᎩ; ᎯᎸᏉᏓ ᎤᏁᎳᏅᎯ, ᎠᏴ ᎣᏥᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᎠᏍᎦᏯ ᎠᏍᎦᎾ ᎨᏒᎢ. ᎾᏍᎩ ᎩᎶ ᎠᏂᏍᏓᏩᏗᏒ ᎤᎾᏞᏒ ᎪᎯᏳᏗ ᎨᏒᎢ. [ᎤᏁᎳᏅᎯ] ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏣᎧᏩᏗᏙᎮᏍᏗ. ᎡᎺᏅ. ᎠᏎᏃ ᏥᏯᎵᏍᎦᏍᏙᏗᎭ ᎤᎬᏫᏳᎯ ᎤᎵᏍᎪᎸᏙᏗᏱ ᎠᏴ ᎾᏍᏉ ᎠᏋᏒ ᏂᎪᎯᎸᎾ ᏫᏨᎷᏤᏗᏱ. ᎥᏃᏱᏃ ᎠᏰᎵ ᎩᎶ ᎠᏍᏓᏯ ᎤᏁᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏕᏒᎲᏍᎩ ᏓᏯᎢ! ᏫᏕᏣᏠᎢ! ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏌᏉ ᎢᎦ ᎾᎯᏳ ᎨᏒ, ᏕᎨᏲᎲᏍᎨ ᏴᏫ ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎵᏥᏙᎲᏍᎨᎢ, ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎬᏩᏃᎴᎢ, ᎤᎾᎵᎪᏎ ᏗᏂᎳᏫᎩ, ᎢᎬᏱᏱᏃ ᎢᎦ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ, ᎾᎯᏳ ᎤᏂᎸ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏣᏚᎵ ᏬᎦᏛᏅᎢᏍᏙᏗᏱ, ᎧᏃᎯᏰᎩ ᏣᎵᏍᏓᏴᏗᏱ? ᎠᎴ ᏂᎪᎯᎸᏉ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏯᎡᎢ, ᎠᎾᎵᎮᎵᏤᎮ ᎠᎴ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ. ᎡᎺᏅ. ᏍᎩᏃ ᏄᎵᏍᏔᏃᏅ, ᏥᏔᎦ ᏧᎪᎳ ᏓᏳᏓᎴᏅᏓ, ᎨᏍᏗ ᎪᎱᏍᏗ ᎫᏩᏏ ᏱᎨᏎ ᏤᎩᏏᏂ. ᏅᎩ ᎢᏳᏩᏂᎸ--ᎤᏒᎮᏱᏣ ᎠᎵᏍᏓᏴᏗ. ᎨᎵᎠ ᎭᎦᏓ ᏄᏛᎾ ᏂᎯ ᎨᏒ.” ᎣᏏᏉᏧ? “ᎣᏍᏓ ᎭᏓᏅᏛᎳ,” ᎤᏛᏁ ᏌᎳᏓ. ᎨᏍᏘᏃ ᏯᏆᏚᎵᏍᎨ ᏥᏣᏓᏅᏛᎾ ᏤᏣᎧᏃᏗ ᎬᏲᏎᏗ. ᏅᏛᎩᏅᏏᏛ ᎣᎩᎾᎵᎪᎭ; ᎠᎦᏴᎵᎨ ᎥᏝ ᏯᏋᏕᏨ, ᏂᎪᎯᎸᏰᏃ ᏓᎩᎸᏫᏍᏓᏁᎰ ᎣᏍ-Ꮫ ᎤᏰᎸᏗ. ᏞᏍᏗ ᎠᎴ ᎯᏍᎪᎵ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ, ᏝᏰᏃ ᏰᎵ ᏌᏉ ᎩᏢ ᎤᏁᎬ ᎠᎴ ᎬᎿᎨ ᏱᏅᎦᎲᎦ. ᎾᏍᎩ ᎣᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏗᏅᏂᏗᏳ ᎬᎾᎢᏒ ᏧᏂᏯᏍᏗᎭ ᏗᎬᏩᎸᏌᏛ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ ᏧᎫᏴᏁᏗ ᏥᎩ; ᏓᏆᎴᏅ ᏩᏁ ᏧᎬ ᎣᎭᏁ, ᎣᎩᎵᏦᏩᏛ ᎢᏣ ᎠᏇᏅᏒ, ᎡᏝᏪᎯ ᎪᎰᏍᏗ ᏣᎩᏁᏤᎰ ᏅᏩᏍᏛ ᎠᏌᎻᏓ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎨᏦᎯᏳᏗ ᎨᏎᏍᏗ, ᏂᎦᏗᏳ ᎪᎱᏍᏗ ᎢᎦᏰᎦᏛᏁᏗ ᎪᎯᏳᎲᏍᎩ. ᎾᏍᎩ Ꮎ ᎩᎳᏉ ᎢᏴᏛ ᏫᏚᏯᏅᎲ ᎠᏂᏯᏫᏍᎩ ᎠᎴ ᎠᏍᎪᎯᏧᏈ ᏗᎾᏘᏂᏙᎯ, ᎠᎴ ᏗᏁᏙᎲ ᏭᏗᏢᏍᏔᏅᎩ. ᏚᏂᎪᎲᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎠᎴ ᎠᏂᏯᏫᏍᎩ, ᎤᏂᏑᎵᎪᏨᎩ ᎠᏂᎸᏂᎲ ᏉᎳ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎠᏏᏉ ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᎨᏴ ᎨᎳ ᎤᎾᏓᏡᎬ ᎤᏌᎳᏓᏁ ᎧᏁᎬ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᏂᎯ ᏣᎾᏄᎪᏫᏒᎯ ᎠᎴ ᎾᏍᎩ ᏣᏍᏛᏅᎯ. ”ᎭᏕᏬ, ᎤᎧᏲᏓ ᏣᎵᏍᏓᏴᏗ ᏣᎶᏙᏗ, ᏣᏢᏗ ᎠᏆᏚᎵ. ᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎢᏨᏃᏁᎭ; ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏨᏓᎨᏏ; ᎢᏳᏰᏃ ᎾᏇᏅᏒᎾ ᏱᎩ, ᎠᏓᏅᏬᎯᏍᏗᏍᎩ ᎥᏝ ᏴᎨᏥᎷᏥᏏ; ᏯᏇᏅᏍᎩᏂ ᏅᏓᏥᏅᏍᏗ ᎨᏎᏍᏗ ᎢᏥᎷᏤᏗᏱ. ᎥᏝ ᎠᎴ ᎩᎶ ᎢᏎ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏧᏪᏘ ᏗᏑᏢᏛ ᏱᏓᏟᏍᏗᏍᎪᎢ; ᎢᏤᏰᏃ ᎩᎦᎨ-ᎠᏕᏔᏍᏗ ᏱᏙᎦᏣᎦᎸ ᏗᏑᏢᏛ, ᎠᎴ ᏗᎦᎨ-ᎠᏗᏔᏍᏗ ᏯᏤᏬᎩ, ᎠᎴ ᏗᏑᏢᏛ ᏱᏓᏲᎩ; ᎢᏤᏍᎩᏂ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ, ᏗᏤ ᏗᏑᏢᏛ ᏗᏟᏍᏙᏗ ᎨᏐᎢ. ᎠᎩᎾᏄᎪᏫᏎᎸᎩᏃ ᎤᏁᎬ ᎤᏪᏴ ᎠᎹ ᎬᏂᏛ ᎠᏓᏁᎯ, ᏗᎬᏩᎸᏌᏛ ᎨᏒᎩ, ᏓᎦᎾᏄᎪᎬᎩ ᎦᏍᎩᎸ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎾᏤᎵᎦ. ᏭᎩᏎ ᎤᏁᏍᏔᎳ ᎡᎳᏆᏗ ᎤᏟᏍᏓ ᎤᏪᏅᏎ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᏂᎦᏓ ᏚᎭᏄᏩᎩᏐᏅ ᏧᎭᎾᏬ Perry ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏩᏂ ᏧᏍᏆᏅᎾ ᎤᏚᏒᏛ, ᏧᏁᎦ ᏗᏍᎬᏓᎨᏂ ᎢᏴ ᏫᎦᏓᎥ. ᎧᏂᎩᏛ ᎠᏕᎳ? ᎤᏛᏅ. ᎭᏂ ᏯᏛᏁᎵᏍᎬᎾ ᏱᎩ, ᎦᎵ ᏴᏫᏯ ᎦᏬᏂᏍᎩ ᏃᎴ ᎢᏯᏛᏁᏗ ᏩᏍᏛ ᎠᏓᏂ ᎠᏁᏦ, ᏩᏏᏓᏂ ᎦᏚᎲ ᏩᎵᏍᎩᏍᎪ ᏃᎴ ᏗᎳᏑᎶ ᏓᎦᎾᏕᎰ ᎠᏂᏍᎦᏰᏛᏍᏔ ᎠᏂᏩᏥᏂ, ᏍᎩᏃ ᎢᏳᏍᏗ ᎤᎾᏓᏓᏍᎬ ᏧᏤᎵ ᎠᏂᏴᏫᏯ ᏱᏚᎾᏕᏯᏙᏓᏅᎾ, ᎨᎦᎵᏍᎪᎳᏓᏁᎴ ᎤᎾᏕᏗ ᏚᏁᏅᏒ, ᏭᏅᎬᏛ ᎨᏥᏅᎪᏫᏎ ᎠᏙ, ᎾᏍᎩᏯ ᏏᏆ ᎤᎵᎪᎲᏍᏗ. ᏂᎦᏓ ᏓᏥᏩᏛᏓ ᎨᏒ ᎦᏚᎲ ᏦᎯᏍᏙᏗ ᏗᎭᏄᏬ ᏃᎴ ᏗᎳᏑᎶ ᎢᏗᏅᏁ, ᏰᎵ ᏗᎬᎩᏩᎯᏍᏗ ᎨᏒ. Ᏺ ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᏥᏂᏥᏲᎢᏴ ᎦᎴ ᏡᎬ ᎤᏐᏅ ᏂᏨᎦ ᎤᏛᏃ ᎤᏐᏅᎢ; ᏡᎬᏰᏃ ᎪᎵᏍᏙᏗ ᎨᏐ ᏄᏍᏛ ᎤᏛᎢ. [ᎯᎠ ᏂᎦᏪᏍᎨᎢ;] ᎬᏂᏳᏉ ᏥᎷᏏᎵᎻ ᏫᏗᎦᏘ; ᎠᎴ ᏴᏫ ᎤᏪᏥ ᏙᏓᏰᏥᏲᏏ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᏙᏓᎨᏥᏲᎯᏎᎵ; ᎠᎴ ᏙᏓᎬᏭᎪᏓᏁᎵ ᎤᏲᎱᎯᏍᏗᏱ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏫᏙᏛᏂᏲᎯᏎᎵ; ᏥᏌᏍᎩᏂ ᎡᏗᎪᏩᏘᎭ ᎾᏍᎩ ᎤᏍᏗᎩᏛ ᎡᏍᎦ ᎢᏯᎬᏁᎸᎯ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᏒ ᏂᎨᎬᏁᎸᎢ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗᏱ, ᏗᎬᏩᎸᏌᏛ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᏥᏍᏕᎶᏔᏅ; ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᏗᏍᎬ ᎾᏂᎥ ᏴᏫ ᏧᏲᎱᏎᏗᏱ. ᏙᏤᏝᎶᏅ ᏚᏯ ᏃᎴ ᎤᏴᏣ ᏎᎷ ᎦᏚ, ᎤᏂᏃᎮᎸ ᏔᎵᏚ ᎢᏯᏂ ᎤᎾᏗᏍᎦᏢ ᎤᎾᎵᏓᎩᏛ ᎠᎹᏱ ᏚᏦᏒ ᎾᎥᏂ, ᏔᎵ ᎠᎴ ᏦᎢ ᏧᏙᏓᏆᏓ ᎡᏅᏓ. ᏂᎯ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏤᏦᎯᏳᎲᏍᎦ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏲᎱᏒ ᏥᏚᎴᏔᏁᎢ ᎠᎴ ᏧᏁᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏦᎯᏳᏒ ᎠᎴ ᎤᏚᎩ ᎢᏨᏒ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᎢᏳᎵᏍᏙᏗᏱ. ᎤᏍᎦᏃᎳ ᏚᎴᏁᎢ, ᎤᏁᎷᏁᎢ ᏌᏌ. ᏗᏂᎦᏘᏯᏃ ᎤᎾᎵᏎᎢ, ᎠᎴ ᎦᏚᎲ ᏭᏂᏃᏁᎢ, ᎠᎴ ᎢᏴᏛ ᏓᏁᏩᏗᏒᎢ. ᎤᏂᏄᎪᏤᏃ ᎤᎾᎦᏔᏅᏎ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ. ᎢᏳᏃ ᏴᏫᏉ ᎠᏁᎲ ᏧᏓᎴᏁᎢ ᏲᎦᏛᏅ, ᏙᏥᏍᎦᎢᎭᏉ ᏴᏫ; ᏂᎦᏛᏰᏃ ᎠᏙᎴᎰᏍᎩ ᎤᏂᏰᎸᎭ ᏣᏂ. ᎠᏍᎦᏯᏃ ᎤᏲ ᎠᏓᏅᏙ ᎤᏯᎢ ᏚᏁᎷᎩᎡᎴᎢ, ᎠᎴ ᎡᏍᎦ ᏂᏚᏩᏁᎴᎢ, ᎠᎴ ᏚᏎᎪᎩᏎᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎾᎵᏎ ᎾᎿ ᎠᏓᏁᎸ ᎤᏂᏄᎪᏤ ᏧᏂᏰᎸᎢᎭ ᎠᎴ ᏗᎨᏥᏐᏅᏅᎯ. ᎤᏩᏒᏃ ᎨᏎᎢ, ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏕᎩ ᎠᎴ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏛᏛᏁ ᎦᏛᎬ ᎾᏍᎩ ᏓᏟᎶᏍᏛᎢ. ᎢᎦᏛᏍᎩᏂ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎦ ᎤᏍᏕᎵᎭ ᏇᎵᏥᏆ ᎤᎬᏫᏳᎯ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵᎦ. ᏒᏆᎶᏍᏗ ᎭᏫᏂᏣ ᏓᏩᏔ ᎤᎪᏏᏓ ᎢᏗᏅᏁ ᎠᎵᏰᎾ! ᎨᏍᏗ ᎦᎵᏓᏍᏔᏅ ᏱᎩ. ᎢᏳᏃ ᎠᏴ ᏇᎵᏥᏆ ᏯᎩᏍᏕᎵ ᎠᏂᏍᎩᎾ ᏱᏗᏥᏄᎪᏫᏍᎦ, ᎦᎪ ᎤᏂᏍᏕᎵᏍᎪ ᏗᏤᏥ ᏥᏓᏂᏄᎪᏫᏍᎪᎢ? ᎾᏍᎩ ᏍᎩᏂ ᏗᎨᏧᎪᏓᏁᎯ ᎨᏎᏍᏗ. ᎨᏍᏗ ᏯᎦᏔᎮᎢ ᏏᏉ ᎫᏩᎶᎯᏍᏗ ᏱᎩ. ᏑᎾᎴᏃ ᏥᎨᏐᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᏛᎦᎿᏂ, ᎦᎸᎶᏰᏃ ᎩᎦᎨᎢᏳ ᎢᎩ, ᎠᎴ “ᏲᎾ ᎤᏤᏍᏙ,” ᎤᏛᏁ ᎤᏥ ᏰᎵ ᎬᏣᏓᏘ, ᏤᏍᏗ ᏯᎵᏍᎪᎥᏍᎨᏍᏗ. ᏚᎾᏓᏲᎵᎴ ᎠᎵᏥᏙᎲᏍᎩ, ᎱᏂᎩᏎᎢ. ᏙᎢᏳᏍᏗ ᎤᎵᏍᏔᏁᎢ? ᎠᏂᏯᏫᏍᎩᏃ ᎾᏍᏉ ᎢᎬᏩᏛᏛᏁ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎠᏴ ᎾᏃ ᎦᏙ ᏓᏲᏣᏛᏁᎵ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᎩᎶ ᎬᏍᎦᎢᏍᏓᎩ ᎢᏰᏨᏁᎸᎩ, ᎠᎴ ᏞᏍᏗ ᎦᏰᎪᎩ ᏱᏣᏓᎳᏫᏎᎮᏍᏗ; ᎠᎴ ᏰᎵᏉ ᎢᏥᏰᎸᏎᏍᏗ ᎡᏣᎫᏴᎡᎲᎢ. ᎢᏳᏰᏃ ᏥᏯᏢᏈᏎᎸᎯ ᎨᏎᏍᏗ, ᏂᎯ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ, ᎥᏝ ᏱᎦᏕᎣᏍᎦ; ᏂᎦᏗᏳᏍᎩᏂ ᏧᏓᎴᏅᏛ ᎢᏨᏬᏁᏔᏅᎢ ᎤᏙᎯᏳᎯᏯ ᏥᎩ, ᎾᏍᎩᏯᏉ ᎣᎦᏢᏆᏒᎢ, ᎾᏍᎩ ᏓᏓᏏ ᎣᏣᏢᏆᏎᎸᎢ, ᎤᏙᎯᏳᎯᏯ ᏄᎵᏍᏔᏅ. ᎦᏙᏗ ᎢᏳᏍᏗ ᏚᏂᏩᏛ ᎠᏁᎵᏍᎨ ᎠᏂᎨᏯ ᏩᏂᎷᏨ ᎠᏂᏫᎾ ᏧᎾᏛᏒ. ᎠᏎᏃ ᏗᏂᎦᏙᎵ ᏕᎨᏥᏂᏴᎡᎴ ᎾᏍᎩ ᎬᏬᎵᏍᏗᏱ ᏂᎨᏒᎾ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎯᏃᎮᏍᎨᏍᏗ, ᎠᎴ ᏕᎯᏬᏁᏗᏍᎨᏍᏗ, ᎠᎴ ᏕᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ ᎲᏗᏍᎨᏍᏗ ᏂᎦᎥ ᏣᏒᎦᎸᎢ. ᎲᏗᏍᎨᏍᏗ ᏞᏍᏗ ᎩᎶ ᎡᏍᎦ ᏱᏣᏰᎸᏎᏍᏗ. ᎤᎾᎩᎡᎸ ᏗᎪᏪᎵᏍᎩ ᎪᏪᎵ, ᎤᏩᏓᏍᎬ ᏭᏓᎩᏅᏒ. ”ᎣᏍᏓ ᏂᏣᏛᎦ, ᎣᏍᏓ ᏂᏣᏛᎦ!” ᎤᏛᏁ ᏌᏌ. ᎯᎠᏃ ᏂᏚ-ᏪᏎᎴᎢ, ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᎦᎶᏁᏛ ᏕᏫ ᎤᏪᏥ ᏣᎾᏗᎭ? ᎨᏆᏂᏃ ᎤᎷᏥᎴᎢ; ᎦᎵᏦᎦᏃ ᎠᏯᎥ ᏚᏛᏛᏁ, ᎦᏙ ᎾᏍᎩ ᏥᏥᏃᎮᏍᎬ ᎢᏨᏒ ᎨᏒ Ꭰ ᏗᏓᎢᏒᎢ. ᎡᏣᏑᏰᏛ ᎾᏍᎩᏯ ᎾᎦᏔᎰ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎬᏔᏅᎯ ᎤᏓᏅᎦᎸᏗ ᎨᏒ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎾᎿ ᏨᏗᏓᎴᎲᏍᎦ ᎪᎯᏳᏗ ᎨᏒ ᎠᎴ ᎠᏍᏚᏟᏍᏗ ᎨᏒ ᎤᎩᎬ ᏥᏌ ᎦᎶᏁᏛ; ᎦᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎤᏣᏘ ᎢᏣᏤᎵ ᎨᏎᏍᏗ. ᎾᏍᎩᏰᏃ ᏄᏍᏗ ᎤᎬᏫᏳᎯ ᎣᎩᏂᏁᏤᎸ, [ᎯᎠ ᏂᎦᏪᎭ;] ᎬᏯᎧᏅ ᎢᎦ ᏔᏘᏍᏓᏁᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎤᎵᏍᏕᎸᏙᏗ ᎢᏣᎵᏍᏙᏗᏱ ᎡᎶᎯ ᏂᎬᎾᏛᎢ. ᎨᎵ ᎨᏍᏗ ᏳᏌᎩᏒ ᎤᎦᏛ ᏥᏴᏤᏂ ᏃᎴ ᏥᏅᏬᎢ. ᏔᎵᏁᏃ ᏦᏩ ᎠᎾᎵᏅᏟ ᎬᏬᎵᏤᎢ, ᎠᎴ ᏇᎵᏲ ᏕᎤᎦᏙᎥᏎ ᏦᏩ ᎪᎱᏍᏗ ᏧᏩᎿ. ᎾᏳᏍᏗᏉ ᎤᎾᎵᏍᎪᏗ ᏗᏃᏪᎵᏍᎩ ᎤᏂᎷᏤᎲ ᏗᏂᏍᎪᎵ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏥᏨᏅᏒᎩ ᏂᏗᏥᏁᎲᎾ ᎠᏕᎸ-ᏗᎦᎶᏗ, ᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᏗᎳᏑᎶ, ᎪᎱᏍᏗᏍᎪ ᎪᎱᏍᏗᏍᎪ ᎢᏥᏂᎬᏎᎮᎢ? ᎥᏝ ᎪᎱᏍᏗ, ᎤᎾᏛᏁᎢ. ᎨᏥᏅᏏᏛᏃ ᎯᎠ ᏄᏂᏪᏎᎴ ᎤᎬᏫᏳᎯ, ᏍᎩᏁᏉᏏ ᎣᎪᎯᏳᏒᎢ. ᎨᏍᏗ ᎣᏍᏓ ᏯᏆᏓᏅᏔ. ᎾᏍᎩᏯ ᎤᏤᎵ ᎤᎵᏂᎩᏗ ᎨᏒ ᎤᏩᏔᏅᎢ ᎢᎩᏁᎸᎯ ᏥᎩ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏕᏛᏅ ᎤᎬᏩᎵ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᏅᏓᏳᏓᎴᏅᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎢᎩᏯᏅᏛ ᏥᎩ ᎬᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎢᏍᏛᏁᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎬᏆᏛᏁᏗ ᎨᏒ ᎢᎦᎢ, ᎠᏆᏛᏅᎢᏍᏗᏉ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᏨᏯᎵᏥᏙᏁᏗᏱ ᎶᎻ ᎾᏍᏉ ᎢᏤᎯ ᏂᎯ. ᏦᏩᏃ ᎤᏓᏅᏎ ᏭᏯᏅᎮ ᎤᏙᏓ ᏤᎦᏈ ᎠᎴ ᏂᎦᏛ ᎤᏩᏒ ᎪᎱᏍᏗ ᏧᏩᎿ, ᎾᏍᎩ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏯᏂᎢ. ᎾᎯᏳ ᏗᏥᎦᏴᎵᎨ ᏥᎬᎩᎪᎵᏰᏍᎬᎩ, ᎠᎴ ᏥᎬᏆᎦᏘᏍᎬᎩ, ᎠᏂᎪᏩᏘᏍᎬᎩᏍᎩᎢᏃᏅ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎥᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ. ᎦᎪ ᎤᏓᏑᏯ ᎯᎠ ᏥᏂᏣᏛᏅᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᎠᎩᏍᎦᏅᏨᎯ ᎨᏒᎢ? ᎢᏳᏃ ᏚᏳᎪᏛ ᏱᏥᏁᎦ, ᎦᏙᏃ Ꮭ ᏱᏍᎩᏲᎢᏳᎲᏍᎦ? ᏡᎬᏰᏃ ᎪᎵᏍᏙᏗ ᎨᏐ ᏄᏍᏛ ᎤᏩᏒ ᎠᏓᏛᏍᎬᎢ; ᏥᏍᏚᏂᎩᏍᏗᎯᏰᏃ ᎥᏝ ᏎᎦᏔ-ᎢᏳᎾᏍᏗ ᏱᏓᎾᏕᏍᎪ ᏴᏫ, ᎠᎴ ᎠᏄᎦᎸᎯ ᎥᏝ ᏖᎸᎳᏗ ᏱᏓᎾᏕᏍᎪᎢ. ᎠᎴ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒ ᎤᏍᏚᎢᏒᎩ, ᏧᎦᏒᏍᏗᏃ ᎾᎿ ᎠᏔᎴᏒ ᏓᏳᎵᏌᎳᏓᏅᎩ, ᎾᏍᎩᏯ ᎡᏆ ᏔᎷᎩᏍᎩ ᎬᎾᏬᏙᏗᏱ ᏥᏚᎦᏒᏍᏙᎢ; ᏅᏙᏃ ᎢᎦ ᎡᎯ ᎠᎴ ᎦᏃᎴᏍᎬ ᎤᏜᏅᏛ ᏚᎵᏏᎲᏒᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏧᎦᏒᏍᏗ ᎠᏔᎴᏒ ᏙᏗᎴᎲᏍᎬᎢ. ᎤᏙᎯᏳᎯᏰᏃ ᏥᏨᏰᎳᏗᏙᎲᎩ, ᏂᏨᏃᏁᎶ ᎢᎩᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏥᏄᎵᏍᏔᏅ, ᎠᎴ ᎾᏍᎩ ᏥᏥᎦᏔᎭ. ᎢᎸᎯᏳ ᏥᎨᏒ ᏂᎦᏓ ᎢᎾᎨ ᎠᏁᎯ ᏣᎳᎩ ᏣᏂᏬᏂᏍᎬ. ᏤᏏᏃ ᏕᏫ ᎤᎬᏫᏳᎯ ᎤᏕᏁᎴᎢ; ᏕᏫᏃ ᎤᎬᏫᏳᎯ ᏐᎵᎹᏅ ᎤᏕᏁᎴᎢ ᏳᎳᏯ ᎤᏓᏴᏛ ᎤᎾᏄᎪᏫᏎᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎠᎵᏍᎦᏍᏙᏗᎭ, ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏗᏱ; ᎾᏍᎩ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒ ᎤᎵᏂᎩᏗᏳ ᎢᏳᎾᎵᏓᏁᏗᏱ ᎾᏂᎥ ᎤᏁᏢᏔᏅᏛ ᎨᏒᎢ; ᎥᏝ ᎾᏍᎩ ᎤᏅᏒ ᏧᏁᏢᏔᏅᏛ ᎨᏒ ᎾᏍᎩᏯ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅᎢ, ᎾᏍᏉᏍᎩᏂ ᎾᏍᎩ ᏧᏁᏢᏔᏅᏛ ᎨᏒ ᎡᏆᎭᎻ ᎤᏬᎯᏳᏒ ᎾᏍᎩᏯ ᎤᏃᎯᏳᏅᎯ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏂᏗᎥ ᎢᎩᏙᏓ ᏥᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᎴᏔᏅᎯ ᎨᏒ ᎥᏝ ᏳᎪᏎᎢ. ᎥᎥ, ᎤᏙᎯᏳᎯ, ᎠᎴ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎡᏍᎦ ᎢᏯᏋᏁᎯ ᎠᎩᏰᎸᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏓᎪᎾᏛᏔᏅᎯ ᎨᏒ ᏥᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ; ᎾᏍᎩ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎠᎩᏲᎱᏎᎸᎯ ᏥᎩ, ᎠᎴ ᎤᏁᎢᎸᏗᏉ ᎠᎩᏰᎸᎭ ᎾᏍᎩ, ᎦᎶᏁᏛ ᎾᏍᎩ ᎠᏆᏤᎵ ᎢᏣᏴᏁᏗᏱ, ᎣᎩᏨᏛᏃ ᏉᎳ ᏥᎻ ᏧᏬᎸ ᎢᏧᎳᎭ ᎣᎨᏅᏒᎩ, ᏂᎦᏛᏃ ᏗᎨᎦᏁᎶᏗ ᎠᏂᎦᏔᎲᎩ. ᎠᎬᏱ ᎠᏍᎦᏯ ᏭᎷᏨ ᎦᏲᏟᏉ ᎠᎦᏴᎵᎨ ᎨᏎ ᏩᏏᏓᏂ ᏄᏕᏘᏴᎲ, ᎤᏓᎾᏏᏃᎴ ᎠᏰᎵ-ᎢᎦᎯ ᎨᏒ ᎠᏰᎳᏍᏗ ᎤᏅᏍᎦᎴ ᏃᎴ ᎦᏅᎯᏓ ᎦᎶᏇ ᎠᎵᏎᎮ, ᏕᎬᏂᏍᏗᏍᎨ ᏚᏩᏂᎦᏢ ᏃᎴ ᏚᏂᎩᏨ. ᎰᎻ, ᎡᎶᏗ ᏃᎴ ᏣᏄᏏ ᎤᏂᏂᏴᎮ ᏏᏆ, ᎠᏍᎪᎵ ᎢᏣ ᏭᏂᏌᏙᏰᎢ ᎧᏁᏌᎢ. ᏐᏉ ᎢᎦ ᏚᎾᏦᏒ ᎤᏍᏗ ᎨᏴᎢ ᏃᎴ ᎤᏔᏂᏗᎨ ᎨᏴᎢ, ᎤᏍᏗ ᎠᏣᏗ ᏭᏴᎴᎢ ᏫᏥᎢᎦ ᏯᏍᎦᎢᎲᎾ. ᎠᎴ ᎤᎾᎴᏅᎮ ᎬᏩᏔᏲᏎᎴ ᎤᏓᏅᏍᏗᏱ ᎤᎾᏤᎵᎪᎯ. ᏗᎧᎿᏩᏛᏍᏗᏱ ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᏅᏩᏓᎴ ᏗᏂᏬᏂᏍᎩ ᎠᎴ ᏅᏩᏓᎴ ᏧᏂᎭᏁᎦᎵ ᏓᎦᏥᏴᏔᏂ ᎦᏓᏥᏬᏁᏔᏂ ᎯᎠ ᎾᏍᎩ ᏴᏫ; ᎠᏎᏃ ᎠᏏ ᎥᏝ ᏱᎬᏆᏛᎦᏁᎮᏍᏗ, ᎠᏗᎭ ᏱᎰᏩ. IV. ᎤᎯᏐᏗ ᎢᏨᏲᏎᎭ ᏞᎩᏳ ᏙᏓᎫᎴᏏ. ᎠᏎᏃ, ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ, ᎪᎯᏳᏗᏍᎪ ᎨᏒ ᏛᏩᏛᎯ ᎡᎶᎯ? ᎠᎵ ᏍᏓᏴᏗᏍᎩᏂ ᎥᏝ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎢᎩᏰᎸᏗᏱ ᏱᏂᎬᏁᎭ; ᎥᏝᏰᏃ ᏱᏓᎵᏍᏓᏴᎲᏍᎦ ᎤᏟ ᎣᏏᏳ ᏱᏂᎬᏁᎰᎢ, ᎥᏝ ᎠᎴ ᏂᏓᎵᏍᏓᏴᏍᎬᎾ ᏱᎩ, ᎡᏍᎦ ᏱᏂᎬᏁᎰᎢ. ᎢᎨᏲᎲᏍᎦ, ᎾᏍᎩ ᎢᏓᏓᏱᎲ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ ᎠᎴ ᎡᎶᎯ ᎡᎯ ᎠᏚᎸᏅᏗ ᎨᏒᎢ, ᎢᎦᎵᏏᎾᎯᏍᏗ ᎠᎴ ᏚᏳᎪᏛᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎸᏉᏙᏗ ᎨᏒ ᏱᏓᎴᏂᏙᎭ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ; ᎠᏥᎸᏳᎵ ᎾᎥᏂ ᏰᎵ ᎪᎯᏛ ᎤᏬᏢ ᎠᏓᏅᏖᏍᎬ ᎠᎵᏍᏔᏴᏗ ᏣᎵ. ᏣᏄᏏ ᎤᎷᏤ ᏴᏫᏯᎯ ᎤᏩᏅ ᏧᏍᏆᏅᏂ ᎦᏁᎮᎢ ᎤᏓᏒᏅ. ᎾᏍᎩ ᎤᏤᏓ ᎠᎴ ᎤᏥ ᎾᏁᎲᎾ ᏥᎨᏎ, ᎤᎾᏁᏢᏔᏅᎯ ᎠᏂᏂᎩᏛ ᏥᎨᏎ, ᏚᎩᏨᏁᎬ ᏅᎫᏓᎴᏅᎲᎾ ᏥᎨᏎ, ᎠᎴ ᎡᎲ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏎᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎾᏪᏥ ᎾᏍᎩᏯ ᏥᎾᎬᏁᎴᎢ, ᎠᏥᎸ-ᎨᎶᎯ ᏤᎭ ᏂᎪᎯᎸᎢ. ᏕᏥᏁᎸ ᎧᏃᎮᏛ ᏤᏤᎵᎦ; ᎡᎶᎯᏃ ᏗᏍᎦᎩᏳ ᏄᎵᏍᏔᏅ, ᎡᎶᎯ ᎠᏁᎯ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩᏯ ᎠᏴ ᎡᎶᎯ ᎨᎢ ᏂᎨᏒᎾ ᏥᎩ. ᎠᎴ ᎠᏴ ᎣᎩᎪᎲ ᎠᎴ ᎣᏥᏃᎮᎭ ᎠᎦᏴᎵᎨ ᏧᏅᏒ ᎤᏪᏥ ᎡᎶᎯ ᎠᏍᏕᎵᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ. ᎥᏝᏰᎭ ᎠᏧᏏ, ᎠᎴ ᎠᎪᎢ, ᎥᏝ ᎠᏥᎾᏝᎢ, ᎠᎴ ᎾᏥᎾᏝᎥᎾ, ᎥᏝ ᎠᏍᎦᏯ, ᎠᎴ ᎠᎨᏴ, ᏂᏥᎥᏰᏃ ᎢᎨᏣᏍᏗᎭ ᎦᎶᏁᏛ ᏥᏌ ᎡᏥᏯᎥᎢ. ᎯᏍᎩᏰᏃ ᎾᏂᎥᎩ ᎨᏣᏰᎯ, ᎪᎯᏃ ᏥᏣᎧᎭ ᎥᏝ ᏣᏰᎯ ᏱᎩ; ᎾᏍᎩ ᏥᏂᏫ ᏚᏳᎪᏛ ᏂᏫ. ᏞᏍᏗ ᎩᎶ ᎢᏥᎶᏄᎮᏔᏅᎩ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩᏰᏃ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎭ ᎪᎯᏳᏗ ᏂᎨᏒᎾ ᎨᏒ ᏧᏪᏥ. “ᎨᏍᏗ ᎦᏓᎭ ᏱᎩ ᏫᎵᎻ,” ᎤᏛᏁ ᎰᎻ ᎤᏨᏉᏗ. ᎩᎶᏃ ᎬᏁᏍᏗ ᎠᎴ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ, ᎥᏝ ᎢᎸᎯᏳ ᎤᏲᎱᎯᏍᏗ ᏱᎨᏎᏍᏗ. ᎰᎯᏳᎲᏍᎦᏍᎪ ᎾᏍᎩ ᎯᎠ? ᎣᏍᏛᏃ ᎧᏃᎮᏛ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎨᏥᏍᎦᎩ ᏄᎾᎵᏍᏔᏅ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᏓᏑᏰᏍᎬᏍᎩᏂ ᎤᎬᏩᎵ, ᎨᏥᎨᏳᎭ ᎠᏂᎦᏴᎵᎨ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎩᎾᎵᎢ, ᎦᏙᏃ ᎥᎯᎷᎩ. ᎿᏉᏃ ᎤᏂᎷᏨᎩ ᎠᎴ ᏕᎬᏩᏏᏔᏛᎩ ᏥᏌ, ᎬᏩᏂᏴᎲᎩ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎪᎥᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏥᏣᎵᏃᎮᏗᎭ. ᏁᏓᏂᎵᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏗᎦᎵᏍᏙᏗ ᎢᏍᎩᎦᏔᎭ? ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏏᏉ ᏈᎵᎩ ᏫᏂᏣᏯᏂᏍᎬᎾ ᏥᎨᏒᎩ, ᎡᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ ᎭᏫᏂᏗᏢ ᏥᏦᎸᎩ, ᏫᎬᎪᎥᎩ. ᎠᏓᏍᏕᏓᎵᏴᏍᎩ. ᏲᎾ ᎣᏍᏓ ᎤᎦᏎᏍᏗᏕᎬ ᏂᎦᎵᏍᏔᏂᏙᎲ, ᎠᏆᏛᏛᏅ ᎢᏳᏍᏗ ᏙᏍᏓᏓᎴᎬ. ᎾᏍᎩᏃ ᎠᏆᎦᏙᏍᏔᏅ ᎠᏆᏓᏅᏖᎸᎩ ᎠᎴ ᏕᏥᎪᎥᎩ ᏅᎩ ᏗᏂᏅᏌᏗ ᎡᎶᎯ ᎠᏁᎯ ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ. ᏃᎴ ᎭᎾ ᏳᏪᎾ ᏫᎵᎻ, ᏰᎵᏉ ᎡᎳᏗ ᏫᏣᎶᎯᏍᏗ ᎯᏩᏛᎲᏍᏗ ᎢᏳᏉ ᎮᎵᏍᎬ. ᎤᏁᎳᏅᎯᏃ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎠᎾᎵᏅᏢ ᏗᎨᏳᏗ ᎨᏒᎢ; ᎠᎾᎵᏅᏢᏃ ᏗᎨᏳᏗ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎢᎬᏂᎢᏛᏉ ᏗᎨᏳᏗ ᎨᏒᎢ. ᎢᎬᏩᏍᏗᎭᏍᎩᏂ [ᎢᏥᏗᏱ;] ᎾᏍᎩ ᎪᎯ ᎨᏒ ᎤᏣᏘ ᎢᏥᎲ ᏱᏗᏥᏍᏕᎸᏗᎭ ᎤᏂᏂᎬᏎᎲᎢ, ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᏣᏘ ᎤᏂᎲ ᎨᏥᏍᏕᎸᏗᏱ ᎢᏥᏂᎬᏎᎲᎢ, ᎾᏍᎩ ᎢᎬᏩᏍᏗᎭ ᎢᏥᏗᏱ. “ᏓᏆᏙᎥ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ, “ᏌᎳᏓ” ᎢᏳᏃ ᎩᎶ ᎦᏬᎢᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏄᏪᏒ ᎦᏬᏂᏍᎨᏍᏗ. ᎢᏳᏃ ᎩᎶ ᏓᏯᏙᎮᎮᏍᏗ, ᎾᏍᎩ ᏰᎵ ᎢᎬᏩᏛᏁᏗ ᎨᏒ ᎤᎵᏍᎪᎸᏓᏁᎲ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ; ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᏂᎦᎥ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏥᎸᏉᏗᏳ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᏥᏌ ᎦᎶᏁᏛ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ; ᎾᏍᎩ ᎤᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᎪᎯᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ. ᎤᏰᎶᎢᏍᏔᏁᏃ ᎦᏙᎯ ᎤᎵᏖᎸᏁᎢ; ᎠᎴ ᏗᏓᏍᏚᏘᏱ ᏚᎵᏍᏓᏱᏗᏍᏛ ᏚᎵᏖᎸᏁᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏂᎦᏛ ᏓᏍᏚᎲ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎾᏂᎥ ᏚᎾᏓᎸᏍᏛ ᏚᏢᏒᎮᎢ. ᎠᎦᏴᎵ ᎤᏃᏕᎾ ᎤᎵᏍᎫᏪ. ᎨᏍᏗ ᏍᎩᎦᎢ ᎠᎩᎷᏤᏗ ᏱᎨᏎᎢ. ᎠᎴ ᏕᎬᏩᏂᏂᏴᎨ ᎠᎴ ᏕᎬᏩᏂᏍᏚᏁ ᎤᎩᏨᏛ ᎢᎪᎯᏛ, ᎿᏉᏰᏃ ᎤᏒᎢ ᎨᏎᎢ. “Ꮘ-Ꮘ-Ꮘ!” ᏥᏌᏍᎩᏂ ᎦᏛ ᏭᏂᎷᏨ, ᎠᎴ ᎤᎾᏙᎴᎰᏒ ᎦᏳᎳ ᎤᏲᎱᏒᎯ ᎨᏒᎢ, ᎥᏝ ᏱᏚᏂᏍᏆᎵᏎ ᏗᎦᏅᏍᎨᏂ; ᎾᏍᎩᏯ ᎾᏍᏉ ᏥᏄᏍᏕ ᎾᎯᏳ ᎶᏛ ᏤᎮᎢ; ᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ ᏓᎾᏗᏔᏍᎨᎢ, ᎤᏂᏩᎡᎥᏍᎨᎢ, ᎠᏂᏃᏔᏅᎥ ᏍᎨᎢ, ᏓᏂᏫᏒᎥᏍᎨᎢ, ᏓᎾᏁᏍᎨᏍᎨᎢ; ᎥᏝ ᏧᏘᏲᏍᏗ ᎠᎴ ᎤᏪᎷᏗ ᏱᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏛᎦᏁᏗ ᏱᎨᏎᏍᏗ ᎧᏁᎬ ᏕᎦᎳᏅᏛᎢ. ᎤᎾᏛᎦᏅᏃ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎠᎴ ᎤᎾᏓᏅᎡᎸᎩ. ᎾᏍᎩ ᏄᏪᏒᎩ, ᎥᏝ ᎤᏩᏒ ᎤᏓᏅᏖᏛ ᏱᎨᏎᎢ; ᎾᎯᏳ ᎠᏥᎸ-ᎨᎶᎯᏍᎩᏂ ᎨᏒ ᎢᏳᏍᏗ ᎤᏕᏘᏴᏌᏗᏒ ᎤᏙᎴᎰᏒᎩ ᏥᏌ ᏧᏲᎱᎯᏎᏗᏱ ᎾᏍᎩ ᏑᎾᏓᎴᎩ ᎨᏒ ᏴᏫ, Perry ᎤᏍᏆᎸᏤᎸ ᎤᏁᎢᏍᏗ Galway ᎤᏛᏅ, Quay Street ᏳᎦᎢᏎ ᎦᎦᏙᏍᏓᏁᎩ ᏅᏙ ᏥᏗᎧᎸᎪ, ᏃᎴ ᏥᏗᏍᎪᎸᎪ ᎠᏨᏍᏛ Irishmore ᎠᎼ ᏍᎪᏁ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏂᎯ ᎡᎳᏗ ᎢᏣᏓᎴᏅᎯ; ᎠᏴ ᎦᎸᎳᏗ ᏅᏛᏆᏓᎴᏅᎯ. ᏂᎯ ᎠᏂ ᎡᎶᎯ ᎢᏣᏓᎴᏅᎯ; ᎠᏴ ᎥᏝ ᎠᏂ ᎡᎶᎯ ᎠᏆᏓᎴᏅᎯ ᏱᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏦᎩᎭ, ᎾᏍᎩᏯ ᎣᎩᏙᎵᏨᎢ, ᎥᏝ ᏱᏙᎩᏯᏪᎦ; ᏥᏌ ᏚᏁᏤᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏥᏕᎦᏕᏲᏍᎦ, ᎥᏝ ᎠᏆᏤᎵᎦ ᏱᎩ, ᎤᏤᎵᎦᏍᎩᏂ ᏅᏛᎩᏅᏏᏛ. “ᏌᎳᏓ ᏓᎦᎶᏏ. ᏥᏌᏃ ᎤᏁᏟ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏞᏍᏗ ᎩᎶ ᎢᎸᎯᏳ ᏥᎠᎩ ᏂᎯ ᏣᏓᏔᏅᎯ ᎪᎯ ᎢᏳᏓᎴᏅᏛ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏁᎢ. ᏫᏥᎷᏨᎭ ᎢᏯᏍᏘ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ ᎪᏪᎵ ᏕᎯᎪᎵᏰᏍᎬᎢ, ᎠᎴ ᏕᎯᏬᏁᏗᏍᎬᎢ, ᎠᎴ ᏕᎭᏕᏲᎲᏍᎬᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᏕᎯᏬᏁᏗᏍᎬ ᏥᏕᎭᏟᎶᏍᏓᏁᎭ? ᎠᎵᏍᎦᏁᏛᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏟ ᎾᏏᎾᎯ ᎡᏍᎦᏉ ᏴᏫ; ᎠᎴ ᎠᏩᎾᎦᎳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏟ ᏄᎵᏂᎬᎦ ᎡᏍᎦᏉ ᏴᏫ. ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎠ ᏂᎦᏛ ᏱᏕᎬᏲᎯᏏ, ᎢᏳᏃ ᏱᏣᏓᏅᏅ, ᎠᎴ ᏱᏍᏆᏓᏙᎵᏍᏓᏁᎸ. ᎣᎩᎶᏐᏅᏃ ᎠᎺᏉᎯ, ᏏᎵᏏᏱ ᎠᎴ ᏆᎻᏈᎵᏱ ᏧᏳᎪᏗ, ᎵᏏᏱ ᏬᎩᎷᏨᎩ, ᎹᎵ ᏕᎤᏙᎥ ᎦᏚᎲᎢ. “ᏭᏲᎢᏴ ᎪᎱᏍᏗ ᏏᏆ ᎰᏎᎭ?” ᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎤᎵᏂᎩᏛᏯ ᏱᏨᏅᏍᏓᏕᎴ ᏗᏣᏕᏲᏗᏱ ᎯᎠ ᎾᏍᎩ ᏕᎤᏙᎥ ᎢᏨᏙᏗᏱ? ᎬᏂᏳᏉᏃ ᏕᏣᏕᏲᎲᏍᎬ ᏥᎷᏏᎵᎻ ᎢᏥᎧᎵᎢᏍᏔᏅ, ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᎩᎬ ᎣᎩᏍᏛᏗᏍᏗᏱ, ᎢᏥᏰᎸᎭ. ᎣᏍᏓ ᏂᏚᏩᏁᎸ ᏚᎭᏄᏮ, ᎤᏰᏨ ᏃᎴ ᎠᏆᏔᏬᏙᏅ ᏥᎦᏆᎵ. ᎥᏝᏰᏃ ᎾᏍᎩ Ꮎ ᎠᏧᏏ ᏱᎩ, ᎦᏚᏉ ᎢᏗᏢ ᎠᏧᏏ ᏱᎩ; ᎥᏝ ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᏱᎩ, ᎦᏚᏉ ᎢᏗᏢ ᎤᏇᏓᎸᏉ ᏱᎩ; ᎨᏍᏗ ᏱᏥᎦᏔᎮ ᎢᏴ ᎠᏆᎴᏅᏗ ᏕᎦᏘᏲᏍᏗᏍᎬ ᎯᎠ ᎠᏂᏴᏫ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᎳᏯ ᎤᏙᎯᏳᎯ ᎤᎷᏨ, ᎠᎴ ᏄᏍᏛ ᎤᎾᏚᎵᏍᎬ ᏂᎬᏩᏁᎸ, ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎬᎢ. ᎼᏏᏰᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ; ᎠᎴ, ᎩᎶ ᎠᏍᎩ ᏅᏗᏍᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎾᏍᎩ Ꮎ ᎯᎠ ᎢᏯᏥᏪᏎᎸᎯ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎡᏏᎩ ᏚᏙᎥ ᎨᏥᏯᏅᏗᏍᎨᏍᏗ ᏣᏁᏢᏔᏅᎯ ᎨᏒᎢ; ᎤᏍᏗᏱᏛᏃ ᎤᏗᏗᏢᏍᏙᏗ ᎢᏴᏛ ᏭᎷᏤᎢ, ᎠᎴ ᎤᎵᏯᏍᏚᏁᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎡᏙᏓ, ᎢᏳᏃ ᏰᎵ ᎢᎬᏩᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏩᎩᎶᎯᏏᏉ ᎯᎠ ᎤᎵᏍᏈᏗ; ᎢᏝᏍᎩᏂᏃᏅ ᎠᏴ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ, ᏂᎯᏍᎩᏂ. ᎣᏍᏓ ᎤᎵᏍᏛᏧᏁᎢ ᏚᏂᏌᎾᎩᏎ ᏗᎦᏅᎯᏓ ᏚᏄᏌᏛ, ᏃᏗ ᎤᏲ ᎤᎾᏗᏅᏗ ᎤᏪᏅᏎ. ᏅᏯ ᏚᏂᏅᏗᏍᏓᏁ. ᎩᎶᏍᎩᏂ ᎡᏃᏱ ᏥᏙᎰᎢ, ᏚᏬᏕᎯᎰᎢ, ᎤᏗᎦᎵᏍᏙᏗᏍᎪ ᎢᎦ ᏂᏚᎸᏌᏓᏕᎲᎾ ᎨᏒᎢ. ᎯᎠ ᏥᏨᏲᏪᎳᏏ ᎥᏝ ᏱᏅᏓᎦᎵᏍᏙᏓ ᏂᏥᎦᏔᏅᎾ ᎨᏒ ᏚᏳᎪᏛᎢ, ᎢᏥᎦᏔᎯᏳᏍᎩᏂ ᎨᏒᎢ, ᎠᎴ ᎢᏥᎦᏔᎯᏳ ᎨᏒ ᏂᎦᎥ ᎦᏰᎪᎩ ᎧᏃᎮᏛ ᏚᏳᎪᏛ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. XXI. ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎯᎠᏰᏃ ᎾᏍᎩ ᎢᏥᎦᏔᎭ, ᎾᏍᎩ ᎩᎶ ᎤᏕᎵᏛ ᏗᏂᏏᎲᏍᎩ, ᎠᎴ ᎠᎦᏓᎭᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᎬᎥᏍᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ ᎨᏒᎢ, ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎦᎶᏁᏛ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ. ᎢᏳᏍᎩᏂ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᏙᏗᏣᏓᏅᏛᎢ ᎠᏛᏳᎨᏗ ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᏞᏍᏗ ᏱᏣᏢᏆᏍᎨᏍᏗ ᎠᎴ ᏞᏍᏗ ᏱᏣᏤᎪᎥᏍᎨᏍᏗ ᎤᏙᎯᏳᏒ ᏱᏥᏲᏍᎨᏍᏗ. ᎪᏪᎵᏃ ᎤᏍᏗ ᎤᏒᎦᎸᎩ ᎠᏍᏚᎢᏛ; ᎠᎦᏘᏏᏃ ᎤᎳᏏᏕᏂ ᎠᎺᏉᎯ ᎤᎳᏏᏅᎩ, ᎠᎦᏍᎦᏂᏃ [ᎤᎳᏏᏕᏂ] ᎦᏙᎯ ᎤᎳᏏᏅᎩ, ᎾᏍᎩᏃ ᏄᎵᏍᏔᏅ, ᏅᏩᎾᏓᎴ ᎾᏍᏉ ᏧᏂᏢᎩ ᎾᎿ ᎠᎹᏰᎵ ᎠᏁᎯ ᎤᏂᎷᏨᎩ, ᎠᎴ ᏕᎨᏥᏅᏩᏅᎩ; ᎿᏉᏃ ᏙᏓᎦᏅᏏ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏍᏓᏱᏳ ᏛᏂᏤᎷᎯᏏ, ᎠᎴ ᏙᏛᏂᏟᏌᏂ ᎨᎦᏑᏰᏛ ᏅᎩ ᏂᏙᏗᎦᎶᏍᎬ ᎤᏃᎴ, ᎦᎸᎶ ᎢᏴᏛ ᏫᏚᎵᏍᏘᏂᎸ. “ᎨᏍᏗ ᏱᏗᎪᏒᏍᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏕᏥᎸᏫᏍᏓᏁᎲ ᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒ ᏳᎵᏠᏯᏍᏕᏍᏗ; ᎠᎴ ᏰᎵᏉ ᎢᏥᏰᎵᏎᏍᏗ ᏄᏍᏛ ᎪᎱᏍᏗ ᎢᏥᎲᎢ; ᎯᎠᏰᏃ ᎢᏳᏪᏛ ᎢᎩ, ᎥᏝ ᎢᎸᎯᏳ ᎤᏁᎳᎩ ᏴᎦᎬᏰᎵᏏ, ᎥᏝ ᎠᎴ ᏴᎦᎬᏴᏕᎩ. ᏦᎢ ᏅᎩ ᏩᏍᏗ, ᏯᎵᏖᎸᎲᏍᎬᎾ ᎤᎴᏗ ᎤᏓᏅᏖᏗ, ᎤᏓᏅᏖᏗ ᏄᏍᏛ ᎬᏅᎢ, ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᎤᎦᏘᏗᏍᏗ ᎨᏎᎢ. ᎠᏗᎾ ᎤᏁᎳᎩ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᎦᎨᏛ ᏂᏨᏴᏁᎸᎾ ᎨᏒᎢ; ᎠᏎᏃ ᏥᏏᎾᏌᏂᏳ ᎨᏒ, ᎦᎶᏄᎮᏛ ᎠᏆᏔᏅᎩ ᏕᏨᏂᏴᎲᎩ. ᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎷᏨᎩ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏒᎩ ᎠᎨᏴ ᎠᎵᏃᎮᏗᏍᎬᎢ. ᎠᏎᏃ ᎥᏝ ᎩᎶᎢ, ᎦᏙ ᏣᏲᎭ? ᎠᎴ ᎦᏙᏃ ᎢᎯᏯᎵᏃᎮᏍᏗ? ᏳᏬᏎᎴᎢ. ᎠᏏᏉᏰᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᏥᎻᏱ ᏅᏗᏂᎶᏍᎬᎾ ᎨᏒᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎩ; ᎠᏎᏃ ᎾᏍᎩ ᎤᏂᎷᏨ, ᎤᏓᏅᏒᎩ ᏚᏓᏓᎴᏓᏁᎸᎩ, ᏕᎦᎾᏰᏍᎬᎩ ᎾᏍᎩ ᏗᎨᏥᏅᏍᏕᏎᎸᎯ. ᎠᏎᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᎾᏍᏉ ᏂᎯ ᎡᏘ ᎠᏁᎯ ᎤᏂᏃᎮᎸᎯ ᎢᏨᏗᏍᎪ ᎢᏥᏲᏍᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ? ᎪᎵᎬᏃ, ᎨᏍᏗ ᏳᎾᏓᏂᎸᏣ, ᎠᏎᏃ ᎨᏍᏗ ᏳᎾᏧᏔᏅ. ᎠᎴ ᎠᏍᏓᏯ ᎤᏁᎷᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᏣᎬᏫᏳᎯ, ᏂᎯ ᏂᏍᎦᏅᎾ ᎠᎴ ᏚᏳᎪᏛ ᎢᎭᏛᏁᎯ, ᎩᎳ ᏙᏓᎩᏳᎪᏓᏁᎸ ᏓᎩᏍᏛᏗᏍᏔᏂ ᎠᎴ ᏓᎩᏯᏞᏤᎢ ᎣᎩᎩᎬ ᎤᏂᏨᏅ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᏁᎭ. ᏥᏌ ᎠᎦᏔᎯᏳ ᎨᏒᎩ ᎠᎦᏴᎵᎨᎢ ᏂᎦᎥ ᎪᎱᏍᏗ ᏕᎤᏲᎯᏎᎸᎢ; ᎠᎴ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯᏱ ᏭᎶᎯᏍᏗ ᎨᏒᎢ, ᏗᏃᏪᎵᏍᎩᏃ ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏇᎵᏥᏆ ᎤᏪᎭ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵᎦ ᎬᏗᎭ ᏕᎦᏄᎪᏫᏍᎦ ᎠᏂᏍᎩᎾ. ᏣᏁᎳ ᏗᎦᏅᏍᎨᏂ ᏚᏣᏱᎵᎯᏍᏕ. ᎾᏂᎥᏉᏰᏃ ᎩᎶ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏚᏙᎥ ᎤᎬᏫᏳᎯ ᎠᏂᎡᎢᏍᏗᏍᎨᏍᏗ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎢᎦᏛᏉᏰᏃ ᎨᏒ ᎢᏗᎦᏔᎭ, ᎠᎴ ᎢᎦᏛᏉ ᎨᏒ ᎢᏓᏙᎴᎰᏍᎦ; ᏄᏍᏛ ᎠᏓᏍᏕᏓᎵᏴᏍᎪ. ᎠᏙᎯ ᎢᏣ ᏫᎶᎯ! ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎤᎾᏁᎳᎩ, ᎾᏍᎩᏉ ᎢᎦᎢ ᎤᏒᏁᎴᏃ ᎦᎴᏂ ᎠᎴ ᎤᏅᏩᏁᎢ ᎠᏎᏃ ᏄᏁᏤᎸᎾᏉ ᎥᎨᏒᎩ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸᎩ, ᎬᏩᏔᏲᏎᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏫᎡᎾ, ᎢᎩᏍᎪᏂᎭᏰᏃ. ᏚᏏᎳᏛ ᏰᎵ ᏫᎦᏓᎡᎢ ᎦᎨᏒ ᎠᏣᏗ.” ᎨᏍᏗ ᎪᎰᏍᏗ ᎬᎪᏩᏛᏗ ᏱᎩ ᏍᎪᎯ ᎢᏯᎳᏏᏔᏅ ᎠᎫᏱᏣ, ᎩᎶ ᏧᏂᎭᎷᎪ ᎠᏁᎵᎠ ᏳᎾᏛᎦᎾ ᎤᏩᏂᎦᏢ ᏳᏬᎰᏌ ᎠᎴ ᏥᏍᏆ ᏱᏄᏪᏌ, ᎦᏥᏍᏛᏗᏍᏙᏗ ᎦᏥᏲᏎᎸ ᏎᏉ ᏱᏚᏂᏍᏔᏲᎳ. ᎠᏴᏃ ᏗᎦᎵᏂᎩᏛ ᏥᎩ ᎤᏁᎳᎩ ᏱᏗᏕᎵᏎᎭ ᏓᏂᏩᎾᎦᎸ ᏗᏂᏩᎾᎦᎳᎢ, ᎠᎴ ᎥᏝ ᎢᎬᏒᏉ ᎣᏍᏛ ᎢᎩᏰᎸᏗ ᏱᏂᎨᏓᏛᏁᎵᏙᎭ. ᏃᎴ ᏰᎵᏉ ᏄᏟᏂᎬᎨ ᏧᏚᏓᎸᏁᏗ ᎠᎬᏱᏣ ᎠᏂᎾᎷᏍᎩ ᏴᏫ, ᎧᏂᎩᏛ ᏱᎫᏩᎾᏓᏓᏍᎨᎢ ᎠᎪᎾ ᏧᏂᏲᏏᏍᎩ ᏃᎴ ᎤᎾᎵᏗᎩᏏᏗᏒ, ᏁᏂᏏ ᎠᏰᎸ ᎤᏂᎳᏗᏍᎬ ᎢᏳᏍᏗ. ᏭᏯᏅᎮᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᏥᏄᏍᏗ ᏥᎬᏯᏛᎩᎭ? ᎬᏂᎨᏒ ᏅᎦ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎸ ᏣᎦᏌᏯᏍᏗᏕᎩ ᎨᏒᎢ; ᎪᎯᏰᏃ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎿᏉ ᏣᎦᏌᏯᏍᏗᏕᎩ ᏱᎨᏎᏍᏗ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ Ꮎ ᎨᎪᏪᎸ ᎯᎠ ᎠᏥᏃᎮᎸᏍᎬ ᏥᏂᎬᏅ; ᎬᏂᏳᏉ, ᏥᏅᎵ ᏥᏅᏏᏓᏍᏗ ᏣᎧᏛ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᏓᏣᏛᏅᎢᏍᏓᏁᎵ ᏣᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ. ᎥᎥ, ᎠᎴ ᎾᏍᏉ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᎨᏴ ᎣᎦᏓᏡᎬ ᎠᏁᎳ ᎤᏍᏆᏂᎪᏗ ᎪᎦᏓᏅᏓᏗᏍᏔᏅᎩ, ᎾᏍᎩ ᎩᎳ ᏧᎩᏥᏍᎪ ᎠᏤᎵᏍᏛ ᏭᏁᏙᎸᎯ; ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎿᏉ ᎤᏟ ᎢᎪᎯᏛ ᎬᏆᏛᏂᏗᏍᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ, ᎠᏆᏓᏅᏒᎩ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ ᏄᏍᏛ ᎢᏦᎯᏳᏒᎢ, ᎪᎱᏍᏗ ᏴᏗᎤᎵᏍᏙᏔᏅ ᎠᏓᎪᎵᏰᏍᎩ ᏳᏂᎪᎵᏰᎥ, ᏙᎩᎸᏫᏍᏓᏁᎸᏃ ᎠᏎᏉ ᏱᏄᎵᏍᏔᏂᏙᎸ, ᎠᏇᎵᏒᎩ. ᎠᏂᏃᎮᏍᎬ ᎠᏍᎦᏯ, ᏰᎵᏉ ᎤᏥᏥᏙᏗ ᎾᏍᎩᏴ ᎤᏦᏩᏛ ᏳᏫᏓᎩᎳᎩ ᎠᏕᎳ ᎤᏍᏕᏓᎵᏴᏍᏙᏗ ᎫᎦ, ᎾᏍᎩᏯ ᏯᏍᎦᏅᎬᎾ ᎾᏛᏁᎲ. ᎦᏄᎸ ᎤᎾᎴᏍᏗᏯᎥ ᏗᏩᏛᏗ ᎧᏁᏌᎢ ᏗᎦᎶᏔᏅ ᎠᏂᎳᏗᏍᎩ ᏚᏯ ᎪᏒᏅ ᏗᎨᎵᏍᎩ, ᏧᏪᏥ ᏗᎫᏅ, ᎦᏚ ᏧᏍᏓᎦᏴᎯᏓ ᏧᎵᎦᎸᏓ, ᎦᏚ ᏧᎦᎾᏍᏓ ᏗᏔᎸᎩᏓ ᏧᎵᎦᎸᏓ ᏃᎴ ᎤᏅᏗ ᎤᏍᏔᏲᏒ ᏧᎵᎦᎸᏓ . ᎩᎳᏉᏃ ᎢᏴᏛ ᎾᏍᎩ ᏫᏚᏯᏅᎮᎢ; ᎤᏅᏕᏨᏃ ᎤᏂᏙᏓ ᏤᏈᏗ ᎨᎦᎫᏴᎡᎯ ᏧᏂᏅᏏᏓᏍᏗ ᎢᏧᎳᎭ ᏥᏳᎯ ᎤᎾᏣᎥᎢ, ᎬᏩᏍᏓᏩᏛᏎᎢ. ᎠᏏᎳᏛᏗ! “ᏃᏗ ᎠᎾᏦᎥᏗ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏏᏆ,” ᏧᏛᏁ ᏍᏓᏯ ᎦᏬᏂᏍᎩ. ᎿᏉ ᎯᎠ ᏂᏚᏪᎭᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎡᏉᎯᏳ ᏠᎨᏏ ᎤᎦᏛᎾᏨᎯ, ᎠᏎᏃ ᎠᏂᎦᏲᎵᏳ ᏧᏂᎸᏫᏍᏓᏁᎯ. “ᎭᏩ, ᏫᎵᎻ,” ᎤᏛᏁ ᏌᎳᏓ. ᏔᎵᏁᏃ ᏚᏮᏕᏤ ᎠᎴ ᎤᏓᏅᏎᎢ, ᎠᎴ ᏦᎢᏁ ᏭᏓᏙᎵᏍᏔᏁᎢ, ᎾᏍᎩᏯ ᏫᏄᏪᏎᎢ. ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎼᏏ ᎣᎪᏪᏁᎸ-Ꭹ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎩᎶ ᏗᎾᏓᏅᏟ ᎠᏲᎱᏍᎨᏍᏗ ᎤᏓᎵᎢ ᎤᏪᎧᎮᏍᏗ, ᎠᎴ ᏧᏪᏥ ᎾᏁ-ᎲᎾ ᎠᏲᎱᏍᎨᏍᏗ, ᎾᏍᎩ ᏗᎾᏓᏅᏟ ᎠᏓᏰᎨᏍᏗ ᎤᏓᏴᏛ, ᎠᎴ ᏓᏛᎯᏍᏓᏁᎮᏍᏗ ᏧᏪᏥᏗᎾᏓ-ᏅᏟ. ᎢᏣᎵᏏᎾᎯᏍᏗ ᎨᏎᏍᏗ, ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎢᏣᏡᏗᏍᎩᏰᏃ ᎠᏍᎩᎾ, ᏢᏓᏥ ᎤᏃᏕᎾ ᎤᏪᎷᎩ ᎾᏍᎩᏯ ᎡᏙᎭ ᏚᏲᎭ ᏧᏪᏰᏍᏗ. ᏐᏉ ᎢᏳᏩᎧᏘ ᏧᎾᎩᎶᏍᏗ ᎤᏒᏱ Chapel Hill ᎨᏙᎲᎢ. “ᎲᎦᎢᏴ ᏓᏘᏏᎳᏛᏂ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ. ᎤᎵᏍᏗᏳᏃ ᏭᏂᎷᏤᎢ, ᎠᎴ ᏚᏂᏩᏛᎮ ᎺᎵ ᎠᎴ ᏦᏩ, ᎠᎴ ᎠᏲᎵ ᏐᏈᎵ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎦᏅᎨᎢ. ᏂᎦᏓ ᎠᎪᏩᏛᏗ, ᏃᎴ ᎠᏛᎪᏗ ᏃᎴ ᎠᎵᏒᏍᏙᏗ ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ ᎣᏍᏓ ᏣᏰᎸᏗ, ᏫᎵᎻ-“ᎯᎠ ᎤᏬᏚ ᎡᎶᎯ, ᏗᎦᎸᏉᏗ ᎢᎦ...” ᎠᎴ ᎠᏂᏍᎩᎾ ᎾᏍᏉ ᎬᏩᏂᏄᎪᎨ ᎤᏂᏣᏖᎢ, ᎠᏁᎷᎲᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᏂᎯ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ. ᏚᏍᎦᏤᏃ ᏚᏅᏍᏓᏕᎴ ᎤᏂᏁᎢᏍᏗᏱ; ᎠᏂᎦᏔᎮᏰᏃ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ. ᎬᏂᏳᏉ ᏞᎩᏳ ᏓᏥᎷᏥ; ᎠᏍᏓᏱᏳ ᏕᏣᏂᏴᏎᏍᏗ ᎾᏍᎩ ᏣᎲᎢ, ᎾᏍᎩ ᎩᎶ ᎨᏣᎾᎡᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎠᎵᏍᏚᎶ ᏣᏤᎵᎦ. ᎠᎴ ᎿᏉ ᏭᏕᎵᎨ ᏅᏙ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏧᏂᏢᎩ ᏧᏁᎯ ᏕᎬᏩᏘᏃᎮᎴᎢ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏚᏏᏔᏕ ᏚᏅᏩᏁᎢ ᎠᎩᏰᏥᏍᏔᏅ ᏄᎬᏫᏳᏒ. ᎦᏰᎬᏍᏔ ᏱᏥᏏᎾᏒᎾ ᎨᏒ ᏗᏓᏁᏤᏘ. ”Ꭳ, ᏂᎦᏓ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏁᎯ. ᎤᎾᎵ ᎤᏁᏝᏅ ᎤᏬᏒᏅ. ᎤᎵᏏᎩ ᎠᎩᏰᏨ. ᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᎾᏍᏓᏁᎲᎢ, ᎠᎴ ᎤᏕᏯᏙᏗ ᏂᏣᎵᏍᏓᏁᎲᎢ, ᎠᎴ ᎤᏲ ᏂᏣᏛᎿᏕᎬᎢ, - ᎠᏎᏃ ᏤᎿᎢᏳ. ᎠᎴ ᏥᎦᏔᎭ ᎾᏍᎩ ᎤᏂᏐᏢᎢᏍᏙᏗ ᎨᏒ ᎣᏥᏧᏏ ᎠᎾᏗᏍᎩ, ᎾᏍᎩᏃ ᏄᏍᏛᎾ ᏥᎩ, ᏎᏓᏂᏉᏍᎩᏂ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎳ ᏥᎩ. “ᎦᏓᏍᏕᏓᎵᏴᏍᎩᏓ ᎤᏰᎸᏛᏃ, ᎩᎳᏈᏴ ᎠᏆᏍᏕᏓᎵᏴᏍᏗ ᏂᎦᏛᏁᎲ ᏯᎩᏄᎸᏅᎾ. ᏰᎵ ᎪᎯᏛ ᏭᏭᏍᏓᏍᎪ ᎧᏴᏐᎵ ᏤᎩᏏᏂ ᎤᎦᏎᏂ, ᎨᏍᏗ ᎫᏩᏒᎢᏍᏗ ᏱᎩ ᎬᎾᎩᎳ, ᎠᏎ ᏗᎧᏃᎨ ᎦᎵ ᎤᏂᏥᎸᏅ ᏱᏗᎦᏅᏁᎳ. ᏌᏌ ᏍᏉ ᎡᏝᏪᎯ ᎨᏎ. ᎢᏳᏰᏃ ᎢᏤ ᏡᎬ ᎾᏍᎩ ᏱᏅᏛᏅᏁᎵ, ᎦᏙ ᎨᏎᏍᏗ ᎤᎧᏲᏛ ᏡᎬᎢ? ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᎯ ᏂᏥᎥ ᏙᏓᏦᏕᎵ ᎪᎯ ᏒᏃᏱ ᏥᎩ, ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᏓᏥᏴᏂᎵ ᎠᏫ-ᏗᎦᏘᏯ, ᎠᏫᏃ ᎤᎾᏓᏡᎬ ᏛᎾᏗᎦᎴᏲᏥ. ᏗᎻᏟᏯ ᎾᏂᎥᏉ ᎣᏏᏳ ᎬᏩᏃᎮᎭ, ᎠᎴ ᎾᏍᏉ ᏚᏳᎪᏛ ᎨᏒ ᎣᏏᏳ ᎤᏃᎮᎭ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᎣᏥᏃᎮᎭ, ᎠᎴ ᎢᏥᎦᏔᎭ ᎣᏥᏃᎮᏍᎬ ᏚᏳᎪᏛ ᎨᏒᎢ. ᎢᎾᎨᎢ ᎠᎴ ᎤᏁᏍᏓᎳᏛᎢ ᎥᏓᎵ ᎠᏰᎵ ᏚᏙᏢᏒᎢ ᎢᏳᏃ ᏱᎩᎭ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᏗᎦᏄᏬ ᏱᏗᎩᎾᎠ, ᎾᏍᎩ ᏰᎵᏉ ᎢᎩᏰᎸᏎᏍᏗ. ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎤᏍᏆᏛ ᎠᏎᎸᎯ ᎨᏒ ᎢᎪᎯᏛ ᏧᎸᏫᏍᏓᏁᏗᏱ, ᎤᏪᏅᏎ ᏧᏪᏅᏒᎢ. ᏧᎾᏛᏐᏅ, ᎠᏂᎨᏴ ᏃᎴ ᏗᏂᏲᏟ. ᎯᏍᎩᏍᎪ ᎾᎥᏂᎨ. ᏗᏣᎴᎲᎦ, ᎢᏕᎾ; ᎬᏂᏳᏉ ᎠᏆᏡᏗᏍᎩ ᎡᏍᎦᏂᏳ ᏓᏯᎢ. ᎠᏎᏃ ᎤᎬᏫᏳᎯ ᎤᏣᏘ ᏥᏯᎵᎡᎵᏨᎩ, ᎾᏍᎩ ᎿᏉ ᎤᏬᎯᏨᎯ ᏍᎩᏯᏅᏛ ᏔᎵᏁ ᎠᏤᎯᏲᎩ, ᎾᏍᎩ ᎾᎿ ᎤᎬᏩᎵ ᎾᏍᏉ ᏍᎩᏯᏅᏛᎩ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏜᏅᏓᏕᎮᎢ. ᎢᏳᏃ ᏔᎵᏁ ᎠᏯᏫᏍᏗᏱ ᎨᏒ ᏳᎷᏨ, ᎠᎴ ᏦᎢᏁ ᎠᏯᏫᏍᏗᏱ ᎨᏒ ᏳᎷᏨ, ᎠᎴ ᏱᏚᏩᏛᎲ ᎾᏍᎩ ᎾᎾᏛᏁᎲᎢ, ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ. ”ᏂᎦᏓ ᎠᏆᏓᏅᏖᎸ ᎨᏒ ᎢᏯᏆᏛᏁᏗ, ᎠᏎᏃ ᏩᎦᎾ” ᎤᏛᏁ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᎥ, ᎤᏟᎯᏳᏍᎩᏂ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦᎠᎴ ᎾᏍᎩ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ. “ᏗᎨᏅᏒ ᏛᏕᏏ ᎯᎪ ᎢᎦ. ᏗᎨᏫᏃ ᎤᏬᏯᏁᏒ, ᎦᏚᎲ ᎤᏄᎪᏫᏎᎢ; ᏗᎦᏙᎵᏃ ᏚᎵᏥᏍᏋ, ᎠᎴ ᏚᏏᏔᏛ, ᎪᎱᏍᏗᏍᎪ ᎯᎪᏩᏛᏗᎭ? ᎤᏬᏎᎴᎢ. ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩᏉ.” “ᎨᏍᏗ ᏱᏥᎦᏔ,” ᎤᏛᏁ ᏌᎳᏓ. ᎾᎥᏃ ᎤᏂᎷᏤ ᎦᏚᎲ ᎾᎿ ᏩᏂᎦᏛᎢ; ᎤᏟᏃ ᎢᏴᏛ ᏥᏮᏗᎦᎶᏏᏐ ᎢᏳᏍᏗ ᏄᏛᏁᎴᎢ. ᎠᎩᎷᏥᎸ ᎾᏍᎩ ᎢᏯᏋᏂᎢᏗᏱ ᎠᏥᎸ ᎦᏙᎯ ᎤᎷᎯᏍᏗᏱ; ᎠᎴ ᎦᏙ ᏯᏆᏚᎳ ᎢᏳᏃ ᎦᏳᎳ ᏳᏥᏍᏝ? ᎯᎠ ᎾᏍᎩ ᏄᏍᏗᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩ ᎩᎶ ᏳᎬ ᎥᏝ ᏴᎬᏲᎱᎯ. ᎠᎴ ᏚᏁᏤᎴ ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᏂᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎠᏁᏙᎲᎢ, ᎠᏙᎳᏅᏍᏗ ᎤᏩᏒ; ᎥᏝ ᏕᎦᎶᏗ, ᎠᎴ ᎦᏚ, ᎠᎴ ᎥᏣᏱ ᏚᎾᏓᏠᎲᎢ; ᏂᎦᏓ ᎤᎾᏦᎣᏎᎢ. ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ ᎢᏨᏒ ᎣᏍᏛ ᎢᏣᎵᏍᏓᏁᏗ ᎠᏆᏑᎵᏍᎬᎢ; ᎥᏝ ᎢᏨᏌᏛᎥᏍᎬᏉ ᏱᎩ, ᎣᏏᏳᏍᎩᏂ ᎠᏰᎸᏗ ᎨᏒ [ᎢᏣᏛᏁᏗᏱ, ] ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏤᏥᎧᎿᏩᏗᏓᏍᏗᏱ ᎪᎱᏍᏗ ᏂᏥᏲᏍᏙᏓᏁᎲᎾ. ᎠᏎ ᎦᏲᏟᏉ ᎨᏒ ᎢᏰᏆ ᎢᏳᎵᏍᏙᏗ ᏍᎪᎯ ᎾᏕᏘᏴᎲ, ᎠᏎᏃ ᏰᎵᏉ ᎤᏦᏍᏔᏅ ᎦᏚᎲ ᎢᏳᎵᏍᏙᏗ, ᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᎨᏳᎢ ᎢᏓᎵᏅᏟ, ᎾᏂᎥ ᎣᏏᏄᎵᏳ ᎨᏎᏍᏗ Ꮎ ᎤᏛᎪᏗᏱ, ᎤᏍᎦᏃᎵᏳ ᎨᏎᏍᏗ ᎤᏂᏁᎢᏍᏗᏱ, ᎤᏍᎦᏃᎵᏳ ᎤᏂᏔᎳᏬᎯᏍᏗᏱ. ᏴᏫᏃ ᎤᏁᎳᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎸᎳᏗ ᎡᎯ ᎧᏁᎦ, ᎥᏝᏃ ᏴᏫ. ᎤᎾᎳᏅᎯᏃ ᎤᏩᏒ ᎾᏍᎩ ᎢᎩᏙᏓ, ᎠᎴ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎣᎦᏘᏅᏍᏗ ᎨᏎᏍᏗ ᏗᏤᎲᎢ. ᏗᎪᏪᎵᏍᎩᏃ ᏚᏲᏍᏙᏓᏁᎸ ᏴᏫ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎡᏈᏌ ᎢᏤᎯ, ᎦᎪ ᎡᎭ ᎾᎦᏔᎲᎾ ᎦᏚᎲ ᎡᏈᏌ ᎾᏍᎩ ᎡᏓᏓᏙᎵᏍᏓᏁᎯ ᎨᏒ ᎦᎸᏉᏗᏳ ᎦᎸᎳᏗ ᎡᎯ ᏓᏰᏂ, ᎠᎴ ᏧᏉᏙ ᏅᏓᏳᎶᎣᏒᎯ ᏗᏟᎶᏍᏔᏅᎯ? ᎾᏍᎩᏃ ᎾᏍᏉ ᎾᎯᏳᏉ ᎤᎷᏤ ᎤᎵᎮᎵᏤᎴ ᏱᎰᏩ, ᎾᏍᎩ ᏕᎧᏁᎢᏍᏓᏁᎮ ᎾᏂᎥᏉ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎠᏂᎦᏖᏃᎯ ᎠᎫᏴᏙᏗ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗᏱ. ᏄᏓᎴ ᏂᎦᏛᏁᎲ ᎠᎩᎸᏂᏗᏍᎩ ᎠᏁᎵᏍᎬ ᏴᏫ, ᎠᏙᏩᏗᏍᏗ ᏥᏁᎬ ᎠᏙᎯ ᎦᏓᏁ ᎢᎦ ᏱᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᏣᏍᎦᎩ ᎠᎪᏄ ᎤᏲᏏᏍᎨᏍᏗ, ᎯᏰᎶᎮᏍᏗ; ᎢᏳᏃ ᎤᏔᏕᎩᏍᎨᏍᏗ, ᎯᎤᎥᏍᎨᏍᏗ; ᎾᏍᎩᏰᏃ ᎿᏛᏁᎲ ᏥᏃᏍᎦ ᏧᏥᏍᏟ ᏕᎯᏡᏍᎨᏍᏗ ᎠᏍᎪᎵ. ᎯᎸᎢᏴ ᎤᏬᏒᏅ ᎢᎩᏁᎰ, ᏗᎦᏗᎩᏍᏗ ᎠᎴ ᏗᎩᎨᏬᏗ. ᎠᎴ ᎾᎿ ᎥᏝ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏗᎬᏩᎸᏫᏍᏓᏁᏗ ᏱᎨᏎᎢ, ᎤᏩᏒᏍᎩᏂᏃᏅ ᎢᎸᏍᎩ ᎢᏯᏂᏛ ᏧᏂᏢᎩ ᏚᏏᏔᏛ ᎠᎴ ᏚᏅᏩᏅᎢ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᎦᏓᎴᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᏨᏗᏓᎴᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏂᎷᏤᏗ ᎠᎴ ᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏥᎩ; ᎥᏝᏰᏃ ᏧᎾᏓᎴᎿᎢ ᏱᎩ; ᎣᎭᏁᎯ ᎦᏲᏟ ᎤᏆᏂᏲᎸ ᏥᏃᎯᏎᎲ ᎢᏴ ᏭᏍᏔᏅᏂ, ᎦᏚᎢᏣ ᎠᎦᏍᎦᏂ, ᎡᎳᏗᏣ ᎠᏰᎵ, ᎤᏕᎶᎰᏒ ᎢᏳᏍᏗ ᎦᏅᏗᏍᎬ Perry. ~ᎠᎹ ᎣᏏᏳ; ᎢᏳᏍᎩᏂ ~ᎠᎹ ᏳᏥᏍᎪᎸ, ᎦᏙ ᏘᎦᎵᏍᏙᏓ ~ᎠᎹ ᏯᏙᏢᎾ. ᎾᏍᎩ ᏥᏄᏍᏗ ᎢᏗᎪᏩᏘᎭ ᎾᏍᎩ ᎾᎬᏩᏂᎬᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏄᏃᎯᏅᎾ ᎨᏒᎢ. “ᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ. ᎡᎵᏍᏗᏉ ᎾᎴᎩᏉᏱᎩ ᏃᎴ ᏎᎷ ᎢᏣ ᏱᏥᏁᎸ. ᎠᎴ ᎾᏍᎩ ᎠᎬᏗᏍᎬ ᎤᏩᏒ ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ, ᎤᎩᎬ ᏓᏓᎿᏩᏍᏛ ᎤᏨᏅᎯ ᎤᏬᎯᏳᏍᏔᏅ; ᎾᏍᎩ ᎠᎬᏗᏍᎬᎢ, ᎢᏳᏃ ᎡᎶᎯ ᎠᏁᎯ ᏱᎩ, ᎠᎴ ᎦᎸᎳᏗ ᎠᏁᎯ ᏱᎩ. ᎢᏨᎨᏳᎢ, ᎢᏳᏃ ᏗᎩᎾᏫ ᏂᏗᎫᎰᏓᏁᎲᎾ ᏱᎩ, ᎤᎦᎵᏍᏗᏳ ᎢᎦᏓᏅᏔ ᎤᏁᎳᏅᎯ ᎡᏓᏓᏅᏖᏍᎬᎢ; ᎢᏍᏔᏯᏊᏛ ᎤᏃᏴᏍᏕ ᎠᏒᏛᏗ. ”ᎭᏂ ᎢᏴ ᎬᏯᏫᏒᎦ. ᏥᏌᏃ ᎤᏬᎴ ᎠᏕᎸ-ᏗᏗᏱ ᏧᏳᎪᏗ, ᎠᎴ ᎤᎪᎮ ᎾᎾᏛᏁᎲ ᏴᏫ ᎠᏕᎸ ᏓᏂᎲᏍᎬ ᎠᏕᎸ-ᏗᏗᏱ; ᎤᏂᏣᏘᏃ ᏧᏁᎿᎢ ᎤᏣᏘ ᏓᏂᎲᏍᎨᎢ. ᎿᏉᏃ ᏆᎴᏗ ᏔᎵᏁ ᏗᎫᎪᏗᏱ ᎤᏴᎸᎩ, ᎠᎴ ᏥᏌ ᏭᏯᏅᎲᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ, ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᏕᏯᏔᏁᎭ? ᎠᎴ ᎦᏙᏃ ᏧᏢᏫᏛ ᏂᏣᎵᏍᏓᏁ ᏙᏗᏣᏓᏅᏛᎢ? ᎤᏁᎳᏅᎯ ᎡᏗᎨᏳᎢ ᏥᎨᏐᎢ, ᎠᎴ ᏥᎩᏍᏆᏂᎪᏙ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᏍᎪ ᎨᏗᎨᏳᎢᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᏧᏪᏥ. ᎨᎦᎵᏱᎵᏕᏗᏰᏃ ᎪᎯ ᎢᎦ ᎤᏓᏑᏰᏛ ᏥᏓᎵᏖᎸᎲᎦ, ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏯᎭ ᎨᎩᏃᎮᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎯᎠ ᎪᎯ ᏥᏓᏓᎶᏌ. ᎤᎩᏨᏓ ᏭᎷᏣ ᎤᏂᎵᏦᏩᏛ ᏣᎵ, ᎨᏍᏗ ᏯᎵᏎᎭ ᎩᎦᎭ ᎤᏍᎪ ᎡᎳᏗᏣ ᏲᎾ ᎠᎴ ᎤᏍᏆᏂᎦᏔ ᎧᏃᎮᏗ. ᎯᎠ ᏄᏍᏕᏍᏗ ᎢᎬᏱ ᎢᏣᏅᏖᏍᏗ, ᎾᏍᎩ ᎤᎵᏍᏆᏅᏗ ᎨᏎᏍᏗ ᎤᏂᎷᎯᏍᏗ ᎨᏒ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ ᎤᏅᏒ ᎤᎾᏚᎸᏅᎥᏍᎬ ᎠᏂᏍᏓᏩᏕᎩ, ᏝᏍᎪ ᎯᎠ ᎢᏤᏥᏪᏍᏗ ᏱᎩ; ᎠᏏ ᏅᎩ ᎢᏯᏅᏙ ᎩᎳ ᏛᎦᏛᎾᏥ? ᎬᏂᏳᏉ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏗᏥᎦᏙᎵ ᏗᏥᏌᎳᏛᎦ, ᎠᎴ ᏕᎦᎶᎨᏒ ᏗᏣᎧᏅᎦ, ᎿᏉᏰᏃ ᏧᏁᎩᏳ, ᎠᎴ ᎤᏍᏆᎸᎲ ᎠᏍᎫᏕᏍᏗᏱ. ᎾᏍᎩᏃ ᎬᏬᎯᏳᏁᎢ; ᏫᏚᏂᏯᏅᎲᏃ ᎨᏥᏅᏏᏛ ᎠᎴ ᏚᏂᎵᎥᏂᎸ, ᏚᏂᏅᏍᏓᏕᎴ ᏥᏌ ᏚᏙᎥ ᎤᏂᏁᎢᏍᏙᏗᏱ, ᎠᎴ ᏚᏂᎧᏁᎢ. ᎤᎾᎵᏍᏙᏗ, ᎦᏁᎦ ᎠᎧᎭᏲᏔᏅ ᎬᏔᏂᏓᏍᏗ, ᏗᎩᏣᏗ, ᏔᎷᎩᏍᎩ ᏗᏓᏍᏔᏴᏙᏗ ᏃᎴ ᏗᎦᏓᎭ ᏗᎭᎾᏬ. ᎡᏙᏓ, ᎠᏆᏚᎵ ᎾᏍᏉ ᏗᏍᎩᎧᏁᎸᎯ ᎠᏴ ᎨᎥᎢ ᎾᏍᎩ ᎢᏧᎳᎭ ᎣᎦᏕᏗᏱ, -ᎾᏍᎩᏃ ᎤᏂᎪᏩᏛᏗᏱ ᎥᎩᎸᏉᏛᎢ, ᎾᏍᎩ ᏍᎩᏁᎸᎯ ᏥᎩ; ᏍᎩᎨᏳᎯᏳᏰᏃ ᎨᏒᎩ ᎠᏏ ᎡᎶᎯ ᎾᏓᎴᏂᏍᎬᎾ ᏥᎨᏒᎩ. ᎠᏰᎵ ᎢᏴ ᏫᎦᎢᏒ ᏫᏥᎪᎥ ᎤᎵᏏᎩ ᏩᎢᏒ ᎠᏍᏆᏚᎸ. “ᏂᎦᎵᏍᏙᏗ ᎨᏍᏗ ᎯᎸᎯᏳ ᏫᏤᏙᎸᎯ ᏱᎩ,” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ. ᏦᎢᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏂᏍᏓᏩᏛᏒᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ ᎠᏍᏓᏯ ᎧᏁᎬᎩ, ᎢᏳᏃ ᎩᎶ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᏓᏙᎵᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎠᎬᏓᎨᏂ ᎠᎴ ᎤᏬᏰᏂᏉ ᎠᎪᏪᎵᏍᎨᏍᏗ, ᏣᏂ ᏓᏓᏬᏍᎨ ᎢᎾᎨᎢ, ᎠᎴ ᎠᎵᏥᏙᎲᏍᎨ ᎧᏃᎮᏍᎨ ᏗᏓᏪᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏍᏗᏱ ᎣᏓᏅᏛ ᎤᎬᏩᎵ ᎾᏍᎩ ᎦᏴᏓᏘᏁᏗᏱ ᎠᏍᎦᏅᏨᎢ. ᎢᏗᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎾᏂᎥ ᎨᎦᏁᎳᏅᎯ ᎨᏒ ᎢᏧᎳᎭ ᎤᏂᎵᏰᏗᏍᎬ ᎠᎴ ᎠᏂᎩᎵᏲᎬ ᎪᎯ ᎢᏯᏍᏗ. ᎩᎶ ᏣᏍᎦᏅᎪᎢ ᎠᎴ ᏂᏓᎧᎿᏩᏕᎬᎾ ᏥᎨᏐ ᎦᎶᏁᏛ ᏧᏕᏲᏅᎯ, ᎾᏍᎩ ᎥᏝ ᎤᏁᎳᏅᎢ ᏳᏪᎰᎢ. ᎾᏑᎵᎪᎬᎾᏍᎩᏂ Ꮎ ᏓᎧᎾᏩᏗᏒ ᏗᎧᎿᏩᏕᎩ ᎦᎶᏁᏛ ᏧᏕᏲᏅᎯ, ᎾᏍᎩ ᏚᏪᎭ ᎢᏧᎳ ᎠᎦᏴᎵᎨ ᎠᎴ ᎤᏪᏥ. ᎥᏝ ᎠᎴ ᎯᎠ ᏱᏂᎬᏂᏪᏍᎨᏍᏗ, ᎬᏂᏳᏉ ᎠᏂ! ᎠᎴ, ᎬᏂᏳᏉ ᎾᎿᏂ! ᎬᏂᏳᏉᏰᏃ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏤᎳᏗᏙᎭ. ᎠᎴ ᎾᏍᎩ ᏥᏄᏍᏛ ᏥᏫᏨᏲᏪᎳᏁᎸᎩ, ᏞᏍᏗᏉ ᎾᎿ ᏫᏥᎷᏨᎭ, ᎤᏲ ᏱᎬᏆᏓᏅᏓᏗᏍᏔᏁᏍᏗ ᎾᏍᎦ Ꮎ ᎤᎵᎮᎵᏍᏗ ᎬᏆᏓᏅᏓᏗᏍᏙᏗ ᏥᎩ, ᎠᏇᎵᏒᎩ; ᏂᏥᎥᏉ ᎢᏨᏲᎢᏳᎭ ᎾᏍᎩ ᏄᏍᏛ ᎠᏆᎵᎮᎵᏍᏗᏍᎬ ᎾᏍᏉ ᎾᏍᎩ ᏂᎯ ᏂᏥᎥ ᎢᏣᎵᎮᎵᏍᏗᏍᎬᎢ. ᎤᏗᎴᎩ ᏱᎩ ᎯᎠ ᏥᏄᏍᏗ, ᏧᏆᎶᎦ ᏃᎴ ᏗᏒᏆᎶᎩ ᎭᏫᏂᏣ ᏚᏲᎰ ᎤᎪᏏᏓ ᎢᏗᏅᏁ. ᏉᎳᏃ ᏫᏚᏴᏎᏗᏱ ᏴᏫ ᎤᏓᏅᏖᎸ, ᎠᏃᎯᏳᎲᏍᎩ ᎬᏩᏅᏍᏓᏕᎸᎩ. ᎧᎪ ᎤᏓᏅᏖᎸ? ᏐᏉ ᎢᎦ ᎣᎭᏁ, ᏂᎦᏓ ᏓᏨᏅᎦᎸ ᏀᎾ ᎨᏒ. ᏧᏆᎶᎬ ᎤᏩᏩᏙᎣᏒ ᎦᏁᎲ ᏚᎳᏍᎬ ᎾᎥᏂ, ᏚᏑᎬ ᎤᏗᏍᎦᏢ. ᏣᎵ ᏭᏩᏅᏔᏛ ᎤᎵᏍᏆᏓ ᎤᎸ ᎤᎵᏦᎯᏓ ᎦᎳᎩᏅ. ᏥᏌᏃ ᏚᏁᏤᎸ, ᎤᎴᏅᎮ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏤᏯᏔᎮᏍᏗ, ᏞᏍᏗ ᎩᎶ ᏥᏥᎶᏄᎮᎵ. ᏭᏴᎴ ᏗᏯᎥ ᏫᎵᎻ ᏃᎴ ᎤᎴᏅᎮ ᏚᎷᏫᏍᏔᏁᎲ. ᎢᏧᏓ-ᎴᏍᎨᏍᏗ ᎪᎯ ᎨᏒ ᎠᎵᏱᎵᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎤᏲᎢᏳ ᎨᏒ ᎪᎯ ᎨᏒᎢ. ᎠᎢᏒᏃ ᏕᎹᏍᎦ ᎾᎥ ᏭᎷᏤᎢ, ᎤᏰᎶᎢᏍᏔᏁᏃ ᎢᎦᎦᏘ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᏚᏚᏫᏍᏔᏁᎢ. ᎨᏥᏒᏃᏁᎸ ᎦᏳᎳ ᎤᎾᏓᏟᏴᏍᏙᏗ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᎾᏙᏓᏆᏍᎬ ᎤᏙᏢᏁ ᏴᏫ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᎢ; ᎥᏝᏃ ᎤᎾᏙᏓᏆᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏴᏫ ᏱᎨᎪᏢᏁᎢ. ᏙᏧᎾᏓᏅᏛᏃ ᎤᎾᏓᏅᏖᎴ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᏳᏃ ᎦᎸᎳᏗ, ᏲᎦᏛᏅ, ᎯᎠ ᏱᏃᎩᏪᏏ, ᎦᏙᏃ Ꮭ ᏱᎡᏦᎢᏳᏁᎢ? ᎦᏓ ᎤᎮᎢ, ᎤᎾᏗᏅᏎᎢ, ᎠᎴ ᎠᏕᎸ ᏚᏲᎴᎢ, ᎠᎴ ᎾᏍᎩ ᏕᎤᏁ ᎨᏥᏅᏏᏛ ᏧᎾᎳᏏᏕᏄᎶᏗ. ”ᎭᏩ,” ᎤᏛᏁ ᏣᏄᏏ. ᎤᏂᏄᎪᏨᏃ ᏗᏓᏍᏚᏗᏱ ᎵᏗ ᎦᏁᎸ ᏭᏂᏴᎸᎩ; ᏚᏂᎪᎲᏃ ᎠᎾᏓᏅᏟ, ᏚᏂᎦᎵᏍᏓᏛᎩ, ᎠᎴ ᎤᎾᏂᎩᏒᎩ. ᎠᎴ ᏅᏩᏙᎯᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏫᏳᏌᏕᎨᏍᏗ ᏗᏥᎾᏫᏱ, ᎾᎿ ᎢᏗᏢ ᎾᏍᏉ ᎡᏥᏯᏅᏛ ᏥᎩ ᎾᏍᎩ ᏌᏉ ᎠᏰᎵ ᎢᏣᎵᏍᏙᏗᏱ; ᎠᎴ ᎤᎵᎮᎵᏍᏗᏳ ᎢᏣᏓᏅᏖᏍᏗ. ᎠᎴ ᎠᏂᏯᏫᏍᎩ ᎿᏍᏉ ᎦᎬᏩᏐᏢᏕᎢ, ᎬᏩᎷᏤᎮ ᎠᎴ ᎬᏩᏁᏁᎮ ᏧᏂᏦᏯᏍᏗ, ᎤᏔᎷᎩᏍᎨ ᏚᏏᎳᏛ, ᎤᏬᏚᏨ ᏃᎴ ᎠᏍᏆᏂᎪᎯᏍᏗ ᏄᏍᏕ, ᎾᎥᏂᎨ ᎤᏌᎨᎢ ᎠᏍᏚᎶᏙᏗ. ᎦᏳᎸ ᎤᎨᏫᏒ ᎠᏍᎦᏍᏗ. ᎦᏳᎸ ᏚᏓᏂᎸᏨᎢ. ᏥᏌᏃ ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙ ᏕᏣᏙᎥ? ᎯᎠᏃ ᏅᏗᎤᏪᏎᎢ; ᏑᎾᏓᏡᎩ; ᎤᏂᏣᏖᏰᏃ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ ᎨᏎᎢ. ᏥᎮᎾ ᏗᏤᏅᏒᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏫᏅᎦ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏂᏣᏛᏁᎸ ᎤᏁᎳᏅᎯ. ᎤᏪᏅᎴᏃ, ᎠᎴ ᏭᏃᎮᎵᏙᎴ ᏂᎬᎢ ᎦᏚᎲ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏄᏛᏁᎸ ᏥᏌ. ᏃᏗ ᎠᎩᏩᏛᏗ ᎨᏎᏍᏗ ᎤᏓᏅᏗ ᏧᎬ ᏥᏯᎵᏍᎦᏍᏙᏗ. ᏳᏃᏴᎬᎾ ᎨᏒ ᎨᏴ. ᎿᏉᏃ ᏥᏳᎯ ᏕᎬᏩᏓᏂᎸᏨᎩ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏳ ᏭᏔᎳᏗᏨᎩ ᎾᎿ ᎤᎾᏅᏔᏩᏗᏒᎢ. ᎨᏍᏗ ᏳᎾᏓᏅᏖᎳ ᏧᎾᏓᎯᏍᏗ. ᏈᏗᏃ ᏭᏩᏂᎸ ᎠᏍᏚᎲ ᎦᎶᎯᏍᏗᏱ, ᎠᏛ ᎶᏗ ᏧᏙᎢᏛ ᏧᏛᏓᏍᏔᏅᏎᎢ; ᏂᎦᏓ ᎠᏂᏴᏫᏯ ᎤᏁᏅᏍᏗ ᎤᏚᎵᏍᎨ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏰᎵᏍᎨ ᎢᏳᏁᎾ ᎨᏒ ᎠᎴ ᎢᏳᏂᏁᎦ ᎨᏒ, ᎤᏬᏪᎳᎩᏎ ᏍᎩᎾᎾ ᎠᏓᏁᏢ . ᎯᏣᏕᎶᎰᏍᎨᏍᏗ ᏄᏬᏍᎩᎸ ᏃᎴ ᏄᏁᎩᏴ ᎤᏁᎦᎸᎢ, ᎤᏩᏙᎯᏴᏓ ᎩᎦᎨ ᎤᏍᎪᎸ ᏚᏔᎷᎩ ᏗᎦᎴᏂ ᏃᎴ ᎧᏴᏐᎵ.” ᎢᏕᏅ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎡᏙᏓ ᎡᏆᎭᎻ, ᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏲᎱᏒᎯ ᏱᏭᏂᎷᏤᎸ ᎠᏎ ᏱᏓᏂᏁᏟᏴᎾ ᏓᎾᏓᏅᏛᎢ. ᎢᎬᏱᏱᏃ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ ᎦᏚ ᎠᎬᎭᎷᏯᏍᏗᏱ ᎤᎬᏩᎵ ᎠᏃᎯᏳᎲᏍᎩ ᎤᎾᏓᏟᏌᏅ, ᏉᎳ ᏚᎵᏥᏙᏁᎸᎩ, ᎤᎩᏨᏛᏉ ᎤᏪᏅᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎡᏃᏱ ᎠᏰᎵ ᏫᎬᏩᏛᏅᎩ ᎦᏬᏂᏍᎬᎩ. ᎤᏙᎯᏳᎮ ᏥᏂᎦᏪᏍᎬ ᎠᎦᏴᎵ ᎤᏃᏕᎾ, ᏦᏒᎢ ᎢᏳᏍᏗ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ. ᎠᎴ ᎬᏂᏳᏉ ᎠᏓᏰᏍᎩ ᎤᏢᎩ ᎤᎷᏤ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᏱᏣᏓᏅᏖᎸ ᏰᎵᏉ ᏱᏍᎩᏅᎦᎸ. ᎠᏎᏃ ᏚᏳᎪᏛ ᏥᏁᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᏱᏍᎩᏲᎢᏳᎲᏍᎦ. ᎠᏂᏲᏍᎩ ᎤᏣᏅᏗ ᎠᏂᏙᎾᎥ. ᏢᏃ ᏔᎵ ᎢᏳᏟᎶᏓ ᎢᏳᏓᏅᎯᏓ ᎨᏒ ᏦᎨᏅᏒ ᏂᏛᎯᎩᏓ. ᎠᏴᏃ ᏕᏣᏙᎥ ᎦᏥᎾᏄᎪᏫᏎᎸ, ᎠᎴ ᎠᏎ ᏓᎦᏥᎾᏄᎪᏫᏎᎵ, ᎤᏁᎳᏗᏍᏙᏗᏱ ᎠᏴ ᏍᎩᎨᏳᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎦᏥᏯᎢ ᎢᏳᎵᏍᏙᏗᏱ. ᎥᏝᏃ ᏰᎵ ᏅᏓᎬᏪᏬᎯᎵᏴᏍᏓᏁᏗ ᏱᎨᏎ ᎾᏍᎩ ᎯᎠ. ᏗᏓᏍᏚᏗᏱᏃ ᎠᎦᏘᏯ ᎾᏍᎩ ᏅᏧᏂᏪᏒ ᎤᏃᏁᎴ ᏉᎳ; ᏗᏄᎪᏗᏍᎩ ᏛᎾᏓᏅᎵ ᏗᏍᏛᏯᎪᏗᏱ; Ꭷ, ᏍᏗᏄᎪᎢ ᎠᎴ ᏅᏩᏙᎯᏩᏛ ᎢᏍᏕᎾ. ᎠᏎᏃ ᏍᏏᏉᏯ, ᎠᎾᏗᏍᎪ, Ꮭ ᎠᏲᏩᏁᎦ ᎪᎵᎦ ᎠᎴ ᎠᎪᎵᏰᏍᎩ ᏱᎨᏎ ᏝᏍᏊ ᎠᎴ ᎠᏓᎴᏂᏍᎬ ᎠᏲᏩᏁᎦ ᎤᎪᎵᏰᏗ. ᎩᎦ ᎤᏓᏅᏅ ᎠᏆᎧᏛ. ᎯᏍᎩᏰᏃ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡ ᎠᏂᏍᎦᏯ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏩᎾᏅᎥᎦ ᎯᏍᎦᏍᎪᎯ ᎢᎫᏂᏨᏛ ᎨᏎᏍᏗ. ᎾᏍᎩ ᏚᏪᏟᏌᏅ ᎠᎴ ᏅᏩᎾᏓᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏪᏟᏌᏅ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ, ᎢᏥᎦᏔᎭ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏧᎬᏩᎶᏗ ᎢᏗᏩᏛᏗᏍᎬᎢ. “ᎤᏟᏂᎩᏓ ᎠᏓᏯ ᏧᎬ ᏓᏥᏯᏛᏛᏂ ᎨᎵᎠ ᏳᏣᏅᏓ,” ᎤᏛᏁ “ᎠᏯ ᏏᏆ! ᏘᏰᎵᎯᏍᏓ, ᎾᏍᎩ ᏓᏓᏁᎳᏗᏒ ᎬᏩᏚᏫᏛ ᏩᏂᎶᎯ, ᎠᎴ ᏕᎦᏚᏩᏗᏒᎢ, ᎠᎴ ᏭᏂᏩᎯ ᎦᏚ, ᎥᏞᏰᏃ ᎪᎱᏍᏗ ᏯᏂᏰ ᎤᎾᎵᏍᏓᏴᏗ. ᎠᏎᏃ ᎢᏅᎯᏳ ᏭᎪᎲ ᏥᏌ, ᏚᏍᏆᎸᏔᏁ ᎠᎴ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎩᎶᏰᏃ ᎢᏥᎷᏤᎯ ᏅᏩᏓᎴ ᏥᏌ ᎠᎵᏥᏙᎲᏍᎨᏍᏗ, ᎾᏍᎩ Ꮎ ᎠᏴ ᎣᏣᎵᏥᏙᏅᎯ ᏂᎨᏒᎾ, ᎢᏳ ᎠᎴ ᏅᏩᏓᎴ ᎠᏓᏅᏙ ᏙᏣᏓᏂᎸᏨᎭ, ᎾᏍᎩ Ꮎ ᏗᏣᏓᏂᎸᏨᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩ Ꮎ ᏗᏣᏓᏂᎸᏨᎯ ᏂᎨᏒᎾ, ᎣᏏᏳᏉ ᎤᏁᎳᎩ ᏱᏤᎵᏒ. ᎤᏦᏍᏓᏁᎯ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎢ ᎤᎧᏛ ᎠᎳᏂ. ᏐᎳᏃ ᏕᎤᎴᏅ ᎡᎳᏗ ᎦᏅᎢ, ᎠᎴ ᏗᎦᏙᎵ ᏚᎵᏍᏚᎢᏒ ᎥᏝ ᎩᎶ ᏳᎪᎮᎢ, ᎬᏬᏱᏅᏎᏃ ᏕᎹᏍᎦ ᏫᎬᏩᏴᏔᏁᎢ. ᏗᏂᎦᏙᎵᏃ ᏚᎵᏍᏚᎩᏒᎩ. ᏥᏌᏃ ᏚᏅᏍᏓᏕᎸᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏞᏍᏗ ᎩᎶ ᎤᏙᎴᎰᏒᎩ. “ᎠᏯ ᏥᎦᏔ ᏰᎵᏉ ᏱᎪᎯᏳᎲᎦ,” ᎤᏛᏁ ᎤᏔᎾᏯ ᎤᏃᏕᎾ. ᏝᏍᎪ ᎠᏂᏔᎵ ᏥᏍᏆᏯ ᏌᏉ ᎢᏯᏓᏅᏖᏗ ᏧᎾᎬᏩᎶᏗ ᏱᎩ, ᎠᏎᏃ ᎥᏝᏌᏉ ᎡᎳᏗ ᎤᏅᎢᏍᏗ ᏱᎩ ᎢᏥᏙᏓ ᎤᏓᏅᏖᎸᎯ ᏂᎨᏒᎾ. ᎠᏎᏃ ᏈᏓ ᏕᎤᎴᏔᏁ ᎯᎠ ᏄᏪᏎᎢ; ᏔᎴᎲᎦ, ᎠᏴ ᎾᏍᏉ ᏴᏫᏉ. ᎠᎴ ᏌᎺᎵᏱ ᎠᏎ ᎤᎶᎯᏍᏗ ᎨᏒᎩ. ᎤᏏᏩ ᎨᏎ ᏫᎵᎻ ᎤᏍᏉᏟ ᏃᎴ ᎧᎵ ᎨᏎ ᎤᏓᏅᏖᏗ. “ᎦᏨ ᏛᏰᏏ ᎦᎷᏯᏍᏗ?” ᎤᏛᏛᏁ ᎤᏥ ᏲᎾ ᎤᏤᏍᏙ, ᏧᏃᏩ ᏓᏂᏌᎲᏍᎨ ᎦᏍᎩᎸ ᏑᎾᎴ ᎤᎾᎵᏍᏓᏴᏗ. ᏔᎳᎪᏰᏃ ᎢᎦᎢ ᎠᎵᎮᎵᏍᏗ ᏲᏣᎫᏴᏓᏏ ᎤᏁᎳᏅᎯ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᎦᎥ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎬᏒ ᎾᏍᎩ ᎣᏣᏓᏅᏓᏗᏍᎬ ᏂᎯ ᎨᏒ ᎤᎬᏩᎵ ᎣᎦᏤᎵ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ; ᎤᏓᏁᏙᏔᏁ ᎤᏃᎴ. ᎤᎴᏅᎮ ᏓᎧᏌᏬᎢᎲ. ᎠᎴ Ꮼ ᎤᏓᏙᎵᏍᏔᏅᎩ, ᎦᎸᎶᎢᏃ ᎤᎦᏃᏓᏁᎸᎩ, ᎪᏙᎯᏃ ᎤᎾᏄᎪᏫᏒᎩ ᎤᎾᏄᎪᏫᏍᏗ ᎨᏒᎢ. ᎢᏳ ᎠᎴ ᎦᎶᏁᏛ ᏧᎴᎯᏌᏅᎯ ᏂᎨᏒᎾ ᏱᎩ, ᎿᏉ ᎣᏣᎵᏥᏙᎲᏍᎬ ᎠᏎᏉᏉ ᏂᎦᎵᏍᏗᎭ, ᎠᎴ ᎢᏦᎯᏳᏒ ᎾᏍᏉ ᎠᏎᏉᏉ ᏂᎦᎵᏍᏗᎭ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎿᏉ ᏗᏥᏢ ᎠᎴ ᎠᎾᎵᏍᏓᏴᎲᏍᎬ ᎤᎬᏫᏳᏌᏕᎩ ᏪᏥᏁᎥᏏ. ᏭᏂᏁᎸᎩᏃ. ᎠᎼ ᎡᎳᏗ ᎦᎵᏍᏓᏯᎲᏍᎩ ᏃᎴ ᏧᎾᏓᎴᏅᏓ ᎠᏣᏗ ᏗᏥᎪᎥ. ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎤᏂᏣᏘ ᎾᏍᎩ ᏗᎨᎦᏪᏍᏗᏱ ᎤᏂᎸᏐᎸᎯ; Ᏺ ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᎦᎪ ᎢᏤᏯᏔᏅ ᎡᏣᎵᎡᏗᏱ ᎤᏔᎳᏬᎯᏍᏗ ᎤᎷᎯᏍᏗ ᎨᏒᎢ? ᏅᎩ ᎢᏴ ᏧᏥᏍᏔᏅ, ᎤᏃᎮᎸ ᏧᏙᏓᏋᏓ ᎡᏙᎲ ᏌᎷᏱ ᏃᎴ ᏚᏅᏓᏒ ᎤᏍᎦᎣᏅ ᎨᏐ. “Ꮟ ᎠᏍᎪᎵ ᏫᎯᏳᏓᎸᎥᎦ,” ᎤᏛᏁ ᏣᎵ. ᎾᏍᎩᏃ ᎦᏓᏅᏖᏍᎬ ᎤᏟ ᎣᏏᏳ ᎾᏍᎩ ᎯᎠ ᎪᎯ ᎨᏒ ᎠᎩᎵᏯ ᏤᎭ; ᎾᏍᎩ ᎤᏟ ᎣᏏᏳ ᎯᎠ ᎾᏍᎩ ᏱᏄᏍᏗ ᏴᏫ ᎡᎲᎢ. ᎠᏂᎷᎩ ᏌᏌ ᎠᏂᏓ. “ᎯᎠᏃ ᎤᏍᏆᏂᎩᏗ ᏅᎩ ᏗᎦᏅᏌᏗ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ, “ᎤᏙᎯᏳ ᎣᏍᏓ.” ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎬᏂᏳᏉ, ᎠᏂ ᏔᎵ ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ; ᎯᎠᏃ ᏂᏑᏪᏎᎴᎢ, ᏰᎵᏉ ᎾᏍᎩ. ᎦᏚᏏ ᎤᏓᏩᎫᎾᏔ ᎦᏄᎸᎯ ᎤᏂᎦᏘᏕᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏚᏅᏫᏍᏔᏅᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏳᎯ ᎤᎾᏦᏗᏱ, ᎠᎴ ᎢᎬᏱ ᏂᏚᏂᏐᎯᏍᏗᏱ ᎠᏏ ᏓᏰᎵᎯᏍᏗᏍᎬ ᎤᏂᏣᏘ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎾᏍᎩ ᎪᎯ ᎢᎦ, ᎠᎴ ᎪᎯᏉ ᏒᏃᏱ, ᎠᏏ ᏔᎵᏁ ᎾᏂᏴᎬᎾ ᏣᏔᎦ, ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ. ᎤᏄᎪᏨᏃ ᎯᎠ ᏫᏄᏪᏎᎴ ᎤᏥ, ᎦᏙ ᏓᏥᏔᏲᎵ? ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏣᏂ ᏗᏓᏬᏍᎩ ᎠᏍᎪᎵ. ᎾᏍᎩᏃ ᎢᎾᎨᎢ ᎤᏬᏚᎯ, ᎤᎵᎢᎩ, ᎠᎴ ᎭᏫᏂᏨ, ”ᎭᎾᏗ ᏣᎵᏓᏍᏗᎭ ᎩᎾᎵ, ᎩᎾᎵ,” ᎤᏛᏁ ᎩᎶ. ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᎠᎩᎬᏫᏳᎯ ᎨᏒ ᎥᏝ ᎠᏂ ᎡᎶᎯ ᎡᎯᏱᎩ. ᎢᏳᏃ ᎠᎩᎬᏫᏳᎯ ᎨᏒ ᎠᏂ ᎡᎶᎯ ᎡᎯ ᏱᎨᏎᎢ, ᏗᏆᏤᎵᎦ ᏱᏚᎾᏟᏴᎨᎢ, ᏞᏍᏗ ᎠᏂᏧᏏ ᏗᎨᏥᏲᎯᏎᎸᎩ, ᏳᏁᎵᏎᎢ. ᎠᏎᏃ ᎥᏝ ᎠᏂ ᎤᏓᎴᏅᎯ ᏱᎩ ᎠᎩᎬᏫᏳᎯ ᎨᏒᎢ. ᎤᎾᏓᏤᎵᏛᏃ ᏴᏫ ᏓᎾᏩᏗᏒ ᎤᏂᎿᎸᏨᎩ, ᎠᎴ ᏂᎯ ᎾᎯᏳ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎲ, ᎠᎴ ᎾᎯᏳ ᏧᏂᏲᎱᏒᎯ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏔᎫᏴᎡᏗ ᎨᏒ ᏘᏅᏏᏓᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏕᏣᏙᎥ ᎠᏂᎾᏰᏍᎩ, ᏧᎾᏍᏗ ᎠᎴ ᎾᏍᏉ ᏧᎾᏛᎾ; ᎠᎴ ᏗᏛᏙᏗᏱ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏂᏛ ᏗᏍᎩ ᎨᏒᎢ. ᏈᎵᏃ ᎤᏩᏛᎲᎩ ᏁᏓᏂᎵ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏥᏩᏛᎲ ᎾᏍᎩ ᎼᏏ ᎫᏬᏪᎳ ᏥᎧᏃᎮᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎵᎯ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏣᏂᏃᎮᎭ, ᎾᏍᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᏦᏩ ᎤᏪᏥ. ᎦᎶᎯᏍᏘᏳᎸ ᎤᏨᏏᏰᏍᎬ, ᏎᎷ ᎦᏚ ᎤᏑᎸᏓ ᎤᏩᏓᏫᏔᏅ ᎤᎳᎨᏯᏛᏅ ᎾᏍᎩᏴ ᏧᏅᏏᏯ ᎠᏆᏂᏲᏍᏗ ᏱᏓᏗᏅ. “ᏙᎢᏳᏍᏗ ᏣᎶᏗ ᎭᏫᏂ?” ᎤᏛᏛᏁ ᏫᎵᎻ, ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ ᎾᏍᎩ ᎠᏴ ᏴᎨᏨᏃᎲᏏ ᎢᏳᏍᏗ ᎨᏒ ᎠᏆᎵᏍᎦᏍᏙᏛ ᎯᎠ ᎾᏍᎩ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ. ᎩᎶᏍᎩᏂ ᎡᎶᎯ ᎡᎯ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏧᏪᎰᎢ, ᎠᎴ ᏣᎪᏩᏘᏍᎪ ᏗᎾᏓᏅᏟ ᎤᏂᎬᎬᎢ, ᎠᏎᏃ ᎾᏍᎩ ᏣᏍᏚᏁᎰᏉ ᎤᎾᏫ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏳᏪᎭ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒᎢ? ᎯᎦᏔᎭ ᎨᏍᏗ ᎠᏂᏬᏂᏍᎩ ᏱᎩ ᏗᎦᎾᏌᎢ. “ᎣᏍᏓᏗ ᎯᏃᎦ ᎨᎵᎠ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᎴ ᎾᏍᎩ ᎤᎧᎵᏨᎯ ᎨᏒ ᏂᏗᎥ ᎡᎩᏁᎸᎯ, ᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎶᏏᎶᏛ ᎡᎩᏁᎸ. ᏂᎦᏛᏃ ᎤᏂᏣᏘ ᎨᏒ ᎤᏃᎯᏳᏅᎯ ᏌᏉᏉ ᏄᏅᏁ ᏧᏂᎾᏫ ᎠᎴ ᏧᎾᏓᏅᏙ; ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏋᏒ ᎠᏆᏤᎵ ᏯᏗᏍᎨ ᎪᎱᏍᏗ ᎤᎲᎢ, ᎠᏰᎵᏉᏰᏃ ᏄᏅᏁᎢ ᏂᎦᎥ ᎪᎱᏍᏗ. ᎯᎠᏰᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎧᏃᎮᏛ ᏙᏓᎦᏥᏯᏠᎢᏍᏓᏁᎵ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒ ᎾᎯᏳ ᎦᎶᏐᏅᎭ ᎠᏗᎭ ᎤᎬᏫᏳᎯ; ᏚᎾᏓᏅᏛ ᏓᏓᏥᎳᏂ ᏗᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏧᏂᎾᏫᏱ ᏙᏓᎪᏪᎳᏂ; ᎠᎴ ᎠᏴ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ, ᎤᏅᏒᏃ ᏗᏆᏤᎵ ᏴᏫ ᎨᏎᏍᏗ; ᏃᎴ ᏔᎵᏁᎢ ᎤᏐᏱ ᏄᏛᏁᎴ. ᎭᏂ ᎦᏲᏟ ᎤᎪᏏᏓ ᎢᏯᏅᏁ. ᎤᎧᎭᏗ ᏱᎩ ᏑᎾᎴᎢ, ᏧᏬᏚᏨ ᎨᏐ ᏚᏏᎳᏛ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏴᏫ ᎤᏪᏥ ᎡᏥᏌᎳᏓᏅᎭ, ᎿᏉ ᏓᏣᏙᎴᎰᏏ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᎪᎱᏍᏗ ᏂᏓᎩᎸᏫᏍᏓᏁᎲᎾ ᎨᏒᎢ, ᎡᏙᏓᏉᏍᎩᏂ ᎠᏇᏲᏅ ᎾᏍᎩ ᏥᏃᎮᏍᎬᎢ. ᎠᏎᎩ ᎠᏆᎧᏛ ᎡᎶ ᏓᏥᎶᏍᏔᏅ ᎤᏍᎪᎸᏦᏅ ᎢᏳᏍᏗ ᏄᏍᏕ. ᎠᏏ ᏭᏓᎪᎾᏛ ᎯᎠ ᎾᏍᎩ ᏄᎥᏁᎴᎢ, ᏣᏂ ᏗᏓᏍᏚᏗᏱ ᎤᏍᏚᏁᎢ. ᎠᏎᏃ ᎦᏓᏅᏖᎭ.” ᎭᎾ ᎨᏙᎲ, ᎦᎶᎯᏍᏗ ᎤᏅᏏᏴ ᏗᎧᎧᎾᎦ! ᎭᏫᏯ ᎨᏒ ᎠᏫ ᎭᏫᏯ ᎠᎧᎭᏲᏔᏅ ᏭᏘᏴ ᎤᏩᏌ ᎤᏂᎲ, ᏎᎷ ᎢᏣ ᎤᎦᎹ ᎠᏑᏴᏗ ᎤᏩᏌ. ᎤᏙᎯᏳ ᎠᎫᏯᎶᏘᏍᏙᏗ! ᏆᏗᏱ ᎢᎦᎯ ᎠᎴ ᎻᏗᏱ ᎢᏕᎯ ᎠᎴ ᎢᎳᎻᏱ ᎢᏕᎯ ᎠᎴ ᎺᏌᏆᏕᎻ ᎢᏕᎯ, ᏧᏗᏱ ᎠᎴ ᎨᏆᏙᏏ ᎢᏕᎯ, ᏋᏗᏱᏃ ᎠᎴ ᎡᏏᏱ ᎢᏕᎯ, ᎠᏎᏃ ᏂᏚᎿᏍᏕᏢᎾᏉ ᎨᏐᎢ, ᎠᎴ ᏞᎦᏉ ᏥᏓᎧᎿᏩᏕᎪᎢ; ᎠᎩᎵᏴᏰᏃ ᎦᎾᏄᎪᎢ ᎠᎴ ᎧᏃᎮᏛ ᏛᎵᏰᎢᎸᏍᏓ ᎠᎦᏕᏯᏙᏓ, ᎩᎳᏉ ᎢᏴᏛ ᏚᏬᏕᎯᎰᎢ. ᎠᎴ ᏦᎢᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏆᏛᎦᏅᎩ ᏦᎢᏁ ᎾᏍᎩ Ꮎ ᎬᏃᏛ ᎯᎠ ᏄᏪᏒᎩ, ᎡᎭᎦᏔᏄᎦ. ᎠᎴ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎬᎿᎨ ᏐᏈᎵ; ᎠᎴ ᎾᎿ ᎤᎩᎵ ᏗᎦᏛᏗ ᏕᎦᏁᎲᎩ. “ᎭᏩ, ᏩᎭᏯ!” ᎤᏛᏁ ᏥᏍᏚ. ᎯᎠ ᎾᏍᎩ Ꮎ ᎠᏂᎨᏴ ᎦᏓᎭ ᎢᎬᏩᏅᏁᎸᎯ ᏂᎨᏒᎾ; ᎤᎾᏓᏅᎦᎸᏛᏰᏃ ᎨᏒᎩ ᎾᏍᎩ. ᎯᎠ ᎾᏍᎩ Ꮎ ᎤᏃᏕᎾ ᎠᎩᎾ ᏥᎬᏩᏍᏓᏩᏗᏙᎭ ᏂᎦᎥ ᎡᏙᎲᎢ. ᎯᎠ ᎾᏍᎩ ᏴᏫ ᎠᏁᎲ ᎨᎪᏣᎴᏛ ᎨᎦᎫᏴᏛ, ᎢᎬᏱ ᎬᏩᎾᏓᏓᏁᎸᎯ ᎢᏳᎾᎵᏍᏔᏅᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ. “ᎢᎾᎵᏍᏓᏴᎯ.” ᏕᏣᎵᏃᎮᏍᎨᏍᏗ ᏕᏨᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᏗᎧᏃᎩᏍᏙᏗ, ᎠᎴ ᎦᎸᏉᏙᏗ ᏗᎧᏃᎩᏍᏗ, ᎠᎴ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᏗᎧᏃᎩᏍᏗ, ᏕᏥᏃᎩᏍᎨᏍᏗ ᏙᏗᏣᏓᏅᏛ ᏗᏓᎴᎲᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏕᏥᏃᎩᏍᏗᏍᎨᏍᏗ. ᏂᏥᎥ ᎶᎻ, ᎤᏁᎳᏅᎯ ᎢᏥᎨᏳᎯ, ᎡᏥᏯᏅᏛ ᎢᏣᏓᏅᏘ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏍᏛ ᎨᏤᎳᏗᏙᎮᏍᏗ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎢᏳᏃ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎴᏍᏗ, ᎠᎴ ᎯᏚᎨᏍᏕ, ᎠᏴᏉ ᎠᏆᎫᏴᏗ ᏅᏁᎸᎭ; ᎠᏎᏃ ᎥᏝ ᏯᎩᏲᎭ ᎠᏋᏒ ᎥᎩᎸᏉᏗᏱ; ᎡᎭ ᎤᏲᎯ ᎠᎴ ᏗᎫᎪᏗᏍᎩ. ᎢᏨᎨᏳᎢ, ᎿᏉ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎠᏴ, ᎠᏎᏃ ᎥᏝ ᎠᏏ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏗᎭ ᎢᎦᎵᏍᏙᏗ ᎨᏒᎢ; ᎠᏎᏃ ᎢᏗᎦᏔᎭ ᎾᎯᏳ ᎦᎾᏄᎪᏨᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏂᎦᏍᏕᏍᏗ, ᎾᏍᎩᏰᏃ ᏄᏍᏛ ᎾᏍᎩ ᏓᏰᏗᎪᎢ. ᎦᏲᏟ ᎤᏓᏅᏓ ᎤᏃᎴ ᎨᏴ ᏓᏳᏓᎴᏅ, ᎠᎭᏰᎲ ᎠᏒᎬ ᎾᏍᎩᏯ ᎩᏟ ᎦᏓᏁᎯ ᎤᎵᏏᎩ ᏧᏓᏴᎳᏛ ᎢᏣ ᎤᏪᏅᏒ ᏣᎵ. ᏧᏂᏍᏗ ᎤᏂᏃᏕᎾ ᏧᏂᏥ ᎤᎾᏙᎴᏇᎴ. ᏍᎩᎾ ᎤᏐᏯᏊ ᏗᎧᎾᏗ ᏥᎨᏎ ᏂᎦᏓ ᎠᏃᎳᎩ ᎭᎾ. ᎠᎴ ᎾᏍᏉ ᏱᏨᏯᏛᏛᏅ ᎥᏝ ᏴᎨᏍᎩᏁᏥ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏍᎩᏲᎯ. ᏙᏓᎦᎴᏂ, ᎡᏙᏓ ᏮᏓᏥᏤᎢ, ᎯᎠ ᏫᏅᏓᏥᏪᏎᎵ; ᎡᏙᏓ, ᎦᎸᎳᏗ ᏥᏍᎦᏅᏤᎸ, ᎠᎴ ᏂᎯ ᎯᎦᏔᎲᎢ. ᏐᏉ ᎤᎵᏏᏂᏕᎾ, ᎤᎾᏕᏘᏱᏍᎬ ᎤᏓᎷᎸ, ᎤᏭᏔᏁᎢ. “ᏧᏍᏆᏴᏍᏗ?” ᏂᎯ ᎰᎯᏳᎲᏍᎦ ᎠᏏᏴᏫ ᎡᎲ ᎤᏁᎳᏅᎯ. ᎣᏏᏳ ᎿᏛᏁᎭ. ᎠᏂᏍᎩᎾ ᎾᏍᏉ ᎠᏃᎯᏳᎲᏍᎦ, ᎠᎴ ᏚᏂᎾᏫᎭ. ᎯᏍᎩ ᎢᏳᎾᏙᏓᏆᏍᏗ ᎢᏳᏕᏘᏴᏓ ᏄᎵᏍᏔᎾ, ᏃᏗ ᏰᎵᏉ ᎦᎾᏗᏅᏗ ᎢᎬᏓ ᎤᏛᏁ ᎡᎶᏗ. ᎾᏍᏉᏍᎩᏂ ᎢᎬᏱ ᏃᎩᎩᎵᏲᏦᎢ ᎠᎴ ᏂᎪᎩᏐᏢᏃᎢ ᏈᎵᎩᏱ, ᎾᏍᎩ ᏥᏥᎦᏔᎭ, ᏃᏥᏍᎦᎢᎲᎾ ᎣᎦᏁᎳᏅᎯ ᎣᏣᎵᏍᎦᏍᏙᏛ ᎢᏨᏃᎮᎮᎸᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᏔᎵ ᎤᏛᏛᎩ ᎤᏣᏘ ᎠᏟᏂᎬᏁᏗ ᎨᏒᎢ. ᎯᎠᏰᏃ ᎢᎦᏪᏛ ᎢᎩ, ᎪᎯ ᎢᎦ ᎢᏳᏃ ᎢᏔᏚᎵᏍᎨᏍᏗ ᎧᏁᎬ ᎢᏣᏛᎪᏗᏱ, ᏞᏍᏗ ᏱᏗᏥᏍᏓᏲᏗᏍᎨᏍᏗ ᏗᏥᎾᏫ, ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸ ᎾᎯᏳ ᏥᎬᎩᎾᎸᏍᏔᏅᎩ. ᎢᏗᎦᏔᎭ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᎩᎶᏒᎢ ᎬᏂᏛᏃ ᏫᎩᎾᏄᏨᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᏗᎨᏳᎯᏳ ᎨᏒ ᎢᏓᏓᏅᏟ. ᎩᎶ ᎤᎨᏳᎯᏳ ᏂᎨᏒᎾ ᏱᎩ ᏗᎾᏓᏅᏟ, ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᎭ. ᎤᏒᎮᎯ ᏃᎴ ᎯᎨᏠᎮ, ᏃᎴ Ꮟ ᏱᎦᏢᏁᎬᏁ ᎤᏒᎯ. “ᎤᏙᎯᏳᎯ ᎪᎨᏱ ᏏᏆ ᎠᏯ,” ᎤᏛᏁ ᎡᏚᏥ. ᎦᏙ ᎰᏩ ᎤᏍᏗ, ᎢᏓᎵᏅᏟ? ᎢᏳᏃ ᏕᏥᎳᏫᎩ, ᎢᏥᏏᏴᏫᎭ ᏗᎧᏃᎩᏛ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᏗᏕᏲᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᎠᏁᏢᏙᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ. ᏂᎦᏛ ᎠᏗᎾ ᏕᏥᎸᏫᏍᏓᏁᎲ ᏗᏣᏓᎵᏂᎪᎯᏍᏙᏗᏱ ᎤᎬᏩᎴᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᎶᏗᏏ ᎠᏍᎦᎨ ᏣᏂ ᎠᎴ ᏳᎴᎢ; ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᎢᎬᏩᏛᏁᏗ ᏱᎨᏎᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏨᎦ ᏄᏓᎴᏒ ᎤᏲ ᎨᏒᎢ ᎠᎴ ᏄᏓᎴᏒ ᎦᎶᏄᎮᏛ ᎠᎴ ᎤᏠᎾᏍᏗ ᎨᏒ ᎠᏛᏳᎨᏗ ᎠᎴ ᏄᏓᎴᏒ ᎤᏲ ᏗᏓᏃᎮᏗ ᎨᏒᎢ, ᎠᏂᏐᎢ ᏗᏂᏲᏟ ᏚᏂᏂᎬᎬ ᏧᎾᏬᎥ. ᎠᎴ ᎠᎨᏴ ᎥᏥᎪᎥᎩ ᎤᎾᏓᏅᏘ ᎤᏂᎩᎬ, ᎠᎴ ᏥᏌ ᎬᏩᏃᎮᏍᎩ ᎤᏂᎩᎬ ᎤᏴᎪᎯᏍᏗ ᎨᏒ ᎬᏗ ᎠᎩᏍᏆᏂᎪᏒᎩ. ᏈᏓᏃ ᎤᏅᏓᏛ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏂᏳᏉ, ᎡᎦᏔ--ᎢᏳᏍᏗ ᏡᎬ ᏥᏍᎦᏨᎩ ᎤᏩᏴᏐᏅ. ᏰᎵ ᏂᏥᎠ ᎯᏣᏅᏔ ᎨᏨᎨᏫᏍᏗ ᏱᎨᏒᎾ ᎡᏘ ᎪᎨ ᏣᏓᏴᎳᏔᏍᎬ ᏕᎪᏪᎸ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏓ ᎰᎻ ᎤᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎢᏣᏛᎦᏁ ᎤᎵᏍᎨᏓ ᎨᏒᎢ ᎤᏍᏆᏂᎩᏗ ᏏᏆ. ᎡᎳᏗ ᎠᏇᏅᏓ ᏩᎩᎷᏨ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᎤᏓᎷᎸᏉ ᏅᏙ ᏗᎧᎸᎬ, ᎢᎾᎨ ᎠᏁᎯ ᎩᏟ ᏅᏃ ᎠᏁᏙᎯ ᎣᎦᎵᎪᎲ, ᏎᎷ ᎤᏥᏣᏘ ᏅᏙ ᎾᎥ ᎦᎵ ᎨᏒ. ᎣᎩᏴᏩᏛᎲᏃ ᏥᏳ ᏈᏂᏏ ᎠᏂᏂᏒᎢ, ᎣᎦᏣᏅᎩ ᎣᎩᏴᏫᏛᎲᎩ. ᎫᎵᏍᏔᏅ ᏄᎵᏍᏔᎾ ᏔᎷᎩᏍᎩ ᎤᎸᏫᏒ ᎤᏓᏦᎲ ᎤᏛ ᎤᏥᏍᏔᏅ ᎤᏗᏔᎲ. ᎨᏍᏗ ᎬᏕᏘᏱᎩ ᎠᏙᎯ. ᎠᏎᏃ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏕᎫᎪᏗᏍᎬ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏕᎫᎪᏓᏁᎲ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ. ᎠᎴ ᎤᎧᎵᏨᎯ ᎤᏬᎯᏳᏎᎢ ᎾᏍᎩ ᏄᏍᏛ ᎤᏚᎢᏍᏔᏅ ᏰᎵᏉ ᎾᏍᏉ ᎢᎬᏩᏛᏁᏗ ᎨᏒᎢ. ᎨᏍᏗ ᎪᎱᏍᏗ ᏫᏥᎢᎦ ᏯᏓᏅᏖᏍᎨᎢ. ᏔᎳᏚᏃ ᎢᏯᏂᏛ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᏚᏅᏏᏙᎴ ᏔᎵᎭ ᏧᎵᎪᏅᏛ, ᎠᎴ ᏚᎵᏍᎪᎸᏓᏁᎴ ᏧᏂᏄᎪᏫᏍᏗᏱ ᏗᎦᏓᎭ ᏗᏓᏅᏙ; ᎢᎬᏪᏅᏛᏃ ᏥᏳᎯ ᎤᏣᏁ ᎠᏁᎮ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᏓᎵᎻᏄᏓ ᎠᏍᏛ ᏭᎷᏤᎢ. “ᎦᎸᎳᏗ ᏭᏔᎷᎪ ᏃᎴ ᏰᎵᏉ ᎦᏅᎪᏫᏍᎪ ᏧᏏᎳᏛᏙᏗ ᎤᏃᎴ ᎤᏲᏙᏗ. ᏧᏭᎪᏓᏁᏗᏱ ᎾᏂᎥᎢ, ᎠᎴ ᏧᎬᏍᎪᎸᏗᏱ ᎾᏂᎥ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᎦᎥ ᎤᏣᏘᏂ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ, ᎠᎴ ᏂᎦᎥ ᏂᏚᏳᎪᏛᎾ ᏄᏂᏪᏒ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᎾᏍᎩ ᎬᏩᏡᏗᏍᎬᎢ. ᏌᎳᏓ ᎠᎦᏘᏰᎢ ᎤᏣᏅᏓᏕᏗ, ᎤᏅᎪᏤ ᎧᏁᏌᎢ ᏃᎴ ᎤᎩᏠᏫᏎᎢ ᎠᏓ ᎨᏛᎢ ᎦᏌᎾᎳ ᎭᏫᏂᏣ. ᏞᏍᏗ ᏕᏣᏓᏠᎲ ᏱᏣᏓᏁᎴᏍᏗ ᏓᎶᏂᎨ ᎠᏕᎸ ᎠᎴ ᎤᏁᎬ ᎠᏕᎸ ᎠᎴ ᎥᏣᏱ, ᎤᏒᎯ ᎣᎦᎵᏍᏔᏴᏗ, ᏚᏯ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᏃᎴ ᏑᎷ ᎢᏣ ᎠᎦᏅᎪᎢ ᏫᎬᏣᏝᏅ. ᎠᎪᏄ ᏧᏂᏲᏏᏍᎩ ᎣᏍᏛ ᎨᏒ ᏚᎧᎵᎢᏍᏔᏅ, ᏧᏁᎿᎢᏃ ᎠᏒᎭ ᏙᎤᏁᏅᏍᏗᏱ ᏂᏚᏩᏁᎸᎩ. ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏧᏁᎿᎢ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᏗᎾᏓᏘᏂᏙᎯ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎾᏂᎥ ᏗᎨᏥᎾᏝᎢ, ᎠᎴ ᎾᏂᎥ ᏂᏗᎨᏥᎾᏝᎥᎾ, ᎤᎾᏗᏍᎦᎳᏅᎩ ᏚᏍᏓᎦᎸᎢ, ᎠᎴ ᏅᏲᎯ ᏕᎨᏒ ᏙᏓᎸᎢ; ᎤᎴᏅᎮᏃ ᏚᏪᏲᏁᎢ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎤᎩ ᎵᏲᎢᏍᏗᏱ; ᎠᎴ ᎬᏩᏲᎢᏎᏗ ᎨᏒ ᏗᏂᎳᏫᎩ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᎠᏥᎢᏍᏗᏱ ᎨᏒᎢ, ᏦᎢᏁᏃ ᎢᎦ ᏧᎴᎯᏐᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏂᎯ ᏅᏩᏓᎴ ᎯᏰᏲᎲᏍᎩ ᏥᎩ, ᏝᏍᎪ ᏨᏒ ᏯᏓᏕᏲᎲᏍᎦ? ᏂᎯ ᎭᎵᏥᏙᎲᏍᎬ ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ ᏣᏗᎭ, ᏥᎪ ᎢᎯᏃᏍᎩᎭ? ᎾᏍᎩᏃ Ꮎ ᎠᏓᏅᏙ ᎢᏥᏁᎯ ᏥᎩ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎯ ᏥᎩ ᎢᏤᎲᎢ, ᏥᎪ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎾᏛᏁᎲ ᏅᏗᎦᎵᏍᏙᏗᎭ? ᏥᎪᎨ ᎤᏬᎯᏳᎯ ᎠᏛᎩᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ? ᏚᎧᎾᏁ ᎠᏧᏣ, Ꭾ ᎤᏛᏁ. ᎠᎴ ᎦᏙᏃ ᏗᏄᏬ ᏙᏤᎵᎯᏍᎪᎢ? ᏗᏣᏓᏅᏛᎵ ᏧᏥᎸᎯ ᏠᎨᏏ ᏤᎯ ᏓᏛᏍᎬᎢ. ᎥᏝ ᏱᏚᏂᎸᏫᏍᏓᏁᎰᎢ, ᎠᎴ ᎥᏝ ᏯᏂᏍᏙᎰᎢ. ᎪᎯ ᎢᎪᎯᏓ ᏚᎦᏙᏍᏔᏁ ᎤᎾᏓᏓᏍᎩᏌᎲ, ᎤᏂᎾᏰᎯᏍᏗ ᎢᎪᎯᏓ. ᎠᎬᏱ ᎤᏩᎬᏘᏗᏒ ᎧᏂᎩᏛ ᎤᏚᎩ. ᎠᎴ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᏣᏘᏃᎯᎮᏍᏗ, ᎠᎴ ᏄᏂᎬᏫᏳᏌ-ᏕᎩᏱ, ᎠᎴ ᎤᏂᎬᏫᏳᎯᏱ, ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᏄᏍᏛ ᎠᎴ ᎢᏳᏍᏗ ᎨᏒ ᎢᏣᏓᏁᏤᏗᏱ, ᎠᎴ ᎢᏥᏪᏍᏗᏱ; ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎠᏩᎾᎦᎳᎯᏳ ᎨᏒ ᏓᏓᎾᏩᏍᏛ ᎠᎦᏛᏅᎩ, ᎠᏎᏃ ᎬᏃᏛ ᎢᏯᎬᏁᎸᎯ ᎬᏔᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ. ᎠᏴ ᎾᏍᏉ ᎾᏍᎩ ᎣᏥᏯᎥ ᏦᏥᏩᎾᎦᎳᎯᏳ, ᎠᏎᏃ ᎢᏧᎳᎭ ᏙᏨᏁᏍᏗ ᎾᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᏨᏴᏓᏁᎲ ᏂᎯ. Washington Irving ᎤᏬᏪᎳᏅ ᏥᎪᎵᏰᏍᎬ ᎧᏃᎮᏍᎩ ᏭᏕᎵᎬ ᎢᎪᏗ ᎤᏍᎪᎸ ᎠᏨᏍᏛ. ᎠᏧᏣ ᏱᎩ; ᎠᏫᎾ ᎠᎴ ᏱᎩ; ᏲᎵᎪ ᎠᎨᏳᏣ, ᎤᏬᏟᏗ ᎨᏐ Ꮓ, ᏣᎳᏣᏯᏍᏗ ᎣᏤᎸᏍᎪ ᏂᎪᎯᎸᏫᏳᏍᏗ. ᏦᎢ ᏧᏙᏓᏆᏓ ᏑᎾᎴ ᎢᏣ ᎤᏤᏥᏍᏗ ᎦᏁᎳᏓ ᎤᎴ ᎶᏩᎤᏂᎱᏁ ᎤᏛᎾ ᏧᏂᏍᏗ ᏚᏂᏒᎾᏔᏁ ᎪᏛ ᎦᏚᎢᏣ, ᏧᏂᏍᏗ ᏐᏉ ᎠᎵᏍᏔᎩᏛ. ᏣᏂᏃ ᎤᏄᏪ ᎨᎻᎵ ᎤᏍᏗᏰᏅᎯ, ᎦᏃᏥᏃ ᎤᏓᏠᏍᏕᎢ; ᎥᎴᏃ ᎠᎴ ᏩᏚᎵᏏ ᎢᎾᎨ ᎡᎯ ᎠᎵᏍᏓᏴᏗᏍᎨᎢ. ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ ᏭᎩᎶᏫᏎ ᏌᎳᏓ. ᎠᎴ ᏥᏍᎦᎢᎲᎢ ᎠᏇᏅᏒᎩ, ᏫᏓᎬᏍᎦᎳᏅᎩ ᎦᏙᎯ ᎠᏕᎸ ᏗᏣᏤᎵᎦ; ᎬᏂᏳᏉ ᎠᏂ ᎾᏍᎩ ᏗᏣᏤᎵᎦ. ᎠᏎᏛ ᎢᎾᎯᎨᏍᏗ ᎠᎵᏦᏩᏛ ᏳᏫᏣᎷᏣ ᏕᎭᏗᎩᏒ. ᎤᏍᎩᎾᏛ, ᎨᏍᏗᎦ ᎪᎰᏍᏗ ᏱᎨᏎ ᎤᏛᏅ. ᎤᏰᎸᎭ ᎨᏒ, ᎦᏳᎳ ᎣᏍᏓ ᎢᏳᏅᏁᎸ ᎠᏂᎨᏯ. ᏌᏊ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ. ᎠᎵᏰᎾ ᏩᏎᎯ ᎪᎯᏳᏙᏗ ᏕᏧᎬ ᏚᎪᏍᎬ ᎦᏙᎯ. ᏧᏅᎪᏣ ᎧᏁᏌᎢ ᏫᎵᎻ, ᏚᎾᏏᏛᏂᎴ ᏃᎴ ᎤᏁᎷᏁᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏍᏗ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ, ᎢᎪᎯᏳᏗᏱ ᏕᎤᏙᎥ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᏗᎦᏓᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎢᎩᏁᏤᎸᎢ. ᏥᏌᏃ ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎩᎶ ᎠᏉᎯᏳᎲᏍᎩ ᎥᏝ ᎠᏴ ᏯᏉᎯᏳᎲᏍᎦ, ᏅᏛᎩᏅᏏᏛᏍᎩᏂ ᎪᎯᏳᎲᏍᎪᎢ. ᏌᏌ ᎤᏁᎢᏍᏔᏁᎴ, ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗ ᎤᏅᏏᏴ ᎤᏬᏞ. ᏥᏍᎦᏍᏓᏁᏗ ᎦᏁᎸᏗᏍᎬ ᎡᎵᏍᎬ. ᏭᏲᎢᏴ ᎠᎦᏴᎵ ᏏᏆ ᏍᎩᎾᎾ Haden. ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᎤᎪᎵᏰᏍᎩ ᏧᏱᎵᏙᎰ ᎬᏂᏗᏳ ᏥᎨᏐᎢ, ᎠᏥᎪᎵᏰᎥᎯᏰᏃ ᎨᏎᏍᏗ ᎬᏂᏛ ᎠᎵᏍᏚᎶ ᎠᏥᏅᏁᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏧᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ ᎬᏩᎨᏳᎯ. ᎤᏕᎰᎯᏍᏗᏳᏰᏃ ᎧᏁᎢᏍᏙᏗᏱᏉ ᎾᏍᏉ ᎾᏍᎩ Ꮎ ᎾᎾᏛᏁᎲ ᎤᏕᎵᏒᎢ. ᎠᎴ ᎯᎠ ᏁᏪᏎᎢ, ᎠᏆ, ᎡᏙᏓ, ᏂᎯ, ᎨᏒ ᏰᎵᎦᏍᏉ ᎢᎨᏣᏛᏁᏗ ᏂᎦᎥᎢ; ᏍᎩᎲᏏᏉ ᎯᎠ ᎾᏍᎩ ᎤᎵᏍᏈᏗ; ᎥᏝᏍᎩᏂᏃᏅ ᎠᏴ ᎠᏆᏚᎵᏍᎬᎢ, ᏂᎯᏍᎩᏂ ᏣᏚᎵᏍᎬᎢ. ᎩᎶᏍᎩᏂ ᎤᎬᏫᏳᎯ ᏥᏚᎾᏚᏓᏙᎢ ᏌᏉᏉ ᎠᏓᏅᏙ ᎾᎾᎵᏍᏗᏍᎪᎢ. ᏚᏒᏁᎢ ᎠᏕᎳ.” ᎣᏁ ᎢᏴ ᎤᏕᎶᎰᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏙᎯᏳ ᏄᏍᏛ ᏌᎳᏓ. ᎢᏣᏠᎾᏍᏗ, ᏰᎵᏉ ᎢᏌᏯ ᏧᏙᎴᎰᏎ ᏥᏥᏛᎨᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎠᏎᏃ ᎾᎯᏳᏉ ᎢᎦ ᎶᏛ ᏐᏓᎻ ᎤᏄᎪᏨ, ᎦᎸᎳᏗ ᏧᎦᎿᏁ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ, ᏂᎦᏗᏳᏃ ᏚᏂᎰᏁᎢ. ᎦᏙᎳᏗ ᎨᏒ ᎦᎦᏪᏍᏗ ᏥᏳ, ᎠᏎᏃ ᎣᏍᏓ ᎠᎩᏰᎸᎲ ᎧᎸᎬ ᎢᏣ ᏬᏥᎦᏛ. ᎠᎴ ᏗᏣᏓᎨᏳᎯᏳ ᎨᏎᏍᏗ, ᎢᏣᏓᏙᎵᏍᏗ ᏗᏥᎾᏫᏱ, ᏕᏣᏓᏁᎮᏍᏗ ᏕᏣᏓᏍᎦᏅᏤᎲᎢ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏥᎨᏥᏁᎸ ᎢᏥᏍᎦᏅᏨ ᎦᎶᏁᏛ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ. ᎤᏂᎧᎵᏨᎯ ᎨᏒ ᏄᏓᎴᏒ ᏂᏚᏳᎪᏛᎾ ᎨᏒᎢ, ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎤᏲ ᎢᏯᏓᏛᏁᏗ ᎨᏒᎢ, ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏂᏲ ᎨᏒᎢ; ᎤᏂᎧᎵᏨᎯ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᏗᏓᎯᏍᏗ ᎨᏒᎢ, ᏗᏘᏲᏍᏗ ᎨᏒᎢ, ᎠᏠᏄᎮᏛ, ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎾᏙᏅᎢᎯ, ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᏛᏂᏣᏐᏂ; ᎠᎩᏁᏨᏍᎩᏂ ᎥᏝ ᏴᏓᎦᎶᏐᏂ. ᎠᏎᏃ ᎨᏍᏗ ᎠᏎ ᏍᎩᎾᎾ ᏱᏄᎵᏍᏔᏃ, ᎠᏎ ᎤᎵᏍᏚᎩᏛ ᏱᎩ ᎠᏍᎪᎵ, ᎭᎾᏉ ᏓᏥᏍᏆᏗ. ᏂᎯᏍᎩᏂ ᎯᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎾᏍᎩ ᎯᎠ ᏕᎭᏓᏅᎡᎮᏍᏗ, ᎠᎴ ᏕᎯᏍᏓᏩᏗᏎᏍᏗ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏅᏘᏳ ᎨᏒᎢ. ᎤᏩᏙᎵᎢᏍᏗ ᎤᎾᏓᏔᎶᏎ ᏴᏫ, ᎯᎸᎯᏳ ᏥᎨᏎ ᎤᏐᏱ ᎨᏎ. ᎦᎸᎶᎢ ᏃᏈᏏ ᎤᎾᏓᏴᎳᏛ ᏫᏚᎧᎾᎾ ᎪᏱᏁᎢ ᎤᎪᎮᎢ ᎤᏤᎵ ᎠᎨᏳᏣ ᎮᏂᎵ ᎤᎵᏲᏗ ᎤᎾᎵᎪᎮ ᎤᎾᎩᎴᎢ, ᎦᎸᎳᏗᎨ ᎠᎾᏓᏌᎳᏗᏍᎨᎢ, ᏃᎴ ᎤᏕᎶᎰᏎ ᎤᎵᎮᎵᏍᏗ ᏗᎧᏃᏗ ᎨᏒᎢ, ᎤᎵᏍᏛᏂᎴᎢ. ᎠᏎᏃ ᎢᏳᏃ ᏰᎵ ᎾᏍᎩ ᏂᏓᏅᏂᎥᎾ ᏱᎩ, ᏓᎾᏤᎨᏍᏗᏉ; ᎤᏟᏰᏃ ᎣᏏᏳ ᏗᏨᏍᏗᏱ ᎠᏃ ᎦᎴᏴᎯᏍᏗᏱ. ᎧᏃᎮᏛᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎬᏃᏛ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎠᎴ ᎤᏟᎯᏳ ᏂᎪᏍᏓᏴ ᎡᏍᎦᏉ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎢᏧᎳᏗᏢ ᏗᎬᎦᏘ ᏗᎪᏍᏓᏴ, ᏕᎦᏘᎭ ᏔᎵ ᏂᎦᏗᎭ ᎠᏓᏖᏗᏱ ᎠᎴ ᎠᏓᏅᏙ, ᎠᎴ ᏚᏫᏢᎢ ᎠᎴ ᏚᏍᏛᏪᏙᎬᎢ, ᎠᎴ ᏗᎬᏭᎪᏙᏗ ᎢᎩ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎠᎴ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎤᎾᏫ. ᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏂᏣᏖ ᏧᏃᏑᎶᏨᎯ ᎢᏏᎵᏱ ᎾᎯᏳ ᎢᎳᏯ ᏤᎮᎢ, ᎦᎸᎶᎢ ᏧᎵᏍᏚᎯ ᏦᎢ ᏧᏕᏘᏴᏛ ᏑᏓᎵᏃ ᎢᏯᏅᏙ, ᎾᎯᏳ ᎤᏣᏘ ᏥᏚᎪᏄᎶᎭ ᏂᎬᎾᏛᎢ. ᏚᏍᏚᏁᎸ ᏗᏂᎦᏙᎵ, ᎠᎴ ᏚᏍᏓᏱᏕᎸ ᏧᏂᎾᏫ; ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ ᏗᏂᎦᏙᎵ, ᎠᎴ ᎬᏩᏃᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎤᏂᎾᏫ, ᎠᎴ ᎾᏍᎩ ᏗᎬᏩᎾᏓᏁᏟᏴᎡᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏗᎦᎦᏥᏅᏬᏗ ᏂᎨᏒᎾ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᏉᏍᎪ ᏂᎯ ᎾᏍᎩ ᎢᎦᎢ ᏂᏦᎵᎬᎾ ᎢᎩ? ᏝᏍᎪ ᏱᏥᎪᏩᏘᎭ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏙᏱᏗᏢ ᎡᎯ ᎾᏍᎩ ᏳᏴᎯᎭ ᏴᏫ ᎦᏓᎭ ᎢᎬᏩᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᏩᎭᏯ ᏥᏚᎳᏑᏝᏅ: ᏏᏉᏯ ᎤᏃᎮᏢᏅ ᎢᎦᏃ ᏅᏓᎦᎵᏍᏔᏂᏒᎩ, ᏉᎳ ᏚᏔᏲᏎᎸᎩ ᏂᎦᏛ ᎤᎾᎵᏍᏓᏴᏗᏱ, ᎯᎠ ᏄᏪᏒᎩ; ᎪᎯ ᎿᏉ ᏂᎦᏚᏏᏁ ᎢᎦ ᏥᏥᎦᏘᏴ ᎠᎴ ᏂᏣᎵᏍᏓᏴᏍᎬᎾ ᎪᎱᏍᏗ ᏂᏥᎩ-ᏍᎬᎾ ᏥᎩ. ᏑᎾᎴ ᏅᏓ ᎤᎸᏌᏖ ᏗᎦᎴᏂ, ᎩᎦᎨ ᏧᏍᎪᎸ ᏂᏕᎦᎵᏍᏗᏍᎨ. ᎬᏩᏅᏁᎴᏃ ᎠᎬᎭᎸᏛ ᎠᏣᏗ ᎠᏒᎾᏘᎶᏛ, ᎠᎴ ᎠᎬᎭᎸᏛ ᏩᏚᎵᏏ. ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᎢᎸᎯᏳᎯ ᏱᏙᏓᏍᏉᏑᎴᎵ ᏗᏆᎳᏏᏕᏂ. ᏥᏌ ᎤᏁᏤᎸᎩ; ᎢᏳᏃ ᏂᎬᏲᏑᎴᎥᎾ ᏱᎩ ᎥᏝ ᏣᏤᎵᎦ ᏳᏓᏑᏯ ᎠᏆᏤᎵᎦ ᎨᏒᎢ. ᎨᏍᏗ ᏳᏦᎣᏌ ᏐᏈᎵ ᏍᎦᏰᎬᏍᏓ, ᏱᎦᎬᎭᏁᏍᏗ ᎪᎳ ᎦᎶᏐᏅ ᎤᏛᏅ. ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎥᏝ ᏴᎦᎦᏗᏔ ᏖᎸᎳᏗ ᎤᏁᏅᎯ ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎵᏰᎢᎶᎸᎭ. ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᏥᏅᏏᏓᏍᏗ ᎦᏅᎦ ᏗᏇᏅᏒ ᎤᏢᎦ ᎤᎸᏓᎸᎥᏍᎦ ᎤᏣᏔᏅᎯ ᎠᎩᎵᏲᎦ. ᎠᏎᏃ ᎿᏉ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ ᎤᏓᏅᏘᏳ ᎨᏒ ᎠᎴ ᏴᏫ ᏚᎨᏳᏒ ᎤᎦᏄᎪᏨ, ᎠᎨᏴ ᏗᏤᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏙ ᎤᏰᎯ ᎠᎴᏂᏙᎲ ᎢᎪᎯᏛ; ᎤᏰᎯᏍᎩᏂ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎿᏉ ᎤᏚᏓᎴᏛ, ᎾᏍᎩᏃ ᏗᎬᏩᏨᏍᏗᏉ ᎩᎶᏉ ᎤᏚᎵᏍᎬᎢ; ᎤᎬᏫᏳᎯ ᎪᎩᏳᎲᏍᎩ ᎤᏩᏒ. ᎿᏉᏃ ᎤᏍᏆᎸᎲ ᎤᎾᏓᏅᎦᎸᏗᏱ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎼᏏ ᎤᏬᏪᎳᏅᎯ, ᏥᎷᏏᎵᎻ ᎤᏂᏃᎴ ᏱᎰᏩ ᎤᏂᎧᏁᏗᏱ; ᏃᎴ ᎨᏍᏗ ᏐᏉ ᎪᏪᎵ ᏧᏍᏗ ᎦᏅᎥᏍᎩᏱᎩ. ᏏᏲ ᏧᏩ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ. ᎦᏙᎯᏰᏃ ᎤᏩᏒᏉ ᎦᎾᏄᎪᏫᏍᎪ ᎤᎦᏔᏔᏅᎯ; ᎢᎬᏱᏱ ᎨᏒ ᎤᎦᎶᎬ, ᎿᏉᏃ ᎤᏍᎫᏓᏛᎢ, ᎣᏂᏃ ᎤᎧᎵᏨᎯ ᎤᎦᏔᏛ ᎤᏍᎫᏓᏛᎢ. ᎿᏉᏃ ᏔᎵᏁ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ. ᎡᏙᏓ ᎠᎩᏅᏒᎢ ᎾᏍᎩᏯ ᎢᏨᏅᎵ. ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ ᏍᎩᎲᏏᏉ ᎯᎠ ᎤᎵᏍᏈᏗ; ᎠᏎᏃ ᎥᏞᏍᏗ ᎠᏴ ᎦᏓᏅᏖᏍᎬᎢ, ᏂᎯᏍᎩᏂ ᎭᏓᏅᏖᏍᎬ ᏫᏂᎦᎵᏍᏓ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏏᏞᎦ ᎢᎦ ᏚᎸᏌᏛ ᎢᏤᏙᎲᎢ; ᎢᏤᏙᎮᏍᏗ ᏂᎪᎯᎸ ᎢᎦ ᏕᏥᎸᏌᏓᏕᎲᎢ; ᎤᎵᏏᎩᎾᏏ ᏱᏧᏢᏓ; ᎩᎶᏰᏃ ᎤᎵᏏᎬ ᏤᏙᎰᎢ, ᎥᏝ ᏯᎦᏔᎰ ᏩᎦᏛᎢ. ᏚᏑᎬ ᏧᏍᎩᏃᎢ ᎠᏍᏛᎢ ᎤᎴᏅ, ᏍᏔᏯ ᎤᏴᏨ ᎨᏓᎵ ᏓᎦᎶᏍᎬ, ᎤᏓᏅᏘ ᎢᏳᏍᏗ, ᎨᏍᏗ ᏱᏓᏖᎸᎮᏍᎨ ᏧᏆᎶᎦ ᏧᏟᏴᎦᏕᏩᏓ ᏕᎦᏓᎥ ᎠᏦᎭᏴ ᎠᎬᏱᏣ. ᎢᏳᏰᏃ ᎢᎬᏒ ᎢᎦᏚᎸᏛ ᏱᏗᏍᎦᏅᎬ ᏚᏳᎳ ᎨᎩᎦᏁᎥᏒᎯ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎥᏝ ᏅᏩᏓᎴ ᏯᎵᏃᎯᏯ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ, ᏐᏉ ᎤᏓᏏᏂᏕᎾ ᏱᏕᏥᏏᎳᏛᎥᎦ.” ᎠᏆᏍᎦᏍᏓᏁᎭ, ᎠᏍᎦᏯ ᎾᏍᎩ ᎦᎸᎳᏗ ᎠᏓᏅᏖᎵᏙ ᎨᏍᏗ ᏥᏳᎪᏗ ᎠᏥᏃᎯᏎᎸ ᏱᎩ, ᎠᏆᏛᏅ. ᎠᏎᏃ ᎤᏚᎨ ᏲᎾ ᎦᏲᏟ ᏚᎾᎥ ᎦᏙ ᏚᏂᏴᎲ, ᏃᎴ ᎨᏍᏗ ᏳᏲᎰᏎᎸ ᎤᏬᎯᏳᎲ. VI. ᎪᎦ ᏚᏙᏓᏈᏒ ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎤᏇᏓᎸ ᎤᏤᏙᎭ, ᎠᏎᏃ ᎥᏝ ᎤᏇᏓᎵ ᏧᏟᏴᏙᏗ ᎨᏒ ᏱᏙᏣᏟᏴᏗᎭ; ᎾᏍᎩᏯ ᎩᎳᎢ ᎤᎾᏕᏃᏅᎯ ᏗᏂᏲᎵ ᎤᏅᏗ ᏧᎾᏚᎵᏍᎪᎢ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎦᎶᏄᎮᏛ ᏄᏓᏑᏴᏫ ᎧᏃᎮᏛ, ᎾᏍᎩ ᏗᏣᏛᎯᏍᏙᏗᏱ; ᏝᏰᏃ ᎠᏏ ᏯᏃᎵᎨ ᎦᏛᎬ ᎪᏪᎸᎢ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏧᎴᎯᏐᏗ ᎨᏒᎢ. ᎾᏍᎩ ᏗᎩᏁᏟᏴᎡᏗ ᏥᎩ ᏂᏗᎦᎸᏉᏛᎾ ᏗᏗᏰᎸᎢ, ᎾᏍᎩᏯ ᎢᏧᏩᏁᏗᏱ ᎤᏩᏒ ᎦᎸᏉᏗᏳ ᎠᏰᎸ ᏄᏍᏛᎢ, ᎾᏍᎩᏯ ᎤᎵᏂᎬᎬ ᎬᏗᏍᎬ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏩᏒ ᏗᎬᏩᏁᎶᏙᏗᏱ ᎢᏳᏩᏁᏗᏱ. ᏍᎩᏄᏍᏛ ᏓᏊᎪᏔᏅ, ᏥᏧᏣ ᏥᎨᏒ ᏗᎪᎵᎩ ᎨᏎ ᏧᎾᏛᏐᏅ ᎠᏂᏲᏍᎩ ᎤᏐᏱ ᏂᏚᏅᏅ ᏚᏂᏍᏘᏰᎬ ᏗᎾᏛᏍᎩ ᏥᎨᏎ ᏓᏳᏓᎴᏅᏓ, ᏍᎪᎯᏍᏆ ᏧᏕᏘᏴᏓ. ᏂᏚᏅᏅ ᏓᏂᏍᏚᏯᎩᏍᎬ ᎠᏰᎵ ᎢᏴ ᏗᏂᏍᎪᎵ ᏓᎫᎾ ᏧᏯᏍᎦ ᎬᏗ, ᏭᏩᎦᏛ ᏓᏂᏍᏕᏲᏍᎬ ᏗᏑᏫᏓ ᎠᏕᎳ ᏃᎴ ᎠᏕᎳ ᎤᏁᎦ ᎬᏗ ᎠᏃᏚᎢᏍᏗᏍᎬ, ᎦᏚᎢᏣ ᎤᏂᏍᏘᏰᎬ ᏲᎾ ᎪᎢ ᎬᏗ ᎠᏃᏚᎢᏍᏗᏍᎬ. “ᎠᏎᏃ ᎩᎶ ᏤᏲᏁ, ᏣᎨ?” ᎣᎭᏁ ᎢᎦ ᏒᎮᏱᏣ, ᎠᏂᏲᏍᎩ ᎠᏂᏧᏣ ᏐᏉ ᏎᏂᏏ ᏧᎬᏩᏟ ᎠᏂᏆᏃᏲᎯᎲ, ᎦᏙ ᏓᏂᏍᏔᏅᎾᏍᎬ ᎠᏰᎳᏍᏘ ᎬᏘ ᎤᏂᏆᏂᏲᏍᏘ. ᎨᎢᏗᏣ ᏫᎨᏴ ᏭᎧᏔᏁᎢ, ᏚᎧᏔᏍᏔᏁᎢ, ᏭᏅᎪᏤᎢ ᎠᎹ ᎦᏁᎲ. ᎢᏳᏍᎩᏂ ᎣᏍᏛ ᎧᏃᎮᏛ ᎣᎦᏤᎵ ᎾᏍᏉ ᎬᏍᎦᎵ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ Ꮎ ᎨᏥᏛᏙᏗ ᎨᏒ ᎨᎬᏍᎦᎳᏁᎸ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎤᏟ ᏫᎶᎯ, ᏎᏓᏂ, ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ; ᎠᏎ ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᎩᏉ ᎤᏩᏒᎯᏳ ᏕᎯᏯᏁᎶᏕᏍᏗ. ᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎤᏂᏣᏘ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎤᎾᏓᏅᏘ ᎤᎾᏚᎸᏛ ᎤᏥᎪᏩᏛᏗᏱ ᎯᎠ ᎾᏍᎩ ᏥᏥᎪᏩᏘᎭ, ᎠᏎᏃ ᎥᏝ ᎤᏂᎪᎲᎯ ᏱᎩ; ᎠᎴ ᎤᎾᏛ ᎪᏗᏱ ᎯᎠ ᎾᏍᎩ ᏥᏣᏛᎩᎭ, ᎠᏎᏃ ᎥᏝ ᎤᎾᏛᎦᏅᎯ ᏱᎩ. ᎠᏎᏃ ᎭᎵᎮᎵᎩ, ᎨᏍᏗ ᎠᏎ ᏱᏗᏣᏂᎬᎦ ᏗᏏᎳᏛᏗ. ᎠᎦᏓᎢᏅᏃ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ ᎤᏁᏎᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏔᏁᎢ ᎤᏩᏒ ᎤᏪᏥ ᎤᏰᎸᏁᎢ. ᏴᏫᏰᏃ ᎤᏪᏥ ᏚᏲᎵᎸ ᎠᎴ ᏚᏍᏕᎸᎯᎸ ᎤᎾᎴᎾᎸᎯ ᏥᎨᏒᎩ. ᏦᎢᏃ ᎢᏯᏅᏙ ᎤᎶᏐᏅ ᎣᎦᏂᎩᏒᎩ, ᎣᎦᏣᏅᎩ ᏥᏳᎯ ᎡᎵᎩᏱ ᎡᎯ, ᎾᎿ ᎠᎹᏰᎵ ᏏᎪᎳᏗᏱᏍᎩ ᎤᏂᏔᎳᏛᎯ, ᎾᏍᎩ ᎪᎵᏍᏙᏗ ᎧᏍᏓ ᎠᎴ ᏉᎳᏥ ᎪᏪᎸᎩ. ᎥᏝ ᎩᎶ ᏥᏯᏚᎸᎡᎸᎯ ᏱᎩ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎴ ᏗᏄᏬ. ᎠᏎᏃ ᎠᏓᏅᏙ ᎧᏁᎬ ᎬᏂᎨᏒᎢᏳ ᏂᎬᏁᎭ ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ ᎩᎶ ᏧᏂᏲᎯᏍᏗᏱ ᎪᎯᏳᏗ ᎨᏒᎢ, ᏓᎾᏛᏓᏍᏓᏁᎮᏍᏗ ᎤᎾᏠᎾᏍᏗ ᏗᏓᏅᏙ, ᎠᎴ ᏓᎾᏕᏲᎲᏍᎩ ᎠᏂᏍᎩᎾ, ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎠᏎ ᏓᏍᎩᏁᎢᏍᏓᏁᎵ ᎯᎠ ᎢᎦᏪᏍᏗ ᏥᎩ; ᏔᏓᏅᏫᏍᎩ, ᏨᏒ ᎭᏓᏅᏮᎦ; ᏂᎦᎥ ᏄᏍᏛ ᎣᎦᏛᎦᏅ ᏕᏣᎸᏫᏍᏓᏁᎸ ᎨᏆᏂ, ᎾᏍᎩ ᎾᏍᏉ ᎿᏛᎦ ᎠᏂ ᏣᏤᎵᎪᎯ. ᏓᏆᎴᎳ ᎠᏌᏅᏗ ᏓᏦᏴ ᏭᏒᏁ, ᎤᏍᏗ ᎦᎵᏦᏩᏛ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁ. ᎠᎴᏬ ᎢᏓᎵᏅᏟ, ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ, ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᏚᏁᎸ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎹᏏᏙᏂ ᎠᏁᎯ; ᎢᏳᏃ ᎠᏘᎹ ᏥᏅᏒᎭ ᏫᏣᎷᏤᏗᏱ, ᎠᎴ ᏗᎩᎦ, ᎭᏟᏂᎬᏁᎸᎭ ᎾᎪᏆᎵ ᏍᎩᎷᏤᏗᏱ; ᎾᎿᏰᏃ ᏓᏇᎪᏔᏅ ᎠᏆᎪᎳᏗᏴᏗᏱ. ᎤᏓᎾᏫᏛᎮ ᏩᎶᏏ ᏃᎴ ᎣᎵᎭ ᎠᎹ ᎤᏥᏍᏛ ᎠᎳᏂ ᏭᎸᏥᎴ. ᎢᎦᏛᏍᎩᏂ ᎣᏒ ᎦᏙᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎾᏍᎩᏃ ᎤᎦᏔᏔᏁᎢ, ᎢᎦᏛ ᎠᏍᎪᎯᏧᏈ ᎤᏁᏉᏤᎢ, ᎢᎦᏛᏃ ᏑᏓᎳᏍᎪᎯ ᎤᏁᏉᏤᎢ, ᎢᎦᏛᏃ ᏦᎠᏍᎪᎯ ᎤᏁᏉᏤᎢ. ᎬᏂᏳᏉᏃ ᎠᏍᎦᏯ ᏦᏩ ᏧᏙᎢᏛ, ᏗᎦᎳᏫᎩ, ᎤᏓᏅᏘ ᎠᏍᎦᏯ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ, ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᏓᏉᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗ ᎨᏎᏍᏗ, ᎠᎦᏴᎵᎨᎢ ᎠᏥᎸᏉᏙᏗᏱ ᎤᏪᏥ ᎢᏳᏩᏂᏌᏅᎯ ᎨᏒᎢ. ᎧᏂᎩᏓ ᎤᏦᎠᏎᏗ. ᎿᏉᏃ ᎬᏂᏳᏉ ᎠᏆᏓᏅᏛ ᎦᎸᎢᏛ ᏥᎷᏏᎵᎻ ᏫᏥᎦᏘ, ᏂᏥᎦᏔᎲᎾ ᏅᏗᏆᎵᏍᏓᏁᎵᏒ ᎾᎿᏂ, “Ꭳ, ᏣᏉᎩ? ᎤᏂᎦᎸ ᏄᏓᏪᏎᎴ ᏌᎳᏓ. ᎠᏎᏃ ᏰᎵᏉ ᏱᏂᎾᏛᎦ ᎭᏂᏉ ᎮᎮᏍᏗ ᎪᎳ ᎦᎶᏐᏅ ᎢᎪᎯᏓ. ᏃᎴ ᏧᏓᎴᏅᏓ ᎢᏳᏛᏁᏗ ᎤᏪᎵᏒ ᎨᏎ. ᎢᏳ ᎠᎴ ᎠᏰᎵ ᎪᏢᏒ ᏔᎵ ᏱᏄᏓᎠ, ᎤᏩᏒᏉ ᏯᏓᏡᏗᎭ, ᎥᏝ ᏰᎵ ᏱᏂᎬᏩᏍᏗᏉ ᎾᏍᎩ ᎠᏰᎵ ᎪᏢᏒᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎢᏳᏃ ᏗᏥᏃᎪ ᏗᎬᏗ ᎦᎪᎵᏍᏗ ᏂᏥᏬᏂᏍᎬᎾ ᏱᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎬᏙᎴᎰᎯᏍᏗ ᏱᎩ, ᏂᏥᏪᏒ ᎢᏥᏬᏂᏒᎢ? ᎦᏃᎴᏍᎬᏰᏃ ᎢᏥᏬᏁᏗᏍᎩ ᎨᏎᏍᏗ. “ᎭᏩ,” ᎤᏛᏁ ᏌᎳᏓ. ᎢᏣᎵᏃᎮᏍᎬ ᏂᎪᎯᎸ ᎤᏓᏅᏘ ᎨᏒ ᎤᎵᏠᏯᏍᏕᏍᏗ, ᎠᎹ ᎤᎶᏥᏛ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎢᏥᏪᏍᏗᏱ ᏕᏥᏁᏤᎲ ᎾᏂᎥ ᏴᏫ. ᎤᏣᏘᏰᏃ ᎤᎵᎮᎵᏍᏗ ᎣᎨᎭ ᎠᎴ ᎤᎦᎵᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏣᏓᎨᏳᏒ ᎢᏳᏍᏗ, ᏛᏗᎦᎵᏍᏙᏗᎭ ᎤᎾᏓᏅᏘ ᏧᏂᎾᏫ ᏕᎯᎦᎵᏍᏓᏕᎲᎢ, ᎥᎩᏅᏟ. ᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᏭᏴᎸ ᎾᏍᎦᎢᎲᎾ ᎦᏬᏂᏍᎬᎩ, ᏦᎢ ᎢᏯᏅᏙ ᎢᎦᎯᏛ ᏕᎦᏬᏁᏗᏍᎬᎩ ᎠᎴ ᏓᏍᏗᏰᏗᏍᎬᎩ ᎤᏃᎯᏳᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎤᎬᏩᎵ. ᎥᎥ… ᎨᏙᎩ ᎠᎾᏗᎰ: ‘ᎤᏥᏯ ᎠᎩᎸᏨ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ.’ ᎠᏗᏍ ᎦᎢᏒ ᎠᏰᏟ Ꮓ ᎢᏴ ᎠᏴ ᏗᏥᏁᎸ ᏃᎴ ᎤᎿ ᏗᎦᎴᏅ Ꮎ ᎠᎨᏳᏣ ᎠᏰᏟ ᎢᏴ ᎪᏢᏒ ᎭᎸ ᎢᎳᎯ ᎢᎸᎯᏳ ᏥᎨᏒ ᎤᎾᏁᎵᏛ ᎩᎶ. ᎿᏉ ᏛᎵᏍᏆᏗ, ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᎨᏒ ᏧᏲᎯᏎᎸᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ; ᎾᎯᏳ ᎠᏛᏔᏃᏅᎭ ᏂᎦᏗᏳ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎨᏒ ᎠᎴ ᏂᎦᏗᏳ ᏗᎨᎦᏁᎶᏗ ᎨᏒ, ᎠᎴ ᏚᎾᎵᏂᎬᎬᎢ. ᏥᏌᏃ ᏂᎦᎥ ᏧᏛᎾ ᏕᎦᏚᎲ ᎠᎴ ᏧᏍᏗ ᏕᎦᏚᎲ ᎤᏪᏙᎸᎩ, ᏓᏕᏲᎲᏍᎬᎩ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎵᏥᏙᎲᏍᎬᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎧᏃᎮᏍᎬᎩ, ᎠᎴ ᏕᎧᏅᏫᏍᎬ ᏂᎦᎥ ᏚᏂᏢᎬ ᎠᎴ ᏂᎦᎥ ᎥᏳᎩ ᏴᏫ ᎤᏂᏱᎵᏕᎲᎢ. ᎠᎴ ᎥᏝ ᎠᏎᎾᎿ ᎤᏴᏍᏗ ᏱᎨᏎᏍᏗ ᎪᎱᏍᏗ ᎦᏓᎭ, ᎠᎴ ᎤᏂᏆᏘᏍᏗ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎦᏰᎪᎩ; ᎤᏅᏒᏍᎩᏂ [ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ ᏚᎾᏙᎥ] ᏗᎪᏪᎵ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ ᎤᏃᏕᎾᎠᎩᎾ ᎤᏤᎵᎦ. ᎿᏉᏃ ᎤᎾᎴᏅᎲ ᎣᏍᏛ ᏄᏅᏁᎸ, ᏌᏉ ᎠᎦᏘᏃᎮᎴ ᎠᏍᎪᎯ ᎢᏳᏆᏗᏅᏛ ᎠᏕᎸ ᎤᏚᎩ. ᏳᏟᏂᎬᎬᎾ ᎤᎾᏏᏁᎢ ᏗᎩᏏ, ᎦᎶᎯᏍᏗ ᎢᏣ ᏭᎧᏖᎢ. ᎣᎾᏫᏱᏰᏃ ᏗᏓᎴᎲᏍᎪ ᎤᏐᏅ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᎯᏍᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏲ ᏁᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗᏱ ᎬᏒᎢ, ᎠᎴ ᎦᏃᏍᎩᏍᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎠᏥᎪᏗᏱ ᏓᎾᏓᏱᎵᏙᎲᎢ, ᎠᎴ ᎠᏐᏢᎢᏍᏙᏗᏱ ᎨᏒᎢ. ᎧᎪ ᎤᏍᏕᎸᎮ ᏌᎳᏓ ᏌᏌ ᎤᏪᏥ ᎤᎪᏏᏓ ᎬᏗ ᎤᎨᎯᏙᎸ ᎠᎴᏴᏍᎩ ᎠᏧᏣ?” ᎩᎶᏰᏃ ᎠᏆᏕᎰᏍᎨᏍᏗ ᎠᏴ, ᎠᎴ ᎠᏴ ᏥᏁᎬᎢ, ᎤᏓᏑᏴ ᎠᏂ ᏗᎾᏓᏲᏁᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎠᏁᎲᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᎤᏕᎰᎯᏍᏗ ᎨᏎᏍᏗ, ᎦᎷᏨᎭ ᎤᏄᏬᏍᏕᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏙᏓ ᎤᏤᎵᎦ, ᎠᏁᎮᏍᏗ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ. “Ꭵ,” ᎤᏛᏁ ᎦᏂᎦᏔ. ᎢᎦᎥᏃ ᎤᏂᏁᎢᏍᏔᏅ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏂᎦᎥ ᎪᏚᎢᏍᏛ ᎬᏔᏅᏅᏯ ᏧᏬᏚᎯ ᎠᎴ ᏗᎵᏍᎪᎸᏔᏅᎯ, ᎯᎠ ᏄᏪᏎᎢ; ᏃᏊᏛ ᏌᎶᎵ ᎤᎪᎮ ᏐᎢ ᎠᎳᏑᎶ. ᏚᎧᏔᏍᏔᏁᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏣᏛᎩᎭ ᎾᏍᎩ ᏂᎯ ᎢᏥᏯᎡᏍᏗ. ᎢᏳᏃ ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏣᏛᎩᎭ ᎢᏥᏯᎡᏍᏗ, ᏂᎯ ᎾᏍᏉ ᎡᏥᏯᎡᏍᏗ ᎤᏪᏥ ᎠᎴ ᎠᎦᏴᎵᎨᎢ. ᏣᏓᏅᏘ ᎡᏙᏓ, ᎡᎶᎯ ᎥᏝ ᏣᎦᏔᎯ ᏱᎩ, ᎠᏴᏍᎩᏂ ᎬᏩᏔᎯᏳ, ᎠᎴ ᎯᎠ ᎠᏂᎦᏔᎯᏳ ᏍᎩᏅᏏᏛ ᎨᏒᎢ. ᎿᏉᏃ ᏈᏓ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᎬᏫᏳᎯ ᏴᏫ ᏧᎾᏤᎵᎦ ᎠᎴ ᎢᏏᎵ ᏗᏥᎳᏫᏤᎯ, ᎯᎠᏃ ᏥᎩᎵᎵ ᏣᎧᏔᎮᎢ ᏍᎩᎾ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎤᏕᎵᏍᏛᎢ ᏍᎩᎾ ᎤᏓᎾᏛᎢ ᎨᏍᏓᏗ ᎦᏁᏥ ᏯᏄᏍᏕᎢ. ᎾᏍᎩᏃ Ꮎ ᎤᎦᏔ ᎠᏫᏍᎩ ᎤᏁᎯ ᏥᎩ, ᎠᎴ ᎦᏚ ᎠᎵᏍᏓᏴᏙᏗ ᎠᏓᏁᎯ ᏥᎩ, ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᎠᎴ ᎤᎪᏓᏗᏍᏗ ᎨᏎᏍᏗ ᎢᏥᏫᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏁᏉᏍᏗ ᎨᏎᏍᏗ ᎢᏣᏓᏅᏘᏳ ᎨᏒ ᎤᎦᏔᏔᏅᎯ; ᎦᏌᎾᎵ ᏓᏳᏓᎴᏅ ᎦᏩᏙᎣᏍᎨ ᎤᎦᎾᏅ, ᏗᎦᎾᏌᎢ ᎤᏁᏓᏍᏗ ᏕᎨᏰᎢ ᏥᏥ ᏃᎴ ᎩᎦᎨ ᎤᎾᏍᏕᏥ ᏧᏰᎬ ᎢᏳᏓᏅᎯᏓ. ᏣᏉᎩ? ᎪᎯᏍᎩᏂ ᏥᎩ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ, ᏂᎯ, ᎢᏅᎯᏳ ᏥᏂᏣᏛᎿᏕᎬᎩ, ᎾᎥ ᏕᏣᏘᏃᎸ ᎬᏔᏅᎯ ᎤᎩᎬ ᎦᎶᏁᏛ. ”ᏲᎾ ᎤᏤᏍᏙ ᎤᏙᏓ ᏍᏉ?” ᎨᏴ ᎠᏂᏍᏔᏩᏕᎦ ᎠᏂᏲᏍᎩ ᏓᏂᎭᏲᎲ ᎤᎾᎵᏗᎩᏛ. ᏃᏗ ᏳᏫᏚᏲᏌ, ᎤᎦᏃᏩ ᎤᏃᎴ ᎤᏌᎳᏗᏍᎪᎢ ᎦᎸᎳᏗ.” “ᎭᏩ,” ᎤᏪᎵᏎ, “ᎠᏤ ᎣᎩᎾᎵ ᏥᏩᏔ. ᎥᏝ ᎾᏍᎩ Ꮎ ᎢᎦ-ᎦᏘ ᏱᎨᏎᎢ, ᎧᏃᎮᏍᎩᏉᏍᎩᏂ ᎨᏒᎩ ᎾᏍᎩ ᎢᎦ-ᎦᏘ. ᎬᏬᎵᏤᏃ ᎾᏍᎩ ᎨᏒ ᎤᏚᎳᏗᏍᏗᏱ ᏧᏰᎸᏎ ᏥᎦᎲᏍᎨ ᎤᏬᏚᎯ ᎦᎶᎯᏍᏗᏱ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎤᏣᏔᏅᎯᏃ ᎤᏂᏍᏆᏂᎪᏎ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᏍᎩ ᏄᎵᏍᏓᏁᎸᎢ. ᎦᏂᎦᏔ ᏦᎯᏳᎭᏧ ᎠᏂᏬᏂᏍᎬ ᏗᎨᏥᎾᏌᎢ?” ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎤᎵᏂᎩᏛ ᏕᏥᏂᏴᏎᏍᏗ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎢᏥᏍᎦᏯ ᎨᏎᏍᏗ, ᏗᏣᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ. ᎤᏥᏐᏅᏤ-Ꭾ ᏅᏗᏕᎵᏍᏙᏗᏍᎨ ᏧᏁᏲᎲᏍᎬ ᏴᏫ, ᎠᎴ ᏥᏌ ᎠᏅᏗᏍᎬ ᎠᎾᎵᏥᏙᎲᏍᎬ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ. ᎠᏎᏃ ᎡᎶᎯ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎠᎦᏴᎵᎨᎢ ᏥᎨᏳᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏴᎵᎨᎢ ᎠᎩᏁᏤᎸᎢ ᎾᏍᎩ ᏂᎦᏛᏁᎲᎢ. ᏗᏣᎴᎲᎦ, ᎢᏕᎾ. ᏓᎾᏏᏛᏂᎲ ᎤᏩᏌ ᎤᏛᎦᏁ ᎡᎳᏆᏗ. ᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏉᎵᏏ ᏚᏂᎳᏫᏛᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎪᏙ ᎢᏓᏛᏁᎭ? ᎯᎠᏰᏃ ᎠᏍᎦᏯ ᎤᏣᏔ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎭ. ᎦᏥᏲᎢᏳᏓᏁᎭᏰᏃ ᎾᏍᎩ ᏂᏚᎾᎵᏂᎬᎬ ᎢᏴᏛ, ᎥᎥ, ᎠᎴ ᎠᏂᎶᏒᏍᏗᏍᎬ ᏂᏚᎾᎢᏂᎬᎬᎢ, ᎤᎾᎵᎦᏟᏴᎯᏉ ᎤᏅᏒ ᎤᎾᏓᏅᏖᏛ; ᎠᏴᏰᏃ ᏂᏗᎥ ᎢᎬᏱᏗᏢ ᏫᎩᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎦᎶᏁᏛ ᏧᏭᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ; ᎾᏍᎩ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎡᎩᏁᏗᏱ ᏄᏍᏛ ᏕᎩᎸᏫᏍᏓᏁᎸ ᏗᏗᏰᎸ ᎬᏗ, ᎾᏍᎩᏯ ᏂᎦᏛᏁᎵᏙᎸᎢ, ᎣᏏᏳ ᏱᎾᎩ, ᎠᎴ ᎤᏲ ᏱᎾᎩ. ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᎤᏍᏗ? ᏥᏌ ᎯᎠ ᏄᏪᎡᎩ; ᎯᎠ, ᏞᏍᏗ ᏣᏓᎸᎩ; ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ; ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ; ᏓᎾᏓᏱᎵᏙᎲ ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ; ᎨᏆᏂᏃ ᎤᏂᎷᏨ ᎠᏰᎵ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎬᏩᎷᏤᎴ ᏈᏓ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏝᏍᎪ ᏗᏤᏲᎲᏍᎩ ᎠᏰᎵ ᏯᏓᏱᏍᎪᎢ? ᏕᎤᏬᏁᏔᏅᏃ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏚᏟᎶᏍᏓᏁᎸᎩ; ᎯᎠ ᏄᏪᏒᎩ; ᎬᏂᏳᏉ, ᎠᏫᏍᎩ ᎤᏫᏒᏎᎢ. ᎠᏎᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎥᏝ ᏱᏨᎦᏔᎭ. ᏥᎦᏔ, ᎠᏋᏌ ᎦᏕᎶᎣ, ᏫᎨᏓ ᎭᎾᏂ. ᏫᏑᏯᏅᎲᏃ ᎠᏂᏔᎵ ᎠᏍᎪᎯᏧᏈ ᏗᎾᏓᏘᏂᏙᎯ, ᎯᎠ ᏄᏪᏒᎩ; ᏗᏍᏓᏛᏅᎢᏍᏓ ᏔᎵᏧᏈ ᎠᏂᏯᏫᏍᎩ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏗᏓᏘᏍᏗ ᏗᏂᏂᏙᎯ ᏔᎵᏧᏈ, ᏏᏌᎵᏱ ᎠᏁᏒᎭ ᏐᎣᏁᎵᏁ ᎢᏳᏟᎶᏛ ᏒᏃᏱ; ᎿᏉ ᎩᎳ ᏥᎦᎳᏍᏚᎲᏍᎪᎢ, ᎾᏍᎩ ᎢᏥᎪᏩᏛ ᎢᏨᏒᏉ ᎨᏒ ᎢᏥᎦᏔᎰᎪᎩ ᎿᏉ ᎾᎥᏂᏳ ᎨᏒᎢ. ᎨᎵᏍᎬᏃ ᎠᏂᏴᏫᏯ ᏗᏍᏕᎵᏍᎩ, ᎠᏂᏴᏫ ᎨᎵ, ᎠᏓᏅᏖᏏᏙ ᎤᎬᏫᏳ, ᏍᎩᎾᎾ ᎢᏧᏍᏗ ᏧᎭᏃᏍᏗ ᎠᏇᎵᏒ ᏫᏥᏂ ᏓᎾᏦᏍᎬ. ᏍᎩᏄᏍᏛ ᏓᏆᎭᏄᏬᎥ ᎠᎬᏱ ᏧᏥᏩᏛᎯᏙᎲ ᏓᎭᏃᏫ ᏗᏄᎪᏗᏍᏗ ᏗᎪᏪᎵᏍᎩ ᏧᎷᏫᏍᏔᏁᏗ, ᎭᎾᎾ. ᎠᏓᎴᏂᏍᎬ ᎠᏴᏫ ᎤᏓᏅᏖᏗ, ᎭᎾᎾ ᏍᏉ ᎠᏲᎯᏍᏗᏍᎬ. ᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏁᏍᏗ ᎢᏨᏃᎲᏏ, ᎠᏍᏆᎸᎲ ᎢᏣᏅᏓᏗᏍᏗᏱ ᎾᏍᎩ ᎢᏨᏃᏁᎸᎢ. ᎠᎴ ᎥᏝ ᎾᏍᎩ ᎢᎬᏱᏱᏉ ᏱᏨᏃᏁᎴᎢ, ᎢᏧᎳᎭ ᎢᏕᏙᎲ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ. ᎾᏍᎩᏯ ᏎᎵ ᎢᎪᎯᏳᎲᏍᎨ ᎡᏆᎭᎻ, ᏍᎩᎾᏝᎢ ᏥᎪᏎᎮᎢ, ᎾᏍᎩ ᏧᏪᏥ ᏥᏂᏣᎵᏍᏗᎭ, ᎢᏳᏃ ᎣᏍᏛ ᏱᏗᏥᎸᏫᏍᏓᏁᎭ, ᎠᎴ ᎪᎱᏍᏗ ᏂᏥᏍᎦᎢᎲᎾ ᏱᎩ. ᏄᏓᎴᏒᏍᎩᏂ ᎪᎱᏍᏗ ᎤᎵᏍᏆᏗᏗ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎵᏏᎾᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏥᏯᏫᏍᎬ ᎢᏣᏓᏙᏓᏍᏗᏍᎨᏍᏗ. ᏍᎩᏃ ᎢᏳᏍᏗ ᎤᏲᎰᏎ ᎦᎸᏓᏱ ᏍᎪᎯᏍᏆ ᏧᏕᏘᏴᏓ ᎠᏕᎭᏲᎲ. ᎦᎸᎳᏗᏍᎩᏂ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎢᎬᏱᏱ ᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏐᎢ, ᎿᏉᏃ ᎪᎯᏍᏗᏍᎩ, ᎠᎴ ᎤᏓᏅᏘ, ᎠᎴ ᎤᏬᎯᏳᎯᏍᏛ, ᎠᎴ ᎠᎧᎵᏬᎯ ᎠᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎠᎴ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎸᏉᏛᎾ, ᎠᎴ ᎤᏠᎾᏍᏗ ᏂᎨᏒᎾ. ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎿᏉᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ. ᎠᏎᏃ ᎢᏓᎵᏅᏟ, ᎤᏟ ᎢᎦᎢ ᏂᏥᎾᏰᏍᎬᎾ ᏫᏨᏲᏪᎳᏏ ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎠᎩᏁᎸ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎠᎾᏓᏤᎵ ᎢᎦᏪᏍᏗ ᎦᏣᏄᎸ ᎠᎵᏍᎩᏓ. ᎦᎶᏁᏛᏍᎩᏂ ᎠᎦᏅᎩ ᎾᏍᎩᏯ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏒᎩ ᎤᏩᏒ ᏚᏓᏘᎾᎥᎢ; ᎾᏍᎩ Ꮎ ᏚᏓᏘᎾᎥ ᎢᏖᎳ ᏥᎩ, ᎢᏳᏃ ᎤᎵᏂᎩᏛ ᏱᏗᎩᏂᏴᎭ ᎬᎵᏍᏆᏗᏍᎩ ᎾᏍᎩ Ꮎ ᎢᎦᎵᏍᎦᏍᏙᏛ ᎠᎴ ᎢᏓᏢᏈᏍᏙᏗᏍᎬ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ. ᎯᎠᏃ ᎢᏣᏅᏖᏍᏗ, ᎢᏳᏃ ᎠᏍᎦᏯ ᎦᏁᎳ ᏱᎠᎦᏔᎮ ᎢᏳᏉ ᎦᏃᏍᎩᏍᎩ ᎤᎷᎯᏍᏗᏱ, ᏳᏯᏫᏎᎢ, ᎠᎴ ᎥᏝ ᎤᏁᎳᎩ ᏩᎩᏴᏏ ᎦᎵᏦᏕ ᏱᎬᏪᎵᏎᎢ. ᎠᎬᏱ ᎠᎵᏍᏔᏴᎲᏍᎨᎢ ᏥᏍᏕᏥ. ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ. ᎡᎺᏅ. ”ᎡᎭ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ. ᏃᏗ, ᎤᏩᎨᏫᏎ ᏫᎵᎻ ᏑᎾᎴ ᎤᎵᏍᏓᏴᏗ, ᏗᏓᏁᎸ ᎢᏣ ᎤᏪᏅᏎ, ᎰᎻ ᏭᏯᏅᎮ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏣᏘ ᎢᎶᏟᏂᎬᏁᎲ ᎢᏦᎯᏳᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ; ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎠᎪᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎠᏥᏁᏤᎴᏃ ᎯᎠ ᏅᏗᎠᏥᏪᏎᎴᎢ; ᏈᏓ, ᏔᎴᎲᎦ, ᎯᎷᎦ ᎠᎴ ᎭᎵᏍᏓᏴᎲᎦ, ᎠᎪᏎᎴᎢ. ᎥᏝᏰᏃ ᏅᏩᏓᎴ ᎪᎱᏍᏗ ᏱᏨᏲᏪᎳᏁᎭ, ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᏥᏥᎦᏔᎭ ᎠᎴ ᎾᏍᏉ ᏥᏕᏣᏓᏂᎸᏨ; ᎠᎴ ᎤᏚᎩ ᎠᏋᎭ ᎬᎵᏍᏆᏗᏍᎩ ᏗᏣᏓᏂᎸᎢᏍᏗᏱ ᎨᏒᎢ; ᏒᎦᎾᏲᎪ, ᎠᎪᎾ ᎠᎩᏲᏏᏍᎬ ᏯᎩᎵᏬᏤ ᏍᎩᎾᎾ ᎢᎪᎯᏓ ᏯᎩᎦᏘᏓ. ᎤᎾᏙᏓᏆᏍᎬ ᏑᎾᎴ ᎪᏱᏁᎢ, ᎡᎶᏗ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᎠᎾᎵᏍᏓᏴᎲᏍᎨ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ. ᎠᏎᏃ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᎪᎲ ᎤᏪᏥ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; ᎾᏍᎩ ᎯᎠ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ; Ꭷ ᎡᏗᎷᎦ, ᎠᎴ ᎡᏗᏬᏅ ᎤᏤᎵ ᏳᎵᏍᏙᏗ ᏥᎩ. ᎠᏥᏍᏛᏗᏍᏔᏁ ᏳᏬᎯᏳᏅᎾ ᎨᏒ ᏥᏔᎦ ᏧᎪᎳ ᏧᏭᏔᎩᏍᏗ. ᏃᏉᏗ ᏚᏯᏪᎨ. ᎠᏎᏉ ᏱᎾᎩᏪᏌ, ᎠᎬᏱᏣ ᎢᏣ ᎨᏒ ᎣᎯᏍᏙᏗ ᎡᏍᎦᏉ ᎣᎭᏁ ᎢᏣ. ᏃᏗ ᏄᏟᏂᎬᎬ ᎤᏐᎸᏓᎩᏎ ᎠᎬᏱᏣ ᎦᏅᏌᏛ ᎬᏗ. ᏥᏌᏰᏃ ᎤᏩᏒ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐ ᎤᏩᏒ ᎤᏤᎵᎪᎯ. ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏥᏁᎫᏥ, ᎠᎴ ᎢᏣᏓᏅᏛ ᎢᏥᏍᎦᏃᎵᏳ ᎢᏦᎯᏳᏗᏱ ᏂᎦᎥ ᏄᏂᏪᏒ ᎠᎾᏙᎴᎰᏍᎩ! ᏃᎴ ᏍᎩᎾᎾ ᎢᏴ ᏓᎫᏩᏓᎴᏅᏓ ᎤᏐᏱ ᎾᎾᏛᏁᎰ ᎧᏅᏂᏍᎩ. ᎩᎶᏰᏃ ᎤᏚᎵᏍᎨᏍᏗ ᎤᏍᏕᎸᏗᏱ ᎬᏅᎢ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏍᎩᏂ ᎬᏅ ᎤᏲᎱᏎᎮᏍᏗ ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎤᏓᏅᏘ ᎨᏒᎢ, ᎠᎵᏏᎾᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗᏓᏂ ᏗᎦᏘᎴᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎥᏝ ᏯᎭ. ᏑᎾᎴ ᏱᏄᎵᏍᏔᎾ ᏄᏓᎴ ᎠᏕᎲᏍᎨ ᎤᏃᏕᎾ ᎠᏓᎯ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎦᏙ ᏓᏓᏛᏂ? ᎾᏍᎩ Ꮎ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᏄᏂᏍᏓᏩᏛᏒᎾ ᎨᏒ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᎤᏂᏩᏛᎲ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎠᏚᏓᎴᏍᏙᏗ ᏥᎩ. ᎤᎬᏫᏳᎯᏃ ᎤᏲᎢᏳ ᎤᏰᎸᏁᎢ, ᎠᏎᏃ ᎤᏎᎵᏔᏅᎢ, ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ ᏅᏧᎵᏍᏙᏔᏁᎢ, ᎤᏁᏤ ᎠᏥᏁᏗᏱ. ”ᏂᎯᏗ ᏍᏉ!” ᎤᏛᏁ ᎡᎳᏆᏗ, ᎤᎾᎵᎪ ᏩᎶᏏ ᎠᎵᏖᎸᏂᎮᎢ. ᎠᏎᏃ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎡᎩᏁᎸ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᎠᏟᎶᎥ ᎦᎶᏁᏛ ᎤᏓᏁᏗ ᎨᏒᎢ. ᎾᎿ ᎠᏴ ᏗᎩᎸᏫᏍᏓᏁᎯ ᏅᏋᏁᎸ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏤᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏴ ᏨᎩᏁᎸ ᏂᎯ ᎢᏣᎵᏍᏕᎸᏙᏗ, ᎾᏍᎩ ᎠᎧᎵᎢ ᎠᏆᎵᏥᏙᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᎾᏒᎦ! ᎠᏑᏫᏓ ᏔᏯ ᎠᏓ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎨᏒ ᏣᎵ ᎤᏁᎦᎸ, ᎤᎧᏛ ᏃᎴ ᎠᏴᏤᏂ ᎤᏓᏁᎪᏴᏓ, ᏰᎵᏉ ᎠᎫᏬᏰᏂ ᎦᎵ ᏣᎫᏲᎰᏎᏗ ᏓᎬᎾ ᎤᏓᏁᎪᏳᎲ. ᎠᎴ ᏫᎬᏩᎷᏤᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏚᎾᏬᎡ ᏦᏓᏂ ᎤᏪᏴᎢ, ᎤᏂᏍᎦᏅᏨ ᎠᏂᏃᎲᏍᎨᎢ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎦᏳᎳ ᎢᏨᏃᏁᎸ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ. ᎢᏳᏃ ᎠᏴ ᏍᎩᏲᎮᏍᏗ, ᎯᎠ ᎤᎾᏁᎳᎩ ᏩᎾᏓᏅᎾ; ᎠᏣ ᎤᏃᎴ ᎠᏲᏙᏗ ᎤᏗᎴᎩ ᎠᏛᎴᏛ ᎠᎧᎵᏔᏅ. ᎭᎴᏉ ᏄᎴᏫᏍᏔᏁ ᎤᏓᏅ ᏙᎩ ᏫᎵᎻ ᎤᏕᎶᎰᏌ ᏂᎦᎵᏍᏗᏍᎬ. ᎤᏬᏪᎳᏅᎩᏃ ᎯᎠ ᏫᏄᏪᏎᎸᎩ; ᎤᏣᏘᏃ ᎡᎯᏍᏗ ᎤᏓᏅᏖ ᎤᏟ ᎢᏳᎵᏂᎩᏛ ᎤᏓᏙᎵᏍᏔᏁᎢ; ᎠᎴ ᎠᎵ ᎤᎯᎲ ᎾᏍᎩᏯ ᎨᏎ ᎩᎬ ᎡᏉᎯᏳ ᎦᏙᎯ ᏥᏫᏗᎦᏬᎪᎢ. ᎡᎵᏍᎨᎢᏃ ᏄᏩᏁᎰᏁᏍᏗ ᏃᎴ ᎦᏳᎳ ᎤᏪᏅᏒ ᎨᏎᏍᏗ ᏯᏂᎷᎬᎾᏉ ᎠᏂᏲᏍᎩ. ᎠᎴ [ᏥᏌ] ᎯᎠ ᏄᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏣᏘ ᏚᏕᎳᏍᏔᏁᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏫᏚᏯᏅᎮᎢ; ᎠᏎᏃ ᎤᏙᎴᎰᏎ ᎠᏂᏏᎾᏌᏅᎬᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏍᎩᏌᏛᎥᏍᎦ? ᎥᏝ ᏱᏗᏣᏍᏗᎬᏎᎸ ᎠᏴ ᏦᎩᎾᏫ; ᎢᏨᏒᏍᎩᏂ ᏗᏥᎾᏫ ᏚᏍᏗᎬᏒ. ᎾᏃ ᎠᏂᏍᎦᏅᎩ ᏕᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᎠᏂᏐᎢ ᎾᏍᏉ ᎤᏂᎾᏰᏍᏗᏱ. ᎾᎯᏳ ᏓᏣᏙᎴᎰᏏ ᎠᏴ ᎡᏙᏓ ᏥᏯᎥᎢ, ᎠᎴ ᏂᎯ ᏍᎩᏯᎥᎢ, ᎠᎴ ᎠᏴ ᎢᏨᏯᎥᎢ. ᏂᎬᎾᏛ ᎡᎶᎯ ᏛᎾᏛᎦᏂ ᏂᏣᏛᏁᎸᎢ. ᏕᏥᏲᎵᎸᎭ ᏈᏏᎳ ᎠᎴ ᎡᏈᎳ, ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎴᎲᎦ ᎠᎴ ᎭᏘᏄᎦ ᎠᏲᎵ ᎠᎴ ᎤᏥ, ᎠᎴ ᎮᎾ ᎢᏏᎵᏱ, ᎿᏉᏰᏃ ᏚᏂᏲᎱᏒ ᎠᏲᎵ ᎬᏅ ᏧᏂᏲᎲᎩ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏣᏁᏢᏔᏅᏛ ᎠᏁᏙᎯ ᎨᏎᏍᏗ ᎾᎿ ᎤᎾᏤ-ᎵᎪᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎾᎿ ᎠᏁᎯ ᏙᏓᎬᏩᏂᎾᏢᏂ ᎠᎴ ᎤᏲ ᏅᏓᎬᏅᏁᎵ ᏅᎩᏧᏈ ᏧᏕᏘᏴᏛ. ᏗᎪᏍᏔᏱ ᏚᏂᏑᎦᏢ ᎫᏩᎾᎳᏍᏛᏅ ᎾᏍᎩᏯ ᏓᎭᏃᏫ ᏗᎦᎵᎥᏂᏍᏙᏗ ᎠᏥᎵᎥᎭᏂᎸ ᏄᏍᏕ. ᎿᏉᏃ ᏈᏓ ᎯᎠ ᏂᎤᏪᏎᎢ, ᎬᏂᏳᏉ Ꭰ-Ᏼ ᏂᎦᏗᏳ ᏙᎩᏲᏐᏅ, ᎠᎴ ᎢᏨᏍᏓᏩᏕᏅ. ᎠᎴ ᎩᎶ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎾᏱᏍᎬᎾ ᎠᎴ ᎾᎩᏍᏓᏩᏕᎬᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎠᎩᏍᏓᏩᏗᏙᎯ ᏱᏅᎦᎵᏍᏓ. ᎬᏂᏳᏉᏃ ᏂᎦᏗᏳ ᏍᎦᏚᎩ ᏧᏂᏄᎪᏤᎢ, ᏥᏌ ᏕᎬᏩᏠᏏᎴᎢ; ᎬᏩᎪᎲᏃ ᎬᏩᏔᏲᏎᎴ ᎤᏓᏅᏍᏗᏱᏉ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ. ᎨᏍᏗ ᏱᏥᎦᏔᎮ ᎢᏳᏍᏗ ᎠᏂᏃᎮᏍᎬ, ᎠᎴᏃ ᎠᎨᏯ ᏣᎦᏨᏍᏔᏅ ᎠᏗᏍᎩ ᎠᏎᏃ Ꮳ. ᏥᏌ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏱᎯᎦᏔᎮ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᏥᎩ, ᎠᎴ ᏱᎯᎦᏔᎮ ᎯᎠ ᎾᏍᎩ ᏥᏂᏣᏪᏎᎭ, ᎠᏆᏗᏔᏍᏗ ᏍᎩᏁᎲᏏ; ᏨᏒ ᏱᏔᏲᏎᎴᎢ, ᎠᎴ ᏱᏣᏁᏁᎴ ᎬᏂᏛ ᎠᎹ. ᎡᎳᏗᏃ ᎤᏅᏨ ᎤᏛᎦᏁ ᎩᎶ ᎧᏁᎬᎢ ᎯᎠ ᏄᏪᏎᎲᎢ; ᏐᎳ, ᏐᎳ, ᎦᏙᏃ ᎤᏲ ᏂᏍᏋᏁᎭ? ᏙᏱᏗᏢᏍᎩᏂ ᎠᏁᎯ ᎤᏁᎳᏅᎯ ᏕᎫᎪᏓᏁᎰᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᏄᎪᏩ ᎢᏤᎲ ᎾᏍᎩ Ꮎ ᎠᏍᎦᎾᎢ. ᏑᎾᎴ ᏚᎸᏌᏛ ᎦᎶᏍᎨᎢ ᎩᎦᎨ ᎤᏍᎪᎢ ᏗᎦᎴᏂ. ᎠᏴᏣᏗᏍᏗ ᎠᎩᏠᏫᏍᏗ ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎦᎸᎳᏗ. ᎠᎴ ᏥᏌ, ᎾᏍᎩ ᏣᏍᏓ ᏣᎪᏎᎰᎢ; ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏥᎩ. ᎾᏍᎩ ᎤᏅᏒ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎬᎩᎦᎵᏍᏓᏗᏍᎬᎩ. ᏚᏏᎳᏓ ᏫᎵᎻ ᎤᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ. “ᎤᏔᎷᎩᏍᎩ ᏍᎩᎾᎾᏂ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᏭᏩᏅᏓᏕ ᏣᏕᎲᏍᎨᎢ. ᏚᎧᎿᏅᏃ ᎠᎴ ᎤᏍᎦᎸ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᎢ, ᏣᎬᏫᏳᎯ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎭᏓᏙᎵᏍᏗᏍᎬ ᎠᎴ ᎭᏓᏁᎸᎥᏍᎬ ᏚᎵᏌᎳᏓᏅ ᎠᏅᏓᏗᏍᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎠᎴ ᏚᏅᏍᏓᏕᎸ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗᏱ. ᎠᏰᎳᏍᏗᏃ-ᎦᏅᎯᏛ ᏧᏂᏅᎢᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎨᏥᏴᎩᏅᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᏫᏗᎨᎦᏘᏅᏍᏛᏗ ᎨᏎᏍᏗ; ᏥᎷᏏᎵᎻᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᎳᏍᏓᎡᏗ ᎨᏎᏍᏗ, ᎬᏂ ᎠᏍᏆᏛᎭ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎨᎦᏓᏁᎳᏁᎸᎯ ᎨᏒᎢ. ᎠᎴ ᎾᏍᏉ ᎪᏪᎴ ᎤᎵᏍᏓᏛ ᎦᎸᎳᏗᏢ ᎠᏂᎪᎢ ᎤᏂᏬᏂᎯᏍᏗ, ᎠᎴ ᎠᏂᎶᎻ ᎤᏂᏬᏂᎯᏍᏗ, ᎠᎴ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎪᏪᎴ ᎯᎠ ᏂᎬᏁᎢ; ᎯᎠ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ. ᏂᎦᏛᏃ ᏥᏳᎯ ᎣᎦᏣᎢ ᏔᎵᏧᏈ ᎦᎵᏆᏍᎪᎯ ᏑᏓᎵᎦᎵ ᏃᏥᎥᎩ ᏴᏫ. “ᎠᏆᏓᏅᏙᎩ ᎢᏴ ᎠᏆᏒᏂᎦ!” ᎤᏁᎷᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎢᏥᏍᎦᏯ, ᎢᏏᎵ ᏧᏪᏥ, ᏍᎩᏍᏕᎸ! ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎾᏍᎩ ᏥᏕᎨᏲᎲᏍᎦ ᎾᏂᎥ ᏴᏫ ᏂᎬᎾᏛᎢ, ᏥᏓᏡᏗᎭ ᎯᎠ ᏴᏫ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᏂ ᎨᏒᎢ, ᎠᎴ ᎾᏍᏉ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏥᏚᏴᏔᏂᎸ ᎠᏂᎪᎢ, ᎠᎴ ᎦᏓᎭ ᏥᏄᏩᏁᎸ ᎠᏂ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎬᏂᏳᏉᏃ, ᎩᎶ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᏚᎴᏁᎢ, ᎠᎴ ᎤᎪᎵᏰᏍᎬ ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏯᏆᏛᏁᎸ ᎠᏆᏤᎵ ᏱᏂᎦᎵᏍᏓ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ? ᎩᎶᏍᎩᏂᏃᏅ ᎠᎩᎾᏝᎢ ᏂᎨᏒᎾ, ᎠᏎᏃ ᎾᏂᎥ ᎬᎩᎾᏝᎢ ᎾᏆᏓᏛᏁᎸ, ᎾᏍᎩ ᎤᏟ ᎢᏯᏂᎢ ᎬᎩᏁᏉᏤᏗᏱ. ᎠᏓᎴᏴᏗᏍᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎾᏍᏉ, ᎣᎦᏛᎦᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎥᏝ ᏲᏥᏲᎯᏍᏗᏍᎪ ᎣᏣᏓᏙᎵᏍᏗᏍᎬ ᎠᎴ ᎣᏥᏔᏲᎯᎲ ᎾᏍᎩ ᎠᏓᏅᏖᏍᎬ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎢᏥᎧᎵᎢᏍᏗᏱ, ᎾᏍᎩ ᏂᎦᎥ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᎪᎵᏥᏓᏍᏗ ᎨᏒᎢ; ᎢᎦ ᏒᎮᏱᏣ ᎡᎳᏗ ᎢᎦᏘ ᎦᏍᎩᎶᎩ ᎤᏬᏞ ᏲᎾ ᎤᏤᏍᏙ, ᎤᏓᏂᎵᎨᎢ ᎤᏃᏕᎾ ᎤᏴᎵᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏫᎵᎻ ᎠᏩᏛᎯᏙ. ᎾᎯᏳ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᎬᏯᎵᎡᎵᏤᎭ ᎡᏙᏓ, ᏣᎬᏫᏳᎯ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ, ᎾᏍᎩ ᎯᎠ ᏥᏕᎲᏍᎦᎳᏁᎸ ᎠᏂᏏᎾᏌᏂ ᎠᎴ ᎠᏁᏯᏔᎯ, ᏗᏂᏲᎵᏃ ᏥᏕᎯᎾᏄᎪᏫᏎᎸ. “ᎬᏲᎵᎭᏛ ᎤᏛᏁ ᎩᎶᎢ. ᏂᎦᏓ ᏏᏓᏁᎸ ᎠᏂᏌᏛᎥᏍᎩ ᎨᏎ. ᎣᏏᏉᎨ ᎾᎾᏛᏁᎮ? ᏐᎳᏍᎩᏂ ᎤᏣᏘ ᎤᏲ ᏂᏕᎬᏁᎮ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏈᎬᎢ, ᏓᏴᎵᏙᎮ ᏓᏓᏁᎳᏗᏒᎢ, ᏕᎦᎾᏌᏁᏏᏙᎮ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎠᏴᏗᏍᎨᎢ. ᎦᎸᎳᏗᏍᎩᏂ ᎡᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᎡ ᎠᏁᎯ ᏓᎨᏥᏄᎪᏫᏏ ᏫᏙᏓᎨᎦᏓᎡᏏ ᏧᎵᏏᎬ ᏙᏱᏗᏢ, ᎾᎿ ᏓᏂᏴᎨᏍᏗ, ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ. ᎠᎴ ᎦᎪ ᎢᏳᏍᏗ ᎠᎨᏴ ᎠᏍᎪᎯ ᏱᏚᎭ ᎠᎩᏏ ᏧᎾᎬᏩᎶᏗ, ᎢᏳᏃ ᏌᏉ ᏳᏲᎱᏎᎸ, ᎥᏝ ᏯᏨᏍᏛᏍᎪ ᎠᏨᏍᏙᏗ ᎠᎴ ᏱᎬᏃᏌᏍᎪ ᎦᎵᏦᏕ, ᎠᎴ ᎤᎵᏏᎾᎯᏍᏗ ᏳᏲᎰ ᎬᏂ ᎠᏩᏛ? ᏕᏥᎧᏅᏍᎪ, ᏂᏥᎪᏩᏘᏍᎬᎾᏃ ᎢᎩ? ᏕᏥᎵᎷᎦᏍᎪ, ᏂᏣᏛᎩᏍᎬᎾᏃ ᎢᎩ? ᎠᎴ ᏂᏣᏅᏓᏗᏍᎬᎾᏍᎪ ᎢᎩ? ᎬᏂᎨ ᏧᎳᏍᎩ ᎠᎹ ᏗᎵᏥᏍᎬ ᏚᏩᎭᏂᏍᏔᏅ. ᎤᏫᏒᏃ ᎢᎦᏛ ᏅᏃᎱᎶᏗ ᎤᎳᎨᏯᏛᏤᎢ, ᏥᏍᏆᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᏄᏘᏐᏁᎢ. ᏐᏈᎵ ᏃᎴ ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗ ᏂᏕᎬᏁ ᏃᎴ ᏩᎦ ᏗᎨᎵᏌᏛᏗ ᎡᎳᏗᏣ ᏃᎴ ᏫᎵᎻ ᎤᏴᏍᏗ. ᏍᏈᏍᏓ ᎠᎾᎡ, ᏗᏴᏣᏗᏍᏗ, ᏗᏍᏙᏍᏙᏗ ᏅᏯ, ᎦᏄᎸ ᏗᏣᎦᏍᏙᏗ, ᎤᏅᏗ ᏗᏥᏍᏙᏗ, ᎠᎹ ᏗᏥᏍᏙᏗ, ᎤᏂᏥ ᏗᎪᏓᎩᏍᏙᏗ, ᏧᎦᏣᏅᎪᏥᏓ ᏥᏍᏕᏥ ᏗᏌᏛᏙᏗ, ᏧᏏᏩ ᎤᎧᏔ ᏗᎦᏅᏙᏗ, ᏗᏍᏓᏱᏗᏍᏙᏗ ᏃᎴ ᎧᏁᏍᎦ ᎫᏔᎩᏍᏙᏗ ᏴᎩ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᎢᎸᎯᏳ ᎪᎩ ᎢᏳᏓᎴᏅᏛ ᏴᎦᎦᏗᏔ ᎯᎠ ᏖᎸᎳᏗ ᎤᎾᏄᎪᏫᏒᎯ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎢᏧᎳᎭ ᎢᏤ ᎢᏓᏗᏔᎲᎭ ᎡᏙᏓ ᎤᏤᎵᎪᎯ. ᎿᏉᏃ ᎤᎬᏫᏳᎯ ᎤᏛᎦᏅ ᎤᏔᎳᏬᏎᎢ, ᎠᎴ ᏚᏅᏎ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ, ᎠᎴ ᏫᏚᏂᎴ ᎾᏍᎩ ᏧᎾᏓᎸᎯ, ᎠᎴ ᏭᎾᎪᎲᏍᏔᏁ ᎤᏂᏚᎲᎢ. ᎿᏉ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏂᏧᏏ ᎬᏬᎯᏳᎲᏍᎩ; ᎢᏳᏃ ᏕᏥᎧᎿᏩᏗᏎᏍᏗ ᎠᎩᏁᏨᎢ, ᎤᏙᎯᏳᎯᏯ ᏍᎩᏍᏓᏩᏗᏙᎯ ᎨᏎᏍᏗ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᎩ; ᎦᏙᏃ ᎢᎡᏣᏕᏯᏙᏗᎭ? ᎣᏏᏳ ᏕᎤᎸᏫᏍᏓᏏ ᏥᎾᏋᎦ. ᎤᏓᏅᎯᏓ ᎢᎦ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏔᏁ.” ᎡᏆ ᎧᏁᏌᎢ ᏃᎴ ᎢᏤᎯ ᎯᏑᏫᏒ ᏃᎴ ᎠᏕᎳ ᏓᎶᏂᎨ ᎠᏑᏫᏍᏗ ᎲᏔᏅ ᏕᎰᏪᎳᏅ!” ᏥᏲᎲ ᎩᎶ ᎦᏥᏅᏁᏗ ᎪᏪᎵ. ᎾᏍᎩ ᎾᏍᎦᏅᎾ ᎢᏳᏩᏁᏗᏱ ᎦᏅᎦᎵᏍᎬᎢ ᎧᏃᎮᏛ ᎬᏗᏍᎬᎢ ᎠᎹ ᏥᎪᏑᎴᏗᏍᎪ ᎾᏍᎩᏯᎢ. ᎠᏰᎳᏍᏘ ᎬᏘ ᎤᏍᏛᎪᏒ ᎤᎵᏓᏍᏔᏅ, ᎠᏣᏗ ᎤᎪᎳ ᎦᏓᏫᏔᏅ ᎤᎵᎨᏯᏛᏅ ᎤᏲᏍᏔᏅ ᎪᏪᎵ, ᏥᏳᎪᏘ ᏭᏬᏪᎳᏅ ᏄᏪᏒ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ. ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸ, ᎠᏎᏃ ᎥᏝ ᏂᎦᏗᏳ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸ, ᎠᏎᏃ ᎥᏝ ᎠᎩᎾᏝᎢ ᏱᎨᏎᏍᏗ ᎪᎱᏍᏗ. ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏓᏅᏒᎩ, ᎠᎴ ᏫᏚᏃᏁᎸᎩ ᎠᏂᏧᏏ, ᏥᏌ ᎤᏅᏩᏅᎯ ᎨᏒᎢ. ᏙᏱ ᏗᏣ ᎦᎶᎯᏍᏗ ᏭᏅᎪᏤ ᎦᎸᎶᎢ ᎢᏣ, ᏩᎶᏏ ᎤᎾᎵᎪ. ”ᏌᎳᏓ?” ᎤᏛᏁ ᎡᏝᏪᎯ. ᎠᏴᏫᏯ ᏱᎩ, ᎠᏰᎵ ᎠᏴᏫᏯ ᎨᏎ ᎤᎵᏏ. ᎠᏎᏃ ᏰᎵᏉ ᎨᏎ. ᎤᎾᏚᏓᎸ ᎠᏁᎵᏍᎨ ᏂᎦᏓ ᏧᏂᏃᎯᏎᏗ ᎨᏍᏗ ᎢᎪᎯᏓ ᎪᎩ ᏱᎨᏎᏍᏗ. ᎯᎠᏃ ᏄᏪᏎ ᏚᏟᎶᏍᏓᏁᎴᎢ; ᏥᎪᏗᎨᏫ ᏰᎵᏉ ᏯᏘᏄᎦ ᏗᎨᏫ? ᏝᏍᎪ ᎢᏧᎳ ᎠᏔᎴᏒ ᏱᏙᎬᏂᎸᎩ? ᎣᎦᏙᎴᎰᏒᏰᏃ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏣᏔᏅᎯ ᎤᏕᏯᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎦᏂᎳᏗᏍᎩ ᏧᏓᎴᏅᏛ ᏂᎦᏛ ᎠᏂᏧᏏ ᎠᏁᎲ ᏂᎬᎾᏛ ᎡᎶᎯ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᎾᎵᎪᏒ ᎾᏎᎵᏂ ᏧᎾᏙᎢᏛ. ᎧᏂᎩᏓ ᎤᏚᎩ, ᎠᏂᎦᏔᎮ ᎾᎦᎸᎳᏗᏴ ᎫᏩᎾᏗᏍᎦᎶᏗ ᏱᎨᏒᎾ. ᏂᏥᏲᎯᏍᏗᏍᎬᎾ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ; ᎤᏥ ᎦᏅᎦᎸᎯᏙᎮ ᎤᎾᏅᏗ ᎠᏍᏆᏚᎸ. ᎥᏝ ᏱᏍᏆᏔᏪᏙᏁᎢ; ᎯᎠᏍᎩᏂ ᎠᎨᏴ, ᎠᎩᏴᎵᎸ ᏅᏓᎬᏩᏓᎴᏅᎥ, ᎥᏝ ᏳᏑᎵᎪᏨ ᏓᏆᏚᏣᎳᏁᎲ ᏗᏆᎳᏏᏕᏂ. ᏅᏩᏍᏛ ᏂᎦᏓ ᎠᏂᎾᏣᎥ ᏧᎾᎾᏏᏗ, ᎠᏎᏃ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᏴ ᎾᎦᎵᏍᎪ. ᎯᎠ ᏄᏪᏎᎢ, ᎣᎦᏁᎳᎩ; ᎦᏙ ᏗᎦᏓᏛᏙᏗ ᏂᎯ, ᏥᏌ, ᎾᏎᎵᏗ ᎮᎯ? ᏥᏌ ᏍᎩᏛᏔᏂᎸ? ᎬᎦᏔᎭ, ᏂᎯ ᎾᏍᎩ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏥᎸᏉᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎠᎴ ᎼᏏ ᎤᏙᎯᏳᎯ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏒᎩ ᏂᎦᎥ ᏚᏓᏘᎾᎥᎢ ᎠᏥᏅᏏᏓᏍᏗ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏥᎨᏎᎢ. ᏣᎬᏫᏳᎯ, ᎿᏉ ᎯᏅᏏᏓᏍᏗ ᏅᏩᏙᎯᏯᏛ ᏕᎯᏲᏍᎦ, ᎾᏍᎩᏯ ᏂᏣᏪᏒ ᏣᏁᏨᎢ; ᎿᏉᏃ ᎾᏍᎩ ᎠᎨᏴ ᏌᎺᎵᏱ ᎡᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᏂᎯ ᎯᏧᏏ ᎠᏗᏔᏍᏗ ᎢᏍᎩᏔᏲᏎᎭ ᏥᎨᏴ ᏌᎺᎵᏱ ᎨᎢ. (ᎠᏂᏧᏏᏰᏃ ᎠᎴ ᏌᎺᎵᏱ ᎠᏁᎯ ᎥᏝ ᏱᏚᎾᏓᎦᏌᏯᏍᏙᎢ.) ᎿᏉᏃ ᏈᏓ ᏌᏚ ᎢᏯᏂᏛ ᎠᏂᏙᎾᎥ ᎦᏙᎬᎢ, ᎠᏍᏓᏯ ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏥᏧᏏ, ᎠᎴ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎢᏤᎯ, ᎯᎠ ᎾᏍᎩ ᎢᏣᏅᏖᏍᏗ, ᎠᎴ ᎢᏣᏛᏓᏍᏓ ᏥᏁᎬᎢ. ᎠᎴ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎶᎢ ᎠᏰᎵ ᎦᏃᎯᎵᏒᎩ ᎠᏍᏓᏯ ᎤᏪᎷᎬᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎤᏲᎢᏳ, ᎤᏲᎢᏳ ᎤᏲᎢᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎡᎶᎯ ᏓᏁᏩᏗᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᏐᎢ ᎠᏤᎷᎩ ᏗᏤᎷᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏦᎢ ᎢᏯᏂᏛ ᏓᏂᏁᎲᎢ, ᎠᏏ ᏧᏂᏤᎷᎯᏍᏗ ᏥᎩ. ᎠᏂᏔᎵ ᏗᏂᏍᏔᏲᎯ ᏚᏂᎧᎲ, ᏏᏴᏫᎭ ᎠᏂᏍᎦᏯ, ᎤᎾᏛᏁᎢᏍᏔᏃᏅ ᎨᏎ ᏐᏉ ᏗᏅᏍᎪᎵ ᏧᏂᏐᏗ, ᏐᏉ ᏚᎾᏓᏅᏛ ᏧᏂᏲᏍᏗ. ᎤᏓᏄᎸᎯ ᎢᏳᏍᏗ ᎠᏍᎪᎵ ᎣᏁ ᏫᏂᏚᏩᏁᎴ ᏧᏬᏰᏂ ᏃᎴ ᏗᎧᏂᎨᏂ ᏚᏩᏐᏍᏔᏁᎢ, ᏧᏣᏪᏐᎸᏍᏙ ᎢᏳᏍᏗ. ᎢᏳ ᎠᎴ ᎯᎦᏙᎵ ᏙᏦᏕᏍᏗᏍᎨᏍᏗ, ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ; ᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉᏉ ᏱᎧᏅ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏱᏫᏣᏴᎸ ᎠᏃ ᎢᏧᎳ ᏱᏘᎧᏅ ᏨᏍᎩᏃ ᎠᏥᎸᏱ ᏱᏪᏣᏓᎢᏅ; ᏍᎩᏲᎮᏍᏗ, ᎠᏎᏃ ᏓᏍᎩᏯᏠᏥ; ᎠᎴ ᏫᎨᎥ ᎥᏝ ᏰᎵ ᏫᏴᎨᏥᎷᎩ. ᎠᏏᏉᏃ ᏣᎢᏎᎢ ᎠᏍᎩᎾ ᎤᏍᏢᏂᏍᏔᏁᎢ, ᎠᎴ ᎤᎸᏕᏍᏔᏁᎢ, ᏥᏌᏃ ᎤᏍᎦᏤ ᎦᏓᎭ ᎠᏓᏅᏙ ᎠᎴ ᎤᏅᏩᏁ ᎠᏲᎵ, ᎠᎴ ᏔᎵᏁ ᎢᎤᏪᎧᏁᎴ ᎤᏙᏓ. ᎯᎠ ᎠᏂᏃᏟᏙᎯ ᏧᏂᎪᎮᎢ ᏃᎴ ᏣᏂᎧᏔᎮᎢ ᎢᏳᏃ ᎢᏣ ᎤᎾᎳᏐᏍᏙᏗ. ᎬᏩᎦᏌᏯᏍᏕᏃ, ᎠᎴ ᏙᏧᏂᏅᏎ ᎠᎾᏓᎦᏌᏯᏍᏗᏍᎩ, ᎾᏍᎩ ᎤᎾᏓᏅᏘ ᎤᎾᏣᎸᏗᏱ ᎾᏍᎩ ᎬᏩᎪᏁᎶᎯᏎᏗᏱ ᎦᏬᏂᏍᎬᎢ, ᎾᏍᎩᏃ ᏫᏚᏂᏲᎯᏎᏗᏱ ᎤᏰᎢᎵᏍᏗᏱ ᎤᎬᏫᏳᎯ. ᎠᏎᏃ ᎠᎩᎭ ᎠᏓᏬᏍᏗ ᎨᏒ ᎥᏆᏬᏍᏙᏗ; ᎠᎴ ᏂᎦᎥ ᎤᏪᎵᎯᏍᏗ ᎠᏆᏓᏅᏔ ᎬᏂ ᎠᎵᏍᏆᏛᎭ! ᎿᏉᏃ ᏚᏂᏅᏎ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᎯᎠ ᎢᏯᏂᏪᏍᎩ; ᏱᏣᏛᎦᏁᎸ ᎾᏍᎩ ᎧᏁᎬᎢ ᎠᏐᏢᎢᏍᏗᏍᎬ ᎼᏏ ᎠᎴ ᎤᏁᎳᏅᎯ. ᎠᏛᏃ ᏔᎵᏁ ᎤᎪᎮᎢ, ᎠᎴ ᎤᎴᏅᎮ ᎯᎠ ᏂᏚᏪᏎᎴ ᎾᎥ ᎠᏂᏙᎾᎢ, ᎯᎠ ᎾᏍᎩ ᎾᎿ ᎨᎳ. ᎠᎦᏔ ᎠᏰᎸ ᎢᎦ ᎦᏘᏍᏗᏍᎩ, ᎢᏳᏍᎩᏂ ᎯᎦᏙᎵ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎨᏎᏍᏗ, ᏂᎬ ᎯᏰᎸᎢ ᎤᎧᎵᏦᏅᎯ ᎨᏎᏍᏗ ᎢᎦᎦᏘ. ᎾᏍᎩ ᏎᏓᏂ ᏤᏥᏲᎯᏎᏗᏱ ᎾᏍᎩ ᎯᎠ, ᎾᏍᎩ ᎤᏲᎢᏍᏗᏱ ᎤᏇᏓᎸᎢ, ᎤᏓᏅᏙᏃ ᎠᏍᏕᎸᏗᏱ ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏤᎵ ᎢᎦ ᎨᏎᏍᏗ. Ꭷ ᏣᎬᏫᏳᎯ, ᎿᏉ, ᏔᎧᏅᎦ ᎪᎩᏍᎦᎬ ᏣᏂᏁᎦ, ᎠᎴ ᏔᎵᏍᎪᎸᏓᏏ ᏘᏅᏏᏓᏍᏗ ᎤᏍᏗᎤᏅ ᎾᏂᏍᎦᎢᎲᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏔᏁᏨ ᎠᏂᏃᎮᏍᎬᎢ, ᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏗ; ᎯᎠᏰᏃ ᎾᏍᎩ ᏔᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᏓᏟᎶᏍᏗ; ᏌᏉ ᎨᏒ ᏌᎾᏱ ᎣᏓᎸ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᏥᏕᎦᎾᏄᎪᏫᏍᎦ ᏗᎨᏥᎾᏢᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎮᎦ ᏥᏓᏟᎶᏍᏗ. ”ᎣᏍᏓ ᎭᏁᎸᏓ.” ᏌᏌ ᎤᏂᎪᎭ ᎡᎳᏆᏗ ᎠᏯᎥ ᎧᏁᏌᎢ ᏃᎴ ᎤᏁᎷᏁᎢ. ”ᎧᎩᏳᏍᏗ ᏧᏍᏆᏴᏍᏗ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏃᎮᎮᎸ, ᏗᏦᏕᏍᏗᏱ ᏂᎨᏒᎾ. ᏍᎪᏯ ᏗᏂᏴᎯᎰ. ᏃᏗ ᎩᎳ ᏫᏚᎧᎾᏁ ᏗᎦᏛᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ. ᎾᎥᏃ ᎢᏳᎾᏓᎳ ᎠᎴ ᎪᎱᏍᏗ ᏧᏩᎿ ᎤᎾᏛᎦᏁ ᎤᏁᎳᏅᎯ ᎤᏣᏘ ᎤᏪᏙᎵᏨᎢ, ᎠᎴ ᎢᏧᎳᎭ ᎤᎾᎵᎮᎵᏤᎢ. ᏫᏚᎧᎾᏅ ᏕᏥᏴ ᎦᎶᏇ, Ꭾ ᏫᎵ ᎤᏛᏅ. ᎿᏉᏃ ᏉᎳ ᏗᏐᏴ ᏮᏓᏰᏥᏴᏔᏂᏒᎢ, ᎯᎠ ᏄᏪᏎᎸᎩ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ; ᏥᏌ ᏰᎵ ᎪᎱᏍᏗ ᎦᎬᏲᏎᏗ? ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏥᎪ ᎠᏂᎪᎢ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏰᎵ ᎨᏣᏬᏂᎯᏍᏗ?? ᎾᏍᎩ ᎾᎪᎯᏳᎲᏍᎩ [ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎾᏍᎩ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏁᎨᏒᎾ ᎤᏤᎵᎦ, ᎾᏍᎩᏍᎩᏂ ᎤᏪᏥ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ ᎥᏝ ᎬᏂᏛ ᎤᎪᏩᏛᏗ ᏱᎩ; ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᎵᏃᎯᏰᎭ. ᎠᎴ ᎥᏝ ᏱᏣᏜᏏᏛᎡᎭ ᏨᏒ ᏔᏘᏂᏙᎯ ᎨᏒ ᏗᏂᎨᏫ, ᎢᎦ ᏔᏘᏍᏓᏁᎯ ᎨᏒ ᎤᎵᏏᎬ ᎠᏂᏂ, ᎾᏍᎩᏃ Ꮎ ᎠᏫᏍᎩ ᎠᎴ Ꮎ ᎠᎹ ᎠᏍᏚᏟᏍᎩ ᏌᏉᏉ ᎾᎾᎵᏍᏗᎭ; ᎠᎴ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎨᎦᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎤᎾᏤᎵᎦᏯ ᎨᎦᎫᏴᏓᏁᏗ ᎨᏒ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏅᏒ ᏕᎤᏂᎸᏫᏍᏓᏁᎸᎢ. ᎠᏁᎷᎲᏍᎨᎢ ᎠᎾᏓᏩᏛᎯᏙᎢ. ᎨᏍᏗ ᏳᏓᏅᏖᏗᏍᎨᎢ ᎠᏥᎢᏍᏗ, ᎠᎧᏔᎮᎢ ᏰᎵ ᎪᎯᏓ ᎤᏍᏆᏂᎪᏙᏗ ᎰᎻ. ᎠᏥᎸ ᎾᎥᏂ ᎤᎴᏅ ᎾᏍᎩᏯ ᎭᏫᏯ ᏱᏓᎦᏒᏍᏔᎾ ᎤᎦᎾᏬᏍᎬ. ᎢᏣᎵᎮᎵᎨᏍᏗ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎢᏣᎵᎮᎵᎨᏍᏗ, ᎦᏗᎭ ᏔᎵᏁ. ᏓᏓᏁᏟᏴᏎᎬᏃ, ᎠᏧᏣᏃ ᎠᎴ ᏒᎦᏔ ᎢᏈᎬᎢ ᏓᎾᏛᏍᎨᎢ ... ᏃᎴ ᎤᏟᏴᏍᎩᎸᎮ. ᎠᏎᏰᏃ ᎢᎸᏍᎩ ᎢᏣᏓᏗᏍᏗ ᏂᎯ ᏂᏣᏛᏅᎢ, ᎾᏍᎩ ᎣᏏᏳ ᎨᏥᏰᎸᏅᎯ ᎬᏂᎨᏒ ᎢᏳᎾᎵᏍᏙᏗᏱ ᏂᎯ ᏂᏣᏛᏅᎢ. ᎤᎾᏗᎦᎴᏲᏨᎯᏃ ᎾᎯᏳ ᎤᏲ ᏥᏄᎾᎵᏍᏓᏁᎴ, ᏨᏧᏓᎴᏅᎮ ᏍᏗᏫ, ᏈᏂᏏ ᎢᏴᏛ ᏭᏁᏙᎴᎢ, ᎠᎴ ᏌᏈ, ᎠᎴ ᎥᏘᎣᎩ, ᎠᏂᏧᏏᏉ ᎤᏅᏒ ᎧᏃᎮᏛ ᏓᏂᏃᎮᎮᎮᎢ. ᏦᎢᏁᏃ ᎢᎦ ᏕᎨᎦᏨᏍᏗᏍᎬᎩ ᎨᎵᎵ ᎨᏂ ᎦᏚᎲᎢ; ᏥᏌ ᎤᏥ ᎾᎿ ᎡᏙᎲᎩ. ᎠᏎᏉᏃ ᎠᎵᏃᎮᏗᏍᎨ, ᏭᏴᎴᎢ; ᎠᎴ ᏚᏩᏛᎮ ᎤᏂᏣᏖ ᏓᏂᎳᏫᎡᎢ. ᎤᏃᎴ ᎤᏚᎵᏍᏛᏉ ᎢᏘᏢ ᏫᎦᏃᎸᏗᏍᎪᎢ, ᎠᎴ ᎤᏃᏴᎬ ᎭᏛᎩᏍᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᎦᏔᎰ ᏗᎦᏛᎢ ᎠᎴ ᏩᎦᏛᎢ; ᎾᏍᎩᏯᏍᎩᏂ ᏄᏍᏗ ᎾᏂᎥ ᎩᎶ ᎾᏍᎩ ᎠᏓᏅᏙ ᏧᎾᏄᎪᏫᏒᎯ. ᎡᎵᏍᏗ ᎠᏯ ᏭᏍᏆᏂᎧᏛᎢ ᎪᎯᏓ ᎤᏂᎪᎲᎢ ᎨᏒᎢ. ᎦᎵᏦᏙᏗᏰᏃ ᎤᏃᏢᏁᎢ, ᎦᎸᏉᏗᏳ ᎨᏒ ᏣᏃᏍᎮᎢ, ᎾᎿ ᎢᎬᏱᏱ ᏓᏓᎯᏛᎢ, ᏥᎦᎧᎮ ᎠᏨᏍᏙᏗ ᎦᎪᏗᏱ, ᎠᎴ ᎦᏍᎩᎶᎢ, ᎠᎴ ᎾᎿ ᏣᏝᎮ ᎠᎦᏙᏗ ᎦᏚ; ᎿᏉᏃ ᏥᏌ ᏚᏰᎵᎯᏍᏔᏅ ᎤᏂᏣᏘ, ᎠᏓᏁᎸ ᏭᏴᎸᎩ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏗᏍᎩᏲᏏᏌᏏ ᏓᏟᎶᏍᏛ ᎤᏲ ᏧᎵᏰᏁ ᏠᎨᏏ. ᎥᏝᏍᎩᏂᏃᏅ ᎩᎶ ᎠᎦᏴᎵᎨᎢ ᎤᎪᎲᎯ ᏱᎩ, Ꮎ ᎤᏩᏒ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ; ᎾᏍᎩ ᎤᎪᎲᎯ ᎠᎦᏴᎵᎨᎢ. ᎾᏍᎩᏃ ᏄᏪᏒ, ᏚᏦᏔᎲᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏗᏣᏓᏂᎸᎩ. ᏩᎩᎷᏣ ᏩᏏᏓᏂ ᎩᎳ ᎠᎬᏱ ᎠᏆᏛᎦᏅ ᎦᎸᏥ ᎠᏂᏬᏂᏍᎬ, ᎠᎩᎵᏓᏍᏔᏅ, ᎨᏍᏗ ᏱᎪᎵᎨᎢ. ᏧᏩᎩ ᏧᎬ ᎤᏛᎦᏁ ᏗᏂᏃᎩᏍᎬ ᏔᎳᏚ ᏃᎴ ᎤᏍᎪᏍᏓ ᎩᎦᎨ ᏄᎵᏍᏔᏁᎢ ᎤᏪᎵᎯᏍᎬᎢ. ᎤᏃᎴᏃ ᎤᏣᏘ ᎣᎩᏝᏗᏍᏔᏂᏙᎸ, ᎤᎩᏨᏛ ᎤᎾᎵᏁᏌᎴᏒᎩ. ”ᏍᎩᏃᎯᏏ.” ᏚᎧᎾᏅ ᎠᏰᎴᎩ. ᎨᏥᏅᏏᏓᏍᏗ ᏕᎯᏁᏤᎮᏍᏗ ᏧᏃᎯᏳᏗᏱ ᎤᏅᏒ ᏗᎬᏩᏂᏅᏏᏙᎯ, ᏂᎦᎥᏉ ᎾᎾᏛᏁᎲ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ; ᏔᎵᏁᏉ ᏅᏗᏂᏁᎬᏫ. ᎠᏫ ᏗᏆᏤᎵᎦ ᎠᎾᏛᎩᏍᎪ ᏥᏁᎬᎢ, ᎠᎴ ᎠᏴ ᎦᏥᎦᏔᎭ, ᎠᎴ ᎬᏂᏍᏓᏩᏕᎪᎢ, ᎠᎢᏒᏃ ᏧᎾᏄᏬ ᏚᏂᏰᏍᏛᏁ ᏅᏃᎯ. ᎢᏳᏃ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ ᎤᎵᏍᎦᏍᏙᏗ ᎬᏰᎯ ᏯᎦᏘᏯ ᎦᏁᎸᎢ ᏅᏩᏙᎯᏯᏛ ᏄᏍᏛ ᎤᎿᎥᎢ. ᎦᏅᏓᏗᏍᎪᎢᏃ ᏬᎩᏨᏓᏋ Ꮲ ᏔᎵᎭ ᎢᏳᏩᎪᏗ. ”ᎦᏨ ᎮᏙᎭ?” ᎤᏍᏚᎩᏒ ᏧᏍᏆᏅᎾ, ᏎᎦ ᎤᏓᏒᎾᏔᏅ. ᏧᎾᏓᏥ, ᏚᎾᏓᏙᏗ, ᎠᎹᏟᏅᏢ ᎠᎴ ᏗᎾᏓᎸ ᎤᏁᎴᏅᎮ ᏓᎾᏓᏙᏪᎳᏁᎲ ᎪᏪᎵ ᎠᎴ ᎦᎵᏦᏕ ᎢᎸᏢ ᏓᏂᏢᏍᎨ ᏧᏂᎪᎵᏰᏗ ᎠᏰᎸᏎ ᎠᎴ ᏓᎾᏓᏕᏲᎲᏍᎨ ᏧᏂᎪᎵᏰᏗᎢ ᎠᏂᏴᏫᏃ ᎤᎾᎴᏅᎮ ᎢᎾ ᏓᏁᎨ ᎪᏪᎵ ᏧᎾᏓᏙᏪᎳᎾᏗ ᎤᏂᏰᎸᏎ. “ᎠᏯᏗ ᏏᏆ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ, ᏧᏬᏰᏂ ᎦᎵ ᎧᏁᏍᎦ ᎤᏗᏅᏎ. ᎦᎶᎯᏍᏗᏱ ᎠᏴ; ᎢᏳᏃ ᏱᎶ ᎠᏴ ᎠᎩᏴᏍᏗᏍᎨᏍᏗ, ᎠᏎ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏴᏍᏗ ᎠᎴ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏩᏛᏗ ᎨᏎᏍᏗ ᎦᏄᎸᏒᎢ. ᎤᏬᏚᏨ ᎨᏐ ᎦᏙ, ᎠᏎᏃ ᎦᏚᏏ ᎨᏒ, ᎨᏍᏗ ᎩᎶ ᏳᏚᎵᏍᎨ. ᎢᏳᏍᎩᏂᏃᏅ ᎠᏉᎯᏤᎵᏙᎸᎭ ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏗᏱ ᎢᏣᏛᏁᏗᏱ ᏗᏣᎸᏫᏍᏓᏁᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏥᎩ, ᎦᎫᏍᏛᏗ ᎠᎴ ᎤᎵᏍᏓᏱᏙ ᏥᎩ ᏚᏳᎯᏛ ᎨᏒᎢ. ᎤᎪᎮ ᏫᎵᎻ ᎦᏂᏓᏛ ᎾᎥᏂ. ᎠᎴ ᏚᏅᏎ ᎦᏚᏱ, ᎯᎠ ᏄᏪᏎᎢ; ᎢᏤᎾ ᎣᏍᏛ ᏪᏥᏲᎦ ᎾᏍᎩ ᎤᏍᏗ ᎠᏲᎵ, ᎢᏳᏃ ᎡᏥᏩᏛᎲᎭ, ᎢᏍᎩᏃᏁᎵᎸᎭ, ᎠᏴᏃ ᎾᏍᏉ ᏫᏥᎷᏨᎭ, ᎠᎴ ᏥᏯᏓᏙᎵᏍᏓᏁᎸᎭ. ᎾᎥ ᎾᎢ ᎠᎦᏳᎵᎨ ᎤᎷᏨᎩ ᏧᏓᏅᏠᎯᏗ ᎨᎸᏛᏍᏗ ᎯᎠ ᎤᏍᏗ ᎦᏅᏅ. ᎠᎴ ᏫᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎬ ᏐᏈᎵ ᏫᏥᎪᎥᎩ ᎠᎴ ᎾᎿ ᎤᎩᎵ ᎦᎶᏣᏗ ᎦᏁᎲᎩ; ᎠᎴ ᎠᎵᏍᏚᎶ ᎠᏥᏅᏁᎸᎩ; ᎠᎴ ᎤᏪᏅᏒᎩ ᏫᏓᏎᎪᎩᏍᎬᎩ, ᎠᎴ ᏫᎬᏓᏎᎪᎩᏏᏒᎩ. ᎤᏓᎴᏨ ᎩᎦᎨ ᎠᏣᏗ ᏚᏩᏓᎷᏯᏛ ᎢᏧᏩᏂ ᏄᏪᏎ, ᏏᏲ ᎤᏍᏗ ᎠᏣᏗ, ᏥᏍᏆᎸᎾ ᎬᏉᏎᎰ ᏚᏅᏓᏒ ᎠᏁᎯ. ᎨᏍᏗ ᏂᎯ ᏥᏂᏕᎯᏏᎾ ᏗᎧᏁᎢᏍᏗ ᏱᏥᏏᎾ. ”ᏂᎦᏓ ᎠᎾᏓᏅᏖ ᎨᏥᏍᏗ---ᏣᏄᏏ, ᎰᎻ, ᏃᎴ ᎡᎶᏗ.” ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵᎦ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ. ᎨᏍᏗ ᎤᏩᏙᎯᏴᏓ ᏱᎨᏐ ᏴᎦᏘᏯ ᎪᎱᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎠᎴ ᎤᏣᎩᏍᏗ ᎤᏪᏥ. ᎾᏍᎩᏰᏃ ᎯᎠ ᏄᎵᏍᏔᏅᎩ ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸ ᎯᎠ ᏥᏂᎬᏅ; ᎥᏝ ᏌᏉ ᎤᎪᎳ ᏧᎵᏍᏆᎵᏍᏗ ᏱᎨᏎᏍᏗ. ᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏕᎾᏓᏡᏩᏗᏒᎢ. ᎢᏳᏃ ᎢᏣᏙᎴᎰᏎᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏓᏅᏘᏳ ᎨᏒᎢ. ᎨᏍᏗ ᎩᎶ ᏳᎪᎭ ᏧᏍᏆᏴᏍᏗ. ᎠᎴ ᎿᏉ ᏕᏣᏗᏁᎨᏍᏗ, ᎠᎴ ᏕᏥᏲᏍᎨᏍᏗ, ᏞᏍᏗ ᎢᎬᏱ ᎦᏰᎯ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎢᏥᏪᏍᏗᏱ ᎢᏥᏁᎢᏍᏗᏱ, ᎠᎴ ᏞᏍᏗ ᎢᎬᏱ ᎦᏰᎯ ᏱᏣᏓᏅᏖᏍᎨᏍᏗ; ᏄᏍᏛᏍᎩᏂ ᏫᎯᏳ ᎨᏒ ᎡᏥᏁᎸ ᎾᏍᎩ ᎢᏥᏁᎨᏍᏗ; ᎥᏝᏰᏃ ᏂᎯ ᏱᏣᏁᎪᎢ, ᎦᎸᏉᏗᏳᏍᎩᏂ ᎠᏓᏅᏙ. ᎢᏳᏅᏁᎰᏅ ᏱᏄᏍᏗ, ᎣᎯᏍᏙᏗ ᎢᏳᏅᏁᏗ ᏱᎫᏩᏂᎷᎳ. ᎤᏂᏁᏓᏃ ᎯᎠ ᏂᏚᏂᏪᏎᎴ ᎠᏂᎦᏔᎿᎢ; ᎢᎦᏛ ᎪᎢ ᎢᏣᏤᎵ ᏍᎩᏁᎥᏏ, ᏙᎬᏠᎯᏎᎭᏰᏃ ᏙᎩᏨᏍᏛᎢ. ᎠᎴ ᎩᎶ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎦᎸᎳᏗ, ᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏪᏗᏱ ᎠᎴ ᎾᎿ ᎤᏬᎵ. ᏚᏂᎪᎲᏃ ᎢᎦᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎦᏚ ᎠᏂᎩᏍᎬ ᏗᎦᏓᎭ ᏧᏃᏰᏂ ᎬᏗ, (ᎾᏍᎩ ᏂᏚᎾᏑᎴᎲᎾ ᎦᏛᎦ,) ᎤᏂᏐᏅᏤᎴᎢ. ᎥᏝ ᎠᎴ ᎩᎶ ᎯᎠ ᎾᏍᎩ ᎦᎸᏉᏗ [ᏗᎦᎸᏫᏍᏓᏁᏗ] ᎤᏩᏒᏉ ᎤᏓᏅᏖᏛ ᏯᎩᏍᎪᎢ, ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᏯᏅᏛ ᏱᎩ ᎾᏍᎩᏯ ᎡᎵᏂ ᎠᏥᏯᏅᎲᎢ. “ᎠᎳᏂ, ᏣᎸᏂᏗᏍᎩ,” ᎤᏛᏁᎢ ᎰᎻ. ᎤᎵᎮᎵᏍᏗ ᎨᏎᏍᏗ ᏔᎵᏁ ᎪᎨᏱ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ ᎯᏍᎩᏍᏆᏂᎦᏚ ᎢᏯᏂ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ ᎠᎾᏓᏌᎩᏙᎲ ᏂᎬᎾᏛ. ᏣᏂᏰᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᎶᏛ; ᎥᏝ ᏚᏳᎪᏛ ᏱᎩ ᎾᏍᎩ ᏣᏓᏰᎭ. ᎩᎶ ᎠᏍᎦᎾ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎠᏍᎦᎾ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎦᏓᎭ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎦᏓᎭ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏎᏍᏗ. ᏃᏗ ᎤᏂᏄᎳᏒᏅ ᎤᏲᏨ ᎤᏪᏥ, ᎤᎵᎦᎵᏴᏓ ᎨᏎ ᎤᏃᎴ ᏃᎴ ᎣᏍᏓ ᎭᏒᎨ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᎬᏂᏳᏉ, ᎦᏃᏍᎩᏍᎩ ᏥᎦᎷᎪ ᎾᏍᎩᏯ ᏓᏥᎷᏥ. ᎣᏏᏳ ᎢᏳ ᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏯᏫᏍᎩ, ᎠᎴ ᏧᏄᏬ ᏗᏍᏆᏂᎪᏗᏍᎩ, ᎾᏍᎩ ᎤᏰᎸᎭ ᎤᏪᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏕᎰᎯᏍᏗ ᎨᏒ ᎠᏥᎪᏩᏛᎡᏗᏱ ᏂᎨᏒᎾ. ᎤᏟᏍᏓ, ᏴᏫ ᏛᏂᎷᏥ --- ᎢᏳᏉ ᎤᏂᎷᏤᏍᏗ. ᎣᎦᎵᏍᏓᏴᏗ ᏍᎩᏁᎮᏍᏗ ᏂᏚᎩᏨᏂᏒᎢ. ᎤᏩᏌ ᎤᏪᏅᏒ ᏣᎵ. ᎠᏙ ᎢᏣ ᎤᎾᎷᏒ, ᎠᎹ ᎢᏳᏍᏗ ᎦᎳᎨᏴ ᏃᏥ ᏧᏆᎶᎬ ᎦᏚᎢᏣ. ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏣᏖ ᏧᏓᎴᏅᏛ ᎬᏭᎯᏍᏗᎨᎢ. ᏥᏌᏃ ᏈᏓ ᎦᏁᎸ ᎤᎷᏨ, ᎤᎪᎮ ᏈᏓ ᎤᏓᎵᎢ ᎤᏥ ᎦᏅᎨ ᎤᏗᎴᎲᏍᎨᎢ. ᏉᎳ ᎠᎴ ᏗᎹᏗ, ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᏂᏅᏏᏙᎯ, ᏫᏙᏍᏙᏪᎳᏏ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎦᎶᏁᏛ ᏥᏌ ᎬᏬᎯᏳᎯ ᎾᏍᎩ ᏈᎵᎩᏱ ᎠᏁᎯ, ᏙᏍᎦᏠᏯᏍᏗᎭ ᎩᏂᎦᏘᏯ ᎠᎴ ᎠᏂᏯᏙᎯᎯ; ᎤᏙᎰᏎ ᏫᎵᎻ. “ᏕᎾᏓᎪᎲᏳᏛ ᎤᏛᏁ ᎡᏝᏪᎯ. ᎠᏓᎴᏂᏍᎬ ᏱᏍᏛ ᎧᏃᎮᏛ, ᏥᏌᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᏤᎵᎦ. ᎥᏝ ᎠᎴ ᏴᏫ ᎠᏂᏨᏍᏛᎦ ᎠᏨᏍᏙᏗ ᎠᏟᎶᏍᏗ ᏯᏄᏢᏗᏍᎪᎢ, ᎦᎪᏗᏱᏍᎩᏂ ᎠᏂᎧᎲᏍᎪᎢ, ᎢᎦᏃ ᎤᎾᏘᏍᏓᏁᎰ ᏂᎦᏛ ᎦᎵᏦᏕ ᎠᏂᏯᎢ. “ᎪᎨ ᎠᎵᏍᏆᏓ ᏃᎴ ᎠᎵᏛᏓ,” ᏄᏂᏪᏎᎢ ᏔᎳᏚ. ᏥᎾᏰᏍᎦᏰᏃ ᎾᏍᎩ ᏫᏥᎷᏨᎭ ᎾᏍᎩ ᏂᏣᏍᏛᎾᏉ ᎨᏒ ᏄᏍᏛ ᎠᏆᏚᎵᏍᎬ ᎢᏨᏩᏛᏗᏱ, ᎠᎴ ᎠᏋᏒ ᎨᏒ ᏍᎩᎪᏩᏛᏗᏱ ᎾᏍᎩᏯ ᏂᏣᏚᎵᏍᎬᎾ ᎨᏒᎢ; ᎠᎴ ᎠᎩᏩᏛᏗᏱ ᏗᏘᏲᏍᏗ ᎨᏒᎢ, ᎠᏛᏰᎨᏗ ᎨᏒᎢ, ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎤᏲ ᏗᏓᏃᎮᎵᏓᏍᏗ ᎨᏒᎢ, ᎠᏙᏅᏗ ᎨᏒᎢ, ᎤᏟ ᎠᏤᎸᏗ ᎨᏒᎢ, ᏧᏓᎴᏅᏛ ᎢᎬᏁᏗ ᎨᏒᎢ; ᎤᏂᏣᏘ ᎤᏂᏁᏨᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏍᎩᎾ ᏣᏯᎠ; ᎦᎪ ᎤᏚᎵ ᏣᎯᏍᏗᏱ? ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏬᏁᏔᏅ, ᏅᏩᏍᏗᏗᏎᏍᏗᏉ ᎦᏥᏯᎵᎡᎵᎬ ᎠᏇᎵᏒ, ᎠᎴ ᎠᎾᎵᎮᎵᎬ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ ᎠᏇᎵᏒ. ᏙᎤᏍᏗ ᎡᎶ ᏱᎩ ᎢᎦᏣᏅᏓᏕᎲ ᏱᏗᏓᎦᏘᎴᎩ ᎤᎾᎵᏍᏗ. ᎠᏎᏃ ᎩᎶ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏚᏓᎴᏍᏗᏍᎬᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎬᏂᎨᏒᎢᏳ; ᎾᏍᎩᏰᏃ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎪᎯᏳᏗ ᎨᏒ ᎤᏛᏂᏗᏍᏕᏍᏗ. ᎠᏎᏍᎩᏂᏃᏅ, ᎤᎬᏫᏳᎯᏱ ᏫᏓᎦᏔᎲᏍᏔᏅᎭ, ᎾᏍᎩ Ꮎ ᎠᎵᎬᏚᎶ ᎢᏴᏛ ᎢᎬᏁᏗ ᏅᏓᎦᎵᏍᏔᏂ. ᎯᎠ ᎠᏗᎾ ᎨᎵ ᏅᏛᎯᏪᏏ, ᏚᏩᏂᎦᎸ ᏚᏅᏂᎦᎸᎲᎩ, ᎾᏍᎩ ᎠᏴ ᎥᏋᏱᏢᏗᏱ ᎾᎿᏂ. ᎤᏂᎶᏐᏅᏃ ᏈᏥᏱ ᎠᎴ ᎨᎴᏏᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏂᏅᏍᏓᏕᎸ ᎤᎾᎵᏥᏙᏗᏱ ᎧᏃᎮᏛ ᎡᏏᏱ, ᏥᎷᏏᎵᎻᏂ ᎠᏫ ᎤᏂᏴᏍᏗᏱ ᎾᎥ ᎠᏓᏬᏍᏗᏱ ᎪᏢᎭ ᎾᏍᎩ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏡᏕᏍᏗ ᏕᎤᏙᎥ; ᎾᎿᏂ ᎯᏍᎩ ᏓᏲᏓᏝᎭ. ᎠᎦᏔᎮᏰᏃ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏅᏳᏤᎲᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏕᎬᏩᏲᏒᎢ. ᎾᎥᏂᎨ ᏭᎷᏣ, ᏅᏛᎦᏁ ᎡᏆ ᎠᏣᏗ ᏧᏪᎷᏁ. ᎤᎵᏍᏗ ᎢᏳᏍᏗ ᎤᎵᏍᏛᏧᏁᎢ ᎰᎻ ᏃᎴ ᎤᎦᎾᏍᏓ ᎦᏚ ᎠᏔᎸᎩᏗ ᎤᎨᎢ. ᎾᎿᏰᏃ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᏄᏍᏛ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎪᎯᏳᏗ ᎨᏒ ᏩᏍᏆᏗᏍᏗᏍᎩ; ᎾᏍᎩᏯ ᏂᎬᏅᎪᏪᎸᎢ, ᏚᏳᎪᏛᏍᎩᏂ ᎢᏯᏛᏁᎯ ᎪᎯᏳᏗ ᎨᏒ ᎤᏛᏂᏗᏍᏕᏍᏗ. ᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᏍᎦᏯ, ᎥᏝ ᎪᎱᏍᏗ ᏱᏰᎭ ᎠᏢᏗ, ᎭᏫᏂᏳᏃ ᎠᏔᎴᏒᎢ, ᎭᏢᏃ ᏣᏁᎩᏒ ᎾᏍᎩ ᎬᏂᏛ ᎠᎹ? ᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏃᎵᏤ ᏣᏂ ᏗᏓᏬᏍᎩ ᎧᏁᎢᏍᏗᏍᎬᎢ. ᎡᎵᏍᏗ ᏳᏩᎩᏌᎾ, ᏂᎦᏓ ᎠᎳᏍᎬᏓ ᏧᏍᎦᎢᎲ, ᏕᏥᏩᏛᎲ ᏓᎬᎩᎵ, ᎢᎾᎨ ᏓᎬᎩᏂᏱ ᏩᏯ ᎬᎩᏲᏍᏙᏗ. ᎿᏉ ᏧᏗᏱ ᎠᏂᏂ ᎠᎾᎵᏒᎭ ᏙᏦᏓᎸ ᏩᏂᎶᏒᎭ. ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ, ᏕᏫ ᎠᏓᏅᏙ ᎤᏪᏲᎲᏍᎬᎢ, ᏣᎬᏫᏳᎯ, ᏥᎪᏎᎭ? ᎯᎠ ᏥᏂᎦᏪᎭ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᎦᏔᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᎬᏂᎨᏒ ᏂᏕᏨᏁᎸᎭ ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏤᎲᎢ, ᎠᎴ ᎣᎦᏢᏆᏒ ᏂᎯ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ ᎠᏎᏉ ᏂᎨᏒᎾ ᎨᏒᎢ. “ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗᏗ,” ᎪᏱᏁᎢ ᎡᏝᏪᎯ ᏄᏪᏎᎴ ᎠᎳᏂ. “ᏙᏚᏙᎡ ᎠᎩᏥ ᎠᏰᎵ ᎠᎴᏅᏗᏍᎩ?” ᎤᏛᏛᏁ ᏔᎵᏁ ᎧᏅᏂᏍᎩ. ᎠᎴ ᎠᏍᎩᎾ ᎯᎠ ᏁᏪᏎᎴᎢ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᏱᏕᎬᏲᎯᏏ, ᎠᎴ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎠᏴᏰᏃ ᏛᎩᏲᎯᏎᎸ, ᎠᎴ ᎩᎶ ᏥᎥᏏ ᎨᎳ ᏥᏁᎰᎢ. ᎤᎾᏨᏓᎵ ᎠᏎ ᎢᎪᎯᏓ ᎠᎬᏱ ᏗᏫᏍᏗ ᎨᏐᎢ. ᎢᏳᏰᏃ ᎾᏍᏉ ᎤᏟ ᎢᎦᎢ ᏯᏆᏢᏈᏍᏔᏅ ᏄᏍᏛ ᎣᎦᏒᎦᎸᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏦᎩᏁᎸ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎥᏝᏃ ᎡᎳᏗ ᎢᏰᏨᏁᏙᏗ ᎨᏒᎢ, ᎥᏝ ᏱᎦᎦᏕᎣᏍᎦ. “ᎮᏂᎵ ᎤᎵᏲᏗ,” ᎤᏛᏁᎢ ᎡᏝᏪᎯ. ᎾᎯᏳᏉᏃ ᎢᎦ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎤᏂᎷᏤ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎯᏄᎪᎢ, ᎠᎴ ᎭᏓᏅᎾ ᎠᏂ; ᎡᎶᏛ ᎾᏏ ᎤᏚ-Ꮅ ᏣᎯᏍᏗᏱ. ᎨᏍᏗ ᎤᏨᏉᏗ ᏱᎩ ᏃᎴ ᎦᏙ ᎾᎥᏂ ᏄᏛᏃ.” ᏔᎵᎭᏉ ᎢᏳᏒᎯ ᏂᎦᎥᎢ ᏁᎳᎩ ᎤᏪᎵᏍᏗ ᎨᏎᏍᏗ ᏃᎴ ᎤᎴᏅᏗ ᎨᏎᏍᏗ ᎤᏬᏒᏗ ᏧᏪᏥ ᏧᎶᏙᏗ. ᎯᎠ ᎢᏳᏪᏅᏍᏗ ᎤᏤᎵ ᎨᏎᎢ ᎤᏓᏔᎶᏒᎢ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎪᎢᏳᎲᏍᎦ, ᏣᎬᏫᏳᎯ; ᎤᏓᏙᎵᏍᏓᏁᎸᎩᏃ. ᎾᏍᎩ ᏗᎬᏩᏁᏲᏗ ᏱᎩ ᎠᏂᏫᎾᎨᏌᏂ ᎠᏂᎨᏴ ᎤᎾᎵᏏᎾᎯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᏧᏂᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏗᎬᏩᏂᏰᎯ, ᏧᏂᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏁᏥ, ᎾᏍᎩ ᎣᏏ ᎬᏰᎸᏗ ᎨᏥᏓᏍᏗ ᏱᎩ ᎠᏂᎦᏔᎲ ᎾᏍᎩ ᎠᏁᎳ ᏂᎨᏒᎾ, ᎠᎴ ᎪᎱᏍᏗ ᏂᏥᏂᎬᏎᎲᎾ ᏱᎩ. ᎧᏁᎬᏃ ᎠᏆᏛᎦᏅᎩ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏔᎴᎲᎦ ᏈᏓ, ᎯᎷᎦ ᎠᎴ ᎭᎵᏍᏓᏴᎲᎦ. ᎾᏍᎩᏃ ᎯᎠ ᏂᏕᎦᏪᏎᎮᎢ, ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᎵᏂᎩᏛ ᎬᏩᏅᏫᏍᏗᏍᎨᎢ, ᎠᎴ ᎬᏩᏂᎳᏕᎮ ᎤᎪᏗᏗ ᏧᏓᎴᏅᏛ ᎤᏃᎮᏍᏗᏱ; ᎤᏛᏛᏁᏃ ᎤᏙᏓ, ᎢᏔᎪ ᏂᎪᎯᎩ ᎾᏍᎩ ᎯᎠ ᎢᎬᏩᎵᏍᏓᏁᎸᎯ? ᎤᏬᏎᎴᎢ. ᎠᏲᎵᏉ ᎨᏒᎢ, ᎤᏛᏁᎢ; ᎦᏲᏟᏉ ᎠᏓᏂᎴᎨ ᎨᏒ ᎠᏌᎻᏓ, ᏂᏄᎾᏕᏘᏴᎲ ᎠᏂᏧᏣ, ᎠᏎᏃ ᎠᏁᎸᏗᏍᎬ ᎤᏤᎸᏗ ᎤᏬᎯᏳᎲ ᎢᏳᏍᏗ ᎾᏛᏁᎲ. ᎠᎴ ᎤᏂᏃᎮᎴ ᏄᎵᏍᏔᏂᏙᎸ ᎠᎾᎢᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏃᎵᏍᏔᏅ ᎦᏚ ᎠᎬᎭᎷᏯᏍᎬᎢ. ᎥᏝ ᎠᏂ ᏱᎦᎾ, ᏚᎴᏅᏰᏃ; ᎢᏣᏅᏓᏓ ᏂᏥᏪᏎᎸᎢ ᎠᏏᏉ ᎨᎵᎵ ᏤᏙᎲᎩ, ᎨᏍᏗ ᎯᎸ ᎤᏲᏨ ᏱᎨᏎᎢ ᎤᏩᏌ ᎤᏬᏒᏅ. ᎤᏂᏣᏖᏰᏃ ᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᎬᏩᏡᏗᏍᎨᎢ, ᎠᏎᏃ ᎠᏂᏃᎮᏍᎬ ᎥᏝ ᎤᏠᏱ ᏱᎨᏎᎢ. ᎦᏨ ᎢᏤᎦ? “ᎨᏍᏗ ᏥᎠᎴᏂ ᏱᎩ.” ᎠᏎᏃ ᎠᏂᏧᏏ ᎥᏝ ᏯᏃᎯᏳᎲᏍᎨ ᏗᎨᏫ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏒ ᎠᎴ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎢ, ᎬᏂ ᏫᏚᏂᏯᏅᎲ ᏧᎦᏴᎵᎨ ᎾᏍᎩ Ꮎ ᎬᏩᎪᏩᏛᏗ ᎢᏳᎵᏍᏓᏁᎸᎯ. ᏧᏁᎵᏁ ᎢᎦ ᎥᎩᎱᏍᏕᏎᎸᎩ, ᎢᏏᎵ ᎤᎾᏓᏤᎵᏛ ᎨᏒ ᏅᏛᏆᏓᎴᏅᎯ, ᏇᏂ ᎠᏂᎳᏍᏓᎸ ᎨᎳ, ᏥᏈᎷ ᎠᏂᏈᎷ ᏅᏛᏆᏓᎴᏅᎯ; ᏗᎧᎿᏩᏛᏍᏗᏃ ᏕᏥᎧᎿᏩᏗᏒ ᏥᏆᎵᏏ; ᎾᎿᏃ ᎣᏓᎷᎶᏗ ᎤᏂᏣᏘ ᏑᎾᏓᏡᎩ ᏏᏆ ᎠᎾᎵᏍᏓᏴᏂᏙᎮᎢ. ᎤᏄᎪᏤᏃ ᏈᏓ, ᎠᎴ ᎡᎯᏍᏗ ᏚᏠᏱᎴᎢ “ᏙᎤᏍᏗ ᎦᏛᏁᎵᏍᎩ ᎮᎵᎠ?” ᎤᏛᏁ ᏌᎳᏓ ᎤᏲ ᎤᏰᎸᎯ. ᎬᏂᏳᏉᏃ ᎢᎦᏛ ᏗᏃᏪᎵᏍᎩ ᎯᎠ ᏄᏂᏪᏎ ᏚᎾᏓᏅᏛᎢ; ᎯᎠ ᎠᏍᎦᏯ ᎦᎸᎳᏗ ᎡᎯ ᎠᏐᏢᎢᏍᏗᎭ. ᏔᎵᏁᏃ ᎤᏓᏱᎴᎢ, ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏔᏁᎢ; Ꮭ ᏱᏥᎦᏔᎭ Ꮎ ᎠᏍᎦᏯ, ᎤᏛᏁᎢ. ᏅᏩᏙᎯᏯᏛ ᏕᏥᎧᎿᏩᏗᏎᏍᏗ ᎾᏂᎥᏉ ᎪᎱᏍᏗ ᏕᏣᏓᏛᏗᏍᎬᎢ, ᎠᎴ ᎾᏍᎦᏅᎾ ᎨᏒᎢ, ᎧᏂᎩᏛ ᏱᎩ ᎾᏍᎩ, ᎥᏝ ᎩᎶ ᏰᎵ ᎤᎬᏫᏳᎯ ᎬᏩᎪᏩᏛᏗ ᏱᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎩᏯᏅᎲ ᎦᏓᎭ ᎢᎦᎵᏍᏙᏗᏱ ᎢᎦᏓᏅᎦᎸᏛᏍᎩᏂ ᎢᎦᎵᏍᏙᏗᏱ. ᏲᎾ ᎤᏤᏍᏙ ᎠᏓᎴᏍᎩᏱᏍᎩ ᏗᏥᎶᏍᏔᏅ ᏗᏁᎶᏙᏗ ᎦᏁᎮ ᏃᎴ ᎤᎦᎾᏍᏓ ᏎᎷ ᎠᎾᏔᏍᎩᏍᎩ ᏓᎩᏍᎨ. ᏝᏍᎪ ᎾᏍᏉ ᏂᎯ ᎦᎯᏯᏙᎵᏍᏗ ᏱᎨᏎ ᎢᏧᎳᎭ ᎡᏍᏗᏅᏏᏓᏍᏗ, ᎾᏍᎩᏯ ᎬᏯᏙᎵᏨᎢ? ᎨᏍᏗ ᏳᏂᎬᎦ ᎤᏍᏓᎦᏴᎯᏓ ᎪᏪᎵ, ᏱᏥᏃᎯᏏ ᏣᎷᏨ. ᎿᏉ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ, ᎭᏢ ᏣᏙᏓ? ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏴ ᏱᏍᎩᎦᏔᎭ, ᎠᎴ ᎥᏝ ᏰᏥᎦᏔᎭ ᎡᏙᏓ. ᎢᏳᏃ ᎠᏴ ᏱᏍᎩᎦᏔᎮᎢ, ᎾᏍᏉ ᏰᏥᎦᏔᎮ ᎡᏙᏓ. ᎠᎩᏃᎮᎵᏍᏗᏱ ᎠᏕᏘᏱᏍᎬ ᏱᎰᏩ ᏧᏓᏂᎸᎢᏍᏗ ᎨᏒᎢ. ᎠᏴᏰᏃ ᎾᏍᎩ ᎠᏰᎸ ᏕᎦᏚᏓᏔ, ᎾᏍᎩ ᎤᏇᏓᎸ ᎠᎴ ᎾᏍᎩ ᏧᎪᎳ. ᎡᏆ ᎨᏎ ᏩᎦ ᏃᎴ ᏐᏈᎵ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏃᎴ ᎤᏪᏘ ᎨᏎ. ᎤᏢᏗ ᏧᏚᎵᏍᎪ ᎠᎴ ᎤᏗᏔᏍᏗ. “ᎡᏙᏓ, ᎠᏯ ᏍᏉ ᎠᏆᏚᎵ ᏏᏆ?” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎠᎴ ᎾᎯᏳ ᎢᎦ ᏂᏓᏍᏆᎳᏅᎾ ᏱᎩ, ᎥᏝ ᎤᏇᏓᎵ ᎦᏰᏥᏍᏕᎸᏗ ᏱᎦᎩ; ᎠᏎᏃ ᎨᎦᏑᏰᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᎯᏳ ᎢᎦ ᏗᏍᏆᎶᏗ ᎨᏎᏍᏗ ᎩᎶ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎦᏲᎵ ᎨᏒᎢ, ᎾᏍᏉ ᏚᏳᎪᏛ ᎾᏛᏁᎰ ᎤᎪᏗᏗ ᎨᏒᎢ; ᏂᏚᏳᎪᏛᎾᏃ ᎢᏯᏛᏁᎯ ᎤᏍᏗ ᎨᏒ, ᎾᏍᏉ ᏂᏚᏳᎪᏛᎾ ᎾᏛᏁᎰ ᎤᎪᏗᏗ ᎨᏒᎢ. ᎿᏉᏃ ᎡᎪᎢ, ᎠᎴ ᏫᏓᏯᏂᏍᎪ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᏅᏩᎾᏓᎴ ᎤᏟ ᎢᏳᏂᏁᎫᏥᏛ ᎡᏍᎦᏉ ᎤᏩᏒ; ᎾᏍᎩᏃ ᎠᏂᏴᎯᎰ ᎠᎴ ᎾᎿ ᎠᎾᏁᎳᏗᏍᎪᎢ; ᎣᏂᏱᏃ ᏄᏍᏛ Ꮎ ᎠᏍᎦᏯ ᎤᏟ ᎤᏲᎢᏳ ᎨᏐᎢ ᎡᏍᎦᏉ ᎢᎬᏱᏱ. “ᏂᎦᏓ ᎨᏍᏗ ᎣᏍᏓ ᎣᏥᏰᎸᎯ ᏱᎩ.” ᏥᏳᎪᏗ ᎨᏒ, ᎨᏍᏗ ᏱᎪᎵᎦ ᎢᏳᏍᏗ ᏄᎵᏍᎨᏗᏴ ᎯᎠ ᎦᏙ ᏃᎴ ᎠᏁᎯ, ᎤᏂᏁᎦ ᎠᎴ ᎠᏂᎩᎦᎨ. ᏞᏍᏗ ᏣᏍᏆᏂᎪᏒᎩ ᎠᏎ ᏔᎵᏁ ᎢᏣᏕᏗ, ᏥᎬᏲᏏ. ᎤᎸᏉᏗᏰᏃ, ᎾᏍᎩᏯ ᏥᏗᎸᏉᏗ. ᏓᏥᏃᎯᏎᎵ ᏄᏍᏛ ᏄᏩᎾᏕᎬᎢ ᏏᏆ ᏃᎴ ᏂᎦᏓ. ᏗᏥᏲᎵ, ᏕᏤᏯᏙᎮᏍᏗ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ. ᎡᎺᏅ. ᎢᏳᏃ ᏱᏗᎦᏔᎭ ᎢᎦᏛᏁᎲᎢ, ᏂᎦᎥ ᎪᎱᏍᏗ ᎡᏗᏔᏲᏏ ᎢᏗᎦᏔᎰ ᎢᎩᏁᎲ ᎢᏳᏍᏗ ᎡᏗᏔᏲᏎᎸᎢ. Granville Towers ᎢᏗᏣ ᎣᎨᏅᏒᎢ. ᏬᎩᎷᏨ ᎤᎾᎵᏱ ᏍᏚᏓ ᎾᎥ ᎦᏙᎬᎢ. ᎣᎦᏤᎵ ᎦᏙ ᎨᏍᏗ ᎠᏰᎵ ᏱᎨᏎ, ᎠᎹᏰᎵᏰᏃ. “ᎤᎸᏓᎸᎥᎦ,” ᎤᏛᏁ ᎰᎻ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᎿᏉ ᎡᏣᎾᏝᎢ ᏱᎩ, ᎤᏪᏥᏉᏍᎩᏂ; ᎠᎴ ᎢᏳ ᎤᏪᏥ ᏱᎩ, ᎿᏉ ᏧᎬᏩᎶᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒ ᏣᏘᏰᎯ, ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏅᎯ. ᏗᏣᏓᏲᏁᎯ ᎢᏥᏍᎦᏯ ᎠᎴ ᎢᏥᎨᏴ, ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎡᎶᎯ ᎤᎾᎵᎢ ᎨᏒᎢ ᎤᏁᎳᏅᎯ ᎠᏍᎦᎩ ᎨᏒᎢ? ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏳᏃ ᎩᎶ ᎡᎶᎯ ᎤᎾᎵᎢ ᎢᏳᎵᏍᏙᏗᏱ ᏯᏓᏅᏖᎭ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏍᎦᎩ ᎨᏐᎢ. ᏂᎦᏓ ᎢᏥᏳᏩᏁᎦ ᎯᏌᎵᏥᏆᏍᎪ ᎤᏩᏙᎯᏴᏓ. ᎯᎠᏃ ᎡᏘᏴ ᎫᏩᎵᏬᏨ ᏧᎬ. ᎤᏃᏚ ᏅᎩ ᏗᏂᏅᏌᏗ ᏂᏚᏩᏁᎸ ᏕᎧᏃᎮᏍᎬ, ᎠᎦᏴᎵ ᎣᎯᏍᏙᏗ ᎡᎶ ᎤᎾᏕᏅ, ᏔᎵᏁ ᎤᎷᎯᏍᏗ ᏱᎨᏒᎾ. ᏝᏍᎪ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ ᎠᏉᏢᏅᎯ ᏱᎩ ᎯᎠ ᏂᎦᏛ ᏥᏄᏍᏗᏓᎾ? ᎤᎧᏔ ᏗᏣᏲᎦ! ᎰᏩᏃ ᎿᏉ ᎤᏲᎱᏒ ᏕᎤᎴᏅ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏅᏓᏛᎩ ᎾᏍᎩ ᏂᏚᏪᏎᎸᎢ; ᎠᎴ ᎤᏃᎯᏳᏅᎩ ᎪᏪᎵ ᎠᎴ ᎾᏍᎩ ᏥᏌ ᎤᏁᏨᎢ. ᎿᏉ ᏓᏣᎴᏅᎯ ᎯᎠ ᏅᏓᏥᏪᏏ, ᎣᎦᎵᏍᏓᏴᏅᎩ ᎠᎴ ᎣᎦᏗᏔᎲᎩ ᎯᏚᏔᎲᎢ, ᎠᎴ ᏕᏣᏕᏲᏅᎩ ᎣᎩᏚᎲ ᎡᏓᏍᏗᏱ Ꮥ-ᎦᎳᏅᏛᎢ. ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᎪᎢ ᎠᏁᎸᎩ ᎤᎾᎵᏙᎵᏍᏔᏂᎸᎯ ᏗᎵᏍᏓᏴᏗᏱ. ᎾᏍᎩ ᏇᏗᏂᏃ ᎦᏚᎲ ᏥᎷᏏᎵᎻ ᎾᎥ ᎨᏒᎩ, ᏔᎵᎭᏉ ᎢᏳᏟᎶᏛ. “ᎣᏏᏉᏗ ᏄᏍᏗ,” ᎤᏛᏁ ᎰᎻ ᎬᏣᏗ, ᎡᎳᏗ ᎭᏂᏗᏍᎨ ᎧᏁᏌᎢ ᏫᎵᎻ ᎦᏙᎬ ᎠᎬᏱᏣ. ᎬᏂᏤᎭ ᏍᎩᏩᎯᏎᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᏥᎸᏱ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᏤᏅᎢᏍᏗᏱ; ᎠᎴ ᎤᏁᎬ ᎠᏄᏬ ᏣᏄᏬᏍᏗ, ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ; ᎠᎴ ᏘᎦᏙᎵ ᏗᏣᎶᏁᏙᏗᏱ ᏗᎦᏔ-ᏗᎦᎶᏁᏗ, ᎾᏍᎩ ᎨᏣᎪᏩᏛᏗ ᎢᏳ ᎵᏍᏙᏗᏱ. ᎠᏂᏥᎸᏍᎩ? ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏏᎩ ᎣᏍᏛ ᏥᏚᏁᏤᎴ ᏤᎦᏈ ᎠᎴ ᎢᏐ ᎪᎱᏍᏗ ᎠᏏ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎤᎬᏩᎵ. ᏂᎦᏛᏍᎪ ᎨᏥᏅᏏᏛ? ᏂᎦᏛᏍᎪ ᎠᎾᏙᎴᎰᏍᎩ? ᏂᎦᏛᏍᎪ ᏗᎾᏕᏲᎲᏍᎩ? ᏂᎦᏛᏍᎪ ᎤᏍᏆᏂᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ? ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏙᎩᎢᎭ ᏂᎪᎯᎸᎢ; ᎤᏂᏃᏕᎾᏉ ᏗᎯᏍᏗ ᎾᏍᎩᏯ ᎣᎩᏰᎸᎠ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎣᎬᎾᏖᏉᎶᎯ ᏍᏇᎵᏎᎮᏍᏗ, ᏕᎯᏯᏓᏂᎸᏨᎭ ᎠᏴ ᏥᏕᏍᏆᏓᏂᎸᎪ ᎾᏍᎩᏯᎢ. ᎠᏂᎦᎵᏍᏓᏓᏰᏃ ᎠᏆᏓᏅᏙ, ᎠᎴ ᏂᎯ ᏗᏣᏓᏅᏙ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏥᎸᏉᏕᏍᏗᏉ ᎾᏍᎩ ᎢᏳᎾᏍᏗ. ᎠᎴᏬ, ᏥᎪ ᎣᏣᎵᏍᏕᎵ ᎢᏤᎵᎭ ᎢᏥᎦᏔᎲᎢ? ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎣᏥᏁᎦ ᎦᎶᏁᏛ ᏧᏪᏲᏅᎯ ᎾᏍᎩᏯᎢ; ᎠᏎᏃ ᎢᏨᎨᏳᎢ, ᏂᎦᎥ ᏂᎯ ᎢᏣᎵᏂᎯᏍᏙᏗ ᎤᎬᏩᎵ [ᎣᏥᏁᎦ.] ᎾᏍᎩ ᏓᏏᎾᏌᏅᏤᎮ ᎪᎱᏍᏗ ᏗᎬᎿ, ᎠᎴ ᎤᏲ ᏂᏚᏩᏁᎴ ᏗᎩᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏗᎨᎦᏓᎢᏅᏗᏱ ᏧᎾᏍᏗ ᏧᏁᏥ, ᏗᎬᏩᎾᏛᎯᏍᏗ ᏂᎨᏒᎾ ᎢᏳ ᎵᏍᏙᏗᏱ. ᎠᎴ ᎤᎾᏛᏓᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎠᏎᏉ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎠᎴ ᏫᎾᏍᏛᎾ ᎧᏃᎮᏗ ᎨᏒ ᎤᎾᏓᏁᏟᏴᏒᏒᎢ, ᎾᏍᎩ ᎦᏬᏂᎯᏍᏗᏉ ᏥᏩᎵᏱᎶᎯᎭ ᎥᏲᏃ ᎤᏁᎳᏅᎯ ᏗᏁᎳᏙᏗ ᎨᏒ ᎤᏛᎯᏍᏗᏱ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, [ᎾᏍᎩ ᎿᏛᏁᎸᎭ.] ᎪᎯᎢᏴ, ᏩᎩᎷᏨ, Ꮒ ᎠᏇᏥ ᎠᏧᏣ. ᎠᏆᎴᏅ ᏕᎦᏎᎯᎲ, ᎨᏍᏗ ᏯᏆᎴᏫᏍᏔᎾ-ᏄᏓᎴ ᎠᏆᏓᏅᏖᏗ ᏱᎨᏒᎾ.” ᎩᎶᏃ ᎢᎳᏯ ᎦᎾᏄᎪᎩ ᎠᎾᏗᏍᎬᎢ; ᎢᎦᏛᏃ ᎩᎶ ᎢᏳᏍᏗ ᎢᎸᎯᏳ ᏣᏁᎮ ᎠᎾᏙᎴᎰᏍᎩ ᏚᎴᎯᏌᏅ ᎠᎾᏗᏍᎬᎢ. ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᏂᎦᏛ ᏗᏓᏅᏙ ᎨᏥᏅᏏᏛ ᏧᏂᏍᏕᎸᎯᏓᏍᏗᏱ ᎾᏍᎩ Ꮎ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏥᎩ? ᎤᎶᎩᎸᏃ ᎤᏄᏢᏔᏁᎢ; ᎧᏁᎬᏃ ᎤᎶᎩᎸ ᏧᎾᏄᎪᏤᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏥᎨᏳᎢ ᎠᏇᏥ; ᎾᏍᎩ ᎡᏣᏛᏓᏍᏓᏏ. ᎿᏉᏃ ᏥᏌ ᎤᎴᏅᎲᎩ ᏚᏃᏁᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏎ ᎤᏪᏅᏍᏗᏱ ᎨᏒ ᏥᎷᏏᎵᎻ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏧᎩᎵᏲᏤᏗᏱ ᏗᏂᎳᏫᎩ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ; ᎠᎴ ᎠᏥᎢᏍᏗᏱ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏧᎴᏗᏱ. ᏍᏓᏯ ᎦᏟᎲ ᎠᏥᏰᎢᏍᏔᏁ ᏥᏍᏕᏥ, ᎤᏯᏃᏒ ᏃᎴ ᎤᏂᎦᎸ ᎢᏳᏍᏗ ᎨᏎ ᏗᎧᏃᏗ. ᏫᏥᎢᎦ ᎨᏒ ᎤᎾᏓᏕᏯᏙᏗ ᏛᎦ. ᎣᏏᏳ ᎢᏣᏙᎩᏯᏍᎬᎩ; ᎦᎪ ᎢᏥᏲᏍᏙᏓᏁᎴ, ᎾᏍᎩ ᏗᎨᏥᎧᎿᏩᏛᏍᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ ᎤᏙᎯᏳᎯ ᎨᏒᎢ? ”ᏤᏍᏗ ᏱᏣᎦᏎᏍᏔᏁᏍᏗ ᏍᎩᎾᎾᏂ---ᏂᏥᏪᏍᎬ ᎾᏛᏁᎸ! ᎤᎵᏍᏔᏴᏗ ᎦᎵᏙᏗ ᏭᎷᏤᎢ, ᎤᏗᏔᎮ ᎦᏁᎲ, ᎤᏲᏏᏍᎩ ᎤᏗᏔᎮ ᎤᏅᏗ ᏃᎴ ᎤᎩᏍᏙᎡ ᏑᎾᎴ ᎠᎩᏍᏗ ᎤᏂᏑᎸᏓ. ᏂᎦᏓ ᏧᏤᎵ ᏌᎳᏓ ᏧᏂᏍᏗ ᎠᎾᎵᏛᏗᏍᎨᎢ ᎦᏣᏄᎳ. ᎠᎴ ᎾᏂᎥ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏓᏂᏙᎨ ᏚᏂᎸᏫᏍᏓᏁᎮ ᏂᏓᏙᏓᏈᏒᎢ, ᎠᎴ ᏂᎪᎯᎸ ᎤᏠᏱᏉ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ ᏧᎾᎵᏍᎪᎸᏗᏍᎨᎢ, ᎾᏍᎩ ᎠᏍᎦᏂ ᎨᏒ ᎢᎸᎯᏳ ᏰᎵ ᎬᏩᎲᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏣᏁᎳ ᏐᏁᎳ ᏩᏍᏗ, ᏙᏱᏨ ᎠᎦᎵᏍᎬ ᎤᏢᏅᏍᏗ ᎤᏪᎵᏎ. ᎯᎠᏃ ᎾᏆᎵᏍᏓᏁᎸ ᏥᎷᏏᎵᎻ ᎢᎠᎩᎷᏨ, ᎾᏍᎩ ᎦᏓᏙᎵᏍᏗᏍᎬ ᎤᏛᏅ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏣᎦᎵᎰ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏓᏁᎸᎩ; ᏚᎴᏫᏍᏔᏁᎴ. ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᎣᏂᎦᏔᎲ ᎣᏥᏁᎪᎢ, ᎠᎴ ᎣᎩᎪᎲᎯ ᎣᏥᏃᎮᏍᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏗᏣᏓᏂᎸᎪ ᎣᏥᏃᎮᏍᎬᎢ. ᏅᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᏍᎩ ᎢᏳᎾᎩᎳᎾᎳ ᏩᎦ ᏓᎩᏩᏒ, ᎠᎴ ᏕᏚᏁᎶᏔᏂ; ᎬᏔᏲᏎ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ. ᎾᏍᎩᏃ ᏂᎦᏛᏁᎲᎢ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏧᏏ ᎡᏏᏱ ᎠᏁᎯ ᎬᎩᏩᏛᎲᎩ ᎠᏆᏓᏅᎦᎵᏌᏛ ᎨᏒᎩ ᏥᏯᎥᎩ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ, ᎥᏝ ᏱᎨᎳᏗᏙᎮ ᎤᏂᏣᏘ ᎠᏁᏙᎲᎢ, ᎠᎴ ᎤᎾᏓᏑᏰᏛ ᎨᏒᎢ; ᏄᏛᏅᏓᎩᏎ ᎠᏯᏖᎾ. ᏦᎾᏰᏃ ᏦᎢ ᎢᎦ ᎠᎴ ᏦᎢ ᏒᏃᏱ ᎠᏣᏗ ᎡᏆ ᎤᏍᏉᎵᏱ ᏣᏯᏒᎢ, ᎾᏍᏉᏍᎩᏂ ᏴᏫ ᎤᏪᏥ ᏦᎢ ᎢᎦ ᎠᎴ ᏦᎢ ᏒᏃᏱ ᎦᏙᎯ ᎭᏫᏂ ᎠᏯᎡᏍᏗ. ᏥᏧᏣ ᏥᎨᏒ ᎠᏋᏌ ᎭᏂ ᎡᎶ, ᎣᎯᏍᏙᏗ ᏥᎸᏍᎬ ᏅᏙ ᏥᏗᎧᎸᎪᎢ, ᏧᎨᎯᏙᏃ ᎤᏍᎦᏎᏗ ᎤᏓᏓᏍᎩᏌᏅ ᎤᎵᏏᎬ. ᎤᎾᏓᏓᏍᎬ ᎤᎾᎵᏗᎩᏛ ᏍᏔᏯ ᎠᏁᎲ ᏃᎴ ᎤᏂᏂᎩᏛ, ᎠᎪᎾ ᏚᏂᏲᏏᏍᎬ ᏃᎴ ᏳᏂᏚᎬᎾ, ᎠᏎᏃ ᎤᎾᎵᎪᎲ ᎤᏰᎸᏛᎢ. ᎤᎬᏫᏳᎯᏃ ᎤᎪᎲ ᎤᏪᏙᎵᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏞᏍᏗ ᏗᏣᏠᏱᎸᎩ. ᏑᎹᏂᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎢᎬᏱᏱ ᎠᎴ ᎤᎵᏍᏆᎸᏗ, ᎾᏍᎩ Ꮎ ᎤᏲᎱᏒᎯ ᏥᎨᏒ ᎠᎴ ᎾᏍᎩ ᏤᎭ. ᎣᏍᏓ ᎠᎩᏰᎸᎰ ᎦᎸᎳᏗ ᎨᎥᎢ, ᏃᎴ ᏂᏪᏍᎬ ᎠᎩᎪᎵᏰᎠ.” ᏞᏍᏗ ᎩᎶ ᎤᏩᏒ ᏥᎠᏓᎵᏓᏍᏔᏂ. ᎢᏳᏃ ᎩᎶ ᏂᎯ ᎢᏤᎲᎢ ᎠᎦᏔᎿᎢ ᏱᏅᏩᏍᏗ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎫ ᏫᏂᎦᎵᏍᏓ, ᎾᏍᎩ ᎠᎦᏔᎿᎢ ᎢᏳᎵᏍᏙᏗᏱ. ᎤᏙᎯᏳᏗᏱ ᎠᏙᎴᎰᏍᎩ ᎢᏌᏯ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎯᎠ ᎾᏍᎩ ᎪᏪᎸ ᎠᎪᎵᏰᏍᎨᎢ; ᎠᎦᏘᏃᎸᎩ ᎠᏫ ᎤᏃᏕᎾ ᎾᏍᎩᏯ ᏗᎯᏍᏗᏱ, ᎠᎴ ᎾᏍᎩᏯ ᎠᎩᎾ ᎠᏫ ᎡᎳᏪ ᏥᎨᏐ ᎬᏩᏍᏰᏍᎩ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩᏯ ᎥᏝ ᏳᏍᏚᎢᏎ ᎠᎰᎵ. ᏐᏉ ᎢᏳᏩᎫᏗ ᏣᎵ ᏃᎴ ᏍᏗᏫ ᎠᎵᏍᏓᏴᏗ ᎤᏂᏓᎾᏂᎩᏒᏎᎢ. ᎥᏝ ᏃᎩᎲᎾ ᎨᏒ [ᏅᏩᏓᎴ ᎢᏲᎦᏛᏁᏗᏱ] ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᏗᏣᏟᎶᏍᏙᏗᏍᎩᏂ ᏃᏣᏓᏛᏁᎲ ᎠᏴ ᏍᎩᏍᏓᏩᏛᏍᏗᏱ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ. ᎩᎶ ᎦᎵᎷᎨᏍᏗ ᎾᏍᎩ ᏩᏛᎬᎦ. ᎾᏍᎩ ᎫᏓᎴᏅᏛ ᏍᎩᏯᏕᎶᏆᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏗᏍᎩᏯᏓᏂᎸᏤᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏍᎩᏯᏛᎦᏁᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏍᎩᎪᎡᎸᎯ ᎨᏒᎢ, ᏂᏣᏛᏁᎮᏍᏗ; ᎤᏁᎳᏅᎯᏃ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏗᏥᎧᎿᏩᏗᏓᏍᏗ ᎨᏎᏍᏗ. ᏣᎬᏫᏳᎯ ᎡᎩᎵᏉ, ᎦᎵᎡᎵᎦ ᎪᎯ ᎢᎦ ᏥᎩ ᎯᎦᏔᎲ ᎦᎵᏍᏕᎵᏍᎬ ᏨᏓᏥᏁᎢᏍᏔᏂ ᏂᎦᎥ ᎬᏇᎯᏍᏗᏍᎬᎢ ᎠᏂᏧᏏ. ᎠᎴ ᎤᏂᏣᏛ ᎠᏂᏧᏏ ᎬᏩᏂᎷᏤᎸᎩ ᎹᏗ ᎠᎴ ᎺᎵ ᎬᏩᏂᏄᏬᎯᏍᏔᏂᎸᎩ ᎤᏂᏙ ᎤᏲᎱᏒ ᎢᏳᏍᏗ. ”ᎭᏩᏃ,” ᎤᏛᏁ ᏫᎵᎻ. ᎤᏂᎸᏉᏗ ᎨᏒ ᎤᏂᏆᏂᏲᏍᏗ, ᎤᎵᏨᏓᏆ ᎠᏂᏆᏂᏲᎯᎲ ᏧᎾᏦᎯᏍᏗ ᏃᎴ ᎠᏕᎳ ᏓᏂᏍᏕᏓᎵᏱᏙᎲ. ᎠᏂᏩᏥᏂ ᎠᏁᎵᏍᎬ, ᎤᎬᏫᏳ Ross ᏃᎴ ᎠᏂRidges ᎤᏂᏲ ᎠᏂᏴᏫᏯ ᏃᎴ ᎨᏍᏗ ᏗᎬᏟᏃᎮᏙᏗᏱᎩ. ᎨᏍᏗ ᏱᎪᎵᎦ, ᏃᎴ ᎨᏍᏗ ᎣᏍᏓ ᏯᎩᏰᎸᎰ ᏱᎪᎵᎬᎾ ᏱᎩ ᎪᎱᏍᏗ.” ᎾᏍᎩ ᎿᏉ ᎤᏕᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎪᎯᎸ ᎤᏇᏓᎸ ᎢᎪᎯᏛ ᎤᎴᏂᏓᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏴᏫ ᎤᎾᏚᎸᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ. ᎠᏂᎨᏯ ᏃᎴ ᏧᏂᏍᏗ ᏗᏂᏲᏟ ᎤᎾᎵᎪ ᎠᏂᏙᎾᎥ, ᎤᎵᏗᏨ ᎠᏂᏔᎵ ᎠᏂᏫᎾ ᎠᏂᏲᏍᎩ ᏚᎾᎦᏎᏍᏛ. ᎦᏙᏃ? ᎢᏗᏍᎦᏅᎨᏍᏗᏍᎪ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏂᎦᏓᏄᏴᏛᎾ ᎨᏒᎢ, ᎬᏩᎦᏘᏯᏍᎩᏂ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏓᏄᏴᏛᎢ? ᎬᏩᏟᏍᏗ. ᎤᏬᏗᎨ ᎤᎵᏏᎩ ᎨᏎᎢ ᏃᎴ ᏌᏬᏚ ᎤᏓᏅᎵᏰᏓ ᏄᏍᏕᎢ. ᏌᏩᏂᏃ ᏈᏓ ᎾᏍᎩ ᎤᎵᏍᎫᏫᏎᎸᎩ ᎤᏛᏛᏗᏱ ᎾᏍᎩ ᎨᏒᎢ ᎦᏛᎬᎢ. ᎤᏂᏣᏘᏃ ᏫᏚᎪᎲ ᎤᏌᎯᎸ ᎤᎿᎷᏎᎢ, ᎤᏪᏅᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᎷᏤᎴᎢ. ᎥᏝ ᎠᎴ ᏴᏫ ᎪᎩᎸᏉᏙᏗᏱ ᏲᎩᏲᎮᎢ, ᎥᏝ ᏂᎯ ᏱᏨᏲᏎᎮᎢ, ᎥᏝ ᎠᎴ ᏅᏩᎾᏓᎴᎢ; ᏰᎵᏉ ᎡᎦᏃ ᎦᎨᏛ ᎢᏗᎦᏲᏨᏁᏗ ᎨᏒᎩ, ᎦᎶᏁᏛ ᎣᎩᏅᏏᏛ ᎨᏒ ᎢᏳᏍᏗ. ᏚᎧᎾᎾ, ᏌᎪᏂᎨᎢ ᎦᎸᎶᎢ ᎤᎪᎮ ᏃᎴ ᎦᎶᎯᏍᏗ ᎭᏫᏂ ᏭᎵᏖᎸᏂᎴᎢ. ᎢᎦᏓᏃ, ᎤᏙᎯᏳ ᎠᏂᏴᏫ ᏄᎾᏍᏛ ᏃᎴ ᎤᏲ ᎤᎾᏓᏅᏛ ᏄᏍᏛ ᎾᎾᏛᏁᎲ. ᏚᎾᏓᏒ ᎤᏂᎨᎲᏎ, ᏃᏉ ᎤᎾᏍᎪᏎ ᎠᏔᎴᎦᏒ ᎤᏂᏌᏛᏗ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ, ᎾᏍᎩ ᎤᎩᎬ ᎢᎦᏚᏓᎴᏍᏔᏅᎯ ᏥᎩ, ᎤᏟᎯ ᎤᏙᎯᏳᎯᏯ ᎡᎩᏍᏕᎸᏗ ᎨᏎᏍᏗ ᎡᎫᏓᎴᏍᏗ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ. “ᎤᎦᏃᏩ ᎦᏃᎸᎥᏍᎬ ᏓᏲᏣᏂᎩᏏ. ᎾᏍᎩᏰᏃ ᏗᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒ ᏧᏤᎵᎦ ᎬᏂᎨᏒᎢᏳ ᏗᎬᎪᏩᏛᏗ ᎢᎩ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᏗᎦᎪᎵᏍᏙᏗ ᎢᎩ ᏧᏓᎴᏅᏛ ᏗᎪᏢᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏧᏓᎴᏅᎲᎾ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏳᏂᎭ ᏧᎾᏢᏫᏍᏙᏗ; ᎤᏂᏂᏴᏗᏱᏃ ᎤᎾᏓᏅᏖᎸ, ᎤᏂᏣᏘ ᏴᏫ ᏚᏂᏍᎦᎸᎩ, ᎾᏍᎩᏰᏃ ᎠᏙᎴᎰᏍᎩ ᎬᏩᏰᎸᏒᎩ. ᎢᏳᏉ ᎤᎾᏛᏁ ᎠᏤ ᎢᏳᏍᏗ ᎠᏍᎦᏯ, ᎤᏁᏝᏅ ᏃᎴ ᎬᏂᎨ ᎤᎩᎸᏗ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᎤᎩᏨᏛ ᏧᏂᎦᏐᎠᏒ ᎣᏓᎸᎢ, ᎤᏂᏣᏘ ᏴᏫ ᏕᎬᏩᏠᏎᎢ. ᎤᏣᏘᏃ ᎤᏂᏍᎦᎴᎢ, ᎠᎴ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᏉᏰᏃ ᎤᏃᎴ ᎠᎴ ᎥᏓᎵ ᎢᎬᏬᎯᏳᎲᏍᎦ. ᏂᎦᏗᏳᏰᏃ ᎤᏂᏍᎦᏅᏨᎯ, ᎠᎴ ᎡᏍᎦ ᎤᏃᎭᏒ ᎤᏁᎳᏅᎯ ᎤᏓᎸᏉᏙᏗ ᎨᏒᎢ; “ᎦᏙᏃ ᏄᎵᏍᏔᏁᎢ?” ᎤᏛᏛᏁ ᎤᏥ, ᎤᏚᎵᏍᎬ ᎤᏕᎶᎰᎯᏍᏗ ᎤᎶᏒᏍᏓᏁᎴ. ᎠᎴ ᎦᎵᏉᎩ ᎦᏚ ᏅᎩᏃ ᎢᏯᎦᏴᎵ ᏥᎾᏂᎥᎩ, ᎠᎴ ᎢᏯᎧᎵᎢ ᏔᎳᏣ ᎢᏧᏖᏒᎢ? ᎢᎦᏛᏃ ᏅᏲᎯ ᎤᎳᎨᏯᏛᏤᎢ; ᏧᎵᏰᏅᏉᏃ ᎤᎿᏍᎬᏤ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏄᏬᏕᏫᏒᎾ ᎨᏒᎢ. ᎾᏍᎩ ᎯᎠ Ꮎ ᎠᏓᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏥᎧᏃᎮᎭ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᏬᏪᎳᏅᎯ ᏥᎩ, ᎠᎴ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᎧᏃᎮᏍᎬ ᎤᏙᎯᏳᎯᏯ ᎨᏒᎢ. ᎠᏫᏄᏣ ᎠᏂᏴᏫ ᏧᎦᏎᏍᏗᏕᎩ ᏙᎩᎾᏦᏒ. ”ᎠᏎᏃ ᏣᎾᏏᏗ ᏤᏅᏍᏗ ᎠᏆᏚᎵ ᎩᎳᏈᏴ.” ᎰᎻ ᎠᎦᏕ ᎠᎵᎮᎵᎨ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎨᏒ ᏗᏂᎧᎿᏩᏗᏐᎯ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎫᎫ ᏥᏓᏂᏰᎲᎩ, ᎤᎷᏨᎩ ᎠᎴ ᎠᏆᎵᏃᎮᏔᏅᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎡᎮᎾ; ᏓᎬᎾᏄᎪᏫᏎᎵ ᏄᏍᏛ ᏣᎫᎪᏓᏁᏗ ᎨᏒ ᎤᏣᏘ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎤᏣᏘ ᎠᎹ ᏚᏪᏴ ᏧᏬᎳ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏂᏣᏓᏅᏛᎾ, ᎪᎯᏉ ᎤᏒᎢ ᏣᏓᏅᏙ ᏓᏰᏣᏯᏅᏒᎵ; ᎦᎪᏃ ᎤᏤᎵ ᎨᏎᏍᏗ ᎾᏍᎩ ᏥᏣᏓᏁᎳᏅ. ᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎾᎥᏂ ᏄᏛᏅ ᎤᎾᎵᎢ. ᎾᏍᎩ ᏥᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏨᏰᎵᏎᏗᏱ ᏂᏥᎥᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎩᎾᏫᏱ ᎢᏨᏍᏆᏂᎪᏛᎢ; ᎾᏍᏉᏰᏃ ᎥᏆᎸᎢᏛ ᎨᏒᎢ, ᎠᎴ ᏥᏍᏕᎵᏍᎬ ᎠᎴ ᏥᏍᏓᏱᏗᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᎯ ᏂᏥᎥ ᎢᏤᎳᏗᏍᏗᎭ ᎬᏩᎦᏘᏯ ᎥᎩᏙᎵᎬᎢ. ᎾᏍᎩ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᎦᎪ ᎾᏍᎩ, ᏣᎬᏫᏳᎯ, ᎾᏍᎩ ᏥᏲᎢᏳᏗᏱ? ᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᏂᎦᏛ ᏔᎳᏚ ᎢᏴᏛ ᎾᏂᎥᎩ. ᏧᎭᎾᏬᎩ ᏕᎬᏅ ᎦᎶᏍᎨ ᎤᏴᏨ ᏧᎪᎸ ᏚᏦᏒ ᎢᏴ. ᎾᏍᎩᏃ ᎤᏪᎧᎲᏒ, ᏚᎾᏄᎪᏫᏎᎴ ᏕᏫ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᎾᏍᏉ ᏧᏁᎢᏍᏔᏁ ᎯᎠ ᏥᏁᏪᏎᎢ; ᏥᏩᏛᎲ ᏕᏫ ᏤᏏ ᎤᏪᏥ, ᎠᏍᎦᏯ ᎣᏍᏛ ᏥᏰᎸᎢ, ᎾᏍᎩ ᏅᏛᏛᏁᎵ ᏂᎦᎥ ᎦᏓᏅᏖᏍᎬᎢ. ᎾᎨ ᎢᏴ ᏏᏆ ᎠᏍᏚᏗ, ᎡᏝᏪᎯ ᏃᎴ ᎤᏩᏌ ᏌᎳᏓ, ᏂᎦᏓ ᎾᏂᏪᏍᎬ ᎠᏛᎩᏍᎨ ᏍᏓᏯ ᎦᏬᏂᏍᎩ. ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎣᏁ ᎠᏌᏅᏗ ᏓᏂᏙᎨ, ᎠᏦᏴ ᏚᏂᏂᏴᎮᎢ.” ᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎤᏂᏣᏘ ᎨᏒᎨᎳ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏯᏘᏃᎯᏏ ᎠᏇᏥ, ᎤᏩᎨᏫ ᎠᏓᏅᏙ ᎤᏪᎢ; ”ᏃᎴ ᏍᏉ, ᎦᎵᏉᎩ ᏂᏚᏓᏓᏍᎦ ᏗᏥᏅᏍᎨᏂ, ᏥᎧᏍᎨᏂ, ᎤᏇᏓᏢ ᏚᏦᎯᏍᏛ ᏥᎧᏍᎨᏂ, ᏦᎢᏁ ᏚᏦᎯᏍᏛ, ᏥᏂᎨᏂ, ᏅᎩᏁ ᏚᏦᎯᏍᏛ, ᎠᏆᎳᏏᏕᎾ ᏃᎴ ᎯᏍᎩᏁᎢ ᏚᏦᎯᏍᏛ. ᎨᏍᏗ ᎪᎰᏍᏗ ᎠᎬᏱ ᏯᎴᎲᏍᏗᏍᎨ ᎠᎫᏩᏌ ᎠᎫᏤᎵ ᏴᏫ ᎾᏍᎩᏯ ᎢᎾᎨ ᎡᎯ. ᏃᏗ ᏐᏉ ᎤᏃᏕᎾ ᏭᏃᎯᏎᎴ ᏩᎦ, ᏂᎪᎯᎸᎾ ᏂᎦᏓ ᎠᏂᎧᏔᎮᎢ ᎤᏂᏃᏕᎾ. ᎤᏁᎷᏁᎢ ᏌᏌ. ᏣᎵ ᏧᏤᎵ ᏴᏫ ᏭᏂᏴᎸ ᎤᎾᏗᏍᎦᎶᏗ, ᎤᏅᏌ ᎠᎾᏟᏃᎮᏍᎬ, ᏣᎵ, ᎶᏩᏂ ᏃᎴ ᏤᎩ ᏚᎾᎩᏝᏅ ᎠᏥᎸ ᎾᎥᏂ. ᎾᏍᎩᏰᏃ ᏂᏣᏛᏁᎲ ᎤᏣᏔᏅᎯ ᎡᏥᏁᏗ ᎨᏎᏍᏗ ᎢᏥᏴᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎤᎬᏫᏳᎯ ᏗᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ. ᏖᏲᎲᏍᎩ ᎨᏒ ᏄᎾᏓᏅᏛᎾ, ᏗᏂᏲᎵ ᏖᏲᎲᏍᎩ, ᎾᏍᎩ ᏣᏍᏆᏂᎪᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᏗᏟᎶᏍᏔᏅᎯ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎪᏪᎸᎢ. ᎦᏥᏯᏬᎢᎵᏴᏍᏓᏁᎲ ᎩᎶ ᎬᎩᎪᎵᏰᏍᎩ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ. ”ᏗᏣᏏᎳᏛᏙᏗ ᏕᏣᏂᎬᎦ, ᏃᎴ ᎨᏍᏗ ᏱᏏᏁᎭ. ᏂᏙᏣᎧᏂᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᏗᎬᎪᏩᏛᏗ ᏥᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᏗᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᏥᎩ; ᎾᏍᎩᏰᏃ ᏗᎬᎪᏩᏛᏗ ᏥᎩ ᏗᎦᎶᏐᎲᏍᎩ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏗᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᏥᎩ ᏗᎦᎶᏐᎲᏍᎩ ᏂᎨᏒᎾ. ᎨᏍᏗ ᏱᏓᏆᏁᎶᏃ ᏧᏪᏥ ᏱᏓᏆᏁᏍᎩᎳ. ᎨᏍᏗ ᎩᎶ ᎪᎱᏍᏗ ᏳᏛᎾ. ᎠᎴ ᎾᏍᏉ, ᎢᏓᎵᏅᏟ, ᎢᏨᏔᏲᏎᎭ, ᎠᎴ ᎢᏨᏍᏗᏰᏕᎭ, ᎤᎬᏫᏳᎯ ᏥᏌ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ Ꮎ ᏍᎩᏯᏛᎦᏁᎸᎯ ᏥᎩ ᎢᏣᏛᏁᏗᏱ ᎢᏤᏓᏍᏗᏱ ᎾᏍᎩ ᎣᏏᏳ ᎬᏩᏰᎸᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏂᏣᏛᏁᎲ ᎧᏁᏉᏥᏎᏍᏗᏉ. ᏙᎤᏍᏗ ᎢᎦ ᎨᏎᏍᏗ? ᎤᏪᎵᏎ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏣᏑᎵᎭ ᎣᎩᎾᏛᏅᎢᏍᏙᏗᏱ? ᏅᏩᏓᎴᏃ [ᏗᎧᎿᏩᏗᏙᎯ] ᎥᏥᏯᏛᎦᏁᎸᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᎠ ᏅᏓᏳᏪᏒᎩ, ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ, ᏣᎬᏫᏳᎯ ᏣᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᏣᎵᏂᎩᏛ, ᎣᏏᏳ ᎠᎴ ᏚᏳᎪᏛ ᏂᎯ ᏗᎫᎪᏙᏗ ᎨᏒᎢ. ᏧᏂᏯᏪᏨ ᏐᏈᎵ ᎠᎵ ᎤᏂᎴᏴᏒ ᎠᏒᎨ ᏃᎴ ᎤᎦᎾᏍᏓ ᏩᎦ ᎤᎾᏛᎸᏓ. ᎾᏍᎩ ᎢᏥᎪᏩᏛᏗᏱ ᏧᏓᎴᏅᏛ ᏓᏚᎴᎿᎥᎢ; ᎾᏍᎩ ᏂᏣᏠᎾᏍᏛᎾ ᎢᏣᎵᏍᏙᏗᏱ, ᎠᎴ ᏂᏣᏓᎿᏍᏆᎶᏍᏗᏍᎬᎾ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎠᎵᏱᎶᎸ ᎬᏗᏍᎩ; ᏂᎦᏓ ᎠᏂᏴᏫ ᎦᏚᏨ. ᎦᏅᏥᏙᎮ ᏃᎴ ᏚᏙᎨᏍᎨ. ᎬᏩᏁᏁᎴᏃ ᎤᏗᏔᏍᏗ ᎩᎦᎨᎠᏗᏔᏍᏗ ᎻᎳ ᎠᏑᎵ; ᎠᏎᏃ ᎥᏝ ᏳᏁᎩᏎᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ, ᎠᎴ ᏕᏥᏂᏴᏎᏍᏗ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᏄᏍᏛ ᎡᏤᏲᏅᎢ, ᎾᏍᏉ ᎦᏬᏂᏒᎯᏉ ᏱᎩ, ᎠᎴ ᏫᏨᏲᏪᎳᏁᎸᎯ ᏱᎩ. ᏥᏌᏃ ᎠᏥᏃᎮᏍᎬ ᎤᏛᎦᏅ, ᏚᏅᏎ ᏤᏙᎲ ᏗᏂᎳᏫᎩ ᎠᏂᏧᏏ ᏧᎾᏤᎵᎦ, ᏭᏔᏲᏎᎮ ᏅᏓᏳᏪᏅᏍᏗᏱ ᎤᏅᏬᏗᏱ ᎤᏅᏏᏗᏍᏗ. ᎯᎠᏍᎩᏂ ᏴᏫ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏂᎦᏔᎲᎾ ᏥᎩ ᎨᏥᏍᎩᏅᏛᎯ. ᎢᎦ ᎪᏱᏁᎢ ᎨᏠᎮ ᏗᏙᎴᏆᏍᏗ ᏪᏙᎲ ᏲᎾ ᎤᏤᏍᏙ. ᎠᎴ ᎡᏍᎦ ᎤᏃᎭᏛ ᎠᏂ ᎡᎶᎯ, ᎠᎴ ᏅᎵᏌᎵ ᎨᏥᏰᎸᎯ ᎤᏁᎳᏅᎯ ᏚᏑᏰᏒ, ᎠᎴ ᎾᏍᎩ ᎾᏁᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ ᎾᏍᎩ ᏣᏁᎭ; ᎢᎦᏘᎭ ᏏᏆ ᎠᏯ. ᎾᏍᎩᏃ ᎢᎦᏛ ᏌᏈ ᎠᎴ ᏌᎵᏂ ᎠᏁᎯ ᎨᏎᎢ, ᎾᏍᎩ ᎥᏘᎣᎩ ᏭᏂᎷᏨ ᏚᏂᏬᏁᏔᏁ ᎠᏂᎪᎢ, ᎠᏂᏃᎮᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᎬᏩᎵ. ᎨᏍᏗ ᏱᏧᏁᏣ. ᎠᏂᎨᏴᏃ ᎾᏍᏉ Ꭸ ᎢᏴᏛ ᏙᏗᏂᎧᏁᎢ; ᎾᎿᏃ ᎠᏁᎴ ᎺᎵ ᏑᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏥᏌ ᎤᏍᏗ ᎠᎴ ᏦᏏ ᎤᏂᏥᎢ, ᎠᎴ ᏌᎶᎻ. ᎾᏍᎩ ᎯᎠ ᏂᏥᏪᏍᎬ ᏥᏁᎬ ᎥᏝ ᎤᎬᏫᏳᎯ ᎢᏳᏪᏍᏗ ᏱᏥᏁᎦ, ᎠᎩᏁᎫᏍᎩᏂ ᎾᏍᎩᏯ ᏥᏁᎦ, ᎯᎠ ᎾᏍᎩ ᏂᏥᎾᏰᏍᎬᎾ ᎨᏒ ᏥᎬᏗᎭ ᏥᎦᏢᏆᏍᎦ. ᎦᎳᎱᏂ ᎠᏗᏍᎬ ᎠᎳᏏᏓᏁᎸ ᏱᎨᏒᎾ ᎤᏁᎸᏗ ᎤᏃᏴᎩ ᎦᎸᏥ ᎠᏂᏬᏂᏍᎬ, ᎦᏬᏂᏍᏗ ᎨᏒ, ᎤᏩᏌ ᎦᏲᏟ ᎦᏬᏂ, ᎡᏘᏴ Yale ᏥᏓᏙᎴᏆᏍᎨ ᎢᏴ. ᎠᏗᎾ ᎠᏎ ᏱᏥᏅᏒ ᎠᏇᎵᏒ ᎢᏆ'ᎶᏓᏔ ᏫᏥᎷᏤᏗᏱ, ᎾᏍᎩ ᎠᎩᏅᏟ ᎠᎴ ᎣᎩᎾᏖᏆᎶᎯ ᏙᎩᏂᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎣᎩᎾᎵᎪᎯ ᎣᏍᏗᏯᏫᏍᎩ, ᏂᎯᏍᎩᏂ ᎡᏥᏅᏏᏛ, ᎠᎴ ᎾᏍᎩ ᎠᎩᏍᏕᎸᏛ ᎠᎩᏩᏛᏗᏱ ᎠᎩᏂᎪᎯᏎᎲᎢ. ᎡᏕᎵᏛᏍᎩᏂ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎴᏒᏉ ᎦᏓᎭ ᎨᏒᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᏞᏍᏗ ᎧᏁᎢᏍᏙᏗ ᎤᏅᏱᎨᏎᏍᏗ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏧᏂᎵᎶᎲᏍᎦ ᎤᎾᏓᏅᏘ; ”Ꭵ, ᎤᏙᏳᎯ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᎠᏍᏆᏂᎪᏗᏍᎨ ᎠᏍᏓ. Ꭷ, ᎢᏓᏓᏅᏟ, ᎿᏉ ᏕᏨᏲᎯ ᎤᏁᎳᏅᎯ ᎢᏥᏙᎵᏍᏗᏱ, ᎤᏮᏙᏗᏱ, ᎧᏃᎮᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎧᏃᎮᏍᎩ, ᎾᏍᎩ ᏰᎵ ᎨᏣᏁᏍᎨᏗ ᏥᎩ, ᎠᎴ ᎢᏣᏤᎵ ᏰᎵ ᎢᎨᏨᏁᏗ ᏥᎩ ᎾᏍᎩ ᏂᎦᏛ ᎤᎾᏓᏅᏘ ᎢᎨᎬᏁᎸᎯ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ. ᎠᏎᏍᎩᏂᏃᏅ ᎦᎫᏍᏛᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᎵᏂᎩᏗᏳ ᏂᎬᏅ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎤᎬᏫᏳᎯ ᏓᎦᏔᎭ ᎾᏍᎩ ᏧᏤᎵᎦ; ᎠᎴ ᎯᎠ, ᎩᎶ ᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎦᎶᏁᏛ ᏚᏙᎥ ᎾᏍᎩ ᎠᏓᏅᎡᎮᏍᏗ ᎠᏍᎦᏂ. ᏥᏗᎦᏔᎭᏍᎩᏂ ᎾᏍᎩ ᏴᏫ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎾᏛᏁᎲ ᎾᏚᏓᎴᏍᏗᏍᎬᎾ ᎨᏒᎢ, ᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎠᏴ ᎡᏙᎢᏳᏅ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎢᎦᏚᏓᎴᏍᏙᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎦᎶᏁᏛ, ᎥᏝᏃ ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᏂᎦᏪᏍᎬ ᎾᏛᏁᎲ ᎥᏝ ᎩᎶ ᎤᏇᏓᎵ ᏴᎬᏚᏓᎴᏍᏓ. ᎦᏓᏁᏍᏛ ᏱᎩ ᏰᎵᏉ ᏚᏩᏩᏒᎪ ᏌᎶᎵ ᎤᏛᏅ ᎠᏧᏣ. “ᎠᎦᏓ ᏧᏬᏨᏗ ᏗᏆᏛᎦᏅ ᎠᏎ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ, ᏘᏙᎵᎩ; ᎥᏝᏰᏃ ᏯᏂᎦᏔᎭ ᎾᎾᏛᏁᎲᎢ. ᎤᏂᏯᏙᎴᏃ ᎤᏄᏬ ᎠᎴ ᎠᎾᏎᏍᏗᏍᎨᎢ. ᏣᎳᎩᏱ ᎠᏰᎵ ᎤᎬᏫᏳ ᎫᏫᏍᎫᏫ ᎤᏂᎦᎸᎮ ᏃᎴ ᎪᏪᎵ ᏚᏬᏒᏁ ᎠᎹᏰᎵ ᏭᎾᏓᎶᎩ, ᏃᎴ ᎤᏓᎭᏱᎴ ᏧᏳᎪᏗ ᎨᏒ ᎠᏂᎫᎾᏓᎴᎩ ᏚᎾᏓᏂᎸᏨ, ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎨᏍᏗ ᏱᏚᎾᎳᏏᏕ ᎤᏂᎾᏗᏅᏗ ᎠᏂᏣᎳᎩ ᎤᎾᏤᎵᎪ ᎦᏙ, ᎡᏆ ᎤᏂᏍᎦᏅᏨ ᏂᎦᎵᏍᏗᏍᎨ. ᎬᎨᏳᎢ, ᏞᏍᏗ ᎤᏐᏅ ᎨᏒ ᏱᏣᏍᏓᏩᏛᏎᏍᏗ, ᎣᏍᏛᏍᎩᏂ ᎨᏒ ᎯᏍᏓᏩᏕᎨᏍᏗ. ᎣᏍᏛ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ; ᎤᏲᏍᎩᏂ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᎥᏝ ᎤᏁᎳᏅᎯ ᎤᎪᎲᎯ ᏱᎩ. ᎠᎴ ᎾᏍᏉ ᏂᎦᎥ ᎠᎩᎾᎥ ᏱᎦᏓᏃᏁᎭ, ᎠᎴ ᎾᏍᏉ ᏥᏰᎸ ᏱᏓᎩᏲᏒ ᎤᎾᎪᎲᏍᏙᏗᏱ, ᎾᎩᎲᎾᏃ ᏱᎩ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎥᏝ ᎪᎱᏍᏗ ᎠᎩᏁᏉᏤᎯ ᏱᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏲ ᎯᏰᎸᎾ ᎯᎠ ᎾᏍᎩ ᏥᏍᎦᏅᎩ, ᎠᎴ ᎯᏍᏙᏓᎵᏍᏓᏏ ᎤᏁᎳᏅᎯ, ᎦᏰᏣᏙᎵᏍᏗᏉ ᏱᏂᎦᎩ ᏄᏍᏛ ᏣᎾᏫᏱ ᏣᏓᏅᏖᎸᎢ. “ᏯᏛᎾ ᏯᏕᎰᏍᎦ,” ᎤᏛᏁ ᏌᎳᏓ ᎣᏍᏓ ᏳᏰᎸᎲᎾ. ᏉᎳ, ᎠᏆᏑᏰᏛ ᎠᎩᏅᏏᏛ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎢ, ᎠᎴ ᏐᏍᏗᏂ ᎢᎩᏅᏟ, ᎡᎶᏗ ᎤᏔᏪᏙᏁ ᎪᏱᏁᎢ. ᎤᏩᏒᏰᏃ ᎠᏓᎪᏩᏘᏍᎪᎢ, ᎠᎴ ᎠᏓᏅᏍᎪᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏩᎨᏫᏍᎪ ᏄᏍᏛᎢ. “ᏦᎢ ᎢᏲᏥ ᎣᏤᏙᎮᏍᏗᏉ. ᎤᏩᏙᎯᏴᏓ ᎨᏎᏍᏗ. ᎠᎬᏱᏣ ᏔᎵᏉ ᏧᏲᎢ ᎦᏲᎦᏑᏯᎩᏍᏗ. ᎠᎴ ᎤᏲᎢᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏗᏂᏁᎵᏛ, ᎠᎴ ᏧᏂᏍᏓᎢ ᎾᎯᏳ ᎨᏎᏍᏗ. ᎤᏍᎦᏅᏥᏙᎸᏰᏃ ᎦᎸᎳᏗ ᎢᏴᏛ ᏭᎷᏨ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏅᏓᏛᎤᏲᏚᎸᏫᏍᏓᏁᎵᏙᎸᎢ. [ᎠᎴ ᎢᏥᎦᏔᎭ] ᎪᎱᏍᏗ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎠᏋᏍᎦᎳᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎢᏨᎾᏄᎪᏫᏎᎸᏉᏍᎩᏂ ᎠᎴ ᏕᏨᏰᏲᏅ ᏕᎦᎳᏫᎥᎢ ᎠᎴ ᏓᏓᏁᎳᏗᏒᎢ, ᎢᏳ ᎠᎴ ᎢᏗᏯᏙᎯᎮᏍᏗ, ᎢᏗᏯᏙᎯᎲᏉ ᏕᎩᎸᏫᏍᏓᏁᎮᏍᏗ; ᎠᎴ ᎩᎶ ᏓᏕᏲᎲᏍᎨᏍᏗ, ᏗᏕᏲᏗᏉ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ; ᎠᏏᏴᏫᏃ ᎤᎷᏰ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᎵᏍᏕᏍᏔᏁ ᎠᎦᏘᏏ ᎦᎴᏂ. ”ᎣᏍᏓ ᎧᏅᏂᏍᎩ ᏃᎴ ᏓᏥᏂᏴᎯ,” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎯᎠᏃ ᎾᏥᏪᏎᎴᎢ, ᎦᏙ ᎬᏅ ᎪᏪᎳ ᏗᎧᎿᏩᏛᏍᏗᏱ? ᎦᏙ ᎤᏍᏙ ᎯᎪᎵᏰᏍᎪᎢ? ᏥᎷᏏᎵᎻᏃ ᎤᏂᎷᏤᎢ; ᏥᏌᏃ ᎤᏔᏅ-ᏗᎦᏔᏫᎢᏍᏗᏱ ᏭᏏᎸ, ᎤᎴᏅᎮ ᏚᏄᎪᏫᏎ ᎠᏂᎾᏕᎩ ᎠᎴ ᎤᏂᏩᏒᎥᏍᎩ ᎾᎿ ᎤᏔᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᎷᏆᏗᏅᏎ ᏚᏂᏍᎩᎸ ᎠᏕᎸ ᏗᏂᏟᏴᏍᎩ, ᎠᎴ ᎤᎾᏅᏗᏱ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ ᏗᏂᎾᏕᎩ; ᎨᏍᏗᏗ ᏂᎦᏓ ᎯᏤᏅᏍᏗ ᏱᎩ. ᎠᏎ ᏯᏆᏁᎸᏔᏅ ᏗᏋᏂᏍᏙᏗ ᏥᏔᎦ, ᏧᎾᎳᏏᏕᏅ ᏧᎪᏅ ᎨᏐ ᏃᎴ ᏗᎦᎦᎳ ᏗᎦ ᏗᏔᏍᎩᏍᎩ ᎠᎪᏍᏓ, ᎦᏲᏟᏉ ᎤᎾᏂᏒ ᎨᏐ. ᎾᏍᎩᏃ ᎬᏬᎯᏳᎲᏍᎨ ᎾᏂᎥ ᎨᏥᎸᏉᏗ ᎠᎴ ᎨᏥᎸᏉᏗ ᏂᎨᏒᎾ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏣᏘ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎯᎠ ᎠᏍᎦᏯ ᎤᏪᎭ. ᎾᏍᎩ ᏧᎾᏛᏐᏅᎯ ᏧᏂᏴᏍᏕᏍᎩ ᏂᎬᏒᎾ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎨᏥᎸᏉᏗ, ᎤᎾᎵᏏᎾᎯᏍᏗ, ᏄᎪᎸᎾ ᎨᏒ ᎤᏃᎯᏳᏒᎢ, ᎠᎴ ᎤᎾᏓᎨᏳᏒᎢ, ᎠᎴ ᏗᏅᏂᏗᏳ ᎨᏒᎢ. ᎡᎶᏛᏰᏃ ᎤᏩᏒ ᎤᏓᏅᏒᎯ ᎨᏎ ᏭᏂᏴᎲᎯ ᎨᏎ ᏣᏂ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎤᎸᎸᎯ ᎨᏎᎢ, ᎠᏍᏛᏗᏍᏗᏍᎨ ᎡᎶᏗᏏ, ᎤᏅᏟ ᏈᎵᎩ ᎤᏓᎵᎢ; ᎾᏍᎩᏰᏃ ᎠᏓᏰᎮᎢ. ᎢᏤᎾ, ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏫᏣᎴᎲᎦ ᎠᎴ ᏫᏗᏥᏬᏁᏓ ᏴᏫ ᏫᏗᏥᏃᎲᏏ ᏂᎦᏛ ᎧᏃᎮᏛ ᎯᎠ ᎾᏍᎩ ᎬᏂᏛ ᎤᎬᏩᎵ. ᎠᏏ ᎡᎶᎯ ᏥᎦᏥᏰᎳᏗᏙᎲᎩ, ᏕᏣᏙᎥ ᏕᏥᏍᏆᏂᎪᏙᏛᎩ; ᎾᏍᎩ ᏗᏍᎩᎧᏁᎸᎯ ᎦᏥᏍᏆᏂᎪᏔᏅ, ᎠᎴ ᎥᏝ ᎠᏏᏴᏫ ᏳᏲᎱᏒ Ꮎ ᎤᏩᏒ ᎠᏲᎱᎯᏍᏗ ᎤᏪᏥ, ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸᎢ. ᎾᎥᏂᎨ ᎤᎧᏙᏍᏓᏁᎢ ᏫᎵᎻ. ᎠᎴ Ꮎ-ᏍᎩ ᏏᏆᏏ ᎤᎪᎲᎢ, ᎿᏉᏃ ᏔᎳᏚ ᎢᏯᏂᏛ. ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎨᏒ ᎬᏂᎨᏒ ᏅᏁᎮᏍᏗ ᏗᎦᏰᏣᏟᎶᏍᏙᏗ ᎨᏒ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᏗᏕᏂᏗ ᎨᏒ ᎤᎬᏩᎵ ᎤᏲ ᏄᏓᏑᏴᎾ, ᎬᎸᏉᏗᏳ, ᏄᏠᎾᏍᏛᎾ, “ᎭᏩ!” ᎤᏁᎷᏁ ᎤᎾᏓᏓᏍᎩ. ᏥᏌ ᎦᎶᏁᏛ ᎤᎾᏄᎪᏫᏒᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏲᎯᏎᎸᎯ, ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏧᏅᏏᏓᏍᏗ ᏧᏓᎴᏅᏛ ᏂᎪᎯᎸᏉ ᎢᏳ ᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ; ᎠᎴ ᏧᎨᏅᏛ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎤᏅᏏᏓᏍᏗ ᏣᏂ; ᎨᏍᏗᏗ ᎠᏓᏅᏖᏙ ᏱᎩ ᏱᏗᏥᏂᏴ ᏧᎾᏓᎸ. ᏅᏗᎦᎵᏍᏙᏗᎭ ᏚᏳᎪᏛᎢ ᎤᏁᎳᏅᎯ ᏧᎫᏴᏓᏁᏗᏱ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎨᏥᎩᎵᏲᎢᏍᏗᏍᎩ; ᎠᏎᏃ ᎪᎱᏍᏗ ᎤᏓᏴᏙᏗ ᏄᎲᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎤᎾᏝᎢ ᎤᏁᏤ ᎠᏥᎾᏗᏅᏗᏱ ᎠᎴ ᎤᏓᎵᎢ ᎠᎴ ᏧᏪᏥ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎲᎢ, ᎠᏓᏴᏗᏱᏃ. ᎦᎶᎪᏗ, ᎦᏓᎷᎪᏗ, ᏍᏆᎳ ᎦᏂᏴᏗ ᎦᎷᏯᏍᏗ. ᏔᏕᏲᎲᏍᎩ, ᎠᎴ ᏣᎬᏫᏳᎯ, ᏍᎩᏲᏎᎰᎢ; ᎠᎴ ᏚᏳᎪᏛ ᏂᏥᏪᏍᎪᎢ, ᎾᏍᎩᏰᏃ ᏄᏍᏗ. ᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏨᏒᏉ ᎭᏓᏃᎮᏎ, ᎯᏃᎮᏍᎬ ᎥᏝ ᏳᏙᎯᏳᎭ. ᏍᎩᎾᎾ ᎢᏳᏍᏗ, ᎨᏍᏗ ᎫᎦᏓᏉ ᎠᏓᎩᏯᏍᏗ ᏱᎩ. ᎠᎴ ᎢᏨᎨᏫᏒᎯ ᎢᎩ ᎡᏥᏬᏁᏗᏍᎬ ᏗᏂᏲᎵ ᏥᎨᏥᏬᏁᏗᏍᎪ ᎾᏍᎩᏯᎢ, ᎯᎠ ᏥᏂᎦᏪᎭ, ᎠᏇᏥ ᏞᏍᏗ ᏅᎵᏌᎵ ᏱᏣᏰᎸᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏣᎩᎵᏲᎢᏍᏗᏍᎬᎢ, ᎠᎴ ᏞᏍᏗ ᏩᎾ ᎯᏳᏏᎦᎶᎨᏍᏗ ᏣᎬᏍᎪᎸᎢᏍᎨᏍᏗ, ᏞᏍᏗ ᎠᎴ ᏱᏥᎪᏁᎶᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᎩ Ꮎ ᎢᎦᏛ ᏥᏄᎾᏛᏁᎴ ᏧᏂᎪᏁᎶᏍᎨᎢ, ᎠᎴ ᏥᎬᏩᏂᏛᏔᏁ ᎠᎾᏓᏛᏗᏍᎩ. ”ᎠᎳᏂ,” ᎤᏛᏁ, ᎤᎵᏏᏂᏗ ᎦᏬᏂᏍᎨᎢ. ”ᎨᎵᎠ ᏰᎵ ᎤᏍᏆᏂᎩᏗ ᎢᏗᎾᏌᎠ ᏏᏆ.” ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᏱᎩ ᏞᎦ ᏳᏓᏅᏒ ᎾᏍᎩ ᏘᏯᏓᏂᎸᎢᏍᏗ ᏂᎪᎯᎸ ᎤᏕᏗᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᎢ, ᎾᏍᎩ ᎤᏢᏨ ᎤᏲᎱᏎᎢ, ᎾᏍᎩᏃ ᎤᎾᏬᎥ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᎤᏂᏅᏁᎢ. ᎠᏴᏰᏃ ᏗᏆᏓᏁᎶᏗᏉ, ᎠᎴ ᏓᎩᎧᎭ ᎠᏂᏯᏫᏍᎩ ᎾᏍᎩ ᏕᎬᏆᏁᎶᏙᎢ, ᎩᎶᏃ ᎮᎾ ᏥᏲᏏ, ᎡᎪᎢ; ᏅᏩᏓᎴᏃ ᎡᎮᎾ ᏥᏲᏏ, ᏗᎡᎪᎢ; ᏥᏅᏏᏓᏍᏗᏃ, ᎯᎠ ᎿᏛᎦ ᏥᏲᏏ, ᎾᏍᎩ ᎾᏛᏁᎰᎢ. ᎧᏂᎩᏛ ᏓᏥᎶᎥ. ᎠᏎᏃ ᎨᏍᏗ ᏳᏩᏅᎨᎢ ᏥᏍᏕᏥ. ᎾᏍᎩᏃ ᎢᏳ ᎩᎶ ᎾᏍᎩ ᎯᎠ ᎦᎫᏍᏛᏗᎯ ᏳᏝᏅ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏳᏁᏍᎨᏔᏅ, ᎠᏕᎸ ᎤᏁᎬ, ᏗᎦᎸᏉᏗ ᏅᏯ, ᎠᏓ, ᎧᏁᏍᎦ, ᎠᏍᎫᏕᏒᎯ ᎤᎵᏃᎯᏰᎯ, ᎠᎴᏬ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᎩᏍᏚᎩᎡᏗᏱ ᎦᎶᎯᏍᏗᏱ ᎾᎿ ᎣᎦᎵᏥᏙᏗᏱ, ᎣᎩᏃᎮᏗᏱ ᎤᏕᎵᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎾᏍᏉ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏆᎸᎢᏛ ᏥᎩ; ᎤᎪᎲᏃ ᎤᏕᏯᏔᏁᎴ ᎾᏍᎩ ᏄᏪᏎᎸᎢ, ᎠᎴ ᎤᏓᏅᏖᎴ ᏄᏍᏛ ᎤᏰᎸᏛ ᎯᎠ ᎾᏍᎩ ᎤᏲᎵᎸᎢ. ᎠᎴ ᎤᏣᏘ ᏗᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏓᎨᏳᏗ ᎬᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ. ᎠᎴ ᏙᎯᏱ ᏂᏨᏁᏍᏗ ᎢᏨᏒ ᎢᏤᎲᎢ. ᎠᎴ ᎤᎾᏫᏱ ᎢᏥᎨᏳᎯᏳ ᎨᏒ ᎤᏣᏘ ᎤᏁᏉᏨ, ᎤᏅᏓᏛ ᎢᏦᎯᏳᎯᏳ ᎨᏒ ᏂᏥᎥᎢ, ᎾᏍᎩ ᎢᏥᎾᏰᏍᎩ ᎠᎴ ᏗᏥᎾᏫᏍᎩ ᏕᏣᏓᏂᎸᏨᎢ. ᏃᎴ ᎦᏙ ᏙᎩᏂᏴᎲ ᎪᏪᎵ ᏙᎩᏂᎾᎥ ᏲᎾ. ᎾᏍᎩ ᏑᎾᏓᎴᎩ ᎨᏒ ᎠᏓᎯᎯ ᎦᏩᏒᎩ ᎾᏍᎩ ᎤᏂᎯᎯ ᏂᏙᏣᎵᏍᏓᏁᎭ; ᎠᏂᏐᎢᏃ ᎠᏓᏛᏂᏗᏍᎩ ᎦᏩᏒᎩ ᎾᏍᎩ ᎤᏅᏂᏗᏍᎩ ᏂᏙᏣᎵᏍᏓᏁᎭ. ᎦᎪᏃ ᏰᎵ ᎦᏰᎦᎨᏅᏗᏍᏗ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎦᏛ ᎠᏍᏔᏴ ᎠᏟᏃᎮᏙᏗ Crockett, ᎡᏍᎦᏉ ᎤᎬᏫᏳ. ᏈᏓ ᎾᏍᎩ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏎᎸᎩ ᏥᏌ; ᏣᎬᏫᏳᎯ, ᎯᎠᎾᏃ ᎦᏙᎢ? “Ꮟ ᏐᏉ ᎢᏳᏩᎬᏗ ---- ᎭᏩᏧᏛ ᎤᏛᏁ ᏌᎳᏓ. ᏚᏟᎶᏍᏓᏁᎴᏃ, ᎯᎠ ᏄᏍᏕ ᎤᎬᏩᎴᎢ, ᎾᏍᎩ ᏴᏫ ᏂᎪᎯᎸ ᎤᎾᏓᏙᎵᏍᏙᏗᏱ, ᎠᎴ ᏧᏂᏯᏪᎢᏍᏗ ᏂᎨᏒᎾ; ᎢᏳᏰᏃ ᎢᎬᏱᏱ ᎤᎬᏛᎾᏨᎯ ᎦᎸᏉᏗᏳ ᏱᎩ, ᏂᎦᏛ ᎾᏍᏉ [ᎦᎸᏉᏗᏳ;] ᎢᏳ ᎠᎴ ᏚᎿᏍᏕᏢ ᎦᎸᏉᏗᏳ ᏱᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏚᏩᏂᎦᎸᎢ. ᏗᏂᏲᏟ ᏐᏉ ᎦᎦᎳ, ᏭᏅᎬᏛ ᏧᎪᎸᎭ ᏗᎦᏐᎯ ᏃᎴ ᏗᎦᏁᏥ. ᎾᏍᎩ ᎯᎠ ᎤᎬᏩᎵ ᏦᎢ ᏂᏥᏔᏲ-ᏎᎸᎩ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᎠᏆᏓᏅᎡᏗᏱ.. ᎤᏂᏣᏔᏍᎩᏂᏃᏅ ᎠᏁᎭ ᎤᎾᏁᎳᏅᎯ ᎨᎪᏎᎯ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ, (ᏧᏂᎶᏔᏉ ᎤᎾᏁᎳᏅᎯ, ᎠᎴ ᏧᏂᏣᏔᏉ ᎤᏂᎬᏫᏳᎯ, ᏃᎴ ᏄᏓᎴᎯ ᎧᏅᏂᏍᎩ ᏭᎩᎸᏁ ᎠᏦᏴ, ᎤᏐᏱ ᏄᏛᏁᎴ. ᎠᏲᎱᎯᏍᏗᏃ ᎨᏒ ᎠᎴ ᏨᏍᎩᏃ ᎠᏥᎸ ᏨᏓᎸ ᏫᏕᎨᎦᏓᎢᏅᏒᎩ. ᎯᎠ ᎾᏍᎩ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ. ᏥᏌ ᏭᎪᎲᎩ ᏁᏓᏂᎵ, ᎦᏙᎬ ᎢᏗᏢ ᏛᎦᏛᎩ; ᎯᎠᏃ ᏄᏪᏒᎩ, ᎾᏍᎩ ᎤᏁᎢᏍᏔᏅᎩ; ᎬᏂᏳᏉ ᎤᏙᎯᏳᎯᏯ ᎢᏏᎵ ᎤᏪᏥ, ᎾᏍᎩ ᎦᎶᏄᎮᏛ ᏄᏓᏑᏴᎾ. ᎠᏴᏰᏃ ᎤᏁᎳᏅᎯ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ, ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᎶᎨᏒᎢ, ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏁᏍᎨᎲᎯ. ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏚᏂᏘᎴ ᏧᏂᎾᏫᏱ, ᎠᎴ ᏗᏂᏄᏙᎬ ᏕᎬᏩᏄᏓᎨᎴᎢ. ᎤᏂᏣᏘ ᎠᏂᏏᎾ ᎠᏤ ᎢᏳᎾᎵᏍᏙᏗ ᎩᎳᏈᏴ. ᏌᏩᏂᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᏕᏲᎲᏍᎩ ᎤᎵᏨᏓᏆᏛ ᏙᎩᎸᏫᏍᏓᏏ ᎥᏝᏃ ᎪᎱᏍᏗ ᏲᏥᏂᏴ; ᎠᏎᏃ ᏂᎯ ᏣᏁᏨ ᎢᏳᏍᏗ ᏓᎬᏂ ᎠᎦᏯᎷᏗ. ᎤᎴᏴᏏᏙᎴ ᏃᎴ ᏭᎶᎣᏎ, ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏗᏥᏴ ᏭᏅᏥᎴ. ᎨᏥᏲᎮ ᎤᏅᏌ ᎠᏁᎲ ᎾᏍᎩᏯ ᎢᎾᎨ ᎠᏁᎯ. ᏂᎯᏍᎩᏂ, ᎢᏓᎵᏅᏟ, ᏞᏍᏗ ᏱᏗᏥᏯᏪᎨᏍᏗ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ. ᏞᏍᏗ ᎠᎴ ᎪᎱᏍᏗ ᎤᏁᎢᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏍᎦᏁᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎦᏪᏢᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏃᏒᎾ ᏥᎩ; ᎠᎵᎮᎵᏤᏗᏱᏉᏍᎩᏂ [ᎤᏁᎳᏅᎯ] ᎤᎬᏫᏳᏎᏍᏗ. ᎤᏃᎴ ᎠᎭᏰᎬ ᎠᏒᎬ ᎠᎹᏱ ᎨᏴ ᏃᎴ ᏌᏬᏛ. ᎠᎴ ᎾᏍᎩ ᏕᏥᏯᏁᎶᏛ ᎥᎩᏩᏛᏗᏱ, ᎠᏆᏚᏓᎴᏍᏙᏗ ᎠᏋᏒ ᎠᏆᏤᎵ ᎾᎩᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎬᏩᏓᏁᏗ ᏥᎩ, Ꮎ-ᏍᎩᏂ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎬᏙᏗ ᏥᎩ. ᎠᎴ ᎾᏍᏉ Ꮎ ᎦᎶᏁᏛ ᎤᏃᎯᏳᎯ ᎤᏂᎵᏅᏨᎯ ᏥᎩ ᎬᏩᏂᏲᏥᏙᎸᏉ. ᎩᎳᏈᏴ ᏚᎴᏁᎢ. ᎤᎵᏍᏆᎸᏗ ᎤᎲ ᎤᏟᏂᎬᎬ ᏲᎾᎠᎬᏱᏍᎩ, ᎤᎵᏬᏤ ᏲᎾ. ᏧᏂᏦᏯᏍᏗ ᎤᏗᏔᏍᏗ ᎠᏓᎦ ᎠᏑᏱ ᎤᏂᏁᏁᎴᎢ, ᎤᏁᎸᏔᏅᏃ ᎥᏝ ᏳᏚᎸᎮ ᎤᏗᏔᏍᏗᏱ. ᎠᎴ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ ᎬᏩᎾᏕ ᏯᏙᏗᏕᎩ [ᎤᏂᎷᏤᎢ; ᎠᎴ ᏕᎨᏥᏅᏩᏁᎢ. ”ᎣᏍᏓ!” ᎤᏛᏁ ᏌᎳᏓ. ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᏥᎩ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏔᎵ ᎢᏳᏩᎫᏗ ᏕᏥᎸᏉᏕᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎧᏃᎮᏛ ᎠᎴ ᏗᏕᏲᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᎯ. ᏫᏚᏯᏅᎲᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᎦᏗᏙᎯ, ᏕᏁᎸ ᎠᏂᏍᎩᎾ ᏧᏂᏄᎪᏫᏍᏗᏱ, ᎠᎴ ᏧᎾᏓᏅᏬᏗᏱ ᏂᎦᎥ ᏚᏂᏢᎬ, ᎠᎴ ᏂᎦᎥ ᎥᏳᎩ. ᏚᏯᏪᎬ ᎠᏫᎾᎨ ᏄᏍᏛ ᏗᎧᏃᏗ ᎠᎴᏉ ᎠᏫᎾᎨ, ᏩᏆᏅᏓᏛ ᎩᎳ ᏓᏳᏅᎪᏨ ᎨᏒ ᏗᏙᎴᏆᏍᏗ, ᎦᏲᏟ ᎠᏏᏀᎥ ᎤᎪᎵᏰᏗ Greek. ᏯᎵᏖᎸᎮᏍᎬᎾ ᎦᏙᎨ ᏃᎴ ᎣᏍᏓ ᏗᎧᏃᏗ ᎤᏁᎸᏔᏁᎢ. ᎡᏝᏪ ᎤᏰᏤ ᏲᎾ ᎤᏤᏍᏙ, ᏃᎴ ᏤᏆ ᏂᏚᎵᏍᏔᏁ ᏗᎦᏙᎵ ᎤᎨᏳᎲ ᏏᏆ. ᎤᏛᏛᏁᏃ, ᎦᏙ ᏕᏣᏙᎥ? ᎤᏬᏎᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏑᎾᏓᏡᎩ ᏓᏆᏙᎥ; ᎣᎩᏣᏔᏰᏃ. ᎠᏫᏃ-ᏗᏂᎦᏖᏯ ᎢᎤᎾᏨᏎᎢ, ᎠᏂᎸᏉᏗᏍᎨ ᎠᎴ ᎠᎾᎵᎮᎵᏤᎮ ᎤᏁᎳᏅᎯ ᏅᏗᎦᎵᏍᏙᏏᏍᎨ ᏂᎦᎥ ᎤᎾᏛᎦᏅ ᎠᎴ ᎤᏂᎪᎲᎢ, ᎾᏍᎩ ᏄᏍᏛ ᎨᏥᏃᏁᎸᎢ. ᎠᏂᎦᏔᎿᎢᏍᎩᏂ ᏚᏂᏅᏎ ᏧᏂᏨᏍᏙᏗ, ᎠᎴ ᎾᏍᏉ ᎪᎢ ᎤᏂᏁᏨᏎ ᏚᏂᏟᏍᏔᏁ ᏗᏖᎵᏙ. ᎦᏓᏁ ᎢᎦ, ᎤᏛᏅ ᎠᏌᎻᏓ. ᎣᏍᏛ ᏕᏥᏁᏤᎮᏍᏗ ᎤᏲ ᎢᎨᏨᎿᏕᎩ; ᎣᏍᏛᏉ ᏕᏥᏁᏤᎮᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏍᎩᏅᏗᏍᎨᏍᏗ. ᎤᏒᎯ ᎢᏴ ᎣᏍᏓ ᎤᎵᏍᏓᏴᏗ ᏥᏍᏕᏥ. ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎯᎠ ᎾᏍᎩ Ꮎ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎡᏦᎢᏳᏗᏱ ᎾᏍᎩ Ꮎ ᏅᏓᏳᏅᏏᏛ. ᎠᏎᎩᏳ ᏯᏇᎵᏎ ᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᎠᏂᏧᏣ ᎠᏰᎵ ᏗᎳᏍᏙᏗ ᎠᎾᏗᏍᎬ, ᎠᏎᏃ ᎣᎦᎵᎪᏅ ᎨᏒ ᎠᏂᏍᎦᏯ ᎤᎾᏓᏅᏖᎸ. ᎠᏎᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏤᎦᎳᏯ ᏞᏍᏗ ᏣᏍᎦᎸᎩ; ᎭᏓᏙᎵᏍᏗᏍᎬᏰᏃ ᎡᏣᏛᎦᏁᎸ; ᎠᎴ ᏣᏓᎵᎢ ᎵᏏ ᏓᏣᎾᏄᎪᏫᏎᎵ ᏤᏥ ᎠᏧᏣ, ᏣᏂᏃ ᏕᎯᏲᎥᎭ. ᎦᏙᏃ ᏱᏗᎦᏥᏳᎪᏓᏁᎭ ᎾᏍᎩ ᎾᏍᏉ ᏙᏱᏗᏢ ᎠᏁᎯ? ᏝᏍᎪ ᏂᎯ ᏱᏗᏧᎪᏓᏁᎰ ᎾᏍᎩ Ꮎ ᎠᏂᏯᎢ? ᎾᏂᎥᏰᏃ ᎩᎶᎢ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏧᎾᏘᏂᏙᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏪᏥ. ᎤᏂᏴᏍᏗ ᎭᏫᏂ ᎠᏂᏯᎡ ᎢᎪᎯᏓ ᏩᎦ, ᏑᎾᎴ ᏯᎦᎵᎭ ᎤᏩᏌ ᏙᏱᏨ ᎤᏃᎸᏗ ᏱᎨᏒᎾ ᎧᏁᏍᎦ ᎦᏓᏍᎬᎢ ᎾᎥᏂ ᎠᏂᏙᎾᎡ. ᎠᎧᏔᎮᎢ ᎨᏍᏗ ᎪᎯᏓ ᏳᎮᎢ. ᎤᏁᎳᏅᎯ ᎡᏥᎨᏳᎢᏳ ᎨᏒ ᏕᏥᏂᏴᏎᏍᏗ, ᎢᏥᎦᏖᏃᎮᏍᏗ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᏂᏛ ᎠᏓᏁᎯ ᏥᎩ. ᏚᏅᏎᏃ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᎦᏚᎲ ᎢᏍᏕᎾ, ᏙᏓᏣᏠᏏᏃ ᎠᏍᎦᏯ ᎠᏰᎮᏍᏗ ᎠᏖᎵᏙ ᎠᎹ ᎠᏟᏍᏕᏍᏗ; ᎡᏍᏗᏍᏓᏩᏕᏒᎭ. ᎩᎳᏈᏴ ᎤᎾᏛᎦᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎬᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎠᏗᎾ ᎡᏙᏓ, ᎬᏔᏲᏎᎭ, ᎯᏅᏍᏗᏱ ᎡᏙᏓ ᏗᎦᏁᎸᎢ; ᎤᎵᏍᎨᏛ ᎠᏓᏁᏗ ᏂᏛᏅᏁᎵ ᏔᎵᏍᎪ ᎢᏯᏔᏬᏍᏔᏅ ᎢᏴᎯ. ᎢᏳᏃ ᎡᎶᎯ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎢᏨᏃᎮᎮᎸ ᏂᏦᎯᏳᎲᏍᎬᎾ ᏱᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏦᎯᏳᎲᎦ, ᎦᎸᎳᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ ᏱᏨᏃᎮᎮᎸ? ᎣᏂᏃ ᎢᏴᏛ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ, ᎤᏂᏧᏈᏍᏗ ᏴᏫ [ᏫᏕᏥᎪᎥᎩ] ᎾᏍᎩ ᎩᎶ ᏗᎬᏩᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏅᏓᏳᎾᏙᏣᎴᏛ ᎾᏂᎥ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏗᎾᏓᏛᎿ ᎨᏒᎢ, ᎠᎴ ᏴᏫ ᏓᏁᏩᏗᏒᎢ ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᏂᏙᎾᎥᎩ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᏄᏛᏅ ᎢᎬᏱᏗᏢ, ᏧᏁᎬ ᏚᎾᏄᏩᎥᎩ, ᎠᎴ ᏗᏂᏁᎲᎩ ᏧᏪᏲᏔ ᏧᎦᏄᏓᏅᎯᏛ; ᎾᎨᎢᏴ ᎠᎪᏩᏘᏍᎨᎢ ᏌᏌ ᏧᏬᏢ ᏫᎵᎻ. ᎿᏉᏃ ᏥᏌ ᏧᏓᏅᏛ ᎤᏙᎴᎰᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎪᏁᎶᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᎾᏍᎩ ᎯᎠ ᏕᏦᏕᏍᏗᎭ? ᏃᎴ ᏩᎩᏙᎵᎩ ᎦᎶᏁᏓ ᏯᏆᏓᏅᏛᎾ ᎨᏒᎢ. ”Ꭵ, ᎪᎵᎦ,” ᎤᏛᏁ ᏫᎵᎻ. ᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏅᎲᎢ ᎠᏍᎦᏂ ᎨᏒ ᏣᏕᏅᎩ, ᏥᎦᏃ ᎠᏴ ᎢᏍᎩᏰᏲᎲᏍᎦ? ᎥᎬᏩᏄᎪᏫᏒᎩᏃ. ”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ!” ᏧᏂᎦᏐᎠᏏᏗᏒᏃ ᎣᏓᎸᎢ, ᏚᏁᏤᎴ ᎾᏍᎩ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ ᏄᏍᏛ ᎤᏂᎪᎲᎢ, ᎬᏂ ᏴᏫ ᎤᏪᏥ ᎤᏲᎱᏒ ᏧᎴᎯᏌᏅᎯ ᎨᏎᏍᏗ ᏚᏬᏎᎴᎢ. ᎠᎫᏴᏍᏔᎩᏍᏗ ᏱᎨᏒᎾ ᏱᎩ ᎡᎶ ᏂᎦᏓ ᏳᏩᏒᏓᏂᎸ ᏣᎫᎳᏏᏕᏅ, ᎦᏙᎭᏃ ᎤᏬᏒᏁ ᎠᏓᏴᏍᏔᎩᏍᏙᏗ ᎤᎾᏝᏅ? ᏧᏓᏃ ᏇᎵᏏ ᎠᎴ ᏎᎳ ᎬᏩᏕᏁᎴᎢ ᏖᎹ ᏚᎾᏄᎪᏫᏎᎢ; ᏇᎵᏏᏃ ᎢᏏᎳᎻ ᎤᏕᏁᎴᎢ; ᎢᏏᎳᎻᏃ ᎡᎵᎻ ᎤᏕᏁᎴᎢ; ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎾᏍᎩ ᏧᏬᏪᎳᏅᎯ ᎾᏍᎩ ᏂᏕᎬᏁᎰ ᎧᏁᎢᏍᏗᏍᎪ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ; ᎾᎿ ᎤᏓᏑᏯ ᎢᎦᏛ ᎠᏍᏓᏱᏳ ᎪᎵᏍᏗᏱ, ᎾᏍᎩ Ꮎ ᏂᏭᎾᏕᎶᏆᎥᎾ ᎠᎴ ᏗᏂᏩᎾᎦᎳ ᏓᏂᏁᏟᏴᎭ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏗᏐᎢ ᎪᏪᎵ ᏂᏓᏅᏁᎲᎢ, ᎤᏅᏒᏉ ᎤᏂᏛᏗᏍᎩ ᎨᏒᎢ. ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎤᏂᏣᏘ ᏣᏂᏁᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎹ ᏧᏍᏆᏃᏴᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎤᏣᏘ ᏓᏴᏓᏆᎶᏍᎬ ᏥᏚᏍᏆᏃᏴᎪ ᎾᏍᎩᏯᎢ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᏱᎰᏩ ᎡᏗᎸᏉᏓ; ᎤᎬᏫᏳᎯᏰᏃ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎤᎬᏫᏳᏌᏕᎦ. ᏣᎵ ᎤᎴᏫᏍᏔᏅ ᎤᎦᏔᎲᏒ, ᎤᎪᎮ ᏯᏓᏅᏍᎬᎾ ᏅᎩ ᏧᎾᏏᏱ ᎤᎵᏏᎩ ᎠᏲᏍᏔᏁᎲ ᎤᎧᎭᏛ. ᏗᏥᏲᎵ, ᏕᏦᎯᏳᏎᏍᏗ ᏗᏥᎦᏴᎵᎨᎢ ᎤᎬᏫᏳᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᏚᏳᎪᏗᏰᏃ ᎾᏍᎩ ᎯᎠ. ᎤᎾᏓᏘᏰᏁ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᎩᎬ ᎤᏂᏨᏅ, ᎠᎴ ᎩᎬ ᏕᎯᏁᏁᎸ ᎤᎾᏘᏔᏍᏗ; ᏰᎵᎦᏯᏰᏃ ᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ. ᎬᏂᎨᏒ ᏂᏕᏣᏓᏛᏁᎮᏍᏗ ᎢᏥᏍᎦᏅᏨᏗ, ᎠᎴ ᏕᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ, ᎢᏂᏔᏲᎯᎮᏍᏗ ᏗᏣᏗᏫᏍᏗᏱ. ᎤᏙᎯᏳᎯᏯ ᎤᏰᎸᎯ ᎤᏓᏙᎵᏍᏙᏗ ᎨᏒ ᎤᏓᏅᏘ ᎠᏓᏍᏕᎵᏍᎪᎢ. ᎾᎿᏃ ᎤᏂᏔᏛ ᎬᏬᎯᏳᏅᎩ ᎬᏩᎷᏤᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎦᏔᎭ ᎢᎬᏱᏱ ᎢᎦ ᎡᏏᏱ ᏣᎩᎾᏄᎪᏥᎸᎩ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᏄᏍᏛ ᎠᏆᎵᏂᏙᎸ ᎢᏤᎲ ᏂᎪᎯᎸᎢ. ”ᎤᏰᎸᏘᏃ ᎨᏍᏗ ᎩᎶ ᎫᏩᏕᏗ ᏱᎨᏎᏍᏗ ᎭᏂ ᏂᎦᎵᏍᏙᏗ ᎠᏒᎨᏍᏗ. ”ᏤᏍᏗ ᎤᏲ ᏱᏣᏓᏅᏖᏍᏗ, ᏫᎵᎻ,” ᎤᏛᏁ. ᎠᏎᏃ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎪᎯ ᏥᎩ, ᎾᏍᎩᏉ ᎤᏁᏨ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏓᏍᏆᏂᎪᏗ, ᎠᏥᎸᏱ ᏭᎾᎵᏰᎢᎶᎯᏍᏗᏱ ᏓᏍᏆᏂᎪᏗ ᎬᏂ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ ᎠᎴ ᎨᏥᏛᏙᏗᏱ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ. ᏂᎦᏛᏃ ᎤᏇᏓᎵ ᏛᎪᎯ ᎤᏁᎳᏅᎯ ᎤᏓᏍᏕᎸᏙᏗ ᎨᏒᎢ. ᏴᏫᏰᏃ ᎤᏙᎯᏳᎯ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᎲ ᎨᎦᏎᎵᏙᏗᏍᎪᎢ; ᎠᎴ ᎠᏎᎵᏔᏅᎯ ᎨᏒ (ᎪᎱᏍᏗ) ᎠᏍᎦᏱᏗᏍᏙᏗ ᎠᏲᎯᏍᏗᏍᎩ ᎨᏐ ᎠᎾᏗᏒᎯᎲᎢ. Ꮟ ᎤᎵᏏᎩ ᎨᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏧᎦᏒᏍᏗ ᏃᎴ ᎤᏓᎴᏨ. ᎥᏝᏰᏃ ᎠᎩᏍᎦᎸᎯ ᏱᎩ ᎬᏂᎨᏒ ᎢᏨᏴᏁᏗᏱ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎢ. ”ᏰᎵ ᎤᏍᏆᎸᎲ ᏍᏗᎷᎩ, ᎧᏩᏯ ᎨᎵᏍᎩ ᎠᎦᎸᏓ ᏍᏗᎩᏍᏗ,” ᎤᏛᏁ ᎠᎳᏂ. ᎿᏉᏃ Ꮎ ᎾᎥ ᏗᏂᏁᎳ, ᎠᎴ ᎤᏂᎪᎯᏙᎸᎯ ᏗᎨᏫ ᎨᏒᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᎾᏍᎩ ᏱᎩ Ꮎ ᏧᏬᎸ ᎠᎴ ᏣᏚᎳᏗᏍᎬᎩ? ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏓᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏛ ᎤᏬᏰᏂ ᎭᏫᏂᏗᏢ ᏂᏣᏛᎾᏕᎬᎢ, ᎾᏍᎩᏃ ᎨᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ ᎠᏎᎸᎯ ᎨᏒ ᎾᎯᏳᎢ. ᎠᎴ ᎠᏴ ᎥᏝ ᎠᏓᏅᏙ ᎡᎶᎯ ᎡᎯ ᏱᏙᎦᏓᏂᎸᏨ, ᎠᏓᏅᏙᏍᎩᏂ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ, ᎾᏍᎩ ᎣᎩᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎣᎩᏁᎸᎯ ᎨᏒ ᎤᏁᎳᏅᎯ. ᎦᎸᎶ ᎠᎴ ᎡᎶᎯ ᏛᏂᎶᏐᏂ; ᎠᏴᏍᎩᏂ ᎠᎩᏁᏨ ᎥᏝ ᏴᏓᎦᎶᏐᏂ. ᏭᎬᏫᏳᏒ ᎣᏍᏓ ᎤᏓᏅᏔᏕᎢ ᎰᎻ. ᎤᏍᎪᏍᏓ ᏃᎴ ᏌᎪᏂᎨ ᎢᎦ ᎨᏒ, ᏩᏍᏛ ᎠᏦᎭᏴ ᎠᏍᏆᏚᎸ ᏫᎬᎩᏴᏍᏔᏅ, ᏦᎳᏂ ᏚᏄᏌᎥ, ᎤᎵᏏᏂᏕᏅ ᎢᏳᎵᏏᎩ. ᏗᏂᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏂᏕᎦᏪᏎᎭ, ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᏤᎵ ᎤᏃᎴ ᏥᏂᏕᎬᏁᎭ, ᎠᎴ ᎠᏥᎸ ᎠᏓᏪᎳᎩᏍᎩ ᏧᏅᏏᏓᏍᏗ ᏥᏂᎬᏁᎭ. ᏗᎦᎷᏫᏍᏔᏅᏗᏉᏗ ᎤᏛᏅ ᎠᏌᎻᏓ. ᏕᎪᏏᏏᏍᎬᎩ ᎠᎴ ᎬᏂᎨᏒ ᏂᎬᏁᎲᎩ ᎦᎶᏁᏛ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏲᎱᏒ ᏧᎵᎯᏐᏗ ᎨᏒᎢ; ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏥᏌ ᎠᏴ ᏥᏨᏯᎵᏥᏙᏁᎭ ᎾᏍᎩ ᎪᎶᏁᏛ, ᎠᏗᏍᎬᎩ. ᎤᏁᏒᎯᏴᏓ ᏥᏂᎦᎵᏍᏗ ᎤᏓᏏᏂᏕᎾ ᏣᏙᏩᏗᏍᎦ ᎤᎾᏓᎪᎾᏙᏗ, ᎤᏕᎵᏓ ᎤᏅᎪᏤ ᎧᏁᏌᎢ ᏧᏍᏆᏴᏍᏗ ᎤᎧᏖᏃᎴᎢ. ᏧᎴᎯᏌᏅᎯ, ᏣᎳᎩ ᎬᏗ ᏗᎪᏪᎳᏅ ᏂᎦᏓ ᎾᎾᎨᏎ ᎠᏤᎯ ᎢᏦᏛ ᎠᏰᎵ, ᏂᎦᏓ ᎠᏥᎶᏓ ᎨᏎ ᎤᎾᏁᏍᎨᏗ. ᎠᎴ ᏥᏯᎵᎡᎵᏤᎭ ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏣᏆᎵᏂᎪᎯᏍᏔᏅ, ᏰᎵᏉ ᎢᎬᏩᏛᏁᏗ ᏣᏇᎵᏎᎸ, ᏣᎩᏁᏤᎸ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ ᎠᎵᏥᏙᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎤᏩᏒᏉ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎪᏪᎳᏅᎯ ᏥᎩ, ᎾᏍᎩ [ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ] ᏣᏥᏰᎸᎾᏁᎴᎢ; I. ᎤᏓᎷᎸ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ ᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏃᏥᏲᎯᏍᏗᏍᎬᎾ ᎣᏣᎵᎡᎵᏤᎭ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᏳᏃ ᏕᏣᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎠᏴ ᏍᎩᏯᏛᎦᏁᎸᎯ, ᎥᏝ ᏴᏫᏉ ᎤᎾᏤᎵ ᎧᏃᎮᏛ ᎢᏳᏍᏗ ᏱᏗᏣᏓᏂᎸᏤᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎧᏃᎮᏛ, ᎤᏙᎯᏳᎯᏯ ᏥᎩ, ᎾᏍᎩᏯ ᏕᏣᏓᏂᎸᏨᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏣᏘ ᏥᏚᎸᏫᏍᏓᏁᎭ ᏕᏣᏓᏅᏛ ᏂᎯ ᎾᏍᎩ ᎢᏦᎯᏳᏅᎯ. ᎪᎩ ᎠᏰᎵ ᎤᎶᏐᏅ ᎨᏎᎢ. ᎾᏃ ᏕᎤᎴᏔᏅᎢ ᎤᏲᏞᏒᎢ ᎿᏉ ᎤᎪᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎯᎠ ᏂᎤᏪᏎᎢ; ᏓᏨᏁᎵ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᎣᏍᏛ ᎢᏳᎵᏍᏓᏁᏗ ᏕᏫ. ᎰᎻ, ᏣᏄᏏ, ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎣᏁ ᎤᎾᎩᎸᏁ, ᎠᏦᏴ ᏚᏂᏂᏴᎮ. ᎨᏍᏗ ᏳᏛᎦᏍᏔᎾ ᏂᎦᏪᏍᎬᎢ. ᎢᏣᎵᎮᎵᎨᏍᏗ ᎾᎯᏳ ᎢᎦ, ᎠᎴ ᏕᏣᎵᏔᏕᎨᏍᏗ ᎢᏣᎵᎮᎵᎬᎢ; ᎬᏂᏳᏉᏰᏃ ᎤᏣᏘ ᎡᏣᎫᏴᎡᏗ ᎦᎸᎳᏗ; ᎾᏍᎩᏯᏰᏃ ᏧᏂᏙᏓ ᏂᏚᏅᏁᎴ ᎠᎾᏙᎴᎰᏍᎩ. ᎠᏎᏃ ᎨᏥᏅᏏᏛ ᏆᏂᏆ ᎠᎴ ᏉᎳ ᎤᎾᏛᎦᏅ ᏚᏂᏣᎦᎸᎮ ᏧᎾᏄᏬ, ᎤᏂᏣᏘᏃ ᏴᏫ ᏗᏁᏙᎲ ᏫᏚᎾᏗᏢᏍᏔᏁᎢ, ᎤᏁᎷᏁᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏓᏙᎵᏣᏘᏳ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎢᏥᏙᏓ ᎾᏍᏉ ᎤᏓᏙᎵᏣᏗᏳ ᏥᎩ. ᎾᏍᎩ ᏤᎦᏈ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏏᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏕᎳ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᎰ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎣᎩᏁᎸᎯ ᏥᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎣᎩᏅᏏᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏧᎾᏓᏂᎸᎢᏍᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏚᏙᎩ ᏚᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ; ᏈᏓᏃ ᎠᏥᏍᏚᎮᎢ; ᎠᏎᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᎵᏂᎩᏗᏳ ᎤᎾᏓᏅᏖ ᎠᎾᏓᏙᎵᏍᏓᏁᎮ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗᏱ. ᏧᎾᏁᎶᏗᏃ ᎤᎾᏓᏡᎬ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏁᎢ, ᎤᏂᏅᏎᏃ ᏆᏂᏆ ᎥᏖᎣᎩ ᎢᏴᏛ ᏭᏪᏓᏍᏗᏱ. ᎾᏍᏉ ᏂᎯ ᎾᏍᎩ ᎯᏰᏯᏙᏤᎮᏍᏗ, ᎤᎵᏂᎩᏗᏳᏰᏃ ᎤᏡᏔᏅ ᎣᏥᏬᏂᏍᎬᎢ. ᎠᏰᎵᏉ ᎦᎸᏅ ᎤᏂᏰᎴ ᏧᏍᏆᏴᏍᏗ ᎤᏪᎵᏎ ᏃᎴ ᎦᏲᏟ ᎤᏅᏗ. ᎢᏓᎵᏅᏟ, ᏞᏍᏗ ᏗᏥᏲᎵ ᏱᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ; ᎠᏓᏍᎦᎢᏍᏗᏍᎩᏂᏃᏅ ᎨᏒ ᏗᏥᏲᎵ ᎨᏎᏍᏗ, ᏕᏣᏓᏅᏛᏍᎩᏂ ᏗᏣᏛᎾᏯ ᎨᏎᏍᏗ. ᎠᎴ ᎾᏍᏉ ᎡᎮ ᎩᎶ ᎢᏳᏍᏗ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎳᏏᎳ ᏧᏙᎢᏛ, ᎾᏍᏍᎩ ᎠᏥᏂᏏᏁ ᎤᏪᎿᎢ ᎤᏤᎵ ᎦᎶᎯᏍᏗᏱ, ᏧᏥᏓᎳ ᎨᏎᎢ, ᏍᏈᏍᏓ ᏓᏆᎴᎳ ᎤᎾᏦᏛ ᎠᏂᏴᏫᏯ ᏃᎴ ᎠᏂᎱᏣ ᏗᎨᏥᎾᏌᎢ, ᎤᎾᎵᎪᎯ ᎠᏂᏲᏍᎩ ᏃᎴ ᎧᏃᎮᏓ ᏗᏂᏅᏏᏙ, ᎤᏏᏩ ᎾᏅᏁᎲ ᏣᎳᎩᏱ ᎠᏰᎵ ᏃᎴ ᎠᏂᎦᎵᎢᎲ ᎠᏤᎯ. ᎢᏳᏃ ᎠᏩᏛ ᏫᏓᏯᏂᏍᎪ ᏥᎵᎢ ᎠᎴ ᎾᎥ ᎢᏳᎾᏓᎳ, ᎯᎠ ᏂᎦᏪᏍᎪᎢ, ᎢᏧᎳᎭ ᎢᏓᎵᎮᎵᎩ; ᎠᎩᏩᏛᎲᏰᏃ ᎠᏕᎸ ᏣᎩᏲᎱᏎᎲᎩ. ᎠᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᏥᏂᏣᏛᏅ ᏌᏉ ᎤᏓᏑᏯ ᏛᏆᏡᏔᏂ. ᎤᏂᎩᏒ ᎨᎵ ᏧᏚᎪᏔᏅ ᏕᎨᎦᏛᏗ ᎢᏣ. “ᏧᏍᏆᏴᏍᏗ!” ᎤᏪᎷᏁ ᏫᎵᎻ. ᎾᏍᎩᏯ ᎠᏂᏍᎦᏯ ᎤᏅᏒ ᏗᏂᏰᎸ ᏂᏚᏂᎨᏳᏒ ᎾᏍᎩᏯ ᏱᏂᏚᏂᎨᏳᎭ ᏧᎾᏓᎵᎢ. ᎩᎶ ᎤᏓᎵᎢ ᏧᎨᏳᏐ ᎤᏩᏒ ᎤᏓᎨᏳᏐᎢ. ᏣᏂᏃ ᏗᏓᏍᏚᏗᏱ ᎾᏥᏴᏔᏁᎢ, ᏥᏌ ᎨᎵᎵ ᎤᎷᏤᎢ, ᎠᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏔᎵᏁ ᏱᎰᏩ ᎡᏗᎸᏉᏓ ᎤᎾᏛᏅᎩ. ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏧᎦᏒᏍᏗ ᏓᎴᎲᏍᎬᎩ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᏙᎾ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎠᎴ ᏫᏗᏣᎵᏥᏙᎲᏏ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏂᎥ ᎨᎪᏢᏅᎯ. ”ᎨᏍᏗ ᎪᎱᏍᏗ ᎠᏛᏁᏗ ᏱᎩ ᎭᏂ,” ᎤᏪᎵᏎ. ᏃᎴ ᏍᏉ ᎣᏏ ᏱᎦᎩ ᎭᏂᏉ ᏰᏙᎭ. ᎯᎠᏍᎩᏂ ᎠᏍᎦᏯ ᏌᏉ ᎢᏳᎵᏍᎪᎸᏔᏅᎯ ᎨᏎ ᎠᏥᎸ-ᎨᎳᏍᏙᏗ ᎠᏍᎦᏂ ᎠᎫᎪᏙᏗ, ᎤᏪᏁ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎠᎦᏗᏏᏗᏢ ᎤᏁᎳᏅᎯ ᎤᏬᎸᎢ; ᎾᏍᎩ ᎢᏳ-ᏍᏗ ᏂᏗᏧᎪᏕᏍᏗ ᏕᏣᏓᏅᏛᎢ ᎠᏏᏉ Ꭴ-ᏓᎷᎴᏍᏗ, ᎢᏣᏓᏅᏖᎯᏐᏗᏱ ᏂᎨᏒᎾ ᎢᏥᏪᏍᏗᏱ ᎢᏣᎵᏍᏕᎵᏍᎬᎢ. ᏚᎳᏍᎬᏃ ᎠᏆᏓᏅᏅᎩ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵᏒᎩ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎥᏞᏍᏗ. ᎠᏴᏰᏃ ᎤᏠᏱᏉ ᎡᎩᏂᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎢᏣᎵᏅᏟ ᏥᎨᏒ ᎾᏍᎩ ᏥᏌ ᎤᏤᎵ ᎪᎯᏳᏗᏍᎩ ᎤᏂᎯ; ᎤᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏏ; ᎠᏙᎴᎰᎯᏍᏙᏗᏰᏃ ᎨᏒ ᎠᏓᏅᏙ ᎠᎴ ᏥᏌ ᎪᎯᏳᏓᏁᏗᏱ ᎤᏠᏱᏉ. ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎡᏥᏁᏉᎡᏗ ᎨᏎᏍᏗ. ᎠᎾᏙᎴᎰᏍᎩ ᎠᏂᏔᎵᎭ ᎠᏂᏬᏂᏍᎨᏍᎩ, ᎠᏂᏐᎢᏃ ᏓᏄᎪᏗᏍᎨᏍᏗ. ᎦᎶᏁᏛᏰᏃ ᏥᏌ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ, ᎠᎴ ᎠᎱᏍᏕᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᎾᏍᎩ ᎠᏓᎨᏳᏗ ᎨᏒ ᏧᏮᏗᏗᏐ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎤᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏍᎩᏍᏓᏩᏚᎦ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᏍᏆᎵᏍᎪᎸᏓᏏ ᎢᎬᏱ ᎠᏇᏅᏍᏗᏱ ᏫᏥᏂᏐᏗᏱ ᎡᏙᏓ. ᏂᎯᏃ ᎢᏥᏃᎮᏍᎩ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ. “ᏃᏗ ᎤᏍᏆᎸ ᎣᎨᏅᏍᏗ ᏦᎨᏅᏒᎢ,” ᎤᏬᏎᎴ ᏏᏆ. ᏥᏌᏃ ᎤᏙᎴᎰᏒ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᏲᎵ ᏭᏯᏅᎮ ᎠᎴ ᎤᏬᎸ ᎾᎥ ᎤᏪᎧᏁᎢ, ᎠᎧᏔᎮᎢ ᎦᏁᏄᎵ ᏄᎾᏛᏁ ᎤᏯᏍᎬ ᎭᏫᏂ ᏃᎴ ᎤᏅᏅᎨ ᎤᏂᏅᎪᎢᏍᏗ. ᎠᏛᏗᏍᎩ ᎨᏒ ᎠᎴ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏔᎵ ᎤᏛᏗᏕᎪ ᎠᏁᏙᎲᎢ. ᏍᎩᏲᎢᏳᎲᎦ ᎠᏴ ᎠᎦᏴᎵᎨᎢ ᏥᏯᎥᎢ, ᎠᎴ ᎠᎦᏴᎵᎨᎢ ᎠᏴ ᎠᎩᏯᎥᎢ, ᎢᏳᏃ ᏂᏍᎩᏲᎢᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᏓᎩᎸᏫᏍᏓᏁᎲᏉ ᏫᏂᎦᎵᏍᏙᏓ ᏍᎩᏲᎢᏳᎲᎦ. ᏩᏆᏓᏅᏖᎸ ᎢᏳᏍᏗ ᎤᏂᏃᎮᎸ, ᏰᎵ ᎠᏓᏕᏴᏙᏗ ᎾᏆᎵᏍᏔᏅ. ᎤᏲᎢᏳ. ᎢᏓᎵᏅᏟ, ᎤᏣᏘ ᎤᎵᎮᎵᏍᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ, ᎢᏳᏃ ᏧᏓᎴᏅᏛ ᎢᏥᎪᎵᏰᏍᎩ ᎢᏣᎵᏩᏛᎡᎮᏍᏗ. ᎤᎯᏐᏗ ᎡᏙᎲ ᎦᏚᏏ, ᏚᎪᎮ ᎠᏂᎬᏂᎨ ᏧᎾᎩᎸᏗ ᎤᏂᏃᎯᎸᏍᏔᏁ ᎦᎸᎶᎢ, ᏧᏩ ᎤᏂᏰᏨ ᎦᏚᏏ ᎤᎾᏣᏪᏐᎸᏍᏔᏁ. ᏚᏅᏍᏓᏕᎴᏃ ᎩᎶ ᎤᏂᏃᏁᏗᏱ; ᎠᏎᏃ ᏕᎦᏅᏍᏓᏗᏏ ᎤᏟᏉ ᎢᎦᎢ ᏓᏂᏰᎵᎯᏍᏗᏍᎨᎢ; ᏃᏗ ᎪᎱᏍᏗ ᏄᏛᏁᎴᎢ ᎤᏍᏆᏂᎩ ᎤᏃᎯᏎ ᏫᎵᎻ. ᎤᏔᎷᎾ, ᎤᎾᏂᎩᏐᏅ ᎨᏎ. ᎰᏩᏃ ᎣᏂᏱ ᏥᎩ ᎬᏱ ᎨᏎᏍᏗ, ᎢᎬᏱᏃ ᏥᎩ ᎣᏂᏱ ᎨᏎᏍᏗ. ᎤᏂᏣᎳᏰᏃ ᎨᏥᏯᏅᎲ, ᎠᏎᏃ ᎠᏂᎦᏲᎵᏳ ᎨᎦᏑᏴᏒ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᏍᎩ ᎾᏴᏫᎯ ᎤᏄᎪᏨᎯ ᎾᏍᎩ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ. ᏄᎾᎦᏌᏯᏍᏛᎾᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏂᏧᏏ ᎤᏁᏃᎮᎸᏗ ᎨᏒᎢ, ᎠᎴ ᏴᏫᏉ ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᏗᏂᎪᎸᏍᎩ ᎤᏂᏁᏨᎯ. ᎠᏛᎯᏍᏗᏍᎩ ᏧᏆᎶᎬ ᏧᏓᏑᏴ ᎦᏙ ᎤᏓᏑᏯ ᏃᏉ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎯᏍᎦᏯ, ᎥᏝ ᏱᎪᎵᎦ ᏂᏪᏍᎬᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ, ᎠᏏᏉ ᎧᏁᎨᎢ, ᏣᏔᎦ ᎤᏴᎳᏎᎢ. ”ᎤᏲ ᏘᏰᎸᏂ-ᎤᏲ ᏘᏰᎸᏂ-ᎤᏲ ᏘᏰᎸᏂ,” ᏂᏧᏪᏎ ᏌᏌ. ᏐᏁᎳ ᏐᏚᎯ ᏩᏍᏗ ᎤᏍᎪᏍᏗ ᎤᏓᏅᏖᎴ, ᎪᎱᏍᏗ ᎣᏍᏓ ᎠᎩᏍᏗ ᎦᏄᎳᏌᎥ ᏯᏩᏔ ᎤᏪᎵᏎᎢ. ᎠᏓᎯ ᎧᏅᏂᏍᎩ ᎠᏏᎾ ᏧᏏᎳᏛᏗ ᎩᎶ ᎤᏪᏲᏅ ᏱᎨᏒᎾ. ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏄᎵᏍᏔᏅᎩ, ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎢ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; “ᏤᏍᏗ ᏱᏤᎷᎨᏍᏗ ᏲᎾ ᎤᏤᏍᏙ!” ᎤᏛᏁ. “ᎠᏎ ᏳᏪᏝᎳ ᏣᏄᏏ, ᏗᎦᎴᏂ ᎢᏣ ᏫᎦᏩᏙᎣᏍᎪᎢ. ᎾᏂᎥᏉ ᏚᏃᎯᏳᏎᏍᏗ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒᎢ. ᎥᏝᏰᏃ ᎠᏰᎵ ᏳᏙᏢᎭ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ; ᎠᏰᎵ ᏥᏕᎪᏢᎭ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᏗᎪᏢᏅᎯ. ᎠᏎᏃ ᎾᏍᎩ ᎤᏟ ᎢᏯᏂᎢ ᎥᏝ ᎣᏏᏳ ᏱᏚᏰᎸᏎ ᎤᏁᎳᏅᎯ, ᎢᎾᎨᏉᏰᏃ ᎨᏥᏛᏔᏁᎢ. ᏗᎨᎦᏁᎶᏗ ᏥᎨᏣᏓᏑᏯ ᎦᏥᏔᏲᏎᎭ, ᎠᏴ ᎾᏍᏉ ᏨᏆᏁᎶᏗ ᎠᎴ ᏥᎦᏔᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏇᏔᏗᏍᏗᏍᎩ ᎦᎸᏉᏗᏳ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏥᎩ-- ᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ ᏌᏉ ᏂᏕᏨᏅ ᏕᏣᏓᏅᏛᎢ, ᏅᏩᏙᎯᏯᏛ ᏕᏣᏓᏂᏴᏛᎢ. ᎠᏴᏍᎩᏂ ᎢᏙᎯᏳᎲᏍᎬ ᏌᏉᎯᏳ ᎡᎭ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᎾᎿ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏨᏗᏓᎴᎲᏍᎦ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎡᏓᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ ᏥᏕᎭ; ᎠᎴ ᏌᏉᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏤᎭ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏥᏕᎭ. ᏌᏉ ᎾᏂᎥ ᎤᎾᎳᏅᎯ ᎠᎴ ᎤᏂᏙᏓ, ᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᏥᏕᏰᎵᏏᏕᎦ, ᎠᎴ ᏂᎯ ᏂᏥᎥ ᏥᏥᏯᎠ. ᎡᎶᎯ ᎥᏝ ᎢᏥᏍᎦᎩ ᏱᏅᎦᎵᏍᏓ; ᎠᏴᏍᎩᏂ ᎠᎩᏍᏕᎦ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏥᏃᎮᎭ ᎾᏍᎩ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏲᎢᏳ ᎨᏒᎢ. ᏞᏍᏗ ᎠᏗᎾ ᎢᏨᏲᏪᎳᏁᎲ ᎢᏨᏍᎦᏍᏓᏁᏗᏱᏉ ᏣᎩᏰᎸᏐ ᏱᏅᏩᏍᏕᏍᏗ. ᎨᏍᏗ ᎤᏂᏔᏲᎸ ᏱᎨᏎ, ᎤᎭᏲᎴ. ᏣᏄᏏ! ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᏙᎵᎪ ᎾᏍᎩ Ꮎ ᏥᏯᏙᎵᎩ ᎡᎳ, ᎠᎴ ᎩᎶ ᏥᏍᏓᏱᏓ ᎡᎳ ᎠᏍᏓᏱᏗᏍᎪᎢ. ᎠᎴ ᎫᎾᏏᎴᏅᏛ ᏴᏫ ᏙᏛᏂᏲᎯᏎᎵ ᎤᏂᏪᏢᎾᏁᏗᏱ, ᎠᎴ ᎤᏂᎵᎥᏂᏍᏗᏱ, ᎠᎴ ᎤᎾᏛᏗᏱ ᏧᏓᎿᏩᏛ ᎨᏛᎢ; ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏙᏛᎠᎴᏂ. ᎾᏍᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏂᏰᎵᏍᎬᎢ ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎠᎴ ᎾᎯᏳ ᎠᏆᏓᏅᏙ ᏓᎦᏥᏯᏐᏅᏰᎵ ᎦᏥᏅᏏᏓᏍᏗ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎠᎾᏙᎴᎰᏍᎨᏍᏗᏃ. ᎣᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎢᏳᏃ ᎡᎶᎯ ᎡᎯ ᎣᏥᏁᎸ ᎣᎩᎵᏦᏛ ᏳᏲᏨ, ᎣᎩᎭ ᎠᏓᏁᎸ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᏓᏁᎸ ᏧᏬᏱ ᏗᎬᏔᏅᎯ ᏂᎨᏒᎾ ᎠᏁᏍᎨᎲᎯ, ᎠᏲᎩ ᏂᎨᏒᎾ ᎦᎸᎶᎢ ᏗᏓᏁᎸ. ᎥᏝᏰᏃ ᎯᎠ ᏱᏚᏂᏴᏍᏕᎭ ᏚᏂᏴᏍᏕᎭ ᏥᏤᎵᎭ, ᎠᏏᏰᏃ ᏐᎣᏁᎳᏉ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒᎢ. ᎢᎸᎯᏢᏃ ᏩᏴᎸᎭ, ᎯᎠ ᏁᏍᏗᏪᏎᎸᎭ ᎠᏍᎦᏯ ᎦᏁᎳ, ᏗᏕᏲᎲᏍᎩ ᎯᎠ ᏂᎦᏪᎭ, ᎭᏢ ᎠᏁᏙᎯ ᎤᏂᏴᏍᏗᏱ, ᎾᎿ ᎧᏃᎯᏰᎩ ᎢᏧᎳᎭ ᎣᎦᎵᏍᏓᏴᏗᏱ ᎬᎩᏍᏓᏩᏗᏙᎯ. ᎦᎵᏣᏙᏗ ᎦᏙ, ᏍᏈᏍᏓ ᎤᏓᏑᏲ ᎠᏛᎯᏍᏗᏍᎩ. ᎤᏍᏘᏰᎬ ᎬᏂᎨ ᎤᏍᎪᎸ ᏂᎦᎵᏍᏗᏍᎬ, ᏗᎦᎴᏂ ᎢᏴ ᎤᏍᏙᏰᏛ ᎨᏒ, ᏏᏅᏓ ᏂᎦᎵᏍᏗᏍᎬ ᎤᏍᏙᏰᏍᎬ ᎤᏓᎵ ᏁᏂᏏ, ᎠᏰᎳᏍᏗ ᎦᏁᎦ ᏗᎦᏁᎦᎸᏙᏗ ᎬᏗᏍᎨ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎠᏂᏅ ᏗᎤᎷᏨ ᏚᏩᏛᎮ ᎠᏂᎵᏁᎢ, ᎯᎠᏃ ᏄᏪᏎᎴ ᏈᏓ; ᎦᏙᏉ, ᏝᏍᎪ ᏥᏯᏫᏍᎬ ᏌᏉ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ ᎨᏥᏯᏫᏍᏗ ᏱᎩ? ᎠᏫᏒᎥᏍᎩ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᎷᏤ ᏓᏖᏁᎮ ᏔᎳᏚ ᎢᏯᏂᏛ. ᏰᎵ ᎢᏰᏆ ᎤᏩᏓᎷᎦᏅ ᎨᏎ ᎩᎳ ᎤᏕᎶᎰᏎ ᎠᎳᏂ. ᎪᎰᏍᏗ ᎠᏍᏆᏂᎪᏙᏗ ᏭᏂᎶᏎ. ᎾᏍᎩ ᎾᏍᏉ ᎤᏛᏅ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏐᏢᎢᏍᏙᏗᏱ ᎤᏰᎸᏅᎩ. ᎾᏍᎩ ᎣᏥᏂᏴᎲᎩ ᎠᎴ ᎣᎦᏚᎵᏍᎬᎩ ᏠᎩᎧᎿᏩᏛᏍᏗ ᎣᎬᏙᏗᏱ ᎣᏥᏱᎵᏓᏍᏗᏱ. ᎠᎴ ᎠᏂᏐᎢ ᎠᏂᏧᏏ ᎤᎾᏠᎾᏍᏔᏅᎩ ᎾᏍᏉ ᎥᎬᏩᎵᎪᏁᎸᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏆᏂᏆ ᎾᏍᏉ ᎥᎬᏩᏘᎾᏫᏛᏔᏅᎩ ᎠᎾᏠᎾᏍᏗᏍᎬᎢ. ᎤᎴᏫᏍᏔᏅ ᏚᏟᏂᏆᏛᏅ ᎤᏍᎪᏒ ᎬᏂᎨ ᎦᏙ ᎬᎾᏍᏔ ᎬᏘ ᏃᎴ ᏧᏬᏘᏓ ᏕᎦᏰᏌᏛ, ᏧᎪᎳ ᏚᎦᏌᏛ ᏧᏬᏘᏓ ᎾᏍᎩᏯ ᏄᎦᏟ ᎠᎭᏳᎩ ᎤᏂᏴᏓ. ᏧᏓᏏᏃ ᎢᏯᎦᎳᏗ, ᎠᏏᏴᏫ ᎾᏍᎩ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒᎢ, ᎤᏪᏅᏎ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏗᏂᏅᎢ, ᎾᏍᎩ ᏧᏲᎯᏎᏗᏱ. ᎠᏥᏅᏏᏛᏍᎩᏂ, ᎠᏫ-ᏗᎦᏘᏯ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏫ ᏧᏤᎵᎦ ᏂᎨᏒᎾ, ᏩᏯ ᏣᎢᏒᎢ ᏩᎪᏩᏛ, ᏕᎬᏕᎪ ᎠᏫ ᎠᎴ ᎠᎵᏘᏍᎪᎢ; ᏩᏯᏃ ᏕᎦᏂᏱᏍᎪ ᎠᎴ ᏓᏗᎦᎴᏯᏍᎪ ᎠᏫ. ᏲᎾ ᎤᏤᏍᏙ ᏚᎧᎾᏁ, ᏃᏗ ᎤᏍᎦᏃᎵ ᎤᏓᎾᏏᏅᏍᏔᏁᎢ ᏌᏌ ᎤᏬᏢ ᎢᏣ, ᎠᏦᏴᎢ ᎾᎥᏂ. ᎠᏯᏦᎯ ᎬᏗ ᏚᏅᎦᎸᎮᎢ ᏗᎦᏙᎵ ᎠᎳᏂ. ᎾᏍᎩ ᏧᎵᏁᎬᎬᎩ ᎤᏛᏃᏒᎩ ᎠᎴ ᎤᏰᎵᏒᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎾᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᎠᎴ ᎦᏳᎳ ᎬᏩᎪᎲᎯ ᏥᏂᎨᏎᎢ ᏥᏚᏲᏎᎢ, ᏂᎯ ᎡᏥᏂᏴᎲ ᎠᎴ ᏗᏍᎦᎾ ᏗᏦᏰᏂ ᏕᏨᏔᏅ ᎡᏣᏛᏅ ᎠᎴ ᎡᏥᎸ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᏥᏌ ᏔᎵᏁ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏔᏈᎵᏯ ᎥᏓᎸᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏂᏙᎸᎩ ᎬᏂᎨᏒ ᏄᏛᏁᎸᎩ. ᎨᏍᏗ ᎤᏒᏂᎸ ᏱᎩ ᎤᎵᏍᏔᏴᏗ.” ᎡᏍᎦ ᎤᏰᎸᎲ ᎠᏂᏴᏫᏯ ᏚᎾᏟᎸ ᎠᏎ ᎠᏂᎫᏌᏩᎩ ᏱᎩ. ᎠᏂᏳᏩᏁᎦ ᏯᏂᎷᎬᎾ ᏥᎨᏒ ᏗᏂᏓᎭᎣᏫ ᏥᏂᎨᏐ ᎠᏂᎫᏌᏩᎩ. ᏓᏳᏍᏚᎢᏒᏃ ᎦᎶᎯᏍᏗ ᎠᎴ ᏓᏳᏣᏅᎢ ᎤᏣᎾᏃ ᎤᏍᏚᏅ ᎦᎶᎯᏍᏗ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᏂᎦᏛ ᏗᎬᏩᎦᏗᎴᎩ ᎤᎾᏕᎰᏎᎢ; ᏂᎦᏛᏃ ᏴᏫ ᎠᎾᎵᎮᎵᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᎦᎸᏉᏗᏳ ᎾᏍᎩ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ. ᎥᏍᎩᏕᎲ Ꮩ ᎠᏎ ᏄᎵᏍᏔᏁ ᏭᏲᎱᏒᎮᏃ ᎢᎸᏍᎩ ᏫᏄᏒᏝ. ᏃᎴ Havana ᏏᎦᏫ ᎪᎢ ᎠᎭᎾᏬ ᏗᏇᏅᏔᏅ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎠᏎ ᎾᏍᏉ ᏗᏐᎢ ᏕᎦᏚᏩᏗᏒ ᎦᏥᏯᎵᏥᏙᏁᏗ ᎠᎩᏃᎮᏗ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎾᏍᎩᏰᏃ ᎢᏯᏆᏛᏁᏗᏱ ᏨᎩᏅᏒ. ᏚᏄᎪᏫᏒᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏍᏗᏍᎦᏯ, ᎦᏙ ᏓᎦᏛᏁᎵ ᎥᎩᏍᏕᎸᏗᏱ? ”ᎠᏯᏗᏍᏉ ᎠᏉᏟ ᏍᏉ ᎡᎵᏍᏗ,” ᎤᏛᏁ ᏏᏆ. ᎤᏏᏙᎵ ᎠᏍᏔ ᎬᏔᏅ ᎬᏅᎯ ᎠᎵᏍᏚᎶ ᎠᏆᎵᏍᏚᎳᏅ, ᎧᎸᎬ ᎠᏂᏴᏫᏯ ᎤᏂᏐᏯᏍᏔᏅ, ᎤᎵᏍᎨᏛ ᎠᎾᏓᏅᏖᎵᏙᎲ. ᎠᏂᏫᎾ ᎠᎾᏓᏍᏔᏴᎲᏍᎬ ᎤᎵᏏᏂᏕᏅ ᎤᏂᎩᏍᏗ, ᏄᎾ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᏃᎴ ᏍᎨᏫ. ᎤᏲ ᏗᎧᏃᏗ ᎩᎳ ᎠᎵᏥᏍᎬ ᏧᎳᏍᎩ ᏦᎢ ᏗᎦᏅᏌᏗ ᏔᎷᎩᏍᎩ ᎤᎾᏛ. ᎢᏳᏰᏃ ᎾᏍᎩ Ꮎ ᎠᎲᏛ ᏥᎩ ᎦᎸᏉᏗᏳ ᏱᎨᏎᎢ, ᎤᏟᎯᏳ ᏭᏓᎪᎾᏛᏗ ᎦᎸᏉᏗᏳ ᎾᏍᎩ Ꮎ ᏥᏅᏩᏍᏗᏉ. ᎯᎠᏃ ᏧᎬ ᎡᏘᏴ ᎬᏩᎵᏬᏨ. ᏙᏳ ᎠᎩᏠᎨ ᏩᎢᏒ ᏩᎭᏯ ᎠᎴ ᎤᎵᏰᏗᎮ. ”ᎤᏰᎸᏗᏃ ᎠᏉᏠ ᏫᏥᎢᎦ ᎨᏒ ᎨᏍᏗ ᏂᎬᎾᏛ ᎨᏙᎢ ᏱᎩ. ᎠᏋᏌ ᎢᏗᏋᏁᎸ ᎤᏛᏅ Mrs. Chapman. ᎠᎴ ᎤᏣᏘ ᎠᏏ ᎢᏳᏓᎴᎩ ᎪᎱᏍᏗ ᎬᏬᏎᎮ ᎬᏩᏐᏢᎢᏍᏗᏍᎬᎢ. ᎨᏍᏗ ᎠᎳᏑᎶ ᏱᎨᏎ ᎯᎠ. ᎬᏩᏩᏛᎲᏃ ᎥᏓᎵ ᎢᏍᎪᏂᏗᏢ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎯᎳᎪ ᎢᏳ ᎠᏂ ᏣᎷᏤᎢ? ᎤᏁᎳᏅᎯᏰᏃ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᏕᎤᎸᏫᏍᏓᏁᎭ ᏕᏣᏓᏅᏛᎢ ᎾᏍᎩ ᎢᏣᏚᎸᏗᏱ ᎠᎴ ᎾᏍᏉ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ. ᎤᎾᏂᎩᏒᏃ ᎾᎿᏂ, ᎨᎵᎵ ᎠᏰᎵ ᎤᏂᎶᏎᎢ; ᎥᏝᏃ ᏳᏚᎵᏍᎨ ᎩᎶ ᎤᏙᎴᎱᎯᏍᏗᏱ. “ᎠᏎᏃ ᏌᎳᏓ,” ᎨᏍᏗ ᎤᏣᏓ ᎣᏍᏓ ᏱᎩ ᎠᏯ.” ᏚᏯᏪᎨ ᏚᎵᏔᏕᏏᏙᎸ, ᎤᏓᏅᎦᎸᏓ ᎧᏁᏍᎪ ᎤᏂᏏᏁᎢ. “ᏣᏲᎪ ᎤᏲᏨ ᏥᏍᏆ ᎠᏯ ᏗᏆᏤᎵ ᏚᏩᏂᎦᏢ. ᎠᎴ ᏂᎯ ᎦᎶᏁᏛ ᏧᏤᎵᎦ; ᎦᎶᏁᏛᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᏃᏗ ᏔᎵᏁ ᎱᏍᏚᎩᏎ ᎧᏁᏌᎢ, ᎤᎳᎩᏎ ᏏᏆ, ᎤᎧᏛ ᏭᎾᏓᏝᏁ. ᏔᎵᏍᎪᎯᏍᎩ ᏧᏕᏘᏴᏓ ᎣᎭᏁ ᎩᎦᎭ ᏚᏙᏪᎳᏅ ᎦᏙ, ᎠᏯ ᎠᏰᎵ ᎢᏯᏆᏕᏘᏴᏓ, ᎦᏲᏟ ᏗᏆᏟᎸ, ᎤᏍᎦᏎᏗ ᏃᎴ ᎤᏲ, ᏓᏂᏍᏔᏲᎯᎲ, ᎠᏂᏍᎦᏯ ᎠᏂᏍᎩᎾᏗᏍᎬ, ᏎᎦᏉ ᎡᏝᏪᎯ ᏂᎦᎵᏍᏘᏍᎬ. ᎦᎸᎳᏗ ᏭᏔᎷᎪ, ᎠᎦᏗᏓ ᏧᏏᎳᏛᏙᏗ ᎦᏅᎪᎢᏍᏗᏍᎪ, ᏃᏗ ᎦᏃᎸᎥᏍᎬ ᎤᏘᏁᎪ. ᎨᏍᏗ ᏂᎯ ᎠᎬᏱ ᎠᏫᏂ ᏍᎩᎾᎾ ᎢᏳᏛᏁᎸᏱᎩ. ᏑᏓᎵ ᎢᏳᏩᏂᎸ ᎤᏰᏤ, ᎤᎪᎮ ᎠᎦᏍᎬ, ᎤᏕᏯᏔᏁᎴ. “ᎭᏩ, ᏂᎯᏗ ᎣᏍᏓ ᎤᏍᏗ ᏏᏆ, ᏃᎴ ᏣᏔᎷᎩᏍᎩ ᎨᏎᏍᏗ. ”ᏙᎩᎢᏳᏍᏗ? ᎩᎶ ᏰᏥᎥᎡᎸ ᎪᎱᏍᏗ ᎤᏍᎦᏅᏨ, ᎠᏴ ᎾᏍᏉ ᏥᎥᎡᎭ; ᎢᏳᏰᏃ ᎠᏴ ᎪᎱᏍᏗ ᎠᏍᎦᏅᏨᎢ ᏱᏥᎥᏍᎦ, ᎾᏍᎩ ᏥᎥᎡᎸᎯ ᏂᎯ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏥᎥᎡᎸᎩ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ; ᎿᏉᏃ ᏚᏂᎳᏫᏤ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏁᎲ ᏴᏫ, ᎦᏁᎸ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎧᏯᏆ ᏧᏙᎢᏛ; ᎦᏅᎯᏓ ᎠᏍᏕᏯᏓ ᏫᎦᏓᎡᎢ ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ. ᏴᎩ ᏫᏚᏩᏘᏁᎢ ᏗᏯᏖᏃ ᏣᏄᏏ, ᏓᏳᏏᏅᏍᏗ ᏱᎨᏒᎾ ᏫᎵᎻ. “Ꭷ ᏃᏗ ᏔᎵᏁ ᎢᎦᏪᏍᏗ!” “ᏌᎳᏓ, ᎤᏛᏁ ᏫᎵᎻ. ᎤᏴᏣ ᎧᏫ ᎤᏅᏗ ᎠᏑᏱ ᎤᏓᏅᎵᏰᎥ ᎠᏥᏍᏙᏗ. ᏗᎨᏥᎤᏍᏕᏎᎸᎯᏃ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎦᏛ ᏈᏓ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎤᏣᏘ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᏉ ᎨᏥᏐᏅᏰᎸ ᎨᏥᏁᎸ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ᎣᏂᏃ ᏏᎵᏱ ᎠᎴ ᏏᎵᏏᏱ ᏩᎩᎶᏒᎩ. ᎠᎴ ᎨᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ, ᎠᎴ ᏔᏕᏲᎲᏍᎩ, ᏔᏕᏲᎲᏍᎩ, ᎬᏩᏃᏎᏗᏱ ᏴᏫ. ᎠᎬᏱᏣ ᏂᏚᏩᏅ ᏧᏬᏰᏂ, ᏓᏒᎭᏂᎲ ᏚᏅᏏᏴ ᎦᏍᎩᎸ, ᏗᎦᏍᎩᎶ ᏗᎧᏃᎨ, ᎧᏁᏌ ᎦᎵᏗᏓᏅ ᏦᎯᏍᏙᏗ ᏧᏃᏩ, ᎧᏁᏌᎢ ᏗᎭᎾᏬ ᏕᎦᎸᏛ. ᎤᎾᏛᎦ-ᏅᎯᏉᏍᎩᏂᏃᏅ ᎨᏎᎢ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎾᏍᎩ Ꮎ ᎤᏲ ᏥᏂᎬᎿᏕᎬ ᏧᏩᎫᏔᏅᏒ, ᎿᏉ ᎠᎵᏥᏙᎲᏍᎦ ᎢᎧᏃᎮᎭ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎢᎸᎯᏳ ᏣᏛᏗᏍᎬᎩ. ᎠᏎᏃ ᎤᏟ ᎦᎸᏉᏗᏳ ᎠᎩᏃᎮᏍᎩ ᎠᏇᎭ ᎡᏍᎦᏉ ᏣᏂ; ᏗᎦᎸᏫᏍᏓᏁᏗᏰᏃ ᎠᎦᏴᎵᎨ ᎠᎩᏁᎸᎯ ᎠᎩᏍᏆᏗᏍᏗᏱ, ᎾᏍᎩ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ, ᎠᎩᏃᎮᏍᎪ ᎠᏴ ᎠᎦᏴᎵᎨᎢ ᏅᏛᎩᏅᏏᏛ ᎨᏒᎢ; ”ᎠᏤ ᏍᏔᎵᎢ ᏱᎩ, ᎠᏎᎩ ᎯᏲᏍᏓᏁ ᎤᏣᏪᏐᎸᏍᏛ; ᏃᎴ ᎠᎯᏗᎨ ᎠᏲᏍᏙᏗ ᏍᏔᎵᎢ ᎨᏒ ᎠᎬᏱ ᏯᏰᏍᏔᎾ ᏑᎾᎴᎢ. ᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏥᎩᎵᏲᎦ; ᎠᏎᏃ ᎥᏝ ᏱᎦᏕᎣᏍᎦ; ᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᏥᏥᏯᎵᏍᎦᏍᏙᏔᏅ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎠᏉᎯᏳᎭ ᏰᎵᏉ ᎬᏩᏍᏆᏂᎪᏙᏗ ᎨᏒ ᎾᏍᎩ ᏥᏥᏯᎨᏅᏴ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎠᏍᏆᎲᎭ. ᎨᏓᎵᏰ ᏭᏂᎶᏎ ᎤᏂᏃᏕᎾ, ᏌᏌ ᎠᏨᏯᎢ ᎣᏁ ᎠᎢᏎ, ᎬᏄᏯᎩᏍᎨ. ᎤᏛᎦᎾ ᏑᏓᎵᏉ ᎠᏕᎸ ᏚᎵᎬᏩᏢ, ”ᏯᎩᏩᎯ,” ᎤᏛᏁ. ᎢᏤ ᎤᎵᏑᏫᏓ ᎨᏎ ᎤᏴᏍᏗ. ᎤᎾᏔᏂᏗᎨ ᎠᏂᏣᏗ ᎠᎾᎵᏍᎦᏰᎬᏍᏔᏁᎮ. ᎾᏍᎩ ᎢᏣᎵᏍᎪᎸᏓᏁᏗᏱ, ᎾᏍᎩᏯ ᎤᏪᎿᎢᏳ ᎨᏒ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎲᎢ, ᎾᏍᎩ ᎤᏣᏘ ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ ᏕᏣᏓᏅᏛᎢ ᎤᏓᏅᏙ ᎤᏮᏙᏗᏱ; ᎠᎴ ᏥᎻ ᏤᏈᏗ ᎤᏪᏥ, ᎠᎴ ᏣᏂ ᏥᎻ ᏗᎾᏓᏅᏟ; ᎠᎴ ᎾᏍᎩ ᏉᎠᎾᏥ ᏚᏬᎡᎢ, ᎾᏍᎩ ᎠᏴᏓᏆᎶᏍᎩ ᏧᏪᏥ ᎦᏛᎦ; ᎢᏥᏁᎫ ᎨᎴᏏᏱ ᎢᏤᎯ, ᎦᎪ ᎢᏥᎶᎾᏍᎩᏔᏅ, ᎾᏍᎩ ᎢᏦᎯᏳᏗᏱ ᏂᎨᏒᎾ ᏂᏨᏁᎸ ᎤᏙᎯᏳᎯ ᎨᏒᎢ, ᏂᎯ ᏕᏥᎧᏅ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎾᎬᏁᎸ ᏓᏓᎿᏩᏍᏛ ᎦᏛ ᎢᏤᎲᎢ. ᎣᏍᏓ ᏘᏰᎸᏂ ᎤᏁᏍᏓᎶᏨ ᎡᎶᎯ, ᏣᎸᏉᏗ ᏰᏃ ᎰᎺ ᏃᎴ ᎨᏍᏗ ᎡᏍᎦ ᏱᏂᏓᏨᏁᎵ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎨᎵᎵ ᎢᏤᎯ, ᎦᏙᏃ ᎢᏥᏙᎾᎠ ᎦᎸᎳᏗ ᏫᏙᏥᎧᎿ? ᎾᏍᎩ ᎯᎠ ᏥᏌ ᏤᏥᏯᏅᏏ ᎦᎸᎳᏗ ᏥᏫᎦᎶᎯ ᎾᏍᎩᏯ ᏅᏛᏛᏁᎵ ᏓᎦᎷᏥ ᏤᏥᎪᏩᏛ ᎦᎸᎳᏗ ᏥᏫᎦᎶᎯ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᎩᏨᏛ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏧᎾᏤᎵ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᏎᏃ ᎭᏕᎶᎰᏍᎨᎢ ᎨᏍᏗ ᎣᏍᏓ ᏱᎨᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏃᏉ---ᏍᏈᏯ ᏴᏫ. ᎢᎬᏱ ᎾᏍᎩ ᎯᎠ ᏂᏥᎦᏙᎥᏎᏍᏗ ᎾᏍᎩ ᏌᏉ ᎤᏅ ᎠᏙᎴᎰᏒᎯ ᎪᏪᎸᎢ ᎤᏩᏒ ᎨᏒ ᏗᎬᏁᏢᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎪᏍᏘᏳᎳ ᎦᎶᎪᏗ ᏧᏙᎢᏓ ᎯᎸᎢᏴ ᏣᏂ ᎠᏃᏎᎲ. ᎾᏍᎩ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᎩᎬ ᎠᏨᏅᎯ ᎨᏒ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᏩᏓᎴᏅᏛ ᎨᏥᏔᏲᏎᏗᏱ ᎪᎯ ᏣᏁᎭ; ᎢᏳᏰᏃ ᏕᏫ, ᏣᎬᏫᏳᎯ, ᏱᎪᏎᎭ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎤᏪᏥ ᏱᎩ? ᎠᎴ ᎠᎦᏴᎵᎨ ᏅᏛᎩᏅᏏᏛ ᎾᏍᎩ ᎠᎩᏃᎮᎸ. ᎥᏝ ᎢᎸᎯᏳ ᏱᎨᏣᏛᎦᏃ ᎧᏁᎬᎢ, ᎠᎴ ᏱᎨᏥᎪᎰ ᏄᏍᏛᎢ. ᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ. ᏥᏌᏃ ᎤᏛᎦᏅ ᏣᏂ ᎠᏥᏍᏚᎲᎢ, ᎨᎵᎵ ᏭᎶᏎᎢ. ”ᎣᏍᏓ,” ᎤᏛᏁ ᏫᎵᎻ. ᎾᏍᎩ ᏎᎳᎩ ᏎᎳᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎴᎪ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏇᎵᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎯᏆ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏎᎳ ᎤᏪᏥ ᎨᏎᎢ, ᎤᎩᏨᏛᏃ ᎤᏚᎵᏍᎬ ᎢᏳᏍᏗ ᏚᏳᎪᏛ ᎤᏙᎴᎰᎯᏍᏗᏱ ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᎠᏂᏧᏏ ᎬᏭᎯᏍᏗᏍᎬᎢ, ᎤᎸᏒᎲᎩ, ᎠᎴ ᎤᏁᏨᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏂᎦᏛ ᏗᏂᎳᏫᎩ, ᎤᎾᏓᏟᏐᏗᏱ, ᎠᎴ ᎤᏘᏃᎸᎩ ᏉᎳ, ᎠᏂᏅᎢᎬᏱᏢ ᎤᏪᎧᏅᎩ. ᎠᏌᎻᏓ ᏃᎴ ᎠᏂᏐᎢ ᎠᏂᏲᏍᎩ ᏚᎾᏥᎭᎷᏅ, ᎤᎧᎵᎸ ᎦᏅᏃᏫ ᎤᏬᎦᏒ. ᎤᏲᎯᏍᏔᏅ ᎪᎩᏍᎬ ᏓᏆᎧᎾᏅ, ᏂᎯᏍᎪᏃ ᏗᏘᏲᎯ? ᎤᏛᏅ. ᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᎤᏕᎵᏗᏳ; ᎠᏎᏃ ᎦᎶᏁᏛ ᎠᎴ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎦᏥᏁᎢᏍᏗᎭ. ᎠᎴ ᎤᏣᏛᎩ ᎤᏟ ᎢᎦᎢ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸ ᏥᏌ ᎬᏩᏍᏓᏩᏗᏙᎭ ᎠᏂᎦᏔᎲᎢ, ᎠᏂ ᎪᏪᎵᎯ ᏂᎪᏪᎸᎾ; ᏧᎾᏓᎴᏛᏰᏃ ᏴᏫ ᏙᏛᎾᎴᏂ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᏙᏛᎾᏓᏡᏔᏂ; ᎠᎴ ᎦᏙᎯ ᏓᎵᏖᎸᏂᏙᎮᏍᏗ, ᎠᎴ ᏓᎪᏄᎶᏏᏙᎮᏍᏗ ᎠᎴ ᎤᏕᏯᏙᏗ ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ; ᎯᎠ ᎾᏍᎩ ᎠᏓᎴᏂᏍᎬ ᎠᎩᎵᏯ. ᎤᏏᏩ. ᎯᎠ ᏄᏪᏎᎢ; ᎦᎶᏄᎮᏛ ᎠᎴ ᎤᏁᎫᏥᏛ ᏣᎧᎵᏨᎯ, ᎠᏍᎩᎾ ᎤᏪᏥ, ᎭᏡᏗᏍᎩ ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏝᏍᎪ ᏴᏘᏑᎵᎪᏥ ᎤᏣᏘᏂ ᏂᏕᎲᏁᎲ ᏚᏳᎪᏛ ᏅᏃᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ? ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎠᏂᏍᎩᎾ ᎬᏩᏄᎪᏤᎸᎯ, Ꭴ-ᏍᏗᏰᏔᏁ ᎤᎵᏍᎪᎸᏓᏁᏗᏱ ᎤᏍᏓᏩᏗᏓᏍᏗᏱ; ᎠᏎᏃ ᏥᏌ ᎤᏁᏤᎴ ᎤᏓᏅᏍᏗᏱ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᎶᎯᏍᏗ ᎱᎷᏨ ᎠᎨᏯ, ᎨᏍᏗᏗ ᎩᎶ ᏱᏓᎪᏩᏘ ᎨᎵ ᎤᏛᏅ. ᎡᏝᏪᎯ ᎦᏙᎨ ᏌᎳᏓ, ᎭᏫᏂᏣ ᎦᎾᎡ ᏛᎦ, ᎠᏛᏅᎢᏍᏗᏍᎨ ᎤᏩᏯᎩᏍᏗ. ᎢᏓᎵᏅᏟ, ᎢᏨ ᏔᏲᏎᎭ ᎠᏴ ᎾᏆᏍᏛ ᎾᏍᎩᏯ ᎢᏣᎵᏍᏙᏗᏱ; ᏂᏣᏍᏛᏰᏃ ᎾᏍᎩᏯ ᎾᏆᏍᏗ ᎠᏴ, ᎥᏝ ᎪᎱᏍᏗ ᎤᏐᏅ ᎢᏍᎩᏴᏁᎸᎯ ᏱᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎾᏍᎩ Ꮎ ᏧᏁᏤ ᎢᎦᎦᏘ ᎤᎵᏏᎬ ᏧᎸᏌᏓᏗᏍᏗᏱ, ᏚᎸᏌᏓᏗᎸ ᏦᎩᎾᏫᏱ, ᎾᏍᎩ ᎣᎩᏁᏗᏱ ᎢᎦ-ᎦᏘ ᎠᎦᏙᎥᎯᏍᏙᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎧᏛ ᏨᏗᏓᎴᎲᏍᎦ. ᎤᏩᏒ ᎤᏓᏅᏖᏛ ᎢᎩᎾᏄᎪᏫᏒ ᎤᏩᏔᏅ ᎧᏃᎮᏛ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎠᏴ ᎢᎬᏱ ᎡᎦᏁᎳᏅᎯ ᎾᏍᎩᏯ ᎢᎦᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎨᎦᏁᎳᏅᎯ ᎨᏒᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏥᏌ ᎠᏕᎸ ᏗᏍᏆᏂᎪᏗᏱ, ᎾᎯᏳ ᏓᏕᏲᎲᏍᎬ ᎤᏛᎤ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎠᎴ ᎥᏝ ᎩᎶ ᏳᏂᏴᎮᎢ, ᎥᏝᏰᏃ ᎠᏏ ᏳᏍᏆᎸᎡᎮᎢ. ᏞᏍᏗ ᎢᏣᏓᎳᏫᏎᎸᎩ, ᏂᎯᏃ ᎥᏝ ᏴᎦᏰᎳᏫᏏ; ᏞᏍᏗ ᏗᏣᏓᏚᎪᏓᏁᎸᎩ, ᏂᎯᏃ ᎥᏝ ᏱᏙᎦᏰᏧᎪᏓᏏ; ᏕᏥᏙᎵᎨᏍᏗ ᎨᏥᏍᎦᏅᏤᎯ, ᏂᎯᏃ ᎠᏎ ᎡᏥᏙᎵᏍᏗ ᎨᏎᏍᏗ; ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎩᎶ ᏳᏎᎦᏤᎸ ᏳᏍᎦᏅᏨ, ᏂᎯ ᎠᏓᏅᏙ ᏗᏣᏘᏂᏙᎯ ᎡᏥᏯᏂᏐᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏳᏛᏁᎸᎯ ᎤᏓᏙᎵᏍᏗ ᎢᏣᏓᏅᏛᎢ, ᎮᏯᏔᎮᏍᏗ ᏨᏒ ᎨᏒ ᏱᏅᏎᎦᎩ ᏂᎯ ᎾᏍᏉ ᏰᏣᎪᎵᏯ. ᏃᏗ ᎦᎸᎶ ᎢᏣ ᏩᎵᏖᎸᏂᏍᏗ, ᏚᎧᎭᏛ ᏫᏓᎪᏩᏛᏗ, ᏃᎴ ᎠᏍᏕᏯᏓ ᎠᏓᏄᏖᏲᎰ. ᎤᏬᎯᏨᏃ ᎾᏂᎾᏄᎪᎬᎾ ᏄᎵᏍᏔᏅ ᏅᏙ ᎠᎴ ᏃᏈᏏ, ᎠᎴ ᎦᏲᎵᏉ ᏂᎨᏒᎾ ᎣᎩᏃᎸᏅ, ᎿᏉ ᎦᏲᎦᏛᏂᏗᏍᏗ ᎨᏒ ᎤᏚᎩ ᎣᎬᏒ ᎤᎵᏛᏔᏅᎩ. ᏣᏄᏏ ᎤᎵᏍᏙᏯᎲᏎ ᏃᎴ ᎤᎾᎶᎢᏓ ᎤᎿᏬᎥᏎ ᏃᎴ ᏕᎷᎨ ᎠᏯᏨᏗ. “ᎭᏕᏬ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᏰᎸᎢᏰᏃ ᎤᎬᏩᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏍᏗᎩᏳ ᎠᏓᏍᏕᎵᎭ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᏗᏁᎶᏙᏗ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎬᏩᎵ ᎬᏩᏓᏍᏕᎸᏗ, ᎾᏍᎩᏰᏃ ᎠᏚᎢᏍᏗ ᎠᏥᏁᏗᏱ ᎬᏅ ᎪᎯ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏒᎢ. ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᏂᏗᎬᏩᏓᎴ ᏥᏳ ᏓᏈᎵᏯ ᏂᏙᏓᏳᏂᏅᏍᏔᏅᎯ ᏚᏂᏃᎸᎩ ᎾᎥᎢ ᎾᎿ ᎤᎬᏫᏳᎯ ᎤᎵᎮᎵᏨᎢ ᎠᎴ ᎤᎾᎵᏍᏓᏴᏅᎢ-- ᎾᏍᎩ ᏥᏓᏥᏲᏎ ᎠᏴ ᎢᎩᏍᎦᏅᏨ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎠᎴ ᏥᏓᎦᎴᏔᏁ ᎠᏴ ᎢᎦᏚᏓᎴᏍᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏂᎥ ᎩᎶ ᎯᎠ ᏥᏂᏥᏪᎠ ᎠᎾᏛᎩᏍᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎾᎾᏛᏁᎮᏍᏗ, ᎠᎦᏔᎿᎢ ᎠᏍᎦᏯ ᏙᏓᎦᏥᏯᏟᎶᏍᏔᏂ, ᎾᏍᎩ ᏅᏲᎯ ᏧᏁᏍᎨᎮᎢ; ᎾᏍᎩᏃ Ꮎ ᏰᎵᏉ ᎢᎬᏩᏛᏁᏗ ᏥᎩ, ᎤᏣᏘ ᎤᎶᏒᏍᏗ ᎢᎦᎢ ᎢᏗᏔᏲᎯᎲᎢ, ᎠᎴ ᎢᏓᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩᏯ ᎤᏠᏱ ᎤᎵᏂᎩᏛ ᎨᏒ ᏥᏚᎸᏫᏍᏓᏁᎭ ᎠᏴ ᏕᎦᏓᏅᏛᎢ, ᎠᎳᏂ ᏃᎴ ᎰᎻ ᏐᏁᎳ ᎢᏳᏩᏂᎸ ᏫᏓᏂᏅᎨᎢ. ᏧᏍᏆᏴᏍᏗ, ᎧᏁᏍᎪ ᎦᏟᎲ ᎤᏛᎦᎾ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎤᏰᎢᏍᏔᏁ. ᎠᎴ ᎤᏣᏛ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎡᎲ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏖᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎤᏁᎲ ᏛᏴᏜᏗ. ᎡᏈᏌᏍᎩᏂ ᎨᏙᎮᏍᏗ ᎯᏍᎦᏍᎪᎯᏁ ᎢᎦ ᎢᏯᏍᏗ. ᎢᏤᎾ; ᎬᏂᏳᏉ ᎢᏨᏅᎵ ᎤᏂᏃᏕᎾ ᎠᏂᎩᎾ ᏩᏲᎯ ᏥᏩᏂᎶᏍᎪ ᎾᏍᎩᏯᎢ. ᏂᎦᏗᏳᏃ ᎬᏩᎸᏉᏗᏍᎨᎢ ᎠᎴ ᎠᏂᏍᏆᏂᎪᏍᎨ ᎾᏍᎩ ᏃᏒ ᎤᏬᏂᏒᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏝᏍᎪ ᎯᎠ ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᏱᎩ? ᏥᏙᎬᏉ ᎠᏘᏲᏍᏙᏗ ᏄᎵᏍᎨᏗᏴ ᎠᎫᏩᏌ ᎠᎫᏤᎵᎪ ᎦᏙ. ᎣᏍᏛ ᎢᏓᏓᏅᏓᏓ ᎠᎴ ᎢᏓᎵᎮᎵᎩ, ᎠᎴ ᎾᏍᎩ ᎡᏗᎸᏉᏓ; ᎤᏃᏕᎾᏰᏃ-ᎠᎩᎾ ᏣᎦᏨᏍᏙᏗᏱ ᎠᏍᏆᎸ, ᎤᏓᎵᎢᏃ ᎠᏛᏅᎢᏍᏔᏃᎾ. “ᎨᏍᏗ ᏳᏫᏗᏣᎧᎾᎾ ᎠᎩᏍᏘᏰᎬᎢ!” ᎤᏛᏁ ᎠᎳᏂ. ”ᏍᏇᏲᎲᎦ, ᏱᏥᏏᎳᏛᎥᎦ. ᏧᏪᏥ ᏗᎦᏅᏙᏗ, ᏭᎬᏫᏳᏒ ᎠᏉᏒᏅ.” ᎠᏎᏃ ᏂᎦᏛ ᎠᏂᎦᏔᎲ ᎤᏓᏱᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ ᏱᏥᎦᏔᎭ ᏂᏪᏍᎬᎢ. ᏙᏓᏓᏛᏁᎵ ᎢᏕᎲᎢ? “ᎨᏍᏗ ᏂᎦᏓ ᏳᏩᎾᏔ ᏩᎭᏯ!” ᎬᏩᎷᏤᎴᏃ ᎠᎴ ᎬᏩᏰᏍᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᏔᏕᏲᎲᏍᎩ, ᏔᏕᏲᎲᏍᎩ, ᏓᏲᏩᏗᏒᏂ! ᎿᏉᏃ ᎤᏗᏛᎮ ᎠᎴ Ꮪ-ᏍᎦᏤ ᎦᏃᎸᎥᏍᎬ ᎠᎴ ᏓᎵᏍᏗᎳᏁᎬ ᎠᎹ; ᎤᏂᏑᎵᎪᏤᏃ ᎠᎴ ᎤᏓᏥᎾᏍᏛᎯ ᏄᎵᏍᏔᏁᎢ. ᏲᎾ ᏓᎶᏂᎨ ᎤᎵᏦᎯᏓ ᏦᎢ ᏕᎦᏰᏌᏛ ᎢᏳᎭᎨᏛ ᎦᏚᎢᏣ ᎩᎦᎨ ᎤᏇᏓᏢ, ᎤᎵᎪᎲᏍᏗ ᎠᎦᏗᏛ ᏚᎬ ᏘᎵ, ᏩᏁ ᏎᏗ, ᎫᎴ ᏃᎴ ᎧᏩᏯ . ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎡᎺᏅ; ᎣᏍᏛ ᎡᏣᏁᎢᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎸᏉᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎯᎦᏔᎾᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎵᎮᎵᏤᏗ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏣᎵᏂᎩ-ᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏣᎵᏂᎪᎯᏍᏗ ᎨᏒᎢ, ᏣᏤᎵ ᎨᏎᏍᏗ ᏍᎩᏯᏁᎳᏅᎯ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ. ᎩᎶ ᏕᎦᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ. ᎲᎦ ᏄᏍᏗ...ᏐᏉ, ᏔᎵ, ᏦᎢ, ᏅᎩ, ᎯᏍᎩ, ᏑᏓᎵ, ᎦᎵᏉᎩ. ᏧᏂᏍᏗ ᏍᎦᏃᎵ ᎠᏁᏙᎯ ᏧᎵᏏ ᏣᎵ, ᎡᎳᏗᎨ ᎢᎾᏘ ᎠᏂᏧᏣ ᏃᎴ ᎠᏂᎨᏳᏣ ᎠᏂᏏᏴᏫᎭ ᎤᏂᏰᎶᏒ ᏣᎵ, ᏧᏃᏰᎾ, ᎤᏂᏍᏘᏰᎬ ᎠᎴ ᎤᏙᏌᏘ ᏗᏂᎦᏙᎵ - ᎣᎭᏂ ᎤᏂᎾᎵᏏᏗᏒ ᎦᏚᏏ. ᎤᎭᎨᏛ ᎠᏙᎯ ᎦᏚᏏ. ᏚᏁᏤᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏌᏯ ᏰᎵᏉ ᏄᏪᏒ ᎤᏙᎴᎰᏒ ᏂᎯ ᎢᏣᏠᎾᏍᏗ ᎢᏥᏁᎢᏍᏗᏍᎬᎢ, ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎯᎠ ᎾᏍᎩ ᏴᏫ ᎬᎩᎸᏉᏗᎭ ᏚᏂᎭᏁᎦᎸ ᏓᏅᏗᎭ, ᏧᏂᎾᏫᏍᎩᏂ ᎢᏅᎯᏳ ᏂᏚᏅᎿᏕᎦ ᎠᏴ ᎾᏆᏛᏅᎢ. ᎠᎴ ᎠᏴ ᎢᏓᎵᏅᏟ, ᏫᏨᎷᏤᎸ, ᎥᏝ ᎣᏌᏂ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎠᎴ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏱᏨᎷᎯᏍᏓᏁᎴᎢ, ᎢᏨᏃᏁᎲ ᎪᎯᏳᏗᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎤᎾᏙᎴᎰᏒ ᎤᏍᏆᏂᎪᏗᏳ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᏗᏂᏲᎵ ᎤᏁᎷᎬ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎰᏌᎾ ᏕᏫ ᎤᏪᏥ! ᎤᏣᏘ ᎤᏂᏐᏅᏤᎸᎩ; ᎠᎴ ᎦᎵᏉᎩ ᎠᏂᏴᏓᏆᎶᏍᎩ ᎤᏂᏴᏓᏆᎶᎥ, ᏓᎪᏪᎳᏂᏒᎩ; ᎠᏆᏛᎦᏅᎩᏃ ᎧᏁᎬ ᎦᎸᎳᏗ ᏓᏳᎶᏒᎩ ᎯᎠ ᏅᏛᎩᏪᏎᎲᎩ, ᏘᏍᏚᎲᎦᏉ ᎾᏍᎩ ᎦᎵᏉᎩ ᎠᏂᏴᏓᏆᏍᎩ ᏄᏂᏪᏒᎢ, ᎠᎴ ᏞᏍᏗ ᏦᏪᎳᏅᎩ. ᏫᏥ ᎢᎦ ᎨᏒ ᎤᏂᏇᏓᏢ ᏗᏂᏴᏤᏂ ᏃᎴ ᏗᏂᏅᏬ, ᎡᏉᎯᎨ ᏄᎾᎵᏍᏘᏍᎬ ᎩᎦᎨ ᏚᎦᏌᏛ ᎤᏂᏳᏩᏅ ᎾᏍᎩᏯ ᎣᎦᎾ ᎢᏳᏍᏗ ᏧᏣᏲᏍᏗ ᏗᏂᏍᎪᎵ ᎡᎳᏗᏣ ᏗᏂᏐᎯ ᏫᎦᎶᏍᎩ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎳᏑᎳᎩ, ᎾᎿᏰᏃ ᏥᏙᎦ ᎦᎸᏉᏗᏳ ᎦᏙᎯ. ᎾᏍᎩ ᎯᎠ ᏓᏟᎶᏍᏛ ᏥᏌ ᏚᏬᏁᏔᏅᎩ; ᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤ ᎾᏍᎩ ᏄᏍᏛ ᏚᏬᏁᏔᏅᎢ. Ꭷ ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᏣᏏᏔᏓ, ᎠᎴ ᏙᏘᎨᏩᏥ ᎥᏝ ᏱᎪᏩᏘᏍᎨᏍᏗ ᏅᏙ ᎢᎸᏍᎩ ᎢᎪᎯᏛ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᎵᏏᎩ ᎤᏭᏢᏁᎢ, ᎠᎴ ᎡᏙᎮ ᏚᏲᎮ ᎩᎶ ᎬᏬᏱᏂᏙᎯ. ᎠᎴ ᎠᏂᏐᎢ ᏴᏫ ᎾᏍᎩ ᎤᏕᏯᏙᏗ ᎨᏒ ᏧᏂᎸᎯ ᏂᎨᏒᎾ, ᎠᏏᏉ ᎥᏝ ᏱᏓᏂᏁᏟᏴᏍᎨ ᏚᎾᏓᏅᏛ ᎤᏲ ᏯᏂᏰᎸᏍᎨ ᏧᏃᏰᏂ ᎬᏗ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎠᏂᏍᎩᎾ ᏧᎾᏓᏙᎵᏍᏓᏁᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ, ᎠᎴ ᏅᏯ, ᎠᎴ ᎠᏓ ᏗᎪᏢᏔᏅᎯ; ᎾᏍᎩ ᎬᏩᏂᎪᏩᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎠᎴ ᎬᏩᎾᏛᎪᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎠᎴ ᎬᏩᏁᏓᏍᏗ ᏂᎨᏒᎾ ᏥᎩ. ᏍᏓᏯ ᎤᏓᏅᏖᎴ ᏫᎵᎻ. ᎠᏍᏆᏗᎠ ᎣᏂ ᏄᏍᏗᏗᏎ ᎠᏍᏓ. ᎢᏧᎳ ᎢᏁᏆ! ᏍᏆᏛᎦᏍᏓᏏ,” ᎡᏝᏪ ᏄᏪᏎᎴ ᏫᎵᎻ ᎠᎦᏴᎴ ᎤᏃᏕᎾ. ᏣᏂᏰᏃ ᎥᏝ ᎠᏏ ᏗᏓᏍᏚᏗᏱ ᏯᏥᏴᏗᏍᎨᎢ. ᎤᏂᏃᏕᎾ ᏗᏂᏐᎯᎢ ᎤᏂᎦᏍᎨᎢ. ᎦᏥᏯᏘᏂᏓᏍᏗ ᎠᏆᏍᏉᏟᏔᏅ. Granville Towers ᏧᏙᎢᏓ ᎠᏓᏁᎳ ᎠᏂᎯᏲᎲᎢ, ᎤᏰᏟᏛᏃ ᎤᎿ ᎦᏂᎩᎸ ᎤᎾᎵᎢ. ᎾᏍᎩ ᏰᎵ ᏗᎬᏪᏙᎵᏍᏗ ᎾᏂᎦᏔᎾᎥᎾ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᎾᎴᎾᎸᎯ; ᎤᏩᏒᏰᏃ ᎾᏍᏉ ᏚᎵᏚᏫᏍᏛᎩ ᎠᏩᏂᎦᎳ ᎨᏒᎢ. ᎾᏍᎩ [ᎧᏃᎮᏛ] ᎬᏂᏛ ᎤᏪᎮᎢ; ᎠᎴ ᎾᏍᎩ ᎬᏂᏛ ᏴᏫ ᎢᎦ ᎤᎾᏘᏍᏓᏁᎯ ᎨᏎᎢ. ᎢᎦ ᏒᎮᏱᏣ, ᏣᏄᏏ ᏭᎷᏤᎴ ᎰᎻ. ᎦᏙᏃ ᎤᏛᎾᏕᎦ ᎡᎳᏆᏗ?” ᎤᏛᏛᏁ, ᎡᏆ ᏚᏍᏚᎩᏎ ᏗᎦᏙᎵ. ᎤᏢᏲᎵᎳ ᎫᏫᏍᎫᏫ, ᎤᎴᏅᎮ ᎠᏰᎵᏒ ᎠᎹᏰᎵ ᎤᏈᏴᎡᏗ ᏏᏴᏫᏯᎯ ᏭᏚᏩᎪᏗ ᏭᏕᎵᎬ ᎢᏣ, ᎦᏙ ᏕᎦᏅᏅ ᎢᏣ. ᎿᏉᏃ ᎠᏂᎦᏔᎯᏳ ᏄᎵᏍᏔᏅ, ᏂᎦᎥ ᎪᎱᏍᏗ ᏍᎩᏁᎸᎯ ᏥᎩ, ᏂᎯ ᏅᏓᏳᏓᎴᎲᎯ ᎨᏒᎢ. ᏩᎦ ᏓᏂᏁᎩᎡᎲ ᎤᎾᏘ ᎦᏍᎩᎶ ᎠᏗᏅᏓ ᎤᏴᏩᏛᎮ. ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗ ᏫᎵᎻ ᎤᏴᏍᏗ ᎾᎥᏂ ᎤᏩᏍᎩᎳᏕ. ”ᎣᏍᏓ ᎤᏒᎯ, ᏌᎳᏓ!” ᎤᏛᏁ ᏫᎵᎻ. ᎬᏩᏓᎴᏍᎨᏍᏗ ᎨᏣᏡᏗᏍᎬ ᎯᎠ ᏴᏫ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏗᏁᎲ ᎿᏉ ᎬᏅᎵ, ᎤᏓᏌᎧᏰᏃ ᎣᏥᎩᎵᏲᎬ ᏞᎦᏉ ᏥᎩ ᎣᎩᏩᏛᎡᎭ ᎤᏣᏘ ᎤᎶᏒᏍᏔᏅᎯ ᎢᏳᏓᎨᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎡᎳᏗ ᎠᎧᏁᎮ ᎠᎵᏍᏛᏧᏍᏗ. ᏚᎾᏛᏛᏅᎩᏃ, ᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠᏍᎪ ᏂᎯ ᎢᏍᏕᏥ, ᎾᏍᎩ ᏗᎨᏫ ᎤᏕᏅᎩ ᏥᏍᏓᏗᎭ? ᎦᏙᏃ ᎤᎵᏍᏙᏔᏅ ᎪᎯ ᏣᎪᏩᏘᎭ? ᎤᏁᎳᏅᎯᏰᏃ ᎤᏓᏁᏗ ᎨᏒ ᎠᎴ ᎤᏓᏯᏅᏗ ᎨᏒ ᏝᏉ ᎤᏰᎸᏗ ᏂᎨᏒᎾ ᎨᏐᎢ. ᎢᏥᏁᎫ ᎠᎴ ᏗᏥᎨᏫ! ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ, ᎠᏕᎸᏍᎪ ᏓᎶᏂᎨᎢ, ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱᎨ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏥᏂᎬᏁᎭ ᎠᏕᎸ ᏓᎶᏂᎨᎢ? ᎾᏍᎩ ᎢᏥᎷᏤᎸᎯ ᏥᎩ, ᎾᏍᎩᏯ ᏂᎬᎾᏛ ᎡᎶᎯ ᏧᏂᎷᏤᎸ; ᎠᎴ ᏥᎦᎾᏄᎪᏫᏍᎦ ᎤᏓᏔᏅᎯ ᎾᏍᎩᏯ ᏥᏂᎦᎵᏍᏗ ᏂᎯ ᎢᏤᎲᎢ, ᏅᏓᎬᏩᏓᎴᏅᏛ ᎢᏣᏛᎦᏅ ᎾᏍᎩ, ᎠᎴ ᎤᏙᎯᏳᎯ ᎢᏥᎦᏙᎥᏒ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎾᎿᏃ ᎠᎾᏓᏅᏟ ᏗᎪᎦᏛᎦᏅ, ᎡᏈᏲᎢ ᎢᏴᏛ ᎠᎴ ᏦᎢ-ᎢᏗᎵᏍᏓᏴᏗᏱ ᏕᎪᎦᏠᏏᎸᎩ; ᏉᎳ ᎾᏍᎩ ᏚᎪᎲ ᎤᎵᎮᎵᏤᎸᎩ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᎦᎵᏍᏗ ᎤᏓᏅᏓᏛᎩ. ᏈᎵᎩᏃ ᎾᎿ ᏭᏗᏠᎸ ᎤᏛᎦᏁ ᎠᏙᎴᎰᏍᎩ ᎢᏌᏯ ᎠᎪᎵᏰᏍᎬᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ; ᎰᎵᎦᎨᎵ ᎾᏍᎩ ᏥᎪᎵᏰᎭ? ᎠᏂᏆᎵᏏᏃ ᎠᎴ ᏗᏄᏪᎵᏍᎩ ᎤᏂᏐᏅᏤᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎠᏍᎦᏯ ᏓᏓᏂᎸᎪ ᎠᏂᏍᎦᎾᎢ, ᎠᎴ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎪᎢ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏣᎵᏍᏓᏴᏄᎦ. ᎥᏝᏃ ᎩᎶ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ, ᎦᎪ ᏂᎯ, ᎬᏬᏎᏗ ᏱᎨᏎᎢ, ᎠᏂᎦᏔᎲᎩᏰᏃ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏱᏓᎩ ᎩᎶ ᎾᏍᎩ ᎢᎦᎢ ᎦᏚ ᎠᏂ ᎢᎾᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏰᎵ ᎬᏩᏂᏛᏓᏁᏗ. ᎠᎧᏘᏏ ᎢᏣ ᎦᎸᎳᏗ ᏚᏏᎳᏛ ᏭᎩᎶᏫᏎ ᏌᎳᏓ. ᎦᏙᏓᎦᎵᏍᏔᏂ ᎠᏇᎵᏒ, ᎣᏍᏓ ᎠᏉᏪᎳᏅ ᎪᏪᎵ ᏩᎩᏅᏅ, ᎧᏃᎮᏍᎩ ᏲᎾ ᏧᏤᎵ ᏴᏫ ᎠᏁᎯ ᎨᏒ ᎡᏆ ᎦᏚᎲ, ᏂᎦᏓ ᏚᏓᏓᏍᎬ ᏫᏓᎩᏅᏅ ᎠᏰᎵ. ᎾᎨᎢᏴ ᏫᏚᎪᎮ ᎠᏂᎴᏴᏍᎩ ᏃᎴ ᎠᏂᎪᏕᏍᎩ ᏗᎾᎢᏒ. ᎠᏛᎪᏗ ᎨᏎ “ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᎲᏳ!” ᎤᎵᏍᏗ ᎦᎷᎨ ᏫᎵᎻ ᏗᎦᎴᏂ. ᎠᎴ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎦᎶᏁᏛ ᎤᏓᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏥᎦᎶᏒᏍᏗᎭ, ᎾᏍᎩ ᎡᏥᎧᎵᎢᏍᏙᏗᏱ ᎾᏍᎩ ᏂᎦᏛ ᎠᎧᎵᎢ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏝᏍᎪ ᏂᎦᏛ ᎯᎠ ᏱᏗᏥᎪᏩᏘᎭ? ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᏌᏉᎤᏅ ᏅᏯ ᎠᏂ ᏱᏚᏓᏌᏝᎮᏍᏗ ᎾᏍᎩ ᏂᎪᎲᏔᏅᎾ ᏱᎨᏎᏍᏗ. “ᎭᏓᎾᏫᏓᏓ!” ᎤᏪᎷᏁ ᏌᎳᏓ. ᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏎᎢ ᏅᏓᏳᏂᎶᏒᎯ ᎨᎵᎵ, ᎠᏍᎪᎯᏃ-ᎦᏚᎩᏱ, ᎠᎴ ᏥᎷᏏᎵᎻ, ᎠᎴ ᏧᏗᏱ, ᎠᎴ ᏦᏓᏂ ᏍᎪᏂᏗᏢ. ᎪᎱᏍᏗ ᏧᏅᎾ ᏂᏚᏂᎨᏳᏒᎾ, ᏄᏃᎯᏍᏘᏒᎾ, ᎤᏐᏅ ᎠᎾᏓᏃᎮᎵᏙᎯ, ᏄᎾᎵᏏᎾᎯᏍᏛᎾ, ᎤᏂᎿᎸᎯ, ᎠᏂᏍᎦᎩ ᎣᏍᏛ, ᏫᏥᎢᎦ ᎨᏒ ᎣᏍᏓ ᏥᏰᎸᎥ Crockett, ᏂᏛᏓᎴᏂᏍᎬ ᏴᏫ ᎤᏁᏓᏍᏗ, ᎤᎯᏐᏗ ᏄᏍᏛ ᎠᎰᎵ ᏃᎴ ᏧᎵᏬᏨ ᎢᏧᏍᏗ ᏗᎦᏙᎵ. ᏂᎦᏛᏃ ᎬᏩᎦᏔᎯ ᎨᏒ ᎠᎴ ᎠᏂᎨᏴ ᎨᎵᎵ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎢᏅ ᏧᎾᎴᏅᏁᎢ ᎠᏂᎪᏩᏘᏍᎨ ᎾᏍᎩ ᎯᎠ. ᎡᏙᏓ, ᎯᎸᏉᏓ ᏕᏣᏙᎥᎢ. ᎿᏉᏃ ᎦᎸᎳᏗ ᏓᏳᏁᏨᎩ, ᎯᎠ ᏅᏓᏳᏪᏒᎩ; ᎦᏳᎳ ᎠᎩᎸᏉᏔᏅ, ᎠᎴ ᏔᎵᏁ ᏛᏥᎸᏉᏔᏂ. ᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ. ᎾᏍᏉᏍᎩᏂ ᎢᏥᏍᏘᏰᎬ ᎢᏥᏍᎪᎵ ᏂᎦᏗᏳ ᏗᏎᎸᎯ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎠ ᎾᏍᎩ ᏥᏄᏍᏗ ᏥᏨᏲᏪᎳᏁᎭ ᎠᎩᎪᏁᎸᎢ, ᎾᏍᎩ ᎾᎯᏳ ᏥᎦᏔᎮᏍᏗ ᎬᏍᎦᎢᏍᏓᎩ ᎠᏋᏔᏂᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏯ ᎢᎬᏆᏛᏁᏗ ᎠᏆᎵᏍᎪᎸᏓᏁᎸ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᏧᎾᎵᏂᎪᎯᏍᏗ ᎨᏒᎢ, ᎥᏝᏃ ᎤᏂᏛᏙᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ ᎾᏍᎩ ᎾᎿ ᏂᏕᎩᎾᏝᎥᎾ ᎨᏒ ᎦᎶᏁᏛ ᏂᎦᎩᎾᏝᎥᎾ ᏂᎬᏁᎸᎢ, ᎠᎴ ᏞᏍᏗ ᏔᎵᏁ ᏥᎡᏥᎩᎳᎾᎳᏗᏍᏔᏂ ᎠᏓᎾᏢᎥᏍᎩ ᎠᎩᎳᎾᎶ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎯᎠ ᏄᏪᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎾᎥᎢ, ᏓᎦᏥᏅᏏ ᏫᎬᏩᏂᎷᏤᏗᏱ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎨᏥᏅᏏᏛ, ᎾᏍᎩᏃ ᎢᎦᏛ ᏙᏛᏂᎵ ᎠᎴ ᏙᏛᏂᎨᎯᏙᎵ, ᎠᏂᏔᎵ ᎠᏂᏴᏫᏯ ᏚᎾᏓᏂᏴᎲ ᏃᎴ ᎦᏙᎯ ᎤᎾᏟᎸ, ᎠᏂᏲᏍᎩ ᏗᏂᏃᎨᏂ ᏚᏂᏂᏴᎲ ᏚᎾᎦᎴᏅᏔᏅ. ”ᎤᏙᎯᏳᎯᏍᎪᏃ ᏂᏪᏍᎨ ᏥᏍᎩᏚᎢᏍᏓᏁᎲ, ᏔᎴᏫᏍᏓᏁᏗ ᎬᎩᏍᏗ?” ᎯᏍᎩᏰᏃ ᎾᏂᎥ ᎣᏣᎵᏅᏟ ᎠᏁᎭ; ᎾᏍᎩᏃ ᏱᏫᏕᎧᏃᎲᏏ ᎾᏍᏉᏰᏃ ᎠᏂ ᎠᎩᎵᏲᎢᏍᏗᏱ ᎨᏒ ᏯᏂᎷᎩ. ᎤᏙᎯᏳᎭᏍᎪ ᏥᏂᎦᏪ ᎠᎦᏴᎵ ᎤᏃᏕᎾ ᏌᎳᏓ? ᎤᏙᎯᏳᎯᏧ ᏓᎬᎩᎵ ᎤᏴᏣ ᏂᎦᎵᏍᏔᏅ?” ᏞᏍᏗ ᎠᎦᏴᎵᎨᎢ ᏓᎧᏃᏁᎵ ᏓᏲᎫᎯᏍᏔᏂ ᏱᏍᎩᏰᎵᏎᎮᏍᏗ; ᎠᏏᏴᏫ ᎡᎭ ᎢᏧᎯᏍᏗᏍᎩ, ᎼᏏ, ᎾᏍᎩ ᏤᏣᏁᎶᏗ ᏥᎩ. ᎠᎴ ᎾᎯᏳ ᏥᏨᏰᎳᏗᏙᎲᎩ ᎠᎴ ᎠᏆᏚᎸᎲᎥᎦ, ᎥᏝ ᎩᎶ ᏯᏆᎫᏱᏍᎨᎢ; ᎾᏍᎩᏰᏃ ᎠᎩᏂᎬᏎᎲᎢ, ᎣᏣᎵᏅᏟ ᎹᏏᏙᏂ ᏅᏓᏳᏂᎶᏒᎯ ᎬᎩᏁᎲᎩ; ᎠᎴ ᏂᎦᎥᏉ ᎠᏆᏟᏂᎬᏁᎸ ᎢᏨᏐᏈᎸᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏏᏉ ᎾᏍᎩ ᏂᎦᏛᏁᎮᏍᏗ. ᏚᎦᏗᏍᏛ ᎠᏌᎻᏛ, ᏗᎩᏣᏗ ᏭᎳᎩᏒ ᎠᏥᏍᏙᏗ, ᎦᏅᎯᏓ ᎤᏗᏔᎲ, ᏭᏍᏚᏅ ᏗᎩᏣᏗ. ᏏᏆ ᎤᏂᎯᏍᏗ ᏱᎩ, ᏂᎦᏓ ᏓᎾᎵᏍᏕᎵᏍᎪ. ᏗᏂᏁᏥ ᏃᎴ ᏗᏂᏅᏬ ᏚᎾᏐᏓᎸ ᏧᏂ ᏍᏔᏲᏍᏙᏗ. ᎾᏍᎩᏃ ᎠᏓᏅᏙ ᎬᏗ ᎢᎾᎨ ᏩᏆᏘᏅᏍᏔᏅᎩ; ᎠᎨᏴᏃ ᎥᏥᎪᎲᎩ ᎩᎦᎨ ᏗᎧᏃᏗᏱ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᎩᎸᏛᎩ ᎾᏍᎩ ᎤᎧᎵᏨᎯ ᎨᏒᎩ ᎤᏁᎳᏅᎯ ᏚᏙᎥ ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ ᎦᎵᏉᎩ ᏓᏍᎫᏓᏛᎩ, ᎠᎴ ᎠᏍᎪᎯ ᏕᎤᎷᎬᎩ. ᎠᏗᏍᎩᎳ ᎠᏁᎰ ᎭᎾᏛᏅ ᎤᎿᏯ ᎠᎾᏗᎲ ᎢᎸᎯᏳ ᏥᎨᎲ ᎾᎥ ᏩᎩᎶᎯᏍᏗ ᏥᎨᎲ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪᎭ, ᎾᎯᏳ ᏚᎴᏅᎦᎸᎳᏗ ᏭᎶᏒ, ᏚᏴᎩᏁ ᏗᎨᏥᏴᎩᏅᎯ, ᎠᎴ ᏚᏁᎴ ᏴᏫ ᎤᏓᏁᏗ ᎨᏒᎢ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏗᏁᎶᏙᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ, ᎾᏍᎩ ᎤᏣᏘ ᎨᏅᎢᏍᏗ. ᎡᏥᎸᏉᏗᏍᎨᏍᏗᏍᎩᏂ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏙᏗᏣᏓᏅᏛᎢ. ᎠᎴ ᏯᏃᏉ ᎢᏨᏛᏅᎢᏍᏕᏍᏗ ᎾᏂᎥ ᎩᎶ ᎨᏣᏛᏛᎲᏍᎩ ᎤᏚᎩ ᎢᏨᏒ ᎤᎬᏩᎵ, ᏗᏥᏃᏁᏗᏱ ᎤᏓᏅᏘ ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᎨᏒ ᎢᏨᏙᏗᏱ. ᏰᎵᏉᎨ ᎠᏂᏧᏣ ᏱᏕᎯᏃᎯᏏ ᎤᏛᏅ ᎠᏌᎻᏓ. ᎯᎠ ᎾᏍᎩ ᎤᏂᎪᏁᎶᎯᏌᏘ, ᎤᏁᎵᎯᏍᎩ, ᎤᏅᏒ ᎤᎾᏚᎸᏅᎥᏍᎬ ᎠᏂᏍᏓᏩᏕᎩ; ᏗᏂᎰᎵᏃ ᏓᏅᏗᏍᎪ ᎤᏣᏘ ᎠᏢᏈᏍᏗ ᎠᏂᏬᏂᏍᎪᎢ, ᏴᏫ ᏚᎾᎧᏛ ᏓᏂᎸᏉᏗᏍᎪ ᎣᏍᏛ ᎢᎬᏩᎾᎵᏍᏓᏁᏗ ᎤᏚᎩ ᎤᏅᏒ ᎢᏳᏍᏗ. ᎤᏙᏳ ᏓᎩᏯᏪᎦ ᏃᎴ ᏥᎾᏬᎦ ᎨᏍᏗ ᎬᏆᏁᎸᏙᏗ ᏱᎩ ᎠᏇᏅᏍᏗ. ᎾᏃ ᎤᎾᏓᏅᏘ ᏗᏍᏕᎸᏗᏱ ᎤᎬᏩᎵ, ᎠᏎᏉᏉ ᏱᏨᏲᏪᎳᏁᎭ. ᎠᏎᏃ ᏚᏂᏅᎪᎥᏓᏁᎴᏉ ᎪᏍᏚ ᏧᎾᎳᏏᏕᏂ ᎤᏓᏅᎵᏰᎥᎢ, ᎢᎪᏂᏯᏃ ᏭᏂᎷᏤᎢ. ᎠᏎᏃ Ꮳ ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ. ᎠᏂᏧᏏᏃ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎠᎴ ᏄᏂᏪᏒᎩ; ᎦᏙ ᎤᎵᏍᏙᏔᏅ ᎯᎠ ᎠᏍᎦᏯ ᎪᏪᎵ ᏗᏏᎾᏏᏳ ᏥᎩ, ᏧᏕᎶᏆᎥᎯᏃ ᏂᎨᏒᎾ? ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏌᏉ ᎢᎦᎦᏛ ᎾᏂᏲᎯᏍᏗᏍᎬᎾ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᎢ ᎠᎴ ᎠᏂᏔᏲᎯᎮᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎨᏒ, ᎠᎴ ᎺᎵ ᏥᏌ ᎤᏥ, ᎠᎴ ᏥᏌ ᎠᎾᎵᏅᏟ. ᏫᏥᎢᎦ ᎨᏒ ᏕᎦᏅᏅ ᏅᏯ ᎬᏗ ᏓᏰᏍᏓᎡ, ᎢᎪᎯᏓ ᎠᏛᎪᏗ ᎨᏎ ᏓᏆᎴᎸ ᏕᎦᏆᏛ ᏔᎷᎩᏍᎩ ᏓᏢᏍᏛ, ᎤᏒᎯ ᏐᏈᎵ ᏚᎾᎳᏑᎸ ᎠᏥᎳ ᎦᎾᏅᎪᎨ. ”ᏁᎳᎩ ᎨᏎᏍᏗ ᏫᎵᎻ!” ᎤᏛᏁ. ᎠᏎᏃ ᏥᎦᏔᎭ ᎾᏍᏉ ᎪᎯ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᏱᏔᏲᏎᎸ ᎤᏁᎳᏅᎯ, ᏣᏁᏗᏉ ᎨᏒ ᎤᏁᎳᏅᎯ. ᎠᎴ ᏂᎦᏛ ᎤᏤᏪᏅ ᎤᏣᏘ ᏚᎪᏄᎶᏎ ᎾᎿᏂ, ᎿᏉᏃ ᎤᎴᏅᎮ ᎤᏚᎸᎲᏁᎢ. ᏈᏓᏃ ᏔᎵᏁ ᎤᏓᏱᎸᎩ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏣᏔᎦ ᎤᏴᎳᏒᎩ. ᏰᎵᏉ ᏱᏥᏍᏆᏂᎪᏓ ᎬᏅᎢ ᏫᎵᎻ,” ᎤᏪᎵᏎ. ᏓᏥᎶᏅᎮᎵ ᎰᎻ. ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᏐᏉ ᎢᏯᏏᏔᏛ ᎠᎹ ᎠᏥᏍᏕ. ”ᏥᏍᏕᏥ ᏱᎩ ᏥᏍᏕᏥ,” ᎤᏛᏁ ᏌᎳᏓ. ᎨᏍᏗ ᏏᏆ ᏦᏍᏓᏁᎶᎲᏍᎩ ᏱᎩ.” ᎤᏂᎪᎲᏃ ᎾᏍᎩ ᏃᏈᏏ, ᎤᎶᏔᏅᎯ ᎤᎾᎵᎮᎵᏤᎢ. ᎢᏳᏰᏃ ᎢᎬᏒ ᏱᏗᏓᏓᏚᎪᏓᏁᎭ, ᎥᏝ ᏱᏙᎦᏰᎫᎪᏓᏏ. “ᎩᎳ ᎠᎬᏱ ᏓᎨᏏ ᏧᎦᏃᏮ ᏗᏣ ᎠᏮᏅᎦ ᎠᏆᏕᎶᎰᎯᏍᏗ Ꭳ! ᎤᎬᏫᏳᎯᏍᎩᏂ ᏄᏓᎵᏓᏍᏛᎾ, ᎾᏍᎩ ᏨᏓᏣᎵᏂᎪᎯᏍᏔᏂ, ᎠᎴ ᏨᎵᏥᏲᏍᏙᏓᏁᎵ ᎤᏲ ᎢᏣᏛᏁᏗᏱ. ᎦᏳᎳ ᏧᏭᎪᏔᏅ ᎨᏎ ᎧᏂᎩᏓ ᎢᏳᎵᏍᏙᏗ ᎠᏂᏴᏫᏯ. ”ᏣᏉ ᎨᏎᏍᏗ,” ᎤᏛᏁ. ᎠᏇᎵ ᎡᏥᏲᎵᎸᎭ, ᏣᎦᏓᏂᎸᏨᎯ ᎦᎶᏁᏛ ᎪᎯᏳᎲᏍᎩ ᎨᏒᎢ. ᎡᎵᏍᏓᏊᎳ ᏚᏓᏘᎾᎥ ᎠᏁᎳ ᏕᏥᏲᎵᎸᎭ. ᎾᏍᎩ ᎾᏍᏉ ᏥᏣᎵᏍᏕᎸᏙᏗ, ᎢᏳᏃ ᎠᏍᏓᏯ ᏱᏗᏥᏂᏴ ᎾᏍᎩ ᏥᏨᏯᎵᏥᏙᏁᎸᎩ, ᎢᏳᏍᎩᏂᏃᏅ ᎠᏎᏉᏉ ᏱᎩ ᎢᏦᎯᏳᏒᎢ. ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎠᎴᏂᏍᎬ ᎨᏒ ᎠᎩᎵᏯ ᎨᏒᎢ. ᎠᏎᏃ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏯᏅᏒᎯ ᎦᎸᎳᏗ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᏭᎪᎮ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏥᏌ ᎦᏙᎨ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏᏗᏢ; ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᎭᏓᎶᎥᏓ ᏨᏒ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ; ᎠᏎ ᏙᏓᎧᏁᏤᎵ ᎫᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏂᏌ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏧᏃᏰᏂ ᎨᏣᏌᎳᏙᏕᏍᏗ ᎾᏍᎩ ᎢᎸᎯᏳ ᏅᏲᎯ ᏣᎾᏍᏆᎶᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᎠᎴ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᏳᏃ ᏂᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ, ᏨᏒ ᎭᎵᏍᏕᎸ. ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᏍᎩᏗᏍᎨᎢ ᎡᎳᏆᏗ ᏃᎴ ᎦᎸᎳᏗ ᎤᎴᏫᏍᏔᏅ ᏓᏆᎴᎳ ᎤᏦᏛ. ᎥᎥ, ᎡᏙᏓ, ᎾᏍᎩᏰᏃ ᎣᏏᏳ ᏣᏰᎸᏅᎯ. ᎤᏂᎩᏎᏃ, ᎠᎴ ᎤᎴᏅᎮ ᏚᏃᏣᎳᏁ ᎠᏍᎪᎯ-ᎢᎦᏚᎩᏱ, ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏥᏌ ᏄᏛᏁᎸᎢ; ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏎᎤᏂᎩᏎᏃ, ᎠᎴ ᎤᎴᏅᎮ ᏚᏃᏣᎳᏁ ᎠᏍᎪᎯ-ᎢᎦᏚᎩᏱ, ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏥᏌ ᏄᏛᏁᎸᎢ; ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏎᎢ ᎠᎴ ᎥᏝ ᎾᏍᎩᏉ ᏱᏂᎦᎥ, ᎾᏍᏉᏍᎩᏂ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏁᎶᏗ ᎬᏩᏑᏰᏒᎩ ᎠᏴ ᎢᏧᎳᎭ ᎣᎨᏅᏍᏗᏱ ᎣᎩᏴᏍᏗᏱ ᎯᎠ ᎾᏍᎩ ᎠᏓᏁᏗ, ᎾᏍᎩ ᏥᏙᎩᎸᏫᏍᏓᏁᎭ, ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎬᏫᏳᎯ ᎤᏩᏒ, ᎠᎴ [ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗᏱ] ᎢᏣᎵᎦᎵᏴᏒ ᏙᏗᏣᏓᏅᏛᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏕᎾ ᎢᏨᏒᏉ ᎢᏴᏛ ᏫᏗᎶᎯ ᎢᎾᎨ ᏗᎨᏒᎢ, ᎠᎴ ᏞᎦ ᎢᏣᏣᏪᏐᎸᏍᏓ; ᎤᏂᏣᏖᏰᏃ ᎠᏂᎷᎨ ᎠᎴ ᏓᏁᎨᎢ, ᎥᏞᏃ ᏯᏜᏅᏓᏗᏍᎨ ᎾᏍᏉ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎢᎪᎯᏛ. ᎠᎵᏍᏙᏗ ᎠᏰᎾᎡ--- ᎦᎶᏇ ᏃᎴ ᎦᏅᎯᏓ ᎠᏰᎳᏍᏗ ᎠᏓ ᎪᏒᏔᏅ. ᎭᏣᏪᏐᎸᏍᏓ ᎠᎦᏎᏍᏙᏗ, ᏐᏉ ᎠᏆᏤᎵ ᏃᎴ ᎤᏩᏌ, ᎭᏫᏂ ᏗᎩᏏ ᏃᎴ ᎤᎵᏏᎩ!” ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎲᏂᏗᏳ ᎨᏎᏍᏗ ᎯᎩᎵᏲᎬᎢ, ᎾᏍᎩᏯ ᎣᏍᏛ ᎠᏯᏫᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ. ᎦᏘᏲᎯᎲ ᎠᎫᏤᎵᎪ ᎦᏙ, ᎨᏍᏗ ᎩᎦ. ᏃᎴ ᏄᏓᎴ ᎱᏃᎮᎸ ᏣᎵ ᎠᏤᎯ ᎧᏃᎮᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎬᏪᏎᎭ ᎤᏍᎦᏅᏨ, ᎾᏍᎩ ᏧᏈᏯ ᏥᎩ, ᎠᏥᏙᎵᎩ, ᎤᏣᏘᏰᏃ ᎤᏓᎨᏳᏎᎢ; ᎩᎶᏍᎩᏂ ᎤᏍᏗ ᎠᏥᏙᎵᏨᎯ, ᎾᏍᎩ ᎤᏍᏗ ᎤᏓᎨᏳᏐᎢ. ᎾᏃ ᏥᎬᏔᏲᏎᎸᎩ ᏣᏗᎩᏯᏍᏗᏱ ᎡᏈᏌ, ᎹᏏᏙᏁ ᏥᏩᎩᎶᏒᎩ, ᎾᏍᎩ ᏘᏅᏍᏓᏕᏗᏱ ᎩᎶ ᏓᎾᏕᏲᎲᏍᎬ ᎤᏣᏘᏂ ᎢᏳᏂᏪᏍᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏃ ᎭᏓᏁᎲ ᎤᏕᎵᏒ ᎨᏎᏍᏗ, ᏣᏙᏓᏃ ᎤᏕᎵᏒ ᎠᎪᏩᏘᏍᎩ ᎤᏩᏒ ᎠᏎ ᏣᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎬᏂᎨᏒᎢ. ᎠᏎᏃ ᎤᎾᏠᏤᏉ; ᎤᏂᏣᏖᏍᎩᏂᏃᏅ ᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᎤᏂᎾᏄᎪᏤᎢ, ᎠᏎᏃ ᎤᎾᏠᏤᏉ. ᎣᏂᏱᏍᎩᏂᏃᏅ ᎠᏂᏔᎵ ᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᎤᏂᎷᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; “ᏍᎩ, ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ. ᎠᎴ ᎢᏤ ᎢᏤᏨᏁᏗᏱ ᏄᏍᏛ ᏕᏣᏓᏅᏛᎢ; ᎠᏎᏃ ᎾᏍᎩ ᏂᏨᏪᏎᎸ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎤᎧᎵᎸ ᎢᏥᎾᏫ. ᏲᏎᎢ ᎬᏇᏓᏍᏗ ᏱᎨᏎ, ᏲᏎᎢ ᎬᏆᏛᎦᏍᏙᏗ ᎢygᎡᏎ ᏄᎾᏓᎴᎲ ᎠᏣᏗ ᏕᏣᏙᎥ ᎠᏎᏃ ᎤᏍᏗᎩ ᎢᏧᎳ ᎩᏂᏴᏍᏗ ᎠᎹ ᎦᏁᎲ, ᏫᏥ ᏫᏓᎦᏓᏬᎢ. ᏕᎾᏓᎪᎲᏳ ᎤᎬᏍᏕᎵ. ᎤᎬᏫᏳᎯ ᏧᏁᏗ ᎨᏎᏍᏗ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏚᏓᏘᎿᎥ ᎣᏁᏏᏉᎳ, ᏯᏃᏰᏃ ᎠᎩᎦᎵᏍᏓᏗᏍᎬᎩ, ᎠᎴ ᎥᏝ ᏯᏉᏕᎰᎯᏎᎮ ᎠᏆᏤᎵ ᏧᏓᏕᏒᏛ; ”ᎯᏣᏛᎦᏍᏓ, ᎭᏩᏧᎱ ᏍᏓᏯ ᏄᏪᏎ. ᎯᎠᏃ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎩᏁᎸᎯ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ ᎤᎨᏳᎯᏳ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᏉ ᎤᎨᏳᎯᏳ ᎨᏎᏍᏗ ᏗᎾᏓᏅᏟ. ᏚᏬᏓᏢ ᎢᏴ ᏭᏗᎦᎴᏲᏤ ᎧᏃᎮᏓ ᏄᎵᏍᎨᏗᏴ ᏏᏆ, ᏃᎴ ᏗᏂᎶᎨᏍᎩ ᏧᎾᎩᎸᏗ ᏧᏪᏘ ᏓᏆᎴᎳ ᏃᎴ ᏗᎦᎾᏏᏅᏍᏗ ᏕᎦᎷᎨ, ᎢᏳᏪᏅᏍᏗ ᎠᏂᏙᎾᎡᎢ ᎤᎾᎧᏙᏍᏕᎢ ᏫᎵᎻ ᎤᏴᏍᏗ ᎠᏂᎸᏇᏍᎨ ᎤᏍᏆᏂᎩᏗ ᏅᎩ ᏗᎦᏅᏌᏗ. ᎠᎴ ᏥᎳᏅᏓᏕᎸᎩ ᎤᏲ ᎤᏰᎸᏗᏱ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸᎢ; ᎠᏎᏃ ᎥᏝ ᎤᏲ ᏳᏰᎸᏁᎢ. “ᎠᏎ ᎤᏪᏅᏍᏗ,” ᎤᏛᏁ. ᏴᏫᏃ ᎬᏩᎦᏘᏰ ᏤᎦᎳᏯ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏍᎨ ᎪᎯᏗᏳ ᏩᏯᎥ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ. ᎠᏎᏃ ᎡᎳᏪᏱᏉ ᎤᏅᏎᎢ; ᏗᎾᎢᏒᏃ ᎠᏂᏃᎮᏍᎨ ᎤᏅᏒ ᎨᏒ ᎾᏍᎩ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ. ᎣᏏ ᎢᏳᎵᏍᏓᏁᏗ ᏴᏫ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᎤᏍᏕᏅᏨ ᏄᏭᎪᏍᏗᏍᎬᎾ ᎨᏒᎢ. ᏚᎪᎮᎢ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ, ᏃᎴ,ᎾᎥᏂᎨ ᏭᎷᏣ ᎤᎪᎮ ᏌᎳᏓ. ᎠᎴ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᏄᎬᏫᏳᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᏂᎦᏛ ᎬᏩᏅᏏᏙᎯ ᎨᏎᏍᏗ. ᏭᏓᏅᏖᎴ ᎤᎵᏬᎢᏍᏗ, ᎤᏩᏃᏪ ᏃᎴ ᎤᏍᎦᎴ. ᎤᏙᎳᏅ ᎤᏓᏔᏅ, ᎦᏙ ᎡᎯ ᎤᎦᎾᏍᏓ ᏃᎴ ᏧᎾᏍᏕᏥ, ᎤᏟᏂᎩᏓ ᏥᏴᏐᎵ ᎬᏗ ᏱᏗᏥᏌᏙᏱᏍᎦ ᏧᏆᎶᎦ, ᎠᎩᏯᎸᎥᏍᎬ ᏃᎴ ᎦᎵᏒᏍᏗᏍᎬ ᎦᏙ, ᎦᎵᏒᏍᏗᏍᎬ, ᎦᎵᏒᏍᏗᏍᎬ, ᎦᎵᏒᏍᏗᏍᎬ...” ᎾᎯᏳᏃ ᎨᏒ ᎤᎶᏐᏅ, ᎣᎩᏟᏌᏅᎩ ᎣᎩᏱᏓᏍᏗ, ᎠᎴ ᏥᎷᏏᎵᎻ ᏬᎩᎶᏒᎩ. ᎢᎤᏁᏅᏃ ᏥᏌ ᎤᎴᏅᎲᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎤᏂᏣᏘ ᏣᏂ ᏚᏃᎮᏓᏁᎸᎩ; ᎦᏙ ᎢᏣᎦᏔᏅᏎ ᎢᎾᎨᎢ? ᏩᏐᎾᏍᎪ ᎤᏃᎴ ᎤᏖᎸᎮᏍᎬᎢ? ᏓᏂᎯᏯᏍᎨ ᏓᏂᏂᎩᎸ, ᏯᏂᎦᏔᎲᎾ ᎢᏳᎾᎵᏍᏔᏁᏗ. ᏅᏯ ᏕᎨᎬᏂᏍᏗᏍᎨᎢ, ᏗᎦᏄᏙᎩ ᎬᏗ ᏕᎨᏥᎦᎵᏍᎨᎢ, ᏕᎨᏥᎪᎵᏰᏍᎨᎢ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏕᎨᏥᎢᏍᏗᏍᎨᎢ; ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᏧᏂᏁᎦᎸᏅᎯ ᏧᎾᏄᏩᎢ ᎠᏁᏙᎮᎢ; ᎤᏂᏂᎬᏎᎯ ᎨᏎᎢ, ᎠᏂᎩᎵᏲᏥᏙᎮᎢ. ᎠᎴ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᏂᎦᎥ ᏂᎦᏪᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏂᏁᏤᎭ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏥᏁᏄᎯ; ᎾᏍᎩ ᎾᏂᎥ ᏗᏂᎰᎵ ᏗᎨᏥᏍᏚᏁᏗᏱ, ᎠᎴ ᎡᎳᏂᎬ ᎠᏁᎯ ᎤᏂᏍᎦᏅᏨᎯ ᏧᏚᎪᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎡᏝᏪ ᎢᎦ ᎨᏒ, ᎦᏛᎩᏍᎬ ᎠᏂᏬᏂᏍᎬ ᎭᏫᏂ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎥᏝ ᎩᎶᎢ, ᏧᏏᏔᏛᎯ ᎦᏓᎷᎪᏗ ᏱᎠᎦᏔᎲᏃ, ᏰᎵ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏫᎬᏩᏴᏍᏗ ᏱᎩ. ᎤᎵᏒᏍᏔᏁᎢ ᎤᏃᎴ ᏃᎴ ᎤᎵᏴᏍᎪᏳᏁ. ᎠᏎᏃ ᏔᎴᎲᎦ, ᎠᎴ ᎭᎴᎲᎦ, ᎯᎠᏰᏃ ᏅᏗᎦᎵᏍᏙᏖᎭ ᎬᏂᎨᏒ ᏥᏂᎬᏯᏛᏂᏏ, ᎭᎵᏥᏙᎲᏍᎩ ᎢᎬᏴᏁᏗᏱ ᎠᎴ ᎯᏃᎮᏍᎩᎯᎠ ᎾᏍᎩ ᏥᎪᏩᏛ, ᎠᎴ ᎠᏏ ᎬᎾᏄᎪᏫᏎᏗ ᏥᎩ. ᎤᏂᎦᏙᎥᏒᏰᏃ ᎤᏁᎳᏅᎯ, ᎥᏝ ᎤᏁᎳᏅᎯ ᎦᎸᏉᏙᏗ ᎨᏒ ᏳᏂᎸᏉᏙᏔᏁᎢ, ᎥᏝ ᎠᎴ ᏯᎾᎵᎮᎵᎨᎢ, ᎠᎾᏓᏅᏖᏍᎬᏍᎩᏂ ᎠᏎᏉᏉ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᏧᏁᎫ ᏧᏂᎾᏫ ᏚᎵᏏᎲᏎᎢ; ᎤᎾᏕᏘᏱᏍᎬ ᎤᎶᏐᏅ ᏍᎪᎯ ᎡᎳᏗᏣ ᏭᎷᏤᎢ ᎤᏴᏣ. ᎬᏂᏳᏉᏃ ᎤᎷᏤᎴ ᎠᏍᎦᏯ ᏤᎳ ᏧᏙᎢᏛ ᏄᎬᏫ-ᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᏥᏌᏃ ᏚᎳᏍᎬ ᎤᏓᏅᏁᎢ, ᎠᎴ ᎤᏔᏲᏎᎴ ᎦᏁᎸ ᎤᏴᏍᏗᏱ; ᎠᏥᏍᏚᏗ ᎠᎬᏱᏣ ᏭᏓᏐᎴᎢ ᏫᎵᎻ. ᎤᏬᏚᏨ ᎤᏬᏚᏨ ᎨᏒ ᎨᎵ. “ᏤᏍᏗ ᏰᎷᎲᏍᎨᏍᏗ, ᏲᎾ ᎤᏤᏍᏙ!” ᎤᏛᏁ ᎤᏥ. ᎦᏓᎭᏰᏃ ᏂᎨᏒᎾ ᎢᎬᏁᎸᎯ ᎬᏔᏅᎯ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒᎢ. ᏥᏲᎵ ᏥᎨᏒᎩ ᎠᏲᎵ ᎤᏬᏂᎯᏍᏗ ᏥᏬᏂᏍᎬᎩ, ᎠᏲᎵ ᎤᏬᎵᏍᏗ ᎨᏒ ᎪᎵᎬᎩ, ᎠᏲᎵ ᎤᏓᏅᏖᏗ ᎨᏒ ᎦᏓᏅᏖᏍᎬᎩ; ᎠᏆᏛᏅᏍᎩᏂ ᎿᏉ ᎾᏆᎵᏍᏔᏅ, ᎠᏲᎵ ᏧᏤᎵ ᎨᏒ ᎢᏴᏛ ᏂᏓᏋᏁᎸᎩ. ᎯᎠ ᎤᏐᏱ ᎦᏅᏙᏗ, ᏧᏅᏓ ᎣᏂᏴ. ᎦᏙᏃ ᏱᎩ ᎡᏍᎦᏉ ᎪᎱᏍᏗ ᏱᎨᏒᎾ. ᎣᏍᏓ ᎠᎩᏰᎸᎲ ᎦᏓᏅᏖᏍᎬ, ᎢᏳᏃ ᏣᎵᏍᏙᏂ ᏓᏳᏂᎶᏒ ᎠᏂᎨᏯ ᏧᎾᏦᏒᏱᎩ. ᎾᏍᎩ ᎾᏍᏉ [ᎠᏓᏅᏙ] ᎤᏩᏔᏁ ᎤᏪᏅᏎ ᏫᏚᎵᏥᏙᏁᎴ ᏗᏓᏅᏙ ᏗᏓᏍᏚᏗᏱ ᏣᏂᏯᎠ, ᎦᎵᏉᎩ ᎢᏳᏩᏂᎸ ᎤᎵᏍᏔᏴᏃᏁᏍᏗ ᏑᎾᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᎩᎧᎾᏩᏕᏅ ᏥᏧᏣ ᎨᏒ ᏅᏓᎬᏩᏓᎴ ᏅᏛ. ᎠᎴ ᎦᏓ ᎠᎪᏢᏔᏅᎯ ᏄᏍᏛ ᎾᏍᎩᏯ ᏥᏂᎦᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎦᏍᏕᏍᏗ ᏄᏍᏛ ᎦᎸᎳᏗ ᎡᎯ. ᎿᏉᏃ ᏂᎦᏛ ᎠᏂᎪᎢ ᎤᏂᏂᏴᎲ ᏐᏍᏗᏂ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏄᎬᏫᏳᏒ ᎠᏥᎦᏘᏗᏍᏗ, ᎤᏂᎵᎥᏂᎸᎩ ᎢᎬᏱᏢ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ. ᎨᎵᏲᏃ ᎥᏝ ᏳᎦᏌᏯᏍᏔᏁ ᎾᏍᎩ ᏄᏍᏗᏕᎬᎢ. ᏂᎯ ᎤᏍᏗ ᏗᎩᏏ ᎦᏗᎨᏂ, ᎤᏛᏅ. ᎠᎴ ᏥᏔᏲᎯᎭ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏤᎲ ᎠᏏ ᎤᏟ ᎢᎦᎢ ᎤᏁᏉᏨᏍᏗᏱ ᎤᎵᏠᏯᏍᏙᏗᏱ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ, ᎠᎴ ᏂᎦᎥ ᏚᏳᎪᏛ ᎪᎵᏍᏗ ᎨᏒᎢ; ᏃᎴ ᎦᏲᏟ ᎠᏛᏁᎸ ᎭᎾᏂ, ᎠᎼᎯ ᎡᏙᎵᏓᏍᏗ ᎢᏣ. ᎤᎾᏄᎪᏫᏎᏃ ᎢᎬᏱ ᏂᎯ ᎤᏪᏥ ᎠᏧᏣ, ᎠᎴ ᎤᏪᏣᏄᎳᏁᎢ, ᎠᎴ ᏐᏈᎵ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎤᎸᏁᎢ; ᎥᏝᏰᏃ ᏳᏜᏅᏕ ᏧᏂᏒᏍᏗᏱ ᎠᏓᏁᎸᎢ. ᏦᎢᏁᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ, ᎦᏙ ᎤᏍᏗ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸ? ᎥᏝ ᏱᏥᏩᏛᎡᎭ ᎪᎱᏍᏗ ᏰᎵ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏥᎵᎥᏂᎵ ᎠᎴ ᏙᏓᏥᏲᏏ. ᎤᏛᎦᎾ, ᎡᎳᏗ ᏭᏓᏓᎩᏅᏎ ᏫᎵᎻ, ᎤᏲ ᎤᏓᏅᏔᏕᎢ. ᎠᎦᏓᎩᏅᏓ ᎠᏧᏣ, ᎠᏇᎵᏒ. ᎿᏉᏃ ᎤᏓᏅᏎ ᎠᏂᎦᎵᏗ ᎤᎾᏤᎵᎪᎯ, ᎨᎳᏂᏃ ᎤᏁᎳᏕᎢ, ᎾᎿᏃ ᏗᎤᏓᏅᏒ, ᎤᏙᏓ ᎤᏲᎱᏒ, ᎡᏍᎦᏂ ᎤᎷᏤᎴᎢ ᎾᏍᎩ ᎠᏂ ᎪᎯ ᏥᏤᎭ. ᎾᏍᎩᏃ ᎤᎶᏒᏍᏔᏅᎯ ᎠᏆᎵᏌᎳᏙᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏣᏘ ᎥᎩᎾᏄᎪᏫᏎᎸᎩ, ᎠᎩᎶᏲᎯᎯ ᎥᎩᏁᎸᎩ ᎠᎩᏇᏓᎸᎢ, ᏎᏓᏂ ᎤᏅᏏᏛ ᎠᏋᏂᎯ, ᎾᏍᎩ ᎤᎶᏒᏍᏔᏅᎯ ᎠᏆᎵᏌᎳᏙᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎭᎾᏅᏂ, ᎦᎶᎯᏍᏗ, ᎦᏅᎨ ᎤᏔᏂᏓ ᎢᎾᏓ. ᎤᏁᏨᎯᎠ ᏄᏪᏒᎩ; ᎠᏍᎦᏯ ᏥᏌ ᏥᏚᏙᎥ ᏝᏬᏔ ᎤᏬᏢᏅᎩ, ᎠᎴ ᏚᏅᎵᏰᎥ ᏗᏥᎦᏙᎵ; ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ; ᏌᎶᎻ ᏨᏓᎸᎢ ᎮᎾ ᎠᎴ ᏩᏙᏑᎵ; ᎠᏇᏅᏃ ᎠᎴ ᏩᏆᏙᏑᎴᎢ ᏰᎵ ᎬᎩᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎩ. “ᎭᏗ,” ᎤᏛᏁ ᏫᎵᎻ. ᎯᎩ ᏣᏤᎵᎦ ᎠᎴ ᏥᎮᎾ. ᎣᏏ ᎠᎩᏰᎸ ᏥᏯᎫᏴᎡᏗᏱ ᎯᎠ ᎣᏂᏱ ᎤᎷᏨᎯ ᏂᎯ ᎬᏯᎫᏴᎡᎸ ᎢᎦᎢ. ᎢᏳᏰᏃ ᎩᎶ ᎾᎦᏔᎲᎾ ᏱᎩ ᎤᏩᏒ ᏚᏓᏘᎿᎥ ᎣᏍᏛ ᏧᎧᎿᏩᏗᏓᏍᏗᏱ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏓᎦᏌᏯᏍᏓ ᏧᎾᏁᎶᎯ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ? ᎾᏍᎩᏃ ᎯᎠ ᏥᏂᎦᏪᎭ ᎠᏏ ᏌᏉᎢ, ᎾᏍᎩ ᎢᏴᏛ ᎢᏗᎬᏁᏗ ᎨᏒ ᎾᏍᎩ ᏗᏖᎸᏅᎯ ᎨᏒ ᎦᏛᎦ, ᎾᏍᎩ ᏗᎪᏢᏅᎯᏉ ᎾᏍᎩᏯᎢ, ᎾᏍᎩᏃ Ꮎ ᏧᏓᎴᏅᏛ ᏗᎬᏤᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᎾᎿ Ꮙ ᏗᏍᏆᏂᎪᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏯ ᎠᏆᏤᎵ ᏕᎷᎨ ᎤᎵᏏᎩ ᏃᎴ ᎦᎶᏂᎨ ᏃᏥ ᏑᎦᏔ ᏗᏥᎶᏍᏗ ᎨᏒ. ᎿᏉᏃ ᎤᏁᎳᏅᎯ ᎤᎦᏔᎲᏎᎢ, ᎠᎴ ᎤᎾᏁᎳᎩ ᏫᏓᏂᎸᏉᏓ ᎤᏂᏣᏘ ᎦᎸᎶ ᎠᏁᎯ ᏚᏪᎵᏎᎴᎢ, ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏃᏪᎳᏅᎯ; ᏂᎯ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᏥᎪ ᏕᏍᎩᏃᎮᎸ ᏗᎸᎯ ᎦᎾᏝᎢ ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗ ᏅᎦᏍᎪᎯ ᏥᎾᏕᏘᏴ ᎢᎾᎨᎢ? ᎭᎾᎾ, ᎭᏫᏂ ᏚᎧᏁ ᎩᎳ ᎤᏕᏅ ᏏᏆ. ᏧᏣᏲᏍᏗ ᏘᎵ ᏧᏯᏍᎦ ᎦᎳᎨᏴ, ᏚᏂᎪᏅ ᏘᎵ. ᎿᏉᏃ ᏥᏌ ᎨᏆᏂ ᏫᎤᎷᏨ, ᎤᎷᏤᎴ ᎠᏍᎪᎯᎫᏈ ᎠᏂᏯᏫᏍᎩ ᏗᏘᏂᏙᎯ, ᎤᏍᏗᏰᏔᏁᎢ, ᎠᏏᏉᏰᏃ ᎤᏇᏓᎵ ᏕᏣᏘᏂᏙᎭ; ᎾᏍᎩᏰᏃ ᏥᏤᎭ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎢᎸᏍᏗ ᎢᏯᏓᏗᏍᏗ ᎨᏒᎢ, ᏝᏍᎪ ᎤᏇᏓᎵ ᎢᏣᏘᏂᏙᎯ ᏱᎩ, ᎠᎴ ᏴᏫᏉ ᎤᏁᏓᏍᏗ ᎾᏍᎩᏯ ᏱᏣᏙᎭ? ᏄᏍᏗᏉ ᎭᏂᏫ. ᎠᎾᎢᏒᏃ ᎬᏂᏳᏉ ᎢᎦᏛ ᎤᏂᏯᏫᏒᎯ ᎤᏂᎷᏤ ᎦᏚᎲᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏚᏂᏃᏁᎴ ᏂᎦᏛ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᎦᏲᏟᎨᏉᏱᎩ. “ᎭᏩ ᎠᎵᏰᎾ ᏓᏆᏙᎡᏍᏗ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ. ᏑᏓᎵ ᎢᏯᏂ ᎤᏣᎴᏓ ᎤᏎᎵ ᎠᏂᏃᎯᎵᏙ, ᎣᏍᏓ ᏂᏓᏅᏁᎲ ᎦᎶᏇ. ᎣᎩᏍᏆᏛᏃ ᎣᎦᏅᏔᏩᏗᏒ ᏓᏯ ᏦᎦᏂᎩᏒᎢ ᏙᎵᎹᏱ ᎣᎩᎷᏨᎩ, ᎠᎴ ᏙᏥᏲᎵᎸ ᎠᎾᏓᏅᏟ, ᎾᎿ ᏑᏙᏓᏆᏛ ᎣᎨᏙᎸᎩ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎨᏴ, ᏍᏉᎯᏳᎲᎦ, ᏛᏍᏆᎸᎯ ᎾᎯᏳ ᎥᏝ ᎠᏂ ᎣᏓᎸᎢ, ᎠᎴ ᎾᏍᏉ ᏥᎷᏏᎵᎻ, ᏱᎦᏰᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᎠᎦᏴᎵᎨᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎾᏍᏉ ᏅᏲᎯ ᏥᎨᏥᏫᏎᎴᎢ; ᎾᏍᎩ ᎿᏉ ᎧᏃᎮᏛ ᎠᎾᏛᎬᎦ ᎩᎳᏉ ᎢᏴᏛ ᎤᎾᎵᎮᎵᏨᎯ ᏓᎾᏓᏂᎸᎪᎢ; ᎤᏲ ᏃᎬᎾᏕᎪᎢ, ᎠᏎᏃ ᎥᏝ ᎣᎬᏕᏨᎯ ᏱᎩ; ᏙᎩᏍᏢᏂᏍᏔᏅ, ᎠᏎᏃ ᎥᏝ ᎣᎩᏛᏔᏅᎯ ᏱᎩ. ᎢᏳ ᎠᎴ ᎣᏍᏛ ᏱᏂᏗᏣᏛᏁᎭ ᎣᏍᏛ ᎢᎨᏣᏛᏁᎯ, ᎪᏙ ᎢᏥᎭ ᎦᏰᏣᎵᎡᎵᏤᏗ ᎨᏒᎢ? ᎠᏂᏍᎦᎾᏰᏃ ᎾᏍᏉ ᎾᏍᎩᏯ ᎾᎾᏛᏁᎰᎢ. ᎠᏎᏃ ᏰᎵᏉ ᏫᎦᎾᏅᎪᎢᏍᏗ ᎠᏕᎰᏏᏓ ᏃᎴ ᎤᎵᏓᏍᏔᏅ ᎬᎭᏅ ᎢᎪᎯᏓ, ᏗᎧᏃᎮᏗ ᏱᎨᏒᎾ ᏗᎧᏃᎮᏗ ᎠᏎ ᎠᎫᏴᏍᏕᏓ ᏱᎩ. ᎠᏎᏃ ᏗᏆᎴᏅᎯ ᎨᏎᏍᏗ ᎢᎬᏱ ᏅᏓᏨᏰᏅᎡᎵ ᎨᎵᎵ. ᏭᎬᏫᏳᏒ ᎣᏍᏓ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎬᏩᏕᎰᏗᏍᎬ, ᎯᎠ ᏂᏓᎾᏓᏪᏎᎮᎢ, ᏅᏩᎾᏓᎴ ᏓᏍᏕᎵᏍᎬᎩ; ᎤᏩᏒ ᎥᏝ ᏴᎬᎵᏍᏕᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏗᏥᏲᎱᏒᎯ ᎨᏎᏍᏗ ᎡᎶᎯ ᎡᎯ ᎠᎴᏅᏙᏗ ᏗᏕᎶᏆᏍᏗ ᎤᎬᏩᎵ, ᎦᏙᏃ ᎡᎶᎯ ᏥᏤᎰ ᎾᏍᎩᏯ ᏙᏣᏁᎶᏗ ᏗᎧᎿᏩᏛᏍᏗ, ᏭᏙᎯᏳᎲ, ᎤᏓᎴᏟ: ᏄᎵᏍᏔᏁᎮ ᏙᏰ ᎠᏦᏴ ᎡᏙᎲ, ᎨᏍᏗ ᎪᎱᏍᏗ ᎠᎬᏱᏣ ᏱᏄᎵᏍᏔᏁᎮ ᎡᏆ ᎡᎶᎯ. ᎦᏣᏄᎸ ᎤᏍᏗᏰᎵᏙᎲ ᏓᏆᎴᎳ ᎤᎨᏓᎵᏴ ᏕᎦᏅᏅ ᎢᏳᏉ ᎣᎩᎾᏚᎵᏍᎬ ᏑᎾᎴ ᎤᎩᏓᏍᏕᎯ ᏩᏍᏗ. ᎩᎶᏰᏃ ᎬᏂᎨᏒ ᎾᏋᏁᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᏉ ᎠᏴ ᎾᏍᎩ ᎬᏂᎨᏒ ᎤᏓᏥᏴᏁᎵ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎠᎦᏔᎲᎢ. ᎨᏍᏗ ᏱᎪᎵᎨᎢ ᏫᎵᎻ ᎢᏳᏍᏗ ᎤᏰᎸᏛᎢ “ᎠᎦᏍᎦᏃᎶᏍᎦ” ᏃᎴ ᎨᏍᏗ ᏳᏚᎵᏍᎨᎢ ᎤᏕᏯᏙᏙᏗ ᏌᎳᏓ. ᏔᎵᏁᏃ ᎤᎷᏨᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᎾᏝᎢ, ᏣᏤᎵ ᏑᏓᎨᏛ ᎩᏍᎩ ᎢᏳᏓᎨᏛ ᎤᏁᏉᏨ. ᎾᏎᎵᏗᏃ ᎤᏓᏅᏒ ᎨᏆᏂ ᎨᎷᏤ ᎾᎿ ᏭᏕᏁᎢ, ᎾᏍᎩ ᎥᏓᎵ ᎠᎹᏳᎶᏗ ᏥᎦᏚᎭ, ᏤᏆᎳᏂ ᎠᎴ ᏁᏩᏔᎵ ᎤᎾᏤᎵᎪᎯ, “ᏣᎨ ᏯᎦᏓ ᏳᏕᏘᏱ ᏃᎴ ᏯᎦᏓ ᏳᏣᏅᏓᏕᎮ ᎤᏛᎯᏍᏗ,” ᎤᏛᏁ ᏫᎵᎻ. ᎢᏳᏓᎵᎭ ᎠᏩᏘᏍᎨ ᎩᎦ ᎤᏓᏁᎭ ᎦᏙ, ᎠᏯᏖᏅ ᎤᏓᏅᎵᏰᎥ ᎤᏯᎷᎬ, ᏁᎵᏍᎬ ᏂᎦᎵᏍᏗᏍᎨ. ᎿᏉᏃ ᎨᎵᎵ ᏭᎷᏨ, ᎨᎵᎵ ᎠᏁᎯ ᏕᎬᏩᏓᏂᎸᏨᎩ, ᎤᏂᎪᎲᎯᏰᏃ ᎨᏒᎩ ᎾᏍᎩ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎸ ᏥᎷᏏᎵᎻ ᎾᎯᏳ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ; ᎾᏍᏉᏰᏃ ᎤᏁᏅᏒᎩ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎦᏚᎲ ᎢᏍᏗᏴᎸᎭ, ᎠᏍᎦᏯ ᏙᏓᏣᏠᏏ, ᎠᏰᎮᏍᏗ ᎠᏖᎵᏙ ᎠᎹ ᎠᏟᏍᏕᏍᏗ; ᎡᏍᏗᏍᏓᏩᏕᏒᎭ ᎠᏓᏁᎸ ᏭᏴᎸᎢ ᏫᏍᏗᎷᏨᎭ. ᎠᏎᏃ ᏭᏓᏅᏖᎳ ᏄᏍᏛᎢ ᎤᏃᎯᏎᎸ ᎤᏃᏕᎾ ᎠᎦᏴᎵ. ᏄᏂᎬᏫᏳᏌᏕᏱᏰᏃ ᎥᏝ ᏗᎦᎾᏰᎯᏍᏗ ᏱᎩ ᎣᏍᏛ ᏱᏙᎸᏫᏍᏓᏁᎭ, ᎤᏲᏍᎩᏂ ᏱᏙᎸᏫᏍᏓᏁᎭ. ᏣᏚᎵᏍᎪᏃ ᏣᎾᏰᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏰᎵ ᎪᏢᏒᎢ? ᎣᏍᏛ ᎿᏛᏁᎮᏍᏗ, ᎾᏍᎩᏃ ᏣᎸᏉᏙᏗ ᎨᏎᏍᏗ. ᏕᏫᏰᏃ ᎯᎠ ᏂᎦᏪ ᎾᏍᎩ ᎧᏃᎮᏍᎬᎢ; ᏂᎪᎯᎸ ᏥᎪᏩᏘᏍᎬᎩ ᏱᎰᏩ ᎢᎬᏱᏢ ᎠᏆᎧᏛᎢ, ᏥᎦᏘᏏᏗᏢᏰᏃ ᎦᏙᎦ, ᎾᏍᎩ ᎥᎩᏖᎸᏗᏱ ᏂᎨᏒᎾ. ᏕᎤᏁᏤᎴᏃ ᏗᎨᎦᏬᏍᏗᏱ ᏕᎤᏙᏍᏛ ᎤᎬᏫᏳᎯ. ᎿᏉᏃ ᎬᏩᏔᏲᏎᎴ ᎢᎸᏍᎩ ᏧᏒᎯᏛ ᎤᏪᏗᏱ. ᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᏙᏛᎾᎴᏂ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᎠᏰᎵ ᏚᏃᏢᏩᏗᏒ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᏓᎪᏄᎶᏏᏙᎮᏍᏗ, ᎠᎴ ᎥᏳᎩᎯᏳ ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ, ᎠᎴ ᎦᏙᎯ ᏓᎵᏖᎸᏂᏙᎮᏍᏗ. ᎾᏍᎩᏃ ᎦᎷᏨᎭ ᎬᏂᎨᏒ ᏅᏓᎬᏁᎵ ᎡᎶᎯ ᎠᏍᎦᏂ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᏗᎫᎪᏙᏗ ᎨᏒᎢ. ᎿᏉᏃ ᏧᎦᎿᏁᎢ, ᎠᎴ ᏥᏚᏃᎱᎦᏁᎢ, ᎠᎴ ᏧᏃᎸᏁᎢ, ᎾᎿ ᎠᏓᏁᎸ ᏥᏚᏱᎶᎴᎢ, ᎠᎴ ᏧᏲᏤᎢ, ᎠᎴ ᎤᏍᎦᏎᏗᏳ ᏥᏄᎵᏍᏔᏁ ᎤᏲᏨ. ᏂᎯ ᎪᏪᎵ ᎣᎦᏤᎵᎦ, ᏥᎪᏪᎳ ᏦᎩᎾᏫᎯ, ᎾᏂᎥ ᏴᏫ ᏣᏂᎦᏔᎭ ᎠᎴ ᏣᏂᎪᎵᏰᎠ. ᎠᏎᏃ ᎤᎾᏙᎴᎰᏒ ᎠᏧᏏ ᎨᏒᎢ, ᏌᏉ ᏥᎧᏁᎪ ᎾᏍᎩᏯ ᏂᎦᏛ ᎤᏁᎷᏅᎩ, ᏔᎵᎭ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎦᎸᏉᏗᏳ ᏓᏰᏂ ᎡᏈᏌ ᎠᏁᎯ ᎤᎾᏤᎵᎦ. ᎠᎴ ᏂᎯ ᏗᏣᏓᏅᏏᏙᎯ, ᎾᏍᎩᏯ ᎤᏠᏱ ᎾᏍᎩ ᏂᏕᏣᏛᏁᎮᏍᏗ, ᎤᏁᎳᎩ ᎢᏤᎵᏎᏍᏗ ᏕᏥᏣᏛᏁᎮᏍᏗ, ᎤᏁᎳᎩ ᎢᏤᎵᏎᏍᏗ ᏕᏥᎾᏰᏓᏁᎲᎢ, ᏥᏥᎦᏔᎭ ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᎢᏥᏅᏏᏙᎯ ᎦᎸᏬᎢ ᎡᎲᎢ; ᎥᏝ ᎠᎴ ᏱᏚᏑᏰᏍᏗ ᏴᏫ ᏗᎬᏩᎸᏉᏙᏗ ᎨᏒᎢ. ᎢᏨᎨᏳᎢ, ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎢᎦᎢ ᎢᎩᎨᏳᎯᏳ ᎢᏳᎵᏍᏔᏅᎯ ᏱᎩ, ᎠᏴ ᎾᏍᏉ ᏗᎦᏓᎨᏳᎯᏳ ᏱᎩ. ᎡᎵᏍᏗ ᏐᏉ ᎢᏳᏩᎬᏘ ᏳᏩᎩᎸᎾ ᏓᏆᎴᎸ, ᏂᎦᏓ ᏄᏓᎴᎯ ᏱᏄᎵᏍᏔᏁ. ᏖᎾᏍᎩᏍᏆ ᏂᎦᏚᎩ?” ᎤᏛᏁ ᏫᎵᎻ. “ᎣᏁ ᎢᏣ ᏔᏟᎷᏈᏚᎦ ᏃᎴ ᎠᏰᎵ ᎢᏴ ᎭᏓᏄᏖᏯ!” ᎤᏪᎷᏁ ᏌᎳᏓ. ᎠᎴ ᎠᏂᏌᎺᎵ ᎬᏩᎷᏤᎸ ᎬᏩᏔᏲᏎᎸᎩ ᏧᏪᎳᏗᏓᏍᏗᏱ, ᎠᎴ ᎾᎿ ᏔᎵ ᏧᏒᎯᏛ ᎤᏪᏙᎸᎩ. ᎯᎠᏃ ᎤᏆᎶᎦ ᏰᎵ ᏏᏅᏓ ᎬᏩᎵᏬᏨ. ᎤᏲᏃ ᎤᏰᎸᏁ ᎾᏍᎩ ᎾᏥᏪᏎᎸ, ᎠᎴ ᎡᎯᏍᏗ ᎬᏩᏓᏅᏘ ᎤᏓᏅᏎᎢ; ᎤᏣᏘᏰᏃ ᎤᎿᎡᎢ. ᏚᏔᏍᏆᎸᏛᎢ ᎢᏳᎯ, ᎤᎴᏫᏍᏔᏅ, ᏧᏙᎨᏍᎩ. ᏂᎪᎯᎸ ᏑᎾᎴᎢ ᏳᎾᎵᏍᏓᏴᏃᎾ, ᎠᏁᎨ ᏫᎵᎻ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᏅᏃᎯ, ᎠᏂᎦᏘᏗᏍᎨᎢ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎢ. ᏃᏗ ᏣᏄᏏ ᏚᎧᎾᏁ. “ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ. ᏧᎾᏁᎶᏗᏃ ᎥᏘᎣᎩ ᏧᎾᏓᏡᎬ ᎠᏁᎲᎩ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩᎩ ᎠᎴ ᏗᎾᏕᏲᎲᏍᎩ, ᎾᏍᎩ ᏆᏂᏆ, ᎠᎴ ᏏᎻᏂ ᎾᎦ ᏧᏙᎢᏛ, ᎠᎴ ᎷᏏᏯ ᏌᎵᏂ ᎡᎯ, ᎠᎴ ᎹᏁᏂ ᎾᏍᎩ ᎢᏧᎳᎭ ᏧᎾᏛᏒᎯ ᎡᎶᏛ ᏅᎩ ᎢᎦᏚᎩ ᎨᏒ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏗ, ᎠᎴ ᏐᎳ. ᏧᏓᎴᏅᎲ ᏓᎫᏩᎾᎴᏅᏓ, ᎢᎾᎨ ᎠᏁᎯ ᏚᎾᏓᏲᏌ ᎤᏂᏂᎬᎬ ᏴᏫ, ᏕᎩᏲᏎᎸ ᎡᎯᏍᏗ ᏃᎴ ᎩᎦ, ᏩᏌᏅ ᎤᎵᏦᎯᏓ ᏃᎴ ᎭᏫᏯ. ”ᏍᎩᏙᎵᎩ, ᎡᏧᏣ, ᏍᎩᏙᎵᎩ,” ᎤᏛᏁ ᏌᏌ. ᎠᏂᏬᏂᏍᎬ ᏃᎴ ᎤᏂᏰᏗᏍᎬ, ᎨᏍᏗ ᏧᎾᏓᏅᏖᏗᏍᎨ ᏄᎾᎵᏍᏔᏁᎲ ᏃᏉ ᎨᏒ. ᎤᏛᏂᏗᏍᏗ, ᎣᎯᏍᏙᏗ, ᎤᏔᎷᎩᏍᎩ, ᏍᎩᎾᎾ ᎢᏳᏓᎴᎩ. ᎣᎯᏍᏙᏗ ᎨᏒ. ᏥᏌᏃ ᏇᏗᏂᏱ ᎡᏙᎲᎢ, ᏌᏩᏂ ᎠᏓᏰᏍᎩ ᎤᏢᎩ ᎦᏁᎸᎢ, ᏂᎦᏛᏃ ᎤᎾᎵᏍᏓᏴᏅᎩ ᎠᎴ ᏚᏃᎸᏒᎩ, ᎠᎴ ᎤᏄᏘᏒᎩ ᎤᎵᎬᎭᎷᏴᎯ ᎤᏘᏴᎯ ᏔᎳᏚ ᎢᏯᎧᎵᎢ ᏔᎷᏣ. ᎤᏁᎳᏅᎯ ᎾᏍᏉ ᏕᎪᎯᏳᏓᏁᎲᎩ, ᏕᎬᏗᏍᎬᎩ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᎤᏩᏒ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ. ᎤᏬᏂᏎ, ᎤᏃᎮᎴ ᏄᏍᏆᏂᎦᏛ ᏃᎴ ᏄᏍᎦᏎᏛ ᏗᏟᏰᎵᏓᏍᏗ, ᎠᏎᏃ ᏎᏉ ᏓᏥᏲᏎ, ᏲᎾ ᏃᎴ ᏗᏘᏲᎯ ᎤᎾᏓᎵᏁᎯᏕ. ᏑᏱᎩᎵᏍᎩᏂ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏍᎩᎾ ᎤᎾᏗᏒᎸ, ᎤᎾᏗᏒᎸ ᎠᏂᏬᏂᏍᎬ ᎼᏏ ᎠᏰᎸᎢ, ᎹᏱᎩᎵ ᎥᏝ ᎪᎱᏍᏗ ᎤᏐᏅ ᏳᎳᏫᏎᎴᎢ, ᎯᎠᏉᏍᎩᏂ ᏄᏪᏎᎢ, ᎤᎬᏫᏳᎯ ᏫᏣᏍᎦᎩ. ᏄᏂᎪᎸᎾ ᎢᎨᎬᏁᏗᏱ ᎤᎾᏓᏅᏘ, ᎠᎵᏥᏙᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎦᎶᏁᏛ ᎠᏰᎸ ᎤᎾᎵᏂᎪᎯᏍᏙᏗᏱ; ᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏎ ᎥᎤᏁᏅᏍᏗ ᏱᎩ, ᏂᎯᏉ ᏗᏤᎳᏍᏓ. ᎡᎶᏛᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᏂ ᏥᏍᎫᏕᏒᎩ; ᎯᎠᏍᎩᏂ ᎦᎪ, ᎾᏍᎩ ᎯᎠ ᏥᏄᏍᏗ ᏥᏥᏯᏛᎩᎭ? ᎤᏟᏂᎬᏁᎴᏃ ᎤᎪᏩᏛᏗᏱ. ᎤᏣᏔᏅᎯ ᎠᏆᎵᎮᎵᏨᎩ ᎠᏆᏙᎴᎰᏒ ᎢᎦᏛ ᏗᏤᏥ ᏚᏳᎪᏛ ᎨᏒ ᎠᎾᎢᏒᎢ, ᎾᏍᎩᏯ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎩᏁᎸ ᎠᎦᏴᎵᎨᎢ. ᏗᏂᎦᏙᎵ ᏧᎵᏬᏨ ᏃᎴ ᏳᏂᏚᎬᎾ ᏂᏚᏍᏛ ᎾᏍᎩᏯ ᎠᏍᎪᎵᏰᏛ ᎠᎹᏱ ᏓᏳᎶᏒ ᏅᏯ. ᎤᏛᎾᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎷᏨ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᏴᏫ ᎠᏁᎲ ᎬᏩᎷᏤᎸᎩ ᏓᏕᏲᎲᏍᎬᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙ ᏣᎵᏍᎦᏍᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ? ᎠᎴ ᎦᎪ ᏣᏁᏤᎸᎯ? ᎦᏙᎨᏃ ᎦᎸᏉᏙᏗ ᏂᎦᎵᏍᏗᎭ, ᎢᏳᏃ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸ ᎢᏥᏍᏛᏗᏍᎨᏍᏗ ᎡᏥᎵᎥᏂᎮᏍᏗ ᎢᏨᏂᏗᏳ ᎨᏎᏍᏗ; ᎢᏳᏍᎩᏂ ᎣᏍᏛ ᏂᏣᏛᏁᎮᏍᏗ ᎠᎴ ᎢᏥᎩᎵᏲᎨᏍᏗ ᎢᏨᏂᏗᏳ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎣᏍᏛ ᎠᏰᎵ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ. ᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ; ᏄᏓᎴᏒᏍᎩᏂ ᎪᎱᏍᏗ ᎠᏓᏙᎵᏍᏙᏗ ᎠᎴ ᎠᏔᏲᏍᏗ ᎨᏒ ᎬᏗ ᎠᎵᎮᎵᏍᏗ ᎬᏩᎵᏠᏯᏍᏗ, ᎬᏂᎨᏒ ᏁᏨᏁᎮᏍᏗ ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎢᏣᏚᎵᏍᎬᎢ; ᏙᏱᏨ ᏓᎪᎲᏍᎬ ᎩᎦᎨ ᎠᏥᎾ ᎤᏃᏛ, ᎣᏍᏓ ᎠᏒᎢᏍᏗᏍᎩ ᎢᏳᏍᏗ ᎠᏒᎬ. ᎴᎹᏱ ᎧᏁᎬ ᎤᎾᏛᎦᏅᎩ, ᏓᏂᏴᎬᎢ, ᎠᎴ ᏓᎾᏠᏱᎲᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏁᎷᎬᎢ; ᎴᏥᎵ ᏓᏍᎪᏂᎲ ᏧᏪᏥ, ᎠᎴ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎤᏄᏬᎯᏍᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎾᏁᎲᎾᏉ ᎨᏒᎢ. ᏃᎴ ᎠᏧᏣ ᏩᏏᏓᏂ, ᏣᎦᏨᏍᏔᏅ ᎡᏂᏏ, ᏃᎴ ᎠᏂᎦᏲᏟ ᎠᏂᎨᏯ. ᎣᎩᎨᏳᎯ ᎡᏆ ᎪᎨ ᎣᎩᏫᏒᏅᎢ, ᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᎸᏉᏙᎢ ᎠᏂᏤ ᏚᏯ ᏧᏓᎩᏍᏗ ᎤᏗᎴᎩ ᎨᏒ ᎪᎨᎢ! ᏃᏗ ᏍᏓᏯ ᎠᏍᎪᎵ ᏭᏩᏂᎴᎢ, ᏓᏚᏣᎾᎩᏍᎨ ᏃᎴ ᎠᎵᏖᎸᏂᎮᎢ ᏚᏏᎳᏛ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎠᏨᏍᏙᏗᏍᎪ ᎠᏂᏃᎯᎰ ᎠᏟᎶᏍᏗ ᎦᎧᎲ ᎭᏫᏂᏗᏢ ᎤᏂᎪᏗᏱ, ᎠᎴ ᎦᏂᏢᏫᏉ? ᎥᏝᏃ ᎤᏂᎪᏗᏱ ᎠᏨᏍᏙᏗ ᎦᎪᏗᏱ? ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎾᏍᎩ ᎩᎶ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏙᎴᎰᏍᎩ, ᎠᏥᏛᏙᏗ ᎠᎨᎳᏗᏍᏗ ᎨᏎᏍᏗ ᎤᏓᏑᏴ ᏴᏫ ᎠᏁᎲᎢ. ᏗᏥᏲᎵ ᏗᏇᏥ, ᏞᏍᏗ ᎢᏗᏁᎬᏉ ᎠᎴ ᏗᏗᏃᎪᎢᏉ ᏱᏗᏛᏗᏍᎨᏍᏗ ᏱᎦᏓᎨᏳᏎᏍᏗ, ᏕᎩᎸᏫᏍᏓᏁᎲᏍᎩᏂ ᎠᎴ ᎤᏙᎯᏳᏒᎢ. ᎾᏍᎩ Ꮎ ᏭᏩᎫᏗᏗᏒ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᏂᎦᎥ ᎤᏪᎿᎢᏳ ᎨᏒ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏍᏛ ᏂᎦᏛᏁᎲ ᎦᎶᏁᏛ ᏥᏌ ᏅᏓᏳᏓᎴᏅᎯ. ᎠᎴ ᎩᎶ ᎧᏁᎬ ᎦᏍᎩᎸ ᏓᏳᏓᎴᏅᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎡᏥᎸᏉᏓ ᎣᎦᏁᎳᏅᎯ ᏂᎯ ᏂᏥᎥ ᎢᏥᏅᏏᏓᏍᏗ ᏥᎩ, ᎠᎴ ᏂᎯ ᎡᏥᎾᏰᏍᎩ ᏥᎩ, ᏗᏣᏍᏗᎦ ᎠᎴ ᏗᏣᏔᏅ. ᏂᎯᏃ ᎾᏍᎩ ᎦᎶᏁᏛ ᎠᏰᎸᎢ, ᎠᎴ ᏚᏫᏞᏫᏒᎢ ᎾᏍᎩ ᎢᏥᏏᏴᏫᎭ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎢᏳ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎭ, ᏗᎧᎿᏩᏛᏍᏗ ᎣᏏᏳ ᎨᏒ ᎪᎢᏳᎲᏍᎦ. ᎡᎳᏪᏱᏃ ᎤᏅᏁᎢ. ᎤᏂᏴᎲᏃ ᎤᏅᏩᏁᎢ, ᎠᎴ ᏚᏲᏎᎢ; ᎥᏝ ᎨᏣᏗᏔᏍᏗ ᏱᎩ ᎠᏟᏍᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵ ᎠᏟᏍᏛᎢ. ᎥᏝ ᎨᏣᎵᏍᏓᏴᏗ ᏱᎩ ᎤᎬᏫᏳᎯ ᎤᏪᏍᎩᎸ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎩᎾ ᎤᏂᏍᎩᎸᎢ. ᎢᎾ. ᎠᏌᎹᏗ, ᎤᏬᏚᏨ, ᏃᎴ ᎤᏓᏅᏘ ᎨᏒ ᎢᎪᎯᏓ. ᎠᎴ ᏕᎨᏥᏲᏍᎨᏍᏗ ᏗᏥᎦᏴᎵᎨᎢ, ᎠᎴ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎪᎱᏍᏗ ᏗᏣᏓᏛᎿ, ᎠᎴ ᏗᏣᎵᎢ; ᎠᎴ ᎾᏍᎩ ᏅᏛᏅᏂᏌᏂ ᎩᎶ ᏂᎯ ᏤᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᎨᎵᏍᎬ ᎠᏰᎵ ᎤᏙᏓᏆᏓ ᏫᎦᎶᎯᏍᏗ ᏪᎵᏏ ᏧᎾᏗᏔᏍᏕ, ᏕᏥᎦᏔᎲ ᏧᏍᏆᎳ ᏕᎦᏅᏅ ᏃᎴ ᎣᏍᏓ ᏐᏈᎵ ᎠᎩᎸᏔᏅ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏧᏓᏅᏛ ᎤᏙᎴᎰᏒ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬ ᏙᏧᎾᏓᏅᏛᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᎤᏍᏗ ᎢᏣᏓᏅᏖᎭ ᏙᏗᏣᏓᏅᏛᎢ? ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎪᎲ ᎤᏂᏔᎳᏬᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙᏃ ᎯᎠ ᏣᏤᏬᎩ? ᏝᏍᎪ ᎠᏏ ᏱᏦᎵᎦ, ᎠᎴ ᏝᏍᎪ ᏱᏣᏅᏔ ᎯᏍᎩ ᎦᏚ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᏥᎾᏂᎥᎩ, ᎠᎴ ᎢᏯᎧᎵᎢ ᏔᎷᏣ ᎢᏧᏖᏒᎢ? ᏂᎦᏓ ᎤᎦᏃᏮ ᏩᏁᏙᎮᏍᏗ ᎠᏂᏐᎢ. ᎡᎵᏍᎨᎢᏃ ᎤᎸᏫᏒ ᎤᏴᏍᏗ ᎫᎵᏍᏔᏅ ᏩᏚᎵᏏ ᎠᏑᏱ ᏱᎨᏒᎾ ᎤᏩᏌ ᎤᏗᏔᎲ ᏰᎵᏉ ᎦᏃᎯᎵᏙ ᎢᎾᎯᏳ, ᎡᏘᏴ ᏄᎾᏛᏁᎸ. ᎢᏧᎳ ᎤᏁᎾᎢ, ᎠᏫᏒᏗ ᏧᏂᎯ, ᎢᏧᎳᎭ ᎢᏳᎾᏟᏂᎩᏓ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎤᎾᏰᎯᏍᏗ ᎦᏚᎲ ᎠᎹᏰᎵ ᎠᏰᎵ, ᎠᏓᎨᏗ ᎤᏲᏨ ᏧᏓᏴᎳᏙ ᎾᎥᏂᎨ. ᏐᏈᎵ ᎠᏂᎾᏁᏍᎬ ᎠᏆᏛᎦᏅ, ᏦᎢ ᎢᏯᏂ ᏕᏥᏂᏴᎲ, ᏕᏥᎧᏁᎸ ᎤᎾᏂᎩᏍᏗ. ᏥᏚᏂᎴ ᎠᏂᏲᏍᎩ, ᎤᏐᏱ ᎠᏓᏁᏄᎸᏗᏍᎩ ᏂᎦᏓ ᏗᎨᏥᎢᏍᏗ ᏗᎩᏴᏫ. ᏃᎴ ᏔᎷᎩᏍᎩ ᏕᎦᎶᏛ ᎨᏂᏗ ᏃᎴ ᎣᏍᏓ ᏔᎾᏏ ᏫᏍᎩ ᎠᏥᏍᏛ. ᎯᎠᏍᎩᏂᏃᏅ ᎬᏃᎲᏏ, ᎾᏍᎩ ᎤᎾᏓᏤᎵᏛ ᎤᎾᎵᎪᎯ ᏥᏓᏃᏎᎭ, ᎾᏍᎩ ᎦᏥᏍᏓᏩᏗᏒ ᏥᏯᏓᏙᎵᏍᏓᏁᎲ ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎪᎢᏳᎲᏍᎬᎢ ᏂᎦᏛ ᎪᏪᎵ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏃᏪᎸᎢ; ᏥᏌᏃ ᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏁᎳᏅᎯ ᎡᏦᎢᏳᏎᏍᏗ. ᎠᏎᏃ ᎤᏪᏰᏂ ᎤᏖᎸᏅ ᎡᎳᏪ ᎤᏅᏗᏱ, ᏚᏃᏁᎴ ᏄᎵᏍᏔᏅ ᎤᎬᏫᏳᎯ ᎤᏄᎪᏫᏒ ᏗᏓᏍᏚᏗᏱ. ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎾᏍᎩ ᏫᏗᏥᏃᎲᏏ ᏥᎻ ᎠᎴ ᏦᏣᏓᏅᏟ. ᎤᏄᎪᏤᏃ ᎢᎸᎯᏢ ᏭᎶᏎᎢ. “Ꮟ ᏎᎦ!” ᎤᏪᎷᏁ ᏫᎵᎻ. ”Ꭳ, ᏰᎵᏉ ᏓᎦᏓᏅᏖᎵ,” ᎤᏛᏁ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏏᏉ ᎤᏁᏘᏰᎭ ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏴᏫ. ᎠᏂᏁᏉᎨ ᎠᎾᏓᎭᏲᎯ ᏧᏙᏓᏋᏓ. ”ᎯᏣᎦᏎᏍᏕᏍᏗ, ᏴᏫ ᏛᎾᎢ-ᎾᎢ-ᎾᎢ,” ᎤᏪᎷᏁ ᏌᏌ ᎠᏨᏯᎢ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎯᎨᏳᏎᏍᏗ ᏂᎦᎥ ᏣᎾᏫ ᎲᏗᏍᎨᏍᏗ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏙ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏖᏗᏱ. ᏂᎦᏛᏃ ᏴᏫ ᎤᎾᏛᎦᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ, ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᏗᎨᎦᎧᏍᏔᏅᎯᏰᏃ ᎨᏎ ᏣᏂ ᏧᏓᏬᏍᏙᏗ ᎨᏒᎢ. ᎰᎻ ᎠᏥᏲᎵᎴ,ᏫᎵᎻ ᎱᏙᎰᏎ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᎾᏍᎩ ᎢᎦᏪᏛ, ᎠᎴ ᏩᏍᏛ ᏧᏓᏂᎸᎢᏍᏗᏳ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᎪ ᎡᎶᎯ ᎤᎷᏨᎢ, ᏚᏍᏕᎸᎯᎸ ᎠᏂᏍᎦᎾᎢ, ᎠᏴ ᎾᏍᎩ ᎾᎩᎬᏫᏳᏒ ᏥᏍᎦᎾᎢ. ᎬᏂᎨᏒᏰᏃ ᏂᎦᏥᏴᏁᎭ ᎾᏂᎥᏉ ᎩᎶ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎠᏂ ᎪᏪᎵᎯ ᏥᎪᏪᎳ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ. ᎢᎧᏁᏉᏍᎨᏍᏗ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎠᏂ ᎪᏪᎵᎯ ᏥᎪᏪᎳ, ᎤᏁᎳᏅᎯ ᎠᏎ ᎤᏁᏉᎡᏗ ᎨᏎᏍᏗ ᎤᏕᏯᏙᏗ ᎨᏒ ᎠᏂ ᎪᏪᎵᎯ ᏥᎪᏪᎳ; ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ. ᏂᎯ ᏰᏃ ᏣᏤᎵ ᎯᎪ ᎢᎦ. ᏥᏌ ᎦᎶᏁᏛ ᏅᏩᏍᏗᏉ ᎤᏒᎯ ᏥᏄᏍᏛ, ᎠᎴ ᎪᎯ ᎢᎦ, ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᏂᏥᏲᎵᎪ ᏣᎵ ᎠᏧᏣᏉ ᏥᎨᏒ, ᎠᏆᏦᏍᏔᏁᎲ ᎦᏓᏅᏖᏍᎬ, ᎾᏍᎩ ᎠᏫᏒᎥᏍᎩ ᏃᎴ ᎤᎵᏘᎾᎥ ᎤᏂᏍᎦᏎᏗ ᎤᎾᎵᏓᎩᏛ ᎢᏳᎵᏍᏙᏗ. ᎠᏎᏃ ᎿᏉ ᎣᏏᏳ ᎤᏰᎸᏅ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎾᎯᏳ ᎡᏥ ᎠᎩᎾᏄᎪᏫᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏆᏓᏓᎴᏔᏅᎯ ᏥᎩ, ᎠᎴ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎩᏯᏅᏔᏅᎯ ᏥᎩ, ᎢᏥᏙᏓ ᎠᏍᎩᎾ ᏅᏓᏣᏓᎴᏅᎯ ᏂᎯ, ᎠᎴ ᎢᏥᏙᏓ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎲ ᎢᏣᏛᏁᏗᏱ ᎢᏣᏚᎵᎭ. ᎾᏍᎩ ᏴᏫ ᏗᎯᎯ ᏂᎨᏐ ᏗᏓᎴᏂᏍᎬᎢ, ᎠᎴ ᎤᏙᎯᏳᎯ ᎨᏒ ᎥᏝ ᏱᏚᎴᏂᏍᎬᎢ, ᎠᎴ ᎤᏙᎯᏳᎯ ᎨᏒ ᎥᏝ ᏱᏚᎧᎿᏩᏛᏎᎢ, ᎥᏝᏰᏃ ᎤᏙᎯᏳᎯ ᎨᏒ ᏳᏪᎭ. ᎦᏰᎪᎩ ᎧᏁᎩ ᎤᏤᎵᎦᏉ ᎧᏁᎪᎢ; ᎦᏰᎪᎩᏰᏃ ᎾᏍᎩ, ᎠᎴ ᎤᎦᏴᎵᎨ ᎦᏰᎪᎩ ᎨᏒᎢ. ᏓᏲᏍᏕᏏ ᏫᎵᎻ. ᎠᏍᎦᏂᏰᏃ ᎤᎵᏁᏨ ᎬᏗᏍᎬ ᎠᎩᎶᏄᎮᎸᎩ, ᎠᎴ ᎾᏍᎩ ᎠᎩᎯᏍᏔᏅᎩ. ᏱᎰᏩ, ᏕᏅᏂᎸ ᏗᏣᏤᎵ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎠᏥᎸ ᏗᎨᎳᏍᏗᏱ ᏗᏣᏤᎵ ᏚᏂᏲᏍᏔᏅ; ᎠᎴ ᎠᏋᏒᎯᏳ ᎠᏆᎵᏃᎯᏴ, ᎠᎴ ᎠᏴ ᎬᎩᎯᏍᏗᏱ ᎤᏂᏲᎭ. ᎯᏥᎳᏅᏓᏗᏏ ᎤᎶᎯᏍᏗ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᏚᏍᏓᏩᏛᏎᏃ, ᎠᎴ ᎾᏎᎵᏗ ᏭᎷᏤᎢ, ᎠᎴ ᏕᎤᏁᎶᏕᎢ. ᎤᏥᏍᎩᏂ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏔᏁ ᎤᎾᏫᏱ. ᎾᏍᎩᏃ ᏞᏍᏗ ᎣᏏᏳ ᏂᏣᏛᏁᎲ ᎤᏐᏅ ᏳᏂᏃᎮᎴᏍᏗ. ᎬᏅ ᎢᎪᎯᏛ ᎠᏆᏕᏯᏙᏓᏅ. ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎩᎶ ᎠᏢᏈᏍᎨᏍᏗ ᏱᎰᏩ ᎠᏢᏆᏍᏙᏗᏍᎨᏍᏗ. ᎤᎩᏨᏓ ᎤᏂᎧᎲᏎ ᏫᎵᎻ, ᏑᎧᏔ ᏧᎬ ᎡᎲ, ᏗᎩᏏ ᏗᎦᏓᏍᎬ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗᏣ. ᏧᎾᏍᏕᏥ ᏚᏍᎪᏎ ᏃᎴ ᎤᏅᎪᎥᏔᏁ ᎦᏓ, ᏚᏩᏯᎨ ᎾᏍᎩᏯ ᎠᎪᏍᏗ ᏒᎧᏔ. ᎦᏅᏓᏗᏍᎪ ᏌᏊ ᎢᏳᏩᎪᏗ ᏥᏧᏔᏊ ᏥᎨᏒ ᎩᎶ ᎤᏛᏐᏅ ᎤᏢᎬ ᎢᎸᏍᎩ ᏧᏒᎯᏓ ᎤᏢᏨ ᎠᎴ ᏂᏚᎵᏏᏂᏒ ᎤᏣᏙᎬ ᏂᎬᏩᏍᏛ. ᎩᎶ ᎾᏍᎩ Ꮎ ᏥᎪᎯᏳᎲᏍᎪᎢ, ᎥᏝ ᎤᏍᎦᏅᏨᎯ ᏧᏚᎪᏔᏅᎯ ᏱᎨᏐᎢ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎾᏍᎩ ᎦᏳᎳ ᎤᏍᎦᏅᏨᎯ ᏧᏚᎪᏔᏅᎯ ᎨᏐᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏄᏬᎯᏳᏅᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᏕᎤᏙᎥ ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ. ᏧᏓᎴᏅᏓ ᎦᎵᎨᏴᏗ, ᎠᏥᏍᏙᏗ, ᏗᏗᏙᏗ ᏃᎴ ᏗᎫᎩᏍᏙᏗ. “ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ...” ᏰᎵ ᎤᎾᏓᏃᏴᎵᏍᏕᎢ. ᏫᏥᎢᎦ ᎨᏒ ᎪᎰᏍᏗ ᏱᎾᏆᏛᏁᎸᎾ ᎨᏒ. ᎦᎸᎳᏗᏣ ᎧᏅᏑᎸ ᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ ᏚᎩᏥᏞᎢ ᏌᎳᏓ, ᎠᎬᏱᏣ ᏕᎦᏅᏌᏛᎢ ᏗᎬᏗ ᎤᏄᎩᏤᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ. ᎠᎴ ᏣᏥ ᏗᎦᏚᎲ ᎦᏚᏏᏣ, ᎠᎹᏱ ᎨᏴ ᏫᏙᏍᏓᎧᎾᏂᏍᎬ Alexandria ᎢᏣ, ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ ᎢᏣ, ᏓᏂᏂᎩᎸ ᏃᎴ ᎠᏂᏩᏥᏂ ᏓᏓᏁᎸ ᎾᎥᏂ ᎣᏍᏗᎶᏍᎬ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙ ᎤᏍᏗ? ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏥᏌ ᎾᏎᎵᏗ ᏤᎲᎩ ᏄᎵᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎠᏙᎴᎰᏍᎩ ᏥᎨᏒᎩ, ᎤᎵᏂᎩᏛ ᏚᎸᏫᏍᏓᏁᎸ ᎠᎴ ᏓᏕᏲᎲᏍᎬ ᏥᎨᏎ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎠᏂᎦᏔᎲᎢ. ᎣᎦᏛᎦᏅᎩ ᎯᎠ ᏂᎧᏪᏍᎬᎩ, ᏓᏥᏲᏍᏔᏂ ᎯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᏍᎩ ᏗᎪᏱ ᏗᎬᏔᏅᎯ ᎪᏢᏅᎯ, ᏦᎢᏉᏃ ᏧᏒᎯᏛ ᏛᏥᏱᎵᏙᎵ ᏛᎦᏁᏍᎨᎯ ᏅᏩᏓᎴ ᏗᎪᏱ ᏗᎬᏔᏅᎯ ᏂᎨᏒᎾ. ”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ ᎠᎦᏗᏓ ᎭᎲᏍᎩ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᎾᏍᎩᏰᏃ ᏂᎦᎥ ᎪᎱᏍᏗ ᏧᏬᏢᏅᎯ, ᎾᏍᎩ ᎦᎸᎳᏗ ᏤᎭ, ᎠᎴ ᎡᎶᎯ ᏤᎭ, ᎬᎪᏩᏛᏗ ᎠᎴ ᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎢᏳ ᎤᏂᎬᏫᏳᎯ ᏧᏂᏗᏱ ᏱᎩ, ᎠᎴ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏘᎩ, ᎠᎴ ᎨᏥᎸᏉᏗ ᏱᎩ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᏱᎩ; ᏂᎦᏗᏳ ᏄᏓᎴᏒ ᎾᏍᎩ ᏚᏬᏢᏁᎢ, ᎠᎴ ᎤᏩᏒ ᏚᏓᏙᏢᎾᏁᎴᎢ; ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏁᎸᏙᏗ, ᎠᎫᏩᏌ ᏴᎦᏓᏲᎵᎦ ᏗᏆᏓᎴᏅᎢ ᎤᏪᎵᏎ. ᎾᏍᎩ ᎯᎠ ᎤᏟ ᎠᏃᏏᏳ ᎨᏒᎩ ᎡᏍᎦᏉ ᏕᏏᎶᏂᎦ ᎠᏁᎯ, ᏚᎾᏓᏂᎸᏨᎩᏰᏃ ᎧᏃᎮᏛ ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᏓᏂᎪᎵᏰᏍᎬᎩ ᎪᏪᎵ, ᎾᏍᎩ ᏄᏍᏛ ᎠᎴ ᎾᏍᎩ ᏄᏍᏛᎾ ᎨᏒ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ. ᎤᎾᏓᏙᎵᏍᏔᏅᏃ ᎤᎵᏖᎸᏁ ᎾᎿ ᏓᏂᎳᏫᎥᎢ, ᏂᎦᏛᏃ ᏚᏂᎧᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎾᏂᏍᎦᎢᎲᎾ ᎤᏂᏃᎮᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎠᎩᎪᎲᎩᏃ ᎦᎸᎶᎢ ᎤᎵᏍᏚᎢᏛ ᎨᏒᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎬ ᏐᏈᎵ (ᎥᏥᎪᎥᎩ;) ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎤᎩᎵ, ᏄᏓᎵᏓᏍᏛᎾ ᎠᎴ ᏚᏳᎪᏛ (ᎢᏯᏛᏁᎯ) ᎠᎪᏎᎲᎩ, ᎠᎴ ᏚᏳᎪᏛ ᎬᏗᏍᎬ ᏕᎫᎪᏗᎭ ᎠᎴ ᏓᎿᏩ ᎪᏢᏍᎦ. ᏃᏉ ᎩᎳᏈᏴ, ᎾᎥᏂ ᏗᏁᎨ ᎠᎾᏓᎭᏲᎯ. ᎠᏴ, ᏉᎳ, ᎤᏁᎳᏅᎯ ᎠᎩᏅᏏᏙᎯ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ, ᎾᏍᎩᏯ ᎤᏃᎯᏳᏒ ᎤᏁᎳᏅᎯ ᏧᏑᏰᏛ, ᎠᎴ [ᎾᏍᎩᏯ] ᏗᏓᏂᎸᎢᏍᏗ ᎨᏒ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᏥᎩ, ᏫᏚᏯᎲᏃ ᎤᏂᏣᏘ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏣᏛᎬᎦ ᎠᎴ ᎢᏦᎵᎩ. ᎢᎫᏩᏟᏍᏔ ᎤᎴᏅᎲ ᏕᎪᏪᎵᏍᎬ ᎠᏌᎻᏓ. ᎩᏟ ᎤᏛᎦᏁ ᎠᏂᎾᏁᏍᎬ, ᏧᏅᎪᏤ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎭᏫᏂᏣ, ᏚᏍᏕᎸᎲᏎ ᎠᏂᎨᎯᏒ. ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏤᎦᏈ ᎣᏏᏳ ᏥᏰᎸᏅ, ᎢᏐᏍᎩᏂ ᏥᏂᏆᏘᎸ. ᎾᎯᏳᏃ ᎢᎦ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎨᏎᎢ, ᎤᎾᏙᏓᏆᏍᎬᏃ ᎿᏉ ᎤᎩᏥᏍᎨᎢ. ᎤᏨᏉᏗ ᎨᏎᏍᏗ ᎰᎻ ᏃᎴ ᎠᎵᎮᎵᎨᏍᏗ ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᎤᎾᏌᎥ ᏏᏆ. ᎿᏉᏃ ᎾᏍᎩ ᎠᏂᏔᎵ ᎢᏧᎳᎭ ᏚᏂᏍᏆᎸᏔᏅᎩ; ᏐᎢᏃ ᎠᏓᏍᏓᏩᏗᏙᎯ ᏚᏓᎩᏴᎩ, ᎢᎬᏱ ᎠᏤᎵᏍᏛ ᎤᎷᏨᎩ. ᏣᏓᏬᏍᎪ ᎤᏤᎸᏁ, ᎠᎵᏴᏍᎪᏳᎲᏍᎨ ᏃᎴ ᎠᎵᏍᎩᏏᏙᎮ ᎣᎳ ᎤᏰᎸ ᎠᏓᏅᎵᏰᏍᎨᎢ ᏗᎧᏃᎨᏂ ᎭᏫᏂᏣ. ᎿᏉᏃ ᏗᏦᎸ ᏫᏥᎦᏘ, ᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎠ ᎠᏂ ᎡᎶᎯ, ᎬᏉᎵᎮᎵᎬ ᎤᏂᎧᎵᎢᏍᏗᏱ ᎤᎾᏓᏅᏛᎢ. ᏇᏗᏂᏱᏃ ᎡᏙᎮᎢ, ᏌᏩᏂ ᎠᏓᏰᏍᎩ ᎤᏢᏨᎯ ᎦᏁᎸᎢ, ᎦᏅᎨᏃ ᎠᎵᏍᏓᏴᎲᏍᎨᎢ, ᎠᎨᏴ ᎤᎷᏤ ᎠᏰᎮ ᎫᎫ ᏅᏯ ᎤᏁᎬ ᎠᏢᏔᏅᎯ ᎠᏟᏍᏕ ᎠᏠᏁᏗ ᎾᏓ ᏧᏙᎢᏛ, ᎤᏣᏘ ᏧᎬᏩᎶᏗ; ᎠᎴ ᎤᎶᏒ ᎫᎫ, ᎠᎴ ᎤᎶᏁᏔᏁ ᎠᏍᎪᎵ. ᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᎾᏓᏅᏖᎴ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎪ ᎯᎠ ᎾᏍᎩ ᏣᏐᏢᎢᏍᏗᎭ? ᎦᎪ ᎬᏩᏓᏙᎵᏍᏗ ᎠᏍᎦᏅᏨᎢ? ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏩᏒ? ᎤᏣᏘᏃ ᎤᏁᎷᏅᎩ; ᏗᏃᏪᎵᏍᎩᏃ ᎠᏂᏆᎵᏏ ᎤᎾᎵᎪᏒ ᎤᎾᎵᎪᎯ ᏚᎾᎴᏅᎤᎾᏗᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝ ᎪᎱᏍᏗ ᎤᏲ ᏲᏥᏩᏛᎡᎭ ᎯᎠ ᎠᏍᎦᏯ, ᎢᏳᏍᎩᏂ ᎠᏓᏅᏙ ᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏁᏤᎸᎯ ᎨᏎᏍᏗ, ᏞᏍᏗ ᎤᏁᎳᏅᎯ ᏤᏓᏟᏴᎡᎸᎩ. ”ᏤᏍᏗ ᏩᎦ ᏧᎾᏗᎩᏓ ᏳᏫᏣᏗᏅᏎᏍᏗ ᏏᏆ ᎤᏴᏍᏗ. ᏃᎴ ᎦᏄᎾᏓᎴᎩ, ᎤᎵᏏᎩ ᎤᎾᎦᎸ, ᏫᏥᎢᏴ ᎾᏍᎦᏰᎬᏍᏓ ᎨᏎ ᎡᏍᎦᏉ ᎤᏁᎾᎢ ᏗᏂᎳᏫᎩ ᏃᎴ ᎤᏨᏉᏗ, ᎠᎦᏔᏁᎢ ᎠᏁᎵᏍᎨ. ᎠᏕᎳ ᏓᎶᏂᎨ ᏍᏉ ᎧᏂᎩᏓ. ᏂᎦᏗ ᏱᎬᏆᏓᎰᏓ.” ᎾᎿᏃ ᎠᏂᏙᎾᎡ ᎤᏂᏣᏖ ᎠᏂᎨᏴ Ꭸ ᎢᏴᏛ ᏙᏗᏂᎧᏁᎢ, ᎾᏍᎩ ᏥᏌ ᎨᎵᎵ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎬᏩᏍᏕᎸᎯᏙᎸᎯ, ᎠᎴ ᏥᎦᏔᎭ ᏂᎪᎯᎸᎢ ᏍᏆᏛᎦᏁᎲᎢ; ᎠᏎᏃ ᏴᏫ ᎠᏂ ᏣᏂᏙᎾᎠ ᏅᏓᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏥᏂᏥᏫ, ᎤᏃᎯᏳᏗᏱ ᏂᎯ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ. ᎢᏳᏃ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᏓᎯᎯ ᎨᏒ ᎤᎬᏩᎵ ᏥᎪᏪᎴ ᏣᏰᎶᎴ ᏅᏲᎯ ᎦᎸᏉᏗᏳ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᎪᎯᏛ ᏗᎬᏩᎾᎧᏃᏗ ᏂᎨᏒᎾ ᏥᎨᏎ ᎼᏏ ᎤᎧᏛᎢ, ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏗᎬᏩᎸᏌᏛ ᎨᏒ ᎤᎧᏛᎢ; ᎾᏍᎩ ᎠᎲᏍᏗᏉ ᏥᎨᏎᎢ; ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎿᏉ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎯᎠ ᎾᏍᎩ ᏂᎦᎵᏍᏔᏂᏙᎲᎢ, ᎢᏥᎦᏔᎮᏍᏗ ᎾᎥᏂᏳ ᎨᏒᎢ, ᎦᎶᎯᏍᏗᏱᏉ ᎨᏒᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᎤᏓᎵᎢ ᎠᏓᎡᎨᏍᏗ, ᎠᎴ ᏅᏩᏓᎴ ᎠᏓᏰᎨᏍᏗ, ᎾᏍᎩ ᎠᏓᏲᏁᎮᏍᏗ ᎠᏍᎦᏅᏤᎮᏍᏗ ᎾᏍᎩ. ᎯᎠ ᎾᏍᎩ ᎣᎵᏩ ᏔᎵ ᏕᏡᎬᎢ, ᎠᎴ ᏔᎵ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗᏱ ᏥᏕᎦᎧᎭ ᎤᏁᎳᏅᎯ ᎡᎶᎯ ᎤᏬᏢᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ. ᎤᏙᏓ ᎤᏲᏏᏙᎸ ᎨᏎ ᏁᎳᏚᏔᎵᏚ ᎤᏕᏱᏴᏌᏗᏒ, ᎠᏘᎨ ᎤᏥ ᎠᏎ ᎤᏲᎰᏒ. ᎠᏂᏰᏃ ᎣᏥᏯᎥ ᎣᎩᎵᏰᏗᎭ, ᎤᏣᏘ ᎣᎦᏚᎵᎭ ᎣᎦᏄᏬᏍᏙᏗᏱ ᎣᏥᏁᎸ ᎾᏍᎩ Ꮎ ᎦᎸᎶ ᏅᏓᏳᏓᎴᏅᎯ; ᎤᎾᏙᏓᏆᏍᎬᏃ ᎢᎦ ᎨᏒᎩ ᏥᏌ ᏝᏬᏔ ᎤᏬᏢᏅ ᎠᎴ ᏗᎦᏙᎵ ᏚᏍᏚᎢᏒ. “ᎨᏍᏗ ᎭᏂ ᏣᏓᏂᏯᏍᏗ ᏱᎩ. ᎠᎴ ᏁᎲᎾ ᎨᏎ ᎤᏁᏥ, ᎵᏏᏰᏃ ᎥᏝ ᏱᏓᎷᎸᎥᏍᎨᎢ, ᎠᎴ ᎢᏧᎳ ᎿᏉ ᎠᏂᎦᏴᎵᎨ ᎨᏎᎢ. ᎠᎴ ᏩᎾᎦᎳ ᏂᎨᏒᎾ ᎨᏒ ᎤᏬᎯᏳᏒᎢ, ᎥᏝ ᏳᏓᏅᏖᎴ ᎤᏩᏒ ᎠᏰᎵ ᎤᎵᏬᏨᎯ ᎨᏒᎢ, ᎿᏉ ᎠᏍᎪᎯᏧᏈ ᎢᏴᏛ ᎢᏳᏕᏘᏴᏛ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏳᏓᏅᏖᎴ ᎤᎶᏒᏍᏓᏁᎸᎯ ᎨᏒ ᏎᎵ ᏧᏓᎾᏄᎪᏫᏍᏗᏱ; ᏍᎩᎾᎾ ᎢᏴ ᎤᏓᏲᏍᏔᏁᎴ ᏌᎳᏓ. ”ᎮᎵᎠᎨ ᎧᏅᏂᏍᎩ...” ᎤᎴᏅᎮ ᎰᎻ---ᎤᎵᏍᏛᏂᎴᎢ, ᎨᏍᏗ ᏳᏍᏆᏙᎾ ᎢᏳᏪᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎯᏲᎯᎮᏍᏗ ᏣᏓᏁᏗ, ᎾᎿᏃ ᎢᎭᏅᏓᏗᏍᎨᏍᏗ ᏗᏍᏓᏓᏅᏟ ᎪᎱᏍᏗ ᏤᎵᏎᎲᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᏃᎦ ᎤᏍᏗᎩᏳ, ᎠᏎᏃ ᎠᏉᎯᏳ ᎦᏬᏂᏍᎪᎢ. ᎬᏂᏳᏉ ᎤᏍᏗ ᎠᏥᎸ ᏄᏣᏔ ᎠᏓ ᏓᏥᏍᏢᏍᎪᎢ. ᏍᎩᏃᎲᏏ, ᎢᎳᎩᏳ ᎾᏍᎩ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ? ᎠᎴ ᎦᏙ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᎾᎯᏳ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒᎢ? ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᏥᏴᎩ ᎤᎬᏫᏳᎯ ᎠᎩᏍᏛᏗᏍᎬ ᎥᎩᏴᎩᏅᎯ, ᎢᏨᏔᏲᏎᎭ ᎢᏣᎴᏂᏓᏍᏗᏱ ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᏓᏯᏅᏙᏗ ᎨᏒ ᎾᏍᎩ ᏂᎯ ᎡᏥᏯᏅᏔᏅᎯ ᏥᎩ; “ᎭᏩ,” ᎤᏛᏁ ᏫᎵᎻ. ᎠᏆᏚᎵᏍᎬ ᏗᏆᏔᏪᏙᏍᏗ, ᎠᏎᏃ ᏫᏥᏂᏴ ᎤᏬᏰᏂ, ᏓᏳᎾᏌᎾᎩᏒ. ᎦᏁᏌ ᎠᏓᏴᏍᏕᏍᎩ ᏗᎦᎶᏔᏅ, ᎣᏍᏓ ᎪᏪᎵ ᏗᏒᏗ, ᏱᏗᎦᏒᏓᏅ ᎠᏦᎭᏴ, ᎦᏢᏗ ᎠᏍᏆᏚᎸ ᎠᏓᎾᏅ. ᏎᎩᏃ ᎤᏓᏍᏛᏝᏁ. ᎾᏍᎩ ᏞᏍᏗ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᏱᏗᏥᏴᏍᏕᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏣᏘ Ꭴ-ᏲᎢᏳ ᏥᎩ; ᎠᏓᏅᏙᏍᎩᏂ ᎢᏥᎧᎵᏬᎯ ᎨᏎᏍᏗ. ᎢᏧᎳ ᎤᎾᏦᏍᏔᏁ, ᎫᏩᎾᎴᏗ ᏱᎨᏒᎾ ᏚᏓᏫᏍᎦᎨᎢᏴ ᏅᏯ. ᏴᏫ ᎤᏪᏥ ᎤᏙᎯᏳᎯ ᎤᏪᏅᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎠᏥᏃᎮᏍᎬᎢ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎠᏍᎦᏯ ᏴᏫ ᎤᏪᏥ ᎠᏡᏗᏍᎩ! ᎣᏏᏳ ᏱᎨᏎ ᎢᏳᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᏄᏕᏅᎾᏉ ᏱᎨᏎᎢ. ᎨᏍᏗ ᎪᎱᏍᏗ ᏯᎦᏓ ᎡᏍᎦ. ᎢᏳ ᎠᎴ ᎦᎶᏁᏛ ᏧᏤᎵ ᏱᎩ ᏂᎯ, ᎿᏉ ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ ᏂᏣᎵᏍᏗᎭ, ᎠᎴ ᎢᏣᏤᎵᎦ ᎤᏘᏴᎯ ᎾᏍᎩᏯ ᏂᎬᏅ ᎠᏚᎢᏍᏛᎢ. ᏂᎦᏛᏃ ᎦᏚᎲ ᎤᎾᎵᏖᎸᏅᎩ, ᎠᎴ ᏴᏫ ᎤᎾᏓᏟᏌᏅᎩ, ᎠᎴ ᏉᎳ ᎤᏂᏂᏴᎲᎩ ᎤᏂᎾᏌᎾᏫᏛᎲᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏄᎪᏫᏒᎩ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎦᎶᎯᏍᏗᏱ ᏚᏂᏍᏚᏅᎩ. ᏈᎵᎩᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏰᎵᏉ ᎢᏳᏃ ᏂᎦᎥ ᏣᎾᏫ ᏴᏗᎭ ᏲᎯᏳᎲ-Ꭶ. ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎪᎢᏳᎲᏍᎦ ᏥᏌ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ. ᎬᏯᎵᎮᎵᏍᏓᏁᎭ!” ᎦᏄᎪᎮᏃ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏏᏴᏫ ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏂᏳᏉ ᎾᏂᏕᎤᏍᏗ ᏅᏯ ᎠᎴ ᏂᏕᎤᏍᏗ ᏓᏓᏁᎸᎢ? ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᎦᎸᏉᏗᏳ ᏗᏓᏙᏪᏙᎥᏍᏗ ᏕᏥᏲᎵᏍᏗᏍᎨᏍᏗ. ᎯᎠ ᏄᏪᏒ, ᎠᏲᎰᏎᎸ ᏥᏃᎮ, ᏂᎯ ᏍᏉ ᏓᏣᏲᎰᏎᎵ . ᎥᏝᏰᏃ ᏴᏫ ᏗᎬᎩᏲᎯᏎᎸᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏇᏲᏅᎯ ᏱᎩ, ᏥᏌ ᎦᎶᏁᏛᏍᎩᏂ ᎬᏂᎨᏒ ᎢᏯᏋᏁᎸᎯ. ᎤᎪᎵᏰᎡ ᏫᎵᎻ. ᎦᏣᏄᎳ ᏕᎦᎵᎥᏂᏍᏗᏍᎨ ᏕᎪᏯᏛ ᎠᏁᎸᏗᏍᎬ ᏎᏉ ᎤᏟᏫᏛᏗ. ᎨᏍᏗᏃ ᏳᎯᏯ ᎤᎾᏑᏯᎩᏍᏗ. ᎤᏁᏤᎸ ᎤᏥ ᎤᏬᎯᏳᏁ ᎡᎳᏆᏗ, ᏓᏆᎴᎳ ᎠᏌᏅᏗ ᏭᎩᎶᏫᏎᎢ, ᎣᎯᏍᏗᎨ ᎤᎪᏩᏛᏗ. ᎤᎾᏚᎵᏍᎩᏍᎩᏂ ᏥᎩ ᎤᏁᏅᎢᏍᏗᏱ, ᎤᏓᎴᎾᏍᏗᏱ ᎠᎴ ᎠᏌᏛ ᏫᏓᏂᏅᎪᎢ, ᎠᎴ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎤᎵᏍᎦᏂᏍᏛ ᎠᎴ ᎤᏲ ᎢᏯᏓᏛᏁᎯ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏥᏚᏂᏃᏴᏘᏍᏗᎭ ᏴᏫ ᎾᎿ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ. ᏣᏚᎵᏍᎪᏃ ᏣᎦᏙᎥᎯᏍᏗᏱ, ᏂᏣᏓᏅᏛᎾ ᎯᏍᎦᏯ, ᎪᎯᏳᏗ ᎨᏒ ᎤᎵᏬᏨᎯ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏔᎵ ᏄᏛᏛᎾ ᏱᎩ? ᎩᎳᏈᏴ ᎤᏍᏗ ᎠᏣᏗ ᎱᎶᏎ ᏃᎴ ᎯᎠ ᏄᏪᏎ, ᏏᏲ ᎡᏆ ᎠᏣᏗ, ᏃᏗ ᏫᏥᎢᏣ ᏭᏓᏬᎡ. ᎤᎦᏌᏯᏍᏗᏕᎩᏃ ᎯᎠ ᏄᏪᏎ ᎤᏩᏒ ᏧᏓᏅᏛᎢ, ᎦᏙ ᏓᎦᏛᏁᎵ, ᎠᎩᏅᏏᏙᎯᏰᏃ ᎠᎩᎩᎡᎭ ᎠᏆᎦᏌᏯᏍᏗᏕᎩ ᎨᏒᎢ? ᏝᏃ ᏰᎵ ᎬᏆᏍᎪᏍᏗ ᏱᎩ; ᎠᏆᏚᎳᏗᏓᏍᏗᏱᏃ ᎢᎦᏕᎣᏍᎦ. ᎤᏪᎷᏁᎢ. ᎤᏲᏰᏃ ᎠᏓᏅᏓᏗᏍᏗ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᏩᎵᏰᎢᎶᎯᎭ ᎥᏓᏗᏍᏕᎸᏗᏱ ᏫᎦᎷᎩ, ᎾᏍᎩ ᎤᏲ ᎠᏰᎸᏗ ᏂᎨᏒᎾ; ᎡᎶᎯᏍᏗᏂ ᎡᎯ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ. ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ ᎤᎾᎧᏙᏍᏓᏁᎢ ᎦᏓᎥᎢ. ᏣᏄᏏ Ꮟ ᎩᎳᎯ ᎦᏙᎨ, ᏃᎴ ᎠᏂᎪᏕᏍᎩ, ᏂᎦᏓ ᏦᎢ ᎢᏯᏂ ᏓᏂᏙᎨ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᎪᎯᏓ, ᎠᏂᎪᎵᏰᏍᎨ ᎢᏗᎦᏪᏍᏗ ᎤᏩᎬᏘᎶᏓ, ᏃᎴ ᎤᎾᎦᏙᏍᏕ ᏫᎵᎻ. ᎠᎹᏳᎸᏓ ᎾᎥᏂ ᏚᏂᏣᎦᏒ ᎠᎯᏯ ᎤᏓᏓᏍᎬ, ᎤᎾᎦᎰᏍᏔᏅ, ᏎᎦ ᎡᎶ ᏣᎵᏍᏆᏗᏍᎪ ᏄᏍᏛ. ᎠᎴ ᎵᏃ ᏚᏂᎧᏅ ᎯᎠ ᏄᏂᏪᏎ ᏚᎾᏛᏛᏁᎢ; ᎦᎪ ᎤᎵᏂᎬᎬᎢ ᎠᎴ ᎦᎪ ᎦᏙᎥ ᎢᏍᏛᏔᏅ, ᎯᎠ ᏂᏍᏓᏛᏁᎸ? ᎦᏓᏁ ᎤᏑᎸ ᎡᎳᏆᏗ ᎦᏓᏁ ᏄᏩᏁᎴ ᎦᏗ. ᎢᏅ ᏗᏂᏙᎾᎡᏍᏗ ᎠᏂᏍᎦᎢᎲ ᎠᎩᎵᏲᎬ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎤᏲᏍᏛᏉ, ᎤᏲᏍᏛᏉ, ᎾᏍᎩ ᎾᎡᏆ ᏓᏓᎶᏂ, ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎦᏚᎲᎢ! ᏑᏟᎶᏛᏉᏰᏃ ᎢᎪᎯᏛ ᏗᏣᏚᎪᏓᏁᏗ ᎨᏒ ᏣᎷᏥᏏ. ᎣᎬᏛᎦᏅ ᎩᎶ ᎢᏳᎾᏍᏗ ᎪᎦᏓᏑᏰᏛ ᎠᏂᏬᏂᏍᎬ ᎨᏣᏕᏯᏙᏔᏅᎢ ᏕᎨᏥᎦᏔᎲᎡᎲ ᏗᏣᏓᏅᏙ, ᎯᎠ ᎾᏂᏪᏍᎬᎢ; ᎠᏎ ᏤᏥᎤᏍᏕᏎᏗ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏦᏥᏁᏤᎸᎯ ᏂᎨᏒᎾ; ᎲᎦ ᎾᏂᎠᎭ? ᎢᏳᏃ ᏕᏛᏂᎡᏍᏗ ᎠᏎ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᎩᎬᏫᏳᏌᏕᎨᏍᏗ; ᎢᏳᏃ ᎢᏒᏓᏓᏱᎸᎭ ᎾᏍᏉ ᎠᏎ ᏓᎦᏓᏱᎵ. ᏕᏫᏰᏃ ᎪᎱᏍᏗ ᏚᏛᏁᎸ ᎾᎯᏳ ᎤᎾᏕᏅᎯ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬ ᎾᏍᎩᏯᎢ, ᎤᎸᏁᎢ, ᎠᎴ ᏧᎦᏴᎵᎨ ᏓᏂᎾᎥ ᎠᏥᏅᏁᎢ, ᎠᎴ ᎤᎪᏎᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᏕᎤᏲᏒᎩ ᎤᏕᎰᎯᏍᏗ ᎤᎾᏚᎸᏅᏗᏱ; ᎾᏍᏉᏰᏃ ᎠᏂᎨᏴ ᏧᎾᏤᎵᎦ ᎾᏍᎩ ᎠᎲ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎤᏂᏁᏟᏴᏍᏔᏁ ᎾᏍᎩ ᎠᎲ ᎢᏳᎾᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏚᏪᏲᏁᏰᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏴᏫ ᎤᏪᏥ ᏓᏥᏲᎯ ᏕᎨᏥᏲᎯᏏ ᏴᏫ. ᎠᎴ ᏓᎬᏩᎵ; ᎠᎴ ᎣᏂ ᎿᏉ ᎠᏥᎸᎯ ᎨᏎᏍᏗ, ᏙᏛᎠᎴᎯᏌᏂ ᏦᎢᏁ ᎢᎦ. ᎤᏓᏅᏙᎩᎯᏃ ᎭᏫᏂ ᎤᎵᏰᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎪᎯ ᎯᎠ ᏣᏁᎭ ᎤᏰᎸᏛ ᎤᏂᏲᎭ? ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎬᏂᎨᏒ ᎢᎨᎬᏁᏗ ᏱᎨᏎᏍᏗ ᎤᏰᎸᏛ ᎯᎠ ᎪᎯ ᏣᏁᎭ. ᎣᎩᎸᏉᏗ ᎨᏒ ᎾᎥ ᎢᏦᎦᏓᎵ ᏧᏁᏅᏒ ᏬᎨᏓᏍᏗ. ᎠᏃᎯᏳᎲᏍᎩᏃ ᎤᏂᎧᎵᏨᎯ ᎨᏎ ᎠᎾᎵᎮᎵᎬᎢ ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ᏰᎵ ᏧᏕᏘᏴᏓ ᏥᎨᏎ ᏣᎵ ᏧᏤᎵ ᏗᏂᏲᏟ ᏥᏚᏃᎯᏎᎴ ᏲᎾ. ᏧᏍᏆᏴᏍᏗ, ᎤᏲ ᎤᏓᏅᏖᎢ ᎤᏲᎰᏎᎸ ᎤᎸᏉᏗ ᎤᏪᏥ. ᏉᎳᏃ ᎤᏠᎣᏒ ᎤᎵᏢᏅᎩ, ᎠᎴ ᎤᏄᎶᎸ ᎯᎠ ᏄᏪᏒᎩ; ᏞᏍᏗ ᏱᏣᏕᏯᏔᏁᎴᏍᏗ, ᎬᏅᏰᏃ ᎠᏏᏉ ᎠᏯᎠ. ᏃᏉ ᏚᏃᎩᏒ ᏲᎾ ᎠᏂᏃᎯᎵᏙ ᎤᏂᏃᎩᏍᏗ. ᏱᎰᏩᏃ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎦᏙᎨ ᎠᎦᏘᏏᏗᏢ ᎦᏩᏒᎩ ᎬᏙᏗᏱ ᎪᏢᏒᎢ. ᎠᎴ ᎾᏍᏉ ᎠᎹᏟ ᎢᏨᏍᎨᏍᏗ, ᏞᏍᏗ ᏅᎾᏠᎾᏍᏗ ᏄᎾᏍᏛ ᏱᏂᏣᏍᏕᏍᏗ, ᎤᎾᏓᏙᎵᏍᏗ ᏥᎨᏐ ᏗᎧᏃᏗᏱ, ᏂᏓᏤᎸᎾᏰᏃ ᏂᏓᏅᏁᎰ ᏚᎾᎧᏛᎢ, ᏴᏫᏉ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎤᎾᏚᎵᏍᎪ ᎠᎹᏟ ᎠᏅᏍᎬᎢ. ᎤᏙᎯᏳᎯᏯ ᏂᏨᏪᏎᎭ ᎨᎦᎫᏴᎡᎸ. ”ᏣᏰᏨᎯᏧ ᏌᎳᏓ?” ᎡᏝᏪ ᏄᏪᏎ. ᎤᏜᏅᏛᏍᎩᏂ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏙᏱᏗᏢ ᏥᎪᏢᎭ, ᎯᏃᎯᏴᎭ, ᎠᎴ ᏞᏍᏗ ᏣᏟᎶᎥᎩ, ᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᎨᏥᏁᎸᎯ ᎾᏍᎩ; ᎠᎴ ᎦᎸᏉᏗᏳ ᎦᏚᎲ ᎤᎾᎳᏍᏓᎡᏗ ᎨᏎᏍᏗ ᏅᎦᏍᎪᎯ ᏔᎵᎦᎵ ᎢᏯᏅᏙ. ᏌᎪᏂᎨ ᎤᏌᏃᎲ ᎠᏌᎥ ᎤᏬᏢ, ᎫᏂᎨᏒ ᏂᏚᏍᏛᏗᎦᎦᎶ, ᎤᏙᏩᏗᏍᏛ ᎠᏰᎵ. Sam Houston ᎢᏳᏓᎵᎭ ᎤᏪᏓᏍᏗ ᎨᏎ, ᏏᏛ Texas ᎢᏣ ᏳᏩᎵᏗᏍᎩᏍᎬᎾ ᏥᎨᏎ, ᎩᎳᎯ ᎤᎯᏐᏗ ᎠᏂᏃᎮᏍᎨ. ᎢᏣᎦᏌᏯᏍᏕᏍᏗ ᎾᏍᎩ Ꮎ ᎦᎸᎳᏗ ᎡᎯ ᎨᏒᎢ, ᎥᏞᏍᏗᏃ ᎡᎶᎯ ᎡᎯ ᎨᏒᎢ. ᎢᏳᏃ ᏱᏥᏍᏆᏂᎪᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵᎦ, ᏱᏅᏩᏍᏗᏗᏉ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏣᎩᏍᏆᏂᎪᏔᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎡᏙᏓ ᎤᏤᎵᎦ, ᎠᎴ ᏥᏅᏩᏍᏗᏗᏉ ᎠᎩᎨᏳᎯᏳ ᎨᏒᎢ. ᎠᏎᏃ ᏓᏰᏣᎵᏂᎪᎯᏍᏔᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏥᎷᏤᎸᎭ, ᎠᎴ ᏍᎩᏃᎮᏍᎩ ᎨᏎᏍᏗ ᏥᎷᏏᎵᎻ ᎠᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏌᎺᎵᏱ ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ. ᎢᎬᏱᏱᏃ ᎨᏥᏅᏒᎯ ᎤᏂᎷᏨ ᎤᏟ ᎢᎦᎢ ᏓᏲᎦᎫᏴᎡᎵ ᎤᏁᎵᏎᎢ. ᎠᏎᏃ ᎾᏍᏉ ᎠᎩᏏᏉ ᏧᎬᏩᎶᏗ ᎠᏂᏏᏴᏫᎭ ᎢᎨᎦᎫᏴᎡᎴᎢ. ᏑᏟᎶᏛᏉᏰᏃ ᎢᎪᎯᏛ ᎾᏍᎩ ᎢᎦᎢ ᏧᎬᏩᎶᏗ ᎠᏎᏉ ᏂᎦᎵᏍᏔᏂᏛ. ᎠᎴ ᎾᏂᎥ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏥᏳ ᏧᏔᏅ ᏓᏂᏂᏙᎲᎢ, ᎠᎴ ᎾᏂᎥ ᏥᏳᎯ ᎤᎾᏣᎢ, ᎠᎴ ᏥᏳ ᏗᏂᏂᏙᎯ, ᎠᎴ ᎾᏂᎥᏉ ᎠᎺᏉᎯ ᎠᏂᏃᏔᏂᏙᎯ, ᎢᏅ ᏛᏂᏙᎾᎥᎩ, ᎠᏎᏃ ᎤᏃᎯᏳᏅ ᏈᎵᎩ ᎠᎵᏥᏙᎲᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎴ ᏕᎤᏙᎥ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏩᎵ, ᏕᎨᎦᏬᏍᎨ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨ-Ᏼ. ᏥᏌᏃ ᏫᏚᏯᏅᎲ ᎯᎠ ᏄᏪᏎᎢ, ᎤᎾᏁᎳᎩ ᏗᏤᎵᏏ ᏗᏂᏲᎵ ᎬᎩᎷᏤᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏗᏥᏅᏍᏓᏕᎸᎩ; ᎾᏍᎩᏰᏃ ᏄᎾᏍᏗ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᏕᏫᏰᏃ ᎤᏩᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏪᏲᎲᏍᎬ ᎯᎠ ᏄᏪᏎᎢ, Ᏹ-ᎰᏩ ᎯᎠ ᏁᏪᏎᎴ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ, ᏥᎦᏗᏏ ᎢᏗᏢ ᏦᎴᏍᏗ ᎬᏂ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ. ᎢᏗᎦᏔᎭᏰᏃ ᎤᏁᎳᏅᎯ ᏂᏓᏛᎦᏁᎲᎾ ᎨᏒ ᎠᏂᏍᎦᎾᎢ, ᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ ᏱᎩ, ᎠᎴ ᎾᏍᎩ ᎠᏓᏅᏖᏍᎬ ᎢᏯᏛᏁᎯ ᏱᎩ, ᎾᏍᎩ ᎠᏛᎦᏁᎰᎢ. ᏣᏄᏏ ᎤᏁᎸᏔᏁᎢ ᎤᏂᏴᏗ. ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᎠᏏᏴᏫ, ᎡᏂᏗ ᏧᏙᎢᏛ, ᏌᏩᏂ ᏈᏓ ᏗᎾᏓᏅᏟ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏍᎩ ᎢᎩᏍᏕᎸᏛ ᏥᎩ, ᎠᎴ ᎢᎩᏯᏅᏛ ᏥᎩ ᎤᏩᏔᏅᎯ ᎦᎸᏉᏗ ᎠᏓᏯᏅᏗ ᎨᏒᎢ, ᎥᏝ ᎠᏴ ᏕᎩᎸᏫᏍᏓᏁᎲ ᏱᏅᏧᎵᏍᏙᏔᏅ, ᎤᏩᏒᏍᎩᏂ ᎤᏓᏅᏖᎸᎢ ᎠᎴ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏧᎵᏍᏙᏔᏅ, ᎾᏍᎩ ᎢᎩᏁᎸᎯ ᏥᎩ ᏅᏧᏓᎴᏅᎲᎾ, ᏥᏌ ᎦᎶᏁᏛ ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᎤᎷᏤᎢ ᎠᎴ ᎤᎵᏂᏥᏙᏁ ᎢᏥᏃᎯᎮᎴ ᎾᏍᎩ ᏙᎯ ᎢᏥᏩᏛᎡᎯ ᎨᏒᎢ, ᏂᎯ ᎢᏅ ᎢᏣᏛᎿᏕᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎾᎥ ᎢᏳᎾᏛᎿᏕᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎾᎥ ᎢᏳᎾᏛᎿᏕᎩ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏧᏂᏄᎪᏨ, ᏌᏩᏂ ᎠᎴ ᎡᏂᏗ ᎠᏂᏁᎸ ᏭᏂᏴᎴᎢ, ᎠᏁᎮ ᏥᎻ ᎠᎴ ᏣᏂ. ᎤᏂᏩᏘᏃ ᏴᏫ ᏙᏱᏗᏢ ᎠᎾᏓᏙᎵᏍᏗᏍᎨ ᎾᎯᏳ ᎠᏜ ᎦᏩᏒᎩ ᎬᏙᏗᏱ ᎤᏍᏆᎸᎲ. “Ꭳ, ᏫᏔᎧᎾᎦ! ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎿᏉ ᏥᏌ ᎤᏍᏆᏛ ᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏗᏍᎬᎢ, ᎤᏂᎩᏒᎩ. “ᎠᏎᏃ ᏲᎾ ᎤᏤᏍᏙ, ᎣᏍᏓ ᏱᏥᏰᎸᎾ ᏙᏱ ᏱᏗᏣᏁᎶᎾ ᎯᎪ ᎢᎦ ᏣᏉ ᏣᏚᏥ ᎰᎻ ᎤᏤᎵᎪ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏱᏘᏩᏛ ᏗᏣᎵᎢ, ᎪᎱᏍᏗ ᎣᏍᏓ ᏱᏂᏣᏛᏁᎳ ᏙᏱᏨ. ᏌᏩᏂᏃ ᎤᏓᎵᎢ ᎤᏥ ᎦᏅᎨ ᎤᏢᎨ ᎤᏗᎴᎲᏍᎨᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᏃᏁᎴᎢ. ᏂᏓᏙᏓᏈᏒ ᎣᎦᎵᏍᏓᏴᏗ ᏍᎩᎥᏏ ᎪᎯ ᎢᎦ. ᎤᏦᎣᏌ, ᎤᏙᎯ ᏭᏓᎩᏁᎴ ᎠᏍᏕᏯᏓ. ᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏗᏍᎩᏲᏏᏌᏏ ᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏛᎢ. ”ᎠᎩᏂᎬᎦ ᎠᎩᏏᎳᏛᏙᏗ.” “ᏧᏍᏆᏴᏍᏗᏗ! ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᎢᎦᎢ ᎢᎦᎦᏌᏯᏍᏙᏗ ᏱᏂᎦᎵᏍᏓ ᏄᏍᏛ ᎢᎦᏛᎦᏅᎢ, ᎾᏍᎩ ᎢᎸᎯᏳ ᏗᎬᏍᎦᎶᎢᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᏞᏍᏗ ᏱᏥᎨᏳᏎᏍᏗ ᎡᎶᎯ, ᎠᎴ ᎪᎱᏍᏗ ᎡᎶᎯ ᎡᎯ. ᎢᏳᏃ ᎩᎶ ᎡᎶᎯ ᏳᎨᏳᎭ, ᎥᏝ ᏱᎬᏩᎨᏳᎭ ᎠᎦᏴᎵᎨᎢ. ᎤᏁᎳᏅᎯᏃ ᏧᏂᎾᏫ ᏗᎦᏔᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎩ ᏕᎨᎦᏓᏂᎸᏨᎢ, ᏕᎠᏁᎲ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᏴ ᎾᏍᎩᏯ ᏥᎩᏁᎸᎩ. ᎠᎴ ᎢᎾᎩ, ᎠᏓᏫ ᎤᏕᏅ ᎦᎵᏉᎩᏁ ᏪᎯ, ᎾᏍᏉ ᎠᏙᎴᎰᏍᎬ ᎯᎠ ᎾᏍᎩ ᏚᏁᎢᏍᏔᏁ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎤᎬᏫᏳᎯ ᏓᎦᎷᏥ ᏓᏘᏁᎮᏍᏗ ᎠᏍᎪ ᎢᏯᎦᏴᎵ ᏧᏙᎵ ᎤᎾᏓᏅᏘ, ᏗᎪᏪᎵᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; Ꭷ, ᏔᏕᏲᎲᏍᎩ, ᏚᏳᎪᏒ ᏂᏫ; ᏌᏉᏉᏰᏃ ᎡᎭ ᎤᏁᎳᏅᎯ; ᎥᏝ ᎠᎴ ᏅᏩᏓᎴ ᏰᎭ ᎾᏍᎩ ᎤᏩᏒᎯᏳ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎬᎩ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏄᏍᏗᏓᏅ ᎦᎸᎳᏗ ᏤᎯ ᏗᏟᎶᏍᏔᏅᎯ ᎨᏒ ᏗᎦᏅᎦᎸᏙᏗᏱ ᎯᎠ ᎾᏍᎩ (ᏗᎵᏍᎪᎸᏙᏗ,) ᎦᎸᎳᏗᏍᎩᏂ ᏤᎯ ᎨᏒ ᎾᏲᎪ ᎤᏟ ᎢᏗᎦᎸᏉᏗ ᏗᎵᏍᎪᎸᏔᏅᎯ ᏗᎦᏅᎦᎸᏙᏗ. ᎤᎶᏒᏍᏔᏅᎯᏃ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ, ᎯᎠ ᏂᏓᎾᏓᏪᏎᎮᎢ, ᎦᎪᎨ ᏰᎵ ᎦᏰᏥᏍᏕᎸᏗ? ᎨᏍᏗ ᎤᎵᎮᎵᏍᏗ ᏯᎩᏰᎸᎰ ᏄᏍᏛ ᎠᏆᎵᏍᏓᏴᏗ, ᎠᏎᏃ ᏍᎩ ᏄᏍᏗ ᎥᏉᏒᏅ. ᎦᎸᎳᏗᏍᎩᏂ ᏫᏥᏟᏏᏍᎨᏍᏗ ᏧᎬᏩᎶᏗ, ᎾᎿᏂ ᏥᏍᎪᏴ ᎠᏯᏍᏜᏗᏍᎩᏃ ᎤᏂᏲᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎠᎴ ᎤᏂᏃᏍᎩᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᏔᎳᏚ ᏧᏕᏘᏴᏛ ᎬᏩᏓᎴᏅᏛ ᎩᎬ ᎤᏪᏅᎡᎮᎢ, ᏞᏍᏗ ᎤᏁᎳᎩ ᏤᎵᏒᎩ ᎡᏣᏁᎸᎯ ᎾᏍᎩ ᏥᏣᎭ, ᎾᏍᎩ ᎡᏣᏁᎸᎯ ᏥᎩ ᎠᏅᏗᏍᎬ ᎤᎾᏙᎴᎰᏒ ᎠᎴ ᏕᎨᏣᏏᏔᏛ ᏗᎨᎦᏁᎶᏗ. ᏰᎵᏉ ᎠᎩᏂᏴᎲ ᏥᏅᏙᎬ, ᎠᏉᎯᏳᏅ ᏐᏉ ᎢᎧᏁᏨ ᎾᎩᏪᏎᎸ, ᏫᏓᎦᎩᎸᏂ ᏫᏥ ᏫᏓᏥᎶᏏ, ᎤᏅᏌ ᎠᏂᏩᏛᎲ ᏭᏂᎶᎯᏍᏗ ᎤᏂᏅᎪᎢᏍᏗ ᏚᏅᏓᏒ, ᏃᎴ ᎭᎾᏎᎵᏙᎲ ᏓᎾᏟᏃᎮᏔᏅ ᏧᏂᏂᏴᏓ. ᏚᏲᎵᎸᏉᏍᎩᏂ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏎ ᎠᎩᏍᏆᏂᎪᏙᏗ ᏥᎷᏏᎵᎻ ᎯᎠ ᏗᎵᏍᏓᏴᏗᏱ ᏨᏛᏍᏆᎸᎯ. ᎠᏎᏃ ᏔᎵᏁ ᏛᏨᏩᏛᎯᎵ, ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎤᏏᏳ ᏳᏰᎸᏅ. ᎡᏈᏌᏃ ᏥᏳᎯ ᏭᏣᏅᎩ. ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ ᎠᏗᎭ ᎤᏁᎳᏅᎯ, ᎾᎦᎥ ᎤᏇᏓᎵ ᎨᏒ ᎠᏆᏓᏅᏙ ᏓᏥᏯᏐᏅᏰᎵ, ᏗᏤᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᏗᏤᏥ ᎠᏂᎨᏴ ᎠᎾᏙᎴᎰᏍᎨᏍᏗ, ᎠᏂᏫᏅᏃ ᏗᏣᏤᎵ ᎤᎾᏁᎳᏫᏎᎮᏍᏗ, ᏧᎾᏛᏐᏅᎯᏃ ᏗᏣᏤᎵ ᎠᎾᏍᎩᏓᏒᎥᏍᎨᏍᏗ; Cass ᏓᎩᎧᏅ, ᏙᏰ ᏓᏆᎭᏄᏮ, ᎠᏆᎧᏛ ᏃᎴ ᏥᏴᏥᏂ ᏃᎴ ᏗᏉᏰᏂ ᎦᏚᎢᏣᏂ - ᏕᎫᎪᏗᏍᎨᎢ ᎠᏴᏫᏯ ᎩᎦ ᎠᎩᏁᎲᎢ. ᎠᏆᎦᏔᎲᏒᎩᏃ ᏥᎪᏩᏛᏗᏱ ᎠᎩᏰᎸᏅᎩ ᎤᏪᎷᎩ, ᎾᏍᎩ ᎠᏆᎵᏃᎮᏗᏍᎩ. ᎠᏆᎦᏔᎲᏒᏃ ᏓᎩᎪᎲᎩ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ; ᏑᎾᎴᎢ ᎠᏂᎶᏍᎨ ᏴᏫ ᏫᎵᎻ ᎠᏯᎥ. ᏚᎾᏓᏅᏛᏍᎩᏂ ᏧᏍᎦᏃᎵᏳ ᎨᏎᎢ; ᎪᎯᏰᏃ ᎢᏯᏍᏗ ᏅᏩᏍᏗᏉ ᎾᏍᎩ Ꮎ ᎠᎵᎬᏚᎶ ᎠᎲᏛ ᏂᎨᏒᎾ ᎢᏳᏃ ᏓᏂᎪᎵᏯ ᎤᏪᏘ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎪᏪᎸᎢ; ᎦᎶᏁᏛᏰᏃ ᏂᎬᏂᏏᏍᎪ ᎠᎲᏛ ᏂᎨᏐᎢ. ᎠᏍᏕᏴᏙ ᎠᎧᏁᎲ ᏭᏩᏁ ᎡᎳᏆᏗ ᏃᎴ ᏭᏓᎾᏫᏛᎮᎢ. ᎠᏴ ᎠᎢᏛᏐᏅᎯ ᏫᏥᏲᎵᎦ ᎠᏥᎨᏳᎢ ᎦᏯ, ᎾᏍᎩ ᎠᏴ ᏥᎨᏳᎢ. ”ᎠᏓᏅᏖᏗ, ᎧᎪ ᏳᏚᎵ ᎤᏪᏘ ᎤᎪᏏᏓ ᎤᏪᏥ!” ᎤᏛᏁ. ᎾᏍᎩ Ꮎ ᏄᎨᏳᏅᎾ ᏥᎨᏎ ᎤᏩᏒ ᎤᏪᏥ, ᏥᏚᏲᏎᏉᏍᎩᏂ ᎠᏴ ᏂᏗᎥ ᎢᎩᏍᏕᎵᏍᎬᎢ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏕᎩᏲᎯᏎᎲ ᎠᏎᏉ ᏗᎨᎩᏲᎯᏎᏗ ᏂᎨᏒᎾ ᏱᏂᎦᎵᏍᏓ ᏂᎦᏗᏳ ᎪᎱᏍᏗ? ”ᎨᏍᏗᏗ ᎭᎾᏉ ᏣᏴᏍᏗ ᏱᎩ, ᎦᏓᎭ ᎤᏍᏗ ᎦᏓᎭ ᎤᏍᏗ ᎦᏓᎭ ᎤᏍᏗ ᎠᏦᏴ, ᎤᏛᏁ ᏌᏌ, ᎦᏣᏄᎳ ᎦᏬᏂᏍᎩ. ᎠᎴ ᏞᏍᏗ ᏱᏗᏣᎵᎪᏁᎮᏍᏗ ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎤᎵᏏᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᏕᏥᎬᏍᎪᎸᎥᏍᎨᏍᏗᏉᏍᎩᏂ. ᎾᎥᏃ ᎠᏂᏙᎾᎢ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᎦᎯᏐᏢᏗᎭ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ? ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏓᏁᏟᏴᏒᎢ, ᏴᏫ ᎤᏪᏥ ᎦᏅᎭ ᎦᎸᏉᏗᏳ ᎤᏪᏍᎩᎸᎢ, ᏂᎯ ᏍᎩᏍᏓᏩᏛᏛ ᎾᏍᏉ ᎢᏥᏁᏍᏗ ᏔᎳᏚ ᏕᎦᏍᎩᎸᎢ, ᏕᏧᎪᏓᏁᎮᏍᏗ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ. “ᎤᏙᎯᏳ ᎤᏒᎯ!” ᎥᏝᏰᏃ ᎾᏂᎥ, ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎬᏉᏎᎯ, ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏭᏂᎾᏄᎪᎢᏍᏗ ᏱᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎠᏓᏅᏖᏍᎬ ᏧᏂᎸᏫᏍᏓᏁᎯ. ᏂᏓᏠᏯᏍᏛᎾ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᏂᏚᎩᏨᏂᏒ ᏣᎩᎷᏤᎭ, ᎾᏍᎩ Ꮎ ᏗᏆᎦᏌᏯᏍᏙᏗᏱ ᏂᎦᏛ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ. “Ꮒ!” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏫᎵᎻ ᏍᏉ ᏚᎧᏙᏍᏕᎢ ᏴᏫ ᏃᎴ ᎣᏍᏓ ᏗᎧᏃᏗ ᎠᏁᎸᏗᏍᎨᎢ. ᎾᏍᏉᏰᏃ ᏴᏫ ᎤᏪᏥ ᎥᏝ ᏳᎷᏨ ᎪᎱᏍᏗ ᎠᎦᏛᏁᏗᏱ, ᎪᎱᏍᏗᏍᎩᏂ ᎤᏓᏛᏁᏗᏱ, ᎠᎴ ᎬᏅ ᏧᏲᎯᏍᏗᏱ ᏧᏓᏴᏙᏗᏱ ᎤᏂᏣᏘ. ᎢᎦᏛᏃ ᏅᏲᎯ ᎨᏒ Ꭴ ᎳᎨᏯᏛᏤᎢ, ᎦᏲᎵ ᎦᏓ ᎦᎳᎨᏴᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᎵᏰᏁᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏌᎨᎢᏳᎨᏒ ᎦᏓ. ᎬᏩᏍᏓᏩᏗᏙᎯᏰᏃ ᏗᎦᏚᎲ ᏩᏁᏙᎲᎩ ᎠᎵᏍᏓᏴᏗ ᎤᏂᏩᏒᏒᎩ. ᎠᏐᏴᎩᏃ ᎡᏆ ᎢᏅ ᎢᎦᏘ, ᎦᎶᎯᏍᏗᏱᏃ ᏔᎳᏚ ᏕᎪᏢᏒᎩ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᏔᎳᏚ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᎩᎯ [ᏓᏂᏙᎬᎩ,] ᏚᎾᏙᎥᏃ ᏕᎪᏪᎸᎩ ᎦᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏙᎥᎢ. ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎩᎶ ᎪᎱᏍᏗ ᏥᎯᏃᏁᎵ; ᎮᎾᏉᏍᎩᏂ, ᎬᏂᎨᏒ ᏫᏂᏯᏛᏂᏏ ᎠᏥᎸᎨᎶᎯ, ᎠᎴ ᏩᎵᏍᎪᎸᏓ ᏣᏓᏅᎦᎸᎲ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏱᏏ ᎤᏁᏨ ᎠᎵᏍᎪᎸᏙᏗᏱ, ᎾᏍᎩ ᎤᎾᏙᎯᏳᎾᏁᏗᏱ. ᎨᏍᏗ ᏱᏥᎦᏔ ᎨᎩᏍᏕᎸᏗ ᏱᎩ. “ᎯᏢᎾ. ᎠᎴ ᎠᎴᏂᏍᎨᏍᏗ ᏙᎦᎸᏂᎮᏍᏗ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎨᏍᏗ ᎠᎴ ᏓᎾᏗᏔᏍᎨᏍᏗ ᏧᏂᏴᏍᏕᏍᎩ, ᏧᎪᏅ ᏧᎪᎳ ᏃᎴ ᏧᏍᎧ ᏓᏑᏴ ᎤᏁᎦ ᎪᏍᏚ ᎤᏃᏔᏅ. ᎾᏍᎩᏃ ᎠᏁᏙᎮ ᎩᎶ ᎬᏩᏃᏁᎸᎯ ᎬᏩᏁᎢᏍᏓᏁᎸᎯ ᎨᎵᎵ ᎠᏁᎯ, ᎾᏍᎩ ᎤᏂᎩᎬ ᏇᎴᏗ ᏚᏑᏰᏓᏁᎸ ᎠᏥᎸ-ᎠᏁᎶᎲᎢ. ᎠᏎᏃ ᎦᏳᎳ ᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ ᎨᏎᎢ ᎧᏅᏂᏍᎩ. “ᎢᎨᏅᏍᏗᏉᏗ ᎦᏆᏛ ᎠᏗᏆᎸᏕᏲ ᎠᏆᎩᎸᏗ ᎠᏆᏚᎵ.” ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᏱᏏ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏳᏃ ᎠᏍᎦᏯ ᎠᏲᎱᏍᎨᏍᏗ ᏧᏪᏥ ᎾᏁᎲᎾ ᎨᏎᏍᏗ, ᏗᎾᏓᏅᏟ ᎠᏓᏰᎨᏍᏗ ᎤᏓᏴᏛ, ᎾᏍᎩᏃ ᏓᏛᎯᏍᏓᏁᎮᏍᏗ ᏗᏂᏲᎵ ᏗᎾᏓᏅᏟ. ... ᏓᎶᏂᎨᏃ ᏒᎦᏔ ᎤᎾᏓᏛᏁᎢ. ᎬᏂᏳᏉ ᎠᏤᏍᏙᎩᎯ ᏮᏓᏥᏯᏓᎡᏏ, ᎠᎴ ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ ᎤᏣᏘ ᏓᎦᏥᏯᏕᏯᏙᏔᏂ ᎢᏳᏃ ᎤᏲ ᏄᏂᏁᏟᏴᏛ ᎢᎨᏎᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ. ᏚᏒᏅᏃ ᎦᎵᏉᎩ ᎢᏳᎾᏓᎴᎩ ᏴᏫ ᎨᎾᏂ ᎠᏁᎯ, ᎾᏍᎩ ᎤᎾᏤᎵ ᎦᏙᎯ ᏚᏯᏙᎮᎴ ᏓᎾᏎᏍᎬᎢ. ᏂᎯ ᎤᎶᏒᏍᏗ ᎯᏒᎩ.” ᎾᏂᎥᏰᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎨᏒ ᏴᏫ ᎠᏁᎲ ᎨᎪᏣᎴᏛ, ᏴᏫ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏥᏁᏤᎰᎢ, ᎾᏍᎩ [ᏧᏂᎸᏫᏍᏓᏁᏗᏱ] ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏗᎬᏩᎾᎵᏍᎪᎸᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏓᏁᏗ ᎨᏒ ᎠᎴ ᎠᏥᎸᎨᎳᏍᏙᏗ ᎾᏍᎩ ᎠᏍᎦᏂ ᎤᎬᏩᎵ; ᎤᏂᎩᏍᏔᏁ ᏓᏆᎴᎳ ᎤᏅᏫᏍᏗᏍᎩ ᎡᎶᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎾᏍᎩ ᎤᏣᏘ ᏥᏣᏚᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎨᏒᎢ, ᎢᏥᏲᎮᏍᏗ ᏗᏣᏓᏓᎵᏁᎯᏕᏗᏱ ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ. ᎩᎳᏈᏴ ᏭᎷᏤ ᎧᏁᏌᎢ ᏗᏥᏴ, ᏗᏯᏖᏃ ᎠᏰᎵ ᏭᏗᏍᎦᏝᏁ, ᎧᏁᏍᎦ ᎬᏗ ᎤᏚᏒᏁᎢ, ᎩᎶ ᎫᏩᎪᏩᏛᏗ ᏱᎨᏒᎾ. ᎪᎳ ᎾᎥᏂ ᏃᏉ, ᎠᎦᏕᏍᏗ ᎤᏂᏂᎬᎨᏍᏗ ᎤᎾᏗᏍᎦᎶᏗ. ᎾᏍᎩ ᎠᏴ, ᎢᎩᏯᏅᏛ ᏥᎩ, ᎥᏝ ᎠᏂᏧᏏᏉ ᎤᏅᏒ ᎠᏁᎲᎢ, ᎾᏍᏉᏍᎩᏂ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ; ᎯᏲᏎᎸ ᏣᏚᏥ ᎰᎻ, ᏑᏓᎵ ᎠᏕᎸ ᏱᏕᎯᎬᏩᎶᏓ, ᎦᏙᏃ ᏛᏛᏂ.” ᎡᎳᏗ ᎤᎨᏓᎵᏴ ᎤᎾᏟᎴ, ᎨᏴ ᎢᏳᏓᏅᎯᏓ, ᎤᏓᏦᏍᏗ ᎢᏴ ᎠᎼ. ᎤᏪᏗᏱᏍᎩᏂ ᎠᏉᎸ ᏥᎦᏘᏏ ᎢᏗᏢ, ᎠᎴ ᏥᎦᏍᎦᏂ ᎢᏗᏢ, ᎥᏝ ᎠᏴ ᎠᏆᏓᏁᏗ ᏱᎩ; ᎤᏅᏒᏍᎩᏂ ᎾᏍᎩ ᎨᎦᏛᏅᎢᏍᏓᏁᎸᎯ ᏥᎩ ᏈᏓᏃ ᎤᎦᏔᎲᏒ ᎤᎪᎲᎩ ᎠᏓᏍᏓᏩᏗᏒᎩ ᏥᏌ ᎤᎨᏳᎯ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᎤᏍᏛᎦᎸᏅᎯ ᏥᏌ ᎦᏁᏥᏱ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᎯᎠ ᎢᏳᏪᏛ ᏥᎩ; ᏣᎬᏫᏳᎯ, ᎦᎪ ᎾᏍᎩ ᏣᏡᏗᏍᎩ. ᎠᏎᏃ ᎣᎩᎲᎩ ᏦᎩᏲᎱᎯᏍᏗᏱ ᏚᏚᎪᏔᏅᎢ, ᎾᏍᎩ ᏱᎬᏮᏉ ᎣᎦᏓᎵᏍᎦᏍᏙᏗᏱ ᏂᎨᏒᎾ, ᎤᎾᎳᏅᎯᏍᎩᏂ ᎣᏣᎵᏍᎦᏍᏙᏗᏱ, ᎾᏍᎩ Ꮎ ᏓᏂᏲᎱᏒᎯ ᏗᎷᎯᏐᏗᏍᎩ; ᎾᏍᎩᏂ ᎾᎦᏔᎲᎾ ᎨᏒ ᎠᎴ ᏰᎵᏉ ᎦᏰᏥᎵᎥᏂᏍᏗ ᎢᏳᏛᏁᎸᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᏲᎵᏉ ᎢᏯᎬᏂᏍᏗ ᎨᏎᏍᏗ. ᏱᎶᏃ ᎤᏣᏘ ᎠᏥᏁᎸᎯ, ᎤᏣᏘ ᎠᏥᏔᏲᏎᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎩᎶ ᎤᏣᏘ ᏗᎬᏩᏲᎯᏎᎸᎯ ᏴᏫ, ᎾᏍᎩ ᎤᏟ ᎢᎦᎢ ᎬᏩᏔᏲᏎᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎤᏂᏍᎦᏅᏨ ᎠᎴ ᎤᏲ ᏄᎾᏛᏁᎵᏙᎸ ᎥᏝ ᎿᏉ ᎠᏆᏅᏓᏗᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᏓᏅᏙᏃ ᎯᎠ ᏄᏪᏎᎴ ᏈᎵᎩ; ᎾᎥ ᏫᎷᎩ ᏫᏯᎵᎪᎲᏏ ᎾᏍᎩ Ꮎ ᏓᏆᎴᎷ. ᎤᏣᏔᏅᎯᏃ ᎠᎾᎵᎮᎵᎨ ᎾᎿ ᎦᏚᎲᎢ. ”Ꮀ--Ꮋ!” ᎤᏪᎷᏁ. ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᏓᎦᎷᏥ ᎢᏳᏉ ᎢᎦ ᎾᏓᎦᏖᏃᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎢᏳᏉ ᎠᎵᏰᎵᏒ ᏁᎵᏍᎬᎾ ᎨᏒᎢ, ᎠᎴ ᏙᏓᏳᎦᎵᏏ, ᎠᎴ ᏮᏓᏳᏎᎮᎵ ᏄᏃᎯᏳᏒᎾ ᏗᏁᎲᎢ. ᏫᎵᎻ ᏗᏯᎥ ᏗᏣ ᏭᏤᏪ ᎠᎹ, ᎠᏎᏃ ᎤᏅᏕ. ᎤᏙᎯᏳᎯᏯ ᎬᏂᎨᏒ ᏂᏨᏁᎭ ᎾᏍᎩ ᎣᏏᏳ ᎢᏥᏰᎸᏒ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸ ᏗᏥᎦᏴᎵᎨᎢ; Ꮎ-ᏍᎩᏰᏃ ᎤᏙᎯᏳᎯ ᏚᏂᎸᎩ, ᏂᎯᏃ ᏕᏦᏢᎯᏏᎭ ᏕᎨᏥᏂᏎᎲᎢ. ᎠᎴ ᏭᎷᏤ ᎠᎴ ᏚᎸᎡᎴ ᏓᏥᏐᏅᏅᎢ, ᎠᎴ ᎪᎢ ᎩᎦᎨᏃ-ᎠᏗᏔᏍᏗ ᏓᏍᏚᏞᎮᎢ, ᎠᎴ ᎤᏩᏒ ᎤᎩᎸᏙᏗ ᎤᎩᎸᎳᏁᎢ, ᏧᏂᏒᏍᏗᏱᏃ ᎠᏓᏁᎸ ᎤᏘᏃᎴᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏔᏁᎢ. ᎩᎳᏈᏴ ᏚᎴᏁ ᏫᎵᎻ. ᏔᎵᏁᏃ, ᎡᏥᎸᏉᏓ ᏱᎰᏩ, ᏂᎦᏗᏳ ᏗᏣᏓᎴᏅᏛ ᏴᏫ; ᎠᎴ ᎡᏥᎸᏉᏓ, ᏂᏥᎥᏉ ᏴᏫ. ᎣᎩᎾᎵᎢᏰᏃ ᎠᎢᏒ ᎠᎩᎷᏥ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏯᎩᎭ ᏥᏰᎳᏍᏙᏗ; ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏥᏌ ᏫᎤᎷᏨ, ᎾᏍᎩ ᏴᏫ ᏕᎬᏩᏓᏂᎸᏤᎢ; ᏂᎦᏛᏰᏃ ᎬᏩᏕᏘᏰᎢ. ”ᏙᎢᏳᏍᏗ ᎠᏴᏓᏆᎶᏍᎩ?” ᎤᏛᏁ. ᎠᎳᏏᏗᏍᎨ ᏃᎴ ᎠᏍᎦᎢᎮ, ᎠᎾᎵᎪᎲᏍᎩ ᎠᏤ ᎤᏩᏛᎲ ᎤᎾᎵ. ᎤᏛᎦᏁ ᎤᏥ ᎦᏬᏂᏍᎬ, ᎤᏍᏗ ᎠᏣᏗ, ᎤᏍᏗ ᎠᏣᏗ ᎣᏏᏉᏧ? ᎨᏍᏗ ᏫᎬᎩᎶᎯᏍᏗ ᏱᎩ ᏫᎬᎾᎩᏍᏗ, ᎠᏎᏃ ᏣᏟᏂᎩᏓ ᎤᏍᏗ ᎠᏣᏗ, ᏃᎴ ᏰᎵᏉ ᏘᏩᏛ ᏨᏌ ᏣᏁᎳᏗᏍᏗ ᎯᎸᎢᏴ. ᏧᎾᏛᎾ ᏃᎴ ᏗᏂᏲᏟ ᏚᎾᏓᏂᏴᎮ ᏧᏃᏰᏂ ᏃᎴ ᎠᏂᏙᎾᎡᎢ ᎠᏂᎪᎵᏰᏍᎨ ᎠᏤᎯ ᏗᎦᏃᏣᏟ. ᏰᎵ ᎠᏍᏆᏂᎪᏍᎨ ᏚᎷᏫᏍᏔᏁᎲ ᏌᎳᏓ; ᎤᏩᏌ ᎠᏓᏟᏃᎮᏗᏍᎨ, ᎦᏰᎵᏍᏗ ᎤᎵᎮᎵᏍᏗ ᎠᏓᏁᎮᎢ. ᎾᏍᎩ Ꮎ ᎤᏢᏉᏗ, ᎪᎱᏍᏗ ᎾᎦᏔᎲᎾ, ᎤᎵᏰᏔᏁᎯ ᎦᏬᏂᎯᏍᏗ ᎨᏒ, ᎠᎴ ᏧᏘᏲᏌᏘ ᎠᎵᏃᎮᏍᎬᎢ, ᎾᎿ ᏨᏗᏓᎴᎲᏍᎦ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏗᏓᏕᎵᏎᏗ ᎨᏒᎢ, ᏗᏰᎦᏟ ᏗᏆᏙᏃ ᏓᏂᏃᎯᎲ ᎤᏢᎩ ᏗᎦᏅᎬ ᏒᏃᏱᏃ ᏱᏄᎵᏍᏔᎾ ᎤᎿᏊ ᎠᏂᏟᏅᎬ ᎢᎦᏓ ᎦᏙᎯᏊ ᏓᏂᏰᏍᏛᎥᏍᎬ. ᎾᏍᎩ ᎤᏚᎢᏍᏔᏅᎯ ᏥᏂᎨᏎ ᎠᎾᏙᎴᎰᏍᎩ ᏕᎬᏗᏍᎬ ᎾᎿ ᎦᎸᏉᏗᏳ ᎪᏪᎵᎯ, ᏅᏩᏙᎯᏯᏛ ᎢᏨᎢᏯᏏ; ᏅᏩᏙᎯᏯᏛ ᎠᏆᏤᎵᎦ ᎢᏨᎥᏏ. ᎥᏝ ᎡᎶᎯ ᏣᏓᏁᎰ ᎾᏍᎩ ᎢᏳᏍᏗ ᏱᏨᎥᏏ; ᏞᏍᏗ ᎢᏣᏓᏅᏙ ᏳᏕᏯᏔᏁᎮᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏯᏍᎦᎢᎮᏍᏗ. ᎾᏍᎩ ᏥᏓᏂᏒᏁᎰ ᏧᏃᏑᎶᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎤᎾᏠᎾᏍᏛ ᎪᎯᏗᏳ ᏣᎾᏓᏙᎵᏍᏗᏍᎪᎢ; ᎾᏍᎩ ᎤᏟᎯᏳ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ. “ᏑᎾᎴ ᎠᎴ ᏔᎵ ᎢᏳᏒᎯ ᎠᎩᎵᏬᏨ ᎨᏎᏍᏗ. ᎬᏅ ᎢᎪᎯᏛ ᎢᏯᏆᏦᎥᏁᏘ ᏃᎴ ᎠᏆᏓᏏᎳᏙᏘ, ᎤᏛᏅ . ᎾᏍᎩᏰᏃ Ꮎ ᎤᏙᎯᏳᎯ ᏞᎦ ᎨᎩᎩᎵᏲᎢᏍᏗᏍᎬᎩ ᎤᏅᏒ ᎠᎾᏓᏅᏖᏍᎬ ᎾᎾᏛᏁᎲᎩ; [ᎤᏁᎳᏅᎯᏍᎩᏂ] ᎣᏍᏛ ᎢᎦᎵᏍᏓᏁᏗ ᎤᎬᏩᎸ, ᎾᏍᎩ ᎢᏣᏠᏯᏍᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏩᏒ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎠᏓ ᎬᏗ ᏭᏂᏴᎮ ᎢᎾᏓ ᎠᏍᎪᎵ, Ꮓ ᏅᏲᎯ ᎦᏙ ᏫᏄᏩᏁᎴ. ᎭᏫᏂᏗᏢᏃ ᎣᎩᏅᏍᏔᏅ ᎪᎱᏍᏗ ᎤᏍᏗ ᎠᎹᏰᎵ ᎤᏪᎧᎲ, ᏠᏗ ᏧᏙᎢᏛ, ᎤᏎᎦᏨᎯᏉ ᏗᎦᏲᎩᏂᏴᏗ ᏄᎵᏍᏔᏅᎩ ᎤᏍᏗ ᏥᏳ. ᎤᎾᏝᎢᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᏁᎫᏥᏛ ᎠᎴ ᏣᏓᏄᎸᏗ ᎡᏣᏅᏏᏓᏍᏗ! ᎯᎦᏔᎲᎩ ᏥᏍᎫᏕᏍᎬ ᎾᎿ ᎾᎩᏫᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎫᏖᏍᎬ ᎾᎿ ᎾᎩᎴᎳᏛᏅᎾ ᎨᏒᎢ! ”ᎩᎳᏰᏃ ᎦᎴᏂ ᎦᏓᏅᏖᏍᎦ, ᎠᏎᏃ ᏥᏰᎵ ᎦᏓᏅᏖᏍᎬ. ᎦᎶᏁᏛᏰᏃ ᎾᏍᏉ ᎥᏝ ᎤᏩᏒᏉ ᎣᏍᏳ ᎤᏰᎸᏗ ᏱᎾᏛᏁᎮᎢ; ᎯᎠᏍᎩᏂ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᎾᏍᎩᏯ [ᏄᎵᏍᏓᏁᎴᎢ,] ᎦᎬᏩᎾᏓᏐᏢᏛ ᎾᏍᎩ Ꮎ ᎦᎨᏣᏐᏢᏔᏅᎢ ᎠᏴ ᎠᎩᎷᏤᎸᎩ. ᎠᏴ ᎠᏋᏒ ᎦᏓᏃᎮᏍᎩ, ᎠᎦᏴᎵᎨᏃ ᏅᏛᎩᏅᏏᏛ ᎾᏍᏉ ᎠᏴ ᎠᎩᏃᎮᎭ. ᏚᎧᎿᏅᏃ, ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᎦᏥᎪᏩᏘᎭ ᎠᏁᎩᎭ ᏕᏡᎬ ᎾᏍᎩᏯᎢ. ᏍᏈᏯ ᏣᎵᏍᏔᏴᏅ ᏃᎴ ᏣᏯᎶᏘᏓ, ᎨᏍᏗ ᏱᎦᏔ ᎢᏳᏍᏗ ᏂᏪᏍᎬᎢ. ᏙᏉ ᎦᎵᏍᏓ ᏐᎢ ᎤᏪᏥ? ᎦᏙᏃ ᏳᏣᎩᏒᎾ?” ᏥᏍᏚᏛ ᏙᏳ ᎤᏩᎾᏖ Ꮩ ᎤᏍᏗ ᎨᏒ. ”ᎤᏙᎯᏳ ᎤᏍᏆᏂᎩᏗ ᏏᏆ,” ᎤᏛᏁ ᏣᏄᏏ. ᎾᏍᎩ ᎤᏩᏒᎯ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᎯ, ᎢᎦᎦᏛ ᎡᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎢᎦᎦᏛ ᎾᎿ ᎩᎶ ᎬᏩᎷᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎩᎶ ᎤᎪᎲᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎬᏩᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᎴ ᎤᎵᏂᎩᏗ ᎨᏒ ᏫᎾᏍᏛᎾ ᎨᏎᏍᏗ. ᎡᎺᏅ. ᎠᎴ ᏝᏍᎪ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎤᏕᏅᏉ ᏄᏍᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᏆᏂᎪᏗᏍᎩ ᏱᏙᎨᏧᎪᏓᏏ ᏂᎯ, ᎪᏪᎵ ᎠᎴ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᏗᎬᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎯᏲᏍᏗᏍᎩ? ᏍᏈᏍᏓ ᏂᎦᎵᏍᏗᏍᎨ ᏍᎩᏴ ᎢᎦ --- ᎠᎬᏱ ᎢᎦ ᎤᏣᏓ ᎣᏍᏓ ᎨᏒ. “ᏃᏉ ᏂᎦᏓ, ᎯᏥᏧᏣ!” ᎤᏛᏁ ᎰᎻ. [ᎾᏍᎩ ᏄᎵᏍᏔᏅᎩ] ᎤᏙᎯᏳᏗᏱ ᏥᏌ ᎤᏁᏨᎢ, ᎦᏛᎬ ᎢᏳᎵᏍᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ. ᎤᎪᎲᏃ ᎠᏏᏴᏫ ᎦᏰᏥᏐᏢᏛᎢ, ᎤᏍᏕᎸᎮᎢ, ᎠᎴ ᎤᏞᏤᎴ ᎤᏲ ᎢᏯᎬᏁᎸᎯ, ᎠᎴ ᎤᎴ ᎢᏥᏈᏱ ᎡᎯ. ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎩᎶ ᎧᏁᎬ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎹ ᎤᏣᏘ ᏥᏚᏍᏆᏃᏴᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎾᏍᎩᏯ ᎠᏴᏓᏆᎶᏍᎩ ᎤᏣᏘ ᏧᏍᏆᏃᏴᎪᎢ; ᎠᎴ ᏗᏂᏃᎩᏍᎩ ᏗᎧᏃᎩᏍᏙᏗ ᏗᏂᏃᎩᏍᏗᏍᎬ ᎤᏃᏴᎬ ᎠᏆᏛᎦᏅᎩ. ”ᎨᏍᏗ ᏱᏗᎧᏔᎭ ᎢᏳᏍᏗ ᏄᏰᎵᏛᎢ, ᎠᏆᏓᏅᏖᏗ ᎨᏎᏍᏗ, ᏕᎪᏏᏌᏅ ᏔᎵᏁ ᎤᎾᏙᏓᏆᏍᎬ ᎦᎵᏥᏙᏅ. “ᎠᏋᏌᎩ? ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎤᏙᎯᏳ ᏲᏎ ᏲᎾ ᎤᏤᏍᏙ ᏰᏙᎮ, ᏳᏄᏝᎴ ᏃᎴ ᎤᏦᎠᏎᏗ ᏂᎨᏒᎾ ᏱᏄᏩᏁᎴ. ᎾᏍᎩ ᏗᏂᎰᎵ ᏗᎧᎵᏬᎯ ᎠᏓᏍᎩᏅᏗᏍᏗ ᎨᏒ ᎠᎴ ᎤᏴᏍᏗ ᎨᏒᎢ. ᎢᏳ ᎠᎴ ᎤᏪᏥ ᏳᏔᏲᏎᎸ, ᏥᎪ ᎦᏙᎬ-ᎠᏓᏨᏯᏍᏗᏍᎩ ᏱᎦᏅᎥᏏ. ᏭᏓᏅᏖᎴ ᎤᏍᏗ ᎨᏴ ᏭᏘᏃᎸ ᎤᏔᏂᏗᎨ ᎨᏴᎢ. ᎢᏨᏲᏎᎭ, ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏚᏓᎴᏛ ᏧᏪᏅᏒ ᏭᎶᏎᎢ, ᏐᎢᏃ ᎥᏝ. ᎩᎶᏰᏃ ᎤᏩᏒ ᎢᎠᏓᏌᎳᏗᏍᎨᏍᏗ ᎡᎳᏗ ᎢᏯᎬᏁᏗ ᎨᏎᏍᏗ, ᎩᎶᏃ ᎤᏩ-Ꮢ ᎡᎳᏗ ᏂᎠᏓᏛᏁᎮᏍᏗ ᎠᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ. ᏰᎵ ᎣᏍᏓ, Wilmington ᎠᎩᏩᏛᎲ ᎠᎹᏳᎸᏗ ᎤᎾᏨᏉᏛ ᎬᏂᎨ ᎤᏂᏍᎪᎸ ᏓᎬᎾ, ᎩᎳ ᏧᏂᏂᏴᏓ ᎠᎼ ᎡᏉ, ᎠᎾᏖᎸᎮᏍᎬ ᏧᏂᏍᏚᎩᏛ ᏧᏯᏍᎦ, France ᏓᏳᎶᏒ ᏓᎶᏂᎨ ᎠᏗᏔᏍᏗ ᎤᎵᏗᏨ ᏓᏂᏯᎩᏍᎬ ᏓᎬᎾ. ᏗᏥᎦᏍᎩᏂ ᎡᏈᏌ ᏥᏅᏒ ᏕᏥᏲᎵᎭ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎦᎶᏁᏛ ᏥᏌ ᎠᏃᎯᏳᎲᏍᎩ. ᎣᏣᎵᏅᏟ ᎠᏂ ᏦᏤᏙᎭ ᏫᎨᏥᏲᎵᎭ. “ᏓᎴᎲᎦᏛ ᎤᏛᏁ ᎡᎶᏗ. ᎠᏯᏦ? “ᎯᏢᎾ, ᎯᏢᎾ, ᎬᎨᏳᎯ, ᎠᏯ ᎠᏆᏤᎵ, ᎭᏫᏂ, ᎭᏫᏂ, ᏗᎩᏏ ᏃᎴ ᎤᎵᏏᎬᎢ; ᏤᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ ᎠᎴ ᏤᏍᏗ ᎤᎯᏐᏗ ᏱᎨᏎᏍᏗ! ᏣᏂ ᏧᏓᏬᏍᏗ ᎨᏒᎢ, ᎦᎸᎳᏗᏍᎪ ᏧᏓᎴᏁᎢ, ᏴᏫᏉᎨ ᎠᏁᎲᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎭᏓᏁᎮᏍᏗ ᏞᏍᏗ ᎠᏤᎷᎩ ᎢᎬᏱ ᏫᏱᏃᏴᎵᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᏥᎾᎾᏛᏁᎰ ᎤᎾᏠᎾᏍᏗ ᏧᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎡᎾᎢᏓᏍᏗᏱ ᏕᎦᎳᏅᏛᎢ, ᏴᏫᏉ ᎬᏩᏂᎸᏉᏙᏗᏱ ᏧᏂᏰᎸᏐᎢ; ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎨᎦᎫᏴᎡᎸ. ᎠᏯ ᎠᏆᏍᏗᎩ ᏱᎨᏎ ᏥᎦᏕᎥᏍᎬ ᏱᏍᎩᎴᎢᏍᎪ? ᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᎤᏓᎵᎢ ᎢᎦᎧᎲᏍᎨᏍᏗ, ᏧᏂᏏᏅᎯᏍᎩᏂᏃᏅ ᎢᎨᏎᏍᏗ, ᎤᏓᏲᏁᏗᏱᏉ ᏂᎬᏂᏌᏁᎮᏍᏗ; ᎩᎶᏃ ᎠᏥᎧᏅᎯ ᎠᏓᏰᎨᏍᏗ ᎠᏓᏲᏁᎮᏍᏗ. ᎠᎴ ᎬᏂᏳᏉ, ᎠᏓᏅᏙ ᎤᏂᏱᏍᎪᎢ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎨᎷᎲᏍᎪᎢ, ᎠᎴ ᎤᎸᏕᏍᏗᏍᎪᎢ ᎠᎴ ᏓᎭᏬᎢᎰᎢ, ᎤᏂᏆᎶᏛᏃ ᎦᏂᎳ ᎤᏓᏅᎡᎰᎢ. ᏃᏥ ᏕᏧᎬ ᎾᎥ ᏭᎷᏨ, ᏅᏯ ᏚᏍᏓᎦᎸ ᏗᎦᏅᎯᏓ ᏧᏁᏍᏓᎳ ᏕᎦᏙᎥ ᏃᎴ ᏓᎶᏂᎨ ᎤᏣᎳ ᏄᏍᏛ. ᎦᎳᎱᏂ ᎤᏬᏪᎳᏅ ᎪᏪᎵ ᎠᏆᏦᏩᎭᏂ, ᏩᎩᎷᏨ ᎤᏁᎦ ᎠᏓᏁᎸ, ᏩᎩᎶᏒ ᎠᏦᎭᏴ, ᏤᎩᏏᏂ ᎤᏤᎵ ᏐᏈᎵ ᎦᏙᎬ ᏕᎦᏫᏍᏛᏁᎲ ᏛᎦ ᏃᎴ ᎦᏟᎲ, ᎦᎶᎯᏍᏗ ᏩᎩᎶᏒ. ᎤᎵᏏᎬ ᎨᏍᏗ ᎣᏍᏓ ᏗᎪᏩᏛᏗ ᏱᎨᏎ ᏚᎾᎧᏛ, ᎦᏲᏟ ᏗᎪᏩᏛᏗ ᎨᏒ ᎠᎾᏎᎵᏙᎲ ᏧᏃᏰᏂ. ᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᏍᎩᏍᏓᏩᏗᏙᎯ ᎨᏒᎢ, ᎢᏳᏃ ᏗᏣᏓᎨᏳᎯᏳ ᏱᎩ. ᎤᏩᏙᎯᏴᏓ ᎨᏎ ᎠᏰᎸᎢ ᏃᎴ ᎧᏁᏉᎨ ᏂᎦᎨᏒ. ᎥᏝ ᎠᎴ ᎦᎸᎳᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎭᏫᏂᏳ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏅᏩᏓᎴ ᎠᏁᎳᏅᎯ ᎨᏒᎢ, ᏰᎵ ᎢᏴᏛ ᎢᎬᏩᏁᏗ ᏱᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎢᎩᎨᏳᏒᎢ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ. ᏕᏥᎸᏫᏍᏓᏁᎲ ᏞᏍᏗ ᎢᏣᏓᏄᎸᏗ ᏱᎨᏎᏍᏗ; ᎤᎵᏂᎩᏛ ᏕᏣᏓᏅᏖᏍᏗ; ᎪᎱᏍᏗ ᎡᏣᏛᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ. ᏱᏓᏂᎳᏫᎦ ᎦᎵ ᎨᏐ ᎤᎵᏏᏂᏕᏅ ᏑᎾᎴ ᎢᎪᎯᏛ. ᏂᎦᏓ ᎠᏰᎸ. ᎢᏳᏃ ᎾᏍᎩ ᏚᏂᏅᏨ ᎤᏁᏅᎢᏍᏗᏍᎩ ᏱᎩ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᎡᏍᎦ ᏄᎾᎵᏍᏓᏁᎲ ᎤᏁᏅᎢᏍᏗᏍᎩ ᏱᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᏂᎦᎥ ᎤᎶᏒᏍᏕᏍᏗ ᎠᏂᎧᎵᏨᎭ. ᎿᏉᏃ ᏚᏍᏆᏃᏴᏔᏂᎩ, ᎠᎴ ᏚᏴᏓᏉᎶᎥᎩ, ᎠᎴ ᏚᎾᎦᎸᎲᎩ, ᎾᏍᎩ ᎢᎦᎢ ᎥᏝ ᎢᎸᎯᏳ ᏱᎬᏩᎵᏖᎸᏃ ᏴᏫ ᎡᎶᎯ ᎤᎾᏕᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎾᏍᎩ ᎢᏳᎵᏂᎩᏛ ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᎦᏎᏗ. ᎠᎴ ᎾᏍᎩ Ꮎ ᏓᏥᏁᎵ ᏑᎾᎴ ᎡᎯᏃᏈᏏ. ᎬᏂᏳᏉᏃ ᎠᏏᏴᏫ ᎤᎷᏤᎸᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎰᏍᏛ ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᎤᏍᏗ ᎣᏍᏛ ᎠᎱᏍᏗ ᏓᎦᏛᏁᎵ ᎠᎩᏩᏛᏙᏗ ᏫᎾᏍᏛᎾ ᎬᏂᏛ? ᏥᎪ ᎾᏍᎩ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎠᏎᏉᏉ ᎢᏥᎩᎵᏲᏨ? ᎢᏳᏃ ᎰᏩ ᎠᏎᏉᏉ ᏱᎩ. ᏓᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᎢᏳᎢ ᏓᏲᎯᏎᎮ ᎠᏏᏴᏫ ᎠᏴᎩ, ᎾᏍᎩᏉ ᎠᏂᏔᏲᎭ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎾᎯᏳ ᎢᎦ ᎨᏒ ᎠᎴ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎤᎷᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ. ᏏᏆ ᎤᏩᏌ ᎤᏂᎪᎮ. ᏍᎩᏄᏍᏛ ᎣᏍᏓ ᎤᏂᏰᎸᎰ ᎠᏂᏣᎳᎩ. ᎦᎵᏦᏕᏃ ᎠᏂᏯᎥ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏔᎵᏁ ᎢᎬᏩᏛᏛᏁ ᎾᏍᎩ ᎤᎬᏩᎵ. “ᏙᎤᏍᏗ ᏗᎧᏃᏗ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ. “ᏃᎴ ᎯᏍᏔᏖᎸᏂᎸ, ᏍᏔᏯ ᏕᏍᏗᏂᏴᎮᏍᏗ,” ᎤᏛᏁ ᎪᏱᏁᎢ, ᏍᏔᏯ ᏕᏍᏗᏂᏴᎮᏍᏗ. “ᎤᎵᏍᏆᎸᏗ ᏓᎪᏪᎳᏂ.” ᎪᎯ ᎢᏯᏍᏗ ᎥᏝ ᎪᎱᏍᏗ ᏱᏥᎳᏲᏍᏔᏃ ᎠᏴ ᏓᏉᏙᎥᎢ. ᎢᏥᏔᏲᎭ ᏓᏰᏥᏁᎵᏃ, ᎢᏣᎵᎮᎵᎬ ᎤᎧᎵᎢᏍᏗᏱ. “ᎨᏍᏗ ᏱᏓᏓᎴᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, Ꮟ ᎩᎳᎯ ᎤᏂᏴᎮ ᎦᎷᏯᏍᏗ. ᎢᏳᏃ ᎠᏁᎲ ᏂᏓᎩᎸᏫᏍᏓᏁᎲᎾ ᏱᎨᏎᎢ ᎩᎶ ᏧᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎥᏝ ᎠᏍᎦᏂ ᏱᎬᏩᏁᎮᎢ; ᎠᏎᏃ ᎿᏉ ᎢᏧᎳ ᎪᎩᏂᎪᎲ ᎠᎴ ᎪᎩᏂᏍᎦᎩᏳ ᏄᎵᏍᏔᏅ ᎢᏧᎳ ᎠᏴ ᎡᏙᏓᏃ. ᎤᎧᏛ ᎤᏍᎪᎵᏰᎥ ᎠᏓᏰᏍᏗᏍᎬ ᎦᎷᏯᏍᏗ, ᏚᎧᎾᏅ ᏣᎵ. ᎾᎥᏂᎨ ᏚᎧᎾᏁ, ᎯᎸᎯᏳ ᏥᏲᎵᎩ ᏥᎨᏎ ᎠᏍᎦᏯ ᎾᎥᏂᎨ ᏤᏣᎧᏃᏗ. ᎢᎦ ᏗᎧᎸᎬ ᎢᏣ ᏓᏳᏓᎴᏅ ᎣᏍᏓ ᎠᎪᏩᏛᏗ ᏂᎦᎵᏍᏕᏍᎨᎢ. “ᎦᏙᏃ ᏛᏁᎵ?” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᏚᎧᎾᏁᎢ ᏌᏌ. ᎤᏂᏣᏘᏰᏃ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎠᏁᎷᎲᏍᎬᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎯᎷᎦ. ᎢᎬᏱᏱ ᎠᏍᎦᏯ ᎦᏙᎯ ᏅᏓᏳᏓᎴᏅᎯ, ᎦᏓᏉ ᎨᏎᎢ; ᏔᎵᏁ ᎠᏍᎦᏯ ᎤᎬᏫᏳᎯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ. ᎾᏍᎩᏃ ᎢᎦᏛ ᏚᎾᏕᏋᎯᏍᏗ ᏥᏫᏅᏗᏨᎷᏤᎵᏒᎾᏉ ᏥᎨᏐ ᎾᏍᎩᏯᎢ. ᎠᏂᏅ ᏧᏩᏂ ᏧᎾᎵᏲ ᎠᏥᎸ ᎾᎥᏂ ᏫᏂᏚᏅᏅ ᏧᎾᎳᏏᏕᏅ, ᎤᏔᏃᎸᏓ ᎠᎵᏌ ᎳᏗᏍᎬ ᏓᏂᎾᏌᏛ. ᏴᏫ ᎤᏂᏁᏨ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ, ᎠᏴ ᎣᎦᏛᎦᏅ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎡᎲᎢ; ᎦᏙᏃ ᏴᏫ ᎤᏪᏥ ᎠᏎ ᏓᏰᏥᏌᎳᏓᏂ ᎢᎭᏗᎭ? ᎦᎪ ᎾᏍᎩ Ꮎ ᏴᏫ ᎤᏪᏥ? ”ᎣᏍᏓ!” ᎤᏛᏁ ᏌᎳᏓ. ᎤᏬᏂᏒ. ᎤᎬᏫᏳᎯᏰᏃ ᎤᏩᏒ ᏛᏠᎠᏏᎵ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎤᎵᏠᏯᏍᏕᏍᏗ ᎤᏁᎷᎬᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎧᏁᎬᎢ, ᎠᎴ ᎠᏤᎷᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏃᏴᎬᎢ; ᏧᏂᏲᎱᏒᎯᏃ ᎦᎶᏁᏛ ᎤᎾᎵᏍᎦᏙᏔᏅᎯ ᎢᎬᏱ ᏙᏛᎾᎴᏂ; ᎾᏍᎩ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᏚᎾᎵᏘᏎᎢ, ᎵᏍᏗ ᎠᎴ ᏓᏈ ᎵᎨᎣᏂᏯ ᏕᎦᏚᎲ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎾᎿ ᎬᏩᏚᏫᏛ ᎨᏒᎢ. ᏕᏥᏲᎵᎸᎭ ᏂᎦᏛ ᎨᏣᎦᏌᏯᏍᏗᏕᎩ, ᎠᎴ ᏂᎦᏛ ᎤᎾᏓᏅᏘ. ᎢᏓᎵ ᎠᏁᎯ ᏫᎨᏥᏲᎵᎦ. ᎡᎳᏗ ᏄᎾᏛᎾᏕᎬ ᏚᏂᎷᏫᏍᏔᏁᎲ. ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏣᏓᏅᎾ, ᎾᎪᏃ ᎤᏲᎱᏒᎯ ᏱᎩ ᎠᎨᏳᏣ; ᎦᎵᎭᏉᏍᎩᏂ. ᎥᎬᏩᏰᏣᏍᏔᏅᏉᏃ. ᏌᏩᏂ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏎᎨᎵ ᎾᏍᎩ Ꮎ ᎤᏟ ᎢᎦᎢ ᏗᎬᏩᏲᎯᏎᎸᎯ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᏚᏳᎪᏛ ᏕᎱᎪᎵ. ᎣᏏᏳᏰᏃ ᎠᏰᎸᏅᎯ ᎨᏎ ᎾᏍᎩ ᎤᏪᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎦᎥ ᎠᎧᎵᎢᎯ ᎨᏒᎢ; ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ ᏫᏚᎾᏓᏒᏍᏔᏁᎢ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎠᏃᎯᏍᏗᏍᎩ, ᎤᏁᎳᏅᎯᏰᏃ ᏧᏪᏥ ᏛᎨᎪᏎᎵ. ᎠᎾᏍᎩᏓᏍᎬᏃ ᎤᏁᎳᏅᎯ ᏚᏁᏤᎸ ᎡᎶᏛᏱ ᏭᏂᎶᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᎤᎾᏂᎩᏒ ᎤᏣᏘᏂᏉ ᎢᏗᏢ ᏭᏂᎶᏎ ᎢᎤᏁᏅ ᎤᎾᏤᎵᎪᎯ. ᏈᏓᏃ ᎤᏅᏓᏕ ᏥᏌ ᎤᏁᏨᎯ, ᎯᎠ ᏥᏄᏪᏎᎴᎢ; ᎠᏏ ᏣᏔᎦ ᎾᏂᏴᎬᎾᎨᏎᏍᏗ ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ. ᎤᏄᎪᏨᏃ ᎡᎯᏍᏗ ᏫᏚᏠᏱᎴᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏗᏛᎮ ᏓᏂᎧᏅᎢ, ᎠᎴ ᎤᏁᏎ ᎤᏤᏍᏙᎩ, ᎠᎴ ᏧᏪᏅᏒ ᏭᎶᏎᎢ, ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ. “Ꮘ-Ꮘ-Ꮘ!” ᎥᏝᏍᎩᏂ ᏱᎬᎩᎪᏩᏔ ᎠᎭᏂ ᎦᎴᏫᏍᏗᎲᎢ ᎠᎴ ᎾᏍᎩ ᏙᏛᏘᏂᏙᎵ ᎠᏙᎳᏅᏍᏗ ᏔᎷᎩᏍᎩ ᎪᏢᎳᏅᎯ ᏓᎬᏔᏂ; ᎠᎴ ᏗᏩᎵ ᏥᏕᎦᏓᏬᏗᏍᎪᎢ ᎾᏍᎩᏯ ᏙᏓᎦᏓᏬᏔᏂ; ᎾᏍᎩᏯ ᏓᎩᏲᎯᏎᎸ ᎡᏙᏓ. ᏆᎩᏃ ᎧᏃᎮᏛ ᎤᎾᎵᏥᏙᏅ ᎠᏔᏓᏯ ᏭᏂᎷᏤᎢ. ᏗᏣᏤᎵ ᏓᎶᏂᎨ ᎠᏕᎸ ᎠᎴ ᎤᏁᎬᎠᏕᎸ ᏚᏯᏍᏜᏛ, ᏚᏯᏍᏜᏛᏁ ᎢᏥᏃᎮᏍᎩ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏪᏰᏍᏗ ᎨᏎᏍᏗ ᎢᏥᏇᏓᎸ ᎠᏥᎸ ᏥᎦᏰᏍᎪ ᎾᏍᎩᏯᎢ. ᎢᏥᏟᏌᏅ ᏧᎬᏩᎶᏗ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏒ ᎤᎬᏩᎵ. ᎠᏯᏖᎾ ᎧᏴᏌᏛᎢ ᎬᏗ ᏭᏩᏌᏙᏰᎢ ᎤᏪᏥ ᎤᏁᏍᎩᎸ ᏙᏰ, ᏂᎦᏓ ᎤᏂᏁᎵᏍᎩ ᎤᎾᎦᏙᏍᏕᎢ ᎤᏩᏌᏆᎸᏍᏔᎾ. ᏉᎳ, ᎥᎩᏅᏏᏛ, ᏴᏫ ᎬᎩᏅᏏᏛ ᏂᎨᏒᎾ, ᎠᎴ ᏴᏫ ᎬᎩᏁᏤᎸᎯ ᏂᎨᏒᎾ, ᏥᏌᏍᎩᏂ ᎦᎶᏁᏛ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨ ᎾᏍᎩ ᏧᎴᏔᏅᎯ ᏥᎩ ᎤᏲᎱᏒᎢ ᎾᏍᎩ ᎬᎩᏁᏤᎸᎯ; ᎥᏝ ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏧᏃᏰᏂ ᏱᏚᎵᏍᏕᎸᏗ, ᏧᏂᎬᎪ ᎪᎱᏍᏗ ᎾᏍᎩᏯᎢ, ᏕᎠᏁᎮᏰᏃ ᏂᎦᏛ ᏓᏅᏅᎢ ᎠᎴ ᏓᏅᏬᎳᏕᏍᎬ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ. ᎾᎿᏃ ᎠᎾᎵᏍᏓᏴᏂᏙᎮ ᎦᏚᏏ ᎤᏂᏣᏘ ᏑᎾᏓᏡᏈᎩ ᏏᏆ; ᎾᏍᎩᏃ ᎬᏩᏔᏲᏎᎴ ᎤᏁᎳᎩ ᏧᏪᎵᏎᏗᏱ ᎾᏍᎩ ᏫᏚᏂᏴᏍᏗᏱ; ᎤᏁᎳᎩᏃ ᏎᏪᎵᏎᎴᎢ ᎦᎸᎶ ᎠᏰᎵ ᎢᏴ ᎤᏓᏍᏔᏅᏁᎢ ᎦᏂᏓᏛ, ᏑᎾᏙᏓᏆᏍᏗ ᎢᎪᎯᏓ ᎦᏃᎯᎵᏎ ᎤᏒᎯ. ᏥᏍᎦᎢ ᎠᏋᏌ ᎨᏒ ᎤᏪᎵᏎ. ᎤᏅᏏᏴ ᏓᏂᏒᎳᏍᎨ ᏌᏌ ᎠᏂᏓ. ᎠᎴ ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎤᏲᏍᏛᏉ, ᎤᏲᏍᏛᏉ, ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲ ᎾᏍᎩ ᎤᏏᏙᎵ ᏙᎴᏛ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ ᏥᏚᏣᏃᏛᎩ, ᎠᎴ ᎠᏕᎸᏓᎶᏂᎨᎢ, ᎠᎴ ᎤᏣᏘ ᏧᎾᎬᏩᎶᏗ ᏅᏯ, ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ, ᏥᏚᏣᏃᏛᎩ! ᎠᏎᏃ ᎤᎾᏰᎯᏍᏗ ᎨᏎᏍᏗ ᎣᎩᎾᎵᎢᏴ! ᎤᏕᎵᏍᏗ ᎤᏓᎾᏏᏅᏍᏔᏁᎢ ᎠᏦᏴ ᎾᎥᏂ, ᎤᏔᎴᎦᏒ ᏭᏕᎵᏤ ᎤᏩᏌ ᎤᏍᎪᏒ ᎠᏍᏚᏗ ᏃᎴ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎠᏰᎵ. ᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒᎩ ᎠᏂᏌᏛᎥᏍᎬᎩ, ᎤᏄᎯᏍᏙᏗᏱᏉ ᎤᏂᏰᎸᏒᎩ. ᎠᏎᏃ ᏥᏌ ᎤᏗᏌᏓᏛᎩ, ᎦᏰᏌᏛᏃ ᎤᏩᏔᏅᎩ ᎤᏬᏪᎳᏅᎩ ᎦᏙᎯ. ᏔᎵᏁᏃ ᎢᏴᏛ ᏭᎶᏒ, ᎤᏓᏙᎵᏍᏔᏁᎢ, ᏄᏪᏒ ᎾᏍᎩᏯ ᏫᏄᏪᏎᎢ. ᎾᏍᎩ ᎬᎩᎪᎵᏰᎥ, ᏱᏗᎬᎩᏲᏎᎢ, ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᎠᏲᎱᎯᏍᏗ ᎬᎩᏍᏛᏗᏍᏗ ᏱᎬᎩᏩᏛᎡᎴᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏂᏲᏎ ᏥᏳ ᎠᎴ ᎤᏂᏙᏓ, ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᎠᏆᏛᎦᏅᎩᏃ ᎩᎶ ᎠᏍᏓᏯ ᏓᎧᏁᎬᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏛᏓᎴᎲᏍᎩ ᎯᎠ ᏂᏕᎦᏪᏎᎲᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎢᏤᎾ, ᎠᎴ ᎡᎶᎯ ᏫᏂᏐᏅᏯ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎫᎫ ᏓᏟᏍᏛᎢ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ. ᎤᏲᎵᎴ ᎤᏍᏗ ᎧᏅᏂᏍᎩ. ᎠᏂᏩᏥᏂ ᎤᏃᏟᏍᏗ ᎠᏉᏪᎳᏅ, ᏦᎢ ᎢᏳᏩᎬᏘ ᎠᎩᎪᎵᏰᎥ ᎩᎳ ᎠᏉᎵᏨ. ᎾᏍᎩᏃ ᎩᎶ ᎠᏎ ᎾᎿ ᏭᏂᏴᏍᏗ ᏥᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎢᎬᏱ ᎨᎦᎵᏥᏙᏁᎸᎯ ᎨᏒ ᎾᏄᏂᏴᎸᎾ ᏥᎨᏎᎢ., ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ. ᏐᏉ ᎠᏫᎾᎨᏍᏗ ᎠᏍᎦᏰᎬᏍᏔ ᎠᏌᎻᏓ ᏧᏙᎢᏓ. (ᎾᏍᎩ Ꮎ ᎠᎨᏴ ᎠᎪᎢ ᎨᏎᎢ, ᎠᏌᎶᏈᏂᏏ ᎨᏎᎢ;) ᎠᎴ ᎾᏍᎩ ᎤᏍᏗᏰᏔᏁ ᎾᏍᎩ ᎤᏪᏥ ᎠᏛᏄᏣ ᎠᏍᎩᎾ ᎤᏄᎪᏫᏎᏗᏱ. ᎠᎴ ᎠᏴ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎠᏓᏅᏙ ᏧᎾᏘᏂᏙᎯ ᎾᏍᎩᏯ ᎨᏨᏬᏁᏙᏗ ᏱᎨᏎᎢ, ᎤᏇᏓᎵᏉᏍᎩᏂ ᏧᎾᏘᏂᏙᎯ ᎾᏍᎩᏯᎢ, ᎾᏍᎩᏯᏉ ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎦᎶᏁᏛ ᏚᎾᏚᏓᏛ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏ ᎤᏬᏰᏂ ᎤᏩᏔᏅᎯ ᎤᏌᎳᏓᏅᎯ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏴᎵᎨ ᎤᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᏧᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏪᏐᏅᏴ ᎯᎠ ᎪᎯ ᏥᏥᎪᏩᏘᎭ ᎠᎴ ᏥᏣᏛᎩᎭ. ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎧᏃᎮᏛ ᎨᏒ ᏓᏆᏢᏫᏎᎲᎢ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎯᎠ ᏅᏥᏪᏎᎸᎩ [ᏉᎳ]; ᏣᏚᎵᏍᎪ ᏥᎷᏏᎵᎻ ᏤᏅᏍᏗᏱ ᎾᎿᏃ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏤᏧᎪᏓᏁᏗᏱ. ᎣᎭᏁ ᏃᏉ ᏩᏂᎷᎬ ᎠᏂᏫᎾᎨᏍᏗ ᏗᏂᎳᏫᎩ, ᏅᏙ ᏥᏗᎧᎸᎪ ᎢᎪᎯᏓ. ᎦᏰᎵᏍᏗ ᎦᏲᏟ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏍᎩᎾᎾ ᎨᏒ. ᎢᏓᏓᏅᏟ, ᎥᏝ ᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏨᏲᏪᎳᏁᎭ, ᎤᏪᏘᏉᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏥᏥᎲᎩ ᏗᏓᎴᏂᏍᎬᎢ; ᎤᏪᏘ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏉ ᎧᏃᎮᏛ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏁᏣᏛᎩᏍᎪᎢ. ᎾᎿᏂ ᎬᏩᏛᏅᎩ, ᎠᎴ ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎢᏧᎳᎭ ᏕᎨᎦᏛᏅᎩ ᎢᏧᎳ ᎢᏗᏢ ᏥᏌᏃ ᎠᏰᎵ. ”ᎨᏓᎵ ᎢᏣ ᏩᏓᏒᏍᏓ!” ᎤᎾᏛᏁ ᏩᎦ. ᎠᎴ ᎥᏝ ᎾᏍᎩ Ꮎ ᏑᎾᏓᎴᎩ ᎨᏒ ᎤᏅᏒ, ᎾᏍᏉᏍᎩᏂ ᏌᏉ ᎢᏧᏩᏁᏗᏱ ᏧᏪᏟᏐᏗᏱ ᎤᎾᏗᎦᎴᏲᏨᎯ ᎤᏁᎳᏅᎯ ᏧᏪᏥ. ᎾᏍᎩ ᏥᎦᏙᎥᎯᏍᏗᏱ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎾᏍᎩ ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅᎢ, ᎠᎴ ᎠᏇᎳᏗᏍᏗᏍᎬ ᎾᏍᎩ ᎤᎩᎵᏲᏥᏙᎸᎢ, ᎠᎴ ᎤᏲᎱᏒ ᎾᏍᎩᏯ ᎠᎩᏲᎱᎯᏍᏗᏱ; ᎠᏎᏃ ᏥᏌ ᎠᏏ ᎠᎱᏍᏗ ᏯᏗᏯᎨᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏆᎴᏗ ᎤᏍᏆᏂᎪᎭᎢ. ᏃᏊᏗ ᎠᏲᏟ ᎠᏍᎪᎵ ᎡᎳᏗ ᏥᏂᎬᏁᎮᎢ ᎠᏥᏒᏔᏁᎮ ᏃᎴ ᏍᎩᎾ ᎠᎦᏴᎵᎨ ᎠᏒᏂᎮ ᎠᎨᏳᏣ ᎤᏍᏘᏰᎬ ᏍᎩᎾ ᎦᏂᏰᎬ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏍᏛᎢ ᎬᏗ. ᏭᏂᎷᏣ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ, ᎠᎾᏛᎩᏍᎨ ᎧᏃᎩᏍᏗ ᎦᏆᏛ ᎠᏗᏆᎸᏕᏲ ᏓᏳᏓᎴᏅ ᏃᎴ ᎠᏂᎪᏩᏘᏍᎨᎢ ᎠᏗᏆᎸᏕᏲᎲ ᎦᎸᎶᎢ. ᎿᏉᏃ ᏚᏂᎦᎵᏒ ᏕᎦᏙᏌᏗᏍᏛ ᏔᎷᎩᏍᎩ ᏥᏳ ᏗᎦᎾᎯᏍᏙᏗ, ᎠᎺᏉ-Ꭿ ᏚᏂᏲᎯᏎᎸᎩ, ᎠᎴ ᏚᏂᎧᏁᏴᎲᎩ ᎦᏌᏛᏍᏗ ᏕᎦᎸᏍᏛᎢ, ᎠᎴ ᎦᏃᎸᎥᏍᎬᎢ ᎤᏂᏰᏙᎳᏛᏅᎩ ᎤᏍᏗ ᎠᏰᏙᎳᏛᏗ; ᏙᏱᏃ ᏫᏚᏄᎪᏔᏅᎩ. ᎠᎴ ᎤᏦᏖ ᏧᏓᎴᏅᏛ ᏕᎦᏬᏁᏗᏍᎬ ᏚᎵᏥᏙᏁᎴ ᎠᏫ. ᎢᏳᏃ ᎠᏩᏛ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎤᏟ ᏂᎦᎣ ᎠᎵᎮᎵᎪ ᎾᏍᎩ ᎨᏒ ᎢᏳᏍᏗ, ᏒᏍᎦᏉ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏯᏂᏛ ᏄᎾᎴᏲᎥᎾ. ᎯᎠ ᎾᏍᎩ ᏌᏉ ᏄᏅᏅ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏄᏍᏛ ᎤᎾᏒᎦᎸ ᎠᎴ ᏚᎾᎵᏂᎬᎬ ᏙᏛᏂᏲᎯᏎᎵ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ ᎠᎴ ᎤᎾᏓᏅᏖᏔᏁᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᏙ ᎯᎠ ᎦᏛᎦ? ᎩᎶᏍᎩᏂ ᏳᏍᏆᏂᎪᏗ ᎾᏍᎩ ᎤᏁᏨᎯ, ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒ ᎤᎧᎵᏨᎯ ᎨᏐᎢ: ᎾᏍᎩ ᎯᎠ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎡᏗᏯᎥᎢ. ᎠᎴ ᎠᏋᏒ ᎾᏍᏉ ᎠᏉᎯᏳᎭ ᏂᎯ ᎢᏨᏯᏓᏅᏖᏍᎬᎢ, ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᎣᏍᏛ ᎨᏒ ᎢᏥᎧᎵᎢ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎴᏒ ᎠᎦᏙᎥᎯᏍᏗᎨᏒ ᎢᏥᎧᎵᎥᎢ, ᏰᎵᏉ ᎾᏍᏉ ᏗᎨᏣᏓᎬᏍᎪᎸᏗ ᎨᏒᎢ. ᎤᏲᎢᏴ ᎤᏕᏘᏴᏌᏗᏒ ᎦᏙᎯᏉ ᎠᏩᏛᏗ ᎪᎰᏍᏗ ᎠᎩᏍᏗ. ᎤᎵᏍᏗᏳᏃ ᎠᏤᎵᏍᏛ ᎤᎾᏓᏅᏎᎢ, ᎠᏂᏍᎦᎢᎮ ᎠᎴ ᎤᏣᏘ ᎠᎾᎵᎮᎵᎨᎢ, ᎠᎴ ᏚᏂᏍᏆᎸᏔᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏂᏃᏁᎸᏎᎢ. ᎤᏂᏣᏖᏰᏃ ᏚᏅᏩᏁᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏩᏁᏄᎳᏍᏗᏍᎨ ᎬᏩᏃᏟᏍᏙᏗᏱ ᎤᎾᏚᎵᏍᎨᎢ, ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎾᎵᏍᏗᏍᎩ. ᏦᎢᏁᏃ ᎢᎦ ᎣᎬᏒ ᏦᎪᏰᏂ ᏙᎬᏔᏅᎩ, ᎣᎦᏘᏅᏒᎩ ᎤᏤᎵᎦᏯ ᎤᎵᏁᏌᎸ ᏥᏳ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏣᏚᎵᎭ? ᎯᎠ ᏅᏓᏳᏪᏎᎸᎩ; ᎭᎵᏍᎪᎸᏓ ᎯᎠ ᎠᏂᏔᎵ ᏗᏇᏥ ᏧᏂᏗᏱ ᏣᏤᎵᎪᎯ ᎨᏒᎢ, ᏌᏉ ᎯᎦᏘᏏ ᎢᏗᏢ, ᏐᎢᏃ ᎯᎦᏍᎦᏂ. “ᎠᏯᏍᏉ ᏥᏚᎢᏍᏗ,” ᎤᏛᏁ ᎠᎵᎮᎵᎩ. ᏥᏳᎯᏃᎢᎤᎾᏣᏅ ᎦᏃᎸᎥᏍᎬ ᎤᏑᎵᎪᏨᎩ. “ᏓᏁᏏᏃᎨ, ᏣᎨ ᏌᎳᏓ?” ᎤᏛᏛᏁ. ᎿᏉ ᎯᎠ ᎡᎶᎯ ᏙᏓᏰᎫᎪᏓᏁᎵ, ᎿᏉ ᎤᎬᏫᏳᎯ ᎯᎠ ᎡᎶᎯ ᎤᏤᎵᎦ ᏓᏰᏥᏄᎪᏫᏏ. ᎿᏉᏃ ᏥᏌ ᏔᎵᏁ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏓᎦᏓᏅᏏ, ᏂᎯᏃ ᏍᎩᏲᎮᏍᏗ, ᎠᎴ ᎠᏎ ᎠᏍᎦᏂ ᎨᏒ ᏙᏓᏥᏲᎱᏏ, ᎠᎴ ᏫᏥᎦᏛ ᎥᏝ ᏫᏴᎨᏥᎷᎩ. ᎾᎿᏃ ᏭᎷᏧ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏣᏓᏙᎵᏍᏓ ᎤᏓᎴᎾᏍᏗᏱ ᎨᏒ ᏫᏥᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎤᏔᏂᏓ ᎢᎾᏓ ᎤᏍᎦᏎᏗ ᎤᏦᏔᎮ ᏃᎴ ᎤᏩᏂᏍᏓᏂᏙᎴ, ᎤᏔᎶᎩᏍᎨ. ᏍᎩᏴ ᎤᏒᎯ, ᏫᏥ ᏫᏣᏚᎦ ᎤᎪᏅ ᏍᎨᏫ ᎦᏥᏲᏎᎸ ᎠᏂᏧᏣ, ᎢᎦᏲᏍᏔ ᎠᏋᎭᏂᏍᏔᏅ ᏇᎯ. ᏚᏙᏩᏗᏍᎬ ᏕᎦᏅᎯᏤᎨ. ᎢᏕᎾ, ᏪᏥᎪᏩᏛ ᎠᏍᎦᏯ ᎠᎩᏃᏁᎸᎯ ᏂᎦᎥ ᎾᏆᏛᏁᎵᏙᎸᎢ. ᏝᏍᎪ ᎾᏍᎩ ᎦᎶᏁᏛ ᏱᎩ? ”ᏔᏕᎶᎰᏏᏗ. ᏗᏂᎦᏙᎵᏃ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎢᎬᏬᎵᏤᎢ, ᎠᎴ ᎤᎵᏛᏔᏁ ᏓᏂᎧᏅᎢ. ᎬᏂᏳᏉᏃ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎢᎬᏱᏗᏢ ᏄᏛᏁ ᎤᏢᎩ ᎠᎹ ᎤᏓᏁᏁᎯ. ᏧᎧᎭᏲᏓ ᏚᏑᎦ ᏧᏆᎶᎦ ᎭᏫᏂᏨ ᏧᏬᏰᏂ ᏃᎴ ᏗᎧᏂᎨᏂ ᏃᎴ ᏧᎳᏏᏕᏅ ᎤᎭᎨᏛ ᎾᏍᎩᏯ ᎤᏓᏔᏅ ᏧᏯᏍᎦ. ᎠᏂᏃᏍᎩᏍᎩᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᏗᎨᎦᏛᏅᎯ ᎾᏍᏉ ᎦᎬᏩᏐᏢᏕᎢ. ᎩᎶᏰᏃ ᎬᏅ ᎤᎨᏳᏎᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎢᎦ ᏧᎪᏩᏛᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᏩᏲᏍᏙᏓᏏ ᎦᏃᎪᎢ ᎤᏲ ᎨᏒᎢ, ᏚᎭᏁᎦᎸ ᎦᎶᏄᎮᏛ ᎤᏁᎢᏍᏗᏱ ᏂᎨᏒᎾ; “ᎯᎦᏘᏰᏍᏗ! ᎤᏛᏁ ᎪᏱᏁᎢ. ᏂᎦᎥ ᎪᎱᏍᏗ ᏓᎩᏲᎯᏎᎸ ᎡᏙᏓ; ᎥᏝ ᎠᎴ ᎩᎶ ᏯᎦᏔᎭ ᎾᏍᎩ ᎨᏒ ᎤᏪᏥ, ᎠᎦᏴᎵᎨ ᎤᏩᏒ; ᎠᎴ ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎨᏒ ᎤᏪᏥ ᎤᏩᏒ, ᎠᎴ ᎩᎶ ᏥᎾᏄᎪᏫᏏ ᎡᎳ ᎤᏪᏥ. ᏧᏓᎴᏅᎮ ᎠᏂᏳᏩᏁᎦ ᏚᎾᎵᎪᏁᎸ ᎠᏂᏴᏫᏯ, ᎠᏂᏳᏩᏁᎦ ᎨᏥᏔᎶᏎ. ᎥᏝ ᎩᎶ ᎠᏥᏅᏏᏓᏍᏗ ᏰᎵ ᎠᏂᏔᎵ ᎬᏩᏅᏏᏙᎯ ᎪᎱᏍᏗ ᏱᏙᎬᏛᏂᏏ; ᏱᎠᏍᎦᎦᏰᏃ ᏌᏉ ᏱᎤᎨᏳᎭᏃ ᏐᎢ; ᏱᏃᎤᏂᏴᏆᎴ ᏌᏉ ᏱᎦᏂᏆᏘᎭᏃ ᏐᎢ. ᏝᏍᎩᏂ ᏰᎵ ᎤᏁᎳᏅᎯ ᎠᎴ ᎹᎹᏂ ᎪᎱᏍᏗ ᏱᏙᎨᏣᏛᏂᏏ. ᎤᎵᏏᏅᏗ ᎤᏍᏚᏁ ᎧᏁᏌᎢ. ᎠᏎᏃ ᎨᏍᏗ ᏳᏓᏁᏥᏴᏌ ᏁᎵᏍᎬ ᎤᏙᏓ. ᎠᎴ ᎯᏍᎩᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏥᎸᎨᎳᏍᏗᏱ ᎭᏫᏂᏢ ᏓᎩᎪᎲᎩ ᏧᎾᏓᏅᏙ ᎾᏍᎩ Ꮎ ᏗᎨᏥᎸᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎤᏂᏍᏛᏛᎯ, ᎠᎴ ᏄᏍᏛ ᎤᏃᎯᏳᏔᏅ ᎤᏂᏍᏛᏛᎯ; ᎾᏍᎩ ᎻᏚᏏᎳ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᏃᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏤᎳᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᎵᎵᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎧᏱᏅ ᎤᏪᏥ ᎨᏎᎢ, ᎠᏂᏍᎦᏯᏃ ᏥᏌ ᏗᎬᏩᏂᏴᎯ ᎦᎬᏩᏐᏢᏕ ᎠᎴ ᏕᎬᏩᏂᎮᎢ. ᎩᎶᏍᎩᏂ ᎢᎠᏆᏓᏱᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᏉ ᎠᏴ ᎾᏍᎩ ᏓᏥᏯᏓᏱᎵ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎠᎦᏔᎲᎢ. ᎠᎴ ᏂᎦᏗᏳ ᏗᎦᏃᎦ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ. ᎠᎴ ᎠᎹᏱ ᏗᎦᏘᏯ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᏯᏛᎦᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᏂᏍᎦᏅᎾ ᏣᎬᏫᏳᎯ, ᏂᎯ ᎾᏍᎩ ᏤᎭ, ᎠᎴ ᏤᎲᎩ, ᎠᎴ ᏤᎮᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏄᏍᏛ ᏕᏧᎪᏔᏅᎢ. ᏣᎵ ᎤᎷᏤᎴᎢ ᏧᏭᎪᏓᏁᏗ ᏂᎦᏓ, ᎤᏓᎨᏛ ᎤᎷᏤᎴᎢ ᎤᏕᏘᏴᏒ ᎢᏳᏍᏘ, ᎨᏍᏗ ᎢᏳᏍᏗᏉ ᏳᏓᏂᏴᎡᎸ ᎠᎧᏔᎾᎥ. ᎫᏰᏉᏂ ᎧᎸ ᎠᎬᏱ, ᏐᏈᎵ ᏧᏂᎷᏫᏍᏔᏁ ᏓᏄᏓᎸᎥᏍᎨ ᎦᏄᎸ ᎠᏣᎩᏍᎩ, ᏃᎴ ᎰᎻ ᎦᏅᏫᏍᏗᏍᎨ. ᎬᏂᎨᏒᏃ ᏄᏩᏁᎸ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᏦᏩ ᏚᏲᎯᏎᎴ ᎠᏰᎸᎢ. ᎢᏳᏰᏃ ᎩᎶ ᏰᎵ ᎩᎶ ᎤᏤᎸᏎᏍᏗ, ᎩᎶᏉᏃ ᏂᎨᏒᎾ ᎢᏳᏎᏍᏗ, ᎤᏩᏒᏉ ᏯᏓᎵᏓᏍᏗᎭ. ᎠᏂᏃᎯᎵᏙ ᎤᏂᏃᎮᎴ, ᎤᏣᎴᏓ ᏧᏤᎵ ᏴᏫ ᎯᎸᎯᏨ ᎦᏚᏏ ᎤᎾᏗᏍᎦᏢ, ᎠᎪᎾ ᏧᏂᏲᏏᏍᎩ ᏃᎴ ᏗᏂᎾᏬᎩ ᏃᎴ ᏧᏂᏨᎩ. ᏂᎪᎯᎸ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏄᏓᎴᏒ ᎠᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎠᏔᏲᏍᏗ ᎨᏒ ᎠᏓᏅᏙ ᎬᏗ, ᎠᎴ ᎢᏥᏯᏫᏍᎨᏍᏗ ᎾᎿᏂ ᎢᏨᏗᏍᎨᏍᏗ ᏗᏯᏪᎢᏍᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏔᏲᏍᏗ ᎨᏒ ᎨᏥᏍᏕᎸᏗᏱ ᎤᎾᏓᏅᏘ ᎾᏂᎥᎢ. ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏱᏦᎯᏳᎭ, ᎠᎴ ᏂᏣᏜᏏᏛᎡᎲᎾ ᏱᎩ, ᎥᏝ ᎯᎠᏉ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏥᎾᎬᎦ ᏱᏅᎨᏣᏛᎦ, ᎾᏍᏉᏍᎩᏂ ᎯᎠ ᏱᏂᏥᏪᏎᎸ ᎯᎠ ᏦᏓᎸ, ᎭᏓᏅᎾ, ᎠᎴ ᎠᎺᏉᎯ ᏪᏣᏚᎦ, ᎠᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ. ᎨᏍᏗ ᎪᎰᏍᏗ ᏯᎦᏔᎮ ᏄᎾᏍᏛ ᏧᎦᏴᎵ, ᏃᎴ ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏕᎶᎰᎯᏍᏗ. ᎠᏗᎾ ᎤᏬᎯᏳᎯᏳ ᎨᏎᏍᏗ ᎠᏔᏲᎯᎮᏍᏗ, ᎪᎱᏍᏗ ᏄᏜᏏᏛᎡᎲᎾ; ᎤᏜᏏᏛᎡᎯᏰᏃ ᎾᏍᎩᏉ ᎠᎺᏉᎯ ᏓᎵᏍᏗᎳᏁᎬ ᎤᏃᎴ ᏧᏃᎸᏔᏂᏙᎰ ᎠᎴ ᏧᎨᎯᏙᎰᎢ. ᎠᏍᎪᎵ ᏭᏍᏘᏅ, ᎤᏍᎫᏈᏓᎩᏒ, ᎤᏅᏍᎦᏝᏅ, ᏦᎳ ᏣᎩᏍᏙᏍᎪ ᎢᎦᎦᏓ ᏄᏩᏁᎸ. ᎠᏴ ᎤᏙᎯᏳᎯ ᎠᎹ ᏕᏨᏯᏬᏍᏗᎭ ᏗᏥᏁᏟᏴᏍᏗᏱ ᏕᏣᏓᏅᏛ ᎤᎬᏩᎵ; ᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎣᏂ ᏨᏓᏯᎢ ᎤᏟᎯᏳ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎠᏴ, ᏧᎳᏑᎶ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᏗᎩᏂᏓᏍᏗᏱ; ᎾᏍᎩᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎠᏥᎸ ᏙᏓᏣᏬᏍᏔᏂ. ”ᏙᎢᏳᏍᏗ ᎤᏍᏗ ᎪᎱᏍᏗ ᏥᏄᏍᏆᏂᎩᏗ? “ᎾᏄᏍᏗ ᎯᎠ!” ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏂᎦᎵᏍᏗᏍᎬ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ, ᎢᏥᎦᏔᎮᏍᏗ ᎤᏁ-ᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎥᏂᏳ ᎨᏒᎢ. ᎣᏍᏓ ᏱᎾᏛᎦ ᏱᏣᏍᏚᏅ ᏧᏍᏆᏅᎾ ᎠᎬᏱ ᎭᎾᎦᏔᎲᏍᎬᎾ, ᎤᏛᏅ ᏣᎵᏍᏙᏂ ᏓᏳᎶᏒ ᎠᏧᏣ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ, ᎢᏣᏚᎵᏍᎨᏍᏗ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏅᏍᏙᏍᎨᏍᏗ ᎦᏬᏂᎯᏍᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎤᏣᏘ ᎤᎾᏕᏯᏔᏁᎮ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎡᏂᏳᏉ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎾᎥ ᏚᎾᎴᏂᎴ ᏗᎬᏩᏔᎷᎩᏍᎩ ᏧᎾᏄᏩᎢ; ᏍᎩᏴ ᎢᎦ ᏒᎮᏱᏣ, ᎤᎴᏫᏍᏔᎾ ᎦᏃᎸᎥᏍᎬ ᎡᏝᏪᎯ ᏃᎴ ᎤᎦᏃᏩ ᏄᎵᏍᏔᎾ, ᎬᏂᎨ ᎤᏍᎪᎸ ᏌᏌ ᏙᏱ ᎡᎶᎯ ᏚᏘᏅᏎ ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ. ᎾᏄᎾᏍᏗ ᎠᏂᏣᏗ ᏂᎬᎾᏛᎢ. ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏥᏲᏏᏍᎩ ᎪᎯ ᎨᏒᎢ; ᏙᏓᏦᎸᏏᏰᏃ. ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏣᏠᏱᎯ ᎪᎯ ᎨᏒᎢ; ᏛᏥᏰᏥᏰᏃ. ᎢᏳᏃ ᎩᎶ ᏚᎸᏫᏍᏓᏁᎸ ᏱᏁᎬᏩᏍᏗᏉ ᎾᎿ ᎤᏁᏍᎨᎲᎢ, ᎾᏍᎩ ᎠᎦᎫᏴᎡᏗ ᎨᏎᏍᏗ. ᎢᏗᎦᏔᎭᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᎷᏨᎢ, ᎠᎴ ᎢᎩᏁᎸ ᎢᎪᎵᏍᏗᏱ, ᎾᏍᎩ ᎡᏙᎵᏍᏗᏱ ᎾᏍᎩ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏥᎩ; ᎠᎴ ᎾᏍᎩ ᎡᏗᏯᎠ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ. ᎾᏍᎩ ᎯᎠ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏫᎾᏍᏛᎾ ᎬᏂᏛ. ᎿᏉᏃ ᏧᏙ ᏓᏳᎾᏓᏅᏒᎩ ᎤᏛᎪᏗ, ᎯᎠ ᏅᏓᏳᏂᏪᏒᎩ, ᏣᎬᏫᏳᎯ, ᎬᏂᏳᏉ ᎯᎨᏳᎢ ᏥᎩ ᎤᏢᎦ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏗᏐᎢ ᏙᏗᎦᏚᎲ ᏫᏗᎶᎯ, ᎾᎿ ᎾᏍᏉ ᎦᎵᏥᏙᏂᏙᎸᎭ; ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎠᎩᎷᏥᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎦᏅᎾ; ᎠᎴ ᎾᏍᎩ ᎤᎵᏁᏨ ᎾᏍᎦᏅᎾ, ᎠᎴ ᏚᏳᎪᏛᎢ, ᎠᎴ ᎣᏏᏳ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᏦᏩ ᎿᏉ ᎠᏲᎱᏍᎨᎢ, ᎤᏁᎢᏍᏔᏁ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏓᏅᏍᏗᏱ; ᎠᎴ ᏧᏁᏤ ᏧᎪᎳ ᎤᎬᏩᎵ. ᏔᎵ ᎢᏯᏅᏓ ᏚᎵᏰᎵᏙᎴ ᏭᏂᎷᎯᏍᏗ ᏣᎳᎩᏱ ᎠᏰᎵ, ᏂᏓᏓᎴᏂᏍᎨ ᏄᏯᎩ ᎤᎾᎴᏫᏍᏔᏁ ᏚᎾᎦᏙᏍᏔᏁ ᎠᎾᏛᏁᎵᏍᎩ, ᏩᏏᏓᏂ ᎦᏚᎲ. ᏚᎨᏓᎵᏴᏅ ᏂᎦᏗᏳ ᏗᎧᎵᎢᏍᏗ ᎨᏎᏍᏗ, ᏙᏓᎸᏃ ᎠᎴ ᏚᏌᎯᎸ ᏂᎦᏗᏳ ᎡᎳᏗᎭ ᎢᏗᎬᏁᏗ ᎨᏎᏍᏗ, ᏧᏓᏥᏃᏍᏈᏗᏰᏛᏃ ᎨᏒ ᏗᎦᏥᏃᎯᏍᏙᏗ ᎨᏎᏍᏗ, ᎤᏲᏃ ᏕᎦᏅᏅ ᎬᎾᏕᏍᎩ ᎢᏗᎬᏁᏗ ᎨᏎᏍᏗ. ᎠᏰᎵ ᎠᏴᏫᏯ, ᎣᎦᏤᎵᎪ ᏙᏰ ᎠᎯ. ᎠᎬᏱᏗᏣ ᎠᏍᏆᏚᎸ ᏍᏉᏪᎳᏁᎸᎯ. ᎠᏯ ᏃᎴ ᏫᎵ ᏓᏨᏍᏆᏂᎪᏔᏂ. ᎢᎸᎯᏢᏃ ᎠᏓᏁᎸ ᎢᏥᏴᎯᎮᏍᏗ, ᎢᎬᏱ, ᏅᏩᏙᎯᏯᏛ ᎡᎮᏍᏗ ᎠᏂ ᎠᏓᏁᎸᎢ, ᎢᏣᏗᏍᎨᏍᏗ. ᎢᎦᏛᏍᎩᏂ ᎠᏂᏆᎵᏏ ᏗᏂᏅ ᏭᏂᎶᏒᎩ, ᎠᎴ ᏫᏚᏂᏃᏁᎸᎩ ᏥᏌ ᏄᏛᏁᎸᎩ. ᎠᎩᎨᏳᎯ ᏂᎨᏒᎾ ᎥᏝ ᏱᏓᎧᎿᏩᏕᎪ ᎠᎩᏁᏨᎢ. ᎧᏃᎮᏛᏃ ᏥᏣᏛᎩᎠ, ᎥᏝ ᎠᏴ ᎠᏆᏤᎵᎦ ᏱᎩ, ᎠᎦᏴᎵᎨᏍᎩᏂ ᏅᏛᎩᏅᏏᏛ ᎤᏤᎵᎦ. ᎾᎯᏳᏰᏃ ᎤᏣᏖᏍᏗ ᎠᎩᎵᏯ, ᎾᏍᎩ ᎢᎦᎢ ᎥᏝ ᎢᎸᎯᏳ ᏱᏄᎵᏍᏔᏃ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ, ᎥᏝ ᎠᎴ ᎢᎸᎯᏳ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ. ᎠᏂᏐᎢ ᎠᏂᏯᎢ ᏚᎪᎮ ᏲᎾ ᎤᏤᏍᏙ ᎠᏎᏃ ᏦᎳᏂ ᏫᏓᎧᏁ, ᎠᏓᏅᏖᏍᎨ ᏄᎵᎮᎵᏍᏛ ᎡᎶᎯ ᏃᎴ ᎣᏍᏓ ᏄᎵᏍᏔᏁᎸ ᏍᎩᎾᎾ ᎤᏓᏅᏘ ᎨᏒ ᎡᎲ ᏏᏆ. ᎠᎬᏴᎵ ᎤᏃᏕᎾ ᎤᏁᎢᏍᏔᏁᎴ ᏁᏆᎸᎢ. ᏥᎦᏔᎲᎩ ᎠᏍᎦᏯ ᎦᎶᏁᏛ ᎪᎯᏳᏍᎩ, ᎿᏉ ᏂᎦᏚ ᎾᏕᏘᏴ, (ᎠᏯᎥ ᎠᏰᎸ ᎥᏝ ᏱᏥᎦᏔᎭ, ᎠᎴ ᎠᏰᎸ ᎾᏯᎥᎾ ᎨᏒ ᎥᏝ ᏱᏥᎦᏔᎭ; ᎤᏁᎳᏅᎯ ᎠᎦᏔᎭ;) ᎾᏍᎩ ᎯᎠ ᎠᎦᏘᎾᏫᏛᎲᎩ ᏦᎢᏁ ᎦᎸᎶ ᏗᎨᏒ ᏩᎦᏘᏃᎸᎩ. ᏳᎯᏐᏓᏁᎴ ᏌᎳᏓ ᏳᎾᎵᎪᎲᎾ ᏱᎨᏎ. ᎨᏍᏗ ᎨᏙᎲ ᎢᎪᎯᏓ ᏳᏫᏓᏥᎩᏏᏙᎳ ᎠᎴ ᏱᏓᏥᏱᏙᎵ. ᎾᏍᎩᏃ ᏄᏪᏒ, ᎤᎬᏫᏳᎯ ᏚᎴᏅᎩ, ᎠᎴ ᎠᏥᎦᏘᏗᏍᏗ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏆᏂᏏ, ᎠᎴ ᎾᏍᎩ ᎤᎾᏅᏅᎯ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎢᏦᎵᏍᏙᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏅᏙ; ᎾᏍᎩ ᎠᏓᏅᏙ ᎯᎠ ᎢᎦᏪᏍᎩ, ᏥᏌ ᎦᎶᏁᏛ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏥᎴᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ. ᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯᏰᎧᏂ? ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᏰᎵ ᏂᏫ, ᎠᎩᎬᏫᏳᎯᏰᏃ ᎠᏴ. ᏥᏃᎮᏍᎩ ᎤᏙᎯᏳᏒ ᎢᏯᏆᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏕᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎡᎶᎯ ᎠᎩᎾᏄᎪᏥᎸᎩ. ᎾᏂᎥ ᎤᏙᎯᏳᏒ ᎤᏂᎨᏳᎯ ᎠᎾᏛᎩᏍᎪ ᏥᏁᎬᎢ. ᎾᏍᎩ ᏄᏪᏎ ᎤᏣᏘ ᏚᏟᎶᏍᏓᏁᎴᎢ, ᎧᏃᎮᏛ ᏚᎵᏥᏙᏁᎴᎢ, ᎾᏍᎩ ᏰᎵ ᎬᏩᎾᏛᎪᏗ ᏂᎦᎵᏍᏗᏍᎬᎢ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏍᏕᎾ Ꮎ ᏕᏍᏗᏙᎬ ᏧᏳᎪᏗ ᏨᏗᎦᏚᎭ ᏫᏍᏗᏣᎯ; ᏫᏍᏗᏴᎸᏉᏃ ᎾᎿᏂ, ᏓᏰᏍᏗᏩᏛᎯ ᏗᎦᎵᎠᏅᎯᏛ ᎠᎩᎾ ᎨᎵᏌᏕᏍᏗ, ᎾᏍᎩ ᎥᏝ ᎩᎶ ᏴᏫ ᎤᎩᎸᏔᏅᎯ ᏱᎩ; ᎡᏍᏕᎵᏌᏕᏒᎭ ᎠᎴ ᏤᏍᏓᏘᏁᏒᎭ. ᎿᏉᏃ ᎠᏖᎵᏙ ᎠᎹ ᎤᏟᏍᏔᏅᎩ, ᎠᎴ ᎤᎴᏅᎲᎩ ᏚᏬᏑᎴᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏧᎾᎳᏏᏕᏂ, ᎠᎴ ᏚᏅᎦᎸᎡᎸᎩ ᎠᏄᏬ-ᏗᏑᎴᏗ ᎾᏍᎩ ᎤᏓᏠᏍᏛ ᎤᏩᏔᏅᎩ. ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᏕᎩᎸᏫᏍᏓᏁᎭ ᎠᎴ ᎦᏰᎩᏐᏢᏗᎭ ᏅᏗᎦᎵᏍᏙᏗ ᎡᏓᎵᏍᎦᏍᏙᏛ ᎬᏂᏛ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏗᏍᏕᎵᏍᎩ ᏥᎩ ᎾᏂᎥ ᏴᏫ, ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᎭ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ. ᎣᎯᏍᏙᏗ ᎠᎵᏖᎸᏂᏍᏗ ᎤᏓᎡ ᎰᎻ. ᎤᏂᏯᎸᏁᏃ ᎦᎸᎳᏗᏢ ᎤᎵᏍᏓᏛᎢ ᎢᏳᏍᏗ ᎨᏒ ᎤᎵᏱᎵᏕᎲᎢ, ᎯᎠ ᏂᎬᏁ ᎪᏪᎴᎢ; ᎯᎠᏲ ᏥᏌ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ. ᎯᎠᏃ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎸᎳᏗ ᎤᏤᎵᎪᎯ ᎡᎳᏂᎬ ᎤᎾᎵᏥᏙᏂᏂᏓᏍᏗ ᎨᏎᏍᏗ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎩᎳᏃ ᎿᏉ ᏛᎵᏍᏆᏗᎵ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᏴᎸ ᎩᎶ ᎢᏳᏍᏗ ᏣᎦᏁᎶᏗ ᎠᏆᎵᏏ ᎦᏁᎸ ᎤᎵᏍᏓᏴᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎾᏍᎩ ᎬᏩᎦᏌᏯᏍᏕᎢ. ᎯᎠᏃ ᎾᏍᏉ ᏄᏪᏎᎴ ᏭᏯᏅᏛ, ᎢᏳᏃ ᏕᎭᏕᎳᏍᏗᏍᎨᏍᏗ ᎢᎦ ᎡᎯ ᎠᎴ ᎤᏒ ᎡᎯ, ᏞᏍᏗ ᏱᏫᏘᏯᏂᏍᎨᏍᏗ ᏗᏣᎵᎢ, ᎠᎴ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎪᎱᏍᏗ ᏗᏨᏅ, ᎠᎴ ᏧᏁᎾᎢ ᎾᎥ ᎢᏣᏓᎳ; ᎾᏍᏉᏰᏃ ᏂᎯ ᏱᏮᎨᏣᏯᏅ ᎠᎴ ᏴᎨᏣᏓᏴᏏ. “ᎯᎠᏛ ᎾᏅᏛᏁᎰ ᏱᎾᏚᎳᏑᏝᎾ,” ᎤᏛᏁ ᏩᎭᏯ - ᎭᎴ ᎾᏦᎯᏍᎬ. “ᎨᏍᏗ ᎠᎵᏍᎪᎥᏍᎩᏱᎩ ᏌᎳᏓ. ᎾᎥᏂᎨ ᎦᏙᎩ ᏩᎦ ᏭᏃᎯᏎᎴᎢ ᏌᏌ ᏫᎵᎻ ᎤᏓᎵᏗᎩᎡᎸ, ᏂᎪᎯᎸᎾ ᏂᎦᏓ ᎠᏂᎧᏔᎮᎢ ᏩᎦ. ᎤᏁᏔᏅᎯ ᏰᎵᏉ ᏄᎵᏂᎬᎦ ᏧᎴᏙᏗᏱ ᎡᎵᏍᎨᎢ, ᎾᏍᏉ ᎤᏲᎱᏒᎯ ᏱᎩ; ᎾᎿ ᎾᏍᏉ ᏥᏚᏓᏂᎸᏤ ᏗᏟᎶᏍᏔᏅᎯ ᎾᏍᎩᏯᎢ. ᏤᏈᎳᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᏦᏩ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᏇᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᎳᏅᎩ. ᎠᏎᏛ, Private Perry, ᎦᎸᎳᏗᎨ ᏱᏣᏒᏓᏅ ᎠᏓ ᏏᏛ ᏳᎵᏏᎬᎾ. ”ᏍᎩ, ᏍᎩ, ᏍᎩ!” ᎤᏛᏁ ᏌᏌ, ᎤᎷᏍᎫᏪᎢ ᏯᏕᎰᏍᎬᎾ. ᎩᎶ ᏱᎪᎯᏳᎲᏍᎦ ᏥᏌ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ, ᎩᎶᏃ ᏳᎨᏳᎭ ᎤᏓᎾᏄᎪᏫᏒᎯ, ᎾᏍᏉ ᎠᏥᎾᏄᎪᏫᏒᎯ ᎤᎨᏳᎯᏳ ᎨᏐᎢ. ᎠᎴᏉᏃ ᏐᏈᎵ ᎤᎵᏓᏍᎩᏎ ᎾᏍᎩᏴ ᎭᏁᎸᏗᏍᎨ ᏣᎵᏒᏗ ᎦᎶᏇ. ᏗᎦᏅᎯᏛ ᏗᎬᏂᎨ ᏚᏑᎦᏢᎢ, ᏧᎵᏏ ᏧᏂᏔᎸᎩᏍᏗ ᏧᎾᏯᏨᏗ ᎢᏧᏅᏁᏗ, ᏣᎵ ᏧᎾᏅᏓᏗᏍᏙᏗ, ᎪᎯᏛ ᎫᏩᎶᏐᏅ ᎤᎾᏅᏓᏗᏍᏙᏗ. “ᎾᎾᎲ ᏐᎢ ᏣᎳᏏᏕᎾ?” ᏎᎦ ᎤᎴᏫᏍᏔᏁ ᏫᎵᎻ, ᏃᏗ ᏭᏓᎾᏫᏛᎮ. ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏄᏛ'ᏁᎴᎢ ᎤᏲᎱᏒ ᏥᏚᎴᏔᏁᎢ, ᎠᎴ ᎤᏩᏒ ᎠᎦᏘᏏᏗᏢ ᏧᏪᎧᏁᎢ ᎦᎸᎳᏗ ᏗᎨᏒᎢ, ”ᏣᏤᎵ ᎨᏎᏍᏗ ᎤᏪᏥ. ᎠᏎᏃ ᎢᏨᏔᏲᏎᎭ ᎢᏨᏰᎳᏗᏙᎲ ᎾᏆᏓᎾᏰᏍᏛᎾ ᎢᏯᏆᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏯ ᎾᏆᏓᎾᏰᏍᏛᎾ ᎦᏥᏴᏓᏁᏗ ᏣᎩᏰᎸᎭ ᎢᎦᏛ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎠᏓᏅᏖᏍᎬ ᏓᏂᎧᎿᏩᏗ ᏥᎪᎨᎵᏎᎭ. ᏣᏂᏃ ᏗᏓᏬᏍᎩ ᎤᎾᏄᎪᏨ ᏅᏓᎬᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎾᏁᎷᎩᎡᎭ, ᎠᎾᏁᎷᎩᏍᎩᏃ ᎬᏍᎦᎢᏍᏓᎩ ᏓᏂᏂᏱᎭ. ᎾᏍᎩᏴ ᏚᏂᎦᏘᎸᏎ ᎠᏂᏍᎦᏯ, ᏚᏂᎵᏒᎮ ᏚᏅᏍᎦᎸ ᎦᎷᏯᏍᏘ. ᎠᏂᏯᏫᏍᎩᏃ ᎬᏩᏘᎾᏫᏛᎮ ᏫᎬᏩᏴᏔᏁ ᎤᎬᏫᏳᎯᏱ ᎠᏓᏁᎸᎢ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏣᏥᎳᏫᏤᏗᏱ, ᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᏫᏚᏂᏯᏅᎮᎢ. ᎤᏠᏱᏃ ᏧᎸᏫᏍᏓᏁᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏁᎸ ᎤᏪᏅᎩ, ᎠᎴ ᏚᎸᏫᏍᏓᏁᎸᎩ; ᏚᏂᎸᏫᏍᏓᏁᎲᏰᏃ ᏗᎦᎵᏦᏙᏗ ᏗᏃᏢᏍᎩ ᎨᏒᎢ. ᎠᎴ ᎡᏂᏗ, ᎠᎴ ᏈᎵᎩ, ᎠᎴ ᏆᏙᎳᎻ, ᎠᎴ ᎹᏚ, ᎠᎴ ᏓᎻ, ᎠᎴ ᏥᎻ ᎡᎵᏈ ᎤᏪᏥ, ᎠᎴ ᏓᏗᏯ, ᎠᎴ ᏌᏩᏂ ᎠᎨᎾᏂᏗ, ᎣᏍᏓ ᏑᎾᎴ! “ᏌᎳᏓ,” ᎤᎵᏰᏔᏁᎢ. ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᎾᏂᎥ ᎤᏂᎯ ᎨᏥᏁᏗ ᎨᏎᏍᏗ; ᏄᏂᎲᎾᏃ ᏥᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏂᎲ ᎨᏥᎩᎡᏗ ᎨᏎᏍᏗ. ᏄᎬᏫᏳᏒᏃ ᎠᏫ-ᏗᎦᏘᏯ ᎦᎾᏄᎪᏥᎸᎭ ᎡᏥᏅᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗ ᎠᎵᏍᏚᎶ ᎠᏍᎪᎸᎩ ᏂᎨᏒᎾ. ᏕᏨᏰᎷᎦᏰᏃ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓ Ꮒ-ᎸᎢᏍᏗ ᎠᏛ-ᏳᎨᏗ ᎨᏒ ᎬᏗᎭ; ᏌᏉᏰᏃ ᎠᏍᎦᏯ ᏗᏣᏨᏍᏗᏱ ᏂᏨᏴᏁᎸ, ᎾᏍᎩ ᎤᎵᏏᎾᎯᏍᏗ ᎠᏛ ᎢᎦᎦᏛ ᎦᎶᏁᏛ ᏫᏗᏨᏲᎯᏎᏗᏱ. ᎾᏍᎩᏍᎩᏂ ᎢᏳᏍᏗ ᏞᏍᏗ ᏗᏧᎪᏔᏅᎩ ᎠᏏᏉ ᏄᏍᏆᎸᎲᎾ, ᎬᏂ ᎤᎬᏫᏳᎯ ᎦᎷᏨᎭ, ᎾᏍᎩ ᎢᎦ ᎦᏛ ᏥᏙᏓᎦᏁᏄᎪᏫᏏ ᎤᎵᏏᎬ ᏗᎬᏍᎦᎵ ᏥᎩ, ᎠᎴ ᎬᏂᎨᏒ ᏂᏙᏓᎬᏁᎵ ᏧᏂᎾᏫᏱ ᏄᏍᏛ ᏕᎾᏓᏅᏖᎸᎢ; ᎿᏉᏃ ᎾᏂᎥ ᎨᏥᎸᏉᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᏍᏗ. ᎠᎴ ᎤᏂᏍᏕᏲᏅ ᎠᎵᏍᏚᎶ ᏧᏣᏲᏍᏗ ᎪᏢᏔᏅᎯ, ᎤᏂᏍᏚᎳᏁᎢ, ᎠᎴ ᎦᎾᏍᏓ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᎾᏒᎦᎳᏗᏍᏔᏁᎢ; ᎠᎴ ᏓᎾᎵᏂᏆᏅᏁᎮ ᎠᎴ ᎠᎾᏕᎰᏗᏍᎨᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎢᏨᏲᎵᎦ, ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ. ”ᎠᏎ ᏍᎩ ᏂᎦᏥᏯᏛᏁᎰ.” ”Ꮒ,” ᏧᎵᎢᏍᏙᏴᏗ ᏄᏪᏎ, ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ ᎭᏗ. ᎩᎶᏃ ᎠᏂ ᏅᏲᎯ ᎠᏢᏨᎭ ᏓᏳᏐᏅᏂ, ᎩᎶᏃ ᎤᏐᏅᎭ ᏓᏳᏪᏓᏪᏔᏂ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏲ ᎤᎾᏓᏅᏔᏩᏕᎩ, ᏛᎨᏥᏄᏬᎯᏍᏔᏂᏰᏃ. ᏚᏟᏂᏆᏅᏁ ᏃᎴ ᎤᏓᏙᎵᏍᏔᏁᎢ. ᎤᏛᎦᏁ ᎠᏥᎸᏉᏗᏍᎬ ᏫᎵᎻ. ᏂᎯᎾᎲ! ᎠᎬᏓᎨᏂᏃ ᏚᏙᎥ ᎪᏪᎸᎩ, [ᎯᎠ ᏂᎬᏅᎩ] ᎤᏕᎵᏛ ᎨᏒᎢ, ᏓᏓᎶᏂ ᎡᏆ, ᎤᏂᏁᎫᏥᏛ ᎠᏂᎨᏴ ᎤᏂᏥ ᎠᎴ ᎤᏂᏆᏘᏍᏗ ᎡᎶᎯ ᎡᎯ. ᏌᏗᏏᏃ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ, ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏧᏪᎯ ᏥᎩ, ᎠᎴ ᎦᎵᏉᎩ ᏃᏈᏏ ᏧᏪᎯ ᏥᎩ; ᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎬᏃᏛ ᏥᎨᏦᏎᎭ, ᎠᏎᏃ ᏣᏲᎱᏒᎯᏉ ᏥᎩ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏗᏬᎪᏙᏗᏱ ᎠᎩᏰᎸᎭ ᎡᎶᎯ ᎠᎩᎷᏥᎸ, ᎾᏍᎩ Ꮎ ᎾᏂᎪᏩᏘᏍᎬᎾ ᎤᏂᎪᏩᏛᏗᏱ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏂᎪᏩᏘᏍᎩ ᏗᏂᎨᏫ ᎢᏳᎾᎵᏍᏙᏗᏱ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏔᏯ ᎠᎴ ᏌᏙᏂ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏟᎯᏳ ᏂᎯ. ᏅᎩᏦᏁᏃ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏕᎦᏍᎩᎸ ᏣᏂᏅᎩ, ᏚᎾᎵᏯᏍᏚᏅᎩ, ᎠᎴ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ ᎤᏁᎳᏅᎯ, ᎤᎩᏨᏛᏃ ᎤᏂᏣᏘ ᎥᏓᎵ ᎢᏍᎪᎾ ᏅᏛᏂᏙᎾᎢ, ᎤᎾᏙᎴᎰᏒ ᏅᏩᏓᎵ ᏥᏳ ᎾᏔᎸᎾ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎬᏩᏍᏓᏗᏙᎯ ᎤᎾᏦᏔᏅᎯ, ᎠᎴ ᏥᏌ ᏂᏚᎵᎪᏁᎸᎾ ᎨᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏳᎯ ᎤᎾᏣᏅ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏅᏒ ᎤᎾᏂᎩᏒᎢ;-- ᎿᏉᏃ ᎢᏳ ᎩᎶ ᎯᎠ ᏂᏥᏪᏎᎸᎭ, ᎬᏂᏳᏉ ᎠᏂ ᎦᎶᏁᏛ; ᎠᎴ ᎬᏂᏳᏉ ᎾᎿᏂ; ᏞᏍᏗ ᎢᏦᎢᏳᏅᎩ; ᎢᏥᏯᏫᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᏞᏍᏗ ᎤᏓᎴᎾᏍᏗᏱ ᏫᏥᎾᏄᎪᏨᎩ; ᎠᏓᏅᏙ ᎤᏙᎯᏳᎯ ᎤᏛᏅᎢᏍᏗ, ᎤᏇᏓᎸᏍᎩᏂ ᎠᏩᎾᎦᎳᎯᏳ. ᎯᎠ ᎾᎩᏪᏒ, ᏕᎦᎳᏑᎳᏍᎪᎢᏃ ᏃᎴ ᏔᎵᏍᎪ ᎢᏴ ᏕᎦᏎᎯᎰ ᏗᎬᏆᎳᏑᎵ ᏃᎴ ᏍᎦᏫᏍᏓ ᎤᏂᎬᏫᏳ. ᏗᏨᏂᏗᏳ ᎨᏒ ᏕᏥᏍᏕᎸᏙᏗᏍᎨᏍᏗ ᏗᏣᏓᏅᏙᎩ. ᎿᏉᏃ ᎤᏴᎸ ᎤᎬᏫᏳᎯ ᏚᎦᏔᏂᎸ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ, ᎤᎪᎮ ᎾᎿ ᎠᏏᏴᏫ ᏄᏄᏩᎥᎾ ᎨᏎ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏄᏬᏍᏗ. ᎦᎸᎳᏗᏣ ᏫᏚᎧᎾᏁ ᏫᎵᎻ. ᏚᏖᏅᏎᏃ ᏈᏓ ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ, ᎠᎴ ᎤᎴᏅᎮ ᎤᏣᏘ ᎤᏕᏯᏔᏁᎴᎢ, ᎠᎴ ᎤᏣᏘ ᎡᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ; ᎯᎪ ᏑᎾᎴ ᎠᎹ ᏚᏬᏚᎢᏍᏕ ᏂᎦᏓ ᏚᏏᎳᏛ. ᏧᏍᏆᏴᏍᏗ ᎤᏲᎯᏍᏔᏅ ᎨᏎ ᏚᎷᏫᏍᏔᏁᎲ ᏃᎴ ᎯᎸᎯᏨ ᏪᏙᎮ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙᏃ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏯᏃᎩᏳ ᎠᎹᏟ ᎠᏅᏍᎪᎢ ᎠᎴ ᎠᎾᏓᏙᎵᏍᏗᏍᎪᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏆᎵᏏ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ; ᏂᎯᏍᎩᏂ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᎾᎵᏍᏓᏴᎲᏍᎪ ᎠᎴ ᎠᎾᏗᏔᏍᎪᎢ. ᎡᎾᏰᏃ ᎤᏁᏨᎯ ᎨᏒᎩ ᎠᎦᎸᎢᏛ ᎠᎦᏘᏅᏍᏗᏱ ᎧᏱᏆ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᏧᏪᏅᏒᎢ. ᎨᏍᏗ ᏳᏣᏅᏕ ᎪᎰᏍᏗ ᎠᏛᏗ. ᎠᏎ ᏗᎩᎸᏫᏍᏓᏁᏗ ᏅᏛᎩᏅᏏᏛ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᏏᏉ ᎢᎦ ᏥᎩ; ᎡᏃᏱ ᏓᏯᎢ, ᎾᎯᏳ ᏰᎵ ᎩᎶ ᏗᎬᏩᎸᏫᏍᏓᏁᏗ ᏂᎨᏒᎾ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᎢᏣᏤᎵ ᎤᎬᏫᏳᎯ. ᎠᏆᎵᏏᏃ ᎤᎪᎲ ᎤᏍᏆᏂᎪᏎ ᏂᏚᏪᏑᎴᎥᎾ ᎨᏒ ᎠᏏᏉ ᏄᎵᏍᏓᏴᏅᎾ. ᎾᎯᏳᏃ ᎢᎦ ᎥᏝ ᎪᎱᏍᏗ ᏱᏍᎩᏯᏛᏛᎲᏍᎨᏍᏗ. ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎠᎦᏴᎵᎨ ᎡᏥᏔᏲᏎᎮᏍᏗ, ᏓᏉᏙᎥ ᎢᏨᏗᏍᎨᏍᏗ, ᎠᏎ ᎡᏥᏁᏗ ᎨᏎᏍᏗ. ᎤᎩᏨᏓ ᎤᎧᎭᏕ. ᎨᏍᏗ ᎤᏩᏌ ᎤᏕᎶᎰᏒ ᏱᎨᏎ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎯᎠ ᏂᎬᏅᎪᏪᎳ; ᎠᏆᏤᎵ ᎦᎵᏦᏕ ᎠᏓᏙᎵᏍᏙᏗᏱ ᎦᎵᏦᏕ ᏚᏙᎡᏍᏗ; ᎠᏎᏃ ᎯᎠ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᏂᏨᏁᎸ. XX. ᎢᏳᏪᏅᏍᏗ ᎤᎵᎪᏅᏔᏅᎢ ᏤᎩ, ᏃᎴ ᎠᏧᏣ ᏩᏏᏓᏂ - ᏧᏬᏗᎨ ᏧᏬᏍᎩᎵ ᏚᎾᎵᏍ. ᏇᏚᎬ, ᎤᏛᏐᏅ ᏣᎵ ᎤᏁᎦ ᎠᎭᏄᏮ. ᎠᎴ ᏧᏂᎦᎵᏴᏓ ᏌᎪᏂᎨ ᎠᏑᏫᏍᏙᏗ ᏃᎴ ᎤᏥᎸ ᏚᏂᏫᏒ, ᎠᏓᎸᏃᏗᏍᎩ ᏚᏍᏔᏅᏅ, ᎦᎸᎶ ᏃᎴ ᎡᎶᏚᏦᎯᏍᏛ ᎢᏳᏓᏅᎯᏓ, ᎯᎸᎯᏳ ᎠᎩᎪᎲ ᏱᎨᏒᎾ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏄᏍᏛ ᏥᏌ ᏚᏁᏤᎸ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ, ᎠᎴ ᎣᏍᏛ ᏄᏅᏁᎸᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ. ᏚᏓᏅᎡᎸᎩᏃ, ᎠᎴ ᎦᏚᎲ ᎤᏄᎪᏨᎩ, ᏇᏗᏂᏱ ᏭᎷᏨᎩ, ᎠᎴ ᎾᎿ ᎤᏒᎸᎩ. ᏂᎦᏗᎹᏏ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏱᏄᏍᏗ? ᏦᏩᏃ ᎠᏰᎸ ᎤᏁᏒ ᎤᏪᏣᏄ ᎶᏔᏁ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏄᏬ ᎤᏁᎬ; ᎨᏍᏗ ᏱᏚᏓᏟᏴ ᏲᎾ, ᏐᏉ ᎤᏦᏔᎮ. ᎠᏎᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎢᏳᏩᏂᏌᏛ ᎠᏴ ᎾᏆᏍᏛ ᎾᏆᏍᏗ; ᎠᎴ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎥᎩᏁᎸᎯ ᏥᎩ, ᎥᏝ ᎠᏎᏉᏉ ᏱᏄᎵᏍᏔᏅ; ᎤᏟᏰᏃ ᎢᎦᎢ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎡᏍᎦᏉ ᎾᏍᎩ Ꮎ ᎾᏂᎥᎢ; ᎥᏝ ᏍᎩᏂᏃᏅ ᎠᏴ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏗᎩᎧᎿ ᏩᏗᏙᎸᎯ. ᎿᏉᏃ ᎤᏍᏆᎸᎮ ᎾᎪᏔᏅᎾ ᎨᏒ ᎦᏚ ᎠᎩᏍᏗᏱ, ᎾᏍᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᎯᏍᏗ ᎨᏒᎢ. ᎯᎪ ᎢᏳᎳ ᏳᏚᎵ ᏧᏨᏉᏓᏁᏘ ᏗᏂᏲᏟ, ᎬᏂᎨᏒ ᏂᏕᎬᏁᎮ ᏚᏁᎸᎲ ᎦᏐᎯ ᏃᎴ ᏕᎦᏄᎳᏥᏴ ᎦᏚᎢᏣ ᏚᏇᏄᎩᏒ ᎤᎪᎸ ᎢᏴ ᏲᎾ. ᎾᎯᏳᏃ ᏗᎦᏃᏣᎵ ᎠᏴᎩ ᎤᏂᎧᎮ ᏆᎳᏆᏧᏙᎢᏛ. ᎠᏚᏓᎴᏓ ᎠᏆᏓᎾᏛᎢ. “ᎯᏁᏒᎲᏛ ᎤᏓᏍᏗᏰᏕ ᏫᎵᎻ. ”ᏍᎦᏃᎳ, ᏍᎦᏃᎳ!” ᎤᏛᏁ ᏌᎳᏓ. ᏥᏌᏃ ᏧᏓᎿᏩᏛ ᎦᏁᎲᎩ ᎤᏄᎪᏨᎩ, ᎤᏍᏆᎷᎪ ᏚᏙᎥ ᎤᎷᏨᎩ, ᎾᏍᎩ ᎪᎵᎦᏓ ᏚᏙᎥ ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏅᏗᏍᎬᎢ; ᏆᎴᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ, ᎦᏙ ᎤᏍᏗ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸ? ᎠᏎᏃ ᎤᏟᏉ ᎢᏯᏍᏓᏯ ᎤᏁᎷᏁᎢ, ᎯᏯᏛᎥᎦ, ᎤᎾᏛᏁᎢ. ᎠᎴᏬ ᏥᏐ ᏚᏬᏁᏔᏅᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎡᎶᎯ ᎢᎦ ᏥᏯᏘᏍᏓᏁᎯ; ᎩᎶ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ ᎥᏝ ᎤᎵᏏᎬ ᏱᎦᏰᏙᎮᏍᏗ; ᎠᏛᏂᏗᏍᏙᏗᏍᎩᏂ ᎢᎦ ᎤᏤᎵᎦ ᎨᏎᏍᏗ. ᎤᏩᏙᎯᏴᏓ ᎨᏎᏍᏗ ᎮᎲᎢ, ᏫᎵᎻ. ᎢᏳᏰᏃ ᏦᏑᏩ ᏱᏚᏁᎴ ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ, ᎥᏝ [ᎤᏁᎳᏅᎯ] ᎣᏂ ᏱᎬᏩᏁᎢᏍᏔᏁ ᏅᏩᏓᎴ ᎢᎦ. ᎩᏥ, ᏱᏣᏚᎵᎭᏍᎪ ᏍᎩᎾᎾ ᎢᏣᏛᏁᏗ?” ᎦᏙᏃ ᎥᏆᎫᏴᎡᏗ ᎨᏎᏍᏗ? ᎯᎠ ᎾᏍᎩ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎵᏥᏙᎲᏍᎨᏍᏗ ᏧᎬᏩᎶᏗ ᏂᎨᏒᎾ ᎢᏯᏋᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ᎾᏍᎩ ᎤᏲ ᎢᏯᏆᏛᏁᏗᏱ ᏂᎨᏒᎾ ᏄᏍᏛ ᎠᏆᏒᎦᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᏒᎢ. ᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏁ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙ ᏗᎩᎾᏓᏛᏙᏗ ᏂᎯ ᏥᏌ, ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ? ᎬᏁᏤᎭ, ᎤᏁᎳᏅᎯ ᎬᏁᎢᏍᏓᏁᎭ, ᎾᏍᎩ ᏍᎩᎩᎵᏲᎢᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᎾᏍᎩᏯ ᎡᏆᎭᎻ ᏧᏬᎯᏳᏁ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏚᏳᎪᏛ ᏥᏄᏛᏁᎶ ᏣᏥᏰᎸᎾᏁᎴᎢ. ᎯᎠᏃ ᏂᏚᏪᎭᎸᎩ; ᎦᎪ ᎯᎠ ᏓᎦᏟᎶᏍᏗ, ᎠᎴ ᎦᎪ ᎠᏥᏃᎮᎭ ᎯᎠ ᏥᎪᏪᎳ? ᎤᏴᏍᏗᏍᎩᏂ ᎠᎵᏍᏓᏴᏗ ᏧᎾᏛᎾᏯ ᎤᏁᎵᏍᏓᏴᏙᏗ ᎨᏐᎢ, ᎾᏍᎩ Ꮎ ᎤᏂᎩᏌᎲ ᎢᏳᏍᏗ ᎬᏩᎾᏙᎴᎰᎯᏍᏗ ᎨᏐ ᎣᏍᏛ ᎨᏒ ᏄᏍᏛᎢ, ᎠᎴ ᏄᏍᏛ ᎤᏲ ᎨᏒᎢ. ᎠᏴᏰᏃ ᎠᏆᏍᏗᎧᏂ ᎣᎩᏅᏏᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎥᏝ ᏰᎵ ᎠᏥᏅᏏᏛ ᎦᏴᏉᏎᏗ ᏱᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏲ ᏂᎦᏥᏁᎸ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᏃᎴ ᏍᏉ ᏄᏓᎴ ᎠᎪᎵᏰᏍᎪ, ᏱᏣᏕᎶᎰᏒᎾ ᏱᎩ -- ᎦᏓ. ᎥᏝ ᎩᎶ ᏰᎵ ᎠᏂᏔᎵ ᎬᏩᎾᏝᎢ ᎪᎱᏍᏗ ᏱᏙᎬᏛᏂᏏ, ᏱᎠᏍᎦᎦᏰᏃ ᏌᏉ ᏱᏅᎨᏳᎭᏃ ᏐᎢ, ᎠᎴ ᏱᏙᎤᏂᏴᎭ ᏌᏉ ᏱᎦᏂᏆᏘᎭᏃ ᏐᎢ. ᏝᏍᎩᏂ ᏰᎵ ᎤᏁᎳᏅᎯ ᎠᎴ ᎹᎹᏂ ᎪᎱᏍᏗᏱᏙᎨᏣᏛᏂᏏ. ᎾᎨ ᎢᏴ ᎤᎨᏓᎵᏴ ᏥᏔᎦ ᏥᏂᎦᏪᏍᎪ ᎢᏳᏍᏗ ᏓᏳᏰᏨ. ᎯᎧᏔᎮᎢᏧ, ᎯᎪ ᎢᎦ ᎠᎴᏂᏍᎩ - ᎧᏃᎮᏓᏉ ᏱᎩ - ᏐᏉ ᎢᎦ ᎤᏕᏘᏴᏌᏗᏒ ᎢᏓᎵᎮᎵᏍᏗᏍᎪ ᎢᎪᎯᏓ ᎢᏤᎯ ᏕᏧᎬ. ᎾᏍᎩ ᎹᏓᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎵᏫ ᎤᏪᏥ ᎨᏎᎢ, ᎺᎵᎦᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏣᎾ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᎨᏎᎢ, ᎠᎴ ᏞᏍᏗ ᎩᎶ ᎡᏙᏓ ᎡᏦᏎᎸᎩ ᎠᏂ ᎡᎶᎯ; ᎠᏏᏴᏫᏉᏰᏃ ᎢᏥᏙᏓ, ᎾᏍᎩ ᎦᎸᎳᏗ ᏨᏤᎭ. ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎢᏥᏔᏲᎯᎮᏍᏗ, ᎢᏣᏓᏙᎵᏍᏗᏍᎬᎢ, ᎢᏦᎯᏳᎲᏍᎨᏍᏗ, ᎢᏥᏩᏘᏍᎨᏍᏗ. ᏂᎦᏗᏳᏰᏃ ᏧᏓᎴᏅᏛ ᏚᎳᏍᎬ ᎭᏫᏂᏗᏢ ᎢᎬᏁᎸᎯ. ᎠᏎᏃ, ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎭᏫᏂᏗᏢ ᎢᏯᎬᏁᎸᎯ ᏣᏗᎭ,, ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ ᎾᎦᏠᏯᏍᏛᎾ ᎨᏒ ᎾᏍᎩ Ꮎ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎭᏫᏂᏗᏢ ᎢᏳᏩᏁᎸᎯ. ᎦᎸᎳᏗ ᎢᏣ! ᎣᏂᏃ ᎯᏍᎩᏧᏈ ᎤᎶᏒᏍᏗ ᎢᏯᏂᏛ ᎠᎾᎵᏅᏟ ᎢᏧᎳᎭ ᎬᏩᎪᎮᎢ; ᎾᏍᎩᏃ [ᎬᏩᎪᎲᎯ] ᎤᏟ ᎢᏯᏂᏛ ᎠᎾᎴᏂᏙ ᎠᏏ ᎪᎯ ᎨᏒᎢ, ᎢᎦᏛᏍᎩᏂᏃᏅ ᏚᏂᎵᏅᏨ. ᎤᏛᏐᏅᎯ ᏞᏍᏗ ᏱᎬᏍᎪᎸᏁᏍᏗ, ᎯᏍᏗᏰᏗᏍᎨᏍᏗᏍᎩᏂ ᎠᎦᏴᎵᎨ ᎾᏍᎩᏯᎢ, ᎠᏂᏫᏅᏃ ᎢᏣᏓᏅᏟ ᎾᏍᎩᏯᎢ, ᏌᏩᏂᏃ ᏈᏓ ᏚᏬᎡᎢ. ᏍᎩᏴ ᎤᏒᎯ ᎤᎾᎦᏐᏍᏔᏅᎯ ᎠᏂᏍᎦᏰᎬᏍᏔ. ᎨᎵᎠ ᏰᎵᏉ ᏓᏗᏍᏆᏂᎪᏔᏂ ᎬᏅᎢ ᏫᎵᎻ. ᏥᎷᏏᎵᎻᏃ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎠᏂᏯᏫᏍᎩ ᎿᏉ ᏚᎾᏚᏫᏍᏕᏍᏗ, ᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᎩ ᎤᏲᎢᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎯᏗᏒᎢ. “ᎭᏩ ᎠᎵᎮᎵᎩ ᏓᏆᏙᎠ, ᎤᏛᏁ ᎠᎬᏱ ᎧᏅᏂᏍᎩ. ᏈᏓᏃ ᏚᎴᏅ, ᏚᏍᏆᎸᏔᏁ ᎠᏤᎵᏍᏛ ᏭᎶᏎᎢ; ᎤᏗᏍᏚᏅᏃ ᏚᎪᎮ ᏙᎴᏛ ᏗᏄᏬ ᎤᏁᎳᎩ ᎢᏴᏛ ᏙᎦᏁᎢ, ᎤᏓᏅᏎᏃ ᎠᏍᏆᏂᎪᏍᎨ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᎡᎾᏃ ᎠᎴ ᎦᏱᏆ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᎤᏬᏂᏒᎯ ᎢᎾᎨ ᎤᎷᏤᎴ ᏣᏂ ᏤᎦᎳᏯ ᎤᏪᏥ. ᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᏥᏌ ᎾᏎᎵᏗ ᏧᎶᏎ ᎾᏍᎩ ᎨᎵᎵ ᏥᎦᏚᎭ, ᎠᎴ ᏣᏂ ᎤᏓᏬᎡ ᏦᏓᏂ. ᏐᏉ ᏑᎾᎴ ᏙᏥᏩᏛᏓᏅ ᏓᎳᏚ ᎢᏯᏂ ᎤᎾᎵᏗᎩᏛ ᎬᏂᎨᏒ ᎠᎹᏳᎸᏓ ᎤᏂᎵᏦᏩᏛ, ᏯᏁᎵᏍᎬᎾ ᎤᎾᏗᏍᎦᎶᏗ. ᎥᏝ ᎠᎴ ᎩᎶ ᏳᎵᏍᎪᎸᏓᏁᎴ ᎬᏩᏍᏓᏩᏛᏍᏗᏱ, ᏈᏓ, ᎠᎴ ᏥᎻ, ᎠᎴ ᏣᏂ ᏥᎻ ᏗᎾᏓᏅᏟ ᎤᏅᏒ. ᏄᏛᏁᎰᎾ, ᎤᏍᎦ ᏭᎳᎩᏒ, ᎲᏲᎵᏛ ᏧᏄᏛᏁᎶ ᎢᎦᎦᏓ, ᏰᎵ ᎤᏂᏃᎮᏗ ᎤᏰᎸᏅ. ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏥᏁᎸᏍᎪ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎨᏦᎯᏳᏅᎯ? ᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᎣᎦᏛᎦᏅᎯᎤᏅ ᏱᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎡᎲᎢ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ, ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᏕᏥᎳᏫᎨᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᏕᏣᏓᎦᏘᏗᏍᎨᏍᏗ. ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ; ᎠᎴ ᎾᎱᏍᏕᏒᎾ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ, ᏗᏍᏆᏂᎪᏙᏗᏱᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ. ᎠᏎᏰᏃ ᏅᏩᏍᏕᏍᏗᏉ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎬᏂ ᏂᎦᏛ ᎬᏩᏍᎦᎩ ᏚᎳᏍᎬ ᎭᏫᏂᏗᏢ ᏂᏕᎬᏁᎸᎭ. ᎨᏂᏗ ᎤᏍᏗ ᎢᎬᏓ. ᎢᎦᏛᏃ ᏅᏲᎯ ᎨᏒ ᎤᎳᎨᏯᏛᏤᎢ, ᎾᎿ ᎦᏲᎵᏳ ᎨᏒ ᎦᏓ; ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᏗᎤᎵᏰᏁᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏌᎨᎢᏳ ᎨᏒ ᎦᏓ; ᏩᎶᏏ ᏧᎬ ᎦᎵᏙᎯ ᏂᎦᏪᏍᎬ ᎤᏛᎦᏁ ᏫᎵᎻ ᏃᎴ ᎢᏳᏓᎵᎭ ᎩᎶ ᎠᏍᏚᎲᏍᎬ ᎦᎶᎯᏍᏗ ᎠᏓᏍᏓᏴᏗ. ᎤᏍᏗ ᏛᎦ ᏭᏩᏯᎸᏥᎴ ”ᏏᏆ,” ᎪᏪᎸ ᎾᎥᏂ, ᎩᎳᏈᏴ ᎡᎳᏗ ᏄᏛᏁᎴ, ᎤᏩᏇᏅᏔᏁᎢ ᏛᎦ, ᏫᏥ ᏭᏅᏍᏔᏁᎢ. ᎾᏍᎩᏯᏉ ᏴᏫ ᎤᏪᏥ ᎤᏓᏅᏏᏓᏍᏗᏱ ᏄᏲᎵᎸᎾ ᏥᎩ, ᎠᏥᏅᏏᏓᏍᏗᏱᏉᏍᎩᏂ, ᎠᎴ ᎬᏅᎢ ᎤᎵᏍᎪᎸᏙᏗᏱ ᎤᏂᏣᏘ ᏗᏓᏴᏙᏗ. ᎯᎠᏃ ᎢᏳᎵᏍᏙᏗ ᎤᏛᏁ ᎢᏤ ᎢᏳᏍᏗ ᎠᏍᎦᏯ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏳᏭᏌᎾ ᎤᏁᏝᏅ ᏁᎵᏍᎬᎢ ᏚᏣᏯᎩᏎ ᏃᎴ ᏧᏆᎶᎦ ᏓᏥᎶᏍᏛ ᎠᏍᎦᏯ ᎤᏄᏮᎢ ᏃᎴ ᎤᎦᏔᏃᎴ ᎠᎬᏱ ᏣᎪᏩᏘᏍᎪ ᎤᏬᏒᏅ, ᎤᏍᏆᏂᎪᏎ ᏃᎴ ᎤᎵᎮᎵᏤ. “ᏤᏍᏗ ᏣᏛᏁᎵᎭ!” ᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᏤᎸ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ? ᎠᎴ ᎦᏙ ᏙᏓᎦᏟᎶᏍᏔᏂ? ᎣᏍᏛᏰᏃ ᏡᎬ ᎥᏝ ᎤᏲ ᏯᏓᏛᏍᎪᎢ; ᎠᎴ ᎤᏲ ᏡᎬ ᎥᏝ ᎣᏍᏛ ᏯᏓᏛᏍᎪᎢ. ”ᏏᏆ, ᏏᏆ!” ᎤᏛᏁ ᎰᎻ ᎤᏓᏅᏘ ᎦᏬᏂᏍᎩ, ᏃᎴ ᎤᏍᎦᏃᎵ ᎠᎢᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ, ᎠᎧᏖᏃᎮ, ᏰᎵᏍᎬᎾ ᎤᏤᎸᎮ ᏏᏆ ᎤᏍᏓᏩᏗᏒᎢ. ᏂᎯᏍᎩᏂ ᎢᏨᎨᏳᎢ, ᎤᏣᏘ ᎦᎸᏉᏗᏳ ᎢᏦᎯᏳᏒ ᎢᏣᎵᎫᏍᏛᏗᏍᎬᎢ, ᏓᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎬᏗ ᎢᏣᏙᎵᏍᏗᏍᎬᎢ, ᎠᏁᎵᏍᎬᏉ ᎤᎬᏫᏳ ᎠᏁᎵᏍᎨᏍᏗ, ᏤᏍᏗ ᏥᏳᎪᏗ ᏘᏃᎯᏎᎸ ᎤᏛᏅ. ᎥᏝ ᎠᎴ ᎣᏥᏬᏂᏍᎬ ᎢᎸᎯᏳ ᎠᏎᏉ ᎠᏓᎸᏉᏙᏗ ᎨᏒ ᏲᏨᏗᏍᎨᎢ, ᎾᏍᎩ ᏥᏥᎦᏔᎭ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏲᏨᏗᏍᎨ ᏲᏧᏢᏗᏍᎨ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᎤᏁᎳᏅᎯ ᎠᎦᏔᎯ; ᎾᎥᏂᎨ ᏭᎷᏤᎢ ᏃᎴ ᏚᎦᏙᏍᏔᏁᎢ ᏧᏆᎶᎦ ᏃᎴ ᏧᏍᏗ ᏧᏩᏂᎦᏝᏅ ᏫᏓᏳᎢᏅᏍᎨᎢ ᎠᏔᎴᎦᏒ. ᏚᏯᎨᏤ ᏃᎴ ᏚᎦᎭᎷᏰ, ᎤᏴᏍᏘ ᎫᎵᏍᏔᏅ ᎠᏗᏔᏍᏘ ᏄᏩᏁᎴ, ᎤᏴᏍᏘ ᎠᏗᎧᏓ ᎤᎵᏑᏫᏓ ᎾᎥᏂᎨ. ᎠᏛᎪᏗ ᎾᏂᏪᏍᎬ ᏃᏉ.” ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᏙᏃ ᎥᏝ ᏰᎵ ᎿᏉ ᎦᎬᏍᏓᏩᏛᏍᏗ ᏱᎩ? ᏂᎯ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎡᎳᏗ ᏓᏥᏂ ᎬᏅᎢ. ᏦᎳᏂ ᏗᏦᎯᏍᏙᏗ ᏃᎴ ᏐᏈᎵ ᏧᏔᎾᎶ. ᏧᏍᏆᏴᏍᏗ ᎱᎷᏣ ᎤᎩᏓᏍᏕᎯ ᎤᏲ ᎤᎾᏗᏅᏗ ᎤᏪᏙᎸ, Ꮟ ᎩᎳᎯ ᏚᎷᏫᏍᏔᏁᎮ ᎧᏅᏂᏍᎩ. ᎾᏍᎩ ᏏᎻᏯᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎻᎾᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏓᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᏓᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏕᏫ ᎤᏪᏥ ᎨᏎᎢ, ᎠᏫᏍᎩ ᎤᏫᏒᏎ ᎤᏤᎵ ᎤᎦᏔ; ᎤᏫᏒᏃ ᎢᎦᏛ ᏅᏃᎱᎶᏗ ᎤᎳᎨᏯᏛᏤᎢ; ᎤᎾᎳᏍᏓᎡᎴᏃ ᎠᎴ ᏥᏍᏆ ᎦᎳᏅᏛ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᎪᏁᎢ. ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏂᏚᏳᎪᏛᎾ ᎢᎬᏩᏛᏁᏗ ᏱᎩ ᎾᏍᎩ ᎤᏩᎨᏫᏍᏗᏱ ᏕᏥᎸᏫᏍᏓᏁᎸ ᎠᎴ ᎬᏂᎨᏒ ᏂᏨᏁᎸ ᎢᏥᎨᏳᏒ ᏕᎤᏙᎥᎢ. ᎾᏍᎩ ᏕᏥᏍᏕᎲᎯᏙᎸ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎠᏏᏉ ᏕᏥᏍᏕᎵᏍᎬᎢ. ᎤᏛᎦᏁ ᏗᎾᎢᏒ ᏫᎵᎻ ᏚᎴᏁ. ᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏅᏏᏛ, ᎤᏁᎳᏅᎯ ᎤᏪᏂᎯᏍᏗ ᎨᏒ ᎦᏬᏂᎭ; ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎤᏟᎶᏛᏉ ᎠᏓᏅᏙ ᏳᏁᎭ. ᎠᏎᏃ ᏔᎵᎭ ᎠᎴ ᏦᎢᎭ ᎭᎾᏉ ᎠᎾᏁᎳᏗᏍᎨ ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏂᎦᏛ ᏴᏫ, ᎬᏩᎪᎲ, ᎤᏣᏘ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎬᏩᏗᏝᎣᎮᎸᏃ ᎬᏩᏲᎵᎴᎢ. ᎾᏍᎩᏯᏃ ᎲᏂᏗᏳ ᎨᏒ ᏥᏣᏍᏆᏂᎪᏔᏅ ᎠᏆᏤᎵ ᎧᏃᎮᏛ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎠᏴ ᏓᎬᏍᏆᏂᎪᏔᏂ ᏓᎬᏳᏓᎴᏏ ᎾᎯᏳ ᎤᏓᎪᎵᏰᏗ ᎨᏒ ᎠᏍᏆᎸᎲᎭ, ᎡᎳᏂᎬ ᎤᏂᎷᏤᏗ ᏥᎩ, ᎤᏂᎪᎵᏰᏗᏱ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᏁᎭ. ᎠᎦᏗᏓ ᎯᏢᏅ, ᏃᎴ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ. ᎾᏍᎩᏯ ᎯᎢᎾ ᎢᏗᎦᏘ ᏕᏈᎬ ᏧᏔᏂᎩᏓ. ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᏴᏫ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎠᎵᏍᎪᎸᏗᏍᎬ ᎾᏍᏉ ᎤᏩᏒ ᎤᎵᏍᏕᎸᏙᏗ ᎠᏎ ᎤᎵᏍᎪᎸᏙᏗ ᎨᏐᎢ, ᎠᏍᎦᏂ ᎤᎬᏩᎵ ᎨᏒᎢ. ᎥᎦᎷᎩᏃ ᎤᏪᏅᏒ ᏫᏓᏯᏂᏍᎪ ᏧᎵᎢ ᎠᎴ ᎾᎥ ᎢᏳᎾᏓᎳ, ᎯᎠ ᏂᏕᎦᏪᏎᎰᎢ, ᎢᏧᎳᎭ ᎢᏓᎵᎮᎵᎩ; ᎢᏥᏩᏛᎲᏰᏃ ᎤᏃᏕᎾ ᏣᎩᏲᎱᏎᎲᎩ. ᎤᏬᏚᏨ ᎤᏓᏏᏂᏕᎾ.” ᎬᏩᏟᏍᏗ; ᎥᎥ, ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᎧᏁᎩ ᎨᏎᏍᏗ, ᎾᏂᎥᏃ ᏴᏫ ᎠᏂᏰᎪᎩ ᎨᏎᏍᏗ; ᎾᏍᎩᏯ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎾᏍᎩ ᏂᏍᎦᏅᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎯᏁᎬᎢ, ᎠᎴ ᏣᏓᏎᎪᎩᏍᏗᏱ ᎿᏉ ᏕᎱᎪᏔᏅᎭ. ᎠᎴ ᏫᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏬᏓᎸ ᏗᎧᏃᏗᏱ ᏐᏈᎵ ᏫᏥᎪᎥᎩ; ᎠᎴ ᎾᎿ ᎤᎩᎵ ᎠᏲᎱᎯᏍᏗ ᏚᏙᎥᎩ, ᎠᎴ ᏨᏍᎩᏃ ᎤᏍᏓᏩᏗᏒᎩ; ᎠᎴ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎾᏍᎩ ᏅᎩ ᎢᎦᏛᎯ ᎨᏒ ᎡᎶᎯ ᎾᏍᎩ ᏌᏉ ᏄᏓᎥ ᎾᎿ ᏧᏂᎯᏍᏗᏱ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎬᏗ, ᎠᎴ ᎠᎪᏄ ᎬᏗ, ᎠᎴ ᎥᎫᎩ ᎬᏗ, ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ ᎤᏂᏍᎦᏎᏗ ᏗᎬᏗ. ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎤᎾᎩᎶᏫᏎ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᏃᎴ ᏚᎾᎾᏏᏁᎢ. ᏰᎵᏉ ᏱᎩ ᎠᏆᏟᏃᎮᏔᏁᎢ ᎦᎾᏌᎢ ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏛᎦᎾ, ᎨᏍᏗ ᏯᏆᏛᎦᏍᏕᎢ. ᎢᏳᏍᎩᏂ ᎠᏴ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏱᎬᏗ ᎠᏂᏍᎩᎾ ᏱᏗᏥᏄᎪᏫᏍᎦ, ᎿᏉᏍᎩᏂ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏥᎷᏤᎸ. ᎤᎵᏍᏇᏚᏩᎩᏎ ᎰᎻ ᏃᎴ ᎡᎳᏗ ᏄᏩᏁᎴᎢ ᎠᏍᎪᎵ. ᎠᎴ ᎦᏙ ᏯᏛᎶ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ ᎦᏁᎸ ᏯᏴᎭ ᎠᎴ ᎤᎿᎥ ᏯᏬᏅ, ᎢᏳᏃ ᎢᎬᏱ ᏄᎸᎸᎾ ᏱᎩ ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ? ᎩᎳ ᎿᏉ ᏯᏬᏅ ᎦᏁᎸᎢ ᎤᎿᎥᎢ. ᏎᎦᏨ ᏚᏓᎩᏰᎢ. ᎥᏝ ᏱᎨᏥᏩᏛ ᏅᏓᏳᎾᏨᏛ ᎤᏁᎳᏅᎯ ᎠᏂᎸᏉᏗᏍᎩ, ᎯᎠ ᏅᏩᏓᎴ ᏴᏫ ᎤᏩᏒ. ᏯᏆᏚᎳᏃ ᏂᎯ ᏣᎩᏍᏗ ᎢᎬᏱᏃ ᏒᎦᏔ. ᎢᏧᎳ ᎤᏂᎪᎵᏰᎡ ᎣᎳ ᏗᎦᏃᏣᏟ. ᎥᏝᏃ ᏰᎵ ᎬᏩᏂᎭᎷᎩᏍᏗ ᏱᎨᏎ ᎠᏏᎾᏌᏅ ᎠᎴ ᎠᏓᏅᏙ ᏕᎬᏗᏍᎬ ᎦᏬᏂᏍᎬᎢ. ᎤᏬᏑᎶᏨᎯ ᎠᎦᏎᏍᏗ ᎨᏎᏍᏗ ᎢᏳᏃ ᏑᏓᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎶᏒᏍᏕᏍᏗ, ᏌᏉᏉ ᎠᏍᎦᏯ ᎤᎾᏁᎳᏛᎯ ᎨᏎᏍᏗ. ᎠᏃᏍᏓᏍᎪ ᏗᎦᏯᎩᏍᏗ?” ᎠᎴ ᏣᏂ ᎤᏃᎮᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎠᎩᎪᎲᎩ ᎠᏓᏅᏙ ᏧᎴ-ᏗᏍᎪᏂᎯ ᎾᏍᎩᏯ ᏓᏳᏁᏡᏅᎩ ᎦᎸᎳᏗ, ᎠᎴ ᎾᏍᎩ ᏚᎩᎸᏨᎩ. ᎠᏂᎶᏍᎩᏃ ᎦᎬᏩᏐᏢᏗᏍᎨᎢ, ᎠᎴ ᏓᎾᎵᏍᏛᏂᎮ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, Ᏺ, ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎯᏲᏍᏗᏍᎩ, ᎠᎴ ᏦᎢᏉᏉ ᎢᎦ ᎯᏱᎵᏙᎯ ᎭᏁᏍᎨᏍᎩ, ᎠᎴ ᏦᎢ ᎢᏯᏂᏛ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ ᎦᏥᎪᎥᎩ ᏩᎶᏏ ᏗᎾᏤᎵᏛ, ᎢᎾᏛ ᎠᎰᎵ ᏓᏳᏂᏄᎪᏨᎩ, ᎠᎴ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎰᎵ, ᎠᎴ ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎠᎰᎵ. ᎠᎴ ᏛᏂᎾᏄᎪᏥ, ᎾᏍᎩ ᎾᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎬᏂᏛ ᎨᏒ ᏫᏙᏛᎾᎴᏔᏂ, ᎤᏲᏃ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎤᏓᏍᏛᏗᏍᏗ ᎨᏒ ᏫᏙᏛᎾᎴᏔᏂ. ᏐᏉ ᎢᎦ, ᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏧᎾᏗᏔᏍᏗ ᏙᏍᏔᏗᏔᏍᎬ, ᎤᏕᎶᎰᏒ Crockett ᎪᏪᎵ ᎪᏪᎸ ᏓᏂᎦᏘᎴᎬ. ᎤᏍᎦᏃᎵ ᎠᏓᏏᏎ ᏣᎵ, ᎡᎳᏗ ᏄᏛᎾᏗᏎ ᎤᎭᏲᎲ ᎤᎶᏒ. ᎠᏍᎦᎢᎮ ᎤᏍᏗ ᎠᏣᏗ ᎠᏎᏃ ᎾᎥᏂ ᏭᎷᏤ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥ ᎠᏣᏗ ᏂᎯ ᎢᏳᏍᏗ. ᏫᏥᏌᏙᏯ!” ᎾᏍᎩ ᏦᏏ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᎵᎡᏌ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏦᎵᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏓᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᎳᏱᎩᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎠᏤ ᎪᎨᏱ ᎠᎾᏕᎲᏍᎨᎢ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ ᎠᏂᏐ ᏱᏚᎾᏛᏌ. ᎿᏉᏃ ᎬᏂᏳᏉ ᏥᎦᏔᎭ ᏂᎯ ᏂᏥᎥᎢ, ᎢᏨᏰᎳᏗᏙᎸᎯ ᎦᎵᏥᏙᎲᏍᎬ ᏥᏃᎮᏍᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ, ᎠᏆᎧᏛ ᎿᏉ ᎢᏥᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏣᎦᏟᎶᏍᏔᏅᎯ ᎨᏒᎢ, ᎥᏝ ᎦᏓᎾᏌᎲᏍᎦ ᏰᎵᏍᎨ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏄᏍᏛ ᏄᏛᏅᎢ. “ᎾᏍᎩ ᏧᏍᏆᏴᏍᏗ ᏛᏥᏍᏕᎸᎯ ᏔᎵᏁᎢ? ᎡᎶᏛᏃ ᏚᏔᎳᏬᎯᏎᎴ ᏓᏯ ᎠᎴ ᏌᏙᏂ ᎠᏁᎯ; ᎠᏎᏃ ᏌᏉ ᎢᎦᎦᏛ ᎬᏩᎷᏤᎴᎢ, ᎤᎾᎵᎢᏛᏃ ᏆᎳᏍᏓ ᎤᎬᏫᏳᎯ ᎤᏂᏏᏗᏱ ᎠᏥᎦᏘᏗᏍᏗ, ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ ᎤᏂᏔᏲᏎᎴᎢ; ᎤᎾᏤᎵᎪᎯᏰᏃ ᎤᎵᏍᏕᎸᏙᏕ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎪᎯ. ᎤᏚᎢᏍᏔᏁᎴ ᏫᎵᎻ ᎤᏍᏆᏂᎪᏙᏗ ᎬᏅᎢ, ᏚᏭᎪᏔᏁᎢ ᏄᏪᏒ ᎢᏳᏛᏁᏗ. ᎠᏛᎯᏍᏗᏍᎩ ᎢᎾᏙ ᏓᏳᏓᎴᏅ ᎦᏓ ᏂᎦᎵᏍᏗᎭ. ᎦᎶᏁᏛᏰᏃ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᎴᏉ ᏄᏲᎱᏒᎩ, ᎾᏍᏆᏂᎪᏗᏍᎬᎾ ᎬᏅᎢ, ᎾᏍᎩ ᎤᏍᏆᏗᏍᏗᏱ ᎦᎷᎶᎬ ᎠᏆᎵᏍᏕᎸᏙᏗ ᎢᏥᏅᎢ. ᎠᎴ ᎤᎲᎩ ᎬᏃᏛ ᎢᏳᏩᏁᏗᏱ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎾᏍᎩ ᎬᏩᏬᏂᎯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏗᎨᏥᎢᏍᏗᏱ ᎾᏂᎥ ᎾᎾᏓᏙᎵᏍᏓᏁᎲᎾ ᎾᏍᎩ Ꮎ ᏅᎩᏗᎦᏅᏌᏗ ᏣᎦᏟᎶᏍᏔᏅᎯ. ᎠᏦᎭᏴ ᎾᎥᏂ ᎤᏂᎾᏕᎨ ᏗᏂᎦᏘᏕᎯ ᎨᏥᎩᎡᎸ ᎦᎾᏏᏅᏍᏗ ᎧᏁᏌ ᎢᎪᎯᏛ. ᏗᎨᏛ ᎢᏗᏢ ᏕᎦᎵᏍᏆᎵᎭ ᎠᏌᏍᏛ ᏗᎩᏂᏴᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎠᏓᏯᏅᏙᏗ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎠᎬᏗᏍᎬᎢ. ᎤᏲᏨ ᏂᎦᏓ ᎠᎪᏨ, ᎤᏛᏅ. Ꮟ ᏯᎾᏂᎩᏍᎬᎾ ᏐᏉ ᎢᏳᏩᎬᏗ ᏚᎧᎾᏁ ᏫᎵᎻ ᎰᎻ. ᎠᏥᎦᏘᏗᏍᏗ ᎠᏗᎾ ᎠᏎ ᎪᎱᏍᏗ ᎾᏍᎦᏅᎾ ᎨᏎᏍᏗ, ᏌᏉᏉ ᎠᏓᏰᎮᏍᏗ, ᎨᏯᏔᎯ, ᎤᎵᏏᎾᎯᏍᏗ, ᎣᏍᏛ ᏧᎸᏫᏍᏓᏁᎯ, ᏧᏓᏓᏂᎸᏣᏘ, ᏗᎬᏩᏕᏲᏗ; ᎩᎶᏰᏃ ᎤᏩᏒ ᎠᏓᏌᎳᏗᏍᎨᏍᏗ ᎡᎳᏗ ᎢᏯᎬᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏩᏒ ᎡᎳᏗ ᎾᏓᏛᏁᎮᏍᏗ ᎾᏍᎩ ᎠᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ. ᏥᎨᏳᎢ ᏍᎩᎾ ᎤᏛᏐᏅ ᏃᎴ ᏁᎵᏍᎬ ᎢᏥᏯᏛᎭᏁᏗ, ᏃᎴ ᎠᏉᎯᏳᎲ ᏲᎾ ᏧᏤᎵ ᎠᏂᏴᏫ ᎠᏁᎵᏍᎬᏉ ᎤᎾᏓᏘ, ᎾᏍᎩᏯ ᎠᏂᏐ ᎠᏂᏴᏫ. ᎤᎾᎴᏅᎮᏃ ᏚᎾᏓᏛᏛᏁ ᎤᏅᏒ ᎨᏒ, ᎾᏍᎩ ᏅᏗᏛᏁᎵᏒ ᎯᎠ. ᎢᎸᏍᎩᏃ ᏄᏬᎯᏨ ᎤᏁᏙᎸ, ᏅᏩᏙᎯᏯᏛ ᏕᎬᏩᏂᏲᏎ ᎠᎾᏓᏅᏟ ᎨᏥᏅᏏᏛ ᏗᏁᎲ ᏭᏂᎶᎯᏍᏗᏱ. ᎢᏣᏓᏙᎵᏍᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᏙᏗᎧᏂᏍᎬᎢ, ᎾᏍᎩᏃ ᏓᏥᏌᎳᏓᏂ. ᎤᏣᏘᏃ ᎢᏨᎨᏳᏒ ᎢᏳᏍᏗ, ᎣᎦᏝᏴᏉ ᏗᏨᏲᎯᏎᏗᏱ ᎥᏝ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏩᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᏉᏍᎩᏂ ᎣᎬᏒ ᏙᏨᏅᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ. ᏦᎳᏂ ᏙᏱ ᏫᏓᎧᎭᏅ ᎠᏓᏅᏖᏍᎬ, ᎩᎳᏈᏴ ᎤᏬᏂᏒ. ᏥᎨᏥᏍᏚᎮ ᎠᏂᏴᏫᏯ, Cooper ᏚᎾᏗᏅᏎᎴ ᎤᏲ ᎠᏓᏴᏍᏔᎩᏍᎩ, ᎦᎸᎳᏗ ᏚᎬᏩᏝᏁ, ᎾᏍᎩᏯ ᏳᏩᏁᎦ ᏣᏈᏱᏍᎪ ᏗᎦᏓᎸᏅᎯ ᏔᎾᏏ ᏫᏍᎩ. ᎢᏧᎳ ᎠᏂᎦᏓᎭ ᏃᎴ ᏗᏂᎴᏴᏍᎩ ᎨᏎᎢ. ᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏓᏍᏕᎵᏍᎩ ᎾᏂᎥ ᏴᏫ ᎤᏂᎾᏄᎪᏤᎸ, ᎢᏯᎾᏛᏁ ᎤᏂᎬᏫᏳᎯ ᏃᎴ ᎢᎦᏓ ᎠᏂᏳᏩᏁᎦ ᎤᎾᏓᏑᏴ, ᏓᏂᏙᎵᎬ ᎠᎴ ᎤᎾᏤᎸᎲᏉ, ᎠᏂᏌᏙᏴᏍᎦ ᎠᏧᏔᏅ ᏄᏍᏛ ᎤᎾᏚᎵᏍᎬ ᎠᏂᏩᏥᏂ. ᎦᏚᎲᏃ ᎾᏎᎵᏗ ᏧᏙᎢᏛ ᏭᎷᏨ ᎾᎿ ᎡᎮᎢ. ᎾᏍᎩᏃ ᎤᏙᎯᏳᏁ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏂᏁᏤᎢ, ᎾᏎᎵᏗ ᎡᎯ ᎠᎪᏎᎮᏍᏗ, ᏧᎾᏛᏁᎢ. ᎤᏕᎶᎰᏎ ᎪᎱᏍᏗ ᎤᎵᏍᏔᏁᎲ ᏏᏆ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎾᏍᎩ, ᏔᎴᎲᎦ, ᎠᎴ ᏥᎮᎾ; ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ. ᎠᏴ ᎠᏆᏓᎨᏳᏗ ᎨᏒ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ, ᏥᏌ ᎦᎶᏁᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎡᎺᏅ. ᎾᎿ ᎤᎷᏤ ᎠᎨᏴ ᏌᎺᎵᏱ ᎡᎯ ᎠᎹ ᎤᏢᎯᎴᎢ; ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏆᏗᏔᏍᏗ ᏍᎩᏁᎲᏏ. ᎣᎦᏕᏯᏙᏗᎭ ᎬᏩᏚᏫᏛᏉ, ᎠᏎᏃ ᎥᏝ ᏲᎩᎩᎸᏍᎦ; ᎤᏪᎵᎯᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎦ, ᎠᏎᏃ ᎥᏝ ᎣᎦᎵᎲᏲᎵᎸᎯ ᏱᎩ; ᎤᏍᏗ ᎠᏴᏈᏛᏗ ᎦᏍᎩᎸ ᏕᎪᏪᎵᏍᎬ ᎧᏃᎮᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ, ᏧᎳᏏᏕᏂ ᎾᎥᏂ ᎦᎳᎨᏴ ᏧᏩᏂᎦᎸᏅ ᎪᏪᎵ. Ꮎ-ᏍᎩᏂ [ᎤᏁᎳᏅᎯ] ᏗᏂᎦᏘᎴᎩ ᏥᎩ, ᎠᎴ ᎾᏃᎯᏳᎲᏍᎬᎾ ᏥᎩ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏂᏚᏳᎪᏛᎾᏍᎩᏂ ᎨᏒ ᎠᏃᎯᏳᎲᏍᎩ ᏥᎩ; ᎤᏔᎳᏬᎯᏍᏗ ᎠᎴ ᎤᎿᎸᎯ ᎨᏒ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏥᏚᏅᏎ ᏧᏅᏏᏓᏍᏗ ᏧᏂᏯᏅᎲᏍᏗᏱ ᏫᎨᏥᏯᏅᏛ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎤᏂᎷᎯᏍᏗᏱ; ᎠᏎᏃ ᏗᎤᏂᏳᎸᏁᏉ ᏅᏓᏳᏁᏅᏍᏗᏱ. ᏤᎦᏈ ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬᎢ, ᎿᏉ ᎠᎰᎱᏍᎨᎢ ᎣᏍᏛ ᏚᏁᏤᎴ ᎢᏧᎳ ᏦᏩ ᏧᏪᏥ; ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁ ᎤᏙᎳᏅᏍᏗᏱ ᎤᏍᎪᎵ [ᎤᎵᏍᏕᎸᏕᎢ.] ᏥᏳᏃ ᎿᏉ ᎠᏰᎵ ᎥᏓᎵ ᏩᏂᏂᏒᎩ ᎤᏝᏗᏍᏔᏂᏙᎲ ᎠᎹ ᏓᎵᏍᏗᎳᏁᎬᎢ, ᎤᏃᎴᏰᏃ ᎢᎬᏱᏢ ᏓᏳᎦᏛᎩ. ᏏᏆ ᎠᏍᏚᏗ ᏭᎷᏣ ᎰᎻ, ᎠᏦᏴ ᎭᏫᏂ ᏭᏴᎴ, ᎠᏯᏖᎾ ᎤᏣᏅᏕᎢ ᏭᏴᏍᏗ ᏫᎵᎻ. ᏗᎦᏘᏍᏗᎦᏰᏌᏗ ᎪᎰᏍᏘ ᎤᏍᎦᏎᏗ. ᎢᏳᏃ ᎩᎶ ᏂᎯ ᎢᏤᎲ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏂᎬᎨᏍᏗ, ᎤᏁᎳᏅᎯ ᎠᏔᏲᏎᎮᏍᏗ, ᎾᏍᎩ ᎾᏂᎥ ᏄᎵᏏᏅᏛᎾ ᏗᏁᎯᏥᎩ, ᎠᎴ ᏂᏓᏍᎦᎬᎾ ᏥᎩ; ᎠᎴ ᎠᏎ ᎠᏥᏁᏗ ᎨᏎᏍᏗ. ᎢᏳᏰᏃ ᎠᎨᏴ ᏄᎵᏍᏚᎸᎾ ᏱᎩ, ᎾᏍᏉ ᎠᏥᏍᏙᏰᏍᎨᏍᏗ; ᎢᏳᏍᎩᏂ ᎤᏕᎰᎯᏍᏗᏳ ᏱᎩ ᎠᎨᏴ ᏗᎵᏍᏙᏰᏗ ᎠᎴ ᎠᎵᏍᏙᏰᏗ ᎤᏮᏙᏗᏱ ᎤᎵᏍᏙᏰᏗᏱ, ᎬᏩᎵᏍᏚᎴᏍᏗᏉ. ”ᏌᎳᏓ?” ᎤᏛᏁ. ᏝᏍᎪ ᏂᎯ ᏱᎩ Ꮎ ᎢᏥᏈᏱ ᏤᎲᎩ, ᎢᎸᎯᏳ ᎤᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏗᏱ ᏥᏄᏩᏁᎸᎩ, ᎠᎴ ᏥᏚᏘᎿᏫᏛᎲᎩ ᎢᎾᎨ ᏥᏫᏚᏘᏅᏍᏔᏅᎩ ᏅᎩ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᏴᏫ ᏗᏂᎯᎯ? ᎩᎶᏃ ᎤᏟ ᏄᎨᏳᏎᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᎡᏍᎦᏉ ᎠᏴ ᎾᎩᎨᏳᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎾᏍᎩ ᎠᏴ ᎠᏆᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ. ᎩᎶᏃ ᎤᏟ ᏄᎨᏳᏎᏍᏗ ᎤᏪᏥ ᎠᏍᎦᏯ ᎠᎴ ᎤᏪᏥ ᎠᎨᏴ ᎡᏍᎦᏉ ᎠᏴ ᎾᎩᎨᏳᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎾᏍᎩ ᎠᏴ ᎠᏆᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏣᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎢᏣᏗᏔᏍᏗᏱ ᎠᎩᏍᎩᎸ ᎾᎿ ᎠᎩᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᎢᏣᏅᏗᏱ ᎤᏂᎬᏫᏳᎯ ᏧᏂᏗᏱ ᏕᎦᏍᎩᎸᎢ, ᏗᏧᎪᏓᏁᏗᏱ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ. ᏰᎵ ᏧᏕᏘᏴᏓ ᎤᏒᎯ ᎢᎪᎯᏓ ᎣᏍᏓᏓᏅᏖᏍᎬ ᎠᎬᏱ ᎤᏩᎦᏘᏗᏒᎢ - ᎣᎩᏂᏚᎩ ᏃᎴ ᎣᎩᎾᏓᏅᏖᏗᏍᎬ, ᎣᎩᏃᎯᏳᏅ ᎣᎩᎾᏧᏙᏗᏂ ᎠᏂᏰᎵᏒ, ᎨᏍᏗ ᏯᏃᎵᎨ ᎠᏂᏴᏫ ᏱᏄᎵᏍᏔᎾ, ᎤᏂᏲᎰᏎᏗᏉ ᎠᏁᎲ. ᎯᎠᏍᎩᏂ ᏂᏥᏪᎭ, ᎢᏓᎵᏅᏟ, ᎪᎯ ᎨᏒ ᎤᏍᏆᎳᎯᏳ; ᎯᎠᏉᏃ ᏄᏍᏗ ᎠᎵᏃᎯᏯᎭ, ᎾᏍᎩ ᏧᎾᏓᎵ ᏥᎩ, ᏧᎾᏓᎵᏉ ᏂᎨᏒᎾ ᏥᎨᏐ ᎢᏳᏍᏗ ᎨᏎᏍᏗ, ᏚᏰᎵᎯᏍᏔᏅᏃ, ᎣᏓᎸ ᏭᎶᏎ ᎤᏓᏙᎵᏍᏔᏅᏎᎢ. ᏌᎵᎹᏃ ᏉᏏ ᎤᏕᏁᎴᎢ ᎴᎭᏫ ᎤᎾᎸᎪᏫᏎᎢ; ᏉᏏᏃ ᎣᏇᏗ ᎤᏕᏁᎴᎢ ᎷᏏ ᎤᎾᏄᎪᏫᏎᎢ; ᎣᏇᏗᏃ ᏤᏏ ᎤᏕᏁᎴᎢ; ”Ꭳ, ᎭᏕᏬ,” ᎤᏛᏁ ᎰᎻ. ᎦᎵᏉᎩᏁᏍᎩᏂ ᏗᎧᎿᏩᏗᏙᎯ ᎧᏁᏨᎭ ᎢᏳᎢ, ᎿᏉ ᎠᎴᏅᎲᎭ ᎠᏤᎷᎯᏒᎭ, ᎤᏕᎵᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸ ᏧᏅᏏᏓᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ. ᏞᏍᏗ ᏱᏗᏥᎸᏫᏍᏓᏁᎮᏍᏗ ᎢᏥᏩᏛᏗᏱ ᎠᎵᏍᏓᏴᏗ ᎠᏲᎵ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᎵᏍᏓᏴᏗ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏗᎨᏒᎢ ᎢᎬᏂᏛ ᏥᎩ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎢᏥᏁᏗ ᏥᎩ, ᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨ ᎤᏍᏓᏱᏛ. ᎤᏁᎳᏅᎯᏰᏃ ᎠᎦᏴᎵᎨ ᎤᎵᏍᎪᎸᏓᏁᎸᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎢᎦᏚᎸᏌᏛᎢ, ᎾᎯᏳ ᎧᏁᎬ ᏧᎷᏤᎸ ᎤᏣᏘ ᎦᎸᏉᏗᏳ ᎢᎦ-ᏚᎸᏌᏛ ᏅᏓᏳᏓᎴᎤᎯ, [ᎯᎠ ᏥᏂᎦᏪᏍᎬᎩ,] ᎯᎠ ᏥᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎣᏏᏳ ᏥᏰᎸᎢ ᏥᎩ. ᏕᎪᏯᏛ ᏚᎵᎥᏂᏍᏔᏁ ᎬᏂᎨᏒ ᏂᎬᏁᎲ ᏄᏟᏂᎬᎬ. ᎿᏉᏃ ᏆᎳᏆ ᏕᎤᏲᎯᏎᎴᎢ; ᎤᎵᎥᏃᏅᏃ ᏥᏌ ᏚᏲᏎ ᎠᎦᏛᏗᏱ. ᎩᏟᏃ ᏂᎬᏩᏍᏛ ᎤᏍᎦᏎᏗ ᏂᎦᏪᏍᎬ ᏓᏑᏫᏍᎬᎢ. ᎠᎴ ᎢᏨᏲᏎᎭ, ᎢᏣᎵᎢᏓ ᎤᏓᎵᏓᏍᏗ ᎨᏅᎢᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎡᏍᎦ ᏂᏣᎵᏍᏓᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏩᏕᏗᏱ ᎨᏒ ᎦᎨᏣᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ. ᎡᎳᏗ ᏂᎦᎵᏍᏗ ᏣᏑᎶ.” “ᏙᎢᏳᏍᏗ ᎤᏧᏗᎭ?” ᎤᏛᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎬ. ᎠᎴ ᏚᏑᏰᏎ ᏔᎳᏚ ᎢᏯᏂᏛ, ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏓᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏧᏅᏍᏗᏱ ᎤᎾᎵᏥᎽᏂᏓᏍᏗᏱ, ᏂᎯᏍᎩᏂ ᎢᏨᏲᏎᎭ, ᎠᎴ ᎠᏂᏐᎢ ᏓᏱᏓᎵ ᎠᏁᎯ, ᎾᏍᎩ ᎾᏂᎥ ᎯᎠ ᏗᏕᏲᏗ ᎨᏒ ᏄᏂᎲᎾ, ᎠᎴ ᎾᏍᎩ ᏄᏂᎦᏙᎥᏒᎾ ᎾᎭᏫᏂᏴ ᏎᏓᏂ ᎤᏤᎵᎦ, ᏣᎾᏗᎭ; ᎥᏝ ᏅᏩᏓᎴ ᎦᎨᏛ ᏴᎨᏨᏐᏈᎸᎦ; ᏩᎭᏯᏃ, “ᎭᏩ,” ᎤᏛᎮ ᏎᎦᏨ. ᎠᎹᏳᎸᏓ ᏅᏲ ᏙᏍᏗᎾᏩᏕᎬ ᎢᎦ, ᎠᎦᎵᏍᎬ ᏙᎩᏂᎴᏴᏗᏍᎬ ᏦᏍᏗᏆᎵ ᎾᏍᎩᏯ ᎡᏘ ᏥᎨᏒ. Ꭰ-ᏍᎩᏂ ᎢᏗᏢ, ᎤᏂᎪᎲ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ [ᎤᎾᏛᎪᏗᏱ] ᎠᏴ ᎥᏆᎨᏅᏛᎢ, ᎾᏍᎩᏯ ᏗᎨᏥᏅᏍᏕᏎᎸᎯ [ᎤᎾᏛᎪᏗᏱ] ᎣᏍᏛ ᎧᏃᎮᏛ ᏈᏓ ᏣᎦᎨᏅᏕᎢ; (ᎾᏍᎩᏂ ᏈᏓ ᎤᎵᏂᎩᏛ ᎢᏳᏩᏁᎯ ᎠᏥᏅᏏᏛ ᎨᏒ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏁᏤᎵᎦ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏴ ᎠᏆᎵᏂᎩᏛ ᎾᏋᏁᎲᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏕᏥᏯᎵᏥᏙᏁᎲᎢ;) ᎠᏏᏴᏫᏰᏃ ᎯᎠ ᏥᏂᎦᏪᏍᎪᎢ, ᎠᏴ ᏉᎳ ᏥᏯᎵᎪᏁᎯ, ᏅᏩᏓᎴᏃ, ᎠᏴ ᎠᏉᎳ ᏥᏯᎵᎪᏁᎯ; ᏝᏍᎪ ᎤᏇᏓᎵ ᏗᏣᏘᏂᏙᎯ ᏱᎩ? ᎾᏍᎩ ᎤᏁᎳᏅᎯ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᎵᎦ, ᎠᎦᏴᎵᎨ ᎦᎸᏉᏗᏳ ᏥᎩ, ᎾᏍᎩ ᎢᏥᏁᏗᏱ ᎠᏓᏅᏙ ᎠᎦᏙᎥᎯᏍᏙᏗ ᎠᎴ ᎠᏓᎾᏄᎪᏫᏎᎯ, ᎾᏍᎩ ᎤᏩᏒ ᎡᏥᎦᏙᎥᎯᏍᏗᏱ; ᏧᏬᏰᏂ ᎢᎬᏓ ᎤᏬᏛ ᏣᎵ, ᎤᎴᏅ ᎬᏓᎶᏍᎬ ᎦᏓ ᎬᏘ ᎤᏭᏌᏅ, ᎦᏅᏍᏘ ᎠᎹ ᎬᏘ ᎬᏓᎳᏗᏍᏗ. ᎦᏓᏅᏖᏍᎬᏰᏃ ᎯᎠ ᎾᏍᎩ ᎪᎯ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎥᏝ ᏗᎬᏟᎶᏍᏙᏗ ᏱᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎾᏍᎩ ᎡᎩᎾᏄᎪᏫᏎᏗ ᎨᏒᎢ. ᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎸ ᎠᏍᎦᏯ; ᎭᏙᏯᏅᎯᏓ; ᎤᏙᏯᏅᎯᎩᏃ. ᎠᎴ ᎤᏗᏩᏒᎩ, ᎾᏍᎩᏯ ᏐᎢ ᏄᏍᏛ ᏄᎵᏍᏔᏅᎩ. ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎬᏩᏱᎵᏙᎸ ᎥᏝ ᏳᏁᏤᎢ. ᎠᎴ ᎾᏍᏉ ᎠᎾᎵᏍᏕᎵᏍᎩᏉ ᎨᏎᏍᏗ ᎾᏍᎩ ᏂᏙᏓᏳᏅᏏᏛ ᎤᎬᏫᏳᎯ ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎨᏥᎸᏉᏙᏗᏱ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ. ᏣᎦᏎᏍᏕᏍᏗ ᎾᏛᏁᎲᎢ, ᎯᏔᎷᎩᏍᎩ, ᏪᏣᏌᏙᏴᎵ “ᎭᏂ ᎣᏁᎯ,” ᏧᏁᏤᎢ. ᎠᏂᏔᎵᏃ ᏚᏂᎧᏁᎢ, ᏦᏩ ᏆᏏᏆ ᏧᏙᎢᏛ, ᏣᏍᏓ ᏣᎪᏎᎰᎢ, ᎹᏓᏯᏃ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᎦᏅᎨᎢ ᏗᎾᎵᏍᏓᏴᏂᏎᎢ, ᎦᏚ ᎤᎩᏒ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᎤᎬᎭᎷᏴ ᏚᏁᎴᎢ. ᎪᎱᏍᏗᏗᏍ ᎢᏳᏍᏗ ᎠᏆᏍᏓᏩᏗᏒ ᎠᏆᏕᎳᎰᏒ. ᏥᎦᏂᎦᏔ. ᎬᏂᏳᏉᏃ ᎠᏂᏔᎵ ᏗᏂᎨᏫ ᎤᏃᎱᎶᏗ ᏚᏃᎸᎩ, ᎤᎾᏛᎦᏅᏃ ᏥᏌ ᎤᎶᏒᎢ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏍᎩᏂᏙᎵᎩ, ᏣᎬᏫᏳᎯ ᏕᏫ ᎤᏪᏥ. ᎤᏟᏍᏓ ᏧᏍᏆᏴᏍᏗ!” ᎠᏳᎾᎦᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴ ᏈᎵᎩ; ᎦᎪ ᎧᏃᎮᎭ ᎠᏙᎴᎰᏍᎩ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏪᏎ? ᎤᏩᏒᏍᎪ, ᏅᏩᏓᎴᎨ ᎩᎶᎢ? ᎡᏥᏂᏌᏅ ᎾᏍᎩ ᎠᏥᏂᏌᏅ ᏗᏓᏬᏍᏗ ᎨᏒ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎾᏍᏉ ᎬᏔᏅᎯ ᏕᏣᎴᏔᏅ ᎾᏍᎩ ᏓᎦᎴᏔᏅᎢ ᎬᏔᏅᎯ ᏕᏣᎴᏔᏅ ᎾᏍᎩ ᏓᎦᎴᏔᏅᎢ ᏅᏧᎵᏍᏙᏔᏅ ᎢᏦᎯᏳᏒ ᎤᏁᎳᏅᎯ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᏧᎴᏔᏅᎯ ᏥᎩ ᎤᏲᎱᏒᎢ. ᎬᏂᏳᏰᏃ ᏛᎵᏰᎢᏣᎵ ᎢᎦ, ᎾᎯᏳ ᎯᎠ ᏅᏛᏂᏪᏏ, ᎣᏂᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏗᎾᎷᎸᎥᏍᎩ ᏂᎨᏒᎾ, ᎠᎴ ᏧᎾᏓᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏧᎾᏓᏍᏛᏅᎯ ᏂᎨᏒᎾ. ᏌᎳᏓ ᎠᎬᏱ ᎠᎧᏔᎮᎢ ᎤᎾᏕᏅ ᏌᏌ ᎠᏂᏓ. ᏚᎾᏓᎴᎿᎠ ᎾᏍᏉ ᎠᏥᏰᎯ ᎠᎨᏴ ᎠᏃ ᎾᏥᏰᎲᎾ. ᎾᏥᏰᎲᎾ ᎠᎨᏴ ᎠᏓᏅᏖᏍᎪ ᏧᏓᎴᏅᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎾᏍᎦᏅᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏰᎵ ᎨᏒ ᎠᎴ ᎤᏓᏅᏙᎩᎯ ᎨᏒᎢ; Ꮎ-ᏍᎩᏂ ᎠᏥᏰᎯ ᎠᏓᏅᏖᏍᎪ ᏧᏓᎴᏅᏛ ᎡᎶᎯ ᎡᎯ, ᎢᏳᏛᏁᏗᏱ ᎤᏰᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ. ᏆᎴᏗᏃ ᎣᏏᏳ ᎤᏰᎸᏎ ᎣᏍᏛ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ ᎤᏂᏣᏘ, ᏚᏲᎯᏎᎴ ᏆᎳᏆ, ᏥᏌᏃ ᎤᎵᎥᏂᎸ ᏚᏲᏎ ᎠᎦᏛᏗᏱ. ᏏᏗ ᎣᏣᏁᏦᎥᏍᎦᏉ ᏥᏲᏎᎸ. ᏂᎯᏍᎩᏂ ᏕᏥᎨᏳᏎᏍᏗ ᎨᏥᏍᎦᎩ, ᎠᎴ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᎡᎮᏍᏗ, ᎠᎴ ᎢᏣᏓᏙᎳᏍᏗᏍᎨᏍᏗ ᎤᏚᎩ ᏂᏨᏒᎾ ᎥᎡᏥᏂᏗᏱ ᎪᎱᏍᏗ; ᎤᏣᏘᏃ ᎡᏣᎫᏴᎡᏗ ᎨᏎᏍᏗ, ᏩᏍᏛᏃ ᎦᎸᎳᏗᏳ ᎡᎯ ᏧᏪᏥ ᎨᏎᏍᏗ ᏂᎯ; ᎾᏍᎩᏰᏃ ᎣᏍᏛ ᏂᏓᏛᏁᎰ ᏄᎾᎵᎮᎵᏣᏛᎾ ᎠᎴ ᎤᏂᏲᎢ. ᎿᏉᏃ ᏆᎴᏗ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏟ ᎢᎦᎢ ᎤᏍᎦᎸᎩ; ”ᎭᏓᏅᎵᏰ ᎨᎵᏍᎩ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎠᎴ ᎡᏆᎭᎻ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏧᏓᎴᏅᏛ ᎨᏥᏚᎢᏍᏓᏁᎴᎢ. ᎥᏝ ᎯᎠ ᏱᏂᎦᏪᎭ, ᎠᎴ ᏂᎯ ᏗᏣᏁᏢᏔᏅᎯ, ᎢᎸᏍᎩ ᏥᎨᏐ ᎾᏍᎩᏯᎢ; ᏌᏉᏉᏍᎩᏂ ᏥᎨᏐ ᎾᏍᎩᏯ, ᎯᎠ ᏂᎦᏪᏎ,] ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ; ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᎩ. ᏤᏍᏗ ᏯᎦᏎᏍᏗᏍᎨᏍᏗ ᏫᎵᎻ!” ᎨᏍᏗ ᎠᏎ ᎩᎶ ᎠᎫᏩᏌᏙᏱᏍᏗ ᏱᎨᏎᎢ. ᎥᏝᏰᏃ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᎠᏎᏉ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏲᎩᏍᏓᏩᏛᏎ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎸ ᎤᎵᏂᎩᏗ ᎨᏒ ᎠᎴ ᎤᎷᎯᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ; ᏱᎩᎪᎲᎯᏍᎩᏂ ᎨᏒᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏤᎵᎦ. ᎠᎴ [ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ] ᎥᏝ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏚᎩ ᎣᎬᏅᎢ, ᎢᎬᏱᏍᎩᏂ ᎤᏅᏒ ᎤᎬᏫᏳᎯ ᏚᎾᏓᏲᎯᏎᎸᎩ, ᎠᎴ ᎠᏴ ᏕᎪᎦᏓᏲᎯᏎᎸᎩ, ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎠᏰᎸᏍᎬ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ. ᎾᏍᎩ ᏂᎯ ᎢᏤᏙᎲ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎢᏤᎵᏍᏗᏱ, ᎾᏍᎩ ᎢᏥᏯᏅᏛ ᏥᎩ ᏫᏥᎷᎯᏍᏗᏱ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᏗᎨᏒᎢ. ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎴ ᎾᏍᎩ. ᏧᏪᏥ ᏓᏆᏁᏍᎩᎳ. ᏥᏌᏃ ᎤᏚᏫᏛ ᏚᎧᎿᏂᏙᎸ, ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᏓᏯ ᏧᎬᏩᎶᏗ ᎤᏂᎯ ᎤᏁᎳᎲᎯ ᎤᏤᎵᎪᎯ ᏭᏂᏴᏍᏗᏱ. ᏭᎪᎮᏃ Ꭸ ᎢᏴᏛ ᏗᏡᎨ ᏒᎦᎳᎢᏳᏍᏗ, ᎤᎵᏍᏚᏎᎢ, ᏭᎷᏤᎢ, ᏯᏎᎦᎩ ᏱᏥᏩᏛ ᎪᏞᏍᏗ ᏳᏔ ᎤᏪᎵᏎᎢ; ᎾᎿᏃ ᏭᎷᏨ ᎥᏝ ᎪᏞᏍᏗ ᏳᏩᏛᎮ ᎤᎵᏍᏚᏒᏉ ᎤᏩᏒ; ᎥᏞᏰᏃ ᎠᏏ ᏳᏍᏆᎸᎮ ᏒᎦᏔᎢᏳᎾᏍᏗ ᎤᏅᏂᏍᏗᏱ. ᎠᏂᏐᎢ ᏕᏧᎬ ᎾᎥᏂ ᎠᏂᏙᎾᎥ ᎠᏂᎦᏘᏴ. ᏧᏚᏴᏗᏱ ᏧᏭᏓᎴᏍᏗᏱ ᎤᏰᎸᏎ ᎾᏍᎩ ᎤᎾᏓᏄᏴᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲᎢ, ᎾᏍᎩ ᎠᏴ ᏧᏪᏥ ᎢᏰᎬᏁᏗᏱ. ᏧᎾᏍᏗᏃ ᏗᏂᏲᎵ ᏕᎬᏩᏘᏃᎮᎴᎢ, ᎾᏍᎩ ᏧᏒᏂᏍᏗᏱ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᎬᏍᎪᎸᏁ ᎾᏍᎩ ᏧᎾᏘᏃᎸᎯ. ᏅᎦᏍᎪᎯᏃ ᎤᏗᏢᏍᏙᏗ ᎾᏂᎥᎩ ᎾᏍᎩ ᎢᏧᎾᏓᏪᏎᎸᎯ. ᎦᎸᏉᏗᏳᏰᏃ ᎠᏓᏅᏙ ᏓᏤᏲᏂ ᎾᎯᏳ ᎨᏒ ᎢᏥᏪᏍᏗᏱ. ᎣᎭᏂ ᎡᎯ ᎠᏧᏣ ᏩᏏᏓᏂ ᏚᏙᎥ, ᎠᎬᏱ ᎤᎬᏫᏳ ᏚᏙᎥ ᏭᏂᎩᏓ, ᏧᏍᏗ ᏧᎪᎸ ᎠᎵᏎᎩ ᏐᏈᎵ ᎠᏘᎭᏁᎲ, ᏓᎵᏎᎲ ᎠᎵᏍᏔᏴᏗ, ᏗᏓᏍᏔᏴᏗ, ᏃᎴ ᏧᏍᏆᏅᎾ. ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏣᏃᏛᎩ; ᎠᎴ ᎾᏍᎩ ᏚᎸᏌᏛ, ᏅᏯᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎾᏍᎩ ᏣᏍᏆ ᏅᏯ ᎾᏍᎩᏯᎢ ᏗᎬᏩᎸᏌᏛ ᎨᏒᎩ. “ᎭᏩ,” ᎤᏛᏁ ᏌᎳᏓ, ”ᏚᏓᎴᏣᏗ ᎢᏁᎲ. ᎤᎪᏏᏓ ᎢᏗᏅᏁ ᎪᎱᏍᏗ ᎤᎵᏬᏨ ᎦᏓ ᎾᏅᏁᎰ. ᎤᏚᎵᏍᎨ ᏒᏕᏅ ᏔᎵ ᎢᏳᏩᎬᏘ ᏗᏍᏔᏲᎯ ᏂᎬᏛ ᎠᎦᏅᎯᏓ, ᎢᏳᏍᏗᏉ ᏧᏲᏍᏙᏗ, ᎠᏥᎪᏅᏗᏍᎬ ᎢᎪᎯᏛ. ᎾᏍᎩᏯ ᏄᏪᏒ ᏕᎬᏗᏍᎬ ᏧᏤᎵ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎤᎾᏕᏅᎯ ᏥᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ; ᎠᏯ ᏗᏥᏲᎵᏨ ᏄᏛᏁᎵᏙᎸ ᎠᏂᏃᎮᏍᎬ, Alamo ᏄᎵᏍᏔᏅ ᎩᎳ ᎠᏥᏌᎴᏓᏅ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᏂᏁᏎ ᎠᏰᎸᎢ, ᎠᎴ ᎤᏂᏂᏌᏁᎢ, ᎠᎴ ᎤᏁᏅᏎ ᏭᏂᏃᏁᎴ ᏥᏌ. ᎦᏙᏃ ᎦᏓ ᏥᎾᎾᎵᏍᏗ ᏅᎩ ᏗᏂᏅᏌᏓ ᏃᎴ ᎠᏤ ᎡᎾᎢ? ᏧᏁᎬ ᎨᏒ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏗᎦᏙᎵ, ᎾᏍᎩᏯ ᏧᏓᎵ ᏓᏳᏓᎴᏅ ᎪᎢ ᏧᎵᏑᏫᏓ ᎨᏒ, ᎪᎯᏛ ᏓᏆᎧᎾᏅ, ᎩᎳ ᏄᏪᏒ, ᏙᏉ ᎠᏇᎵᏎ ᎢᏧᎳ ᏍᏔᎵᎪᎯ ᏫᏍᏛᏯᎧᏁ. ᏍᏆᎴᏅᎲ ᏥᏯᏅᏓᏗᏍᏙᏗ ᎠᏌᎻᏓ ᎨᏍᏗ ᏍᎩᎾᎾ ᎧᏁᎬ ᏱᏓᎩᎷᏫᏍᏔᏁᎮ ᏃᎴ ᎨᏍᏗ ᏐᏉ ᏎᏂᏏ ᏱᎬᏆᏈᏴᎡ ᎠᏂᏩᏥᏂ, ᎠᏋᏌ ᎠᏆᏚᎵᏍᎬ ᏂᏓᎦᏛᏁᎵ. ᏴᏫ ᎤᏪᏥ ᏙᏓᎦᏅᏏ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵᎪᎯ ᏙᏛᏃᏣᎴᏏ ᏂᎦᏛ ᏗᎾᏓᏙᏕᏍᏗᏍᎩ ᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏅᎩ, ᏭᎾᏠᏨᏃ ᎠᏰᎸᎢ, ᎤᏂᎷᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏗᏂᎧᎿᏩᏗᏙᎯ ᎾᏍᏉ ᏙᏥᎪᏩᏛ ᎾᏍᎩ ᎬᏅ ᎪᎪᏏ, ᎤᎾᏛᏁᎢ. ᎾᎿ ᎤᎾᏤᎵ ᏥᏍᎪᏴ ᏂᎦᎵᏬᎬᎾ ᏗᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᏂᎬᏠᏍᎬᎾ ᏗᎨᏒᎢ. ᎠᎴ ᎤᏁᎷᏅᎩ ᎢᏳᏃ ᎤᏂᎪᎲ ᏚᎦᏒᏍᏛ ᎾᏍᎩ ᎠᎪᎲᏍᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎦᏙ ᎤᏍᏗ ᎾᏍᎩᏯ ᎨᏎ ᎾᏍᎩ ᎯᎠ ᎡᏆ ᎦᏚᎲ ᏄᏍᏛᎢ? ᏣᏅᏖᏍᏗ ᏥᏌ ᎦᎶᏁᏛ, ᏕᏫ ᎤᏪᏥ, ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅᎢ, ᎾᏍᎩᏯ ᏂᎦᏪᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᏆᏤᎵᎦ, ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᏍᏕᎾ ᏣᏂ ᏫᎡᏍᏗᏃᎲᏏ ᏂᎦᎥ ᎢᏍᏓᏛᎩᏍᎬᎢ ᎠᎴ ᎢᏍᏗᎪᏩᏖᏍᎬᎢ: ᏲᎾ ᎤᏤᏍᏙ ᎢᏳᏍᏗ ᏍᏉ ᎤᎨᏳ ᎨᏎ ᏫᎵᎻ, ᏍᎩᎾᎾ ᎤᏴᏍᏗ ᎠᏒᎩ ᏃᎴ ᎤᏪᏙᏨ ᎠᎵᏍᏓᏴᏗ ᏛᎦ ᎠᎾᏓᏓᏍᎩᏏᏍᎨᎢ ᏚᏂᎬᎬ ᏌᎳᏓ, ᏃᎴ ᎠᎵᎮᎵᏍᏓᏁᎮ ᎠᎴᏫᏍᏗᏍᎩ ᏱᎨᏒᎾ ᎨᏒ ᏃᎴ ᎱᏚᎵᏍᎨ ᎤᏁᎸᏙᏗ ᎤᏏᎳᏛᏗ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏆᏟᏯ ᎤᏙᏓ ᎦᏅᎬᎩ ᎤᏗᎴᎲᏍᎬᎩ ᎠᎴ ᎩᎬ ᏚᏩᎫᏍᎬᎩ, ᎾᏍᎩ ᏉᎳ ᎤᏴᎸᎩ ᎦᏅᎬᎢ, ᎤᏓᏙᎵᏍᏔᏅᏃ ᎠᎴ ᏚᏏᏔᏛ ᎤᏅᏩᏅᎩ. ᎯᎠ ᎾᏍᎩ ᎠᏍᎩ ᎠᏯᎦᏯ ᏆᎴᏗ ᏭᎷᏤᎴ ᎠᎴ ᎤᏔᏲᏎᎴ ᏥᏌ ᎠᏰᎸᎢ. ᎢᎬᏱᏱᏃ ᎨᏒ ᎤᏪᏅᏒᎩ, ᎠᎴ ᎪᏙᎯ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎤᏕᏯᏙᏗᏃ ᎠᎴ ᎡᎯᏍᏗ ᏚᏂᏣᏍᏓᎳᏛᎩ ᏴᏫ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏤᎵ ᏗᎨᎪᏪᎶᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ. ᎾᏍᏉᏃ ᏔᎵ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᎷᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᏔᎵ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᏕᏍᎩᏲᎯᏎᎸᎩ; ᎬᏂᏳᏉ ᎤᏩᎾᏓᎴ ᏔᎵ ᎢᏯᎦᏴᎵ ᎬᎩᏁᏉᏤᎸ. ᏂᎯ ᎠᏈᏴᏗ ᏕᏣ. ᏔᎵᏁᏃ ᎾᏍᎩᏯᏉ ᎾᏍᏉ; ᏨᏒ ᏥᏂᏣᏓᎨᏳᏒ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ. ᎢᏳᏃ ᎰᏩ ᎢᏣᏛᎦᏅᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏗᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏴ ᎥᎩᏁᎸᎢ ᎾᎿ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ ᏂᎯ ᎣᏍᏛ ᎢᏨᏯᏛᏁᏗᏱ; ᎠᏂᏍᎦᏰᎬᏍᏔ ᎤᎾᏗᏔᎰᏅ ᏍᎦᏥ ᏫᏍᎩ ᏓᏆᎴᎳ ᎦᎵ ᎦᎷᎬ ᏣᎵᏍᏙᏂ ᏓᏳᏓᎴᏅ. ᏍᎩᏃ ᎢᏳᏍᏗ ᎤᎩᏨᏓ ᎩᎳ ᏩᎩᎷᏨ ᎨᏥᎸ ᎦᏙ, ᎦᏙ ᏄᏍᏛ ᎠᏆᏕᎶᎰᏒ ᏄᎵᏍᏔᏂᏙᎸ. “ᏑᎾᎴ ᏂᎦᎵᏍᏔᏅ ᏓᏥᎦᏘᏗ ᎾᎯᏳ ᎨᏒ ᎤᏪᎵᏎ, ᎪᎱᏍᏗ ᏯᏍᎦᎢᎲᎾ. ᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏱᎨᏎᎢ ᏄᏂᎦᏙᎥᏒᎾ ᏱᎨᏎ ᏚᏳᎪᏛ ᎦᏅᏅᎢ, ᎠᏃ ᎤᏂᎦᏙᎥᏒᎯ ᎨᏒ ᏯᎾᎦᏔᎲ ᏱᏚᏂᏲᏍᎦ ᎦᎸᏉᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏗᎨᏥᏲᎯᏎᎸᎯ. ᎨᏍᏗ ᎤᎯᏐᏗ ᏱᎩ.” ᎤᏛᏛᎮᎸᏁᏃ ᎤᏣᏘ ᏧᏓᎴᏅᏛ, ᎠᏎᏃ ᎥᏝ ᏳᏁᏤᎴᎢ. ᎣᎾᏫᏰᏃ ᎬᏗ ᎠᎪᎯᏳᎲᏍᎪ ᎣᏚᏓᎴᏍᏗ ᏂᎦᎵᏍᏔᏂᎦ; ᎠᎴ ᎥᎰᎵ ᎬᏗ ᎬᏂᎨᏒ ᎾᎬᏁᎰ ᎥᏓᏗᏍᏕᎸᏗ ᏂᎦᎵᏍᏔᏂᎦ. ᎯᎠᏃ ᏄᏪᏎᎢ ᎬᏲᏎᎭ ᏈᏓ, ᏣᏔᎦ ᎥᏝ ᎬᏛᏴᎳᏏ ᎪᎯ ᎢᎦ ᎬᏂ ᏦᎢ ᎢᏣᏓᏱᎸᎯ ᎨᏎᏍᏗ ᎠᏴ ᏍᎩᎦᏔᎲᎢ. ᎠᎹ ᏱᏔᏑᏴᏂ, ᎢᏧᎴᎭ ᎠᏗᎬᏓ ᏱᏣᏗᏔ ᏪᎵᏏ ᏧᎾᏕᎪ ᏧᎾᏗᏔᏍᏗ. ᏗᎧᎾᏩᏛᏍᏗ. ᎠᎴ ᎾᏍᎩ [ᎤᏚᎵᏍᎬ] ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎤᏤᎵ ᎤᏣᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎨᏒ ᏕᎬᏗᏍᎬ ᏗᏖᎵᏙ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏗᏟᏍᏗ, ᎾᏍᎩ ᏧᏛᏅᎢᏍᏔᏅᎯ ᏥᏂᎨᏎ ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏭᎾᏕᏗᏱ, ᏭᏂᎷᏣ ᎭᎾ ᏣᎵ ᏕᎨᏯᏔᎲᏍᎬ ᎠᏍᏓᏱ ᎤᏙᎯᏎ. ᎢᎸᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᎯᏳ ᏓᏕᏲᎲᏍᎨᎢ, ᎾᎿ ᎠᏂᏁ ᎠᏂᏆᎵᏏ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᏕᎦᏚᏩᏗᏒ ᎨᎵᎵ ᏅᏓᏩᏂᎶᏒᎯ, ᎠᎴ ᏧᏗᏱ, ᎠᎴ ᏥᎷᏏᎵᎻ; ᎤᎬᏫᏳᎯᏃ ᎤᎵᏂᎬᎬ ᏚᎾᏗᏫᏍᏗᏍᎨᎢ. ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎠᏓᏰᏍᎨᏍᏗ ᎾᏍᎩᏯ ᎤᎪᏏᏛ ᏣᏓᏰᏍᎪᎢ; ᎾᏍᎩ ᏄᎾᏍᏗ ᎭᎻᏂᏯ ᎠᎴ ᏆᎵᏓ, ᏱᎩᎾᎵᎪᏁᎢ, ᏰᎵᏉ ᎪᎰᏍᏗ ᏯᏆᏛᏁ ᎤᏓᏍᏖᏓᎵᏴᏍᏙᏗ. ᏂᎯᏃ ᎯᏲᎵ, ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏤᎵ ᎠᏙᎴᎰᏍᎩ ᎡᏦᏎᎮᏍᏗ, ᏂᎯᏰᏃ ᎢᎬᏱ ᏘᏰᏅᎡᎵ ᏱᎰᏩ, ᎯᏯᏛᏅᎢᏍᏓᏁᏗᏱ ᎤᎶᎯᏍᏗᏱ; ᎾᏍᎩᏃ ᏧᏪᏥ ᏅᎩ ᎢᏯᏂᏛ ᎠᏁᎲᎩ ᎠᎾᏛ ᎠᎾᏙᎴᎰᏍᎩ. ᏲᎾ ᎤᏤᏍᏙ ᎤᎵᏍᏔᎩᏌ ᏒᏗᏩᏟ, ᎤᏲ ᎨᏎᎢ, ᏍᎪᏯ ᎤᏲ ᎭᏯᎡ ᎭᏫᏂ, ᎤᏲᎢᏍᏔᏁᎴᎢ. ᎾᏍᎩ ᎤᏂᏍᏆᏗᏍᏙᏗ ᎨᏒ ᎠᏓᏛᏗᏍᎩ ᏥᎩ, ᎤᎾᏁᎳᏅᎯ ᎤᏂᏍᏉᎵᏱᏉ ᏥᎩ, ᎠᎴ ᎤᎾᏕᎰᎯᏍᏗᏍᎩᏉ ᎠᎾᏢᏈᏍᏗᏍᎩ ᏥᎩ, ᎾᏍᎩ ᎡᎶᎯᏉ ᎡᎯ ᎤᎾᎦᏌᏯᏍᏗ ᏥᎩ. ᏲᎾ ᎤᏤᏍᏙ ᎠᎵᎮᎵᎨ, ᎡᎵᏍᎨᎢ ᏌᎳᏓ ᎠᏓᏪᎯᏴ ᎤᏔᏅ ᎨᏍᏗ ᏱᏛᏂᎵᏎ ᏫᎵᎻ. ᏔᎵ ᏗᎦᎸᏓ ᎠᏫ ᎭᏫᏯ ᎠᎧᎭᏲᏔᏅ ᏚᎳᎩᏒ ᎦᏅᏙᏗ ᎠᏧᏣ, ᏚᏅᏁᎸ ᏣᎵ. ᏂᎦᏓ ᎡᏝᏪ ᎨᏎᏍᏗ ᏓᏥᏯᎵᏃᎡᏔᏂ!” ᎠᎵᏍᎦᏃᏍᏗᏍᎨ ᎪᏱᏁᎢ, ᎤᏔᏂᏗᎨ ᎧᏁᏌ ᎤᏂᏕᎴ, ᎠᏓ ᏗᏍᏆᏂᎪᏙᏗ ᏭᏂᎧᏁ. ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎾᏍᎩ Ꮎ ᎦᎶᎯᏍᏗᏱ ᎠᏴᏍᏗᏍᎩ ᏂᎨᏒᎾ ᎠᏫ ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗᏱ, ᎤᏣᏘᏂᏉᏍᎩᏂ ᎦᎸᏍᏗᏍᎩ, ᎾᏍᎩ ᎦᏃᏍᎩᏍᎩ ᎠᎴ ᎠᏓᎾᏌᎲᏍᎩ. ᎠᎦᏗᏓ ᎯᏥᏬᏂᏍᎨᏍᏗ ᏌᏌ!” ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎠᏴ ᎤᏪᏥ ᏓᏰᏏ ᎾᏍᎩᏯ ᏚᏚᎪᏔᏅᎢ, ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎾᎠᏍᎦᏯ ᎤᏡᏗᏍᎩ ᏤᎦᎳᏯᏃ ᎤᎪᎲ, ᎤᏕᏯᏔᏁᎴ ᎠᎴ ᎤᏍᎦᎴᎢ. ᏕᏅᏬᎯᏳᏁᏃ, ᎪᎱᏍᏗ ᏓᎬᎩᏁᎵ ᎡᎵᏍᎨᎢ. ᎢᏳᏃ ᎩᎶ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎣᏥᏬᏂᏍᎬ ᎠᏂ ᎣᏦᏪᎵᏍᎬᎢ, ᎬᏂᎨᏒ ᏁᏨᏁᎸᎭ ᎾᏍᎩ, ᎠᎴ ᏞᏍᏗ ᎢᏧᎳᎭ ᎢᏤᏙᎸᎩ, ᎾᏍᎩ ᎬᏩᏕᎰᎯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᏣᎦᏔᎲᎾ, ᎤᏓᏅᎦᎸᏗᏱ ᎢᏥᏍᎦᏅᏨᎢ, ᎾᏍᎩ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗᏱ ᎤᎬᏫᏳᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ. ᎾᎿ ᎤᎾᏤᎵ ᏥᏍᎪᏴ ᏂᎦᎵᏬᎬᎾ ᏗᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᏂᎬᏠᏍᎬᎾ. ᎾᎯᏳᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎭᏫᏂᏗᏢ ᎢᏯᎬᏁᎸᎯ ᎨᏎᏍᏗ, ᎿᏉ ᎾᏍᏉ ᎤᏪᏥ ᎤᏩᏒ ᎭᏫᏂᏗᏢ ᏅᏛᏛᏁᎵ ᎾᏍᎩ Ꮎ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎯᏫᏂᏗᏢ ᎢᏳᏩᏁᎸᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏂᎦᎥ ᎢᎬᏂᏏᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏂᎥ ᎠᏁᎲᎢ. ᎺᎵᏃ ᎤᎷᏨ ᏥᏌ ᎡᏙᎲᎢ, ᎠᎴ ᎤᎪᎲ, ᏚᎳᏍᎬ ᎡᎳᏗ ᎤᏓᏅᏅᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᎠᏂ ᏱᎮᏙᎮᎢ, ᎥᏝ ᎥᎩᏙ ᏱᎬᏩᏲᎱᏎᎢ. ᎠᏎᏍᎩᏂᏃᏅ ᎠᏇᏓᏍᏗ ᏂᎦᎵᏍᏗᎭ ᎪᎯ ᎢᎦ, ᎠᎴ ᎤᎩᏨᏅᎢ, ᎠᎴ ᎤᎩᏨᏛ; ᎥᏝᏰᏃ ᎠᏙᎴᎰᏍᎩ ᏰᎵ ᎢᎸᎯᏢ ᎦᏰᏥᎢᏍᏗ ᏱᎩ, ᏥᎷᏏᎵᎻ ᎤᏩᏒ. ᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᎠᏯᎡ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎦᏓᎭ ᎠᏓᏅᏙ ᎠᏍᎩᎾ ᎤᏯᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏁᎢ, ᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎩᎶ ᎯᎠ ᏂᎦᏪᏎᎮᏍᏗ ᎯᎠ ᏦᏓᎸ, ᏪᏣᎲᎾ, ᎠᎴ ᎠᎺᏉᎯ ᏪᏣᏚᎦ; ᎠᎴ ᏄᏜᏏᏛᎡᎲᎾ ᎢᎨᏎᏍᏗ ᎤᎾᏫᏱ, ᎪᎯᏳᎲᏍᎬᏍᏗᏉᏍᎩᏂ ᎾᏍᎩ ᏂᎦᏪᏍᎬ ᎠᏎ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎤᎨᏍᏗ ᏂᎦᎥ ᏄᏪᏒᎢ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᎨᏓᏍᏗᏱ ᎾᏍᎩᏯ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏤᎵᎦ ᏂᎦᏪᏍᎬᎢ. ᎾᏍᎩ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏁᏣᏛᎩᏍᎪᎢ, ᎾᏍᎩ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎬᏩᏍᏓᏩᏙᎯ ᎬᏩᎷᏤᎸᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏂ ᎢᎾᎨᏉ, ᎠᎴ ᎢᎦ ᎤᎶᏐᏂᏗ, ᏥᏤᎾᏉᏃ ᎩᏲᏏᎯᎠ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᏙᏗᎦᏚᎲ ᏫᎠᏂᎶᎯ, ᎾᎿ ᎤᏅᏒ ᎤᎾᎵᏍᏓᏴᏗ ᎤᏂᏩᏒᎭ. ᏴᏫ ᎠᎩᏟᏲᏗ ᎤᏂᎶᎯᏍᏗ ᏃᎴ ᏓᏂᏲᎰᏍᎪ, ᏯᏂᎦᏔᎲᎾ ᎨᏒ ᏃᎴ ᎨᎦᏥᎪᏁᎸ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏕᎦᏬᏁᏗᏍᎬᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏧᏏ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᎦᏃᏗᏗᏱ ᏕᎦᏬᏁᏗᏍᎬᎩ ᎾᎿ ᏧᏩᏛᏔᏅᎯ. ᎤᎬᏫᏳᎯᏃ ᎤᏣᏘ ᏞᏉ ᎤᏰᎸᏁᎢ; ᎠᏎᏃ ᎤᏎᎵᏔᏅᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏧᎴᎭ ᎤᎾᏂᏜᏅᎯ ᏅᏧᎵᏍᏙᏔᏁ, ᎥᏝ ᎬᏩᎨᏳᏙᏗ ᏱᎨᏎᎢ. ᎠᎴ ᏄᎬᏫᏳᏒ ᏕᎦᏍᎩᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏧᎾᏂᏢᏗᏱ ᏓᎾᎵᏍᏓᏴᎲᎬᎢ; ᎦᏙᏃ ᎤᏍᏗ ᎠᎬᏩᏟ ᏒᎦᏔ ᎢᏈᎬᎢ ᏒᎦᏔᏃ ᎾᎾᏓᏛᏍᎬᎾ? ᎤᏓᏛᏛᏁᎢ Ꮎ ᎤᏍᏗ ᎢᏈᎬᎢ. ᎠᎦᏔᎮᏰᏃ ᎠᏅᏳᎬᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏚᏂᏲᏒᎢ. ᎠᎴ ᎢᎾᏛ ᎤᎿᎸᏤᎸ-Ꭹ ᎠᎨᏴ, ᎠᎴ ᏓᎿᏩ ᎢᏧᏩᏁᏗᏱ ᎤᏰᎸᏅᎩ ᎤᎾᎵᏃᎯᏴᎯ ᎾᏍᎩ [ᎠᎨᏴ] ᎤᏁᏢᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎠᎴ ᎤᏂᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵ ᎪᎯᏳᏗᏍᎩ ᎤᏰᏤ ᏥᏍᏕᏥ. ᎠᎴ ᏚᏪᎧᏁᎴ ᎾᏍᎩ ᏧᏂᏔᏲᎴᎢ, ᏗᏓᏍᏚᏗᏱ ᎠᏥᏴᏔᏅᎯ ᏥᎨᏎᎢ ᏧᏍᏛᏗᏍᎨ ᎤᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅ ᎠᎴ ᎤᏓᎸᎢ; ᏥᏌᏍᎩᏂ ᏚᏲᎯᏎᎴ ᎤᎾᏚᎵᏍᎬ ᎢᏳᏅᏁᏗᏱ. ᏞᏍᏗ ᎩᎶ ᎤᏩᏒᏉ ᎤᏤᎵ ᏳᏲᎮᏍᏗ, ᏅᏩᏓᎴᏍᎩᏂ ᎤᏤᎵ ᎤᏲᎮᏍᏗ. ᏅᏩᏓᎴ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎠᏥᎸ ᎤᎦᏔ, ᎠᏍᎦᏯ ᏧᎩᏎ ᎠᎴ ᏧᏫᏎ ᎤᎶᎨᏒᎢ. ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ, ᎾᏍᎩ ᎤᏕᎵᏛ ᏧᎾᏂᏏᏂᏙᎸᎯ ᎨᏒᎢ, ᎠᎴ ᎤᏢᏉᏗ ᎢᏧᎳᎭ ᎤᎾᏕᏅᎯ, ᎾᏍᎩ ᏓᎬᏩᏍᎪᏂᎵ, ᎠᎴ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏙᏛᏂᏴᎳᏏ, ᎿᏉ ᎠᏂᎪᎲᎭ ᏚᎦᏒᏍᏛ ᎾᏍᎩ ᎠᎪᎲᏍᎬᎢ, ᎠᎴ ᎣᎦᏁᎳᏅᎯ ᏧᏤᎵ ᎣᎩᎬᏫ-ᏳᎯ ᎠᎴ ᎠᏥᎸ ᎣᏤᎶᎯ ᏂᏍᎩᏴᏁᎸ; ᎠᎴ ᎣᎩᎬᎾᏳᎯ ᎨᏎᏍᏗ ᎡᎶᎯ. ᎩᎶᏃ ᎢᏳᏍᏗ ᏄᎬᏫᏳᏌᏕᎩ ᎤᏛᏛᏁ, ᎯᎠ ᏄᏪᏎᎢ, ᎰᏍᏛ ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏯᏆᏛᏁᎸ ᏫᎾᏍᏛᎾ ᎬᏂᏛ ᏱᏥᏩᏛ? “ᎤᏩᏛᎯᏙ ᎦᎷᎩ ᎯᎪ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎪᏪᎸᏃ ᎤᏙᎯᏳᏁᎢ, ᎯᎠ ᏥᏂᎦᏪᎭ, ᎤᏂᏍᎦᏅᏨᎯ ᎨᎦᏎᎸ ᎠᎦᏠᏯᏍᏔᏅᎩ. ᎯᎸᎯᏨ ᎠᎴᏫᏍᏙᏗ. ᎢᏳᏃ ᎩᎶ ᎤᏁᎳᏅᎯ ᏥᎨᏳᎠ ᏯᏗᎭ, ᏯᏍᎦᎦᏃ ᏗᎾᏓᏅᏟ, ᎦᏰᎪᎩ ᎾᏍᎩ, ᎤᎨᏳᎯᏰᏃ ᏂᎨᏒᎾ ᏱᎩ ᏗᎾᏓᏅᏟ ᎾᏍᎩ ᎤᎪᎲᎯ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎤᎨᏳᎯᏳ ᏱᎩ ᎤᏁᎳᏅᎯ ᎤᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎤᏙᎯᏳᎮ ᏄᏪᏒ. ᎢᏓᎵᏅᏟ, ᎥᏝ ᎦᏳᎳ ᎠᎩᏂᏴᏛ ᏍᎩᏰᎸᎭ; ᏑᏓᎴᎩᏍᎩᏂ [ᏂᎦᏛᏁᎰᎢ;] ᎠᏋᎨᏫᏍᎪᎢ ᏧᏓᎴᏅᏛ ᎣᏂᏗᏢ ᏄᏍᏗᏕᎬᎢ, ᎢᎬᏱᏗᏢᏃ ᏧᏓᎴᏅᏛ ᏄᏍᏗᏕᎬ ᏫᏗᏥᏂᏱᏍᎪᎢ, ᏗᏯᏖᏅ ᏃᎴ ᏗᎦᏌᏆᎸ ᎦᎸᎳᏗᏣ ᏓᎾᎵᏍᏇᏚᏍᎦ ᎯᎪᎢᏳᎳ. “ᎭᏕᏬ,” ᎤᏛᏁ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᏤᎦᏬᎥᎯ ᏥᎩ, ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᏕᎩᏂᏌᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏗᎩᏲᎱᏒᎯ ᏄᎵᏍᏔᏅᎩ; ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏥᏓᎦᎴᏔᏁᎢ ᎠᎦᏴᎵᎨ ᎦᎸᏉᏗᏳ ᎨᏒ ᎬᏔᏅᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎢᏓᎴᏂᏙᎲ ᎢᏤ ᏱᏓᎴᏂᏙᎭ. ᎦᎸᎳᏗᏃ ᏫᏚᎧᎿᏅ ᎤᎵᏰᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎡᏇᏓ, ᎾᏍᎩ ᎦᏛᎬ ᎭᎵᏍᏚᎢ. ᎾᏍᎩ ᎠᏴ ᏥᏕᎦᏓᎵᏲᎯᏎᎴᎢ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎢᎦᎫᏴᏗᏱ ᎢᎫᏓᎴᏍᏗᏱ ᏂᎦᎥ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏧᏅᎦᎸᏗᏱ ᎤᏩᏒ ᏧᏤᎵ ᎢᏧᏩᏁᏗᏱ ᎤᎾᏓᏤᎵᏛ ᏴᏫ, ᎤᎵᏂᎩᏛ ᎤᎾᏓᏅᏘ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ. ᎿᏉᏃ ᎾᏍᎩ ᎤᏂᏃᎮᎵᏙᎸ ᎤᏂᏣᏘ ᏚᏂᎳᏫᏤᎢ ᎠᎴ ᎤᎾᏕᏯᏔᏁᎴᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏓᎾᏛᎦᏁᎲ ᏓᏂᏬᏂᏍᎬ ᏗᏂᏏᏴᏫᎭ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ. ᏞᏍᏗ ᎰᎱᏍᏗ ᎤᏲ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏅᏓᏳᏄᎪᏨᎩ ᏗᏥᎰᎵ, ᎣᏍᏛᏍᎩᏂ ᎨᏒ ᎤᏩᏒ ᎾᏍᎩ ᎬᏩᏓᎵᏂᎪᎯᏍᏙᏗ ᏥᎩ, ᎾᏍᎩ ᎤᏚᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎬᏩᎦᏘᎠ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏂᎷᏤᏗᏱ ᎠᎾᏛᎩᏍᎩ. ᏔᎵᏁᏃ ᎤᏓᏱᎴᎢ. ᏂᎪᎯᎸᎾᏃ ᎣᏂ ᎾᏍᎩ ᎾᎥ ᎠᏂᏙᎾᎢ ᏔᎵᏁ ᎯᎠ ᏄᏂᏪᏎᎴ ᏈᏓ, ᎤᏙᎯᏳᎯ ᏂᎯ ᎾᎿ ᎮᎳ; ᎨᎵᎵᏰᏃ ᎮᎯ, ᎠᎴ ᎪᏬᏂᏍᎬ ᎤᏠᏱ ᎢᎩ. ”ᎠᏯ ᎨᎵᏍᎬ ᎨᏍᏗ ᎪᎱᏍᏗ ᎡᎳᏗᎨ ᏱᎩ ᎪᎱᏍᏗ ᏧᎵᎬᏩᏟ ᏱᎨᏒᎾ. “ᎭᏗ,” ᎤᏛᏁ. ”ᎠᏍᏓ ᎦᏲᏟ ᏣᎾ ᎬᏆᏙᎵᏍᏗ? ᎤᏛᏛᏁ ᏫᎵᎻ. ᏄᏍᏛᏉ ᏓᎾᏓᎧᏂᏍᎬ, ᏧᏃᏰᏂ ᏓᎾᏓᏒᏂᎲ ᎤᎸᏫᏒ ᏯᏥᏁᎸ, ᎤᏃᏴᎬ ᏳᎾᏟᏃᎮᎸ. ᎢᎬᏩᏂᏴᎮᏃ, ᎠᎴ ᎢᎬᏩᎵᎥᏂᎴᎢ, ᎠᎴ ᎠᏒᎭ ᎢᎬᏩᏂᎩᏍᏔᏁᎢ. ᎥᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎾᎯᏳ ᎩᎳ ᎤᏒ ᏗᏓᎾᎾ ᎠᏇᏙᎸ ᎥᎦᎢᏒ ᏗᏇᏅᏒ ᎢᏗᏜ. ᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᏗᏓᎴᏅᏗᏍᎩ ᎠᎴ ᎠᏍᏆᏗᏍᏗᏍᎩ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᏤᎭ, ᎠᎴ ᏤᎲᎩ, ᎠᎴ ᏤᎮᏍᏗ, ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏥᎩ. ᎤᏔᎾᏃ ᏂᎦᏅᏅ 33 ᎪᏪᎵ Ꮲ ᎩᏄᏘᏗ ᎢᏳᏟᎶᏓ ᎠᏂᎩᏓ ᏦᎨᏅᏒ ᎠᏎᏃ ᎠᎨ ᎢᏴ ᏗᎦᏁᎶ ᎾᎥ ᎢᏦᎦᏓᎵ ᎥᏍᎩᏃ ᏂᎪᎯᎸ ᎠᎪᏩᏛᏗ ᎨᏐ ᎡᎳᏗ ᎠᎢᏒ. ᎯᎠ ᏫᏂᏚᏪᏎᎴᎢ; ᎦᏙ ᏓᏍᎩᏁᎵ ᎠᏴᏃ ᏙᏓᏨᏲᎯᏎᎵ? ᏦᎠᏍᎪᎯᏃ ᎠᏰᎵ-ᎠᏕᎸ ᏕᎬᏩᏌᏍᏓᏁᎴᎢ. ᎬᏩᏘᏂᏎᏃ ᎤᏂᏂᏴᎮ ᎩᎶ ᎢᏳᏍᏗ ᏌᏩᏂ ᏧᏙᎢᏛ, ᏌᎵᏂ ᎡᎯ, ᏙᏗᎦᎶᎨᏒ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩᏃ ᎤᎾᏃᏞᏗᏍᏔᏁ ᏧᏓᎿᏩᏛ, ᎾᏍᎩ ᏥᏌ ᎠᎢᏒ ᎣᏂᏗᏢ ᎤᏪᏅᏍᏗᏱ. ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎠᎬᏱ ᏯᏗᏗ ᎩᎶᎢ, ᎯᏓᎵᏍᏓᏴᎲᎦ!” Ꭷ ᏗᎣᏈᎵ, ᎢᎬᏱᏱ ᏣᏉᏪᎳᏅᎩ ᎧᏃᎮᏍᎬᎩ ᏂᎦᏛ ᏥᏌ ᎤᎴᏅᎲ ᏚᎸᏫᏍᏓᏁᎸ ᎠᎴ ᏚᏕᏲᏅᎢ, ᎤᎩᏠᏫᏎ, ᎢᏯᏏᏔᏛ ᎢᏴ ᎠᎧᏘᏏ ᎢᏣ, ᏧᏏᎳᏛᏙᏗ ᏗᎬᏗ ᏫᏚᏒᏂᎴ ᏚᏏᎳᏛ, ᏃᏗ ᎠᎧᏘᏏ ᎢᏣ ᏭᏏᎳᏛᏁ. ᎧᏁᏍᎦ ᎦᏓᏍᎬ ᏧᎧᏌᏔᏁᎢ ᎠᏍᎪᎵ ᏧᏍᏆᏴᏍᏗ. ᏒᎧᏔ ᏕᏧᎬ ᎡᎳᏗᏣ, ᏅᏃᎯ ᏩᏓᏍᏆᏗᏍᎬ, ᎭᎾᎾ ᎤᏗᏅᏗ ᎤᏲ ᎤᏬᏒᎮᎢ ᎰᎻ. ᎭᎾᎾ ᏭᏕᎨᎢ ᎩᎶ ᏳᏚᎵᏍᎬᎾ. ᎠᎴ ᎾᏍᎩ ᎣᏏ ᏄᏂᏰᎸᏒᎾ ᏥᎨᏎ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏂᎦᏙᎥᏒ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ, ᎤᏁᎳᏅᎯ ᏕᎤᏲᏎ ᎨᏥᏐᏅᎢᏍᏔᏅᎯ ᎢᏳᎾᎵᏍᏙᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᎾᏛᏁᏗᏱ; ᏗᏂᏲᏟ ᎤᏂᎬ ᎤᏂᏍᏆᏂᎪᏒ ᏄᏍᏛ ᎠᎩᏍᏗ, ᏃᎴ ᎠᏂᏲᏍᎩ ᎠᏂᏧᏣ, ᎤᎵᏐᏯᏍᏗ ᎠᏍᎦᏰᎬᏍᏔ, ᎣᎭᏂ ᎠᎾᎢᏒ ᎣᏍᏓ ᎤᏂᏰᎸᎲ. ”ᏘᏅᏗ ᏙᎯ ᎡᏓᏍᏗ,” ᎤᏛᏁ ᏌᏌ. ᏥᏌᏃ ᎤᎦᏔᎲᏒ ᎠᎴ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏒᎩ; ᎠᏇᏥ, ᎤᎦᎵᏍᏗᏉ ᎭᏓᏅᏓᏓ. ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ. ᎠᎨᏴᏃ ᎾᎯᏳᏉ ᎤᏗᏩᏒᎩ. ᎠᏯᏖᏂᎨ ᏄᏍᏕ ᎦᎸᎶᎢ ᏃᎴ ᎤᎦᏃᏩ ᎦᏃᎸᎥᏍᎨ. ᎨᏍᏗ ᎪᎱᏍᏗ ᎤᏕᎸᏓ ᎢᎦᎬᏁᏗ ᏱᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎤᎦᎵᏍᏗ ᎢᏣᏓᏅᏛ ᎠᏴ ᎣᎩᎦᎵᏍᏓᏛᎩ; ᎥᎥ, ᎠᎴ ᎤᏟ ᎢᎦᎢ ᎣᎦᎵᎮᎵᏍᏗ ᏄᎵᏍᏔᏅᎩ, ᏓᏓᏏ ᎠᎵᎮᎵᎬ ᎢᏳᏍᏗ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎤᏓᏅᏙ ᏂᏥᎥ ᎡᏥᎦᎵᏍᏓᏕᎸᎢ. ᎠᏂᏐᎢᏃ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᏥᏳ ᎤᎾᏦᏛᎩ, ᎤᏂᎷᏨᎩ, ᎥᏝᏰᏃ ᎢᏅᎯᏳ ᏱᎨᏎ ᏙᏱ, ᏔᎵᏧᏈᏉ ᎢᏯᎵᎩᏳᏍᏈᏛ ᎢᏴᏛ ᏅᏩᏍᏛᎩ, ᎠᎦᏯᎷᏗ ᎠᏣᏗ ᎠᎧᎵᏬᎯ ᎠᏂᎾᏏᏁᎲᎩ. ᎠᏴ ᏓᏏᏯ, ᎯᎠ ᎪᏪᎵ ᎠᏆᏪᎳᏅᎯ ᏫᏨᏲᎵᎦ ᎤᎬᏫᏳᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᏍᏉᏟ ᎠᏯᏂᎭ.” ᎤᏩᏂᎦᏢ ᏭᏭᏓᎸᏤᎢ ᎢᏳᏃ ᏗᏍᏓᏓᏅᏟ ᎢᏣᏍᎦᏅᏎᎮᏍᏗ, ᎮᎨᏍᏗ ᎯᏃᏁᎮᏍᏗ ᎤᏍᎦᏅᏨ ᎢᏍᏛᏒᏉ ᎨᏒᎢ; ᎢᏳᏃ ᎢᏣᏛᏓᏍᏓᏁᎮᏍᏗ, ᎯᏩᏛᎮᏍᏗ ᏗᏍᏓᏓᏅᏟ. ᏐᏉ ᎢᎦ ᏒᎮᏱᏣ, ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎠᎾᏓᏬᏍᎬ ᏧᎾᎿᏬᏍᏗ ᏚᎾᎿᏬᎡ, ᎨᏴᎢ ᎤᎾᏓᏬᎥᏎ. ᏧᏌᎨ ᏗᎦᏌᏆᎸ ᏓᎩᎦᎷᏴ ᏄᎾ, ᎦᏖᏌᏗ ᏫᏓᎩᏝᏅ, ᎦᏚᎢᏣ ᎪᏒᏅ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᎠᏍᎦᏃᎵ ᏓᏋᎭᏂᏍᏔᏅ ᎦᏃᏍᎬ ᎦᏚᎢᏣ. ᎺᎵᏃ ᎾᎯᏳ ᏚᎴᏁᎢ, ᎤᏩᏅᏤ ᎣᏓᎵ ᎨᏒ ᏭᎶᏎᎢ, ᏧᏗᏱ ᎦᏚᎲ ᏭᎷᏤᎢ. ᎾᏍᎩ ᎤᏬᎳ ᎩᎶ ᎢᏳᏍᏗ ᎦᏁᎸ ᏌᏩᏂ ᏧᏙᎢᏛ, ᏗᏑᏫᏍᎩ, ᎾᏍᎩ ᎠᎹᏳᎶᏗ ᏥᎦᏁᎸ, ᎾᏍᎩ ᏓᏣᏃᏁᎵ ᎢᏣᏛᏁᏗᏱ. ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎥᏝ ᎢᎬᏱᏗᏢ ᏱᏄᏍᏗ ᏗᏂᎧᏅᎢ. ᏆᎴᏗᏃ ᎤᏬᏪᎳᏅᎩ ᎠᎪᎵᏰᏗ, ᎠᎴ ᏓᏓᎿᏩᏍᏛ ᎤᏪᏯᎸᏅᎩ; ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎩ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ, ᎤᎬᏫᏩᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ. ᎠᎴ ᎦᏃᏙᏗᏱ ᏛᏂᎶᎯ, ᎢᏳᏃ ᏂᏚᎾᏑᎴᎲᎾ ᏱᎩ, ᎥᏝ ᏴᎬᎾᎵᏍᏓᏴᎲᎦ. ᎠᎴ ᎤᏣᏔ ᏄᏓᎴ ᎪᎱᏍᏗ ᏧᏂᎧᎿᏩᏛᏍᏗ ᏄᏅᏁᎸ, ᎾᏍᎩ ᏧᎵᏍᏈᏗ ᏗᎫᎯᎶᎥᎢ ᎠᎴ ᏗᏖᎵᏙ, ᎠᎴ ᎥᏣᏱᏗᎪᏢᏔᏅᎯ ᏗᏖᎵᏙ, ᎠᎴ ᏗᏂᏢᏗᏱ. ᎣᎯᏍᏙᏗ ᎠᎵᏍᏓᏴᏗ ᏂᎬᏁᎮᎢ ᏫᎵᎻ ᎠᎳᏂ. ᏱᏥᏍᏆᏗᏍᎬᎾ ᎠᏓᏅᏖᏗ. ᏃᏗ ᎤᏩᏃᏫᏍᎨ ᏫᎵᎻ, ᎠᏎᏃ ᎪᎱᏍᏗ ᏱᏁᎵᏍᎬᎾ ᎨᏎ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎢᏣᎵᏍᏓᏴᎲᏍᎨᏍᏗ, ᎠᎴ ᎢᏣᏗᏔᏍᎨᏍᏗ, ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᏂᏣᏛᏁᎮᏍᏗ, ᎤᏁᎳᏅᎯ ᏅᎸᏉᏗᏍᎩ ᎨᏎᏍᏗ ᏂᎦᎥ ᏂᏣᏛᏁᎲᎢ. ᎾᏍᎩ ᎢᏣᏅᏓᏗᏍᏗᏱ ᎧᏃᎮᏛ ᎢᎸᎯᏳ ᎤᏂᏃᎮᏛ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎠᏴ ᏦᎦᏕᏲᏅᎯ ᎣᎩᏅᏏᏛ ᎤᎬᏫᏳᎯ ᎠᎴ ᏗᏍᏕᎵᏍᎩ. ᏌᏩᏂ ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏣᎬᏫᏳᎯ, ᎭᏢ ᎭᎢ? ᏥᏌ ᎤᏁᏤᎸᎩ; ᏫᏥᎦᏛ ᎥᏝ ᎿᏉ ᏴᎨᏍᎩᏍᏓᏩᏚᎦ; ᎣᏂᏍᎩᏂ ᏓᏍᎩᏍᏓᏩᏕᏏ. ᎠᏎᏃ ᏚᏭᎪᏔᏁᎢ ᎤᏩᏛᏗ ᏱᎪᎵᎬᎾ ᎤᎾᎵᎢ. ᏧᏂᏲᎱᏒᎯᏰᏃ ᏓᎾᎴᎯᏌᏅᎭ, ᎥᏝ ᏱᏓᎾᏕᏒᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ ᏱᏗᎨᏥᏰᎪᎢ; ᏗᏂᎧᎿᏩᏗᏙᎯᏍᎩᏂ ᎦᎸᎳᏗ ᎠᏁᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᎾᏍᎩᏯ ᎨᏐᎢ. ᎾᏍᎩ ᎬᏂᎨᏒ ᏄᏩᏁᎸ ᎠᎩᎾᏄᎪᏫᏎᎸᎩ ᎤᏕᎵᏛ ᎨᏒᎢ, ᎦᏳᎳ ᎢᎸᏍᎩ ᎢᎧᏁᏨᎯ ᎬᏗ ᏥᏨᏲᏪᎳᏁᎸ, ᎾᎥᏂ ᎤᏬᏢ ᏍᎦᏰᎬᏍᏔ ᏕᎪᏪᎵᏍᎬ ᎠᏨᏍᏛ ᎧᏃᎮᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ ᎢᎦ ᎨᏒ. ᎤᎵᏏᎩ ᏃᎴ ᎤᏃᏴᎵᏓ ᎣᎯᏍᏙᏗ. ”ᏃᏗ ᎠᎴᎾ ᎤᏦᎠᏎᏗ,” ᎤᏪᎵᏎ ᏫᎵᎻ. ᎩᎶ ᎤᏓᎵᎢ ᎢᎠᏓᎡᎨᏍᏗ, ᎠᎴ ᏅᏩᏓᎴ ᎠᏓᏰᎨᏍᏗ, ᎠᏓᏲᏁᎮᏍᏗ; ᎩᎶᏃ ᎠᎦᏓᎢᏅᏛ ᎠᏓᏰᎨᏍᏗ ᎠᏓᏲᏁᎮᏍᏗ. ᎠᏎᏃ ᏥᏌ ᎤᏙᎴᎰᏒ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬᎢ, ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᏙ ᎢᏣᏓᏅᏖᎭ ᏙᏗᎶᏓᏅᏛᎢ? ᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᏔᎵ ᏗᏣᏄᏬ, ᎠᎴ ᏗᎳᏑᎶ, ᎠᎴ ᏗᏙᎳᏅᏍᏗ; ᏧᎸᏫᏍᏓᏁᎯᏰᏃ ᎤᏩᏛᏗ ᎨᏐ ᎤᎵᏍᏓᏴᏗ. ᎾᏍᎩᏯᏍᎩᏂ ᎯᏍᏓᏱᏳ ᎨᏒ ᎠᎴ ᏣᏁᏟᏴᏛ ᏂᎨᏒᎾ ᏣᎾᏫ ᎯᏟᏏᎭ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎾᎯᏳ ᎢᎦ ᎠᎵᏱᎶᎸᎭ ᎤᏓᎳᏬᎯᏍᏗ ᎨᏒ ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᏧᏭᎪᏙᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏒᎭ; ᎠᏆᏛᏅ, ᏣᏃᎮᏗ ᎨᏒ, ᏣᏓᏅᏖᏗᏍᎨᎢᏧ ᏕᏣᎪᎲ ᏚᏂᏰᏝᎸ ᏚᎾᏥᎶᎥ ᏂᏓᎾᏛ ᏗᏂᏲᏟ ᏗᎦᎶᎯᏍᏗ ᏓᎭᏦᎲᏴ, ᏧᏂᏍᏗ ᏥᎨᏎ ᏓᏳᏓᎴᏅᏓ? ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏂᎯ ᏱᏣᏠᏯᏍᏗᏍᎨᏍᏗ ᎤᎾᎵᏩᏛᎡᎲᎢ. ᏂᎦᏓ ᎤᎾᎩᎸᏁ ᏃᎴ ᎤᏁᏅᏎ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ ᎠᎬᏱᏣ. ᏂᎦᏓ ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎦᏛ ᎠᏂᎨᏯ ᎣᏍᏓ ᎠᏓᏅᏓᏗᏍᎩ ᎠᏂᎪᏩᏘᏍᎬ. ᎥᏝᏍᎩᏂᏃᏅ ᎦᏳᎳ ᏥᏓᎩᏂᏴᏐ ᎾᏍᎩᏯ ᏯᎩᏰᎸᎭ, ᎥᏝ ᎠᎴ ᎠᎩᏍᏆᏛᎯ ᎦᏳᎳ ᏯᎩᏰᎸᎭ; ᏥᏍᏓᏩᏕᎦᏍᎩᏂ, ᎢᏳ ᏰᎵ ᏱᎩ, ᎾᏍᎩ ᏗᎩᏂᏴᏗᏱ ᎾᏍᎩ ᎾᏍᏉ ᎤᎬᏩᎵ ᎦᎶᏁᏛ ᏥᏌ ᏥᏓᎩᏂᏴᎲᎩ. Perry ᏥᎾᏒᏅ ᎤᏍᏖᎸᏗ ᎠᏓᏍᏔᏴᎲᏍᎩ, ᎠᏂᏐ ᎠᏂᏔᎵ ᎣᎩᎵᏦᏩᏛ ᎾᎥᏂ ᎤᎾᎦᏎᏍᏛ. ᏍᎩᏴᏃ ᏲᎾ ᎤᏤᎵᎪ ᏐᏉ ᎢᏯᎦᏴᎵ ᎢᏰᏆ, ᎤᏩᏌ ᎤᏤᎵᎪ, ᏃᎴ ᎠᏯ ᎠᏆᏤᎵᎪ ᏰᎵ ᎢᏰᏆ, ᎠᏎᏃ ᏓᏆᏓᏚᎬ, ᏧᏓᎸᏏᏴᏓ, ᎾᎥᏂᎨ ᎤᏁᏍᎩᎸ ᏥᏍᏆ ᎠᏣᏗ ᏗᎦᏯᎩᏍᎩ. “ᏕᏥᏰᏲᎾ,” ᎤᏪᎵᏎ ᏥᏍᏚ. ᏄᎬᏫᏳᏒ ᎠᎦᏰᎬᏍᏔ ᎦᏰᏌᏛ ᏭᏭᏍᏘᏅ ᎤᏴᏣ ᎤᎦᎹ ᎠᏥᏍᏛ ᎤᏃᏮ, ᎤᏅᏍᎩᎳᏛ ᎦᏰᏌᏛ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᏯᏙᏤᎮᏍᏗ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᏴᏫᏰᏃ ᎬᏅ ᎥᏝ ᎤᏣᏘ ᎤᎿᎥ ᏳᎵᏍᏕᎸᏙᏗ. ᎠᏂᏐ ᎠᏂᏣᏗ ᎤᏍᏗ ᎠᏣᏗ ᎠᏃᏎᎮ. ᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎰ ᎤᏩᏛᏗ ᎠᏗᏅᏓ ᎠᏙᎯ. ᎾᏍᎩ ᎯᎠ ᎠᏙᎴᎰᏍᎬᎢ ᏅᏧᎵᏍᏙᏔᏁᎢ, ᎦᎶᏁᏛ ᏧᎴᎯᏐᏗ ᎨᏒ ᎤᏃᎮᎴᎢ, ᎾᏍᎩ ᎤᏓᏅᏙ ᏫᏂᏓᏥᏲᎯᏎᎸᎾ ᎨᏒ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏇᏓᎵ ᏄᎪᏒᎾ ᎨᏒᎢ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᎪᎯ ᏣᏁᎭ ᎥᏝ ᏴᏛᏂᎶᏐᏂ, ᎬᏂ ᏂᎦᏛ ᎯᎠ ᏧᏓᎴᏅᏛ ᏂᎦᎵᏍᏔᏅᎭ. ᏚᏁᏤᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᎡᏥ, ᎠᎴ ᎣᏣᎵᏅᏟ? ᎤᏍᏗ ᎠᎪᏙᏗ ᏂᎦᏛ ᎦᎸ ᎠᎪᏗᏍᎪᎢ. ᎠᎴ ᏑᏓᎵᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ ᏕᏥᎦᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎦᏙᎯ ᎤᏣᏘ ᎤᎵᏖᎸᏅᎩ; ᎠᎴ ᏅᏙ ᎢᎦ-ᎡᎯ ᎬᎿᎨ ᏄᎵᏖᎸᏅᎩ ᎾᏍᎩᏯ ᎤᏏᏕᏅ ᎠᏄᏬ ᎪᏢᏔᏅᎯ, ᏅᏙᏃ ᏒᏃᏱ ᎡᎯ ᎩᎬ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏅᎩ. ᎠᎴ ᎯᎨᏳᏎᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎲᏗᏍᎨᏍᏗ ᏂᎬ ᏣᎾᏫ, ᎠᎴ ᏂᎬᏣᏓᏅᏙ, ᎠᎴ ᏂᎬ ᏣᏓᏅᏖᏗᏱ, ᎠᎴ ᏂᎦᎥ ᏣᎵᏂᎬᎬᎢ. ᎯᎠ ᎾᏍᎩ ᏭᏓᎪᎾᏛᏛ ᎦᎸᏉᏗ ᏗᎧᎿᏩᏛᏍᏗ. ᎤᏃᏴᎵᏗ ᎤᏍᏆᏄᏤ ᏃᎴ ᎤᎨᎢ ᎤᎵᏍᏓᏴᏗ, ᎤᏩᏅᎬ ᏂᎦᏓ ᎤᎩᏍᏗ. ”ᎦᏅᎯᏓ, ᏃᎴ ᎤᏬᏍᎩᎵ,” ᎤᏛᏁ ᎰᎻ. ᎢᏓᎵᏅᏟ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏓᎧᎿᏩᏗᏙᎮᏍᏗ ᏗᏣᏓᏅᏙ. ᎡᎺᏅ. ᎥᏳᎩ ᎠᏂᏱᏙᎯ ᏗᏥᎶᏍᏔᏅ ᎯᎠ. ᎠᎴ ᎣᎩᏁᏤᎸᎩ ᏴᏫ ᏦᏣᎵᏥᏙᏁᏗᏱ, ᎠᎴ ᎣᎩᏃᎮᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᎧᏅ ᏗᎫᎪᏓᏁᎯ ᏄᏩᏁᎸ ᏗᏅᏃᏛ ᎠᎴ ᏧᏂᏲᎱᏒᎯ. ”ᎡᎭ, ᎡᏝᏪᎯ!” ᎤᏛᏁ ᎤᏃᏕᎾ ᎠᏓᎯ. ᎤᎵᏨᏓᏋ ᎤᏬᏂᏒ ᏃᎴ ᏙᎩᎾᏗᏔᎲ. “ᎯᎧᏔᎭ ᏍᎩᎾᎾ ᏱᏅᎬᎦᎵᏍᏓ. ᎯᎠᏰᏃ ᏴᏫ ᎤᏂᎾᏫ ᎤᎵᏦᎲᏒ, ᎠᎴ ᏓᏂᎵᎷᎬ ᎦᏂᎵᏳ ᎠᎾᏛᎩᎠ, ᎠᎴ ᏗᏂᎦᏙᎵ ᏚᏂᏍᏚᎭ; ᎾᏍᎩ ᏗᏂᎦᏙᎵ ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏓᏂᎵᎷᎬ ᏗᎬᏩᎾᏛᎪᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏂᎾᏫ ᎬᏩᏃᎵᏍᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏚᎾᏓᏅᏛ ᏧᏏᏁᏟᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎠᎴ ᏗᎦᎦᏥᏅᏬᏗ ᏂᎨᏒᎾ. ᎦᏃᏍᎩᏍᎩ ᎦᎷᎪᎢ, ᎤᏃᏍᎩᏍᏗᏱᏉ ᎠᎴ ᎤᏓᎯᏍᏗᏱᏉ ᎤᏰᎸᏐᎢ: ᎠᏴ ᎠᎩᎷᏥᎸ, ᎬᏂᏛ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᎾᏤᎵᎦ ᎢᏨᎵᏍᏙᏗᏱ. ᏃᎴ ᏍᏉ, ᎤᏲ ᎧᏃᎮᏓ ᏥᏲᎦ. ᎢᏳᏍᏗᏉ ᏧᎷᏫᏍᏔᏁᎯ ᏥᏍᏕᏥ ᎯᏤᎵᏍᎪᎢ?” ᏛᎦ ᏕᎦᏂᏱᏍᎪ ᏃᎴ ᎩᎦ ᎤᏂᏁᎲ ᎭᏗᏔᏍᎪᎢ. ”ᎭᏗ,” ᎤᏛᏁ ᎤᏙᏓ. ᏗᏥᎪᎵᏯ ᎠᏪᎵ, ᎾᎿᏰᏃ ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎢᏥᎭ ᎢᏥᏰᎸᎭ, ᎠᎴ ᎾᏍᎩ ᎾᎪᏪᎵ ᎠᏴ ᎠᎩᏃᎮᏍᎩ. ᎠᏆᏛᏅ. ᎠᏎᎩ ᏔᎵᏁᎢ ᏗᎪᏏᏐᏗ ᏫᎬᎾᎩᎡᏗ ᏛᏣᏚᎸ.” ᎨᏍᏗ ᎯᎸ ᎡᏆ ᏍᎦᏚᎩ ᏍᎩᏲᏍᏓ ᏰᎭ ᎾᏍᎩ ᎢᎦᏤᎵ ᏏᏆ.” ᏚᏳᎪᏛᎩ ᎣᏍᏛ ᎢᎦᏓᏅᏓᏗᏍᏗᏱ, ᎠᎴ ᎢᎩᎵᎮᎵᏍᏗᏱ; ᎯᎠᏰᏃ ᎡᏣᏅᏟ ᎤᏲᎱᏒᎯ ᎨᏒᎩ, ᏔᎵᏁᏃ ᎢᎡᎭ, ᎠᎴ ᎡᏓᏠᏨᎯ ᎨᏒᎢ, ᎢᎠᏥᏩᏛᎲᏃ. ᎠᏌᎹᏓᏗ.” “ᏍᎩ, ᏍᎩ, ᏍᎩ!” ᎠᎾᏗᏍᎨ, ᏳᏂᎪᎭ ᎠᎵᏍᏓᏴᏗ. ᎢᏨᏅᏒᎩ ᏫᏥᏍᎫᏕᏍᏗᏱ ᎾᎿ ᏂᎯ ᏗᏥᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ; ᏅᏩᎾᏓᎴ ᏗᏂᎸᏫᏍᏓᏁᎸᎩ, ᏂᎯᏃ ᎢᏥᏴᎸ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ. ᎥᏝ ᎠᎴ ᎾᏍᎩ ᏰᎵ ᏂᎪᎢ ᏱᏇᎵᏎ ᏫᎬᎷᏤᏗᏱ; ᎯᏁᎩᏉᏍᎩᏂ, ᏥᏅᏏᏓᏍᏗᏃ ᏧᏳᏗᏩᏏ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᎭ ᎠᏆᏢᏉᏙᏗ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎨᏒᎢ. ᎤᏣᏓ ᎣᏍᏓ ᏥᎾᏌᎠ ᏏᏆ. ᏚᏂᏄᏪᏒᏃ, ᎩᎦᎨ ᎦᏌᎴᎾ ᎤᏂᏄᏬᎡᎢ. ᎾᏍᎩᏃ Ꮎ ᎠᏂᏍᎦᏯ, ᎤᏂᎪᎲ ᎤᏍᏆᏂᎪᏗ ᏥᏌ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎤᏙᎯᏳᎯᏯ ᎾᏍᎩ Ꮎ ᎠᏙᎴᎰᏍᎩ ᎡᎶᎯ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ. ᎾᏍᏉᏃ ᏧᎾᏓᎵᎢ ᎨᏥᎸᏉᏗ ᎨᏎᏍᏗ, ᎤᏐᏅ ᎠᎾᏓᏃᎮᎵᏙᎯ ᏂᎨᏒᎾ, ᎠᏁᏯᏔᎯᏍᎩᏂ ᎨᏎᏍᏗ, ᏰᎵᎦᏯ ᎢᏯᎾᏛᏁᎯ ᏂᎦᎥ ᎪᎱᏍᏗ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎥᏓᎸ ᏭᏂᎶᏒᎩ; Ꭷ ᏂᎯ ᏗᏤᎿᎢ ᏗᏣᏠᏱᎦ ᎠᎴ ᏗᏥᏴᎳ ᏫᏂᎦᎵᏍᏙᏓ ᎢᏥᎩᎵᏲᎢᏍᏗ ᎢᏥᎷᏤᏗ ᏥᎩ. ᎦᏁᎦ ᏗᎪᏒᏍᏔᏅ ᎠᏂᏁᎸ ᏃᎴ ᏧᎩᏓᏟ ᏗᎪᏒᏍᏔᏅ ᏚᎾᎵᏍᏚᎸ ᎠᏎᏱᎩ. ᎿᏉᏃ ᎢᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎯᎠ ᏱᎩ ᏧᎾᏚᎵ ᎤᏂᎯᏍᏗᏱ? ᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏙᎴᎰᏍᎩᏍᎪ? ᎥᎥ, ᎢᏨᏲᏎᎭ, ᎠᎴ ᎤᏟᎯᏳ ᎡᏍᎦᏉ ᎠᏙᎴᎰᏍᎩ. ᎿᏉᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᏂᎦᏛ ᏴᏫ ᏕᎨᎦᏬᎥ ᏥᏌ ᎾᏍᏉ ᎠᎦᏬᎡᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏅ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏎᎢ, ᏄᏓᎴ ᎤᎵᏍᎪᎵᏙᏛ. ᎢᎦᏃ ᎨᏒ ᏓᏕᏲᎲᏍᎨ ᎤᏛᎾᏗᎦᏔᏫᎢᏍᏗᏱ; ᎤᏒᏃ ᎦᏄᎪᎨᎢ, ᎠᎴ ᎣᎵᏩᏲᎯ ᏣᏃᏎᎰ ᎣᏓᎸ ᎤᏒᎯᎮᎢ. ᎾᏍᎩ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᏓᎦᎷᏥ ᎾᎯᏳ ᎢᎦ ᎾᏓᎦᏖᏃᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎢᏳ ᏁᎵᏍᎬᎾ ᎨᏒᎢ, ᎤᏂᎬᏫᏳᎯ ᎠᎴ ᎾᏂᎥ ᎠᏰᎵ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎠᎴ ᏄᎾᏰᎯᏍᏛᎾ ᎢᎦᎴᏂᏓᏍᏗᏱ, ᏕᏗᎧᎿᏩᏗᏒ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ”ᎭᏂᏉ ᎤᏩᏌ ᎬᏇᏓᏍᏗ ᎠᏎ ᏯᏆᏚᎵᏍᎬᎾ ᏱᎩ. ᎰᎻ! ᎾᏍᎩ ᎢᏰᎵᏍᎩ ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᏓᏅᏖᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏴ ᎾᏍᎩᏯ ᏃᎦᏍᏛ ᎣᏥᏬᏂᏍᎬ ᏙᏦᏪᎵᏍᎬᎢ, ᎾᎿ ᏫᏃᏤᏙᎲᎾ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏃᎦᏍᏕᏍᏗ ᏙᎩᎸᏫᏍᏓᏁᎲ ᎿᏉ ᎾᎿ ᏬᏤᏙᎮᏍᏗ. ᎤᎪᏏᏓ ᎤᏪᏥ ᏭᎶᏒᏍᏛ ᎠᏒᎩ. “ᎠᏕᎳᎨ ᏱᏕᏍᎬᏏ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏄᏪᎲᎾᏍᎩᏂ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎾᏍᎩ ᏗᎨᏫᏉ ᎠᎴ ᎢᏴᏛ ᎬᏩᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏩᎨᏫᏒᎯ ᎠᏥᏅᎦᎸᏛ ᎨᏒ ᎢᎸᎯᏳ ᎤᏍᎦᏅᏥᏙᎸᎢ. ”ᎲᎦ ᎢᏴ ᎭᏓᏅᏖᏍᎪ?” ᎤᏓᏍᏗᏰᏕ ᏫᎵᎻ. ᎠᎺᏉᎯ ᎤᎿᎸᎯ ᏗᎵᏍᏗᎳᏁᎩ, ᎤᏅᏒ ᎤᎾᏕᎰᎯᏍᏗᏍᎩ ᎠᏂᎾᏄᎪᏫᏍᎩ; ᏃᏈᏏ ᎤᏂᏅᏅ ᎤᎾᏞᏛ, ᎾᏍᎩ ᎤᏣᏘ ᎬᎿᎨ ᎤᎵᏏᎬ ᏥᎨᎦᏛᏅᎢᏍᏓᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎣᏂᏃ ᏥᎻ ᎤᎪᎮᎢ; ᎿᏉᏃ ᏂᎦᏛ ᎨᏥᏅᏏᏛ [ᎢᎬᏩᎪᎮᎢ.] ”ᎯᏯᎦᏎᏍᏕᏍᏗ ᏣᏄᏏ!” ᎤᏁᎷᏁ ᏩᎦ. ᎯᎦᏓᏅᏖᏍᎪ ᎯᎸᎢᏴ. ᏍᎩᏄᏍᏛᎢ ᎣᏍᏓ ᎨᏐ ᎤᎾᏗᏍᎦᎳᏁᏗ ᎠᎦᎵᎲ. ᎾᏍᎩ ᎤᏧᏈᏍᏗ ᏥᎩᏐᏅᏰᎵ, ᏥᏌ ᎦᎶᏁᏛ ᎢᎩᏍᏕᎵᏍᎩ ᎢᏳᏩᏂᏌᏛ; ᎤᏤᎵ Pontiac ᏓᏆᎴᎳ, ᎦᏓᎥᎢ ᏗᎪᏪᎵ “H-2439” ᎯᎲᎾ ᎤᏣᏗᎾ ᏗᏍᏔᏲᏍᏙᏗ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏓᏁᎸᎢ!” ᎿᏉᏃ ᏛᎾᎴᏅᎯ ᎯᎠ ᏂᏙᏛᏂᏪᏎᎵ ᏙᏓᎸᎢ, ᏍᎩᏯᏐᎥᎦ; ᎠᎴ ᏚᏌᎯᎸᎢ, ᏍᎩᏳᏢᎥᎦ. ᏗᎦᏃᏣᏢᏍᎩ ᎪᏪᎵ ᎤᏩᏕᏯᏍᏔᏁᎢ ᎢᏈᎬᎢ, ᎥᏍᎩᏃᎢᏳᏍᏗ ᎩᎶ ᎤᎳᏍᏓᏒᏗ ᏂᎨᏒᎾ. ᎯᏆᎵᏏ ᏘᎨᏫ! ᎢᎬᏱ ᎯᏅᎦᎸ ᎠᏫᏂᏗᏢ ᎤᎵᏍᏈᏗ ᎠᎴ ᎠᏖᎵᏙ, ᎦᏚᎢᏗᏢᏃ ᎾᏍᏉ ᏧᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ. ᏔᎵ ᎢᏳᎾᏙᏓᏆᏍᏗ ᎢᏳᏕᏘᏴᏓ ᏄᎵᏍᏔᎾ, ᏙᏱᏨ ᏭᏂᎧᏁ. ᎯᏍᎩᎦᏏᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᏓᏈᎵᏯ ᏏᏌ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᏋᏗᏯ ᏆᎴᏗ ᏧᏗᏱ ᏣᎦᏁᎶᏗ ᎨᏎᎢ, ᎠᎴ ᎡᎶᏛ ᎨᎵᎵ ᏍᎦᏚᎩ ᎨᎡ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏎᎢ, ᎤᏅᏟᏃ ᏈᎵᎩ ᎢᏚᎵ ᎠᎴ ᏝᎪᏂᏗ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏎᎢ, ᎵᏌᏂᏯᏃ ᎠᏈᎵᏂ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏎᎢ; ᎤᎵᏍᏆᎸᏗ ᎨᏒ. ᎠᏎᏃ ᎥᏝ ᏌᏉᎤᏅ ᏱᏄᏁᏤᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏎᎢ. ᎤᏪᏘᎨ ᎠᎵᏑᏫᏓ ᎠᏁᏟᏙᏘ ᏲᎾ ᎢᏳᏍᏗ ᎦᏚᎢ ᏥᏟᎲᎢ, ᏂᎦᏓ ᎬᏆᎧᏙᏍᏛᎢ. ᏂᎯᏰᏃ, ᎢᏓᎵᏅᏟ, ᏗᏥᏍᏓᏩᏕᎩ ᏂᏣᎵᏍᏔᏅᎩ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏧᏗᏱ ᎠᏁᎯ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᎬᏬᎯᏳᎲᏍᎩ ᏥᎩ; ᏂᎯᏰᏃ ᎾᏍᏉ ᎤᏠᏱ ᏕᏥᎩᎵᏲᏤᎸᎩ ᏗᏣᏤᎵᎦ ᏴᏫ, ᎾᏍᎩᏯ ᎾᏍᎩ ᏥᏚᏂᎩᎵᏲᏤᎴ ᎠᏂᏧᏏ; ᎾᏍᎩᏃ ᎯᎠ ᎣᎦᏛᎦᏅ, ᎠᏴ ᎠᎴ ᎾᎿ ᎠᏂᎯ ᎣᏥᏍᏗᏰᏔᏅᎩ ᏥᎷᏏᎵᎻ ᎤᏪᏅᏍᏗᏱ ᏂᎨᏒᎾ. “ᎡᏘᏴ ᏥᎨᏎ,” ᎤᎴᏅᏔᏁᎢ, “ᎤᏬᏚᏨ ᎣᏍᏓᏓᏤᎵ ᎤᏍᏗ ᎠᎹ ᎨᏴᎢ ᏚᏏᎳᏛᏁ. ᎢᎬᏱᏱᏃ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎩᎳ ᎢᎦ ᏥᏂᎦᎵᏍᏗᏍᎪᎢ, ᎤᏂᎷᏤ ᎠᏤᎵᏍᏛᎢ, ᏚᏂᏲᎴ ᏗᎦᏩᏒᎩ ᎾᏍᎩ ᏧᎾᏓᏁᎳᏅᎯ, ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏁᎮᎢ. ᎾᏍᎩᏃ ᎦᏳᎳ ᏥᏂᏚᏑᏰᏐᎢ ᎾᏍᎩ ᎾᏍᏉ ᏚᏯᏅᎮᎢ; ᎠᎴ ᎾᏍᎩ ᏧᏯᏅᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏚᏭᏓᎴᏎᎢ; ᎠᎴ ᎾᏍᎩ ᏧᏭᏓᎴᏛ ᎨᏒ, ᎾᏍᎩ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᏂᏚᏩᏁᎴᎢ. ᎾᏍᎩ ᎠᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᎠᏍᎦᎾ ᎠᎦᏔᎲᏍᎩ ᎾᎿ ᎤᎵᏓᏍᏔᏅᎯ ᎠᎢᏒᎢ, ᎾᏍᎩ ᎠᏍᏕᎵᏍᎬ ᎫᏓᎵᏍᎬ ᎠᏓᏅᏙ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎠᏍᏚᏅᏨᎯ ᎨᏒ ᎬᏍᎦᎸᏍᎬᎢ. ᎤᏁᎳᏅᎯ ᎯᎠ ᏴᏫ ᎢᏏᎵ ᎤᎾᏤᎵᎦ ᏚᏑᏰᏎ ᏗᎩᎦᏴᎵᎨᎢ, ᎠᎴ ᏚᏌᎳᏓᏁ ᎯᎠ ᏴᏫ ᎠᏁᏙᎯᏉ ᏥᎨᏎ ᎢᏥᏈᏱ, ᎠᎴ ᎧᏃᎨᏂ ᎤᏌᎳᏛ ᎤᏩᏔᏁ ᎾᎿ ᏙᏧᏄᎪᏫᏎᎢ. ᎤᏕᎶᎰᏎ ᏫᎵᎻ ᎠᎾᎵᎮᎵᎬ ᎤᏂᎪᎲ. ᏂᎯᏃ ᏗᏥᏲᎱᏒᎯ ᏥᎨᏒ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸ ᎠᎴ ᎢᏥᏍᎦᏅᏨᎢ;-- “ᏣᏉᏍᎪ ᎠᎧᏔᏍᏔᏅ ᎫᏩᏢᏗ ᏱᎩ ᏥᏍᏕᏥ, ᎾᎨ ᎢᏴ ᏩᎦᏓᎩᏅᏓ ᏱᎨᏒᎾ?” ᎤᏂᎦᎵᏴ ᏓᏰᏙᎲ ᏣᎵ, ᏧᏓᏍᏈᏗ ᏗᎦᏅᏍᎨᏂ, ᏐᏈᎵ ᏗᎧᎸᏗᏍᎩ ᎢᏳᏍᏗ, ᎠᏎᏃ ᏎᎦᏨ ᎠᎩᎸᏗᏍᎩ ᏐᏈᎵ. ᎠᎴ ᏅᏓᏳᏅᏍᏗᏱ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎦᏳᎳ ᎡᏣᎵᏥᏙᏁᎸᎯ ᏥᎩ; ᏫᏓᎩᏴᎲ ᏃᏥ ᏚᏂᎳᎦᎸᎲ ᏔᎵ ᎦᎶᏇ, ᏧᏪᏘ ᏧᎾᏓᏍᏕᏓᎵᏴᏓ. ᎾᏍᎩᏯᎢ ᎬᏂᏛ ᎠᎦᏴᎵᎨᎢ ᎠᎩᏅᏏᏛ ᏥᎩ, ᎠᎴ ᎠᎦᏴᎵᎨ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᏥᎬᏅ, ᎾᏍᎩᏯᎢ ᎠᏴ ᎠᏆᎵᏍᏓᏴᏗᏍᎩ ᎾᏍᎩ ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎬᏁᏍᏗ. ᎠᎴ ᎠᏍᏓᏯ ᏙᎩᎸᏫᏍᏓᏁᎰᎢ, ᎣᎬᏒ ᏦᎪᏰᏂ ᏙᏨᏗᏍᎪ ᎪᎱᏍᏗ ᎣᏣᏛᏁᎰᎢ. ᎦᏲᎩᏐᏢᏗᏍᎬ ᎣᏍᏛ ᏙᏥᏁᏤᎰᎢ; ᎤᏲ ᏃᎬᏁᎲ ᎤᏁᎳᎩ ᎣᏤᎵᏍᎪᎢ; ᎢᏳᏰᏃ ᏱᏓᎴᏂᏙᎭ, ᎤᎬᏫᏳᎯ ᎡᏓᎴᏂᏕᎭ; ᎠᎴ ᎢᏳ ᏱᏗᏗᏲᎱᏍᎦ, ᎤᎬᏫᏳᎯ ᎡᏗᏲᎱᎯᏎᎭ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏳᏃ ᏱᏓᎴᏂᏙᎭ, ᎠᎴ ᏱᏗᏗᏲᎱᏍᎦ, ᎤᎬᏫᏳᎯ ᎡᏓᏤᎵᎦ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᏌᏩᏂ ᏦᎾ ᎤᏪᏥ; ᎥᏝᏰᏃ ᎤᏇᏓᎵ ᎠᎴ ᎩᎬ ᎾᏍᎩ ᏱᏣᎾᏄᎪᏫᏎᎸ, ᎡᏙᏓᏍᎩᏂ ᎦᎸᎳᏗ ᎡᎯ. ᎤᏂᏣᏔᏰᏃ ᏂᏚᎾᏓᏁᎶᏛᎾ, ᎠᏎᏉᏉ ᎠᏂᏬᏂᏍᎩ, ᎠᎴ ᎤᎾᏠᎾᏍᏗ, ᎨᎤᎬᏫᏳᎭ ᎾᏍᎩ Ꮎ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ; ᏣᏗᏲᎪ. ᎠᎴ ᏌᏉ ᎩᎬ ᏚᏬᏢᏔᏅ ᎾᏂᎥ ᏄᎾᏓᎴᏒ ᏴᏫ ᎾᏍᎩ ᏧᎾᏁᎳᏗᏍᏗᏱ ᏂᎬᎾᏛ ᎦᏚᎢᏗᏢ ᎡᎶᎯ, ᎠᎴ ᏕᎤᏚᎪᏔᏅ ᎢᏳᎵᏍᏔᏂᏓᏍᏗᏱ, ᎠᎴ ᏫᏚᏍᏖᏅ ᎾᎿ ᏕᎨᏌᏗᏒ ᏧᎾᏁᎳᏗᏍᏗᏱ. ᎠᏏᏉᏃ ᎠᏂᏱᎵᏒ ᎬᏩᏛᏛᏍᎬ ᎤᏓᏥᏃᎯᏍᏔᏅᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎩᎶ ᎤᏓᏑᏰᏍᏗ ᎤᏍᏕᏅᏨᎯ ᏂᎨᏒᎾ ᎾᏍᎩ ᎢᎬᏱ ᏫᏓᏓᎴᏅᏓ ᏅᏯ ᏫᎬᏂᏍᏓ. ”ᎫᏩᏣᎴ ᏲᎾ ᎤᏤᏍᏙ!” ᏚᏃᎩᏎ ᎡᎳᏆᏗ. ᎿᏉᏃ ᏂᎦᏛ ᎤᎦᎵᏍᏗᏳ ᎤᎾᏓᏅᏓᏛᎩ, ᎠᎴ ᎾᏍᏉ ᎤᎾᎵᏍᏓᏴᏅᎩ. ᎠᏂᏥᎸᏍᎩ ᎤᎦᎾᏍᏓ ᎾᏅᏁᎰ ᎤᏃᎴ, ᏃᎴ ᎠᏍᎪᎸᎪ. ᎠᎴ ᎠᏴ ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎠᏏ ᏱᎦᎵᏥᏙᎲᏍᎦ, ᎦᏙᏃ ᎠᏏᏉ ᎤᏲ ᏂᎥᏋᎿᏕᎦ? ᎿᏉ ᎠᎲᏛ ᏂᎦᎵᏍᏗᎭ ᏗᏓᏙᏕᏍᏗᏍᎩ ᎨᏒ ᏓᏓᎿᏩᏍᏛᎢ. “ᎬᏯᎵᎮᎵᏤᎭᏛ ᎤᎵᎮᎵᏍᏗ ᏄᏪᏎ ᏧᏍᏆᏴᏍᏗ. ᏕᎬᏩᎳᏫᏦᎴᏃ ᎠᏂᏆᎵᏏ, ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᎩ ᏗᏃᏪᎵᏍᎩ, ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ. “ᏍᎩᎾ ᎣᏏᏉᏧ?” ᏓᎾᎵᏂᎪᎯᏍᏗᏍᎨ ᏚᎾᏓᏅᏛ ᎠᏃᎯᏳᎲᏍᎩ, ᏓᏂᏔᏲᏎᎮ ᏧᏂᏲᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏓᏂᏃᏁᎮ ᎤᏣᏘ ᎠᎩᎵᏴ ᎢᎩᎶᎯᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏫᎩᏴᏍᏗᏱ. ᏞᏍᏗ ᏗᏥᏅᏒᎩ ᎠᏕᏄ ᏗᎦᎶᏗ, ᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᏗᎳᏑᎶ; ᎠᎴ ᏞᏍᏗ ᎩᎶ ᎡᏥᏲᎵᎸᎩ ᎢᏣᎢᏒᎢ. ᎯᎠ ᎾᏍᎩ ᎢᏥᎦᏔᎮᏍᏗ, ᎢᏦᎯᏳᏒ ᎠᎪᎵᎡᏗ ᎨᏒ ᎢᏨᏂᏗᏳ ᏂᏨᏁᎲᎢ. ᎠᏎᏃ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ; ᏂᎦᎥ ᏚᏰᎬ ᎡᏙᏓ ᏧᏫᏒᎯ ᏂᎨᏒᎾ ᏗᏰᎯᏍᏗ ᎨᏎᏍᏗ. ᎠᎦᏔ ᎠᏰᎸ ᎢᎦ ᎠᏘᏍᏓᏁᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎨᏎᏍᏗ ᎯᎦᏙᎵ, ᏂᎬ ᎯᏰᎸ ᎾᏍᏉ ᎧᎵᏬᎯ ᎨᏎᏍᏗ ᎢᎦ ᎦᏘ; ᎢᏳᏍᎩᏂ ᎯᎦᏙᎵ ᎤᏲ ᎨᏎᏍᏗ ᏂᎬ ᎯᏰᎸ ᎾᏍᏉ ᎧᎵᏬᎯ ᎨᏎᏍᏗ ᎤᎵᏏᎩ. ᎾᏍᎩ ᎨᏥᏚᎢᏍᏓᏁᎸ ᎤᎾᎵᏱᎶᎯᏍᏗᏱ ᎤᏚᎩ ᎤᏅᎭ ᏔᎳᏚ ᏃᏥᎳᏍᏓᎸᎢ, ᎤᎵᏂᎩᏗᏳ ᏥᏓᏂᎧᎿᏩᏗ ᎤᏁᎳᏅᎯ ᏗᎬᏩᎩᏨᏗ. ᎾᏍᎩ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎠᏂᏧᏏ ᎬᏇᎯᏍᏗᎭ. ”ᎣᏍᏓᏗ ᎨᏐ ᏗᏍᏆᏂᎪᏙᏗ ᎪᎱᏍᏗ” ᎠᏗᏍᎨ. ᎾᏍᎩ ᎤᎳᏐᏫᏍᏗ ᎠᏰᎭ, ᎠᎴ ᏂᎦᏛ ᏓᎦᎳᏐᏫᏏ ᎠᏲᏓᏝᎲᎢ, ᎤᏣᎴᏍᏗᏃ ᏓᎦᏟᏌᏂ ᏛᏂ ᎤᏗᏱ; ᎤᏬᎭᏄᎶᏔᏅᎯᏍᎩᏂ ᏛᎪᎲᏍᏔᏂ ᎠᏥᎸᏱ ᏂᎬᏠᏍᎬᎾ. ᎤᏍᏆᎳᎯ ᎨᏒ, ᏣᎵ ᏧᏤᎵ ᏴᏫ ᎦᎾᏰᎯᏍᏗ ᏄᏅᏁᎸ. ᎾᏍᎩ ᎤᎾᎳᏅᎯ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᏥᏚᎶᏁᏔᏁ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ, ᎾᏍᎩ ᏤᏙᎲ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᏕᎧᏅᏫ-Ꭼ ᏂᎦᏛ ᎤᏲ ᎢᏳᏅᎿᏕᎩ ᎠᏍᎩᎾ; ᎤᏁᎳᏅᎯᏰᏃ ᏚᎧᎿᏩᏗᏙᎲᎩ. ᎾᏍᎩ ᎢᏤᏅᎢᏍᏔᏅᎯ ᏥᎩ ᏂᎦᎥ ᏄᏓᎴᏒᎢ-ᏂᎦᎥ ᏗᏕᏲᏗ ᎨᏒ ᎠᎴ ᏂᎦᎥ ᎠᏕᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎢᏥᎾᏄᎪᏫᏍᎨᏍᏗ ᎧᏃᎮᏛ ᎬᏂᏛ ᎠᏓᏁᎯ; ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎠᏆᎵᎮᎵᏍᏗᏱ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏎᏉ ᏗᎩᏍᏆᎸᏔᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎠᏎᏉ ᏗᎩᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎯᎠᏍᎩᏂᏃ ᏂᏨᏪᏎᎲ ᎥᏝ ᏱᏨᎸᏉᏗᎭ, ᎾᏍᎩ ᏕᏥᎳᏫᏦᎯᎲ ᎥᏝ ᎣᏍᏛ ᎢᏳᎵᏍᏙᏗ ᏱᎨᏐᎢ, ᎤᏲᏉᏍᎩᏂ. ᎩᎳᏈᏴ ᎤᎯᏍᏗ ᏌᏌ ᎠᏓᎯ, ᎫᏩᏓᎩᏯᏍᏗ ᏱᎩ. ᎠᎧᏔᎮᎢ ᏌᏌ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎨᏴ ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎯ ᏳᏭᏢᏗ ᎠᏍᎪᎵ ᎾᏍᎩ ᎨᏥᏅᏏᏛ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ. ᎾᏍᎩ ᏌᏉ ᎠᎰᎵ ᏗᎦᏄᎪᎪ ᎦᎸᏉᏙᏗ ᎨᏒ ᎠᎴ ᎠᏍᎩᏅᏗᏍᏗ ᎨᏒᎢ. ᎢᏓᎵᏅᏟ, ᎥᏝ ᎣᏏᏳ ᏱᎩ ᎾᏍᎩ ᏥᏄᏍᏗ. ᎯᎠᏰᏃ ᎾᏍᎩ ᎧᏃᎮᏛ ᏥᏣᏛᎩᎭ ᏗᏓᎴᏂᏍᎬ ᏂᎨᏣᏛᎩᏍᎪᎢ, ᎾᏍᎩ ᏗᎦᏓᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ. ᎥᏝ ᏚᏳᎪᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᏗ ᎠᏴ ᎾᏍᎩ ᏕᎩᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᎢᎩᏍᏕᎸᎲᎩ ᎤᏮᏔᏅᎩ ᏔᎵᏁ ᎠᏕᏗ ᎨᏒ ᎤᎬᏩᎵ ᎠᏙᏑᎴᏗᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏁᏟᏴᏍᏗ ᎨᏒᎢ; ᏩᎩᎷᏣ ᏥᎪᎵᏰᏍᎬ: ᎭᏂ ᎠᏁᏙᎮ ᎢᎾᎨ ᎠᏁᎯ ᎠᏂᎩᎦᎨ ᎠᏂᏍᎦᏯ, ᎠᏎᏉ ᎠᏁᏙᎯ ᎬᏂᎨᎢ ᏚᏂᏍᏘᏰᎬ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏰᎵᏉ ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯ ᏓᏍᏓᏗᏔᎯ ᎤᎵᏍᏈᏗ ᎾᏍᎩ ᎠᏴ ᎠᏆᏗᏔᏍᏗ ᏥᎩ, ᎠᎴ ᏗᏓᏬᏍᏗ ᎨᏒ ᎠᏴ ᎥᏆᏬᏍᏙᏗ ᏥᎩ, ᎾᏍᎩ ᏙᏓᏰᏍᏓᏬᏍᏔᏂ; ᎠᎬᏱᏣ ᎤᏩᏌ ᏫᎫᏩᏂᎶᎯᏍᏗ. ᎠᎬᏅ ᎤᏟᎯᏳ ᎡᏍᎦᏉ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎠᏰᎸ ᎤᏟᎯᏳ ᎡᏍᎦᏉ ᏗᏄᏪ. ”ᎤᎵᎮᎵᏍᏗ,” ᎤᏛᏁ ᏫᎵᎻ. ᏓᏒᏍᏛᏃ ᎤᏍᏆᎸᎲ ᎡᎶᏛ ᎤᏄᏬᎥ ᎤᏂᎬᏫᏳᎯ ᎤᎾᏄᏬᏍᏗ, ᎤᏪᏁ ᎢᏅ ᎢᎦᏘ ᎦᏍᎩᎸᎢ, ᎠᎴ ᏚᎵᏥᏙᏁᎴᎢ. “ᎭᎳᏑᏢᎩ! ᎭᎳᏑᏢᎩ!” ᎤᏃᏎᎴ ᏩᎭᏯ. ᏭᏩᏅᏓᏕᎢ ᎢᏳᏍᏗ ᎤᏃᎯᏎᎸ ᏌᎳᏓ --- ᎨᏍᏗ ᎦᏓᏁ ᎢᎦᎵᏍᏗᏍᎩ ᏱᎩ ᏃᎴ ᎤᏟᏂᎩᏓ. ᎦᎪᎨᏃ ᎠᎦᎵᏯ ᎠᎴ ᎠᏏᎾᏌᏂ ᎠᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎤᏅᏏᏙᎯ ᏄᎬᏫᏳᏒ ᎢᏳᏩᏁᎸᎯ ᎦᏁᎸ ᏚᏓᏘᎿᎥᎢ, ᎾᏍᎩ ᎤᎾᎵᏍᏓᏴᏗ ᏧᏁᏗᏱ ᎤᎾᎵᏍᏓᏴᏗᏱ ᏂᎦᎵᏍᏔᏂᏒᎢ? ᎦᎸᎳᏗᏣ, ᎦᏳᎳ ᎦᏂᏏ ᏫᎦᏅᎨ ᎡᎳᏆᏗ ᏃᎴ ᎦᏟᎮ. ᎤᏒᎯ ᎢᏴ ᎤᏲᎶᏨ ᎢᏳᏍᏗ ᏄᏍᏕᎢ ᏗᎧᏃᏗ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎤᏣᏘ ᎠᏆᏚᎵᏍᎬᎩ ᎯᎠ ᎧᏃᎯᏰᎩ ᎢᏧᎳᎭ ᎢᎦᎵᏍᏓᏛᏗᏱ ᎠᏏᏉ ᎾᎩᎩᎵᏲᏨᎾ. “ᎨᏍᏗ ᎢᎸᎯᏳ ᎠᎩᎪᏛᎲ ᏍᎩᎾ ᏥᏥᏩᏔ. ”ᎣᏏᏉᏍᎪ ᎤᏅᏗ ᏳᏩᏆᏗᏔ? ᎠᏲᏍᏗᏍᎬ ᎪᏪᎸ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎦᏡᏗᏍᎩ, ᎾᏍᎩ ᎢᎩᏲᏍᏙᏓᏁᎯ ᏥᎨᏒᎩ, ᎠᎴ ᎤᎲᏒᎩ, ᎤᏤᎵ ᏓᏓᎿᏩᏍᏛ ᎤᏪᏯᎸᏅᎩ ᏴᏫ ᏚᏪᎭᏔᏅᎩ; ᎡᏏᏃ ᏦᏏᏆ ᎤᏕᏁᎴᎢ. ᏦᏏᏆᏃ ᏦᎳᎻ ᎤᏕᏁᎴᎢ; ᏦᎳᎻᏃ ᎣᏌᏯ ᎤᏕᏁᎴᎢ; ᎦᏅᏅ ᏍᎪᏁ ᏗᏗᎧᏃᎩᏍᎨ ”ᏩᎫᎵ, ᏩᎫᎵ!” ᏫᎬᏲᏪᎳᏏ, ᏓᏓᏏ, ᎠᏇᏥᏯᎢ, ᎾᏍᎩᏯ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏃᎯᏳᏒᎢ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎤᏓᏙᎵᏣᏛᎢ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᎩᏍᏕᎵᏍᎩ, ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ. ᎧᏃᎮᏛ ᏧᏓᏅᏎ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏛᎪᏗ ᏥᎧᏃᎮᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏩᏙᎯᏯᏛ ᎤᎬᏩᎵ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎾᏂᎥ ᎤᎾᏤᎵᎦ, ᎤᎪᎵᏰᎥ ᎫᎭᎳᎲ ᏃᎴ ᎠᏓᏪᎳᎩᏍᎬ ᎬᏘ ᎤᏅᎦᎳᎲ. ᏂᏓᏟᎶᏍᏓᏁᎲᎾᏍᎩ ᎥᏝ ᏱᏚᏬᏁᏔᏁᎢ; ᎤᏅᏒᏃ ᎨᏎᎢ, ᏂᎦᏛ ᎾᏍᎩ ᏚᏬᏏᏌᏁᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ. ᏚᎧᎾᏁ ᎤᎾᎵᎢ. ᏥᏌᏃ ᎦᏙᎨ ᎢᎬᏱᏗᏢ ᎤᎬᏫᏳᎯ ᎤᏬᎸᎢ. ᎤᎬᏫᏩ ᎯᏃ ᎤᏛᏛᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏰᎵᏂᏫ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪ ᏨᏒ ᏣᏓᏅᏖᏛ ᎾᏍᎩ ᏥᏂᏪᎠ, ᎩᎶᎨ ᎾᏍᎩ ᎨᏣᏃᎮᎮᎴᎢ? ᎠᏍᎦᏯᏍᎩᏂ ᎤᏙᎯᏳᎯ ᎥᏝ ᏱᎬᎵᏍᏚᎸᏍᎦ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᏧᏄᏬᏍᏗ; ᎠᎨᏴᏍᎩᏂ ᎠᏍᎦᏯ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏗ. ᎠᏎ ᎢᏰᎦᏉ ᎤᎾᏓᏓᏍᎬ, ᏂᎦᏓ ᎠᏂᎦᏔᎲ ᎢᏴ ᎡᏙᎲ Crockett. ᎢᏳᏃ ᎥᏝ ᏲᎩᏍᎦᏅᏨ ᏱᏓᏗᎭ, ᎡᏗᏰᎪᎥᏍᎦᏉ, ᎠᎴ ᎧᏃᎮᏛ ᎤᏤᎵᎦ ᎥᏝ ᏱᎨᎨᎭ. ᎪᏫ ᏂᎦᏓ ᎠᏂᎦᏔᎲ ᎠᏍᎦᏯᏱ ᎨᏎ ᏧᏛᎯᏍᏙᏗ ᏒᎧᏔ ᏕᏧᎬ, ᏂᏚᏕᏘᏴᏒ ᎤᎾᏨᏏᏓᏍᏗ ᏄᎵᏍᏔᏅ ᏕᎦᎧᎲᏍᎨ. ᎠᏎᏍᎩᏂᏃᏅ ᎪᎱᏍᏗ ᎤᏍᏗᎠᎹᏰᎵ ᎤᏪᎧᎲ ᏓᎩᏝᏗᏣᎵ. ᏃᎴ ᎠᏰᎵ ᏓᏏᎳᏛ ᎯᎪᏪᎴ ’ᎤᏍᏆᏂᎩᏗ ᏏᏆ’. ᏦᏏᏃ ᎨᏥᏅᏏᏛ ᏆᏂᏆ ᏥᏚᏃᎡᎢ, ᎾᏍᎩ ᎦᏛᎬ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎤᏪᏥ, ᎠᎵᏫ ᏌᏈ ᎤᏕᏅᎯ, ᎾᏍᎩᏃ, ᏌᏉ ᎠᏍᎦᏯ ᎢᏳᏩᏂᏌᏛ ᎠᏍᎦᏂ ᎡᎶᎯ ᏧᎾᏄᎪᏨ, ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ [ᏧᎾᏄᎪᏨ;] ᎠᏍᎦᏂ ᎢᏳᏩᏂᏌᏛ ᎠᎴ ᎾᏍᎩ ᏥᏂᎦᎵᏍᏙᏗᎭ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏂᎦᏗᏳ ᏴᏫ ᏧᏂᎷᏤᎸ, ᏂᎦᏗᏳᏰᏃ ᎤᏂᏍᎦᏅᏨ ᎿᏉᏃ ᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎠᏴ ᏂᎦᏗᏳ ᏙᎩᏲᏐᏅ ᎠᎴ ᎢᏨᏍᏓᏩᏕᏅ; ᎦᏙᏃ ᎠᏴ ᏓᏲᏥᏩᏛᎯ? ”ᎠᏯ ᏥᏙᎬ ᎢᏣ ᎧᏓᏒᏍᏓ!” ᎤᏪᎷᎾ ᏌᏌ ᎠᏨᏯ. ᎯᎸᎢᏴ ᎦᏄᎸ ᎡᎯ ᎢᎾᏓ ᎠᏩᏘᏍᎪᎢ ᎧᏁᏍᎪ ᎡᎳᏆᏗ. ᎤᏦᏩᏛ ᏫᏓᎵᎪᏗᏍᎨᏍᏗ ᏚᏦᏩᏅ. ᎤᏢᎩ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᏍᎦᏯ, ᎥᏝ ᎩᎶ ᏰᏙᎰ ᎠᎹ ᎠᎵᏖᎸᎲᎦ, ᎠᏓᏬᏍᏗᏱ ᏩᎩᎧᎲᏍᎩ; ᎠᏏᏉᏰᏃ ᏥᏫᎦᎢᏐᎢ, ᎩᎶ ᏓᎩᎪᏂᏍᎪᎢ ᎢᎬᏱ ᏩᏠᎠᏍᎪᎢ. “ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ. ᎠᎫᏬᎵᎩ ᎮᎵᎠ, ᏚᎵᏍᏙᏴᏗ, ᏃᎴ ᎤᎵᏍᏗ ᏂᎦᏪᏏᏏ. ᎢᏳᏃ ᎥᏝ ᎠᏍᎦᏂ ᏲᎨᎭ ᏱᏓᏗᎭ, ᎢᎬᏒ ᏱᏓᏓᎵᏓᏍᏗᎭ, ᎠᎴ ᎥᏝ ᏱᎨᎨᎭ ᎤᏙᎯᏳᎯ ᎨᏒᎢ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎣᏏᏉ ᏂᏣᏛᏁᎭ ᏥᏥᏲᎢᏎᎭ ᎤᏁᎳᏅᎯ ᎤᏁᏨ, ᎾᏍᎩ ᎢᏣᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ. ᎠᎴ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᎾᎧᎿᏩᏗᏙᎯ ᏕᎨᎦᎸᏒᎲᎩ, ᎾᏍᎩ ᎨᎦᏛᏅᎢᏍᏔᏅᎩ ᏌᏉ ᏅᏙ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ ᎨᏒᎢ, ᎠᎴ ᏏᎦ ᎨᏒ, ᎠᎴ ᏏᏅᏙ ᎨᏒ, ᎠᎴ ᏑᏕᏘᏴᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏧᏂᎯᏍᏗᏱ ᏦᎢ ᎢᎨᏥᏛᎯ ᏴᏫ ᎾᏍᎩ ᏌᏉ ᎢᏳᏂᏨᎯ ᎨᏒᎢ. ᎣᏏᏳ ᏱᏥᏰᎸᎾ ᎾᏍᏉ ᏱᏗᎨᏥᎧᎲᏒ ᎨᏣᏕᏯᏙᏗᏍᎩ ᏥᎩ. ᏚᏏᎳᏛ ᎭᏫᏂᏣ ᎤᎴᏁ ᏫᎵᎻ. ᎠᎴ ᎤᎬᏫᏳᎯ ᏂᏚᎪᎳᏛᎾ ᏱᎨᏎ ᎾᎯᏳ ᎢᎦ, ᎥᏝ ᎤᏇᏓᎵ ᏱᎦᏰᏥᏍᏕᎸᎮᎢ; ᎨᎦᏑᏰᏛᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᏧᏑᏰᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏚᎦᎳᏛ ᎾᎯᏳ ᎢᎦ. ”ᎠᏏᎳᏛᎢᏍᎪ?” ᎠᏫᎾ ᎦᏄᎾᏓᎴᎩ ᎤᏩᏌ ᎤᏤᎵ, ᏐᎢᏃ ᎤᏫᏂ Elias Boudinot, ᎦᎳᎩᎾ ᏧᏙᎢᏓ ᎨᏎ, ᎠᏎᏃ ᎤᏍᏕᏓᎵᏴᏎ ᎣᎯᏍᏙᏗ ᏄᎵᏍᏔᏁᎮ. ᏞᏍᏗ ᏙᎯᏱ ᎤᎾᏄᎪᏫᏏᎸ ᎡᎶᎯ, ᏱᏍᎩᏰᎵᏎᎮᏍᏗ; ᎥᏝᏍᎩᏂ ᏙᎯᏱ ᏯᎩᎾᏄᎪᏫᎸ, ᎠᏰᎳᏍᏗᏍᎩᏂ ᎦᏅᎯᏛ. ᎢᏨᏲᏪᎳᏏ ᎢᏥᎦᏴᎵᎨᎢ, ᎡᏥᎦᏙᎥᏒᏰᏃ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏤᎭ. ᎢᏨᏲᏪᎳᏏ ᎢᏥᏫᏅ, ᏗᏣᎵᏂᎩᏗᏳᏰᏃ, ᎠᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎢᏥᏯᎠ, ᎠᎴ ᎡᏥᏎᎪᎩᏒ ᎤᏁᏧᏥᏛ. ᎿᏉᏃ ᏚᎴᏅ ᎤᏘᏅᏎ ᎠᏲᎵ ᎠᎴ ᏅᏥ ᏒᏃᏱ, ᎠᎴ ᎢᏥᏈᏱ ᏭᎶᏎᎢ. ᎤᎾᏓᏂᏴᏍᏗ ᎠᎴ ᎤᏁᏅᏍᏗ. ᎢᏨᎾᏰᎢᏎᎭᏉ, ᎠᏎᏉᏉ ᎪᎱᏍᏗ ᏱᏚᏥᏯᏛᏁᎸ ᎨᎵᏍᎬ ᎢᏳᏍᏗ. ᎦᏚᎲ ᎤᎵᏗᏨ ᎠᎾᏓᏌᎩᏙᎲ ᏏᏆ. ᎢᎪᎯᏓ ᎠᏋᏅ ᏥᏓ ᎦᏨᏏᏰᏍᎪ. ᎠᎼ ᎦᏚᎢᏣ ᎬᏂᎨ ᎨᏒ, ᎭᏫᏂ. ᎠᏌᎻᏓ ᎠᎴ Ireland, Philadelphia ᏃᎴ ᏣᎵᏍᏙᏂ ᏓᏳᏂᎶᏒ ᎠᏂᏫᎾ, ᎨᏍᏗ ᎤᏲ ᎢᏯᎾᏛᏁ ᏱᎨᏎᎢ. ᏩᏓᏬᎢᎡ ᏚᎪᎮ ᏓᎶᎨ, ᏥᏍᎪᎩᎳ, ᏧᏩ ᏃᎴ ᎤᎬᏍᏕᎵ. ᏥᏌ ᎤᏁᏨᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏑᏓᎴᎩ ᏓᎩᎸᏫᏍᏓᏁᎸ, ᏂᏥᎥᏃ ᎢᏥᏍᏆᏂᎪᏍᎦ. ᎤᎦᏃᏮ ᎤᏂᏂᎬᎪ ᏏᏆ, ᎡᎳᏗᏣ ᎤᎦᏃᏩ ᏧᎦᏃᏮ ᏗᏣ. ᎦᏥᏃᏁᎸᎩᏰᏃ ᎢᎬᏱ ᏕᎹᏍᎦ ᎠᏁᎯ, ᎠᎴ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎠᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᎾᏍᏉ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏙᏗᏱ, ᎠᎴ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎨᏒ ᏚᏂᏁᏟᏴᏒ ᏚᎾᏓᏅᏛᎢ. ᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᏝᏍᎪ ᏗᎩᏂᎾᏫ ᏧᏗᎴᎩᏳ ᏱᎨᏎ ᎭᏫᏂ ᏥᎩᎾᎵᏃᎮᏗᏍᎬ ᏗᏓᎢᏒᎢ, ᎠᎴ ᏥᏕᎩᏃᏏᏌᏁᎲ ᎪᏪᎵ? ᎿᏉ ᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎡᎳᏗ ᏓᎾᏓᏅᎥᏍᎪ ᎢᎬᏱᏗᏢ ᎤᏬᎸ ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎠᎴ ᎠᎾᏓᏙᎵᏍᏓᏁᎰ ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎾᎵᏍᏆᏗᏍᎬᎾ ᏤᎭ, ᎠᎴ ᏧᎾᎵᏍᏚᎶ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏚᎾᏓᎡᎯ, ᎯᎠ ᎾᏂᏪᏍᎪᎢ; ᎠᏎᏃ ᎥᏝ ᏌᏉᎤᏅ ᎢᏥᏍᏗᏰᎬ ᎢᏥᏍᎪᎵ ᎤᏲᎱᎯᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᏎᏃ ᎨᏍᏗ ᎤᎶᎣᏒ ᏱᎨᏎ ᎠᏲᏟ. ᎤᎵᏍᏓᏴᏅᏃ ᎤᎵᏂᎪᏎᎢ. ᏐᎳᏃ ᎢᎸᏍᎩ ᏧᏒᎯᏛ ᏚᏪᎳᏗᏙᎴ ᎠᏃᎯᏳᎲᏍᎩ ᏕᎹᏍᎦ ᎠᏁᎯ. ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎤᏕᎵᏛ ᏧᎾᏂᏏᏅᎯ ᏥᎩ, ᎠᎴ ᎡᎶᎯ ᏓᏁᏩᏗᏒ ᏧᏂᏴᏍᏕᏍᏔᏅᎯ ᏥᎩ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎤᏩᏛᏛ. [ᎠᎴ] ᎬᏗᏍᎬ ᎤᏰᎸᏛᎢ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎬᏗᏍᎬᎢ; ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎤᏓᎴᏅᏛ, ᎠᎴ ᎤᏚᏫᏛ ᎢᎵᎵᎦᎻ ᏩᏍᏗ, ᎤᎧᎵᏨᎯ ᎠᏆᎵᏥᏙᏅ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ᏰᎵ ᎢᏯᏂ ᎠᏂᏴᏫ, ᎨᏍᏗ ᎯᎸ ᎢᏴ ᎤᏁᏙᎵᏱᎩ, ᎠᎴᏃ ᎠᏂᎪᏩᏘᏍᎬ ᎤᏅᏓᏒ. ᎿᏉᏃ ᎤᎶᏐᏂᏕᎾ ᎨᏎ ᎢᎦ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᎷᏤᎴ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏂ ᎢᎾᎨᎢ, ᎠᎴ ᎿᏉ ᎤᎶᏐᏂᏗ ᎢᎦ. ᎤᏂᏍᎦᎡᎾᏍᎩᏂ. ᎠᎴ ᏄᏃᎯᏳᏒᎾ, ᎠᎴ ᎤᏂᏍᎦᎢᏍᏗ, ᎠᎴ ᏗᎾᏓᎯᎯ, ᎠᎴ ᎤᏂᏁᎫᏥᏛ, ᎠᎴ ᏗᎾᏙᏂᏍᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎠᏂᏰᎪᎩ, ᎤᎾᏤᎵ ᎢᎨᎬᏁᏗ ᎨᏎᏍᏗ ᎥᏓᎸ ᎾᎿ ᎠᏓᏪᎵᎩᏍᎬ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎵᎩᏍᎩ; ᎾᏍᎩ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᏥᎩ. ᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎠᏴ ᎨᏒᎢ, (ᎾᏍᎩ ᎠᎩᏇᏓᎸ ᏯᏛᏅ,) ᎪᎱᏍᏗ ᎣᏍᏛ ᏄᎵᏠᏯᏍᏛᎾ ᎨᏒᎢ; ᎠᏚᎸᏗᏱᏰᏃ ᎠᎩᎭ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎣᏍᏛ ᎨᏒ ᎢᏯᏛ-ᏁᏗᏱ ᎥᏝ ᏱᏥᏩᏘᎭ. ᎢᏧᎳᏃ ᎠᎬᏯᏗᏣ ᏕᏣᎳᏍᎬ ᏱᏕᏣᎳᏑᎶᎯ.” ᏃᎴ ᎠᏂᎨᏯ ᎤᎾᎴᏅᎲ ᎠᏅᏂᏍᏗᏍᎬ ᎭᏫᏯ ᏃᎴ ᎠᏂᏍᎦᏯ ᎤᏂᏍᏔᏩᏛᏒ ᏣᎵ ᎦᏚᏏ, ᎢᏳᏅᎰᏁᏗ ᎠᏂᎦᎭᎷᏯᏍᎬ ᏲᎾ, ᏃᎴ ᎤᎾᏓᏍᏔᏴᏗ ᎪᏛ ᎾᎥᏂ ᎠᏂᏅ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ ᎬᎦᏰᎯᏍᏔᏅ ᏧᏂᏍᏉᏟ. ᏫᏚᏯᏅᎲᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎯᎠ ᎾᏍᎩ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎤᏟ ᎢᎦᎢ ᎠᎲᎦ ᎡᏍᎦᏉ ᏂᎦᏛ ᎾᏍᎩ ᎠᏕᎸ-ᏗᏗᏱ ᏣᏂᎲᎦ. ᎤᏬᏰᏂ ᎢᏯᏖᏅ ᎨᏴ ᎤᏍᏔᏩᏛᏎ ᏧᏓᎴᏅ, ᏂᎦᏓ ᎠᏂᎦᏔᎲ ᎢᎦᏓ ᏕᎦᏄᎪᎬ ᎠᎹ ᏩᏴᏍᏗ ᎭᏫᏂᏨ ᎡᎶ ᎠᏗᏍᎦᎶᏗ. ᎦᎵᎡᎵᎩ ᏥᏕᎾᏦᎯ, ᏓᎶᎨ, ᎠᏎᏃ ᏰᎵ ᎪᎯᏓ ᎦᏓᏬᏍᎬ Ꮟ ᎤᏓᏅᎯᏓ ᎠᏇᏅᏍᏗ. ᏕᎾᏓᎪᎲᏳ ᏓᎶᎨ. ᏆᎾ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎨᏎᎢ ᏃᎴ ᎧᎵᏎᏥ ᎨᏂᏗ ᎢᎬᏁᎸ. ᏥᏌ ᎤᏁᏤᎸᎩ; ᏥᏌ ᎠᏴ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎡᎳᏗ ᏘᏂ ᎲᏅᎢ? ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᏣᏔᎦᏨᏯᎢ ᎥᏝ ᏴᏛᏴᎳᏏ ᎬᏂ ᏦᎢ ᎢᏍᏆᏓᏱᎸᎯ ᎨᏎᏍᏗ. ᏂᎦᏓ ᎤᎾᎦᏙᏍᏕᎢ, ᎨᏍᏗᏰᏃ ᎣᏍᏓ ᎠᏥᏰᎵᎢ ᏱᎨᏎᎢ. ᏂᎯᏍᎩᏂ ᎢᏥᏆᎵᏏ ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ! ᎠᏍᎪᎯᏁᏰᏃ ᎪᏣᎴᏛ ᎢᏣᎫᏱᏍᎪ ᏒᏟ ᎠᏟ ᎷᏫ ᎠᎴ ᏂᎦᎥ ᎤᏰᎿᎥᎢ, ᎢᏥᏃᎯᏯᏍᎪᏃ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒᎢ; ᎾᏍᎩᏍᎩᏂ ᏱᏂᏣᏛᏁᎴᎢ, ᎠᎴ ᏐᎢ ᏂᏥᏃᎯᏴᎾᏉ ᏱᎨᏎᎢ. “ᎨᏂᏗ ᎦᏅᎵᏰᏓ ᏒᎧᏔ ᎠᏆᏚᎵᎭ.” ᎠᎴ ᏓᏕᏲᎲᏍᎨ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎾᏂᎥᏃ ᎬᏩᎸᏉᏗᏳ ᎨᏎᎢ. ᏕᎭᏅᏓᏗᏍᏗᏍᎨᏍᏗ ᏧᏃᎯᏳᏗ ᎨᏒ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎤᏃᎯᏳᎯᏍᏛ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ, ᏂᎪᎯᎸᏉ ᎤᎾᏛᏅᎢᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᏂᎦᎥᏉ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ. ᎠᎨᏴ ᎥᏝ ᎠᏓᏅᏖᏍᎬᏉ ᎢᎬᏩᏁᏗ ᏱᎩ ᎤᏩᏒ ᎠᏰᎸᎢ, ᎤᏰᎯᏍᎩᏂ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏍᎦᏯ ᎥᏝ ᎠᏓᏅᏖᏍᎬᏉ ᎢᎬᏩᏁᏗ ᏱᎩ ᎤᏩᏒ ᎠᏰᎸᎢ, ᎤᏓᎵᎢᏍᎩᏂ. ᎤᏕᏯᎵᏙᎴ ᎠᏥᏍᏚᏗ. ᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎦᎶᏐᏅ, ᏎᏓᏂ ᏛᎠᏥᎧᏂ ᏛᎠᏥᏄᎪᏫᏏ ᎠᏥᏍᏚᎲᎢ; “ᏄᏓᎴᏗ ᎯᎠ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏆᎵᏏ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎢᏣᏙᎴᎰᏍᎦᏍᎪ ᏂᏣᎵᏰᎢᎴᎬᎾ ᏥᎩ? ᎬᏂᏳᏉ ᎡᎶᎯ ᎤᏍᏓᏩᏕᏅ. ᎯᎠᏃ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏭᎬᏫᏳᏒ ᎣᏍᏓ ᎠᏉᏒᏅ.” ᏖᎸᎳᏗᏯ ᎠᏴ, ᎡᏙᏓᏃ ᏗᎦᎶᎩᏍᎩ. ᏙᎦᏓᏲᎵᎸᏃ, ᏥᏳᎯ ᎣᎦᏣᏅᎩ; ᎾᏍᎩᏃ ᏙᏧᏁᏅᏒ ᏮᎤᏂᎶᏒᎩ. ᏚᎪᎮ ᏦᎢ ᎢᏯᏂ ᎠᏂᏧᏣ ᎨᏥᎢᎲ, ᎠᏁᎸᏗᏍᎩ ᎤᎵᏒᏗ ᎦᎶᏇ. ᎤᏓᏁᏅ ᎦᎵᏔᏅ ᎤᏁᏍᏓᎳ ᎢᎬᏓ ᎨᏎᎢ ᎣᎯᏍᏙᏗ ᏱᏂᏣᎵᏍᏔᏏ, ᎤᎵᏏᏅᏗ ᏭᏅᎪᏨ ᎦᎶᎯᏍᏗ. ᏥᏍᏗᏰᏗᎭ ᏳᎣᏗᏯ, ᎠᎴ ᏥᏍᏗᏰᏗᎭ ᏏᏂᏗᎩ ᎾᏍᎩ ᎤᏠᏱᏉ ᎢᏧᏅᏁᏗᏱ ᏚᎾᏓᏅᏛ ᎤᎬᏫᏳᎯ ᏓᏂᎧᎿᏩᏗᏒᎢ. ᏍᎩᎾᎾ ᎠᏣᏗ ᏚᏩᏓᎷᏯᏛᎢ ᏂᏚᏩᏁ ᎠᎬᏱᏣ, ᏥᏍᏆ ᎧᏴᏌᏛ ᎢᏳᏍᏗ ᏂᏚᏍᏕᎢ ᏃᎴ ᎭᏫᏂ ᎠᎹᏱ ᎠᏓᎾᏏᏂᏙᎮ ᏧᎦᏃᏣ ᏤᏕᎦᏅᏌᏙ ᎢᏳᏍᏗ. ᏞᏍᏗ ᏱᏗᏥᏍᏓᏲᏗᏍᎨᏍᏗ ᏗᏥᎾᏫ, ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸ ᏥᎬᎩᎾᎸᏍᏔᏅᎩ, ᎾᎯᏳ ᎢᎦ ᏥᎬᎩᎪᎵᏰᎥᎩ ᎢᎾᎨᎢ; ᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᎪ ᏧᏬᎸ ᏮᏓᏲᏥᎶᏏ? ᏂᎯ ᏣᏍᏆᏂᎪᏗ ᎧᏃᎮᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎠᏛᏂᏗᏍᏙᏗ. ᎠᏎᏃ ᏂᎯ ᏴᏫᏉ ᎦᎪ ᎢᏣᏍᏗ ᏥᏁᏤᎭ ᏕᎯᎦᏘᎴᎬ ᎤᏁᎳᏅᎯ? ᏥᎪ ᎪᎱᏍᏗ ᎠᏢᏅᎯ ᎯᎠ ᏅᏓᎦᏪᏎᎵ ᎾᏍᎩ ᎤᏬᏢᏅᎯ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᏍᏋᏁᎸ ᎢᏍᏉᏢᏅ? ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᎦᏴᎵᎨ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ, ᎾᏍᎩ ᎤᏣᏘ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏥᏅᏗᎦᎵᏍᏙᏗ ᏔᎵᏁ ᏥᎩᎾᏄᎪᏫᏒ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏥᎩᏁᎸ ᎬᏂᏛ ᎢᎩᎪᏩᏛᏗᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅ ᏥᏌ ᎦᎶᏁᏛ;-- ᎠᏎᏃ ᎠᏴ ᎥᏝ ᏱᏗᎦᏓᏂᎸᎦ ᏴᏫ ᎠᎩᏃᎮᏍᎬᎢ, ᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏂᏥᏪᎠ ᎡᏥᏍᏕᎸᏗᏱ. ᎭᏂᏣ ᏫᏛᏓᏬᎢᏎᎢ, ᎠᏎᏃ ᎣᏂᏱ ᎨᏎᎢ. ᎠᎨᏴᏃ ᎤᏢᎨ ᎩᎬ ᎤᏪᏅᎡᎮ ᏔᎳᏚ ᎫᏕᏗᏴᏛ ᎬᏩᏓᎵᏅᎡᎸᎯ, ᎤᏒᏅᎯ ᎨᏎ ᏂᎦᏛ ᎤᎵᏍᏕᎸᏙᏗ ᏓᎫᏴᎡᎲ ᎠᏂᎦᎾᎦᏘ, Ꭰ-ᏎᏃ ᎥᏝ ᎩᎶ ᎬᏩᏅᏬᏗ ᏱᎨᏎᎢ, ᏃᎴ, ᎪᎰᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎬᎩᏯᏂᏍᎬ ᎤᏁᏉᎥ. ”ᎦᏨ?” ᎢᏥᎨᏴ, ᏕᏦᎯᏳᏎᏍᏗ ᎢᏨᏒ ᏗᎨᏥᏰᎯ ᎾᏍᎩ ᎢᏨᏛᏁᏗᏱ ᏥᏚᏳᎪᏗ ᎤᎬᏫᏳᎯ ᏕᏥᎦᎿᏩᏗᏒᎢ. ᎩᎶᏃ ᎢᏳᏍᏗ ᏌᏩᏂ ᏧᏙᎢᏛ ᏌᎵᏂ ᎡᎯ ᎠᎢᏎᎢ, ᏙᏗᎦᎶᎨᏒ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩ ᎡᎵᎩ ᎠᎴ ᎷᏆᏏ ᎤᏂᏙᏓ, ᎾᏍᎩ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎤᏪᏅᏍᏗᏱ ᏄᏅᏁᎴᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᏧᏂᏲᎱᏒᎯ ᏓᎾᎴᎯᏌᏅᎭ, ᎦᎪ ᎤᏓᎵᎢ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎨᏒᎢ? ᏂᎦᎸᏉᏗᏍᎬᎾᏃ ᎢᎨᏎᏍᏗ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, [ᎥᏝ ᎤᏍᎦᏅᏨᎯ ᏱᎨᏎᏍᏗ,] ᎢᏣᏗᏍᎪᎢ. ᎾᏍᎩ ᎯᎠ ᎡᏘ ᎠᏁᎯ ᎤᏂᏃᎮᎸᎯ ᎢᏨᏔᏅ ᎠᏎᏉ ᏂᏨᏁᎸ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ. ᎥᏝᏰᏃ ᎾᏍᏉ ᎤᏅᏒ ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏳᏂᏍᏆᏂᎪᏗ ᏗᎧᎿᏩᏛᏍᏗ; ᏂᎯᏍᎩᏂ ᏤᏥᎤᏍᏕᏎᏗᏱ ᎤᎾᏚᎵᎭ, ᎾᏍᎩ ᎢᏥᏇᏓᎸ ᎤᎾᏢᏈᏍᏗᏱ. ᏫᎵᎻ ᎤᎸᏖᎴᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᎠᎴ ᎾᏍᎩ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗ ᎨᏒᎩ ᎦᎶᏁᏛ, ᎠᎴ ᏧᎴᎯᏐᏗ ᎨᏒ ᎤᏲᎱᏒ ᏦᎢᏁ ᎢᎦ; ᏄᏓᎴ ᏒᏆᎶᏍᏗ ᎭᏫᏂᏣ ᎱᎦᏓᎲᏍᎦ ᎠᎵᏰᎾ. ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ Ꮎ ᎦᏥᏲᏪᎳᏁᎸᎩ, ᎠᏎᏃ ᏓᏯᎶᏈ ᎢᎬᏱ ᎤᎴᏗᏱ ᎤᏚᎵᏍᎩ, ᎥᏝ ᏱᏙᎦᏓᏂᎸᎦ. ᏂᎬᎾᏛ ᎤᎾᏛᎦᏅ ᏄᏍᏆᏂᎩᏛ ᎯᎠ ᏅᎩ ᏗᎦᏅᏌᏗ, ᏃᎴ ᏍᏈᏍᏓ ᎤᏂᎷᏣ ᎠᎾᏓᏩᏛᎯᏙᎢ ᎭᏂ ᏍᎦᏚᎩ. ᎨᏍᏗ ᏱᏥᎦᏔ ᏧᏓᎴᏅᎲ ᎨᏍᏗ ᎣᏍᏓ ᏱᏙᎦᏙᎸᏣ ᎠᏂᏫᎾ. ᏂᎦᎥᏍᎩᏂ ᏄᏓᎴᏒ ᏙᎩᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᏃᏨᏁᎰ ᎤᏁᎳᏅᎯ ᎪᎱᏍᏗ ᎣᏣᏛᏁᎯ ᎨᏒᎢ, ᎤᏣᏘ ᏦᏨᏂᏗᏳ ᎨᏒᎢ, ᎣᏥᎩᎵᏲᎬᎢ, ᎣᎩᏂᎬᏎᎲᎢ, ᎡᎯᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎬᎢ, ᏆᏂᏆᏃ ᏧᏈᏓ ᏚᏃᎡᎢ, ᏉᎳᏃ ᏑᎫᎵ ᏚᏃᎡᎢ, ᎾᏍᎩᏰᏃ ᏄᎬᏫᏳᏒ ᎠᎵᏥᏙᎲᏍᎩ ᎨᏎᎢ. ᎠᏎᏃ ᏍᎩᏴᏃ ᎤᏍᏗ ᏥᏍᏆ, ᏧᏃᎯᎵᏣᏁᎢ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎯᎠ ᏳᏍᎦᏅᏨ, ᎥᏝ ᎠᎴ ᏧᎦᏴᎵᎨᎢ; ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎠᎬᏗᏍᎬᎢ. ᎢᏥᏙᏓ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏕᏥᎸᏫᏍᏓᏁᎰᎢ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᎤᏕᎵᏛ ᏗᏂᏏᏅᎯ ᎣᎩᎾᏄᎪᏨᎯ ᏱᎩ; ᏌᏉ ᎡᎭ ᎣᎩᏙᏓ-ᎾᏍᎩ ᎤᏁᎳᏅᎯ. ᎯᎠ ᎾᏍᎩ ᏅᏲᎯ ᏚᏓᏓᎳ ᏗᏣᏁᎶᏗ ᏕᏣᎵᏍᏓᏴᎲᏍᎬᎢ, ᎾᎯᏳ ᎢᏧᎳᏕᏣᎵᏍᏓᏴᎲᎦ ᎾᏂᎾᏰᏍᎬᎾ ᎠᎾᎵᏍᏓᏴᎲᏍᎪᎢ; ᏚᎶᎩᎸ ᎠᎹ ᏂᏚᏁᎲᎾ, ᎤᏃᎴ ᏧᏱᎴᎪᎢ; ᏕᏡᎬ ᏧᎳᏍᏚᏬᎠᏔᎯ, ᎪᎱᏍᏗ ᏄᎾᏓᏓᏁᎲᎾ, ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏩᏴᏒᎯ ᏥᎨᏐᎢ, ᏗᏰᎯᏛ ᏗᎧᎾᏍᏕᏢᏔᏅᎯ ᏥᎨᏐᎢ. “ᎤᎸᏕᎦ ᏏᏆ,” ᎤᏛᏁ ᎠᎳᏂ. ᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎵᏂᎩᏛ ᎥᏥᎪᎥᎩ ᎤᏪᎷᎬᎩ ᎠᏍᏓᏯ ᎧᏁᎬᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎦᎪ ᏰᎵ ᎬᏩᏍᏚᎢᏍᏗ ᎪᏪᎵ, ᎠᎴ ᏗᎬᏩᏲᏍᏙᏗ ᎾᏍᎩ ᏓᏍᏚᏛᎢ? ᏥᏁᏥ ᎠᏆᏒᎭᏂᎸ. ᏥᎪ ᏗᎩᎧᎿᏩᏛᏍᏗ ᏚᏭᎪᏓᏁᎰ ᎩᎶ ᎠᏏ ᎾᎦᏛᎦᏁᎸᎾ ᏥᎨᏐᎢ, ᎠᎴ ᏚᎸᏫᏍᏓᏁᎲ ᎠᏙᎴᎰᏒᎯ ᏂᎨᏒᎾ ᏥᎨᏐᎢ? ᏍᎩᎾᎾ ᏱᎾᎾᏛᎦ ᎠᎴ ᏣᏉ. ᎠᏎᎪᎩᏓ ᎨᏒ ᎢᎾᏓ, ᏣᎵ ᎤᎳᏏᏂᏗ ᎾᎥ ᏭᎷᏤ. “ᎪᎨᏱ,” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ, ᎠᏓᏅᏖᏍᎩ. ᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎾᏍᎩ ᎤᎾᏛᎦᏅ ᎤᎾᎵᎮᎵᏤᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎧᏃᎮᏛ, ᎠᎴ ᎤᏃᎯᏳᏁ ᎾᏂᎥ ᎬᏂᏛ ᎤᏂᏩᏛᏗ ᎢᎨᎬᏁᎸᎯ. ”ᎣᏍᏓ ᎠᏆᎦᏎᏍᏗᏕᎬ ᏃᎴ ᏍᏓᏯ ᏓᎩᎷᏫᏍᏔᏏ.” ᎩᎶ ᎢᏤᎲ ᎤᏓᏑᏰᏍᏗ ᎠᎩᎵᏲᎨᏍᏗ, ᎠᏓᏙᎵᏍᏗᏍᎨᏍᏗ; ᎩᎶ ᎤᎦᎵᏍᏗ ᎤᏓᏅᏖᏍᏗ ᏕᎧᏃᎩᏍᎨᏍᏗ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᎤᏍᏗ ᎤᏰᎸᏛ ᎯᎾᏄᎪᏫᏍᎦ, ᎾᏍᎩ ᎣᎩᎪᏩᏛᏗᏱ ᎠᎴ ᎢᏨᏲᎢᏳᏗᏱ? ᎦᏙ ᎤᏍᏗ ᏕᏣᎸᏫᏍᏓᏁᎭ? ᎭᎾ ᎦᏚᏏ ᏍᏈᏍᏔ ᎨᏒ ᎤᏂᏍᎦᏎᏗ ᎢᎾᎨ ᎠᏁᎯ ᏏᏆ. ᎠᎴ ᎢᏤ ᏴᏫ ᎢᏣᏄᏬᏍᏔᏅᎯ, ᎾᏍᎩ ᎢᏤ ᎢᎬᏁᎸᎯ ᏥᎩ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗᎨᏒ ᎤᎬᏩᎵ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎾᏍᎩ ᎤᏬᏢᏅᎯ ᎨᏒᎢ; ᎨᏍᏗ ᏯᎩᏍᏕᎵᏍᎨ. “ᎠᎩᎵᏓᏍᏓ, ᎠᎩᎵᏓᏍᏓ, ᎠᎩᎵᏓᏍᏓ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ. ᎩᎳᏈᏴ ᎤᏂᏴᏍᏔᎩᏍᏗ ᏓᎾᏗᏔᏍᎬ. ”ᎤᏍᏆᏂᎩᏘ ᏏᏆ!” ᎤᏛᏁᎢ ᎰᎻ ᎡᏝᏪᎯ. “ᎣᏏᏉᏍᎪ ᎤᎵᏍᏔᏴᏗ?” ᏃᎴ ᏰᎵ ᏱᏚᏯᏪᎦ, ᏓᎧᏔᏍᏗᏍᎨᎢ ᏗᎦᏙᎵ, ᏫᎦᏢᏍᎨ ᎠᏁᎵᏗ ᎤᏤᎵ ᏧᏍᏆᏅᎾ ᎭᏫᏂᏣ. ᏗᏓᏁᎸ ᏓᏳᏂᎩᏓ ᎤᎷᏤ ᎠᎳᏂ. ᏥᏍᏕᏥ ᎣᏍᏓ ᏄᏛᏁᎴ. ᎢᎦᏁᎳᏅᎯᏰᏃ ᎠᏥᎸ ᎠᏓᎪᎲᏍᏗᏍᎩ. ᎨᏓᎵ ᎢᏣ ᎤᏪᏅᏒ ᏣᎵ, ᎠᎢᏒ ᎤᎭᎨᏛ ᏂᎦᎵᏍᏗᏍᎬ ᎤᎧᎭᏛ. ᏓᏆᎴᎿ ᏂᎦᏓ ᎦᏥᏲᎵᎳ ᏃᎴ ᏓᏊᎧᏔᏅ ᎠᏆᏂᎩᏍᏗᏱ. ᎠᎦᏗᏓ ᏗᎩᎷᏫᏍᏔᏁᏗ ᎯᎪ ᎤᎵᏏᏂᏕᎾ. ᎿᏉᏃ ᏚᎾᏎᏒᎮᎢ; ᎹᏓᏯᏃ ᎠᎦᏑᏰᏎᎢ; ᎠᎴ ᎠᎨᎳᏕ ᏌᏚ ᎾᏂᎥ ᎨᏥᏅᏏᏛ ᎤᎾᏓᏡᎬᎢ. ᏕᎹᏍᎦ ᏫᎨᏙᎲ ᏄᎬᏫᏳᏎᏕᎩ ᎡᎵᏓ ᎤᎬᏫᏳᎯ ᎤᏪᎧᏅᎯ, ᎠᏯᏫᏍᎬᎩ ᎠᏂᏕᎹᏍᎦ ᎤᏂᏚᎲᎢ ᎾᏍᎩ ᎤᏚᎵᏍᎬ ᎠᎩᏂᏴᏗᏱ; ᏔᎵᏁᏃ ᏚᏅᏎ ᏅᏩᎾᏓᎴ ᏧᏅᏏᏓᏍᏗ ᎤᏟ ᎢᏯᏂᎢ; ᎾᏍᎩᏯᏉᏃ ᏂᏚᏅᏁᎴᎢ. “Ꮟ ᏎᎦ!” ᎤᏪᎷᏁ ᎡᎳᏆᏘ. ᎨᏍᏗ ᎯᎸᎯᏳ ᏳᏩᎨᏫᏌ ᏌᎳᏓ. ᎢᏣᏓᎪᎵᏯ ᎢᏨᏒ, ᎾᏍᎩ ᎢᏦᎯᏳᎯ ᏱᎩ, ᎠᎴ ᎢᏦᎯᏳᎯ ᏂᎨᏒᎾ ᏱᎩ; ᎢᏣᏙᎴᎰᎯ ᏂᏣᏍᏛᎢ. ᏝᏍᎪ ᎢᏨᏒ ᏱᏣᏓᎦᏔᎭ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎢᏥᏯᎥᎢ, ᎢᏳᏍᎩᏂᏃᏅ ᎡᏥᏐᏅᎢᏍᏔᏅᎯ ᏱᎩ. ᎦᎸᎳᏘ ᎢᎦᏗ ᏃᎴ ᎤᏬᏚᏨ, ᎤᏍᎪᎸ ᎠᏨᏍᏗ ᏧᏍᏔᏩᏗᏙᎰ ᎢᏳᏍᏗ. ᎠᏥᎶᎥ ᏓᏥᏍᏔᏩᏕᏏ. ᎠᏏᏉᏃ ᏈᏓ ᎠᏓᏅᏖᏍᎨ ᏄᏍᏛ ᎦᏛᎬ ᎾᏍᎩ ᎤᏁᎳᏫᏎᎸᎢ, ᎬᏂᏳᏉ ᎠᏂᏫᏅ ᎾᏍᎩ ᎧᏂᎵᏯ ᏂᏙᏓᏳᏅᏒᎯ ᎤᎾᏓᏛᏛᏅᎯ ᎨᏎ ᏌᏩᏂ ᎦᏁᎸᎢ, ᎠᎴ ᎠᏂᏙᎾᎡ ᎦᎶᎯᏍᏗᏳᎶᏗ; ᏙᏱ ᏄᏍᏛ ᎧᏃᎮᏍᎩ ᎠᏗᏆᎸᏕᏲᎲ ᎤᏩᏌ ᎠᏛᎪᏗ ᎨᏎ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎢᏳᏃ ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎠᎩᏍᏚᏩᏛᏍᏗᏱ, ᎠᏓᏓᏱᎮᏍᏗ ᎤᏩᏒ, ᎠᎴ ᏧᏓᎿᏩᏛ ᎠᏱᏍᎨᏍᏗ, ᎠᎴ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ. ᏥᎦᏔᎾᎥ ᏃᎴ ᎢᏗᎦᏪᏍᏘ ᎬᏘ ᎠᏆᏚᎵᏍᎬ ᏗᏥᎦᏆᎸᏂᏍᏙᏗ. ᎢᏥᎦᏔᎭ ᏔᎵ ᎢᏳᏒᎯ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ, ᎠᎴ ᏴᏫ ᎤᏪᏥ ᏣᎦᏡᏔᏂᏒ ᎠᎦᏛᏗᏱ. ᎠᏓᏥ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎾᎩᎷᏨᎾ ᎠᎴ ᏂᎦᏥᏬᏁᏔᏅᎾ ᏱᎨᏎᎢ, ᎥᏝ ᎠᏍᎦᏂ ᏱᎬᏩᏁᎮᎢ; ᎪᎯᏍᎩᏂ ᎥᏝ ᏳᏁᎭ ᎤᏄᏢᏙᏗ ᎤᎾᏍᎦᏅᏨᎢ. Ꮳ ᎤᏲ ᏱᎦᏣᏰᎸᎮᏍᏗ. ᎡᎩᎵᏈᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏇᏍᏓ; ᎯᎠ ᎠᏍᎦᏯ ᏗᎦᏰᏏᏲᎯᏍᏗᏉ ᏱᎨᏎᎢ, ᎢᏳᏃ ᏏᏐᎢ ᏫᏄᎲᏍᏔᏅᎾ ᏱᎨᏎᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎩ ᏂᎦᏛ ᎠᎵ ᏍᎦᏍᏙᏙ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏰᎵ ᏗᎨᏣᏟᏴᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᎯᏳ ᎤᏲᎢᏳ ᎢᎦ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᏂᎦᏛ ᎢᏣᏛᏁᎸᎯ ᎨᏎᏍᏗ, ᎨᏣᎴᏗ ᎢᏳᎵᏍᏙᏗᏱ. “ᏱᎦᏓᏅᏍᎬᎾ ᎠᏆᏗ ᎣᏍᏓ ᎠᎩᏰᎸᎰ,” ᎤᏛᏁ. ᎠᎹ ᏗᎦᏁᎲ, ᏧᎾᎵᏍᏙᏗ ᏗᏗᏂᏃᎩᏍᎨᎢ, ᏰᎵ ᏍᎪᎯᏍᏆ ᏧᏂᏍᏗ ᏩᎶᏏ. ᎤᏇᏄᎩᏎ ᎦᏲᏟ ᎤᎵᏦᏅ ᎤᏍᏉᏟ ᏃᎴ ᏚᏭᎪᏔᏁ ᏎᎦᏉ ᎬᏅ ᎤᏓᏔᏅ ᏓᎩᏍᎬ ᏃᎴ ᎠᎹ ᎠᏗᏔᏍᎬ. “ᎤᏲ ᎢᏯᏛᏁᏗ,” ᎤᏛᏁ ᏫᎵᎻ, ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏔᏲᏍᏗ ᏄᏍᏛ ᏁᎵᏍᎬ. ᎢᏨᏒ ᎢᏣᏓᏯᏫᏍᎨᏍᏗ. ᎢᏳᏃᏗᏍᏓᏓᏅᏟ ᎢᏣᏍᎦᏅᏤᎮᏍᏗ, ᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ; ᎢᏳᏃ ᎤᏲ ᎢᏯᏰᎸᏍᎨᏍᏗ, ᎯᏯᏙᎵᎨᏍᏗ. ᏄᏓᎴᏒᏰᏃ ᎪᎱᏍᏗ ᎡᏘ ᎪᏪᎳᏅᎯ ᎨᏒ ᎠᏴ ᎢᎦᏕᎶᏆᏍᏗ ᎠᏰᎸᏎ ᎪᏪᎳᏁᎢ, ᎾᏍᎩ ᏗᏛᏂᏗᏳ ᏂᎬᏁᎲ ᎠᎴ ᎤᎦᎵᏍᏗ ᎢᎦᏓᏅᏓᏗᏍᏗᏍᎬ ᎪᏪᎵ ᎾᏍᎩ ᎤᏚᎩ ᎢᎬᎯ ᎢᏳᎵᏍᏙᏗᏱ. ᎣᏁ ᎢᏴ, ᎠᎵᎮᎵᎨ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏧᏓᏏ, ᎯᏯᏔᏬᏙᎲᏍᎬᏍᎪ ᎯᎶᏄᎡᏗᎭ ᏴᏫ ᎤᏪᏥ? ᎥᏝ ᏂᎦᏛ ᏴᏫ, ᎠᏂᏃᎮᏍᎩᏉᏍᎩᏂ ᎤᏅᏒ ᎤᏁᎳᏅᎯ ᎦᏳᎳ ᏗᎬᏩᏑᏰᏛ ᏥᎨᏒᎩ, ᎾᏍᎩ ᎠᏴ ᎢᏧᎳᎭ ᎣᎦᎵᏍᏓᏴᏅᎯ ᎠᎴ ᏦᎦᏗᏔᎲᎯ ᎾᏍᎩ ᎤᏲᎱᏒ ᏧᎴᎯᏌᏅᎯ ᏥᏂᎨᏎᎢ. ᎤᏓᏩᏛᎮ ᎭᏫᏂᏨ ᎾᏂᏪᏍᎬ ᏃᎴ ᎤᏁᎷᎬ ᎤᎾᎵᎪᏚᏅ ᏏᏆ, ᏧᎴᎯᏌᏅ ᎢᎾᎨᎢ. ᎠᏎᏃ ᎠᏂᏆᎵᏏ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ ᎬᏗᎭ ᏥᏕᎦᏄᎪᏫᏍᎦ ᎠᏂᏍᎩᎾ. ᎥᎾᏕᏍᎩ ᏂᏨᎦ ᏕᎦᏅᏅ ᎢᏥᎶᎯᏍᏗᏱ, ᎾᏍᎩᏃ ᎠᏲᏅᎵ ᎨᏒ ᏞᏍᏗ ᏳᏂᎪᎸᏍᏔᏁᏍᏗ; ᎧᏅᏬᏗᏉᏍᎩᏂ ᎨᏎᏍᏗ. ᎤᏩᏃᏪᎢ ᏫᎵᎻ ᎤᏛᎦᎾ ᏄᏪᏒ ᎦᏬᏂᏍᎩ. ᎢᏧᎳᎭᏃ ᎨᏥᏅᏏᏓᏍᏗ ᏚᎳᏍᎬ ᎡᎳᏗ ᎤᏓᏅᏁ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᏙᎵᎩ ᏍᎩᎦᏘᏓ, ᏂᎦᏛᏃ ᏓᎬᏯᎫᏴᎡᎵ. ᎤᎵᏍᏛᏧᏅ ᎠᏧᏣ ᎤᎵᏒᎯ ᎠᏰᎳᏍᏘ ᎠᎰᎵ, ᎤᏑᎸ ᎤᏅᎦᎶᏔᏅ ᏩᏥᎳ. ᎩᎳᏉ ᎢᏴᏛ, ᏥᏛᎦᏔᎾᏫᏍᏗᏉ ᎢᎪᎯᏛ, ᎤᎵᏍᏆᎸᏗ ᎠᏤᎷᎩ ᏂᎦᎵᏍᏔᏅᎭ; ᎠᏤᎷᎩᏰᏃ ᏓᏳᏃᏴᎳᏏ, ᏧᏂᏲᎱᏒᎯᏃ ᏙᏓᎨᎦᎴᏔᏂ ᎠᏂᏲᎩ ᏁᎨᏒᎾ, ᎠᏴᏃ ᏓᏰᎩᏁᏟᏴᏏ. ᏉᎳᏃ ᎤᏑᎡᏒ ᏌᏱᎳ, ᎤᏂᎩᏒᎩ, ᎠᏁᏓᏅᏟ ᏕᎬᏩᏲᏒ ᎤᏁᎳᏅᎯ ᎤᏪᏙᎵᏍᏗᏱ. ᎯᎠ ᎾᏍᎩ ᎾᎿ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎬᏂᎨᏒ ᎾᎾᎵᏍᏗᎭ, ᎠᎴ ᎠᏍᎩᎾ ᏧᏪᏥ; ᎩᎶ ᏚᏳᎪᏛ ᏧᎸᏫᏍᏓᏁᎯ ᏂᎨᏒᎾ ᏥᎨᏐᎢ, ᎥᏝ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎨᏐᎢ; ᎠᎴ ᏗᎾᏓᏅᏟ ᎤᎨᏳᎯ ᏂᎨᏒᎾ ᏥᎨᏐᎢ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏅᏒᎩ ᏗᎹᏗ ᎢᏥᏩᏛᎲᏍᏗᏱ, ᎾᏍᎩ ᏥᎨᏳᎢ ᏥᎩ ᎠᏇᏥ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎤᎬᏫᏳᎯ ᏓᎧᎿᏩᏕᎬᎢ; ᎾᏍᎩ ᏓᏣᏅᏓᏗᏍᏔᏂ ᏄᏍᏛ ᎨᏙᎲ ᎦᎶᏁᏛ ᏕᏥᎦᎿᏩᏕᎬᎢ, ᎾᏍᎩᏯ ᏕᎦᏕᏲᎲᏍᎬ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏁᎶᏗ. ᎤᏑᏰᎯᏙᎸ ᎪᏪᎵ ᏚᏌᎥ, ᎤᎾᏩᏛ, ᏎᎦ ᎤᎪᎢᏰᎥ, ᏗᎪᏪᎵᏍᎩ ᎤᏅᏁᎸ. ᏧᎾᏕᎶᏆᏍᏗ ᏃᏊ ᏧᏓᎴᏅᎲ ᎠᏂᏲᏁᎦ ᎠᏂᏬᏂᏍᎩ ᏗᎾᏕᏲᎲᏍᎩ, ᎡᎵᏃ ᎪᎯᎩ ᏁᎲᎾ ᎢᎬᏩᎵᏍᏔᏅ ᎨᏎ ᏍᏏᏉᏯ ᏂᎬᏫᏍᏕᏃ ᏓᎾᏅᏓᏗᏍᎨ ᏣᎳᎩ ᏗᎪᏪᎳ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ, ᎢᏳᏃ ᎠᎵᏍᏓᏴᏗ ᏦᏍᏓᏓᏅᏟ ᏱᏚᏬᏕᏍᏗᎭ, ᎥᏝ ᏴᎦᏥᎦ ᎭᏫᏯ ᎡᎶᎯ ᎢᎪᎯᏛ ᎨᏒᎢ, ᏦᏍᏓᏓᏅᏟᏰᏃ ᏱᏙᏥᏲᏕᏍᏓ. ᎿᏉᏃ ᎢᎦᏛ ᎠᏂᏆᎵᏏ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏍᎩ ᎯᎠ ᎠᏍᎦᏯ ᎥᏝ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ, ᏝᏰᏃ ᏯᏍᏆᏂᎪᏗᎭ ᎤᎾᏙᏓᏆᏍᎬᎢ. ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏴᏫ ᎠᏍᎦᎾᎢ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏱᏚᎸᏫᏍᏓᏏ? ᏔᎵᏃ ᏄᎾᏓᏛᎩ. ᎰᎻ ᎠᎪᏕᏍᎩ, ᎧᏁᏌᎢ ᎯᏍᏚᎲᎦ ᏏᏆ ᏃᎴ ᎯᎷᏨ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ ᎩᎳᏈᏴᎯ!” ᎪᎰᏍᏗ ᏯᏆᏛᏁᎸᏓ. ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏂᎯ ᏱᎯᎦᏔᎮᎢ, ᎥᎥ, ᏂᎯ, ᎪᎯ ᎾᏍᏉ ᎾᏍᎩ ᎯᎠ ᏣᏤᎵ ᎢᎦ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᏣᏁᎯ ᎨᏒᎢ! ᎠᏎᏃ ᎿᏉ ᎡᏨᏍᎦᎳᏁᎸ. ᎢᏳᏍᎩᏂ ᎢᎩᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒ ᎤᏚᎩ ᏱᎬᎭ, ᎿᏉ ᏗᏛᏂᏗᏳ ᎢᏗᎦᏘᏲ ᎾᏍᎩ. ᎾᏍᎩ ᎦᏰᏥᏐᏢᏔᏅ, ᎥᏝ ᏳᏞᏤ ᏱᎬᏩᏓᏐᏢᏔᏁᎢ; ᎤᎩᎵᏲᏨᏃ ᎥᏝ ᏳᏁᏤᎢ; ᏚᏓᏲᎯᏎᎴᏉᏍᎩᏂ ᎾᏍᎩ ᏚᏳᎪᏛ ᏗᎫᎪᏓᏁᎯ. ᎤᏓᏅᏎᏃ ᎢᎾᎨ ᏬᎶᏎ ᎠᎴ ᎠᏓᏙᎵᏍᏗᏍᎨᎢ. ᎤᎿᏛ ᎠᏒᏛ ᏗᎦᎾᎥ ᏗᏣ ᏭᎶᏎ ᏩᎭᏯ. ᏥᏌ ᎤᏛᎦᏅᎩ ᎬᏩᏄᎪᏫᏒᎢ; ᎤᏩᏛᎲᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᏲᎢᏳᎲᏍᎦᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏪᏥ? ᎥᏝᏍᎩᏂᏃᏅ ᎾᏂᎥ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏳᏁᎭ; ᎩᎶᏰᏃ ᏙᏧᎾᏓᏅᏛ ᎤᏂᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎯ ᎨᏒ ᎢᏯᏍᏗ ᎠᎾᎵᏍᏓᏴᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏣᏂᎩᏍᎪ ᎾᏍᎩᏯᎢ; ᏚᎾᏓᏅᏛᏃ ᏗᏩᎾᎦᎳᎯᏳ ᎨᏒ ᏗᎦᏓᎭ ᏂᏙᎦᎵᏍᏗᏍᎪᎢ. ᎤᎩᏨᏛᏃ ᎠᎾᎢᏎ ᎠᎴ ᎿᏉ ᎾᎥᏂᎨ ᎤᏂᎷᎴ ᏗᎦᏚᎲᎢ, ᏈᏓ ᎤᎩᎳᏫᏎ ᎦᏌᎾᎵ ᎤᏓᏙᎵᏍᏔᏅᏎ ᏔᎳᏚ ᎢᏳᏟᎶᏛ ᎢᏴᏛ ᎧᎳᏩᏗᏒᎢ. ᎠᏎᏃ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᎪᎲ, ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏃᎮᎴ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎤᏘᏰᏗ ᏥᎩ ᏧᎬᏩᎶᏗ, Ꭷ, ᎡᏗᎷᎦ, ᎾᏍᎩᏃ ᏧᎬᏩᎶᏗ ᎤᏘᏯᏍᏓᏁᏗ ᎨᏒ ᎢᎦᏤᎵ ᏱᏂᎦᎵᏍᏓ. ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ, ᎾᏍᎩ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎯᎠ ᏂᏥᏪᏍᎬᎢ, ᎠᏴ ᏉᎳ ᏥᏯᎵᎪᏁᎯ; ᎠᏴᏃ ᎠᏉᎳ; ᎠᏴᏃ ᏏᏆᏏ; ᎠᏴᏃ ᎦᎶᏁᏛ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏳᏃ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᏓᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎠᏲᎵ ᏥᏓᏓᏂᎸᎪᎢ, ᎥᏝ ᎾᎿ ᏱᏮᎬᏴᎭ. ᏍᏈᏍᏓ ᏧᎪᎲ ᏏᏆ ᎤᏂᎷᏨ ᏃᎴ ᎤᎾᎵᏛᏔᏅ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏓᎨᏏ.” ᎾᎯᏳ ᎨᏒ ᎢᏳᏃ ᎩᎶ ᎯᎠ ᏂᏥᏪᏎᎮᏍᏗ, ᎬᏂᏳᏉ ᎠᏂ ᎦᎶᏁᏛ ᎡᏙᎭ; ᎠᎴ ᎠᏂ; ᏞᏍᏗ ᏥᏦᎯᏳᏂ ᎤᏍᏗ ᎠᎦᎸᏓ ᏄᎾ ᎦᏁᎦ ᎤᏩᏛᎮ, ᎤᏩᏯᎨᎢ. ᎾᏍᎩᏃ ᎠᏍᎦᏂ ᏧᎬᏫᏳᏌᏕᎬᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎬᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᏌᏕᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎬᏂᏛ ᎦᎾᏄᎪᏫᏍᎬ ᎬᏔᏅᎯ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᎢᏳᏩᏂᏌᏛ. ᎣᏂᏄᎸᏅᏃ ᎣᏥᏍᏗᏰᏗᏍᎬᎢ, ᎣᎩᏑᎵᎪᏨᎩ, ᎯᎠ ᏃᎩᏪᏒᎩ; ᎤᎬᏫᏳᎯ ᎠᏓᏅᏖᏍᎬ ᏫᏂᎦᎵᏍᏓ. ᎿᏉᏃ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᏪᏅᏎ ᏭᏃᏔᏁᎢ, ᎯᏍᎩᏃ ᎢᏯᎦᏴᎵ ᎤᏁᏉᏤᎴᎢ. ᎢᏳᏃ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ ᏱᎩ, ᎥᏝ ᏰᎵ ᎪᎱᏍᏗ ᏱᏙᎬᏩᎸᏫᏍᏓᏏ. ᎤᎬᏫᏳᎯ ᎤᏁᏗ ᎨᏎᏍᏗ ᎤᏩᏛᏗᏱ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎾᎯᏳ ᎢᎦ. ᎠᎴ ᏂᎦᎥ ᎠᎩᏍᏕᎸᎯᏙᎸ ᎡᏈᏌ ᎣᏏᏳ ᎯᎦᏔᎭ. ᎠᎧᏔᎮᎢ ᎾᎥᏂ ᎨᏒ ᏍᎦᏚᎩ ᎤᎾᏓᎪᎾᏙᏗ, ᏃᎴ ᎤᏩᏅᎨ ᎤᏪᏅᏍᏗ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪ ᏎᎭ; ᎢᏳᏃ ᏂᏥᎬᎾ ᏴᏫ ᎤᏪᏥ ᎤᏫᏯ, ᎠᎴ ᎤᎩᎬ ᎢᏣᏗᏔᎲ ᏱᎩ, ᎥᏝ ᎬᏂᏛ ᏱᏥᏯᎠ. ᎯᎠ ᏂᎦᏪᏍᎬᎩ ᎠᏍᏓᏯ ᎧᏁᎬᎩ, ᎤᏁᎳᏅᎯ ᎡᏥᎾᏰᏍᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎡᏥᎸᏉᏗᏍᎨᏍᏗ; ᎾᎯᏳᏰᏃ ᏧᏭᎪᏙᏗ ᎨᏒ ᎠᎵᏰᎢᎶᎦ; ᎠᎴ ᎡᏣᏓᏙᎵᏍᏓᏏ ᎾᏍᎩ Ꮎ ᎦᎸᎶᎢ ᎤᏬᏢᏅᎯ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᎠᎹ ᏕᎦᏄᎪᎬᎢ. ᎾᏍᎩ ᎤᏛᎦᏁ ᎦᏬᏂᏍᎬ ᏉᎳ, ᎾᏍᎩ ᎤᏯᎾ ᏒᎯ ᏚᎧᎿᏅ ᎠᎴ ᎤᏙᎴᎰᏒ ᎤᎲ ᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏪᏗ, ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪᎯᎠ ᏥᏂᎬᏪᏏ, ᎬᎪᎥᎩ ᎭᏫᏂᏗᏢ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎰᎯᏳᎲᏍᎦ? ᎤᏟ ᎢᏳᏍᏆᏂᎪᏗ ᎯᎪᏩᏘᏍᎨᏍᏗ, ᎡᏍᎦᏉ ᎾᏍᎩ. ᎾᏍᎩ [ᎤᏓᏅᏘ] ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎨ ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᎠᏴ ᎠᏁᎲ [ᎬᏂᎨᏒ ᏥᏄᏩᏁᎸ;] ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᎩ ᏂᎯ ᎢᏥᏯᎢ, ᎾᏍᎩ ᎤᏚᎩ ᎨᏨᏗ ᏥᏂᎬᏁ ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏫᏥᎾᏄᎪᎢᏍᏗᏱ. ᏐᏉ ᎢᎦ, ᎤᏍᏗ ᏥᏍᏆ ᏭᏂᎸᏅ ᎤᎦᎹ ᎤᏂᎬ, ᎠᎹᏉ ᎢᏳᏍᏗ, ᏯᎦᏕ ᎪᎰᏍᏘ ᎠᏑᏱ ᏅᏯ ᏱᏭᏂᏝᏁ. ᏂᎦᏛᏃ ᎤᏮᏕᏦᏁ ᎠᎴ ᏚᎴᏁ ᎤᏍᏓᏩᏛᏎᎢ. ᎾᎨ ᎢᏴ ᎠᏂᎩᏍᎨ, ᎤᏗᏍᎩ ᎠᎢᏎ ᏰᎵ ᏄᎵᏍᏔᏅᎲ, ᏫᏥ ᎢᎦ ᎨᏎ ᎠᏓᏓᏏᏂᏎ ᏕᏧᎬ ᎡᎳᏗ ᏧᎧᏁᎸ ᏃᎴ ᏧᏩᏂᎦᏝᏅᎯ, ᏍᎩᏉ ᎢᏳᏛᏁᏘ ᎨᏎ. ᎦᏙᏰᏃ ᏳᏁᏉᏥ ᏴᏫ ᎢᏳᏃ ᏂᎬ ᎡᎶᎯ ᎤᏤᎵ ᏱᏄᎵᏍᏔᏅ, ᎤᏩᏒᏃ ᏳᏲᎱᏒ ᎠᎴ ᏯᎦᏓᎢᏅ. ᎬᏩᏔᏲᏎᎸᎩᏃ ᎦᏓᎷᏯᏛᏉ ᎾᏍᏉ ᎤᏄᏩᎥ ᎤᎾᏒᏁᏗᏱ, ᏂᎦᏛᏃ ᎤᎾᏒᏂᎸᎯ ᏚᎾᏗᏩᏒᎩ. ᏂᎦᏓ ᎣᎪᎵᏍᏗ. ᎠᏏᏉᏃ ᎦᏬᏂᏍᎨ ᎩᎶ ᎢᏳᏍᏗ ᎠᏆᎵᏏ ᎤᏔᏲᏎᎴ ᎤᎵᏍᏓᏴᎾᏁᏗᏱ; ᎤᏴᎴᏃ, ᎠᎴ ᎤᎵᎩᏳᏍᏓᏅᏁᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᏩᏂᎴᎢ, ᏅᏧᎵᏍᏙᏔᏁᎤᏁᎳᏅᎯ ᏄᎸᏉᏔᏅᎾ ᎨᏒᎢ. ᏥᏍᎪᏴᏃ ᎬᏩᏯᎥ ᎤᏲᎱᏎᎢ. ᎾᏍᎩᏴ ᎠᏤᎯ ᏏᏆ ᎭᏫᏯ ᏃᎴ ᏗᎦᏒᏍᏔᏅ ᏏᏆ ᎭᏫᏯ ᎱᏚᎴᎲ! ᎤᏁᎦ ᎦᎸᎶᎢ ᎧᏂᎩᏛ ᏥᏍᏆ. ᎠᎵᏰᎾ ᎬᏂᎨᏒ ᏂᎬᏁ ᎫᎪᏗᏍᎩ ᏧᏆᎶᎦ ᏫᏚᎪᏍᎬ ᎦᏙᎯ. ᏩᎦ ᏓᏂᏁᎩᎡᎲ ᎦᏍᎩᎶ ᎤᏬᏠ ᎤᏅᏏᏴ, ᏏᏆ ᎤᏴᏍᏗ ᎾᎥᏂ ᏃᎴ ᏚᎦᏙᏍᏙ ᏰᎵ ᎢᏳᏪᏅᏍᎥᏗᏏ ᎭᎾᏉ ᎤᏬᏠ ᎤᏛᎦᏍᏙ.” Florida ᎢᎨᏅᏍᏗ ᎠᏆᏚᎵ, ᎤᏛᏅ Perry. ᎯᎠᏃ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᎤᏲ ᎠᏂᏬᏂᏍᎬ ᏴᏫ, ᎤᏂᏃᎮᏗ ᎨᏎᏍᏗ ᏗᎫᎪᏗᏱ ᎢᎦ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎯᎠ ᎤᏁᏨ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎣᎦᏛᎦᏅᎩ, ᎾᎯᏳ ᎦᎸᏉᏗ ᎣᏓᎸ ᎢᏧᎳᎭ ᎣᏤᏙᎲᎢ. ᎦᎸᏓᏱ ᎤᏲᎰᏎ ᏱᎪᎵᎬᎾ ᎤᏂᏌᎭᏙᎭᏴ ᎠᎴ ᏳᏬᎯᏳᏔᏅᏓ. ᎢᏳᏃ ᎣᏍᏛ ᏃᏍᏓᏛᏁᎸᎢ ᎯᎠ ᎠᏲᎤᎵ ᎠᏍᎦᏯ, ᎢᏳᏍᏗ ᎬᏔᏅᎯ ᎨᏒ ᎠᏥᏅᏩᏅᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎪᎯ ᎢᎦ ᎢᎣᎩᎾᎵᏱᎵᏕᎮᏍᏗ, ᎠᏎ ᏓᎾᏓᏟᏱᏍᎪ ᏏᏆ ᏱᎨᏥᎸᎾ.” ᎾᏍᏉᏃ ᎥᎤᎷᏨᎩ ᏂᎦᏗᎹᏏ, ᎾᏍᎩ ᎢᎬᏱᏱ ᏥᏌ ᎡᏃᏱ ᎤᎷᏤᎸᎯ, ᎤᏲᎸᎩ ᏗᏜᏍᏔᏅᎯ ᎻᎳ ᎡᎳᏫᏃ, ᎠᏍᎪᎯᏧᏈ ᎢᏴᏛ ᎢᏳᏓᎨᏛ. ᏧᏁᎶᎸᎯᏃ ᎤᏂᎪᎲ ᏄᎵᏍᏔᏅᎢ ᏚᎾᎵᏘᏎᎢ, ᎠᎴ ᎤᏁᏅᏎ ᏭᏂᏃᏁ ᏗᎦᏚᎲ ᎠᎴ ᎢᏴᏛ ᏭᏩᎫᏛᎢ. ᏧᎦᏴᎵᎨ ᏚᏂᏁᏤᎸ ᎯᎠ ᏂᏚᏂᏪᏎᎸᎩ; ᎣᏍᏗᎦᏔᎭ ᎯᎠ ᎣᎩᏁᏥ ᎨᏒᎢ, ᎠᎴ ᏗᎨᏫ ᎤᏕᏅᎢ; ᏯᎵᏖᎸᎮᏍᎬᎾ ᎤᏬᏞ, ᎠᏓᏅᏖᏍᎨᎢ. ᎠᏎᏍᎩᏂᏃᏅ ᎥᏝ ᎠᏍᎦᏯ ᏂᎨᏴ ᏔᎵ ᏄᏛᏛᎾ ᏰᎭ, ᎥᏝ ᎠᎴ ᎠᎨᏴ ᎠᏍᎦᏯ ᏔᎵ ᏄᏛᏛᎾ ᏰᎭ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏄᏩᎾᏅᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎦᏓᏅᏖᏍᎬ ᎯᎠ ᏄᏍᏗ, ᎾᏍᎩ ᏗᏓᏕᏯᏙᏙᏗᏱᏉ ᏂᎨᏒᎾ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲ ᎤᎾᏖᎴᏛ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏔᏅᎯ ᏥᎩ; ᏔᎵᏁ ᎤᏲ ᎨᏒ ᎤᎶᏐᏅ; ᎬᏂᏳᏉ ᏦᎢᏁ ᎤᏲ ᎬᏒ ᏞᎩᏳ ᏓᎦᎷᏥ. ᎠᏎᏃ ᎯᎠ ᎾᏍᎩ ᏧᎬᏩᎶᏗ ᎦᏓᏉ ᏗᎪᏢᏔᏅᎯ ᏕᎩᎶᏗ, ᎾᏍᎩ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝᏃ ᎠᏴ. ᎤᏂᏁᏨᏃ, ᎥᏝ ᏲᏥᎦᏔᎭ ᏧᏓᎴᏅᎢ, ᎤᎾᏛᏁᎢ. ᏣᎵᏍᏙᏂ ᏓᏳᎶᏒ ᎠᏧᏣ ᏓᏆᎧᎾᏅ ᏃᎴ ᏭᏅᎦᎳᎲ ᏓᏍᏔᏅᏅ, ᏧᏍᎩᏃᎢ ᎤᏛᏅ, ᏰᎵᏉ ᏦᎳ ᎠᎩᏩᎯᏍᏙᏗ ᏱᏗᏥᏒᏁ ᏃᏉ ᎠᏓᎴᏂᏍᎩ, ᎠᏎᏃ ᎦᏳᎳ ᎭᏁᏌᎦ. ᎠᏆᏍᎦᏱᏛ ᏄᎵᏍᏔᏅ. ᎾᏍᎩᏃ ᏧᎾᎩᎸᏗ ᏏᏌᎵᏱ ᏭᏂᎷᏨ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎪᏪᎵ ᎤᏂᏅᏁᎸ, ᎾᏍᏉ ᏉᎳ ᏚᏂᏲᎯᏎᎸᎩ. ᎬᏪ!! ᎢᏍᏓᏯᏊ ᎤᏃᎸᏎ. ᎢᏳᏃ ᏅᏩᎾᏓᎴ ᎾᏍᎩ ᎯᎠ ᎢᎨᏨᏁᏗᏱ ᏳᏂᎭ; ᏝᏍᎪ ᎠᏴ ᎤᏟ ᎢᎦᎢ? ᎥᏝᏍᎩᏂᏃᏅ ᎾᏍᎩ ᎯᎠ ᎢᎦᏲᎦᏛᏁᏗ ᎣᎩᎲ ᏱᏃᎦᏛᏁᎸ; ᎤᏁᎳᎩᏉᏍᎩᏂ ᎣᎨᎵᏒ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎣᎩᏂᎬᏎᎲᎢ, ᎾᏍᎩ ᎣᎦᎵᏫᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎠᎢᏒᎢ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎾᏍᎩ ᎩᎶ ᏱᏕᏣᏓᏲᎯᏎᎸ ᎢᏥᏅᏏᏙᎲ ᎡᏦᎢᏳᏗᏱ, ᎾᏍᎩ ᎢᏥᎾᏝᎢ ᎨᏒ ᎡᏦᎢᏳᎲᏍᎩ; ᎾᏍᏉ ᎠᏍᎦᏂ ᏱᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎩ ᏱᎩ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᏱᎩ, ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᎬᏗᏍᎩ? ᎠᏴ ᏥᏧᏏ ᏏᎵᏏᏱ ᎠᏆᏕᏅᎯ ᏓᏌ ᎦᏚᎲᎢ, ᎠᏎᏃ ᎠᏂ ᎦᏚᎲ ᎠᏆᏛᏒᎯ, ᎨᎺᎵ ᏚᎳᏍᎬᎢ ᎥᏇᏲᏅᎯ ᏭᏂᎫᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒ ᏗᎩᎦᏴᎵᎨ ᎨᏥᏁᎸᎯ, ᎤᎵᏂᎩᏗᏳᏃ ᎠᏆᏓᏅᏛᎩ ᏕᏥᎦᎿᏩᏗᏒ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏂᏥᎥ ᏂᎯ ᏥᏄᏍᏗ ᏥᏣᏓᏅᏔ ᎪᎯ ᎢᎦ ᏥᎩ. ᏧᎾᎵᏂᎩᏛ ᏚᏪᎧᎲᏒ ᎤᎾᏅᏗᏱ, ᎠᎴ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏚᏌᎳᏓᏅ. ᎿᏉᏃ ᎤᎾᏝᎢ ᏭᏯᏅᎲ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᏁᎫᏥᏛ ᎬᏅᏏᏓᏍᏗ, ᎤᏁᎳᎩ ᎬᏰᎵᏎᎸᎩ ᏂᎦᏛ ᏂᎯ ᏥᎬᏚᎬᎩ, ᏍᎩᏔᏲᏎᎸ ᎢᏳᏍᏗ. ᎨᏍᏗ ᎩᎶ ᏲᏥᎸ, ᎣᏣᏍᎩᏗᏍᎬ ᎤᏩᏌ. ᎠᏎᏃ ᎣᎩᏍᏛᏗᏍᏗ ᎩᎦ ᎣᎩᏁᎲ ᏓᏳᏓᎴᏅᏓ. ᎾᏍᏉ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᏱᏓᏂᏬᏂᎭ ᎡᎶᎯ, ᎠᏎᏃ ᎥᏝ ᏌᏉ ᎾᏍᎩ ᎪᎱᏍᏗ ᏂᎦᏛᎬᎾ ᏱᎩ. ᎤᏛᏅᎢᏍᏛ ᏧᏓᏟᏴᏗ ᎤᏪᎵᏎ ᏣᎵ. ᏥᏏᎾᏒ ᎣᏍᏓ ᎾᏆᎵᏍᏔᏁᎸ, ᎤᏃᎯᏳᏅ ᎬᎩᏍᏗ ᏱᎨᏒᎾ ᎤᏣᎴᏛ ᏃᎴ ᏧᏤᎵ ᏴᏫ. ᎠᎴ ᎢᏨᏲᏎᎭ ᏂᎯ ᎢᎦᎵᎢ, ᏞᏍᏗ ᏱᏗᏥᏍᎦᎢᎮᏍᏗ ᎠᏰᎸ ᎠᏂᎯᎯ, ᎿᏉᏃ ᎪᎱᏏᏗ ᎤᏟ ᎢᏴᏛ ᏫᎬᏩᎾᏛᏁᏗ ᏂᎨᏒᎾ ᏥᎩ. ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ ᎡᏆ ᏓᏏᎳᏕ, ᏃᎴ ᎦᎸᎳᏗᏣ ᏓᏏᎳᏛ, ᎡᎳᏗ ᎢᏳᏩᏂ ᎠᏍᎪᎵ ᎯᎦᏓᎡ ᎡᏆ ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩ. ᎮᎵᎠᏍᎪ ᎣᏍᏓ ᏄᏪᏎ?” ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏍᏗ ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ. ᎠᏲᎩ ᎠᏫᏒᎯ ᎨᏐᎢ; ᎠᏲᎩ ᏂᎨᏒᎾ ᏗᎴᏙᏗ ᎨᏎᏍᏗ. ᎢᏓᏓᏅᏟ ᏞᏍᏗ ᏱᏗᏣᏓᏍᎦᎨᏍᏗ ᏱᏕᏧᎪᏓᏏᏰᏃ ᎢᏥᏍᎦᏅᏨᎢ. ᎬᏂᏳᏉ ᏗᎫᎪᏗᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎦᏙᎦ. ᎾᏍᎩ ᎠᎺ ᎠᎴ ᎩᎬ ᎤᎷᎯᏍᏔᏅᎯ, ᎯᎠ ᏥᏌ ᎦᎶᏁᏛ; ᎥᏝ ᎠᎹᏉ ᎤᏩᏒ, ᎠᎹᏍᎩᏂ ᎠᎴ ᎩᎬ. ᎬᏩᏠᏯᏍᏗ ᎠᎴ ᎠᏓᏅᏙ ᎾᏍᎩ ᎧᏃᎮᏍᎩ, ᎠᏓᏅᏙᏰᏃ ᎦᏱᎪᎩ ᏂᎨᏒᎾ. ᎪᎯᏃ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎾᏍᎩ ᎤᎾᏄᎪᏥᎸ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏲᏍᏔᏅᎯ ᏥᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ, ᎠᎴ ᎤᎾᏄᎪᏫᏒᎯ ᏥᎩ ᎬᏂᏛ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏔᏅᎯ, ᎤᎾᏘᏃᎮᎴᏃ; ᎤᎪᎲᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᏓᏅᏙ ᎤᎩᎸᏁᎢ; ᎡᎳᏗᏃ ᎤᏅᏤᎢ, ᎠᎴ ᏓᎭᏬᎢᎲ ᎠᎵᏗᏒᏂᎮᎢ. ᎤᎵᏍᏈᏗᏃ ᎤᎩᏒ ᎠᎴ ᎤᎵᎮᎵᏨ ᏚᏁᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏂᏥᎥ ᎢᏣᏗᏔ; ᏥᏔᏲᎯᎲᎢ, ᎾᏍᎩ ᎢᏳᏃ ᏰᎵ ᎣᎩ ᎪᎯ ᎿᏉ ᎣᏍᏛ ᎢᏯᏆᎵᏍᏓᏁᎸᏍᏗᏱ ᎦᎢᏒ ᏫᏨᎷᏤᏗᏱ, ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎠᏰᎸᏍᎬ ᏅᏓᏳᎵᏍᏙᏗᏱ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏧᎿᎷᏒ ᎠᎹᏱ ᎫᏓᏅᏒ, ᎤᎪᎮ ᎦᎸᎶᎢ ᎠᏂᏍᎦᏰᎬᏍᏓ, ᎢᏳᏉ ᎣᏁᏙᎵᏓᏍᏗ ᎨᏒ, ᏫᏥᎢᎦ ᎨᏒ, ᎠᏆᏓᎾᏅ ᎠᏁᏙᎲ. ᎤᎾᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᏂᎦᏛ ᏚᏃᎸᏎᎢ; ᎠᎴ ᎤᏄᏖᏎ ᎤᎵᎬᎭᎷᏴᎯ ᎤᎾᏘᏰᎸᎯ ᏔᎳᏚ ᎢᏯᎧᎵᎢ ᏔᎷᏣ. ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏧᏠᎠᏎ ᎾᏍᎩ ᎤᏪᏯᎸᏤᎢ, ᎠᏰᎸ ᏧᎴ-ᏗᏍᎪᏂᎯ ᎾᏍᎩᏯ ᎨᏌ ᎤᏙᏢᏒᎢ; ᎧᏁᎬᏃ ᎦᎸᎳᏗ ᏧᎶᏎᎯᎠ ᏅᏧᏪᏎᎢ; ᏂᎯ ᎬᎨᏳᎢ ᎠᏇᏥ; ᎣᏏᏳ ᎬᏰᎸᎢ ᏂᎯ. ”ᎦᏙᏃ ᏔᏛᏁᎵ ᏓᏍᎩᏍᏆᏂᎪᏔᏂ? ᎤᏛᏛᏁ ᏫᎵᎻ, ᎤᏟᏂᎩᏓ ᎤᏓᏅᏖᎸ ᏄᏪᏎ. ”ᎠᎳᏂ, ᎪᎱᏍᏗ ᎬᏃᎯᏎᏗ,” ᎤᏛᏁ. ᎾᏍᎩᏃ ᎠᏴ ᏉᎳ ᎠᏋᏒ ᎢᏨᏍᏗᏰᏗᎭ ᏥᏁᎢᏍᏗᎭ ᎤᏙᎵᏍᏙᏏᏳ ᎨᏒ ᎠᎴ ᎤᏓᏅᏘᏳ ᎨᏒ ᎦᎶᏁᏛ, ᎠᏴ ᎾᏍᎩ ᏥᏨᏰᎳᏗᏙᎰ ᎠᏆᏓᎾᏰᏍᏗ ᏥᎨᎰᎢ, ᎠᏎᏃ ᎠᎩᎪᏁᎸ ᏂᏨᎾᏰᏍᎬᎾ ᏥᎩ ᏂᎯ-- ᏣᏂᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎬᏩᏃᏁᎴᎢ. ᎾᏍᎩᏰᏃ [ᎦᎶᏁᏛ] ᎠᏰᎸᎢ ᎠᏯᎠ ᏂᎦᏛ ᎠᎧᎵᎢ ᎤᏁᎳᏅᎯ. ᏙᎢᏳᏍᏘ ᏣᏂᎬᎦ? ᎨᏍᏗ ᎪᎱᏍᏗ ᏣᏓᏅᏖᏙᏗ ᏱᎩ. ᏥᏌᏃ ᏚᎴᏅ ᎤᏍᏓᏩᏛᏒᎩ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ. ”ᎭᏓᎾᏫᏗᏍᎨᏍᏗ, ᎠᏯ ᏥᏙᎬ ᎢᏣ ᎩᎶᎯ, ᏔᏓᏅᏗᏍᏓ, ᏔᏓᏅᏗᏍᏓ, ᏔᏓᏅᏗᏍᏓ! ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏅᏙ ᎠᏆᏘᏂᏙᎲᎩ; ᎠᎴ ᎬᏂᏳᏉ ᎦᏍᎩᎶ ᎦᎸᎶᎢ ᎤᏂᏍᎩᎳᏛᎩ, ᎩᎶᏃ ᎾᎿ ᎦᏍᎩᎸ ᎤᏪᏅᎩ. ᏃᏗ ᏒᎾᎢ ᏃᎴ ᎠᎾᏓᎴᏴᏗᏍᎩ ᎢᏳᏂᏍᏗ ᎭᏁᎰᎢ ᎭᎾᏂ. ᎠᎴ ᏥᎬᎵᏲᎬ ᎾᏍᎩ ᎠᎩᏇᏓᎸ ᏣᏇᎲᎩ, ᎥᏝ ᏅᎵᏌᎵ ᏱᏥᏰᎸᏁᎢ, ᎠᎴ ᎥᏝ ᏱᏥᏲᎢᏎᎴᎢ; ᏕᏍᎩᏯᏓᏂᎸᏨᎩᏍᎩᏂ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎦᎶᏁᏛ ᏥᏌ ᎾᏍᎩᏯᎢ. ᎠᎴ ᏕᏥᏅᏫᏍᎨᏍᏗ ᏧᏂᏢᎩ ᎾᎿ ᎠᏁᎲᎢ, ᎠᎴ ᎯᎠ ᏂᏕᏥᏪᏎᎮᏍᏗ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎥᏂᏳ ᎢᏥᎷᏤᎸ. ᎢᏳᏰᏃ ᏱᏅᏩᏎᎦᏨ ᎹᏏᏙᏂ ᎠᏁᎯ ᏱᎬᎩᏍᏓᏩᏕᏅ, ᏱᏨᏩᏛᏔᏅᏃ ᏂᏣᏛᏅᎢᏍᏔᏅᎾ, ᎠᏴ, (ᎥᏝᏰᏃ ᏂᎯ ᏱᎦᏗᎭ,) ᏲᏣᏕᎰᎯ ᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᎣᎪᎯᏳᎯ ᎣᎦᏢᏈᏒᎢ. ”ᎦᏨ ᎮᎵ ᏯᏇᎾ?” ᏥᏛᏍᎩᏗᏍᎪ ᏒᎧᏔ ᎢᏗᎬᏓ ᏓᏛᎯᏍᏗᏍᎨ ᏒᎧᏔ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅᎩ ᏂᎦᏛ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ ᎡᏈᏌ ᎠᏁᎯ; ᏂᎦᏛᏃ ᎤᏂᎾᏰᏒᎩ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᏚᏙᎥ ᎦᎸᏉᏗᏳ ᏄᎵᏍᏔᏅᎩ. ᏥᏌᏃ ᎤᏁᏨ ᏓᏕᏲᎲᏍᎬ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᏃ ᏗᏃᏪᎵᏍᎩ ᎦᎶᏁᏛ ᏕᏫ ᎤᏪᏥ, ᏣᎾᏗᏍᎪᎢ? ᎠᎴ ᎤᏂᏁᏟᏴᏎ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᎤᏤᎵᎦ, ᎠᏲᎱᏍᎩ ᏴᏫ ᏗᏟᎶᏍᏔᏅᎯ ᎾᏍᎩᏯ ᏄᏅᏁᎴᎢ, ᎠᎴ ᏥᏍᏆ, ᎠᎴ ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏗᏠᎯᏍᏔᏅᎯ ᎨᏒ ᎥᏝ ᎠᏍᏓᏱᏛᎯ ᏱᎨᏎ ᎩᎬ ᎬᏔᏅᎾ ᏂᎨᏒᎾ ᏱᎩ. ᎤᏩᎾᏬᏐᏁ ᎤᏂᏥ. ᏦᏚᎯ! ᎥᏝᏰᏃ ᎠᏓᏅᏙ ᎠᏥᎾᏝᎢ ᏔᎵᏁ ᎡᏥᏁᎸᎯ ᏱᎩ, ᎾᏍᎩ ᎢᏥᎾᏰᎯᏍᏗᏱ; ᏧᏪᏥᏍᎩᏂ ᎢᎨᎬᏁᎸᎯ ᎤᎾᏓᏅᏙ ᎡᏥᏁᎸ, ᎾᏍᎩ ᎢᏛᏗᏍᎬ, ᎠᏆ! ᎡᏙᏓ! ᏥᏓᏗᏍᎪᎢ. ᎠᏏᏉᏃ ᎠᏥᏅᏩᏅᎯ ᎠᏲᎤᎵ ᏕᎤᏂᏴᏎ ᏈᏓ ᎠᎴ ᏣᏂ, ᏂᎦᏛ ᏴᏫ ᏕᎬᏩᏂᏔᏫᏤ ᎠᏲᏓᏝᎲᎢ ᏐᎵᎹᏅ ᎤᏤᎵ ᏥᏕᎤᏙᎥ, ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ. ᏧᏂᎩᏣᏅ ᏃᎴ ᏧᏩᏂᎦᏝᏅ ᎦᎳᎨᏰ ᎾᏍᎩᏯ ᏧᏪᏘ ᏧᎪᎳ. ᎤᏬᎯᏤᏃ ᎾᎿ ᎤᏁᏙᎴᎢ, ᎾᏂᏍᎦᎢᎲᎾ ᎠᏂᏬᏂᏍᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᎾᎵᏍᎦᏍᏙᏛ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎠᏍᏓᏱᏗᏍᎨ ᎧᏃᎮᏛ ᎤᏩᏒ ᎤᏓᏙᎵᏣᏛ ᎧᏃᎮᏍᎩ, ᏓᏁᎮ ᏧᏃᏰᏂ ᏧᏅᏙᏗᏱ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ. ᎨᏍᏗ ᏱᏓᎬᏯᎵᏍᎪᎸᏓᏁᎵ ᏣᎵᏬᎢᏍᏗ, ᏫᎵᎻ.” ᏂᎦᏛ ᎤᎾᏓᏅᏘ ᏫᎨᏥᏲᎵᎭ. ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ; ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎾᎿ ᎾᎲᎾ ᎨᏒ, ᎾᎿ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏲᏍᏙᏗ ᎨᏒ ᎥᏝ ᏰᎭ. ᎾᏍᎩ ᎢᏳᏏᏗ, ᎢᏳᏃ ᎩᎶ ᎦᎶᏁᏛᏱ ᎠᏯᎡᏍᏗ ᎾᏍᎩ ᎢᏤ ᎾᎬᏁᎸ; ᏧᏓᎴᏅᏛ ᎤᏪᏘ ᎨᏒ ᎤᎶᏐᏅ; ᎬᏂᏳᏉ, ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎢᏤ ᏄᎵᏍᏔᏅ. ᏰᎵᏉ ᏗᎦᏔᏍᏔᏅ ᏗᏎᏍᏗ ᎨᏒ, ᏂᎦᎥ ᎤᏐᏱᎭ ᎨᏒ. ᏛᏍᏆᎸᎯᏍᎩᏂ ᎾᎯᏳ ᎨᏥᏯᏅᎡᏗᏱ ᎠᏕᏒᎲᏍᎩ, ᎾᎯᏳᏃ ᎿᏉ ᎠᎹᏟ ᏛᏅᏂ. ᏕᎾᏓᎪᎲᏳ ᏫᎵᎻ ᏳᏨᏉᏛᎾ! ”ᎯᎠᎾ?” ᎤᏛᏛᏁ. ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎦᏑᏰᏒ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎢᎩᎷᏤᏗᏱ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ; ᎠᎦᏗᏓ ᎨᏒ ᎤᏓᏔᏅ, ᏫᏥᎢᎦ ᎨᏒ ᏘᎳ, ᎠᏎᏃ ᎦᏲᏟᏉ ᎢᎾᎨ ᎡᎯ ᏗᎪᏩᏛᏗ, ᎠᏂᏃᎯᎵᏙ ᏚᏂᏒᏅ ᏯᎾᏏ ᏃᎴ ᎠᏫ ᎢᏳᏂᏍᏗ ᏃᎴ ᎠᏫ ᎦᏣᏄᎳ ᎠᎾᏓᏒᎲᏍᎦ, ᏰᎵ ᏧᏒᎯᏓ ᎤᎧᎭᏲᏓ ᎠᏓᏁᏢ ᎣᏥᎩᏍᎪ. ᎠᏂᎨᏯ ᏚᏂᏗᏍᎩᏌᎲ, ᎣᎭᏂ ᎠᏁᎯ ᏗᏂᏲᏟ ᎠᏂᎨᏯ ᏧᏪᏛᏨ ᏧᏅᏣᏘ ᏚᎾᏏᏃᎲ ᎣᎭᏁ ᏛᎾᎦᏘᏍᎬ. ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᏭᏝᏁ ᎠᎵᏍᏔᏴᏗ ᎤᏂᏑᎸᏓ, ᏫᏥ ᏭᎶᏎ. ᎠᏯᏃ ᎨᏒ ᎣᏏᏉ ᎠᎩᏰᎸᎲ, ᎨᎵ ᏃᎴ ᎤᎩᏓᏟᏅᏯ ᏛᎾᏓᏂᏱ Cranshaw, ᏃᎴ ᎾᎥ ᎡᏙᎲ ᎨᎵ ᏚᎦ ᎠᎩᏁᎲ, ᏰᎵᏉ ᎪᎰᏍᏗ ᎤᎵᏍᏙᏗ, ᎤᏓᏅᏙ ᏛᏩᏅᎯᏌᏂ. ᎤᏲᎱᏒᎯᏃ ᎤᏗᏛᎮ ᎤᏪᏁᎢ, ᎠᎴ ᎤᎴᏅᎮ ᎤᏬᏂᏎᎢ; ᎤᏥᏃ ᎤᏪᎧᏁᎴᎢ. ᏣᏍᎪ ᎤᏍᏆᏂᎩᏗ ᏰᎵᎠ?” ”ᏙᎩ ᎾᏛᎦ ᏌᏌ?” ᎤᏛᏛᏁ ᎪᏱᏁ, ᎤᎾᏰᎯᏍᏗ ᏚᎧᎾᏁᎢ ᎤᏪᏥ ᎠᎨᏳᏣ. “ᎭᏩ,” ᎤᏛᏁ ᎠᎳᏂ, “ᎤᏓᏅᎦᎸᏓᏗ ᎠᏌᎯ. ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᎬᎥᏍᎬ ᎢᏳᏍᏗ, ᎠᎴ ᎦᎶᏄᎮᏛ ᎠᏅᏗᏍᎬ ᎠᏂᏬᏂᏍᎬ ᎦᏃᏙᏗ ᏓᎨᏥᏰᎸᏥ; ᎾᏍᎩ ᏧᎾᏚᎪᏓᏁᏗ ᎨᏒ ᎡᏘ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎥᏝ ᏯᎵᎾᎯᏍᏗᎭ, ᎠᎴ ᎤᏂᏛᏗᏍᎩ ᎥᏝ ᏱᎦᎸᏍᎦ. ᎠᏍᏓᏱᎨᏍᏗ ᏓᎾᏕᎣ ᏗᏂᏲᏟ ᎠᏁᎵᏍᎬ ᏧᏂᎦᏴᎵ. ᎿᏉᏃ ᏥᏳᎯ ᏭᏣᏅ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᎡᎶᎯ ᏅᏓᏳᎾᏓᎴᏅᎯ ᎾᏍᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᎶᎯ ᎡᎯ ᎠᏂᏬᏂᎭ, ᎠᎴ ᎡᎶᎯ ᎤᎾᏛᎦᏁᎰᎢ. ᎤᏍᏆᏓ ᎤᏯᏤᎢ; ᏗᎦᏅᏙᏗ ᎧᏅᏂᏍᎩ ᏧᏪᏥ ᎧᎵ ᎤᏅᏍᎦᏞᎢ. ᏍᎩᏯᎡᏍᏗ, ᎠᏎᏃ ᎢᏨᏯᎡᏍᏗ. ᎾᏍᎩᏯ ᎤᏩᏂᎦᎸᎢ ᎡᏩᏒ ᏰᎵ ᎬᏩᏓᏛᏗ ᏂᎨᏒᎾ ᏥᎨᏐ ᎬᏂ ᎤᏖᎸᎳᏛ ᏧᏩᏂᎦᎶᎢ, ᎾᏍᏉᏍᎩᏂ ᏂᎯ ᎥᏝ ᏰᎵᎦ ᎬᏂ ᎠᏴ ᏱᏍᎩᏯᎠ. ᎠᏂᏓᎶᏂᎨ ᎠᏂᎦᎾᎵ ᏓᏂᎾᏌᎾᎩᏍᎬ ᏧᎾᏍᏕᏥ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏰᎵ ᎠᎴᎲᏍᎩ ᏂᎦᎵᏍᏗᎭ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏲᎱᏒᎯ ᎨᏒ ᎬᏗᏍᎬ ᏗᎬᏬᏓᎴᏍᏗ ᎢᏳᏓᏍᏙᏗᏱ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎤᏂᏲᏍᏔᏅᎢ, ᎾᏍᎩ ᎨᏥᏯᏅᏛ ᏥᎩ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏚᎢᏍᏛ ᏫᎾᏍᏛᎾ ᎤᎾᏘᏯᏍᏓᏁᏗ ᎨᏒᎢ; ᏁᎵ ᏍᏉᏎᎮᏍᏗ.” ᎾᏍᎩᏯ ᎤᏕᏅ ᏱᎨᏒᎾ. ᎤᏁᏤᏃ ᏚᏟᎶᏍᏓᏁᎴᎢ; ᏗᏣᎧᏅᎦ ᎡᎦᎳ-ᎢᏳᏍᏗ ᏡᎬᎢ, ᎠᎴ ᏂᎦᎥ ᏕᏡᎬᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏗᏣᏢᏫᏍᏙᏗ ᏱᏣᎭ, ᏂᎯ ᏴᏫ ᏂᏥᎥᏉ ᏗᏧᎪᏗᏍᎩ; ᎾᎿᏰᏃ ᏅᏩᏓᎴ ᏕᎯᏳᎪᏓᏁᎲ ᏨᏒ ᏕᎭᏓᏚᎪᏓᏁᎭ; ᏂᎯᏰᏃ ᏚᎪᏗᏍᎩ ᎾᏍᎩᏯ ᏂᎭᏛᏁᎭ. ᎩᎶᏍᎩᏂ ᏳᏗᏔᎲ ᎾᏍᎩ ᎠᎹ ᎠᏴ ᏥᏁᏁᏗ ᏥᎩ ᎥᏝ ᎢᏳᎯᏳ ᎤᏔᏕᎪᏗ ᏱᎩ, ᎠᏴᏍᎩᏂ ᏥᏁᏁᏗ ᏥᎩ ᎠᎹ, ᎭᏫᏂ ᎠᏰᎸ ᎠᎹ ᎦᏄᎪᎬ ᎨᏎᏍᏗ, ᏫᎦᎾᏄᎪᎨᏍᏗ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏗᎨᏒᎢ. ᎤᏂᏣᏔᏰᏃ ᎠᏁᏙᎭ, ᎾᏍᎩ ᎤᏩᎫᏘᎶᏛ ᎦᏥᏁᎢᏍᏔᏅᎯ ᎢᏨᏃᏁᎸᎯ, ᎠᎴ ᎪᎯ ᎨᏒ ᎾᏍᏉ ᏗᎦᎦᏠᏱᎯ ᎢᏨᏃᏁᎭ, ᎾᏍᎩ ᎠᏂᏍᎦᎩ ᎨᏒ ᏧᏓᎿᏩᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ᏂᎦᏓ ᎤᎵᏛᏙᎾ. ᎤᏬᎦᏐᏅ, ᎤᎳᏑᎶ ᎦᏗᎨᏂ ᎤᏩᏅᏍᏔᏅ ᎦᏅᏃᏩ. ᏧᎶᏒ ᎧᏃᎮᏛ ᏂᎦᎵᏍᏗᏍᎬ, ᎠᏏᏴᏫ ᎨᏒ, ᎤᏩᏙᎵᎢᏍᏗ ᎤᏩᏌ. ᎺᎵᏍᎩᏂ ᎠᏤᎵᏍᏛ ᏙᏱᏗᏢ ᎦᎶᎯᏍᏗᏱ ᎦᏙᎬᎩ, ᏓᏠᏱᎲᎩ; ᏓᏠᏱᎲᎩ ᎤᏗᏌᏓᏛᎩ, ᎠᏤᎵᏍᏛ ᎭᏫᏂ ᏫᏚᎧᎾᏅᎩ, ᎩᎳᏈᏴ ᏄᎵᏍᏔᏅ. ᎠᏎᏃ ᏂᎨᎵᏍᎬ ᎦᏲᏟᏉ ᎤᏁᏉᏨ ᏰᎵ ᎪᎯᏓ ᏫᎫᏩᏂᎷᏨ ᎦᏚᏏ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎤᏲᎢ ᏱᏂᏓᎦᎵᏍᏔᏂ ᎤᏁᎵᏎ, ᎱᏁᏅᏎ ᏱᏓᏚᎬᎾ ᎡᎶ ᏧᎾᎳᎩᏒ. ᎾᏍᎩᏰᏃ ᎯᎠ ᎤᎬᏩᎴ ᎦᎶᏁᏛ ᏧᏲᎱᏎᎢ, ᎠᎴ ᏥᏚᎴᎯᏌᏁᎢ, ᎠᎴ ᏧᏩᏃᏎᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏂᏲᎱᏒᎯ ᎠᎴ ᎾᏍᏉ ᏗᏅᏃᏛ ᎤᎾᏤᎵᎦ. ᎠᏎᏃ ᏣᏂ ᏚᏢᏫᏎᎴᏉ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏴᏍᎩᏂ ᏱᏍᏆᏬᎥ; ᏥᎪᏃ ᎢᏍᎩᎷᏤᎭ? ᎠᎾᏓᏙᎵᎩ ᏗᎧᎾᏩᏛᏍᏗ ᎢᏗᏅᏁ ᎤᏟᏂᎩᏓ ᎤᏂᏬᏂᏒ ᎠᎾᏧᏗᏍᎬ ᏤᎩᏏᏂ, ᏃᏉᎴ ᏄᏓᎴ ᏫᏥᎢᎦ ᎤᎵᏍᎨᏛ ᏩᎾᎴᏂᏍᎬ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏥᏅᏏᏛ. ᎢᎬᏱᏱ ᏌᏩᏂ ᏈᏓ ᏣᏃᏎᎰᎢ, ᎡᏂᏗᏃ ᎾᏍᎩᏉ ᎤᏅᏟ, ᏥᎻᏃ ᏤᏈᏗ ᎤᏪᏥ, ᏣᏂᏃ ᎾᏍᎩᏉ ᎤᏅᏟ. ᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ; ᎢᏳᏃ ᎩᎶ ᎤᏚᏝᏍᎨᏍᏗ ᎠᏥᎦᏘᏗᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏚᎵᏍᎨᏍᏗ. ᎯᎪᏩᏘᎭ ᎪᎯᏳᏗ ᎨᏒ ᎤᏍᏕᎸᎲ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩᏃ ᏚᎸᏫᏍᏓᏁᎸ ᎤᏩᏔᏅ ᎪᎯᏳᏗ ᎨᏒ ᎤᎧᎵᎸᎢ. XIX. ᏧᏪᏥ ᏗᎦᎶᏙᏗ ᏗᏔᎳᏗᏍᏗᏱᏃ ᏃᏒᎾ ᎨᏒ ᎾᎿ ᎤᎪᎳᏗᏴᏗᏱ, ᎤᏟ ᎢᏯᏂᎢ ᎤᏂᏁᏨᎩ ᎾᏍᏉ ᎾᎿ ᎤᏂᏴᏫᏛᏗᏱ, ᏰᎵ ᏈᏂᏏ ᏫᎦᏲᎩᏃᎯᏍᏗ ᎠᎴ ᏫᎦᏲᎦᎪᎳᏗᏴᏗ ᏱᎩ ᎠᏁᎵᏍᎬᎩ, ᎾᏍᎩ ᎾᎿ ᏟᏗ ᏗᏔᎳᏗᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏭᏕᎵᎬ ᎢᏗᏢ ᏭᎦᏘ. ᎤᏁᎳᏅᎯ ᏥᏯᎵᎡᎵᏤᎭ ᏂᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎢᏤᎲ ᎩᎶ ᏂᏥᏯᏬᎥᎾ ᎨᏒ ᏟᏍᏆ ᎠᎴ ᎦᏯ ᎤᏅᏒ; ᎤᎦᏖᏃᎸ Cranshaw ᎨᎵ, ᏂᎦᏓ ᏯᏆᎪᎲᏍᏔᏁ, ᏐᏉ ᎢᎦᏁᏨ ᏱᏣᏁᏤ ᎤᏛᏅ. ᎠᎴ ᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᏥᏂᎨᏥᏪᏎᎴ ᎡᏘ ᏣᏁᎮᎢ; ᏞᏍᏗ ᏣᏲᏍᏔᏅ ᏣᏎᎵᏔᏅᎢ, ᏱᎰᏩᏍᎩᏂ ᏂᏯᏛᏁᎮᏍᏗ ᏄᏍᏛ ᏣᏁᏨᎢ. ᏂᎦᏓ ᎤᎾᏛᎦᏁ ᏔᎳᏚ ᎤᏂᏃᎩᏓ. ᎠᏴᏍᎩᏂ ᎣᏥᏬᏂᏍᎪ ᎣᏨᏗᏍᎪ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎤᏕᎵᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎬᏍᎦᎵ, ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᏥᏚᏭᎪᏔᏁ ᎤᏁᎳᏅᎯ ᎡᎶᎯ ᎠᏏ ᏂᎨᏒᎾ ᏥᎨᏎᎢ, ᏧᎬᏩᎴ ᎠᏴ ᎡᎩᎸᏉᏙᏗᏱ. ᎤᎪᎵᏰᎥ ᎤᏍᏆᏂᎩᏗ ᏥᎨᏐ ᎢᏳᏍᏘ. ᏑᏓᎵ ᎠᏰᎵ ᏔᎷᎩᏍᎩ ᎦᎵᎥᏂᎲ ᎤᏛᎦᏁ ᏫᎵᎻ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯ ᏂᎬᏁᎸ ᎠᏴ ᎾᏍᎩ ᏧᏁᏥ, ᎾᏍᎩ ᏥᏌ ᏕᎤᎴᏔᏅᎢ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᏗᎧᏃᎩᏍᏗᏱ ᏔᎵᏁᎢ; ᎠᏇᏥ ᏂᎯ, ᎪᎯ ᎢᎦ ᏍᏆᏕᏁᎸ. ᏚᏄᎪᏔᏅᎢ, ᎯᏗᎦᏔᎭ ᎤᏍᏆᏂᎩᏗ ᎨᏒᎢ, ᏃᎴ ᎢᏓᎵᎮᎵᎨᏍᏗ ᏃᎴ ᎢᎦᏨᏉᏕᏍᏗ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏍᎦᏅᏨ ᏥᏚᎾᏚᎦᏓᏁᎭ, ᎾᏍᎩ ᎢᎦᎦᏘ ᎡᎶᎯ ᎤᎾᏄᎪᏥᎸ, ᎠᎴ ᏴᏫ ᎤᏟ ᎤᏂᏰᎸᏅ ᎤᎵᏏᎩ ᎡᏍᎦᏉ ᎢᎦᎦᏘ, ᏚᏂᎸᏫᏍᏓᏁᎲᏰᏃ ᎤᏲᎢᏳ ᎨᏒᎦᎴ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏍᎦᏅᏨ ᏥᏚᎾᏚᎦᏓᏁᎭ, ᎾᏍᎩ ᎢᎦᎦᏘ ᎡᎶᎯ ᎤᎾᏄᎪᏥᎸ, ᎠᎴ ᏴᏫ ᎤᏟ ᎤᏂᏰᎸᏅ ᎤᎵᏏᎩ ᎡᏍᎦᏉ ᎢᎦᎦᏘ, ᏚᏂᎸᏫᏍᏓᏁᎲᏰᏃ ᎤᏲᎢᏳ ᎨᏒᎩ. ᎤᎾᏛᎦᏃᏁᎸᏃ ᎤᎬᏫᏳᎯ ᎤᎾᏂᎩᏎᎢ, ᎬᏂᏳᏉᏃ ᏃᏈᏏ, ᎾᏍᎩ ᎤᏂᎪᎲᎯ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎢᎬᏱ ᎤᏁᏅᎡᎴᎢ, ᎬᏂ ᏭᎷᏥᎸ ᎠᎴ ᎤᎴᏫᏍᏔᏅ ᎦᎸᎳᏗᏢ ᎾᎿ ᎠᏥᎵ ᎡᎲᎢ. ᎾᎾᏃ ᏩᎭᏯ ᎦᏂᏓᏛ ᏃᎴ ᏗᎦᎴᎾ ᏗᏍᏛᎦᏴᎮᏗ ᏄᎵᏍᏔᏁ. ᎢᏳᏃ ᏱᏥᎦᏔᎭ ᎾᏍᎦᏅᎾ ᎨᏒ ᏥᏌ, ᎤᏥᎦᏔᎭ [ᎾᏍᏉ] ᎾᏂᎥ ᏚᏳᎪᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᏧᎾᏄᎪᏫᏒᎯ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏄᎪᏩ ᎤᏪᏘ ᎠᎪᏙᏗ, ᎾᏍᎩ ᎦᎸ ᎢᏤ ᎢᏣᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏁᏣᎪᎳᏅᎾ ᏥᎩ. ᎾᏍᏉᏰᏃ ᎦᎶᏁᏛ ᎧᏃᎯᏰᎩ ᎢᎦᏤᎵ ᎢᎩᏲᎱᎯᏎᎸ; ᎾᏍᎩ ᎡᎶᎯ ᎾᎯᏳ ᏥᎨᏎ ᎠᎹᏱᎭ ᏥᏄᎵᏍᏔᏁᎢ, ᎤᏲᏤᎢ. ᏥᎷᏏᎵᎻᏍᎩᏂ ᎦᎸᎳᏗ ᏨᏗᎦᏚᎭ ᎾᏍᎩ ᎾᏥᎾᏝᎥᎾ, ᎾᏍᎩ ᎠᏴ ᏂᏗᎥ ᎢᎩᏥ. ᎡᎳᏗ ᎣᏣᏂᎩᏍᎬ ᏧᏪᏅᏒ ᎣᏤᎪ ᎤᎿ ᎩᏓᏅᎬ. ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᏲᎢ ᎭᏫᏂ ᏗᏓᎴᎲᏍᎪᎢ, ᎠᎴ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ. ᎨᏍᏗ ᏱᏥᎦᏔ ᎠᎬᏱ ᎤᏓᏅᏖᎸ ᎧᏅᏂᏍᎩ ᏧᏏᎳᏛᏗ ᎭᏂ ᎡᎶᎯ, ᎠᏎᏃ ᏍᎩ ᏄᏛᏁᎴ, ᏃᎴ ᎠᏌᎹᏗ ᎨᏎᎢ. ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎬᏂᎨᏒ ᏂᏨᏁᎮᏍᏗ ᎢᏤᎲᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᎢᎩᎨᏳᎯᏳ ᏥᎨᏒᎩ, ᎠᎴ ᏥᏕᎦᏓᏲᎯᏎᎸᎩ, ᎠᎵᏍᎪᎸᏓᏁᏗ ᎠᎴ ᎠᏥᎸ ᎨᎴᏗ ᏥᏄᎵᏍᏔᏅ ᎤᏁᎳᏅᎯ ᎤᎦᎾᏍᏛ ᎤᏪᏩᏒᎢᏍᏗ. ᎯᎠᏃ ᏄᏍᏕ ᎤᏓᏅᏖᎸ: ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ ᏑᏓᎵ ᎠᏰᎵ. ᎨᏍᏗ ᏱᏓᎨᏏ ᎤᏛᏅ ᏣᎵ. ᎢᏳᏃ ᎢᎠᏓᏔᏅᎭ, ᎤᏁᎳᎩᏉ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏄᏔᏅᎾ ᏱᎩ, ᎩᎳ ᎣᏂᎯᎴᏴᏍᏔᏅᎭ. ᎠᏂᏍᎦᏯᏃ ᎬᏩᎷᏤᎸ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᏂ ᏗᏓᏬᏍᎩ ᏦᎩᏂᏅᏒ ᎢᏍᏛᎷᏤᏗᏱ, ᎯᎠ ᏅᏗᎦᏪᎭ; ᏂᎯᏍᎪ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ? ᏥᎪᎨ ᏅᏩᏓᎴ ᎣᏥᎦᏖᏃᎮᏍᏗ? ᎠᎴ ᎤᏁᎳᏅᎯ ᏕᎤᏪᎧᏅ ᎠᏂᏏᏴᏫᎭ ᎾᎿ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ; ᎢᎬᏱ ᎨᏒ, ᎨᏥᏅᏏᏛ; ᏔᎵᏁᏃ ᎨᏒ, ᎠᎾᏙᎴᎰᏍᎩ; ᏦᎢᏁᏃ ᎨᏒ, ᏗᎾᏕᏲᎲᏍᎩ; ᎣᏂᏃ, ᎤᏍᏆᏂᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ; ᎿᏉᏃ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏧᎾᏓᏅᏬᏗᏱ, ᎠᎾᎵᏍᏕᎵᏍᎩ, ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏗᏂᏬᏂᏍᎩ. ᎠᎨᏴ ᎤᎪᎵᏰᎥ ᎠᎬᏱᏣ ᎤᏍᏓᎦᏴᎯᏓ ᎪᏪᎵ, ᏚᏒᏂᎸ ᏕᎪᏪᎸ, ᏚᎷᎬᏒ ᎣᎭᏁ ᎢᏣ ᎤᎪᎵᏰᎥ. ᏓᏳᎾᏂᎩᏛ ᏧᏁᏅᏒ ᏅᏙ ᎠᏰᎵ ᏗᎨᏴ, ᎨᏴ ᏧᏂᏍᏔᏩᏛᏎ ᎬᏂᎨᏍᏛ ᎤᎨᏓᎵᏴ ᏧᏂᎶᏎ, ᏤᏆ ᏅᏯ ᏚᎦᏌᏛ ᎠᎹ ᎨᏴ, ᎤᏁᎦ ᎠᎹ ᎦᎶᏍᎩ ᎠᏰᎵ ᏚᎦᏌᏛᎢ ᏅᏯ, ᏃᎴ ᎦᎸᎳᏗ ᎠᏦᎭᏴ, ᎢᎦ ᎢᏴ ᎩᎳ ᎠᎦᎵᎰ. ᏕᎦᏁᎲ ᏧᏩᏍᏉᎸ ᏂᏕᎦᎵᏍᏗᏍᎨ. “ᎤᏐᏱᏉᏗ, ᎨᏍᏗ ᏱᎬᏳᏤᎭ,” ᎤᏛᏁ ᎠᏓᏂᎵᎨ ᎤᏃᏕᎾ. ᎦᏙᎨᏃ? ᎤᏁᎳᎩ, ᎾᎾᏛᏁᎲᎢ, ᎾᏍᏉ ᎠᏎᏉᏉ ᏱᎾᎾᏛᏁᎭ, ᎠᎴ ᎤᏙᎯᏳᎯ ᏳᏂᏰᎸᎭ, ᎪᎶᏁᏛ ᎠᏥᏃᎮᎭ; ᎠᎴ ᎾᎿᏂ ᎦᎵᎡᎵᎦ, ᎥᎥ, ᎠᎴ ᎠᏎ ᎦᎵᎡᎵᎨᏍᏗ. ᏦᎢ ᏓᏂᎾᏌᏛ ᏗᎬᏘ ᏚᎾᏣᏍᎪᎸ ᎦᏙᎯ, ᎤᏂᎬ ᏎᎷ ᎦᏚ ᎦᏓᏫᏔᏅ, ᎤᎾᏓᏌᎩᏙᎸ ᎤᏏᏩ ᎦᏙᎯ ᏥᏔᎦ, ᎫᎴ ᏗᏂᏍᎪᏂ ᎤᎾᏝᏫᏛᎲ, ᎤᏃᏴᎬ ᎾᎥᏂᎨ ᏧᎾᎵᏰᏑᎵ ᏥᏓᎾᏏᏛᏁᎰ ᏗᏂᏲᏟ. ᎤᏃᏴᎵᏎ ᏭᏩᎭᏂᎸ, ᎨᏍᏗ ᏯᎪᏩᏘᏍᎨᎢ ᎢᏳᏍᏘ ᎤᏩᎭᏂᎸ. ᎥᏝ ᎠᏗᎾ ᎠᏆᏚᎵᏍᎬ ᎠᏓᏁᏗ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ; ᎤᏓᏔᏅᎯᏍᎩᏂ ᎠᏆᏚᎵᎭ ᎤᏣᏘ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ. ”ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ, ᏓᏣᎾᏲᏏ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ. ᏃᏗ ᎭᏫᏂ ᎤᏛᎴᎮ. ᏑᎾᎴ ᏄᎵᏍᏔᎾ ᎤᏩᏓᎷᎦᏁ ᎤᏂᏥ ᏕᎦᏓᏍᎬᎢ ᏙᏱ ᎤᏪᏓᏍᏗ, ᎤᏬᏨᏛᎢᏉ. ᎪᎱᏍᏗ ᏳᏛᏅᎾ ᎤᏪᏅᏎ. ᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᎤᏪᏎᎴᎢ, ᎢᎬᏱ ᏗᏂᏲᎵ ᏫᏓᏃᎸᎯ; ᎥᏝᏰᏃ ᎣᏏᏳ ᏱᎩ, ᏗᏂᏲᎵ ᏧᎾᏤᎵ ᎦᏚ ᏗᎩᎡᏗᏱ, ᎠᎴ ᎩᎵ ᏫᏓᏗᏁᏗᏱ. ᏐᏉ ᏓᎩᏂᏴᎲ ᎤᏓᏄᏖᏴᏓ ᏓᎩᏂᏴᏛ, ᏔᎵᏁ ᏱᏓᏆᏙᎸᏌ ᎠᏕᎳ ᏯᏋᏓᎸᏔᏅ, ᏦᎨᏏ ᏧᎷᏫᏍᏔᏁ ᎤᎵᎪᎯ. ᏓᎳᏚ ᎠᎴ ᎦᎵᏆᏚ ᎢᏳᏕᏘᏴ ᎨᏎ. ᎨᏍᏗ ᎪᎱᏍᏗ ᏧᎾᎵᎬᏩᏟ ᏱᎩ ᏏᏆ.” ᎤᏁᎳᏅᎯ ᏄᏓᎵᏓᏍᏛᎾ, ᎾᏍᎩ ᎢᏥᏯᏅᏛ ᏥᎩ ᎢᏣᎵᎪᏗᏱ ᎾᏍᎩ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ. “ᎨᎵᎠ ᏏᏆ ᎤᏴᏍᏗ ᏤᏅᏍᏗ,” ᎤᏛᏁ. ᏑᎾᎴ ᎠᎴᏂᏍᎨᏍᏗ ᎠᎾᏓᎪᎾᏗᏍᎬ. ᎱᏂᎷᏣ ᏣᎳᎩᏱ ᎠᏰᎵ ᎤᏂᎷᏨᎯ ᎩᎳ ᏕᎨᎦᏨᏍᏔᏅ ᎠᏂᎨᏯ, ᎤᏂᏍᎪᎸ ᏃᎴ ᎤᏂᏍᎦᏍᏔᏁᎸ ᎢᏳᏍᏗ ᏗᎨᎦᎦᏅᏗ ᎨᏎ, ᎠᏎᏃ ᎤᎾᏛᏅᎢᏍᏕ ᎤᎾᎴᏅᏗ ᎠᎾᏁᎳᏗᏍᎬ ᎩᎳ ᏧᏂᏯᏅᏓ ᎠᏂᎦᏔᎾᎢ ᏧᏂᎭᏰᎯ. ᏐᏉ ᎧᏅᏂᏍᎩ ᎠᏦᏴ ᎦᏚ ᏭᎩᎸᏁᎢ. ᎾᏍᎩ ᎭᎳᏍᏕᎵᏴᏌ ᏍᎩᎵ ᏃᏗ ᎠᎦᏴᎵᎨᎢ ᏣᎦᎾᏅᎪᎨᎢ. ᎤᏂᎷᏨᏃ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᏚᏳᎦᎲ ᎯᏬᏂᏍᎬ ᎨᏒᎢ, ᎠᎴ ᎩᎶ ᏂᏖᎾᏰᏍᎬᎾ ᎨᏒᎢ; ᎥᏝᏰᏃ ᏄᎾᏍᏛ ᏴᏫ ᏱᏖᎸᏉᏙᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏅᏅ ᎤᏙᎯᏳᏒ ᏕᎭᏕᏲᎲᏍᎪᎢ; ᏚᏳᎪᏗᏍᎪ ᎠᏰᎵ ᎠᎾᏓᏱᏍᎬ ᏏᏌ ᎠᎫᏴᎡᏗᏱ, ᏝᎨ? ᎪᎩ ᏱᎩ ᏚᏂᎦᏒᏍᏙᎢ ᏱᎩ ᏙᏌ ᏚᏂᏖᏍᏛᎢ ᏃᏊᎴ ᏓᎾᏓᏁᏟᏴᏍᎬ ᎠᏂᎦᏘᏗᏍᎬ ᎤᏢᎩ. ᏭᎳᎩᏒ ᎠᎹ ᎤᏥᏍᏛ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏚᎵᏍᎨ ᏍᎩᏳᏍᏗ ᎠᏆᏛᎪᏗ. ᎠᏆᏦᏩᏛ ᏩᎩᎳᎩᏒ ᎪᏪᎵ ᎠᎩᏃᎮᏍᎩ, ᎦᎸᎳᏗ ᏧᎵᎬᏩᏟ ᏩᏏᏓᏂ ᏗᎾᏦᎥᏍᏗᏍᎩ ᎢᏧᏅᏁᎸ, ᎾᏍᏉ ᏓᎾᏦᎥᏍᏗ ᏗᏉᏪᎳᏅ. ᎯᎠᏃ ᎾᏍᏉ ᎯᎦᏔᎮᏍᏗ, ᎤᎵᏍᏆ ᎸᏗ ᎨᏎᏍᏗ ᎠᏎ ᎤᏕᏯᏙᏗ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏎᏍᏗ. “ᏣᏉᏍᎪ ᏯᏕᎶᎰᏍᎦ ᏓᎩᎷᏫᏍᏔᏁᎲ? ᏰᎵ ᎤᏂᎦᎸᎯ ᏄᏪᏎ ᎡᎳᏆᏗ. ᎠᎴ ᏫᎬᏆᏕᏗ ᏱᏂᎦᎩ, ᎠᎴ ᎾᏍᏉ ᏯᏆᎪᎳᏗᏴ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏍᎩᏯᏘᏅᏍᏗᏱ ᎦᎢᏒ ᎢᎸᎯᏢ ᏫᏥᎦᏛᎢ. ᏰᎵ ᎣᏍᏓ ᏂᏓᏣᎵᏍᏔᏁᎵ ᎭᏫᏯ ᏗᎦᏒᏔᏂᎯ ᎰᎻ, ᎠᏍᏆᎸᎲ ᎯᎯᏍᏗ ᏍᎩᎾᎾ ᏏᏆ.” ᏣᏂ ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴ ᏂᎦᏛ, ᎠᏴ ᎤᏙᎯᏳᎯ ᎠᎹ ᏕᏨᏯᏬᏍᏗᎭ; ᏓᏯᎢᏍᎩᏂ ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎠᏴ, ᎾᏍᎩ ᏓᎧᏁᏌᏛ ᏧᎳᏑᎶᎩ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᏗᎩᎧᏁᏴᏗᏱ; ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎠᏥᎸ ᏙᏓᏣᏪᏍᏔᏂ; ᎡᎳᏗ ᏥᏥᎥᏍᎦ ᎬᏅᎢ ᎾᏍᎩ ᏔᎵᏁ ᎠᎩᎩᏏᏐᏗ ᏥᎩ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨ ᎠᎩᎨᏳᎭ. ᏃᎴ ᏌᏌ ᏚᏂᎧᎮᏍᏗ ᏌᏌ ᎠᏂᏓ, ᏃᎴ ᎤᏂᏃᏕᎾ ᏍᏉ ᏚᏂᎧᎮᏍᏗ ᎠᏂᏓ...” “ᎲᏥᎷᎩ,” ᎤᏎᎦᎳᎯ ᏄᏪᏎ. ᎦᏙ ᎦᏛᎦ ᎯᎠ ᏥᏄᏪᏒ; ᏍᎩᏲᎮᏍᏗ ᎠᏎᏃ ᏓᏍᎩᏯᏠᏥ, ᎠᎴ ᏫᎨᎥᎢ ᎥᏝ ᏫᏴᎨᏥᎷᎩ? “ᎭᏦᎣᏓ ᏏᏆ ᎭᏩᏧ!” ᎤᏛᏁ ᏍᏓᏯ ᎦᏬᏂᏍᎩ. ᎯᎠᏃ ᎤᏍᏆᏂᎩᏗ ᎨᏍᏗ ᎩᎶ ᎧᎵ ᏧᏬᏏᏌᏅ ᏱᎩ, ᎠᏎᏃ ᏰᎵ ᎢᏯᏂ ᏧᎾᏙᎴᏋ ᎠᏂᏍᎦᏯ ᏭᏁᏙᎴ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏏᏆ ᎤᏴᏍᏗ, ᎤᎾᎦᏎᏍᏔᏁᎢ ᏏᏆ. ᎠᏎᏃ ᎤᏂᏣᏖ ᎧᏃᎮᏛ ᎤᎾᏛᎦᏅᎯ ᎤᏃᎯᏳᏁᎢ, ᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᎯᏍᎩᎭ ᎢᏯᎦᏴᎵ ᎾᏂᎡᎢ. ᎠᏍᎪᎯᏧᏈᏃ ᏗᏘᏂᏙᎯ ᏗᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏝᏰᎵ ᏱᏂᎪᎢ ᏥᏁᎸ ᏣᏴᏍᏗᏱ; ᎯᏁᎩᏉᏍᎩᏂ ᎤᏩᏒ, ᏥᏅᏏᏓᏍᏗᏃ ᏓᏳᏗᏩᏏ. ᎠᏎᏃ ᏍᏉ ᏄᏍᏕ. ᎢᏳ ᎠᎴ ᏣᎳᏏᏕᏂ ᏙᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ; ᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎯᏲᎤᎵ ᎬᏂᏛ ᏗᎨᏒ ᏱᏫᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏗᎨᏣᎳᏍᎩ ᏨᏍᎩᏃ ᏱᏪᏣᏓᎢᏅ, ᎾᎿ ᎠᏥᎸᏱ ᎦᎬ ᏜᏗᏍᏗ ᏂᎨᏒᎾ; ᎠᎴ ᏂᎦᎥ ᏂᏣᏛᏁᎵᏙᎲᎢ, ᎢᏥᏬᏂᏍᎬ ᎠᎴ ᏕᏥᎸᏫᏍᏓᏁᎲ ᏱᎩ, ᏂᎦᎥ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᏙᎥ ᎢᏨᏗᏍᎨᏍᏗ, ᎡᏣᎵᎡᎵᏤᎮᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᏂᎦᏛᏃ ᏴᏫ ᎾᎿ ᎠᎪᏩᏛᏗ ᎨᏒ ᎤᎾᎦᏙᏍᏔᏂᎸᎯ, ᎤᏂᎪᎲ ᏄᎵᏍᏔᏂᏙᎸ ᏚᏅᏂᎴ ᏗᏂᏁᏥᏱ, ᎠᎴ ᎤᎾᏨᏎᎢ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᎹ ᏗᏥᎧᎵᎢᏍᏓ ᎠᎹ ᏗᏟᏍᏗ. ᎾᏍᎩᏃ ᎠᎧᎵᎢ ᏚᏂᎧᎵᎸᎩ. ᎨᏍᏗ ᏰᎵ ᏱᎾᏆᎵᏍᏔᏁ ᎯᎸ ᎠᏇᏅᏍᏗ, ᎠᏎ ᏔᎵᎭ ᏧᏙᏓᏆᏓ.” ᏧᏓᏅᏛ ᎢᏴ ᎡᏍᎦ ᎤᏰᎸᎲ ᏳᎸᎾ ᏥᎨᏎ ᏤᎩᏏᏂ ᏧᏣᏅᏓᏕᎮᎢ, ᎾᎥ ᏚᎾᏓᎴ ᏓᏂᏙᎨ. ᏂᎦᏓ ᎠᏂᎧᏔᎲ ᎩᎳᏊ ᎤᏙᏗ ᎠᏰᎳᏍᏗ. ᏔᎵᏃ ᏫᏄᏒᎸ ᎧᏃᎯᏴᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᎤᏍᏆᎸᏗ ᎨᏎᎢ, ᏄᏂᎬᏫᏒᏃ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎤᏂᏲᎴ ᎢᏳᎾᏛᏁᏗᏱ ᎦᎶᏄᎮᏛ ᎤᏅᏙᏗᏱ ᎤᏂᏂᏴᏗᏱ, ᎠᎴ ᎤᏂᎯᏍᏗᏱ. ᎯᎠᏃ ᏂᏚᏪᏎᎵᎢ, ᏏᏌ ᎠᏗᎾ ᎡᏣᎫᏴᏏ ᏏᏌ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎨᏍᏗ ᏥᏓᎯ ᏱᎩ, ᏫᎵᎻ. ᎤᏁᎷᏁ ᎠᏂᏍᎦᎡᎲᎢ, ᏓᏃᏱᏁᎲ ᏚᏃᎰᏎᎴ. ᎾᏍᎩᏯ ᎢᎦᏑᏰᏒ ᎾᏍᎩ Ꮎ ᎠᎬᏗᏍᎬᎢ ᎠᏏ ᎡᎶᎯ ᎾᏙᏢᏍᎬᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏂᏗᏍᎦᏅᎾ ᎢᎦᎵᏍᏙᏗᏱ, ᎠᎴ ᎪᎱᏍᏗ ᏁᎫᎢᏍᏛᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎠᎦᏔᎲ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏛᏗᏍᎬᎢ; Ꮭ ᏳᏚᎵᏍᎨ ᏣᎳᎩ ᎢᏗᏁᎬ ᎤᏍᎪᎸᏍᏗ. ᎾᏍᎩ ᎯᎠ ᎧᏱᏆ ᏥᏚᏁᏤᎴ ᎠᏂᏧᏏ, ᎯᎠ ᏥᏂᏚᏪᏎᎴᎢ; ᎤᏟ ᎣᏏᏳ ᎢᎦᎵᏍᏓᏁᏗ ᎠᏏᏴᏫ ᏱᏚᏲᎱᎯᎭᎸ ᏴᏫ. ᎿᏉ ᏞᏍᏗ ᎠᎹᏉ ᏯᏗᏔᏍᎨᏍᏗ, ᎤᏍᏗᏍᎩᏂ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎭᏗᏍᎨᏍᏗ, ᎪᎱᏍᏗ ᎭᎵᏍᏗᏍᎬ ᎢᏳᏍᏗ ᏦᎸᎯᏍᏗᏱ ᎠᎴ ᏯᏃᏉ ᏣᏢᏥᏰᏍᎬᎢ. ᎠᎴ ᎥᏝ ᏱᏣᏓᏅᏖᎭ ᎤᏟ ᎣᏏᏳ ᎢᎨᎦᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏏᏴᏫ ᎩᎶ ᏱᏓᏲᎱᎯᏎᎭ ᏴᏫ, ᎠᏃ ᎤᏂᏣᏘ ᎤᏅᏒ ᏯᎾᏗᏒᎲᏍᎦ. ᏓᏇᎪᏔᏅᎩᏰᏃ ᎾᏍᎩ ᎪᎱᏍᏗ ᎠᎩᎦᏙᎥᎯᏍᏗᏱ ᏂᎨᏒᎾ ᏂᎯ ᎢᏤᎲ, ᎤᏩᏒᎯᏳ ᏥᏌ ᎦᎶᏁᏛ ᎠᎴ ᎾᏍᎩ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅᎯ. ᎦᎪ ᏂᏣᎾᏰᏍᎬᎾ ᎨᏎᏍᏗ ᏂᎯ ᏣᎬᏫᏳᎯ, ᎠᎴ ᏂᎦᎸᏉᏗᏍᎬᎾ ᎨᏎᏍᏗ ᏕᏣᏙᎥᎢ? ᏂᎯᏰᏃ ᏨᏒᎯᏳ ᏂᏍᎦᏅᎾ, ᏂᎦᏗᏳᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᏛᏂᎷᏥ ᎠᎴ ᏂᏣᏛᏅ ᎢᎬᏱᏢ ᏛᎾᏓᏙᎵᏍᏔᏂ; ᏂᎯᏰᏃ ᏗᏦᎪᏙᏗ ᎨᏒ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅ. ᏧᏩᏗᏔᏯ ᏗᏥᎩᎵᎨᏂ, ᎠᎴ ᏂᏕᏥᎤᏍᏕᏎᎸᎾ ᏗᏥᎾᏫ ᎠᎴ ᏕᏥᎵᎷᎬᎢ, ᏂᎪᎯᎸ ᎡᏣᏡᏗᏍᎪ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ; ᏗᏥᎦᏴᎵᎨ ᏄᎾᏛᏁᎸ ᎾᏍᎩᏯ ᏂᎯ ᏂᏣᏛᏁᎰᎢ. ᎤᎾᏓᏙᎵᏍᏓᏁᎸᏃ ᏥᎷᏏᎵᎻ ᏔᎵᏁ ᏫᎤᏂᎶᏎ ᎤᏣᏘ ᎠᎾᎵᎮᎵᎨᎢ; ᎢᎸᎯᏢᏰᏃ ᎪᎱᏍᏗ ᎤᎵᏬᏨᎯ ᏥᎦᏃᎢ, ᎾᎿ ᎠᏬᎭᎵ ᎠᎾᏓᏟᏏᏍᎪᎢ. ᏤᏍᏗ ᏯᎵᏗᏒᏂᎮᏍᏗ!” ᎠᎦᏗᏛ ᏙᏍᏓᏓᎪᏩᏘᏍᎬ Mrs. Chapman. ᎠᎴ ᎬᏂᏳᏉ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏍᎦᏯ ᎤᏂᏃᎴ ᎠᏤᏍᏙᎩᎯ ᎦᏅᎨ ᎠᏍᎦᏯ ᎤᎸᏓᎸᎥᏍᎩ; ᎤᎾᏁᎶᎳᏁᏃ ᎤᏂᏴᏔᏂᎯᏍᏗᏱ, ᎠᎴ [ᏥᏌ] ᎢᎬᏱᏢ ᎤᏂᏅᏁᏗᏱ. ᏧᏳᎪᏘ ᏱᏥᏃᎲᎳ, ᎨᏍᏗᎭ ᎣᏍᏓ ᏱᎾᏆᎵᏍᏔᏁ. ᎦᏨ ᎮᎵᎠ ᎮᎦ?” ᎣᏍᏓ ᏳᏂᏰᎸᎲᎾ ᏚᎾᏓᎧᎾᏁᎢ ᎤᏂᏃᏕᎾ. ᎠᏏᏉ ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎤᏂᏣᏛ ᎬᏬᎯᏳᏅᎩ. ᏗᎧᎸᎬᏃ ᎢᏗᏢ ᏗᏂᎶᏍᎨᏍᏗ, ᎠᎴ ᏭᏕᎵᎬᎢ, ᎠᎴ ᏧᏴᏢᎢ, ᎠᎴ ᏧᎦᎾᏮᎢ, ᎠᎴ ᎠᎾᏅᎥᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᏚᏅᏓᏒ ᏳᏂᎷᏣ ᎠᏂᏲᏍᎩ, ᏳᏂᏗᏍᎩᏌᎾ ᏂᎦᏓ ᎠᏂᏣᎳᎩ, ᏭᏕᎵᎬ ᎢᏣ ᏳᏫᏚᏂᎧᎾ, ᎨᏍᏗ ᏯᏉᎯᏳᎮ ᎣᎩᏍᏕᎸᏗ ᏧᎵᏍᎨᏛ ᎪᏪᎵ ᏃᎴ ᎦᏙ ᏗᎦᏂᏴᏙᏗ, ᎨᏍᏗ ᏱᏓᏛᎴᏫᏍᏔᎾ ᎭᏂ ᏩᏯ ᏃᎴ ᏚᎨᏓᎵᏛ ᎤᏏᏩ ᎢᏧᏅᏂᏗ. ᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎠᏂ ᎯᏍᎩᏉ ᎦᏚ ᏙᎩᎭ, ᏔᎵᏉᏃ ᎠᏣᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎬ ᎤᏟ ᎢᎦᎢ ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᎨᏥᏚᎢᏍᏓᏁᎸᎯ ᎾᏍᎩ ᎬᏩᏓᏁᏟᏴᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬᎢ, ᎠᏎᎵᏛᏍᎬ ᎤᏍᏓᏱᏍᏔᏁᎢ. ᎢᏥᏔᎳᏬᏍᎨᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᏅᎨᏍᏗ; ᏞᏍᏗ ᏅᏙ ᏭᏕᎵᏨᎩ ᎨᏥᏔᎳᏬᏍᎩ; ”Ꭷ ᎲᎦ ᏄᏍᏗ, ᎠᎬᏱ ᎠᎴᏂᏍᎬ Ꭴ.” ᎾᏍᎩ ᏥᏃᎮᏍᎬᎢ, ᎥᏝ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏯᎩᎭ ᎦᏥᏲᏪᎳᏁᏗ ᎤᎬᏫᏳᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏯᏘᏃᎯᏏ, ᎠᎴ ᏂᎯ Ꮀ ᎤᎬᏫᏳᎭ ᎬᏩᏘᏃᎯᏏ, ᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎾᏍᎩᏃ ᎡᏗᎪᎵᏰᎥᎯ ᎨᏎᏍᏗ, ᎪᎱᏍᏗ ᏰᎵ ᎬᏉᏪᎶᏗ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᏕᏣᏓᎦᎵᏍᏓᏗᏍᎨᏍᏗ, ᎠᎴ ᏕᏣᏓᎵᏂᎪᎯᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᏥᏂᏣᏛᏁᎭ. ᎢᏳᏃ ᎠᏴ ᏱᏍᎩᎦᏔᎮᎢ ᎾᏍᏉ ᎡᏙᏓ ᏰᏥᎦᏔᎮᎢ; ᎪᎯᏃ ᎢᏳᏓᎴᏅᏛ ᎡᏥᎦᏔᏎ ᎠᎴ ᎡᏥᎪᏩᏛᎲ. ᎰᏩᏃ ᎹᏏᏙᏂ ᏕᎤᏅᏒᎩ ᎠᏂᏔᎵ ᎬᏩᏍᏕᎸᎯᏙᎯ, ᏗᎹᏗ ᎠᎴ ᎢᎳᏍᏓ, ᎤᏩᏒᏍᎩᏂ ᎤᏗᎩᏴᎩ ᎡᏏᏱ ᎢᎸᏍᎩ ᎢᎪᎯᏛ. ᎩᎶᏰᏃ ᎾᏍᎩ ᎯᎠ ᎤᏮᏗᏕᎬ ᎦᎶᏁᏛ ᎪᎱᏍᏗ ᎠᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎣᏏᏳ ᎦᎬᏩᏰᎸᏗ ᎨᏎᏍᏗ ᏴᏫ. ᎩᎶᏃ ᎯᎪᏆᎵᎢ ᎢᏨᏂᎮᏍᏗ ᏐᎢᏱ ᎾᏍᏉ ᎯᏯᎵᏍᎪᎸᏓᏁᎮᏍᏗ; ᎩᎶᏃ ᎤᏛᏃᎯ ᏣᎾᎡᎮᏍᏗ, ᎾᏍᏉ ᎭᏫᏂ ᏣᏄᏬ ᏞᏍᏗ ᎯᎨᏳᏔᏅᎩ. ᎾᏍᎩᏃ ᎤᎬᏫᏳᎯ ᏚᏬᏁᏔᏅ, ᎦᎸᎳᏗ ᏙᏣᏕᏓᏂᎸᏤᎢ, ᎠᎴ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎤᏪᏁᎢ. “ᎯᎠᎾ, “ᏭᏔᏅᎢ ᏏᏆ”? ᎤᏛᏛᏁ ᏐᏉ ᎤᏃᏕᎾ ᎠᏓᎯ. ”ᏂᏪᏏᎭᏉᏗᎾ,” ᎤᏛᏁ. ᎠᏴ ᎤᏙᎯᏳᎯ ᎠᎹ ᏕᏨᏯᏬᏍᏔᏅ, ᎾᏍᎩᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏙᏓᏣᏬᏍᏔᏂ. ᎩᎦᎨᏃ ᎬᏩᏄᏪᎡᎢ, ᎠᎴ ᎠᎵᏍᏚᎶ ᏧᏣᏲᏍᏗ ᎪᏢᏔᏅᎯ ᎤᏂᏍᏕᏲᏅ, ᎾᏍᎩ ᎤᏂᏍᏚᎶᏔᏁᎢ. ”Ꭵ, ᎤᏙᎯᏳ ᎤᏬᏚᎯ,” ᎤᏛᏁ ᏌᎳᏓ, ᎠᎬᏱᏣ ᏕᎦᏅᏌᏛ ᏚᏔᏁ ᎤᏒᏂᎴ ᏗᎦᏅᏙᏗ. ᎠᎴ ᎾᏍᎩ ᎡᏆ ᎦᏚᎲ ᏦᎢ ᏄᏓᏛᎩ, ᎠᎴ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᏚᏂᏚᎲ ᏚᏲᏨᎩ; ᎠᎴ ᏓᏓᎶᏂ ᎦᎸᏉᏗ ᎦᏚᎲ ᎠᏅᏓᏗᏍᏗ ᏄᎵᏍᏔᏅᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅᎢ, ᎾᏍᎩ ᎠᏥᏁᏗᏱ [ᏓᏓᎶᏂ] ᎤᎵᏍᏈᏗ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏟᏍᏛ ᎤᏣᏘ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏩᏛᏗ. ᎣᎦᏛᎦᏅᎯ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎡᏦᎢᏳᏒᎢ, ᎠᎴ ᏕᏥᎨᏳᏒ ᎾᏂᎥ ᎤᎾᏓᏅᏘ; ᎠᎴ ᎤᏂᎸᏉᏙ ᏄᎬᏫᏳᏒ ᏧᎾᏂᏢᏗᏱ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏕᎦᏍᎩᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏓᏓᎶᏂ ᎠᏁᎯ ᎨᎦᏑᏰᏛ ᏂᎯ ᎡᏣᏑᏰᏛ ᎨᏒ ᎾᏍᎩᏯᎢ ᏫᎨᏥᏲᎵᎭ, ᎠᎴ ᎾᏍᏉ ᎹᎦ ᎠᏇᏥ. ᏑᎾᎴᎢᏳᏃ ᎢᎬᏱᏱ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎤᏂᎷᏤ ᎠᏤᎵᏍᏛ ᏨᏗᎧᎸᎪᏉ. ᎢᏳᏃ ᏇᎵᏥᏆ ᏯᎩᏍᏕᎵᎭ ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎬᎢ, ᎦᎪ ᎤᏂᏍᏕᎵᎭ ᏗᏤᏥ ᎾᏍᎩ ᏓᏂᏄᎪᏫᏍᎬᎢ? ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᏗᎨᏧᎪᏓᏁᎯ ᎨᏎᏍᏗ. ᎤᏩᏛᎮ ᏩᏴᏍᏗ ᏃᎴ ᏭᏪᎷᏁ, ᏏᏲ ᎩᏥ! ᎤᏍᏗ ᎠᏣᏗ ᎭᏂ. ᎠᎴ ᎠᏴ ᏣᏂ ᎠᎩᎪᎲᎩ ᎦᎸᏉᏗᏳ ᎦᏚᎲ ᎾᏍᎩ ᎢᏤ ᏥᎷᏏᎵᎻ ᏓᏳᏠᎠᏒᎩ ᎤᏁᎳᏅᎯᏱ ᎦᎸᎶᎢ, ᎤᏛᏅᎢᏍᏛᎩ ᎾᏍᎩᏯ ᎠᏥᏰᎯ ᏣᏙᏚᎢᏍᏗᏍᎪ ᏣᏛᏅᎢᏍᏓᏁᎰ ᎤᏰᎯ. ᎨᏍᏗ ᏯᏆᏓᏅᏖᎳ ᎢᏳᏍᏗ ᏄᏰᎸᎲ. ᎿᏉᏃ ᏚᎾᎴᏁ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎳ ᎠᏂᎵᏆᏗᏂ ᏥᏂᎳᏫᎢᏍᏗᏱ ᏥᏚᏙᎥ, ᎠᎴ ᏌᎵᏂ ᎠᏂᎯ, ᎠᎴ ᎡᎵᏱᎩ ᎠᏁᎯ, ᎠᎴ ᏏᎵᏏᏱ ᎠᏁᎯ, ᎠᎴ ᎡᏗᏱ ᎠᏁᎯ, ᎤᎾᎵᏃᎮᏔᏁᏍᏗᏫ. ᎾᏉᏃ ᎢᏨᏔᏲᏎᎭ ᎤᎦᎵᏍᏗ ᎢᏣᏓᏅᏓᏗᏍᏗᏱ; ᎯᎠᏰᏃ ᏥᏂᏣᏛᏅ ᎥᏝ ᎩᎶᎬᏅ ᏴᎬᏩᏲᎱᏏ, ᏥᏳ ᎤᏩᏒ ᏓᎩᏲᎱᏎᎵ. ᎥᏝ ᎩᎶ ᎪᎵᎩ ᏱᎩ; ᎥᏝ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏲᎯ ᏱᎩ. ᎯᎠᏃ ᎠᎨᏴ ᎡᏆᎭᎻ ᎤᏪᏥ ᏥᎩ, ᎾᏍᎩ ᏎᏓᏂ ᎿᏉ ᎬᏂᏳ ᏁᎳᏚ ᏧᏕᏗᏴᏛ ᎬᏩᎸᎸᎯ ᏥᎩ, ᏝᏍᎪ ᏱᏚᏳᎪᏕ ᎤᎾᏙᏓᏆᏍᎬ ᎠᎦᎸᏒᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏓᎸᏍᏛᎢ? ᎿᏉᏃ ᏈᏓ ᎤᎷᏤᎸ ᎯᎠ ᏄᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᎢᎳᎪ ᎾᎩᏍᎦᏅᏤᎨᏍᏗ ᏦᏍᏓᏓᏅᏟ, ᎠᏏᏉ ᎢᏥᏯᏙᎵᎨᏍᏗ? ᎦᎵᏉᎩᏍᎪ? ᎾᏂᎥ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎨᏎᏍᏗ; ᎾᎯᏳᏰᏃ ᎤᎾᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎠᏥᎸ ᎤᎪᎵᏰᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎢᏳᏍᏗ ᎾᏍᎩ ᎨᏒᎢ. ᎾᏆᏓᏬᏅ ᏃᎴ ᏗᎧᏅᏩᏛᏍᏗ ᏂᎨᏒᎾ ᎢᏳᏍᏗ ᎤᏁᏌᏴᏥ ᎦᏃᎸᎥᏍᎦ ᏙᏱ ᎦᎢᏒᎩ. ᏃᏆᎴ Franklin Street ᎢᎦᎢᏒᎢ. ᏌᏩᏂᏃ ᎾᏍᏉ ᎤᏬᎯᏳᏁᎢ, ᎠᎦᏬᎥᏃ ᎤᏍᏓᏩᏗᏙᎴ ᏈᎵᎩ; ᎠᎪᏩᏗᏍᎬᏃ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᏍᏆᏂᎪᏍᎨᎢ. ᎤᎭᏳᎾᏚᎴ ᎠᏰᎳᏍᏗ ᏃᎴ ᏭᏴᎮ ᎩᎦᎭ ᎦᎷᏯᏍᏘ ᏥᏴ ᎦᏙ, ᎦᏣᏄᎸ ᎤᎨᎲᏎ. ᎾᏍᎩᏰᏃ Ꮎ ᎤᏲᎱᏒᎯ ᎤᏚᏓᎳᎡᎸᎯ ᎨᏐ ᎠᏍᎦᏂ. ᎠᏴᏰᏃ ᎾᏍᏉ ᏗᏆᏓᏁᎶᏗᏉ, ᎠᎴ ᏗᎩᎧᎭ ᎠᏂᏯᏫᏍᎩ ᎠᎴ ᎠᏴ ᏕᎬᏆᏁᎶᏙᎢ, ᎩᎶᏃ ᎮᎾ ᏥᏲᏏ, ᎡᎪᎢ; ᏅᏩᏓᎴᏃ ᎡᎮᎾ ᏥᏲᏏ, ᏗᎡᎪᎢ; ᏥᏅᏏᎠᏍᏗᏃ ᎯᎠ ᎿᏛᏏ ᏥᏲᏏ, ᎾᏍᎩ ᎾᏛᏁᎰᎢ. ᎦᏂᏓᏛᏃ ᏃᏈᏏ ᎦᎸᎳᏗ ᎠᏂᎧᎸ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏕᎤ-ᏎᏒᏔᏅᎩ, ᎠᎴ ᎦᏙᎯ ᏫᏚᏗᏅᏒᎩ; ᎢᎾᏛᏃ ᎢᎬᏱᏗᏢ ᎤᎴᏅᎩ ᎠᎨᏴ ᏄᏛᏅᎢ, ᎾᏍᎩ ᎤᎾᏄᎪᏫᏏᏕᎾ [ᎠᏲᎵ] ᎾᏍᎩ ᎤᏕᏃᏅᎯᏉ ᎤᏪᏯᎣᎲᏍᏗᏱ ᎤᏰᎸᏒᎩ. ᎭᎩᏅᏁᎸ ᎤᏍᏓᎦᏴᎯᏓ ᎪᏪᎵ, ᎤᏍᏚᏅ ᎠᏍᏚᏗ. ᎠᏰᎵ ᎢᏳᏕᏘᏴᏓ ᎨᏎ, ᏑᏓᎵ ᎢᏯᏂ ᏗᏂᏲᏟ, ᏫᏥ ᎢᏯᏂ ᎤᎾᏛᏒ ᎨᏎ. “ᎠᎴ ᏨᏌᎨ ᎰᏒᏍᎦ?” “Ꭵ, ᎨᎵᎠ ᏍᎩᎾᎾ ᎢᏳᎾᏛᏁᏗ,” ᎤᏛᏁ ᎪᏱᏁᎢ, ᏎᎦᏨ. ᎷᏆ ᎡᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᎠᎦᏑᏰᏛ ᎤᎬᏫᏳᎯ ᎪᎯᏳᎲᏍᎩ, ᎠᎴ ᎾᏍᎩ ᎣᎩᏂᏥ. ᎡᏝᏪᎯ ᎤᎾᎵᏍᏔᏴᏅ ᎠᏂᏲᏍᎩ, ᏧᏏᏩ ᏂᏚᎵᏍᏔᏅ ᏧᏃᏩ, ᎦᏲᏟ ᎦᎳᎨᏴ ᏧᏂᏅᎦᎴᎰᏅ ᏧᎪᎳ ᏃᎴ ᏒᏕᏅ ᎦᏂ, ᎤᎭᏄᏮ ᎪᎭᏯᏛ ᎬᏘ ᎤᏅᎦᎳᎲ ᎠᎰᎵ Perry, ᎤᏛᎾ ᎤᏁᏝᏅᎯ ᎤᏛᏅ. “ᏃᏗ ᏙᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎢ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎢᏥᎪᎵᏰᏍᎨᏍᏗ; ᎠᏍᏓᏯ ᏕᏥᏂᏴᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎨᏒᎢ. ᎢᏳᏰᏃ ᎢᎬᏱ ᎨᏒ ᎩᎶ ᏯᎦᎵᏴ ᏧᏓᏅᏛᎢ, ᏣᎦᏓᏂᎸᏤᏗ ᎨᏐ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᎲᎢ, ᎥᏝᏃ ᎾᏍᎩᏯ ᏄᎲᎾ ᎨᏒᎢ. ᏏᏲ ᎤᏍᏗ ᎠᏣᏗ, ᏧᏩ ᎬᏉᏎᎰ ᎠᏂᏣᎳᎩ ᏃᎴ ᎨᏍᏗ ᎠᏣᏗ ᏱᎩ ᎠᏯ, ᎠᏯᏃ ᎤᏔᏂᏓ ᏚᏪᎦ. ᏲᎾ ᎣᎦᎦᏙᏍᎬ ᏍᎩᏴ ᎢᎦ. ᏂᎦᏓ ᎤᏂᎾᎥ ᏕᎯᎩᎣᎲᏏ. ᎾᏍᎩᏃ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎠᏂᏏᏴᏫᎭ ᏑᏓᎵ ᏓᏃᏯᏛᎩ; ᎬᏩᏚᏫᏛᏃ ᎠᎴ ᎭᏫᏂ ᎧᎵᏬᎯ ᎨᏒ ᏗᏂᎧᏅᎢ; ᎠᎴ ᎾᎾᏣᏪᏐᎸᏍᏗᏍᎬᎾ ᎨᏐ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᎯᎠ ᎾᏂᏪᏍᎬᎢ; ᎦᎸᏉᏗᏳ, ᎦᎸᏉᏗᏳ, ᎦᎸᏉᏗᏳ, ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ, ᎾᏍᎩ ᏤᎲᎩ, ᎠᎴ ᏤᎭ, ᎠᎴ ᏤᎮᏍᏗ. ᎾᎿᏃ ᏫᎣᎨᏅ ᎠᎪᎸᏛ ᏬᎩᏅᏍᏔᏅᎩ, ᎵᏥᏯ ᏬᎩᎷᏨᎩ. ᏑᏙᏓᏆᏛᏃ ᎤᎶᏐᏅ ᏧᎦᎾᏮ ᎢᏗᏢ ᏓᏳᏃᎸᏔᏅᎩ; ᎤᎩᏨᏛᏃ ᏇᏗᎣᎵ ᏬᎩᎷᏨᎩ. ᎠᎴ ᎦᎪ ᏚᏓᎴᏅᏔᏅ ᎤᏁᎸ, ᎠᎴ ᏔᎵᏁ ᏛᎠᎦᎫᏴᎡᎵ? ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ ᏗᎧᏃᎩᏍᏗ ᎪᏪᎵᎯ, ᎦᏁᎸᎢ ᏅᏔ ᏫᏂᎦᎵᏍᏓ, ᎠᎴ ᏞᏍᏗ ᎩᎶ ᎾᎿ ᏳᏁᎳᏕᏍᏗ; ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᎬᏅ, ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏅᏩᏓᎴ ᏩᎩᏍᏓ. ᎿᏉᏃ ᎯᎠ ᏅᎤᏪᏎᎸᎩ ᎤᏍᏓᏩᏗᏙᎯ; ᎬᏂᏳᏉ ᏣᏥᎢ. ᎾᎯᏳᏉᏃ ᎾᏍᎩ ᎤᏍᏓᏩᏗᏙᎯ ᏧᏪᏅᏒ ᏭᏘᏅᏍᏔᏅᎩ. ᎦᏙᏃ? ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᏄᏅᏔᏅᎾ ᎨᏒᎢ, ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᏂᎦᏪᏍᎬ ᎢᏯᏛᏁᏗ ᎨᏒ ᎤᏅᏔᏅᎢ; ᏚᏃᏕᏍᏔᏁᏰᏃ ᎾᏍᎩ Ꮎ ᏅᏯ ᏗᏓᏙᏕᎯᎯ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᏔᎵ ᏄᎵᏁᏨ ᏕᏒᏗᏍᎬ ᎾᏍᎩ ᎬᏩᏓᏁᏟᏴᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᎿ ᎬᏩᏥᎪᏗ ᏂᎨᏒᎾ ᏥᎨᎭ ᎤᏁᎳᏅᎯ, ᎠᏴ ᎢᎩᏲᎸᎯ ᏥᎩ ᎢᎦᏗᏍᎦᎶᏗᏱ, ᎤᎵᏂᎩᏛ ᎢᎩᎦᎵᏍᏓᏗᏍᎩ ᎨᎩᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏗᎩᏂᏴᏗᏱ ᎤᏚᎩ ᎬᏗ ᎡᎩᏩᏌᏓᏁᎲᎢ; ᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏍᏉ ᏂᎦᏛ ᏱᏚᏃᏕᎸ ᏂᎯ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᏎ ᎠᏴ ᎥᏝ ᏱᏙᎬᏉᏕᎦ. ᎠᎴ ᎾᏍᎩ ᏯᎩᎭ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ, ᎠᎴ ᏱᎪᎵᎦ ᏂᎦᏗᏳ ᎤᏕᎵᏛ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏗᏳ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎠᎴ ᏂᎦᎥ ᎪᎯᏳᏗ ᎨᏒ ᏯᎩᎭ, ᎾᏍᎩ ᏰᎵᏉ ᏗᎬᎩᎲᏍᏗ ᏱᎩ ᏙᏓᎸᎢ; ᎠᏓᎨᏳᏗᏃ ᎨᏒ ᎾᎩᎲᎾ ᏱᎩ, ᎪᎱᏍᏗᏉ ᏂᎨᏒᎾ ᎠᏴ. ᎠᏂᏧᏣᎾ---ᏗᎪᎵᎩᎨ ᎠᏂᏧᏣ?” ᎤᏣᏘᏰᏃ ᎠᏆᏚᎵ ᎢᏨᎪᏩᏛᏗᏱ, ᎾᏍᎩ ᏗᏨᏲᎯᏎᏗᏱ ᎪᎱᏍᏗ ᎤᏍᏗ ᎠᏓᏅᏙ ᎤᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏗᏣᎵᏂᎪᎯᏍᏗᏱ ᏭᎵᏱᎶᎯᏍᏗᏱ; ᏗᏣᏓᏅᏏᏙᎯ, ᏕᏥᏁᎮᏍᏗ ᏗᏥᏅᏏᏓᏍᏗ ᏚᏳᎪᏛ ᎠᎴ ᏰᎵᏉ ᎨᏒᎢ; ᎢᏣᏅᏖᏍᏗ ᏂᎯ ᎾᏍᏉ ᎢᏥᏅᏏᏙᎯ ᎦᎸᎳᏗ ᏤᎲᎢ. ᎡᎶᎯᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᎧᎵᎢᎭ. ᎡᎵᏍᎨ ᎠᎾᏛᎩᏍᎨ ᎦᎾᏁᏍᎬ. ᎤᏂᏃᎮᎸᏃ, ᎤᏂᏩᎯᏍᏔᏁ ᎥᏘ ᏗᎪᏢᏍᎩ ᎤᎶᎨᏒᎢ ᎾᎿ ᎠᏁᏙᎯ ᏗᎨᏥᏂᏐᏗᏱ. ᏤᎦᎳᏯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏗᎧᎿᏩᏗᏙᎯ, ᎦᏙᏃ ᎠᏆᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎯᎠ? ᎠᏆᏛᏐᏅᎯᏰᏃ, ᎠᎴ ᎠᏆᏓᎵᎢ ᎿᏉ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᏞᏍᏗ ᎡᏥᎳᏅᏓᏕᎸᎩ ᎠᏍᎩᎾ. ᏕᎯᎸᏉᏕᏍᏗ ᏧᏃᏑᎶᏨᎯ, ᎢᏳᏃ ᎤᏙᎯᏳᏒ ᏧᏃᏑᎶᏨᎯ ᏱᎩ. ᎢᎦ ᎤᏟᏂᎪᏎ, ᎠᎯᏗᎨ ᎦᎷᎨ ᏑᎾᎴ. ᏞᏍᏗ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎩᎵ ᏗᏥᏁᎸᎩ, ᏞᏍᏗ ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ ᏗᏣᏤᎵᎦ ᏏᏆ ᏫᏗᏣᏗᏁᎸᎩ, ᏱᏓᎾᎳᏍᏓᎥᎵᏉᏰᏃ, ᎠᎴ ᏯᎾᎦᏔᎲᎾ ᏴᎨᏥᏓᎦᎸᎥᎦ. ᎠᎴ ᎠᏜ ᎦᏩᏒᎩ ᏚᎦᏒᏍᏛ ᎾᎯᏳ ᎠᎵᏌᎳᏗᏍᎬᎩ ᎤᎾᏓᏅᏘ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᏓᎵᏌᎳᏗᏍᎬ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏫᎦᎷᎬᎩ, ᏗᎧᎿᏩᏗᏙᎯ ᎤᏬᏰᏂ ᎠᏓᎴᎲᏍᎬᎩ. ᏣᏂ ᏚᏁᏤᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎠᏴ ᎠᎹ ᏕᎦᏓᏬᏍᏗᎭ; ᎠᏎᏃ ᎦᏙᎦ ᎩᎶ ᎢᏥᏙᎾᎥ ᎤᏓᏑᏯ ᎾᏍᎩ ᏄᏥᎦᏔᎲᎾ; ᏔᎵᏃ ᏫᏄᏕᎢᏴᎲ ᏈᎵᏏ ᎤᏪᏅᎢ ᏉᏏᏯ ᏇᏍᏓ ᎤᏪᏔᏅᎩ; ᏈᎵᏏᏃ ᎤᏚᎵᏍᎬᎢ ᎠᏂᏧᏏ ᎣᏍᏛ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ, ᎤᏪᎧᎯᏴᎩ ᏉᎳ ᎠᎦᎸᎢᏛ. ᏚᏛᏛᏁᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎢᎳᎪ ᎦᏚ ᏕᏥᏰᎭ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎦᎵᏉᎩ. ”ᎭᏩ, ᎠᎬᏱ ᎤᎧᏌᏔᎾ ᏌᏌ ᎠᏓᎯ ᎠᏍᎪᎵ ᏌᏌ ᎠᎩᏌ ᎭᏫᏂᏣ, ᎤᏍᏗ ᎦᏍᎩᎶᎩ ᎠᏉᏢ ᎤᏅᏏᏴᎢ, ᏌᎳᏓ ᎤᏏᎳᏛ ᎤᏬᏢ. ᎤᏂᎪᎲᏃ ᎾᏍᎩ ᏂᎦᏛ ᎤᏂᏐᏅᏤᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏩᏴᏢ ᏮᏛᏒᏎᎵ ᎠᏍᎦᏯ ᎠᏍᎦᎾᎢ. ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏥᏍᏓᏩᏕᎨᏍᏗ; ᎠᎴ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏙᏗ; ᎠᏗᎾ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎾᏍᎩ ᎨᏣᏙᎴᎰᎯᏍᏗ ᎨᏒᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎠᏏᏉ ᎣᏍᏛ ᏕᎧᏁᏤᎮᎢ ᎠᎦᏓᏓᎴᏔᏁ ᎠᏂᏙᎾᎥᎢ, ᎦᎸᎳᏗᏃ ᏩᎦᏘᏅᏍᏔᏁᎢ. ᏑᏓᎵᏍᎪᎯ ᎢᏳᏕᏘᏴᏓ, ᎠᏎᏃ ᏁᎵᏍᎪ ᎢᏳᏕᏘᏴᏓ ᏄᏍᏛ ᏗᎧᏃᏗ, ᏰᎵ ᎢᏳᏩᎦᏘ ᎠᏓᏚᏚ. ᎡᏓᎴᏫᏍᏙᏙᏗ ᎠᎾᏗᏍᎨᎢ. ᏳᏟᏴᏧᎩᏒᎾ ᎤᏴᎵᎸ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏗ ᏧᏬᏪᎳᏁᎯ ᎠᏌᎻᏓ ᎤᎵᏦᏩᏛ. ᎢᏧᎳ, ᏃᏉ ᎤᏛᏅ. ᎼᏏᏰᏃ ᎯᎠ ᏂᏕᎤᏪᏎᎴ ᏗᎩᏙᏓ; ᏱᎰᏩ ᎢᏣᏁᎳᏅᎯ ᏓᏥᎾᏄᎪᏫᏎᎵ ᎠᏙᎴᎰᏍᎩ ᎢᏣᎵᏅᏟ ᎨᏒ ᏓᎦᎾᏄᎪᏥ, ᎠᏴ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᏓᏰᏣᏛᏓᏍᏓᏁᎵ ᏂᎦᎥ ᎢᏥᏁᏤᏗ ᎨᏒᎢ. ᎤᏩᏇᏅᏔᏁ ᎠᏣᏗ, ᏃᏗ ᎤᏩᏯᎨᎢ ᎣᏍᏓ ᎤᏛᏅᎢᏍᏔᎾ. ᎠᏰᎵ ᎢᏴ ᎠᏥᏍᏛ ᎫᎦ ᏫᏍᎩ ᏃᎴ ᎠᏰᎵ ᎢᏴ ᎠᏥᏍᏛ ᎤᏁᏍᏔᎸ ᏚᏌᎲ ᎦᏍᎩᎸ. “ᎠᎩᏥ ᎠᏇᏲᏅ.” ᎡᎶᏛᏃ ᏅᎩ ᎢᎦᏚᎩ ᎨᏒ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏗ ᎤᏛᎦᏁ ᏂᎦᏛ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ; ᎠᎴ ᎤᏕᏯᏔᏁᎴᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎩᎶ ᏣᏂ ᎤᏲᎱᏒ ᏕᎤᎴᎯᏌᏅ ᎠᎾᏗᏍᎬᎢ; ᎣᎯᏍᏙᏗ ᎠᏒᏍᏗ ᎠᏆᏚᎵᎭ ᏥᏲᏎᎸ. ᏐᎳᏃ ᎣᏏᏳᎠᏰᎸᏍᎨ ᎠᏥᎸᎢ. ᎾᎯᏳᏃ ᎤᎶᏘ ᎤᏲ ᏂᎨᎬᎾᏕᎨ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏈᎬ ᏘᎷᏏᎵᎻ; ᎠᎴ ᏂᎦᏛ ᎤᎾᏗᎦᎵᏲᏤ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏌᎺᎵᏱ, ᎨᏥᏅᏏᏛ ᎤᏅᏒ. ᎠᎭᏲᎮᏉ ᏣᎵ ᎤᎵᏏᎩ ᎬᏕᎶᎰᎯᏍᏗ ᏱᎨᏒᎾ ᏂᏚᏓᎴᏒ ᏧᏆᎶᎦ. ᎨᏱᏗᏣ ᏬᏥᎦᏛ ᎠᎹᏳᎸᏓ, ᏃᏥᏳ ᏃᎴ ᏌᏬᏚ ᏃᎴ ᏕᎮᏴ, ᎨᏍᏗᎭ ᏕᎨᏴ ᎢᏳᏍᏗ ᏱᎨᏎ ᏂᏚᏍᏛ ᎠᏯ ᏗᎩᎶᏒ, ᎬᏂᎨ ᏌᏬᏚ ᏃᎴ ᎠᏒᎩ ᎠᎹ ᎤᏓᏑᏱ ᎠᎹ ᎨᏒ. ᎤᏍᏆᏂᎩᏗ ᎠᎩᏰᎸᎲ, ᎾᏍᎩᏴ ᎠᏁᏙᎵᏙ ᏗᏃᏪᎵᏍᎩ ᏅᎩᏁᎢᎦ ᏓᎩᎸᏉᏛ. ᎠᏚᎢᏍᏛᏃ ᎤᏍᏆᎸᎯᏗᏎᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏎᎵᏔᏅᎯ ᏧᏁᏤᎴ ᎡᏆᎭᎻ, ᎾᏍᎩ ᎤᏂᏁᏉᏤ ᏴᏫ ᎠᎴ ᎤᏂᏣᏔᏅᎯ ᏄᎾᎵᏍᏔᏁ ᎢᏥᏈᏱ. ᎠᎴ ᎾᏍᎩ ᎾᏅᎩ-ᏗᎦᏅᏌᏗ ᎥᏥᎪᎥᎩ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᏓᏁᏩᏗᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏤᎵ ᎠᏂᏯᏫᏍᎩ, ᎤᎾᏓᏟᏌᏅᎩ ᏓᎿᏩ ᎢᏳᏅᏁᏗᏱ ᎤᏂᏰᎸᏒᎩ ᎾᏍᎩ Ꮎ ᏐᏈᎵᎯ ᎤᎩᎵ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ. ᎤᏓᏂᎢᎨᏃ ᎤᏪᏥ ᏠᎨᏏ ᏪᏙᎮᎢ; ᏗᎤᏪᏅᏃ ᎠᎴ ᎠᏓᏁᎸ ᎾᎥ ᎤᎷᏨ, ᏓᏂᏃᎩᏍᎬ ᎠᎴ ᎠᎾᎵᏍᎩᏍᎬ ᎤᏛᎦᏁᎢ ᎤᏂᏣᏘᏃ ᎤᏁᎷᏅᎩ ᏧᏓᎴᏅᏛᏉ ᏄᏂᏪᏒᎩ. ᎤᏄᎸᏅᏃ ᏚᏳᎪᏛ ᎤᏙᎴᎰᎯᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏓᏑᏰᏛ ᎠᎾᎵᏖᎸᎲᏍᎬᎢ, ᎤᏁᏨᎩ ᏗᏐᏴ ᏩᎦᏘᏅᏍᏙᏗᏱ. “ᏙᎤᏍᏗ ᎧᏃᎮᏗ ᎤᏃᎮᎴ?” ᎤᏓᏛᏛᏁ ᎪᏱᏁᎢ. ᎦᎪᏍᏂ ᎤᏤᎵᎠ ᎠᎭᏂ ᎢᎾᎨᎢ ᎠᏆᏂᏔ ᎨᎵᎠ. ᎠᏏᎳᏛᎥᏍᎬ ᏭᏏᎳᏛᏁ ᎠᏏᎳᏛ. ᎠᏆᏁᎸᏔᏅ ᎤᏕᎸᏓ ᎨᏥᎾᏌ ᎠᏂᎦᏔᎲ, ᎨᎵ ᎨᏍᏗ ᎪᎰᏍᏗ ᏰᎵᏍᎨ ᎢᏳᏍᏗ ᎤᏂᏃᎮᏗ ᏭᏕᎵᎬ ᎠᏁᏒ. ᎣᏍᏓ ᎠᎵᏍᏓᏴᏗ ᎠᏥᏁᎮ ᏃᎴ ᎣᏍᏓ ᎤᎾᎦᏎᏍᏛᎢ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᏍᎨᎢ. ᎢᏳᏍᏗᏉ ᎠᏍᎦᏯ ᏯᏨᏇᏍᎨᎢ ᏳᎾᏌᎡᎢ ᏏᏆ ᏫᎵᎻ. ᎠᏓᏙᎵᏍᏗᎨᏃ ᏄᏍᏛ ᎤᎧᏛ ᎤᏓᏁᏟᏴᏎᎢ, ᎠᎴ ᏚᏄᏩᎥ ᎤᏁᎩᏳ ᎠᎴ ᎬᏩᏥᏍᏓᎷᎩᏍᎩ ᏄᎵᏍᏔᏁᎢ. ᎾᎨᎢᏴ ᎠᏛᎩᏍᎨ ᎧᏃᎩᏍᏗ ᏧᏃᏴᎬ ᏐᏈᎵ ᏗᏥᎶᏍᏔᏅ ᏗᎩᎸᏙᏗ ᏓᏳᏓᎴᏅ. ᏓᎦᎷᏥ ᎠᎴ ᏙᏛᏛᏔᏂ ᎾᏍᎩ Ꮎ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᏅᏩᎾᏓᎴ ᏙᏛᏁᎵ ᏖᎸᎳᏗ ᏓᏫᏒᎢ. ᎾᏍᎩᏃ ᎤᎾᏛᎦᏁᎸ, ᎥᏞᏍᏗ, ᎤᎾᏛᏁᎢ. ᎾᎯᏳᏃ ᎾᏍᎩ Ꮎ ᎠᏍᎦᎾ ᎬᏂᎨᏒ ᏅᏓᏰᎬᏁᎵ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏨᏛᏛᏔᏂ ᎠᏓᏅᏙ ᎠᎰᎵ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏗ, ᎠᎴ ᏨᏛᏛᏔᏂ ᏓᎬᏔᏂ ᎬᏂᎨᏒ ᎾᎬᏁᎲ ᎾᎯᏳ ᎦᎷᏨᎭ; ᏝᏍᎪ ᏱᏏ ᏱᏥᏁᎴ ᏗᎧᎿᏩᏛᏍᏗ? ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏳᏓᏑᏯ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏱᎾᏛᏁᎭ. ᎦᏙᏃ ᎢᏣᏚᎵ ᏍᎩᎢᏍᏗᏱ? ᎠᏍᎦᏯ ᎡᎲᎩ ᏂᎦᏗᎹᏏ ᏧᏙᎢᏛ, ᎠᏂᏆᎵᏏᏱ ᎤᏤᎵᎪᎯ, ᎠᏂᏥᏏ ᏗᎬᏩᏁᎶᏗ ᎨᏒᎩ. ᎾᏍᎩ ᎾᏍᏉ ᎬᏃᏛ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎴᎢ, ᎤᎩᎵᏲᏨᎯ ᏂᎨᏎᎢ, ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎠᏙᎵᏲᏨᎯ ᏂᎨᏎᎢ, ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎬᏗᏍᎬᎢ, ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎬᏩᎪᎲᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎬᏩᎪᎲᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ ᎤᏃᎮᎸᎯ ᏂᎨᏎᎢ. ᎱᏓᎾᏫᏛᎮ, ᎱᏗᏆᎸᏕᏰ, ᎾᎨ ᎢᏳᏛᏅᎯᏓ ᏭᏓᏒᏍᏔᏁ, ᎱᎴᏫᏍᏔᏁ, ᎤᎵᏒᏍᏔᏁ ᎤᏃᎴ, ᏃᏉ ᎠᎾᏔᏍᎩ ᏕᏧᎬ ᎠᏰᎵ ᏭᎶᏎ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎬᏲᏎᎭ, ᎪᎯ ᎢᎦ ᏥᎩ ᏫᏁᏙᎮᏍᏗ ᏅᏩᏙᎯᏯᏛ ᏗᎨᏒᎢ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎢᏥᏈᏱ ᎤᏓᏅᏎᎢ, ᎾᏍᎦᎢᎲᎾ ᎨᏎ ᎤᎬᏫᏳᎯ ᎤᏔᎳᏬᏍᎬᎢ; ᎬᏂᏗᏳᏍᎩᏂ ᎨᏒ ᎾᏍᎩᏯᏉ ᏣᎪᏩᏘᏍᎪ ᎾᏍᎩ Ꮎ ᎦᏰᏥᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎠᎴ ᎾᏍᏉ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎦᏃᏗᏍᎩ ᏥᏚᏲᎮ ᏧᏬᏚᎯ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ. ᎥᏆᏒᏲᏍᏔᏅ. ᎾᎿᏃ ᎬᏩᏚᏫᏛ ᏗᏂᏁᎸ ᏂᎦᏛ ᎤᏂᎾᏰᏎᎢ; ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᏚᏃᏣᎶᏤ ᏂᎬᎾᏛ ᎣᏓᎵ ᎨᏒ ᏧᏗᏱ. ᎤᎾᏛᎦᏅᏃ ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎬ ᎤᏂᏬᏁᏗᏍᎬᎢ, ᎤᏟ ᎢᎦᎢ ᎡᎳᏪ ᎤᏅᏅᎩ; ᎯᎠᏃ ᏄᏪᏒᎩ; ᎤᏂᎩᏌᏃ, ᎤᎪᎮᎢ ᎠᎴ ᎤᏲ ᎤᏓᏅᏖᎢ ᎢᏈᎬᎢ. ᏂᎯᏰᏃ ᎤᏙᎯᏳᎯ ᎣᏏᏳ ᏂᏪᎭ ᎭᎵᎮᎵᎬᎢ, ᏐᎢᏍᎩᏂ ᎥᏝ ᏳᎵᏂᎪᎯᏍᏗᎭ. ᎭᏗᏔ ᎠᎴ ᏣᏉ ᎠᏆᏛᏅ. ᎠᏎᏃ ᎤᏂᎾᏰᏎᎢ, ᎠᎴ ᎤᏂᏍᎦᎴᎢ, ᎠᏓᏅᏙ ᎣᏥᎪᏩᏛ ᎠᏁᎵᏍᎨᎢ. ᎤᏅᏌ ᎤᎾᏤᎵ ᎤᏁᏝᏅᎯ ᎦᏥᏯᏓᏙᎵᏍᏔᏁᎸ, ᎠᏇᏙᏅ ᎠᎩᎦᏔᎲᏍᎬ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ, ᏦᎯᏳᏒ ᏣᏍᏕᎸ; ᏅᏩᏙᎯᏯᏛ ᏥᎮᎾ. ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᏭᏂᏌᏕ ᎧᏁᏌᎢ ᎠᏯᎥ ᏫᎵᎻ. ᎤᏪᎵᏎᏃ, ᏴᎦᎪᎵᎩ ᏳᏩᏁᎦ, ᎨᏍᏗ ᎢᎪᎯᏛ ᎡᎲ ᏯᏓᏅᏔᏗᏍᎨᎢ, ᎠᏎ ᎤᏚᏓᎴ ᏧᏪᎵᏍᏗ. ᎠᎬᏱ ᏄᏛᏁᎸ ᎤᏐᏱ ᏄᏛᏁᎴ ᏓᏏᎳᏛᎥᏍᎬ ᏃᎴ ᏕᎪᏪᎵᏍᎬ. ᎠᎴ ᎬᏂᏳᏉ ᎢᏍᏗᏠᏱ ᎵᏏ ᎾᏍᎩ ᎠᏧᏣ ᎤᏁᎵᏨ ᎿᏉ ᎠᎦᏴᎵᎨ ᎨᏒᎢ; ᎠᎴ ᎪᎯ ᏥᎩ ᎿᏉ ᏑᏓᎵᏁ ᎧᎳ ᎬᏩᏁᎵᏨᎯ ᎾᏍᎩ ᏗᎷᎸᎥᏍᎩ ᏂᎨᏒᎾ ᏣᎪᏎᎲᎩ. ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎢᏨᏅᏏᏓᏍᏗ ᏱᏨᏲᏎᎭ; ᎠᏥᏅᏏᏓᏍᏗᏰᏃ ᎥᏝ ᏯᎦᏔᎰ ᎤᎾᏞᎢ ᎾᏛᏁᎲᎢ. ᏂᎯᏍᎩᏂ ᎢᎦᎵᎢ ᎢᏨᏲᏎᎭ; ᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎡᏙᏓ ᏥᏯᏛᎦᏁᎸᎢ ᎾᏍᎩ ᎢᏨᎾᏄᎪᏫᏎᎸ. ᏍᎩᏃ ᎢᎾᏓ ᎨᏍᏗ ᎯᎸᎯᏳ ᏔᎵᏁ ᏳᏂᎪᎮ ᎠᎴ ᏳᎾᏛᎪᏓᏁᎢ. ᎦᏙᏃ ᎭᏂ ᎤᏩᏌ ᏱᎭᏗᎭ? ᎦᏙᏃ ᎠᏎ ᎤᏩᎦᏘᎶᏓ ᎢᏣᏪᏍᏗ ᏥᎨᏐᎢ?” “Ꭰ,” ᎤᏛᏁ ᏫᎵᎻ. ᎥᏆᎸᎢᏛᏰᏃ ᎨᏒ ᎢᏳᏍᏗ ᎥᏍᎩᏯ-ᏙᎵᏨᎩ, ᎠᎴ ᎤᎵᎮᎵᏍᏗᏉ ᎥᏣᏓᏅᏛᎩ ᎡᏥᏬᏅᎲ ᏧᎬᏩᎶᏗ ᎢᏥᎲᎢ, ᎢᏥᎦᏔᎲᎩᏰᏃ ᎦᎸᎳᏗ ᏫᏥᏍᏆᏂᎪᏛ ᎤᏟ ᎢᏲᏍᏛ ᎠᎴ ᎠᏲᎩ ᏂᎨᏒᎾ ᏧᎬᏩᎶᏗ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ, ᎭᏢ ᏮᏓᎦᎶᏏ, ᎦᏰᏗᏩᏛᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ? ᏧᎾᏓᎴᏅᏛᏍᎪ ᏴᏫ ᏓᏁᏩᏗᏒ ᎤᎾᏗᎦᎴᏲᏨᎯ ᏙᏛᏩᏛᎮᏏ, ᎠᎴ ᏫᏙᏓᎨᏲᏂ ᏧᎾᏓᎴᏅᏛ ᏴᏫ? ᎪᏍᏓᏱ ᏗᎦᏥᏙᏗ ᎦᏰᏌᏗ ᎠᏓᏪᎯ ᏥᎨᏎᎢ ᏃᎴ ᏂᎪᎯᎸ ᏧᏲᏏᏍᎨᎢ. ᏃᏗ ᎭᏕᎶᎰ ᎢᏳᏍᏗ ᎠᎪᎵᏰᏍᎬ ᎠᏙᎯ ᎦᏓ ᎠᎪᎵᏰᏍᎩ ᎾᏍᎩᏯ ᎠᎵᏰᎾ. ᎠᎴ ᎦᏙ ᎠᏏ ᏓᎦᏛᏂ? ᎥᏝᏰᏃ ᎬᎩᏍᏆᏗᏍᏗ ᏱᎩ ᏱᎦᏥᏃᎮᎸ ᎩᏗᏯᏂ, ᎠᎴ ᏇᎴᎩ, ᎠᎴ ᏌᎻᏏᏂ, ᎠᎴ ᏤᏈᏓ; ᏕᏫ ᎾᏍᏉ, ᎠᎴ ᏌᎻ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ. “ᎠᏯᏗ ᏍᏉ ᏓᎨᏏ,” ᎡᏝᏪᎯ ᏄᏪᏎ. ᏅᎦᏍᎪᎯᏃ ᏧᏙᏓᏆᏛ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎠᎹᏟ ᎤᏩᏅ ᎩᎳ ᎤᏲᏏᏌᏁᎢ ᏅᏩᏓᎴᏍᎩᏂ ᎥᏝ ᏴᎬᏂᏍᏓᏩᏚᎦ, ᎠᎾᎵᎡᎰᏉ, ᎥᏝᏰᏃ ᏯᏃᎵᎪ ᏅᏩᎾᏓᎴ ᎠᏂᏁᎬᎢ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᎦᏙᏃ ᎰᏍᏛ ᎢᏍᏉᏎᎭ? ᎥᏝ ᎩᎶ ᎣᏍᏛ ᏱᎩ ᏌᏉ ᎤᏩᏒᎯᏳ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ. ᎠᏎᏃ ᏣᏚᎵᏍᎨᏍᏗ ᎬᏂᏛ ᏗᎨᏒ ᏫᏣᎾᏄᎪᎢᏍᏗᏱ ᏘᏍᏆᏂᎪᏓ ᏗᎧᎿᏩᏛᏍᏗ. ”ᏓᏓᎾᏁᎶᏂᎨ?” ᎤᏛᏛᏁ. ᎠᎴ ᏧᎵᏍᎪᎸᏓᏁᏗᏱ ᏚᏂᏢᎬ ᏧᏂᏅᏬᏗᏱ, ᎠᎴ ᎠᏂᏍᎩᎾ ᏧᏂᏄᎪᏫᏍᏗᏱ; ᎢᏣᏅᏖᏍᏗ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎢᏥᏁᏗ ᎨᏒ ᎡᏣᎫᏴᏓᏁᏗ ᎢᏣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ; ᎤᎬᏫᏳᎯᏰᏃ ᎦᎶᏁᏛ ᎪᎱᏍᏗ ᎡᏣᏛᏁᎭ. ᎩᎶᎨ ᏯᏆᏙᎳᏍᏛ? ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏚᎴᏁᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᏝᏍᎪ ᏱᏁᎦ? ᎦᏙ ᎯᎠ ᎠᏂᎦᏔᎲ ᏣᏂᏃᎮᎭ ᏥᎨᏣᏡᏗᎭ? ᏃᏉ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏁᎬ ᏃᎴ ᎠᏂᏴᏫᏯ ᎠᏂᏁᎬ, ᎢᏧᎳ ᎫᏩᎭᏲᎲ. ᎤᏲ ᏗᎾᏓᏃᎮᎵᏙᎯ, ᎤᏁᎳᏅᎯ ᎠᏂᏂᏆᏘᎯ, ᎬᏩᎾᏓᏐᏢᏗ; ᎤᎾᏢᏉᏗ, ᎤᎾᏢᏆᏌᏗ, ᎠᏃᎷᏩᏘᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏲᎢ, ᏂᏚᏃᎯᏳᏒᎾ ᏧᏂᎦᏴᎵᎨᎢ, “ᏲᎾ ᎤᏤᏍᏙ, ᏙᏉ ᏯᏛᎦ ᎠᏣᏗ ᏱᎫᏓᎸᎩ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎾᏍᎩᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏗᏒᎲᏍᏗ ᏥᎩ, ᏂᎦᎥ ᏂᏥᏍᎦᏅᎾ ᏱᎩ ᎢᏣᎴᏂᏙᎲᎢ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎢᏤᎲᎢ! ᎠᏎᏃ ᎭᏕᏬ-“ᎠᏂᏍᎦᏯ ᎨᏒ ᎤᏟᏍᏓ, ᎤᏟᏍᏓ, ᎤᏟᏍᏓ, ᎢᎪᎯᏓ. ᎠᎴ ᎡᏥᎦᏘᏗᏍᏗᏱ ᎾᏍᎩ ᎤᏪᏥ ᎦᎸᎳᏗ ᏅᏓᏳᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏥᏕᎤᎴᏔᏁᎢ, ᎾᏍᎩ ᏥᏌ, ᎾᏍᎩ ᏥᎫᏓᎴᏒ ᎤᏔᎳᏬᎯᏍᏗ ᎤᎷᎯᏍᏗ ᏥᎩ. ᎦᏁᎸᏃ ᏚᏴᏔᏂᎸ ᏚᏪᎳᏍᏔᏁᎢ, ᎠᎴ ᎪᎯᏳᎲᏍᎬ ᎤᏁᎳᏅᎯ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎦᏁᎸᎢ. ᎤᏩᏙᎯᏴᏓ ᎨᏒ, ᏰᎵ ᏧᏕᏘᏴᏓ ᎦᏁᎸᏗᏍᎬ ᎠᎩᏩᏛᏗ ᎦᏅᏅ ᎭᎾᎾ ᏫᎦᎷᎩ. ᎦᎸᏉᏗ ᏂᎨᏒᎾ ᎠᏫᏒᎯ ᎨᏐᎢ, ᎦᎸᏉᏗᏳ ᏗᎴᏙᏗ ᎨᏎᏍᏗ; ᎠᏩᎾᎦᎳ ᎠᏫᏒᎯ ᎨᏐᎢ, ᎤᎵᏂᎩᏛ ᏗᎴᏙᏗ ᎨᏎᏍᏗ; Ꮟ ᏐᏉ ᏄᎳᏏᏁᎢ ᏔᎷᎩᏍᎩ ᎢᏣ. ᎠᏎᏃ ᎠᎦᏔᎮ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏂᎦᎥ ᎠᏰᎵ ᏕᎪᏢᏒᎢ ᏔᎵ ᏥᎾᏓᏗᏍᎪ ᎤᏩᏒ ᏣᏓᏡᏗᏍᎪᎢ, ᎠᏲᎪᏉ; ᎠᎴ ᏏᏓᏁᎸ ᏔᎵ ᏥᏄᏓᎣ ᎤᏩᏒ ᏣᏓᏡᏗᏍᎪ ᎠᏲᎪᎢ. ᎤᏩᏌ ᏚᎵᎬᏩᏢ ᎠᏂᏳᏩᏁᎦ ᎤᎾᎵᏍᏕᎸᏙᏗ, ᏩᎦ ᏃᎴ ᏏᏆ ᎤᏁᏓᏍᏗ, ᏃᎴ ᎠᏂᎦᏗᏓ ᏳᎾᏁᎳᏓ ᎩᎳ ᎣᏍᏓ ᎢᎫᏩᎵᏍᏙᏗ, ᎠᏂᎦᏲᏟ ᎤᎾᎵ ᏗᎩᏛ. ᎠᏂᏴᏫᏯ ᎠᏁᎯ, ᎪᎰᏍᏗ ᎤᏂᏲᏍᏔᏁᏗ ᏱᎩ ᎾᎥ ᎠᏁᎯ ᎠᏂᏳᏩᏁᎦ, ᎦᏲᏟ ᏧᏂᏲᎰᏎᏗ ᏏᏆ ᏃᎴ ᏎᎷ. ᎯᎠ ᏂᏥᏫ, ᏂᎦᎥ ᎤᏂᎾᎥ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏴᏫᏯ ᏧᏂᏩᎯᏎᎸ. ᏝᏍᎪ ᏯᏓᏅᏖᎭ ᏰᎵ ᎦᏥᏯᏓᏙᎵᏍᏓᏁᏗ ᎨᏒ ᎡᏙᏓ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎥᏝ ᏔᎳᏚᏉ ᎢᏳᎾᏓᏡᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏱᏙᎬᎩᎧᏏ? ᏥᎪ ᎩᎶ ᏄᏂᎬᏫᏳᏒ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏬᎯᏳᏅ? ᎦᏃᎸᎥᏍᎬ ᎤᎭᏲᎴ ᎠᏒᎬ ᏦᎢ ᏧᏆᎾᏕᎾ- ᎤᎦᎾᏍᏓ ᎠᏒᎬ ᎡᎶᎯ ᎠᏦᏴ ᏙᏰ. ᏃᎴ ᏓᎭᏃᏫ ᎨᏍᏗ ᏱᏓᏲᎩᏍᏆᏂᎪᏔᏂ. ᏦᎢᏁ ᎤᏒᎯ, ᏧᎩᎾᎭᏄᏫ ᏙᎩᏂᏢᏅ ᏦᎩᏂᏯᏪᏨ. ᎠᏎᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᏒᏃᏱ ᏚᏍᏚᎢᏎ ᏗᏓᏍᏚᏗᏱ ᎦᎶᎯᏍᏗᏱ, ᏚᏄᎪᏫᏒᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏣᏛᎦᏅᎯ, ᏛᎨᏏ ᎠᎴ ᏛᏨᎷᏤᎵ, ᏥᏨᏲᏎᎸᎩ. ᎢᏳᏃ ᏍᎩᎨᏳᎢᏳ ᏱᎩ, ᏳᏣᎵᎮᎵᎦ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏫᏥᎦᏘ ᏣᏆᏛᏅᎩ; ᎡᏙᏓᏰᏃ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏴ. ᏚᏂᏐᏨᏃ, ᎨᏂᏏᎳᏗ ᏭᏂᎷᏤᎢ, ᎠᎴ ᎤᏂᏔᎳᏕᎢ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏦᎢᎵ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎠᏎᏃ ᎨᏍᏗ ᎪᎱᏍᏗ ᎠᏤᎯ ᏯᎪᏩᏘᏍᎨᎢ. ᎢᏌᏯ ᎾᏍᏉ ᎯᎠ ᏂᎦᏪᎭ ᎢᏏᎵ ᏕᎧᏁᎢᏍᏗᏍᎬᎢ; ᎢᏏᎵ ᏧᏪᏥ ᎾᏍᏉ ᏃᏳ ᎠᎺᏉᎯ ᎦᎳᎨᏴ ᎾᏍᎩᏯ ᏱᏄᎾᏧᏈᏍᏗ, ᎤᎾᎵᏃᎯᏰᎯ ᎠᏎ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᏄᏓᎴ ᎤᏍᏆᏂᎩᏗ. “ᏰᎵᏉᎨ ᎠᏕᎳ ᏱᏕᏍᎬᏏ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏔᎵᏁᏃ ᎤᏴᎵᏎ ᏣᏔᎦ. ᏈᏓᏃ ᎤᏅᏓᏕ ᏥᏌ ᏄᏪᏒᎢ, ᎯᎠ ᏥᏄᏪᏎᎴᎢ, ᎠᏏ ᏣᏔᎦ ᏔᎵ ᏄᏴᎳᏒᎾ ᎨᏎᏍᏗ, ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ. ᎾᏍᎩᏃ ᎤᏓᏅᏖᎸ ᏚᏠᏱᎴᎢ. ᏅᎩᏃ-ᏗᎦᏅᏌᏗ ᎠᏥᏴᎩᏅᎩ, ᎠᎴ ᎠᎦᏠᏯᏍᏔᏅᎩ ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎾᏍᎩ ᎠᎦᏔᎲ ᎤᏍᏆᏂᎪᏗ ᏥᏚᎸᏫᏍᏓᏁᎲᎩ, ᎾᏍᎩ ᏥᏕᎦᎶᏄᎮᏗᏍᎬᎩ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏤᎵ ᎤᏓᏰᎸᏙᏗ ᏗᎨᏥᏰᎸᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏣᎦᏟᎶᏍᏔᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ. ᎯᎠ ᎾᏍᎩ ᎢᏧᎳ ᏗᎬᏅᏃᏛ ᏫᎡᎨᎦᏓᎢᏅᏒᎩ ᎠᏥᎸ ᏨᏓᎸ ᎾᎿ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᏗᏓᏪᎳᎩᏍᎬᎢ. ᎢᏨᏲᏎᎭ, ᎾᏍᏉᏍᎩᏂ ᎤᏟᎯᏳ ᎾᎾᎵᎮᎵᎨᏍᏗ ᎦᎸᎳᏗ ᏦᏒ ᏌᏉ ᎠᏍᎦᎾ ᎦᏁᏟᏴᏍᎨᏍᏗ ᎤᏓᏅᏛᎢ, ᎡᏍᎦᏉ ᎢᏴᏛ ᏐᏱᏁᎳᏍᎪᎯ ᏐᏱᏁᎳᎦᎵ ᎢᏯᏂᏛ ᎤᎾᏓᏅᏘ ᎠᏂᏍᎦᏯ ᏧᏂᏁᏟᏴᏍᏗ ᏄᎾᎵᏍᏓᏁᎲᎾ ᏚᎾᏓᏅᏛᎢ. ᎠᎴ ᎤᏣᏘ ᎣᏏᏳ ᎠᎩᏰᎸᏎᏍᏗ ᎠᏆᎫᏴᎯᏓᏍᏗᏱ ᎠᎴ ᎠᏋᏒ ᎠᏆᏗᏒᎲᏍᏗᏱ ᏗᏣᏓᏅᏙ ᏕᏥᏍᏕᎵᏍᎬᎢ, ᎾᏍᏉ ᎧᏁᏉᎬ ᎢᏨᎨᏳᏒᎢ ᎤᎦᏲᎶᎯᏍᏗᏱ ᏱᏂᎬᏁᎭ ᏍᎩᎨᏳᏒᎢ. ᏛᏍᏆᏗᏰᏃ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎬᏗ ᎤᎵᏍᏗᏳ ᎾᏍᎩ ᏅᏛᏛᏁᎵ; ᎤᎵᏍᏗᏰᏃ ᏅᏛᏛᏁᎵ ᏄᏍᏛ ᏚᏭᎪᏔᏅ ᎡᎶᎯ. ᎠᏆᏙᎴᎰᏒᏃ ᏄᏍᎦᏅᏨᎾ ᎨᏒ ᏰᎵ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏩᏒ ᎣᎦᏍᏙᎢ ᏭᎲᏍᏔᏅ, ᏓᏇᎪᏔᏅ ᎠᎦᏘᏅᏍᏗᏱ. ᎠᏲᏓᏌᎲ ᏚᏰᏍᏛᏅ ᏧᏍᏆᏅᎾ, ᏚᏩᏇᏅᏔᏅ ᏧᎾᏍᏕᏥ ᏃᎴ ᏧᎳᏍᎩ, ᏚᎧᏁᎸ ᎤᎵᏎᏗ. ᎤᏁᏅᏎᏃ; ᎠᎴ ᎤᏂᏣᏖ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏎᎢ, ᎠᎴ ᎬᏩᏁᏄᎳᏍᏗᏍᎨᎢ. ᎠᏎᏃ ᏑᎾᎴ ᏄᎵᏍᏔᎾ ᎠᎧᏔᎮᎢ ᎫᏩᏟᏫᏛᏗ ᏱᎨᏒᎾ. ᏚᏂᏅᏒᎩᏃ ᏤᏙᎲ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ ᎠᎴ ᎡᎶᏛ ᎨᏩᏍᏕᎵᏍᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᎤᏙᎯᏳᎩᏯ ᎨᏒ ᏂᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏚᏳᎪᏛ ᏕᎭᏕᏲᎲᏍᎬᎢ, ᎥᏝ ᎠᎴ ᏴᏫ ᏱᏘᎾᏰᏍᎦ, ᎥᏝᏰᏃ ᏄᎾᏍᏛᏉ ᏴᏫ ᏱᏘᎸᏉᏙᎢ. ᎾᏃ ᏂᏓᎾᏤᎲᎾ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎥᏝ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎯ ᏯᎩᎭ; ᎠᏎᏃ ᎣᏏᏳ ᎬᏰᎸᏗ ᎨᏒ ᎬᏂᎨᏒ ᏂᎬᏁᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎠᎩᏙᎵᏨᎯ ᏥᎩ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎯ ᎢᏯᏆᎵᏍᏙᏗᏱ. ᏎᎦ ᎤᎴᏫᏍᏔᏁ ᏒᎧᏔ ᏧᎬ ᎭᏫᏂᏣ. ᎧᏴᏐᎵ ᏭᏭᏍᏔᏁ ᎦᏙ, ᎱᏩᏌᏙᏰ ᏃᎴ ᎤᏍᎪᏎ. ᏂᎦᏓᏃ ᎨᏒ, ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏏᏆ ᎠᏍᏚᏗ ᎤᎾᎦᏎᏍᏕᎢ. ᎭᏟᏃᎮᏔᏁ ᎠᏓᏅᏖᎵᏙ? ᎯᎠᏰᏃ ᎠᏇᏥ ᎤᏲᎱᏒᎯ ᎨᏒᎩ, ᏔᎵᏁᏃ ᎢᎡᎭ, ᎠᎴ ᎡᏓᏠᏨᎯ ᎨᏒᎩ, ᎢᎠᏥᏩᏛᎲᏃ; ᎤᎾᎴᏅᎮᏃ ᎣᏍᏛ ᎤᎾᏓᏅᏓᏕᎢ. ᎢᏍᎪᏂᏗᏢᏃ ᎥᏓᎵ ᏭᏂᎷᏤ ᎠᏂᎨᏕᎵ ᎤᎾᏤᎵᎪᎯ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᏰᎵ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏂᎦᏔᎯ ᏱᏓᎾᏠᏱᎦ ᎠᏏᏉ ᎤᏕᏒᏂᎸᎯ ᎤᏁᎳᏗᏙᎲᎢ? ᎠᏎᏃ ᎢᎦ ᏛᎵᏱᎶᎵ ᏓᎨᏥᏯᏅᎡᎵ ᎤᏕᏒᏂᎸᎯ, ᎩᎳ ᎿᏉ ᎠᎹᏟ ᏛᏅᏂ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᎢᏨᎨᏳᎢ ᎠᎴ ᎤᏣᏘ ᎢᏨᏯᏅᏘ, ᏍᎩᏯᎵᎡᎵᏍᏗᏍᎩ ᎠᎴ ᎠᏆᎵᏍᏚᎶᏙᏗ, ᏅᏩᏍᏕᏍᏗ ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ ᎤᎬᏫᏳᎯ ᎡᏣᎵᏍᎦᏍᏙᏛᎢ, ᎢᏨᎨᏳᎢ. ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏍᎩᏯᏘᏃᎮᎸ ᎯᎠ ᎠᏍᎦᏯ ᏴᏫ ᏚᎾᏓᏅᏛ ᏗᎴᎾᏍᏗᏍᎩ ᎾᏍᎩᏯᎢ; ᎬᏂᏳᏉᏃ ᏥᎪᎵᏰᎥᎯ ᏥᎩ ᎢᏥᎦᏔᎲᎢ, ᎥᏝ ᎪᎱᏍᏗ ᏱᏥᏩᏘ ᎤᏍᎦᏅᏨ ᎯᎠ ᎠᏍᎦᏯ ᎾᏍᎩ ᏄᏍᏛ ᎡᏧᎢᏍᏗᏍᎬᎢ; ᏗᎦᏅᏍᎨ ᎠᏎ ᏗᎬᏙᏗ. ᎢᏣᏅᏖᏍᏗ ᎾᏍᎩ ᏗᎹᏗ ᎢᏓᎵᏅᏟ ᎤᏁᎳᏛᎢ; ᎢᏳᏃ ᏂᎪᎯᎸᎾ ᎢᎦᎷᏨᎭ ᎢᏨᎭ ᎢᏨᎪᏩᏛᏗ ᎢᎨᏎᏍᏗ ᎾᏍᎩ ᎣᏍᏕᎮᏍᏗ. ᎾᏂᎦᏔᎲᎾᏰᏃ ᎨᏒ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎾᏟᏂᎬᏁᎲ ᎤᏂᏍᏓᏱᏗᏍᏗᏱ ᎤᏅᏒ ᎤᎾᏤᎵ ᎤᎾᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎥᏝ ᏧᎾᏓᏲᎯᏎᎸᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ. ᎠᎴ ᎢᏣᏙᎴᎰᎯ ᏧᎦᎾᏮ ᏗᎦᏃᎸᏗᏍᎬᎢ, ᎯᎠ ᏂᏥᏪᏍᎪᎢ, ᎤᏗᎴᎩᏳ ᎨᏎᏍᏗ; ᎠᎴ ᎾᏍᎩ ᏂᎦᎵᏍᏗᏍᎪᎢ. “ᏂᎦᏓ ᎯᏥᏴᎭᎦ,” ᏧᏛᏁᎢ ᎡᎶᏗ. ᏳᏕᎶᎰᏒᎾ ᎦᎸᎶ ᎤᏭᏌᎥᏍᎬ, ᎬᏂᎨ ᎤᏍᎪᎸ ᎦᏓᏁ ᏂᎦᎵᏍᏗᏍᎬ. “ᎦᏙᎲ ᎾᏅᏛᏁᎰ ᏱᏓᏚᎳᏑᏠᎾ ᎠᏂᏴᏫᏯ?” ᎤᏛᏁ ᏥᏍᏚ. ᏃᎴ ᎦᏅᎯᏛ ᎦᏐᎯ ᏃᎴ ᏕᎦᏄᎳᏥᏴ ᎡᏆ ᎤᏣᎾᏔ, ᏩᏏᏓᏂ ᎤᎸ, ᎤᏛᏅᎢᏍᏔᎾ ᎤᏓᏛᏂᏍᏘ, ᎠᏍᎪᎵ ᎭᏫᏂᏨ ᎤᏩᎭᏂᎴ, ᏅᏯ ᎬᏘ ᎤᎯᏐᏁ, ᎠᏓᏄᏖᏲᎮ ᎠᏍᎪᎵ ᎤᏲᏣᏃᏅ, ᏧᏆᎶᎬ. ᎬᏍᏗᏰᏗᎭ ᎠᏇᏥ ᎣᏂᏏᎹ ᎤᎬᏩᎵᎾᏍᎩ ᎥᏆᎸᎢᏛ ᎨᏒ ᎠᏆᏕᏁᎸᎯ ᏥᎩ. ᏔᎵᏁ ᎤᏩᎭᏂᎴ ᏤᎩ ᎠᏯᏖᎥ ᎢᏣ ᎤᏣ ᎪᏍᏔᏴ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ, ᎦᏙᏃ ᏙᎭᏠᏱᎭ? ᎦᎪ ᎯᏲᎭ? ᎠᏫᎡᏗᏱ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏪᎵᏒᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᏍᎦᏯ, ᎢᏳᏃ ᏂᎯ ᎯᎾᏫᏛᎮᏍᏗ, ᏍᎩᏃᎲᏏ ᏫᏅᏅᎢ, ᎠᏴᏃ ᏓᏥᎾᏫᏛᎯ. ᎾᎿᏃ ᏥᏳᎯ ᏭᎾᏣᏅ ᎥᏘᎣᎩ ᏭᏂᎷᏤᎢ, ᎾᎿ ᏗᎨᏥᏲᏒᎯ ᏥᎨᏎ ᎤᏁᎳᏅᎯ ᎤᏂᏙᎵᏍᏗᏱ, ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎾᏍᎩ ᎿᏉ ᎤᏂᏍᏆᏛᎯ ᏥᎨᏎᎢ. ᎭᏓᏅᏗᏍᏗᏍᎨᏍᏗ, ᎭᏓᏅᏗᏍᏗᏍᎨᏍᏗ!” ᎤᏛᏁ ᏌᏌ. ᎤᏍᎦᏃᎵ ᏭᎷᏤ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏛ ᏃᎴ ᎤᎵᏒᏍᏔᏁᎢ, ᎤᎦᏛᏁ ᎪᎱᏍᏗ ᏳᏅᏓ ᎢᎦ ᎤᎵᏍᏔᏴᏗ. ᎢᏳᏃ ᎰᏩ ᎡᏣᏛᎦᏁᎸᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎢᏤᏲᏅᎯ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏳᎪᏛ ᎤᏪᎲ ᏥᏌ; ᎢᏳᏍᏗᏉ ᎨᏒ ᎠᎾᏛᎩᏍᎪ ᏗᏂᏲᏟ. ᎠᏎᏃ ᎠᎬᏱ ᎨᏒ, ᎨᏍᏗ ᏱᎪᎵᎦ ᎭᎾ ᎤᏙᎴᏋ ᏧᏏᎳᏛᏗ ᎧᏅᏂᏍᎩ. ᎠᎫᏍᎨᏂ ᎢᏴ ᎤᏍᎪᏒ, ᏭᎳᎩᏒ ᎤᎾᏍᏕᏥ, ᎾᏍᎩᏯ ᎠᏧᎲᏍᎩ ᏱᏭᎾᎩᏒ ᏌᏬᏚᎭ ᎠᎼ ᎦᎨᏛ ᏧᎵᏍᏔᎾᎵ. ᏣᎪᎨ ᎠᏴ ᎠᎴ ᏆᏂᏆ ᎣᎩᏅᏒ, ᎥᏝ ᏲᎩᏂᎭ ᎣᎩᏂᏲᎯᏍᏙᏗᏱ ᎪᎱᏍᏗ ᎣᏍᏓᏛᏁᎲᎢ? ᎯᎠ ᎾᏍᎩ ᎤᏂᎭ ᎦᎸᎳᏗ ᎤᏂᏍᏚᏗᏱ, ᎾᏍᎩ ᎤᎦᏅᏗᏱ ᏂᎨᏒᎾ ᎠᎾᏙᎡᎰᏍᎬ ᎢᎪᎯᏛ; ᎠᎴ ᎤᏂᎭ ᎠᎹᏱ ᏚᏪᏯᏗᏒ ᎩᎬ ᎢᏧᏅᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏅᏂᏐᏗᏱ ᏂᎦᎥᏉ ᎤᏕᏯᏙᏗ ᎨᏒ ᎡᎶᎯ ᎤᎷᏤᏗᏱ ᎢᎦᎢᏉ ᎠᏁᎵᏍᎬᎢ. ᎾᏍᎩᏃ ᎦᏁᎵᏛ Ꭸ-Ꮢ ᎢᏳᏍᏗ, ᎤᏪᎷᏅᎩ ᎠᎴ ᎤᎾᏄᎪᏫᏏᏕᎾ ᎨᏒᎩ, ᎠᎴ ᎡᎯᏍᏗ ᎤᏓᏅᏛ ᎤᏚᎵᏍᎬᎩ ᎤᎾᏄᎪᏫᏍᏗᏱ [ᎠᏰᎵ.] ᎾᏍᎩᏃ ᎦᎵᏉᎩ ᎠᎾᎵᏅᏟ ᎠᏁᎲᎩ; ᎢᎬᏱᏃ ᎡᎯ ᎤᏕᏒᏅᎩ, ᎠᎴ ᎤᏲᎱᏒᎩ ᏧᏪᏥ ᎾᏁᎲᎾ. ᏰᎵᏉ ᎠᎪᏩᏛᏗ ᏓᏦᏍᎬ ᎦᎸᎶ ᏃᎴ ᏚᏅᏓᏒ, ᏃᎴ ᎠᏕᎶᎰᎯᏍᏗ ᎢᎪᎯᏓ ᏂᏚᏍᏛ ᏚᏅᏓᏒ. ᎨᏍᏗ ᏱᎦᏕᎶᎣᏍᎦ ᎫᏩᎵᏍᏕᎶᏙᏗ ᎨᏒ ᎠᏍᎦᏯ ᎤᏩᏌ, ᏁᎳᎩ ᎤᏂᏍᏈᏍᏓ ᎤᎾᎵᏗᎩᏛ. ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎩᎶ, ᏣᎬᏫᏳᎯ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᎾᏍᏉ ᎠᏴ ᏣᏍᏕᏅᏨ ᏱᏗᏧᎪᏗᎭ. ᏥᎮᎾ, ᎠᎴ ᏞᏍᏗ ᎢᎸᎯᏳ ᎿᏉ ᏱᏣᏍᎦᏅᏤᏍᏗ. ᎯᎸᎯᏨ ᎧᎸᎬ ᎢᏣ ᎠᎾᎢᏒ, ᏚᏂᏐᏤ ᎠᏥᎶᎥ, ᎭᎾ ᏧᏂᎯᏰ ᏣᎳᎩᏱ ᎠᏰᎵ ᎠᎹᏰᎵ ᎤᏂᏴᎴ, ᎤᎾᎵᏓᎩᏛ ᏄᎾᎵᏍᏔᏁ. ᏐᏉ ᎢᎦ ᎡᏆ ᏅᏯ ᎤᎵᏗᏨ ᎠᏓᏬᏍᎬ ᎤᎪᎮᎢ ᎤᏍᏗ ᎠᏔᎴᎦᏒ ᎠᎹ ᎦᏁᎲᎢ ᏫᎦᎶᏍᎨᎢ. ”ᎭᏛᎦᎦᏧ ᎤᏰᎸᎲ ᎠᏂᏬᏂᏍᎬ ᏗᎦᎾᏌᎢ?” ᎤᏰᏤ ᎡᎶᏗ. ᎡᎳᏗ ᏭᏁ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎩᎶ ᏳᏂᏆᏘᎮᏍᏗ; ᏅᏩᏙᎯᏯᏛᏉᏍᎩᏂ ᏤᏣᏂᎩᏍᏔᏅᎭ, ᎾᏍᎩ ᎠᏴ ᎠᎩᎷᏤᏗᏱ; ᏥᎦᏖᏃᎭᏰᏃ ᎤᎷᎯᏍᏗᏱ ᎠᎾᎵᏅᏟ ᎠᏂᎷᏨᎭ. ᎠᎴ ᎤᎵᏍᏗᏳ ᎢᏍᏕᎾ ᏫᏗᏍᏗᏃᎲᏏ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏕᎤᎴᏅ ᎤᏲᎱᏒᎢ; ᎠᎴ ᎬᏂᏳᏉ ᎢᎬᏱ ᎨᎵᎵ ᏅᏓᏰᏏ, ᎾᎿ ᏓᏰᏥᎪᎢ. ᎬᏂᏳᏉ ᎢᏍᏛᏃᎲᏏ. ᎠᏎᏃ ᎿᏉ ᏗᏆᎴᏅᎯ ᎨᏎᏍᏗ, ᎢᎬᏱ ᏓᏨᏰᏅᎡᎵ ᎨᎵᎵ ᎢᏴᏛ. ᎥᏝ ᏱᏥᏲᏍᏗᏎ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎢᏳᏰᏃ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᏴᏗᏓᎴᎲᏍᎦ, ᎿᏉ ᎦᎶᏁᏛ ᎠᏎᏉᏉ ᏳᏲᏞᏒ. ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏱᏣᏓᏁᎮᏍᏗ ᎠᏂᎦᏔᎲ ᏴᏫ ᎨᏥᎪᏩᏛᏗᏱᏉ ᏱᏥᏰᎸᏍᎨᏍᏗ, ᎢᏳᏰᏃ ᎾᏍᎩᏉ ᏱᏄᏍᏗ ᎥᏝ ᏴᎨᏣᎫᏴᏏ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ. ᏣᏁᎫ! ᎾᏍᎩ ᏥᏫᏍᎪᎢ ᎥᏝ ᏴᎬᎵᏰᎲᎦ ᎬᏂ ᎤᎪᎯ; ᏗᏓᎴᏂᏍᎬᏍᎩᏂ ᎤᏪᏢᏅᏅᎢ, ᎤᏁᎳᏅᎯ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏪᏢᏁᎢ. ᎤᏙᏓ ᏚᎧᎾᏁ. ᏤᏥᎾᏝᎢ, ᏕᏦᎯᏳᏎᏍᏗ ᏗᎨᏥᎾᏝᎢ ᎤᎶᏘ ᎦᎾᏰᎯᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ; ᎥᏞᏍᏗ ᎠᏃᏍᏛ ᎠᎴ ᎤᎾᏓᏅᏘ ᎤᏅᏒ ᏱᏗᏦᎯᏳᏎᏍᏗ, ᎾᏍᏉᏍᎩᏂ ᎤᏂᎾᎸᏣᏘ. ᎤᎾᎵᎪᏒᎢᏍᎩᏂ Ꮭ ᏱᏥᏲᎵᏤᎢ ᎠᏎᏃ ᏫᎦᏥᏯᏢᏔᎭ ᎠᏆᎴᏫᏍᏔᏅ ᎤᎾᏦᏗ ᎤᎬᏩᏟ. ᏥᏍᏆᏯ ᏧᎶᎸᏗ ᎦᏁᏥᎢ ᎤᎷᏤ ᏚᏃᎩᏎ. ᎾᏍᎩ ᏣᏓᏁᎳᏅᎯ ᏥᎩ ᎾᏂᎥ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎠᏎᏃ ᎤᏕᎶᎰᏒ ᎦᎳᎱᏂ ᎦᏲᏟ ᏓᏆᎵᎬᏩᏢ, ᎠᎴ ᎪᎰᏍᏗ ᎤᎵᎮᎵᏍᏙᏗ. ᎾᏍᎩ ᎤᏣᏘ ᎤᏁᏉᏨᏍᏗᏱ ᎢᏣᎵᎮᎵᎬ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ, ᎾᏍᎩ ᏔᎵᏁ ᏫᏨᎷᏤᏗ ᎨᏒ ᎢᏳᏍᏗ. ᎾᏍᎩᏃ ᎠᏍᎦᏂ ᎨᏒ ᏂᏗᏥᎾᏝᎥᎾ ᏥᏄᎵᏍᏔᏅ, ᏚᏳᎪᏛ ᎨᏒ ᏗᏥᎾᏝᎢ ᏄᎵᏍᏔᏅᎩ. ”ᏰᎵᏉ ᏱᏥᏏᎳᏛᎥᎦ ᏯᏆᏁᎸᏔᎾ,” ᎤᏛᏁ ᏫᎵᎻ, ᎠᏨᏇᏍᎨ. ᎰᎻ ᎣᏍᏓ ᎤᎦᏎᏍᏗᏕᎨ ᏫᎵᎻ ᎬᏅᎢ ᎢᎪᎯᏓ, ᏃᎴ ᏧᎵᎢ ᏃᎴ ᎠᏂᎸᏉᏗᏍᎩ ᎠᏂᏩᏛᎯᏙᎮ ᎢᏳᏓᎵᎭ, ᎨᏍᏗ ᎩᎶ ᏳᏩᎨᏫᏍᎨ ᎾᏍᎩᏴ ᏣᎵᏓᎪᎾᏗᏍᎨᎢ ᏃᎴ ᎤᏍᏆᏂᎩᏗ ᏣᏓᏴᎳᏔᏍᎨᎢ ᏓᏏᎳᏛ. ᎠᏎᏃ ᏚᎾᎴᏁ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎤᎾᎵᎪᏒ ᎠᏁᎳ ᎾᏍᎩ ᎤᏃᎯᏳᏅᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏎ ᏗᎨᏥᎤᏍᏕᏎᏗ, ᎠᎴ ᏗᎧᏁᏤᏗ ᏧᏂᎧᎿᏩᏛᏍᏗᏱ ᎼᏏ ᎤᏁᏨᎯ. ᎢᏳᏃ ᎩᎶ ᎠᏥᎤᏍᏕᏎᎸᎯ ᎠᏥᏯᏂᏍᎨᏍᏗ, ᏞᏍᏗ ᎾᏥᎤᏍᏕᏎᎸᎾ ᏱᏄᎵᏍᏔᏁᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᎨᏒ ᎠᏥᏯᏂᏍᎨᏍᏗ, ᏞᏍᏗ ᏯᏥᎤᏍᏕᏎᎴᏍᏗ. Ꮒ! ᏗᏐᎢ ᏕᏧᎬ ᏚᏂᏲᎰᏎᎴ ᏧᏆᎶᎦ. ᎯᎠᏃ ᎢᎪᎯᏓ ᎢᏤᎯ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙ ᏣᏚᎷ ᎬᏯᏛᏁᏗᏱ? ᏗᎨᏫᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎥᎠᎩᎪᏩᏛᏗᏱ [ᎠᏆᏚᎵᎭ.] ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ, ᎢᎩᏣᏘ ᏥᎩ, ᏌᏉᏉ ᎠᏰᎸ ᏂᏓᎵᏍᏗᎭ ᎦᎶᏁᏛ ᏕᏓᏁᎶᏛᎢ, ᎠᎴ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎢᎦᏚᏓᏕᏫᏒ. “ᎤᏙᏳᎯ,” ᎤᏛᏁ ᎦᏂᎦᏔ. ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ ᎱᏁᏅᏎ ᏗᏂᏲᏟ. ᎠᏎᏍᎩᏂᏃᏅ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᎲᎩ ᎠᏓᏫ ᏤᎮ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎼᏏᏃ ᏤᎮ ᏫᎬᏍᏘ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏁᎲ ᏄᏂᏍᎦᏅᏨᎾ ᎨᏒ ᎾᏍᎩᏯ ᏄᏛᏁᎸ ᎤᏍᎦᏅᏨ ᎠᏓᏫ, ᎾᏍᎩ ᎤᎷᎯᏍᏗ ᏥᎨᏒ ᏣᎦᏟᎶᏍᏙᏗ ᏥᎨᏎᎢ. ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᎠᎴ ᏂᎦᏛ ᏗᏂᎳᏫᎩ ᎤᏂᏲᎴ ᎦᏰᎪᎩ ᎤᏂᏃᎮᎸᎯ ᏥᏌ ᎤᏡᏗᏍᎩ, ᎾᏍᎩ ᎤᏂᎯᏍᏗᏱ ᎤᎾᏚᎵᏍᎨᎢ; ᎢᎦᏚᎵᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪᎢ; ᏕᏣᏓᎯᎰᎢ ᎠᎴ ᎢᏤᎵᎯᏍᎪ ᎢᏥᏩᏛᏗᏱ ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪᎢ; ᏕᏣᎵᎰᎢ ᎠᎴ ᏓᎿᏩ ᎢᏤᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏂᏥᏔᏲᎯᎲᎾ ᎨᏒᎢ. ᎢᎦᏓ ᎤᏁᎦ ᎤᏂᏁᎦᎵ ᎤᏁᎾᎢ ᎠᏂᏴᏫᏯ ᎤᎾᏓᏅᏖᎴ ᎤᎾᏖᎳᎩᏍᏗ ᎠᏂᏣᎳᎩ, ᎤᎾᏓᏑᏲᏗ ᎠᏂᏳᏩᏁᎦ, ᎠᏎᏃ ᏚᏓᏦᎯᏍᏛ ᏣᏥᏯ, ᏓᏂᏂᏱᏍᎨ ᏧᎾᎵᎩᏛ, ᎠᏎᏉ ᏂᎦᎥ ᏴᏫᏯ ᎩᎦ ᎤᏂᏁᎯ, ᏓᏂᎦᎯᏴᏍᎨ ᏭᏕᎵᎬ ᎢᏣ, ᏧᏚᎪᏓᏁᏗ ᎢᏳᏍᏗ ᏂᎨᎬᏁᎮ. (ᏂᎦᏛᏰᏃ ᎾᏍᎩ ᎤᎾᎵᏛᏙᏗ ᎪᎱᏍᏗ ᏕᎲᏗᏍᎬ ᎢᏳᎢ;) ᏓᏆᎴᎳ ᎠᏍᏚᏗ ᎤᏬᏢ ᎠᏂᎩᏍᎬ, ᎠᏰᎴᎩ ᏕᎦᎾᏤᏍᏗᏍᎬ ᏧᏔᎾᎶ ᏃᎴ ᏗᏯᏖᏅ ᏚᏃᏴᎬ ᏌᏬᏚ ᏕᎦᎶᏍᎬ ᏕᎦᏆᏛ. ᎠᎴ ᎢᏍᏛᎨᏳᎢ ᎠᏈᏯ, ᎠᎴ ᎠᎩᏆ, ᎢᏧᎳᎭ ᎢᏗᏩᏫᏍᎩ, ᎠᎴ ᏧᎾᏁᎶᏗᎤᎾᏓᏈᎬ ᎯᏁᎸᎢ; ᎬᏩᏠᏨᏃ ᎢᎤᎾᏨᏎᎢ ᏥᎷᏏᎵᎻ ᏭᏂᎶᏎ ᎬᏩᏲᎮᎢ. ᎠᎯᏓ ᏄᎳᏍᏓᏁᎮ ᎤᏗᏍᎦᎳᏗ ᎾᏍᎩ ᎤᏓᎾᎢᏍᏙᏗ ᏐᎢ ᎤᏐᏅᏅᏍᏙᏗ. “ᎡᎭ, ᏒᎦᎾᏲᎪ!” ᎤᏪᎷᏁ ᎰᎻ, ᏂᎦᏓ ᎦᏓᏁ ᎨᏎ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᏁᎩ ᎠᏍᏓᏯ ᎢᏳᏅᏁᏗᏱ ᎠᏤᎵᏍᏛᎢ ᏦᎢᏁ ᎢᎦ ᎢᎪᎯᏛ, ᎬᏩᏍᏓᏩᏗᏙᎯᏰᏃ ᏒᏃᏱ ᏯᏂᎷᎩ ᏱᎬᏩᏃᏍᎩ, ᎯᎠᏃ ᏱᏂᏓᏂᏪᏏ ᏴᏫ; ᏧᏲᎱᏒ ᏙᎤᎴᏅ; ᎣᏂᏱᏃ ᎤᎾᏠᏄᎮᎸᎢ ᎤᏟ ᎤᏲᎢᏳ ᏱᎩ ᎡᏍᎦᏉ ᎢᎬᏱᏱ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᎤᎾᎵᏍᏓᏴᏅᎯ ᎾᏍᎩ ᎤᏛᎦᏅ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎿ ᎬᏩᎵᏍᏓᏴᏗ ᏂᎦᎵᏍᏓᏅᎭ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎾᏍᏉ ᎤᎾᏙᏓᏆᏍᎬ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵᎦ. ᏧᏙᏓᏋᏓ ᏕᎦᎶᏍᎬ, ᎠᏛᏍᎨᎢ ᏫᎵᎻ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎼᏏ ᎿᏉ ᎤᏔᏅ ᏄᎵᏍᏔᏅ ᎤᏲᎢᏎᎴᏉ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ, ᎤᏪᏥ ᎠᎪᏎᏗᏱ; “ᎠᏯᏗ ᏍᏉ,” ᎱᏛᏁᎢ ᏄᏓᎴ ᏂᎦᏪᏍᎬ. ᎤᏛᏐᏅ. ᎯᎠ ᎾᏍᎩ ᏥᏂᏥᏪᎭ ᎥᏝ ᏗᏨᏳᎪᏓᏁᏗᏱ ᏯᎩᏰᎸᎭ; ᎦᏳᎳᏰᏃ ᎯᎠ ᏥᏂᎠᎩᏪᏒ, ᏦᎩᎾᏫᏱ ᎢᏥᏯᎠ, ᎣᎦᏛᏅᎢᏍᏗᏉ ᎢᏧᎳᎭ ᏗᎩᏂᏲᎱᎯᏍᏗᏱ, ᎠᎴ ᎢᏧᎳᎭ ᎢᎦᏕᏗᏱ. ᏐᏉ ᎢᎦ ᎤᏂᏴᎮ ᏧᎶᎸᏗ ᏩᏁ ᎦᏅᏍᏔ ᎪᏍᏔᏰ ᎬᏘ, ᎤᏍᏗ ᎤᏬᏔᏁ ᎤᏬᏰᏂ ᎢᎬᏓ, ᎦᏚᎢᏣ ᎤᎪᎲᏍᏔᏁ. ᎾᏍᎩᏯᏉᏰᏃ ᎩᎶ ᎠᏍᎦᏯ ᎢᏅᏥᏮᏗᎦᎶᏏᏎᎢ, ᎠᎴ ᏥᏫᏚᏯᏅᎮ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏥᏚᏲᎯᏎᎴ ᎤᎿᎥᎢ. “ᏙᏕᏣᏙᎠ?” ᎤᏛᏛᏁ ᏫᎵᎻ, ᎤᏩᏃᏫᏍᎨ ᎠᎵᎮᎵᎬ. “ᎣᏍᏓ, ᎠᎦᏗᏓ ᎣᏍᏓ ᎠᎩᏰᎸᎭ,” ᎤᏛᏁ ᏦᎢᏁ ᎧᏅᏂᏍᎩ. ᏂᎦᏓ ᎡᎾᎢ ᏓᎦᎵᏬᏥ ᎯᎸᎢᏴ. ᎥᏝ, ᎾᏍᎩᏍᎩᏂ ᎠᏰᎸ ᏤᎯ ᎤᏟ ᎢᏗᏩᎾᎦᎳ ᏥᏅᏩᏍᏙᎢ, ᎾᏍᎩ ᎤᏟ ᎤᎵᏍᎨᏛ ᎨᏐᎢ. ”ᏓᎨᏣᎵ. ᏌᏉᏉᏰᏃ ᎡᎭ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏌᏉ ᏗᎪᎯᏍᏗᏍᎩ ᎠᏰᎵ ᏗᎴᏁᎯ ᎤᏁᎳᏅᎯ ᎠᎴ ᏴᏫ, ᎾᏍᎩ Ꮎ ᏴᏫ ᏥᏌ ᎦᎶᏁᏛ; ᎣᏌᏯᏃ ᏦᏓᎻ ᎤᏕᏁᎴᎢ; ᏦᏓᎻᏃ ᎡᎭᏏ ᎤᏕᏁᎴᎢ; ᎡᎭᏏᏃ ᎮᏏᎦᏯ ᎤᏕᏁᎴᎢ; ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ, ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏧᏪᏢᏅᎯ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏬᏢᏅᎢ? ᎦᎸᎳᏗᏰᏃ ᏗᏆᏠᎣᏒ, ᎥᏝ ᎠᏋᏒ ᎦᏓᏅᏖᏍᎬ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ, ᎠᏓᏅᏖᏍᎬᎢᏍᎩᏂ ᎾᏍᎩ Ꮎ ᏅᏛᎩᏅᏏᏛ. ᎢᏥᏍᎦᏯ ᎢᏏᎵ ᏧᏪᏥ ᎢᏣᏛᏓᏍᏓ ᎯᎠ ᏥᏁᎬᎢ. ᏥᏍ ᎾᏎᎵᏗ ᎡᎯ ᏥᎨᏒᎩ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᎢᏤᎲᎢ, ᎾᏍᎩ ᎤᏩᏗᏍᎬ ᎤᏓᎴᎯ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛᎢ ᏥᏚᎸᏫᏍᏓᏁᎸᎩ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᏥᏥᎦᏔᎭ, ᎿᏉᏃ ᏚᏬᏑᎴᎣᏁᎸ ᏧᎾᎳᏏᏕᏂ, ᎠᎴ ᎢᎤᏄᏬ; ᎠᎴ ᏔᎵᏁ ᎢᎤᏪᏅ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎦᏔᎭᏍᎪ ᎯᎠ ᎾᏍᎩ ᏥᏂᏨᏯᏛᏂᏏ? ᎡᏣᏯᏂᏍᎨᏍᏗᏍᎩᏂ, ᎮᎨᏍᏗ ᎠᎴ ᏣᏂᏏᎲᏍᎨᏍᏗ ᎡᎳᏗ ᎨᏒ ᏗᏂᏢᏗᏱ; ᎾᏍᎩᏃ ᏫᏣᏯᏅᏛ ᎦᎷᎨᏍᏗ, ᎯᎠ ᎢᏳᏣᏪᏎᏗ ᏱᎩ, ᎩᎾᎵᎢ, ᎦᎸᎳᏗᏢᏍᏙᏗ ᏫᎶᎯ; ᎿᏉ ᎡᏣᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᏂᎦᏔᎲ ᎢᏧᎳᎭ ᎢᏥᏂᏜᎢ [ᏗᎵᏍᏓᏴᏗᏱ.] ᎤᏠᏱᏉ ᏦᎩᎭ ᎠᏓᏅᏙ ᎪᎯᏳᏙᏗ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩᏯ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎠᏉᎯᏳᏅ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᏁᏨ; ᎠᏴ ᎾᏍᏉ ᎣᏦᎯᏳᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎣᏥᏁᎦ. ᎠᏍᏆᏓ ᎠᎴ ᎠᏴᎥᏝ ᏱᏥᎦᏔᎮᎢ; ᎠᏎᏃ ᎾᏍᎩ ᎾᏅᏛᎩᏅᏏᏛ ᎠᎹ ᏗᏆᏓᏬᏍᏙᏗᏱ ᎾᏍᎩ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎩᎶ ᎯᎪᎥᎭ ᎠᏓᏅᏙ ᎠᏁᏡᎲᏍᎬᎢ ᏚᎩᎸᏨᎭ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏗᏓᏬᏍᏗᏍᎩ. ᎧᏂᎩᏛ. ᎯᎠᏰᏃ ᎾᏍᎩ Ꮎ ᎤᎾᏠᎾᏍᎩ ᎨᏥᏅᏏᏛ, ᎤᎾᏓᎵᏓᏍᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎦᎶᏁᏛ ᏧᏤᎵ ᎨᏥᏅᏏᏛ ᎠᎾᏤᎸᏍᎩ. ᎠᎳᏂ ᎤᏚᎵᏍᎨ ᎭᏫᏂ ᏗᎦᏁᏍᏔᎳᏗᏍᏗᏍᎩ ᎤᎪᏩᏛᏗ. ᎣᏏᏳᏰᏃ ᎣᎩᏰᎸᎭ ᏦᏥᏩᎾᎦᎳ ᏥᎨᏐᎢ, ᏂᎯᏃ ᏥᏕᏣᎵᏂᎬᎪᎢ; ᎯᎠᏃ ᎾᏍᏉ ᎣᎦᏚᎵᎭ, ᎾᏍᎩ ᏂᏥᎪᎸᎾ ᎢᏣᎵᏍᏙᏗᏱ. ᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎤᏁᏅᏒᎩ ᏭᏂᏃᎮᎸᎩ ᎢᏳᎾᏛᏁᏗᏱ ᎤᏂᏌᏛᏗᏱ ᎦᏬᏂᏍᎬᎢ. ᎠᎴ ᎾᎿ ᏂᎦᏗᏳ ᎤᎾᏓᏟᏌᎲᎢ, ᎠᎴ ᎢᎬᏱ ᎤᎾᏕᏅᎯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩ [ᏚᎾᏙᎥ] ᎦᎸᎳᏗ ᏥᏕᎪᏪᎳ, ᎠᎴ ᎾᎿ ᎤᏁᎳᏅᎯ ᏂᎦᏗᏳ ᏗᎫᎪᏓᏁᎯ [ᎡᎲᎢ,] ᎠᎴ ᎾᎿ ᏧᎾᏓᏅᏙ ᎤᎾᏓᏅᏘ ᏴᏫ ᎾᏂᏍᎦᏅᎾ ᎢᎨᎬᏁᎸᎯ [ᎠᏁᎲᎢ,] ᏥᏌᏃ ᎯᎠ ᏂᏑᏪᏎᎸᎩ; ᎢᏦᎵᎩᏧ ᏂᎦᏛ ᎯᎠ? ᎥᎥ, ᏣᎬᏫᏳᎯ, ᎥᎬᏬᏎᎸᎩ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎠᏓᎵᏅᏟ, (ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎠᏂᎦᏔᎯ ᎦᏥᏬᏁᏗᎭ,) ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎾᏝᎥ ᏴᏫ ᏂᎪᎯᎸ ᎡᎲᎢ? ᎯᎪᎢᎦ ᎯᎠ ᏥᏍᏆ ᎦᏯᎪᎦ ᏍᏆᎳ ᎦᎾᎪᎢ ᏃᎴ ᎯᎠ ᎠᏂᏣᎳᎩ ᎭᏂᎧᏔ ᎦᏯᎪᎦ ᎨᏒᎢ. ᏣᏄᏏ ᎤᎷᏣ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ ᎠᏰᎯ, ᎭᎾᎾ ᎯᎦᏙᎨ ᎤᏬᏚ ᏏᏆ, ᏃᎴ ᎦᎸᎳᏗᏣ ᎯᎪᏪᎴ ᎤᏣᏓ ᎣᏍᏓ. ᏌᎳᏓ ᏚᏂᎬᎦ ᏗᏤ ᎠᏓᏅᏖᎸ ᎢᏳᏍᏗ ᎤᏬᏪᎶᏗ ᏚᏏᎳᏛᎢ ᎤᏍᏆᏂᎪᏙᏗ ᏫᎵᎻ ᎬᏅᎢ.” ”ᏗᏁᎸᏙᏗᎩ? ᎠᏴ ᎾᏍᎩ ᎪᎯ ᎨᏒ ᏥᎦᎵᎡᎵᎦ ᎢᏨᎩᎵᏲᏤᎲᎢ, ᎠᎴ ᏥᏥᎧᎵᏏᏏ ᎠᏏ ᎤᏃᏒᎢ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨ ᎾᏍᎩᏯ ᎠᎩᏇᏓᎸ ᏥᎩᎵᏲᎬᎢ, ᎾᏍᎩ ᎠᏰᎸ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏥᎩ; ᎤᏅᏌ ᏣᎵ, ᏁᏂᏏ ᏃᎴ ᏧᎾᏛᎾ ᎠᏂᏧᏣ, ᏅᏙ ᎠᏰᎵ ᏤᎩ ᏃᎴ ᎶᏩᏂ. ᎤᏂᏣᏘᏃ ᎠᏍᏓᏯ ᎤᎾᎵᏍᏕᎢ, ᎤᎾᎴᏅᎮ ᎤᏂᏔᏲᎴ ᎾᏍᎩᏯ ᏂᏚᏛᏁᎸ ᏧᏩᎫᏔᏅᏒ ᎢᏧᏛᏁᏗᏱ. ᎠᎾᎵᏅᏟᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎨᏣᏍᏓᏩᏗᏙᎯ ᎾᏍᏉ ᎠᏂᎪᎲᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ. ᏎᎦᏨ, ᏭᎷᏤ ᎤᏍᏗ ᎠᎹ ᎦᏁᎲ ᎡᏆ ᏅᏯ ᎤᎵᏗᏨ. ᏗᎦᏓᏁ ᎢᏧ ᎵᏍᏔᏅ ᎨᏎ ᏧᎳᏑᎶ ᏭᏨᏔ ᎤᏙᏓ. ᎾᏍᎩ Ꮎ ᏨᏧᏠᎠᏎᎢ ᎾᏍᎩᏉ ᎾᏍᏉ ᏥᏚᎴᏁᎢ ᎦᎸᎳᏗᏢ ᏂᎦᎥ ᎦᎸᎶᎢ ᏕᎨᏌᏗᏒ ᏥᏭᎷᏤᎢ, ᎾᏍᎩ ᏧᎧᎵᎢᏍᏗᏱ ᏂᎦᎥ ᏄᏓᎴᏒ ᎪᎱᏍᏗ. ᎾᏍᎩᏃ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏣᏤᎵᎦ ᎢᏳᏩᏂᏌᏛ ᎠᏩᎾᎦᎳ ᏗᏍᏓᏓᏅᏟ ᏴᎬᏲᎱᎯ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᎯᏎᎸᎯ? ᎤᏛᎦᏁᎢ ᏫᎵᎻ ᎣᏍᏓ ᎾᏂᏪᏍᎬ ᎠᏂᏃᎮᏍᎬ ᏁᏆᎸ ᎡᏚᏥ. ᏉᎳᏃ ᎠᎴ ᏆᏂᏆ ᎾᏍᏉ ᎬᏁᏙᎮ ᎥᏘᏍᎩ ᏓᎾᏕᏲᎲᏍᎨᎢ, ᎠᎴ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᏉ ᎤᏂᏨᏖ ᏅᏩᎾᏓᎴᎢ. ᎿᏉᏃ ᏛᏂᎪᎯ ᏴᏫ ᎤᏪᏥ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸᎢ ᎤᎵᏂᎩᏛ ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᏅᏧᏛᎿᏗᏎᏍᏗ. ᎤᎵᏂᎩᏛᏃ ᏚᏁᏤᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗᏱ ᏂᎨᏒᎾ. Ꮟ ᏐᏉ ᎢᏳᏩᎫᏗ ᏭᏂᎷᏣ ᎠᏓᏁᎸ, ᏗᎦᎳᏛ ᏭᏂᎪᏩᏛᎮ ᎤᏔᏂᏓ ᏅᏯ. ᎾᏍᎩ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ ᎬᏩᏃᎮᎭ, ᎯᎠ ᎾᏂᏪᎭ; ᎾᏍᎩ ᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎾᏍᎩ ᏕᎤᏙᎥᎢ, ᎠᏥᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎤᏍᎦᏅᏨᎢ. ᏍᎩᏄᏍᏛ ᎧᏃᎮᏍᎬ ᎪᏪᎵ. “ᎭᎴᏫᏍᏔ ᏥᏕᎰᏒᏍᎦ ᏳᏙᎯᏳᎲᎾ!” ᏥᏌᏃ ᎾᏍᎩ ᎤᏙᎴᎰᏒ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏍᏗ ᎢᏦᎯᏳᎯ, ᎦᏙᏃ ᎢᏨᏒ ᎨᏒ ᎢᏥᏃᎮᎭ ᎠᎵᏍᏓᏴᏗ ᏂᏥᏰᎲᎾ ᎨᏒᎢ? ᎠᏴᏃ ᏧᏤᎵ ᎣᏥᏃᎮᏍᎩ ᎾᏍᎩ ᎯᎠ ᏄᏍᏛᎢ, ᎠᎴ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏁᎸᎯ ᏥᎩ ᎬᏬᎯᏳᎲᏍᎩ. ᎠᎬᏱ ᎠᏥᎳ ᎦᏆᎴᎳ ᏥᎦᏂᎩᏍᎬ, ᎦᎵᎡᎵᎬ, ᎠᎬᏱ ᎯᏍᎩᏍᎪ ᎢᏳᏥᎶᏓ, ᎠᎬᏱᏣ ᏩᏉᏢ, ᏙᏣᏟᏃᎮᏍᎬ ᎠᏥᎳ ᏓᏆᎴᎳ ᎠᏂᏅᏫᏍᏗᏍᎩ, ᎦᏥᏍᏕᎵᏍᎬ ᎠᏓ ᏓᏂᎳᏗᏍᎬ ᎠᏓ ᏗᎦᎳᏗᏍᏗ. ᎤᎾᎵᎮᎵᏤᏃ, ᎠᎴ ᎬᏩᏁᏤᎴ ᎠᏕᎸ ᏗᎬᏩᏁᏗᏱ. ᎠᎴ ᎩᎶ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ”ᏔᎵ ᎠᏗᏙᏗ ᎧᎵ ᎥᏳᎩ ᎠᎴᏫᏍᏗᎩ ᏃᎴ ᏩᏚᎵᏏ ᎦᏲᏟ ᎯᏁᎲᏏ,” ᎤᏛᏁ ᎰᎻ. ᎢᏣᏕᎰᎯᏍᏗᏍᎩ ᎯᎠ ᏥᏂᏥᏪᎠ. ᎰᏩᏍᎪ ᎥᏝ ᏰᎭ ᏂᏣᏛᏅ ᏌᏉᎤᏅ ᎠᎦᏔᎿᎢ ᏰᎵ ᏗᎬᏭᎪᏓᏁᏗ ᎠᏁᎵᏅᏟ ᏓᎾᏓᏰᎢᎵᏙᎲᎢ? ᎯᎠᏰᏃ ᎢᏳᏪᏛ ᏥᎩ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᎾᏍᏉ ᎯᎠ ᎢᏳᏪᏛ ᎢᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ; ᎾᏍᎩᏃ ᎢᏳᏃ ᏂᏣᏓᏲᏁᎸᎾ ᏱᎩ, ᎠᏎᏃ ᏱᏣᏓᎸ, ᎿᏉ ᏗᎧᎿᏩᏛᏍᏗ ᎯᏲᏍᏗᏍᎩ ᏄᎵᏍᏔᏅ. ᎣᏍᏓ ᎱᎵᏍᏓᏴᏁ ᏫᎵᎻ. ᎿᏉᏃ ᎤᏜᏅᏛ ᎠᏰᎵ ᎤᏃᏔᏅ, ᎠᎴ ᎢᏧᎳᎭ ᎤᎾᏅᏅ, ᏈᏓ ᎤᏪᏁ ᎠᏂᏅᎢ. Ꮟ ᎩᎳᎯ ᎭᏓᏅᏖᏍᎨ ᏏᏆ, ᏗᏕᏲᎲᏍᎩ ᎤᏛᏛᏁ, ”ᏲᎾ ᎤᏤᏍᏙ ᏙᏚᏙᎠ ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ ᏅᎩᏓᎵᏃ ᏍᎦᏚᎩ?” ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏪᎵᏍᏗ ᎡᎶᏗ. ᏣᏚᎵᎭᎨ ᎪᏪᎵ ᏦᏪᎶᏗ ᎩᏃᎯᏳᏅ? ᎠᏎᏃ ᎤᏩᎨᏫᏎ ᎭᏂᏣ ᎠᏍᏓ ᎯᎵᎯᏨ ᏭᎧᏁᏍᏗ, ᎨᏍᏗ ᏳᎵᏍᏕᎸᏙᏔᎾ. ᏭᏅᏥᎴ ᏃᎴ ᎤᏪᎯᏍᏔᏁᎴ ᏫᎵᎻ. ᎠᏎᏃ ᎤᏟ ᎢᎦᎢ ᏧᏃᏣᎶᎢᏍᏗᏱ ᏂᎨᏒᎾ ᏴᏫ ᎠᏁᎲᎢ, ᎤᎵᏂᎩᏛᏯ ᏗᏗᏍᎦᎩ ᏗᏗᏁᏥ, ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎯᎠ ᎾᏍᎩ ᏚᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎬ ᎩᎶ ᎤᏂᏬᏁᏙᏗᏱ ᏂᎨᏒᎾ. ᎠᏎᏃ ᎦᏙ ᎠᏗᎭ? ᎧᏃᎮᏛ ᎮᎲ ᎾᎥᏂᏳ ᏄᏍᏗᏕᎦ, ᎾᏍᎩ ᎯᎰᎵᏉ, ᎠᎴ ᏣᎾᏫᏱᏉ ᎡᎭ; ᎾᏍᎩ ᎯᎠ ᎧᏃᎮᏛ ᎪᎯᏳᏗ ᎨᏒ ᎧᏃᎮᏍᎩ, ᎾᏍᎩ ᎠᏴ ᏦᏣᎵᏥᏙᎲᏍᎦ; ᎨᏍᏗ ᎫᏓᎸᏉᏙᏗ ᏱᎩ ᎭᏂ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᏦᎯᏍᏙᏗ ᏗᎿᏬ ᏓᎿᏬᏍᎨ ᎢᎪᎯᏓ ᏃᏉ - “ᏑᎾᎴ ᏳᏗᏛᎭ ᏓᎿᏬᏍᎨ. ᎠᎴ Ꮼ ᎢᏓᎵᏅᏟ, ᎢᏨᏍᏗᏰᏗᎭ ᏗᏣᎦᏌᏯᏍᏙᏗᏱ ᏗᎦᎴᏅᏗᏱ ᎠᎴ ᎤᏓᎿᏍᏆᎶᏍᏗᏱ ᎢᏯᏅᏁᎯ, ᏗᎦᏘᎸᏍᏗᏱ ᏗᏕᏲᏅᎯ ᎨᏒ ᏄᏍᏛ ᏄᏍᏛ ᎢᏣᏕᎶᏆᎥᎢ; ᎠᎴ ᏕᏣᏓᏅᎡᎮᏍᏗ. ”ᏨᏌ ᏫᎪᏩᏔ.” ᎨᏍᏗ ᏐᏉ ᎢᏯᏔᏬᏍᏔᏅ ᏳᎦᏘᏓ ᏥᏍᏕᏥ. ᏂᎦᏗᏳᏃ ᎪᏢᏅᎯ ᎨᏒ ᎦᎸᎳᏗ ᎡᎲ, ᎠᎴ ᎡᎶᎯ ᎡᎲ, ᎠᎴ ᎡᎶᎯ ᎭᏫᏂᏗᏢ ᎡᎲ, ᎠᎴ ᎾᏍᎩ ᎠᎺᏉᎯ ᎠᏁᎲ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᏂᏯᎥᎢ, ᎠᏆᏛᎦᏅᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎣᏍᏛ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎠᎴ ᎾᏍᏉ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏂᎪᎯᎸᎢ. ᎠᎴ ᎦᎪ ᏚᏁᏤᎴ ᎠᏎᎵᏛᏍᎬ ᎾᏍᎩ ᎤᏂᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎤᏤᎵ ᎠᏣᏪᏴᏄᏍᏙᏗᏱ? ᏝᏍᎪ ᎾᏍᎩ ᏱᎨᏎ Ꮎ ᏄᏃᎯᏳᏒᎾ ᏥᎨᏎᎢ? “ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ,” ᎤᏛᏁ ᎦᏂᎦᏔ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎦᏅᎬ [ᎠᎵᏍᏓᏴᎲᏍᎬ] ᎦᎵᏦᏕ, ᎬᏂᏳᏉ ᎤᏂᏣᏛᎩ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎤᏂᎷᏨ ᎤᎾᏂᏢᏅᎩ ᎠᏂᏅᏜᎥ ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ. ᎠᏎᏃ ᏚᎷᏫᏍᏔᏁᎮ ᏧᏍᏆᏴᏍᏗ, ᏃᎴ ᏰᎵ ᏄᏩᏅᏓᎩᏎ ᏗᎦᏅᏙᏗ ᏃᎴ ᎦᏙᎯ ᏭᏁᎢ, ᏫᎵᎻ ᎦᏙᎬ ᎠᎬᏱᏣ ᏭᏁᎢ. ᎾᎿᏃ ᎾᎥᎢ ᎠᏫ-ᏗᏂᎦᏘᏯ ᎠᏁᏙᎮ ᎤᏜᏅᏛᎢ, ᎠᏫ ᏓᏂᎦᏘᏰ ᏒᏃᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ ᏂᎪᎯᎸᎢ, ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍ-ᎩᏃ ᏰᎵᏉ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎩ ᎬᏩᎾᏗᏫᏎᏗ, ᎠᎴ ᏴᏫ ᎤᏪᏤ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎬᏩᎾᎴᏗ ᎦᏰᏤᎵᏎᏗ ᏱᏂᎦᎵᏍᏓ ᎢᏳᏰᏃ ᏩᎦ ᏧᎾᎪᏅᏍᏓᎵ ᎤᏂᎩᎬ, ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᎩᎬ, ᎠᎴ ᏩᎦ ᎠᎩᏏ ᎤᎪᏅᎯ ᎪᏍᏚ ᏕᎨᏩᏅᏁᏗ ᏱᎩ ᎾᏍᎩ ᎤᏂᏇᏓᎸ ᎤᎬᏩᎵ ᎨᏒᎢ. ᎪᎯ ᎤᎵᏍᏆᎸᏗ ᏕᎨᏌᏗᏒ ᎢᎩᏁᏤᎸ ᎤᏪᏥ ᎤᏮᏔᏅ, ᎾᏍᎩ ᎤᏪᎧᏅ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᎾᏍᏉ ᎬᏗᏍᎬ ᎡᎶᎯ ᏚᏬᏢᏁᎢ; ᎤᏁᎵᏎ ᎣᎯᏍᏙᏗ ᏳᎾᏛᏅᎢᏍᏗ ᎤᎾᎵᏍᏙᏗ. ᎯᎠ ᏱᏂᎦᏪᏍᎨ ᏗᎦᏃᏣᏟ: ”ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ ᏃᎴ ᎠᏂᏔᎵ ᎤᎾᏗᏍᎦᏟ.” ᏧᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎨᏳᏎᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ, ᎲᏗᏍᎨᏍᏗ ᏂᎦᎥ ᏣᎾᏫ ᏣᎸᎢ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏙᎩ, ᎠᎴ ᏂᎦᎥ ᏣᎵᏂᎬᎬᎢ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏖᏗ ᎨᏒᎢ; ᎾᎥᏃ ᎢᏗᏍᏓᏓᎳ ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᎾᏍᎩᏯ ᏂᎨᏳᏎᏍᏗ. (ᎾᏍᎩ ᎥᏝ ᎣᏏᏳ ᏳᏰᎸᏁ ᎾᏍᎩ ᏄᏍᏛ ᏚᏄᎪᏔᏅ ᎠᎴ ᏄᎾᏛᏁᎸᎢ,) ᎠᎵᎹᏗᏱ ᎡᎯ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏂᏧᏏ ᎤᏂᏚᎲᎢ, ᎾᏍᎩ ᎾᏍᏉ ᎠᎦᏘᏰ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ,-- ᎢᎪᎯᏓ ᎢᎦ ᏒᎮᏱᏣ ᏪᏙᎰ ᎭᎾᏂ, ᏣᎨ? ᏍᎩᎾ ᎪᏍᏓᏱ ᎦᏰᏌᏗ ᏙᏳᏕᎦ ᎤᎶᏒᏍᏗ ᎤᏲᎢ ᏥᎨᏎᎢ ᏍᎩᎵ ᏤᎮᎢ ᎦᎸᎳᏗᏳ ᎦᏚᏏ. ᎠᏦᎳᏅᏃ ᏓᎬᎩᏄᎪᏫᏒᎩ ᏔᎷᏣᎩᎯ ᎬᏆᏦᏗ ᎬᏆᏠᎥᏔᏅᎩ ᎠᏐᏳᎶᏗ, ᎠᎴ ᏥᏯᏗᏫᏎᎸᎩ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏓᏓᏅᏟ, ᎥᏝ ᏱᎨᎵᏍᎨ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎢ; ᎯᎠᏰᏃ ᏥᏂᎬᏅ ᏥᎪᏪᎳ; ᏞᏍᏗ ᎤᏐᏅ ᏱᏁᏤᎮᏍᏗ ᏣᎦᏁᎶᏗ ᏗᏣᏤᎵ ᏴᏫ ᎤᎾᏤᎵᎦ. ᎾᏍᏉᏰᏃ ᎪᎱᏍᏗᏉ ᎬᏃᏛ ᏂᎨᏒᎾ, ᏳᏃᏴᎦ, ᎠᏤᎷᎯᏍᏗ ᎠᎴ ᏗᎧᏃᎩᏍᏙᏗ ᏱᎩ, ᎢᏳᏃ ᏧᏓᎴᎿᎢ ᏂᏚᏃᏴᎬᎾ ᏱᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏴᏙᎴᎰᎯ ᎾᏍᎩ ᎠᏤᎷᎯᏛ ᎨᏒ ᎠᎴ ᎾᏍᎩ ᏗᎧᏃᎩᏛ ᎨᏒᎢ? ᎤᏟᏍᏓ ᎤᏓᏅᏖᏗ ᎨᏎᎢ. ᎿᏉᏃ ᏧᎦᏐᎠᏒ ᎤᏌᎯᎸᎢ, ᎤᏂᏣᏘ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ; ᏥᏌ ᎤᏍᏆᏛ ᏕᎧᏁᏤᎲ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎤᏂᎩᏒᎩ ᎾᎿᏂ, ᏚᏕᏲᏅᏛᎩ ᎠᎴ ᎤᎵᏥᏙᎾᏒᎩ ᏚᏂᏚᎿᎥᎢ. ᏥᎦᏴᎵ ᎤᏃᏕᎾ. ᏚᏕᏘᏴᏌᏗᏒ ᎤᏐᏱᎭ ᏥᎪᏩᏘᏍᎪ. ᎠᏓᏍᏓᏴᏗ, ᎩᎳᏈᏴ ᏚᏃᏣᏝᏁᎢ ᎠᎳᏂ. “ᎠᏂᏴᏫᏯᏃ ‘ᎠᎳᏑᎶ’ ᏓᏃᏎᎰ…” ᎤᏂᎶᏌ ᎠᏗᏆᎸᏕᏲ ᎦᏆᏘ, ᎦᎸᎳᏗ ᏫᏚᎧᎾᏁ ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᏚᎦ ᎤᏪᎮᎢ ᎦᎸᎳᏗ ᏂᏗᎬᏅ ᎠᎩᎸᏙᏗ ᏳᎩᎴᎢ ᏃᎴ ᎮᏂᎵ ᎤᎵᏲᏗ ᎤᎵᏗᏨ ᏳᏬᏞᎢ. ᏦᏣᎢᏒ, ᏙᏧᏔᎩᏍᏔᏅ ᎣᎭᏂ ᎠᏁᎩ ᎤᎾᎵᏓᎩᏛ. ᎯᎠᏃ ᎤᎵᏬᏨ ᏧᎬ. ᎤᏍᎦᏃᎵ ᎤᎧᏐᏔᏂᎴ ᎦᎸᎳᏗ ᏓᏳᎶᏒ ᏲᎾ ᎤᏤᏍᏙ. ᏳᎾᎵᏍᏔᏴᎾ ᏍᏉ ᎬᏇᎸᏍᏗᏍᎬ, ᎦᏚ ᎠᏑᏴᏅ ᏃᎴ ᏩᎦ ᎭᏫᏯ ᎤᏌᎨ ᎠᎦᎷᏯᏓ ᎩᎦᎨ ᏃᎴ ᎬᏂᎨ ᏗᏆᏲᏓᏅ, ᎦᏣᏄᎳ ᏗᎬᏣᏝᏅ, ᎦᏖᏌᏗᏍᏗ ᎠᏓ ᏧᏂᎳᏗᏍᏗ ᎤᏂᏙᎥᏔᏅ, ᎩᎦᎨ ᎤᏗᎴᎩ ᎾᎥᏂ. ᎢᏳᏃ ᎩᎶ ᏚᎸᏫᏍᏓᏁᎸ ᏯᎪᎲᏍᏔᏅ, ᎾᏍᎩ ᎤᏲᎱᏎᎮᏍᏗ; ᎤᏩᏒᏍᎩᏂ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ; ᎠᏎᏃ ᎠᏥᎸ ᏣᏥᏍᏕᎸᏔᏃ ᎾᏍᎩᏯᎢ. ᎤᏁᎳᏫᏎᎸᏃ ᎩᎳᏉ ᎢᏴᏛ ᎣᎦᏁᎶᏔᏅᎩ ᎹᏏᏙᏂ ᏬᎩᎶᎯᏍᏗᏱ, ᎣᏣᏙᎴᎰᏍᎬᎩ ᎤᎬᏫᏳᎯ ᎣᎩᏯᏂᏍᎬᎢ ᎾᏍᎩ ᏦᏣᎵᏥᏙᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ. ᎣᏍᏓ ᎤᏰᎸᎯ ᏚᎧᏙᏍᏕᎢ ᏌᎳᏓ. ᏐᏉ ᎦᏚᎲ, ᎦᎵ ᎨᏒ ᏧᏂᏍᏗ ᎤᎾᏟᏂᎩᏓ ᎠᏂᏓᏥ, ᎭᎾ ᏓᎩᎬ ᏦᎯᏍᏙᏗ ᏏᏆ ᎭᏫᏯ ᎠᏍᏙᏓ, ᏩᏁ ᎦᏃᏍᎦ ᎦᏚ ᏧᏅᏂᏍᏔᏅ, ᏍᎨᏫ ᏧᎾᏦᏍᏗ ᏗᎵᎪᏔᏅ ᏃᎴ ᎤᏬᏗᎨ ᎠᏓᏴᏍᏕᏍᎩ, ᎤᏬᏗᎨ ᎦᏓᎫᎩ ᎤᏂᎫᎩᏓ, ᎠᎼ ᎤᏪᏴᎢ ᎤᏂᏴᏣᏗᏍᏔᏅ. ᎠᎴ ᎠᏨᏍᏙᏗ ᏚᎸᏌᏛ ᎥᏝ ᎿᏉ ᏗᏣᎸᏌᏓᏕᏗ ᏱᎨᏎᏍᏗ; ᎠᎴ ᎠᏕᏒᎲᏍᎩ ᎠᎴ ᎠᏥᏰᎯ ᎠᏂᏁᎬ ᎥᏝ ᎿᏉ ᎡᏣᏛᎦᏁᏗ ᏱᎨᏎᏍᏗ; ᏗᏣᏤᎵᏰᏃ ᎠᏂᏃᏗᏍᏍᎩ ᎨᏥᎸᏉᏗ ᎨᏒᎩ ᏴᏫ ᎡᎶᎯ ᏓᏁᏩᏗᏒᎢ; ᏂᎦᏗᏳᏰᏃ ᎤᎾᏓᏤᎵᏛ ᎨᏒ ᏴᏫ ᏓᏁᏩᏗᏒ ᎠᏙᏅᏗ ᏕᏣᎸᏫᏍᏓᏁᎲ ᏕᎯᎶᏄᎮᏔᏅᎩ. “ᎠᏗᎭᏃ ᎪᎨᏱ ᏏᏆ,” ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᏌᎳᏓ, ᎭᏩᏉᏗᏃ ᏱᎩ. ᏂᎦᏛᏃ ᎤᎾᎵᏍᏓᏴᏁᎢ; ᎠᎴ ᏚᏃᎸᏎᎢ. ᏤᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᏫᎵᎻ-“ᎨᏍᏗ ᎪᎱᏍᏗ ᏣᏓᏅᏕᏙᏗ ᏱᎩ. ᎠᏎᏃ ᏰᎵᏉ ᏂᏗᎦᎵᏍᏔᏂ, ᏱᎬᏍᏕᎸᎭ.” ᎢᏣᎵᎮᎵᎨᏍᏗ ᏂᎪᎯᎸᎢ; ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᏧᏏ ᏅᏁᏙᎯ, ᎠᏂᏍᎩᎾ ᏗᏂᏄᎪᏫᏍᎩ, ᎤᎾᏓᏅᏖᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᏕᎤᏙᎥ ᏧᏂᏁᎢᏍᏓᏁᏗᏱ ᎤᏂᏲ ᏗᏓᏅᏙ ᏧᏂᏯᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏨᏁᎢᏍᏓᏏ ᏥᏌ, ᎾᏍᎩ ᏉᎳ ᎠᎵᏥᏙᎲᏍᎬ ᏥᎦᏃᎮᎭ. ᎿᏉᏃ ᎠᎹᏟ ᎤᏅᏅ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅ ᎠᎴ ᏚᎾᏏᏔᏛ, ᏚᏂᏅᏎᎢ. ᎯᎠ ᎾᏍᎩ ᏦᎢ ᎢᏳᏓᎴᎩ ᎨᏒ ᏓᏅᏗᏍᎬ, ᏴᏫ ᏦᎢ ᎢᎨᏥᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏂᏨᎯ ᏕᎨᏥᎸᎩ, ᎾᏍᎩ ᎠᏥᎸ ᎬᏗ, ᎠᎴ ᏧᎦᏒᏍᏗ ᎬᏗ, ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᎬᏗ, ᎾᏍᎩ ᏗᏂᎰᎵ ᏥᏙᏓᎦᏄᎪᎬᎢ. ᎠᎦᏴᎵᎨᏰᏃ ᎤᎨᏳᎯᏳ ᎤᏪᏥ, ᎠᎴ ᎦᎾᏄᎪᏫᏎᎰ ᏂᎦᏛ ᎤᏩᏒ ᏚᎸᏫᏍᏓᏁᎲᎢ; ᎠᎴ ᎤᏟ ᎢᎦᎢ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏓᎦᎾᏄᎪᏫᏎᎵ ᎡᏍᎦᏉ ᎯᎠ; ᎾᏍᎩ ᎢᏥᏍᏆᏂᎪᎯᏍᏗᏱ. ᏥᏌᏃ ᏚᏁᏤᎸ ᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎾᏍᏉ ᎯᎠ ᎾᏍᎩ ᏱᏥᎪᎵᏰᎣᎢ, ᎾᏍᎩ ᏕᏫ ᏄᏛᏁᎸᎢ, ᎠᎪᏄ ᏧᏲᏏᏍᎨ ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᏣᏁᎮᎢ? ᎿᏉ ᎣᏥᎦᏔᎭ ᏂᎦᎥ ᎪᎱᏍᏗ ᎯᎦᏔᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎠᏎᏉᏉ ᎨᏒ ᎩᎶ ᏱᏨᏛᏛᎲᏍᎦ. ᎾᏍᎩ ᎤᏗᎦᎵᏍᏙᏗᎭ ᎣᏦᎯᏳᎲᏍᎦ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏣᏓᎴᏅᎯ ᎨᏒᎢ. ᎥᏝ ᎠᎴ ᎩᎶ ᎢᏤ ᏱᎦᎳᏍᏢᏗᏍᎪ ᎤᏪᏘ ᎠᏄᏬᎩᎯ, ᎦᎳᏍᏢᏛᏰᏃ ᏴᎦᏣᎦᎸᏓ ᎠᏄᏬ, ᎤᏓᏣᎦᎸᎲᏃ ᎤᏟ ᎡᏉᎯᏳ ᏱᏂᎦᎵᏍᏓ. ᎠᎴ ᎤᏪᏑᎶᏨᎯ ᎨᏎ ᏁᎳᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏴᏛ ᎢᏳᏕᏘᏴᏛ, ᎾᏍᎩ ᎥᏝ ᏱᏓᏅᏍᎨ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᏁᎳᏅᎯᏉ ᏓᎧᎿᏩᏗᏎᎢ ᎠᎹᏟ ᎬᏍᎬ ᎠᎴ ᎠᏓᏙᎵᏍᏗᏍᎬ ᏂᏚᎵᏏᏂᏒ ᎠᎴ ᏂᏚᎩᏨᏂᏒᎢ. ᎤᏆᏙᏓ. ᎤᎵᎪᎲᏍᏗᏃ ᎨᏒ ᎠᎴ ᏧᎵᏍᏚᏬᏐᏅ ᎨᏒ ᏕᏢᎬ ᎠᎴ ᏒᏃᏱ ᎡᎯ ᏅᏓ ᎥᏍᏊ ᎢᎦᎯ ᎤᏘᏍᏛᎢ. ᏂᎦᏚᏏᏁᏃ ᎤᎵᏏᏅ, ᎠᎺᏉᎯ ᎡᏟᏯ ᏠᏙᎢᏛ ᎣᎩᏃᎸᏔᏂᏙᎲᎢ, ᏒᏃᏱ ᎠᏰᎵ ᏥᏳ ᎠᏂᏂᏙᎯ ᎢᎸᎯᏢ ᎦᏙᎯ ᎾᎥᏂᎨ ᎣᏥᏂ ᎤᏁᎵᏒᎩ. ᏴᏫᏰᏃ ᎤᏪᏥ ᏧᎷᏥᎸ ᎥᏝ ᏴᏫ ᏓᏅᏅ Ᏹ-ᏚᏛᏔᏂᎸ, ᏚᏍᏕᎸᎯᎸᏉᏍᎩᏂ. ᏅᏩᏓᎴᏃ Ꮧ-ᎦᏚᎲ ᏭᏂᎶᏎᎢ. ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏪᏘ ᎠᏄᏬ ᎢᏤ ᎠᎬᎭᎸᏛ ᏱᎦᎵᏍᏢᏗᏍᎪᎢ, ᎢᏤᏰᏃ ᎠᎬᎭᎸᏛ ᎦᎳᏍᏢᏔᏅᎯ ᏴᎦᏣᎦᎸᏙᏓ ᎤᏪᏘ, ᎾᏍᎩᏃ ᎤᏓᏣᏕᎸᎲ ᎤᏟ ᎡᏉᎯᏳ ᏱᏅᎦᎵᏍᏓ. ᎯᏍᎩᏃ ᎦᏚ ᏚᎩᏒ ᎠᎴ ᏔᎵ ᎠᏣᏗ ᏚᏁᏒ, ᎦᎸᎳᏗ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᏚᎬᎭᎷᏰ ᎦᏚ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏁᎴ ᏧᏂᏁᏗᏱ; ᏔᎵᏃ ᎠᏣᏗ ᏂᎦᏛ ᏚᏯᏙᎮᎴᎢ. ᎢᎾᏛᏃ ᎤᏙᎴᎰᏒ ᎦᏙᎯ ᏣᎦᏓᎢᏅᏒᎢ, ᎤᏕᏯᏙᏔᏅᎩ ᎠᎨᏴ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᎤᎾᏄᎪᏫᏒᎯ. ᎤᎷᏨᏃ ᎤᏏᏔᏕ ᎠᏥᏢᏛᎢ, ᎬᏩᏁᎩᏃ ᎤᎾᎴᎾᏫᏍᏔᏁᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎯᏫᏅ, ᎭᏗᏛ, ᎬᏲᏎᎭ. ᎣᎵᏩᏲᏃ ᎤᏌᎯᎸ ᎤᏬᎸᎢ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏅᏒ ᎨᏒ ᎬᏩᎷᏤᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏍᎩᏃᎲᏏ ᎯᎳᎪ ᎢᏳ ᎯᎠ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏔᏂ; ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᏣᎷᎯᏍᏗᏱ, ᎠᎴ ᎪᎯ ᎨᏒ ᎤᎵᏍᏆᏗᏍᏗᏱ? “ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ ᎬᏗ ᏓᏥᏯᏬᎢ. ᏭᎳᏕ ᎦᏂᏧ Ꮎ ᎤᏥᏍᏛ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ, ᏂᎬᎾᏛ ᎠᏰᎸ ᎤᏅᎵᏰᎡ. ᏍᎩᏃ ᏚᏂᏅᏎ ᎢᎾᏓ ᏗᎦᏅᎬ ᎢᏗᏣ, ᎠᏍᎪᎵᏃ ᎤᏁᎯᏍᏙᏗ ᎤᏁᎵᏎ. ᎢᏳ ᎠᎴ ᎩᎶ ᎯᎠ ᏥᏂᏣᏛᏅ ᎢᏥᎦᏴᎵᎨ ᎨᏒ ᎤᏪᏥ ᎦᏚ ᏳᏔᏲᏎᎭ, ᏥᏌ ᏅᏯᏉ ᏯᎲᏏ? ᎢᏳ ᎠᎴ ᎠᏣᏗ ᏳᏔᏲᏎᎭ, ᏥᎪ ᎠᏣᏗ ᎤᏅᏁᏗ ᎨᏒ ᎢᎾᏛᏉ ᏱᎦᏅᎥᏏ? Ꮲ ᎠᏎ ᏓᎳᏚ ᎢᏯᏆᏕᏘᏴᏓ ᎨᏎ ᎩᎳᎢᏊ ᎢᏳᏍᏗ ᎠᎩᏁᏓ ᎨᏒ ᎠᏆᎵᏍᎪᎸᏓᏁᎯ ᏓᏆᎴᎳ ᎠᎩᎯᎵᏓᏍᏗ. ᏴᏫᏃ ᎤᎾᎴᎾᏫᏍᏕ ᏚᎾᎦᏙᏍᏕᎢ. ᏄᏂᎬᏫᏳᏌᏕᎩᏃ ᎾᏍᏉ ᏚᎾᎵᎪᏁᎴ ᎢᎬᏩᏕᎨᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎠᏂᏐᎢ ᏓᏍᏕᎵᏍᎬᎩ; ᎤᏩᏒ ᏩᎵᏍᏕᎸ ᎢᏳᏃ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏑᏰᏛ ᎨᏎᏍᏗ. ᎠᏎᏃ ᎦᏳᎳ ᏂᎫᏩᏕᎶᎰᏒ ᏂᎨᏎ ᏲᎾ ᏚᎷᏫᏍᏔᏁᎲ ᏤᎩᏏᏂ. ᎾᏂᎥᎩᎶ ᏄᏛᏅᏉ ᎠᏥᏯᏅᎲ ᎾᎿᏉ ᏅᏩᏛᏁᏍᏗ. ᎠᏎᏃ ᎢᏨᎨᏳᎢ, ᎯᎠ ᎾᏍᎩ ᏑᏓᎴᎩ ᏞᏍᏗ ᏂᏥᎦᏔᎲᎾᏉ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᏌᏉ ᎢᎦ ᎨᏒ ᎤᎬᏫᏳᎯ ᏙᏗᎧᏂᏍᎬ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎤᏠᏱ, ᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᏌᏉ ᎢᎦ ᎨᏒ ᎤᏠᏱ. ᎾᏍᎩᏃ ᎠᏓᏅᏙ ᎯᎠ ᎢᎦᏪᏍᎩ ᏂᎨᏒᎾ, ᏥᏌ ᎦᎶᏁᏛ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏥᎴᎢ, ᎥᏝ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎦᎶᏁᏛ-ᎠᏡᏗᏍᎩ ᎤᏤᎵᎦ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎤᎷᎯᏍᏗᏱ ᎢᏣᏛᎦᏅᎯ ᏥᎩ, ᎠᎴ ᎿᏉ ᎦᏳᎳ ᎡᎶᎯ ᎡᎭ. ᎩᎳ ᏭᏢᎾ ᎤᏍᎩᏗᏎ ᏥᎦᎶᎣᏍᎪᎢ, ᎤᏪᎷᏁ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᏗᎾᏰᏍᎬᎾ ᎯᎠ ᎢᎨᎩᏪᏍᏗ, ᎤᎬᏫᏳᎯ ᎠᎩᏍᏕᎵᏍᎩ, ᎠᎴ ᎥᏝ ᏴᎦᏥᏍᎦᏯ ᏴᏫ ᎢᎦᎬᏋᏁᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎣᏏᏳ ᎢᎨᏣᎵᏍᏓᏁᏗ ᏱᎩ, ᎠᎴ ᎪᎯᏗᏳ ᎨᏣᎴᏂᏓᏍᏗ ᏱᎩ ᎡᎶᎯ. “ᎭᏗ ᎪᎱᏍᏗ” ᎤᏛᏁ ᏌᎳᏓ. ᎠᏎᏃ, ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎪᎯᏳᏗ. ᏥᏌᏃ ᎤᎪᎲ ᎤᏃᎯᏳᏒᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ, ᎠᏯᏥ, ᏣᏍᏕᏅᏨ ᎡᏣᏙᎵᎩ. ᎥᎥ, ᏗᎾᏓᏅᏟ, ᎤᎵᎮᏍᏗ ᏍᏆᏓᏅᏓᏗᏍᏓ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏌᏛ; ᎪᎯᎵᏍᏓᏓᏉ ᎠᎩᎾᏫ ᎤᎬᏫᏳᎯ ᏕᎾᏁᎶᏛᎢ. ᎠᏏᏉᏃ ᎧᏁᎨᎢ, ᎬᏂᏳᏉ ᎤᏂᏣᏘ, ᎾᏃ ᏧᏓᏏ ᏣᎪᏎᎮᎢ, ᎾᏍᎩ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ ᎨᎳ, ᎢᎬᏱ ᎠᎢᏎ, ᎠᎴ ᎾᎥ ᎤᎷᏤᎴ ᏥᏌ ᏧᏔᏪᏙᏂᏎᎢ, ᎾᏍᎩ ᏄᏂᏪᏒᎩ ᏧᎦᏴᎵᎨᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᏂᏍᎦᎢᎲ ᎠᏂᏧᏏ; ᎦᏳᎳᏰᏃ ᎠᏂᏧᏏ ᏧᏄᎪᏔᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᎢᏳ ᎩᎶ ᏳᏁᏨ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒ ᎠᏥᏄᎪᏫᏍᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎢᎸᏍᎩᏃ ᏄᏬᎯᏨ ᎾᎿ ᎤᏁᏙᎸ, ᏇᏍᏓ ᎤᏃᎮᎮᎸᎩ ᎤᎬᏫᏳᎯ ᏄᏍᏛ ᏉᎳ ᎤᎵᏱᎵᏕᎲᎢ, ᎯᎠ ᏄᏪᏒᎩ; ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏴᎩ ᎠᏥᎧᎭ ᏈᎵᏏ ᎤᏪᎧᎯᏴᎯ. ᏕᎨᏴ ᏙᏥᎭᏯᎸ ᎾᏍᎩᏯ ᎩᏟ ᏥᏓᏂᎭᏲᎰ ᏧᎳ. ᎡᏝᏪᎯ ᏯᎵᏖᎸᎮᏍᎬᎾ, ᏃᎴ ᎦᏲᏟᎨ ᎦᏬᏂᏍᎨ. ᏙᎯᏉ ᎨᏎᏍᏗ.” ᎠᎾᏗᏍᎪᏃ ᎠᏂᏴᏫ ᎤᏟᏍᏗ ᎤᎾᏕᎶᏆᎡ ᏣᎳᎩ ᎤᏃᏪᎶᏗ. ᎾᏍᎩ ᎻᎵᎠ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎻᎾᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏓᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᏓᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏕᏫ ᎤᏪᏥ ᎨᏎᎢ, ᎠᎴ ᎣᏣᎵᏍᎦᏍᏙᏗ ᎤᎬᏫᏳᎯ ᏂᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏂᏣᏛᏁᎲᎢ, ᎠᎴ ᎠᏎ ᎾᏍᎩ ᎢᏣᏛᏁᏗ ᎨᏒ ᏄᏍᏛ ᎢᏨᏁᏤᎲᎢ. ᎤᏲᎯᏍᏔᎾ ᎦᎵᎤᏂᎲ ᎠᎱᎵ, ᎤᎴᏅᎮ ᎦᏬᏂᏍᎬ, ᎤᏐᏱ ᏄᏪᏎ ᎤᏂᏃᎮᏓ ᎠᏤᎯ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏃᎴ ᎤᏁᏝᏅᎯ. ᏣᏆᏛᏏᏗᏒ ᎢᎸᏢ 57 ᏧᏕᏘᏴᏌᏗᏒ Ꮭ ᎠᏏ ᏗᎾᎦᎵᏍᎩ ᏱᏙᎩᏏᎳᏕ ᎣᎨᏅᏒ ᎦᎵᏦᏕ. ᎾᎿᏃ ᎠᎦᏛᏅ ᎠᏫᎡᏗᏱ ᎪᏢᏒᎩ; ᎾᎿᏃ ᎠᏫᏒᏗᏱ ᎢᏤ ᏗᏓᏂᏐᏗᏱ ᎪᏢᏒᎩ ᎩᎶ ᎠᏥᏂᏌᏅ ᎠᏏ ᏂᎨᏒᎾ. ᎾᏍᎩᏃ, ᎢᏓᎵᏅᏟ, ᎢᏨᏔᏲᏎᎭ ᎤᎷᎯᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᎾᏍᎩ ᏪᏓᏓᏟᏌᏁᏗ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎦᏴᎵᎨᏍᏛᏱ ᏗᏆᏓᎴᏅ, ᎡᎶᎯ ᎠᎩᎷᏥᎸ; ᏔᎵᏁ ᎡᎶᎯ ᏛᎦᏓᏅᏏ, ᎠᎦᏴᎵᎨᏍᏛᏱ ᏮᏛᏥᎶᏏ. ᏔᎵ ᏦᎢ ᏩᏍᏗ, ᎠᏦᏴ ᏭᏓᏣᎪᏍᏗ ᏚᏲᏓᎩᏍᎬ ᎤᏓᏅᏖᎴ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏥᏄᎵᏍᏔᏅ ᎤᏁᎳᏅᎯ ᎤᎧᎵᎸ ᎾᏍᎩ ᎦᏳᎳ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᏥᎨᏎᎢ ᎦᎶᏁᏛ ᎤᎩᎵᏲᎢᏍᏗᏱ, ᏂᎦᏛ ᏧᏤᎵ ᎠᎾᏙᎴᎰᏍᎩ ᏗᏂᎰᎵ ᏥᏕᎬᏗᏍᎨᎢ. ᏴᏫᏰᏃ ᎤᏪᏥ ᎤᎷᏨ ᎤᏍᏕᎸᏭᎸ ᎤᎴᎾᎸᎯ. ᏲᎯᏉ ᎤᏍᏗᎩᏛ ᎤᏁᎳᎩ ᎨᏍᎩᏰᎵᏎᏗ ᏱᎩ ᎠᎩᏁᎫ ᎨᏒᎢ; ᎠᎴ ᎤᏙᎯᏳᎯ ᎤᏁᎳᎩ ᏍᎩᏰᎵᏏ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎾᏍᎩ ᎯᎠ ᏥᏂᏫ ᏫᏂᎦᎵᏍᏙᏓ, ᏥᎮᎾ; ᎠᏍᎩᎾ ᏤᏥᏱ ᎠᏯᎥ ᎤᏄᎪᎩ. ᏓᏗᏍᏆᏂᎪᏔᏂᏍᎪ ᎤᏲᏦᏅ ᎡᎶᎯ? ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏅᎯᏳ ᏂᎯ. “ᎤᎾᏛᏁᎸᏗ ᎠᏆᏚᎵ ᎠᏇᏅᏍᏗ.” ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏧᎳᎭ ᏦᏍᏓᏑᏫᏍᎦ ᎠᏖᎵᏙᎩᎯ ᎾᏍᎩ ᏛᏆᏡᏔᏂ. ᎾᏍᎩᏍᎩᏂ Ꮎ ᏥᏍᏚᏂᎩᏍᏗ ᎠᎴ ᎧᏄᎦᎸ ᎠᏛᏍᎬᎢ ᎠᏗᏅᏗᏉ, ᎠᎴ ᎠᏍᎦᎢᏍᏗᏱ ᎨᏒ ᎾᎥᏂᏳ ᏄᏍᏗᏕᎪᎢ, ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎨᏒ ᎠᎪᎲᏍᏙᏗ ᏥᎩ. ᎨᏍᏗ ᏂᎦᏓ ᏍᎩᎾᎾ ᏱᏃᏣᏛᏁᎰ, ᎠᏆᏛᏅ. ”ᎠᏆᏓᏅᏖᏗ ᏄᏍᏛ ᏂᎦᏪᏍᎬ ᏲᎾ ᎤᏤᏍᏙ,” ᎤᏛᏁ. ”ᎠᏯᏗ ᎠᏆᎵᏖᎸᏂᏍᏗ ᎤᏍᏆᎸᎭ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎠᎴ ᎣᎦᏚᎵᎭ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎬᎵᏍᏆᏗᏍᎩ ᎾᏍᎩᏯ ᎢᎦᎢ ᎢᏣᏟᏂᎬᏁᏗᏱ ᎬᏂ ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏫᏥᏱᎶᎸᎭ; ᏍᎩᎾᏃ ᏧᏪᎷᏁ ᏃᎴ ᏚᏩᏯᏑᎦᎸ ᎾᏍᎩᎾ ᎠᏔᎸᎦᏒ ᎪᏍᏓᏱ ᎦᏁᎦᏗᏓᎸᎦᏍᏙᏗ ᎦᏰᏌᏗ ᏍᎩᎾ ᏣᏚᏩᏘᎴ ᏂᎬᏛᎢ ᎠᏁᎳᏗᏍᎬ ᏧᏩᏘᏍᏗ ᎢᏳᏍᏓᏊ ᎩᎶ ᎾᎥ ᎾᎢ ᏳᎷᏥ ᎦᎸᏗᏣ ᎦᏙ ᎠᏔᎸᎦᏒᎢ. ᎥᏝᏰᏃ ᎣᏓᎸ ᎬᏒᏂᏍᏗ ᎨᏒ ᎤᏥᎷᏨ, ᎠᎴ ᎾᏍᎩ ᏣᏓᏪᎵᎩᏍᎨᎢ, ᎥᏝ ᎠᎴ ᎬᎿᎨ ᎤᎶᎩᎸᎢ, ᎠᎴ ᎤᎵᏏᎩᏳ ᎰᏒ ᎠᎴ ᎦᏃᎸᎥᏍᎬᎢ, ᎤᏂᏴᎲᎩᏃ ᎢᎾᏛ, ᎾᏍᎩ ᎠᎦᏴᎵ ᎢᎾᏛ, ᎾᏍᎩ ᎠᏍᎩᎾ ᎠᎴ ᏎᏓᏂ ᏣᎪᏎᎰᎢ, ᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎠᎦᎸᎸᎩ, ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎠᏴ ᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ, ᎤᏩᏒᏃ ᎠᏴ ᎠᏇᏥ ᎨᏎᏍᏗ. ᎠᎴ ᎾᏍᎩ ᏍᏆᏛᎦᏁᎸᎯ ᏥᎩ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᏕᎭᎨᏅᏗᏍᎨᏍᏗ ᎠᏃᏍᏛ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏰᎵ ᏗᎬᏩᏁᏲᏗ ᎨᏒ ᎾᏍᏉ Ꮎ ᏭᏅᎫᏛᎢ. ᎢᏧᎳ ᎨᏎᎢ ᏌᎳᏓ. ᎡᏣᎵᏗᏏ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ. ᏂᎦᎥ ᏴᏫ ᎠᏍᎦᏅᎬ ᎪᎱᏍᏗ ᏂᎬᏁᎲᎾ ᎨᏐ ᎠᏰᎸᎢ; ᎩᎶᏍᎩᏂ ᎤᏕᎵᏛ ᏥᏓᏂᏏᎲᏍᎪ ᎤᏩᏒ ᎠᏰᎸ ᎠᏍᎦᏅᏤᎰᎢ. ᎩᎶ ᏂᎯ ᎢᏣᏛᏓᏍᏓᏁᎮᏍᏗ ᎠᏴ ᎠᏆᏛᏓᏍᏓᏁᎮᏍᏗ; ᎩᎶᏃ ᎢᏥᏂᏆᏘᎮᏍᏗ, ᎠᏴ ᎠᎩᏂᏆᏘᎮᏍᏗ; ᎩᎶᏃ ᎠᏴ ᎠᎩᏂᏆᏘᎮᏍᏗ ᎦᏂᏆᏘᎮᏍᏗ ᏅᏛᎩᏅᏏᏛ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎ ᎤᏣᏘ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏒ ᏂᎦᎥ ᏥᏌ ᏄᏛᏁᎸᎢ, ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᏔᎵ ᎢᏳᏩᎬᏗ ᏫᏚᎧᏁᎴ ᏏᏆ ᎦᏂᏓᏛ. ”ᎠᏎᏗ, ᎠᏆᏓᏅᏖᏗᏍᎪ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎬᏩᏔᏲᏎᎸᎩ ᏧᏓᏅᏖᎮᏗᏱ ᎾᏍᎩ ᎠᏄᎯᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎤᏓᏅᏍᏗᏱ ᏥᎷᏏᎵᎻ ᎠᎦᏘᏃᎯᏍᏗᏱ; ᏭᏂᎭᎷᎨᏰᏃ ᏅᏃᎯ ᎤᏂᎯᏍᏗᏱ ᎤᏂᎸᏎᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᎢᏨᏍᏗᏰᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᏗᏥᏰᎸ ᏗᏣᎵᏍᎪᎸᏙᏗᏱ ᎬᏃᏛ ᎠᏥᎸ ᎨᎳᏍᏗ, ᎪᎱᏍᏗ ᏄᏍᏛᎾ, ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎤᏁᎳᏅᎯ, ᏕᏣᏓᏅᏛ ᎬᏗ ᎪᎱᏍᏗ ᎡᏣᏛᏁᎲᎢ. ᎤᏂᏁᏨᎩ ᎯᎠ ᎤᎬᏩᏪᏎᎸᎩ; ᎢᏳᏃ ᎤᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᏱᎨᏎᎢ ᎥᏝ ᏱᏙᎨᏨᏲᎯᏎᎴᎢ. “ᏤᏍᏗ ᎤᏲ ᎠᏲᏟ ᎢᏳᏍᏗ ᏱᏣᏤᎸᎮᏍᏗ!” ᎣᏤᎯᏃ ᎤᏙᎢᏳᎯ ᎠᏂᎪᏩᏘᏍᎬᎩ ᎢᎦ ᎦᏛᎢ, ᎠᎴ ᎠᏂᏍᎦᎢᎲᎩ, ᎠᏎᏃ ᎥᏝ ᏳᎾᏛᎦᏁ ᎧᏁᎬ ᎠᎩᏬᏁᏗᏍᎩ. “ᎨᏍᏗ ᎩᎶ ᏱᎪᎵᎦ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ, ᎤᏓᏅᏖᏙᏗ ᎤᏛᎸᎮ. ᎾᏍᎩᏃ ᎿᏉ ᎤᎧᎵᏨ ᎠᎹᏳᎶᏗ ᎤᏂᎾᏏᏃᎴᎢ, ᎠᎴ ᎤᎾᏅᏁᎢ, ᎠᏃᏍᏛᏃ ᏗᏖᎵᏙ ᏚᏂᎸᏔᏁᎢ, ᎤᏂᏲᏃ ᏚᎾᏓᎢᏅᏎᎢ. ᏃᎴ ᏍᏉ ᏕᎦᏅᏙᎬ. ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎤᏣᏘ ᎠᎩᎭ ᎦᎶᏁᏛ ᎠᎩᏁᎸᎢ, ᎾᏍᎩ ᎬᏁᏤᎲ ᏥᏚᏳᎪᏗ ᎢᏣᏛᏁᏗᏱ; ᏔᎵ ᎢᏳᏩᎬᏘ ᏂᎬᎴᎢ ᎠᏰᎸᎢ ᎤᏬᏘᏒ ᏥᏍᏕᏥ. ᎾᏍᎩᏃ ᎿᏉ ᏗᎴᎯᏐᏗ ᏂᎦᎵᏍᏔᏂᎸᎭ, ᎦᎪ ᎤᏓᎵᎢ ᎨᏎᏍᏗ ᎾᏍᎩ, ᎦᎵᏉ-ᎩᏰᏃ ᎢᏯᏂᏛ ᎤᎾᏓᏴᏛ ᎢᎩ. ᏥᏌ ᎤᏁᏨᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏋᏒᏉ ᎾᏍᏉ ᏱᎦᏓᏃᎮᎭ, ᎠᏎ ᏥᏃᎮᏍᎬ ᎤᏙᎯᏳᎭ; ᏥᎦᏔᎭᏰᏃ ᏗᏆᏓᎴᏅᎢ ᎠᎴ ᏫᏥᎦᏛᎢ. ᏂᎯᏍᎩᏂ ᎥᏝ ᏱᏥᎦᏔᎭ ᏗᏆᏓᎴᏅᎢ ᎠᎴ ᏫᏥᎦᏛᎢ. ᎿᏉᏃ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ [ᏥᏌ] ᎬᏩᎷᏤᎸᎩ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᎠᏴ ᎠᏂᏆᎵᏏᏃ ᏯᏃ ᎠᎹᏟ ᏦᏨᏍᎦ, ᏂᎯᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᎾᏅᏍᎬᎾ ᏥᎩ? ᏎᎦᏨ ᎤᏓᏅᏖᎴ ᎠᏎ ᎤᏬᏂᎯᏍᏗ ᎨᏎᏍᏗ. ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎩ ᎠᏙᎴᎰ ᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᏓᏥᏍᏚᎢᏏ ᏥᎣᎵ ᏕᎦᏟᎶᏍᏗᏍᎬᎢ, ᏓᏥᏁᎢᏍᏔᏂ ᎤᏕᎵᏛ ᎠᏍᏆᏂᎪᏛ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ. ᎤᎾᏂᎩᏐᎾ ᏴᏫ, ᏫᎵᎻ ᎤᏟᏃᎮᏔᏁᎢ ᏌᎳᏓ. ᎤᏗᎴᎩ ᎢᎦ ᎨᏎᎢ. “ᎤᏙᎯᏳᏛ,” ᎤᏛᏅ Michael, “ᎡᎵᏊ ᏱᏣᎷᎦ ᎥᏍᎩ ᏱᏣᏛᏁᎸ.” ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏦᏕᏆᏠᏥ ᎣᏍᏓ ᎤᏂᏰᎸᎮ ᏧᎾᏁᏍᎩᎸᏗ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏥᏌ, ᎠᎴ ᏚᏌᎳᏓᏅᎩ ᏗᎦᏙᎵ ᎦᎸᎳᏗ ᏫᏚᎧᎿᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎡᏙᏓ, ᎿᏉ ᎤᏍᏆᎸᎲ; ᎯᎸᏉᏓ ᏤᏥ, ᏤᏥ ᎾᏍᏉ ᏂᎯ ᏣᎸᏉᏙᏗᏱ. ᎩᎳᏈᏴ ᎤᏓᏅᏖᎴ. ᎤᏂᎩᏎ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᎣᏂᏃ ᎢᏴᏛ ᎤᏓᎵᎢ ᎵᏏ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᏗᏍᎦᎳᏁ ᎯᏍᎩ ᎢᏯᏅᏙ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᏃᎮᏍᎩᏰᏃ ᎨᏎᏍᏗ ᎾᏂᎥ ᏴᏫ ᎠᏁᎲᎢ ᏄᏍᏛ ᏣᏙᎲᎢ ᎠᎴ ᏣᏛᎦᏅᎢ. ᎠᏲᎵᏃ ᏭᏯᏅᎲ, ᎠᏂᏅ ᎠᏰᎵ ᎤᏪᎧᏁᎢ; ᎤᏄᎶᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏳᎳ ᎯᎠ ᎢᏳᏪᏛ ᏥᎩ, ᎠᏥᎸᎨᎳᏍᏙᏗ ᎠᎴ ᎠᎵᏍᎪᎸᏙᏗ, ᎠᎴ ᏧᏃᏍᏗ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ, ᎠᎴ ᏗᎵᏍᎪᎸᏙᏗ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ, ᎥᏝ ᏰᎵ ᏱᏗᏣᏰᎸᏁᎢ, ᎥᏝ ᎠᎴ ᎣᏏᏳ ᏱᏗᏣᏰᎸᏁᎢ; ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎵᏍᎪᎸᏔᏅᎯ ᏥᎨᏎᎢ; ᎠᏁᎵᏍᎬ ᏅᎩᏍᏆ ᎢᎦ, ᏫᏥ ᎢᎦ ᎨᏒ ᏧᏲᏨ ᏃᎴ ᎣᏍᏓ ᎢᏧᏅᏁᏗ. ᏥᏌᏃ ᎤᎴᏫᏍᏔᏅ ᎤᏁᏤ ᎠᎦᏘᏃᎮᏗᏱ; ᎿᏉᏃ ᎾᎥ ᎤᎷᏨ ᎤᏛᏛᏁᎢ, ᏫᏚᎾᏠᏨᏃ ᏫᏚᏂᎾᏌᏁᏒᎩ ᏤᏌᏂ ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎾᏓᏅᏟ, ᎦᏚᎲ ᎨᏥᎦᏘᏗᏍᏗ ᏫᏚᎾᏘᏃᎮᎸᎩ, ᎤᏁᎷᎬᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎯᎠ ᎡᎶᎯ ᏧᏂᎷᏆᏗᏅᏛ, ᎾᏍᏉ ᎠᏂ ᎢᎤᏂᎷᏨ; “ᏄᎦᏌᏍᏛ ᏓᎬᏔᏂ, ᏍᎩᎾᎾ ᏰᏃ ᎤᎶᏒᏍᏗ ᎤᎦᏌᏍᏗ. ᏌᏩᏂ ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎥᏝ ᏗᏆᎳᏏᏕᏂᏉ ᏧᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᏗᏉᏰᏂ ᎠᎴ ᏥᏍᎪᎵ. ᎦᏅᎯᏓ ᎦᏍᎩᎶᎩ ᎦᏅᎬ ᏤᎩᏏᏂ, ᎦᏬᏂᏍᎬ ᏃᎴ ᎨᏂᏗ ᏅᏬᏘ ᎤᏓᏑᏱ ᎠᏍᏆᏄᏛᏍᎬ ᎤᏓᏁᎪᏳᎲᏍᎬ ᎠᎰᎵ ᎠᏍᏚᎩᏍᎬ, ᎠᏦᎳᏍᏙᏗ ᎾᎥᏂᎨ. ᎢᏳᏃ ᏍᎩᎨᏳᎢᏳ ᎨᏎᏍᏗ, ᎢᏥᏍᏆᏂᎪᏓ ᎠᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ; ᎢᏳᏃ ᏂᎯ ᏍᎩᏯᎡᏍᏗ, ᎠᎴ ᎠᎩᏁᏨ ᎢᏥᏯᎡᏍᏗ, ᏂᎦᎥ ᎢᏣᏚᎵᏍᎬ ᎢᏥᏔᏲᎯᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᏎ ᎢᏰᏣᏛᏁᏗ ᎨᏎᏍᏗ. ᎤᏁᎳᏅᎯ, ᎤᎾᏄᎪᏫᏒ ᎤᏪᏥ ᏥᏌ, ᏂᎯ ᎢᏤᎲ ᎢᎬᏱ ᎤᏅᏒᎩ ᎣᏍᏛ ᎢᏣᏛᏁᏗᏱ ᏕᏥᎦᏔᎲᏍᎬ ᏗᏥᏲᎯᏍᏗᏱ ᏂᏨᏁᎲ ᏂᏥᎥ ᎢᏥᏍᎦᏅᏨᎢ. ᏍᎩᏃ ᏂᎨᎵᏍᎬ, ᎤᏛᏅ ᎠᏌᎻᏓ. ᏂᎯᏃ ᎬᏍᏕᎵᏍᎬ, ᏰᎵᏉ ᎠᏋᏌ ᎨᎥᎢ ᏱᏥᏌᎴᏓᎦ ᎨᎵᏍᎬ. ᎾᏍᎩ Ꮎ ᎠᎦᏘᎾᏫᏛᎲᎩ ᏅᏩᏙᎯᏯᏛ ᏗᎨᏒ ᏩᎦᏘᏃᎸᎩ, ᎠᎴ ᎤᏛᎦᏅᎩ ᎠᏂᏬᏂᏍᎬ ᎢᎦᏪᏍᏗ ᏂᎨᏒᎾ, ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᏴᏫ ᎾᏍᎩ ᎢᏳᏪᏍᏗᏱ. [ᏴᏫᏰᏃ ᎤᏪᏥ ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᏣᏂᎩᏍᎪ ᎢᎸᎯᏢ ᏤᎪᎢ, ᎾᏍᎩ ᏥᎬᏕᎪ ᎦᏁᎸᎢ, ᎠᎴ ᎠᏂᎦᏘᏯ ᏥᏂᏕᎬᏁᎰ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏧᏂᎸᏫᏍᏓᏁᏗ ᏥᏓᏁᎰᎢ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ ᏥᎧᏁᏤᎰ ᎤᏯᏫᏗᏱ. ᎠᎴ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎠᎦᏯᎷᏗ ᏥᏭᎾᏓᎢᏅᏎ ᎠᎺᏉᎯ, ᎠᎴ ᏥᏚᏂᏂᏴᎮ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ; ᎠᏴ ᏉᎳ ᎠᏆᏓᏲᎵᏍᏗ ᎨᏒ ᎠᏋᏒ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ ᎠᏉᏪᎳᏅᎯ. ᎤᎾᏓᏓᏍᎬ ᎠᏂᏩᏥᏂ ᎠᎳᏗ ᏚᎨᏓᎵᏴ ᎢᏗᎬᏓ, ᏧᏂᏲᎰᏎᎸ ᎠᏂᏴᏫ ᏧᎾᏙᎢᏓ. ᏗᏓᎴᏂᏍᎬ ᎧᏃᎮᏛ ᎡᎮᎢ, ᎠᎴ ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎢᏧᎳᎭ ᎠᏁᎮᎢ, ᎠᎴ ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎨᏎᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᎠᎾᏍᎩᏓᏒᎥᏍᎩ ᎦᏓᎭ ᎾᏅᏁᎭ ᎤᏂᏇᏓᎸᎢ, ᏗᏂᏍᎦᎩ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᏗᎬᏩᏂᏐᏢᏗ ᎨᏥᎸᏉᏗ. ᎬᏂᏳᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᏦᎢ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎠᏂᏙᎾᎥ ᎠᏓᏁᎸ ᎾᎿ ᎠᏉᎸᎢ, ᎬᎩᏯᏅᎰᎸᎯ ᏏᏌᎵᏱ ᏅᏓᎨᏥᏅᏒᎯ. ᎤᎬᏫᏳᎯ ᎠᏍᏕᎵᏍᎩ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏣᎬᏫᏳᎯ, ᎮᎾ ᎠᏏᏉ ᎾᏲᎱᏍᎬᎾ ᎠᏇᏥ. ᎾᏍᎩ ᏌᏉ ᏕᏣᏓᏅᏛᎢ ᎠᎴ ᏌᏉ ᎢᏥᎰᎵ ᎢᏨᏙᏗᏱ ᎡᏥᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎾᏍᎩ Ꮎ ᎤᏙᏓ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ. ᏁᏆᎸ ᎡᎶ, ᎤᏐᏱᏉ ᎾᎥ ᎠᏁᎯ ᎠᏂᏳᏩᏁᎦ. ᎾᎥᏂ ᏚᎨᏓᎵᏴ, ᏚᏅᏓᏒ ᏃᎴ ᏕᎨᏴᎢ , ᏃᎴ ᎤᏅᏌ ᎱᏂᎪᎲ ᎠᏂᎦᏔ, ᏄᏍᏛ ᎡᎶ, ᎤᏅᏌ ᎠᏁᎵᏍᎬ. ᎤᏁᏅᏎᏃ ᎤᎾᎦᏔᏅᏎ ᏄᎵᏍᏔᏅᎢ; ᏥᏌᏃ ᏭᏂᎷᏤᎴᎢ, ᎠᎴ ᎤᏂᏩᏛᎮ ᎠᏍᎦᏯ, ᎾᏍᎩ ᎬᏩᏄᎯᏨᎯ ᎠᏂᏍᎩᎾ, ᎤᏬᎴ ᏥᏌ ᏚᎳᏍᎬᎢ, ᏚᏄᏩᎡᎢ, ᎠᎴ ᎤᏓᏅᏘᏌᏅᎯ ᎨᏎᎢ; ᎤᏂᏍᎦᎴᏃ. ᏥᏌᏃ ᎾᏍᎩ ᏚᎧᎿᏅ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏴᏫ ᎨᏒ ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᎵᏍᏓ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏳᎵᏍᏙᏗᏉ. ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏪᎿᎢ ᎡᎮᎢ, ᎩᎦᎨ ᎠᎴ ᎤᏏᏙᎵ ᏙᎴᏛ ᏗᏄᏬ ᏓᏄᏬᏍᎨᎢ, ᎠᎴ ᏂᏓᏙᏓᏈᏒ ᎣᏍᏛ ᏓᎵᏍᏓᏴᎲᏍᎨᎢ. ᏲᎾ ᎤᏤᏍᏙ ᎤᏩᏗ ᏭᏌᏕ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏅᎬᏪᏎᎸᎩ; ᎥᏝ ᎠᏏ ᎯᏍᎩᏍᎪᎯ ᎢᏣᏕᏘᏴᏛ ᏱᎩ; ᏥᏌᏃ ᎯᎪᎥᎯ ᎢᎩ ᎡᏆᎭᎻ? ᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏰᏥᏄᎪᏫᏏ; ᎥᎥ, ᏛᏍᏆᎸᎯ, ᎩᎶ ᎢᏥᎯᎮᏍᏗ, ᎤᏁᎳᏅᎯ ᏂᏥᏯᏛᏁᎭ, ᎡᎵᏍᎨᏍᏗ. ᎠᏎᏃ, ᏍᎩᏴ ᏥᎨᏒ ᏰᎵ ᎣᎩᏂᎵᎪᏩᏕᎬ, ᎠᏴ Crockett ᏱᎨᏎ, ᎣᏏᏉ ᏱᎨᏎ. ᏏᏊᎴ ᏦᎢᏁ ᏃᏊ ᎥᎣᎦᏛᎦᏅ ᏃᏊᏛ ᎤᏙᎯᏳ ᎬᏂ ᎨᏒ ᎡᏍᎦ ᏣᎢᏒ ᎠᎴ ᏂᎦᏪᏏᏒ ᎠᏍᏓᏲᏍᎬ. ᎤᎾᏓᏓᏍᎩᏌᎲ ᎠᏂᎦᏲᏟ ᏴᏫ ᏓᎾᏟᏃᎮᏍᎬ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᏍᎩᎪᏩᏛ ᏅᏩᎦᏍᏙᏓ ᎰᎯᏳᎲᏍᎦ; ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎬᎩᎪᎲᎯ ᏂᎨᏒᎾ ᎠᏎᏃ ᏥᎬᏉᎯᏳᎲᏍᎪᎢ. ᎠᎴ ᎢᏨᏯᎵᏍᎪᎸᏓᏁᎭ ᎢᏥᎬᏫᏳᎯ ᎢᏣᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᎡᏙᏓ ᎠᏴ ᏣᏆᎵᏍᎪᎸᏓᏁᎸ; ᎾᏍᎩ ᎯᎠ ᏔᎵᏁ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸ ᏥᏌ ᎨᎵᎵ ᎤᎷᏦᏅᎯ, ᏧᏗᏱ ᏅᏓᏳᎶᏒᎯ. ᎦᎵᏉᏗᏃ [ᎦᏚ] ᏅᎩ ᎢᏯᎦᏴᎵ ᏕᏥᏁᎸ, ᎢᎳᎪ ᎢᏯᎧᎵᎢ ᏔᎷᏣ ᎤᎵᎬᎭᎷᏴᎯ ᎢᏧᏖᏎᎢ? ᎦᎵᏉᎩ ᎤᎾᏛᏁᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏥᎯᎮᏍᏗ ᏗᏥᏰᎸ ᏕᏣᏚᏓᏕᏫᏒ ᎠᏂ ᎡᎶᎯ; ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎦᏓᎭ ᎨᏒᎢ, ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏲ ᎠᏚᎸᏅᏗ ᎨᏒᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎠᏓᏙᎵᏍᏓᏁᏗ ᏥᎩ; ᎠᎴ ᏫᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎬ ᎤᎶᎩᎸᎩ, ᎠᎴ ᎤᎶᎩᎸ ᎩᎶ ᎤᏬᎸᎩ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩᏯᎢ, ᎤᎵᏍᏚᎸᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᎵᏍᏚᎶ, ᎠᎴ ᎪᏍᏓᏯ ᎠᏍᎫᏕᏍᏗ ᎦᏁᎲᎩ. ᎾᏍᎩ ᎬᎩᏃᎮᎮᎸᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏂᏧᏏ ᏧᎾᏤᎵᎦ, ᏥᎷᏏᎵᎻ ᏥᏫᎨᏙᎲᎩ, ᎠᏂᏔᏲᎯᎲᎩ ᎤᏍᎦᏅᏨ ᏧᏚᎪᏙᏗᏱ. ᏣᎵ ᎧᏃᎮᏍᎬ, ᎠᏍᏆᏂᎪᎯᏍᏗ ᎦᎶᏍᎨ, ᏳᎵᏍᏆᏙᏅ ᎠᏤᎯ ᎤᎾᎡ ᎠᏑᎶ. ᎾᏍᎩᏃ ᏄᏪᏒ ᏚᎾᏄᎪᏫᏎᎴ ᏧᏬᏰᏂ ᎠᎴ ᏧᎳᏏᏕᏂ. ᎠᎺᏉᎯᏃ ᏚᏲᏒᎩ ᏧᏂᏲᎱᏒᎯ ᎾᎿ ᏄᎾᏛᏅᎢ; ᎠᏲᎱᎯᏍᏗᏃ ᎠᎴ ᏨᏍᎩᏃ ᏚᏂᏲᏒ ᏧᏂᏲᎱᏒᎯ ᎾᎿ ᎠᏁᎲᎢ; ᎠᎴ ᏕᎨᎫᎪᏓᏁᎸᎩ ᏂᎦᏗᏳ ᎠᏂᏏᏴᏫᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ. ᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎢᏳᏄᎪᏨᎩ ᎠᏍᏓᏯ ᎤᏪᎷᎬᎩ ᎯᎠ ᏂᎦᏪᏎᎲᎩ ᎤᎶᎩᎸ ᎤᏬᎵ, ᎠᏍᎫᏕᏍᏗ ᎲᏓ ᎠᎴ ᎯᏍᎫᏛᎦ; ᏣᏍᎫᏕᏍᏗ ᎲᏓ ᎠᎴ ᎯᏍᎫᏛᎦ; ᏣᏍᎫᏕᏍᏗᏱᏰᏃ ᎨᏒ ᎿᏉ ᎠᏍᏆᎸᎯᎦ; ᎡᎶᎯᏰᏃ ᎠᏍᎫᏕᏍᏗᏱ ᎨᏒ ᎤᎦᏛᎾᏨ. ᎾᏍᎩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᎦᏔᎭᏉ ᎤᏓᏅᏍᏙᏒᎯ ᎨᏒ ᎩᎶ ᎠᏧᏏ ᎤᏁᏓᏍᏗᏱ ᎠᎴ ᎤᏩᏛᏗᏱ ᎩᎶ ᏅᏩᏓᎴ ᏴᏫ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎾᏋᏁᎸ ᎠᏴᎩᎶ ᏴᏫ ᎦᏓᎭ ᎠᎴ ᎾᏥᏅᎦᎸᎥᎾ ᏥᏲᏎᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎤᏂᏲᎰᏎᎸ ᏓᏂᏕᎪ ᏧᏂᏲᎰᏒ ᎭᎾᏉ ᏚᏂᏅᏨ, ᏓᎾᎵᏓᏍᎩᏍᎪ ᏧᏂᎩᏍᏔᏂᏕᏅ ᎤᏂᏍᎦᎣᏅ. ᏃᏈᏏᏃ ᎦᎸᎶᎢ ᎠᏂᎧᎸ ᎤᏂᏅᎪᎣᏒᎩ ᎠᎴ ᎡᎶᎯ ᎤᏂᎳᎨᏯᏛᏨᎩ, ᎾᏍᎩᏯ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏨᏂᏅᎪᎠᏍᎪ ᎤᎾᏓᏙᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎤᎾᏓᏔᏅᎯ, ᎾᎯᏳ ᎤᏣᏘ ᎦᏃᎸᎥᏍᎬ ᏧᏖᎸᎲᏍᎪᎢ; ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᎠᎬᏱ ᏯᎧᎸᎬᎾ, ᎤᏰᏤ ᏫᎵᎻ ᏃᎴ ᎤᏛᎦᏍᏔᏁᎢ. ᎤᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎨᏎᎢ ᎠᎵᏍᏓᏴᏗ ᏳᏫᎦᏠᏍᎬᎾ ᏗᎦᎴᏂ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏛᏁᎸᎩ ᏔᎵ ᏧᏕᏘᏴᏛ ᎢᎪᎯᏛ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏂᎦᏛ ᎡᏏᏱ ᎠᏁᎯ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ ᎤᎾᏛᎦᏅᎩ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏤᎵᎦ. ᎿᏉᏃ ᎤᏃᎵᏨᎩ ᏄᏂᏁᏤᎲᎾ ᎨᏒ ᎤᏁᏯᏙᎢᏍᏗᏱ ᎦᏚ ᎠᎪᏙᏗ, ᏓᎾᏕᏲᎲᏍᎬᏍᎩᏂ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ. ᎤᏦᏱᎴ. ᎠᎬᏱ ᎤᏓᏏᏁᏛ ᎣᏣᎵᏍᏔᏴᎲᏍᎬ, ᎠᏉᏢ ᎤᎩᎸᎭᏂᎸ, ᎤᏌᏃᎲ ᎤᏓᏓᏍᎬ ᎢᏧᎳ ᎢᏣ ᏙᎩᏃᏢ. (ᎾᏍᎩᏰᏃ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎠᏁᎲ ᏤᎮᎢ, ᎠᎪᏩᏘᏍᎬ ᎠᎴ ᎠᏛᎩᏍᎬ [ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ] ᎤᏓᏅᏘ ᎤᏓᏅᏙ ᏂᏚᎩᏨᏂᏒ ᎤᏕᏯᏙᏗ ᎤᏓᏅᏖ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᏚᏳᎪᏛᎾ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ,) ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏓᎦᏌᏯᏍᏕᏍᏗ ᎢᏨᏒ, ᎠᎴ ᏕᏥᎦᏌᏯᏍᏕᏍᏗ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎨᏒᎢ, ᎾᏍᎩ ᏗᏥᎦᏘᏯ ᎢᏨᏁᎸᎯ ᏥᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᏗᏤᎳᏍᏗᏱ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎤᏩᏒ ᎤᎩᎬ ᏧᎫᏴᏔᏅᎯ ᏥᎩ. ᎢᏳᏍᏗᏉ ᎬᏍᏕᎸᏗ ᏱᎩ. ᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᏥᏂᎨᏥᏪᏎᎴ ᎡᏘ ᏣᏁᎮᎢ; ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ. ᎣᏍᏛᏍᎩᏂ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ ᎠᎴ ᎢᏣᏓᏁᏗᏱ ᏗᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎣᏏᏳ ᎤᏰᎸᎭ ᎤᏁᎳᏅᎯ. ᏧᏓᎴᏅᎲᏃ ᏦᏣᎵᏍᎪᎸᏓᏁᎸ ᏲᎾ ᎤᏤᏍᏙ ᎫᎫ ᎬᏗ ᎤᏛᎯᏍᏙᏗ ᏏᏆ. ᎩᎳ ᎠᎬᏱ ᎤᏂᎬ ᏍᎩᏲᏍᏓ. “ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ ᏥᏌᏃ ᎯᎠ ᏄᏪᎭᎴ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ; ᎮᎾ, ᎠᎴ ᏄᏍᏛ ᏦᎯᏳᏅ ᎾᏍᎩ ᏫᏂᏣᎵᏍᏓᏏ. ᎤᏅᏏᏓᏍᏗᏃ ᎾᎯᏳᏉ ᎤᏗᏩᏎᎢ. ᎠᏎᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏥᎭ, ᏗᏨᏲᎯᏎᏗᏱ ᎠᏏᏴᏫ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᎵᏍᎬ ᎢᏳᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏚᎵᏍᎪ ᏗᏨᏲᏎᏗᏱ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᎤᏂᏴᎲᏃ ᏗᏓᏍᏚᏗᏱ ᎤᏴᏔᏁᎢ, ᎠᎴ ᏚᏲᎯᏎᎴ ᏅᎩ ᎢᏗᏂᎢᏛ ᏅᎩ ᏄᎾᏓᏡᎬ ᎠᏂᏯᏫᏍᎩ ᎬᏩᎦᏘᏗᏍᎩ, ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᎶᏐᏅᎯ ᏴᏫ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏎᎢ. ᎢᏳᏃ ᎡᎶᎯ ᎢᏥᏍᎦᎩᏳ ᏱᎩ, ᎢᏥᎦᏔᎭ ᎠᏴ ᎢᎬᏱ ᎠᎩᏍᎦᎩᏳ ᏄᎵᏍᏔᏅ ᏂᎯ ᎣᏂ. ᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏝᏍᎪ ᏯᏛᎩᎭ ᏂᎦᎥ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᎠᏂᎦᏔᎯ ᎨᏣᏡᏗᏍᎬᎢ ᏂᎦᏓ ᎠᏲᏣᏃᎲᏍᎬ. ᎤᏓᎴᏨ ᎠᏤᎯ ᎠᏣᏗ, ᏅᎩ ᏕᎦᏅᏌᏛ ᏕᎬᏗᏍᎨ ᎡᏙᎲ ᎠᎼ ᎡᎳᏗ. ᎡᎳᏗ ᏄᏩᎾᏗᏒ ᎠᏍᎪᎵ ᎩᏟ, ᎭᎴᏉ ᎦᏙ ᏩᏒᏂᎲ, ᎯᎸᎢᏴ ᎠᏙᎯ ᎢᏣ ᏭᎾᏌᎾᎩᏍᎬ ᎧᏴᏐᎵ. ᎾᎯᏳ ᏧᏤᎵ ᎤᎾᏓᏅᏘ ᎬᏩᎸᏉᏙᏗᏱ ᎤᎬᏩᎵ ᎦᎷᏨᎭ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ ᎾᏂᎥ ᎾᏍᎩ Ꮎ ᎬᏬᎯᏳᎲᏍᎩ ᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎪᎯᏳᏅᎯ ᎨᏒ ᎣᎩᏃᎮᎸ ᎢᏤᎲᎢ. “ᎣᏏᏗ ᎦᏣᎪᏩᏛᏗ ᏱᎨᏒᎾ ᏥᎩ ᎠᏯ ᏥᎪᏩᏗᏍᎬ,” ᎤᏛᏁ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎥᏝ ᎾᏂᎥ ᎯᎠ ᏥᏂᏥ Ꮻ ᏱᏙᎬᎾᏓᏂᎸᎩ, ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏅᏒ. “ᏃᏉ ᎩᏅᎪᎢ!” ᎤᏪᎷᏁ ᎪᏱᏁᎢ. ᎠᏎᏃ ᎦᏣᏄᎵ ᏫᎨᏰᎢ ᎠᎹ ᎤᏍᏗ ᎠᏣᏗ ᎭᏂᏣ ᏭᏓᏬᏍᏗ. “ᎣᏍᏓ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ.” ᏎᎦ ᎠᏆᏓᏅᏖᎸ, ᏃᏉ ᏩᏇᎵᏒ, ᎨᏍᏗ ᏫᏥᎢᎦ ᎠᏆᏓᏅᏖᏗ ᏱᎩ. ᏧᎵᏨᏯᏍᏗ ᎤᏟᎳ ᏓᏘᏁᎬ ᏧᏤᎵ ᎠᏂᏴᏫ. ᎿᏉᏃ ᏚᏅᏍᏓᏕᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᎾᏍᎩ ᎤᏩᏒ ᎦᎶᏁᏛ ᎨᏒᎢ. ᎥᏝ ᎠᎴ ᎤᏲ ᏳᏂᏰᎸᏅ ᏚᎾᏓᎸᎢ, ᎠᎴ ᏚᎾᏙᏅᎸᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏚᎾᏂᏏᏂᏙᎸᎢ, ᎠᎴ ᎤᏂᏃᏍᎩᏒᎢ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏁᎳᏅᎯ ᏓᏨᏂᎵ ᏂᎯ, ᎠᏐᏱ ᎤᏁᎬᎢᎬᏁᎸᎯ; ᏦᎳᏰᏃ ᎨᎵ ᏗᏍᏇᎪᏓᏁᏗᏱ ᎾᏍᎩᏬ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬᎢ? ᏥᎪᏃ ᎢᎯᏁᎦ ᎥᏋᏂᏍᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ ᏙᎯᎦᏘᎴᎦ? ᎤᏥᏍᏈᏍᏗ ᎤᏁᏡᎬ ᎠᏰᏟ ᎠᎩᏰᏨ ᏑᎾᎴᏱ. ᎤᏂᏍᏆᎾᎪᏒ ᏯᏖᏃᎢ ᏥᎬᎢ. ᎬᏂᏳᏉ ᏥᎷᏏᎵᎻ ᏫᏗᎦᏘ, ᎠᎴ ᏴᏫ ᎤᏪᏥ ᏙᏓᏰᏥᏲᏏ ᏙᏓᎨᏦᏲᎯᏎᎵ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎾᏍᎩᏃ ᏙᏛᏄᎪᎳᏂ ᎤᏲᎱᎯᏍᏗᏱ, ᎠᏰᎵᏃ ᏄᏮᏔᏁ ᎩᎶ ᎢᏳᏍᏗ ᎠᏥᎸ-ᎨᎶᎯ ᎾᎿ ᏂᎦᏅᏅ ᏗᎤᎶᏎᎢ; ᎤᎪᎲᏃ ᎠᏂᏗᏢᏉᏉ ᏄᎶᏎᎢ. ᎤᎶᎩᎸᏃ ᎤᏬᎵ ᎠᏍᎫᏕᏍᏗ ᎤᏤᎵ ᎤᏮᏔᏅᎩ; ᎠᎴ ᎡᎶᎯ ᎤᏍᎫᏕᏐᏅᎩ. ᎤᏓᎨᏳᎯᏃ ᏂᎨᏒᎾ, ᎥᏝ ᏯᎦᏔᎰ ᎤᏁᎳᏅᎯ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᏓᎨᏳᏗ ᎨᏒ ᏚᏙᎥ. ᎤᏙᎯᏳ ᎣᏍᏓ ᏏᏆ!” ᎡᎳᏗ ᎢᎦᏘ ᎠᏍᎦᏯ, ᎨᏍᏗ ᎣᏍᏓ ᎦᏬᏂᏍᎩᏱᎩ ᏣᎳᎩ, ᏴᎬᏁᎵᏓ ᎤᏬᏂᏍᏗ ᎤᏂᏣᏛ ᏃᎴ ᎨᏍᏗ ᎠᎪᎵᏰᏍᎩᏱᎩ ᏣᎳᎩ ᎪᏪᎳᏅ. ᎠᎦᏔᎲ Crockett ᏄᏓᎴᏨ ᏓᎾᎧᎾᏂᏍᎬ ᎤᏂᏣᏘ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎦᏳᏩᏛᏁᏗ ᏱᎨᏎ ᎣᏍᏓ ᎢᏳᏩᏁᏗ, ᏙᏱ ᏰᏙᎭ ᎤᎵᏍᏇᏚᏮ ᎡᎳᏗ ᏱᏄᏩᏁᎸ, ᏳᎦᎵᎢᏍᏔᎾ ᎦᏴᏐᎵ. ᎠᎴ ᎬᏂᏲᎱᏍᎩ ᎦᏥᏯᏕᏯᏙᏗᏍᎬᎩ ᎯᎠ ᎦᏅᏅ ᏗᏂᎧᎿᏩᏕᎩ, ᏕᎦᏥᏯᎸᎢᎲᎩ ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏕᎦᏥᏴᏗᏍᎬᎩ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ. ᎠᎴ ᏅᏩᏓᎴ ᏐᏈᎵ ᎤᏄᎪᏨᎩ, ᎠᎩᎦᎨᎢ; ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎾᎿ ᎤᎩᎵ ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᎤᏄᎪᏫᏍᏗᏱ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏅᏒᏉ ᏧᎾᏓᎯᏍᏗᏱ; ᎠᎴ ᎡᏆ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎠᏥᏕᎸᎩ. ᎩᏓᏟᏅᏯ ᎤᏓᎵ ᎯᏅᏁᎸᎲ, ᎠᏆᏛᏅ. ᏓᏏᎳᏛ ᏫᏗᎬᏅ ᎨᏎᎢ, ᎠᎳᏂ. ᎿᏉᏃ ᎬᏩᎷᏤᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᏥ, ᎠᎴ ᏙᏱᏗᏢ ᏓᏂᏙᎨ, ᎤᎾᏓᏅᏎ ᏫᎬᏩᏯᏂᏍᎨᎢ. ᎠᏂᏧᏏᏃ ᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎬᏂᎨᏒ ᏅᏓᏍᎩᏴᏁᎵ, ᎾᏍᎩ ᏥᏄᏍᏗ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ? ᎦᏙᏃ ᎤᏰᎸᏗ ᎥᎬᏅᎢ, ᎠᏎᏃ? ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏂᎥ ᏴᏫ ᎠᎾᎴᏅᏗᏍᎪ ᎠᏂᏝᎲᏍᎪ ᎣᏌᏂ ᎩᎦᎨᎠᏗᏔᏍᏗ, ᎿᏉᏃ ᎤᏣᏘ ᎤᎾᏗᏔᎲᎯ ᏥᎨᏐᎢ ᎩᎳ ᎤᏐᏅ ᎠᏂᏝᎲᏍᎪᎢ; ᏂᎯᏍᎩᏂ ᏣᏍᏆᏂᎪᏕ ᎣᏍᏛ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎪᎯ ᎢᏯᏍᏗ. “ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ “ᎠᎦᏍᎦᏃᎸᏍᎦᏈ? ᎬᏂᎨᏒ ᎾᏅᏁᎭ ᎠᏂᎦᏔᎯᏳ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎠᏎᏃ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎢᎬᏩᏓᏱᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏂᏆᏘᏍᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏃᎯᏳᎯᏍᏛ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎠᎴ ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎨᏥᏐᏅᎢᏍᏔᏅᎯ. ᎾᎯᏳᏉᏃ ᎠᎵᏰᎢᎵᏒ ᏚᎾᎴᏁᎢ, ᎠᎴ ᏥᎷᏏᎵᎻ ᏔᎵᏁ ᏫᎤᏂᎶᏎᎢ, ᎠᎴ ᏚᏂᏩᏛᎮ ᏓᏂᎳᏫᎡ ᏌᏚ ᎢᏯᏂᏛ, ᎠᎴ ᎾᏍᎩ ᎬᏩᎾᏓᏡᏩᏍᏗᏕᎩ, ᎤᏃᎮᎸ ᎠᎹᏰᎵ ᎢᏣ ᏥᏓᏄᎪᏗᏍᎨ ᎤᎵᏘᎾᎥ, ᎤᎾᏓᏩᏛᎮ Spiddal, Galway ᏥᏤᎢ. ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ ᎤᎵᏁᏨ ᏗᎧᎿᏩᏛᏍᏗ? ᏦᎳᏂ ᎡᎳᏗᏣ, ᎧᏅᏑᎸ ᎦᎸᎳᏗᏣ ᎪᎯᏓ ᏫᏓᎧᏁᎢ. ᎤᎾᏰᎯᏍᏗᏳ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᏧᏬᏰᏂ ᏫᏗᎩᏅᎢᏍᏗᏱ. VII. ᎤᏲ ᎧᏃᎮᏓ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎬᏩᎫᏗᏗᏎᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏥᏯᏫᏍᎨᏍᏗ ᎤᎵᏠᏯᏍᏕᏍᏗ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ; ᎯᎪᎯᏗ ᏙᏱᏨ ᏭᎷᏣ ... ᎠᎵᎬᏓᏃᏍᏙᏗ ᎤᏯᏤᎢ ᏃᎴ ᎢᎾ ᎢᏗᎦᏘ ᏚᎳᏑᏞ. ”ᎡᎵᏍᏗ ᎣᏏ ᎠᎩᏰᎸ.” ᎨᏍᏗ ᎣᏍᏓ ᎠᏓᏅᏘ ᎭᏂᏣ ᏫᎦᎦᎾᏅᎪᎥᏍᏗ ᏱᎨᏎ. ᎠᏏᏴᏫ ᎾᏍᎩ Ꮎ ᎠᏂᏔᎵ ᏣᏂ ᎤᎾᏛᎦᏁᎸᎯ, ᎠᎴ [ᏥᏌ] ᎤᏂᏍᏓᏩᏛᏛ, ᎾᏍᎩ ᎡᏂᏗ ᎨᏒᎩ, ᏌᏩᏂ ᏈᏓ ᏗᎾᏓᏅᏟ. ᏂᎯᏍᎩᏂ ᎯᏃᎮᏍᎨᏍᏗ ᎾᏍᎩ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒ ᎤᎵᎶᎲᏍᎩ; ᏂᎦᎵᏍᏙᏗᏍᎨᎢ ᏭᎶᏒᏍᏛᎢ ᎤᏲ ᎤᏓᏅᏖᏗ ᏃᎴ ᎤᏓᏅᏘ ᏱᎨᏒᎾ ᏍᎩᎾᎾ ᏥᏍᏕᏥ. ᎤᎾᏂᎩᏒᏃ ᏕᎦᏚᏩᏗᏒ ᎤᏁᏙᎴ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎠᎴ ᏓᎾᏓᏅᏫᏍᎨ ᏂᎦᎥ ᎠᏁᏙᎲᎢ. ᏔᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎠᎺᏉᎯ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎤᏲᎲᏒᎯᏃ ᏴᏫ ᎤᎩᎬ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏅᎩ; ᎠᎴ ᏂᎦᏗᏳ ᏗᏅᏃᏛ ᎨᏒ ᎠᎺᏉᎯ ᎠᏁᎲ ᏚᏂᎵᏬᏨᎩ. ᎾᏍᎩᏴ ᏑᎾᎴ, ᎠᏌᎻᏛ ᏓᏘᎭᏁᎲ ᎤᎨᏓᎵᏴ ᏭᏂᎷᏤ, ᎠᎦᏴᎵᎨ ᎤᏬᏑᎶᏨ, ᎤᏩᏌ ᎦᏂᎩᎵ ᎤᏂᏅᎪᏫᏍᏗ ᎨᏎ, ᏎᏥ ᏒᎭᎵ ᏗᏇᏅ ᏚᎧᎭᏲᏕ ᎠᏲᏓᏌᎲ ᎦᏌᎾᎵ, ᎦᎵᏦᏕ ᏃᎴ ᎠᏫᏌᏅ ᎠᏦᎭᏴ, ᎠᏫᏌᏅ ᏎᎷ, ᏚᏯ ᏃᎴ ᏩᎩᎦ, ᏥᏔᎦ ᏓᎾᏣᎪᏍᎬ ᎣᏂ, ᏩᏚᎵᏏ ᎠᏂᏃᎯᎵᏙᎲ ᎦᏁᏍᎬ, ᎣᏍᏓ ᏧᏂᏍᏙᏰᏛ ᏒᎦᏔ ᏃᎴ ᏆᎾ ᏕᏧᎬ, ᏓᎾᏓᏔᏍᎬ. ᎾᏍᎩᏰᏃ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎸᎯ ᏥᎨᏎ ᎥᏝ ᎰᏩ ᎦᎸᏉᏗᏳ ᏱᎨᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎬᏩᏓᎪᎾᏛᏛ ᎦᎸᏉᏗᏳ ᎨᏒ ᏐᎢ. ᎤᏁᎳᏅᎯᏰᏃ ᎡᏆᎭᎻ ᎤᏚᎢᏍᏓᏁᎸ, ᎾᏍᎩ ᎩᎶ ᏅᏩᏓᎴ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᏒᎲ ᎬᏩᏎᎵᏙᏗ ᏂᎨᏒᎾ ᎨᏎᎢ, ᎤᏩᏒ ᎡᎲ ᎤᏎᎵᏙᏔᏁᎢ, ᎣᏏᏳ ᎤᏂᏰᎸᏅ ᎤᏙᎯᏳᎯ; ᎠᎴ ᎾᏍᎩ ᎬᏩᏂᏚᎦ. ᎢᏳᏰᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏁᎳᏗᏍᏔᏅᎯ ᏱᎩ ᎾᏍᎩ ᎤᎾᏤᎵ ᏧᏓᎴᏅᏛ ᎠᏓᏅᏙ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ, ᎢᏳᎾᏛᏁᏗ ᎾᏍᏉ ᏄᎾᎵᏍᏓᏁᎲᎩ ᎾᏍᎩ ᏧᏂᏍᏕᎸᏗᏱ ᎤᏇᏓᎵ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ. ᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᏙᎬᏁᎮᏍᏗ ᎾᏍᎩ, ᎠᏥᎸ ᏗᏂᎰᎵ ᏗᎦᏄᎪᎨᏍᏗ, ᎠᎴ ᎤᏂᏛᏗᏍᎨᏍᏗ ᎬᏩᏂᏍᎦᎩ; ᎢᏳ ᎠᎴ ᎪᎱᏍᏗ ᏧᏩᏁᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎢᏯᎬᏁᏗ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᏂᎯᏃ ᎡᏥᎩᎵᏲᎢᏍᏗᏍᎩ, ᎠᏣᏪᏐᎸᏍᏙᏗ ᎨᏒ ᎡᎦᎫᏴᏓᏁᏗᏱ, ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎸᎶ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎭ ᎠᏁᎮᏍᏗ ᏧᎾᎵᏂᎩᏛ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ, “ᎦᏍᎩᎶᎩ ᎤᏤᎵ ᏫᏌᏗᎦ!” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎢᎦᏛ, ᎾᏍᎩ, ᎤᎾᏛᏅᎩ; ᎢᎦᏛᏃ, ᏓᎾᏤᎸ ᎤᎾᏛᏅᎩ. ᎤᏩᏒᏍᎩᏂ, ᎠᏴ ᎾᏍᎩ, ᎤᏛᏅᎩ. ᎢᏳᏃ ᏗᏓᏅᏙ ᎤᎬᏩᎵ ᏱᏨᏫᏎᎸ, ᏥᏌ ᎡᏉᎯᏳᏉ ᎢᎩ, ᎢᏳᏃ ᎤᏇᏓᎵ ᎤᎬᏩᎵ ᏱᏨᏍᎫᏕᏎᎭ? ᎤᎾᏛᎦᏅᏃ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ, ᎢᎦᏛ ᎤᏂᏰᎵᎥᎩ, ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᎵᏁ ᎯᎠ ᏛᏨᏯᏛᎦᏁᎵ. ᎤᏂᎩᏒᏃ ᎦᏅᏅ ᏭᎷᏨ, ᎩᎶ ᎢᏳᏍᏗ ᎤᏗᏠᎡᎸᎩ, ᎠᎴ ᏚᎵᏂᏆᏅᏁᎸᎩ, ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎰᏍᏛ ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏓᎦᏛᏁᎵ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ ᎠᏆᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ? “ᎤᏔᎷᎩᏍᎩ ᏍᎩᎾᎾ ᏏᏆ.” ᏫᎵᎻ ᎦᏟᎮ ᎧᏁᏍᎬ. ”ᏃᎴᏍᏉ,” ᎤᏛᏁ ᎰᎻ, ”ᎠᏆᏚᎵ ᏣᎴᏅᏗ ᎭᏁᏍᎨᏍᎬ ᎧᏁᏌᎢ ᎤᏴᏍᏗ ᏫᎵᎻ. ᎠᏎᏃ ᎥᏝ ᏳᏬᎯᏳᏁᎢ, ᏗᏓᏍᏚᏗᏱᏉ ᏭᎶᏎᎢ, ᎠᎴ ᎾᎿ ᏭᏴᏔᏁ ᎤᎫᏴᏗᏱ ᎠᏥᏚᎬ ᎢᎪᎯᏛ. ᏅᏯ ᏭᏗᏅᏓ ᎢᏳᏓᏅᎯᏓ ᎾᏍᎩᏯ ᎢᏳᏛᎾᎯᏓ ᏰᎵᏉ ᏭᏲᏍᏗ ᏬᏯ ᎠᏍᎪᎵ. ᎢᏳᏃ ᎥᎩᏅᏏᏛ ᎬᎩᏰᎸᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᏭᏅᏧᏛᎢ, ᏂᎯᏍᎩᏂ ᎠᏎ ᏄᏜᏏᏛᏒᎾ ᎥᎩᏅᏏᏛ ᏍᎩᏰᎸᏗ; ᏂᎯᏰᏃ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎠᏴ ᎥᎩᏅᏏᏛ ᎨᏒ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎡᏥᏍᏓᏩᏕᎩ ᎨᏒᎢ. ᎠᏎᏃ ᎢᏣᏅᏓᏓ ᏧᏩᎫᏔᏅᏒᎢ, ᎾᏍᎩ ᎾᎯᏳ ᎢᎦ ᏂᏕᏣᏗᏍᏓᏁᎶᎢ, ᎤᏣᏘ ᎢᏣᏟᏂᎬᏁᎸ ᏕᏥᎦᏘᎸᏒ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ; ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏎᏉ ᏲᏣᎵᏍᏓᏴᎾᏁᎮᎢ; ᏙᎩᎸᏫᏍᏓᏁᎲᎩᏍᎩᏂ ᎠᎴ ᏙᎩᏯᏪᏥᏙᎲᎩ ᎬᏩᎩᏨᏗ, ᏃᎦᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᏴ ᎠᏏᏴᏫ ᏂᏣᏛᏅ ᎦᎨᏛ ᎢᏲᏨᏴᏁᏗᏱ; ᎬᏆᏚᎸᏗᏉᏰᏃ ᎠᏋᏒ ᎨᏒ ᎥᎩᏍᎦᏨᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎥᏆᏓᏓᎴᏙᏗᏱ ᎦᎶᏁᏛ ᎡᎲᎢ ᎦᏥᏍᏕᎵᏍᎬ ᎣᏣᏓᏅᏟ, ᎪᎱᏍᏗ ᏗᏋᏅ Ꭰ ᎤᏇᏓᎵ ᎨᏒᎢ; ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᏄᎪᏤ ᎦᏚᎲᎢ. ᏫᏥ ᏫᏘᏌᏆᏞᎵ, ᏫᏙᏣᏝᏂ ᎤᏁᎸᏗ ᏣᏍᏆᏂᎪᏛ.” ᎨᎦᏎᏍᏗᏱ ᎤᏰᎸᏎ ᎤᏰᎸᏎ ᎤᏩᏒ ᎠᎴ ᎺᎵ ᎤᏓᏴᏍᏗ, ᎾᏍᎩ ᎦᏁᎵᏛ ᎨᏎᎢ. ᏥᏌᏃ ᎡᏙᎲᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏐᎵᎹᏅ ᎤᏤᎵᎦ ᎠᏲᏓᏝᎲᎢ. ᎤᏙᎯᏳ ᏭᎶᏒᏍᏛ ᎦᏓᎭ ᎤᏂᎶᏅᎮᎸ. ᎠᏎ ᎤᏛᎪᏗ ᎨᏎ ᎾᏂᏪᏍᎬ, ᏃᎴ ᎠᏎ ᎤᏓᏅᏖᏗᏍᎨᎢ. ᏗᏥᏲᎵ, ᏕᏦᎯᏳᏎᏍᏗ ᏗᏥᎦᏴᎵᎢ ᏂᎦᎥ ᏂᎨᏥᏪᏎᎲᎢ; ᎣᏏᏳᏰᏃ ᎤᏰᎸᏗ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᎯᎠ. ᎾᏍᎩᏃ ᎪᎯ ᎨᏒ ᏰᏥᏙᎵᏨᏉ, ᎠᎴ ᏰᏥᎦᎵᏍᏓᏛ, ᏱᏅᏎᎦᎩ ᎾᏍᎩ ᎤᏣᏘ ᎤᏲ ᎤᏰᎸᏒ ᏳᏃᏴᏘᏍᏓ. ᎦᏲᏟᎨ ᎠᎵᏒᎢᏍᏙᏗ ᏂᎦᏓ ᎤᎾᏨᏓ ᏓᏥᏍᏛ ᏑᎾᎴ. ᎤᏁᎷᏅᎯ ᏧᏓᎴᏅᏛᏉ ᏂᏚᏂᏪᏒᎩ; ᏓᏂᎳᏫᎥᏰᏃ ᎤᎾᏓᏑᏰᏛᏉ ᎨᏒᎩ, ᎠᎴ ᎤᏟ ᎢᏯᏂᏛ ᎥᏝ ᏯᏂᎦᏔᎮ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᎾᏓᏟᏌᏅᎢ. ᎧᏂᎩᏛ ᎤᎵᏑᏫᏓ, ᎠᎴᏃ ᎦᏲᏟ ᏧᏂᏍᏗ ᎢᏯ ᏓᎾᏛᏍᎬ ᎦᏝᏛ ᏃᎴ ᎦᏲᏟ ᎠᏂᎩᎦᎨ ᏒᎦᏔ ᎤᎾᏛ ᏕᏧᎬ. ᎠᎦᏗᏓ ᎧᏃᎮᏗ ᎨᏐ ᏅᏙ ᏥᏭᏕᎵᎪ ᏃᎴ ᏥᏗᎠᎧᎸᎦ. ᎤᎵᎪᎲᏍᏗ ᎢᎦ ᏓᏛᏍᏆᎶᏥ ᏃᎴ ᏛᏴᏣᏗ. ᎤᏃᎴ ᎤᏍᎦᏎᏗ ᏓᎦᎷᏥ, ᏁᏩᏓ ᎢᎬᏓ ᏓᎦᏁᏐᎣᏏ ᎬᏁᎨ ᎦᎸᎶᎢ ᏓᏳᏓᎴᏅ, ᏂᎦᏓ ᎠᏂᏳᏩᏁᎦ ᏓᏛᎰᏂ ᏃᎴ ᎦᏚᏏ ᎤᎾᏗᏍᎦᏟ. ᎠᏂᎦᏓᏁ ᏄᎾᎵᏍᏔᏁᎢ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᏂᎯ ᏗᏥᏰᎸ ᎦᎶᏁᏛ ᎤᏚᏓᏕᏫᏍᏛᎢ? ᏥᎪᏃ ᎦᎶᏁᏛ ᎤᏚᏓᏕᏫᏒ ᏙᏓᏥᏯᏅᎯ, ᎤᏁᎫᏥᏛᏃ ᎠᎨᏴ ᏧᎾᏚᏓᏕᏫᏍᏙᏗ ᏅᏓᎦᏥᏴᏁᎵ? ᎬᏩᏟᏍᏗ! “ᎨᏍᏗ ᏱᏗᎬᏕᏥ ᏨᏌ ᏣᎵᏬᎢᏍᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᎥᏝ ᎤᏩᏒ ᎯᎠ ᎦᎸᏉᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏳᎩᏎ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎾᎬᏁᎸᎢ; ᎯᎠᏍᎩᏂ ᎢᏳᏪᏎᎸᎯ, ᎠᏇᏥ ᏂᎯ, ᎪᎯ ᎢᎦ ᏍᏆᏕᎲᏏ, [ᎾᏍᎩ ᎤᏯᏅᎮᎢ.] ᎢᏥᎧᎵᏣᎪᎦ ᏗᏥᏙᏓ ᎤᎾᏟᎶᎥᎢ. ᎾᏍᎩᏯᏰᏃ ᎠᎾᎦᎵᏍᎩ ᏌᏉ ᎢᏗᏢ ᎦᎸᎶᎢ ᏨᏗᎦᎵᏍᎪᎢ, ᎤᏣᏘᏂᏃ ᎢᏗᏢ ᎦᎸᎶᎢ ᏥᏫᏗᎦᎵᏍᎪᎢ, ᎤᏣᏘᏂᏃ ᎢᏗᏢ ᎦᎸᎶᎢ ᏥᏫᏗᎦᎸᏌᏓᏗᏍᎪᎢ; ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵ ᎢᎦ ᎠᎵᏱᎶᎸᎭ. ᎢᎦᏪᏍᏗ ᏯᎫᏚᎵᏍᎬᎾ ᎠᏛᎪᏗ ᎠᎫᏩᏌ ᏴᏙ ᎦᏚᏏ. ᎣᎭᏂ ᎠᏁᎬ ᎤᏓᏂᏴ ᏃᎴ ᎤᎴᏫᏍᏔᏅ. ᎤᏂᏣᏛᏃ ᎬᏩᎷᏤᎸᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏣᏂ ᎥᏝ ᎤᏍᏆᏂᎪᏗ ᏱᏚᎸᏫᏍᏓᏁᎮᎢ, ᎠᏎᏃ ᏂᎦᎥ ᏣᏂ ᏄᏪᏒ ᎤᏃᎮᎸ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎤᏙᎯᏳᎯᏯ ᎨᏎᎢ. ᎭᏓᏅᏖᏍᎪᎢᏧ ᎭᎾ ᏗᏓᎴᎲᏍᎬ ᎦᏓ? ᎠᏎᏃ ᎥᏝ ᎾᏂᎥ ᎤᏃᎯᏳᏅᎯ ᏱᎩ ᎣᏍᏛ ᎧᏃᎮᏛ. ᎢᏌᏯᏰᏃ ᎯᎠ ᏂᎦᏪᎭ, ᏱᎰᏩ, ᎦᎪ ᎤᏬᎯᏳᏅ ᎣᏥᏃᎮᏍᎬᎢ? ᎦᏙᏰᏃ ᎤᏚᎩ ᎣᎬᎭ, ᎠᎴ ᎦᏙ ᎣᏍᏛ ᏱᎦᏓᏅᏓᏗᎭ, ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎠᎵᏍᏚᎶ ᏯᎦᎵᎮᎵᏍᏙᏗ? ᏝᏍᎪ ᏂᎯ ᏱᎨᏎᏍᏗ ᎠᎦᏔᎲ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎾᎯᏳ ᎦᎷᏨᎭ? ᎠᏎᏃ ᎠᏏᏴᏫ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎩᎾᎵᎢ, ᎥᏝ ᎤᏣᏘᏂ ᏱᏂᎬᏴᏁᎭ. ᏝᏍᎪ ᎣᏏ ᏱᏣᏰᎸᏁ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᎬᏯᎫᏴᎡᏗᏱ? ᏚᎾᏁᎶᏥᏁᎴᏃ ᎤᎾᎵᎪᎯ ᏐᎢᏱ ᏥᏳᎯ ᎤᎾᏣᎢ ᏅᏓᎬᏩᏂᏍᏕᎸᎲᏍᏗᏱ. ᎤᏂᎷᏤᏃ, ᎠᎴ ᎢᏧᎳ ᏥᏳ ᏚᏂᎧᎵᎴᎢ, ᎾᏍᎩᏃ ᎿᏉ ᏕᎦᏃᏴᎨᎢ. “ᎨᏍᏗ ᎬᏕᏘᏱᎩ. ᎠᏯᏦᎯ ᏭᎳᎩᏎ ᏣᏄᏏ ᏃᎴ ᎠᎵ ᎤᎴᏴᏒ ᎤᏅᎦᎸᎮᎢ ᎠᏴᏤᏂ ᎣᏁ ᎢᏣ. ᎨᏍᏗ ᏯᏓᏁᏝᏍᎨ ᎠᎵᏍᏔᏴᏗ ᎠᏙ. ᎤᏍᎦᏃᎵ ᎤᏰᎸᏎ ᏓᏆᎴᎳ ᎡᎶᏗ ᏏᏆ ᎠᏍᏚᏗ ᎢᏳᏓᏅᎯᏓ. ᎠᏎᏃ ᎨᏍᏗ ᎭᏂ ᏍᎩᎾᎾ ᏱᏂᏓᎦᎵᏍᏔᏂ. “ᏎᎦᏃ ᎤᏍᏆᏂᎪᏔᏁᎢ, ᏃᏗ ᎤᏍᏆᎸᎭ, ᎤᏩᏯᎨᎢ.” ᎠᏴ ᏉᎳ ᎠᏋᏒ ᎠᏉᏰᏂ ᎬᏗᎭ ᏫᏨᏲᎵᎭ. ᎢᏣᏅᏖᏍᏗ ᎥᏆᎸᎥᎢ. ᎬᏩᎦᏘᏯ ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏤᎳᏗᏙᎮᏍᏗ. ᎡᎺᏅ. ”ᎨᎵᎠ ᎪᎱᏍᏗ ᎦᎵᏍᏗ ᎢᎯ ᏣᏤᎵ ᏏᏆ. “ᎭᏓᏅᎦᎳ ᏃᎴ ᎭᎵᏍᏔᏴᎲᎦ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ, ᎡᎳᏆᏗ!” ᎤᏛᏁ ᎤᏤ. ᏚᏅᏎᏃ ᎢᎬᏱ ᎠᏁᎩ; ᎤᏁᏅᏎᏃ, ᎠᎴ ᏌᎺᎵ ᎠᏁᎯ ᎤᏂᏚᎲ ᏭᏂᏴᎴᎢ, ᎾᏍᎩ ᎬᏩᏛᏅᎢᏍᏓᏁᏗᏱ. ᎬᏂᏳᏉ ᏥᏙᎦ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎬᏂᎭ; ᎩᎶ ᎠᏛᎩᏍᎨᏍᏗ ᏥᏁᎬ ᎠᎴ ᎠᏍᏚᎢᏍᎩᏍᏗ ᎦᎶᎯᏍᏗᏱ, ᏓᏥᏴᎵ ᎠᏯᎥᎢ, ᎠᎴ ᏓᎦᎵᏍᏓᏴᏂ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏛᎵᏍᏓᏴᏂ ᎦᎵᏍᏓᏴᎲᏍᎬᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎤᎵᏍᏈᏗ ᏅᎩᏎ ᎤᎾᎵᏍᏓᏴᏃᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎤᎵᏍᏈᏗ ᎢᏤ ᎧᏃᎮᏛ ᏧᏠᎯᏍᏛᎢ ᎠᏴ ᎠᎩᎩᎬᎯ, ᎾᏍᎩ ᏂᎯ ᎢᏣᏤᏬᏤᎸᎯ ᏥᎩ ᏥᏌᏃ ᏓᏳᎾᏄᎪᏨᎩ, ᎤᎵᏍᏚᎸᎩ ᎠᎵᏍᏚᎶ ᏧᏣᏲᏍᏗ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏄᏮᎩ ᎩᎦᎨ ᎠᏄᏬ. ᏆᎴᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ. ᎦᏙ ᏗᎦᎵᏍᏙᏗ ᏂᏦᎵᎬᎾ ᏥᎩ, ᎾᏍᎩ ᎯᎠ ᏥᏂᏨᏪᏏ ᏝᏍᎩᏂ ᎦᏚ ᏱᏥᏛᎦ, ᎢᏤᏯᏔᎮᏍᏗ ᎠᎪᏙᏗ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ ᎤᎾᏤᎵᎦ, ᏥᏨᏲᏏ? “ᏏᏲ,” ᎤᏛᎮ ᏩᎭᏯ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏥᎻ ᎠᎴ ᏣᏂ ᎾᏍᎩ ᎤᏂᎪᎲ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎣᏏᏉᏍᎪ ᏱᏰᎸᎾ ᏲᎩᏂᏁᏨ ᎠᏥᎸ ᎦᎸᎳᏗ ᏅᏓᏳᎶᎯᏍᏗᏱ ᎠᎴ ᎤᎾᎪᎲᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎢᎳᏯ ᏄᏛᏁᎸᎢ? ᏧᎵᎢ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᎠᎾᎵᎮᎵᎨ ᎱᎷᏨᎢ. ᎣᏍᏓ ᎤᏰᎸᎮ ᎠᏤ ᎤᏁᎳᏗᏍᏗ. ᎤᎾᏓᏍᏕᏓᎵᏴᏓ ᎦᏲᏟᏉ ᎠᏂᎭᏰᎲ ᏚᏯ, ᏎᎷ ᎢᏣ, ᎦᏲᏟ ᎢᏯ ᏃᎴ ᏍᎨᏫ. ᎠᏓᏅᏙᏰᏃ ᎤᏩᏒ ᏓᎵᎪᏁᎭ ᏗᎦᏓᏅᏙ ᎬᏂᎨᏒ ᎾᏅᏁᎲ, ᎾᏍᎩ ᎠᏴ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎨᏒᎢ. ᏉᎳᏃ ᏭᏯᏅᎲ ᎠᏏᏴᏫ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎠᏫᏅ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᏄᏬᎸ ᏫᏯᏘᏅᏍᏓ, ᎪᎱᏍᏗᏰᏃ ᎤᎭ ᎤᏃᏁᏗ. ᎠᎪᏄᏰᏃ ᎠᎩᏲᏏᏍᎬᎩ, ᎥᏍᎩᏰᎳᏍᏔᏅᏃ; ᎠᎩᏔᏕᎩᏍᎬᎩ, ᎥᏍᎩᎤᏅᏃ; ᏅᎩᎦᏔᎲᎾ ᎨᏒᎩ, ᎥᏍᎩᏴᏔᏅᎩ; ᎾᏍᎩ ᎠᏥᎩ-ᎨᎶᎯ ᎾᎬᏁᎸ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏇᏓᎵ ᎤᎬᏩᎵ ᎾᏍᎩᏯ ᎾᎬᏁᎸᎾ ᎨᏒᎢ, ᎬᏂᏛᏍᎩᏂ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎤᎵᏂᎬᎬ ᎾᏍᎩᏯᎢ. ᎤᏩᏝᎥᏃ ᏚᏂᏔᎳᏗᎸ ᏥᏳ, ᏂᎦᏛ ᏚᏂᏲᏐᏁ ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᎾᏍᎩᏃ ᎢᏧᎳᎭ ᏧᏂᎦᏐᎠᏒ ᎤᏬᏓᎸ ᎤᎴᏁᎢ. ᎠᎴ ᎤᏂᏣᏘ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎤᏂᏧᏈᏍᏗ ᏴᏫ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ, ᎠᎴ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎠᎺᏉᎯ ᎤᏣᏗ ᏅᏓᏳᏂᎶᏒᎯ, ᎾᏍᎩ ᏧᏂᎷᏤ ᎬᏩᏛᎦᏁᏗᏱ, ᎠᎴ ᏗᎨᏥᏅᏬᏗᏱ ᏚᏂᏢᎬᎢ. ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎪᎵᏂᏗᏱ ᏥᏣᏓᏡᎦ, ᎾᏍᎩ ᎢᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎢᏰᏨᏁᎸᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎡᏥᏯᏅᏛ ᎢᏣᏓᏅᏘ, ᎠᎴ ᎾᏂᎥ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏚᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎩ, ᎾᏍᎩ ᎢᏧᎳᏉ ᎾᏍᎩ ᎤᎾᏤᎵᎦ ᎠᎴ ᎠᏴ ᎢᎦᏤᎵᎦ; ᎾᏍᎩᏃ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᏉ ᎠᏴ ᎾᏆᎵᏍᏓᏁᎵᏕᎬ ᎠᎴ ᎾᏆᏛᎿᏕᎬᎢ, ᏗᎩᎦ, ᎣᏥᎨᏳᎢ ᎣᏣᎵᏅᏟ ᎠᎴ ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᏧᎸᏫᏍᏓᏁᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎬᏩᎵ, ᎬᏂᎨᏒ ᏅᏓᏨᏁᎵ ᏄᏓᎴᏒ ᎪᎱᏍᏗ; ᎨᏍᏗ ᏳᏬᎯᏳᎮ ᏄᏍᏛᏉ ᏄᎵᏍᏔᏁᎲ ᎤᏂᏴ ᏣᏄᏏ ᏃᎴ ᎠᏎ ᎤᏗᏔᏍᏗ ᏅᏬᏘ ᏥᏄᏩᏁᎮ. ᎥᏝ ᎪᎱᏍᏗ ᎠᏋᏒ ᏰᎵ ᏱᏙᎬᎩᎸᏫᏍᏓᏏ; ᎦᏛᎩᏍᎬ ᎾᏍᎩᏯ ᏕᎫᎪᏗᏍᎪᎢ, ᎠᎴ ᏓᏉᎪᏔᏅ ᏚᏳᎪᏛ ᎨᏐᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎾᎩᏲᎲᎾ ᎨᏒ ᎠᏋᏒ ᎦᏓᏅᏖᏍᎬᎢ, ᎠᎩᏲᎲᏍᎩᏂ ᎠᏓᏅᏖᏍᎬ ᎡᏙᏓ ᎾᏍᎩ ᏅᏛᎩᏅᏏᏛ. ᎾᏂᎥ ᎩᎶ ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬ ᏧᏂᎾᏫᏱ [ᎠᏂᎲᏍᎨᏍᏗ;] ᎥᏝᏍᏗ ᏝᏉ ᎤᏂᏰᎸᎯ, ᎥᏝ ᎠᎴ ᎠᏎ ᎤᏂᏗᏱ ᏥᏂᎨᎬᏁᎰ ᎢᏳᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᎨᏳᎭ ᎤᎦᎵᏍᏗ ᎤᏓᏁᏘ ᎠᎲᏍᎩ. ᏤᏪᏥᏃ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏙᏓᎦᏥᎢᏍᏔᏂ; ᏂᎦᏗᏳᏃ ᏓᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎠᏂᎦᏔᎮᏍᏗ ᎾᏍᎩ ᎠᏴ ᏗᏥᎪᎵᏰᏍᎩ ᎨᏒ ᎤᏕᎵᏛ ᎨᏒ ᎠᎴ ᏧᏂᎾᏫ; ᎠᎴ ᏓᏨᏁᎵ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎾᏍᎩᏯ ᏄᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎸᎢ. “ᎠᎳᏑᎶ ᎠᎩ?” ᎤᎾᏛᏁ ᎠᏂᏐ. ᎠᎴ ᎤᏂᎪᎲ ᎤᏣᏘ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᎾᏍᎩ ᎢᏳᏍᏗ ᎼᏏ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏣᏘ ᏥᎾᏰᏍᎦ ᎠᎴ ᎠᎩᎾᏫᎭ. ᏧᎾᏙᎴᏆᏍᏗ ᏭᏂᎷᏣ ᎦᏳᎳ ᏄᏬᎡ ᎤᏤᎵ ᎦᎾᏌᎢ. ᏍᎩᎾ ᎤᏬᏚᏨ ᎫᏩᏓᏅᏖᏗ ᎨᏒ ᏚᏬᎡ. ᎢᏳᏃ ᎦᏅᏓᏓ ᎤᏠᎾᏍᏗ ᏂᎨᏒᎾ ᎪᎯᏳᏗ ᎨᏒ ᏥᏣᏯᎠ, ᎾᏍᎩ ᎢᎬᏱ ᏧᏯᎢ ᏣᎵᏏ ᎶᏏ ᎠᎴ ᏣᏂ ᏳᏂᏏ, ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎠᎩᏰᎸᎭ ᏂᎯ ᎾᏍᏉ ᏣᏯᎥᎢ. ᎤᏕᏘᏴᏌᏗᏒ ᏱᎨᎬᏬᎥᏗᏍᎬᎾ ᏥᎨᏒ, ᎠᏯ ᏃᎴ ᏲᎾ ᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎢᏰᏆ ᏙᎩᏂᏂᏴᎲ. ᏣᏄᏏ! ᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᏕᎰᎯᏳᎲᏍᎦᏍᎪ ᎠᎾᏙᎴᎰᏍᎩ? ᏥᎦᏔᎭ ᏕᎰᎯᏳᎲᏍᎬᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᎱᎵ ᎤᎵᏍᏚᎢᏎᎢ, ᎦᏃᎪᏃ ᎤᏕᎵᏌᏕᏎᎢ, ᎠᎴ ᎤᏬᏂᏎ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ. ᎠᎴ ᏴᏫ ᎾᏍᎩᏯ ᏄᏍᏛ ᎨᏎᎢ, ᎤᏩᏒ ᎾᏥᎸᏉᏛᎾ ᏄᏓᏛᏁᎴᎢ, ᎠᎴ ᎤᏬᎯᏳᎯᏍᏛ ᏄᎵᏍᏔᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎾᏍᎩ ᏓᏓᎿᏩᏍᏛ ᎠᏲᎱᎯᏍᏙᏗ ᎨᏒᎢ. ᎠᏎᏃ ᏉᎳ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᎨᏒ ᏕᎪᎩᏂᎵᎥᏂᎸ ᏧᏚᎪᏔᏅᎯ ᏂᎨᏒᎾ ᎣᎩᏂᏍᎦᏅᏨᎢ, ᎣᏍᏗᎶᎻ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏕᎪᎩᏂᏴᏔᏅ, ᏥᎪᏃ ᎿᏉ ᎤᏕᎵᏛ ᎢᎪᎩᏂᏄᎪᏫᏍᎦ? ᎤᏙᎯᏳᎯ ᎥᏝ, ᎤᏅᏒᏍᎩᏂ ᏩᏂᎷᎩ ᏫᎪᎩᏂᏄᎪᏩ. “ᎦᏙᏃ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᏂᎯᏍᎩᏂ ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏥᏍᏚᏁᎰᏰᏃ ᏴᏫ ᎦᎸᎳᏗ ᎤᏤᎵᎪᎯ; ᎥᏝᏰᏃ ᎢᏨᏒ ᏱᏥᏴᎯᎰᎢ, ᎠᎴ ᎥᏝ ᎤᎾᏁᎳᎩ ᏩᏂᏴᎭ ᏱᏗᏤᎵᏎᎰ ᏩᏂᏴᎯᎯ. ᎾᎿᏃ ᏫᎤᏪᏅ ᎤᏍᏗᎩᏛ, ᏚᎪᎮ ᏥᎻ, ᏤᏈᏗ ᎤᏪᏥ, ᏣᏂᏃ ᎾᏍᎩ ᏗᎾᏓᏅᏟ, ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᎾᏣᎡ ᏥᏳᎯ ᏓᏃᏢᎯᏏᏍᎨ ᏧᏂᎦᏯᎷᏗ. ᏍᏓᎵᎪᏒᎾᎲ Ꮭ ᏱᏛᏣᏂ? ᏥᏲᏎᎸ. ᎠᏯ ᎠᏇᏅᏒ. ”ᏱᏓᏆᏓᏟᏴᎭ, ᎦᏓᎭ ᏱᎾᏆᎵᏍᏔ,” ᎤᏛᏁ ᏫᎵᎻ. ᎠᎴ ᎾᎿ ᎠᏂᏲᎯᎮᏍᏗ ᏧᎾᏓᎴᏅᏛ ᎠᏴ ᎤᎾᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏣᏓᎴᏅᏛ ᏗᎦᎸᏉᏗ. “ᎭᏩ, ᎦᏓᎭᏗ ᏃᎴ ᎠᏎ ᏛᏓᏅᎦᎸᎯ.” ᎦᏙᏃ? ᏥᎪ ᏂᏨᎨᏳᏒᎾ ᎨᏒ ᎢᏳᏍᏗ? ᎤᏁᎳᏅᎯ ᎠᎠᏔᎭ. ᏐᎣᏁᎳᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏎᎢ, ᎠᎴ ᎬᏩᏛᏁᎢ. ᏂᎯ ᎠᎹ ᎡᎶᎯ ᎤᏤᎵᎦ; ᎢᏳᏍᎩᏂ ᎠᎹ ᏳᏥᏍᎪᎸ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎠᎹ ᏯᏙᏢᎾ; ᎥᏝ ᎿᏉ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎦᎩ, ᎠᏗᏅᏗᏉ ᎤᏩᏒ, ᎠᎴ ᏴᏫᏉ ᎤᎾᎳᏍᏓᎡᏗ. ᏂᏥᎦᏔᎲᎾᏃ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᏑᎾᎴᎢ; ᏕᏨᏅᏰᏃ ᎦᏙ ᎤᏍᏗ? ᎤᎬᏎᏛᏉ ᎾᏍᎩᏯᎢ ᎾᏍᎩ ᏞᎦ ᏥᏚᎾᏄᎪᎪᎢ ᎿᏉᏃ ᏣᎵᏛᏗᏍᎪᎢ. ᏦᎳ ᎠᏂᏝᏍᎬ ᎦᏅᏃᏩ, ᎾᏍᎩᏯ ᎨᏛᏍᏗ ᏧᎧᎵᎢᎰ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ, ᎦᏙ ᎤᎵᏍᏙᏔᏁ ᏘᎦᏙᎵ ᏚᎵᏍᏚᎢᏎᎢ? ᎤᏤᎵᎦᏰᏃ ᏥᏓᏕᏲᎲᏍᎪ ᎢᏳᏍᏗ ᎨᏎᎢ, ᎥᏝᏃ ᏗᏃᏪᎵᏍᎩᏉ ᏥᏓᎾᏕᏲᎲᏍᎪ ᎢᏳᏍᏗ ᏱᎨᏎᎢ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏧᏓᏅᎦᎸᏛ ᏧᏂᎾᏫ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏂᎪᏩᏛᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎢᏗᎾᏰᏍᎨᏍᏗ ᎾᏍᎩ ᏒᎩᏚᎢᏍᏓᏁᎸ ᎾᎩᏴᏍᏗᏱ ᏥᎩ ᎤᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏱᏅᎦᎵᏍᏓ ᏂᎯ ᎩᎶ ᎡᏍᎦ ᎢᏦᎭᏒᎢ. ᏦᏩᏃ ᎠᎴ ᎠᏲᎵ ᎤᏥ ᎠᏂᏍᏆᏂᎪᏍᎨ ᏄᏍᏛ ᎠᏥᏁᎢᏍᏗᏍᎬ ᎾᏍᎩ. ᏲᎾ ᎤᏤᏍᏙ ᏭᎩᎶᏫᏎ ᎧᏁᏌᎢ ᎦᏚᎢᏣ ᎤᏩᏁᎢ. ᎠᎴ ᎾᏍᎩ ᎨᏥᏁᎸᎩ ᎾᏍᎩ ᏧᏂᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏧᏂᎩᎸᏗᏉᏍᎩᏂ ᎯᏍᎩ ᎢᏯᏅᏙ; ᎤᎾᏓᎩᎸᏗᏃ ᎨᏒ ᎦᏙᎬ ᎠᏓᏨᏯᏍᏗᏍᎩ ᎤᎾᏓᎩᎸᏗ ᎨᏒ ᎾᏍᎩᏯ ᎨᏒᎩ ᏴᎾ ᎿᏉ ᎤᏪᏨᏯ. ”ᎧᎪᏃ ᏂᎦᏓ?” ᎤᏛᏛᏁ ᎡᎶᏗ. ᎠᏎᏃ ᏫᎬᏩᎪᎲ ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏒᎢ, ᎤᏤᎸᏅᎯ ᎤᏁᎵᏎᎢ, ᎠᎴ ᎤᏁᎷᏁᎢ. ᎢᏳᏍᎩᏂ ᎩᎶ ᎦᎶᏁᏛ ᎠᏍᏓᏩᏗᏙᎯ ᎨᏒ ᎤᏍᏛᏗᏍᎨᏍᏗ ᎠᎩᎵᏲᎨᏍᏗ, ᏞᏍᏗ ᏯᏕᎰᏍᎨᏍᏗ, ᏫᎦᎸᏉᏓᏉᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏫᏂᎦᎵᏍᏙᏓ. ᎾᏍᎩ ᎯᎠ ᏥᏄᏂᏪᏒᎩ, ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ ᎠᏁᎮᏍᏗ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ, ᎾᏍᎩ ᎤᏅᏒ ᎤᎾᏚᎸᏅᎥᏍᎬ ᏂᏚᏳᎪᏛᎾ ᎠᏂᏍᏓᏩᏕᎩ. ᎾᏍᎩᏰᏃ Ꮎ ᎤᏩᏒ ᎤᏇᏓᎵ ᎠᏫᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏲᎩ ᎦᏟᏏᏍᎨᏍᏗ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏓᏅᏙᎩᎯ ᎠᏫᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᎦᏅᏙ ᎤᎾᏄᎪᏫᏒᎯ ᎬᏂᏛ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎦᏟᏏᏍᎨᏍᏗ. ᏃᏉ ᏴᏫ ᏚᏂᏯᏪᎦ ᎠᏂᎪᎵᏰᏍᎬ “ᎤᏍᏆᏂᎩᏗ ᏏᏆ!’ ᎢᏳ ᎠᎴ ᎩᎶ ᏳᏬᎯᏳᎭ ᎪᎱᏍᏗ ᎠᎦᏔᎲᎢ, ᎥᏝ ᎪᎱᏍᏗᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏏ ᎤᎦᏙᎥᏒᎯ ᏱᎩ. ᏒᎦᎾᏲᎪ!” ᏆᎦᎹᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ, ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎢᏧᎳᏗᏢ ᏗᎪᏍᏓᏯ ᏥᎦᏁᎭ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏂᎪᎲ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏞᎬᏉ ᎬᏴᎯ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ! ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎠᎨᏴ ᎡᏂᏧᏙᎢᏛ ᎠᏙᎴᎰᏍᎩ ᎡᎮᎢ, ᎾᏍᎩ ᏆᏄᎡᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎡᏌ ᎠᏂᎳᏍᏓᎸ ᎤᏠᏱ, ᎾᏍᎩ ᎤᏣᏘ ᎠᎦᏴᎵᎨ ᎨᏎᎢ, ᎠᎴ ᎦᎵᏉᎩ ᎢᎫᏕᏘᏴᏛ ᎤᎾᏁᎳᏛᎯ ᎨᏎ ᎠᏍᎦᏯ ᎠᏛᏉ ᎨᏒ ᏧᎾᏨᏛ; ᏗᏣᏓᏍᏆᏂᎪᏗᏳ ᎨᏎᏍᏗ ᎪᎱᏍᏗ ᏂᏗᏣᏓᏕᎵᏎᎲᎾ. ᎢᏳᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎦᏪᏒ ᎤᎾᏫᏱ, ᎠᎩᏅᏏᏙᎯ ᎪᎯᏗᎭ ᎤᎷᎯᏍᏗᏱ; ᎠᎴ ᎠᎴᏅᎲᎭ ᏙᎦᎵᎥᏂᎮᏍᏗ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎨᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎵᏍᏓᏴᎲᏍᎨᏍᏗ ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ, ᎠᎴ ᎤᏴᏍᏕᏍᎨᏍᏗ; ᎠᎴ ᎩᎶ ᎦᏌᎾᎵ ᎤᎩᎴᏍᏗ, ᏞᏍᏗ ᏴᏗᏠᎠᏍᎨᏍᏗ ᎠᏓᏁᎸ ᏫᏯᏴᎯᎮᏍᏗ, ᎠᎴ ᏞᏍᏗ ᎾᎿ ᏫᏯᏴᎯᎮᏍᏗ ᏭᎩᏍᏗᏱ ᎪᎱᏍᏗ ᎤᎿᎥ ᎦᏁᎸᎢ. ᎠᏍᎩᏗᏍᎨ ᎠᏂᏍᎦᏯ ᎠᏂᎷᎬᎢ ᎠᏰᎳᏍᏗ ᏃᎴ ᎦᎶᏇ ᏗᏂᏁ. ᎠᎴ ᏄᎪᎸᎾ ᎾᎬᏁᎸ, ᎾᏍᎩ ᎠᏩᏘᏍᎩ ᏄᎵᏍᏔᏁ ᏫᎾᏍᏛᎾ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎾᏂᎥ ᎬᏬᎯᏳᎲᏍᎩ; ᎿᏉᏃ ᎡᎩᎵᏈ ᎯᎠ ᏄᏪᏎᎸᎩ ᏉᎳ; ᏨᏒ ᎭᎵᏍᏕᎵᏍᎬ ᎨᏣᏁᎢᏍᏗ ᏂᎦᎵᏍᏓ. ᎿᏉᏃ ᏉᎳ ᎤᏙᏯᏅᎯᏛ ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬ ᎤᏬᏂᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎧᏃᎯᏰᏃ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᎤᏍᏆᎸᎯᏕᎾ ᎨᏒᎩ. “ᎤᏅᏌ ᏩᏁᎾ ᏗᏂᏲᏟ,” ᎤᏛᏁ ᎡᎶᏗ. ᎤᏂᏁᏨᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ, ᏣᎬᏫᏳᎯ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᎸᎯᏢ ᎪᎱᏍᏗ ᎤᎵᏬᏨᎯ ᏥᎦᏃᎢ, ᎾᎿ ᎠᏬᎭᎵ ᎠᎾᏓᏟᏏᏍᎪᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯ ᎠᏆᏤᎵ ᎤᎵᏍᏈᏗ ᎠᏟᏍᏛ ᏓᏣᏗᏔᎯ, ᎠᎴ ᎠᏴ ᎥᏆᏬᏍᏙᏗ ᎨᏒ ᏙᏓᏰᏣᏬᏍᏔᏂ. ᏥᎦᏘᏏᏍᎩᏂ ᎠᎴ ᏥᎦᏍᎦᏂ ᎩᎶ ᎤᏪᏗᏱ ᎥᏝ ᎠᏴ ᎠᏆᏓᏁᏗ ᏱᎩ, ᎨᏥᏁᏗᏍᎩᏂᏃᏅ ᎨᏎᏍᏗ ᎾᏍᎩ ᎡᏙᏓ ᏧᏓᏁᎳᏁᎸᎯ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᏃ, ᎦᏙ ᎤᏛᏁᎸ ᎤᏍᎦᏅᏨ? ᎠᏎᏃ ᎤᏟᏉ ᏂᎦᎡ ᎤᏁᎷᏁᎢ, ᏩᎦᏛᎥᎦ, ᎠᎾᏗᏍᎬᎢ. ᎠᏎᏉ ᎫᏩᏲᎴ ᎠᎹᏰᎵ ᎤᎾᏕᏅ ᎠᏂᏳᏩᏁᎦ. ᎠᎵᏣᏙᏂᎰ Worcester ᏧᏙᎩᏓ ᎤᏍᏕᎸᎮ ᏍᏏᏉᏯ ᏗᎦᏁᏟᏰᏍᏗ ᏕᎪᏪᎸ ᎢᎦᏓ ᎾᏍᎩ ᎪᏪᎵ ᏗᎦᎴᏴᏙᏗ ᎡᎵᏊ ᏗᎬᏩᏂᎴᏴᏙᏗ ᎢᎬᏩᎵᏍᏙᏗ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᏥᎷᏨᎭ ᎬᏗᏍᎩ ᎡᎮᏍᏗ ᏯᏇᎵᏒ, ᎦᏙ ᎾᏍᎩ ᏨᏙᏗ? ᏍᎩᏍᏓᏩᏚᎦᏉ. ᏔᎵᏁᏃ ᎤᏪᏅᏎᎢ, ᏭᏓᏙᎵᏍᏔᏁᎢ, ᎯᎠ ᏫᏄᏪᏎᎢ; ᎡᏙᏓ, ᎠᏎᏃ ᏐᎵᎹᏅ ᎤᏁᏍᎨᎴᎢ. ᏄᏓᎴᏨ ᎤᏓᏅᏛ, ᎤᏍᎦᏃᎵ ᎤᏪᏙᎸ ᎠᏁᏙᎲ, ᏭᏓᏑᏴᏅ ᎤᏟᏂᎩᏛ ᏌᎪᏂᎨ ᏭᎾᏓᏴᎳᏛ ᎦᏚᏏ. ᎠᎬᏱ ᏙᎩᎾᏦᏒ ᏧᎷᏫᏍᏔᏁᏗ ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ, ᎢᎦᎦᏘᎭ ᏙᎩᎾᏙᎵᏨ, ᎠᏎᏃ ᎠᎩᏙᏓ ᏄᏕᏘᏴᎲ ᎾᎥᏂᎨ ᎨᏒ Crockett. Ꮓ ᏣᎵ ᎤᎩᏒᏎ ᎤᎵᏍᏙᏗ. ᎾᏍᎩ ᎢᏦᎯᏳᏒ ᎠᎪᎵᏰᏗ ᎨᏒ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎪᎵᏰᏗ ᎨᏒ ᎾᏍᎩ ᎠᏲᎩ ᏥᎩ, ᎾᏍᏉ ᎠᏥᎸ ᎬᏔᏅᎯ ᎠᎪᎵᏰᎥᎯ ᏱᎩ, ᏱᏩᎵᏰᎢᎶᎦ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᏥᏌ ᎦᎶᏁᏛ ᎦᎾᏄᎪᏥᎸ ᎢᏳᎢ. ᎢᏧᎳ ᏧᏬᏰᏂ ᏗᎬᏘ ᎤᏎᎸ ᏂᎬᎾᏛ ᎦᏙᎯ ᏄᏍᏗᏓᏅ. ᎾᏋ ᏄᎾᏓᎸ ᎠᏂᏧᏣ, ᏃᎴ ᏚᏙᏪᎸ ᎦᏙ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ. ᎠᏂᏆᎵᏏᏃ ᎤᏂᏄᎪᏨ, ᎩᎳᏉ ᎢᏴᏛ ᏭᎾᎵᏃᎮᎴ ᎡᎶᏛ ᎬᏩᏍᏕᎵᏍᎩ ᎬᏩᏡᏗᏍᎬ, ᎾᏍᎩ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ. ᎤᏍᏗ ᎤᏔᏅ ᎫᎦ ᎤᏩᏛᎮ ᎪᏱᏁᎢ. ᎩᏂᎨᏒᏃ ᏄᏛᏁᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎤᎵᏂᎪᎯᏍᏗᏍᎨᎢ. ᎤᏍᏆᏂᎩᏓᏁᎴ ᎣᏍᏓᏓᏤᎵ. ᎾᎯᏳ ᎤᎾᏨᏓᎵ ᎠᎾᏓᏛᎥᎦ, ᎤᏙᎯᏳ ᎤᏂᎦᎾᏍᏓ, ᏙᏣᏓᎩᏍᎪ ᏃᎴ ᎭᎾᏊ ᏙᏥᏯᎩᏍᎪ. ᎠᏍᎪᎯᏃ ᎢᏯᏂᏛ ᎤᎾᏛᎦᏅ ᎤᏣᏘ ᎤᏂᏔᎳᏬᏒᎩ ᏚᏂᏂᏆᏘᎸ ᎠᏂᏔᎵ ᏗᎾᏓᏅᏟ. ᎪᏍᏔᏱ ᎨᏒ ᎤᎧᏛ, ᏧᏍᏗ ᏗᎧᎵᏏᏐᏗ ᏓᎧᎭᏅ, ᏃᎴ ᏗᎪᏍᏔᏱ ᏕᎦᎾᏙᎬ ᎤᏤᏍᏗ ᎢᏳᏍᏗ. ᎡᏣᏓᏅᏛᎵᎾᏗ ᏂᎦᎥ ᎠᏥᎸᏉᏗᏳ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎡᏆᎭᎻ ᎤᏩᏒ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎤᏓᏬᏅᏛ ᎠᏰᎲ ᎤᏁᎸᎢ. ᎠᎩᏰᏗᏒ. ᎠᎴ ᎤᏄᏪᎩᎯ ᎠᎴ ᎦᎦᎶᎢ ᏧᏙᏍᏙᏗ ᎪᏪᎸᎩ, (ᎯᎠ ᏂᎬᏅᎩ,) ᏄᏂᎬᏫᏳᏕᎩ ᎠᏁᎲ ᏄᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᏁᎲ ᎤᎬᏫᏳᎯ. ᎪᏪᎵᏃ ᎤᏍᏗ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏒᎦᎸ ᏩᎩᏁᏒᎩ, ᎠᎴ ᎠᎩᏯᎣᏅᎩ; ᏥᎰᎵᏃ ᎠᏆᏅᏍᎦᎸ ᏩᏚᎵᏏ ᏥᏄᎦᎾᎯ ᏄᎦᎾᏒᎩ; ᎠᎩᏯᎥᏃ ᎠᎩᏍᏉᎵᏱ ᎡᎯᏍᏗᏳ ᏄᏩᏁᎸᎩ. ᎠᎴ ᎩᎬᎯ ᎬᏅᎯ ᎠᏄᏬ ᎤᏄᏩᎥᎩ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎠᎪᏎᎭ ᎠᏥᏯᏂᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏂᏳᏉ ᏕᏥᏅᎵ ᎾᎿ ᏗᏤᎲ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎠᏂᎦᏔᎿᎢ ᎠᎴ ᏗᏃᏪᎵᏍᎩ; ᎢᎦᏛᏃ ᏙᏓᏥᎵ ᎠᎴ ᏙᏓᏣᏛᏂ ᏓᏓᎿᏩᏍᏛᎢ, ᎢᎦᏛᏃ ᏙᏓᏥᎵᎥᏂᎵ ᏗᏥᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎤᏲ ᏂᏙᏓᏨᏁᎵ ᏕᎦᏚᎿᎥᎢ; “ᏄᏂᏍᏆᏂᎩᏗ ᎠᏂᏧᏣ! ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ, ᏗᏥᎨᏫ ᏗᏣᏓᏘᏂᏙᎯ! ᎯᎠ ᎢᏥᏪᏍᎩ; ᎩᎶ ᎢᎠᏎᎵᏛᏍᎨᏍᏗ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏎᏉᏉ ᎾᏍᎩ; ᎩᎶᏍᎩᏂ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎲᎢ, ᎾᏍᎩ ᎠᏍᏓᏱᏳ ᎤᏚᏓᎳ. ᏂᏥᎥᎢ ᎢᎦ-ᎦᏘ ᏧᏪᏥ, ᎠᎴ ᎢᎦ ᏧᏪᏥ; ᎥᏝ ᏒᏃᏱ ᎠᎴ ᎤᎵᏏᎬ ᎢᏕᎯ ᏱᎩ. ᎤᏁᏤᏃ ᏓᏆᎴᎷ ᎤᎴᏫᏍᏙᏗᏱ. ᎿᏉᏃ ᏭᏂᎦᏐᎠᏏᎴ ᎠᎹᏱ ᎢᏧᎳ ᏈᎵᎩ ᎠᎴ ᎠᏳᎾᎦ, ᎾᏍᎩᏃ ᎠᎦᏬᎡᎢ. ᏕᎭᏓᏅᎡᎮᏍᏗᏍᎩᏂ ᏄᎵᏌᎶᏛᎾ ᎠᎴ ᏅᎦᏔᎲᎾ ᏚᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎯᎦᏔᎭᏰᏃ ᏗᏘᏲᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎲᎢ. ᏅᎩᎦᏔᎲᎾ ᎨᏒᎩ, ᎥᏝᏃ ᏱᏍᎩᏴᏔᏁᎢ; ᎠᎩᏰᎸᎭ ᎨᏒᎩ, ᎥᏝᏃ ᏱᏗᏍᎩᏄᏬᎡᎢ; ᎠᎩᏢᎬᎩ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎥᎩᏍᏚᎲᎩ, ᎥᏝᏃ ᏱᏍᎩᏩᏛᎯᎴᎢ. ᏔᎷᏦ ᏭᎸᏅ ᏫᏚᎵᎪᏔᏅ ᏧᎾᏍᏗᏥ, ᏭᏭᏌᏅ ᏔᎷᏣ ᏣᎵ, ᎠᎴ ᏱᏚᏲᎰᏏ. ᎬᎨᏳ ᎡᏆ ᎠᏣᏗ. ᏫᏥ ᏩᏓᏬᏣ, ᏫᏥ ᏩᏓᏬᏣ… ᎠᎴ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ ᏥᏌ ᎦᎶᏁᏛ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏍᎩ, ᎠᎴ ᏗᏓᎴᏅᏗᏍᎩ ᎠᏲᏞᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎤᏂᎬᏫᏳᎯ ᎤᎾᏤᎵᎦ. ᎾᏍᎩ ᎢᎩᎨᏳᎯ ᏥᎨᏒᎩ ᎠᎴ ᎤᏩᏒ ᎤᎩᎬ ᎢᎪᏑᎴᏔᏅᎯ ᏞᎩᏅᎦᎸᏛ ᎢᎩᏍᎦᏅᏨᎢ, ᏦᏈ ᎦᏚᎲ ᎨᏙᎲᎩ ᎦᏓᏙᎵᏍᏗᏍᎬᎩ; ᏩᎦᎵᎰᏃ ᎾᏍᎩᏯ ᎾᏆᎵᏍᏓᏁᎸ ᎠᏆᏁᎳᏫᏎᎸᎩ, ᎠᏖᎵᏙ ᎠᎩᎪᎲᎩ ᎡᎳᏗ ᏅᏓᏳᏍᏗᏗᏒᎩ, ᎡᏆ ᎠᏄᏬ ᎾᏍᎩᏯᎢ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᏅᎩ ᏂᏚᏅᏏᏴ ᏥᏚᏂᏂᏴᏐᎢ; ᎠᎴ ᎠᏴ ᎠᎩᎷᏤᎸᎩ. ᎤᏂᏁᏨᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸ ᏥᏌ; ᎥᏝ ᏲᏥᎦᏔᎭ. ᎯᎠᏃ ᎤᎦᏃᏫ ᎨᏎ ᏩᎦ ᏃᎴ ᏐᏈᎵ ᎤᏂᏴᏍᏗ ᎭᏫᏂ ᏯᏂᏯᎠ ᏗᎦᎾᏌᎢ, ᏃᎴ ᎤᏁᏌᏴᏗ ᎨᏐ ᎪᎨ, ᏤᏆ ᏗᏍᏚᏗ ᏗᏍᏚᎩᏓ ᏱᎩ. ᎤᏕᎵᏛᏰᏃ ᎠᏍᎦᎾ ᎦᏳᎳ ᏚᎸᏫᏍᏓᏁᎭ; ᎪᎯᏍᎩᏂ ᎨᏒ ᎠᏲᏍᏙᏗᏍᎩ ᏥᎩ ᎤᏲᏍᏙᏓᏁᎮᏍᏗ ᎬᏂ ᎠᏥᎧᎲᏒᎭ. ᎠᎴ ᎾᏍᏉ ᎤᏁᎸ ᏧᏭᎪᏙᏗᏱ, ᏅᏧᎵᏍᏙᏔᏅ ᏴᏫ ᎤᏪᏥ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᏥᏌ ᏚᏪᏐᏨᎩ ᎨᎵᎵ ᎥᏓᎸᎢ, ᎾᏍᎩ ᏓᏈᎵᏯ ᎥᏓᎸ ᏥᏚᏙᎥ. ᎩᎶᏃ ᏓᏓᏂᎸᎨᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎠᏙᎴᎰᏍᎩ ᎨᏒ ᎤᏗᎦᎵᏍᏙᏗᎨᏍᏗ, ᎠᏙᎴᎰᏍᎩ ᎠᎦᎫᏴᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᎠᎦᎫᏴᏓᏁᎮᏍᏗ; ᎩᎶᏃ ᏓᏓᏂᎸᎨᏍᏗ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎤᏓᏅᏘ ᎨᏒ ᎤᏗᎦᎵᏍᏙ ᏗᏍᎨᏍᏗ, ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎠᎦᎫᏴᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᎠᎦᎫᏴᏓᏁᎮᏍᏗ. ᎠᏎᏃ ᏉᎳ ᎥᏝ ᎣᏏᏳ ᏳᏰᎸᏁ ᎤᎾᏘᏅᏍᏗᏱ, ᎾᏍᎩᏰᏃ ᎤᎾᏓᏓᎴᏓᏁᎴ ᏆᎻᏈᎵᏱ, ᎠᎴ ᎥᏝ ᏳᎾᎵᎪᏁᎴ ᏚᏂᎸᏫᏍᏓᏁᎵᏙᎲᎢ. ᏕᎹᏍᎦᏃ ᏫᏥᎦᏛᎢ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎬᎩᏁᏤᎸᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏍᎦᏯ ᎥᏝ ᎠᎨᏴ ᏯᎪᏢᎾᏁᎴᎢ, ᎠᎨᏴᏍᎩᏂ ᎠᏍᎦᏯ ᎠᎪᏢᎾᏁᎴᎢ. ᎢᎾᏛ ᏂᎯ! ᎤᏂᏍᎦᏎᏗ ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏰᏣᏗᏫᏏ ᎠᎩᎵᏲᎢᏍᏗ ᏗᎨᏒ ᏨᏍᎩᏃᎢ? ᎾᏍᎩ ᎩᎶ ᎤᎶᏒᏍᏓᏁᏗᏱ ᎠᎴ ᎤᎶᏄᎮᏗᏱ ᏂᎨᏒᎾ ᎠᎾᎵᏅᏟ ᏥᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎤᎬᏩᎵ; ᎤᎬᏫᏳᎯᏰᏃ ᏗᏞᏤᎯ ᎯᎠ ᎾᏍᎩ ᎾᎦᎥ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏨᏃᏁᎸᎯ ᎠᎴ ᎢᏨᏲᎢᏳᏓᏁᎸᎯ ᏥᎩ. ᏫᏚᎾᎧᎿᏅᏃ ᎤᏂᎪᎮ ᏅᏯ ᎠᎲᏛ ᎨᏒᎢ, ᎤᏣᏘᏰᏃ ᎡᏉᎯᏳ ᎨᏎᎢ. ᎬᏩᏂᏴᎲᏃ ᎬᏩᎴᎢ, ᎠᎴ ᏖᎸᎳᏗ ᏓᏫᏒ ᏙᏱᏗᏢ ᏫᎬᏩᏓᎢᏅᏎᎢ. ᏉᎳᏃ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏅ ᏗᏂᎳᏫᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎪᎯ ᎢᎦ ᎢᏯᏍᏗ, ᎠᏆᏓᏅᏙ ᎠᏆᏎᎮᎲ ᏓᎩᎸᏫᏍᏓᏁᎲᎩ ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. Ꮳ ᎪᎯᎢᎪᎯᏛ ᏱᎬᏅᎭᏁᏍᏗ, ᏗᎨᏥᏴᏣᎬ ᎨᏎᏍᏗ, ᏗᏒᎾᏔᏅ ᏓᏂᏯᎩᏍᎨᏍᏗ. ᎨᏍᏗ ᎪᎰᏍᏗ ᎢᏥᏰᏍᏙᏗ ᏱᎩ. ᎠᎴ ᏥᎻ, ᎠᎴ ᏏᏆᏏ, ᎠᎴ ᏣᏂ, ᎾᏍᎩ ᏗᎵᎫᏍᏙ ᎨᏥᏰᎸᎢ, ᎤᏂᎪᎲ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩ ᎥᎩᏁᎸᎢ, ᎠᏂᎦᏘᏏᏗᏢ ᏕᎪᎩᎾᏌᏕᏔᏅᎩ ᎠᏴ ᎠᎴ ᏆᏂᏆ ᎬᏂᎨᏒ ᎢᎬᏁᎯ ᏙᎦᏚᏓᏛᎢ; ᎠᏴᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᏬᎩᏂᎶᎯᏍᏗᏱ ᎤᎬᏩᎵ, ᎤᏅᏒᏃ ᏗᎨᏥᎤᏍᏕᏎᎴᎯ ᏗᏁᎲᎢ; ᎠᏙᎴᎰᏍᎩᏍᎩᏂ ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᎠᎦᏔᎯᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏎᎵᏔᏅ ᎤᏁᏤᎸᎢ, ᎠᏰᎵ ᎤᏇᏓᎵ ᎨᏒ ᎤᎾᏄᎪᏫᏍᏗᏱ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏪᏅ ᎤᏪᏗᏱ, ᏗᎬᎩᎶᏛ ᏧᎧᎭᏲᏛ ᏗᎭᎾᏬ ᏓᎩᎸᏙ ᎠᎶᏁᎥᎢ ᏕᎦᎶᏗ. ᎥᏝᏰᏃ ᎩᎶ ᎠᏏ ᎢᎸᎯᏳ ᏳᏂᏆᏘᎶ ᎤᏩᏒ ᎤᏇᏓᎸᎢ; ᎨᎶᎰᏍᎩᏂ ᎠᎴ ᎠᏍᏆᏂᎪᏗᏍᎪᎢ, ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᏂᏓᏛᏁᎲ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ; ᏗᏓᏥᎶᏍᏗᏍᎩ ᏚᏥᎶᏍᏔᏁ ᏫᎵᎻ. ᎢᏓᏓᏅᏟ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᎴ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎾᏙᎴᎰᏍᎩ ᎤᎬᏫᏳᎯ ᏕᎤᏙᏍᏛ ᎤᏂᏁᎢᏍᏔᏅᎯ ᏥᎩ, ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ. ᏂᎦᏛᏃ ᏴᏫ ᏫᏚᏯᏅᎲ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏍᎩᏯᏛᏓᏍᏓᏏ ᏂᏥᎥᎢ, ᎠᎴ ᎢᏦᎵᎩ; ᎤᎧᏛ ᎠᎬᏱᏣ ᏄᏩᏁᎴ ᎤᏬᏯᏅ ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎬᎪᏩᏛᏗ ᏱᎨᏎ. ᏣᏓᏏᏂᏕᏍᏗ-- -ᏤᏍᏗ ᎲᏅᏤᎸ! ᎤᏍᎦᎣᏅ ᎨᏎᎢ ᏫᎵᎻ. ᏅᏩᏓᎴ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏬᏒᎩ; ᎦᎸᎳᏗᎡᎯ ᎤᎬᏫᏳᎯᎨᏒ ᎾᏍᎩᏯᏉ ᎠᎪᏙᏗ, ᎾᏍᎩ ᎠᎨᏴ ᏧᎩᏎ ᎠᎴ ᏧᏑᏴᏁ ᏦᎢ ᎢᏳᏟᎶᏛ ᎢᏒ ᎦᎸᎢ, ᎬᏂ ᏂᎦᏛ ᎤᎪᏐᏅ. ᎠᎴ ᏝᏍᏗ ᎯᎠ ᏅᏓᏲᏥᏪᏏ ᎢᏤᎵᏒᎩ ᏙᏗᏣᏓᏅᏛᎢ; ᎡᏆᎭᎻ ᎣᎩᏙᏓ; ᎢᏨᏲᏎᏰᏃ ᎤᏁᎳᏅᎯ ᏰᎵᏉ ᎯᎠ ᏅᏯ ᏱᏕᎬᏓ ᏱᏕᎪᏢᎾ ᎡᏆᎭᎻ ᏧᏪᏥ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏥᏌᎳᏛᎦ ᏗᏦᏰᏂ ᎡᎳᏗ ᎢᏧᎵᏍᏔᏅᎯ ᏥᎩ, ᎠᎴ ᏗᏥᏂᎨᏂ ᏗᏩᎾᎦᎳᎢ; ᏑᎾᎴ ᎣᏏᏉ ᏂᏓᎦᎵᏍᏔᏂ. ᎠᎴ ᎦᏙᏃ ᎤᎾᏰᎯᏍᏗ ᏂᎦᏛᎿᏕᎦ ᏂᎪᎯᎸᎢ? ᎠᏎᏃ ᎦᏲᏟ ᎤᏦᏍᏔᏁ, ᎠᏓᎾᏩᏍᏘ. ᏍᎩ ᎠᏧᏍᏛ, ᏃᎴ ᎠᏓᏅᏓᏍᏗᏍᎩ, ᎤᏩᏌ ᏣᏓᎵᏓᏍᏔᏁᎰ ᎢᏳᏍᏗ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ, ᎢᏥᏰᎯᏍᎬᏰᏃ ᎤᏲ, ᏱᏕᏥᎿᏍᏕᏢᏓ ᎾᏍᏉ ᎤᏣᎴᏍᏗ. “ᏰᎵ ᎤᏟᏂᎬᏁᎴ ᎣᏍᏓᏓᏤᎵ, ᏃᎴ ᎠᏍᎪᎵ ᎠᏥᎵᎥᏂᎴ ᎠᏣᏗ ᎦᏂᏓᏛ ᎬᏘ, ᏚᏓᎨᏏᏙᎴ ᏚᏏᎳᏛ ᎠᏟᏗ.” ᏑᎾᎴ ᎤᏃᎴ ᎤᏛᎴᎮ ᎭᏫᏂ. ᏧᎾᏚᎪᏓᏁᎸᎯ ᎨᏐᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏕᎤᏂᏲᏒ ᎢᎬᏱᏱ ᎤᏃᎯᏳᏅᎢ. “ᎠᏯ ᎠᏆᏤᎵ ᎨᏎᏍᏗ ᏂᎬᏁᎰᏅ. ᏑᎾᏙᏓᏆᏍᏗ ᎢᎪᎯᏓ, ᎦᏲᏟ ᎪᏪᎵ ᎬᏂᎨᏒ ᎢᏗᎬᏁ, ᎠᏂᏖᎵᏙ ᏃᎴ ᎤᎬᏫᏳ ᏍᏉ ᏗᏟᏃᎮᏙᏗ. “Ꭳ, ᏤᏍᏗ ᏯᎦᏎᏍᏗᏍᎨᏍᏗ ᏂᎦᏛᏁᎲ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᎩᏚᏓ ᏂᎪᎯᎸ ᎠᏎ ᏓᏁᎶᏗᏍᎪ ᎤᎾᏗᎴᎩ ᎨᏒᎢ, ᎢᎦᏛ ᏍᏆᏂᏯ ᎠᎹᏰᎵ ᏧᎦᎾᏮ ᏗᏳᎾᏓᎴᏅᎯ. ᎡᎳᏗ ᏩᎩᏅᏅ, ᎠᏆᏁᎸᏔᏅ ᎠᎩᏁᏥᏳᏍᏔᏁᏗ ᏥᎪᏩᏘᏍᎬ ᎠᏍᎦᏯ, ᎨᏍᏗᏰᏃ Crockett ᎤᏁᏨ ᏱᎨᏎ ᎤᏃᏪᎳᏅ. ”ᏫᎵᎻ ᎪᏎᎰ ᏔᎵᏁ ᎠᏇᏥ. ᎤᏩᏒ ᏚᏓᏘᎿᎥ ᎣᏍᏛ ᏗᎧᎿᏩᏗᏙᎯ, ᏧᏪᏥ ᎬᏬᎯᏳᎯᏳ ᎠᎴ ᎬᏩᎸᏉᏗᏳ ᎢᎬᏁᎯ. “ᎩᎳᏈᏴ ᎩᏅᎪᎢ ᏏᏆ ᎤᏴᏍᏗ,” ᎤᏪᎷᏁ ᎪᏱᏁ. ᎢᏏᎵᏍᎩᏂ ᎤᏂᏍᏓᏩᏛᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎥᏝ ᏳᏂᏩᏛᎲ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ. ᏰᎵ ᎠᎵᎮᎵᎬ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏧᏂᏒᏍᏗ, ᏃᎴ ᎨᏍᏗ ᏯᎴᏫᏍᏗᏍᎨ ᎧᏃᎮᏍᎬ ᎣᏍᏓᎢᏒ. ᎤᏂᏲᎯᏍᏔᎾ ᎠᎾᏓᏌᎩᏙᎲ, ᎩᎦ ᎠᏔᏍᎩᏍᎨ ᏃᎴ ᎤᎾᏑᎩᏍᏔᏅ ᎨᏎ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎤᎵᏍᏆᎵᏓ ᏱᎨᏎ. ”ᎲᎦ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ? ᎯᎠᏰᏃ ᎾᏍᎩ [ᏗᎧᎿᏩᏛᏍᏗ,] ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ, ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ, ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ, ᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏣᎬᎥᏍᎨᏍᏗ, ᎠᎴ ᏂᎦᎥ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏛᏍᏗ, ᎯᎠᏉ ᎢᎦᏪᏛ ᏥᎩ ᎾᎿ ᎠᏙᏣᎸᏍᎦ ᎤᏍᏆᎳ ᎧᏁᎢᏍᏗ ᎨᏒᎢ, ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᎾᏍᎩᏯ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ. ᎯᏣᏅᏔ ᏍᎩᎾᎾ ᎢᏴ ᎢᎦ ᏣᏓᏴᎳᏔᏍᎬ “ᎤᏔᎷᎩᏍᎩ ᏓᏏᎳᏛ. ᎯᎠᏃ ᏄᏪᎡᎴᎢ; ᎠᏇᏥ, ᏂᎪᎯᎸ Ꮙ ᎢᏧᎳᎭ ᎢᏂᏁᎸ , ᎠᎴ ᏣᏤᎵᏉ ᏂᎦᎥ ᎠᎩᎾᎥᎢ. ᎠᏍᏆᏂᎪᎯᏍᏗ, ᏎᎦ ᎠᎪᎵᏰᏗ ᏃᏉ ᏩᏍᏆᏂᎪᏙᏗ. ”ᎣᏍᏓ ᎤᏒᎯ, ᏫᎵᎻ!” ᎥᎴᏃ ᎤᎾᏙᏢᏒ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏐᏈᎵ ᏓᏅᏩ ᎤᏁᏅᏍᏗᏱ ᏥᎨᎦᏛᏅᎢᏍᏙᎢ; ᏚᏄᎵᏍᏚᎸᎩᏃ ᏗᎵᏍᏚᎶ ᎠᏕᎸᏓᎶᏁᎨ ᏗᎪᏢᏔᏅᎯ ᎾᏍᎩᏯᎢ, ᏚᎾᎧᏛᏃ ᏴᏫ ᏚᎾᎧᏛ ᎾᏍᎩᏯ ᎨᏒᎩ. ᎤᏁᎷᏁᎢ ᏌᏌ. ᏥᏌᏃ ᎤᏛᎦᏅ ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᏧᏢᎦᎥᏝ ᎤᏲᎱᎯᏍᏗ ᏱᎩ, ᎠᏥᎸᏉᏙᏗᏱᏉᏍᎩᏂ ᎤᏁᎳᏅᎯ, ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎠᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ. ᎤᏂᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᎢᏦᏑᎴᏍᎪᏰᏃ ᎦᏚᎢᏗᏢ ᎤᎵᏍᏈᏗ ᎠᎴ ᎠᏖᎵᏙ, ᎠᏎᏃ ᎠᏫᏂᏗᏢ ᎤᎧᎵᏨᎯ ᎨᏐ ᎠᏎᏉ ᎠᏓᎩᎡᏗ ᎨᏒᎢ ᎠᎴ ᏚᏳᎪᏛ ᏂᎨᏒᎾ. X. ᎠᎵᎪᏛᎾ ᎤᏓᎷᎸᎢ ᎤᎾᏙᏓᏆᏍᎬ, ᎦᏳᎳ ᏍᎦᏚᎩ ᎢᎬᎾᏕᎾ ᎤᏗᎦᎴᏲᏨ ᎨᏎ. ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏧᎷᏫᏍᏔᏁᏗ ᎦᎶᎯᏍᏗ ᎾᎥᏂ ᏬᎩᏂᎷᏣ, ᎤᎵᏍᎩᏃᎳᏛ ᎠᏌᎻᏓ, ᏩᎩᏴᎳ ᎣᎭᏁ ᏭᏴᎸ. ᎤᎵᎦᎵᏴᎭ ᎠᏙᎯ ᎤᎾᏛᏁᎸᏗ ᎠᏲᏓᏌᎲ ᎢᎬᎾᏕᏅ ᏕᏥᏩᏛᎲ ᎨᏥᎸ ᎠᏂᏧᏣ. ᎤᏍᏗ ᎦᏌᏆᎸ ᎠᏙᎯ. ᎤᏎᎦᏨᎯᏰᏃ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎩᎶ ᏯᏲᎱᎯᏏ; ᏯᏎᎦᎩᏍᎩᏂᏃᏅ ᎣᏍᏛ ᎠᏍᎦᏯ ᎩᎶ ᎬᏩᏲᎱᎯᏎᏗ ᏱᏂᎦᎩ. ᎤᎦᏔᎲᏎ ᎣᎭᏁ ᎢᏣ, ᎤᎪᎮ ᎬᏂᎨ ᎤᏓᏴᎳᏛ ᎡᎵᏍᏘ ᏲᎾ. ᎠᏏ ᎢᎦ ᏥᏚᏥᎸᏌᏓᏕᎭ, ᎢᏦᎯᏳᎲᎦ ᎢᎦ ᏚᎸᏌᏛᎢ, ᎾᏍᎩᏃ ᏂᎯ ᎢᎦ ᏚᎸᏌᏛ ᏧᏪᏥ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏥᏌ, ᎠᎴ ᎤᏓᏅᏒᎩ ᏚᏗᏍᎦᎳᏁᎸᎩ. ᏥᎦᎵᎰ ᎢᏳᏍᏗ ᏄᏛᏁ. ᎠᎴ ᏙᏓᏳᎦᎵᏏ, ᎠᎴ ᎤᎾᏠᎾᏍᏗ ᏩᏁᎲ ᏮᏓᏳᏎᎮᎵ; ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᎾᏥᎸᏉᏛᎾ ᏱᎨᏐᎢ, ᎤᏤᎵᎪᎯᏍᎩᏂᏃᏅ ᎤᏩᏒ, ᎠᎴ ᏧᏴᏫ ᎠᏁᎲᎢ, ᎠᎴ ᎤᏩᏒ ᎦᏁᎸᎢ. ᎿᏉᏃ ᎤᏍᏆᏛ ᏂᎦᏛ ᎦᏬᏂᏍᎬ ᎠᎾᏛᎩᏍᎬ ᏴᏫ, ᎨᏐᏂ ᏭᏴᎴᎢ. ᎠᎴ ᎩᎶ ᎠᏴ ᎠᎩᎪᏩᏘᏍᎩ ᏅᏛᎩᏅᏏᏛ ᎠᎪᏩᏘᏍᎪᎢ. ᎠᎹᎢᏒᏃ ᏅᏃᎯ, ᎠᎹᏱ ᎤᏂᎷᏤᎢ. ᎠᏳᎾᎦᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏂ ᎠᎹ, ᎦᏙ ᎠᎩᏲᏍᏙᏓᏁ ᎥᏆᏬᏍᏗᏱ? ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ--ᎤᏤᎵ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏙᏓ, ᎾᏍᎩ ᏂᎪᎯᎸ ᎦᎸᏉᏙᏗ ᏥᎩ, ᎠᎦᏔᎭ ᏂᎦᏥᎪᎥᏍᎬᎾ ᎨᏒᎢ. ᎿᏉᏃ ᏇᏍᏓ ᏚᎵᏃᎮᏔᏅ ᏗᏂᎳᏫᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏏᏐᎢᏧ ᏫᎲᏍᏓ? ᏏᏐᎢ ᏖᏏ. ᎠᎴ ᎶᏗ ᎤᏓᏅᏘ ᏧᏭᏓᎴᏎᎢ, ᎤᏕᏯᏔᏁᎸ ᏄᎾᎵᏏᎾᎯᏍᏛᎾ ᎠᏁᎲ ᎠᏂᏍᏚᎾᎢ. ᎾᏍᎩ ᏗᎩᎦᏴᎵᎨ ᎥᏝ ᏳᏚᎵᏍᎨ ᎤᏃᎯᏳᏗᏱ, ᎢᏴᏛᏉᏍᎩᏂ ᏄᏅᏁᏔᏁᎢ, ᎠᎴ ᏚᎾᏓᏅᏛ ᎢᏥᏈᏱᏉ ᏫᏂᏚᏅᏁᎢ, ᎯᎠᏃ ᏁᏍᏗᏪᏎᎸᎭ ᎠᏍᎦᏯ ᎦᏁᎳ, ᏗᏕᏲᎲᏍᎩ ᎯᎠ ᏅᏗᏣᏪᏎᎭ, ᎮᏢ ᎠᏁᏙᎯ ᎤᏂᏴᏍᏗᏱ ᎾᎿ ᎧᏃᎯᏰᎩ ᎢᏧᎳᎭ ᎣᎦᎵᏍᏓᏴᏗᏱ ᎬᏂᏍᏓᏩᏗᏙᎯ? ᎨᏍᏗ ᎪᎰᏍᏗ ᎤᏐᏱ ᏱᎨᏎ Houston ᏱᎦᏁᎳ ᎤᎬᏫᏳ ᎠᏂᏁᎵ, ᎤᏒ ᎢᏴ ᏱᎦᏬᏂ ᎤᎾᏅᏗ, ᎯᎸᎢᏴ ᏅᏙ ᎧᎸᎬ ᎢᎪᎯᏛ, ᎨᏍᏗ ᎣᏍᏓ ᎦᏢᏍᎩ ᏱᎨᏎ ᎤᎵᏏᎬ, ᎤᎵᏨᏓᏆ ᎦᏬᏂᏍᎨ ᏃᎴ ᎠᏗᏔᏍᎨ ᏃᎴ ᎤᏛᎦᏍᏕ ᎠᏂᏃᎩᏍᏗᏍᎬ ᎧᏃᎩᏍᏗ. ᎥᎥ, ᎪᎱᏍᏗ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎮᎾ, ᏤᏥ ᎬᏅ. ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏬᎯᏳᏅᎩ ᏥᏌ ᏄᏪᏎᎸᎢ, ᎠᎴ ᎤᏪᏅᏒᎩ. ᎢᎦᎦᏛᏍᎩᏂ ᏱᏕᏙᎭ, ᎾᏍᎩᏯ ᎾᏍᎩ ᎢᎦᎦᏛᎢ ᏤᎭ, ᏕᎦᏚᏓᏕᏫᏒ ᎢᎬᏒ ᎨᏒᎢ; ᎠᎴ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ ᎤᎩᎬ ᎢᎩᏅᎦᎵᎭ ᏂᎦᎥ ᎢᎩᏍᎦᏅᏨᎢ. ᎠᎴ ᎤᎾᏓᏅᏘᏐᏗᏱ ᎤᏅᏒ ᎤᎾᏚᏓᎴᏍᏗᏱ ᎠᏍᎩᎾ ᎤᏌᏛᎢ, ᎾᏍᎩ ᎫᏴᎩᏅᎯ ᏥᎩ ᎤᏩᏒᏉ ᎠᏓᏅᏖᏍᎬ ᎢᏧᏩᏁᎸᎯ. ”ᎤᏙᎯᏳᏗ,” ᎤᏛᏁ ᏣᏄᏏ. ᏐᏉ ᎤᏒᎯ, ᏩᏏᏓᏂ ᎠᏁᎯ ᎢᏳᎾᏛᏁᏗ ᎾᏆᏛᏁᎸ, ᎠᏤᎯ ᏗᎦᎳᏫᎩ Alabama ᏗᎾᏓᏬᏍᎩ ᏗᏁᎲᎢ ᏓᏳᎶᏒᎯ ᎠᏓᎦᏘᏕᎯ ᏥᏯᏘᏅᏒ ᎤᎦᏖᏃᎵᏙᎸ. ᏑᎾᎴᏃ ᏗᎦᏚᎲ ᏮᎠᎦᏛᎢ ᎠᎪᏄ ᎤᏲᏏᏌᏅᎩ. ”ᎨᏍᏗᏗ ᎣᏍᏓ ᎠᎫᎷᏤᏗ ᏯᏆᎵᏍᏕᎸᏙᏔᎾ,” ᎤᏛᏁ ᏌᏌ. ᎾᏍᎩ ᎠᏂᎦᏗᏓ ᎦᎵ ᎠᏂᏴᏫᏯ. ᎿᏉᏃ ᏅᏯ ᎤᏂᎲᏍᎩ ᎤᏲᎱᏒᎯ ᎦᏅᎢ. ᏥᏌᏃ ᏚᏌᎳᏓᏅᎩ ᏗᎦᏙᎵ, ᎯᎠ ᏄᏪᏒᎩ; ᎡᏙᏓ, ᎬᏯᎵᎡᎵᏤᎭ ᏥᏍᏆᏛᎦᏁᎸ. “ᏣᏗᏍᏉ ᎠᏯ,” ᎤᏛᏁ ᏥᏍᏕᏥ, ᏕᎦᏅᏙᎬ ᏕᎦᏅᎦᎵᏍᎨᎢ. “ᎪᎱᏍᏗ ᏳᏰᎵᏛᎾ ᏂᎦ ᎾᎾᏛᎦ!” ᏫᏕᎦᎦᏂᏍᎬ ᎠᎬᏱ ᏙᎦᏦᏒ ᎤᎬᏫᏳ ᎠᏂᏁᎵ, ᏯᏛᎾ ᎣᏍᏓ, ᏱᏙᎦᏙᎵᏤ. ᎠᎴ ᎦᏙ ᏯᎲᎦ ᏴᏫ ᏱᎦᏁᏟᏴᏍᏓ ᎤᏓᏅᏙ? ᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏎᎢ; ᎤᎦᏔᎲᏒᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎯᎠᏃ ᏄᏪᏎᎴ ᏥᏌ, ᏣᎬᏫᏳᎯ, ᏍᏆᏅᏓᏛᎭ ᏫᎷᏨᎭ ᏣᏤᎵᎪᎯ. ᎯᏁᎢᏍᏗ ᎤᏂᏲ ᎠᏂᏴᏩᏁᎦ ᎠᏂᏍᎦᏯ ᏓᏂᏁᎲ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎤᎾᎵᎩᏛ ᏚᏅᏓᏒ ᎤᎾᏗᏍᎦᏟ, ᎠᏎᏃ ᎨᏍᏗ ᏱᏥᎪᏩᏘ ᏍᎩᎾᎾ. ᏍᏓᏯ ᎢᏥᏟᏅᏨ ᏕᏣᏍᎩᏨ ᏗᏣᎵᎢ. ᎾᏍᎩ ᏥᏌ ᏚᏙᎥ ᏂᎦᏗᏳ ᏧᎾᎵᏂᏆᏁᏗᏱ ᎾᏍᏉ ᎦᎸᎶᎢ ᎠᏁᎯ, ᎠᎴ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎡᎶᎯ ᎭᏫᏂᏗᏢ ᎠᏁᎯ; ᎾᎯᏳ ᎢᎦ ᎩᎶ ᎦᏌᎾᎵ ᎤᎩᎴᏍᏗ, ᎤᎿᎥᏃ ᎦᎵᏦᏕ ᎠᎮᏍᏗ, ᏞᏍᏗ ᏅᏓᏳᏠᎠᏒᎩ ᎤᏫᏛᏗᏱ; ᎠᎴ ᎩᎶ ᏠᎨᏏᏫᎡᏙᎮᏍᏗ, ᏞᏍᏗ ᎾᏍᏉ ᏅᏓᏳᏨᏒᎩ. ᎨᏍᏓᏗ ᏂᎦᎾ ᏰᎬᏁ ᎯᎠ ᎠᏂᏣᎳᎩ ᏃᎴ ᏣᎾᏁᎳᏗᏍᎨ ᎠᏂᏔᎵᎭ ᏧᎾᎵᎪᏗ ᎠᎴ ᎤᎵᎢᎦᎢ ᎱᎾᏓᏍᎬᎢ ᎤᏁᏓᏍᏗ. ᎾᏍᎩ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᏗᎩᏲᎱᏒᎯ ᏥᎨᏒᎩ, ᎢᎬᏂᏛ ᎢᎦᏠᏯᏍᏔᏅ ᎦᎶᏁᏛ ᎠᎬᏂᏛᎢ, (ᎬᏩᎦᏘᏯ ᏅᏓᏙᎵᏍᏗ ᎨᏒ ᎡᏥᏍᏕᎸᏔᏅ;) ᎿᏉᏃ, ᎠᏴ ᎾᏍᎩ, ᏚᏬᏎᎸ, ᎤᎾᏏᏅᏒᎩ, ᎡᎳᏗ ᏫᏚᏂᏅᏨᎩ. ᎦᎪ ᎢᏴᏛ ᏅᏓᎬᏁᎵ ᎦᎶᏁᏛ ᎢᎩᎨᏒᎢ? ᏥᏌ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏲ ᎢᏴᏓᏛᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏓᎪᏄᎶᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎩᏰᎸᎭ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ? ᎾᏍᎩᏃ ᎤᏂᏌᎳᏓᏅ, ᏗᎵᏍᏕᎸᏙᏗ ᏚᏅᏔᏅᎩ, ᎤᎾᎸᎸᎩ ᏥᏳ; ᎠᏂᏍᎦᎢᎲᏃ ᎤᏍᏓᎾᎸ ᎤᏂᏃᏠᎯᏍᏗᏱ ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎡᎳᏗ ᏂᏚᏅᏁᎸᎩ ᏓᏰᏙᎳᏛᎢ, ᎤᏂᏄᎯᏒᏉᏃ. ᏍᎩᎾᎾ ᏄᎾᏛᏁᎴ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏴᏫᏯ ᏄᏍᏛ ᎠᏃᎵᎬ. ᎾᏍᎩ [ᏥᏌ ᎦᎶᏁᏛ] ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏥᏄᏩᏁᎸ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎪᎯᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎪᎯᏳᏗᏱ ᎤᎩᎬ; ᏧᎾᏄᎪᏫᏎᏗᏱ ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎦᏳᎳ ᎠᏍᎦᏅᏨᎯ ᎨᏒ ᎦᎬᏩᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎬᏂᏗᏳ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ; ᏐᏉ ᎤᏒᎯ ᎣᎩᏃᏔᏅ ᏙᏱᏨ ᎤᏪᏘ ᎬᏂᎨ ᎦᏌᏆᎸ. ᎠᎴ ᎾᏍᎩᏯᏉ ᏥᏌ ᏄᏪᏒ ᎤᏁᏨ ᏂᏚᏂᏪᏎᎴᎢ: ᏚᏂᏲᏎᏃ. ᎠᏴ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᎥᏝ ᎤᏁᎳᏅᎯ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵ ᏘᎩ, ᏗᏅᏃᏛᏉᏍᎩᏂ ᎤᏅᏒ. ᎠᏃ ᏍᎩᏄᏍᏛ ᎤᏤᏥᏍᏗ, ᏧᏓᏁᏥᏴᏍᏔᏁᏗ ᎤᎾᏓᏁᏛᏗ ᎠᏂᏴᏫ, ᎾᏍᎩᏯ ᎤᏃᎴ ᏥᏓᏌᏙᏱᏍᎪ ᎠᎴ ᎤᏃᎴ ᏥᏕᎦᏂᏏᏂᎩᏍᎪ ᎯᎸ ᎢᏣ. ᎠᎩᏐᏅᎢᏍᏗᏍᎩ ᎠᎴ ᏗᏓᏂᎸᎩ ᏂᎨᏒᎾ ᏥᏁᎬᎢ ᏧᏬᎪᏓᏁᎯ ᎤᏪᎭ. ᎧᏃᎮᏛ ᎠᎩᏁᏨᎯ ᎾᏍᎩ ᏧᏬᎪᏓᏁᏗ ᎨᏎᏍᏗ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ. ᏥᏌᏃ ᏧᎨᏳᎯᏳᎨᏒᎩ ᎹᏗ ᎠᎴ ᎤᎸᎢ ᎠᎴ ᎳᏏᎳ. ᏓᎩᏯᏪᎢᏍᏗᏍᎪ ᏓᎾᏦᏍᎬ.” ᎦᎸᎳᏗ ᎠᎩᏗᏱ ᎡᎶᎯᏃ ᏗᏆᎳᏏᏗᏱ. ᎦᏙ ᎤᏍᏕᏍᏗ ᎦᎵᏦᏕ ᏓᏍᎩᏯᏁᏍᎨᎵ? ᎠᏗᎭ ᎤᎬᏫᏳᎯ; ᎠᎴ ᎭᏢ ᎠᏆᎵᏙᎯᏍᏙᏗᏱ; ᎿᏉᏃ, ᏂᎯ ᎡᏙᏓ, ᏍᎩᎸᏉᏓ ᏨᏒ ᏗᏦᎸᎢ, ᎾᏍᎩᏯ ᎥᎩᎸᏉᏗᏳ ᏥᎨᏒᎩ ᏗᏦᎸ ᎠᏏᏉ ᏂᎬᎾᏛ ᎾᏓᎴᏂᏍᎬᎾ ᏥᎨᏒᎩ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙ ᏓᏲᏣᏛᏁᎵ ᏙᏓᏲᎩᎸᏫᏍᏓᏁᎵ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ? ᏕᏣᎵᏂᎪᏍᎬᎢ ᎬᏔᏅᎯ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏄᎵᏂᎬᎬ ᎦᎸᏉᏗᏳᎤᏤᎵᎦ, ᎾᏍᎩ ᏂᎦᎥᏉ ᎤᎬᏩᎵ ᏗᏨᏂᏗᎦ, ᎾᏍᎩ ᏂᎦᎥᏉ ᎤᎬᏩᎵ ᏗᏨᏂᏗᏳ ᎢᏣᎴᏍᏙᏗᏱ, ᎠᎴ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᎢᏤᎵᏍᎬ ᎢᏥᎩᎵᏲᎬᎢ, ᎤᎵᏠᏯᏍᏙᏗᏱ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ; ᎾᎿᏃ ᏫᎣᎩᎧᏙᏴ ᏌᏈ ᎭᏫᏂᏗᏢ ᎣᎩᏅᏍᏔᏅᎩ, ᎦᏃᎸᎥᏍᎬᏰᏃ ᎢᎬᏱᏗᏢ ᏓᏳᎦᏛᎩ. “Ꮎ!” ᎤᏛᏁ, ᎤᎵᎮᎵᏍᏗ. ᏥᏌᏃ ᎤᎷᏨ ᏏᏌᎵᏱ ᏇᎵᎩᏱ, ᏚᏛᏛᏅᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᏴᏫ ᎤᏪᏥ ᏥᎩ ᎦᎪ ᎬᏉᏎᎰ ᏴᏫ? ᎤᎵᎮᎵᏍᏗ ᏱᎩ.” ᎠᏂᏆᎵᏏ ᏚᎾᏘᏃ ᎮᎸ ᎾᏍᎩ ᏗᎨᏫᎢᏳᎵᏍᏔᏅᎯ. ᏣᏗ ᎧᏅᏂᏍᎩ, ᏍᎩᎾᎾ ᎯᏗᎦᏔᎭ. ᏂᎦᏓ ᎠᏯ ᏕᎬᏆᎧᎾᏅ. ᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎯᎩᎵᏲᎬᎢ, ᎠᎴ ᎲᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᎩ ᏗᎦᎮᎵᏎᏗ ᏂᎨᏒᎾ ᎨᏒ ᎾᏍᎩ Ꮎ ᎤᏂᏲ ᏥᎩ; ᎠᎴ ᏘᎪᎵᏰᎥᎯ ᎢᎩ ᎾᏍᎩ ᎣᎩᏅᏏᏛ ᏣᎾᏗᎭ ᎾᏍᎩᏃ ᏄᏍᏛᎾ ᎨᏒᎢ, ᎠᎴ ᏣᏙᎴᎰᏒ ᎠᏂᏰᎪᎩ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏧᏓᎴᏅᏛ ᎠᎴᏅᎲᎭ ᎾᏍᎩ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎿᏉ ᎦᎸᎳᏗ ᏫᏗᏣᎧᎾᏅᎭ, ᎠᎴ ᏕᏥᏌᎳᏓᏅᎭ ᏗᏥᏍᎪᎵ; ᎡᏧᏓᎴᏍᏗᏰᏃ ᎨᏒ ᎾᎥᏂᏳ ᏣᎢᏎᏍᏗ. ᏗᎧᎿᏩᏛᏍᏗᎪᏃ ᏓᏡᏗᎭ ᎤᏁᎳᏅᎯ ᏚᏚᎢᏍᏔᏅᎢ? ᎬᏩᏟᏍᏗ, ᎢᏳᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏴᏫ ᎨᏥᏁᎸᎯ ᏱᎨᏎ, ᎾᏍᎩ ᏰᎵ ᎬᏂᏛ ᎬᏩᏓᏁᏗ ᎨᏒᎢ, ᎤᏙᎯᏳᎯᏯ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᏴᏗᏓᎴᎲᏍᎨᎢ. Ꮟ ᏯᏍᏈᏙᎲᏍᎬᎾᏉ ᎦᏬᏂᏍᎬ, ᎦᏟᎮ ᏫᎵᎻ. ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᏔᎵ ᎠᎹᏟ ᏂᎬᏍᎪᎢ;ᎠᎴ ᏂᎦᎥ ᎠᎩᎾᎥ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏥᎥᏍᎪᎢ. “Ꭵ, ᏍᎩ ᏄᏍᏗ,” ᎤᏬᎯᏳᏔᏁᎢ ᏌᎳᏓ. ᎨᎵᎠ ᎦᏲᏟ ᎠᏆᏘᏰᎴ ᏄᎾ ᏗᎦᏓᏫᏔᏅ.” ᎢᏤᏯᏔᎮᏍᏗ, ᎢᏓᎵᏅᏟ, ᏞᏍᏗᏉ ᏂᎯ ᎩᎶ ᎤᏬᎯᏳᎯᏍᏛ ᏂᎨᏒᎾ ᎤᎾᏫ ᏳᏯᎡᏍᏗ, ᎾᏍᎩ ᎠᏓᏅᏒᎯ ᎬᏂᏛ ᎤᏁᎳᏅᎯ. ᏌᏩᏂᏃ ᏁᏨ ᎯᎠ ᏄᏪᎡᎢ; ᏂᎯ ᎡᏍᏗᏔᏲᏏ ᎤᎬᏫᏳᎯ ᎠᎩᏙᎵᏍᏗᏱ, ᎾᏍᎩᏃ ᏞᏍᏗ ᏌᏉᎤᏅ ᎯᎠ ᏥᏍᏗᏁᎩ ᏯᎩᎷᏤᎴᏍᏗ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ Ꮎ ᎠᏛᏂᏗᏍᏙᏗ ᎦᏚ. ᎩᎶ ᎠᎩᎷᏤᎮᏍᏗ ᎤᏲᏏᏐᏗ ᏱᎨᏎᏍᏗ, ᎠᎴ ᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎤᏔᏕᎪᏗ ᏱᎨᏎᏍᏗ. ᏏᏅᏓ ᎢᎪᏓ ᏯᏓᏅᏖᎳ, ᎤᏐᏱᏉ ᏗᎫᎪᏙᏗ, ᏄᏦᏍᏛᎾ ᎠᏑᏯᎩᏍᏗ. ᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᎩ Ꮎ ᏱᏄᏍᏗ ᎩᎶ ᎤᎪᎸᏛ ᎨᏒᎢ, ᎠᎴ ᎤᏍᎦᏅᏨᎢ, ᎤᏩᏒᏉ ᏓᏓᏚᎪᏓᏁᎲᎢ. ᎠᏆᎦᏌᎴᏍᎩ ᏣᏉ ᎤᎵᎮᎵᏍᏗ ᎢᏯᏛᏁᏗ. ᎾᏍᎩᏃ ᏂᎦᏛ ᏚᏃᎮᎮᎸ, ᏦᏈ ᏚᏅᏎᎢ. ᎠᎧᏔᎮᎢ ᎰᎻ ᏗᎩᏏ ᎦᏓᏍᎬᎢ ᎣᏍᏓ ᎠᏛᎯᏍᏙᏗ ᏏᏆ. “ᎧᏂᎩᏓ ᏓᏆᏙᎥ,” ᎤᏛᏁ ᎤᏟᏂᎩᏓ ᎤᏬᏂᎯᏍᏗ. ᏕᎫᎪᏓᏏᏍᎩᏂ ᎤᎬᏫᏳᎯ ᎢᎩᎩᎵᏲᎢᏍᏗᏍᎪ ᎾᏍᎩ ᎡᎶᎯ ᎤᏂᏍᎦᏅᏨ ᏕᎨᎫᎪᏓᏁᎲ ᎢᎦᏠᏯᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᎢᏥᏍᎦᏯ ᏗᏓᏓᏅᏟ, ᎯᎠ ᎪᏪᎸ ᎠᏎ ᎤᏙᎯᏳᏗ ᎨᏒᎩ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏕᏫ ᎠᎰᎵ ᏧᏩᏔᏁ ᏧᏁᏤ ᏧᏓᏏ ᎠᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᏧᏘᏂᏙᎸᎯ ᏥᏌ ᏥᎬᏩᏂᏱᏍᎬᎩ; ᎼᏏᏰᏃ ᎧᏃᎮᎭ ᏄᏍᏛ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ, ᎯᎠ ᏥᏂᎦᏪᎭ, ᎩᎶ ᏴᏫ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ ᎬᏂᏛ ᎠᏩᏛᏗᏍᎨᏍᏗ. ᎤᏃᏴᎬ ᎤᎭᎨᏛ ᏚᏑᎬ ᎭᏫᏂ ᏧᏍᏚᎲᏍᎪ ᏅᏩᏍᏛ, ᏚᏩᏂᎦᏢ ᏚᏓᏢᏍᏛ ᎪᎰᏍᏗ ᏄᏦᏍᏛᎾ ᏫᏂᎦᎵᏍᏗᏍᎬ, ᎾᏍᎩᏯ ᏔᎷᎩᏍᎩ ᏗᎬᏅ ᎠᏰᎵ ᎦᏆᏘ, ᎭᎾ ᎠᏰᎵ ᏄᏛᏁ. ᎠᏎᏃ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᏙᏳ ᏣᏏᎾᏏᏁ ᏃᎴ ᎤᏕᎵᏍᏗ ᏣᏕᎦᏂᏱᏍᎨ ᎩᎶ ᎤᏩᏏᎧ ᎢᏴ ᏰᏙᎭ ᏍᎩᎾ ᏯᏓᎢᏗᏏ ᏓᏰᏠᎮᎢ ᏧᏪᎳ ᏕᎦᎵᎩᎡᎮᎢ ᏃᎴ ᎤᎬᎭᏓ ᎢᏣ ᏣᏗᏍᎦᎳᏍᎨᎢ. “ᎠᏤ ᎧᏁᏍᎪ ᎦᏅᎪᎢ,” ᎤᏬᏒᎯᏌᏁᎢ ᎰᎻ. ᏥᏌᏃ, ᎦᏙᎵᎬ ᎤᏙᏯᏅᎯᏕᎢ, ᎠᎴ ᎤᏒᏂᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎣᏏᏳ ᏥᏰᎸᏅ; ᏣᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ. ᎦᏙᎨᏃ ᏓᏓᏛᏂ? ᏥᎪ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᎦᏂᏉ? ᎬᏩᏟᏍᏗ. ᎥᏝᏍᎩᏂ ᎠᏍᎦᏂ ᏱᎬᎩᎦᏙᎥᏎ ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗ; ᎥᏝᏰᏃ ᏱᎦᏥᎦᏔᎮ ᎤᏲ ᎠᏚᎸᏅᏗ ᎨᏒᎢ, ᎢᏳᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎯᎠ ᏄᏪᏒᎾ ᏱᎨᏎᎢ, ᏞᏍᏗ ᏣᏓᏚᎸᎡᎸᎩ. ᎾᏍᎦᎢᎲᎾᏃ ᎧᏁᎢᏍᏗᏍᎨ ᏕᎤᏙᎥ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᎠᏂᎪᎢ ᎤᏂᏬᏂᏍᏗ ᎠᏂᏬᏂᏍᎩ ᎠᎾᏗᏒᎯᎮ ᎠᏂᏭᏂᏍᎬᎢ. ᎠᏎᏃ ᎤᎾᏁᎶᏔᏁ ᎬᏩᎯᏍᏗᏱ. ᎾᎯᏳᏃ ᏈᏓ ᎤᎴᏁ ᎠᏰᎵ ᎠᏂᏅ ᎠᏃᎯᏳᎲᏍᎩ, ᎾᏍᎩ ᎾᏂᎥ ᏚᎾᏙᎥ ᎠᏍᎪᎯᏧᏈ ᏔᎳᏍᎪᎯ ᎢᏴᏛ ᎨᏎᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ; ᎾᏍᎩᏃ ᎣᎩᏃᏁᎸᎩ ᎤᎪᎲᎢ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏩᏒ ᎦᏁᎸᎢ ᎾᏍᎩ ᎦᏙᎨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏦᏈ ᏘᏅᎵ ᎠᏂᏫᏅ, ᎠᎴ ᏫᏯᏅ ᏌᏩᏂ ᏈᏓ ᏧᏙᎢᏛ; ᏥᏌᏃ ᏔᎵᏁ ᎤᎷᏨᎩ ᎨᏂ ᎦᏚᎲᎢ ᎨᎵᎵᏱ, ᎾᎿ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᎹ ᎤᏬᏢᏔᏅᎢ. ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎤᎬᏫᏳᎯ ᎠᏍᏕᎵᏍᎩ ᎡᎲᎩ, ᎾᏍᎩ ᎤᏪᏥ ᎤᏢᎬᎩ ᎨᏆᏂ. ᎾᏍᎩᏍᎩᏂ Ꮎ ᎦᏳᎳ ᏥᏥᎭ ᏕᏥᏂᏴᏎᏍᏗ ᎬᏂ ᎢᏥᎷᏨᎭ. ᎢᏳᏃ ᎡᎶᎯ ᎢᏣᎵᎪᎯ ᏱᎨᏎᎢ, ᎡᎶᎯ ᏧᎨᏳᎯᏳ ᏱᎨᏎ ᏧᏤᎵᎦ. ᎠᏎᏃ ᎡᎶᎯ ᎢᏣᎵᎪᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎢᏨᏯᏑᏰᏛᏍᎩᏂ ᎡᎶᎯ ᏥᎩ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎡᎶᎯ ᎢᏥᏍᎦᎦ. ᏅᎦᏍᎪᎯᏃ ᏄᏕᏘᏴᎲ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎢᎾᎨ ᏓᎾᏱ ᎣᏓᎸ ᎤᏪᏲᏓᏛ ᎠᏓᏪᎵᎩᏍᎬᎢ. ᎾᎥ ᎦᏙᎨ ᎤᏓᎸᏉᏗ ᏓᏓᎧᏁᎢ. ᎬᎨᏳ. ᎠᎴ ᏅᏩᏓᎴ ᎤᎵᏂᎩᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᎪᎥᎩ ᎦᎸᎳᏗ ᏓᏳᏠᎠᏒᎩ, ᎤᎶᎩᎸ ᎤᏄᏬᏍᏛᎩ; ᎠᎴ ᎠᏍᎪᎵ ᎤᏅᎪᎳᏛᎩ, ᎠᎴ ᎤᎧᏛ ᏅᏙ ᎢᎦ ᎡᎯ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏧᎳᏏᏕᏂᏃ ᏗᎦᎫᏍᏗᏗ ᎠᏥᎸ ᏗᎪᏢᏔᏅᎯ ᎾᏍᎩᏯ ᎨᏒᎩ. ᏗᎾᏓᏅᏟᏍᎩᏂ ᎠᏍᎦᎩ ᎤᎵᏏᎬᏉ ᎡᎭ, ᎠᎴ ᎤᎵᏏᎬᏉ ᎡᏙᎭ, ᎥᏝ ᎠᎴ ᏯᎦᏔᎭ ᏩᎦᏛᎢ, ᎤᎵᏏᎬᏰᏃ ᏚᎨᏩᏛ. ᏤᎵᎪᏃ ᎤᎾᏂᎩᏒ ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏒᎩ. ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵᎦ ᎯᎠ ᏄᏍᏗ, ᏗᏣᏓᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᎢᏨᎨᏳᎢᏳ ᏄᎵᏍᏔᏅᎢ. ᎠᏏᏉᏃ ᎦᏬᏂᏍᎨᎢ, ᎬᏂᏳᏉ ᎤᏍᎪᏍᏛ ᎤᏣᎩᎳ ᏂᎦᏓ ᏗᎦᏟᏃᎡᏔᏅ ᎤᏐᏱ ᏚᏄᎪᏔᏅ ᏓᎭᏃᏫ ᏗᏄᎪᏗᏍᎩ ᏗᎪᏪᎵᏍᎩ ᏚᏭᎪᏔᏅ. ᎢᏣᏓᏅᏟ ᎨᏒ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏩᎵᎮᎵᎩ ᎠᏥᏌᎳᏓᏅᎢ, ᎤᏓᏅᏖᎴ ᎤᏍᏗ ᎠᏣᏗ, ᎾᏍᎩᏃ ᏂᎬᏪᏎᎰ ᏂᎦᎵᏍᏙᏗ. ᎯᎠᏰᏃ ᎤᏅᏒ ᎤᎾᏚᎸᏛ ᎾᏂᎦᏔᎲᎾ ᏥᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᏨ ᏅᏧᎵᏍᏙᏔᏅ ᎦᎸᎶ ᎢᎸᎯᏳ ᏥᎨᏎᎢ ᎠᎴ ᎡᎶᎯ ᎠᎹᏱ ᎦᏚ ᏧᎦᏚᏕᎢ, ᎠᎴ ᎠᏭᎯ ᏥᎦᏙᎨᎢ; ᎢᏥᏔᏲᎯᎰᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎢᏥᏔᏲᎯᎲᎢ, ᎢᏣᏚᎵᏍᎬ ᎾᏍᎩ ᎢᏨᏙᏗᏱ ᎣᏍᏛ ᎢᏣᏓᏅᏓᏗᏍᏗᏍᎩ ᎢᏥᏩᏛᏗᏱ. ᎠᎴ ᎯᎠ ᏁᎵᏍᎨᎢ, ᏛᏃᎵᏥ ᎣᏣᎵᏅᏟ ᎤᏁᎳᏅᎯ ᎠᏴ ᎠᏉᏰᏂ ᏗᎬᏔᏂᏒ ᏙᏗᏍᏕᎸᎯᏒᎢ; ᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤᎢ. ᏂᎦᏛᏃ ᏚᏂᎧᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎤᎾᎴᏅᎮ ᏅᏩᎾᏓᎴ ᏧᏂᏬᏂᎯᏍᏗ ᏚᏂᏬᏂᏎᎢ, ᎾᏍᎩ ᎬᏩᏂᏁᎢᏍᏗ ᏄᏅᏁᎲ ᎠᏓᏅᏙ. ᎠᎴ ᎤᏣᏘ ᎤᏂᏲᏠᎯᏎᎸᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏫᏕᎬᏩᎾᎦᏅᎲᎩ; ᏆᏂᏆᏃ ᎤᏘᏅᏒᎩ ᎹᎦ, ᎠᎴ ᏥᏳᎯ ᏭᏣᏅ ᏌᏈ ᏭᎶᏒᎩ. ᎤᏰᏣ ᎢᎦ ᏒᎮᏱᏣ ᎨᏎᎢ. ᎾᏍᏉ Ꭲ-ᏨᏲᏎᎭ, ᎩᎶ ᎬᏂᎨᏒ ᎾᏋᏁᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎬᏂᎨᏒ ᎾᏍᏉ ᏅᏓᏳᏩᏁᎵ ᎠᏂᎦᏔᎲ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ. ᎤᎴᏫᏍᏔᏁ ᎤᏛᎦᏍᏔᏁ, ᎡᏝᏪᎯ ᎨᏎ, ᎡᏆ ᎤᏔᎶᏁ ᎣᏍᏓ ᎤᏛᎪᏗ. ᎤᏓᏅᏘᏰᏃ ᎨᏎ ᎠᏍᎦᏯ, ᎠᎴ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎪᎯᏳᏗ ᎨᏒᎢ. ᎤᏂᏣᏖᏃ ᏴᏫ ᎬᏩᏁᏉᏤᎴ ᎤᎬᏫᏳᎯ. ᎠᏎᏃ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏚᎢᏍᏔᏅ ᎢᏗᎦᏖᏃᎭ ᎢᏤ ᎦᎸᎶᎢ ᎠᎴ ᎢᏤ ᎡᎶᎯ ᎾᎿ ᎡᎲ ᏚᏳᎪᏛ ᎨᏒᎢ. ᏃᏗ ᎦᏙ ᏭᏅᏥᎴᎢ ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏧᏗᏱ ᏭᏂᎶᏒᎩ, ᎾᎿᏃ ᎤᏁᏙᎸᎩ, ᎠᎴ ᏚᏓᏬᎥᎩ. ᏕᎦᏚᏓᏕᏫᏒᏰᏃ ᎦᎶᏁᏛ, ᎢᏳᏃ ᏱᏅᏩᏍᏗᏉ ᏕᎩᏂᏴᏒ ᎤᎵᏂᎩᏛ ᎬᎵᏍᏆᏗᏍᎩ ᏕᎩᏂᏴᏒ ᎤᎵᏂᎩᏛ ᎬᎵᏍᏆᏗᏍᎩ ᎢᎬᏱᏱ ᎢᎦᎵᏍᎦᏍᏙᏔᏅᎢ; ᏣᏲᎯᏍᏙᏗ ᏍᎩᏄᏍᏛ ᎭᏓᏅᏖᏍᎬ, ᏥᏲᏎᎸ. ᎤᎬᏫᏳᎯᏰᏃ ᎤᏅᏏᏓᏍᏗ ᎥᏝ ᏧᏘᏲᏍᏗ ᏱᎩ, ᏧᎨᏳᎯᏍᎩᏂ ᏱᎩ ᎾᏂᎥᎢ, ᏗᎬᏩᏕᏲᏗ ᏱᎩ, ᎬᏂᏗᏳ ᏱᎩ, ᎯᎠ ᎾᏍᎩ ᏑᏓᎴᎩ ᎨᏒ ᎾᏆᏜᏏᏛᎡᎲᎾ, ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᎴᏅᏛ ᏙᏗᏣᏓᏅᏛᎢ ᎾᏍᎩ ᎤᏰᎢᎸᏍᏗᏱ ᎬᎵᏍᏆᏗᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎠᎵᏰᎵᎢᎶᎸ ᎬᏗᏍᎩ; ᎢᎳᏯᏗᏃ ᎢᎵᎡᏌ ᎤᏕᏁᎴᎢ; ᎢᎵᎡᏌᏃ ᎹᏓᏂ ᎤᏕᏁᎴᎢ; ᎹᏓᏂᏃ ᏤᎦᏈ ᎤᏕᏁᎴᎢ; ᎿᏉᏃ ᏦᎢ ᏫᏄᏕᏘᏴᎲ ᏥᎷᏏᎵᎻ ᎠᏇᏅᏒᎩ ᏈᏓ ᎥᏥᏩᏛᎲᏒᎩ, ᎯᏍᎩᎦᏚᏃ ᏧᏒᎯᏛ ᎦᏁᎸ ᎠᎩᏅᎩ. ᎠᏎᏃ, ᎨᏍᏗ ᏱᎪᎵᎦ ᎢᏗᎦᏪᏍᏗ ᏚᏓᏴᎳᏔᏅ ᏓᏏᎳᏛ. ᎠᏍᎩᎾᏃ ᎤᏍᏆᏛ ᏂᎦᏛ ᎤᎪᎵᏰᏍᎬᎢ, ᎤᏓᏅᎡᎴ ᎢᎸᏍᎩ ᎢᎪᎯᏛ. ᎰᎻ ᏃᎴ ᎡᎳᏆᏗ ᏚᏍᏚᏤ. ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎠᏰᎵ ᏕᎪᏢᏒ ᏥᏓᎾᏓᎵᏁᎯᏕᎮᎢ, ᏚᏳᎪᏛ ᏥᏚᏂᎸᏫᏍᏓᏁᎮᎢ, ᎤᎾᏤᎵ ᏥᎾᏅᏁᎮ ᏄᏍᏛ ᎨᏥᏚᎢᏍᏓᎸᎢ, ᏢᏓᏥ ᎤᏂᏃᏕᏅ ᏗᏂᎰᎵ ᏥᏓᏂᏍᏚᎲᏍᎨᎢ, ᎠᏂᏌᎹᏗ ᎧᏅᏂᏍᎩ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏂᏏᎾ ᏧᏃᏪᎶᏗ.” ᎾᏍᎩ ᎾᏍᏉ ᎢᏳᏩᏂᏌᏅᎯ ᏤᏥᎤᏍᏕᏎᎸᎯ ᏥᎩ, ᎠᎱᏍᏕᏍᏗ ᎬᏔᏅᎯ ᎾᏍᎩ ᎩᎶ ᏧᏬᏰᏂ ᏧᏩᏔᏅᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎢᏴᏛ ᏂᏨᏁᎲ ᎠᏰᎵ ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒ ᎤᏍᎦᏅᎢᏍᏔᏅᎢ ᎢᏨᏗᏍᎬ ᎦᎶᏁᏛ ᎤᏤᎵ ᎠᎱᏍᏕᏍᏗ ᎨᏒᎢ; ᎠᏓᏅᏙᏍᎩᏂ ᎦᎾᏄᎪᏫᏍᎦ, ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎤᎵᎮᎵᏍᏗ, ᏅᏩᏙᎯᏯᏛ, ᎬᏂᏗᏳ ᎨᏒᎢ, ᎤᏓᏅᏘ ᎨᏒᎢ, ᎣᏍᏛ ᎨᏒᎢ, ᎪᎯᏳᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎩᎶ ᎠᏛᎩᏍᎨᏍᏗ ᏥᏁᎬᎢ, ᏂᎪᎯᏳᎲᏍᎬᎾᏃ ᎢᎨᏎᏍᏗ, ᎥᏝ ᎠᏴ ᏱᏗᏥᏳᎪᏓᏁᎭ; ᎥᏝᏰᏃ ᎡᎶᎯ ᏱᏗᏥᏳᎪᏓᏁᎵᎸ, ᏥᏍᏕᎸᎯᎸᏍᎩᏂ ᎡᎶᎯ. ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᏂᎯ ᏍᏉ ᏣᎵᏍᏓᏴᏗ; ᏫᎵᎻ ᎢᏳᎵᏍᏔᏁᏗ ᎨᏒ ᏂᎯ ᏍᏉ ᎢᏣᎵᏍᏔᏁᏗ. ᏚᏯ ᏗᏑᏱ ᏂᏚᏩᏁᎸ ᏁᏂᏏ, ᏎᎷ ᏧᏆᎶᎦ ᎬᏘ ᏚᏩᏇᏅᏔᏅ. ᎤᎵᏏᏂᏕᏅ, ᏧᏯᎷᎦ ᏚᎾᎧᏛ ᎠᏂᏲᎯᏍᏗᏍᎪ ᎤᎾᏗᏍᎦᏢ ᏃᎴ ᏕᎫᎧᏃ, ᏗᎾᏓᏂᎸᎩ ᏃᎴ ᎡᏍᎦ ᎢᏯᎾᏛᏁ, ᎤᏂᏁᏙᎸ. ᎠᏎᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏟ ᎬᎩᏰᎸᏗ ᎾᎿ ᎯᏍᎩᏉ ᎢᎧᏁᏨᎯ ᎠᎩᏁᎢᏍᏗᏱ ᎠᏆᏓᏅᏛ ᎠᏆᏙᏗᏱ, ᎾᏍᎩ ᏅᏩᎾᏓᎴ ᎾᏍᏉ ᎦᏥᏰᏲᏗᏱ, ᎠᏃ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎢᎧᏁᏨᎯ ᎠᎩᏁᎢᏍᏗᏱ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏆᏙᏗᏱ. ᏚᎴᏅ ᎠᏌᎻᏓ ᎧᏁᏌᎢ ᏭᎳᎩᏒ ᎤᏁᏍᏔᎵ ᎠᎩᏤᎸ ᎠᏆᏗᏔᏍᏗ. ᎨᏍᏗ ᎪᎱᏍᏗ ᏰᎵᏍᎨ ᏫᎵᎻ. ”ᏙᎢᏳᏍᏗ ᎭᏓᏅᏖᎭ, ᏌᎳᏓ?” ᎤᏛᏛᏁ. ᎠᏎᏃ ᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎮ ᏌᎳᏓ. “ᎨᏍᏗ ᎤᏨᏉᏗ ᏱᎩ, ᏍᏉ” ᎤᏛᏁ ᎠᎨᏯ, ᎠᎪᎵᏰᏍᎨ ᎪᏪᎸ ᏓᏏᎳᏛᎢ. “ᎡᎳᏆᏗᏗ ᎠᏎ ᎣᏍᏓ ᎨᏐ. ᎤᎬᏫᏳᎯᏍᎩᏂ ᎤᏤᎵ ᎢᎦ ᎠᏎ ᏓᎦᎷᏥ ᎾᏍᎩᏯ ᎦᏃᏍᎩᏍᎩ ᏒᏃᏱ ᏥᎦᎷᎪᎢ, ᎾᎯᏳ ᎦᎸᎶᎢ ᏓᎦᎶᏐᏂ ᎤᏣᏘ ᎤᏃᏴᎨᏍᏗ, ᎪᏢᏔᏅᎯᏃ ᎠᏓᏪᎵᎩᏍᎬ ᏛᎪᏂ, ᎠᎴ ᎡᎶᎯ ᎾᎿᏃ ᎪᏢᏅᏅᎯ ᎨᏒ ᎠᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ. ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᏓᏨᏍᏕ ᏃᏉ. ᎩᎶᏰᏃ ᎤᏩᏒᏉ ᏚᏙᎥ ᏓᏓᏬᏍᏗᎭ, ᏱᎬᏉᏎᎭ. ᎾᏍᎩᏃ ᎠᎴ ᏗᏂᎳᏫᎩ ᏚᏂᎳᏫᏨ ᎠᎴ ᎤᏂᏃᎮᎸ, ᎤᏣᏘ ᎠᏕᎸ ᏚᏂᏁᎴ ᎠᏂᏯᏫᏍᎩ, ᏍᏘᎬᏓ ᎣᏍᏓ ᎱᏓᏅᏖᎳ, ᏃᏉ ᎱᏬᏂᏎᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ ᎠᏍᎦᏯ ᎤᏓᎵᎢ ᏓᎾᏤᎲᎢ, ᎥᏝ ᎣᏏᏳ ᏱᎩ ᎠᏕᏒᎲᏍᏗᏱ. ᎠᎵᎮᎵᏍᏗ ᎡᎳᏗ ᏫᎦᎶᎯᏍᏗ, ᎡᎶ ᏣᎫᎾᏌᎾᎩᏍᎪ ᎢᏧᎴᎭ ᎠᎵᏍᏕᎸᏙᏗ. “ᎾᎨ ᎤᏅᏏᏴ, ᎧᏁᏍᎪ ᎭᏫᏂᏣ ᎦᏟᎭ,” ᎤᏛᏁ ᏌᎳᏓ. ᏥᏌᏃ ᏂᎬᎾᏛ ᎨᎵᎵ ᎡᏙᎮᎢ ᏓᏕᏲᎲᏍᎨ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎧᏃᎮᏍᎨᎢ, ᎠᎴ ᏕᎧᏅᏫᏍᎨ ᏧᎵᎴᏅᏛ ᏚᏂᏢᎬᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᎥᏳᎩ ᏴᏫ ᎤᏁᎲᎢ. ᏍᎩᏴ ᏓᏳᏓᎴᏅᏓ, ᎠᎦᏗᏛ ᏫᏥᏃᎮᏍᎬ ᎾᏆᏛᏁᎵᏙᎸ ᎣᏣᎵᏍᏔᏴᎲᏍᎬ ᏃᎴ ᎤᎬᏫᏳ ᏱᎬᏉᏎ ᏕᎦᏥᏯᏓᏂᎸᎬ. ᎾᏍᏉᏃ ᎢᏧᎳᎭ ᏕᎨᎦᏛᏁ ᎠᏂᏔᎵ ᎠᏂᏃᏍᎩᏍᎩ, ᏌᏉ ᎠᎦᏘᏏ ᎢᏗᏢ, ᏐᎢᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ. ᎾᏃ ᏧᏓᎴᏅᏛ ᎾᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᎬᏩᎵ, ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᏂᏗᎥ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎢᎨᎲᎢ. ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏢᏆᏍᎪᎢ, ᎠᏓᎨᏳᏗᏍᎩᏂ ᎨᏒ ᎠᏓᏍᏕᎵᏍᎪᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᎢᎬᏙᏗ ᎠᏏ ᎪᎯᏳᏗᏍᎩ? ᎢᎬᏒᏰᏃ ᎡᏓᏛᎦᏏ ᎤᏩᏒ ᎧᏁᎬᎢ. ᎠᎴ ᎣᏏᏳ ᎠᎩᏰᎸᎭ ᎾᎿ ᏫᏂᎨᏙᎲᎾ ᏥᎨᏒᎩ, ᏂᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎢᏦᎯᏳᏗᏱ. ᎠᏎᏃ ᎡᏗᏩᏛᎱᎦ. ᎠᏂᏧᏏ ᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎥᏝ ᏴᎨᏣᏍᏛᏓ ᏅᏯ ᏱᏙᎨᏨᏴᏂᏍᏓ, ᎯᏐᏢᎢᏍᏗᏍᎬᏍᎩᏂ, ᏂᎯ ᏴᏫᏉ ᏥᎩ ᎤᏁᎳᏅᎯ ᏣᏤᎸᏍᎦ. ᏂᎦᏛ ᎤᏇᏓᎵ ᎨᏒ ᎥᏝ ᎤᏠᏱᎭ ᏱᎩ; ᏴᏫᏰᏃ ᎤᏂᏇᏓᎸ ᏑᏓᎴᎩ; ᏅᏩᏓᎴᏃ ᏅᎩ ᏗᏂᏅᏌᏗ ᎤᏂᏇᏓᎸᎢ, ᏅᏩᏓᎴᏃ ᎠᏣᏗ, ᏅᏩᏓᎴᏃ ᏥᏍᏆ. ᎤᏅᏌ ᏧᎾᏤᎵ ᏗᎧᎾᏩᏛᏍᏗ ᏚᏂᎮ ᏃᎴ ᎠᎴᎲᏍᎩ ᎤᎬᏫᏳ ᏃᎴ ᏔᎵ ᎸᎾᏓᏓᏍᎬ ᏗᏂᎳᏫᎩ, ᎦᏚᎲᎢ ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ, ᏃᎴ ᏭᏯᏅᎢ ᏧᎾᏟᏰᎵᏓᏍᏗ ᏃᎴᏍᏉ ᎠᎬᏱ ᎤᏛᎾ ᏧᎾᏙᎴᏆᏍᏗ ᏃᎴ ᎤᏪᏘ ᎤᏃᏒᏅ ᏗᏍᏆᏂᎪᏙᏗ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᎡᏘᏴ ᏄᎾᏕᏁᎵᏙᎸ ᎠᏂᏴᏫ, ᏃᎴ ᎧᏃᎮᏛ ᎪᏪᎵ. ᎯᏯᎵᏍᎪᎸᏓᏁᎸᏰᏃ ᏂᎦᎥ ᎤᏇᏓᎵ, ᏧᏁᏗᏱ ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎾᏂᎥ ᏖᎧᏁᎸᎯ ᎨᏒᎢ. ᏅᏙ ᎢᎦ ᎡᎯ ᎤᎵᏏᎩᏳ ᏅᏓᎦᎵᏍᏔᏂ, ᏅᏙᏃ ᏒᏃᏱ ᎡᎯ ᎩᎬ ᏅᏓᎦᎵᏍᏔᏂ, ᎤᏍᏆᎸᎯᏕᎾ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ ᎦᎸᏉᏗᏳ ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏱᎰᏩ ᎤᏤᎵᎦ. ᎩᎳᏈᏴ ᏂᎬᎾᏛ ᎠᏓᏴᎳᏔᏍᎪ ᎢᎦ, ᏚᏓᏴᎳᏛ ᏓᏓᏅᏏᏙᎰ, ᏃᎴ ᎪᎰᏍᏘ ᎤᏃᏴᎬ ᎣᏍᏓ ᎠᏛᎪᏗ. ᎠᏓᎨᏳᏗ ᎨᏒ ᎬᏂᏗᏳ, ᎠᎴ ᎤᏓᏅᏘᏳ; ᎠᏓᎨᏳᏗ ᎨᏒ ᎥᏝ ᏱᎬᏳᎪᎢ; ᎠᏓᎨᏳᏗ ᎨᏒ ᎥᏝ ᏯᏢᏆᏍᎪᎢ; ᎥᏝ ᎤᏟ ᏳᏕᏋᎯᏍᏙᎢ; ᏂᎪᎯᎸᎾᏉ ᎿᏉ ᎥᏝ ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ; ᎠᎴ ᎿᏉ ᏔᎵᏁ ᏂᎪᎯᎸᎾᏉ ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏫᏥᎦᏛᎢ. ᎤᏓᎴᏨᏗ ᏍᎩᎾᎾ ᎠᏲᏟ---ᏧᏓᎴᏅᏓ ᎠᏓᏅᏖᏍᎪ. ᏙᎩᏲᏒᏍᎩᏂ ᏧᏓᎴᏅᏛ ᎬᏍᎦᎵ ᎤᏕᎰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎥᏝ ᏲᏤᏙᎭ ᎠᏏᎾᏌᏅᎢᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎣᎦᏠᎾᏍᏛ ᏱᏙᎩᎸᏫᏍᏓᏁᎭ ᎧᏃᎮᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎬᏂᎨᏒᏍᎩᏂ ᏃᏨᏁᎲ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎪᎩᎸᏉᏙᏗᏱ ᏃᏨᏁᎭ ᎾᏂᎥ ᏴᏫ ᏚᎾᏓᏅᏛ ᎬᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎠᏍᏕᏯᏓ ᎦᏓᎥ ᎠᏦᏴ ᎾᎥᏂ ᎤᎩᏠᏫᏎ ᏥᏍᏕᏥ. ᎤᏍᏆᏘ ᎠᏯᏨᏗ ᎩᎳᎯ ᎦᏓᎡᎢ ᎠᏴᏤᏂ; ᎤᏅᏏᏴ ᎠᎦᏙᎵ ᏳᏫᏚᎧᎾᎾ ᎠᎪᏩᏘᏍᎨᎢ. ᏚᎾᎴᏁᎢ, ᎢᏧᎳ ᎤᏁᏅᏎ ᏫᎵᎻ ᎤᏴᏍᏗ. ᎾᎯᏳᏉᏃ ᎢᎦ, ᎤᏒ ᏄᎵᏍᏔᏅ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᏗᏐᎩ ᏍᎪᎾ ᏫᏗᎶᎯ. ᏕᎬᏩᏒᏍᏓᏁᎸᏃ, ᎤᏂᏣᏛ ᎬᏩᎷᏤᎸᎩ ᎤᏪᏗᏱ; ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ, ᏚᏃᎮᎮᎸᎩ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᏑᎾᎴ ᎤᎴᏅᏛ ᎤᏒᎢ ᎬᏗᏍᎩ, ᏓᏍᏗᏰᏗᏍᎬ ᏥᏌ ᎧᏃᎮᏍᎬᎢ; ᏕᎬᏗᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎼᏏ ᎤᏤᎵᎦ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ. Perry ᏚᏙᎥ. ᎠᎴ ᎤᏣᏖ ᎤᏟ ᎢᎦᎢ ᎢᎧᏁᏨᎯ ᏚᏬᏁᏔᏁᎢ ᎯᎠ ᏄᏪᏎᎢ; ᏗᏣᎵᏏ ᎯᎠ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ ᏣᏁᎭ. ᎢᎦᏛ ᎤᏙᎯᏳᎯ ᎠᏛᏳᎨᏗ ᎨᏒ ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒ ᎤᎾᏚᎵᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎾᎵᏥᏙᎲᏍᎦ ᎦᎶᏁᏛ ᎠᏂᏃᎮᎭ, ᎢᎦᏛᏃ ᎾᏍᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏒᎢ. ᎤᏄᎪᏤᏃ ᎾᎿᏂ, ᎠᎴ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᏬᎷᏤᎢ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᎠᏯᏖᏂ ᎦᏙ ᎩᎦᎨ ᏌᏬᏚ, ᎤᎾᏨᏏᏰᎥ ᎠᏂᏍᎦᏯ ᏃᎴ ᏐᏈᎵ, ᎤᏲᏨ ᏱᎨᏒᎾ ᎤᏬᏗᎨ ᎤᎦᏛ ᏫᎨᏴ ᎦᏣᏃᏍᏔ ᏃᎴ ᏩᏗᏍᏈᏛᎥᏍᎬ, ᎢᏤᎯ ᏚᏅᏓᏒ ᏅᎩ ᏚᏅᏏᏴ ᏫᏗᎦᎶᏍᎩ. ᎤᎵᏏᏂᏗ ᎤᏅᏍᎦᏝᏁᎢ, ᎦᏅᎪᎢ ᎦᏚᎢᏣ ᎤᏌᏁᎢ. Ꮎ-ᏍᎩᏂ ᏂᏚᎸᏫᏍᏓᏁᎲᎾ, ᎪᎯᏳᎲᏍᎩᏉᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎫᏓᎴᏍᎩ ᎠᏍᎦᎾᎢ, ᎾᏍᎩ ᎤᏬᎯᏳᏒ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎰᎢ. ᏍᏈᏯ ᎪᎱᏍᏗ ᏂᎦᎵᏍᏗ ᎭᏂ ᎾᎥᏂ.” ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏂᎯᎾᏃ ᎦᎪ ᏍᎩᏲᏎᎭ? ᎠᎬᏱᏣ ᎤᎵᏍᎫᏮ. ᏕᎯᎦᏔᎭᏉ ᏗᎧᎿᏩᏛᏍᏗ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ, ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ, ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ, ᏕᎩᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ. ᎠᏴᏃ ᎯᎠ ᏂᎬᏪᏎᎭ; ᏈᏓ ᏂᎯ ᎠᎴ ᎾᏍᎩ ᎠᏂ ᎯᎠ ᏅᏲᎯ ᏓᎦᏁᏍᎨᎯ ᎠᏆᏤᎵ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎠᎴ ᏨᏍᎩᏃᎢ ᏓᏍᏚᎲᎢ ᎡᏍᏕ ᎢᏳᏅᏁᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ. ᎾᎥᏃ ᎤᎷᏨ, ᏚᎧᎿᏅ ᎦᏚᎲᎢ, ᎤᏍᎪᏂᎴᎢ, ᎠᏛᎪᏗ ᏱᎨᏒᎾ ᎪᎱᏍᏗ ᎤᏛᏁ ᏥᏍᏕᏥ ᏭᏕᎵᏤ ᎤᎵᏏᎬᎢ. ᎠᎴ ᎾᏂᎥ ᎡᎶᎯ ᏓᏁᏩᏗᏒ ᏓᎬᏩᏓᏙᎵᏍᏓᏁᎵ, ᎾᏍᎩ ᏚᎾᏙᎥ ᏂᏗᎪᏪᎸᎾ ᎬᏂᏛ ᎪᏪᎵᎯ ᎾᏍᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏤᎵᎦ, ᎾᏍᎩ [ᎤᏃᏕᎾ ᎠᎩᎾ] ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏥᎸᎯ ᏥᎨᏎᎢ. ᏃᏗ ᎤᏍᏆᏔ ᎠᏯᏨᏗ ᎧᏴᏤᏂ ᎤᏩᏯᏨᏁ ᏫᎵᎻ. ᏓᏓᏁᎸ ᎤᎾᏕᎭᏲᏍᏗ, ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᏧᏂᏓᏍᎩᏐᏗ ᎦᏲᏟ ᎤᏂᎭᏴᏍᏗ, ᏧᏂᏰᎸᏍᏗ ᏅᏃᎯ, ᏔᎵᏁ ᎠᏓᏁᎸ, ᏃᎴ ᎤᏐᏱ ᎢᏳᎾᏛᏁᏗ. ᎾᎯᏳᏍᎩᏂ ᎢᎦ ᎨᏒ ᎠᎴ ᎢᏳ ᎧᎳᏩᏗᏒ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ, ᎥᏝ ᎾᏍᏉ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᎠᏁᎯ, Ꮭ ᎾᏉᏃ ᎤᏪᏥ, ᎠᎦᏴᎵᎨᏍᎩᏂ ᎤᏩᏒ. ᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏂᏧᏏ ᏧᎾᏤᎵᎦ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᏆᎴᏗ; ᏞᏍᏗ ᎯᎠ ᎢᏨᏁᎸ ᏦᏪᎳᏅᎩ; ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ; ᎯᎠᏍᎩᏂ; ᎠᎩᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᎠᏗᏍᎬᎩ. ᏏᏓᏁᎸᎯ ᏲᎾ ᎤᏤᏍᏙ ᎤᏂᏯᎸᏎ. ᎾᏍᎩ ᏨᎦᎾᏄᎪᏫᏏ ᎾᎯᏳ ᏧᎾᏄᎪᏫᏎᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎤᏓᏅᏘ ᎠᎴ ᎤᏩᏒᎯ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎤᎬᏫᏳᎯ ᎤᏂᎬᏫᏳᎯ ᎠᏁᎲᎢ, ᎠᎴ ᎤᎬᏫᏳᏌᏕᎩ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏁᎲᎢ; ᏚᎧᏔᏍᏔᏁᎢ, ᎧᏁᏍᎦ ᎤᎾᏬᏍᏔᏁᎢ, ᏃᏗ ᏍᏔᏯ ᏭᏢᏁᎢ. ᎦᏅᏍᎨᏂ ᎤᏖᎸᏁ, “ᎠᏯ ᏱᏗᏥᏂᏱᏍᎬᎾ ᏱᎩ, ᏃᎴ ᏱᏗᏥᏯᎩᏍᎬᎾ ᏱᎩ, ᏍᏈᏍᏓ ᏱᎾᎾᎵᏍᏓ, ᎡᎶᎯ ᏯᏂᏲᏍᏔᏃᎾ.” ᎠᎴ ᎤᏂᏣᏖᏍᏗ ᏛᏂᏍᏓᏩᏕᏏ ᎾᏍᎩ ᎤᎾᏤᎵ ᎠᏓᏛᏗᏍᎩ; ᎾᏍᎩ ᏅᏛᏅᏂᏌᏂ ᏚᏳᎪᏛ ᏅᏃᎯ ᎤᏂᏐᏢᎢᏍᏙᏗ ᎨᏎᏍᏗ. ᎢᏣᏅᏖᏍᏗ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ; ᎠᏥᎾᏝᎢ ᎥᏝ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐ ᎡᏍᎦᏉ ᎤᎾᏝᎢ. ᎢᏳᏃ ᎠᏴ ᎬᎩᏐᏢᏔᏅᎯ ᏱᎩ, ᏂᎯ ᎾᏍᏉ ᏓᎨᏥᏐᏢᏔᏂ. ᎢᏳᏃ ᎠᏴ ᎠᎩᏁᏨ ᎤᏂᏍᏆᏂᎪᏔᏅᎯ ᏱᎩ, ᏂᎯ ᎾᏍᏉ ᎢᏥᏁᏨ ᏛᏂᏍᏆᏂᎪᏔᏂ. ᎠᎦᏘᏏᏗᏢᏃ ᎤᏪᏰᏂ ᎦᎵᏉᎩ ᏃᏈᏏ ᏚᏒᎦᎸᎩ; ᎠᎰᎵᏃ ᏓᏳᎦᏌᏛᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎢᏧᎳᏗᏢ ᏗᎪᏍᏓᏯ; ᎤᎧᏛᏃ ᏅᏙ ᎢᎦ-ᎡᎯ ᎤᎵᏂᎩᏛ ᏣᎦᎵᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ. ᎩᎶᏍᎩᏂ ᎤᎵᏂᎩᏛᏯ ᏚᏭᎪᏕᏍᏗ ᏧᏓᏅᏛᎢ, ᎠᏎ ᎾᏍᎩ ᎢᏳᏛᏁᏗᏱ ᏄᎵᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᏰᎵᏉ ᎠᏓᏅᏖᏍᎬ ᎢᎬᏩᏛᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏛᏁᏗᏱ ᏚᏭᎪᏔᏁᏍᏗ ᏧᏓᏅᏛᎢ, ᎾᏍᎩ ᎤᏍᏆᏂᎪᏙᏗᏱᏉ ᎤᏤᎵ ᎠᏛ, ᎾᏍᎩ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ. ᏥᏳᏃ ᎠᏂᏂᏙᎯ ᎤᎾᎵᏍᏗᏱ ᎤᏂᏰᎸᏅ, ᎠᎴ ᎿᏉ ᎤᏍᏗ ᏥᏳ ᎠᏂᏔᎳᏗᏍᎬᎢ, ᎠᎾᏠᎾᏍᏗᏍᎬ ᏔᎷᎩᏍᎩ ᏥᏳ ᏗᎦᎾᎯᏍᏙᏗ ᎢᎬᏴᏗᏢ ᏥᏫᏙᏧᎾᏕᏏᏐ ᎤᏠᏱ ᎾᎾᏛᏁᎲᎢ. ᎯᎠ ᏄᏂᏪᎡᎢ; ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᏕᎯᏴᏎᎴᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏣᎵᏍᏓᏴᏁᎢ. ᎠᏎᏃ ᏓᏨᏰᏯᏔᏂ ᎾᏍᎩ ᎡᏥᎾᏰᏍᏗ ᎨᏒᎢ; ᎡᏥᎾᏰᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏳᏓᎸ, ᏰᎵᏉ ᏨᏍᎩᏃ ᏫᎬᏩᏓᏓᎢᏅᏗ ᎨᏒᎢ; ᎥᎥ ᎢᏨᏲᏎᎭ ᎡᏥᎾᏰᏍᎨᏍᏗ ᎾᏍᎩ. ᏚᏁᏤᎴᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏂᎯ ᏗᏤᎳᏍᏓ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏥᎪ ᏓᏲᏤᏏ ᏔᎵᏧᏈ ᎠᏂᎩᏏ ᏧᎬᏩᎶᏗ ᎦᏚ ᏴᏓᏲᎩᏩᏏ, ᎠᎴ ᏙᏓᏲᏤᎳᏍᏔᏂ? ᎾᏍᎩ ᎯᎠ Ꮎ ᏥᎧᏁᎢᏍᏗᏍᎨ ᎠᏙᎴᎰᏍᎩ ᎢᏌᏯ, ᎯᎠ ᏥᏂᎦᏪᏍᎨᎢ; ᎤᏪᎷᎦ ᎩᎶ ᎢᎾᎨᎢ, ᎯᎠ ᏂᎦᏪᎭ; ᎣᏍᏛ ᏂᏨᎦ ᏱᎰᏩ ᎤᎶᎯᏍᏗᏱ, ᏚᏅᏅ ᏗᏥᏥᏃᎯᏍᏓ. ᎤᎵᏍᎨᏛ ᏂᎦᎵᏍᏗᏍᎨ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗᏣ. ᎠᏗᎾ ᎾᎿ ᎦᏳᎳ ᏫᎦᎵᏱᎶᎸᎢ, ᎤᏠᏱᏉ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᏁᎶᏗᏗᏎᏍᏗ, ᎤᏠᏱᏉ ᎢᏓᏓᏅᏖᏍᎨᏍᏗ. ᎠᏎᏗ, ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ ᏂᎦᏪᏍᎬ ᏲᎾ ᎤᏤᏍᏙ-“ᎠᏛᏁᎸᏗ ᎠᏓᏅᏖᏍᎩ. ᎢᏥᏴ ᎠᏆᎩᎳᎾᎶ ᎠᎴ ᏍᎩᏯᏕᎶᏆᏏ, ᎠᏆᏓᏅᏖᏳᏰᏃ ᎠᎴ ᎠᏆᏓᏙᎵᏍᏗᏳ ᎠᎩᎾᏫᏱ, ᏓᏥᏩᏛᎯᏃ ᏗᏣᏓᏅᏙ ᏧᏯᏪᏐᎸᏍᏗᏱ. ᎯᎠᏰᏃ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏦᏣᎵᎮᎵᎦ, ᎾᏍᎩ ᏦᎦᏓᏅᏙᎩ ᎪᎯᏳᏗᏍᎬᎢ, ᏃᏅᏗᏍᎬᎾ ᎤᏇᏓᎵᏉ ᎤᎬᏩᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎣᎩᏍᏕᎵᏍᎬᎢ, ᏄᏠᎾᏍᏛᎾ ᎨᏒ ᎣᏨᏗᏍᎬ ᎣᎨᏙᎸ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ; ᎠᎴ Ꮀ ᎤᎬᏫᏳᎭ ᏂᎯ ᎢᏤᎲᎢ. ᏔᎵᏰᏃ ᎢᏳᏓᎴᎩ ᎨᏒ ᎠᏍᏓᏱᏳ ᎾᏆᎵᏍᏓᏁᎭ, ᏅᏗᎦᎵᏍᏙᏗ ᎠᏆᏚᎵᏍᎬ ᎠᏆᏚᎵᏍᎬ ᎠᏆᏂᎩᏍᏗᏱ, ᎠᎴ ᎦᎶᏁᏛ ᏤᎲ ᏩᏆᏕᏗᏱ; ᎾᏍᎩ ᏭᏓᎪᎾᏛᏛ ᎤᏟ ᎣᏏᏳ ᏥᎩ; ᏌᏃᏂᏃ ᏈᏓ ᎤᎪᎲ ᎤᏓᏅᏁ ᏥᏌ ᏗᎧᏂᎨᏂ ᎾᎥᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏣᎬᏫᏳᎯ ᏍᏆᏓᏅᏏ, ᏥᏍᎦᎾᎯᏳᏰᏃ ᎠᏴ. ᎠᏎᏃ ᎦᏙ ᎢᏤᎵᎭ? ᎩᎶ ᎠᏍᎦᏯ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᏁᎮᎢ; ᎠᏏᏴᏫᏃ ᎢᎬᏱ ᏭᎷᏤᎸ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏇᏥ, ᎮᎾ ᎪᎯ ᏫᏗᏣᎸᏫᏍᏓᏏ ᏖᎸᎳᏗ ᏓᎩᏫᏒᎢ. ᎾᏍᎩᏃ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏅᏨᎯ ᎨᏒ ᎦᏴᏓᏗᏁᎸᎯ ᏱᎩ, ᎥᏝ ᎿᏉ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ ᎠᎵᏍᎪᎸᏙᏗ ᏱᏂᎦᎵᏍᏗᎭ. ᎬᏂ ᎨᏣᏍᎦᎩ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ. ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎢᎪᏢᎭ, ᎾᎿ ᎥᏝ ᏱᏚᏳᎪᏗ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎦᎵᏦᏛᏉ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎯ ᏥᎩ. ᎠᏰᎳᏍᏗᏃ ᎦᏅᎯᏛ ᎤᏩᏔᏁ ᎤᎴ ᏥᎻ ᏣᏂ ᏗᎾᏓᏅᏟ. ᎠᏂᏃᎮᎸᎥᏍᎬ, ᎠᏆᎵᏍᎫᏮ ᎤᏂᏲᎯᏍᏙᏗ ᏱᎨᏒᎾ. ᎠᎴ ᎾᏍᎩ ᎤᎪᎲᎢ ᎤᏛᎦᏅᎾᏍᎩ ᎧᏃᎮᎭ, ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏱᏓᏓᏂᎸᎦ ᎾᏍᎩ ᎤᏃᎮᎸᎢ. ᎯᎠᏰᏃ ᎠᏠᏁᏗ ᏳᎾᏗᏅᏎ ᎤᏣᏘ ᏱᏚᎬᏩᎳᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏗᏁᏗ ᏱᎨᏎᎢ. “ᎯᏃᎯᏯ ᎠᎬᏱ ᎤᎵᏬᎢᏍᏗ. ᎠᎴ ᎬᏩᎵᏃᎮᏔᏁ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏍᎩᏃᎲᏏ, ᎦᏙ ᏣᎵᏍᎦᏍᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᏄᏍᏗ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ? ᎠᎴ ᎦᎪ ᎾᏍᎩ ᎾᏣᏁᎸᎯ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ? ᎨᏍᏗ ᎪᎱᏍᏗ ᏰᎵᏍᎨ ᏫᎵᎻ. ᎿᏉᏃ ᏧᏓᏏ ᎾᏍᎩ ᎤᎶᏄᎮᎸᎯ ᎤᏙᎴᎰᏒ ᏓᎫᎪᏓᏁᎸᎢ ᎤᏁᏟᏴᏎ ᎤᏓᏅᏛᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᏙᎤᏲᎮᎴ ᏦᎠᏍᎪᎯ ᎠᏰᎵ-ᎠᏕᎸ ᏧᎾᎬᏩᎶᏗ, ᏂᎦᎥ ᏚᏳᎪᏛ ᏂᎨᏒᎾ ᎾᏍᎩ ᎠᏍᎦᏂ, ᎡᎭᏃ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ. ᎤᏁᎸᏔᏁ ᏫᏄᏪᏎᏗ, ᎠᏎᏃ ᎡᏝᏪᎯ ᎦᏬᏂᏍᎨ, ᎠᎹ ᎤᏃᏴᎬ ᏭᎵᏛᏓᏁᎢ. ᏂᎦᏛᏃ ᎾᏍᎩ ᎤᏂᏣᏘ ᎨᏒ ᏚᎾᎴᏅ ᏆᎴᏗ ᏫᎬᏩᏘᏃᎮᎴᎢ. “ᏤᏍᏗ ᏍᎩ ᏱᏂᏪᏍᎨᏍᏗ!” ᎤᎵᏰᏔᏁᎢ ᏫᎵᎻ, ᏤᏍᏗ ᏍᎩᏱᏂᏪᏍᎨᏍᏗ, ᎭᏩᏧ!” ᎠᏴᏃ ᎠᎩᏁᏨ ᎯᎠ ᎾᎩᏪᏒᎩ; ᎦᎪ ᏂᎯ, ᏣᎬᏫᏳᎯ? ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎠᏴ ᏥᏌ ᎾᏎᎵᏘ ᏤᏍᎩ, ᎾᏍᎩ ᎤᏲ ᏥᏂᏴᏁᎭ. ᎠᎴ ᎾᎿᏉ ᎠᏓᏁᎸ ᎢᏥᏁᏍᏗ, ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏗᏔᏍᎨᏍᏗ ᏄᏍᏛ ᎡᏥᏁᎲᎢ; ᏧᎸᏫᏍᏓᏁᎯᏰᏃ ᏚᏳᎪᏗ ᎠᎫᏴᎡᏗᏱ ᏚᎸᏫᏍᏓᏁᎸᎢ. ᏞᏍᏗ ᏓᏓᏁᎳᏗᏒ ᏱᏤᏙᎵᏙᎮᏍᏗ ᎬᏂᏳᏉᏃ ᎾᎿ ᎡᏙᎮ ᎠᎨᏴ ᎠᏓᏅᏙ ᎥᏳᎩ ᎪᏢᏍᎩ ᎤᏯᎢ ᏁᎳᏚ ᎢᏳᏕᏘᏴᏛ ᎢᎬᏩᎵᏍ-ᏔᏅᎯ ᎨᏎᎢ, ᎠᎴ ᎤᏗᏌᏕᎢ, ᎠᎴ ᎬᏩᏟᏍᏛ ᎤᎵᏥᏃᎯᏍᏙᏗᏱ ᎨᏎᎢ. ᎠᎴ ᏄᏓᎴᏛ ᎪᎱᏍᏗ ᏚᎳᏍᎬ ᎭᏫᏂᏗᏢ ᏥᏂᏚᏩᏁᎸ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏥᎾᎬᏁᎸ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏁᎲᎢ, ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎾᏓᏙᎵᏍᏔᏅᏎᎢ, ᎠᏏᏴᏫ ᎠᏆᎵᏏ ᎨᏎᎢ, ᏐᎢᏃ ᎠᏕᎸ-ᎠᎩᏏᏙᎯ. ᎠᎴ ᎤᏬᏑᎶᏨᎯ ᎾᎿ ᎦᏚᎲ ᎡᎮᎢ; ᎾᏍᎩᏃ ᎤᎷᏤᎴᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏚᏳᎪᏛ ᏂᏍᎩᎾᏛᏂᏏ ᏦᏍᏓᏓᏱᎵᏙᎯ. ᎠᎴ ᎾᏍᏉ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ ᎦᏰᎪᎩ ᎣᏥᏃᎮᏍᎩ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎣᏥᏃᎮᎸᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏲᎱᏒ ᏕᎤᎴᏔᏅ ᎦᎶᏁᏛ; ᏧᎴᎳᏅᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎢᏳᏃ ᎰᏩ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ ᏧᏂᏲᎱᏒᎯ. ᎨᏍᏗ ᏳᏍᏕᎵᏍᎨᎢ ᏥᏍᏕᏥ. ᎠᎴ ᎭᎵᎮᎵᎨᏍᏗ ᎠᎴ ᎣᏍᏛ ᏣᏰᎸᏎᏍᏗ; ᎠᎴ ᎤᏂᏣᏘ ᎠᎾᎵᎮᎵᎨᏍᏗ ᎤᏕᏅ ᎢᏳᏍᏗ. “ᎰᎵᎦᏍᎪᏃ ᎪᎱᏍᏗ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?” “ᎨᏍᏗ ᏱᎬᎪᏩᏘᎭ. ᎠᏙᎯ ᏭᏂᎶᏎ, Ꮓ ᏗᏓᎾᏅ ᎢᏗᏣ. ᎤᏁᎢᏍᏔᏅ ᎪᎵᎩ ᎨᏒ ᎠᎦᏴᎵ ᏗᎪᏪᎵᏍᎩ Boston ᏓᏳᏓᎴᏅ, ᎤᏃᎯᏎᎴ ᎨᏍᏗ ᏙᏓᏆᏓ ᎫᏩᎶᎯᏍᏗ ᏱᎩ, ᎠᏎ ᎠᎦᏗᏓ ᏚᏓᏍᏔᏅᏅ ᏧᏬᏪᎶᏗ. ᎤᏅᏂᏍᏗᏱᏃ ᎨᏒ ᎢᏳᎢ, ᎤᏅᏎ ᎤᏅᏏᏓᏍᏗ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏗᏁᎲᎢ, ᎾᏍᎩ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏅᏓᎬᏩᏁᏗᏱ ᎤᏁᏉᏨᎯ ᏖᎸᎳᏗ ᏓᏫᏒᎢ. ᎠᎴ ᎯᎠ ᎾᏍᏉ ᏄᏪᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ; ᎥᏝ ᎩᎶ ᏴᎬᎩᎷᏥ, ᎬᏂ ᎡᏙᏓ ᎤᏁᎸᎯ ᏱᎩ. ᏧᏄᎪᏨᏃ ᎥᏝ ᏗᎬᏩᎵᏃᎮᏙᏗ ᏱᎨᏎᎢ; ᎤᎾᏙᎴᎰᏎᏃ ᎤᏁᎳᏫᏎᎸ ᏩᏯᎥ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏓᏁᎶᏓᏁᎮᏃ ᎠᎴ ᏅᏩᏍᏕᏉ ᎤᏩᎨᏫ ᎨᏎᎢ. ᎠᏄᎯᏍᏗᏍᎬᏍᎩᏂ ᎪᎱᏍᏗᏉ ᎤᏍᏗ ᎾᏍᎩ ᎧᏃᎮᏗ ᎨᏒ ᎤᏅᏒᏉ ᎤᎾᏤᎵᏛ ᎤᏁᎳᏅᎯ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᏥᏌ, ᎤᏲᎱᏒᎯ, ᎾᏍᎩ ᎡᎭ ᎠᏗᏍᎨ ᎨᎵ ᏉᎳ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏅᏖᏍᏗ ᎢᏥᏍᎦᏯ ᏗᏓᏓᏅᏟ, ᎾᏍᎩ ᎯᎠ [ᎠᏍᎦᏯ] ᎢᏳᏩᏂᏌᏛ ᎡᏥᏃᏁᎭ ᎦᏰᏥᏙᎵᏍᏗ ᎨᏒ ᎢᏥᏍᎦᏅᏨᎢ. ᎣᎯᏍᏙᏗ ᏗᎧᏃᏗ ᏣᎦᏥᎶᏍᏔᏅ, ᎠᎦᏛ ᎤᎦᏴᎵᏴ ᏄᏍᏛ ᏗᎧᏃᏗ, ᎠᏎᎩ ᏑᏓᎵᏍᎪᎯᏍᎩ ᎢᏴ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᎡᎵᎦ ᏥᏩᎾᎦᎵᏳ ᎨᏒᎢ, ᎦᏴᎩᏐᏢᏛᎢ, ᎠᎩᏂᎩᏛ ᎨᏒᎢ, ᎤᏲ ᏅᏋᎿᏕᎬᎢ, ᎡᎯᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎬ ᎦᎶᏁᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ; ᏥᏩᏂᎦᎵᏳᏰᏃ ᏥᎨᏐ, ᎾᎯᏳ ᎠᏆᎵᏂᎩᏗᏳ ᎨᏐᎢ. ᏄᏓᎴ ᎠᏍᏆᎵᏍᎬᎢ, ᎣᎩᎾᏚᎯᏍᏔᏅ, ᏂᎦᏓ ᎠᎵᏍᎩᏍᏗ ᎣᎩᎾᎵᏍᎩᏒ. ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏍᏕᎾ ᎢᏢ Ꮎ ᏨᏗᎦᏚᎭ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏓᏰᏍᏗᏩᏛᎯ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎨᎵᏌᏕᏍᏗ, ᎠᎴ ᎠᎩᎾ ᎠᏘᏁᎮᏍᏗ, ᏕᏍᏕᎵᏌᏕᏒᎭ, ᎠᎴ ᏕᏍᎩᎾᏘᏃᎮᎸᎭ. ᎤᏬᏯᏁᏒᏃ ᎠᎨᏳᏣ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᎵᏓ ᎫᎻ; ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎯᎠ ᏄᏍᏗ ᎦᏛᎦ; ᎯᎨᏳᏣ, ᎬᏲᏎᎭ, ᏔᎴᎲᎦ. ”ᎠᏎᏉᏗ ᏂᏪᎠ.” ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᎤᎬᏫᏳᎯ ᏅᏩᎾᏓᎴ ᎦᎵᏆᏍᎪᎯ ᎢᏯᏂᏛ ᎾᏍᏉ ᏚᏑᏰᏎᎢ ᎠᎴ ᏚᏅᏎ ᏔᎵ ᏧᎾᎵᎪᏅᏛ ᎢᎬᏱ ᏄᏁᏅᏍᏗᏱ ᏂᎦᏛ ᏕᎦᏚᏩᏗᏒ ᎠᎴ ᏂᎬᎾᏛ, ᎾᎿ ᎤᏩᏒ ᏭᎷᎯᏍᏗ ᎨᏒᎢ. ᎤᎵᏏᏂᏕᏅ ᏲᎦᎴᏫᏍᏔᏅ, ᏕᎦᎾᏩᎩᏍᎬ ᏗᎦᏓᏁ ᏓᏆᎭᏄᏮ, ᎨᏴ ᎦᏓᏬᏍᎪ, ᏧᎧᎭᏲᏓ ᏓᎦᎾᏬᏍᎪ. ᎤᏅᏒᏰᏃ ᎬᏂᎨᏒ ᏂᎪᎬᏁᎭ ᏄᏍᏛ ᏫᏨᎷᏖᎸᎢ, ᎠᎴ ᏂᏣᏛᏁᎸ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᎢᏣᎦᏔᎲᏍᏔᏅ ᏕᏥᏲᏒ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᏗᏥᎧᎿᏩᏛᏍᏗᏱ ᎬᏃᏛ ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᏥᎩ; ᏆᎴᏗ ᎯᎠ ᏄᏪᏒᎩ; ᏥᎾᏋᏁᎸ ᏣᏉᏪᎳᏅ, ᎿᏉ ᎠᏎ ᎠᏉᏪᎳᏅ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏨᎨᏳᎢ ᎢᏓᎵᏅᏟ, ᏗᏣᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ, ᎦᏰᏥᏖᎸᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᏂᎪᎯᎸ ᎤᏣᏘ ᏕᏥᎸᏫᏍᏓᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎢᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎢᏣᎵᏂᎬᏁᎲ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏎᏉᏉ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎤᏙᎯᏳᏅᎩ ᎤᏁᏨ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᏣᎬᏫᏳᎰ, ᎦᎪ ᎤᏬᎯᏳᏅ ᎣᎩᏃᎮᎸᎢ? ᎠᎴ ᎦᎪ ᎠᏥᎾᏄᎪᏫᏎᎸ ᎤᎬᏫᏳᎯ ᎧᏃᎨᏂ? ᎦᏙᏃ ᎾᏍᎩ ᏛᏛᏁᎵ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ? ᏓᎦᎷᏥ ᎠᎴ ᏙᏛᏛᏔᏂ ᎾᏍᎩ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᏅᏩᎾᏓᎴ ᏙᏛᏁᎵ ᏖᎸᎳᏗ ᏓᏫᏒᎢ. ᏂᎦᏛᏃ ᏴᏫ ᎤᏂᏁᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᎩᎬ ᎠᏴ ᎠᎴ ᏦᎨᏥ ᎣᎩᏅᎦᎴᏍᏗ. ᏌᎳᏓ ᎤᏣᏪᏐᎸᏍᏕᎢ ᏃᎴ ᏙᎵᏓᏍᏆ ᎤᏩᏯᎨᎢ. ᏗᏂᏲᏟ ᏍᏓᏯ ᎤᏁᎷᏁ ᎠᏂᎸᏉᏗᏍᎬ. ᎩᎶ ᏯᏕᎶᎰᏍᎬᎾ ᎱᎷᏤ ᏣᏥ, ᎤᏃᎮᏗ ᏄᎾᎵᏍᏔᏁᎸ ᎤᏓᎵ ᏃᎴ ᏗᏂᏲᏟ. ᎤᏪᏅᏎᏃ ᎤᎵᎪᏁᎴ ᎾᎿ ᎡᎯ ᎠᏍᎦᏯ; ᏙᏧᎶᎨᏒᏃ ᏏᏆ ᏗᎨᎶᎸ ᎤᏅᏎᎢ. ᏂᎦᏛᏃ ᎬᏩᏛᎦᏁᎸᎯ ᎤᏂᏍᏆᏂᎪᏎ ᏃᏒ ᎪᎵᎬᎢ, ᎠᎴ ᎬᏩᏛᏛᎲᏍᎬ ᏕᎦᏬᎯᎵᏴᏍᏓᏁᎲᎢ. ᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎦᏁᎲᎢ, ᎤᎸᎲᎩ, ᎠᎴ ᎤᎷᏏᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᎦᏘᏏ ᎦᎴᏂ ᎤᎵᏍᏕᏍᏔᏅᎩ. ᎾᏍᎩ ᎠᏥᏅᏏᏓᏍᏗ ᎹᎵᎦ ᏧᏙᎢᏛ ᎨᏒᎩ. ”ᎠᏯ,” ᎤᏛᏁ ᏌᎳᏓ. ᎾᏍᎩᏃ ᎤᎵᎮᎵᏨ, ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎩ, ᎢᏥᎦ; ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ, ᏂᎯ ᎾᏍᎩ ᎢᏣᎵᎬᎭᎷᏰᎸᎯ ᏥᎩ; ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎬᎢ. ᎾᏍᎩ ᎣᎩᏍᏓᏩᏗᏒ ᏉᎳ ᎠᎴ ᎠᏴ, ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᏧᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏂᎨᎬᏁᎭ ᏅᏃᎯ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ. ᎠᏏᏴᏫᏃ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᏚᏁᎴᎢ, ᏐᎢᏃ ᏔᎵ ᎢᏯᎦᏴᎵ, ᏐᎢᏃ ᏌᏉ ᎢᏯᎦᏴᎵ, ᎠᏂᏏᏴᏫᎭ ᎾᏍᎩ ᏰᎵ ᎢᎬᏩᎾᏛᏁᏗ ᎨᏒᎢ. ᎿᏉᏃ ᎤᏂᎩᏎᎢ. ᎤᏁᎵᏎ ᎦᎷᏯᏍᏘ ᏃᎴ ᎠᏰᎳᏍᏘ, ᎢᏧᎳ ᎠᎵᏍᏙᏗ ᏃᎴ ᎬᏔᏂᏓᏍᏗ, ᎠᏁᎵᏍᎨ ᎤᎾᎵᏍᎪᎸᏛ ᎠᏂᏲᏍᎩ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏰᎳᏍᏘ ᏃᎴ ᎦᎷᏯᏍᏘ. ᎨᏥᏅᏏᏓᏍᏗᏃ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎾᎿ ᎠᎾᏙᎾᎥᎩ, ᎧᏃᏍᎦ ᎤᏃᏙᏔᏅᎯ ᎨᏒᎩ, -ᎤᏴᏢᎩᏰᏃ, ᎠᎴ ᎤᏂᎦᎾᏬᏍᎬᎩ. ᏈᏓᏃ ᎨᎸᎩ ᎦᏙᎬᎩ ᎠᎴ ᎤᎦᎾᏬᏍᎬᎩ. ᎢᏣᏓᏅᎡᎮᏍᏗ ᏂᎦᎥ ᏄᏓᎴᏒ ᎤᏲᎢ. ᎠᏎᏍᎩᏂᏃᏅ ᎣᏏᏳ ᏂᏣᏛᏁᎸ ᏥᏍᎩᏁᎸ ᎠᏆᎵᏍᏕᎸᏙᏗ ᏥᎩᎵᏲᎬ ᎢᏳᎢ. ᎨᏍᏗ ᏓᏆᎴᎳ ᎤᎶᎯᏍᏗ ᎦᎪᏒᏗ ᏱᎨᏎ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏧᎳ ᏚᏂᏔᎴᏐᎢ, ᏥᏍᏆᏃ ᎦᎸᎶ ᎠᏁᎯ ᏚᎾᏁᏍᏓᏝᎰᎢ, ᏴᏫᏍᎩᏂ ᎤᏪᏥ ᎥᏝ ᎢᎸᎯᏢ ᎠᏍᎪᎵ ᎤᏗᏱ ᏱᎩ. ᎢᎦᏛᏃ ᎠᏄᎦᎸᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎠᏄᎦᎸᏃ ᏧᏛᏒ ᎤᏁᏄᎳᏍᏔᏁᎢ. ᎤᏩᏎ ᎠᎹᏰᎵ ᏚᎬᏩᏝᏅ ᎫᏫᏍᎩᏫ. ᎤᏙᎯᏳ ᏭᏲᎢᏴ ᏄᎵᏍᏔᏁᎮ. ᎾᏍᎩᏃ ᏰᎵᏉ ᏗᏣᎵᏂᎪᎯᏍᏙᏗ ᏥᎩ ᎾᏍᎩᏯ ᏂᎦᏪᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᏆᏤᎵᎦ, ᎠᎴ ᎾᏍᎩᏯ ᏥᏌ ᎦᎶᏁᏛ ᎠᎦᎵᏥᏙᏅᎢ, ᎾᏍᎩᏯ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎨᏒ ᎤᏕᎵᏛ, ᎾᏍᎩ ᎡᎶᎯ ᏧᏓᎴᏅᎲ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏕᎵᏍᏔᏅᎯ ᏥᎨᏎᎢ, “ᎦᏙᎢᏳᏍᏗ ᎮᎵᎠ ᏂᎯ?” ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎮᎾ ᏩᏙᏑᎵ ᏌᎶᎻ ᏨᏓᎸᎢ,--ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎠᏥᏅᏏᏛ ᎦᏛᎦ. ᎤᏪᏅᏒᎩᏃ ᎠᎴ ᏭᏙᏑᎴᎥᎩ, ᎤᎷᏨᏃ ᎠᎪᏩᏘᏍᎬᎩ. ᎠᎴ ᏂᎦᎥᏉ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᎩᎬ ᎦᏅᎦᎸᏙᏗ ᎨᏒᎩ; ᎠᎴ ᎩᎬ ᎠᏨᏅᎯ ᏂᎨᏒᎾ ᏱᎩ, ᎠᏍᎦᏅᏨ ᎥᏝ ᏴᎦᏴᏓᏗᏙᎵᎩ. ᏧᏯᏪᎢᏍᏗ ᎢᎦ ᏒᎮᏱᏣ ᏄᎵᏍᏔᏁ. ᎠᏁᎯ ᏯᏂᎦᏔᎲᎾ ᎭᎾ ᏧᎾᏓᎴᏅ, ᏃᎴ ᏧᏓᎴᏅᏓ ᎩᎦ ᎤᏂᏁᎯ, ᏃᎴ ᎾᎥᏂ ᏂᎨᏒᎾ ᎡᏆ ᎦᏚᎲ ᎠᏰᎵ, ᎠᏂᏩᏥᏂ ᎪᎰᏍᏗ ᏱᎬᏁᎵ ᎢᏳᏍᏗ ᎨᏒ ᎠᎴ ᎢᏳᏍᏗ ᏃᏣᏛᏁᎲ ᎭᏂ ᏚᎨᏓᎵᏴ. ᏥᏔᎦ ᎠᏂᎩᏌ ᎤᎾᎩᎸ ᏚᏂᎶᎣᏎ ᏃᎴ ᏕᏧᎬ ᏓᏖᎸᎲᏍᎨ ᎠᏎᏃ ᎨᏍᏗ ᏱᎦᏃᎸᎤᏍᎨ. ᏃᎴ ᏄᏪᏎ, ᏍᎩᎷᏥᏏ. ᎠᏏᏉᏃ ᏉᎳ ᎾᏍᎩ ᏓᎦᏘᏴᎩ ᎡᏗᏂᏱ, ᏧᏓᏅᏛ ᎤᏣᏘ ᎤᏕᏯᏔᏁᎸᎩ, ᎤᏙᎴᎰᏒ ᎦᏚᎲ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᎯ ᎨᏒᎢ. Ꭰ-ᏍᎩᏂ ᎠᎾᎵᏅᏟ ᏧᎾᏓᎨᏳᏗ ᎨᏒ ᎤᎬᏩᎵ ᎥᏝ ᎤᏚᎸᏗ ᏱᏂᏣᎵᏍᏓᏁᎭ ᏫᏨᏲᏪᎳᏁᏗᏱ; ᏨᏒᏰᏃ ᎤᏁᎳᏅᎯ ᎢᏤᏲᏅᎯ ᎢᎩ ᏗᏣᏓᎨᏳᏗᏱ. ᎾᏍᎩᏃ ᎬᏂᏗᏳ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎠᎵᏍᏕᎸᏙᏗ ᎢᏥᏰᎸᏎᏍᏗ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎡᏗᎨᏳᎢ ᎢᏓᎵᏅᏟ ᏉᎳ ᎬᏗᏍᎬ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏥᏁᎸ ᏥᏦᏪᎳᏁᎸ; ᎾᏍᎩ ᏔᎵᏁ ᎥᏥᏅᎵ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᏕᎯᏯᏓᏂᎸᏨᎭ, ᎾᏍᎩ ᎠᏋᏒ ᎠᎩᎾᏫ ᏥᎩ. ᎤᏴᏣ ᎠᎹ ᏚᏍᏚᏣ, ᎤᏰᏤ ᏫᎵᎻ. ᎪᎯᏍᎩᏂ ᎿᏉ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᏗ ᏧᏃᏪᎳᏅᎯ ᏗᎬᏔᏅᎯ ᎾᏍᎩᏯ ᎠᏓᏅᏖᏍᎬ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎡᎯ ᎡᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎢᎨᎬᎸᎯ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎤᏃᎯᏳᏏᏱ ᎤᎬᏩᎵ-- ᎢᎦ ᏒᎯᏰᏣ ᏚᎾᏦᏎ Boudinot ᎤᏕᎳᏓ ᏕᎨᎦᏨᏍᏔᏁ, ᎤᏂᏙᎵᏨ ᎠᎵᏥᏙᎲᏍᎩ, ᎣᎭᏁ ᎤᎾᏂᎩᏎ ᏧᎦᏃᏮ ᎢᏣ, Ridge ᏃᎴ ᎤᏍᎦᎢᏓ ᎤᏓᎵ, ᏂᎦᏓ ᎤᎾᏂᎩᏎ. ᎾᎿ ᎾᏍᏉ ᎢᏣᏓᏑᏯ ᏂᎯ, ᏥᏌ ᎦᎶᏁᏛ ᎢᏥᏯᏅᏛ ᏥᎩ; ᏱᏭᎪᏌ ᎡᎾᎢ, ᎦᎵᏣᏙᏗ ᏂᎦᎵᏍᏗ ᎦᏙᎯ. ᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏁᎳᏅᎯ ᏳᎨᏳᎭ, [ᎤᏁᎳᏅᎯ] ᎾᏍᎩ ᎤᎦᏔᎰᎢ. ᎤᎵᏍᏆᎸᏗᏴ ᎤᎾᏰᎯᏍᏗᏳ ᎤᏛᏁ ᏲᎾ. ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᏥᎩᏯᎠ, ᎠᎴ ᎾᏍᎩ ᎠᏎ ᏥᎨᎳᏗᏙᎮᏍᏗ ᏂᎪᎯᎸᎢ. ᏚᏍᎩᎾᏛ ᏚᏅᏓᏒ. ᎿᏉᏃ ᎧᏃᎮᏗ ᏄᎾᎵᏍᏓᏁᎸᎩ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏂᏧᏏᏃ ᎠᏓᏅᎦᎸᏗᏱ ᎤᎬᏩᎵ. ᏚᎦᎴᏅᏔᏁ ᏚᏑᎬ ᏚᏩᏂᎦᏢ, ᏕᎦᎾᏤᏍᎨ ᎠᏰᎸᎢ ᎦᎶᏍᎬ ᎦᎶᎯᏍᏗ ᎤᏗᏍᎩᎩ. ᎠᏎ ᎠᎦᏗᏓ ᎦᏙ ᎤᏂᏂᎬᎨ. ᎥᏝ ᎠᏗᎾ ᎤᏁᎳᏅᎯ ᎤᏁᏨ ᎠᏎᏉᏉ ᏥᏄᎵᏍᏔᏃ ᎾᏍᎩᏯ [ᏱᏥᏁᎦ,] ᎥᏝᏰᏃ ᏂᎦᏛ ᎢᏏᎵ ᏱᎩ ᎾᏍᎩ ᎢᏏᎵ ᏧᏁᏢᏔᏅᏛ ᏥᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏔᎵᏁ ᎤᎾᏁᎶᏔᏅᎩ ᎬᏩᏂᏴᏗᏱ; ᎠᏎᏃ ᏚᏗᏫᏎᎸᎩ, ᎨᎵᎵᏃ ᎥᏓᎵ ᎤᎶᏗ ᎠᎢᏒᎢ, ᏚᎪᎮ ᏌᏩᏂ ᎠᎴ ᎡᏂᏗ ᎾᏍᎩ ᏗᎾᏓᏅᏟ, ᎥᏓᎵ ᎠᏂᎦᏯᎷᎥᏍᎨᎢ; ᎠᏂᎦᏯᎷᎥᏍᎩᏰᏃ ᎨᏎᎢ. ᎨᏍᏗ ᎩᎶᎢ ᏍᎩᎾᎾ ᎢᏲᏍᏓ ᎤᎾᎵ ᎢᏳᎵᏍᏔᏅ ᏱᎨᏎᎢ --- ᎤᏓᏅᏘ, ᎠᏓᏍᏕᎵᏍᎩ, ᏃᎴ ᎠᏏᎾᏌᏂ. ᎠᏎᏃ ᎨᏍᏗ ᏱᏧᏁᏣ. ᎾᏍᎩ ᏥᏅᎵ ᏗᏤᎲᎢ ᎾᏍᎩᏉ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏃᎦᎵᏍᏓᏁᎵᏕᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏧᎦᎵᏍᏓᏗᏍᏗᏱ ᏗᏥᎾᏫ. “ᏃᏉ!” ᎢᏧᎳ ᎢᏣ, ᏰᎵᏉ ᏕᏥᎾᎩᏍᎬ ᏗᏥᎶᏍᏔᏅ ᏗᎪᏪᎵ. ᏚᏯᏪᎬ ᏃᎴ ᏫᏍᎩ ᎤᏩᎭᏂᎴ ᎦᏣᏄᎸ. ᎾᏍᎩ ᏗᎨᎪᏍᏔᏅᎯ ᏥᎩ ᎾᏂᎥ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᎦᎸᎶ ᎠᎴ ᎡᎶᎯ ᎠᏁᎯ, ᎭᎾᏉ ᎠᎴᏂᏍᎩ ᎩᎦᎭ ᏄᎵᏍᏔᏅ, ᎯᏍᎩᏉ ᎢᏯᏛᎸᏓ. ᎢᏳᏰᏃ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎬᏗ ᏱᎦᎵᏍᏓᏴᎲᏍᎦ, ᎦᏙᏃ ᎾᏲ ᎥᎩᏃᎮᎭ ᏅᏗᎦᎵᏍᏙᏗ ᎾᏍᎩ Ꮎ ᎤᎬᏩᎵ ᏥᎦᎵᎡᎵᎦ? “ᎭᏕᏬ, ᎠᎬᏱ ᎠᎾᏗᏗᏍᎩ ᎤᏅᏌ ᏕᏥᎧᏁᎰ ᏏᏆ.” ᎤᏛᏁ ᎡᎶᏗ. ᎢᏳᏍᎩᏂᏃ ᏂᏣᏛᏓᏍᏓᏁᎲᎾᏉ ᎢᎨᏎᏍᏗ, ᎠᏏᏴᏫ ᎠᎴ ᎠᏂᏔᎵ ᏕᎭᏘᏁᎨᏍᏗ, ᎾᏍᎩᏃ ᎠᏂᏃᎮᏍᎬ ᎠᏂᏔᎵ ᎠᎴ ᎠᏂᏦᎢ ᎠᏂᎦᏔᎯ ᏂᎦᏛ ᏣᏁᏨ ᎠᏍᏓᏲᏍᎨᏍᏗ. ᎭᎾ ᎡᏝᏪᎯ ᎤᏬᏞ ᎢᎦ ᏒᎮᏱᏣ ᎠᏓᏅᏖᏍᎨ ᏃᎴ ᎤᎦᏙᏍᏕ ᏫᎵᎻ. ᎪᏍᏓ ᎢᏳᏍᏗ ᏄᏍᏛ ᎤᏁᎦᎸ ᏃᎴ ᏧᏬᏘᏓ ᎨᏒ ᏗᎦᏙᎵ ᎭᏫᏂᏣ ᏃᎴ ᎠᎵ ᎤᎴᏴᏒ ᎨᏐ ᎤᏔᎣᎸᏐᏅ ᎤᏓᏏᏁᏕᏅ. ᎯᎠ ᏄᏂᏪᏎᎢ; ᎭᏢ Ꮎ ᏧᏕᏅ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ, ᎣᎩᎪᎲᏰᏃ ᎤᏤᎵ ᏃᏈᏏ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎠᎴ ᎣᏣᏓᏙᎵᏍᏓᏁᎵᎦ. ᏥᏌ ᎤᏟ ᎡᎶᎸᏉᏗᏳ ᏂᎯ, ᎡᏍᎦᏉ ᎢᎩᏙᏓ ᏤᎦᏈ ᎾᏍᎩ ᎢᎩᏁᎸᎯ ᎯᎠ ᎠᏔᎴᏒᎢ, ᎠᎴ ᎾᎿ ᎤᏩᏒ ᎤᏗᏔᎲᎢ ᎠᎴ ᏚᎾᏗᏔᎲᎢ ᏧᏪᏥ ᎠᎴ ᎤᎾᏝᎾᎥᎢ. ᎠᏁᎵᏌᏕᏍᎨᏃ ᎠᎩᎾ, ᎤᏂᎾᏝᎢ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᎡᏍᏕᎵᏌᏕ ᎠᎩᎾ? ᏍᏈᏍᏓ ᏚᎾᏙᎡ ᎠᏣᏗ, ᏎᏃ ᏧᏂᎶᎸᏗ ᏓᏃᏎᎮ ᎠᏂᏣᎳᎩ. ᎠᏎᏃ ᏥᏌ ᎤᏙᎴᎰᏒᎩ ᎤᏲᏉ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᎢᏍᎩᏌᏛᎥᏍᎦ, ᎢᏣᏠᎾᏍᏗ? ᎠᏂᏆᎵᏏᏃ ᎡᏙᎲ ᎠᏁᏙᎯ ᎾᏍᎩ ᎤᎾᏛᎦᏅᎩ, ᎠᎴ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏥᎪ ᎾᏍᏉ ᎠᏴ ᏦᏥᎨᏫ? ᏆᎴᏗ ᎤᏙᎴᎰᏒ ᏗᎬᏩᏎᎪᎩᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᏔᎸᏅᎩ, ᎠᎹ ᏬᏁᎩᏎᎢ, ᎠᎴ ᏚᏑᎴᎮ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏴ ᎥᏝ ᎠᎩᏍᎦᏅᏨᎯ ᏱᎩ ᎯᎠ ᏄᏍᎦᏅᏨᎾ ᏴᏫ ᎤᎩᎬ. ᏂᎯ ᎢᏣᎦᏌᏯᏍᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᏄᏓᎴᏒ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᎴ ᎠᏐᏢᏙᏗ ᎨᏒ ᎨᏥᏙᎵᏍᏗᏉ ᎨᏎᏍᏗ ᏴᏫ; ᎦᎸᏉᏗᏳᏍᎩᏂ ᎠᏓᏅᏙ ᎠᏐᏢᏙᏗ ᎨᏒ ᎥᏝ ᎨᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ ᏴᏫ. ᏕᎦᏃᏣᏢ ᏧᏬᏣᎳᎩᏍᏗ ᏧᏃᎯᏍᏗ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ, ᏃᏗ ᎪᎱᏍᏗ ᏱᏓᏥᎶᏍᏓ ᏌᎳᏓ. ᎠᎴ ᏞᏍᏗ ᏍᏆᏘᏂᏙᎯ ᏰᏦᏎᎮᏍᏗ ᏂᎯ, ᎠᏏᏴᏫᏉᏰᏃ ᏗᏣᏘᏂᏙᎯ, ᎾᏍᎩ ᎦᎶᏁᏛ. ᏰᎵ ᎪᎯᏛ ᎠᏋᏌ ᎦᏓᏂᏆᏘᎲ, ᏂᏥᏃᎯᏎᎸᎾ ᎨᏒ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬ. ᎾᏍᎩ Ꮎ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎡᎶᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩ ᏳᎪᏩᏘᎭ ᎠᎴ ᎥᏝ ᏳᎦᏔᎭ; ᏂᎯᏍᎩᏂ ᎡᏥᎦᏔᎭ, ᎢᏤᎳᏗᏙᎭᏰᏃ, ᎠᎴ ᎾᏍᎩ ᎢᏥᏯᎡᏍᏗ. ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎦᎸᎶ ᎦᎸᎳᏗ ᏓᏥᎾᏄᎪᏫᏏ ᎠᎴ ᎤᏰᎸᏛ ᎡᎶᎯ ᎡᎳᏗ, ᎩᎬ ᎠᎴ ᎠᏥᎸ ᎠᎴ ᏧᎦᏒᏍᏗ. ᎤᏙᎯᏳ ᎣᏍᏓ ᎤᏰᎸᏁ ᎤᏂᏣᏘ ᏴᏫ ᎠᏂᎦᏔᎲ ᎤᎵᎪᎾᏔᏅᎢ. ᎣᎩᎾᏓᏴᎳᏛ ᎣᏍᏓᏕᎭᏲᎲ ᎠᏓᎨᏗ ᎦᏛ. ᎠᎵᏍᏓᏴᏗ ᎤᏍᏉᎵᏱ ᎤᎬᏩᎵ ᎪᏢᏅᎯ, ᎠᎴ ᎤᏍᏉᎵᏱ ᎠᎵᏍᏓᏴᏗ ᎤᎬᏩᎵ ᎪᏢᏅᎯ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏙᏛᏛᏔᏂ ᎢᏧᎳ ᎤᏍᏉᎵᎩ ᎠᎴ ᎠᎵᏍᏓᏴᏗ. ᎠᏰᎸᏃ ᎥᏝ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᎤᎬᏩᎵ ᎪᏢᏅᎯ ᏱᎩ, ᎤᎬᏫᏳᎯᏍᎩᏂ ᎤᎬᏩᎵ ᎪᏢᏅᎯ; ᎠᎴ ᎤᎬᏫᏳᎯ ᎠᏰᎵ ᎤᎬᏩᎵ ᎠᎵᏍᎪᎸᏔᏅᎯ. ᎠᎴ ᎬᏂᏳᏉ ᎠᏁᎭ ᎣᏂ ᏥᎩ, ᎾᏍᎩ ᎢᎬᏱ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏁᎭ ᎢᎬᏱ ᏥᎩ, ᎾᏍᎩ ᎣᏂ ᎨᏎᏏᏗ. ᏧᏁᎵᏁᏃ ᎢᎦ ᎤᏍᏆᎸᎲ ᎾᏍᎩ ᎠᎱᏍᏕᏎᏗ ᎨᏒ ᎠᏲᎵ, ᏥᏌ ᏚᏃᎡᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᏂᏚᏬᎡ ᎠᏏᏉ ᏣᏥᏁᎵᎬᎾ ᎨᏎᎢ. ᎿᏉᏃ ᏔᎵᏁ ᏙᎤᏛᏛᏅᎩ, ᎦᎪ ᎡᏥᏲᎭ? ᏚᏪᏎᎸᎩ ᎯᎠᏃ ᏄᏂᏪᏒᎩ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ. ᎪᎪᏃ ᎾᏍᎩ ᎣᏏᏅ ᏱᏂᏨᎦ ᎢᏳᏃ ᎣᏍᏛ ᎨᏒ ᎢᏥᏍᏓᏩᏕᎩ ᏱᎩ? ᎧᏂᎩᏓ ᎨᏎ ᎦᏙ ᎠᏍᎪᏍᏙᏗ, ᏅᏯ ᎬᏗ ᎤᏂᏐᏗ ᎨᏎᏍᏗ. ᏧᎦᏃᏮ ᏗᏁᏏᏎᎢ. ᏳᎵᏍᏇᏚᏮᎾ, ᏓᎶᏂᎨ ᎤᏍᏘᏰᎬ ᎤᎵᏍᎩᏃᏘᏍᏛ, ᎢᏳᏓᎵᎭ ᏕᎦᏰᏌᏛ ᏕᎬᏗᏍᎬ ᎠᎵᏔᏬᏍᎬ. ᎢᏧᎳᎭᏃ ᏕᎨᎦᏛᏁ ᎠᏂᏔᎵ ᏗᎾᏓᎾᏌᎲᏍᎩ; ᎠᏏᏴᏫ ᎠᎦᏘᏏᏗᏢ, ᏐᎢᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ. ᎢᏳᏃ ᏂᎬ ᎠᏰᎸ ᎠᎦᏔ ᏱᎩ, ᎭᏢ ᎠᏛᎪᏙᏗ ᏱᎩ? ᎢᏳᏃ ᏂᎬ ᎠᏛᎪᏙᏗ ᏱᎩ, ᎭᏢ ᎣᏪᏩᏒᎢᏍᏙᏗᏱ ᏱᎩ? ᎤᏚᎵᏍᎨ ᎤᏅᎢᏍᏗ Philadelphia, ᏚᏂᏆᏅᏤᎢᏉ, ᏣᏥ ᎠᏍᏛᏧᏍᏗᏍᎨ ᎦᎾᏌᎾᎩᏍᎬ ᎦᎷᏯᏍᏘ. ᏥᏯᎵᎡᎵᏤᎰ ᎠᏆᏁᎳᏅᎯ ᎬᏁᎢᏍᏗᏍᎪ ᏂᎪᎯᎸ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᎦᏅᎩ ᏂᏕᏥᎾᏝᎥᎾ ᏱᏂᏨᏁᎸ ᎤᏙᎯᏳᏒ ᏂᏕᏥᎾᏝᎥᎾ ᏱᎩ. “Ꭳ,” ᎤᏛᏁ. ᎨᏍᏗ ᏐᏉ ᎤᏲᎸ ᏱᎨᏎ ᎦᎶᏇ, ᎠᎴᏃ ᎠᎾᏙᎴᏆᏍᎬ ᎠᎴ ᏓᎾᏁᎶᎲᏍᎬ ᎠᎴ ᎠᎾᏁᎸᏗᏍᎬ ᎤᏂᏃᎯᎵᏓᏍᏗ. ᎨᏍᏓᏛ ᏯᏂᏍᎦᎮ ᏩᎭᏯ, ᎠᏎᏍᎩᎾ ᏙᏳ ᎤᏦᏎᏗ ᏣᏁᎵᏍᎬ ᏍᎩᎾ ᏩᎭᏯ. ᏧᏁᏨᏃ, ᎥᏝ, ᎤᏛᏁᎢ; ᎠᏎᏃ ᎣᏂ ᎤᏁᏟᏴᏎ ᎤᏓᏅᏛᎢ, ᎠᎴ ᎤᏪᏅᏎᎢ. ᎾᏍᎩᏃ ᎿᏉ ᎤᏩᏛᎲ ᏌᏉ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏓᎬᎾ ᎢᏳᏍᏗ ᎤᏪᏅᏎ ᏭᎾᏗᏅᎭ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏛᎢ, ᎾᏍᎩᏃ ᎤᏩᏎᎢ. ᎦᏌᎴᎾ ᏠᏯ ᏨᏛᎩᏂᏴᎩ ᎦᏆ ᎦᏁᎸᎢ ᏖᏒ ᏘᏁᏒᎭ, ᎠᎴ ᎪᏪᎵ ᏙᏘᏁᏒᎭ ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎦᏁᎦ ᏗᎪᏪᎶᏗ. ᎾᏍᎩ- ᎢᏳᏍᏗ ᎯᎠ ᏄᏪᏎᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏰᎬᏍᏓ ᎢᎸᎯᏢ ᎢᏅ ᏭᎶᏎᎢ, ᎤᎸᏒᎭ ᎤᎬᏫᏳᎯ ᎢᏯᎬᏁᏗᏱ ᎠᎴ ᎥᎤᎷᎯᏍᏗᏱ. ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᏰᎵ ᎬᎦᏙᎥᎯᏍᏙᏗ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎠᏁᎲᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᏚᎾᏄᎪᏫᏎᎸ. ᎤᏂᏄᎪᏤᏃ, ᏭᎾᎵᏥᏙᏁ ᎾᏍᎩ ᏴᏫ ᎠᏎ ᏧᏂᏁᏟᏴᏍᏗ ᎨᏒ ᏚᎾᏓᏅᏛᎢ. ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᏧᏍᏆᏴᏍᏗ, ᎭᎩᏠᏩ ᏫᎩ ᏧᏪᏥ ᏗᎦᏅᏙᏗ.” ”ᏙᎢᏳᏍᏗ ᎮᎵᎠ ᎤᏛᏁ ᏌᎳᏓ ᏣᎾᏕᎲᏍᎬ ᏌᏌ ᎠᏂᏓ?” ᎤᏩᏛᎮ ᏍᎩᎾ ᎠᏗᏍᎬ ᏙᏯ. ᎢᏳᏃ ᎩᎶ ᏅᏩᎾᏓᎴ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏱᎦᏬᏂᎭ, ᎠᏂᏔᎵ, ᎠᎴ ᏦᎢ ᎢᏴᏛ ᏩᏍᏕᏍᏗ ᏓᏂᏬᏂᏎᎨᏍᏗ ᏌᏉ ᎤᏪᏒᏛ; ᎠᏏᏴᏫᏃ ᎠᏁᏢᏗᏍᎨᏍᏗ. ᎠᎴ ᎾᏍᎩ ᎠᏎᎵᏔᏅᎯ ᎨᏒ ᎬᏔᏅᎯ ᏥᎩ [ᎦᎶᏁᏛ ᎠᏥᎸ-ᎨᎶᎯ ᎢᏯᎬᏁᎸᎯ ᏥᎩ,] ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏁ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᏈᏓᏃ ᎤᏙᎴᎰᏒ ᎯᎠ ᏂᏚᏪᏎᎴ ᏴᏫ; ᎢᏥᏍᎨᏯ ᎢᏏᎵ ᏧᏪᏥ, ᎦᏙᏃ ᎢᏥᏍᏆᏂᎪᏍᎦ ᎯᎠ, ᎠᎴ ᎦᏙᏃ ᎤᏯᏅᏒᎯ ᏙᏍᎩᎾᎦᏂᎭ, ᎾᏍᎩᏯ ᎣᎩᏅᏒ ᏙᎩᎾᎵᏂᎬᎬ ᎠᎴ ᎣᏍᏙᏏᏳ ᎨᏒ ᏦᎩᏅᏔᏃᎢ ᎯᎠ ᎬᏪᏓᏍᏗ ᏥᏃᏍᏛᏁᎶᎢ. ᎤᏍᏚᏁ ᎦᏅᏫᏍᏗᏍᎩ ᎡᎶᏗ, ᎤᏅᎪᏤ ᎣᏁ ᎢᏣ ᏭᎶᏎᎢ, ᏃᎴ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᏚᏗ ᎣᏁᎢᏣ. ᎠᎴ ᏞᏍᏗ ᎤᏓᎪᎵᏰᏗᏱ ᎨᏒ ᏫᏗᏍᎩᏯᏘᏅᏍᏔᏅᎩ, ᏍᎩᏳᏓᎴᏍᎨᏍᏗᏉᏍᎩᏂ ᎤᏥ ᎨᏒᎢ. ᏣᏤᎵᎦᏰᏃ ᏣᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᏣᎵᏂᎩᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎸᏉᏗᏳ ᎨᏒ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ. “ᎣᏁ ᎢᏣ ᏫᎶᎯ ᏣᏄᏏ,” ᎤᏛᏁ ᎰᎻ, ”ᎠᏯ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏗᏍᏆᏂᎪᏙᏗ ᎢᏣ ᏱᏥᏌᏙᏯ! ᎥᏝᏍᎩᏂᏃᏅ ᎤᎷᏨᏉ ᎤᏩᏒ, ᎤᎦᎵᏍᏗᏍᎩᏂ ᎾᏍᏉ ᎤᏓᏅᏓᏛᎢ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᎣᎩᏃᏁᎸ ᏂᎯ ᎤᏣᏘ ᎢᏣᏚᎵᏍᎬᎢ, ᎤᏲ ᎢᏥᏰᎸᏒᎯ, ᎤᏣᏘ ᏍᎩᎨᏳᎢᏳ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᎢᎦᎢ ᎠᏆᎵᎮᎵᏨᎩ. ᎢᏳᏃ ᎿᏉ ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ ᎤᏩᏒ ᎤᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏕᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏓᏘ ᏁᎮᏍᏗ, ᎿᏉ ᏓᎦᏂ ᎦᎸᏉᏗᏳ ᎤᏪᏍᎩᎸᎢ; ᏂᎦᏓ ᏄᏓᎴᎯ ᏄᎵᏍᏔᏂᏙᎴ, ᎠᏎᏍᎪᏃ ᏍᎩᏳᎵᏍᏙᏗ ᎨᏎ? ᎷᎦ ᎤᏩᏒ ᎣᏍᏕᏙᎭ; ᎹᎦ ᏘᏯᏗᏁᏒᎭ, ᎬᎩᏍᏕᎸᎯᏓᏍᏗᏰᏃ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏂ ᎡᎶᎯ ᎠᏁᎯ ᏓᎾᏕᏒᎲᏍᎪᎢ ᎠᎴ ᏕᎨᏥᏰᎪᎢ; ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎺᎵ ᎤᎦᏔᎲᏒ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎳᏉᏂ, ᎾᏍᎩ ᎦᏛᎬᎢ, ᏗᏍᏇᏲᎲᏍᎩ. ᎤᎵᏍᏙᏴᎮᎢ ᎤᎧᏛᎢ ᏃᎴ ᎠᏍᎪᎵ ᏣᏄᏏ; ᏃᎴ ᏭᎬᏫᏳᏒ ᏧᎷᏫᏍᏓᏁᏗ, ᏏᏆ ᎤᏪᎵᏍᏗ ᎨᏎ ᎾᏍᎩᏴ ᏴᏫ ᎤᎾᎦᏙᏍᏛᎢ. ᎠᏆᎵᎸ ᎣᏍᏛ ᎠᎵᏍᏗ ᎨᏒᎢ, ᎠᎩᏍᏆᏛ ᎦᏙᎩᏯᏍᎬᎢ, ᎠᎩᏍᏆᏂᎪᏔᏅ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎤᏣᏔᏅᎯᏰᏃ ᎠᏆᎵᎮᎵᏨᎩ, ᎢᏓᏓᏅᏟ ᎤᏂᎵᏨ ᎠᎴ ᎤᏂᏃᎮᎸ ᏣᏠᎾᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎮᏙᎲ ᏚᏳᎪᏛ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ Ꮎ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎤᏁᎳᏅᎯ ᎠᏂᎩᎵᏲᎩ, ᏫᏓᏂᏲᎯᏏ ᏧᏍᏆᏂᎪᏙᏗᏱ ᏧᎾᏓᏅᏙ, ᎣᏍᏛ ᏕᎤᏂᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩᏯ ᏄᏓᎵᏓᏍᏛᎾ ᎤᏬᏢᏅᏅᎯ ᏥᏓᏂᏲᎯᏎᎰᎢ. ᎨᏍᏗ ᎩᎳ ᎦᎶᏇ ᎪᏍᏔᏴ ᏗᏂᏆᎵ ᏧᎾᎵᏐᏍᏔᏅ ᏱᏚᏂᏰᎴᏅ. ᎠᎴ ᎤᎾᎴᏅᎮ ᎬᏭᎯᏍᏗᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏙᏥᏩᏛᎲᎩ ᏕᏂᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏙᏥᏩᏛᎲᎩ ᏕᏓᎴᎾᏍᏗᏍᎬᎩ ᏴᏫ, ᎠᎴ ᏕᎧᏅᎡᏗᏱ, ᎯᎠ ᏂᎧᏪᏍᎬᎩ, ᎠᏴ ᎠᎩᎬᏫᏳᎯ, ᎦᎶᏁᏛ. ᏣᏄᏏ ᏂᎦᏓ ᎤᏬᏰᏂ ᎬᏗ ᏚᏲᎵᎴ. ᎪᎯᏳᏗᏍᎩᏂ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᎯᎠ ᏂᎦᏪᎭ, ᏞᏍᏗ ᏣᎾᏫᏱ ᎯᎠ ᏱᏂᏪᏍᎨᏍᏗ, ᎦᎪ ᎦᎸᎶᎢ ᏓᏰᏏ? (ᎾᏍᎩ ᎦᎶᏁᏛ ᎠᎦᏠᎥᏙᏗᏱ;) ᎥᏝ ᏂᏥᎥ ᏱᏨᏯᏛᎦ; ᎦᏥᎦᏔᎭ ᎦᏥᏯᏑᏰᏛ ᎨᏒᎢ; ᎠᏎᏃ ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸᎢ, ᎢᏧᎳᎭ ᎣᏍᏓᎵᏍᏓᏴᎲᏍᎩ ᎤᏌᎳᏓᏅ ᎦᏗᎨᏂ ᎠᏆᏡᏗᏍᎬᎢ. “ᎤᏙᎯᏳᏗ ᏥᏂᏪᎠ,” ᎤᏛᏁ. “Ꭳ, ᎣᏍᏓᏗ ᏤᏣᎧᏃᏗ.” ᎤᏟᏂᎩᏓ ᎨᏎ ᎨᏴᎢ ᎠᎹ, ᏚᎧᏔᏍᏔᏁᎢ ᎤᏍᏗ ᎠᏣᏗ ᏭᎾᏌᎾᎩᏎ, ᎠᏲᏟᎨ ᏗᎦᏁᎲ ᏭᎸᏥᎴ. ᎤᏰᎶᎢᏍᏔᏁᏃ ᎤᏍᏆᏃᏴᎬ ᎦᎸᎳᏗ ᏧᎶᏎᎢ ᎾᏍᎩᏯ ᎤᏃᎴ ᎤᏣᏘ ᏣᏱᎵᏐᎢ, ᎤᎧᎵᎣᏁᏃ ᎠᏓᏁᎸ ᎾᎿ ᎠᏂᏅᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎾᏍᎩ ᏕᎦᏃᏣᎸ ᏚᏰᎵᏎ ᎨᎵᎵ ᎾᎿ ᎬᏩᏚᏫᏛ ᎨᏒᎢ. ᎠᎴ ᎢᏧᎳᎭ ᏕᎦᎴᎯᏐᏔᏅ, ᎠᎴ ᎢᏧᎳᎭ ᎢᎦᏅᏗᏱ ᏂᎬᏁᎸ ᎦᎸᎳᏗ ᏗᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ; ᎾᏍᎩᏃ ᎯᎠ ᏥᏗᏃᎮᎭ, ᎯᎠ ᎾᏍᎩ Ꮀ ᏄᎬᏫᏳᏒ ᏂᎦᎵᏍᏗᎭ; ᎾᏍᎩ ᏄᏍᏗ ᎢᎩᎧᎭ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎾᏍᎩ ᎠᎦᏘᏏᏗᏢ ᎦᎸᏉᏗᏳ ᎦᏍᎩᎸ ᎦᎸᎶᎢ ᎤᏪᏅ; ᏧᏍᏗ ᏓᏂᏰᏌᏛ ᎢᏳᏍᏗ ᏕᎦᎾᏅᎪᎪ ᎠᏍᏘ ᏧᏂᏂᏙᏗ. ᎥᏝ ᎠᎴ ᏳᏍᏆᏂᎪᏗ; ᏎᏓᏂᏰᏃ ᎤᏩᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎦ-ᎦᏛ ᎡᎯ ᎠᏤᎸᏍᎪᎢ. ᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏅ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏗᎹᏗ ᎢᎩᏅᏟ, ᏅᏃᎯ ᏭᎾᏓᏐᎴ ᏗᏂᏲᏟ ᏃᎴ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎯ ᏭᎾᏦᏁ. ᏝᏉᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᏗᏥᏰᎸ ᎦᏁᎸ ᎨᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᏥᏥᏯᎠ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏥᏁᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏂᎯ ᎢᏨᏒ ᎢᏣᏓᏤᎵ ᏂᎨᏒᎾ ᎨᏒᎢ? ᏯᏆᏨᏉᏛᎾ ᏥᏃᎮ. “Ꮒ,” ᎤᏛᏁ ᎤᏔᎾᏯ ᎤᏃᏕᎾ, “ᏔᎵᏁ ᏫᎮᏙᎸ ᎤᏲ ᎤᎾᏗᏅᏗ, ᏧᏍᏆᏴᏍᏗ, ᎪᏪᎵ ᎠᎪᎵᏰᏗ ᎠᎦᎸᏓ ᎯᏃᎸ. ᎠᏍᏓᏯᏃ ᎤᏁᎷᏅ ᏗᏂᎴᏂ ᏚᏂᏍᏚᏁᎢ, ᎠᎴ ᎤᎴᏃᏅᎯ ᎤᎾᏁᎷᎩᎡᎴᎢ; ᎭᏛᎩᎠᏧ? “ᏙᎢᏳᏍᏗ, ᏃᎴ ᎦᏨ ᎮᏙ?” ᎤᏪᎷᏁ ᏫᎵᎻ. ᎠᎴ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗᏳ ᎨᏒ ᎢᏳᏍᏗ; ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᎬᏁᎢᏍᏔᏂ ᎠᏁᎲ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎠᎴ ᏙᏓᏥᏃᎩᏍᏔᏂ ᏕᏣᏙᎥᎢ. ᏃᏗ ᎱᎦᎿᏁ ᏃᎴ ᎦᏃᎸᎥᏍᎨ, ᎠᎹ ᎦᏁᎲ ᏭᏃᎸᏔᏁ ᎤᎵᏍᏇᏔᏬ. ᏙᏳ ᎤᏪᏍᏓᏁᎸ ᏩᎭᏯ. ᏗᏛᎯᏍᏗᏍᎩ ᎠᏑᏴᎥᏍᎦ ᎦᏙ ᏧᎾᏗᎩᏓ. ᏍᏔᏛᎩᎠᏧ?” “ᎠᎹᏗ ᏣᏚᎳᏓ,” ᎤᎵᏏᏂᏗ ᏄᏪᏎ ᏣᏄᏏ. ᎾᏍᎩ ᏥᏓᏂᏒᏁᎰ ᏧᏃᏑᎶᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎤᎾᏠᎾᏍᏛ ᎪᎯᏗᏳ ᏣᎾᏓᏙᎵᏍᏗᏍᎪᎢ; ᎯᎠ ᎾᏍᎩ ᎤᏟ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᏱᏣᏓᏑᏯᏰᎵ ᎢᎨᏣᏛᏁᏗ ᎨᏎᏍᏗ ᎢᏕᏒᎭ ᏪᏥᏱᎵᏙᎸᎭ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ, ᎢᏳᏃ ᎤᏍᎦᏅᏨᎯ ᎨᏎᏍᏗ. ᏚᏂᎳᏫᏨᏃ ᏚᏁᏤᎴ ᏥᎷᏏᎵᎻ ᎤᏂᎷᎪᎢᏍᏗᏱ ᏂᎨᏒᎾ, ᎤᏂᎦᏘᏗᏍᏗᏱᏍᎩᏂ ᎠᎦᏴᎵᎨ ᎤᏚᎢᏍᏔᏅᎢ, ᎾᏍᎩ ᏍᎩᏯᏛᎦᏁᎸᎯ ᏥᎩ, [ᏚᏬᏎᎴᎢ.] ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎲ ᎨᏣᏈᏗᏍᎩ ᏱᏥᏍᎦᏍᏓᏁᎮᏍᏗ; ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᏅᏁᎯ ᎨᏥᏛᏙᏗ ᎨᏒᎢ, ᏂᎯᏍᎩᏂ ᎬᏂᎨᏒ ᎢᏨᏁᎯ ᎡᏥᏍᏕᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏥᏍᏕᎸᏗ ᎨᏒᎢ. ᎣᏍᏓ ᎤᏓᏅᏔᏕ ᏌᎳᏓ. ᎤᎴᏫᏍᏔᏁ ᎡᎶᏗ. ᎾᎨᎢᏴ, ᏗᏧᎴᏅᎮ ᎠᎾᏔᏍᎩᏍᎩ---ᏓᎵᎪᏛᏍᎨᎢ, ᎠᏥᎸᎭ ᏗᎦᏌᏆᎸ ᏓᏗᎦᎴᏲᎨᎢ ᎦᎸᎶᎢ. ᎦᎷᏯᏍᏘ ᏚᏓᏴᎳᏔᏅ ᏧᏍᏆᏅᎾ ᏚᎾᏐᏓᎸ. ᎪᎱᏍᏗ ᏱᎨᏒᎾ ᏱᎩ, ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎩ. ᎾᏍᎩᏃ Ꮎ ᏃᏈᏏ ᎤᏴᏍᏗ ᎦᏙᎥ; ᏦᎢᏃ ᎢᏗᎦᏛᎯ ᎨᏒ ᎡᏉᏂ ᏚᏪᏴ ᎾᏍᎩ ᏌᏉᎢᏳᏪᏨᎯ ᎤᏴᏍᏗ ᏂᏚᎵᏍᏔᏅᎩ; ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᎠᎹ ᎤᎾᏗᏔᎲ ᏚᏂᏲᎱᏒᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᎹ ᎤᏴᏍᏗ ᏂᏚᎵᏍᏔᏅᎢ. ᎦᎵᎡᎵᎦ ᏥᏕᎾᏦᎯ ᏥᏍᏆᎸᎾ, ᎠᏎᏃ ᏫᏥ ᏩᏆᏓᏬᏍᏗ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ. ᏦᎢᏃ ᏫᏄᏒᎸ ᎯᎠ ᏄᎵᏍᏔᏅᎩ; ᏉᎳ ᏚᏪᏟᏌᏅᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏂᏧᏏ; ᎤᎾᏓᏟᏌᏅᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎠᏴ ᎥᏝ ᎪᎱᏍᏗ ᎦᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ ᏗᎦᏤᎵ ᏴᏫ, ᎥᏝ ᎠᎴ ᎠᎩᏲᏍᏔᏅᎯ ᏱᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎩᎦᏴᎵᎨ ᎨᎩᏁᎸᎯ; ᎠᏎᏃ ᏥᎷᏏᎵᎻ ᏥᏴᎩ ᏗᎬᏆᏘᎾᏫᏛᎲᎩ ᏕᎬᎩᏲᏒᎩ ᎠᏂᎶᎻᏱ. ᎾᏍᏉ ᎤᏂᏣᏛᎩ ᎤᏍᏆᏂᎪᏗ ᎠᎾᏛᏁᎵᏍᎩ ᏚᏂᏟᏌᏅᎩ ᎪᏪᎵ, ᎠᎴ ᏚᎾᎪᎲᏍᏔᏅᎩ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ. ᎤᎾᏎᎸᏃ ᏧᎬᏩᎶᏗᎯ ᎤᎾᏙᎴᎰᏒᎩ ᎯᏍᎦᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎨᏒ ᎤᏂᏁᎬ ᎠᏕᎸ. ᎠᏂᎪᏩᏘᏍᎨᏃ ᎠᏍᎦᏯ ᎠᏥᏅᏩᏅᎯ ᎢᏧᎳᎭ ᎠᏂᏙᎾᎡᎢ, ᎥᏝᏃ ᎪᎱᏍᏗ ᏫᎬᏩᎾᏛᏗ ᏱᎨᏎᎢ. ᎯᏁᎬᏰᏃ ᏣᏚᏓᎴᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎯᏁᎬ ᏣᏍᎦᏅᏨ ᏗᏣᏚᎪᏓᏁᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎯᎠ ᎠᏴ ᎥᎩᏁᏤᎸᎯ ᎦᎵᏥᏙᎲᏍᎩ ᎠᎴ ᎥᎩᏅᏏᏛ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᎦᏥᏰᏲᎲᏍᎩ ᎦᎶᎯᏳᎯᏯ ᏥᏁᎦ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ, ᎥᏝ ᏱᎦᏥᎪᎥᏍᎦ. ᎠᏏᏉᏃ ᎧᏃᎮᏍᎬ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏧᏬᎪᏙᏗᏱ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏒᎢ, ᏈᎵᏏ ᎤᏪᎾᏮᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏁᏗ ᏂᎦᎵᏍᏔᏅᎭ ᏫᎬᏯᏅᎲᎭ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎼᏏ ᎤᏬᏪᎳᏅᎯ; ᎥᏝ ᎯᏴᏑᎶᏗ ᏱᎨᏎᏍᏗ ᏩᎦ ᎠᎦᏔᏙᎥᏗᏍᎩ ᎤᏣᎴᏍᏗ. ᏩᎦᏉᏍᎪ ᏓᏓᏅᏖᎭ ᎤᏁᎳᏅᎯ? “ᎨᏍᏗ ᏍᎩᎾᎾ ᎢᏣ ᏱᏥᎪᏩᏘᏍᎨᎢ ᎠᎬᏱ. ᎦᎵᏉᎩ ᎢᏯᏂ ᏧᏂᏍᏗ ᏌᏌ. ᎩᏃᎯᏳᏅᎾ? ᏥᏲᏎᎸ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏘ. ᎠᏕᎳ ᎠᏓᎶᏂᎨ ᎤᎵᏑᏫᏓ ᏕᎪᏪᎴ ᎠᏗᏍᎩ: ᎠᏂᎪᏚᏍᎩ ᎤᎾᏤᎵ ᏗᎦᏃᏣᏟ ᏏᏆ ᎣᏍᏓ ᏂᏚᏩᏁᎢ ᏚᏏᎳᏛ ᏌᎳᏓ ᏂᎦᎵᏍᏗᏍᎬᎢ. ᎤᎵᎮᎵᏍᏗ ᎤᏂᎷᏤᎴ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ. ᎠᎴ ᎬᏂᏳᏉ, ᎾᎯᏳᏉ ᎢᎦ ᎠᏂᏔᎵ ᎤᎾᏓᏍᏓᏩᏗᏙᎸᎯ ᏗᎦᏚᎲ ᎡᎺᏯᏏ ᏧᏙᎢᏛ ᏩᏂᎦᏖᎢ, ᎾᏍᎩ ᏧᏁᎳ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᏂᏚᏓᎴ ᏥᎷᏏᎵᎻ. ᎾᏍᎩ ᎢᏨᏃᎮᎮᎸ ᎠᏏ ᏥᏨᏰᎳᏗᏙᎭ. ᎦᎶᏏᏙᎮ ᏚᏅᏓᏒ ᏗᎧᏃᎩᏍᎨ, ᎤᏬᏚ ᎨᏎ ᎣᏍᏓ ᏯᏛᎦᏍᏔᏅᎾ ᏱᎩ ᏂᎦᏪᏍᎬ, ᎧᏃᎮᏍᎩ ᏴᏫ ᏧᏪᎵᏏᏯ ᏗᎩᏍᏗ. ᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᏙᏓᎨᏥᏲᎯᏎᎵ, ᎠᎴ ᏓᏰ ᎦᏕᎰᏔᏂ, ᎠᎴ ᏓᎦᏰᏥᏐᏢᏔᏂ, ᎠᎴ ᏙᏓᏰᎦᎵᏥᏍᏈ, ᏩᏙ, ᎤᏓᏙᏎᎴᎢ Ꮎ ᎠᏧᏣ. ᎤᎬᏫᏳ Ross ᏫᏥᎢᎦ ᎨᏒ ᏍᎦᏥ ᎩᎦ ᎤᏁᎯ. ᎦᎵᏉᎩ ᏣᏁᎵᏁ ᏭᏙᎯᏳᎲ. ᎤᎵᏒᏍᏔᏁᎢ, ᎣᏍᏓ ᎠᏒᎨ - “ᎤᎦᏃᏩ ᎤᏅᏗ, ᏄᎾ ᎦᏁᎦ, ᏑᎾᎴ ᎠᎩᏍᏗ ᎤᏂᏑᎸᏓ. ᎢᏧᎳ ᏙᎩᎾᏒᎭᏂᎸ ᏚᎭᏁᎦᎸ, garnet ᎣᎩᎾᏛᏅ, ᏱᏂᎨᏒᎾᏉ ᎢᎦᏪᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎤᏅᏙᏗ ᎢᎦᏪᏍᏗ. ᏐᎳᏃ ᏥᎷᏏᎵᎻ ᎤᎷᏨ ᏧᎾᏁᎶᏗ ᏧᎵᎪᏁᏗᏱ ᎤᏰᎸᏁᎢ. ᏂᎦᏛᏃ ᎬᏩᏍᎦᎢᎮᎢ, ᎠᎴ ᎥᏝ ᏯᏃᎯᏳᎲᏍᎨ ᏧᏁᎶᏗ ᎨᏒᎢ. ᎤᏔᎳᏪᏎᏃ, ᎠᎴ ᏫᏄᏴᎸᎾᏉ ᎨᏎᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏙᏓ ᏧᏄᎪᏤ ᎤᏍᏗᏰᏔᏁᎢ. ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏕᏤᎲᎩ ᏣᏂ ᎤᎾᏄᎪᏥᎸ ᎢᏯᏍᏗ; ᎾᎯᏳ ᏅᏓᎬᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᏂᏃᎮᎭ ᎠᎾᎵᏥᏙᎲᏍᎦ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᎠᎾᏁᎷᎩ ᎠᏂᏴᎯᎭ. ᏭᏓᏏᏁᎢ ᎤᏔᎴᎦᏒ ᎧᏁᏍᎪ. “ᎨᏍᏗ ᎣᏍᏓ ᏥᏁᎩ ᏱᎩ. ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᎠᎨᏴ; ᎿᏉ ᎣᏦᎯᏳᎲᏍᎦ ᎥᏝ ᏂᎯᏉ ᏣᏁᏨ ᏱᏅᏗᎦᎵᏍᏙᎭ ᏦᏦᎯᏳᎲᏍᎦ, ᎣᎬᎡᏰᏃ ᎣᏣᏛᎦᏏ, ᎠᎴ ᎣᏥᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᎤᏙᎯᏳᎯᏯ ᎦᎶᏁᏛ ᎨᏒ ᎡᎶᎯ ᎠᏍᏕᎵᏍᎩ. ᎠᏎᏃ ᎧᏂᎩᏓ ᏲᎾ ᎨᏴ ᎾᎥᏂ. ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ; ᎭᏢ ᎡᏥᏅᏁᎢ? ᏣᎬᏫᏳᎯ, ᎡᎭᎦᏔ, ᎬᏬᏎᎸᎩ. ᎾᎿ ᏗᏥᎿᏍᏕᏜᏛᎯ ᎠᎴ ᎾᎿ ᎡᏣᏁᏍᎨᎲᎯ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎢᏰᏨᏁᎸᎯ ᎢᏦᎯᏳᏒᎢ, ᎾᏍᎩᏯ ᎡᏤᏲᏅᎢ, ᎾᏍᎩ ᎤᏣᏘ ᎨᏎᏍᏗ [ᎢᏦᎯᏳᏒᎢ] ᎤᎵᏠᏯᏍᏕᏍᏗ ᎠᎵᎮᎵᏤᏗ ᎨᏒ ᎤᏁᎳᏅᎯ. “ᏰᎵᏉᏍᎪ ᏱᏕᏍᎬᏏ ᎠᏕᎳ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏚᏫᏞᏫᏒ ᏂᎦᏛ ᏌᏉᎭ ᎨᏒ ᎾᎿ ᎠᏰᎸ ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏅᎢ. “ᎣᏍᏓ,” ᎤᏛᏁ ᏌᎳᏓ, ᎤᎧᏨᏩᏍᏔᏁᎴ ᎠᎦᏴᎵ ᎤᏃᏕᎾ. ᎠᏎᏃ ᎠᏂᏧᏏ ᏄᏃᎯᏳᏒᎾ, ᎠᏅᏳᎬ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᏫᏚᏂᏯᏅᎲᎩ ᎩᎶ ᎢᏳᎾᏍᏗ ᎤᏂᏁᎫᏥᏛ ᎤᏁᏙᎯ, ᏚᏂᏟᏌᏅᏃ ᎤᏂᏖᎸᏅᎩ ᎦᏚᎲᎢ; ᏚᏂᎦᏘᎴᏅᏃ ᏤᏌᏂ ᎦᏁᎸᎢ, ᏴᏫ ᏧᏂᏄᎪᏫᏎᏗᏱ ᎤᎾᏁᎶᏔᏅᎩ. ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᎦᎫᏍᏛᏗ ᏅᏓᏥᏴᏁᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏆᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎥᏝᏃ ᎿᏉ ᎢᎸᎯᏳ ᎤᏄᎪᎢᏍᏗ ᏱᎨᏎᏍᏗ; ᎠᎴ ᏓᏥᏲᏪᎶᏔᏂ ᏚᏙᎥ ᎠᏆᏁᎳᏅᎯ, ᎠᎴ ᏚᏙᎥ ᎦᏚᎲ ᎠᏆᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎢᏤ ᏥᎷᏏᎵᎻ ᏥᎩ, ᎾᏍᎩ ᎦᎸᎶᎢ ᎤᏁᎳᏅᎯᏱ ᏣᏗᏓᎴᎲᏍᎩ; ᎠᎴ ᏓᏥᏲᏪᎶᏔᏂ ᎢᏤ ᏓᏆᏙᎥᎢ. ᎾᏍᎩᏍᎩᏂ ᏄᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᏡᎬ ᎣᏍᏛ ᎠᏓᏛᏍᎪᎢ, ᎤᏲᏃ ᏡᎬ ᎤᏲ ᎠᏓᏛᏍᎪᎢ. ᏦᎢ ᎢᏳᏩᎬᏘ ᎠᎨᏠᎲ ᏫᎵᎻ, ᏅᎩ ᎢᏳᏩᎬᏘ ᎤᏪᏠᏍᏗ ᎠᎪᏎᎴ ᏣᏄᏏ. ᎤᎩᏨᏓ ᏑᎾᎴ ᏙᏓᏆᏍᎬ, ᎤᏗᏛᎮ ᏦᎯᏍᏙᏗ ᏚᎭᎾᏬᎡ, ᎤᏩᏌ ᏭᎶᏎ ᏗᎦᏚᎲ, ᎾᎥᏂ ᏭᎶᏎ ᎤᎾᎦᎰᏍᏔᏅᎢ ᏣᎦᏥᎶᏍᏔᏅ, ᎦᏲᏟ ᏚᎦᏒᏍᏕ ᎪᏍᏓ, ᏧᏂᎳᏫᎢᏍᏗ ᏭᎷᏣ ᎠᎬᏱ ᎤᎾᏅᏗ ᏭᏩᏁ, ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᎪᎯᏓ ᎤᏂᏂᎦᎸᎯ ᎤᎾᎦᏙᏍᏕ ᎠᏍᎪᎵ ᎣᎭᏁᎢᏣ. ᎦᏍᎩᎶᎩ ᎤᏩᏁ ᎠᎳᏂ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᏚᏳᎪᏛ ᏅᏓᎦᏓᎴᏅᎯ ᎨᏒᎢ; ᏙᎯᏱᏃ ᏂᏙᏓᏛᏁᎵ ᏗᎩᎾᏫ ᎾᏍᎩ ᎠᎦᏔᎲᎢ. ”ᎣᏍᏓ ᏣᏓᏅᏖᎴ ᏍᎩᎾᎾ ᏥᏂᎭᏛᏁᎰ,” ᎤᏬᏎᎴ ᏌᎳᏓ. ᏔᎷᏣ ᏧᎾᏍᏖᏥ ᏚᎸᏛ ᎤᏩᏌ. ᎦᏚᎲᏃ ᏅᎩ ᏧᏅᏏᏴ ᎨᏒᎩ, ᎦᏅᎯᏒ ᎠᎴ ᎠᏯᏛᎥ ᎤᏠᏱᏉ ᎨᏒᎩ. ᎤᏟᎶᎥᎩᏃ ᎦᏚᎲ ᎤᏩᏔᏅᎩ ᎠᏟᎶᏍᏗ, ᎯᏍᎩᎦᏚ ᎢᏯᏍᎪᎯᏧᏈ ᎢᏳᏟᎶᏛ ᏂᎬᎩ. ᏂᎦᏅᎯᏒ ᎠᎴ ᎾᏯᏛᎲ ᎠᎴ ᏂᎦᏛᎢ ᎤᏠᏱᏉ ᎨᏒᎢ. ᎯᎠᏃ ᎾᎩᏪᏒᎩ; ᎦᎪ ᏂᎯ, ᏣᎬᏫᏳᎯ? ᎯᎠᏃ ᏄᏪᏒᎩ; ᎠᏏ ᏥᏌ ᎾᏍᎩ ᎤᏲ ᏥᏂᏴᏁᎭ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᏥᎪ ᎩᎶ ᎤᏲᎮᎸ ᎤᎵᏍᏓᏴᏗ? ᎬᏩᏍᏓᏩᏙᎯᏃ ᏚᏂᏐᏨ ᎤᏅᎨᏫᏒᎯ ᎨᏒᎩ ᎤᎾᏕᏃᏗᏱ. ᎤᏛᎦᏅᏉᏃ ᏥᏌ ᏄᏍᏛ ᎤᏂᏬᏂᏒᎢ, ᎯᎠ ᏄᏪᏎᎴ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᏦᎯᏳᏎᏍᏗᏉ. ᎠᎴ ᎠᎩᎪᎲᎩ ᎥᏓᎸ ᎠᏓᎨᏗ ᏗᎬᏩᎸᏌᏛ ᎾᏍᎩᏯᎢ ᎠᏥᎸ ᎤᏓᏑᏱ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ Ꮎ [ᎥᎦᏥᎪᎥᎩ] ᏅᎩᏗᎦᏅᏌᏗ ᎤᎾᏓᎵᏁᎯᏕᎸᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎤᏤᎵ ᏧᏬᏪᎶᏙᏗ, ᎠᎴ ᎾᏍᎩ ᏚᏙᎥ ᎢᎦᎢ ᎠᏎᏍᏗ ᎨᏒᎢ, ᎠᏂᏙᎾᎥᎩ ᎥᏓᎸ ᎠᏓᎨᏗ ᏗᎬᏩᎸᏌᏛ ᎾᏍᎩᏯᎢ, ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏙᏗ ᏓᏂᏁᎲᎩ ᎦᏚᏏ ᎤᎾᎷᏎ ᏣᎵ, ᏐᏉ ᎢᏳᏩᏍᏉᎸ ᎢᏳᏓᎵ, ᎧᏂᎩᏛ ᏫᏂᎦᎵᏍᎩ ᎠᎬᏱᏣ. ᎩᎶ ᎯᎠ ᎢᎦᏪᏍᎩ ᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏯᎣᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯᏱ ᎠᏯᎣᎢ. ᏐᏉᎯᎭ ᏚᏏᎳᏛ ᎤᏍᎪᏍᏓ ᎤᏰᏌᎭᏛ ᏚᏓᏅᎵᏰᎡ. “ᎲᎦ ᏄᏓᎨᏎ ᎠᏣᏗ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ. ᏫᏥ ᎢᏣ ᏭᏓᏬᎠ ᎤᏍᏗᎢ ᎠᏣᏗ, ᎤᏓᏅᏖᎴ ᏄᏪᏒ ᎡᏆ ᎠᏣᏗ. ᎠᏦᏱᎮ ᏲᎾ ᎤᏤᏍᏙ. ᎢᏳᏍᎩᏂᏃᏅ ᏄᏬᎯᏳᏒᎾ ᏳᏓᏅᏒ, ᎤᏁᎳᎩ ᎠᏓᏅᏍᎨᏍᏗ. ᎩᎶ ᎢᎩᏅᏟ ᎠᎴ ᎢᎩᏙ, ᎥᏝ ᏳᏚᏓᎶ ᎾᏍᎩ ᏥᏄᏍᏙᎢ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏅᏩᏙᎯᏯᏛ ᎢᎦᏕᏗᏱ ᎢᎩᏯᏅᎲ. ᎤᎬᏫᏳᎯᏰᏃ ᎤᏯᏅᏛ ᎾᏍᎩ ᎠᏥᎾᏝᎢ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎾᏥᎾᏝᎥᎾ; ᎾᏍᎩᏯᏃ ᎾᏍᏉ ᎠᏥᏯᏅᏛ ᎾᏥᎾᏝᎥᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎾᏝᎢ. ᏱᏥᎦᏖᏃᎭ ᎠᎴ ᎤᏣᏘ ᏱᏣᏚᎵᎭ ᎤᎷᎯᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎢᎦ, ᎾᎯᏳ ᎦᎸᎶ ᎤᏥᏍᏢ ᏨᏛᏗᏒᏂ, ᎠᎴ ᎾᏍᎩ ᎪᏢᏔᏅᎯ ᎠᏓᏪᎵᎩᏍᎬ ᏛᏗᏌᏂ. ᎠᎴ ᏔᎵᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏆᏛᎦᏅᎩ ᏔᎵᏁ ᎬᏃᏛ ᎯᎠ ᏄᏪᏒᎩ, ᎡᎭᎦᏔᏄᎦ. ᏧᏔᎾ ᏍᏏᏉᏯ ᏓᏃᏎᎰᎢ. “Ꭽ! ᏙᎧ ᎭᏗ ᎪᎱᏍᏗ ᏯᏕᏠᏆᏍᎦ,” ᎤᏪᎵᏎ Ꮎ ᏥᏍᏚ… ᎯᎠᏍᎩᏂᏃᏅ ᎢᏳᏍᏗ ᎥᏝ ᎤᏄᎪᎢᏍᏗ ᏱᎩ, ᎬᏂ ᏴᏓᏙᎵᏍᏗᎭ ᎠᎴ ᎠᎹᏟ ᏯᎬᏍᎦ. ᎾᏍᎩ ᎢᏛᏗᏍᎪᎢ ᎡᏗᎸᏉᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏛᏗᏍᎪᎢ ᏕᏗᏍᎩᏅᏗᏍᎪ ᏴᏫ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎢᎨᎬᏁᎸᎯ ᎨᎪᏢᏅᎯ ᏃᎴ ᎨᏍᏗ ᎫᏬᏂᎯᏍᏗ ᏱᎨᏎ. ᎠᏎᏃ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎢᎬᏩᎾᏓᏑᏰ ᏴᏫ, ᎾᏍᎩᏯ ᎤᎾᏠᎾᏍᏗ ᏗᎾᏕᏲᎲᏍᎩ ᎨᏣᏓᏑᏴᏗ ᏥᎩ, ᎾᏍᎩ ᎤᏕᎵᏛ ᎤᏂᏴᏔᏂᎯᏍᏗ ᎨᏎᏍᏗ ᎤᎾᏓᏤᎵᏛ ᎨᏒ ᎠᏓᏛᏗᏍᎩ, ᎾᏍᎩ ᎠᎾᏓᏱᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎤᎾᎫᏴᏛ, ᎠᎴ ᎤᏅᏒ ᎢᏳᏅᏂᏌᏛ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᏞᎩᏳ ᎤᏂᏛᏗᏍᎩ. ᎦᏙᎢᏳᏍᏘ ᎤᏰᎸᏗ? ᏥᎷᏏᎵᎻᏃ ᎤᎷᏨ ᏂᎬ ᎦᏚᎲ ᎤᎾᎵᏖᎸᏅᎩ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎦᎪ ᎯᎠ? “ᎤᏂᏃᏕᎾ ᎠᏂᏓ?” ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᏉᎳ ᏥᏴᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬ ᎥᎩᏴᎩᏅᎯ ᏂᎯ ᎨᏒ ᏗᏣᏓᎴᏅᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ-- ᎠᏍᎩᏯᏃ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏒᎩ ᎾᏍᎩ ᎠᏙᎳᏅᏍᏗ ᏔᎷᎩᏍᎩ ᎪᏢᏔᏅᎯ ᎤᏮᏙᏗ ᎨᏒᎩ ᏗᎬᏩᏁᎶᏙᏗᏱ ᎢᏳᏩᏁᏗᏱ ᏂᎦᏛ ᎤᎾᏓᏤᎵᏛ ᏓᏁᏩᏗᏒ ᏴᏫ; ᎾᏍᎩ ᎤᏪᏥ ᎤᎾᎳᏅᏱ ᏩᏥᏅᏍᏔᏅᎩ, ᎠᎴ ᎤᎾᎳᏅᎯ ᎤᏪᏍᎩᎸᎢ. ᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᎫᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏓᏥᏯᎵᏍᎪᎸᏓᏁᎵ ᎤᎵᏍᏓᏴᏙᏗᏱ ᎤᏓᏔᏅᎯ ᏡᎬ ᎬᏂᏛ ᎠᏓᏁᎯ, ᎾᏍᎩ ᎠᏰᎵ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏫᏒᏗᏱ ᏥᏡᎦ. ᎢᏨᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎠᎴ ᎤᏓᏅᏘ ᎨᏒᎢ, ᎤᎵᏠᏯᏍᏕᏍᏗ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᎩ ᏗᏓᎵᏎᏗ ᎨᏒ ᎠᏓᎨᏳᏗ ᎨᏒ ᎬᏗ; ᎠᏴ ᎬᏃᏛ ᎠᎩᏲᎰᏒᎯ ᏥᎨᏒᎩ; ᎠᎴ ᎬᏂᏳᏉ ᎬᏃᏛ ᎨᏎᏍᏗ ᎾᎵᏍᏆᏗᏍᎬᎾ, ᎡᎺᏅ; ᎠᎴ ᏗᏍᏚᎢᏍᏗ ᏨᏍᎩᏃ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏕᏥᏁᎠ. ᎠᎴ ᎡᎶᎯ ᎦᎶᏐᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎠᏚᎸᏗ ᎨᏒᎢ, ᎾᏍᎩᏍᎩᏂ ᎾᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬ ᏧᎸᏫᏍᏓᏁᎯ ᏂᎪᎯᎸ ᎡᎭ. Ꭸ ᏗᎦᏙᎪ ᏐᏈᎵ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᎨᏳᏣ ᏚᎴᏁᎢ, ᎠᎴ ᎤᏪᏙᎴᎢ; ᏔᎳᏚᏰᏃ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ. ᎤᏣᏔᏅᎯᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ. ᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎮ ᎠᏰᎵ ᎱᏓᏑᏴ ᏂᎦᎵᏍᏔᏂᏙᎲ. ᎠᏍᎦᏯᏰᏃ ᏄᎬᏫᏳᏌᏕᎩ ᎤᏓᎵᎢ ᎡᎲᎢ, ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᏄᎬᏫᏳᏌᏕᎩ ᏥᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏁᎲᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏍᏕᎵᏍᎩ ᎠᏰᎸᎢ. ᎠᏏᏉᏃ ᎾᏍᎩ ᎾᏂᏪᏍᎨᎢ, ᏥᏌ ᎤᏩᏒ ᎤᎴᏂᎴ ᎠᏰᎵ ᎠᏂᏅᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ. ᏂᎦᎥᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏚᎵᏁᏨ ᏌᏉᏉ ᎢᎧᏁᏨᎯ ᎠᎧᎵᎢᎭ, ᎯᎠᏉ ᎾᏍᎩ, ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎯᎨᏳᏎᏍᏗ ᎾᏍᎩᏯ ᏨᏒ ᏂᏣᏓᎨᏳᏒᎢ. ᎢᎬᏱᏃ ᎠᏁᎩ ᎬᏩᎬᏍᎪᎸᏁᎢ, ᎡᎳᏪ ᎲᎾ ᎬᏬᏎᎴᎢ; ᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᎤᏪᎷᏁᎢ; ᏕᏫ ᎤᏪᏥ ᏍᎩᏙᎵᎩ, ᎠᏗᏍᎨᎢ. ᎠᏋᏌ ᎨᏎᏍᏗ ᎧᏂᎩᏓ ᏗᏆᎵᎢ. ᎾᏍᎩ ᏕᎤᎪᎲ ᏈᏓ ᎠᎴ ᏣᏂ ᎿᏉ ᏗᏂᏴᎵᏎ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ, ᏚᏚᎳᏕᎴᎢ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏲᏅᎵ ᏂᎨᏎ ᎤᏕᏅ -ᎠᏥᏁᎨᎢ, ᎾᏍᎩ ᏂᏚᎩᏨᏂᏒ ᎠᏂᎧᎲᏍᎨ ᎦᎶᎯᏍᏗᏳᎶᏗ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎤᏬᏚᎯ ᏥᏕᎤᏙᎥ, ᏧᏚᎳᏕᏗᏱ ᎤᏂᏰᎸᏎ ᎠᏂᏴᎯᎯ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏣᎵ ᎤᎵᏘᎾᎥ ᏃᎴ ᎦᎷᏯᏍᏗ ᏃᎴ ᎤᏓᎵ ᎠᏥᎷᏴᎳᏗ ᎤᎾᏅᏅ, ᎤᎾᎵᏍᏔᏴᏅ, ᎠᏓ ᏗᎪᏒᏔᏅ ᏧᏃᏩ ᏃᎴ ᎢᎯᏯ ᏗᎪᏒᏔᏅ ᏗᎵᏍᏔᏴᏙᏗ ᏓᏅᏗᏍᎬ. ᎤᏂᏣᏔᏰᏃ ᎤᏠᎾᏍᏗ ᎠᏁᏙᎭ ᎡᎶᎯ, ᎾᏍᎩ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ ᏥᏌ ᎦᎶᏁᏛ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏥᎸᎢ; ᎾᏍᎩ ᎯᎠ ᎤᏠᎾᏍᏗ ᎠᎴ ᎦᎶᏁᏛᎠᏡᏗᏍᎩ. ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵᎦ ᏱᎩ, ᏗᏅᏃᏛᏍᎩᏂ; ᎾᏍᎩᏰᏃ ᎠᏓᏅᏖᏍᎬ ᏂᎦᏗᏳ ᏗᏅ-ᏃᏛ. ᎢᏥᏰᎩ ᏚᏳᎪᏛ ᎢᏣᏛᏁᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᏅᎨᏍᏗ; ᎢᎦᏛᏰᏃ ᎥᏝ ᏯᏂᎦᏔᎭ ᎤᏁᎳᏅᎯ; ᎤᏕᎰᎯᏍᏗᏳ ᎢᏨᏃᎮᎭ ᎾᏍᎩ ᎯᎠ ᏥᏂᏥᏪᎭ. ᎠᏴ ᏉᎳ ᎠᏆᏓᏲᎵᏍᏗ ᎨᏒ ᎠᏋᏒ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ ᎠᏉᏪᎳᏅᎯ, ᎾᏍᎩ ᏗᎪᎵᏍᏙᏗ ᏥᎩ ᏂᎦᏛ ᎪᏪᎵ; ᎾᏍᎩᏯ ᏂᎬᏁᎰ ᎪᏪᎵᏍᎪᎢ. ᏓᏆᎧᎾᎾ, ᏓᏌᏬᎢᎲ. ”ᎤᏙᎯᏳᎭ,” ᎤᏛᏁ ᏌᎳᏓ. ᎤᏍᎦᏅᏨ ᏱᎨᏒᎾ ᎤᏍᏗ ᏏᏆ. ᎾᏍᎩᏃ ᎠᏴ, ᎢᏓᎵᏅᏟ, ᎠᏚᎢᏍᏛ ᎢᎦᏕᏔᏅᎯ ᎾᏍᎩᏯ ᎡᏏᎩ ᏥᏄᏍᏕᎢ. ᎥᏝᏃ ᎪᎱᏍᏗ ᏴᏫᎯ ᏙᏱᏗᏢ ᎡᎯ, ᎤᏴᎭ, ᎾᏍᎩ ᎦᏓᎭ ᏱᏄᏩᏁᎰᎢ; ᎾᏍᎩᏂ ᏅᏓᏳᏄᎪᏨᎯ, ᎾᏍᎩ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ. ᎾᏍᎩᏰᏃ ᎠᏴ ᎢᎪᏢᏅᎯ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ ᎡᎪᏢᏅᎯ ᎣᏍᏛ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ, ᎤᏁᎳᏅ-Ꭿ ᎾᏍᎩ ᏥᏂᎦᏛᏅᎢᏍᏓᏁᏟ ᎾᎿ ᎢᎨᏓᏍᏗᏱ. ᏄᏓᎴ ᎪᎨᏱ.” ”ᎨᏍᏗᏗ ᎡᏝᏪ ᎢᎬᏆᎵᏍᏙᏗ ᏱᎩ,” ᎤᏪᎷᏁ ᏫᎵᎻ, ᎠᏨᏏᏰᏍᎨ. ᎤᎩᏨᏛᏃ ᏚᎾᏄᎪᏤᎴ ᎠᎾᎵᎲᎢ, ᎠᎴ ᎦᎪᎯᏍᏓᏁᎮ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏍᏗᏍᎦᏯ, ᏗᏍᏓᏓᏅᏟᏉ; ᎦᏙᏃ ᎤᏲ ᏂᏙᏍᏓᏓᏛᏁᎭ? ᎩᎶᏰᏃ ᎤᏚᎵᏍᎨᏍᏗ ᎬᏅ ᎤᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᎤᏲᎱᏎᎮᏍᏗ; ᎩᎶᏍᎩᏂ ᎬᏅ ᎤᏲᎱᏎᎮᏍᏗ ᎠᏴ ᎠᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᏃᎴ ᏤᏍᏗ ᎭᏯᏛᎩᏍᎬᎾ ᏱᏣᏤᎸᎮᏍᏗ ᎬᏅᏫᏍᏗᏍᎬᎢ. ᏞᏍᏗ ᏱᏥᏍᏆᏂᎪᏍᎨᏍᏗ, ᎢᏓᏓᏅᏟ, ᎢᏳᏃ ᎡᎶᎯ ᎢᎩᏍᎦᎩᏳ ᎢᎨᏎᏍᏗ. ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎤᏣᏘ ᏴᎨᏨᏯᎵᏃᎮᏓ; ᎤᎬᏫᏳᎯᏰᏃ ᎯᎠ ᎡᎶᎯ ᎤᏤᎵᎦ ᏓᏯᎢ; ᎥᏝᏃ ᎪᎱᏍᏗ ᎤᏤᎵ ᏯᏇᎭ. ᎠᏎᏃ ᎠᏆᏓᏙᎵᏍᏔᏅ ᎡᏣᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᏦᎯᏳᏒ ᎤᏓᎵᏛᏙᏗᏱ ᏂᎨᏒᎾ; ᏣᎦᏔᎲᏛᏃ ᎨᏎᏍᏗ ᏕᎭᎵᏂᎪᎯᏍᏔᏅᎭ ᎢᏣᎵᏅᏟ. ᎾᏍᎩ Ꮎ ᎣᎫᏓᎴᏛ ᎾᏍᎩ ᎢᏳᎾᏰᎯᏍᏗ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏏ ᏦᎫᏓᎴᎭ; ᎾᏍᎩ ᎤᏕᎩ ᏦᏨᎾᏁᎭ ᎠᏏᏉ ᎣᏚᏓᎴᏍᏗᏱ; ᏥᏌᏃ ᏥᎷᏏᎵᎻ ᏩᎦᏛᎢ, ᏔᎳᏚ ᎢᏯᏂᏛ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎾᏁᎳᎩ ᎢᏴᏛ ᏫᏚᏘᏅᏍᏔᏅᎩ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᎯᏛᏃ ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᎨᏒ ᎤᏍᏆᎸᎲ, ᎾᏍᎩ ᎡᎶᏛ ᎤᏕᏅ ᎢᏳ ᎢᎦ ᎤᏛᏅᎢᏍᏔᏁ ᎬᏩᎵᏍᏓᏴᎾᏁᏗᏱ ᏧᏤᎵ ᎤᏂᎬᏫᏳᎯ, ᎠᎴ ᎠᏂᏍᎦᏰᎬᏍᏓ, ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᎵᎵ ᎠᏁᎯ, ᎠᏴ ᎨᏒ, ᎨᏍᏗ ᏳᏙᎯᏳᎮ, ᎾᏍᎩᏯ Byron ᏧᏬᏪᎳᏅ. ᎩᎶ ᎠᏂᏍᎦᏯ ᎨᏒ ᏯᏓᏙᎵᏍᏗᎭ ᎠᎴ ᏯᏙᎴᎰᏍᎦ, ᎬᏩᎵᏍᏚᎵ, ᎠᏕᎰᎯᏍᏗᏍᎪ ᎠᏍᎪᎵ ᎨᏒᎢ. ᏦᎢᎭᏃ ᎢᏳᏟᎶᏛ ᎢᏴᏛ ᎣᏂ ᎤᏓᎵᎢ ᎤᏴᎵᎴᎢ, ᎾᎦᏔᎲᎾ ᎨᏎ ᏄᎵᏍᏔᏅᎢ, ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎤᏲᎳ ᎰᎻ ᏚᎪᎮ. ᎤᎾᏛᏅᎢᏍᏔᎾ ᏓᏳᎾᏂᎩᏍᏗ, ᏫᏤᎾᏗᎾ ᎤᏛᏅ. ᏕᏥᏲᎵᎸᎭ ᎢᏓᎵᏅᏟ ᎴᎣᏗᏏᏯ ᎠᏁᎯ, ᎠᎴ ᏂᎻᏆ, ᎠᎴ ᏧᎾᏁᎶᏗ ᎾᏍᎩ ᎦᏁᎸ ᏧᎾᏓᏡᎦ. ᎠᏦᏴᎢ ᏭᎷᏤ ᏃᎴ ᎤᎩᏠᏫᏎ. ᎠᎴ ᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᏚᏃᎸ ᎢᎬᏱᏗᏢ ᏕᏣᏘᏃᎯᎮᏍᏗ, ᎾᏍᎩ ᎤᏅᏒ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ. ᎠᏎᏃ ᎠᏥᎬᏍᎪᎸᏁ ᎤᏍᎦᏅᏨᎢ: ᎤᏩᎨᏫ ᏗᎦᎵᎠᏅᎯᏛ ᏴᏫ ᎤᏁᎢᏍᏗ ᎤᏩᏔᏁ ᎤᏁᏤᎢ, ᎤᏍᎦᏤ ᏄᏓᏅᏛᎾ ᎨᏒ ᎠᏙᎴᎰᏍᎩ. ᎩᎶ ᎠᎩᎷᏤᎮᏍᏗ, ᎠᎴ ᎠᏛᎩᏍᎨᏍᏗ ᏂᏥᏪᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ, ᏓᏨᎾᏄᎪᏫᏎᎵ ᏓᏤᎸ ᎾᏍᎩ; ᏔᎵᏁ ᎯᎠ ᏂᏥᏪᎭ, ᏞᏍᏗ ᎩᎶ ᎤᏁᎫ ᏯᏇᎵᏎᎮᏍᏗ; ᎢᏳ ᎠᏗᎾ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎠᏎ ᎠᎩᏁᎫ ᎾᏍᎩᏯ ᏗᏍᎩᏯᏓᏂᎸᎩ, ᎾᏍᎩ ᎠᏴ ᎤᏍᏗ ᎠᏆᏢᏈᏍᏗᏱ. ᎠᏎᏃ ᎩᎶ ᎯᎠ ᏱᏅᎦᏫ, ᎦᏙ ᏓᎨᎬᏁᎵ ᏙᏓᎨᎦᎴᏔᏂ ᏧᏂᏲᎱᏒᎯ? ᎠᎴ ᎦᏙ ᎤᏍᏕᏍᏗ ᎤᏙᏢᏒ ᏗᏂᏰᎸ ᎠᏂᎷᏨᎭ? ᎠᎩᎷᏤᎸᎩᏃ ᎠᏏᏴᏫ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᏥᏓᏂᏰᎲᎩ ᏚᎵᏉᎩ ᎫᎫ ᎦᎵᏉᎩ ᎤᎵᏍᏆᎸᏗ ᎤᏕᏯᏙᏗ ᏗᏟᏍᏗ, ᎠᎴ ᎠᏆᎵᏃᎮᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎡᎮᎾ, ᏓᎬᏯᏎᎮᎵᏃ ᎠᏥᏰᎯ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏓᎵᎢ. ᎠᎴ ᎾᏍᎩ ᏂᎦᏗᏳ ᎤᏪᎵᎯᏍᏗ ᎢᏤᎲ ᏤᏥᏲᎯᏏ, ᎾᏍᎩᏰᏃ ᎢᏣᏓᏅᏖᏍᎪᎢ. ᏭᎾᎩᏎ ᏛᎦ, ᏗᏏᎳᏛᏙᏗ ᎬᏗ ᎤᏩᏇᏅᏔᏁ, ᎫᏩᎵᏖᎸᎮᏗ ᏱᎨᏒᎾ. ᎤᏂᎾᎥ ᏃᎴ ᏗᎭᎾᏬ ᎦᎳᎨᏴ. ᎠᏎᏃ ᎥᏝ ᎪᎱᏍᏗ ᎠᏋᏔᏅᎯ ᏱᎩ ᎾᏍᎩ ᎯᎠ; ᎥᏝ ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏱᎪᏪᎸᎦ, ᎠᏴ ᎾᏍᎩ ᎢᏴᏆᏛᏁᏗᏱ; ᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏯᏆᎵᏍᏓᏁᏗ ᏯᎩᏲᎱᏒᏉ, ᎠᏃ ᎩᎶ ᎠᏎᏉ ᏱᏄᏩᏁᎸ ᎠᏆᏢᏆᏍᏙᏗ ᎨᏒᎢ. ᎤᏓᏍᏆᏂᎪᏙᏗᏱᏍᎩᏂ ᎣᏏᏳ ᎤᏰᎸᎯ, ᎣᏍᏛ ᎨᏒ ᎤᎨᏳᎯ, ᎤᏴᏍᏕᏍᎩ ᏂᎨᏒᎾ, ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ, ᎾᏍᎦᏅᎾ, ᎤᎵᏏᎾᏍᏗ; ᎢᏥᎦᏴᎵᎨᎢ, ᏞᏍᏗ ᏱᏗᏥᎿᎸᏍᏗᏍᎨᏍᏗ ᏗᏤᏥ, ᏱᏩᎾᎵᎲᏲᎵᎵᎦᏉᏰᏃ. ᎣᎩᏃᎮᏍᎬᎢ, ᎣᏥᏔᏲᎯᎰᏉ; ᎤᏁᎢᎸᏗ ᎡᎶᎯ ᎡᎯ ᎾᏍᎩᏯ ᎾᎦᎵᏍᏔᏅ, ᎠᎴ ᎦᏓᎭ ᎨᏒ ᎾᎦᎥ ᏧᏓᎴᏅᏛ ᎠᏍᏛᎪᏒᎯ ᏃᎦᎵᏍᏔᏅ ᎪᎯ ᎢᏯᏍᏗ. ᎠᎦᏬᎥᏃ ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᏚᏓᏘᎾᎥᎢ, ᎣᎩᏔᏲᏎᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏳᏃ ᎤᏙᎯᏳᏒ ᎤᎬᏫᏳᎯ ᎪᎯᏳᎲᏍᎩ ᏍᎩᏰᎵᏎᎮᏍᏗ, ᏥᏁᎸ ᎢᏥᏴᎭ ᎠᎴ ᎾᎿ ᎢᏥᏁᏍᏗ. ᎣᎩᏍᏗᏰᏗᏍᎬᏃ ᎣᎩᏎᎪᎩᏒᎩ. ᎠᎦᏕᏍᏗ ᏗᎦᎷᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏃᏉ ᎤᎵᏍᎨᏓ ᎤᏂᎧᎲ ᏏᏆ ᎤᏪᎵᏎ. ᏗᎪᏍᏔᏱ ᏅᏯ ᎦᎳᎨᏰ, ᏅᏯ ᏚᏍᏓᎦᎸ ᎤᏅᎪᎣᏒ. ᏂᎦᏛᏃ ᎤᏂᏣᏘ ᎨᏒ ᎠᎾᏟᏂᎬᏁᎮ ᎬᏩᏒᏏᏍᏗᏱ. ᎾᏍᎩᏰᏃ ᎨᏒ ᏗᏓᎴᎲᏍᎨ ᎤᏓᏅᏬᏗ ᎨᏒ ᎠᎴ ᏚᎾᏗᏫᏍᏗᏍᎨ ᎾᏂᎥᎢ. ᏃᎴ ᎠᏓᏍᏕᎸᏓ ᏳᏂᎬᎦ ᎤᏩᏛᏗ ᎢᏗᎦᏪᏍᏗ ᏌᎳᏓ, ᏰᎵᏉ ᎢᎦᎵᎢ ᏧᏍᏆᏴᏍᏗ ᎤᏍᏕᎸᏗ. ᎠᎴ ᎾᏁᎵᏍᎬᎾ ᏥᎨᏎᎢ, ᎬᏂ ᎤᏃᎱᎦᏂᎸ, ᎠᎴ ᏂᎦᏛ ᏚᏂᎬᏨ, ᎾᏍᎩᏯᏉᏍᎩᏂ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ. ᎨᏥᏅᏏᏛᏃ ᎤᎾᏓᏟᏌᏁ ᏥᏌ ᎡᏙᎲᎢ, ᎠᎴ ᎬᏩᏃᏁᎴ ᏂᎦᏛ ᏄᎾᏛᏁᎵᏙᎸ, ᎠᎴ ᎾᏍᏉ ᏄᏍᏛ ᏚᎾᏕᏲᏅᎢ. ᎤᏪᏅᏒ ᎱᎷᏤ ᏫᎵᎻ ᎤᎸᏉᏛ ᏗᎩᏏ ᎦᏓᏍᎬᎢ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ. ᎤᎬᏫᏳᎯ ᎥᏝ ᎤᏍᎦᏃᎵᏳ ᏱᎩ ᏄᏍᏛ ᎤᏚᎢᏍᏔᏅ ᎢᏳᏛᏁᏗᏱ, ᎾᏍᎩ ᎩᎶ ᎾᏍᎦᏃᎳ ᏣᏁᎵᎭ, ᎬᏂᏗᏳᏍᎩᏂ ᎠᏴ ᎢᎩᎦᏘᏴᎢ, ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎩᎶ ᎤᏲᎱᎯᏍᏗᏱ, ᏂᎦᏗᏳᏍᎩᏂ ᎤᏂᎷᎯᏍᏗᏱ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛᎢ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏁᎳᎩ; ᎥᎩᏂᏐᏗᏱ ᎨᏒ ᎢᎦ ᎬᏗᏍᎩ ᎤᏍᏆᏂᎪᏔᏅ ᎾᏍᎩ ᎯᎠ. ᎧᏃᎩᏍᏗ ᎢᏳᏍᏗ ᎠᏂᏒᎳᏍᎨ, ᎠᏂᏤᎷᎩᏍᎩ ᎢᏳᏍᏗ. ᏚᎦᏔᏍᏔᏁᎢ. ᎤᏍᏆᏂᎩᏘ ᎤᏃᎮᏗ ᎤᏩᏌ ᎤᎵᏓᎩᏛ. ᏃᏗ ᏎᎦᏨ ᏯᏛᏅᎢᏍᏔᎾ, ᎭᏫᏂ ᎠᏛᎵᏗ, ᏃᎴ ᏩᏓᎾᏫᏛᏗ. ᎾᏍᎩ ᎢᎫᏓᎴᏛ ᏥᎩ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᎵᏏᎩ, ᎠᎴ ᎾᏍᎩ ᏫᏗᎩᎧᏅᎯ ᏥᎩ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎨᏳᎯ ᎤᏪᏥ; “ᏙᎯᏳ ᏓᎩᏯᏪᎦ.” ᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎠᎺᏉᎯᎩᎦᎨᏍᏛᏱ ᎠᏰᎵ ᎤᏂᎶᏎ ᎤᎧᏲᏛᎯ ᏣᏂᎶᏍᎪ ᎾᏍᎩᏯᎢ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎤᎾᏁᎶᏔᏅ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ ᏚᏂᎬᏤᎢ. ᎿᏉᏃ ᎯᏌ ᏅᎬᏩᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏂᎪᎯᎸ ᏍᎩᏁᎮᏍᏗ ᎾᏍᎩ ᎯᎠ ᎦᏚ. “ᏍᎩᎪᎵᏰᎡᏗᏗ” ᏫᏓᏆᎧᎾᏅ, ᎤᎧᎭᏓ ᎦᏅᎪᎬ ᎠᎰᎵ ᎠᏌᎻᏓ. ᎿᏉᏃ ᎾᏍᎩ Ꮎ ᏰᎵᏉ ᎬᏩᏲᏍᏙᏙᏗ ᏥᎩ ᏗᏥᏅᎢᏍᏗᏱ, ᎠᎴ ᎬᏂᎨᏒ ᎢᎨᏨᏁᏗ ᏥᎩ ᎤᏣᏘ ᎤᎵᎮᎵᏍᏗ ᎢᏣᏓᏅᏛᎢ ᎪᎱᏍᏗ ᏁᏥᎳᏫᏎᎲᎾ ᎢᎬᏱᏗᏢ ᏓᎧᏅ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᏎᏃ ᎠᏫᏅ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏓᏅᏒᎩ ᎤᏲᎢᏳ ᎤᏰᎸᏅᎩ, ᎤᏣᏘᏰᏃ ᎤᏪᎿᎢᏳ ᎨᏒᎩ. ᏄᏓᎴᏒᏉ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸᎯ ᎠᏆᎵᏍᏓᏴᏗᏱ, ᎠᏎᏃ ᎥᏝ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎣᏏᏳ ᎢᏯᏓᏛᏁᎯ ᏱᎩ; ᏄᏌᎴᏒᏉ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸᎯ ᎠᏆᎵᏍᏓᏴᏙᏗᏱ, ᎠᏎᏃ ᎥᏝ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ. ᏴᏫ ᎬᎩᎸᏉᏗᏍᎬ ᎥᏝ ᏱᏗᏓᏓᏂᎸᎦ; ᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎯᎠ ᏱᏂᏪᏏ ᏗᏍᏓᏓᏅᏟ, ᎬᎸᏏ ᎤᏢᏓᎸᏛ ᏣᎦᏑᎲᎢ, ᎬᏂᏳᏉᏃ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎭ. ᎠᏎᎩ ᎠᏤᎯ ᎠᏫᎾ ᏍᎦᏰᎬᏍᏔ ᏯᎦᏔᎲᎾ ᏧᏳᎪᏘ ᎨᏒ. ᎶᏩᏂ, ᏣᏥ ᏃᎴ ᏤᎩ ᏚᎧᎾᏅ ᏣᎵ, ᎨᏍᏗ ᎤᏁᎵᏒ ᏱᎨᏎ ᎢᏳᏍᏗᏉ. ᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎢᏳᏛᏁᏗ ᏫᎵᎻ ᎠᎴ ᎢᏣ ᏭᎶᎯᏍᏗ. ᎿᏉᏃ ᏉᎳ ᏚᏏᏔᏛ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏂᎷᏤᎸᎩ, ᏚᏂᏬᏂᏒᎩᏃ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏙᎴᎰᏒᎩ. ᎾᏍᎩᏃ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎥᏝ ᎠᏕᎰᎯᏍᏗᏱ ᏴᎬᏓᏩᏛᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒ ᎡᎩᏐᏅᏰᎸ ᏗᎩᎾᏫᏱ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎡᎩᏁᎸᎯ ᏥᎩ. ᎢᏨᏲᏎᎭ ᎬᏩᏗᏛᏗ ᏂᎨᏒᎾ ᎠᎴ ᏗᎬᏩᏁᏗ ᏂᎨᏒᎾ ᏱᎩ, ᎤᎾᎵᎢᏉ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏑᎵᎪᎬᎾᏍᎩᏂ ᎨᏒ ᎢᏳᏍᏗ ᏯᏗᏛ ᎠᎴ ᏱᏕᎠᎲᏏ ᏂᎦᎥ ᏚᏚᎵᏍᎬᎢ. ᎣᎰᏂ ᏫᎦᎢᏒ ᎠᏆᏛᎪᏔᏅ ᎠᎵᏥᏙᎲᏍᎬ, ᎠᏎᎩ ᎠᏂᏍᎦᎢᎮ ᎠᏂᎱᏣ, ᏓᏂᎪᏩᏘᏍᎬ ᏧᏂᎾᏌᎢ ᎤᏂᏲᎰᏎᎸ ᏂᎦᏓ ᎤᏂᎾᎥ, ᎤᏅᏌᏣ. ᏗᎵᏍᏓᏴᏗᏱᏃ ᎨᏒ ᎢᏳᎢ ᎤᎬᏫᏳᎯ ᏧᏲᎯᏎᏗ ᎨᏐ ᏌᏉ ᎠᏴᎩ, ᎯᎠᏉ ᎠᏁᎳ ᏴᏫ. ᎻᏏᏱᏃ ᎤᏂᎶᏒ, ᏠᎠᏏ ᏭᏂᎷᏨᎩ. ᎠᎴ ᏍᎩ ᏳᏂᏰᎸ. ᎪᏱᏁᎢ ᎤᏄᎩᏣᏁ ᎠᎳᏂ. ᎾᏍᎩ ᏥᏚᏓᏲᏎ ᎠᏴ ᎢᎩᏍᎦᏅᏨ ᏥᏍᏗ ᎦᎵᏍᏙᏗᏍᎨᎢ, ᎾᏍᎩ ᎢᎫᏓᎴᏍᏗᏱ ᎪᎯ ᎨᏒ ᎡᎲ ᎤᏲᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎤᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏙᏓ; ᎢᏨᎨᏳᎢ, ᎢᏨᏔᏲᏎᎭ, ᎾᏍᎩᏯ ᏂᎨᏥᎦᏔᎲᎾ ᎠᎴ ᎠᏁᏙᎯ ᎢᏳᎾᏛᏁᏗ ᏂᏣᏛᎦ, ᏗᏥᏲᎯ ᎤᏇᏓᎸ ᎤᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏓᏅᏙ ᏥᏓᏁᏓᎿᏫᏯ. ᎠᏎᏃ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎾᏍᎩᏉ ᏌᏉ ᎠᏓᏅᏙ ᏕᎤᎸᏫᏍᏓᏁᎰᎢ, ᏓᏯᏙᎮᎰ ᎾᏂᎥ ᏧᎾᏁᎳᎩᎭ ᏧᎾᏤᎵ, ᎯᎠᏉ ᏄᏍᏕᏍᏗ ᎡᎵᏍᎬᎢ. ᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᏚᏰᎵᏎ ᎾᏍᎩ ᏕᎦᏃᏣᎸᎢ. ᎤᏂᏣᏘᏃ ᏚᏂᎳᏫᏦᎴ ᎤᎾᏚᎵᏍᎨ ᎤᎾᏛᎪᏗᏱ ᎠᎴ ᏧᏅᏬᏗᏱ ᏚᏂᏢᎬᎢ. ᎦᏙ ᏓᏥᏲᏎᎵ, ᏍᎩᎨᏳᎮᏍᏗ ᏍᎩᎨᏳᎮᏍᏗ. ᎤᏪᏥᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎡᏙᏓ, ᎦᎸᎳᏗ ᏥᏍᎦᏅᏤᎸ, ᎠᎴ ᏂᎯ ᎯᎦᏔᎲᎢ; ᎠᎴ Ꮭ ᎿᏉ ᎠᏇᏥ ᎨᏍᏉᏎᏗ ᏱᎩ. ᎢᏗᎦᏔᎭ ᎤᏁᎳᏅᎯ ᏅᏓᎦᏓᎴᏅᎯ ᎨᏒᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏃᏴᏨ ᎤᏲ ᎨᏒᎢ. ᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᏂᎯ ᎡᏣᏃᎮᏍᎬ ᎪᏪᎵ ᏧᏗᏱ ᏂᏙᏓᏳᏃᏪᎳᏅᎯ ᏱᏙᎩᏃᎮᎭ, ᎥᏝ ᎠᎴ ᎩᎶ ᎢᏓᏓᏅᏟ ᎾᎿ ᏅᏓᏳᏂᎶᏒᎯ ᎬᏂᎨᏒ ᏱᏂᎨᏨᏁᎴᎢ, ᎥᏝ ᎠᎴ ᎤᏐᏅ ᏱᎨᏣᏃᎮᎴᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎺᎵ ᏞᏍᏗ ᏣᏍᎦᎸᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎣᏍᏛ ᏣᏰᎸᏗ ᎨᏒ ᏣᏩᏛᎲ. ᎠᏎᏃ Ꮭ ᎾᏍᎩᎾ ᏳᏗᏅᏖᏔᏁ ᏍᏏᏉᏯ. ᏃᎴ ᎠᏛᏍᎨ ᎨᏴᎢ, ᎭᏫᏂᎨ ᏃᎴ ᎦᏣᏄᎵᎨ ᏂᎦᎵᏍᏗᏍᎨ ᎨᏴᎢ. ᎠᏏᏉᏃ ᏭᎶᏒ ᎤᏯᏅᏒᎯ ᏫᏓᏂᎧᏁ ᎦᎸᎳᏗ, ᎬᏂᏳᏉ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏧᏁᎬ ᏧᎾᏄᏫ ᎤᎶᏗᏢ ᎦᎾᎴᏂᎴᎢ; ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᏫᏚᏩᏐᎯᏍᏗ ᏍᎩᎾᎾ ᎠᏥᎶᎥ, ᏐᏉ ᎢᏳᏩᎬᏔ ᏚᏩᏐᏨ ᎤᏛᎾ ᎤᎫᎫ ᎡᏆ ᎠᏍᎪᎳ ᎡᏝᏪᎯ ᎤᏃᎯᎸᏍᏔᏁ ᎠᎬᏱᏣ ᎠᏰᎵ ᎤᎵᏏᎬ ᏃᏥ ᎭᏫᏂᏣ. ᎾᏍᎩ ᎤᏣᏘ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎬ ᎠᎴ ᏂᎪᎯᎸ ᎤᏲ ᎠᎩᏰᎸᏒ ᎠᎩᎾᏫᏱ. ᎿᏉᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏕᎸ ᎤᏂᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎥᏝ ᏱᏓᎩᎭ, ᎢᏳᏍᏗᏍᎩᏂᏃᏅ ᎠᎩᎲ ᎬᎥᏏ; ᏥᏌ ᎦᎶᏁᏛ ᎾᏎᎵᏗ ᏤᎲ ᏕᎤᏙᏍᏛ ᏔᎴᎲᎦ ᎠᎴ ᎮᏓ. ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎦᏯ ᏚᏂᏲᏍᎨ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎾᏍᎩ ᎠᏂᎨᏴ ᎨᎦᏁᎳᏅᎯ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎤᏤᏘ ᏓᎾᏓᏕᎳᏲᏍᎨ ᎤᏅᏒᏉ ᎨᏒᎢ; ᎠᏂᏍᎦᏯ ᎠᏂᏍᎦᏯᏉ ᎪᎱᏍᏗ ᏓᎾᏓᏛᏗᏍᎨ ᏚᏂᎸᏫᏍᏓᏁᎮ ᎾᏍᎩ ᎤᏕᎰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏩᏛᎡᎮ ᏚᏳᎪᏛ ᎨᎦᎫᏴᎡᏗ ᎨᏒ ᎾᏍᎩ ᎤᏂᎵᏓᏍᏗᏍᎬᎢ. ”ᎤᎵᏍᎨᏓ ᎦᏢᏗ.” ᎯᎠ ᎾᏍᎩ Ꮎ ᎠᎾᏓᏓᎴᏗᏍᎩ ᏥᎩ, ᎤᏇᏓᎵᏉ ᎠᏂᏍᏓᏩᏕᎩ, ᎠᎠᏅᏙ ᏄᏁᎲᎾ. ᎠᏂᎪᏍᏔ, ᏗᏒᎾᏔᏅ ᏃᎴ ᎦᏚ ᏗᏑᏴᏅ. ᎠᏎᏗ ᏄᏪᎵᏍᎬᎾ ᎨᏎ ᏌᎳᏓ. ᎠᏎᏃ ᏥᏌ ᎤᏬᏯᏁᏒ, ᏚᎴᏔᏁᎢ, ᎠᎴ ᏚᎴᏁᎢ. ᎬᏩᏍᏓᏩᏗᏎᏃ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᎠᏂᎨᏴ, ᎾᏍᎩ ᎾᏍᏉ ᏓᏂᏴᎨ ᎠᎴ ᎬᏩᏍᎪᏂᎮᎢ. ᏅᏩᏓᎴᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎠᎵᏍᏓᏩᏗᏒᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᏓᏓᎶᏂ ᎠᏲᎩ, ᎠᏲᎩ, ᎾᏍᎩ Ꮎ ᎡᏆ ᏥᎦᏚᎲᎩ, ᏅᏓᎦᎵᏍᏙᏓ ᏂᎦᏗᏳ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎤᎾᏗᏔᏍᏗᏱ ᏂᏚᏩᏁᎸ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏓᏑᏱ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎢᏳᏩᏂᏌᏛ. ᎤᎩᏓᏟᏅᏯ ᎤᏓᎵ. ᏂᎯᏍᎩᏂ ᎯᎠ ᏂᏥᏪᎭ, ᎢᏳᏃ ᎩᎶ ᎯᎠ ᏂᎦᏪᏎᎮᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎪᏆᏂ, (ᎾᏍᎩ ᎦᏛᎬ, ᎠᏆᎵᏍᎪᎸᏔᏅᎯ,) ᏂᎦᎥ ᎨᏣᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎠᏴ ᎬᏍᏕᎵᏍᎬᎢ; [ᎾᏍᎩ ᎤᏚᏓᎴᏛ ᎨᏎᏍᏗ.] ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎾᏍᎩ ᎢᏣᏛᏅᎢᏍᏕᏍᏗ, ᏂᏤᎵᏍᎬᎾᏉᏰᏃ ᎨᏒ ᎢᏳ ᏴᏫ ᎤᏪᏥ ᏓᎦᎷᏥ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏗᎵᎮᏍᏗ, ᎾᏍᎩᏯ ᎠᏂᏐᎢ ᎾᎾᏛᏁᎲᎢ; ᎢᏗᏯᏫᏍᎨᏍᏗᏍᎩᏂ ᎠᎴ ᏂᏗᎩᏴᏍᏕᏍᎬᎾ ᎨᏎᏍᏗ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ, ᎢᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᎠᏴᏰᏃ ᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎢᎩ. ᎠᎴ ᎠᎩᎪᎲᎩ ᎪᏪᎵ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᎤᏒᎦᎸᎩ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎭᏫᏂᏗᏢ, ᎠᎴ ᎦᏚᎢᏗᏢ ᎪᏪᎸᎩ ᎦᎵᏉᎩ ᎪᏪᎵ ᏗᏍᏚᏗ ᏓᏍᏚᏛᎩ. ᏚᎾᏓᎶᏅ, ᎤᎾᎵᏗᎩᏎ ᏐᏈᎵ ᎠᏙᎯ ᎢᏣ, ᏃᎴ ᎤᎾᎴᏫᏍᏔᏁ ᎤᏂᎷᏤ, ᎤᎾᏦᏍᏔᏁ ᎠᏁᏙᎮ, ᏓᎾᎳᏍᏘᏰᏍᎨ ᏧᏙᎣᏒ ᏧᎾᏔᎾᎶ ᏃᎴ ᎾᏂᏪᏍᎨ. ᎢᎬᏪᏅᏛᏉᏃ ᎤᎵᏍᏗ ᎤᏴᎵᎴ ᎤᎬᏫᏳᎯ ᎠᏯᎥᎢ, ᎠᎴ ᎤᏔᏲᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏚᎵ ᎩᎳᏉ ᎢᏴᏛ ᏍᎩᏁᏗᏱ, ᎠᏖᎵᏙᎩᎯ, ᏣᏂ ᏗᏓᏬᏍᎩ ᎤᏍᎪ. ᏚᎴᏅᏃ ᎤᏘᏅᏎ ᎠᏲᎵ ᎠᎴ ᎤᏥ, ᎠᎴ ᎢᏏᎵᏱ ᏭᎷᏤᎢ. ᎤᏍᏆᏂᎩᏗ ᏂᎦᎵᏍᏓ ᎭᏂ ᏕᎦᎶᎨᏒ. ᎡᏘᏴ ᎤᏍᎦᏅᏥᏙᎸ ᎤᎴᏅᏔᏅ ᎤᏬᏂᏒ. ᎩᎶᏰᏃ ᎾᏛᏁᎮᏍᏗ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ, ᎾᏍᎩ ᎥᎩᏅᏟ ᎠᎴ ᎥᎩᏙ ᎠᎴ ᎡᏥ. ᎠᎴ ᎤᏂᏣᏘ ᎢᏏᎵ ᏧᏪᏥ Ꮩ ᏛᎪᎸᏏ ᏱᎰᏩ ᎤᎾᏁᎳᏅᎯ ᎢᏗᏢ ᏙᏛᎦᏔᎲᏍᏔᏂ. ᎢᎦ ᎩᎳᏈᏴ ᎤᏒᎯ ᏂᎵᏍᏔᏁ, ᎠᏎᏃ ᎠᏤ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ, ᎤᏍᎦᏃᎵ ᎠᏓᏅᏍᎨ ᎾᏍᎩᏯ ᎠᏍᎦᏃᎵ ᎠᎹᏱ ᎭᏫᏂ ᏣᏓᏏᏂᏐᎢ. ᎣᎭᏁᏃ ᎤᏂᎵᏦᏩᏛ ᏭᏂᏟᏅᏣ ᏣᎵ ᏚᎵᏘᎾᎥ, ᎦᎷᏯᏍᏗ ᏃᎴ ᎤᏓᎵ ᎦᏂᏏ ᏓᏂᏅᎬ ᎡᏝᏪᎯ ᎠᎾᏟᏃᎮᏍᎬ, ᎠᏂᏃᎮᏍᎬ ᎢᎫᏩᎾᏛᏁᏗ ᎨᏒ ᏧᏂᎨᎯᏓᏍᏗ ᎤᏂᏍᎦᏎᏗ ᎫᏂᏩᏛᎯᏙ. ᏣᏂ ᎧᏃᎮᏍᎬᎩ ᎾᏍᎩ [ᎧᏃᎮᏛ,] ᎠᎴ ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᏥᏥᏃᎮᏍᎬᎩ, ᎯᎠ ᏥᏂᏥᏪᏍᎬᎩ, ᎣᏂ ᏨᏓᏯᎢ ᎢᎬᏱ ᎠᎦᎴᏗ, ᎾᏍᎩᏰᏃ ᎡᎲᎩ ᎠᏏ ᏂᎨᎥᎾ ᏥᎨᏒᎩ. ᎠᏉᎵᏨ ᏚᏳᎪᏛ ᎾᏆᎵᏍᏔᏁᎸ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏥᏌ ᎤᏍᏆᏛ ᏂᎦᏛ ᎯᎠ ᎾᏍᎩ ᏂᎦᏪᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎤᎾᏓᏅᏘ ᎡᎶᎯ ᏧᏄᎪᏓᏁᏗ ᎨᏒᎢ? ᎢᏳᏃ ᎡᎶᎯ ᏗᏧᎪᏓᏁᏗ ᎨᏎᏍᏗ, ᏝᏍᎪ ᏰᎵ ᎤᏍᏗ ᎧᏂ ᎨᏒ ᏗᎨᏧᎪᏙᏗ ᏱᎩ? ᎤᏣᏘᏃ ᎤᏲᏏᏌᏁᎢ, ᎠᎴ ᎤᏚᎵᏍᎨ ᎤᎵᏍᏓᏴᏗᏱ, ᎠᏎᏃ ᎠᏏᏉ ᎠᎾᏛᏅᎢᏍᏗᏍᎨ ᏣᎦᎵᎰ ᎾᏍᎩᏯ ᏄᎵᏍᏓᏁᎴᎢ. ᎤᏰᏥ ᏌᏌ. ᎤᏙᏯᏅᎯᏛᏃ ᎤᏒᏂᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎣᏏᏳ ᏥᏰᎸᎾ; ᏣᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏰᏍᎩ ᎤᏢᎬ ᎤᏓᏅᎡᎴᎢ. ᏃᏗ ᎤᏔᎾᏯ ᎤᏃᏕᎾ ᎤᏁᏤ, “ᎠᏯ ᎪᎢᏳᏗ, ᏄᏓᎴ ᎠᏤᎯ ᎪᏪᎶᏗ ᏓᏏᎳᏛ, ᎠᏍᏆᏂᎪᏙᏗ ᎬᏅᎢ ᏫᎵᎻ. ᎪᎯᏰᏃ ᎢᏳᏓᎴᏅᏛ ᏏᏓᏁᎸᎯ ᎨᏒ ᎯᎠᎩ ᎢᏯᏂᏛ ᏔᎵ ᏄᎾᏓᎡᏍᏗ, ᏦᎢ ᎢᏯᏂᏛ ᎤᎾᎵᎪᏎᏍᏗ ᎠᏂᏔᎵ ᏚᎾᏡᏕᏍᏗ, ᎠᎴ ᎠᏂᏔᎵ ᎤᎾᎵᎪᏎᏍᏗ ᏦᎢ ᏚᎾᏡᏕᏍᏗ. ᎦᎵᏬᎦ ᎪᎩ, ᎦᎵᏬᎦ.” ᎵᏫᏃ ᎤᏣᏘ ᏣᎦᎵᏍᏓᏴᎾᏁᏗᏱ ᎤᏛᏅᎢᏍᏓᏁᎴ ᎤᏩᏒ ᎦᏁᎸᎢ; ᎠᎴ ᎤᏂᏣᏖ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᏅᏩᎾᏓᎴ ᎢᏧᎳᎭ ᎠᏂᏅᏜᎡᎢ. ᎤᏟᏂᎩᏛ ᎤᏛᏅ ᎠᏌᎻᏓ ᎤᏚᎩᏐᏅ. ᎤᏁᎳᎩᏉ ᎡᎵᏍᎪ ᏂᎦᎥ ᎪᎱᏍᏗ; ᎪᎯᏳᎲᏍᎪ ᏂᎦᎥ ᎪᎱᏍᏗ; ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎤᏚᎩ ᎤᏩᏐᎢ; ᎬᏂᏗᏳ ᎨᏐ ᏂᎦᎥᎢ. ᎢᏳᏃ ᎩᎶ ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᎢᎨᏣᏯᏂᏍᎨᏍᏗ, ᎠᎴ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎢᏤᏅᏍᏗᏱ; ᏄᏍᏛᏉ ᎪᎱᏍᏗ ᎢᎬᏱᏗᏢ ᎡᏥᏝᏁᎲ ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ, ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏣᏛᏛᎲᏍᎨᏍᏗ, ᎠᎦᏅᏙᎩ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎾᎿᏃ ᏫᎣᎦᏣᏅ, ᏈᎵᎩᏱ ᏬᎩᏃᎸᎩ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎦᏚᎲ ᎾᎿ ᎢᏗᏢ ᎹᏏᏙᏂ, ᎠᎴ ᎾᏍᎩ ᎤᎾᏓᏅᏛ ᎤᏂᏚᎲ ᏥᎩ. ᎾᎿᏃ ᎦᏚᎲ ᎢᎸᏍᎩ ᏧᏒᎯᏛ ᎣᎨᏙᎸᎩ. ᎤᏟ ᎦᎸᎳᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎨᎦᎨᏅᏴ ᎨᏒᎢ, ᎠᎴ ᎤᏂᎬᏫᏳᏎᏕᎩ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏚᎾᏙᎠᏗᏒ ᏗᎪᎥᎯ ᏥᎩ, ᎥᏝ ᎠᏂᏉ ᎤᏩᏒ ᎪᎯ ᏥᎩ, ᎾᏍᏉᏍᎩᏂ ᎾᎿ Ꮒ ᎠᏏ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎩ, ᎨᏍᏗ ᏱᏓᎨᏏ ᎤᏛᏅ ᏣᎵ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏚᎵᎭ ᎢᏨᏯᏅᏓᏗᏍᏙᏗᏱ ᎾᏍᎩ ᎯᎠ ᎦᏳᎳ ᏥᏥᎦᏔᎭ, ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏥᏚᏭᏓᏓᏎ ᏴᏫ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲ, ᎣᏂ ᏥᏚᏛᏔᏁ ᎾᏍᎩ Ꮎ ᏄᏃᎯᏳᏅᎾ. ᎢᏳᏃ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ ᏧᏂᏲᎱᏒᎯ, ᎿᏉ ᎦᎶᏁᏛ ᎥᏝ ᏧᎴᎯᏌᏅᎯ ᏱᎩ. ᏫᎬᏩᏩᏛᎲᏃ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏂᎦᏛᏉ ᏴᏫ ᎨᏣᏲᏎ. ᎨᏍᏗ ᎩᎶ ᏳᏚᎵ ᎠᎩᏍᏕᎸᏗ ᎠᏆᏅᏔ ᏐᏉ ᎤᏓᏏᏂᏕᏅ, ᎨᏍᏗ ᏱᏥᎦᏔ ᎢᏳᏍᏗ ᎤᏰᎸᏛ, ᎤᏐᏱᎭ ᎨᏒ. ᎤᎬᏫᏳᎯᏃ ᎤᎪᎵᏰᎥ, ᎤᏛᏛᏅᎩ ᎾᎿ ᏍᎦᏚᎩ ᎡᎯ ᎨᏒᎢ, ᎤᏛᎦᏅᏃ ᏏᎵᏏᏱ ᎡᎯ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏁᎶᏔᏅᎯ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ, ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ, ᎾᏍᎩ ᏩᏛᎬᎦ. ᎤᏪᎷᏅ, ᎤᎾᎵᏗᏍᎩᏎ ᏏᏆ, ᎦᏅᎬ ᎦᏚᎢᏣ. ᎥᏝᏰᏃ ᎤᏁᎳᎩ ᎦᏲᎩᏂᏰᎸᏗ ᏱᎩ, ᎣᎩᏂᏁᎢᏍᏙᏗᏱ ᏄᏍᏛ ᎣᎩᏂᎪᎲᎢ, ᎠᎴ ᎣᎩᎾᏛᎦᏅᎢ. ᏂᎦᎥᏍᎩᏂ ᎤᏟᎯᏳ ᎠᏥᎸᏉᏗᏳ ᏴᏫ ᎡᏉᎦᏉ ᎠᏫ ᎤᏃᏕᎾ. ᎾᏍᎩᏍᎩᏂ ᎢᏳᏍᏗ ᏰᎵᏉ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ. ᏥᏳ, ᏚᏙᎣᏐᏅ ᏗᏯᏖᏅ ᏧᏆᎶᎦ, ᏧᏔᎷᎩᏍᎩ ᏫᏚᎸᏌᏛ ᎤᏬᏗᎨ ᏚᏅᏓᏒ. ᎥᎬᏩᎪᏁᎶᎯᏎᎸᎩᏃ; ᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᎾᏥᎸᏉᏛᎾ ᏱᎨᏐᎢ, ᎤᏩᏒᏍᎩᏂᏃᏅ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏩᏒ ᎦᏁᎸᎢ. ᎤᎧᎭᏛ ᏓᎪᏩᏘᏍᎨ ᏲᎾ ᏗᎦᎴᏂ ᏃᎴ ᎤᏬᏗᎨ ᎤᏍᎪᎸ ᎧᏴᏐᎵ. ᏥᎪ ᎢᎾᏈᎷ ᎾᏍᎩ? ᎠᏴ ᎾᏍᏉ. ᏥᎪ ᎠᏂᎢᏏᎵ? ᎠᏴ ᎾᏍᏉ. ᎡᏆᎭᎻᏍᎪ ᏧᏁᏢᏔᏅᏛ ᎾᏍᎩ? ᎠᏴ ᎾᏍᏉ. ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗᏉ ᎡᏥᏲᎢᏎᎸᎩ ᎾᏍᎩ Ꮎ ᏥᎧᏁᎦ. ᎢᏳᏰᏃ ᏄᎾᏓᏗᏫᏎᎸᎾ ᏱᎩ ᎾᏍᎩ Ꮎ ᎤᏂᏲᎢᏎᏛ ᎡᎶᎯ ᎤᏁᏨᎯ, ᎤᏟᎯᏳ ᎬᏩᏟᏍᏗ ᎢᎦᏓᏗᏫᏎᏗᏱ ᎢᏳᏃ ᎢᏴᏛ ᏱᏁᏓᏛᏁᎸ ᎦᎸᎳᏗ ᏨᏗᎧᏁᎦ; ᎤᏃᎴ ᏙᎦᏘᏁᎪ, ᎣᏤᎵᏍᎬ ᎣᏤᎪ.” ᎾᏂᎥᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏯᏛᏁᏗᏱ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎩ, ᎾᏍᎩ ᎨᏥᏍᎦᏨᎯ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎬᏪᎳ, ᎨᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ ᎾᏂᎥ ᎩᎶ ᏂᏓᏂᎧᎿᏩᏕᎬᎾ ᎢᎨᏎᏍᏗ ᎾᎾᏛᏁᎲ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎪᏪᎸᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏈᏓ ᏂᎬᎾᏛ ᎤᏪᏙᎸ ᎾᏍᏉ ᏫᏚᎷᏤᎴ ᎤᎾᏓᏅᏘ ᎵᏓ ᎠᏁᎯ. ᏍᏗᏫ ᎠᏥᏁᏤᎴ ᎤᏂᏴᏗ ᎢᎾᏓ ᎪᎢ ᎠᏍᏚᏥᏍᎬ ᎢᏳᎯ. ᎤᏪᏯ ᎾᎥ ᏩᎾᎢᏒ, ᏩᎭᏯ ᎾᎥ ᎤᎦᏌᏗᏣ… [ᎯᎠ ᏥᏂᎦᏪᎭ,] ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏂᏍᎦᏅᏨ ᎦᎨᏥ-ᏁᎸᎯ, ᎠᎴ ᎤᏲ ᏄᎾᏛᏁᎸ ᎨᎫᏢᎾᏁᎸᎯ; ᎠᎨᏴᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏱᏚᏳᎪᏗ ᏗᎩᎡᏗᏱ ᏗᏂᏲᎵ ᎤᎾᏤᎵ ᎦᏚ, ᎩᎵᏃ ᏫᏓᏗᏁᏗᏱ. ᎠᎴ ᎥᏝ ᎯᎠᏉ Ꮎ ᎤᏅᏒ ᏱᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ, ᎾᏍᏉᏍᎩᏂ Ꮎ ᎠᎾᎵᏥᏙᎲᏍᎬ ᎬᏉᎯᏳᎲᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏥᎩ ᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ; ᎡᎵᏍᏗ ᎦᏲᏟ ᏗᎩᏏᎳᏛᏙᏗ ᎡᎳᏗ ᎢᏯᏆᏛᏁᏗ.” ᎠᏴ ᎤᏙᎯᏳᎯ ᎯᎠ ᏂᎨᎵᏍᎬᎩ; ᏚᏳᎪᏛ ᏱᏂᎦᏛᏁᎭ ᎤᏣᏘ ᎪᎱᏍᏗ ᏱᏓᎩᎸᏫᏍᏓᏁ ᎦᏡᏗᏍᎬ ᏕᎤᏙᎥ ᏥᏌ ᎾᏎᎵᏘ ᏤᎲᎩ. ᎾᏍᎩᏃ ᎦᎸᎳᏗ ᎡᎯ ᎢᏥᏙᏓ ᏧᏪᏥ ᏂᏣᎵᏍᏗᏍᎨᏍᏗ; ᎾᏍᎩᏰᏃ ᎤᏤᎵ ᏅᏙ ᏕᎦᎾᏄᎪᏫᏎᎰ ᎤᏂᏲ ᎠᎴ ᎠᏃᏍᏛ, ᎠᎴ ᏓᎦᏅᏓᏁᎰ ᎤᎾᏓᏅᏘ ᎠᎴ ᎤᏂᏁᎫᏥᏛ. ᏚᎴᏅ ᎠᏧᏣ ᎠᎹ ᏄᏩᏅᏓᎩᏎ ᎤᏍᏘᏰᎬ, ᎦᏁᎮ ᎠᏰᎳᏍᏗ, ᎠᎼ ᎤᏓᏅᎦᎸᏓ. ᏅᏃ ᏚᎾᏦᎭᏱᎸ. ᎠᎴ ᏔᎵᏁ ᎤᏴᎸᎩ ᏗᎫᎪᏗᏱ, ᎯᎠ ᏫᏄᏪᏎᎸᎩ ᏥᏌ; ᎭᏢ ᏅᏓᏣᏓᎴᏅᎯ? ᎠᏎᏃ ᏥᏌ ᎥᏝ ᏳᏁᏤᎴᎢ. ᎨᏍᏗ ᎯᎸᎯᏳ ᏭᏙᎯᏳᎲ ᏧᎵᎢ ᏏᏆ ᏯᏁᎮᎢ, ᏃᎴ ᎤᏕᎶᎰᏎ ᎠᎵᎢ ᎣᎯᏍᏙᏗ ᎠᏓᏅᏖᏙᏗ ᎭᏂ ᎡᎶᎯ. ᎪᎰᏍᏘ ᎤᏰᎸᏗ ᏓᏳᎾᏘᏲᎸ, ᎠᏂᏐ ᎠᏂᏧᏣ ᎤᎾᏦᎣᏒ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ. “Ꭵ, ᎤᏙᏳᎯ,” ᏃᎴ ᏍᏓᏱᎨᏍᏗ ᎯᎧᏁᎦ ᏣᏓᏦᎲᎢ. ᎩᎶᏰᏃ ᏂᏚᏳᎪᏛᎾ ᎾᏛᏁᎮᏍᏗ ᎠᎩᏍᎨᏍᏗ ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᎩᏍᎨᏍᏗ ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ ᏧᏭᎪᏓᏁᎯ ᎤᏩᏛ ᎤᏍᎦᏅᏨᎢ, ᎾᎪᏩᏘᏍᎬᎾ ᎨᏒ ᎤᎬᏫᏳᎯ ᎠᏰᎸᎢ. ᎠᎦᏴᎵ ᎤᏤᏥᏍᏗ ᎤᏍᏆᏙᏁ ᏣᏁᎳ ᏧᏕᏘᏴᏓ, ᎤᎴᏅᎮ ᎤᏩᏌ ᎡᎲ Nashville ᏙᏰ, ᎣᏍᏓ ᎤᏰᎸᎮ ᎤᏬᏰᏂ ᎬᏘ ᏳᏎᎵᏙᎳ ᏂᎬᎾᏛ ᎦᏙ, ᎾᏍᏉ ᎤᎸᏂᏗᏍᎬ. “ᎭᏩ, ᎨᏍᏗᏗ ᎤᎵᏬᏨ ᏏᏆ ᎨᏗᏁᏗ ᏱᎩ ᎤᎵᎪᎾᏔᏅᎯ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ. ᎤᎦᏃᏫ ᎨᏒ ᎤᏍᏔᎦᏢ. ”ᎭᏂ ᎦᎸᎳᏗᏣ,” ᎤᏛᏁ ᎦᏬᏂᏍᎩ. ᏔᎵᏚ ᎢᏳᏩᏂᎸ----ᎢᎦ ᎠᎵᏍᏓᏴᏗ. ᎢᎦᏓ ᎠᏂᎨᏯ ᏚᏂᏁᎦᎳᎲ ᏃᎴ ᏚᏂᎦᏧᎳᎩᏒ ᏌᎶᎵ ᎾᏍᎩᏯ ᏎᎷ ᎣᏍᏓ ᏥᏂᏓᏅᏁᎰ, ᏗᎪᏍᏓᏱ ᎠᏓᏒᎩ ᎠᏓ ᏫᏚᏄᏍᏙᏅ ᏧᎾᎦᏎᏂ ᏗᏂᎰᎵ ᏫᏗᎦᏅᎪᎩ, ᎪᏍᏓ ᏧᏗᎴᎩ ᎦᏚᎢᏣ ᏫᏚᏂᏒᎾᏔᏅ. ᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎥᏝ ᏂᎯ ᎢᏥᎦᏙᎥᎯᏍᏗ ᏱᎩ ᎢᏳ ᎠᎴ ᎾᎯᏳ ᏕᎨᏌᏗᏒᎢ, ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎤᏩᏒ ᎢᏧᏩᏁᎵᏓᏍᏗ ᏥᏄᏩᏅ. ᏌᏉᎯᏰᏃ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ ᏂᏗᎥ ᏤᎦᏬᎥᎯ ᏌᏉ ᎠᏰᎸ ᎢᏰᎬᏁᎸᎯ, ᎾᏍᏉ ᎢᏗᏧᏏ ᎠᎴ ᏗᎦᏓᎴᏅᏛ ᏴᏫ ᏱᎩ; ᎾᏍᏉ ᏤᎩᎾᏝᎢ ᎠᎴ ᏤᎩᎾᏝᎢ ᏂᎨᏒᎾ ᏱᎩ; ᎠᎴ ᏂᏗᎥ ᏌᏉᏉ ᎠᏓᏅᏙ ᎢᎦᏗᏔᏍᏗᏱ ᎢᏰᎬᏁᎸᎯ. ᏗᎦᎷᏯᏍᏙᏗ ᏚᎾᏚᎵᏍᎨᏍᏗ. ᎠᏂᏆᎵᏏᏍᎩᏂ ᎤᎾᏛᎦᏅ ᎡᎳᏪᏱ ᏚᏩᏅ ᎠᏂᏌᏚᏏ, ᎾᏍᎩ ᏚᏂᎳᏫᏨᎩ. ᏧᏩᏤᎷᎩᏍᏔᏁ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙ ᏅᏃᎯ. ᎥᏝᏰᏃ ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎠᏓᎸᏉᏗᏍᎩ ᏣᎦᏓᏂᎸᎢᏍᏗ ᏱᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᎬᏫᏳᎯ ᎤᎸᏉᏔᏅᎯ. ᎢᎬᏱ ᎦᏰᎯ ᎣᏣᎦᏌᏯᏍᏗᏍᎬ ᎣᏏᏳ ᎠᏰᎸᏗ ᎨᏒᎢ, ᎥᏝ ᎤᎬᏫᏳᎯᏉ ᎠᎦᏔᎲᎢ, ᏴᏫᏍᎩᏂ ᎾᏍᏉ ᎠᏂᎦᏔᎲᎢ. ᏓᏆᏒᎾᏔᏅ ᎧᏫ ᏚᏯ, Perry ᏥᏅᏫᏍᏔᏅ ᎤᎪᏗ ᎤᎧᏔ, ᎤᏂᎧᎭᏲᏓ ᏆᎾ ᏧᏑᏴᏗ ᏃᎴ ᎠᎦᏗᏛ ᏭᎵᏗ ᎠᏑᏴᏗ ᏃᎴ ᎤᎵᏏᎩ ᎧᎵᏎᏥ ᏃᎴ ᎪᏒᏅ. ᎢᏳ ᎠᎴ ᏎᏓᏂ ᏱᏚᎴᏅ ᎤᏩᏒ ᏱᏚᏓᎦᏘᎴᏅ, ᎠᎴ ᏔᎵ ᏱᏄᏓᎠ, ᎥᏝ ᏰᎵ ᏱᏂᎬᏩᏍᏗᏉ, ᏱᏩᏍᏔᏉᏍᎩᏂ ᎡᎲᎢ. “ᎭᏩ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ, “ᎨᎵᎠ ᎠᏎ ᏧᎸᏉᏗ ᏅᎩ ᏗᏂᏅᏌᏗ ᎨᏎᏍᏗ. ᏐᏉ ᎢᎦ ᏕᎭᎷᏱ ᎧᎸᎢ, ᏔᎵ ᎢᏯᏅᏓ ᎾᎥᏂ ᎢᏳᏕᏘᏴᏓ ᏥᎨᏎ ᏫᎵᎻ, ᏙᏱᏨ ᎡᏙᎮ. ᏍᏈᏍᏓ ᎠᏣᏗ ᎠᏁᎮᎢ ᎠᎹ ᎦᏁᎲ. ᎥᏝᏰᏃ ᎠᏆᏓᏅᏙ ᏫᏱᏙᎦᎯᏲᎯ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵᎪᎯ, ᎥᏝ ᎠᎴ ᎾᏍᎦᏅᎾ ᏣᏤᎵ ᎤᏁᎳᎩ ᏭᎪᎯ ᎦᎯᏰᎵᏎᏗ ᏱᎩ. ᏃᎴ ᏍᏉ, ᏌᎳᏓ ᎣᏍᏓ ᏳᏓᏅᏛᎾ ᎨᏒ… ᎤᏪᎵᏎ ᎠᏕᏗᏱᎩ ᎤᏲ ᎦᎶᎯᏍᏗ. ᎤᎵᏍᎫᏮ ᏣᎵ ᎤᏬᏢ ᎢᏣ, ᎢᏧᎳ ᏚᏃᏢ ᎤᏬᎯᏳᏅ ᏣᎵ ᎤᏚᎵᏍᎬ ᎤᏕᏘ. ᎠᎴ ᎾᏍᏉ, ᎾᎯᏳ ᎢᎬᏱ ᎤᏕᏁᎸᎯ ᎡᎶᎯ ᎤᎾᏄᎪᏫᏒ ᎯᎠ ᏄᏪᏎᎢ; ᎠᎴ ᎾᏂᎥ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏫᎬᏩᏓᏙᎵᏍᏓᏏ. ᎿᏉᏃ ᎯᎠ ᎾᎩᏪᏒᎩ, ᎬᏂᏳᏉ ᏥᎷᎩ, [ᎪᏪᎵᎯ ᎪᏪᎳ ᎥᎩᏃᎮᏍᎬᎢ,] [ᏥᎷᎩ] ᏄᏍᏛ ᏣᏚᎵᏍᎬ ᎢᏯᏆᏛᏁᏗ Ᏹ, ᏣᏁᎳᏅᎯ. ᎠᏎᏃ ᎤᎴᏅᎮ ᎤᏍᎩᏅᏕ ᎠᎴ ᎤᏎᎵᎳᏁ ᎯᎠ ᏁᏪᏎᎢ, ᎥᏝ ᏱᏥᎦᏔᎭ Ꮎ ᎠᏍᎦᏯ ᎾᏍᎩ ᏤᏥᏃᎮᎭ. ᎨᏍᏗ ᏳᏣᏅᏓᏕᎳ ᎤᎶᎪᏗ ᏎᎷ ᏓᏫᏒ ᏣᏄᏏ. ᎱᎷᏣ ᏌᎪᏂᎨ-ᏃᎴ-ᎤᏁᎦ ᎪᏪᎵ ᎤᎭᎨᏓ ᎤᏅᏍᎦᎴᎢ. ᎾᎿᏃ ᏕᎦᎧᎲᎩ ᏑᏓᎵ ᎠᎹ ᏗᏟᏍᏗ ᏅᏯ ᏗᎪᏢᎳᏅᎯ ᎠᏂᏧᏏ ᏥᏂᏕᎤᏅᏃ ᎤᎾᏓᏅᎦᏗᏱ ᏥᏂᏕᎬᏅᎩ, ᏦᎠᏍᎪᎯ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᏗᏟᏍᏙᏗ ᎨᏒᎢ ᎨᏍᏗ ᎯᎸᎯᏳ ᎠᎩᎪᎲᎯ ᏱᎨᏎ ᏍᎩᎾᎾ ᎢᎦᎢ ᎤᎾᏗᏅᏓ ᎠᎵᏍᏓᏴᏗ, ᏃᎴ ᏂᎦᏓ ᎣᏍᏓ ᎤᏩᏂᏒ, ᎠᎦᎵᏍᎬ ᎠᎲᎢ. ᎢᏳᏃ ᎩᎶ ᏂᏗᏣᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᎢᏥᏁᎬ ᎾᏛᎩᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᎾᎿ ᎦᎵᏦᏕ ᎠᎴ ᎦᏚᎲ ᎢᏥᏄᎪᎩ, ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ ᎦᏓ ᏗᏣᎳᏏᏕᏂ. ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᎥ, ᏣᎬᏫᏳᎯ; ᎪᎢᏳᎲᏍᎦ ᏂᎯ ᎦᎶᏁᏛ ᎨᏒᎯ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ. ᏂᎯ ᎤᏁᎳᏅᎯ ᏅᏓᏣᏓᎴᏅᎯ, ᏗᏥᏲᎵ, ᎠᎴ ᏕᏥᏎᎪᎩᏒ ᎾᏍᎩ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏟ ᎤᎵᏂᏗᎩᏗᏳ ᎨᏒ ᎢᏥᏯᎢ ᎡᏍᎦᏉ ᎡᎶᎯ ᎠᏯᎢ. ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎤᎵᏬᏨ ᏗᎦᎾᏗ ᏣᏄᏍᏕᎢ, ᎠᏎᏃ ᏥᏳᎧᏗ ᎤᎾᏕᎶᎰᏍᏗ ᏧᎾᏚᎵᏍᎨ ᎠᏂᏣᎳᎩ ᏍᎩᏳᏍᏗ ᎡᏆ ᏧᏃᏔᏁᎢ ᏃᎴ ᎭᎾ ᏣᏭᎾᏓᎩᏅᏎᎢ ᏍᎩᎾ ᏍᎩᎵ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᎠᏏᏉ ᎤᎾᎦᏙᏍᏕ ᎠᏥᏌᎳᏓᏁᎢ, ᎤᎶᎩᎸᏃ ᏭᏕᎵᏤ ᏓᏂᎧᏅᎢ. ᏍᏈᏍᏓ ᏃᎴ ᎦᏣᏄᎳ ᎫᏘᎭ ᎤᏙᎯᏳᏗᏱ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎢ; ᏗᏍᎩᎧᏁᎸᎯ ᎥᏝ ᎠᏏᏴᏫ ᏍᎩᏲᎱᏎᎸ. ᏥᏓᏓᏴᎳᏔᏍᎨᎢ ᏗᎧᏁᎢᏍᏗ, ᏂᎦᏓ ᎤᏍᏆᏂᎩᏗ ᎠᏁᎵᏍᎨ. ᎯᎠᏰᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎠᏥᏰᎸᏎ ᎡᏍᎦᏉ ᎼᏏ, ᎩᎶᏰᏃ ᎠᏓᏁᎸ ᎤᏁᏍᎨᎲᎯ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏐ ᎡᏍᎦᏉ ᎠᏓᏁᎸᎢ. ᎾᏍ-Ꭹ Ꮎ ᏥᏁᎢᏍᏗᏍᎬ ᏱᎦᏢᏈ; ᎠᏋᏒᏍᎩᏂ ᎦᏓᏁᎢᏍᏗᏍᎬ ᎥᏝ ᏴᎦᎦᏢᏈ, ᏥᏩᎾᎦᎵᏳ ᎨᏒ ᎤᏩᏒ. ᏧᎸᏫᏍᏓᏁᎯ ᎦᎸᏉᏗᏳ ᏗᎨᏒᎢ ᎠᎴ ᎤᏙᎯᏳᎯ ᏗᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᎵᏦᏔᏅᎯ ᎨᏒᎢ, ᎥᏝᏃ ᏴᏫ. ᎤᏪᎳᏗᏓᏍᏗᏱ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎴ ᎠᏓᏅᏏᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏧᏓᏏ ᏥᏚᏲᏒᎩ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᏭᎶᎯᏍᏗᏱ. ᎾᏍᎩ Ꮎ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎠᎾᏙᎴᎰᏍᎩ ᎣᏍᏛ ᎣᏂᎨᏛᏅᎯ ᎠᎴ ᎤᏂᏲᎸᎯ, ᎾᏍᎩ ᎤᎾᏙᎴᎰᏒᎯ ᎤᏂᏁᎢᏍᏔᏅᎯ ᏂᎯ ᎡᏥᏙᎵᏍᏗ ᎨᏒᎢ; ᎠᏎᏃ ᎠᏏ ᎤᏟ ᎢᎦᎢ ᏂᏗᎬᏯᏪᎢᏍᏔᏅᎾ, ᎬᏔᏲᏎᎭ ᏣᏓᏅᏘᏳ ᎨᏒ ᏨᏙᏗᏱ ᏍᎩᏯᏛᎦᏁᏗᏱ ᎢᎸᏍᎩ ᎢᎧᏁᏨᎯ. ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎢᎩᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ. ᎢᏳᏰᏃ ᎤᏲ ᏱᏨ ᏯᏓᏅᏓᏗᏍᏔᏅ, ᎦᎪ ᎣᏍᏛ ᏯᏆᏓᏅᏓᏗᏍᏓ, ᎾᏍᎩᏉ Ꮎ ᎤᏩᏒ ᎤᏲ ᏥᏯᏓᏅᏓᏗᏍᏔᏅᎯ? ᎥᏝ ᎠᏗᎾ ᎿᏉ ᎠᏎ [ᎢᏤᏓᏍᏗᏱ ᏂᎨᏒᎾ] ᎾᏍᏉ ᎡᎶᎯ ᏗᏂᎧᏩᏕᎩ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ ᎠᎴ ᎤᏂᎬᎥᏍᎩ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ ᎠᎴ ᎤᏂᎬᎥᏍᎩ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎠᎾᏓᎩᎡᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᎠᏎ ᎢᏥᏄᎪᎢᏍᏗ ᏱᎩ ᎡᎶᎯ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᏉ ᏐᎵᎹᏅ ᏂᎦᎥ ᏄᏬᏚᏒᎢ Ꮭ ᎾᏍᎩ ᏱᏄᏍᏕ ᏚᏄᏮᎢ ᏌᏉ ᎯᎠ ᏄᏍᏛᎢ. ᏞᏍᏗ Ꭹ-Ꮆ ᎢᏳᏃ ᎠᏥᎪᎵᏰᏍᎨᏍᏗ, ᎤᏁᎳᏅᎯ ᎠᎩᎪᎵᏰᎭ ᎤᏛᏅᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎦᏰᏥᎪᎵᏰᏗ ᏱᎩ ᎤᏲ ᎠᎬᏓᏁᎲᎢ, ᎥᏝ ᎠᎴ ᎤᏩᏒ ᎩᎶ ᏯᎪᎵᏰᏍᎪᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏈᏓ ᎤᏄᎪᏨᎩ, ᎠᎴ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏂᎷᏨᎩ. ᏐᏉᏃ ᎤᏙᎯᏳᎭ, ᎨᏍᏗ ᎤᏓᏅᏗ ᏱᎩ. ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏯᏋᏁᏗᏱ, ᎾᏍᎩᏯ ᏥᏚᏳᎪᏗ ᎢᏯᎩᏪᏍᏗᏱ. ᎠᎴ ᏂᏍᎬᎢᏃ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᏑᎾᎴᎢᏳ, ᎠᏏᏉ ᎤᎵᏏᎬᎩ, ᎤᎷᏨᎩ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᎤᎪᎲᎩ ᏅᏯ ᎠᎲᏛ ᎨᏒᎩ ᎠᏤᎵᏍᏛᎢ. ᏐᏈᎵ ᏓᏂᏁᎵᏍᎨᎢ. ᏰᎵ ᎪᎯᏓ ᎦᎾᏩᏕᎨ, ᎠᏰᎵ ᎦᏟ, ᎠᏍᎩᏥᏍᎨᎢ ᎣᏍᏓ ᎠᏍᎩᏗᏍᎨᎢ. ᎩᎦᎨ ᎠᏓᏪᎳᎩᏍᎬ ᏃᎴ ᎬᏂᎨ ᏚᎦᏒᏍᏛ ᎦᎸᎶ ᎢᏴ ᏫᎦᎷᎬ, ᏔᎵ ᏧᏙᏓᏆᏓ ᎬᏂᎨ ᎤᏍᎪᎸ ᎠᎯᏯ ᎪᏍᏓ ᎦᏃᎯᎵᏙᎲ, ᎤᎨᏓᎵᏴ ᎨᏴ ᏫᎦᎷᎬ. “ᎬᏃᎯᏎᎭ ᏄᎵᏍᏔᏂᏙᎸ.” ᎿᏉ ᏂᎯ ᎢᏣᏓᏅᎦᎸᏔᏅ ᎧᏃᎮᏛ ᎾᏍᎩ ᎢᏨᏁᏤᎸᎯ ᏥᎩ. ᎯᎠᏰᏃ ᏂᎦᏪᎭ, ᎬᏩᏛᎦᏁᎸ ᎾᎯᏳ ᏗᏓᏂᎸᏨᎯ ᎨᏒᎢ, ᎠᎴ ᎾᎯᏳ ᎢᎦ ᎦᏴᏓᏗᏍᏕᎸᏗ ᎨᏒ ᎬᏍᏕᎸᎲ; (ᎬᏂᏳᏉ, ᎪᎯ ᎿᏉ ᎾᎯᏳ ᏗᏓᏂᎸᏨᎯ ᎨᏒᎢ; ᎬᏂᏳᏉ, ᎪᎯ ᎿᏉ ᎾᎯᏳ ᏗᏓᏂᎸᏨᎯ ᎨᏒᎢ; ᎬᏂᏳᏉ, ᎪᎯ ᎿᏉ ᎾᎯᏳ ᎢᎦ ᎦᏴᏓᏗᏍᏕᎸᏗ ᎨᏒᎢ;) ᎾᏍᎩ ᎯᎠ ᎠᎨᏲᏅᎯ ᎨᏒᎩ ᎤᎬᏫᏳᎯ ᎤᏅᏅᎢ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᏓᏅᏛᎢ, ᎧᏃᎮᏍᎬᎩ ᎠᎴ ᏓᏕᏲᎲᏍᎬᎩ ᎾᏑᎵᎪᎬᎾ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎨᏒᎢ, ᏣᏂ ᎤᏤᎵ ᏗᏓᏬᏍᏗ ᎤᏩᏒ ᎠᎦᏔᎲᎩ. ᏞᏍᏗ ᎩᎶ ᎤᏩᏒᏉ ᎤᏤᎵ ᏳᎦᏌᏯᏍᏕᏍᏗ, ᎾᏂᎥᏍᎩᏂ ᎠᏂᏐᎢ ᎾᏍᏉ ᎤᎾᏤᎵᎦ. ᏝᏍᎪ ᏱᏥᎦᏔ ᎾᏍᎩ Ꮎ ᎠᎾᏙᎩᏯᏍᎩ, ᏂᎦᏛ ᎠᎾᏙᎩᏯᏍᎬᎢ, ᎠᏎᏃ ᎠᏏᏴᏫᏉ ᎤᏤᎵ ᏂᎭᎵᏍᏗᏍᎬ ᎠᏌᏍᏛᎢ? ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎢᏣᏙᎩᏯᏍᎨᏍᏗ ᎾᏍᎩ ᎢᏣᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ. ᎤᏙᏓᏃ ᏤᎦᎳᏯ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎤᏙᎴᎰᏎ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏁᏅᏍᏓ ᎣᏂᏏᎹ, ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᎠᎴ ᎣᏥᎨᏳᎢ ᎣᏣᎵᏅᏟ ᎾᏍᎩ ᎢᏤᎲ ᎡᎯ ᏥᎩ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏅᏓᎨᏨᏁᎵ ᏂᎦᏛ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎠᏂ. ᏄᏁᏤᎶᏰᏃ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏄᎪᎢᏍᏗᏱ ᎠᏍᎦᏯ. ᏯᏃᏉᏰᏃ ᎤᏂᏱᏍᎨᎢ; ᏧᏓᏕᏒᏛᏃ ᎠᎴ ᏗᎵᏰᏌᎾᎶ ᏓᎦᎸᏍᏗᏍᎨᎢ; ᏓᎦᎵᏍᎨᏁ ᏚᏓᎸᏍᏛᎢ, ᎠᎴ ᎠᏍᎩᎾ ᎢᎾᎨ ᏭᏱᎸᏍᏗᏍᎨᎢ. ᎯᎳᏳᎢ ᏍᎩᎾ ᏩᏚᎳᏏᏁ ᎦᏚᎢ ᎭᏫᎾ ᏗᏔᎳᎧᏒᎢ ᏣᏭᎶᎢᏎᎢ ᏍᎩᎾ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᏣᎾᎤᎳᏍᏓᏁ ᎱᎳᏍᏕᎵᏴᏌ. ᎠᏍᎦᏯᏯ ᏥᏍᏕᏥ ᎨᏎ ᏧᏍᏆᏴᏍᏗ, ᎤᏩᏌ ᏁᎵᏍᎬ ᎾᏛᏁᎮ. ᎢᏳᏛᏁᏗᏱ ᏚᏚᎢᏍᏓᏁᎸ ᏗᎩᎦᏴᎵᎨ ᏧᏪᏙᎵᏍᏗᏱ, ᎠᎴ ᎤᏅᏓᏗᏍᏗᏱ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᏳᎾᏟᎶᎾ, ᎠᏂᏍᎦᏯ ᎠᏂᎳᎨᏲ ᏓᏂᏲᎰᏍᎪ, ᎨᏥᎢᏍᏔᏅ ᏃᎴ ᎩᎦ ᎠᎾᏔᏍᎩᏍᎬ ᏃᎴ ᎤᏂᏍᎪᎸᏨ. ᎠᏒ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᏁᏈᏓᎵ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᎿᏉᏃ ᎤᏂᏍᎦᎸ ᏅᏲᎯ ᎤᏂᏝᏗᏤᏗᏱ, ᎣᏂᏗᏢ ᏫᏚᎾᏗᏅᏒᎩ ᏅᎩ ᏔᎷᎩᏍᎩ ᏥᏳ ᏗᎦᎾᎯᏍᏙᏗ, ᎠᎴ ᎤᎾᏚᎸᎲᎩ ᎢᎦ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏎᏃ ᎢᏳᏃ ᏳᏓᏅᏒ, ᏅᏩᏛᏁᏍᏗ ᏂᏓᏤᎲᎾ ᎨᏒᎢ, ᎠᎴ ᏙᎯᏉ ᎾᏅᏁᎮᏍᏗ ᎤᏰᎯ; ᎠᎴ ᎠᏍᎦᏯ ᏞᏍᏗ ᎢᏴᏛ ᏱᎦᎧᎲᏍᎨᏍᏗ ᎤᏓᎵᎢ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏴ ᏥᎬ ᏬᏁᏗᎭ ᎾᏍᎩ [ᎺᏌᏯ.] ᎩᎶᏃ ᏕᏣᏓᏂᎸᎨᏍᏗ, ᎾᏍᎩ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ; ᎩᎶᏃ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎾᏍᎩ ᏓᏓᏂᎸᎨᏍᏗ ᏅᏛᎩᏅᏒᎯ ᎾᎯᏳ ᎢᎦ ᎠᏂᏌᏚᏏ ᏗᎴᎯᏐᏗ ᎨᏒ ᎤᎾᏜᏏᏛᎡᎯ ᎬᏩᎷᏤᎸᎩ, ᎠᎴ ᎬᏩᏛᏛᏅᎩ, ᏂᎯᏍᎩᏂ ᏞᏍᏗ ᎾᏍᎩ ᏱᏂᏨᏁᏍᏗ; ᎩᎶᏍᎩᏂ ᎠᏥᎸᏉᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ ᎾᏍᎩ ᎡᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ. ᎣᏍᏓ ᎠᏓᏍᏕᎳ ᏧᎾᏦᏴᏍᏗ ᎤᏂᏗ.” ᎤᎾᎳᏅᎯᏍᎩᏂ ᏚᏑᏰᏒ ᎤᎾᎵᏍᎦᏂᏍᏛ ᎨᏥᏰᎸᎯ ᎠᏁ ᎡᎶᎯ, ᎾᏍᎩ ᏧᏕᎰᎯᏍᏙᏗᏱ ᎠᏂᎦᏔᎾᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏑᏰᏒ ᎠᏂᏩᎾᎦᎳ ᎨᏥᏰᎸᎯ ᎠᏂ ᎡᎶᎯ, ᎾᏍᎩ ᏧᏕᎰᎯᏍᏙᏗᏱ ᏧᎾᎵᏂᎩᏛ; ᎠᏎᏃ ᏌᎳᏓ ᏧᏪᏥ, ᏧᎵᏏ ᏃᎴ ᏔᎵᏁ ᏧᎵᏏ ᎠᎾᏕᎲᏍᎨᎢ ᎤᏕᏘᏴᏌᏗᏒᎢ ᎠᏂᏂᎩᎴ ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ. ᎠᏂᏐ ᎤᏃᎯᏳᏔᏅ. ᎧᏂᎵᏯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏅᎩ ᏄᏒᎭ ᎠᎹᏟ ᎬᏍᎬᎩ ᎯᎠ ᎢᏳ ᎧᎳᏩᏗᏒ ᎢᏯᏍᏗ, ᏦᎢᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎦᏓᏙᎵᏍᏗᏍᎬ ᏥᏁᎸᎢ, ᎬᏂᏳᏉᏃ ᎠᏍᎦᏯ ᏗᎬᏩᎸᏌᏓ ᏧᏄᏫ ᎢᎬᏱᏢ ᎠᏆᎴᏁᎸᎩ. ᏂᎦᏓᏉ ᎧᏅᏂᏍᎩ ᏧᏃᏚᎯ. Claire ᏥᏯᏚᎵᏍᎬ, ᎠᏎᏃ ᏗᏥᎶᏍᏔᏅ ᏓᏍᏆᏂᎪᏛ ᎠᏁᏙ ᎠᏂᎨᏯ ᎠᏃᎯᏍᏙᏗ ᎨᏒ, ᎡᏍᎦᏉ ᎠᏍᎦᏯ ᎤᏩᏌᏉ. ᏥᏌᏃ ᎠᏍᏓᏯ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ, ᏂᎯ ᏕᎬᏲᎯᏏ ᎠᏆᏓᏅᏙᎩ; ᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎵᏍᏆᏕᎴᎢ. ᏂᎦᏛᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏣᏔᏅᎯ ᎤᏂᎾᏰᏎᎢ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎯᎠ ᎾᏍᎩ ᏄᎵᏍᏔᏅ ᎠᎾᏛᎩᏍᎩ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏓᏕᏲᎲᏍᎬ ᎨᏆᏂ. ᎤᏚᎵᏍᎬ ᎢᎾ ᎢᏗᎾᏘ ᏧᎾᎳᏗ ᎾᏍᎩᏯ ᎾᏂᎥ ᏴᏫ ᎡᎶᎯ ᎠᏁᎮ. “ᎯᏣᏛᎦᏍᏓ ᎭᏩᏧ!” ᎨᏍᏗ ᎣᏍᏓ ᏯᎩᏰᎸ ᎤᏍᏗ ᎠᏣᏗ ᎨᏒ ᎠᏯ. ᎤᏣᏛ ᎢᏣᏓᏛᎥᏍᎬ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎡᏙᏓ ᏓᏰᏥᎸᏉᏔᏂ; ᎰᏩᏃ ᏍᎩᏍᏓᏩᏗᏙᎯ ᎨᏎᏍᏗ. ᎯᎠ ᏄᏪᏒᎩ; ᏓᎬᏯᏛᎦᏁᎵ ᎨᏧᎯᏍᏗᏍᎩ ᎾᏍᏉ ᎠᏂᎷᏨᎭ. ᎤᏁᏨᎩᏃ ᎠᏥᎦᏘᏗᏍᏗᏱ ᎡᎶᏛ ᎤᏤᎵ ᏗᎫᎪᏙᏗᏱ ᎠᏓᏁᎸᎢ. ᎾᏍᎩᏃ ᏦᏥᎦᏔᎭ ᎦᎾᏰᎢᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᏙᏥᏍᏗᏰᏗ ᏴᏫ; ᎠᎴ ᎬᏂᎨᏒ ᏃᏣᎵᏍᏗᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ; ᎠᎴ ᎤᏚᎩ ᎠᏋᎭ ᎬᏂᎨᏒ ᎢᏯᏉᎵᏍᏙᏗᏱ ᎾᏍᏉ ᏂᎯ ᏕᏣᏓᏅᏛᎢ. “ᏙᎩ ᎢᏳᏍᏗ?” ᎤᏛᏁ ᎰᎻ. ᎠᎦᏛ ᏚᎾᎧᏛ ᏚᎾᏓᏴᎳᏛ ᎤᏬᏗᎨᏍᏛ ᎤᏍᎪᎸ ᎠᏨᏍᏛ, ᏗᏂᎦᏙᎵ ᏗᎦᏁᎯ ᏃᎴ ᏧᎾᎴᎿᎸ ᏂᏚᏍᏛ. ᎠᏎ ᏯᏌᎩᏒ ᎤᎾᎵᏍᎪᏅ ᏧᏕᏘᏴᏓ ᎤᎶᏐᏅ, ᎡᏆ ᎨᏎ ᏲᎾ. ᏩᏕᎭᏲᎲ ᎨᏴ, ᎤᏩᎾᏕᏍᎩ ᎦᏙ ᎦᏲᏟ ᎤᏓᏓᏍᎬ ᎦᏄᎸ ᏃᎴ ᎦᏲᏟ ᏕᏧᎬ ᏧᏁᏃᏅᏗ ᏃᎴ ᎦᏲᏟ ᏤᏆ ᏅᏯ. ᎾᏍᎩᏍᎩᏂ Ꮎ ᏧᏓᏂᎸᏨᎯᏍᎩᏂ ᎤᏃᎮᎸᎢ ᎾᏍᎩ ᎤᏍᏓᏱᏛ ᎤᏁᎳᏅᎯ ᎬᏩᏥᎪᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏄᏍᏛᏰᏃ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ, ᎥᏝ ᎣᏏᏳ Ꮿ-ᎩᏰᎸᎭ; ᏄᏍᏛᏍᎩᏂ ᎠᏆᏚᎵᏍᎬᎢ ᎥᏝ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎰᎢ; ᎾᏍᎩᏍᎩᏂ ᏥᏂᏆᏘᎲᎢ, ᎾᏍᎩ ᏂᎦᏛᏁᎰᎢ. ᏙᏕᏣᏙᎠ? ᏍᎩᏃᎯᏏ ᏕᏣᏙᎥ.” ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ ᎣᎩᏙ ᏈᎩ, ᎾᏍᎩ ᎠᏯᏙᎯᎯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎡᏟᏯ; ᎤᎯᏐᏓᏁ ᏎᎦ ᎭᏫᏂ ᎤᎴᏁ. ᎨᏍᏗ ᎬᎩᏍᏕᏓᎵᏴᏍᏗ Ꮙ ᏱᎩ ᏏᏓᏁᎸ ᏕᎦᎦᏎᏍᏛᎢ, ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᎾᏁᎵᏍᎬ. ᎯᎢᏃ ᏗᏤ ᏚᎾᏔᏁ ᏃᏊ ᏣᎳᎩ ᎠᏰᎵ ᎡᎵᏊ ᏗᎪᏪᎵ ᏚᏂᎴᏴᎠᏁ ᎯᎠ ᏣᎳᎩ ᏗᎬᎪᎵᏰᏗ ᎠᎴ ᎤᏍᏙᎸᏍᏗ ᏂᎨᏒᎾ. ᎱᏂᎷᏣ ᏗᎦᎨᏓ ᏓᏃᏱᏁᎮ. ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᏗᏤᎵᏛ ᎤᏂᎯ, ᎠᏎᏃ ᎠᎾᏓᏙᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏕᎭᏓᏅᎡᎮᏍᏗ. ᏂᎯ ᎾᏍᏉ ᎢᏥᏫᏅ ᏕᏦᎯᏳᏎᏍᏗ ᏧᎾᏛᏐᏅᎯ; ᎥᎥ, ᏂᏥᎥᎢ ᏕᏣᏓᏙᎯᏳᏎᏍᏗ, ᎠᎴ ᎢᏣᏄᏬᏍᏕᏍᏗ ᎤᏓᏙᎵᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᎾᏢᏉᏗ ᏓᏡᏗᏍᎪᎢ, ᎤᎾᏓᏙᎵᏍᏗᏍᎩᏂ ᎬᏩᎦᏗᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏓᎵᏍᎪᎸᏓᏁᎰᎢ. ᏃᎴ ᎾᏍᎩᏯ ᏅᎪᎵᎬᎾ ᏥᏛᏦᏍᎪᎢ ᏅᏃᎯ ᏂᏥᏪᏎᎸ, ᏤᏍᏗ ᎭᏱᏍᎦᎢᎮᏍᏗ ᎡᎶᎯ, ᎯᏫᎾ ᎯᏍᎦᏰᎬᏍᏔ . “ᎠᎳᏑᎶᎢ. ᏚᏂᎳᏏᏕᎾ ᏚᏁᏍᏔᏁᎰ ᏱᏚᏂᎳᏑᏝ ᎠᏂᏴᏫᏯ.” ᎠᎴ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏂᎦᏛ ᎣᏏᏳ ᏕᎤᎸᏫᏍᏓᏏ; ᎤᎾᏛᎪᏗᏱ ᏂᏕᎬᏁ ᏧᏂᎵᎡᎾ, ᏧᏅᎨᏫᏃ ᎤᏂᏬᏂᎯᏍᏗᏱ. “ᎪᎱᏍᏗᏍ ᎠᏓᏍᎩᎵ ᏰᎪ ᎨᏒ” ᎨᎵᏍᎬ ᏃᏊ. ᎠᎴ ᎬᏂᏳᏉ ᎬᏩᎵᏃᎮᏔᏁ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎼᏏ ᎠᎴ ᎢᎳᏯᎨᏎᎢ, ᏅᎩᏃ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎡᎺᏅ ᎤᎾᏛᏅᎩ ᎡᎳᏗ ᏚᎾᏓᏅᏅᎩ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎡᎯ. ᎦᏲᏟ ᏚᏏᎳᏛᏅ ᏌᎳᏓ ᏚᎵᏛᏓᏁᎢ. ᎾᏍᎩ ᎾᏍᏉ ᏰᎵ ᎢᎦᏲᎦᏛᏁᏗ ᏥᏃᎬᏁᎸ ᏦᏠᎯᏍᏛᎢ; ᎥᏝ ᎠᏗᎾ ᏄᏍᏛ ᎪᏪᎸᎢ, ᎠᏓᏅᏙᏍᎩᏂ ᏓᏕᏲᎲᏍᎬᎢ; ᏄᏍᏛᏰᏃ ᎪᏪᎸ ᎠᏓᎯᎰᏉ, ᎠᏓᏅᏙᏍᎩᏂ ᎠᏓᏛᏂᏗᏍᎪᎢ. ᏂᎦᏗᎹᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏘᎦᎵᏍᏙᏓ ᏴᏫ ᏯᏕᎲᎦ ᎿᏉ ᎠᎦᏴᎵᎨ ᏱᎩ? ᏥᎪ ᏔᎵᏁ ᎤᏥᏏᏱ ᏫᏯᏴᎭ, ᏯᏕᎲᎦ? ᎠᏓᎾᏩᏍᏗᏍᎨᎢ ᏌᎳᏓ ᎠᎾᏓᏤᎵ ᏃᎴ ᏰᎵ ᎠᏍᎪᎵ ᎤᎵᎥᏂᎴ ᎦᏂᏓᏛ ᎠᏣᏗ...” “ᎭᎴᏫᏍᏔ!” ᎤᏨᏉᏕ ᏌᏌ ᎤᎵᏍᏕᎸᎲ ᏄᎵᏍᏔᏂᏙᎸ. ᎭᎦᏛ ᎤᏃᎮᏗ ᎨᏎ ᏣᎵ. ᎾᏍᎩ ᏳᏍᏗ ᎩᎶ ᎤᏓᏙᎵᏍᏗ ᎨᏎᏍᏗᎾᏍᎩᏯ ᎯᎠ ᎠᏲᎵ, ᎾᏍᎩ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎾᎿ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎠᏎᏃ ᎥᏝ ᎾᏍᎩᏯ ᏥᏄᏍᏕ ᎠᏍᎦᏅᏨᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏱᏄᏍᏕ ᎬᏩᎦᏘᏯ ᎠᏓᏁᏗ ᎨᏒᎢ. ᎢᏳᏍᏕ ᎬᏩᎦᏘᏯ ᎠᏓᏁᏗ ᎨᏒᎢ. ᎢᏳᏰᏃ ᎠᏏᏴᏫ ᎤᏍᎦᏅᏨ ᎤᏂᏣᏘ ᏧᏂᏲᎱᎯᏍᏔᏅᎯ ᏱᎩ; ᎤᏟᎯᏳ ᎢᎦᎢ ᎤᏂᏣᏘ ᎤᏣᏘ ᎤᏂᎷᏤᎸ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᏓᏁᏗ ᎨᏒ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏏᏴᏮ ᎠᏍᎦᏯ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ. ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᎨᏒ ᏧᏁᎬ ᏕᎨᏥᏅᏁᎸᎩ ᏗᏄᏬ; ᎠᎴ ᎨᏥᏃᏁᎸᎩ ᎠᏏ ᏞᎦ ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒ ᎬᏂ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏙᎸᎯ ᎠᎴ ᎾᏍᏉ ᎠᎾᎵᏅᏟ ᏄᏂᎪᎸᎾ ᏂᎨᎬᏁᎸ, ᎾᏍᎩ ᏕᎨᏥᎸ ᎾᏍᎩᏯ ᎤᏅᏒ ᏂᎨᎬᏁᎸᎢ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏤᏯᏔᎮᏍᏗ ᎠᎪᏙᏗ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ ᎤᎾᏤᎵᎦ. ᎪᏪᎵᏰᏃ ᎯᎠ ᏂᎦᏪᎭ, ᎩᎶ ᎾᏍᎩ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᎤᏓᎵᎢ ᎢᎠᎨᎯᏙᎮᏍᏗ ᏧᏂᏏᏅᎯᏍᎩᏂᏃᏅ ᎢᎨᏎᏍᏗ, ᏅᏩᏓᎴᏃ ᎢᎠᏓᏰᎨᏍᏗ, ᎠᏓᏲᏁᎮᏍᏗ. ᎩᎶᏃ ᎠᏥᎨᎯᏙᎸᎯ ᎠᏓᏰᎨᏍᏗ ᎠᏓᏲᏁᎮᏍᏗ. ᏱᏗᎦᏘᏯ ᎣᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏄᏛᏁᏍᏗ ᎦᎾᏄᎪᏥᎸ ᎦᎸᏉᏗ ᎤᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ; ᎢᎾ ᎢᎦᏘ ᎦᏄᎸ ᎣᏁ ᏩᎦ ᎤᏂᏴᏍᏗ ᎤᎾᏩᏛᎮᎢ ᎠᏴᏈᏛᏅ ᎪᏪᎵ ᏗᎦᏃᏣᏝᏍᎩ. ᎠᎩᏲᏓᎩᎠ!” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎢᏳᏍᎩᏂ ᏂᏣᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎡᏥᏍᎦᏅᏤᎸᎢ, ᎥᏝ ᎾᏍᏉ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᏴᎨᏥᏙᎵᎩ ᎢᏥᏍᎦᏅᏨᎢ. ᎨᏍᏗ ᎪᎯᏓ ᎩᏁᏓᏍᏗ ᏱᎩ ᎭᏂ.” ᎾᏍᎩᏃ ᎯᎠ ᏥᏨᏲᏪᏁᎭ, ᎬᏂᏳᏉ, ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎥᏝ ᏱᎦᏥᎪᎥᏍᎦ. ᎦᏙ ᏃᎴ ᏴᏫ ᏃᎴ ᏂᎦᏓ. ᎤᏍᎦᏃᎳ ᎤᏓᎪᎵᏰᎡ ᏫᎵᎻ, ᎤᏍᎦᏃᎳ ᏭᎷᏤ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ. ᎤᎧᏛ ᎢᏣ ᎤᏅᏤ Perry. ᎠᏏᏉᏃ ᎤᏁᎷᎬᎩ ᎠᎴ ᏚᎾᏓᎡᎬᎩ ᏧᎾᏄᏬ ᎠᎴ ᎪᏍᏚ ᎤᎾᏕᏏᏙᎲᎩ; ᎠᏍᎦᏯ ᏓᏤᎸ ᎾᏍᎩ ᎾᏧᏁᏍᎨᎮᎢ, ᎠᎴ ᎭᏫᏂ ᏧᏍᎪᏎᎢ, ᎠᎴ ᎦᎫᏍᏛᏗ ᏅᏲᎯ ᏧᏝᏁᎢ; ᎤᏃᎱᎦᏅᏃ ᎡᏉᏂ ᎾᎿ ᎠᏓᏁᎸ ᎠᏍᏓᏱᏳ ᎬᏂᎵᎯᎮᎢ, ᎠᎴ ᎥᏝ ᎬᏩᏖᎸᏗ ᏱᎨᏎᎢ; ᏅᏲᎯᏰᏃ ᎦᎧᎮᎠᏍᎦᏯ ᏓᏤᎸ ᎾᏍᎩ ᎾᏧᏁᏍᎨᎮᎢ, ᎠᎴ ᎭᏫᏂ ᏧᏍᎪᏎᎢ, ᎠᎴ ᎦᎫᏍᏛᏗ ᏅᏲᎯ ᏧᏝᏁᎢ; ᎤᏃᎱᎦᏅᏃ ᎡᏉᏂ ᎾᎿ ᎠᏓᏁᎸ ᎠᏍᏓᏱᏳ ᎬᏂᎵᎯᎮᎢ, ᎠᎴ ᎥᏝ ᎬᏩᏖᎸᏗ ᏱᎨᏎᎢ; ᏅᏲᎯᏰᏃ ᎦᎧᎮᎢ. ᎡᏆ ᎠᏣᏗ ᏭᎷᏤᎴᎢ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎠᏯ ᎢᏳᏍᏗ ᏤᏣᎧᏃᏗ. ᎦᏰᎵᏍᏗ ᏳᎾᏛᏅᎢᏍᏗ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏄᏍᏗᏓᏅ ᏙᏰ, ᏃᎴ ᎦᎶᏇ ᏃᎴ ᏗᏍᏔᏲᏍᏙᏗ ᏳᎾᏛᏅᎢᏍᏗ, ᏰᎵᏉ ᏧᎾᏓᏟᏴᏗ ᏯᏁᎸᏔᏅ ᏗᎦᏅᎪᏫᏍᏗ, ᎠᏓᏅᏖᏗ ᎢᎬ ᎾᏕᏅ ᎠᏁᎲ ᎦᏚᏏ, ᎠᏂᎦᏲᏟ ᎠᏁᎭ ᎠᏂᏳᏩᏁᎦ, ᏫᎦᎷᎯᏍᏗ ᏱᎨᏒᎾ ᎤᎾᏗᏍᎦᎶᏗ ᏃᎴ ᏫᎬᏴᏍᏗ ᏱᎨᏒᎾ, ᎠᎦᏗᏛ ᎠᏛᏍᎩ ᎤᎾᏗᏍᎦᎶᏗ. ᎤᏘᎷᎾ, ᎾᎥᏂ ᎯᎦᏙᎨ ᎰᎻ ᏔᎷᎩᏍᎩ ᎪᏱᏂᏓᏍᏗ ᎪᏱᏁ ᎤᎦᏃᏩ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏛ, ᎣᎯᏍᏙᏗ ᎤᏓᏅᏔᏕᎢ. ᎨᏍᏗ ᎯᎸᎯᏳ ᏱᎦᎷᎪᎢ ᎾᏍᎩᏯ ᎤᎾᎵᎢ ᏃᎴ ᏍᎩᏲᏍᏓ ᏗᎪᏪᎵᏍᎩ. ᏓᏓᎿᏩᏍᏛ ᎢᏧᎳᎭ ᎦᎶᏁᏛ ᏙᎩᎾᏛᏅ; ᎠᏎᏃ ᎠᏴ ᎬᏃᏛ ᎢᎩ, ᎥᏝᏍᎩᏂᏃᏅ ᎿᏉ ᎠᏴ ᏱᎩ, ᎦᎶᏁᏛᏍᎩᏂ ᎬᏃᏛ ᎠᎩᏯᎠ; ᏄᏍᏛᏃ ᎿᏉ ᎦᎴᏂᏙᎲ ᎠᏂ ᎤᏇᏓᎵ ᎨᎥᎢ, ᎦᎴᏂᏙᎭ ᏥᏯᎵᏍᎦᏍᏙᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ; ᎾᏍᎩ ᎠᎩᎨᏳᎯᏳ ᏥᎨᏒᎩ, ᎠᎴ ᎤᏩᏒ ᏥᏚᏓᏲᏎ ᎠᏴ ᎠᎩᏍᏕᎵᏍᎬᎢ. ᎠᏆᏚᎵᏰᏃ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏂᎦᎥ ᏥᎩᎵᏲᎬ ᎦᏟᏂᎬᏁᎲ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎴᎣᏗᏏᏯ ᎠᏁᎯ, ᎠᎴ ᎾᏂᎥᏉ ᎤᏂᎪᎲᎯ ᏂᎨᏒᎾ ᎠᏆᎧᏛ ᎠᏂ ᎤᏇᏓᎵ ᎨᏒᎢ; ᎿᏉᏃ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎾᏓᏅᏒᎩ, ᏔᎵᏁ ᏙᏧᏁᏅᏒ ᏭᏂᎶᏒᎩ. ᎠᏦᎭᏴ ᎾᎥᏂ ᎤᏬᏢ ᎠᎵᏥᏙᎲᏍᎩ, ᎧᏁᏌᎢ ᎤᏏᏩ ᎠᏓᏴᏍᏔᎩᏍᎩ ᏗᏥᏍᏔᏅ ᏗᎦᎶᏔᏅ ᎤᏌᎲ ᎤᎦᏎᏂ. ᏂᎦᎥ ᎠᏓᏂᏆᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎧᎾᎸᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎿᎸᎯ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎢᏴᏛ ᎢᎬᏁᏗ ᎨᏎᏍᏗ ᎢᏤᎲᎢ, ᎤᎵᏠᏯᏍᏕᏍᏗ ᏂᎦᎥ ᎤᏐᏅ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏙᏓᏦᎵᏍᏔᏂ ᏄᏍᏛ ᎠᎾᏓᏛᏍᎬᎢ. ”ᎠᎳᏂ, ᎪᎱᏍᏗ ᏂᎦᎵᏍᏓ,” ᎤᏛᏁ, ᏎᎦᎳᎯ. ᏍᎩᏴ ᎤᏴᎵᎴ ᎤᏙ ᎡᎳᏆᏗ. ᎤᏍᎦᏃᎵ ᎤᏩᏏᏃᎴ ᏓᏆᎴᎳ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏣᏄᏏ ᏃᎴ ᎰᎻ ᎤᎵᏗᏨ ᎠᎾᎢᏎᎢ. ᏧᏒᏓᎷᎩᏃ ᏓᏟᎶᏍᏗᏍᎨ ᏗᎧᏁᎢᏍᏗ ᎠᎴ ᎦᎵᏦᏕ ᎤᎧᎵᎡ ᏧᏬᏪᎳᏅ. ᏐᏉᎯᎭ ᎠᎾᎩᏠᏫᏍᎨ ᏓᏆᎴᎳ ᎠᏌᏅᏗ ᏃᎴ ᏚᏂᏍᏚᎩᏎ ᎧᏁᏌᎢ ᏚᎾᏕᏅ. ᏈᏓᏃ ᎤᏬᎴ ᎤᏜᏅᏛᎢ, ᎤᎷᏤᎴᏃ ᎠᏛ ᎯᎠ ᏄᏪᏎᎢ; ᏂᎯ ᎾᏍᏉ ᏍᏕᏙᎲᎩ ᏥᏌ ᎨᎵᎵ ᎡᎯ. ᎯᎠ ᎾᏍᎩ ᏓᎿᏩ ᏅᏛᏅᏁᎵ ᎤᏃᏕᎾ ᎠᎩᎾ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᏙᏛᏎᎪᎩᏏ ᎾᏍᎩ; ᎾᏍᎩᏰᏃ ᎤᏂᎬᏫᏳᎯ ᎠᏁᎲ ᎤᎬᏫᏳᎯ; ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏁᎲ ᎾᏍᎩ ᏄᎬᏫᏳᏌᏕᎩ; ᎠᎴ ᎾᏍᎩ ᎬᏩᏜᏩᏍᏗᏕᎩ ᏥᎩ ᎨᏥᏯᏅᏛ, ᎠᎴ ᎨᎦᏑᏰᏛ, ᎠᎴ ᏄᎾᏓᎵᏓᏍᏛᎾ. ᎠᏎᏃ ᎤᏂᏣᏘ ᎤᏂᎸᏉᏔᏁᎢ. ᏏᎻᏯᏂᏃ ᎣᏍᏛ ᏚᏁᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎺᎵ ᎠᏲᎵ ᎤᏥ, ᎬᏂᏳᏉ ᎯᎠ ᎾᏍᎩ ᎠᏲᎵ ᎠᏥᎧᏅ ᎾᏍᎩ ᎢᏏᎵ ᎠᏁᎯ ᎤᏂᏣᏘ ᏧᏂᏅᎢᏍᏗᏱ ᎠᎴ ᏧᎾᎴᎯᏐᏙᏗᏱ; ᎠᎴ ᎤᏰᎸᏛ ᎤᎾᏡᏙᏗ ᎠᏂᏬᏂᏍᎬᎢ. ᎾᏍᎩ Ꮎ ᏦᎯᏳᏒ ᏤᎳᏗᏍᏗᏍᎬᎢ ᎾᏍᎩ ᏱᏂᎬᏂᏒ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏓ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎢᏥᏯᎥᎢ ᏥᏌ ᎦᎶᏁᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᏍᎦᏥ ᏫᏍᎩ ᎤᏓᏅᏖᏗ ᎨᏎ ᎤᎵᏏᏂᏕᏅ ᎠᏆᏛᏅ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎪᎯ ᎢᎦ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎦᎷᎩ ᎠᏂ ᎠᏓᏁᎸᎢ, ᏅᏗᎦᎵᏍᏙᏗ ᎾᏍᎩ ᎾᏍᏉ ᎡᏆᎭᎻ ᎤᏪᏥ ᎨᏒᎢ. ᏥᎾ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᎠᎴ ᎠᏉᎳ ᎭᏟᏂᎬᏁᎸᎭ ᎩᏍᏕᎸᏗᏱ ᎠᎾᎢᏒᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏄᏂᏂᎬᏎᎲᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᎴ, ᎾᏍᏉ [ᎯᎠ ᏂᎦᏪᎭ] ᏂᎯ, ᏣᎬᏫᏳᎯ, ᏗᏓᎴᏂᏍᎬ ᎡᎶᎯ ᎦᎫᏍᏓᎥ ᏣᏁᎢ; ᎠᎴ ᎦᎸᎶᎢ ᏗᏦᏰᏂ ᏦᏢᏔᏁᎢ; ”ᏄᏓᎴ ᏅᎦᎵᏍᏓ!” ᎤᎵᏰᏔᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎤᏟᏍᏓ ᎤᎾᎩᎶᏫᏍᏗ ᎠᏂᏲᏍᎩ ᎤᏃᏒᎭ ᎠᎬᏱᏣ. ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎤᏄᏬᏍᏕᏍᏗ ᏓᎩᎵᏲᎢᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏂᎬᏩᎦᏔᎲᎾ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏄᏃᎯᏳᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ. ᎠᎾᎵᏅᏟᏍᎩᏂ ᏓᎾᏓᏰᎢᎵᏙᎭ ᎤᏅᏒ, ᎠᎴ ᎾᏍᎩ ᏚᏃᎸ ᏄᏃᎯᏳᏒᎾ. ᎦᎵᎡᎵᎬ ᏂᏚᏓᎴᏨ ᏕᎦᏚᎲ ᏬᎩᎶᎯᏍᏗ, ᏯᏆᎴᏫᏍᏔᎾ ᏑᏒᎯᏓ ᎠᎴ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᏯᏆᏣᏪᏐᎸᏍᏔᎾ ᏃᎴ ᏯᏆᎵᏍᏔᏴᎾ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎠᏜ ᎦᏩᏒᎩ ᎠᎪᎲᏍᏙᏗᏱ ᎤᎩᏒᎩ, ᎠᎴ ᎠᏥᎸ ᎤᎧᎵ-ᎢᏍᏔᏅᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏞᏛ, ᎠᎴ ᎡᎶᎯ ᏭᏗᏅᏒᎩ; ᏚᏃᏴᎳᏒᎩᏃ, ᎠᎴ ᎤᏴᏓᏆᎶᎥᎩ, ᎠᎴ ᎠᎾᎦᎵᏍᎬᎩ, ᎠᎴ ᎡᎶᎯ ᎤᎵᏖᎸᏅᎩ. ᎤᏂᏣᏘᏃ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎠᎴ ᎾᎿ ᏚᏅᏩᏅᎩ. ᎤᏂᏣᏘᏃ ᏔᎵᏁ ᏚᏂᎳᏫᏦᎴᎢ, ᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᏂᎤᏟᏍᏕ ᎦᏚ ᎤᏂᎩᏍᏗᏱ. ᎢᎬᏱᏗᏢᏃ ᏙᏓᎨᏥᎳᏫᏗ ᏂᎦᏗᏳ ᏄᎾᏓᎴᏒ ᏴᏫ, ᎠᎴ ᏙᏛᎦᎴᏅᏔᏂ ᎾᏍᎩᏯ ᎠᏫ-ᏗᎦᏘᏯ ᏥᏓᎦᎴᏅᏗᏍᎪᏧᏤᎵ ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ. ᎠᎹᏱᏃ ᏧᎾᏓᏅᏒ ᏧᏂᎿᎷᏒ, ᎤᎬᏫᏳᎯ ᎤᏓᏅᏙ ᎤᏘᎿᏫᏛᎮ ᏈᎵᎩ, ᎠᏳᎾᎦᏃ Ᏺ ᎿᏉ ᎣᏂ ᏳᎪᎮᎢ, ᎤᏩᏒᏰᏃ ᏩᎦᏛᎢ ᏭᎶᏎ ᎠᎵᎮᎵᎨᎢ. ᏥᏌᏃ ᏚᎴᎯᏌᏅ ᏑᎾᎴᎢᏳ ᎢᎬᏱᏱ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎢᎬᏱ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎠᏂᏍᎩᎾ ᏥᏚᏄᎪᏫᏎᎴᎢ. (ᏂᎦᏛᏰᏃ ᎬᏩᎪᎮᎢ, ᎠᎴ ᎤᎾᏕᏯᏔᏁᎴᎢ.) ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎵᏃᎮᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᎦᎵᏍᏗᏉ ᎢᏣᏓᏅᏓᏓ; ᎠᏴᏉ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ. ᏥᏍᏆ? ᏆᎴᏗ ᎯᎠ ᏄᏪᏒᎩ; ᏥᎪ ᎠᏴ ᏥᏧᏏ? ᏗᏣᏤᎵᎦ ᏴᏫ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏕᎨᏣᏲᏒ ᎦᏙ ᏣᏛᏁᎸ. ᏔᎵᏁᏃ ᎯᎠ ᏂᎦᏪᎭ, ᎢᏣᎵᎮᎵᎩ ᏗᏣᏓᎴᏅᏛ ᏴᏫ, ᏗᏣᎵᎪᎲᏏ ᏧᏤᎵ ᏴᏫ. ᎢᏥᏁᎫ, ᏝᏍᎪ ᎾᏍᎩ ᎦᏚᎢᏢ ᎡᎯ ᎤᏬᏢᏅᎯ ᎾᏍᏉ ᎭᏫᏂᏗᏢ ᎡᎯ ᏳᏬᏢᏁᎢ? ᏁᎵ!” ᎤᎴᏅᎮ. ᎿᏉᏃ ᏰᎵ ᎤᎾᎵᏍᏓᏴᏅ, ᎤᎾᏓᏌᎧᎲᏍᏔᏅᎩ ᏥᏳ, ᎤᏣᎴᏍᏗ ᎠᎺᏉᎯ ᏭᎾᏗᏅᏒᎩ. ᎠᏗᏙᏗ ᎬᏘ ᎤᏑᏰᎲ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏅᎭᏂᏍᏛ Perry, ᎡᎳᏗ ᏓᏳᏓᎴᏅ ᏭᎳᎩᏒ, ᎤᎪᏅ ᎪᏍᏔ ᎢᎬᏂᎨ. ᎦᏙᎨ ᎤᏍᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᏒ ᎯᎠ ᏄᏪᏎᎶᎢ, ᏥᎦᏘᏏᏗᏢ ᏦᎴᏍᏗ ᎬᏂ ᎨᏤᏍᎦᎩ ᎦᏍᎩᎶ ᏗᏣᎳᏏᏗᏱ ᏂᎦᏥᏴᏁᎸᎭ? ᎤᎿᏛ ᎢᎾ ᎤᏛᏒ ᎨᏒ ᎦᏅᎦᏟ ᏭᎶᏎ ᏩᎭᏯ. ᎿᏉᏃ ᎠᏂᏍᎩᎾ ᎬᏩᏄᎪᏤ ᎠᏍᎦᏯ, ᎠᎴ ᏏᏆ ᏫᎬᏩᏂᏴᎴᎢ; ᏑᎾᏓᏡᎩᏃ ᎠᏯᏄᎵᏳ ᎤᎾᎵᏎ ᏭᏂᎦᏐᎠᏎ ᎦᏁᏡᎩ ᎨᏒ ᎥᏓᎸ ᏭᏂᎷᏤ ᎠᎴ ᏚᏂᎬᏤᎢ. ᏃᎴᏍᏉ, ᎨᏍᏗ ᏱᏗᏥᏍᏆᏂᎪᏏ ᎭᏍᏕᏓᎵᏴᏒ ᏣᏓᏅᏖᏍᎬᎢ ᎰᎻ. ᎠᎴ ᏥᏳᎯ ᎤᎾᏣᏅᎩ ᎨᏆᏂ ᎢᏗᏢ ᏫᏚᏂᏐᎯᏍᏔᏅᎩ. ᎠᎴ ᎿᏉ ᎤᎵᏏᎬᎩ, ᎠᎴ ᏥᏌ ᎥᏝ ᏳᏂᎷᏤᎮᎠᎴ ᏥᏳᎯ ᎤᎾᏣᏅᎩ ᎨᏆᏂ ᎢᏗᏢ ᏫᏚᏂᏐᎯᏍᏔᏅᎩ. ᎠᎴ ᎿᏉ ᎤᎵᏏᎬᎩ, ᎠᎴ ᏥᏌ ᎥᏝ ᏳᏂᎷᏤᎮᎢ. ᎿᏉ ᎾᏍᎩ ᎤᏁᏎᎢ, ᎠᎴ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎯᎠ ᏄᏪᏎᎢ; ᏂᎦᏛᏃ ᎦᏚᎲ ᎠᏁᎯ ᎤᎾᏓᏟᏌᎮ ᎦᎶᎯᏍᏗᏱ. ᎣᏍᏓ ᏥᏯᏙᎴᏇᎸ Crockett ᎢᏳᏓᎵᎭ ᎠᏆᏗᏔᏍᏗ ᎠᎹ ᏫᏥᏂ ᏓᏳᏓᎴᏅ. ᏚᏂᏯᏪᏣ ᎠᎦᏍᎩ ᎠᏂᏙᎾᎥ ᎤᏂᏃᏕᎾ, ᎤᏂᏴᏍᏗ ᎱᏁᏅᏎ ᎤᏍᎦᏃᎵ. ”ᏥᏂᏓᏛ ᎯᎧᏁᎦ, ᎭᏩᏧ ᏧᏍᏆᏴᏍᏗ?” ᏥᏳ ᏃᎴ ᏧᏩᎩ ᏧᏆᎶᎦ ᏃᎴ ᏘᎵ ᎦᎳᎨᏴ ᎦᏙ, ᎤᏒᎯ ᏚᏩᏂᎦᏢ ᏫᏚᏓᏴᎳᏛ ᎨᏴ ᏍᎪᏁ ᏅᏲ. ”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ “ᎢᏳᏍᏗᏉ ᎤᏃᎯᏳᏗ?” ᎠᎫᏤᎵᎪ ᎠᏚᏓᎸᏙᏗ ᎩᎦ ᎢᏳᏟᏂᎩᏓ. ᎫᎾᏓᎴᎩ ᎤᏑᏯᎩᏒ, ᎤᏑᏯᎩᏎ ᎤᎩᏓᏟᏅᏯ - ᎤᏩᏌ ᏄᏪᏒ - ᎡᎳᏗ ᏭᏂᎶᏎ ᏭᏂᎷᎯᏍᏗ ᎠᏤᎯ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎡᏍᎦ ᎤᏂᏰᎸᏁ ᎠᎼ ᏭᏂᎶᎯᏍᏗ, ᏰᎵᏉ ᎠᎭᎾᏬ ᎠᏰᏍᏓ ᎦᏍᎩᎸ ᏯᎵᏍᏔᏴᎾ, ᎠᎴ ᎦᏆᎵ ᎢᏳᏍᏗ ᎠᏔᎴᎦᏒ ᏗᏗᎩᏍᏗ, ᎤᏬᏗᎨ ᎠᎹ ᎦᎶᏍᎬ ᎦᎸᎳᏗᏣ. ᎢᎳᏯ ᏴᏫᏉ ᎨᏒᎩ ᎠᏴ ᏂᎦᎵᏍᏓᏁᎲ ᎾᏍᎩᏯ ᎢᎬᏩᎵᏍᏓᏁᏗ ᎨᏒᎩ; ᎠᎴ ᎤᎵᏂᎩᏛ ᎤᏓᏅᏛᎩ ᎤᏓᏙᎵᏍᏔᏅᎩ ᎤᏔᏲᎸᎩ ᎤᎦᏃᏗᏱ ᏂᎨᏒᎾ; ᎰᏩᏃ ᏄᏚᎾᏅᎾ ᎨᏒᎩ ᎦᏙᎯ ᏦᎢ ᏧᏕᏘᏴᏛ ᏑᏓᎵᏃ ᎢᏯᏅᏙ ᎢᎪᎯᏛ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏍᎩᎾ ᏯᎩᏯᎠ, ᏥᎸᏉᏗᏉᏍᎩᏂ ᎡᏙᏓ; ᏂᎯᏃ ᎠᏴ ᎨᏍᎩᏐᏢᎢᏍᏗᎭ. ᎤᏢᏂᏕᎾ ᏥᎨᏐ ᎤᏟᏃᎮᏔᏁᎢ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎯᎠ ᏂᎬᏅ ᎪᏪᎵᎯ--ᎬᏂᏳᏉ ᏥᎲᎦ ᏌᏯᏂ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏅᏯ ᎠᏑᏰᏛ, ᎦᎸᏉᏗ, ᎠᎴ ᎩᎶ ᎾᏍᎩ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᎦᏁᎳᏅᎯᏰᏃ ᎠᏲᎩ ᎾᎬᏁᎴᎢ, ᎥᏝ ᎣᏏᏳ ᎤᏰᎸᏒ ᎢᏳᏍᏗ, ᎣᏏᏳᏍᎩᏂ ᎤᏰᎸᏅ ᎢᏳᏍᏗ ᎾᏍᎩ Ꮎ ᎾᏍᎩ ᎢᏳᏩᏁᎸᎯ, ᎤᏚᎩ ᎤᏮᏗᏱ ᎤᏰᎸᏅ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏦᎯᏳᎲᎦ, ᎢᏨᏒ ᏕᏣᏓᎸᏉᏗᏍᎬ ᏥᏕᏣᏓᏂᎸᎦ, ᏂᏥᏲᎲᎾᏃ ᏥᎩ ᎥᏓᏗᎸᏉᏙᏗ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏩᏒᎯᏳ ᏅᏓᏳᎵᏍᎪᎸᏙᏗ ᏥᎩ? ᎾᏍᎩ ᏥᎩᏲᎱᎯᏎᎴᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏱᏗᎵᎭ ᎠᎴ ᏂᏗᎵᎲᎾ ᏱᎩ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏫᎦᏕᏗᏱ ᎢᏳᎵᏍᏙᏗᏱ. ᏱᏂᎪᎯᎸᎾ ᏓᎦᎵᏬᏥ. “ᎭᏩ,” ᎤᎴᏅᎮ ᏲᎾ ᎤᏤᏍᏙ, ᏦᎩᏃᎯᏎᎸ ᎠᎾᏓᏤᎵ ᏚᏏᎳᏛ ᎬᏗ ᏥᎦᏂᏱᏍᎨ ᎠᏣᏗ. ᎣᎵᏩᏲᏃ ᎤᏌᎯᎸ ᎤᏬᎸᎢ, ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏓᏁᎸ ᏧᏳᎪᏗ, ᏈᏓ, ᎠᎴ ᏥᎻ, ᎠᎴ ᏣᏂ, ᎠᎴ ᎡᏂᏗ, ᎤᏅᏒ ᎨᏒ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᎴ ᏦᏓᏂ ᏍᎪᎾ ᏭᎶᏒᎩ, ᎾᎿ ᏣᏂ ᎢᎬᏱᏱ ᏚᏓᏬᎥᎢ. ᎾᎿᏃ ᎤᏪᏙᎸᎩ. ᎠᎴᏬ ᎢᏓᎵᏅᏟ, ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩ ᏥᏨᏯᎵᏥᏙᏁᎸᎩ, ᎠᎴ ᎾᏍᎩ ᎾᏍᏉ ᏥᏕᏣᏓᏂᎸᏨ, ᎠᎴ ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᏥᏕᏥᏂᏴᎭ; ᏂᎯᏃ ᎾᏍᏉ ᎢᏥᏃᎮᏍᎩ ᎨᏎᏍᏗ, ᎢᏧᎳᎭᏰᏃ ᎢᏕᏓ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ. ᎢᏳᏍᎩᏂ ᏱᏣᏕᏒᎾ ᎥᏝ ᏱᎦᎯᏍᎦᏅᎦ; ᎢᏳ ᎠᎴ ᎠᏛ ᏱᏚᏤᏅ ᎥᏝ ᏱᎬᏍᎦᏅᎦ. ᎠᏎᏃ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏇᏓᎵ ᎨᏒᎢ. ᎠᏎᏃ ᎤᏁᎳᎩᏉ ᎢᏨᏰᎵᏎᎭ. ᏗᎦᏙᎵ ᏓᏌᏬᎢᎮ. ᎠᏁᎸᏗᏍᎨᎢ ᏫᎵᎻ ᎤᏓᏅᏖᏗ ᏱᎨᏒᎾ ᎢᏳᏍᏗ ᏄᏪᏒ ᏥᏍᏕᏥ. ᎤᏛᏅᎢᏍᏖ ᎠᏰᎳᏍᏘ ᏃᎴ ᎦᎷᏯᏍᏘ, ᎾᏍᎩ ᏳᎷᏤᎸ ᎤᎵᏏᎩ ᎤᏓᏴᎳᏘ, ᏱᏚᏓᏲᏌ ᎬᏅ. “ᏃᏗ ᎠᏆᏛᏅᎢᏍᏔᏃᏂᏗ,” ᎤᏛᏁ ᎤᏥ ᎠᎾᎦᎵᏍᎩᏰᏃ ᏗᎧᎸᎬ ᏨᏗᎦᎾᏄᎪᎪᎢ, ᏭᏕᎵᎬᏃ ᎢᏴᏛ ᏥᏫᏗᎦᎸᏌᏓᏗᏍᎪᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎦᎷᏥᎸᎭ. ᏂᎦᏓ ᎠᏂᏴᏫᏯᎭ? ᎤᏛᏅ ᏗᎪᏪᎵᏍᎩ. ᎤᏔᎷᎩᏍᎩ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᏄᎵᏍᏔᏁᎮᎢ. ᎠᏌᎻᏗ ᏭᎾᏌᎾᎩᏒ ᏩᏏᏓᏂ ᎤᎾᏓᏍᎬ, ᎠᏂᎨᏴ ᏧᎾᏓᏍᎬ ᎢᏣ. ᎢᎬᏱᏱ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎠᎴ ᎤᎨᎲ ᏔᏅᏒᎩ ᎠᏥᎸ ᎠᎴ ᎤᏁᏍᏓᎳ ᎩᎬ ᎤᏓᏑᏱ ᎨᏒᎩ, ᎠᎴ ᎡᎶᎯ ᏫᏕᎨᎦᏗᏅᏒᎩ, ᎠᎴ ᏕᏡᎬ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᎪᏅᎩ, ᎠᎴ ᏂᎦᏛ ᎢᏤ ᎧᏁᏍᎦ ᎤᎪᏅᎩ. ᎿᏉᏃ ᎤᏨᏏᏗᏎᎢ, ᎠᎴ ᏓᏆᎴᎷᎯ ᎤᏣᎡᎢ, ᎠᎪᎵᏰᏍᎨ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ. ᎠᏯᏖᏅ ᎦᏙ ᏱᏭᏪᏙᎳ ᏲᎾ, ᏧᏗᎦᎶᎣᏏᏐ ᎡᎶ ᏄᎵᏍᏔᏁᎮ, ᎨᏍᏗᏰᏃ ᎪᎰᏍᏗ ᎫᏩᎴᏩᏍᏙᏙᏗ ᏱᎩ, ᎤᏏᏩᏉ. ”ᎠᎬᏱ ᎨᏒ, ᎨᏍᏗ ᏫᎬᎩᏴᏍᏗ ᏱᎩ ᏣᏴᏍᏗ, ᎨᏍᏗ ᏰᎵ ᎢᏯᏆᏕᏘᏴᏓ ᏱᎩ ᏩᏆᏓᎾᏫᏛᏗ ᎠᏦᏴ. ᏥᎻᏃ ᎠᎴ ᏣᏂ, ᏤᏈᏗ ᏧᏪᏥ ᎬᏩᎷᏤᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᏍᎩᎾᏚᎵᎭ ᎢᏍᎩᎾᏛᏁᏗᏱ ᏄᏍᏛ ᎢᏍᏛᏔᏲᏎᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏄᏂᏪᏒᎢ ᎣᏏᏳ ᎤᏂᏰᎸᏁ ᏂᎦᏛ ᎤᏂᏣᏘ ᎨᏒᎢ; ᎠᎴ ᎤᎾᏑᏰᏎ ᏍᏗᏫ, ᎠᏍᎦᏯ ᎤᎧᎵᏨᎯ ᎤᏬᎯᏳᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᏈᎵᎩ ᎠᎴ ᏉᎪᎳ ᎠᎴ ᎾᎨᎾ ᎠᎴ ᏔᎹᏂ ᎠᎴ ᏆᎻᎾ ᎠᎴ ᏂᎩ ᎥᏘᎣᎩ ᎡᎯ ᎠᏂᏧᏏ ᏧᎵᎪᏁᎸᎯ; ᏃᏉᏗ ᏚᏟᎷᏆᏗᏅᏎ. ᎤᏁᏒᏃ ᎪᏪᎵ, ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎠᎴ ᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎡᎳᏗ ᏓᎾᏓᏅᏅᎩ ᎠᎦᏔᎲ ᎤᏃᏕᎾ ᎠᎩᎾ, ᏗᏂᏁᎯᎭ ᎨᏒᎩ ᏗᎧᏃᎩᏍᏙᏗ, ᎠᎴ ᏗᏖᎵᏙ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᏗᎧᎵᎢ ᎨᏒᎩ ᎠᏜ ᎦᏩᏒᎩ, ᎾᏍᎩ ᎤᎾᏓᏅᏘ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᏥᎩ. ᎤᎾᏓᏙᎵᏍᏔᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏂᎯ ᏣᎬᏫᏳᎯ, ᏂᎦᏛ ᏧᏂᎾᏫ ᏘᎦᏔᎯ, ᎬᏂᎨᏒ ᏅᎦ ᎾᏍᎩ ᎯᎠ ᎠᏂᏔᎵ ᎨᏒ ᎾᏍᎩ ᎯᏯᏑᏰᏒᎢ, ᎾᏍᎩᏃ ᎢᏓᎵᏅᏟ ᎥᏝ ᎾᏂᎦᏔᎲᎾᏉ ᎨᏎᏍᏗ ᏱᏨᏰᎵᏎᎭ, ᎾᏍᎩ ᎤᏣᏘ ᎢᏳᏩᎫᏗ ᏓᏇᎪᏔᏅ ᏫᏨᎷᏤᏗᏱ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᎦᏔᏔᏅᎯ ᏂᎯ ᎾᏍᏉ ᎢᏤᎲ ᎠᎩᎪᏩᏛᏗᏱ ᎠᎩᏰᎸᏒᎩ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᏂᏐᎢ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ; ᎠᏎᏃ ᎪᎯ ᎢᏯᏍᏗ ᎠᏆᏓᏄᎴᎭ. ᎾᏍᎩ ᏤᏣᏓᏂᎸᎢᏍᏗᏱ ᎤᎬᏫᏳᎯ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏥᏚᏳᎪᏗ ᎢᏳᎾᏛᏁᏗᏱ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎾᏍᎩ ᎡᏥᏍᏕᎸᏗᏱ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎡᏥᏍᏕᎸᏗᏱ ᎤᏚᎵᏍᎬᎢ; ᎾᏍᎩᏰᏃ ᎤᏂᏣᏘ ᏧᏍᏕᎸᏛ, ᎠᎴ ᎠᏴ ᎾᏍᏉ ᎠᎩᏍᏕᎸᏛ. ᎾᏍᎩᏃ ᎢᏳᏃ ᎠᏴ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎭ, ᎥᏝ ᎠᏴ ᎿᏉ ᎾᏍᎩ ᏱᏂᎦᎦᏛᏁᎭ, ᎠᏍᎦᏂᏍᎩᏂ ᎾᏍᎩ ᏣᎩᏯᎠ. ᏯᏂᏍᏆᏂᎪᎳ ᏧᎧᎭᏲᏛ ᏩᏁᎢ ᏗᏍᏔᎷᏴᏓ ᏍᎩᎾᎾ ᏴᏫ. ᎾᏎᏫᏂᏴ ᎤᏣᏔᏅᎯ ᎠᎦᏙᏌᏂᏳ ᎨᏒ ᎠᎴ ᎠᎦᏔᎾᎢᏳ ᎨᏒ ᎤᏁᎳᏅᎯ! ᎾᎦᎥᏉ ᎬᎪᎵᏰᏗ ᏂᎨᏒᎾ ᏄᏍᏛ ᏕᎫᎪᏗᏍᎬᎢ, ᎠᎴ ᎤᏪᏓᏍᏗᏱ ᎨᏒ ᎦᎪᎷᏩᏛᏗ ᏂᎨᏒᎾ! ᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏥᏂᏥᏪᎭ ᎠᎵᏍᎪᎸᏔᏅᎯᏉ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ, ᎥᏝᏃ ᎠᏎ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᎤᎵᏁᏨᎯ ᏱᎩ. ᎠᎴ ᎾᎿ ᏥᏌ [ᎡᎲᎢ] ᎾᏍᎩ ᎠᏰᎵ ᎠᎴᎲᏍᎩ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᎾᎿ ᎩᎬ ᎠᏍᏚᏢᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏟ ᎢᏲᏍᏛ ᎠᏔᏲᎯᎯ ᏥᎩ ᎡᏍᎦᏉ ᎡᏈᎵ [ᎤᎩᎬ.] ᎩᎳᏋ ᏛᎾᏦᎥᏔᏂ ᏏᏆ ᏧᏄᎪᏙᏗ ᎠᎬᏱᏣ. ᎭᎾᎾ ᎤᎵᏍᎨᏓ ᎠᏓᏔᎶᎯᏍᏗ ᏂᏛᏅᏁᎵ. ᎠᏎᏃ ᏥᏌ ᎡᎳᏪᏱᏉ ᎨᏎᎢ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎢᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎬᎳᏲᏏ ᎤᏁᎳᏅᎯ ᎬᏂᏛ ᎯᏁᎢᏍᏙᏗᏱ, ᏍᎩᏃᎲᏏ, ᏥᎪ ᏂᎯ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ? ᎠᏂᏍᏚᎩᏒ ᎧᏁᏌᎢ ᏃᎴ ᎠᎾᏁᎸᏔᏅ ᎨᏣᎸᏗ ᎧᏁᏌᎢ, ᏕᎭᏓᏟᏴᎲ! ᎿᏉᏃ ᏓᎻ, ᏗᏗᎹ ᏧᏙᎢᏛ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎤᎾᎵᎪᎯ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ, ᎾᏍᏉ ᎠᏴ ᎢᏕᎾ, ᎠᏲᎱᏒᎭ ᎢᎦᏠᏯᏍᏔᏅᎭ. ᏠᎨᏏᏃ ᎾᏍᎩ ᎡᎳᏂᎬᎢ; ᎣᏍᏛ ᎤᎦᏔ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᏁᎯ; ᎤᏲᏃ ᏧᎵᏰᏁ ᎾᏍᎩ ᎤᏁᎫᏥᏛ ᏧᏪᏥ; ᎤᏁᎳᏅᎯᏍᎪ ᎠᏂᏧᏏᏉ ᎤᏅᏒ ᎤᎾᏤᎵᎦ? ᏝᏍᎪ ᎾᏍᏉ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎦ ᏱᎩ? ᎥᎥ, ᏧᎾᏓᎴᏅᏛ ᎾᏍᏉ ᏴᏫ ᎤᎾᏤᎵᎦ. ᎠᏎᏃ ᎨᏍᏗ ᎫᏩᎵᏍᏓᏴᏗ ᏱᎨᏎ ᏲᎾ ᎤᏤᏍᏙ, ᎩᎳ ᎤᏅᏗ ᎤᏗᏔᎲ ᏱᎩ ᏏᏆ. ᎤᏂᎸᏉᏔᏁᏃ ᎤᏁᎳᏅᎯ ᎠᏴ ᏅᏗᎦᎵᏍ-ᏙᏗᏍᎨᎢ. ᎡᏘᏴ, ᏍᎩᏄᏍᏛ ᏓᏃᏒᏍᎨ ᎦᏓ ᎦᏓᏍᎬᎢ ᏃᎴ ᏚᏂᏚᎲ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏱᎨᏥᎦᏘᎴᏅ ᏃᎴ ᎤᏂᏫᏒᏗ, ᎤᎾᎵᏍᎩᏍᏗ ᏃᎴ ᎤᎾᏁᏦᏗ ᏃᎴ ᎠᎹ ᏕᎨᏴ ᎤᎵᏍᎨᏗ ᎨᏒ. ᎠᏍᎦᏯ ᏔᎵ ᎢᏳᏓᎢ ᎤᏓᏅᏛᎢ ᎤᏁᏟᏴᏌᏘ ᎨᏐᎢ ᏂᎦᎥ ᏚᎸᏫᏍᏓᏁᎲᎢ. ”ᏣᏍᎪ ᏱᎧᎾᏬᎨᏍᏗ ᎤᏒᎯ? ᎤᏓᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎣᎦᎾ ᎢᎬᏓ ᎨᏎᎢ. ᎰᏪᎸᎦ ᎾᏍᎩ Ꮎ ᏥᎪᏩᏛ, ᎠᎴ ᎪᎯ ᎨᏒ ᏄᏍᏗᏕᎬᎢ, ᎠᎴ ᎣᏂ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ Ꮎ ᎠᏫᏍᎩ ᎥᏝ ᎪᎱᏍᏗ ᏱᎩ, Ꮎ ᎠᎴ ᎠᎹ ᎠᏍᏚᏟᏍᎩ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏁᏉᎢᏍᏗᏱ ᎢᎬᏁᎯ ᏥᎩ. ᎤᏟᏰᏃ ᎠᎯᏗᏳ ᎨᎻᎵ ᎤᎦᏛᎴᎯᏍᏗᏱ ᏴᎩ ᎦᏌᏁᎾᏛᏗᏱ ᎠᏃ ᎤᏪᎿᎢ ᏴᏫ ᏭᏴᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᏗᎨᏒᎢ. ᏃᏗ ᏒᏃ ᎤᏓᏱᏐᏚᎢᏍᏊ ᎠᏆᏍᎦᏱ ᎦᏱᏐᏃ ᏃᏗᏍᏊ ᏒᏃᏱ ᏫᎦᎢᏒ ᏙᏳᏍᏊ ᎠᏆᏍᎦᏱᏓ ᏫᎦᎢᏒ. ᎠᏎᏃ ᎤᏚᎩ ᎠᏋᎭ ᎤᎬᏫᏳᎯ ᏥᏌ ᎢᏳᏩᏂᏐᏗᏱ ᏗᎹᏗ ᏥᏅᏍᏗᏱ ᏗᏤᎲ ᏂᎪᎯᎸᎾ, ᎾᏍᎩ ᎠᏴ ᎾᏍᏉ ᎣᏍᏛ ᎠᎩᎦᎵᏍᏓᏗᏍᏗᏱ ᎦᏙᎴᎰᏒᎭ ᏂᏣᏛᎿᏕᎬᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎥᏝ ᏱᎪᎯᎩ ᎠᏂᏧᏏ ᎤᎾᏁᎶᏔᏅᎩ ᏅᏯ ᏗᎨᏨᏂᏍᏙᏗᏱ, ᏔᎵᏁᏍᎪᏃ ᎾᎿ ᏴᏛᎯᎶᏏ? ᏕᏫᏰᏃ ᏣᎬᏫᏳᎯ ᎪᏎᎭ; ᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ ᎤᏪᏥ ᎢᎩ? ᎠᏎ ᎩᎶ ᎤᏪᏅᏍᏗ ᎠᏏᎾᎯ ᏧᏬᏪᎶᏗ. ᎠᏴᏰᏃ ᏤᎩᎤᏍᏕᏎᎸᎯ, ᎤᏁᎳᏅᎯ ᎠᏓᏅᏙ ᎬᏗ ᎡᏓᏓᏙᎵᏍᏓᏁᎯ ᏥᎩ, ᎠᎴ ᎢᏓᎵᎮᎵᎩ ᎦᎶᏁᏛ ᏥᏌ ᎡᏓᎵᏍᎦᏍᏙᏛ ᎢᏳᏍᏗ, ᎠᎴ ᎤᏇᏓᎵ ᎨᏒ ᏂᎦᎵᏍᎦᏍᏙᏛᎾ ᏥᎩ. ᎾᎯᏳᏃ ᎡᎶᏛ ᎤᎾᏄᎪᏫᏏᏗᏎᎢ, ᎾᎯᏳ ᏒᏃᏱ ᏈᏓ ᎦᎵᎮ ᎠᏰᎵ ᎠᏂᏔᎵ ᎠᏂᏯᏫᏍᎩ ᏓᏂᏅᎬᎢ, ᏔᎵ ᏧᏓᏕᏒᏛ ᏓᎦᎸᏍᏕᎢ, ᎠᏂᎦᏘᏯᏃ ᎦᎶᎯᏍᏗᏳᎶᏗ ᎠᏂᏂ ᎠᏂᏯᏫᏍᎨ ᏗᏓᏍᏚᏗᏱ. ᎠᎴ ᎢᏣᎴᏂᏙᎲ ᎣᏍᏛ ᎨᏎᏍᏗ ᎠᏁᎲ ᏧᎾᏓᎴᏅᏛ ᏴᎾ, ᎾᏍᎩ ᎨᏣᏡᏗᏍᎬ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏥᎨᏦᏎᎭ, ᎾᏍᎩ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏂᎪᏩᏘᏍᎬ ᏱᏅᏓᎦᎵᏍᏙᏓ ᏯᏂᎸᏉᏓ ᎤᏁᎳᏅᎯ ᎾᎯᏳ ᎢᎦ ᏓᏩᏛᎯᎸᎭ. “ᎯᎠᏗ ᏥᎣᎵ ᎦᏚᎢᏣ ᎦᏯᎸᎪ,” ᎧᎵᏎᏥ ᎪᏒᏔᏅ ᎨᏂᏗ ᎢᏴ ᏄᏲᎢᏯ.” “ᏗᏂᏍᎬᎾᏕᏏ! ᏗᏂᏍᎬᎾᏕᏏ!” ᎤᏪᏢᎮ ᏩᎭᏯ. ᎥᏝ ᎪᎱᏍᏗ ᎤᏍᏗ ᎠᏓᎪᎵᏰᏍᎩ ᎢᏣᏢᏔᎲᎯ ᏱᎩ ᎾᏂᎥᏉ ᏴᏫ ᎢᎬᏩᎵᏍᏓᏁᏗ ᎤᏩᏒ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏄᏓᎵᏓᏍᏛᎾ, ᎾᏍᎩ ᎥᏝ ᎤᏁᎳᎩ ᏴᎨᏤᎵᏏ ᎠᏓᎪᎵᏰᏍᎩ ᎢᏥᎷᏤᏗᏱ ᏕᏣᎵᏂᎬᎬ ᎤᎶᏒᏍᏙᏗᏱ; ᎾᏍᎩᏍᎩᏂ ᎠᏓᎪᎵᏰᏍᎩ ᎢᏥᎷᏤᎲ ᏔᎵ ᎾᏛᏕᏍᏗ ᎾᎿ ᎦᏰᏣᏗᏫᏎᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏰᎵ ᎨᏣᏓᎵᏁᎯᏗᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏤᏣᏛᎦᏁᎸ ᎡᎦᏆ ᎣᏥᎨᏳᎢ ᎢᏧᎳᎭ ᎣᎩᏅᏏᏓᏍᏗ, ᏂᎯᏃ ᏥᏅᏗᎦᎵᏍᏙᏗ ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᎦᎶᏁᏛ ᎤᏅᏏᏓᏍᏗ. ᎾᏍᎩᏃ ᏂᎪᎵᎬᎾ ᏱᎩ ᎦᏛᎬ ᎦᏬᏂᏍᎬᎢ, ᏅᏆᏓᎴᏉ ᎾᏍᎩᏯ ᏱᎩ ᎠᏆᏓᏅᏖᏍᎬ ᎾᏍᎩ ᎦᏬᏂᏍᎩ; ᎠᎴ ᎾᏍᎩ ᎦᏬᏂᏍᎩ ᏅᏩᏓᎴᏉ ᎾᏍᎩᏯ ᏱᎩ ᎠᏴ ᏥᏯᏓᏅᏖᏍᎬᎢ. ᏓᏂᏓᎾᏆᏗᏍᎩ, ᎠᏎᏃ ᎢᏧᎳ ᎠᎾᏧᏉᏗᏍᎬ ᏚᏂᏍᏘᏰᎬ, ᎡᎳᏗ ᏥᏚᏂᎰ ᏗᏔᏍᎩᏍᎩ ᏗᏂᏍᎪᎵ ᎤᏤᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎠᏓᏅᏖᏍᎬ ᎦᏙᎴᎣᏍᎩ ᎠᎴ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎠᎩᎯ ᎢᎬᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᎬᏁᎮᏍᏗ ᎾᏍᎩ ᎯᎠ ᏥᏫᏨᏲᏪᎳᏁᎭ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎯ ᎨᏒᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏲᏪᎳᏏ ᎢᏦᎯᏳᎲᏍᎩ ᏚᏙᎥ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᎬᏂᏛ ᎢᏤᎲᎢ ᎨᏒᎢ, ᎠᎴ ᎢᏦᎯᏳᏗᏱ ᏚᏙᎥ ᎤᏁᎳᏅᎯ ᎤᏪᏥ. ᎿᏉᏃ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᎦᏛᏁᎵ? ᎠᏇᏥ ᏥᎨᏳᎢ ᏓᏥᏅᏏ; ᏯᏂᎸᏉᏓ ᏱᎩ ᎾᏍᎩ ᎠᏂᎪᎲᎭ. ᏙᏓᏆᏍᎬ ᎣᎩᎾᎩᎳᏩᏕᎬ, ᏙᏍᏔᎦᏁᎬ ᎠᎼ ᏤᏙ ᏥᏳ ᏧᎶᎯᏍᏗ, Chesapeake ᏃᎴ Ohio ᎠᎹ ᏧᎶᎯᏍᏗ. ᎠᎴ ᎢᏨᏔᏲᏎᎭ, ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᏗᏥᎦᏔᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ Ꮎ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎢᏤᎲᎢ, ᎠᎴ ᏗᎨᏣᏁᎶᏗ ᏥᎩ ᎤᎬᏫᏳᎯ ᏕᏣᏁᎶᏛᎢ, ᎠᎴ ᏥᎨᏣᏅᏓᏗᏍᏗᎭ; ᎾᎥᏂᎨ ᏭᎷᏤ ᎤᎦᏙᏍᏓᏁᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᎠᏲᏍᏗᏍᎨᏍᏗ ᏌᏉ ᎯᎠ ᎤᏍᏗᎧᏂ ᎤᎵᏁᏨᎢ, ᎠᎴ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏴᏫ ᏕᎨᏲᎲᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏍᏗᎧᏂ ᎠᎪᏎᎮᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎩᎶᏍᎩᏂ ᏓᎧᎿᏩᏕᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏓᏕᏲᎲᏍᎨᏍᏗ, ᎦᎸᏉᏗᏳ ᎠᎪᏎᎮᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏥᎷᏤᏗᏱ ᏂᎦᏛ ᎣᏍᏛ ᎩᎬ ᎡᎶᎯ ᎤᏤᏪᏨᎯ, ᎤᏓᏅᏘ ᎡᏈᎵ ᎤᎩᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᏤᎦᎳᏯ ᎤᎩᎬ ᏇᎵᎦᏯ ᎤᏪᏥ ᎤᏛᏍᏗ, ᎾᏍᎩ ᏤᏥᎸ ᎤᏜᏅᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏥᎸᏃ-ᎨᎳᏍᏗᏱ. ᎾᏍᎩ ᎾᎿ ᏥᏥᎩᎵᏲᎦ ᎥᏆᎸᏍᏗᏱ ᎢᏴᏛ, ᎤᏲ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩᏯᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵᎦ ᎧᏃᎮᏛ ᎥᏝ ᎦᎸᎸᎯ ᏱᎩ. ᎠᎴ ᏂᎦᏛ ᏕᎨᎦᏬᏍᎨ ᎤᏣᎩᎸ ᎠᎴ ᎠᎺᏉᎯ ᎼᏏ ᎬᏩᎵᎪᏁᎮᎢ. ᎤᏩᏌ ᏧᏤᎵ ᏴᏫ ᎫᏩᎨᎯᏒ ᎠᏙᎯ ᎾᏍᎩᏯ ᎢᎾᎨ ᎡᎯ ᏏᏆ. ᏕᏣᏓᏙᎯᏳᎲᏍᎨᏍᏗ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎤᏁᎳᏅᎯ ᎡᏥᎾᏰᏍᎬᎢ. ”ᏒᎦᎾᏲᎪ!” ᎤᏛᏁ ᏫᎵᎻ, ᎡᎳᏗ ᏫᏚᎧᎾᏁ ᏗᎦᎵᏦᎯᏓ ᏗᎦᏅᏍᎨᏂ, ”ᎨᎵᎠ ᎨᏍᏗ ᎦᎵᏉᎩ ᏱᏂᏚᏓᏓᏍᎦ ᏗᏥᏅᏍᎨᏂ.” ᎤᏓᏅᏘ ᎬᏗᏍᎬ ᏱᎩ ᏕᎨᏲᎲᏍᎬ ᎬᏩᏡᏗᏍᎩ; ᎤᏚᎩ ᏳᏩᎭ ᎤᏁᎳᏅᎯ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏧᎾᏓᏂᎸᎢᏍᏗᏱ ᎤᏙᎯᏳᎯ ᎨᏒᎢ; ᎤᏃᎵᏍᏗᏱ ᏧᎾᎵᏏᎲᏎᎸᎯ, ᎤᎾᏞᏛ ᎾᎿ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᎠᎴᏂᏓᏍᏗᏱ, ᎾᏍᎩ ᎾᏂᎦᏔᎾᎥᎾ ᎨᏒ ᎢᏳᏩᏂᏌᏛ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏧᏂᎾᏫ ᏗᏍᏓᏱᏳ ᎨᏒᎢ. Ꭷ, ᏦᏈ ᎭᏓᏅᎵ, ᎠᎴ ᏫᏯᏅ ᏌᏩᏂ ᏈᏓ ᏧᏙᎢᏛ; ᎾᏍᎩ ᎤᏬᎳ ᏌᏩᏂ ᏗᏑᏫᏍᎩ ᎦᏁᎸᎢ ᎠᎹᏳᎶᏗ, ᎾᏍᎩ ᎦᎷᏨᎭ ᏓᏣᏬᏁᏔᏂ. ᎬᏂᏳᏉ, ᎠᏧᏏ ᏕᏣᏙᎥ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏣᎵᏍᎦᏍᏙᏗ, ᎠᎴ ᎯᏯᏢᏆᏍᏙᏗ ᎤᏁᎳᏅᎯ, ᎠᏰᎵ ᏧᎦᎴᏅᏓ ᎨᏎ ᎤᏍᏗᏰᎬ, ᎤᏁᎦ ᎠᏍᏗ ᎬᏘ ᎤᏬᏚᎢᏍᏕ. ᎥᏝ ᎢᏨᏲᏎᎭ; ᏂᎯᏍᎩᏂ ᏂᏗᏥᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ, ᏂᎦᏛ ᎾᏍᎩᏯ ᏓᏣᏗᏒᏂ. ᏴᏫ ᎤᎵᏏᎬ ᏣᏂᏅᎩ ᎤᏣᏘ ᎢᎦᎦᏘ ᎤᏂᎪᎲ, ᎾᏃ ᎠᏲᎱᎯᏍᏗᏱ ᎨᏒ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏓᏩᏗᏍᎬ ᏣᏂᏅᎩ, ᎢᎦᎦᏘ ᎤᏂᎾᏄᎪᏤᎸ. ᏧᏙᏓᏆᏓ ᎣᎭᏁ, ᎦᎷᏯᏍᏗ ᏚᏃᏴᎬ ᎤᏩᏌ ᎠᏛᎪᏗ ᎨᏒ, ᎠᏂᏲᏍᎩ ᏓᏂᎴᏴᏍᏗᏍᎬ ᏃᏥ ᏕᏧᎬ. ᏚᎴᏅᏃ ᎤᏪᏅᏎᎢ; ᎬᏂᏳᏉᏃ ᎠᏍᎦᏯ ᎢᏘᏱᏈ ᎡᎯ ᎠᏳᎾᎦ ᎠᏥᎸᏉᏗ ᎤᏁᏤᎸᎯ ᎬᏗᏏ ᎠᎨᏴ ᎤᎬᏫᏳᎯ ᎢᏗᎣᏈ ᎠᏁᎯ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᏂᎦᏛ ᎠᏕᎸ ᎤᎦᏘᏕᎯ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏔᏂᎸᎯ ᎨᏎ ᏥᎷᏏᎵᎻ, ᎠᏎᏃ ᎾᏍᏉ ᏱᏗᏧᎪᏗᎭ, ᏓᏇᎪᏔᏅ ᏑᏳᎪᏛ ᏱᎩ. ᎥᏝᏰᏃ ᎠᏋᏒᏉ ᏱᎩ, ᎠᎦᏴᎵᎨᏰᏃ ᏅᏛᎩᏅᏏᏛ ᎣᎩᎾᎵᎪᎭ. ᎢᏳᏰᏃ ᎤᏁᎳᏅᎯ ᏂᏚᎨᏳᏅᎾ ᏱᎩ ᏅᏁᎯᏯ ᏚᏩᏂᎦᎸᎢ, ᏂᎯ ᎾᏍᏉ ᏂᏣᎨᏳᏅᎾᏉ ᏱᎩ. ᎯᎠ ᏄᏪᏎᎢ, ᎡᎮ ᏗᎫᎪᏗᏍᏗ ᎢᎸᎯᏢ ᎦᏚᎲᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏂᎦᎾᏰᏍᎬᎾ, ᎠᎴ ᏴᏫ ᏂᏚᏁᎶᏛᎾ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏚᎩ ᎢᏨᏒ ᎾᏍᎩ ᎦᎸᎳᏗ ᏤᏣᏛᏅᎢᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏣᏛᎦᏅᎯ ᏥᎩ ᎾᎿ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛᏱ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙ ᏙᏓᏛᏁᎵ ᎯᎠ ᎠᏂᏍᎦᏯ, ᏄᏜᏏᏛᏒᎾᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎬᏂᎨᏒ ᏄᎾᎵᏍᏓᏁᎸ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎠᎴ ᎥᏝ ᏰᎵ ᏴᎨᏓᏓᏱᎦ. ᎥᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎯᎠ ᏥᏥᏃᎮᎭ. Perry ᏃᎴ ᏣᎵᏍᏙᏂ ᏯᎾᏓᏅᏍᎬᎾ ᏓᏂᎾᎡ ᏃᎴ Philadelphia, ᎠᎦᏗᏛ ᎩᎦ ᎠᏔᏍᎨᏍᎨ, ᏓᏖᎸᎮᏍᎨ ᏧᏬᏰᏂ ᎾᏍᎩᏯ ᎡᎶᎯ ᏥᎦᏂᏱᏍᎪ. ᎯᎠᏃ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎾᏂᎥᏉ ᎩᎶ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏚᏙᎥ ᎠᏅᏗᏍᎨᏍᏗ ᎠᏂᏔᏲᎯᎮᏍᏗ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᏣᏂ ᏥᏓᏓᏬᏍᎬᎩ ᎭᏢ ᏧᏓᎴᏁᎢ? ᎦᎸᎳᏗᏍᎪ, ᏴᏫᏉᎨ ᎠᏁᎲ ᏧᏓᎴᏁᎢ? ᎡᎳᏪᏱᏃ ᎤᎾᏓᏅᏖᎸᎩ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎢᏳᏃ ᎦᎸᎳᏗ, ᏲᎦᏛᏅ, ᎦᏙᏃ Ꮭ ᏱᎡᏦᎢᏳᏁᎢ? ᏲᎪᏏ. ᏂᎯ ᎡᏣᏃᎯᏎᏗ, ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᏧᏪᏥ ᏕᎦᎶᏗ ᏆᎾ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎦᏅᏙᏗ.” ᎤᏂᏄᎪᏨᏃ ᎤᏂᏩᏛᎮ ᎠᏍᎦᏯ ᏌᎵᏂ ᎡᎯ ᏌᏩᏂ ᏧᏙᎢᏛ; ᎾᏍᎩ ᎬᏍᎦᎢᏍᏓᎩ ᏄᏅᏁᎴ ᎤᏪᏅᏍᏗᏱ ᏧᏓᎿᏩᏛ. ᎠᎴ ᎥᏝ ᎠᏂᎦᏔᎯ ᏱᎨᏎ ᎠᏆᎧᏛ ᎾᏍᎩᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᏧᏗᏱ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏗᎬᏩᏁᎶᏗ; ᎤᏕᎵᏒᏍᎩᏂ ᎣᏓᏅᏛ ᎡᎯ ᏴᏫ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏲᎩ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏗ ᎠᎴ ᎤᏓᏅᏘ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏂᏍᎬ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏥᎩ. ᎣᎦᏛᎦᏅᏰᏃ ᎯᎠ ᏂᎧᏪᏍᎬᎩ; ᎾᏍᎩ ᎯᎠ ᏥᏌ ᎾᏎᎵᏗ ᏤᎲᎩ ᏛᏲᏍᏔᏂ ᎠᏂ, ᎠᎴ ᏓᎦᏁᏟᏴᏏ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎾᏍᎩ ᎼᏏ ᎢᎩᏁᎸᎯ. ᎾᏍᎩ ᎠᏓᏪᎵᎩᏍᎩ ᎠᎴ ᏧᎸᏌᏓ ᎠᏨᏍᏙᏗ ᎨᏒᎩ; ᏂᎯᏃ ᏞᎦ ᎣᏏᏳ ᎢᏥᏰᎸᏒᎩ ᎢᏣᎵᎮᎵᏍᏗᏱ ᎾᏍᎩ ᎢᎦᎤᏘᏍᏛᎢ. ᎯᎠᏃ ᎤᏆᎶᎦ. ᎦᏳᎳ ᏂᏚᏭᎪᏔᏁᎢ ᎤᎭᏴᏍᏗ ᏧᏪᏥ ᏗᎦᏅᏙᏗ --- ᏐᏉ ᎤᏩᏌ ᏰᎵᏉ ᎢᏳᎵᏍᏙᏗ ᎨᏎᎢ. ᏏᏅᏓ ᎢᎪᎯᏛ ᎯᎪ ᎢᎦ ᎠᎴᏂᏍᎩ. ᎠᏂᏐ ᏄᎾᏍᏛ ᎣᎯᏍᏙᏗ ᎤᎾᏓᏅᏖᏗ, ᎤᎵᏨᏓᏆᏓ ᏳᏗᏔ, ᎣᎯᏍᏙᏗ ᏍᎦᏥ ᏫᏍᎩ ᎤᎸᏉᏛ, ᎩᎶ ᏄᏓᎴᎯ ᏳᏩᏍᎦ. ᏧᏌᏬᎸ ᏚᎧᎵᏤ ᏗᎦᏙᎵ. ᎾᎿᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎤᏴᏩᏛᎲᎩ ᏥᏳ ᎢᏓᎵ ᎠᏂᏂᏒᎩ, ᎡᎵᎩᏱ ᎡᎯ, ᎾᎿᏃ ᏙᎩᏯᏅᎩ. ᎥᏝᏰᏃ ᏰᎵ ᎦᏲᎦᎵᏠᏯᏍᏙᏗ ᏱᎩ, ᎠᎴ ᏗᎦᏲᎦᏓᏟᎶᏍᏙᏗ ᏱᎩ ᏄᎾᏍᏛ ᎾᏍᎩ ᎤᏅᏒ ᎠᎾᏓᎸᏉᏗᏍᎩ; ᎾᏍᎩᏰᏃ ᎤᏅᏒ ᎠᎾᎸᏉᏗᏍᎩ; ᎾᏍᎩᏰᏃ ᎤᏅᏒ ᎨᏒ ᎤᏅᏒᏉ ᏄᎾᏍᏛ ᏓᎾᏓᏟᎶᏍᏗᏍᎬ, ᎠᎴ ᎤᏅᏒᏉ ᏄᎾᏍᏛ ᏓᎾᏓᏟᎶᏍᏗᏍᎬ, ᎠᎴ ᎤᏅᏒᏉ ᏓᎾᏓᏤᎳᏍᏗᏍᎬ ᎥᏝ ᏳᎾᏓᏅᏔ. ᎥᏝ ᏂᎯ ᎠᏴ ᏍᎩᏯᏑᏰᏛ ᏱᎩ, ᎠᏴᏍᎩᏂ ᏂᎯ ᎢᏨᏯᏑᏰᏛ, ᎠᎴ ᏕᏨᏯᎧᏅ ᎢᏤᏅᏍᏗᏱ ᎤᏁᏉᏨᎯ ᎢᏥᎾᏄᎪᏫᏍᏗᏱ, ᎠᎴ ᎤᏁᏉᏨᎯ ᎢᏣᏤᎵᎦ ᎦᎶᏐᎲᏍᎩ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎡᏥᏔᏲᏎᎮᏍᏗ ᎠᎦᏴᎵᎨᎢ, ᎠᏴ ᏓᏆᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎢᏥᏁᏗᏱ. ᏐᏉ ᎢᎦ, ᎤᏔᏂᏓ ᎨᏴ ᎠᏓᏬᏍᎬ, ᎤᎴᏅᎮ ᎠᎦᏍᎬ. ᎠᏎᏃ ᏧᏯᏪᎩ ᏄᏍᏛ ᏗᎧᏃᏗ ᎠᏌᎻᏓ ᏃᎴ ᏧᏁᎦ ᏗᎦᏙᎵ ᏃᎴ ᎤᏓᏅᏖᏗᏍᎬ ᏚᎷᏫᏍᏔᏁᎲ ᎠᏙᎯ, ᎤᏦᏍᏔᏁᎲ ᏃᎴ ᎤᏍᎦᏍᏓᏁᎲ. ᎢᏳ ᎠᎴ ᎤᏓᏅᏘ ᎤᏎᎦᏨᎯ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏂᏚᏁᎶᏛᎾ ᎠᎴ ᎠᏍᎦᎾᎢ. ᎤᏃᏕᎾᏰᏃ ᎠᎩᎾ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎠᏰᎵ ᏥᏄᏛᏅ ᏓᏳᏁᎶᎵ ᎠᎴ ᏙᏓᏳᎾᏘᏁᏏ ᎠᎹ ᎬᏂᏛ ᎠᎹ ᏙᏗᎦᏄᎪᎬᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏙᏓᎦᏅᎦᎸᎯ ᏂᎦᏛ ᏚᏂᎦᏌᏬᎸᎢ. “ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏌᎳᏓ. ᎿᏉᏃ ᎤᎴᏅᎮ ᎤᏍᎩᏅᏕᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏔᏁᎢ; Ꮭ ᏱᏥᎦᏔᎭ Ꮎ ᎠᏍᎦᏯ, ᎤᏛᏁᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏣᏔᎦ ᎤᏴᎳᏎᎢ. ᏚᎾᏓᏟᏴᎲ ᎤᏃᎴ ᎢᏳᏍᏗ ᎢᎦᏪᏍᏗ. ᎠᏎᏃ ᎤᏁᎷᏁ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᏍᏛᎥᎦ, ᎯᏯᏛᎥᎦ. ᎾᏍᎩ Ꮎ ᎾᏍᏉ ᎢᎩᏰᎸᏔᏅᎯ ᏥᎩ, ᎠᎴ ᎢᎩᏁᎸᎯ ᏥᎩ ᏗᎩᎾᏫᏱ ᎠᏓᏅᏙ ᎠᎦᏘᏗᏍᏙᏗ ᎨᏒᎢ. ᎿᏉᏃ ᎤᎵᏰᏅ ᎠᎴ ᎤᎦᏔᏔᏅ ᎾᏍᏉ ᎤᏲ ᎤᎾᏄᎪᏤᎢ. ᎠᏎᏃ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎾᏂᎦᏔᎥᎾᏉ ᎨᏎᏍᏗ ᏱᏨᏰᎵᏎᎭ ᎾᏍᎩ Ꮎ ᎤᏂᎵᏅᏨᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎤᏲ ᎢᏣᏓᏅᏓᏗᏍᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᏅᏩᎾᏓᎴ ᎤᏚᎩ ᏄᏅᏒᎾ ᎾᏍᎩᏯ ᏄᎾᏍᏛᎢ. ᎾᏍᎩ ᏗᏂᎰᎵ ᎠᏎ ᏗᎨᏥᏍᏚᏁᏗ, ᎾᏍᎩ ᎾᏂᎥ ᏏᏓᏁᎸᎯ ᎠᏁᎯ ᏗᏂᎦᏔᎲᏍᎩ, ᎾᏍᎩ ᏥᏓᎾᏕᏲᎲᏍᎦ ᏂᏚᏳᎪᏛᎾ ᏥᎩ ᏧᎾᏕᏲᏗᏱ, ᏧᎬᏩᎶᏗ ᎦᏓᎭ ᎤᏂᎬᎥᏍᎬ ᎢᏳᏍᏗ. ᎤᎾᏂᎩᏒᏃ ᎬᏂᏳᏉ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏅᏏᏛ ᏱᎰᏩ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᏦᏩ ᎠᏍᎩᏓᏍᎬᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎴᎲᎦ, ᎠᎴ ᏔᏘᏄᎦ ᎠᏲᎵ ᎠᎴ ᎤᏥ ᎠᎴ ᎭᎵᏘ, ᎢᏥᏈ ᏫᎶᎯ, ᎾᎿᏃ ᏪᎮᏍᏗ ᎬᏂ ᏫᎬᏁᏤᎸᎭ, ᎡᎶᏛᏰᏃ ᎠᏎ ᏛᏲᎵ ᎤᏍᏗ ᎠᏲᎵ ᎤᎯᏍᏗᏱ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏣᎸᎢᎮᏍᏗ ᎡᎶᎯ, ᎦᎸᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ; ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎢᏣᎸᎩᏍᎨᏍᏗ ᎡᎶᎯ ᎦᎸᎩᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ. ᎤᎦᏃᏫ ᎤᏃᎴ ᎤᏂᏃᎸᏔᏁᎢ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ. ᎠᏰᎵᏃ ᏕᎦᎧᎲ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗ [ᎦᏙᎬᎩ] ᎩᎶᎢ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩᏯᎢ, ᎤᏄᏩᎥᎩ ᏧᎳᏏᏕᏂ ᏂᏚᎸᎩ, ᎠᏓᏠᏍᏗᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎤᏓᏠᎲᎩ ᏗᎦᏅᏗᏱ ᏧᏳᎪᏗ. ᎾᏂᎥᏉᏰᏃ ᎩᎶ ᏣᏂᏔᏲᎯᎰ ᎨᏥᏁᎰᎢ; ᎩᎶᏃ ᏧᏲᎰ ᎠᏩᏘᏍᎪᎢ; ᎩᎶᏃ ᏥᏫᎬᏂᎰ ᎠᏥᏍᏚᎢᎡᎰᎢ. ᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᏂᏛᏗᏍᎬᎾ ᏱᎩ ᎬᏩᏟᏍᏗ ᎣᏍᏛ ᎤᏰᎸᏗ [ᎤᏁᎳᏅᎯ] ᏗᎩᎸᏫᏍᏓᏁᏗᏱ; ᎩᎶᏰᏃ ᎤᏁᎳᏅᎯ ᏱᎦᎷᏤᎭ ᎠᏎ ᏱᎦᎯᏳᎲᏍᎦ ᎡᎲᎢ, ᎠᎴ ᎾᏍᎩ ᏗᎫᏴᎡᎯ ᎨᏒ ᎤᎵᏂᎩᏛ ᎬᏩᏲᎯ. ᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ, ᏔᏕᏲᎲᏍᎩ, ᎣᏏᏳ ᎠᏂ ᏥᏕᏙᎭ; ᎠᎴ ᏦᎢ ᏫᏙᏥᎵᏦᏛᎦ; ᏌᏉ ᏂᎯ ᏣᏤᎵᎦ, ᏌᏉᏃ ᎼᏏ ᎤᏤᎵᎦ, ᏌᏉᏃ ᎢᎳᏯ ᎤᏤᎵᎦ. ᎦᎪ ᎯᎠ ᎠᏂᏔᎵ ᎤᏙᏓ ᎤᏁᏨ ᏄᏛᏁᎴᎢ? ᎢᎬᏱ ᏭᎷᏤᎸᎯ, ᎥᎬᏪᏎᎸᎩ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᏧᎾᏤᏌᏘ ᎠᏂᎨᏴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏩᏂᏴᎯᎭ ᏕᎨᏥᎪᏂᎭ. “ᎰᎻ,” ᎤᏬᏎᎴ ᎤᏰᎯ, “ᎤᏅᏗ ᏧᏂᏦᏴᏍᏗ ᎬᏗ ᏓᏥᏯᏬᎢ ᏏᏆ.” ᎿᏉᏃ ᏂᎦᏚ ᏫᏄᏕᏘᏴᎲ ᎣᏂ, ᏔᎵᏁ ᏥᎷᏏᎵᎻ ᎠᏇᏅᏒᎩ ᎣᏍᏕᎲᎩ ᏆᏂᏆ, ᎠᎴ ᏓᏓᏏ ᎾᏍᏉ ᎥᏥᏯᏘᏅᏒᎩ. ᎠᎴ ᎢᏓᎵᏅᏟ, ᎥᏝ ᎾᏂᎦᏔᎲᎾᏉ ᎨᏎᏍᏗ ᏱᏨᏰᎵᏎᎭ, ᎾᏍᎩ ᎾᏂᎥᏉ ᏗᎩᎦᏴᎵᎨ ᎤᎶᎩᎸ ᎭᏫᏂᏗᏢ ᎤᏁᏙᎸᎢ, ᎠᎴ ᏂᎦᏛ ᎠᎹᏉᎯ ᎤᏂᎶᏒᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ (ᎦᎶᏁᏛ) ᎡᎶᎯ ᎤᎾᏄᎪᏥᎸ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏥᎸ-ᎨᎳᏍᏙᏗ ᎠᎴ ᎢᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎥᏝ ᏰᎵ ᏱᏗᏣᏰᎸᏁᎢ, ᎠᏰᎸᏍᎩᏂ ᏍᏆᏛᏅᎢᏍᏓᏁᎸ. ᎢᎸᏍᎩᏃ ᏫᏄᏒᎸ ᏉᎳ ᎯᎠ ᏄᏪᏎᎸᎩ ᏆᏂᏆ; Ꭷ ᏔᎵᏁ ᏥᏙᏂᏩᏛᎱᎦ ᎢᏓᏓᏅᏟ ᏂᎦᎥ ᏕᎦᏚᏩᏗᏒ ᎾᎿ ᎩᎾᎵᏥᏙᏂᏙᎸ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᏫᎾᏙᎴᎰᎯ ᏄᎾᏛᎿᏕᎬᎢ. ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎤᎵᏁᏨ ᎠᏍᎦᏂ ᏁᎰ ᎡᎶᎯ; ᎠᏎᏃ ᎥᏝ ᎤᏂᏍᎦᏅᏨᎯ ᎨᏥᏰᎸᏗ ᏱᎩ ᎾᎿ ᏗᎧᎿᏩᏛᏍᏗ ᎾᎲᎾ ᎨᏒᎢ. ᎣᏍᏓ ᎣᎦᎵᎪ ᎣᎦᎵᏍᏔᏴᏅ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ. ᏂᎯ ᎠᏴ ᎢᎦᎵᎢ, ᎢᏳᏃ ᏂᎦᎥ ᎢᏨᏁᏤᎲ ᏱᏂᏣᏛᏁᎭ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎸᎯᏳ ᎢᏴᏛ, ᎾᏍᎩ ᎤᏣᏁ ᏥᏳᎯ ᎤᎾᎵᎪᏎ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎯᎠᏙ ᏂᏚᏪᏎᎴᎢ, ᏗᏗᏐᎩ ᎥᏓᎸ ᏍᎪᎾ ᏫᏗᎶᎯ. ᎠᎴ ᎤᏂᏴᏫᏛᎮ. ᏥᎪ ᏥᏍᎦᏅᎩ ᎡᎳᏗ ᏥᎾᏆᏓᏛᏁᎸ, ᏂᎯ ᎡᏥᏌᎳᏙᏗᏱ, ᎾᏍᎩ ᏂᏗᏨᎬᏩᎶᏓᏁᎸᎾ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎢᏨᏯᎵᏥᏙᏁᎸᎢ? ᎤᏓᏔᏅ ᎨᎵᏍᎩ ᎢᏳᏍᏗ ᎠᎩᎦᎷᏴ, ᏓᎩᎷᎬᏒ, ᏕᎦᏥᏌᏁᎸ ᏧᏃᏮ, ᎦᏚᎢᏣ ᎤᏬᏗᎨ ᏃᎴ ᎤᏍᏔᎦᏴᎯᏓ, ᎭᏫᏂ ᏩᎾᎢ, ᎭᎴᏉ ᎤᏩᎾᏬᏒ. ᎠᏎᏃ ᎤᏲᎱᏒ ᎦᏛᎬᎩ ᎾᏍᎩ ᏄᏪᏒ ᏥᏌ: ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᎦᎵᎲᏉ ᏦᏯᏪᏐᎵᎰ ᎦᏛᏓ ᎤᏁᎵᏒᎩ. “ᎩᎾᎵᎢᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᎾᏍᎩᏃ ᎯᎠ ᏧᏓᎴᏅᏛ ᎨᏒ ᎠᏴ ᏗᎦᏟᎶᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏲ ᎢᎩᎬᎥᏍᎩ ᎢᎦᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩᏯ ᎾᏍᎩ Ꮎ ᏧᏂᎬᎥᏍᎨᎢ. “ᏧᏫᎯᏢᎾᏃ. ᎤᎬᏫᏳᎯᏃ ᎤᏤᎵ ᎧᏃᎮᏛ ᏚᏰᎵᏎ ᎾᎿ ᏂᎬᎾᏛᎢ. ᎪᎯᏃ ᎢᏥᏙᎦ ᎢᎬᎩᏱᎵᏙᎭ, ᎠᎩᏍᏛᏗᎭ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏚᏚᎢᏍᏓᏁᎴ ᏦᎩᎦᏴᎵᎨᎢ; ᎠᏎᏃ, ᏂᎯ ᎨᏒ ᎢᏨᎨᏳᎢ, ᏅᏟᎯᏳ ᎣᏍᏛ ᎤᏚᎩ ᎢᏨᏴᎾᏁᎭ, ᎠᎴ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᎬᏩᎵ ᏔᎵ ᎤᏛᏗᏕᎬᎢ, ᎯᎠᏍᎩᏂᏃᏅ ᏃᏥᏪᎭ. ᏙᎯᏳᎮᏃ ᏚᏪᏍᏔᏁᎮ ᏚᎳᏏᏕᎾ Ꮎ ᏩᎭᏯ. ᎬᏂᎨᏒᏰᏃ ᏅᏓᏥᏴᏁᎵ ᏄᏣᏛ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗᏱ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᎪᎱᏍᏗᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏕᎯᎾᏄᎪᏫᏎᎭ ᏦᏥᎴᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎣᎦᏚᎵᎭ ᎣᎦᏙᎴᎰᎯᏍᏗᏱ ᎾᏍᎩ ᏄᏍᏛ ᎦᏛᎬᎢ. ᏔᎵᏍᎪ ᏅᎩ ᎢᏯᏂ ᏓᎩᏯᎬ ᎦᏣᏄᎳ, ᏗᎬᎩᏯᎩᏍᏗ ᏱᎨᏒᎾ ᏄᎵᏍᏔᎾ, ᏕᎦᎵᎡᏍᏗᏍᎬ ᎠᏰᎵ ᏧᏏᏫ ᏧᏯᏍᎦ, ᎢᏳᏓᎵᎭ ᎦᏗᏔᏍᎬ ᎠᏗᏔᏍᏗ, ᎦᏓᏅᏔᏗᏘᏍᎬ ᏄᏍᏆᏂᎦᏛ ᎠᎵᏍᏔᏴᏗ. ᎤᏛᏅ ᎠᏓᏅᏖᎵᏙ. ᏂᎦᏓ ᎬᏔᏂᏓᏍᏗ ᎦᏓᏁᎯ ᎨᏎᎢ. ᎠᏍᏓᏯ ᏧᏂᏴᎯ ᏄᏓᎵᏍᏛᎾ ᎧᏃᎮᏛ ᎾᏍᎩᏯ ᎠᎨᏲᏅᎢ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᏰᎵᏉ ᏗᎬᏩᏬᏁᏙᏗ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒ ᎬᏗᏍᎬᎢ; ᎠᎴ ᎬᏩᎾᏙᎯᏳᎾᏁᏗ ᎢᎬᏩᏁᏗ ᏗᏂᎦᏘᎴᎩ ᎨᏒᎢ. ᏣᏂ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏴᏫ ᎥᏝ ᎪᎱᏍᏗ ᏴᎬᏩᏛ ᎬᏂ ᎦᎸᎳᏗ ᏅᏓᏰᏥᏁᎸᎯ ᏱᎩ. ᎯᎠ ᎾᏍᎩ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎥᏝ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ, ᎡᎶᎯᏉᏍᎩᏂ ᎡᎯ ᎠᎴ ᎤᏊᏓᎸᏉ ᎡᎯ ᎠᎴ ᎠᏍᎩᎾ ᎢᏳᏍᏗ. ᎡᏆᎭᎻ ᎡᏏᎩ ᎤᏕᏁᎴᎢ; ᎡᏏᎩᏃ ᏤᎦᏈ ᎤᏕᏁᎴᎢ, ᏤᎦᏈᏃ ᏧᏓ ᎠᎴ ᎾᏍᎩ ᎠᎾᏓᏅᏟ ᎬᏩᏕᏁᎴᎢ; ᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏚᏂᏪᏎᎸᎩ, ᎤᏣᏔ ᏱᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎡᏙᏙᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎸ; ᎦᏙ ᎤᏍᏗ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎩᏍᏛᏗᎠ ᏅᏯ ᏥᏕᏍᎩᏴᏂᏍᏗᎭ? ᎨᏍᏗ ᏳᏣᏅᏓᏕᎸ ᎤᏗᏍᎦᎶᏗ, ᏚᏥᏝᏁ ᏧᎬ ᎾᎥᏂ ᏯᏓᏅᏍᎬᎾ. ᎾᎿᏃ ᏑᏕᏘᏴᏛ ᏑᏓᎵᏃ ᎢᏯᏅᏙ ᎤᏪᏙᎸᎩ, ᏓᏕᏲᎲᏍᎬᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎾᎿ ᎠᏁᎲᎢ. ᎦᎵᏦᏕ ᏳᏪᎾ, ᎡᎨ ᏍᏉ ᏫᎵᎻ. ᎺᎵᏃ ᏦᎢ ᎢᏯᏅᏙ ᎢᏴᏛ ᎵᏏᏱ ᎤᏕᏁᎢ, ᎩᎳᏃ ᎤᏩᏒ ᏧᏪᏅᏒ ᏫᎤᎶᏎᎢ. ᎠᏰᏙᎳᏛᏗᏃ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᏛ ᎤᏓᏣᎦᎸᎮ ᏔᎵ ᏄᏓᏕᎢ, ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᏛ ᎡᎳᏗ ᏩᏍᏗ. ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎾᏍᎩ ᎣᏤᎯ ᎤᏁᏅᏒᎩ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᏭᏂᏩᏛᎮ ᎾᏍᎩᏯ ᏄᏍᏕ ᎠᏂᎨᏴ ᏄᏂᏪᏒᎢ; ᎾᏍᎩᏍᎩᏂ ᎾᎥᏝ ᏳᏂᎪᎮᎢ. ᎠᎴ ᏞᏍᏗ ᎡᎶᎯ ᎠᏂᎮ ᏄᎾᏍᏛ ᏱᏂᏨᏍᏕᏍᏗ; ᏗᏣᏓᏁᏟᏴᏛᏍᎩᏂ ᎨᏎᏍᏗ ᏗᏤ ᎢᏗᎬᏁᎸᎯ ᎨᏒ ᏕᏣᏓᏅᏛᎢ, ᎾᏍᎩ ᎨᏥᎪᎵᏰᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎣᏍᏛ ᎨᏒᎢ, ᎠᎴ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎧᎵᎢ ᎨᏒᎢ. ᎿᏉᏃ ᏎᏓᏂ ᎤᏴᏎᎴ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎨᎳ ᎨᏎ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒᎢ. ”ᎨᏍᏗ ᏍᏗᎬᏓ ᏱᎨᎵᎠ,” ᎤᏛᏁ ᎡᎶᏗ. ᎩᎶᏍᎩᏂᏃᏅ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎾᎿ ᎡᎮ ᏌᏩᏂ ᏧᏙᎢᏛ ᎾᏍᎩ ᎾᎿ ᎦᏚᎲ ᎠᏙᏅᏗ ᏧᎸᏫᏍᏓᏁᎸᎯ ᎨᏎᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᏓᏅᏓᏗᏍᏔᏅᎯ ᎨᏎ ᏌᎺᎵᏱ ᎠᏁᎯ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏥᎸᏉᏗ ᎠᏤᎸᏍᎨᎢ. ᎢᏳᏃ ᏗᎨᏣᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎯᎠ ᎢᎳᏯ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ. ᏝᏃ ᎢᏳᏬᎯᏤ ᏂᎦᏓ ᏣᎳᎩ ᏗᏂᎪᎵᏰᏍᎩ ᏄᎵᏍᏔᏁ. ᎿᏉᏃ ᎾᏍᎩ ᎤᎾᏛᎦᏅ ᏧᏂᎾᏫᏱ ᏚᏂᏣᏲᎴᎢ; ᎯᎠᏃ ᏂᏚᏂᏪᏎᎴ ᏈᏓ ᎠᎴ ᎠᏂᏐᎢ ᎨᏥᏅᏏᏛ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎦᏙ ᏓᏲᏣᏛᏁᎵ? ᎤᏍᎦᎣᏅ ᎨᏎᎢ ᏫᎵᎻ. ᎢᏳᏰᏃ ᏗᎩᎾᏫ ᎢᎩᏍᎦᏅᏨ ᏱᏗᎫᎪᏗᎭ, ᎤᏁᎳᏅᎯ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏗᎩᎾᏫ, ᎠᎴ ᎠᎦᏔᎯᏳ ᏂᎦᎥᎢ. ᎠᎴ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎤᎵᏂᎩᏛ ᏕᏣᏓᎨᏳᏎᏍᏗ; ᎠᏓᎨᏳᏗᏰᏃ ᎨᏒ ᏓᎫᏢᏂ ᎤᏣᏘ ᎢᏯᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ. ᎢᎸᏍᎩ ᎢᏯᏓᏁᎸ ᏓᎾᏠᏏᎯᎲ ᏗᏓᏴᎳᏛᏍᎩ ᏧᎾᎦᏙᏍᏔᏂᏢᎢ. ᎦᏲᏟᎨ ᏄᏍᏕ ᎩᎦ. ᎠᏍᎦᏯᏰᏃ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᎢᏯᎬᏁᎸᎯ ᎠᏥᏅᏩᏅᎯ ᎤᎶᏒᏍᏗ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᏱᎰᏎᎢ. ᎤᏙᏓᏆᏓ ᏓᏟᏰᎵᏙᎲ ᎡᏓᏍᏗ ᎤᎨᏓᎵᏴ ᎨᏴ ᏃᎴ ᏩᏯ. ᎢᏳᏃ ᎾᏍᎩ ᏂᏓᏛᏓᏍᏓᏁᎲᎾᏉ ᎢᎨᏎᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎯᏃᎲᏍᎨᏍᏗ; ᎢᏳᏍᎩᏂᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏂᏓᏛᏓᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᏅᏩᏓᎴᏉ ᏴᏫ ᎠᎴ ᎠᏰᎵᏉ-ᎠᏕᎸ ᎠᎩᏏᏙᎯ ᎾᏍᎩᏯ ᎯᏯᏓᏅᏖᏍᎨᏍᏗ. ᏚᏅᏎᏃ ᎤᎾᎵᏥᏙᏅᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏤᏂᏢᎩ ᏧᏂᏅᏬᏗᏱ ᎢᎦᏃ ᏄᎵᏍᏔᏅ ᎥᏝ ᎤᏍᏗᏉ ᏳᎾᏕᏯᏔᏁᎴ ᎠᏂᏯᏫᏍᎩ ᎾᏍᎩ ᏈᏓ ᏫᏄᏛᏁᏔᏅᎢ. ᎠᏴᏍᎩᏂ ᎤᏙᎯᏳᎯ ᏚᏳᎪᏛᎢ; ᎠᏴᏰᏃ ᏕᎩᏂᎸᏫᏍᏓᏁᎸ ᏚᏳᎪᏛ ᎩᏂᏍᏛᏗᎭ, ᎯᎠᏍᎩᏂ ᎥᏝ ᎪᎱᏍᏗ ᎤᏣᏘᏂ ᎢᏳᏛᏁᎸᎯ ᏱᎩ. ᎠᎴ ᏕᏥᎦᏘᏴ [ᎤᏁᎳᏅᎯ] ᏧᏤᎵᎦ ᏞᏍᏗ ᎤᏂᎬᏫᏳᎯ ᎾᎾᏛᏁᎲ ᏱᏂᏣᏛᏁᎮᏍᏗ, ᎦᎨᏣᏕᎶᏉᎡᏗᏍᎩᏂ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᎾᏓᏡᎬᎢ. ᏗᏂᏲᎵᏰᏃ ᎠᏏ ᎾᎾᏕᎲᏍᎬᎾ ᎨᏎᎢ, ᎠᎴ ᎠᏏ ᎪᎱᏍᏗ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ ᎾᎾᏛᏁᎲᎾ ᎨᏎᎢ, ᎾᏍᎩ ᎤᏓᏅᏖᎸ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏧᏑᏰᏍᏗ ᎨᏒ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᏗᏯᏂᏍᎩ ᎤᏓᏅᏖᎸᎢ; ᎾᏍᎩᏃ ᎿᏉ ᎤᏂᏃᎮᏗᏱ ᏚᏂᎳᏫᏤ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ. ᏕᏣᏅᏓᏗᏍᎨᏍᏗ ᏗᎨᎦᎸᎢᏛ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎢᏧᎳᎭ ᏥᏕᏣᎸᎣᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᏲ ᎢᎨᎬᎾᏕᎩ, ᎢᏨᏒᏰᏃ ᎾᏍᏉ ᎠᏰᎸ ᎢᏤᎭ. ᎠᎴ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᏙᏓᎦᎴᏔᏂ ᏓᎬᏔᏂ ᎤᏩᏒ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ. ᎯᎳᏳᎢ ᏍᎩᎾᏃ ᏱᏄᎳᏍᏓᎾ, ᏍᎩᎾ. ᏣᎧᏔᎮ ᎠᏂᏣᎳᎩ ᏧᏆᎶᎩ ᏓᎾᎪᎰᏍᏗᏍᎬᎢ ᎣᎴ ᏘᎵ ᎭᏂᎳᎨᏴᎢ ᎡᎳᏗ. ᏂᎦᎥ ᎢᎬᏩᏛᏁᏗ ᎨᏒ ᎾᏛᎦ; ᎢᎬᏱ ᎦᏰᎯ ᎦᎷᎩ ᎤᎶᏁᏗᏱ ᏥᏰᎴ ᎥᎩᏂᏐᏗᏱ ᎤᎬᏩᎵ. ᎾᏍᎩ ᏦᎠᎾ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎵᏌ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏥᎳᏇᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏌᎳᏓᏱᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏏᎳᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎬᏂᏛ ᏕᎦᏅᏅ ᏕᏍᎩᎾᏄᎪᏫᏎᎸ, ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᏓᏍᎩᎧᎵᎢᏍᏔᏂ ᏣᎧᏛ ᏛᏔᏂ. ᎿᏉᏃ ᎠᏓᏅᏙ ᎢᎾᎨ ᏭᏘᏅᏍᏔᏁ ᏥᏌ, ᎠᏍᎩᎾ ᎤᎪᎵᏰᏗᏱ ᎠᏰᎸᏎᎢ. ᎾᏍᎩᏰᏃ ᎤᏇᏓᎵ ᏧᎾᏘᏂᏙᎯ ᎤᏇᏓᎵᏉ ᎤᏤᎵ ᎤᎬᏩᎵ ᎤᎾᎦᏌᏯᏍᏙᎢ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏓᏅᏙ ᏧᎾᏘᏂᏙᎯ ᎠᏓᏅᏙᏉ ᎤᏤᎵ ᎤᎬᏩᎵ ᎤᎾᎦᏌᏯᏍᏙᎢ. ᏞᏍᏗ ᏥᏣᏓᎳᏫᏎᎵ ᎾᏍᎩᏃ ᏂᎯ ᏞᏍᏗ ᎡᏥᎳᏫᏎᎸᎩ. ᏴᎦᎨᏣᏂᏯ ᎭᎾᏂ.” ᏔᎳᏚᏃ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏎᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎠᏂ ᎦᏙᎯ ᎤᎵᏏᎲᏎ ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎢᏯᏍᏖ. ᎦᏅᎯᏓ ᎦᎾᎸ ᎤᏓᏂᏏᏅᏎ ᏔᎵᏁ ᎠᏦᏴ ᎦᎸᎳᏗᏣ. ᎿᏉᏃ ᏚᎾᏏᏔᏕᎢ, ᎠᎴ ᎾᏍᎩ ᎨᏥᏁᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ”ᎠᏂᎦᏲᏟ ᎤᏁᏝᏅ ᏧᏬᏒᏁ ᎠᏂᏏᎾ ᏧᏂᏏᎳᏛᏗ. ᎤᎾᏗᎦᎴᏲᏨᎯᏃ ᎠᏁᏙᎮ ᎠᎾᎵᏥᏙᏂᏙᎮ ᎣᏍᏛ ᎧᏃᎮᏛ. ”ᎭᏗ--ᏣᏃ,” ᎤᏛᏁ ᏣᏄᏏ. ᎤᎾᏛᎦᏅᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏂᏚᎢᏍᏓᏁᎴ ᎠᏕᎸ ᏧᏂᏁᏗᏱ. ᎤᏲᎴᏃ ᎣᏍᏛ ᎤᏜᏅᏓᏕᏗᏱ ᏧᏲᎯᏎᏗᏱ. “ᎣᏏᏉᏗ ᏂᏣᏍᏗ ᎠᎳᏂ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᏤᏆ ᏚᏇᏓᏢ, ᎣᏍᏓ ᎠᎵᏍᏔᏴᏗ. ᎠᏍᏓᏯ ᏕᎩᏂᏴᏎᏍᏗ ᎬᏂᎨᏒ ᏂᎬᏁᎸ ᎤᏚᎩ ᎢᎬᏒ ᏂᎦᏜᏏᏛᎡᎲᎾ; ᏄᏓᎵᏓᏍᏛᎾᏰᏃ ᎾᏍᎩ Ꮎ ᎤᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ. ᎢᏴᏛᏍᎩᏂ ᏅᏁᎮᏍᏗ ᎦᏪᏢᏗ ᎨᏒ ᎠᎴ ᏄᎵᏌᎶᏛᎾ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏰᏃ ᎠᏂᏁᏉᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᏫᏍᎩᏂ ᎤᎾᎴᎾᎯᏛ ᎢᏏᎵ ᏏᏓᏁᎸ ᎨᏒ ᏗᏥᏩᏛᎱᎦ. ᎾᏍᏉ ᏴᏫ ᎠᎴ ᎦᎸᎳᏗ ᎠᏁᎯ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᏂᏬᏂᎯᏍᏗ ᏱᏥᏬᏂᎭ, ᎾᎩᎲᎾᏃ ᏱᎩ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎥᏣᏱᏉ ᎤᏃᏴᎵᏛ ᎠᎴ ᎤᏃᏴᎩ ᎤᎭᎸᏂᎯ ᏕᎦᏤᎳᎦ. ᎠᏂᏍᎩᎵ ᎢᎾᎨ ᎠᏁᎯ ᎬᏂᎨᏒ ᎾᎾᎵᏍᏘᏍᎪ ᏱᏓᏂᏍᎦᎬᎾ ᏴᏫ. ᎢᏳᏍᎩᏂ ᎪᎱᏍᏗ ᏅᏩᏓᎴ ᎢᏥᏱᎵᏙᎮᏍᏗ, ᎤᎵᏁᏨᎯ ᏕᎦᎳᏫᎥ ᏓᏚᎪᏔᏅᎭ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏆᎵᏏ ᎤᏔᏲᏎᎴ ᎤᎵᏍᏓᏴᎾᏁᏗᏱ ᏭᏴᎵᏏ ᎠᏆᎵᏏ ᎦᏁᎸᎢ, ᎠᎴ ᎤᎵᎩᏳᏍᎠᏅᏁ ᎠᎵᏍᏓᏴᏗᏱ. ᏕᏣᏅᏓᏗᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᎨᏣᎦᏌᏯᏍᏗᏕᎩ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎨᏥᎾᏄᎪᏫᏎᎸᎯ; ᎾᏍᎩ ᏄᏍᏛ ᎤᏃᎯᏳᏒ ᎢᏥᏍᏓᏩᏗᏎᏍᏗ, ᎣᏍᏛ ᎢᏣᏓᏅᏖᎯᏌᏛ ᎨᏎᏍᏗ ᏄᏍᏛ ᏭᎵᏰᎢᎶᎸ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ, ᎠᎴ Ꮼ, ᎤᏇᏓᎵ ᎨᏒ ᏗᎩᏙᏓ ᏕᎨᎲᎩ, ᎾᏍᎩ ᏥᎨᎩᎩᎵᏲᎢᏍᏗᏍᎬᎩ; ᎠᎴ ᎨᏗᎸᏉᏗᏳ ᏥᎨᏒᎩ; ᏝᏍᎪ ᎤᏟ ᏱᏂᏙᎬᏩᏳᎪᏗ ᏤᏓᏓᏲᎯᏎᏗᏱ ᏗᎦᏓᏅᏙ ᏧᏬᏢᏅᎯ ᏥᎩ, ᎠᎴ ᎢᎦᏛᏂᏗᏍᏗᏱ? ᎤᎵᏏᎩ ᏄᎵᏍᏔᏁᎢ ᏂᎬᎾᏛᎢ. ᎦᏙᏃ ᎦᏗᎭ? ᏥᎪ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎱᏍᏗ ᎦᏗᎭ? ᏥᎪᎨ ᎾᏍᎩ Ꮎ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᏥᎸ ᎨᎳᏍᏓᏁᏗ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎱᏍᏗ, ᎦᏗᎭ? ᎠᏎᏃ ᎤᏂᏣᏔ ᎾᏍᎩ ᎢᎬᏱ ᏥᎩ, ᎣᏂ ᎨᏎᏍᏗ; ᎣᏂᏃ ᏥᎩ, ᎢᎬᏱ ᎨᏎᏍᏗ. ᎤᏛᎦᏁ ᏫᎵᎻ ᏄᏪᏒ ᏃᎴ ᎭᎴᏉ ᏄᎴᏫᏍᏔᏁᎴ ᎤᏓᏅᏙᎩ, “ᎨᎵᎠ ᏗᏆᎸᏖᎵ,” ᎡᏝᏪᎯ ᏄᏪᏎᎴ ᎠᎦᏴᎵ ᎤᏃᏕᎾ, ᎾᎥᏂ ᎤᎦᏎᏍᏕᎢ. ᏫᏥ ᏭᏌᏙᏰ ᎦᏍᎩᎶ ᏲᎾ ᎤᏤᏍᏙ ᏙᏱ ᏭᏓᏒᏍᏔᏁᎢ. ᎠᎦᏕ ᎠᎵᏍᏔᏴᎲᏍᎨ, ᎤᏘᏴ ᎠᎵᏍᏓᏴᏗ ᏃᎴ ᎤᏅᏗ. ᎠᎴ ᏥᏬᏂᏍᎬ ᎠᎴ ᎦᎵᏥᏙᎲᏍᎬᎢ ᎥᏝ ᏴᏫ ᎤᏤᎵ ᎠᏓᏍᏗᏰᏗᏍᎩ ᎠᎦᏙᎥᎪᏍᏗ ᎨᏒ ᏱᎬᏗᏍᎨᎢ, ᎠᏓᏅᏙᏍᎩᏂ ᎠᎴ ᎤᎵᏂᎩᏗ ᎨᏒ ᏄᏜᏗᏛᏒᎾ ᏂᎬᏁᎲᎢ; ᏥᏌ ᎤᏁᏨ, ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎠᏴ ᎨᏒ ᏱᏅᏓᎦᎵᏍᏙᏓ, ᏂᎯᏍᎩᏂ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏓ, ᎯᎠ ᎧᏁᎬ ᏥᏌᎾᏄᎪᏥᎦ. ᎹᏗᏍᎩᏂ ᎤᏪᎵᎯᏍᏗᏍᎨ ᎤᏣᏘ ᏚᎸᏫᏍᏓᏁ-ᎲᎢ, ᎠᎴ ᎤᎷᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᏝᏍᎪ ᎪᎱᏍᏗ ᏰᎵᎭ ᎥᎩᎸ ᏣᏋᏕᏨ ᏣᎩᎯᏯᏍᏓᏁᎸ ᎠᏋᏒᏉ ᎪᎱᏍᏗ ᎢᏨᏯᏛᏁᏗᏱ? ᎾᏍᎩᎢᏳᏍᏗ ᏘᏁᏥ ᏓᎩᏍᏕᎸᏗᏱ. ᎿᏉᏃ ᏚᏍᏚᎢᎡᎴ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᏧᏃᎵᏍᏗᏱ ᎪᏪᎵ; ᎤᎩᏨᏓ, ᎠᏂᏲᏍᏗᏍᎬ ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᎩᎸᏙᏗ ᏃᎴ ᏐᏈᎵ ᎠᎾᎵᏙᎩᏯᏍᎩ ᏓᏂᏴᏍᏗᏍᎬ ᏓᏆᎴᎸ ᏃᎴ ᎠᎾᏛᏁᎵᏍᎩ ᎠᏂᏝᏅᎥᏍᎬ ᎤᎾᏤᎵ ᏃᎴ ᏓᏂᎩᏍᎬ ᏧᏂᏒᏍᏗ ᏗᎦᏅᏏᏅᏍᏗ, ᎤᎵᏬᏤ ᏌᎳᏓ. ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗᏳ ᎤᏂᏰᎸᎭ, ᎾᎿ ᏂᏣᎢᏒᎾ ᎨᏒ ᎠᎾᎢᏒ ᏩᏂᎦᏛ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏲ ᎢᏯᏛᏁᎵᏓᏍᏗ ᏗᎨᏒᎢ, ᎾᏍᎩ ᎤᏐᏅ ᎨᏥᏃᎮᏍᎬᎢ; ᎤᏔᏂᏓ ᎦᏰᏌᏛ ᏃᎴ ᎠᏎᎵᏓᏍᏙᏗ ᎦᏰᏌᏛ ᎬᏘ ᎱᏂᏴ ᎦᏅᏍᎨᏂ ᎠᏧᏣ, ᏏᎤᏣᏅᏖ. ᎠᏂᏌ ᎠᏂᏍᎦᏯ ᎪᎰᏍᏗ ᏯᏁᎵᏍᎬᎾ ᎠᎾᏓᏅᏖᎵᏙᎰ. ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎩᎶ ᏗᎦᎸᏉᏗᏍᎩ ᏱᎩ. ᎾᎯᏳᏃ ᏒᏃᏱ ᏫᏄᎵᏍᏔᏅ, ᎤᎬᏫᏳᎯ ᎾᎥ ᎤᎴᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᎦᎵᏍᏗ ᏣᏓᏅᏖᏍᏗ, ᏉᎳ, ᎬᏂᎨᏒᏰᏃ ᏥᏂᏍᏋᏁᎸ ᏥᎷᏏᎵᎻ, ᎾᏍᏉ ᎬᏂᎨᏒ ᏅᏓᏍᏋᏁᎵ ᏣᏂ. ᎾᏍᎩᏃ ᎢᏳ ᎦᎶᏁᏛ ᎤᏲᎱᏒᎯ ᏕᎤᎴᎯᏌᏅ ᏯᎦᎵᏥᏙᎲᏍᎦ, ᎦᏙᏃ ᎢᎦᏛ ᎨᏣᏓᏑᏴ ᎯᎠ ᏂᎠᏂᏪᎭ, ᎥᏝ ᏧᎾᎴᎯᏐᏗ ᏱᎩ ᏧᏂᏲᎱᏒᎯ? ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎠᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᎾᏍᎩᏯᏉᏰᏃ ᏂᎯ ᏧᏁᎬ ᎢᏗᎬᏁᎸᎯ ᏓᏤᎵᏍᏛᎢ, ᎾᏍᎩ ᎦᏚᎢᏗᏢ ᎤᏙᎯᏳᎯ ᏧᏬᏚᎯᏳ ᏥᎨᏐᎢ, ᎠᏎᏃ ᎠᏫᏂᏗᏢ ᏧᎧᎵᏨᎯ ᏥᎨᏐ ᏧᏂᏲᎱᏒᎯ ᏧᏂᎪᎳ ᎠᎴ ᏂᎦᎥ ᎦᏓᎭ ᎨᏒᎢ ᎪᎯᏍᎩᏂ ᏥᎩ ᎠᏇᏏᏗ ᏥᎷᏏᎵᎻ ᎦᏥᏍᏕᎸᎯ ᎤᎾᏓᏅᏘ. ᎯᏎᏃ ᎢᏨᏃᏁᎭ ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᎯᎠ ᎣᏍᏛ ᎧᏃᎮᏛ ᏣᏆᎵᏥᏙᏅᎩ, ᎥᏝ ᏴᏫ ᏧᏕᏲᏅᎯ ᏱᎩ. ᎤᏙᎯᏳ ᎠᏂᎶᏅᎮᏍᎩ ᎨᏒ, ᎾᏍᎩᏴ ᎦᎾ ᏗᎦᎳᏗᏍᎩ ᎦᎶᏇ ᏃᎴ ᎠᏓᏪᎯ ᏚᏳᎾᏍᏗ. ᎤᏂᏩᏎᏅᏃ ᎠᏕᏒᎲᏍᎩ ᎤᎷᏤᎢ, ᎤᎾᏛᏅᎢᏍᏗᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᎦᏨᏍᏙᏗᏱ ᏭᏂᏴᎴᎢ, ᎠᎴ ᎤᏂᏍᏚᏁ ᎦᎶᎯᏍᏗᏱ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ? ᏞᏍᏗ ᎢᏥᎵᏓᏍᏔᏅᎩ; ᎾᏍᏉ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ, ᎠᎴ ᎤᎾᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏗᎾᏓᏲᏁᎯ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏗᎨᏥᏰᎩ, ᎠᎴ ᎠᏂᏍᎦᏯ ᎠᏂᏍᎦᏯᏉ ᏗᏂᏐᏢᏗᏍᎩ, ᎥᏝ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯ ᏱᎩ, ᏗᏅᏃᏛᏍᎩᏂ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏣᏘ ᎢᏥᎵᏓᏍᏗᎭ. ᎬᎩᏚᎦ ᎢᏧᎳ ᎠᏂᎪᎢ ᎠᎴ ᏅᏩᎾᏓᎴ ᏴᏫ, ᎠᏂᎦᏔᎾᎢ ᎠᎴ ᎠᏂᎦᏔᎾᎢ ᏂᎨᏒᎾ. ᎾᏍᎩᏴ, ᏤᎩ ᎤᏩᎭᏂᎴ ᏣᎵᏍᏙᏂ ᎠᏍᎪᎵ, ᎩᎳᏈᏴ ᎤᎯᏍᏗ ᎤᏪᎵᏎ, ᎠᏎᏃ ᎦᏲᏟᏉ ᎤᏩᎭᏂᎴ ᏚᏙᎨᏔᏁᏉ ᏃᎴ ᎤᏍᎫᏓᏁᎦᎸ ᎦᎴᏂ ᎦᎸᎳᏗᏣ ᎤᏰᏝᎴ. ᏟᏍᏆᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏄᎬᏫᏳᏒ ᎠᏥᎦᏘᏗᏍᏗ ᎤᏬᎯᏳᏅᎩ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏂᎦᏛ ᏚᏓᏘᎾᎥᎢ, ᎤᏂᏣᏘᏃ ᎪᎵᏂᏗᏱ ᎠᏁᎯ ᎤᎾᏛᎦᏅ ᎤᏃᎯᏳᏅᎩ; ᎠᎴ ᏕᎨᎦᏬᎥᎩ. ᎤᏛᎦᏍᏔᏁ ᎠᎹ ᏫᎦᎶᏍᎬ ᎠᏔᎴᎦᏒ ᏃᎴ ᎤᏓᏅᏖᎴ ᎭᎾ ᏫᏗᎦᎶᏍᎬ ᎠᎹ, ᏧᏆᎶᎦ ᏃᎴ ᏧᏍᏗ ᏧᏩᏂᎦᏝᏅ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎩᎶ ᏂᏚᏳᎪᏛᎾ ᎾᏛᏁᎮᏍᏗ ᎠᎩᏍᎨᏍᏗ ᎯᎠ ᎦᏚ, ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ ᎯᎠ ᎤᎵᏍᏈᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᏍᎦᏅᏤᎮᏍᏗ ᎠᏰᎸ ᎠᎴ ᎤᎩᎬ ᎤᎬᏫᏳᎯ. ᏌᏌ ᎤᏛᎦᏍᏕᎢ ᎠᏂᏬᏂᏍᎬ ᏃᎴ ᎤᏰᏥᏍᎨᎢ. ᎾᏍᎩᏃ ᎠᏥᏅᏏᏓᏍᏗ ᎤᎾᏝᎢ ᎤᏪᏙᎵᏤᎢ, ᎠᎴ ᎤᏪᎧᏁᎢ, ᎠᎴ ᎤᏚᎬ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎴᎢ. ᎤᏁᎳᏅᎯᏰᏃ ᎤᏤᎵᎪᎯ ᎥᏝ ᎠᎵᏍᏓᏴᏗᏉ ᎠᎴ ᎠᏗᏔᏍᏗᏉ ᎨᏒ ᏱᎩ; ᏚᏳᎪᏛᏍᎩᏂ ᎨᏒᎢ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒᎢ, ᎠᎴ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ. ᎤᏓᏏᏁᎢ ᏫᎵᎻ, ᏚᎦᏔᏍᏔᏁᎢ. ᏧᏙᏓᏋᏓ ᎠᏩᏔᎰᎯᎮ ᏲᎾ ᎤᏤᏍᏙ. ᏗᏘᎭᏁᎩ ᎠᏍᎦᏯ ᎤᏟᏂᎩᏓ, ᎡᏆ ᎤᏍᏘᏰᎩ, Major ᏚᏂᏴᎲ ᏃᎴ ᏗᎪᏚᎢᏍᏔᏅ ᏧᎭᏄᏫ, ᎢᏳᏍᏗᏉ ᎠᏂᏳᏩᏁᎦ ᏓᎾᎿᏬᏍᎬ ᎠᎹᏰᎵ. ᎪᏪᎸᏃ ᎤᏙᎯᏳᏁᎢ ᎯᎠ ᏥᏂᎦᏪᎭ; ᎡᏆᎭᎻ ᎤᏬᎯᏳᏅᎩ ᎤᏁᎸᏅᎯ, ᎾᏍᎩᏃ ᏚᏳᎪᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏠᏱ ᎠᏥᏰᎸᎾᏁᎸᎩ. ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎤᎾᎵᎢ ᎠᎪᏎᎲᎩ. ᏰᎵ ᏧᏕᏘᏴᏓ ᏧᎵᎬᏩᏟ ᎤᎾᏘᏲᏒ ᎤᎬᏫᏳ ᎫᏫᏍᎫᏫ ᏃᎴ ᎠᏂRidges, ᎨᏍᏗ ᎪᎰᏍᏗ ᏳᏓᎵᏍᏕᏓᎵᏴᏌ. ᎠᎢᏒ ᏣᎵ, ᎪᎰᏍᏗ ᏤᏙᎲ ᎠᏙᎯ ᏄᎵᏍᏔᏁᎴ. ᎩᎶ ᏧᎦᏎᏍᏙ ᎤᎧᎭᏛ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏅᏓᏳᏓᎴᏅᎯ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏰᎵ ᏴᎨᏥᏲᏍᏓ; ᏯᎵᎦᏚᏓᎩᏰᏃ ᎤᏁᎳᏅᎯᏉ ᏤᏣᏟᏴᎡᎯ ᎨᏒᎢ. ᎨᏍᏗ ᏫᏥᎢᎦ ᎦᏓᏙᎵᏍᏗᏍᎩ ᏱᎨᏎ, ᎠᏎᏃ ᏕᎦᎦᎭᎾᏅ ᏧᏂᏲᎰᏒ ᎠᏂᏧᏣ, ᎠᏆᏓᏙᎵᏍᏔᏅ, ᎣᎭᏁ ᎢᏴ ᏤᎩᏏᏂ ᎢᏳᏍᏘ ᎦᎾᎡᏍᏘ ᎦᏃ, ᎤᏣ ᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᎠᏂᏧᏣ, ᏔᎵ ᎢᏯᏂᏎᏂᏏ ᏱᏚᏂᏢᎾ ᏧᏂᏍᎪᎵᏰᏗ, ᏚᏂᏲᎰᏎ ᎤᏂᎦᏌᎴᎩ ᏧᎾᏛᏐᏅ ᎤᎾᏓᏅᏖᎸ. ᎾᎯᏳᏰᏃ ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ, ᎥᏝ ᏱᏓᎾᏕᏒᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ ᏱᏗᎨᏥᏰᎪᎢ; ᎦᎸᎳᏗᏍᎩᏂ ᎠᏁᎯ ᎨᏥᏅᏏᏓᏍᏗ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏄᎾᏍᏗ. ᎢᎦᏓ ᎣᎯᏍᏙᏗ ᏭᎦᏖᏅᏗᎭ? ᎠᏴ ᎤᏁᎳᏅᎯ ᏗᏣᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᏅᏤᎵᎦ. ᎣᏏᏃ ᎤᏪᎿᏪᎢ, ᎠᎴ ᎤᏍᎦᎴ ᎤᎪᎵᏰᏗᏱ. ᏄᏓᎴ ᎤᏃᎮᎴ, ᏣᎵᏍᏙᏂ ᏭᏪᏙᎸ, ᏗᎧᎾᏩᏛᏍᏗ ᏚᏩᏛᎲ, ᎤᏩᏌ ᎤᎵᏍᏕᎸᏙᏗ, ᎦᎷᏯᏍᏗ ᎪᏍᏓᏱ ᎤᎵᏗᏨ ᎠᏰᎸᎢ ᏃᎴ ᎤᏩᏌ ᎤᏚᎵᏍᎬ. ᎠᏂᏔᎵ ᏠᎨᏏ ᎠᏁᏙᎮᏍᏗ; ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ. ”ᎯᎪᏩᏘᎭᏧ ᏄᏍᏛ ᏥᎪᏩᏘᏍᎬᎢ?” ᎤᏛᏛᏁ. ᎤᏍᎪᎸ ᏫᏚᎸᏌᏛ ᏓᎶᏂᎨ ᏧᏆᎶᎬ ᏃᎴ ᏗᎦᏣᏃᏍᏔ ᏕᏧᎬ. ᏃᎴ ᎣᏍᏓ ᎦᏬᏂ. ᎠᎴ ᎤᎾᏠᏤ ᎢᏳᎾᏛᏁᏗᏱ; ᏂᎦᏛᏰᏃ ᏴᏫ ᎬᏩᏝᏫᏍᏗᏕᎨ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ. ᎦᏙᏃ ᎠᏛᏁᏗ? ᎠᏎ ᎤᎾᏓᏟᏐᏗ ᎤᏂᏣᏘ, ᏛᎾᏛᎦᏂᏰᏃ ᏣᎷᏨᎢ. ᎤᎵᏂᎩᏗᏳᏃ ᎾᏂᏪᏍᎨ ᎨᏂᏪᏍᎨ ᎨᏥᏅᏏᏛ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᏕᏅᎴᎯᏌᏅ ᎤᎬᏫᏳᎯ ᏥᏌ; ᏂᎦᏛᏃ ᎤᏣᏘ ᎣᏏᏳ ᎨᎦᏓᏅᏖᏍᎨᎢ. ᎢᏳᏍᎩᏂ ᎩᎶ ᎾᎦᏔᎲᎾ ᎢᎨᏎᏍᏗ, ᎤᏁᎳᎩᏉ ᎾᎦᏔᎲᎾ ᎨᏎᏍᏗ. ᎡᏈᏌᏃ ᏭᎷᏨᎩ ᎠᎴ ᎾᎿ ᏚᏩᏕᎲᎩ, ᎤᏩᏒᏍᎩᏂ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏴᎸᎩ ᎠᎴ ᏚᏭᏁᏔᏅᎩ ᎠᏂᏧᏏ. ᎤᏩᏒᎳᎲ ᎠᏰᎴᎩ, ᏚᏂᎩᏒ ᏓᏆᎴᎳ. ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎤᏁᎳᏅᎯ ᏚᏁᎸ ᎠᏓᎵᏔᏗᏍᎩ ᎠᏓᏅᏙ, ᎠᎴ ᏗᏂᎦᏙᎵ ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏗᏂᎴᏂ ᏗᎬᏩᎾᏛᎪᏙᏗ ᏂᎨᏒᎾ, ᎪᎯ ᎨᏒ ᎢᏯᏍᏗ. ᎾᏍᎩ ᎤᎴᏅᎲᎩ ᎾᏍᎦᎢᎲᎾ ᎤᏬᏂᏒᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎾᏍᎩᏃ ᎡᏈᎳ ᎠᎴ ᏈᏏᎳ ᎤᎾᏛᎦᏁᎸ ᎤᏂᏯᏅᎲᎩ, ᎠᎴ ᎤᏟ ᎢᏲᏍᏛ ᏚᏃᏏᏌᏁᎸᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏅᏅᎢ. “ᎤᏙᎯᏳ ᎤᏒᎯ ᎨᏎᎢ!” ᎾᏍᎩ Ꮎ ᎤᏚᎸᏗ ᏄᎵᏍᏓᏁᎲᎾ ᏂᏚᎩᏨᏂᏒ ᎠᏥᎸ-ᎤᏪᎳᏍᏗᏱ, ᎾᏍᎩ ᎾᎾᏛᏁᎲ ᏄᏂᏛᏁᎲ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏥᎸᎠᏁᎶᎯ, ᎢᎬᏱ ᎤᏅᏒ ᎤᏂᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ, ᎢᏉᏃ ᏴᏫ ᎤᏂᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ; ᎾᏍᎩᏰᏃ ᎯᎠ ᏌᏉ ᏄᏛᏁᎴᎢ, ᎾᎯᏳ ᎤᏩᏒ ᎤᏓᎵᏍᎪᎸᏔᏅ. ᎣᏍᏓ ᎱᏰᎸᎮ. ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎤᎬᏫᏳᎯ ᏥᏌ ᏚᏙᎥ ᏕᎨᎦᏬᏍᏔᏅᎩ. ᏱᏂᏚᏩᏁᎰᏅ ᏓᏥᎶᏍᏗᏍᎬ, ᎤᎵᏏᏅᏗ ᎠᏗᏗᏍᎨ ᏣᎵ, ᏃᎴ ᏓᏥᎶᏍᎨ ᎤᏓᏦᏍᏗ ᏃᎴ ᎡᎳᏗ ᎤᏑᎶ ᏗᎦᏅᏍᎨᏂ. ᏂᎦᏓ ᏧᎾᏕᎶᏆᏍᏗ ᏓᏓᏁᎳ ᎨᏙᎵᏙᎲᎢ. ᏦᎢ ᎠᏂᎨᏳᏣ ᎦᏥᎪᎥᎢ ᏙᎦᏓᏲᎵᎸ ᏃᎴ ᎣᎦᏟᏃᎮᏢ ᏄᏓᎴ ᏧᎾᏕᎶᏆᏍᏗ ᏗᎾᏕᎶᏆᏍᎩ ᎨᏒᎢ. ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎬᏂᎨᏒ ᎢᎬᏁᎯ, ᎯᎠ ᏂᎦᏪᎭ, ᎤᏙᎯᏳᎯᏯ ᏞᎩᏳ ᏓᏥᎷᏥ. ᎡᎺᏅ; ᎰᏩᏉ; ᏞᎩᏳ ᎯᎷᎩ ᏣᎬᏫᏳᎯ ᏥᏌ. ᏈᏓᏃ ᎤᏓᏅᏘᏌᏅ ᎯᎠ ᏄᏪᏎᎢ; ᎿᏉ ᎦᏙᎴᎣᎯ ᎤᏙᎯᏳᎯ ᎤᎬᏫᏳᎯ ᏧᏅᏒ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᎠᏇᏓᎴᏒ ᎡᎶᏛ ᏥᏓᎩᏂᏴᏒᎢ, ᎠᎴ ᏂᎦᎥ ᎤᏚᎩ ᏧᏅᏒ ᎠᏂᏧᏏ. ᎭᏫᏂ. ᏃᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏤᎳᏗᏙᎮᏍᏗ, ᎨᏣᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎢᎸᏍᎩᏃ ᏫᏄᏒᎸ ᏏᏌᎵᏱ ᎤᏂᎷᏨᎩ ᎤᎬᏫᏳᎯ ᎡᎩᎵᏈ ᎠᎴ ᏆᏂᏏ, ᎤᏂᏲᎵᎵᎸᎩ ᏇᏍᏓ. ᎢᏳᏰᏃ ᎾᏍᎩ ᏗᎩᏲᏍᏔᏅᎯ ᎨᏒ ᏔᎵᏁ ᏱᏙᎦᏁᏍᎨᎭ, ᎠᎩᏍᎦᏅᏨᎯ ᎨᏒ ᎬᏂᎨᏒ ᏱᏂᎬᏁᎭ. “ᎦᏙᏃ ᎢᏳᏍᏗ ᎤᏃᎴ ᎠᏲᏙᏗ ᎠᎩᎸᏗᏍᎩ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᎦᏣᏃᏍᏓ ᎤᏩᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎠᎴ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᎣᏍᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏐᏅ ᏥᎨᏥᏃᎮᎭ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏥᎨᏦᏎᎭ, ᏯᎾᏕᎰᎯ ᎾᏍᎩ ᎦᏰᎪᎩ ᎨᏥᏃᎮᏍᎩ ᎣᏍᏛ ᎢᏣᎴᏂᏙᎲ ᎦᎶᏁᏛ ᏕᏥᎧᎿᏩᏗᏒᎢ ᎠᏂᏁᎢᏍᏗᏍᎩ. ᏗᎧᏃᏗᏱ ᎠᎾᎦᎵᏍᎩ ᎾᏍᎩᏯ ᎨᏎᎢ, ᎤᏄᏩᎥᏃ ᎥᏃᏥ ᏥᏄᏁᎩᏴ ᏄᎺᎩᏰᎢ. ᏏᏆ ᎦᏅᎪᎢ. ᎧᏂᎩᏓ ᎤᎾᎵᎢ, ᎤᎯᏐᏓᏁ ᏃᎴ ᎤᏲᏏᏍᎩ, ᏗᎩᏏ ᎦᏓᏍᎬ ᏭᏓᏓᎩᏅᏎ ᏃᎴ ᎤᏦᏱᎴᎢ. ᎤᎦᏔᎲᏓ ᎠᏥᎸᏳᎵ ᎾᎥᏂ ᎦᏙᎬ. ᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎷᏨ ᎯᎠ ᏂᎬᏩᏎᎸᎩ; ᎯᎦᏔᎭᏍᎪ ᎠᏂᏆᎵᏏ ᎤᏂᎿᎸᏨᎢ ᎤᎾᏛᎦᏅ ᎾᏍᎩ ᎯᎠ ᏂᏣᏪᏒᎢ. ᏥᎪ ᎯᏐᏢᎢᏍᏗᎭ ᎢᎡᏦᏎᎭ ᎠᎦᏴᎵᎨᎢ ᎤᎸᏉᏔᏅᎯ ᎠᎴ ᎡᎶᎯ ᎤᎷᎯᏍᏗᏱ ᎤᏅᏏᏛ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᏥᎦᏛ? ᎠᎴ ᎧᏃᎮᏛ ᎤᏇᏓᎵ ᏄᎵᏍᏔᏅᎩ, ᎠᎴ ᎢᏕᎲ ᎤᎴᏂᏙᎸᎩ, ᎤᎧᎵᏨᎯ ᎨᏒᎩ ᎤᏓᏙᎵᏣᏛ ᎠᎴ ᏚᏳᎪᏛᎢ; ᎠᎴ ᎢᏗᎪᏩᏘᏍᎬᎩ ᎤᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎦᏴᎵᎨ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ ᎤᏤᎵᎦ ᎾᏍᎩᏯ ᎨᏒᎩ. ᏍᎩᏍᏕᎳ! ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏂᎯ ᎢᏥᏲᎢ, ᏱᏥᏏᎾᎯ ᎣᏍᏛ ᎨᏒ ᏗᏥᏁᏗᏱ ᏗᏤᏥ, ᎤᏟᎯᏳ ᏄᏛᏅᎢᏍᏗ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᏧᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎬᏩᏔᏲᏎᎯ! ᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏨᎥᏏ, ᏗᏣᏓᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩᏯ ᎢᏨᎨᏳᎢᏳ ᏄᎵᏍᏔᏅᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏗᏣᏓᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ. ᎤᏂᎶᏐᏅᏃ ᏂᎬᎾᏛ ᎠᎹᏰᎵ ᎨᏒᎢ ᎨᏆ ᎢᏴᏛ, ᎾᎿ ᎤᏂᏩᏛᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᏧᏏ ᏆᏥᏌ ᏧᏙᎢᏛ, ᎠᏙᏂᏍᎩ, ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ, ᎠᎴ ᎥᏝ ᏳᎦᏙᎥᏎᎢ ᎬᏂ ᎤᎾᏄᎪᏫᏒ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎠᏧᏣ, ᏥᏌᏃ ᏑᏬᎡᎢ. ᎠᎴ ᎦᏙ ᎤᏍᏗ ᏗᏙᎵᎩ ᏂᎦᎵᏍᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ? ᏂᎯᏰᏃ ᎾᏍᎩ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏁᎳᏗᏍᏗᏱ; ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎯᎠ ᏥᏁᏪᏒ, ᎾᏍᎩ Ꮎ ᎦᏥᏯᎡᏍᏗ, ᎠᎴ ᎠᏁᎲ ᎨᏙᎮᏍᏗ; ᎠᎴ ᎠᏴ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏅᏒ ᏗᏆᏤᎵ ᏴᏫ ᎨᏎᏍᏗ. ᎿᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᎾᏓᏅᏟ ᎬᏩᏘᎿᏫᏛᎲᎩ ᏉᎳ, ᎠᎺᏉᎯ ᎢᏗᏢ ᏫᎬᏩᏘᏅᏍᏔᏅᎩ. ᏌᏱᎳᏍᎩᏂ ᎠᎴ ᏗᎹᏗ ᎾᎿᏉ ᎤᎾᏗᎩᏴᎩ. ᏧᎾᏁᎶᏗᏃ ᏚᎾᏓᏡᏩᏗᏒ ᏚᎾᎵᏂᎪᏒᎩ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᎠᏂᎪᏙᏍᎬᎩ. ᏃᏊᏃ ᎡᎵᏏ ᏥᎨᏒ ᎣᎦᏛᏅᎢᏍᏓᏁᎸ ᎣᎩᏒᏍᏗ ᏚᏰᏍᏛᏂᏙᎸ ᎣᎦᏅᏢᏗ ᎣᎦᏅᏢᎾᏃ ᏃᏊ Ꮩ ᏃᎦᏛᏁᎳ ᎠᏏ ᏫᏃᎩᎵᏅᏨᎾᏊ ᏂᎦᏓ ᎣᎦᏛᎦᏅ ᏪᏌ ᏂᎦᏪᏍᎬ. ᏧᏂᏲᎱᏒᎯᏰᏃ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ, ᎿᏉ ᎦᎶᏁᏛ ᎥᏝ ᏧᎴᎯᏌᏅᎯ ᏱᎩ. ᏃᏗ ᎡᏚᏥ ᎤᎾᎦᏙᏍᏔᏁᎢ. ᏔᎵᏁ ᎱᎦᎾᎾ, ᎭᎧᎵᎨ ᎠᎹ ᎦᏁᎲ. ᏫᎵᎻ ᎤᎸᏉᏗ ᎨᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏍᎩᎾᎾ ᏱᏄᏍᏗ-ᎡᏝᏪᎯ, ᎠᎦᏘᏴ ᎢᎦ ᎢᏳᎵᏍᏙᏗ. ᎠᏂᏧᏏ ᎠᏂᎦᏔᎲ ᏥᏧᏏ ᎾᏍᎩᏯ ᎾᏆᎵᏍᏔᏅᎩ ᎾᏍᎩ ᎠᏂᏧᏏ ᎬᎩᏁᏉᏤᏗᏱ; ᎾᏃ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎤᎾᏓᏄᏴᏗ ᎠᏂᎦᏔᎲ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏣᏆᏓᏄᏴᏙ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎬᎩᏁᏉᏤᏗᏱ ᎾᏍᎩ Ꮎ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎤᎾᏓᏄᏴᏗ. ᎦᏚᎱᎢ, ᎠᏎᏃ ᎯᎠ ᏗᎾᏔᎾᎢ ᎠᏂᎦᏴᎵ ᏣᏂᎧᏔᎮᎢ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎨᏒ ᏚᏓᏥᎶᏚ, ᎠᏎᏃ ᎨᏍᏓᏗ ᎩᎶ ᎪᎱᏍᏓ ᏳᏛᎾ ᎱᎾᏓᏓᏰᏙᏗᏍᎬ ᏍᎩᎾ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᎬᏂᏛ ᎾᎵᏍᏆᏗᏍᎬᎾ-ᎾᏍᎩ ᎨᏣᎦᏙᎥᎯᏍᏗᏱ ᏂᎯ ᏨᏒᎯᏳ ᎤᏙᎯᏳᏒ ᏣᏁᎳᏅᎯ, ᎠᎴ ᎤᏂᎦᏙᎥᎯᏍᏗᏱ ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎩ ᎾᎯᏅᏏᏛ ᏥᎩ. ᎾᏍᎩ ᏧᏎᎵᏔᏁ ᏧᏚᎢᏍᏓᏁᎴ ᎢᎩᎦᏴᎵᎨᎡᏆᎭᎻ, ᎨᏍᏗ ᎠᏰᎵ ᏯᎾᏓᏬᎠ ᎦᏣᏄᎵ ᎨᏴᎢ ᎠᎹ, ᎭᎾᎾ ᎠᎾᏓᏉᏍᎪ ᎠᏁᏉᎯᎨ ᎠᏂᏣᏗ, ᎭᏂ ᏥᎾᏓᏬ ᏃᏉ! ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎪᎱᏍᏗ ᎾᏍᎪᏁᎶᏍᎬᎾ ᏛᏇᏅᏒᎩ ᏮᎩᏯᏅᎮᎸᏉ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏨᏰᏛᏛᎲᎦ ᏅᏧᎵᏍᏙᏔᏅ ᏫᏍᎩᏯᏅᎲᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎭᏢᏃ ᏲᏥᎩ ᎾᏍᎩ ᎢᎦᎢ ᎠᎵᏍᏓᏴᏗ ᎢᎾᎨᎢ, ᎾᏍᎩ ᎢᏳᏂᏣᏘ ᏰᎵ ᏧᏃᎸᎯᏍᏗ? ᎠᏯᏗ ᏓᎦᎦᏎᏍᏔᏂ,” ᎤᏬᏨᏗ ᎤᏰᎸᏁ. ᎨᏍᏗ ᎪᎰᏍᏗ ᎬᏫᏒᏗ ᏱᎨᏎ. ᎠᎴ ᏧᏃᏰᏂ ᎨᏣᏌᎳᏙᏗᏕᎨᏍᏗ, ᎾᏍᎩ ᎢᎸᎯᏳ ᏅᏲᎯ ᏣᎾᏍᏆᎶᏍᏙᏗᏱ ᏂᎨᏒᎾ. ”ᎤᏰᎸᏗᏗ ᏧᏳᏩᏂᎭ ᏥᎩ ᏗᏥᏅᏍᎨᏂ,” ᎤᏛᏁ ᏌᎳᏓ. “Ꭳ, ᎡᎳᏆᏗ,” ᎤᏰᏤ ᎪᏱᏁᎢ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏍᎩᏂᏍᏓᏩᏚᎦ, ᏴᏫᏃ ᏗᏍᏗᎦᏯᎷᎥᏍᎩ ᏅᏓᏍᏛᏴᏁᎵ. ᏚᏏᎳᏛ ᎤᏬᏞ ᏌᎳᏓ ᏓᎹᎦ ᎦᏯᎩᏍᎨ ᎠᏓᏅᏖᏍᎨ ᏭᏩᎦᏘᏗᏒᎢ. ᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎡᎶᎯ ᏱᏥᏟᏏᏍᎨᏍᏗ, ᏥᏍᎪᏴ ᎠᎴ ᎠᏯᏍᏜᏗᏍᎩ ᎤᏂᏲᏍᏙᏗᏱ ᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎠᎴ ᎤᏂᏃᏍᎩᏍᏗᏱ; ᎦᏳᎳ ᎠᎾᏂᎩ ᎠᏂᏐᎢ ᏥᏍᏆ ᎤᏚᎢᏍᏔᏁᏃ, ᎠᎴ ᎤᏲᎴ ᏧᏳᎯᏎᏗᏱ, ᎾᎯᏳ ᎤᏂᎪᏁᎸ ᎤᏂᏣᏘ. ᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ ᏂᎦᏗᏳ ᏌᏉᏉ ᏂᏕᏨᏁᏍᏗ ᏕᏣᏓᏅᏛᎢ; ᏕᏣᏓᏙᎵᎨᏍᏗ; ᏕᏣᏓᎨᏳᏎᏍᏗ ᎢᏣᎵᏅᏢᎢ; ᎢᏣᏓᏙᎵᏣᏗᏳ ᎨᏎᏍᏗ; ᎢᏣᏓᏙᎵᏍᏗ ᎨᏎᏍᏗ; ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎤᏂᎬᏫᏳᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏧᎾᏤᎵᎦ, ᏗᎬᏩᎾᏁᎶᏛᏗᏱ ᎾᏅᏁᎰ ᏴᏫ; ᎠᎴ ᎾᏍᎩ ᏗᎬᏩᎾᏁᎶᏙᏗ ᎢᏯᏅᏁᎯ ᎣᏍᏛ ᎢᏗᎾᏛᏁᎯ ᎨᏍᏎᎰᎢ. ᏐᏉ ᎦᏅᏍᎨᏂ ᏭᏬᎯᎶᏔᏁᎢ ᎠᏦᏴ ᏏᏆ ᎤᏴᏍᏗ. ᎠᎴᏃ ᎾᏍᏉ ᎠᏴ ᎣᏤᎲ ᏂᎯᏃ ᎢᏤᎲ ᎾᎿ ᎠᏰᎵ ᎨᏒ ᎡᏉᎯᏳ ᎤᏜᏅᏛᎢ ᎪᏢᎭ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏳᎾᏚᎵᎭ ᎠᏂ ᎤᎾᏓᎴᏍᏗᏱ ᏗᏤᎲ ᏭᏂᎶᎯᏍᏗᏱ, ᎥᏝ ᏰᎵ ᏱᏅᎬᎾᏛᎦ, ᎠᎴ ᎾᏍᏉ ᎠᏂ ᎣᏤᎲᎢ ᎥᏝ ᏴᎬᏂᎷᎩ ᎾᎿ ᏅᏓᏳᏂᎶᎯᏍᏗᏱ ᏳᎾᏚᎵᎭ. ᏥᎦᏔᎭ ᎢᏯᏆᏛᏁᏗᏱ ᎡᎳᏗ ᏱᎾᏆᏛᎿᏕᎦ, ᎠᎴ ᏥᎦᏔᎭ ᎢᏯᏆᏛᏁᏗᏱ ᎤᏣᏘ ᏯᎩᎭ; ᏂᎦᎥ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᎾᎦᎥ ᎾᏆᎵᏍᏓᏁᎵᏕᎬᎢ, ᎥᏇᏲᏅ ᎢᏯᏆᏛᏁᏗᏱ ᎾᏍᏉ ᏯᏉᎳᏅ ᎠᎴ ᎾᏍᏉ ᏯᎩᏲᏏᎭ, ᎾᏍᏉ ᎤᏣᏘ ᏯᎩᎭ ᎠᎴ ᎾᏍᏉ ᏯᎩᏂᎬᏎᎭ ᎤᎾᏛ ᏚᏗᏨ ᏥᏍᏚ ᎤᏩᎾᏛ Ꮭ ᎫᎱᏍᏗ ᏳᏗᏠᏆᏍᏔᏁ ᏩᎭᏯ. ᎷᎦ ᎠᏥᎨᏳᎯ ᎠᎦᎾᎦᏘ ᏫᏥᏲᎵᎦ, ᎠᎴ ᏗᎹ. ᎿᏉᏃ ᏥᎷᏏᎵᎻ ᎾᎥ ᎤᏂᎷᏨ, ᏒᎦᏙᎯ, ᎣᎵᏩ ᎤᏌᎯᎸᎢ ᎢᏴᏛ, ᏥᏌ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏅᏒᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎦᎶᎯᏍᏗᏱ ᎠᏴᏍᏗᏍᎩ ᎾᏍᎩ ᎠᏫ ᎤᏂᏃᏕᎾ ᏗᎦᏘᏯ. ᎾᏍᎩ ᎢᏳᏃ ᎯᎪᎵ ᏱᏨᏔᏅ ᎬᏂᎨᏒ ᏱᏂᏴᏁᎸ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᏣᎾᏫᏱ ᎢᏴᏛ ᏱᏦᎯᏳᏅ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ ᎤᏲᎱᏒᎢ, ᎠᏎ ᎡᏣᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎠᎬᏱ ᎤᏙᏓ ᎤᏔᏪᏙᏁ, ᏃᏗ ᎤᏥ ᎤᏔᏪᏙᏁ. ᎠᏛᏁᎵᏍᎩ ᎢᏳᏍᏗ ᎾᏛᏁᎲ ᏲᎾ, ᎠᏨᏏᏰᏍᎬ ᎪᏛ ᎾᎥᏂ. ᎬᏂᏛᏰᏃ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅᎩ, ᎠᎴ ᎣᎩᎪᎲᎩ, ᎠᎴ ᎣᏥᏃᎮᎭ, ᎠᎴ ᎢᏨᎾᏄᏫᏎᎭ ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ ᎡᎲ ᏤᎮᎢ, ᎠᎴ ᎬᏂᎨᏒ ᎢᏲᎬᏁᎸᎯ ᏥᎩ-- “ᎯᎠᏗ ᏂᏓᎦᏛᏁᎵ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᏴᎨᏦᎯᏳᎲᎦ, ᎬᏂ ᏱᏥᎪᏩᏘᎭ ᎤᏰᎸᏛᎢ ᎠᎴ ᎤᏍᏆᏂᎪᏗ. ᎠᎴ ᎾᏍᎩ ᎢᎬᏱ ᏁᎰᎢ ᎣᏂ ᏂᎦᎥ ᏧᏓᎴᏅᏛ, ᎠᎴ ᎾᏍᎩ ᏂᎬᏂᏏᎭ ᏂᎦᎥ ᎪᎱᏍᏗ ᏤᎭ; ᎡᎳᏆᏗ ᎭᎦᏕ ᎠᏓᏍᏕᎵᏍᎨᎢ. ᎠᏍᎪᎯᏃ ᎤᏗᏢᏍᏙᏗ ᏄᏒᎸ ᏚᏪᎳᏗᏙᎸ, ᏏᏌᎵᏱ ᏭᎶᏒᎩ; ᎤᎩᏨᏛᏃ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸ ᎤᏬᎸᎢ ᎤᏁᏨᎩ ᏉᎳ ᏩᏥᏯᏅᏗᏱ. ᎠᎩᎵᏏ ᏍᏉ ᎠᏌᏛᎥᏍᎩ ᎨᏎ. ᎦᎸᎳᏗᏣ ᏫᏚᎧᎾᏁᎢ. ᏥᎾᏬᎦ ... ᎤᏩᏃᏪ. ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏩᏂᏌᏅ ᎤᏁᎳᏅᎯ ᏯᏥᎸᏉᏔᏅ, ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᏅᏓᎬᏂᏌᏂ ᎾᏍᎩ ᏓᏳᎸᏉᏔᏂ, ᎠᎴ ᎢᎳᏉ ᎢᏴᏛ ᏓᏳᎸᏉᏔᏂ. ᎾᏍᎩ ᎦᏳᎳ ᎢᏲᎩᏪᏛ ᏥᎩ, ᎤᏠᏱᏉ ᎯᎠ ᎪᎯ ᎨᏒ ᏂᏥᏪᎭ, ᎢᏳᏃ ᎩᎶ ᎢᏣᎵᏥᏙᏁᎮᏍᏗ ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏃ ᎾᏍᎩ ᎦᏳᎳ ᏗᏣᏓᏂᎸᏨᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ. ᏔᎵᏁᏃ ᏅᏩᎾᏓᎴ ᏧᏅᏏᏓᏍᏗ ᏚᏅᏎᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎯᎠ ᏫᏂᏗᏥᏪᏏ ᏫᎨᏥᏯᏅᏛ; ᎬᏂᏳᏉ ᎠᏆᏛᏅᎢᏍᏗ ᎠᎵᏍᏓᏴᏗ, ᏗᏆᏤᎵ ᏩᎦ ᎠᎴ ᏗᎦᎵᏦᏔᏅᎯ ᏚᏂᎸ, ᏂᎦᏗᏳᏃ ᎠᏛᏅᎢᏍᏔᏃᏅᎯ; ᏕᎨᎦᏨᏍᏗᏍᎬ ᎢᏥᎷᎩ. ᎠᏎᏃ ᎠᏂᏆᎵᏏ ᎤᎾᏙᎴᎰᏒ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎾᎾᏛᏁ ᎨᏣᏍᏓᏩᏗᏙᎯ. ᎾᏍᎩᏃ ᏧᎴᏅᎯ ᏣᏗᎭ, ᎦᏙ ᎦᏛᎦ, ᎢᏳᏃ ᎢᎬᏱᏱ ᎾᏍᏉ ᏧᏠᎠᏒ ᎡᎳᏗᏢ ᏕᎨᏌᏗᏒ ᎡᎶᎯ ᎤᎷᏨ ᏂᎦᏛᎬᎾ ᏱᎩ? ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏧᏁᎵᏁ ᎢᎦ ᎤᏂᎱᏍᏕᏎᎸᎭ ᎠᏲᎵ, ᎠᎴ ᏤᎦᎳᏯ ᏚᏃᎡᎢ, ᎤᏙᏓ ᏚᏙᎥ ᏚᏃᏍᏔᏁᎢ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᎷᏤ ᎤᏪᎿᎢ ᎠᏍᎨᏯ ᎠᎵᎹᏗᏱ ᎡᎯ ᏦᏩ ᏧᏙᎢᏛ, ᎾᏍᏉ ᎾᏍᎩ ᏥᏌ ᎤᏍᏓᏩᏗᏙᎯ ᎨᏎᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏤᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎢᏣᏛᎩᏍᎬᎢ, ᎩᎶᏰᏃ ᎤᎮᏍᏗ, ᎾᏍᎩ ᎠᏥᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᏄᎲᎾ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏥᎩᏒᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᏧᎰ ᏥᏅᏩᏍᏙᎢ. ᏕᏫᏃ ᎤᏩᏒ ᎯᎠ ᏂᎦᏪᎭ ᏗᎧᏃᎩᏍᏗᏱ ᎪᏪᎵ, ᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᏥᎦᏘᏏ ᎢᏗᏢ ᏦᎴᏍᏗ, ᏚᎭᏄᏩᎩᏐᏅ ᎤᏩᏣᏍᎬ ᏧᎭᎾᏬ, ᎤᏍᎪᎸᏨ ᏃᎴ ᎦᎸᏙᏟ ᎤᏓᏴᎳᏛ ᏅᏙ ᎠᎦᎵᏍᎬ. “ᎤᎵᏍᎨᏓ ᏗᎦᏃᏣᎶᏗ!” ᏂᏧᏪᏎ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎬ ᎤᏨᏉᏗ ᎢᏳᏍᏗ ᎤᏃᏴᎩ. ᏂᎦᏓ ᎤᏬᏗᎨ ᏄᏍᏛ, ᏴᏫ ᏃᎴ ᏚᎭᏄᏮ, ᏐᏈᎵ ᏃᎴ ᏓᏆᎴᎳ, ᏃᎴ ᏌᏬᏚᎭ ᏅᏃ. ᎠᎨᏳᏗ ᎠᏂᏲᏍᎩ ᎤᎾᏤᎵ. ᎦᎵᏦᏕᏃ ᏫᎤᏴᎸ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏅᏒ ᎨᏒ ᎬᏩᏛᏛᏁᎢ, ᎦᏙᏃ ᎠᏴ ᎥᏝ ᎦᏲᏥᏄᎪᏫᏍᏗ ᏱᎨᏎᎢ? ᎤᎾᏛᏁᎢ. ᏫᎵᎻ?” ᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ, ᏯᏂᎦᏔᎲᎾ ᎠᏕᎳ ᎤᏃᏒᏗ, ᎠᏂᏫᏒᎥᏍᎩ ᎤᎾᎵᏍᏔᏴᏗ, ᎣᎯᏍᏙᏗ ᎠᏫ ᎤᏂᎨᎲᏍᏗ ᏃᎴ ᎠᏫ ᏄᏓᏄᎸᎲ ᎡᏍᎦᏉ ᎠᏕᎳ ᎤᏃᏒᏗ. Ꭷ ᎦᏙᏃ ᎢᎡᏥᎪᎵᏰ ᎤᏁᎳᏅᎯ, ᏕᏥᎩᎳᎾᎳᏗᏍᎬ ᎠᏃᎯᏳᎲᏍᎩ, ᎾᏍᎩ ᏗᎩᎦᏴᎵᎨ ᎠᎴ ᎾᏍᏉ ᎢᎬᏒ ᏰᎵ ᎨᎦᎩᎳᎾᎳᏗᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏒᎩ. ᎠᏌᎻᏓ ᎤᏬᏢ ᎤᎾᏲᏒ ᎤᎦᏙᏍᏛ ᎪᏛ. ᎤᎪᏃᏂᏕᏅ ᎨᏒ ᎤᏃᏛ, ᎤᎭᎨᏛ ᎤᏍᎪᎸ ᏚᎦᏒᏍᏛ ᎤᏍᏔᎦᎸ ᎦᎸᎳᏗᏨ ᎤᎴᏫᏍᏛ, ᎤᏄᎸᏅ ᎤᏅᎪᎢᏍᏘ. ᎯᎠ ᏄᏪᏎ ᎠᏍᏓᏯ; ᎦᏥᏃᏍᏛ ᎭᎴᎲᎦ. ᏚᎵᏔᏗᏅᏎᏃ ᎠᎴ ᎤᏪᏙᎴᎢ. ᏭᏎᎴᎢ ᏌᎪᏂᎨ ᎠᏇᏡᏍᏗ ᎦᏓᎥ ᎡᏚᏥ ᎤᏴᏍᏗ. ᎯᏍᎩᏃ ᏫᏄᏒᎳ ᎡᏂᎾᏯ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎷᏨᎩ, ᎠᏁᎲ ᏗᎨᎦᏁᎶᏗ, ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᏗᏘᏲᎯ-Ꭿ, ᏔᏓᎳ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎤᏂᏃᏁᎸᎩ ᎤᎬᏫᏳᎯ, ᎠᏄᎯᏍᏗᏍᎬ ᏉᎳ. ᎠᏌᎻᏓ, ᏄᏩᏁᎰᏅ ᎬᏂᎨᏒ ᎢᎬᏁᏗ, ᎤᎷᏨ, ᎩᎶ ᏳᏑᏰᎲ ᏧᎳᏍᎩ ᎤᏛᏅ. ᏫᏥᎷᏨᏃ ᎾᏍᎩ Ꮎ ᎣᏏᏳ ᏗᏥᏰᎸᏅᎯ, ᎾᏍᎩ ᏗᎦᏥᏯᎨᏅᏗᏍᏗ ᎨᏎᏍᏗ ᎪᏪᎵ, ᎾᏍᎩ ᎠᏂᏰᎩ ᏥᎷᏏᎵᎻ ᏂᎯ ᎢᏣᎵᏍᎪᎸᏔᏅᎯ. ᎭᎾᎾ ᎭᏫᏂᏣ ᎠᎮᎢ ᏌᏌ ᎤᏪᏥ. ᎠᏎᏃ ᎢᏤᏯᏔᎮᏍᏗ ᏤᏍᏗ ᎾᏍᎩ ᎢᎨᏣᏛᏁᏗ ᎢᏥᎲ ᏗᏂᏩᎾᎦᎳ ᏧᏃᏕᏍᏗᏍᎩ ᏱᏄᎵᏍᏔᏁᏍᏗ. ᎤᏙᎯᏳ ᎢᏅᎯ ᏅᏩᏍᏕ ᎠᏙᎯ, ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏪᏙᎸ ᏱᎨᏎ ᎠᏙᎯ ᏃᎴ ᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎣᏍᏓ ᎤᏰᎸᏗ. ᏦᏞᏍᏗ.” ᏎᎦᏨ ᎤᏓᏅᏖᎴ ᎪᏱᏁᎢ ᎤᏩᏛᎲᏍᏗ ᎦᏂᎦᏔ ᎡᎹᏂᏓ ᏃᎴ ᎤᏛᏛᏗ ᎢᏳᏍᏗ ᎢᎫᏩᏛᏁᏗ ᎨᏒ. ᎾᏍᎩᏍᎩᏂ ᎾᎧᏃᎮᏛ ᎤᏙᎯᏳᏒ ᎢᎦ-ᎦᏘ ᎨᏒᎩ; ᎾᏍᎩ ᎡᎶᎯ ᏧᎷᏨ, ᎢᎦ ᏥᏕᎠᏘᏍᏓᏁ ᎾᏂᎥ ᏴᏫ. ᎩᎶᏍᎩᏂ ᏧᏢᏫᏎᎯ ᏕᎫᎪᏗᏍᎪ ᎤᏍᎦᏅᏨ ᎢᏳᏃ ᏳᎵᏍᏓᏴᏅ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏄᏬᎯᏳᏒᎾ ᎨᏒ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ; ᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᏅᏗᏓᎴᎲᏍᎬᎾ ᏱᎩ ᎠᏍᎦᏂ ᎨᏐᎢ. ᎤᏔᎶᏁ ᏃᎴ ᏭᏥᏤᎢ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ. ᎠᎴ ᎾᏍᎩ ᎤᏘᏃᎸᎩ ᏥᏌ ᎡᏙᎲᎢ. ᏥᏌᏃ ᏚᎧᎿᏅᎯᎠ ᏄᏪᏒᎩ; ᏌᏩᏂ ᏂᎯ, ᏦᎾ ᎤᏪᏥ, ᏏᏆᏏ ᏕᏣᏙᎡᏍᏗ; ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᏈᏓ ᎦᏛᎦ. ᎤᏙᎴᎰᏒᏉᏃ ᎡᎶᏛ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎿ ᎡᏗ ᎨᏒᎢ, ᎡᎶᏛ ᏭᏪᎧᎾᎴᎢ, ᎾᏍᎩ ᎡᎶᏛ ᎤᏩᏒ ᏥᎷᏏᎵᎻ ᎡᏙᎮ ᎾᎯᏳᎢ. ᏔᎵᏁᏃ ᎢᏌᏯ ᎯᎠ ᏂᎦᏪᎭ; ᎤᎿᏍᏕᏢ ᎦᎾᏄᎪᎨᏍᏗ ᏤᏏᏱ, ᎠᎴ ᎠᏏᏴᏫ ᏙᏛᎴᏂ ᎤᎬᏫᏳᏌᏕᎩ ᎢᏳᎵᏍᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ; ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᎬᏩᎵᏍᎦᏍᏙᏔᏂ. ᎠᏓᏅᎡᎮᏍᏗ ᎤᏲ ᎨᏒᎢ ᎣᏍᏛᏃ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ; ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᎤᏲᎮᏍᏗ ᎠᎴ ᎾᏍᎩ ᏓᎧᎿᏩᏕᎨᏍᏗ. ᎨᏥᏅᏏᏛᏃ ᏥᎷᏏᎵᎻ ᎠᏂᏂ ᎤᎾᏛᎦᏅ ᏌᎺᎵᏱ ᏕᎤᎾᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᏚᏂᏅᏎ ᏈᏓ ᎠᎴ ᏣᏂ ᎾᏍᎩ ᏧᏂᏩᏛᎲᏍᏗᏱ. ᏐᏉ ᏄᎳᏏᏁ ᏔᎷᎩᏍᎩ ᎢᏣ. ᎾᏍᎩ ᏥᏄᏍᏗ ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᏫᏨᏲᏪᎳᏁᎸᎩ, ᎠᏎᏃ ᎥᏝ ᎤᏣᏘᏂ ᎢᏳᏛᏁᎸᎯ ᏳᎬᏩᎴᎢ, ᎥᏝ ᎠᎴ ᎾᎤᏣᏘᏂ ᎢᏯᎦᏛᏁᎸᎯ ᏳᎬᏩᎡᎢ; ᎠᏍᎩᏂ ᎢᏨᏍᏆᏂᎪᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎬᏂᎨᏒ ᎢᏣᎵᏍᏓᏁᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎯᎠ ᏥᏂᎦᏪᎭ, ᎪᎯ ᎢᎦ ᎢᏳᏃ ᎧᏁᎬ ᎢᏣᏛᎪᏗᏱ ᎢᏣᏚᎵᏍᎨᏍᏗ, ᎠᏎᏃ [ᎾᏍᎩ ᏄᎵᏍᏔᏅᎩ] ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒ ᎤᎵᏁᏨ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᏧᏂᎧᎿᏩᏛᏍᏗᏱ; ᎠᏎᏉ ᎬᎩᏍᎦᎬᎩ. ᎾᏍᎩᏃ Ꮎ ᎢᎪᏢᏅᎯ ᎯᎠ ᎾᏍᎩ ᎤᎬᏩᎵ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎾᏍᏉ ᏦᎩᏁᎸ ᎠᏓᏅᏙ ᎠᎦᏗᏗᏍᏙᏗ ᎨᏒᎢ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏰᎵᏉ ᏧᏰᎸᏅ ᎣᎦᎨᏅᏗᏍᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩᏯ ᎣᏥᏁᎦ; ᎥᏝ ᏴᏫᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏗ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎾᏍᎩ ᏗᎪᎵᏰᏍᎩ ᏥᎩ ᏗᎩᎾᏫ. ᎦᎸᎳᏗ ᏩᏌᏅ ᏚᎵᎬᏩᏢ, ᎠᏎᏃ New Jersey ᎢᏴ ᏭᏂᏩᎯᏍᏗᏉ ᎠᏰᎵ ᎢᏴ ᎤᎾᏈᏴᏗ ᎠᎾᏗᏍᎬ. ᏓᏍᏓᏎᎮᎵᏃ Ꭴ-ᏛᎾ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᎣᏍᏛ ᎢᎬᏁᎸᎯ; ᎾᎿ ᎢᏍᏓᏛᏅᎢᏍᏔᏅᎭ. ᎾᏍᎩ [ᎣᏍᏛ ᎧᏃᎮᏛ] ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎥᎩᏅᏏᏛ ᏥᎩ; ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎾᎿᏂ ᏂᏥᏍᎦᎢᎲᎾ ᎠᎩᏁᎢᏍᏗᏱ, ᎾᏍᎩᏯ ᎢᏯᎩᏪᏍᏗᏱ ᏥᏚᏳᎪᏗ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎾᎯᏳ ᏂᎦᏗᏳ ᏴᏫ ᎣᏏᏳ ᎨᏥᏃᎮᏍᎨᏍᏗ! ᎾᏍᎩᏯᏰᏃ ᏧᏂᎦᏴᎵᎨ ᏂᏚᏂᎸᏉᏕ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ. ᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ, ᏓᎾᏗᏔᏍᎨᎢ, ᏓᎾᏕᏒᎲᏍᎨᎢ, ᏕᎨᏥᏰᎨᎢ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᏃᏯ ᎤᏣᏅ ᏥᏳᎯ, ᎠᎴ ᎤᏃᎱᎦᏂᎸ ᎠᎴ ᏂᎦᏛ ᏚᏂᎬᏦᏅ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏄᏪᏒᎩ ᎠᏥᎪᎵᏰᏍᎬᎩ, ᎤᏩᏒᏰᏃ ᎠᎦᏔᎲᎩ ᎢᏳᏛᏁᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᏓᏅᏟ, ᎢᏨᏒ ᎢᏣᏓᏡᎬ ᏗᏣᏑᏯᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎣᏍᏛ ᎨᏥᏃᎮᏍᎩ ᎤᏂᎧᎵᏨᎯ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎠᏂᎦᏔᎾᎢ, ᎾᏍᎩ ᎯᎠ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏗᎦᏲᏥᏁᏤᏗ. ᏂᎯ ᏥᏔᏲᎯᎲ ᏰᎵᏉ ᎠᎩᏲᎰᏎᏗ ᎬᏅ, ᎨᏍᏗ ᏰᎵ ᏱᏗᏣᎭ ᎠᏂᏩᏥᏂ ᎠᏕᎳ ᏍᏆᏈᏴᎡᏗ ᎠᎩᏲᎰᎡᎸ. ᏚᏂᎪᎮᏃ ᏔᎵ ᎢᏧᏓᎢ ᏗᎦᏃᎦ ᎠᏥᎸ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎾᏍᎩ ᏚᏂᏯᎸᏤ ᎠᏂᏏᏴᏫᎭ ᎨᏒᎢ. ᏥᏌᏃ ᎤᎾᏘᏃᎮᎴᎢ; ᏧᎾᏄᏬᏃ ᎠᎩᎾ ᎦᏐᎯ ᏚᏂᏢᏁᎢ, ᎠᎴ ᎾᎿ ᎤᎾᎩᎸᏔᏁ ᏥᏌ. ᎠᎴ ᎢᏣᏟᏂᎬᏁᏗᏱ ᏅᏩᏙᎯᏯᏛ ᎢᏣᏕᏗᏱ, ᎠᎴ ᎢᏨᏒ ᎢᏣᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᎢᏨᏒ ᏗᏦᏰᏂ ᏗᏨᏙᏗᏱ ᎪᎱᏍᏗ ᎢᏣᏛᏁᏗᏱ, ᎾᏍᎩᏯ ᏂᏨᏪᏎᎸᎢ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᏛ ᎤᎿᎥᎢ ᏛᎦᏘᏗᏍᏔᏂ. ᏥᏌᏃ ᎤᏛᎦᏅ ᎤᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴ ᎤᏓᎬᏩᏍᏓᏩᏛᏛ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎾᏍᏉ ᎢᏏᎵ ᏚᏙᎥ ᎾᏍᎩ ᎢᎦᎢ ᎪᎯᏳᏗ ᎨᏒ ᏯᎩᏩᏛᎲ. ᎦᏄᎸ ᎤᏔᎷᎩᏍᎩ ᎠᏰᏍᏓᎥᎢ ᎢᏳᏍᏗ ᏄᏍᏕᎢ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ, ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ ᎯᎠ ᏄᏪᏎᎴ ᎠᏕᎸ ᎤᎦᏘᏕᎯ, ᏫᏘᏯᏅ ᎪᎱᏍᏗ ᎠᎾᏛᎾᎯ ᎠᎴ ᏔᎫᏴᏏ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ, ᎣᏂᏱ ᎨᏥᏅᏒᎯ ᏔᎴᏅᏓ ᎢᎬᏱᏱᏃ ᎨᏥᏅᏒᎯ ᏘᏍᏆᎸᏓ “ᎪᎱᏍᏗᎨ ᏓᏨᎩᎡᎵ? ᏥᎪᏩᏛ ᎠᏕᎸ ᎠᏰᎵ ᎠᎫᏴᏙᏗ. ᎠᎩᏏᏃ ᏧᎬᏩᎶᏗ ᎬᏩᏲᎮᎸᎩ. ᎠᏎᏃ ᎢᏓᏓᏅᏟ, ᏭᏓᎪᎾᏛᏛᎢ, ᏞᏍᏗ ᏱᏣᏎᎵᏛᏍᎨᏍᏗ ᏱᏥᏁᎢᏍᏗᏍᎨᏍᏗ ᎦᎸᎶᎢ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᏞᏍᏗ ᏄᏓᎴᏒᏉ ᎠᏎᎵᏙᏗ ᎨᏒᎢ; ᎠᎴ ᏞᏍᏗ ᏄᏓᎴᏒᏉ ᎠᏎᎵᏙᏗ ᎨᏒᎢ; ᎢᏣᏤᎵᏍᎩᏂ ᎥᎥ ᎢᏣᏛᏗ ᎨᏒ ᎥᎥ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏣᏤᎵ ᎥᏝ ᎢᏣᏛᏗ ᎨᏒ ᎥᏝ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ ᏞᏍᏗ ᏤᏧᎪᏓᏁᎸᎩ ᎢᏥᏍᎦᏅᏨᎢ. ᎨᏆᏂᏃ ᏭᏂᏴᎴᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏴᎸ ᏚᏕᏲᏁ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ. ᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᎤᏍᏗ ᎤᏙᎯᏳᏒ ᎨᏒᎢ? ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᏔᎵᏁ ᎤᏄᎪᏨᎩ ᎠᏂᏧᏏ ᎠᏂᏙᎾᎥ ᏭᎶᏒᎩ, ᎠᎴ ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᏱᏥᏩᏘᎭ ᎤᏍᎦᏅᏨᎢ. ᏚᎳᏫᏛᏃ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ, ᎠᎴ ᏴᏫ ᏗᏃᏪᎳᏁᎯ, ᏚᏛᏛᏁᎢ, ᎾᎿ ᎤᏕᏗ ᎨᏒ ᎦᎶᏁᏛ. ᎤᏙᎯᏳᎯᏯ ᎠᎩᎪᎲ ᎤᏲ ᏄᎾᎵᏍᏓᏁᎵᏕᎬ ᏴᏫ ᏗᏆᏤᎵ ᎢᏥᏈᏱ ᏣᏁᎭ, ᎠᎴ ᎠᏆᏛᎦᏅ ᏚᏂᎵᏰᏗᏍᎬᎢ, ᎠᎴ ᎠᏆᏠᏱᏏᎸ ᏕᎫᏓᎴᏏᎸ; Ꭷ ᎿᏉ ᏓᎬᏅᏏ ᎢᏥᏈᏱ. ᏓᎦᏥᏯᏙᎵᏥᏰᏃ ᎤᏣᏘᏂ ᏄᎾᏛᏁᎸᎢ, ᎤᏂᏍᎦᏅᏨᏃ ᎠᎴ ᎤᏲ ᏄᎾᏛᏁᎵᏙᎸ ᎿᏉ ᎠᏆᏅᏓᏗᏍᏗ ᏱᎨᏎᏍᏗ. ᎵᎧᎸᎩᏉᏰᏃ ᏅᏙ ᎤᏗᎴᎩ, ᎿᏉ ᎬᏴᏗᏍᎪ ᎧᏃᏍᎦ, ᎠᎴ ᎤᏥᎸᏒ ᎦᏙᎠᏍᎪᎢ, ᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᎤᏙᏢᏒ ᎠᏲᎪᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎤᏪᎿᎢ ᏓᎬᏴᏏ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎬᏂᎨ ᎠᏙ ᏂᎬᎾᏛ. ᎠᎴ ᏚᎴᏁ ᎤᏙᏓ ᏭᎷᏤᎴᎢ. ᎠᏎᏃ ᎠᏏ ᎢᏅᎯᏳ ᎤᏙᏓ ᏭᎪᎮᎢ, ᎠᎴ ᎤᏪᏙᎵᏤᎢ, ᎠᎴ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᎠᎩᎵᎨᏂ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ. ᎾᎿᏃ ᎠᏔᎴᏒᎩ ᎠᎹ ᏧᏂᏢᏗᏱ ᏤᎦᏈ ᎤᏤᎵᎦ; ᏥᏌᏃ ᏚᏯᏪᏨ ᎠᎢᏒ ᎤᏪᏅᎩ ᎠᏔᎴᏒᎢ; ᏔᎳᏚᏃ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏒᎩ. ᎠᎴ ᎥᎩᏃᏁᎸ ᎠᏂᏧᏏ ᎤᏂᎭᎷᎬ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎩᎳᏉ ᎢᏴᏛ ᎠᏆᏓᏅᏒ ᏗᏦᎸᎢ, ᎠᎴ ᎾᏍᏉ ᎦᏥᏁᏤᎸ ᎬᏬᎯᏍᏗᏍᎩ ᎯᎦᏔᎲ ᎤᏂᏃᎮᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏄᎯᏍᏗᏍᎬᎢ. ᏙᎯᏱ ᏂᏣᏛᎿᏕᎨᏍᏗ. ᎠᏎᏃ ᎣᎦᏕᏲᏅ ᏧᏍᎦ ᏡᎬ ᏝᏃ ᎥᏍᏊ ᎪᎱᏍᏗ ᎤᎩᎸ ᏲᏥᎪᎡ. ᎠᏎᏃ ᎢᎬᏩᏍᏗᏰᏔᏁᎢ, ᎯᎠ Ꮔ-ᏴᏪᏎᎢ, ᎠᏴ ᏍᎩᏂᏒᏏ, ᎿᏉᏰᏃ ᎤᏒᎯᏰᎯᏳ, ᎠᎴ ᎡᎳᏗᏳ ᏫᎧᎳ. ᎤᏴᎴᏃ ᏙᏗᏒᏎᎵᏎᎢ. ᎾᏍᎩ ᎾᏍᏉ ᏫᏂᎦᎵᏍᏙᏓ ᏂᎯ ᎢᏣᎵᎮᎵᎩ ᎠᎴ ᏍᎩᏯᎵᎪᎲᏏ ᎠᏴ ᎦᎵᎡᎵᎬᎢ. ᎢᏳᏰᏃ ᏌᏉ ᏴᏫ ᎤᏍᎦᏅᏨ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏰᎭ ᎾᏍᎩ ᎠᏏᏴᏫ ᎢᏳᏩᏂᏌᏛ; ᎤᏟᎯᏳ ᏄᏓᎷᎸᎾ ᎾᏍᎩ ᎤᏣᏘ ᎨᏥᏁᎸᎯ ᏥᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎬᏩᎦᏘᏯ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎬᏂᏛ ᏗᎨᏒ ᎤᏂᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏏᏴᏫ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ. ᎯᏍᎩ ᎦᏚ ᏓᎩᎬᎭᎷᏴ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᏕᏥᏁᎸ, ᎢᎳᎪ ᎢᏯᎧᎵᎢ ᏔᎷᏣ ᎤᎵᎬᎭᎷᏴᎯ ᎢᏧᏖᏎᎢ? ᏔᎳᏚ ᎢᎬᏬᏎᎴᎢ. ”ᎭᏗ ᎪᎱᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᏗᏆᎵᎢ ᎠᏁᎰ ᎭᎾᎾ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏓ. ᏄᏂᏩᏛᎲᎾᏃ ᎨᏎ ᏰᎵ ᎬᏩᏲᏞᎯᏍᏗ ᎨᏒᎢ, ᎠᏎᏃ ᎤᏂᏔᏲᏎᎴ ᏆᎴᏗ ᎾᏍᎩ ᎠᏥᎢᏍᏗᏱ. ᎢᏳᏰᏃ ᎢᏤᎲ ᎤᏇᏓᎵ ᎨᏒ ᎢᏥᏍᏓᏩᏗᏙᎮᏍᏗ, ᏙᏓᏥᏲᎱᏏ; ᎢᏳᏍᎩᏂ ᎠᏓᏅᏙ ᎬᏗ ᎠᏰᎸ ᏚᎸᏫᏍᏓᏁᎲ ᎢᏥᎯᎮᏍᏗ, ᏕᏨᏁᏍᏗ. ᎤᏁᏅᏎᏃ ᎠᎴ ᏂᎬᎾᏛ ᎤᎾᎵᏥᏙᏂᏙᎴᎢ, ᎤᎬᏫᏳᎯ ᏔᎵ ᎤᏛᏗᏕᎨ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎠᏂᏁᎬ ᎠᏍᏓᏱᏗᏍᏗᏍᎨ ᎤᏰᎸᏛ ᎤᎵᏠᏯᏍᏗᏕᎬᎢ. ᎡᎺᏅ. ᎢᏳ ᎠᎴ ᎯᎦᏙᎵ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ ᎠᎴ ᏫᏣᏕᎨᏍᏗ; ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉ ᏱᎧᎿ ᎬᏂᏛ ᏗᎨᏒ ᏫᏱᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏱᏘᎧᎿ ᏨᏍᎩᏃᎢ ᎠᏥᎸᏱ ᏫᏰᏣᏓᎢᏅ. ᎾᎿᏃ ᎠᏂᏯᏒ ᏂᎦᏛ ᏧᎾᏓᎴᏅᏛ ᏅᎩ ᏗᏂᏅᏌᏗ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ. ᏚᎪᎲᏃ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᎾ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎬᏂᎨᏒ ᏫᏂᏗᏣᏛᏂᏏ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎠᎾᎢᏒᏉ ᏚᎾᏓᏅᎦᎸᎮᎢ. “ᎨᏍᏗ ᎠᏯ ᎠᏆᏣᏅᏓᏕᎲ ᏯᏍᏆᎵ ᎠᎾᏓᎪᎾᏗᏍᎬ. ᎾᎿᏃ ᎢᎤᏓᏅᏒ, ᏧᏂᎳᏫᎢᏍᏗᏱ ᏭᏴᎸᎩ. ᎤᏛᎦᏍᏕ ᏫᎵᎻ, ᎤᏓᏅᏙᎩ ᎤᎧᎵᏤ ᎠᏓᎨᏳᏗ. ᏕᏥᎳᏫᎩᏰᏃ ᎢᎸᎯᏢᎢ, ᎥᏝ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎠᎵᏍᏓᏴᏗ ᏱᏣᎵᏍᏓᏴᏂᎰᎢ. ᏳᏰᏃ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎣᏤᎭ ᎠᎴ ᏱᎧᏁᏉᎦ, ᎾᏍᎩ ᏱᏂᎬᏂᏌ ᎥᏝ ᎢᏥᏍᎦᏃᎸ ᎠᎴ ᏂᏥᏁᏉᏣᏛᎾ ᏱᎦᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ. ᎾᏍᎩ ᏤᏌᏂ ᏚᏓᏂᎸᏨ; ᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᎾᏡᏗᎭ ᏏᏌ ᎤᏁᏨᎢ, ᎯᎠ ᎾᏂᏪᎭ; ᏅᏩᏓᎴ ᎤᎬᏫᏳᎯ ᎡᎭ, ᎾᏍᎩ ᏥᏌ. ᎠᎵᎮᎵᎨ ᏕᎦᏟᏔᏗᏍᎬ ᏍᎪᏯ ᎠᎬᏱ ᎩᎳ ᏕᎦᏯᎩᏍᎨᎢ. ᏂᎦᏓ ᏚᏂᏁᎸ ᎨᎦᎫᏴᎡ ᎠᎾᏕᏒᎲᏍᎩ ᎤᏃᏴᎬ ᎧᏃᎩᏍᏗ, ᏃᎴ ᎦᎾᏅᎪᎬ ᎠᏒᎬ ᎠᏙᏁᏙᏗ ᏃᎴ ᎠᎵ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏫᏯᎩᎷᏨ ᏓᎦᏅᏓᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩ ᎤᏲ ᎦᏬᏂᏍᎬᎬᏗ ᏦᎦᏡᏗᎭ, ᎠᎴ ᎥᏝ ᎾᏍᎩᏉ ᏰᎵ ᏳᏰᎸᎭ, ᎥᏝᏰᏃ ᏂᏓᏓᏂᎸᎬᎾᏉ ᎤᏩᏒ ᏱᎩ ᎠᎾᏓᏅᏟ, ᎾᏍᏉᏍᎩᏂ ᏕᎦᏅᏍᏓᏕᎭ ᏗᎬᏩᎾᏓᏂᎸᎢᏍᏗ ᏥᎨᏒᎢ, ᎠᎴ ᏕᎦᏄᎪᏫᏍᎦ ᏧᎾᏁᎶᏗ ᎤᏁᏓᏡᎬ. ᎥᏝᏃ ᏳᏣᏖ ᎤᏍᏆᏂᎪᏗ ᎾᎿ ᏱᏚᎸᏫᏍᏓᏁᎴᎢ, ᎾᏃᎯᏳᎲᏍᎨᎾ ᎬᏒ ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏅᏫᏍᏔᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏳᎯ ᎤᎾᏦᏗᏱ, ᎠᎴ ᎢᎬᏱ ᏧᏂᏐᎯᏍᏗᏱ, ᏇᏤᏱᏗ ᏭᏂᎷᎯᏍᏗᏱ, ᎠᏏᏉ ᎤᏩᏒ ᏓᏰᎵᎯᏍᏗᏍᎬ ᎤᏂᏣᏘ. ᎠᏏᏃ ᎤᎪᏂᏲᎨ ᎠᏕᏒᎲᏍᎩ, ᏂᎦᏛ ᎠᏂᎵᏅᎨᎢ, ᎠᎴ ᎤᏂᎵᏅᏤᎢ. ᏔᎵᏁ ᎢᏣᏕᏅᎯ ᎨᏒᎢ, ᎥᏝ ᎠᏲᎩ ᎤᎦᏔ ᎢᏣᏕᏔᏅᎯ ᏱᎩ, ᎠᏲᎩᏍᎩᏂ ᏂᎨᏒᎾ ᎧᏃᎥᏛ ᎤᏁᎳᏅᎯ ᎤᏟᎵ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩ ᎬᏃᏛ ᏥᎩ ᎠᎴ ᏂᎪᎯᎸ ᎡᎯ ᏥᎩ. ᏰᎵ ᎣᏍᏓ ᎤᏓᏅᏖᏗ ᎨᏎ, ᏍᎩ ᎤᏛᏅ. ᏚᎧᏔᎾᏫᏍᏔᏅ ᏧᏍᏗ ᏧᏁᎫᏥᏓ ᏗᎧᏅ ᎭᏫᏂᏨ ᎤᎵᏍᎩᏃᏘᏍᏗ ᎤᏁᎦ ᎤᏍᏘᏰᎬ. ᏃᎴ ᎨᏍᏗ ᎣᏍᏓ ᏯᎩᎪᎵᏰ, ᎠᏓᏅᏖᏍᎬ ᎾᏍᏓᏴ ᎠᎩᏍᏘ ᎦᎶᏇ ᎬᏘ ᏲᎩᎾᏟᎳ ᎠᎴ ᎠᏰᎳᏍᏘ ᎬᏘ ᏲᎩᎾᏟᎳ ᏧᎾᏗᏔᏍᏗ. ᎢᏧᎳ ᏧᏍᏆᏙᏅ ᎨᏎ ᏓᏟᎲ ᎠᏫᏄᏣ ᏃᎴ ᎤᏛᏒ ᏥᎨᏎ. ᎠᏓ ᎠᏲᏍᏗᏍᎩ ᎤᏉᏓᏘ, ᎦᏓ ᏫᏂᎦᎵᏍᏗ. ”ᎣᏍᏓᏧ ᏣᏰᎸᎮ ᏪᏙᎲ ᏗᎾᏓᎪᎾᏗᏍᎬ?” ᎤᏛᏛᏁ ᎤᏤᎵ ᎠᎨᏳᏣ ᎠᏔᏪᏙᏍᎬ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᎤᏟ ᎢᎦᎢ ᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᏄᏜᏏᏛᏒᎾ ᎢᏨᏁᏗᏱ ᎡᏥᏯᏅᎲ ᎠᎴ ᎡᏣᏑᏰᏒᎢ; ᎢᏳᏰᏃ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏱᏂᏣᏛᏁᎭ, ᎥᏝ ᎢᎸᎯᏳ ᏱᏙᎨᏥᏅᎩ. ᎤᏲ ᎢᏣᏓᏅᏓᏓ ᎠᎴ ᏗᏥᏴᎳ ᎠᎴ ᏗᏣᏠᏱᎦ; ᎢᏥᏰᏣᏍᎬᎢ ᎠᏴᎵᏍᏗ ᎨᏒ ᏩᏓᏁᏟᏴᏍᏓ, ᎠᎴ ᎢᏣᎵᎮᎵᎬ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏩᏓᏁᏟᏴᏍᏓ. ᎠᎴ ᏕᎭᏓᏅᎡᎮᏍᏗ ᎩᎳ ᏗᎾᏛᏍᎩ ᎤᎾᏚᎸᏅᏗ ᎨᏒᎢ; ᎯᏍᏓᏩᏕᎨᏍᏗᏃ ᏚᏳᎪᏛ ᎨᏒ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒᎢ, ᎢᏣᎵᎪᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᎤᎾᏫ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏅᏗᏍᎩ. ᎯᎠᏃ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᎩᎵᏲᎢᏍᏗᏱ ᏗᎨᏒ ᏮᏛᏂᎶᏏ; ᎤᎾᏓᏅᏘᏍᎩᏂ ᏫᎾᏍᏛᎾ ᎬᏂᏛ ᏗᎨᏒᎢ. ”ᎨᏍᏗ ᎠᏆᏁᎸᏔᏅ ᏱᎩ.” ᏚᏁᏤᎴᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᏥᏳ ᎤᎦᏘᏗᏍᏗᏱ, ᎤᏂᏣᏘ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎬᏩᏁᏄᎳᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᎠᏉᏠᎢᏉ ᏥᎦᏘᏲ. ᎠᎦᏍᎩ ᏗᎦᏙᎨ ᏣᏄᏏ, ᎠᏑᏰᏍᎨ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ. ᏞᏍᏗ ᎠᎴ ᎡᎶᎯ, ᏧᎳᏏᏗᏱᏰᏃ ᎾᏍᎩ; ᎠᎴ ᏥᎷᏏᎵᎻ, ᎾᏍᎩᏰᏃ ᎠᏥᎸᏉᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎦᏚᎲᎢ; ”ᏥᏓᎯ ᎠᏋᏌ ᎠᏇᏅᏍᏗ ᎡᎶᎯ,” ᎤᏪᎵᏎ ᎤᏂᏏᎾ. ᎾᏍᎩᏂ ᎥᎰᎵ ᏅᏓᏳᏄᎪᏨᎯ ᎣᎾᏫᏱ ᏗᏓᎴᎲᏍᎪᎢ, ᎾᏍᎩᏃ ᎦᏓᎭᏄᏩᏁᎰ ᏴᏫ. ᎡᏆ ᎤᏔᎶᏁ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᎪᎵ ᏣᎵ, ᎤᏛᎦᏍᏕ ᎠᏂᎾᏁᏍᎬ ᎠᎾᏓᎭᏲᎯ, ᎠᏎᏃ ᏧᏤᎵ ᏴᏫ ᎠᏂᎾᏁᏍᎬ ᎨᏍᏗ ᎫᏩᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᎢᏴ ᏗᎾᎢᏒ ᎠᎾᏓᎭᏲᎯ. ”ᎦᎵᏉᎩ ᎾᏂᎠ,” ᎤᏛᏁ ᏌᏌ. ᏚᎾᎧᎾᏅᏃ ᎥᏝ ᎩᎶ ᏳᏂᎪᎮ ᏥᏌ ᎤᏩᏒ. ᏚᏂᎩᏒᏃ ᎠᏕᎸ, ᏂᎨᏥᏪᏎᎸ ᏄᎾᏛᏁᎴᎢ. ᎾᏍᎩᏃ ᎯᎠ ᎧᏃᎮᏛ ᎠᏏ ᎠᏂᏃᎮᎵᏙᎭ ᎠᏂᏧᏏ. ᎤᎾᏁᎶᏔᏁᏃ ᎬᏩᏂᏴᏗᏱ, ᎠᏎᏃ ᎤᏂᏣᏘ ᏴᏫ ᏓᏂᏍᎦᎢᎮᎢ; ᎠᏂᎦᏔᎮᏰᏃ ᎤᏅᏒ ᎨᏥᏛᎬ ᎾᏍᎩ ᏚᏟᎶᏍᏔᏅᎢ; ᎢᎬᏩᏓᏅᎡᎴᏃ ᎠᎴ ᏚᏁᏅᏎᎢ. ᎩᎶᏰᏃ ᎢᏳᎾᏍᏗ ᎠᏂᏍᎦᏯ ᎤᏕᎵᏛ ᎤᏂᏴᎸᎯ ᎢᎩ ᎾᏍᎩ ᎢᎸᎯᏳ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏗᎨᎪᎥᎯ ᏥᎩ ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎨᎫᎪᏓᏁᏗᏱ; ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᎠᏂᏍᎦᏯ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏂᏁᏟᏴᏍᎩ ᎾᎵᏏᎾᎯᏍᏛᎾ ᎠᎴᏂᏓᏍᏗ ᎨᏒ ᎢᏯᏅᏁᎯ, ᎠᎴ ᎠᎾᏓᏱᎯ ᎤᏩᏒᎯᏳ ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎤᎧᏲᏓ ᏄᎵᏍᏔᏁ ᏓᏏᎳᏛ, ᎨᏍᏗ ᏍᎩᏲᏍᏓ ᎠᎪᏩᏛᏗ ᏱᎨᏎ ᏕᎪᏪᎸ. “ᏑᎾᎴ ᏕᎾᏓᎪᏴᏳ.” ᎤᎵᏍᎨᏓ ᏏᏆ ᏫᎵᎻ ᎡᎵᎠ ᎰᎻ, ᏃᎴ ᎨᎵᎠ ᏱᎫᏩᏚᎵ ᎤᎯᏍᏗ ᎠᎴ ᎤᏩᏯᎩᏍᏗ. ᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᎪᏩᏛ ᏌᎳᏓ. ᏗᎹᏗ ᎢᏧᎳᎭ ᏦᎩᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎷᏏᏯ, ᎠᎴ ᏤᏌᏂ, ᎠᎴ ᏐᏏᏇᏓ ᎪᎱᏍᏗ ᏗᏋᏅ, ᏫᎨᏥᏲᎵᎦ. ᎠᏁᎭᏰᏃ ᎠᏂᎾᎵ ᏅᏩᎾᏍᏙ ᏧᏂᏥ ᎬᏩᏂᎾᏄᎪᏫᏒ, ᎠᎴ ᎠᏁᎭ ᎠᏂᎾᎵ ᏴᏫ ᎬᏩᏂᎾᎵᏛᎯ, ᎠᎴ ᎠᏁᎭ ᎠᏂᎾᎵ ᎤᏅᏒ ᎤᎾᏓᎾᎵᏛᎯ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏗᎵᏰᎢᎸᏍᏗᏍᎬᎢ. ᎩᎶ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏓᏓᏂᎸᎨᏍᏗ. ᎠᎴ ᎢᏧᎳ ᏚᏳᎪᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎨᏎ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏅᎢ, ᏓᏂᎧᎿᏩᏗᎭ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎤᎵᏁᏨ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎨᏒ ᏱᎰᏩ ᏧᏤᎵᎦ, ᎤᏐᏅ ᏂᎨᏥᎳᎾᏎᎲᎾ. ᎠᏏᏴᏫᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎠᏂᎦᏲᎵᏉᏍᎪ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎿᏉᏃ ᎤᎾᏓᏟᏌᏅ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎿᏉᏍᎪ ᎠᏰᎵ ᎪᏢᏒ ᏙᏛᎯᏁᎵ ᎢᏏᎵ? ᎠᏤ ᎡᎾᎢ ᎠᏂᎩᏍᎪ ᏃᎴ ᏧᎾᏗᎩᏓ ᏓᏂᎯᏯᏍᎪ ᎦᏙᎯ. ᎣᏍᏛ ᏗᏁᎶᏙᏗ ᎨᏒ ᎠᎴ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎦᏔᎲ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎯᎠ ᏄᏍᏗ, ᏗᏩᏛᎯᏓᏍᏗᏱ ᏧᎾᏓᏂᏯᏛ ᎠᎴ ᏧᏃᏑᎶᏨᎯ ᎤᏲ ᏄᎾᏛᎾᏕᎬᎢ, ᎠᎴ ᎤᎵᏍᏆᏂᎪᏙᏗᏱ ᎤᏩᏒ ᏄᏚᏯᏍᏛᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎡᎶᎯ ᎠᏁᎯ ᏄᎾᏍᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᏃᏊᏃ ᎩᎦᎨ ᏧᏂᏥᎸᏍᎩ ᎤᏂᏥᎸᏙᏎᎢ ... ᏚᏓᏟᏴᎮᎢ ᏫᎵᎻ. ᎿᏉᏃ ᏈᏓ ᎤᎴᏅᎮ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎠᏴ ᏂᎦᏗᏳ ᎣᎬᏕᏦᏅ, ᎠᎴ ᏂᎯ ᎢᏨᏍᏓᏩᏕᏅ. ᎠᏓᎾᏫᏗᏍᎩ ᎱᎷᏤ ᏫᎵᎻ. ᏂᎦᏓ ᎤᎾᎦᏙᏍᏕᎢ ᎦᏓᎥᎢ. ᏐᏉ ᎢᎦ ᎯᎠ ᎠᏂᏣᎳᎩ ᏣᏚᎧᏔᏁ ᎤᎾᎴᏫᏍᏓᏗ ᎤᎾᏰᎯᏍᏗ ᎠᏁᎲᎢ ᎾᏍᎩ ᎪᏍᏓᏱ ᏗᎦtᎢᏍᏙᏗ ᎦᏰᏌᏗ. ᎾᏍᎩᏃ ᏄᏪᏒ ᎼᏏ ᎤᎵᏘᏎᎢ, ᎠᎴ ᎻᏗᏂ ᎦᏓ ᎠᎲ ᏒᏙᎯ ᏄᎵᏍᏔᏁᎢ, ᎾᎿᏃ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ. ”ᏨᏌ ᏫᏔᏁᎶᎲᎦ! ᎩᎶᏰᏃ ᎢᏳᏍᏗ ᏗᎻᏟᏯ ᏧᏙᎢᏛ, ᎠᏕᎸ ᎠᏢᏅᎥᏍᎩ, ᎠᏕᎸ ᏗᎪᏢᏔᏅᎯ ᏓᏓᏁᎸ ᏕᎪᏢᎾᏁᎲ ᏓᏰᏂ, ᎥᏝ ᎤᏍᏗᏉ ᏧᎬᏩᎶᏗ ᏱᏓᏩᏛᎡᎮ ᎠᏃᏢᏅᎥᏍᎩ. ”ᎭᏗ, ᎨᏍᏗ ᎣᏍᏓ ᎠᏓᏅᏖᎸ ᏱᎩ,” ᎤᏛᏁ ᏌᎳᏓ. “ᏰᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎫᏩᎶᏐᏅ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.” ᏗᏂᏩᎾᎦᎳ ᎠᏂᎦᏔᎲ, ᏥᏩᎾᎦᎳ ᎾᏍᎩᏯ ᎾᏆᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏗᏂᏩᎾᎦᎳ ᎬᎩᏁᏉᏤᏗᏱ; ᏂᎦᎥᏉ ᏄᏓᎴᏒ ᎾᏆᎵᏍᏔᏅ ᎾᏂᎥ ᏄᎾᏓᎴᏒ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎠᏎ ᎢᎦᏛ ᎦᏥᏍᏕᎸᏗᏱ. ᎢᏳᏍᏗᏉ ᎤᏃᎯᏳᏗ ᏴᏫ ᎪᏪᎳᏅ ᏱᎩ. ᎨᎵ. ᎢᏨᏁᏤᎭ ᎤᎬᏫᏳᎯ ᎢᏨᏁᎢᏍᏓᏁᎭ, ᎯᎠ ᎾᏍᎩ ᎪᏪᎵ ᎨᏥᎪᎵᏰᏗᏱ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎠᎾᎵᏅᏟ. ᏰᎵ ᎪᎯᏓ ᎤᏕᏅ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᎿᏉᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡ Ꭼ ᏅᏩᏙᎯᏯᏛ ᏄᎾᎵᏍᏓᏁᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᎨᎵᎵ ᎠᎴ ᏌᎺᎵᏱ, ᎠᎴ ᎨᎦᎵᏂᎪᎯᏍᏔᏁᎢ, ᎠᎴ ᎠᎾᎢᏎ ᎾᎿ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎣᏍᏛ ᎤᏂᎦᎵᏍᏓᏗᏍᎬ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᏂᏁᏉᎨᎢ. ᎢᏣᎵᎮᎵᎨᏍᏗᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨ ᎢᏤᎳᏗᏍᏗᏍᎬᎢ, ᎾᏍᎩᏃ ᎤᏖᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎨᏎᏍᏗ ᏂᎯ ᎾᏍᏉ ᎤᏣᏔᏅᎯ ᎨᏣᎵᎮᎵᏍᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎤᏩᎾᏓᎴ ᏴᏫ ᎤᏂᎪᎲ ᎢᎾᏛ ᎦᏖᎳᏛ ᎤᏬᏰᏂ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎥᏝ ᏳᏝᏏᏛᎭ ᎯᎠ ᎠᏍᎦᏯ ᏴᏫ ᏗᎯᎯ ᎨᏒᎢ; ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎾᏍᎩ ᎠᎺᏉᎯ ᎠᏗᏫᏏ, ᎠᏎᏃ ᎤᏞᎩ ᎥᏝ ᎬᏁᏍᏗ ᏳᏪᎵᏎᎭ. ᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᎤᏂᎾᎦᎸᎲ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎩ ᏥᎷᏏᎵᎻ, ᎠᎴ ᎪᎳ ᎨᏒᎩ. ᎨᏍᏗ ᏗᎬᏍᎩ ᏃᎴ ᏗᏥᏌᏛᎥᏍᎩ ᎤᏩᏌ ᏱᎩ. ᏰᎵ ᎤᏟᏂᎩᏓ ᏏᏆ. ᎠᎴ ᎠᎨᏴ ᎤᏰᎯ ᏰᎭ ᎾᏍᎩ ᏄᏬᎯᏳᏒᎾ, ᎠᎴ ᎣᏏᏳᏉ ᏳᏰᎸᎭ ᎠᏏᏉ ᎤᎾᏁᎳᏗᏍᏗᏱ, ᏞᏍᏗ ᏯᏓᏅᎡᎮᏍᏗ. ᎯᏍᎩᏁᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏥᏅᏒᎯ ᎤᏂᎷᏨ, ᎠᏂᏏᏴᏫᎭ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᎨᎦᎫᏴᎡᎴᎢ. ᏰᎵ ᎤᏓᏅᎯᏓ ᎠᏆᏂᎩᏓ. ᎾᏍᎩᏃ Ꮎ ᎤᎷᏨᎩ ᎠᎴ ᎤᏁᏒᎩ ᎪᏪᎵ ᎾᏍᎩ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᎤᏒᎦᎸ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏬᎵ. “ᎾᏉ ᎮᏂᎵ!” ᎤᏂᏍᏆᏂᎪᏎᏃ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ, ᏚᏕᏲᏁᏰᏃ ᎤᎵᏂᎩᏛ ᏧᎰ ᎾᏍᎩᏯᎢ, ᎥᏝᏃ ᏗᏃᏪᎵᏍᎩ ᏓᎾᏕᏲᎲᏍᎬ ᎾᏍᎩᏯ ᏱᎨᏎᎢ. ᎠᏓᎯᏉᏗ ᎨᏎ ᏫᎵᎻ. ᎥᏝᏰᏃ ᎩᎶ ᎢᎦᏁᎳᎩᏯ ᏱᎩ ᎢᏕᎲᎢ, ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏁᎳᎩᏯ ᏱᎩ ᎠᏲᎱᏍᎬᎢ. “ᏄᏲᎢᏯᏉ!” ᎤᏪᎵᏎ ᏥᏍᏕᏥ. ᎤᏇᏓᎸᏉᏰᏃ ᎠᏏ ᏥᏕᎲᎢ, ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏚᎸᏅᎥᏍᎬᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏳᏩᏂᏌᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏚᎸᏫᏍᏓᏁᎲᎩ ᏗᏗᏰᎸ ᎤᏚᏓᏕᏫᏒᎢ ᎤᎦᏔᏔᏅᎯ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᏗᎾᏄᎪᏫᏎᏗᏱ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎥᏞᏍᏗ. ᎠᏴᏰᏃ ᎤᏠᏱᏉ ᎡᎩᏂᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎠᎾᏙᎴᎰᏍᎩ ᏥᎨᏒ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎾᏍᎩ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᎧᏃᎮᏛ ᎠᏂ ᎪᏪᎵᎯ ᎪᏪᎸᎢ; ᎤᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏏ. ᎠᏎᏃ ᎦᏙ ᎠᏗᎭ ᎪᏪᎵ? ᎯᏄᎪᏩ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᎠᎴ ᎾᏍᎩ ᎤᏪᏥ; ᎠᏥᎾᏝᎢᏰᏃ ᎠᎨᏴ ᎤᏪᏥ, ᎥᏝ ᎤᏪᎳᏗᏍᏙᏗ ᏱᎨᏎᏍᏗ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎾᏥᎾᏝᎥᎾ ᎠᎨᏴ ᎤᏪᏥ. ᎾᏂᎥᏰᏃ ᎩᎶ ᎤᏅᏗ ᎠᎾᎵᏍᏓᏴᏗᏍᎩ ᎥᏝ ᎤᏂᎦᏙᎥᏒᎯ ᏱᎨᏐ ᎧᏃᎮᏛ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ; ᏗᏂᏲᎵᏉᏰᏃ. ᎰᏩᏃ ᎤᏁᏅᏎ ᎠᏍᏓᏱᏳ ᏫᏄᏅᏁᎴ ᎠᏤᎵᏍᏛᎢ, ᎤᏂᏰᎸᏔᏁ ᏅᏲᎯ, ᎠᎴ ᏚᏂᎧᏁ ᎠᏂᎦᏘᏗᏍᎩ. ᎭᏰᎳᏍᏗ ᏓᏣᎳᏕᎵ, ᎠᏆᏤᎵ ᎠᏧᏣ.” ᎠᏏᏉᏃ ᎦᏬᏂᏍᎬᎢ ᎬᏂᏳᏉ ᏧᏓᏏ ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ ᎤᎷᏨᎩ, ᎠᎴ ᏓᏘᏁᎲᎩ ᎤᏂᏣᏘ ᏴᏫ, ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏗᏂᏁᎯ, ᏅᏓᎬᏂᏅᏏᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᏗᏂᎳᏫᎩ ᎠᏁᎲ ᏴᏫ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ, ᎤᏂᏣᏖ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ ᏕᎬᏩᏘᏃᎮᎴᎢ; ᏚᏄᎪᏫᏎᏃ ᎠᏂᏍᎩᎾ ᎧᏁᎬᏉ ᎬᏗᏍᎨᎢ, ᎠᎴ ᏂᎦᏛ ᏧᏂᏢᎩ ᏚᏅᏩᏁᎢ. ᏃᏗ ᎭᏫᏂ ᎠᏛᎵᏍᎨᎢ. ᏯᏃᎩᏳᏰᏃ ᏣᏥᏅᏠᎸᎯ ᎨᏎᎢ, ᎠᎴ ᏧᏓᏕᏒᏛ ᏣᎦᎸᏍᏔᏅᎯ ᎨᏎᎢ, ᏧᏓᏕᏒᏛᏃ ᏓᎦᎵᏍᎨᎢ, ᎠᎴ ᏗᎦᏅᏠᏍᏗ ᏓᏍᏆᎵᏍᎨᎢ; ᎥᏝ ᎠᎴ ᎩᎶ ᎬᏩᏓᏅᏘᏐᏗ ᏱᎨᏎᎢ. ᏏᏛ ᏌᏊ ᎯᎳᏒᏓ, ᎠᎪᏎᎴ ᏩᎭᏯ. ”ᏧᎦᏣᎳᎩᏍᏗ ᎠᏍᏓ ᏯᏋᏔᎾ ᏯᏉᏪᎳᎾ ’ᎤᏣᏓ ᎣᏍᏓ’ ᎤᏪᎵᏎ, ᎢᏳᏍᏗᏉ ᏍᎪᏯ ᎦᏃᎯᎸᏍᏗᏍᎬ ᏱᎦᏯᎸᎩ ᏃᎴ ᏯᏲᏍᏓ ᏄᏍᏛᎢ.” ᎠᏍᎪᎵ ᎠᎴ ᎤᏍᏗᏰᎬ ᎤᏁᎩᏳ ᎨᏒᎩ ᎤᏩᏅ ᎾᏍᎩᏯᎢ, ᎥᏃᏥ ᏥᏄᏁᎩᏴ ᏄᏁᎩᏴᎩ; ᏗᎦᏙᎵᏃ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎾᏍᎩᏯ ᎨᏒᎩ; ᎥᏝᏰᏃ ᏲᎦᏚᎵᎭ, ᎢᏓᎵᏅᎵ, ᏂᏥᎦᏔᎲᎾᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎤᏕᏯᏙᏗ ᎣᎩᎷᏤᎸ ᎡᏏᏱ, ᎾᏍᎩ ᎤᎶᏒᏍᏔᏅᎯ ᎦᎨᏛ ᎣᎩᎷᏤᎸᎢ, ᎤᎶᏒᏍᏔᏅᎯ ᏂᏙᎦᎵᏂᎬᎬᎢ, ᎾᏍᎩᏃ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎣᎦᎸᏲᎵᎸᎩ ᏦᎦᏛᏂᏗᏍᏗᏱ; ᎠᎧᏔᎮᎢ ᏰᎵ ᏳᎦᏘᏓ, ᏛᎦ ᏳᎷᏥᏏ ᏚᏏᎳᏛᎢ; ᏃᎴ ᎡᎵᏍᎨ ᏰᎵ ᏳᎧᏘᏓ ᏳᎷᏥᏏ ᎠᏓᏅᏖᎸ ᎢᏳᏛᏁᏗ ᎤᏍᏕᎵᏗ ᏫᎵᎻ. ᏧᏍᏗ ᎨᏒ ᏓᏍᏆᏚᎸ ᏥᏳ, ᏙᏱᏨ ᏓᏓᏁᎸ ᎠᏨᏏᏓᏍᏗ ᎢᏧᏍᏗ. ᏓᏒᎬ ᏗᏤᏍᏙ, ᎠᏰᎸ ᏓᏳᏓᎴᏅ ᏚᏓᏅᎵᏰᎥ, ᏃᎴ ᎤᎾᏨᏓ ᏓᏥᏍᏛ ᏃᎴ ᎤᏲ ᎤᏃᎴ ᎤᎶᎯᏍᏗ. ᎯᎠ ᏄᏂᏪᏒᎩ: ᏣᎬᏫᏳᎯ, ᏦᏍᏗᎦᏙᎵ ᏧᎵᏍᏚᎢᏍᏗᏱ ᎣᎩᎾᏚᎵᎭ. ᎠᎬᏱᏣ ᎠᏟᏰᎵᏎᏍᏗ ᎾᏍᎩᏯ ᎠᎹᎡᏉ ᎠᏓᎾᏇᏍᎬ, ᏯᎾᏕᎶᎰᏍᎬᎾ ᏏᏴᏫᎭ ᎤᏁᎯᏍᏔᏁᎲ. ᎣᏍᏓ ᎠᎩᏰᎸ ᏕᎩᎾᏦᏒ. ᎿᏉᏃ ᎯᎠ ᏂᎦᏪᏍᎪᎢ; ᏗᏥᏁᎸ ᏗᎩᏄᎪᏨ ᏴᏛᏥᎶᏏ. ᎿᏉᏃ ᏫᎦᎷᎩ ᎠᏩᏘᏍᎪ ᎤᏏᏩ ᎨᏐ ᎠᎴ ᎬᏃᏌᏛᎯ ᎠᎴ ᎪᏚᎢᏍᏙᎢ. ᏓᏥᏲᎰᏏᎾᏏ. ᎠᎴ ᏥᎦᏔᎭ ᎾᏍᎩ ᎤᏁᏨᎯ ᏫᎾᏍᏛᎾ ᎬᏂᏛ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᎥ ᏥᏁᎬᎢ, ᎾᏍᎩᏯ ᎠᎦᏴᎵᎨᎢ ᎾᎩᏪᏎᎸᎢ, ᎾᏍᎩ ᏂᏥᏪᎠ. ᎯᎠᏃ ᏄᏪᏎ, ᏔᎵᏁᏫᏃ ᎨᏒ, ᎢᎬᏌ ᎢᎦᏤᎵ ᎢᎩᎧ ᏗᏘᏲᎯ. ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎤᎾᎵᏍᎪᎸᏙᏗᏱ ᎾᏍᎩᏯ ᎯᎠ ᏂᎦᏪᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎼᎰᏩ ᎤᏤᎵᎦ; ᎠᏂᏔᎵ ᏧᎴᏗᏂᏍᎪᏂᎯ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᏛ ᏬᏱ. ᎯᎠᏃ ᎾᏍᏉ ᏄᎵᏍᏔᏁ ᏅᎵᏍᏔᏁ ᏅᏩᏓᎴ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎾᏍᎩ ᏭᏴᎴ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏚᏕᏲᏁᎢ; ᎾᎿᏃ ᎡᏙᎮ ᎠᏍᎦᏯ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᎤᏩᎢᏎᎸᎯ ᎠᏍᎩᎾᏃ ᎿᏉ ᎤᎳᏁᎸᎯ ᎨᏒᎩ ᎤᎾᏫᏱ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏌᏩᏂ ᎤᏪᏥ ᎾᏍᎩ ᎤᎶᏄᎮᏗᏱ, ᎤᎾᎵᏍᏓᏴᏃᏅᏃ, ᎥᏝ ᏙᎯ ᎬᏆᏓᏅᏓᏗᏍᏗ ᏱᎨᏎ ᏗᏆᏓᏅᏛᎢ, ᏅᏌᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᏓᏏ ᎥᎩᏅᏟ ᏂᏥᏩᏛᎲᎾ ᎨᏒᎢ; ᎥᎦᏥᏴᏕᏨᎩᏃ ᎾᎿ ᎠᏆᏂᎩᏒᎩ ᎹᏏᏙᏂ ᏩᎩᎷᏨᎩ. ᎠᎧᏔᎮᎢ ᏄᏍᏛ ᎤᏲ ᎤᎾᏗᏅᏗ ᏧᏍᏆᏴᏍᏗ ᏃᎴ ᎣᏍᏓ ᎤᏰᎸᎮ. Ꭽ,Ꭽ - “ᎣᏍᏓᎦ ᏍᎩᎾᎾ, Ꭱ ᎥᎩᎸᎢ?” ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᎳᎪ ᎦᏚ ᏕᏥᏰᎭ? ᏫᏣᎦᏔ. ᎤᎾᏙᎴᎰᏒᏃ, ᎯᎠ ᏄᎯᏪᏎᎢ, ᎯᏍᎩ, ᏔᎵᏃ ᎠᏣᏗ. ᎠᏎ ᎢᏳᏍᏗᏉ ᎤᏁᏝᏅ ᎤᏬᏒᏅ ᏳᏓᎵᏗᎩᎡᎳ ᎠᏂᏐᎢ ᎠᏂᏍᏆᏂᎪᏍᎨ. ᏧᎾᏍᏗᎧᎨ ᏗᏂᏲᏟ ᎪᏍᏓᏯ ᎠᏓ ᎬᏗ ᏓᏂᏔᎴᏍᎪ Ꮓ ᎤᏂᏖᎸᏅ ᎤᎾᏨᏓᎵ ᏐᏉᎭ ᏓᏂᏔᏁᎪᎢ ᏓᏔᎴᏒᎢ. ᏂᎦᎥ ᎭᏍᎪᎳ! ᏂᎦᏓ ᎨᏒ ᏦᎢ ᎢᏯᏔᏬᏍᏔᏅ ᎢᎪᎯᏛ ᏚᏟᏰᎵᏙᎸ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᏍᎩ ᏴᏫ ᏰᎵ ᎢᎬᏩᎾᏛᏁᏗ ᏂᎨᏒᎾ ᏥᎩ, ᏰᎵᏉ ᎢᎬᏩᏛᏁᏗ ᎤᏁᎳᏅᎯ. ᏤᏆᎳᏂ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᏁᏩᏔᎵ ᎤᎾᏤᎵᎪᎯ, ᎢᏓᎵ ᎢᏗᏢ, ᏦᏓᏂ ᎤᏗᏗᏢ, ᎨᎵᎵ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏂᏁᎸᎢ, ᎾᏍᎩ ᎦᏥᏯᏚᏓᎳᎡᏗᏱ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ ᏧᏗᏱ ᎠᏁᎯ; ᎠᎴ ᎾᏍᎩ ᎦᏥᏴᎡᎲ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᏧᎾᏓᏂᎸᎢᏍᏗᏱᏉ ᎤᎾᏓᏅᏘ; ᎠᏎᏃ ᎵᏏᏯ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᎷᏨ ᎤᏣᏘ ᎬᏍᎦᎢᏍᏓᎩᏯ ᏙᎦᏑᎦᎸᏔᏅᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎣᏥᏃᎮᏍᎪᎢ, ᎥᏝ ᏲᏨᏗᏍᎪ ᎦᏬᏂᎯᏍᏗ ᏴᏫ ᎤᏤᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏧᏕᏲᏅᎯ, ᎦᎸᏉᏘᏳᏍᎩᏂ ᎠᏓᏅᏙ ᏧᏕᏲᏅᎯ; ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎬᏂᎨᏒ ᏂᏙᏨᏁᎰ ᎠᏓᏅᏙ ᎤᏁᎯ. ᎠᏴᎾᏍᎩ ᎦᏥᏯᎥᎢ, ᎠᎴ ᏂᎯ ᎠᏴ ᏍᎩᏯᎥᎢ, ᎾᏍᎩ ᏧᏳᏙᏗᏯ ᏌᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏃ ᎡᎶᎯ ᎤᎦᏙᎥᎯᏍᏗᏱ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏘᎨᏳᎯᏳ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏍᎩᎨᏳᎢᏳ ᏥᎩ. ”ᎠᏎᏃ, ᎪᎨᏱ ᎩᎳ ᏛᎾᏓᏴᎳᏔᏂ. ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏂᏧᏏ ᎬᎩᏂᏴᎩ ᎤᏛᏅ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎬᎩᎯᏍᏗᏱ ᎤᏂᏰᎸᏒᎩ. ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ; ᎠᏂᎨᏴ ᎬᏩᏂᎾᏄᎪᏫᏒᎯ ᏥᎩ ᎥᏝ ᏳᏜᏍᏗ ᎩᎶ ᎠᏙᎴᎰᏍᎩ ᎤᏟ ᎢᏯᏥᎷᏉᏗ ᎡᏍᎦᏉ ᏣᏂ ᏗᏓᏬᏍᎩ; ᎠᏎᏃ ᎤᏍᏗᎧᏂ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎨᎳ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏣᏂ. ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏧᏏ ᎤᎾᏕᏯᏙᏔᏅᎩ ᏥᏌ, ᎠᎴ ᎤᏂᏲᎸᎩ ᎤᏂᎯᏍᏗᏱ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᏄᏛᏁᎸ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ. ᎢᎦ ᏒᎮᏱᏣ, ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙ ᏳᎴᏫᏍᏔᎾ ᎤᏪᏅᏒ ᎠᎬᏱᏣ, ᎩᎳᏈᏴ ᏩᏓᏐᎯᎮ ᎠᏓᏍᏓᏴᏗ ᎣᏍᏓ ᏂᎬᏁᎮ ᎫᎦ. ᎿᏉ ᎾᏍᎩ ᏧᏗᏱ ᎠᏁᎯ ᎠᎾᎵᏒᎭ ᎣᏓᎵ ᏩᏂᎶᏒᎭ; ᎠᎴ ᎾᏍᎩ ᎠᏰᎵ ᎨᏒ Ꭰ-ᏁᏙᎯ ᎠᏂᏄᎪᏨᎭ; ᎢᏴᏛᏃ ᏭᏩᏓᏛ ᏗᏁᎯ ᏞᏍᏗ ᎾᎿ ᏳᏂᏴᎴᏍᏗ. “ᎠᎩᏃᏫᎠ ᎦᎵᎡᎵᎬ,” ᎤᏛᏁ ᏫᎵᎻ. Ꭷ ᎯᎠ ᎢᏥᏪᏍᎩ; ᎪᎯ ᎢᎦ ᎠᎴ ᏑᎾᎴᎢ ᏓᏲᏤᏏ ᎨᎯ ᏗᎦᏚᎲᎢ, ᏑᏕᏘᏴᏛᏃ ᏬᏤᎮᏍᏗ ᎠᎴ ᏬᏥᏃᏗᏍᎨᏍᏗ ᎠᎴ ᏬᎩᏁᏉᏤᎮᏍᏗ; ᏧᏂᏲᎰᏒ ᏃᎴ ᎨᏥᏐᏅᏅ, ᏧᏳᎪᏘ ᎨᏒ. ᎢᏳᏃ ᎪᎱᏍᏗ ᏱᏥᎭ ᏗᎫᎪᏙᏗ ᎪᎯᏉ ᎨᏒ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏕᏥᎧᎲᏍᎨᏍᏗ ᏧᏄᎪᏙᏗᏱ ᎡᏍᎦ ᎢᏴᏛ ᎨᏥᏰᎸᎢ ᎾᎿ ᎢᏣᏓᏡᎬᎢ. ᎾᏍᎩᏰᏃ [ᏄᎬᏫᏳᏌᏕᎩ] ᎤᏁᎳᏅᎯ ᎤᏅᏏᏓᏍᏗ ᏂᎯ ᎣᏍᏛ ᎢᏣᎵᏍᏓᏁᏗ ᏧᎸᏫᏍᏓᏁᎯ. ᎢᏳᏍᎩᏂ ᎤᏲᏉ ᏙᏣᎸᏫᏍᏓᏁᎮᏍᏗ, ᎯᏍᎦᎢᎮᏍᏗ-ᎦᏅᎯᏛ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᏅᏏᏓᏍᏗ ᎾᏍᎩ, ᎤᏞᎩ, ᎠᏍᏛᏗᏍᏗᏍᎩ ᎾᏍᎩ ᎾᎤᏲ ᏧᎸᏫᏍᏓᏁᎯ. ᎠᏂᏆᎵᏏᏍᎩᏂ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᎤᏁᎳᏅᎯ ᏚᏓᏅᏖᎮᎸᎢ ᎤᏂᏲᎢᏎᎴ ᎤᏅᏒ ᎤᎾᏓᏡᏔᏁᎢ, ᏂᏗᎨᎦᏬᎥᎾ ᎨᏒᎢ. ᎤᏩᏙᎯᏯᏛ ᏚᏂᎧᎿᏩᏗᏙᎮᏍᏗ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎤᎵᏠᏯᏍᏕᏍᏗ ᎪᎯᏳᏗ ᎨᏒᎢ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎾᏍᎩ ᏄᎾᏓᎴ ᏴᏫ ᎬᏩᏂᏯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏆᏙᎥ ᏗᎨᎪᏍᏔᏅᎯ ᏥᎩ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏧᎸᏫᏍᏓᏁᎯ ᏥᎩ. ᏍᏓᏯ ᏭᏅᏥᎴ ᎤᎸᏔᎵᏕᎾ ᏄᎵᏍᏔᏁᎢ. ᏱᏂᎪᎯᎸᎾ ᎠᏆᏕᎶᎰᏒ ᎢᏯᏛᏁᏗ ᎪᎰᏍᏗ ᏯᎫᏚᎵ, ᎠᏎᏃ ᎦᏲᏟ ᏓᎬ ᎠᏕᎳ. ᏕᏣᏓᏬᏂᏗᏍᎨᏍᏗᏍᎩᏂ ᏂᏚᎩᏨᏂᏒᎢ, ᎠᏏᏉ ᎪᎯ ᎢᎦ ᎦᎪᏎᏗ ᏥᎩ; ᎾᏍᎩ ᏂᎯ ᎩᎶ ᎨᏥᏍᏓᏲᎯᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏓᎵᏓᏍᏗ ᎠᏍᎦᏂ ᎢᏳᏩᏂᏌᏛ. ᏎᎦ ᎤᎴᏫᏍᏔᏅ ᏃᎴ ᎤᏁᎢᏍᏔᏅ ᎢᎦ ᎨᏒ. ᎣᏣᎵᎡᎵᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎤᏙᏓ, ᎣᏣᏓᏙᎵᏍᏗᏍᎪ ᏂᎪᎯᎸ ᎢᏧᏯᏅᏓᏗᏍᎪᎢ, ᎣᏍᏓ ᎾᏆᎵᏍᏓᏏ. ᎾᏍᎩᏃ ᎢᏓᎵᏅᏟ ᎢᏨᏔᏲᏎᎭ ᏚᏙᎥ ᎬᏗᎭ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏠᏱᎭ ᎢᏥᏁᎢᏍᏗᏱ, ᎠᎴ ᏗᏣᎦᎴᏅᏗᏍᎩ ᏂᏤᎲᎾ ᎢᏳᎵᏍᏙᏗᏱ; ᎤᎧᎵᏨᏉᏍᎩᏂ ᏗᏣᏚᏙᏙᏗᏱ ᎤᏠᏱᏉ ᎢᏣᏓᏅᏖᎵᏙᎲᎢ, ᎠᎴ ᎤᏠᏱᏉ ᏕᏧᎪᏗᏍᎬᎢ. ᏂᎬᏃ ᎦᏚᎲ ᎤᎾᏓᏑᏰᏛᏉ ᏄᎵᏍᏔᏅᎩ, ᏚᏂᏂᏴᎲᏃ ᎦᏯ ᎠᎴ ᎡᎵᏍᏔᎦ ᎹᏏᏙᏂ ᎠᏁᎯ, ᏉᎳ ᎤᎾᎵᎪᎯ ᎠᏁᏙᎲᎢ, ᎤᎴᏃᏅᎯ ᎤᎾᏁᎷᎩᏒᎩ ᏭᏂᏴᎸᎩ ᎤᎾᏛᏁᎸᏗᏱ. ᏐᏉ ᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᏗᏥᎶᏍᏔᏅ ᏗᏍᏆᏂᎪᏗᏍᎩ ᎦᏂᎩᎸ, ᎨᏍᏗ ᏲᎩᎾᎵᏍᎩᏒ Mrs. Chapman, ᏗᏥᎶᏍᏔᏅ ᏙᎩᏂᎪᎵᏰᎥ ᏙᎩᏄᎪᏔᏅ ᎣᎩᏂᎶᎯᏍᏗᏉ ᎡᎶᎯ ᏗᏥᎶᏍᏔᏅ, ᎣᎯᏍᏙᏓ ᏓᎩᏰᎸᎲ, ᏃᎴ ᎠᏓᏅᏍᎩ ᏱᎨᏒᎾ ᎡᎲᎢ, ᎨᏍᏗ ᏧᏍᏆᏂᎩᏗ ᏰᎵᏍᎨ ᎤᏅᏪᏓ ᏕᎦᎶᏛ ᏆᎷᏌ ᏃᎴ ᏒᎦᏔ ᏗᏥᎶᏍᏔᏅ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏰᎵ ᎢᎨᎦᏛᏁᏗ ᏗᏜᏅᏓᏗᏍᎨᏍᏗ, ᎾᏂᎥ ᎣᏍᏛ ᏂᏕᏓᏛᏁᎮᏍᏗ, Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ ᏏᏓᏁᎸᎯ ᎤᎾᏓᏡᎬᎢ. ᎯᎠᏰᏃ ᏂᎦᏪᎭ ᎧᏁᎬᎢ, ᎠᏥᎸᎮᎶᎯ ᎨᎭ ᏂᎪᎯᎸᎢ ᎺᎵᎩᏎᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ. ᏚᏁᏒᏃ ᎠᎴ ᏚᏏᏔᏛ, ᎣᏍᏛ ᏚᏁᏤᎴᎢ. ᏗᏕᎶᏆᏍᎩ ᎥᏝ ᎤᏟ ᏱᎾᏥᎸᏉᏙ ᎡᏍᎦᏉ ᏧᏪᏲᎲᏍᎩ; ᎾᏂᎥᏍᎩᏂ ᎤᏂᏍᏆᏛᎯ ᏧᏁᏲᎲᏍᎩ ᏄᏍᏛ ᎾᏍᎩᏯ ᎨᏎᏍᏗ. ᎤᏂᏄᎪᏤᏃ ᏕᎦᎳᏫᎥᎢ ᎠᎾᎵᎮᎵᎨ ᏰᎵ ᎤᏕᎰᎯᏍᏗ ᎢᎬᏩᎾᎵᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᏕᎤᏙᎥ ᏅᏗᎦᎵᏍᏙᏍᎬᎢ. ᎾᏍᎩ ᎠᏰᎵ ᏥᎩ, ᎾᏍᎩ ᎤᎧᎵᎢᎯ, ᎾᏍᎩ ᎤᏩᏒ ᏂᎦᏗᏳ ᏂᎬᎾᏛ ᎠᎧᎵᎢᎯ ᏥᎩ. “ᏌᎳᏓ ᎣᎯᏍᏙᏗ ᏧᏃᎮᏗ ᏗᎧᏃᎮᏓ ᎠᏆᏛᎦᏅ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᏑᎾᎴ ᎠᎩᏍᏗ ᎦᎵᏙᏗ ᎤᏅᏪᏓ ᎠᎧᏲᏗᏍᎬ. ᏎᎦᏨ ᏄᏪᏤ… ᎥᎥ, ᎠᎴ ᎢᏳ ᏯᏆᏓᎵᏍᎪᎸᏔᏅ ᎾᎿ ᎠᏥᎸ ᎢᏤᎶᎲᎢ ᎠᎴ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎪᎯᏳᏗ ᎢᏨᏗᏍᎬᎢ, ᎦᎵᎡᎵᎦ, ᎠᎴ ᎢᏨᏯᎵᎪᏁᎭ ᎢᏣᎵᎮᎵᎬᎢ. ᎾᏍᎩᏃ ᎯᎠ ᎧᏃᎮᏛ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎡᏣᎵᏥᏙᏁᎲᎢ ᏤᏣᎵᏥᏙᏁᎭ. ᏍᏗᏫᏃ ᎤᎧᎵᏨᎯ ᎤᏬᎯᏳᏒ ᎠᎴ ᎤᎵᏂᎬᎬ ᎤᏣᏖ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᏚᎸᏫᏍᏓᏁᎮ ᏴᏫ ᎠᏁᎲᎢ. ᎾᏍᎩᏃ ᏥᏄᏍᏛ ᏣᏆᏓᏅᏖᎸᎩ, ᏅᎵᏌᎵᏉᏍᎪ ᎠᎩᏰᎸᎯ ᎨᏎᎢ? ᎠᎴ ᎪᎱᏍᏗ ᎦᏓᏅᏛᎵ, ᏥᎪ ᎤᏇᏓᎵ ᎤᏓᏅᏖᏗ ᎦᏓᏖᏍᎪᎢ, ᎾᏍᎩᏃ ᎠᏴ ᏥᏁᏦ ᎯᎠᏉ ᏱᏄᏍᏗ, ᎥᎥ, ᎥᎥ, ᎠᎴ ᎥᏝ, ᎥᏝ? “ᏣᏓᏏᏅᏕᏍᏗᏛ ᎤᏛᏁ. ᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᏍᎦᏯ, ᎦᏐᎴᎣᏍᎦ ᎭᏙᎴᎰᏍᎩ ᎨᏒᎢ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎿᏉ ᎢᎸᎯᏳ ᏴᎦᎦᏗᏔ ᏖᎸᎳᏗ ᎤᎾᏄᎪᏫᏒᎯ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎢᏤ ᎦᏗᏔᎲᎭ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ. ᏂᎦᏓ ᏧᏣᏬᏓ ᏚᎾᎳᏑᎸ ᏃᎴ ᏗᎬᏅ ᏚᎾᎭᏄᏮ ᏃᎴ ᏚᎾᏑᎸ ᏃᎴ ᎤᏍᎪᎸᏨ ᎤᏅᏣᏘ. ᎥᏝ ᎪᎱᏍᏗ ᏣᏤᎵ ᏳᏓᏑᏯ ᎯᎠ ᎠᏂ, ᏝᏰᏃ ᏚᏳᎪᏛ ᏱᎩ ᏣᎾᏫ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎡᎶ ᎤᏓᏅᎦᎸᏓ ᎨᏎᏍᏗ. ᏭᎶᎯᏍᏗ ᏓᏫᏍᎩᎨ, ᎣᎯᏍᏙᏗ ᏭᎶᎯᏍᏗ ᎠᏍᎧᏅᎢ ᎢᏣ ᏯᏛᎩ ᎨᏴ ᏃᎴ ᏳᎾᎷᏒᎾ ᏱᎩ ᏚᏅᏓᏒ ᎠᎧᏘᏏ ᎢᏣ. ᏃᎴ ᏗᏩᏛᏗ ᏔᎷᎩᏍᎩ ᎠᎵᏍᏓᏴᏗ ᎤᏓᏅᎵᏰᏓ ᎭᏫᏂ. ᎡᏝᏪ ᎤᏟᏃᎮᏔᏁ ᎤᎭᏰᎯ ᎪᏱᏁᎢ. ᎢᏳᏃ ᎩᎶ ᎠᏛᎬᎦ ᎧᏃᎮᏛ ᎦᎸᎳᏗ ᎡᎯᎤᎬᎾᏳᎯ ᎨᏒ ᎤᎬᏩᎵ, ᏂᎪᎵᎬᎾᏃ ᏥᎨᏐᎢ, ᎿᏉ ᎤᏁᎫᏥᏛ ᎦᎷᎪᎢ ᎠᎴ ᎤᎩᎡᎰ ᎠᏫᏒ ᎤᎾᏫᏱ. ᎾᏍᎩ ᎯᎠ ᎤᏃᎱᎶᏗ ᏣᏫᏎᎢ. ᎯᎠ ᎾᏍᎩ ᎠᎪᎵᏰᏗ ᎤᏂᏣᏛ ᎠᏂᏧᏏ ᎠᏂᎪᎵᏰᏍᎬᎩ, ᏥᏌᏰᏃ ᎠᎦᏛᏅ ᎦᏚᎲ ᎾᎥ ᎨᏒᎩ, ᎠᏂᏧᏏᏃ, ᎠᎴ ᎠᏂᎪᎢ, ᎠᎴ ᎠᏂᎶᎻ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎪᏪᎸᎩ. “ᎭᏂ, ᎭᏂ, ᎭᏂ!” ᎤᏛᏁ ᏌᏌ. ᎠᏂᏁᎩᏰᏃ ᎤᏣᏘ ᎠᏢᏆᏍᏗ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎠᏂᏬᏂᏍᎬᎢ, ᏓᏂᎶᏄᎮᏍᎪ ᎠᏅᏗᏍᎪ ᎤᏇᏓᎵ ᎠᏚᎸᏗ ᎨᏒᎢ, [ᎠᎴ] ᏃᎵᏏᎾᎯᏍᏛᎾ ᏂᏓᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏙᏗᏳᎯ ᏧᎾᏗᏫᏎᎸᎯ ᎾᏍᎩ Ꮎ ᎠᏏ ᎤᏓᎵᏓᏍᏗ ᎨᏒ ᎠᎾᎴᏂᏙᎯ ᏥᎩ. ᎠᏇᏅᏒᎩᏃ ᏗᎧᎿᏩᏗᏙᎯ ᏗᎦᏙᎬᎢ, ᎠᎴ ᎯᎠ ᏅᏥᏪᏎᎸᎩ, ᏍᎩᏅᎥᏏ Ꮎ ᎤᏍᏗ ᎪᏪᎵ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎾᎩ ᎠᎴ ᎯᏯᎣᎾ; ᏣᏍᏉᎵᏱᏂ ᏩᏚᎵᏏ ᏥᏄᎦᎾᎯ ᎢᏳᎦᎾᏍᏛ ᏅᏓᏨᏁᎵ. ᏗᏥᏲᎵ ᏗᏇᏥ, ᎯᎠ ᎾᏍᎩ ᎢᏨᏲᏪᎳᏁᎭ, ᎢᏥᏍᎦᏅᎢᏍᏗᏱ ᏂᎨᏒᎾ. ᎢᏳᏃ ᎩᎶ ᏯᏍᎦᏅᎦ, ᎢᎨᎭ ᏗᎪᎯᏍᏓᏁᎯ ᎠᎦᏴᎵᎨ ᎡᎲᎢ, ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎦᏅᎾ. ᏂᎦᏒᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏯᎢ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅ ᎤᏂᎧᎵᏤ ᎤᏂᏔᎳᏬᏍᎬᎢ. ᎠᎴ ᎦᏃᎦ ᎠᏥᎸ ᎾᏍᎩᏯᎢ ᎠᎴ ᎡᎶᎯ ᎠᎧᎵᎢ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎾᏍᎩᏯ. ᎾᏍᎩᏯ ᏄᏍᏗ ᎦᏃᎦ ᎤᏓᏑᏴ ᎢᎦᏙᏢᏒᎢ, ᎾᏍᎩ ᎦᏓᎭ ᎢᎬᏁᎯ ᏂᎬ ᎠᏰᎸᎢ, ᎠᎴ ᎠᏥᏍᏢᏍᎩ ᎠᎢᏒ ᎠᏁᎳᏅᎯ ᎨᏒᎢ, ᎠᎴ ᏨᏍᎩᏃᎢ ᎤᏓᏳᏓᎴᏅᎯ ᎠᏥᏥᏍᏝᏫᏍᏗᏍᎩ. ᏴᏫᏰᏃ ᎤᏅᏒ ᎤᎾᏓᎸᏉᏗᏳ ᎨᏎᏍᏗ, ᎠᏕᎸ ᎤᏂᎬᎥᏍᎩ, ᎠᎾᏢᏆᏍᎩ, ᎤᎾᏢᏉᏗ, ᎤᏁᎳᏅᎯ ᎬᏩᏂᏐᏢᏗ, ᏧᏂᎦᏴᎵᎨ ᏗᏂᎳᏏᏘᏍᎩ, ᏄᎾᎵᎮᎵᏣᏛᎾ, ᎠᏂᎦᏓᎭᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎦᏙ ᏣᎵᏍᎦᏍᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᎿᏛᏁᎭ? ᎠᎴ ᎦᎪ ᏣᏁᎴ ᎾᏍᎩ ᎯᎠ ᎢᏣᏛᏁᏗᏱ? ᏙᏱ ᏭᎷᏣ ᎠᎦᎵᎮ, ᎠᏎᏃ ᎤᏴᏣ ᎨᏎ ᏃᎴ ᎤᏩᏃᏪ. ᎣᏏᏳ ᏣᏰᎸᏅ ᏚᏳᎪᏛ ᎨᏒᎢ; ᎠᎴ ᏣᏂᏆᏘᎸ ᎤᏲ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏂᎯ ᏣᏁᎳᏅᎯ ᎤᏟ ᎢᎦᎢ ᏣᎶᏁᏔᏅ ᎠᏠᏁᏗᎣᏍᏛ ᎠᏓᏓᏅᏓᏗᏍᏗᏍᎩ, ᎡᏍᎦᏉ ᎾᏍᎩ Ꮎ ᎢᏣᎵᎪᎯ. ᏥᏌᏃ ᎤᏂᏂᏴᏛ ᎧᏯᏉᎢ ᏭᎾᏘᏅᏍᏔᏅᎩ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ, ᎾᎿ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏗᏂᎳᏫᎩ ᏓᏂᎳᏫᎥᎢ. “ᏗᎦᏣᏃᏍᏓ ᏂᏕᏨᏁᏍᏗ ᏘᏂᎨᏂ ᏃᎴ ᎦᏙ ᏫᏔᏒᏂᏍᏙᏓ ᏘᎴᏂ!” ᎤᏛᏁ ᏌᎳᏓ. ᏐᏉ ᎠᎴ ᏔᎵ ᎢᏳᏪᏅᏍᏗ ᎠᏂᎶᏍᎨᏍᏗ ᏴᏫ, ᎠᏂᎸᏉᏗᏍᎨᏍᏗ ᏫᎵᎻ ᏃᎴ ᎠᏂᎪᎵᏰᏍᎨᏍᏗ ᎪᏪᎸᎢ, ᏃᎴ ᎠᏂᏍᏆᏂᎪᏍᎨᏍᏗ ᏄᏍᏆᏂᎩᏛ. ᎤᏙᎰᏎ ᏫᎵᎻ. ”ᎭᏕᏬ, ᏣᏉ.” ᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒ ᎦᎵᏉᎩ ᏃᏈᏏ ᏥᏕᏣᎪᎲᎩ ᏥᎦᏘᏏᏗᏢ ᎠᏉᏰᏂ ᏥᏓᏆᏒᎦᎸᎩ, ᎠᎴ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ. ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏃᏈᏏ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᎵᏉᎩ ᏄᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎨᏥᏛᎦ; ᎾᏃ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗᏱ ᏥᏕᏣᎪᎲᎩ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏄᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎦᏛᎦ. ᎢᏣᏓᏟᏌᎮᏍᏗ, ᎠᏆᏓᏅᏙᏃ ᎠᎦᏔᏩᏕᎨᏍᏗ, ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏔᎵ ᎤᏛᏕᏍᏗ, ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏚᏙᎥ ᎢᏨᏙᏗᏱ, ᎠᏎᏃ ᎠᎾᎵᏅᏟ ᎤᏁᏅᏛ ᏂᎨᏐᎢ, ᎿᏉ ᎾᏍᏉ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ ᎤᏪᏅᏒᎩ, ᎥᏝ ᎬᏂᎨᏒᎢ, ᎤᏕᎵᏛᏉᏍᎩᏂ ᎢᏳᏍᏗ. ᏂᎦᏛ ᎡᏙᏓ ᏗᎩᎧᏁᎸᎯ ᎠᏎ ᏓᎬᎩᎷᏤᎵ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎩᎷᏤᎸᎯ ᎠᏎ ᎥᏝ ᏥᏄᎪᏫᏍᏗ ᏱᎩ. ᎾᏍᎩ ᏂᎦᏛ ᎤᏂᎸᏉᏙᏗᏱ ᎤᏪᏥ, ᎾᏍᎩᏯ ᏥᎾᏂᎸᏉᏗᎭ ᎠᎦᏴᎵᎨᎢ. ᎩᎶ ᏂᎦᎸᏉᏗᏍᎬᎾ ᏥᎨᏐ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎥᏝ ᏱᎦᎸᏉᏗᏍᎪ ᎠᎦᏴᎵᎨ ᎾᏍᎩ ᏅᏓᏳᏅᏏᏛ. “ᎤᏩᏙᎯᏴᏓ,” ᎤᏛᏁ. ᎠᏎᏍᎩᏂᏃᏅ ᎠᏥᏍᏕᎸᏗ ᎢᎨᏎᏍᏗ ᏗᏂᏲᎵ ᏕᎦᎾᏄᎪᏫᏍᎬᎢ, ᎢᏳᏃ ᏌᏂᎧᎿᏩᏏᏎᏍᏗ ᎪᎯᏳᏗ ᎨᏒ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ. ᏕᎦᏥᏕᎸ ᏏᎦᏫ ᎠᏂᏍᎦᏯ, ᎤᏍᏘ ᎬᎾᏍᏔ ᎣᎩᏥᏍᏔᏝᏅ ᏦᎩᏥᏍᏓᎶᏗ, ᎣᎩᏕᎭᏲᎸ ᎠᏥᏍᏛ. ᎠᎴ ᏦᎢᏁ ᏪᎯ ᎤᏓᏴᏒᎩ; ᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎵᏉᎩ ᎢᏯᏂᏛ; ᎠᎴ ᏧᏁᏥ ᎾᏁᎲᎾ ᏚᏂᏲᎱᏒᎩ. ᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᏍᎩᏁᏤᎭ? ᏝᏍᎪ ᏱᎦᏔᎭ ᏰᎵᏉ ᎦᎬᏯᏛᏗ ᎨᏒᎢ, ᎠᎴ ᏰᎵᏉ ᏗᎦᎬᏲᎯᏍᏗ ᎨᏒᎢ? “ᎨᏍᏗᏗ ᎪᎱᏍᏗ ᏱᎦᎵᏍᏗ ᎯᎠ ᏏᏆ,” ᎤᏛᏁ ᎰᎻ ᎤᏰᏥᏍᎩ, ᎧᏂᎨᏂ ᎬᏗ ᎦᏆᎵ ᎢᏣ ᏭᏩᏌᏙᏰᎢ ᏫᎵᎻ. ᎤᏴᏍᏗ ᎤᎧᏖᏃᎴ. ᏥᎷᏏᎵᎻᏰᏃ ᎠᏁᎯ, ᎠᎴ ᏧᎾᏤᎵ ᎤᏂᎬᏫᏳᏌᏕᎩ, ᎾᏍᎩ ᏂᎬᏩᎦᏔᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᎴ ᎾᏍᏉ ᎾᏂᎦᏔᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᏂᏁᎬ ᎠᎾᏙᎴᎲᏍᎩ ᏄᎾᏙᏓᏈᏒ ᏥᏓᏂᎪᎵᏰᎠ, ᎾᏍᎩ ᏚᏃᎯᏳᏔᏅ ᏥᏚᏄᎪᏓᏁᎴᎢ. ᏚᏂᎧᏅᏃ ᏗᎨᎦᏁᎶᏘ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅ ᎠᎹᏟ ᎠᏅᏍᎬᎢ, ᏚᏂᏲᎯᏎᎴ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏃᎯᏳᏅᎯ. ᏝᏍᎪ ᎯᏍᎩ ᏥᏍᏆᏯ ᏔᎵ ᎢᏯᏓᏅᏖᏗ ᏱᏓᎾᎵᎬᏩᎸᏍᎪᎢ? ᎥᏝᏃ ᏌᏉ ᎾᏍᎩ ᎠᎬᎨᏫᏒᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. “ᏥᎦᏔᎭ ᎤᎾᏓᏅᏘ ᏕᏧᎬ.” ᎬᏂᏳᏉᏰᏃ ᎯᎠ ᎾᏍᎩ ᎤᏲ ᏥᏣᏓᏅᏓᏛᎩ ᎾᏍᎩ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᏂᎦᎥ ᎢᏣᎵᏂᎬᏁᏗ ᎨᏒ ᏭᎵᏰᎢᎶᎸ; ᏂᎦᎥ ᏗᏣᏢᏫᏍᏙᏗ ᎢᏥᏲᎲᎢ, ᎢᎢ ᏂᎦᎥ ᎢᏥᏂᏆᏘᎲᎢ, ᎥᎥ, ᏂᎦᎥ ᎢᏥᎾᏰᏍᎬᎢ, ᎥᎥ, ᏂᎦᎥ ᎤᏣᏘ ᎢᏣᏑᎵᏍᎬᎢ, ᎥᎥ ᏂᎦᎥ ᎤᎵᏂᎩᏛ ᎢᏣᏓᏅᏛᎢ, ᎥᎥ, ᏂᎦᎥ ᎠᏓᏍᏛᏗᏍᏙᏗ ᎨᏒᎢ! ᏂᎦᎥ ᏧᏌᎴᏅᏛ ᎬᏂᎨᏒ ᏂᏨᏁᎸ ᏂᏥᏍᎦᏅᎾ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎧᏃᎮᏗ ᏥᎩ. ᎦᏙ ᎤᏂᎶᏒ ᎦᏓᎷᎦᏅ ᏱᎨᏐ ᏄᏍᏛ. ᎢᏥᎧᎵᏣ ᎦᎵᎡᎵᎬᎢ, ᎤᏠᏱ ᎢᏳᎵᏍᏙᏗᏱ ᎢᏣᏓᏅᏖᏍᎬᎢ, ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᎨᏳᏒᎢ, ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᏅᏛᎢ, ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏗᏣᏓᏅᏙ. ᎾᏍᎩᏃ ᏄᏍᏗ ᏱᏣᎵᏍᎦᏍᏙᏛ ᎤᏁᎳᏅᎯ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ. ᏚᏃᎩᏎ ᏌᎳᏓ, ᎾᏍᎩ ᎾᏂᏪᏍᎨ ᏔᎳᏚ ᎦᏄᎸᎯ ᏃᎴ ᎤᎵᏏᎩ ᏄᎵᏍᏔᏁ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᎠᎴ ᏫᎾᏍᏛᎾ ᏗᏔᎴᏒ ᏩᎦᏓᎢᏅᏒᎩ, ᎠᎴ ᎠᏥᏍᏚᏅᎩ, ᎠᎴ ᎤᏰᎸᏔᏅᎩ ᎠᏍᏚᎲᎢ, ᎾᏍᎩ ᏗᎬᏩᎶᏄᎮᏗ ᎿᏉ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᎬᏂ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᏳᎶᏐᏅ; ᎣᏂᏃ ᎿᏉ ᎠᏥᎪᏗ ᎢᎨᏎᏍᏗ ᏞᎦ. ᎺᎵ ᎡᏥᏲᎵᎸᎭ, ᎤᏤᏘ ᏧᎸᏫᏍᏓᏁᎸᎯ ᏥᎩ ᎠᏴ ᎣᎩᏍᏕᎵᏍᎬᎢ. ”ᏙᎤᏍᏗ ᏎᏉ ᎡᏓᏍᏗ?” ᎤᏛᏛᏁ. ᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ [ᏕᎪᏢᏒᎩ,] ᏧᏴᏢᏃ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ; ᏧᎦᎾᏮᏃ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ; ᏭᏕᎵᎬᏃ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ. ”ᎭᏕᏬ,” ᎤᏛᏁ ᎤᏃᏕᎾ ᎠᏓᎯ. ᎤᏤᏴᏍᏔᏁ ᏃᎴ ᏚᎧᏔᏍᏔᏁᎢ ᎦᏂᎦᏔ ᎡᎹᏂᏓ. ᎠᏎᏃ ᎯᎠ ᎾᎩᏪᏒᎩ; ᏞᏍᏗ, ᏣᎬᏫᏳᎯ, ᏝᏰᏃ ᎢᎸᎯᏳ ᎪᎱᏍᏗ ᎦᏓᎭ ᎠᎴ ᏂᎦᏅᎦᎸᎲᎾ ᏳᏴᎶ ᏥᎣᎵ. ᎯᎠᏰᏃ ᎾᏍᎩ ᎢᏗᎦᏔᎭ, ᎾᏍᎩ ᎢᎦᏤᎵ ᎤᏪᏥ ᎠᏍᎦᏯ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅ ᎢᏧᎳᎭ ᎾᏍᎩ [ᎦᎶᏁᏛ] ᎠᎦᏛᏅᎢ, ᎾᏍᎩ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᏰᎸ ᎡᎲ ᎤᏲᎱᎯᏍᏗᏱ, ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎠᏍᎦᏂ ᏗᎩᎾᏢᏗᏱ ᏂᎨᏒᎾ. ᎡᎶᏗ ᎤᏒᏂᎴᎢ. ᎨᏍᏗ ᏳᏬᎯᏳᎮ ᎤᏣᎴᏓ ᎤᎦᏐᏍᏙᏗ ᏚᏅᏓᏒ ᎠᎴ ᎤᎵᎪᏗ ᎠᏂᎭᏲᎲ ᏣᎵ. ᎤᎪᏂᏕᏅ ᎤᏃᏛ ᏓᎴᎲᏍᎬ ᎤᏁᎦ ᏚᎦᏒᏍᏛ, ᎦᎶᏇ ᏚᏂᎳᎦᎸ ᏃᏥ ᏧᎬ ᏓᎪᏩᏘᏍᎬ ᎤᏛᏅ ᎠᏌᎻᏓ. ᎦᎪᏃ ᎯᎠ ᏥᏂᏣᏛᏅ ᎤᏪᎵᎯᏍᎬᏉ ᏖᎵ ᏱᎦᏅᎯᏓ ᎬᏅᎢ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ. ᎢᎬᏱᎢ ᎠᏁᎩ, ᎠᎴ ᎣᏂ ᎠᏁᎩ, ᎤᏁᎷᎨᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎰᏌᎾ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᏕᎤᏙᏍᏛ ᏥᎦᎷᎯᏍᏗᏓ. ᎾᏍᎩ ᎾᏂᎥ ᏧᎫᏴᎡᏗ ᏥᎩ ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ; ᎤᏦᏍᏔᏁ ᎦᏬᏂᏍᎬ ᏄᎬᏫᏳᏒ ᏍᎦᏰᎬᏍᏔ ᏧᏬᏪᎳᏁ ᎤᏬᏪᎶᏗ, ᎦᏣᏄᎸ ᏕᎪᏪᎵᏍᎬ ᎦᏣᏄᎵ ᎦᏬᏂᏍᎬ. ᏑᎾᎴ ᏳᏰᏨ ᏧᏓᏄᏖᏴᏓ ᎨᏐ ᏧᏍᏆᏅᎾ, ᎠᎦᏙ ᏧᏯᏪᏨ ᏳᏰᏨ, ᎡᏍᎦᏉ ᏱᏭᏂᏏᏅ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏂᎥ ᎢᏏᎢ ᏏᏓᏁᎸᎯ ᎨᏒ ᎤᏙᎯᏳᏒ ᏩᎾᏙᎴᎰᎯ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎠᎴ ᎦᎶᏁᏛ ᏄᏩᏁᎸ ᎾᏍᎩ ᏥᏌ ᏂᎯ ᏤᏣᏛᏅᎩ. ᎤᏂᏣᏘᏃ ᎾᎿ ᎦᏚᎲ ᎠᏁᎯ ᏔᎵ ᏄᎾᏓᏕᎢ; ᎢᎦᏛ ᎠᏂᏧᏏ ᏚᎾᎵᎪᏁᎴᎢ, ᎢᎦᏛᏃ ᎨᏥᏅᏏᏛ. ᎨᏍᏗ ᏳᏂᏁᏨ ᎢᏧᎳ. ᏉᎳᏃ ᎠᎴ ᏆᏂᏆ ᎤᏤᏘ ᎤᏂᏲᏠᎯᏎᎸ ᎠᎴ ᎤᎾᏗᏒᎸ ᎠᏂᏬᏂᏍᎬ ᎾᏍᎩ, ᏚᏄᎪᏔᏁ ᏉᎳ ᎠᎴ ᏆᏂᏆ ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᏅᏩᎾᏓᎴ ᏥᎷᏏᎵᎻ ᎤᏁᏅᏍᏗᏱ ᏧᎾᏛᏛᏅᏍᏗᏱ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎾᏍᎩ ᎯᎠ ᎠᏂᏱᎵᏙᎲ ᎤᎬᏩᎵ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎾᎥ ᎠᏂᏙᎾᎢ, ᎡᏥᎩᏏ ᎾᏍᎩ Ꮎ ᏑᏓᎨ-Ꮫ, ᎠᎴ ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᏧᎯ ᎡᏥᎥᏏ-- ᎣᎯᏍᏙᏗ ᏯᏆᏓᏅᏖ ᏱᏚᎾᏓᏟᏴᎮᎢ. ᏧᏌᎨᎢ ᏚᏏᎳᏛ, ᎠᏎᏃ ᎨᏍᏗ ᏩᎾᎢ ᏱᎩ ᏗᏲᏍᏙᏗ. ᏥᏍᏆ ᎤᏂᏃᎯᏎᎴ ᎢᏴ ᎤᎾᎵᏐᏍᏗ ᎦᏝᏗ, ᎠᏰᎵ ᏚᏩᏥᏍᎦᏢ ᏅᏯ ᎤᏅᏂᏍᏘ ᎤᏓᏅᏙ. ᏦᏓᏂᏃ ᏕᎤᏬᎡᎢ, ᎠᏂᏃᎲᏍᎨ ᎤᏂᏍᎦᏅᏨᎢ. ᎯᎠᏃ ᎠᎦᏴᎵᎨ, ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏍᏘᏰᎬ ᎠᎫᏬᏯᏅ ᎠᏇᏅᎯ ᎢᎬᏓ ᎣᎭᏁ ᎢᏣ ᏭᏍᏖᏴ, ᎪᎢᎭ ᎤᏤᏌᏛ ᎦᏚᎢᏣ ᏌᎪᏂᎨ ᎠᏌᏃ, ᏗᏯᏖᏅ ᏗᎧᏍᎨᏂ ᏫᎦᏓᎥ ᎠᏌᏃ. ᎾᎿᏃ ᎤᏂᎩᏒ, ᏭᏴᎸᎩ ᎩᎶ ᎢᏳᏍᏗ ᎦᏁᎸ ᏣᏍᏓ ᏧᏙᎢᏛ, ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ, ᎾᏍᎩ ᎦᏁᎸ ᏚᏓᏯᎸᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏈᏓᏃ Ꭸ ᎢᏴᏛ ᎤᏍᏓᏩᏗᏎᎢ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏗᎦᏁᎸ ᏭᏴᎴᎢ, ᎤᏬᎴᏃ ᎨᏥᏅᏏᏓᏍᏗ ᎠᏂᏅᎢ, ᎠᎴ ᎪᏛ ᎤᎦᎾᏬᏍᎨᎢ. ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏁᏓᏍᏗ ᎤᎯᏐᏗ ᏃᎴ ᎤᏁᏍᏓᎶᏨ ᏄᏍᏕᎢ. ᏥᏳᎯᏃ ᎤᏣᏅ ᎾᏍᎩ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ ᎤᏔᏲᏎᎴ ᎤᏁᎳᎩ ᎤᏪᎵᏎᏗᏱ ᎤᏍᏓᏩᏗᏓᏍᏗᏱ. “ᎠᏯᏗ ᏍᏉ,” ᎤᏛᏁ ᏁᎵ, ᎩᎳᏈᏴ ᎤᏂᏴᎮ ᏙᏌ ᎤᏍᏗᎢ. ᎫᎭᏢ ᏭᏂᏴᎮ Philadelphia ᎤᏍᎪ ᎡᎳᏗᏣ, ᏎᎦ ᎤᎾᏓᏒᎴ ᎠᏎᏃ ᎤᏄᎸᏁ ᏭᎵᏒᏗ ᎦᎷᏯᏍᏘ ᏣᏥ. ᏍᎩᏴ ᏑᎾᎴᎢ, ᏭᏢᎾ ᏫᎵᎻ, ᎡᎳᏆᏗ ᎤᎷᏤ ᏙᏱᏟ: ᎠᏂᏂᎩᎸ ᎠᏂᎪᏕᏍᎩ, ᏲᎾ ᎤᏤᏍᏙ ᎤᏍᏓᏩᏗᏎ. ᎤᏛᎦᏍᏔᏁᎢ ᏫᎵᎻ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏄᏛᏁᎲ ᎥᏝ ᎩᎶ ᎤᏇᏓᎵ ᏴᎬᏚᏓᎴᏍᏓ ᎾᏍᎩ ᎠᎦᏔᎲᎢ; ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᎦᏙᎥᎯᏍᏙᏗ. ᏆᎴᏗᏃ ᎤᏛᏛᏁ ᎯᎠ ᏁᏪᏎᎴᎢ, ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏰᎵᏉ ᏂᏫ. ᎩᎶᏍᎩᏂ ᎢᏳᏍᏗ ᏌᎺᎵᏱ ᎡᎯ ᎠᎢᏒᎢ, ᎤᎷᏤ ᎦᏅᎢ; ᎤᎪᎲᏃ ᎤᏪᏙᎵᏤᎢ; ᎬᏂᏳᏉᏃ ᎤᏣᏘ ᎤᏱᎶᎴ ᎤᏃᎴ ᎢᏓᎵ; ᏥᏳᏰᏃ ᎠᎹ ᏓᎵᏍᏗᎳᏁᎬ ᎤᏭᏢᎥᏍᎨᎢ; ᎠᏎᏃ ᎢᎦᎵᎮᏉ. ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᏣᏄᏏ ᏗᏓᏁᎸ ᎱᏁᏅᏎ. ᏦᏚᎯ! ᎯᎠ ᏱᎾᏂᏫ, ᎯᎠ ᎠᏍᎦᏯ ᎤᎴᏅᎲᎩ ᎠᏁᏍᎨᏍᎬᎢ, ᎠᎴ ᎥᏝ ᏰᎵ ᎬᏩᏍᏆᏗᏍᏗ ᏱᎨᏎᎢ. ᎠᏧᏣᏃ ᎢᏄᏪᏎᎢ, ᏃᏊᏃ ᎢᎩᎾᏔᎾ ᏂᎾᎵᏍᏔᏅᎢ, ᏧᏓᎴᏅᏓ ᎪᎱᏍᏗ ᏱᎨᎦᎾᏛᏁᏗ ᎨᏎᏍᏗ! ”ᎭᏩ, ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏓᏅᏖᏍᎩ, “ᏣᏁᎳ ᏕᎦᏅᏌᏓ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᏂᎨᏴ; ᏞᏍᏗ ᏂᎯ ᏱᏍᏗᏍᎦᎢᎮᏍᏗ, ᏥᎦᏔᎭᏰᏃ ᏥᏌ ᎠᎦᏛᏅᎯ ᎡᏍᏗᏲᎲᎢ. ”ᎤᏙᎯᏳ ᏧᏳᏩᏂᎭ ᏘᏅᏍᎨᏂ, ᏌᎳᏓ,” ᎤᏛᏁ ᏫᎵᎻ, ᏚᎷᏫᏍᏔᏁᎮ ᎾᎥᏂ ᎧᏅᏂᏍᎩ. ᎤᎵᏌᎵᏓᏁ ᎦᏲᏟ ᏌᏌ ᏃᎴ ᎦᏲᏟ ᏚᎲᏎ ᏧᏪᏥ ᎤᏍᏉᏟ ᎭᏫᏂᏣ ᎤᎦᏃᏮ ᏧᎩᏓᏟ ᏓᏳᏓᎴᏅ ᎤᎦᏃᏮ. ᎠᏗᏍᎬ ᎧᏂᎩᏛ ᏚᏅᏓᏒ ᏴᏙᎭ, ᎾᎥᏂᎨ ᏓᏆᎴᎳ ᏣᎫᎩᎶ ᎨᏓᎵᏯ ᎢᏣ ᏗᏦᏱ ᏱᎨᏒᎾ ᎨᏓᎵ ᎢᏣ. ᎡᏣᏯᏅᎲᏍᎪ ᎡᏣᎾᏝᎢ ᎨᏒᎢ? ᎤᏁᎳᎩ; ᎢᏳᏍᎩᏂᏃᏅ ᏁᏣᎾᏝᎥᎾ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ, ᎾᏍᎩ ᎯᎬᏫᏳᏔᏅᎭ. ᎠᎴ ᎣᏥᏅᎵ ᎢᏧᎳᎭ ᎠᏁᎩ ᎣᏣᎵᏅᏟ, ᎾᏍᎩ ᎤᏩᎫᏘᎶᏛ ᎣᏥᎪᎵᏰᏛ ᎣᎦᏙᎴᎰᏒᎯ ᎤᏣᏘ ᎠᎦᎵᏱᏳ ᎨᏒᎢ, ᎠᏎᏃ ᎪᎯ ᎨᏨ ᎤᏟ ᎾᎦᎵᏴ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏣᏘ ᎢᏦᎯᏳᏒᎢ. ᎤᏂᏣᏘᏃ ᏚᏁᏤᎸᎩ ᎦᏙᎯ ᎤᎾᏅᏗᏱ. ᏥᏌ ᎾᏍᎩ ᏄᏪᏒ ᎤᏕᏯᏔᏁᎸ ᎤᏓᏅᏛᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᎭ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᏥᏂᏣᏛᏅ ᎠᏏᏴᏫ ᎤᏓᏑᏯ ᏛᎩᎶᏄᎮᎵ. ᏚᎪᎵᏰᎡ ᎢᏗᎦᏪᏍᏗ ᏌᎳᏓ, “ᎠᏤᎯ ᎤᏔᎷᎩᏍᎩ ᎢᏯᏛᏁᎯ.” ᏣᏠᎾᏍᏗ! ᎢᎬᏱ ᎯᎸ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ, ᎿᏉᏃ ᎬᏂᎨᏒᎢᏳ ᏣᎪᏩᏛᏗᏱ ᎨᏎᏍᏗ ᎯᎸᎡᏗᏱ ᎤᏢᏓᎸᏛ ᏗᏍᏓᏓᏅᏟ ᎤᎦᏑᎲᎢ. ”ᏥᎦᏔᎭ,” ᎤᏛᏁ, ”ᏂᎦᏗ ᎢᏓᎵᎮᎵᎦ ᏅᎩ ᎢᏳᎾᏙᏓᏆᏍᏗ ᎤᎧᏘᏛ ᎢᎦᎵᎢ ᏌᏌ, ᏃᏉ ᎬᏂᎨᏒ ᏄᎵᏍᏓᏏ. “ᏥᎦᏔ ᏍᎩᎾᎾ ᏱᏂᎭᏛᎦ. ᏥᏌᏃ ᎠᎦᏔᎲᎩ ᎤᎾᏚᎵᏍᎬ ᎬᏩᏛᏛᏗᏱ, ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᎪᏕᏣᏓᏛᏛᎲᏍᎦ ᎦᏛᎬᎢ ᎯᎠ ᏥᎾᎩᏪᏒᎩ; ᏂᎪᎯᎸᎾᏉ ᎿᏉ ᎥᏝ ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ, ᎠᎴ ᎿᏉ ᏔᎵᏁ ᏂᎪᎯᎸᎾᏉ ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ? ᏔᎵᏁ ᏗᎦᏁᎲ ᏭᎷᏣ, ᎤᏍᏗ ᎠᏣᏗ ᎤᎪᎮ. ᏅᏲ ᏥᎦᏯᎶ ᎢᏳᏍᏗ ᏄᏍᏕ. ᏂᎦᏓ ᎠᏃᎵᎩ ᏲᎾᎠᎬᏱᏍᎩ, ᏲᎾᏉᏗ ᎠᏃᏎᎰ, ᏚᏙᎥ ᏫᎩᏛ, ᎠᏧᏣᏉ ᏥᎨᏎ, ᏧᎴ ᏭᎬᏫᏳᏒ ᎡᏆ ᏲᎾ, ᎠᎬᏱ ᎤᏐᏅᏁ ᎤᏛᎵᏍᏙᏗ ᎦᏟᏓ ᎬᏘ, ᏃᏉ ᎠᏰᎳᏍᏗ ᎬᏘ ᏭᎯᏐᏁ, ᎢᏧᎳ ᎠᏂᎩᎦᎲ ᏄᎾᎵᏍᏔᏁ. ᏂᎦᏓ ᎥᏳᎩ ᏗᏂᏱᏙ ᏥᏓᏥᎶᏍᏗ ᏰᎵᏉ ᏗᎦᎸᏗ ᎠᎴᏫᏍᏙᏗ ᎠᏍᏆᏗᏍᎬ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᏱᏙᎩᏯᏪᎦ; ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎦᏚᎢᏗᏢ ᎡᎯ ᎨᏒ ᎣᎩᏩᎾᎦᎶᏤᎭ, ᎭᏫᏂᏗᏢᏍᎩᏂ ᎡᎯ ᎨᏒ ᎣᎦᎵᏂᎪᎯᏎᎭ ᏂᏓᏙᏓᏈᏒᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎯᎠ ᏂᏥᏪᏍᎨᏍᏗ, ᎣᎩᏙᏓ ᎦᎸᎳᏗ ᎮᎯ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏕᏣᏙᎥᎢ; ᏨᎬᏫᏳᎯ ᎨᏒ ᏫᎦᎾᏄᎪᎢ; ᎭᏓᏅᏖᏍᎬ ᏫᏂᎦᎵᏍᏓ ᎡᎶᎯ ᎾᏍᎩᏯ ᎦᎸᎳᏗ ᏥᏂᎦᎵᏍᏗᎭ. ”ᎠᏆᏚᎵ ᎬᏃᏓ ᎠᏇᏓᏍᏗ ᎭᏂᏉ ᏗᎩᏏ ᎦᏓᏍᎬᎢ ᏗᏆᎵᎢ ᎠᏁᏙᎲ ᎾᎥᏂ. ᎠᎴ ᎾᏍᏉ ᎠᎾᏕ-ᎶᏆᏍᎪ ᎤᎾᏓᏄᎸᏗ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎠᏁᏙᎵᏙᎰ ᏓᏓᏁᎳᏗᏒᎢ; ᎥᏝ ᎠᎴ ᎤᎾᏓᏄᎸᏗᏉ ᎤᏩᏒ ᏱᎨᏐᎢ, ᎾᏍᏉᏍᎩᏂ ᎧᏃᎮᏛ ᎠᏂᏱᏙᎯ ᎨᏐᎢ ᎠᎴ ᎤᏂᏂᎳᏗᏌᏘ, ᎠᏂᏃᎮᏍᎩ ᎾᏍᎩ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎤᏂᏃᏄᏍᎩ ᎾᏍᎩ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎤᏂᏃᎮᏗᏱ. ᎠᏎ ᏤᏅᏍᏗ.” ᎾᏍᎩ ᎯᏳᏍᏗ ᏂᎦᎥ ᎪᎱᏍᏗ ᏗᏥᎧᎿᏩᏚᎦ ᎨᏦᏎᎮᏍᏗ ᏕᏥᎧᎿᏩᏕᎨᏍᏗ ᎠᎴ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ; ᎠᏎᏃ ᎾᏍᎩ ᎾᎾᏛᏁᎲᎢ ᏞᏍᏗ ᏱᏂᏣᏛᏁᎮᏍᏗ; ᎠᏂᏁᎪᏰᏃ ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏱᎾᎾᏛᏁᎰᎢ ᎡᏣᏁᏍᎨᎲᎯ ᎨᏒ ᎡᏥᏝᏅᎯ ᎨᏥᏅᏏᏛ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎡᏥᎫᏍᏛᏔᏅᎯ, ᏥᏌ ᎦᎶᏁᏛ ᎤᏩᏒ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏅᎯ ᏅᏯ ᎢᏳᎵᏍᏔᏅᎯ; ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᏩᎦᏖᎢ, ᏌᎺᎵᏱ ᎠᎴ ᎨᎵᎵ ᎠᏰᎵ ᎤᎶᏎᎢ. ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᏧᏁᎸᎯ ᏱᎩ ᎤᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏥᎩᏁᎸᎩ ᎠᏴ ᎾᏍᎩ ᎡᏙᎢᏳᏅᎯ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎦᏙ ᎠᏴ ᎨᏎ ᏰᎵ ᎦᏥᏲᏍᏙᏓᏁᏗ ᎨᏎ ᎤᏁᎳᏅᎯ. ᎭᎾ ᏭᏓᏐᎴ ᏫᎵᎻ, ᎤᏟᏂᎩᏓ ᎧᏴᏐᎵ ᎱᏮᏔᏁᎢ, ᎾᎨᎢᏴ ᏭᏓᎩᏅᏎ ᏥᏍᏕᏥ. ᎠᏏᏴᏫᏃ ᎡᎮ ᏆᎳᏆ ᏧᏙᎢᏛ ᎾᏍᎩ ᎢᏧᎳᎭ ᏕᎨᎦᎸᎡ ᎬᏩᎵᎪᏁᎸᎯ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅᎯ, ᎾᏍᎩ ᎤᎾᏓᎸᎯ ᎨᏎ ᎾᎯᏳ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅᎢ. “ᎧᎪᏃ ᎤᏪᏲᏁ ᎧᏅᏂᏍᎩ? “ᏑᎾᎴᏗ ᎩᎳ,” ᎤᏛᏁ ᎰᎻ. ᏧᎳᏏᏕᏂᏃ ᏗᎬᏩᏔᎷᎩᏍᎩ ᎥᏣᏱ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᏥᎸᏱ ᎬᏔᏅᎯ ᎣᏍᏛ ᎢᎬᏁᎸᎯ ᎾᏍᎩᏯᎢ; ᎧᏁᎬᏃ ᎤᏣᏘ ᎠᎹ ᏥᏚᏍᏆᏃᏴᎪ ᎾᏍᎩᏯ ᎨᏒᎩ. ᏍᎩᎾᎾ ᏱᎩ, ᏅᎩ ᏧᏅᏏᏱ ᏗᏗᎧᏁ ᏯᏓᏅᏍᎬᎾ. ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎾᎿ ᏕᎪᏢᏒ ᎥᏝ ᏧᏂᏍᏚᏗ ᏱᎨᏎᏍᏗ ᎢᎦ, ᎥᏝᏰᏃ ᏒᏃᏱ ᏱᎨᏎᏍᏗ ᎾᎿᏂ. ᎰᏩᏃ ᎾᏍᎩ ᎠᏃᎯᏳᎲᏍᎩ ᎨᏒ ᎣᏍᏛ ᏄᎾᎵᏍᏓᏁᎰ ᎨᎦᏠᏯᏍᏗᏍᎪ ᎣᏍᏛ ᏄᎵᏍᏓᏁᎸ ᎤᏬᎯᏳᎯᏍᏗ ᎡᏆᎭᎻ. ᎢᏳᏪᏅᏍᏗ ᎤᏕᏅ. ᏂᎦᏓ ᎠᎾᏓᏅᏖ ᎨᏥᏍᏗ ᎤᎾᏕᏘᏱᏍᎬ ᎢᏴ. ᎣᎦᏁᏦᎿᎾ, ᎣᎩᏔᎶᏒ, ᎠᏆᏛᏛᏅ ᏲᎾ ᏯᏆᏓᏖᎶᏒ ᎠᎴ ᏴᎩᏔᎶᏌ ᎠᏂᏩᏥᏂ ᎣᏣᏁᏦᎥᏍᎬ. ᎩᎶᏰᏃ ᎤᎮᏍᏗ ᎠᏥᏁᏗ ᎨᏎᏍᏗ, ᎤᏣᏘᏃ ᎤᎮᏍᏗ; ᎩᎶᏍᎩᏂ ᏄᎲᎾ ᎨᏎᏍᏗ ᎠᏥᎩᎡᏗᏉ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᏍᏉ ᎤᎲᎢ. ᎠᏎᏃ ᏭᏓᏅᏖᎴ ᏥᏍᏕᏥ ᎤᎵᏍᏕᎸᏓ ᎨᏎ ᎤᏂᏍᏆᏂᎪᏔᏅ ᏌᎳᏓ ᎬᏅᎢ. ᎠᏂᏆᎵᏏ ᎾᏍᏉ ᎬᏩᎷᏤᎸ ᎬᏩᎪᎵᏰᏍᎬᎩ, ᎯᎠ ᏂᎬᏩᏪᏎᎲᎩ; ᏚᏳᎪᏗᏍᎪ ᎠᏍᎦᏯ ᎤᏓᎢᏅᏗᏱ ᎤᏓᎵᎢ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᏴᏗᎵᏰᎢᎸᏍᏗᎭ? ᏥᎪᎨ ᏅᎵᏌᎵᏉ ᎯᏰᎸᏍᎦ ᏄᏧᏈᏍᏛ ᎤᏓᏅᏘᏳ ᎨᏒ ᎠᎴ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᎡᎵᏍᎬᎢ, ᏒᎢ, ᎠᎴ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᎡᎵᏍᎬᎢ, ᏂᎦᏔᎲᎾᏉ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏘᏳ ᎨᏒ ᏣᏘᏁᎬ ᏣᏁᏟᏴᏍᏗ ᎨᏒ ᏣᏓᏅᏛᎢ? ᎢᏴ ᎠᏁᏙᎲ ᎠᏂᏴᏫᏯ ᎦᏚᏏ, ᎠᎦᏗᏓ ᎧᏃᎮᏗ ᏧᎾᏓᏟᏴᏗ ᏃᎴ ᎤᎾᏗᏍᎦᎶᏗ. ᏴᎬᏂᎷᎩᏗ ᏱᎨᎩᎪᏩᏛ, ᎠᏆᏛᏅ. ᎠᏏᏃ ᎨᎵᎵ ᎠᏁᏙᎲᎢ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏴᏫ ᎤᏪᏥ ᏴᏫ ᏙᏓᎨᏥᏲᎯᏎᎵ, ᎢᏥᎪᏩᏗᎭᏰᏃ , ᎢᏓᎵᏅᏟ, ᏄᏍᏛ ᎡᏥᏯᏅᎲᎢ, ᎾᏍᎩ ᎥᏝ ᏳᏂᏣᏔ ᎠᏂᏏᎾᏌᏂ ᎤᏇᏓᎵ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏳᏂᏣᏔ ᏧᎾᎵᏂᎩᏛ, ᎥᏝ ᎠᎴ ᏳᏂᏣᏔ ᎨᏥᎸᏉᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎤᏁᎳᏅᎯ ᎤᏣᏘ ᎦᎸᎳᏗᏳ ᎤᏌᎳᏓᏅ, ᎠᎴ ᎤᏁᎸ ᏧᏙᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏂᎦᎥ ᏧᎾᏙᏍᏙᏗ ᎨᏒᎢ, ᎥᏝ ᎠᏗᎾ ᎠᎩᏂᎬᏎᎲ ᏥᏁᎢᏍᏗᏍᎬ ᏱᎩ, ᎠᏆᏕᎶᏆᎥᏰᏃ ᏂᎦᎥ ᎾᏆᎵᏍᏓᏁᎵᏕᎬ ᎣᏏᏳᏉ ᎠᎩᏰᎸᏗᏱ. ᎩᎦᎨ ᎤᏓᏴᎳᏔᏅ ᎤᏁᎦ ᎠᎬᏓᎨᏂ ᏣᎵ ᎤᎵᏍᏚᎸ. ᎢᏳ ᎠᎴ ᎠᎨᏴ ᎤᏰᎯ ᎠᏓᎡᎨᏍᏗ, ᎠᎴ ᏅᏩᏓᎴ ᏓᎾᏤᎨᏍᏗ, ᎾᏍᎩ ᎠᏓᏲᏁᎮᏍᏗ. ᏑᎾᎴᏃ, ᎠᏏ ᎪᎯᏗᏳ ᎬᏩᎩᏨᏗ ᎨᏒ ᎤᏗᏛᎮ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎢᎾᎨ ᏭᎶᏎᎢ, ᎠᎴ ᎾᎿ ᎤᏓᏙᎵᏍᏔᏁᎢ. ᎤᏍᏗ ᎤᏪᏴ ᏩᎦᎬᏍᏉᎥ ᎠᎹ ᎤᏴᏣ ᎬᏘ, ᏩᏆᏁᏦᏅ. ᎥᏝᏰᏃ ᎩᎶ ᏲᎩᎾᎵᎪᎭ ᎤᏠᏱ ᎤᏓᏅᏔᏩᏕᎩ, ᎾᏍᎩ ᎠᏎ ᎬᏩᎦᏌᏯᏍᏙᏗ ᎨᏒ ᏂᏣᏛᎿᏕᎬᎢ. ᎾᏍᎩ ᎾᏍᏉ ᏗᎩᎦᏴᎵᎨ ᏗᎨᏥᏲᎯᏎᎸᎯ ᎨᏒ ᏦᏑᏩ ᏧᎾᏖᏉᎶᏎ ᏧᏂᏲᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎪᎯ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏚᎨᎯᏕᎴ ᏗᎩᎦᏴᎵᎨ ᏕᏫ ᏤᎮ ᎢᏯᏍᏗ. ᎿᏉᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎠᎴ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒ ᎤᎾᏛᎦᏅ, ᎾᏍᎩ ᎤᎾᏓᏅᏖᏔᏁᎢ, ᎭᏢ ᏮᏛᏍᏗᏥ ᎯᎠ, ᎤᏁᎵᏎᎢ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎤᏙᎯᏳᎯ ᎢᎳᏯ ᎢᎬᏱ ᎤᎷᎯᏍᏗ ᎠᎴ ᎤᏬᏢᎯᏐᏗ ᏂᎦᎥ ᎪᎱᏍᏗ. ᏚᎦᏒᏍᏛᏃ ᏓᏳᏂᏄᎪᏨᎩ ᎥᎴ ᎠᎴ ᎡᎶᎯ ᏚᏂᏰᎵᏒᎩ; ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᎨᏥᏁᎸᎩ ᎾᏍᎩᏯ ᏗᏂᏙᎬ ᎠᎾᏓᏨᏯᏍᏗᏍᎩ ᎡᎶᎯ ᎠᏁᎯ ᎤᎵᏂᎩᏛ ᏧᏂᎭ. ᏰᎵᏉᎨ ᏳᏫᏂᏴᎭᎦ ᏐᏉ? ᎥᏝᏰᏃ ᏲᏥᎶᏒᏍᏗᎭ ᎣᎦᏟᎶᏒᎸᎢ, ᎾᏍᎩᏯ ᏂᎯ ᏗᏤᎲ ᏫᎦᏲᎩᎷᎯᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏐ ᎢᏳᏍᏗ; ᏂᎯᏰᏃ ᎾᏍᏉ ᏗᏤᎲ ᎢᏴᏛ ᏬᎩᎷᏨ ᎣᏣᎵᏥᏙᎲᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ”ᎣᏍᏓ ᎤᏒᎯ!” ᏑᎾᎴ ᎢᏣ ᎠᏛᎪᏗ ᎨᏎ ᎤᏃᏴᎬ ᎦᏄᎸ ᎠᏣᎩᏍᎩ ᎠᏕᏲᎲ, ᎢᎾ ᎢᎦᏘ ᎦᏄᎸ ᎦᎴᏴᏍᎨ. ᎾᎯᏳᏍᎩᏂ ᎨᏒᎢ ᎠᎴ ᎾᎯᏳ ᏕᎨᏌᏗᏒᎢ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎤᏚᎸᏗ ᏱᏂᏣᎵᏍᏓᏁᎭ ᎢᏨᏲᏪᎳᏁᏗᏱ. ᏥᏄᏓᎴᏰᏃ Ꭱ-ᎶᎯ ᏤᎭ, ᎠᏰᎸ ᎤᏚᎸᏗ ᏥᎩ, ᎠᎴ ᏨᎦᏙᎵ ᎤᏙᎸᏗ ᏥᎩ, ᎠᎴ ᎠᏢᏉᏗ ᎠᎴᏂᏓᏍᏗᏱ, ᎾᏍᎩ ᎥᏝ ᎠᎦᏴᎵᎨᏍᏗᏱ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ, ᎡᎶᎯᏉᏍᎩᏂ ᎤᏓᎴᏅᎯ. ᎧᎹᎹ, ᏥᏍᏆ, ᎠᎴ ᏩᏚᎵᏏ ᎠᏂᏩᏛᎰᎯᎲᎢ. ”ᏍᎩᎾᎾᏂ,” ᎤᏛᏁ. ᎠᏎᏃ ᎢᏨᎦᏔᎭ, ᎤᏁᎳᏅᎯ ᎡᏥᎨᏳᎢᏳ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏍᏔᏯ ᏥᏯᏄᎩᏣᏅ, ᎠᏆᎵᎮᎵᏨ, ᏍᎩᎾᎾ ᎤᏩᏌ ᏲᎩᏂᎭᏍᏗ. ᎤᏙᎯᏳᎯᏰᏃ ᎥᏝ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏱᏚᏬᏯᏁᏎᎢ, ᎡᏆᎭᎻᏍᎩᏂ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏚᏬᏯᏁᏎᎢ. ᎾᏍᎩ ᎢᏦᎯᏳᏒ ᏴᏫ ᎠᏂᎦᏔᎿᎥᎢ ᏄᎵᏍᎦᏍᏙᏛᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎤᏁᎳᏅᎯᏍᎩ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ. ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᏎ ᏗᏓᏙᏕᏍᏗᏍᎩ ᎤᎾᏄᎪᎢᏍᏗ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᎾᏄᎪᏫᏒᎯ! ᏤᎵᎪᏃ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎾᏍᎩ ᏤᎵᎪ ᎢᎤᏄᎪᏨ ᎠᎴ ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ, ᏗᎨᏫ ᏆᏗᎻᏯ, ᎾᏍᎩ ᏗᎻᏯ ᎤᏪᏥ, ᎤᏪᎴ ᏅᏃᎱᎶᏗ ᎠᏚᎳᏗᏍᎨᎢ. ᏃᏉ ᎦᏓ. ᎠᎴ ᏦᎢᏁ ᎤᏓᎵᎢ ᏧᏌ ᎾᏍᎩ ᎡᎶᏛ ᎤᏤᎵ ᏧᎬᏩᎶᏗ ᎤᎦᏌᏯᏍᏗᏕᎩ, ᎠᎴ ᏑᏌᏂ, ᎠᎴ ᎠᏂᎪᏗᏳ ᏅᏩᎾᏓᎴ ᎾᏍᎩ ᏥᎬᏩᏍᏕᎸᏙᏗᏍᎨ ᎪᎱᏍᏗ ᎤᏂᎿᎥᎢ. ᎿᏉᏃ ᏛᏂᎪᎯ ᏴᏫ ᎤᏪᏥ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸᎢ, ᎤᏄᏬᏍᏕᏍᏗ ᎤᏣᏘ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎾᏃ ᎬᎩᏍᎦᎩ, ᏄᎾᏚᎵᏍᎬᎾ ᏥᎨᏒ ᎠᎩᎬᏫᏳᎯ ᎢᏯᏆᎵᏍᏙᏗᏱ ᎠᏁᎲᎢ, ᎡᏗᏣᏘᏄᎦ, ᎠᎴ ᏗᏥᎷᎦ ᏥᎦᏔᎲᎢ ᎠᏓᏅᏙᏍᎩᏂ ᏱᏗᏣᏘᏂᏙᎭ, ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᏱᎨᏣᏚᏓᎸ. ᏓᏍᏓᏎᎮᎵᏃ ᎤᏛᏅ ᎦᎸᎳᏗ ᎧᏅᏑᎸᎢ, ᎦᏳᎳ ᎬᎿᎢ, ᎠᎴ ᎠᏛᏅᎢᏍᏔᏅᎯ; ᎾᎿ ᏍᎩᏯᏛᏅᎢᏍᏓᏁᎸᎭ. ᎢᎪᎯᏛ ᏥᏍᎦᎢᎲ, ᏐᏉ ᎦᏂᏍᏗ ᏳᎾᏌᎾᎩᏒ, ᏂᎦᏓ ᎤᏁᏍᎩᎸ ᏱᎦᏅᎪᎣᏐᎾ. ᎠᏂᏃ ᎤᎭ ᎬᏩᏁᏤᎸᎯ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏧᎸᏍᏗᏱ ᏂᎦᏛ ᏕᏣᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎩ. ᎠᎴ ᎠᏥᏁᎴ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎤᏰᎸᏛᎢ, ᎠᏍᏓᏱᏗᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎲᎢ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏬᎯᏳᏒ ᎠᏏ ᎾᏥᎤᏍᏕᏎᎸᎾ ᏥᎨᏎᎢ; ᎾᏍᎩ ᎤᏂᏙᏓ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ, ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᎨᏒᎢ; ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎾᏍᎩ ᎾᏍᏉ ᎨᏥᏰᎸᎾᏁᏗᏱ; ᎿᏉᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏁ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎠᎴ ᏂᎦᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏧᏂᏅᏍᏗᏱ ᎠᏂᏍᎦᏯ ᏧᎾᏑᏰᏛ ᎤᏅᏒ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩ ᏧᏓᏏ ᏆᏏᏆ ᏧᏙᎢᏛ ᎠᎴ ᏌᏱᎳ ᎨᏥᎸᏉᏗ ᎠᎾᏓᏅᏢᎢ, ᏉᎳ ᎠᎴ ᏆᏂᏆᎢᏧᎳᎭ ᎤᏁᏅᏍᏗᏱ ᎥᏘᏍᎩ, “ᏰᎵᏉᏍᎪ ᎠᏕᎳ ᏱᏕᏍᎬᏏ?” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎠᎬᏂᏗᏳ Ꭰ-Ꮄ ᎤᎦᎵᏍᏗ ᎢᏯᏓᏛᏁᎯ ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᎤᏠᏱᏉ ᎢᏣᏓᏅᏓᏗᏍᏗᏱ, ᎾᏍᎩᏯ ᎪᎶᏁᏛ ᏥᏌ ᎠᏓᏅᏖᏍᎬᎢ; “ᎨᏍᏗ ᏐᏉ ᎤᏪᏥ ᏯᏆᏚᎵ ᎡᏍᎦ ᎢᏳᎵᏍᏙᏗ.” ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎤᏙᏓ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᎤᏓᏙᎵᏣᏘ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ Ꭴ-ᏁᎳᏅᎯ ᏂᎦᎥ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ; ᎠᎬᏱ ᎡᎩ ᎠᎱᎵ ᎦᎵᎥᏂᎮ, ᎡᎶ ᎢᎬᎾᏕᏅ ᎠᎵᏖᎸᏍᎨ ᎤᏃᏴᎬ. “ᎠᎭᏂ ᏐᎢ! ᎠᎭᏂ ᏐᎢ!” ᎤᏛᏁ ᏙᏯ. “ᏌᎳᏓ ᎠᎾᏓᏤᎵ ᎤᏓᎵᏁᎯᏕ. ᎤᏥ ᏃᎴ ᎤᏙᏓ ᎱᏂᎷᏣ ᏚᏃᎯᏎᎴ ᏄᏛᏁᎸ ᏃᎴ ᎢᏳᏍᏗ ᎤᎪᎲ ᏧᏪᏅᏒ ᎤᏚᎵᏍᎬ ᎤᏪᏅᏍᏗ. ᏥᏌᏃ ᎤᏣᎢᏒ, ᏚᎪᎮ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᏚᏪᏙᎵᏤᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᏫ ᎤᏂᏃᏕᎾ ᏓᎾᏤᎳᎬ ᏁᎲᎾ ᏥᎨᏐ ᎤᏂᎦᏘᏯ; ᎤᎴᏅᎮᏃ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏚᏪᏲᏁᎢ. ᎠᎴ ᏚᏪᏟᏌᏅᎩ ᎠᎹᎨᏙᏂ ᏚᏙᎥ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏯᎬᏗᎭ. ᏗᎦᏓᏁ ᏧᎭᏄᏬ ᏚᏓᎥ ᏦᎢ ᏗᎦᏅᏌᏗ ᏔᎷᎩᏍᎩ ᎠᏥᎸᏳᎸᏗ ᎾᎥᏂ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᏂᏗᎾᏰᏍᎬᎾ ᏫᎨᎩᏴᏍᏗ ᏥᏄᎵᏍᏔᎤ ᎤᏟᎢᎦᎸᏉᏗᎨᏒ ᏥᏌ ᎤᎩᎬ ᎢᏳᏩᏂᏌᏅᎯ. ᎯᎠᏃ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᎾᏍᎩ Ꮎ ᏥᏌ ᏱᎩ, ᏦᏩ ᎤᏪᏥ, ᎾᏍᎩ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᏗᏗᎦᏔᎯ ᏥᎩ? ᎦᏙᏃ ᎤᎵᏍᏙᏔᏅ, ᎦᎸᎳᏗ ᏅᏛᏆᏠᎠᏒᎯ, ᏣᏗᎭ? ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᎾᏄᎪᏩ ᎠᏙᎴᎰᎯᏍᏙᏗ ᏕᏥᏁᏟᏴᏒ ᏕᏣᏓᏅᏛᎢ; ᎠᎴ ᏞᏍᏗ ᎢᏣᎴᏅᎲ ᎯᎠ ᎢᏥᏪᏒ ᏕᏣᏓᏅᏛᎢ; ᎡᏆᎭᎻ ᎣᎩᏙᏓ ᎠᏴ; ᎢᏨᏲᏎᏰᏃ ᎤᏁᎳᏅᎯ ᏰᎵᏉ ᎯᎠ ᏅᏯ ᏱᏕᎬᏓ ᏱᏕᎪᏢᎾ ᎡᏆᎭᎻ ᏧᏪᏥ. “ᎳᏘᏂᏗ,” ᏚᏬᏏᏌᏁᎢ ᏌᎳᏓ. ᎿᏉᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏌᏚᏏ, ᎾᏍᎩ ᏣᎾᏓᏱᎭ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ, ᎬᏩᎷᏤᎸ ᎬᏩᏛᏛᏁᎢ, ᎠᏂᎦᏔᎲᏍᎩ ᏳᏂᎪᎵᏯᎠ ᏂᎬᏩᏍᏛ ᎡᎶᎯ. ᎭᏫᏂ ᏭᏴᎴ ᏥᏍᏕᏥ ᏃᎴ ᏂᎦᏓ ᎤᎪᏁ ᎤᏘᏴ. ᏂᎦᏓ ᎤᏒᎾ, ᎤᎵᏰᏔᏁᎢ, ᎧᏁᏌᎢ ᏭᏴᎴᎢ ᎦᏢᏍᎩ. ᎤᏁᎷᏁᎢ ᏌᏌ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᏞᎩᏳ ᏥᏅᎵ, ᎾᏍᎩ ᎿᏉ ᏔᎵᏁ ᎢᎡᏥᎪᎥᎭ, ᎨᏣᎵᎮᎵᏍᏗ ᏱᎩ, ᎠᎴ ᎠᏴ ᎡᏍᎦ ᎢᏴᏛ ᎤᏲ ᏯᏆᏓᏅᏔᏩᏕᎦ. “ᏌᏌ ᎠᏨᏯᎢ?” ᎠᎴ ᎠᏂ ᎾᏍᎩ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬ ᎬᏂᎨᏒ ᏂᎬᏁᎭ; ᎣᏏᏳᏰᏃ ᎢᎨᏣᎵᏍᏓᏁᏗ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏣᎴᏅᏛ ᏥᎩ, ᎿᏉ ᏑᏕᏘᏴᏛ, ᎥᏝ ᎢᏣᏛᏁᏗᏱᏉ ᎾᏍᎩ, ᎾᏍᏉᏍᎩᏂ ᎣᏏᏳ ᎢᏥᏰᎸᏗᏱ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏛᏛᏁ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙ ᎦᏛᎦ ᎯᎠ ᏓᏟᎶᏍᏛᎢ. “Ꭳ, ᎨᏍᏗ ᏯᏆᏚᎵ ᏁᎳᎩ ᎠᏇᎵᏍᏗ ᏓᎩᏏᎳᏛ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᏥᏳ ᎥᏓᎵ ᎠᏰᎵ ᎠᏂᏂᏎᎢ, ᎤᏩᏒᏃ ᏙᏱ ᎡᏙᎮᎢ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᎾᏓᏙᎵᏣᏘ, ᏛᎨᏥᏙᎵᏥᏰᏃ. ”ᎨᏍᏗ ᏱᏥᎦᏔ ᎢᏳᏍᏗ ᎨᏒ ᏭᎬᏫᏳᏒ ᏦᏒᏅ,” ᎤᏛᏁ ᏫᎵᎻ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎾᏍᏉ ᎬᏂᎨᏒ ᎾᏋᏁᎭ, ᎠᎴ ᎾᎦᏛ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏍᏉ ᎪᏪᎵ ᏕᎬᎩᏅᏁᎸᎩ ᎢᏓᎵᏅᏟ ᏧᏂᎪᏩᏛᏗ, ᎠᎴ ᏕᎹᏍᎦ ᏩᎩᎶᏒᎩ, ᏕᏥᏯᏅᎲᏒ ᎾᎿ ᎠᏁᎯ ᏗᎨᎦᎸᎢᏛ ᏗᎦᏥᏯᏘᏃᎯᏍᏗᏱ ᏥᎷᏏᎵᎻ, ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ. ᎠᎴ ᏥᎦᏔᎯ ᎨᏒᎩ ᎾᏍᎩ, (ᎠᏰᎸ ᎠᏯᎥ, ᎠᎴ ᎠᏰᎸ ᎾᏯᎥᎾ ᎨᏒ ᎥᏝ ᏱᏥᎦᏔᎭ; ᎤᏁᎳᏅᎯ ᎠᎦᏔᎭ;) ᎥᏝ ᎩᎶ ᎠᏛᎩᎩᎡᎵ, ᎠᏋᏒᏉᏍᎩᏂ ᎠᏆᏓᏅᏖᏛ ᎡᎳᏗ ᏓᏥᏂ. ᎠᎩᎭ ᏰᎵᏉ ᎡᎳᏗ ᎬᎩᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎩᎭ ᏰᎵᏉ ᎬᎩᎩᏏᏐᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎡᏙᏓ ᎠᎩᏁᏤᎸ. ᎾᏍᎩ ᏛᎩᎸᏉᏔᏂ ᎠᏴ, ᎠᏆᏤᎵᏰᏃ ᎨᏒ ᏛᎩᏏ ᎠᎴ ᏓᏥᎾᏄᎪᏫᏎᎵ. ᏂᎦᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎤᏬᏚᎯ ᎠᎴ ᎣᏍᏛ Ꭰ'ᏱᎸᏛ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎠᏂᏉ ᎢᏕᎲ ᎤᏩᏒ ᎤᏚᎩ ᏱᎬᎭ ᎦᎶᏁᏛ ᎢᎩᏍᏕᎸᏗᏱ, ᎾᏂᎥ ᏴᏫ ᏕᏗᎪᎾᏛᏗ ᎤᏲ ᏂᎦᏛᏅᎢ. ᎥᏝ ᎠᎴ ᏅᏩᏓᎴ ᎩᎶᎢ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏯᎭ, ᎥᏝᏰᏃ ᏅᏩᏓᎴ ᏕᎤᏙᎥ ᎦᎸᎶ ᎭᏫᏂᏗᏢ ᏴᏫ ᎠᏁᎲ ᎠᎵᏍᎪᎸᏔᏅᎯ ᏱᎩ ᎢᎦᎵᏍᏕᎸᏙᏗ. ᏚᎾᏕᏯᏙᏔᏅᎩᏃ ᏴᏫ ᎠᎴ ᎦᏚᎲ ᎨᏥᎦᏘᏗᏍᏗ, ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅ. ᎠᏎᏍᎩᏃ, ᏥᏍᏚ ᎤᏩᎾᏖ ᎠᎵᏍᎪᏍᎬ ᏩᎭᏯ. ᏃᎴ ᏍᏉ, ᎦᏓᏁ ᎢᎦᎵᏍᏗᏍᎩ ᏱᎨᏒᎾ. ᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᎪᎥᎩ ᎦᎸᎶᎢ ᎠᏰᎵ ᎨᏒ ᎦᏃᎯᎵᏒᎩ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎣᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎤᎾᏓᏤᎵᏛ ᏓᏁᏩᏗᏒ ᏴᏫ, ᎠᎴ ᏗᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎡᎾᎢ ᎤᎵᏬᏨ ᏓᏳᏓᎴᏅ. ᎠᏴ, ᏉᎳ, ᏥᏴᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬᎢ, ᎠᎴ ᏗᎹᏗ ᎢᎩᏅᏟ, ᏫᏍᏛᏲᏪᎳᏏ ᏆᎵᎹᏂ ᎤᏣᏘ ᎢᏍᏛᎨᏳᎢ, ᎠᎴ ᎤᏠᏱ ᏗᎩᎸᏫᏍᏓᏁᎯ, ᎠᏏᏉᏃ ᏓᏂᏬᏁᏗᏍᎨ ᏴᏫ, ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏛᏅ-ᏗᏚᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎠᏂᏌᏚᏏ ᎬᏩᏂᏃᎴᎢ; ᎢᏳᏃ ᎩᎶ ᎢᎩᏅᏟ ᎠᎴ ᎢᎩᏙ ᏧᏂᏰᎸᎭ ᏱᎩ, ᎠᎴ ᏳᏂᏂᎬᎦ ᏂᏚᎩᏨᏂᏒ ᎠᎵᏍᏓᏴᏗ ᎨᏒᎢ, ᎡᎵᏍᏓᎦ ᎢᏧᎳᎭ ᎣᏍᏗᏴᎩ, ᏫᏥᏲᎵᎭ, ᎠᎴ ᎹᎦ ᏆᏂᏆ ᎤᏙ ᎤᏪᏥ, (ᎾᏍᎩ ᎤᎬᏩᎵ ᎢᏣᏛᎦᏅᎯ ᏥᎩ; ᎢᏳᏃ ᏫᏥᎷᏤᎸᎭ ᏕᏣᏓᏂᎸᏨᎭ;) ᎦᏓᎭᏃ ᎠᏓᏅᏙ ᎤᎸᏕᏍᏔᏅ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏅ, ᎤᏄᎪᏤᎢ. ᎠᏎᏃ ᎨᏍᏗ ᎠᎵᏍᏆᏙᏅᏱᎩ. ᎾᏍᎩᏯ ᎤᏪᎵᏎ, ᎨᏍᏗ ᏳᏫᏚᎧᎾᎾ ᎣᎭᏁ. Ꭵ ᎤᏂᏣᏘᏃ ᎠᏂᎦᏖᏃᎮᎢ, ᎠᎴ ᏂᎦᏛᏉ ᎠᏫ ᏙᏧᎾᏓᏅᏛ ᎬᏩᏓᏅᏖᏍᎨ ᏣᏂ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒ, ᎠᎴ ᎦᎶᏁᏛ ᏂᎨᏒᎾ ᎨᏒᎢ; ᏚᏟᎶᏍᏓᏁᎴᏃ ᎾᏍᏉ [ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ ᎩᎶ ᎢᏤ ᎠᏄᏬ ᎤᏪᏘᎯ ᏱᎦᎳᏍᏢᎥᏍᎪᎢ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏛᏁᎸ, ᎢᏤ ᎠᏄᏬ ᎦᏣᎦᎵᏍᎪ ᎤᏪᏘ, ᎠᎴ ᎾᏍᏉ ᎢᏤ ᎠᎬᎭᎸᏛ ᎥᏝ ᏱᏓᎾᏙᎵᎪ ᎤᏪᏘ. ᎯᎢᎾ ᎠᏍᎦᏯ ᏍᏏᏉᏯ ᎠᏲᎤᏟ ᎨᏎᎢ. ᏣᎵ ᏫᏥᎢᎦ ᎦᏬᏂᏍᎬ, ᎧᏃᎮᏍᎬ ᎡᏘᏴ ᏣᏁᎮ ᎠᏫ ᎢᏳᎾᏍᏘ ᏃᎴ ᏯᎾᏌ, ᎨᏍᏗ ᎩᎶ ᏧᏂᎪᎲ ᏱᎨᏎ, ᏣᎵ ᎤᏩᏌ. “ᏙᎤᏍᏗ ᏗᏣᎷᏫᏍᏔᏁᏗ? ᎤᏛᏛᏁ ᏫᎵᎻ. ᎤᏩᎾᏕᏍᎩ ᎦᏙ ᎤᏂᏏᏗ ᎾᎬᎭᏁᎮ, ᎦᎶᎯᏍᏗ ᏙᏰ. ᏂᎦᏓ ᎤᏁᏅᏎ ᏧᏪᏯ ᏗᏣ. ᏚᎾᏛᎦᏁᎴᏰᏃ ᏧᏓᎴᏅᏛ ᏓᏂᏬᏂᏍᎬ ᎠᎴ ᎠᏂᎸᏉᏗᏍᎬ ᎤᏁᎳᏅᎯ. ᎿᏉᏃ ᏈᏓ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ; ᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎼᏏ ᏧᎦᏴᎵᎨ ᎾᎯᏳ ᎤᏕᏅ ᏦᎢ ᎢᏯᏅᏙ ᏥᎬᏩᏍᎦᎸᏁᎢ, ᎠᏂᎪᏩᏘᏍᎨᏰᏃ ᎤᏬᏚᎯᏳ ᎨᏒ ᎠᏲᎵ; ᎥᏝ ᎠᎴ ᏯᏂᏍᎦᎢᎮ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎢ. ᎾᏍᎩ ᎢᎩᎾᏄᎪᏫᏎᎸᎯ ᏥᎩ ᎤᏕᎵᏛ ᎤᏓᏅᏖᎸᎯ, ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏅᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎤᏓᏅᏖᎸᎯ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏧᏏ ᎯᎠ ᏄᏂᏪᏎᎴ ᎠᏥᏅᏩᏅᎯ; ᎪᎯ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎥᏝ ᏚᏳᎪᏛ ᏱᎩ ᏣᏤᏍᏙ ᏣᏂᏓᏍᏗᏱ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏬᎴ ᎵᏍᏗ ᎠᏲᎤᎵ ᏧᎳᏏᏕᏂ, ᎾᏲᎤᎴ ᎤᏕᏅ, ᎢᎸᎯᏳ ᎤᏪᏙᎸᎯ ᏂᎨᏒᎾ. ”ᎨᏍᏗᎭ ᏳᏚᎵᏍᎨ ᎤᏪᏥ ᎤᏬᏎᎴ ᏧᏍᏆᏴᏍᏗ,” ᏔᎵᏁ ᏄᏪᏎ ᏲᎾ ᎤᏤᏍᏙ. ᏎᎦᏨ ᏭᎷᏤ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎦᏓᎭ ᎢᏳᏩᏁᎯ ᏴᏫ; ᏂᏓᏑᎴᎲᎾᏍᎩᏂ ᎠᎵᏍᏓᏴᏗᏱ ᎥᏝ ᎦᏓᎭ ᏱᏄᏩᏁᎰ ᏴᏫ. ᎾᏍᎩ ᏞᏍᏗ ᏴᏫᏉ ᎨᏣᏙᎴᎰᎯᏎᏗᏱ ᏱᏣᏰᎵᏎᏍᏗ ᎠᎹᏟ ᏨᏒᎢ, ᏣᏙᏓᏍᎩᏂ ᎤᏕᎵᏒ ᎡᎯ, ᏣᏙᏓᏃ ᎤᏕᎵᏒ ᎠᎪᏩᏘᏍᎩ, ᎠᏎ ᏣᎫᏴᎡᏗ ᎬᏂᎨᏒᎢ. ᎠᏴᏰᏃ ᎣᏍᏛ ᎧᏃᎮᏛ ᎡᎦᎵᏥᏙᏁᎸᎩ, ᎾᏍᎩᏯᏉ ᏥᎨᎦᎵᏥᏙᏁᎸᎩ ᎾᏍᎩ; ᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎧᏃᎮᏛ ᎤᎾᏛᎦᏅ ᎥᏝ ᏅᏂᏍᏕᎸᎮᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎪᎯᏳᏗ ᎨᏒ ᏄᏓᏑᏴᎾ ᎨᏒ ᎠᎾᏛᎩᏍᎬᎢ. ᎤᏁᎳᏅᎯ ᎥᏝ ᎢᏴᏛ ᏱᏂᏚᏩᏁᎸ ᏧᏤᎵ ᏴᏫ ᎾᏍᎩ ᎦᏳᎳ ᏥᏂᏓᎦᏔᎰᎢ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᏂᎦᏪᏍᎬ ᎪᏪᎵ ᎾᎿ ᎢᎳᏯ ᎠᏥᏃᎮᏍᎬᎢ? ᎾᏍᎩ ᎠᏔᏲᎯᎲ ᏕᎠᏡᏗᏍᎬ ᎢᏏᎵ ᎯᎠ ᏂᎦᏪᏍᎬᎢ, “ᎭᎵᎮᎵᎩ,” ᎤᏬᏎᎴ ᎪᏱᏁᎢ, “ᎣᏍᏓ ᎠᏰᎸᏗ.” ᎾᏍᎩ ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎠᎵᏰᎢᎶᎸᎭ ᏧᏪᏟᏐᏗᏱ ᏌᏉ ᎢᏧᏩᏁᏗᏱ ᎦᎶᏁᏛ ᏧᏲᎯᏎᏗ ᎦᎸᎶᎯ ᎠᎴ ᎾᏍᏉ ᎡᎶᎯ ᏤᎭ; ᎾᏍᎩ ᏧᏲᎯᏎᏗ, ᏩᎩᎷᏣ ᏩᏯ, ᏦᎢ ᎢᏳᏪᏅᏍᏗ ᎠᏆᏁᏦᏅ ᎠᏁᏦᏗ, ᏥᏴᏐᎵ ᎠᎩᏍᏆᎵᏍᏔᏅ. “ᎣᏏᏉᎨ ᏄᏍᏗ ᎠᎦᏍᏘᏰᎬᎢ? ᎤᏛᏛᏁ ᎠᎳᏂ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏚᏂᎧᎿᏩᏗᏙᎮᏍᏗ ᎾᏂᎥ ᏄᎾᏠᎾᏍᏛᎾ ᎤᏂᎨᏳᎯ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎡᎺᏅ. ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ ᎤᎾᏓᏄᎸᎢᏍᏛ ᏎᎦᏨ ᎠᏂᏬᏂᏍᎬ. ᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᏥᎷᏏᎵᎻ ᎤᏂᎩᏎ ᏤᎵᎪ ᎤᏪᏅᏎᎢ, ᏗᎾᏓᎾᏌᎲᏍᎩᏃ ᏚᎾᏓᏩᏛᏔᏁᎢ, ᎾᏍᎩ ᏕᎬᏩᏄᏪᏎ ᏚᏄᏩᎥᎢ, ᎠᎴ ᎬᏩᎵᎥᏂᎴᎢ, ᎠᎴ ᎤᎾᏓᏅᏎ ᎬᏩᏕᏤ ᎠᏰᎵ ᎢᏴᏛ ᎤᏲᎱᏒᎯ ᎨᏎᎢ. ᎤᏒᏃ ᎿᏉ ᏅᏙ ᏭᏕᎵᏨ, ᏕᎬᏩᏘᏃᎮᎴ ᏂᎦᏛ ᏧᏂᏢᎩ, ᎠᎴ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ; ᏗᏣᎧᏅᎦ ᎢᏏᎵ ᎾᏍᎩ ᎤᏇᏓᎵᏉ ᎨᏒᎢ; ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᏗᎵᏍᎪᎸᏔᏅᎯ ᏣᎾᎵᏍᏓᏴᏗᏍᎪ ᎤᏁᎳᏗᏍᏗᏍᎩ ᏱᎨᏐ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᎵᏍᎪᎸᏔᏅᎯ? ”ᎭᏓᏄᏖᏯᎦ ᏃᎴ ᎭᎧᏔᎲᎾ!” ᏧᏪᎷᏁ ᏌᏌ. ᏔᎳᏚᏃ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᏥᎷᏏᎵᎻ ᎤᏁᏅᎭ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᏓᎾᎵᏍᏓᏴᎲᏍᎬ ᎢᏳᎢ. ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ ᏦᎢ ᏧᏂᏍᏗ ᏓᏂᏏᎳᏛᎥᏍᎨ. ᎤᎦᏛᎴᏏᏙᎴᏃ ᎤᏪᏙᎴ ᏧᏛᎾ ᏕᎦᏚᎲ ᎠᎴ ᏧᏍᏗ ᏕᎦᏚᎲᎢ, ᏓᏕᏲᎲᏍᎨᎢ, ᎠᎴ ᏥᎷᏏᎵᎻ ᏩᎦᏖᎢ. ”ᎡᎵᏍᏗ ᏔᎵᏁ ᏛᎦᏁᎸᏔᏂ,” ᎤᏛᏁ ᏫᎵᎻ, ᎤᎵᎮᎵᏍᏗ. ᎥᏝ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏛ ᏱᎩ, ᎾᏍᎩ ᎩᎶ ᎤᏢᏈᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏂᎳᎩᏍᎬ ᎧᏁᏌᎢ ᏫᎵᎻ, ᎠᎾᏓᏓᏍᎩᏏᏍᎨᎢ ᏴᏫ ᎤᎾᎦᏙᏍᏕᎢ. ᎿᏉ ᎧᏱᏆ ᎦᏁᎸ ᎤᎾᏘᎿᏫᏛᎲᎩ ᏥᏌ, ᏗᎫᎪᏙᏗᏱ ᏭᎾᏘᏅᏍᏔᏅᎩ; ᎠᎴ ᏑᎾᎴ ᎨᏒᎩ. ᎤᏅᏒᏍᎩᏂ ᎥᏝ ᏗᎫᎪᏙᏗᏱ ᏳᏁᏅᏎᎢ, ᎦᏓᎭ ᏱᏃᏣᎵᏍᏓ ᎠᏁᎵᏍᎬᎩ, ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᏧᎾᎵᏍᏓᏴᏗᏱ ᎤᏂᏰᎸᏒᎩ. ᎢᏣᏓᏅᏛᎵ ᏧᏥᎸᎯ ᏓᏛᏍᎬᎢ; ᎥᏝ ᏱᏚᏂᎸᏫᏍᏓᏁᎰᎢ, ᎥᏝ ᎠᎴ ᏯᏂᏍᏙᎰᎢ; ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᏉ ᏐᎵᎹᏅ ᏂᎦᎥ ᎤᏬᏚᎯᏳ ᎨᏒ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏕ ᏚᏄᏩᎥᎢ ᎯᎠ ᎾᏍᎩ ᏌᏉ ᏄᏍᏛᎢ. ”ᎾᎥᏂ---ᎥᏂ ᏦᏍᎪ ᏧᏙᏓᏆᏓ, ᏂᎦᏓ ᏱᎧᏃᎮᎳ,” ᎤᏛᏁ ᏌᏌ. ᏍᎩᎾᎾ ᎤᏩᏌ ᎤᏙᎯᏳ ᎣᏍᏓ. ᏂᎯᎾᎲ! ᎤᏂᏍᏆᏛᏃ ᏂᎦᎥ ᎪᏪᎸ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎬᎢ, ᎤᎾᏕᏎ ᎠᏓ ᎨᏛᎢ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏂᏅᏁᎢ. ᎠᏏᏃ ᏌᏉ ᎤᏪᏥ ᎡᎮᎢ, ᎤᎨᏳᎯ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏅᏎ ᎣᏂᏱ ᏗᏁᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏎ ᏛᏂᎸᏉᏔᏂ ᎠᏇᏥ. ᏃᎴ ᏐᏉ ᎢᏣ ᎦᏓᎭ ᎨᏐᎢ ᏗᎩᏏ ᎤᎾᏏᏅᎢ. ᎠᏎᏃ ᏌᏱᎳ ᎣᏏᏳ ᎤᏰᎸᏁ ᎾᎿᏉ ᎤᏗᎩᏯᏍᏗᏱ. ᎠᎦᏴᎵᎨᏰᏃ ᎤᏩᏒ ᎢᏥᎨᏳᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏍᎩᎨᏳᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎢᏦᎯᏳᏅ ᎤᏁᎳᏅᎯᏱ ᏅᏛᏆᏓᎴᏅᎯ ᎨᏒᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎠᏍᎫᏕᏍᏗ ᎤᏤᎵ ᎤᏪᏂᏙᎸᎩ ᎡᎶᎯ, ᎠᎴ ᎤᏪᏟᏌᏅᎩ ᏖᎸᎳᏗ ᎡᎶᎯ ᎤᏛᏒᎯ, ᎠᎴ ᏭᏓᎢᏅᏒᎩ ᏭᎸᏅᎩ ᎤᏔᏅ ᏖᎸᎳᏗ-ᎦᏨᏩᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏤᎦ. ᏥᏅᏩᏍᏛᏉ ᏝᏍᎪ ᏣᏤᎵᎦᏯ ᏱᎨᏎᎢ? ᏣᎾᏗᏅᏃ ᏝᏍᎪ ᏱᏣᎮ ᎭᏓᏅᏖᏍᎬᏉ ᎢᏨᏁᏗᏱ? ᎦᏙᏃ ᎯᎠ ᎾᏍᎩ ᏂᎤᏍᏗ ᎢᏦᏢᏅ ᏣᎾᏫᏱ? ᎥᏝᏍᎩᏂ ᏴᏫᏉ ᏱᎩᏯᏥᎪᏁᎸ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎯᏯᏥᎪᏁᎸ. ᎿᏉᏃ ᎾᏍᏉ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎢᎬᏱ ᎤᎷᏨᎯ ᎠᏤᎵᏍᏛ, ᎤᏴᎸᎩ; ᎠᎴ ᎤᎪᎲᎩ ᎠᎴ ᎤᏬᎯᏳᏅᎩ. ᎠᏎᏃ ᎤᎾᏓᏅᏒᏉ ᏚᏂᏃᏣᎳᏅᎩ ᎾᎿ ᏂᎬᎾᏛᎢ. ᏗᎪᏢᏒᏃ ᎠᏥᎸᏱ ᏫᏙᏛᎾᏓᎡᏏ; ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ. ᏂᎯᏍᎩᏂ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎤᎵᏏᎬ ᏱᏤᎭ, ᎾᏍᎩ Ꮎ ᎾᎯᏳ ᎢᎦ ᎨᏣᏢᏔᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎦᏃᏍᎩᏍᎩ ᏧᏢᏔᏍᎪᎢ. ᏥᏯᏛᏛᏅ ᎢᏴ ᎣᎯᏍᏙᏗ ᎠᎩᎷᎯᏍᏗ, ᏣᏗ ᎯᎸᎢᏴ. ᎠᎴ ᎬᏍᎦᎢᏍᏓᎩ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏴᏫ ᎤᎪᏏᏛ ᏧᎾᏓᏅᏘ, ᎤᏂᏂᎩᏛ ᏚᏳ-ᎪᏛᎢ, ᎨᏅᎢᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᎢᏧᎳᎭ ᎠᏁᎵᏍᎩ. ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏕᎭᏓᏅᎡᎮᏍᏗ. ᎠᎴ ᏞᏍᏗ ᎠᏍᎦᏂ ᏤᏥᏲᎯᏎᎸᎩ ᏗᏥᏰᎸ ᎤᏚᏓᏕᏫᏒᎢ, ᎾᏍᎩ ᏗᏨᏙᏗᏱ ᏂᏚᏳᎪᏛᎾ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎢᏨᏒ ᏤᏣᏓᏲᎯᏏ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎤᎾᏛᏂᏛᎯ ᏧᏂᏲᎱᏒᎯ ᎨᏒ ᎠᎴ ᏗᏥᏰᎸ ᎤᏚᏓᏕᏫᏒ ᎤᏁᎳᏅᎯ ᏕᏥᏲᎯᏎᎸᎩ ᎾᏍᎩ ᏗᏨᏙᏗᏱ ᏚᏳᎪᏛ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ, ᎠᎵᏥᏙᎲᏍᎨᏃ ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎠᏴ ᎣᏂ ᏓᏯᎢ, ᎾᏍᎩ ᏧᎳᏑᎶᎩᎯ ᏓᎧᏁᏌᏛ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᎠᏆᏗᏌᏓᏗᏍᏗᏱ ᎠᎴ ᏗᎩᎧᏁᏴᏗᏱ. ᎦᏙ ᏴᏫ ᏳᏁᏉᏥ ᎢᏳᏃ ᎡᎳᏂᎬ ᎤᏤᎵ ᏱᏄᎵᏍᏔᏅ, ᎤᏓᏅᏙᏃ ᏳᏲᎱᏍᎸ; ᎠᎴ ᎦᏙ ᏯᎲᎦ ᏴᏫ ᏱᎦᏁᏟᏴᏍᏓ ᎤᏓᏅᏙ. ᏥᏍᎪᎵ ᎥᏝ ᏱᏍᎩᎶᏁᏔᏁ ᎪᎢ; ᎯᎠᏍᎩᏂ ᎠᎨᏴ ᎠᏠᏁᏗ ᏚᎶᏁᏔᏅ ᏗᏆᎳᏏᏕᏂ. “ᎠᏂᏍᎦᏰᎬᏍᏗ ᏙᏣᏦᏍᎦ,” ᎤᏛᏁ ᎤᏔᎾᏯ ᎤᏃᏕᎾ. ᏥᏌᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᎠᏋᏒ ᏱᎦᏓᎸᏉᏗᎭ, ᎥᎩᎸᏉᏗᏳ ᎠᏎᏉᏉ ᏱᎩ; ᎡᏙᏓᏍᎩᏂ ᎠᎩᎸᏉᏗᏍᎩ, ᎾᏍᎩ ᎠᏴ ᎣᎦᏁᎳᏅᎯ ᏥᏣᏗᎭ. ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎳ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎤᏕ-ᎵᏛ ᏱᎩ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎤᏂᏰᏤ ᏗᎾᏙᎴᏆᏍᎩ, ᎤᏕᎰᏎ ᏲᎾ ᎤᏤᏍᏙ. ᏔᎵᏁ ᎤᏃᏕᎾ ᎠᏓᎯ ᎤᏁᎸᏔᏁᎢ. ᎠᏰᎸᏰᏃ ᎠᏓᏅᏙ ᏄᏪᎲᎾ ᏱᎩ ᎤᏓᏬᏨᎯ ᏥᎨᏐᎢ, ᎾᏍᎩᏯᏉ ᎪᎯᏳᏗ ᎨᏒ ᏔᎵ ᏄᏛᏛᎾ ᏱᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎾᏍᏉ ᎤᎵᏬᏨᎯ ᎨᏐᎢ. ᎠᎾᎵᏅᏟᏰᏃ ᎥᏝ ᏱᎬᏬᎯᏳᎲᏍᎨᎢ. ᎾᎿᏰᏃ ᎠᏛᏳᎨᏗ ᎠᎴ ᎠᏗᏒᏍᏗ ᎠᏁᎲᎢ, ᎾᎿ ᎡᎰ ᏧᏓᎴᏅᏛ ᎠᎴ ᏂᎦᎥ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎾᎯᏳᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏂᏣᏔᏅ, ᎠᏂᎪᎢ ᎤᏂᏬᏂᎯᏍᏗ ᎠᏂᏬᏂᏍᎩ ᎪᎱᏍᏗ ᏓᏃᏎᎮ ᎠᏂᏈᎷ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎨᎦᎦᏌᏯᏍᏛᎾ ᎨᏒ ᏧᎾᏤᎵ ᎠᏂᎨᏴ ᏧᏃᏑᎶᏨᎯ ᏂᏚᎩᏨᏂᏒ ᎠᏂᏯᏙᎯᎲᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎯᏍᎦᏯ, ᎦᎪ ᏗᏍᏛᏳᎪᏓᏁᎯ ᎠᎴ ᎢᏍᏛᏯᏙᎮᎯ ᎾᏋᏁᎸ? ᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᏥᏃᏨᏁᎭ, ᎾᏂᎥ ᏥᏙᏤᏯᏔᎲᏍᎦ, ᎠᎴ ᎾᏂᎥ ᏥᏙᏤᏲᎲᏍᎦ ᏦᏨᏗᎭ ᏂᎦᎥ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏂᎥ ᎬᏂᎨᏒ ᎢᏦᏨᏁᏗᏱ ᏄᏂᎪᎸᎾ ᎦᎶᏁᏛ ᏥᏌ ᏚᎾᏁᎶᏛᎢ; ᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᎠᏎᎪᎩᏍᎪ ᎡᎶᎯ. ᎢᎪᎯᏳᏒᏃ ᎾᏍᎩ ᎠᏎᎪᎩᏍᎩ ᎡᎶᎯ. ᏫᎬᏲᏪᎳᏏ ᏘᎹᏗ ᎠᏋᏒ ᎠᏆᏤᎵ ᎠᏇᏥ ᎪᎯᏳᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏛ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎤᏓᏙᎵᏣᏛ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁ-ᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ. ᎯᎾ - ᎨᏙᎩ ᏱᏓᏃᏎᎰ Ꮎ: ᏙᏱ ᏳᏗᎧᎴᏅ, ᎧᏃᎮᏛ ᎠᏗᎦᎴᏲᏍᎬ ᎡᏆ ᏓᏍᏆᏚᎸ, ᏱᏓᎧᏁᏍᎬᏃᏉ ᏃᎴ ᎭᏫᏂ ᏯᏴᎵᎲᎾ. ᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏄᎪᏨ, ᎤᏩᏛᎮ ᎠᏏᏴᏫ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏓᏍᏗ ᎾᏍᎩ ᎤᏁᏨᎯ ᎤᎫᏴᎡᏗᏱ ᎠᏍᎪᎯᏧᏈ ᎠᎩᏏ ᏧᎾᎬᏩᎶᏗ; ᎤᏂᏴᎮᏃ, ᎠᎴ ᎤᏴᏍᎩᏴᎮᎢ; ᏍᏆᎫᏴᏏ ᏥᎬᏚᎦ, ᎤᏛᏁᎢ. ᎤᎯᏐᏗ ᎠᏂᏲᏍᎩ ᏧᎾᏙᎴᏆᏍᏗ ᏭᏪᏙᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎠᏴ ᏂᏗᎥ ᎢᎩᏍᏆᏛᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎢᎦᏓᏅᏖᏍᏗ; ᎠᎴ ᎢᏳ ᎪᎱᏍᏗ ᎨᏒ ᏅᏩᏓᎴ ᏄᏍᏕᏍᏗ ᏙᏣᏓᏅᏖᏍᏗ, ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎯᎠ ᎾᏍᏉ ᎬᏂᎨᏒ ᏅᏓᏨᏁᎵ. ᏥᎪᏃ ᏍᎩᏍᎦᎩ ᏄᎵᏍᏔᏅ ᏂᎦᎵᏍᏙᏗᎭ ᎤᏙᎯᏳᎯ ᎨᏒ ᎢᏨᏃᏁᎸᎢ? ᎾᏍᎩᏰᏃ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏩᎳ; [ᎠᎴ] ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤ-Ꮅ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ. ᏓᏓᏒᏂᏉᎨ ᎦᏲᏟ ᎩᎦ ᏧᏩᏥᎪ ᎤᏅᏗ ᎠᏥᏍᏛ ᏥᏂᎦᎵᏍᏗᏍᎪ, ᎠᎴ ᏓᏓᏓᎸᏥᎨᎭ. ᎤᏍᏗ ᏅᏯ ᏥᏩᎫᏕᏉ ᎠᎹᏱ ᎨᏴ. ᎡᎳᏆᏗ ᏧᏦᎣᏎᎢ ᏃᎴ ᏚᏍᏕᎸᎮ ᎠᏂᏍᎦᏯ. ᎠᏎᏃ ᎠᎵᎮᎵᎬ ᎨᏍᏗ ᏳᎪᎭ ᎤᏩᏂᎦᏢ. ᎠᏨᏍᏙᏗᏃ ᎤᏔᏲᎸ ᎤᎵᏍᏗ ᏭᏴᎴᎢ, ᎠᎴ ᏭᎷᏤ ᎤᏪᎾᏫᏍᎨᎢ, ᎤᏓᏅᏂᎴ ᎢᎬᏱᏢ ᏉᎳ ᎠᎴ ᏌᏱᎳ ᏚᏃᎸᎢ. ᏥᏌᏃ ᏫᏚᏯᏅᎲ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏥᏯᏙᎵᎦ ᎯᎠ ᎤᏂᏣᏘ ᎨᏒᎢ, ᏦᎢᏰᏃ ᎾᏙᏓᏆ ᎠᏂ ᎨᏙᎲ ᎠᏁᏙᎭ, ᎠᎴ ᎥᏝ ᏱᏂᏰᎭ ᎤᎾᎵᏍᏓᏴᏗ. ᎠᎴ ᎢᏝ ᏯᏆᏚᎵᎭ ᏙᎤᏁᏅᏍᏗᏱ ᏗᎬᏩᏂᏲᏏᏍᎩ, ᏩᎾᏰᏃ ᏱᏓᏂᏩᏂᎦᎶᎩ ᏩᎾᎢᏒᎢ. ᎢᏳᏃ ᏂᎯ ᎢᏥᏲᎢ ᏱᏥᏏᎾᎯ ᎣᏍᏛ ᎨᏒ ᏗᏥᏁᏗᏱ ᏗᏤᏥ, ᎤᏟᎯᏳ ᎤᏙᎯᏳᎯᏯ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎣᏍᏛ ᏓᏁᎮᏍᏗ ᎬᏩᏔᏲᏎᎯ. ”ᎦᏙᎩ ᏛᎾᏛᏁᎵ?” ᎤᏪᎷᏁ ᏫᎵᎻ. ᎤᏂᏣᏘᏃ ᎢᎬᏱ ᎠᏁᎩ, ᎠᎴ ᎣᏂ ᎠᏁᎩ ᎤᏁᎷᎬᎩ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎰᏌᎾ ᏕᏫ ᎤᏪᏥ! ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᏕᎤᏙᎥ ᏥᎦᎷᎯᏍᏗᎭ! ᎰᏌᎾ ᏩᏍᏛ ᎦᎸᎳᏗᏳ! ᎤᎾᎵᏍᏓᏴᏅᎯᏃ ᏅᎩ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡᎢ; ᏚᏰᎵᎯᏍᏔᏁᏃ. ᎠᏂᏤ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏲᏍᏗᏍᎬ ᎤᏬᏨᏛ ᏓᎭᏃᏫ, ᎠᏓᏔᎶᎯᏍᏗ ᎤᏩᏌ ᎠᎾᏓᏅᏖᏍᎬ. ᎠᎵᏰᎾ ᎮᎵᎠ ᏓᏓᏗᏩᏛᎯᏍᎪᏃ ᎤᎪᏏᏓ ᎢᏗᏅᏁ. ᎡᎳᏗ ᎨᏎᏍᏗ ᏌᎳᏓ! ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎩᎶ ᏔᎵ ᏗᎦᏌᎴᎾ ᏚᎾᎡᏍᏗ, ᏄᎾᎥᎾ ᎨᏒ ᎦᏅᏁᎮᏍᏗ; ᎩᎶᏃ ᎠᎵᏍᏓᏴᏗ ᎤᎮᏍᏗ, ᎾᏍᎩᏯ ᎾᏛᏁᎮᏍᏗ. “ᏍᏆᏛᎦᏍᏓᏏᏛ ᎤᏦᏱᎴᎢ ᏫᎵᎻ. ᎡᎶᏛᏍᎩᏂ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏒᎢ, ᏣᏂ ᎤᎬᏍᎪᎸᏁ ᏗᎵᏰᎢᎸᏍᏗᏍᎨ ᎡᎶᏗᏏ ᎤᏅᏟ ᏈᎵᎩ ᎤᏓᎴᎢ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎤᏣᏘᏂ ᏄᏛᏁᎸ ᎡᎶᏛ, ᎾᏍᎩ ᎢᏣᎴᏂᏓᏍᏗᏱ ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᏗᏂᎧᎿᏩᏕᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏣᏘ ᎢᏥᎾᏄᎪᏫᏍᎬᎢ, ᎠᎴ ᎧᏁᏉᎬ ᎡᏥᎦᏙᎥᏍᎬ ᎤᏁᎳᏅᎯ; ᎠᏓᏅᏙᏰᏃ ᎬᏂᏛ ᎠᏓᏁᎯ, ᎾᏍᎩ ᎬᏂᏛ ᎦᎶᏁᏛ ᏥᏌ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᎠᏓᏅᏙ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏇᏓᎴᏒ ᎠᏍᎦᏂ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎾᏤᎵ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎠᏆᏚᏓᎸᎢ. ᎾᏍᎩᏰᏃ ᎯᎠ ᎢᏳᎾᏍᏗ ᏥᏓᏂᏴᎵᏙᎰ ᏓᏓᏁᎸᎢ ᎠᎴ ᏥᏓᎾᏘᎾᏫᏗᏍᎪ ᏄᎾᏓᏅᏛᎾ ᎠᏂᎨᏴ ᎤᏂᎧᎵᏨᎯ ᎠᏍᎦᎾᎢ, ᏚᎾᏘᏂᏒ ᏧᏓᎴᏅᏛ ᎠᏚᎸᏗ ᎨᏒᎢ, ᎤᏩᎬᏘᎶᏓ ᏄᏛᏁᎴ. ᎢᎦᏛᏃ ᎣᏒ ᎦᏙᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎠᎴ ᎤᎵᏰᏁᎢ, ᎠᎴ ᎠᏛᏍᎨᎢ, ᎠᎴ ᎧᏁᏉᎨᎢ, ᎠᎴ ᎤᎦᏔᏔᏁᎢ, ᎢᎦᏛ ᏦᎠᏍᎪᎯ ᎢᏳᏩᎫᏗ, ᎢᎦᏛᏃ ᏑᏓᎵᏍᎪᎯ, ᎢᎦᏛᏃ ᎠᏍᎪᎯᏧᏈ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ; ᎥᏝ ᎩᎶ ᎢᏥᏠᏱ ᎨᏒ ᎾᏍᎩ ᏱᏄᏍᏗ ᏱᏚᏙᎥ. ᎠᏎᏰᏃ ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏎᎢ, ᎾᏍᎩ Ꮎ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎠᎪᏢᎾᏁᎸᎯ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎪᏢᏅᎯ ᏥᎩ, ᎾᏍᎩ ᏗᎬᏩᎸᏌᏛ ᏗᎨᏒ ᏫᏓᏘᏃᎯᎲ ᎤᏂᏣᏘ ᏧᏪᏥ, ᎾᏍᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏗᏩᏛᎡᎯ, ᏂᎦᎷᎶᎬᎾ ᎢᏯᎬᏁᏗᏱ ᎠᎩᎵᏲᎬᎢ. ᏂᎯᏍᎩᏂ ᎾᏍᎩ ᎢᏥᎾᏄᎪᏫᏒᎯ ᎢᎩ, ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᎾᏍᎦᏅᎾ ᎢᎬᏁᏗ ᎨᏒ, ᎠᎴ ᎠᎫᏴᏙᏗ ᎨᏒ, ᎠᏴ ᎢᎬᏁᎸᎯ ᏥᎩ ᎤᏁᎳᏅᎯ; ᏥᏌᏃ ᎤᏣᎢᏒ ᏚᎪᎲᎩ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᏚᏪᏙᎵᏨᎩ, ᎠᎴ ᏚᏅᏩᏅᏧᏂᏢᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎭᎦᏌᏯᏍᏓ ᎤᏓᏅᏖᏳ ᎨᏒ ᎠᎴ ᎠᏍᏓᏱᏳ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎠᏍᏓᏱᏳ ᏂᏕᎬᏁᎲ ᎾᏍᎩ Ꮎ ᏧᏂᏅᏨᎯ; ᏂᎯᏍᎩᏂ ᎤᏓᏅᏘᏳ ᎨᏒ ᏣᎾᏄᎪᏫᏎᎲᎢ; ᎢᏳᏃ ᏱᏅᏩᏍᏗᏗ ᏕᏣᏂᏴᏒ ᎤᏓᏅᏘᏳ ᎨᏒᎢ; ᎥᏝᏰᏃ ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᎡᏨᎾᎦᎴᏍᏗ ᎨᏎᏍᏗ. ᎤᏕᏯᏙᏗ ᎨᏒ ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏲ ᎢᏯᎾᏛᏁᎯ, ᎠᏂᏧᏏ ᎢᎬᏱ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ; ᎾᏍᎩ ᎯᎠ ᏱᎰᏩ ᏄᏛᏁᎸ, ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏕᏓᎧᏂᏍᎬᎢ. ᎾᏍᎩᏃ ᏄᏍᏛᎩ ᎠᏆᏟᏂᎬᏁᎸᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᏆᎵᏥᏙᏗᏱ, ᎥᏝ ᎾᎿ ᎦᎶᏁᏛ ᎠᏥᏁᎢᏍᏔᏅᎢ, ᎩᎶ ᎤᏅᎯ ᎦᎫᏍᏛᏗ ᎠᏆᏁᏍᎨᏍᏗᏱ ᏂᎨᏒᎾ; ᎩᎳᏈᏴ ᎤᏦᎣᏎ ᎡᎳᏆᏗ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᏚᏗ. Perry, ᎠᏎᏛ ᏱᏣᎪᎰᏍᏔᏅᎾ ᏱᎩ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏅᏙ ᎢᎾᎨ ᏭᏘᏅᏍᏔᏁᎢ. ᎨᏍᏗ ᏐᏉ ᎦᏰᏌᏛ ᏧᏌᎴᏓᏁᎸ ᏱᎨᏎ ᎠᎹᏰᎵ ᎠᏁᎮ ᎠᎴ ᏍᎪᏂᏴ ᏓᏳᏂᎶᏒ ᎠᏳᏩᏁᎦ, ᎨᏍᏗ ᏯᎦᏔᎮ ᏂᏚᎾᏓᎴᏒ ᏃᎴ ᎤᏦᏍᏔᏁᎮ ᎢᏳᏍᏗ ᎤᏰᎸᏗ ᎠᎾᏟᎲ. ᎠᏴ ᎠᎩᏫᏒᎩ, ᎠᏉᎳ ᎠᎹ ᎤᏍᏚᏢᎩ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏁᏉᎢᏍᏗᏱ ᏄᏩᏁᎸᎩ. ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎤᏬᏢ ᎣᎭᏁ ᎦᏍᎬᎸ ᏃᎴ ᎤᏑᎸᏓ ᎠᎵᏥᏍᏔᏅ ᏩᎦ ᎭᏫᏯ, ᎦᎵ ᎠᏥᏍᏛ ᎤᏃᏫ ᎤᏍᏔᏲᏒ ᏧᏓᎵ ᎾᎥᏂ ᏓᏳᏓᎴᏅ ᎪᎢ. ᏌᏉᏃ ᎠᏍᎫᏓᏛ ᎠᎩᎪᎲᎩ ᎬᏩᏲᎱᎯᏍᏗ ᎢᏴᏛ ᏣᏥᏐᏅᏃ ᏓᏤᎸᎩ; ᎠᎴ ᎾᏍᎩ ᎬᏩᏲᎱᎯᏍᏗ ᎢᏴᏛ ᎠᏥᏐᏅᏅ ᎤᏗᏩᏒᎯ ᎨᏒᎩ; ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ [ᎠᏁᎯ] ᎠᏂᏍᏆᏂᎪᏍᎬᎩ [ᎠᎴ] ᎠᏂᏍᏓᏩᏗᏒᎩ ᎾᏍᎩ ᎾᏅᎩ-ᏗᎦᏅᏌᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏣᏓᏓᏂᎸᎨᏍᏗᏉ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᏕᎦᏓᏂᎸᏨ ᎠᏴ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᏯᎬᏁᏗᏱ ᎤᏁᎳᏅᎯ. “ᎯᎸᎯᏴ ᎦᎬᎨᏫᏍᏗ ᏱᎨᏒᎾ ᎤᎾᏟᎴ,” ᎤᏛᏁ ᏌᎳᏓ. ᎭᎵᏍᎪᎸᏓᏁᎸ ᏧᏩᏛᎯᏓᏍᏗ ᏧᎵᎢ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏁᎯ. ᎾᏍᎩᏃ ᎾᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ, ᎠᎴ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎡᎳᏗ ᏚᎾᏓᏅᏅᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ, ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏪᎵ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎡᎺᏅ; ᏱᎰᏩ ᎡᏗᎸᏉᏓ. “ᎦᏙᏃ? ᎾᏍᎩ ᎾᎿ ᎠᏴ ᏗᎩᎸᏫᏍᏓᏁᎯ ᎠᏴᏋᏁᎸᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎴᏍᏗ ᎨᏒ ᎥᏆᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎩ ᎬᏩᏄᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᏳᏩᏂᏌᏛ. ᏛᏍᏆᎸᎯᏰᏃ ᎿᏉ ᎾᎯᏳ ᎥᏝ ᏳᎾᏚᎵᏍ-ᎨᏍᏗ ᎤᎾᏛᏓᏍᏙᏗᏱ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒᎢ; ᏚᏂᏲᏕᏍᎬᏍᎩᏂ ᏗᏂᎴᏂ ᎠᏅᏗᏍᎨᏍᏗ ᎤᏅᏒᏉ ᎤᎾᏚᎸᏅᏗ ᎨᏒ ᏓᏂᏍᏓᏩᏗᏒ ᏓᏂᏟᏏᏍᎨᏍᏗ ᏗᎾᏕᏲᎲᏍᎩ; ᎧᏁᎢᏍᏗ ᎨᏒ ᎩᎦ ᎤᏂᏁᎲ, ᏦᏍᎪ ᏔᎵᎢᏁ ᎤᎵᏏᎩ ᎩᎦ ᎤᏁᎯᏱᎩ, ᎨᏍᏗ ᏳᏩᏁᎦ ᎫᏩᎾᏛᏗ ᏱᎩ. ᎩᎶᏍᎩᏂ ᎠᏂᎨᏴ ᎨᏒ ᏯᏓᏙᎵᏍᏗᎭ ᎠᎴ ᏯᏙᎴᎰᏍᎦ ᏄᎵᏍᏚᎸᎾ, ᎠᏕᎰᎯᏍᏗᏍᎪ ᎠᏍᎪᎵ ᎨᏒᎢ; ᏧᎵᏍᏙᏴᎰᏉᏰᏃ ᎢᏧᎳᎭ ᎾᏍᎩ. ”ᎭᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᏅᎯᏍᏊ ᏙᎯᏳᏍᏊ, ᏥᏫᎾᏭ ᎨᏒ ᎠᏎᏏᏂᏍᏊ, ᎠᏆᏍᎦᏰᏂᏍᏊ ᏥᎨᏒ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏂᏲᏎ ᏧᏂᎦᏯᎷᏗ, ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᏙᏥᏩᏛᎲᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎾᎿ ᎣᎦᏅᏅᎩ ᎦᎵᏉᎩ ᏧᏙᏓᏆᏛ; ᎾᏍᎩ ᏉᎳ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ; ᏞᏍᏗ ᏥᎷᏏᎵᎻ ᏤᏅᏒᎩ. ᎠᎴᏬ ᏅᏩᏓᎴ ᎪᏪᎸ ᎯᎠ ᏂᎦᏩᎭ; ᏙᏓᎬᏩᎧᎾᏂ ᏗᎬᏪᏘᎸᎯ. ᎠᏎᏃ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏯᏙᎯᏳᎲᎦ ᏄᏍᏛ ᎪᏪᎸᎢ, ᎠᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏥᎩ? ᎠᏌᎻᏓ ᏃᎴ ᎠᏯ ᎣᏍᏔᎦᏙᏍᏛ ᎠᏥᎸ ᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏗᏍᎨ ᎠᏌᎻᏓ. ᎯᏍᎩᏃ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᎷᏤᎢ, ᎠᎴ ᏚᏲᎴ ᏅᏩᎾᏓᎴ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎠᏕᎸ, ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᏕᏍᎩᏲᎯᏎᎸᎩ; ᎬᏂᏳᏉ ᏅᏩᎾᏓᎴ ᎯᏍᎩ ᎢᏯᏕᏴᎵ ᎬᎩᏁᏉᏤᎸ. Ꮟ ᎩᎳᎯ ᎤᏍᏘᏰᎬ ᎤᏓᏑᏰᎢ ᎧᏁᏍᎦ ᏃᎴ ᎤᏬᏚ ᏗᎧᏃᏗ ᎨᏎ ᏃᎴ ᎤᎳᎾᎩᏍᎨᎢ. ᏧᎾᏗᎩᏓ ᎠᏓᏍᏕᎵ ᎠᏤ ᎦᏓ ᎾᏅᏁ. ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏓᏓᏏ ᎤᎾᏫᏱ ᏧᎳᏁᎸ ᎾᏍᎩ ᎢᎦᎢ ᏗᏤᎷᎢᏍᏗᏱ. ᎯᎠ ᏄᏂᏪᏎᎢ; ᎯᎠ ᏂᏥᏪᏒᎭ; ᎬᏩᏍᏓᏩᏗᏙᎯ ᏒᏃᏱ ᎤᏂᎷᏨᎩ, ᎣᏥᎵᏅ ᎬᏩᏃᏍᎩᏒᎩ. ᎾᏍᎩ ᎣᏂᏗᏢ ᎤᎷᎯᏍᏓᏁᎢ, ᎠᎴ ᎦᏓᎷᏯᏛ ᎤᏄᏩᎥᎤᏒᏂᎴᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎩᎬ ᎤᏪᏅᎡᎲ ᎤᏲᎯᏍᏔᏁᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᏍᎩ Ꮎ ᎤᏪᏙᎵᏨᎯ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᎾ, ᎠᎴ ᏂᎯ ᎾᏍᎩᏯ ᏫᎾᏛᎦ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛᏁᎰᎢ ᎦᏟᏂᎬᏁᎰ ᎠᏆᏓᏅᏙᎩ ᎠᏆᏎᎮᎲᎢ ᏂᎪᎯᎸ ᏂᏥᏍᎦᏅᏤᎲᎾ ᎤᏁᎳᏅᎯ ᎠᎴ ᏂᎦᏥᏍᎦᏅᏤᎲᎾ ᏴᏫ ᎢᏳᎵᏍᏙᏗᏱ. “Ꭵ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎢᎸᎯᏳᏰᏃ ᏥᎨᏒ ᎤᎵᏏᎬ ᎢᏤᎲᎩ, ᎪᎯᏍᎩᏂ ᎨᏒ ᎢᎦ-ᎦᏛ ᎢᏤᎭ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏌᏛ; ᎢᎦ-ᎦᏛ ᏧᏪᏥ ᎤᏁᏓᏍᏗ ᎨᏒ ᎢᏤᏙᎮᏍᏗ; ”ᎯᏲᎯᏍᏓ, ᎡᎳᏆᏗ!” ᎤᏦᏱᎴᎢ ᏲᎾ ᎤᏤᏍᏙ. ᎥᏝᏰᏃ ᏱᏙᎬᏩᏳᎪᏗ ᎨᎵᎠ, ᎢᏳᏃ ᏱᎦᏓᏅᏍᎦ ᎠᎦᏘᏅᏍᏗᏱ ᎠᏴᎩ, ᎾᎩᏁᎢᏍᏔᏅᎾᏃ ᏱᎩ ᏄᏍᏛ ᎠᎫᎢᏍᏗᏍᎬᎢ. ᎠᎩᎪᏁᎸᏍᎩᏂᏃᏅ ᎠᎩᏇᏓᎸ ᎨᏒᎢ, ᎠᏎᏃ ᎠᏆᏓᏅᏙ ᎨᏒ ᎢᏨᏰᎳᏗᏙᎭ, ᎦᎵᎡᎵᎦ ᎠᎴ ᏕᎦᎦᏂᎭ ᎣᏏᏳ ᏂᏣᏛᏁᎲ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎡᏦᎢᏳᏒ ᎦᎶᏁᏛ. ᎿᏉᏃ ᎠᏏᏴᏫ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎾᏍᎩ ᎯᎠ ᏥᏂᏪᎭ ᎠᏴ ᎾᏍᏉ ᎨᏍᎩᏐᏢᏗᎭ. ᎾᏍᎩᏃ ᎤᏗᏌᏓᏛ ᏚᎪᎲᎩ ᏙᎴᏛ ᏗᏄᏬ ᏕᎦᏅᎩ; ᎠᏎᏃ ᎥᏝ ᏳᏴᎴᎢ. ᎤᏂᏃᏕᎾ ᎤᎾᏛᎦᏁ ᎾᏂᏪᏍᎬ ᏔᎳᏚ, ᏃᎴ ᎤᎾᏕᏯᏔᏁᎴᎢ, ᎤᏂᏲᏍᏔᏁ ᎠᏦᏴ, ᏭᏂᏅᎪᏤ, ᏅᏃ ᏍᎪᏁᎯ ᏦᎨᏏ ᎠᏁᏙᎮ. [ᏥᏌᏃ] ᎤᎶᏒ ᎤᎪᎲᎩ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏗᎨᏫ ᏂᎨᏎ ᎤᏕᏅ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏕᏯᏙᏗᏍᎩ ᎨᏒ ᏏᏉᏃ ᎤᎷᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᏲᎱᎯᏍᏗ ᎨᏒ, ᎠᎴ ᎠᎦᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸ ᎬᏗ; ᎤᎵᏂᎩᏗᏳᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏧᏭᎪᏓᏁᎯ ᏥᎩ. ᏩᏏᏓᏂ ᏗᎦᏚᎲ ᏚᏭᎦᏘᏗ, ᏓᏛᏟᏃᎮᏔᏂ ᏤᎩᏏᏂ ᏃᎴ ᏗᏂᎳᏫᎩ ᎠᏂᏴᏫ ᏧᏤᎵ ᎤᎾᎵᏍᏕᎸᏙᏗ. ᎢᏨᎨᏳᎢ, ᏞᏍᏗ ᎾᏂᎥ ᏗᏓᏅᏙ ᏱᏗᏦᎯᏳᎲᏍᎨᏍᏗ, ᏕᏥᎪᎵᏰᏍᎨᏍᏗᏍᎩᏂ ᏗᏓᏅᏙ, ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏅᏓᏳ ᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎤᏂᏣᏔᏰᏃ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎠᏁᏙᎭ ᎡᎶᎯ. ᎠᏎᏃ ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎤᏤᎵ ᎧᏃᎮᏛ ᎤᏴᏔᏁ ᎠᎵᏥᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏴ ᎥᏆᎨᏅᏛᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎤᏁᏨ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ; ᎠᏎᏃ ᎤᏚᎩ ᎣᎬᏒᎩ ᎾᏍᎩ ᎢᏏᎵ ᏗᏓᏘᏍᎩ ᎨᏒᎢ. ᎠᎴ ᎾᏍᏉ ᎪᎯ ᎢᎦ ᏥᎩ ᏦᎢᏁ ᎤᎩᏥᎭ ᎾᏍᎩ ᎯᎠ ᎢᎬᎵᏍᏔᏅᎯ; ᎤᏂᏴᎸᏃ ᎥᏝ ᏳᏂᎾᏩᏛᎮ ᎠᏰᎸ ᎤᎬᏫᏳᎯ ᏥᏌ. ᏞᏍᏗ ᎩᎶ ᎤᏲ ᎾᎬᏁᎸ ᏳᏞᎨᏍᏗ ᎤᏲ ᏱᎾᏓᏛᏁᎮᏍᏗ; ᎢᏥᏍᏓᏩᏕᎨᏍᏗᏍᎩᏂ ᏂᎪᎯᎸ ᎾᏍᎩ ᎣᏍᏛ ᎨᏒᎢ, ᎾᏍᏉ ᎢᏨᏒ ᎪᎱᏍᏗ ᏕᏣᏓᏛᏗᏍᎬ, ᎠᎴ ᎾᏂᎥᏉ. ᎨᏍᏗ ᎯᎸᎯᏳ ᎤᎪᎲ ᏱᎨᏎ ᎤᏂᏥ ᏫᎵᎻ. Ꭷ ᎢᏓᏓᏅᏟ ᏥᎦᎳᎭ ᏂᏥᎦᏔᎲᎾ ᎨᏒ ᏅᏧᎵᏍᏙᏔᏅ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎢ, ᎠᎴ ᎾᏍᏉ ᏗᏣᏤᎵ ᎤᏂᎬᏫᏳᎯ. ᏞᏍᏗ ᏱᎾᏚᎵᏍᎨᏍᏗ Ꮎ ᎦᎸᏉᏗᏳ ᎨᏒ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᏥᎩ; [ᏞᏍᏗ] ᏱᏗᏓᏓᎿᎸᏍᏗᏍᎨᏍᏗ, ᎠᎴ ᏱᏗᏓᏓᏛᏳᏤᎮᏍᏗ. ᎩᎶᏍᎩᏂ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᎠᎴ ᎠᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᎠᏆᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᎵᏍᏆᏗᏍᎩ, ᎾᏍᎩ ᏓᏥᏁᎵ ᏧᏎᎪᎩᏍᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ. ᏥᏳᎯᏃ ᎤᎾᏣᎡᎢ, ᎤᎾᏂᎩᏎ ᎢᎾᎨ ᏭᏂᎶᏎ ᎤᏕᎵᏛ. ᎤᏐᏱ ᎢᏯᏆᏕᏘᏴᏓ. ᎠᏎᏃ ᏮᏓᏨᎷᏤᎵ ᏂᎪᎯᎸᎾ, ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎣᏏᏳ ᏳᏰᎸᏅ; ᎠᎴ ᏮᏓᎦᏙᎴᎣᏏ, ᎥᏝ ᎠᏂᏬᏂᏍᎬᏉ ᎾᏍᎩ ᏧᎾᏕᏋᎯᏍᏗ, ᏚᎾᎵᏂᎬᎬᏍᎩᏂ ᏄᏍᏛᎢ. ᎿᏉᏃ ᎤᎬᏫᏳᎯ ᎯᎠ ᏂᏙᏓᎦᏪᏎᎵ ᎠᎦᏘᏏ ᎢᏗᏢ ᎠᏂᏙᎾᎢ; ᎡᏤᎾ, ᎡᏙᏓ ᎢᏥᎸᏉᏔᏅᎯ, ᎢᏣᏤᎵ ᏫᏂᎦᎵᏍᏓ ᎤᏤᎵᎪᎯ ᎡᏣᎵᏍᎪᎸᏓᏁᎸᎯ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ. “Ꭷ, ᎭᏂ ᏥᎭᏓᏐᎦ, ᎦᏣᏄᎵᎨᎢ!” ᎤᏛᏁ ᏌᎳᏓ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎧᏂᎵᏯ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᏚᏳᎯᏛ ᎢᏯᏛᏁᎯ ᎠᏍᎦᏯ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᏍᎩ, ᎠᎴ ᎣᏍᏛ ᎬᏩᏃᎮᏍᎩ ᎾᏂᎥ ᏑᎾᏓᎴᎩ ᎨᏒ ᎠᏂᏧᏏ, ᎤᏁᏤᎸᎩ ᎦᎸᏉᏗ ᏗᎧᎿᏩᏗᏙᎯ, ᎤᏓᏅᏍᏗᏱ ᏧᏪᏅᏒ ᏫᏣᎷᎯᏍᏗᏱ ᎠᎴ ᎯᏬᏂᏍᎬ ᎤᏛᎪᏗᏱ. ᎤᎵᏍᎨᏛ ᎠᎾᎵᏍᎩᏍᎬ, ᎤᎾᏓᏂᎳᎩ ᎤᏅᏌ ᎨᏍᏗ ᎠᏎ ᏦᎯᏍᏙᏗ ᏧᎾᎭᎾᏬᏍᏗ ᏱᎨᏎ, ᏍᎩᎾᎾ ᏄᏪᏒ ᎦᎳᎱᏂ, ᎠᏓᏅᏖᎵᏙ ᎠᏣᏅᏙᏗ ᏱᏚᏩᏛᎲᎾ. ᎨᏍᏗᏃ ᏳᏚᎵᏍᎨ ᎩᎶ ᎤᎵᏍᎩᏰᎬᏍᏗᏕᏗ ᎦᎳᎱᏂ, ᎠᏎᏃ ᎦᎸᎳᏗ ᏭᏓᎧᏁ. ᏔᎵᏁᏃ ᏅᏩᏓᎴ ᎤᏅᏏᏓᏍᏗ ᎤᏅᏎ ᏗᏁᎲᎢ; ᎾᏍᎩᏃ ᏅᏯᏉ ᏙᎬᏩᏂᏍᏔᏁᎢ, ᎠᎴ ᎢᎬᏩᏐᏅᏁ ᎠᏍᎪᎵ, ᎠᎴ ᎢᎬᏩᏂᎩᏍᏔᏁ ᎤᏕᎰᎯᏍᏗ ᎢᎬᏩᏁᎸᎯ. ᎤᏙᏓᏃ ᏓᎾᏁᎶᏓᏁᎲ ᎤᎾᏛᏛᏁ ᏄᏍᏛ ᎤᏑᎵᏍᎬ ᏣᎪᏍᏗᏱ. ᎠᎴ ᏥᏩᎾᎦᎸᎢ, ᎠᎴ ᏥᎾᏰᏍᎬᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎩᎾᏫᏍᎬ ᎢᏨᏰᎳᏗᏙᎲᎩ. ᎠᎹ ᏫᏁᎩ ᏣᏄᏏ!” “ᎨᏍᏗ ᏚᏳᎪᏛᎢ ᏱᎩ.” ᏱᏕᎦᏘᏃᎦ. ᎾᏍᎩᏯᏉᏍᎩᏂ ᎾᏍᏉ ᏂᎯ ᎦᏚᎢᏗᏢ ᎢᏣᏓᏅᏘᏳ ᏅᏩᏍᏙᎢ ᏴᏫ ᏗᎨᏣᎧᏃᏗᏱ, ᎠᏎᏃ ᎠᏫᏂᏗᏢ ᎢᏥᎧᎵᏨᎯ ᎨᏐ ᎢᏣᏠᎾᏍᏛᎢ ᎠᎴ ᎤᏲᎢ. ᎠᎴ ᏗᎦᏟᏓ ᎤᏪᏘᎸᎩ ᏆᎾᎥᎢ ᎤᏬᏰᏂ ᏃᎴ ᏍᎩᏴᏃ ᏧᎵᏬᏤᎢ. ᎥᏝᏰᏃ ᏱᏚᎾᏓᏅᏖᎴ ᎦᏚ; ᏧᏂᎾᏫᏰᏃ ᏗᏍᏓᏱᏳ ᎨᏎᎢ. ᎧᏃᎯᏰᎩᏃ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᎤᏍᏆᎸᎯᏗᏒᎩ; ᏥᏌᏃ ᏥᎷᏏᎵᎻ ᏭᎶᏒᎩ. ᎠᎴ ᎩᎶ ᏂᏗᏣᏓᏂᎸᎬᎾ ᎠᎴ ᏂᏣᏛᏓᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎾᎿ ᎢᏣᏂᎩᏍᎨᏍᏗ, ᏗᏣᎳᏏᏕᏂ ᎪᏍᏚ ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎤᎾᏡᏗᏍᎩ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ, ᎠᎴ ᎪᎹᎵ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏟᎯᏳ ᎾᎿ ᎦᏚᎲᎢ. ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏉᎯᏳᎲᏍᎩ ᎤᎭ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ. ᎠᏂᏆᎵᏏᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎦᏙᏃ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎾᎾᏛᏁᎭ. ᎠᏎᏃ ᎿᏉ ᏕᎨᏣᏘᏃᎯᎮᏍᏗ ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎢᏳᏍᏗ ᎢᏥᏁᎢᏍᏗᏱ ᎠᎴ ᎢᏥᏪᏍᏗᏱ; ᎾᎯᏳᏉᏰᏃ ᎡᏥᏁᏗ ᎨᏎᏍᏗ ᎢᏥᏪᏍᏗᏱ. ᎤᏄᎸᏁ ᎤᏣᏘᎾ ᏫᏚᎧᏃᏗ ᏲᎾ ᎤᏤᏍᏙ. ᎦᎵᏆᏍᎪᎯᏃ ᎢᏯᏂᏛ ᏔᎵᏁ ᎤᏂᎷᏤ ᎤᎵᎮᎵᏍᏗ ᏚᏁᏓᏅᏖᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏣᎬᏫᏳᎯ, Ꭰ-ᏂᏍᎩᎾ ᎾᏍᏉ ᎢᎪᎪᎯᏳᎲᏍᎦ ᏂᎯ ᏕᏣᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᎤᎾᏘᎿᏫᏛᎲᎩᏃ ᎠᏫᏄᏣ ᎬᏃᏛ, ᎠᎴ ᎥᏝ ᎤᏍᏗᏉ ᎣᏍᏛ ᏳᎾᏓᏅᏓᏕᎢ. ᎬᏂᏳᏉᏰᏃ ᎠᏆᏛᎦᏅᏉ ᎯᏁᎬ ᏍᎩᏲᎵᎲᎢ, ᎠᏲᎵ ᏥᏁᎵᏒ ᎤᎵᏖᎸᏅ ᎠᎵᎮᎵᎬᎢ. ᎠᏎᏃ ᏇᏍᏓ ᎤᏚᎵᏍᎬᎢ ᎠᏂᏧᏏ ᎣᏍᏛ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ ᏅᏓᏳᎵᏍᏙᏔᏅ, ᎤᏁᏤᎸᎩ ᏉᎳᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᏚᎵᏍᎪ ᏥᎷᏏᎵᎻ ᏤᏅᏍᏗᏱ ᎠᎴ ᎾᎿ ᎯᎠ ᎾᏍᎩ ᏗᎬᏳᎪᏓᏁᏗᏱ? ᎾᏍᎩ ᎥᏝ ᎩᎶ ᏗᎨᎦᏁᎶᏗ ᎡᎶᎯ ᎠᏁᎯ ᏱᏂᎦᏔᎮᎢ; ᏱᎠᏂᎦᏔᎮᏰᏃ ᎥᏝ ᎦᎸᏉᏗᏳ ᎤᎬᏫᏳᎯ ᏓᏓᎿᏩᏍᏛ ᏱᎬᏩᎾᏛᏁᎢ; ᎤᏍᏓᎦᎸ ᎤᏂᏩᏛᏗ ᎨᏎᏍᏗ, ᎨᏍᏗ ᎤᏓᏅᏖᎸ ᏱᎨᏎ ᎢᏳᎾᏛᏁᏗ ᎪᎳ ᏣᎵ. ᏄᏩᏅᎰᎾ ᏣᎵ, ᏕᏧᎬ ᏚᏩᏂᎦᏢ ᎤᏃᏴᎬ ᎫᏘᏍᎬ. ᎠᎴ ᎢᏥᎪᏩᏘᎭ ᎠᎴ ᎢᏣᏛᎩᎭ, ᎥᏝ ᎡᏈᏌᏉ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᎠᎴᏉ ᏂᎬᎾᏛ ᎡᏏᏱ, ᎯᎠ ᏉᎳ ᏓᏍᏗᏰᏗᏍᎬ ᏚᎦᏔᎲᏒ ᎤᏂᏣᏘ ᏴᏫ, ᎯᎠ ᏂᏕᎦᏪᏎᎲᎢ, ᎥᏝ ᎦᎸᎳᏗ ᎠᏁᎯ ᏱᎩ ᎩᎶ ᏧᏬᏰᏂᏉ ᏧᏬᏢᏔᏅᎯ ᏥᎩ. ᎿᏉᏃ ᎤᏙᎯᏳᏁ ᏤᎵᎹᏯ ᎠᏙᎴᎰᏍᎩ ᎤᏁᏨᎯ, ᎠᎴ ᏥᏄᏪᏎᎢ; ᏄᎳᏉ ᎣᏍᏛ ᏂᏍᏛ ᏣᏱᎵᏙᎯ, ᎠᏏᏉ ᎢᏍᏓᎢᏒᎢ, ᏗᎫᎪᏗᏍᎩᏱᎾᏏ ᏫᏱᏣᎧᎲᎦ ᏣᏱᎵᏙᎯ, ᏗᎫᎪᏗᏍᎩᏃ ᏗᏓᏂᏱᏍᎩᏱ ᏫᏱᏣᎧᎲᎦ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏱᏪᏣᏴᏓ. “ᎭᏗ ᎪᎱᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᎴ ᎦᏙᏃ ᎢᎯᎪᏩᏘᏍᎪ ᎤᏢᏓᎸᏛ ᎤᎦᏑᎲᎢ ᏗᏍᏓᏓᏅᏟ, ᏁᎵᏍᎬᎾᏃ ᎢᎨᏐ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ? ᏂᎦᏛ ᎢᎬᏱ ᎤᏂᎷᏨᎯ ᎠᏴ ᎣᏂ, ᎾᏍᎩ ᎠᏂᏃᏍᎩᏍᎩ ᎠᎴ ᎠᎾᏓᎾᏌᎲᏍᎩ. ᎠᏎᏃ ᎠᏫ ᎥᏝ ᏱᎬᏩᎾᏛᎦᏁᎴᎢ. ᎥᏝ ᎠᏏ ᎢᏥᎩᎬ ᎤᏨᎢᏍᏗᏱ ᎢᏴᏛ ᏱᏗᏣᏟᏴᎲ ᎠᏍᎦᏂ ᏕᏣᏟᏴᎡᎲᎢ. ᎤᏣᏘᏃ ᏂᏚᏅᏂᎸ, ᏗᏓᏍᏚᏗᏱ ᏚᏂᏴᏔᏅᎩ, ᎤᏂᏁᏤᎸᎩ ᎾᏍᎩ ᎠᏥᎦᏘᏗᏍᏗ ᎣᏍᏛ ᏧᎦᏘᏗᏍᏗᏱ. ᎬᏂᎨᏒ ᎢᎫᏩᏁᏗ ᏱᎩ ᎤᎵᎪᎾᏙᏗ ᎠᎾᏓᎪᎾᏗᏍᎬ, ᏃᎴ ᎠᏕᎳ ᏱᏚᏓᏒᎾ, ᏰᎵᏉ ᏳᎵᏍᎪᎸᏓᏏ ᎬᏅᎢ ᎰᎻ. ᎯᏥᎦᏔᎭ ᏄᏍᏛ ᎤᏓᏅᏖᏗ---ᎠᏎ ᎤᏩᏌ ᎤᏓᎦᏎᏍᏙᎢ, ᏣᏉ ᏄᏓᎴ ᎩᎶᎢ.” ”ᏭᏙᎯᏳᎲ ᏂᏥᏪᎠ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᎠᏓᏂᏉᏘᎯ, ᎥᏝ ᏴᏫ ᏱᎦᏂᏆᏘᎭ, ᎤᏁᎳᏅᎯᏍᎩᏂ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᎩᏁᎸᎯ ᏥᎩ. ᎠᎴ ᎤᏁᎢᏍᏔᏅᎩ, ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᏤᎭ, ᎾᏍᎩ ᎦᎸᎶᎢ ᎤᏬᏢᏅᎯ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏤᎿᎠ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏤᎿᎠ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏤᎿᎠ, ᎥᏝ ᎿᏉ ᎤᏟ ᎢᎪᎯᏛ ᏱᎪᎯᏗᏏᏎᏍᏗ ᎤᏛᏅᎩ. ᎠᏎᏃ ᎧᏁᎬ ᏔᎵᏁ ᎯᎠ ᏅᏛᎠᎩᏪᎡᎸᎩ ᎦᎸᎳᏗ ᏓᎤᎶᏒᎩ; ᎤᏁᎳᏅᎯ ᎤᏅᎦᎸᏛ ᎾᏍᎩ ᏞᏍᏗ ᎦᏓᎭ ᏲᏎᎮᏍᏗ. ᎠᏗᎾ ᎠᏆᏚᎵᎭ ᏂᏤᎵᎯᏍᎬᎾᏉ ᎢᏣᎵᏍᏙᏗᏱ. ᎾᏍᎩ Ꮎ ᏄᏓᎸᎾ ᎠᏓᏅᏖᏍᎪ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎨᏒᎢ, ᎢᏳᏛᏁᏗᏱ ᎤᎬᏫᏳᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ. ᎾᏍᎩ ᏣᏂᎦᏔᎭ ᏄᏍᏛ ᏕᎫᎪᏗᏍᎬ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎩᎶ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᎸᏫᏍᏓᏁᎯ ᏰᎵᏉ ᏗᎬᏩᏂᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎾᏍᎩᏉ ᎾᎾᏛᏁᎲ ᎤᏩᏒ ᏱᎩ, ᎣᏏᏳᏍᎩᏂ ᏚᏂᏰᎸᎭ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ. ᎤᏁᎳᏅᎯᏰᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎸᏉᏕᏍᏗ ᏨᏙᏓ ᎠᎴ ᏣᏥ; ᎠᎴ ᎾᏍᏉ ᎯᎠ; ᎩᎶ ᏓᏍᎩᏅ ᏗᏍᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᏍᎩᎾᎾ ᎭᎾᏛᎦ. ᏗᎨᏍᎩᎥᏏᏉᏃ ᏕᏍᎩᏚᎬᎢ, ᎾᏍᎩᏯ ᏥᏗᎦᏲᏥᏁᎰ ᏦᏥᏚᎩ. ”ᏥᏣᏁᎸᏓ, ᏥᏣᏁᎸᏓ!” ᎠᎴᏬ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏩ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏛ ᎨᏎᏍᏗ, ᎠᎴ ᏕᏥᎪᏩᏘᏍᎨᏍᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᎾᎵᏌᎳᏗᏍᎨᏍᏗ ᎠᎴ ᎡᎳᏗ ᎾᎾᏛᏁᎮᏍᏗ ᎬᏩᎷᏤᎮᏍᏗ ᏴᏫ ᎤᏪᏥ. ᏧᏓᏏ, ᎥᏝ ᎢᏍᎦᎳᏗ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᏙ ᏓᎦᎵᏍᏙᏔᏂ ᎬᏂᎨᏒ ᎠᏴ ᏅᏛᏍᎩᏯᏛᏁᎵ, ᎥᏝᏃ ᎡᎶᎯ? ᎢᏳᏃ ᎦᏓᎭ ᎠᏓᏅᏙ ᏴᏫ ᎤᏄᎪᎩ, ᎡᏙᎰ ᎤᎧᏲᏛᎯ ᎨᏒᎢ, ᎤᏲᎰ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ; ᎤᏠᎩᏃ, ᎯᎠ ᏂᎦᏪᏍᎪᎢ, ᏛᎦᏨᏏ ᏗᏇᏅᏒ ᏗᎩᏄᎪᏨ ᏮᏛᏥᎶᏏ. ᎪᎳ ᎢᎪᎯᏛ ᎤᎦᎾᏬ ᎠᎾᏗᏍᎪ ᏃᎴ ᏍᏈᏍᏔ ᎠᏣᏗ ᏗᎬᏣᎶᏗ. ”ᎭᎴᏫᏍᏓ!” ᎤᏪᎷᏁ ᏫᎵᎻ. ᎾᏍᎩ ᏯᏛᏅ, ᎤᏇᏓᎵ ᎨᏒ ᎤᎾᏕᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎯᎠ ᎥᏝ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏱᎩ; ᎠᏚᎢᏍᏛᏍᎩᏂ ᎤᎾᏕᏔᏅᎯ ᎨᏒ ᎾᏍᎩ ᏧᏪᏥ ᏧᏰᎸᏗ. ᎤᎵᏍᏗᏳᏃ ᏥᏌ ᎦᏙᎬ ᎤᎷᏨᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏙᎯᏱ ᏕᎾᏓᎪᏩᏛ, ᏍᎩᎾᏝᎢ; ᎠᎴ ᎤᏚᏣᎳᏅᎩ. ᎿᏉᏃ ᏥᏌ ᎤᏙᎴᎰᏒ ᏗᏂᎷᏥᏒᎩ ᎠᎴ ᏗᎬᏩᏗᏝᎥᏔᏂᏒ ᎤᎬᏫᏳᎯ ᏅᏗᎬᏩᏁᎵᏒᎢ, ᎤᏓᏅᏒᎩ ᏔᎵᏁ ᏦᏓᎸ ᏭᏣᏒᎩ ᎤᏩᏒ ᎨᏒᎢ. ᎾᏍᎩ ᎢᎾᎨᎢ ᏤᏙᎵᏙᎮᎢ ᎢᎪᎯᏓ ᏃᎴ ᎢᏳᏊ ᎱᏚᎵᏍᎬᎢ ᏣᎳᏍᏕᎵᏴᏍᎨᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᎦᏛᎾᏨᎯ ᎤᏙᎯᏳᎯ ᎤᏣᏔ, ᏧᏂᎸᏫᏍᏓᏁᎯᏍᎩᏂ ᎠᏂᎦᏲᎵᏳ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏣᏓᏙᎵᏍᏓᏏ ᎤᎬᏫᏳᎯ ᎤᎦᏛᎾᏨᎯ ᎤᏤᎵᎦ, ᏂᏙᏓᏳᏅᏍᏗᏱ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎾᎿ ᎤᎦᏛᎾᏤᎸᎢ. ᏫᎵᎻ ᎤᏓᏐᎴ ᎤᏬᏢ ᎾᎥᏂ, ᎤᏂᏴᎡᎵ ᎫᎦ ᎠᏗᏔᏍᎬᎢ. ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎠᏰᎵ ᎦᏙᎨ ᏫᎵᎻ, ᏓᎭᏬᎢᎮ ᎤᏲᏏᏍᎬ, ᎤᏥᏍᏔᏁ ᏣᏄᏏ. ”ᏃᏉ ᏓᏥᏂᏴᎯ.” ᎠᎴ ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎤᎾᏓᏴᏒᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏂᎯᎧᎯᏰ ᏧᏁᏥ; ᎣᏂᏱᏃ ᎠᎨᏴ ᎾᏍᏉ ᎤᏲᎱᏎᎢ. ᎠᏏᏉ ᎦᏬᏂᏍᎨ ᎩᎶ ᎤᎷᏤ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎬᏫᏳᏌᏕᎩ ᎦᏁᎸ ᏅᏓᏳᎶᏒᎯ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏤᏥ ᎤᏲᎱᏒ, ᏞᏍᏗ ᎯᏯᏕᏯᏙᏔᏅ ᏗᏕᏲᎲᏍᎩ. ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎠ ᏥᏂᎦᏛᏁᎭ ᎥᏝ ᎪᎯ ᎨᏒ ᏱᎦᏔᎭ, ᎣᏂᏍᎩᏂ ᏘᎦᏙᎥᏏ. ”ᎡᎭ! ᏂᎨᎵᏍᎪᏗ ᏥᏍᏕᏥ ᎤᏁᏍᎩᎸᏗ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ. ᏧᏗᎦᎴᏴᏓ ᏓᎭᏦᏴ ᏣᎳᎩᏱ ᎠᏰᎵ, ᏂᎦᏓ ᎠᎾᏂᎩᏍᎬ ᏭᏕᎵᎬ ᎢᏣ. ᎿᏉᏃ ᏥᏌ ᎦᏁᏥᎢ ᎤᏍᏛᎦᎵ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᎪ? “ᎠᏯᏗᏍᏉ ᎠᎩᏲᏏ,” ᎤᏛᏁ ᏣᎵ. “ᎤᎵᎮᎵ-ᎤᎵᎮᎵ-ᎤᎵᎮᎵᏍᏗ!” ᎤᏁᎷᏁᎢ. ᎠᎴ ᏗᏄᎪᏗᏍᎩ ᏫᏚᎾᏘᏃᎮᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎠᏂᏍᎦᏯ ᎠᎠᏧᏏ ᎤᏣᏔᏅᎯ ᎠᎾᏕᏯᏙ ᏗᎭ ᎢᎩᏚᎲᎢ, ᎦᏲᏟᎨ ᏯᏂᏬᏂ ᏴᏫ, ᏯᎦᏓ ᏯᏂᏬᏂ ᏗᎦᎾᏌᎢ. ᎢᎦᏛᏃ ᎾᏍᎩ Ꮎ ᏴᏫ, ᎠᎴ ᎪᎱᏍᏗ ᏗᎾᏓᏛᎿ ᎨᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏂᏩᏗᏒᎢ, ᏓᏂᎪᏩᏗᏍᎨᏍᏗ ᏧᏂᏲᎱᏒᎯ ᏗᏂᏰᎸᎢ ᏦᎢ ᎢᎦ ᏅᎩᏁᏃ ᎠᏰᎵ, ᎥᏝᏃ ᎤᏁᎳᎩ ᎤᏁᎵᏍᏗ ᏱᎨᏎᏍᏗ ᏧᏂᏲᎱᏒᎯ ᏗᏂᏰᎸ ᏗᏓᏂᏐᏗᏱ ᏧᏂᏅᏗᏱ. ᎠᏎᎩ ᏧᎬ ᎤᏂᎩᏢ ᎠᎴ ᎦᏓᏁ ᏅᏯ. “ᏙᏯ ᎪᎱᏍᏗ ᎠᏩᏔ ᏧᏪᏯ ᎾᎥ,” ᎤᏛᏁ ᏥᏍᏚ. ᏦᎩᏴᏫᎾ? ᎠᏎᏃ ᎢᎦᏓ ᎠᏕᏅᏓ ᎨᏍᏗ ᎠᎪᏍᎩ ᏱᎩ. ᏞᏍᏗ ᏧᏃᏕᏍᏗᏍᎩ ᏘᏂᏣᎵᏍᏔᏁᏍᏗ ᎾᏍᏉ ᎠᏂᏧᏏ ᎠᎴ ᏧᎾᏓᎴᏛ ᏴᏫ, ᎠᎴ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎤᏁᎳᎥᎯ ᎤᏤᎵᎦ; ᎠᏯᏙᎵ, ᎠᏰᎵ ᎦᏲᏟ ᎠᏴᏈᏛᏅ ᏩᎩᏌᏅ. ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏧᎾᏤᎵ ᏗᏓᏅᏙ ᏓᏃᎯᏳᎲᏍᎪ ᎠᎾᏙᎴᎰᏍᎩ. ᎡᎦᏆ ᎾᏍᎩ ᎢᏤᎲ ᎡᎯ ᏥᎩ, ᎦᎶᏁᏛ ᎤᏅᏏᏙᎯ, ᏫᏥᏲᎵᎦ, ᏂᎪᎯᎸ ᎠᎵᏂᎬᏁᎭ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎾᏍᎩ ᏂᎯ ᎢᏣᎵᏗᏱ ᏂᏥᎪᎸᎾ ᎠᎴ ᎠᎧᎵᎢ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ ᏗᏂᎾᏕᎩ; ᎯᎠ ᏗᏥᎧᎲᎾ, ᏞᏍᏗ ᎡᏙᏓ ᎦᏁᎸ ᎦᏃᏙᏗᏱ ᎠᏓᏁᎸ ᎢᏨᏁᎸᎢ. ᎠᏎᏃ ᎾᏍᎩ ᎾᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᏧᎬᏩᎶᏗ ᏭᏘᏰᎵᎯᏍᏗ ᎨᏒᎢ; Ꭷ, ᎡᏗᎷᎦ, ᏧᎬᏩᎶᏗᏃ ᎤᏖᏰᏗ ᎢᎦᏤᎵᎦ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎤᏪᎾᏪ ᎠᎴ ᎤᏍᏆᏂᎪᏎ ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎦᏙ ᏣᏚᎵ ᎠᏆᏛᏁᏗᏱ? ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎴᎲᎦ, ᏗᎦᏚᎲ ᎮᎾ, ᏓᏰᏣᏃᏁᎵᏃ ᎢᏣᏛᏁᏗᏱ. ᏗᏂᏙᎬᏃ ᏗᎾᏓᏨᏯᏍᎩ ᏥᎩ ᎾᏍᎩᏯ ᏓᏂᏂᏓᏛᎩ, ᎠᎴ ᏧᎾᏓᏨᏯᏍᏙᏗ ᏗᏂᏙᎬ ᏚᏙᏢᏒᎩ; ᎠᎴ ᎤᏂᎲᎩ ᎪᎱᏍᏗ ᏧᏅᏁᏗᏱ ᏴᏫ ᎯᏍᎩ ᎢᏯᏅᏙ. ᎤᏥ ᎤᎧᎯᏴᏎ ᎡᎳᏆᏗ ᎤᎾᏛᏁᎸᏗ ᏃᎴ ᎠᎬᏱᏣ ᏓᏆᎴᎳ ᎦᏗ ᎤᏩᏗ ᎾᎬᏁᎴᎢ ᎤᎵᎦᏲᏙᏗ. ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ ᎦᏂᎩᎸ ᎤᏴᏥ ᎨᏎᎢ. ᎤᎦᏃᏩ ᎤᏁᏍᎩᎸᏁ ᎤᎧᏔ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎣᏁᎯ. ᏥᏌ ᏚᏁᏤᎸ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᏣᏍᎦᏅᎪᎢ ᎠᏍᎦᏂ ᎤᎾᏝᎢ ᎨᏐᎢ. ᏄᏓᎴ ᎢᎦᏪᏍᎩ ᏫᎾᎩ, ᏧᏍᏆᏴᏍᏗ. ᏥᏌ ᏅᏩᏙᎯᏯᏛ ᏚᏁᎵᎸ ᎡᎶᎯ ᏍᎩᏰᎵᏎᎭ? ᎥᏝ ᎢᏨᏲᏎᎭ; ᏔᎵᏉᏍᎩᏂ ᎢᏳᎾᏓᏗᏍᏗᏱ; ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ. ᏂᎯ ᎡᏥᏁᎸ ᎢᏦᎵᏍᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; Ꮎ-ᏍᎩᏂ ᏙᏱᏗᏢ ᎠᏁᏙᎯ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏕᎨᎦᏟᎶᏍᏓᏁᎰᎢ; ᎤᏬᏰᏂ ᎬᏘ ᎱᎫᏩᎩᏍᏗ ᏱᎨᏎ ᏄᏲᎢᏴ ᏧᏂᎶᏒ ᏴᏫ, ᏍᎩᎾᎾ ᏱᏄᏛᏁᎴ. ᎢᏨᎨᏳᎢ, ᏞᏍᏗ ᎤᏍᏆᏂᎪᏗ ᎢᏥᎪᎵᏰᏗ ᏥᎩ, ᎾᏍᎩᏯ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏥᏥᎷᏤᎶᎢ; ᏈᏓᏃ ᏂᎦᏛ ᏚᏄᎪᏫᏒ ᏚᎵᏂᏆᏅᏁ ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁᎢ, ᏕᏛᏅᏃ ᎢᏗᏢ ᏭᎦᏔᎲᏍᏔᏅ, ᏓᏈᏗ ᏔᎴᎲᎦ, ᎤᏛᏁᎢ. ᏚᏍᏚᎢᏎᏃ ᏗᎦᏙᎵ, ᏈᏓᏃ ᎤᎪᎲ, ᎤᏗᏛᎮ ᎤᏪᏁᎢ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᏂᎯ ᎤᏁᎳᏅᎯ ᎦᏁᎸ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎢᏥᏯᎥᎢ? ᏰᎵ ᎠᎦᏗ ᏪᏙᎰ ᎭᎾᏂ? ᎦᏚᎲ ᏩᏚᏂᏐᏤ, ᏍᏗᏫ ᎤᏤᎵ ᎦᎶᎯᏍᏗ ᎾᎥᏂ ᏭᏂᎷᏤ. ᎠᏂᏲᏍᎩ ᏧᎾᎴᏅᎯ ᏓᏂᏱᎳᏫᏍᏗᏍᎬ ᎠᏂᏣᎳᎩ ᏚᏁᏅᏒ ᎠᎴ ᎦᏓ ᏚᏂᎲ ᏚᏂᎯᏰᎢ ᎠᏎ ᎤᎾᏓᏅᏍᏗ ᏥᏄᎵᏍᏔᏁ ᏁᎳᏚᎢᏍᎪᎯᏧᏈ ᏦᏍᎪᎯ ᎤᏕᏘᏴᏌᏗᏒ ᎨᏒᎢ. ᎠᎴ ᎪᏪᎵ ᏧᏃᏪᎳᏅ ᏚᏂᎾᏫᏛᎮ. ᎭᏩ, ᏗᎨᏅᏒ ᎯᏕᎾ!” ᎤᏕᎶᎰᏎ ᏫᎵᎻ ᎤᎯᏐᏗ ᎢᏳᏍᏗ ᎤᏃᏴᎬ ᏌᎳᏓ ᎦᏬᏂᏍᎬ. Ꭷ ᏄᏬᏚᎭ!” ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎠᏴ ᏍᎩᏁᎢᏍᏗᏍᎨᏍᏗ; ᎣᎪᎯᏳᎭᏰᏃ ᎣᏏᏳ ᏂᏙᎬᏅ ᏦᎦᏓᏅᏙ, ᎠᎴ ᎣᎦᏚᎵᎭ ᏂᎦᎥᏉ ᏃᏣᏛᏁᎵᏙᎲ ᏱᏍᏛ ᎢᏲᎦᏛᏁᏗᏱ. ᎾᏍᎩᏯᏍᎩᏂ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎩᎶ ᎤᎬᎲᎯ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏛᎦᏅᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏴᏫ ᎤᎾᏫᏱ ᎤᏴᎸᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᏚᏛᏅᎢᏍᏓᏁᎸ ᎾᏍᎩ ᎬᏩᎨᏳᎯ. ᎦᏙᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᏂᏲᏍᏗᏍᎪ ᎡᏘ ᎠᏁᎯ ᎤᏂᏃᎮᎸᎯ? ᏝᏰᏃ ᏱᏓᏃᏑᎴᏍᎪ ᏧᏃᏰᏂ ᏨᏗᎾᎵᏍᏓᏴᏂᏐᎢ. ᏳᏫᎬᏩᏙᎯᏙᎴ, ᎠᏎᏃ ᏱᏮᎦᏥᎶᎢ ᎠᏔᎴᎦᏒ. ᎤᎿᎮᎾ ᏫᎫᏓᎴ ᎠᏒᏛᏓ. ᎾᏍᎩ ᎺᎵ ᎠᏠᏁᏗ ᏧᎶᏁᏔᏁ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎤᏍᏘᏰᎬ ᏧᏩᏔᏁ ᏥᏚᏅᎦᎸᎡᎴ ᏧᎳᏏᏕᏂ, ᎾᏍᎩ ᏅᏙ ᎳᏏᎳ ᎤᏢᎬᎩ. ᏒᎧᏔ ᏧᎬ ᎭᏫᏂᏣ ᎤᎵᏍᏛᏧᏁᎢ ᏣᏄᏏ, ᎤᏥᏍᏔᏝᏁ ᎦᏅᏃᏩ, ᏗᎨᏥᎾᏌᎢ ᎤᏂᏩᏒᎨᎢ ᎤᏴᏍᏗ ᏦᎳ. ᎨᏍᏗ ᎠᎵᏍᏔᏴᏗ ᏳᏚᎵᏍᎨ ᏫᎵᎻ, ᎠᏓᎨᏳᏗ ᎤᏚᎵᏍᎨ. ᎤᏛᏅᏃ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏚᏩᏛᎲᎩ ᎠᏂᏅᎩ ᏗᏂᎾᏕᎩ ᏩᎦ ᎠᎴ ᎠᏫ ᎠᎴ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ, ᎠᎴ ᎠᏕᎸ ᏗᏂᏁᏟᏴᏍᎩ. ᎠᎴᏬ ᏦᎢᏁ ᎤᏅᏎᎢ; ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᏂᏐᏅᏅ ᎤᏂᏄᎪᏫᏎᎢ. ᎾᎾᏛᏁᎲ ᎡᏆ ᎡᎶ, ᏤᎩᏏᏂ ᎠᏰᎵᏒ ᏧᏒᎲᏍᏗ ᏂᎦᏓ ᎠᏂᏴᏫᏯ ᎧᎸᎬ ᎢᏣ Mississippi, ᎾᎥᏂᎨᏉ Siam ᎤᎬᏫᏴ ᏓᎭᏃᏫ ᏂᏕᎬᏁᎲ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏁᎵᏍᎨ. ᎢᎦᏓ ᎤᎾᏓᎪᏳᎲ ᎠᎾᏁᎸᏗᏍᎬ ᎤᏂᏢᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏒ ᎬᏂᎨᏒ ᏂᏣᏓᏛᏁ ᎾᏍᎩ ᏗᏥᏙᏓ ᎨᏒ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏂᎸᎯ. ᎠᎴ ᏥᏌ ᎦᏚ ᏚᎩᏒᎩ, ᎠᎴ ᎤᎵᎮᎵᏨ ᏚᏯᏙᎮᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᏯᏙᎮᎸᎩ ᎤᎾᏅᏅᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏣᏗ ᎾᎦᎥ ᏚᎾᏚᎵᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏔᎵ ᏄᎾᏓᏛᎩ ᏴᏫ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎬᏩᏍᏛᏗᏍᎬᎢ. ᎤᏪᎵᏍᏗ ᏑᎾᎴ Potomac ᎨᏴ ᎾᎥ ᏳᎾᏟᎴ. ᏈᏓᏃ ᏚᎴᏅ ᏚᏍᏓᏩᏛᏎᎢ; ᎤᎷᏨᏃ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᏫᎬᏩᏴᏔᏁᎢ; ᏂᎦᏛᏃ ᎠᏂᎨᏴ ᏧᏃᏑᎶᏨᎯ ᎦᏙᎬ ᎾᎥ ᎠᏂᏙᎾᎡ ᏓᏂᏴᎨᎢ, ᎠᎴ ᏓᏂᎾᏄᎪᏫᏍᎨ ᎭᏫᏂ ᏗᏄᏬ ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏄᏬ ᎾᏍᎩ ᏓᎩ ᏧᏪᏰᏫᏒᎯ ᎠᏏ ᎤᏁᎳᏗᏙᎮᎢ. ᏥᏌᏃ ᎤᏁᏨ ᎯᏴ ᏂᏑᏪᏎᎴᎢ; ᏂᏚᏂᏢᎬᎾ ᎥᏝ ᎤᏚᎸᏗ ᏱᏄᎾᎴᏍᏓᏁᎰ ᏗᏓᏅᎾᏍᎩ, ᏧᏂᏢᎩᏍᎩᏂ. ᏍᎩᏃ ᏂᎦᏪᎠ, ’ᎤᏍᏆᏂᎩᏗ ᏏᏆ,’ ᎤᏍᎪᏍᏓ ᎨᏒ. ᏲᎾ ᎦᏐᎯ ᎤᏩᏌ ᎠᎪᏩᏛᏗ ᎠᏲᏍᏗᏍᎬ ᎤᎵᏏᎩ ᎠᎼ ᎦᏚᎢᏣ. ᎠᏂᏆᎵᏏᏃ ᎾᏍᏉ, ᎾᏍᎩ ᎠᏕᎸ ᎤᏂᎬᎥᏍᎩ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎤᎾᏛᎦᏁᎢ; ᎠᎴ ᎬᏩᏕᎰᏔᏁᎢ. ᎢᏗᎦᏔᎭ ᎢᏳᏍᏗᏉ ᎬᏅᎢ ᎤᎵᏍᏕᎸᏙᏗ ᎦᏲᏟ. ᏐᏉ ᎠᏲᏍᎩ ᎠᏧᏣ ᎤᏦᎣᏒ, ᎤᎦᏛᏅᏒ ᎢᏳᏍᏘ ᏂᎦᎵᏍᏗᏍᎬ. “ᎮᎵᏍᎬᏉ ᎢᎪᎯᏓ ᏱᎬᏍᏆᏂᎪᏓ ᏱᏣᏚᎵ ᎠᏯ ᎬᏍᏆᏂᎪᏙᏗ.” ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ, ᎾᏍᎩ ᎤᏂᏣᏘ ᎬᏩᏜᏫᏍᏗᏕᎨ ᎤᎾᏛᎪᏗᏱ ᎧᏃᎮᏛ ᎤᎾᎳᏅᎯ ᎤᏤᎵᎦ, ᎨᏂᏏᎳᏗ ᎥᏓᎷᎶᏗ ᎦᏙᎨᎢ. ”ᎨᏍᏗ ᎦᎬᎪᏩᏘᏱᎩ,” ᎤᏛᏁ ᏫᎵᎻ, ᎩᎳᏈᏴ ᏚᎴᏁ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎴᏁᎢ, ᎤᏁᏒᏃ ᎠᏤᏍᏙ, ᎤᏄᎪᏤ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏛ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏂᎸᏉᎳᏁ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᎢᎸᎯᏳ ᎾᏍᎩ ᎢᏳᏍᏗ ᏲᎩᎪᎰᎢ. ᎠᏓᏍᏕᏓᎵᏴᏍᎬ ᏕᎪᏪᎸ ᏚᎾᏙᎥ ᎠᎾᏦᎥᏍᎬ ᏃᎴ ᏓᏄᏔᎩᏍᎬᎢ ᏴᏫ ᏕᎦᏚᎲ. ᏍᏔᏯ ᎤᏃᎸᏁ ᏒᏛᏓ ᏗᏥᏯ ᏭᏏᏅᏎ, ᏭᏔᏍᏖᏎ ᎣᏂ ᏗᏣ ᎦᏅᏒᏓ. ᎡᎳᏗ ᎦᏙ. ᎯᎠ ᏂᏚᏪᏒᎩ; ᏰᎵᏉ ᏱᏥᏲᏍᏓ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏦᎢᏉᏃ ᏧᏙᏓᏆᏛ [ᏔᎵᏁ] ᏴᎦᏁᏍᎬᎵ. ᎯᎠᏃ ᎤᎵᏬᏨ ᎤᏆᎶᎦ. ᎾᏍᎩ ᎤᏂᏯᏍᏗᏱ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎬᏩᎾᏒᏂᏍᏗ ᎠᎴ ᎬᏩᏂᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝᏍᎩᏂᏃᏅ ᎢᏗᏏᏴᏫᎭ ᏂᎦᏛᎿᏕᎬᎢ ᎢᏅᎯᏳ ᏱᏄᏛᎿᏕᎦ. ᏧᏪᏅᎡᏃ ᎥᎿᎾᏂ ᎤᏍᏗᎢ ᎦᏚᎲᎢ, ᎠᏎᏍᎩᏂ; ᎦᏨ ᏧᎶᏎ ᎤᏍᏆᏂᎩᏗ ᏕᎪᏪᎸ? ᎯᎠᏃ ᎠᏂᏃᏟᏙᎯ ᎯᎠ ᏂᎦᏪᏍᎬᎢ ᏧᏁᎵᏎᎢ ᎤᎾᎱ, ᎱᏰᎳᏚᎢ ᎯᎠ ᎪᏪᎸᎢ ᎤᏓᎾᏛᎢ, ᎠᏎᏃ ᏣᏓᏍᏆᎵᏍᏗᏍᎨ ᏗᎦᏟᏓ ᏃᎴ ᎡᎳᏗ ᏣᏗᏥᎮᎢ. “Ꭳ, Ꭵ.” ᎦᎪ ᏂᎯ ᏥᏕᎯᏳᎪᏓᏁ ᏅᏩᏓᎴ ᎤᏅᏏᏓᏍᏗ? ᎤᏩᏒᏉ ᎤᏅᏏᏙᎯ ᎤᎵᏍᎦᏍᏙᏗ ᎦᏙᎬ ᎠᎴ ᎦᏅᎬᎢ. ᎥᎥ, ᎠᏥᏲᏍᏙᏓᏁᏗ ᎨᏎᏍᏗ ᎤᏅᎢᏍᏗᏱ; ᎤᏁᎳᏅᎯᏰᏃ ᏰᎵᏉ ᎤᎴᏗᏱ ᎢᎬᏩᏁᏗ. ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎡᏥ ᎠᎴ ᎣᏣᎵᏅᏟ ᎯᎠ ᎾᏍᎩ ᏣᎾᏛᎩᎠ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏂᎦᏪᏍᎬ ᎢᏯᎾᏛᏁᎯ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᎠᏯᎦᏯ ᎤᎦᏑᏯ ᎢᏤᎲᎢ, ᎢᏳᏃ ᏌᏉ ᎠᏫ ᎤᏃᏕᎾ ᏳᎾᏝᎠ, ᎠᏔᎴᏒᏃ ᏳᎸᏨ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎾᏍᎩ ᏭᏂᏴᏗ ᎠᎴ ᏭᎴᏍᏗ ᏂᎨᏒᎾ? ᎤᎦᏃᏫ ᎪᏒᏅ ᎦᏓᎸ ᎤᏃᏫ. ᎾᏍᎩ ᎺᎵᎦᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏓᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎪᏌᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᎵᎼᏓᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎥᎵ ᎤᏪᏥ ᎨᏎᎢ, ᏄᏦᏎᏛᎾ ᏯᎩᎨᏳᎦᏧ? ᎤᎾᏓᏓᏍᎬ ᏴᏫ ᎢᏣ ᏚᎾᎵᏐᏫᏍᏛ ᎦᎶᏇ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎦᎥ ᎪᎱᏍᏗ ᎤᎵᏏᎬ ᎢᏥᏁᏨ ᎢᎦ ᎦᏛ ᎠᏛᎪᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ Ꮎ ᎢᏣᏙᏅᎸᎢ ᏕᎧᏅ-ᏑᎸ, ᎦᏌᎾᎵ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎨᏎᏍᏗ. ᎯᎠᏃ ᏄᏂᏪᏒᎩ; ᎢᎦᏛ ᏣᎦᏛ ᏣᏂ ᏗᏓᏬᏍᎩ [ᎨᏦᏎᎰᎢ,] ᎢᎦᏛᏃ ᎢᎳᏯ, ᎠᏂᏐᎢᏃ ᏤᎵᎹᏯ ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏒᎢ. “ᎠᏍᎪᎸᎦ” ᎤᏃᎯᏳᏒᏃ ᎤᏙᎴᎰᏒ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᏍᎦᏯ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎩᎬ ᎤᏪᏅᎡᎲ ᎤᏲᎯᏍᏔᏁᎢ; ᎤᏙᎴᎱᏎᏃ ᎠᏰᎸ ᎤᏗᏩᏒ ᎾᏍᎩ ᎤᏢᎬᎢ. ᎠᏂᏧᏏ ᎯᎠ ᏫᏅᎬᏩᏪᏎᎸᎩ; ᏗᎧᎿᏩᏛᏍᏗ ᎣᎩᎭ, ᏦᎩᎧᎿᏩᏛᏍᏗᏃ ᏂᎬᏅ ᏰᎵᏉ ᎬᏩᏲᎱᎯᏍᏗ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏪᏥ ᎤᏤᎸᏅᎩ. ᎠᏴᏍᎩᏂ ᎢᎦ ᎢᏕᎯ ᏥᎩ ᏂᏗᎩᏴᏍᏕᏍᎬᎾ ᎨᏎᏍᏗ, ᎠᏓᏁᏣᏍᏚᎶ ᎪᎯᏳᏗ ᎨᏒ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏓᏓᏁᏥᏍᏚᎶᏗᏍᎨᏍᏗ, ᎡᎩᏍᏕᎸᏗᏱᏃ ᎨᏒ ᎤᏚᎩ ᎢᎬᏒ ᎢᎦᎵᏍᏚᎶᏕᏍᏗ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎠᏂ ᏗᏍᎩᏲᎯᏏ. ᎦᏙ ᎠᏁᎰ. ᎢᏳᏃ ᎠᏓᏅᏙᎩᎯ ᎢᏕᎮᏍᏗ, ᎾᏍᏉ ᎠᏓᏅᏙ ᏕᎦᏘᏂᏒ ᎢᏓᎢᏎᏍᏗ. ᎥᏝ ᎠᎴ ᎩᎶ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏧᏪᏘ ᏗᏑᏢᏛ ᏱᏓᏟᏍᏗᏍᎪᎢ; ᎢᏤᏰᏃ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏱᏙᎦᏣᎦᎸ ᏗᏑᏢᏛ ᎠᎴ ᏯᏤᏬᎩ, ᏗᏑᏢᏛᏃ ᏱᏓᏲᎩ. ᎾᏍᎩ ᎤᏩᏒᎯ ᎠᎦᏔᎾᎢ ᏥᎩ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ, ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ, ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ, ᏄᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ, ᎪᎯ ᎨᏒ ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ. ᎤᎩᏨᏓ ᎤᎾᏙᏓᏈᏕᎾ ᎨᏎᎢ. ᏚᎴᏁ ᏲᎾ ᎤᏤᏍᏙ ᎦᏍᎩᎶᎩ ᎤᏬᏢ, ᏧᏪᏅᏒ ᎢᏣ ᎤᏪᏅᏎ, ᎠᏓᏅᏖᏍᎨ ᏄᏍᏛ ᎤᏕᎶᎰᏒ ᏃᎴ ᎤᏛᎦᏅ. “ᎦᏛᎩᏍᎪ ᎠᏂᏃᎮᏍᎬ ᏍᎩᎾᎾ ᏏᏆ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ, ᏚᏍᏚᎩᏎ ᏗᎦᏙᎵ. ᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᎠᎨᏴ ᏓᎧᏂᏍᎨᏍᏗ ᏧᎾᏂᏏᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎦᏳᎳ ᎤᏓᏲᏁᎸᎯ ᎨᏎᏍᏗ ᏧᏓᏅᏛᎢ. ᎾᏍᎩ ᏣᎦᏙᎥᎯᏍᏗᏱ ᎤᏙᎯᏳᎯᏯ ᎨᏒ ᎾᏍᎩ ᎾᎿ ᏧᏓᎴᏅᏛ ᎡᏤᏲᏅᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᎠᏏᏉ ᎡᎲ ᎤᏰᎯ, ᏅᏩᏓᎴ ᎠᏍᎦᏯ ᏱᏚᎾᏤᏅ, ᎠᏓᏲᏁᎯ ᎠᎪᏎᎮᏍᏗ; ᎢᏳᏍᎩᏂ ᎤᏰᎯ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎤᏚᏓᎴᏛ ᎨᏐ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏛᎢ; ᎾᏍᎩᏃ ᎥᏝ ᎠᏓᏲᏁᎯ ᏱᎩ, ᎤᏁᎳᎩ ᏅᏩᏓᎴ ᎠᏍᎦᏯ ᏱᏓᎾᏤᎭ. ᏧᏁᎦ ᏧᏃᏩ ᏓᎶᏂᎨ ᏚᏓᏅᎵᏰᎥ ᎦᏲᏟ ᏧᏅᎭᏂᏍᏔᏅ ᏧᏪᏥ. (ᎾᏍᎩᏰᏃ Ꮎ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏂᎨᎬᏁᎮ ᎠᏎᎵᏔᏅᎯ ᏂᎨᏒᎾ; ᎯᎠᏍᎩᏂ Ꮎ ᎠᏎᎵᏔᏅᎯ ᎨᏒ ᎠᎬᏓᏁᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎢᏳᏪᏎᎸᎯ, ᎤᎬᏫᏳᎯ ᎤᏎᎵᏔᏅ ᎠᎴ ᎥᏝ ᎠᎦᏁᏟᏴᎾ ᏂᎯ ᎠᏥᎸ-ᎮᎶᎯ ᏂᎪᎯᎸᎢ ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ.) ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏧᎳᏏᏕᏂ ᎭᏫᏂᏗᏢ ᏂᏕᏨᏁᎸ. ᎾᏍᎩᏰᏃ ᏂᎦᏛ ᎭᏫᏂᏗᏢ ᏥᏄᏩᏁᎴᎢ, ᎥᏝ ᎪᎱᏍᏗ ᏳᏃᎯᏰ ᎾᏍᎩ ᎭᏫᏂᏗᏢ ᏄᏩᏁᎸᎾ ᎨᏒᎢ. ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎥᏝ ᏱᏗᎪᏩᏘᎭ ᏂᎦᏛ ᎭᏫᏂᏗᏢ ᏱᎾᎬᏁᎸ. ᎢᏳᏃ ᎣᏍᏛ ᎠᏥᏃᎮᏍᎩ ᎨᏎᏍᏗ ᎣᏏ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ, ᎢᏳᏃ ᏗᏂᏲᎵ ᏧᏛᎯᏍᏔᏅᎯ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎠᏁᏙᎯ ᏧᏍᏆᏂᎪᏔᏅᎯ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎤᎾᏓᏅᏘ ᏧᎾᎳᏏᏕᏂ ᏧᏬᏑᎴᎸᎯ ᎨᏎᏍᏗ, ᎢᏳᏃ ᏧᏍᏕᎸᏛ ᎨᏎᏍᏗ ᎠᏂᎩᎵᏲᎩ, ᎢᏳᏃ ᎤᏍᏓᏩᏛᏛ ᎨᏎᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᏍᎦᏯᏰᏃ ᎥᏝ ᎠᎨᏴᎯ ᏴᏧᏓᎴᏁ ᎠᎪᏢᏅ; ᎠᎨᏴᏍᎩᏂ ᎠᏍᎦᏲᎯ ᏧᏓᎴᏁ ᎠᎪᏢᏅ. ᎦᏙᏃ [ᏫᎬᏛᏗ ᏂᎦᎵᏍᏗᎭ?] ᎢᏏᎵ ᎥᏝ ᏳᏩᏛᎲ ᎾᏍᎩ ᏧᏲᎲᎩ; ᎨᎦᏑᏰᏛᏍᎩᏂ ᎨᏒ ᎤᏂᏩᏛᎲ, ᎠᏂᏐᎢᏃ ᏚᏂᎫᏏᏲᏨᎩ. ᎠᏍᎪᎯᏧᏈᏃ ᏗᏓᏖᏁᎯ ᎤᎪᎲ ᏄᎵᏍᏔᏂᏙᎸᎢ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎤᏓᏅᏗ ᎠᏍᎦᏯ ᎨᏎ ᎯᎠ. ᏃᏗ ᎠᏍᏛᎢ ᎢᏣ ᏳᏓᏬᎠ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏤᏍᏗ ᎭᎾ ᏯᏓᏬᏍᎨᏍᏗ, ᎬᎳ ᏏᏓᏁᎸ ᏓᎨᏣᎾᎩᏏ ᏃᎴ ᏓᎨᏣᏯᎪᏂ! ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏕᎬᏏᎳᏛᏁᎸ ᏃᎴ ᎣᏍᏓ ᎬᏰᎸᎲ. ᎤᎾᎵᏏᎾᎯᏍᏗ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎠᏁᏯᏔᎯ, ᏚᏁᏅᏒᏉ ᎠᏁᏙᎯ, ᎠᏃᏍᏛ, ᏧᏃᎯᏳᎯ ᎤᏅᏒ ᏗᎬᏩᏂᏰᎯ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᎬᏩᏂᏐᏢᏙᏗᏱ ᏂᎨᏒᎾ. ᎠᏯ ᏲᎪ, ᎣᏍᏓ ᎠᎩᏰᎸᎲ ᏅᏃ ᎤᎵᏗᏨ ᎠᏓᏍᏔᏴᏅ, ᎠᏆᏕᎭᏃ ᎧᏫ ᎦᏓᏫᏗᏍᎩ ᏃᎴ ᏚᏯ ᎠᏂᏤᎯ, ᎤᎧᎭᏲᏛ ᎦᏖᏌᏗ ᏕᏥᎸᏗᏍᎪ ᏕᏥᏒᎾᏔᏍᎪᎢ ᎠᏂᎬᏂᎨ ᏃᎴ ᎠᏂᎪᎢᎭ ᎾᎾᎵᏍᏗᏍᎬ ᎢᎪᎯᏛ. ᎤᎵᏏᎩ ᏄᎵᏍᏔᏁ ᎤᏒᎯ ᎧᎾᏬᎨ ᏃᏉ ᎠᏗᎾ ᎢᏤᏯᏔᎮᏍᏗ; ᏓᏂᎳᏫᎥᏰᏃ ᏕᎨᏥᏲᏍᏗ; ᏧᏂᏔᏫᎢᏍᏗᏱᏃ ᏕᏥᎵᎥᏂᎮᏍᏗ; ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᏂᏅ ᏤᏣᏖᏃᎯᏍᏗ ᎨᏎᏍᏗᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᏧᏂᏕᏖᎴᎩ. ᎬᏲᏎᎭ, ᏔᎴᎲᎦ, ᎠᎴ ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᏗᏤᏅᏒ ᏫᎶᎯ ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; Ᏺ, ᏂᏦᎯᏳᏒᎾ ᎠᎴ ᎢᏣᎦᏔᎲᏛ ᎪᎯ ᏥᏤᎭ! ᎢᎳᎪ ᏂᎪᎯᎴᏍᏗ ᎢᏨᏰᎳᏗᏙᎮᏍᏗ, ᎠᎴ ᎤᎾᏁᎳᎩ ᎢᏨᏰᎵᏎᎮᏍᏗ? ᎡᎯᏯᏘᏄᎦ ᏤᏥ. ᎠᎴ ᎾᏍᏉ ᎤᏟ ᎢᎦᎢ ᏄᏜᏏᏛᏒᎾ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎢᎩᎭ, ᎾᏍᎩ ᎣᏏᏳ ᏱᏂᏣᏛᎦ ᏱᏣᎦᏌᏯᏍᏔᏅ ᎾᏍᎩᏯ ᎢᎦ-ᏚᎸᏌᏛ ᎤᎵᏏᎬ ᏨᎦᏌᏯᏍᏗᏍᎪᎢ, ᎬᏂ ᎢᎦ ᏓᎦᏙᎩ, ᎠᎴ ᏑᎾᎴ ᎡᎯ ᏃᏈᏏ ᏓᎧᎸᎩ ᏗᏥᎾᏫᏱ; ᏓᏳᏓᎴᏅᏓ ᎧᏅᏂᏍᎩ ᏧᎵᎢᏕᎮᎢ ᎠᏁᎸᏗᏍᎨᎢ ᎢᏳᏛᏁᏗ ᏄᏍᏛ ᎠᏂᏃᎮᏍᎬᎢ. ᎲᎦ ᎢᏯᏂ ᎠᏂᏴᏫᏯ ᏕᎯᏍᏕᎵᎭ? ᎤᏛᏅ ᏗᎪᏪᎵᏍᎩ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏍᏉ ᎢᎴᎳᎭ ᏗᏱᏂᏲᎱᎯᏍᏗ ᏱᎩ, ᎠᏎ ᎥᏝ ᏴᎦᎬᏯᏓᏱᎦ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎦᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎾᏍᎩ ᏄᏂᏪᏒᎩ. ᏣᏁᎸᏔᏅᎯᏍᎪ ᏣᏢᏗ ᏣᏁᎳ ᏧᏪᏥ ᏱᏗᏣᏍᎩᏝ?” ᎾᏍᎩ ᎢᏃᏏ ᎤᏪᏥᎨᏎᎢ, ᎾᏍᎩ ᏎᏗ ᎤᏪᏥ, ᎾᏍᎩ ᎠᏓᏫ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᎢ. ᏥᎦᏔ ᎣᏍᏓ ᏱᎩ ᏯᎩᎪᎭ, ᎣᏍᏓᏰᏃ ᏓᎩᏏᎳᏛ. ᏂᎦᏛᏃ ᏚᏄᎪᏫᏒ ᎠᎴ ᎤᏬᏯᏁᏒ ᎤᏯᏅᎮ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎨᏳᏣ, ᎭᏗᏛ. “Ꮒ,” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏌᏊᏃ ᎢᎦ ᎤᏍᏗ ᎠᏣᎳᎩ ᎠᏧᏣ ᏒᎦᏔ ᎤᎦᏔ ᎤᏫᏎᎢ ᎣᏂᏗᏜ ᏧᏪᏅᏒᎢ. ᎤᏍᎦᎴᎢ ᎤᏂᏴᏗ ᎣᏍᏓᏓᏤᎵ. ᎠᎴ ᏗᏣᎵᏦᏩᏛ. ᏰᎵᏉᏍᎪ ᏱᏕᏍᎩᏩᎯᏏ ᎤᏁᏍᏔᎶᏨ ᎤᏅᏗ ᎤᏪᏥ ᎠᏑᏰᏓ ᏃᎴ ᏩᎦ ᎭᏫᏴ ᎠᏍᏙᏓ ᎨᎵᏍᎩ ᎤᏅᏗ ᎤᏍᏔᏲᏒ ᎠᏌᎯ ᏃᎴ ᏒᏗᏩᏟ ᎪᎸᏍᏔᏅ?” ᎤᏛᏛᏁ ᎡᎳᏆᏗ. ᏃᎴ ᏍᏉ ᏧᏍᏆᏴᏍᏗ ᎤᎵᏏᏂᏗ ᏧᎦᏔᏁᎢ ᎤᎪᏩᏛᏗ ᏫᎵᎻ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ ᎬᏗ ᎠᎦᏬᏍᎬᎢ. ᏗᏫᏌᏅ ᎠᏰᎵ ᏫᎶᎯ, ᏗᏂᎳᏗᏍᎩ ᏔᏍᎪᎳ! ᎿᏉᏃ ᎤᏙᎯᏳᏁ ᏧᏁᏤ ᏤᎵᎹᏯ ᎠᏙᎴᎰᏍᎩ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎠᎴ ᏚᏂᎩᏒᎩ ᏦᎠᏍᎪᎯ ᎠᏰᎵ-ᎠᏕᎸ ᎾᏍᎩ ᎾᏧᎬᏩᏔᏅᎯ, ᎾᏍᎩ ᏣᏥᎬᏩᎶᏔᏅᎯ, ᎢᏏᎵ ᏧᏪᏥ ᏧᏂᎬᏩᎶᏔᏅᎯ, ᏚᏘᏅᏒᎩᏃ ᏈᏓ ᎠᎴ ᎠᏂᏔᎵ ᏤᏈᏗ ᏧᏪᏥ, ᎠᎴ ᎤᎴᏅᎮ ᎡᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ, ᎠᎴ ᎤᏣᏘ ᎦᎨᏗᏳ ᏄᎵᏍᏓᏁᎴ ᎤᏓᏅᏛᎢ. ᎾᏍᎩᏍᎩᏂ ᎾᎣᏂ ᏨᏓᏯᎢ, ᎢᎬᏱ ᏣᎦᎴᏗ; ᎾᏍᎩ ᏧᎳᏑᎶ ᏕᎪᎸᏌᏛ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᏗᏍᎩᎧᏁᏴᏴᏗᏱ. ᎤᎾᏙᏓᏆᏍᎬᏃ ᎤᎵᏰᎶᎸ, ᎤᎴᏅᎮ ᏚᏕᏲᏁ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎤᏂᏣᏘᏃ ᎬᏩᏛᎦᏁᎸ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎭᏢ ᎠᎩᎭ ᎯᎠ ᎠᏍᎦᏯ ᎯᎠ ᎾᏍᎩ ᎢᎬᏩᏛᏁᏗ ᏥᎩ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎾᏍᎩ ᎠᏥᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏥᏚᎸᏫᏍᏓᏁᎭ? ᏙᏰ ᎢᏣ ᏫᏚᎧᎾᏁ, ᎤᏕᎶᎰᏎ ᎠᎦᎵᏍᎬ. ᎤᏣᏘ ᎨᏥᎨᏳᎭ, ᎠᏎᏃ ᎥᏝ ᎣᏍᏛ ᎤᎬᏩᎵ ᏱᎩ; ᎠᎴ ᏂᎯ ᏱᎨᏣᎵᏍᏚᏓ, ᎾᏍᎩ ᎤᏣᏘ ᏗᏥᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ. ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᎾᏍᎩ ᏧᏁᎬ ᏣᏥᏄᏬᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎥᏝ ᏥᏲᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᏚᏙᎥ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ ᎪᏪᎸᎢ; ᎠᎴ ᎬᏂᎨᏒ ᎢᏥᏴᏁᏗ ᎨᏎᏍᏗ ᏕᎤᏙᎥ ᎡᏙᏓ ᎠᎦᏔᎲᎢ, ᎠᎴ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᏂᎧᏔᎲᎢ. ᎩᎶᏰᏃ ᏧᎸᏫᏍᏓᏁᎯ ᎠᎦᎫᏴᎡᏗ ᎨᏒ ᎥᏝ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏤᎵ ᏯᏥᏰᎸᎾᏁᎰᎢ, ᎤᏧᏚᎬᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏤᎵ ᎠᏥᏰᎸᎾᏁᎰᎢ. ᎪᎨᏱ, Ꮓ ᏗᏂᏲᏟ ᎦᏚᏏ ᎢᏣ ᎢᎾᎨᎢ ᎡᎯ ᎠᏂ ᏣᎾᏗᎩᏏᏙᎮᎢ ᎾᏍᎩ ᎾᎥᎢ ᏣᎦᎷᎧᎨᎢ ᎤᏂᎵᏏ ᎢᏳᏍᏗ ᏗᎧᎾᏗ ᏥᎨᏎᎢ. ᎥᏝ ᎠᎴ ᎢᏤ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏧᏪᏘ ᏗᏑᏢᏛ ᏱᏓᏂᏟᏍᏗᏍᎪᎢ; ᏗᏑᏢᏛᏰᏃ ᏱᏓᏓᏣᎦᎸ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏯᏤᏬᎩ, ᏗᏑᏢᏛᏃ ᏱᏓᏲᎩ. ᎢᏤᏍᎩᏂ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏗᏤ ᏗᏑᏢᏛ ᏓᏂᏟᏍᏗᏍᎪᎢ, ᎢᏧᎳᏃ ᏚᏂᏍᏆᏂᎪᏙᎢ. ”ᎣᏍᏓ ᎤᏒᎯ!” ᏧᎪᎸ ᎢᏴ ᎤᏓᏂᏴᎮ ᎪᏍᏔᏴ, ᎾᏍᎩᏯ ᎤᎧᎭᏲᏓ ᎠᏒᏆᎶᏍᏗ ᏳᏫᎦᏂᏌᎾ. ᎦᎶᏁᏛ ᎦᎷᏨ ᎢᏳᎢ, ᎾᏍᎩ ᎬᏂᏛ ᎢᎩᏁᎯ ᏥᎩ, ᎿᏉ ᎾᏍᏉ ᏂᎯ ᎢᏥᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏤᎮᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎢᏣᏄᏬᏍᏕᏍᏗ. ᎤᎾᏛᏁᏃ ᎠᎴ ᏚᏂᏯᏙᎴ ᏧᏄᏬ ᎠᎾᏌᏍᏗᏍᎨᎢ; ᎾᏍᎩᏃ ᎤᏙᎯᏳᏁ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᏗᏆᏄᏬ ᏚᏂᏯᏙᎸᎩ, ᎠᎴ ᎠᏆᏄᏬ ᎤᎾᏌᏍᏔᏅᎩ. ᎢᏯᏔᏬᏍᏔᏅ ᎣᏁ, ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏘ ᎱᏂᎷᏤ. ᏍᎪᏁ ᎢᏴ ᏥᎪᏩᏘᏍᎬ ᎣᎩᏃᏔᏅ ᏣᎵ, ᎭᎾᎾ ᏙᎩᎾᏅ ᎤᎵᏨᏓᏆᏓ ᎣᏍᏘᏬᏂᏍᎬ. ᎤᎬᏫᏳᎯᏍᎩᏂ ᏥᏌ ᎦᎶᏁᏛ ᎡᏣᏄᏬᏍᏓ, ᎠᎴ ᏞᏍᏗ ᏱᏣᏛᏅᎢᏍᏓᏁᎴᏍᏗ ᎤᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎬᎥᏍᎬ ᎢᏣᏛᏁᏗᏱ. ᎠᏂᏍᎦᏯᏃ ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎩ ᎤᏂᎾᏫᏛᎮ ᏍᏗᏫ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᏂᏍᎪᏂᎴᎢ. ᎠᎴ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎿᏉ ᎠᎵᏱᎶᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ; ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᏦᎯᏳᎲᎦ ᎣᏍᏛ ᎧᏃᎮᏛ. ᎠᎴ ᎤᏁᏤᎴ ᏧᏪᏅᏒ ᏭᎶᎯᏍᏗᏱ, ᎯᎠ ᏄᏪᏎᎢ, ᏞᏍᏗ ᏗᎦᏚᎲ ᏫᏣᏴᎸᎩ, ᎠᎴ ᏞᏍᏗ ᎩᎶ ᎦᏚᎲ ᎡᎯ ᎯᏃᏁᎸᎩ. ᏅᏃᎯ ᎦᎵ ᎨᏒ ᎠᏂᏩᏥᏂ ᎠᏂᏲᏍᎩ ᏃᎴ ᎦᎶᏇ ᏗᏂᏁ ᏔᎾᏏ ᏓᏳᏂᎶᏒ ᎨᎦᎫᏴᎡ, ᏗᎾᏓᎾᏌᎲᏍᎩ ᎢᏳᏍᏗ ᏚᎾᎭᏄᏭ, ᎪᎩ ᎤᏩᏌ ᎨᏥᎾᏒᏅ ᎠᏂᏴᏫᏯ ᏗᏂᎭᏲᎯ. ᎿᏉᏃ ᎤᎷᏤᎸᎩ ᏤᏈᏘ ᏧᏪᏥ ᎤᏂᏥ, ᏓᏘᏁᎲᎩ ᏧᏪᏥ ᎠᏂᏫᏅ, ᎡᎳᏗ ᎤᏓᏅᏅᎩ, ᎠᎴ ᎠᎱᏍᏗ ᎤᎳᏲᏎᎲᎩ. ᎠᏏᏴᏫᏃ ᎾᎥ ᎠᏂᏙᎿᎢ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎤᎸᎮᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ ᎤᎷᏰ ᎠᎴ ᎤᎵᏍᏕᏍᏔᏁᎢ. ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏳᏃ ᏴᏫ ᎤᏐᏅ ᏂᎨᏥᏪᏎᎮᏍᏗ ᎠᎴ ᎤᏲ ᏂᎨᏨᏁᎮᏍᏗ, ᎠᎴ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎤᏐᏅ ᎦᏰᎪᎩ ᎨᏥᏃᎮᏍᎨᏍᏗ ᎠᏴ ᎨᏒ ᎢᏥᏍᏛᏗᏍᎨᏍᏗ. ᎡᎶᏛ ᎠᎴ ᎾᏍᏉ ᎥᏝ; ᎾᎿᏰᏃ ᎢᏤᏅᏍᏗᏱ ᎢᏨᏁᏤᎸᎩ; ᎬᏂᏳᏉᏃ ᎥᏝ ᎪᎱᏍᏗ ᏖᎵ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒ ᏱᏄᏛᏁᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ ᎨᏒ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᏪᏥ ᎨᏒᎢ. ᏭᏂᎷᏣ, ᎠᏂᏄᏓᎴᎩ ᎠᏂᏁᎸ ᏃᎴ ᎠᏂᎱᏣ ᏚᏂᎷᏫᏍᏔᏁᎲ ᏍᎪᎯᏍᏆ ᎢᏰᏆ ᎠᏫᏌᏅ ᎤᏥᎸ ᏃᎴ ᏦᎳ, ᎤᎧᎭᏛ ᏧᏓᏴᎳᏙ ᎢᎦᎦᏓ ᏄᎾᏛᏂᏎ ᎠᏂᎱᏣ. ᎦᏨ ᏭᏩᎬᏛ ᎢᎾᏓ? ᏚᎧᏔᏍᏔᏁᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩ ᎤᏲᎢᏳᏛᎿᏕᎩ ᎤᏲᎱᏎᎢ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᏅᏎ ᎡᏆᎭᎻ ᎦᏁᏥᎢ ᏫᎬᏪᎧᏁᎢ. ᎤᏪᎿᎢᏃ ᎾᏍᏉ ᎤᏲᎱᏎᎢ ᎠᎴ ᎠᏥᏂᏌᏁᎢ. ᎠᎴ ᎾᏍᎩ ᏗᏂᏲᎵ ᎤᏂᏲᎵ ᎠᎴ ᎩᎬ ᎤᏂᏁᎯ ᏥᎩ, ᎤᏩᏒ ᎾᏍᏉ ᎾᏍᎩ ᎤᏠᏯᏍᏔᏁ ᎤᎩᏎᎢ; ᎾᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏐᏗᏱ ᎠᏎᏉᏉ ᎢᏳᏩᏁᏗᏱ ᎾᏍᎩ Ꮎ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎵᏂᎬᎬ ᎤᎯ, ᎾᏍᎩ ᎠᏍᎩᎾ ᏥᎩ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎰᏪᎸᎦ, (ᎯᎠᏅᎦ,) ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᏃᏕᎾ-ᎠᎩᎾ ᏣᎦᏨᏍᏙᏗᏱ ᏧᎾᎵᏍᏓᏴᏗᏱ ᎨᏒ ᎤᏂᎷᎯᏍᏗᏱ ᎨᏥᏯᏅᎥ ᎨᏎᏍᏗ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎢᏳᏪᏛ ᎤᏁᎳᏅᎯ. ᎠᏍᎦᎢᎮ, ᎠᏎᏃ ᎾᎥᏂ ᏭᎷᏤ ᎠᏤᎯ ᎠᏣᏗ ᏃᎴ ᎤᏍᎦᎣᏅ ᎤᏬᏂᏎ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ, ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥᏱᎩ ᏂᎯ ᎢᏳᏍᏗ ᎠᏣᏗ. ᎠᏎᏃ ᎢᏳᏃ ᎡᎶᎯ ᎥᎩᏌᎳᏓᏅᎭ, ᎾᏂᎥ ᏴᏫ ᏙᏓᎦᏎᏒᎯ. ᎤᏐᏱ ᎤᏬᎯᏳᎮ ᏃᏉ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᎪᎯᏉ ᏒᏃᏱ ᏥᎩ ᎠᏏ ᏣᏔᎦ ᎾᏂᏴᎬᎾ ᎨᏎᏍᏗ ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ. ᎠᏫᎾᎨᏍᏗ ᎨᏒ ᎠᏯ ᎨᏒ, ᏔᎵᎭ ᎠᎴ ᏦᎢᎭ ᏧᏕᏘᏴᏓ ᎠᏫᎾᎨᏍᏗᏱᎩ, ᎠᎦᏗᏓ ᏅᏩᏍᏙ. ᏲᎾ ᎤᏤᏍᏙ ᎤᏬᏞ ᎤᏍᏗ ᎦᏍᎩᎶᎩ ᏄᎵᏍᏔᎾ. ᎤᏛᏐᏅ ᎫᎾᏓᎴᎩ ᏓᏍᏖᎵᏍᎬ ᏧᏄᎪᏙᏗ, ᎠᏏᎾᏌᏅ ᎤᏙᎴᏋ ᏓᏍᏕᎵᏍᎬ ᎠᏂᏳᏩᏁᎦ ᏃᎴ ᏓᎵᏍᏗᏍᎬ ᎠᏂᏳᏩᏁᎦ. ᎤᏣᏛᏃ ᎤᏕᎵᏛ ᏓᎾᎵᏃᎮᎵᏙᎲᎩ ᏴᏫ ᎾᏍᎩ ᎬᏩᏃᎮᏍᎬᎢ; ᎢᎦᏛᏰᏃ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎣᏏᏳ ᎠᏍᎦᏯ; ᎢᎦᏛᏃ, ᎥᏝ ᏕᎦᎶᏄᎮᏉ ᏴᏫ, ᎠᎾᏗᏍᎬᎩ. ᏣᎵ ᏧᏤᎵ ᏴᏫ ᏚᏃᏒᎲ ᎤᎾᏗᏍᎦᎶᏗ ᏧᎬ ᎭᏫᏂᏨ, ᎦᏅᎯᏛ ᎠᏓ ᏭᏂᎳᎦᎸ ᏧᎬ, ᎦᏚᎢᏣ ᏫᏚᏂᏒ ᏧᏩᏂᎦᏝᏅ ᏃᎴ ᏧᏆᎶᎦ. ᎢᏳᏃ ᎠᏎ ᎠᏆᏢᏈᏍᏗ ᎨᏎᏍᏗ, ᏥᏩᎾᎦᎵᏳ ᎨᏒ ᎤᎬᏩᎵ ᏓᎦᏢᏆᏏ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ; ᎯᎠ ᎾᏍᎩ ᏣᏂ ᏗᏓᏪᏍᎩ; ᏙᏅᎴᏅ ᏧᏲᎱᏒᎩ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏍᏆᏂᎪᏗᏳ ᏥᏚᎸᏫᏍᏓᏁᎭ. “ᏥᏕᎩ ᎯᎪ ᎤᏒᎯ,” ᎤᏛᏁ. ᎤᏛᏅ Perry. ᏱᏏᏃ ᎠᎨᏲᏅᎯ ᎨᏎ ᏂᎦᎥ ᎠᏂᎦᏔᎿᎢᏳ ᎨᏒ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏎ ᎤᏁᎢᏍᏗᏱ ᎠᎴ ᏧᎸᏫᏍᏓᏁᏗᏱ. ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᏁᎳᎩ, ᎢᏓᏙᎴᎰᎯ, ᏥᏌᏃ ᎢᎳᏯ ᏓᎦᎷᏥ ᏓᏳᏍᏕᎸᎯᎵ. ᎠᎴᏃ ᎦᎸᎳᏗᎨ ᏚᏅᏓᏒ ᏳᏪᎾ, ᏱᏚᏍᏔᏩᏕᏅ ᏧᏴᏨ ᎧᎸᎬ ᎢᏣ, ᎾᎨ ᎢᏴ ᎠᎾᏓᎭᏲᎯ, ᎦᏙᏉ Ꮓ? ᎦᏨ ᏁᏂᏏ ᎯᎪ ᎤᏒ, ᏃᎴ ᏗᏂᏲᏟ ᎡᎵᏍᎨ. ᎯᎠ ᎢᎦᏪᏛ ᎢᎩ; ᎩᎶ ᎤᏓᎵᎢ ᎢᎦᎧᎲᏍᎨᏍᏗ, ᎦᏅᏁᎮᏍᏗ ᎪᏪᎵ ᎾᏍᎩ ᏚᎾᎦᎴᏅᎲᎢ. ᎠᎴ ᏓᏂᎾᏕᎨ ᏚᏂᎶᎨᏒ ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᎲᎢ, ᎠᎡ ᏓᏂᏯᏙᎮᎮ ᎾᏂᎥ ᎾᏍᎩᏯ ᎤᏂᏂᎬᏎᎲᎢ. ᎤᏂᏣᏖᏍᏗᏰᏃ ᏴᏫ ᏓᏆᏙᏍᏛ ᎠᏂᎷᎯᏍᏗᏍᎨᏍᏗ, ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎠᏴ ᎾᏍᎩ; ᎠᎴ ᎤᏂᏣᏖᏍᏗ ᏓᏂᎶᏄᎮᏍᎨᏍᏗ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏁᏅᏒᎩ, ᏥᏌ ᏄᏂᏪᏎᎸ ᎾᏍᎩᏯ ᏫᏄᎾᏛᏁᎸᎩ; ᎠᎴᏍᎪ ᎥᏝ ᎾᏍᎩ ᎯᎠ ᏳᎬᏫᏳᎭ, (ᎾᏍᎩ ᎦᏲᎩᏐᏢᏛ ᏥᎪᎩᏃᎮᎭ, ᎠᎴ ᎩᎶ ᎾᏍᎩ ᎾᏂᏪ ᏥᎪᎪᏎᎭ,) ᎤᏲ ᏕᎩᎸᏫᏍᏓᏁᎮᏍᏗ ᎾᏍᎩ ᎣᏍᏛ ᎨᏒ ᎤᎵᏰᎢᎸᏍᏗᏱ? ᎾᏍᎩ ᎤᏂᏍᎦᏅᏨ ᏧᎾᏚᎪᏓᏁᏗᏱ ᏚᏳᎪᏗ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉᏃ ᎯᎠ ᏄᏚᏪᏎᎸᎩ; ᎳᏏᎳ ᎢᎦᎵᎢ ᎦᎵᎭ; ᎠᏎᏃ ᏓᎨᏏ, ᏴᏓᏥᏰᏍᏔᏂ. ᎭᏕᎶᎰᏍᎦ ᏂᏚᏟᏂᎬᎬ ᏗᎦᏅᏬᎢ ᏣᏄᏏ?” ᎤᏚᏓᎳᎩᏍᏓᎾ, ᎾᎥ ᏅᏲᎯ ᎢᏗᏣ ᏭᏓᏂᏏᏅᏍᏓᏁ. ᏰᎵᏃ ᎤᏬᎯᏨ ᎤᏪᏙᎸ, ᎤᏂᎩᏒᎩ, ᎠᎴ ᎨᎴᏏᏱ ᎠᎴ ᏈᏥᏱ ᎣᏍᏛ ᎤᏱᎸᏒᎩ ᎤᏪᏐᎸᎩ, ᏓᎵᏂᎪᎯᏍᏗᏍᎬᎩ ᏂᎦᏛ ᎠᏃᎯᏳᎲᏍᎩ ᎤᎾᏛᎦᏅᎯᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᎪᏃ ᏰᎵ ᏯᏥᏍᏕᎸ? ᏂᎦᏓᏗ ᏧᏐᏱᎭ. ᎰᏩᏃ ᎤᏯᏅᎲ, ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᏭᏘᏃᎮᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏉᎳ ᎠᏴᎩ ᏩᎩᏯᏅᎲᎩ, ᎠᎩᏔᏲᏎᎸᎩ ᎯᎠ ᎠᏫᏅ ᎬᏯᏘᏃᎮᏗᏱ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᎭ ᏣᏃᏁᏗ. ᎧᏃᎮᎸᎥᏍᎩ ᎠᏉᏪᎳᏅ, ᏧᏑᎵᎪᎬ ᎧᏃᎮᏍᎩ, ᏣᏉ Mrs. Chapman, The Chesapeake Review ᎤᏃᏣᎸᏅ. ”ᎤᏣᏓ ᎣᏍᏓ!” ᎡᏝᏪ ᏄᏪᏎ ᎰᎻ, ᎤᎵᎮᎵᏍᏗ ᎦᎸᏉᏗᏍᎨ. ᎠᎩᏫᏯ ᎠᎩᏍᎩ, ᎠᎴ ᎠᎩᎩᎬ ᎠᏗᏔᏍᎩ, ᎾᏍᎩ ᎠᎩᏯᎠ, ᎠᏴ ᎠᎴ ᎾᏍᎩ ᏥᏯᎠ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏓᏕᏲᎲᏍᎬᎢ, ᏕᏤᏯᏙᏤᎮᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎣᏏᏳ ᏧᏂᏰᎸ ᏗᎦᏅᎯᏛ ᏧᎾᏄᏩᎢ ᎤᏁᏓᏍᏗᏱ, ᎠᎴ ᎨᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ, ᎠᏎᏃ ᏅᏙᎴᎰᏒ ᎠᏍᏓᏱᏳ ᎦᏃᎸᎥᏍᎬ ᎤᏍᎦᎸᎩ, ᎠᎴ ᎤᎴᏅᎲ ᎦᏃᏴᎬ ᎤᏪᎷᏅᎩ, ᏣᎬᏫᏳᎯ ᏍᎩᏍᏕᎸ, ᎤᏛᏅᎩ. ᎤᏂᏁᎫ ᏚᏂᏅᏎ ᏗᏨᏍᏙᏗ ᎠᏎᏃ ᎪᎢ ᏄᏂᏁᏨᏒᎾ ᎨᏎᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏯᏫᏍᎩ ᎤᏂᎷᏨᎩ, ᏚᏂᏍᏆᎵᏒᎩ ᏗᎦᏅᏍᎨᏂ ᎢᎬᏱᏱ ᎦᏗ ᎠᎴ ᏐᎢ ᎢᏧᎳᎭ ᏥᏌ ᏗᎨᎦᏛᏅᎯ. ᏚᎪᎮᏃ ᎠᏂᎩᎵᏲᎬ ᎠᏂᎦᏪᎯᎲᎢ; ᏩᏂᎦᏛᏃ ᎢᏗᏏ ᏗᎦᏃᎸᏗᏍᎨᎢ. ᏅᎩᏁᏃ ᎢᏴᏛ ᎠᏂᏯᏫᏍᎬ ᏒᏃᏱ ᏚᎷᏤᎴᎢ, ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏎᎢ, ᎠᎴ ᏱᏚᎶᎯᏎᎴᎢ. ᎬᎨᏳᎢ, ᎤᏟ ᎢᎦᎢ ᎠᏆᏚᎵᎭ ᎣᏍᏛ ᏣᏁᏉᏤᏗᏱ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏣᎴᏂᏓᏍᏗᏱ, ᎾᏍᎩᏯ ᏣᏓᏅᏙ ᎣᏍᏛ ᎤᏁᏉᏤᎲᎢ. ᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᎯᏯᏍᎨᏍᏗ ᏣᏓᏁᏗ ᎠᎴ ᎭᏓᏅᏍᎨᏍᏗ, ᎢᎬᏱ ᎣᏍᏛ ᏂᏍᏛᏁᎮᏍᏗ ᏗᏍᏓᏓᏅᏟ; ᎩᎳᏃ ᎯᎷᎨᏍᏗ ᎭᎵᏍᎪᎸᏗᏍᎨᏍᏗ ᏣᏓᏁᏗ. ᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᏗᏓᎴᏅᏗᏍᎩ ᎠᎴ ᎠᏍᏆᏗᏍᏗᏍᎩ, ᎠᎴ ᎢᎬᏱᏱ ᎠᎴ ᎤᎵᏍᏆᎸᎢ. ᎾᏍᎩ ᎬᎩᎦᏔᎲᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎢᏳᏃ ᏳᏂᏃ-ᎮᎸ, ᎠᏂᎦᏔᎯᏳᏰᏃ ᎠᏆᎵᏏ ᎤᎴᏂᏓᏍᏗ ᎠᏆᎴᏂᏙᎸᎢ, ᏕᏥᏍᏓᏩᏗᏒ ᎤᎾᏓᏤᎵᏛ ᎤᎾᎵᎪᎯ ᏭᏂᎫᏛ ᏗᏂᎧᎿᏩᏕᎩ ᎣᎦᏤᎵ ᎤᏁᎳᏅᎯ ᏦᏥᎧᎿᏩᏛᏍᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏂᎦᎥᎩ ᏅᏩᏙᎯᏯᏛ ᎢᏣᏓᏅᏛᎩ! ᎢᏨᏲᎢ-ᏳᏓᏁᎭᏰᏃ, ᎾᏍᎩ ᎢᏳᏃ ᏰᎵ ᎾᏍᎩ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᎢ, ᎢᏨᏒ ᏱᏗᏣᏓᎦᏖᏙᎢᏎᎢ, ᎠᎴ ᎠᏴ ᏱᏗᏍᎩᏁᎴᎢ. ᎠᏌᎻᏓ ᏃᎴ ᎠᏂᏧᏣ ᎤᏲ ᎤᎾᏓᏅᏛ. ᎿᏉᏃ ᏔᎵᏁ ᏗᎦᏙᎵ ᏚᏏᏔᏕᎢ, ᎠᎴ ᏧᎧᏃᏗᏱ ᏄᏩᏁᎴᎢ; ᎠᎴ ᎤᏗᏩᏎᎢ, ᎠᎴ ᎾᏂᎥ ᎣᏏᏳ ᏓᎪᏩᏗᏍᎨᎢ. “ᎣᏍᏓ!” ᎤᏛᏁ ᎦᏂᎦᏔ. ᏅᏩᏓᎴᏃ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ; ᏅᏩᏓᎴᏃ ᎤᏙᎴᎰᎯᏍᏗᏱ; ᏅᏩᏓᎴᏃ ᏗᏓᏅᏙ ᏄᎾᏍᏛ ᏧᎪᎵᏰᏗᏱ; ᏅᏩᏓᎴᏃ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏧᏬᏂᎯᏍᏗᏱ; ᏅᏩᏓᎴᏃ ᏧᏁᏢᏙᏗᏱ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ; ᎠᏎᏃ ᎨᏍᏗ ᎤᏬᏨᏗ ᏱᎾᏛᏁᎮ - ᎧᏂᎩᏓ ᎠᏁᏙᎲ, ᎧᏂᎩᏓ ᎪᎱᏍᏗ ᎠᎩᎸᏗᏍᎬ, ᎧᏂᎩᏓ ᎤᎾᏓᏬᏍᏗ. ᎰᎻ, ᎠᎳᏂ ᏃᎴ ᎡᎳᏆᏗ ᏭᏂᏴᎴᎢ ᏫᎵᎻ ᎤᏴᏍᏗ. ᎠᏌᎻᏓ ᏓᏘᎭᏁᎲ ᎠᎾᎢᏒ, ᏰᎵᏉ ᎠᏆᏣᏅᏓᏕᎲ ᏑᏒᎯᏓ ᎣᎦᎵᎪᏗ ᏪᎵᏏ ᏚᎾᏌᎥ ᎠᏂᎨᏯ, ᎤᎩᏨᏓ ᏫᏗᎦᏨᏙᏗ. ᎤᏍᏗᎩᏛᏉᏰᏃ ᎡᏍᎦ ᏂᏴᏁᎸ ᏂᎩᏴᏁᎸ ᏗᏂᎧᎿᏩᏗᏙᎯ; ᏗᎬᏩᎸᏌᏓ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎯᏍᏚᎶᏔᏅ, ᎠᎴ ᎤᎬᏫᏳᏌᏕᎩ ᏂᏴᏁᎸ ᎪᎱᏍᏗ ᏦᏢᏅᏅᎯ ᎨᏒᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᏁᏤᎴ ᏈᎵᎩ, ᎯᎠ ᏄᏪᏎᎢ; ᏔᎴᎲᎦ ᏧᎦᎾᏮ ᎢᏗᏢ ᏫᎶᎯ ᏂᎦᏅᏅᎢ ᏥᎷᏏᎵᎻ ᎨᏏᏃ, ᎾᎿ ᎢᎾᎨ ᏥᎩ. ᏌᏉ [ᎡᎭ] ᎠᏰᎸᎢ, ᎠᎴ ᏌᏉ ᎠᏓᏅᏙ, ᎾᏍᎩᏯ ᏌᏉ ᎤᏚᎩ ᎢᏨᏗᏱ ᎡᏥᏯᏅᏛ ᏥᎩ, ᎾᏍᎩ ᎡᏥᏯᏅᎲ ᏨᏗᏓᎴᎲᏍᎦ; ᎠᏂᏲᎯᏍᏗᏍᎪ ᏓᎾᏙᎴᏆᏍᎬ ᏗᏂᏲᏟ ᎤᎾᏣᏅᏓᏕᎮ ᏧᎾᏁᎶᏗ ᏃᎴ ᎤᎾᏧ Ꮧ ᎨᏴᎢ. ᎰᏩᏃ ᎪᎯᏗᏳ ᎤᎦᏘᏛ ᎠᏥᏁᎴ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ. ᎥᏝ ᎩᎶ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ ᎦᏁᎸ ᏴᎬᏴᎭ, ᎠᎴ ᏴᎬᏬᏅ ᎤᎿᎥᎢ, ᎬᏂ ᎢᎬᏱ ᏳᎸᎸ ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ; ᎩᎳ ᎿᏉ ᏯᏬᏅ ᎦᏁᎸ ᎤᎿᎥᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏔᏲᏎᎭ ᎡᏥᏍᏓᏱᏕᏗᏱ ᎡᏥᎨᏳᎢᏳ ᎨᏒᎢ. “ᏐᏉ “ᎤᏣᏓ ᎣᏍᏓ’ ᏱᎩ,” ᎤᏛᏁ ᏌᎳᏓ. ᏓᏏᎳᏛ ᎠᏰᎵ ᏭᎷᏤ, ᎭᎾ ᎤᎴᏅᎮ ᏓᎦᎵᏍᎬ ᎢᎦᏓ ᏓᏏᎳᏛ. ᏗᏂᏲᎵᏉ ᎾᏍᎩᏯ ᎦᏃᏙᏗᏱ ᏣᏂᏃᎢ, ᎠᎴ ᏥᏫᏓᎾᏓᏯᏂᏍᎪᎢ, ᎯᎠ ᏥᏫᎾᏂᏪᏍᎪᎢ; ᎠᏤᎷᎩ ᎣᎬᏔᏅ ᏕᏨᏃᎩᎡᎸ, ᎠᏎᏃ ᎥᏝ ᏱᏣᎵᏍᎩᏎᎢ; ᏙᏥᏴᎬ ᎢᏣᏛᎪᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏗᏣᏠᏱᎴᎢ. ᎢᎦ ᏒᎮᏱᏣ ᎢᎪᎯᏓ ᎤᏍᏔᏩᏛᏎ ᎤᎶᏒ ᏲᎾ, ᏯᎴᏫᏍᏘᏍᎬᎾ ᎧᎾᎷᏍᎬ. ᎤᏂᏣᏓ ᎤᏐᏱ ᏄᎾᎵᏍᏔᏁᎴ. ”ᎤᏙᎯᏳᎯ ᎤᏛᏁ ᏣᏄᏏ. ᎾᏍᎩᏰᏃ ᏂᎦᎥᎩ ᎤᏁᎳᏅᎯ ᎤᎨᏳᏒᎩ ᎡᎶᎯ, ᏕᏅᏲᏒᎩ ᎤᏤᎵᎦ ᎤᏪᏥ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ, ᎩᎶ ᎾᏍᎩ ᏱᎪᎯᏳᎲᏍᎦ ᎤᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᎬᏂᏛᏉᏍᎩᏂ ᎤᏩᏛᏗ. ᎠᏎᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᏚᏲᏍᏙᏓᏁᎸᎩ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎤᏚᎵᏍᎬ ᎤᏍᏕᎸᏗᏱ ᏉᎳ, ᎠᎴ ᏚᏁᏤᎸᎩ ᏰᎵ ᎬᏩᎾᏴᎢᏅᏍᏗ ᎨᏒ, ᎢᎬᏱ ᎤᎾᎵᏔᏗᏅᏗᏱ ᎠᎴ ᏭᎾᏚᎩᏍᏗᏱ, ᎾᏍᏛᎲᏃ ᎤᎾᏟᎶᎥ ᎤᎾᏙᎴᎰᏒᎩ ᏔᎳᏍᎪᎯ ᎢᎪᎷᏅᏗ ᎨᏒᎢ; ᎤᏍᏗᎩᏛᏃ ᎤᏗᏢᏍᏙᏗ ᎢᎤᏁᏅ ᏔᎵᏁ ᎤᎾᏟᎶᎥᎩ, ᎤᎾᏙᎴᎰᏒᎩ ᎯᏍᎩᎦᏚᏉ ᎢᎪᎷᏅᏗ ᎨᏒᎢ. ᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ; ᎠᎴ ᎾᏍᏉ Ꭿ; ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ. ᎾᏍᎩ ᏓᏓᏂᏌᎲᏉ ᎡᎮᎢ; ᎥᏝ ᎠᎴ ᎾᏍᏉ ᏧᏓᏕᏒᏛ ᎬᏗ ᎩᎶ ᎬᏩᎸᏍᏗ ᏱᎨᏎᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᎩᎶ ᎠᏂ ᏥᏓᏂᏙᎦ, ᎥᏝ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᏍᎦᏯ, ᎦᏙᎴᎣᏍᎦ ᎯᎠ ᎾᏍᎩ ᏥᏳ ᏥᏗᏂ ᎪᎱᏍᏗ ᏗᎦᎵᏍᏓᏁᎵᏒᎢ,ᎠᎴ ᎤᏣᏛ ᏗᎩᏲᎱᏎᎵᏒᎢ, ᎥᏝ ᎠᎵᏁᏌᎸᏉ ᎠᎴ ᏥᏳ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᏕᏛᏅᎢ. ᎠᏎᏃ ᎨᏍᏗ ᏂᎦᏓ ᏱᎪᎵᎦ, ᏃᎴ ᎨᏍᏗ ᏱᏓᏆᏓᏅᏖᏔᏂ. ᏝᏍᎪᏃ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᏱᏂᏙᎬᏛᏂᏏ ᎤᏩᏒ ᏧᏤᎵ ᎨᎦᏑᏴᏛ, ᎾᏍᎩ ᏗᎬᏩᎩᏨᏗ ᏥᎬᏩᏓᏙᎵᏍᏓᏁᎭ, ᎾᏍᏉ ᎪᎯᏗᏳ ᏱᏓᏙᎯᏕᎭ? ᎾᏍᎩ Ꮎ ᏄᏁᎸᎾ ᎡᎯ ᎤᏲᎱᏒᎯ ᎨᏐ ᎠᏏᏉ ᎠᎴᏂᏙᎲᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎤᏰᎸᏛ ᏗᎪᎵᏍᏙᏗ ᏔᎵ ᏚᏛᏗᏕᎨᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ; ᎠᏴ ᏓᏆᏙᎥ ᎠᏅᏗᏍᎨᏍᏗ ᎠᏂᏍᎩᎾ ᏓᏂᏄᎪᏫᏍᎨᏍᏗ; ᏅᏩᎾᏓᎴ ᏧᏂᏬᏂᎯᏍᏗ ᏓᏂᏬᏂᏍᎨᏍᏗ; ᎨᏍᏗ ᏳᎾᏁᎸᏔᏅ ᎡᏝᏪᎯ ᎤᎾᏓᏅᏏᏓᏍᏗ, ᎠᏂᎾᏁᏍᎬ ᎠᏂᏍᎦᏯ ᎠᎾᏓᏏᏂᏒ ᎦᏙ ᎦᎳᎨᏴ ᏃᎴ ᏚᏑᎬ ᏧᏩᏂᎦᏝᏅ ᏓᏂᏍᏆᎵᏍᏗᏍᎬ ᎢᎬᎾᏕᏅ ᏛᏓᎴᎲᏍᎬ. ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ ᎾᏍᎩ ᎩᎶ ᎢᏥᎶᏄᎮᏍᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᎤᏬᏚᎯ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎬᏗ. ᎠᏴ ᎡᏙᏓ ᏕᎤᏙᎥ ᎠᎩᎷᎯᏍᏔᏅ, ᎥᏝᏃ ᏱᏗᏍᎩᏯᏓᏂᎸᎦ. ᎢᏳᏃ ᏅᏩᏓᎴ ᎤᏩᏒ ᏕᏅᏙᎥ ᏳᎷᎯᏍᏔᏅ, ᎾᏍᎩ ᎠᏎ ᏱᏕᏣᏓᏂᎸᎩ. ᎾᏍᎩᏃ ᏠᎠᏏ ᏥᏳᎯ ᎣᎦᏣᏅ ᏧᏳᎪᏗ ᏬᎩᏅᏍᏔᏅᎩ, ᏎᎹᏞᏏ ᏬᎩᏃᎸᎩ; ᎤᎩᏨᏛᏃ ᏂᎠᏆᎵᏏ ᏬᎩᏃᎸᎩ. ᎦᏨ ᏫᏗᎦᏘ? ᎤᏛᏅ ᏣᎵ. ᏍᎩᎾᎾ ᏃᎴ ᏦᎢ ᎢᏯᏂ ᎠᏂᏫᎾᎨ ᎠᏂᏍᎦᏯ ᎤᎾᏗᎨᎴᏴ, ᏥᏳᎬᏘ ᎦᏚᏏ ᏭᎶᏒ ᏣᎵ. ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎩᎵᏲᎢᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎢᎬᏱ ᎤᏲᎱᏒ ᏧᎴᎯᏐᏗᏱ, ᎠᎴ ᎢᎦᎦᏘ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎯᎠ ᏴᏫ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ. ᎨᏍᏗ ᎠᏉᏚ ᏱᎩ ᏓᏆᏂᎦᏢ ᎨᏍᏗ ᏧᏟᏂᎩᏓ ᏱᎩ. ᏥᏌᏍᎩᏂ ᎤᎪᎲ ᎤᏣᏘ ᏒᏍᎦ ᎤᏰᎸᏁᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏁᎳᎩ ᏕᏤᎵᏎᎮᏍᏗ ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎬᎩᎷᏤᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏅᏍᏓᏕᎮᏍᏗ; ᎾᏍᎩᏰᏃ ᏄᎾᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ, ᎠᏴ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏥᎩ, ᎥᏝ ᎯᎠᏉ ᏱᏂᎨᏕᎵᎭ; ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯᏉ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᏅᏯ, ᏴᏫ ᎠᏂᏏᎾᏌᏅ ᎠᎴ ᎤᎾᏓᏅᏖᎸᎯ ᎬᏔᏅᎯ ᎪᏢᏅᎯ. ᎥᏣ ᎢᏧᎳᎭ, ᎤᏛᏅ ᏁᏂᏏ. ᎯᎠᏃ ᎤᏲ ᏄᎵᏍᏔᏅ ᎤᏓᏅᎵᏰᎥ ᎦᏙ ᎠᎬᏱᏣ, ᏅᏩᏍᏛᏃ ᏐᏉ ᎠᏍᎦᏯ, ᎶᏩᏂ ᏱᏓᏓ, ᎦᎸᎳᏗ ᏍᏔᏯ ᎤᏩᎭᏂᎴ Perry ᎦᎷᏯᏍᏘ ᎬᏘ, ᎤᏍᎫᏓᏁᎦᎸ ᏕᎦᏅᏙᎬ ᏩᏍᏘ. ᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᏑᎾᎴᎢ ᎤᎾᏗᏓᎾᎩᏍᏗ ᎤᏁᎵᏎ, ᎤᎾᎦᏙᏍᏙᏗ ᏫᎵᎻ ᎠᏂᎩᏍᎬ. ᎢᏳᏍᎩᏂ ᏂᏗᎨᏥᏁᎲᎾ ᏱᎩ ᏴᏫ ᎨᏥᏍᎦᏅᏤᎲᎢ, ᎾᏍᏉ ᎢᏥᏙᏓ ᎥᏝ ᏱᏙᎨᏥᎲᏏ ᎢᏥᏍᎦᏅᏨᎢ. ᎤᏲ ᏅᏋᏁᎵᏙᎸᎢ, ᎠᎩᎩᎵᏲᏥᏙᎸᎢ ᎥᏘᎣᎩ, ᎢᎪᏂᏯ, ᎵᏍᏗ--ᏂᎦᎥ ᎤᏲ ᏅᏋᏁᎵᏙᎸᎢ; ᎠᏎᏃ ᎾᏍᎩ ᏂᎦᏛ ᎾᎿ ᎤᎬᏫᏳᎯ ᎠᏯᏓᎴᏒᎩ. ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ ᎠᎾᏕᏯᎵᏙᎮ ᎤᏂᏥ. ᎠᎵᏍᎦᏁᏍᏗ ᏄᏍᏛ ᏄᏪᏒ ᎠᏂᏴᏫ ᏧᎦᏎᏍᏗᏕᎩ, ᎣᏍᏓ ᎨᏒ ᎠᎵᏍᏔᏴᏗ, ᎠᏎᏃ ᎤᏒᎯ ᎠᎵᏍᏔᏴᏗ, ᎣᏍᏓ ᎠᏣᏗ ᎤᎦᎹ, ᏓᎶᏂᎨ ᎪᏒᏅ ᏃᎴ ᎤᏅᏗ ᎤᏓᏑᏱ ᏃᎴ ᏧᏂᏍᏗ ᎦᎦᎹ ᏧᏂᎾᏦᏴᏍᏗ, ᎤᏁᎦ ᎠᏖᎵᏙ ᏧᎾᏦᏴᏍᏗ ᎤᏓᏅᎵᏰᏛ. ᎾᎥᏃ ᎠᏁᏙᎯ ᎤᎾᏙᎴᎰᏒ ᏄᏍᏛ ᏫᎬᏩᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎠᏰᎳᏍᏗᏍᎪ-ᎦᏅᎯᏛ ᏙᏓᏲᏥᎷᏯᏍᏔᏂ? ᎯᏁᏉᎥ ᏂᏣᏓᎨᏒᎢ ᏃᎴ ᏙᎯᏉ ᎨᏎᏍᏗ---ᏍᎩᎾᎾ ᏱᏂᏣᏛᏁᎳ ᏱᏍᎩᏍᏕᎳ. ᏗᎩᎦᎨ ᎨᏎ ᏗᎦᏙᎵ ᎤᏦᏱᎸ. ᎾᏍᎩᏰᏃ ᎠᏅᏗᏍᎬ ᎡᏘ ᎤᎾᏕᏅᎯ ᎣᏍᏛ ᎨᏥᏃᎮᏗᏱ ᎤᏂᏩᏛᎲᎩ. ᎢᎦ ᏒᎮᏱᏣ ᎣᏍᏓ ᎤᏰᎸᎮ ᏧᏮᏗ ᏌᎳᏓ, ᏃᎴ ᎣᏍᏓ ᎤᏰᎸᎰ ᎾᎥ ᎤᏩᏗ ᏲᎾ ᎤᏤᏍᏙ ᎤᎧᏙᏍᏙᏗ. ᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏄᏩᎥ ᏚᏪᏣᎦᎸᎮᎢ; ᎠᏐᏢᎢᏍᏓ, ᎤᏛᏁᎢ; ᎦᏙᏃ ᎠᏏ ᎠᏂᎦᏔᎯ ᏯᏂᏃᎮᎭ? ᎬᏂᏳᏉ ᎿᏉ ᎢᏣᏛᎬᎦ ᎠᏐᏢᎢᏍᏗᏍᎬᎢ. ᎥᏝᏰᏃ ᏂᎯ ᏱᏥᏁᎪᎢ, ᎢᏥᏙᏓᏍᎩᏂ ᎤᏓᏅᏙ ᎧᏁᎪᎢ ᏂᎯ ᎢᏨᏗᏍᎪᎢ. ᎠᎴ ᏔᎵᏁᎢ, ᎾᏍᎩ ᏓᏥᏯᎵᏍᎦᏍᏙᏔᏂ. ᎠᎴᏬ, ᎬᏂᏳᏉ ᎠᏴ ᎠᎴ ᎾᏍᎩ Ꮎ ᏗᏂᏲᎵ ᎤᏁᎳᏅᎯ ᏗᎩᎧᏁᎸᎯ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏏ; ᎠᏎ ᎨᏥᏍᎦᏂᏉ ᎨᏒ ᏙᏓᏥᏲᎱᏏ; ᎢᏳᏰᏃ ᏂᏦᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ, ᎠᏎ ᎨᏥᏍᎦᏂ ᎨᏒ ᏙᏓᏥᏲᎱᏏ. ᎠᏏᏉᏃ ᏈᏓ ᎯᎠ ᎾᏍᎩ ᏂᎦᏪᏍᎨᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎡᎳᏗ ᏄᏛᏁᎴ ᎤᏂᎷᏤᎴ ᏂᎦᏛ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ. ᎯᏍᎩᏃ ᎦᏚ ᏚᎩᏎᎢ, ᎠᎴ ᏔᎵ ᎠᏣᏗ ᏚᏁᏎᎢ; ᎦᎸᎳᏗᏃ ᏫᏚᎧᎿᏅ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᏚᏁᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏧᏂᏁᏗᏱ ᎤᏂᏣᏘ. ᎾᏍᎩ ᎡᎻᏂᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᎵᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᏏᎳᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏇᎵᏏ ᎤᏪᏥᎨᏎᎢ, ᎾᏍᎩ ᏧᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎠᎩᎦᏘᏛ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏦᏢᎯᏏᏍᎪᏰᏃ ᏕᎦᏂᏌᎲ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᏕᏦᏚᎢᏍᏗᏍᎪ ᏓᏤᎵᏍᏛ ᎤᎾᏓᏁᏘ; ᎤᏣᎴᏓ ᎤᏩᏓᏍᎬ ᏗᏂᎭᏲᎯ, ᏧᏓᎴᏅᏓ ᎢᏣ ᏓᎾᏓᎴᎬ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙ ᎦᏛᎦ ᏂᎪᎯᎸᎾᏉ ᏣᏗᎭ? ᎥᏝ ᏲᏦᎵᎦ ᏄᏍᏛ ᎦᏛᎬᎢ. ᎦᏓᏅᏛᎳ ᏗᎾᏓᎪᎾᏗᏍᎬ ᎦᏘᏅᏍᏗ ᏚᎵᎢᏍᏗ ᏑᏓᎵᏁᎢ. ᎠᎴ ᎤᏚᎩ ᎢᏨᏴᏒ ᎤᎵᏂᎩᏗᏳ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏦᏥᎦᏔᎭ, ᎾᏍᎩ Ꭲ-ᏣᏠᏯᏍᏗᏍᎬ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏣᏠᏯᏍᏙᏗ ᎨᏎᏍᏗ ᎤᎦᎵᏍᏗ ᎨᏒᎢ. ᎾᎿᏂ ᎾᏍᏉ ᏂᎯ ᏤᏣᏜᏍᏔᏅᎯ ᎡᏣᏁᏍᎨᎲᎯ ᎡᏥᏝᏅᎯ, ᎤᏁᎳᏅᎯ ᎤᏁᎳᏗᏍᏗᏱ ᎡᏓᏅᏙ ᎬᏗᏍᎬᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎣᏏᏳ, ᎰᏍᏛ ᎡᏣᏅᏏᏓᏍᏗ; ᎤᏍᏗ ᎨᏒ ᎣᏏᏳ ᏂᏣᏛᏁᎸ; ᏣᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ ᎠᏍᎪᎯ ᏕᎦᏚᎲᎢ. ᎠᎬᏱ ᎦᏂᎩᎸ ᏃᎴ ᏚᎾᏌᎥᎢ ᏃᎴ ᎤᏫᏌᏅ ᏃᎴ ᎾᎥᏂ ᎠᏁᎯ, ᏃᏉ ᏏᏓᏁᎸᎯ. ”ᎨᏍᏗ ᏗᎦᏣᏏᎳᏛᏗ ᏱᎩ, ᏫᎵᎻ, ᏃᎴ ᏂᎬᏪᏎᎭ, ᏫᏨᎨᏩᏉ ᏗᏣᏏᎳᏛᏗ. ᎢᏧᎳ ᎠᏂᏍᎦᏯ ᎡᏝᏪᎯ ᎤᏁᏅᏎ ᏫᎵᎻ ᎤᏴᏍᏗ. ᎢᏧᎳ ᎤᏂᏃᏪᎢ. ᎦᏲᏟᏉ ᏚᏅᏯ ᎦᎶᏇ ᏃᎴ ᏗᏲᏍᏙᏗ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏏᏍᎪ ᎾᏍᏉ ᏂᎯ ᏂᏦᎵᎬᎾᏉ ᎢᎩ? ᎤᏍᏗ ᎪᏛ ᎾᎥᏂ ᎣᏥᏅᎬ ᎠᏯ ᏃᎴ ᏦᎢ ᎢᏯᏂ ᎠᏂᏧᏣ, ᎾᎥᏉ ᏩᏍᏗ ᎠᏨᏍᏛ. ᏥᏌᏃ ᎤᎵᏩᏲᎢ ᎣᏓᎸ ᏬᎶᏒᎩ. ᎤᎩᏨᏛᏃ ᏧᎾᎩᎸᏗ ᎤᎾᏘᏅᏍᏗ ᏄᏅᏁᎸ, ᎠᏂᏯᏫᏍᎩ ᎤᎾᏨᏒᎩ, ᏗᏐᏴ ᏭᏂᎶᏒᎩ. ᏫᏕᏓᎦᏂᏍᎨᏍᏗ ᏥᏌ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᎠᏍᏆᏗᏍᎩ ᏥᎩ ᎢᎪᎯᏳᏒᎢ. ᎾᏍᎩ ᎤᎵᎮᎵᏍᏗ ᎨᏒ ᎢᎬᏱᏗᏢ ᎾᎬᏁᎸ ᎢᏳᏍᏗ ᎬᏂᏗᏳ ᏓᏓᎿᏩᏍᏛ ᎤᎩᎵᏲᏤᎢ, ᎤᎵᏌᎵᏉ ᎤᏰᎸᏎ ᎤᏕᎰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏘᏏᏗᏢ ᎤᏪᏅ ᎤᏁᎳᏅᎯ ᎤᏪᏍᎩᎸᎢ. ᏑᏓᎴᎩᏉ ᏍᎩᏂ ᎤᏚᎸᏗ; ᎠᎴ ᎺᎵ ᎤᏑᏰᏒ ᎾᏍᎩ ᎣᏌᏂ ᎨᏒᎢ, ᎾᏍᎩ ᎦᏰ-ᏥᎩᎡᏗ ᏂᎨᏒᎾ ᏥᎩ. “ᎯᎪ ᎢᎦ ᏒᎮᏱᏣ, ᏱᏓᎩᏯᏪᎬᎾ ᎨᏎᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᏄᎾᏓᎴᏒᏰᏃ ᎢᎾᎨ ᎠᏁᎯ ᎠᎴ ᎠᏂᏃᎯᎵᏙᎯ ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎠᎴ ᎠᎺᏉᎯ ᎠᏁᎯ, ᏗᏓᏅᏘᏐᏙᏗ ᎠᎴ ᏧᏓᏅᏘᏐᏔᏅᎯ ᏴᏫ. ᏔᎵ ᏧᏙᏓᏆᏓ ᎣᎭᏁ ᏩᏯᎯ, ᎦᏚᎲ ᎦᎵᏦᏕ ᏙᎩᏃᏢ ᏲᎾ. ᎦᏙᎨᏃ ᎤᏍᏛ ᎤᏟ ᏄᏛᏅ ᎠᏧᏏ? ᎠᎴ ᎦᏙ ᎤᏍᏛ ᎬᏩᏓᏍᏕᎸᏗ ᎠᎱᏍᏕᏍᏗ ᎨᏒᎢ? ᎢᏳᏃ ᎰᏩ ᏱᏙᎦᏄᏩᎥ, ᎥᏝ ᏦᎩᏰᎸᎭ ᏱᎦᎨᏎᏍᏗ. ᎠᎵᏰᎾ ᏩᏎᎯ ᎠᏗᏅᏓ ᎦᎳᎨᏴ ᎤᏃᎯ ᎾᎥᏂ. ᏈᏓᏃ ᎯᎠ ᏂᏅᏪᏎᎴᎢ; ᏍᎩᏃᎲᏏ, ᏥᏌ ᎾᏍᎩᏉ ᎢᎦᎢ ᏕᏍᏓᎬᏩᎳᏁᎴ ᎾᏍᎩ ᎦᏙᎯ? ᎯᎠᏃ ᏄᏪᏎᎢ; ᎥᎥ, ᎾᏍᎩᏉ ᎢᎦᎢ. “ᏕᏓᏓᎪᎲᏳ! ᏧᎾᏛᏁᎢ. ᏰᎵᏉᏍᎪ ᎣᏍᏓ ᏓᏥᏰᎸᏂ, ᎠᏎᏃ ᎤᏬᏚᎯ ᏃᎴ ᎠᏌᎹᏗ ᏥᎩ?” ᎥᏝ ᏳᏃᎵᏤ ᎠᎦᏴᎵᎨ ᎦᏛᎬ ᎾᏍᎩ ᏕᎦᏬᏁᏗᏍᎬᎢ. ᏣᎵ ᏃᎴ ᏧᏤᎵ ᏴᏫ ᏔᎵ ᏕᎨᏴ ᏓᏦᏍᎬ ᎤᏂᎵᏦᏩᏛ. “Ꭳ, ᎤᏙᎯᏳᎭᏗ ᏍᎩᎾᎾ ᏄᎵᏍᏔᏁᎢ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎠᏎᏃ ᏲᎾ ᎦᏙᎬ ᎾᎥ ᎠᏆᎴᏅ ᎠᏥᎸ ᏚᎸᏌᏛ, ᏱᎦᏁᎸᏓ, ᎦᏂᏍᏚᎩ ᏱᎨᏅ, ᏱᎦᏁᎸᏓ ᎢᏳᏍᏗ ᎢᏯᏆᏛᏁᏗ ᎨᏒ ᎢᎦᎵᏍᏕᎸᏙᏗ. ᎠᏎᏃ ᎢᏗᎦᏔᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎣᏏᏳ ᎨᏒ, ᎢᏳᏃ ᎩᎶ ᎤᏙᎯᏳᎯᏯ ᏱᏓᎧᎿᏩᏕᎦ, ᎠᏍᏔᏯ ᎾᎩᏪᏒ, ᎠᏯ ᏲᎦ ᏄᏓᎴ ᎾᏆᎵᏍᏓᏁᎰ. ᎣᏍᏓ ᎾᏛᎦ.” ᎤᏂᏁᏓᏥᏛᏃ ᏫᏙᏛᎾᏓᎡᏏ ᏗᎪᏢᏒ ᎠᏥᎸᏱ, ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ. ᎢᎦ ᏒᎮᏱᏣ ᏕᎦᎦᏎᏍᏗᏍᎬ ᎤᎾᏓᏅᎭᏂ ᏓᎾᏘᏃᎯᎲ ᏏᏓᏁᎸ ᏃᎴ ᏣᏂᎦᏴᎵ, ᏫᏓᏂᏴᏍᏗᏍᎬ ᎠᏦᎭᏴ, ᎾᏍᎩ ᎨᏥᏍᏚᏗ ᏄᎵᏍᏔᏅ. ᎠᎴ ᎬᏍᏗᏰᏗᎭ ᎾᏍᏉ ᏂᎯ ᏂᏣᏠᎾᏍᏛᎾ ᎬᎩ Ꮎ ᏖᏆᎶᎯ, ᎬᎩ ᏍᏕᎸᏗᏱ Ꮎ ᎠᏂᎨᏴ ᎬᎩᏍᏕᎸᎯᏙᎸᎯ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎦᎵᏥᏙᏂᏙᎲ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎯᏯᏠᏯᏍᏔᏅᎭ ᎾᏍᏉ ᏞᎻᎾ ᎠᎴ ᎠᏂᏐᎢ ᎤᏠᏱ ᏦᎩᎸᏫᏍᏓᏁᎯ, ᎾᏍᎩ ᏚᎾᏙᎥ ᏥᏕᎪᏪᎳ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ. ᎤᏟᏂᎩᏓ ᏏᏆ. ᏂᎯᏰᏃ ᎡᏥᏁᎸᎯ ᎦᎶᏁᏛ ᎨᏒ ᎢᏳᏍᏗ, ᎥᏝ ᎡᏦᎢᏳᏗᏱᏉ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᎡᏥᎩᎵᏤᏗᏱ; ᎠᎴ ᎢᎦᏛ ᏂᎯ ᎾᏍᎩ ᏂᏣᏍᏛᎩ; ᎠᏎᏃ ᎡᏦᏑᎴᎥᎯ, ᎠᏎᏃ ᎢᏣᏓᏅᏘ ᎢᏰᏨᏁᎸᎯ, ᎠᏎᏃ ᎡᏧᏓᎴᏛ ᎤᎬᏫᏳᎯ ᏥᏌ ᏚᏙᏍᏛᎢ, ᎠᎴ ᎬᏔᏅᎯ ᎢᎦᏁᎳᏅᎯ ᎤᏓᏅᏙ. ᏏᎻᏯᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎷᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᎵᏫ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ ᎢᏏᎦ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᎳᏅᎩ. ᏥᎪ ᏔᎵᏁ ᎣᏣᎴᏂ ᎣᎬᏒ ᎣᏣᏓᎸᏉᏗᎭ? ᏥᎪᎨ ᎠᏎ ᏫᏗᏨᏃᎮᏗ ᏃᎦᎵᏍᏓᏁᎭ, ᎪᏪᎵ ᎣᎩᎸᏉᏗᏍᎩ ᎩᎶ ᏥᏄᎾᎵᏍᏓᏁᎰᎢ, ᎠᎴ ᏂᎯ ᏗᏍᎩᏅᏁᎸᎯ ᏍᎩᎸᏉᏗᏍᎩ? “ᎤᏙᎯᏳᎦ ᎤᏗᎴᎦ?” ᎤᏛᏁ ᎠᎳᏂ. ᎬᏂᏳᏉ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎢᎩᏰᎸᏐ ᏗᏅᏂᏗᏳ ᏥᎨᏐᎢ. ᎢᏣᏛᎦᏅ ᎬᏂᏗᏳ ᎨᏒ ᏦᏈ, ᎠᎴ ᎢᏥᎪᎲ ᏄᏍᏛ ᏭᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏣᏘ ᎤᏓᏅᏘᏳ ᎨᏒ ᎠᎴ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒᎢ. ᏧᎵᏏᏅᏓ ᏙᏧᏒᎥᏍᎪ ᏗᏓᎨ ᏗᏰᎲᏍᏓᏅ Ꮓ … ᎰᏥᎦᏘᏗᏍᎪ ᏳᎦᎾᏬᏒ ᏙᏥᎦᎵᎯᏍᏗᏍᎪ. ᏂᎦᏓᏗ ᎠᎾᎥ ᎠᏙᎯ ᏰᎵᏉ ᎦᏓ ᎢᏳᎵᏍᏙᏗ. ᎯᎠ ᎾᏍᎩ ᏓᏔᎴᏒ ᎠᎹ-ᏗᏢᏗᏱ ᎠᎹ ᏂᏗᎦᏁᎲᎾ, [ᎠᎴ] ᎤᎶᎩᎸ ᎤᏃᎴ ᏧᏃᎸᏔᏂᏙᎰᎢ, ᎾᏍᎩ Ꮎ ᎬᎾᎨ ᎤᎵᏏᎬ ᏥᎨᎦᏛᏅᎢᏍᏓᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎤᏓᏅᏖᏙᏗ ᎤᏛᎴᎮ ᏫᎵᎻ, ”ᏰᎵ ᎠᎦᏓ ᎯᏌᎹᏗᏯ ᎠᏯ ᎨᏒᎢ ᏌᎳᏓ. ᎠᎬᏱ ᎠᏓᏔᎶᎯ. ᏰᎵ ᏧᏙᏓᏆᏓ ᏃᎴ ᏧᏒᎯᏓ ᏂᎬᎾᏛ ᎠᎾᏓᏏᏂᏙᎮ, ᏃᎴ ᎠᏂᏲᎵᎮ ᏫᎵᎻ, ᏓᏂᎾᏏᏂᏙᎮ ᏧᏂᏏᎳᏛᏙᏗ, ᏃᎴ ᎠᏂᎪᎵᏰᏍᎨ ᎠᏤᎯ ᎠᏂᏂᎩᎸ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏨᎨᏳᎢ, ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᏥᏥᎦᏖᏃᎭ, ᎢᏣᏟᏂᎬᏏ ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏓᏅᏛ ᎢᏥᏩᏛᏗᏱ ᏄᏓᏓᎸᎾ ᎠᎴ ᎪᎱᏍᏗ ᏁᏤᎵᏎᎲᎾ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏥᏒᏁᎰᏰᏃ ᏧᏃᏑᎶᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎢᏣᏠᎾᏍᏛ ᎪᎯᏗᏳ ᎢᏣᏓᏙᎵᏍᏗᏍᎪᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟᎯᏳ ᎢᎦᎢ ᎢᏥᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ. ᏂᎯᏍᎩᏂ ᎢᏤᎲ ᎥᏞᏍᏗ ᎾᏍᎩ ᏱᏂᏨᏁᏍᏗ; ᎩᎶᏍᎩᏂ ᎠᏥᎸᏉᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎡᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ. ᎨᏍᏗ ᏥᏚᏂᏲᏏᏍᎪᎢ ᏱᏅᏩᏍᏕᎢ. ᏃᏉ ᎮᎾ!” ᎾᏍᎩᏃ ᏭᏂᎷᏨ ᎤᎾᏓᏙᎵᏍᏔᏁ ᎨᎦᎵᏍᎪᎸᏓᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ᎦᏙᏰᏃ ᏳᏁᏉᏥ ᏴᏫ, ᎢᏳᏃ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏤᎵ ᏱᏄᎵᏍᏔᏅ, ᎤᏩᏒᏃ ᎤᏓᏅᏙ ᏳᏲᎱᏎᎸ? ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏂᏣᏓᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᏗᏂᏲᎵ ᏥᏄᎾᏍᏗ ᏂᏣᎵᏍᏔᏅᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏴᎨᏥᏴᎭ. ᎿᏉᏃ ᏌᏉ ᎢᏯᏕᏴᎵ ᏣᏥᏁᎸᎯ ᎤᎷᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᎬᎦᏔᎲᎩ, ᎯᏍᏓᏱᏳ ᎨᏒᎢ, ᎠᎴ ᎯᏍᎫᏕᏍᎬᎢ ᎾᎿ ᏂᏣᏫᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎱᏖᏍᎬᎢ ᎾᎿ ᏂᏣᎴᎳᏛᏅᎾ ᎨᏒᎢ. ᎩᎶ ᎢᏳᏍᏗ ᎡᎮ ᏧᏓᏚᎩ, ᎾᏍᎩ ᎠᏂᏔᎵ ᏧᏚᎩ ᎠᏁᎮᎢ; ᏏᏴᏫ ᎯᏍᎩᏧᏈ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᎠᏥᏚᎨᎢ, ᏐᎢᏃ ᎯᏍᎩᏍᎪᎯ. “ᎠᏯᎾ?” ᎤᏛᏛᏁ ᏦᎢᏁ ᎧᏅᏂᏍᎩ. ᎾᏍᎩᏃ ᎤᏍᎦᏅᏨᎢ ᏧᎬᏩᎳᏅᎯ ᏥᎤᏩᎯᏍᏔᏁ ᏠᎨᏏ, ᎤᏙᎠᏒᏃ ᏧᏣᎷᏘᏎᎢ, ᎠᎴ ᏂᎦᏛ ᏧᎵᎩᏏ ᏥᏚᏄᎪᏤᎢ. ᎿᏉᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎤᏂᏣᏘ ᎠᏃᎯᏳᎲᏍᎩ ᏫᏚᏂᏯᏅᎲ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᏚᏳᎪᏛ ᏱᎦᎩ ᎢᏳᏃ ᏱᏙᎩᏲᏍᎦ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᏕᎦᏍᎩᎸᏃ ᏱᏙᎩᎸᏫᏍᏓᏁᎭ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏧᏏ ᎠᏉᎳ ᏧᏙᎢᏛ, ᎡᎵᎩᏱ ᎤᏛᏒᎯ, ᎠᏏᎾᏍᏛ ᎤᏬᏂᎯᏍᏗᏱ, ᎠᎴ ᏗᎦᎸᏉᏗ ᎪᏪᎵ ᏗᏏᎾᏍᏛ, ᎡᏈᏌ ᎤᎷᏨᎩ. ᎢᏳ ᎠᎴ ᏦᏰᏂ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ; ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏣᎪᎳᏂ ᎬᏂᏛ ᏗᎨᏒ ᏱᏫᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏗᎨᎰᏯᏗ ᏨᏍᎩᏃ ᏱᏫᏣᏴᎸ, ᎾᎿ ᎠᏥᎸᏱ ᎦᎬᏜᏗᏍᏗ ᏂᎨᏒᎾ; ᎠᎴ ᎦᎪ ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ ᏚᏂᏆᏘᎴᎢ? ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎤᏂᏍᎦᏅᏨᎯ ᏥᎨᏎᎢ, ᎾᏍᎩ Ꮎ ᏗᏂᏰᎸ ᎢᎾᎨ ᏥᏚᏅᏤᎢ? ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎯᎠ ᏄᏜᏏᏛᎡᏗ ᏂᎨᏒᎾ ᏥᎩ, ᏙᎯᏱᏉᏍᎩᏂ ᏱᏂᏣᏛᏅ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏁᎳᎩ ᏂᏣᏛᏁᎸᎾ ᏱᎩ. ᏱᏚᎴᏅᎾ ᎤᎦᏔᎲᏒ ᏁᏂᏏ ᎤᎦᏆᎸᏂᎸ ᎤᎧᏛᎢ ᏍᏔᏯ ᎤᎵᏗᏨ ᎤᏬᏢ ᏔᎵ ᎢᏳᏩᎬᏗ, ᎤᏬᏰᏂ ᎣᎭᏁ ᎢᏣ ᎠᎬᏱ ᏃᎴ ᏔᎵᏁᎢ ᎠᎬᏱᏣ ᎤᏬᏯᏂ. ᎠᎴ ᎾᏍᎩᏯ ᎢᏌᏯ ᎦᏳᎳ ᎯᎠ ᏥᏄᏪᏐᎢ, ᎢᏳᏃ ᏱᎰᏩ ᎤᏂᏣᏘ ᏧᏓᏘᎾᎢ ᏂᎩᏃᎯᏰᎸᎾ ᏱᎨᏎ ᎤᎵᏃᎯᏴᎯ, ᎾᏍᎩᏯ ᏱᏂᎦᏍᏕᎢ. ᎾᎦᎸᎳᏗᏴ ᎤᏓᎾᏫᏛᎮ ᏫᎵᎻ. ᏩᏯᎯ, ᏥᏃᎯᏎᎸ ᏲᎾ ᏂᎦᏓ ᏄᎵᏍᏔᏂᏙᎸ ᏧᎶᏒᎢ. ᎠᏎᏃ ᏅᏙ ᏧᎧᎸᏨ ᎤᎴᏴᏎᎢ, ᏂᏚᎿᏍᏕᏢᎾᏃ ᎨᏒ ᎢᏳᏍᏗᎤᎿᏍᎬᏤᏉ. ᎾᏃ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ, ᎤᏇᏓᎵ ᎤᏕᏔᏁᎢ; ᎾᏍᎩᏯ ᎾᏥᎾᏝᎥᎾ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏚᎢᏍᏛ ᎾᏍᎩᏯ ᎤᏕᏁᎢ. ᏥᏌᏃ ᏚᏁᏤᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏣᏓᏅᏖᏍᎬᏍᎪ ᎯᎠ ᎾᏍᎩ ᎨᎵᎵ ᎠᏁᎯ ᏧᏂᎪᎾᏛᏔᏅᎯ ᎨᏎ ᎠᏂᏍᎦᎾᎯᏳ ᎨᏒ ᏂᎦᏛ ᎨᎵᎵ ᎠᏁᎯ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏥᏄᎾᎵᏍᏓᏁᎴᎢ? ᎥᏝᏃ ᏱᏗᎬᏩᏓᏂᎸᏤᎢ, ᎤᏗᎦᎵᏍᏙᏗᏍᎨ ᏥᎷᏏᎵᎻ ᏥᏩᎦᏙ ᏅᏩᏍᏕᎢ. ᎯᎠ ᏄᏪᏒᎩ; ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᎼᏏ ᎤᏪᏍᎩᎸ ᎠᏂᎾ; ᎿᏉᏃ ᏆᏂᏆ ᏓᏌ ᏭᎶᏎ ᎤᏲᎸᏎ ᏐᎳ; ”ᎤᎵᏬᏥᏕᎾ, ᏍᎩᎾᎾ ᏩᎶᏏ.” ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎢᏥᏔᏲᎯᏍᏗ ᎪᎳ ᎢᏣᎵᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᏐᏉ ᎠᎩᎬ, ᎣᏏᏉᏗ ᏥᏲᏎᎸ. ᏃᎴ Philadelphia ᏓᏳᎶᏒ ᎠᏧᏣ ᏛᎤᏁᏨ South Street ᏳᏫᎦᎢᏎ ᎣᏍᏓ ᏯᎩᏰᎸ. ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏚᏙᎥ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᏓᎶᏁᏛ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎯ ᎢᏨᏂᏌᏛ, ᎠᎴ ᏂᎯ ᎦᎸᏉᏗᏳ ᎢᏰᏨᏁᏗᏱ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏁᎳᏅᎯ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᏈᏥᏱᏃ ᎠᎴ ᏆᎢᏈᎵᏱ ᎢᏕᎯ, ᎢᏥᏈᏃ ᎠᎴ ᎵᏈᏱ ᏌᎵᏂ ᎤᏚᏫᏛ ᎢᏕᎯ, ᎢᎦᏙᎯᏃ ᎶᎻ ᎢᏕᎯ, ᎢᏗᏧᏏ ᎠᎴ ᎠᏂᏧᏏ ᏗᏓᎵᎪᏁᎸᎯ, ᏲᎾ ᎢᏳᏍᏘ ᎡᎳᏗ ᎢᎦᏘ ᏣᎵ, ᎤᏟᏂᎩᏛ ᎦᏆᎵ ᏃᎴ ᏗᎦᎦᎶ, ᏧᏍᏆᎳ ᏗᎦᏅᏍᎨᏂ, ᎣᏍᏓ ᎤᎾᎷᎯᏍᏗ. ᏧᏂᏍᏗ ᏓᎾᏦᎭᏱᎲ, ᏧᏂᏥ ᏓᏂᏖᎸᎮᏍᎬ ᏓᏂᏂᏒ, ᏗᏂᏅᏗ ᏫᏚᏂᎾᏓᏢ, ᎦᏳᎳ ᏧᏲᎯᏍᏔᏅ ᎤᏅᏗ ᎠᏓᏁᎮᏍᎬ. ᎢᏳᏃ ᏱᏗᏃᎲᏍᎦ ᎢᎩᏍᎦᏅᏨᎢ, ᏄᏓᎵᏓᏍᏛᎾ ᎠᎴ ᎤᏓᏅᏘᏳ, ᎾᏍᎩ ᎢᎩᏁᏗᏱ ᎢᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎢᎩᏅᎦᎸᏗᏱ ᏂᎦᎥ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏗ ᎨᏒᎢ. ᎨᏍᏗ ᎦᏚᎢ ᎾᎥᏂ ᏳᏓᏬᎠ. ᎦᏣᏃᏍᏔ ᎦᏍᎩᎶᎩ ᎤᏬᏢ ᎦᎷᏯᏍᏗ ᎦᏟᎲ, ᎠᏳᎨᏂ ᎦᏁᏥ ᏩᏌᎲ. ᎾᏍᏉᏰᏃ ᏱᎦᎵᏥᏙᎲᏍᎦ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎥᏝ ᎪᎱᏍᏗ ᏯᎩᎭ ᎠᏆᏢᏈᏍᏙᏗ. ᎠᏎᏰᏃ ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗ ᏅᏋᏁᎸ; ᎥᎥ, ᎤᏲ ᎢᏯᏆᎵᏍᏓᏁᏗ, ᎢᏳᏃ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᎦᎵᏥᏙᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ. ᎤᏂᎪᎲᎯᏃ ᎾᏍᏉ ᏚᏂᏃᏁᎴ ᏄᎵᏍᏙᏔᏅ ᎠᏂᏍᎩᎾ ᎬᏩᏯᎢ ᎠᏥᏅᏩᏅᎢ. ᎤᏇᏓᎸ ᎬᏗᏍᎬ ᎤᏛᏔᏅ ᏗᏓᏓᏍᎦᎩ ᎢᎬᏁᎯ, ᎾᏍᎩ ᏯᏛᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎵᏁᏨᎢ ᏧᏓᎴᏅᏛ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏂᏔᎵ ᎨᏒ ᏌᏉ ᎢᏤ ᏴᏫ ᎤᏬᏢᏗᏱ ᎤᏩᏒ ᎢᏳᏩᏂᏐᏗᏱ, ᎾᏍᎩᏃ ᏙᎯ ᎢᏳᏩᏁᏗᏱ; ᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏓᏅᏘ ᏱᏂᏍᎩᏪᏎᎰ, ᎠᏎ ᎤᏲ ᏂᏍᎩᏪᏎᎰ ᏃᎴ ᏍᎩᏯᏕᎰᏗᏍᎪ. ᏧᎾᏛᎾ ᎤᏍᎦᏃᎵ ᏭᎾᎩᎸᏁ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᎤᏛᎦᏁ ᏫᎵᎻ ᎤᏅᏫᏍᏗᏍᎩ ᎤᏃᏴᎬ ᏃᎴ ᎤᏛᎦᏁ ᎠᏂᎩᏍᎬ ᎤᏍᎦᏃᎵ. ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏚᎴᏔᏁ ᎤᏲᏞᏒᎢ. ᎩᎶ ᏥᎦᏔᎭ ᎠᏗᏍᎩ, ᎠᏎᏃ ᏂᏚᏍᏆᏂᎪᏛᎾ ᏱᎩ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎦᏰᎪᎩ ᎠᎴ ᎤᏙᎯᏳᎯ ᎨᏒ ᏄᏪᎲᎾ. ᎠᏌᎻᏓ ᎤᏚᎸᎲ ᏁᎳᎩᏉ ᎤᏬᏎᏗ. ᎾᏍᎩ Ꮎ ᎠᎩᏍᎦᎩ ᎠᏴ, ᎾᏍᏉ ᎠᏍᎦᏱᏳ ᎨᏐ ᎡᏙᏓ. ᏥᏳᏃ ᏔᎵ ᏚᎪᎮ ᎥᏓᎷᎶᏗ ᏓᏔᎴᎢ; ᎠᏂᎦᏯᎷᎥᏍᎩᏍᎩᏂ ᎤᎾᏣᎢᏛ ᎨᏎᎢ, ᎠᎴ ᏓᏅᎩᎶᏍᎨ ᎫᏂᎦᏯᎷᏗ. ᎼᏏᏰᏃ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏚᎾᏄᎪᏫᏎᎸ ᏴᏫ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ, ᏩᎦ ᎠᏂᎩᎾ ᎤᏂᎩᎬ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᎩᎬ ᎤᏁᎩᏎᎢ, ᎠᎴ ᎠᎹ ᎠᎴ ᎤᏩᏅ ᎩᎦᎨᎢ, ᎠᎴ ᏗᏐᏈ, ᏚᏍᏚᏞᏃ ᎪᏪᎵ ᎠᎴ ᎾᏂᎥ ᏴᏫ. ᎠᏓᏅᏙᏍᎩᏂ ᎠᏓᏛᏂᏗᏍᎩ; ᎤᏇᏓᎵ ᎥᏝ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ. ᎧᏃᎮᏛ ᎠᏴ ᏥᏨᏬᏁᏗᎭ ᎾᏍᎩ ᎠᏓᏅᏙ, ᎠᎴ ᎾᏍᎩ ᎬᏂᏛ. ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ; ᏗᎨᎦᏨᏍᏙᏗᏱ ᎠᏛᏅᎢᏍᏗ, ᎠᏎᏃ ᏫᎨᏥᏯᏅᏛ ᎥᏝ ᏰᎵ ᏱᎾᏃᏎ ᎤᏂᎷᎯᏍᏱ. ᎠᏂᎫᎾᏓᎴᎩ ᏃᎴ ᏧᏂᏍᏔᏩᏕᎩ, ᎤᎩᏓᏟᏅᏯ ᎨᎵ, ᏚᎾᎴᏫᏍᏔᏁᎸ ᏎᎬ, ᎠᏎᏃ ᏏᏛ ᏱᎪᎰᏍᎬᎾ ᎦᎷᏯᏍᏗ, ᏚᏄᎪᏔᏅ ᎢᎫᏩᎾᏛᏁᏗ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏅᏌ ᏓᏅᎭᏅ ᏃᎴ ᏧᎬᏩᏟ. ᎠᏏᏴᏫᏍᎩᏂ ᎠᏯᏫᏍᎩ, ᏗᏓᏖᏍᏗ ᎤᏪᏘᏍᏔᏅᎩ ᎠᏍᏉᎨᏂ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎾᎿ ᏓᏳᏨᏨᎩ ᎩᎬ ᎠᎴ ᎠᎹ. ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᎤᏕᎵᏛ ᏱᎩ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏂᎨᏒᎾ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎸ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎠᎴ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏂᎨᏒᎾ. “ᎤᏃᎴ ᎠᏲᏙᏗᎨ ᏱᏍᎩᎾᎩᎢ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᏂᎯ ᎢᏨᏁᎸ?” ᎨᏍᏗᏗ ᎠᏯ ᏱᎬᎩᏃᎮᏍᎨ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎩᎶ ᎤᏙᏑᎵᏌᏛ ᏥᎨᏐᎢ ᏧᎳᏏᏕᏂᏉ ᏧᏩᏒ ᏧᏬᏑᎴᏗ ᎨᏐᎢ; ᏂᎬᏃ ᎤᏓᏅᎦᎸᏛ ᎨᏐᎢ. ᎠᎴ ᏂᎯ ᎢᏣᏓᏅᎦᎸᏛ, ᎠᏎᏃ ᎥᏝ ᏂᏥᎥ ᏱᎩ. ᎢᏣᏕᎶᏆᏃ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏓᏟᎶᏍᏛᎢ; ᎤᏩᏂᎦᎸ ᎿᏉ ᎤᏓᎨ ᏂᎦᎵᏍᏓ, ᎠᎴ ᏥᎦᎵᏍᏚᎲᏍᎪᎢ, ᎢᏥᎦᏔᎰ ᎪᎩ ᎾᎥᏂᏳ ᎨᏒᎢ; ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎯᎠ ᏄᏪᏎᎢ; ᎾᏍᎩᏍᎪ ᎤᏃᎯᏳᎯ ᏄᏍᏗ? ᏥᏍᏆᏙᎾ ᎠᎩᎾᏕᎬ ᎯᎪ ᎤᎵᏏᏂᏕᏅ. ᎠᏎᏃ ᏗᎾᏓᏂᏱᏍᎩ ᏭᏂᎷᏨ ᏫᏚᎾᏠᏤ ᏗᏓᏍᏚᏗᏱ, ᏗᎤᎾᏨᏒᏃ ᎤᏂᏃᏁᎢ, ᎾᎪᏔᏅᎾᏃ ᎦᏚ ᎠᎩᏍᏗᏱ ᎨᏒ ᎤᎶᏐᏅ, ᏈᎵᎩᏱ ᏥᏳᎯ ᎣᎦᏣᏅᎩ, ᎯᏍᎩᏃ ᏫᏄᏒᎸ ᏠᎠᏏ ᏫᏙᏥᏩᏛᎲᎩ; ᎾᎿᏃ ᎦᎵᏉᎩ ᏧᏒᎯᏛ ᎣᎨᏙᎸᎩ. ᏂᎯ ᎣᎯᏍᏙᏗ ᎩᎾᎵᎢ ᏃᎴ ᏂᎯ ᏭᎬᏫᏳᏒ ᎣᏍᏓ. ᏃᎴ ᎨᏍᏗ ᏂᎯ ᏂᏣᏁᎩᏴ ᎤᏓᏅᎦᎸᏓ ᏱᎩ. ᏃᏗ ᎤᏓᏄᎸ ᎢᏳᏍᏗ ᎠᏦᏴ ᎾᎥᏂ ᏚᎾᎴᏁ ᏣᏄᏏ ᏃᎴ ᎰᎻ. ᎦᎾᏍᏗ ᎬᏗ ᏚᏣᎪᏎ ᎦᏐᎯ ᏫᎵᎻ. ”ᎡᎭ! ᎤᎶᏐᏅ, ᏩᏏᏓᏂ ᏚᏇᏍᏘ ᎦᏅᎯᏓ ᎬᏘ ᏓᏲᎯᎮ ᏕᏧᎬ ᎤᎾᎩᎸ, ᎤᏇᏓᏢ ᎦᏁᏥ ᏃᎴ ᎤᏍᏉᏟ ᎤᎵᏍᏗ ᏄᏩᏁᎮ ᎠᏦᏔᏍᎬ ᏃᎴ ᏑᏓᎵ ᎢᎦ ᏩᏁ ᏗᎪᏒᏔᏅ ᏗᏲᏍᏙᏗ ᏗᎩᎦᎭ ᏂᏕᎦᎵᏍᏗᏍᎨ. “ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏌᎳᏓ. ᎤᏒᎯ ᎤᏴᏣ ᏱᏄᎵᏍᏔᎾ, ᎾᎥᏂ ᎦᏅᎨ ᎠᏛᎵᏍᎬ ᎬᏗ ᎠᎦᎾᏬᏗᏍᎨᎢ. ᎠᎦᏴᎵᎨᎢ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎠᏍᎦᏯ ᎤᏪᏥ, ᎠᎦᏅᎩᏃ ᎠᏍᎦᏯ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏙᏓ; ᎠᎴ ᎠᎨᏴ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎠᎨᏴ ᎤᏪᏥ, ᎠᎴ ᎠᎦᏅᎩ ᎠᎨᏴ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏥ; ᎤᏦᎯᏃ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏓᏦᎯᏯ, ᎠᎴ ᎤᏓᏦᎯᏯ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏦᎯ. ᎠᏏᏴᏫᏰᏃ ᏴᏫ ᏄᏬᎯᏳᏅᎾ ᎨᏒ ᎢᏳᏩᏂᏌᏛ ᎤᏂᏣᏘ ᎠᏂᏍᎦᎾ ᏥᏄᎾᎵᏍᏔᏅ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏏᏴᏫ ᎤᏬᎯᏴᏅ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎤᏂᏣᏘ ᎠᏂᏍᎦᎾ ᏂᎨᏒᎾ ᏅᏛᎾᎵᏍᏔᏂ. ᎰᏩᏃ ᎤᎩᏨᏛ ᎤᏣᏘ ᎤᎾᏣᏅᎯ ᎤᏂᎷᏨ ᎡᎩᎵᏈ ᎠᎴ ᏆᏂᏏ, ᎾᏍᎩᏃ ᏗᏓᏱᎵᏓᏍᏗᏱ ᎤᏂᏴᎸ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᏗᎾᏓᏘᏂᏙᎯ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎾᎿ ᎦᏚᎲ ᎠᏁᎯ, ᏇᏍᏓ ᎤᏁᏨ, ᏉᎳ ᏩᏥᏯᏅᎲᎩ. ᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᏂᎯ ᎨᏎᏍᏗ, ᏍᎩᏁᏥ ᏫᎬᎷᏤᏗᏱ ᎠᎹᏱ ᎦᏚᎢ. ᎤᎵᏰᏔᏁ ᏫᎵᎻ. ᎣᎭᏁ ᎦᏙᎬ, ᎭᏂᏨ ᏫᏓᎧᏅ. ᏃᎴ ᏔᎵᏁᎢ ᏚᎧᏔᏍᏔᏁᎢ ᎦᏂᎦᏔ ᎡᎹᏂᏓ. ᎠᏆᏏᏅᏌ ᎭᎴᏉ ᏂᏥᏯᏓᎩᏅᏔᏅ ᎠᏌᎢᏂᏓ. ᎪᏪᎵᎯᏰᏃ ᎯᎠ ᎾᏥᏪᏎ ᏇᏓᏲ, ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏕᎬᏯᎴᏔᏅ, ᎾᏍᎩ ᎠᎩᎾᏄᎪᏫᏍᏗᏱ ᎠᏆᎵᏂᎩᏗᏳ ᎨᏒ ᏂᎯ ᎬᏴᏗᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏓᏆᏙᎥ ᏧᏃᏣᎶᎢᏍᏗᏱ ᎡᎶᎯ ᏂᎬᎾᏛᎢ. ᎧᏁᏍᎬ ᎭᏫᏂᏣ ᎤᏗᏍᎦᏞᎢ ᏧᏍᏆᏴᏍᏗ. ᎥᏝᏰᏃ ᏯᎦᏔᎮ ᎢᏳᏪᏍᏗᏱ; ᎤᏣᏖᏰᏃ ᎠᏂᏍᎦᎢᎮᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᏨᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏴ ᎨᏈᎵ, ᏥᏥᏙᎪ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ; ᎠᎴ ᏨᎩᏅᏒ ᎬᏯᎵᏃᎮᏙᏗᏱ, ᎠᎴ ᎬᎾᏄᎪᏫᏎᏗᏱ ᎯᎠ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ. ᏍᎩᏃ ᎢᏴ ᏧᏕᎶᎰᏎ ᏤᎩᏏᏂ ᎤᏁᏨ ᏣᏥᎴᎢ ᎠᏫᎾ ᎠᏲᏍᎩ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎥᏝ ᎿᏉ ᏄᏣᏓᎴ, ᎠᎴ ᎢᏤᏙᎯᏉ ᏱᎩ, ᎤᎾᏓᏅᏘᏍᎩᏂ ᎢᏧᎳᎭ ᎢᏤᎯ, ᎤᏁᎳᏅᎯ ᎦᏓᏘᎾᎥ ᎢᏖᎳ; ᎢᏨᏒ ᎨᏒ ᏕᏣᏓᏲᎵᎮᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏗᏓᏙᏪᏙᎥᎯᏍᏗ ᎨᏒᎢ. ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎦᎶᏁᏛ ᏧᏤᎵᎦ ᏫᎨᏥᏲᎵᎭ. ᎤᏁᎳᏅᎯ ᎤᎵᏍᎦᏍᏙᏛᎩ; ᎿᏉ ᏭᏍᏕᎸ ᎢᏳᏃ ᎤᎸᏉᏕᏍᏗ; ᎯᎠᏰᏃ ᏥᏂᎦᏪᏍᎬᎩ, ᎤᏁᎳᏅᎯ ᎡᏙᏓ. ᏐᏚᎯ ᏔᎵᏚ ᏩᏍᏗ ᏙᏱᏨ ᎤᎴᏗ ᏛᎦ ᏧᎦᏙᏍᏙᏗ, ᏩᏚᎵᏏ ᏃᎴ ᏦᏕᏆᏠᏥ ᏧᎦᏙᏍᏙᏗ ᎠᏂᏃᎯᎵᏙᎲ ᎤᏓᏅᏖᎴ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᎠᏍᎪᎯᏁᏰᏃ ᎢᏣᎫᏱᏍᎪ ᏒᏟ ᎠᎴ ᎡᏒ ᎠᎴ ᎦᎻᏂ; ᏕᏥᏃᎯᏯᏍᎪᏃ ᎤᏟ ᎤᎵᏍᎨᏛᏯ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ, ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏙᎵᏍᏗᏱ, ᎠᎴ ᎪᎯᏳᏗᏱ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏱᏂᏣᏛᏁᎴᎢ, ᎠᎴ ᏐᎢ ᏂᏥᏃᎯᏴᎾᏉ ᏱᎨᏎᎢ. ᏔᎵ ᎢᎦ ᎤᏯᎷᎦ ᏗᎬᏔᏅ ᏗᎦᏎᎾᎵ ᏓᏓᏁᎸ ᏚᏅᏏᏴ ᎠᏦᎭᏴ, ᎤᎾᏗᏍᎦᎶᏗ ᏗᏂᏍᏔᏲᎯ ᏧᏂᎦᏘᎴᎩ. ᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏯᏫᏍᎨᎢ, ᏥᏌ ᎬᏩᏓᏅᏬᏗᏉ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎠᏁᎵᏍᎨᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏩᏄᎯᏍᏙᏗ ᎤᏂᏲᎮᎢ. ᎬᏩᏃᏁᎴᏃ ᎾᏍᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᎦᎶᏍᎬᎢ. ᎠᎴ ᏗᎦᏓᎭ ᏗᏓᏅᏙ, ᎢᏳᏃ ᎬᏩᎪᏩᏛ, ᎡᎳᏗ ᎬᏩᏓᏅᏁᎮ, ᎠᎴ ᎠᏁᎷᎲᏍᎨ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᏂᎯ. ᏧᏂᎦᏐᎠᏏᏗᏒᏃ ᎣᏓᎸᎢ ᏥᏌ ᏚᏅᏍᏓᏕᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ ᎩᎶ ᎡᏥᏃᏁᎸᎭ ᎾᏍᎩ ᏥᏥᎪᏩᏛ ᎬᏂ ᏴᏫ ᎤᏪᏥ ᎤᏲᎱᏒ ᏚᎴᏁᏍᏗ. ᎤᏒᎮᏱᏣ ᎦᏲᏟᎨ ᎤᏗᎴᎨ ᏂᎦᏓ ᏚᎾᏓᏂᎸᏤ. ᏰᎵ ᎡᏆ ᎤᏛᏎ. ᎤᏪᎷᏁᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏥᏌ, ᏕᏫ ᎤᏪᏥ, ᏍᎩᏙᎵᎩ. ᎤᎧᏔᎲᏎ ᎤᎦᏛᎲᏍᎬ ᏳᏍᏓᏩᏕ ᎠᏍᏕᏯᏓ ᎤᏂᏱᏍᎩ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎦᎵᏍᏗᏍᎨ ᎦᏆᎵᎢ, ᏔᎵᏁ ᏭᏕᎶᎰᏌ, ᏭᏅᏥᎴ. ᏴᏫᏃ ᎤᎾᏙᎴᎰᏒ ᎬᏩᏍᏓᏩᏛᏎᎢ; ᎠᎴ ᏚᏓᏂᎸᏤᎢ, ᏚᏁᎢᏍᏓᏁᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏚᏅᏩᏁ ᎤᏚᎸᏗ ᎢᏳᎾᎵᏍᏓᏁᎯ ᏗᎨᏥᏅᏬᏗᏱ. ᎯᎠᏰᏃ ᎠᏯᏔᏍᏗ ᎨᏒ ᎢᏥᏅᎯ, ᎥᏝ ᎤᎾᏓᏅᏘ ᎤᏂᏂᎬᏎᎲ ᎠᎧᎵᎢᎯ ᎤᏩᏒ ᏱᎩ, ᎾᏍᏉᏍᎩᏂ ᎤᏣᏘ ᎤᎾᎵᎮᎵᏤᏗ ᎤᏁᎳᏅᎯ ᏂᎬᏁᎭ; ᎤᏣᏘ ᎪᎱᏍᏗ ᎠᎩᎭ ᎢᏨᏲᏎᏗ, ᎠᎴ ᏗᏨᏳᎪᏓᏁᏗ; ᎠᏎᏃ ᏅᏛᎩᏅᏏᏛ ᏚᏳᎪᏛᎢ; ᎠᏴᏃ ᎡᎶᎯ ᏥᏃᎮᎮᎭ ᎾᏍᎩ ᏄᏍᏛ ᏥᏯᏛᎦᏁᎸᎢ. ᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᎾᏓᎧᎿᏅᎩ ᎤᎾᏠᎬᎩ ᎾᏍᎩ ᎠᏥᏛᎦ ᎤᏁᎵᏍᏗᏱ. ᎠᎴ ᎿᏉ ᎤᎴᏅᎮ ᎾᏍᎩ ᎯᎠ ᏚᏟᎶᏍᏓᏁᎴ ᏴᏫ; ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏖᎸᎳᏗ ᏚᏫᏎᎢ, ᎠᎴ ᏚᏙᎳᏍᏔᏁ ᏠᎨᏏ ᏭᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎢᏅ ᏭᎶᏎ ᎪᎯᏛ ᏭᏪᏙᎴᎢ. ᎠᏎᏃ ᏧᏂᏍᏗ, ᏧᏂᏯᏪᏨ ᎠᎾᏔ ᏃᎴ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏂᏍᏘᏰᎩ ᏣᏂᎦᏴᎵ ᏧᏬᏘᏓ ᏓᏂᏰᏌᏛ ᏳᏂᏐᏯᏍᏗ, ᏃᏉ ᎠᎵᏓᎩᏛ ᏱᎩ ᎤᏍᎦᏎᏗ ᏃᎴ ᏯᎫᏚᎬᎾ. ᎡᏐᏏᏃ ᎣᎩᏩᏛᎲ ᎣᏥᏴᏔᏅᎩ, ᎠᎴ ᎻᏗᎵᏂ ᏬᎩᎷᏨᎩ; ᏂᎦᏓ ᎠᏂᎦᏔᎲ ᏩᏏᏓᏂ ᎦᎳᎱᏂ ᏃᎴ ᏤᎩᏏᏂ ᎢᏧᎳ ᏧᎾᏛᏐᏅ, ᏥᏔᎦ ᎠᏂᏨᏯ ᏗᎾᏟ ᎢᏳᏂᏁᎫᏥᏓ ᎨᏒ, ᎢᏧᎳ ᏧᎾᏓᎯᏍᏗ ᎤᎾᏚᎵᏍᎩ. ᎯᎠ ᎾᏂᏪᏍᎨᎢ. ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏱᎰᏩ ᏚᏙᏍᏛ ᏥᎦᎷᎯᏍᏗᎭ; ᎦᎸᎳᏗ ᏅᏩᏙᎯᏍᏛ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎨᏒᎢ! ᎢᏳᏃ ᏱᏗᏗᏂᏱᎭ ᏴᏫ ᎤᏂᏃᎮᎸᎯ, ᎤᏁᎳᏅᎯ ᎤᏃᎮᎸᎯ ᎤᏟ ᎦᎸᏉᏗᏳ; ᎯᎠᏰᏃ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏃᎮᎸᎯ, ᎾᏍᎩ ᎤᏁᎢᏍᏔᏅᎯ ᏥᎩ ᎤᏪᏥ. ”ᎡᎶᏗᎩ?” ᎤᏦᏱᎴ ᏫᎵᎻ. ᎤᎪᏏᏓ ᎢᏗᎬᏁ ᏂᎦᏓ ᎦᏓ ᏂᏗᎬᏁᎵ. ᏈᎵᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏍᎩᎾᏄᎪᏫᏏ ᎠᎦᏴᎵᎨᎢ, ᎿᏉᏃ ᏰᎵᎦ ᏓᏲᏥᏰᎸᏂ. ᏐᏉ ᎤᏍᏗ ᎠᏓᏪᎳᎩᏍᎬ ᎤᏃᏛ ᏧᎾᏦᎯᏍᏗ, ᏌᎪᏂᎨ ᏃᎴ ᏓᎶᏂᎨ ᏓᏓᏪᎳᎩᏍᎬ ᏩᏁ ᏃᎴ, ᏘᎵ ᏚᏅᏛ. ᎠᏆᏘᎾᏫᏛᎲᎩᏃ ᏗᏆᏓᏅᏛ ᎡᏆ ᎠᎴ ᎢᏅ ᎢᎦᏘ ᏦᏓᎸᎢ ᏩᏆᏘᏅᏍᏔᏅᎩ, ᎠᎴ ᎠᎩᎾᏄᎪᏫᏎᎸᎩ ᎾᎡᏆ ᎦᏚᎲᎢ, ᎾᏍᎩ ᎦᎸᏉᏗ ᏥᎷᏏᎵᎻ, ᎡᎳᏗ ᏅᏓᏳᏍᏗᏗᏒᎩ ᎦᎸᎳᏗ ᎤᏁᎳᏅᎯᏱ ᏛᏓᎴᎲᏍᎬᎩ. ᎾᏍᎩᏃ Ꮎ ᎦᏚ ᏧᏂᎬᎯ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡ ᎾᏂᎡ ᎠᏂᏍᎦᏯ. ᎠᎴ ᎥᏞᏍᏗ ᎩᎳᎢ ᎤᎵᎪᏃᏅᎯ ᏱᎨᏎᏍᏗ, ᎠᏢᏉᏙᏗᏰᏃ ᎨᏒ ᏯᎵᏌᎳᏙᏓ ᎾᏍᎩᏃ ᎤᏍᎦᏅᏨᎯ ᎨᏒ ᏱᏚᏚᎪᏓᏏ ᎾᏍᎩᏯ ᎠᏍᎩᎾ ᏚᏚᎪᏓᏅᎢ. ᎢᎸᎯᏳ ᏛᏍᏆᎸᎯ ᏴᏫ ᎤᏪᏥ ᏓᎦᏂ ᎠᎦᏘᏏᏗᏢ ᎤᎵᏂᎩᏛ ᎤᏁᎳᏅᎯ ᎤᏬᎸᎢ. ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎢᏣ ᎦᏚᏏ ᏫᎦᏅᏅ ᎨᏍᏗ ᏅᏯ ᎬᏗ ᏯᏰᏍᏓᎡ, ᎬᏂᎨ ᏌᏬᏚ ᏄᏍᏛ, ᏗᎦᏆᏙᏗ ᎢᎦᏘ ᏌᏬᏚ ᎨᏒ, ᎦᏚᏏ ᎦᏝᏛ ᎢᏣ ᏩᏂᎶᏍᎬ, ᎠᏤᎯ ᎦᏓᎷᎦᏅ ᎢᏳᏍᏗ ᏫᏚᏓᏍᏔᏅᏅ ᏓᏆᎴᎳ ᏫᏚᎶᏒ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏗᏂᎳᏅᏴᎯᏓ ᏭᏂᎶᏒ ᎬᏂᎨᏒ ᎨᏒ ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎢᏳᏓᏅᎯᏓ. ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏂᏗᎾᏰᏍᎬᎾ ᎠᎴ ᎦᏰᏗᎷᏤᏗ ᏄᎵᏍᏔᏅ ᏔᎵ ᎤᏛᏗ ᎡᏓᎵᏍᎦᏍᏙᏛ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎡᏙᎢᏳᏒᎢ. ᏃᏗ, ᏳᏬᏢᏌ ᏧᏍᏆᏴᏍᏗ, ᎩᎳ ᎠᎵᏍᏓᏴᎲᏍᎨ ᏫᎵᎻ. ᏙᏳ ᎣᎯᏍᏗᏳ ᏧᏪᎳ ᏧᎸᏉᏗ ᏥᎨᏎᎢ ᎠᏂᏣᎳᎩ ᏗᏂᏲᏟ ᏚᏂᎸᎢ! ᎩᎶᎨ ᎠᏓᏅᏖᎭ ᎠᏤ ᎢᎦᏪᏍᏗ?” ”ᎲᎦ ᎢᎦ ᏓᏓᏥᎬᏩᎶᏔᏂ? ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎯᎠ ᎠᎨᏴ ᎠᏓᏲᏁᎲ ᏕᎦᏅᎬᎢ ᎠᏥᏂᏴᎲᎩ. ᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ ᎤᎾᎩᎸ ᎠᎬᏱᏣ ᎤᎴᏫᏍᏔᏁᎢ. ᏌᏊᏃ ᏌᎾᎴ ᎤᎵᏍᏚᎩᏒᎩ. ᎤᎩᏨᏛ ᎤᏂᏣᏛᎩ ᏴᏫ ᏗᎵᏍᏓᏴᏗᏱ ᎤᏂᎷᏨᎯ, ᎤᎾᏛᎦᏅ ᏥᎷᏥᎵᎻ ᏗᎦᎷᏥᏒᎢ, ᎾᎿᏃ ᎾᎥ ᏚᎶᎨᏒᎩ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏯ ᎾᎿ ᎠᎹᏰᎵ ᎤᏪᎧᎲᎢ, ᏆᏟᏯ ᏧᏙᎢᏛ; ᎾᏍᎩ ᏙᎦᏓᏂᎸᏨᎩ, ᎠᎴ ᏦᎢ ᏧᏒᎯᏛ ᎤᏙᎵᏍᏙᏌᏳ ᎣᎩᏍᏆᏂᎪᏔᏅᎩ ᎦᏁᎸᎢ. XVI. ᏗᎾᏓᎪᎾᏗᏍᎬ ᎡᏅᏍᏗ ᏍᎩᏂᎩᎸᏍᏔᏅ ᎾᎦᎸᎳᏗᏴ ᎤᏤᎸᎲ ᏃᎴ ᎤᏓᏅᏖᏗ ᎠᎵᏍᎬ ᎣᎦᏓᏓᏍᎬ. ᎿᏉᏃ ᎠᏥᎸ-ᎨᎶᏎᎯ ᏧᏈᏓ ᎾᏍᎩ ᎦᏚᎲ ᎢᎬᏱᏗᏢ ᎪᏢᏒᎢ, ᎦᎶᎯᏍᏗᏳᎶᏗ ᏚᏘᏃᎴ ᏩᎦ ᎠᎴ ᏗᎪᏛᎢᏛ ᎤᏂᏥᎸᏅᎯ ᏕᎤᏃᎴᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎠᎴ ᎤᏂᏣᏘ ᎨᏒ ᎠᏥᎸ-ᎤᏁᎳᏍᏗᏱ ᎤᏰᎸᏎᎢ. ᎠᎴ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏗᏤᎷᎩ ᏗᏂᏁᎯ ᎤᎾᏛᏅᎢᏍᏔᏅᎩ ᏧᏂᏃᏴᎵᏍᏙᏗᏱ. ᏫᎵᎻᏰᏃ ᎤᏑᎸᏓ ᎯᎩᏍᎪ, ᏧᏍᏆᏴᏍᏗ. ᏔᎵᎭ ᏧᏕᏘᏴᏓ ᏱᎦᎷᏣ, ᏗᏂᏳᎨᏂ ᎢᏴ ᏱᏚᎾᎭᏄᏩ. ᎠᏎᏃ ᎾᏍᎩᏯ ᏄᎾᎵᏍᏓᏁᎸ ᎯᎠ ᎤᏙᎯᏳᎯ ᎢᎦᏪᏛ ᏥᎩ, ᎩᎵ ᎤᏩᏒ ᏚᎵᎦᏍᏔᏅ ᏔᎵᏁ ᏮᎠᎦᏔᎲᏍᏓ; ᏏᏉᏃ ᎠᎪᏑᎴᎥᎯ ᎤᏓᏬᏍᏗᏱ ᏝᏬᏚᎯ ᏮᎠᎦᏔᎲᏍᏓ. ᏗᏁᎶᏗᎩ? ᎠᏂᏍᎦᏯ ᎨᏍᏗ ᎧᏅᏂᏍᎩ ᎾᏂᏏᎾᎲ ᏯᏂᏏᎾ, ᎠᏎᏃ ᎠᏂᏏᎾᏌᏂ ᎠᏁᎵᏍᎪ, ᎢᏳᏍᏗᏉ ᎨᏒ ᏯᎾᏁᎸᏓ. ᎾᎨᎢᏴ ᏭᏓᏏᏃᎴ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏃᎴ ᎦᏓ ᏭᎶᏘᎴᎢ ᏥᏍᏕᏥ ᎤᏁᏍᎩᎸ, ᎤᏭᏌᏁ ᎤᏲᏨ ᎤᏪᏥ ᏃᎴ ᏂᎦᏓ ᎤᎾᎥ ᏧᏍᏆᏴᏍᏗ. ᏂᎦᎥᏍᎩᏂ ᏕᏡᎬ ᎣᏍᏛ ᎾᎾᏓᏛᏍᎬᎾ, ᏗᎦᎴᏴᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏥᎸᏱ ᏫᏓᏗᏅᏗ. ᏈᎵᎩ ᎤᎷᏨᎩ ᎠᎴ ᎡᏂᏗ ᏭᏃᏁᎸᎩ; ᎿᏉᏃ ᎡᏂᏗ ᎠᎴ ᏈᎵᎩ ᏥᏌ ᏭᏂᏃᏁᎸᎩ. ᎠᏎᏃ ᎬᏩᏟᏍᏗ ᎪᎱᏍᏗ ᎠᏆᏢᏈᏍᏙᏗᏱ ᎤᏩᏒᏍᎩᏂᏃᏅ ᏓᏓᎿᏩᏍᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᎡᎶᎯ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅᎯ ᏥᎩ ᎠᏴ ᎨᏒ ᎢᏗᏢ,ᎠᎴ ᎠᏴ ᎥᏆᏛᏅᎯ ᏥᎩ ᎡᎶᎯ ᎨᏒ ᎢᏗᏢ. ᎠᏆᎵᏏ ᎤᎴᏁ ᎤᏩᏒ ᎨᏒᎢ ᎤᏓᏙᎵᏍᏔᏁ ᎯᎠ ᏄᏪᏎᎢ; ᏣᏁᎳᏅᎯ ᎬᏯᎵᎡᎵᏤᎭ ᎠᏂᏐᎢ ᏴᏫ ᏄᎾᏍᏛᎢ ᎾᏍᎩ ᎾᏆᏍᏛᎾ ᏥᎩ, ᎾᏍᎩ ᎠᏎᏉ ᎠᎾᏓᎩᎡᎯ ᏥᎩ, ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ, ᎠᎴ ᏗᎾᏓᏲᏁᎯ, ᎠᎴ ᎾᏍᏉ ᎯᎠ ᎠᏕᎸ--ᎠᎩᏏᏙᎯ ᎾᏍᎩ ᏄᏍᏛ ᎾᏆᏍᏛᎾ ᏥᎩ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎡᏂᎾᏯ ᏧᏤᎢᏛ, ᎤᏓᎵᎢᏃ ᏌᏉᎵ ᎤᏂᎾᏗᏅᏎ ᎫᎱᏍᏗ ᎤᏂᎲᎢ, ᎾᎿ ᎤᎾᏓᏑᏰ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏥᎻ ᎠᎴ ᏦᏏ ᎤᏂᏥ, ᎠᎴ ᏤᏈᏗ ᏧᏪᏥ ᎤᏂᏥ. ᎡᏂᎾᏯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏥᏯᏛᎦᏁᎸ ᎯᎠ ᎠᏍᎦᏯ ᎤᏂᏣᏔ ᎬᎩᏃᏁᎸ ᎤᏣᏘ ᎤᏲ ᏂᏚᏩᏁᎸ ᏗᏣᏤᎵ ᎤᎾᏓᏅᏘ ᏥᎷᏏᎵᎻ. ᎾᏍᎩ Ꮎ ᎠᏎ ᏛᏛᏃᏏ, ᎠᏴᏍᎩᏂ ᎠᏎ ᏓᏥᏲᎶᏥ. ᏣᏄᏏ ᎤᎴᏅᎮ ᏚᎷᏫᏍᏔᏁᎲ. ᏂᎦᏓ ᎠᏂᏫᏄᏣ ᎠᏂᏂ ᎤᏂᏁᎢᏍᏔᏅ ᏂᏙᏒ ᏗᎳᏑᎶ. ᏂᎦᏛᏃ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᏕᏫ ᎤᏪᏥᏱᎩ? ᎯᎠᏃ ᏄᏪᏒᎩ; ᎧᏂᎵᏯ, ᎭᏓᏙᎵᏍᏗᏍᎬ ᎡᏣᏛᎦᏁᎸ ᎠᎴ ᎭᏓᏁᎸᎢᏍᎬ ᎠᏅᏔ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏗᎪᏪᎵᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ ᎠᎨᏲᏅᎯ ᏥᎨᏐᎢ, ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᎦᏁᎳ ᏥᏙᏗᎦᎾᏄᎪᏫᏍᎪ ᏧᎬᏩᎶᏗ ᎤᏍᏆᏂᎪᏛ ᏧᏓᎴᏅᏛ ᏗᏤ ᎠᎴ ᏧᏪᏘ. ᎦᏔᏎᏰᏃ ᏗᎦᎵᏱᏳ ᎨᏒ ᏕᏣᏓᏅᏛᎢ, ᎾᏍᎩ ᎢᏨᏁᎢᏍᏗᏍᎬ ᎹᏏᏙᏂ ᎠᏁᎯ ᎦᏥᏯᏢᏈᏌᎭ, [ᎦᏥᏃᏁᎭ] ᎾᏍᎩ ᎡᎧᏯ ᎿᏉ ᏑᏕᏘᏴᏛ ᎬᏩᏛᏅᎢᏍᏔᏅᎯ ᎨᏒᎢ; ᎠᎴ ᏂᎯ ᎤᎵᏂᎩᏛ ᎢᏣᏓᏅᏛ ᎤᏂᏣᏔ ᎤᏂᏖᎸᏅ. ᎠᏥᏅᏏᏛ ᎠᎵᏘᏍᎪᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᏥᏅᏏᏛᏉ ᎨᏒᎢ. ᎤᏣᏘᏃ ᎤᏱᎶᎴ ᎤᏃᎴ, ᎠᎴ ᏓᎵᏍᏗᎳᏁᎬ ᏥᏳᎯ ᎠᏟᎨᎢ, ᎠᎴ ᎿᏉ ᎠᎧᎵᏬᎯ ᎨᏎᎢ. ”ᎣᏏᏉᏍᎪ ᏧᏪᏥ ᏱᏓᎩᏯᎳ ᏧᏪᏥ ᏧᏂᏗ, ᎡᏠᎩ ᎠᎳᏂ?” ᏝᏍᎪ Ꮀ ᏳᎬᏫᏳᏎᏍᏗ ᎦᎸᏉᏗᏳ ᏱᎨᏎᏍᏗ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ? ᎠᏯ ᏏᏆ!” ᏃᎴᏍᏉ ᏳᏚᎵ ᏳᏩᏁᎦ ᎠᏉᏎᏗ, ᎤᏩᏌ ᎤᏓᏁᏖᏗ. ᎤᏂᎦᎸ ᏚᎧᎾᏁ ᏌᎳᏓ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎣᏣᎵᏂᎬᏁᎭ, ᎾᏍᏉ ᎾᎿ ᏱᏬᏥᏁᎳ, ᎠᎴ ᏲᎩᎪᏁᎳ, ᏦᎦᏓᏂᎸᎢᏍᏗᏱ ᎢᏳᎵᏍᏙᏗᏱ. ᎥᏝ ᎠᎴ ᎾᏍᎩᏉ ᏱᏄᏍᏗ; ᎵᏇᎩᏍᎩᏂ ᎾᏍᏉ ᎤᏁᎵᏨ, ᎾᏍᎩ ᎠᏏᏴᏫ ᎠᏥᏁᎵᏤᎸ, ᎾᏍᎩ ᎢᎩᏙᏓ ᎡᏏᎩ; ᎿᏉᏃ ᏈᏓ ᏗᏴᎵᏎ ᎧᏂᎵᏯ ᏕᎤᏠᏎᎢ, ᎡᎳᏗᏃ ᎤᏅᏨ ᏈᏓ ᏚᎳᏍᎬ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ. ᎦᏄᎸ ᎧᏁᏍᎦ ᎢᏳᏍᏗ ᏃᎴ ᏦᎢ ᏧᏆᏅᏕᎾ ᎤᎦᎾᏍᏓ ᎠᏒᎨᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᎢᏍᏙᏎᎸᎭ, ᎯᎠ ᏁᏍᏗᏪᏎᎸᎭ; ᎤᎬᏫᏳᎯ ᏚᏚᎵᎭ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏙᏓᏳᏲᏏ. ᎠᏂᏔᎵ ᏃᎴ ᎱᏂᏅᎪᏤ ᏃᎴ ᎱᏂᏲᎵᎴ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏈᎵ ᎤᏟ ᎢᏲᏍᏛ ᎤᎵᏍᎪᎸᏓᏁᎴ ᎤᏁᎳᏅᎯ ᎠᏥᎸ-ᎨᏔᏍᏙᏗ ᎨᏒ ᎡᏍᎦᏉ ᎨᏂ, ᎾᏍᎩ ᏄᏛᏁᎸ ᎤᏩᏛᏔᏁ ᎪᎯᏳᏍᎩ ᎤᏓᎤᏗᏳ ᎨᏒᎢ, ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᏚᏓᏂᎸᏤᎸ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏄᏛᏁᎸ ᎬᏗᎭ ᎧᏁᎦ ᎾᏍᏉ ᎤᏲᎱᏒᎯ ᏥᎩ. ᎤᏡᏗᏍᎩᏃ ᎬᏂᎨᏒ ᎢᏧᏩᏁᎸᎯ ᎨᏎ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ, ᎯᎠ ᎢᏳᏪᏒᎯ ᎨᏎᎢ, ᎩᎶ ᏥᏯᏚᏣᎳᏅᎭ, ᎾᏍᎩ ᎨᏎᏍᏗ, ᏒᏥᏏᏴᎲᎭ, ᎡᏣᏘᎾᏫᏛᎲᎭ ᎬᏩᏚᏓᎴᏍᏗ ᏂᎨᏒᎾ ᏁᏨᏁᏍᏗ. ᏕᎾᏓᎪᎲᏳ ᏃᎴ ᎬᏯᎵᎡᎵᏤ ᎣᏍᏓ ᏍᎩᏃᎯᏎᎸ ᎤᏓᏙᏎᎴ. ᎠᎴ ᎠᏁᎲ ᎤᏙᎯᏳᏅ ᎢᏌᏯ ᏧᏙᎴᎰᏎᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎢᏣᏛᎩᏍᎬ ᎢᏣᏛᎩᏍᎨᏍᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏦᎵᎨᏍᏗ; ᎠᎴ ᎢᏥᎪᏩᏘᏍᎬ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏙᎴᎰᏍᎨᏍᏗ. ᎠᏎᏃ ᏈᏓ ᎠᏏᏉ ᏗᎬᏂᎮᎢ; ᎤᏂᏍᏚᎢᏒᏃ ᎬᏩᎪᎮᎢ ᎠᎴ ᎤᏂᏍᏆᏂᎪᏎᎢ. ᎠᎴ ᎩᎶ ᎠᏏᏴᏫ ᎯᎠ ᏧᎾᏍᏗ ᎨᏒ ᎾᏍᎩ ᏥᎬᏉᎯᏳᎲᏍᎦ ᏙᎪᏕᏍᏗᏍᎨᏍᏗ, ᎤᏟ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᏙᏍᎩ ᏅᏯ ᏯᏥᏯᏝᏅ, ᎠᎴ ᎠᎺᏉᎯ ᏱᏩᎦᏓᎢᏅ. ᎤᎦᏙᏍᏔᏁᎢ ᏕᎪᏪᎸ ᏓᏏᎳᏛ ᎰᎻ. ᎤᎦᏔᎲᏒ ᏣᎵ ᏃᎴ ᎤᎵᏍᎫᏮ. ᎿᏉᏃ ᏈᏓ ᎢᏴᏛ ᏭᏘᏅᏔᏅ ᎤᏕᎴᏅᎲᎩ ᎤᏓᏅᏍᏓᏕᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎤᏁᎳᏅᎯ ᏭᏅᏍᏙᎯ, ᏣᎬᏫᏳᎯ, ᎥᏝ ᎾᏍᎩ ᏱᏅᎨᏣᎵᏍᏓᏏ. ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎾᏥᎦᏔᎰᎢ ᎠᏏ ᎡᎶᎯ ᎾᏙᏢᏍᎬᎾ ᏥᎨᏎᎢ; ᎠᏎᏃ ᎬᏂᎨᏒ ᎾᎬᏁᎴ ᎪᎯ ᎤᎵᏍᏆᎸᏗ ᏕᎨᏌᏗᏒᎢ ᏂᎯ ᎢᏣᎵᏍᏕᎸᏙᏗ, ᏓᏆᎴᎳ ᎤᏪᏅᏎ ᏭᎩᏎᎢ ᏑᏥᎶᏓ ᎠᏥᏍᏛ ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ. ᏌᏩᏂ ᎤᏃᎮᎸ ᎤᏁᎳᏅᎯ ᎢᎬᏱᏱ ᏚᏩᏛᎲᎢ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᎿ ᏧᏪᎴᏍᏗᏱ ᏴᏫ ᎾᏍᎩ ᏚᏙᎥ ᏗᎨᎪᏍᏙᏗᏱ. “ᏰᎵ ᏍᎪᎯᏍᏆ ᎤᎶᏒᏍᏗ ᏕᎩᎧᎾ.” ᏞᏍᏗ ᏱᏔᏢᏈ-ᏎᎮᏍᏗ ᏚᏩᏂᎦᎸᎢ. ᎢᏳᏍᎩᏂ ᏯᏢᏈᏍᎦ, ᎥᏝ ᏂᎯ ᏚᎿᏍᏕᏢ ᏱᏘᎾᏄᎪᏫᏍᎦ, ᏚᎿᏍᏕᏢᏍᎩᏂ ᏂᎯ ᎨᏣᎾᏄᎪᏫᏍᎦ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏁᎳᎩ ᏴᏓᎨᎵᏏ ᏂᎪᎯᎸ ᎢᏨᏯᏅᏓᏗᏍᏙᏗᏱ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ, ᎢᏥᎦᎳᎭᏍᎩᏂᏃᏅ, ᎠᎴ ᏕᏣᎵᏂᎪᏒ ᎾᎿ ᏚᏳᎪᏛ ᎨᏒ ᎪᎯ ᏥᏣᏛᎩᎭ. ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ ᏌᎻ ᏅᏓᏳᏓᎴᏅᏛ, ᎾᏍᎩ ᎣᏂ ᎤᏂᎾᏄᎪᏨᎯ, ᎾᏂ ᎤᏂᏬᏂᏒᎯ, ᎾᏍᏉ ᎤᏂᏁᎢᏍᏔᏅ ᎪᎯ ᎨᏒᎢ. ᏃᏊᏃ ᎠᏆᏞᏌ 33 ᎪᏪᎵ ᎦᏅᏅ ᎠᎴ ᏗᏇᏅᏒ ᎢᏗᏜ ᏫᎦᏅᏅ ᏩᏆᏕᏙᎾ ᏓᏆᎴᎳ ᏚᏨᏍᏛ ᏫᏚᎸᏌᏓᏓ ᏫᎦᏅᏅ ᏫᎦᏥᎪᎥ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏩᎾᎢᏒᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎠᏇᏥ,ᎤᎦᎵᏍᏗ ᎭᏓᏅᏓᏓ; ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ; ᏅᏩᏙᎯᏯᏛ ᏥᎮᎾ. ᎡᏝᏪᎯ ᎠᎢᏒ, ᎠᏓᏯ ᏗᎪᏒᏔᏅ ᎡᏓᏍᏗ ᎾᎥᏂ ᏂᏚᏩᏅ ᏧᎳᏏᏕᏂ, ᎤᏅᎢᏍᏗ ᏱᎨᏒᎾ. ᎨᏍᏗ ᏧᏍᎩᏃᏱᎩ. “ᏃᎴ ᏤᏍᏗ ᏱᏍᏓᎴᏃᎴᏍᏗ!” ᎤᏛᏁ ᎠᎳᏂ. ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏯᎾᏓᏙᎵᏍᏓᏏ ᎩᎶ ᏄᏃᎯᏳᏒᎾ ᏱᎩ ᎡᎲᎢ? ᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏯᏃᎯᏳᎲᎦ ᎩᎶ ᎡᎲ ᎾᏍᎩ ᎤᎾᏛᎦᏅᎯ ᏂᎨᏒᎾ ᏱᎩ ᎡᎲᎢ? ᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏯᎾᏛᎬᎦ ᎩᎶ ᎠᎵᏥᏙᎲᏍᎩ ᏄᏁᎲᎾ ᏱᎩ? ᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᏥᏂᎦᏪ ᎰᏏᎠ ᎤᏬᏪᎸᎢ; ᏗᏆᏤᎵ ᏴᏫ ᎦᏥᏲᏎᎮᏍᏗ ᎾᏍᎩ Ꮎ ᏗᏆᏤᎵ ᏴᏫ ᏂᎨᏒᎾ ᏥᎨᏒᎩ; ᎠᎴ ᏥᎨᏳᎢ (ᏥᏲᏎᎮᏍᏗ,) ᎾᏍᎩ Ꮎ ᏥᎨᏳᎢ ᏂᎨᏒᎾ ᏥᎨᏒᎩ. ”ᎭᏩ,” ᎤᏛᏁ ᏫᎵᎻ. ᏂᎦᎥᏉ ᏂᏣᎵᏍᏓᏁᎵᏕᎬ ᎡᏣᎵᎡᎵᏤᎮᏍᏗ [ᎤᏁᎳᏅᎯ;] ᎯᎠᏰᏃ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏣᏓᏅᏖᎮᎲ ᏥᏌ ᎦᎶᏁᏛ ᏕᏣᏁᎶᏛ ᎢᏳᏍᏗ. ᎨᏍᏗ ᎠᏍᏛᎢ ᎾᎥᏂ ᏳᏓᏬᎠ. ᎾᏍᎩ ᎢᎸᎯᏳ ᏄᏃᎯᏳᏒᎾ ᏥᎨᏎᎢ, ᎾᎯᏳ ᎤᏁᎳᏅᎯ ᎬᏂᏗᏳ ᎨᏒ ᏣᎦᏘᏰᎢ, ᏃᏯ ᎾᎯᏳ ᏤᎥᎢ, ᏣᏛᏅᎢᏍᏗᏍᎨ ᏥᏳ, ᎾᎿ ᎢᎸᏍᎩ ᎾᏍᎩ ᏧᏁᎳᏉ ᎢᏯᏂᏛ ᏥᎨᏥᏍᏕᎸᎮᎢ, ᎠᎹ ᏥᎨᏥᏍᏕᎸᏔᏁᎢ; ᎩᎦᎨᏃ-ᎠᏗᏔᏍᏗ ᎤᏗᏒᏅ, ᏥᏌ ᎤᏥ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᏳᏂᏁᎭ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎠᎾᎵᏍᏓᏴᏗᏍᎬ ᏗᎦᎸᏉᏗ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏂᎦᏘᏯᏕᎩ ᎾᏍᎩ ᎤᏁᎳᏗᏍᏗᏍᎬ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᎵᏍᎪᎸᏔᏅᎯ? ”ᎭᏕᏬ -- ᎭᏕᏬ -- ᎭᏕᏬ!” ᎤᏛᏁ ᏌᏌ. ᎠᏎᏍᎩᏃ, ᏙᏯ ᎤᎴᏴᎯᏍᏗ ᎨᏎ ᏗᏧᎬᎢ. ᎢᏥᎦᏔᎭᏰᏃ ᎪᎱᏍᏗ ᎠᏲᎩ, ᎠᏕᎸ ᎤᏁᎬ ᏯᏛᏅ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ, ᎡᏣᎫᏴᏔᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎡᎫᏓᎴᏒᎢ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎢᏣᎴᏂᏙᎸᎢ ᏗᏥᎦᏴᎵᎨ ᏗᎨᏥᏲᎯᏎᎸᎯ ᎨᏒᎢ, ᎾᎯᏳᏉᏃ ᏕᎠᏂᎳᏫᎡ ᎤᏂᏧᏈᏍᏗ ᏴᏫ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᎠᎾᏓᎳᏍᏛᏗᏍᎨᎢ, ᎾᏍᎩ ᎤᎴᏅᎮ ᎯᎠ ᎢᎬᏴ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎢᏤᏯᏔᎮᏍᏗ ᎠᎪᏙᏗ ᎠᏂᏆᎵᏏ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᎠᏠᎾᏍᏗ ᏥᎩ. ᎢᏳᏃ ᏍᏆᏂᏱ ᎨᏒᎭ, ᏫᏨᎷᏤᏗ ᎨᏎᏍᏗ; ᎤᏚᎩᏰᏃ ᎠᏋᎭ ᎢᏨᎪᏩᏛᏗᏱ ᎾᎿ ᏫᏥᏕᏖᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏗᏢ ᏫᏍᎩᏯᎪᏗᏱ, ᎢᏳᏃ ᎢᎬᏱ ᎠᎴᏉ ᏰᎵ ᎾᎩᏰᎸᏁᏍᏗ ᎢᏨᏰᎳᏗᏙᎸᎢ. ᎩᎳᏈᏴ ᎤᎵᏍᏛᏧᏁᎢ ᏥᏍᏕᏥ. ᏩᎩᎷᏣ ᎤᎨᏓᎵᏴ ᎨᏴ ᎠᎩᎦᏛᏂᏙ ᎠᏓᎾᏅ, ᎬᎩᏃᎯᏎᎸ ᎱᏂᎷᏨ ᎨᎵ ᏃᎴ ᎤᎩᏓᏟᏅᏯ. ᎤᎾᏠᎾᏍᏛ ᎦᏰᎪᎩ ᎠᏂᏬᏂᏍᎨᏍᏗ, ᏚᎾᏓᏅᏛ ᏗᎦᎴᏴᏔᏅᎯ ᏔᎷᎩᏍᎩ ᎤᏗᎴᎩ ᎬᏔᏅᎯ; ᏚᏅᏉ ᎳᏛᎢ ᏚᎵᏏᏫᏒ ᎢᏳᏍᏗ ᎤᎾᎵᏏᏫᏒ ᎤᏂᏥᎸᎢ: ᏕᎷᎨ, ᏓᎶᏂᎨ, ᎠᏤ, ᎩᎦᎨ, ᎠᏓᎶᏂᎨᎢ ᏃᎴ ᎤᏁᎦ. ᎦᎸᎳᏗᏣ ᏳᏪᎾ, ᎠᎩᏠᏫᏍᏗ ᎡᎳᏗ ᎠᎦᏘᏰ ᏫᎵᎻ, ᎠᎦᏐᏗᏍᎬ ᎢᎪᎯᏓ. ᎯᎠᏰᏃ ᎠᏠᏁᏗ ᏥᏰᎸᎢ ᏣᎩᎶᏁᏓ, ᎥᎩᏂᏐᏗᏱ ᎠᏆᏛᏅᎢᏍᏗᎭ. ᏫᏚᏂᏯᏅᎲᏃ ᏚᏂᏁᏤᎴ ᏥᏌ ᏚᏙᎥ ᎤᏅᏙᏗᏱ ᎤᏂᏁᎢᏍᏗᏱ ᎠᎴ ᏧᎾᏕᏲᏗᏱ ᏂᎨᏒᎾ. ᎿᏉᏃ ᏨᏆᏓᏁᎳᏁᎸ ᎠᎵᏍᏚᎶ ᏚᏳᎪᏛ ᎢᏳᎾᏛᏁᎸᎯ ᎨᎦᎫᏴᏓᏁᏗ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎾᏍᎦᏅᎾ ᏗᎫᎪᏗᏍᎩ ᎠᏗ-ᏅᏁᏗ ᎾᎯᏳ ᎢᎦ, ᎥᏝ ᎠᎴ ᎠᏴᏉ ᎠᏋᏒ, ᎾᏍᏉᏍᎩᏂ ᎾᏂᎥ ᎤᎾᏄᎪᎢᏍᏗ ᎨᏒ ᎣᏏᏳ ᎣᏂᏰᎸᎯ. ᎠᏍᏆᏙᏅ ᏥᏃᎮᏍᎬ, ᎠᎩᎦᏘᏛ. ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏕᎾ, ᏫᏍᏓᎦᏔ. ᎤᏁᏅᏒᎩᏃ ᎠᎴ ᎤᎾᎦᏔᏅᎩ ᎦᏁᎸᎢ, ᎠᎴ ᎢᏧᎳᎭ ᎤᏁᏙᎸᎯ ᎾᎯᏳ ᎢᎦ; ᏅᎩᏁᏰᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏒᎩ. ᏞᏍᏗ ᎤᏐᏅ ᏱᏗᏣᏓᏃᎮᏍᎨᏍᏗ ᎢᏓᏓᏅᏟ; ᎤᏐᏅ ᏥᎧᏃᎮᏍᎪ ᏥᎧᏁᎢᏍᏗᏍᎪ ᏗᎾᏓᏅᏟ ᎠᎴ ᏥᏕᎫᎪᏓᏁᎰ ᏗᎾᏓᏅᏟ, ᎾᏍᎩ ᎤᏐᏅ ᎧᏃᎮᏍᎪ ᎧᏁᎢᏍᏗᏍᎪ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᏕᎫᎪᏓᏁᎰ ᏗᎧᎿᏩᏛᏍᏗ; ᎢᏳᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏚᎪᏓᏁᎭ ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗ ᏘᎧᎿᏩᏕᎩ ᏱᎦᎩ ᏚᎪᏓᏁᎯᏍᎩᏂ. ᎤᏖᎸᏁ ᎡᏆ ᎠᏍᏚᏅ ᏩᎩᎦ, ᎤᎦᏛᏁ ᎦᎵ ᏱᎩ ᎤᎵᏍᏆᎶᏗ ᎨᏴ ᎤᏁᎨᏒ. ᎠᏎᏃ ᏉᎳ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ ᎦᏙ ᎢᏥᏰᎸᏗ, ᏥᏕᏥᏴᎦ ᎠᎴ ᏥᏥᏓᏬᏗᎭ ᎠᎩᎾᏫ; ᎠᏆᏛᏅᎢᏍᏗᏰᏃ, ᎥᏝ ᎥᏆᎸᏍᏗᏱᏉ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᎠᎩᏲᎱᎯᏍᏗᏱ ᏥᎷᏏᎵᎻ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏚᏙᎥ ᎤᎬᏫᏳᎯ ᏥᏌ. ᎩᎳᏈᏴ ᎤᎯᏐᏗ ᏄᎵᏍᏔᏁᎴ ᏫᎵᎻ. ᎠᏰᎵ ᏄᏍᏛ ᏃᎴ ᏙᏰ ᏄᏍᏗᏓᏅ ᎠᏍᏔᏱ ᎠᏥᎶᏍᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ, ᏃᎴ ᎡᎵᏍᏗ ᏍᏔᏯ ᏄᎾᎵᏍᏔᏁ. ᏍᏔᏯ ᏚᏂᏴᎲ ᎠᏍᏚᏗ ᎠᏦᎭᏴ, ᏧᏁᎦᏉ ᎨᏒ ᏧᎪᎳ ᏚᎦᏌᏛ. ᏍᏓᏯ ᎤᏂᏰᏤ ᎤᏂᏣᏘ. ᏍᎪᎯ ᎾᏂᎥ ᎠᏂᏧᏣ, ᎡᏆ ᏕᎦᏚᎲ ᏓᏳᏂᎶᏒ. ᎢᏳᏃ ᏂᎦᏛ ᏌᏉᏉ ᎤᏫᏢ ᏱᎩ, ᎭᏢ ᎠᏰᎸ ᏱᎩ? ᎢᏳ ᎠᎴ ᏳᎾᏚᎵ ᎪᎱᏍᏗ ᎤᎾᏕᎶᏆᏍᏗᏱ, ᏗᎬᏩᏂᏰᎯ ᏧᎾᏛᏛᎲᏍᎨᏍᏗ ᏙᏧᏁᏅᏒᎢ; ᎤᏕᎰᎯᏍᏗᏳᏰᏃ ᎠᏂᎨᏴ ᎤᏂᏬᏂᎯᏍᏗᏱ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏴ ᎾᏍᎩ ᏑᏓᎴᎩ ᏛᏨᏯᏛᏛᏂ, ᎠᎴ ᏍᎩᏃᎲᏏ, ᎠᏴᏃ ᏓᏨᏃᏁᎵ ᏄᏍᏛ ᎠᏆᎵᏍᎦᏍᏙᏛ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏛᏁᎭ. ”ᎰᎻ ᎠᎪᏕᏍᎩ, ᏙᎢᏳᏍᏗ ᎯᏃᎮᎭ?” ᎤᏛᏁ. ᎤᎵᏏᏅᏗ ᏩᏗᎦ ᎠᏒᏆᎶᏍᏗ ᎠᎵᏰᎾ, ᏥᏄᏍᏛᎩ ᎤᏩᏛᎲ. ᎤᏂᏃᏴᎵᏓ ᎤᎾᏓᏂᎸᏤ ᏌᏌ. ᎦᎪ ᎢᎸᎯᏳ ᏓᎿᏩ ᎡᎪᎢ ᎤᏩᏒᏉ ᎤᎫᏴᎯᏓᏍᏗ ᎠᎫᏴᏗ ᎨᏒᎢ? ᎦᎪ ᏓᏫᏍᎪ ᏖᎸᎳᏗ ᏂᏗᎨᏰᏍᎬᎾᏃ ᎨᏐ ᎤᎾᏓᏛᏅᎯ? ᎠᎴ ᎦᎪ ᏓᎦᏘᏲ ᎠᏫ, ᎾᎵᏍᏓᏴᏗᏍᎬᎾᏃ ᎨᏐ ᎤᏅᏗ ᎠᏫ ᎤᏂᏁᏅᎯ? ᎤᎾᏝᎢᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎣᏏᏳ! ᎰᏍᏛ ᎠᎴ ᎯᎦᎵᏯ ᎡᏣᏅᏏᏓᏍᏗ! ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ ᎤᏍᏗ ᏧᏓᎴᏅᏛ ᏕᏣᎸᏫᏍᏓᏁᎸᎢ; ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏣᎬᏫᏳᏌᏕᎩ ᏅᏓᎬᏴᏁᎵ; ᎯᏴᎭ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗᏱ ᏣᎾᏝᎢ ᎤᏤᎵᎪᎯ. ᏧᎦᏴᎵᎨᏃ ᏥᎷᏏᎵᎻ ᎠᏁᎨ ᏂᏓᏕᏘᏴᎯᏒ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᎵᏍᎬ ᎢᏳᎢ. ᎤᏁᏤᎴᏃ ᎩᎶ ᎤᏃᏁᏗᏱ ᏂᎨᏒᎾ; ᎮᎾᏉᏍᎩᏂ, [ᎤᏬᏎᎴᎢ,] ᏫᏯᏓᎾᏄᎪᏫᏏ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᎼᏏ ᎤᏁᏨ ᏣᏓᏅᎦᎸᎲ ᎠᎵᏍᎪᎸᏙᏗ ᏫᎲᎦ, ᎾᏍᎩ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ. ᎤᎵᏑᏫᏓ ᏥᎨᏒ ᎬᏂᎨ ᎤᏍᎪᎸ ᏄᎵᏍᏔᏅ. ᎤᎧᏛᏃ ᎠᏂᎪᏩᏘᏍᏕᏍᏗ; ᏚᏙᎥᏃ ᎾᏍᎩ ᏗᏂᎬᏓᎨᏂ ᏕᎪᏪᎴᏍᏗ. ᎠᎾᏛᎩᏍᎨ ᎤᏂᏃᏕᎾ ᏂᏗᏂᏪᏍᎬ ᎨᏥᏍᏚᎲ. ᎤᏍᏗ ᎢᏳᏍᏗ ᏔᎴᏅ. ᏝᏍᎪ ᎠᏴ ᎥᎩᏅᏏᏛ ᏱᎩ? ᏝᏍᎪ ᎠᏆᏓᏤᎵᎦ ᏱᎩ? ᏝᏍᎪ ᏥᎪᎥᎯ ᏱᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ? ᏝᏍᎪ ᎠᏴ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎢᏳᏩᏂᏌᏛ ᏱᎩ ᏂᎯ ᎤᎬᏫᏳᎯ ᎡᏥᏍᏓᏩᏕᎩ ᏥᎩ? ᏥᏌᏃ ᎠᎦᏔᎮ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎤᏥ ᎢᏣᏓᏅᏖᎭ ᏗᏥᎾᏫᏱ? ᏉᎳᏰᏃ ᏧᏭᎪᏔᏅᎯ ᎨᏒᎩ ᎤᎶᎯᏍᏗᏱᏉ ᎡᏈᏌ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎡᏏᏱ ᎤᏪᏓᏍᏗᏱ; ᎤᏩᏅᎬᎩᏰᏃ, ᎢᏳᏃ ᏰᎵ ᎾᏍᎩ ᎢᎬᏩᏛᏁᏗ ᏱᎩ, ᏥᎷᏏᎵᎻ ᏭᎷᎯᏍᏗᏱ ᎭᏍᎦᏍᎪᎯᏁ ᎢᎦ ᎠᏍᏆᎵᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎡᎦᎫᏴᏛ ᏥᎩ ᎤᎩᎬ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎢᎩᏍᎦᏅᏨ ᎡᎩᏙᎵᏨᎢ; ᏕᎦᏥᎾᏌᏅ ᏅᏩᎾᏓᎴ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᏥᎩᏍᎬᎩ ᎬᏆᎫᏴᎡᎲᎢ, ᏂᎯ ᎪᎱᏍᏗ ᎢᏨᏯᏛᏁᏗᏱ. ᏗᏂᏲᏟ ᎣᎯᏍᏙᏗ ᎤᎾᏛᎦᏍᏙᎢ ᎠᏎᏉ ᏧᎾᏛᎾ. ᎠᏴ ᎠᏆᏛᏐᏅᎯ ᏫᏥᏲᎵᎦ ᎠᎦᏑᏰᏛ ᎠᎨᏴ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎦᏥᎨᏳᎢ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎥᏝ ᎠᏋᏒᏉ ᏱᎩ ᎾᏍᏉᏍᎩᏂ ᏂᎦᏛ ᎤᏂᎦᏙᎥᏒᎯ ᏚᏳᎪᏛ ᎨᏒᎢ; ᏣᏥ ᏥᎨᏒ ᏱᎬᏩᏚᎵ ᏍᎩᎾᎾ ᎢᏳᎵᏍᏙᏗ, ᏥᎦᏔᎭ.” ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎡᏆ ᏏᏆ ᎢᎬᏓ ᎨᏒ, ᎤᏣᎴᏍᏗ ᎦᏚ ᎤᏩᏙᏫᏨ ᎤᏓᏑᏴ ᏚᏄᎴᎲ ᏃᎴ ᎤᎦᎹ ᎠᏑᏍᏗ ᎤᏓᏅᎵᏰᎥ ᎤᎭᏄᏮ. ᎠᏏᏰᏃ ᏯᏆᎴᏂᏙᎸ ᎦᎶᏅᏛ ᏥᎸᏉᏙᏗ, ᏯᎩᏲᎱᏒᏃ ᎠᏴ ᎠᎩᏁᏉᏤᏗ. ᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎠᎴ ᎠᏂᏧᏏ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎠᎾᏁᎷᎩᏍᎨ ᏗᎬᏩᏂᏐᏢᏙᏗᏱ ᎠᎴ ᏅᏯ ᏧᏅᏂᏍᏙᏗᏱ, ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎤᏣᏘ ᎢᏥᏯᎡᏍᏗ ᎦᎾᏄᎪᏫᏍᎨᏍᏗ ᏂᎦᎥ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ; ᏕᏣᏓᏕᏲᎲᏍᎨᏍᏗ ᎠᎴ ᏕᏣᏓᏬᏁᏗᏍᎨᏍᏗ ᏕᏨᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᏗᎧᏃᎩᏍᏙᏗ, ᎠᎴ ᎦᎸᏉᏙᏗ ᏗᎧᏃᎩᏍᏗ, ᎠᎴ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᏗᎧᏃᎩᏍᏗ, ᏕᏥᏃᎩᏍᎨᏍᏗ, ᏗᏥᎾᏫᏱ ᏗᏓᎴᎲᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏕᏥᏃᎩᏍᎨᏍᏗ ᎡᏣᎵᎡᎵᏤᎮᏍᏗ. ᏚᏂᏯᏪᏣ ᎠᎾᎵᏖᎸᏂᎲ ᏩᎦ ᎤᏂᏴᏍᏗ ᎠᏦᏴ ᏒᏗᏩᏟ ᎤᎾᏓᎩᏎ ᏃᎴ ᏚᏂᎨᎢ. ᎠᎴ ᎠᏂᎪᏗᏳ ᎠᏂᎦᎾᎦᏗ ᎤᏣᏘ ᎬᏩᎩᎸᏅᎯ ᎨᏎᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎤᎲ ᏂᎦᏛ ᎤᏒᏅᎯ ᎨᏎ ᎠᏓᏱᏍᎬᎢ, ᎠᏎᏃ ᎥᏝ ᎣᏏᏳ ᏱᏄᎵᏍᏓᏁᎮᎢ, ᎧᏁᏉᎨᏉᏍᎩᏂ ᎤᏢᎬᎢ; ᎤᎸᏖᏍᏗ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎴ ᎡᎳᏗ ᏫᏄᏛᏁᎳ. ᎠᎵᏖᎸᏂᏍᏗ ᎤᎵᏍᏕᎸᏙᏔᏁᎢ. ᎬᏅᎢ ᎠᎴ ᎤᎵᏬᎢᏍᏗ ᎤᏰᎸᏗ, ᏃᎴ ᎠᏆᏓᏓᏏᏅᎲᏍᏙᏗ ᎯᎯᏃᎮ.” ᎨᏍᏗ ᎭᏩ ᏱᎩ ᎮᎵᏍᎨ ᏧᏓᏏ ᎨᏂᏗ ᏗᎦᎶᏔᏅ ᎤᏩᏛᎮᎢ ᎡᎳᏆᏗ, ᎭᎾᎾ ᎤᎸᏁ ᏩᎶᏏ. ᎠᎴ ᎠᎩᏁᏉᏤᎲ ᎠᏂᏧᏏ ᏧᎾᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏥᎦᏙᎥᏍᎬᎢ ᏕᏥᎪᎾᏛᏛᎩ ᎤᏂᏣᏘ ᎢᏗᎦᏲᎦᏛᏅ ᏗᏆᏤᎵ ᏴᏫ, ᎤᏟ ᎢᎦᎢ ᎤᎵᏂᎩᏛ ᎠᏆᏓᏅᏛᎩ ᏓᏇᎷᎬᎩ ᏗᎩᎦᏴᎵᎨ ᎤᏂᏃᎮᎸᎯ. ”ᏌᎳᏓᎩ?” ᎤᏛᏁ ᎪᏱᏁ. ᎨᏍᏗ ᏧᏄᎪᏔᏅ ᏱᎨᏎ ᎢᏴ ᏫᏚᏂᎪᏗ ᏭᏕᎵᎬ ᎠᏂᏴᏫᏯ, ᎠᏎᏃ ᎦᏣᏄᎳ ᎢᎦᏓ ᎠᏂᏍᎦᏣ ᎠᏂᏴᏫᏯ ᎨᏍᏗ ᏳᎾᎦᏎᏍᏔᎾ, ᎠᏁᎵᏍᎨ ᏰᎵᏉ ᏧᏂᎬᏩᎶᏗ ᎤᏁᏅᏍᏗ ᏱᎨᏒᎾ. ᎾᏍᎩᏯᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎠᏂᏏᏴᏫᎭ ᏥᏚᏯᏙᎮᎸ, ᎠᎴ ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎠᏂᏏᏴᏫᎭ ᏥᏚᏯᏅᎲ, ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᏁᎮᏍᏗ. ᎠᎴ ᎾᏍᎩ ᏄᏍᏗ ᏕᏥᏁᏤᎭ ᏂᎦᏛ ᏚᎾᏓᏡᏩᏗᏒᎢ. ᎪᏍᏗᏳᎵ ᎦᎶᎪᏗ ᎾᏰᎯ ᏗᏁᎲ ᎤᏪᏓᏍᏗ ᎨᏎ ᎭᎾᎾ ᎡᎮ ᏫᏥᎢᎦ, ᎭᏂ ᎡᎶ ᎤᎪᎠᏎᏗ ᎠᏍᎩᏍᎨᎢ. ᏂᎦᏗ ᎠᏂᎧᏔᎮᎢ ᎪᎱᏍᏗ ᎤᏓᏴᎳᏔᏅᎢ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵᎪ. ᏧᏴᏨ ᎢᏣ ᏫᎦᏅᏅ, ᎡᏘᏴ ᏚᏂᎶᏒ ᏓᏃᏫ ᎤᏁᏙᎸ ᏃᎴ ᎠᎾᏓᎾᏅᎥᏍᎩ. ᎢᎤᎷᏤᏃ ᎠᎴ ᏚᏩᏛᎮ ᎠᏂᎵᎾᎡᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᏈᏓ, ᏌᏩᏂ, ᎯᎵᎭᏉᏧ? ᏝᏍᎪ ᏑᏟᎶᏛᏉ ᎢᎪᎯᏛ ᎾᏍᏉ ᎨᏣᏯᏫᏍᏗ ᏱᎨᏎᎢ? “ᏂᎯ ᏣᏤᎵ,” ᎤᏛᏁ ᎡᎶᏗ. ᎤᎾᎵᏍᏓᏴᏅᎯᏃ ᎯᏍᎩᎭ ᎢᏯᎦ ᏴᎵ ᎠᏂᏍᎦᏯ ᎾᏂᎥᎩ, ᏂᏓᏁᏢᏛᎾ ᎠᏂᎨᏴ ᎠᎴ ᏗᏂᏲᎵ. ᎦᎸᎳᏗ ᎠᏓᏅᏖᎵᏙ ᎤᏥᎸ ᎤᏛᏅ. ᏧᏣᏲᏍᏗ ᏄᏍᏕ ᎧᏁᏍᎦ --- ᎨᏍᏗ ᏩᎦ ᏧᎾᏗᎩᏓ ᏩᎾᎢ ᏱᏄᏍᏕ ᎧᏁᏍᎦ. ᎠᎴ ᎥᏝ ᎾᏍᎩᏉ ᏱᏂᎦᎥ, ᎾᏍᏉᏍᎩᏂ ᎠᎩᎵᏯ ᎢᎩᎷᏤᎲ ᎢᏓᎵᎮᎵᎪᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎢᏗᎦᏔᎲ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᎬᏂᏗᏳ ᎾᏓᏛᏁᎲᎢ; ᎾᏍᎩᏃ ᎢᏓᎵᏅᏟ, ᎥᏝ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᏧᏪᏥ ᏱᎩ ᎠᏴ, ᎾᏥᎾᏝᎥᎾᏍᎩᏂ. ᎨᏙᎲ ᏯᏃᏉ; ᎡᏉᏂ ᏕᎨᏴ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᏗᎾᏓᎾᏌᎲᏍᎩ ᎤᏂᎾᏴᎯᏍᏗᏳ ᎨᏒᎢ; ᏗᏆᏤᎵ ᏴᏫ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎦᏚᎲ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎢᎾᎨ ᎨᏒ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎠᎺᏉᎯ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎤᎾᏠᎾᏍᏗ ᎣᏣᎵᏅᏟ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎠᎴ ᎤᏂᏣᏔᏅᎯ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏂᎪᏩᏘᏍᎬ ᎾᏍᎩ ᎤᏂᏍᏆᏂᎪᏗ ᏂᏓᏛᏁᎲ ᎫᏂᏢᎩ. “ᏣᏄᏏ ᏍᎩᏍᏕᎳ ᏫᏂᏯ ᎧᏁᏌᎢ.” ᏰᎵ ᎪᎯᏓ ᏫᎫᏩᏂᎷᏨ ᎦᏚᏏ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎤᏲᎢ ᏱᏂᏓᎦᎵᏍᏔᏂ ᎤᏁᎵᏎ, ᎱᏁᏅᏎ ᏱᏓᏚᎬᎾ ᎡᎶ ᏧᎾᎳᎩᏒ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ, ᏣᎬᏫᏳᎯ, ᏞᏰᏃ ᎢᎸᎯᏳ ᏯᎩᎪ ᎰᎱᏍᏗ ᎦᏓᎭ ᎠᎴ ᏂᎦᏅᎦᎸᎲᎾ. ᏃᏗ ᎤᏢᏁ. ᎣᏍᏓ ᎭᏂ ᏙᏱ.” ᎭᎾ ᏪᏙᎮ ᏧᏍᏆᏴᏍᏗ, ᎠᏑᏰᎯᏙᎮ. ᎤᏍᏗ ᎢᏈᎬᎢ ᏝᏃ ᏙᏳ ᎤᏬᏚᎯ ᏱᎩᏎᎢ, ᎠᏎᏃ ᎠᏧᏣ ᎤᎨᏳᏎᎢ ᎢᏈᎬᎢ, ᎤᏬᏚᎯ ᎡᎵᏍᎨᎢ. ᏫᎵᎻ ᎦᎷᏯᏍᏗ ᎠᎩᏩᏛᎲ ᏩᎩᎷᏣᏉ. ᎢᎦᏛᏃ ᎤᏃᎯᏳᏅᎩ ᎾᏍᎩ ᎤᏬᏂᏒᎢ, ᎢᎦᏛᏃ ᎥᏝ ᏳᏃᎯᏳᏁᎢ. ᎬᏩᏯᏫᏎᏃ ᎤᎾᏚᎵᏍᎨ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎬᏩᏓᏅᏬᏗ ᎨᏒ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎾᏍᎩ ᎬᏩᏰᎢᎵᏓᏍᏗᏱ. ᎨᏍᏗ ᏰᎵᏉ ᏱᎩ ᏇᎯ ᎤᏩᏌ. “ᎣᏁ ᎤᏅᏏᏴᎢ.” ᎯᎠ ᏍᎩᏂᏃᏅ ᏑᏓᎴᎩ ᎤᏩᏒ ᎠᎩᏁᏨᎢ, ᎯᎠ ᎾᎩᏪᏒ ᎠᏇᎷᏅ ᎠᏂᎦᏔᎲ ᏥᏙᎬᎢ; ᏗᎴᎯᏐᏗ ᎨᏒᎠᏲᎱᏒ ᏅᏗᎦᎵᏍᏙᏗ ᏍᎩᏱᎵᏙᎭ ᎪᎯ ᎢᎦ ᏥᎩ. ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏌᏉ ᎤᏣᎴᏍᏗ ᎤᎦᏔ ᎡᎳᏗ ᏄᏬᏨᎾ ᎠᎴ ᏄᎪᏒᎾ ᏱᎩ, ᎤᏩᏒᏉ ᎨᏐ ᏂᎪᎯᎸᎢ; ᎢᏳᏍᎩᏂ ᎤᎪᎯ ᎤᏣᏙ ᎧᏁᏉᎪᎢ. “Ꭵ, ᎤᏙᎯᏳᎭ,” ᎤᏓᏅᏖᏙᏗ ᏄᏪᏎ ᏌᎳᏓ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪ ᏴᎪᎯᎩ ᎢᏧᎳᎭ ᎢᏁᏓ, ᎠᏏᏍᎪᏃ ᎥᏝ ᏱᏍᎩᎦᏙᎥᏍᎦ, ᏈᎵᎩ; ᎩᎶ ᎠᏴ ᎠᎩᎪᎲᎯ ᏥᎨᏐᎢ, ᎤᎪᎲᎯ ᎨᏐ ᎠᎦᏴᎵᎨᎢ; ᎦᏙᏃ ᎯᎠ ᏂᎯᏪᎠ; ᏍᎩᎾᏄᎪᏫᏏ ᎠᎦᏴᎵᎨᎢ? ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏁᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ ᎠᎴ ᎠᎦᏔᎲ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᏧᏭᎪᏓᏁᏗ ᏥᎩ ᏗᏅᏃᏛ ᎠᎴ ᏧᏂᏲᎱᏒᎯ ᎾᎯᏳ ᎦᎾᏄᎪᏥᎸᎭ ᎠᎴ ᎤᎬᏫᏳᎯ ᎿᏉ ᏂᎦᎵᏍᏔᏅᎭ, ᎠᏆᏍᎫᏆᏛ ᏩᏍᏛ ᎩᎦᎨ ᎾᏆᎵᏍᏔᏅ, ᏓᏆᎴᏅ ᎦᏲᏟ ᎠᏆᎵᏍᎫᎭᏴ, ᎠᎩᏅᎪᏨ. ᎠᏰᎸᏰᏃ ᏌᏉᏉ ᏥᎩ, ᎠᎴ ᎤᏣᏘ ᏥᏚᏫᏞᏫᏒ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏌᏉ ᎠᏰᎸ ᏚᏫᏞᏫᏒ, ᎤᏣᏘ ᎨᏒ, ᏌᏉᏉ ᎠᏰᎸ ᏥᏂᎦᎵᏍᏗᎭ; ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏍᏗ ᎦᎶᏁᏛ. ᎩᎶᏰᏃ ᏣᏔᏲᎯᎰ ᎠᏥᏁᎰᎢ, ᎩᎶᏃ ᏧᏲᎰ ᎠᏩᏘᏍᎪᎢ, ᎩᎶᏃ ᏥᏫᎬᏂᎰ ᎠᏥᏍᏚᎢᎡᎰᎢ. “ᎭᏕᏬ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ. ᎦᎵ ᎤᏃᎵᏨ ᏱᎨᏎ ᎠᏎ ᎤᏁᏅᏍᏘ ᎨᏒ, ᏳᎾᏛᏅᎢᏍᏕ ᎠᏎᏉ ᎢᏳᎾᎵᏍᏔᏁᏗ. ᎾᏍᎩᏃ ᎤᏂᏅᏍᏗ ᎤᏃᏪᎳᏁ ᎯᎠ ᏄᏅᏁᎴᎢ; ᎣᎩᏅᏏᏛ ᎠᎴ ᏦᎦᏁᎶᏗ ᎠᎴ ᎣᏣᏓᏅᏟ ᏫᏨᏲᎵᎦ ᎢᏣᏓᏅᏟ ᏗᏣᏓᎴᏅᏛ ᏴᏫ ᎥᏘᏍᎩ ᎠᎴ ᏏᎵᏱ ᎠᎴ ᏏᎵᏏᏱ ᎢᏤᎯ. ᏅᏯ ᏓᎵᎦᎷᏯᏍᎬ ᏗᏓᎴᎲᏍᎦ ᎦᏓ. ᎾᎿ ᎾᏍᏉ ᏂᎯ ᎢᎸᎯᏳ ᏥᏤᏙᎲᎩ, ᎾᎯᏳ ᎾᏍᎩ ᏂᏣᏛᏁᎲ ᏥᏤᎲᎩ. ᏚᎦᏔᎾᏫᏍᏔᏅ ᏧᎦᏌᏬᎸ ᏃᎴ ᎡᏝᏪᎯ ᏄᎵᏍᏔᏅ ᏩᏏᏓᏂ . ᎾᏍᎩᏃ ᎤᏠᏱᏉ ᏍᎩᏯᎫᏴᏓᏁᎲ -ᏗᏇᏥ ᏥᎦᏥᏬᏁᏗᏍᎪ ᎾᏍᎩᏯ ᎢᏨᏬᏁᏗᎭ-ᎾᏍᏉ ᏂᎯ ᏗᏣᏛᏃᎯ. ᎯᎠ ᎾᏍᎩ ᏑᎾᏓᎴᎩ ᎨᏒ ᎠᎾᎵᏥᏙᎲᏍᎦ ᎦᎶᏁᏛ ᎠᏂᏃᎮᎭ ᎠᏗᏒᏍᏗᏉ ᎨᏒ ᎤᎾᏚᎵᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎥᏝᏃ ᏄᎾᏠᎾᏍᏛᎾ ᎨᏒ ᏯᏅᏗᎭ, ᎤᏂᏁᏉᏍᏗᏱ ᎤᏂᏰᎸᎭ ᏥᎩᎵᏲᎬ ᎥᏆᎸᎢᏛ ᎨᏒᎢ. ᏌᎳᏓ ᏥᏄᏍᏕ ᎤᏐᏱ ᎨᏎᎢ. ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎩᎶ ᎢᏳᏍᏗ ᎡᎮ ᎤᏪᎿᎢ ᎠᏍᎦᏯ ᎾᏍᎩ ᎤᏪᎧᎮ ᎤᎦᏌᏯᏍᏗᏕᎩ ᎤᎿᎥᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏥᎳᏫᏎᎲ ᏧᎬᏩᎶᏗ ᎤᏓᏤᏪᎸ ᎠᏥᏃᏁᎴᎢ. ᎤᏂᏣᏛᎩᏃ ᎠᏂᏧᏏ ᎤᎾᏛᎦᏅᎯ ᎨᏒᎩ ᎾᎿ ᎡᏙᎲᎢ, ᎠᎴ ᎤᏂᎷᏨᎩ ᎥᏝ ᏥᏌ ᎤᏩᏒ ᎨᏒ ᏱᏅᏧᎵᏍᏙᏔᏁᎢ, ᎾᏍᏉᏍᎩᏂ ᎳᏏᎳ ᎤᏂᎪᏩᏛᏗᏱ ᎤᏂᏰᎸᏒᎩ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏧᎴᏔᏅᎯ. ᏙᎩᎾᏓᏍᎦᏍᏓᏁᎴ Ꮑ ᎠᏰᏟ ᏅᏃ, ᎦᏙᎬ ᎦᏟᎲ. ᎢᏳᏰᏃ ᎾᏍᎩ ᎨᏥᏐᏅᎢᏍᏔᏅᎢ ᎤᏃᎯᏍᏓᏁᎯ ᏱᏂᎦᎵᏍᏗ ᎡᎶᎯ, ᎦᏙ ᎤᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏕᎨᎦᏓᏂᎸᏨᎭ, ᏚᏂᏲᎱᏒᏍᎩᏂ ᏚᎾᎴᎯᏌᏅ ᎨᏎᏍᏗ. ᎠᎬᏱ ᎢᏣ ᎤᏓᎾᏫᏛᎮ ᏲᎾ, ᎠᎼ ᎭᏫᏂᏨ ᎤᏦᎥᏍᏔᏁ ᎠᏧᏣ, ᎦᎵ ᏂᎦᎨᏒ ᎬᏘ. ᏂᎯᏍᎩᏂ ᎾᏍᎦᏅᎾ ᎢᏥᎶᏁᎥ, ᎠᎴ ᎢᏥᎦᏔᎯᏳ ᏂᎦᎥᎢ. ᏫᎵᎻ ᏍᏉ, ᎢᏳᏍᏗᏉ ᎠᎩᏍᎩ, ᎤᏁᎸᎮ. ᎾᏍᎩ ᎤᏙᎯᏳᏒ ᏥᏬᏓᎪᎾᏛᏗ ᎤᏍᏗᎩᏳ ᎨᏒ ᏂᎦᎥ ᎤᏰᏌᏛ ᎤᏓᏅᎵᏰᎥ ᎦᏂᏱᏍᎨ ᏅᏓ, ᎣᏍᏓ ᎠᎪᏩᏛᏗ ᎨᏎ ᏓᏏᎳᏛ. ᎠᏴ ᎾᏍᎩ ᎢᎸᎯᏳ ᏥᏐᏢᏗᏍᎩ ᏥᎨᏒᎩ, ᎠᎴ ᎤᏲ ᎢᏗᎬᏁᎯ, ᎠᎴ ᏗᎦᏂᏐᏢᏗ; ᎠᏎᏃ ᎥᎩᏙᎵᏨᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏂᏥᎦᏔᎿᎥᎾ ᎨᏒᎢ, ᎠᎴ ᎾᏉᎯᏳᏒᎾ ᎨᏒ ᎾᏍᎩ ᎾᏆᏛᏁᎸᎢ. ᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎢᏳᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏂᎦᏛ ᎢᎸᎯᏢ ᏱᏚᏂᎳᏫᏦᏅ, ᎠᎴ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏱᏓᏂᏬᏂᎭ, ᏳᏂᏴᎵᎸᏃ ᎾᎿᏂ ᎾᏂᎦᏔᎾᎥᎾ, ᎠᎴ ᎠᏃᎯᏳᎲᏍᎩᏂ ᏂᎨᏒᎾ, ᏝᏍᎪ ᏚᏂᎸᏃᏘᎭ ᏴᎬᎾᏛ? ᎾᏍᎩᏃ ᏑᎾᏓᎴᎩ ᏴᏫ ᏗᎬᏩᏂᎾᏢᏅᎯ ᏙᏓᎦᏥᏳᎪᏓᏁᎵ, ᎣᏂᏃ ᎤᏂᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎠᎴ ᎠᏂ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗ ᎨᏎᏍᏗ, ᎤᏛᏁ ᎤᏁᎳᏅᎯ. ᏂᎦᏓ ᏧᎵᎬᏩᏟ ᎨᏒ ᎤᏃᏪᎳᏅ ᎪᏪᎵ. ᏫᎵᎻ ᎤᏣᏪᏐᎸᏍᏕ ᏚᏯᏪᎢᏍᏔᏅ ᏄᎵᏍᏔᏂᏙᎸ. ᎹᎦ, ᎡᎵᏍᏓᎦ, ᏗᎹ, ᎷᎦ, ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎤᏒᎢᏴ ᏌᎪᏂᎨ ᎠᏑᏫᏍᏙᏗ ᎠᏫᏍᎩ ᎤᏓᎵ ᏓᏳᏩᏂᎸ ᎦᎶᎯᏍᏗ, ᎣᎩᎾᏕᏒᏅ ᏦᎩᎭᏄᏫ ᏙᏍᏗᏙᎬ, ᎨᏍᏗ ᎠᏒᎩ ᎦᏂᏏ ᏲᎩᎾᏕᏒᎾ. ᎯᎠᏃ ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎡᏗᎦᏔᎲᎢ, ᎾᏍᎩ ᏱᏗᎩᏍᏆᏂᎪᏗ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ. ᎠᎴ ᎠᏴ ᎥᎩᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᎥᏆᎵᏍᎪᎸᏓᏁᏗᏱ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎠᎩᏍᏚᎢᏍᏗᏱ ᏥᎣᎵ ᏂᏥᏍᎦᎢᎲᎾ, ᎬᏂᎨᏒ ᎢᏯᏋᏁᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎣᏍᏛ ᎧᏁᎮᏛ; ᎠᏂᏆᎵᏏᏃ ᎬᏩᏛᏛᏅ ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ, ᏚᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎥᏝ ᎬᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ ᎦᎷᏨᎭ. ᏔᎵᏁᏃ ᏫᎤᎾᏙᏓᏋ ᎠᎴᏉ ᏂᎦᏛ ᎦᏚᎲ ᏂᏚᏂᏔᏫᏤ ᎤᎾᏛᏓᏍᏔᏂᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎦᎶᏁᏛᏰᏃ ᎤᎾᏤᎸᎯ ᎠᎴ ᎠᎾᏙᎴᎱᏍᎩ ᎤᎾᏤᎸᎯ ᏛᏂᎾᏄᎪᏥ, ᎠᎴ ᎠᏂᎾᏄᎪᏫᏍᎨᏍᏗ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎾᏍᎩ ᏧᏂᎶᏄᎮᏗᏱ, ᎢᏳᏃ ᏰᎵᏱᎩ, ᎾᏍᏉ ᎨᎦᏑᏰᏛ. ᏄᎬᏫᏳᏒᏃ ᏗᏓᏘᏂᏙᎯ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏤᏘ ᎠᏆᎫᏴᏛ ᎯᎠ ᎾᏍᎩ ᎠᏆᏓᏤᎵᎦᏯ ᎨᏒᎢ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏴᏍᎩᏂ ᎠᏆᏓᏤᎵᎦᏯ ᎠᏆᏕᏅᎩ. ᎬᏩᏚᏫᏛᏃ ᏚᎧᎿᏂᏙᎸ ᎤᏬᎸᎾᎥ ᎠᏂᏂ ᏚᎧᎾᏅ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎡᏥ, ᎠᎴ ᎣᏣᎵᏅᏟ? “Ꭵ, Ꭵ, Ꭵ!” ᎾᎯᏳ ᎤᎷᏤ ᏣᏂ ᏗᏓᏬᏍᎩ ᎠᎵᏥᏙᎲᏍᎨ ᎢᎾᎨ ᏧᏗᏱ, ᏤᎩᏏᏂ ᎤᏁᎸ ᎨᏎ ᎢᏴ ᎦᏙᎬ ᎦᏄᎾᏓᎴᎩ ᎠᏂᎫᏌ ᏥᏓᎾᏟᎮ, ᏧᏤᎵ ᎠᏂᏫᎾ ᏓᏘᎭᏁᎲ, ᎠᏯ ᎢᏳᎾᏛᎾ. ᎠᏎᏃ ᏗᏂᎿᎸᏙᏍᏗᏱ ᏂᎨᏒᎾ, ᎥᏓᎵ ᎮᎾ, ᎠᏑᏗᏃ ᏫᏣᏓᎡᏒᎭ, ᎢᎬᏱᏱᏃ ᎯᏴᎩᏛ ᎠᏣᏗ ᎯᏁᏒᎭ, ᎠᎴ ᎯᏍᏚᎢᏒ ᎠᎰᎵ ᎠᏰᎵ-ᎠᏕᎸ ᏘᏩᏛᎯ; ᎾᏍᎩ ᎯᎩᏒᎭ ᎠᎴ ᏕᎯᏁᎸᎭ ᎠᏴ ᎩᎾᎫᏴᏗ. ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᏧᎾᏓᎾᏫᏛᎮ. ᎤᏍᏆᏙᎾᏃ, ᎤᏂᎾᏅᎩᏒ ᏧᏪᏯ ᏗᏣ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᎧᏃᎮᎸᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᎩᏁᎸ ᏫᎾᏍᏛᎾ ᎬᏂᏛ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎬᏂᏛ ᎤᏪᏥ ᎤᏤᎵᎦ ᎨᏒᎢ. ᎤᏔᎴᎦᏒ ᏭᏴᎴᎢ, ᏫᏥ ᏭᏩᏌᏙᏰᎢ ᏌᏌ ᎤᏪᏥ. ᎱᎷᏣ ᎦᏁᎮᎢ ᎦᏓᎭ ᎤᏁᎦ ᎠᏍᏓ. ᎢᏳᏃ ᎩᎶ ᎪᎯᏳᎲᏍᎩ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏪᎧᎮᏍᏗ ᏧᏃᏑᎶᏨᎯ, ᎤᏅᏒᏉ ᏗᏂᏍᏕᎵᏍᎨᏍᏗ, ᏞᏍᏗᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏱᏚᏂᏓᏁᎴᏍᏗ, ᎾᏍᎩ ᏗᎬᏩᏂᏍᏕᎸᏗ ᏱᎩ ᎤᏙᎯᏳᏒ ᏧᏃᏑᎶᏅᎯ ᎨᏒᎢ. ᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏍᏕᎢ ᎿᏉ ᎤᏣᏘ ᎠᏎ ᎢᏳᎩᎵᏲᏨᎯ ᏱᏂᎦᎵᏍᏗᏍᎨ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ; ᎪᎯᏍᎩᏂ ᎨᏒ ᎤᏩᏒ ᎠᏓᎵᏍᎪᎸᏗᏍᎬ ᎠᏍᎦᏂ ᎨᏒ ᎠᎲᏍᎬᎢ ᏌᏉ ᎬᏂᎨᏒ ᏄᏓᏛᏁᎸ ᎤᎵᏍᏆᎸᏗ ᏕᎨᏌᏗᏒᎢ. ᎢᏳᏍᏗᏉ ᎢᏳᎾᏛᏁᏗ ᏴᏫ!” ᏚᏌᏬᎴ ᏫᎵᎻ. ᎤᏤᏍᏙ ᎤᏩᏌᏆᎴᎲ ᎾᎥᏂ ᎤᎵᏍᏛᏧᏅ. ᏂᎦᏗᏳᏰᏃ ᏧᏓᎴᏅᏛ ᏤᎭ ᏂᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎾᏍᎩ ᎤᏣᏘ ᎬᏩᎦᏘᏯ ᎤᏙᏓᎵᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏣᏘ ᎦᎸᏉᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏂᏣᏘ ᎠᎾᏄᎮᎵᎬᎢ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏢᎬᎩ, ᎳᏏᎳ ᏧᏙᎢᏛ, ᏇᏗᏂᏱ ᎡᎯ, ᎺᎵ ᎠᎴ ᎤᎸᎢ ᎹᏗ ᎤᏂᏚᎲᎢ. ᎦᏅᏍᏓ ᏭᏴᎮ. ”ᎭᏩ,” ᎤᏛᏁ ᏌᏌ, ”ᎨᏍᏗᏗ ᎠᏯ ᎪᎱᏍᏗ ᎠᏆᏓᏅᏖᏙᏗ ᏱᎩ. ᏥᏍᎦᎲᎾ. ᎤᏁᎳᏅᎯ ᏗᎩᏙᏓ ᎤᎾᏤᎵᎦ ᏕᎤᎴᏔᏅ ᏥᏌ, ᎾᏍᎩ ᏤᏥᎸᎩ ᎨᏛ ᏤᏣᏛᏅᎩ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᏗᏥᎨᏫ ᏱᎨᏎᎢ ᎥᏝ ᏱᎨᏥᏍᎦᏅᎨᎢ, ᎠᏎᏃ ᎣᏥᎪᏩᏘᎭ ᎢᏣᏗᎭ; ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏥᏍᎦᎾᎯᏳ ᎨᏒ ᎠᎵᏃᎯᏯᏍᎦ. ᎤᎵᏍᏆᎸᏗᏃ ᎠᎨᏴ ᎾᏍᏉ ᎤᏲᎱᏒᎩ. ”ᏧᏍᏆᏅᎾ.” ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎩᏍᏆᏂᎪᏕᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ, ᎥᏞᏍᏗ ᎤᏪᏘ ᎠᎪᏙᏗ ᎬᏗ, ᎠᎴ ᎥᏞᏍᏗ ᎤᏲ ᎠᎴ ᎠᏍᎦᏂ ᎨᏒ ᎠᎪᏙᏗ ᎬᏗ, ᏂᏓᎪᏔᏅᎾᏍᎩᏂ ᎦᏚ ᏄᏠᎾᏍᏛᎾ ᎨᏒ ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎬᏗ. ᎩᎶᏃ ᎤᏩᏒᏉ ᎢᎠᏓᏌᎳᏗᏍᎨᏍᏗ ᎡᎳᏗ ᎢᏯᎬᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏩᏒᏉ ᎡᎳᏗ ᎾᏓᏛᏁᎮᏍᏗ ᎠᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ. ᎤᎾᏰᎯᏍᏗᏉᏍᎩᏂ ᎣᏓᏅᏛ ᎠᎦᏖᎾᏍᏗᏱ ᏗᎫᎪᏙᏗ ᎢᎦ ᎨᏒᎢ, ᎠᎴ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎠᏥᎸ ᎾᏍᎩᏯ, ᎾᏍᎩ ᎤᏂᏛᏙᏗ ᏥᎩ ᎬᏩᏍᎦᎩ. ᏗᏂᎨᏫ ᎠᏂᎪᏩᏖᎭ, ᏗᏂᏲᎤᎵᏃ ᎠᏁᏙᎭ, ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏚᎾᏗᏩᏍᎦ, ᏧᏂᎵᎡᎾᏃ ᎠᎾᏛᎩᎭ, ᏧᏂᏲᏞᏒᎯᏃ ᏕᎨᎦᎴᏗᎭ ᎤᏲᏃ ᎢᏳᎾᏛᎿᏕᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎨᎦᎵᏥᏙᏁᎭ. ᎤᎬᏫᏳᎯᏃ ᎤᎦᏔᎲᏒ ᏚᎧᎿᏁ ᏈᏓ. ᏈᏓᏃ ᎤᏅᏓᏕ ᎤᏁᏨ ᎤᎬᏫᏳᎯ, ᎯᎠ ᏥᏄᏪᏎᎴᎢ; ᎠᏏᏉ ᏄᏴᎳᏒᎾ ᏣᏔᎦ ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ. ᎢᏓᎵᏅᏟ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ ᎢᏣᏓᏙᎵᏍᏗᏍᎬᎢ. ᎢᏳᏰᏃ ᎩᎶ ᎠᏛᎩᏍᎩᏉ ᏱᎩ ᎢᏯᏛᏁᎯᏃ ᏂᎨᏒᎾ ᏱᎩ ᎧᏃᎮᏛ ᏂᎦᏪᏍᎬᎢ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏓᏤᎸ ᏣᎪᏩᏘᏍᎪ ᏄᏍᏛ ᎤᏩᏒ ᎤᎧᏛᎢ ᎠᏓᎨᏗᏱ; ᎾᏍᎩ ᎾᏍᏉ ᎬᏂᎨᏒ ᎢᏲᎲᏁᎸᎯ ᏕᏣᏓᎨᏒ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ. ᏫᏥᎢᎦ ᎨᏒ ᎤᏚᎵᏍᎬ ᎤᏓᎾᏅᏗ, ᏧᎾᏗᏅᏗ ᏦᎯᏍᏙᏗ ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎨᏯ ᏧᎾᎭᎾᏬ. ᎦᎵᏉᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎳᏅᏛᏉ ᎦᎸᎶᎢ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎠᎴ ᎠᏍᏓᏯ ᏗᎧᏁᎬ ᎩᎶ ᎦᎸᎳᏗ ᏗᎦᏔᏫᎢᏍᏗᏱ ᎠᎴ ᎾᎿ ᏗᎦᏍᎩᎸ ᏓᏳᏓᎴᏅᎩ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᎿᏉ ᎠᎵᏍᏆᏓ. ᎤᏃᎮᎸ, ᏳᏚᎵᏍᎬᎾ ᎨᏒ ᎤᏬᎯᏳᏗ ᎤᎵᏍᏆᎸᏗ ᏓᎪᏩᏘᏍᎬ. ᎠᏁᎮᏃ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏏᏫ ᏧᏙᎢᏛ ᏧᏪᏥ ᎠᏧᏏ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎾᏍᎩ ᎾᎾᏛᏁᎮᎢ. ᎠᏎᏃ ᎤᏩᏙᎯᏴᏓ ᎠᏆᏓᏅᏔ. ᎨᏍᏗ ᏐᏉ ᏔᎵᏍᎪ ᎢᏳᏕᏘᏴᏓ ᎤᎶᏐᏅ ᏱᎨᏎ, ᎠᏌᎻᏓ ᎤᏩᏌ. ᎪᎯᏳᏗᏍᎪ ᎨᏒ ᏤᎭ? ᏣᏤᎵᏛ ᏦᎯᏳᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᏅᏩᏙᎯᏍᏛ ᎤᏓᏅᏖᏍᏗ ᎩᎶ ᏄᏍᏛ ᎣᏏᏳ ᎤᎡᎸᏒ ᎬᏗᏍᎬ ᎤᏩᏒ ᏂᏓᏓᏚᎪᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ. ᎯᎠᏃ ᎾᏍᎩ ᎧᏃᎮᏛ ᎣᏣᏛᎦᏁᎸᎯ ᏥᎩ ᎠᎴ ᏥᏨᎾᏄᏫᏎᎭ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᎦᎦᏘ ᎨᏒᎢ, ᎠᎴ ᎤᏍᏗ ᎤᏅᎤᎵᏏᎩ ᏄᏪᎲᎾ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᏥᏌ ᎨᎵᎵ ᎤᏪᏙᎸᎩ; ᎥᏝᏰᏃ ᏳᏚᎵᏍᎨ ᏧᏗᏱ ᎤᏪᏓᏍᏗᏱ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏂᏧᏏ ᎠᎾᏁᎶᏗᏍᎬ ᎬᏩᎯᏍᏗᏱ. ᎠᎴ ᎠᏴ ᏫᏥᎦᏛ ᎢᏥᎦᏔᎭ, ᎠᎴ ᏫᎦᏅᏅ ᎢᏥᎦᏔᎭ. ᎠᎵᏌᎳᏓᏍᎩ ᎤᏃᎴ ᎢᏳᏍᏗ ᎤᏃᏴᎬ ᏗᏁᎬ ᏧᏂᎨᎮᎩ. ᏆᎴᏗᏃ ᏚᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᏚᎵᏍᎪ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᏗᏳᏲᎯᏎᏗᏱ. ᎢᏳᏍᎩᏂᏃᏅ ᎩᎶ ᎡᎯᏍᏗ ᏧᏓᏅᏓᏗᏍᏔᏅᎯ ᎨᏎᏍᏗ, ᎥᏝ ᎠᏴᏉ ᎡᎯᏍᏗ ᏯᏆᏓᏅᏓᏗᏍᏔᏅ; ᏂᎯᏍᎩᏂ ᏂᏥᎥ ᏰᎵ ᎡᎯᏍᏗ ᎢᏣᏓᏅᏓᏗᏍᏔᏅ; ᎾᏍᎩ ᏥᎶᏒᏍᏓᏁᏗᏱ ᏂᎨᏒᎾ ᏥᎳᏫᏎᎲᎢ. ᎾᏍᎩᏍᎩᏂ Ꮎ ᏓᎾᎵᏍᎪᎸᏗᏍᎬᎢ, ᏂᏓᏕᏘᏴᎯᏒ ᎤᎾᏅᏓᏗᏏᏐᏗᏉ ᏂᎦᎵᏍᏗᏍᎪ ᎤᏂᏍᎦᏅᏨᎢ. ᎠᏂᏦᎢᏃ ᎠᏂᏃᎮᏍᎩ ᎡᎶᎯ, ᎠᏓᏅᏙ, ᎠᎹ, ᎠᎴ ᎩᎬ, ᎾᏍᎩᏃ ᎯᎠ ᎠᏂᏦᎢ ᎨᏒ ᎤᏠᏱ ᎠᏂᏃᎮᎭ. ᎾᏍᎩᏃ ᏥᏗᎪᏩᏗᎭ ᎢᎩᎧᎲ ᎠᏥᎸᏉᏗ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎾᏍᎩ ᎦᎸᎶ ᏭᎶᏒᎯ ᏥᎩ, ᎾᏍᎩ ᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎠᏍᏓᏯ ᏕᎩᏂᏴᏎᏍᏗ ᏕᏓᏁᎶᏛᎢ. ᎦᏰᎵᏍᏗ, ᎠᏂᏔᎵ ᏄᎾᏓᎴ ᎠᏂᏍᎦᏯ ᎭᏂ ᎡᎶ, ᏂᏓᏅᏁ ᎠᏂᏳᏩᏁᎦ. ᎯᏂᏅᎪᎢ!” ᏫᏚᏐᏅᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏒᎩ; ᎬᏂᏳᏉ ᎡᏥ ᎠᎴ ᏱᏣᎵᏅᏟ. ᎤᏃᎴ ᎤᏤᎵ ᎢᎦ ᎨᏎ! ᎢᏨᏒᏰᏃ ᎣᏏᏳ ᎢᏥᎦᏔ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎢᎦ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᎦᏃᏍᎩᏍᎩ ᏒᏃᏱ ᏥᎦᎷᎪᎢ. ᎠᏴᏍᎩᏂ ᎢᏓᎵᏅᏟ, ᏞᎦ ᎣᎦᏓᏓᎴᏔᏅ ᏦᏥᏰᎸᎢ, ᎥᏝᏃ ᏦᎩᎾᏫᏱ, ᎤᏟ ᎢᎦᎢ ᎣᎦᏟᏂᎬᏁᎸᎩ ᏕᏣᎧᏛ ᏦᎩᎪᏩᏛᏗᏱ, ᎤᏣᏘ ᎠᏚᎸᏗ ᎣᎬᏔᏅᎩ. ᎠᎴ ᎾᏍᏉ ᏍᏆᏛᏅᎢᏍᏓᏁᎸᎭ ᏍᎩᏍᏆᏂᎪᏙᏗᏱ; ᎤᏚᎩᏰᏃ ᎠᏋᎭ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎢᏳᏩᏂᏐᏗᏱ ᏔᎵᏁ ᏫᏨᎷᏤᏗᏱ. ᏉᎳᏃ ᎤᏙ ᎤᏪᏥ ᎤᏛᎦᏅ ᎤᏂᎭᎷᎬᎢ, ᎤᏬᏅᏒᎩ, ᏗᏐᏴ ᏭᏴᎸᎩ, ᎠᎴ ᏭᏃᏁᎸᎩ ᏉᎳ. Ꭷ, ᎢᏓᎵᏅᏟ, ᎢᏨᎸᏉᏗᎭ ᎾᏍᎩ ᎠᏴ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᏂᏣᏛᏁᎲ ᏍᎩᏯᏅᏓᏗᏍᎬᎢ, ᎠᎴ ᎢᏥᏍᏆᏂᎪᏗᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏕᏨᏲᎯᏎᎸᎢ. ᎠᏎᏃ ᏈᏓ ᎤᎴᏅᎮ ᏚᏃᎮᎮᎴ ᏂᎦᏛ ᎣᏍᏛ ᎤᏱᎸᏎᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᎴ ᎥᏝ ᎦᏓ ᎠᏂ ᏳᏁᎴᎢ ᏂᎤᏟᏍᏕ ᏏᎳᏏᏅᎯᏉ ᎢᎩᏛ, ᎠᏎᏃ ᎤᏚᎢᏍᏓᏁᎴ ᎾᏍᎩ ᎤᏤᎵ ᎢᏳᏩᏁᏗᏱ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎠᏏᏉ ᎤᏪᏥ ᏁᎲᎾ ᎨᏎᎢ. ᎠᏎᏃ ᏚᏂᏁᏥᎸ ᎤᏂᏄᎪᎢᏍᏗᏱ ᏓᏂᎳᏫᎥᎢ ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏃᎮᎴᎢ, ”ᎡᎵᏍᏗ ᎤᏲ ᎨᏎᎢ,” ᎤᏛᏁ ᏌᏌ. ᏧᏙᏓᏋᏓ ᏃᎴ ᎤᏒᎯ ᎤᏩᏙᎯᏴᏓ ᎨᏎ. ᎾᎿ ᎬᏩᏍᏓᏴᏅᎩ; ᎠᎴ ᎹᏗ ᏚᏕᎳᏍᏔᏅᎩ; ᎳᏏᎳᏍᎩᏂ ᎨᎸᎩ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ. ᏗᎦᏍᎩᎶ ᏕᎦᏍᎩᎸ ᎠᏲᏓᏌᎲ, ᎠᏎᏃ ᎠᎩᏠᏫᏍᏗ ᎠᏆᎵᏍᏛᏦᏅ, ᏥᏐᎯ ᎣᎭᏁ ᎢᏣ ᎨᏒ ᎠᏍᏚᏗ. ᎤᏚᎩ ᏂᎨᏒᎾ ᏫᎦᎶᎯᏍᏗ ᎠᎵᏌᎳᏗᏍᎬ ᏫᎦᎶᎯᏍᏗ, ᎤᏬᏚᏨ ᎡᎶ ᎦᎸᏉᏔᏅ ᏃᏉ ᎤᎾᏰᎯᏍᏙ ᏃᎴ ᎤᏍᎦᏎᏗ. ᎠᎩᎾᏃ ᏥᏌ ᎤᎾᏘᏃᎮᎴᎢ, ᎠᎴ ᏧᎾᏄᏬ ᏚᏂᏢᏁᎴᎢ; ᏥᏌᏃ ᎤᎩᎸᏔᏁᎢ. ᏃᎴ ᏄᎾ ᎤᏆᎶᎬ ᎭᏫᏂᏣ ᎤᎾᏓᏍᏔᎣᎢ ᎠᎾᏓᎶᏂᎨ ᏧᏪᏥ ᏄᏃ ᎠᏂᎵᏙ ᏧᏂᏅ. ᎤᏓᏅᎯᏓ ᏅᏩᏍᏕ ᎤᏒᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏗᏳ ᏗᎫᏴᎡᏗ ᎨᏒ ᏕᏣᎫᏴᎡᎮᏍᏗ; ᎠᏰᎵ ᎡᏣᎫᏴᎡᏗ ᎨᏒ ᎠᏰᎵ ᎡᏣᎫᏴᎡᎮᏍᏗ; ᎢᏥᏃᏔᏅᏗᏱ ᎢᏣᎵᏍᎪᎸᏓᏁᎸ ᎡᏣᎫᏴᎡᏗ ᎨᏒ ᎡᏣᎫᏴᎡᎮᏍᏗ; ᎾᏍᎩ ᎡᏥᎾᏰᎢᏍᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎡᏥᎾᏰᏍᎨᏍᏗ; ᎾᏍᎩ ᎡᏥᎸᏉᏙᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎡᏥᎸᏉᏕᏍᏗ. ᎢᏨᏒᏃ ᏕᏣᏤᎴᏍᏗ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏣᏂᎦᏘᏲ ᎤᏂᏅᏏᏙᎯ, ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᏕᎨᎦᏨᏍᏗᏍᎬ ᏭᏪᏙᎸᎯ; ᎾᏍᎩᏃ ᏳᎷᏨ ᎠᎴ ᏳᏩᏂᎸ, ᎾᏍᎩ ᎩᎳᏉ ᎢᏴᏛ ᏫᎬᏩᏍᏚᎢᎡᏗᏱ. ᎥᏝ ᎠᎴ ᎡᏆᎭᎻ ᏧᏁᏢᏔᏅᏛ ᏥᎩ ᎾᏍᎩ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏛ ᏧᏪᏥ ᏱᎩ; ᎡᏏᎩᏉᏍᎩᏂ ᏚᏙᎥ ᎨᏥᏯᏅᏗᏍᎨᏍᏗ ᏣᏁᏢᏔᏅᎯ. ᎠᎴ ᏂᎦᎥᏉ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎪᎯ ᎨᏒ ᎥᏝ ᎣᏍᏛ ᎣᏓᏅᏓᏗᏍᏗᏍᎩ ᏱᎩ, ᎤᏲᏉᏍᎩᏂ; ᎣᏂᏍᎩᏂᏃᏅ ᎢᏴᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎪ ᏚᏳᎪᏛ ᎨᏒ ᎤᎾᏄᎪᏫᏒᎯ, ᎾᏍᎩ ᎢᏳᎾᎵᏍᏓᏁᎸᎯ. ᏥᏌᏃ ᎠᎦᏬᎥ, ᎩᎳᏉ ᎢᏴᏛ ᎤᎿᎷᏎᎢ, ᎠᎹᏱ ᎤᏓᏅᏎᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎦᎸᎳᏗ ᏣᏥᏍᏚᎩᎡᎴᎢ, ᎠᎴ ᏭᎪᎮ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎡᎳᏗ ᏅᏧᏛᎿᏗᏎ ᎫᎴ-ᏗᏍᎪᏂᎯ ᏗᏤᎵᏛ; ᎠᎴ ᎤᏪᏯᎸᏤᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎮᏯᏔᎮᏍᏗ ᎾᏍᎩ ᎢᎦ ᎦᏘ ᎭᏫᏂ ᏤᎲ ᏞᏍᏗ ᎤᎵᏏᎩ ᏱᎨᏎᏍᏗ. ᎠᎴ, ᎩᎶ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᏎᏉᏉ ᎾᏍᎩ; ᎩᎶᏍᎩᏂ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎾᎿ ᎠᎲᎢ, ᎾᏍᎩ ᎠᏍᏓᏱᏳ ᎤᏚᏓᎳ. ᏕᏥᎦᎾᏬᏗᎭ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎪᎯᎸ ᏰᎵᏉ ᎾᏍᏉ ᏗᎬᏩᏍᏕᎸᏗ ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎬᏩᎷᎯᏍᏓᏁᎯ ᎤᏁᎳᏅᎯ ᎠᏂᎷᏤᎲᎢ, ᏫᎾᏍᏛᎾᏰᏃ ᎡᎭ ᏧᎵᏍᏗᏰᏓᏁᏗᏱ. ᎾᏍᎩ ᎯᎠ ᏄᎾᏛᏁᎸ ᎭᎻᏂᏯ ᎠᎴ ᎡᎵᎩ, ᎾᏍᎩ ᏕᎦᏥᏲᏒ ᏌᏓᏂ ᏕᏥᏲᎯᏎᎸ ᎤᎾᏕᎶᏆᏍᏗᏱ ᎤᏂᏐᏢᏙᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎠᏂᏯᏫᏍᎩᏃ ᎤᏂᏍᏕᏲᎸ ᏧᏣᏲᏍᏗ ᎠᎵᏍᏚᎶ ᎤᏃᏢᏅᎩ ᎠᎴ ᎬᏩᏍᏚᎳᏅᎩ, ᎠᎴ ᎩᎦᎨ ᎠᏄᏬ ᎬᏩᏄᏬᎥᎩ, ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ; ᎬᏂᏳᏉ ᎤᏣᏔ ᎾᏕᏘᏴ ᎬᏍᏕᎸᎯᏓ, ᎠᎴᎥᏝ ᎢᎸᎯᏳ ᎾᏉᎯᏳᏅᎾ ᏱᎩ ᏣᏁᏨᎢ, ᎠᏎᏃ ᎥᏝ ᎢᎸᎯᏳ ᎠᏫ-ᎠᎩᎾ ᎠᏎᏄᎸᎯ ᏱᏍᎩᎧᏁᎶᎢ, ᎣᏍᏛ ᎣᎦᏓᏅᏓᏗᏍᏙᏗ ᏗᏆᎵᎢ. ᎤᏰᏤ, ᎤᏍᏗ ᎭᎸᏂ ᎢᏳᏍᏗ. ᎪᎱᏍᏗ ᎣᏍᏓ ᎠᏒᎩ ᎤᏩᏩᏒᏤ ᏧᏍᏆᏴᏍᏗ. ᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᎤᎧᎵᏨᎩ ᏧᎧᎵᏨᎩ ᏧᎦᏒᏍᏗ ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ; ᎥᏝ ᎠᎴ ᎩᎶ ᏫᎬᏩᏴᏍᏗ ᏱᎨᏎ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎬᏂ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏧᏕᏯᏙᏗ ᎨᏒ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏥᏚᎾᏒᎦᎸ ᏱᏚᎵᏍᏆᏛ. ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ ᎠᏂᏙᎾᎡ ᏯᎾᏓᏅᏍᎬᎾ, ᎾᎥᏂ ᎤᎾᏓᏓᏍᎨ. ᎬᎭᏅ ᎢᎪᎯᏓ ᎤᏩᏅᏖᏍᏗ ᎠᏌᎻᏓ, ᎾᏍᎩᏯ ᏏᏓᏁᎸ ᏗᎨᎦᏥᎶᏍᏔᏅ. ᏗᏇᏥ ᏗᏣᏍᏗᎢ, ᎾᏍᎩ ᏔᎵᏁ ᎢᏨᏁᎵᏨᎯ ᏥᎩ [ᎢᏗᎬᏤᎵᏛ] ᎢᏣᏕᏗᏱ, ᎬᏂ ᎦᎶᏁᏛ ᎠᏙᏢᏅᎭ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᎯᎠ ᏂᎨᏥᏪᏎᎮᏍᏗ, ᎬᏂᏳᏉ ᎠᏂ; ᎠᎴ ᎬᏂᏳᏉ ᎾᎿᏂ; ᏞᏍᏗ ᎢᏤᏅᏒᎩ, ᎠᎴ ᏞᏍᏗ ᏗᏥᏍᏓᏩᏛᏒᎩ. ᏲᎾ ᎤᏤᏍᏙ ᎤᎷᏤ, ᎤᏅᏏᏴ ᎦᏍᎩᎶᎩ ᎤᏩᏁ. ᏗᏑᏫᏓ ᏧᎳᏑᏟ ᏓᏣᏯᏓᏍᎩᏍᎬ. ᎯᎠ ᏄᏪᏎᎢ; ᎠᏴ ᎾᏍᏉ ᏍᎩᏂᎥᏏ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎾᏍᎩ ᎩᎶ ᏥᏯᏏᏔᏗᏍᎨᏍᏗ ᎠᏥᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ”ᏍᎩᏉᏗ ᏄᏍᏕᏍᏗ ᏎᏉ ᎡᏓᏍᏗ,” ᎡᎵᏍᏗ ᎣᎯᏍᏙᏗ ᎠᎩᏴᏍᏗ ᏱᏥᏯᎡ ᎡᎵᏍᎨ.” ᎨᏍᏗ ᎪᎱᏍᏗ ᏰᎵᏍᎨ ᏫᎵᎻ. ᏓᏥᏩᏛᎯ ᎢᏗᎬᎾᏗ ᏗᎪᏪᎶᏗ ᎠᏯ ᎢᎩᏠᏯ ᎢᏗᏴᏫ, ᎤᏛᏁᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎣᏏᏳ ᎢᏳᏓᎵᏍᏓᏁᏗ ᎨᏒ ᏗᎨᏥᎤᏍᏕᏎᎸᎯᏉᏍᎪ ᎤᏂᎷᏤᎭ, ᏥᎪᎨ ᎾᏍᏉ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ? ᎪᎯᏳᏗᏰᏃ ᎨᏒ ᏚᏳ-ᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎴ ᎡᏆᎭᎻ ᎢᏓᏗᎭ. ᎣᏏᏉ ᏄᏛᎾᏕᎦ.” ᎢᎳᎩᏳᏃ ᎾᏍᎩ ᏄᏍᏕ ᎠᏥᏰᎸᎾᏁᎴᎢ? ᏥᎪ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏥᎨᏎᎢ? ᏥᎪᎨ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᏥᎨᏎᎢ? ᎥᏝ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏥᎨᏎᎢ, ᎠᏥᎤᏍᏕᏎᎸᎯᏍᎩᏂ ᏂᎨᏒᎾ ᏥᎨᏎᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏂᏣᏘ ᏚᏂᎳᏫᏦᎴᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏳᏜᏅᏕ, ᎥᏝ ᎾᏍᏉ ᎦᎶᎯᏍᏗᏳᎶᏗ; ᎧᏃᎮᏛᏃ ᏚᎵᏥᏙᏁᎴᎢ. ᎾᏍᎩ ᎡᏥᎷᏤᎲᎢ, ᎾᏍᎩ ᎬᏃᏛ ᏅᏯ ᎤᏂᏲᎢᏎᎸᎯᏍᎩᏂᏃᏅ ᎤᏙᎯᏳᎯ ᏴᏫ, ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏑᏰᏛ ᎠᎴ ᎦᎸᏉᏗᏳ, ᎤᏁᎳᎩᏃ ᎤᏪᎵᏎᎸ, ᏉᎳ ᎤᎴᏅᎩ ᎠᎩᎳᏫᏍᏗᏱ, ᎤᏬᏰᏂ ᏴᏫ ᏚᏖᎸᎾᏁᎸᎩ; ᎤᏣᏘᏃ ᎡᎳᏪ ᎤᏅᏅ, ᏚᏬᏁᏔᏅᎩ ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎤᏮᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎠᏎᏃ ᏄᏂᎬᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏄᏅᏂᏌᏁ ᎤᏂᏣᏘ ᏴᏫ, ᎾᏍᎩ ᏆᎳᏆ ᎤᏂᏔᏲᏍᏗᏱ ᏧᏲᎯᏎᏗᏱ. ᏥᏌᏃ ᎤᎪᎲ ᏓᏠᏱᎲᎢ, ᎠᎴ ᏚᎪᎲ ᎠᏂᏧᏏ ᎾᏍᎩ ᎤᏂᏍᏓᏩᏙᎸᎯ ᏓᎾᏠᏱᎲᎢ, ᎡᎯᏍᏗ ᎤᏓᏅᏓᏛᎩ, ᎠᎴ ᎤᏕᏯᏙᏗ Ꮔ ᎵᏍᏓᏁᎸᎩ. ᎦᎸᎳᏗ ᏭᏔᎷᏁᎢ, ᎦᎸᎳᏗ ᏫᏄᏩᏁᎴ ᏧᏏᎳᏛᏙᏗ, ᏚᏲᏎ ᏰᎵ ᎢᎦᎢ, ᎤᏃᎴ ᎠᏲᏙᏗ ᏄᏩᏁᎴ. ᎿᏉᏃ ᏙᏓᎦᏅᏏ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᏙᏓᎦᏟᏌᏂ ᎨᎦᏑᏰᏛ ᏧᏤᎵᎦ ᏫᏙᏛᏯᏅᎯ ᏅᎩ ᏂᏙᏗᎨᎶᏍᎬ ᎤᏃᎴ, ᎡᎶᎯ ᏭᎵᏍᏘᏂᎸ ᏅᏓᏳᏓᎴᏛ ᎦᎸᎳᏃ ᏭᎵᏍᏘᏂᎸ ᏫᎦᎷᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᏥᏌ ᎤᏍᏆᏛ ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎢ, ᎨᎵᎵ ᎤᏓᏅᏒᎩ, ᏧᏗᏱ ᎠᏍᏛ ᏭᎷᏨᎩ ᏦᏓᏂ ᎠᏍᎪᏂᏗᏢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᎤᎾᏙᏓᏆᏍᎬ ᎤᎬᏫᏳᎯ. ᏤᏍᏗ ᎤᏁᎦᎭ ᏣᎧᏛ ᏱᏍᎩᏃᎯᏎᎮᏍᏗ ᏄᏍᏛ ᎤᏩᏙᎯᏴᏓ. ᏥᏌᏃ ᎤᎴᏫᏍᏔᏅ ᏫᏚᏯᏅᎲᎩ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙ ᎢᏍᏓᏚᎵ ᎠᏴ ᎢᏍᏛᏯᏛᏁᏗᏱ? ᎤᏂᏣᏘᏃ ᏌᏉ ᎢᎦᎦᏛ ᎤᎾᎦᏌᏯᏍᏔᏁ ᏈᎵᎩ ᎧᏃᎮᏍᎬᎢ, ᎤᎾᏛᎦᏅ ᎠᎴ ᎤᏂᎪᎲ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎠᏎᏰᏃ ᏌᏉ ᏧᏲᎯᏎᏗ ᎨᏐ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒ ᎢᏳᎢ. ᎿᏉᏃ ᏉᎳ ᎤᏓᏅᏒᎩ ᎠᏂᏅᎢ. ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎦᏪᎳ, ᎬᏂᏳᏉ ᏌᏯᏂ ᏓᏥᏂ ᏅᏯ ᏗᏓᏙᏕᎯᎯ, ᎠᎴ ᏅᏯ ᎠᏓᎿᏍᏆᎶᏍᏗᏍᎩ; ᎠᎴ ᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎾᏍᎩ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎾᏍᎩ, ᎠᎴ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏪᏥ ᎠᎪᏎᎮᏍᏗ; ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏓᏳᏁᎵ ᎤᏙᏓ ᏕᏫ ᎤᏪᏍᎩᎸᎢ. ᎠᏍᏕᎵᎭ ᎦᏓᏁ ᏃᎴ ᎤᎵᏏᎩ ᎤᏳᏓᏍᏙᏗ ᎠᏒᏆᎶᏍᏗ ᎭᏫᏂᏣ. ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎢᏨᏲᎵᎦ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ. ᎠᎴ ᎦᎬᏩᏏᏛᏂᎸᎩ. ᎬᏩᏯᏫᏍᎨᎢ, ᎠᎴ ᎤᏂᏲᎮ ᎤᏂᏩᏛᎡᏗᏱ ᎪᎱᏍᏗ ᎦᎬᏩᎳᏫᏎᏗ ᎨᏒᎢ. ᎡᏝᏪᎯ ᎤᏪᏞ ᏌᎳᏓ. ᏧᏓᎴᏅᏓ ᏄᎾᏛᏁᎴ ᎠᎾᏟᎲ ᎠᏣᏗ ᏃᎴ ᎣᏍᏓᏓᏤᎵ. ᎦᎶᎯᏍᏗᏳᎳ ᏭᎷᏤᎢ, ᏌᎳᏓ ᏚᏏᎳᏛᏅ ᏥᎦᏓᎡᎢ. ᎢᎦᏉᏃ ᏄᎵᏍᏔᏅ ᏗᏂᎳᏫᎩ ᏴᏫ ᎠᏁᎲ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᏚᏂᎳᏫᏤᎢ, ᎠᎴ ᏓᏂᎳᏫᎥ ᎬᏩᏘᏃᎴ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏧᎳ ᏚᏂᏔᎴᏐᎢ, ᏥᏍᏆᏃ ᎦᎳᏅᏛ Ꭰ-ᏂᏃᎯᎵᏙᎯ ᏚᎾᏁᏍᏓᏝᎰᎢ; ᏴᏫᏍᎩᏂ ᎤᏪᏥ ᎥᏝ ᎢᎸᎯᏢ ᎠᏍᎪᎵ ᎤᏠᏗᏱ ᏱᎩ. ᎠᎴ ᎾᏍᏉ ᎠᎵᏫ ᎾᎿ ᎡᏙᎲ, ᎤᎷᏤ ᎤᎦᏔᏁᎢ, ᎠᎴ ᎠᏂᏗᏢᏉ Ꮔ-ᎶᏎᎢ. ᎢᏥᏁᎫ ᎠᎴ ᏗᏥᎨᏫ! ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ, ᎠᎵᏍᎪᎸᏔᏅᎯᏍᎪ, ᎠᏥᎸᎨ-ᎨᎳᏍᏗᏱ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏥᏂᎬᏁᎭ ᎠᎵᏍᎪᎸᏔᏅᎯ? ᎠᏯᏗ ᏗᏥᏅᎥᏍᎩ. ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏍᎩ ᎤᏬᏢᏁᎢ, ᎠᎴ ᏂᎦᎥ ᎪᏢᏅᎯ ᏥᎩ ᎥᏝ ᎪᎱᏍᏗ ᎾᏍᎩ ᏄᏬᏢᏅᎾ ᏱᎩ. ᏐᏉ ᎪᎳ ᎤᏒᎯ ᎠᏤᎯ ᎡᏦᏛ, ᎠᏂᎦᏲᏟ ᎤᏁᎾᎢ ᎠᏂRidge ᎠᏂᏍᎦᏯ, ᎤᎩᏓᏟᏅᏯ ᎨᎵ ᎤᎾᏓᏓᏍᎩᏌᏁ ᎠᏨᏍᏛ ᎦᏍᎩᎸ, ᎤᏁᎦ ᎪᏪᎵ ᎤᏂᏌᎡ, ᎤᏕᎳᏓ ᎤᏂᏍᏓᏱᏕ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ, ᎤᏂᎾᏗᏅᏎᎴ ᎠᎹᏰᎵ ᏂᎦᏓ ᏣᎳᎩᏱ ᎠᏰᎵ ᎦᏙ, ᎠᏁᎵᏍᎨ ᎣᏍᏓ ᎠᏓᎴᏂᏍᎬ, ᏳᏂᏃᎮᎸᎾ, ᎨᏥᎧᎯᏴᏍᏗ, ᎠᏤᎯ ᏳᏫᏯᏍᏗ ᎾᎿ ᎨᏒ. ᏂᎦᏓ ᎠᏍᏆᏂᎪᏗᏍᎨ.) ”ᎤᏙᎯᏳᎯ, ᎢᏳᎯ, ᎢᏳᎯ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏍᎪᎯᏧᏈ ᎢᏳᏟᎶᏛ ᎪᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎾᎩ ᎪᏪᎵ ᎡᏣᏚᎬᎢ, ᎠᎴ ᏄᎳ ᎯᎲᎦ, ᎠᎴ ᎯᏍᎩᏍᎪᎯ ᎰᏪᎸᎦ. ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎢᏤᏅᎢᏍᏔᏅᎯ ᎨᏒ, ᎾᏍᎩ ᎤᏣᏘ ᎨᏣᏓᏁᏗ Ꭸ-ᏒᎢ, ᎾᏍᎩ ᎢᏳᎬᏂᏐᏗᏱ ᎠᎦᎵᎮᎵᏤᏗᏱ ᎤᏁᎳᏅᎯ. ᎾᏃ ᎦᏟᏐᏗ ᎨᏒ ᎤᎾᏓᏅᏘ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ, ᎾᏍᎩᏯ ᏥᎦᏥᏁᏤᎸᎢ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᎬ ᎨᎴᏏᏱ, ᎾᏍᎩᏯ ᏂᏣᏛᏁᎮᏍᏗ. ᎤᎿᎷᏎᏃ ᎣᏓᎸᎢ, ᎠᎴ ᏚᏯᏅᎮ ᎾᏍᎩ ᎤᏚᎵᏍᎬ ᏧᏯᏅᏗᏱ; ᎠᎴ ᎬᏩᎷᏤᎮᎢ. ᏕᎪᏪᎵᏍᎬᏰᏃ ᏗᎦᎨᏗᏳ ᎠᎴ ᏧᎵᏂᎩᏗᏳ, ᎤᏙᎯᏳ, ᎠᎾᏗᎭ; ᎠᏰᎸᏍᎩᏂ ᏲᏪᎳ-ᏗᏙᎭ ᎠᏩᎾᎦᎳᎯᏳ, ᎦᏬᏂᏍᎬᏃ ᎬᏕᎰᏙᏗᏉ. ᎦᏳᎳ ᎯᎠ ᎾᎩᏪᏒ, ᎠᎴ ᎢᎬᏱ ᎦᏰᎯ ᎯᎠ ᏂᏥᏪᎭ, ᏔᎵᏁ ᏥᏫᏥᎦᏔᎰ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎠᎩᎪᏁᎸ ᎪᎯ ᎨᏒ ᎦᏥᏲᎳᏁᎭ ᎾᏍᎩ Ꮎ ᎦᏳᎳ ᎤᏂᏍᎦᏅᏨᎯ ᏥᎩ, ᎠᎴ ᏂᎦᏛᏉ ᎠᏂᏐᎢ, ᎾᏍᎩ ᎢᏳ ᏔᎵᏁ ᏱᏫᎠᎩᎷᏨ, ᎥᏝ ᏴᎦᎦᎵᏏᏅᏓ; ”ᎯᏣᏛᎦᏍᏓ, ᎭᏩᏧ!” ᎱᏛᏁᎢ. ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎢᏧᎳ ᏌᏉ ᎠᏰᎸ ᏄᎾᏛᏅ ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ ᎤᏁᎳᏅᎯ, ᏓᏓᎿᏩᏍᏛ ᎤᏮᏙᏗᏱ, ᎾᏍᎩ ᎤᏮᏔᏅ ᎤᎸ ᏓᎾᏓᏍᎦᎬᎢ. ᏂᎦᏛᏃ ᏕᎦᎳᏫᎥ ᎠᏂᏂ ᎤᏯᏅᏒᎯ ᏓᏂᎧᏅ ᎤᏂᎪᎮ ᎤᎧᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎧᏛ ᎾᏍᎩᏯ ᎨᏎᎢ. ᏐᏉ ᎢᏯᎦᏴᎵᏉ ᎾᏂᎠ. ᎠᏍᎡᏃ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏅᏓᎨᏨᏁᎵ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏓᏆᏙᎥᎢ, ᏂᎬᏩᎦᏔᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᏅᏛᎩᏅᏏᏛ. ᎤᏂᏣᏘᏃ ᎨᏒ ᏕᎬᏩᏂᎦᏘᎸᏒᎩ; ᏗᏄᎪᏗᏍᎩᏃ ᏚᏂᏄᏪᏒ ᎤᏂᏁᏨᎩ ᏗᎨᏥᎵᎥᏂᏍᏗᏱ. ᎾᏍᎩ ᎯᎠ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᏦᎠᎾ, ᎠᎴ ᎺᎵ ᏥᎻ ᎤᏥ, ᎠᎴ ᏅᏩᎾᏓᎴ ᎠᏂᎨᏴ ᎠᏁᎯ, ᎾᏍᎩ ᏥᏫᎬᏩᏂᏃᏁᎴ ᎨᏥᏅᏏᏛ. ᎠᎴ ᎠᏴ ᎢᎬᏱ ᏃᎨᏅᏒᎩ ᏥᏳ ᏗᏔᎸᎢ, ᎠᎴ ᎣᎦᏣᏅ, ᎡᏐᏏ ᏬᎩᎶᏒᎩ; ᎾᎿ ᏉᎳ ᎣᏥᏲᏗᏱ ᎣᎩᏰᎸᏒᎩ, ᎾᏍᎩᏰᏃ ᎢᏳᏪᏛ ᎨᏒᎩ, ᎤᏩᏒ ᎡᎳᏗᏉ ᏭᎶᎯᏍᏗᏱ ᎤᏰᎸᏒᎩ. ᎾᏍᎩᏴ ᎠᏲᎰᏒ ᏲᎾ, ᎢᎦᏅᏛᎢ ᎦᎸᏓᏱ ᏛᏂᎩᏏ ᎡᎶ, ᎯᎸᎯᏳ ᏫᎬᎩᏍᏗ ᏱᎨᏒᎾ. ᎢᎸᎯᏢᏃ ᎤᏛᎾ ᎦᏚᎲ ᎠᎴ ᎤᏍᏗ ᎦᏚᎲ ᎢᏥᎷᎨᏍᏗ, ᎢᏣᏓᏛᏛᎲᏍᎨᏍᏗ ᎩᎶ ᎡᎲ ᎤᏓᏅᏘ, ᎾᎿᏃ ᎢᏥᏁᏍᏗ ᎬᏂ ᎥᏣᏂᎩ. ᎠᎬᏱ ᎪᎦ ᎠᎴᏂᏍᎬ ᏕᎦᎶᎨᏒ, ᎤᎵᎮᎵᏍᏗ ᎤᏕᏘᏴᏌᏗᏒ. ᏔᎵᏁᏃ ᏪᎯ ᎾᏍᎩ ᎤᏓᏴᏒᎩ, ᎠᎴ ᎤᏲᎱᏒᎩ; ᎾᏍᏉᏃ ᎾᏍᎩ ᎥᏝ ᏧᏪᏥ ᏱᏚᏪᎧᎯᏰᎢ; ᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᏦᎢᏁ ᏪᎯ. ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᎦᏌᏯᏍᏓ ᏂᏚᏳᎪᏛᎾ ᎢᏯᏛᏁᎯ ᏗᎫᎪᏗᏍᎩ ᏂᎦᏪᏍᎬᎢ. ᎦᎵᏦᏩᏛ ᎦᏍᎩᎶ ᎠᏉᏢ ᏧᎦᏘᏴ ᎢᏳᏪᏍᏘ. ᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎾᎦᏌᏯᏍᏔᏁᎢ, ᏓᎾᏓᏛᏛᎲᏍᎨ ᎦᏛᎬ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ. ᏧᎾᏓᎴᏅᏛᏍᎩᏂ ᏴᏫ ᎤᏃᎯᏳᏅᎯ ᏥᎩ, ᏙᏦᏪᎳᏁᎸ ᏙᎫᎪᏔᏅ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ ᏂᎨᏒᎾ ᎪᎱᏍᏗ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏁᏯᏙᏤᏗᏉᏍᎩᏂ ᎤᏩᏒ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ, ᎠᎴ ᎩᎬ ᎠᎴ ᎪᎱᏍᏗ ᎬᏬᏍᏔᏅᎯ ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ. ᎠᎴ ᎠᏏ ᎤᏂᏣᏛᎩ ᎤᏃᎯᏳᏅᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏩᏒ ᎧᏁᎬᎢ; “ᎭᏩ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎭᏩ. ᎠᏓᏔᏍᎩ ᏅᏙ ᏎᎦᏨ ᎤᏓᏴᎳᏔᏅ ᏍᎩᏴ ᏏᏅᏓ ᎤᎶᎩᎶᏅ. “ᎦᏙᏃ ᎦᎷᏯᏍᏗ ᎤᏂᎬᎨᎢ.” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᏣᏁᎳᏉ ᎢᏳᏕᏘᏴᏓ ᎨᏎ. ᎥᏝ ᎡᎶᎯ ᏗᎧᎲᏍᏗᏱ ᏱᏥᏔᏲᎯᎭ, ᏘᏲᏍᏙᏓᏁᏗᏱᏉᏍᎩᏂ ᎤᏲ ᎨᏒᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏥᎡᏥᎶᎾᏍᏔᏂ; ᎤᏂ-ᏣᏖᏍᏗᏰᏃ ᎠᏴ ᏓᏆᏙᎥ ᎠᏂᎷᎯᏍᏗᏍᎨᏍᏗ, ᎠᏴ ᎦᎶᏁᏛ] ᎠᎾᏗᏍᎨᏍᏗ, ᎠᎴ ᎿᏉ ᎤᏍᏆᎸᎯᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏗᏥ-ᏍᏓᏩᏛᏒᎩ. ᎿᏉᏃ ᎠᏍᎩᎾ ᎦᎸᏉᏗᏳ ᏗᎦᏚᎲ ᏭᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᏭᎩᎸᏔᏁ ᎤᏍᎪᎵ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎿᏉᏃ ᎠᏂᏧᏏ ᎬᏩᏲᎸᎩ ᎬᏩᏲᎸᎩ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎭᏢ ᎾᏍᎩ ᎡᏙᎭ? ”ᏍᎩᏙᎵᎩ, ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ, ”ᎠᎬᏱ ᎤᏂᏲᎸᎢᏍᏔᏅ ᎨᏍᏗ ᎦᎬᏙᏗ ᏱᎩ. ᎠᎴ ᎦᏙᏃ ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎢᏍᎩᏲᎰᎢ, ᏂᏥᏪᏍᎬᏃ ᏂᏣᏛᏁᎲᎾ ᎢᎨᏐᎢ? ᏧᏙᏓᏆᏓ ᏓᏂᎨᎯᏒ - ᏕᎨᏴ, ᏚᏅᏓᏒ, ᏚᎨᏓᎵᏴ - ᎾᎥᏉ ᎣᎭᏁ ᎠᏁᎨ ᏗᎾᏓᎭᏲᎯ ᎠᏙ. ᎢᎾᏛᏃ ᎠᎰᎵ ᏓᏳᏄᎪᏫᏒᎩ ᎠᎹ ᏥᎦᏃᎱᎩᏍᎪ ᎾᏍᎩᏯᎢ, ᎠᎨᏴ ᎤᎨᎮᎩ ᎾᏍᎩ ᎦᏃᎱᎩᏍᎬ ᎤᏅᏍᏙᏗᏱ ᎤᏰᎸᏅᎩ. ᎬᏂᏳᏉ ᏥᏅᏏᏓᏍᏗ ᏥᏯᏑᏰᏛ ᏥᎨᏳᎢ ᏗᏆᏓᏅᏛ ᎢᏴᏛ ᎣᏍᏛ ᏥᏰᎸᎢ; ᏓᏥᏁᎵ ᎠᏆᏓᏅᏙ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏚᏳᎪᏛ ᏧᎾᏄᎪᏫᏎᏗ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎩᎶ ᏣᏓᏓᏟᏌᏁᎰ ᏧᎬᏩᏩᏗ ᎤᏩᏒ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏱᏃ ᎢᏗᏢ ᏄᏪᎿᎥᎾ ᏥᎨᏐᎢ. ᎦᏲᏟ ᏧᏕᏘᏴᏓ ᏧᏲᏣᏃᎰᏍᏗ, ᎦᏙ ᏭᏩᎾᏬᎯᏍᏗ. ᎤᏂᏍᏆᏂᎪᏎᏃ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ, ᎤᎵᏂᎩᏗᏳᏰᏃ ᎧᏁᎨᎢ. ᎦᎪ ᎯᎠ ᏘᏂᏣᏛᏅ, ᎠᏍᎪᎯᏧᏈ ᏱᏚᎾᏝᎠ ᎤᏂᏃᏕᎾ, ᎢᏳᏃ ᏌᏉ ᏳᏲᎱᏎᎸ, ᎥᏝ ᏱᏗᎬᏕᎪ ᎢᎾᎨ ᎠᏁᏙᎲ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏯᏂᏛ, ᎠᎴ ᏳᏲᎴᎪ ᎤᏲᎱᏎᎸᎯ, ᎬᏂ ᎠᏩᏛ? ᎣᏍᏓ ᎠᎩᏰᎸᏗ ᎢᏯᏆᏛᏁᏗ ᎠᎩᏰᎸ ᎨᏙᎲ ᎠᎾᏓᎪᎾᏗᏍᎬ, ᎥᏣ ᎪᏪᎵ ᏗᎩᏂᏓᏍᏗ.” ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎪᏂᏯ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏭᏂᏴᎴ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᏍᏛ ᎠᏂᏬᏂᏍᎬ ᏅᏧᎵᏍᏙᏔᏁ ᎤᏂᏣᏘ ᎠᏂᏧᏏ ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ ᎤᏃᎯᏳᏁᎢ. ᏕᏯᏙᏤᎮᏍᏗ ᏗᏃᏪᎵᏍᎩ, ᎾᏍᎩ ᏧᎾᏚᎵᏍᎪ ᏗᎦᏅᎯᏛ ᏧᎾᏄᏩᎢ ᎤᏁᏓᏍᏗᏱ, ᎠᎴ ᎣᏏᏳ ᏧᏂᏰᎸᎭ ᎨᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏕᎦᏍᏗᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᎾᏢᏗᏱ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ; ”ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩᏉ,” ᎤᏛᏁ ᎰᎻ. ᏅᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏕᏒᏅ, ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎥᏝ ᏰᎵ ᏫᎬᎩᎷᎯᏍᏗ ᏱᎩ. “ᎠᏎ ᏍᎩᎾᎾ ᎾᏆᏍᏗ ᎠᎦᏗᏓ ᎦᎵᏍᏔᏴᎲᏍᎩ ᏃᎴ ᎣᏍᏓ ᎠᎩᏰᎸᎰ ᎠᏆᎵᏍᏔᏴᏗ.” ᎾᏍᎩ ᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ, ᎤᏲᎱᎯᏍᏗᏱ ᏁᎨᏒᎾ, ᎬᏂᏛᏍᎩᏂ ᎤᏩᏛᏗ. ᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎾᎿᎮᎲᎢ, ᎾᎿ ᏎᏓᏂ ᎤᏪᏘᏱ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏍᏓᏱᏳ ᏕᏣᏂᏴᏒ ᏓᏆᏙᎥᎢ, ᎠᎴ ᏂᏣᏓᏱᎸᎾ ᎨᏒ ᎠᏆᏤᎵ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎾᎯᏳᎢ ᎥᏗᏆᏏ ᎤᏓᎵᏓᏍᏗ ᏂᎨᏒᎾ ᎠᎩᏃᎮᏍᎩ ᏄᎵᏍᏔᏅ, ᎾᏍᎩ ᏂᎯ ᎢᏤᎲ ᏣᏥᎸᎩ, ᎾᎿ ᏎᏓᏂ ᏒᎲᎢ. ᎡᎳᏗ ᏄᏛᏁᎴ ᏫᎵᎻ, ᏥᏍᏕᏥ ᎦᏙᎬ ᎢᏣ ᏫᏄᏩᏁᎴ ᎤᎵᏇᏅ ᎦᏂᏓᏛ. ᎾᏍᎩᏃ ᏑᎾᏓᏡᎩ ᎠᎾᎢᏒ ᎨᎳᏗ ᎠᏁᎵᏍᎬ ᏏᎦ ᎡᏅᏍᏗ ᎢᏴᏛ ᎤᏁᏅᏎᎢ; ᎪᎱᏍᏗᏃ ᏧᏅᏅ ᎠᎴ ᏗᎾᏓᎦᏔᎯ ᎠᏂᏅ ᎤᏂᏲᎴᎢ. Ꮭ ᎤᏟᎢᎦ ᏲᏣᎦᏎᏍᏓᏁᎴ ᎢᎬᏱ ᎥᏍᎩ ᏄᏛᏁᎳ. ᎠᎴ ᎢᎳᎩᏳ ᎢᏨᎪᎡ ᏣᏢᎨᎢ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎡᏣᏍᏚᎮᎢ, ᎢᏨᏯᎦᏔᏂᎴᏃ? ᏲᎾ ᎤᏤᏍᏙ ᎤᎵᎢ ᎮᏂᎵ ᎤᎵᏲᏗ ᏚᎾᏦᏎᎢ ᏃᎴ ᎤᏴᏅᎮᎢ ᎤᎾᎩᎸᏙᏗ ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ. ᎠᏗᏆᎸᏕᏲ. ᎹᏚ ᎠᎴ ᏓᎻ ᎡᎵᏈ ᎤᏫᏥ, ᏌᏩᏂᏃ ᏏᎶᏗ ᏣᏃᏎᎰᎢ, ᎩᎶ ᏗᎾᏓᏅᏟ ᏳᎨᏳᎭ ᎢᎦᎦᏛ ᎡᎭ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎠᏓᏙᏕᏍᏗᏍᎩ ᏳᏪᎭ. ᎾᏍᎩᏃ ᏧᏪᏅᏒ ᏫᎤᎷᏨ, ᎤᏙᎴᎰᏎ ᎠᏍᎩᎾ ᎤᏄᎪᏨᎢ, ᎤᏪᏥᏃ ᎠᏤᏍᏙᎩᎯ ᎦᏅᎬᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏥᏕ-ᏥᎪᏩᏗᎭ, ᏛᏍᏆᎸᎯ, ᎾᏍᎩ ᎥᏝ ᏌᏉᎤᏅ ᏅᏯ ᏱᏚᏓᏌᏞᎮᏍᏗ ᎾᏍᎩ ᏂᎪᎲᏔᏅᎾ ᏱᎨᏎᏍᏗ. ᎤᏟᏍᏓ ᎰᎻ ᏭᏴᏅᎮ ᏣᏄᏏ. ᎠᎩᏍᏆᏂᎪᏍᎦ ᏥᎾᏞᎬ ᎡᏣᏓᏅᎡᎸ ᎾᏍᎩ Ꮎ ᎢᏥᏯᏅᏛ ᏫᏥᎧᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎦᎶᏁᏛ, ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏥᎬᏫᏳᏔᏅ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏏ ᎾᎿ ᎠᏁᏙᎮᎢ, ᎤᏍᏆᎸᎮ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏍᏗᏱ. ᎣᏥᎦᏔᎭ ᎤᏁᎳᏅᎯ ᎼᏏ ᎤᏬᏁᏔᏅᎢ; ᎾᏍᎩᏂ ᎯᎠ ᎥᏝ ᏲᏥᎦᏔᎭᏧᏓᎴᏅᎢ. ᏎᎦ ᏚᏃᏣᏝᏃᎾ, ᎤᏂᏄᎸᏁ ᎤᏂᏬᏂᎯᏍᏗ ᎠᎴ ᎤᎾᎵᏖᎸᎮᏗ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ. ᎤᏕᏅᏃ ᎧᎸᎬᎢᏗᏟ ᏖᎾᏏ ᎦᎵᏆᏚᎢᏍᎪᎯᏧᏈ ᏑᏓᎵᏍᎪᎯ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏥᏃ ᎠᏣᎳᎩ ᎠᎴ ᎤᏙᏓ ᎠᏲᏩᏁᎦ ᏱᎨᏎ. ᎠᏯ, ᎬᏲᎯᏳᎯ W. G. Williams, ᎦᎸᎳᏗ ᎠᏍᎦᏰᎬᏍᏔ ᏦᏈᏃ ᏂᎬᎾᏛ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᎤᏂᏣᏖ ᎤᏃᎯᏳᏁ ᎤᎬᏫᏳᎯ. ᎢᏳᏰᏃ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏗᏓᏚᎪᏓᏁᎯ ᎨᏒ ᎦᎾᏄᏫᏍᎩ ᎦᎸᏉᏗᏳ ᏱᎩ, Ꮀ ᎤᎬᏫᏳᎭ ᎤᏓᎪᎾᏛᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏚᏓᎴᏍᎩ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ. ᏔᎵ ᏍᎪᎯ ᎠᏕᎳ ᏃᎴ ᏐᏉ ᎯᏍᎦᏕᎸ ᏚᏅᏁᎴ ᎰᎻ. Ꮟ ᏐᏉ ᎢᏳᏩᎬᏗ ᏭᏂᏌᏙᏴ ᏭᏂᏴᏍᏔᏁᎢ ᎧᏁᏌᎢ. ᎩᎶ ᏯᏰᎴᎲᎾ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎨᏓᎵ ᎢᏣ ᎤᏓᏌᏆᏟᎴᎢ. ᏁᎵᏍᎬᏃ ᏲᎾ, ᎦᏙ ᎤᏂᎲ ᎤᏩᏌ ᎤᏂᎵᎶᎲᏍᎨ. ᎡᏝᏪᎯ ᏚᎷᏫᏍᏔᏁᎮ ᎪᏱᏁᎢ. ᎡᏝᏪᎯ ᎤᏟᏃᎮᏔᏅ, ᏍᎩᎷᏥᏏ, ᏍᎩᎷᏥᏏ, ᎤᏛᏅ. ᏏᎵᏱᏃ ᎠᎴ ᏏᎵᏏᏱ ᎤᎶᏒᎩ, ᏓᎵᏂᎪᎯᏍᏗᏍᎬᎩ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏈᏩᏗᏒᎢ. ᏅᏩᎾᏓᎴᎢ, ᎤᏓᏙᏎᎸᎩ ᏈᏓ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏧᏁᏥᏍᎩᏂᎨᏃ ᎤᎾᏁᎳᎩᏉ. ᎭᏫᏂ ᎠᏙᎯ ᎤᏍᎦᏎᏗ ᎤᎧᎭᏛ. ᎥᏝ ᎢᏣᏓᏂᏯᏛ ᏴᏓᏨᏴᏕᏥ; ᏛᏨᎷᏤᎵ. ᏔᎵᏁᏃ ᎢᎸᏍᎩ ᏫᏄᏒᎸ ᎨᏆᏂ ᏭᏴᎴᎢ; ᏚᏃᏣᎶᏤᏃ ᎦᎵᏦᏕ ᎠᏯᎥᎢ. ᎾᏍᎩᏰᏃ Ꮎ ᎤᏙᎯᏳᎯ ᎤᏬᏑᎶᏨᎯ ᏥᎨᏐᎢ, ᎠᎴ ᎤᏩᏒᎯᏳ ᏥᎨᏐᎢ, ᎤᏁᎳᏅᎯ ᎠᎵᏍᎦᏍᏙᏗᏍᎪᎢ, ᎠᎴ ᏓᎧᎿᏩᏗᏐ ᎠᏔᏲᏍᏗ ᎨᏒ ᎠᎴ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒ ᏂᏚᎵᏏᏂᏒ ᎠᎴ ᏂᏚᎩᏨᏂᏒᎢ. ᏤᏌᏂᏃ ᎠᎴ ᎠᏂᏐᎢ ᏔᎵ ᎬᏩᎾᏛᏓᏁᎯ ᏚᏂᏩᏛᎲ ᏙᎨᏥᎧᏅᎩ. ᎿᏉᏃ ᎤᎪᎵᏰᏍᎩ ᎤᎷᏤᎸ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᎯᎠ ᏅᏯ ᎦᏚ ᎤᎾᏙᏢᏗᏱ ᎯᏁᎩ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ. ᏝᏍᎪ ᏂᎯ ᏔᎳᏚ ᎢᏥᏛ ᏱᏨᏯᏑᏰᏎᎢ? ᎠᏎᏃ ᎠᏏᏴᏫ ᎤᏓᏑᏯ ᎠᏍᎩᎾ ᎢᎩ. ᏧᎳᏏᏕᏅ ᎭᏫᏂᏣ ᏧᏁᎦ ᎨᏒ, ᎩᎳ ᎠᎬᏱ ᏓᎪᏩᏘᏍᎨ ᏣᎵ ᎡᏍᎦᏉ ᎠᏂᏳᏩᏁᎦ. ᏙᏓᏆᏓ ᎦᏅᎨ ᎾᎥᏂ ᎤᏬᏔᏅ ᎪᎰᏍᏗ ᏯᏓᏅᏖᏍᎬᎾ, ᎤᏚᎵᏍᎨ ᎤᏲᎰᎯᏍᏗ ᎯᎸᎯᏳ ᎤᏂᏩᏛᏗ ᏱᎨᏒᎾ. ᎢᎾᏛ ᏓᏂᏁᏍᎨᏍᏗ; ᎢᏳ ᎠᎴ ᎪᎱᏍᏗ ᎠᏓᎯᎯ ᏳᎾᏗᏔᎲ, ᎥᏝ ᎪᎱᏍᏗ ᏳᏅᏁᎮᏍᏗ; ᏧᏂᏢᎩ ᏓᎾᏏᏔᏗᏍᎨᏍᏗ, ᎠᎴ ᏚᎾᏗᏩᏍᎨᏍᏗ. ᎨᎵ ᎧᏂᎩᏓ. ᎠᎰᎵᏃ ᎤᏍᏚᎢᏒ ᏚᏪᏲᏁ ᎯᎠ ᏄᏪᏎᎢ; ”ᎣᎯᏍᏙᏗ ᏗᎦᎷᏫᏍᏔᏁᎸ.” ᎾᏍᎩ ᏓᏣᏃᏁᎵ ᎢᏣᏛᏁᏗᏱ ᏣᎵᏍᏕᎸᏗᏱ ᏂᎯ ᎠᎴ ᏂᎦᏛ ᏗᏣᏤᎵ ᏏᏓᏁᎸᎢ. ᎦᏙᏃ ᎦᎪᎯᏳᏗ ᏂᎨᏒᎾ ᎢᏥᏰᎸᏐ ᎤᏁᎳᏅᎯ ᏧᎴᏙᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ? ᎠᎴ ᎤᏂᏣᏛᎩ ᎤᎾᏓᏑᏴᎩ ᎠᏂᏧᏏ ᎺᎵ ᎬᏩᎷᏤᎸᎯ, ᎠᎴ ᎤᏂᎪᎲᎯ ᎾᏍᎩ ᏥᏌ ᏄᏛᏁᎸᎢ, ᎬᏬᎯᏳᏅᎩ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᎾᎵᏃᎮᎴ ᎤᏅᏒ ᎨᏒ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; ᎦᏙ ᎤᏍᏗ ᎧᏁᎢᏍᏗ ᎯᎠ? ᎤᏤᎵᎦᏯᏰᏃ ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᏕᎬᏗᎭ ᏕᎧᏁᏤ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ, ᎠᎴ ᎠᏂᏄᎪᎦ. ᎩᏴᎭᎦ. ᎠᏏ ᎤᏣᏔ ᎠᎩᎷᎳ ᎪᎱᏍᏗ ᎢᏨᏃᏁᏗ, ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎥᏝ ᏰᎵ ᎾᏍᎩ ᎨᏣᏛᎪᏗ ᏱᎩ; ᎤᏂᎦᎾᏍᏓ ᎤᏂᏥᎸᎢ ᏃᎴ ᎤᏂᏍᏓᎦᏴᎯᏓ, ᎠᎹ ᎤᏂᏁ ᎢᏳᏍᏗ ᏃᎴ ᎪᎨ ᎢᏳᏍᏗ ᎦᏫᏒᎢᏍᏗ ᏱᏩᏥᏍᏓᎩᏌ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎪᎯ ᎢᎦ ᎢᏥᎦᏔᎯ ᏂᏨᏴᎦ, ᎩᎶ ᎤᏂᎩᎬ ᎾᏆᏓᏅᎦᎸᎾ ᎨᏒᎢ. ”ᏥᏂᎦᏕᎶᎣᏍᎪ ᎤᏍᏆᏂᎩᏗ ᎨᏒ ᏏᏆ.” ᎦᎸᎶᎢᏃ ᎦᎸᏉᏗ ᎤᏰᎸᏛ ᎤᎾᏄᎪᏨᎩ; ᎠᎨᏴ ᏅᏙ ᎢᎦ-ᎡᎯ ᎤᏄᏬᏍᏛᎩ, ᏅᏙᏃ ᏒᏃᏱ-ᎡᎯ ᎤᏔᏍᏓᎥᎩ, ᎤᎵᏍᏚᎸᎩᏃ ᎠᎵᏍᏚᎶ ᏔᏔᏚ ᏃᏈᏏ ᏗᎰᏢᏔᏅᎯ. ᎾᏍᎩᏃ ᎠᏂᏅᏜᎡᎢ ᎠᎴ ᎠᎾᎵᏍᏓᏴᎲᏍᎨᎢ, ᏥᏌ ᎯᎠ ᏁᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏏᏴᏫ ᎯᎠ ᏥᏂᏣᏛᏅ ᎢᏧᎳᎭ ᏦᏍᏓᎵᏍᏓᏴᎲᏍᎦ, ᏛᏆᏡᏔᏂ. ᎤᏓᏅᏖᎴᏃ ᎤᏩᏒ ᏧᏓᏅᏛᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᎦᏛᏁᎵ, ᎥᏝᏰᏃ ᏰᎵ ᏳᏜᏅᏛ ᎠᎩᏗᏱ ᎠᏆᏛᎯᏎᎸᎯ. “ᏥᏙᎩᏯᎷᎦ ᏔᎵ ᎢᎦ ᏗᎳᏑᎶᎢ.” ᎾᏍᎩ ᎯᎠ ᏔᎵ ᏄᎵᏁᏨ ᏚᎵᏍᏓᏱᏗᏍᏗ ᏂᎦᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎤᎾᏙᎴᎰᏒᎢ. ᎦᎶᏁᏛ ᎪᎱᏍᏗ ᎦᏰᏣᎵᏍᏕᎥᏙᏗ ᏂᎨᏒᎾ ᏂᎦᎵᏍᏓ, ᏂᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏣᏚᏓᎴᏍᏗᏍᎩ; ᏕᏥᏲᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ. ᎠᎴ ᎾᏍᎩ, ᏥᏗᎦᏔᎭ ᎢᏴᏛ ᎠᎵᏱᎵᏒᎢ, ᎾᏍᎩ ᎾᎯᏳ ᎠᏰᎢᏍᏗᏱ ᎢᏗᎵᎲ ᎿᏉ ᎤᎵᏰᎢᎶᎸ; ᎪᎯᏰᏃ ᎡᎩᏍᏕᎸᏗᏱ ᎨᏒ ᎤᏟ ᎾᎥᏂᏳ ᎠᏃ ᎢᎬᏱᏱ ᏗᎪᎯᏳᏅᎢ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᎪᏂᎯ? ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎾᏍᎩᏉ ᏥᏨᏲᏎᎰᎢ, ᎤᏙᎯᏳᎯᏯ ᎾᏍᎩᏉ. ᎠᎴ ᎯᎠᏉ ᏱᎾᎩᏪᏒ, ᎵᏫ ᎾᏍᏉ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏗᏓᏂᎸᎩ ᏥᎩ, ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎤᎫᏴᎮ ᎾᎯᏳ ᎡᏆᎭᎻ ᎤᎫᏴᎲ. ᎠᎴ ᏕᏫ ᎯᎠ ᏂᎦᏪᎭ, ᎠᎵᏍᏓᏴᏗᏱ ᎤᏂᏍᎩᎸ ᎤᏁᏍᎩ, ᎠᎴ ᎤᏂᏌᏛᎥᏍᎩ, ᎠᎴ ᏧᏃᏕᎯᎯ, ᎠᎴ ᎤᏂᏍᏛᏗᏍᏙᏗ ᏫᏄᎾᎵᏍᏓᏏ; ᎠᏍᏓ ᎦᏗᏆᎸᏕᏯᏍᏛ ᎠᎩᎬ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏔᏁ. ᎤᏛᏐᏅ ᏥᏂᎨᏐ ᎢᏳᏍᏗ, ᎠᏍᎦᏃᎵ ᏃᎴ ᏧᏃᏰᏂ ᏃᎴ ᏗᏂᏂᎨᏂ. ᎡᎵᏍᎬ ᎠᏎᏉ ᏄᎾᏛᎾ, ᎡᏝᏪᎯ ᎤᏃᎮᎸ ᎤᎾᏓᎭᎷᎬ, ᏃᎴ ᎢᏳᎾᏛᏁᏘ ᏧᎾᏓᎩᏯᏍᏗ, ᎠᏎᏃ ᎨᏍᏗ ᏍᎩᏴ ᏭᎾᏓᏅᏖᏗ ᏱᎨᏎ, ᎤᎾᎵᏍᏗ ᎠᏂᏴᏫ, ᎤᏂᏲᎰᏎᎸ ᎠᏁᎲ, ᎾᏍᎩᏯ ᎨᎦᏙᏁᏛ, ᏭᏕᎵᎬ ᎢᏣ ᏭᏩᎾᏬᏒ -ᏴᎬᎾᏟᎦ. ᎠᎼ ᎦᏚᎢᏣ ᏳᏓᏬᎠ ᎯᎠ ᎾᏂᏪᏎᎮ, ᏤᏍᏗ ᎭᎾ ᏯᏓᏬᏍᎨᏍᏗ ᎤᏍᏗ ᎠᏣᏗ, ᏣᏠᎯ ᏓᎦᏃᎯᎸᏍᏔᏂ ᏃᎴ ᏓᏣᎾᎩᏍᏔᏂ! ᎤᎵᏍᏆᎸᏗ ᏓᏓᎪᏪᎳᏂ ᎯᎪ ᎤᏒᎯ.” ᏚᎧᎿᏅᏃ ᏚᎪᎮ ᏧᏁᎿᎢ ᎠᏂᎲᏍᎨ ᎠᏕᎸ-ᏗᏗᏱ ᎤᎾᎵᏍᎪᎸᏔᏅᎯ. ᏕᎦᏚᏩᏗᏒᏃ ᎠᏂᎶᏍᎬᎢ, ᏓᏂᏲᎯᏎᎲᎩ ᎤᏂᏍᏆᏂᎪᏙᏗ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᏧᏄᎪᏔᏅᎯ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᏥᎷᏏᎵᎻ ᎠᏁᎯ. ᏎᎦᏨ ᏚᎭᎾᏬᎩᏐᏅ ᏗᏴᎦᎴᏴᏓ ᏚᎭᏄᏮ, ᏗᏌᎧ ᎭᏫᏂ ᏚᎭᏄᏮ, ᏔᎵᏁ ᏧᏁᎦᎶ ᎢᏗᏌᎧ, ᎤᏬᏗᎨ ᎤᏍᎪᎸ ᏗᏑᏫᏓ ᎢᏤ ᎢᏳᏍᏗ ᎠᏑᏫᏓ ᎪᏚᎢᏍᏛ. ᏎᎦᏨ ᏍᏉ ᎤᏰᏤ ᎰᎻ. (ᎥᏝᏍᎩᏂᏃᏅ ᏥᏌ ᎤᏩᏒ ᏱᏓᏓᏬᏍᎨᎢ, ᎬᏩᏍᏓᏩᏗᏙᎯᏉᏍᎩᏂ,) ᏁᎳᎩ ᏂᏚᏍᏕ ᎠᏰᎵ ᏗᎴᏂᏍᎩ ᎦᎸᎳᏗ ᏫᏗᎦᎷᎩ, ᏍᎩᎾᎾ ᏚᏂᎬᎨ ᏗᏍᏕᎵᏍᎩ ᏗᏐᎢ ᏧᏏᎳᏛᏗ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏴ ᏥᏧᏏ ᏗᎵᏏᏱ ᎨᎢ ᏓᏌ ᎦᏚᎲᎢ, ᎥᏝ ᎡᏍᎦᏉ ᎤᏬᎭᏛ ᎦᏚᎲᎢ ᎨᎢ ᏱᎩ; ᎠᎴ ᎬᏔᏲᏎᎭ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ ᏗᏥᏬᏁᏙᏗᏱ ᏴᏫ. ᎨᏍᏗ ᎤᏩᏌ ᎤᏪᏅᏒ ᎠᏰᎵ ᏱᎨᏎ, ᎨᏍᏗ ᏱᎪᎵᎨ, ᎡᎵᏍᎬ ᏰᎵᏉ ᏭᎷᎯᏍᏗ ᎤᏂᎵᏦᏩᏛ ᏃᎴ ᎤᎦᏃᏮ ᎤᏃᏛ ᎤᎵᏏᎩ ᏱᏂᎦᎵᏍᏘᏍᎬᎾ. Ꮟ ᎨᏍᏗ ᏱᏧᏁᏣ. ᎤᏑᏰᎭ ᎤᏟ ᎤᏰᎸᏁ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏴᏫ ᎠᏂᎩᎵᏲᏥᏙᎲ ᎤᏠᏯᏍᏙᏗᏱ, ᎠᏃ ᎠᏍᎦᏂ ᏞᎦ ᎣᏍᏛ ᎤᏓᏓᏅᏓᏗᏍᏙᏗ ᎨᏒᎢ; ᎠᎦᏓ ᏄᏟᏂᎬᎦ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ, ᎠᏎᏉ ᏄᏍᏛᎢ ᏗᎧᏃᏗ. ᏂᎯ ᏧᏪᏥ ᎯᏥᎨᏳᏣ, ᏥᏚᎢᏍᏗ ᎢᎦᎵᎢᏴ, ᎢᎪᎯᏓ. ᎦᏛᏃ ᎠᏂᏆᎵᏏ ᎾᎿ ᎤᏂᏣᏘ ᏄᎾᏛᏅ ᎯᎠ ᏅᏗᎬᏩᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᏘᏅᏍᏓᏗᏏ ᎨᏣᏍᏓᏩᏗᏙᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏐᎢ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎣᏥᎪᎥ ᎤᎬᏫᏳᎯ. ᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᏴᎦᎪᎢᏳᎲᎦ ᎬᏂ ᏧᏪᏰᏂ ᏴᎩ ᏚᏰᎸᏒ ᏱᏓᎩᎪᎲ, ᎠᎴ ᏥᏰᏌᏛ ᏯᏋᏔᏅ ᏯᎩᏃᏟᏍᏔᏅ ᏴᎩ ᏚᏰᎸᏒᎢ, ᎠᎴ ᎠᏍᏆᎨᏂ ᏯᏆᏐᎾᏛ. ᎠᏗᎾ ᏞᏍᏗ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᏳᎩᎵᏲᏤᏍᏗ ᏴᏫ ᎤᎸᎢ ᏳᏍᏛᏗᏍᎨᏍᏗ, ᎠᎴ ᎤᏃᏍᎩᏒᎢ, ᎠᎴ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎠᎴ ᎤᎵᏌᎳᏁᎯ ᎨᏒ ᏅᏩᎾᏓᎴ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎤᏁᎳᏅᎯᏰᏃ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎢᏤᎲ ᎢᏨᏯᎵᏥ ᏙᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏴ, ᎠᎴ ᏏᎵᏪᎾ, ᎠᎴ ᏗᎹᏗ ᎢᏨᏯᎵᏥᏙᏁᎸᎯ ᏥᎩ, ᎥᎥ ᎠᎴ ᎥᏝ ᎤᏛᏗᏱ ᎥᏝ ᏲᎦᏛᏁᎢ, ᎥᎥᏍᎩᏂ ᎤᏩᏒ ᎤᏛᏗᏱ ᎬᏂᎨᏒ ᏃᎬᏁᎸᎩ. ᎠᏓᏕᎭᏯᏙᏔᏅᎾ ᎤᏂᏍᏆᏙᏅ ᎠᎾᏛᏁᎵᏍᎩ, ᎤᏣᏘᏅ ᎦᏚᎲ ᏭᎶᏒ Mrs. Chapman, ᎠᎹᏳᎸᏓ ᎨᏙᎲ ᏰᎵ ᏧᏙᏓᏆᏓ ᏥᏑᎵᎪᎬ, ᎨᏍᏗ ᏱᏓᏉᏪᎳᎾ ᎪᏪᎵ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᏍᎩ ᏧᏂᎾᎩᏍᏗ ᏃᎴ ᏗᏇᏅᏒ Tallent. ᎤᏣᏛᎩ ᎢᏳᏓᎴᎩ ᎢᏨᏲᏪᎳᏁᏗ ᎠᎩᎲᎩ, ᎠᏎᏃ ᎥᏝ ᎪᏪᎵᏉ ᎠᎴ ᏗᎪᏪᎶᏗ ᏗᎬᏙᏗ ᏯᎩᏰᎸᏎᎢ, ᎤᏚᎩᏰᏃ ᎠᏋᎭ ᎢᏨᏩᏛᎲᏍᏗᏱ, ᎠᎴ ᏗᏗᎰᎵ ᏗᎬᏙᏗᏱ ᎢᎦᎵᏃᎮᏗᏱ, ᎠᎴ ᎢᏓᎵᎮᎵᎬ ᎤᎧᎵᎢᏍᏗᏱ. ᎯᎠ ᏂᏑᏪᏎᎴᎢ; ᎠᎩᏅᏩᏅᎯ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᎮᏓ. ᎠᏴᏍᎩᏂ ᎥᏝ ᏴᎦᏲᏣᏢᏈ ᎠᎦᏲᏥᎶᏒᏍᏓ ᎠᏟᎶᎥᎢ; ᎾᏍᎩᏯᏉᏍᎩᏂ ᏩᏍᏛ ᎢᏴᏛ ᎠᏟᎶᎥ ᎤᏁᎳᏅᎯ ᏙᎩᏲᎯᏎᎸᎢ, ᎾᏍᎩ ᎠᏟᎶᏍᏗ ᏂᎯ ᏗᏤᎲ ᏫᎦᎷᎩ. ᎢᏳᏍᎩᏂ ᎢᎸᎯᏳ ᏁᏥᎩᏲᎢᏍᏗᏍᎬᎾ ᏱᎩ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏗᏂᏲᎵ ᎾᏍᎩ ᎢᎨᎬᏁᏗ ᏥᎩ, ᎿᏉ ᎢᏴᏛᏉ ᎢᏣᏕᏂᏙᎸᎯ, ᎥᏝᏃ ᎣᏍᏛ ᎢᏣᏕᏅᎯ ᏱᎩ. ᎠᏎᏃ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ. ᎯᏌᏙᏯ- ᎯᏌᏙᏯ - ᎯᏌᏙᏯ - ᎯᏌᏙᏯ, ᏃᏗ ᎩᏅᎪᎢ!” ᎤᏁᎳᏅᎯᏃ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏳᏂᏍᏚᎢᏒᎩ ᎦᎸᎳᏗ, ᎠᎴ ᏩᎪᏩᏛᏗ ᎨᏒᎩ ᎾᎿ ᎤᏤᎵᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗ; ᎠᎴ ᏚᎾᎦᎸᎲᎩ, ᎠᎴ ᏚᏂᏁᏨᎩ, ᎠᎴ ᏚᏴᏓᏆᎶᎥᎩ, ᎠᎴ ᎪᏙᎯ ᎤᎵᏖᎸᏅᎩ, ᎠᎴ ᎤᏍᎦᏎᏗ ᎤᏁᏐᎠᏒᎩ. ᎾᏍᎩ ᎢᎦᎢ ᎤᏟ ᎢᏳᏓᎵᏁᎯᏯᏛ ᎾᎬᏁᎴ ᎡᏍᎦ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᎤᏘᏯᏍᏓᏁᏗ ᎨᏒ ᎤᏟ ᎢᎦᎸᏉᏗ ᏧᏙᏍᏙᏗ ᏧᏩᏛᏔᏅ. ᎢᏳᏃ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸᎾ ᏱᎩ ᏅᏩᏓᎴ ᎤᏤᎵᎦ ᎨᏒᎢ, ᎦᎪ ᏓᏥᏁᎵ ᎢᏨᏒ ᎢᏣᏤᎵ ᎨᏒᎢ? ᏰᎵ ᎪᎯᏛ ᏂᏓᎩᎷᏍᏔᏁᎰ ᏥᏍᏕᎵᏍᎬ ᏲᎾ, ᏗᎦᏤᎵ ᏴᏫ ᎤᎾᎵᏍᏕᎸᏙᏗ. ᎠᏏᏉᏃ ᎾᏍᎩ ᏂᎦᏪᏍᎬᎩ, ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬᎢ, ᏇᏍᏓ ᎯᎠ ᎠᏍᏓᏯ ᏄᏪᏒᎩ; ᏣᎸᏃᏘᎭ ᏉᎳ, ᎤᏣᏘ ᎪᏪᎵ ᏘᏏᎾᏏᏳ ᎨᏒ ᎾᏍᎩ ᏣᎸᏃᏙᏗᎭ. ᎤᏔᎷᎩᏍᎨ ᎤᏁᎦᎸ. ᎾᎯᏳᏃ ᎤᏂᏣᏘ ᎨᏒ ᏴᏫ ᏧᏈᏯ. ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᏄᏂᎲᎾ ᎨᏒ ᎤᎾᎵᏍᏓᏴᏗ, ᏥᏌ ᏫᏚᏯᏅᎲ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏃᏗ ᎤᏂᏍᏆᏙᏅ ᏗᏙᎴᏆᏍᏗ, ᏧᏙᏓᏋᏓ ᎮᏙᎮ ᏲᎾ ᎤᏤᏍᏙ, ᎤᏍᏗ ᎦᏍᎩᎶᎩ ᎤᏬᏞ ᎡᏝᏪᎯ. ᎿᏉᏃ ᏑᏓᎵ ᎢᎦ ᏚᏃᏒᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᏍᏆᎸᏗᏱ ᏥᏌ ᏇᏗᏂ ᏭᎷᏨᎩ, ᎾᎿ ᎡᎲ ᎳᏏᎳ, ᎤᏲᎱᏒᎯ ᏥᎨᏒᎩ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏥᏚᎴᏔᏅᎩ. ᏗᏥᎨᏫ ᏗᏣᏓᏘᏂᏙᎯ! ᏙᏒ ᎢᏥᎿᏐᎸᏍᏗᏍᎩ ᎨᎻᎵᏃ ᎢᏥᎩᏍᎩ. ᎠᎴ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᎾᏠᎾᏍᏗ ᎠᎾᎵᏅᏟ ᏄᏪᎵᏍᏛᎾ ᎨᏥᏴᏔᏂᎸᎯ, ᎾᏍᎩ ᏅᏕᎵᏛ ᎤᏂᏴᎵᎸ ᎤᏂᎨᏛᏗᏱ ᎣᎦᏓᏤᎵᎦᏯ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎣᎩᎲᎢ, ᏦᎩᎾᏝᎢ ᎢᎪᎬᏁᏗᏱ; ᎠᏓᏅᏬᎯᏍᏗᏍᎩᏍᎩᏂ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ ᏅᏓᏳᏅᏍᏗ ᏥᎩ ᏓᏆᏙᏍᏛᎢ, ᎾᏍᎩ ᏂᎦᏛ ᏓᏤᏲᏂ, ᎠᎴ ᏓᏣᏅᏓᏗᏍᏔᏂ ᏂᎦᎥ ᎢᏨᏁᏤᎸᎢ. ᏑᎾᎴ, ᎠᏤ ᎧᏁᏍᎦ ᎤᏝᏁ ᏫᎵᎻ ᎤᏴᏍᏗ ᏣᏄᏏ ᏃᎴ ᏏᏆ ᎤᏴᏍᏗ ᏭᏝᏁᎢ. “ᎧᏃᎮᏗ ᏍᎩᏃᎯᏏ, ᏌᎳᏓ!” ᏍᏉᏃ ᏚᏯᏪᎨ ᏌᎳᏓ, ᎠᏎᏃ ᏫᎵᎻ ᎤᏚᎵᏍᎬ ᏄᏛᏁᎴ. ᏂᎦᏓ ᏲᎾ ᎤᏤᏍᏙ ᎤᏚᏥ ᎰᎻ ᎠᎪᏕᏍᎩ ᎤᏤᎵ ᎨᏎᎢ. ᎾᏍᎩᏃ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏂᏅᏒ, ᏗᎷᏏᏱ ᏭᏂᎶᏎᎢ, ᎾᎿᏃ ᏫᎤᏁᏅ ᏥᏳᎯ ᏫᎤᎾᏣᏁ ᏌᏈ ᏫᎤᏂᎷᏤᎢ. ᎤᏂᎷᏣ ᏗᎾᏦᏏᏙ, ᎨᎵᏍᎬ ᎤᎩᏓᏟᏅᏯ ᎨᎴᏍᏗ, ᎠᏎᏃ ᎨᏍᏗ ᏱᎨᎴ. ᎠᎵᏍᏓᏴᏗᏱᏃ ᎨᏒ ᎤᏍᏆᎸᎲᎤᏅᏎ ᎤᏅᏏᏓᏍᏗ ᎯᎠ ᏫᏂᏚᏪᏎᏗᏱ ᏫᎨᏥᏯᏅᏛ; ᎡᏤᎾ, ᏂᎦᏗᏳᏰᏃ ᎿᏉ ᎠᏛᏅᎢᏍᏗ. ᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ ᏩᏯ, ᏥᏩᏛᎲ ᏲᎾ ᎤᏒᎯ ᎢᏴ ᎤᏰᏨ ᎠᏓᏅᏖᎯᎶᏍᎬ ᎤᏬᏒᎯᏐᏗ ᎠᏤᎯ ᎤᏍᏗ ᎡᎶ ᎤᏪᏘ ᏧᏥᎶᏍᏔᏅ. ᎣᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏥᏌ ᏧᎴᏔᏅᎯ, ᎾᏍᏉ ᎠᏴ ᏥᏌ ᎠᎬᏗᏍᎬ ᏙᏓᏲᎦᎴᏔᏂ, ᎠᎴ ᎠᏴ ᏂᎯᏃ ᎢᏧᎳᎭ ᏫᏗᎩᏲᏏᎯᏍᏗ ᎨᏎᏍᏗ. ᏞᏍᏗ ᎤᎵᏍᏗ ᏱᏘᏯᏏᏔᏕᏍᏗ ᎩᎶᎢ, ᎠᎴ ᏞᏍᏗ ᏯᏖᎳᏗᏍᎨᏍᏗ ᎩᎶ ᎠᏂᏍᎦᏅᎬᎢ. ᏣᏓᎦᏌᏩᏍᏕᏍᏗ ᎯᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏎᏍᏗ. ᏅᏩᏓᎴᏃ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩᏉ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐᎢ; ᏅᏩᏓᎴᏃ ᎠᏥᏁᎰ ᏧᏓᏅᏬᏗᏱ, ᎾᏍᎩᏉ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐᎢ; ᎯᎠ ᎾᏍᎩ ᏔᎵᏁ ᎪᏪᎵ ᎿᏉ ᎢᏨᏲᏪᎳᏏ ᎢᏨᎨᏳᎢ; ᎾᏍᎩ ᎾᎿ ᏕᏨᏰᏍᏓᏁ ᎤᏠᎾᏍᏗ ᏂᎨᏒᎾ ᏕᏣᏓᏅᏛ ᎾᏍᎩ ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ, ᏂᎦᏓ ᏗᏂᏅᎦᎵᏙ ᏃᎴ ᏗᏃᏪᎵᏍᎩ ᏓᎾᏓᏂᎸᎨ ᏍᎩᏴ ᏥᎨᏎ ᎣᏍᏓ ᏄᏍᏗᏓᏁ, ᎣᎭᏂ ᏧᏩᎬᏗᏒ ᎡᎳᏗ ᏂᎦᎵᏍᏔᏂᏗᏍᎪ. ᎢᏣᏢᏆᏍᎬ ᎥᏝ ᎣᏏᏳ ᏱᎩ. ᎥᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎤᏍᏗ ᎠᎪᏙᏗ ᏂᎦᏛ ᎦᎸ ᎠᎪᏗᏍᎬᎢ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏏᏌ ᎤᏪᏍᎩᎸ ᏗᎫᎪᏙᏗᏱ ᏥᏙᎦ, ᎾᎿ ᎠᏆᎵᏰᎢᎵᏕᏗᏱ. ᎠᏂᏧᏏ ᎥᏝ ᎪᎱᏍᏗ ᎦᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ, ᎾᏍᎩ ᎣᏏᏳ ᏂᎯ ᏥᎦᏔᎭ. ᎯᎠ ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎡᏗᏯᎥᎢ ᎠᎴ ᎠᏴ ᎢᎩᏯᎥᎢ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎢᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏒ ᎤᏩᏒ ᎤᏤᎵ ᎠᏓᏅᏙ. ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ [ᏤᏣᎵᏍᎦᏍᏙᏔᏅᎩ] ᎿᏉ ᎢᏣᏛᎦᏅ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᏣᎵᏍᏕᎸᏙᏗ ᏥᎩ; ᎾᏍᎩ ᎾᏍᏉ ᎡᏦᎢᏳᏅ, ᎿᏉ ᎢᏥᏰᎸᏔᏅᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎴ ᎬᏩᏰᏍᏔᏁᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᏍᎩᏍᏕᎸ, ᏓᏲᏣᏗᏒᏂᏉ. ᎤᎾᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᏚᏃᎸᏎᎢ; ᎤᏄᏖᏎᏃ ᎤᎵᎬᎭᎷᏴᎯ ᎤᏘᏴᎯ ᎦᎵᏉᎩ ᎢᏯᎧᎵᎢ ᏔᎷᏣ. [ᎾᏍᎩ ᎯᎠ ᎥᏝ ᎡᎶᎯ ᎬᏩᎾᏕᏗ ᏱᎨᏎᎢ;] ᎢᎾᎨ ᎠᏁᏙᎮᎢ, ᎠᎴ ᏙᏓᎸᎢ, ᎠᎴ ᏚᏍᏓᎦᎸᎢ, ᎠᎴ ᎦᏙᎯ ᏓᏔᎴᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎠᏇᏥ ᏣᎵᏂᎪᎯᏍᏗᏍᎨᏍᏗ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ. ᏌᎴᎫᏏᏃ ᎣᎦᏚᎩᏒ, ᎾᎿ ᏦᎢ ᏃᎩᏒᎸᎩ. ᎨᏍᏗ ᎣᏍᏓ ᏱᏥᏰᎸᎡ ᎦᏲᏟᏉ ᎣᎩᎾᏟᏃᎮᎸ. ᎢᎬᏒᏰᏃ ᎾᏍᏉ ᎢᎸᎯᏳ ᏥᎨᏒ ᎢᎩᏁᎫ ᎨᏒᎩ, ᏂᎪᎯᏳᏒᎾ, ᎢᎩᎵᏓᏍᏔᏅᎯ, ᎪᎱᏍᏗ ᏕᏓᏛᏁᎲᎩ ᏧᏓᎴᏅᏛ ᎠᏚᎸᏅᏗ ᎨᏒ ᎠᎴ ᎣᏍᏛ ᎠᏓᏓᏅᏓᏗᏍᏗᏍᎩ ᎨᏒᎢ, ᎤᏲ ᎨᏒ ᎠᎴ ᎠᏛᏳᎨᏗ ᎢᏕᎲᎩ, ᎢᎩᏂᏆᏘᏍᏗ, ᎠᎴ ᏗᏓᏓᏂᏆᏘᎯ ᎨᏒᎩ. ᎧᏂᎩᏓ ᏤᏠᎯ. ᎾᏍᎩ ᎩᎬ ᏧᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏇᏓᎵ ᎠᏓᏅᏖᏍᎬ ᏧᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏴᏫ ᎠᏓᏅᏖᏍᎬ ᏧᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏧᎾᏄᎪᏫᏒᎯ. ᎾᏍᎩᏯ ᏄᏍᏛ ᎦᎸᏉᏗᏳ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᏅᏩᏙᎯᏯᏛ ᎡᎯ ᎤᏤᎵᎦ; ᎾᏍᎩ ᎠᏴ ᎥᏆᏒᎦᎶᏔᏅᎯ ᏥᎩ. ᏗᎹᏗ, ᏣᏍᏆᏂᎪᏕᏍᏗ ᎾᏍᎩ ᏣᏣᎨᏅᏴ, ᎢᏴᏛ ᏅᏁᎮᏍᏗ ᎦᏪᏢᏗ ᎨᏒ ᎠᎴ ᎠᏎᏉᏉ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒ ᎠᎦᏙᎥᎯᏍᏗ ᏂᏚᏳᎪᏛᎾ ᏥᏚᏙᎥ; ᎩᎳᎯᏳᏉᏍᎩᏂ ᎪᎯ ᎢᎦ ᎢᏯᏍᏗ ᎢᏳᏃ ᎼᏏ ᏓᏥᎪᎵᏯ ᎠᎵᎬᏚᎶ ᏧᏂᎾᏫ ᏚᏭᏢᏙᎢ. ᎧᏂᎩᏛ ᏥᏍᏚ ᎠᎴ ᎬᎵ. ᎾᏍᎩᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ, ᏚᏂᎷᏨᎸᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎣᎦᏎᎵᏔᏅ ᏙᎦᏓᏁᏤᎸ ᎣᎩᏍᏛᏗᏍᏗᏱ, ᎪᎱᏍᏗ ᎣᎦᏅᏍᎦᎶᏗᏱ ᎠᎴ ᎣᎦᏚᎩᏍᏗᏱ ᏂᎨᏒᎾ ᎬᏂ ᏉᎳ ᎣᏥᎸᎯ ᎨᏎᏍᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᏌᏉ ᎢᏯᎦᎵᏍᏙᎸᏔᏅᎯ ᎤᎩᏍᏗᏱ ᎤᏂᏣᏘ ᎨᏒ ᎤᏂᏍᎦᏅᏨᎢ; ᎾᏍᎩᏃ Ꮎ ᎬᏩᎦᏖᏃᎯ ᎨᏒ ᏔᎵᏁ ᎬᏂᎨᏒ ᏂᏙᏛᎠᏛᏁᎵ ᏧᏍᏕᎸᏗᏱ, ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ ᎾᏰᎲᎾ ᏌᎳᏓ ᎱᎴᏅᎮ ᏓᏏᎳᏛᎥᏍᎬ. ᎩᎶᏃ ᎾᏍᎩ ᎯᎠ ᏥᏄᏍᏙ ᎤᏚᎩ ᏧᏩᏐ [ᏥᏌ], ᎤᏩᏒ ᎠᏓᏅᎦᎵᏍᎪᎢ, ᎾᏍᎩᏯ [ᏥᏌ] ᏄᏅᎦᎸᎾ ᏥᎩ ᎾᏍᎩᏯ ᎾᏓᏛᏁᎰᎢ. ᏓᏤᎵᏍᏛᏃ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎤᏂᏣᏘ ᎤᎾᏓᏅᏘ ᎤᏂᎵᏅᏨᎯ ᎤᎾᏗᏓᏁᏎᎢ, ᎤᎿᏛ ᎤᏪᏯ ᏗᏣ ᏗᎠᎢᏒ ᏙᏯ. ᎤᎾᏥᏍᏈᏍᏛᏃ ᏓᎶᏂᎨ ᏒᎦᏔ ᎤᎾᏔ, ᏚᏩᏅᎦᏢᏃ ᏚᏓᎨᏒᎢ ᏚᏘᏌᏕᎢ. ᏂᎪᎯᎸᏃ ᏄᏓᎴ ᎤᏍᏗ ᏥᏍᏆ, ᏥᎩᎵ, ᎱᏃᎯᎵᏣᏁ ᎡᎳᏗ ᎨᏒᎢ ᎯᎠ ᎦᎸᎳᏗ ᏚᏩᏂᎦᎸᎢ ᏃᎴ ᏍᎩᎾ ᏍᎩᎵ ᎦᏃᎨᎾ. ᎠᎴ ᎠᏂᏯᏫᏍᎩ ᏐᏈᎵ ᏧᎾᎩᎸᏗ ᏔᎵᏧᏈ ᎢᏳᏆᏗᏅᏛ ᎾᏂᎥᎩ; ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎾᏂᎥᎢ. ᎤᏕᏘᏴᏌᏗᏒ ᎨᏍᏗ ᎠᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ, ᎨᏍᏗ ᎬᏛᏅᎢᏍᏙᏗ ᏱᎨᏎ. ᏥᎷᏏᎵᎻᏃ ᏬᎩᎷᏨ, ᎠᎾᏓᏅᏟ ᎤᎵᎮᎵᏨᎯ ᏕᎪᎦᏓᏂᎸᏨᎩ. ᎤᏙᎯᏳᎲᏉ! ᎤᏍᏉᏟ ᎠᎩᏟᏲᎨ ᏄᏍᏛᏉ ᎠᎵᏍᏔᏴᎲᏍᎬ. ᎯᏯᏫᏍᎨᏍᏗ, ᎠᎴ ᏔᎵᏂᎪᎯᏍᏓ ᎾᏍᎩ Ꮎ ᏧᎵᏃᎯᏴᎯ, ᎾᏍᎩ ᏧᎵᏬᏥᏕᎾ ᏥᎩ; ᎥᏝᏰᏃ ᏯᎩᏩᏛᎲ ᎤᎧᎵᏨᎯ ᎣᏍᏛ ᎨᏒ ᏕᏣᎸᏫᏍᏓᏁᎲ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏅᎢ. ᎾᏍᎩ ᎤᏤᎵ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᎪᎯᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ. ᎪᏪᎵᏃ ᎦᎸᏉᏗ ᎢᎬᏱ ᎦᏰᎯ ᏣᎪᏩᏘᏍᎨ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎪᎯᏳᏗ ᎬᏗ ᏙᏗᎫᏓᏏᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎢᎬᏱ ᎦᏰᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏂᎨᏒ ᎾᎬᏁᎴ ᎡᏆᎭᎻ, ᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᏂᎯ ᏅᏛᏂᏌᏂ ᏂᎦᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎡᎳᏂᎬ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ. “ᎬᏲᎵᎭ ᏯᏆᏛᎾ, ᎠᏉᏚᎢᏍᏔᏅ ᏏᏲ ᎠᎴ ᎣᏍᏓ ᏑᎾᎴᎢ. ᎠᎴ ᎾᏍᎩ Ꮎ ᏗᎪᎵᏰᏍᏗ ᏧᎾᏫ ᎠᎦᏔᎭ ᏄᏍᏛ ᎠᏓᏅᏖᎵᏙᎲ ᎠᏓᏅᏙ ᏅᏗᎦᎵᏍᏙᏗ ᎤᎾᏓᏅᏘ ᏓᎵᏍᏗᏰᏓᏁᎲ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ. ᎠᏤᎯᎨᏍᏗᏗᏅ ᎠᏆᏛᏅ. ᎤᏟᏰᏃ ᎣᏏᏳ, ᎾᏍᎩ ᏱᏄᏍᏗ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩ ᎢᏥᎩᏲᎢᏍᏗᏱ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ, ᎠᏃ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎢᏥᎩᎵᏲᎢᏍᏗᏱ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎬᏂᏳᏉ ᏂᎦᎡ ᎤᎨᏳᎯᏳ ᎨᏎᎢ. Ꮭ ᎩᎶ ᎰᏩ ᏰᎵᏍᎨ. ᎠᏁᏍᏔᏅ ᎠᏕᎶᎰᎯᏍᏘ ᎨᏒ, ᏄᎾᏍᏛ ᏧᏂᏲᎰᏒ ᎠᏂᏧᏣ ᏃᎴ ᎦᎳᎨᏴ ᎤᎾᏤᎵ ᏃᎴ ᏚᏙᏪᎸ ᎦᏙ ᏚᎾᏓᏟᏴᎲ. ᎨᏥᏅᏏᏛᏃ ᎤᏣᏖ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸ ᏫᏍᏓᏁᎮ ᏴᏫ ᎠᏁᎲᎢ. ᏂᎦᏛᏃ ᏌᏉ ᎢᎦᎦᏛ ᎠᏂᏁ ᏐᎵᎹᏅ ᎤᏤᎵ ᎠᏲᏓᏝᎲᎢ. ᎢᏳᏃ ᎣᎳᏏᏕᏂ ᎯᎠ ᏱᏄᏪᏒ, ᎠᏴ ᎤᏬᏰᏂ ᏂᎨᏒᎾ ᏥᎩ ᎥᏝ ᎠᏰᎸ ᏯᏆᏘᏝ, ᎾᏍᎩᏍᎪ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᎠᏰᎸ ᏳᏘᏝ? ᎦᎷᏨᎭᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎠᏓᏅᏙ, ᏂᎦᎥ ᎤᏙᎯᏳᎯ ᎨᏒ ᏙᏓᏣᏘᏂᏙᎵ, ᎥᏝᏰᏃ ᎤᏩᏒᏉ ᎤᏓᏅᏖᏛ ᏱᎧᏁᎨᏍᏗ, ᏂᎦᎥᏍᎩᏂ ᎠᏛᎩᏍᎨᏍᏗ ᎾᏍᎩ ᎧᏁᎨᏍᏍᏗ; ᎠᎴ ᏓᏥᎾᏄᎪᏫᏎᎵ ᏧᏓᎴᏅᏛ ᎣᏂ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ. ᎦᏐᎯ ᏫᎦᎶᏍᎩ ᎠᏰᎳᏍᏗ, ᏥᎧᏍᎨᏂ ᎠᏆᎧᏍᎩᎸ. “ᎦᏨ ᎢᏴᎯ?” ᎤᏛᏛᏁ ᏫᎵᎻ. “ᏙᎢᏳᏍᏗ ᎯᎪᏩᏗᎭ?” ᎤᏛᏛᏁ ᏫᎵᎻ. Boudinot ᏃᎴ ᎠᏫᎾ ᎦᏄᎾᏓᎴᎩ ᎤᎾᏨᏉᏗ ᎤᎾᏤᎸ, ᎤᏂᏣᏘ ᏍᎩᏄᎾᏍᏛ ᎠᏂᏫᎾ, ᎠᏯ ᏍᏉ. ᎾᏍᎩᏃ ᎤᏙᏓ ᎤᏙᎴᎰᏒᎩ ᎾᎯᏳ ᎨᏒ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎢ; ᏤᏥ ᎬᏅ. ᎤᏩᏒᏃ ᎤᏬᎯᏳᏅᎩ ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᏧᏤᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ. ᎥᏝ ᎠᎴ ᎡᏅᏒᏉ, ᎢᎬᏒᏍᎩᏂ ᎾᏍᏉ ᎢᎬᏱᏱ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏓᏅᏙ ᏥᎨᎭ, ᎠᏴ ᎾᏍᏉ ᎢᎬᏒ ᎨᏒ ᎭᏫᏂ ᏕᎩᎵᏰᏗᎭ, ᎢᏗᎦᏘᏴ ᏧᏪᏥ ᎢᎨᎬᏁᏗ, ᎾᏍᎩ ᏗᏗᏰᎸ ᏧᎫᏴᏗᏱ ᏧᏭᏓᎴᏍᏗᏱ. ᎢᏳᏃ ᎯᎦᏙᎵ ᎯᎦᏘᏏ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ, ᎠᎴ ᏣᏕᎨᏍᏗ; ᎣᏏᏳᏰᏃ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉᏉ ᏣᎵᎬᎭᎸᏛ ᏱᏣᏲᎱᏎᎭ, ᎠᏃ ᎤᏃᏍᏛ ᎯᏰᎸ ᏨᏍᎩᏃ ᏫᏰᏣᏓᎢᏁᎭ. ᎣᏍᏓ ᎠᏒᎨ ᎠᎵᏍᏓᏴᏗ. ᎣᏂᏃ ᏓᏆᎧᎿᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎦᎶᎯᏍᏗᏱ ᎤᎵᏍᏚᎢᏛ ᎨᏒᎩ ᎦᎸᎳᏗ; ᎢᎬᏱᏱᏃ ᎧᏁᎬ ᎠᏆᏛᎦᏅᎯ ᎠᏤᎷᎩ ᏣᏆᎵᏃᎮᏗᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ; ᎯᎠ ᏥᎾᎩᏪᏎᎰᎢ, ᎡᎭᎩᎳᏩ, ᏓᎬᎾᏄᎪᏫᏎᎵᏃ ᏧᏓᎴᏅᏛ ᎾᏍᎩ ᎣᏂ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ. ᏂᎦᏛᏰᏃ ᎾᏍᎩ ᎯᎠ ᎤᏂᏲᎰ ᏧᎾᏖᎴᏅᏛ ᏴᏫ. ᎦᎸᎳᏗᏰᏃ ᎡᎯ ᎢᏥᏙᏓ ᎠᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎢᏥᏂᎬᏎᎲᎢ. ᏓᏓᎿᏩᏍᏛᏰᏃ ᎧᏃᎮᏗ ᎨᏒ ᎠᎵᏍᏓᏁᏛ ᎤᏂᏰᎸᎭ ᎾᏍᎩ Ꮎ ᏧᏂᏲᎱᎯᏍᏗ ᏥᎩ; ᎠᏴᏍᎩᏂ ᎡᎩᏍᏕᎸᏗ ᏥᎩ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎬᎬ ᎢᎩᏰᎸᎯ. ᎤᏂᏣᏘᏃ ᎬᏩᏛᏛᏁ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙ ᏓᏲᏣᏛᏁᎵ? ᏥᏍᏕᏥ, ᎧᏅᏂᏍᎩ ᏃᎴ ᎠᎨᏳᏣ ᎤᎾᎦᏙᏍᏕᎢ ᏫᎵᎻ ᏭᎩᎶᏫᏌ ᏗᎩᏏ ᎦᏓᏍᎬᎢ, ᎤᎧᎵᏨ ᏄᏟᏂᎬᎬ ᏃᎴ ᎤᏚᎩ. ᎠᎴ ᎥᏝ ᏱᏚᏂᎿᏍᏕᏠᎢ, ᏞᎦᏉᏍᎩᏂ ᏓᏂᎧᎿᏩᏕᎪᎢ; ᎿᏉᏃ, ᎠᎩᎵᏯ ᎠᎴ ᎤᏕᏯᏙᏗ ᎠᎵᏰᎢᎶᎦ ᎧᏃᎮᏛ ᏛᎵᏰᎢᎸᏍᏓ, ᎩᎳᏉ ᎢᏴᏛ ᏚᏃᏕᎯᎰᎢ. ᎠᏍᎩᎾᏃ ᎾᏍᎩ ᎤᏂᎶᏄᎮᎸᎯ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᎥᏓᎸ ᏩᎦᏓᎢᏅᏒᎩ, ᎾᎿ ᎠᏁᎲ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎴ ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ, ᎠᎴ ᎨᏥᎩᎵᏲᎢᏍᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᏄᎾᏙᏓᏈᏒᏃ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᎦᏬᏂᏍᎬᎩ, ᎠᎴ ᏓᏍᏗᏰᏗᏍᎬᎩ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ. ᎢᎦ ᏒᎮᏱᏣ ᎤᎶᏐᏅ, ᏃᎴ ᎤᏓᏏᏂᏕᎾ ᎤᎷᏨ. ᎾᏍᎩᏰᏃ ᎤᏩᏒ ᎤᎩᎵᏲᏨᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏥᎪᎵᏰᏍᎬᎢ ᏰᎵᏉ ᏗᎬᏩᏍᏕᎸᏗ ᏄᎵᏍᏔᏅ ᎾᏍᎩ Ꮎ ᎨᏥᎪᎵᏰᏍᎩ ᎠᎾᏓᏴᎳᏘᏍᎩ ᏙᏍᏗᎦᏙᏍᏙ Ꮓ; ᎪᎱᏍᏗ ᎠᎾᏛᏁᎵᏍᎬ ᏒᏃ ᎢᎪᎯᏓ. ᎤᏣᏘ ᎠᏗᎾ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎣᏌᏂ ᎤᏓᏁᏗ ᎨᏒᎢ; ᎠᏎᏃ ᎬᏂᎨᏒ ᏅᏛᏨᏴᏁᎵ ᎤᏟ ᎢᏲᏍᏛ ᎢᏯᏛᏁᏗᏱ. ᏣᎵ ᏧᏤᎵ ᏴᏫ ᎤᏂᏃᎮᎴ, ᎤᏃᎯᏳᏁ ᏱᎫᏩᏂᏍᎦᏃᎳᏗᏍᏛ ᏐᏈᎵ ᎤᏲᎢᏴ ᎦᏚᏏ, ᏧᏂᏲᎭᏒ ᎠᏂᏧᏣ ᏓᏂᎾᎥ ᎾᎥᏂ ᏚᏂᎧᎯᏰ ᎤᏂᏍᎦᎢᏓ ᏃᎴ ᎤᎾᏦᏍᏔᏁ. ᎢᏳᏍᎩᏂ ᎩᎶ ᎯᎠ ᏂᏥᏪᏎᎮᏍᏗ, ᎯᎠ ᎾᏍᎩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᏥᎸ ᏗᎨᎴᏗ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᏞᏍᏗ ᏱᏥᎩᏍᎨᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᎤᎾᏄᎪᏫᏒᎯ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏅᏙᎩ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎡᎶᎯᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᎧᎵᎢᎭ. ᏌᏌ ᎤᏛᎦᏁ ᎠᏂᎾᏁᏍᎬ, ᏍᏉ ᎤᏪᎷᏁ, ”ᎭᎵᏙᎩ-- ᎭᎵᏙᎩ--ᎭᎵᏙᎩ, ᎠᏙᎯ ᎢᏣ, ᎠᏙᎯ ᎢᏣ! ᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏅᎩ ᎤᎵᏂᎩᏛ ᎧᏁᎬ ᎬᏗ, ᎯᎠ ᏂᎦᏩᏍᎬᎩ, ᏓᏓᎶᏂ ᎡᏆ ᎠᏲᎩ, ᎠᏲᎩ, ᎠᎴ ᎠᏂᏍᎩᎾ ᎤᎾᏕᏗᏱ ᏂᎦᎵᏍᏓ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ ᎤᏂᏴᏍᏗᏱ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᎠᎴ ᎤᏂᏂᏆᏘᏍᏗ ᏥᏍᏆ ᎤᎾᏁᎳᏗᏍᏗᏱ. ᏕᏨᏍᏚᎩᎡᎸ ᏦᏥᎰᎵ, ᎢᏥᎪᎵᏂᏗ, ᏦᎩᎾᏫ ᏕᏨᏯᏛᏃᎯᏍᏓᏁᎸ. ᎦᏣᏃᏍᏔ ᎤᎵᏍᏛᏧᏅ ᎨᎵ, ᎣᎭᏁ ᏫᏄᏩᏁᎸ ᎤᏍᏘᏰᎬ. ᎤᏂᏃᎮᎸᎯᏃ ᎠᏎᏉᏉ ᏅᏩᏍᏕᎢ, ᎠᎴ ᎥᏝ ᏱᎨᎪᎢᏳᏁᎢ. ᎿᏉᏃ ᎠᏥᎦᏘᏗᏍᏗ ᎤᎪᎲ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ, ᎤᏬᎯᏳᏁᎢ, ᎠᏍᏆᏂᎪᏍᎨ ᏄᏍᏛ ᏓᎾᏕᏲᎲᏍᎬ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ. ᎾᏍᎩ ᏉᎳ ᎤᏚᎸᎲᎩ ᎤᏘᏅᏍᏗᏱ; ᎤᎱᏍᏕᏎᎸᎩᏃ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏂᏧᏏ ᎾᎿ ᏓᏁᏩᏗᏒᎢ, ᏂᎦᏛᏰᏃ ᎠᏂᎦᏔᎲᎩ ᎤᏙᏓ ᎠᎪᎢ ᎨᏒᎢ. ᎠᏓᏅᏖᏗᏉ ᏄᏍᏆᏂᎩᏛ ᏄᎵᏍᏔᏁᎸ ᎩᎶ ᎦᏬᏂᏍᎬ ᎤᏛᎦᎾ. ᎤᏕᎰᎯᏍᏗ ᎨᏒ ᎤᎬᏩᎵ ᏥᏁᎦ, ᎾᏍᎩ ᏦᏥᏩᎾᎦᎳ ᎪᎪᏎᎲᎢ. ᎾᎿᏍᎩᏂᏃᏅ ᎩᎶ ᎬᏩ-ᎾᏰᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒ (ᎤᏁᎫ ᎤᏁᎢᏍᏗ ᏥᏁᎦ,) ᎠᏴ ᎾᏍᏉ ᏂᏥᎾᏰᏍᎬᎾ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏓᏅᏙ ᎢᎩᏍᏕᎵᎭ ᏗᏗᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ; ᎥᏝᏰᏃ ᏱᏗᎦᏔᎭ ᎢᏳᏍᏗ ᏚᏳᎪᏛ ᎨᏒ ᎢᎩᏔᏲᏍᏗᏱ ᎢᏓᏓᏙᎵᏍᏗᏍᎬᎢ; ᎠᏓᏅᏙᏍᎩᏂ ᎤᏩᏒ ᎢᎦᎵᏍᏗᏰᏓᏁᎭ ᎤᎵᏰᏗᏍᎬ ᎬᏗᎭ ᎾᏍᎩ ᎦᏁᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎦᎸᎳᏗ ᏕᏧᎦ ᎤᎭᏯᎴ ᏃᎴ ᎦᎸᎵᎢ ᏫᏥᏤᎢ, ᎯᎸᎯᏨ ᏭᏟᏫᏛᎮ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏕᎦᏅᎿᏩᏗᏒ ᏫᏥᎶᎯ, ᎾᏂᎥᏃ ᏕᏥᏩᏘᏍᎨᏍᏗ ᏕᏥᏁᏤᎮᏍᏗ ᎤᏂᎷᎯᏍᏗᏱ ᎠᏂ ᏙᏗᎨᎦᏨᏍᏔᏂᏒᎢ. ᎠᎴ ᎢᎬᏱ ᏓᏳᏪᏅᎡᎵ [ᎤᎬᏫᏳᎯ] ᎢᎳᏯ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᎤᏓᏅᏙᎩ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᏔᎦᏔᎲᏍᏗᏱ ᏧᏂᎾᏫ ᎠᏂᎦᏴᎵᎨᎢ ᏗᏂᏲᎵ ᎢᏗᏢ ᏫᏚᎦᏔᎲᏍᏙᏗᏱ, ᎠᎴ ᏄᏃᎯᏳᏒᎾ ᏧᎦᏔᎲᏍᏗᏱ ᎤᎾᏓᏅᏘ ᎠᏂᎦᏔᎿᎥ ᎢᏗᏢ ᏫᏚᎦᏔᎲᏍᏙᏗᏱ; ᏧᏛᏅᎢᏍᏙᏗᏱ ᏴᏫ, ᎤᎬᏫᏳᎯ ᏧᏛᏅᎢᏍᏓᏁᏗᏱ. ᏃᏉ, ᎨᎵᏍᎬ, ᎦᏙᎭᏃ ᏳᏛᏁᎢ? “ᎭᏩ, ᎠᏯᏗ ᏔᎵᏁᎢ,” ᎤᏛᏁ ᏌᎳᏓ. ᎤᎩᎶᏫᏎ ᏃᎴ ᏄᏓᎴ ᏭᏭᏓᎸᏁ, ᎤᎵᏗᏨ ᎠᎬᏱ ᏭᏭᏓᎸᏅ. ᎠᏍᎦᏂ ᎨᏒᎢ, ᏂᎬᏉᎯᏳᎲᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ; ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎾᏥᏥᏁᎢᏍᏗᏍᎬᎩ; ᎣᏂ ᏓᏯᎢ ᎢᎬᏱ ᎠᎦᎴᏗ ᏥᎦᏗᏍᎬᎩ, ᎾᏍᎩᏰᏃ ᎡᎲᎩ ᎠᏏ ᏂᎨᎥᎾ ᏥᎨᏒᎢ. ᎢᏳᏃ ᎩᎶ ᎤᏣᏘᏂ ᏂᎦᏪᏍᎨᏍᏗ ᏓᏕᏲᎲᏍᎨᏍᏗ, ᎠᎴ ᎣᏏ ᎾᏰᎸᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎣᏍᏛ ᎤᏬᏂᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᏂᎶᏙᏗ ᎨᏒ ᏥᏓᏕᏲᎲᏍᎦ; ᎠᏓ ᎦᏓᏍᎬ, ᏫᏓᎬᏔᏅ ᎠᏥᎸ, ᏫᏥᏯᏅᎲ ᎠᏌᎻᏓ ᏃᎴ ᎠᏂᏧᏣ. ᏐᏉ ᎢᎦ ᎤᏕᎶᎰᏎ ᎠᏲᏟᎨ ᏂᎦᎵᏍᏗᏍᎬ ᎠᎹ ᎦᏁᎲ. ᏥᏌᏃ ᎠᏲᎵ ᏭᏯᏅᎲ ᎠᏰᎵ ᎠᏂᏅ ᎤᏪᎧᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ; ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏌᏉ ᎢᎦᎦᏛ ᎤᏁᎳᏅᎯ ᎤᏂᏌᎳᏓᏁᎴ ᎠᏂᏁᎬᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏂᎯ ᏣᏁᎳᏅᎯ, ᏗᏦᏢᏅᎯ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎠᎴ ᎠᎺᏉᎯ ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᏁᎯ; ᎤᏁᎳᏅᎯᏃ ᎠᎩᏍᏕᎸᎲᎢ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏏ ᎦᎴᏂᏙᎭ ᎪᎯ ᎢᎦ ᏥᎩ, ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎭ ᏂᎨᏥᎸᏉᏛᎾ ᎠᎴ ᎾᏍᏉ ᎨᏥᎸᏉᏗ, ᎪᎱᏍᏗ ᏂᏥᏃᎮᏍᎬᎾ Ꮎ ᎤᏩᏒ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎼᏏ ᎤᎾᏄᎪᎢᏍᏗ ᎤᎾᏛᏅᎯ ᏥᎩ; ᎠᎴ ᎤᏂᏣᏖᏍᏗ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎠᏂᎾᏄᎪᎨᏍᏗ, ᎠᎴ ᎤᏂᏣᏖᏍᏗ ᏓᏂᎶᏄᎮᏍᎨᏍᏗ. ᎠᎴ ᎾᏍᎩ Ꮎ ᎯᎠ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏂᏣᏛᎩ, ᎥᏝᏰᏃ ᎪᎯᏛ ᎬᏩᎾᏕᏗ ᏱᎨᏎ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏳᏍᏗ. ᎠᎴ ᎾᏍᎩ ᏗᏂᎰᎵ ᎨᏒ ᎥᏝ ᎦᎶᏄᎮᏛ ᎬᏩᏛᏗ ᏱᎨᏎᎢ; ᎾᏂᏍᎦᏅᎾᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏄᎾᏛᏅᎢ. ᎬᏲᏎᎭ, ᎥᏝ ᎾᎿ ᏴᏛᎦᎯᏄᎪᎢ, ᎬᏂ ᏣᏓᏴᎮᏍᏗ ᎤᎵᏍᏆᎸᏗ ᎠᎩᏄᏛᏗ ᎢᏯᏓᏅᏖᏗ. ᎠᏤᎯ ᎤᏪᏅᏒ ᏫᎵᎻ, ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗᎨᏍᏗ ᎨᏎᎢ, ᏩᎦ ᎤᏂᏴᏍᏗ ᎭᏫᏂᏣ. ᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎴ ᎤᏕᏅᏥᏌ ᎦᎶᏁᏛ. ᎾᏍᎩ ᎺᎵ ᏥᏌ ᎤᏥ ᏦᏩ ᎤᏓᏴᏍᏗ, ᎠᏏᏉ ᏂᏓᎾᏤᎬᎾ ᎨᏎᎢ, ᎤᏁᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏅᏖᎸᎯ. ᏚᏑᎬ ᎠᏕᎶᎰᏍᎬ ᎤᏳᏨ ᏍᏉ, ᎠᎾᎴᏂᏍᎬ ᏓᎵᏇᏅᏍᎬ ᏧᏆᎶᎦ ᏗᎦᏅᎯᏓ ᏗᎦᏌᏆᎸ, ᎠᏫ ᎭᏫᏯ ᎠᎦᎷᏴᏓ ᎠᎧᎭᏲᏔᏅ ᎢᏳᏍᏗ ᏂᏚᏍᏛ. ᎤᎵᏍᏆᎸᏗᏃ ᎨᏒ ᎢᏓᎵᏅᏟ, ᎢᏣᎵᎮᎵᎩ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏳᏍᏗ. ᎯᎠ ᎾᏍᎩ ᏫᏨᏲᏪᎳᏁᏗᏱ, ᎤᏙᎯᏳᎯ ᎥᏝ ᏧᏯᏪᎢᏍᏗ ᏯᎩᏰᎸᎭ ᎠᏴ, ᏂᎯᏍᎩᏂ ᎤᎾᏰᎯᏍᏗ ᎨᏒ ᎢᏧᏓᎴᏍᎩ. ᏧᏓᏁᎪᏴᏓ ᏗᎦᏓᏁ ᏧᎾᎳᏑᎶ ᎠᏍᏚᎩᏛ ᎢᏣ ᎠᎾᏁᎸᏗᏍᎬ ᏧᏂᎧᎭᏲᏙᏗ, ᎠᏎ ᏎᎦᏉ ᏱᎩ, ᏑᎾᎴ ᏂᎦᎵᏍᏗᏍᎬ ᏗᎦᏓᏁ ᏧᏴᏣ ᏧᎾᎵᏑᎶᏗ ᏱᎩ. ᎦᏙᎨ ᏙᏓᎦᏥᏯᏟᎶᏍᏔᏂ ᎯᎠ ᎪᎯ ᏣᏁᎭ? ᏗᏂᏲᎵᏉ ᎾᏍᎩᏯ ᎦᏃᏙᏗᏱ ᏣᏂᏃᎢ ᎠᎴ ᏥᏫᏓᏂᏯᏂᏍᎪ ᎤᏁᏓᏍᏗ; ᎠᏂᏐᎢᏃ ᎠᏂᏍᎦᎢᎮ ᎬᏩᎾᎵᎪᏁᏗᏱ; ᎤᏂᏣᏘᏍᎩᏂ ᏴᏫ ᎬᏩᏂᎸᏉᏗᏳ ᎨᏎᎢ. ᏱᏤᎵᏌ, ᏙᏳᏍᏗ ᎠᏙᎯ ᎧᏂᎩᏓ ᏱᎩ ᎤᎪᏏᏓ ᎢᏯᏅᏁ? ᎦᏲᏟ ᎤᎧᏔᎲᏓ ᏓᎧᏔᎾᏫᏍᏗᏍᎨᎢ ᏗᎦᏅᎯᏓ ᏚᎧᏔᏳᏩᏅ. ᎾᏍᎩᏃ ᎠᏴ ᎣᏤᎲ ᎠᏁᎲᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎠᎾᏓᏅᏟ; ᎤᏓᏂᎵᎨᏃ ᎤᏕᏒᏅ ᎤᏲᎱᏒᏉ, ᏧᏪᏥᏃ ᎾᏁᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᎤᏓᎵᎢ ᎤᏪᎪᏓᏁᎸ ᎤᏅᏟ. ᎾᏍᎩ Ꮎ ᎢᏤ ᎠᎴ ᎬᏂᏛ ᎠᏓᏁᎯ ᎦᏅᏅ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎢᎩᏍᏓᏱᏕᎸᎯ ᏥᎩ ᎠᏰᏙᎳᏛ ᎤᎶᏒᎢ, ᎾᏍᎩ ᎤᏇᏓᎸ ᏥᎦᏛᎦ; ᎥᏝᏰᏃ ᏱᏗᎦᏟᏴᎭ ᎤᏇᏓᎵ ᎨᏒ ᎠᎴ ᎩᎬ, ᎤᏂᎬᏫᏳᎯᏍᎩᏂ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᎡᎶᎯ ᎤᎵᏏᎩ ᎨᏒᎢ, ᏗᏓᏅᏙ ᎤᏂᏁᎫᏥᏛ ᎦᎸᎶ ᏄᎾᏛᎿᏕᎬᎢ. ᎠᏰᎵᏍᎨᎢᏉ ᏂᎦᏪᏍᎬ ᏫᎵᎻ. ᎤᎭᏯᎸᎾ ᎤᎾᏗᏍᎦᎶᏗ ᎠᏌᎻᏓ ᎨᏍᏗ ᏱᏚᏩᏛ ᎦᎷᏯᏍᏘ, ᎠᏁᎵᏍᎨ ᎠᏂᏍᎦᏯ ᎨᏍᏗ ᎠᏎ ᎤᏂᏃᎯᏎᏗ ᏱᎨᏎ. “ᏂᎦᏓᏍᎪᏃ ᏓᏤᏏ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏚᏂᏪᏎᎸᎩ; ᎢᏨᏃᏁᎸᎩ, ᎠᏎᏃ ᎥᏝ ᏱᏍᎩᏲᎢᏳᏁᎢ. ᏗᎦᎸᏫᏍᏓᏁᏗ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ ᎡᏙᏓ ᏚᏙᏍᏛᎢ, ᎾᏍᎩ ᎬᏂᎨᏒ ᎾᏋᏁᎭ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏤᏣᎴᏲᎯᏏ ᎤᏁᎳᏅᎯ; ᏤᏣᏟᏴᏏ ᎠᏍᎩᎾ, ᎠᎴ ᎠᏎ ᏓᏣᏓᏅᎡᎵ. ᎦᏅᏆᎶᏍᏗ ᏭᏴᎮ ᏣᏄᏏ ᏃᎴ ᏣᏁᎳ ᎠᏂᏎᏂᏏ ᏴᎩ, ᎣᏍᏓ ᏄᏩᏁᎴ ᎠᏦᏴ. ᎤᏗᎦᎴᏲᏤ ᎧᏃᎮᏓ. ᎩᎶᏃ ᎾᏍᎩ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᏆᏂᎪᏗᏍᎩ ᎾᏍᎩ ᎠᏯᎣᎢ [ᎤᏁᎳᏅᎯᏱ], ᎠᎴ ᎾᏍᎩ ᎤᏯᎣᎢ [ᎤᏁᎳᏅᎯ]. ᎠᎴ ᎠᏓᏅᏙ ᎢᎩᏁᎸᎯ ᎨᏒ ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎠᏴ ᎢᎩᏯᎥᎢ. ᎾᏍᎩᏃ ᎢᏳᏂᏧᏈᏍᏗ ᎠᏂᎦᏔᎯ ᏥᎦᎨᎦᏚᏫᏍᏗ, ᎢᏴᏛ ᏂᏛᏁᏓ ᏄᏓᎴᏒ ᎦᎨᏛ ᎢᎬᏁᎯ, ᎠᎴ ᎠᏍᎦᏂ ᎠᎯᏛ ᎨᎦᏢᏔᏍᏗ ᏥᎩ, ᎠᎴ ᏗᏛᏂᏗᏳ ᎨᏎᏍᏗ ᎢᏓᏙᎩᏯᏍᎨᏍᏗ ᎠᏙᎩᏯᏍᏗ ᎢᎬᏱᏗᏢ ᏁᎬᏁᎸᎢ, ᎠᏴᏃ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎣᏥᏍᏕᎵᏍᎩ ᎾᏍᏉ ᎢᏨᏍᏗᏰᏗᎭ ᎠᏎᏉᏉ ᎡᏥᏁᏗᏱ ᏂᎨᏒᎾ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ. ᎩᎦᎨᏃ ᎠᏓ ᏥᏕᏈᎦ. ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏛᎢ ᎪᎯᎢᏴ ᎩᎳ ᎤᏬᏂᏎ. ᎫᏒᏗ ᏄᏩᏅᏓᎩᏎ ᎨᏂᏗ ᏗᎦᎶᏔᏅ ᎧᏁᏌᎢ. ᎤᎩᏨᏓ ᎨᏍᏗ ᏳᏗᏛ ᎦᏙ ᎤᏢᏅ. ᎤᏬᎸᏃ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ ᎤᏓᎵᎢ ᏧᏓᏅᏎᎢ, ᎯᎠ ᏅᏧᏪᏎᎴᎢ; ᏞᏍᏗ ᏂᎯ ᎪᎱᏍᏗ Ꮎ ᎾᏍᎦᏅᎾ ᎠᏍᎦᏯ ᎤᎬᏩᎵ ᏱᏗᏣᎸᏫᏍᏓᏁᎴᏍᏗ, ᎤᏣᏘᏰᏃ ᏥᎩᎵᏲᎩ ᎪᎯ ᎢᎦ ᎦᏍᎩᏓᏍᎬᎢ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᎿᏉᏃ ᎢᎦᏛ ᎬᏩᏍᏓᏩᏗᏐᎯ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎦᏙ ᎦᏛᎦ ᎯᎠ ᏥᏂᎩᏪᏎᎭ; ᏂᎪᎯᎸᎾᏉ ᎿᏉ ᎥᏝ ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ, ᎠᎴ ᎿᏉ ᏔᎵᏁ ᏂᎪᎯᎸᎾᏉ ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ? ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏫᏥᎦᏛᎢ? ᎾᏍᎩᏃ ᏂᎦᎥ ᏧᏓᎴᎥᏛ ᎤᏣᏘ ᏥᏥᎭ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎦᏭᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎢᏥᎦᎵᏴᎢ, ᎠᎴ ᎠᏴ ᏍᎩᎨᏳᎢᏳ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏓᏁᏗ ᎨᏒ ᎾᏍᏉ ᎤᏣᏘ ᎢᏥᎮᏍᏗ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎠᏂᏧᏏ ᎤᎾᏓᏅᏖᎸ ᎨᏣᏔᏲᏎᏗᏱ ᎤᎩᏨᏅ ᏕᎦᎳᏫᎥ ᏫᏯᏘᏃᎯᏍᏗᏱ ᏉᎳ, ᎾᏍᎩᏯ ᎪᎱᏍᏗ ᎤᏟ ᎢᎦᎢ ᏨᏗᎾᏛᏛᏂᏐᎢ. ᏍᏔᏯ ᏓᏆᎧᎾᏅ ᎦᏲᏟ ᎤᏔᎶᎩ. ᎪᎱᏍᏗ ᎡᏍᎦᏉ ᏱᎩ ᎪᎱᏍᏗ ᏱᎨᏒᎾ---ᎠᏎ ᎦᏲᏟᏉ ᏱᎩ. “ᎭᏩᏃ, ᎠᏉᏚᎯ,” ᎤᏛᏁ ᏌᎳᏓ. ᎤᏍᏗ ᏦᎳᏂ ᎤᏓᏴᎳᏔᏁ ᎤᎸᏌᏛ. ᏎᎦᏨ ᎠᎩᏆᏂᏲᎸ ᏃᎴ ᎠᎬᏱᏱᎨᏍᏗ ᏥᏲᎯᏍᏗᏍᎬ, ᎨᏍᏗ ᎠᎦᏗᏓ ᎠᏕᎳ ᏗᎩᏲᎰᏎᏗ ᏯᏆᏚᎵᏍᎨ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏰᎵ ᎤᏬᎯᏤ ᎤᏕᏁ ᏦᏈ, ᏗᏑᏫᏍᎩ ᏌᏩᏂ ᏧᏙᎢᏛ ᎦᏁᎸᎢ. ᎠᏎᏃ ᎡᏆ ᏣᏓᏁᎶ ᎾᎿ ᏓᎰ ᏗᏖᎵᏙ ᎥᏝ ᎠᏕᎸᏉ ᏓᎶᏂᎨ ᎠᎴ ᎠᏕᎸᎤᏁᎬ ᎤᏩᏒ ᏗᎪᏢᏔᏅᎯ ᏱᎨᏐᎢ, ᎾᏍᏉᏍᎩᏂ ᎠᏓ ᎠᎴ ᎦᏓ ᏗᎪᏢᏔᏅᎯ; ᎠᎴ ᎢᎦᏛ ᏗᎦᎸᏉᏗ ᎢᎦᏛᏃ ᏗᎦᎸᏉᏗ ᏂᎨᏒᎾ. ᎠᏎᏃ ᎪᎱᏍᏗ ᎢᎬᏰᎵᏎᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᎬᏱᏱ ᏍᎩᎨᏳᎯᏳ ᏄᎵᏍᏔᏅ ᏕᏣᏲᏒᎢ. ᎤᎾᏓᏓᏍᎩᏌᏁᎢ ᏌᏌ ᎤᎾᏕᎶᎰᎯᏍᏗ ᎤᏬᏨᏛᎢ ᏃᎴ ᏍᏉ ᎤᏂᏃᏕᎾ ᏃᎴ ᎠᏂᏓ ᎤᏂᏃᏕᎾ. “ᏗᏥᏲᏟ, ᎡᏝᏪ ᎨᏎᏍᏗ ᏏᏆ ᎣᏣᏦᎣᏔᏅ ᎢᎪᎯᏓ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎠᏎᏃ ᏍᎩᏍᏆᏂᎪᏓ ᎬᏅᎢ, ᏌᎳᏓ, ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᎠᏯ ᎬᏅᎢ ᏱᎬᎥᏏ---ᎤᏙᎯᏳ ᏍᎩᎾᎾ ᏱᏂᎦᏛᎦ. ᎬᏂᎨ ᏧᎪᏒ ᏧᏆᎶᎦ ᏃᎴ ᎦᏅᏃᏩ-ᎦᏄᎸ ᏓᎵᏍᏆᎵᏍᎬ ᎠᎾᎢᏒ. ᎨᏍᏗ ᎪᎰᏍᏗ ᏳᏛᎾ ᎠᏌᎻᏓ, ᎱᏂᎷᏣ ᎠᏄᏧᏣ. ᏗᎾᏘᎭᏁ ᏐᏈᎵ, ᎠᎵᏍᏔᏴᏗ ᏩᏆᎦᏎᏍᏔᏅ. “ᏗᏤᎾ!” ᎤᏦᏱᎴᎢ ᎠᎴ ᏕᏥᎦᏅᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏲᏍᏔᏅ ᏌᏉ ᎠᏍᎦᏛ ᎪᏪᎵ; ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎠᏴᏓᏆᎶᏍᎩ ᏧᏃᏴᎪ ᎾᏍᎩᏯ.Ꭲ, ᎾᏍᎩ Ꮎ ᎠᏏᏴᏫ ᏅᎩ ᎢᏯᏂᏛ ᎨᏒ ᏗᏅᏃᏛ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎡᎭᎦᏔᏄᎦ. ᎩᎶᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ, ᎥᏝ ᎢᎸᎯᏳ ᎦᏰᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ, ᏗᎦᏰᎫᎪᏓᏁᏗᏉᏍᎩᏂ ᏫᎾᏍᏛᎾ ᎤᏍᏛᏗᏍᏗᏱ; ᎾᎿᏂ ᏂᎬ ᎠᏓᏁᎸ ᎣᏍᏛ ᏗᏓᏙᎵᎩ ᎢᎬᏁᎸᎯ, ᎠᏛᏍᎪᎢ ᎦᎸᏉᏗ ᎠᏓᏁᎸ ᏂᎦᎵᏍᏗᏍᎪ ᎤᎬᏫᏳᎯᏱ ᎠᏝᏅᎯ; ᏥᎸᏍᎦ ᏃᏉ. ᎠᏲᎳᏔᏅ ᎤᏅᏗ, ᎦᏚ ᎤᏯᏍᎦ ᏧᏓᎴᏅᏓ ᎤᏂᏑᎸᏓ, ᎦᏚ ᎤᎦᎾᏍᏓ ᎠᏔᎸᎩᏓ, ᎤᏣᎴᏍᏓ ᎦᏚ ᏩᏚᎵᏏ ᎤᏓᏅᎵᏰᏓ, ᏄᎾ ᎦᏁᎦ, ᏧᏪᏥ ᎠᏑᏰᏓ ᎠᎦᏅ ᏆᎷᏏ ᎤᏂᎧᏲᏓ ᏗᏑᏴᏅ ᏃᎴ ᏑᎾᎴ ᎠᎩᏍᏗ ᏧᎵᎦᎸᏓ. ”ᏗᏁᎶᏗᎩ?” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᏕᎦᏄᏖᏲᎮ ᏚᏄᏌᏛ. ᎨᎵᏲᏃ ᏂᎯᏳ ᎠᎧᏯ ᎠᏥᎦᏘᏗᏍᏛᎢ, ᎠᏂᏧᏏ ᏌᏉ ᎢᎦᎦᏛ ᎬᏩᏁᎷᎩᎡᎸᎩ ᏉᎳ, ᎠᎴ ᎬᏩᏘᏃᎸ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ, ᏑᏥᎶᏛ ᎢᎬᎾᏕᏅ ᎤᏂᎵᏦᏩᏛ ᏧᏲᎸ ᎨᏒ ᏂᎦᏓ ᏌᎶᎵ ᎫᏇᏗ ᎬᏘ ᏩᏏᏓᏂ. ᎠᏎᏃ ᎥᏝ ᏱᏣᏚᎵᎭ ᏍᎩᎷᏤᏗᏱ ᎬᏂᏛ ᎢᏣᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ. ᏣᏂ ᏧᏬᎸ ᎢᏣᏓᏅᏒᎩ, ᎠᎴ ᎾᏍᎩ ᏚᏳᎪᏛ ᎤᏃᎮᎸᎩ. ᎢᏳᏃ ᎪᎱᏍᏗ ᏯᏥᎾᏄᎪᏫᏎᎸ ᎩᎶ ᎾᎥ ᎤᏬᎵ, ᎢᎬᏱ ᎤᎴᏅᏛ ᎡᎳᏪ ᎬᏍᎨᏍᏗ. ᎯᎠ ᎾᏍᎩ ᎣᏥᏲᏍᏙᏗᏍᎬᎢ, ᎩᎶ ᎪᎱᏍᏗ ᎪᎨᎵᏎᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᎤᎬᏩᎵ ᎪᎱᏍᏗ ᎣᎬᏁᏗ ᏥᏂᎦᎵᏍᏗᎭ; ᎿᏉᏃ ᎠᎦᏛᎾᎩ ᎩᎳᏉ ᎢᏴᏛ ᎠᏍᎫᏕᏍᎪᎢ, ᎠᏍᎫᏕᏍᏗᏱᏰᏃ ᎤᎵᏰᎢᎶᎶᎢ. ᎠᏎᏃ ᏂᏦᎯᏳᎲᏍᎬᎾ ᏱᎩ ᎾᏍᎩ ᎤᏬᏪᎳᏅᎯ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏦᎯᏳᎲᎦ ᎠᏴ ᏥᏁᎬᎢ? ᎠᏥᎦᏘᏗᏍᏗᏰᏃ ᎪᎱᏍᏗ ᎾᎫᎢᏍᏛᎾ ᏱᎩ, ᎾᏍᎩᏯ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᎥᏝ ᎤᏩᏒ ᎠᏓᏅᏖᏍᎬ ᎤᏟ ᎤᏰᎸᎯ, ᎥᏝ ᎤᎿᎸᏣᏘ, ᎥᏝ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᎦᎾᏏᏍᎩ, ᎥᏝ ᎠᏓᏛᏂᎯ, ᎥᏝ ᏧᎬᏩᎶᏗ ᎤᎬᎥᏍᎩ. ᎧᏅᏂᏍᎩ ᏲᎪ ᎤᏰᏟ: ᎨᏎ, ᎤᎸᏉᏗ ᎤᎦᏙᏍᏕᎢ ᏏᏆ, ᎠᏓᏅᏖᏍᎨᎢ ᎢᏳᎵᏍᏔᏁᏗ ᏭᏩᎦᏘᏗᏒᎢ. ᎠᏂᎧᏔᎮᎢ ᎢᏳᏉ ᎤᎴᏅᏗ ᏗᏙᎴᏆᏍᏗ. ᏗᏂᎦᏘᏯᏃ ᎤᎾᎵᏎᎢ, ᏗᎦᏚᎲ ᏭᏂᎶᏎᎢ, ᏂᎦᏛ ᏭᏂᏃᎮᎴᎢ, ᎠᎴ ᎠᏂᏍᎩᎾ ᎬᏩᏂᏯᎢ ᏄᎾᎵᏍᏓᏁᎸᎢ. ᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎦᏔᎲᏒᎩ; ᎠᎴ ᎤᎪᎲᎩ ᏥᏌ ᎦᏙᎬᎩ, ᎠᎴ ᎥᏝ ᏳᏬᎵᏤ ᏥᏌ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᏯᏍᏆᏂᎪᏗᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅᎢ, ᏝᏍᎪ ᎾᏥᎤᏍᏕᏎᎸᎾ ᎨᏒ ᎠᏥᎤᏍᏕᏎᎸᎯ ᎨᏒ ᎠᏥᏰᎸᎾᏁᏗ ᏱᎦᎩ? ”ᏥᎦᏔ ᎢᏳᏍᏗ ᏂᎦᏛᏁᎲ. ᎠᏏᏴᏫᏍᎩᏂ ᎢᎸᎯᏢ ᎤᏁᏤ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏴᏫ ᎾᏍᎩ ᏥᏯᏓᏅᏖᏍᎪᎢ? ᎠᎴ ᏴᏫ ᎤᏪᏥ, ᎾᏍᎩ ᏥᏯᎦᏔᏂᎯᎰᎢ? ᏴᏫ ᎤᏪᏥ ᎤᎷᏨ ᎠᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎠᏗᏔᏍᎦ; ᎯᎠᏃ ᏂᏥᏪᏎ; ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎤᎬᎥᏍᎩ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏗᏔᏍᎩ, ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎤᎾᎵᎢ. ᏝᏍᎪ ᎠᏏ ᏱᏦᎵᎦ ᎾᏍᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎥᎰᎵ ᎤᏴᏍᏔᏅᎯ ᎨᏒ ᎣᏍᏉᎵᏱ ᏫᎦᎷᎬᎢ, ᎾᏍᎩᏃ ᏫᎦᎶᎯᏍᏗᏍᎬᏉ? ”ᏧᎬᎢ ᎦᎵᏦᏕ ᎯᎾᏁᏍᎬᎳ,” ᎤᏛᏁ ᎡᎳᏆᏗ. ᎯᎩᏍᎪᎯ ᏳᏕᏘᏴᏓ ᏥᎨᏎ, ᎠᎾᏗᏍᎬ, ᏚᏭᎪᏔᏅ ᏧᏂᏰᏗ ᎠᎴ ᏧᏬᏪᎶᏗ ᎢᏗᏬᏂᏍᎬ. ᎠᏙᎯ ᏱᏤᏙᎳ, ᏙᎢᏳᏍᏗ ᎭᎦᏙᏍᏙᎢ? ᎤᏁᎷᏁᎢ ᏌᏌ. ᎤᏁᎳᏅᎯ ᎠᎦᏔᎯᏳ ᏅᏧᏓᎴᏅᎲᎾ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᎾᏍᎩᏃ ᎤᏲ ᏣᏂᏟᏏᏍᎪ ᎠᎴ ᏣᎾᎪᎲᏍᏗᏍᎪ ᎠᏥᎸᏱ, ᎾᏍᎩᏯᏍᎩᏂ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎠᎵᏍᏆᏛᎭ ᎯᎠ ᎡᎶᎯ. ᎭᏓᏄᏖᏯᎦ ᏃᎴ ᎭᎧᏔᎲᎾ!” ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏙ ᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎩᎶ ᏔᎵᏁ ᎤᏕᏅᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᎥᏝ ᏴᎬᎪᏩᏛ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎬᏫ ᏳᎯ ᎨᏒᎢ. ᎿᏉᏃ ᏥᏌ ᏚᏬᏁᏔᏅᎩ ᎤᏂᏣᏘ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎤᏖᎸᎳᏛᎢ ᎠᏴ, ᏚᏩᏂᎦᎸᎢ ᏂᎯ. ᎠᏴ ᎠᎩᏯᎢ, ᎠᏴᏃ ᏥᏯᎢ, ᎾᏍᎩ ᎤᏣᏙ ᎠᎾᏓᏛᎥᏍᎪᎢ. ᎥᏝᏰᏃ ᎠᏴ ᎥᏝ ᏰᎵ ᎪᎱᏍᏗ ᏴᎨᏣᏛᎦ. ᎩᎶ ᎾᏍᎩ ᎾᎿ ᏅᏲᎯ ᎠᏢᏨᎭ ᏓᏳᏐᏅᏂ; ᎩᎶᏃ ᎾᏍᎩ ᎤᏐᏅᎭ ᏓᏳᏪᎵᏬᏔᏂ. ᏈᏓᏃ ᎤᏍᏓᏩᏛᏎ Ꭸ ᎢᏴᏛ ᏣᎢᏎ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏗᎦᏁᎸ ᎬᏗᏍᎩ, ᎤᏴᎴᎢ, ᎠᎴ ᎨᏥᏅᏏᏓᏍᏗ ᎢᏧᎳᎭ ᎠᏂᏁᎢ, ᎤᎪᏩᏛᏗᏱ ᎤᏰᎸᏎ ᏩᎵᏍᏆᏗᎯᎲᎢ. ᏗᏥᏲᎵ, ᎿᏉ ᎤᎵᏍᏆᎸᏗ, ᎢᏣᏛᎦᏅᎯᏃ ᏥᎩ ᎤᎷᎯᏍᏗᏱ ᎦᎶᏁᏛ-ᎠᏡᏗᏍᎩ, ᎠᎴ ᎪᎯ ᎨᏒ ᎤᏂᏣᏔ ᎦᎶᏁᏛ-ᎠᎾᏡᏗᏍᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏗᎦᏔᎭ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎨᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎨᎬᏓᏁᏗ ᏫᎾᏍᏛᎾ ᎠᏓᏛᏗᏍᎩ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᎢᏳᏓᎵ ᎠᏓᏅᏖᏍᎨ ᏌᎳᏓ. ᎥᏝᏃ ᎩᎶ ᎦᎸᎳᏗ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎡᎶᎯ ᎭᏫᏂᏗᏢ ᏰᎵ ᎬᏩᏛᏗ ᏱᎨᏎ ᎪᏪᎵ ᎬᏩᏍᏚᎢᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏗᎬᏩᎧᏃᏗ. ᏙᎩᏃᏣᏝ ᎦᏓᏁᏍᏙ ᎨᏒ, ᎠᏆᏛᏅ. ᎤᎷᏨ ᎤᏩᏅ. ᎬᏁᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎾᏍᎩ ᏗᎬᏂᏗᏍᎩ ᏥᎩ ᏂᎦᎥ ᏄᎾᏓᎴᏒᎢ, ᎠᎴ ᎠᎦᏔᎲ ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎩ ᏆᏂᏗ ᏆᎴᏗ ᎠᎦᏔᎲ ᎤᏃᏅᎯ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᏒᎢ, ᎠᎴ ᎥᏝ ᎤᏁᎳᎩ ᏳᏪᎵᏎᎴ ᎩᎶ ᎪᏞᏍᏗ ᎤᏍᏗ ᎠᏖᎵᏙ ᎤᏴᏙᏗᏱ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎠᎴ ᎠᏴ ᏍᎩᏍᏓᏩᏕᎩ ᏂᏣᎵᏍᏔᏅᎩ, ᎠᎴ ᎤᎬᏫᏳᎯ [ᎡᏥᏍᏓᏩᏕᎩ,] ᏕᏣᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏣᏘ ᎢᏥᎩᎵᏲᎬᎢ, ᎤᎵᏠᏯᏍᏛ ᎤᎵᎮᎵᏍᏗ ᎨᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏅᏓᏩᏓᎴᏅᎯ; ᎾᏍᎩᏰᏃ ᏧᏭᎪᏙᏗ ᎨᏒ ᏚᏳᎪᏛᎢ ᎠᎴ ᎣᏍᏛ; ᎾᏍᎩᏰᏃ ᏚᏭᎪᏓᏁᎸ ᎤᏣᏘ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎾᏍᎩ ᎤᏕᎵᏛ ᏓᏂᏏᏂᏙᎲ ᎤᏂᏲ ᏥᏂᏚᏩᏁᎸ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎤᏞᏨ ᏧᏅᏏᏓᏍᏗ ᎤᏂᎩᎬ ᏚᏨᏁᎸᎢ. ᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᎭᏂᏣ ᎠᏍᏆᏚᎸ, ᎦᏅᎯᏛ ᎤᎵᏏᎦ ᎠᏑᏫᏓ ᎦᏍᎩᎸ ᎣᏍᏓᏕᎭᏲᎲ, ᎦᎵ ᏓᏌᏁᎥ ᏧᏃᏩ ᏧᏓᎴᏅᏓ ᎠᎵᏍᏔᏴᏗ. ᎤᎾᏓᏍᏔᏴᏃᎾ, ᏧᏂᏍᏗ ᎨᏒ ᏌᎶᎵ ᏳᏂᏁᎦᎸᎾ, ᎠᏎᏃ ᎠᏂᏬᏗᎨ ᏃᎴ ᎪᎢᎭ ᎤᏂᏔᎷᎩᏍᎬ. ᎤᎵᏂᎩᏛᏰᏃ ᏥᎩ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗᏳ ᎾᏆᏛᏁᎸ; ᎠᎴ ᎦᎸᏉᏗᏳ ᎾᏍᎩ ᏕᎤᏙᎥᎢ. ᎯᎠ ᎾᏍᎩ ᎯᎦᏔᎭ, ᏂᎦᏛ ᎡᏏᏱ ᎠᏁᎯ ᎬᏋᏕᏨᎢ, ᎾᏍᎩ ᎤᎾᏓᏑᏯ ᏆᏤᎳ ᎠᎴ ᎭᎹᏥᏂ. “ᏫᎵᎻ!” ᏭᏯᏅᎮ. ᏂᎦᏓ ᎤᏁᏅᏎ ᏫᎵᎻ ᏤᏙᎲ ᎢᏣ. ᎨᏍᏗ ᏯᎦᏔᎮ ᎢᏳᏛᏁᏗ ᏫᎵᎻ. ᎯᎠ ᎤᏉᏔᏗ ᏧᎬ ᎤᎵᏬᏨ ᎡᎰᎢ. ᎠᎧᏔᎮᎢ ᎦᏓᏁ ᏂᎦᎵᏍᏗᏍᎬ ᏧᏍᏆᏴᏍᏗ. ᎨᏍᏗ ᎣᏍᏓ ᎫᏩᏓᏅᏖᏗ ᏱᎨᏎ. ᎠᎴ ᎠᏍᏓᏯ ᎤᏁᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏂᎨᏴ ᎠᏁᎲ ᏂᎯ ᏭᏓᎪᎾᏛᏗ ᎡᏣᎸᏉᏗᏳ; ᎠᎴ ᎦᎸᏉᏗᏳ ᎾᏍᎩ ᏂᎯ ᏨᏘᎾᏄᎪᏫᏏ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒ, ᏗᎧᎿᏩᏛᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ, ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ, ᎪᎯᏳᏙᏔᏅᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎬ ᏚᏃᏪᎸᎢ; ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎢᏳᏃ ᎩᎾ ᏂᏚᏲᏐᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏂᎦᏛ ᎤᏤᎵ ᎨᏒᎢ, ᎥᏝ ᏰᎵ ᎠᎩᏍᏓᏩᏕᎩ ᏱᏅᎦᎵᏍᏓ. ᏧᏆᎶᎬ ᏫᏓᏆᎧᎾᏅ, ᎠᎩᎦᏓᎲᏍᎬ ᎢᏣ ᎦᏃᎸᎥᏍᎬ, ᎠᏌᎻᏓ ᏕᏥᏯᎦᏅ, ᎦᎶᏇ ᎠᎦᏙᏗ ᏫᏄᏩᏅ ᎠᎦᏙᎵ, ᎨᏍᏗ ᏱᏚᎴᏫᏍᏔᏁᎸ ᏓᏂᏥᏍᏔᎳᏍᎬ ᎦᏅᏃᏫ, ᎡᎳᏗ ᏨᏌᏙᏯᏍᎪ ᎢᏳᏍᏗ ᎠᏆᏤᎸᏅ, ᎣᏂᏲᎯᏍᏔᏅ ᏓᏂᏥᏍᏔᎳᏍᎬ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎢᎸᎯᏢ, ᎤᏑᎵᎪᏨ, ᎠᏏᏴᏫ ᎤᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᏍᎩᏰᏲᎲᎦ ᎣᎦᏓᏙᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏣᏂ ᏥᏄᏛᏁᎴ ᏥᏚᏪᏲᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ. ᏦᏍᏓᏓᏅᏟᏃ ᎠᏴᏃ ᎡᏙᏓᎴ ᏃᏊ ᎣᏥᏓᏩᏛᏒ ᎩᏟ. ᎢᏗᎦᏪᏍᏗ ᏕᎯᏔᏲᎯᎲ ᏕᎬᏃᎯᏏ. “ᎦᏙᏃ ᏱᏣᏓᏅᏖᏗ ᏗᏣᏌᏛᏗ ᎠᎵᏍᏓᏴᏗ?” “ᏥᏗᏤᎾ, ᏗᏥᏲᏟ!” ᎤᏦᏱᎴᎢ. VIII. ᏚᏁᏅᏒ ᏚᎾᏟᏃᎮᎸ ᎠᎴ ᏥᎪᎥᎩ ᎯᎠ ᎾᎩᏪᏎᎲᎩ; ᎾᏞᎬᏉ ᎢᏴᏛ ᎯᏄᎪᎢ ᏥᎷᏏᎵᎻ; ᎥᏝᏰᏃ ᏱᏙᏛᏂᏂᏴᎯ ᎠᏴ ᏍᎩᏃᎮᏍᎬᎢ. ᎤᏍᏆᏘ ᎤᏯᏨ ᏫᎵᎻ ᏄᏩᏅᏓᎩᏎ ᎰᎻ, ᏴᎩ ᎦᎭᏛ ᏏᏆ ᎤᏴᏍᏗ ᎦᎸᎳᏗᏣ ᎤᏛᏁ, ᎠᎾᏓᏩᏛᎯᏙ ᎤᏂᎪᎵᏰᏗ. ᎠᏴᏰᏃ ᎦᎸᎳᏗ ᎢᏕᎯ; ᎾᎿ ᎾᏍᏉ ᏅᏓᏳᎶᎯᏍᏗᏱ ᏥᏗᎦᏖᏃᎭ ᎢᎩᏍᏕᎵᏍᎩ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ; “ᏲᎾ ᎤᏤᏍᏙ, ᎠᎦᏓ ᏥᎦᏔ ᏗᏛᎯᏍᏙᏗ ᏏᏆ ᎠᏂᏓ,” ᎤᏛᏁ ᎡᎶᏗ. ᎤᎾᎵᏍᏓᏴᎯᏃ ᏅᎩᎭ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎩ ᎠᏂᏍᎦᏯ, ᏂᏓᏁᏢᏛᎾ ᎠᏂᎨᏴ ᎠᎴ ᏗᏂᏲᎵ. ᏧᏐᏱᎭ ᎨᏎ ᎢᎦ, ᎠᏗᏍᎨ ᎠᏌᎻᏓ. ᎠᏂᏃᎮᏍᎬ, ᎠᎬᏱ ᎠᏂᏐᏅᏍᎨ ᎦᎶᏇ ᎠᎴ ᎦᎵᏣᏗ ᎬᏘ, ᏃᏉ ᎩᎦ ᎠᏔᏍᎩᏍᎬ ᎤᎵᏍᏗ ᎤᎵᏍᏙᏗ. ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ, ᎠᏏᎠ ᏓᏓᏳᎶᏒ ᏚᏂᎸᏉᏛ ᎢᏧᎳ ᎠᏂᎨᏯ ᏃᎴ ᎠᏂᏍᎦᏯ, ᎠᏎᏃ ᏗᏗᎦᎴᏴᏓ ᎨᏒ pirates, gauchos, ᏃᎴ ᎠᏂᏴᏫᏯ ᎠᏂᎨᏯ ᏃᎴ ᎤᏂᎬᏫᏳ, ᏍᎩᏴ ᎠᎩᏩᏛᎲ ᏗᏋᏙᏗ ᏕᎷᎨ ᎠᎵᏍᏚᎶ ᏃᎴ ᎦᎸᎳᏗ ᎢᏗᎦᏘ ᏧᏣᏬᏓ. ᎾᏍᎩᏍᎩᏂ ᏐᎢᏱ ᏗᎨᏒ ᎠᎴ ᎠᏲᎱᏛ Ꮧ-ᎴᎯᏐᏗ ᎨᏒ ᏰᎵᏉ ᎬᏩᎾᏖᎳᏗᏍᏗ ᎨᏥᏰᎸᎯ, ᎥᏝ ᏱᏓᎾᏕᏒᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ Ᏹ-ᏗᎨᏥᏰᎪᎢ. ᎤᎶᏐᏁ ᎪᎳ ᏎᎦᏨᎯ. ᏱᎰᏩ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᎢᎦᏁᎳᏅᎯ, ᎾᏍᎩ ᏥᏂᎦᎴᏍᏙᏗᎭ ᎢᎦᎦᏘ ᏗᏰᎵᎯᏍᏗᏍᎩ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎢᎩᏩᏛᎯᎸᎯ ᏥᎩ, ᎿᏉᏃ ᏥᏌ ᎤᏪᎷᏅᎩ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏕᏲᎲᏍᎬᎢ, ᎯᎠ ᏄᏪᏒᎩ; ᏍᎩᎦᏔᎭ, ᎠᎴ ᎾᏍᏉ ᎢᏥᎦᏔᎭ ᏗᏆᏓᎴᏅᎢ; ᎠᎴ ᎥᏝ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᏯᎩᎷᏨ, ᏅᏛᎩᏅᏏᏛᏍᎩᏂ ᏚᏳᎪᏛᎢ, ᎾᏍᎩ ᏁᏥᎦᏔᎲᎾ ᏥᎩ. ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᎣᏨᏗᏍᎬᎢ, ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎣᏨᏗᏍᎬᎢ, ᏚᏳ-ᎪᏛ ᎨᏒ ᎠᎦᏘᏏᏗᏢ ᎠᎴ ᎠᎦᏍᎦᏂᏗᏢ ᎣᎦᏣᏅᏛᎢ, ᎾᏍᎩ ᎯᎠ ᎤᎴᏅᏔᏅᎩ ᏥᏌ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎩ ᎨᎵᎵ ᎨᏂ ᎦᏚᎲᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏬᎯᏳᏅᎩ. ”ᎤᎸᏂᏗᏍᎩ ᏥᏍᏕᏥ!” ᎤᏪᎵᏎ ᏫᎵᎻ. ᎤᏬᏚᏨ ᎤᏉᏔᏗ ᎠᏩᏔ ᎠᎵᏰᎾ. ᎦᏙᎨ ᏣᎵ ᎤᏛᎦᏍᏕ ᏓᏍᏆᎵᏍᏘᏍᎬ ᏧᏩᏂᎦᏝᏅ ᏃᎴ ᎠᏓᏅᏖᏍᎨ ᏂᏕᏆᎸ ᏗᎦᏆᎵ. ᏧᎾᏓᎸᎯ. ᎩᎶᏃ ᏂᏗᏣᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ, ᎾᎿ ᎦᏚᎲ ᎢᏥᏄᎪᎨᏍᏗ, ᏗᏣᎳᏏᏕᏂ ᎪᏍᏚ ᏚᏅᎦᎸ ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎧᏃᎮᏍᎩ ᎨᏎᏍᏗ ᎤᎾᏡᏗᏍᎩ. ᎢᎦᏓ ᏄᎾᏍᏛ ᏣᎳᎩᏱ ᎠᏰᎵ ᏄᏍᏛ, ᎠᎵᏍᎨᎢᏃ ᎤᏁᎦ ᏱᏄᎵᏍᏔᎾ, ᏯᎵᏍᏕᎸᏙᏓ. “ᎭᏩ,” ᎤᏛᏁ ᏥᏍᏚ, “ᎢᏕᎾ.” ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎢᏥᏍᎦᏯ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᏣᏛᏁᎭ? ᎠᏴ ᎾᏍᏉ ᏴᏫᏉ ᎾᏍᎩᏯ ᏂᏣᎵᏍᏓᏁᎲ ᎢᏲᎩᎾᎵᏍᏓᏁᎯ, ᎠᎴ ᎢᏨᏯᎵᏥᏙᏁᎭ ᏗᏥᏲᎯᏍᏗᏱ ᎯᎠ ᎠᏎᏉᏉ ᏂᏣᏛᏁᎲᎢ, ᏫᏣᎦᏔᎲᏍᏗᏱᏃ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎢᏗᏢ, ᎾᏍᎩ ᎤᏬᏢᏅᎯ ᏥᎩ ᎦᎸᎶᎢ ᎠᎴ ᎦᏙᎯ ᎠᎴ ᎠᎺᏉᎯ ᎠᎴ ᎾᏂᎥ ᎾᎿ ᎠᏁᎯ; ᎠᎨᏴᏃ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎥᏝ ᏰᎭ ᎠᎩᏰᎯ. ᏥᏌᎯᎠ ᏄᏪᏎᎴᎢ; ᏰᎵ ᏂᏫ ᏴᎭ ᎠᎩᏰᎯ, ᏣᏛ; ᏚᏂᏰᎵᎯᏍᏔᏅᏃ ᎤᏂᏣᏘ ᏅᏩᏛᏁᏉ ᏥᏳᎯ ᎤᏣᎥ ᎬᏩᏘᎾᏫᏛᎮᎢ; ᎠᎴ ᎾᏍᏉ ᏂᏗᎬᏩᏓᎴ ᏧᏍᏗ ᏥᏳ ᎤᎾᎵᎪᏩᏗᏎᎢ. ᏧᏬᏚᎢ ᏓᎭᏃᏍᏗ ᎨᏒ. ᎡᎳᏗ ᎦᏙ ᎠᏆᏚᎵ ᏗᏥᏅᏗ. ᎠᏏᏉᏰᏃ ᎤᏙᏓ ᎠᏰᎸ ᎠᏯᎡᎢ ᎾᎯᏳ ᎹᎵᎩᏏᏕᎩ ᏥᏚᏠᏍᎨᎢ. ”ᎬᎪᏩᏔ ᎾᏛᏁᎲᎢ,” ᎤᏛᏁ ᏌᎳᏓ. “ᎭᎵᏖᎸᎮᏍᎬ ᎠᏆᏚᎵ ᎬᎪᏩᏛᏗ, ᎠᏆᏕᎶᎰᎯᏍᏗ ᏱᏣᏔᎷᎩᎠ.” ᎧᏁᏌᎢ ᏭᏴᎴᎢ. ᎠᏔᎴᎦᏒ ᎦᏚᎢᏣ ᎠᏯᏖᏅ ᏭᏗᏍᎦᏝᏁᎢ. ᎾᏂᎥ ᎤᎾᏚᎵᏍᎩ ᎣᏍᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏗᎨᎦᎦᏅᏗᏱ ᎤᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏎ ᏤᏥᎤᏍᏕᏎᏗᏱ ᏂᎨᏨᏁᎰᎢ; ᏄᎾᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᎤᏂᏍᏛᏗᏍᏗᏱ ᎦᎶᏁᏛ ᎤᏤᎵ ᏓᏓᎿᏩᏍᏛᎢ. ᏌᏩᏂᏃ ᎤᏙᎴᎰᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎨᏥᏁᎲᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏓᎾᏏᏔᏗᏍᎬ ᎨᏥᏅᏏᏛ, ᎾᏍᎩ ᏕᎤᎵᏍᎪᎸᏓᏁᎴ ᎠᏕᎸ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎥᏝ ᏳᏚᎵ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ, ᏌᏉ ᎯᎠ ᏧᎾᏍᏗᎦ ᎨᏒ ᏧᏂᏲᎱᎯᏍᏗᏱ. ᎠᎩᏥ ᏥᎨᏒ ᎠᏌᏛᎥᏍᎩ ᎨᏒ. ᎥᏝᏰᏃ ᎩᎶ ᎦᎸᎳᏗ ᏫᏳᎶᏐᎢ, ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎤᏩᏒ, ᏴᏫ ᎤᏪᏥ, ᎾᏍᎩ ᎦᎸᎳᏗ ᏤᎭ. ᎠᎴ ᏂᎦᏛ ᎠᎹᏰᎵ ᏚᏪᎧᏩᏗᏒ ᎤᎾᎵᏒᎩ, ᎠᎴ ᏙᏓᎸ ᎥᏝ ᏗᎬᏩᏛᏗ ᏱᎨᏎᎢ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛᏁᎰ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ, ᎾᏍᎩ ᎾᎿ ᎠᏇᎳᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏎᏃ ᎾᎿ ᎠᏂᏁ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᏃᏪᎵᏍᎩ, ᎯᎠ ᏄᏍᏕ ᎠᎾᏓᏅᏖᏍᎨ ᏙᏧᎾᏓᏅᏛᎢ, ᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᎠᏓᏅᏙᎩᎯ ᎢᏣᎢᏎᏍᏗ, ᎤᏇᏓᎵᏃ ᎤᎬᎥᏍᎬ ᎥᏝ ᏱᏂᎨᏣᏛᏁᏍᏗ. ᏤᏍᏗ ᏱᏨᏅᎨᏍᏗ ᏃᎴ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ! ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏗᏍᏓᏱᏳ ᎨᏒ ᎢᏳᏍᏗ ᏗᏥᎾᏫ ᎼᏏ ᎤᎾᏁᎳᎩ ᏓᏂᎨᏙᎯᎮᏍᏗ ᏧᎾᏓᎵᎢ, ᎢᏤᎵᏎᎸᎩ; ᏗᏓᎴᏂᏍᎬᏍᎩᏂ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏕᎢ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏗᏍᎩᎾᏝᎢ, ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᏕᎤᎭ-- ᎭᏫᏂ ᎤᏛᎸᎮ ᏫᎵᎻ. ᏗᎦᎶᎩᏍᎩ ᏥᏚᎸᏫᏍᏓᏁᎰᎢ ᎢᎬᏱ ᎤᏪᎳᏗᏍᏙᏗ ᎨᏐ ᎤᎾᏄᎪᏫᏒᎯ. ᏚᎭᏄᏮ ᏂᎦᏓ ᎤᏁᎦ ᏃᎴ ᏥᏳ ᏧᏆᎶᎦ ᏗᎪᏒᏔᏅ ᎨᏎ, ᎢᎾᏓ ᏚᏩᏥᏍᎧᎸ ᎾᎥᏂᎨ ᏂᏚᏍᏕ. ᏚᏑᎦ ᏧᏆᎶᎦ ᎪᏒᏔᏅ ᎤᎵᏍᏇᏚᎨ. ᎤᏍᏆᎸᎲᏰᏃ ᎾᏍᎩ ᏗᎫᎪᏙᏘ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᎤᏓᎴᏅᏗᏱ; ᎢᏳᏃ ᎠᏴ ᏰᎦᎴᏅᏔᏅ ᎦᏙ ᎤᏍᏗ ᏭᎾᎵᏱᎶᎯᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᏄᏃᎯᏳᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎠᎨᏴᏍᎪ ᏕᏍᏓᏚᏓᏔ? ᏞᏍᏗ ᏗᏍᏓᏚᏓᏕᏍᏗᏱ ᏣᏲᎸᎩ. ᎠᎨᏴᏍᎪ ᏂᏗᏍᏓᏚᏓᏛᎾ? ᏞᏍᏗ ᏣᏲᎸ ᏣᏓᎵᎢ. ᎬᏂᏳᏉᏃ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᎤᏤᎵᎦ ᎤᏂᎷᏤᎴᎢ, ᎠᎴ ᎦᏄᏉᏗᏳ ᏚᎸᏌᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦᏚᎾᏚᏫᏍᏔᏁᎢ ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᏂᏍᎦᎴᎢ. ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏳᏃ ᏴᏫ ᎨᏥᏂᏆᏘᎮᏍᏗ, ᎠᎴ ᎨᏣᏓᏓᎴᏗᏍᎨᏍᏗ, ᎠᎴ ᎦᎨᏥᏐᏢᏕᏍᏗ, ᎠᎴ ᎠᏂᏍᎦᎩᏳ ᎨᏎᏍᏗ ᏕᏣᏙᎥ ᎪᎱᏍᏗ ᎤᏲ ᎾᏍᎩᏯᎢ, ᏴᏫ ᎤᏪᏥ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎣᏍᏓ ᏱᎨᏎ ᎯᎸᎯᏴ ᏗᏥᎪᎥ ᏱᎨᏎ ᏚᏅᏓᏒ ᎤᏛᏅ. ᎠᏂᏲᏟᎨ ᎠᎹᏱ ᎠᏍᏛᎢ ᎠᎾᏓᏬ, ᎥᏣ ᎾᎥᏂ, ᎥᏣ ᎭᏫᏂ, ᏃᎴ Ꮳ ᎦᏚᎢᏣ. ᎾᏍᎩᏃ ᎬᏬᎯᏳᎲᏍᎨᎢ, ᎪᎯᏗᏳᏲᏰᏃ ᎬᏩᎴᏅᏛ ᎨᏎ ᎤᏍᏆᏂᎪᏗ ᏓᏓᏅᏓᏗᏍᏗᏍᎨ ᎠᏙᏂᏍᎬᎢ. ᎠᏂᏲᏍᎩ ᎠᏂᏧᏣ ᎤᎾᎵᏍᏔᏴᏃᎾ ᎤᎾᏁᎸᏔᏅ ᏐᏉ ᎢᏳᏪᏅᏍᏘ ᎠᎴ ᏔᎵ ᎤᏂᏢᏗ, ᎠᏎᏃ ᎠᎾᏓᏌᏆᎴᏍᎬ ᏧᏍᏆᏅᏂ ᏃᎴ ᎡᏝᏪᎯ ᎠᏂᏬᏂᏍᎬ. ᎤᏍᎦᏍᏓᏁᎴ ᏫᎵᎻ. ᎤᏟᏃ ᎢᏯᏂᎢ ᏴᏫ ᏧᎾᏄᏬ ᏚᏂᏰᏍᏛᏅᎩ ᏅᏃᎯ, ᎢᎦᏛᏃ ᏚᏅᏂᎦᎸᎲᎩ ᏧᏪᏲᏔ ᏕᏡᎬᎢ, ᎠᎴ ᏅᏃᎯ ᏚᏂᏲᏔᏅᏅᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏚᎪᏗᎭ ᎾᏍᎩ ᏴᏫ ᎪᎯᏳᏗ ᎨᏒ ᎠᏚᏓᎴᏍᏗᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᏄᏛᏁᎸᎾ. ᎠᏴ ᎢᏗᏧᏏ ᎢᎦᏕᏅᎯ ᏥᎩ, ᎠᏂᏍᎦᎾᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏄᎾᏍᏛ ᎢᎦᏕᏅᎯ ᏂᎨᏒᎾ ᏥᎩ, ᏙᏯᏛ ᎤᏍᎪᎵᏍᏗ ᎥᎨᏒ ᏗᏧᎬ ᎠᏒᏛᏗ ᏫᎫᏓᎸ. ᏂᎦᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎠᎵᏍᎦᏍᏙᏙ ᎢᏣᏣᏅᏓ, ᎾᏍᎩ ᏰᎵ ᎨᏣᎴᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏍᎩᎾ ᎠᏏᎾᏌᏅ ᏕᏥᎦᏘᎸᏍᏗᏍᎬᎢ. ”ᎧᏅᏂᏍᎩᏕᎩ ᏌᎳᏓ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ ᎤᏥ. ᎤᎴᏅᏔᏅᏃ ᎼᏏ, ᎠᎴ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ, ᏚᏬᏏᏌᏁᎴ ᎾᎦᎥ ᎪᏪᎸ ᎾᏍᎩ ᎤᏩᏒ ᎤᏃᎮᏍᎬᎢ. ᎣᏍᏓ ᎤᎪᎵᏰᎡ ᎤᏍᏗ ᎠᏣᏗ ᎡᏆ ᎠᏣᏗ, ᏃᎴ ᎯᎠ ᏄᏪᏎ, ᎦᏙᏃ ᎤᏍᏗ ᎠᏣᏗ ᎯᎨᏦᏎᎰ? ᎤᎦᏔᎲᏒᏃ ᎯᎠ ᎾᏥᏪᏎᎸ ᏈᏓ; ᎠᏆᏐᎭᏛ ᎭᎴᎲᎦ, ᏎᏓᏂ, ᏗᏍᏉᏕᏍᏗᏍᎩᏉ ᏂᎯ, ᎥᏝᏰᏃ ᏯᏓᏅᏕᎭ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᏴᏫᏉᏍᎩᏂ ᎤᏁᏤᎵ ᎭᏓᏅᏕᎭ. ᎠᎴᏉ ᎦᏣᏃᏍᏔ ᏄᏩᏅ, ᏃᎴ ᏣᏉ ᎤᏪᎵᏒ. ᎠᎴ ᏚᏟᎶᏍᏔᏁᎴ ᎾᏍᎩ ᎾᏫᎨᏥᏯᏅᏛ, ᏚᎪᎲ ᏓᎾᏑᏰᏍᎬ ᏄᎬᏫᏳᏒ ᏗᏂᏢᏗᏱ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏚᏯᏪᎨ ᎤᎵᏨᏓᏆᏓ ᎭᎦᏘᏴ ᏧᎾᏦᎯᏍᏗ ᎠᏤ ᎤᎾᎵ. ᎥᏝ ᎩᎶ ᎢᎸᎯᏳ ᏱᎬᏩᎪᎰ ᎤᏁᎳᏅᎯ; ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ ᎤᏪᏥ, ᎠᎦᏴᎵᎨ ᎦᏁᏥᎢ ᎡᎯ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏄᏩᏁᎸ. ᎠᎴ ᎬᏂᏳᏉ ᎩᎶ ᎢᏳᏍᏗ ᎠᏯᎦᏯ ᏥᎷᏏᎵᎻ ᎡᎮ ᏏᎻᏯᏂ ᏧᏙᎢᏛ; ᎠᎴ ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᎧᎿᏩᏎᎩ ᎨᏎᎢ, ᎠᎦᏘᏰ ᎢᏏᎵ ᎨᏥᏄᏬᎯᏍᏙᏗᏱ; ᎦᎸᏉᏗᏳᏃ ᎠᏓᏅᏙ ᏔᎵ ᎤᏛᏗᏕᎨᎢ. ᎾᏍᎩ ᎯᎠ ᎢᏳᏪᏅᏍᏗ, ᎧᏂᎩᏓ ᏴᏫ ᎨᏎᎢ ᏏᏆ ᎤᏴᏍᏗ ᎾᎥᏂ, ᏥᏍᏕᏥ, ᎧᏅᏂᏍᎩ ᏃᎴ ᏏᏆ ᎤᏅᏌ ᎨᏎᎢ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎤᎾᏁᎳᎩ ᏗᏤᎵᏏ ᏧᎾᏍᏗ ᏗᏂᏲᎵ, ᎠᎴ ᏞᏍᏗ ᏗᏥᏅᏍᏓᏕᎸᎩ ᎬᎩᎷᏤᏗᏱ; ᎾᏍᎩᏰᏃ ᏄᎾᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎢᏥᏙᏓ ᏱᎩ, ᏍᎩᎨᏳᎢᏳ ᏱᎩ; ᎤᏁᎳᏅᎯᏱᏰᏃ ᏗᏆᏓᎴᏅ ᎠᎩᎷᏥᎸ; ᎠᎴ ᎥᏝ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛᏯᎩᎷᏥᎸ, ᏗᎩᏅᏒᏍᎩᏂ. ᎢᏳᏰᏃ ᎩᎶ ᎠᏍᎦᏯ ᏳᏴᎵᎸ ᏕᏥᎳᏫᎥᎢ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎵᏰᏑᏍᏙᎩ ᏧᏬᏚᎯ ᏧᏄᏩᎢ, ᎾᏍᏉᏃ ᏳᏴᎵᎸ ᎤᏲ ᎢᏳᏛᎾᏕᎩ ᏗᎦᏓᎭ ᏧᏄᏩᎢ; ᎪᎯ ᎨᏒ ᎢᏯᏍᏗ, ᎠᎪᏄ ᏙᏱᏲᏏᎭ, ᎠᎴ ᏙᎩᏔᏕᎩᎭ, ᎠᎴ ᏦᎩᏰᎸᏌᎢ, ᎠᎴ ᎠᏍᏈᏅ ᏙᎬᏂᏍᏗᎭ, ᎠᎴ ᎢᎸᎯᏢ ᎣᎨᏅᏒ ᏂᎨᏒᎾ; ᎩᎶ ᎤᎾᎵᏱ ᎠᏃᏝᎬ ᎠᏂᎯᏲᎲᎢ. ᎨᏍᏗ ᎤᏁᏙᎸ ᏱᎨᏎ ᏃᎴ Ꮳ ᎤᏂᎩᏌᏓ ᏱᎨᏎ ᎤᏁᏓᏍᏗ Chapel Hill. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᎤᏟᏰᏃ ᏂᎦᎥ ᏗᏣᎬᏩᎶᏗ ᏂᎯ ᎡᏍᎦᏉ ᎤᏂᏣᏘ ᏥᏍᏆᏯ. ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎧᏃᎮᏛ ᏙᏓᎦᏥᏯᏠᎢᏍᏓᏁᎵ ᎾᎯᏳ ᎦᎶᏐᏅᎭ ᎠᏗᎭ ᎤᎬᏫᏳᎯ; ᏗᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏧᏂᎾᏫᏱ ᏙᏓᏥᎳᏂ, ᎠᎴ ᏚᎾᏓᏅᏛ ᏙᏓᎪᏪᎳᏂ. ᎯᎠ ᎢᎾᏓ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏗᏩᏒᎩ, ᎠᎴ ᎤᏁᏒᎩ ᎤᏤᏍᏙ, ᎠᎴ ᎤᏪᏙᎸᎩ. ᎠᎴ ᎤᎾᏙᏓᏆᏍᎬ ᎨᏒᎩ ᎾᎯᏳ ᎢᎦ. ᏚᎧᏔᏍᏔᏁᎢ. ᎡᏝᏪ ᎨᏎ ᏎᎦ. ᎦᏙᏃ ᏯᎫᏕᏯᏙᏓᎾ? ᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᎤᏓᏂᎵᎨ ᏚᏁᎶᏕᏍᏗ ᎣᏂ ᎡᎯ; ᎩᎶ ᏱᎦᏬᏂᎭ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ, ᎤᏩᏒ ᎠᏓᎵᏂᎪᎯᏍᏗᏍᎪᎢ; ᎩᎶᏍᎩᏂ ᏯᏙᎴᎰᏍᎦ ᏓᎵᏂᎪᎯᏍᏗᏍᎪ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ. ᏥᏌᏃ ᎤᏂᏲᎸᎩ, ᎠᎴ ᎤᏛᏅᏗᎦᎳᏫᏍᏗᏱ ᎠᏂᏙᎾᎥ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎦᏙ ᎢᏤᎵᎭ? ᏝᏍᎪ ᏓᎾᎵᏍᏓᏴᎲᏍᎬ ᏴᏓᎦᎷᏥ? ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ ᏈᏓ; ᏥᎯᎳᏓ ᏣᏤᎵ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎦᎳ-ᏗᏍᏗᏱ; ᎤᎵᏍᏈᏗ ᎡᏙᏓ ᎠᎩᏁᎸᎯ, ᏝᏍᎪ ᏴᏓᎦᏗᏔᎯ? ”Ooomp!” ᎤᎵᏰᏔᏁ. ᎠᎴ ᎤᏍᏆᏂᎪᏎ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎨᏒᎢ. ᎠᎴ ᎤᏪᏙᎴ ᎤᏚᎾᏛ ᏕᎦᏚᏩᏗᏒᎢ ᏓᏕᏲᎲᏍᎨᎢ. ᎬᏂᎨ ᏱᎨᏎ, ᏳᏩᏁᎦ, ᎬᏂᎨᎢ ᏃᎴ ᏧᏓᎴᏅᏓ ᎩᎦ ᎤᏁᎯ ᏱᎨᏎ. ᎤᎵᏖᎸᏂᏍᏔᏁᎢ ᎤᏏᎳᏛ ᏃᎴ ᎤᎧᏙᏍᏔᏁᎢ. ᎠᎴ ᎨᏥᏁᏤᎸᎩ ᎪᎱᏍᏗ ᎤᏅᏁᏗᏱ ᏂᎨᏒᎾ ᎧᏁᏍᎦ ᎡᎶᎯ ᎤᏰᎬᎢ, ᎠᎴ ᏂᎦᎥᏉᎪᎱᏍᏗ ᎢᏤ ᎤᏴᎾᎥᎢ, ᎠᎴ ᏂᎦᎥᏉ ᏕᏡᎬᎢ; ᎾᏍᎩᏉᏍᎩᏂ Ꮎ ᎤᏅᏒ ᏴᏫ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏓᏰᎸᏙᏗ ᎨᏒ ᏄᏂᏰᎸᏒᎾ ᏗᏂᎬᏓᎨᏂ. ᎠᏓᎨᏳᏗ ᎨᏒ ᏄᏠᎾᏍᏛᎾ ᎨᏎᏍᏗ. ᎢᏥᏂᏆᏘᎮᏍᏗ Ꮎ ᎤᏲ ᎨᏒᎢ; ᏕᏥᏂᏴᏎᏍᏗ ᎣᏍᏛ ᎨᏒᎢ. ᎨᏍᏗ ᏯᏂᎦᏔᎮ ᏄᏓᏅᎯᏒ ᏭᏕᎵᎬ, ᎠᎴ ᎢᎪᎯᏓ ᏫᎦᎶᎯᏍᏗ ᎨᏒ, ᎠᎴ ᏄᏍᎦᏎᏛ ᏭᏂᎶᎯᏍᏗ. ᎾᏍᎩ ᎯᎠ ᎼᏏ ᏧᏂᏲᎢᏎᎴ ᎯᎠ ᏥᏄᏂᏪᏎᎢ, ᎦᎪ ᏂᏣᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏚᎪᏗᏍᎩ ᏣᎧᏅ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏅᏎ ᏄᎬᏫᏳᏌᏕᎩ ᎠᎴ ᎤᏄᏓᎴᏍᎩ ᏄᏩᏁᎴ ᎤᏩᏔᏁ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏳᏛᏁᎸᎯ ᎤᏪᏲᏓᏛᎢ. ᎡᎵᏍᏗ ᏦᏍᎪᎯ ᎢᎦ ᏧᏂᏑᎸᏓ ᏧᎾᏕᎾᏅᎯ ᏕᏥᎦ. “ᎤᏙᎯᏳᎯ, ᏥᎦᏔᎭ,” ᎤᏛᏁ ᏣᏄᏏ. ᎡᎳᏗ ᎢᏳᎾᏛᏂ ᏳᎾᏓᏛᎾ, ᎡᏝᏪᎯ ᏳᏂᎦᏘᏓ, ᏰᎵᏉ ᎪᎱᏍᏗ ᎣᏍᏓ ᏱᎦᎶᎯ. ᎠᎹ ᎤᏩᏩᏙᎢᏍᏗ ᏭᎷᏤ ᏫᏚᏑᎸᎮ ᏃᎴ ᎠᏓᏌᏆᎴᏍᎩ ᎠᎵᎧᏲᏙᏗ ᏚᎧᏲᏔᏁ ᏧᏬᏰᏂ. ᎤᏓᎾᏏᏅᏔᏁᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏗᎦᏓᎥᎢ ᎢᏳᏓᏅᎯᏓ. ᎠᎨᏴᏃ ᎦᏙᎬ ᎢᏗᏢ ᏭᎦᏔᎲᏍᏔᏅ ᎯᎠ ᎾᏥᏪᏎᎴ ᏌᏩᏂ; ᎯᎪᏩᏘᏍᎪ ᎯᎠ ᎠᎨᏴ? ᎯᏁᎸ ᎠᎩᏴᎸᎩ, ᎠᎹ ᎥᏝ ᏱᏍᎩᏁᏁᎴ ᏗᏉᏑᎴᏗ ᏗᏆᎳᏏᏕᏂ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏓᏉᏑᎵᏏ ᏗᏆᎳᏗᏕᏂ ᏧᎦᏌᏬᎸᎯ ᎬᏓ, ᎠᎴ ᏓᎩᎧᏲᏙᏓᏏ ᎤᏍᏘᏰᎬᎢ. ᎦᏙᎨᏃ ᏓᏓᏛᏂ? ᏥᎪ ᎠᏏᏉ ᎨᏗᏍᎦᏅᎨᏍᏗ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏁᏉᎢᏍᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ? ᏍᏆᎳᎯᎨ ᎭᏅᎦ ᎤᎵᏍᎨᏛ ᎨᏒᎢ. ᎨᏍᏗᎭ ᏥᏔᎷᎩᏍᎩ ᏱᎩ, ᎠᏎᏃ ᏰᎵᏉ ᏱᏂᎦᏛᎦ. ᏓᏓᏏ ᏥᏔᏲᏎᎸᎩ, ᎠᎴ ᎠᏁᎩ ᎥᏥᏅᏒᎩ ᎢᏓᎵᏅᏟ. ᏥᎪ ᏓᏓᏏ ᎢᏥᎶᏄᎮᎴᎢ? ᏝᏍᎪ ᎤᏠᏱᏉ ᎠᏓᏅᏙ ᏲᏍᏛᏗᏍᎨ ᎣᏍᏕᏙᎲᎢ? ᏝᏍᎪ ᏌᏉ ᏱᎨᏎ ᏙᏍᏓᎳᏏᏂᏙᎲᎢ? ᏅᎦᏍᎪᎯᏃ ᏧᏕᏘᏴᏛ ᎢᎪᎯᏛ ᎤᏁᎳᎩ ᎤᏪᎵᏎ ᏄᎾᏛᏁᎵᏙᎸ ᎢᎾᎨᎢ. “Ꭳ, Ꭵ ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏫᎵᎻ. ᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏓᎻ; ᎡᏍᎦ ᎡᏅᎦ ᎯᏰᏌᏛᎢ, ᏘᎪᎵᏯ ᏗᏉᏰᏂ, ᎠᎴ ᎡᏍᎦ ᎡᏅᎦ ᏦᏰᏂ ᏥᏍᏆᎨᏂ ᏩᏐᎾᏓ, ᎠᎴ ᏞᏍᏗ ᏃᎯᏳᎲᏍᎬᎾ ᏱᎨᏎᏍᏗ, ᎰᎯᏳᎲᏍᎩᏍᎩᏂ ᎨᏎᏍᏗ. ᎾᏍᎩ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᏗᏓᏓᏂᎸᎦ ᎾᏍᎩ ᎢᏳᎾᏍᏗ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏕᎩᎸᏫᏍᏓᏁᎲ ᏱᏗᏍᏕᎵᎭ ᏚᏳᎪᏛ ᎨᏒᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᏱᏥᎶᏒᏍᏗᏍᎨᏍᏗ ᎢᎦᎢ ᎡᏥᏁᏤᎸ ᎢᏥᎩᏏᏓᏍᏗᏱ. ᏤᎦᏈᏃ ᎤᏛᎦᏅ ᎤᏣᎴᏍᏗ ᎡᎲ ᎢᏥᏈᏱ, ᏕᎤᏅᏎ ᏗᎩᎦᏴᎵᎨ ᎩᎳ ᎾᎨᏎᎢ. ᎤᏒᎯᏰᏱ ᏓᏘᏍᎬ ᎦᎴᏫᏍᏗᎭ ᎢᎾᎨᎢ ᎾᎥᎢ ᎫᎦ ᎤᏅᏗ ᎠᏥᏍᏛ ᎠᏰᎯ, ᏑᎧᏔ ᏧᎬ ᎭᏫᏂᏣ ᎤᏓᏍᏛᏧᏁᎢ ᏲᎾ ᎤᏤᏍᏙ. ᎤᎩᏨᏓ, ᏯᏴᏓᏆᎶᏍᎬᎾ ᏱᎩ ᏯᎦᏍᎬᎾ ᏱᎩ, ᏂᎦᏓ ᏧᏂᎷᏫᏍᏔᏁ ᎠᏂᏗᏍᎩᏏᏍᎨ ᎧᏁᏍᎦ, ᏓᏆᎴᎳ ᎠᏂᏐᏗᏍᎨᏍᏗ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎦᎸᎳᏗ ᏫᏛᏂᏌᏂ. ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎧᏁᏍᎪ ᎦᏚᎢ ᎤᎾᎩᎴᏍᏗ. ᎠᎴ ᏄᎾᏓᎴ ᎠᏫ ᏓᎩᎧᎭ, ᎾᏍᎩ ᎥᏝ ᎯᎠ ᎤᏂᏴᏍᏗᏱ ᏯᏂᏯᎠ; ᎾᏍᎩ ᎾᏍᏉ ᎠᏎ ᏙᏓᎦᏘᏃᎵ, ᎠᎴ ᏛᎾᏛᎦᏂ ᏥᏁᎬᎢ; ᎠᎴ ᏑᎾᏓᏡᎩ ᏅᏛᎾᎵᏍᏔᏂ; ᎠᎴ ᏌᏉ ᎨᏎᏍᏗ ᎠᏫᏗᎦᏘᏯ. ᎧᎩᏳᏍᏗ ᏌᎳᏓ?” ᏗᎧᎿᏩᏛᏍᏗᏃ ᎤᏁᎴ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎤᎬᏩᎵ; ᎡᏆᎭᎻᏃ ᎤᏕᏁᎴ ᎡᏏᎩ, ᎤᎱᏍᏕᏎᎴᏃ ᏧᏁᎵᏁ ᎢᎦ, ᎡᏏᎩᏃ ᏤᎦᏈ, ᏤᎦᏈᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᏗᎩᎦᏴᎵᎨᎢ. ᏥᏌᏃ ᎾᎿ ᎤᎷᏨ, ᎦᎸᎳᏗ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎤᎪᎮᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏌᎩᏯ, ᏞᎩᏳ ᎡᎭᏠᎠᎯ; ᎪᎯᏰᏃ ᎢᎦ ᏥᎩ ᏘᏁᎸ ᏫᎨᏙᎮᏍᏗ. ᏃᏊᏗ ᎡᏆ ᏧᏃᏔᏁᎢ ᎾᎥᏂ ᎤᏍᏗ ᎦᏅᏅ ᏃᎴ ᏧᎾᏗᏍᎦᎳᏁ ᏌᎷᏱ. ᏍᏔᏯ ᏭᏗᏅᏎ, ᎤᏟᏂᎬᎬ ᎢᎦ, ᏔᎵᏉ ᏧᏟᎷᎬᏓ ᎦᎷᏯᏍᏘ, ᏲᎾ ᎠᏰᎸᎢ ᏭᏂᏌᏁ ᏍᏔᏯ. ᏃᎴ ᎣᎭᏂ ᎠᏓᏙᎵᏍᏙᏗ ᎠᎬᏱ ᏯᎯᎲᎾ. ᏧᏆᎶᎦ ᏕᎫᏌᎡᏍᏘ ᎩᎦ ᎤᏍᏔᏲᏒ ᎬᏘ, ᏤᏍᏗ ᎤᎴᏫᏍᏔᏅᎯ. ᏚᏂᎵᏦᏩᏛ, ᎢᎦᏓ ᎠᏂᎨᏯ ᎤᏅᏌ ᏚᎾᏓᎸ. ᎥᏝᏰᏃ ᎣᏏᏳ ᏳᏂᏰᎸᏁ ᏄᏍᏛ ᎤᎵᏁᏨᎢ, ᎾᏍᎩ ᎦᎾᏜᎢᏉ ᎾᏍᏉ ᏳᏃᏟᏍᏔ ᎣᏓᎸᎢ ᎠᏎ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏥᏲᏍᏗᏉ ᎨᏒ ᏗᎬᏩᎶᏒᎯ. ᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏗ ᏯᎾᎵᏥᏙᎲᎦ ᎢᏳᏃ ᏂᎨᏥᏅᏒᎾ ᏱᎩ? ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏂᏚᏬᏚᎭ ᏧᎾᎳᏏᏕᏂ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᎠᎾᎵᏥᏙᎲᏍᎩ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎾᎵᏥᏙᎲᏍᎩ ᎾᏍᎩ ᎣᏍᏛ ᎤᎬᏩᎵ ᎨᏒᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ [ᏥᏌ] ᎦᏅᎬ ᎠᎵᏍᏓᏴᎲᏍᎬ ᎾᏍᎩ ᎦᏁᎸᎢ, ᎤᏂᏣᏖ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎢᏧᎳᎭ ᏓᏂᏅᎨ ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎤᏂᏣᏖᏰᏃ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎮᎢ. ᏕᏥᎸᏉᏕᏍᏗ ᎾᏂᎥᎢ; ᏕᏥᎨᏳᏎᏍᏗ ᎠᎾᎵᏅᏢᎢ; ᎤᏁᎳᏅᎯ ᎡᏥᎾᏰᏍᎨᏍᏗ; ᎤᎬᏫᏳᎯ ᎡᏥᎸᏉᏆᏍᏗ. ᎠᎩᎨᏳᏔᏅ ᏥᎾᏄᎩᏣᏗ, ᎦᎶᎯᏍᏗᏳᎳ ᎦᏙᎬ ᎦᏥᏃᏍᏔ ᎠᎹ ᎨᏴ ᎢᏣ ᏫᏓᎧᏅ, ᎦᏐᎯ ᎣᎭᏁ ᏂᏚᏩᏅ ᏧᏬᏰᏂ. ᎤᏃᏕᎾ?” ᎿᏉᏃ ᎹᏗ ᎤᏛᎦᏅᏉ ᏥᏌ ᏣᎢᏒᎢ ᏫᏚᏠᏒᎩ. ᎺᎵᏍᎩᏂ ᎦᎵᏦᏕᏉᎬᏬᎸᎩ. ᎤᏃᏴᎵᏓ ᏭᏂᎷᏨ ᎦᎵᏦᏩᏛ, ᏂᎦᏓ ᎤᎾᏗᏍᎦᏟ ᎤᏂᏰᏨ, ᎤᎾᏗᏛᎲ ᏗᎫᏩᎭᏄᏫ. ᏎᎷ ᎦᏓᏫᏔᏅ ᏧᎾᏦᏴᏍᏗ ᏧᏓᏅᎵᏰᏓ ᏔᎷᎩᏍᎩ ᏗᎪᏱᏅᏍᏗ, ᏔᎷᎩᏍᎩ ᎠᏣᏗ ᏧᏓᏅᎵᏰᏓ, ᏗᎪᎢᎭ ᎪᏪᎵ ᏗᎦᏅᏙᏗ ᎤᎪᏏᏓ... ᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎠᏆᏚᎵᎭ ᏣᏍᏓᏱᏗᏍᏗᏱ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎤᏃᎯᏳᏅᎯ ᎤᎾᎦᏌᏯᏍᏙᏗᏱ ᏂᎪᎯᎸᏉ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ. ᎯᎠ ᎾᏍᎩ ᎣᏏᏳ ᎠᎴ ᎬᏩᎾᎵᏍᏕᎸᏙᏗ ᏴᏫ. ᎠᏇᏙᏅ ᎤᎵᏏᎩ ᏕᎦᎳᏅᏛ, ᏕᎦᏒᎭᏂᏙᎲ ᏓᏦᎭᏴ. ᎤᏛᏅ. ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏍᎦᎢᎮᏍᏗ ᎠᏰᎸᎢ ᎠᏂᎯᎯ, ᎠᏎᏃ ᎠᏓᏅᏙ ᎬᏩᏂᎯᏍᏗ ᏂᎨᏒᎾ ᏥᎩ. ᎤᎬᏫᏳᏎᏍᏗᏍᎩᏂ ᎡᏥᏍᎦᎢᎮᏍᏗ ᎾᏍᎩ ᏗᎬᏩᎯᏍᏗ ᏥᎩᎠᏰᎸᎢ ᎠᎴ ᎠᏓᏅᏙ ᎢᏧᎳ ᏨᏍᎩᏃᎢ. ᎿᏉᏃ ᎡᎶᏛ ᎤᏙᎴᎰᏒ ᎠᏂᎦᏔᎿᎢ ᎬᏩᎵᏓᏍᏔᏅᎢ, ᎤᏣᏔᏅᎯ ᎤᏔᎳᏬᏎᎢ, ᎠᎴ ᎤᏓᏅᏎ ᏫᏚᏂᎰᏁ ᏂᎦᏛ ᏗᏂᏲᎵ ᎦᏚᏱ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᏂᎬᎾᏛ ᎾᎿᏂ, ᏔᎵ ᎢᏳᎾᏕᏘᏴᏛ ᏩᏍᏘ, ᎾᎯᏳ ᏅᏓᏳᏓᎴᏅᏛ ᏥᏓᎵᏏᎾᎯᏍᏓᏁᎮ ᏥᏓᏛᏛᎮᎸᎥᏍᎨ ᎠᏂᎦᏔᎿᎢ. ᎢᎦᏓᏅᏖᏗ ᎢᎦᏛᏁᏗ ᏓᎩᏏᎳᏛᎢ. ᏲᎾ ᏃᎴ ᏂᎦᏓ ᎬᎩᏍᏆᏂᎪᏔᏅ ᏥᏧᏣ ᏥᎨᏒ, ᏭᏕᎵᎬ ᎠᏁᎬ. ᎾᏍᎩᏍᎩᏂ, ᏗᏓᏁᎸ ᎢᏣ ᎱᏪᏅᏎᎢ, ᎤᏓᎵᎢ ᎤᏟᏃᎮᏔᏁᎢ. ᏭᏚᎯᏅᏒ ᏧᏙᎨᏍᎩ, ᏧᎳᏏᏕᏅ ᏕᎦᏂᏱᏍᎬ ᏅᏯ ᎦᎳᎨᏴ ᎠᎼ ᎡᎳᏗ. ᎠᎴ ᎤᏪᎷᏁ ᎯᎠ ᏄᏪᏎᎢ; ᎡᏙᏓ ᎡᏆᎭᎻ, ᏍᎩᏙᎵᎩ, ᎠᎴ ᎡᎯᏅᎵ ᎳᏏᎳ, ᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ ᎦᏰᏌᏛ ᎠᎼᎯ ᏩᎱᏓ, ᎠᎴ----ᏩᎩᏙᎣᎸᏍᏓᏏ ᏥᏃᎪᎢ; ᏥᎩᎵᏲᎦᏰᏃ ᎠᏂ ᎠᏓᏪᎵᎩᏍᎬᎢ. ᎤᎵᏏᎬ ᎤᏅᏏᏴ ᎤᏴᏍᏗ ᏭᎷᏤ ᏭᏓᏓᎩᏅᏎ. ᏂᏚᎩᏨᏂᏒ ᎢᏨᏰᎳᏗᏙᎲᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏕᎦᏕᏲᎲᏍᎬᎩ, ᎠᎴ ᎥᏝ ᏱᏍᎩᏂᏴᎮᎢ; ᎤᏙᎯᏳᏗᏍᎩᏂᏃᏅ ᏂᎬᏅ ᎪᏪᎸᎢ. ᏲᎾ ᎦᏳᎳ ᏂᏚᏭᎪᏔᏃ ᎤᏓᏂᏯᏍᏗ ᏚᏅᏓᏒ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎫᏩᏍᏕᏓᎵᏴᏍᏔᏁᏗ ᏱᎨᏎ, Ꮳ ᎠᏂᏩᏥᏂ ᎤᏂᏁᏨ ᎠᎴ ᏗᏤ ᏗᏥᎶᏍᏔᏅ ᎢᎬᎾᏕᏅ ᎠᎴ ᏗᏲᏍᏔᏅ ᏓᏍᏔᏅᎭᏅ. ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏣᏚᎵ ᎬᏯᏛᏁᏗᏱ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎥᎠᎩᎪᏩᏛᏗᏱ ᎠᏆᏚᎵᎭ. ᎢᏳᏰᏃ, ᎠᏏ ᎡᏗᏍᎦᎩ ᏥᎨᏒᎩ ᎡᏙᎢᏍᏓᏁᎸᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎬᏔᏅᎯ ᎤᏪᏥ ᎤᏲᎱᏒᎢ, ᎿᏉ ᎪᎯ ᎡᏙᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎤᏟᎯ ᎤᏙᎯᏳᎯᏯ ᎡᎩᏍᏕᎸᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎬᏃᏛ ᎨᏒ ᎢᏳᏍᏗ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏥᎪ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏂᎦᏔᎯ ᎠᎹᏟ ᎤᏅᏗᏱ ᏱᏂᏕᏨᏂᏏ ᎠᏏᏉ ᎤᏁᎳᏗᏙᎲ ᎤᏕᏒᏂᎸᎯ? ᎠᏂᏐᎢ ᏓᏍᏕᎵᏍᎬᎩ, ᎤᏩᏒᏍᎩᏂ ᎥᏝ ᏴᎬᎵᏍᏕᎸ. ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵ ᎨᏎᏍᏗ, ᎿᏉ ᏓᏓᎿᏩᏍᏛ ᎡᎠᏠᎠᎯ, ᎩᎳᏃ ᏓᏰᏙᎢᏳᏂ. ᎯᎠ ᏄᏪᏒᎩ; ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᏉᎳ, ᏏᏌ ᎤᏪᎸ ᎢᎬᏱᏗᏢ ᎠᏎ ᏔᎴᏂ; ᎬᏂᏉᏃ ᎤᏁᎳᏅᎯ ᎦᏣᎧᏁᎸ ᏂᎦᏛ ᏥᏳᎯ ᏥᏣᏣᎠ. ᎠᏥᎸ-ᎨᎳᏍᏗᏰᏃ ᎨᏒ ᎤᏓᏁᏟᏴᏛ ᎨᏒᎢ, ᎠᏎ ᎾᏍᏉ ᎦᏁᏟᏴᏛ ᏂᎦᎵᏍᏗᎭ ᏗᎧᎿᏩᏛᏍᏗ. ᎨᏍᏗ ᏯᏆᏓᏚᎦ ᏁᎳᎩ ᎠᏇᎵᏍᏗ. ᏄᏍᏛ ᎾᏍᎩ Ꮎ ᎦᏓᏉ ᎠᎪᏢᏔᏅᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᎾᏍᏗ ᎦᏓᏉ ᎨᎪᏢᏔᏅᎯ; ᎠᎴ ᏄᏍᏛ ᎾᏍᎩ Ꮎ ᎦᎸᎳᏗ ᎡᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᎾᏍᏗ ᎦᎸᎳᏗ ᎠᏁᎯ. ᏗᏒᏆᎶᏍᏗ ᎪᏒᏔᏅ ᎠᏦᎭᏴ ᎤᎵᏏᎩ ᏃᎴ ᎡᎳᏗᎨᏍᏗ ᎠᏰᎵ, ᎤᎵᏏᎩ ᎤᏲᎢᏴ ᏩᏂᎦᏛ. ᎠᏥᎶᏍᏗ ᎤᏢᏍᏔᏅ ᏥᏍᎪᎵ, ᎲᏲᎳᏛ ᎤᏛᏅ. ᏥᏌᏃ ᎤᎿᎷᏒᎩ ᎣᏓᎸᎢ, ᎠᎴ ᎾᎿ ᎤᏪᏅᎩ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ. ᎠᎴ ᎤᎯᏰ ᎢᎦᏛ ᏧᎬᏩᎳᏅᎯ, ᎠᎴ ᎤᏓᎵᎢ ᎾᏍᏉ ᎠᎦᏔᎮᎢ; ᎤᏲᎴᏃ ᎢᎦᏛ, ᎠᎴ ᎨᏥᏅᏏᏛ ᏧᎾᎳᏏᏕᏄᎶᏗ ᎤᏁᎢ. ᎠᏆᏟᏂᎬᏁᎸ ᎣᎯᏍᏙᏗ ᏗᏟᎯ ᎢᏯᏆᎵᏍᏙᏗ. ᎾᏍᎩᏰᏃ ᎠᎨᏴ ᎠᏍᎦᏲᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏍᎦᏯ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ; ᎠᏎᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ. ᏕᏥᏯᏙᎯᎲ ᏄᎾᏛᏁᎸ ᏗᎾᏓᎯ. ᎤᎵᏍᎩᏃᎳᏓ, ᎠᏛᎩᏍᎨ ᏗᎾᎢᏒ. ᎯᎠ Ꭷ ᎨᎵ ᏅᏛᏍᎩᏪᏎᎵ, ᎦᏙᏃ ᎠᏏᏉ ᎡᏍᎦ ᎠᏰᎸᏍᎦ? ᎦᎪᏰᏃ ᏚᎦᏘᎴᏅ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬᎢ? ᎤᎿᏛ ᏚᏂᏙᎬ ᏥᏍᏚ ᎠᎴ ᏌᎶᎵ ᏭᎷᏤ ᏙᏯ. ᎣᎩᎾᏟᏃᎮᎸ ᏣᎵ, ᎾᎥᏂ ᎤᏬᏢ ᎠᏌᎻᏓ ᎤᏛᎦᏍᏛ, ᏯᏎᎦᎩ ᏱᎪᎵᎩ ᎧᏁᏨ ᎢᏳᏓᎵᎭ ᎡᎵᏍᎬ. ᏂᎪᎯᎸᎾ ᏰᎵ ᎢᏯᏂ ᎤᎾᏓᏓᏍᎩᏎᎢ. ᏚᏁᏤᎴᏃ ᎾᏍᎩ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ. ᎠᎴ ᏔᎵᏁ ᎢᎦᏥᏲᎢᏳᏓᏁᎭ ᎾᏂᎥ ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ, ᎾᏍᎩ ᎠᎾᏚᏓᎸᎥᏍᎦ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏳᎾᏛᏁᎰᎲᏍᏗᏱ. ᎤᎬᏫᏳᎯ ᎠᎨᏴ ᏧᎦᎾᏮ ᏤᎮᎢ ᏙᏛᎾᎴᏂ ᎪᎯ ᏣᏁᎭ ᏗᎫᎪᏙᏗᏱ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏚᎪᏓᏁᏗᏱ ᏂᏙᏓᎬᏁᎵ; ᎾᏍᎩᏰᏃ ᏩᏍᏛ ᎢᏴᏛ ᎦᏙᎯ ᏧᏅᏎ ᎤᏛᎦᏂᎴ ᏐᎵᎹᏅ ᎠᎦᏔᎾᎥᎢ; ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᏍᎦᏉ ᏐᎵᎹᏅ. ᏚᎴᏅᏃ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎠᎴ ᏫᏙᎤᎷᏤᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏚᏩᏛᎮ ᏓᏂᎵᎮ ᎤᏲ ᎤᏂᏰᎸᏒ ᎢᏳᏍᏗ. “ᎣᏍᏓᏗ ᎭᏓᏍᏕᎵᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ. ᎾᎯᏳᏰᏃ ᎠᏍᎦᏂ ᏗᏥᎾᏝᎢ ᏥᎨᏒᎩ, ᏚᏳᎪᏛ ᎨᏒ ᏂᏗᏥᎾᏝᎥᎾ ᎨᏒᎩ. ᏎᏥ ᎤᎧᎭᏲᏛ, ᎠᎹ ᏃᎴ ᎩᎦᎨ ᏗᎧᏲᏗ ᏓᎩᏅᎵᏰᎥ ᏗᎫᏯᎬ ᏚᏂᏁᎦᎸ. ᏦᎾᏰᏃ ᎤᏰᎸᏛ ᏥᏂᎨᎬᏁᎴ ᏂᏂᏫ ᎠᏁᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᎤᏰᎸᏛ ᏅᏓᎨᎬᏁᎵ ᎪᎯ ᏣᏁᎭ. ᎰᎻᏃ ᏧᏩᏒ ᏏᏆ, ᏍᎩᏴ ᏣᏂᎩᏍᎬ ᏓᏳᎴᏅᏓ ᎤᏚᏥ ᎡᎪ ᎾᎥᏂ ᎤᏪᏓᏍᏗ ᎮᎵᏍᎬ. “Ꮩ ᎤᏍᏗ, ᏙᏯ?” ᎤᏛᏁ ᏥᏍᏚ. ᎢᏳᏰᏃ ᎧᏃᎮᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏳᏅᏁᎸᎯ ᎨᏒ ᎤᎵᏂᎩᏗᏳ ᏱᎩ, ᎠᎴ ᏄᏓᎴᏒ ᎠᏍᎦᏅᏨᎯ ᎨᏒ ᎠᎴ ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᏚᏳᎪᏛ ᎨᏥᏍᏛᏗᏔᏅᎯ ᏱᎩ; ᏆᎴᏗᏃ ᏚᎳᏫᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎤᏂᏣᏘ ᎨᏒ ᏴᏫ, ᏗᏂᏃᎨᏅ ᎭᏫᏂᏨ ᏃᎴ ᏩᏍᏗ ᎢᏳᏍᏗ ᎠᏂᏒᎨ ᎠᎾᏓᏍᏓᏩᏕᎩ. ᎠᏫ, ᏲᎾ, ᎬᎾ, ᏯᎾᏌ ᏃᎴ ᎠᏫ ᎢᏳᏂᏍᏗ ᏭᏂᎶᏒ ᏭᏂᎶᏌ. ᎤᏩᏌ ᎤᎦᏛ ᎢᎬᏓ ᎨᏎ ᎤᎫᎫ ᎤᎦᏛ ᏃᎴ ᎤᏍᎪᎸ, ᎾᏍᎩᏯ ᏅᏙ. ᎠᏕᎸᏰᏃ ᏗᎨᏳᏗ ᎨᏒ ᎾᎿ ᏗᏓᎴᎲᏍᎦ ᏄᏓᎴᏒ ᎤᏲᎢ, ᎾᏍᎩ ᎩᎶ ᎤᏂᎬᎥᏍᎬᎢ ᎤᎾᏞᏒ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏅᏒ ᏚᎾᏓᏘᏍᏔᏅ ᎤᏣᏘ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ. ᎪᎱᏍᏗᎨ ᎢᏥᏂᎬᎦ? ᎠᏆᎵᎩᏍᏗ ᎠᏆᏚᎸᎲ, ᏄᏍᏛ ᎠᎵᏍᏗ ᎧᏃᎮᏍᎬ ᏲᎾ. ᎠᏛᎵᏍᎩ ᏄᏪᏒ ᏣᎵ ᎾᏍᎩᏯ ᎠᎦᏗᏛ F ᏥᏂᏕᎦᏪᏍᎪ ᎢᏳᏍᏗ. “Ꮀ,Ꮀ. ᎢᏥᏲᎮᏍᏗᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎡᏣᏠᏯᏍᏓᏁᏗ ᎨᏎᏍᏗ. ᏍᎩᏴ ᎤᏐᏅᎢ ᎠᏓᏪᎯ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏍᏗ ᎩᎳᎯᏯ ᏧᏂᏲᏍᏓᏁᎢ, ᏗᏓᏅᏫᏍᎩ ᎠᏓᏪᎯ ᏣᏄᎳᏍᏓᏁ. ᎾᏍᎩ ᎤᏓᏩᏗᏍᏙᏛᏉ ᎨᏒᎩ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏒᎢ; ᎠᏓᏩᏗᏍᏙᏗᏍᎩᏍᎩᏂ ᎦᎶᏁᏛ ᎨᏒᎩ. ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᎤᏚᎢᏍᏛᎢ ᎦᎾᏄᎪᏫᏎᎸ ᎢᏏᎵ ᎤᏂᏍᏕᎵᏍᎩ, ᎾᏍᎩ ᏥᏌ; ᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎢ, ᎠᎴ ᏗᎹᏗ ᎢᎩᏅᏟ. ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎪᎵᏂᏗᏱ ᏥᏣᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎪᎵᏂᏗᏱ ᏥᏣᏓᏡᎬ, ᎠᎴ ᏂᎦᏛ ᎢᏣᏓᏅᏘ ᏂᎬᎾᏛ ᎠᎦᏯ ᎢᏤᎲᎢ; ᎩᎶᏃ ᎢᏳᏍᏗ ᎡᏂᎾᏯ ᏧᏙᎢᏛ, ᎤᏓᏅᏘ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᏓᏩᏕᎩ, ᏂᎦᏛ ᎠᏂᏧᏏ ᎾᎿ ᎠᏁᎯ ᎣᏍᏛ ᎬᏩᏃᎮᏍᎩ, ᎩᏟ ᎠᏓᎯ ᏥᏂᎦᏪᏍᎪ ᏂᏓᏳᏪᏒ. ᎠᏎᏃ, ᎨᏍᏗ ᏯᏆᏚᎵ ᏣᏓᏅᏖᏙᏗ - “ᏴᎭᎴᏐᏣᏰᏃ ᎯᎠᏉ ᏄᏍᏕᏍᏗ: ᏱᎨᎾ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ ᏰᎵ ᏂᎦᎵᏍᏔᏅ. ᎩᎶᏃ ᏂᎯ ᎢᏣᏓᏡᎬ ᎯᎠ ᏱᏂᏑᏪᏎᎸ; ᏅᏩᏙᎯᏯᏛ ᏥᏤᎾ, ᎢᏥᎦᎾᏬᏒᎯ ᎠᎴ ᏗᏦᎸᏒᎯ ᎨᏎᏍᏗ; ᏂᏗᏥᏁᎲᎾᏃ ᎢᎨᏎᏍᏗ ᎠᏰᎸ ᎤᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ; ᎦᏙ ᎬᏙᏗ ᎾᏍᎩ? ”ᏣᏄᏏ!” ᏭᏛᏁ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎸ ᎤᏂᏣᏘ ᏚᏂᏂᏴᎮ ᎠᏣᏗ; ᎠᎴ ᎤᏂᎦᏯᎷᏗ ᏚᎾᎵᎦᎵᏎᎴᎢ ᏫᏓᏆᎧᎾᏅᎩᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏃᏕᎾ ᎠᎩᎾ ᏌᏯᏂ ᎣᏓᎸ ᎦᏙᎬᎩ, ᎠᎴ ᎤᎾᎵᎪᏒᎩ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎦᎵ ᎢᏯᏂᏛ, ᎾᏍᎩ ᎤᏙᏓ ᏚᏙᎥ ᏚᏃᏪᎸᎩ ᏗᏂᎬᏓᎨᏂ. ᎠᏂᏧᏏᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏅᎦᏍᎪᎯ ᏑᏓᎵᎦᎵ ᏧᏕᏘᏴᏛ ᎤᏂᏱᎵᏙᎸᎯ ᎠᎾᏁᏍᎨᏍᎬ ᎯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᏥᏌᏃ ᏂᎯ ᏦᎢᏉ ᎢᎦ ᏛᎯᏱᎵᏙᎵ ᏛᎭᏁᏍᎨᎰᏂ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎯᏲᎢᏳᎲᎦ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᏓᏰᏣᏍᏕᎸᎯᏃ, ᏂᎯ ᎠᎴ ᏕᏣᏓᏘᎾᎥᎢ. ᎾᏍᎩ ᏗᏥᏲᎯᏍᏗᏱ ᎠᎵᏍᏓᏴᏗ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ, ᎠᎴ ᎩᎬ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏬᏍᏔᏅᎯ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎾᏍᎩ ᏱᏗᏤᏯᏙᏤᎸ ᎣᏏᏳ ᏱᏂᏣᏛᎦ. ᏙᎯᏱ ᏂᏣᏛᎿᏕᎨᏍᏗ. ᎪᏫ ᎦᎵᏦᏕ ᎤᏪᏘ ᎨᏎ, ᎾᏍᎩᏴ ᏥᏓᏂᏂᏏᏍᎨ ᏧᏂᎸᏉᏗ ᎡᏓᏍᏘ ᎭᏫᏂᏨ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏩᏅᏖ ᏣᎵ ᎢᏳᏍᏗ ᏧᏤᎵ ᎨᏒ ᏧᎪᎳ ᏕᎦᏂᏌᎲ ᎤᏢᏗ ᎭᏫᏂᏣ. ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᎠᎾᏙᎴᎰᏍᎩᏱ; ᎬᏂᏳᏉ, ᏥᏅᎵ ᏥᏅᏏᏓᏍᏗ ᏣᎧᏛ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᏓᏣᏛᏅᎢᏍᏓᏁᎵ ᏣᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ. ᎨᏍᏗ ᏫᏥ ᎢᎦ ᏱᏚᎵᎬᏩᏞ ᎠᏤ ᎦᏚᎲ. ᎫᎫ ᎤᏛᎯᏍᏔᏅ, ᏏᏅᏓ ᎢᏳᏕᏘᏴᏓ ᏥᎨᏒ ᏥᏩᏒ.” ᎯᎠᏃ ᏄᏪᏎ ᏚᏟᎶᏍᏔᏁᎴᎢ, ᎪᎯᏍᎩᏂ ᎢᏨᏲᏪᎳᏏ ᎢᏧᎳᎭ ᎢᏤᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎢᏳᏃ ᎩᎶ ᎠᎾᎵᏅᏟ ᎠᎪᏎᎯ ᏱᎩ ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᏂᏏᎲᏍᎩ ᏱᎩ, ᎠᎴ ᎤᎬᎥᏍᎩ ᏱᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ ᎠᏓᏙᎵᏍᏏᏁᎯ ᏱᎩ, ᎠᎴ ᎠᏓᏐᎮᎯ, ᎠᎴ ᎤᏴᏍᏕᏍᎩ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎠᏓᎩᎡᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝᏍᏗ ᎾᏍᏉ ᎢᏧᎳᎭ ᏱᏣᎵᏍᏓᏴᏁᏍᏗ. ᏃᏗ ᎤᏬᏚᎯᎨᏍᏗ ᎤᎾᎥ ᎤᎿᏬ ᎤᎿᏬᎡ, ᎠᎧᏔᎮᎢ ᎠᏂᏧᏣ ᏧᎪᏩᏛᏗ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ. ᎠᎧᏔᎮᎢ ᎨᏍᏗ ᎪᎯᏓ ᎤᏍᏖᎸᏗ ᏱᎨᏎᏍᏗ ᏫᎵᎻ. ᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎤᏲᎢᏳ ᏂᏙᏓᎬᏁᎵ ᏙᏛᎵ ᎾᏍᎩ Ꮎ ᎤᏂᏲᎢ, ᎠᎴ ᏅᏩᎾᏓᎴ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏙᏛᏙᎳᏍᏔᏂ, ᎾᏍᎩ ᏰᎵ ᎬᏩᎾᎫᏴᏗ ᎾᏅᎾᏏᏒᎢ. ᎦᎪᏰᏃ ᎿᏉ ᎤᎾᏛᎦᏅ, ᎤᏂᎿᎸᏍᏔᏁᎢ; ᏝᏍᎪ ᏂᎦᏛ ᎢᏥᏈᏱ ᏂᏙᏓᏳᏗᏅᏍᏔᏅᎯ ᏱᏏ, ᎾᏍᎩ ᏱᏄᎾᏛᏁᎴᎢ? ᎣᏣᏛᎩᎭᏰᏃ ᎾᏍᎩ ᎩᎶ ᎨᏣᏓᏑᏴ ᎤᏣᏘᏂ ᎾᎾᏛᏁᎵᏙᎲᎢ, ᎪᎱᏍᏗ ᎾᎾᏛᏁᎲᎾ, ᎠᏎᏃ ᎠᎾᏛᏁᎵᏙᎯ ᎢᎩ. ᏥᏌ ᎤᏁᏨᎩ; ᎾᏍᎩ ᎨᏎᏍᏗ ᎠᎬᏎᎸᏛ ᏥᏁᎸᎭ ᎾᏍᎩ ᎠᏊᏅᎯ ᎨᏎᏍᏗ. ᎤᏭᏅᏃ ᎠᎬᎭᎸᏛ ᎤᏁᎸᎩ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏌᏩᏂ ᎤᏪᏥ. ᎠᏥᎸᏍᎩ, ᎠᎨᏳᏣ ᎤᏍᏕᎸᎲ ᎠᏥᎾᏗᏅᏍᏗ ᏱᎨᏒᎾ, ᏍᏉ ᎠᏯᎡ ᎦᏘᏱ. ᎨᏍᏗ ᎪᎱᏍᏗ ᏳᏕᎶᎰᏌ ᏚᎷᏫᏍᏔᏁᎲ. ᎯᎸᎢᏴ ᎦᏓ ᎨᏎᏍᏗ ᏧᎪᎳ ᏍᏉ. ᎠᎴ ᎠᏴ ᏣᏂ ᎠᎩᎪᎲᎩ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ, ᎠᎴ ᎠᏆᏛᎦᏅᎩ. ᎠᏆᏛᎦᏅᏃ ᎠᎴ ᎠᎩᎪᎲ, ᎡᎳᏗ ᎠᏆᏓᏅᏅᎩ ᏓᎦᏓᏙᎵᏍᏔᏂᏒᎩ ᏚᎳᏍᎬ ᎾᏍᎩ ᎾᏗᎧᎿᏩᏗᏙᎯ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎠᎩᎾᏄᎪᏫᏎᎸᎯ. “ᎯᎠᎾ, “ᎤᏣᏓ ᎣᏍᏓ, ᎤᏣᏓ ᎣᏍᏓ, ᎤᏣᏓ ᎣᏍᏓ’?” ᎤᏛᏛᏁ ᏌᏌ. ᏌᏩᏂᏃ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ, ᎬᏩᏍᏓᏩᏛᏎᎢ. ᏗᏤᏅᏒ ᏥᎮᎾ ᏥᏲᏎᎸ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᎪᏩ-ᏛᏗ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏍᏓᏩᏛᏎ ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ; ᏂᎦᏛᏃ ᏴᏫ ᎤᏂᎪᎲ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ. ᎾᏍᎩ Ꮎ ᎢᏦᎵᏍᏙᏗ ᎨᏒ ᏓᎧᏅᎢᎦ ᏤᏣᏗᏍᏓᏁᏗᏱ; ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏄᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒ, ᎾᏍᎩ ᎤᏓᏯᏅᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎾᏓᏅᏘ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎾᏍᎩ ᏧᏁᏗ ᏥᎩ, ᏉᎳ ᎠᎴ ᏌᏱᎳ ᎠᎴ ᏗᎹᏗ ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᏕᏏᎶᏂᎦ ᎾᏍᎩ ᎡᏦᎯᏳᎲᏍᎩ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. “ᏃᎴ ᏤᏍᏗ ᏯᏎᎵᏙᎮᏍᏗ!” ᎤᎾᏛᎦᏅᎩᏃ ᎠᏍᏓᏯ ᏗᎧᏁᎬ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎯᎠ ᏄᏂᏪᏎᎲᎢ, ᎡᏍᏓᎩᎳᏩ ᎠᏂ ᎢᏍᏗᎷᎩ. ᎦᎸᎳᏗᏃ ᏭᏂᎶᏒᎩ ᎤᎶᎩᎸ ᎤᎾᎵᏌᎳᏓᏅᎩ. ᎠᎴ ᎬᏩᏂᏍᎦᎩ ᎬᏩᏂᎪᎲᎩ. ᎠᎴ ᎾᏍᏉ ᎢᏨᏒ ᎢᏣᏓᏡᎬ ᏛᏂᎾᏄᎪᏥ ᎠᏂᏍᎦᏯ ᎤᏣᏘᏂ ᎾᏂᏪᏍᎨᏍᏗ ᎠᏂᏬᏂᏍᎨᏍᏗ, ᎠᏃᎯᏳᎲᏍᎩ ᏧᎾᏘᎿᏫᏛᏗᏱ ᎤᏂᏰᎸᏎᏍᏗ. ᎤᎬᏫᏳᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᏕᏦᎯᏳᏎᏍᏗ ᎾᏂᎥ ᏴᏫ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ--ᎾᏍᏉ ᎤᎬᏫᏳᎯ ᏄᎬᏫᏳᏒ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᏧᎬᏩᎶᏗ ᎤᏕᎵᏛ ᏠᎨᏏ ᏣᎰᎢ, ᎾᏍᎩ ᎢᏳ ᎠᏍᎦᏯ ᎠᏩᏛ, ᏣᏕᎸᏍᎪᎢ, ᎠᎵᎮᎵᎬᏃ ᎢᏳᏍᏘ ᏤᎪᎢ ᏥᏫᎦᎾᏕᎪᏂᎦᏛ ᎤᏍᏆᏂᎪᏛᎢ, ᎠᎴ ᏥᏭᏩᏍᎪ ᎾᏍᎩ ᏠᎨᏏ. ᎿᏉᏃ ᏂᎦᏛ ᎤᏂᏣᏘ ᎨᏒ ᎡᎳᏪ ᎤᏅᏁᎢ, ᎠᎴ ᏚᎾᏛᏓᏍᏓᏁᎴ ᏆᏂᏆ ᎠᎴ ᏉᎳ ᎠᏂᏃᎮᏍᎬ ᏂᎦᎥ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏅᏗᏍᎬ ᏚᎸᏫᏍᏓᏁᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ. ᎿᏉᏃ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏳᏃ ᎠᏍᎦᎾ ᏱᎩ ᎥᏝ ᏱᏥᎦᏔᎭ; ᏑᏓᎴᎩ ᏥᎦᏔᎭ; ᏗᏥᎨᏫ ᏥᎨᏒᎩ ᎿᏉ ᎢᏥᎪᏩᏘᎭ. ᎦᎶᎯᏍᏗ ᏭᎷᏨ ᎨᎵ, ᎠᏲᏓᏌᎲ ᏭᎶᏒ, ᎣᏂ ᏭᎶᏒ ᎠᎹᏳᎸᏓ ᏭᎷᏨ. ”ᎦᏙᏃ ᎣᏍᏓ ᏱᏣᏓᏅᏛᎾ ᏥᎩ? ᎩᎶᏃ ᎢᏳᏍᏗ ᏧᏁᎶᏗ ᎡᎮ ᏕᎹᏍᎦ, ᎡᏂᎾᏯ ᏧᏙᎢᏛ; ᎾᏍᎩᏃ ᎤᏁᎳᏫᏎᎲ ᎤᎬᏫᏳᎯ ᎯᎠ ᏄᏪᎡᎴᎢ; ᎡᏂᎾᏯ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎠᏂ, ᏣᎬᏫᏳᎯ. ᏩᏍᏛᎢ ᏙᏱ ᎤᏪᏓᏍᏗ ᏭᏓᏐᎴᎢ ᏫᎵᎻ. ᏤᎦᏈᏃ ᏦᏩ ᎤᏕᏁᎴᎢ, ᎾᏍᎩ ᎺᎵ ᎤᏰᎯ ᎾᏍᎩ ᏧᎾᏄᎪᏫᏎ ᏥᏌ ᎦᎶᏁᏛ ᏣᏃᎭᎰᎢ. ᎠᏎ ᎢᏳᏍᏗᏉ ᏗᎦᎷᏫᏍᏔᏅᏗ ᏩᎫᎩᏐᏗ. ᏂᎪᎯᎸᎾ ᎦᎾ ᎦᏌᏆᎸ ᎢᏨᎾᏓ ᎨᏎᎢ. ᎦᏙᏃ ᎯᎠ ᎠᏠᏁᏗ ᎥᏝ ᏳᏂᎾᏗᏅᏎ ᎠᎴ ᏦᎢᏧᏈ ᎠᎩᏏ ᏧᎾᏩᎶᏗ ᏱᏚᏂᏩᏛᎮᎢ, ᎠᎴ ᎥᏝ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎾᏍᎩ ᏱᏚᏂᏁᎴᎢ? ᎤᏂᏂᏴᎮᏃ, ᎠᎴ ᎤᏂᏄᎪᏫᏎ ᏖᎸᎳᏗ ᏓᏫᏒᎢ, ᎠᎴ ᎤᏂᎴᎢ. ᎿᏉᏃ ᎤᏲᎯᏍᏔᏅ ᎦᏬᏂᏍᎬ ᎯᎠ ᏄᏪᏎᎴ ᏌᏩᏂ, ᏗᏍᏛᎬ ᏫᏅᏍᏛ ᎠᎴ ᎡᎳᏗ ᏂᏗᏨᎦ ᏗᏥᎦᏯᎷᏗ ᏗᏥᏂᏴᏗᏱ. ᎠᏕᎸ ᏗᏂᏍᏆᏂᎪᏗᏍᎩᏱ ᏱᏫᏙᏣᏁ ᎠᏕᎸ ᏗᏆᏤᎵᎦ, ᎾᏍᎩᏃ ᎪᎯ ᏥᏥᎷᎩ ᏱᏓᎩᎪᎮ ᏗᏆᏤᎵ ᎠᎴ ᎤᏂᏁᏉᏨᎯ. ᏝᏍᎪ ᏱᏣᏅᏔ, ᎾᏍᎩ ᎠᏏ ᏥᏨᏰᎳᏗᏙᎲᎩ ᎾᏍᎩ ᎯᎠ ᎢᏨᏃᎮᎮᎸᎢ? ᏃᏗ ᎤᏍᏚᎩᏎ ᎧᏁᏌᎢ. ᎤᎷᏤᏃ ᎦᏁᎸ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᎦᎮ ᎤᎾᏓᏑᏰᏛ ᏴᏫ, ᎠᎴ ᎤᏣᏘ ᏓᎾᏠᏱᎲ ᎠᎴ ᏓᏂᏴᎬᎢ. ᏅᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᏅᏙᏃ ᎢᎦ ᎡᎯ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎤᏩᏂᎸᎩ, ᎠᎴ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎤᏩᏂᎸᎩ, ᎠᎴ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏃᏈᏏ ᎠᏂᎧᎸ ᏚᏩᏂᎸᎩ; ᎾᏍᎩᏃ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᎵᏏᎲᏒᎩ, ᎠᎴ ᎢᎦ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎥᏝ ᏯᎦᎵᏍᎨᎢ, ᎠᎴ ᏒᏃᏱ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎾᏍᏉ ᎥᏝ ᏯᎦᎵᏍᎨᎢ. ᎾᏍᎩ ᎾᏍᏉ ᏧᏩᎫᏔᏅᏒ ᏂᏗᎥ ᎨᏓᎵᎪᏁᎲᎩ ᎾᎿ ᎢᎩᏇᏓᎸ ᎤᎬᎥᏍᎬᎢ, ᎠᎴ ᎤᏇᏓᎸ ᎠᎴ ᎠᏓᏅᏖᏗ ᎨᏒ ᎤᎾᏚᎵᏍᎬ ᏂᏓᏛᏁᎲᎩ; ᎠᎴ ᏗᎦᏕᏅ ᏂᎦᏍᏛ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏧᏪᏥ ᎨᏒᎩ, ᎾᏍᎩᏯᏉ ᎠᏂᏐᎢ ᏄᎾᏍᏛᎢ. ᏰᎵ ᎦᏲᏟ ᎤᏲᏍᏔᏁᎢ ᏚᏏᎳᏛ ᏌᎳᏓ, ᎠᏰᎵ ᎤᏣᏅᏕᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳ ᎠᏉᎳ ᎪᎵᏂᏗᏱ ᎡᏙᎲᎩ, ᏉᎳ ᎠᏰᎵ ᎨᏒ ᎤᎶᏒ, ᎡᏈᏌ ᏭᎷᏨᎩ. ᏚᏩᏛᎲᏃ ᎩᎶᎢᏳᎾᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ, ᎯᎦᏔᎭᏰᏃ. ᏙᎢᏳᏍᏗ ᎤᏧᏗᎭ ᏣᏤᎵ ᏏᏆ?” ᏥᎪ ᏂᎯ ᎢᏤᎲ ᏧᏓᎴᏁ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ? ᏥᎪᎨ ᏂᎯᏉ ᎢᏨᏒ ᎢᏥᎷᏤᎴᎢ? ᎠᏆᏓᏅᏙᎩ ᎠᎩᏍᏆᏂᎪᏙ ᎨᎸ ᎠᏂᏴᏫ. ᎾᏍᎩ ᏧᏂᏙᏓ ᏥᎩ ᎠᏂᎦᏴᎵᎨᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏁᎲᎢ, Ꭰ ᎠᏇᏓᎵ ᎨᏒ ᏧᎷᏤ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᎩ, ᏄᏓᎴᏒ ᎤᎬᏫᏳᏌᏕᎩ, ᏫᎾᏍᏛᎾ ᎦᎸᏉᏙᏗ. ᎡᎹᏅ. ᎠᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎤᏁᎳᏅᎯ ᏧᏑᏰᏛ ᎨᏒᎢ, ᎤᎾᏓᏅᏘ ᎠᎴ ᎨᏥᎨᏳᎢ, ᎢᏣᏄᏬᏍᏓ ᎤᏬᏙᎵᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎤᏓᏅᏘ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎤᏓᏅᏘ ᎨᏒᎢ, ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᏗᏓᏕᎵᏎᏗ ᎨᏒᎢ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏉᎯᏳᎲᏍᎩ, ᎠᏴ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ ᎾᏍᏉᎾᏍᎩ ᏙᏓᏳᎸᏫᏍᏓᏁᎵ, ᎠᎴ ᎤᏟ ᎤᏍᏆᏂᎪᏗᏳ ᏙᏓᏳᎸᏫᏍᏓᏁᎵ ᎡᏍᎦᏉ ᎯᎠ; ᎡᏙᏙᏱᏰᏃ ᎦᎢ, ᏖᎾᏍᎩᏍᏆ ᏂᎦᏚ ᎢᏯᏂᎢ,” ᎤᏛᏁ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ ᏅᏃᎯ, ᎠᎴ ᏚᏳᎪᏛᎢ, ᎠᎴ ᎬᏂᏛ. ᎥᏝ ᎩᎶ ᎠᎦᏴᎵᎨᎢ ᏱᎦᎷᏤᎰᎢ, ᎬᏂ ᎠᏴ ᎠᎩᎶᎯᏎᎸᎯ ᏥᎨᏐᎢ. ᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎾᏛᎩᏍᎩ ᎾᏂᏍᎦᏅᎾ ᏱᎩ ᎤᏁᎳᎨᎯ ᏓᎧᏅᎢ, ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᏂᎦᏪᏍᎬ ᎢᏯᎾᏛᏁᎯ ᎾᏍᎩ ᎤᎾᏚᏓᎴᏍᏗ ᎨᏎᏍᏗ. ᎤᏍᏆᏂᎪᏎᏰᏃ ᎠᎴ ᏂᎦᏛ ᎠᏁᎯ ᎤᏂᏍᏆᏂᎪᏎ ᏅᏗᎦᎴᏍᏙᏗᏍᎨ ᎾᏂᎥ ᎠᏣᏗ ᏚᏂᏂᏴᎲᎢ; ᎯᎠᏰᏃ ᎾᏍᎩ ᏄᏍᏗ ᎧᏃᎮᏛ ᏕᎦᏥᏯᏠᎢᏍᏓᏁᎸᎢ, ᎾᎯᏳ ᎦᏥᎥᎡᏗ ᏂᎦᎵᏍᏔᏅᎭ ᎤᏂᏍᎦᏅᏨᎢ. ᎭᎾ ᎦᏓᏁ ᏃᎴ ᎤᎵᏏᎩ ᎨᏐᎢ. ᎤᏙᎯᏳᎯᏰᏃ ᎤᏢᎬᎩ ᎠᎴ ᎠᎴᏉ ᏄᏲᎱᏒᎩ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏙᎵᏨᎩ; ᎥᏝ ᎠᎴ ᎾᏍᎩᏉ ᎤᏩᏒ, ᎠᏴᏍᎩᏂ ᎾᏍᏉ, ᎾᏍᎩ ᎤᎶᏏᎶᏛ ᎤᏲ ᎠᏆᏓᏅᏓᏗᏍᏗᏱ ᏂᎨᏒᎾ. ᎠᎴ ᎬᏂᏳᏉ ᎠᏏᏴᏫ ᏥᏌ ᎠᏁᎯ ᎤᏌᎳᏓᏅᎩ ᎧᏃᎨᏂ ᎤᎸᎲᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ, ᎠᎴ ᎤᎷᏴ ᎤᎬᏫᏳᎯ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᎵᏍᏕᏍᏔᏅᎩ. ᏣᎬᏫᏳᎯ ᎨᏒ ᏫᎦᎾᏄᎪᎢ. ᎠᏂ ᎡᎶᎯ ᏫᏂᎦᎵᏍᏓ ᎭᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩᏯ ᎦᎸᎳᏗ ᏥᏂᎦᎵᏍᏗᎭ. ᎠᎴ ᎬᏂᏳᏉ ᎤᏣᏘ ᎦᏙᎯ ᎤᎵᏖᎸᏁᎢ, ᏱᎰᏩᏰᏃ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᏧᏠᎠᏎᎢ, ᎤᎷᏨᏃ ᏅᏯ ᎤᏪᏌᏆᎴᎴ ᎤᎲᏎ ᎦᎶᎯᏍᏗᏱ ᎠᎲᎢ; ᎠᎴ ᎤᏍᎩᎳᏁᎢ. ᎠᏎ ᏧᏬᏚᏨ ᎢᎦ ᎤᏕᏘᏴᏌᏗᏒ - “ᎪᎩ ᏣᏓᏍᏕᏓᎵᏴᏍᎪ ᎤᎵᎪᎲᏍᏗ ᏥᏂᎦᎵᏍᏗᏍᎪ - “ᏔᎳᏚ ᏓᏃᏣᏝᏍᎪ ᎤᎯᏐᏗ ᏃᎴ ᎠᏓᏍᏕᏓᎵᏴᏍᎬ. ᎨᏍᏗ ᏳᎯᏐᏓᏁᎮ ᏌᎳᏓ ᎾᎥᏂ ᏰᏙᎭ. Ꮟ ᎤᏬᏘᏎᎢ ᎤᏍᏉᏟᎢ ᎤᏒᎯ ᎤᎦᏌᎴᏍᏔᏅᎢ. ᎩᎶᏍᎩᏂ ᏯᏙᎴᎰᏍᎦ ᏴᏫ ᏕᎦᏬᏁᏗᏍᎪ ᏓᎵᏂᎪᎯᏍᏗᏍᎪᎢ, ᎠᎴ ᏕᎦᏂᎳᏕᎰᎢ, ᎠᎴ ᏓᎦᎵᏍᏓᏗᏍᎪᎢ. ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᎳᏯ ᎤᏙᎯᏳᎯ ᎢᎬᏴ ᎤᎷᎯᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎤᏬᏢᎯᏐᏗ; ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᎬᏅᎪᏪᎳ ᏴᏫ ᎤᏪᏥ ᎠᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎤᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏎᏉ ᏓᏰᏥᏰᎸᏂ. ᎢᏏᎵᏍᎩᏂ ᎯᎠ ᏂᏕᎦᏪᏎᎭ, ᎤᏙᏓᏇᏛ ᏓᏆᏎᎵᏛᎩ ᎦᏥᏯᏂᏍᎬ ᏄᏃᎯᏳᏒᎾ ᎠᎴ ᎤᏂᎪᏁᎶᎯᏌᏘ ᏴᏫ. ᎤᎦᏃᏩ ᏱᎩ ᎢᎦ ᏒᎮᏱᏣ, ᎧᏁᏍᎦ ᏫᏥᏌᎲᏍᎪ ᎦᏚᎢ ᏧᏪᏥ, ᏙᏱ ᏫᎨᏙᎰ. ᎠᏯ, ᏓᏊᎪᏔᏅ ᏗᎦᎸᎳᏗ ᎦᏗᎨᏂ ᎠᏍᎦᏯ ᏧᎳᏑᎶ. ᎠᏋᏌ ᏍᎩᏄᏍᏛ ᎦᏓᏅᏖᏍᎬ, ᏤᎩᏏᏂ ᏧᎵ ᏓᏂᎸᏆᏍᎬ ᏗᎳᏑᎶ, ᏤᎩᏏᏂ ᎠᏍᎪᎵ ᏥᎪᎵᏰᏍᎬ ᎦᏓᏅᏖᏍᎬ ᏤᎩᏏᏂ ᏃᎴ ᎦᎳᎱᏂ ᎤᏍᎦᏎᏗ ᎤᏂᏍᏘᏰᎬ ᎾᏍᎩ ᎠᏂᏳᏩᏁᎦ. ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎼᏏ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᎨᏒᎩ, ᎤᏓᏙᎵᏣᏛᏍᎩᏂ ᎠᎴ ᏚᏳᎪᏛᎢ ᏥᏌ ᎦᎶᏁᏛ ᏂᏙᏓᏳᎵᏍᎦᎸᏔᏅᎯ. ᎠᎴ ᏂᎯ, ᎪᏙᏃ ᏙᎯᏳᎪᏓᏁᎭ ᎢᏍᏓᎵᏅᏟ? ᎠᎴ ᏂᎯ ᎾᏍᏉ, ᎦᏙᏃ ᏅᎵᏌᎵᏉ ᎢᎯᏰᎸᏍᎦ ᎢᏍᏓᎵᏅᏟ? ᏂᎦᏗᏳᏰᏃ ᎢᎬᏱᏗᏢ ᏫᎦᎴᏗ ᎨᏎᏍᏗ ᎦᎶᏁᏛ ᏧᏭᎪᏗᏱ ᎤᏪᏍᎩᎸᎢ. ᎠᏎᏃ ᎠᏍᎩᏗᏍᎨᎢᏉ. ᎾᏍᎩᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯ, ᏣᎬᏫᏳᎯ; ᎠᏎᏃ ᎩᎵ ᎦᏍᎩᎸ ᎭᏫᏂᏗᏢ ᏗᏂᏲᎵ ᎤᏂᏅᎪᎠᎯᏎᎸᎯ ᎦᏚ ᎠᎾᎵᏍᏓᏴᏗᏍᎪᎢ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎭ ᎤᏃᎯᏳᎯᏍᏛ ᏂᎨᏒᎾ ᏴᏫ. ᎩᎶ ᏄᎸᏉᏙ ᎪᎱᏍᏗ ᎤᏍᏗ ᎢᎦ ᎡᏍᎦᏉ ᏅᏩᏓᎴ ᎢᎦ; ᎩᎶᏃ ᏂᎦᎥᏉ ᎢᎦ ᏚᎸᏉᏙᎢ. ᎾᏂᎥ ᎩᎶ ᎠᎧᎵᎢ ᎤᏃᎯᏳᏎᏍᏗ ᎤᏅᏒ ᏙᏧᎾᏓᏅᏛᎢ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏥᏆᎵᏏ! ᏕᏥᎸᏉᏙᏰᏃ ᏄᎬᏫᏳᏒ ᏕᎦᏍᎩᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎡᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ. ᏂᎦᎥ ᎪᏪᎵ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᏗᎪᏪᎳᏅᎯ, ᎠᎴ ᎣᏏᏳ ᎤᏓᏕᏲᏗᏱ, ᎤᏓᎬᏍᎪᎸᏗᏱ, ᎤᏓᎪᏗᏱ ᏚᏳᎪᏛᎢ, ᎤᏓᏕᏲᏗᏱ ᎣᏍᏛ ᎨᏒᎢ, ᎤᏩᏌ ᏧᏓᏅᏖᏙᏗ ᏚᎮᎢ ᏌᎳᏓ ᎠᏎᏃ ᎡᏝᏪᎯ ᎨᏎᎢ. ᏰᎵ ᎢᏗᏎᎸ ᎤᎾᎵᏗᎩᏛ, ᏦᎢ ᎤᎾᏁᎶᏔᏅ. ”ᏚᏙᎥ ᎦᏯᎸ ᎤᏪᏘ ᎠᎿᏬ.” ᎢᏗᎦᏔᎭ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᏥᎨᏐᎢ ᎥᏝ ᏯᏍᎦᏅᎪᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏕᏔᏅᎯ ᎤᎵᏍᏆᏂᎪᏙᎢ, ᎾᏍᎩᏃ Ꮎ ᎤᏁᎫᏥᏛ ᎥᏝ ᏳᏒᏂᎰᎢ. ᏧᏒᎯᏓ ᏐᏈᎵ ᎦᏐᎯ ᎠᏆᎩᎸ ᎧᎸᎬ ᎢᏣ ᎾᎥᏂᎨ ᏗᎦᏚᎲ, ᏴᏫ ᏗᏘᏂᏙᎯ ᎠᏩᏛᏗ. ᎨᏍᏗ ᎩᎶ ᏳᎾᎵᎪᎮᎢ ᎤᎵᏬᏣ. ᎠᎹ ᏅᏬᏘ . ᎯᎠ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏙᎯ ᏂᎬᏁᎲᎩ ᎡᎶᎯ ᎬᏩᏍᎦᎩ ᎨᏒ ᎦᎶᏁᏛ ᎬᏗᏍᎬᎩ, ᎤᏂᏍᎦᏅᏨ ᎤᏂᏍᎦᏅᏨᎯ ᏂᏓᏰᎸᎾᏁᎲᎾ; ᎠᎴ ᎠᏴ ᎣᎦᏒᎶᏔᏅ ᎧᏃᎮᏛ ᏙᎯ ᎢᎬᏁᎯ. ᏓᏓᏏᏃ ᎨᏒᎢ, ᎣᎩᎾᎵᎪᎯ ᎾᏍᎩ, ᎠᎴ ᎢᏧᎳᎭ ᏦᎩᏂᎸᏫᏍᏓᏁᎯ ᏂᎯ ᎪᎱᏍᏗ ᎢᏨᏯᏛᏁᎲᎢ; ᎣᏣᎵᏅᏟᏃ ᎨᏒ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎬᏩᏂᏅᏏᏛ ᎾᏍᎩ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏯᏅᏁᎯ ᎦᎶᏁᏛ.. ”ᏙᏱ ᏫᎦᎲᎦ ᏩᎶᏏ!” ᎤᏅᏫᏍᏔᏁᎢ ᏲᎾ ᎤᏤᏍᏙ. ”ᎯᎠᎾ ᎣᏏᏉᏍᎪ?” ᎤᏛᏛᏁ, ᏌᎳᏓ ᎬᏂᎨᏒ ᏄᏩᏁᎴ. ᏗᎧᎸᎬᎢ, ᏭᏕᎵᎬ, ᏧᏴᏨ, ᏧᎦᏃᏮ. ᎠᎦᏰᏃᎮᏰᏃ ᎦᏚᎲᎢ ᏗᎦᎫᏍᏓᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᏍᎨᎲᎢ ᎠᎴ ᎤᏬᏢᏅᎯ ᏥᎩ. ᎠᎵᎮᎵᎨ ᏫᎵᎻ ᎠᎧᏔᎲᎢ ᎾᎥᏂ ᎤᏬᏢ ᏙᏰ ᎠᏥᏍᏚᎲ. ᎤᏚᎩ ᎢᏨᏒ ᎢᏣᎵᎮᎵᎨᏍᏗ; ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ ᎢᏥᎩᎵᏲᎬᎢ; ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏂᎪᎯᎸᎢ; ᎿᏉ ᎥᏝ ᎠᎪᏄ ᏧᏂᏲᏏᏐᏗ ᏱᎨᏎᏍᏗ. ᎥᏝ ᎠᎴ ᎿᏉ ᏧᏂᏔᏕᎪᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᏅᏙ ᎢᎦ ᎡᎯ ᎤᏗᎴᎩ ᏳᏂᎦᎵᏍᎨᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎤᏗᎴᎩ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎯᎠ ᎤᎾᏛᎦᏅ ᎤᏁᏉᎡᏚᏟᎶᏍᏓᏁᎴᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏥᎷᏏᎵᎻ ᎾᎥ ᎤᎷᏥᏗᏒᎢ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᎬᏪᏅᏛ ᏓᎦᎾᏄᎪᏥ ᎠᏁᎵᏍᎬᎢ. ᎤᏂᏦᎴ ᎠᎹ ᏣᏄᏏ, ᏭᏍᏚᏤᎢ ᏫᎵᎻ. ᎪᏍᏓᏱ ᎠᏂᎴᎩ ᏓᏫᏒ ᎤᏔᎷᎩᏍᎩ ᎢᎾᎨᎢ ᎢᏳᏍᏗ ᏄᏍᏕᎢ. ᎠᎴ ᏂᎪᎯᎸ, ᏒᏃᏱ ᎠᎴ ᎢᎦ, ᎦᏚᏏ ᎠᎴ ᏓᏓᏂᏌᎲᎢ, ᎤᏪᎷᎨᎢ, ᎠᎴ ᏅᏯ ᎬᏗ ᎠᏓᏰᎶᎮᎢ. ᏈᏓᏃ ᎡᎳᏗᏢ ᎾᎿ ᎠᏓᏁᎸ ᎡᏙᎮᎢ, ᎤᎷᏤ ᎠᏏᏴᏫ ᎠᎨᏴ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ. ᏚᎧᎿᏅᏃ ᏥᏌ ᎠᎢᏒᎢ ᎯᎠ ᏄᏪᏒᎩ; ᏤᏣᎦᏅᎦ ᎠᏫ-ᎠᎩᎾ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᎠᏂᏲᏍᎩ ᏐᏈᎵ ᏧᎾᎩᎸᏗ, ᏓᏆᎴᎳ ᏓᏐᏗᏓᏅ ᎤᏅᏔᏂᏓᏍᏗ ᎠᎭᏃᏬ ᎬᏘ ᏚᎫᏒᏅ, ᎠᏂᏴᏫᏯ ᏃᎴ ᏚᏂᎾᏌᎥ ᎠᏂᎱᏥ ᎣᎭᏂ ᎠᏂᏍᏔᏩᏗᏒ, ᏗᏂᏲᏟ ᎠᏁᎬ, ᏧᏂᏍᏗ ᏓᏂᎭᏂᏒ. ᎡᎳᏗ ᏭᏄᏛᏁᎴᎢ ᏃᎴ ᎩᎳᏈᏴ ᏗᏏᎳᏛᏙᏗ ᎤᏩᏇᏅᏔᏁᎢ ᎠᏣᏗ ᏃᎴ ᏰᎵ ᎤᏟᏂᎬᏁᎸ ᎤᏂᏴᎮᎢ.” ᎣᏍᏓ ᎠᏒᎨ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏃᎴ ᏄᏓᎴᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏚᏳᎪᏛᎩ ᏂᎦᎥ ᏄᏛᏅᏅ ᎠᎾᎵᏅᏟ ᎾᏍᎩᏯ ᏄᎾᏍᏛ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏗ ᎠᎴ ᏄᏓᎵᏍᏛᎾ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᎫᏴᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏂᏍᎦᏅᏨ ᏴᏫ; ᎿᏆᎴ ᎠᏍᎩᎾ ᎤᏣᏘ ᎢᏅ-ᎢᎦᏘ ᎣᏓᎸ ᏫᎤᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᏚᏎᎮᎴ ᏂᎦᎥ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎡᎳᏂᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏂᏚᏬᏚᏒᎢ; ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ, ᎾᎯᏳ ᏕᏥᎪᎲᎭ ᎡᏆᎭᎻ ᎠᎴ ᎡᏏᎩ ᎠᎴ ᏤᎦᏈ ᎠᎴ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎿ ᎠᏂᏯᎡᏍᏗ, ᎢᏨᏒᏃ ᎡᏥᏄᎪᏫᏒᎯ ᎨᏎᏍᏗ. ᎠᏓᏍᏓᏴᏗ ᎢᏣ ᏭᎾᏓᏒᏍᏔᏁᎢ. ᎾᏍᎩᏃ ᏂᎦᏛ ᏄᎾᏓᏁᏟᏴᏒ ᎡᏆᎭᎻ ᏤᎮ ᎾᎯᏳ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏕᏫᏃ ᏤᎮ ᏅᏛᏍᏘ ᏂᎦᏚ ᏄᎾᏓᏁᏟᏴᏎᎢ; ᏕᏫᏃ ᏤᎮ ᎾᎯᏳ ᏅᎵᎬᏩᏓᎴᏅᏛ ᏓᏗᎶᏂᏃ ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁ ᎾᎯᏳ ᏅᏛᏍᏘ ᏂᎦᏚ ᏄᎾᏓᏁᏟᏴᏎᎢ; ᏓᏗᎶᏂᏃ ᎾᎯᏳ ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁ ᎤᏓᏳᏓᎴᏅᏛ ᏥᏌᏃ ᏧᏕᏁ ᎾᎯᏳ ᏅᏛᏍᏘ ᏂᎦᏚ ᏄᎾᏓᏁᏟᏴᏎᎢ. ᎤᏙᎯᏳ ᏥᏁᎵᏍᎪ ᏥᏍᏕᏥ!” ᎠᏎᏃ ᎣᎦᏚᎵᎭ ᎢᏨᏯᏛᎦᏁᏗᏱ ᏄᏍᏛ ᎭᏓᏅᏖᏍᎬᎢ, ᎯᎠᏰᏃ ᎤᎾᏓᏤᎵᏛ ᎤᎾᎵᎪᏒᎢ, ᎣᏥᎦᏔᎭ ᏂᎬᎾᏛ ᎨᏥᏃᎮᏍᎬ ᎨᎦᏡᏗᏍᎬᎢ. ᎠᎴ ᎤᏂᏣᏖ ᎠᏁᎮ ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᎢᏏᎵᏱ ᎾᎯᏳ ᎢᎳᏏᏯ ᎠᏙᎴᎰᏍᎩ ᏤᎮᎢ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏯᏥᏅᎦᎸᎡ, ᏁᎹᏂ ᏏᎵᏱ ᎡᎯ ᎤᏩᏒ. ᎿᏉᏃ ᏌᏱᎳ ᎠᎴ ᏗᎹᏗ ᎤᏂᎷᏨ, ᎹᏏᏙᏂ ᏧᏂᎶᏒ,. ᏉᎳ ᎤᏓᏅᏛ ᎤᏱᎸᏒᎩ, ᎠᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ ᎠᏂᏧᏏ ᏥᏌ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ. ᎢᏳᏒᏰᏃ ᎢᏥᎦᏔᎭ ᎢᏣᏛᏁᏗᏱ ᏍᎩᏍᏓᏩᏛᏍᏗᏱ; ᎥᏝᏰᏃ ᎤᏣᏘᏂ ᏱᏃᏣᏛᏁᎵᏙᎮ ᎢᏨᏰᎳᏗᏙᎲᎢ; “ᏐᏉ ᎢᎦ ᎤᏐᏱᏉ ᏄᏓᎴᎯ;” ᎤᎵᏰᏔᏁ. “ᎮᎾ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ, ᏧᏍᏆᏴᏍᏗ. ᏧᏓᏏᏃ ᏥᎻ ᏗᎾᏓᏅᏟ, ᎠᎴ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᎾᏍᎩ ᎠᏓᎶᎸᎮᏍᎩ ᏥᏄᎵᏍᏔᏁᎢ. ᎾᏂᎥᏃ ᎩᎶ ᎯᎠ ᏥᏂᏥᏪᎠ ᎠᎾᏛᎩᏍᎨᏍᏗ, ᎾᏍᎩᏃ ᎾᎾᏛᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎤᏁᎫ ᎠᏍᎦᏯ ᏗᎨᎦᏟᎶᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏃᏳᎯ ᏧᏁᏍᎨᎮᎢ. ᎠᎵᏍᏛᏂᎲᏃ ᏕᎦᏃᏴᎵᏍᏗᎭ ᏚᏯᏢ ᏧᏯᎸᏂ “ᏱᎪᎯᎳ ᏴᎾ ᎦᏲᏟᎨ ᏯᎵᏍᏔᏴᎲᏍᎦ,” ᎤᏬᏎᎴ. ᏂᏓᏳᏓᎴᏅᏓ ᎠᏂᏣᎳᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏙᎲ, ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏓᏆᎭᏁᏬᎥ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᏗᎨᎦᏛᏅᎯ ᎦᎬᏩᏐᏢᏕᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎢᏳᏃ ᏂᎯ ᎩᎶᏁᏛ ᎨᏎᏍᏗ, ᎭᎵᏍᏕᎸ ᏨᏒ ᎠᎴ ᎠᏴ ᏍᎩᏂᏍᏕᎸ ᎤᎩᏨᏓ ᏑᎾᎴ, ᎤᏗᏛᎮ ᏫᎵᎻ ᏃᎴ ᏓᏏᎳᏛ ᎭᏫᏂᏣ ᎤᎴᏁ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎨᏣᎪᏩᏛᏗ ᏫᏂᎦᎵᏍᏓ; ᏦᎯᏳᏒ ᏣᏍᏕᎸ. ᏥᎪᎨ ᎠᏴ Ꮀ ᎤᎬᏫᏳᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏥᏂᎦᏪᎭ? ᎥᏝ ᏳᏜᏏᏛᎭ ᎠᏴᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎾᏍᎩ ᏥᏂᎬᏅ ᏥᎪᏪᎳ; ᎩᎶᏰᏃ ᎦᏓᎷᎩᏍᎩ ᎾᏍᎩ ᎤᏚᎩ ᏳᏩᎭ ᎦᏓᎷᎩᏍᎬᎢ; ᎠᎴ ᎩᎶ ᎤᏚᎩ ᎤᏩᎯ ᎠᎦᏔᏙᎥᏗᏍᎩ ᎾᏍᎩ ᏳᏪᎳᏗᏍᏗᎭ ᎾᏍᎩ ᎤᏚᎩ ᎤᏩᏒᎢ ᎠᏒᏛᏓ ᏗᏥᏯ ᏭᎶᏎ ᏩᎭᏯ ᏃᎴ ᏭᎳᏏᏁ. ᎦᏍᎩᎸᏃ ᎤᏬᎵ, ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎢᏤ ᏂᎬᏁᎭ. ᎠᎴ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎰᏪᎸᎦ; ᎯᎠᏰᏃ ᎾᏍᎩ ᎧᏃᎮᏛ ᎬᏜᏏᏛᎡᏗ ᏂᎨᏒᎾ ᎠᎴ ᎤᏙᎯᏳᎯᏯ. ᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏅᎩ, ᏢᏓᏥ ᎤᏃᏕᏅ ᏣᏴᎪ ᎾᏍᎩᏯᎢ; ᎾᏍᎩᏃ ᎤᏪᎷᏅ, ᎦᎵᏉᎩ ᎠᏂᏴᏓᏆᎶᏍᎩ ᎤᏂᏴᏓᏆᎶᎥᎩ. ᏝᏍᎪ ᏯᏂᏐᏢᎢᏍᏗᏍᎪ ᎦᎸᏉᏗᏳ ᏕᎤᏙᎥ ᎾᏍᎩ ᏂᎯ ᏤᏦᏍᏔᏅᎯ ᏥᎩ? ᎤᏓᎴᏨ ᏄᎵᏍᏔᏁᎮ ᎦᏅᎪᎢ ᏃᎴ ᏓᎭᏬᎢᎮ. ᏚᎧᎿᏅᏃ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏗᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏅᏯ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎵᏍᏔᏅ? ᏍᎩᎾᎾ ᎢᏳᎾᏛᏁᎸ ᎠᏂᏍᎦᏯ, ᏴᏫ ᎤᏂᏃᎮᎸ ᎨᏎ ᎾᎥᏂ ᎤᏂᎸ ᏲᎾ. ᎠᏴᏰᏃ ᎢᎩᏣᏘ ᏥᎩ, ᏌᏉᏉ ᎦᏚ, ᎠᎴ ᏌᏉᏉ ᎠᏰᎸᎢ; ᏂᏗᎥᏰᏃ ᎢᎦᏖᏆᎶᏐ ᎾᏍᎩ ᏌᏉ ᎦᏚ ᎢᏓᎵᏍᏓᏴᏗᏍᎬᎢ. ᎠᏂᏣᎳᎩ ᏥᏳᎧᏗ ᎦᏃᎮᏍᎦ ᎭᏃᏎᎰᎢ ᎯᎠ ᏥᎩᎵᎵ. ᏐᏉ ᎠᎦᎵᏍᎩ ᏑᎾᎴᎢ, ᎤᎵᏍᏔᏴᏃᎾ, ᎦᏙᎨ ᏫᎵᎻ ᎤᎧᏙᏍᏕᎢ ᎤᎸᏉᏗ ᏧᏪᏥ ᏗᎦᏅᏙᏗ. ᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏥᏪᏎᎸᎩ; ᎠᏂᎶᎻ ᎥᏝ ᎾᏍᎩ ᏱᏄᏅᏅ, ᎾᏍᎩ ᏧᏂᏲᎯᏍᏗᏱ ᎩᎶ ᎤᏲᎱᎯᏍᏗᏱ, ᎬᏂ ᎠᎫᎢᏍᏗᏍᎩ ᎩᎶ ᎤᏲᎱᎯᏍᏗᏱ, ᎬᏂ ᎠᎫᎢᏍᏗᏍᎩ ᎬᏭᎯᏍᏗᏍᎩ ᏚᎾᎧᏛ ᏧᎪᎲᎯ ᏥᎨᏐ ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎨᏐ ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬ ᎤᏁᎢᏍᏗᏱ ᎤᏃᎮᏗᏱ ᎤᏍᎦᏅᏨ ᎠᎫᎢᏍᏗᏍᎬ ᎤᎬᏩᎵ. ᎣᏏᏉ ᎨᏎᏍᏗ ᎤᏍᏗ ᎠᏣᏗ, ᎭᏓᏬᏣ, ᎭᏓᏬᏣ. ᎯᎠᏃ ᎾᏍᎩ ᏅᏲᎯ ᏣᏫᏎᎢ; ᎾᏍᎩ ᏣᏛᎩᏍᎪ ᎧᏃᎮᏛ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎤᎵᎮᎵᏨᎯ ᏥᏓᏓᏂᎸᎪᎢ; ᎧᏁᎬᏃ ᎠᏆᏛᎦᏅᎯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏔᎵᏁ ᎠᎩᏁᏤᎸᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎮᎾ, ᎠᎴ ᏫᎾᎩ ᎤᏍᏗ ᎪᏪᎵ ᎠᏍᏚᎢᏛ ᏧᏒᎦᎸ ᏗᎧᎿᏩᏗᏙᎯ ᏥᎦᏙᎦ ᏥᏚᎳᏍᎦ ᎠᎺᏉᎯ ᎠᎴ ᎦᏙᎯ. ᎢᏦᎯᏳᎯᏍᏛ ᎨᏎᏍᏗ, ᏞᏍᏗ ᎢᎸᎯᏳ ᏥᏂᏣᏍᏛ ᏥᏣᏚᎸᏅᎥᏍᎬ ᎾᎯᏳ ᏂᏥᎦᏔᎿᎥᎾ ᏥᎨᏒᎩ; ᎠᏴ ᏭᏓᎪᎾᏛᏛ ᎠᏆᏍᏗᎧᏂ ᏥᎩ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎨᏒ, ᎯᎠ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎥᎩᏁᎸ, ᎾᏍᎩ ᎤᎬᏩᎸᎩ ᎠᏆᎵᏥᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲ ᎬᎪᎵᏰᏗ ᏂᎨᏒᎾ ᎤᏪᎿᎢᏳ ᎨᏒ ᎦᎶᏁᏛ; ᏂᎠ ᎤᏁᎩᎸᏗ-ᎠᎦᏴᎵ ᏧᎸᏆᏕ ᎤᎧᎯᏓ ᏃᎴ ᎤᎦᏒᏍᏗ. ᎠᎴ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᏂᎦᎥ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎤᎾᏖᏆᎶᏒ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᏚᏂᏖᏆᎶᏒ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎤᏁᎳᏅᎯ ᎤᏂᎨᏳᎯ, ᎾᏍᎩ Ꮎ ᎨᏥᏯᏅᏛ ᏥᎩ ᎾᏍᎩᏯ ᎤᏓᏅᏖᎸᎢ. ᎠᏆᎴᏅᎲᏃ ᎠᎩᏬᏂᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎡᎳᏗ ᏄᏛᏁᎸᎩ, ᎤᏂᎷᏤᎩ, ᎾᏍᎩᏯ ᎠᏴ ᏥᎩᎷᏤᎸ ᏗᏓᎴᏂᏍᎬᎢ. ᎠᎾᏓᏙᎵᏍᏓᏁᎲᏃ ᎤᎬᏫᏳᎯ ᎠᎴ ᎠᎹᏟ ᎠᏅᏍᎬᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎯᎠ ᏄᏪᏎᎢ; ᏗᏍᎩᏯᏓᏓᎴᏓᏏ ᏆᏂᏆ ᎠᎴ ᏐᎳ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎦᏥᏯᏑᏰᏒ ᎤᎬᏩᎵ. ᎤᎵᏰᏗᏍᎨᎢ, ᎤᏍᎦᏃᎵ ᎠᎩᏠᏫᏍᎬ ᎠᏦᏴᎢ. ᎠᎴ ᏅᏙ ᎤᎵᏏᎲᏎᎢ, ᎠᎴ ᎠᏄᏬ ᎠᏰᏙᎳᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏰᎵ ᏚᎵᏍᏡᏰᎢ. ᎩᎳᏈᏴ ᏭᎴᏅᎮ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎹᏗ, ᎹᏗ, ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏣᎦᏌᏯᏍᏛ ᏤᎵᎯᏍᏗᎭ ᎠᎴ ᏣᏕᏯᏙᏗᎭ; ᏍᎩᏴ ᎢᎦ ᏒᎮᏱᏣ, ᏩᎦ ᎤᏅᏗ ᏚᏁᎩᎡᎾ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏒᎯ ᏚᏅᎦᎳᎮᎾ ᎰᎻ, ᎠᏓᏅᏖᏍᎨ ᏄᏍᏆᏂᎩᏛ ᏏᏆ ᎤᎾᏌᎥ. “Ꮳ ᏄᏍᏗᎩᎨᎢ. ᏔᏕᏲᎲᏍᎩ, ᎼᏏ ᎣᎪᏪᎳᏁᎸᎩ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎠᎾᎵᏅᏟ ᎩᎶ ᎠᏲᎱᏍᎨᏍᏗ, ᎠᎴ ᎤᏓᎵᎢ ᎢᎦᎧᎯᏯᏍᎨᏍᏗ, ᏧᏪᏥᏃ ᏂᏗᎦᎧᎯᏯᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᎠᎾᎵᏅᏟ ᎠᏯᏂᏍᎨᏍᏗ ᎤᏓᎵᎢ, ᎠᎴ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᏧᏪᏥ ᏓᏛᎯᏍᏓᏁᎮᏍᏗ. ᏗᎧᏁᎢᏍᏗ ᏕᎪᏪᎸ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎬᏂᎨᏒ ᏂᎬᏁ ᎤᏍᏆᏂᎩᏗ ᎤᎷᎯᏍᏗ. ᏐᎢᏍᎩᏂ ᏧᏁᏨ ᎤᎬᏍᎪᎸᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᏱᎾᏰᏍᎦ ᎤᏠᏱᏉ ᏕᏣᏚᎪᏓᏁᎸ ᏥᎩ? ᏑᎾᎴᎩ ᎠᏎ ᏔᏓᏒᏂ. ᎾᏂᎥᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎤᎾᏓᏡᎨᎢ, ᎠᎴ ᎠᏰᎵᏉ ᏄᏅᏁ ᏂᎦᎥ ᏧᎬᏩᎶᏗ ᎤᏂᎲᎢ; ᎠᏓᎨᏳᎲᏍᎩ. ᎦᏙ ᎤᏩᏌ ᏫᏓᎧᏁ ᏧᎳᏏᏕᏅ ᎠᏰᎵ, ᏱᏚᎾᏓᎧᎾᏅ ᎠᏥᎭᏲᎯ ᏃᎴ ᎠᏓᎭᏲᎯ ᏓᎾᏓᏙᎵᎪ. ᎾᏍᎩ ᎾᏍᏉ ᎪᎩᎸᏉᏗᏍᎬᎢ ᎤᏣᏛᎩ ᎪᎩᏁᎸᏅᎩ; ᎢᎣᎦᏂᎩᏒᏃ ᎪᎦᎵᏁᏌᎳᏁᎸᎩ ᏧᏓᎴᎳᏅᏛ ᎣᎦᎵᏍᏕᎸᏙᏗ. “ᏩᎶᏏ ᎾᏂᏪᏍᎬ ᎦᏛᎦᎦ,” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ ᏐᏉ ᎤᏓᏏᏂᏕᎾ. ᎢᏣᎢᏒᏃ ᎢᏣᎵᏥᏙᎲᏍᎨᏍᏗ, ᎯᎠ ᏂᏥᏪᏍᎨᏍᏗ; ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ. ᏍᏕᏯᏓ ᎦᏓᎥ ᏭᎩᎶᏫᏎ, ᎧᏅᏑᎸ ᎠᏔᎴᎦᏒ ᏭᏕᎵᏤ. ᏃᏗ ᎤᏩᏥᎬᎸᎮ ᎢᎦᏪᏍᏗ. ᎣᏏᏉᏍᎪ ᏣᏓᏅᏔ?” ᏔᎵᏁ ᎱᏰᏣ ᏫᎵᎻ, ᎤᏛᎦᏁ ᏌᏌ ᎠᎦᏔᎲᏍᎬ ᎤᏁᏍᎩᎸ ᏃᎴ ᎡᏝᏪᎯ ᎤᏰᏥᏍᎬ. ᎦᏲᏟᏉ ᎬᎾ ᎠᎴ ᏇᎯ ᎠᎴ ᏗᏂᏃᎩᏍᎩ ᏥᏍᏆ ᎤᎾᏓᏂᏴ ᎠᏙᎯ. ᎦᎸᎳᏗ ᎢᎦᏘ ᏳᏂᏗᏍᎩᏌᏅ ᏗᏒᏆᎶᏍᏗ, ᏰᎵ ᎢᎦ ᏧᎾᏁᏍᎨᏗ ᏧᎾᏁᎳᏗᏍᏗ, ᎦᏅᎯᏛ ᎠᎾᏍᎪᏍᎬ, ᏫᏓᏂᎳᏗᏍᎬ ᏃᏥ ᏗᏒᏆᎶᏍᏗ, ᎠᏂᏦᏯᏍᎬ, ᏗᎦᏁᎦᎸᏓ ᏱᎨᏒᎾ ᏗᏒᏆᎶᏍᏗ, ᏗᎪᏪᎶᏗ ᎢᏗᎪᏍᏔᏱ ᎡᎳᏗ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎦᎵᏦᏕ ᎤᏪᎸ ᎠᏂᏂ, ᎠᎴ ᎬᏩᏄᏬᎯᏍᏗᏍᎩ, ᎤᏂᎪᎲ ᎺᎵ ᎤᎵᏍᏗᏳ ᏚᎴᏅ ᎠᎴ ᎤᏄᎪᏨ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏗᎦᏂᏌᎲ ᏩᎦᏘ ᎾᎿ ᏮᏛᏍᎪᏂᎵ. ᎤᏕᏯᏔᏁᎮ ᎦᏬᏂᏍᎬ ᎬᏗ ᎤᏲᏍᏙᏗ ᎤᏬᏚ ᎡᏝᏪᎯ ᎨᏒ ᎧᎸᎬᎢ. ᎠᏎᏃ ᏍᎩᏉ ᎤᏩᏌ ᎠᎧᏔᎮᎢ ᎤᏩᏛᏗ ᎠᏤ ᎤᎾᎵᎢ, ᎯᎸᎯᏨ ᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ. ᏰᎵᏉ ᏦᎢ ᎢᏳᏩᎬᏗ ᏤᏠᎰ ᎰᎻ. ᎨᏍᏗ ᎤᏙᎯᏳ ᏱᏥᎦᏔ ᎾᏛᏁᎲ ᏫᎵᎻ ᎤᏔᎷᎩᏍᎩ ᏱᎩ, ᎠᏎᏃ ᎤᏍᏆᏂᎩᏗ.” ᎩᎶ ᏩᎾᎦᎳ ᎨᏎᏍᏗ ᎤᏬᎯᏳᏒᎢ ᏕᏣᏓᏂᎸᎨᏍᏗ, ᎥᏝ ᎠᏗᎾ ᏗᏧᎪᏙᏗᏱᏉ ᏄᏍᏛ ᎠᏓᏅᏕᏍᎬᎢ. ᏧᎦᏃᏮ ᎢᏣ ᏚᏅᏓᏒ ᏨᏍᎩᏃ ᎢᏳᏍᏗ, ᎤᏲᎢᏴ, ᎠᏍᏔᏴ ᎦᏅᎪᎢᏍᏗ ᏚᏑᎬ, ᎤᎾᎴᎭᏃᎰ ᎠᏂᏍᎦᏯ ᏱᏭᏂᏴᎳ, ᎭᎾᏉ ᏫᏓᏂᏲᎰᏍᎪ. ᎪᎯᏰᏃ ᏒᏃᏱ ᏥᎨᏒᎩ ᎤᎶᏗᏢ ᎠᏆᎴᏁᎸ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏴ ᎠᎩᎾᏝᎢ ᏥᎩ ᎠᎴ ᎾᏍᎩ ᏥᏕᏥᎦᎿᏩᏕᎦ, “ᎤᏙᎯᏳ ᎤᏒᎯ!” ᏄᏪᏎᎢ ᎤᏎᎦᎳᎯ. ᎾᏍᏉᏃ ᎾᏍᎩ ᏛᏂᏁᏥ, ᎯᎠ ᏅᏓᎬᏩᏪᏎᎵ, ᏣᎬᏫᏳᎯ, ᎢᎳᎩᏳ ᎢᏨᎪᎡ ᏣᏲᏏᏍᎨᎢ, ᎠᎴ ᏣᏔᏕᎩᏍᎨᎢ, ᎠᎴ ᏁᏣᎦᏔᎲᎾ ᎨᏎᎢ, ᎠᎴ ᏣᏰᎸᎭ ᎨᏎᎢ, ᎠᎴ ᏣᏢᎨᎢ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎡᏣᏍᏚᎮᎢ, ᏂᏨᏍᏕᎸᎲᎾᏃ ᎨᏎᎢ? ᎩᎳᏈᏴ ᎤᏓᏅᏖᎴᎢ - “ᏭᏩᏅᏓᏕᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏃᎴ ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ ᎤᎾᏕᏗ ᎪᎨᏱ. ”ᎠᏯᏍᎪᏃ ᏱᏥᎦᏔ?” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ. ᎠᎴ ᎯᎦᏔᎭ ᏣᏍᏗ ᎨᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏕᎯᎦᏔᎲ ᏗᎦᎸᏉᏗ ᎪᏪᎵ, ᎾᏍᎩ ᏰᎵ ᎯᎦᏔᎿᎢᏳ ᎢᎬᏩᏁᏗ, ᏣᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏫᎬᏩᎵᏱᎶᎯᏍᏗ, ᎦᎶᏁᏛ ᏥᏌ ᎯᏲᎢᏳᏒ ᎢᏳᏩᏂᏐᏗ. ”ᏤᏍᏗ ᏱᏨᏅᎨᏍᏗ ᏃᎴ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ!” ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎢᎬᏩᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏩᎾᎦᎳᎯᏳ ᎨᏒ ᎤᏪᏓᎵ ᎢᏳᏩᏂᏌᏛ, - ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᎤᏪᏥ ᏧᏅᏎ ᎾᏍᎩᏯ ᏗᏟᎶᏍᏔᏅᎯ ᎠᏍᎦᎾ ᎤᏇᏓᎵ, ᎠᎴ ᎠᏍᎦᏂ ᏧᎬᏩᎴᎢ, ᏚᏭᎦᏓᏁᎴ ᎤᏎᎪᎩᏎ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏇᏓᎸ ᎠᏯᎥᎢ; ᎾᏍᎩ ᎣᎩᎦᎵᏍᏓᏗᏍᎩ ᏥᎩ ᏂᎦᎥ ᎫᏓᎴᏅᏛ ᎣᏥᎩᎵᏲᎬᎢ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏰᎵ ᏗᎦᏲᏥᎵᏍᏓᏗᏍᏗ ᎠᏂᎩᎵᏲᎩ, ᎦᏲᎬᏙᏗ ᎾᏍᎩ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ ᎣᎬᏒ ᎣᎩᎦᎵᏍᏓᏗᏍᏗᏍᎬ ᎤᏁᎳᏅᎯ. ᎠᏓᏯ ᏧᏩᏌ ᏚᏟᏂᎬᏁᎴ ᎤᏴᏨ, ᎦᏲᏟ ᎠᏂᏓᎶᏂᎨ ᏧᏆᎶᎦ ᏕᎦᏂᏤᎬ ᎦᏃᎸᎥᏍᎬ. ᎤᏟᏍᏓ ᏭᏓᏐᎴᎢ ᎡᎶᏗ ᏭᎾᏌᎾᎩᏎ ᏗᎦᏅᏐᏍᏙᏗ. ᎠᏲᎵᏃ ᎠᏛᏍᎨᎢ ᎠᎴ ᎤᏓᏅᏛ ᎠᎵᏂᎪᏍᎨᎢ, ᎤᎧᎵᏨᎯ ᎨᏎ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏚᎧᎿᏩᏗᏙᎮᎢ. ᏥᎦᏔᎭ ᏂᎯ ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ ᎨᏒᎢ; ᎠᏎᏃ ᎢᏣᏚᎵ ᏍᎩᎢᏍᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏁᎬ ᏕᏣᏓᏅᏛ ᏫᎾᏴᎯᎲᎾ ᎨᏒᎢ. ᎿᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᎬᏩᏓᏅᎡᎸᎩ ᎬᏩᎪᎵᏰᏍᎩ; ᎾᏍᏉᏃ ᏄᎬᏫᏴᏒ ᏗᏓᏘᏂᏙᎯ ᎠᏍᎦᎢᎲᎩ, ᎤᏙ-ᎴᎰᏒ ᎠᎶᎻ ᎨᏒᎢ, ᎠᎴ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎤᎸᎸᎢ. ᏞᏍᏗ ᏱᏨᎨᏫᏍᎨᏍᏗ ᏂᏗᏣᏓᎦᏔᎲᎾ ᏗᏥᏍᏆᏂᎪᏙᏗᏱ; ᎩᎶᏰᏃ ᎾᏍᎩ ᎾᎾᏛᏁᎲ ᎦᎸᎳᏗ ᎠᏁᎯ ᎨᏥᏅᏏᏓᏍᏗ ᏧᏂᏍᏆᏂᎪᏔᏅᎯ ᎢᎩ. ᎠᎴ ᎤᏣᏘ ᎤᏍᏗᏰᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏇᏥ ᎠᎨᏳᏣ ᎿᏉ ᎠᏲᎱᏍᎦ; ᎠᏎᏃ ᎢᏁᎾ, ᎯᏯᏏᏔᏛᎭ, ᎾᏍᎩ ᎤᏗᏫᏍᏗᏱ, ᎬᏁᏍᏗᏃ. ᏂᎯ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ ᎢᏤᎾ; ᎥᏝ ᎠᏏ ᎠᏴ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ ᏴᏓᎨᏏ; ᎥᏝᏰᏃ ᎠᏏ ᏯᎩᏍᏆᎸᎡᎸ. ᎡᏉᎯᏳᏰᏃ ᎥᎩᎳᏅᏓᏕᎸ ᎠᎴ ᎤᏣᏘ ᎪᎱᏍᏗ ᎦᎬᏙᏗ, ᎠᎴ ᎤᏂᏣᏔ ᏗᏂᎦᏘᎴᎩ. ᎪᎯᏓ ᏓᏟᏰᎵᏙ ᎤᎪᎰᎯᏍᏗ ᎠᏗᏅᏓ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎮ, ᎯᎠ ᎾᏍᎩ ᎪᎯ ᏣᏁᎭ ᎥᏝ ᏴᏛᏂᎶᏐᏂ ᎬᏂ ᎯᎠ ᎾᏍᎩ ᏂᎦᏗᏳ ᏂᎦᎵᏍᏔᏅᎭ. ᎿᏉᏃ ᎤᏁᏨ ᎤᎵᎮᎵᏨᎯ ᏗᎬᏩᏓᏂᎸᏤᎯ ᏕᎨᎦᏬᎡᎢ, ᎾᎯᏳᏃ ᎢᎦ ᎤᏂᏁᏉᏤ ᏦᎢ ᎢᏯᎦᏴᎵ ᎢᏴᏛ. ”ᎭᏩ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ, ᏚᏭᏣᏅᎩᏎ ᏚᏏᎳᏛ” ᎾᏃ ᎠᏃᎯᏳᎲᏍᎩ ᏗᎬᏩᏂᎾᏝᎢ ᎨᏒ ᏞᏍᏗ ᏱᏚᏂᏂᏆᏘᎴᏍᏗ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᎾᎵᏅᏟ ᎨᏒᎢ, ᎪᎱᏍᏗᏍᎩᏂ ᏓᎾᏛᏁᎮᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ ᎠᎴ ᎨᏥᎨᏳᎢ ᎨᏒᎢ, ᎤᎾᏠᏯᏍᏗᏍᎩ ᎣᏍᏛ ᎾᎦᏛᏁᎸᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᏕᎭᏕᏲᎲᏍᎨᏍᏗ, ᎠᎴ ᏕᎯᏁᏤᎮᏍᏗ. “ᎯᎠᏛ ᎾᏅᏛᏁᎰ,” ᎤᏛᏁ ᏩᎭᏯ. ”ᏧᏪᏥᎨ?” ᎨᏍᏗ ᎤᏍᏆᏂᎩᏗᏱᎩ ᎤᏛᏅ Crockett. ᎩᎳ ᏫᏓᎦᏒᏅ ᏐᏈᎵ ᏧᏔᎾᎶ ᎨᏛ ᎤᏓᏐᎸ ᏥᏙᎬ ᎠᎩᏠᏫᏍᏗ ᎾᎥ, ᏥᏯᏄᎫᎢᏣᏅ. ᎠᎴ ᏭᏴᎴ ᏤᎦᎳᏯ ᎦᏁᎸᎢ, ᎠᎴ ᎤᏲᎵᎴ ᎵᏏ ᎤᏛᎯᏍᏔᏁ ᎤᏎᎵᏓᏍᏙᏗ ᎦᏰᏌᏛ ᎾᏍᎩᏯ ᏗᎦᏘᏍᏙᏗ ᏃᎴ ᏕᎦᏘᎮ ᏂᎦᏓ ᏓᎾᏦᏍᎬ ᎤᎾᏓᏅᏙᎩ, ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ. Ꮭ ᏳᏂᏲᏎᎴᎢ. ᎯᎠᏃ ᎾᎩᏪᎡᎸᎩ, ᏔᎵᏁ ᏛᎭᏙᎴᎰᏏ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᎠᎴ ᏑᎾᏓᎴᎩ ᎠᏁᎲ ᏴᏫ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒ ᏴᏫ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᎤᏂᎬᏫᏳᎯ. XV. ᏔᎳᏚ ᏌᏌ ᎠᏂᏓ ᎤᎾᏛᎦᏁ ᏃᎴ ᎠᏂᎧᏔᎮᎢ ᎨᏍᏗ ᎠᏂᏓ ᏱᎨᏎᏍᏗ ᎪᎯᏓ, ᏌᎳᏓ ᎤᏛᎦᏁᎢ ᏃᎴ ᎠᎧᏔᎮᎢ ᎨᏍᏗ ᎪᎯᏓ ᏳᏣᏅᏓᏕᎮᎢ. ᏫᎵᎻ ᏃᎴ ᏌᎳᏓ ᎤᎾᎵᎮᎵᏤ ᎤᏂᏛᏔᏅᎢ ᏎᎦ. ᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏣᏘ ᎫᏓᎴᏅᏛ ᎠᎩᏲᏍᏙᏓᏏ ᏫᏨᎷᏤᏗᏱ; ”ᎤᏙᎯᏳᎭ ᎨᏍᏗ ᏍᎩᎾᎾ ᏱᏣᏚᎵ,” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏓᏅᏘ ᏄᏪᏎ. ᎨᏍᏗ ᏍᏗᎧᏓ ᏱᏥᏍᏆᏂᎪᏍᎦ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.” ᎾᏍᎩ ᏅᏩᏓᎴ ᏂᎨᏒᎾ ᏥᎩ; ᎠᏁᎭᏍᎩᏂᏃᏅ ᎨᏣᏕᏯᏙᏗᏍᎩ, ᎠᎴ ᎤᏂᏁᏟᏴᏍᏗᏱ ᎤᎾᏚᎵᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏅ, ᎤᏂᎷᏤ ᎠᎴ ᎤᏂᏁᏎ ᎠᏰᎸᎢ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏂᏅᏁᎢ. ᏙᎩᏂᏥᏍᏔᏅ ᎠᏗᏔᏍᏗ, ᏙᎩᎾᏗᏔᎲ ᎪᎰᏍᏗ ᏲᏍᏔᏗᏍᎬᎾ, ᎨᏍᏗ ᏲᎩᏃᎯᏳᎮ ᏱᏙᏍᏔᏓᏲᏍᏔᏁᎲᎾ ᎨᏒ. ᏦᎢᏃ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᏂᎦᏛᏃ ᎦᎸᎳᏗ ᏔᎵᏁ ᏭᎵᏌᎳᏓᏅᎩ. ”ᎯᎦᏔᎮᎢᏧ ᎦᏳᎳ ᎤᎾᏕᏅ ᎡᏚᏧ ᎰᎻ ᏧᏤᎵ ᏌᏌ ᎠᏂᏓ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎾᏍᎩ ᎯᎠ ᎢᎬᏱ ᏄᏁᏅᏒᎩ ᏠᎠᏏ ᏓᎪᎩᏚᏘᏴᎩ. ᏗᎩᎷᏫᏍᏔᏁᏗ. ᏫᎫᏩᎪᏩᏛᏗ ᏱᎨᏒᎾ ᏍᎪᏁ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᏓᎴᎲᏍᎬ ᏅᏲ. ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ ᏥᎩ ᏄᏍᏛ ᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᎬᏱ ᎤᏕᏅᎯ ᏥᎩ ᏂᎦᏗᏳ ᎨᎦᏁᎳᏅᎯ ᎠᏁᎲᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᎵᎥᏂᎸᎭ ᏓᏥᏯᎧᏂ. ᏫᏓᏙᎴᏈᏙᎲ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏥᏍᏚᎲᏍᎨ ᏫᎵᎻ. ᎤᎾᏙᎴᎰᏒᏃ ᏈᏓ ᎠᎴ ᏣᏂ ᎾᏂᏯᎦᎢᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏅᏖᎸ ᎪᏪᎵ ᏂᏓᏂᏏᎾᏒᎾ ᎠᎴ ᎾᏂᎦᏔᎿᎥᎾ ᎨᏒᎢ, ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᏚᏃᎵᏤ ᎾᏍᎩ ᏥᏌ ᎤᏁᏙᎸᎯ ᎨᏒᎢ. ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᎯᏫᏅ ᏥᎨᏒᎩ ᏨᏒ ᎭᏓᏠᎯᎲᎩ, ᎠᎴ ᏣᏚᎵᏍᎬ ᎮᏙᎲᎩ; ᏣᏛᏐᏅᎯᏍᎩᏂ ᎨᏎᏍᏗ ᏙᏔᏐᎸᏔᏂ, ᏅᏩᏓᎴᏃ ᏓᏣᏠᎵ, ᎠᎴ ᏂᏣᏚᎵᏍᎬᎾ ᎨᏒ ᏮᏓᏣᏘᏅᏍᏔᏂ. ᏙᎢᏳᏍᏗ ᎭᏗ, ᎪᎱᏍᏗ ᏧᎵᎬᏩᏟ ᏱᎨᏒᎾ?” ᎤᏛᏁ ᏫᎵᎻ. ᎿᏉᏃ ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᎦ ᏚᎵᏍᏆᏗᏗᏒᎩ, ᎠᏂᏧᏏ ᎡᏏᏱ ᏅᏓᏳᏂᎶᏒᎯ ᎬᏩᎪᎲ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏚᏂᏖᎸᏅᎩ ᏂᎦᏛ ᏴᏫ, ᎠᎴ ᎬᏩᏂᏴᎲᎩ, ᏭᏂᎷᏨᏃ ᎪᎵᎦᏓ ᏚᏙᎥᎢ, ᎾᏍᎩ ᎤᏍᏆᎷᎪᎢ ᏥᎦᏛᎦ, ᎾᎿ ᏥᏕᏲᎧᏅ ᎣᏍᏛ ᎧᏃᎮᏛ ᎣᎦᏤᎵ ᏥᏥᏯᏅᏔᏅ, ᎢᏥᏩᏛᏗᏱ ᎦᎸᏉᏗᏳ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ. ᏄᏓᎴ ᎤᏃᎯᏳᎲ ᏧᏤᎵ ᏴᏫ ᎤᏂᎷᏨ, ᎨᏍᏗ ᎠᏕᎳ ᏧᏅᏫᏍᏘᏍᎩ ᏱᎩ ᏃᏈᏏ ᏥᏕᎦᎶᏍᎪ ᎤᏒᎯ ᎦᎸᎶᎢ. ᎤᏂᏴᎸᏃ, ᎤᎾᎩᎳᏫᏎ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᏭᏂᏴᎴᎢ, ᎾᎿᏃ ᎠᏂᏁ ᏈᏓ ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ ᎠᎴ ᎡᏂᏗ, ᏈᎵᎩᏃ ᎠᎡ ᏓᎻ, ᏆᏓᎳᎻ ᎠᎴ ᎹᏚ, ᏥᎻᏃ ᎡᎵᏈ ᎤᏪᏥ ᎠᎴ ᏌᏩᏂ ᎠᏏᎶᏗ, ᏧᏓᏏᏃ ᏥᎻ ᏗᎾᏓᏅᏟ. ᎾᏍᎩ ᎯᎠ ᏂᏚᏪᏎᎸ, ᎠᏏᏉ ᎤᏪᏙᎸᎩ ᎨᎵᎵ. ᎠᏥᏅᎪᏫᏎ ᎠᏦᎭᏴ, ᎤᎾᏂᎩᏍᏗ ᎢᎪᎯᏛ. ᎭᏫᏂᏣ ᏱᏥᏯᎠ, ᏙᏱᏨ ᎤᏩᏌ ᎬᏇᏅᏍᏗ.” ᎠᏎᏃ ᎤᏂᎷᏤ ᎠᏂᏧᏏ ᎥᏘᎣᎩ ᎠᎴ ᎢᎪᏂᏯ ᏅᏓᏳᏂᎶᏒᎯ, ᎾᏍᎩ ᏚᏂᏔᏲᏎᎴ ᎤᏂᏣᏘ, ᏉᎳᏃ ᏅᏯ ᏕᎬᏩᏂᏍᏔᏅ ᎬᏩᎾᏌᎾᏫᏛᎮ ᎦᏚᎲ ᎬᏩᏄᎯᏎᎢ, ᎤᏲᎱᏒ ᎠᏁᎵᏍᎨᎢ. ᎠᎴ ᎠᏂ ᏴᏫ ᏗᏂᏲᎱᏍᎩ ᏥᎩ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎢᎨᏥᏁᎰᎢ; ᎾᎿ ᏍᎩᏂ ᎤᎩᏎᎢ ᎾᏍᎩ Ꮎ ᎡᎭ ᎠᎪᏎᎸᎯ ᏥᎩ. ᎨᏍᏗ ᏱᎦᎷᎨ Ꮟ ᏲᎾ ᎤᏤᏍᏙ. “ᏧᏪᏥ ᏗᏗ. ᎢᎬᏪᏅᏓᏉ ᎣᏂ ᎾᏍᎩ ᎾᎯᏳ ᎠᎩᎵᏯ ᎦᎶᏐᏅᎭ, ᏅᏙ ᎢᎦ ᎡᎯ ᏛᎵᏏᎲᏏ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎥᏝᎢᎦ ᏳᏘᏍᏕᏍᏗ, ᎠᎴ ᏃᏈᏏ ᏛᏂᏅᎪᎠᏏ, ᎠᎴ ᎤᏂᏣᏘ ᎦᎸᎶᎢ ᏣᏂᎧᎳ ᏛᎾᎵᏖᎸᏂ. ”ᎠᏎᏃ ᎦᏲᏟ ᎦᏓᏂᎳᏗᏍᎪ. ᎠᏁᎸᏙᏗᏉ ᎠᎴᏂᏓᏍᏗ, ᎢᏧᎴᎭ ᎢᎬᏁᏗ ᎤᏲ ᎾᎫᎵᏍᏔᏁᎸ, ᏰᎵ ᎪᎯᏓ ᎬᎭᏃᏛ ᎢᎬᏁᏗ ᎠᎫᏩᏅᏛ. ᎠᏂᏐ ᏄᎾᏍᏛ ᏄᎾᏍᏗ, ᎠᏂᎦᏔᎲ ᏗᏂᏰᎸ ᎤᏂᏍᏚᎭ. ᎠᎴ ᏅᏯ ᎠᏓᎿᏍᏆᎶᏍᏗᏍᎩ ᎠᎴ ᏅᏯ ᏗᏓᏙᏕᏍᏗᏍᎩ, ᎾᏍᎩ Ꮎ ᎧᏃᎮᏛ ᏥᏚᏂᎾᏍᏆᎶᏍᏗᎭ, ᎾᏃᎯᏳᎲᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᎾᏍᏉ ᏥᏕᎨᏥᎧᏁᎢ. “ᏰᎵᏉᏗ ᏱᎾᏛᎦ!” ᎤᏛᏁ ᎪᎱᏍᏗ ᎾᏍᎩᏰᏃ ᎤᏲᎱᏒᎯ ᏥᎩ, ᎠᏍᎦᏂ ᎤᎬᏩᎵ ᏌᏉ ᏄᏲᎱᏒᎩ; ᎠᏍᎩᏂ ᎬᏃᏛ ᏥᎩ, ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎬᏃᏛ. ᎨᏍᏗᏗᎩ ᎤᏦᎠᏎᏗ ᏱᏓᏲᎩᎷᏤᎸ ᎭᏂ ᎯᎪ ᎢᎦ ᎠᏆᏛᏅ. ᏫᎵᎻ ᎦᎸᏉᏗᏍᎨ ᏌᎳᏓ ᎤᏓᏅᏖᎵᏓᏍᏗ. ᎠᏂᎦᏘᏯᏃ ᎠᏂᏍᎦᎢᎲ ᏚᏂᎾᏪᎢ, ᎠᎴ ᏧᏂᏲᎱᏒᎯ ᎾᏍᎩᏯ ᏄᎾᎵᏍᏔᏁᎢ. ᎦᏣᏄᎳ ᎤᏗᎦᎴᏲᏤ ᎧᏃᎮᏓ ᏫᎵᎻ ᎤᏓᎵᏓᎩᎡᎸ, ᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎠᏂᎦᏔᎮᎢ. ᏚᏑᎬ ᎭᏫᏂᏣ ᏚᏥᏢᏁ, ᎦᏓᎭ ᏧᏃᏩ ᏗᎦᏅᎦᎶᏙᏗ ᎦᏄᏖᏲᏅ ᎢᏳᏍᏘ ᏄᏍᏕ ᎭᏫᏂ. ᏂᎦᎵᏍᏙᏗᎭ ᏥᏥᏲᎭ ᎪᎯᏳᏗᏍᎩ ᎦᎶᏁᏛ ᎠᎥ ᎠᏋᏗᏍᎬ ᎧᏁᎬᎢ, ᎾᏍᎩ ᎢᏥᎦᏔᎲ ᎥᏝ ᎠᏩᎾᎦᎳ ᏱᎩ, ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎢᎬᏁᎸᎯ ᎢᏤᎲᎢ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᏂᎦᎥ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ, ᎦᎨᏥᏙᎵᏍᏗᏉ ᎨᏎᏍᏗ ᏴᏫ ᏧᏁᏥ, ᎠᎴ ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒ, ᏂᎦᎥ ᎬᏩᏂᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ; ᎯᎠ ᎾᏍᎩ ᏕᎭᏅᏓᏗᏍᏗᏍᎨᏍᏗ, ᎤᎵᏂᎩᏛᏯ ᏕᎯᏁᏤᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲᎢ, ᎤᎾᏗᏒᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᏓᏂᏬᏂᏍᎬᎢ, ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᏥᎩ, ᏓᏂᎦᏔᎲᏍᎬᏉᏍᎩᏂ ᎬᏩᎾᏛᏓᏍᏓᏁᎯ. ᎠᏎᏃ ᏕᎦᎾᏗᏁᎭ ᎠᏓᏴᏍᏔᎩᏍᎩ ᎢᎦᏉ ᎤᎾᏚᎵᏍᎬ ᏃᎴ ᎤᎾᏈᏴᏗ ᎨᏒ, ᎫᎬ ᏫᎦᎷᎩ ᏗᏂᏍᎪᎵ. ᎦᏲᏟ ᎤᏂᏥ ᏚᎵᏍᏚᎸ ᎦᎸᎳᏗᎨᏍᏗ ᏃᏥᏱ ᏚᏅᏓᏒ, ᎤᏍᎪᏍᏓ ᎤᏓᏅᏅ ᎬᏂᎨ ᎤᏍᎪᎸ ᏚᏅᏓᏒ ᏃᎴ ᎤᎵᏏᎩ ᎦᎸᎶᎢ, ᎢᎦ ᎾᎥᏂ ᎢᏴ ᎬᎾᏬᏍᎬ. ᎠᏂᏌᏚᏏᏰᏃ ᎯᎠ ᎾᏂᏪᏎᎪᎢ; ᎥᏝ ᏗᎴᎯᏐᏗ ᏱᎩ, ᎥᏝ ᎠᎴ ᏰᎭ ᏗᎧᎿᏩᏗᏙᎯ ᎠᎴ ᎠᏓᏅᏙ; ᎠᏂᏆᎵᏏᏍᎩᏂ ᎢᏧᎳ ᎠᏃᎯᏳᎲᏍᎦ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; Ꮳ-ᎬᏫᏳᎯ, ᎠᏆᏛᏅᎢᏍᏗ ᎬᏍᏓᏩᏛᏍᏗᏱ ᎾᏍᏉ ᏗᏓᏍᏚᏗᏱ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ. ᏗᏣᎧᏅᎦ ᏥᏍᏆ ᎦᎸᎶᎢ ᎠᏁᎯ, ᏝᏰᏃ ᏯᏂᏫᏍᎪᎢ, ᎠᎴ Ꮭ ᏯᏂᏁᏣᎢᏍᎪᎢ, Ꮭ ᎠᎴ ᏓᏓᏁᎸ ᏯᏂᏟᏏᏍᎪᎢ, ᎠᏎᏃ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᏙᎨᎶᎰᎢ. ᏝᏍᎪ ᏂᎯ ᎤᏟ ᏱᏁᏥᎸᏉᏗ ᎡᏍᎦᏉ ᎾᏍᎩ? ᎥᏝ ᎠᎴ ᏥᎷᏏᎵᎻ ᏱᏩᎩᎶᏎᎢ, ᏱᎦᏥᏩᏛᎲᏎ ᎢᎬᏱ ᎨᏥᏅᏏᏛ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎠᏴ ᎣᏂ; ᎠᎴᏈᏱᏍᎩᏂ ᏩᎩᎶᏒᎩ, ᎠᎴ ᏔᎵᏁ ᏕᎹᏍᎦ ᏛᎠᎩᎷᏨᎩ. ᎠᎾᏟᎯ ᎤᎾᏓᎵᏗᎩᏛ ᎣᏍᏓ ᎤᏰᎸᎰ ᏕᎪᏎᎲ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ, ᎦᏚᏏ ᎤᎾᏗᏍᎦᏟ. ᎠᏁᎯᏃ ᎠᏂᏫᏅ ᏧᏅᎨᏫ ᎾᏍᎩᏯ ᏓᏂᏙᎨᎢ, ᎠᎾᏛᎩᏍᎨ ᎧᏁᎬᎢ, ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏯᏂᎪᏩᏘᏍᎨᎢ. ᎨᏍᏗᎭ ᎤᏍᏆᏂᎩᏗ ᏱᎨᏎ ᏧᏍᏆᏴᏍᏗ ᎠᏟᏃᎮᏙᏗ. ᎤᎧᏖᏃᎴ ᏎᎦ, ᎤᎪᎮᎢ ᎩᎦᎨ ᎠᏣᏗ ᏧᏅᎪᏤᎢ ᏅᏲ ᎭᏫᏂᏣ. ᏚᏘᏅᏎᏃ ᏇᏗᏂᏱ ᎢᏴᏛ; ᏧᏬᏰᏂᏃ ᏚᏌᎳᏓᏅ ᎣᏍᏛ ᏚᏁᏤᎴᎢ. ᎿᏉᏃ ᏓᎦᏘᏃᎮᎸᎩ ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎾᏍᎩ ᏧᏏᏔᏗᏍᏗᏱ ᎠᎴ ᎤᏓᏙᎵᏍᏙᏗᏱ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᏅᏍᏓᏕᎸᎩ. ᎠᏎᏃ ᎯᎦᎷᎬᏉ ᎢᎦ ᏒᎮᏱᏣ, ᎠᏯᎩᏍᎨ. ᎢᏣᏉ ᎡᏙᎲ ᎠᏍᏓᏩᏗᏙᎮ. ᎢᎦ ᏧᎦᏃᏩ ᏂᏕᎦᎵᏍᏗᏍᎪ. ᏧᏂᏢᎩ ᏕᏥᏅᏫᏍᎨᏍᏗ, ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏕᏥᏅᎦᎵᏍᎨᏍᏗ, ᏧᏂᏲᎱᏒᎯ ᏕᏣᎴᏗᏍᎨᏍᏗ, ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎨᏍᏗ. ᎠᏎᏉ ᎡᏥᏁᎸᎯ, ᎠᏎᏉ ᎢᏣᏓᏁᎮᏍᏗ. “ᏓᏣᏓᏅᏖᏔᏂᏗ ᎪᎳ ᎦᎷᏨ,” ᎤᏛᏁ ᎤᏃᏕᎾ. ᎠᏎᏃ ᎡᎵᏑ ᎠᏙᏂᏍᎩ, ᎾᏍᎩᏰᏃ ᏄᏍᏗ ᏕᏅᏙᎥ ᎠᏁᏢᏔᏅᎯ, ᎤᏂᎭᎷᎩᏍᎨᎢ, ᎤᏚᎵᏍᎨ ᎠᏥᎦᏘᏗᏍᏗ ᎤᎦᏔᎲᎡᏗᏱ ᎤᏬᎯᏳᏒᎢ. ᎡᏍᎦ ᎤᏰᎸᎲ ᎡᏘᏴ ᏤᎩᏏᏂ ᎤᏍᏕᎸᎲ ᎠᏂᎫᏌᏩᎩ ᏚᎾᏟᎸ. ᎺᎵᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏉ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ; ᏱᎱᏩ ᎾᏍᎩᏯ ᏂᏣᏪᏒ ᏫᎾᏆᎵᏍᏓᏏ. ᏗᎧᎿᏣᏗᏙᎯᏃ ᎤᏓᏅᎡᎴᎢ. ᏰᎵ ᎢᏯᏂ ᏧᎾᏓᎴᏅᏓ ᎠᏣᏗ ᏕᏥᎪᏩᏔ ᏗᎦᏓᏬᎢᎡ, ᏃᏗ ᎭᏇᏅᏍᏗ ᎤᏍᏆᎸ, ᎨᏉᎢ ᎯᎠ ᎦᏁᎲ ᎠᎹ. ᎠᎬᏱᏣ ᎤᏅᏤ Philadelphia, ᎠᏲᎰᏍᎨ ᎫᎭᏢ ᎤᎴᏫᏍᏘᏍᎨ ᏃᎴ ᎠᏟᏂᎬᏍᎨ ᎦᏙ ᎤᏂᏴᏗ. ᎯᏍᎩᏉ ᏧᏕᏘᏴᏓ ᎬᎭᏃᏓ ᎨᏎ. ᎾᏍᎩ ᎠᏂᎪᏩᏗᏍᎬ ᎤᏂᎪᏩᏛᏗᏱ, ᎠᎴ ᎬᏩᎾᏙᎴᎰᎯᏍᏗ ᏂᎨᏒᎾᎢᏳᎵᏍᏙᏗᏱ; ᎠᎴ ᎠᎾᏛᎩᏍᎬ ᎤᎾᏛᎪᏗᏱ, ᎠᎴ ᎬᏩᏃᎵᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᏧᎾᏓᏁᏟᏴᎡᏗᏱ ᏂᎨᏒᎾ ᏚᎾᏓᏅᏛ, ᎠᎴ ᎤᏂᏍᎦᏅᏨ ᎦᎨᏥᏁᏗᏱ ᏂᎨᏒᎾ. ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎠᏂᏍᎦᏯ, ᏙᏰ ᎡᎯ ᎤᏂᎸᏉᏗ, Boudinot ᏃᎴ ᎠᏫᎾ Ridge ᏚᏃᏪᎳᏁ ᏧᏓᎴᏅᏓ ᏓᏂᎪᏩᏘᏍᎬ ᎢᎾᎨ ᎡᎯ ᏃᎴ ᎢᎾᎨ ᎠᏕᎲᏍᎩ. ᏎᎦᏃ ᎡᏝᏪᎯ ᎨᏎᎢ. ᏗᏂᎧᎿᏩᏗᏙᎯᏍᎩᏂ ᎤᏟ ᎢᏧᎾᎵᏂᎩᏛ ᏥᎩ ᎥᏝ ᎪᎱᏍᏗ ᎤᏐᏅ ᏱᏓᏂᎳᏫᏎᎰ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲᎢ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎢᎬᏱ ᏗᎪᎵᏰᎥᎯ ᎨᏎᏍᏗ, ᎩᎳ ᏚᏂᎸᏫᏍᏓᏁᎮᏍᏗ ᎠᏂᏯᏙᎯᎲ ᎪᎱᏍᏗ ᎦᎨᎫᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ. ᏫᎵᎻ ᎦᏅᏍᎨᏂ ᏚᏭᎪᏔᏁᎢ ᎩᏟ. ᏯᏛᎾ ᎤᏙᎯᏳ ᎢᏳᏍᏗ ᏱᏓᏛᎾ. ᎠᏇᏅᏒ ᏩᏯ, ᎤᎯᏐᏗ ᎤᎨᏓᎵᏴ ᏩᎩᎶᏒ, ᏂᎦᏓ ᎡᎶ ᏣᎵᏍᏔᎷᏯᏍᎪ ᎠᎩᏰᎸᎲ. ᎤᏬᏰᏂ ᎧᎵ ᎠᎩᏍᎪ ᎦᏓ. ᏥᎷᏏᎵᎻ! ᏥᎷᏏᎵᎻ! ᎠᎾᏙᎴᎰᏍᎩ ᏘᎯᎯ, ᎠᎴ ᏅᏯ ᏛᏂᏍᏗᏍᎩ ᎨᏣᎷᏤᏗᏱ ᎨᏥᏅᏒᎯ; ᏯᏃᎩᏳ ᎠᏆᏚᎵᏍᎬ ᎦᏥᏯᏟᏐᏗᏱ ᏗᏤᏥ, ᎾᏍᎩᏯ Ꮳ-ᏔᎦ ᏥᏕᎦᏟᏏᏍᎪ ᏧᏪᏥ ᎠᏂᏛ ᎠᏫᏂᏗᏢ ᏗᎧᏃᎨᏂ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏚᎵᏍᎨᎢ! ᎯᎸ ᎢᏴ. ᏌᏊ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᎤᏔᏅ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᏝᏍᎪ ᎠᏍᎪᎯ ᏱᎨᏥᏅᎦᎸᎡᎢ? ᎠᏎᏃ ᏐᎣᏁᎳ ᎢᏯᏂᏛ ᎭᏢ? ᎡᎳᏗ ᏂᏙᏨᏁᎰ ᎠᏓᏅᏖᏗ ᎨᏒ, ᎠᎴ ᏄᏓᎴᏒ ᎢᏅ ᎢᎦᏘ ᎾᏍᎩ ᎠᏓᎵᏌᎳᏗᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏗᎦᏘᎴᎩ, ᎠᎴ ᏙᏥᏎᎪᎩᏍᎪ ᏙᏣᏘᏁᎪ ᏄᏓᎴᏒ ᎠᏓᏅᏖᏗ ᎨᏒ ᎦᎶᏁᏛ ᎬᏬᎯᏳᏗᏱ ᏃᏨᏁᎰᎢ; ᏓᏂᏚᎢᏍᏓᏁᎰ ᏗᎨᏥᎾᏝᎢ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎤᏅᏒᏃ ᎤᏲ ᎨᏒ ᏗᎬᏩᏂᎾᏝᎢ ᎨᏐᎢ: ᎩᎶᏰᏃ ᎠᏥᏎᎪᎩ ᎾᏍᎩ Ꮎ ᎤᏎᎪᎩᏛ ᎤᎾᏝᎢ ᏂᎦᎵᏍᏗᏍᎪᎢ. ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎥᏝ ᎪᎯᏳᏗ ᎨᏒ ᎠᎵᏍᏕᎸᏙᏗ ᏱᏂᎬᏁᎭ; ᎯᎠᏍᎩᏂ, ᎩᎶ ᏴᏫ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ ᎾᏍᎩ ᎤᏛᏂᏗᏍᏕᏍᏗ. ᎾᏍᎩ ᎨᏓᏚᏓᏔᎡᎸᎯ ᎨᏒ ᎨᎩᏍᎦᎩ ᎢᎦᎵᏍᎪᎸᏓᏁᏗᏱ ᏂᏗᎾᏰᏍᎬᎾ ᎡᏓᏓᏙᎵᏍᏓᏁᏗᏱ, ᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎦᏙᏃ ᎥᏣᏍᏆᏂᎪᎵ? ᏓᎬᏃᏁᎵ ᏄᏍᏛ ᎦᏛᎬ ᎠᎨᏴ, ᎠᎴ ᏄᏍᏛ ᎦᏛᎬ ᏅᎩᏗᎦᏅᏌᏗ ᎾᏍᎩ ᏧᎩᎸᏗ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏥᏓᏍᎫᏓᏛ ᎠᎴ ᎠᏍᎪᎯ ᏥᏚᎷᎦ. ᎢᏳᏃ ᎩᎶ ᎢᏤᎲ ᏳᏓᏑᏯ ᏧᏁᎶᏗ ᏱᏅᏩᏍᏗ, ᏂᎦᎾᎯᏍᏗᏍᎬᎾᏃ ᏱᎩ ᎦᏃᎪᎢ, ᎤᏩᏒᏉᏍᎩᏂ ᎤᎾᏫ ᎦᎵᏓᏍᏗᏍᎩ ᏱᎩ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏧᏁᎶᏗ ᎨᏒ ᎠᏎᏉᎢ. ᎠᎦᎵᏍᎬ ᎦᏙᎨ ᏫᎵᎻ, ᎤᎯᏐᏗ ᎤᏓᏅᏖᎢ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏂᎨᏴ ᎬᏩᏂᎾᏄᎪᏫᏒᎯ ᏥᎩ ᎥᏝ ᎩᎶ ᏳᎾᏄᎪᏨ ᎬᏩᏓᎵᏁᎯᏕᏗ ᏣᏂ ᏗᏓᏬᏍᎩ; ᎠᏎᏃ ᎤᏍᏗᎧᏂ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏣᏂ. ᎠᏏ ᏞᎦ, ᎿᏉ ᎡᎶᎯ ᎥᏝ ᏯᎩᎪᏩᏘᏍᎨᏍᏗ, ᏂᎯᏍᎩᏂ ᏍᎩᎪᏩᏘᏍᎨᏍᏗ, ᎠᏴᏰᏃ ᎬᏅ, ᎠᎴ ᏂᎯ ᎾᏍᏉ ᏕᏨᏁᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏍᎦᏯ, ᎤᎦᎵᏍᏗ ᎢᏣᏓᏅᏓᏓ; ᏥᏲᎢᏳᎲᏍᎦᏰᏃ ᎤᏁᎳᏅᎯ, ᎾᎩᏪᏎᎸ ᎾᏍᎩᏯ ᎢᏳᎵᏍᏙᏗᏱ. ᏔᎵᏁᎢ ᎠᎹ ᎦᏁᎲᎢ, ᎤᏓᎴᏨ ᏗᎧᏃᏗ ᎠᏣᏗ ᎤᎪᎮᎢ. ”ᎤᏍᏓᎦᏴᎯᏓ” ᎣᏍᏓ ᏦᏪᎶᏗ ᏕᏣᏏᎳᏛ.” ”ᏙᏱ ᏍᏕᎾ ᎢᏧᎳ!” ᏩᏁ ᎤᎴᏴᏒ ᎣᎭᏁ ᎦᏅᎬ ᎠᏌᎻᏓ ᎣᎩᎵᏦᏩᏛ ᎾᎥᏂ. ᎯᎠᏃ ᏚᏃᎩᏎ. ᎦᎸᎳᏗᏣ Ꭴ ᎤᎴᏅᎮ. “ᎠᏯᏍᏉ ᏍᎩᏍᏚᏣ!” ᎤᏛᏁ ᎡᎳᏆᏗ, ᎦᎪ ᎤᏂᏍᎦᏅᏨ ᏙᏓᎫᎯᏍᏔᏂ ᎤᎾᎴᏅᎯ ᏧᏑᏰᏛ? ᏥᏌ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎤᏄᏓᎴᏍᎩ? ᏎᎦ ᏤᏍᏗ ᏱᎾᏟᏃᎮᏍᎨᏍᏗ, ᏌᎳᏓ. ᏔᎵᏁ ᏅᏙ ᎢᎪᎯᏛ ᎤᏂᎩᏍᏗ ᎭᏫᏯ. ᏭᏓᎾᏫᏛ ᏭᏏᎳᏛᏁ, ᎦᏆᎵ ᏓᏳᏓᎴᏅ. ᎣᏍᏛ ᏴᏫ, ᎣᏍᏛ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ, ᎣᏍᏛ ᎦᎾᏄᎪᏫᏍᎪᎢ. ᎤᏲᏃ ᏴᏫ, ᎤᏲ ᎤᏍᏆᏂᎪᏛ ᎤᏲ ᎦᎾᏄᎪᏫᏍᎪᎢ. ᎩᎳᏈᏴ ᏚᎴᏁ ᏫᎵᎻ. ”Ꮟ-Ꮟ-Ꮟ, Ꮟ ᏔᎵᏁ ᎢᏯᎩᏪᏍᏗ ᏱᎨᏒᎾ,” ᎤᏛᏁ ᏌᏌ, ”ᎠᏯ ᎬᏁᏤᎭ, ᎩᏅᎪᎢᏉ. ᎠᏍᎦᏯᏃ ᏙᏓᏳᏲᏏ ᎤᏲᎱᎯᏍᏗᏱ ᏗᎾᏓᏅᏟ, ᎠᎦᏴᎵᎨᏃ ᎤᏪᏥ ᏙᏓᏳᏲᏏ, ᎠᎴ ᎣᏂ ᏧᎾᏛᏒᎯ ᏙᏛᎾᏡᏔᏂ ᏧᏂᎦᏴᎵᎨᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏛᏅᏂᏌᏂ ᏗᎨᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᏌᏩᏂᏃ ᏈᏓ ᎦᏙᎬᎩ ᎤᎦᎾᏬᏍᎬᎩ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏂᎯᎧ ᎾᏍᏉ ᎯᎠ ᎯᏍᏓᏩᏗᏙᎯ? ᎤᏓᏱᎸᎩ, ᎥᏝ, ᎤᏛᏅᎩ. ᏂᎦᏓ ᏓᏓᏗᎪᎯ. ᎤᏩᏛᎲᏃ ᎥᏖᎣᎩ ᎤᏘᏃᎴᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏑᏕᏘᏴᏛ ᎾᎿ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏓᏂᎳᏫᎨᎢ, ᎠᎴ ᎤᏂᏣᏖ ᏴᏫ ᏚᏁᏲᏁᎢ. ᎥᏖᎣᎩᏃ ᎢᎬᏱᏱ ᎠᏂᎦᎶᏁᏛ ᎨᎪᏎᎴ ᎠᏃᎯᏳᎲᏍᎩ. ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏧᏤᎵ ᏴᏫ ᎾᏍᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎦᎨᏥᏁᎲ ᎤᏂᏍᎦᏅᏨᎢ, ᎥᏝ ᏍᎩᏂᏃᏅ ᎣᎬᏒ ᎨᏒ ᏰᎵ ᎦᏲᎦᏓᏅᏖᏗ ᏱᎩ ᎪᎱᏍᏗ ᎣᎬ ᏒᏉ ᎨᏒ ᏅᏛᏓᎴᎲᏍᎩ, ᏰᎵᏉᏍᎩᏂ ᎢᎦᏲᎦᏛᏁᏗ ᎨᏒ ᎤᏁᎳᏅᎯᏱ ᏗᏓᎴᎲᏍᎦ. ᎠᎴ ᎾᏍᎩ ᏦᏣᏚᏓᎳᎡᏗᏱ ᎤᏂᏲ ᎠᎴ ᎠᏂᏍᎦᎾ ᎠᏂᏍᎦᏯ; ᎥᏝᏰᏃ ᎾᏂᎥ ᎪᎯᏳᏗ ᎨᏒ ᏳᏁᎭ. ᎤᎬᏍᏉᎡ, ᏕᎦᏅᏙᎬ ᏚᏅᎦᎸᎮ, ᏃᏉ ᏚᎭᏯᎴ ᏧᎿᏬᏍᏗ. ᎦᏚᏏ ᏳᏫᏕᏗᏌᏙᎭᏯ ᎧᏂᎩᏛ ᏗᎨᏒ, ᏱᏕᎨᎩᏘᎷᎦ, ᎠᏎᏃ ᎧᏂᎩᏓ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏃᎴ ᎤᎾᏟᏍᏙᏗ. ᎠᏛᏍᎨ, ᏃᎴ ᎨᏍᏗ ᎠᎨᏳᏣ ᎢᏳᎾᏛᏁᏗ ᏱᎾᏛᏁᎮ ᏃᏉ, ᎨᏍᏗ ᎡᎳᏗ ᎢᎦᏘ ᎦᏍᎩᎶᎩ ᏯᎵᏍᏛᏧᏍᎨᎢ ᏏᏆ ᎤᏴᏍᏗ ᎾᎥᏂ. ᎭᏪᎾᏗᏅ, ᎠᏆᏛᏅ. ᎢᎴᎯᏳᏃ ᎪᎱᏍᏗ ᏃᏒᎾ ᏂᎦᎵᏍᏗᏍᎪ, ᏄᏓᎴ ᎢᎦᏛᏁᏗ ᎠᏰᎸᏐᎢ. ᏌᏩᏂᏃ ᎠᎨᎾᏂᏗ, ᏧᏓᏏᏃ ᎢᏍᎦᎳᏗ ᎾᏍᎩ ᏥᏌ ᏧᎶᏄᎮᎸᎩ. ᎢᏤ ᎤᎵᏑᏫᏓ ᏧᏍᏆᎳ ᏗᎦᏅᏌᏗ ᎤᏑᎳᏁ ᏃᎴ ᏌᎪᏂᎨ ᎤᏁᎦ ᏧᎶᎳᏗ ᏧᏍᏆᎳ ᏗᎪᎭᏯᏗ ᎤᎿᏬᎡ. ᎠᎴ ᎠᎦᏴᎵᎨ ᎠᏴ ᏓᏥᏔᏲᏎᎵ, ᎾᏍᎩᏃ ᏓᏣᎵᏍᎪᎸᏓᏁᎵ ᏅᏩᏓᎴ ᎢᏥᏅᏬᎯᏍᏗᏍᎩ, ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎢᏤᎳᏗᏙᎯ, ᎤᎾᏓᎪᎾᏙᏗ ᎤᏏᏩ ᎨᏎᏍᏗ ᏃᎴ ᎨᏍᏗ ᎩᎶ ᏰᏙᎮᏍᏗ. ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᎦᎾᏄᎪᏫᏎᎭ ᎬᏩᎾᏰᏍᎩ ᎾᎾᏓᏁᏟᏴᏏᏒᎢ. ᎥᏝ ᎢᏨᏍᏕᏲᎯᏍᏙᏗᏱ ᏱᎩᏰᎸ ᎯᎠ ᎾᏍᎩ ᏥᏨᏲᏪᎳᏁᎭ; ᏗᏇᏥᏍᎩᏂ ᎢᏨᎨᏳᎢ ᎾᏍᎩᏯᎢ ᎢᏨᏯᏅᏓᏗᏍᏗᎭ. ᎾᏍᎩᏴ ᏍᏔᏱ ᎨᏒ ᎠᎦᏓᏅᏖᏗ ᎡᎫᏬᏟᏍᏗ ᏩᏏᏛᏂ, ᏂᏛᏓᎴᏂᏍᎬ Crockett ᎠᏨᏉᏗᏍᎬ ᎢᎾᎨᎯ ᎡᎯ ᎤᏤᎸᎲ. ᏚᏂᏂᏴᏎᏍᏗᏍᎩᏂ ᎤᏕᎵᏛ ᎪᎯᏳᏗ ᎨᏒᎢ ᎠᏅᏗᏍᎨᏍᏗ ᎦᏓᎭ ᏂᎨᏒᎾ ᏗᎫᎪᏙᏗ ᎨᏒᎢ. ᏆᏂᏉᏃ ᎠᎴ ᏐᎳ ᏭᏂᏍᏆᏛ ᎨᏥᏁᏤᎸᎢ, ᎤᏂᎷᏤ ᏥᎷᏏᎵᎻ ᏗᎤᏂᎶᏎᎢ, ᎤᎾᏘᏃᎴᏃ ᏣᏂ ᎹᎦ ᏧᏙᎢᏛ. ᎠᎴ ᎤᏁᎳᏅᎯ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏂᎪᎯᎸᎾᏉ ᏎᏓᏂ ᎤᏪᏓᏫᏙᏗ ᏅᏓᎦᎵᏍᏓᏂ ᏗᏣᎳᏏᏕᏂ ᎭᏫᏂᏗᏢ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ. ᎡᎺᏅ. ”ᎭᏗ,” ᎤᏛᏁ ᏫᎵᎻ. ᏧᏍᏆᏴᏍᏗ ᎯᎠ ᎾᏛᎦ, ᏧᏍᏆᏴᏍᏗ ᏃᎴ ᎯᎠ ᎾᏛᎦ, ᏧᏍᏆᏴᏍᏗ ᎤᏲ ᎤᎾᏗᏅᏗ ᏫᏍᎩᎾᎩ ᎪᏪᎵ ᎠᎦᎸᏓ, ᏧᏍᏆᏴᏍᏗ ᎠᏍᏓ ᏫᏍᎩᎾᎩᎢ ᏗᎩᏏᎳᏛᏙᏗ.” ᏂᎬᎾᏛ ᎭᏓᏏᏓ! ᎠᏎᏃ ᏍᏔᏯ ᎨᏎᏍᏗ ᎠᏔᎶᎯᏍᏗ, ᏫᎵᎻ, ᏂᏗᎦᎵᏍᏙᏗ ᏁᏆᎸ ᏃᎴ ᏄᏓᎨᏒ. ”ᎤᏍᏆᏂᎩᏘ ᏏᏆ!” ᎤᏛᏁ ᏣᏄᏏ ᎡᏝᏪᎯ. ᎢᏳᏃ ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎾᏍᎩ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᏧᎸᏫᏍᏓᏁᏗᏱ, ᎠᏎ ᎤᏙᎴᎰᎯᏍᏗ ᎾᏍᎩ ᎯᎠ ᏥᏕᎦᏕᏲᎲᏍᎦ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏥᏬᏂᏍᎬ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᎸᎯ ᎢᎨᏎᏍᏗ. ᎩᏟ ᎤᏂᏍᏔᏩᏗᏒ, ᎦᎪᏟᏍᏗ ᏱᎨᏒᎾ ᏧᏓᎴᏅ, ᎠᎴᏃ ᎠᏂᎩᎦᎨ ᏩᏯ, ᏚᏂᏒᏅᏉ ᎠᏂᏳᏩᏁᎦ ᏃᎴ ᎠᏂᏴᏫᏯ ᎤᏅᎨᏫᏒ ᏧᏂᎯᏍᏗ ᏱᎨᏒᎾ, ᎾᏍᎩ ᎾᎥᏂ ᎠᎾᏓᏤᎵᎨᏒ ᎠᏍᎦᏯ ᏃᎴ ᏩᏯ. ᎠᎰᎵ ᎤᏅᎦᎸᎮ ᏃᏗ ᎦᎸᎳᏗ ᎢᏣ ᏭᏓᏒᏍᏔᏁᎢ. ᎾᏍᏉᏃ ᏂᎯ ᎢᏥᎨᏴ ᏗᏦᎯᏳᎯᏳ ᎨᏎᏍᏗ ᏗᎨᏥᏰᎯ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ ᎧᏃᎮᏛ ᏂᏓᏂᎧᎿᏩᏕᎬᎾ ᏱᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎧᏃᎮᏛ ᎬᏗ ᏂᎨᏒᎾ ᏱᎨᏥᏎᎪᎩᏍᏓ [ᎠᏂᎪᏩᏘᏍᎬ] ᏄᏍᏛ ᎢᏣᎴᏂᏙᎲ ᎢᏥᎨᏴ, ᎤᏠᏱ ᎾᏛᏁᎲ ᎠᏁᎷᎩᏍᎬ ᎠᎨ ᎢᏳᏓᏅᎯᏓ ᏃᏊᎴ ᏗᎠᏨᏍᎪ ᎠᏊᎢᏴ ᎢᎦᎷᎪᎢ ᎠᎴ ᏓᏑᏫᏍᎬ ᏂᎬᏩᏍᏙᎢ. ᎥᏠᏂᎦ ᎠᎴ ᏧᏂᏯ ᏕᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏗᏋᏅ, ᎠᎴ ᎢᏧᎳᎭ ᏦᎩᏴᎩᏅᎯ, ᎾᏍᎩ ᎨᏥᎸᏉᏗ ᏥᎩ ᎨᏥᏅᏏᏛ ᎠᏁᎲᎢ; ᎾᏍᎩ ᎾᏍᏉ ᎢᎬᏱ ᎦᎶᏁᏛ ᏧᎾᏁᎶᏗ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎠᏴ ᎣᏂ. ᎾᏍᎩ Ꮎ ᎧᏃᎮᏛ ᎠᎨᏲᏅᎯ ᎠᏁᎮᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏪᏲᎲᏍᎩ ᏄᏓᎴᏒ ᎣᏍᏛ ᎨᏒᎢ. ”ᎡᏝᏪᎯ, ᎡᏝᏪᎯ, ᎡᏝᏪᎯ!” ᎤᏕᎶᎰᏌ ᎢᏳᎾᏍᏗ ᎨᏒ ᏃᎴ ᎢᏳᏍᏗ ᎤᏰᎸᏛ ᎤᏂᎷᏨ, ᎤᏟᏍᏔ ᏭᏴᎸ ᎦᎵᏦᏕ, ᏔᎵ ᏧᏍᏆᏅᎾ ᏚᎭᏃᎸ ᏃᎴ ᎤᏍᏗ ᏧᎳᏍᎩ. ᎠᏂᎦᏲᏟ ᏲᎾ ᏧᏤᎵ ᏴᏫ ᏃᎴ ᎢᏅᎯ ᏗᏁᎲ ᎠᎹᏰᎵ ᏧᏍᏆᏂᎪᏍᏗ. ᎠᎩᏰᎸᎭ ᎨᏒᎩ, ᏙᏍᎩᏄᏬᎥᎩᏃ; ᎠᎩᏢᎬᎩ, ᎥᏍᎩᏯᎦᏔᏂᎸᎩᏃ; ᏗᏓᏍᏚᏗᏱ ᎥᎩᏍᏚᎲᎩ, ᎥᏍᎩᏩᏛᎯᎸᎩᏃ. ᏍᏗᏫ ᏚᏓᎵᏴᎮ ᎠᏁᎸᏗᏍᎬ ᎣᏍᏓ ᎤᏂᏴᏗ, ᎦᏚᎲ ᏗᏁ ᎤᎾᏰᎶᎴ. “ᎠᎦᏛ ᎣᏍᏓ ᎠᏰᎸᏗ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, “ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᎩᎸᏙᏗ ᎦᎸᎳᏗ ᏱᏭᎴᏫᏍᏔᎾ ᏃᎴ ᎠᏯ ᏃᎴ ᎮᏂᎵ ᎣᎩᎾᎩᎸᏛ ᏯᎵᏖᏅᎵᏍᏙᏗ ᎮᏂᎵ, ᎾᎨ ᎢᏴ ᏩᎪᏩᏛᏗ ᎨᏐᎢ.” ᎨᏍᏗ ᏯᎦᏔᎮ ᎢᏳᎾᎵᏍᏙᏗ ᎤᎵᏘᎾᎥ. ᎠᎴ ᎤᏟ ᎠᎯᏗᏳ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎤᏂᎶᏐᎲᏍᏗᏱ, ᎠᏃ ᏌᏉ ᎤᏍᏗᎧᏂ ᏗᎧᎿᏩᏛᏍᏗ ᎡᏍᎦ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏴᏍᎩᏂ ᎦᎶᏁᏛ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅᎯ ᎣᏣᎵᏥᏙᎲᏍᎦ, ᎾᏍᎩ ᎠᏂᏧᏏ ᏧᏃᏕᏍᏗᏍᎩ, ᎠᏂᎪᎢᏃ ᎠᎵᏍᎦᏁᏛ ᎤᏂᏰᎸᎯ; ᎤᏭᎬᏙᏗ ᎠᏩᏘᏍᎪ ᏅᎩ ᏗᏂᏅᏌᏗ ᏚᎾᎪᏍᎬ ᎦᏙᎯ ᎠᎵᏰᎾ. ᎠᏎᏃ ᎾᏥᎸᏉᏛᎾ ᏄᏓᏛᏁᎴ ᎤᏩᏒ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᏄᏍᏛ ᎾᏍᎩᏯ ᏄᏓᏛᏁᎴᎢ, ᎠᎴ ᏴᏫ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏥᏙᎨᏍᏗ, ᏕᏣᏓᏠᏍᏕᏍᏗ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᏕᏣᏓᏁᏣᏍᏚᎶᏕᏍᏗ; ᎡᏝᏪ ᎦᏙᎨ ᏚᎦᏙᏍᏔᏁᎢ ᎤᎾᏂᎩᏌ ᎪᏱᏁ. ᎢᏳ ᎠᎴ ᎾᏍᏉ ᏲᏥᎩᎵᏲᎦ, ᎢᏥᎦᎵᏍᏓᏗᏍᏗ ᎠᎴ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎳ, ᎾᏍᎩ ᏥᏥᏩᏛᎡᎭ ᏗᏨᏂᏗᏳ ᎢᏥᎩᎵᏲᎢᏍᏗᏱ ᎠᏴ ᎣᏥ ᎩᎵᏲᎬ ᎤᏠᏱ; ᎢᏳ ᎠᎴ ᎤᎦᎵᏍᏗ ᏲᎦᏓᏅᏔ, ᎢᏥᎦᎵᏍᏓᏗᏍᏗ ᎠᎴ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎳ. ᎯᎠᏃ ᎾᏍᎩ ᏦᎢ ᎢᏯᏂᏛ ᎨᏒ, ᏂᎯ ᎭᏓᏅᏖᏍᎬ, ᎦᎪ ᎾᎥ ᎢᏧᎾᏓᎳ ᏅᏩᏍᏗ ᎾᏍᎩ ᏗᎾᏓᎾᏌᎲᏍᎩ ᏥᏚᎾᏓᏩᏛᏔᏁᎢ? ᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏓᏥᏁᎵ ᎤᎵᏍᏓᏴᏙᏗ ᎬᏍᎦᎳᏅᎯ ᎹᎾ, ᎠᎴ ᎤᏁᎬ ᏅᏯ ᏓᏥᏁᎵ, ᎠᎴ ᏅᏲᎯ ᎪᏪᎴᏍᏗ ᎢᏤ ᏧᏙᏍᏙᏗ, ᎾᏍᎩ ᎩᎶ ᎾᎦᏔᎲᎾ Ꮎ ᏅᏯ ᎠᏥᏁᎸᎯ ᎤᏩᏒ. ᎤᏙᎯᏳᎯᏯ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎥᎩᏅᏏᏛ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏂᎦᎵᏍᏗᎭ ᎢᏤᎲᎢ, ᎬᏔᏅᎯ ᎤᏣᏘ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎤᏰᎸᏛᎢ, ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸᎢ, ᎠᎴ ᎤᎵᏂᎩᏛ ᏕᎦᎸᏫᏍᏓᏁᎸᎢ. ᎢᎬᏱᏱᏉᏃ ᎢᎦ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᎨᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᎷᏤᎸ ᏥᏌ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ, ᎭᏢ ᏣᏚᎵᎭ ᎣᎦᏛᏅᎢᏍᏙᏗᏱ ᏣᎵᏍᏓᏴᏗᏱ ᎧᏃᎯᏰᎩ. ᎦᏣᏄᎸ ᎦᏚᏏ ᏭᏓᏒᏍᏔᏁ, ᏚᏑᎬ ᎢᏣ ᎤᎧᎭᏛ ᏭᏕᎵᏤ. ᏂᎦᎥᏉ ᎠᏂᏃᎮᎭ ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᎢᏤᎲᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎥᏝ ᎬᏩᏂᏃᎮᏗ ᎾᏍᏉ ᏱᎩ, ᎾᏍᎩ ᎩᎶ ᎤᏙᏓ ᎤᏓᎵᎢ ᎤᏓᏴᏍᏗᏱ. ᎾᏍᎩ Ꮎ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵᎦ ᎤᏍᏆᏂᎬᏗ ᎠᎴ ᏗᎧᎿᏩᏕᎩ, ᎾᏍᎩ ᎠᏴ ᎠᎩᎨᏳᎯ, ᎠᎴ ᎠᏴ ᎠᎩᎨᏳᎯ ᎤᎨᏳᎯ ᎨᏎᏍᏗ ᎡᏙᏓ, ᎠᎴ ᎠᏴ ᏥᎨᏳᎢᏳ ᎨᏎᏍᏗ, ᎠᎴ ᎬᏂᎨᏒ ᏅᏓᏥᏯᏛᏁᎵ. ᏗᏂᎦᏙᎵ ᏧᎧᎵᏨᎯ ᎠᏓᏲᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎬᏩᏂᏲᎯᏍᏗ ᏂᎨᏒᎾ ᎠᏍᎦᏂ ᎨᏒᎢ: ᏗᏂᎶᏄᎮᏍᎩ ᏂᏚᎾᎵᏂᎬᎬᎾ ᎦᎾᏓᏅᏛᎢ; ᏧᏂᎾᏫ ᏧᎩᏌᏛ ᎠᎬᎥᎯᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᏧᏪᏥ, ᎿᏉᏃ ᎤᎾᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎪ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᏍᎦᏯ, ᏣᏤᏍᏙ ᎯᎾᎩ ᎠᎴ ᎮᏓ, ᏦᏎᎸᎯ? “ᏏᏆ ᎠᏯ ᏔᎵᏁ ᎠᏦᏴ ᏃᎴ ᎡᏆ. ᏉᎳ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎠᎴ ᎠᏂᏯᏫᏍᎩ; ᎢᏳᏃ ᎯᎠ ᎾᏍᎩ ᏥᏳᎯ ᏄᎾᏣᎥᎾ ᏱᎩ ᎥᏝ ᏴᎨᏣᏛᏂᏓ. ᎠᏎᏃ ᎦᎶᏁᏛ ᏕᎤᎴᎯᏌᏅ ᎤᏲᎱᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏔᏅᎯ ᏄᎵᏍᏔᏅ ᎾᏍᎩ ᎤᏂᎵᏅᏨᎯ ᏥᎨᏒᎩ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎪᎯᏧᏈ ᎠᏂᏯᏫᏍᎩ ᏗᏖᏂᏙᎯ ᎤᏅᏏᏓᏍᏗ, ᎣᏍᏛ ᎤᏰᎸᎯ, ᎤᏢᎨᎢ, ᎠᎴ ᎤᏲᎱᏏᏕᎾ ᎨᏎᎢ. ᎠᏎᏃ ᏇᏍᏓ ᎤᏁᏨᎩ ᏉᎳ ᎠᎦᏘᏗᏍᏗᏱ ᏏᏓᎵᏱ, ᎠᎴ ᎤᏩᏒ ᏂᎪᎸᎾᏉ ᎾᎿ ᏭᎶᎯᏍᏗᏱ. ᏗᏂᏲᏟ ᏯᏂᎦᏔᎲᎾ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎠᎾᏨᏏᏰᏍᎬ. ᎣᎯᏍᏙᏗ ᎤᎾᏓᏅᏖᎢ ᏗᏂᏲᏟ ᎤᏂᏰᏣ ᏎᎦ ᎤᏂᏢᏅ. ᎭᏩ ᏱᎨᏒᎾ ᏳᏫᎦᎷᏣ ᎡᎶ, ᏯᎴᏫᏍᏗᏍᎬᎾ ᎤᏍᎦᎢᎰ. ᏩᎾᏗᎳᏍᎦᎶᏗ ᏥᎾᏕᏆᎳ ᎢᏗᎩᏓ ᎤᏂᏁᎫᎯᏍᏗ ᏃᎴ ᎢᎦᏛ ᏩᏥᎾᏚᏍᏗᎧᎸ ᏎᏗ ᏥᏂᏚᏍᏗᎧᎸ ᎨᏒᎢ. ᎿᏉᏃ ᎤᎧᏛ ᏚᎾᎵᏥᏍᏇᎢ, ᎠᎴ ᎠᏍᏈᏅ ᏕᎬᏩᎾᏍᏗᏍᎨᎢ ᎠᎴ ᎠᏂᏐᎢ ᏧᏃᏰᏂ ᏕᎬᏩᎾᏍᏗᏍᎨᎢ, ᏗᎾᎳᏫᎩ ᎠᏁᏙᎲ ᎦᏚᎲ, ᏩᏏᏓᏂ ᎦᏚᎲ ᏧᏍᏈᏯ ᏗᎦᎷᏫᏍᏓᏁᏗ ᎨᏎ. ᎤᏙᎴᎰᏒᏃ ᎣᏏᏳ ᎠᏂᏰᎸᏍᎬ ᎠᏂᏧᏏ, ᏈᏓ ᎾᏍᏉ ᎤᏂᏴᎮᎢ. ᎾᎯᏳᏃ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᎨᏎᎢ. ᎡᎳᏗ ᏱᎦᎢ, ᎦᏂᏴᏗ ᏥᎳᏗᏍᎬ ᏥᏐᎯ ᏃᎴ ᏥᎵᏎᎲ ᎠᏰᎵ, ᏎᏉ ᏂᏚᏍᏙ ᏗᏉᏰᏂ, ᎠᏎᎩ ᎤᏙᎯᏳ ᎦᎾᏰᎯᏍᏗ ᎬᏇᎵᏎᎮ ᏱᏙᎦᏦᏌ ᏅᏃ. ᎪᏱᏁ ᏍᏉ ᎤᏅᎪᏤ ᏓᏆᎴᎷ. “ᎪᎨ ᎠᎵᏍᏆᏙᎾ ᏃᎴ ᎠᎵᏛᏓ,” ᏓᏂᏃᎩᏍᎨ ᎤᎩᏨᏓ ᏑᎾᎴ ᎤᏂᎩᏎ ᎤᎩᏓᏟᏅᏯ ᏭᏕᎵᎬ ᎢᏣ, ᎠᏰᎵ - ᏧᎬᏩᏟ ᏐᏈᎵ ᎤᎩᎸᏔᏁ, ᎤᎾᏗᏅᏗ ᎤᏪᎵᏎ ᎠᎹᏱ ᏫᎦᎷᎬ, ᏳᏩᎩᎸᎥᏍᎬᎾᏉ ᏥᏳ. ”ᎤᏙᎯᏳᎩ?” ᎤᏛᏁ ᎪᏱᏁᎢ, ᏰᎵ ᎤᎾᏰᎯᏍᏗ. ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏂᎦᏛᏁᎰ ᎢᎪᎯᏓ.” ᎾᏍᎩᏃ ᏄᏪᏒ, ᎠᏍᏓᏯ ᎤᏪᎷᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎳᏏᎳ, ᎡᎯᏄᎪᎢ. ᏚᎾᎦᎴᏅᎲᏃ ᏓᎾᏓᏅᏖᏍᎬᎢ ᏙᎤᏁᏅᏒᎩ, ᏉᎳᏍᎩᏂᏃᏅ ᎠᏏ ᏌᏉ ᎢᎧᏁᏨᎯ ᎤᏁᏨᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏰᎵᏉ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏥᏚᏁᏤᎴ ᏗᎩᎦᏴᎵᎨᎢ, ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᏧᏩᏔᏁᎢ, ᏃᏉᏃ ᎦᎶᎯᏍᏗᏳᎳ ᏭᎴᏁ. ”ᎮᎵᏍᎬᏉᏗ ᏤᏅᏍᏗ, ᎮᎵᏍᎬᏉᏗ ᏤᏅᏍᏗ,” ᎤᏛᏁ ᏌᏌ. ᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᎷᏤᎸᎩ, ᏓᎾᏘᏁᎲ ᏗᏂᏲᏅᎵ, ᎠᎴ ᏗᏂᎨᏫ, ᎠᎴ ᏧᏅᎨᏫ, ᎠᎴ ᎪᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᏧᏂᏲᎱᏎᎸᎯ, ᎠᎴ ᎤᏂᏣᏘ ᏅᏩᎾᏓᎴᎢ, ᎠᎴ ᏥᏌ ᏚᎳᏍᎬ ᎾᎥ ᏚᏂᏅᏅᎩ, ᏚᏅᏩᏅᎩᏃ. ᎦᎶᎯᏍᏗᏳᎳ ᏥᏙᎬ ᏥᏯᎦᏎᏍᏗ ᏓᎭᎾᏩᎩᏍᎬ ᏅᏙ ᎠᎦᎵᏍᎬ. ᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏆᏛᎾ. ᏌᏉ ᎤᏲ ᎨᏒ ᎤᎶᏐᏅ; ᎬᏂᏳᏉᏃ ᎠᏏ ᏔᎵ ᎤᏲ ᎨᏒ ᏙᏛᏍᏆᎸᎯ. ᎠᎵ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ, ᎢᏓᎵᏅᏟ, ᏕᎦᏟᎶᏍᏗᏍᎬ ᎠᏋᏒ ᎦᏓᏁᎢᏍᏓ ᎠᎴ ᎠᏉᎳ ᏥᏁᎢᏍᏓ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎾᏍᎩ ᏍᎩᏯᏕᎶᏆᎡᏗᏱ ᎢᏣᏓᏅᏖᏍᎬ ᎢᏥᎶᏒᏍᏙᏗᏱ ᏂᎨᏒᎾ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎾᏍᎩ ᎩᎶ ᎤᏢᏈᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏏᏴᏫ ᎦᎸᏉᏗᏍᎬ ᏅᏩᏓᎴᏃ ᎠᏡᏗᏍᎬᎢ. ᏝᏍᎪ ᎢᏨᏒ ᎢᏥᎦᏔᎲ ᏱᏤᏲᎲᏍᎦ, ᎾᏍᎩ ᎠᏍᏚᏯ ᎦᏅᎯᏛ ᏳᏍᏘᏰᎦ ᎤᏕᎰᎯᏍᏗᏳ ᎨᏒᎢ? ᎡᏗᎦᏔᎮᏰᏃ ᎾᏍᎩ Ꮎ ᎯᎠ ᎢᏳᏪᏛ ᏥᎩ, ᎠᏞᎢᏍᏗ ᎨᏒ ᎠᏴ ᎠᏆᏤᎵᎦ, ᎠᏴ ᏓᎦᎫᏴᎯ, ᎠᏗᎭ ᏱᎰᏩ. ᎠᎴ ᏔᎵᏁᎢ, ᏱᎰᏩ ᏙᏓᎫᎪᏓᏁᎵ ᏧᏤᎵ ᏴᏫ. ᎿᏉᏃ ᎠᏆᏅᏓᏛᎩ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎢ, ᎯᎠ ᏥᏄᏪᏒᎩ; ᏣᏂ ᎤᏙᎯᏳᎯ ᎠᎹ ᏓᏓᏬᏍᏗᏍᎬᎩ, ᏂᎯᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓ-ᏅᏙ ᏙᏓᏰᏣᏬᏍᏔᏂ. ᏔᎳᏚᏃ ᏕᎪᏢᏒ ᏗᏍᏚᏗ ᏔᎳᏚ ᏓᎬᎾᎢᏳᎾᏍᏗ ᏕᎪᏢᏛᎩ; ᏌᏉ ᎠᏍᏚᏗ ᏌᏉ ᏓᎬᎾᎢᏳᏍᏗ ᎪᏢᏛᎩ ᎡᏓᏍᏗᏱ ᎤᏜᏅᏛ ᎦᏚᎲ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᏢᏛᎩ, ᏧᎸᏌᏛ ᎠᏓᎨᏗ ᎾᏍᎩᏯᎢ. ᎥᏝ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ ᎤᏙᎯᏳᎯ ᎠᏆᏢᏈᏍᏗᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏥᏁᎢᏍᏔᏂ [ᎩᎶ] ᎤᏁᎳᏫᏎᎸ ᎠᎴ ᎤᎬᏫᏳᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎢ. ᎠᎴ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎤᏣᏔᏅᎯ ᎡᏉᎯᏳ ᎨᏒᎩ, ᎤᎵᏠᏯᏍᏛᎩ ᎦᎶᏁᏛ ᏥᏌ ᏥᏲᎢᏳᏗ ᎨᏒ ᎠᎴ ᏥᎨᏳᎢ, ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎩᎶ ᎾᎩᏯᎥᎾ ᏥᎨᏐᎢ, ᎠᎦᏓᎡᎪᎢ ᎾᏍᎩᏯ ᎤᏩᏂᎦᎳᏅᎯ ᏧᎾᏓᎡᎪᎢ, ᎠᎴ ᎬᏴᏍᎪᎢ; ᏴᏫᏃ ᏓᏂᏟᏏᏍᎪᎢ, ᎠᏥᎸᏱᏃ ᏫᏚᎾᏕᎪᎢ, ᎠᎴ ᏓᎪᎲᏍᎪᎢ. ᏣᏂᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎪᎥᎩ ᎠᏏᏴᏫ ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎬᎩ ᏕᏣᏙᎢ ᎬᏗᏍᎬᎩ; ᎣᏥᏅᏍᏓᏕᎸᎩᏃ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏂᎩᏍᏓᏩᏕᎬᎾ ᎨᏒᎢ. ᎾᏍᎩᏍᎩᏂ ᏥᏌ ᎢᏥᎶᏁᏔᏅᎯ ᎨᏒ ᏥᏥᏯᎠ, ᎠᎴ ᎤᏚᎸᏗ ᏂᏣᎵᏍᏓᏁᎲᎾ ᏥᎩ ᎩᎶ ᎢᏤᏲᏗᏱ, ᎾᏍᎩᏰᏃ ᏥᏌ ᎢᏥᎶᏁᏔᏅᎯ ᏥᏤᏲᎲᏍᎦ ᏂᎦᎥᎢ, ᎠᎴ ᎤᏙᎯᏳᏒ ᏥᎩ, ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎢᏤᏲᎲᏍᎬ ᎡᏥᏯᎡᏍᏗ. ᎾᏍᎩ Ꮎ ᎦᎸᏉᏙᏗ ᎤᎵᏍᏈᏗ, ᎾᏍᎩ ᏥᏗᎸᏉᏗᏍᎪᎢ, ᏝᏍᎪ ᎾᏍᎩ ᎢᏓᎵᎪᎲᏍᎬ ᏱᎩ ᎦᎶᏁᏛ ᎤᎩᎬ ᎢᏓᏗᏔᏍᎬᎢ? ᎦᏚ ᏥᏗᎬᎭᎷᏯᏍᎪᎢ, ᏝᏍᎪ ᎾᏍᎩ ᎢᏓᎵᎪᎲᏍᎬ ᏱᎩ ᎦᎶᏁᏛ ᎠᏰᎸ ᎢᏓᎵᏍᏓᏴᏗᏍᎬᎢ? ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏆᏎᎵᏔᏅᎩ ᎠᎩᏔᎳᏬᏍᎬ, ᎾᏍᎩ ᎤᏂᏴᏍᏗᏳ ᏂᎨᏒᎾ ᎨᏒ ᎠᏆᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏄᏪᏒ, ᎠᏏᏴᏫ ᏗᏓᏂᏱᏍᎩ ᎾᎥ ᎦᏙᎩ ᎤᏏᏛᏂᎸᎩ ᏥᏌ, ᎯᎠ ᏄᏪᏒᎩ; ᎾᏍᎩᏍᎪ ᏂᏪᏎ ᎯᏁᏤᎭ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ? ᎾᏍᎩ ᎢᏳᏍᏗ ᏆᎴᏗ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏄᎪᏫᏒᎩ ᏥᏌ, ᎠᎴ ᎤᏪᏅᎩ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ, ᏅᏯ-ᎠᏰᏍᏓᎥ ᏕᏅᏙᎥᎢ, ᎠᏂᏧᏏᏍᎩᏂ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎨᏆᏓ ᏕᎤᏙᎥ. ᎢᏓᎵᏅᏟ, ᏴᏫ ᎤᏂᏁᎢᏍᏗ ᏥᏁᎦ; ᎾᏍᏉ ᏴᏫᏉ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏛ ᎠᏍᏓᏱᏛᎯ ᏱᎩ, ᎥᏝ ᎩᎶ ᏴᎬᏲᏍᏓ, ᎠᎴ ᎥᏝ ᎠᎦᏁᏉᏨ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎠᏓᏅᏖᏍᎬ ᎠᎦᏴᎵᎨᎢ ᎾᏍᎩ ᏅᏛᎩᏅᏏᏛ, ᎾᏍᎩ ᏂᎦᏛ ᏗᎩᏲᎯᏎᎸᎯ ᎨᏒᎢ, ᎪᎱᏍᏗ ᎠᎩᏲᎮᏎᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᏗᎦᎴᏙᏗᏱᏍᎩᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ. ”ᎤᏬᏚᏨ ᏧᏪᏥ ᏗᎦᏅᏙᏗ,” ᎤᏛᏁ ᏫᎵᎻ, ᎤᎵᎮᎵᏍᏗ, ᎤᏩᏌ ᎤᏬᏒᏅ ᏥᎨᏐ ᏄᎵᏍᏔᏁᎮᎢ. ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏍᏆᏗᏍᏗᏱ, ᎤᏓᏁᎵᏌᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎣᏥᏃᎯᎵᏙᏰᏃ ᏃᎴ ᎡᎶᎯ ᏓᏲᏤᏏ ᎣᎬᏌ ᏂᏓᏓᏲᏨᏁᎵ ᏓᏏᎳᏛᎢ. ᎤᏬᎯᏨᏃ ᎦᏂᎳ ᎣᎩᏁᏅ, ᎠᎴ ᎠᏏᏉ ᏃᎩᎶᏐᏅᎾ ᎨᏒ ᎾᏓ, ᏟᏗ ᎭᏫᏂᏗᏢ ᏬᎩᏅᏍᏔᏅᎩ, ᏌᎳᎼᏂ ᏧᏳᎪᏗ, ᎦᏃᎸᎥᏍᎬᏰᏃ ᎣᎩᏲᏍᏙ ᏓᏁᎲᎩ. ᎠᏒᎬ ᎤᎾᏨᏏᏙᎸ ᏓᎩᏌᏬᎸᏍᏔᏅ ᏗᏥᎦᏙᎵ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏍᏕᎾ. ᎤᏂᏄᎪᏨᏃ, ᏏᏆ ᏑᎾᏓᏡᎩ ᏫᏚᏂᏴᎴᎢ. ᎠᎴ ᎬᏂᏳᏉ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᏏᏆ ᎠᏯᏄᎵᏳ ᎤᎾᎵᏎᎢ, ᏭᏂᎦᏐᎠᏎ ᎦᏁᏡᎩ ᎬᏒᎢ, ᎥᏓᏝ ᏭᎾᎵᏔᏗᏅᏎᎢ, ᎠᎴ ᎠᎹᏱ ᏚᏂᎵᏬᏤᎢ. ᎦᎪᏰᏃ ᎢᏳᏍᏗ ᏴᏫ ᏧᏓᎴᏅᏛ ᏴᏫ ᏧᏤᎵᎦ ᎠᎦᏔᎭ? ᎤᏩᏒᏉᏍᎩᏂ ᏴᏫ ᎤᏓᏅᏙ ᎾᏍᎩ ᏧᏯᎠ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏧᏌᎴᏅᏛ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ, ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᏩᏒ. ᎢᏥᏍᎦᏯ, ᏕᏥᎨᏳᏎᏍᏗ ᏗᏣᏓᎵᎢ, ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏂᏆᏘᎮᏍᏗ. ᎤᏏᎾᏛᏎ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏝᏍᎪ ᏱᏥᎵᏓᏍᏗᎭ, ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᏦᎵᎬᎾ ᎨᏒ ᎪᏪᎵ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ? ᎤᎾᎵ ᎤᏚᎵᏍᎨ---ᎩᎶ ᏗᎾᏁᎶᎲᏍᎩ. ᎡᎵᏃ Ꮲ ᏦᎢ ᎢᏳᏟᎶᏓ ᎢᏴ ᎠᏂᎩᏓ ᏛᏓᎾᏅ. ᎧᏁᏍᎬ ᏗᏧᎦᏔᏁᎢ ᏧᏍᏆᏴᏍᏗ. ᎾᏍᎩᏯᏍᎩᏂ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎾᏍᎩᎨᏥᏁᎢᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏛᏂᎪᎯ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᎾᏛᎦᏅᎯ ᏂᎨᏒᎾ ᎨᏒ ᎾᏍᎩ ᏛᏃᎵᏥ. “ᏙᎢᏳᏍᏗ ᏄᏍᏆᏂᎩᏗ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎢᎾᎨᎢ ᎠᏁᎯ ᏒᎧᏔ ᏕᏧᎬ ᎭᏫᏂᏣ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏁᏓᏍᏗ, ᏍᏈᏍᏓ ᎠᏂᎳᎨᏰ ᎦᏙᎯ ᏧᏂᏍᏗ ᏒᎧᏔ, ᎤᏒᎯ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᏓᏂᎩᏍᎨᎢ ᏃᎴ ᏧᎳ ᎠᏂᎷᎨᎢ ᏓᎾᎵᏒᏍᏗᏍᎨᎢ. ᎠᎴ [ᎦᏁᏌᎢ] ᏥᏴ ᎦᎸᎳᏗᏢ ᎠᏂᎩᎷᏫ ᎦᎸᏉᏗᏳ ᎢᏯᏅᏁᎯ, ᎾᏍᎩ ᏧᏄᏢᏕ ᎦᏁᏌᎢ ᎫᏢᏗ; ᎾᏍᎩ ᎤᎬᏩᎵ ᎥᏝ ᎪᎯ ᎨᏒ ᏂᎦᏛ ᎦᏁᎢᏍᏙᏗ ᏱᎩ. ᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏚᎴᏅ ᎠᎴ ᏂᎦᏛ ᎬᏩᎵᎪᏁᎯ, ᎾᏍᎩ ᎠᏂᏌᏚᏏ ᏧᎾᏙᎢᏛ ᏥᎩ, ᎤᏂᎧᎵᏤ ᎤᏂᏔᎳᏬᏍᎬᎢ; ᏎᎦ ᎡᎳᏗ ᏫᏘᏅᏥᎵ ᎡᎵᏍᏗ, ᎠᏎᏃ ᎠᎧᏁᎸ ᏩᎫᏂᏱ, ᏃᏗ ᎦᏣᏄᎳ ᎠᎵᏖᎸᏂᏍᏗ ᏙᏱ ᎢᏴ, ᎤᏃᎴ ᎦᏒᎳᏍᎪ ᏘᎦᏙᎵ ᏃᎴ ᏘᎴᏂ ᏃᎴ ᏍᏘᏰᎬᎢ. ᎠᎴ ᎾᏍᎩ ᎠᏂᎩᎵᏲᎬ ᏚᎦᏒᏍᏛ ᏓᎴᎲᏍᎦ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ; ᎠᎴ ᎥᏝ ᎬᏩᎾᏣᏪᏐᎸᏍᏙᏗ ᏱᎩ, ᎢᎦ ᎠᎴ ᎡᏃᏱ, ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎾᏂᎥᏉ ᎩᎶ ᎾᏍᎩ ᏚᏙᎥ ᎨᎪᏪᎶᏔᏅᎯ. ᎠᎴ ᎤᏅᏁ ᎤᏩᏒ ᎤᏤᎵ ᎢᏤ ᏗᏓᏂᏐᏗᏱ, ᎾᏍᎩ ᎤᏲᎯ ᎤᏔᎴᏒᎢ; ᎡᏆᏃ ᏅᏯ ᎦᎶᎯᏍᏗᏱ ᎠᏤᎵᏍᏛ ᏭᏪᏌᏆᎴᎸ ᎤᏓᏅᏎᎢ. ᎦᎶᏁᏛᏰᏃ ᎤᏓᎨᏳᏗ ᎨᏒ ᏙᎦᏘᏁᎦ; ᎯᎠᏰᏃ ᏄᏍᏗ ᏙᏧᎪᏗᎭ, ᎾᏍᎩ, ᎢᏳᏃ ᎠᏏᏴᏫ ᎾᏂᎥ ᏱᏚᏲᎱᎯᏎᎸ, ᎿᏉ ᎾᏍᎩ ᎾᎯᎥ ᏚᏂᏲᎱᏒᎩ; ᎦᎵᏦᏕ ᏭᏴᎴ ᎤᏃᎴ ᏃᎴ ᎫᏘᏍᎬ ᎠᎿᏬᏍᏗ ᎤᎿᏬᎡ. “ᎤᏃᎴ ᎠᏲᏙᏗ ᎠᎩᎸᏗᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ. ᏃᎴ ᏍᏉ, ᎠᎩᎵᏬᎢᏍᏗ ᎨᏎᏍᏗ, ᎨᏍᏗ ᏯᏆᏚᎵ ᎥᎩᏂᏐᏗ ᎥᎩᎾᏌᎢ. ᎬᏂᏳᏉ, ᏦᎢᏁ ᎠᏆᏛᏅᎢᏍᏗ ᏫᏨᎷᏤᏗᏱ; ᎥᏝ ᎠᎴ ᎦᎨᏛ ᏱᏅᎨᏨᏴᎦ; ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᎢᏥᎲ ᏱᎩᏲᎭ, ᏂᎯᏍᎩᏂ ᎢᏨᏲᎭ; ᏗᏂᏲᎵᏰᏃ ᎥᏝ ᏧᏂᎦᏴᎵᎨ ᏧᎾᏓᏁᎳᏁᏗ ᏱᎩ, ᎠᏂᎦᏴᎵᎨᏍᎩᏂ ᏧᏁᏥ ᏧᎾᏓᏁᎳᏁᏗ ᎨᏐᎢ. ᎠᎴᏬ ᎤᎩᏨᏛ ᏣᏂ ᎦᏙᎬᎩ, ᎠᎴ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏓᏂᏙᎬᎩ. ᏣᏁᎳ ᎢᎦ. ᏚᏁᏤᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎠᏂᏆᎵᏏ ᎤᎾᏤᎵ ᎠᎪᏙᏗ ᎢᏤᏯᏙᏤᎮᏍᏗ, ᎠᎴ ᎡᎶᏗ ᎤᏤᎵ ᎠᎪᏙᏗ. ᎠᎴ ᎾᏍᎩ ᎠᏂ ᎤᏙᎯᏳᎯ ᏂᎦᎵᏍᏗᎭ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ; ᎩᎶ ᎠᏫᏍᎪᎢ ᏅᏩᏓᎴᏃ ᎠᏍᎫᏕᏍᎪᎢ. ᎮᎵᎠᏍᎪᏃ ᎨᏍᏗ ᎠᏆᏓᏅᏖᏙᏗ ᏱᎩ ᏄᏍᏛ ᏲᎾ ᎤᏤᏍᏙ?” ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᏱᎨᏣᎭ ᏰᎵ ᎠᏴ ᎪᎱᏍᏗ ᏍᏋᏁᏗᏱ, ᎦᎸᎳᏗ ᏅᏓᏰᏣᎵᏍᎪᎸᏓᏁᎸᎯ ᏂᎨᏒᎾ ᏱᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎠᏴ ᏗᎩᏲᏒᎯ ᏂᎯ ᏗᏣᏲᎯᏎᎸᎯ ᎤᏟ ᎡᏉᎯᏳ ᎤᏍᎦᏅᏨ. ᏗᏧᎪᏓ ᎢᏨᏒ ᎨᏒᎢ; ᎤᎵᎶᎲᏍᎦᏍᎪ ᎠᎨᏴ ᎤᏁᎳᏅᎯ ᏯᏓᏙᎵᏍᏓᏁ ᏄᎵᏍᏚᎸᎾ? ᎦᎸᎳᏗ ᎠᏯᏖᏃ ᏫᏂᏚᏩᏁᎴᎢ ᎠᎬᏱᏣ ᏧᎳᏏᏕᎾ ᏭᎦᏖᏃᎴᎢ. ᎠᏂᏫᏒᎥᏍᎩ, ᎠᏆᏛᏅ. ᎠᏯᏲᎪ ᎨᏍᏗ ᏱᏥᏏᎾ ᏍᎩᎾᎾ ᎢᏯᏆᏛᏁᏗ. ᏃᏗ ᎦᏂᏴᏗ ᎠᏍᏕᏯᏓ, ᎠᏎ ᏴᏍᎦᎢ ᏃᎴ ᎠᎫᎸᏔᏂᏕᎾ ᏱᎩ. ᏧᏂᏍᏗ ᏓᎾᏦᎭᏱᎲ ᎤᎵᏍᏙᎭᏴᏗ, ᏣᏂᎦᏴᎵ ᏚᏂᏏᏩᏍᎬ, ᎭᏫᏂ ᎤᎾᏛᎶᏗ ᎤᏃᏴᎬ. ᎾᏍᎩ ᏥᏓᎦᏘᎴᎦ ᎠᎴ ᎦᎸᎳᏗᏢ ᏥᎾᏓᏛᏁᎭ ᏂᎦᎥ ᎤᎾᎳᏅᎯ ᎨᎪᏎᏗ ᏥᎩ, ᎠᎴ ᎨᎦᏓᏙᎵᏍᏓᏁᎯ ᏥᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᎤᏬᎳ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎤᏩᏒ ᎬᏂᎨᏒ ᎾᏓᏛᏁᎭ ᎤᏁᎳᏅᎯ ᎨᏒᎢ. ᎤᏍᏆᎸᎲᏃ ᎾᎯᏳ ᎨᏒᎢ, ᎤᏂᏏᏁᎢ, ᎠᎴ ᎾᏍᏉ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏥᏅᏏᏛ. ᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ, ᏥᏌ ᎤᏩᏝᎥ ᎦᏙᎬᎩ; ᎠᏎᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎥᏝ ᏯᏂᎦᏔᎮ ᏥᏌ ᎨᏒᎢ. ᎠᎴᎧᏂ ᏧᏙ ᏂᎦᏛ ᎡᏍᎦᏂ ᏣᏁᎭ? ᎦᏙᏃ ᎤᎵᏍᏙᏔᏅ ᎯᎠ ᏂᎦᏛ ᏧᏪᎭ? ᎤᎵᏒᎲ ᎤᏍᏗ ᎦᎷᏯᏍᏗ ᏃᎴ ᎠᏰᎳᏍᏗ ᏃᎴ ᎤᎦᏛᏅ ᏂᏕᎦᎨᏒ ᏃᎴ ᏂᏕᎪᏍᏔᏴ. ᏩᏥᎳ ᏃᎴ ᎤᏩᎾᏕᏍᎩ ᎨᏴ ᏅᏯ ᎬᏘ ᎪᏍᏔᏱ ᎢᏳᏩᏁᎸ. ᏚᎴᏅᏃ ᏧᏪᏅᏒ ᏭᎶᏎᎢ. ᏚᏛᏛᏁᏃ ᏗᏃᏪᎵᏍᎩ, ᎦᏙ ᏕᏣᏛᏛᎮᎸᎥᏍᎦ ᏚᏪᏎᎴᎢ? ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏅ ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ ᎦᎪᏃ ᏰᎵ ᏯᏥᏍᏕᎸ? ᎠᏎᏃ ᎠᏆᏁᎳᏅᎯ ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᏂᎦᎥ ᎢᏥᏂᎬᏎᎲᎢ, ᎾᏍᎩᏯ ᎤᏪᎿᎢᏳ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ. ᎠᏎᏃ ᎡᏥᎦᏔᎭ ᏄᏍᏛ ᎾᏍᎩ ᎠᏥᎪᎵᏰᎥᎢ, ᎾᏍᎩ ᎩᎶ ᎤᏪᏥ ᎤᏙᏓ ᏣᏍᏕᎵᏍᎪ ᎾᏍᎩᏯ ᎠᎩᏍᏕᎸᎯᏙᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᎵᏱᎸᏍᏗᏱ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ. ᎯᎠᏰᏃ ᎾᏍᎩ ᏥᎦᏔᎭ, ᎿᏉ ᎠᎩᏁᎴᏍᏗ, ᎤᏂᎬᎥᏍᎩ ᏩᏯ ᏓᎨᏣᏓᏑᏴᏂ, ᏂᏓᏂᏙᎵᎬᎾ ᎨᏎᏍᏗ ᏑᎾᏓᏡᎩ ᎨᏒᎢ. ᏕᎾᏓᎪᎬᏳ ᏌᎳᏓ ᎯᎶᏅᎮᏍᎩ. ᏄᏓᎴ ᎦᏚᎲ ᎤᏃᏒᎲ ᏧᎾᏗᏔᏍᏗ, ᎭᎾ ᏧᏓᎴᏅᎲ ᎣᎯᏍᏙᏗ ᏩᎦ ᎭᏫᏯ ᎠᎩᏍᏗ ᎠᎾᏗᏍᎬ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏉᎯᏳᎮ, ᏂᎬᎾᏛ ᎠᏁᎰ ᏩᎦ ᎤᏐᏱ ᎭᏫᏯ ᎭᏫᏂ ᏗᏂᏰᎸ. ᏅᎩ ᎤᎾᏓᏅᏂ ᎠᏂᏲᏍᎩ, ᎦᏰᎵᏍᏗᏱᎩ ᎤᎾᏓᏅᏂ ᏅᎩ ᎢᏯᏂ. ᎭᏫᏂ ᏚᎭᏄᏮ ᎤᏩᏌ, ᏧᏍᏆᏅᎾ ᎦᏚᎢ ᎤᏬᏢ, ᎦᏌᎴᏅ ᎤᏐᏓᎸ ᏱᏚᎧᏁᎲᎾ ᏧᎳᏑᎶ. ᎢᏥᎦᏔᎭᏰᏃ ᎣᏂ ᎢᏴᏛ ᎣᏍᏛ ᎢᏯᎦᏛᏁᏗᏱ ᏧᏚᎵᏍᎨ ᏣᏥᏐᏅᎢᏍᏔᏁᎢ; ᎥᏝ ᏰᏃ [ᎤᏙᏓ] ᎤᏓᏅᏛ ᎬᏩᏁᏟᏴᏍᏗ ᎨᏒ ᏳᏩᏛᎮᎢ, ᎤᎵᏏᎾᎯᏍᏗᏳᏍᎩᏂᏃᏅ ᎠᎴ ᏗᎬᎦᏌᏬᎢᎯ ᎤᏲᎴᎢ. ”ᎭᏫᏂ ᎭᏛᎵᎦ!” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏰᏥᏍᎩ. ᏝᏍᎪ ᎡᏆᎭᎻ ᎢᎩᏙᏓ ᏳᏚᏓᎴᏍᏔᏁ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎤᎵᏍᎪᎸᏔᏅ ᎤᏪᏥ ᎡᏏᎩ ᎠᏥᎸ ᎨᎳᏍᏗᏱ? ”ᎦᏙᏃ ᏱᎦᎷᎬᎾ ᏥᎩ ᏲᎾ ᎤᏤᏍᏙ?” ᎤᏪᎵᏎ. ᏃᏉ ᎾᎥᏂ ᏛᏗᏏ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎤᎩᎸᏛ ᏍᎩᎾᎾ ᏅᎩ ᏗᎦᏅᏌᏗ. ᏧᏓ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᎷᏈᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᎦᏗ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᏕᏧᎬ? “ᏤᏍᏗ ᏱᏣᎸᏂᏗᏍᎨᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ. ᎠᏂᏔᎵ ᎠᏂᎨᏴ ᎢᏧᎳᎭ ᎠᏂᏍᏙᏍᎨᏍᏗ; ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ! ᏕᏦᏢᎯᏏᏍᎪᏰᏃ ᎠᎾᏙᎴᎰᏍᎩ ᏕᎨᏥᏂᏌᎲᎢ, ᎠᎴ ᏗᏥᏙᏓ ᏕᎤᏂᎸᎩ. ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎪᎱᏍᏗ ᎤᏄᎸᏗ ᏱᎨᏎᏍᏗ. ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᎢᎬᏱᏱ ᎨᏒ ᎠᎴ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ; ᎠᎴ ᏄᏍᏛ ᎯᎪᏩᏘᏍᎬ ᎰᏪᎸᎦ ᎪᏪᎵᎯ ᎠᎴ ᏫᎩᏅᎥᏏ ᏧᎾᏁᎶᏗ ᎦᎵᏉᎩ ᏄᎾᏓᏡᎬ ᎡᏏᏱ, ᏫᎩᏅᎥᏏ ᎡᏈᏌ ᎠᏁᎯ, ᎠᎴ ᏑᎹᏂ, ᎠᎴ ᏆᎩᎹ, ᎠᎴ ᏓᏱᏓᎵ, ᎠᎴ ᏌᏗᏏ, ᎠᎴ ᏈᎵᏕᎵᏈ, ᎠᎴ ᎴᎣᏗᏏᏯ. ᎤᏡᏗᏍᎩᏃ ᏧᏃᏁᎸᎯ ᎨᏎ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ ᎯᎠ ᎢᏳᏪᏒᎯ ᎨᏎᎢ; ᎩᎶ ᏥᏯᏚᏣᎳᏅᎭ ᎾᏍᎩ ᎨᏎᏍᏗ, ᎠᏍᏓᏯ ᏕᏥᏂᏴᎲᎭ. ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏓᎧᎿᏩᏗᏙᎮᏍᏗ ᏩᏓᏅᏙ. ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ. ᎡᎺᏅ. ᎩᎶ ᏧᎸᏉᏙ ᎢᎦ ᎤᎬᏫᏳᎯ ᎦᎸᏉᏓᏁᎰᎢ; ᎩᎶᏃ ᏄᎸᏉᏛᎾ ᏥᎨᏐ ᎢᎦ, ᎤᎬᏫᏳᎯ ᎦᎸᏉᏗᏍᎪ ᏄᎸᏉᏛᎾ ᎨᏒᎢ. ᎩᎶ ᏣᎵᏍᏓᏴᎲᏍᎪᎢ, ᎤᎬᏫᏳᎯ ᎠᎵᏍᏓᏴᎾᏁᎰᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎠᎵᎮᎵᏤᎰᎢ; ᎠᎴ ᎩᎶ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᏥᎨᏐᎢ, ᎤᎬᏫᏳᎯ ᎦᎸᏉᏙᏗᏍᎪ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᎰᎢ. ᎢᎾᏧ ᏫᎦᎶᎯᏍᏗ? ᎬᏂᏳᏉ ᏎᏓᏂ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎳ ᏅᏓᎦᏥᏴᏁᎵ, ᎾᏍᎩ Ꮎ ᎣᏥᏧᏏ ᏣᎾᏗᎭ, ᎠᏎᏃ ᎾᏍᎩ ᏄᎾᏍᏛᎾ ᏥᎩ, ᎠᎴ ᏣᎾᏥᎪᎥᏍᏚᏉ, ᎬᏂᏳᏉ ᎤᏂᎷᎯᏍᏗᏱ ᏅᏓᎦᏥᏴᏁᎵ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏂᎪᏍᏗᏱ ᏕᏣᎳᏍᎬᎢ, ᎠᎴ ᎤᏂᎦᏙᎥᏍᏗᏱ ᎬᎨᏳᎢᏳ ᎨᏒᎢ. ᏃᏗ ᏐᏉ ᏗᎫᎪᏗᏍᎩ ᎤᏴᎵᎴ ᎠᏦᏴᎢ ᏗᎦᏁᎯ ᏗᏓᏔᎶᎯᏍᏗ. ᏔᎵ ᏧᏙᏓᏆᏓ ᏥᏯᎥ ᎠᏥᎳ ᏓᏆᎴᎳ ᎦᏣᏄᎳ ᎠᏓᏏᏒ, ᎯᎸᎢᏴ ᏔᎵᏍᎪ ᎢᏳᏥᎶᏓ ᎠᏓᏏᏒ, ᎦᏂᏍᏚᎩ ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎢᏳᏓᏅᎯᏓ. ᏕᎫᎪᏓ ᎢᏯᏆᏛᏁᏗᏱ, ᎾᏍᎩ ᎥᎩᏌᏕᏒ ᎠᏆᎦᏌᏯᏍᏗᏕᎩ ᎨᏒ ᏗᎦᎬᏆᏓᏂᎸᎢᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏓᏂᏁᎸᎢ. ᎾᎿᏃ ᏫᎤᏪᏅ, ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎠᎾᎵᏅᏟ ᏚᎪᎮᎢ, ᏥᎻ ᏤᏈᏗ ᎤᏪᏥ ᎤᏅᏟᏃ ᏣᏂ, ᏤᏈᏗ ᎤᏂᏙᏓ ᏥᏳᎯ ᎤᎾᏣᎡᎢ, ᏓᏃᏢᎯᏏᏍᎨ ᏧᏂᎦᏯᎷᏗ; ᏫᏚᏯᏅᎮᏃ. ᏑᏓᎵᏁᏃ ᎧᎸᎢ ᏗᎧᎿᏩᏗᏙᎯ ᎨᏈᎵ ᎤᏁᎳᏅᎯ ᎤᏓᏳᏅᏏᏛ ᎤᎷᏤ ᎦᏚᎲ ᎨᎵᎵ ᎾᏎᎵᏗ ᏧᏙᎢᏛ, ᎤᏣᏘᏅ ᎢᏣ ᏫᏥᎦᏘ ᎤᏛᏅ ᎦᎷᏯᏍᏗ. ”ᏍᎩᏗ ᏂᏥᏫ, ᏍᎩᏗ ᏂᏥᏫ,” ᎤᏛᏁ ᏌᏌ. ᎾᎥ ᏂᏄᎾᏓᎸ ᏃᎴ ᎤᏗᎴᎩ ᎨᏒ ᎪᎨ. ᎦᏲᏟ ᏒᏃᏰ ᏙᏌ ᏳᎾᏕᏙᏛᎾ ᏱᎩ, ᎣᎯᏍᏙᏗ ᎠᎩᏰᎸᎲ ᏙᏱᏨ ᎠᎩᏢᏗ ᎠᏲᏓᏌᎲ, ᎦᎦᏙᏍᏛ ᏅᏙ ᎤᏒᎯ ᎡᎯ, ᎠᎹᏱ ᎤᏓᏴᎳᏛ ᏃᎴ ᎠᏙ ᎾᎥ ᎣᏥᎶᏍᎬ. ᏯᎵᏖᎸᎲᏍᎬᎾ ᎤᏬᏞ ᎤᏛᎦᏍᏕ ᎠᏂᏬᏂᏍᎬ ᏴᏫ. ᎠᏂᏴᏫᏯ ᏗᏂᎭᏲᎯ ᏱᏕᎬᏂᎷᎦ ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ, ᎠᏂᏲᏍᎩ ᏍᏉ ᏰᎵᏉ ᏁᎳᎩᏉ ᏯᏁᎳ. ”ᎣᏍᏓ ᎤᏒᎯ ᏫᎵᎻ!” ᎠᎴ ᏧᎦᎪᏔᏅᎯ ᏥᎩ ᏴᏫ ᏌᏉ ᎢᏧᏂᏲᎯᏍᏗᏱ, ᎣᏂᏃ ᏗᎫᎪᏙᏗ ᎢᎦ ᎨᏒᎢ; ᎠᏂᏍᎦᏯᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᏉᏰᏃ ᎤᏃᎴ ᎠᎴ ᎥᏓᎵ ᎢᎬᏬᎯᏳᎲᏍᎦ. ᏂᎦᏓᏗ ᏓᏍᏆᏚᎸ, ᏩᏴᏍᏗ, ᎠᏍᏚᏗ ᎦᎶᎯᏍᏗ, ᎤᏐᏱᏉ ᏱᏓᎦᏔᏍᏔᎾ. ᏣᏓᎦᏌᏍᏕᏍᏗ ᏨᏒ ᎠᎴ ᏄᏍᏛ ᏕᎭᏕᏲᎲᏍᎩᎢ, ᎾᏍᎩ ᏕᎯᏍᏓᏩᏗᏎᏍᏗ; ᎾᏍᎩᏰᏃ ᎿᏛᏁᎲ ᏨᏒ ᏔᏓᏍᏕᎸᎯ ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ Ꮎ ᎨᏣᏛᏓᏍᏓᏁᎯ ᏙᏘᏍᏕᎸᎯ. ᎤᏔᏍᎩᏎ ᎤᏲᏤ, ᏃᏗ ᎤᏲ ᎠᏒᎩ. ᎿᏉᏃ ᎤᏂᏔᏲᎴ ᎤᎬᏫᏳᎯ; ᎤᏁᎳᏅᎯᏃ ᏚᏪᎧᏁᎴ ᏐᎳ ᎩᏌ ᎤᏪᏥ ᏇᏂ ᏧᏴᏫ, ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎢᎪᎯᏛ. ᎠᎴ ᏂᎦᏗᏳ ᏴᏫ ᎨᏥᏍᎦᎩ ᎨᏎᏍᏗ ᎠᏴ ᏧᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎩᎶᏍᎩᏂ ᎬᎵᏍᏆᏗᏍᎩ ᏗᎧᎿᏩᏕᎩ, ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎨᏍᏗ ᏱᏗᏥᎪᏩᏘᏍᎨ ᏚᎾᎧᏛ ᏴᏫ, ᎠᏂᏬᏂᏍᎬᏉ ᏕᎪᎵᎬ, ᎢᎦᏓ ᏥᏧᏣ ᏥᎨᏒ ᏦᎦᏙᎵᏨ. ᏧᎧᏌᏔᏁᎢ ᎠᏍᎪᎵ ᏥᏍᏕᏥ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ. ᏕᏫᏰᏃ ᎥᏝ ᏳᎵᏌᎳᏓᏅ ᎦᎸᎳᏗ ᏫᏳᎶᏒ, ᎯᎠᏰᏃ ᏂᎦᏪ ᎤᏩᏒ; ᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎸ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ; ᏥᎦᏘᏏ ᎢᏗᏢᏦᎴᏍᏗ, ᎯᎠᏍᎩᏂ [ᏄᏍᏗ;] ᎩᎶ ᎦᏲᎵ ᎠᏫᏍᎩ, ᎾᏍᎩ Ꮎ ᎾᏍᏉ ᎦᏲᎵ ᎤᏍᏚᏕᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎩᎶ ᎤᎪᏗ ᎠᏫᏍᎩ ᎾᏍᎩ Ꮎ ᎾᏍᏉ ᎤᏍᎫᏕᏍᏗ ᎨᏎᏍᏗ. ᏭᏓᏅᏖᎴ ᏄᏪᏎᎸ ᎤᏥ, ᏁᎳᎩᏃ ᏣᏍᎦᎢᎮ, ᏫᏥ ᏭᏓᏬᎥᏍᏗ ᏚᏭᎪᏔᏁᎢ. ᎠᎴ ᎤᏚᎵᏍᎨ ᎤᎯᏍᏗᏱ, ᎠᏎᏃ ᏓᏍᎦᎢᎮ ᏴᏫ, ᎠᏙᎴᎰᏍᎩᏰᏃ ᎤᏂᏰᎸᏎ ᏣᏂ. ᎠᏎᏃ ᎢᏳᏃ ᏂᏚᏳᎪᏛᎾ ᏃᎦᏛᏁᎸ ᎬᏂᎨᏒ ᏱᏂᎬᏁᎭ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎦᏙ ᏓᏓᏛᏂ? ᎠᏍᎦᏅᎦᏍᎪ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏥᏓᏍᏛᏗᏍᏙᏗᎭ? (ᏴᏫᏉ ᎢᏳᏪᏍᏗ ᏂᏥᏪᎭ). ᏩᏲᎯ, ᎨᏍᏗ ᏳᏩᏁᎦ ᎢᏳᏍᏗ ᎫᏩᎾᏓᏍᏕᏓᎵᏴᏍᏗ ᎠᏎ ᎢᎦᏉ ᏳᎾᏁᎸᏔᏅ ᎡᎵᏍᎨ ᏲᎾ. ᏧᎾᏓᎴᏅᏓ ᎠᏣᏗ ᏚᎪᎮ. ᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎤᎾᏓᏡᎬ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎯᏁᏥ ᏦᏍᏓᏓᏅᏟ ᏔᎵ ᎢᏲᎩᏂᏗᏍᏗᏱ ᏧᎬᏩᎶᏗ ᎤᏘᏴᎯ. ᎠᏫᎾ ᎠᏍᎦᏰᎬᏍᏓ ᏃᎴ ᏦᎢ ᎢᏯᏂ ᏕᎨᎪᏪᎵ ᎠᏂᏲᏍᎩ, ᎠᏂᏧᏣ Ireland, Philadelphia ᏃᎴ ᏣᎵᏍᏙᏂ ᏓᏳᏂᎶᏒ. ᎠᏟᏅᏨ ᎦᏳᎳ ᏧᏂᎾᏗᏅᏓ ᎨᏎ. ᎾᏍᎩᏃ ᎤᏓᎢᏅ ᎤᏄᏬ ᏚᎴᏁᎢ, ᎠᎴ ᏥᏌ ᏭᎷᏤᎴᎢ. ᏄᏓᏅᏛᎾᏛ, ᎠᎾᏗᏍᎨ ᎠᏂᏴᏫ. ᏄᏓᎴ ᎠᎨᏳᏣ ᏃᎴ ᏄᏓᎴᎯ ᎤᏍᏗᎩᎨ ᏏᏆ. ᎤᏁᎦ ᏗᎧᏃᏗ, ᎠᏂᏳᏩᏁᎦ ᏧᎾᎭᎾᏬ, ᏳᏩᏁᎦ ᎾᎾᏛᏁᎲ ᎢᏯᏛᏁᏗ, ᏳᏩᏁᎦ ᎢᎦᎵᏍᏙᏗ. ᎦᏛᎩᏍᎬ ᏣᏓᎨᏳᏒ ᎠᎴ ᏦᎯᏳᏒᎢ, ᎾᏍᎩ ᏥᎨᏳᎭ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᏥᏕᎯᎨᏳᎭ; ᎠᎴ ᎬᏂᎨᏒ ᏅᏋᏁᎸᎢ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏇᏅᏒᎩ, ᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎦᏥᏯᎵᏥᏙᏁᎲᎢ; ᎠᏂᏏᏴᏫᎭᏍᎩᏂ ᎤᏕᎵᏛ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎸᎩ ᏗᏂᏃᏣᎵ ᎨᏒᎢ, ᏯᏎᎦᎩ ᎠᏎᏉ ᏱᏙᏥᏍᏆᎸᏓ ᎠᎴ ᎠᏎᏉ ᏱᏓᎩᏍᏆᎸᏔᏅ ᎠᏇᎵᏒᎩ. ᏄᎬᏫᏳᏒᏃ ᏗᏓᏘᏂᏙᎯ ᎤᏬᏯᏁᏒ, ᎢᏴᏛ ᎤᏕᎵᏒ ᏭᏘᏅᏍᏔᏅᎩ, ᎤᏛᏛᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙ ᎾᏍᎩ Ꮎ ᏍᎩᏃᏁᏗ ᏥᎩ? ᏥᏌᏃ ᎤᎴᏫᏍᏔᏅ ᎤᏁᏤ ᏩᏥᏯᏅᏗᏱ. ᎤᏂᏯᏅᎮᏃ ᏗᎨᏫ, ᎯᎠ ᏄᏂᏪᏎᎴᎢ, ᎤᎦᎵᏍᏗᏉ ᎭᏓᏅᏓᏓ; ᏔᎴᎲᎦ; ᏗᏣᏯᏂᎭ. ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏆᎭᎻ ᎾᎯᏳ ᎠᏥᏯᏅᎲ ᎢᎸᎯᏢ ᎤᏪᏅᏍᏗᏱ ᎾᏍᎩ ᎾᎿ ᎣᏂ ᎢᏴᏛ ᎤᏤᎵᎦ ᎢᏯᎬᏁᏗ ᎨᏒᎢ, ᏧᏬᎯᏳᏁᎢ; ᎠᎴ ᏧᏄᎪᏤᎢ ᎾᎦᏔᎲ ᎾᎿ ᎠᎢᏒᎢ. ᎿᏉᏃ ᏧᎦᎾᏮ ᎢᏗᏢ ᏧᏃᎸᏔᏅ, ᎾᏍᎩ ᎢᎦᏚᎵᏍᎬ ᏂᎦᎵᏍᏓ ᎤᏁᎵᏒ, ᎤᏂᎧᏙᏴᎩ, ᏟᏗ ᎾᎥᎢ ᎤᏂᏅᏍᏔᏅᎩ. ᎾᏍᎩ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ ᏂᎬ ᎠᏰᎸ ᎣᏍᏛ ᏗᏙᎵᎩ ᏥᎩ, ᎠᎴ ᏥᏚᏚᏓᏕᏫᏍᏗ ᏂᎦᎥ ᏚᎯᏢᎾᎥ ᏥᏚᎵᏍᏕᎸᏙᏗ, ᎾᏍᎩᏯ ᎠᏟᎶᎥ ᏧᎸᏫᏍᏓᏁᏗᏱ ᏧᏓᏤᎵᏛ ᏕᎨᏌᏗᏒᎢ, ᎧᏁᏉᏍᎪ ᎠᏰᎸᎢ, ᎠᏓᎵᏂᎪᎯᏍᏗᏍᎪ ᎤᏩᏒ ᎠᏓᎨᏳᏗ ᎨᏒᎢ. ᏗᎩᎦᏴᎵᎨᏃ ᎠᏅᏳᏤᎲ ᏅᏗᎤᎵᏍᏙᏔᏁ ᎤᏂᎾᏗᏅᏎ ᏦᏩ ᎢᏥᏈᏱ ᏩᎦᏘᏅᏍᏙᏗᏱ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏚᎧᎿᏩᏗᏙᎮᎢ, ᏓᏂᏍᎦᎢᎯ ᏧᏟᎶᏍᏔᏅ ᎠᎴ ᏧᏬᏪᎳᏅ ᎤᏐᏅᎢᏃ ᎠᏁᎵᏍᎨ ᏄᏍᏛ ᏚᏟᎶᏍᏛ ᎠᎴ ᏚᏬᏪᎸ. ᎩᎶᏃ ᎤᎾᏓᏑᏴ ᎤᏅᏳᏤ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᎯᎠ ᎠᏤᏬᎩ ᎠᏠᏁᏗ? ᏍᎩᎾᎾ ᎣᏍᏓ ᎠᎩᏰᎸ.” “ᏌᎳᏓ,” ᎠᏍᎩᏗᏍᎩ ᏄᏪᏎ ᏫᎵᎻ, ᎤᏙᎯᏳᎯᏍᎪ ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᏗᏂᏲᏟ ᏕᏣᎧᎮᏍᏗ? ᏍᎩᎾᎾ ᎡᎾᎢ ᎤᎪᏏᏓ ᎢᏯᏅᏁ ᏓᏃᏎᎰ. “ᎭᏩ,” ᎤᏛᏁ ᎤᏥ, “ᏐᏉᏃ ᏏᏆ ᎤᏍᏗᎩᎨ. ᏥᏌᏃ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ; ᏴᏫ ᎥᏝ ᎦᏚᏉ ᎤᏩᏒ ᏱᎬᎿᏗᏍᏕᏍᏗ, ᏂᎦᎥᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎢ. ᎠᏎᏃ ᏆᏂᏆ ᏭᏯᏅᎲ ᏚᏘᏃᎮᎴ ᎨᏥᏅᏏᏛ, ᎠᎴ ᏚᏃ ᏁᎴ ᎤᎬᏫᏳᎯ ᎤᎪᎲᎢ ᎠᎢᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏬᏁᏔᏅᎢ, ᎠᎴ ᎾᏍᎦᎢᎲᎾ ᏥᏌ ᏕᎤᏙᎥ ᎤᏁᎢᏍᏔᏅᎢ ᏕᎹᏍᎦ. ᎩᎶᏃ ᎦᏌᎾᎵ ᎤᎩᎴᏍᏗ ᏞᏍᏗ ᏴᏗᎤᏠᎠᏎᏍᏗ ᏳᎩᏐᎴᏍᏗ ᎪᎱᏍᏗ ᎤᎲ ᎦᏁᎸᎢ; ᏈᎵᏏᏃ ᎾᏍᎩ ᎤᏛᎦᏅ, ᎠᎴ ᎤᏟ ᎢᎦᎢ ᎤᎦᏙᎥᏒ ᎾᏍᎩ ᎦᏅᏅᎢ, ᏚᏬᎯᏕᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎵᏏᏯ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎦᎷᏨᎭ ᏓᎦᏛᎦᏃᏂ ᏥᏥᏱᎵᏙᎭ. ᏔᎵ ᎢᏯᏅᏓ ᎤᎶᏒᏍᏗ ᎤᏪᏘᏲᏨ ᎡᎶ ᎤᎵᏖᎸᏁ ᎤᏩᏒᏙᎥᏔᏁ ᏐᏉ ᎢᏣ ᏧᎾᏦᎯᏍᏗ ᏃᎴ ᎦᏌᎾᎵ ᎤᏩᏒᏙᎣᏎ. ᎠᏂᏐᎢ ᎠᏂᏔᎵ ᎠᏂᏴᏫᏯ ᏅᏲ ᏫᏚᏂᎵᎢᎳᏛ ᎦᎶᏇ, ᎠᏙᎯ ᎢᏣ ᏭᏂᎶᏒ, ᎨᏍᏗ ᏳᏂᎷᏨ. “ᏌᎳᏓ,” ᎤᏛᏁ ᎪᎯᎢᏴ, “ᎮᎵᎠᏍᎪ ᏰᎵᏉ ᏛᏆᎵᏍᎪᎸᏓᏁᎵ ᎠᏆᏕᏗ ᎰᎻ ᏃᎴ ᎨᏍᏗ ᏱᏛᎩᎵ ᎤᏴᏣ ᏂᎦᎵᏍᏔᏅ? ᏞᏍᏗ ᎤᏲ ᏁᏨᏁᎲ ᏱᏣᏞᎨᏍᏗ ᎤᏲ ᏱᏂᏣᏓᏛᏁᎮᏍᏗ, ᎠᎴ ᎦᏰᏥᏐᏢᏔᏅ ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ ᏱᎨᏣᏓᏐᏢᏗᏍᎨᏍᏗ, ᎣᏍᏛᏉᏍᏗᏂ ᎨᏥᏁᏤᎮᏍᏗ; ᎢᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᎡᏥᏯᏅᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏣᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎣᏍᏛ ᎡᏥᏁᏤᏗᏱ. “ᎮᏂᎵ ᎤᎵᏲᏗ ᎪᎵᎩ,” ᎤᏛᏁ ᎪᏱᏁ ᎤᏰᏥᏍᎩ. ᎥᏝ ᎤᎾᏓᏅᏘ ᏱᏗᏥᏯᏅᎯᎸ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ. ᎺᎵᏍᎩᏂ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏔᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏓᏅᏖᎯᎶᏒ ᏧᏓᏅᏛᎢ. ᎾᎥᏃ ᎠᏂᎶᏍᎩ ᎦᎬᏩᏢᏕᎢ, ᎠᎴ ᏓᎾᎵᏍᏛᏁᎮᎢ, ᎠᎴ ᎡᎾ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᎧᏱᏆ ᎠᎴ ᏣᏂ ᎠᎴ ᎡᎵᎩ ᎠᎴ ᏂᎦᏛ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎪᎱᏍᏗ ᏧᏩᏅᏚᏂᎳᏫᏤ ᏥᎷᏏᎵᎻ. ᎠᏯᏦᎯ ᏭᎳᎩᏎᎢ ᏣᏄᏏ, ᎤᏓᏃᏴᎵᏓ ᎤᏟᏴᏍᎩᎸᎮᎢ, ᏰᎵ ᏐᏈᎵ ᏗᏂᎦᏘᏱ ᎤᎾᏛᎦᏁᎢ ᏐᏈᎵ ᎤᏂᏴᏍᏗ ᎢᏴ. ᎾᎯᏳᏃ ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᎷᏤ ᎥᏖᎣᎩ. ᎭᏩ ᎣᏍᏓ ᏱᎩ ᏭᏕᎵᎬ ᎢᏣ, ᏂᎪᎯᎸᎾᏉ ᎠᏂᏳᏩᏁᎦ ᏯᏂᎩᏐᎾ ᎦᏙ, ᏍᎩᎾᎾ ᏄᎾᏍᏗ, ᎨᏍᏘᏰᏃ ᏰᎵᏉ ᎠᏁᎵᏍᎩᏱᎩ. ᎦᏙᎯᏰᏃ ᏣᏗᏔᏍᎪ ᎠᎹ ᏯᏃ ᎤᎦᎿᏂᎯᎲᎢ, ᎠᎴ ᏥᎦᎾᏄᎪᏫᏍᎪ ᎠᏛᏒᎥᏍᎩ ᎪᎱᏍᏗ ᎤᏅᏙᏗ ᎾᏍᎩ Ꮎ ᎦᏙᎯ ᎨᏥᎶᎦᏁᎸᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎾᏛᏁᎰᎢ. ᎦᎶᏁᏛᏰᏃ-ᏥᏌ ᏗᏁᎶᏙᏗ ᎨᏒ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ, ᎠᎴ ᎠᎱᏍᏕᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎢᏤᏍᎩᏂ ᎢᏯᎬᏁᎸᎯ ᎰᏒᎢ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᎪ ᏂᎯ? ᏫᏙᏥᏃᏁᏗᏱᏰᏃ ᏅᏓᎪᎩᏅᏒᎯ; ᎦᏙ ᎭᏗᎭ ᏨᏒ ᎭᏓᏃᎮᏍᎬᎢ? ᏞᏍᏗ ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏣᏓᏙᎵᏍᏓᏁᎯ ᏱᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎢᎦᏛ ᎾᏍᎩ Ꮎ ᏥᏄᎾᏍᏕᎢ; ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏴᏫ ᎤᎾᏅᏅᎩ ᏛᎾᎵᏍᏓᏴᏂᏒᎩ ᎠᎴ ᏛᎾᏗᏔᎯᏒᎩ, ᏚᎾᎴᏅᎩ ᎤᎾᏁᏦᏅᎩ. ᏗᎾᏤᎯᏃ ᏕᏥᏁᏤᎭ, ᎥᏝ ᎠᏴᏉ, ᎤᎬᏫᏳᎯᏍᎩᏂ ᏕᎧᏁᏤᎭ, ᏞᏍᏗ ᎠᎨᏴ ᏳᏓᏅᎡᎴᏍᏗ ᎤᏰᎯ; ᎨᏍᏗ ᏳᏓᏍᏕᏓᎵᏴᏌ ᏫᎵᎻ. ᎦᏙᏃ ᎯᎠ ᎠᏍᎦᏯ ᎯᎠ ᏂᎦᏪᎭ ᎢᎠᏐᏢᎢᏍᏗᎭ? ᎦᎪ ᏰᎵ ᎠᏍᎦᏅᏨ ᎬᏩᏓᏙᎵᏍᏗ, ᏌᏉᏉ ᎤᏩᏒ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ? “ᏌᎳᏓᏗ ᏰᎵᏉ ᏱᎾᏛᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ. ᎤᎾᏌᎯᏴᏓ ᎦᏃᎸᎥᏍᎬ ᎦᎶᏍᎨ ᏗᎦᎶᎯᏍᏗ ᏃᎴ ᏦᎳᎾ. ᎣᏍᏓ ᏄᎵᏍᏔᏁᎮ ᎤᏩᏌ ᎤᏪᏅᏒ ᎡᏙᎲ. ᏥᏌᏃ ᎤᏙᏯᏅᎯᏛ ᎤᏒᏂᎴᎢ, ᎦᏓᏅᏛᎵ, ᏣᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ, ᎤᏬᏎᎴᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏰᏍᎩ ᎤᏢᎬ ᎤᏓᏅᎦᎸᎮᎢ. ᏥᏌᏃ ᎥᏝ ᎠᏏ ᏱᎦᎷᎨ ᎦᏚᎲᎢ, ᎾᎿᏉᏍᎩᏂ ᎹᏗ ᏫᏚᏠᏒ ᎡᏙᎲᎩ. ᏥᎪᎥᏃ ᏚᎳᏍᎬ ᎠᎩᏅᏨᎩ ᎠᎩᏲᎱᏒᎯ ᎢᎦᎦᏛ. ᎠᎦᏘᏏᏗᏢᏃ ᎤᏬᏰᏂ ᎠᏆᏏᏔᏗᏍᏔᏅᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᎠᏴ ᎾᏍᎩ Ꮎ ᎢᎬᏱᏱ, ᎠᎴ ᎤᎵᏍᏆᎸᏗ ᏥᎩ. ᎤᏍᏚᎩᏒ ᏧᏍᏆᏅᎾ, ᎤᎳᎩᏒ ᎤᏲᎰᏒ ᎠᏧᏣ, ᎤᏁᏍᏓᎶᏨ ᎦᏙ ᎤᏅᏁ ᎠᏧᏣ, ᎨᏍᏗ ᎤᏙᏓᏆᏓ ᎫᏩᏲᎰᏒ ᏱᎨᏎ, ᎠᏎᏃ ᎦᏳᎳ ᎪᏍᏓ ᎢᏳᏍᏗ ᏄᏍᏕ ᎤᎧᏛ ᏃᎴ ᎤᏍᏗᏰᎬ. ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᎪᎵᏰᏍᎩ, ᎠᎴ ᎾᏍᎩ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ ᎯᎠ ᎾᏍᎩ ᎠᏙᎴᎰᏒᎯ, ᎠᎴ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᎾᎿ ᎪᏪᎸᎢ; ᎤᏍᏆᎸᎯᏗᏰᏃ. ᎾᏍᎩᏰᏃ ᎯᎠ ᎣᏏᏳ ᎤᏰᎸᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎣᏏᏳ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎡᎳᏪ ᏗᏨᏗᏱ ᎾᏂᎦᏔᎿᎥᎾ ᎠᎴ ᎤᏂᏁᎫ ᏴᏫ. ᎡᎳᏗ ᎢᎦᏛ ᎠᏍᎦᏯ, ᎠᏎᏃ ᏗᏯᏖᏅ ᏗᎦᏅᏬᎢ, ᎤᏟᏂᎩᏛ ᎠᏰᎸᎢ, ᎦᏌᏆᎸ ᎠᏍᎪᎵ, ᏤᏆ ᏧᏬᏰᏂ. ᎾᏂᎥᏃ ᎾᏍᎩ ᎤᎾᏛᎦᏅᎯ ᏧᎾᏛᎦᏅᎯ ᏧᏂᎾᏫᏱ ᎤᏂᏍᏆᏂᎪᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎦᏙ ᎤᏍᏕᏍᏗ ᎯᎠ ᎠᏲᎵ? ᏱᎰᏩᏃ ᎤᏍᏕᎸᎯᏙᎮᎢ. ᎨᏥᏅᏒᎯᏃ ᎤᏁᏅᏎ ᎠᎴ ᏭᏂᏳᏛᎮ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸᎢ. ᎠᏆᏛᎦᏅᎩᏃ ᎠᏍᏓᏯ ᎧᏁᎬ ᎯᎠ ᏅᏗᎦᏪᏍᎬ ᎦᎸᎳᏗ, ᎿᏉ ᎠᎵᏰᎢᎶᎦ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎠᎴ ᎢᎦᏁᎳᏅᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎦᎶᏁᏛ ᎾᏍᎩ ᎤᏤᎵᎦ; ᎢᏓᎵᏅᏟᏰᏃ ᎨᏒ ᎤᏄᎩᏍᏗᏍᎩ ᎡᎳᏗ ᏩᎦᏓᎤᎦ; ᎾᏍᎩ ᏧᏄᎯᏍᏗᏍᎬ ᎢᎦᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᏗᎬᏩᏜᏍᏗ. ᏣᏂᏰᏃ ᎤᎷᏨᎩ ᎥᏝ ᏯᎵᏍᏓᏴᎲᏍᎨᎢ ᎠᎴ ᎥᏝ ᏯᏗᏔᏍᎨᎢ, ᎠᏎᏃ ᏂᎠᏂᏪᎭ; ᎠᏍᎩᎾ ᎤᏯᎠ. ᎾᏂᎥᏃ ᎾᏍᎩ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏂᎧᎿᏩᏕᎩ, ᏅᏩᏙᎯᏍᏛ ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏭᏁᎳᏗᏓ, ᎠᎴ ᎾᏍᏉ ᎢᏏᎵ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏭᏁᎳᏗᏓ. “ᎨᏍᏗ ᏱᎪᎵᎦ.” ᏔᎵ ᏓᏆ ᎪᎢ ᏗᎪᏒᏔᏅ ᎤᎧᎾᏫ ᏗᏨᏍᏘ ᏓᏓᏪᎳᎩᏍᎬ. ᎢᏳᏰᏃ ᏱᏗᏥᎨᏳᎭ ᎨᏥᎨᏳᎯ, ᎦᏙ ᏰᏣᎫᏴᏓᏏ? ᏝᏍᎪ ᎾᏍᎩ ᏱᎾᎾᏛᏁᎰ ᎠᏰᎵ-ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ? ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᎩ ᎨᎵᎭ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎾᏆᎵᏍᏓᏁᎵᏙᎲᎢ ᎨᎦᏑᏰᏛ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᎴ ᎤᏂᏩᏛᏗᏱ ᎠᎵᏍᏕᎸᏙᏗ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ, ᎠᎴ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎿᏉᏃ ᎯᎠ ᏄᏂᏪᏎ ᏂᎦᏛ, ᏂᎯᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏪᏥ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏰᎵ ᏂᏥᏫ, ᎠᏴᏰᏃ ᎾᏍᎩ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎤᏕᏯᏔᏁᎭ ᎠᏲᏞᎯᏍᏗ ᎾᏍᎩᏯᎢ; ᎠᏂ ᎢᏥᏁᏍᏗ, ᎠᎴ ᎢᏥᏯᏫᏍᎨᏍᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏗᏓᏬᏍᏗ ᎨᏒ ᎪᎯ ᎨᏒ ᎢᎩᏍᏕᎵᎭ; ᎥᏝ ᎢᏴᏛ ᎾᎬᏁᎲ ᎠᏰᎸ ᎦᏓᎭ ᎨᏒᎢ, ᎧᏁᏤᏗᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎬᏙᏗ ᎣᏍᏛ ᎠᏓᏅᏖᏗ ᎨᏒ ᎢᎩᏍᏕᎵᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏚᎴᎯᏌᏅ ᏥᏌ ᎦᎶᏁᏛ, ᎢᎬᏱᏱ ᎠᎩᏬᏂᏒ ᎦᎵᏍᏕᎵᏍᎬ ᎥᏝ ᎩᎶ ᎾᎥ ᏱᎦᏙᎨᎢ, ᎾᏂᎥᏉᏍᎩᏂ ᎬᏆᏕᏨᎩ; ᏞᏍᏗ ᎤᏂᏍᎦᏅᏨ ᏱᏚᏚᎪᏔᏁᏍᏗ; ᎤᏍᏆᏂᎩᏗ ᏚᏕᏘᏴᏌᏗᏒ ᎠᎾᎵᏍᏕᏓᎵᏴᏍᎦ ᏗᏂᏲᏟ. ᎿᏉᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᎷᏨ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏃᎲᏏ, ᎯᎶᎻᏍᎪᏂᎯ? ᎥᎥ, ᎤᏛᏅᎩ. ᎦᏚᎲᏃ ᎤᏂᏄᎪᏫᏒ ᏅᏯ ᏚᏅᏂᏍᏔᏁᎢ. ᎠᏂᎦᏔᎯᏃ ᏧᎾᏅᏬ ᏚᏂᏅᏁ ᏚᎳᏍᎬ ᎾᎥ ᎠᏫᏅ ᏐᎳ ᏧᏙᎢᏛ. ᎡᏣᏓᏅᏛᎵᏉᏍᎩᏂ Ꮎ ᎾᏍᎩ ᎢᎦᎢ ᎦᎬᏩᏐᏢᏛ ᎠᏂᏍᎦᎾ ᎤᏁᎳᎩ ᏚᏪᎵᏎᎸᎢ, ᎾᏍᎩᏃ ᏞᏍᏗ ᏗᏥᏯᏪᏨᎩ ᎠᎴ ᏞᏍᏗ ᏧᏩᎾᎦᎶᏨᎩ ᏕᏣᏓᏅᏛᎢ. ᎾᏍᎩ ᎾᏍᏉ ᎨᎵᎵ ᏤᏙᎮ ᎬᏩᏍᏓᏩᏗᏙᎮ ᎠᎴ ᎬᏩᏍᏕᎸᎯᏙᎮᎢ; ᎠᎴ ᎤᏂᏣᏖ ᏅᏩᎾᏓᎴ ᎠᏂᎨᏴ ᏥᎷᏏᎵᎻ ᏅᏓᎬᏩᏍᏓᏩᏙᎸᎯ. ᏂᎯᏍᎩᏂ ᎭᏓᏁᎮᏍᏗ ᏞᏍᏗ ᏦᏰᏂ ᎯᎦᏍᎦᏂ ᎤᏙᎴᎰᏒ ᎯᎦᏘᏏ ᏦᏰᏂ ᎾᏛᏁᎲᎢ. ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎵᏛᏗᏍᎩ ᏂᎨᏒᎾ; ᏙᎴᎰᎯᏍᏗᏍᎩᏂ ᎨᏒ ᏛᎵᏛᏔᏂᏉ; ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏙᏓᎦᎶᏐᏂ; ᎠᎦᏙᎥᎯᏍᏗ ᎾᏍᏉ ᎨᏒ ᏛᎵᏛᏔᏂ. ᎠᏴ ᎤᏁᎳᏅᎯ ᏅᏓᏲᎦᏓᎴᏅᎯ; ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎯ ᎣᎦᏛᎦᏁᎰᎢ. ᎾᏃ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎥᏝ ᏲᎦᏛᎦᏁᎰᎢ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏕᏗᎦᏔᎭ ᏚᏳᎪᏛ ᎢᏯᎾᏛᏁᎯ ᎠᏓᏅᏙ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏌᏛᏁᎯ ᏂᎨᏒᎾ ᏗᏓᏅᏙ. ᎦᏅᎯᏛ ᎠᏇᏅᏓ, ᏎᎦᏨ ᏕᏥᏩᏛᎲ ᎤᏣᎴᏓ ᎤᏩᏓᏓᏍᎬ ᎤᏍᏔᎦᏢ. ᏍᏏᏉᏯ ᎪᎯᏗ ᎤᎴᏂᏙᎴ Ꮭ ᏧᏓᏃᏣᎵ ᏱᎨᏎ. ᎠᎨᏴᏃ ᏗᏕᎭᎷᎨ ᎠᎴ ᏗᎩᎦᎨ ᏚᏄᏩᎥᎩ, ᎠᎴ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎠᎴ ᏗᎦᎸᏉᏗ, ᏅᏯ ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ ᏚᏣᏅᏛᎩ, ᎠᎴ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎠᏢᎳᏅᎯ ᎤᎵᏍᏈᏗ ᎠᏰᎲᎩ ᎠᎧᎵᎢ ᎤᏂᏆᏘᏍᏗ ᎨᏒ, ᎠᎴ ᎤᏁᎢᎸᏗ ᎾᏍᎩ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎤᏩᏛᏛ. ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎦᏓᏅᏖᏗ, ᎠᏎᏃ ᏍᏈᏍᏓ ᎭᏫᏂᏣ ᏥᏆᎵᎢ. “ᏰᎵᏉ,” ᎤᏪᎷᏁ ᏧᏍᏆᏴᏍᏗ. ᏆᎴᏗᏃ ᏓᏳᏄᎪᏨᎩ ᎠᏂᏙᎾᎥ ᎤᎷᏨᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎪᏙ ᎡᏧᎢᏍᏗᎭ ᎯᎠ ᎠᏍᎦᏯ? ᎨᏍᏗ ᏯᏍᎦᎢᎮ ᏥᏄᏍᏕ ᎠᎬᏱ ᏣᎴᏂᏍᎨ ᎠᏂᎩᏍᎬ, ᎾᎥᏂ ᏭᎷᏤᎢ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥ ᏂᎯ ᎢᏳᏍᏗ ᎠᏣᏗ. “ᎤᏨᏉᏗ ᏱᎨᏒᎾ,” ᎤᏛᏁ ᏥᏍᏕᏥ. ᎬᏂᏳᏉᏃ ᎡᏙᎲᎩ ᎠᏍᎦᏯ ᎤᏬᏰᏂ ᎤᏩᎢᏎᎸᎯ. ᎬᏩᏛᏛᏅᎩᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᏰᎵᏉ ᎬᏓᏅᏬᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ; ᎬᏩᏱᎵᏓᏍᏗᏱ ᎤᎾᏚᎵᏍᎬᎩ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏥᏌ ᎦᏃᏍᎩᏍᎩ ᏨᏤᏥᏂᏴᎯᏐ ᎾᏍᎩᏯ ᎢᏥᎷᎩ, ᏗᏥᏁᎯ ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᎠᏴ ᏍᎩᏂᏴᎰᎦ? ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᏍᎩᏯᏙᎴᎣᎯᏏ, ᎦᎶᏁᏛ, ᎦᎪ ᏥᏨᏂᎦ? ᎠᎴ ᎠᏍᎪᎯ ᏕᎤᎷᎬ ᏥᏕᏣᎪᎲᎩ, ᎾᏍᎩ ᏅᎩ-ᏗᎨᏅᏌᏗ ᏚᎷᎬᎢ, ᎾᏍᎩ ᏓᎬᏩᏂᏆᏘᎵ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎠᎴ ᏅᏔ ᎠᎴ ᎤᏰᎸᎭ ᏅᏓᏰᎬᏁᎵ, ᎠᎴ ᎤᏇᏓᎸ ᏓᎬᏩᎨᎵ, ᎠᎴ ᎠᏥᎸ ᎬᏗ ᏓᎬᏩᎪᎲᏍᏔᏂ. ᎠᏆᏚᎵ ᎠᏍᏆᏗᏍᎬ ᏣᎵ ᎤᏤᎵ ᎧᏃᎮᏛ, ᎤᏬᏚ ᎪᏪᎳᏅ ᏃᎴ ᎧᏃᎮᏍᎩ ᏄᏲᎢᏴ ᎤᎶᏒ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎧᏃᎮᏓᏉ ᎠᎴ ᎤᏲᎢ ᏱᎨᏐ ᎾᏍᎩᏴ ᏂᎦᎵᏍᏗᏍᎬ. ᎿᏉᏃ ᎡᎩᎵᏈ ᎯᎠ ᏄᏪᏎᎸᎩ ᏉᎳ; ᎠᎴᏉ ᏂᏍᎩᏎᎪᎩᎠ ᎦᎶᏁᏛ ᏥᏲᎢᏳᎲᏍᎩ ᎢᏯᏆᎵᏍᏙᏗᏱ. ᎤᏂᏲ ᎠᎴ ᎤᏂᏁᎫᏥᏛ ᏣᏁᎭ ᎤᏂᏲᎰ ᎤᏰᎸᏛᎢ, ᎠᏎᏃ ᎥᏝ ᏴᎦᎨᎦᎵᏍᎪᎸᏓᏏ ᎤᏰᎸᏛᎢ, ᏦᎾ ᎠᏙᎴᎰᏍᎩ ᎤᏤᎵᏅᏰᎸᏛ ᎤᏩᏒ. ᏚᏓᏅᎡᎸᏃ ᎤᏂᎩᏒᎩ. ᎿᏉᏃ ᏆᎴᏗ ᏔᎵᏁ ᎤᏄᎪᏨᎩ, ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎢᏨᎾᏄᎪᏫᏏ, ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᎤᏍᎦᏅᏨ ᎾᎩᏩᏛᎲᎾ ᎨᏒᎢ. ᏂᎯ ᎢᎦ ᎢᏣᏘᏍᏗᏍᎩ ᎡᎶᎯ. ᎦᏚᎲ ᎤᏌᎯᎸ ᏥᎦᎧᎰᎢ ᎥᏝ ᏰᎵ ᏴᎦᏰᎬᏍᎦᎸᎦ. ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏴᏫ ᎤᏪᏥ ᎠᏎ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏧᎩᎵᏳᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎬᏩᏲᎯᏍᏗ ᎨᏎᏍᏗ ᏗᏂᎳᏫᎩ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏣᎦᎴᏙᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎾᏍᎩ ᏙᎦᏚᏓᏔ ᏱᏓᏗᎭ, ᎤᎵᏏᎬᏃ ᏱᏕᏙᎭ, ᏱᏓᏥᎪᎥᏍᎦᏉ ᎠᎴ ᎥᏝ ᏱᎨᏗᏍᏓᏩᏕᎦ ᎤᏙᎯᏳᎯ ᎨᏒᎢ. ᏥᏌᏃ ᎤᎪᎲ ᎠᎦᏔᎿᎢ ᎢᏳᏪᏍᏗ ᏁᏪᏒ ᎤᏁᏨᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎥᏝ ᎢᏅᎯᏳ ᏱᏂᏣᏛᎿᏕᎦ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎨᏒᎢ. ᎾᎪᏳᏃ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎩᎶ ᎪᎱᏍᏗ ᎬᏩᏛᏛᏗ ᏱᎨᏎᎢ. ᏜᏈᎾ ᎠᎴ ᏜᏉᏏ ᏕᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᏧᏂᎸᏫᏍᏓᏁᎯ ᏥᎩ. ᎡᏥᏲᎵᎸᎭ ᎠᏥᎨᏳᎢ ᏆᏏ, ᎤᏣᏘ ᏧᎸᏫᏍᏓᏁᎸᎯ ᏥᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ. ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎾᏍᏉ ᎠᏂᏆᎵᏏ ᎤᏂᏁᏨᎯ ᎨᏒᎩ, ᎢᏳᏃ ᎩᎶ ᏯᎦᏔᎭ ᎡᏙᎲᎢ, ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ, ᎤᏂᏂᏴᏗᏱ ᎤᏂᏰᎸᏒᎩ. ᎢᏳᏃ ᏰᎵ ᎨᏎᏍᏗ ᏂᎦᎥ ᎢᎨᏣᏛᏁᏗ ᎨᏒ ᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᏙᎯᏳ ᎢᏣᏕᏗᏱ ᎾᏂᎥ ᏴᏫ. ᏰᎵ ᏑᏥᎶᏓ ᎢᏴ ᎠᏂᎴᏴᏍᎩ ᏧᏁᏅᏒ, ᎠᏓᏍᏓᏴᏗ ᎦᏍᎩᎸᎢ ᎠᏂᏁ ᎠᏂᏍᎦᏯ ᎠᏂᏃᎮᏍᎨ ᏄᎵᏍᏔᏂᏙᎸ ᎢᎦ ᏃᎴ ᏆᎾ ᏗᎦᎶᏔᏅ ᏓᏂᎩᏍᎨᎢ. ᎣᎦᏂᎩᏒ ᎦᏂᎩᎸ, ᎦᏓᏅᏖᏍᎬ ᎤᏲᎢᏉ ᎠᏂᏫᎾᎨᏍᏗ ᎠᎫᏩᏌ ᏣᎫᏤᎵ ᏣᎫᎵᏏ ᏳᎾᏓᏅᏖᎸ ᏄᏍᏚ ᎤᎶᎯᏍᏗ ᎥᎬᎭᏅ. ᎠᏎᏃ ᎢᎬᏱ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎤᎩᎵᏲᎢᏍᏗ, ᎠᎴ ᏗᎬᏩᏲᎯᏍᏗ ᎨᏎᏍᏗ ᎪᎯ ᏣᏁᎭ. ᏚᏳᎪᏛ ᎨᏎᏍᏗ ᎢᏕᎲᎢ, ᎢᎦ ᏂᎨᏐ ᎾᏍᎩᏯᎢ; ᎥᏝᏍᏗᏃ ᎠᎵᏍᎦᎾᏩᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏴᏍᏕᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ Ꮓ-ᎵᏏᎾᎯᏍᏛᎾ ᎠᎴᏂᏓᏍᏗ ᎨᏒᎢ, ᎥᏞᏍᏗᏃ ᎠᏗᏒᏍᏗ ᎨᏒᎢ ᎠᎴ ᏗᏓᏛᏳᏤᏗ ᎨᏒᎢ. ᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏍᎦᏯᏍᎪ ᏗᏬᏍᎩᎵ ᏧᏄᏩᎢ? ᎬᏂᏳᏉ ᏧᏬᏚᎯ ᏧᎾᏄᏩᎢ ᎠᎴ ᎣᏍᏛ ᏗᎾᎵᏍᏓᏴᎲᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏓᏂᏁᎸ ᎠᏁᎰᎢ. “ᎤᏙᎯᏳ. “ᎾᏄᏍᏗ ᏌᎳᏓ ᏚᏏᎳᏛᎢ! ᎠᎴ ᏥᎷᏏᎵᎻ, ᎠᎴ ᎢᏙᎻᏱ, ᎠᎴ ᏦᏓᏂ ᎢᏍᎪᏂᏗᏢ; ᎠᎴ ᏓᏯ ᎠᎴ ᏌᏙᏂ ᎾᎥ ᏗᏁᎯ, ᎤᏣᏘ ᎠᏂᎪᏗᏳ, ᎾᏍᎩ ᎤᎾᏛᎦᏅ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏕᎤᎸᏫᏍᏓᏁᎸ, ᎬᏩᎷᏤᎴᎢ. ᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ ᎤᏍᏚᎢᏒᎰᎢ, ᎠᎴ ᎠᏫ ᎠᎾᏛᎩᏍᎪ ᎧᏁᎬᎢ, ᎠᎴ ᏚᎾᏙᎥ ᏓᏯᏂᏍᎪ ᎠᏫ ᏧᏤᎵᎦ, ᎠᎴ ᏓᏘᏂᏒᏍᎩᏂ ᏕᎦᏄᎪᏫᏍᎪᎢ. ᏚᏂᏃᎩᏒᏃ, ᎤᏂᏄᎪᏤ ᎣᎵᏩᏲ ᎣᏓᎸ ᏭᏂᎶᏎᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎤᏓᎵᏓᏍᏗ ᎨᏅᎢᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎢᏨᏗᏍᎬᎢ, ᎦᎪ ᏱᏥᎦᏘᏗᏍᏓ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏅᎢᏍᏗ ᎨᏒᎢ? ᏚᏒᎭᏂᎸ ᎩᎦᎨ ᎤᏂᏳᏩᏅ ᏗᏂᏐᎯᎢ ᏃᎴ ᏚᏟᏃᎮᏔᏅ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏱᏓᏚᎸᎡᎭ, ᎤᏚᎵᏍᎨᎢᏉ ᎣᏍᏓ ᎢᏳᎾᎵᏍᏔᏁᏗ ᎢᏳᏍᏗ ᎠᏂᏰᎵᏒ. ᎠᏓ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏅᏎ ᎤᏓᎵᎢ. “ᎤᏲᎢ ᎠᎩᏰᎸ ᎣᏍᏓ ᏱᏣᏓᏅᏛᎾ ᎨᏒᎢ ᏌᎳᏓ,” ᎤᏛᏁ. ᏝᏍᎪ ᎯᎠ ᏱᎬᏩᎬᏫᏳ ᏱᏅᎦᏰᏥᏪᏏ, ᎭᏛᏅᎢᏍᏓ ᎠᏆᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᎭᏓᏠᎦ, ᎠᎴ ᏍᎩᏍᏕᎸᎯᏓ ᎦᎵᏍᏓᏴᎲᏍᎬ ᎠᎴ ᎦᏗᏔᏍᎬ ᎢᎬᎯᏛ; ᎣᏂᏃ ᏨᏒ ᎭᎵᏍᏓᏴᏅᎭ ᎠᎴ ᎭᏗᏔᎲᎭ? ᎾᏍᎩ ᏦᎢᎭ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎬᏂᎨᏒᎢᏳ ᎤᎪᎮ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎧᏂᎵᏯ. ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎩᎳ ᏧᎩᏥᏍᎪᎢ ᏭᏂᏴᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏚᎾᏕᏲᏁᎢ. ᎠᏎᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎷᏨ, ᎠᎴ ᎾᏍᎩ ᎬᏩᎵᎪᏁᎯ, ᏚᏂᏟᏌᏁ ᏗᏂᎳᏫᎩ, ᎠᎴ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ, ᎠᎴ ᏫᏓᏯᏅᎲ ᎤᎾᏓᏅᏎ ᏗᏓᏍᏚᏗᏱ. ᎠᏂᏍᎦᎢᎮᏃ ᎠᎴ ᎡᎳᏗ ᏂᏚᏅᏁ ᏚᎾᎧᏛᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᎬᏃᏛ ᎢᎡᏥᏲᎭ ᏧᏂᏲᎱᏒᎯ ᏄᎾᏛᏅᎢ? ᎯᎸᎢᏴ ᎤᏦᏩᏛ ᎤᎳᎡ ᏧᎶᎸᏗ ᎡᎳᏆᏗ, ᎤᎦᏃᏩ ᎦᏁᏔᏱ ᏃᎴ ᎠᏛᏂᎢᏍᏔᏅ ᎤᏅᏣᎳᏗ ᎤᏒᎮᏱᏣ ᎤᏂᏯᎩᏍᏗ. ᎢᎦᏓ ᏕᎦᏚᎲ ᎨᎪᎵᏨ ᎨᏒ, ᏏᏆ ᎭᏫᏯ ᎤᏅᏂᏍᏙᏗ, ᎦᏙ ᏓᎾᏍᎪᏍᎬ, ᎭᎾ ᏓᏃᏔᏍᎬ, ᎠᏓ ᏱᏚᏓᏪᎳᎪᏅ ᎭᎾ ᏫᏓᏂᎸᎥᏍᎬ ᏏᏆ, ᎦᏃᏍᎦ ᏃᎴ ᎩᎦᎨ ᎦᏓᏆᏟ ᎬᏗ ᏓᏄᏒᏗᏍᎬ. ᏚᎴᏁᏃ, ᎤᏃᎴ ᎤᏍᎦᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎥᏓᎵ, ᏙᏉ; ᎤᏓᏥᎾᏍᏛᎯ ᎿᎵᏍᏓ. ᎦᏃᎸᎥᏍᎬᏃ ᎤᏑᎵᎪᏤᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏥᎾᏍᏛᎯ ᏄᎵᏍᏔᏁᎢ. ᎦᏐᎯ ᎤᏲᏓᎩᏍᎨ, ᎠᏦᏴ ᏗᏯᏖᏃ ᏫᏚᏣᎪᏎ. “ᎤᏙᎯᏳ ᏗᏦᎯᏍᏗ ᏂᎦᎵᏍᏗᎭ,” ᎤᏛᏁ ᏌᎳᏓ. ᎡᏝᏪ ᎨᏎᎢ. ᎣᏂᏃ ᏧᎾᏄᎪᏤ ᏧᏓᏏ ᎨᎵᎵ ᎡᎯ ᏣᎾᏎᎵᏙᎮ ᎢᏳᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᏥᏚᏘᎿᏫᏛᎮᎢ, ᎾᏍᎩᏃ ᎾᏍᏉ ᏥᎤᏲᎱᏎᎢ ᎠᎴ ᏂᎦᏛ ᎾᏂᎥ ᎬᏬᎯᏳᏅᎯ ᏧᎾᏗᎦᎴᏲᏤᎢ. ”ᎤᎵᏍᏆᎸᏗ ᎠᏆᏖᎸᏂᎸ, ᎭᎴᏉ ᏦᏕᏆᏠᏥ ᏂᏥᏴᏂᎸ,” ᎤᏪᎷᏁ. ᎢᎸᏍᎩᏃ ᏫᏄᏕᏘᏴᎲ ᏗᏆᏤᎵᎦ ᏴᏫ ᏕᏥᏲᎮᎸᎩ ᎨᏥᏁᎸᎯ, ᎠᎴ ᎠᎩᏲᎸᎩ ᎠᏥᎸᎨᎳᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎪᎯ ᎨᏒ ᎤᏲ ᎢᏣᏓᏅᏔ; ᎠᏎᏃ ᏔᎵᏁ ᏛᏨᎪᎢ, ᎠᎴ ᎢᏥᎾᏫ ᏛᎵᎮᎵᏥ, ᎢᏣᎵᎮᎵᎬᏃ ᎥᏝ ᎩᎶ ᏴᎨᏥᎩᏏ. “ᎠᏎᏗ ᏧᎾᏛᎯᏍᏗ ᎯᎸᎢᏴ,” ᎤᏛᏁ ᎡᎶᏗ. ᎠᏍᎦᏰᎬᏍᏔ ᎠᏌᎻᏓ ᏃᎴ ᏄᏓᎴ ᎠᏍᎦᏰᎬᏍᏔ ᎾᎥᏂ ᏓᏂᏙᎬ ᎠᎾᏟᏃᎮᏍᎬ ᏃᎴ ᎠᎾᏘᏲᎯᎲ ᏅᏩᏍᏛ. ᏂᏗᏍᎦᏅᎾ ᎠᎴ ᏚᏳᎪᏛ ᎢᎨᏓᏍᏗᏱ ᎠᎦᏔᎲ ᏂᎪᎯᎸ ᎢᏓᎴᏂᏙᎲᎢ. ᏦᏩ ᎾᏍᎩ Ꮎ ᏧᎾᏨᏍᏗ ᎤᏓᏅᏘᏳ ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎬᏂᎨᏒ ᎤᏕᎰᎯᏍᏙᏗᏱ, ᎤᏕᎵᏛᏉ ᎢᏴᏛ ᏮᏓᏥᏯᎧᏂ, ᎤᏪᎵᏎᎢ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏣᏂ ᎤᏃᎮᎸᎯ, ᎾᎯᏳ ᎠᏂᏧᏏ ᏥᎷᏏᎵᎻ ᏙᏧᏂᏅᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᎵᏫ ᎬᏩᏛᏛᏗᏱ, ᎯᎠ ᎢᏳᏂᏪᏍᏗᏱ; ᎦᎪ ᏂᎯ? ᎢᏳᏃ ᎩᎶ ᎢᏤᎲ ᎪᎱᏍᏗ ᏳᎭ ᏅᏩᏓᎴ ᎤᏰᎢᎵᏓᏍᏙᏗ, ᏰᎵᏉᏍᎪ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ ᏚᏃᎸ ᏱᏕᏣᏓᏰᎢᎵᏓ, ᎥᏝᏃ ᎤᎾᏓᏅᏘ ᏚᏃᎸᎢ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏴᎦᏰᎦᏄᎪᏩ, ᎬᏂ ᎠᏓᏙᎵᏍᏔᏅᎯ ᎠᎴ ᎠᎹᏟ ᎬᏅᎯ ᏥᎨᏐᎢ. ᎯᎠᏃ ᏥᏌ ᏄᏪᏎᎴᎢ; Ꭷ ᏞᏍᏗ ᎩᎶ ᏥᎯᏃᏁᎵ, ᎮᎾᏉᏍᎩᏂ, ᏫᏣᎪᏩᏛ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᎠᎵᏍᎪᎸᏙᏗ ᏫᎲᎦ ᏱᏏ ᎤᏁᏨ ᎠᎵᏍᎪᎸᏙᏗ ᎾᏍᎩ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ. ᎿᏉᏃ ᎾᎯᏳ ᎤᎾᎴᏅᎲᎩ ᎤᏂᏃᎮᎸᎩ ᎤᏂᎯᏍᏗᏱ. ᎾᏍᎩᏰᏃ ᎢᏳᎾᏍᏗ ᎥᏝ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎪᎱᏍᏗ ᏯᎾᏛᏁᎭ, ᎤᏅᏒᏉᏍᎩᏂ ᎤᏂᏍᏉᎵᏱ; ᎠᎴ ᎤᏬᏚᎯ ᎠᎴ ᎣᏍᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏅᏗᏍᎬᎢ ᏓᏂᎶᏄᎮᏍᎪ ᏧᏂᎾᏫ ᎾᏁᏯᏔᎲᎾ. ᎠᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᏥᏌ ᎦᏚ ᎤᎩᏒᎩ, ᎠᎴ ᎤᎵᎮᎵᏨᎩ, ᎠᎴ ᎤᎬᎭᎷᏴᎩ, ᎠᎴ ᏚᏁᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠᏃ ᏄᏪᏒᎩ; ᎢᏥᎩ, ᎢᏥᎦ, ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ. ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏓᏆᎴᎳ ᏧᎶᎯᏍᏗ ᏍᏈᏍᏓ ᏓᎮᎢ ᏓᏆᎴᎳ, ᏑᎾᎴ ᎠᎴᏂᏍᎩ ᎤᏒᎯ ᏩᏍᏗ ᏕᎦᎷᎬ - “ᏧᏓᎴᏅᏓ ᏓᏆᎴᎳ. ᎤᏚᎨᎢ ᏙᏱ ᎤᏪᏅᏍᏗ ᏲᎾ ᎤᏤᏍᏙ ᎠᏂᏐᎢ ᏗᏂᏲᏟ ᏧᏁᎸᏙᏗ ᏣᏉ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏅᏍᏗ ᏃᎴ ᏧᎦᏙᏍᏙᏗ ᎠᏂᎾᏌᎢ. ”ᎭᏩ,” ᎤᏛᏁ ᏐᏉ ᎤᏃᏕᎾ ᎠᏓᎯ, ”ᎣᏏᏉᏃ ᏄᎵᏍᏔᏏ ᏌᎳᏓ, ᎣᏥᏐᎢᎾ? ᎠᏯᏛᎥ ᎦᏅᎯᏓ ᎠᏰᎳᏍᏗ ᎬᏗ, ᎢᏴ ᎤᏌᎵᏓᏁ, ᎠᏓ ᏓᏓᏧᎬ ᏭᏓᎩᏅᏎᎢ. ᏫᏓᏟᏃᎮᏗ ᏭᏓᏐᎴᎢ ᎠᎳᏂ ᏃᎴ ᏭᏚᏏᎳᏛᏁᎴ ᎠᏂᎴᏴᏍᎩ. ᎣᎭᏁᎯ, ᎠᎩᏲᎯᏍᏔᏅ ᎠᏆᏓᏅᏖᏗᏍᎬ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᏂᎯ ᎾᏍᏉ ᏗᏥᏲᎱᏒᎯ ᏂᏣ-ᎵᏍᏔᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎬᏩᎵ, ᎦᎶᏁᏛ ᎠᏰᎸ ᎢᏳᏩᏂᏌᏛ; ᎾᏍᎩ ᏅᏩᏓᎴ ᏗᏣᏨᏍᏗᏱ ᎠᏰᎸᏒᎩ, ᎾᏍᎩ ᎠᏲᎱᏒ ᏣᎦᎴᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎦᏔᏔᏅᎯ ᎡᏗᎾᏄᎪᏫᏎᏍᏱ ᎤᏁᎳᏅᎯ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬ ᎥᏆᎸᎥᎢ ᎤᎬᏫᏳᎯ ᎦᏁᎸ ᏂᎬ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅ, ᎠᎴ ᏂᎬᎾᏛᏉ; ᏲᎾ ᏥᏁᎵᏍᎨ ᎢᏳᏪᏍᏘ ᎤᏣᎴᏓ, ᎤᏁᎢᏍᏔᏅ ᎯᎸᎢᏴ ᏥᏃᎯᏎᏗ ᎧᏃᎨᏗ ᎤᏢᎾᏔ. ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎾᏄᏬᏍᏕ ᎬᏂᎨᏒ ᏄᎾᏛᏁᎴᎢ; ᎠᎴ ᎤᏂᏁᎢᏍᏔᏁ ᎤᎵᏍᏆᏕᏗᏱ ᎨᏒ ᏥᎷᏏᎵᎻ. ᎢᎳᏍᏓ ᎪᎴᏂᏗ ᏓᏳᏗᎩᏴᎩ, ᏠᏆᎹᏍᎩᏂ ᎹᎵᏓ ᏓᏥᏯᎧᎯᏴᎩ ᎤᏢᎩ. ᏧᏤᎵ ᎠᏂᎬᏂᎨ ᏧᎾᏌᎢ ᏃᎴ ᎦᏲᏟ ᎠᏂᏴᏫᏯ ᏧᎾᏁᎸᏗ ᎤᎾᏓᏕᏴᏍᏛ ᎤᏬᏢ, ᎤᎾᏛᎦᏍᏛ ᏄᏪᏒ ᎤᏁᏝᏅᎯ, ᏥᏳᎪᏗ ᎢᏳᎾᏛᏁᏗ ᎠᏂᏴᏫ. ᏥᎪᎵᏰᏍᎬ ᏥᏰᎵᏒ ᎦᏕᎶᎣᏍᎬ ᏳᏙᎯᏳᎲᎾ ᎨᏒ. ᏧᎵᎩᏒ ᏗᎦᎳᎩᎡᏗ, ᎦᏓᏅᏖᏍᎬ ᏍᎩᎾᎾ ᎢᏯᏆᏛᏁᏗ. ᎿᏉᏃ ᏉᎳ, ᎤᎬᏫᏳᎯ ᎤᎵᏍᎫᏫᏎᎸ ᎤᏁᎢᏍᏗᏱ ᎤᎵᏍᎪᎸᏓᏁᎸ, ᎯᎠ ᏄᏪᏒᎩ; ᏏᎦᏔᎯᏳ ᏥᎩ ᎢᎸᏍᎩ ᏧᏕᏘᏴᏛ ᏚᎪᏓᏁᎯ ᎢᎬᏩᎵᏍᏔᏅᎯ ᎨᏒ ᎯᎠ ᏑᎾᏓᎴᎩ ᏴᏫ, ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏓ ᎤᏟ ᎤᎦᎵᏍᏗᏳ ᏴᏫ, ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏓ ᎤᏟ ᎤᎦᎵᏍᏗᏳ ᎦᏓᏅᏓᏓ, ᎠᏋᏒ ᎦᎵᏍᏕᎵᏍᎬ ᎬᎩᏁᎢᏍᏗ ᏥᏂᎦᎵᏍᏓ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏨᏒ ᏂᏣᏪᏒ ᏓᎬᏔᏂ ᏙᏓᎬᏳᎪᏓᏁᎵ ᏣᏲ ᎡᏣᏅᏏᏓᏍᏗ. ᎯᎦᏔᎲᎩ ᏥᏍᏓᏱᏳ ᎨᏒᎢ, ᏥᎩᏍᎬ ᎾᏍᎩ ᎠᎩᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏥᏍᎫᏕᏍᎬ ᎾᏍᎩ ᎠᎩᏫᏒᎯ ᏂᎨᏒᎾ ᎨᏒᎢ; ᏙᏱᏗᏢᏰᏃ ᎠᏁᏙᎭ ᎩᎶ, ᎠᎴ ᏗᎾᏙᏂᏍᎩ, ᎠᎴ ᎤᏂᏁᎫᏥᏛ, ᎠᎴ ᏗᎾᏓᎯᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎣᏏᏳ ᎤᏂᏰᎸᎯ ᎦᏰᎪᎩ ᎨᏒ, ᎠᎴ ᎦᏰᎪᎩ ᎠᏃᏢᏍᎩ. “Ꭷ, ᎯᏓᎴᎾ ᏕᏓᏦᏍᎬᎢ, ᎯᏗᏃᎲᎳ ᎢᎦᏛᏁᏗ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏅᏓᏛᎩ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎢ; ᏣᏤᎵ ᎠᏓᏁᎸ ᏓᏇᎷᎬ ᎠᎩᏯᎣᏅ. ᎢᏥᎨᏴ, ᎢᏨᏒ ᏗᎨᏥᏰᎯ ᏕᏦᎯᏳᏎᏍᏗ, ᎤᎬᏫᏳᎯ ᎪᎯᏳᏗ ᏥᎩ ᎾᏍᎩᏯᎢ. ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᎴ ᎾᏍᎦᏅᎾ ᎾᏍᎩ ᎾᎤᏪᎳᏗᏍᏗᏍᎩ ᎢᎬᏱᏱ ᏗᎴᎯᏐᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎥᏝ ᎪᎱᏍᏗ ᏴᎬᏩᏅᎦ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᏥᎸᏍᎩᏂ-ᏗᏁᎶᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎴ ᎦᎶᏁᏛ, ᎠᎴ [ᎦᎶᏁᏛ] ᎢᏧᎳᎭ ᎤᏂᎬᏫᏳᎯ ᎨᏎᏍᏗ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ. ᎤᏙᎯᏳ ᎤᎨᏳᎯ ᎨᏎ ᏫᎵᎻ ᏲᎾ ᎤᏤᏍᏙ. ᎤᏣᏘᏃ ᎤᏂᏲᏠᎯᏎᎸ, ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎠᏍᎦᎢᎲᎢ ᏉᎳ ᏱᎬᏪᏓᎦᎸᎥᎦ ᎡᎵᏍᎬᎢ, ᏚᏁᏤᎸᎩ ᎠᏂᏯᏫᏍᎩ ᎤᏁᏅᏍᏗᏱ ᎠᎴ ᏫᏚᎾᏑᎦᎸᏙᏗᏱ, ᎠᎴ ᎤᏂᏴᏔᏂᎯᏍᏗᏱ ᏗᏐᏴᎢ. ᎤᏍᏗ ᎨᏎ ᏏᏆ, ᎠᏎᏃ ᎩᎳᏈᏴ ᎤᏙᎴᏇ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᎦᎾᏄᎪᏫᏍᎦ ᎢᎩᎨᏳᎯᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏏ ᎢᏗᏍᎦᎾ ᏥᎨᏎᎢ ᎦᎶᏁᏛ ᎢᎩᏲᎱᎯᏎᎴᎢ. ”ᏃᏉ ᎤᏍᏆᎸ ᎢᎦᏛᏅᎢᏍᏙᏗ ᏗᎩᎳᏫᏨᏍᏗ. ᎠᏂᏐᎢᏃ ᎬᏩᎪᎵᏰᏍᎬ, ᎬᏩᏔᏲᏎᎴ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ. ᎤᏩᏅᏤᏃ ᏗᎤᏠᎠᏎᎢ, ᎠᎴ ᎤᎵᎮᎵᏨᎯ ᏚᏓᏂᎸᏤᎢ. ᏕᎦᎵᏦᏩᏛ ᏃᎴ ᏓᏓᏁᎸ ᏧᏏᏩ ᏃᎴ ᎤᎯᏐᏗ ᏂᏚᏍᏕᎢ. ᎠᎴ ᏧᏄᎪᏨ, ᎤᏪᏅᏎ ᎣᎵᏩᏲ ᎤᏌᎯᎸᎢ ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏒᎢ; ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏛᏎᎢ. ᏍᏔᏯ ᎤᎦᎭᎾᏅ, ᎦᏣᏃᏍᏓ ᎡᎳᏗ, ᎤᏃᎴ ᎠᎹ ᏥᏄᎵᏍᏔᏃ ᎢᏳᏍᏗ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᏓᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎠᏲᎵ ᏥᏓᏓᏂᎸᎪᎢ, ᎥᏝ ᎾᎿ ᎤᏴᏍᏗ ᏱᎨᏎᏍᏗ. ᎠᏲᏟ ᎦᎭᏁᎮ, ᎤᏁᏝᏅ ᎨᏎ ᎠᏗᏍᎨ ᎡᎶ ᎤᏲᏍᏙᏗ ᎤᏁᏝᏅ ᎡᏘᏴ ᏄᎾᏕᏂᎵᏙᎸ ᏱᏄᎾᏛᏁᎸᏓ ᏱᎩ ᏃᎴ ᏁᎳᎩ ᎤᏁᎵᏍᏗ ᏗᎬᏅ ᏗᎭᎾᏬ, ᏗᎦᎶᏇ, ᏗᎦᏓᎷᎩᏍᏗ ᏃᎴ ᏂᎦᏓ ᏔᎷᎩᏍᎩ ᏗᎪᏒᏔᏅ ᏃᎴ ᎤᏂᏲᎯᏍᏙᏗ ᏓᎶᏂᎨ ᏎᎷ ᏓᎾᏛᎯᏗᏍᎬ, ᏎᎷᏯ ᏧᎾᏛᎯᏍᏙᏗ ᎤᏩᏌ ᏃᎴ ᎤᏂᏲᎯᏍᏙᏗ ᏗᏍᏙᏍᏗ ᎨᏥᏍᏙᎡᎲ ᏎᎷ, ᎤᏅᏌ ᎤᏂᏍᏙᏍᏗ ᎧᏃᎾ ᎬᏗ ᏃᎴ ᏚᏃᏒᎯᏍᏙᏗ ᏧᏪᏘ ᏕᎦᏛᎲ ᏃᎴ ᏚᎾᏁᏍᎨᏗ ᏧᎾᏦᎯᏍᏗ ᎦᏓ ᎦᏓᏍᎬᎢ ᎤᎾᎴᏅᏗ ᏧᏪᏘ ᎠᏛᏁᎸᏗ ᏃᎴ ᎠᎵᏍᎩᏍᏗ. ᎯᏍᎩᏃ ᏌᏙᏂᎩ, ᏑᏓᎵᏁᏃ ᏌᏗᏱ, ᎦᎵᏉᎩᏁᏃ ᎩᏐᎳᏗ, ᏧᏁᎵᏁᏃ ᏇᎵ, ᏐᎣᏁᎵᏁᏃ ᏙᏆᏏ, ᎠᏍᎪᎯᏁᏃ ᏟᏌᏇᏌ, ᏌᏚᏏᏁᏃ ᏤᏏᏂ, ᏔᎳᏚᏏᏁᏃ ᎠᎻᏗᏏ. ᏩᎦ ᏓᏂᎾᏆᏘᏍᎨᎢ. ᎠᏏᏉ ᏕᎦᏬᏁᏗᏍᎬ ᏴᏫ, ᎬᏂᏳᏉ ᎤᏥ ᎠᎴ ᎠᎾᎵᏅᏟ ᏙᏱᏢ ᎠᏂᏙᎾᎥᎩ, ᎤᎾᏚᎵᏍᎬᎩ ᎬᏩᎵᏃᎮᏙᏗᏱ. ᎠᎴ ᏗᏍᏚᎢᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏧᏤᎵ ᏙᏓᎬᏕᎵ, ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎭᎸᎢᎮᏍᏗ ᎡᎶᎯ, ᎦᎸᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ, ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎭᎸᎩᏍᎨᏍᏗ ᎡᎶᎯ ᎦᎸᎩᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ. ᎾᏍᎩ ᎺᎠᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏗᏓᏯ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏏᎻᏯ ᎨᏎᎢ, ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏧᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎨᏍᏗ ᏂᎦᏓ ᏱᏓᏥᏃᎮᎵ ᎤᏦᎠᏎᏗ ᎤᎶᏒ ᎠᏆᏓᏅᏖᏗ ᎾᏍᎩᏴ ᏚᏙᏓᏋ, ᎯᎠ ᏥᏂᏥᏩ, ᏧᏒᎯᏓ ᏥᏐᎯ ᏥᏅᎬ, ᏕᎦᎦᏙᏍᏛ ᏃᏈᏏ ᏚᏓᏴᎳᏛ ᏕᎦᎶᏍᎬ ᏚᏩᏂᎦᏢ ᏃᎴ ᎦᏓᏅᏖᏍᎬ ᎨᎵ ᏱᏭᎷᏨ ᏭᏕᎵᎬ ᏃᎴ ᏥᏍᎦᎢᎲ ᏱᏭᎷᏨᎾ. ᏣᏍᎪᏃ ᏱᏣᏓᏅᏖᏍᎪᎢ ᏓᎩᏯᏪᎬ ᎢᏨᏍᏕᎵᏍᎬ ᎦᏓᏏᏙᎲ ᎢᎪᎯᏓ? ᎠᏂᏳᏩᏁᎦ ᏄᎾᏍᏛ ᏱᏂᎦᎵᏍᏔᎾ ᎤᏩᏌ ᏓᏓᏂᏱ ᎤᏁᎵᏎ. ᏞᏍᏗ ᎩᎶ ᎤᏕᎵᏛ ᏗᏂᏏᎲᏍᎩ ᏱᏣᏓᏑᏰᏍᏗ, ᎠᎴ ᎠᏍᎦᎾ ᏴᏫ, ᎢᏐ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎠᏍᎦᎾ ᏴᏫ, ᎢᏐ ᎾᏍᎩᏯᎢ, ᎤᏍᎩ ᏌᏉᏉ ᎢᏯᎵᏍᏓᏴᏗ ᏥᏚᎬᏩᎶᏔᏁ ᏧᎾᏗᏅᏎ ᎢᎬᏱ ᎡᎯ ᎨᏒᎢ. ᏣᏂᏃ ᎾᏍᏉ ᎢᏃᏂ ᏓᏓᏬᏍᎬᎩ, ᏎᎵᎻ ᎾᎥᎢ, ᎾᎿᏰᏃ ᎤᏣᏛᎩ ᎠᎹ. ᎠᏂᎷᎬᎩᏃ ᎠᎴ ᏕᎨᎦᏬᏍᎬᎩ. ᎠᏯ ᎠᎩᏅᏫᏍᏔᏅ ᎠᏆᎦᏎᏙᏗ ᎠᎬᏱ, ᏅᏙ ᏭᏕᎵᎬ ᎠᎴᏂᏍᎩ ᎠᏂᏏᏗ ᎠᏍᏆᎵᏍᎬ ᎢᎪᎯᏛ, ᏄᏓᏅᏖᎴᏗ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎬᏙᏗ ᏱᎨᏎ ᏯᏆᏚᎵᏍᎬᎾ ᎨᏎ ᎠᎦᏎᏙᏗ. ᎠᎴ ᎤᏁᎳᏫᏎᎲ ᎤᎪᎲ ᎠᏍᎦᏯ ᎡᏂᎾᏯ ᏧᏙᎢᏛ ᎤᏴᎵᎸ ᎠᎴ ᎤᏏᏔᏛ ᎥᎤᎪᏩᏛᏗᏱ. ᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎾᎥ ᏓᏳᏄᎪᏨᎩ, ᎾᏍᎩ ᎤᎲᎩ ᎠᏓᏅᏖᏍᎬᏉ ᎢᏳᏩᏗᏱ ᎠᏥᎸ; ᎠᎴ ᎠᏍᏓᏯ ᎤᎵᏍᏓᏁᎸᎩ ᎪᏍᏓᏯ ᎠᏍᎫᏕᏍᏗ ᎦᏁᎯ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎠᏍᎫᏕᏍᏗ ᏣᏤᎵ ᎪᏍᏓᏯ ᎲᏓ, ᎠᎴ ᎯᏟᏌ ᏖᎸᎳᏗ ᎡᎶᎯ ᎤᏛᏒᎯ; ᏖᎸᎳᏗᏰᏃ ᎿᏉ ᎤᏅᎾᏏᏌᏛ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎯᏁᎨᏍᏗ, ᎾᏍᎩ ᎦᎨᎫᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᎩ ᎾᎿ ᏥᏚᏂᎸᏫᏍᏓᏁᎭ ᏗᏟᎶᏍᏔᏅᎯ ᎠᎴ ᎤᏓᏩᏗᏍᏙᏛ ᎦᎸᎳᏗ ᎡᎯ ᎦᎵᏦᏛᎢ, ᎾᏍᎩᏯ [ᎤᏁᎳᏅᎯ] ᎼᏏ ᏧᏁᏤᎴ ᎾᎯᏳ ᎦᎵᏦᏙᏗ ᏨᏗᎪᏢᏂᏎᎢ; ᎭᎦᏌᏯᏍᏔᏅᎭ ᏧᏛᏁᎢ, ᏕᎰᏢᏍᎬ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎾᏍᎩᏯ ᏗᏟᎶᏍᏙᏗ ᎠᎲ ᎾᏍᎩ ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸ ᏅᏁᎸᎭ. ᎢᎬᏱᏍᎩᏂ ᎢᏥᏲᎦ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎴ ᎤᏤᎵ ᏚᏳᎪᏛᎢ, ᎯᎠᏃ ᏂᎦᏗᏳ ᏓᏰᏥᏁᏉᎡᎵ. ᎠᏥᎸ ᎤᏍᎦᏎᏗ ᏣᏅᏜᏗᏍᎨᎢ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏣᎾᏗᏫᏎᎮᎢ, ᏗᏂᏩᎦᎳ ᎨᏒ ᏧᎾᎵᏂᎩᏛ ᏥᏂᎨᎬᏁᎮᎢ, ᎾᏂᏍᎦᎢᎲᎾ ᏂᎾᎾᎵᏍᏗᏍᎨ ᏓᎾᎵᎲᎢ, ᏥᏓᏂᎨᎯᏙᎮ ᏅᏩᎾᏓᎴ ᎠᏂᏯᏫᏍᎩ. “ᏱᏕᏍᎩᏃᎩᎢᎾ, ᎧᏃᎮᏍᎩ ᏗᎩᏏ ᏃᎴ ᎤᎵᏏᎬᎢ.” ᎤᏍᏗᏰᏔᏁ. ᎪᎱᏍᏗ ᏃᏣᏛᏁᎲᎾ ᎬᏩᏓᏙᏕᏍᏙᏗ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏐᏅ ᎬᏩᏂᏃᎮᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ; “ᏥᎧᏍᎨᏂ, ᎤᏇᏓᏢ ᏚᏦᎯᏍᏛ ᏥᎧᏍᎨᏂ, ᏦᎢᏁ ᏚᏦᎯᏍᏛ, ᏥᏂᎨᏂ, ᏅᎩᏁ ᏚᏦᎯᏍᏛ, ᎠᏆᎳᏏᏕᎾ ᏃᎴ ᎯᏍᎩᏁᎢ ᏚᏦᎯᏍᏛ.” ᎿᏉᏃ ᎾᎥᏂᏳ ᎨᏎ ᎤᏅᏂᏍᏗᏱ ᏚᏅᏎ ᏧᏅᎢᏓᏍᏗ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏗᏁᎲᎢ, ᏚᏂᏁᏒᏎ ᎤᎾᏓᏛᏅᎯ. ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᏧᏗᏱ ᏅᏓᏳᏂᎶᏒᎯ ᏚᏁᏲᏁ ᎠᎾᏓᏅᏟ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏳᏃ ᏤᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎼᏏ ᏂᎦᏪᏍᎬᎢ, ᎥᏝ ᏴᎦᏰᏥᏍᏕᎸ. “ᏃᏉᏗᎾ ᎯᏥᏧᏣ!” ᎤᏪᎷᏁ ᎰᎻ. ᎾᏍᎩ ᏔᏘᏄᎦ, ᎠᎴ ᎢᏧᎳᎭ ᎢᏣᏓᏅᎦᎸ, ᎠᎴ ᎢᏧᎳᎭ ᎢᏣᎫᏴ, ᎾᏍᎩᏃ ᏗᏂᏍᎪᎵ ᏕᎠᎾᎵᏍᏙᏰᎲᎭ; ᎠᎴ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏒᎭ ᏄᏍᏛ ᎨᏣᏛᎦᏁᎸᎢ ᎠᏎᏉᏉ ᎨᏒᎢ, ᎠᎴ ᎠᎾᏙᎴᎰᏒᎭ ᏨᏒ ᎾᏍᏉ ᏚᏳᎪᏛ ᎭᎴᏂᏙᎲᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎯᏍᏓᏩᏕᎬᎢ. ᎤᎩᏨᏓ ᏑᎾᎴ ᎤᏰᏨ, ᏯᏓᏅᏍᎬᎾ ᎤᏬᏢ ᏰᎵ ᎪᎯᏛ ᏧᏳᎪᏗ ᏂᎬᏁᎲ ᎤᏓᏅᏖᏗ. “ᎨᎵᎠ ᎣᏍᏓ ᏯᏰᎸᎾ ᎰᎻ.” ᎾᏍᎩ ᎾᎯᏳ ᏥᎨᏎ ᎦᎶᏁᏛ ᏂᏤᎲᎾ ᎨᏎᎢ, ᏂᏤᎸᎾᏉ ᎨᏎ ᎢᏏᎵ ᎠᏰᎵ ᎤᏃᏢᏒᎢ, ᎠᎴ ᎢᏥᎪᏁᎳ ᎨᏎ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎠᏚᎢᏍᏛᎢ, ᎤᏚᎩ ᏂᏨᏒᎾ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏂᏤᎲᎾ ᎨᏎ ᎠᏂ ᎡᎶᎯ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏥᏌ ᎤᏍᏆᏛ ᎾᏍᎩ ᏂᎦᏪᏍᎬᎢ, ᎤᏂᏍᏆᏂᎪᏎ ᏓᏕᏲᎲᏍᎬᎢ. ᎠᎴ ᏧᏓᏏ ᎢᏍᎦᎳᏗ, ᎾᏍᎩ ᏍᏉ ᏧᎶᏄᎮᎴᎢ; ᎠᏓᏁᎸᏃ ᏭᏂᎶᏎᎢ. ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏴ ᎾᏍᏉ ᏑᏓᎴᎩ ᏓᏨᏯᏛᏛᏂ; ᎠᎴ ᏍᎩᏃᎲᏏ; ᏐᏉ ᎤᏓᏏᏂᏕᎾ, ᏔᎵᎭ ᏧᏙᏓᏆᏓ ᎣᏁᎯ ᏣᏓᏴᎳᏔᏍᎨᎢ ᏗᎪᏪᎳᏅ ᏌᎳᏓ ᏚᏏᎳᏛ, ᏧᎾᏦᎯᏍᏗ ᏂᎦᏓ ᎨᏥᎾᏌᎢ ᏚᏒᏍᏔᏁ ᎧᏅᏂᏍᎩ ᎭᏫᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ. ᏃᏗ ᎡᎶᎯ ᏣᎵᏍᏆᏗᏍᎪ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎴ, ᎫᏩᏕᏨ ᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ. ᎠᎴ ᎯᎠ ᏂᏥᏪᎭ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏂᏅᏏᏓᏍᏗ ᏄᎵᏍᏔᏅᎩ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒ ᎤᏁᎳᏅᎯ, ᏧᏍᏓᏱᏗᏍᏗᏱ ᎨᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎠᏂᎦᏴᎵᎨᎢ. ᎿᏉᏃ ᎠᎦᏘᏃᎮᎸᎩ ᎠᏍᎩᎾ ᎤᏯᎢ ᏗᎨᏫ ᎠᎴ ᎤᏩᎨᏫ, ᎠᎴ ᎤᏅᏩᏅᎩ; ᎾᏍᎩᏃ ᏗᎨᏫ ᎠᎴ ᎤᏩᎨᏫ ᎤᏬᏂᏒᎩ ᎠᎴ ᎤᎪᎲᎩ. ᎠᎴ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎩᎶ ᎠᏴ ᏂᏗᏥᏲᏕᏍᏗᏍᎬᎾ. ᎢᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎡᎦᎫᏴᏛ ᏥᎩ ᎤᎩᎬ ᎬᏔᏅᎯ, ᎡᎩᏙᎵᏨᎯ ᎢᎩᏍᎦᏅᏨᎢ, ᎾᏍᎩᏯ ᏄᏧᏈᏍᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ; ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪ ᏔᏕᏲᎲᏍᎩ ᎢᏏᎵ ᎠᏁᎲᎢ, ᏂᎦᏔᎲᎾᏃ ᎢᎩ ᎾᏍᎩ ᎯᎠ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᎾᏓᏅᏘ, ᎦᏙᎯᏰᏃ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ. ᎬᏂ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ. ᎢᏳᏰᏃ ᎡᎶᎯ ᏱᎦᏰᎮᎢ, ᎥᏝ ᎠᏥᎸᎨᎶᎯ ᏱᎦᎨᏎᎢ, ᎢᎠᏁᎭᏰᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏓᏁᏗ ᎨᏒ ᎠᎾᎵᏍᎪᎸᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᎾᏍᎩᏯᎢ; ᎠᎴ ᎾᏍᎩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᎫᏴᏙᏗ ᎠᏴ ᎢᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎥᏝ ᎠᏴᏉ ᎢᎬᏒ ᎢᎩᏍᎦᏅᏨᎢ, ᎾᏍᏉᏍᎩᏂ ᎡᎶᎯ ᏂᎬᎾᏛᎢ. ᏤᏍᏗ ᎦᏲᏟ ᎢᏯᏔᏬᏍᏔᏅ ᏱᏕᏍᏗᏒᏁᏍᏗ. ᎨᎯᏃ ᎢᏴᏛ ᏗᏁᏙᎮ ᎤᏂᏣᏘ ᏑᎾᏓᏡᎩ ᏏᏆ ᎠᎾᎵᏍᏓᏴᏂᏙᎮᎢ. ᎨᏍᏗ ᏱᏛᎣᏥᎩᏏ ᎣᎩᏲᎰᏎᎸ. ᏅᏁᎰᎾ ᏕᎯᏏᎳᏛᎥᏍᎬ, ᎭᏂᏉ ᏥᏅᎨᏍᏗ ᎬᏯᎦᏙᏍᏕᏍᏗ. ᎤᏂᏍᏈᏍᏓᏗ ᎾᏂ. ᎢᎦᏛᏃ ᎾᎿ ᎠᏂᏙᎾᎢ ᎾᏍᎩ ᎤᎾᏛᎦᏅ, ᎢᎳᏯ ᎠᏯᏂᎭ ᎯᎠ, ᎤᎾᏛᏁᎢ. ᎣᎩᎶᎨᏒ ᏧᎾᏓᎴᏅᏓ ᎤᏂᏥᎸ ᏙᎦᏛᎯᏍᏗ. ᎠᏎᏃ ᎤᏐᏱ ᎤᎾᏚᎵᏍᎨ Ross ᏃᎴ Ridge, ᎤᎾᏕᏗᏉ ᎠᏂᏣᎳᎩ, ᏗᏂᏓᎭᏃᏫᎨᏎ, ᎠᏎᏉ ᎦᎳᎱᏂ ᏃᎴ ᏤᎩᏏᏂ. ᎤᏅᏗ ᎤᏆᎳᏛ ᎠᏥᏍᏛ ᎤᏌᏁ ᎦᏍᎩᎸ ᎪᏱᏁᎢ. ᏓᎾᎵᏍᏔᏴᎲᏍᎬ ᏃᎴ ᎠᎾᎵᏗᏍᎩᏍᎬ ᎨᏙᎲ ᎠᏎᎩ ᎯᏍᎩ ᎢᏳᏩᎦᏔ ᏑᎾᏙᏓᏆᏍᏗ. ᏥᏌᏃ ᏚᏍᏓᏩᏛᏎᎢ. ᎿᏉᏃ ᎾᎥᏉ ᎤᎷᎴ ᏗᏓᏁᎸ, ᎠᏍᎪᎯᏧᏈ ᎠᏂᏯᏫᏍᏍᎩ ᏗᏘᏂᏙᎯ ᏙᏧᏅᏎ ᏧᎵᎢ ᏂᏙᏓᎬᏩᏠᎯᏍᏗᏱ, ᎯᎠ ᏅᏧᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᏞᏍᏗ ᏨᏒ ᏣᏓᏕᏯᏙᏔᏅᎩ; ᎥᏝᏰᏃ ᏰᎵ ᏱᏂᎪᎯ ᏣᏴᏍᏗᏱ ᏥᏁᎸᎢ ᏥᎾᏆᏍᏗᏉ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᎾᎵᏥᏙᏂᏙᎸᎭ ᎯᎠ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎸᎯᏢ ᎡᎳᏂᎬᎢ, ᎾᏍᏉ ᎯᎠ ᎠᎨᏴ ᏥᎾᏛᎦ ᎤᏂᏃᎮᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᎦᏅᏓᏗᏍᏙᏗ. ᎤᏂᏃᎮᎴᏃ ᎦᎶᏄᎮᏛ ᎤᏅᏙᏗᏱ ᎤᏂᏂᏴᏗᏱ ᏥᏌ, ᎠᎴ ᎤᏂᎯᏍᏗᏱ. ᎠᏎᏃ ᎠᏏᏉ ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᎠᏓᏅᏖᏍᎨᎢ, ᎬᏂᏳᏉ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᎤᏅᏏᏛ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎠᏍᎩᏓᏍᎬᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏦᏩ, ᏕᏫ ᎤᏪᏥ, ᏞᏍᏗ ᏣᏍᎦᎸ ᎯᏯᏅᏗᏱ ᎺᎵ ᏣᏓᏴᏍᏗ, ᎾᏍᎩᏰᏃ Ꮎ ᏥᎦᏁᎵ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏅᏖᎸᎯ; ᎨᏥᏅᏏᏛᏃ ᎠᎴ ᎠᎾᎵᏅᏟ ᏧᏗᏱ ᎠᏁᎯ ᎤᎾᏛᎦᏁ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᏉ ᏚᎾᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎭᏂ ᏱᏓᎴᏅ ᎢᏗᏍᏔᏩᏗᏒ ᏣᎵ, ᎤᏛᏅ ᏲᎾ. ᎤᎩᏨᏛ ᏥᏌ ᎤᏚᎵᏍᎬᎩ ᎨᎵᎵ ᎤᏪᏅᏍᏗᏱ; ᏈᎵᎩᏃ ᎤᏩᏛᎲᎩ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏍᏓᏩᏚᎦ. ᎤᏂᏃᏕᎾ ᎠᏃᎵᎨᎢ ᏃᎴ ᎠᏂᎦᏔᎮᎢ ᎣᏍᏓ ᏴᏫ ᎨᏒᎢ. ᏚᏥᎭᎷᏁ ᏣᎵ, ᎠᏓ ᏗᏍᏆᎸᎩᏓ ᏥᏕᎪᎰᏍᎪ ᎢᏳᏍᏗ ᏂᏚᎵᏍᏔᏁ ᏗᎧᏂᎨᎾ. “ᏕᏓᏓᎪᎲᏳ, ᎪᎩ, ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᎲᏳ!” ᎩᎶ ᏣᏍᎦᏅᎪ ᎠᏲᏍᏗᏍᎪ ᎾᏍᏉ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᏍᎦᏂᏰᏃ ᎠᏲᏍᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ. ᎿᏉᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎠᎾᏛ, ᎾᏍᎩ ᏥᏚᏂᏅᏎ ᏗᏨᏍᏙᏗ ᎠᎴ ᏥᏚᎾᏠᏒᏎ ᎠᏕᏒᎲᏍᎩ. ᎠᏂ ᎠᎦᏙᎲᎯᏍᏗ ᎨᏒ ᎠᏓᏅᏙ ᎬᏙᏗ ᎪᎵᏍᏗ. ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏓᏍᎫᏓᏛ ᎦᎵᏉᎩ ᏙᏓᎸ ᎦᏛᎦ, ᎾᎿ ᎠᎨᏴ ᏧᏬᎳ. ᎠᎴ ᎢᎸᎯᏢ ᏫᎦᎷᎩ, ᏧᏍᏗ ᏕᎦᏚᎲ, ᎠᎴ ᏧᏛᎾ ᏕᎦᏚᎲ, ᎠᎴ ᎢᏴᏛ ᏗᏓᏁᎶᎯ ᎨᏒᎢ, ᏧᏂᏢᎩ ᏕᎦᎳᏅᏛ ᏓᏂᏅᎥᏍᎨᎢ, ᎠᎴ ᎬᏩᏔᏲᏎᎮ ᎤᎾᏒᏂᏍᏗᏱ, ᎦᏓᎷᏯᏛᏉ ᎾᏍᏉ ᎤᏄᏴᎢ; ᎾᏂᎥᏃ ᎾᏍᎩ ᎬᏩᏒᏂᎸᎯ ᏚᎾᏗᏩᏍᎨᎢ. ᏓᏈᏃ ᎠᎴ ᎵᏍᏗ ᏭᎷᏨᎩ, ᎬᏂᏳᏉᏃ ᎾᎿ ᎡᎲᎩ ᎩᎶ ᎢᎨᏍᏗ ᎪᎯᏳᎲᏍᎩ, ᏗᎹᏗ ᏧᏙᎢᏛ, ᎠᏧᏏ, ᎤᏙᏓᏍᎩᏂ ᎠᎪᎢ ᎨᏒᎩ. ᏂᎦᏓ ᎤᏲᎰᏐᏁᎸ. ᏫᎦᎸᎳᏗᏴ ᏗᏟᏰᎵᏓᏍᏗ ᏚᏄᎪᏔᏅ ᎠᏂᏴᏫᏯ ᏚᎾᎵᎪᏓᏁᎸ, ᎠᏎᏃ ᏄᏪᏒ ᏤᎩᏏᏂ, ᏃᏉ ᏩᏂᏌᏙᏯ. ᎢᏴᏛᏃ ᏭᏘᏅᏍᏔᏅ ᎤᏓᏰᎵᎸ ᎤᏂᏣᏘ ᎠᏁᏙᎲᎢ, ᏕᎦᏰᏌᏛ ᏗᎦᎴᏂ ᏚᏐᎾᏕᎢ, ᎠᎴ ᏚᎵᏥᏍᏇᎢ, ᎠᎴ ᎦᏃᎪ ᎤᏒᏂᎴᎢ; ᎤᎾᎴᏅᎮᏃ ᎤᏲ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏌᏉᎬᏪᏒᏛ, ᏥᎪ ᎠᏴ? ᏅᏩᏓᎴᏃ, ᏥᎪ ᎠᏴ? ᎠᏗᏍᎨᎢ. ᏘᎵ ᏚᏂᏒᎾᏛ ᎪᏍᏛ. ᎥᏝ ᎠᏗᎾ ᎢᏨᏯᏓᏅᏖᎮᎯ ᎨᏒ ᎢᏦᎯᏳᏒᎢ, ᎣᏥᏍᏕᎵᏍᎩᏉᏍᎩᏂ ᎨᏒ ᎢᏣᎵᎮᎵᎬᎢ; ᎢᏦᎯᏳᏒᏰᏃ ᏂᎦᎵᏍᏙᏗ ᎠᏏ ᏥᏕᏥᏙᎦ. ᎠᎴ ᎾᏂᎥ ᎤᎾᏓᏎᎪᎩᏍᏗᏱ ᏣᎾᏟᏂᎬᏁᎰ ᏂᎦᎥ ᎤᎾᎵᏍᏆᏂᎪᏗᏳ ᎨᏐᎢ. ᎠᎴ ᎾᏍᎩ ᎠᏲᎩᏉ ᎠᎵᏍᏚᎶ ᎨᏥᏅᏁᏗᏱ ᎤᎾᏚᎵᏍᎪᎢ, ᎠᏴᏍᎩᏂ ᎠᏲᎩ ᏂᎨᏒᎾ. ᏣᏉᏍᎪ ᏯᏕᎶᎰᏍᎦ ᎣᏏᏉ ᎨᏒ ᏏᏆ?” ᎠᏍᎦᏂᏰᏃ ᎥᏝ ᏱᎨᏣᏓᎵᏁᎯᏕᎮᏍᏗ; ᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏱᏣᏓᏄᏴᏗ, ᎬᏩᎦᏘᏯᏍᎩᏂ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏣᏓᏄᏴᏗ. ᎤᎧᏛ ᏚᏍᏚᏤ ᎤᎦᎾᏅ. ᏦᎢᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎡᏉᏂ ᏕᎨᏴ ᎠᎴ ᎠᎹ ᏕᎦᏄᎪᎬ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎩᎬᏃ ᏂᏚᎵᏍᏔᏅᎩ. ᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏣᏪᏎᎭ; ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ ᎤᏐᏅ ᏁᏨᏁᎸᎢ; ᎩᎶᏍᎩᏂ ᎯᎦᏘᏏ ᏣᎪᏇᎷᎲᏍᎨᏍᏗ, ᏐᎢ ᎾᏍᏉ ᎯᏯᎵᏍᎪᎸᏓᏁᎮᏍᏗ. ᎠᎬᏱᏃ ᎨᏒ ᏧᏂᏒᏍᏗ ᎠᏍᏆᏚᎸ ᎠᎩᏩᏒ ᎡᎳᏗ ᏧᎵᎬᏩᏟ, ᎨᏍᏗ ᎣᏍᏓ ᎾᎿᎨᏒ ᏃᎴ ᎠᏂᏫᎾᎨᏍᏗ ᎦᏲᏟᏉ ᎠᏂᏖᎵᏕᎩ ᏗᎾᎳᏫᎩ ᏃᎴ ᏳᎾᎵᏍᎨᏗᏴᏓ ᎤᏂᏒᏍᏗ. Ꭿ-ᎠᏃ ᏚᏟᎶᏍᏓᏁᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎤᏅᏒ ᎠᎾᏓᎸᏉᏗᏍᎩ, ᎾᏂᏍᎦᏅᎾ ᎤᎾᏤᎸᎯ, ᎤᏩᎾᏓᎴᏃ ᏅᎵᏌᎵ ᏗᏂᏰᎸᏍᎩ. ᎠᏓᏍᏕᎸᏓ ᎠᏔᏲᎯ ᎠᏓᏅᏖᎵᏙ, ᎠᏆᏛᏅ. ᏍᎩᏴ ᎤᏲ ᏂᎦᎵᏍᏘᏍᎬ ᏙᏰ, ᎣᎦᎵᎪᏅ ᏍᎦᏰᎬᏍᏔ ᎠᏌᎻᏓ ᏃᎴ ᏧᏤᎵ ᎠᏂᏲᏍᎩ, ᏚᎨᏓᎵᏴ ᏙᏥᎭᏲᎲ ᎤᎾᎵᏗᎩᏛ. ᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏂᎨᏴ ᏓᎾᏣᎤᏍᎬ ᎤᏢᏉᏗ ᏂᎨᏒᎾ ᏓᎾᏄᏬᏍᎨᏍᏗ, ᎤᎾᏓᎾᏰᎯᏍᏗ ᎠᎴ ᎤᎾᎵᏏᎾᎯᏍᏗ ᎨᏎᏍᏗ; ᎥᏝᏍᏗᏃ ᏓᏂᏍᏕᏲᎲ ᏚᏂᏍᏘᏰᎬᎢ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ, ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ, ᎠᎴ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏗᏄᏬ ᏱᏓᎾᏣᏅᏗᏍᎨᏍᏗ; ᎾᏍᎩ ᎯᎠ ᎿᏉ ᏦᎢᏁ ᏥᏌ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏲᎱᏒ ᏚᎴᏅ ᏅᏓᏳᏓᎴᏅᏛ. ᎤᏙᎯᏳᎯᏰᏃ ᎢᏴᏛ ᎢᎬᏁᎸᎯ ᏂᎦᎵᏍᏗᎭ ᎢᎬᏱᏱ ᎤᎵᏁᏨᎯ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᏩᏂᎦᎳᎯᏳ ᎨᏒ ᎠᎴ ᎬᏩᏓᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᏍᏗ. ᏍᏗᏫ ᎤᏩᏒ ᎠᏓᏅᏖᏍᎬ ᎣᎯᏍᏗ ᎡᎵᏍᎨ. “ᎨᏍᏗ ᏱᏥᎪᏩᏘ ᎤᏍᏆᏂᎩᏗ ᎨᏒ --- ᏓᏏᎳᏛᏉᏰᏃ.” ᎾᎯᏳᏃ ᎥᏝ ᎤᏍᏗᏉ ᎤᏕᏯᏙᏗ ᏱᏄᎵᏍᏔᏁᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎦᏅᏅ ᎤᎬᏩᎵ. ᎠᎨᏴᏰᏃ ᏥᏓᏤᎰᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏙ ᎤᏰᎯᎤᎾᏁᎳᏗᏍᏗᏱ ᎢᎩᎯᏛ ᎠᎴᏂᏙᎲ ᎤᏰᎯ; ᎤᏰᎯᏍᎩᏂ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎤᏚᏓᎴᏛ ᎨᏐ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏛ ᎤᏰᎯ ᎤᎾᏁᎳᏗᏍᏗᏱ. ᎾᎯᏳᏃ ᎢᏳᏓᎴᏅᏛ ᏆᎴᏗ ᎤᏲᎸᎩ ᎥᎤᏪᎪᏗᏱ. ᎠᏎᏃ ᎠᏂᏧᏏ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎢᏳᏃ ᎯᎠ ᎠᏍᎦᏯ ᎢᎯᏯᎧᏅᎭ ᎥᏝ ᏏᏌ ᎢᏍᏓᎵᎢ ᏱᎦᎨᏎᏍᏗ. ᎩᎶ ᎤᎬᏫᏳᎯ ᎠᏤᎸᏍᎩ, ᎧᏁᎬ ᏏᏌ ᎠᏡᏗᏍᎪᎢ. ᎠᏎᎩᏍᏉ ᏂᎯ ᎤᏍᏗ ᎠᏣᏗ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ. ᎠᎴ ᏂᎦᏛ ᎢᏓᎵᏅᏟ ᏦᏤᏙᎭ, ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᏕᏣᏓᏡᏩᏗᏒ ᎨᎴᏏᏱ; ᏣᏉ ᏂᎦᏓ ᏚᎵᏘᎾᎥ ᏣᎵ, ᏩᏍᏗ ᏗᏂᏍᏔᎢ, ᎠᏁᏙᎯ ᏱᎨᏒᎾ. ᎤᏪᏘ ᏓᏍᏔᏅᏅ ᏓᏥᏍᏔᏩᏕᏏ ᎤᏛᏅ ᏣᎵ. ᎠᏌᎻᏓ ᎠᏰᎵ ᎦᏟ ᎤᎩᎸᏕ ᏐᏈᎵ, ᏙᎯᏉ ᏓᏌᎡ ᏧᏔᎾᎶ, ᎦᏅᏃᏫ ᎤᏅᏍᎦᎴ. ᏅᎦᏍᎪᎯᏃ ᎢᏳᏕᏘᏴᏛ ᏄᎵᏍᏔᏅ, ᎤᏓᏅᏖᎴ ᏓᏩᏛᎲᏍᏗᏱ ᎠᎾᎵᏅᏟ ᎢᏏᎵ ᏧᏪᏥ. ᏍᎩᏉᎴᏃ ᏱᎩ. ᎠᎬᏱ ᎤᏰᏣ, ᎤᏛᎦᏁ ᏧᏍᏆᏴᏍᏗ ᎠᏍᎪᎩᏍᎬ ᎤᏔᎴᎦᏒᎢ ᎤᎧᏔ ᎤᏂᏍᏆᏂᎪᏙᏗ. ᎠᎴ ᏂᎦᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᏍᎩᎸ ᏚᎾᏚᏫᏍᏛᎩ ᏓᏂᏙᎬᎩ, ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᎠᎴ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅᎢ, ᎠᎴ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅᎢ, ᎠᎴ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏚᎾᎵᏯᏍᏚᏅᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ; ᎠᎴ ᎤᏲᎢᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏗᏂᏁᎵᏛ ᎠᎴ ᏧᏂᏍᏓᎢ ᎾᎯᏳ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎢᏣᏛᎬᎦ ᏓᏟᎶᏍᏛ ᎠᏫᏍᎩ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏁᎳᏅᎯ ᏥᏯᏚᎸᎡᎭ, ᎥᏝ ᏂᎯᏉ ᏨᏒ, ᎾᏍᏉᏍᎩᏂ ᏂᎦᏛ ᏥᎬᏆᏛᎦᏁᎭ ᎪᎯ ᎢᎦ ᏥᎩ, ᎾᏍᎩ, ᎥᏝ ᎠᎴᏉ ᎾᏆᏍᏛᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᎾᏆᏍᏛ ᎢᏣᎵᏍᏙᏗᏱ, ᎯᎠ ᎾᏍᎩ ᏨᏆᎸᎥ ᎤᏩᏒ. ᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎬᎵᏍᏆᏗᏍᎩ ᎠᏟᏂᎬᏁᎯ ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎠᎪᎪᎲᎩᏃ ᎠᎴ ᎠᎩᏃᎮᎸᎩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ. ᎪᎱᏍᏗᏍᎪ ᎤᏧᏗ ᏏᏆ?” ᎾᏍᎩᏃ ᎤᎧᏌᎴᏍᎬ ᎢᏳᏍᏗ ᎠᏛᏍᎨ ᏃᎴ ᎦᎵᏦᎲᏍᎨ. ᎨᏍᏗ ᎯᎸ ᎠᎪᏩᏛᏙ ᏱᎨᏎᎢ ᏍᎩᎾᎾ ᎢᏢᏭᏆ ᏥᏍᏕᏥ. ᏍᎩᏯᎵᎮᎵᏤᎰᎢᏍᎪ ᏂᎦᎥ ᎢᏨᏍᏕᎵᏍᎬ? ᎦᎸᎳᏗᏣ ᏩᏚᎧᏃᏁ ᏅᏯ ᏗᎪᎰᏍᎬ. ᎨᎵᏍᎬ ᏳᏂᎨᏳᎾᎥᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᎹ ᎤᎵᏍᎨᏛ ᎠᏁᎵᏍᎪ, ᎠᏎᏃ ᎦᏓᏁᎯ ᎦᏙ ᏳᏕᏯᏙᏗ. ᎠᏰᎵᏎᏉ ᎤᎸᏔᎵᏕᎾ ᏄᎵᏍᏗᏍᎬ ᏫᎵᎻ ᎤᏓᏅᎯᏓ ᎤᏬᏂᏒ. ᎢᎾᏓ ᎤᏙᏳ ᏥᎨᏐ ᏧᏂᎦᎸᏍᏓᏁ ᏚᏴᎯᎲ ᎠᏒᎬ ᎪᎢ. ᎣᎩᏰᎸ ᏓᏍᎩᏍᏕᎸ ᏦᏥᏩᏛᏗ ᎤᎾᎵᏗᎩᏛ, ᎤᏛᏅ ᎠᏓᏅᏖᎵᏙ. ᎠᎨᏴ ᎤᏲ ᎤᏓᏅᏙ ᏣᏕᎲᏍᎪ ᎠᏲᎵ, ᎤᏍᏆᎸᎡᎸ ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ; ᎠᏎᏃ ᎿᏉ ᎦᎾᏄᎪᏩ ᎠᏲᎵ, ᎥᏝ ᎿᏉ ᏯᏅᏓᏗᏍᎪ ᎡᎯᏍᏗ ᎤᏓᏅᏓᏛᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᎵᎮᎵᎬ ᏴᏫ ᎤᎾᏄᎪᏫᏒ ᏒᎶᎯ. ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏏᏴᏫ ᎨᏒ ᎾᎥ ᎢᏧ-ᎾᏓᎵ, ᎠᎴ ᏗᎾᏓᏅᏟ ᎨᏒ ᏱᎨᏲᎲᏍᎨᏍᏗ, ᎯᎠ ᏱᏂᎦᏪᏍᎨᏍᏗ, ᎯᎦᏙᎥᎯ ᎤᎬᏫᏳᎯ; ᎾᏂᎥᏉᏰᏃ ᎬᎩᎦᏔᎯᏳ ᎨᏎᏍᏗ, ᎤᏍᏗᎧᏂ ᎡᎲ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᎲ ᏫᎬᏍᏗ. ᎠᎴ ᏚᏙᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ. ᎤᎾᏓᏅᏖᏗᏍᎨ ᎢᎦᏓ ᏧᎵᎢ ᏫᎵᎻ, ᎠᏁᎵᏍᎨ Ꭲ ᏂᎦᎥ ᎤᎾᎦᏎᏍᏛ ᎤᏨᏉᏗ ᎢᏳᎵᏍᏙᏗ. ᏫᎦᏢᏍᎩ ᎢᎪᎯᏓ ᎤᏦᏱᎴ. “ᏓᎦᎴᏅᏔᏂ ᏕᏥᏯᏂᏍᎬ ᏚᎾᏙᎥ. ᎿᏉᏃ ᏈᏓ ᎤᏞᎠᏒ ᏫᏚᎷᏤᎸ ᎠᏂᏫᏅ ᎧᏂᎵᏯ ᏧᏅᏏᏛ ᎬᏩᏯᏅᎯᎸᎯ, ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏴ ᎾᏍᎩ ᏤᏥᏲᎭ. ᎦᏙ ᏧᎵᏰᎢᎸᏍᏔᏅ ᎯᎠ ᏥᏥᎷᎩ? ᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᎢᏥᏴᏍᏗᏱ ᎠᏯᏙᎵ ᎦᎶᎯᏍᏗᏱ; ᎤᏂᏣᏘᏰᏃ, ᎢᏨᏲᏎᎭ, ᏓᏳᏂᏲᎵ ᎤᏂᏰᏍᎢᏱ, ᎠᎴ ᎥᏝ ᏰᎵ ᏫᎬᏩᏂᏴᏍᏗ ᏱᎨᏎᏍᏗ. ᏍᎩᏴ ᎠᏆᏣᏅᏓᏕᎰ ᎠᏆᏓᏅᏖᏗ.” ᎾᏍᎩ ᎧᏱᏅ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏆᏣ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏎᎻ ᎤᏪᏥᎨᏎᎢ, ᎾᏍᎩ ᏃᏯ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎴᎻᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎰᎻ ᏃᎴ ᏣᏄᏏ ᏃᎴ ᎡᎶᏗ ᎩᎳᏋᎯ ᎱᏂᎷᏤᏍᏗ, ᏃᎴ ᎧᏁᏌᎢ ᏫᏛᎨᏣᏌᏙᏱ ᏃᎴ ᏛᎭᏂᎩᏏ. ᎠᎴ ᎾᏍᎩ ᎰᎤᎬᏫᏳᎭ [ᎨᏂᎩᎵᏲᎢᏍᏙᏗ ᎨᏎᏍᏗ] ᎤᏇᏓᎵ ᎠᏂᏍᏓᏩᏕᎩ ᎤᏂᎬᎥᏍᎬ ᎦᏓᎭ ᎨᏒᎢ, ᎠᎴ ᏗᏂᏍᎦᎩ ᏄᏂᎬᏫᏳᏌᏕᎩ. ᎤᏂᏍᎦᎢᏍᏗ, ᎤᏅᏒ ᎠᎾᏓᏅᏖᏍᎬ ᎤᏂᎸᏉᏗ; ᎥᏝ ᏯᏂᏍᎦᎢᎭ ᏗᎬᏩᏂᏐᏢᏙᏗᏱ ᎨᏥᎸᏉᏗ. ᎾᏍᎩᏃ ᎢᏧᎳᎭ ᎠᏁᏙᎮ ᏥᎷᏏᎵᎻ. ᎠᎴ ᎧᏁᎬᎠᏆᏛᎦᏅᎩ ᏛᏓᎴᎲᏍᎬᎩ ᎠᏰᎵ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅᎢ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᏥᏂᎩ ᎠᏟᎶᏍᏗ ᎠᎧᎵᎢ ᎤᏣᎴᏍᏗ ᎠᎩᏏᏧᎬᏩᎶᏗ ᎠᎫᏴᏗ, ᎠᎴ ᏥᏂᎩ ᎠᏟᎶᏍᏗ ᏦᎢ ᎢᏯᎧᎵᎢ ᎤᏣᎴᏍᏗ ᎢᏳᏍᏗ ᎠᎩᏏ-ᏧᎬᏩᎶᏗ ᎠᎫᏴᏗ; ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᏗᏨᏁᎸᎩ ᎪᎢ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ. ᎦᏙᏃ ᎠᏇᎵᏒ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏓᏛᏛᎾ, ᏁᏆᎸ ᏥᏍᎪᎵ ᏍᎩᎾᎾ ᎢᏳᏪᏍᏗ ᎯᎨᏎᎢ. ᎠᎬᏱᏣ ᎠᏍᏆᏚᎸ ᎤᏪᏅᏎ ᏃᎴ ᎤᏩᏁ, ᎤᏍᏓᏩᏛᏎ ᎠᎳᏂ. ᎯᎠ ᎾᏂᏪᏍᎬᎩ ᎠᏍᏓᏯ ᎤᏁᎷᎬᎩ; ᎤᏃᏕᎾ ᎠᎩᎾ ᎠᏥᎸᎯ ᏰᎵᏉ ᎦᏁᎢᏍᏓᏁᏗ ᎤᎵᏂᎩᏗᏳ ᎨᏒ, ᎠᎴ ᎤᏪᎿᎢᏳ ᎨᏒ, ᎠᎴ ᎠᏏᎾᏌᏂᏳ ᎨᏒ, ᎠᎴ ᎬᏩᏄᎸᏗ ᏂᎨᏒᎾ ᎨᏒ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎣᏍᏛ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏒᎢ. ᎭᎾᎾ ᎡᎮᎢ ᎪᎨᏱ ᎢᎪᎯᏓ ᎤᏙᏳ ᎤᏓᏅᏘ ᏧᎬ. ᎾᏍᎩ ᎯᎠ ᎾᎾᏛᏁᎮᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᏂᎦᏔᎲᎾ ᎨᏒ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎠᏴ ᏂᎬᎩᎦᏔᎲᎾ ᎨᏒᎢ. ᎾᏍᎩ ᏗᏓᏚᏓᎳᎡᏗᏱ ᎨᎩᏍᎦᎩ, ᎠᎴ ᎠᏍᏓᏯ ᏂᎨᎬᏅ ᏗᏓᏚᏓᎳᎡᏗᏱ ᏂᎦᏗᏳ ᎨᎩᏂᏆᏘᎯ; ᎦᏓᏍᏕᏓᎵᏴᏍᎩ.” ᎠᎴ ᎠᏂᏯᏫᏍᎩ ᎦᎸᎳᏗ ᎠᏁᎲ ᎬᏩᏍᏓᏩᏛᏒᎩ ᎤᏂᏁᎬ ᏐᏈᎵ ᏧᎾᎩᎸᏗ, ᏧᏏᏙᎵ ᏙᎴᏛ ᏗᏄᏬ ᏚᎾᏄᏬᏍᏛᎩ, ᏧᏁᎬ ᎠᎴ ᏗᎦᏓᎭ ᏂᎨᏒᎾ. ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᏇᏅᏍᏗ ᏗᎾᏓᎪᎾᏗᏍᎬ ᏂᎯ ᏱᏤᏅᏓ ᏱᎩ. ᎤᎾᏓᏅᏘ ᎤᏂᏂᎬᏎᎲ ᏕᏥᏯᏙᎮᎮᏍᏗ; ᎢᏥᎦᎵᏱᏳ ᎨᏎᏍᏗ ᏗᏣᏓᏍᏆᏂᎪᏙᏗᏱ. ᎤᏙᎯᏳ ᎩᎾᎵᎢ!” ᎯᎠ ᏗᏂᎳᏫᎦ ᏣᏚᎧᏔᏁ ᎾᏍᏊ ᎤᏂᏌᏛᏗ ᎦᏙ ᎠᏔᎳᎧᏒᎢ ᏃᎴ ᏣᏚᎩᎬᏗᏤ ᎾᏍᎩ ᏂᎦᏓ ᏗᏂᏟᎯ ᏣᏚᏗᎦᏘᎸᏍᏗ ᎦᏟᏓ ᏍᎩᎾ. ᏣᏚᏂᏘᏏᎶᎡ ᏍᎩᎾ. ᎤᏅᏱᎭ ᎤᏁᎦᎸᎢ. ᎾᏃ ᎠᏧᏣ ᎠᎹ ᎦᏁᏁᎮᎢ ᎤᎦᏔ ᎠᎴ ᎦᏄᎸ ᎧᎾᏍᏕᎸᎩᏍᎬᎢ. ᎣᏁ ᏚᏟᎷᏆᏗᏅᏎ, ᎠᏓᏄᏖᏲ ᏫᎵᎻ. ᏕᎦᏃᏣᎸᏃ ᎾᎿ ᏂᎬᎾᏛ ᏚᏰᎵᏏᏙᎴᎢ. “ᎯᏓ ᎾᏅᏛᏁᎰ,” ᎤᏛᏁ. ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᎵᏍᎨ ᎦᏰᏥᏐᏢᏙᏗᏱ ᎦᎶᏁᏛ ᎨᏒ ᎢᏳᏍᏗ, ᎠᏃ ᏧᎬᏩᎶᏗ ᎠᏍᏆᏂᎪᏛ ᎢᏥᏈᏱ; ᎠᎦᎫᏴᎡᏗᏰᏃ ᎨᏒ ᎢᏴᏛ ᏫᏓᎧᏂᏍᎨᎢ. ᏂᎦᏓ ᏚᏂᏯᏪᎨ ᏃᎴ ᎠᎾᎵᎮᎵᎨ. ᏂᎦᏓ ᎤᎾᎵᎮᎵᏤ. ᎾᏍᎩᏍᎩᏂ ᎠᏂ ᏦᎸᎢ ᏱᎠᏁᏙᎮᎢ, ᎠᎴ ᏳᏂᏃᎮᎴᎢ, ᎢᏳᏃ ᎪᎱᏍᏗ ᏱᎬᏇᎯᏍᏗᎭ. ᎾᏍᎩ ᏂᎦᎥ ᎤᏩᏒ ᎤᏓᎸᏉᏔᏅᎢ ᎠᎴ ᎤᏢᏉᏗ ᎤᏕᏅᎢ, ᎾᏍᎩ ᎢᎦᎢ ᎠᎩᎵᏯ ᎠᎴ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎡᏥᎥᏏ; ᎤᎾᏫᏱᏰᏃ ᎯᎠ ᏂᎦᏪᎭ, ᎠᎩᎬᏫᏳᎯ ᎠᏉᎳ, ᎥᏝ ᎠᏉᏑᎶᏨᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏴᎦᏥᎪᏩᏛ. ᎩᎵᏗᏃ ᎠᎴ ᎠᎴᏈᏱ ᎢᏕᎯ, ᎢᏓᏛᎩᎭ ᏗᎩᏬᏂᎯᎯᏍᏗ ᎨᏒ ᎠᏂᏬᏂᏍᎬᎢ, ᎤᏍᏆᏂᎪᏗᏳ ᎤᏁᎳᏅᎯ ᏚᎸᏫᏍᏓᏁᎸ ᎠᏂᏃᎮᏍᎬᎢ. ᎥᏝ ᎠᎴ ᏯᎩᎪᎮ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎤᎬᏫᏳᎯᏰᏃ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎠᎴ ᎤᏃᏕᎾ-ᎠᎩᎾ ᎾᏍᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎢᎩ. ᏍᏗᏫ ᎤᏚᎵᏍᎨ ᏭᏥᏍᏓᎵᏗ, ᎠᏎᏃ ᏣᎵ ᎤᏅᏍᏓᏕᎴ. “ᎨᏍᏗᏃ ᏱᏥᎦᏔ ᏃᏉ ᎨᏒ,” ᎤᏛᏁ ᎰᎻ. ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎢᏳᏪᏓ, ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ, ᎭᏂ ᎤᏣᏔ ᎣᏍᏓ ᏏᏆ.” ”ᎨᎾ ᏏᏆ.” ᎠᏎᏃ, ᎤᎾᏟᎶᎾ ᏐᏈᎵ ᎠᎳᏑᎶ, ᎠᏂᎫᏑᏩᎩ ᏗᏂᏐᎯ ᏚᏂᏁᎦᎸᎮ ᏐᏈᎵ ᏧᏔᎾᎶ ᎢᏧᏅᏁᏙᏗ ᏃᎴ ᏗᏂᏴᏐᎵ ᏚᏂᏣᎦᏎ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᏄᏂᎥ. ᏑᏓᎵᏃ ᏫᏄᏒᎸ ᏥᏌ ᏚᏘᏅᏎ ᏈᏓ, ᎠᎴ ᏥᎻ, ᎠᎴ ᏣᏂ, ᎢᏅᏃ ᎢᎦᏘ ᎣᏓᎸ ᏚᎿᎷᏔᏁ ᎢᏴᏛ ᎤᏅᏒ ᎨᏒᎢ; ᎠᎴ ᎤᏓᏁᏟᏴᏎ ᎠᏂᎦᏔᎲᎢ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᎸᏒᎯ! ᏙᏛᏥᏲᏏᏌᏂᏰᏃ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏥᏰᏣᏍᎩ ᏥᎩ ᎪᎯ! ᎤᏲᏰᏃ ᎢᏣᏓᏅᏔᏩᏕᎨᏍᏗ ᎠᎴ ᏕᏣᏠᏱᎮᏍᏗ. ᎤᎾᏗᏍᎦᎶᏗ ᏫᏚᎭᏯᎸ ᏧᎾᎵᏍᏙᏗ, ᎠᏎᏃ ᏫᏚᏦᏨ. ᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏥᏛ ᎨᏒ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏖᎵᏙᎩᎯ ᏦᏍᏓᏑᏩᏍᎦ. ᏅᏍᎩᎮᎾᏳᏍᏗ ᎤᏩᏌ ᏤᏙᎰ ᏩᎭᏯ. ᎾᏍᎩᏃ ᎢᏳᎾᏍᏗ ᎨᏒᎢ, ᏙᏥᏁᏤᎭ ᎠᎴ ᏙᏥᏍᏗᏰᏗᎭ ᏙᏥ-ᏁᎢᏍᏓᏁᎭ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᏙᎯᏉ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᎤᏅᏒ ᎤᎾᏤᎵ ᎠᎵᏍᏓᏴᏗ ᎤᎾᎵᏍᏓᏴᏙᏗᏱ. ᎠᏗᎾ ᎢᏳᏃ ᎠᏴ ᏱᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏱᎩ, ᎾᏍᎩ ᏃᏥᏪᎭ ᎣᏣᎵᏥᏙᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᏄᏍᏗ ᎢᏦᎯᏳᏅ. ᏄᏩᏁᎰᎾ, ᎤᏲᏏᏍᎨ. ᏈᏓᏃ ᎤᏍᏚᎢᏒ ᎠᎰᎵ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎦᏙᎴᎣᏍᎦ ᎤᏁᎳᏅᎯ ᎩᎶ ᏧᎸᏉᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎠᎴ ᏕᏣᏣᏅᏍᎬ ᎥᏝᏍᏗ ᎦᏚᎢᏉ ᎡᎯ ᎠᏣᏅᏗ ᎨᏒ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᎣᏍᏗᏰᎬ ᎠᏍᏕᏯᏍᏗ ᎨᏒᎢ ᎠᎴ ᎠᏕᎸᏓᎶᏂᎨ ᎠᏣᏅᏙᏗ, ᎠᎴ ᏗᏄᏬ ᏛᏄᏬᏍᎬᎢ, ᏆᎴᏗᏃ ᎤᏛᏛᏁ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᎤᏁᏤᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᎩ ᏂᏫ. ᏚᎾᏓᎪᎲ, ᎤᎾᎴᏅᎭ ᎤᏁᏡᎬᎢ. ᏃᏉ ᎠᏯ ᎣᎩᎾᎵᏱ, Michael ᏧᏙᎢᏓ, ᏥᎪᎥ ᎾᎥ ᎦᏙᎬᎢ. ᎤᏓᏴᏍᏗ ᎤᏪᎧᎯ ᎾᏍᎩ ᎠᏕᏒᎲᏍᎩ; ᎠᏎᏃ ᎠᏕᏒᎲᏍᎩ ᎤᎾᎵᎢ, ᎾᏍᎩ ᏥᎦᏙᎯ ᏧᏛᎦᏁᎰᎢ, ᎤᏣᎳᏅᎯ ᎠᎵᎮᎵᎪ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᏕᏒᎲᏍᎩ ᎧᏁᎬᎢ. ᎾᏍᎩᏍᎩᏂ ᎠᏴ ᎦᎵᎡᎵᎬ ᎤᎧᎵᏨ. ᎦᎵᏦᏕᏃ ᎤᏴᎸ, ᏗᏂᎨᏫ ᎬᏩᎷᏤᎸᎩ, ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏍᏙᎯᏳᎲᏍᎦᏍᎪ ᏰᎵ ᎾᏍᎩ ᎢᎬᏆᏛᏁᏗ ᎨᏒᎢ? ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎥᎥ, ᏣᎬᏫᏳᎯ. ”ᏏᏆᏗ ᎤᎬᏫᏳ ᎤᏍᏆᏂᎩᏗ. ᎤᏒᏂᎴᏃ ᎤᏬᏰᏂ, ᎤᏗᎴᎲᏍᎬᏃ ᎤᏗᏩᎭᎢ. ᏚᎴᏁᏃ ᎠᎴ ᏚᏍᏕᎸᎯᏙᎴᎢ. ”ᎤᎪᏗᏳ.” ᏗᏁᎨᎢ ᏴᏫ. ᎾᏍᎩᏃ ᎯᎠ ᎾᏍᎩᏯ ᏂᏕᎦᎵᏍᏗᎭ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᏁᏨᎢ, ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ; “ᏃᎴ ᏤᏍᏗ ᏱᏕᏍᏗᏐᏤᏍᏗ ᏐᏈᎵ ᎤᎾᎵᏙᎩᏯᏍᏗ ᏗᎾᏓᏌᎩᏒᎢ ᏐᏈᎵ,” ᎤᏪᎷᏁ ᎠᎳᏂ. ᎧᎪ ᎠᏏᎾ ᎤᏍᏇᎵᏰᏗ “ᎤᏣᏓ ᎣᏍᏓ’?” ᏕᎾᏓᎪᎲᏳ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏕᏫ ᏥᎧᏁᎢᏍᏗᎭ ᎣᏍᏛ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏒ ᏴᏫ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᎤᏰᎸᎾᏁᎭ ᏂᏚᎸᏫᏍᏓᏁᎸᎾ ᎨᏒᎢ, ᏗᏥᏲᎱᏒᎯᏰᏃ, ᏕᏨᏅᏃ ᎦᎶᏁᏛ ᏪᎲ ᏚᏩᏍᎦᎸ ᎤᏁᎳᏅᎯ. “ᏐᏉ ᎢᏳᏩᎬᏘ ᎤᏕᏘᏴᏌᏗᏒ ᎦᎷᎦ ᎠᎾᏓᎪᎾᏗᏍᎬ.” ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎠᏴᏍᎪ ᎯᎠ ᎾᏍᎩ ᏕᏍᎩᏯᏟᎶᏍᏓᏁᎭ, ᏂᎦᏛᏉᎨ? ᎠᎴ ᎠᎰᎵ ᎠᏥᏁᎸᎩ ᎾᏍᎩ ᎬᏗᏍᎬ ᎤᏣᏘ ᎠᏢᏈᏍᏗ ᎨᏒ ᎦᏬᏂᏍᎬᎩ ᎠᎴ ᎠᏐᏢᎢᏍᏗᏍᎬᎩ; ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᏅᎦᏍᎪᎯ ᏔᎵᎦᎵ ᎢᏯᏅᏙ ᎤᏕᏗᏱ. ᎬᏂᎨ ᎤᏍᎪᎸ ᏃᎴ ᎤᏬᏗᎨ ᎤᏍᎪᎸ ᎨᏎ ᏗᎦᏅᏍᎨᏂ. ᎤᎦᏃᏩ ᎤᏃᎸᏔᏁ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎨᏥᏍᏆᏂᎪᏙᏗ. ᏩᎩᎷᏨ ᎣᎩᎵᏦᏩᏛ, ᎠᏰᎵ ᎠᏆᎴᏅ ᏴᏫ ᏃᎴ ᎦᎶᏇ. ᎠᏎ ᏞᏍᏗ ᎩᎶ ᏱᏥᎵᏓᏍᏔᏁᏍᏗ; ᎥᏝᏰᏃ [ᎾᎯᏳ ᎢᎦ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏱᎩ] ᎬᏂ ᎢᎬᏱ ᎠᏂᏑᎵᎪᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᎠᏍᎦᎾ ᏧᎸᏫᏍᏓᏁᎯ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎭ, ᎾᏍᎩ ᎠᏛᏗᏍᎩ ᎤᏪᏥ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎠᎴ ᎢᏣᏅᏖᏍᏗ ᏦᎢ ᏧᏕᏘᏴᏛ ᏂᏥᏑᎵᎪᎬᎾ ᏒᏃᏱ ᎠᎴ ᎢᎦ ᏗᎦᏥᎦᏌᎢᎯ ᎢᏥᏏᏴᏫᎭ ᎢᏨᏰᏯᏔᏅᎢ. ᎭᏓᏅᏓᏛᎵ ᎯᎠ ᏥᏂᏥᏪᎭ; ᎤᎬᏫᏳᎯᏃ ᏫᏣᎲᏏ ᏣᎦᏙᎥᎯᏍᏗᏱ ᏂᎦᎥ ᏧᏓᎴᏅᏛ. ᏫᎵᎻ ᎠᏓᎵᏗᎩᎢ ᎤᎾᏛᏁ. ᎨᏍᏗ ᏱᏓᎨᏏ. ᏫᏗᎷᏨ ᎩᎾᏓᏅᏖᏗ. ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎠᎴ ᎠᎩᎾ ᏚᎾᏘᏃᎸᎩ; ᏗᏂᏐᎯᏱᏃ ᏧᎾᏄᏬ ᏚᏂᏢᏅᎩ, ᎠᎴ ᎾᎿ ᎤᎾᎩᎸᏔᏅᎩ. ᎨᏍᏗ ᏳᎾᏚᎵᏍᎨ ᏧᏂᎵᏬᎢᏍᏗ, ᎾᏍᎩᏃ ᎠᏂᎾᎷᏍᎨ. ᎾᏍᎩᏰᏃ Ꮎ ᎤᎬᏫᏳᎯ ᎤᎨᏳᎯ ᎠᎩᎵᏲᎢᏍᏗᏍᎪᎢ, ᎠᎴ ᏕᎦᎵᎥᏂᎰ ᎾᏂᎥ ᏧᏪᏥ ᎾᏍᎩ ᏧᏓᏂᎸᏨᎯ ᎨᏒᎢ. ᎾᎯᏳᏰᏃ ᎨᏎᏍᏗ ᎠᎩᎵᏯ ᎡᎮᏍᏗ, ᎾᏍᎩ ᎪᏢᏅᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏁ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏗ ᎥᏝ ᎾᏍᎩ ᎢᏳᏍᏗ ᏳᏕᏃᎢ, ᎥᏝ ᎠᎴ ᎤᏕᏗ ᏱᎨᏎᏍᏗ. ᎠᎴ ᎿᏉ ᎠᏂᏆᎵᏏ ᎾᏍᏉ ᎥᎬᏩᏛᏛᏅᎩ ᏄᎵᏍᏙᏔᏅ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏗᏥᎦᏙᎵ ᏝᏬᏔ ᏚᏅᎵᏰᎥᎩ, ᎠᏆᏙᏑᎴᎥᎩᏃ ᎠᎴ ᎢᏥᎪᏩᏘᎭ. ᎤᏁᎳᏅᎯᏰᏃ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᏥᏄᏩᏂᏌᏁ ᎡᎶᎯ ᎠᏂᏏᎾᏌᏅ ᎠᏅᏗᏍᎬ ᎤᏁᎳᏅᎯ ᏂᎬᏩᎦᏔᎲᎾ ᏥᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᏂᎬᏩᎦᏔᎲᎾ ᏥᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᎣᏏ ᎤᏰᎸᏁ ᎠᎵᏍᎦᏁᏛ ᎠᎵᏥᏙᏗ ᎨᏒ ᎤᏮᏙᏗᏱ ᏧᏍᏕᎸᏗᏱ ᎠᏃᎯᏳᎲᏍᎩ. ᎥᏝᏰᏃ ᎠᏏ ᏳᏓᏑᏰ ᎩᎶ ᎾᏍᎩ ᎤᎷᏤᎸᎯ, ᏗᎨᎦᏬᏍᏔᏅᎯᏉ ᎤᏩᏒ ᎨᏎ ᏕᎤᏙᎥ ᎤᎬᏫᏳᎯ ᏥᏌ. ᎾᏂᎥ ᎦᏥᎨᏳᎢ ᎨᏒ ᏕᏥᎬᏍᎪᎸᎥᏍᎪ ᎠᎴ ᏕᏥᎩᎵᏲᎢᏍᏗᏍᎪᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎵᏂᎩᏛ ᎭᏓᏅᏓᏓ ᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ. ᏗᎦᏘᏍᏗ ᎦᏰᏌᏗ ᏚᏩᏌᏙᎭᏰ ᎤᎾᏓᏓᏍᎩᏐᏗ ᏃᎴ ᎤᏂᏩᏛᏗ ᎤᏂᎯᏍᏗ, ᎠᏎᏃ ᎯᎸᎯᏳ ᏥᎨᏎ ᎤᏐᏱ ᎨᏎ. Ꭵ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᎷᏤᎸ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏲᎵᎦ ᏂᎯ ᎡᏣᎸᏉᏔᏅᎯ, ᏱᎰᏩ ᏫᏗᏣᎧᎿᏩᏗᏓ; ᎠᏂᎨᏴ ᎠᏁᎲ ᏂᎯ ᏭᏓᎪᎾᏛᏗ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᎡᎢ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ, ᎢᏳᏃ ᎩᎶ ᎾᏆᏎᎮᎲᎾ ᏱᎩ? ᎤᏔᏲᎴᏃ ᏈᎵᎩ ᎤᏦᏗᏱ ᎠᎴ ᎢᏧᎳᎭ ᏧᏂᏗᏱ. ᎤᎵᏏᎬ ᏭᏗᏅᏒ ᎤᏲᏨ ᏦᎳ ᎦᎵᏙᏗ, ᎫᎭᎳᏗ ᎤᏦᏩᏛ ᏭᎳᏛ ᏰᎵ ᎨᏎᏍᏗ ᏄᏓᎴᎯ ᎤᏩᎯᏍᏗ ᏦᎳ ᎦᎵᏙᏗ ᎠᎴ ᎤᏓ ᏳᏩᏛ ᎤᏔᎸᎩᏍᏗ, ᎭᎾ ᏭᏭᏍᏙᏗ. ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎤᏣᏘ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᎤᏣᏘ ᏓᎬᏁᏉᎢ. ᎤᏣᏗ ᎢᏳᏓᎴᎩ ᎠᏉᏪᎶᏗ ᎠᎩᎲᎩ, ᎠᏎᏃ ᎥᏝ ᏗᎪᏪᎶᏗ ᏱᏙᏓᎬᏔᏂ Ꮎ ᏴᏓᎬᏲᏪᎳᏁᎵ; ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏃ ᎰᏍᏛ ᎢᏍᏉᏎᎭ? ᎥᏝ ᎩᎶ ᎣᏍᏛ ᏱᎩ ᏌᏉ ᎤᏩᏒᎯᏳ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ. ᎤᏲ ᎤᏓᏅᏖ ᏂᎦᎵᏍᏙᏗ ᎠᏤ ᎤᎾᎵ ᎩᎦ ᎤᏔᏕᎩᏍᎬ. ᎾᏍᏉ ᎠᏴ ᎣᏏᏳ ᎠᎩᏰᎸᏅ ᏫᎬᏲᏪᎳᏁᏗᏱ ᎣᏍᏛ ᎠᎩᏰᎢᎸᏍᏗᏱ, ᏂᎯ ᎡᏣᎸᏉᏗ ᏗᎣᏈᎵ, ᎠᎩᏍᏆᏂᏰᏛᏰᏃ ᏂᎦᏛ ᎯᎠ ᏧᏓᎴᏅᏛ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᏗᎩᏃᏣᎶᏗ ᎣᏍᏓ ᏄᏍᏛ ᏫᎵᎻ, ᎥᏣ ᏃᏒ ᎠᎩᏍᏗ. ᎠᎴ ᎢᎩᎾᏄᎪᏫᏎᎸ ᎤᏲᏅ ᎢᎦᎵᏍᏕᎸᏙᏗ, ᏕᏫ ᎤᏅᏏᏓᏍᏗ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎠᏁᎲ ᎤᎾᏄᎪᏨ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎠᏰᎵ ᎤᎴᏅ, ᎤᏛᏛᏁ ᏥᏌ, ᎯᎠ ᏁᏪᏎᎢ, ᏝᏍᎪ ᎪᎱᏍᏗ ᏯᏗᎭ? ᎦᏙ ᎾᏍᎩ ᎯᎠ ᏣᏂᏃᎮᎭ ᎨᏣᏡᏗᏍᎬᎢ? ᎿᏉᏃ ᏣᏂ ᏣᏥᏍᏚᎲ ᏧᏛᎦᏅ ᏄᏍᏛ ᏚᎸᏫᏍᏓᏁᎲ ᎦᎶᏁᏛ, ᏙᏧᏅᏎ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᏥᏚᏓᏲᏎ ᎤᏩᏒ ᏥᏚᎫᏴᎮ ᎾᏂᎥᎢ, ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎠᏎᎸᎯ ᎨᏒ ᎾᎯᏳᎢ, ᎠᎴ ᏗᎨᏍᎩᎥᏏᏉ ᎣᎩ-ᏍᎦᏅᏨᎢ; ᎠᏴᏰᏃ ᎾᏍᏉ ᏗᎦᏲᏥᏁᎰ ᏂᎦᏛ ᏦᏥᏚᎩ; ᎠᎴ ᏞᏍᏗ ᎤᏓᎪᎵᏰᏗᏱ ᏫᏗᏍᎩᏯᏘᏅᏍᏔᏅᎩ; ᏍᎩᏳᏓᎴᏍᎨᏍᏗᏉᏍᎩᏂ ᎤᏲ ᎨᏒᎢ. ᎠᏫᏅ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᎩᎧᎿᏩᏕᏅ ᏥᏧᏣ ᎨᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎦᏙ ᎠᏏ ᎠᎩᎷᎳ? “ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ “ᎭᏓᏍᏕᏓᎵᏴᏍᎩᏞ-ᏧᏪᏥ ᏣᎧᎵᏨ?” ᎤᏛᏛᏁ ᏫᎵᎻ. ᎢᏳᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏱᏂᎬᏁᎭ ᏱᎦᏄᏬᎭ ᎧᏁᏍᎦ, ᎾᏍᎩ ᎪᎯ ᎢᎦ ᏠᎨᏏ ᏤᎭ, ᎤᎩᏨᏅᏃ ᏗᎦᏚᏗᏱ ᏬᎾᏗᏅᏗ ᏥᎩ, ᎤᏟᎯᏳᏍᎩᏂ ᏂᎯ ᏂᏙᏓᏥᏄᏬᎢ ᎤᏍᏗ ᎢᏦᎯᏳᎯ! ᎦᏙᎯ ᎤᏓᏑᏯ. ᎠᏎᏃ ᎿᏉ ᎡᎶᏛ ᎤᏕᏅ ᎢᏳ ᎢᎦᏚᎳᏫᏨ, ᎡᎶᏗᏏ ᎤᏪᏥ ᎠᏛ ᎤᎾᎵᏍᎩᎡᎴᎢ, ᎠᎴ ᎣᏎ ᎤᏰᎸᏁ ᎡᎶᏛ. ”ᏙᎢᏳᏍᏗ, ᏫᎵᎻ?” ᎾᏎᎵᏗᏃ ᎤᎷᏤ ᎾᎿ ᎠᎦᎥᎯᏍᏔᏅᎢ; ᎢᏳᏛᏁᏗᏃ ᎨᏒ ᏄᏛᏁᎴ ᏭᏴᎴ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎠᎴ ᏚᎴᏁ ᏧᎪᎵᏰᏗᏱ ᎪᏪᎵ. ”ᎡᎵᏍᏗ--ᎵᏍᏗ--ᎵᏍᏗ ᏐᏚᎯ ᎠᏰᎵ,” ᎤᏛᏁ ᏌᏌ. ᏫᎵᎻ ᎤᏩᏌ ᎤᎾᎦᏎᏍᏕᎢ ᏕᎦᎶᎨᏒ. ᎠᏂ ᎢᏗᎪ ᏩᏘᎭ ᎤᏓᎨᏳᏗ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎬᏅ ᎡᎳᏗ ᎢᎩᏁᎸᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᏕᏛᏅ ᎡᎳᏗ ᏱᏗᏗᏁᎭ ᎢᏓᏓᏅᏟ. ᎤᎪᏏᏓ ᎢᎬᏁ ᏍᏉ ᎤᏉᏔᏗ. ᎤᏍᎦᎣᏅ ᏗᎧᏃᏗ ᎨᏎᎢ. ᎿᏉᏃ ᏥᎷᏏᎵᎻ ᏫᎤᏂᎶᏎᎢ ᎣᎵᏩ ᏧᏙᎢᏛ ᎤᏌᎯᎸ ᎤᎾᏓᏅᏎᎢ, ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎾᎥ ᏥᎩ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎡᏅᏍᏗ ᎢᏴᏛ ᏥᎩ. ᏄᎾ ᎦᏲᏟ ᎤᏩᏛᎮ, ᎤᎵᏏᏂᏗ ᎤᎩᏍᏙᎡ, ᎤᎩᏎ ᏃᏉ ᎤᏂᏏᏗ ᎤᏪᏅᏎ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎤᎷᏨ, ᏔᎵ ᎠᎩᏄᏛᏗ ᎢᏯᏓᏅᏖᏗ ᎤᏁᎢ, ᎾᏍᎩ ᎠᏰᎵ ᎢᏯᏓᏅᏖᏗ ᎢᎦᎢ ᏥᎩ. “ᎠᎹ ᎯᏍᏚᏣ.” ᎢᏳᏃ ᎢᏣᎴᎲᏍᎨᏍᏗ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎨᏣᏓᏁᎮᏍᏗ ᎡᏥᏍᎦᏅᏤᎸᎢ, ᎢᏳᏃ ᎪᎱᏍᏗ ᎡᏤᎵᏎᎮᏍᏗ ᎩᎶᎢ; ᎾᏍᎩ ᎾᏍᏉ ᎢᏥᏙᏓ ᎦᎸᏔᏗ ᏤᎭ ᎦᎨᏥᏁᏗᏱ ᎯᎠ ᎢᏥᏍᎦᏅᏨᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᏱᏓᎦᏓᏂᎸᎪ ᎤᏩᏒ ᎤᏤᎵᎪᎯ. ᏃᏯ ᎢᎬᏓ ᎨᏎᎢ, ᎤᏍᏆᏔ ᎪᏍᏓᏴᎢ ᎢᎬᏓ ᎨᏎᎢ. ᎡᎶᏛᏰᏃ ᎤᏂᏴᎮ ᏣᏂ ᎠᎴ ᎤᎸᎴᎢ ᎠᎴ ᎤᏍᏚᏁ ᏗᏓᏍᏚᏗᏱ, ᏈᎵᎩ ᎡᎶᏛ ᏗᎾᏓᏅᏟ ᎤᏓᎵᎢ ᎡᎶᏗᏏ ᏧᏙᎢᏛ ᎤᏍᏛᏗᏍᎨᎢ. ᎡᎵᎻᏃ ᎡᎻᏂᏓᏈ ᎤᏕᏁᎴᎢ; ᎡᎻᏂᏓᏈᏃ ᎾᏐᏂ ᎤᏕᏁᎴᎢ; ᎾᏐᏂᏃ ᏌᎵᎹ ᎤᏕᏁᎴᎢ; ᎿᏉᏃ ᏥᏳᎯ ᎤᎾᏣᎢ ᎤᏂᎷᏨ ᎬᏩᏓᏙᎵᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ. ᎠᎴ ᏂᎯ ᎦᏚᏱ ᎦᏚᎲ ᏧᏗᏱ, ᎥᏝᏍᎩᏂ ᏣᏍᏗᎧᏂ ᏱᎩ, ᏥᎶᏓᏑᏯ ᏄᏂᎬᏫᏳᏒ ᏧᏗᏱ, ᏂᎯᏰᏃ ᏓᏣᏄᎪᏥ ᏗᏆᏤᎵ ᏴᏫ ᎢᏏᎵ-ᏗᎧᏁᏤᎯ. ᎢᏳᏃ, ᎢᏓᎵᏅᏟ, ᏱᏂᏨᎷᏤᎸ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏱᏗᏥᏬᏂᎭ, ᎦᏙ ᎤᏍᏗ ᏱᏨᏁᏉᏏ, ᎢᏳᏍᎩᏂᏃᏅ ᎢᏨᏬᏁᏗᏍᎬ ᎪᎱᏍᏗ ᏱᏨᎾᏄᎪᏫᏎᎭ, ᎠᎴ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏱᏂᏨᏴᏁᎭ, ᎠᎴ ᏱᎦᏙᎴᎰᏍᎦ, ᎠᎴ ᏱᏗᎦᏕᏲᎲᏍᎦ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎲ ᎿᏛᎦ. ᏅᎩ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎪᎨᎳᏗᏙᎭ ᎤᏁᎳᏅᎯ ᏄᎾᏚᎵᏄᏁᎸ. ᎠᏎᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎤᏟ ᏂᏚᏬᎯᏳᏒᎩ ᎧᏁᏥᏙᎯ ᎠᎴ ᎤᏤᎵᎦ ᏥᏳ ᎠᏂᏁᎬᎢ, ᎡᏍᎦᏉ ᏉᎳ ᏂᎦᏪᏍᎬᎢ. ᏕᏦᎯᏳᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎨᏣᎦᏌᏯᏍᏗᏕᎩ, ᎠᎴ ᏕᏣᏓᏲᏍᎨᏍᏗᏉ; ᏗᏣᏓᏅᏙᏰᏃ ᏚᎾᎦᏌᏯᏍᏗᏕᎦ, ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᏥᎩ ᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᏥᎨᏐ ᏄᎾᏛᏁᎵᏙᎸᎢ; ᎾᏍᎩ ᎠᎾᎵᎮᎵᎬ ᎬᏂᎨᏒ ᎢᎬᏩᏅᏁᏗ ᏱᎩ, ᎥᏝᏃ ᎤᏲᏉ ᏚᎾᏓᏅᏛᎢ; ᎾᏍᎩᏰᏃ ᎥᏝ ᎨᏣᎵᏍᏕᎸᏙᏗ ᏱᎩ. ᎩᎶᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎬ ᎾᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᏦᏍᏓᏓᏅᏟ, ᎠᎴ ᎥᎩᏙ, ᎠᎴ ᎡᏥ. ᎣᏍᏓ ᎨᏎᎢ. ᏚᏂᏅᏎᏃ ᏫᎬᏩᎷᏤᏗᏱ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎠᎴ ᎡᎶᏛ ᎬᏩᏍᏕᎵᏍᎩ, ᎤᏂᏌᏛᏗᏱ ᎤᎾᏚᎵᏍᎨ ᎦᏬᏂᏍᎬᎢ. ᏰᎵ ᎢᏗᏎᎸ ᎾᏂᎡᎢ. ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎠ, ᎤᎾᏛᏅᎢ. ᎠᎴ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗ ᏕᎤᎸᏫᏍᏓᏁᎭ, ᎾᏍᎩ ᎠᏥᎸ ᎦᎸᎳᏗ ᏅᏓᏳᎶᎯᏍᏗᏱ ᎠᏂᏃ ᎡᎶᎯ ᎤᏬᏥᎯᏍᏗᏱ ᏂᎬᏁᎭ ᏴᏫ ᎠᏥᎦᏔᎲᎢ, ᏱᎦᎷᎩᏰᏃ ᏯᏰᎶᎢᏍᏓ, ᏴᏥᏩᏛᏓ ᎢᏥᎵᎾᎥᎢ. ᎠᏦᎭᏴ ᎭᏫᏂ ᎦᎵ ᏴᏫ ᎨᏒ, ᎤᏂᏍᎦᏅᏨ. ᎿᏉᏃ ᎠᏂᏧᏏ ᏔᎵᏁ ᏅᏯ ᏚᏂᎩᏒᎩ ᏗᎬᏩᏂᏍᏙᏗ. ᎯᏍᎩᏁᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᏔᎵᏁ ᎢᎤᏪᏅᏎᎢ, ᎠᎴ ᏚᏩᏛᎮ ᏅᏩᎾᏓᎴ ᎠᏂᏙᎾᎡ ᎪᎱᏍᏗ ᎾᎾᏛᏁᎲᎾ, ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎠᏂ ᎢᏥᏙᎾᎠ ᎤᏙᏓᏆᏛ ᎪᎱᏍᏗ ᏂᏣᏛᏁᎲᎾ? ᎾᏍᎩᏃ ᏄᏪᏒ, ᎤᏂᏲᏠᎯᏎᎸᎩ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ, ᎤᏂᏣᏘᏃ ᎨᏒ ᏔᎵ ᏄᎾᏓᏛᎩ. ᎾᏍᎩ ᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ; ᎥᏝ ᎡᎶᎯ ᏱᏥᏯᏓᏙᎵᏍᏓᏁᎭ, ᎾᏍᎩᏉᏍᎩᏂ Ꮎ ᏗᏍᎩᎧᏁᎸᎯ ᏥᎩ; ᏂᎯᏰᏃ ᏗᏣᏤᎵᎦ. ᎾᎿᏃ ᎤᏩᏛᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎢᏂᏯ ᏧᏙᎢᏛ, ᏧᏁᎳ ᎢᏧᏕᏘᏴᏛ ᎬᏩᏂᏏᏅᎯ ᎨᏎ ᎦᏂᏟ ᎤᎸᏓᎸᎥᏍᎨᎢ. “ᏧᏍᏆᏴᏍᏗ,” ᎤᏍᎦᎣᏅ ᎢᏳᏍᏗ ᏄᏪᏎ ᏫᎵᎻ, ᏱᏣᎴᏫᏍᏔᏅᎾ ᎨᏎᏍᏗ ᎯᏬᏂᏍᎬ ᏃᎴ ᏱᏣᏅᏨᎾ ᎨᏎᏍᏗ, ᏂᎦᏓ ᏓᎩᏲᎰᏎᎵ, ᎤᏲᏨ ᎠᏆᏓᏅᏙᎩ ᏓᏥᎵᏬᏥ. ᎠᎾᎵᏅᏟᏍᎩᏂ ᎾᏍᎩ ᎤᎾᏛᎦᏅ, ᏏᏌᎵᏱ ᏭᎾᏘᏃᎴᎢ, ᎿᏉᏃ ᏓᏌ ᏭᏂᏅᏎᎢ. ᎢᏧᎳᏃ ᎢᏗᎾᏘ ᎠᎴ ᏧᎾᏟᏂᎩᏓ ᏄᎾᎵᏍᏔᏁᎢ. ᎠᏎᏃ ᏍᎩᎨᏳᎯᏳ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏟ ᏥᏰᎸᏍᎦ ᎬᏍᏗᏰᏙᏗᏱ, ᏉᎳ ᎤᏛᏐᏅᎯ ᎢᏯᏆᏍᏗ ᏥᎩ, ᎠᎴ ᎪᎯ ᎨᏒ ᎠᏴᎩ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬᎢ. ᎠᎴ ᎤᏂᏁ ᎨᏥᏅᏏᏛ ᏧᎾᎳᏏᏕᏄᎶᏗ, ᎾᏂᎥᏃ ᎾᏍᎩᏯ ᎤᏂᏂᎬᏎᎲ ᎨᏥᏯᏙᎮᎮᎢ. ᎫᎾᏓᎴᎩ ᏃᎴ ᎠᏂᏁᎵ ᎠᎼ ᎡᏙᎯ ᏥᏳ ᎤᎾᏂᎨᏎ, ᎤᏟᏍᏓ ᏃᎴ ᎪᎰᏍᏗ ᏱᏂᎦᎵᏍᏗᏍᎬᎾ. ᏫᎵᎻ ᎠᏍᎩᏗᏍᎨᎢ ᎰᎻ. ᎤᏓᏅᏘᏌᏅᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏄᏂᏣᏔ ᎨᎦᎫᏴᎡᎯ ᎨᏥᏅᏏᏓᏍᏗ ᎡᏙᏓ ᏧᏤᎵᎦ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏂᎭ ᎤᎾᎵᏍᏓᏴᏗ, ᎠᏴᏃ ᎠᎪᏄᏉ ᎠᎩᎯᎭ! ᎤᎩᎳᏫᏎᏃ ᏫᏚᏣᏁᎴ ᏥᏳᎯ; ᎦᏃᎸᎥᏍᎬᏃ ᎤᏎᎵᎪᏤᎢ; ᎠᎴ ᎤᎶᏒᏍᏔᏅᎯ ᎤᎾᏓᏅᏖᏔᏁ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏎᎢ. ᎠᏏᏴᏫᏃ ᎾᎿ ᎤᏓᏑᏴᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ, ᎤᏛᏛᏅᎩ ᎤᏌᏛᎥᏍᎬᎢ, ᎯᎠ ᏄᏪᏒᎩ; ᎠᎴ ᎨᏆᏂ ᏭᎷᏤ ᎾᏍᎩ ᎨᎵᎵ ᎦᏚᎲᎢ, ᎠᎴ ᏕᎨᏲᎲᏍᎨ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏓᏍᏆᎸᎮᎬᎢ. ”ᎠᏆᎵᏍᎪᎸᏓᏁᎰ ᏗᏥᏣᎪᏍᏗ ᏗᎦᏙᎵ ᎠᏰᎵ.” ᎠᎾᎵᏅᏟ ᏧᎾᏓᎨᏳᏗ ᎨᏒ ᎬᏗ ᎣᏍᏛ ᏕᏣᏓᎨᏳᏎᏍᏗ; ᏗᏓᎸᏉᏙᏗ ᎨᏒ ᎢᏨᏗᏍᎬ ᏕᏣᏓᎬᏫᏳᏗᏍᎨᏍᏗ. ᎪᎯᏳᏗ ᎨᏒ ᎢᏛᏗᏍᎬ ᎢᏙᎵᎦ ᎤᏁᎳᏅᎯ ᎧᏁᎬ ᎬᏔᏅᎯ ᎨᏒ ᎡᎶᎯ ᏚᏙᏢᏅᎢ, ᎾᏍᎩᏃ ᏧᏓᎴᏅᏛ ᎠᎪᏩᏛᏗ ᏥᎩ ᎥᏝ ᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏒ ᏗᎪᏢᏔᏅᎯ ᏱᎩ. [ᎦᏙᏃ ᏳᏍᏗ,] ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎬ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎬᎬ ᎤᎾᏄᎪᏫᏍᏗᏱ, ᎬᏂᏗᏳ ᎨᏒ ᎬᏗᏍᎬ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᏱᏚᏪᎵᏎᎸ ᏗᏖᎵᏙ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏗᏟᏍᏗ, ᏗᏛᏅᎢᏍᏔᏅᎯ ᏗᏛᏙᏗᏱ; “ᎾᏍᎩᏍᎪᏃ 'ᎤᏟᏍᏓ, ᏧᏍᏆᏴᏍᏗ,’ ᏣᎨ?” Ꭵ ᏞᏍᏗ ᎿᏉ ᏕᏣᏓᏅᏛ ᏱᏗᏣᏓᎸᏉᏗᎭ, ᎠᎴ ᏝᏍᎪ ᏗᏧᎪᏗᏍᎩ ᎤᏲ ᎢᏣᏓᏅᏖᏍᎩ ᏱᏂᏣᎵᏍᏔᏅ? ᎿᏉᏃ ᎬᏩᏂᏴᎮᎢ, ᎠᎴ ᎬᏩᏘᏅᏎ ᎠᎴ ᏫᎬᏩᏴᏔᏁ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᏗᎦᏁᎸᎢ. ᏈᏓᏃ ᎢᏅ ᎣᏂ ᏗᎵᏍᏓᏩᏗᏎᎢ. ᏗᏥᏲᎵ, ᎠᏏ ᏞᎦ ᎢᏨᏰᎳᏗᏙᎭ; ᏍᎩᏲᎮᏍᏗ; ᎠᎴ ᎾᏍᎩᏯ ᎠᏂᏧᏏ ᏥᏂᎦᏥᏪᏎᎸᎩ, ᏫᏥᎦᏛ ᎥᏝ ᏫᏴᎨᏥᎶᎯ, ᏥᎦᏥᏲᏎᎸᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎿᏉ ᏂᎯ ᏂᏨᏪᏎᎭ. ᎠᎴ ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᏩᎾᏅᎥᎦ ᏴᏫ. ᎾᎿᏃ ᎤᏣᏛᎩ ᎦᏄᎸᏒᎩ. ᎰᏩᏃ ᎤᎾᏅᏅᎩ ᎠᏂᏍᎦᏯ ᎯᏍᎩᎭ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎢᏯᏂᎢ. ᎠᎴ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏐᏗ ᎨᏎᏍᏗ ᎢᏥᏁᏉᏤᏗᏱ ᎠᎴ ᎤᏣᏘ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᎨᏳᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏕᏥᎨᏳᏒᎢ, ᎾᏍᎩᏯ ᎠᏴ ᏂᎯ ᎢᏨᎨᏳᏒᎢ; ᏞᏍᏗ ᎡᏥᎵᏓᏍᏔᏅᎩ; ᎾᏲ ᏗᎵᏃᎮᎵᏓᏍᏗ ᎨᏒ ᎠᏲᏍᏗᏍᎪ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᏧᏆᎶᎦ ᏓᏛᎵᏖᎸᏂ ᏃᎴ ᏓᏓᎦᏙᎣᏏ. ᎾᏂᎥᏃ ᎩᎶ (ᏚᎾᏙᎥ) ᏂᏗᎪᏪᎸᎾ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ, ᏫᏕᎨᎦᏓᎢᎡᎬᎩ ᎠᏥᎸ ᏨᏓᎸᎢ. ᎿᏉᏃ ᎢᎡᎪᎢ ᏫᏓᏯᏂᏍᎪ ᎤᏩᎾᏓᎴ ᎦᎵᏉᎩ ᎠᏂᏍᎩᎾ ᎤᏟ ᎢᏳᏂᏁᎫᏥᏛ ᎡᏍᎦᏉ ᎤᏩᏒ, ᎾᎿᏃ ᎠᏂᏴᎯᎰᎢ ᎠᎴ ᎠᎾᏁᎳᏗᏍᎪᎢ, ᎣᏂᏃ ᏄᏍᏛ Ꮎ ᎠᏍᎦᏯ ᎤᏟ ᎤᏲᎢᏳ ᎨᏐᎢ ᎡᏍᎦᏉ ᎢᎬᏱᏱ. ᎾᏍᎩᏍᎩᏂ ᏄᎾᏍᏕᏍᏗ ᎪᎯ ᎤᏂᏁᎫᏥᏛ ᏣᏁᎭ. “ᏌᎳᏓ! ᏉᎳᏃ ᎤᏙᎴᎰᏒ ᎢᎦᏛ ᎠᏂᏌᏚᏏ ᎨᏒᎢ, ᎢᎦᏛᏃ ᎠᏂᏆᎵᏏ, ᎤᏪᎷᏅᎩ ᏕᎦᎳᏫᎥᎢ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎠᏴ ᏥᏆᎵᏏ, ᎠᏆᎵᏏ ᎤᏪᏥ; ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᎴ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏆᎵᏱᎵᏕᎭ. ᏗᎦᏅᏬ ᎢᏴ ᏭᎷᏨ ᎦᎸᎶ ᏭᏚᎧᎾᏅ ᏕᏧᎬ ᎠᏰᎵ, ᎤᏓᎨᏛ ᎠᎼ ᏄᏍᏛᎢ. ᎾᏍᎩ ᏂᏗᎨᏒᎾ ᎠᏂᏴᏫᏯ, ᏲᎾ, ᏩᏯ, ᏨᏓᏥ ᎠᏁᏙᎰ ᎢᎾᎨ. ᎨᏍᏗ ᏯᏂᎦᏔᎮᎢ ᎧᏁᏍᎪ ᎭᏫᏂᏣ ᎤᏗᏍᎦᏢᎢ ᏥᏍᏕᏥ ᏃᎴ ᎠᏔᎴᎦᏒ ᎤᏗᏍᎦᏢ ᎡᏆ ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩ. ᎠᎴ ᎠᏴ ᎢᏥᏙᏓ ᎨᏎᏍᏗ, ᏂᎯᏃ ᏗᏇᏥ ᎨᏎᏍᏗ ᎢᏥᏍᎦᏯ ᎠᎴ ᎢᏥᎨᏴ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ. ᎯᎠᏰᏃ ᏂᎦᏛ ᎤᏣᏘ ᎤᏂᎲ ᎤᏃᏣᎴᏛ ᎠᏂᎲᎦ ᎤᏁᎳᏅᎯ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎨᏒᎢ; ᎯᎠᏍᎩᏂ ᎤᏲ ᎢᏳ-ᏛᎿᏕᎩ ᎨᏒ ᏂᎦᏗᏳ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎲᎠᎲᎦ. “ᏍᏓᏓᏒᏍᏓᏛ ᎤᏛᏁ ᎪᏱᏁᎢ, ᎱᎾᎩᎡᎴ ᏏᏆ ᏲᎾ ᎤᏤᏍᏙ. ᎦᏚ ᎤᎦᎾᏍᏓ ᎠᏔᎵᎩᏓ ᎤᏁᎴ. “ᎤᎵᏨᏓᏆᏓ ᏫᏓᎨᏙᎵ,” ᎤᏛᏁ. ᏲᎾ ᎤᏤᏍᏙ ᎠᏍᎩᏗᏍᎨᎢ ᎤᏨᎢᏍᏗᏍᎬ ᏗᎵᏖᎸᏂᏍᏗ. ᏂᏥᎥᏰᏃ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏂᏣᎵᏍᏔᏅ ᎦᎶᏁᏛ ᏥᏌ ᎡᏦᎢᏳᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ. “ᏃᎴ ᏍᏓᏅᏖᏍᏗ, ᏙᏓᏆᏓ ᏓᏟᏰᎵᏙᎸ ᎠᏕᎳ. ᏈᏓᏃ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏁᎢ, ᎠᎴ ᎾᏍᏉ ᏣᏂ; ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏗᏍᎩᎾᎦᏅᎦ. ᎤᏁᎳᎩᏰᏃ ᎢᏤᎵᏍᎪ ᎢᏳᏃ ᎩᎶ ᏱᏗᏥᎾᏢᏅ, ᎢᏳᏃ ᎩᎶ ᎠᏒᎭ ᏱᏂᏨᏁᎸ, ᎢᏳᏃ ᎩᎶ [ᎪᎱᏍᏗ ᎢᏥᎲ] ᏱᏥᎩᎡᎸ, ᎢᏳᏃ ᎩᎶ ᎤᏩᏒ ᏳᏓᎵᏌᎳᏓᏅ, ᎢᏳᏃ ᎩᎶ ᏕᏣᎧᏛ ᏱᏨᏂᎸ. Ꭷ ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎢᏣᎵᎪᎲᎦ, ᎡᏥᏔᏂᏲᏏ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ, ᎤᎩᏨᏅ ᎢᏣᏘᏃᎮᏗᏱ ᏥᏣᏚᎵᏍᎪ ᎾᏍᎩᏯᎢ ᎯᎠ ᎾᏍᎩ ᎠᎫᎢᏍᏗᏍᎬᎢ, ᎠᏴᏃ ᎠᏏᏉ ᎾᎥ ᏂᎦᎷᎬᎾ ᎨᏎᏍᏗ, ᎣᎦᏛᏅᎢᏍᏗ ᎣᏥᎢᏍᏗᏱ. ᎩᎶ ᏍᎩᏍᏕᎳ!” ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏓᎫᏓᎳᎩ, ᎢᏳᏃ ᏂᎦᎦᏌᏯᏍᏔᏅᎾ ᏱᎩ ᎾᏍᎩ ᎢᎦᎸᏉᏗ ᎠᎵᏍᏕᎸᏙᏗ; ᎾᏍᎩ ᎢᎬᏱ ᏧᎴᏅᎲ ᏧᏃᎮᏛ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏥᎨᎩᏍᏓᏱᏕᎸᎩ ᎾᏍᎩ Ꮎ ᎬᏩᏛᎦᏁᎸᎯ; ᎿᏉᏃ ᏥᏌ ᎬᏩᎷᏤᎸᎩ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎯᎠ ᏄᏂᏪᏒᎩ; “ᏌᎳᏓ,” ᎤᏛᏁ ᏫᎵᎻ ᎪᎯᎢᏴ, “ᎦᏙᏃ ᎡᏝᏪᎯ ᏥᎩ ᏂᎯ?” ”ᎯᎪᏩᏘᎭᏧ, ᎠᎳᏂ? ᎾᏍᎩᏃ ᎯᎠ ᏄᏍᏛ ᎠᏉᎯᏳᏒ ᎠᏆᏓᏅᏖᎸᎩ ᎪᎯ ᎨᏒ ᎠᏏ ᎾᏍᏆᎵᏍᎬᎾ ᏫᏨᎷᏤᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏔᎵᏁ ᎣᏍᏛ ᎢᎶᏓᏅᏓᏗᏍᏗᏱ; ᏃᎴ ᏁᎳᎩ ᎨᏎᏍᏗ ᏥᏔᎦ ᎠᏂᎩᏌ!” ᏙᏯᏃ ᎤᎴᏴᏎ ᏗᏧᎬ ᎠᏒᏛ ᏫᎫᏓᎸ ᎨᎵᏍᎬᏃ ᎪᎯᎩ ᎫᏩᎶᏐᏅ Mr. Chapman, ᎧᎪᏊ ᏱᎩ, ᎠᎴ Ohio ᎠᎴ Illinois ᏳᏪᏅ. ᎩᎶᏃ ᎤᏚᎵᏍᎨᏍᏗ ᏣᏱᎵᏓᏍᏗᏱ, ᎠᎴ ᏣᎾᎡᏗᏱ ᎭᏫᏂ ᏣᏄᏬ, ᎤᏛᏃᎯ ᎾᏍᏉ ᎯᏅᏁᎮᏍᏗ. “ᎨᏍᏗ ᏱᏛᎨᏏ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ,” ᎤᏛᏁ. ᎾᏍᎩ, ᎤᏲ ᎠᏓᏅ ᏖᏗ ᎦᎶᏅᎮᎸ ᏚᎦ ᎤᏂᎲ ᎦᏙ ᏱᏓᏯᏚᏣ ᎾᏍᎩᏴ ᎣᎩᏌᏙᏴᏍᏗ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ, ᏃᎴ ᎠᏍᎦᏍᏗ ᎢᏳᎾᏛᏁᏗ ᏳᏂᏂᎦᎸᏣ. “ᎭᏩ, ᎣᎯᏍᏙᏗᏗ ᎠᏆᏓᏅᏔ ᏲᎾ ᎤᏤᏍᏙ ᎤᏰᎸᏛ,” ᎤᏛᏁ ᎪᏱᏁ. ᎾᏍᎩ ᏂᎦᏛ ᏌᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᎯ ᎡᏙᎠ ᏥᏍᎩᏯᎠ, ᎠᎴ ᎠᏴ ᏥᎬᏯᎠ, ᎾᏍᎩ ᎾᏍᏉ ᏌᏉᏉ ᎢᎦᎵᏍᏙᏗᏱ; ᎾᏍᎩᏃ ᎡᎶᎯ ᎤᏬᎯᏳᏗᏱ ᏂᎯ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ. ᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏞᏍᏗ ᏱᏣᏎᎵᏔᏁᏍᏗ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ ᎪᎱᏍᏗ, ᏞᏍᏗ ᎦᎸᎳᏗ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏪᏗᏱ ᎾᏍᎩ; ᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᏰᎵ ᎠᎫᏴᏗ ᎨᏒ ᎢᏣᎫᏱᏍᎨᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᏧᏅᏏᏓᏍᏗ ᎾᏍᎩ, ᏚᏂᎸᏫᏍᏓᏁᎭ ᏂᎪᎯᎸ ᎾᏍᎩ ᎯᎠ. ᎤᏦᏩᏛ ᏭᎸᏁ ᏩᎶᏏ ᎡᎳᏆᏗ ᏃᎴ ᎤᎩᎶᏫᏎᎢ ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎦᎸᎳᏗ ᏭᎷᏤ. ᎤᏲᎢ ᎤᏓᏅᏘ ᎡᎳᏗ ᎤᏅᏤ ᏃᎴ ᏚᎧᏔᏍᏔᏁᎢ. ᎬᏂᏳᏉ ᏛᏍᏆᎸᎯ, ᎥᎥ, ᎿᏉᎤᏍᏆᎸᎲ, ᎢᏣᏗᎦᎴᏲᎢᏍᏗᏱ, ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᏙᏗᏤᏅᏒ ᎢᏗᏢ, ᎠᎴ ᏓᏍᎩᏴᏕᏥ ᎠᏋᏒᏉ ᎨᏎᏍᏗ; ᎥᏝᏍᎩᏂᏃᏅ ᎠᏋᎡ ᏱᎩ, ᎠᎦᏴᎵᎨᏰᏃ ᏔᎵ ᏅᏛᏗᏕᎦ. ᎠᎴ ᎯᎠ ᎾᎩᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᎠᏂᎦᏔᎭ ᏕᏥᏍᏚᏂᏙᎸᎢ ᎠᎴ ᏕᏥᎸᏂᎵᏙᎸᎢ ᎨᏦᎯᏳᎲᏍᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎪᏢᏩᏗᏒᎢ. ᎠᎴ ᏂᎯ ᎢᏥᎦᏴᎵᎨᎢ, ᏞᏍᏗ ᏱᏗᏥᎿᎸᏍᏗᏍᎨᏍᏗ ᏗᏤᏥ; ᏕᏣᏛᎯᏍᏗᏍᎨᏍᏗᏍᎩᏂ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏗᏕᏲᏗ ᎨᏒ ᎠᎴ ᎨᏯᏙᎥᎯᏍᏗ ᎨᏒᎢ. ᏗᎦᏯᎱᎶ ᏃᎴ ᎤᏩᏂ ᏧᏍᏆᏅᎾ ᏗᏂᏐᎯ ᏧᎾᏣᏪᏐᎸᏍᏙᏗ. ᎠᏴ ᏉᎳ ᎠᏋᏒ ᎠᏉᏰᏃ ᎬᏓ ᎪᏪᎸᎦ, ᎠᏴ ᏓᎦᎫᏴᎯ; ᎥᏝᏍᎩᏂᏃᏅ ᏨᏒ ᎨᏒ ᎾᏍᏉ ᎬᏚᎦ ᏗᏍᏆᏓᏲᎯᏎᏗᏱ ᏱᎬᏲᏎᎭ. ᎤᏁᎦ ᏗᏓᏁᎸ ᏭᎷᏣ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ, ᎤᎵᏍᎦᏎᏓᏁ ᏤᎩᏏᏂ, ᎨᏍᏗ ᎩᎶ ᎠᏑᏯᎩᏛ ᏱᎩ ᎤᏛᏁ. ᎠᏂᏍᎦᏯ ᎨᏍᏗ ᎣᏍᏓ ᏳᎾᏓᏅᏔ ᏃᎴ ᏚᏂᏨᎦᏉ. ᎢᏳᏍᎩᏂ ᎠᏁᏢᏗᏍᎩ ᏁᏙᎲᎾ ᎢᎨᏎᏍᏗ, ᎡᎳᏪᏉ ᎤᏩᏎᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ; ᎤᏩᏒᏉ ᎠᏓᎵᏃᎮᏗᏍᎨᏍᏗ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎵᏃᎮᏗᏍᎨᏍᏗ. ᎥᎬᎭᏅ ᎢᎪᎯᏓ ᎠᏑᏯᎩᏛ. ᏍᎩᏃᎯᏏ ᎭᎾ ᎮᏙᎲᎢ, ᎩᎾᎵᎢ ᏱᎩ!” ᎠᏏᏴᏫ ᎠᏫᏄᏣ ᎠᏂ ᎡᏙᎭ, ᎾᏍᎩ ᏓᏰᎭ ᎯᏍᎩ ᎤᏣᎴᏍᏗ-ᎢᏳᏍᏗ ᎦᏚ, ᎠᎴ ᏔᎵ ᏧᎾᏍᏗ ᎠᏣᏗ ᏕᎦᏁᎭ; ᎠᏎᏃ ᎠᏎᏉᎧᏂ ᎾᏍᎩ, ᎯᎠᏃ ᏥᏄᏂᏣᏔ? ᎠᎢᏒᏃ, ᎵᏫ ᎡᎵᏈ ᎤᏪᏥ ᎤᎪᎮ ᎤᏬᎴ ᎠᏰᎵ ᎠᏕᎸ ᎠᎩᏍᏗᏱ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏍᎩᏍᏓᏩᏚᎦ. ᏚᎴᏅᏃ ᎤᏍᏓᏩᏛᏎᎢ. ᏚᏣᏯᎩᏎ ᏩᎶᏏ, ᎣᎵᎭ ᎠᎹ ᏚᏍᏚᏤ ᎧᏩᏯ ᎨᎵᏍᎩ. ᎨᏍᏗ ᎪᎰᏍᏗ ᎬᎫᏍᏛᏙᏗᏱᎩ. ᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎾᎿ ᏗᏂᏙᎩ ᎯᎠ ᏂᏚᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᎡᏍᏕᎵᏌᏕ ᎠᎩᏫ? ᎡᎵᎩ ᎥᏣᏱ ᎪᏢᏅᎥᏍᎩ ᎤᎶᏘ ᏃᏒᎾ ᎾᏋᏁᎸᎩ. ᎤᎬᏫᏳᎯ ᎤᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏕᎤᎸᏫᏍᏓᏁᎸᎢ. ᏆᏂᏆᏃ ᎤᏚᎵᏍᎬᎩ ᎤᎾᏘᏅᏍᏗᏱ ᏣᏂ ᎹᎦ ᏧᏙᎢᏛ. ᎦᎸᏉᏗᏳᏰᏃ ᎢᎦ ᎾᎯᏳ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎲ; ᎦᎪᏃ ᏰᎵ ᎬᏩᎴᏗ ᎨᏎᏍᏗ? ᏙᏓᏆᏓ ᎬᏯᎦᏙᏍᏛᎩ ᏃᎴ ᎣᏍᏓ ᎬᏰᎸᎠ.” ᎠᏓᏅᏗᏍᏗᏍᎩ ᎤᏓᏒᏎᎢ ᏲᎾ ᎤᏤᏍᏙ ᎤᏂᏣᏛᎢ ᎢᏣ, ᎠᏲᎮᎢ ᎮᏂᎵ. ᏭᏂᏴᎸᏃ ᎠᏤᎵᏍᏛᎢ, ᎤᏂᎪᎮ ᎠᏫᏴ ᎠᎦᏘᏏᏗᏢ ᎤᏬᎴᎢ, ᎤᏄᏪ ᎦᏅᎯᏛ ᎤᏁᎬ ᎠᏄᏬ; ᎠᏂᏍᎦᎢᎮᏃ. ᎧᏃᎨ ᏄᏓᏅᎯᏒ ᎾᏯᏛᎡ ᎦᏆᎵ ᏲᎾ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᏗᏍᎦᎢᎲᎾ ᎢᏗᎷᎩ ᎾᎿ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎦᏍᎩᎸᎢ, ᎾᏍᎩ ᎡᎩᏙᎵᏍᏗᏱ, ᎠᎴ ᎢᎩᏩᏛᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗᏱ, ᎠᎴ ᎢᎩᏩᏛᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩ ᎾᎯᏳ ᎢᎩᏂᎬᏎᎲ ᎢᎦᎵᏍᏕᎸᏙᏗ. ᎤᎬᏫᏳᎯ ᎠᎦᏔᎭ ᎢᏳᏛᏁᏗᏱ ᏧᏭᏓᎴᏍᏗᏱ ᎤᎾᏓᏅᏘ ᎤᏂᎪᎵᏰᏍᎩ ᎤᏂᏰᎢᎵᏙᎲᎢ, ᎤᏂᏲᏃ ᏧᏍᏆᏂᎪᏙᏗᏱ ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ: ”ᏂᎬᎾᏛᎢ ᎠᎬᏱᏣ ᎤᏓᏅᎵᏰᎠ.” ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ ᎣᏣᏗᎭ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎢ, ᎾᏍᎩ ᎠᏴ ᏗᏛᏃᏛ ᎠᎴ ᎢᏓᎴᏂᏙᎯ ᎤᎬᏫᏳᎯ ᎦᎷᏨ ᎢᏳᎢ ᎥᏝ ᏱᏙᎨᏗᎪᏅ ᎾᏍᎩ Ꮎ ᎤᏂᎵᏅᏨᎯ. ᎤᏁᎳᏅᎯᏰᏃ ᎤᏤᎵᎪᎯ ᎨᏒ ᎥᏝ ᎦᏬᏂᎯᏍᏗᏉ ᎨᏒ ᏱᏚᎳᏏᏗ, ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎨᏒᎢ. ᏘᎵ ᏧᎬ ᏭᎾᏓᏝᏅ ᎦᏐᎯ ᎤᏢᏁ ᎤᏬᏢ. ᏗᎧᏂᎨᏂ ᏭᏌᎲ ᎠᏍᎪᎵ, ᏧᏍᏆᏅᎾ ᎭᏫᏂᏨ ᎤᏓᎪᏳᏨ. ᏞᏍᏗ ᎫᏓᎴᏅᏛ ᎠᎴ ᏂᏥᎦᏔᎲᎾ ᏗᏕᏲᏗ ᎨᏒ ᏱᏗᏣᏘᏂᏙᎮᏍᏗ; ᎣᏏᏳᏰᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏳᎵᏍᏓᏱᏗᏍᏗ ᎣᎾᏫ; ᎥᏝᏃ ᏄᏍᏛᏉ ᎥᎵᏍᏓᏴᎲᏍᎬᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏭᎵᏰᎢᎶᎸᎯ ᏂᎨᏒᎾ ᎨᏒ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎾᎦᏌᏯᏍᏔᏅᎯ ᎨᏒᎢ. ... ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᎯ ᏂᎦᎥ ᎠᎩᎨᏳᏒᎢ. ᎬᏂᎨᏒ ᎨᏒ ᎠᎹ ᏧᎶᏒ. ᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ, ᎤᏍᏉᎵᏱ ᏕᎦᎾᏄᎪᎨᏍᏗ ᎡᏉᏂ ᎬᏂᏛ ᎠᎹ ᏕᎨᏰᏍᏗ; ᎾᏍᎩᏯ ᏥᏂᎦᏪ ᎪᏪᎵ. ᏤᎩᏏᏂ ᏁᎵᏍᎬ ᏱᏄᎾᏛᏁᎳ ᏭᏕᎵᎬ ᎢᏣ ᏯᏁᎾ. ᎠᎴ ᎤᏔᏃᎯ ᎠᏄᏬ ᎾᏍᎩᏯ ᏙᏘᏇᏅᎯ, ᎠᎴ ᏗᎦᏁᏟᏴᏛ ᎨᏎᏍᏗ; ᏂᎯᏍᎩᏂ ᏁᏣᏍᏗᏉ, ᎠᎴ ᏕᏣᏕᏘᏱᎶᏍᎬ ᎥᏝ ᏭᏍᏘᏥᎯᏍᏗ ᏱᎩ. ᏧᏴᏨ ᎢᏣ ᎨᏴ ᎤᏂᎦᎵᏴᎲ ᎠᏓᏁᎸ ᎦᏂᎩᎸ ᏫᎵᎻ ᎦᎷᏯᏍᏗ. ᎿᏉᏃ ᎬᏩᎷᏤᎴ ᎤᏥ ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎥᏝ ᎾᎥ ᏫᎦᎬᏩᏂᎷᏤᏗ ᏱᎨᏎ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏴᏫ ᎤᏂᏣᏛᎢ. ᎪᎢ ᎤᎾᏓᏍᏔᏴᏙᏗ ᎪᎳ ᎢᎪᎯᏛ. ᎦᏙ ᎢᏤᎵᎭ? ᎤᏂᏁᏨᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏰᎵᏉ ᎬᏩᏲᎱᎯᏍᏗ. ᎤᎵᏂᎩᏛᏃ ᏚᏁᏤᎴ ᏚᏅᏍᏓᏕᎴ ᎩᎶ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎾᏍᎩ; ᎠᎴ ᎤᏁᏤᎪᎱᏍᏗ ᎤᎵᏍᏓᏴᏗ ᎤᏂᏁᏗᏱ. ᏴᏫᏍᎩᏂ ᎤᏓᏁᏟᏴᏛ ᏂᎨᏒᎾ ᎨᏒ ᎥᏝ ᏱᏓᏓᏂᎸᎪ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ; ᎠᎵᏍᎦᏁᏛᏉᏰᏃ ᏚᏰᎸᏐᎢ; ᎥᏝ ᎠᎴ ᏗᎬᏬᎵᏍᏗ ᏱᎨᏐᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᏓᏅᏙ ᎩᏛ ᏗᎬᎪᏩᏛᏗ ᎨᏒᎢ. ᎠᏎᏃ ᎯᎠ ᏄᏍᏛᎩ ᎠᏋᏒ ᎨᏒ ᏓᏊᎪᏔᏅᎩ, ᎾᏍᎩ ᏔᎵᏁ ᏫᏨᎷᏤᏗᏱ ᏂᎨᏒᎾ ᎤᏲ ᎬᏆᏓᏅᏘ. ᎪᎰᏍᏗ ᏯᏂᎦᏔᎲᎾ ᎠᏂᏳᏫᏯ, ᏃᎴ ᎠᏂᏳᏩᏁᎦ ᎤᏂᏐᏱ ᏄᎾᏍᏗ, ᏫᏥ ᎢᏯᏂ ᎨᏎ ᎤᏂᏲ ᎠᏂᏍᎦᏥ ᏃᎴ Ireland ᏓᏳᏂᎶᏒ, ᎤᎾᏓᏨ ᎢᏳᎾᏛᏁᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᏴ ᏗᎦᏓᏂᎸᏨᎯ ᏥᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎪᎯ ᎨᏒ ᎾᏍᎩ ᎬᏖᎸᏗ ᏂᎨᏒᎾ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎩᎮᏍᏗ, ᎾᏍᎩ ᎢᏛᏗᏍᎬ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏗᎨᎩᎸᏫᏍᏓᏁᏗ ᏱᎩ, ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᏔᎵ ᎢᎬᏗᏕᎬᎢ. ᎨᎵᎠ ᏱᏗᏣᏏᎳᏛᎾ ᏃᎴ ᏔᎵᎭ ᏱᏗᏣᏂᏴ ᏛᎦ, ᎣᎯᏍᏙᏗ ᏱᏣᏓᏅᏔ. ᏚᏳᎪᏗᏍᎪ ᏏᏌ ᎡᏓᎫᏴᏒᏗᏱ ᎠᏰᎵ ᎠᏓᏴᏗ ᎨᏒᎢ, ᏝᎨ? “ᏣᏁᎳ ᎢᏳᏕᏘᏴᏓ.” ᎠᏎᏃ ᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎥᏝ ᎠᏂᏍᎩᎾ ᏱᏗᎦᏄᎪᏫᏍᎦ ᎬᏂ ᏧᏍᏕᎵᏍᎪ ᏇᎵᏥᏆ ᎤᎬᏫᏳᎯ ᎠᏂᏍᎩᎾᎤᎾᏤᎵᎦ. “Ꭵ, ᏯᏆᏚᎵᎭᏃ, ᏯᏆᏓᏅᏖᎳ,” ᎤᏛᏁ ᎪᏱᏁᎢ. ᎤᎾᏨᏎᏃ ᎠᎴ ᎤᎾᏓᏁᎳᏁ ᎦᏩᏒᎩ ᎠᎴ ᎠᏠᏁᏗ; ᎠᎴ ᎤᏂᏯᏪᏐᎴ ᎤᎾᏙᏓᏆᏍᎬ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎠᏍᏆᎵᏍᎨ ᎦᎸᎳᏗ ᏣᎦᏓᏂᎸᎢᏍᏗᏱ, ᎤᎵᏂᎩᏗᏳ ᎤᏓᏅᏖ ᏥᎷᏏᎵᎻ ᏭᎶᎯᏍᏗᏱ. ᏥᏌᏃ ᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᏍᏓᏱᏳ ᎨᏒ ᎢᏳᏍᏗ ᏗᏥᎾᏫ ᎯᎠ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏦᏪᎳᏁᎴᎢ; ᏓᏂᏍᎦᎢ ᏃᎴ ᎤᎾᏚᎵ ᏦᏥᏅᎪᎢᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎢᏥᏍᏆᏓ ᎾᏍᎩ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏥᎦᎵᏱᏳ ᏂᎨᏒ ᎢᏣᏚᎸᏗᏱ, ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎢᏥᏍᏆᏗᏍᎬᎢ, ᎢᏨᏗᏍᎬ ᎾᏍᎩ ᏄᏍᏛ ᎢᏥᎲᎢ. ᏚᎷᏫᏍᏔᏁᎲ, ᎣᏍᏓ ᏚᏍᏕᎵᏍᎨ ᏣᏁᎳ ᏕᎦᏅᏌᏛ. ᏥᏌ ᏚᏠᏱᎸᎩ. ᎦᎸᏉᏗ ᎦᎶᎯᏍᏗ ᎯᏣᏑᏯᎩ ᏗᏥᏏᎳᏛᏗ. ᎰᏩᏃ ᎤᎾᎪᎲᏍᏔᏁ ᎤᏓᏁᎸ ᎠᎴ ᏂᎦᏓ ᏧᎸᏫᏍᏓᏁᎸ ᏧᏬᏪᎳᏅ ᏚᎪᏁ. ᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ; ᏣᎬᏫᏳᎯ, ᎣᏏᏳ ᎠᏂ ᏥᏕᏙᎭ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ, ᎠᏂ ᏦᎢ ᏱᏙᏥᎵᏦᏛᎦ, ᏌᏉ ᏂᎯ ᏣᏤᎵᎦ, ᏐᎢᏃ ᎼᏏ ᎤᏤᎵᎦ, ᏐᎢᏃ ᎢᎳᏯ ᎤᏤᎵᎦ. ᎠᎴ ᎾᏂᎥ ᎩᎶ ᏧᏅᏕᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎠᎴ ᏧᏂᏙ, ᎠᎴ ᏧᏂᏙᏙᏓ, ᎠᎴ ᏧᏂᏥ, ᎠᎴ ᏧᎾᏓᎵᎢ, ᎠᎴ ᏧᏁᏥ, ᎠᎴ ᎦᏙᎯ, ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎤᏂᏩᏛᏗ ᎨᏎᏍᏗ ᎠᏍᎪᎯᏧᏈ ᎤᏁᏉᏨᎯ, ᎠᎴ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᎬᏂᏛ ᏫᎾᏍᏛᎾ. ᏍᎩᎾᎾ ᎢᏴ ᎤᏴᏍᏗ ᏙᏱᏨ ᏭᎷᏤ ᏫᎵᎻ. ᎠᎴ ᎯᎠ ᎠᏄᎦᎸᎯ ᏥᎨᏥᏫᏎᎴᎢ; ᎾᏍᎩ ᎯᎠ ᎧᏃᎮᏛ ᏣᎾᏛᎩᏍᎪᎢ, ᎺᎵᏃ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏦᏏ ᎤᏥ ᎤᏂᎪᎮ ᎾᎿ ᎤᏂᏅᏅᎢ. ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏙᎯ ᎢᏯᏆᎵᏍᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎦᎸᏉᏗᏳ ᏓᎩᎸᏫᏍᏓᏁᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎦᎸᏉᏗᏳ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎬᏗᏍᎬᎢ, ᎾᏍᎩ ᎦᎵᏍᎪᎸᏗᏍᎬ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎦᏥᏯᎵᏍᎪᎸᏗᏍᎬᎢ ᏧᏓᏂᎸᎢᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎸᎯ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ. ᎠᎴ ᎾᏍᎩᏯ ᏥᏄᏍᏕ ᎾᎯᏳ ᏃᏯ ᏤᎮᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎾᎯᏳ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵ ᎢᎦ ᎠᎵᏱᎶᎸᎭ. ᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ; ᎢᏳᏃ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ ᏞᎩᏳ ᏓᎬᎷᏤᎵ, ᎠᎴ ᏙᏓᎬᏯᏟᏴᎡᎵ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎬᏗ ᏥᎰᎵ ᎤᎦᏌᏛᎢ. ᏐᎢᏃ ᏭᎷᏤᎸ ᎾᏍᎩᏯ ᏄᏪᏎᎴᎢ. ᏧᏁᏨᏃ, ᏓᎨᏏ, ᎤᏛᏁᎢ; ᎠᏎᏃ ᏄᏪᏅᏒᎾᏉ ᎢᎨᏎᎢ. ᎤᏅᏗ ᎢᏳᏰᎳᏍᏗᏍᎬᎩ ᎥᏝᏃ ᎪᎱᏍᏗ ᎠᎩᏍᏗ; ᏧᏩᎫᏔᏅᏒᏰᏃ ᎥᏝ ᏰᎵ ᎨᏥᎩᏍᏗ ᏱᎨᏎᎢ, ᎠᎴ ᎪᎯ ᎨᏒ ᎥᏝ ᎠᏏ ᏰᎵ ᏱᎩ. ᎤᏩᏙᎯᏴᏓ ᎤᏛᎴᎮᎢ. ᎠᎴ ᏳᎸᏅ, ᎠᎴ ᏯᏗᏗᎭ ᏗᎬᏩᎩᏨᏗ, ᎠᎴ ᎤᎦᏔ ᏳᎵᏰᏅ, ᎠᎴ ᏳᏛᏒ, ᏄᎵᏍᏙᏔᏅ ᏄᏙᎴᎰᏒᎾ. ᏚᏳᎪᏛᏍᎩᏂ ᎧᏁᎢᏍᏗ ᎨᏒ ᎢᏛᏗᏍᎬ ᎠᏓᎨᏳᏗ ᎨᏒ ᏔᎵ ᎢᏛᏗᏍᎬᎢ, ᏗᎦᏛᎯᏍᏗᏱ ᎾᏍᎩ ᏂᎦᎥ ᏄᏓᎴᏒ ᎾᏍᎩ ᏗᎦᏚᏓᏕᏫᏍᏗᏱ ᎾᏍᎩ ᎠᏍᎪᎵ ᏥᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ; ᎠᏎᏃ ᎣᎦᏚᏓᎳ ᏂᎪᎯᎸ ᎣᏣᎵᎡᎵᏤᏗᏱ ᎤᏁᎳᏅᎯ ᏂᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎢᏓᎵᏅᏟ ᎤᎬᏫᏳᎯ ᎢᏥᎨᏳᎯ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᏧᏓᎴᏅᎲ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎢᏣᏑᏰᏒ ᎡᏥᏍᏕᎸᏗᏱ ᎬᏙᏗᏱ ᎠᏓᏅᏙ ᎢᏥᏅᎦᎵᏍᎬᎢ, ᎠᎴ ᎢᏦᎯᏳᏒ ᎤᏙᎯᏳᎯ ᎨᏒᎢ; ᎤᎵᏣᎬᏔᏁᎢ ᎠᏣᏗ. ᎤᏁᎳᏅᎯᏰᏃ ᏚᏬᎪᏔᏅ ᏂᎦᏗᏳ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏧᏪᏙᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᏂᏍᎦᏯ ᎣᎯᏍᏙᏗ ᏧᎾᏓᎩᏯᏍᏗ ᎤᏅᏌ ᏱᎩ. ᏫᎤᎩᏨᏅᏃ ᏏᏌᎵᏱ ᏭᏂᏴᎴᎢ. ᎧᏂᎵᏯᏃ ᎤᏂᎦᏘᏰᎢ, ᎠᎴ ᏧᏪᏟᏌᏅᎯ ᎨᏎ ᎪᎱᏍᏗ ᏧᏩᏂ ᎠᎴ ᏧᎵᎢ. ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏙᏓ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏅᎯ ᎣᏍᏛ ᎢᎦᏛᏁᎸᎯ ᏥᎩ, ᎢᎩᏁᎸᎯ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎠᏓᏅᏙ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏦᏒ ᎡᎯ ᎤᎬᏩᎵ. ᎶᎻᏃ ᏬᎩᎷᏨ, ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎠᏂᏴᎩ ᏚᏲᎯᏎᎸᎩ ᎤᎬᏫᏳᎯᎠᏂᎦᏘᏯ ᏗᏘᏂᏙᎯ; ᏉᎳᏍᎩᏂ ᎠᎦᎵᏍᎪᎸᏁᎸᎩ ᎤᏁᎳᎩ ᎤᏩᏒ ᎤᏕᏗᏱ, ᎠᎴ ᎠᏯᏫᏍᎩ ᎤᎦᏘᏗᏍᏗᏱ. ᎠᏆᏛᏅ. ᎤᏍᎦᏎᏗ ᏚᏙᏪᎴ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᎦᎵᏉᎩᏉ ᏱᎬᏲᏎᎭ, ᎦᎵᏆᎪᎯᏍᎩᏂ ᎦᎸᏉᎩ ᎢᏳᎶᏒᎯ. ᎣᏍᏛᏰᏃ ᎢᏯᏛᏁᏗᏱ ᎠᏆᏚᎵᏍᎬᎢ, ᎥᏝ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎰᎢ; ᎤᏲᏍᎩᏂ ᎾᏍᎩ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏂᎦᏛᏁᎰᎢ. ᎢᏥᎦᏔᎲ ᎾᏍᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲ ᎩᎶᎢ, ᎾᏍᎩᏯ ᎢᏳᏍᏗ ᎤᏁᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᎾᏍᏉ ᎠᏥᎾᏝᎢ ᏱᎩ, ᎠᎴ ᎾᏥᎾᏝᎥᎾ ᏱᎩ. ᏗᎩᏣᏗ ᏭᎵᏒᎲ ᎠᏓ ᎪᏒᏔᏅ ᎫᎭᎳᎯ ᏃᎴ ᏓᎶᏂᎨ ᎦᏓᏆᏟ ᎪᏒᏔᏅ ᏦᎳ ᎦᎶᏙᏗ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏅᏯ ᏥᏥᏲᎢᏎᎸᎩ ᏗᏣᏁᏍᎨᏍᎩ; ᎾᏍᎩ ᎤᏅᏏᏴ ᏄᎬᏫᏳᏒ ᎠᏗ ᏥᏄᎵᏍᏔᏅ. ”ᎦᏙᏃ ᎠᏎ ᎤᎵᏨᏓᏆᏓ ᎤᏰᏨ ᎯᎨᏐ, ᏓᏍᎪᎩᏍᎬ ᏃᎴ ᎩᎶ ᎤᏤᎵ ᎭᏲᏍᏗᏍᎬ? ᏗᎦᎧᎯᏴᏍᏗ ᎠᏰᎵ ᏃᎴ ᏗᎨᎯᏓᏍᏗ ᎠᏂᏣᎳᎩ ᏭᏕᎵᎬ ᎢᏣ, ᎨᏍᏗ ᏃᎦᎵᏍᏔᏁᎲ ᎤᎵᏐᏯᏍᏗ ᏱᎨᏎ, ᎣᎦᏤᎵᏰᏃ ᎦᏙ. ᏈᎵᎩ ᏇᏣᏱᏗ ᎡᎯ ᎨᏒᎩ, ᎡᏂᏗ ᎠᎴ ᏈᏓ ᎤᏂᏚᎲᎢ. ᎨᏍᏗᏰᏃ ᎩᎶ ᎣᏍᏓ ᎢᎫᏩᏪᏎᏗ ᏱᎨᏎ ᏛᎦ ᏕᎦᎶᎨᏒ. ᎢᎸᏍᎩ ᏂᎦᎥ ᏚᎾᏙᎥ ᏕᏣᏍᏆᏂᎪᏗ ᏌᏗᏏ, ᎾᏍᎩ ᎦᏓᎭ ᎢᏧᏅᏁᎸᎯ ᏂᎨᏒᎾ ᏧᎾᏄᏬ; ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᏓᏲᏤᏙᎵ ᏧᏁᎩᏳ ᎨᏎᏍᏗ ᏚᎾᏄᏩᎥᎢ; ᏰᎵᏉᏰᏃ ᎾᏍᎩ ᎢᎬᏩᎾᏛᏁᏗ. ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᏥᎦᏔᎭ ᎠᏋᏒ ᎠᏆᏓᎳᏫᏎᏗ; ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏯᏇᏓᎴᎭ; ᎤᎬᏫᏳᎯᏍᎩᏂ ᎾᏍᎩ ᏗᏇᎪᏓᏁᎯ. ᏓᎬ ᏂᎵᏎ ᏌᎳᏓ. ᏃᏉ ᏗᏌᎳᏓᏂᏎ ᎦᎾᏍᏓ, ᎤᏲᎰᏎᎴ ᎣᏍᏓ ᏄᏛᏅ."ᎤᎾᏙᎴᎰᏒᏰᏃ ᎢᎸᎯᏳ ᏥᎨᏎᎢ ᎥᏝ ᏴᏫᏉ ᎠᏓᏅᏖᏍᎬ ᏴᏗᏓᎴᏁᎢ; ᎠᏃᏍᏛᏍᎩᏂ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᏂᏁᎨ ᎢᏳᏂᏪᏍᏗᏱ ᏄᏅᏁᎲ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ." ᏈᏡᏓ ᏔᎵᏁ ᎤᏬᏪᎳᏅᎯ 1:21 ᏱᏏ ᎢᎬᏱᏱ ᎤᏬᏪᎳᏅᎯ ᎠᏯᏙᎸᎢ 1 ᏗᏓᎴᏂᏍᎬᎢ ᎤᏁᎳᏅᎯ ᎦᏬᏢᏁ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ. ᎡᎶᎯᏃ ᏂᏓᏙᎸᎾ ᎠᎴ ᎤᏰᎸᎭᏉ ᎨᏎᎢ. ᎤᎵᏏᎩᏃ ᎤᎴᏞᏒ ᎠᏍᎸᎩ. ᎤᏁᎳᏅᎯᏃ ᎤᏓᏅᏙ ᎠᏑᏱ ᎦᏚᎢ ᎦᏃᎯᎵᏙᎮᎢ. ᎤᏁᎳᏅᎯᏃ ᎢᎦ ᏫᎦᏙᎩ, ᎤᎸᏁᎢ ᎢᎦᏃ ᎢᎤᏙᏤᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎣᏏᏳ ᎨᏒ ᎢᎦ ᎤᏁᎳᎥᎯᏃ ᏚᏓᏓᎴᏔᏁ ᎢᎦ ᎠᎴ ᎤᎵᏏᏱ. ᎤᏁᎳᏅᎯᏃ ᎢᎦᎦᎸᎢ ᏚᏬᏒᎢ ᎤᎵᏏᎩᏃ ᏒᏃᏱ ᏚᏬᏒᎢ. ᎤᏒᎢᏃ ᎠᎴ ᏑᎾᎴᎢ ᎢᎥᏱᏱ ᎢᎦ ᎨᏎᎢ ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᎸᎶᎢ ᏩᏙᏢᎾ ᎠᎹᏱ ᎠᏰᎵ, ᎾᏍᎩᏃ ᏔᎵ ᏫᏂᎦᏓ ᎠᎹ. ᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎤᏬᏢᏁ ᎦᎸᎶᎢ ᎠᎴ ᏚᏓᏓᎴᏔᏁ ᎠᎹ ᎦᎸᎶᎢ ᎡᎳᏗᏢ ᎠᎴ ᎠᎹ ᎦᎸᎶᎢ ᎦᎸᎳᏗᏢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ. ᎤᏁᎳᏅᎯᏃ ᎦᎸᎶᎢ ᎦᎸᎳᏗ ᏚᏬᎡᎢ ᎤᏒᏃ ᎠᎴ ᏑᎾᎴ ᏔᎵᏁ ᎢᎦ ᎨᏎᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎠᎹ ᎭᏫᏂᏗᏢ ᎦᎸᎶᎢ ᏩᏓᏟᏌ, ᎤᎧᏲᏛᎯᏃ ᎨᏒ ᏫᎦᎾᏄᎪᎩ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᎧᏲᏛᎯ ᎨᏒ ᎦᏓ ᏚᏬᎡᎢ, ᎠᎹᏃ ᎤᏓᏟᏌᏅᎯ ᎠᏣᏉᎯ ᏚᏬᎡᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎦᏓ ᎦᏄᎸᏒ ᎦᎾᏄᎪᏩ, ᎾᏍᎩ ᎠᎦᏔᏛᏍᎩ ᎦᏄᎸᏒᎢ, ᎠᎴ ᏗᏓᏛᏍᎩ ᏕᏡᎬᎢ ᏧᏓᎴᏅᏛ ᏧᎾᏤᎵᎦᎭ ᎤᎦᏔ ᏧᏁᎯ ᎦᏙᎯ ᎦᎸᎳᏗᏢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ; ᎦᏓ ᎦᏄᎸᏒ ᎤᎾᏄᎪᏫᏎᎢ, ᎾᏍᎩ ᎠᎦᏔᏛᏍᎩ ᏧᏓᎴᏅᏛ ᏧᎾᏤᎵᎦᎭ ᎤᎦᏔ ᎠᏂᎾᏄᎪᏫᏍᎩ, ᎠᎴ ᏕᏡᎬ ᏗᏓᏛᏍᎩ ᏧᎾᏤᎵᎦᎭ ᎤᎦᏔ ᏧᏁᎯ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ. ᎤᏒᏃ ᎠᎴ ᏑᎾᎴᎢ ᏦᎢᏁ ᎢᎦ ᎨᏎᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᎸᎶᎢ ᎦᎸᎳᏗ ᎢᎦ ᎠᎾᏘᏍᏗᏍᎩ ᏩᏂᎧᎸᎩ, ᎢᎦ ᏒᏃᏱᏃ ᏗᎾᎦᎴᏅᏗᏍᎩ, ᎠᎴ ᎾᏍᎩ ᏂᏓᎪᎳᏗᏴᎯᏒ ᎠᎴ ᏂᏓᏙᏓᏈᏒ ᎠᎴ ᏂᏓᏕᏘᏴᎯᏒ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎾᏍᎩ ᎢᎦ ᎠᎾᏘᏍᏗᏍᎩ ᎨᏎᏍᏗ ᎦᎸᎶᎢ ᎦᎸᎳᏗ, ᎡᎶᎯ ᎢᎦ ᎤᎾᏘᏍᏙᏗᏱ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ. ᎤᏁᎳᏅᎯᏃ ᏔᎵ ᏤᏆ ᎢᎦ ᎠᎾᏘᏍᏗᏍᎩ ᏚᏬᏢᏁᎢ, ᎤᏛᏂᏗ ᎢᎦ ᎠᏘᏍᏗᏍᎩ ᎢᎦ ᏗᏁᎶᏙᏗ, ᎠᏲᎳᏂᏃ ᎢᎦ ᎠᏘᏍᏗᏍᎩ ᏒᏃᏱ ᏗᏁᎶᏙᏗ; ᎠᎴ ᏃᏈᏏ ᏚᏬᏢᏁᎢ. ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎦᎸᎶᎢ ᎦᎸᎳᏗ ᏚᏪᎧᏁᎢ, ᎢᎦ ᎤᎾᏘᏍᏙᏗᏱ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᏗᏁᎶᏙᏗ, ᎠᎴ ᎾᏍᎩ ᎢᎦᎦᏛᎢ ᎠᎴ ᎤᎵᏏᎩ ᏗᎾᎦᎴᏅᏗᏍᎩ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ. ᎤᏒᏃ ᎠᎴ ᏑᎾᎴᎢ ᏅᎩᏁ ᎢᎦ ᎨᏎᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᎹ ᏫᏗᎦᎾᏄᎪᏩ ᎤᏂᏣᏘ ᏗᏅᏃᏛ ᎠᎾᎵᏖᎸᎲᏍᎩ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎦᏙᎯ ᎦᎸᎳᏗᏢ ᎠᏂᏃᎯᎵᏙᎮᏍᏗ. ᎤᏁᎳᏅᎯᏃ ᏚᏬᏢᏁ ᏣᏁᏆ ᏓᏉ, ᎠᎴ ᎾᏂᎥ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏗᏅᏃᏛ, ᎠᎹ ᎾᏍᎩ ᏚᎾᏄᎪᏫᏎᎢ ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ, ᎠᎴ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏗᏃᏯᏗ ᎠᏂᏃᎪᎵᏙᎯ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ. ᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᏚᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ:Ꮆ ᎢᏥᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏥᎪᏙᎯ, ᎠᎴ ᎠᎾᏉᎯ ᎢᏥᎧᎵᏣ; ᎠᏂᏃᎯᎵᏙᎯᏃ ᏩᏂᏁᏉᎩ ᎡᎶᎯ. ᎤᏒᏃ ᎠᎴ ᏑᎾᎴ ᎯᏍᎩᏁ ᎢᎦ ᎨᏎᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎦᏓ ᏫᏗᎦᎾᏄᎪᏩ ᏗᏅᏃᏛ ᏧᎾᏓᎴᏅᏛ, ᎦᎾᏝᎢ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎡᎶᎯ ᎠᏁᎯ ᏧᎾᏓᎴᏅᏛ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ: ᎤᏁᎳᏅᎯᏃ ᏚᏬᏢᏁ ᏗᏅᏃᏛ ᎡᎶᎯ ᎠᏁᎯ ᏧᎾᏓᎴᏅᏛ, ᎠᎴ ᎦᎾᏝᎢ ᏧᎾᏓᎴᏅᏛ, ᎠᎴ ᏂᎦᏛ ᎦᏙᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ ᏧᎾᏓᎴᏅᏛ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᎡᏙᏢᎾ ᎠᏴ ᎾᏍᎩᏯᎢ, ᎠᏴ ᏂᎦᏍᏛᎢ, ᎾᏍᎩᏃ ᎤᏂᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏣᏗ ᎠᎺᏉᎯ ᎠᏁᎲᎢ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎠᏁᎲᎢ, ᎠᎴ ᎦᎾᏝᎢ ᎠᏁᎲᎢ, ᎠᎴ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎠᎴ ᎠᏁᎲᎢ ᏂᎦᎥ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎦᏙᎯ ᏣᎾᏓᎾᏏᏂᏙᎭ. ᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏴᏫ ᎤᏬᏢᏁᎢ ᎤᏩᏒ ᏄᏍᏛᎢ, ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎾᏍᎩᏯ ᎤᏬᏢᏁᎢ, ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏬᏢᏁᎢ. ᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᏚᏁᏤᎴᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎯᎠ ᏂᏚᏪᏎᎴᎢ: ᎢᏍᏗᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏍᏗᎪᏙᎯ, ᎠᎴ ᎦᏙᎯ ᎢᏍᏗᎧᎵᏣ, ᎠᎴ ᎾᏍᎩ ᎢᏍᏓᏤᎵᎦ ᏂᏍᏛᎦ, ᎠᎴ ᎢᏍᏗᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏣᏗ ᎠᏁᎲᎢ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎠᏁᎲᎢ, ᎠᎴ ᏂᎦᎥ ᎬᏃᏛ ᎡᎶᎯ ᏣᎵᏖᎸᎲᏍᎦ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᏂᎦᎥ ᎦᏄᎸᎯ ᎠᎦᏔᏛᏍᎩ ᎾᏍᎩ ᏂᎬᎾᏛ ᎦᏙᎯ ᏣᏛᏍᎦ, ᎠᎴ ᏂᎦᎥ ᏕᏡᎬ ᏗᏓᏛᏍᎩ ᎤᎦᏔ ᏥᏓᎦᏔᏛᏍᎦ, ᏕᏍᏛᏲᎯᏎᎸ; ᎾᏍᎩ ᏂᎯ ᎢᏍᏓᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ; ᎾᏍᏉᏃ ᏂᎦᎥ ᎡᎿᎥ ᎦᏙᎯ, ᎠᎴ ᎾᏂᎥ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎦᏙᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᏂᎦᎥ ᎢᏤ ᎦᏄᎸᏒ ᎤᎾᎵᏍᏓᏴᏗ ᏕᎦᏥᏲᎯᏎᎸ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᎪᎮ ᏂᎦᎥ ᎤᏬᏢᏅᎢ, ᎠᎴ ᎬᏂᏳᏉ Ꮀ ᎣᏏᏳ ᎨᏎᎢ. ᎤᏒᏃ ᎠᎴ ᏑᎾᎴᎢ ᏑᏓᎵᏁ ᎢᎦ ᎨᏎᎢ. ᎠᏯᏙᎸᎢ 2 ᎾᏍᎩᏃ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎤᎵᏍᏆᏕ ᏕᎪᏢᏍᎬᎢ ᎠᎴ ᎾᏍᎩ ᏂᎦᎥ ᏄᏂᏧᏈᏍᏛᎢ. ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎤᏁᎳᏅᎯ ᎤᏍᏆᏕ ᏚᎸᏫᏍᏓᏁᎸᎢ ᎾᏍᎩ ᎤᏬᏢᏅᎢ. ᎤᏯᏪᏐᎴᏃ ᎦᎵᏉᎩᏁ ᎢᎦ ᎤᏲᎯᏍᏔᏁ ᏂᎦᎥ ᏚᎸᏫᏍᏓᏁᎸᎢ ᎾᏍᎩ ᎤᏬᏢᏅᎢ. ᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᎤᏁᏤᎴ ᎦᎵᏉᎩᏁ ᎢᎦ ᎠᎴ ᎤᎸᏉᏔᏁᎢ, ᎾᎯᏳᏰᏃ ᎤᏯᏪᏐᎴ ᎤᏲᎯᏍᏔᏁ ᏂᎦᎥ ᏚᎸᏫᏍᏓᏁᎸᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᎳᏅᎢ ᎠᎴ ᎤᏬᏢᏅᎢ. ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎢᎬᏱᏱ ᏗᏓᎴᏂᏍᎬ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎨᎪᏢᏅᎢ, ᎾᎯᏳ ᎢᎦ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏥᏚᏬᏢᏁ ᎡᎶᎯ ᎠᎴ ᎦᎸᎶᎢ, ᎠᎴ ᏂᎦᎥ ᎦᏄᏄᏒ ᏠᎨᏏ ᎡᎯ, ᎠᏏ ᎾᎭᏛᎾ ᏥᎨᏎᎢ, ᎠᎴ ᏂᎦᎥ ᎠᏛᏍᎩ ᏠᎨᏏ ᎡᎯ; ᎠᏏ ᎾᎵᏰᎲᏍᎬᎾᏉ ᏥᎨᏎᎢ; ᏱᎰᏩᏰᏃ ᎤᏁᎳᏅᎯ ᎠᏏ ᎾᎦᏃᏗᏍᎬᎾ ᎨᏎ ᎡᎶᎯ, ᎠᎴ ᎾᏍᏉ ᎥᏝ ᏰᎮ ᏴᏫ ᏗᎦᎶᎩᏍᎩ. ᎤᎬᎭᏓᏍᎩᏂ ᎦᏙᎯ ᎠᎵᏌᎳᏗᏍᎨᎢ, ᎾᏍᎩᏃ ᏂᎬᎾᏛᎢ ᎦᏚᎢ ᎦᏙᎯ ᏕᎠᏖᎡᎯᏍᏗᏍᎨᎢ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏴᏫ ᎦᏓ ᎤᏬᏢᏔᏁᎢ, ᏗᎪᏴᏐᎵᏃ ᎤᏦᏔᎮ ᎬᏂᏛ ᎬᏬᎳᏕᏍᏗ, ᏴᏫᏃ ᎬᏃᏛ ᏄᎵᏍᏔᏁᎢ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎠᏫᏒᏗᏱ ᎤᏫᏒᏁᎢ ᎢᏗᏂ ᏚᏙᎥᎢ ᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ; ᎾᎿᏃ ᎤᏪᎧᏁ ᏴᏫ ᎤᏬᏢᏅᎯ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎦᏙᎯ ᏚᎾᏄᎪᏫᏎ ᏂᏚᏓᎴᏒ ᏕᏡᎬ ᏧᏬᏚᎯ ᏗᎧᏃᏗᏱ ᎠᎴ ᎣᏍᏛ ᏗᎵᏍᏓᏴᏗ; ᎠᎴ ᎾᏍᏉ ᎬᏂᏛ ᎠᏓᏁᎯ ᏡᎬᎢ ᎠᏰᎵ ᎠᏫᏒᏗᏱ (ᎤᎾᏄᎪᏫᏎᎢᏁ ᎠᎴ ᏈᎬᎢ ᎠᎦᏙᎥᎯᏍᏗ ᎣᏍᏛ ᎨᏒᎢ ᎠᎴ ᎤᏲ ᎨᏒᎢ. ᎢᏗᏂᏃ ᎨᏰᎢ, ᎾᏍᎩᏃ ᎠᏫᏒᏗᏱ ᏓᏖᎡᎯᏍᏗᏍᎨᎢ; ᎾᎿᏃ ᏫᏚᎶᎦᎴᎢ, ᏅᎩ ᏕᎨᏴ ᏂᎦᎵᏍᏗᏍᎨᎢ. ᎢᎬᏱᏱ ᎨᏴᎢ ᏆᏌᏂ ᏚᏙᎥ; ᎾᏍᎩ ᎭᏩᎳ ᏂᎬᎢ ᏥᏓᏚᏫᏍᏗᎭ, ᎾᎿᏂ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎳ; ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎾᎿ ᎤᎸ ᎣᏏᏳ; ᎾᎿ ᎡᎭ ᏕᎵᏯᎻ, ᎠᎴ ᏅᏯ ᎣᏂᎩ ᏧᏙᎢᏛ. ᏔᎵᏁᏃ ᎨᏴᎢ ᎦᎭᏂ ᏚᏙᎥ, ᎾᏍᎩ ᎢᏗᎣᏈ ᏂᎬᎢ ᏥᏓᏚᏫᏍᏗᎭ. ᏦᎢᏁᏃ ᎨᏴᎢ ᎯᏗᎩᎵ ᏚᏙᎥ, ᎾᏍᎩ ᎠᏏᎵᏱ ᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ ᏥᏭᏪᏯᏗᏍᏗ. ᏅᎩᏁᏃ ᎨᏴᎢ ᎾᏍᎩ ᏳᏇᏗ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎤᏯᏅᎮ ᏴᏫ ᎢᏗᏂ ᎠᏫᏒᏗᏱ ᎤᏪᎧᏁᎢ, ᎣᏍᏛ ᎢᏳᏩᏁᏗᏱ ᎠᎴ ᎤᎦᏘᏗᏍᏗᏱ. ᏱᎰᎨᏩᏃ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎴ ᏴᏫ ᎯᎠ ᏄᏪᏎᎢ:Ꮆ ᏂᎦᏛ ᏕᏈᎬ ᎠᏂ ᎠᏫᏒᏗᏱ ᏥᏕᏡᎦ ᏣᏁᎳᎩ ᏣᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏂ ᎤᏓᏔᏅᎯ ᏥᏈᎦ ᎠᎦᏙᎥᎯᏍᏗ ᎣᏍᏛ ᎨᏒᎢ ᎠᎴ ᎤᏲ ᎨᏒᎢ, ᎥᏝ ᏣᎩᏍᏗ ᏱᎨᏎᏍᏗ, ᎾᎯᏳᏰᏃ ᎢᎦ ᎯᎬᎭ ᎤᏙᎯᏳᏒ ᏣᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ ᏲᎯ ᎠᏍᎦᏯ ᎤᏩᏒᏉ ᏥᎩ; ᏓᏥᏲᏢᎾᏁᎵ ᎤᏍᏕᎸᎯᏙᎯ ᎤᏩᏒ ᏄᏍᏛᎢ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎦᏓ ᏚᏬᏢᏔᏁ ᏂᎦᎥ ᎡᎿᎢ, ᎠᎴ ᏂᎦᎥ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎾᏍᎩᏃ ᎠᏓᏫ ᏚᏘᏃᎮᎴᎢ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎤᏚᎵᏍᎨ ᏄᏍᏛ ᏕᎪᏍᎬᎢ: ᏄᏍᏛᏃ ᎠᏓᏫ ᏕᎤᏬᎥᎢ ᏂᎦᎥ ᎬᏃᏛ, ᎾᏍᎩ ᏄᏍᏕ ᏚᏙᎡᎢ. ᎠᏓᏫᏃ ᏚᏬᎡ ᏂᎦᏛ ᎦᎾᏝᎢ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏂᎦᏛ ᎢᎾᎨ ᎡᎿᎢ;: ᎠᏓᏫᏍᎩᏂ ᎾᏲᎪ ᎤᏍᏕᎸᎯᏙᎯ ᎥᏝ ᏰᎮ ᎤᏩᏒ ᏄᏍᏛᎢ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎠᏍᏓᏯ ᎤᎸᏗᏱ ᏄᏩᏁᎴ ᎠᏓᏫ; ᎾᏍᎩᏃ ᎤᎸᏁᎢ; ᎿᏉᏃ ᏌᏉ ᎦᏄᎳᏥ ᎤᎸᎡᎴᎢ, ᎾᏍᎩᏃ ᎤᎸᎡᎸᎢ ᎤᏇᏓᎸ ᎤᏍᏚᏔᏁᎢ. ᎾᏍᎩᏃ ᎦᏄᎳᏥ, ᎠᏍᎦᏯ ᎤᎸᎡᎸᎯ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᎨᏴ ᎤᏬᏢᏔᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏘᏃᎮᎴᎢ, ᎠᏓᏫᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎿᏉ ᎯᎠ ᎪᎳ ᏗᎩᎪᎶᎯ ᎤᏕᏅᎯ, ᎠᎴ ᎭᏫᏯ ᎠᎩᏫᏲᎯ ᎤᏕᏅᎯ; ᎾᏍᎩ ᎠᎨᏴ ᏕᎤᏙᎡᏍᏗ, ᎠᏍᎦᏲᎯᏰᏃ ᏅᏓᏳᎶᏒᎯ ᎾᏍᎩ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎤᏓᎵᎢᏃ ᎠᏜᏫᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩᏃ ᏌᏉᏉ ᎤᏂᏇᏓᎸᎢ ᎨᏎᏍᏗ. ᎢᏧᎳᏃ ᏧᏂᏰᎸᎭ ᎨᏎᎢ, ᎠᏍᎦᏯ ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᎥᏝ ᏯᎾᏕᎰᏍᎨᎢ. ᎠᏯᏙᎸᎢ 3 ᎢᎾᏛᏃ ᎤᏟ ᎠᏏᎾᏌᏂᏳ ᎨᏎᎢ, ᎡᏍᎦᏉ ᎾᏂᎥ ᎢᎾᎨ ᎠᏁᎯ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏅᎯ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎤᏙᎯᏳᎯᏍᎪ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏒᎮ ᏞᏍᏗ ᏂᎦᏛ ᎠᏫᏒᏗᏱ ᏥᏕᏡᎦ ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎩ. ᎠᎨᏴᏃ ᎯᎠ ᏄᏪᏎᎴ ᎢᎾᏛ; ᏰᎵᏉ ᎦᏲᎩᏂᎩᏍᏗ ᎤᏓᏔᏅᎯ ᎠᏫᏒᏗᏱ ᏥᏕᏈᎦ. ᎾᏍᎩᏂ ᎤᏓᏔᏅᎯ ᎠᏫᏒᏓᏱ ᎠᏰᎵ ᏥᏈᎦ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎯᎠ ᏃᎩᏂᏪᏎᎸ; ᏞᏍᏗ ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎩ ᎠᎴ ᏞᏍᏗ ᎢᏍᏓᏒᏂᎸᎩ, ᏱᏕᏍᏗᏲᎱᎯ ᎾᏏ. ᎢᎾᏛᏃ ᎯᎠ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎥᏝ ᎤᏙᎯᏳᏒ ᏱᏙᎨᏍᏗᏲᎢᎱᎯ; ᎤᏁᎳᏅᎯᏰᏃ ᎠᎦᏔᎭ ᎾᎯᏳ ᎢᎦ ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎭ ᎿᏉ ᏗᏍᏗᎦᏙᎵ ᏙᏛᎵᏍᏚᎢᏏ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎾᏍᎩᏯ ᏂᏍᏓᏍᏕᏍᏗ, ᎢᏍᏗᎦᏔᎮᏍᏗ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ. ᎠᎨᏴᏃ ᎤᏙᎴᎰᏒ ᎾᏍᎩ ᏈᎬ ᎣᏏᏳ ᎠᎵᏍᏓᏴᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᏗᎧᏃᏗᏱ, ᎠᎴ ᎤᏚᎸᏗᏳ ᎨᏒ ᎥᎦᏔᎿᎢ ᎢᏳᏓᏛᏁᏗᏱ, ᎾᏍᎩ ᏈᎬ ᎤᏛ ᎤᏕᏎ ᎠᎴ ᎤᎨᎢ, ᎾᏍᏉᏃ ᎤᏁᎴ ᎤᏰᎯ, ᎾᏍᏉᏃ ᎾᏍᎩ ᎢᎤᎨᎢ. ᎢᏧᎳᏃ ᏗᏂᎦᏙᎵ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎤᎾᏙᎴᎨᏎ ᏧᏂᏰᎸᎭ ᎨᏒᎢ, ᏒᎦᏔᏃ ᎢᏳᏍᏗ ᏧᎦᏄᏓᏛᏅᎯ ᏚᏂᏰᏫᏎᎢ, ᎠᎴ ᏧᎾᏝᏌᏙ ᏚᏃᏢᏁᎢ. ᎤᎾᏛᎦᏁᏃ ᎤᏃᏴᎬ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏙᎲ ᎠᏫᏒᏗᏱ ᏧᏴᏠ ᎤᏒᎯᏰᏱ, ᎠᏓᏫᏃ ᎠᎴ ᎤᏓᎵᎢ ᎠᏫᏒᏗᏱ ᏕᏡᎬᎢ ᎤᎾᏗᏍᎦᎳᏁᎴ ᏱᎰᏩ ᎤᏁᎳᏅᎯ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏭᏯᏅᎮ ᎠᏓᏫ, ᎭᏢᎮᏙᎭ? ᎤᏬᎭᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏆᏛᎦᏅᎩ ᎤᏃᏴᎬ ᎮᏙᎲ ᎠᏫᏒᏗᏱ, ᎠᎴ ᏥᏍᎦᎢᎲᎩ, ᎠᎩᏰᎸᎭᏰᏃ ᎨᏒᎩ; ᎠᏆᏗᏍᎦᎳᏅᎩᏃ. ᎯᎠᏃ ᏄᏪᏎᎢ: ᎦᎪ ᎢᏣᏃᏁᎴ ᏣᏰᎸᎭ ᎨᏒᎢᎮ ᏥᎪ ᎢᏣᎬ ᎤᏓᏔᏅᎯ. ᏈᎬᎢ, ᏞᏍᏗ ᏣᎬᎩ ᏥᎬᏲᏎᎸᎩ? ᎠᏍᎦᏯᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎠᎨᏴ ᏥᏍᎩᎧᏁᎸᎩ ᎣᎩᏁᏓᏍᏗ, ᎾᏍᎩ ᎠᎩᏁᎸᎩ ᏈᎬ ᎤᏓᏔᏅᎯ, ᎠᎴ ᎠᎩᎬᎩ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎦᏙ ᎾᏍᎩ ᎯᎠ ᎢᏣᏛᏁᎸ? ᎠᎨᏴᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎢᎾᏛ ᎠᎩᎶᏄᎮᎸᎩ, ᎾᏍᎩᏃ ᎠᎩᎬᎩ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎴ ᎢᎾᏛ; ᎤᏟ ᎢᎦᎢ ᎡᏣᏍᎦᏨᎯ ᎡᏍᎦᏉ ᎾᏂᎥ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ, ᎾᏍᎩ ᏥᎿᏛᎦ ᏅᏓᎦᎵᏍᏙᏓ ᎭᏓᎾᏏᏂᏔᎮᏍᏗ, ᎠᎴ ᎦᏓ ᎯᎩᏍᎨᏍᏗ ᏂᎪᏰᎸ ᎲᏅᎢ. ᎠᎴ ᏗᏍᏓᏓᏯᎦᎩᏳ. ᏅᏓᏍᏛᏴᏁᎵ ᏂᎯ ᎠᎴ ᎠᎨᏴ, ᎠᎴ ᏣᏁᏉᎥᎯ; ᎾᏍᎩ ᎯᏍᎪᎵ ᏓᏨᏂᎵ, ᏂᎯᏃ ᎦᏗᎨᏂ, ᏘᏂᎵ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎤᏣᏔᏅᎯ ᏓᎬᏁᏉᎡᎵ ᎡᎯᏍᏗ ᎨᏒ ᏴᏫ ᏕᎯᏁᏉᏍᎬᎢ: ᎡᎯᏍᏗ ᏣᏓᏅᏖᏍᏗ ᏗᏂᏲᎵ ᏕᎯᎾᏄᎪᏫᏍᎨᏍᏗ, ᎠᎴ ᏣᏰᎯ ᎯᏰᎳᏲᏍᎨᏍᏗ ᎠᎴ ᎾᏍᎩ ᏣᏁᏤᎵᏙᎯ ᎨᏎᏍᏗ. ᎠᏓᏫᏃ ᎯᎠ ᏄᏪᏎᎴᎢ: ᏅᏓᎦᎵᏍᏙᏓ ᏣᏓᎵᎢ ᎧᏁᎬ ᏣᏛᏓᏍᏓ, ᎠᎴ ᏈᎬ ᎤᏓᏔᏅᎯ ᏥᎦ, ᏥᎬᏅᏍᏓᏕᎸᎩ, ᏞᏍᏗ ᏣᎬᎩ ᏥᎬᏲᏎᎸᎩ, ᎦᏙᎯ ᎠᏍᎦᏨᎯ ᏂᎦᎵᏍᏓ ᏂᎯ ᏅᏂᏌ; ᎤᏲ ᏣᏓᏅᏖᏍᏗ ᎾᎿ ᎤᏛᏒᎯ ᎯᎩᏍᎨᏍᏗ ᏂᎪᎯᎸ ᎲᏅᎢ. ᎠᎴ ᎾᏍᏉ ᏥᏍᏚᏂᎩᏍᏗ ᎠᎴ ᏥᏥ ᏣᎵᏰᏁᎮᏍᏗ, ᏎᎸᏃ ᏠᎨᏏ ᎡᎯ ᎭᎵᏍᏓᏴᏗᏍᎨᏍᏗ. ᎠᎴ ᏣᎸᎯ ᏣᎧᏛᎢ ᎦᏚ ᎯᎩᏯᎨᏍᏗ ᎬᏂ ᎦᏙᎯ ᏫᎯᎷᏥᏌᏅᎭ, ᎾᎿᏰᏃ ᏪᏣᏯᏅᏛ; ᎦᏓᏰᏃ ᏂᎯ, ᎠᎴ ᎦᏙᎯ ᏮᏛᎯᎷᏥᏌᏂ. ᎠᏓᏫᏃ ᎢᏫ ᏚᏬᎡ ᎤᏓᎵᎢ, ᏂᎦᏛᏰᏃ ᏴᏫ ᏗᏅᏃᏛ ᎾᏍᎩ ᎤᏂᏥ ᎨᏎᎢ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎦᏁᎦ ᏚᏬᏢᏔᏁ ᎠᏓᏫ ᎠᎴ ᎤᏓᎵᎢ ᏧᎾᏄᏬᎢ ᎠᎴ ᎾᏍᎩ ᏚᏄᏬᎡᎢ. ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᏴᏫ ᎠᏴ ᏂᎦᏍᏛ ᎾᏍᎩᏯ ᏂᎦᎵᏍᏓ ᎤᎦᏙᎥᎯᏍᏗᏱ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ; Ꭷ ᏯᏌᎳᏛᎦᏰᏃ ᎤᏬᏰᏂ, ᎠᎴ ᏯᎩ ᎤᏓᏔᏅᎯ ᏈᎬ ᎬᏂᏛ ᎠᏓᏩᏛᎡᎯ, ᎠᎴ ᎾᏍᎩ ᏯᎦ, ᎠᎴ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᏱᏂᎦᎵᏍᏓ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎤᏄᎪᏫᏎ ᎢᏗᏂ ᎠᏫᏒᏗᏱ, ᎤᎶᎪᏗᏱ ᎦᏙᎯ ᏩᏥᏯᏅᎲᎢ. ᎤᎨᎯᏙᎴᏃ ᏴᏫ; ᏚᏪᎧᏁᏃ ᎠᏂᎩᎷᏫ ᏗᎧᎸᎬ ᎢᏗᏢ ᎠᏫᏒᏗᏱ, ᎠᎴ ᎾᎿ ᏄᏩᏁᎴ ᎬᏩᏔᎷᎩᏍᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎤᏚᏫᏛ ᎠᎦᏔᎮᏍᎩ, ᎠᎦᏘᏰ ᎦᏅᏅ ᏈᎬ ᎠᏓᏩᏛᎡᎯ ᏫᎦᏅᏅᎢ. ᎠᏯᏙᎸᎢ 4 ᎠᏓᏫᏃ ᎤᎦᏙᎥᏎ ᎢᏫ ᎤᏓᎵᎢ; ᎠᎴ ᎾᏍᎩ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎨᏂ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏱᎰᏩᏍᎩᏂ ᎠᎩᎧᏏ ᎠᏍᎦᏯ. ᏔᎵᏁᏃ ᎤᏁᏄᎪᏫᏎ ᎤᏅᏟ ᎡᏈᎵ. ᎡᏈᎵᏃ ᎠᏫ ᏗᎦᏘᏯ ᎨᏎᎢ, ᎨᏂᏍᎩᏂ ᏠᎨᏏ ᏧᎸᏫᏍᏓᏁᎯ ᎨᏎᎢ. ᎢᎸᎯᏳᏃ ᎢᏴᏛ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎨᏂ ᎤᏲᎮᎴ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎦᏙᎯ ᎤᏛᏒᎯ. ᎡᏈᎵᏃ ᎾᏍᏉ ᎤᏲᎴ ᎤᏤᎵ ᎢᎬᏱᏱ ᏗᎨᎦᏅᏅᎯ ᎠᏫ ᎠᎴ ᎤᎵᏦᎯᏛ. ᏱᎰᏩᏃ ᏚᏓᏂᎸᏤ ᎡᏈᎵ ᎠᎴ ᎾᏍᎩ ᎤᎵᏍᎪᎸᏔᏅᎯ. ᎨᏂᏍᎩᏂ ᎠᎴ ᎾᏍᎩ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎥᏝ ᏱᏚᏓᏂᎸᏤᎢ. ᎨᏂᏃ ᎤᏣᏘ ᎤᏔᎳᏬᏎᎢ, ᎠᎴ ᎤᎧᏛ ᎡᎳᏗ ᏄᎵᏍᏔᏁᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎨᏂ, ᎦᏙᏃ ᎢᏣᏔᎳᏬᏍᎦ? ᎠᎴ ᎦᏙᏃ ᏣᎧᏛ ᎡᎳᏗ ᏂᎤᏍᏗ? ᎢᏳᏰᏃ ᎣᏏᏳ ᏱᏂᏣᏛᏁᎸ, ᏝᏍᎪ ᏱᏙᎦᏰᏣᏓᏂᎸᎩ? ᎣᏏᏳᏃ ᏂᏣᏛᏁᎸᎾ ᏱᎩ, ᎠᏍᎦᏂ ᎦᎶᎯᏍᏗᏱ ᎦᏅᎦ. ᎠᎴᏃ ᏂᎯ ᏕᏣᎧᏂᏏᏍᎨᏍᏗ, ᎠᎴ ᎯᏁᏤᎵᏙᎯ ᎨᏎᏍᏗ. ᎨᏂᏃ ᎤᎵᏃᎮᏔᏁ ᎤᏅᏟ ᎡᏈᎵ: ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᏠᎨᏏ ᎠᏁᏙᎲᎢ, ᎨᏂ ᏚᎦᏘᎸᏎ ᎤᏅᏟ ᎡᏈᎵ, ᎠᎴ ᎤᎴᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎨᏂ, ᎭᏢ ᎡᏣᏛᏟ ᎡᏈᎵ? ᎯᎠᏃ ᏄᏪᏎᎢ, Ꮭ ᏱᎩᎦᏔᎭ: ᏥᎪ ᎠᏴ ᎥᎩᏅᏟ ᏥᎦᏘᏯ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙ ᏣᏛᏁᎸ? ᎦᏙᎯ ᎢᏴᏛ ᏗᏆᎵᏍᏓᏁ ᎡᏣᏅᏟ ᎤᎩᎬ. ᎠᎴ ᎿᏉ ᎡᏣᏍᎦᏨᎯ ᎡᎶᎯ, ᎾᏍᎩ ᏧᏔᎶᏅ ᎡᏣᏅᏟ ᎤᎩᎬ ᏥᏣᏗᏔᏏ; ᎢᏳᏃ ᎦᏙᎯ ᏕᎯᎶᎩᏍᎨᏍᏗ, ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎣᏍᏛ ᏱᏣᏛᎯᏎᎮᏍᏗ; ᎠᎴ ᏣᎵᏘᏛᏉ ᎠᎴ ᎾᎭᎴᏁᎯᏉ ᎨᏎᏍᏗ ᎡᎶᎯ. ᎨᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏱᎰᏩ, ᎠᎩᏍᏛᏗᏍᎬ ᎡᏉᎯᏉ; ᎥᏝ ᎾᏍᎩ ᏱᏂᎬᏂᎥ. ᎬᏂᏳᏉ, ᎪᎯ ᎢᎦ ᏍᎩᎨᎯᏓ ᎡᎶᎯ; ᎠᎴ ᏂᎯ ᏗᏣᎧᎿᏂᏓᏍᏗᏱ ᎠᏆᏗᏍᎦᎴᏍᏗ; ᎠᎴ ᎠᏆᎵᏗᏛ ᎠᎴ ᎾᎦᎴᏁᎯ ᎨᏎᏍᏗ ᎡᎶᎯ; ᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎩᎶᏉ ᎠᎩᏩᏛᎲᎭ ᎠᎩᎯᏍᏗ ᎨᏎᏍᏗ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎩᎶ ᎢᎠᎯᎮᏍᏗ ᎨᏂ, ᎦᎵᏉᎩ ᎢᏳᏩᎫᏗ ᎠᎦᏞᏤᏗ ᎨᏎᏍᏗ: ᎠᎴ ᏱᎰᏩ ᎤᏬᏪᎳᏁ ᎨᏂ, ᎾᏍᎩ ᎩᎶ ᏳᏩᏛᎲ ᎤᎯᏍᏗᏱᏉ ᏂᎨᏒᎾ. ᎨᏂᏃ ᎤᏓᏅᎡᎴ ᏱᎰᏩ, ᎠᎴ ᏃᏗᏱ ᏭᏁᎳᏕᎢ, ᎾᏍᎩ ᎢᏗᏂ ᎨᏒ ᏗᎧᎸᎬ ᏫᏚᏳᎪᏛᎢ. ᎨᏂᏃ ᎤᎦᏙᎥᏎ ᎤᏓᎵᎢ, ᎠᎴ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎢᎾᎩ; ᎠᎴ ᎤᏪᏚᏁᎢ, ᎠᎴ ᎦᏚᎲ ᎤᏪᏥ ᏚᏙᎥ ᎢᎾᎩ ᏚᏬᏍᏔᏁᎢ. ᎢᎾᎩᏃ ᎤᏪᏥ ᎢᎳᏗ ᎤᏕᏁᎢ: ᎠᎴ ᎢᎳᏗ ᎤᏪᏥ ᎻᎱᏤᎵ ᎤᏕᏁᎢ: ᎻᎱᏤᎵᏃ ᎤᏪᏥ ᎻᏚᏎᎵ ᎤᏕᏁᎢ: ᎻᏚᏎᎵᏃ ᎤᏪᏥ ᎴᎻᎩ ᎤᏕᏁᎢ. ᎴᎻᎩᏃ ᎠᏂᏔᎵ ᏚᏓᏴᏎᎢ: ᏌᏉ ᎡᏓ ᏚᏙᎡᎢ, ᏐᎢᏃ ᏥᎳ ᏚᏙᎡᎢ. ᎡᏓᏃ ᏤᏆᎵ ᎤᎾᏄᎪᏫᏎᎢ: ᎾᏍᎩᏃ ᎯᎠ ᏕᎦᎵᏦᏛ ᏗᎾᏁᎳᏗᏍᎩ, ᎠᎴ ᎤᏂᎾᏝᎾᎢ ᏥᎩ, ᎤᏂᏙᏓ ᎨᏎᎢ. ᎤᏅᏟᏃ ᏧᏆᎵ ᏚᏙᎡᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏗᎧᏃᎩᏍᏗ ᎠᎴ ᎠᏤᎷᎩ ᏗᏂᏃᎩᏍᏗᏍᎩ ᏥᎩ ᎤᏂᏙᏓ ᎨᏎᎢ. ᏥᎳᏃ ᎾᏍᏉ ᏚᏆᎵ-ᎨᏂ ᎤᎾᏄᎪᏫᏎᎢ; ᎾᏍᎩ ᏗᎨᏲᎲᏍᎩ ᎨᏎ ᎠᏃᏢᏅᎥᏍᎩ ᏄᏓᎴᏒ ᎥᏣᏱ ᎠᎴ ᏔᎷᎩᏍᎩ ᎠᏃᏢᏅᎥᏍᎬᎢ: ᏚᏆᎵᎨᏂᏃ ᎤᏙ ᏁᎹ ᏚᏕᎢ. ᎴᎻᎩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏓᎵᎢ: ᎡᏓ ᎠᎴ ᏥᎳ, ᏍᏓᏛᎬᎦ ᏥᏁᎬᎢ, ᎴᎻᎩ ᏧᏓᎵᎢ, ᏍᏓᏛᏓᏍᏓ ᏥᏬᏂᏍᎬᎢ: ᎠᏍᎦᏯᏰᏃ ᏥᎸ ᎠᎩᏐᏅᏍᎬ ᏅᏓᎦᎵᏍᏙᏓ, ᎠᎴ ᎠᏫᏅ [ᏥᎸ] ᎡᎯᏍᏗ ᎾᏋᏁᎲ ᏅᏓᎦᎵᏍᏙᏓ. ᎢᏳᏃ ᎨᏂ [ᎤᎸᎯ] ᎦᎵᏉᎩ ᎢᏳᏩᎫᏗ ᎠᎦᏞᏤᏗ ᎨᏎᏍᏗ, ᎴᎻᎩ [ᎤᎸᎯ] ᎦᎵᏆᏍᎪᎯ ᎦᎵᏉᎩ ᎢᏳᏩᎫᏗ ᎠᏎ ᎠᎦᏞᏤᏗ ᎨᏎᏍᏗ. ᎠᏓᏫᏃ ᏔᎵᏁ ᎤᎦᏙᎥᏎ ᎤᏓᎵᎢ; ᎤᎾᏄᎪᏫᏎᏃ ᎤᏪᏥ ᎠᏧᏣ ᎠᎴ ᏎᏘ ᏚᏬᎡᎢ: [ᎯᎠᏰᏃ ᏄᏪᏎᎢ;] ᎤᏁᎳᏅᎯ ᎠᎩᎧᏁᎸ ᏅᏩᏓᎴ ᎠᏇᏥ ᎠᎩᏁᏟᏴᏍᏓᏁᎸ ᎡᏈᎵ, ᎾᏍᎩ ᎨᏂ ᏧᎸᎩ. ᏎᏘᏃ ᎾᏍᏉ ᎤᏪᏥ ᎠᏧᏣ ᎤᏕᏁᎴᎢ ᎢᎾᏏᏃ ᏚᏬᎡᎢ: ᎿᏉᏃ ᎾᎯᏳ ᏴᏫ ᎤᎾᎴᏅᎮ ᏱᎰᏩ ᎤᎾᏓᏙᎵᏍᏓᏁᎴ ᏚᏙᎥ ᎤᏂᏁᎢᏍᏓᏁᎢ ᎠᏯᏙᎸᎢ 5 ᎯᎠ ᎪᏪᎵ ᎬᏂᎨᏒ ᎢᎬᏁᎯ ᎠᏓᏫ ᏧᏁᏢᏔᏅᏒᎢ; ᎾᎯᏳ ᎢᎦ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏁ ᏴᏫ, ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᏄᏍᏛ ᏄᏩᏁᎴᎢ; ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏂᏚᏩᏁᎴᎢ: ᎠᎴ ᎣᏍᏛ ᏚᏁᏤᎵᎢ, ᎠᎴ ᎠᏓᏫ ᏚᏬᎡᎢ, ᎾᎯᏳ ᎢᎦ ᏚᏬᏢᏅ. ᎠᎴ ᎠᏓᏫ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎤᏪᏥ ᎤᏕᏁᎴᎢ, ᎤᏩᏒ ᎤᏰᎶᏎ ᎠᎴ ᎤᏩᏒ ᏄᏍᏛ ᏄᏍᏕᎢ, ᎠᎴ ᏎᏘ ᏚᏬᎡᎢ: ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎠᏓᏫ, ᏅᏓᎬᏩᏓᎴᏅᏛ ᏎᏘ ᏧᏕᏁᎴᎢ, ᏁᎳᏧᏈ ᏄᏕᏘᏴᎮᎢ; ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎠᏓᏫ ᏐᎣᏁᎳᏧᏈ ᏦᎠᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ: ᎿᏉᏃ ᎤᏲᎱᏎᎢ. ᏎᏘᏃ ᎠᏍᎪᎯᏧᏈ ᎯᏍᎩᏃ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎢᎾᏏ ᎤᏕᏁᎴᎢ: ᏎᏘᏃ ᎢᎾᏏ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᎦᎵᏉᎩ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ; ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ: ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᏎᏘ ᏐᎣᏁᎳᏧᏈ ᏔᎳᏚ ᏄᏕᏘᏴᎮᎢ: ᎿᏉᏃ ᎤᏲᎱᏎᎢ. ᎢᎾᏏᏃ ᏐᎣᏁᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎨᎢᎾᏂ ᎤᏕᏁᎴᎢ: ᎢᎾᏏᏃ ᎨᎢᎾᏂ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᏍᎩᎦᏚ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎢᎾᏏ ᏐᎣᏁᎳᏧᏈ ᎯᏍᎩ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ: ᎨᎢᎾᏂᏃ ᎦᎵᏆᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᏣᎮᎴᎵ ᎤᏕᏁᎴᎢ. ᎨᎢᎾᏂᏃ ᎺᎮᎴᎵ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᏴᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎨᎢᎾᏂ ᏐᎣᏁᎳᏧᏈ ᎠᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ. ᎺᎮᎴᎵᏃ ᏑᏓᎳᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᏤᎳᏗ ᎤᏕᏁᎴᎢ; ᎺᎮᎴᎵᏃ ᏤᎳᏗ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎺᎮᎴᎵ ᏁᎳᏧᏈ ᏐᎣᏁᎳᏍᎪᎯ ᎯᏍᎩ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ. ᏤᎳᏗᏃ ᎠᏍᎪᎯᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏔᎵ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎢᎾᎩ ᎤᏕᏁᎴᎢ: ᏤᎳᏗᏃ ᎢᎾᎩ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᏤᎳᏗ ᏐᎣᏁᎳᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏔᎵ ᏄᏕᏘᏴᎮᎢ, ᎿᏉᏃ ᎤᏲᎱᏎᎢ. ᎢᎾᎩᏃ ᏑᏓᎳᏍᎪᎯ ᎯᏍᎩ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎻᏚᏏᎳ ᎤᏕᏁᎴᎢ: ᎢᎾᎩᏃ ᎻᏚᏏᎳ ᎤᏕᏁᎸ, ᎣᏏ ᎤᏁᎳᏅᎯ ᎤᏁᏙᎴ ᏦᎢᏧᏈ ᏧᏕᏘᏴᏛ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎢᎾᎩ ᏦᎢᏧᏈ ᏑᏓᎳᏍᎪᎯ ᎯᏍᎩ ᏄᏕᏘᏴᎮᎢ. ᎢᎾᎩᏃ ᎤᏁᎳᏅᎯ ᎤᏁᏙᎴᎢ; ᎠᎴ ᏅᏩᎵᏛᏔᏁᎢᏉ; ᎤᏁᎳᏅᎯᏕᏃ ᎤᏯᏅᎮᎢ. ᎻᏚᏏᎳᏃ ᎠᏍᎪᎯᏧᏈ ᏁᎳᏍᎪᎯ ᎦᎵᏉᎩ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎴᎹᎩ ᎤᏕᏁᎴᎢ. ᎻᏚᏏᎳᏃ ᎴᎹᎩ ᎤᏕᏁᎸ, ᎣᏂ ᎦᎵᏉᎩᏧᏈ ᏁᎳᏍᎪᎯ ᏔᎵ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎻᏚᏏᎳ ᏐᎣᏁᎳᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏐᎣᏁᎳ ᏄᏕᏘᏴᎮᎢ, ᎿᏉᏃ ᎤᏲᎱᏎᎢ. ᎴᎹᎩᏃ ᎠᏍᎪᎯᏧᏈ ᏁᎳᏍᎪᎯ ᏔᎵ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎤᏪᏥ ᎠᏧᏣ ᎤᏕᏁᎴᎢ: ᏃᏯᏃ ᏚᏬᎡᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏓᎩᎦᎵᏍᏓᏗ ᎪᎱᏍᏗ ᎢᏓᏛᏁᎲ ᎠᎴ ᏗᎪᏰᏂ ᎬᏗ ᏕᎩᎸᏫᏍᏓᏁᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗ ᎦᏙᎯ ᏱᎰᏩ ᎤᏍᎦᏨᎯ ᏥᎩ. ᎴᏑᎩᏃ ᏃᏯ ᎤᏕᏁᎸ, ᎣᏂ ᎯᏍᎩᏧᏈ ᏐᎣᏁᎳᏍᎪᎯ ᎯᏍᎩ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎴᎹᎩ ᎦᎵᏉᎩᏧᏈ ᎦᎵᏆᏍᎪᎯ ᎦᎵᏉᎩ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ. ᏃᏯᏃ ᎯᏍᎩᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ: ᎿᏉᏃ ᏃᏯ ᏧᏪᏥ ᏎᎻ ᎠᎴ ᎭᎻ ᎠᎴ ᏤᏡᏛ ᎬᏩᏕᏁᎴᎢ. ᎠᏯᏙᎸᎢ 6 ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎿᏉ ᏴᏫ ᎤᎾᎴᏅᎲ ᎠᏂᎪᏓᏗᏍᎬ ᎡᎶᎯ, ᎠᎴ ᏧᏁᏥ ᎠᏂᎨᏴ ᎬᏩᎾᏕᏁᎸ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏚᏂᎪᎮ ᏴᏫ ᏧᏁᏥ ᎠᏂᎨᏴ, ᏧᏃᏚᎯᏳ ᎨᏒᎢ: ᎠᎴ ᎾᏍᎩ ᏚᎾᏓᏴᏎ ᏫᏂᎥ ᏚᎾᏑᏰᏒᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏓᏅᏙᎩ ᎥᏝ ᏂᎪᎯᎸ ᏴᏫᎯ ᏰᎮᏍᏗ, ᎤᏇᏓᎵᏉᏰᏃ ᎾᏍᎩ; ᎠᏎᏃ ᎠᏍᎪᎯᏧᏈ ᏔᎳᏍᎪᎯ ᎠᏏ ᏄᏕᏘᏱᏍᎨᏍᏗ. ᏧᏂᎵᎦᎳᏃ ᎾᎯᏳ ᎠᏁᎮ ᎡᎶᎯ; ᎠᎴ ᎾᏍᏉ ᎣᏂ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏚᎾᏓᏰᏅ ᏴᏫ ᏧᏁᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏗᏂᏲᎵ ᏕᎬᏩᏂᎾᏄᎪᏫᏎᎸ, ᎾᏍᎩ ᎯᎠ ᎤᏣᏘ ᏧᎾᎵᏂᎩᏗᏳ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏘ ᏗᏂᏃᏣᎵ ᎠᏂᏍᎦᏯ ᎨᏎᎢ; ᎠᎴ ᏱᎰᏩ ᎤᎪᎮ ᎤᏣᏘ ᎤᏁᎫᎯᏳ ᎨᏒ ᏴᏫ ᎡᎶᎯ, ᎠᎴ ᏂᎦᎥ ᎤᎾᏫᏱ ᎠᏓᏅᏖᏍᎬ ᎯᎠ ᏄᏍᏕᏍᏗ ᎡᎵᏍᎬ ᎤᏲᏉ ᎨᏒ ᏂᎪᎯᎸᎢ. ᎠᎴ ᏱᎰᏩ ᎤᏲ ᎤᏰᎸᏁ ᎡᎶᎯ ᏴᏫ ᎤᏬᏢᏅᎢ, ᎠᎴ ᎡᎯᏍᏗᏳ ᎤᏓᏅᏓᏕ ᎤᎾᏫᏱ ᎢᏴᏛ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᏓᏥᏛᏔᏂ ᎡᎶᎯ ᎡᎲᎢ ᎾᏍᎩ ᏥᏲᏢᏅᎯ ᏥᎩ; ᏴᏫ, ᎠᎴ ᎾᏍᏉ ᏅᎩᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎦᎸᎶᎢ ᎠᏂᏃᎯᎵᏙᎯ; ᎤᏲᏰᏃ ᏥᏰᎸᏍᎦ ᎦᏥᏲᏢᏅᎢ. ᏃᏯᏍᎩᏂ ᏱᎰᏩ ᎤᏪᏙᎵᏍᏗ ᏧᎧᏃᏗᏱ ᎤᏩᏛᎮᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏃᏯ ᏧᏁᏢᏔᏅᏒᎢ: ᏃᏯ ᎤᏓᏅᏘᏳ ᎨᏎᎢ, ᎠᎴ ᎾᏍᎦᏅᎾ ᎨᏎ ᎡᎲ ᎾᎯᏳ ᏣᏁᎮᎢ, ᎠᎴ ᏃᏊ ᎤᏁᎳᏅᎯ ᎤᏁᏙᎴᎢ. ᏃᏯᏃ ᏦᎢ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ, ᏎᎻ, ᎠᎴ ᎭᎻ, ᎠᎴ ᏤᏈᏛ. ᎠᎴ ᎡᎶᎯ ᎤᏲᏨᎯ ᎨᏎ ᎤᏁᎳᏅᎯ ᏓᎧᏂᏍᎬᎢ, ᎠᎴ ᎤᏲ ᎢᏗᏓᏛᏁᏗ ᎨᏒ ᎤᎧᎵᏨᎯ ᎨᏎ ᎡᎶᎯ. ᎤᏁᎳᏅᎯᏃ ᏚᎧᎿᏁ ᎡᎶᎯ, ᎠᎴ ᎬᏂᏳ ᎤᏲᏨᎯ ᎨᏎᎢ, ᏂᎦᏗᏳᏰᏃ ᎤᏇᏓᎵ ᎤᏲᏍᏔᏅᎯ ᎨᏎ ᎡᎲᎢ ᎡᎶᎯ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏃᏯ, ᎿᏉ ᎤᎵᏍᏆᏕᎵᎯᏍᏗ ᎨᏒ ᏂᎦᏗ ᎤᏇᏓᎵ ᎠᎩᏍᏆᎸᎡᎵᎦ: ᎡᎶᎯᏰᏃ ᎤᏂᎧᎵᎸᎯ ᎢᎩ ᎤᏲ ᎢᏗᏓᏛᏁᏗ ᎨᏎᎢ, ᎠᎴ ᎬᏂᏳᏉ, ᏓᎦᏥᏯᏠᏍᏔᏂ ᏥᏲᏍᏗᏍᎬ ᎡᎶᎯ. ᏨᏒ ᎭᏓᏙᏢᎾᏏ ᏥᏳ, ᎠᏥᎾ ᎰᏢᏓ. ᏕᎧᏅᏑᎴᏍᏗ ᎭᏫᏂ ᏥᏳᎯ, ᎠᎴ ᎠᏜ ᏘᏅᎵᏰᎢ ᎭᏫᏂ ᎠᎴ ᎦᏚᎢᏗᏢᎢ. ᎯᎠᏃ ᏄᏍᏗᏓᏁᏍᏗ ᏙᏢᏂ. ᏦᎢᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏥᏳ, ᎯᏍᎦᏍᎪᎯᏃ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏒᏍᏗ, ᏦᎠᏍᎪᎯᏃ ᎢᏯᎩᏳᏍᏈᏛ ᏄᏅᏪᎡᏍᏗ. ᎠᎴ ᎠᏦᎳᏅ ᏘᏔᎴᏏ ᏥᏳᎯ, ᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᎦᎸᎳᏗᏢ. ᏘᏍᏆᏗᎵ, ᎦᎶᎯᏍᏗᏱᏃ ᎠᏍᏆᎨᏂ ᏥᏳᎯ ᏘᏔᎴᏍᏔᏂ, ᎠᎴ ᎡᎳᏗ, ᎠᎴ ᏔᎵᏁ, ᎠᎴ ᏦᎢᏁ ᎾᏲᏓᏝᎲ ᏅᏛᏁᎵ. ᎠᎴ ᎬᏂᏳᏉ ᎠᏴ ᏓᏥᏃᎤᎪᏔᏂ ᎡᎶᎯ, ᏥᏛᏗᏍᎬ ᏂᎦᏗ ᎤᏇᏓᎵ, ᎾᏍᎩ ᎬᏬᎳᏕᏍᎬ ᏥᎬᎿᏗᏍᏙᏗ, ᎾᏍᎩ ᎦᎸᎶ ᎡᎳᏗᏢ ᏤᎭ, ᎠᎴ ᏂᎦᏗᏳ ᎡᎶᎯ ᏤᎿᎠ ᏓᎦᎵᏬᏦᏂ. ᏂᎯᏍᎩᏂ ᎤᎵᏂᎩᏛ ᏓᎬᏚᎢᏍᏓᏁᎵ; ᎠᎴ ᏥᏳᎯ ᏓᏥᏴᎵᎵ, ᏂᎯ, ᎠᎴ ᏗᏤᏥ, ᎠᎴ ᏣᏓᎵᎢ, ᎠᎴ ᏗᏤᏥ ᏧᎾᏓᎵᎢ. ᎠᎴ ᏥᏄᎾᏓᎴ ᏗᏅᏃᏛ ᏂᎦᏗ ᎤᏂᏇᏓᎵ ᏥᎩ, ᏔᎵᎭ ᏥᏄᎾᏓᎴ ᏙᏘᏴᏔᏂᎵ ᏥᏳᎯ, ᏂᎯ ᎢᏧᎳᎭ ᏕᏨᏁᏍᏗ, ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ ᎨᏎᏍᏗ. ᎠᎴ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎡᎶᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎤᏂᏠᏱᎭ ᎨᏎᎢ, ᎠᏂᏔᎵᎭ ᏄᎾᏓᎴᏒ ᏓᎨᏣᎷᏤᎵ, ᏓᏅᏅ ᏘᏍᏆᏂᎪᏓᏁᏗᏱ. ᎠᎴ ᏘᏰᏏ ᏂᎦᎥ ᏄᏓᎴᏒ ᎠᎵᏍᏓᏴᏗ ᎠᎩᏍᏗ ᏥᎩ, ᎠᎴ ᏘᏟᏌᏂ; ᎢᏣᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ ᏂᎯ ᎠᎴ ᏕᎭᏘᏁᎲᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏛᏁᎴ ᏃᏊ; ᏂᎦᏗ ᏄᏍᏛ ᎤᏁᏤᎸ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏄᏛᏁᎴᎢ. ᎠᏯᏙᎸᎢ 7 ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏃᏯ, Ꭷ ᎭᏣᎥᎦ ᏥᏳᎯ, ᏂᎯ ᎠᎴ ᏂᎦᏗ ᏕᏣᏓᏘᎿᎥᎢ; ᏂᎯᏰᏃ ᎬᎪᎡᎸ ᏚᏳᎪᏛ ᎮᎲ ᎠᏴ ᏥᎦᏔᎲᎢ ᎯᎠ ᎾᏍᎩ ᎠᏁᎲᎢ. ᎾᏂᎥᏃ ᏅᎩ ᏗᏂᏅᏌᏗ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᎦᎵᏉᎩ ᎢᏯᏂᎢᏛᎭ ᏕᎯᏴᏔᏅᎭ, ᎠᏨᏯ ᎠᎴ ᎤᏤᎵ ᎠᎩᏏ; ᎠᎴ ᏅᎩᏗᏂᏅᏌᏗ ᎠᏂᎦᏓᎭ ᏥᎩ ᎠᏂᏔᎵᎭ, ᎠᏨᏯ ᎠᎴ ᎤᏤᎵ ᎠᎩᏏ. ᎠᎴ ᎾᏍᏉ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎦᎵᏉᎩ ᎢᏯᏂᎢᏛᎭ, ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ, ᏓᏅᏅ ᏘᏍᏆᏂᎪᏓᏁᏗᏱ ᎾᏍᎩ ᎤᏂᏁᏉᎢᏍᏗᏱ ᎡᎶᎯ ᏂᎬᎾᏛ ᎦᏚᎢ. ᎠᏏᏰᏃ ᎦᎵᏉᎩ ᎢᏳᏒᎯ, ᎿᏉ ᏓᏥᎦᏃᏔᏂ ᎡᎶᎯ ᏅᎦᏍᎪᎯ ᏧᏙᏓᏆᏛ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ:; ᏄᏓᎴᏒᏃ ᎬᏃᏛ ᎠᏉᏢᏅᎯ ᏥᎩ ᏓᏥᏛᏔᏃᏂ ᎡᎶᎯ ᏂᎬᎾᏛ ᎦᏚᎢ. ᏃᏯᏃ ᎾᏍᎩᏯ ᏄᏛᏁᎴ ᏱᎰᏩ ᏄᏍᏛ ᎤᏁᏤᎸᎢ. ᏃᏯᏃ ᏑᏓᎵᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᏥᏚᏃᎱᎦᏁ ᎡᎶᎯ. ᏃᏯᏃ ᎤᏣᏁ ᏥᏳᎯ, ᎠᎴ ᎾᏍᏉ ᏧᏪᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᏧᎾᏓᎵᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎹ ᏕᎦᏃᎱᎩᏍᎬᎢ. ᎠᎴ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᏂᎦᏓᎭ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏄᎾᏓᎴᏒ ᎦᏙᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᏂᏔᎵᎭ ᏫᎬᏩᏣᏁᎵᎴ ᏃᏯ ᏥᏳᎯ; ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎸ ᏃᏯ. ᏱᎠᏃ ᏄᎵᏍᏔᏁ ᎦᎵᏉᎩ ᏫᏄᏒᎸ, ᎿᏉ ᎠᎹ ᎦᏃᎱᎩᏍᎨ ᎡᎶᎯ. ᏑᏓᎵᏧᏈᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎡᎲ ᏃᏯ, ᏔᎵᏁ ᎧᎸᎢ, ᎦᎵᏆᏚᏏᏁ ᎢᎪᎯ ᎧᎸᎢ, ᎾᎯᏳᏉ ᎢᎦ ᏂᎦᏗ ᏕᎦᏄᎪᎬ ᎡᏆ ᎠᏍᏛᎩ ᎨᏒ ᏚᏔᏍᎩᏎᎢ, ᎠᎴ ᎠᏦᎳᏅ ᏚᎵᏍᏚᎢᏎ ᎦᎸᎶᎢ. ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏙᏓᏆᏛ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎤᎦᎿᏁ ᎡᎶᎯ. ᎾᎯᏳᏉ ᎢᎦ ᏃᏯ, ᎠᎴ ᏎᎻ, ᎠᎴ ᎭᎻ, ᎠᎴ ᏤᏈᏛ, ᏃᏯ ᏧᏪᏥ, ᎠᎴ ᏃᏯ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᏧᎾᏓᎵᎢ ᏦᎢ ᎢᏯᏂᏛ, ᎤᎾᏣᏁ ᏥᏳᎯ; ᎾᏍᎩ [ᎤᎾᏣᏁᎢ,] ᎠᎴ ᎾᏂᎥ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏗ ᎦᎾᏝᎢ ᏧᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎾᏍᎩ ᎡᎶᎯ ᏣᎾᏓᎾᏏᏂᏙᎰᎢ, ᎾᏍᎩ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏥᏍᏆ ᏧᏓᎴᏅᏛ ᏗᏃᏯᏗ ᏥᎩ. ᎠᎴ ᏃᏯ ᏫᎬᏩᏣᏁᎴ ᏥᏳᎯ, ᎠᏂᏔᎵᎭ ᎾᏂᎥ ᎤᏂᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏅᏬᎳᏕᏍᎬ ᏥᏓᏅᎿᏗᏍᏙᏗ. ᎠᎴ ᎾᏍᎩ ᏭᎾᏣᏅᎯ, ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ ᎤᎾᏣᏁ ᎾᏂᎥ ᎤᏂᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎸᎢ; ᎠᎴ ᏱᎰᏩ ᎤᏍᏚᏁᎢ. ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎦᏃᎱᎩᏍᎨ ᎡᎶᎯ, ᎠᎴ ᎠᎹ ᎧᏁᏉᏥᏎᏉ, ᎠᎴ ᎤᏲᎷᏔᏁ ᏥᏳ, ᎠᎴ ᎦᏙᎯ ᎦᎸᎳᏗᏢ ᎤᎵᏌᎳᏓᏁᎢ. ᎠᎴ ᎡᎶᎯ ᎦᏃᎱᎩᏍᎨᎢ, ᎠᎴ ᎠᎹ ᎤᏣᏘ ᎤᏁᏉᏂᏥᎴᎢ:; ᎠᎴ ᏥᏳ ᎠᎹᏱ ᎦᏚ ᎤᏲᎷᏩᏕᎨᎢ. ᎠᎴ ᎦᏃᎱᎩᏍᎬ ᎤᏣᏔᏅᎯ ᎤᏁᏉᏥᎴ ᎡᎶᎯ; ᎠᎴ ᏂᎦᏗᏳ ᎢᏅ ᎢᏗᎦᏘ ᏙᏓᎸ ᏂᎬᎾᏛ ᎦᎸᎶ ᎭᏫᏂᏗᏢ ᏚᏭᏢᏔᏁᎢ. ᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏄᎶᏤ ᎠᎹ, ᎠᎴ ᏙᏓᎸ ᏚᏭᏢᏔᏁᎢ. ᎠᎴ ᏂᎦᏗᏳ ᎤᏂᏇᏓᎵ ᎨᏒ ᏚᏂᎵᏬᏤ ᎾᏍᎩ ᎡᎶᎯ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏥᎩ, ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᏗᏅᏃᏛ, ᎠᎴ ᎾᏂᎥ ᎠᎾᏓᎾᏏᏂᏙᎯ ᏥᎩ, ᎾᏍᎩ ᎡᎶᎯ ᏣᎾᏓᎾᏏᏂᏙᎭ, ᎠᎴ ᏴᏫ ᎾᏂᎥᎢ; ᎾᏍᎩ ᎾᏂᎥ ᏗᏃᏴᏐᎵ ᎠᏅᏬᎳᏕᏍᎬ ᏥᏓᏅᎿᏗᏍᏙᏗ, ᏂᎦᏗᏳ ᎾᏍᎩ ᎦᏙᎯ ᎤᎧᏲᏛᎯ ᎠᏁᎯ ᏥᎩ, ᏚᏂᎵᏬᏤᎢ. ᎠᎴ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᎨᏥᏛᏔᏁᎢ, ᎾᏍᎩ ᎦᏙᎯ ᎦᏚᎢ ᎠᏁᎯ, ᏴᏫ, ᎠᎴ ᏅᎩᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ; ᎾᏍᎩ ᎨᏥᏛᏔᏁ ᎡᎶᎯ; ᏃᏯᏃ ᎤᏩᏒ ᎤᎵᏃᎯᏰᎢ, ᎾᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᏥᏳᎯ ᎤᎾᏣᏅᎯ. ᎠᎴ ᎦᏃᎱᎩᏍᎬ ᎧᏁᏉᏥᏎ ᎡᎶᎯ ᎠᏍᎪᎯᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏧᏒᎯᏛ. ᎠᏯᏙᎸᎢ 8 ᎤᏁᎳᏅᎯᏃ, ᎤᏅᏓᏕ ᏃᏯ, ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎾᏍᎩ ᏥᏳᎯ ᏧᎾᏣᎡᎢ; ᎤᏁᎳᏅᎯᏃ ᏄᏩᏂᏌᏁ ᎤᏃᎸᏁ ᎡᎶᎯ, ᎠᎴ ᎠᎹ ᎦᏅᏬᏍᎨᎢ. ᎠᎴ ᎾᏍᏉ ᎠᏍᏛᎩ ᎨᏒ ᏕᎦᏄᎪᎬᎢ, ᎠᎴ ᎠᏦᎳᏅ ᎦᎸᎶᎢ ᏚᎵᏍᏚᏁᎢ, ᎠᎴ ᎦᎸᎳᏗ ᏗᎦᏍᎬ ᎠᏥᎾᎯᏍᏔᏁᎢ. ᎠᎴ ᎠᎹ ᏂᎪᎯᎸ ᎠᏓᏅᏍᎨ ᎡᎶᎯ; ᎠᏍᎪᎯᏧᏈᏃ ᎯᏍᎦᏍᎪᎯ ᏫᏄᏒᎸ ᎿᏉ ᎦᏅᏬᏍᎨ ᎠᎹ. ᏥᏳᏃ ᎦᎵᏉᎩᏁ ᎧᎳᏩᏗᏒ ᎦᎵᏆᏚᏏᏁ ᎢᎪᎯ ᎤᏝᏗᏤ ᎠᎳᎳᏗ ᏙᏓᎸᎢ. ᎠᎴ ᎠᎹ ᎠᎦᏲᎶᏍᎨ ᏂᎪᎯᎸ ᎠᏍᎪᎯᏁ ᎧᎸᎢ ᎢᏯᏍᏗ; ᎠᏍᎪᎯᏁᏃ ᎧᎸᎢ, ᎢᎬᏱᏱᏉ ᎢᎪᎯ ᎾᏍᎩ ᎧᎸᎢ ᏙᏓᎸ ᏧᏍᎪᎵ ᏗᎬᎪᏩᏛᏗ ᎢᎨᏎᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏅᎦᏍᎪᎯ ᏫᏄᏒᎸ, ᎾᏍᎩ ᏃᏯ ᎠᏦᎳᏅ ᎤᏍᏚᎢᏎ ᏥᏳᎯ ᎾᏍᎩ ᏧᏬᏢᏁᎢ; ᎠᎴ ᎪᎳᏅ ᎤᏅᏎᎢ, ᎾᏍᎩ ᎤᏄᎪᏨ ᎠᏨᏏᏰᏍᎨᎢ ᎬᏂ ᎠᎹ ᎤᎧᏲᏐᏅ ᎡᎶᎯ. ᎠᎴ ᎾᏍᏉ ᎢᎤᏅᏎ ᎫᎴᏗᏍᎪᏂᎯ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎠᎹ ᎤᏅᏬᏒ ᎦᏙᎯ ᎠᎴ ᏄᏅᏬᏒᎾ ᎨᏒᎢ; ᎠᏎᏃ ᎫᎴ-ᏗᏍᎪᏂᎯ ᎤᏠᏤᏉ ᎢᎸᎯᏢ ᏧᎳᏏᏗᏱ, ᎠᎴ ᎢᎤᏣᏁᎵᎴ ᏔᎵᏁ ᏥᏳᎯ, ᎠᎹᏰᏃ ᎠᏏᏉ ᎤᏭᏝᎡ ᏂᎬᎾᏛ ᎡᎶᎯ. ᎠᎴ ᏭᏙᏯᏅᎯᏕᎢ, ᎠᎴ ᏭᏂᏴᎮᎢ, ᎠᎴ ᎤᏴᏔᏁ ᏥᏳᎯ. ᎠᎴ ᎠᏏ ᎦᎵᏉᎩ ᏄᏒᎴᎢ ᏔᎵᏁᏃ ᎤᏅᏎ ᎫᎴ-ᏗᏍᎪᏂᎯ ᎤᏄᎪᏫᏎ ᏥᏳᎯ; ᎠᎴ ᎫᎴ-ᏗᏍᎪᏂᎯ ᎤᏣᏁᎵᎴ ᎤᏒᎢ; ᎠᎴ ᎬᏂᏳᏉ ᎣᎵᏩ ᎤᎦᎶᎬ ᎢᏤ ᎤᏅᏍᎦᎴᎢ; ᎾᏍᎩᏃ ᏃᏯ ᎤᏙᎴᎰᏎ ᎠᎹ ᎤᏅᏬᏒ ᎡᎶᎯ. ᎠᎴ ᎠᎴ ᎠᏏ ᎦᎵᏉᎩ ᏄᏒᎴᎢ; ᎿᏉ ᎠᎴ ᎤᏅᏎ ᎫᎴ-ᏗᏍᎪᏂᎯ; ᎾᏍᎩᏃ ᎥᏝ ᏔᎵᏁ ᏳᎷᏤᎴᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏑᏓᎵᏧᏈ ᏌᏉᏃ ᎤᏕᏘᏴᏌᏗᏒᎢ, ᎢᎬᏱᏱ ᎧᎸᎢ, ᎢᎬᏱᏱᏉ ᎢᎪᎯ ᎾᏍᎩ ᎧᎸᎢ, ᎠᎹ ᎤᎧᏲᏐᏁ ᎡᎶᎯ; ᎠᎴ ᏃᏯ ᎤᏩᏁᏎ ᏥᏳ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ, ᎦᏙᎯ ᎦᏚ ᎤᎧᏲᏐᏅᎯ ᎨᏎᎢ. ᏔᎵᏁᏃ ᎧᎸᎢ, ᎦᎵᏉᎩᏦᏁᏏᏁ ᎢᎪᎯ ᎾᏍᎩ ᎧᎸᎢ, ᎡᎶᎯ ᎤᎧᏲᏐᏁᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᏁᏤᎴ ᏃᏯ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᏣᎢ ᏥᏳᎯ, ᏂᎯ, ᎠᎴ ᏣᏓᎵᎢ, ᎠᎴ ᏗᏤᏥ ᎠᎴ ᏗᏤᏥ ᏧᎾᏓᎵᎢ. ᏗᏯᎢ ᏂᎦᏛ ᏗᏅᏃᏛ ᎾᏍᎩ ᏥᏣᏣᎠ, ᏂᎦᏗᏳ ᎤᏂᏇᏓᎵ ᏥᎩ, ᎾᏍᎩ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᏄᎾᏓᎴᏒ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎾᏍᎩ ᎡᎶᎯ ᏣᎾᏓᎾᏏᏂᏙᎭ; ᎾᏍᎩ ᎤᏣᏘ ᎤᏂᏁᏉᎢᏍᏗᏱ ᎡᎶᎯ, ᎠᎴ ᎤᏂᏁᏉᏣᏘ ᎢᏳᎵᏙᏗᏱ, ᎠᎴ ᎤᏂᎪᏙᎯᏍᏗᏱ ᎡᎶᎯ. ᎿᏉᏃ ᎤᎾᏣᎢᏎᎢ, ᏃᏯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᏧᎾᏓᎵᎢ. ᎾᏂᎥ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎾᏂᎥ ᎠᎾᎵᏖᎸᎲᏍᎩ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᎾᏍᎩ ᏄᎾᏓᎴᏒ ᎡᎶᎯ ᏣᎾᎵᏖᎸᎲᏍᎪᎢ, ᎤᏂᏠᏱᎭ ᏕᎨᏌᏗᏒ ᎤᎾᏣᎢᏎ ᏥᏳᎯ. ᏃᏯᏃ ᏱᎰᏩ ᎤᏬᏢᎾᏁᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏂᏃᎯᎵᏙᎯ ᏚᏯᏅᎮᎢ, ᎠᎴ ᎤᎵᏍᎪᎸᏔᏁ ᎠᏥᎸ-ᎨᎳᏍᏙᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ. ᏱᎰᏩᏃ ᎤᏪᏩᏒᏤ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ; ᏱᎰᏩᏃ ᎤᎿᏫᏱ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᎦᏙᎯ ᏔᎵᏁ ᏴᎦᏥᏍᎦᎩ ᏴᏫᏉ ᏴᎦᏥᏍᏛᏗᏍᏓ; ᏴᏫᏍᎩᏂᏃᏅ ᎠᏓᏅᏖᏍᎬ ᎤᏲᏉ ᏗᏛᏍᎬ ᎢᏴᏛ ᎤᏓᎬᏩᏓᎴᏅᏛ; ᎥᏝ ᎠᎴ ᏔᎵᏁ ᏂᎦᎥ ᎬᏃᏛ ᏴᎦᏥᏛᏓ ᎾᏍᎩᏯ ᎾᏆᏛᏁᎸᎢ. ᎡᎶᎯ ᎢᎪᎯᏛ ᎨᏒᎢ, ᎥᏝ ᎤᎵᏍᏆᏗᏍᏗ ᏱᎩ ᎠᏫᏍᏗᏱ ᎠᎴ ᎤᎦᏛᎾᏨᎯ ᎦᏟᏐᏗᏱ ᎨᏒᎢ, ᎤᏴᏜᏃ ᎠᎴ ᎤᏗᎴᎩ ᎨᏒᎢ, ᎪᎩᏃ ᎠᎴ ᎪᎳ, ᎢᎦᏃ ᎠᎴ ᏒᏃᏱ. ᎠᏯᏙᎸᎢ 9 ᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᏚᏁᏤᎴ ᏃᏯ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ; ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏥᎪᏙᏍᎨᏍᏗ, ᎠᎴ ᎢᏥᎧᎵᏣ ᎡᎶᎯ. ᎠᎴ ᏂᎯ ᎢᏥᎾᏰᎩ ᎠᎴ ᎢᏥᏍᎦᎢᎯ ᎨᏎᏍᏗ ᏄᎾᏓᎴᏒ ᏗᏅᏃᏛ ᎡᎶᎯ ᏣᏁᎭ, ᎠᎴ ᏂᎦᏗ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏂᎦᏗ ᎡᎶᎯ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏥᎩ, ᎠᎴ ᏂᎦᏗ ᎠᏣᏘ ᎠᎺᏉᎯ ᎠᏁᎯ; ᏂᎯ ᏤᏥᏲᎯᏎᎸᎯ. ᏂᎦᎥ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏗᏅᏃᏛ ᏥᎩ ᏂᎯ ᎢᏣᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ; ᎢᏤ ᎦᏄᎸᏒ ᏗᏨᏲᎯᏎᎸᎯ ᏥᎩ, ᎾᏍᎩᏯ ᏂᎦᏛ ᏕᏨᏲᎯᏏ; ᎤᏇᏓᎸᏍᎩᏂᏃᏅ ᎬᏅ ᎬᏩᏠᏯᏍᏗ, ᎾᏍᎩ ᎤᎩᎬᎯ ᏥᎩ, ᎥᏝ ᎢᏣᎵᏍᏓᏴᏙᏗ ᏱᎨᏎᏍᏗ. ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎢᏥᎩᎬ ᎾᏍᎩ ᏕᏨᎿᏗᏍᏛ ᏗᎩᎬᏩᎶᏙᏗ ᎨᏎᏍᏗ; ᎾᏂᎥ ᏗᏅᏃᏛ ᎾᏍᎩ ᏗᎦᏥᎬᏩᎶᏓᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᏉ ᏴᏫ; ᎾᏂᎥ ᏴᏫ ᏓᎾᏓᏅᏢᎢ, ᎾᏍᎩ ᏴᏫ ᎬᏅ ᏗᎦᏥᎬᏩᎶᏓᏁᏗ ᎨᏎᏍᏗ. ᎩᎶ ᏴᏫ ᎤᎩᎬ ᎠᏤᏪᎮᏍᏗ ᏴᏫᏉ ᎾᏍᏉ ᎤᎩᎬ ᎤᏤᏪᏗ ᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᏩᎡ ᏚᏓᏟᎶᏍᏔᏅ ᏴᏫ ᎤᏬᏢᏅ. ᏂᎯᏃ ᎢᏥᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏥᎪᏙᏍᎨᏍᏗ ᎤᏣᏘ ᏕᏥᎾᏄᎪᏫᏍᎨᏍᏗ ᎡᎶᎯ, ᎠᎴ ᎾᎿ ᎢᏥᎪᏙᏍᎨᏍᏗ. ᎤᏁᎳᏅᎯᏃ ᏚᏁᏤᎴ ᏃᏯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᎴ ᎠᏴ, ᎬᏂᏳᏉ ᎠᏴ, ᎧᏃᎮᏛ ᏕᏨᏯᏠᎢᏍᏓᏁᎭ ᏂᎯ, ᎠᎴ ᎢᏣᏁᏢᏔᏅᏛ ᎨᏒᎢ. ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ, ᏥᏕᎭᏘᏁᎭ, ᎾᏍᎩ ᎠᏂᏃᎯᎵᏙᎯ, ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎡᎶᎯ ᎠᏁᎯ ᏥᏕᎭᏘᏁᎭ; ᎾᏍᎩ ᎾᏂᎥ ᏧᎾᏣᎢᏒ ᏥᏳᎯ, ᎠᎴ ᏥᎾᏂᎥᏉ ᏗᏅᏃᏛ ᎡᎶᎯ ᏣᏁᎭ. ᎠᎴ ᎧᏃᎮᏛ ᏕᏨᏯᏠᎢᏍᏔᏁᎭ, ᎥᏝ ᎠᎴ ᏔᎵᏁ ᏂᎦᏛ ᎤᏇᏓᎵ ᎦᏃᎱᎩᏍᎬ ᎨᏥᏒᎲᏍᏙᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᏔᎵᏁ ᎤᏃᎱᎪᏗ ᏱᎨᏎᏍᏗ ᎡᎶᎯ ᎤᏲᏍᏙᏗᏱ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎤᏰᎸᏛ ᎧᏃᎮᏛ ᏥᏕᏨᏯᏠᎢᏍᏓᏁᎭ ᏂᎯ ᎠᎴ ᎾᏂᏗᏅᏃᏛ ᏥᏕᎭᏘᏁᎭ, ᎾᏍᎩ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎢᏣᏓᏁᏟᏴᏏᏒ ᎢᎪᎯᏛ; [ᎬᏂᏳᏉ,] ᏂᏅᎪᎳᏛᏓ ᎤᎶᎩᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᎧᏃᎮᏛ ᏙᎦᏠᎯᏍᏛ ᎡᎶᎯ. ᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ ᎿᏉ ᏥᎶᎩᎳᏗᏍᏗᏍᎨᏍᏗ ᎡᎶᎯ, ᎤᏅᎪᎳᏛ ᎠᎪᏩᏛᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᎤᎶᎩᎸᎢ. ᎠᎴ ᎦᏅᏓᏗᏍᎨᏍᏗ ᎧᏃᎮᏛ ᏕᏨᏯᏠᎢᏍᏓᏁᎸᎢ, ᏂᎯ ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎤᏂᏇᏓᎵ ᏥᎩ; ᎠᎴ ᎥᏝ ᎿᏉ ᏔᎵᏁ ᎤᏃᎱᎪᏗ ᏱᎨᏎᏍᏗ ᎤᏒᎲᏍᏗᏱ ᏂᎦᏛ ᎤᏇᏓᎵ. ᎠᎴ ᎤᎶᎩᎸ ᎤᏅᎪᎳᏖᏍᏗ; ᎠᎴ ᏕᎦᎦᏂᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏆᏅᏗᏓᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏛ ᎤᏁᎳᏅᎯ ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ, ᎾᏍᎩ ᎤᏂᏇᏓᎵ ᏥᎩ, ᎾᏍᎩ ᎡᎶᎯ ᏣᏁᎭ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏃᏯ, ᎯᎠ ᎾᏍᎩ ᎤᏰᎸᏛ ᎧᏃᎮᏛ ᏙᎦᏠᎯᏍᏛ ᎠᏴ, ᎠᎴ ᎾᏂᎥ ᎤᏂᏇᏓᎵ ᎡᎶᎯ ᏣᏁᎭ. ᏃᏯᏃ ᏧᏪᏥ, ᎾᏍᎩ ᏥᏳᎯ ᏧᎾᏣᎢᏎᎢ ᎯᎠ ᎾᏍᎩ ᏎᎻ, ᎭᎻ, ᏤᏈᏛᏃ; ᎭᎻᏃ ᎾᏍᎩ ᎨᎾᏂ ᎤᏙᏓ. ᎯᎠ ᏦᎢ ᎢᏯᏂᏛ ᏃᏯ ᏧᏪᏥ; ᎾᏍᎩᏃ ᏧᎾᏁᏢᏔᏅᎯ ᎡᎳᏂᎬ ᏚᎾᏁᎳᏗᏙᎴᎢ. ᏃᏯᏃ ᎿᏉ ᎤᎴᏅᎮ ᏠᎨᏏ ᏧᎸᏫᏍᏓᏁᎯ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᏖᎸᎳᏗ ᏚᏫᏎᎢ; ᎠᎴ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏗᏔᎮᎢ, ᎠᎴ ᎤᏴᏍᏓᎡᎢ; ᎠᎴ ᎤᏚᏞᏎ ᎦᎵᏦᏛᎢ. ᎭᎻᏃ, ᎨᎾᏂ ᎤᏙᏓ, ᎤᎪᎮ ᎤᏲᏓᎦ ᎨᏒ ᎤᏙᏓ, ᎠᎴ ᏫᏚᏃᏁᎴ ᎠᏂᏔᎵ ᎠᎾᎵᏅᏟ ᏙᏱᏗᏢ. ᏎᎻᏃ ᎠᎴ ᏤᏈᏛ ᎠᏄᏬ ᏭᏂᏁᏎᎢ, ᎠᎴ ᎤᎾᏃᎮᏢᏁᎢ, ᎠᎴ ᎤᎾᏏᏅᏎᎢ, ᎠᎴ ᎤᏄᏢᏁ ᎤᏲᏓᎦ ᎨᏒ ᎤᏂᏙᏓ; ᎠᎴ ᎤᏣᏘᏂ ᏭᎾᎦᏖᎢ ᎠᎴ ᎥᏝ ᏳᏂᎪᎮ ᎤᏲᏓᎦ ᎨᏒ ᎤᏂᏙᏓ. ᏃᏯᏃ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏗᏔᎲ ᎤᏓᏅᏘᏌᏁᎢ, ᎠᎴ ᎠᏥᏃᏁᎴ ᎣᏂ ᎡᎯ ᎤᏪᏥ ᏄᏩᏁᎸᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ ᎨᎾᏂ; ᎤᏙᎯᏳᏒ ᎬᏩᏅᏏᏓᏍᏗᏉ ᎨᏎᏍᏗ ᎠᎾᎵᏅᏢᎢ. ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏎᎻ ᎤᏤᎵᎦ; ᎠᎴ ᎨᎾᏂ ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ. ᎤᏁᎳᏅᎯ ᏓᏳᏔᏃᎯᏍᏔᏂ ᏤᏈᏛ ᎠᎴ ᏎᎻ ᏚᎵᏦᏛ ᏓᏁᎳᏗᏍᎨᏍᏗ; ᎨᎾᏂᏃ ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ. ᏃᏯᏃ ᎤᏃᎱᎦᏅ ᎠᏏ ᏦᎢᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ. ᏃᏯᏃ ᎢᎪᎯᏛ ᎤᎴᏂᏙᎸ ᏐᎣᏁᎳᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ; ᎿᏉ ᎤᏲᎱᏎᎢ. ᎠᏯᏙᎸᎢ 10 ᏃᏯᏃ ᏧᏪᏥ, ᏎᎻ, ᎭᎻ, ᏤᏈᏛᏃ, ᎤᎾᏁᏢᏔᏅᏒ ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ, ᎾᏍᎩ ᏧᏁᏥ ᎠᏂᏍᎦᏯ ᎬᏩᎾᏕᏁᎴ ᏚᏅᏬᏐᏅ. ᎯᎠᏃ ᎾᏍᎩ ᏤᏈᏗ ᏧᏪᏥ; ᎪᎹ, ᎠᎴ ᎹᎪᎩ, ᎠᎴ ᎹᏓᏱ, ᎠᎴ ᏤᏆᏂ, ᎠᎴ ᏚᏆᎵ, ᎠᎴ ᎺᏏᎩ, ᎠᎴ ᏔᎳᏏ. ᎯᎠᏃ ᎾᏍᎩ ᎪᎹ ᏧᏪᏥ; ᎡᏍᎩᎾᏏ, ᎠᎴ ᎵᏆᏗ, ᎠᎴ ᏙᎦᎹ. ᎯᎠᏃ ᎾᏍᎩ ᏤᏆᏂ ᏧᏪᏥ; ᎢᎳᏌ, ᎠᎴ ᏔᏏᏏ, ᎠᏂᎩᏗ, ᎠᎴ ᎠᏂᏙᏓᏂ. ᎯᎠ ᎾᏍᎩ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏧᎾᏤᎵᎪᎯ ᎠᎹᏰᎵ ᏕᎨᏌᏗᏒ ᏚᏂᏯᏙᎮᎴ ᏧᎾᏤᎵᎪᎯ ᎦᏙᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᏂᏏᏴᏫᎭ ᎤᏠᏱ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᏧᎾᏤᎵᎪᎯ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎭᎻ ᏧᏪᏥ; ᏓᏏ, ᎠᎴ ᎻᏏᎴᎻ, ᎠᎴ ᏆᏗ, ᎠᎴ ᎨᎾᏂ. ᎯᎠᏃ ᎾᏍᎩ ᎫᏏ ᏧᏪᏥ; ᏏᏆ, ᎠᎴ ᎭᏈᎳ, ᎠᎴ ᏌᏆᏔ, ᎠᎴ ᎴᎠᎹ, ᎠᎴ ᏌᏗᎦ. ᎯᎠᏃ ᎾᏍᎩ ᎴᎠᎹ ᏧᏪᏥ, ᏥᏆ, ᏗᏓᏂᏃ. ᎫᏏᏃ ᎤᏪᏥ ᏂᎻᎶᏗ ᎤᏕᏁᎢ; ᎠᎴ ᎾᏍᎩ ᎤᎴᏅᎮ ᎤᎵᏂᎩᏛ ᏄᎵᏍᏔᏁ ᎡᎶᎯ ᎠᏁᎲᎢ. ᎤᏣᏘ ᎤᏃᎯᎵᏓᏌᏘᏳ ᎨᏎ ᏱᎰᏩ ᎠᎦᏔᎲᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ; ᎾᏍᎩᏯ ᏂᎻᎶᏗ, ᎤᏣᏘ ᎤᏃᎯᎵᏓᏌᏘᏳ ᏥᎨᏒ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎠᏓᎴᏂᏍᎬᏃ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎨᏒ ᏓᏗᎶᏂ, ᎠᎴ ᎡᎴᎩ, ᎠᎴ ᎡᎨᏓ, ᎠᎴ ᎧᎴᏂ ᎨᏎᎢ, ᏌᎾ [ᏚᏙᎥ] ᎦᏓ ᎠᎲᏢ. ᎾᎿᏃ ᎦᏓ ᎠᎲ ᎤᏄᎪᏤ ᎡᏌ, ᎠᎴ ᏂᏂᏫ ᎤᏪᏚᏁᎢ, ᎠᎴ ᎾᏍᏉ ᎵᎰᏉ ᎦᏚᎲ ᎠᎴ ᎨᎳ, ᎠᎴ ᎴᏏᏂ, ᎾᏍᎩ ᎠᏰᎵ ᏥᎦᏚᎭ ᏂᏂᏫ ᎨᎳᏃ ᏕᎦᏚᎲᎢ; ᎾᏍᎩ ᎡᏉᎯᏳ ᎦᏚᎭ. ᎻᏏᎴᎻᏃ ᎯᎠ ᎾᏍᎩ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ; ᎠᏂᎷᏗ, ᎠᎴ ᎠᏂᎠᎾᎻ, ᎠᎴ ᎠᏂᎴᎭᏈ, ᎠᎴ ᎠᏂᎾᏚᎯ, ᎠᎴ ᎠᏂᏆᏚᏏ, ᎠᎴ ᎠᏂᎧᏏᎷᎯ (ᎾᏍᎩ ᎯᎠ ᏨᏧᎾᏓᎴᏁ ᎠᏂᏈᎵᏍᏗ,) ᎠᏂᎦᏙᎵᏃ. ᎨᎾᏂᏃ ᎤᏪᏥ ᎤᏕᏁᎴ ᏌᏙᏂ ᎢᎬᏱᏱ ᎡᎯ, ᎠᎴ ᎮᏗ, ᎠᎴ ᎠᏂᏥᎫᏏ, ᎠᎴ ᎠᏂᎡᎼᎵ, ᎠᎴ ᎠᏂᎦᎦᏏ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᎠᎩ, ᎠᎴ ᎠᏂᏌᏂ, ᎠᎴ ᎠᏂᎠᏆᏗ, ᎠᎴ ᎠᏂᏏᎹᎵ, ᎠᎴ ᎠᏂᎭᎹᏗ; ᎣᏂᏃ ᎨᎾᏂ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒ ᏚᏂᏰᎵᏏᏙᎴᎢ. ᎠᏂᎨᎾᏂᏃ ᎠᏟᎶᏛ ᎤᏅᎫᏛᎢ, ᏌᏙᏂ ᎤᏓᎴᏅᏛ ᎨᏒᎩ ᎩᎳ ᏥᏮᎦᏙᎢ, ᎨᏌ ᎢᏯᏍᏗ; ᎾᏍᎩ ᏐᏓᎻ, ᎠᎴ ᎪᎹᎵ, ᎠᎴ ᎠᏗᎹ, ᎠᎴ ᏏᏉᏱᎻ ᏕᎦᏚᎲ ᏥᏮᎦᏙ ᎴᏌ ᏫᎦᎷᎩ. ᎯᎠ ᎾᏍᎩ ᎭᎻ ᏧᏪᏥ, ᏏᏓᏁᎸᎯᏕᎨᏌᏗᏒ, ᎠᎴ ᎤᏠᏱ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏤᎵ ᎦᏙᎯ ᏕᎨᏌᏗᏒ, ᎠᎴ ᎤᏂᏠᏱ ᎨᏒᎢ. ᏎᎻᏃ ᎯᏆ ᏧᏪᏥ ᏂᎦᏛ ᎤᏂᎦᏴᎵᎨ ᏥᎩ, ᎾᏍᎩ ᏤᏈᏛ ᎢᎬᏱᏱ ᎡᎯ ᏗᎾᏓᏅᏟ, ᎾᏍᎩ ᎾᏍᏉ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ. [ᎯᎠᏃ ᎾᏍᎩ] ᏎᎻ ᏧᏪᏥ, ᎢᎳᎻ, ᎠᎴ ᎡᏌ, ᎠᎴ ᎠᏆᏣ, ᎠᎴ ᎳᏗ, ᎠᎴ ᎡᎳᎻ. [ᎯᎠᏃ ᎾᏍᎩ] ᎡᎳᎻ ᏧᏪᏥ; ᎠᏏ, ᎠᎴ ᎭᎵ, ᎠᎴ ᎩᏛ, ᎠᎴ ᎹᏏ. ᎠᏆᏣᏃ ᎤᏪᏥ ᏎᎳ ᎤᏕᏁᎢ; ᏎᎳᏃ ᎤᏪᏥ ᎯᏆ ᎤᏕᏁᎢ. ᎯᏆᏃ ᏧᏪᏥ ᎠᏂᏔᎵ ᎤᎾᏕᏁᎢ; ᎠᏏᏴᏫ ᏇᎵᎩ ᏚᏙᎡᎢ; ᎾᎯᏳᏰᏃ ᎾᏍᎩ ᏤᎮᎢ ᎦᏙᎯ ᎤᏂᏯᏙᎴᎢ; ᏗᎾᏓᏅᏟᏃ ᎾᏍᎩ ᏦᎧᏔᏂ ᏚᏙᎡᎢ. ᏦᎧᏔᏂᏃ ᎬᏩᏕᏁᎴ ᎡᎳᎼᏓ, ᎠᎴ ᏏᎴᏈ, ᎠᎴ ᎭᏌᎹᏈ, ᎠᎴ ᏥᎳ, ᎠᎴ ᎭᏙᎳᎻ, ᎠᎴ ᏳᏌᎵ, ᎠᎴ ᏗᎩᎳ, ᎠᎴ ᎣᏆᎵ, ᎠᏈᎹᎵ, ᎠᎴ ᏏᏆ, ᎠᎴ ᎣᏆ, ᎠᎴ ᎭᏆᎳ, ᎠᎴ ᏦᏆ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏦᎧᏔᏂ ᏧᏪᏥ ᎨᏎᎢ. ᎾᏍᎩᏃ ᏓᏂᏁᎴᎢ ᎻᏌ ᎤᏓᎴᏅᏛ ᏎᏆ ᏥᏮᎦᏙ ᎾᏍᎩ ᏗᎧᎸᎬ ᎢᏗᏢ ᏨᏦᏓᎸ. ᎯᎠ ᎾᏍᎩ ᏎᎻ ᏧᏪᏥ, ᎾᏍᎩ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᎤᏠᏱ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏤᎵᎦ ᎦᏙᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᎤᏂᏠᏱ ᎨᏒᎢ. ᎯᎠ ᎾᏍᎩ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒ ᏃᏯ ᏧᏪᏥ ᎾᏍᎩ ᏚᎾᏁᏢᏔᏅᏒᎢ, ᎤᏂᏠᏱ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᏂᏠᏱ ᎨᏒ ᎡᎶᎯ ᏚᎾᏁᎳᏗᏙᎴ ᎠᎹᏱᎭ ᎨᏒ ᏚᏅᏬᏒ ᎠᏯᏙᎸᎢ 11 ᎠᎴ ᎡᎳᏂᎬ ᏌᏉᏉ ᎨᏎ ᎠᏂᏬᏂᏍᎬ, ᎠᎴ ᎤᏠᏱᏉ ᎨᏎ ᎠᏂᏁᎬᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᎾᎢᏒ ᏗᎧᎸᎬ ᏅᏓᏳᎾᏂᎩᏛ, ᎤᏬᏓᎸ ᎤᏂᏩᏛᏔᏁᎢ ᎾᎿ ᎦᏙᎯ ᏌᎾ ᏚᏙᎥᎢ; ᎠᎴ ᎾᎿ ᏚᏫᏁᎳᏕᎢ. ᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, Ꭷ, ᏗᏛᏓᏅᎯ ᏗᏙᏢᎾ, ᎠᎴ ᎣᏍᏛ ᏗᏗᏕᏴᏓ. ᏗᏛᏓᏅᎯᏃ ᏅᏯ ᏚᏂᏰᎸᏎᎢ, ᏩᏥᎳᎨᏃ ᏝᏬᏚ ᎤᏂᏰᎸᏎᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, Ꭷ, ᎢᏗᏚᎲᎦ, ᎠᎴ ᎢᏅ ᎢᎦᏘ ᎢᏓᏐᏯᎦ, ᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ ᎦᎸᎳᏗ ᏫᎦᏃᏠᏨᎭ; ᎠᎴ ᏗᎦᏙᏍᏙᏗ ᎢᏙᏢᎾ, ᎡᎶᎯᏰᏃ ᏂᎬᎾᏛ ᏱᏓᏗᎦᎴᏲᎩ. ᏱᎰᏩᏃ ᎤᏠᎠᏏᎴ ᎤᎦᏔᏂᎴ ᎦᏚᎲ ᎠᎴ ᎢᏅ ᎢᎦᏘ ᎤᎾᏐᏴᎢ, ᎾᏍᎩ ᏴᏫ ᏧᏁᏥ ᏧᎾᏐᏲᎴᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎯᎠ ᏴᏫ ᎤᏂᏠᏱᏉ, ᎠᎴ ᏂᎦᏗᏳ ᎤᏠᏱᏉ ᎠᏂᏬᏂᏍᎬᎢ: ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎤᎾᎴᏅᎭ ᎾᎾᏛᏁᎭ: ᎠᎴ ᎥᏝ ᎿᏉ ᎪᎱᏍᏗ ᎬᏩᏂᏲᏍᏙᏓᏁᏗ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᏧᎾᏓᏅᏖᎸ ᎢᏳᎾᏛᏁᏗᏱ. Ꭷ, ᎢᏓᏠᎠᎯ, ᎠᎴ ᎾᎿ ᏧᏓᎴᏅᏛ ᏫᏂᎨᏛᏂᏏ ᎠᏂᏬᏂᏍᎬᎢ, ᎾᏍᎩ ᏧᎾᏙᎵᏤᏗᏱ ᏂᎨᏒᎾ ᏓᎾᎵᏃᎮᏍᎬᎢ. ᎾᏍᎩᏃ ᏱᎰᏩ ᏚᏗᎦᎴᏕ ᎡᎶᎯ ᏂᎬᎾᏛ ᎾᎿ ᎤᎾᏓᎴᏁᎢ; ᎠᎴ ᎤᏂᏑᎵᎪᏤ ᎠᏂᏚᎲᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᏓᏓᎶᏂ ᏚᏙᎡᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏱᎰᏩ ᎾᎿ ᏧᏓᎴᏅᏛ ᏂᎦᏩᏁᎸ ᎡᎳᏂᎬ. ᏓᏂᏬᏂᏍᎬᎢ; ᎠᎴ ᎾᎿ ᎤᎾᏓᎴᏅ ᏱᎰᏩ ᏚᏗᎦᎴᏴ ᎡᎶᎯ ᏂᎬᎾᏛᎢ. ᎯᎠ ᎾᏍᎩ ᏎᎻ ᏧᏁᏢᏔᏅᏛ ᎨᏒᎢ; ᏎᎻ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎿᏉ ᎠᏆᏣ ᎤᏕᏁᎴᎢ, ᏔᎵ ᏫᏄᏕᏘᏴᎲ ᎣᏂ ᎠᎹᏱᎭ ᏥᏄᎵᏍᏔᏁᎢ; ᏎᎻᏃ ᎠᏆᏣ, ᎤᏕᏁᎸ ᎠᏏ ᎣᏂ ᎯᏍᎩᏧᏈ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᎠᏆᏣᏃ ᏦᎠᏍᎪᎯ ᎯᏍᎩᎦᎵ ᏄᏕᏘᏴᎮ ᎤᎴᏂᏙᎴ ᎿᏉ ᏎᎳ ᎤᏕᏁᎴᎢ. ᎠᏆᏣᏃ ᏎᎳ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏅᎩᏧᏈ ᏦᎢᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏎᎳᏃ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᎯᏆ ᎤᏕᏁᎴᎢ. ᏎᎳᏃ ᎯᏆ ᎤᏕᏁᎸ ᎠᏏ ᎣᏂ ᏅᎩᏧᏈ ᏦᎢᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᎯᏆᏃ ᏦᎠᏍᎪᎯ ᏅᎩᎦᎵ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏇᎵᎩ ᎤᏕᏁᎴᎢ. ᎯᏆᏃ ᏇᎵᎩ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏇᎵᎩᏃ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᎵᏳ ᎤᏕᏁᎴᎢ; ᏇᎵᎩᏃ ᎵᏳ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ, ᏔᎵᏧᏈ ᏐᎣᏁᎳᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᎵᏳᏃ ᏦᎠᏍᎪᎯ ᏔᎵ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏎᎳᎩ ᎤᏕᏁᎴᎢ. ᎵᏳᏃ ᏎᎳᎩ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏔᎵᏧᏈ ᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪ-ᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏎᎳᎩᏃ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏁᎰ ᎤᏕᏁᎴᎢ; ᏎᎳᎩᏃ ᏁᎰ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏔᎵᏧᏈ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏁᎰᏃ ᏐᎣᏁᎳᏦᏁ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏕᎳ ᎤᏕᏁᎴᎢ; ᏁᎰᏃ ᏕᎳ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᎠᏍᎪᎯᏧᏈ ᏐᎣᏁᎳᏚ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ. ᏕᎳᏃ ᎦᎵᏆᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᎡᏆᎻ, ᏁᎰ, ᎮᎳᏂᏃ Ꭼ ᏩᏕᏁᎴᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏕᎳ ᏧᏁᏢᏔᏅᏒᎢ; ᏕᎳ ᎡᏆᎻ, ᏁᎰ, ᎠᎴ ᎮᎳᏂ ᎬᏩᏕᏁᎴᎢ; ᎮᎳᏂᏃ ᎶᏗ ᎤᏕᏁᎴᎢ. ᎮᎳᏂᏃ ᎤᏲᎱᏎ. ᎠᎦᏔᎲ ᎤᏙᏓ ᏕᎳ ᎾᎿᏉ ᎤᏕᏅᎢ, ᎥᎵ ᏚᏙᎥ ᎠᏂᎨᎳᏗ ᎤᎾᏤᎵᎪᎯ. ᎡᏆᎻᏃ ᎠᎴ ᏁᎰ ᏚᎾᏕᏒᏁᎢ; ᎡᏆᎻ ᎤᏓᎵᎢ ᏎᎳᏱ ᏚᏙᎡᎢ; ᏁᎰᏃ ᎤᏓᎵᎢ ᎻᎵᎧ ᏚᏙᎡᎢ, ᏐᎳᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎮᎳᏂ, ᎻᎵᎧ ᎤᏙᏓ ᎠᎴ ᎢᏍᎧ ᎤᏙᏓ. ᎠᏎᏃ ᏎᎳᏱ ᏂᏓᎷᎸᎥᏍᎬᎾ ᎨᏎᎢ; ᎥᏝ ᎤᏪᏥ ᏰᎮᎢ. ᏕᎳᏃ ᏚᏘᏅᏎ ᎤᏪᏥ ᎡᏆᎻ, ᎠᎴ ᎶᏗ ᎾᏍᎩ ᎮᎳᏂ ᎤᏪᏥ, ᎾᏍᎩᏉ ᎤᏪᏥ ᎤᏪᏥ, ᎠᎴ ᏎᎳᏱ ᎤᏦᎯᏉ, ᎤᏪᏥᏉ ᎡᏆᎻ ᎤᏓᎵᎢ, ᎾᏍᎩᏃ ᎤᎾᏂᎩᏎ ᎥᎵ ᏚᏙᎥ ᎨᎳᏗ ᎤᎾᏤᎵᎪᎯ, ᎨᎾᏂ ᎦᏙᎯ ᏭᏂᎶᎯᏍᏗᏱ, ᎮᎳᏂᏃ ᏭᏂᎷᏤᎢ, ᎠᎴ ᎾᎿ ᎤᎾᏕᏁᎢ. ᏕᎳᏃ ᏔᎵᏧᏈ ᎯᏍᎩᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ:; ᏕᎳᏃ ᎮᎳᏂᏱ ᎤᏲᎱᏎᎢ. ᎠᏯᏙᎸᎢ 12 ᏱᎰᏩᏰᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏎ ᎡᏆᎻ, ᎯᏄᎪᎢ ᏣᏤᎵᎪᎯ ᎨᏒᎢ, ᎠᎴ ᏣᎪᏏ ᎨᏒ ᎩᏯᏓᏅᏏ, ᎠᎴ ᏣᏙᏓ ᎦᏁᎸ ᎭᏓᏅᎾ, ᎾᎿ ᏨᏓᎬᏯᏎᎮᎵ ᎦᏓ ᏗᎲ ᏫᎷᎩ; ᏂᎯᏃ ᏣᏁᏢᏔᏅᎯ ᎡᏉᎯᏳ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏅᏓᎦᏥᏴᏁᎵ, ᎠᎴ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᏚᏣᏙᎥ ᎡᏉᎯᏳ ᏅᏓᎬᏴᏁᎵ; ᎠᎴ ᏂᎯ ᎣᏍᏛ ᎢᎩᏴᏁᎯ ᎨᏎᏍᏗ ᏴᏫ. ᎠᎴ ᎣᏍᏛ ᏓᎦᏥᏁᎢᏍᏔᏂ ᎣᏍᏛ ᎨᏣᏁᎢᏍᏗᏍᎩ, ᎠᎴ ᎤᏲ ᏅᏓᏥᏪᏎᎵ ᎤᏲ ᎢᏣᏪᏎᎯ; ᏂᎯᏃ ᏅᏛᏂᏌᏂ ᏂᎦᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎡᎳᏂᎬ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ. ᎡᏆᎻᏃ ᎤᏂᎩᏎ ᎾᏍᎩᏯ ᏱᎰᏩ ᎤᏁᏤᎸᎢ; ᎠᎴ ᎶᏗ ᎤᏁᏅᏎᎢ; ᎡᏆᎻᏃ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎾᎯᏳ ᎮᎳᏂ ᏧᏂᎩᏒ. ᎡᏆᎻᏃ ᏎᎳᏱ ᎤᏓᎵᎢ ᎤᏘᏅᏎᎢ, ᎠᎴ ᎶᏗ ᎤᏅᏟ ᎤᏪᏥ, ᎠᎴ ᏂᎦᏛ ᎤᏂᏰᏐᏁ ᏧᎬᏩᎶᏗ ᎤᏂᏟᏌᏅᎢ, ᎠᎴ ᏂᎦᏛ ᏴᏫ ᏚᏂᏩᏛᎲ ᎮᎳᏂ; ᎠᎴ ᏅᎾᏂᎩᏎ ᎨᎾᏂ ᎦᏓ ᏗᎲ ᏩᏂᎦᏖᎢ; ᎠᎴ ᎨᎾᏂ ᎦᏓ ᏗᎲ ᏭᏂᎷᎮᎢ. ᎡᏆᎻᏃ ᎤᎶᏎ ᎾᎿ ᎦᏓ ᎠᎲ ᏭᎷᏤ ᏏᎩᎻ, ᎠᏓᏯᏡᎬ ᎼᎴ ᏧᏙᎢᏛ. ᎠᏂᎨᎾᏂᏃ ᎾᎿ ᎦᏓ ᎠᎲ ᏂᎯᏳ ᎠᏁᎮᎢ. ᏱᎰᏩᏃ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎡᏆᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᏣᏁᏢᏔᏅᏒ ᏓᎦᏥᏁᎵ ᎯᎠ ᎦᏙᎯ; ᎾᎿᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏁᏍᎨᎴ ᏱᎰᏩ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏄᏛᏁᎴᎢ. ᎠᎴ ᎾᎿ ᎤᏓᏅᏎᎢ ᎣᏓᎸ ᏇᏕᎵ ᏗᎧᎸᎬ ᎢᏗᏢ ᏭᎷᏤᎢ, ᎠᎴ ᎤᎵᏦᏔᏁᎢ, ᏇᏕᎵᏃ ᏭᏕᎵᎬ ᎢᏗᏢ ᎨᏎᎢ, ᎠᏱᏃ ᏗᎧᎸᎬ ᎢᏗᏢ; ᎾᎿᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏁᏍᎨᎴ ᏱᎰᏩ, ᎠᎴ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴ ᏚᏙᎥ ᎤᏁᎢᏍᏔᏁᎢ. ᎡᏆᎻᏃ ᎤᏂᎩᏎᎢ, ᏧᎦᎾᏮ ᎢᏗᏢ ᏚᏭᎪᏗᏗᏎᎢ. ᎾᎿᏃ ᎦᏙᎯ ᏚᎪᏄᎶᏎᎢ; ᎡᏆᎻᏃ ᎢᏥᏈᏱ ᏭᎶᏎᎢ ᎤᏪᏙᎸᏎ ᎾᎿᏂ; ᎤᏣᏘᏰᏃ ᏓᎪᏄᎴ ᎾᎿ ᎦᏙᎯ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎤᎷᏥᏗᏎ ᎢᏥᏈᏱ, ᎯᎠ ᎾᏍᎩ ᏄᏪᏎᎴ ᏎᎳᏱ ᎤᏓᎵᎢ, Ꭷ, ᎬᏂᏳᏉ ᏥᎦᏔᎭ ᏦᏚᎯᏳ ᎨᏒ ᎯᎨᏴ ᏤᏣᎧᏃᏗᏱ; ᎾᏍᎩᏃ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎿᏉ ᎢᏥᏈᏱ ᎠᏁᎯ ᎨᏣᎪᎲᎭ, ᎯᎠ ᏅᏛᏂᏪᏏ, ᎯᎠᎧᏂ ᎤᏓᎵᎢ; ᎠᏴᏃ ᎠᏎ ᏓᎬᎩᎵ, ᏂᎯᏍᎩᏂ ᎲᏅ ᏛᏂᏍᏆᏂᎪᏔᏂ. Ꭷ, ᎯᎠᏉ ᏂᏪᏒᎭ; ᎥᎩᏙᏉ ᎭᏛᏅᎭ; ᎾᏍᎩᏃ ᎣᏍᏛ ᎢᎬᏆᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏂᎯ ᏂᎦᎵᏍᏙᏔᏅᎭ; ᎠᏆᎵᏅᏙᏃ ᎬᏁᏍᏗ ᏂᎯ ᎢᏨᏂᏌᏛ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏆᎻ ᎿᏉ ᎢᏥᏈᏱ ᏭᎷᏨ, ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᎨᏴ ᎤᏂᎪᎲᎩ ᎤᏣᏘ ᎤᏬᏚᎯᏳ ᎨᏒᎢ. ᏄᏂᎬᏫᏳᏒᏃ ᎾᏍᏉ ᏇᎵᏲ ᏧᏤᎵᎦ ᎬᏩᎪᎮᎢ, ᎠᎴ ᎬᏩᎸᏉᏔᏁ ᏇᎵᏲ ᎠᎦᏔᎲᎢ; ᎠᎨᏴᏃ ᏇᎵᏲ ᎦᏁᎸ ᏩᎦᏘᏅᏍᏔᏁᎢ. ᏇᎵᏲᏃ ᎣᏍᏛ ᎤᏍᏆᏂᎪᏕ ᎡᏆᎻ ᎾᏍᎩ ᎠᎨᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ; ᎠᏫᏃ ᎠᎴ ᏩᎦ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ ᎠᏂᎲᏯ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ ᎠᏂᎩᏴ, ᎠᎴ ᎨᎻᎵ, ᏕᎤᏪᎧᎮᎢ. ᏱᎰᏩᏃ ᎤᏕᏯᏙᏔᏁ ᏇᎵᏲ ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᎤᏣᏘ ᎤᏕᏯᏙᏗ ᎤᏮᏔᏁᎢ, ᎤᏗᎦᎵᏍᏙᏗᏍᎨ ᏎᎳᏱ ᎡᏆᎻ ᎤᏓᎵᎢ. ᏇᎵᏲᏃ ᏭᏯᏅᎮ ᎡᏆᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᎦᏛᎦ ᎯᎠ ᏥᏂᏍᏋᎦ? ᎦᏙᏃ Ꮭ ᏱᏍᎩᏃᏁᎴ ᏣᏓᎵᎢ ᎨᏒᎢ? ᎦᏙᏃ ᎥᎩᏙᏉ ᎥᏣᏛᏅᎩ? ᏱᏂᎬᏆᏓᏴᏎᏰᏃ; Ꭷ, ᎬᏂᏳᏉ Ꮎ ᏣᏓᎵᎢ ᏥᎯᏯᏅ, ᎠᎴ ᏥᎭᏂᎩ. ᏇᎵᏲᏃ ᏚᏁᏤᎴ ᏧᏤᎵ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏚᏁᎢᏍᏓᏁᎴᎢ; ᎠᎴ ᎾᏍᎩ ᎢᎬᏩᏂᎩᏍᏔᏁ ᎤᏩᏒ ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ, ᎠᎴ ᏂᎦᏛ ᏧᏤᎵᎦ. ᎠᏯᏙᎸᎢ 13 ᎡᏆᎻᏃ ᎤᏂᎩᏎ ᎢᏥᏈᏱ, ᎤᏩᏒ, ᎠᎴ ᎾᏍᎩ ᎤᏓᎵᎢ, ᎠᎴ ᏂᎦᏛ ᏚᏓᏘᎾᎥᎢ. ᎠᎴ ᎶᏗ ᎾᏍᏉ ᎤᏁᏅᏎᎢ, ᏧᎦᎾᏮ ᎢᏗᏢ [ᎠᏂᎨᎾᏂ ᎤᎾᏤᎵᎪᎯ] ᏭᏂᎶᏎᎢ. ᎡᏆᎻᏃ ᎤᏣᏘ ᎤᏪᎿᎢᏳ ᎨᏎᎢ ᎦᎾᏝᎢ ᎨᏒ ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨᎢ. ᏕᎠᏂᎩᏎᎨᏃ ᏧᎦᎾᏮ ᏅᏓᏳᏪᏅᏛ ᏇᏕᎵ ᎢᏴᏛ, ᎾᎿ ᎢᎬᏱᏱ ᎤᎵᏦᏔᏅᎢ, ᏇᏕᎵ ᎠᎴ ᎠᏱ ᎾᎿ ᎠᏰᎵ ᎨᏒᎢ; ᎾᎿ ᎤᏪᎧᏅ ᎠᏏᎸ-ᎨᎳᏍᏗᏱ, ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᎤᏬᏢᏅᎢ; ᎡᏆᎻᏃ ᎾᎿ ᏱᎰᏩ ᏚᏙᎥ ᎤᏁᎢᏍᏔᏁ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ. ᎶᏗᏃ ᎾᏍᏉ, ᎡᏆᎻ ᏧᏁᏅᏎᎢ, ᎠᏫ, ᎠᎴ ᎦᎾᏝᎢ ᏓᏘᏁᎮᎢ, ᎠᎴ ᏗᎦᎵᏦᏙᏗ ᏕᎦᏁᎮᎢ. ᎦᏙᎯᏃ ᎥᏝ ᏰᎵ ᏱᏂᎨᏎ ᎾᎿ ᎢᏧᎳᎭ ᎤᎾᏕᏗᏱ; ᎤᏣᏘᏰᏃ ᏧᎬᏩᎶᏗ ᎤᏂᏍᏆᏂᎪᏕᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏰᎵ ᎢᏧᎳᎭ ᎬᏩᎾᏕᏗ ᏱᎨᏎᎢ. ᎠᎴ ᏓᎾᏘᏲᎯᎮ ᎡᏆᏂ ᎦᎾᏝᎢ ᏗᎬᏩᎦᏘᏕᎯ, ᎠᎴ ᎶᏗ ᎦᎾᏝᎢ ᏗᎬᏩᎦᏘᏕᎯ; ᎠᏂᎨᎾᏂᏃ ᎠᎴ ᎠᏂᏇᎵᏏ ᎾᎿ ᎾᎯᏳ ᎾᏁᎮᎢ. ᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎶᏗ, ᏞᏍᏗᏉ ᎩᎾᏘᏲᏄᎩ ᎠᏴ, ᎠᎴ ᎦᎾᏝᎢ ᏗᎨᎩᏂᎦᏘᏕᎯ ᏞᏍᏗ ᎤᎾᏘᏲᎸᎩ; ᏗᎾᏓᏅᏟᏉᏰᏃ. ᏝᏍᎪ ᏂᎬ ᎦᏙᎯ ᏱᏣᏜᏅᏓᏕᎭ ᏂᎯ7 Ꭷ, ᎭᏓᏓᎴᏓᏉᏃ ᎠᏂ ᎨᎥᎢ. ᎢᏳᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᏱᏂᏣᏛᏁᏔᏅ, ᎠᏏ ᎠᎦᏘᏏ ᎢᏗᏢ ᏱᏫᏂᎦᏛᏁᏓ; ᎢᏳ ᎠᎴ ᏓᎦᏘᏏ ᎢᏗᏢ ᏱᏫᏣᎶᏒ, ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᏱᏫᏥᎶᎢ ᎠᏴ. ᎶᏗᏃ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎤᎪᎮ ᏂᎦᏛ ᎤᏬᏓᎸ ᏦᏓᏂ, ᎾᏍᎩ ᏂᎬᎾᏛ ᏦᏏᏳ ᏕᏅᏪᏰᎢ, ᎾᏍᎩ ᎠᏏ ᏱᎰᏩ ᏂᏓᏲᏍᏗᏍᎬᎾ ᏥᎨᏎ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ, ᎾᏍᎩᏯ ᏱᎰᏩ ᎤᏫᏒᏅᎢ, ᎠᎴ ᎢᏥᏈᏱ ᎾᏍᎩᏯᎢ ᎠᏐᏩ ᏥᏮᎦᏙᎢ. ᎶᏗᏃ ᎤᏑᏰᏎ ᏂᎦᏛ ᎦᏙᎯ ᏦᏓᏂ ᎾᎥᎢ; ᎠᎴ ᎶᏗ ᏗᎧᎸᎬ ᎢᏗᏢ ᏭᏂᎩᏍᏔᏁᎢ; ᎠᎴ ᏚᎾᎦᎴᏅᎮᎢ. ᎡᏆᎻ ᎨᎾᏂ ᎡᎮᎢ, ᎶᏗᏃ ᎤᏬᏓᎸ ᏕᎦᏚᎲ ᎡᎮᎢ, ᎠᎴ ᏐᏓᎻ ᎢᏗᏢ ᏫᏚᎦᏖ ᏚᎵᏦᏛᎢ. ᏐᏓᎻᏃ ᎠᏁᎯ ᎤᏂᏁᎫᎯᏳ ᎨᏎᎢ, ᎠᎴ ᎤᏣᏘ ᎠᏂᏍᎦᎾᎯᏳ ᎨᏎ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᎾᏍᎩ ᎦᏳᎳ ᎿᏉ ᎶᏗ ᏂᏚᎾᎦᎴᏅᎨᎢ, Ꭷ, ᏔᎧᏅᎦ ᎾᎿ ᎯᏙᎬ ᎭᎴᏅ, ᎯᎦᏖᎾᎦ ᏧᏴᏢ ᎢᏗᏢ ᎠᎴ ᏧᎦᎾᏮ ᎢᏗᏢ, ᎠᎴ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎠᎴ ᏭᏕᎵᎬ ᎢᏗᏢ; ᏂᎦᏛᏰᏃ ᎦᏙᎯ ᏥᎪᏩᏗᎭ, ᏂᎯ ᏓᎬᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ, ᏂᎪᎯᎸ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎪᏍᏚ ᏥᏄᏧᏈᏍᏗ ᎦᏙᎯ ᎾᏍᎩᏯ ᏅᏓᎦᏥᏴᏁᎵ; ᎾᏍᎩᏃ ᏴᏫ ᎢᏳᏃ ᎬᏩᏎᎰᎲᏍᏗ ᎨᏎᏍᏗ ᎪᏍᏚ ᎦᏙᎯ ᎦᎳᎨᏴᎢ, ᎿᏉ ᎾᏍᏉ ᏰᎵ ᏗᎬᏎᎰᎲᏍᏗ ᎨᏎᏍᏗ ᏣᏁᏢᏔᏅᏛ ᎨᏒᎢ. ᏔᎴᎲᎦ, ᎮᏓ ᏂᎦᏅᎯᏒ ᎠᎴ ᎾᏯᏛᎥ ᎯᎠ ᎦᏙᎯ; ᏂᎯᏰᏃ ᏓᎬᏁᎵ. ᎡᏆᎻᏃ ᎤᎲᏎ ᎤᎵᏦᏛᎢ ᎠᎴ ᎠᏓᏯᏕᏡᎬᎢ ᎹᎻᎵ ᏧᏤᎵᎦ ᏭᏕᏂᎴᎢ, ᎾᏍᎩ ᎯᏆᏂ ᏥᏚᏙᎥ, ᎠᎴ ᎾᎿ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏁᏍᎨᎮᎴ ᏱᎰᏩ. ᎠᏯᏙᎸᎢ 14 ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᏣᏁᎮ ᎠᎻᎴᏇᎵ ᎤᎬᏫᏳᎯ ᏌᎾ ᏚᏙᎥᎢ, ᎡᎵᏲᎩ ᎤᎬᏫᏳᎯ ᎡᎳᏌ ᏚᏙᎥᎢ, ᎩᏓᎴᎣᎹ ᎤᎬᏫᏳᎯ ᎢᎳᎻ ᏚᏙᎥᎢ, ᎠᎴ ᏔᏓᎵ ᎤᎬᏫᏳᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎦ; ᎾᏍᎩ ᎯᎠ ᏓᎿᏩ ᏄᏅᏁᎴ ᏈᎳ ᎤᎬᏫᏳᎯ ᏐᏓᎻ, ᎠᎴ ᏆᏌ ᎤᎬᏫᏳᎯ ᎪᎹᎵ, ᎠᎴ ᏂᎾᏈ ᎤᎬᏫᏳᎯ ᎠᏓᎹ, ᎠᎴ ᏎᎻᏆ ᎤᎬᏫᏳᎯ ᏤᏉᎻ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏈᎳ ᏚᏙᎥ ᎾᏍᎩ ᏐᏩ ᏥᎩ. ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎤᎾᎵᎪᏁ ᏏᏗᎻᏱ ᎤᎨᏓᎵᏴᎢ, ᎾᏍᎩ ‾ᎠᎹ ᎥᏓᎸ ᏥᎩ. ᏔᎳᏚ ᏧᏕᏘᏴᏛ ᎩᏓᎴᎣᎹ ᏚᎾᏁᎶᏕᎢ, ᏦᎢᎦᏚᏏᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᏚᏂᎦᏘᎸᏎᎢ. ᏂᎦᏚᏏᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏂᎷᏤ ᎩᏓᎴᎣᎹ ᎠᎴ ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏧᎾᎵᎪᏎᎢ, ᎠᎴ ᏚᏂᏎᎪᎩᏎ ᎠᏂᎵᏇ ᎾᎿ ᎠᏍᏘᎶᏗ-ᎧᎾᎻ ᏚᏙᎥᎢ, ᎠᎴ ᎠᏂᏑᏏ ᎾᎿ ᎭᎻ ᏚᏙᎥᎢ, ᎠᎴ ᎠᏂᎢᎻ ᎾᎿ ᏌᏈ-ᎩᎵᏯᏕᎻ ᎦᏙᎥᎢ, ᎠᎴ ᎠᏂᎰᎳ ᎾᎿ ᎣᏓᎸ ᎤᎾᏤᎵ ᏏᎠ ᎦᏙᎥᎢ ᏫᎬᏍᏗ ᎡᎵ-ᏆᎳ, ᎾᏍᎩ ᎢᎾᎨ ᎾᎥ ᏥᎩ. ᎢᎤᎾᏨᏎᏃ ᎠᎴ ᏗᏧᎪᏙᏗᏱ-ᎦᏄᎪᎬᎢ ᏗᎤᏂᎷᏤᎢ, ᎾᏍᎩ ᎨᏗᏏ ᏥᏚᏙᎥ, ᎠᎴ ᏚᏂᏎᎪᎩᏎ ᏂᎬᎾᏛ ᎠᏂᎠᎹᎴᎩ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎡᎼᎵ ᎾᏍᎩ ᎭᏏᏐᎥᏓᎹ ᏣᏁᎮᎢ. ᎿᏉᏃ ᎤᏁᏅᏎ ᏐᏓᎻᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎪᎹᎵᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎠᏓᎹᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏤᏉᎻᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏈᎳ ᏚᏙᎥᎢ, ᎾᏍᎩ ᏐᏩ ᏥᏚᏙᎥ; ᎾᎿᏃ ᏏᏗᎻ ᎤᎨᏓᎵᏴᎢ ᏚᎾᏟᏴᎮᎢ, ᎾᏍᎩ ᏱᏓᎴᎣᎹ ᎤᎬᏫᏳᎯ ᎢᎳᎻ ᏚᎾᏟᏴᎮᎢ, ᎠᎴ ᏔᏓᎵ ᎤᎬᏫᏳᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎦ, ᎠᎴ ᎠᎻᎴᏇᎵ ᎤᎬᏫᏳᎯ ᏌᎾ ᏚᏙᎥᎢ, ᎠᎴ ᎡᎵᏲᎩ ᎤᎬᏫᏳᎯ ᎡᎳᏌ ᏚᏙᎥᎢ; ᏅᎩ ᎢᏯᏂᏛ ᎤᏂᎬᏫᏳᎯ ᎠᏂᏗᏢᏃ ᎯᏍᎩ. ᎤᎨᏓᎵᏰᏃ ᏏᏗᎻ ᎤᎧᎵᏨᎯ ᎨᏎ ᏓᏔᎴᏒ ᏩᏥᎳᎨ ᎤᏂᎴᏍᏗᏱ; ᎤᏂᎬᏫᏳᎯᏃ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ ᎠᏁᎯ ᎤᎾᎵᏎᎢ, ᎠᎴ ᎾᎿ ᏚᏂᎸᏤᎢ; ᎤᎾᎵᏃᎯᏴᎯᏃ ᏦᏓᎸ ᏭᎾᎵᏍᏔᏁᎢ. ᎠᎴ ᏂᎦᏛ ᏧᎬᏩᎶᏗ ᏚᏂᏬᏅᎰᏁ ᏐᏓᎻᏱ ᎠᎴ ᎪᎹᎵᏱ, ᎠᎴ ᏂᎦᏛ ᎤᎾᎵᏍᏓᏴᏗ, ᎢᎤᏁᏅᏎᏃ. ᎠᎴ ᎶᏗ ᎤᏂᏂᏴᎮᎢ, ᎾᏍᎩ ᎡᏆᎻ ᏗᎾᏓᏅᏟ ᎤᏪᏥ, ᎾᏍᎩ ᏐᏓᎻᏱ ᏤᎮᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᎲ ᎤᏂᎩᏎᎢ, ᎤᎾᏂᎩᏎᏃ. ᎠᏏᏴᏫᏃ ᎤᏓᏗᏫᏎᎸᎯ ᎤᎷᏤᎢ ᎠᎴ ᎤᏃᏁᎴ ᎡᏆᎻ ᎠᏈᎷ; ᎾᏍᎩᏰᏃ ᎠᏓᏯ-ᏕᏡᎥ ᎡᎥᎢ ᎹᎻᎵ ᎾᏍᎩ ᎡᎼᎵ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎡᏍᎪᎵ ᎠᎴ ᎡᎾ ᎠᎾᎵᏅᏟ ᏥᎨᏎᎢ; ᎾᏍᎩᏃ ᎯᎠ ᎤᎾᎵᎪᏎ ᎡᏆᎻ. ᎡᏆᎻᏃ ᎤᏛᎦᏅ ᎤᏫᏅ ᎠᏥᏴᎩᏅᎢ, ᎤᎾᎵᏍᎦᏍᏙᏗ ᏚᏁᎴ [ᏧᏅᏏᏓᏍᏗ] ᏧᏪᏲᏅᎯ, ᎦᏁᎸᏉ ᏧᎾᏛᏒᎯ, ᏦᎢᏧᏈ ᏁᎳᏚᏃ ᎢᏯᏂᏛ, ᎠᎴ ᏚᎨᎲᏎ ᏕᏂᏱ ᎢᏴᏛ. ᏔᎵᏃ ᏄᎾᏓᏕ ᎤᏩᏒ ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᏒᏃᏱ ᎨᏒᎢ, ᎠᎴ ᏚᏂᏎᎪᎩᏎᎢ, ᎠᎴ ᏚᏂᎨᎥᏎ ᎰᏆ ᎢᏴᏛ, ᎾᏍᎩ ᏕᎹᏍᎦ ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᏥᏫᏚᏳᎪᏗ. ᎠᎴ ᎢᎤᏲᎸᏁ ᏂᎦᏛ ᏧᎬᏩᎶᏗ, ᎠᎴ ᎾᏍᏉ ᎶᏗ ᎤᏫᏅ ᎢᎤᏘᏃᎴᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏧᎬᏩᎶᏗ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎨᏴ, ᎠᎴ ᏴᏫ ᏚᏘᏃᎴᎢ. ᎤᎬᏫᏳᎯᏃ ᏐᏓᎻᏱ ᏚᏠᏒᏎ, ᏅᏛᎤᏨᏛ ᎾᏍᎩ ᏫᏚᎰᏅᎯ ᎩᏓᎴᎣᎹ ᏓᏘᏁᎲᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎤᏁᏙᎸᎯ, ᎾᎿ ᏌᏇ ᎤᎨᏓᎵᏴᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎨᏓᎵᏴ ᏥᎩ. ᎺᎵᎩᏌᏕᎩᏃ ᎤᎬᏫᏳᎯ ᏎᎳᎻᏱ ᎤᏲᎴ ᏭᏚ ᎠᎴ ᎩᎦᎨ ᎠᏗᏔᏍᏗ; [ᎺᎵᎩᏌᏕᎩᏃ] ᎠᏥᎸᎨᎶᎯ ᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᏤᎵᎦ. ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᏁᎳᏅᎯ, ᎣᏍᏛ ᎢᏳᏛᏁᏗ ᎨᏎᏍᏗ ᎡᏆᎻ, ᎾᏍᎩ ᏧᏤᎵᎦ ᏥᎩ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ. ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎾᏍᎩ ᏥᏣᎵᏍᎪᎸᏓᏏ ᏘᏎᎪᎩᏍᏗᏱ ᎨᏣᏍᎦᎩ. ᎤᏁᎸᏁᏃ ᏂᎦᏛ ᏧᎬᏩᎶᏗ [ᎤᏓᏬᏅᏛ ᎠᏰᎲᎢ] ᎠᏍᎪᎯᏁ ᎪᎶᎴᏛ. ᎤᎬᏫᏳᎯᏃ ᏐᏓᎻᏱ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᏴᏫᏉ ᎠᏴ ᏗᏍᎩᏲᎯᏏ, ᏂᎯᏃ ᏧᎬᏩᎶᏗ ᎯᎩᏐᎾ. ᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ ᏐᏓᎻᏱ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ, ᎾᏍᎩ ᎤᏤᎵᎦ ᏥᎩ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ, ᏥᏯᏎᎵᏓᏁᎸ, ᎾᏍᎩ ᎠᎩᎩᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏍᏘᏉ, ᎠᎴ ᎠᎳᏑᎶ ᎪᎸᏌᏛᏗ, ᎠᎴ ᎪᎱᏍᏗ ᏣᏤᎵ ᎨᏒ ᎠᎢᎩᏍᏗᏱ ᏂᎨᏒᎾ, ᎯᎠᏰᏃ ᏱᏅᎯᏫ, ᎠᏆᎻ ᏥᏰᏅᎢᏍᏔᏅ; ᎯᎠᏍᎩᏂᏃᏅ ᎤᏩᏒ ᎾᏍᎩ ᎠᏂᏫᏅ ᎤᎾᎵᏍᏓᏴᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎾᏍᏉ ᎠᏂᏍᎦᏯ ᎣᎨᏅᏛ, ᎾᏍᎩ ᎡᎾ, ᎡᏍᎪᎵ, ᎠᎴ ᎹᎻᎵ; ᎾᏍᎩ ᏩᏂᎩ ᎤᏂᎩᏍᏗ ᎨᏒ ᎢᎦᎢ. ᎠᏯᏙᎸᎢ 15 ᎯᎠᏃ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ ᏱᎰᏩ ᎤᏁᏨᎯ ᎤᎷᏤᎴ ᎡᏆᎻ ᎤᏁᎳᏫᏎᎲᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏞᏍᏗ ᏱᎾᏰᏍᎨᏍᏗ ᎡᏆᎻ; ᎠᏴᏰᏃ ᏣᎬᏑᎶᏙᏗ ᎠᎴ ᎤᏣᏔᏅᎯ ᎡᏣᎫᏴᏓᏁᏗ ᏥᎩ. ᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᏣᏁᎳᏅᎯ, ᎦᏙ ᏓᏍᎩᏁᎵ, ᎬᏂᏳᏰᏃ ᎠᏇᏥ ᎥᏝ ᏰᎭ, ᎠᎴ ᎯᎠ ᎢᎵᎡᏌ ᏕᎹᏍᎦ ᎡᎯ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎢᎩ ᏥᏁᎸᎢ. ᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏴ ᎨᏒ ᎥᏝ ᎠᏇᏥ ᏱᏍᎩᎧᏁᎸ; ᎠᎴ ᎬᏂᏳᏉ ᏥᏁᎸ ᎤᏕᏅᎯ ᏓᏳᏘᏯᏍᏓᏁᎵ ᎠᎩᎾᎥᎢ. ᎠᎴ ᎬᏂᏳᏉ, ᏱᎰᏩ ᎤᏁᎲᎯ ᎤᎷᏤᎴ ᎡᏆᎻ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎥᏝᏍᎩᏃ ᎯᎠ ᎾᏍᎩ ᎤᏘᏯᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᏣᎾᎥᎢ; ᏨᏎᏍᎩᏂ ᎯᏰᎸ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏘᏯᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏣᎾᎥᎢ. ᏙᏱᏃ ᏭᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎸᎳᏗ ᎢᏗᏢ ᏫᏔᎧᏅᎦ, ᎠᎴ ᏔᏎᎦ ᏃᏈᏏ, ᎢᏳᏃ ᏰᎵ ᏗᎨᏣᏎᎰᎲᏍᏗ ᎨᏎᏍᏗ; ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᏄᏂᏧᏈᏍᏕᏍᏗ ᏣᏁᏢᏔᏅᎯ. ᎡᏆᎻᏃ ᎤᏬᎯᏳᏁ ᏱᎰᏩ; ᎾᏍᎩᏃ ᏚᏳᎪᏛ ᏥᏄᏛᏁᎶ ᎤᏰᎸᎾᏁᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏱᎰᏩ ᎥᎵ ᎠᏂᎨᎳᏗ ᎤᎾᏤᎵᎪᎯ ᏅᏓᎬᏄᎪᏫᏒᎯ, ᎯᎠ ᎾᏍᎩ ᎦᏙᎯ ᎬᏁᏗᏱ ᏣᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ ᏱᎰᏩ, ᎦᏙ ᏓᎦᎴᎣᎯᏍᏔᏂ ᎯᎠ ᎾᏍᎩ ᎠᏆᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ? ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᏫᏗᏍᎩᏯᏅᏏ ᏩᎦ ᎠᎩᏏ ᏦᎢ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎠᏫ ᎠᎭᏄᎸᎯ ᎠᎩᏏ ᏦᎢ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎤᏃᏕᏅ ᎠᏨᏯ ᏦᎢ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎫᎴ ᏗᏍᎪᏂᎯ, ᏬᏱᏃ ᎠᏛ. ᎯᎠᏃ ᎾᏍᎩ ᏂᎦᏛ ᏚᏘᏃᎮᎴᎢ, ᎠᎴ ᎠᏰᎵ ᏔᎵ ᏂᏚᏪᏕᎢ ᎠᎴ ᏧᎵᎬᎭᎷᏴᎯ ᏧᏦᏟᎭ ᏂᏚᏩᏁᎴᎢ; ᏥᏍᏆᏍᎩᏂ ᎥᏝ ᏱᏚᎬᎭᎷᏰᎢ. ᎠᏂᏃᎯᎵᏙᎯᏃ ᎡᎳᏗ ᏄᎾᏛᏁᎸ ᎾᎿ ᎤᎾᎩᎸᏂᎸ, ᎡᏆᎻ ᏚᎨᎯᏙᎴᎢ. ᎿᏉᏃ ᏅᏙ ᏭᏕᎵᎨᎢ ᎤᏣᏘ ᎠᏍᏓᏯ ᎤᎸᏁ ᎡᏆᎻ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏣᏘ ᎤᏍᎦᏎᏗ ᎤᎵᏏᎩ ᎤᏭᏢᏂᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎡᏆᎻ, ᎤᏙᎯᏳᎯᏯ ᎯᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎠᏁᏙᎯ ᎨᏎᏍᏗ ᎾᎿ ᎦᏙᎯ ᎤᎾᏤᎵ ᏂᎨᏒᎾ, ᎠᎴ ᎾᎿ [ᎠᏁᎯ] ᏙᏓᎬᏩᏂᎾᏢᏂ; ᎠᎴ ᏅᎩᏧᏈ ᏧᏕᏘᏴᏛ ᏙᏓᎬᏩᏂᎩᎸᏂ. ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᏴᏫ ᏥᏙᏓᎬᏩᏂᎾᏢᏂ, ᏙᏓᎦᏥᏳᎪᏓᏁᎵ; ᎣᏂᏃ ᎢᏴᏛ ᏛᏂᏄᎪᏥ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᏂᏰᎮᏍᏗ. ᏂᎯᏃ ᏅᏩᏙᎯᏯᏛ ᏗᏣᎦᏴᎵᎨ ᏗᏁᎲ ᏮᏘᎶᏏ; ᎠᎴ ᏣᎦᏴᎳᏥᏌᏛ ᎨᏎᏍᏗ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏣᏓᏅᏖᏍᏗ ᏓᏰᏣᏂᏌᏂ. ᎠᏎᏃ ᏅᎩᏁ ᎤᎾᏓᏁᏟᏴᏛ ᎨᏎᏍᏗ ᏔᎵᏁ ᎠᏂ ᏛᎠᏂᎷᏥᎵ; ᎠᏂᎡᎼᎵᏰᏃ ᎠᏂᏍᎦᏅ ᎥᏝ ᎠᏏ ᎤᎧᎵᏨᎯ ᏱᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᏅᏙ ᏭᏕᎵᏨ, ᎠᎴ ᎿᏉ ᎤᎵᏍᎨᎢ, ᎬᏂᏳᏉ ᏧᎦᏒᏍᏗ ᎥᏘ ᏗᎦᏚᏗᏱ, ᎠᎴ ᎠᏨᏍᏙᏗ ᎬᏨᏍᏗ ᎾᏍᎩ ᎤᎶᏎ ᎠᏰᎵ ᎾᎿ ᎠᎬᎭᎷᏴᎯ ᏓᎲᎢ. ᎾᎯᏳᏉᏃ ᎢᎦ ᏱᎰᏩ ᎧᏃᎮᏛ ᏚᏠᎯᏍᏓᏁᎴ ᎡᏆᎻ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎦᏥᎥᏏ ᎯᎠ ᎦᏙᎯ, ᎢᏥᏈᏱ ᎡᏉᏂ ᎨᏴ ᏅᏓᏳᏓᎴᏅᏛ ᎤᏔᏅ ᎡᏉᏂ ᏂᎨᏴ ᏩᏍᏗ, ᎾᏍᎩ ᏳᏇᏗ ᎡᏉᏂ ᏥᎩ. ᎾᏍᎩ ᎠᏂᎨᏂ, ᎠᎴ ᎠᏂᎨᏂᏏ, ᎠᎴ ᎠᏂᎧᏗᎼᏂ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᏇᎵᏏ, ᎠᎴ ᎠᏂᎵᏇᎻ, ᎠᎴ ᎠᏂᎡᎼᎵ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎦᎦᏏ, ᎠᎴ ᎠᏂᏤᏊᏏ (ᎤᎾᏤᎵᎪᎯ.) ᎠᏯᏙᎸᎢ 16 ᏎᎳᏱᏃ ᎡᏆᎻ ᎤᏓᎵᎢ, ᎥᏝ ᏗᏂᏲᎵ ᏱᏚᎾᏄᎪᏫᏎᎮᎢ; ᎤᏪᎧᎮᏃ ᎠᏛ ᎤᏅᏏᏓᏍᏗ ᎢᏥᏈᏱ ᎤᏕᏅᎯ ᎮᎦ ᏧᏙᎢᏛ. ᏎᎳᏱᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᎬᏂᏳᏉ, ᏱᎰᏩ ᎠᎩᎾᎯᏍᏓᏁᎸ ᏗᏆᎷᎸᏗᏱ; Ꭷ ᎭᏓᏳᎦ ᎠᏛ ᏥᏅᏏᏓᏍᏗ; ᎾᏍᎩᏃ ᏗᏂᏲᎵ ᏗᎬᎩᎾᏄᎪᏫᏎᏗ ᏱᏂᎦᎩ. ᎡᏆᎻᏃ ᎤᏛᏓᏍᏓᏁᎴ ᏎᎳᏱ ᎧᏁᎬᎢ. ᏎᎳᏱᏃ ᎡᏆᎻ ᎤᏓᎵᎢ, ᏭᏯᏅᎮ ᎮᎦ ᎤᏅᏏᏓᏍᏗ ᎢᏥᏈᏱ ᎤᏕᏅᎯ, ᎾᏍᎩ ᎡᏆᎻ ᎠᏍᎪᎯ ᏧᏕᏗᏴᏛ ᎬᏩᏕᏂᎸᎯ ᏂᎨᏎ ᎨᎾᏂ ᎦᏙᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏰᎯ ᎡᏆᎻ ᎤᏪᎧᏁᎴ ᎤᏓᏴᏍᏗ. ᎤᏓᏴᏎᏃ ᎮᎦ, ᎠᎴ ᎤᏁᎵᏤ ᎮᎦ; ᎮᎦᏃ ᎤᏙᎴᎰᏒ ᎤᏁᎵᏨ ᎤᎾᏝᎢ ᎦᏂᏆᏘᎯ ᏄᎵᏍᏔᏁᎢ. ᏎᎳᏱᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᏂᏚᏳᎪᏛᎾ ᎾᏆᏛᏁᎸ ᏂᎯ ᏅᏂᏌ; ᏥᏅᏏᏓᏍᏗ ᎬᏴᎧᏁᎸ ᏣᏓᏰᏍᏗ; ᎦᏁᎵᏒᏃ ᎤᏙᎴᎰᏒ, ᎿᏉ ᎠᎩᏂᏆᏘᎯ ᏄᎵᏍᏔᏅᎩ; ᏱᎰᏩ ᎠᏗᎾ ᎠᏴ ᏂᎯᏃ ᏫᏗᎩᏄᎪᏓᏏ. ᎠᏎᏃ ᎡᏆᎻ ᎯᎠ ᏄᏪᏎᎴ ᏎᎳᏱ, ᎬᏂᏳᏉ ᏣᏒᎦᎸ ᏣᏚᎵᏍᎬ ᎢᎯᏴᏁᏗᏱ; ᎭᏓᏅᏖᏍᎬᏉ ᏂᏴᎦ. ᎿᏉᏃ ᏎᎳᏱ ᎬᏍᎦᎢᏍᏓᎩ ᏄᏩᏁᎸ ᎤᎵᏘᎡᎴᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎤᏩᏛᎮ ᎦᎸᎪᎬᎢ ᎢᎾᎨᎢ, ᎾᏍᎩ ᏅᏃᎱᎶᏗ ᏌᎵᏱ ᏫᎦᏅᏅ ᏥᎦᏄᎪᎦ. ᎯᎠᏃ ᏄᏪᏎ ᎾᏍᎩ, ᎮᎦ, ᏎᎳᏱ ᏣᏅᏏᏓᏍᏗ, ᎭᏢ ᏘᎶᎯ? ᎠᎴ ᎭᏢ ᏮᏘᎶᏏ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏎᎳᏱ ᎠᎩᏅᏏᏓᏍᏗ ᏥᏯᎵᏗᎡᎭ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏥᎭᏅᎾᏉ, ᏣᏅᏏᏓᏍᏗ ᏥᏫᎯᎷᏥᏏ, ᎠᎴ ᏥᏫᏙᎯᏯᏓᏲᎯᏏᏉ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎤᏣᏔᏅᎯ ᏓᎦᏥᎪᏙᎯᏍᏔᏂ, ᎾᏍᎩ ᎥᏝ ᏰᎵ ᏗᎬᏎᎰᎲᏍᏗ ᏱᎨᏎᏍᏗ ᏄᏂᏧᏈᏍᏕᏍᏗ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎯᏁᎵᏛ, ᎠᎴ ᎠᏧᏣ ᏘᎾᏄᎪᏫᏏ, ᎠᎴ ᎢᏏᎺᎵ ᏙᏘᏲᎢ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᎰᏩ ᏣᏛᎦᏁᎸ ᎤᏪᎵᎯᏍᏗ ᏂᏣᎵᏍᏓᏁᎲᎢ. ᎠᎴ ᏗᎦᎵᎠᏅᎯᏛ ᎬᏘᏌᏘ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᎠᏍᎦᏯ; ᎾᏂᎥ ᏴᏫ ᏗᎦᏘᎴᎩ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᏗᎬᏩᎦᏘᎴᎩ ᎨᏎᏍᏗ; ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᏄᎾᏛᏅ ᎾᎥ ᎡᎮᏍᏗ. ᎠᎴ ᎯᎠ ᏄᏍᏕ ᏚᏬᎡ ᏱᎰᏩ ᎾᏍᎩ ᎤᏬᏁᏔᏅᎯ, ᏂᎯ ᏣᏁᎳᏅᎯ ᏍᎩᎪᏩᏘᏍᎩ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏥᎪ ᎾᏍᏉ ᎠᏴ ᎠᏂ ᏕᏥᏯᎦᏅᎦ ᎠᎩᎪᏩᏘᏍᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎠᎹ ᎦᏁᎲᎢ ᎠᏔᎴᏒ ᎳᎭᎢᎶᎢ ᏚᏃᎡᎢ; ᎬᏂᏳᏉ, ᎾᏍᎩ ᎨᏚᏏ ᏇᎴᏗᏃ ᎠᏰᎵ ᎠᎹ ᏥᎦᏁᎭ. ᎮᎦᏃ ᎤᎾᏄᎪᏫᏎᎴ ᎡᏆᎻ ᎠᏧᏣ; ᎡᏆᎻᏃ ᎤᏪᏥ ᎾᏍᎩ ᎮᎦ ᏧᎾᏄᎪᏫᏎᎴ ᎢᏏᎺᎵ ᏚᏬᎡᎢ. ᎡᏆᎻᏃ ᏁᎳᏍᎪᎯ ᏑᏓᎵᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎮᎦ ᎢᏏᎺᎵ ᏧᎾᏄᎪᏫᏎᎴ ᎡᏆᎻ. ᎠᏯᏙᎸᎢ 17 ᎡᏆᎻᏃ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᏱᎰᏩ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎡᏆᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏫᎾᏍᏛᎾ ᎠᏩᎵᏂᎩᏗᏳ ᎠᏆᏁᎳᏅᎯ; ᎠᏴ ᏥᎦᏔᎲ ᎭᎴᏂᏙᎮᏍᏗ, ᎠᎴ ᏂᏍᎦᏅᎾ ᎨᏎᏍᏗ. ᎠᎴ ᎧᏃᎮᏛ ᏙᏓᎬᏯᏠᎢᏍᏓᏁᎵ, ᎠᎴ ᎤᏣᏔᏅᎯ ᏓᎬᎪᏙᎯᏍᏔᏂ. ᎡᏆᎻᏃ ᎤᏯᏍᏚᏎᎢ; ᎤᏁᎳᏅᎯᏃ ᎤᎵᏃᎮᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴᏍᎩᏂ ᎨᏒᎢ, ᎬᏂᏳᏉ ᎧᏃᎮᏛ ᏕᎬᏯᏠᎢᏍᏓᏁᎸ, ᏂᎯᏃ ᎤᏂᏣᏘ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏘᎦᏴᎵᎨ ᎢᏣᎵᏍᏙᏗ ᎨᏎᏍᏗ. ᎥᏝ ᎠᎴ ᎿᏉ ᎡᏆᎻ ᏰᏦᏎᎮᏍᏗ, ᎡᏆᎭᎻᏍᎩᏂ ᏕᎶᏙᎡᏍᏗ; ᎤᏂᏣᏘᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏘᎦᏴᎵᎨ ᏂᎬᏴᎦ. ᎠᎴ ᎤᏣᏔᏅᎯ ᏣᏁᏉᏣᏘ ᏅᏓᎬᏴᏁᎵ, ᏂᎯᏃ ᎨᏒ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᎦᏥᏲᏢᏂ, ᎠᎴ ᏂᎯ ᎨᏒ ᎤᏂᎬᏫᏳᎯ ᏅᏓᏳᎾᏓᎴᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏓᏥᏍᏓᏱᏗ ᎧᏃᎮᏛ ᏕᎬᏯᏠᎢᏍᏓᏁᎸᎢ, ᏂᎯ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ, ᎾᏍᎩ ᎠᎾᏁᏢᏔᏂᏒᎢ, ᎾᏍᎩ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎠᏴ ᎬᏯᏁᎳᏅᎯ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏂᎯ ᏣᏁᎸᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ. ᎠᎴ ᏂᎯ ᏓᎬᏁᎵ ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒ ᎯᎠ ᎾᏍᎩ ᎦᏙᎯ ᎾᎿ ᎮᏙᎯ ᏥᎩ, ᎾᏍᎩ ᏂᎬᎾᏛ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ, ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ; ᎠᏴᏃ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏂᎯ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᏂᎯ ᎠᎴ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒ ᎠᎾᏁᏢᏔᏂᏒᎢ. ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎧᏃᎮᏛ ᏓᏆᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎢᏥᏍᏆᏂᎪᏙᏗ ᏥᎩ, ᏥᏕᏓᎦᏠᎯᏍᏓ, ᎠᏴ ᎠᎴ ᏂᎯ ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ; ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᏕᏤᎲᎢ ᏗᎱᏍᏕᏎᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏕᏥᎱᏍᏕᏍᎨᏍᏗ ᎢᏥᏇᏓᎸ ᎢᏥᏁᎪᎢ; ᎧᏃᎮᏛᏃ ᏕᎦᏠᎯᏍᏛ ᎤᏰᎸᏕᏍᏗ ᎾᏍᎩ. ᎾᏍᎩᏃ ᏧᏁᎳ ᏧᏒᎯᏛ ᎦᏰᎯ ᎠᏥᎤᏍᏕᏎᏗ ᎨᏎᏍᏗ, ᎾᏂᎥ ᎠᏂᏧᏣ ᎾᏍᎩ ᏂᎯ ᎢᏣᏁᏢᏔᏅᏒᎢ, ᎾᏍᎩ ᎠᏓᏁᎸ ᎤᏕᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎠᏥᏩᎯᏍᏔᏅᎯ, ᎾᏍᎩ ᎩᎶ ᏅᏩᏓᎴ ᏴᏫ ᏣᏁᏢᏔᏅᎯ ᏂᎨᏒᎾ ᎠᏥᏩᏎᎸᎯ. ᎯᏁᎸ ᎤᏕᏅᎯ, ᎠᎴ ᏣᏤᎵ ᎠᏕᎸ ᎯᏩᎯᏍᏔᏅᎯ, ᎾᏍᎩ ᎠᏎ ᎠᏥᎤᏍᏕᏎᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎠᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎢᏥᏇᏓᎸ ᎤᏰᎸᏕᏍᏗ, ᎾᏍᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎤᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎾᏥᎤᏍᏕᏎᎸᎾᏃ ᎠᏍᎦᏯ ᎾᏍᎩ ᎤᏇᏓᎸ ᎤᏁᎪᎯ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᏴᏫ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏠᏱ ᎤᏙᏣᎸᎢ; ᎤᏲᏍᏔᏅᎯᏰᏃ ᎨᏎᏍᏗ ᎧᏃᎮᏛ ᏓᏆᏠᎯᏍᏛᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎯᎠᏃ ᏎᎳᏱ ᏣᏓᎵᎢ; ᎥᏝ ᏎᎳᏱ ᏱᏲᏎᎮᏍᏗ, ᏎᎵᏰᏃ ᏚᏙᎥ. ᎠᎴ ᎣᏍᏛ ᏅᏓᏥᏯᏛᏁᎵ, ᎠᎴ ᏓᎬᏯᎧᏁᎵ ᎠᏧᏣ ᎾᏍᎩ ᏓᏣᎾᏄᎪᏫᏎᎵ; ᎥᎥ, ᎣᏍᏛ ᎤᏓᏥᏯᏛᏁᎵ ᎠᎴ ᎾᏍᎩ ᎨᏒ ᏗᎾᏓᎴᎲᏍᎨᏍᏗ ᎤᎾᏓᏤᎵᏛ ᏴᏫ; ᎤᏂᎬᏫᏳᎯ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏧᎾᏤᎵᎦ ᏙᏓᎦᎾᏄᎪᏫᏏ. ᎿᏉᏃ ᎡᏆᎭᎻ ᎤᏯᏍᏚᏎᎢ, ᎠᎴ ᎤᏰᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎ ᏧᏓᏅᏛᎢ, ᏥᎪ ᎤᏪᏥ ᏛᎤᏕᏁᎵ ᎾᏍᎩ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎿᏉ ᏥᎩ; ᎠᎴ ᏎᎵ ᏐᎣᏁᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᏥᎩ ᏙᏛᎠᎷᎸᏂᏍᎩ? ᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏁᎳᏅᎯ, ᎢᏏᎺᎵ ᎯᎦᏔᎲ ᏩᎴᏂᏓ! ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏍᎩᏂ ᏎᎵ ᏣᏓᎵᎢ ᏓᎦᎾᏄᎪᏫᏏ ᏤᏥ ᎠᏧᏣ; ᎠᎴ ᎡᏏᎩ ᏙᏘᏲᎢ; ᎠᎴ ᎾᏍᎩ ᏓᏥᏍᏓᏱᏕᎵ ᎠᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᏓᎦᏥᏍᏓᏱᏕᎵ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ. ᎢᏏᎺᎵᏃ ᎯᏁᎢᏍᏗᏍᎬ ᎬᏯᏛᎦᏁᎸ; ᎬᏂᏳᏉ, ᎣᏍᏛ ᏂᏥᏯᏛᏂᏏ, ᎠᎴ ᎤᏁᏉᏣᏘᏳ ᏅᏓᏥᏴᏁᎵ, ᎠᎴ ᎤᏣᏔᏅᎯ ᏓᏥᎪᏙᎯᏍᏔᏂ; ᏔᎳᏚᎢᏯᏂᏛ ᎤᏂᎬᏫᏳᎯ ᏓᎬᏩᏕᏁᎵ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎤᏂᏧᏈᏍᏗ ᏴᏫ ᎤᏓᎦᏥᏴᏁᎵ. ᎧᏃᎮᏛᏍᎩᏂ ᎠᏆᏤᎵ ᏓᏠᎯᏍᏛ ᏓᏥᏍᏓᏱᏕᎵ ᎡᏏᎩ, ᎾᏍᎩ ᏎᎵ ᏨᏓᏣᎾᏄᎪᏫᏎᎵ, ᎪᎯᏳᎳ ᎡᏘ ᎨᏎᏍᏗ. ᎠᎴ ᎿᏉ ᎤᏲᎯᏍᏔᏁ ᎠᎵᏃᎮᏗᏍᎬᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎵᏌᎳᏓᏁ ᎤᏓᏅᎡᎴ ᎡᏆᎭᎻ. ᎡᏆᎭᎻᏃ ᏭᏯᏅᎮ ᎤᏪᏥ ᎢᏏᎺᎵ, ᎠᎴ ᏂᎦᏛ ᎦᏁᎸ ᎤᎾᏕᏅᎯ, ᎠᎴ ᏂᎦᏛ ᎠᏕᎸ ᏧᏩᎯᏍᏔᏅᎯ, ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎤᎾᏓᏑᏴ ᎡᏆᎭᎻ ᎦᏁᎸ ᎠᏁᎯ; ᎾᏍᎩᏃ ᏚᎱᏍᏕᏎᎴ ᎤᏂᏇᏓᎸ ᎤᏂᏁᎪᎢ, ᎾᎯᏳᏉ ᎢᎦ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏄᏪᏎᎸᎢ. ᎡᏆᎭᎻᏃ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎤᏇᏓᎷ ᎤᏁᎪᎢ ᎠᏥᎤᏍᏕᏎᎸ. ᎤᏪᏥᏃ ᎢᏏᎺᎵ ᏦᎢᎦᏚ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎤᏇᏓᎸ ᎤᏁᎪᎢ ᎠᏥᎤᏍᏕᏎᎸ. ᎾᎯᏳᏉ ᎢᎦ ᎡᏆᎭᎻ ᎠᏥᎤᏍᏕᏎᎴᎢ, ᎠᎴ ᎾᏍᏉ ᎤᏪᏥ ᎢᏏᎺᎵ. ᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᎦᏁᎸ ᎠᏁᎯ, ᎦᏁᎸ ᎤᎾᏕᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎨᏥᏩᎯᏍᏔᏅᎯ, ᏅᏩᎾᏓᎴ ᏴᏫ ᎨᏥᏩᎯᏎᎸᎯ, ᎢᏧᎳᎭ ᏙᎨᏥᎤᏍᏕᏎᎴᎢ. ᎠᏯᏙᎸᎢ 18 ᏱᎰᏩᏃ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎹᎺᎵ ᏧᏤᎵᎦ ᎠᏓᏯ ᏕᏡᎬᎢ; ᎦᎵᏦᏛᏃ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎴ ᎢᎦ ᏧᏗᎴᎪᎢ; ᏚᏌᎳᏓᏁᏃ ᏗᎦᏙᎵ ᎠᎴ ᏚᎧᎿᏁᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎠᏂᏦᎢ ᎠᏂᏍᎦᏯ ᎤᏬᎸ ᎾᎥ ᎠᏂᏙᎾᎡᎢ; ᏚᎪᎲᏃ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎸ ᎤᏁᎷᎩᎭ ᏫᏚᏠᏎᎢ, ᎠᎴ ᎡᎳᏗ ᏄᏛᏁᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎢᏳᏃ ᏗᏍᏆᏓᏂᎸᏨᎯ ᎨᏎᏍᏗ, ᏞᏍᏗ ᎯᎶᎢᏎᎸᎩᏉ ᎯᏅᏏᏓᏍᏗ; ᎦᏲᎵ ᎠᎹ ᏩᏂᏁᎩ, ᎠᎴ ᏗᏣᎳᏏᏕᏂ ᏗᏦᏑᎵ, ᎠᎴ ᎢᏣᏣᏪᏐᎸᏍᏓ ᏡᎬ ᎭᏫᏂᏗᏢ; ᎤᏍᏗᏃ ᎠᎵᏍᏓᏴᏗ ᏮᏓᏥᎩᏏ ᏗᏣᏓᏅᏙᏃ ᏕᏥᎧᎵᏍᏓᏛᎭ; ᎩᎳᏃ ᎢᏣᏂᎩᏒᎭ; ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎡᏥᎷᏤᎸ ᎡᏥᏅᏏᏓᏍᏗ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏂᏣᏪᏒ ᎾᏍᎩᏯ ᎿᏛᎦ. ᎡᏆᎭᎻᏃ ᎤᎵᏍᏗ ᎦᎵᏦᏛ ᏭᏴᎴ ᏎᎵ ᏧᏬᎸᎢ, ᎯᎠᏃ ᏫᏄᏪᏎᎢ, ᏄᎳ ᎭᏛᏅᎢᏍᏓ ᏦᎢ ᎢᏯᏟᎶᎥᎯ ᏩᎾᎨ ᎢᏒ; ᎦᏑᎬᎵ, ᎠᎴ ᏘᏃᏢᏛᎦ. ᎡᏆᎭᎻᏃ ᏩᎦ ᏗᏁᏙᎲ ᏭᏗᏢᏍᏔᏁᎢ, ᎠᎴ ᎤᏘᏃᎴ ᏩᎦ ᎠᎩᎾ ᎤᏓᎨᎢ ᎠᎴ ᎣᏍᏛ, ᎠᎴ ᎠᏫᏅ ᎤᏪᎧᏁᎴᎢ; ᎾᏍᎩᏃ ᎤᎵᏍᏗ ᎣᏍᏛ ᏄᏩᏁᎴᎢ. ᎡᏆᎭᎻᏃ ᎪᎢ-ᎪᏢᏀᎢ ᏭᎩᏎᎢ, ᎠᎴ ᎤᏅᏗ ᏭᏁᎩᏎᎢ, ᎠᎴ ᏩᎦ ᎠᎩᎾ ᎾᏍᎩ ᎣᏍᏛ ᎢᏳᏩᏁᎸᎯ ᏭᏁᏎᎢ, ᎠᎴ ᏚᏪᎳᏍᏔᏁᎢ; ᎠᏂᏅᏃ ᎤᎶᏗᏢ ᎤᎴᏁ ᏡᎬ ᎭᏫᏂᏗᏢ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏁᎢ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏎᎵ ᏣᏓᎵᎢ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎠᏂ ᎦᎵᏦᏛᎢ. ᎯᎠᏃ ᏄᏪᏎ ᎾᏍᎩ, ᎤᏙᎯᏳᎯᏯ ᏛᎬᏩᏛᎯᎵ ᎾᎯᏳ ᏓᏁᎶᏛ ᎠᏲᎵ ᎤᏕᏗᏱ; ᎠᎴ ᎬᏂᏳᏉ, ᏎᎵ ᏣᏓᎵᎢ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ. ᏎᎵᏃ ᏧᏛᎦᏁ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎸᎢ ᎾᏍᎩ ᎤᏐᎭᏛ ᎢᏗᏢ ᏥᎨᏎᎢ. ᎡᏆᎭᎻᏃ ᎠᎴ ᏎᎵ ᎠᏂᎦᏴᎵᎨ ᎠᎴ ᏧᎾᏕᏘᏱᎶᏛ ᎨᏎᎢ; ᏎᎵᏃ ᎤᎶᎯᏎᎸᎯ ᎨᏎ ᎠᏂᎨᏴ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏒᎢ. ᏎᎵᏃ ᏧᏓᏅᏛ ᎤᏰᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ. ᏥᎪ ᎿᏉ ᎠᎩᎦᏴᎳᏨᎯ ᏥᎩ ᎣᏍᏛ ᏛᎦᏓᏅᏓᏗ, ᎠᎴ ᎾᏍᏉ ᏗᏥᏯᏁᎶᏗ ᎤᏛᏐᏅᎯ ᏥᎩ? ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎦᏙᏃ ᏎᎵ ᎾᏍᎩ ᎯᎠ ᏧᏰᏨ, ᎯᎠ ᏥᏂᎦᏫ, ᏥᎪ ᎤᏙᎯᏨᎯ ᎠᏲᎵ ᏛᏥᎾᏄᎪᏫᏏ ᎿᏉ ᏥᎦᏴᎵᎨ ᏥᎩ? ᏥᎪ ᏱᎰᏩ ᎪᎱᏍᏗ ᎬᏩᏄᎸᏗ? ᎾᎯᏳ ᎠᏎᎯᏛ ᎨᏒ ᏛᎬᎷᏤᎵ, ᏓᏁᎶᏛ ᎠᏲᎵ ᎤᏕᏘᏱ, ᎠᎴ ᏎᎵ ᎠᏧᏣ ᏓᎦᎾᏄᎪᏫᏏ. ᎿᏉᏃ ᏎᎵ ᎤᏓᏱᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᎩᏰᏤᎢ; ᎠᏍᎦᎢᎮᏰᏃ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏍᎩᏂ ᏣᏰᏨᎩ. ᎠᏂᏍᎦᏯᏃ ᎾᎿ ᎤᎾᏂᎩᏎᎢ, ᎠᎴ ᏐᏓᎻ ᎢᏗᏢ ᏫᏚᎾᎦᏔᏁᎢ; ᎡᏆᎭᎻᏃ ᏚᎵᎪᏁᎴᎢ, ᏣᏂᎦᏛ ᎢᏗᏢ ᎢᏴᏛ ᏫᏚᏪᎧᏁᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏥᎪ ᏓᏥᏴᏍᎦᎳᏁᎵ ᎡᏆᎭᎻ ᎾᏍᎩ ᏥᏂᎦᏛᏁᎭ, ᎤᏙᎯᏳᎯᏯᏃ ᎡᏆᎭᎻ [ᎤᏁᏢᏔᏅᎯ] ᎡᏉᎯᏳ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᏴᏫ ᏥᏅᏛᎾᎵᏍᏔᏂ, ᎠᎴ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏥᏅᏓᎦᎵᏍᏔᏂ ᎡᏆᎭᎻ ᎢᏳᏩᏂᏌᏛ? ᏥᎦᏔᎭᏰᏃ ᎡᏆᎭᎻ ᎾᏍᎩ ᎠᏎ ᏙᏓᎧᏁᏤᎵ ᏧᏪᏥ ᎠᎴ ᏚᏓᏘᎾᎥ ᎣᏃ ᎤᎾᏕᏗ ᏥᏅᏓᎦᎵᏍᏔᏂ, ᎠᎴ ᎾᏍᎩ ᏲᎰᏩ ᎤᏤᎵ ᎦᏅᏅ ᏛᏂᏍᏓᏩᏕᏏ, ᏚᏳᎪᏛ ᎢᏳᎾᏛᏁᏗᏱ, ᎠᎴ ᏧᏄᎪᏙᏗᏱ; ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏗᏱ ᎡᏆᎭᎻ ᏄᏍᏛ ᎤᏁᎢᏍᏓᏁᎸᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎷᎬ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ ᎠᏍᏓᏱᏳ ᎨᏥᏁᎢᏍᏗᏍᎬ ᎤᎶᏘ ᎨᏒᎢ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗ ᎤᏂᏍᎦᏅᏨ ᎤᏣᏘ ᎤᏍᎦᎢᏍᏗᏳ ᎨᏒᎢ, ᎿᏉ ᏓᎦᏠᎠᏏ, ᎠᎴ ᏮᏓᎦᏙᎴᎣᏏ, ᏥᎪᏃ ᎤᏙᎯᏳᎯ ᏄᎾᏛᏁᎸ ᎾᏍᎩ ᎤᏁᎷᎬ ᎨᏥᏁᎢᏍᏗᏍᎬ, ᎶᎩᎷᏤᎸ; ᎢᏳᏃ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ ᏮᏓᎦᏙᎴᎣᏏ. ᎠᏂᏍᎦᏯᏃ ᎤᎾᎦᏔᎲᏎᎢ, ᎠᎴ ᏐᏓᎻᏱ ᎢᏗᏢ ᏭᏂᎶᏎᎢ; ᎡᏆᎭᎻᏍᎩᏂ ᎦᏙᎨᏉ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎡᏆᎭᎻᏃ ᎾᎥ ᎤᎷᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏓᏅᏘᏍᎪ ᏘᏯᏠᏯᏍᏔᏂ ᎤᏁᏓᏥᏛ ᎯᏛᏗᏍᎬᎢ? ᎾᏍᏉ ᎯᏍᎦᏍᎪᎯ ᏱᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎾᎿ ᎦᏚᎲ ᏱᏁᎭ; ᏥᎪ ᎠᏎ ᏘᏛᏔᏂ, ᏝᏍᎪᏂ ᏴᏘᏙᎵᏂ ᎾᎿᏂ, ᏱᏅᏓᎦᎵᏍᏙᏔᏂ ᎯᏍᎦᏍᎪᎯ ᎢᏯᏂᏛ ᎤᎾᏓᏅᏘ ᎾᎿ ᎠᏁᎲᎢ? ᎥᏞᏍᏗ ᎾᏍᎩᏉ ᎢᏣᏛᏁᎸᎩ ᎯᎸᎩ ᎤᏓᏅᏘ ᎯᏯᏠᏯᏍᏔᏅᎩ ᎤᏁᏓᏥᏛ ᎯᎢᎲᎢ; ᎠᎴ ᎤᏓᏅᏘ ᎥᏞᏍᏗ ᎤᏁᏧᏥᏛ ᏄᏍᏛ ᏱᏄᏍᏕᏍᏗ; ᏞᏍᏗ ᎾᏍᎩᏉ ᎢᏣᏛᏁᎸᎩ; ᏝᏍᎪ ᎡᎳᏂᎬ ᏗᎫᎪᏓᏁᎯ ᏚᏳᎪᏛ ᏱᏅᎬᏛᎦ? ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏐᏓᎻ ᎦᏚᎲ ᎯᏍᎦᏍᎪᎯ ᎢᏯᏂᏛ ᎤᎾᏓᏅᏘ ᏱᏗᏥᏣᏛᎲ, ᎿᏉ ᏂᎦᏛ ᎾᎿ ᏓᏥᏙᎵᏥ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎡᏆᎭᎻᏃ ᏗᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎿᏉ ᎦᎴᏅ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏯᎵᏃᎮᏗᏍᎬᎢ, ᎠᏴ ᎦᏓᏉ ᎠᎴ ᎪᏍᏚᏉ ᏥᎩ. ᎢᏳᏃ ᎯᏍᎩ ᏱᎦᎷᎶᎦ ᎯᏍᎦᏍᎪᎯ ᎢᏳᏂᎢᏍᏗᏱ ᎤᎾᏓᏅᏘ; ᏥᎪ ᎠᏎ ᏂᎬ ᎦᏚᎲ ᏘᏲᏍᏔᏂ ᎯᏍᎩ ᎦᎷᎶᎬ ᎢᏳᏍᏗ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏅᎦᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏯᏂᏛ ᎾᎿ ᏱᏗᏥᏩᏛᎲ ᎥᏝ ᏴᎦᏥᏛᏓ. ᏔᎵᏁᏃ ᎢᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᎾᏃ ᏅᎦᏍᎪᎯ ᎢᏯᏂᏛ ᏗᎬᏩᏛᏗ ᏱᎩ ᎾᎿᏂ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏅᎦᏍᎪᎯ ᎾᏂᎥ ᎢᏳᏍᏗ ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᎦᏛᎦ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵ ᏳᏔᎳᏬᏎᏍᏗ, ᎠᏏ ᏛᏥᏁᏥ, ᎢᏳᎾᏃ ᏦᎠᏍᎪᎯ ᏗᎬᏣᏛᏗ ᏱᎩ ᎾᎿᏂ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᎦᏛᎦ ᎢᏳᏃ ᏃᎠᏍᎪᎯ ᏙᏥᏩᏛᎲᎭ ᎾᎿᏂ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏆᎴᏅᎲ ᏱᎰᏩ ᏥᏯᎵᏃᎮᏗᏍᎬᎢ; ᎢᏳᎾᏃ ᏔᎳᏍᎪᎯ ᏗᎬᏩᏛᏗ ᎨᏎᏍᏗ ᎾᎿᏂ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎦᏥᏛᏓ ᏔᎳᏍᎪᎯ ᎾᏂᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᏞᏍᏗ ᏳᏔᎳᏬᏎᏍᏗ, ᎠᏏ ᏌᏉᏉ ᏅᏛᏥᏁᏥ; ᎢᏳᎾᏃ ᎠᏍᎪᎯ ᏗᎬᏩᏛᏗ ᏱᎩ ᎾᎿᏂ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎦᏥᏛᏓ ᎠᏍᎪᎯ ᎾᏂᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᏱᎰᏩᏃ ᎤᏑᎵᎪᏨᏉ ᎡᏆᎭᎻ ᎠᎵᏃᎮᏗᏍᎬᎢ, ᏩᎦᏛ ᏭᎶᏎᎢ; ᎡᏆᎭᎻᏃ ᏧᏪᏅᏒ ᏫᎤᎶᏎ. ᎠᏯᏙᎸᎢ 19 ᎤᏒᎢᏃ ᎠᏂᏔᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏐᏓᎻ ᎤᏂᎷᏤᎢ; ᎶᏗᏃ ᏐᏓᎻ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎴᎢ; ᎶᏗᏃ xᏚᎪᎲ ᏚᎴᏁ ᏚᏠᏒᏎᎢ; ᎡᎳᏗᏃ ᏄᏛᏁᎴᎢ, ᎤxᏛ ᏚᏙᎯ ᎢᏗᏢ ᏄᏩᏁᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, Ꭷ, ᎢᏍᏗᎬᏫᏳᎯ ᏗᏆᏤᎵᎦ, ᎢᏍᏛᏔᏲᏏ ᎡᏍᏗᏅᏏᏓᏍᏗ ᎦᏁᎸ ᎢᏍᏗᏴᏍᏗᏱ, ᎠᎴ ᎢᏍᏗᏒᏍᏗᏱ, ᎠᎴ ᏗᏍᏙᏑᎴᏗᏱ ᏗᏍᏓᎳᏏᏕᏂ; ᏑᎾᎴᏃ ᏕᏍᏓᏗᏛᎲᎭ, ᎠᎴ ᏫᏍᏗᎦᏛ ᏫᏍᏗᎶᏒᎭ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎥᏝ; ᎦᎳᏅᏛᏉᏍᎩᏂ ᏓᏲᎩᏂᏒᎵ. ᎤᏣᏘᏃ ᏚᏍᏗᏰᏔᏁᎢ, ᏗᎬᏩᎦᏔᎲᎡᎴᏃ ᎠᎴ ᎦᏁᎸ ᏭᏂᏴᎴᎢ; ᎠᎴ ᏚᏛᏅᎢᏍᏓᏁᎴ ᎠᏗᏔᏍᏗ, ᎠᎴ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏚᏪᏚᏁᎢ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏁᎢ. ᎠᏏᏉᏃ ᏂᏚᎾᏂᏢᏅᎾ ᎨᏎᎢ, ᎠᏂᏍᎦᏯ ᎦᏚᎲ ᎠᏁᎯ, ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏐᏓᎻ ᎠᏁᎯ, ᎠᏓᏁᎸ ᏚᎾᏚᏫᏍᏔᏁᎢ, ᎠᏂᏫᏅ ᎠᎴ ᎾᏍᏉ ᏧᎾᏛᏐᏅᎯ, ᏂᎦᏛ ᏴᏫ ᎬᏩᏚᏫᏛ ᏅᏓᏳᏂᎶᏒᎯ. ᎶᏗᏃ ᏫᎬᏩᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᎠᏂᏍᎦᏯ ᎪᎯ ᎤᏒ ᏥᎰᏣᏴᏎᎸᎩ? ᎡᏗᏍᎩᏄᎪᏫᏏ ᏙᏥᎦᏙᎥᏒᎭ. ᎶᏗᏃ ᏚᏄᎪᏤᎴ ᎦᎶᎯᏍᏗᏱ, ᎦᎶᎯᏍᏗᏱᏃ ᎤᏍᏚᏁᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏨᏔᏲᏎᎭ ᎢᏓᎵᏅᏟ, ᏞᏍᏗ ᎾᏍᎩ ᎢᏳᏲ ᏗᏥᎸᏫᏍᏓᏁᎸᎩ; ᎬᏂᏳᏉ, ᎠᏂᏔᎵ ᏗᏇᏥ ᎠᏂᎨᏴ ᎠᏁᎭ ᎠᏍᎦᏯ ᏄᏂᎦᏙᎥᏒᎾ, ᎾᏍᎩ ᏗᏨᏄᎪᏫᏏ, ᎾᏍᎩᏃ ᎢᏣᏓᏅᏖᏍᎬᏉ ᏂᏗᏨᎦ; ᎯᎠᏍᎩᏂ ᎠᏂᏍᎦᏯ ᏞᏍᏗ ᎪᎱᏍᏗ ᏗᏨᏁᎸᎩ; ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᏥᏁᎸ ᎤᎾᎵᏍᎦᏍᏙᏔᏂᎸ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎭᎴᎲᎾᏉ. ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎠᏍᎦᏯ ᎤᎳᏂᏏᎸᎯᏉ, ᏗᎫᎪᏓᏁᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᎭ. ᎤᏟ ᎢᏳᏲ ᏅᏓᏨᏴᏁᎵ ᏂᎯ ᎡᏍᎦᏉ ᎯᎠ ᎠᏂᏍᎦᏯ. ᎠᎴ ᎬᏍᎦᎢᏍᏓᎩ ᏚᏂᎦᏘᎸᏎ ᎠᏍᎦᏯ, ᎾᏍᎩ ᎶᏗ, ᎠᎴ ᎾᎥ ᎤᏂᎷᏤ ᎠᏍᏚᏗ ᏗᏂᏲᏍᏔᏂᏎᎢ. ᎠᏎᏃ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏫᏚᎾᏙᏯᏅᎯᏕ, ᎠᎴ ᏫᎬᏩᏎᏒᎮ ᎶᏗ ᎦᎵᏦᏕ ᎬᏩᏴᏔᏁ ᎠᏂᏯᎥᎢ, ᎠᎴ ᎤᏂᏍᏚᏁ ᎦᎶᎯᏍᏗᏱ. ᎦᎵᏦᏕᏃ ᎦᎶᎯᏍᏗᏱ ᏅᏛᏂᏙᎾᎢ ᏗᏂᎨᏫ ᏂᏚᏅᏁᎴᎢ, ᏄᎾᏍᏗ ᎠᎴ ᎾᏍᏉ ᏧᎾᏛᏅ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏚᎾᏣᏪᎢᏍᏔᏁ ᎦᎶᎯᏍᏗᏱ ᎤᏂᏲᎲᎢ. ᎠᏂᏍᎦᏯᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴ ᎶᏗ, ᎦᎪ ᎠᏏ ᏗᏣᏤᎵᎦ ᏴᏫ ᎠᏂ ᎠᏁᎭ? ᏣᎾᏥ, ᏗᏤᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎠᏂᎨᏴ ᏗᏤᏥ, ᎠᎴ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏣᎲ ᎠᏂ ᎦᏚᎲᎢ, ᎯᏄᎪᏩ ᎠᏂ; ᎠᏴᏰᏃ ᏓᏲᏍᏗᏲᏍᏔᏂ ᎯᎠ ᎠᏂ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎷᎬ ᎾᏍᎩ ᎨᏥᏁᎢᏍᏗᏍᎬ ᎤᎶᏘ ᎡᏉᎯᏳ ᏄᎵᏍᏔᏅ ᏱᎰᏩ ᎠᎦᏯᎲᎢ; ᎠᎴ ᏱᎰᏩ ᏦᎩᏂᏅᏒ ᎣᎩᏂᏲᏍᏙᏗᏱ ᎯᎠ ᎠᏂ. ᎶᏗᏃ ᎤᏄᎪᏤᎢ, ᎠᎴ ᏚᏁᏤᎴ ᏧᎾᏥ, ᎾᏍᎩ ᏧᏪᏥ ᎠᏂᎨᏴ ᏗᎾᏓᏰᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᏗᏣᎴᎲᎦ ᎠᎴ ᎢᏥᏄᎪᎢ ᎠᏂ; ᏱᎰᏩᏰᏃ ᏛᏲᏍᏔᏂ ᎯᎠ ᎦᏚᎲᎢ. ᎠᏎᏃ ᎠᏎᏉ ᏥᏂᎦᏪᏍᎪ ᎤᏂᏰᎸᏁ ᏧᎾᏥ. ᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᎵᏍᏓᏁᎴ ᎶᏗ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᎴᎲᎦ ᎠᎴ ᏔᏘᏄᎦ ᏣᏓᎵᎢ ᎠᎴ ᎠᏂᏔᎵ ᏗᏤᏥ ᎠᏂᎨᏴ, ᎠᏂ ᏣᏁᏙᎭ; ᏰᏣᏠᏯᏍᏓᏰᏃ ᏰᏣᏛᏓ ᎤᏂᏍᎦᏅᏨ ᎤᏂᏛᏗᏍᎬ ᎯᎠ ᎦᏚᎲᎢ. ᎠᏏᏉᏃ ᎤᏙᎯᎸᎢ, ᎠᏂᏍᎦᏯ ᎬᏬᏯᏁᏎᎢ, ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ ᎬᏬᏯᏁᏎᎢ, ᎠᎴ ᎾᏍᏉ ᏧᏪᏥ ᎠᏂᎨᏴ ᎠᏂᏔᎵ ᏚᏃᏯᏁᏎᎢ; ᏱᎰᏩᏰᏃ ᎤᏪᏙᎵᎨᎢ; ᎠᎴ ᎬᏩᏄᎪᏫᏎᎢ, ᎦᏚᎲᏃ ᏙᏱᏗᏢ ᏫᎬᏪᎧᏁᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎿᏉ ᏙᏱᏗᏢ ᏫᏗᎨᏥᎧᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎭᎵᏘ ᎲᏅ ᎯᏍᏕᎸ; ᏞᏍᏗ ᏩᎦᏔᎲᏒᎩ, ᏞᏍᏗ ᎠᎴ ᎯᎸᎯᏢ ᎤᏬᏓᎸ ᏣᎴᏫᏍᏔᏅᎩ; Ꮎ ᏦᏓᎸ ᏩᏗᏢᏍᏓ, ᏰᏣᏛᏓᎾᏏ. ᎶᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ; ᎬᏂᏳᏉ ᎯᏅᏏᏓᏍᏗ ᎬᏩᎦᏘᏯ ᏣᏓᏙᎵᏍᏗ ᎨᏒ ᎯᎾᏄᎪᏫᏎᎸ, ᎠᎴ ᏣᏓᏙᎵᏍᏗ ᎨᏒ ᏣᏔᏃᎯᏍᏔᏅ, ᎾᏍᎩ ᏥᏍᎩᎾᏄᎪᏫᏎᎸ ᎬᏅ ᏍᎩᏍᏕᎸᎡᎸᎯ ᏥᎩ; ᎥᏝ ᎠᎴ Ꮎ ᏦᏓᎸ ᏰᎵ ᏫᎬᏆᏗᏫᏍᏙᏗ ᏱᎩ, ᎪᎱᏍᏗᏰᏃ ᎤᏲ ᏯᏆᏢᏔ ᎠᎴ ᏴᏥᏲᎤᎯ. ᎬᏂᏳᏉ, ᎯᎠ ᎦᏚᎲ ᎡᏍᎦᏂᏳᏉ ᎾᎿ ᏩᏗᏢᏍᏙᏗᏱ, ᎠᎴ ᎤᏍᏗᏉ ᎦᏚᎭ; ᎾᎿᏉ ᏫᎦᏗᏢᏍᏓ; ᏝᏍᎪ ᎰᏩ ᎤᏍᏗᏉ ᏱᎩ? ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎯᎠ ᎾᏍᏉ ᏙᎬᏯᏓᏂᎸᏥᏏ, ᎾᏍᎩ ᎥᏝ ᏴᎦᏥᏛᏓ ᎯᎠ ᎦᏚᎲ ᎾᏍᎩ ᏥᏁᎢᏍᏓ. ᏞᎩᏳ ᎾᎿ ᏩᏗᏢᏍᏓ; ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏴᎦᎦᏛᎦ ᎬᏂ ᎾᎿ ᏫᎷᏨᎭ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎾᎿ ᎦᏚᎲ ᏦᎠ ᏚᏃᎡᎢ. ᏅᏙ ᎦᏳᎳ ᏗᎧᎴ ᎶᏗ ᏭᏴᎸ ᏦᎠ ᎦᏚᎲᎢ. ᎿᏉᏃ ᏱᎰᏩ ᏓᎶᏂᎨ ᏓᏪᎵᎩᏍᎩ ᎠᏑᏴᏗ ᎠᎴ ᎠᏥᎸ ᎤᏅᎪᎥᏔᏁ ᏐᏓᎻᏱ ᎠᎴ ᎪᎹᎵᏱ, ᏱᎰᏬ ᎦᎸᎳᏗ ᏧᏓᎴᏁᎢ. ᎠᎴ ᏚᏛᏔᏁ ᎾᏍᎩ ᏕᎦᏚᎲᎢ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎤᏬᏓᎸᎢ, ᎠᎴ ᏂᎦᏛ ᏕᎦᏚᎲ ᎠᏁᎯ ᎠᎴ ᎾᏍᎩ ᎦᏙᎯ ᎤᏰᎾᎥᎢ. ᎠᏎᏃ ᎶᏗ ᎤᏓᎵᎢ ᎤᏍᏓᏩᏗᏒ ᎤᎦᏔᎲᏎᎢ, ᎠᎴ ‾ᎠᎹ ᏄᎵᏍᏔᏁᎢ ᎠᎴ ᎢᎦᎧᎮᎢ. ᎡᏆᎭᎻᏃ ᏑᎾᎴᏉ ᎤᎿᎷᏎ ᎾᎿ ᏭᎷᏤ ᏱᎰᏩ ᎠᎦᏔᎲ ᎤᎴᏅᎢ; ᏐᏓᎻᏱᏃ ᎠᎴ ᎪᎹᎵᏱ ᎢᏗᏢ ᏫᏚᎧᎾᏁᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎤᏬᏓᎸ ᎦᏙᎯ, ᎤᎪᎮᏃ, ᎠᎴ ᎬᏂᏳᏉ, ᎾᎿ ᏂᎬᎾᏛ ᏚᎦᏒᏍᏛ ᏓᎴᎲᏍᎨ ᎬᎾᏬᏙᏗᏱ ᏥᏚᎦᏒᏍᏙ ᎾᏍᎩᏯᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏚᏲᏍᏔᏅ ᎤᏬᏓᎸ ᏕᎦᏚᎲᎢ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎢᎤᏅᏓᏕᎢ, ᎠᎴ ᎶᏗ ᎤᏄᎪᏫᏎ ᎾᎿ ᎠᏲᏍᏗᏍᎬᎢ, ᎾᎯᏳ ᏥᏓᏲᏍᏗᏍᎨ ᏕᎦᏚᎲ ᎾᎿ ᎶᏗ ᎡᎲᎢ. ᎶᏗᏃ ᏦᎠ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎣᏓᎸ ᏭᏕᏁᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᎨᏴ; ᎠᏍᎦᎢᎮᏰᏃ ᏦᎠ ᎤᏕᏗᏱ; ᎤᏍᏓᎨᎸᏃ ᎡᎮᎢ, ᎤᏩᏒ, ᎠᎴ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᎨᏴ. ᎤᏓᏂᎵᎨᏃ ᎯᎠ ᏄᏪᏎᎴ ᎣᏂ ᎡᎯ, ᎩᏂᏙᏓ ᎠᎦᏴᎵᏳ, ᎥᏝ ᎠᎴ ᎡᎶᎯ ᏂᎬᎾᏛ ᏰᎭ ᎠᏍᎦᏯ ᎨᎩᏂᎷᏤᏗ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᏥᎩ ᎡᎶᎯ ᏂᎬᎾᏛᎢ. Ꭷ, ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎡᏂᎤᎥᎦ ᎩᏂᏙᏓ, ᎠᎴ ᎡᎾᏂᏏᏁᎸᎭ, ᎩᏂᏙᏓᏃ ᎤᏁᏢᏔᏅᎯ ᎡᏂᏍᏆᏂᎪᏓᏁᎸᎭ. ᎾᎯᏳᏉᏃ ᎤᏒᎢ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏂᎱᏁ ᎤᏂᏙᏓ; ᎤᏓᏂᎵᎨᏃ ᎤᎷᏤ ᎠᎴ ᎤᏙᏓ ᎤᏂᏏᏁᎴᎢ; [ᎤᏙᏓᏃ] ᎥᏝ ᏳᏙᎴᎰᏎ ᎤᏂᏏᏂᎸ, ᎠᎴ ᎢᎤᏗᏛᎲ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᎩᏨᏛ, ᎾᏍᎩ ᎤᏓᏂᎵᎨ ᎯᎠ ᏄᏪᏎᎴ ᎣᏂ ᎡᎯ, ᎬᏂᏳᏉ ᎤᏒᎯ ᏒᏃᏱ ᏥᎨᏒ ᎠᏴ ᏥᏯᏂᏏᏁᎸᎩ ᎡᏙᏓ; ᎪᎯ ᎾᏍᏉ ᎤᏒ ᎡᏂᎤᏅᎭ ᎩᎦᎨ ᎠᏗᏔᏍᏗ; ᏂᎯᏃ ᎡᏒᎭ, ᎯᏯᏂᏏᏁᎸᎭ, ᎩᏂᏙᏓᏃ ᎤᏁᏢᏔᏅᎯ ᎡᏂᏍᏆᏂᎪᏓᏁᎸᎭ. ᎾᎯᏳᏃ ᎾᏍᏉ ᎤᏒᎢ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏂᎱᏁ ᎤᏂᏙᏓ; ᎣᏂᏃ ᎡᎯ ᏚᎴᏁ ᎠᎴ ᏭᏂᏏᏁᎴᎢ; ᎤᏙᏓᏃ ᎥᏝ ᏳᏙᎴᎰᏎ ᎤᏂᏎᏂᎸ, ᎠᎴ ᎢᎤᏗᏛᎲ. ᎾᏍᎩᏃ ᎢᏧᎳ ᎶᏗ ᏧᏪᏥ ᏗᏂᏁᎵᏛ ᏄᎵᏍᏔᏁ ᎤᏂᏙᏓ ᏧᏪᏥ. ᎤᏓᏂᎵᎨᏃ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᎼᎠᏈ ᏚᏬᎡᎢ; ᎾᏍᎩᏃ ᎤᏂᎦᏰᎵᎨ ᎠᏂᎼᎠᏈ ᎩᎳᎯᏳ ᏣᏁᎭ. ᎣᏂᏃ ᎡᎯ ᎾᏍᏉ ᎠᏧᏣ ᎢᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᏇᎾᎻ ᏚᏬᎡᎢ; ᎾᏍᎩᏃ ᎤᏂᎦᏴᎵᎨ ᎠᎼᏏ ᏧᏪᏥ ᎩᎳᎯᏳ ᏣᏁᎭ. ᎠᏯᏙᎸᎢ 20 ᎡᏆᎭᎻᏃ ᎾᎿ ᎤᏂᎩᏎ ᏧᎦᎾᏮ ᎢᏗᏢ ᏭᎶᏎᎢ, ᎨᏕᏏᏃ ᏒᎵ ᎾᎿ ᎠᏰᎵ ᏭᏕᏁᎢ, ᎠᎴ ᎨᎳ ᏪᎮᎢ. ᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎ ᏎᎵ ᎤᏓᎵᎢ ᎤᏁᎢᏍᏗᏍᎬᎢ, ᎥᎩᏙᏉ; ᎠᏈᎻᎴᎩᏃ ᎨᎳ ᎤᎬᏫᏳᎯ ᎤᏓᏅᏎ ᎠᎴ ᏎᎵ ᏭᏯᏅᎮᎢ. ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᎷᏤᎴ ᎠᏈᎻᎴᎩ ᏒᏃᏱ ᎠᏍᎩᏓᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᏣᏲᎱᏒᎯᏉ ᏂᎯ, ᏂᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎠᎨᏴ ᏥᏫᏯᏅᎲ; ᎩᎶᏰᏃ ᎠᏍᎦᏯ ᎤᏓᎵᎢ ᎾᏍᎩ. ᎠᏎᏃ ᎠᏈᎻᎴᎩ ᎥᏝ ᎾᎥ ᎤᎷᏤᎸᎯ ᏱᎨᏎᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᏥᎪ ᎾᏍᏉ ᏄᏂᏍᎦᏅᏨᎾ ᏴᏫ ᏙᏘᎵ? ᏝᏍᎪ ᎾᏍᎩ ᎥᎩᏙᏉ ᏯᏉᏎᎴᎢ, ᎠᎴ ᎠᎨᏴ ᎤᏩᏒ ᎥᎩᏙᏉ ᎤᏛᏅᎩ; ᏚᏳᎪᏛ ᎨᏒ ᎠᏆᏓᏅᏛᎢ, ᎠᎴ ᏂᏓᏍᎦᏅᎾ ᎨᏒ ᏗᏉᏰᏂ ᎾᏍᎩ ᎯᎠ ᎾᏆᏛᏁᎸ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎩᏓᏍᎬᎢ, ᎠᏴ ᏥᎦᏔᎭ ᏚᏳᎪᏛ ᎨᏒ ᏣᏓᏅᏛ ᎾᏍᎩ ᎯᎠ ᏂᏩᏛᏁᎸᎢ; ᎠᏴᏰᏃ ᎬᏲᏍᏙᏓᏁᎸᎩ ᏍᎩᏍᎦᏅᏤᏗᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏁᎳᎩ ᏱᎬᏰᎵᏎᎴ ᎯᏯᏒᏂᏍᏗᏱ. ᎿᏉᏃ ᏥᎯᏯᎧᏏ Ꮎ ᎠᏍᎦᏯ ᎤᏓᎵᎢ; ᎠᏙᎴᎰᏍᎩ ᎾᏏ, ᎠᎴ ᏓᏣᏓᏙᎵᏍᏓᏁᎵ, ᎾᏍᎩᏃ ᎲᏁᏍᏗᏉ; ᎢᏳᏃ ᏂᏯᎧᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᎯᎦᏔᎮᏍᏗ ᎤᏙᎯᏳᎯᏯ ᏣᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᏂᎯ ᎠᎴ ᏂᎦᏛ ᏕᏣᏓᏘᎾᎥᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏈᎻᎴᎩ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᎠᎴ ᏂᎦᏛ ᏧᏅᏏᏓᏍᏗ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏚᏃᎮᎮᎴᎢ; ᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᎤᏣᏘ ᎠᏂᏍᎦᎢᎮᎢ. ᎿᏉᏃ ᎠᏈᎻᎴᎩ ᎡᏆᎭᎻ ᏭᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏉ ᏍᎩᏴᏁᎸ? ᎠᎴ ᎦᏙ ᎠᏆᏛᏁᎸ ᎬᏍᎦᏅᏤᎸ, ᎾᏍᎩ ᎤᏣᏔᏅᎯ ᎡᏉᎯᏳ ᎣᎩᏍᎦᏅᎢᏍᏗᏱ ᏥᏂᏨᏁᎸ, ᎠᏴ, ᎠᎴ ᏗᏆᏤᎵ ᏴᏫ? ᎾᏍᎩ ᎢᏗᏓᏛᏁᏗ ᏂᎨᏒᎾ ᏂᏍᏋᎦ. ᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎦᏙ ᏣᎪᎮ ᎾᏍᎩ ᎯᎠ ᏥᎿᏛᎦ? ᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠᏍᎩᏂ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎥᏝ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎠᏂ Ꭰ, ᎠᏇᎵᏒᎩ; ᎠᎴ ᏓᎬᎩᎵ ᎠᏆᏓᎵᎢᏉ ᏛᎩᏍᏛᏗ, ᎠᏇᎵᏒᎩ. ᎤᏙᎯᏳᎯ ᎠᏗᎾ ᎥᎩᏙᏉ; ᎡᏙᏓᏰᏃ ᎤᏪᏥ, ᎠᏎᏃ ᎥᏝ ᎡᏥ ᎤᏪᏥ ᏱᎩ; ᎠᏆᏓᎵᎢᏃ ᏄᎵᏍᏔᏅᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏋᏕᎢᏍᏗᏱ ᎾᏋᏁᎸ ᎡᏙᏓ ᎦᏁᎸ ᎠᏇᏓᏍᏗᏱ, ᎯᎠ ᏅᏥᏪᏎᎸᎩ ᎠᏆᏓᎵᎢ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎣᏍᏛ ᏅᏓᏍᏆᏛᏁᎵ; ᎢᎸᎯᏢ ᎢᏂᎷᎨᏍᏗ, ᎥᎩᏙᏉ ᎭᏗᏍᎨᏍᏗ ᏍᎩᏃᎮᏍᎨᏍᏗ. ᎠᏈᎻᎴᎩᏃ ᏫᏚᏯᏅᎮ ᎠᏫ ᎤᏂᏃᏕᎾ, ᎠᎴ ᏩᎦ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎡᏆᎭᎻ ᏚᏪᎧᏁᎴᎢ, ᎠᎴ ᏔᎵᏁ ᎢᎤᏪᎧᏁᎴ ᎤᏓᎵᎢ ᏎᎵ. ᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏆᏤᎵᎪᎯ ᎦᏙᎯ ᎢᎬᏱᏗᏢ ᏕᎯᎧᏅ ᎠᎭ; ᎢᎸᎯᏢ ᎣᏏᏳ ᎯᏰᎸᏅᎭ ᎾᎿᏉ ᏩᏕᏅᎭ. ᏎᎵᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎡᎶᏙ ᏌᏉ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᎤᏂᏁᎬ ᏕᏥᎥᏏ; ᎬᏂᏳᏉ ᎾᏍᎩ ᏗᏣᎦᏚᏢᏙᏗ ᎨᏎᏍᏗ ᏕᎨᏣᎧᏂᏍᎬ ᏂᎦᏛ ᎢᏤᎲᎢ, ᎠᎴ ᏂᎦᏛ ᏅᏩᎾᏓᎴᎢ; ᎾᏍᎩ ᎯᎠ ᎾᏥᏪᏎᎴ ᎠᏥᎬᏍᎪᎸᏁᎢ. ᎡᏆᎭᎻᏃ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ; ᎤᏁᎳᏅᎯᏃ ᎤᏅᏩᏁ ᎠᏈᎻᎴᎩ, ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ; ᎠᎴ ᏚᎾᎷᎸᏁᎢ. ᏱᎰᏩᏰᏃ ᏗᎬᏩᎾᎷᎸᏗ ᏂᎨᏒᎾ ᏂᏚᏩᏁᎴ ᏂᎦᏛ ᎠᏈᎻᎴᎩ ᏚᏓᏘᎿᎥᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏎᎵ ᎡᏆᎭᎻ ᎤᏓᎵᎢ. ᎠᏯᏙᎸᎢ 21 ᏱᎰᏩᏃ ᎤᏩᏛᎯᎴ ᏎᎵ ᎾᏍᎩᏯ ᎤᏁᏨᎢ, ᎠᎴ ᏱᎰᏩ ᏄᏛᏁᎴ ᏎᎵ ᎾᏍᎩᏯ ᏄᏪᏒᎢ. ᏎᎵᏰᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎᎴ ᎡᏆᎭᎻ ᎤᏪᏥ ᎠᏧᏣ, ᎿᏉ ᎤᏛᏐᏅᎯ ᎨᏎᎢ, ᎾᎯᏳ ᏓᏁᎶᏛᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏁᎢᏍᏓᏁᎴ ᎡᏆᎭᎻ. ᎡᏆᎭᎻᏃ ᎡᏏᎩ ᏚᏬᎡ ᎤᏪᏥ ᎤᏕᏁᎸᎯ ᎾᏍᎩ ᏎᎵ ᏧᎾᏄᎪᏫᏎᎴᎢ. ᎡᏆᎭᎻᏃ ᎤᎱᏍᏕᏎᎴ ᎤᏪᏥ ᎡᏏᎩ ᏧᏁᎳᏉ ᏧᏒᎯᏛ ᎡᎯ ᎨᏎᎢ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎸᎢ. ᎡᏆᎭᎻᏃ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎤᏪᏥ ᎡᏏᎩ ᎤᏕᏁᎸ. ᏎᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᎩᏰᏣᏍᏗᏱ ᏅᎬᎦ, ᎾᏍᎩᏃ ᏂᎦᏛ ᎠᎾᏛᎩᏍᎩ ᏓᏳᏂᏰᏥ ᎠᏴ ᏅᏓᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᏰᎵ ᎯᎠ ᎢᎬᏩᏪᏎᏗ ᎨᏎ ᎡᏆᎭᎻ, ᏎᎵ ᏗᏂᏲᎵ ᏙᏛᏍᏛᏂ? ᎥᏥᎾᏄᎪᏫᏏᏰᏃ ᎤᏪᏥ ᎠᏧᏣ, ᎿᏉ ᎤᏛᏐᏅᎯ ᏥᎩ. ᎠᏲᎵᏃ ᎤᏛᏎᎢ, ᎠᎴ ᏓᏥᏍᏕᏎᎢ; ᎡᏆᎭᎻᏃ ᎤᏛᏅᎢᏍᏔᏁ ᎤᏣᏘ ᏧᎾᎵᏍᏓᏴᏗᏱ ᎾᎯᏳ ᎢᎦ ᎡᏏᎩ ᏓᏥᏍᏕᏒ. ᏎᎵᏃ ᎤᎪᎮ ᎮᎦ ᎢᏥᏈᏱ ᎤᏕᏅᎯ ᎤᏪᏥ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᎾᏄᎪᏫᏎᎴᎢ, ᎬᏩᏰᏣᏍᏗᏍᎨᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏎᎵ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎯᎨᎯᏓ ᎯᎠ ᎠᏥᎾᏝᎢ ᎠᎨᏴ, ᎠᎴ ᎤᏪᏥ; ᎥᏝᏰᏃ ᎯᎠ ᎠᎨᏴ ᎤᏪᏥ ᎠᏥᎾᏝᎢᏉ ᎢᏧᎳᎭ ᎤᎾᏘᏰᏗ ᏱᎨᏎᏍᏗ ᏧᎬᏩᎶᏗ ᎠᏴ ᎠᏇᏥ, ᎯᎠ ᎾᏍᎩ ᎡᏏᎩ. ᎯᎠᏃ ᎾᏍᎩ ᎤᏣᏘ ᎤᏲ ᎤᏓᏅᏓᏗᏍᏔᏁ ᎡᏆᎭᎻ, ᎤᏪᏥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎥᏞᏍᏗ ᎤᏲ ᏱᏣᏓᏅᏓᏗᏍᏗᏍᎨᏍᏗ ᏱᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᏍᎩᎾ ᎠᏧᏣ, ᎠᎴ ᏱᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎯᎾᏝᎢ ᎠᎨᏴ; ᏂᎦᎥᏉ ᏎᎵ ᏂᏣᏪᏎᎸ, ᎯᏯᏛᏓᏍᏓᏏᏉ ᎧᏁᎬᎢ; ᎡᏏᎩᏰᏃ ᏚᏙᎥ ᎨᏥᏯᏅᏗᏍᎨᏍᏗ ᏣᏁᏢᏔᏅᎯ. ᎠᎴ ᎾᏍᏉ ᎯᎠ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᎤᏪᏥ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏅᏓᎦᏥᏴᏁᎵ, ᏂᎯ ᏤᏥ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ. ᎡᏆᎭᎻᏃ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᎠᎴ ᎦᏚ ᎤᎩᏎ ᎠᎴ ᎠᏑᏢᏛ ᎠᎹ ᎬᏟᏍᏗ ᎤᏁᎩᏎᎢ, ᎮᎦᏃ ᏚᏁᎴᎢ, ᎠᎴ ᏓᎦᏰᏅᏔᏁᎢ, ᎠᎴ ᎠᎦᏂᎩᏍᏔᏁᎢ; ᎤᏂᎩᏎᏃ, ᎠᎴ ᏈᏯᏏᏆ ᎢᎾᎨ ᎨᏒ ᏭᏪᏙᎴᎢ. ᎠᎹᏃ ᎤᏗᏒᏁ ᎠᏑᏢᏛ ᎠᏟᏍᏛᎢ, ᎠᎴ ᎤᎾᏍᏓᎸ ᎭᏫᏂᏗᏢ ᎤᏪᎧᏁ ᎠᏧᏣ. ᎤᏪᏅᏎᏃ, ᎠᎴ ᎠᏧᏣ ᎦᏅᎬ ᏧᏳᎪᏗ ᏧᏪᏁᎢ ᏰᎵ Ꭸ ᎢᏴᏛ, ᎦᎶᏣᏗ ᏥᏂᏕᎦᎶᏄᎳ ᎢᏴᏛ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᏥᎪᎥᎩ ᎠᏧᏣ ᎠᏲᏞᏍᎬᎢ; ᎦᏅᎬᏃ ᏧᏳᎪᏗ ᎤᏬᎴᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏠᏱᎴᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᏛᎦᏁ ᎠᏧᏣ ᎤᏪᎷᎬᎢ; ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎦᎸᎳᏗ ᎢᏴᏛ ᏧᏁᏤᎴ ᎮᎦ, ᎠᎴ ᎯᎠ ᏅᏧᏪᏎᎴᎢ, ᎦᏙ ᎭᎵᏍᏗᎭ, ᎨᎦ? ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ; ᎤᏁᏔᏅᎯᏰᏃ ᎠᏛᎬᎦ ᎤᏪᎷᎬ ᎠᏧᏣ ᎾᎿ ᎦᏅᎬᎢ. ᏔᎴᎲᎦ, ᎯᏌᏔᏛᎦ ᎠᏧᏣ, ᎠᎴ ᎯᏂᏴᏎᏍᏗ; ᎤᏂᏣᏘᏰᏃ ᏴᏫ ᎤᎾᏓᏤᎵᏛ ᏅᏓᏥᏴᏁᎵ. ᎤᏁᎳᏅᎯᏃ ᏚᏍᏚᎢᎡᎴ ᏗᎦᏙᎵ, ᎠᎴ ᎤᎪᎮ ᎠᏓᎴᏒ ᎠᎴ ᎠᏢᏗᏱ; ᎤᏪᏅᏎᏃ ᎠᎴ ᎠᏑᏢᏛ ᎠᎹ ᏭᏟᏍᏔᏁᎢ, ᎠᎴ ᎤᎱᏁ ᎠᏧᏣ. ᎤᏁᎳᏅᎯᏃ ᏓᎧᎿᏩᏗᏙᎮ ᎠᏧᏣ, ᎠᎴ ᎤᏛᏎᎢ; ᎠᎴ ᎢᎾᎨᏉ ᎡᎮᎢ, ᎠᎴ ᎤᏛᏒ ᎦᎶᏣᏗ ᎦᏂᏙᎯ ᏄᎵᏍᏔᏁᎢ. ᏇᎳᏂᏃ ᏚᏙᎥ ᎢᎾᎨ ᎡᎮᎢ; ᎤᏥᏃ ᎢᏥᏈᏱ ᏭᏯᏅᎡᎴ ᎤᏓᏴᏍᏗ. ᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏈᎻᎴᎩ ᎠᎴ ᏈᎪᎵ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏓ ᎠᏈᎻᎴᎩ ᏧᏤᎵᎦ ᎤᏂᏣᏘ ᎨᏒ ᏧᏓᏘᎾᎢ, ᎬᏩᏁᏤᎴ ᎡᏆᎭᎻ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᏁᎳᏅᎯ ᏕᏣᎧᎿᏩᏗᏙᎭ ᏂᎦᎥ ᎪᎱᏍᏗ ᎭᏛᏁᎲᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏉ ᏍᏆᏎᎵᏓᏏ ᎤᏁᎳᏅᎯ ᏚᏙᏍᏛᎢ, ᎾᏍᎩ ᎦᎶᏄᎮᏛ ᏍᏋᏓᏁᏗᏱ ᏂᎨᏒᎾ, ᎠᏴ ᎠᏋᏒ, ᎠᎴ ᏗᏇᏥ, ᎠᎴ ᏗᏆᏁᏢᏔᏅᏛ; ᎾᏍᎩᏯᏍᎩᏂ ᎠᏴ ᎣᏍᏛ ᏂᎬᏯᏛᏁᎸᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᏂᏍᏆᏛᏁᎮᏍᏗ, ᎠᎴ ᎦᏓ ᎠᎲ ᎾᎿ ᏤᏙᎸᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏅᏔᏛᏁᎵ. ᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏓᎦᏎᎵᏔᏂᏉ. ᎡᏆᎭᎻᏃ ᎤᎬᏍᎪᎸᏁ ᎠᏈᎻᎴᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ, ᎾᏍᎩ ᎠᏈᎻᎴᎩ ᏧᏅᏏᏓᏍᏗ ᎬᏍᎦᎢᏍᏓᎩ ᎬᏩᎩᎡᎸᎢ. ᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᎢᏳᎾᏛᏁᎸᎯ ᎨᏒᎢ; ᎥᏝ ᎠᎴ ᏱᏍᎩᏃᏁᎴᎢ, ᎥᏝ ᎠᎴ ᏱᎦᏛᎩᏍᎨᎢ ᎩᎳ ᎪᎯ ᎢᎦ ᏥᎩ. ᎡᏆᎭᎻᏃ ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᎴ ᏩᎦ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎠᏈᎻᎴᎩ ᏚᏪᎧᏁᎴᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏂᏔᎵ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏔᏁᎢ. ᎡᏆᎭᎻᏃ ᎦᎵᏉᎩ ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᏂᎩᏏ ᎤᎾᏕᏘᏴᏛ ᎤᎾᏁᎳᎩ ᎢᏴᏛ ᏫᏚᏪᎧᏁᎢ. ᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎦᏙᏃ ᎯᎠ ᎦᎵᏉᎩ ᎠᏫ ᎠᏂᎩᏏ ᎤᎾᏕᏘᏴᏛ ᎤᎾᏁᎳᎩ ᎢᏴᏛ ᏥᏕᎯᎧᎲᎦ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎠᏍᎩᏂ ᎦᎵᏉᎩ ᎠᏫ ᎠᏂᎩᏏ ᎤᎾᏕᏘᏴᏛ ᏙᏓᏍᎩᏯᏅᎡᎵ, ᎾᏍᎩᏃ ᎬᏉᎯᏳᏓᏁᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏴ ᎠᏆᏍᎪᏒᎯ ᎨᏒ ᎯᎠ ᎠᎹ ᎠᏢᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎿ ᏈᏯᏏᏆ ᏚᏬᎡᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᎿ ᎢᏧᎳ ᎾᏍᎩ ᎠᏂᏔᎵ ᎤᎾᏎᎵᏔᏅᎢ. ᎾᏍᎩᏃ ᏈᏯᏏᏆ ᏚᏛ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏔᏁᎢ; ᎿᏉᏃ ᎠᏈᎻᎴᎩ ᏚᎴᏁᎢ, ᎠᎴ ᏈᎪᎵ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏓ ᎠᏈᎻᎴᎩ ᏧᏤᎵᎦ ᎤᏂᏣᏘ ᏧᏓᏘᎾᎢ, ᎠᎴ ᎢᎤᎾᏨᏎ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎪᎯ ᏫᎤᏂᎷᏤᎢ. [ᎡᏆᎭᎻᏃ] ᎤᏪᎧᏁ ᎡᏏᎵ ᏡᎬᎢ ᏈᏯᏏᏆ ᏚᏙᎥᎢ, ᎠᎴ ᎾᎿ ᎤᏓᏙᎵᏍᏔᏁᎴ ᏱᎰᏩ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎡᎯ ᎤᎾᎳᏅᎯ. ᎡᏆᎭᎻᏃ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎪᎯ ᎦᏙᎯ ᎪᎯᏗᏳ ᎤᏪᏙᎴᎢ. ᎠᏯᏙᎸᎢ 22 ᎣᏂᏃ ᎯᎠ ᎾᏍᎩ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᎪᎵᏰᎡ ᎡᏆᎭᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎡᏆᎭᎻ; ᎡᏆᎭᎻᏃ ᎠᏂ, ᎤᏛᏁᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᏯᏘᏄᎦ ᏤᏥ, ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᏤᏥ, ᎡᏏᎩ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎠᎨᏳᎢ ᏥᎩ, ᎠᎴ ᎼᎵᏯ ᎦᏓ ᏗᎲ ᏫᎷᎩ; ᎠᎴ ᎾᎿ ᎯᏯᎵᏍᎪᎸᏔᏅᎭ ᎠᏥᎸ ᎨᎳᏍᏙᏗ, ᎾᎿ ᎣᏓᎸ ᏨᏓᎬᏯᏎᎮᎵ. ᎡᏆᎭᎻᏃ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᎠᎴ ᎤᏪᏰᎱᎳᏁ ᎤᏤᎵ ᏗᎦᎵᏯᏅᎯᏛ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᏫᏅ ᏧᏅᏏᏓᏍᏗ ᏚᏘᏅᏎᎢ, ᎠᎴ ᎤᏪᏥ ᎡᏏᎩ, ᎠᎴ ᎠᏓ ᏚᏍᏡᏰ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᏙᏗ, ᏚᎴᏁᏃ, ᎠᎴ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏓᏁᎸ ᏭᎶᏎᎢ. ᏦᎢᏁᏃ ᎢᎦ ᎡᏆᎭᎻ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎢᏅ ᏚᎪᎮ ᎾᎿ ᏩᎦᏛᎢ. ᎡᏆᎭᎻᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᏂᏫᏅ ᏧᏅᏏᏓᏍᏗ ᎠᏂᏉ ᎢᏍᏕᏙᎮᏍᏗ ᏗᎦᎵᏯᏅᎯᏛ ᎡᏍᏗxᏘᏰᏍᏗ; ᎠᏴᏃ ᎠᎴ ᎠᏫᏄᏣ Ꭸ ᏮᏓᏲᏍᏓᏓᏙᎵᏍᏔᏂ, ᏔᎵᏁᏃ ᎢᏍᏛᎷᏤᎸᎭ. ᎡᏆᎭᎻᏃ ᎠᏓ ᏚᏴᎮ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᏙᏗ ᎠᎴ ᏚᏃᎭᏝᏗᏍᏔᏁ ᎤᏪᏥ ᎡᏴᎩ; ᎠᏥᎸᏃ ᎤᏴᏎᎢ, ᎠᎴ ᎭᏰᎳᏍᏗ ᎤᏪᏅᏎᎢ, ᎾᏍᎩᏃ ᎠᏂᏔᎵ ᎢᏧᎳᎭ ᎤᏁᏅᏎᎢ. ᎡᏏᎩᏃ ᎤᏁᏤᎴ ᎤᏙᏓ ᎡᏆᎭᎻ, ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ; ᎡᏆᎭᎻᏃ ᎠᏂ, ᎠᏇᏥ, ᎤᏛᏁᎢ, ᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎠᏉ ᎠᏥᎸ ᎠᎴ ᎠᏓ, ᎠᏫᏍᎩᏂ ᎠᏥᎸ ᎨᎳᏍᏙᏗ ᎭᏢ? ᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏇᏥ, ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᏛᏓᏩᏛᎡᎵ ᎠᏫ ᎠᏥᎸ ᎨᎳᏍᏙᏗ; ᎾᏍᎩᏃ ᎠᏂᏔᎵ ᎢᏧᎳᎭ ᎬᎾᎢᏎᏉ. ᎿᏉᏃ ᎤᏂᎷᏤ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏓᏁᎸᎢ; ᎡᏆᎭᎻᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏬᏢᏁ ᎾᎿᏂ ᎠᎴ ᎠᏓ ᎣᏍᏛ ᏚᏝᏕᎢ, ᎠᎴ ᎤᎸᎴ ᎤᏪᏥ ᎡᏏᎩ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏢᏁᎢ, ᎠᏓ ᏕᎠᏢ ᎦᏚᎢ. ᎡᏆᎭᎻᏃ ᎤᏙᏯᏅᎯᏕ ᎠᎴ ᎭᏰᎳᏍᏗ ᎤᏴᎮ ᎤᎯᏍᏙᏗ ᎤᏪᏥ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᏧᏁᏤᎴ ᎦᎸᎳᏗ, ᎯᎠ ᏅᏧᏪᏎᎢ, ᎡᏆᎭᎻ, ᎡᏆᎭᎻ: ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏂ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎯᏯᏏᏔᏛᎩ ᎠᏫᏄᏣ, ᏞᏍᏗ ᎠᎴ ᎪᎱᏍᏗ ᎯᏴᏁᎸᎩ; ᎿᏉᏰᏃ ᏥᎦᏔᎭ ᎤᏁᎳᏅᎯ ᎯᎾᏰᏍᎬᎢ, ᏂᏍᎩᎨᏳᏔᏅᎾ ᏥᎩ ᏤᏥ, ᎤᏩᏒᎯᏳ ᏤᏥ. ᎡᏆᎭᎻᏃ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᏭᎪᎮ ᎤᏐᎭᏛ ᎢᏗᏢ ᎠᏫ ᎤᏙᏕᎾ ᏧᎪᏅᏍᏓᎵ ᏧᏲᏅᎯ ᏕᎫᏓᎸᏕ ᎤᎾᏍᏓᎸᎢ; ᎡᏆᎭᎻᏃ ᎤᏪᏅᏎ ᏭᏯᏅᎮ ᎾᏍᎩ ᎠᏫ ᎤᏃᏕᎾ, ᎠᎴ ᎤᎵᏍᎪᎸᏔᏁ ᎠᏥᎸ ᎨᎳᏍᏙᏗ ᎤᏁᏟᏴᏍᏔᏁ ᎤᏪᏥ. ᎡᏆᎭᎻᏃ ᏱᎰᏩ-ᏱᎴ ᏚᏬᎡ ᎾᎿᏂ; ᎾᏍᎩ ᎩᎳᎯᏳ ᎢᎦᏪᏛ ᏥᎩ, ᏱᎰᏩ ᎤᏤᎵ ᎣᏓᎸ ᎠᏩᏛᏗ ᎨᏎᏍᏗ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᏔᎵᏁ ᎦᎸᎳᏗ ᏗᎤᏁᏤᎴ ᎡᏆᎭᎻ, ᎠᎴ ᎯᎠ ᏅᏧᏪᏎᎢ, ᎠᏋᏒ ᎨᎥ ᎠᏆᏎᎵᏙᏔᏅ, ᎠᏗᎭ ᏱᎰᏩ, ᎯᎠ ᏥᏂᏣᏛᏁᎸ, ᎠᎴ ᏤᏥ, ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᏤᏥ, ᏂᏍᎩᎨᏳᏔᏅᎾ ᏥᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎾᏍᎩ ᏂᎯ ᎤᏣᏘ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎤᏣᏘ ᏓᎦᏥᏁᏉᎢ, ᎾᏍᎩᏯ ᏥᏄᏂᏧᏈᏍᏗ ᏃᏈᏏ ᎦᎸᎳᏗ ᏣᏂᎧᎳ, ᎠᎴ ᎾᏍᎩᏯ ᏃᏳ ᏥᏄᏧᏈᏍᏗ ᎠᎺᏉᎯ ᎠᎹᏳᎶᏗ ᏥᎦᎳᎨᏯ, ᎾᏍᎩᏯ ᏅᏓᎦᏥᏴᏁᎵ; ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏧᎾᏤᎵᎦ ᎨᏎᏍᏗ ᎬᏩᏂᏍᎦᎩ ᏚᏂᏍᏚᎲᎢ. ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏄᎾᏓᎴᏒ ᏴᏫ ᎡᎶᎯ ᎠᏁᎲ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᏥᏁᎬ ᏦᎯᏳᎲᎦ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᎡᏆᎭᎻᏃ ᎠᏂᏫᏅ ᏧᏅᏏᏓᏍᏗ ᏫᏙᎤᎷᏤᎴᎢ, ᏚᎾᎴᏁᏃ, ᎠᎴ ᎢᏧᎳᎭ ᏈᏯᏏᏆ ᏭᏂᎶᏎᎢ; ᎡᏆᎭᎻᏃ ᏈᏯᏏᏆ ᏪᎮᎢ. ᎣᏂᏃ ᎯᎠ ᎾᏍᎩ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᏥᏃᏁᎴ ᎯᎠ ᏫᏥᏪᏎᎴᎢ, ᎬᏂᏳᏉ, Ꮋ﹕ᎵᎦ ᏗᏂᏲᎵ ᏚᎾᏄᎪᏫᏎᎸ ᏗᏍᏓᏓᏅᏟ ᏁᎰ, ᎭᏏ ᎤᏓᏂᎵᎨᎢ, ᏆᏏᏃ ᎤᏅᏟ, ᎠᎴ ᎨᎽᎡᎵ ᎡᎳᎻ ᎤᏙᏓ, ᎠᎴ ᎨᏎᏗ, ᎠᎴ ᎮᏐ, ᎠᎴ ᏈᎵᏓᏏ, ᎠᎴ ᏱᏗᎳᏈ, ᎠᎴ ᏇᏚᎡᎵ. ᏇᏚᎡᎵᏃ ᎤᏪᏥ ᎵᏇᎩ ᎤᏕᏁᎴᎢ; ᎾᏍᎩ ᎯᎠ ᏧᏁᎳ ᎢᏯᏂᏛ Ꮋ﹕ᎵᎦ ᏚᎾᏄᎪᏫᏎᎴ ᏁᎰ, ᎡᏆᎭᎻ ᏗᎾᏓᏅᏟ. ᏔᎵᏃ ᏧᏩᏔᏁ ᏧᏓᏴᏎ ᎵᏳᎹ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎾᏍᏉ ᏚᎾᏄᎪᏫᏎᎢ, ᏘᏆ, ᎠᎴ ᎨᎭᎻ, ᏓᎭᏏ, ᎠᎴ ᎺᎠᎧ. ᎠᏯᏙᎸᎢ 23 ᏎᎵᏃ ᎠᏍᎪᎯᏧᏈ ᎦᎵᏉᎩᏦᏁ ᎢᏳᏕᏘᏴᏛ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩ ᎯᎠ ᏄᏕᏘᏴᎮ ᎤᎴᏂᏙᎴ ᏎᎵ. ᏎᎵᏃ ᎤᏲᎱᏎ ᎩᎵᎠ-ᎠᏆ ᏚᏙᎥᎢ; ᎾᏍᎩ ᎯᎠ ᎯᏆᏂ ᏥᏚᏙᎠ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ; ᎡᏆᎭᎻᏃ ᎤᎷᏤ ᎤᏲ ᎤᏓᏅᏓᏗᎴ ᏎᎵ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ ᎠᎴ ᎤᏍᎪᏂᎵᎴᎢ. ᎡᏆᎭᎻᏃ ᏚᎴᏁ ᎤᏲᎱᎯᏎᎸᎯ ᎦᏅᎢ, ᎠᎴ ᏚᏁᏤᎴ ᎮᏗ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴ ᏅᏆᏓᎴ ᎠᎴ ᎨᏙᎯᏉ ᎢᏤᎲᎢ; ᏍᎩᎥᏏ ᏗᏆᏓᏂᏐᏗᏱ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏗᏥᏂᏐᏗᏱ ᏗᎬᎩᏲᎱᎯᏎᎸᎯ ᎾᎿ ᏗᏥᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ. ᎮᏗᏃ ᏧᏪᏥ ᎬᏩᏁᏤᎴ ᎡᏆᎭᎻ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏍᎩᏯᏛᏓᏍᏓᏏ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎤᏣᏘ ᎡᎶᎸᏉᏗᏳ ᏣᎬᏫᏳᎯ ᏥᏍᎩᏰᎳᏗᏙᎭ; ᏦᎯᏍᏙᏗ ᏦᎦᏓᏂᏐᏗᏱ ᏣᏕᎯᏂᏏᏍᎨᏍᏗ ᏗᎨ ᏲᎱᎯᏎᎸᎯ; ᎥᏝ ᎠᏏᏴᏫ ᎠᏴ ᏃᎦᏛᏅ ᏣᎨᏳᏙᏗ ᏱᎨᏎᏍᏗ ᏧᏓᏂᏐᏗᏱ; ᎾᏍᎩ ᎯᏂᏐᏗᏱ ᏂᎨᏒᎾ ᏣᏲᎱᎯᏎᎸᎯ. ᎡᏆᎭᎻᏃ ᏚᎴᏁᎢ, ᎠᎴ ᏚᏗᏌᏓᏕᎴ ᏴᏫ ᎾᎿ ᎠᏁᎯ, ᎾᏍᎩ ᎯᎠ ᎮᏗ ᏧᏪᏥ, ᎠᎴ ᏚᎵᏃᎮᏔᏁᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏳᏃ ᎣᏏᏳ ᎢᏥᏰᎸᏍᎨᏍᏗ ᏥᏂᏐᏗᏱ ᎠᎩᏲᎱᎯᏎᎸᎯ ᏥᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᏍᎩᏯᏛᎬᎦ, ᎠᎴ ᏍᎩᏍᏕᎸ ᎡᏥᏔᏲᏏ ᎢᏆᎶᏂ ᏐᎭ ᎤᏪᏥ; ᎾᏍᎩ ᎠᎩᏁᏗᏱ ᎤᏍᏓᎦᎸ ᎹᏈᎳ, ᎾᏍᎩ ᎤᏤᎵᎦ ᏥᎩ, ᎾᏍᎩ ᎤᎶᎨᏒ ᏩᏍᏛ ᏧᏍᏓᎦᎸ; ᎾᏍᎩ ᎢᎦᎢᏉ ᎠᏕᎸ ᏧᎬᏩᎶᏗ ᎨᏒ ᏓᎩᎬᏩᎶᏓᏁᎸᎭ, ᎠᎩᏁᎸᎭ, ᎠᏆᏤᎵᎦ ᏂᎦᎵᏍᏔᏅ ᎾᏍᎩ ᏗᏆᏓᏂᏐᏗᏱ ᎢᏤᎲᎢ. ᎢᏆᎶᏂᏃ ᎮᏗ ᏧᏪᏥ ᎠᏁᎲ ᎤᏓᏑᏰᎢ; ᎢᏆᎶᏂᏃ ᎠᎯᏗ ᎤᏁᏤᎴ ᎡᏆᎭᎻ ᎠᏂᎦᏔᎲ ᎮᏗ ᏧᏪᏥ, ᎾᏍᎩ ᏂᎦᏛ ᎤᏤᎵᎦ ᎦᏚᎲ ᎠᏐᏴ ᎦᎶᎯᏍᏗᏱ ᎠᏂᏴᏍᏗᏍᎩ, ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎠᏴᏍᎩᏂ ᏍᏆᏛᏓᏍᏓᏏ; ᏠᎨᏏ ᎬᎥᏏ, ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸᎢ ᎬᎥᏏ;ᏘᏆᏤᎵ ᏴᏫ ᏄᏁᏥ ᎠᏂᎦᏔᎲ ᎾᏍᎩ ᎬᎥᏏ; ᎯᏂᏌᏉ ᏣᏲᎱᎯᏎᎸᎯ. ᎡᏆᎭᎻᏃ ᎤᏗᏌᏓᏕ ᏴᏫ ᎾᎿ ᎠᏁᎯ ᎠᏂᎦᏔᎲᎢ. ᎠᎴ ᎤᏁᏤᎴ ᎢᏆᎶᏂ ᎾᎿ ᎠᏁᎯ ᏴᏫ ᎤᎾᏛᏓᏍᏛᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏍᎩᏁᎮᏍᏗ, ᎬᏔᏲᏏ ᏍᏆᏛᏓᏍᏓᏁᏗᏱ, ᎠᏕᎸ ᏙᏓᎬᏁᎵ ᏠᎨᏏ ᏓᎬᏯᏓᏴᎡᎵ; ᏗᏍᎩᎩᏏ, ᎾᎿᏃ ᏥᏂᏌᏅᎭ ᎠᎩᏲᎱᎯᏎᎸᎯ. ᎢᏆᎶᏂᏃ ᎤᏁᏤᎴ ᎡᏆᎭᎻ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎠᏴ ᏍᏆᏛᏓᏍᏓᏏ; ᎾᏍᎩ ᎦᏙᎯ ᏅᎩᏧᏈ ᏎᎩᎵ ᎠᏕᎸ ᎤᏁᎬ ᏧᎬᏩᎶᏗ; ᎦᏙᏃ ᎩᏅᏙᏗ ᎠᏴ ᎠᎴ ᏂᎯ ᎾᏍᎩᏉ ᎢᎦᎢ? ᎯᏂᏌᏉᏍᎩᏂ ᏣᏲᎱᎯᏎᎸᎯ. ᎡᏆᎭᎻᏃ ᎤᏛᏓᏍᏓᏁᎴ ᎢᏆᎶᏂ, ᎠᎴ ᎡᏆᎭᎻ ᎠᏕᎸ ᎤᏁᎬ ᎤᏓᏁᎴ ᎢᏆᎶᏂ ᎾᏍᎩ ᎢᎦᎢ ᎤᏁᎢᏍᏔᏅ ᎤᎾᏛᏓᏍᏛ ᎮᏗ ᏧᏪᏥ, ᏅᎩᏧᏈ ᏎᎩᎵ ᎠᏕᎸ ᎤᏁᎬ ᎠᏂᏃᏗᏍᎩ ᎤᏂᏃᏔᏂᏓᏍᏗ. ᎢᏆᎶᏂᏃ ᎤᎶᎨᏒ ᎹᏈᎳ ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ ᏥᎦᎶᎨᏎᎢ, ᏠᎨᏏ ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸᎢ, ᎠᎴ ᏂᎦᏛ ᏕᏡᎬ ᎾᎿ ᏠᎨᏏ, ᎭᏫᏂᏗᏢ ᏓᏟᎶᎢᏙᎸ ᎬᏩᏚᏫᏛ, ᏓᏥᏍᏓᏱᏕᎴ ᎡᏆᎭᎻ ᏧᏤᎵᎦᏯ ᏂᏓᎬᏁᎴᎢ, ᎠᏂᎦᏔᎲ ᎮᏗ ᏧᏪᏥ; ᎾᏍᎩ ᏂᎦᏛ ᎤᏪᏚᎲ ᎦᎶᎯᏍᏗᏱ ᎠᏂᏴᏍᏗᏍᎩ ᎠᏂᎦᏔᎲᎢ. ᎣᏂᏃ ᎿᏉ ᎡᏆᎭᎻ ᎤᏂᏌᏁ ᎤᏓᎵᎢ ᏎᎵ ᎹᎩᏈᎳ ᏠᎨᏏ ᎤᏍᏓᎦᎸᎢ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ ᏥᎦᎶᎨᏎᎢ; ᎾᏍᎩ ᎯᏆᏂ ᏥᏚᏙᎥ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ. ᎾᏍᎩᏃ ᏠᎨᏏ ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸᎢ, ᎮᏗ ᏧᏪᏥ ᎬᏩᏍᏓᏱᏕᎴ ᎡᏆᎭᎻ, ᎤᏤᎵᎦᏯ ᏂᎬᏩᏁᎴ ᏗᏓᏂᏐᏗᏱ. ᎠᏯᏙᎸᎢ 24 ᎡᏆᎭᎻᏃ ᎤᏛᏐᏅᎯ ᎨᏎᎢ, ᎠᎴ ᏧᏕᏘᏱᎶᏛ; ᏱᎰᏩᏃ ᏂᎦᎥ ᎪᎱᏍᏗ ᎣᏍᏛ ᎢᏳᏛᏁᎸᎯ ᎨᏎ ᎡᏆᎭᎻ. ᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏓᏂᎵᎨ ᎤᏅᏏᏓᏍᏗ ᎦᏁᎸ ᎡᎯ, ᎾᏍᎩ ᏂᎦᎥ ᎤᎿᎥ ᎤᎬᏫᏳᏌᏕᎩ, Ꭷ, ᏦᏕᏂ ᏥᎦᎶ ᎭᏫᏂᏗᏢ ᎯᏄᏴᏓ; ᎾᏍᎩᏃ ᏓᎬᏯᏎᎵᏙᏔᏂ ᏱᎰᏩ ᏚᏙᏍᏛᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᎸᎳᏗ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᎶᎯ, ᎾᏍᎩ ᎠᏂᎨᎾᏂ ᏧᏁᏥ ᏫᏯᏅᎡᏗ ᏂᎨᏒᎾ ᎠᏇᏥ ᎤᏓᏴᏍᏗ, ᎾᏍᎩᎾ ᎠᏁᎲ ᏣᏆᏓᏑᏯ; ᎠᏆᏤᎵᎪᎯᏍᎩᏂ ᏮᏘᎶᏏ, ᎠᎴ ᏗᎩᏴᏫ ᏗᏁᎲᎢ, ᎠᎴ ᎾᎿ ᏮᏘᏯᏅᎯ ᎠᏇᏥ ᎡᏏᎩ ᎤᏓᏴᏍᏗ. ᎤᏅᏏᏓᏍᏗᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᎾᏃ ᎠᎨᏴ ᏄᏚᎵᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎠᏂ ᎢᏴᏛ ᎠᎩᏍᏓᏩᏙᎯᏍᏗᏱ; ᏥᎪ ᎠᏎ ᎾᎿ ᏗᏣᏓᎴᏅ ᎢᏴᏛ ᏫᏥᏯᏗᏃᎯᏍᏗ ᎢᎨᏎᏍᏗ ᏤᏥ? ᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎠᏇᏥ ᏔᎵᏁ ᎭᎿ ᏥᏫᎯᏯᏘᏅᏍᏔᏂ. ᏱᎰᏩ ᎦᎸᎳᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏩᎩᏯᏅᏛ ᏥᎩ ᎡᏙᏓ ᎦᏁᎸ, ᎠᎴ ᏗᎩᏴᏫ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏣᎩᏁᏤᎸᎩ, ᎠᎴ ᎾᏍᎩ ᏣᏆᏎᎵᏓᏁᎸᎩ ᎯᎠ ᏥᏄᏪᏒᎩ, ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎯᎠ ᎦᏙᎯ ᏓᎦᏥᏁᎵ; ᎾᏍᎩ ᏓᎦᏅᏏ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱᏗᏢ ᏫᎦᏛᎢ, ᎠᎴ ᎭᎿ ᏮᏘᏯᏅᎯ ᎠᏇᏥ ᎤᏓᏴᏍᏗ. ᎢᏳᏃ ᎠᎨᏴ ᏄᏚᎵᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏅᏓᏣᏍᏓᏩᏛᏍᏗᏱ, ᎿᏉ ᏣᏚᏓᎴᏛ ᎨᏎᏍᏗ ᎯᎠ ᎾᏍᎩ ᏍᏆᏎᎵᏓᏁᎸᎢ; ᏞᏍᏗ ᎠᏗᎾ ᎠᏇᏥ ᏔᎵᏁ ᎾᎿ ᏥᏫᎯᏯᏘᏅᏍᏔᏂ. ᎠᏥᏅᏏᏓᏍᏗᏃ ᎤᏏᏄᏴᏔᏁ ᎤᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎦᎦᎶ ᎭᏫᏂᏗᏢ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᎬᏩᎵ ᎤᏎᎵᏓᏁᎴᎢ. ᎨᎻᎵᏃ ᏕᎤᎵᏂᏆᏅᏔᏁ ᏙᏱᏗᏢ ᎦᏚᎲᎢ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ, ᎿᏉ ᎤᏒᎯᏰᏱ ᏥᎨᏐᎢ, ᎾᏁᏳ ᎠᏂᎨᏴ·ᎠᎹ ᏥᏓᏂᏟᏍᎪᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎣᏍᏛ ᏫᎾᏆᎵᏍᏓᏏ ᎪᎯ ᎢᎦᏥᎩ, ᎠᎴ ᎣᏍᏛ ᏂᏯᏛᏂᏏ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ. ᎬᏂᏳᏉ ᎠᏴ ᎠᏂ ᏥᏙᎦ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ; ᎠᎴ ᎦᏚᎲ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᏧᏁᏥ ᎠᏂᎨᏴ ᎠᎹ ᏓᏂᏢᎯᎯᎭ; ᎯᎠᏃ ᏫᏂᎦᎵᏍᏓ, ᎾᏍᎩ ᎠᏛ ᎯᎠ ᏂᏥᏪᏎᎸᎭ, ᎡᎳᏗ ᏅᎦ ᎠᎹ ᏣᏟᏍᏗ, ᎠᎴ ᎦᏗᏔ; ᎯᎠᏃ ᎾᎩᏪᏎᎸᎭ, ᎭᏗᏔ, ᎠᎴ ᎾᏍᏉ ᎨᎻᎵ ᏙᏓᎬᏯᏗᏔᏍᏓᏁᎵ; ᎾᏍᎩ ᎯᏅᏏᏓᏍᏗ ᎡᏏᎩ ᎯᏯᏑᏯᎡᎸᎯ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ ᎦᏙᎴᎣᎯᏍᏔᏅᎭ ᎣᏍᏛ ᏂᏯᏛᏁᎸ ᎠᎩᏅᏏᏙᎯ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏏᏉ ᏄᏁᏦᏅᎾ ᎨᏎᎢ, ᎾᏍᎩ ᎬᏂᏳᏉ ᏧᏄᎪᏤᎢ, ᎠᎹ ᎠᏟᏍᏗ ᎤᏃᎭᏝᎮᎢ ᎵᏇᎩ ᎾᏍᎩ ᏇᏚᎡᎵ ᎤᏕᏁᎸᎯ, ᎾᏍᎩ ᎤᏪᏥ Ꮋ﹕ᎵᎦ ᏁᎰ ᎡᏆᎭᎻ ᏗᎾᏓᏅᏟ ᎤᏓᎵᎢ. ᎾᏍᎩᏃ ᎠᏛ ᎤᏣᏘ ᎤᏬᏚᎯᏳ ᎨᏎ ᏗᎧᏃᏗᏱ, ᎠᏥᏴᏛ ᏂᎨᏒᎾ, ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏍᎦᏯ ᎤᎦᏙᎥᏒᎯ ᏱᎨᏎᎢ; ᎠᎹᏃ ᎠᏢᏗᏱ ᎠᏓᎴᏒ ᏭᏴᎴᎢ, ᎠᎴ ᎠᎹ ᎠᏟᏍᏗ ᏭᎧᎵᏎᎢ ᏗᎤᏄᎪᏤᏃ. ᎠᏥᏅᏏᏓᏍᏗᏃ ᏚᏍᏆᎸᏔᏁ ᏫᏚᏠᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏍᏗ ᎠᎹ ᎬᏯᏗᏔᏏ ᏣᏟᏍᏛᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎭᏗᏔ ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ; ᎤᎵᏍᏗᏳᏃ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᎹ ᎠᏟᏍᏗ ᎠᏰᎲᎢ, ᎤᏬᏰᏂ ᎤᏝᏁᎢ, ᎠᎴ ᎤᎱᏁᎢ. ᎿᏉᏃ ᎤᎱᏃᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᏉ ᎨᎻᎵ ᏗᏣᏤᎵᎦ ᎠᎹ ᏓᎦᏥᏢᎡᎵ ᎬᏂ ᏓᎾᏗᏔᎰᏅᎭ. ᎤᎵᏍᏗᏳᏃ ᎠᎹ ᎠᏟᏍᏗ ᎠᏰᎲ ᏥᏳᎯ ᏭᏟᏍᏔᏁᎢ, ᏔᎵᏁᏃ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒ ᏭᏗᏢᏍᏔᏁᎢ ᎠᎹ ᏭᏢᎮᎢ, ᏂᎦᏛᏃ ᎨᎻᎵ ᏚᏢᎡᎴᎢ. ᎠᏍᎦᏯᏃ ᎠᏍᏆᏂᎪᎯᏎᎲ ᎠᎨᏴ ᎡᎳᏪᏉ ᎤᏯᏎᎢ, ᎠᏓᏅᏖᏍᎨ ᏥᎪ ᏱᎰᏩ ᎣᏍᏛ ᎾᏆᏛᏂᏏ ᎨᏍᏙᎲᎢ, ᎡᎵᏍᎨᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎨᎻᎵ ᏚᎾᏘᏔᎰᏅ, ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎵᏴᏌᏙᏗ ᏭᎴᏎᎢ, ᎠᏰᎵ ᏎᎩᎵ ᎢᏳᏓᎨᏛ, ᏔᎵᏃ ᏧᏬᏰᏂ ᏧᎵᏰᏠᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᏍᎪᎯ ᏎᎩᎵ ᎢᏳᏓᎨᏛ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎪ ᎤᏪᏥ ᏂᎯ? ᏍᎩᏃᎲᏏ; ᏥᎪ ᏰᎵᏉ ᎤᏜᏅᏛ ᏣᏙᏓ ᎦᏁᎸ ᎣᎩᏒᏍᏗᏱ? ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏇᏚᎡᎵ ᎤᏪᏥ ᎠᏴ, ᎾᏍᎩ Ꮋ﹕ᎵᎦ ᎤᏪᏥ ᏁᎰ ᏧᎷᎸᏁᎴᎢ. ᎯᎠᏃ ᎾᏍᎪ ᏂᎤᏪᏎᎴᎢ, ᎢᏧᎳ ᎧᏁᏍᎦ ᎠᎴ ᎨᎶᎸᏗ ᏰᎵᏉ ᎣᎩᎭ, ᎠᎴ ᎤᏜᏅᏛᏉ ᎠᏒᏍᏗᏱ. ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎡᎳᏗ ᏄᏛᏁᎴᎢ, ᎠᎴ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎠᎩᏅᏏᏙᎯ ᎤᏤᎵᎦ; ᎾᏍᎩ ᏄᏲᎯᏍᏔᏅᎾ ᏥᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏤᎵᎦ ᏚᏳᎪᏛ ᎨᏒᎢ; ᏅᏃᎯᏰᏃ ᎠᏆᏕᏙᏯᏗᏒᎢ, ᏱᎰᏩ ᎠᏆᏘᏃᎦ ᎠᎩᏅᏏᏙᎯ ᎠᎾᎵᏅᏟ ᎠᏂᏁᎸᎢ. ᎾᏍᎩᏃ ᎠᏛ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᎤᏥ ᎦᏁᎸᎢ ᏫᏚᏃᏁᎴ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᎵᏇᎩᏃ ᎤᏙ ᎡᎮᎢ, ᎠᎴ ᎴᏆᏂ ᏚᏙᎡᎢ; ᎴᏆᏂᏃ ᎤᏄᎪᏤ ᏭᏗᏢᏍᏔᏁ ᎠᏍᎦᏯ ᏤᏙᎲ, ᎾᏍᎩ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎠᎢᏴᏌᏙᏗ ᎤᏙᎲ, ᎠᎴ ᏗᎵᏰᏠᏍᏗ ᎤᏙ ᏧᏬᏰᏂ ᏚᎵᏰᏠᎲ ᏚᎪᎲ, ᎠᎴ ᎤᏛᎦᏅ ᎵᏇᎩ ᎤᏙ ᎧᏁᎬᎢ, ᎯᎠ ᏂᎦᏪᏍᎬᎢ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏭᎷᏤᎴ ᎠᏍᎦᏯ, ᎠᎴ ᎬᏂᏳᏉ, ᎨᎻᎵ ᎠᏂᏙᎾᎥ ᎦᏙᎨᎢ ᎠᎴ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎡᎯᏴᎭ, ᏱᎰᏩ ᎣᏍᏛ ᎢᏣᏛᏁᎸᎯ, ᎦᏙᏃ ᏙᏱᏗᏢᏉ ᏗᎯᏙᎦ? ᎠᏆᏛᏅᎢᏍᏔᏅᏰᏃ ᎦᎵᏦᏕ, ᎠᎴ ᎨᎻᎵ ᎤᏂᏴᏍᏗᏱ. ᎠᏍᎦᏯᏃ ᎦᎵᏦᏕ ᎤᏴᎴᎢ; ᎨᎻᎵᏃ ᏚᏍᏆᏓᏃᏴᎮᎢ, ᎧᏁᏍᎦᏃ ᎠᎴ ᎨᎶᎸᏗ ᏚᏁᎴ ᎨᎻᎵ, ᎠᎴ ᎠᎹ ᎤᏁᏁᎴ ᏧᎳᏏᏕᏂ ᏧᏬᏑᎴᏗ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎲ ᏧᎾᎳᏏᏕᏂ ᏧᏃᏑᎴᏗ. ᎿᏉᏃ ᎠᏥᏝᏁᎴ ᎤᎵᏍᏓᏴᏗ; ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎦᎦᎵᏍᏓᏴᎲᎦ ᎬᏂ ᏥᏃᏅᎭ ᏄᏍᏛ ᎠᎣᎮᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎯᏁᎩ ᎠᏗᎾ, ᎤᏛᏁᎢ. ᎯᎠᏃ ᏄᏪᎡᎢ, ᎠᏴ ᎡᏆᎭᎻ ᎠᎩᏅᏏᏓᏍᏗ. ᏱᎰᏩᏃ ᎤᏣᏘ ᎣᏍᏛ ᏄᏛᏁᎸ ᎠᎩᏅᏏᏙᎯ; ᎠᎴ ᎠᏥᎸᏉᏗᏳ ᏄᎵᏍᏔᏅ; ᎠᎴ ᎠᏫ, ᎠᎴ ᎦᎾᏜᎢ ᏚᏪᎧᏁᎸ, ᎠᎴ ᎠᏕᎸ ᎤᏂᏁᎬ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏁᎸ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎨᎻᎵ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ ᏚᏪᎧᏁᎸ. ᎠᎴ ᏎᎵ ᎠᎩᏅᏏᏙᎯ ᎤᏓᎵᎢ, ᎠᎩᏅᏏᏙᎯ ᎤᎷᎸᏁᎸᎩ ᎠᏧᏣ ᎿᏉ ᎠᎦᏴᎵᎨ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎤᏁᎸ ᏂᎦᎥ ᎤᎿᎥᎢ. ᎠᎩᏅᏏᏙᎯᏃ ᎠᏆᏎᎵᏙᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎥᏞᏍᏗ ᎯᏯᏅᏗ ᏱᎨᏎᏍᏗ ᎠᏇᏥ ᎤᏓᏴᏍᏗ, ᎠᏂᎨᎾᏂ ᏧᏁᏥ ᎾᏍᎩ ᎤᎾᏤᎵᎪᎯ ᎦᏙᎯ ᏥᎨᎠ; ᎡᏙᏓᏍᎩᏂ ᏧᏪᏥᏛᎯ ᏗᏁᎲ ᏮᏘᎶᏏ, ᎠᎴ ᏗᎩᏴᏫ ᏗᏁᎲᎢ, ᎠᎴ ᎠᏇᏥ ᎤᏓᏴᏍᏗ ᏮᏘᏯᏅᎯ. ᎯᎠᏃ ᏅᏥᏪᏎᎸᎩ ᎠᎩᏅᏏᏙᎯ, ᏅᏓᎬᎩᏍᏓᏩᏛᏍᏗᏉ ᏂᎨᏒᎾ ᏱᎩ ᎠᎨᏴ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᏱᎰᏩ, ᎾᏍᎩ ᎠᎦᏔᎲ ᏂᎦᎴᏂᏙᎭ, ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᏓᎦᏅᏏ, ᎠᎴ ᎣᏍᏛ ᎤᏓᏨᏁᎵ ᎭᎢᏒᎢ; ᎠᎴ ᏮᏘᏯᏅᎯ ᏇᏥ ᎤᏓᏴᏍᏗ ᏗᎩᏴᏫ ᏗᏁᎲᎢ, ᎠᎴ ᎡᏙᏓ ᏧᏪᏥᏛᎯ ᏗᏁᎲᎢ. ᎿᏉᏃ ᎥᏝ ᏱᏣᏚᏓᎴᏍᏗ ᏍᏆᏎᎵᏓᏁᎸᎢ; ᏗᎩᏴᏫ ᏗᏁᎲ ᏫᎷᏨᎭ, ᎠᎴ ᏂᎨᏣᎧᏁᎸᎾ ᎢᎨᏎᏍᏗ, Ꮼ ᏣᏚᏓᎴᏛ ᎨᏎᏍᏗ ᏍᏆᏎᎵᏓᏁᎸᎢ. ᎠᎴ ᎪᎯ ᎢᎦ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒ ᏛᎩᎷᏨᎩ, ᎠᎴ ᎯᎠ ᎢᏪᏒᎩ, ᏱᎰᏩ ᏣᏁᎳᏛᎯ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎢᏳᏃ ᎣᏍᏛ ᏂᏨᎿᏗᏎᏍᏗ ᎦᎢᏒᎢ; ᎬᏂᏳᏉ ᎠᎹ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎤᎶᏗᏢ ᏥᏙᎦ; ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᎠᏛ ᏗᎦᏄᎪᏨ ᎠᎹ ᎠᏢᎰᎸᎭ, ᎠᎴ ᎯᎠ ᏂᏥᏪᏎᎸᎭ, ᎤᏍᏗ ᎠᎹ ᏣᏟᏍᏛ ᏍᎩᏁᎲᏏ ᎠᏆᏗᏔᏍᏗ; ᎯᎠᏃ ᎾᎩᏪᏎᎸᎭ, ᎭᏗᏔ ᏂᎯ, ᎠᎴ ᎾᏍᏉ ᏙᏓᏥᏢᎡᎵ ᎨᎻᎵ ᏗᏣᏤᎵᎦ; ᎾᏍᎩ ᎨᏎᏍᏗ ᎠᎨᏴ ᏱᎰᏩ ᎤᏑᏯᎡᎸᎯ ᎠᎩᏅᏏᏙᎯ ᎤᏪᏥ. ᎠᏏᏉᏃ ᏗᏆᏓᏅᏛ ᏂᏥᏁᏦᎲᏍᎬᎾ ᎨᏒᎩ, ᎬᏂᏳᏉ ᎵᏇᎩ ᎤᎷᏨᎩ ᎠᎹ ᎠᏟᏍᏗ ᎤᏃᎭᏝᎲᎩ; ᎠᎹᎣ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᏭᎦᏐᎠᏒᎩ, ᎠᎴ ᏭᏢᎲᎩ; ᎯᎠᏃ ᏂᏥᏪᏎᎸᎩ, ᎦᏗᏔ. ᎤᎵᏍᏗᏳᏃ ᎤᏃᎭᏞᏒᎩ ᎠᎹ ᎠᏢᏗ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎭᏗᏔ, ᎠᎴ ᎾᏍᏉ ᎨᎻᎵ ᏙᏓᎦᏗᏔᏍᏔᏂ; ᎰᏩᏃ ᎠᏆᏗᏔᎲᎩ, ᎠᎴ ᎾᏍᏉ ᎨᎻᎵ ᏚᏗᏔᏍᏔᏅᎩ. ᎥᏥᏯᏛᏛᏅᎩᏃ ᎯᎠ ᏅᏥᏪᏎᎸᎩ, ᎦᎪ ᎤᏪᏥ ᏂᎯ? ᎯᎠᏃ ᏄᏪᏒᎩ, ᏇᏚᎡᎵ ᎤᏪᏥ, ᎾᏍᎩ ᏁᎰ ᎤᏪᏥ, Ꮋ﹕ᎵᎦ ᎤᎾᏄᎪᏫᏎᎸᎯ; ᎠᎴ ᎠᎵᏴᏌᏙᏗ ᎥᏥᏴᏌᏔᏅᎩ, ᎠᎴ ᏗᎵᏰᏠᏍᏗ ᏙᏥᏰᏠᏍᏔᏅᎩ ᏧᏬᏰᏂ. ᎡᎳᏗᏃ ᎾᏆᏛᏁᎸᎩ, ᎠᎴ ᏱᎰᏩ ᎥᏥᏯᏓᏙᎵᏍᏓᏁᎸᎩ, ᎠᎴ ᏥᎸᏉᏔᏅᎩ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏚᏳᎪᏛ ᏨᏗᏆᏘᏅᏍᏔᏅ, ᎾᏍᎩ ᎠᎩᏅᏏᏙᎯ ᏗᎾᏓᏅᏟ ᎤᏪᏥ ᎠᎨᏴ ᏥᏯᏘᏅᎡᏗᏱ [ᎠᎩᏅᏏᏙᎯ] ᎤᏪᏥ ᎠᏫᏅ. ᎿᏉᏃ ᎢᏳ ᎠᎩᏅᏏᏙᎯ ᎣᏍᏛ ᎠᎴ ᏚᏳᎪᏛ ᏅᏤᏣᏛᏁᎵᏎᏍᏗ, ᏍᎩᏃᎲᏏ; ᎢᏳ ᎠᎴ ᏱᏝ, ᏍᎩᏃᎲᏏ; ᎾᏍᎩ ᏥᎦᏘᏏ ᎠᎴ ᏥᎦᏍᎦᏂ ᎢᏗᏢ ᏩᏆᎪᎸᏍᏙᏗᏱ. ᎿᏉᏃ ᎴᏆᏂ ᎠᎴ ᏇᏚᎡᎵ ᏧᏂᏁᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏱᎰᏩ ᎤᏓᏅᏖᎸᎯ ᎯᎠ; ᎥᏝᏃ ᎨᏍᏛᏁᏤᏗ ᏱᎩ ᎤᏲ ᎠᎴ ᎣᏍᏛ. ᎬᏂᏳᏉ ᎵᏇᎩ ᎢᎬᏱᏗᏢ ᎤᏬᎳ, ᎯᏯᏘᏄᎦ, ᎠᎴ ᏥᎮᎾ, ᏣᏅᏏᏙᎯᏃ ᎤᏪᏥ ᎤᏓᎵᎢ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏒᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏅᏏᏓᏍᏗ ᎤᏛᎦᏅ ᎠᏂᏁᎬᎢ, ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ ᎡᎳᏗ ᎢᏗᏢ ᏄᏛᏁᎴᎢ. ᎠᏥᏅᏏᏓᏍᏗᏃ ᏚᎾᏄᎪᏫᏎ ᎠᏣᏅᎩ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏗᏄᏬ, ᎵᏇᎩᏃ ᏕᎤᏲᎯᏎᎴᎢ; ᎠᎴ ᎾᏍᏉ ᎤᏙ ᎠᎴ ᎤᏥ ᏧᏓᎴᏅᏛ ᏗᎦᎸᏉᏗ ᏚᏁᎴᎢ. ᎤᎾᎵᏍᏓᏴᏁᏃ ᎠᎴ ᏚᎾᏗᏔᎮᎢ, ᎤᏩᏒ ᎠᎴ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎲᎢ, ᎠᎴ ᎤᏂᏒᎴᎢ. ᏑᎾᎴᏃ ᎤᎾᏗᏓᏁᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏥᏍᎩᏯᏂᎩᏍᏓ ᎠᎩᏅᏏᏙᎯ ᏤᎲᎢ ᏫᏥᎶᎢ. ᎵᎢᏃ ᏅᏙ ᎠᎴ ᎤᏥ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏏ ᎠᏍᎪᎯ ᎢᏴᏛ ᏧᏒᎯᏛ ᏬᎨᎳᏗᏓ ᎠᏛ; ᎣᏂᏃ ᎩᎳ ᎡᏒᎭ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᏞᏍᏗ ᏍᏉᎯᏕᎸᎩ ᎬᏂᏳᏰᏃ ᏱᎰᏩ ᎣᏍᏛ ᎾᏆᏛᏂᏏ ᎨᏙᎲᎢ; ᏥᏍᎩᏯᏂᎩᏍᏓ, ᎠᎩᏅᏏᏙᎯ ᏧᏬᎸ ᏫᏥᎶᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎠᏛ ᏮᏓᏲᎯᏯᏅᎯ, ᎠᎴ ᎾᏍᎩ ᏓᏲᏣᏛᏛᏂ. ᎵᏇᎩᏃ ᏭᏂᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏓᏍᏕᏏᏍᎪ ᎯᎠ ᎠᏍᎦᏯ? ᎯᎠᏃ ᏄᏪᏎᎢ; ᏓᎨᏏᏉ. ᎤᎾᏂᎩᏍᏔᏁᏃ ᎤᏂᏙ ᎵᏇᎩ ᎠᎴ ᎤᏍᏛᏅᎯ ᎠᎴ ᎡᏆᎭᎻ ᎤᏅᏏᏓᏍᏗ ᎠᎴ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎲᎢ. ᎣᏍᏛᏃ ᎤᏂᏁᏤᎴ ᎵᏇᎩ, ᎯᎠ ᏄᏂᏪᏎᎴᎢ; ᎣᎩᏙ ᏂᎯ, ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎤᎦᏴᎳᏥᎶᏛ ᎿᎵᏍᏓᏅᎭ; ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏧᎾᏤᎵᎦ ᎨᏎᏍᏗ ᎬᏩᏂᏍᎦᎽ ᏚᏂᏍᏚᎲᎢ. ᎵᏇᎩᏃ ᏚᎴᏁᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵᎦ ᎠᎾᏛ, ᎠᎴ ᎨᎻᎵ ᏚᎾᎩᎸᏔᏁᎢ, ᎠᎴ ᎤᏂᏍᏓᏩᏛᏎ ᎾᏍᎩ ᎠᏍᎦᏯ. ᎠᎴ ᎾᏍᎩ ᎠᏥᏅᏏᏔᏍᏗ ᎤᏘᏅᏎ ᎵᏇᎩ ᎠᎴ ᎤᏂᎩᏎᎢ. ᎡᏏᎩᏃ ᎳᎭᎢᎶᎢ ᎠᎹ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎢᏗᏢ ᏧᎶᏎᎢ; ᏧᎦᎿᏮᏰᏃ ᎢᏗᏢ ᎡᎮᎢ. ᎡᏏᎩᏃ ᎤᏒᎯᏰᏱ ᎨᏒ ᏠᎨᏏ ᏭᎶᏎᎢ ᎤᏓᏅᏖᎵᏙᎸᏎᎢ; ᏗᎦᏙᎵᏃ ᏚᏌᎳᏓᏁᎢ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ ᎨᎻᎵ ᏗᎾᎢᏎᎢ. ᎵᏇᎩᏃ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ, ᏒᏏᎩᏃ ᎤᎪᎲ, ᎤᏠᎠᏎ ᎨᎻᎵᎯ. ᎯᎠᏰᏃ ᎢᏳᏪᏎᎸᎯ ᎨᏎ ᎠᏥᏅᏏᏓᏍᏗ; ᎦᎪ ᎢᏳᏍᏗ Ꮎ ᎠᏍᎦᏯ ᏠᎨᏏ ᏨᏓᏯᎢ ᏥᏙᏓᎦᏠᏏ? ᎠᏥᏅᏏᏓᏍᏗᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏎᎢ, ᎠᎩᏅᏏᏙᎯ ᎾᏍᎩ. ᎾᏍᎩᏃ ᏗᎦᏚᏢᏙᏗ ᏚᎦᏚᏢᏔᏁᎢ. ᎠᏥᏅᏏᏓᏍᏗᏃ ᎤᏃᏁᎴ ᎡᏏᎩ ᏂᎦᎥ ᏄᏛᏁᎵᏙᎸᎢ. ᎡᏏᎩᏃ ᎤᏘᏃᎴ ᎵᏇᎩ ᎤᏥ ᏎᎵ ᎤᎵᏦᏛᎢ, ᎠᎴ ᎤᏯᏅᎮ ᎵᏇᎩ, ᎤᏓᎵᎢᏃ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᎨᏳᎯᏳ ᎨᏎᎢ; ᎡᏏᎩᏃ ᎤᎦᎵᏍᏙᏎ ᎤᏥ ᎿᏉ ᎤᏲᎱᏒ. ᎠᏯᏙᎸᎢ 25 ᎡᏆᎭᎻᏃ ᏔᎵᏁ ᎤᏓᎵᎢ ᎤᏩᏛᎮᎢ, ᎠᎴ ᎩᏚᎳ ᏚᏙᎡᎢ. ᎠᎴ ᎾᏍᎩ ᏚᎷᎸᏁᎴ ᏏᎻᎳᏂ, ᎠᎴ ᏲᎩᏌᏂ, ᎠᎴ ᎻᏓᏂ, ᎠᎴ ᎻᏗᏯᏂ, ᎠᎴ ᏱᏏᏆᎩ, ᎠᎴ ᏑᎠ. ᏲᎩᏌᏂᏃ ᏏᏱᏆ ᎠᎴ ᏗᏓᏂ ᎬᏩᏕᏁᎴᎢ. ᏗᏓᏂᏃ ᏧᏪᏥ ᎠᏁᎮᎢ, ᎠᏂᎠᏑᎵ, ᎠᏂᎵᏚᏏ, ᎠᎴ ᎠᏂᎵᎤᎻ. ᎻᏗᏯᏂᏃ ᏧᏪᏥ, ᎢᏆ, ᎠᎴ ᎢᏆᎵ, ᎠᎴ ᎭᏃᎩ, ᎠᎴ ᎠᏡᏓ, ᎠᎴ Ꭱ﹕ᎵᏓᎠ. ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎩᏚᎳ ᏧᏪᏥ ᎨᏎᎢ. ᎡᏆᎭᎻᏃ ᏂᎦᏛ ᎤᎿᎥ ᎡᏏᎩ ᎤᏁᎴᎢ. ᏔᎵᏍᎩᏂ ᏂᏚᏮᏕ ᏥᏓᏓᏰᎮ ᎡᏆᎭᎻ ᎾᏍᎩ ᏧᏁᏥ ᎪᎱᏍᏗ ᏚᎵᏍᎪᎸᏓᏁᎴᎢ, ᎠᎴ ᏚᏪᎧᎲᏎ ᎤᏪᏥ ᎡᏏᎩ ᎡᎲᎢ, ᏗᎧᎸᎬ ᎢᏗᏢ ᏚᏅᏎ ᏗᎧᎸᎬ ᎢᏗᏢ ᎦᏓ ᏗᎲ ᏚᏅᏎᎢ, ᎠᏏᏉ ᎤᏩᏒ ᎡᎮᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏂᎦᎥ ᏚᎩᏨᏅᏒ ᎠᎴ ᏚᏕᏘᏱᎶᎥ ᎤᎴᏂᏙᎸ ᎡᏆᎭᎻ, ᎠᏍᎪᎯᏧᏈ ᎦᎵᏆᏍᎪᎯ ᎦᏍᎩᎦᎵ ᏧᏕᏘᏴᏛ. ᎡᏆᎭᎻᏃ ᎤᏲᎯᏍᏔᏁ ᎬᏬᎳᏕᏍᎬ, ᎠᎴ ᎣᏍᏛ ᎤᎦᏴᎳᏨᎯ ᎤᏲᎱᏎᎢ, ᎤᏛᏐᏅᎯ, ᎠᎴ ᏧᏕᏘᏱᎶᏛ ᎨᏎᎢ. ᎠᎴ ᏧᏤᎵ ᏴᏫ ᏄᎾᏛᏅ ᏭᏖᎳᏕᎢ. ᏧᏪᏥᏃ ᎡᏏᎩ ᎠᎴ ᎢᏏᎺᎵ ᎬᏩᏂᏌᏁ ᎤᏍᏓᎦᎸ ᎹᏡᎳ, ᎢᏆᎶᏂ ᎤᎶᎨᏒᎢ ᏐᎠ ᎠᎯᏗ ᎤᏪᏥ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ ᏥᎩ; ᎾᏍᎩ ᏠᎨᏏ ᎡᏆᎭᎻ ᏥᏚᏩᏎᎴ ᎮᏗ ᏧᏪᏥ; ᎾᎿ ᎠᏥᏂᏌᏁ ᎡᎠᎻ, ᎠᎴ ᏎᎵ ᎾᏍᎩ ᎤᏓᎵᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎡᏆᎭᎻ ᎿᏉ ᏄᏲᎱᏐᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᏄᏛᏁᎴ ᎡᏏᎩ; ᎡᏏᎩᏃ ᎳᎭᎢᎶᎢ ᎠᎹ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎦᏁᎴᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏂᎤᏍᏗ ᎢᏏᎺᎵ ᎡᏆᎭᎻ ᎤᏪᏥ ᎤᏁᏢᏔᏅᏒᎢ, ᎾᏍᎩ ᎮᎦ ᎢᏥᏈᏱ ᎤᏕᏅᎯ, ᏎᎵ ᎤᏅᏏᏓᏍᏗ, ᎡᏆᎭᎻ ᏧᎾᏄᎪᏫᏎᎴᎢ; ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᎢᏏᎺᎵ ᏧᏪᏥ, ᏚᎾᏙᎠᏗᏒ ᎾᏍᎩ ᏄᏍᏛ ᏚᎾᏁᏢᏔᏅᏒᎢ; ᎢᎬᏱ ᎡᎯ ᎢᏏᎺᎵ ᎤᏪᏥ, ᏂᏆᏲᏗ; ᎩᏓᏃ, ᎠᎴ ᎠᏗᏈᎵ, ᎠᎴ ᎻᏈᏌᎻ, ᎠᎴ ᎻᏏᎹ, ᎠᎴ ᏚᎹ, ᎠᎴ ᎹᏌ, ᎮᏓ, ᎠᎴ ᏗᎹ, ᎠᎴ ᏱᏓ, ᎠᎴ ᎾᏈᏏ, ᎠᎴ ᏱᏗᎹ; ᎯᎠ ᎾᏍᎩ ᎢᏏᎺᎵ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᏚᏂᏚᏩᏗᏒᎢ, ᎠᎴ ᏚᎾᏐᏯᏗᏒᎢ; ᏔᎳᏚ ᎤᏂᎬᏫᏳᎯ ᎾᏍᎩᏯ ᏂᎦᎥ ᎠᏰᎵ ᏚᏃᏢᏩᏗᏒᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏕᏘᏴᎮ ᎢᏏᎻᎵ ᎤᎴᏂᏙᎴᎢ, ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎦᎵᏉᎩᎦᎵ ᎦᎵᏉᎩᎦᎵ ᏧᏕᏘᏴᏛ; ᎤᏲᎯᏍᏔᏁᏃ ᎬᏬᎳᏕᏍᎬ, ᎠᎴ ᎤᏲᎱᏎᎢ; ᎠᎴ ᏧᏤᎵᎦ ᏴᏫ ᏄᎾᏛᏅ ᏭᏖᎳᏗᎴᎢ. ᎭᏈᎳᏃ ᎤᏓᎴᏅᏛ ᏒᎵ ᏫᎬᏍᏗ ᎠᏁᎮᎢ, ᎾᏍᎩ ᎢᏥᏈ ᎢᎬᏱᏗᏢ ᏥᎩ, ᎠᏏᎵᏯ ᏥᏮᎦᏙᎢ. ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᎠᏂᎦᏔᎲ ᎤᏲᎱᏎᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎡᏏᎩ ᎡᏆᎭᎻ ᎤᏪᏥ ᎤᏁᏢᏔᏅᏒᎢ; ᎡᏆᎭᎻ ᎡᏏᎩ ᎤᏕᏁᎴᎢ. ᎡᏏᎩᏃ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎵᏇᎩ ᎤᏓᏰᏅ, ᎾᏍᎩ ᏇᏚᎡᎵ ᏏᎵᏱ ᎡᎯ ᎤᏪᏥ, ᏇᏓᏁᎳᎻ ᏥᎦᏁᎴᎢ, ᎾᏍᎩ ᎤᏙ ᎴᏆᏂ ᏏᎵᏱ ᎡᎯ. ᎡᏏᎩᏃ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴ ᎤᏓᎵᎢ ᎤᎬᏩᎵ, ᏂᏓᎷᎸᎥᏍᎬᎾᏰᏃ ᎨᏎᎢ; ᏱᎰᏩᏃ ᎤᏛᏓᏍᏓᏁᎴᎢ, ᎤᏓᎵᎢᏃ ᎵᏇᎩ ᎤᏁᎵᏤᎢ. ᏗᏂᏲᎵᏃ ᏓᎾᏟᏱᏍᎨ ᎬᏩᏯᎥᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏥᎾᏆᏍᏗ? ᎤᏪᏅᏎᏃ ᏱᎰᏩ ᎤᏛᏛᏅᏎᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᎵ ᎢᏯᏂᎵᏍᏓᎳ ᏴᏫ ᏕᎯᏁᎵ, ᎠᎴ ᏔᎵ ᎢᏳᎾᏓᎴᎩ ᏴᏫ ᏙᏘᎾᏄᎪᏫᏏ; ᏑᎾᏓᎴᎩᏃ ᎾᏍᎩ ᏴᏫ ᎤᏟ ᏄᎾᎵᏂᎬᎨᏍᏗ ᎡᏍᎦᏉ ᎠᏂᏐᎢ ᏴᏫ; ᎤᏓᏂᎵᎨᏃ ᏕᎤᏁᎶᏕᏍᏗ ᎣᏂ ᎡᎯ. ᏧᎾᏄᎪᏫᏍᏗᏱᏃ ᎤᏍᏆᎸᎲ, ᎬᏂᏳᏉ ᏗᏂᎳᏫ ᏕᎦᏁᎵᏎᎢ. ᎢᎬᏱᏃ ᎠᏬᏗᎨ ᏧᎾᏄᎪᏤᎢ, ᏂᎬ ᎠᏄᏬ ᎤᏂᏆᏟ ᎾᏍᎩᏯ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎢᏐ ᏚᏃᎡᎢ. ᎣᏂᏃ ᎤᏅᏟ ᎤᎾᏄᎪᏤᎢ, ᎾᏍᎩᏃ ᎤᏪᏰᏂ ᎢᏐ ᏌᏗᎨᏂ ᎤᏂᏴᎮᎢ; ᏤᎦᏈᏃ ᏚᏃᎡᎢ; ᎡᏏᎩᏃ ᏑᏓᎳᏍᎪᎯ ᎢᏳᏕᏗᏴᏛ ᎨᏎ ᎵᏇᎩ ᏚᎷᎸᏅ. ᎠᏂᏧᏣᏃ ᏚᎾᏛᏎᎢ; ᎢᏐᏃ ᎠᏏᎾᏌᏂ ᎦᏃᎯᎵᏙᎯ ᎨᏎᎢ, ᎢᎾᎨ ᎡᏙᎯ ᎨᏎᎢ; ᏤᎦᏈᏃ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎨᏎᎢ, ᏕᎦᎵᏦᏛᏉ ᎡᎯ ᎨᏎᎢ. ᎡᏏᎩᏃ ᎢᏐ ᎤᎨᏳᎯᏳ ᎨᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᏫ ᎤᏫᏯ ᎠᎩᏍᎬᎢ; ᎵᏇᎩᏍᎩᏂ ᏤᎦᏈ ᎤᎨᏳᎯᏳ ᎨᏎᎢ. ᏤᎦᏈᏃ ᏚᏯ ᎢᏳᎾᏍᏗ ᏕᎫᎲᏍᎨᎢ, ᎢᏐᏃ ᎢᎾᎨ ᏧᎶᏎᎢ, ᎠᎴ ᎠᎪᏄ ᎤᎸᏕᏍᏗᏍᎨᎢ. ᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏍᏇᎳᏍᏓ ᎩᎦᎨ, Ꮎ ᎩᎦᎨ ᏥᏧᎭ, ᎠᎪᏄᏰᏃ ᎠᏆᎸᏕᏍᏗᎭ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎻ ᏓᎪᎡᎢ. ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᎢᎬᏱ ᎮᎯ ᎨᏒ ᏍᎩᏃᏓᏏ. ᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᎩᏲᎱᏏᏗ ᎠᏴ; ᎦᏙᏃ ᏯᎩᏁᏉᏥ ᎯᎠ ᎾᏍᎩ ᎢᎬᏱ ᎨᎢ ᎨᏒᎢ? ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᏍᏆᏎᎵᏓᏏ; ᎤᏎᎵᏓᏁᎴᏃ; ᎠᎴ ᎢᎬᏱ ᎡᎯ ᎨᏒ ᏤᎦᏈ ᎤᏃᏓᏁᎴᎢ. ᏤᎦᏈᏃ ᎦᏚ ᎠᎴ ᏚᏯ ᎢᏳᎾᏍᏗ ᏗᎫᏅᎯ ᏚᏁᎴ ᎢᏐ, ᎤᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᎤᏗᏔᎮᎢ, ᎠᎴ ᏚᎴᏁᎢ, ᎠᎴ ᎤᏓᏅᏎᎢ; ᎾᏍᎩᏃ ᎢᏐ ᏄᎸᏉᏔᏅᎾᏉ ᎨᏎ ᎢᎬᏱ ᎡᎯ ᎨᏒᎢ. ᎠᏯᏙᎸᎢ 26 ᏔᎵᏁᏃ ᎤᎪᏄᎶᏎ ᎾᎿ ᎤᏁᎳᎩ ᎢᎬᏱᏱ ᏧᎪᏄᎶᏎᎢ ᎾᎯᏳ ᎡᏆᎭᎻ ᏤᎮᎢ. ᎡᏏᎩᏃ ᎠᏈᎻᎴᎩᏱ ᏭᎶᏎ ᎤᎬᏫᏳᎯ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎦ, ‾ᎩᎳ ᏗᎦᏚᎲᎢ. ᏱᎰᏩᏃ ᎬᏂᎨᏒ ᏄᏛᏁᎴᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎢᏥᏈᏱ ᏫᏣᎶᏒᎩ; ᎾᎿᏉᏍᎩᏂ ᎦᏙᎯ ᏨᏓᎬᏯᏎᎮᎵ ᎮᎮᏍᏗ; ᎠᏂ ᎯᎠ ᎦᏓ ᎠᎲ ᎮᎮᏍᏗ, ᎠᏴᏃ ᏕᎬᎦᎿᏩᏗᏙᎮᏍᏗ, ᎠᎴ ᎣᏍᏛ ᏂᎬᏯᏛᏁᎮᏍᏗ; ᏂᎯᏰᏃ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏓᏨᏁᎵ ᏂᎦᏛ ᎠᏂ ᏂᎬᎾᏛᎢ; ᎠᎴ ᏅᏓᎦᏛᏁᎵ ᏄᏍᏛ ᏥᏯᏎᎵᏓᏁᎸ ᎡᏆᎭᎻ ᏣᏙᏓ; ᎠᎴ ᎤᏂᏁᏉᎢᏍᏗᏱ ᏅᏓᎦᏥᏴᏁᎵ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎾᏍᎩᏯ ᏃᏈᏏ ᎦᎸᎶ ᏣᏂᎧᎳ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏓᎦᏥᏁᎵ ᏂᎦᏛ ᎠᏂ ᏂᎬᎾᏛᎢ; ᏂᎯᏃ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏄᎾᏓᎴᏒ ᏴᏫ ᎡᎶᎯ ᎤᎾᏕᏗ ᏥᏅᏓᎦᎵᏍᏔᏂ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᏂᎦᎵᏍᏙᏗᎭ ᎡᏆᎭᎻ ᎤᏬᎯᏳᏅ ᏥᏁᎬᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏔᏅ ᎠᏆᏤᎵ ᎠᏍᏆᏂᎪᏙᏗ, ᎠᎴ ᎠᎩᏁᏨᎢ, ᎠᎴ ᏗᏆᏤᎵ ᏚᏚᎪᏔᏅᎢ, ᎠᎴ ᏗᏆᏤᎵ ᏗᎦᎿᏩᏛᏍᏗ. ᎡᏏᎩᏃ ‾ᎩᎳ ᎡᎮᎢ. ᎾᎿ Ꮓ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᎬᏩᏛᏛᏁ ᎤᏓᎵᎢ ᎤᏂᏁᎢᏍᏔᏁᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᎩᏙᏉ; ᎠᏍᎦᎢᎮᏰᏃ ᎠᏆᏓᎵᎢ ᎤᏛᏗᏱ; ᎠᏂᏍᎦᏯᏰᏃ ᎠᏂ ᎠᏁᎯ ᏱᎬᎩᎷᎦ ᎵᏇᎩ ᏯᎩᏍᏛᏓ [ᎡᎵᏍᎨᎢ,] ᎤᏬᏚᎯᏳᏰᏃ ᎨᏎ ᏗᎧᏃᏗᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎪᎯᏗᏳ ᎾᎿ ᏫᎬᏩᎷᏨᎯ ᎨᏎᎢ, ᎠᏈᎻᎴᎩ ᎤᎬᏫᏳᎯ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᎠᏦᎳᏅ ᏭᎦᏔᏁᎢ, ᎠᎴ ᎤᎪᎮᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎡᏏᎩ ᏓᎾᏓᏰᏣᏍᏗᏍᎨ ᎵᏇᎩ ᎤᏓᎵᎢ. ᎠᏈᎻᎴᎩᏃ ᏭᏯᏅᎮ ᎡᏏᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎤᏙᎯᏳᏒ ᏣᏓᎵᎢ ᎾᏍᎩ; ᎦᏙᏃ ᎥᎩᏙᏉ ᏥᏣᏛᏁᎢ? ᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏱᏥᏲᎤᎯ ᎾᏍᎩ ᏯᎩᏍᏛᏓ, ᎠᏇᎵᏒᎢ. ᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏥᏂᏍᎩᏴᎦ; ᎩᎶᏰᏃ ᎯᎠ ᏴᏫ ᎠᎴᏉ ᏄᏓᏰᎾ ᏣᏓᎵᎢ, ᎠᎴ ᎣᎩᏍᎦᏅᏨᎯ ᏂᏍᎩᏴᎦ. ᎠᏈᎻᎴᎩᏃ ᏚᏁᏤᎴ ᏂᎦᏛ ᏴᏫ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᎢᎬᏁᎸᎭ ᎯᎠ ᎠᏍᎦᏯ, ᎠᎴ ᎤᏓᎵᎢ, ᎤᏙᎯᏳᎯᏯ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᎡᏏᎩᏃ ᎾᎿ ᎦᏙᎯ ᎤᏫᏒᏁᎢ, ᎾᎯᏳᏉᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏣᏓᏗ ᎤᏁᏉᏨᎯ ᎤᏩᏛᎮᎢ, ᎠᎴ ᏱᎰᏩ ᎣᏍᏛ ᏄᏛᏁᎴᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏥᎸᏉᏗᏳ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᏩᎦᏖᏉ ᎤᏛᏏᏗᏒᎢ, ᎬᏂ ᎤᏣᏘ ᎠᏥᎸᏉᏗᏳ ᏄᎵᏍᏔᏅ. ᎠᏫᏃ ᏚᎾᏝᎡᎢ, ᎠᎴ ᏩᎦ ᏚᎾᏝᎡᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏚᏪᎧᎮ ᏧᏅᏏᏓᏍᏗ; ᎠᏂᏈᎵᏍᏗᏃ ᎬᏩᏳᏤᎮᎢ. ᏂᎦᏛᏃ ᎠᎹ ᎠᏢᏗᏱ ᏓᏍᎪᏒ ᎾᏍᎩ ᎤᏙᏓ ᏧᏅᏏᏓᏍᏗ ᏚᎾᏍᎪᏒᎢ ᎾᎯᏳ ᎤᏙᏓ ᎡᏆᎭᎻ ᏤᎮᎢ, ᎠᏂᏈᎵᏍᏗ ᏚᏂᏍᏚᏁᎢ, ᎠᎴ ᎦᏓ ᏚᏂᎧᎵᏍᏔᏁᎢ. ᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏏᎩ, ᏍᎩᏯᏓᏅᏏ; ᎤᏟᎯᏳᏰᏃ ᏂᏣᎵᏂᎬᎦ ᎡᏍᎦᏉ ᎠᏴ. ᎡᏏᎩᏃ ᎾᎿ ᎤᏓᏅᏎᎢ, ‾ᎩᎳ ᎤᎨᏓᎵᏴ ᎤᎵᏦᏔᏁᎢ, ᎠᎴ ᎾᎿ ᎡᎮᎢ. ᎡᏏᎩᏃ ᏔᎵᏁ ᏚᏍᎪᏎ ᎠᎹ ᏗᏢᏗᏱ ᎾᏍᎩ ᏥᏚᎾᏍᎪᏎ ᎾᎯᏳ ᎤᏙᏓ ᎡᏆᎭᎻ ᏤᎮᎢ; ᎠᏂᏈᎵᏍᏗ ᏥᏚᏂᏍᏚᏁ ᎡᏆᎭᎻ ᎤᏲᎱᏒ; ᎠᎴ ᎤᏙᏓ ᏄᏍᏛ ᏚᏬᎥ ᎾᏍᎩᏯᏉ ᎠᏏ ᏚᏬᎡᎢ. ᎡᏏᎪᏃ ᏧᏅᏏᏓᏍᏗ ᎤᎾᏍᎪᏎ ᎤᎨᏓᎵᏴᎢ, ᎠᎴ ᎾᎿ ᎤᏂᏩᏛᎮ ᎠᎹ ᎦᏄᎪᎬᎢ. ‾ᎩᎳᏃ ᎠᏁᎯ ᎦᎾᏝᎢ ᏗᏂᎦᏘᏯ ᎬᏩᎾᏟᏒᏎᎮ ᎡᏏᎩ ᏧᏤᎵ ᎦᎾᏝᎢ ᏗᏂᎦᏘᏯ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎠᎹ ᎠᏴ ᎣᏍᏤᎵᎦ; ᎾᏍᎩᏃ ᎠᎹ ᎠᏢᏗᏱ ᎠᏍᎪᏒ ᎢᏎᎩ ᏚᏬᎡᎢ; ᏂᎦᎵᏍᏙᏗᏍᎨ ᎬᏩᏗᏒᏎᎸᎢ. ᎠᎴ ᏅᏩᏓᎴ ᎤᎾᏍᎪᏎ ᎠᎹ ᎠᏢᏗᏱ, ᎾᏍᏉᏃ ᎾᏍᎩ ᎤᎾᏘᏒᎴᎢ; ᎾᏍᎩᏃ ᏏᏘᎾ ᏚᏬᎡᎢ. ᎾᎿᏃ ᎤᏓᏅᏎᎢ, ᎠᎴ ᏄᏓᎴ ᎤᏍᎪᏎ ᎠᎹ ᎠᏢᏗᏱ; ᎾᏍᎩᏃ ᎥᏝ ᏳᎾᏘᏒᎴᎢ; ᎾᏍᎩᏃ ᎵᎰᏉ ᏚᏬᎡᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᏱᎰᏩᏰᏃ ᎿᏉ ᎢᎩᎳᏅᏓᏗᏏ, ᎠᎴ ᎠᏂ ᎦᏙᎯ ᏓᏗᏁᏉᏥ. ᎾᎿᏃ ᎤᏓᏅᏒ ᏈᏯᏏᏱᏆ ᏭᎶᏎᎢ. ᎾᎯᏳᏉᏃ ᏒᏃᏱ ᏱᎰᏩ ᎬᏂᎨᏒ ᏄᏛᏁᎴᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᎡᏆᎭᎻ ᏣᏙᏓ ᎤᏤᎵᎦ; ᏞᏍᏗ ᏱᎾᏰᏍᎨᏍᏗ, ᎠᏴᏰᏃ ᏕᎬᎦᎿᏩᏗᏙᎭ, ᎠᎴ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏓᎦᏥᏁᏉᎢ ᎡᏆᎭᎻ ᏥᏅᏏᏓᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎾᎿᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏬᏢᏁᎢ, ᎠᎴ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᎾᎿ ᎤᎵᏦᏔᏁᎢ; ᎠᎴ ᎾᎿ ᎡᏏᎩ ᏧᏅᏏᏓᏍᏗ ᎠᎹ ᎠᏢᏗᏱ ᎤᎾᏍᎪᏎᎢ. ᎿᏉᏃ ᎠᏈᎻᎴᎩ ᎩᎳ ᎤᏂᎩᏎᎢ [ᎡᏏᎩᏃ] ᏭᎷᏤᎴᎢ, ᎠᎴ ᎠᎭᏌ [ᎠᏈᎻᎴᎩ] ᎤᎾᎵᎢ, ᎠᎴ ᏈᎪᎵ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ ᏄᎬᏫᏳᏒ ᏗᏘᏂᏙᎯ. ᎡᏏᎩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎥᏍᎩᎷᏥᏏ, ᏍᎩᏂᏆᏘᎯᏃ ᏥᎩ, ᎠᎴ ᎢᏤᎲ ᏍᎩᎨᎯᏙᎸᎯ ᏥᎩ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎤᏙᎯᏳᏒᏍᎩᏂ ᎣᎩᎪᎲᎩ ᏱᎰᏩ ᏕᏣᎧᎿᏩᏗᏙᎲᎢ; ᎯᎠᏃ ᏃᎩᏪᏒᎩ, ᏗᎦᏓᏎᎵᏓᏁᎸᎯ ᎨᏎᏍᏗ, ᎠᏴ ᏂᎯᏃ, ᎠᎴ ᎧᏃᎮᏛ ᏗᏓᏠᎯᏍᏓ; ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᏲ ᏍᎩᏴᏁᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏯ ᎪᎱᏍᏗ ᎢᏨᏴᏁᎸᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎠᎴ ᎣᏍᏛᏉ ᎢᏨᏯᏛᏁᎸᎯ ᏥᎩ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏯᏂᎩᏍᏔᏅᎯ ᏥᎩ; ᏂᎯ ᎿᏉ ᏱᎰᏩ ᎣᏍᏛ ᎢᏣᏛᏁᎸᎯ ᎢᎩ. ᏚᏛᏅᎢᏍᏓᏁᎴᏃ ᎠᎵᏍᏓᏴᏗ, ᎤᎾᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᏚᎾᏘᏔᎮᎢ. ᏑᎾᎴᏉᏃ ᏚᎾᏗᏛᎮᎢ, ᎠᎴ ᏚᎾᏓᏎᎵᏓᏁᎴᎢ; ᎡᏏᎩᏃ ᏚᏂᎩᏍᏔᏁᎢ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᎬᏩᏂᎩᎡᎴᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᏉ ᎢᎦ, ᎾᏍᎩ ᎡᏏᎩ ᏧᏅᏏᏓᏍᏗ ᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎬᏩᏃᏁᎴ ᎠᎹ ᎠᏢᏗᏱ ᎤᎾᏍᎪᏒ ᎤᎬᏩᎵ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎠᎹ ᎣᏥᏁᏩᏛ. ᏏᏱᏆᏃ ᏚᏬᎡᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎿ ᎦᏚᎲ ᎩᎳᎯᏳ ᏈᏯᏏᏱᏆ ᏚᏙᎥ. ᎢᏐᏃ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎾᎯᏳ ᏥᏚᏓᏴᏎ ᏧᏗ ᏈᎢᎳ ᎤᏪᏥ ᎾᏍᎩ ᎠᎯᏗ, ᎠᎴ ᏆᏏᎹ ᎢᎶᏂ ᎤᏪᏥ ᎾᏍᎩ ᎠᎯᏗ. ᎾᏍᎩᏃ ᎯᎠ ᎡᎯᏍᏗ ᎤᎾᏓᏅᏓᏗᏍᏗᏍᎩ ᎨᏎ ᎡᏏᎩ ᎠᎴ ᎵᏇᎩ. ᎠᏯᏙᎸᎢ 27 ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎡᏏᎩ ᎤᏛᏐᏅᎯ ᎨᏎᎢ, ᎠᎴ ᏧᏍᎪᎸᎢ ᎨᏎ ᏗᎦᏙᎵ, ᎾᏍᎩ ᎬᏩᎪᏯᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏭᏯᏅᎮ ᎢᏐ ᎤᏓᏂᎵᎨ ᎤᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏇᏥ; ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏂᏲ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎿᏉ ᎠᏆᏛᏐᏅᎯ, ᎥᏝ ᏱᏥᎦᏔᎭ ᎢᏳᏉ ᎠᎩᏲᎱᎯᏍᏗᏱ; Ꭷ, ᏘᏄᎦ ᏗᏣᎵᏍᎦᏍᏙᏗ, ᎦᏃᏟ ᎠᎴ ᎦᎶᏣᏗ, ᎠᎴ ᎢᎾᎨ ᏫᎶᎯ, ᎠᏫᏃ ᎤᏫᏯ ᏍᎩᏲᏎᎷᎦ; ᎠᎴ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᏍᏆᏛᏅᎢᏍᏓᏁᎸᎭ, ᎾᏍᎩ ᎣᏏ ᏣᎩᏰᎸᎭ, ᎠᎴ ᏍᎩᏲᎮᎸᎭ, ᎠᎴ ᏥᎬᎭ; ᎾᏍᎩ ᎠᏆᏓᏅᏙ ᎣᏍᏛ ᏣᏁᏤᏗᏱ ᎠᏏᏉ ᎾᎩᏲᎱᏒᎾ. ᎵᎢᏃ ᎤᏛᎦᏁ ᎡᏏᎩ ᎤᏁᏤᎸ ᎤᏪᏥ ᎢᏐ. ᎢᏐᏃ ᎢᎾᎨ ᏭᎶᏎ ᎠᏫ ᎤᏫᏯ ᎤᏲᎸᏎ ᎤᏲᎯᏍᏗ. ᎵᏇᎩᏃ ᎤᏁᏤᎴ ᎤᏪᏥ ᏤᎦᏈ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎦᏛᎬᎦ ᏣᏙᏓ ᎧᏁᏤᎲ ᏗᏍᏓᏓᏅᏟ ᎢᏐ, ᎯᎠ ᏂᎦᏪᏍᎬᎢ, ᎠᏫ ᎤᏫᏯ ᏍᎩᏲᎯᏏ ᎠᎴ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᏍᏆᏛᏅᎢᏍᏓᏏ, ᎠᎴ ᏥᎬᎭ, ᎠᎴ ᎣᏍᏛ ᎬᏁᏤᎸᎭ ᏱᎰᏩ ᎠᎦᏔᎲ ᎠᏏᏉ ᎾᎩᏲᎱᏒᎾ. ᎿᏉᏃ ᎠᏇᏥ ᎰᎯᏳᎲᎦ ᏥᏁᎬᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎬᏁᏤᎲᎢ. ᎮᎾ ᎠᏫ ᏗᏁᏙᎲᎢ, ᎠᎴ ᎾᎿ ᏫᏗᏍᎩᏯᏅᏏ ᎠᏂᏔᎵ ᎠᏃᏍᏛ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎠᏂᎩᎾ. ᎾᏍᎩᏃ ᏓᏥᏯᏛᏅᎢᏍᏔᏁᎵ ᏣᏙᏓ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᎾᏍᎩ ᏧᎦᎾᏏᎭ; ᏣᏙᏓᏃ ᏮᏘᏲᎮᎵ, ᎾᏍᎩᏃ ᏛᎵᏍᏓᏴᏂ, ᎾᏍᎩ ᎣᏍᏛ ᏣᏁᏤᏗᏱ ᎠᏏᏉ ᏄᏲᎱᏒᎾ. ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏥ ᎵᏇᎩ, ᎬᏂᏳᏉ ᎥᎩᏂᎵ ᎤᏂᏆᏟ ᎠᏍᎦᏯ ᏥᎩ, ᎠᏴᏃ ᏥᏓᏫᏍᎦᎨ ᏥᏍᎦᏯ; ᎡᏙᏓᎾᏃ ᏯᏆᏒᏂᎵᏙᎸ, ᎠᎴ ᏥᎶᏄᎡᏍᎩᏉ ᏯᎩᏰᎸᏅ; ᎿᏉ ᎥᎩᏍᎦᎢᏍᏗᏉ ᏱᏥᏩᏛᏓ, ᎥᏝᏃ ᎣᏍᏛ ᎥᎩᏁᏤᏗᏱ. ᎤᏥᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏇᏥ ᏂᎯ ᎡᏣᏍᎦᎢᏍᏗ ᎨᏒ ᎠᏴ ᎠᎩᎷᏤᎸᎭ, ᎰᎯᏳᎲᎦᏉ ᏥᏁᎬᎢ, ᎠᎴ ᏫᏗᏍᎩᏯᏅᏏ. ᎤᏪᏅᏎᏃ, ᎠᎴ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎤᏥ ᏚᏘᏃᎮᎴᎢ; ᎤᏥᏃ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᎤᏛᏅᎢᏍᏔᏁ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏙᏓ ᎤᎦᎾᏏᏍᎬᎢ. ᎵᏇᎩᏃ ᏫᏚᏁᏎ ᏦᏍᏛ ᏗᏄᏬ ᎤᏓᏂᎵᎨ ᎤᏪᏥ ᎢᏐ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎦᎵᏦᏕ ᏚᎾᎥᎢ, ᎠᎴ ᏤᎦᏈ ᎣᏂ ᎡᎯ ᎤᏪᏥ ᏚᏄᏬᎡᎢ. ᎠᏂᎩᎾᏃ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᏧᏂᎮᎦᎸᏅᎯ ᏚᏪᏰᏑᎳᏁᎢ, ᎠᎴ ᎤᏪᏯᏢᏁ ᏓᏫᏍᎦᎨ ᎨᏒ ᎠᏴᏤᏂ; ᎤᎦᎾᏍᏛᏃ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎦᏚ ᎾᏍᎩ ᏧᏛᏅᎢᏍᏔᏁᎢ, ᏚᏁᎴ ᎤᏪᏥ ᏤᎦᏈ. ᎤᏙᏓᏃ ᎤᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏂ; ᎦᎪ ᏂᎯ ᎠᏇᏥ? ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎠᏴ ᎢᏐ ᎢᎬᏱ ᎡᎯ ᏤᏥ; ᎾᏍᎩᏯ ᏂᏍᎩᏪᏎᎸ ᎾᏆᏛᏁᎸ; ᎭᏗᏛ, ᎯᎲᎦ, ᎠᎴ ᎭᎵᏍᏓᏴᏓ ᎠᏆᏤᎵᎦ ᎠᏫ ᎤᏫᏯ, ᎾᏍᎩ ᏣᏓᏅᏙ ᎣᏍᏛ ᎠᎩᏁᏤᏗᏱ. ᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏪᏥ, ᎦᏙ ᎦᎵᏍᏙᏓ ᎠᏇᏥ ᏂᎾᏞᎬ ᏥᏩᏛ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏂᎦᎵᏍᏙᏓᏍᎩᏂ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎠᏆᏘᏃᎮᎸᎢ. ᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎾᎥ ᏍᎩᎷᏥᏏ, ᎬᏯᏒᏂᏍᏗᏱ, ᎠᏇᏥ, ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᎠᏇᏥ ᎢᏐ ᎨᏒ, ᎠᎴ ᎾᏍᎩ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏤᎦᏈᏃ ᎾᎥ ᏭᎷᏤᎴ ᎤᏙᏓ ᎡᏏᎩ; ᎤᏒᏂᎵᏙᎴᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎧᏁᎬ ᏤᎦᏈ ᎤᏁᎢᏍᏗ ᎧᏁᎦ, ᏧᏬᏰᏂᏍᎩᏂ ᎢᏐ ᏧᏬᏰᏂ. ᎥᏝ ᎠᎴ ᏳᏕᎶᎰᎯᏎᎴ ᏂᎦᎵᏍᏙᏗᏍᎨ ᏧᏬᏰᏂ ᏧᏂᏆᏟ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎤᏂᎵ ᎢᏐ ᏧᏬᏰᏂ ᏂᏚᏍᏛᎢ; ᎣᏍᏛᏃ ᎤᏁᏤᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯᏍᎪ ᏂᎯ ᎢᏐ ᎠᏇᏥ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᎥ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᎥ ᏍᎩᏲᎯᏏ, ᏓᎦᎵᏍᏓᏴᏔᏂᏃ ᎠᏫ ᎤᏫᏯ ᎠᏇᏥ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎣᏍᏛ ᎬᏁᏤᏗᏱ; ᎾᎥᏃ ᎤᏲᎴᎢ, ᎠᎴ ᎤᎵᏍᏓᏴᏁᎢ; ᎠᎴ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏂᏦᎮᎴᎢ, ᎠᎴ ᎤᏗᏔᎮᎢ. ᎤᏙᏓᏃ ᎡᏏᎩ ᎯᎠ ᎤᏪᏎᎴᎢ, ᎡᎮᎾᏃ ᎠᏇᏥ, ᎠᎴ ᏍᏆᏔᏪᏙᎥᎦ. ᎾᎥᏃ ᎤᎷᏤᎴᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ; ᎤᏪᏩᏒᏤᏃ ᏚᏄᏮ ᏕᎦᏩᏒᎬᎢ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎦᏩᏒᎬ ᎠᏇᏥ ᎾᏍᎩᏯᏉ ᏠᎨᏏ ᏥᎦᏩᏒᎪ ᎾᏍᎩ ᏱᎰᏩ ᎣᏍᏛ ᎤᏁᏤᎸᎯ. ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᏫᏣᏍᎪᎸᏓᏏ ᎤᎯᏌᏛ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎦᏙᎯ ᎦᎵᏦᏅᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎦᏔᏔᏅᎥᏍᎩ, ᎠᎴ ᏖᎸᎳᏗ ᎦᏨᏩᏍᏔᏅᎯ; ᏴᏫ ᏓᏁᏩᏗᏒ ᏂᎯ ᏗᎨᏣᏁᎶᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎡᎳᏗ ᏂᎨᏣᏛᏁᎮᏍᏗ; ᏣᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎢᏣᎵᏅᏟ ᎠᏁᎲᎢ, ᎠᎴ ᏣᏥ ᏧᏪᏥ ᎡᎳᏗ ᏂᎨᏣᏛᏁᎮᏍᏗ; ᎠᏥᏍᎦᎢᏍᏗ ᎨᏎᏍᏗ ᏂᎯ ᏣᏍᎦᎩ, ᎠᎴ ᎣᏍᏛ ᎠᏥᏁᏤᏗ ᎨᏎᏍᏗ, ᎣᏍᏛ ᏣᏁᏤᎯ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏏᎩ ᎤᏍᏆᏛᏉ ᎣᏍᏛ ᎧᏁᏤᎲ ᏤᎦᏈ, ᎠᎴ ᏤᎦᏈ ᎩᎳᏉ ᎤᏄᎪᏨᎯ ᎨᏎ ᎤᏙᏓ ᎡᏏᎩ ᎠᎦᏔᎲᎢ, ᎿᏉ ᎤᏂᎵ ᎢᏐ ᎢᎤᎷᏤ ᎤᏃᎯᎵᏙᎸᎯ. ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᏛᏅᎢᏍᏔᏅᎯ ᎢᎨᏎ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎤᏙᏓ ᎤᏲᎮᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎡᏙᏓ ᏩᏗᏛ, ᎠᎴ ᎤᏪᏥ ᏩᎵᏍᏓᏴᎾᏏ ᎠᏫ ᎤᏫᏯ, ᎾᏍᎩ ᏣᏓᏅᏙ ᎣᏍᏛ ᎠᎩᏁᏤᏗᏱ. ᎤᏙᏓᏃ ᎡᏏᎩ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᎪ ᏂᎯ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴᏍᎩᏂ ᏤᏥ, ᎢᎬᏱ ᎨᎢ ᏥᏥ ᎢᏐ. ᎡᏏᎩᏃ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏪᎾᏪᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪᏃ ᏧᏩᏛᎲ ᎠᏫ ᎤᏫᏯ ᎠᎴ ᏣᎩᏲᎮᎸ, ᎠᎴ ᏂᎦᏛ ᏣᏆᎵᏍᏓᏴᏔᏅ ᎠᏏᏉ ᏂᏣᎷᏨᎾ, ᎠᎴ ᎣᏍᏛ ᏥᏥᏁᏤᎸ? ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎣᏍᏛ ᎠᏥᏁᏤᎸᎯ ᎨᏎᏍᏗ. ᎢᏐᏃ ᎤᏛᎦᏅ ᎤᏙᏓ ᏄᏪᏒᎢ, ᏚᏠᏍᎴᎢ, ᎤᎶᏒᏍᏔᏅᎯ ᎡᎯᏍᏗ ᏚᏠᏱᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎠᏴ ᎾᏍᏉ ᎣᏍᏛ ᏍᎩᏁᏥ, ᎡᏙᏓ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎡᏣᏅᏟ ᎦᎶᏄᎮᏛ ᎤᏩᏔᏅ ᎤᎷᏨ, ᎠᎴ ᏣᎩᎡᎸ ᏣᏤᎵ ᎣᏍᏛ ᎡᏣᏁᏤᏗ ᎨᏒᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏝᏍᎪ ᏚᏳᎪᏛ ᏱᎩ ᏤᎦᏈ ᏥᏓᎪᎥ? ᏔᎵᏰᏃ ᎿᏉ ᎢᎬᏱ ᎾᎿᎴᎲᏏ; ᎠᏆᏓᏂᎵᎨᏰᏃ ᎨᏒ ᎠᎩᎩᏎᎸᎩ; ᎬᏂᏳᏉᏃ ᎿᏉ ᎣᏍᏛ ᎥᎩᏁᏤᏗ ᎨᏒ ᎥᎠᎩᎩᏏ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏝᏍᎪ ᏱᏣᏃᎯᏴ ᎠᏴ ᎣᏍᏛ ᏍᎩᏁᏤᏗᏱ? ᎡᏏᎩᏃ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴ ᎢᏐ, ᎬᏂᏳᏉ ᏂᎯ ᎢᏍᏕᎲ ᎤᎬᏫᏳᎯ ᏂᏥᏴᎦ, ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᏕᏥᏲᎯᏏ ᏗᎬᏩᏁᎶᏗ ᎢᏳᎵᏍᏙᏗᏱ; ᎠᎦᏔᏔᏅᎥᏍᎩᏃ ᎠᎴ ᏖᎸᎳᏗ ᎦᏨᏩᏍᏔᏅᎯ ᎥᏥᏍᏕᎸᏙᏓ; ᎦᏙᏃ ᏓᎬᏯᏛᏁᎵ ᏂᎯ ᎠᏇᏥ? ᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎡᏙᏓ, ᏌᏉᏉᏍᎪ ᏣᎮ ᎣᏍᏛ ᏣᏓᏁᏤᏗ ᎨᏒᎢ? ᎠᏴ ᎾᏍᏉ ᎣᏍᏛ ᏍᎩᏁᏥ ᎡᏙᏓ. ᎢᏐᏃ ᎠᏍᏓᏯ ᏚᏠᏱᎴᎢ. ᎤᏙᏓᏃ ᎡᏏᎩ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎦᏙᎯ ᎦᎵᏦᏅ ᎮᎮᏍᏗ, ᎠᎴ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎠᎯᏌᏛᏍᎬᎢ. ᎠᎴ ᎠᏰ ᎳᏍᏗ-ᎦᏅᎯᏛ ᎲᏗᏍ ᏣᏛᏂᏘᏍᏙᏕᏍᏗ, ᎠᎴ ᎡᎶᏅᏟ ᏕᎯᏯᏁᎶᏕᏍᏗ; ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎿᏉ ᏂᎯ ᎯᏯᏓᎵᏁᎯᏕᎸᎭ, ᏙᏘᏍᏆᎵᏎᎵ ᏣᎩᎳᎾᎳᏗᏍᏛᎢ. ᎢᏐᏃ ᎦᏂᏆᏘᎮ ᏤᎦᏈ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎣᏍᏛ ᎤᏓᏁᏤᏗ ᎨᏒ ᎤᏙᏓ ᎾᏍᎩ ᎣᏍᏛ ᎤᏁᏤᎸᎢ; ᎢᏐᏃ ᎯᎠ ᏄᏪᏎ ᏧᏓᏅᏛᎢ, ᎡᏙᏓ ᎠᏍᎪᏂᏍᏗ ᎨᏒ ᎿᏉ ᎤᏍᏆᎸᎯᏗ; ᎾᎯᏳᏃ ᏓᏥᎵ ᎥᎩᏅᏟ ᏤᎦᏈ. ᎵᏇᎩᏃ ᎠᏥᏃᏁᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒ ᎢᏐ ᎾᏍᎩ ᎤᏓᏂᎵᎨ ᎤᏪᏥ, ᎤᏓᏅᏎᏃ ᎠᎴ ᏭᏯᏅᎮ ᎣᏂ ᎡᎯ ᎤᏪᏥ ᏤᎦᏈ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎡᎶᏂᎵ ᎢᏐ, ᎤᏩᏒ ᎠᏓᎧᎵᏍᏓᏗᏍᏙᏗᎭ ᏂᎯ ᏣᎯᏍᏗᏱ ᎠᎥᏖᏍᎬᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏇᏥ, ᎰᎯᏳᎲᎦ ᏥᏁᎬᎢ, ᎠᎴ ᏔᎴᎲᎦ, ᎭᎵᏘ ᎴᏆᏂ ᎥᎩᏙ ᏤᎲ ᎮᎳᏂᏱ ᏫᎶᎯ. ᎢᎸᏍᎩᏃ ᏧᏒᎯᏛ ᏫᏯᏕᎥᏏ, ᎡᏣᏂᎵ ᎤᏔᎳᏬᏍᎬ ᎬᏂ ᎦᎶᏐᏅᎭ. ᎬᏂ ᎡᎶᏂᎵ ᏣᏍᎦᎬ ᎦᎶᏐᏅᎭ, ᎠᎴ ᎤᏩᎨᏫᏒᎭ ᏂᎯ ᏂᏴᏁᎸᎢ; ᎿᏉᏃ ᎦᏓᏅᏒᎭ, ᎠᎴ ᎾᎿ ᏫᎬᏯᏅᎲᎭ; ᎦᏙᏃ ᎢᏧᎳ ᏌᏉ ᎢᎦ ᏱᏍᏛᎪᏁᎶᏨ? ᎵᏇᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏏᎩ, ᏓᎩᏯᏪᎦᏉ ᎨᎥᎢ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏂᎨᏴ ᎮᏗ ᏧᏪᏥ; ᎢᏳᏃ ᏤᎦᏈ ᎩᎶ ᎯᎠ ᎮᏗ ᏧᏪᏥ ᏳᏓᏰᏅ, ᎾᏍᎩ ᎯᎠ ᏥᏄᎾᏍᏗᏉ ᎡᏍᎦᏂ ᏣᏁᎭ, ᎦᏙ ᎠᏋᏙᏗ ᏱᎩ ᎨᎥᎢ. ᎠᏯᏙᎸᎢ 28 ᎡᏏᎩᏃ ᏭᏯᏅᎮ ᏤᎦᏈ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ, ᎠᎴ ᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏞᏍᏗ ᎨᎾᏂ ᏧᏪᏥ ᎠᏁᎲ ᎩᎶ ᏣᏓᏴᏒᎩ. ᏔᎴᎲᎦ ᏇᏓᏁᎳᎻ ᏫᎶᎯ, ᏇᏚᎡᎵ ᏗᎦᏁᎸᎢ, ᎾᏍᎩ ᏣᏥ ᎤᏙᏓ; ᎠᎴ ᎾᎿ ᎯᏯᏅᎲᎭ ᏣᏓᎵᎢ, ᎠᏁᎲ ᏧᏪᏥ ᎴᏆᏂ ᎾᏍᎩ ᏣᏥ ᎤᏙᏓ. ᎠᎴ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏥᎩ, ᎾᏍᎩ ᎣᏍᏛ ᏣᏁᏤᎸᎭ, ᎠᎴ ᏣᏁᏉᏣᏘ ᏂᏨᏁᎸᎭ, ᎠᎴ ᏣᏁᏉᎢᎶᎥᎭ, ᎾᏍᎩᏃ ᏂᎯ ᎤᏂᏣᏘ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᎿᎵᏍᏗᏍᎨᏍᏗ; ᎠᎴ ᏣᏁᎸᎭ ᎡᏆᎭᎻ ᎤᏤᎵᎦ ᎣᏍᏛ ᎤᏁᏤᏗ ᎨᏒᎢ, ᏂᎯ ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ; ᎾᏍᎩᏃ ᏣᏤᎵ ᏂᎦᎵᏍᏔᏅᎭ ᎦᏙᎯ ᎾᎿ ᎮᏙᎯ ᏥᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏁᎴ ᎡᏆᎭᎻ. ᎡᏍᏗᎩᏃ ᎤᏂᎩᏍᏔᏁ ᏤᎦᏈ; ᏇᏓᏁᎳᎻ ᏭᎶᏎ ᎴᏆᏂ ᏤᎲᎢ, ᎾᏍᎩ ᏇᏚᎡᎵ ᏏᎵᏱ ᎡᎯ ᎤᏪᏥ, ᎵᏇᎩ ᎤᏙ, ᎾᏍᎩ ᏤᎦᏈ ᎠᎴ ᎢᏐ ᎤᏂᏥ. ᎢᏐᏃ ᎤᏙᎴᎰᏒ ᎡᏏᎩ ᎣᏍᏛ ᎤᏁᏤᎸ ᏤᎦᏈ, ᎠᎴ ᏇᏓᏁᎳᎻ ᎤᏂᎩᏍᏔᏅᎢ, ᎾᎿ ᏭᏕᏒᎲᏍᏗᏱ; ᎠᎴ ᎾᏍᎩ ᎣᏍᏛ ᎤᏁᏤᎸ ᎯᎠ ᏄᏪᏎᎸᎢ ᎤᏁᏤᎸᎢ, ᎥᏞᏍᏗ ᎨᎾᏂ ᏧᏪᏥ ᎩᎶ ᏣᏓᏴᏒᎩ; ᎠᎴᏃ ᏤᎦᏈ ᏚᏬᎯᏳᏅ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᎴ ᏇᏓᏁᎳᎻ ᏭᎶᏒᎢ. ᎢᏐᏃ ᎤᏙᎴᎰᏒ ᎨᎾᏂ ᏧᏪᏥ ᎡᏍᎦ ᏓᏰᎸᏍᎬ ᎤᏙᏓ ᎡᏏᎩ; ᎢᏐ ᎿᏉ ᎢᏏᎺᎵᏱ ᏭᎶᏎᎢ, ᎠᎴ ᎾᏍᎩ ᏓᏓᏰᎲ ᎤᏁᏉᎡ ᎤᏓᏴᏎ ᎺᎮᎳ, ᏁᏆᏲ ᎤᏙ, ᎢᏏᎺᎵ ᎤᏪᏥ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏪᏥ. ᏤᎦᏈᏃ ᎤᏂᎩᏎ ᏈᏯᏏᏱᏆ, ᎠᎴ ᎮᎳᏂ ᎢᏗᏢ ᏭᎶᏎᎢ. ᎢᎸᎯᏢᏃ ᎢᏴᏛ ᏭᎷᏤᎢ, ᎠᎴ ᎾᎿ ᎤᏒᎴᎢ, ᏅᏗᎦᎵᏍᏙᏍᏙᏗᏍᎨ ᏅᏙ ᏭᏕᎵᏨᎢ; ᏅᏯᏃ ᎾᎿ ᎠᏂᎳᎨᏴ ᎤᎩᏎ ᎠᎴ ᎤᏓᏍᏔᏁᎢ; ᎠᎴ ᎾᎿ ᎤᏂᏏᏁᎢ. ᎤᏍᎩᏓᏎᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎡᎶᎯ ᎠᏴᏯᏞᎢ, ᎦᎸᎳᏗᏃ ᎢᏴᏛ ᏭᎵᏍᏖᎢ; ᎠᎴ ᎬᏂᏳᏉ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎾᎿ ᎠᎾᎩᎳᏫᏍᏗᏍᎨᎢ, ᎠᎴ ᎠᎾᏠᎠᎯᏍᏗᏍᎨᎢ. ᎠᎴ ᎬᏂᏳᏉ ᏱᎰᏩ ᎾᎿ ᎦᎸᎳᏗᏢ ᏗᎦᏙᎨᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᏣᏙᏓ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ; ᎦᏙᎯ ᎾᎿ ᏥᏅᎦ, ᏂᎯ ᏓᎬᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ. ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎦᏓ ᎡᎶᎯ ᎦᎳᎨᏴ ᎾᏍᎩᏯ ᏄᎾᏍᏕᏍᏗ, ᎠᎴ ᏗᏰᎵᏏ ᏭᏕᎵᎬ ᎢᏗᏢ, ᎠᎴ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎠᎴ ᏧᏴᏢ ᎢᏗᏢ, ᎠᎴ ᏧᎦᎾᏮ ᎢᏗᏢ; ᎠᎴ ᏂᎯ ᎨᏒ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏂᎦᏗᏳ ᏗᏂᎳᏍᏓᎳᏩᏗᏒ ᎡᎶᎯ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎬᏂᏳᏉ ᎠᏴ ᏕᎬᎦᎿᏩᏗᏙᎭ, ᎠᎴ ᏓᎬᏍᏆᏂᎪᏔᏂ ᏂᎦᎥ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᏔᎵᏁ ᎠᏂ ᎦᏙᎯ ᏛᎬᏯᏘᏃᎵ; ᎥᏝᏰᏃ ᏴᎦᎬᏴᏕᎩ ᎬᏂ ᏂᎦᏛᏁᎸ ᎾᏍᎩ ᏥᎬᏁᎢᏍᏓᏏ. ᏤᎦᏈᏃ ᎤᏰᏤ ᎦᎵᎲᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᏱᎰᏩ ᎠᏂ ᎡᎭ; ᎠᎴ ᎥᏝ ᏱᏥᎦᏔᎮᎢ. ᎤᏍᎦᎴᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎦᎥ ᎤᎾᏰᎯᏍᏗ ᎯᎠ ᎠᏂ? ᎯᎠᏰᏃ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᎦᏁᎸᎢ, ᎠᎴ ᎯᎠ ᎦᎸᎳᏗ ᏫᎦᎾᏄᎪᎩ ᎦᎶᎯᏍᏗᏱ. ᏤᎦᏈᏃ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᏅᏯᏃ ᎤᏓᏍᏔᏅᎯ ᎤᎩᏎᎢ, ᎠᎴ ᎤᏪᏘᏁᎢ, ᎠᎴ ᎪᎢ ᎤᏍᎪᎵ ᎤᏍᏚᏞᎢ. ᎾᎿᏃ ᏇᏕᎵ ᏚᏬᎡᎢ; ᎢᎬᏱᏱᏍᎩᏂ ᎳᏏ ᏚᏙᎡ ᎾᎿ ᎦᏚᎲᎢ. ᏤᎦᏈᏃ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎯᏓᎩᎧᎿᏩᏗᏙᎸ, ᎠᎴ ᏯᎩᏍᏆᏂᎪᏔᏅ ᎯᎠ ᎠᏂ ᏫᏥᎦᏛᎢ, ᎠᎴ ᎦᏚ ᎠᏆᎵᏍᏓᏴᏗ ᏯᎩᏁᎭ, ᎠᎴ ᏗᏄᏬ ᏗᏆᏄᏬᏍᏗ ᏱᏓᎩᏅᏁᎭ, ᎾᏍᎩᏃ ᏅᏩᏙᎯᏯᏛ ᏮᎠᎩᎷᎯᏍᏗᏱ ᏱᏄᏩᏁᎸ ᎡᏙᏓ ᎦᏁᎸᎢ; ᎿᏉ ᏱᎰᏩ ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᎨᏎᏍᏗ; ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏅᏯ ᏥᎨᏛᎦ ᎤᏁᎳᏅᎯ ᎦᏁᎸ ᎨᏎᏍᏗ, ᏂᎦᏛᏃ ᏍᎩᏁᏗ ᎨᏒᎢ ᎠᏎ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎬᏁᏗ ᎨᏎᏍᏗ. ᎠᏯᏙᎸᎢ 29 ᏤᎦᏈᏃ ᎤᏂᎩᏎᎢ, ᎠᎴ ᏭᎷᏤ ᏗᎧᎸᎬ ᎢᏗᏢ ᎠᏁᎯ ᏴᏫ ᎤᎾᏤᎵᎪᎯ. ᏫᏚᎧᎿᏁᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎢᎾᎨ ᎠᏔᎴᏎ ᎠᎹ ᎠᏢᏗᏱ, ᎠᎴ ᎬᏂᏳᏉ ᎾᎿ ᏦᎢ ᎢᏳᎾᏓᏡᎩ ᎠᏫ ᎠᏂᏅᏝᎡᎢ, ᎾᎿᏰᏃ ᎠᏔᎴᏒ ᏓᎾᏗᏔᏍᏗᏍᎨ ᎠᏫ; ᎠᎴ ᎡᏉᎯᏳ ᏅᏯ ᎠᎱᏢᏕ ᎠᏔᎴᏒᎢ. ᎾᎿᏃ ᎠᏂᏟᏌᏂᎯᎮ ᏂᎦᏛ ᎠᏫ; ᎠᎴ ᎠᏂᏌᏆᎴᎯᎮ ᎠᏂᎲᏍᎨ ᏅᏯ ᎠᏔᎴᏒ ᎠᎱᏢᏛᎢ, ᎠᎴ ᏓᎾᏗᏔᏍᏗᏍᎨ ᎠᏫ; ᏟᏁᏃ ᏅᏯ ᎠᏂᎱᏢᏗᏍᎨ ᎠᏔᎴᏒᎢ, ᎠᏗᏱ ᎠᏂᎲᏍᎨᎢ. ᏤᎦᏈᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏓᎵᏅᏟ, ᏎᏢ ᏗᏤᏅ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎮᎳᏂᏱ ᏦᎨᏅ ᎠᏴ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎡᏥᎦᏔᎭᏍᎪ ᎴᏆᏂ, ᏁᎰ ᎤᏪᏥ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎣᏥᎦᏔᎭ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏙᎯᏱᏉᏍᎪ ᏄᏛᏁᏕᎦ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏙᎯᏱᏉ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏪᏥ ᎴᏥᎵ ᏓᏯᎢ ᎠᏫ ᏙᏛᏘᏂ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏏ ᎦᎸᎳᏗᏳ ᏫᎧᎳ; ᎥᏝ ᎠᎴ ᎠᏏ ᏳᏍᏆᎸᎲ ᎦᎾᏝᎢ ᎦᏟᏐᏗᏱ; ᏗᏣᏗᏔᏍᏓ ᎠᏫ, ᎠᎴ ᏗᏣᏛᎿᏗᏍᏔᏄᎦ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎥᏝ ᏰᎵᎦ ᎬᏂ ᏂᎦᏛ ᎠᏫ ᎠᏂᏟᏌᏃᏅᎭ, ᎠᎴ ᏅᏯ ᎠᏂᏌᏆᎴᎸ ᎠᏂᎲᏒ ᎠᎱᏝᎥ ᎠᏔᎴᏒᎢ; ᎩᎳ ᏙᏓᏲᏣᏗᏔᏍᏔ ᎠᏫ. ᎠᏏᏉᏃ ᏓᎵᏃᎮᏗᏍᎨᎢ, ᎴᏥᎵ ᎤᎷᏤ ᏚᏘᏃᎴ ᎠᏫ ᎤᏙᏓ ᏧᏤᎵᎦ; ᎾᏍᎩᏰᏃ ᏕᎬᎿᏗᏍᏗᏍᎨᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏤᎦᏈ ᎤᎪᎲ ᎴᏥᎵ, ᎴᏆᏂ ᎤᏪᏥ, ᎾᏍᎩ ᎤᏥ ᎤᏙ, ᎠᎴ ᎠᏫ ᎴᏆᏂ ᏧᏤᎵᎦ ᎾᏍᎩ ᎤᏥ ᎤᏙ, ᎾᏍᎩ ᏤᎦᏈ ᎾᎥ ᏭᎷᏤ, ᎠᎴ ᎤᏪᏌᏆᎴᎴ ᎤᎲᏎ ᏅᏯ ᎠᎱᏢᏛ ᎠᏔᎴᏒᎢ, ᎠᎴ ᏚᏗᏔᏍᏔᏁ ᎠᏫ ᎴᏆᏂ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎤᏥ ᎤᏙ. ᏤᎦᏈᏃ ᎤᏔᏪᏙᏁ ᎴᏥᎵ, ᎠᎴ ᎠᏍᏓᏯ ᏚᏠᏱᎴᎢ. ᏤᎦᏈᏃ ᎤᏃᏁᎴ ᎴᏥᎵ ᎾᏍᎩ ᎤᏙᏓ ᎠᎾᎵᏅᏟ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎵᏇᎩ ᎤᏪᏥ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᎤᏙᏓ ᎤᏃᏁᎴᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎴᏆᏂ ᎤᏛᎦᏅ ᎠᏥᏃᎮᏍᎬ ᏤᎦᏈ, ᎤᏙ ᎤᏪᏥ, ᏚᏍᏆᎸᏔᏁ ᏚᏠᏒᏎᎢ, ᎠᎴ ᎤᏄᎶᎴᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ, ᎠᎴ ᎦᏁᎸ ᎤᏘᏃᎴᎢ. ᎾᏍᎩᏃ ᎤᏃᏁᎴ ᎴᏆᏂ ᏂᎦᏛ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᏂᎯ ᎠᏴ ᏗᎩᎪᎳ ᎠᎴ ᎠᏴ ᎠᎩᏇᏓᎸᎢ. ᏏᏅᏙᏃ ᎢᎪᎯᏛ ᎤᏕᏁᎴᎢ. ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏗᎾᏓᏅᏟᏉᏍᎪ ᎨᏒ ᏱᏂᎦᎵᏍᏙᏗᎭ ᎠᏎᏉ ᎪᎱᏍᏗ ᏱᏍᏆᏛᏁᎭ? ᏍᎩᏃᎲᏏ ᎯᎳᎪ ᎢᎦ ᎬᎫᏴᎡᎮᏍᏗ. ᎴᏆᏂᏃ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᎾᏛ ᎠᏁᎮᎢ; ᎤᏓᏂᎵᎨ ᎵᎠ ᏚᏙᎡᎢ, ᎣᏂᏃ ᎡᎯ ᎴᏥᎵ ᏚᏙᎡᎢ. ᎵᎠ ᏧᏐᏅ ᏗᎧᏂ ᎨᏎᎢ; ᎴᏥᎵᏍᎩᏂ ᎤᏬᏚᎯᏳ ᎠᎴ ᎣᏏᏳ ᏗᎧᏃᏗᏱ ᎨᏎᎢ. ᏤᎦᏈᏃ ᎴᏥᎵ ᎤᎨᏳᎯᏳ ᎨᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᏓᎬᏯᏛᏁᎵ ᎴᏥᎵ ᎡᎯ ᏤᏥ ᏱᏍᎩᎧᏁᎸ. ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏟ ᎣᏏᏳ ᏂᎯ ᏱᎬᏯᎧᏁᎸ, ᎠᏃ ᏅᏩᏓᎴ ᎠᏍᎦᏯ ᏱᏥᏯᎧᏁᎸ; ᎨᏦᎴᏍᏗᏉᎪᎦ. ᏤᎦᏈᏃ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎤᏓᏛᏁᎴ ᎴᏥᎵ ᎠᏓᏒᎲᏍᎬᎢ; ᎢᎸᏍᎩᏉᏃ ᏧᏒᎯᏛ ᎤᏰᎸᏁᎢ, ᏂᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᎥ ᎤᎨᏳᏒᎢ. ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᏍᎩᎧᏏᏃ ᎠᏆᏓᎵᎢ, ᎿᏉᏰᏃ ᎠᎵᏍᏆᏓ ᎩᏂᏁᏨᎢ, ᎾᏍᎩᏃ ᎦᏓᏰᏒᎭ. ᎴᏆᏂᏃ ᏚᏪᏟᏌᏁ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᎾᎿ ᎠᏁᎯ, ᎠᎴ ᎤᏛᏅᎢᏍᏔᏁ ᏣᎦᎵᏍᏓᏴᎾᏁᏗᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᏒ ᏄᎵᏍᏔᏅ, ᎾᏍᎩ ᎤᏪᏥ ᎵᎠ ᏭᏘᏃᎮᎴᎢ; [ᏤᎦᏈᏃ] ᎤᏓᏴᏎᎢ. ᎴᏆᏂᏃ ᎤᏪᏥ ᎵᎠ ᎤᏪᎧᏁᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏏᎵᏆ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏑᎾᎴ ᏄᎵᏍᏔᏅ, ᎬᏂᏳᏉ, ᎵᎠ ᏂᎦᎨᏎᎢ; [ᏤᎦᏈᏃ] ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᎦᏙᏃ ᎯᎠ ᏥᏂᏍᏋᎦ? ᏝᏍᎪ ᎴᏥᎵ ᏱᎬᏒᎲᏍᎨ ᏥᏓᎩᎸᏫᏍᏓᏁᎲᎩ? ᎦᏙᏃ ᎥᏍᎩᎶᏄᎲᎵ? ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᎾᏍᎩ ᎢᏯᏛᏁᏗ ᏱᎩ ᎠᏴ ᎣᎦᏤᎵᎪᎯ, ᎾᏍᎩ ᎣᏂ ᎡᎯ ᎠᏓᎧᏁᏗᏱ ᎠᏏ ᎢᎬᏱ ᎡᎯ ᎾᏓᎧᏁᎸᎾ. ᎯᏍᏆᏓ ᎾᏍᎩ ᎤᏤᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎯᎠᏃ ᎾᏍᏉ ᎢᏨᏯᎧᏁᎸᎭ, ᎠᏏ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᏨᏛᏍᏆᏛᏁᎵ. ᏤᎦᏈᏃ ᎾᏍᎩ ᏄᏛᏁᎴᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎤᏍᏆᏕᎴᎢ; ᎴᏥᎵᏃ ᎿᏍᏉ ᎾᏍᎩ ᎤᏪᏥ ᎤᏪᎧᏁᎴ ᎤᏓᏴᏍᏗ. ᎴᏆᏂᏃ ᎤᏪᏥ ᎴᏥᎵ ᎤᏪᎧᏁᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏈᎳ ᏧᏓᎢᏛ, ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ. ᎾᏍᏉᏃ ᎴᏥᎵ ᎤᏓᏴᏎᎢ, ᎠᎴ ᎴᏥᎵ ᎤᏟ ᏄᎨᏳᏎ ᎡᏍᎦᏉ ᎵᎠ; ᎠᎴ ᎠᏏ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎤᏛᏁᎴᎢ. ᏱᎰᏩᏃ ᎤᏙᎴᎰᏒ ᎵᎠ ᎠᏥᏐᎸᎢᏍᏗᏍᎬᎢ, ᎤᎳᏅᏓᏕᎴ ᏧᎷᎸᏗᏱ; ᎴᏥᎵᏍᎩᏂ ᏂᏓᎷᎸᎥᏍᎬᎾ ᎨᏎᎢ. ᎵᎠᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᎷᏈᏂ ᏚᏬᎡᎢ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᏱᎰᏩ ᏓᎧᎿᏂᎦ ᎤᏲ ᎾᏆᏛᏅᎢ; ᎿᏉᏰᏃ ᎠᎩᏰᎯ ᎠᏎ ᎠᎩᎨᏳᏍᏗ. ᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᏱᎰᏩ ᎤᏛᎦᏅ ᎥᎩᏐᏅᎢᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎾᏍᏉ ᎥᎠᎩᎧᏏ ᎾᏍᎩᏃ ᏏᎻᏯᏂ ᏚᏬᎡᎢ. ᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎪᎯ ᎨᎵ ᎠᏎ ᎠᎩᏰᎯ ᏛᏆᏜᏫᏍᏔᏂ, ᎠᏂᏦᎢᏰᏃ ᎠᏂᏧᏣ ᏕᏥᎾᏄᎪᏫᏏ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎵᏫ ᏓᎪᎡᎢ. ᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎿᏉ ᏱᎰᏩ ᏓᏥᎸᏉᏔᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏓ ᏚᏬᎡᎢ; ᎤᏲᎯᏍᏔᏁᏃ ᏓᎷᎸᎥᏍᎬᎢ. ᎠᏯᏙᎸᎢ 30 ᎴᏥᎵᏃ ᎤᏙᎴᎰᏒ ᏤᎦᏈ ᏂᎦᎷᎸᏁᎲᎾ ᎨᏒᎢ, ᎤᏩᏳᏤᎴ ᎤᎸᎢ; ᎯᎠᏃ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏗᏂᏲᎵ ᏗᏍᎩᎧᏏ, ᎢᏳᏰᏃ ᏱᏝ, ᏓᏥᏲᎤᏏ. ᏤᎦᏈᏃ ᎤᎿᎸᏤᎴ ᎴᏥᎵ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᏥᎪᎠᏴ ᎤᏁᎳᏅᎯ ᏥᏯᏓᏁᏟᏴᏍᏓᏁᎸ, ᎾᏍᎩ ᏧᏲᏍᏙᏯᏅ ᏗᏣᎷᎸᏗᏱ? ᎯᎠᏃ ᏄᏪᏎ [ᎴᏥᎵ,] ᎬᏂᏳᏉ, ᏈᎳ ᏥᏅᏏᏓᏍᏗ ᎠᎨᏴ, ᎾᏍᎩ ᎭᏓᏳᎦ, ᎾᏍᎩᏃ ᏗᏥᏂᎨᏂ ᏓᏓᎾᏄᎪᏫᏒᎭ, ᎾᏍᎩᏃ ᎠᏴ ᎾᏍᏉ ᏗᏂᏲᎵ ᏓᏇᎮᏍᏗ ᎾᏍᎩ ᏧᎾᏄᎪᏫᏒᎯ. ᎤᏪᎧᏁᎴᏃ ᏈᎳ ᎠᏛ ᎤᏅᏏᏓᏍᏗ ᎾᏍᎩ ᎤᏓᏴᏍᏗ; ᏤᎦᏈᏃ ᎤᏓᏴᏎᎢ. ᏈᎳᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ. ᎴᏥᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᏓᏊᎪᏓᏁᎸ, ᎠᎴ ᎾᏍᏉ ᎠᏛᎬᎦ ᏥᏁᎬᎢ, ᎠᎴ ᎠᎩᎧᏏ ᎠᏇᏥ ᎠᏧᏣ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏂ ᏚᏬᎡᎢ. ᏈᎳᏃ ᎴᏥᎵ ᎤᏅᏏᏓᏍᏗ ᎤᏁᎵᏤᎢ, ᎠᎴ ᏤᎦᏈ ᏔᎵᏁ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎴᎢ. ᎴᏥᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏣᏘ ᎠᏍᏓᏯ ᏙᎩᎾᏟᏴᏌᏕᎬ ᎥᎩᎸᎢ, ᎠᎴ ᎠᏴ ᎦᏓᏎᎪᎩ; ᏁᏩᏔᎵᏃ ᏚᏬᎡᎢ. ᎵᎠᏃ ᎤᏙᎴᎰᏒ ᎤᏲᎯᏍᏔᏅ ᏓᎷᎸᏍᎬᎢ, ᏏᎵᏆ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ ᏭᏯᏅᎮᎢ, ᎠᎴ ᏤᎦᏈ ᎤᏪᎧᏁᎴ ᎾᏍᎩ ᎤᏓᏴᏍᏗ. ᏏᎵᏆᏃ ᎵᎠ ᎤᏅᏏᏓᏍᏗ, ᏤᎦᏈ ᎤᎾᏄᎪᏫᏎᎴ ᎠᏧᏣ. ᎵᎠᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏑᎾᏓᏡᎩ ᏛᎾᎢ, ᎦᏗᏃ ᏚᏬᎡᎢ. ᏏᎵᏆᏃ ᎵᎠ ᎤᏅᏏᏓᏍᏗ, ᏔᎵᏁ ᏤᎦᏈ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎴᎢ. ᎵᎠᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎣᏍᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏆᏓᏅᏓ, ᎠᏂᎨᏴᏰᏃ ᎠᏍᏛ ᎤᏓᏅᏓᏩᏕᎩ ᎬᏉᏎᎮᏍᏗ; ᎠᏒᏃ ᏚᏬᎡᎢ. ᎷᏈᏂᏃ ᎤᏪᏅᏎ ᎾᎯᏳ ᎤᏣᎴᏍᏗ ᎠᏍᎫᏕᏍᏗᏱ ᎤᏍᏆᎸᎲ, ᎠᎴ ᎤᏂᏍᏇᏚᎩ ᎢᎾᎨ ᏚᏩᏛᎮᎢ, ᎠᎴ ᎤᏥ ᎵᎠ ᏚᏲᎮᎴᎢ; ᎿᏉᏃ ᎴᏥᎵ ᎯᎠ ᏄᏪᏎᎴ ᎵᎠ, ᏗᏍᎬᏏ ᎢᎦᏛ ᎤᏂᏍᏇᏚᎩ ᏤᏥ ᏧᏤᎵᎦ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏥᎪ ᏅᎵᏌᎵᏉ ᎣᏍᏗᏁᎳ ᏥᏍᎩᏯᏅᎡᎸ? ᎾᏍᏉᏍᎪ ᏙᏛᏍᎩᎩᎡᎵ ᎤᏂᏍᏇᏚᎩ ᎠᏇᏥ ᏧᏤᎵᎦ? ᎴᏥᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᎩ ᎠᏗᎾ ᎢᏳᏍᏗ ᎪᎯ ᏒᏃᏱ ᏕᏍᏓᏂᏏᏅᎭ ᎤᏂᏍᏇᏚᎩ ᏤᏥ ᏧᏤᎵᎦ ᏕᏍᎩᏁᎸ ᎢᏳᏍᏗ. ᏤᎦᏈᏃ ᎢᎾᎨ ᏧᎶᏎ ᎤᏒᎯᏰᏱ, ᎵᎠᏃ ᏚᏠᏒᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏎ ᎠᏴ ᏓᏍᏆᏂᏏᏁᎵ; ᎤᏙᎯᏳᎯᏯᏰᏃ ᎤᏂᏍᏇᏚᎩ ᎠᏇᏥ ᏧᏤᎵᎦ ᎬᏯᎫᏴᏔᏅ. ᎾᎯᏳᏃ ᏒᏃᏱ ᏚᎾᏂᏏᏁᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᏛᏓᏍᏓᏁᎴ ᎵᎠ, ᎠᎴ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎯᏍᎩᏁ ᎤᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ ᎠᏧᏣ. ᎵᎠᏃ ᎯᎠ ᏄᏪᎡᎢ, ᎤᏁᎳᏅᎯ ᎠᎩᏁᎸ ᏄᏍᏛ ᎠᏆᎫᏴᎡᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏅᏏᏓᏍᏗ ᎠᏛ ᎣᏍᏗᏁᎳ ᏥᏯᎧᏁᎸᎢ; ᎢᏏᎦᏃ ᏚᏬᎡᎢ. ᎵᎠᏃ ᎠᏏ ᎤᏁᎵᏤᎢ, ᎠᎴ ᏑᏓᎵᏁ ᎤᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ ᎠᏧᏣ. ᎵᎠᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᎩᎲᏏ ᎣᏍᏛ ᎠᏓᏁᏗ ᎨᏒᎢ; ᎿᏉ ᎣᏍᏗᏁᎳ ᏓᏲᏍᏓᏁᎳᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏑᏓᎵ ᏕᏥᎾᏄᎪᏫᏎᎸ ᎠᏂᏧᏣ; ᏤᏆᎳᏂᏃ ᏚᏬᎡᎢ. ᎣᏂᏃ ᎤᎾᏄᎪᏫᏎ ᎠᎨᏳᏣ, ᏓᏂᏃ ᏚᏬᎡᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᏅᏓᏕ ᎴᏥᎵ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏛᏓᏍᏓᏁᎴᎢ, ᎠᎴ ᎤᎳᏅᏓᏕᎴ ᏧᎷᎸᏗᏱ. ᎤᏁᎵᏤᏃ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᎲᎾ ᎤᏕᎰᎯᏍᏗ ᎥᏆᏓᏅᏖᏍᎬᎢ. ᏦᏩᏃ ᏚᏬᎡᎢ; ᎯᎠ ᏄᏪᏎᎢ, ᏱᎰᏩ ᎠᏏ ᏅᏩᏓᎴ ᎠᏧᏣ ᏛᎩᎧᏁᎵ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᎴᏥᎵ ᏦᏩ ᎤᎾᏄᎪᏫᏒ, ᎾᏍᎩ ᏤᎦᏈ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᏍᏆᏂᎩᏍᏓ, ᎾᏍᎩᏃ ᏗᏇᏅᏒ ᏫᏥᎶᎢ, ᎠᎴ ᎠᏆᏤᎵᎪᎯ ᏗᎨᏒᎢ. ᏗᏍᎩᏲᎯᏏ ᏗᏆᏓᎵᎢ, ᎠᎴ ᏗᏇᏥ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎲ ᏗᎬᏒᏅᎯ ᏥᎩ, ᎠᎴ ᎦᏂᎩ; ᏨᏒᏰᏃ ᎯᎦᏔᎭ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎸᎢ. ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗ ᎨᏒ ᎬᏩᏛᎡᎴᏍᏗ, [ᎦᎮᎮᏍᏗᏉ;] ᎠᏆᏙᎴᎰᏒᏰᏃ ᎾᏍᎩ ᏱᎰᏩ ᎣᏏᏳ ᎾᏆᏛᏁᎸ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᏁᎩ ᎢᎦᎩ ᏍᎩᏠᎯᏍᏗᏱ, ᎠᎴ ᏓᎬᏁᎵᏉ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏨᏒ ᎯᎦᏔᎭ ᏄᏍᏛ ᎪᎱᏍᏗ ᎬᏩᏛᏁᎸᎢ, ᎠᎴ ᏗᏣᏤᎵ ᎦᎾᏝᎢ ᏥᏚᏥᎦᎿᏩᏗᏙᎲᎩ; ᎤᏍᏗᏉᏰᏃ ᏥᏣᎲ ᎠᏏ ᏂᏥᎷᎬᎾ ᏥᎨᏒᎩ, ᎪᎯᏃ ᎬᏒ ᎤᏁᏉᏨ ᏧᏈᏯ ᏄᎵᏍᏔᏅ; ᏱᎰᏩᏃ ᎣᏍᏛ ᏂᏣᏛᏁᎸ ᎬᎩᎷᏨᎯ; ᎢᎳᎩᏳᏃ ᏓᎦᏓᏁᎳᏂ ᎠᏋᏒ ᏓᏆᏓᏘᎾᎥ ᎤᎾᎵᏍᏕᎸᏙᏗ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ ᏓᎬᏁᎵ? ᏤᎦᏈᏃ ᎯᎠ ᏄᎡᏎᎢ, ᎥᏝ ᎪᎱᏍᏗ ᏴᏓᏍᎩᏁᎵ; ᎢᏳᏃ ᎯᎠ ᏱᏂᏍᏆᏛᏁᎸ ᏔᎵᏁ ᏱᏙᎬᎾᏗᏍᏓ, ᎠᎴ ᏱᏙᏥᎦᏘᏓ ᏗᏣᏤᎵ ᎦᎾᏝᎢ ᎪᎯ ᎢᎦ ᏥᎩ ᏓᎨᏙᏂ ᏂᎦᏛ ᎦᎾᏝᎢ ᏣᏤᎵ ᏄᎾᏛᏅᎢ, ᏕᎦᏓᏓᎴᏗᏍᎨᏍᏗ ᏂᎦᏛ ᎠᏫ ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᏧᏂᎳᎾᎢ, ᎠᎴ ᏂᎦᏛ ᎠᏂᎬᎾᎨ ᎠᏫ ᎤᎾᏜᏍᏛ ᎤᏂᏃᏕᎾ ᎤᎾᏓᏡᎬᎢ, ᎠᎴ ᏧᏂᎳᎾᎢ ᎠᎴ ᎤᏂᏚᏯᏍᏗ ᎤᎾᏜᏍᏛ ᏗᏂᎭᏄᎸᎯ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩ ᏍᏆᎫᎡᏓᏁᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎯ ᎨᏒ ᎬᏂᎨᏒ ᎾᏋᏁᎮᏍᏗ ᎪᎯ ᎨᏒ ᎤᏓᎴᏅᏛ, ᎾᎯᏳ ᏍᏆᎫᏴᎡᎸ ᎯᎪᏩᏘᏍᎨᏍᏗ; ᏂᎦᏛ ᏄᏂᏚᏯᏍᏛᎾ ᎠᎴ ᏂᏚᏂᎳᎾᎥᎾ ᏗᏂᎭᏄᎸᎯ ᎤᎾᏓᏑᏴᎢ, ᎠᎴ ᎠᏂᎬᎾᎨ ᎠᏂᎨᏒᎾ ᎤᏂᏃᏕᎾ ᎤᎾᏓᏑᏴᎢ, ᎾᏍᎩ ᎦᏃᏍᎩᏛ ᏍᎩᏰᎸᎾᏁᏗ ᎨᏎᏍᏗ. ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎰᏩᏉ, ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎾᏍᎩᏯ ᏣᏁᏨᎢ. ᎾᎯᏳᏃ ᎢᎦ ᏚᏪᎧᎲᏎ ᏗᏂᎭᏄᎸᎯ ᎠᏂᏨᏯ, ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ, ᎠᎴ ᏧᏂᎳᎾᎢ, ᎠᎴ ᎾᏂᎥ ᏗᏂᎭᏄᎸᎯ ᎠᏂᎩᏏ ᎤᏂᏚᏯᏍᏗ ᎠᎴ ᏧᏂᎳᎾᎢ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎤᏁᎬ ᏳᏓᏓᎳ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎬᎾᎨ ᎤᏂᏃᏕᎾ ᎤᎾᏓᏑᏴᎢ, ᎠᎴ ᏧᏪᏥ ᏕᎤᏲᎯᏎᎴᎢ. ᎠᎴ ᏦᎢ ᏧᏙᏓᏆᏛ ᎡᏅᏍᏗ ᎢᏴᏛ ᏂᏚᎾᏓᎳᏕ ᎤᏩᏒ ᎠᎴ ᏤᎦᏈ; ᏤᎦᏈᏃ ᎠᏂᏐᎢ ᎤᏂᏙᏕᎾ ᎴᏆᏂ ᏧᏤᎵ ᏕᎬᎾᏗᏍᏗᏍᎨᎢ. ᏤᎦᏈᏃ ᏚᏴᎮ ᏗᏤ ᎦᎾᏍᏓ ᏥᏳ ᎠᎴ ᎠᎹᏂ ᎠᎴ ᏘᎵ; ᎠᎴ ᏚᏯᎸᎮ ᏧᏁᎬ ᏧᎸᏓᏅᏂ ᏂᏚᏩᏁᎴᎢ, ᎠᎴ ᎤᏁᎬ ᎨᏒ ᎦᎾᏍᏙᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎴᎢ. ᎠᎴ ᎾᏍᎩ ᎦᎾᏍᏓ ᏄᏯᎸᏛ ᏚᏪᏘᏁ ᏕᎨᎵᏍᎦᎸᎲ ᎠᎹ ᏧᎾᏗᏔᏍᏗᏱ, ᎾᎿ ᎠᏫ ᏓᎾᏗᏔᎯᎯᎲᎢ, ᎢᎬᏱᏗᏢ ᎠᏫ ᎠᏂᎷᎬᎢ, ᎾᏍᎩ ᏧᏂᏁᎵᎢᏍᏗᏱ ᎾᎯᏳ ᏓᎾᏗᏔᎯᎦ. ᎠᏫᏃ ᏓᏂᏁᎵᎨ ᎦᎾᏍᏓ ᏕᎨᏛ ᎢᎬᏱᏗᏢ, ᎠᎴ ᏚᎾᏅᏁ ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ, ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᏧᏂᎳᎾᎢ. ᏤᎦᏈᏃ ᎠᏂᎩᎾ ᏚᏓᏓᎴᏔᏁᎢ; ᎬᏩᏕᏱᏛᏃ ᏧᏂᎶᎸᏗ ᎠᎴ ᏂᎦᏛ ᎠᏂᎬᎾᎨ ᎴᏆᏂ ᏧᏤᎵ ᎠᏫ ᎤᎾᏓᏑᏴ ᎠᏂᏙᎾᎥ ᎢᏗᏢ ᏫᏚᎦᏔᏁ ᎠᏫ; ᎤᏩᏒᏃ ᏧᏤᎵ ᎤᎾᏁᎳᎩ ᏚᏪᎧᏁᎢ, ᎥᏝᏃ ᎴᏆᏂ ᏧᏤᎵ ᎠᏁᏙᎲ ᏱᏚᏪᎧᏁᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎢᏳᏃ ᏧᎾᎵᏂᎦᏂ ᎠᏫ ᏓᏂᏁᎵᎩ, ᎾᏍᎩ ᏤᎦᏈ ᎦᎾᏍᏓ ᏕᎨᎵᏍᎦᎸᎲ ᏕᎦᎳᏗᏍᎨ ᎠᏫ ᏓᏂᎧᏅ ᎢᏗᏢ, ᎾᏍᎩ ᎦᎾᏍᏓ ᏕᎨᏛ ᏧᏂᏁᎵᏍᏗᏱ. ᏗᏂᏩᎾᎦᎳᏍᎩᏂ ᏥᎨᏐ ᎥᏝ [ᎦᎾᏍᏓ] ᏱᏗᎦᎳᏗᏍᎨᎢ; ᎾᏍᎩᏃ ᏗᏂᏩᎾᎦᎳ ᎴᏆᏂ ᏧᏤᎵ ᎨᏎᎢ, ᏧᎾᎵᏂᎦᏂᏃ ᏤᎦᏈ ᏧᏤᎵ ᎨᏎᎢ. ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎤᏣᏘ ᎤᏁᏉᏤᎴᎢ, ᎠᎴ ᎤᏂᏣᏘ ᎠᏫ ᏚᏪᎧᎮᎢ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎨᎻᎵ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ. ᎠᏯᏙᎸᎢ 31 ᎤᏛᎦᏁᏃ ᎠᏂᏁᎬ ᎴᏆᏂ ᏧᏪᏥ, ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᏤᎦᏈ ᎠᎩᏐᏅ ᏂᎦᏛ ᎢᎩᏙᏓ ᎤᏤᎵᎦ ᏥᎨᏒᎩ; ᎠᎴ ᎢᎩᏙᏓ ᎤᏤᎵᎦ ᏥᎨᏒᎩ ᎤᏩᏛᏔᏅ ᎯᎠ ᏂᎦᏛ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᏤᎦᏈᏃ ᎤᎪᎮ ᎴᏆᏂ ᎤᎧᏛᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎥᏝ ᏧᏩᎫᏔᏅᏒ ᏕᎤᎧᏂᏍᎬ ᎩᏯ ᏱᏄᏍᏕᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏥᎭᏨᎾ ᏗᏣᎦᏴᎵᎨ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᏗᏣᏴᏫ ᏗᏁᎲ ᏫᎯᎶᎯ; ᎠᏴᏃ ᏕᎬᎦᎿᏩᏗᏙᎮᏍᏗ. ᏤᎦᏈᏃ ᎤᏓᏅᏎ ᏫᏚᏯᏅᎮ ᎴᏥᎵ ᎠᎴ ᎵᎠ, ᎢᎾᎨ ᎤᏂᎷᎯᏍᏗᏱ ᎠᏫ ᏚᏪᎧᎲᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏥᎪᏩᏘᎭ ᎢᏍᏗᏙᏓ ᎤᎧᏛ ᎾᏍᎩ ᎥᏝ ᏧᏩᎫᏔᏅᏒ ᏥᏄᏍᏛ ᏓᏆᎧᏂᏍᎬ ᏱᏄᏍᏗ ᎪᎯ ᎨᏒᎢ; ᎠᏎᏃ ᎡᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ ᏓᎩᎧᎿᏩᏗᏙᎸ. ᎠᎴ ᎢᏍᏗᎦᏔᎭ ᎾᏆᎵᏂᎬᎬ ᎢᏴᏛ ᎠᏋᏔᏅ ᎪᎱᏍᏗ ᏥᏯᏛᏁᎸ ᎢᏍᏗᏙᏓ. ᎠᎴ ᎢᏍᏗᏙᏓ ᎠᎩᎶᏄᎲᎵ, ᎠᎴ ᎠᏍᎪᎯ ᎾᎩᏁᏟᏴᏏ ᎠᏆᎫᏴᎡᎲᎢ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎥᏝ ᎤᏁᎳᎩ ᏳᏪᎵᏎᎸ ᎪᎱᏍᏗ ᎠᏋᏁᏗᏱ. ᎢᏳᏃ ᎯᎠ ᏱᏄᏪᏒ, ᎤᏂᏚᏯᏍᏗ ᏕᎬᏯᎫᏴᏓᏁᎮᏍᏗ; ᎿᏉ ᏂᎦᏛ ᎤᏂᏚᏯᏍᏗ ᏓᏂᎾᏄᎪᏫᏍᎪᎢ; ᎠᎴ ᎯᎠ ᏱᏄᏪᏒ ᏛᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ ᏕᎬᏯᎫᏴᏓᏁᎮᏍᏗ, ᎿᏉ ᏂᎦᏛ ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ ᏓᏂᎾᏄᎪᏫᏍᎪᎢ. ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎢᏍᏗᏙᏓ ᏕᎤᏯᏅᎡᎸ ᎠᏫ, ᎠᎴ ᎠᏴ ᏕᎠᎩᎧᏁᎸ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᎾᎯᏳ ᎠᏫ ᏓᏂᏁᎵᎬᎢ, ᎾᏍᎩ ᏕᎠᏆᎧᎾᏅᎩ, ᎠᎴ ᎦᏍᎩᏓᏍᎬ ᎠᎩᎪᎲᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎠᏂᏨᏯ ᎾᏍᎩ ᎠᏫ ᏗᏂᏃᏁᎯ ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ, ᎠᎴ ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᎤᎾᏅᏣᏛ ᎨᏒᎩ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎠᎩᏁᏤᎸᎩ ᎦᏍᎩᏓᏍᎬᎢ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᏤᎦᏈ; ᎯᎠᏃ ᎾᎩᏪᏒᎩ, ᎠᏂ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᏫᏔᎧᏅᎦ ᎠᎴ ᏫᏘᎪᏩᏛ ᏂᎦᏛ ᎠᏂᏨᏯ ᎠᏫ ᏗᏂᏃᏁᎯ ᎬᏩᏕᏱᏛ ᏚᏂᎶᎸᏗ, ᎠᎴ ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᎤᎾᏅᏣᏛ; ᎠᎩᎪᎲᏰᏃ ᏂᎦᏛ ᎴᏆᏂ ᏂᏨᏁᎲᎢ. ᎠᏴ ᎤᏁᎳᏅᎯ ᏇᏕᎵ ᎨᎢ, ᎾᎿ ᏅᏯ ᎨᏛᎪᎢ ᏥᏣᎶᏁᏔᏅᎩ, ᎠᎴ ᏥᏍᏆᏎᎵᏓᏁᎸᎩ; Ꭷ, ᏔᎴᎲᎦ, ᎠᎴ ᎯᎠ ᎠᏂ ᎦᏙᎯ ᎭᏓᏅᎾ, ᎠᎴ ᏗᏣᏴᏫ ᏗᏁᎲ ᏫᎯᎶᎯ. ᎴᏥᎵᏃ ᎠᎴ ᎵᎠ ᎬᏩᏁᏤᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ. ᏥᎪ ᎠᏏ ᎣᎩᏂᏙᏓ ᎦᏁᎸ ᎠᎭ ᎣᎩᎾᏤᎵᎦ ᎠᎴ ᎣᎩᎾᏘᏯᏍᏓᏁᏗ ᎨᏒᎢ? ᏝᏍᎪ ᎣᏍᏕᏙᎯᏉ ᎣᎩᏂᏰᎸᏅᎯ ᏱᎩ? ᏙᎩᏂᎾᏗᏅᏰᏃ, ᎠᎴ ᏦᎩᎾᏤᎵᎦ ᎠᏕᎸ ᏚᏒᏃᏅ. ᏂᎦᏛᏰᏃ ᏧᎬᏩᎶᏗ ᎤᏁᎳᏅᎯ ᎣᎩᏂᏙᏓ ᏧᎩᎡᎸ, ᎠᏴ ᎠᎴ ᏦᎩᏁᏥ ᎣᏍᎦᏤᎵᎦ; ᎾᏍᎩᏃ ᎿᏉ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᏁᎳᏅᎯ ᏣᏁᏤᎸ, ᎾᏍᎩ ᎿᏛᎦ. ᎿᏉᏃ ᏤᎦᏈ ᏚᎴᏁᎢ, ᎠᎴ ᎨᎻᎵ ᏚᎩᎸᏔᏁ ᏧᏪᏥ ᎠᎴ ᏧᏓᎵᎢ. ᎠᎴ ᏂᎦᏛ ᏧᏤᎵᎦ ᎦᎾᏝᎢ ᏚᏘᎾᏫᏛᎮᎢ, ᎠᎴ ᏂᎦᏛ ᏧᎬᏩᎶᏗ ᎤᏩᏛᏛ ᏇᏓᏁᏔᎻᏱ ᎤᏫᏛᎰᏁᎢ, ᎤᏙᏓ ᎡᏏᎩ ᏤᎲ ᏭᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᎨᎾᏂ ᎦᏓ ᏗᎲᎢ. ᎴᏆᏂᏃ ᎤᏂᏃᏕᎾ ᏚᏍᏙᏰᎲᏎᎢ; ᎴᏥᎵᏃ ᏚᏃᏍᎩᏎ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎾᏍᎩ ᎤᏙᏓ ᏧᏤᎵᎦ. ᏤᎦᏈᏃ ᎤᏓᏃᏍᎩᏛᏉ ᎤᏂᎩᎡᎴ ᎴᏆᏂ ᏏᎵᏱ ᎡᎯ, ᎥᏝᏰᏃ ᏳᏃᏁᎴ ᎤᎵᏘᏒᎢ. ᎤᎵᏘᏎᏃ ᎬᏰᎯ ᏂᎦᏛ ᎤᎿᎥᎢ; ᎠᎴ ᏚᎴᏁᎢ, ᎠᎴ ᎡᏉᏂ ᏚᏪᏐᏤᎢ, ᎠᎴ ᎩᎵᏯᏗ ᏦᏓᎸ ᎢᏗᏢ ᏫᏚᏭᎪᏔᏁᎢ. ᏦᎢᏁᏃ ᎢᎦ ᎠᏥᏃᏁᎴ ᎴᏆᏂ ᏤᎦᏈ ᎤᎵᏘᏒᎢ. ᎠᎾᎵᏅᏟᏃ ᏚᏘᏅᏎᎢ, ᎠᎴ ᎤᎨᎲᏎ ᎦᎵᏉᎩ ᏧᏙᏓᏆᏛ ᎡᏅᏍᏗ ᎢᏴᏛ, ᎩᎵᏯᏗᏃ ᎣᏓᎸ ᏫᎬᏩᏢᏔᎮᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᎷᏤᎴ ᎴᏆᏂ ᏏᎵᏱ ᎡᎯ ᏒᏃᏱ ᎠᏍᎩᏓᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎯᏬᏁᏔᏅ ᏤᎦᏈ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ. ᎿᏉᏃ ᎴᏆᏂ ᏭᏢᏔᎮ ᏤᎦᏈ. ᏤᎦᏈᏃ ᎾᎿ ᎣᏓᎸ ᏚᎵᏦᏖᎢ; ᎴᏆᏂᏃ ᎠᎴ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᎩᎵᏯᏗ ᎣᏓᎸ ᏚᏂᎵᏦᏔᏁᎢ. ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎦᏙᏉ ᏣᏛᏁᎸ, ᎾᏍᎩ ᏣᏓᏃᏍᎩᏛ ᎾᏆᏕᎶᎰᏒᎾ ᏨᏗᏣᎵᏘᏒ, ᎠᎴ ᏗᏇᏥ ᏥᏙᏔᏘᎾᏫᏛᎲ, ᎾᏍᎩᏯᏉ ᎠᏂᏴᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎬᏔᏅᎯ ᏗᎦᏂᏴᏛ. ᎦᏙᏃ ᎤᏕᎵᏛ ᏗᏣᎵᏘᏎᎢ, ᎠᎴ ᎢᏍᏆᏓᏃᏍᎩᎡᎴᎢ; ᎠᎴ ᎥᏝ ᏱᏍᎩᏃᏁᎴᎢ, ᎾᏍᎩ ᎣᏍᏛ ᎢᎦᏓᏅᏛ ᎬᏯᏂᎩᏍᏙᏗᏱ, ᏗᎧᏃᎩᏛ ᎬᏗ, ᎠᎴ ᎠᎱᎵ ᎢᏳᏍᏗ ᎬᏗ, ᎠᎴ ᎠᏏᎳᏕᏫᏛ ᏗᎧᏃᎩᏍᏙᏗ ᎬᏗ? ᎥᏝ ᎠᎴ ᏫᏓᏔᏪᏙᎦ ᎣᏍᏇᎵᏎᎴ ᏗᏇᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏗᏇᏥ ᎠᏂᎨᏴ? ᎭᎵᏍᎦᎿᏩᏉ ᎾᏍᎩ ᏥᏂᏣᏛᏁᎸ. ᎠᏴ ᏰᎵᏉ ᎾᏆᎵᏂᎬᎦ ᎤᏲ ᎢᎬᏴᏁᏗᏱ; ᎠᏎᏃ ᎢᏥᏙᏓ ᎤᏤᎵᎦ ᎤᎾᎳᏅᎯ ᎠᎩᏁᏤᎸᎩ ᎤᏒᎯ ᏒᏃᏱ, ᎯᎠ ᏄᏪᏒᎩ; ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏤᎦᏈ ᎯᏁᏤᎸᎩ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ. ᎠᎴ ᎿᏉ ᎠᏎ ᏤᏅᏍᏗ ᏥᏂᏣᎵᏍᏓᏁᎮᎢ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏣᏘ ᏤᎳᏲᏍᎬ ᏣᏙᏓ ᎦᏁᎸᎢ, ᎠᏎᏃ ᎦᏙ ᏗᎤᎵᏍᏙᏔᏅ ᎤᎾᏁᎳᏅᎯ ᏗᏆᏤᎵᎦ ᏙᏍᎩᏃᏍᎩᏎᎢ? ᏤᎦᏈᏃ ᏗᎤᏁᏤ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᏥᏍᎦᎢᎲᏍᎩᏂ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ; ᎯᎠᏰᏃ ᎢᏪᏒᎩ, ᎬᏍᎦᎢᏍᏓᎩᏆᎴ ᏱᏓᎩᏯᏅᏏ ᏧᏪᏥ ᎠᏂᎨᏴ. ᎩᎶ ᎠᏗᎾ ᏙᎯᏩᏛᎡᎸᎭ ᎤᎾᏁᎳᏅᎯ ᏗᏣᏤᎵᎦ, ᎾᏍᎩ ᏞᏍᏗ ᏱᎬᏁᏍᏗ; ᎢᏓᎵᏅᏟ ᎠᏂᎦᏔᎲ ᎭᎦᏔ ᏣᏤᎵᎦ ᏳᏝᏍᏗ ᏥᏰᎿᎥᎢ, ᎠᎴ ᎯᎩ. ᎥᏝᏰᏃ ᏤᎦᏈ ᏱᎦᏔᎮ ᎴᏥᎵ ᏚᏃᏍᎩᏒᎢ. ᎴᏆᏂᏃ ᏤᎦᏈ ᎤᎵᏦᏛ ᏭᏴᎴᎢ, ᎠᎴ ᎵᎠ ᎤᎵᏦᏛᎢ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎨᏴ ᎨᏥᏅᏏᏓᏍᏗ ᏚᏂᎵᏦᏛᎢ; ᎠᏎᏃ ᎥᏝ ᏱᏚᏩᏛᎮᎢ. ᎿᏉᏃ ᎤᏄᎪᏤ ᎵᎠ ᎤᎵᏦᏛ ᎠᎴ ᎴᏥᎵ ᎤᎵᏦᏛ ᏭᏴᎴᎢ. ᎴᏥᎵᏃ ᏧᎩᏛ ᎨᏎ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᎴ ᎨᎻᎵ ᎦᏯᎱᎶᏗ ᏫᏚᎳᏁᎢ, ᎠᎴ ᏚᏍᎩᎳᏁᎢ. ᎴᏆᏂᏃ ᏂᎬ ᎦᎵᏦᏛ ᎤᏲᎴᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏚᏩᏛᎮᎢ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎤᏙᏓ, ᏞᏍᏗ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᎤᏐᏅᏤᎸᎩ ᎾᏍᎩ ᏗᎦᏥᏯᎴᏁᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎠᏂᎨᏴᏰᏃ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏥᎩ ᎾᏆᎵᏍᏓᏁᎭ. ᎤᏲᎴᏃ ᎠᏎᏃ ᎥᏝ ᏱᏚᏩᏛᎮ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏤᎦᏈᏃ ᎤᏔᎳᏬᏎᎢ ᎠᎴ ᎤᎾᏘᏲᎴ ᎴᏆᏂ; ᎠᎴ ᏤᎦᏈ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᎦᏙ ᎤᏍᏗ ᎤᏣᏘᏂ ᎾᏆᏛᏁᎸ? ᎦᏙ ᎤᏍᏗ ᎠᎩᏍᎦᏅᏨ ᏥᏄᏖᎡᏗ ᏨᏗᏍᎩᎨᎮᏅ? ᏂᎦᏛᏰᏃ ᏥᏰᎿᎥ ᎯᏍᏆᏂᏰᎣᏅ, ᎦᏙᏃ ᎯᏩᏛ ᎯᏁᎸ ᏣᏅᎯ? ᎾᏍᎩ ᎠᏂ ᎯᎲᎦ ᎠᏂᎦᏔᎲ ᎠᏴ ᎣᏣᎵᏅᏟ, ᎠᎴ ᏂᎯ ᎢᏣᎵᏅᏟ, ᎾᏍᎩᏃ ᏕᎨᎩᏄᎪᏓᏁᎸᎭ. ᎪᎯ ᎿᏉ ᏔᎳᏍᎪᎯ ᎾᏕᏘᏴ ᎬᏯᏕᎥᏏ; ᏗᏣᏤᎵᏃ ᎤᏂᏃᏕᎾ ᎠᏂᎩᏏ, ᎠᎴ ᏗᏂᎭᏄᎸᎯ ᎠᏂᎩᏏ, ᎥᏝ ᏱᏚᏂᎶᎠᎯᏎᎸ ᎠᏂᏛ, ᎠᎴ ᎠᏫ ᎠᏂᏨᏯ ᏂᎯ ᏗᏣᏤᎵᎦ ᎥᏝ ᏱᏓᎩᏯᎥ. ᎠᏥᏓᎦᎸᎢᏒᎯ ᎥᏝ ᏫᏱᎬᏃᎮᎮᎢ, ᎠᏋᏒᏉ ᎠᎩᏲᎱᏎᎲᎩ; ᎠᏴ ᎾᏍᎩ ᏕᏍᎩᎬᏩᎶᏓᏁᎲᎩ, ᎢᎦ ᎦᏂᏴᏛ ᏱᎩ, ᎠᎴ ᏒᏃᏱ ᎦᏂᏴᏛ ᏱᎩ. ᎯᎠ ᎾᏍᎩ ᎾᏆᏛᎿᏕᎬᎩ; ᎢᎦ ᎨᏒ ᎠᏍᏓᎦᏲᏍᎬ ᎠᎩᏲᏍᏗᏍᎬᎩ, ᏒᏃᏱᏃ ᎨᏒ ᎠᏯᏛᎲᏍᎬᎢ; ᎠᎴ ᎦᎸᏗ ᎨᏒ ᏗᏥᎦᏙᎵ ᏓᏓᏅᎡᎲᎩ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏛᎩ ᏔᎳᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎯᏁᎸ ᎨᎥᎩ; ᏂᎦᏚ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎸᎩ ᎠᏂᏔᎵ ᏗᏤᏥ ᏕᎬᏒᎲᏍᎬᎢ, ᏑᏓᎵᏃ ᏧᏕᏘᏴᏛ ᎦᎾᎠᎢ ᏕᎬᏒᎲᏍᎬᎢ; ᎬᏠᏍᎬᏃ ᎠᏍᎪᎯ ᏂᏍᎩᏁᏟᏴᏏ. ᎢᏳᏃ ᎡᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎡᏏᎩ ᎤᎾᏰᏒᎯ ᏔᎵ ᏄᏛᏗᏕᎬᎾ ᏱᎨᏎ ᎠᏴ ᎨᎥᎢ, ᎤᏙᎯᏳᎯᏯ ᎪᎯ ᎨᏒ ᎠᏒᎭ ᏱᏍᏆᏂᎩ ᏍᏔᏁᎢ. ᎤᏁᎳᏅᎯ ᎤᎪᎲ ᎤᏲ ᎾᏆᎵᏍᏓᏁᎸᎢ, ᎠᎴ ᏓᎩᏯᏪᏥᏙᎸᎢ, ᎠᎴ ᎤᏒᎯ ᏒᏃᏱ ᏥᎨᏒ ᏣᎬᏍᎪᎸᏁᎢ. ᎴᏆᏂᏃ ᎤᏁᏤ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎯᎠ ᎠᏂᎨᏴ ᎠᏴ ᏗᏇᏥ, ᎠᎴ ᎯᎠ ᏧᏁᏥ ᎠᏴ ᏗᏇᏥ, ᎠᎴ ᎯᎠ ᎠᏫ ᎠᏴ ᏗᏆᏤᎵᎦ ᎠᏫ, ᎠᎴ ᏂᎦᏛ ᏥᎪᏩᏘᎭ ᎠᏴ ᎠᏆᏤᎵᎦ; ᎦᏙᏃ ᏱᏕᎬᎦ ᎪᎯ ᎢᎦ ᎯᎠ ᏗᏇᏥ, ᎠᎴ ᏧᏁᏥ ᎾᏍᎩ ᏧᏂᎾᏄᎪᏫᏒᎯ ᏥᎩ? Ꭷ, ᎿᏉ ᎧᏃᎮᏛ ᏗᎾᏠᎯᏍᏓ, ᎠᏴ ᏂᎯᏃ; ᎠᎴ ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎨᏎᏍᏗ ᏄᏍᏛ ᏕᎩᎾᏓᏁᏤᎸᎢ. ᏤᎦᏛᏃ ᏅᏯ ᎤᎩᏎᎢ ᎠᎴ ᎤᏪᏘᏁᎢ. ᏤᎦᏈᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᏅᏯ ᏗᏧᏔᎩ; ᏅᏯᏃ ᏚᏂᎩᏎᎢ, ᎠᎴ ᎤᏂᏡᏁᎢ; ᎠᎴ ᎾᎿ ᎦᏡᎬ ᎤᎾᎵᏍᏓᏴᏁᎢ. ᎴᏆᏂᏃ ᏥᎦ ᏌᎭᏚᏓ ᏚᏬᎡᎢ; ᏤᎦᏈᏍᎩᏂ ᎦᎵᏗ ᏚᏬᎡᎢ; ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᏥᎦᏡᎦᎪᎯᏳᏗᏍᎩ ᎨᏎᏍᏗ ᏕᎩᎾᏓᏁᏤᎸ ᎪᎯ ᏥᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᏗ ᏚᏃᎡᎢ; ᎠᎴ ᎻᏏᏆ ᏚᏃᎡᎢ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏱᎰᏩ ᎩᏂᏯᏫᏍᎨᏍᏗ. ᏂᏗᎾᏓᎪᏩᏗᏍᎬᎾ ᎿᏉ ᎨᏎᏍᏗ. ᎢᏳᏃ ᏙᎦᎯᏐᏢᏕᏍᏗ ᏗᏇᏥ, ᎢᏳ ᎠᎴ ᏅᏩᎾᏓᎴ ᏙᎭᏓᏰᎨᏍᏗ ᏔᎵ ᏙᎲᏕᏍᏗ ᏗᏇᏥ, ᎥᏝ ᎩᎶ ᎠᏍᎦᏯ ᏯᎦᏔᎭ; ᎬᏂᏳᏉ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎯ ᏄᏍᏛ ᏚᎩᎾᏓᏁᏤᎸᎢ. ᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ. ᎬᏂᏳᏉ ᎯᎠ ᏥᎦᏡᎦ, ᎠᎴ ᎬᏂᏳᏉ ᎯᎠ ᏥᎨᏔ ᎾᏍᎩ ᎠᏰᎵ ᏥᎾᏋᏁᎸ ᎠᏴ ᎢᏁᎲᎢ. ᎯᎠ ᎾᏍᎩ ᏥᎦᏡᎦ ᎪᎯᏳᏗᏍᎩ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏴ ᎯᎠ ᎦᏡᎬ ᎬᏯᏓᏬᎢᎳᏕᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏂᎯ ᏍᏆᏓᏬᎯᎳᏕᏗ ᏂᎨᏒᎾ ᎨᏒ ᎯᎠ ᏥᎦᎲᎦ, ᎠᎴ ᎯᎠ ᏅᏯ ᏥᎨᏔ, ᎾᏍᎩ ᎤᏲ ᎢᏗᎩᎾᏓᏛᏁᏗᏱ. ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏁᎰ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎤᏂᏙᏓ ᎤᏤᎵᎦ ᏕᎩᏄᎪᏓᏁᎮᏍᏗ. ᏤᎦᏈᏃ ᎤᏎᎵᏔᏁ ᎤᏁᎢᏍᏔᏁ ᎤᏙᏓ ᎡᏏᎩ ᎤᎾᏰᏒᎯ. ᎿᏉᏃ ᏤᎦᏈ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎤᎵᏍᎪᎸᏔᏁ ᎾᎿ ᎣᏓᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ ᏫᏚᏯᏅᎮ ᎦᏚ ᎤᏂᎩᏍᏗᏱ; ᎦᏚᏃ ᎤᏂᎨᎢ, ᎠᎴ ᎣᏓᎸ ᎤᏂᏒᎴᎢ. ᏑᎾᎴᏉᏃ ᎴᏆᏂ ᎤᏗᏛᎮᎢ, ᎠᎴ ᏚᏔᏪᏙᏁ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᏧᏪᏥ ᎠᏂᎨᏴ, ᎠᎴ ᎣᏍᏛ ᏚᏁᏤᎴᎢ; ᎴᏆᏂᏃ ᎤᏂᎩᏎᎢ, ᎠᎴ ᏧᏪᏅᏒ ᏭᎶᏎᎢ. ᎠᏯᏙᎸᎢ 32 ᏤᎦᏈᏃ ᏩᎦᏛ ᏭᎶᏎᎢ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏕᎬᏩᏠᏎᎢ. ᏤᎦᏈᏃ ᏚᎪᎲ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠᎧᏂ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᏂᏯᏫᏍᎩ; ᎾᎿᏃ ᎹᎭᏁᎻ ᏚᏬᎡᎢ. ᏤᎦᏈᏃ ᏧᏅᏏᏓᏍᏗ ᎢᎬᏱ ᏂᏚᏅᏎ ᎤᏂᎵ ᎢᏐ ᏧᏬᎸᎢ, ᏏᎠ ᎦᏓ ᏗᎲᎢ, ᎢᏙᎻ ᏙᏧᏙᎥᎢ. ᏚᏁᏤᎴᏃ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᏅᏓᏰᏥᏪᏎᎵ ᎢᏐ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ; ᎯᏅᏏᏓᏍᏗ ᏤᎦᏈ ᎯᎠ ᏂᎦᏪᎭ, ᎴᏆᏂᏱ ᏫᎨᏓ, ᎠᎴ ᎾᎿ ᏫᎦᏕᎥᎦ ᎪᎯ ᎢᏯᏍᏘ. ᎠᎴ ᏩᎦ ᏓᎩᎾᏝᎠ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎠᏫ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏗᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᎨᏴ ᏗᏥᏅᏏᏓᏍᏗ; ᎠᎴ ᎦᏓᏅᎵ ᎬᏃᏁᏗᏱ ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎾᏍᎩ ᎣᏍᏛ ᎾᏍᎩᏰᎸᏗᏱ ᎬᏩᏛᎡᏗᏱ. ᎨᏥᏅᏏᏛᏃ ᎢᎬᏩᎷᏤᎴ ᏤᎦᏈ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎡᎶᏂᎵ ᎢᏐ ᏬᏥᎷᏤᎸᎩ, ᎠᎴ ᎾᏍᏉ ᏓᏯᎢ ᏙᏓᎶᏠᏏ, ᎠᎴ ᏅᎩᏧᏈ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎭ. ᎿᏉᏃ ᏤᎦᏈ ᎤᏣᏘ ᎤᏍᎦᎴᎢ, ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ; ᎠᎴ ᏔᎵ ᏄᏪᏕ ᏴᏫ ᏓᏘᏁᎲᎢ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᎨᎻᎵ, ᏔᎵ ᎢᏳᎾᏓᏡᎩ ᏂᏚᏩᏁᎴᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎢᏐ ᏌᏉ ᏄᎾᏓᏡᎬ ᏱᏚᎷᏤᎸ, ᎠᎴ ᏱᏚᏒᏅ, ᎿᏉ ᏐᎢ ᎤᎾᏓᏡᎬ ᎤᎾᎵᏃᎯᏴᎯ ᎠᎾᏓᏗᏫᏎᎸᎭ. ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᏁᎳᏅᎯ, ᎡᏙᏓ ᎡᏆᎭᎻ ᎤᏤᎵᎦ. ᎠᎴ ᎡᏙᏓ ᎡᏏᎩ ᎤᏤᎵᎦ, ᏱᎰᏩ, ᎾᏍᎩ ᎯᎠ ᎢᏍᎩᏪᏎᎸᎯ, ᏣᏤᎵᎪᎯ ᏥᎮᎾ, ᎠᎴ ᎢᏥᏠᏱ ᏗᏁᎲᎢ. ᎠᎴ ᎣᏍᏛ ᏂᎬᏯᏛᏁᎮᏍᏗ; ᎠᏴ ᏥᎾᏆᏍᏗᏉ ᎥᏝ ᏰᎵ ᎢᎦᎯᏯᏛᏁᏗ ᎤᏍᏗ ᎤᏅ ᏂᎦᎥ ᏣᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏂᎦᎥ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ. ᎬᏂᎨᏒ ᏂᏴᏁᎸ ᎯᏅᏏᏓᏍᏗ; ᎠᏆᏙᎳᏅᏍᏗᏉᏰᏃ ᎾᏥᏁᎢ ᏓᎩᏐᏨᎩ ᎯᎠ ᏦᏓᏂ; ᎪᎯᏃ ᏥᎩ ᏔᎵ ᎢᏳᎾᏓᏡᎩ ᎾᏆᎵᏍᏔᏅ. ᏍᏊᏓᎳᎩ, ᏞᏍᏗ ᎪᎱᏍᏗ ᎠᏋᏁᎸᎩ ᎢᏐ ᎥᎩᏂᎵ; ᏥᎾᏰᏍᎦᏰᏃ; ᏱᎦᎷᎩᏰᏃ ᎠᎴ ᏯᎩᎷᎦ, ᏗᏂᏲᎵ ᎠᎴ ᎤᏂᏥ ᎬᏩᏠᏯᏍᏗ. ᎠᎴ ᎯᎠ ᏥᏂᏣᏪᏒᎩ, ᎤᏙᎯᏳᎯᏯ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ. ᎠᎴ ᏃᏳ ᏥᏄᏧᏈᏍᏗ ᎠᎺᏉᎯ, ᎾᏍᎩ ᎬᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ ᏥᎩ ᎾᏍᎩᏯ ᏅᏓᎦᏥᏴᏁᎵ ᏂᎯ ᏣᏁᏉᎥᎯ. ᎠᎴ ᎾᎿᏉ ᎤᏒᎴ ᎾᎯᏳ ᏒᏃᏱ; ᎠᎴ ᎤᎩᏎ ᎢᏳᏍᏗᏉ ᎢᎬᏱᏢ ᏄᎵᏍᏓᏁᎲ ᎾᏍᎩ ᎤᏁᏗ ᎤᏂᎵ ᎢᏐ; ᎾᏍᎩ ᏔᎵᏧᏈ ᎠᏂᎩᏏ ᎠᏫ ᏗᏂᎭᏄᎸᎯ, ᎠᎴ ᏔᎳᏍᎪᎯ ᎠᏂᏨᏯ ᎠᏫ ᏗᏂᎭᏄᎸᎯ, ᏔᎵᏧᏈᏃ ᎠᏂᎩᏏ ᎠᏫ ᎤᏂᏃᏕᎾ, ᏔᎳᏍᎪᎯᏃ ᎠᏂᏨᏯ ᎤᏂᏃᏕᎾ, ᏦᎠᏍᎪᎯ ᏄᏂᏍᏓᎢ ᎨᎻᎵ ᎤᏂᎩᎾ ᏕᎬᎾᏘᏁᎯ, ᎠᎴ ᏅᎦᏍᎪᎯ ᏩᎦ ᎠᏂᎩᏏ, ᎠᏍᎪᎯᏃ ᎠᏂᏨᏯᎢ, ᏯᎳᏍᎪᎯ ᎠᏂᎩᏏ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎠᏍᎪᎯ ᎠᏂᎩᎾ. ᏧᏅᏏᏓᏍᏗᏃ ᏚᏲᎯᏎᎴᎢ, ᏂᎦᏛ ᏧᎾᏁᎳᎩᎭ ᏚᎾᏓᎲᏩᏗᏎᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ, ᎢᎬᏱ ᏗᏥᏐᎩ, ᎠᎴ ᎢᏥᎳᏅᏕᏍᏗ ᏚᎾᏓᏡᏩᏗᏒ ᏕᏥᏱᎵᏒᎢ. ᎤᏁᏤᎴᏃ ᎢᎬᏱ ᎡᎩ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎿᏉ ᎢᏐ ᎥᎩᏂᎵ ᏕᏣᏠᏒᎭ, ᎠᎴ ᏣᏛᏛᏅᎭ, ᎯᎠ ᏂᎦᏪᏒᎭ, ᎦᎪ ᏣᎾᏜᎢ? ᎠᎴ ᎭᏢ ᎭᎢ? ᎠᎴ ᎦᎪ ᏧᏤᎵᎦ ᎯᎠ ᎢᎬᏱ ᏣᎾᎢ? ᎿᏉ ᎯᎠ ᏂᏪᏒᎭ, ᏤᎦᏈᏍᎩᏂ ᎯᏅᏏᏓᏍᏗ ᏧᏤᎵᎦ; ᎯᎠ ᎾᏍᎩ ᎤᏓᏅᏏᏛ ᏩᏥᏁᎸᎯ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎢᏐ; ᎠᎴ ᎬᏂᏳᏉ ᎾᏍᏉ ᎣᏂ ᏓᏯᎢ. ᎠᎴ ᎾᏍᎩᏯ ᏄᏪᏎᎴ ᎤᏁᏤᎴ ᏔᎵᏁ ᎡᎩ, ᎠᎴ ᏦᎢᏁ ᎡᎩ,ᎠᎴ ᏂᎦᏛ ᏓᏂᏱᎵᏒ ᏗᏂᏍᏓᏩᏕᎩ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏁᏥᏪᏎᎸᎭ ᎢᏐ, ᎿᏉ ᎡᏥᏩᏛᎲᎭ. ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏁᏥᏪᏎᎸᎭ, ᎬᏂᏳᏉ ᎯᏅᏏᏓᏍᏗ ᏤᎦᏈ ᎣᏂ ᏓᏯᎢ. ᎯᎠᏰᏃ ᏄᏪᏒᎩ, ᎾᏍᎩ ᏓᏥᏮᎢᏍᏙᏓᏁᎵ ᏥᏁᎸᎥᏍᎬ ᎾᏍᎩ ᎢᎬᏱ ᏥᎾᎢ, ᎩᎳᏃ ᎣᏂ ᎠᎩᎪᏩᏛᏗ ᎨᏎᏍᏗ ᎤᎧᏛᎢ; ᏱᏅᏎᎦᎩ ᏱᏓᏆᏓᏂᎸᎩ. ᎢᎬᏱᏃ ᏚᏪᏐᏤ ᎾᏍᎩ ᎤᏁᏗ ᎨᏒᎢ; ᎤᏩᏒᏃ ᎤᎾᏂᎲ ᏑᎾᏓᏡᎩ ᎤᏒᎴ ᎾᎯᏳ ᏒᏃᏱ. ᎠᎴ ᎾᎯᏳ ᏒᏃᏱ ᎤᏗᏛᎮᎢ, ᎠᎴ ᏚᏘᏅᏎ ᎠᏂᏔᎵ ᏧᏓᎵᎢ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎨᏴ ᏧᎢᏓᏍᏗ, ᎠᎴ ᏌᏚ ᎢᏯᏂᏛ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏚᏪᏐᏤ ᏗᎦᏐᎯᏍᏗᏱ ᏣᏉᎩ ᏚᏙᎥᎢ. ᎠᎴ ᏚᏘᏅᏎᎢ, ᎠᎴ ᏚᏪᏌᏍᏔᏁ ᎤᏪᏴᎢ, ᎠᎴ ᎤᎿᎥ ᏚᏪᏌᏍᏔᏁᎢ. ᏤᎦᏈᏃ ᎠᎬᏕᏤ ᎠᎴ ᎤᏩᏒᏉ ᎨᏎᎢ; ᎤᏁᏍᏔᏁᏃ ᎠᏍᎦᏯ ᎩᎳ ᏧᎩᏥᏍᎪ ᎢᏯᏍᏗ. ᎿᏉᏃ ᎤᏙᎴᎰᏒ ᎬᏩᏎᎪᎩᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎤᏅᏪᎥ ᎦᎦᎶ ᎤᏩᏂᎴᎢ; ᎠᎴ ᎤᏅᏪᎥ ᏤᎦᏈ ᎦᎦᎶ ᎤᏛᎭᏢᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎠᏁᏍᏗᏍᎬᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏗᏍᎩᏲᎯ, ᎿᏉᏰᏃ ᎤᎩᏨᎲᏍᎦ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏙᎦᎬᏲᎯ ᎬᏂ ᎣᏍᏛ ᏍᎩᏁᏤᎸᎭ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎦᏙ ᏕᏣᏙᎥ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏤᎦᏈ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᎿᏉ ᏤᎦᏈ ᏱᏗᏣᏙᎡᏍᏗ; ᎢᏏᎵᏍᎩᏂ [ᏕᏣᏙᎡᏍᏗ;] ᎯᏯᏁᏍᏔᏅᏰᏃ ᎤᏁᎳᏅᎯ ᎠᎴ ᏴᏫ, ᎠᎴ ᎭᏓᏎᎪᎩ. ᏤᎦᏈᏃ ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᏃᎲᏏ ᏕᏣᏙᎥᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎢᎭᏛᏛᎲᏍᎦ ᏄᏍᏛ ᏓᏆᏙᎥᎢ? ᎣᏍᏛᏃ ᎤᏁᏤᎴ ᎾᎿᏂ. ᏤᎦᏈᏃ ᏇᏂᎡᎵ ᏚᏬᎡ ᎾᎿᏂ; ᎤᏁᎳᏅᎯᏰᏃ ᏙᎩᎾᎧᏛ ᏙᏍᏓᏓᎪᏩᏛ, ᎠᎴ ᎥᎩᏍᏕᎸᏏ ᎬᏅᎢ [ᎤᏛᏁᎢ.] ᎤᎶᏐᏅᏃ ᏇᏄᎡᎵ ᏅᏙ ᏗᏄᎧᎸᏤᎢ, ᎠᎴ ᎦᎦᎶ ᎠᏲᎤᎴᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎪᎯ ᎨᏒ ᎢᏯᏍᏘ ᎢᏏᏲ ᏧᏪᏥ ᎥᏝ ᏳᎾᎵᏍᏓᏴᏔᏃ ᏩᏚᏃᎯ ᎦᎦᎶ ᎡᎯ, ᎾᏍᎩ ᎤᏅᏪᎥ ᎦᎦᎶ ᏥᎦᎶᏍᎦ; ᏂᎦᎵᏍᏙᏗᎭ ᎤᏒᏂᎸ ᎤᏅᏪᎥ ᏤᎦᏈ ᎦᎦᎶᎢ, ᎾᏍᎩ ᏩᏚᏃᎯ ᎦᎦᎶ ᎡᎯ. ᎠᏯᏙᎸᎢ 33 ᏤᎦᏈᏃ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ ᎢᏐ ᏣᎢᏎᎢ, ᎠᎴ ᏅᎩᏧᏈ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎮᎢ. ᏤᎦᏈᏃ ᏗᏂᏲᎵ ᏚᏯᏙᎮᎴ ᎵᎠ, ᎠᎴ ᎴᏥᎵ, ᎠᎴ ᎠᏂᏔᎵ ᏧᏅᏏᏓᏍᏗ ᎠᏂᎨᏴ. ᎠᏂᎨᏴᏃ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᎾᏍᎩ ᏧᏁᏥ ᎢᎬᏱ ᏚᎴᏔᏁᎢ, ᎵᎠᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏔᎵᏁᎢ, ᎴᏥᎵᏃ ᎠᎴ ᏦᏩ ᎣᏂᏱ. ᏚᎶᎯᏎᎴᏃ, ᎠᎴ ᎦᎵᏉᎩ ᎡᎳᏗ ᏄᏛᏁᎴ ᎦᏙᎯ ᎢᏴᏛ, ᎬᏂ ᎾᎥ ᏭᎷᏤᎸ ᎤᏂᎵ. ᎢᏐᏃ ᏚᏍᏆᎸᏔᏁ ᏚᏠᏒᏎᎢ, ᎠᎴ ᎤᏂᏴᎮᎢ, ᎠᎴ ᎤᏪᏯᎸᏤ ᎠᎩᎵᎨᏂ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ; ᎠᎴ ᏚᎾᏠᏱᎴᎢ. ᏚᏌᎳᏓᏁᏃ ᏗᎦᏙᎵ ᎠᎴ ᏚᎪᎮ ᎠᏂᎨᏴ ᎠᎴ ᏧᏁᏥ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎪ ᎯᎠ ᏥᏕᎭᏘᏁᎭ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏗᏇᏥ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᎠᏙᎵᏣᏘᏳ ᎨᏒ ᏧᏮᏔᏅ ᏥᏚᏪᎧᏁᎸ ᎯᏅᏏᏓᏍᏗ. ᎿᏉᏃ ᎨᏥᏅᏏᏓᏍᏗ ᎠᏂᎨᏴ ᎾᎥ ᎤᏂᎷᏤᎢ, ᎤᏅᏒ ᎠᎴ ᏧᏁᏥ, ᎠᎴ ᎡᎳᏗ ᏄᎾᏛᏁᎴᎢ. ᎵᎠᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎾᎥ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎡᎳᏗ ᏄᎾᏛᏁᎴᎢ; ᎣᏂᏃ ᎾᎥ ᎤᏂᎷᏤ ᏦᏩ ᎠᎴ ᎴᏥᎵ, ᎠᎴ ᎾᏍᏉ ᎡᎳᏗ ᏄᎾᏛᏁᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙ ᎯᏛᎦ ᎯᎠ ᏂᎦᏛ ᏣᎾᏱᎴx ᏥᏙᏣᏠᎯ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏩᏛᏙᏗ ᎣᏍᏛ ᎠᎩᏰᎸᏗᏱ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ. ᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏰᎵᏉ ᎠᎩᎭ, ᎥᎩᏅᏟ, ᎨᏣᏍᏆᏂᎪᏕᏍᏗᏉ ᏣᎾᎥᎢ. ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ, ᏗᏍᏆᏓᏂᎸᏥᏉᏍᎩᏂ ᎬᏁᎲᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗ ᎨᏒ ᎬᏩᏛᎡᎴᏍᏗ; ᎾᏍᎩᏰᏃ ᏅᏓᎦᎵᏍᏙᏓ ᏂᎪᏩᏛ ᏣᎧᏛᎢ, ᎤᏁᎳᏅᎯ ᎤᎧᏛ ᏣᎩᎪᎰ ᎾᏍᎩᏯᎢ; ᎠᎴ ᎣᏏᏳ ᏍᎩᏰᎸᎾ. ᎯᎩ ᎬᏁᎸᎯ ᎾᏍᎩ ᏥᏪᏣᏲᎮᎸ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎾᏆᏛᏁᎸᎢ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏰᎵᏉ ᎠᎩᎲᎢ. ᎤᏍᏗᏰᏔᏁᏃ, ᎠᎴ ᎤᎩᏎᎢ. [ᎢᏐᏃ] ᎯᎠ ᏄᏪᏎᎢ, ᎢᎾᏂᎩᏉᏃ, ᎠᎴ ᎢᏁᎾ, ᎠᏴᏃ ᎢᎬᏱ ᎦᎢᏍᏗ. [ᏤᎦᏈᏃ] ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎠᎦᏔᎭ ᏗᏂᏲᎵ ᏗᏂᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏂᏃᏕᎾ ᎠᎴ ᏩᎦ ᏧᏂᏍᏓᎢ ᏕᎦᏘᏁᎲᎢ; ᎢᏳᏃ ᏱᏚᏂᎶᏒᏍᏓᏁᎸ ᏌᏉ ᎢᎦ ᏓᏂᏱᎵᏒᎢ, ᏂᎦᏛ ᎠᏫ ᏱᏓᏂᎵᏬᏦᎾ. ᎾᏍᎩᏃ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎢᎬᏱ ᏫᎦᎶᎯ ᎯᏅᏏᏓᏍᏗ ᎠᎢᏒᎢ; ᎠᏴᏃ ᏙᏉ ᏕᎦᏓᏗᏂᏎᏍᏗ ᏰᎵᏉ ᎢᎬᏩᎾᏛᏁᏗ ᎨᏒ ᎦᎾᏝᎢ ᎢᎬᏱ ᏣᎾᎢ, ᎠᎴ ᏗᏂᏲᎵ, ᎬᏂ ᏫᏥᎷᏤᎸ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᏏᎠ ᏙᏧᏙᎥᎢ. ᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᎦᏛᎪᎦ ᏴᏫ ᏥᏕᎦᏘᏁᎭ ᏗᎬᏯᎧᎯᏯᏏ ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ? ᏫᏥᏩᏛ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎣᏍᏛ ᎠᎩᏰᎸᏗᏱ. ᎢᏐᏃ ᎾᎯᏳᏉ ᎢᎦ ᎤᏨᏎ ᏏᎠ ᏫᎤᎶᏎᎢ. ᏤᎦᏈᏃ ᏌᎪᏗ ᏭᎷᏤᎢ, ᎠᎴ ᎤᏴᏍᏗᏱ ᎤᏁᏍᎨᎮᎢ, ᎠᎴ ᎦᎾᏝᎢ ᎤᏂᏴᏍᏗᏱ ᏚᎵᏦᏔᏁᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎿᏂ ᏌᎪᏗ ᏚᏙᎥ. ᏤᎦᏈᏃ ᏎᎳᎻ ᎤᎷᏤᎢ, ᎾᏍᎩ ᏏᎩᎻ ᎤᏪᏚᎲᎢ, ᎨᎾᏂ ᎦᏓ ᎠᎲ ᏥᎦᏚᎭ, ᎾᎯᏳ ᏇᏓᏁᎳᎻᏱ ᏨᏧᎶᏎᎢ; ᎠᎴ ᎤᎵᏦᏔᏁ ᎢᎬᏱᏗᏢ ᎦᏚᎲᎢ. ᎠᎴ ᎤᏩᏎ ᎢᏴᏛ ᎢᎩᏛ ᏠᎨᏏ, ᎾᎿ ᎤᎵᏦᏔᏅᎢ, ᎮᎼ ᏧᏪᏥ ᏚᏩᎯᏎᎴᎢ, ᎾᏍᎩ ᏏᎩᎻ ᎤᏙᏓ, ᎠᏍᎪᎯᏧᏈ ᎠᏕᎸᎯ ᎤᏓᏴᎮᎢ. ᎠᎴ ᎾᎿ ᎤᏬᏢᏁ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎡᎴᎶᎯ-ᎢᏏᎵ ᏚᏬᎡᎢ. ᎠᏯᏙᎸᎢ 34 ᏓᏱᎾᏃ ᎵᎠ ᎤᏪᏥ, ᎾᏍᎩ ᏤᎦᏈ ᏧᎾᏄᎪᏫᏎᎴᎢ, ᎤᏪᏅᏎ ᏚᏩᏛᎲᏎ ᎾᎿ ᎠᏁᎯ ᏧᏁᏥ ᎠᎾᏛ. ᎿᏉᏃ ᏏᎩᎻ, ᎮᎼ ᎠᎯᏫ ᎤᎬᏫᏳᎯ ᎾᎿ ᎠᏁᎲ ᎤᏪᏥ, ᎤᎪᎮᎢ, ᎠᎴ ᎤᏯᏅᎮᎢ, ᎠᎴ ᏚᎾᏂᏏᏁᎢ, ᎠᎴ ᎤᏐᏢᎢᏍᏔᏁᎢ. ᎠᎴ ᏧᏓᏅᏛ ᎢᏴᏛ ᏓᎧᎾᏩᏗᏙᎮ ᏓᏱᎾ ᏤᎦᏈ ᎤᏪᏥ, ᎠᎴ ᎤᎨᏳᏎ ᎠᏛ, ᎠᎴ ᎤᏓᏅᏘ ᎦᏬᏁᏗᏍᎨ ᎠᏛ ᏏᎩᎻᏃ ᎤᏁᏤᎴ ᎤᏙᏓ ᎮᎼ, ᎯᎠ ᏄᏪᏎᎢ, ᏫᏍᎩᏯᏅᏏ ᎯᎠ ᎠᏛ ᎠᏆᏓᏴᏍᏗ. ᏤᎦᏈᏃ ᎤᏛᎦᏁ ᎤᏐᏢᎢᏍᏔᏅ ᏓᏱᎾ ᎾᏍᎩ ᎤᏪᏥ; ᏧᏪᏥᏃ ᎢᎾᎨ ᏫᏓᏂᎢᏰ ᎦᎾᏝᎢ; ᏤᎦᏈᏃ ᎡᎳᏪᏉ ᎨᏎ ᎬᏂ ᎢᎤᏂᎷᏨ. ᎮᎼᏃ ᏏᎩᎻ ᎤᏙᏓ ᏭᎷᏤᎴ ᏤᎦᏈ ᎤᎵᏃᎮᏔᏅᏎᎢ. ᏤᎦᏈᏃ ᏧᏪᏥ ᎤᎾᏛᎦᏅ ᎢᎾᎨ ᏧᏂᎶᏎᎢ; ᎠᎴ ᎠᏂᏍᎦᏯ ᎤᏲᎢᏳ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏂᏔᎳᏬᏎᎢ; ᏅᏗᎦᏍᏙᏗᏍᎨ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸ ᎢᏏᎵ ᎠᏁᎲᎢ, ᎾᏍᎩ ᏚᎾᏂᏏᏅ ᏤᎦᏈ ᎤᏪᏥ; ᎾᏍᎩ ᎯᎠ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᏥᎩ. ᎮᎼᏃ ᏚᎵᏃᎮᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎤᏓᏅᏙᎩ ᎠᏇᏥ ᏏᎩᎻ ᏓᎧᎿᏩᏗᏙᎭ ᎢᏤᏥ; ᎡᏥᎧᏏ ᎤᏓᏴᏍᏗ. ᎠᎴ ᏧᎾᏨᏍᏗᏱ ᏂᏍᎩᏴᏂᏏ, ᎠᎴ ᏗᏤᏥ ᎠᏂᎨᏴ ᏕᏍᎩᏯᎧᏁᎮᏍᏗ, ᎠᎴ ᏦᎨᏥ ᎠᏂᎨᏴ ᏕᏥᏯᏂᏍᎨᏍᏗ. ᎠᎴ ᎢᏧᎳᎭ ᎢᏕᎮᏍᏗ; ᎠᎴ ᎦᏙᎯ ᎢᏤᎲ ᎢᎬᏱᏢ ᎠᎮᏍᏗ; ᎾᎿ ᏕᏥᏁᎴᏍᏗ ᎠᎴ ᎢᏥᏃᏔᏂᏙᎮᏍᏗ, ᎠᎴ ᎾᎿ ᎦᏓ ᎢᏣᏤᎵ ᏂᏨᏁᎮᏍᏗ. ᏏᎩᎻᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎤᏙᏓ ᎠᎴ ᏧᏙ, ᎣᏍᏛ ᏍᎩᏰᎸᏗ ᏫᏥᏩᏛ, ᎠᎴ ᎢᎦᎢᏉ ᏍᎩᏲᏎᎸ ᏓᏥᏂ. ᎤᏣᏘ ᎢᏥᏁᏨ ᏥᏯᎫᏴᏗᏱ, ᎠᎴ ᎢᏳᏁᎸᏗᏱ, ᎠᏎ ᏍᎩᏁᏤᎸ ᎢᎦᎢ ᏓᏥᏂ; ᎠᏎᏍᎩᏂ ᏍᎩᏯᎧᏏ ᎠᏛ ᎠᏆᏓᏴᏍᏗ. ᏤᎦᏈᏃ ᏧᏪᏥ ᎠᏠᎾᏍᏗ ᏚᏂᏁᏤᎴ ᏏᎩᎻ ᎠᎴ ᎤᏙᏓ ᎮᎼ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, --- ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏓᏱᎾ ᎤᏂᏙ ᎤᏐᏢᎢᏍᏔᏅᎢ, --- ᎯᎠᏃ ᏂᏚᏂᏪᏎᎴᎢ, ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᏲᏣᏛᎦ, ᎾᏍᎩ ᎣᎩᏙ ᏴᎦᏲᏥᎧᏏ ᎩᎶ ᎾᏥᎤᏍᏕᏎᎸᎾ; ᎾᏍᎩᏰᏃ ᏲᎦᏕᎰᎯᏍᏓ; ᎯᎠᏍᎩᏂ ᏱᏄᏍᏗ ᎨᏨᏲᎢᏳᏗᏉ; ᎠᏴ ᏃᎦᏍᏛ ᏱᏂᏣᎵᏍᏔᏅ, ᎾᏍᎩ ᏂᏥᎥ ᎢᏥᏍᎦᏯ ᏱᏕᏥᎤᏍᏕᏎᎸ. ᎩᎳᏃ ᏕᏨᏯᎧᏁᎮᏍᏗ ᏦᎨᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏂᎯ ᏗᏤᏥ ᎠᏂᎨᏴ ᏙᏥᏯᏂᏍᎨᏍᏗ; ᎠᎴ ᎢᏤᎲ ᎣᏤᎮᏍᏗ, ᎠᎴ ᏌᏉᏉ ᏴᏫ ᏂᏓᎵᏍᏔᏅᎭ. ᎢᏳᏃ ᏂᏍᎩᏯᏛᏓᏍᏓᏁᎸᎾ ᎢᎨᏎᏍᏗ ᏤᏥᎤᏍᏕᏎᏗᏱ, ᎿᏉ ᏛᎣᏥᏯᏅᎯ ᎣᎨᏥ, ᎠᎴ ᏛᎣᏣᏂᎩᏏ. ᏄᏂᏪᏒᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏁ ᎮᎼ, ᎠᎴ ᏏᎩᎻ ᎮᎼ ᎤᏪᏥ. ᎾᏍᎩᏃ ᎠᏫᏅ ᎥᏝ ᏳᏙᎯᏕ ᎾᏍᎩ ᎢᏳᏛᏁᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏤᎦᏈ ᎤᏪᏥ ᎣᏏᏳ ᎤᏰᎸᏒᎢ; ᎠᎴ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎ ᎡᏍᎦᏉ ᏂᎦᏛ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ. ᎮᎼᏃ ᎠᎴ ᎾᏍᎩ ᎤᏪᏥ ᏏᎩᎻ ᎤᏂᎷᏤ ᎦᎶᎯᏍᏗᏱ ᎤᏂᏚᎲᎢ, ᎠᎴ ᏚᎾᎵᏃᎮᏔᏁ ᎠᏂᏍᎦᏯ ᎤᏂᏚᎲ ᎠᏁᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎠᏂᏍᎦᏯ ᏙᎯ ᏂᎬᏅ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏁᎮᏍᏗᏉ ᎢᎦᏤᎵᎪᎯ, ᎠᎴ ᎾᎿ ᎠᏂᏃᏗᏍᎨᏍᏗ; ᎬᏂᏳᏉᏰᏃ ᎦᏙᎯ, ᏰᎵᏉ ᏂᎬ ᎤᎾᏕᏗᏱ; ᎠᎴ ᏕᏓᏓᏰᎨᏍᏗ ᏧᏁᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏕᎨᏗᎧᏁᎮᏍᏗ ᏗᎨᏥ ᎠᏂᎨᏴ. ᎯᎠᏍᎩᏂᏃᏅ ᏱᏄᏍᏗ ᎩᎳ ᎬᏩᏃᎯᏳᏗ ᎢᏕᎲ ᎤᎾᏕᏗᏱ, ᎠᎴ ᏌᏉᏉ ᏴᏫ ᎢᎦᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᏳᏃ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᎠᏴ ᎢᏕᎲ ᏱᏗᎨᏥᎤᏍᏕᏎᎸ. ᎾᏍᎩᏯ ᎤᏅᏒ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏥᎩ. ᏝᏍᎪ ᏧᎾᏤᎵ ᎦᎾᏝᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ, ᎠᎴ ᏂᎦᏛ ᏅᎩ ᏗᏂᏅᏌᏗ ᏧᎾᏤᎵᎦ, ᎠᏴ ᏗᎦᏤᎵ ᏱᎨᏎᏍᏗ? ᏗᏙᎯᏳᎲᎦᏉ, ᎢᏕᎲᏃ ᏛᎾᏕᏂ. ᏂᎦᏛᏃ ᎦᏚᎲ ᎦᎶᎯᏍᏗᏱ ᎠᏂᎶᏍᎩ ᎬᏩᏛᏓᏍᏓᏁᎴ ᎮᎼ ᎠᎴ ᎤᏪᏥ ᏏᎩᎻ; ᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏚᎨᏥᎤᏍᏕᏎᎴᎢ ᎾᏂᎥ ᎤᏪᏚᎲ ᎦᎶᎯᏍᏗᏱ ᎠᏂᎶᏍᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏦᎢᏁ ᎢᎪᎯ ᎿᏉ ᏚᏁᎯᏍᏓᏁᎮᎢ, ᎠᏂᏔᎵ ᏤᎦᏈ ᏧᏪᏥ ᏏᎻᏯᏂ ᎠᎴ ᎵᏫ ᏓᏱᎾ ᏧᏙ ᎢᏧᎳ ᎭᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏚᏂᏴᎮᎢ, ᎠᎴ ᎾᏂᎾᏰᏍᎬᎾ ᏚᎾᏁᎷᎩᎡᎴ ᎦᏚᎲᎢ, ᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏚᏂᎴᎢ. ᎠᎴ ᎭᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ ᏚᏂᎴ ᎮᎼ ᎠᎴ ᏏᎩᎻ ᎾᏍᎩ ᎤᏪᏥ, ᎠᎴ ᏏᎩᎻ ᎦᏁᎸ ᎤᏂᏯᏅᎵ ᏓᏱᎾ ᎠᎴ ᎤᏂᏄᎪᏤᎢ. ᏤᎦᏈ ᏧᏪᏥ ᎤᏂᎷᏤ ᏗᎨᏥᎸᎯ ᎠᏂᎳᎨᏴᎢ, ᎠᎴ ᎤᏂᏲᏍᏔᏁ ᎦᏚᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᏙ ᎤᏂᏐᏢᎢᏍᏔᏅᎢ. ᎠᎴ ᏚᏂᏯᏅᎮ ᏧᎾᏤᎵ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎪᎱᏍᏗ ᎦᏚᎲ ᎠᎿᎥᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏠᎨᏏ ᎠᎿᎥᎢ; ᎠᎴ ᏂᎦᏛ ᎤᏁᎿᎥᎢ, ᎠᎴ ᏂᎦᏛ ᏗᏂᏲᎵ ᏚᎾᏓᏘᎾᎥᎢ, ᎠᎴ ᏧᎾᏓᎵᎢ ᏚᏂᏴᎩᏁᎢ, ᎠᎴ ᏂᎦᏛ ᎦᎵᏦᏕ ᎠᎿᎥ ᎤᏂᏫᏛᎮᎢ. ᏤᎦᏈᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏏᎻᏯᏂ ᎠᎴ ᎵᏫ, ᏍᎩᎾᏕᏯᏙᏓᏉ, ᎥᎩᏂᏆᏘᎯ ᏥᏂᏍᎩᏅᎦ ᏴᏫ ᎡᏍᎦᏂ ᎠᏁᎲᎢ, ᎾᏍᎩ ᎠᏂᎨᎾᏂ ᎠᎴ ᎠᏂᏇᎵᏏ ᎠᏁᎲᎢ; ᎠᏴᏃ ᎢᏗᎦᏲᎵᏳ ᏥᎩ, ᏛᎾᏓᏟᏌᏂ ᎠᎴ ᏙᏓᎬᎩᎦᏘᎴᏏ ᎠᎴ ᏓᎬᎩᎵ; ᎠᏴᏃ ᏓᏴᎩᏛᏔᏂ, ᎠᏴ, ᎠᎴ ᏓᏆᏓᏘᎾᎥᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏥᎪ ᎤᏁᏓᏥᏛ ᎠᎨᏴ ᎢᎦᎬᏁᏗ ᏥᎩ ᏅᏓᎬᏁᎵ ᎣᎩᏂᏙᎢ? ᎠᏯᏙᎸᎢ 35 ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏔᎴᎲᎦ, ᎡᎵ ᎮᎾ, ᎠᎴ ᎾᎿ ᏩᏕᎲᎦ; ᎠᎴ ᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᏲᏢᎾᏁᎸᎭ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏂᏣᏛᏁᎸᎩ ᎾᎯᏳ ᏥᏯᎵᏘᎡᎸ ᎢᏐ ᎡᎶᏂᎵ. ᎿᏉᏃ ᏤᎦᏈ ᎯᎠ ᏂᏚᏪᏎᎴ ᏚᏓᏘᎾᎥᎢ, ᎠᎴ ᏂᎦᏛ ᏓᏓᏘᏁᎲᎢ, ᎢᏴᏛ ᏂᏗᏨᎦ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏕᏥᎲᎢ, ᎠᎴ ᎢᏣᏓᏅᎦᎸ, ᎠᎴ ᏗᏣᏄᏩᎢᏴᎾ; ᎠᎴ ᏗᏓᎴᎲᎦ ᎠᎴ ᏇᏕᎵ ᏫᏗᎶᎯ; ᎠᎴ ᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏓᏥᏲᏢᎾᏁᎵ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎠᎩᏁᏤᎸᎯ ᎾᎯᏳ ᎤᏪᎵᏍᏗ ᎾᏆᎵᏍᏓᏁᎲᎢ, ᎠᎴ ᏔᎵ ᏧᏛᏗᏕᎬ ᎦᎢᏒᎢ. ᏂᎦᏛᏃ ᏕᎬᏩᏲᎯᏎᎴ ᏤᎦᏛ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏚᏂᎲᎢ, ᎠᎴ ᏂᎦᏛ ᏗᏟᎠᏙ ᏚᎾᏟᎠᏛᎢ; ᏤᎦᏈᏃ ᏚᏩᏍᎦᎳᏁ ᎭᏫᏂᏗᏢ ᎠᏓᏯ ᏡᎬᎢ, ᏏᎩᎻ ᎾᎥᎢ. ᎠᎴ ᎤᎾᏂᎩᏎᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎴ ᎬᏩᏚᏫᏛ ᏕᎦᏚᎲ ᎠᎴ ᎥᏝ ᏱᏚᏂᎨᎲᏎ ᏤᎦᏈ ᏧᏪᏥ. ᏤᎦᏈᏃ ᎳᏏ ᏭᎷᏤᎢ, ᎾᏍᎩ ᏇᏕᎵ [ᏥᏚᏙᎥ,] ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ ᏥᎦᏚᎭ, ᎤᏩᏒ ᎠᎴ ᏂᎦᏛ ᏴᏫ ᏓᏓᏘᏁᎲᎢ. ᎾᎿᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᏬᏢᏁᎢ, ᎠᎴ ᎡᎵ-ᏇᏕᎵ ᏚᏬᎡ ᎾᏍᎩ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏁᎳᏅᎯ ᎾᎿ ᎬᏂᎨᏒ ᏄᏛᏁᎸᎢ, ᎾᎯᏳ ᏣᎵᏘᎡᎮ ᎤᏂᎵ. ᎠᏎᏃ ᏕᏉᎳ ᎵᏇᎩ ᎤᏍᏛᏅᎯ ᎤᏲᎱᏎᎢ, ᎠᎴ ᎠᏥᏂᏌᏁ ᏇᏕᎵ ᎨᏓᎵᏱ ᎢᏗᏢ ᎠᏓᏯ ᏡᎬ ᎭᏫᏂᏗᏢ; ᎠᎴ ᎠᎶᏂ-ᏆᏓᏗ ᏚᏃᎡᎢ. ᎤᏁᎳᏅᎯᏃ ᏔᎵᏁ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᏤᎦᏈ, ᎾᎯᏳ ᏇᏓᏁᎳᎻ ᏨᏧᎶᏎᎢ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏤᎦᏈ ᏕᏣᏙᎥ; ᎥᏝ ᎿᏉ ᏤᎦᏈ ᏰᏦᏎᎮᏍᏗ, ᎢᏏᎵᏍᎩᏂ ᏕᏣᏙᎡᏍᏗ; ᎢᏏᎵᏃ ᏚᏬᎡᎢ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎠᏆᎵᏂᎩᏛ; ᏣᏁᏉᏣᏖᏍᏗ ᎠᎴ ᎯᎪᏙᏍᎨᏍᏗ; ᎥᏝ ᏏᎦᎵᏍᏓᎴᎩᏉ, ᎢᎸᏍᎩᏍᎩᏂ ᎢᎦᎵᏍᏓᎴᎩ ᏴᏫ ᏂᎯ ᎨᏒ ᏛᎾᏓᎴᏂ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᏓᎨᏣᎾᏄᎪᏥ. ᎠᎴ ᎦᏙᎯ ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᎴ ᎡᏏᎩ ᎦᏥᏁᎸᎯ ᏥᎩ, ᏂᎯ ᏛᎬᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᎾᏕᏗ ᏥᎩ ᏓᎦᏥᏁᎵ ᎾᏍᎩ ᎦᏙᎯ. ᎤᏁᎳᏅᎯᏃ ᎤᎵᏌᎳᏓᏁ ᎤᏓᏅᎡᎴᎢ ᎾᎿ ᎤᎵᏃᎮᏔᏅᎢ. ᏤᎦᏈᏃ ᎤᏪᏘᏁ ᎾᎿ ᎤᎵᏃᎮᏔᏅᎢ, ᎾᏍᎩ ᏅᏯ ᎤᏪᏘᏁᎢ; ᎠᎴ ᎠᏗᏔᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎤᏍᏚᏞ ᎾᎿᏂ, ᎠᎴ ᎪᎢ ᎤᏍᏚᏞᎢ. ᏤᎦᏈᏃ ᏇᏕᎵ ᏚᏬᎡ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎵᏃᎮᏔᏅᎢ. ᏇᏕᎵᏃ ᎤᎾᏂᎩᏎᎢ; ᎡᏍᎦᏂᏉᏃ ᎡᏅᏍᏗ ᎨᏎ ᎡᏆᏓ ᏫᎦᎷᎯᏍᏗᏱ; ᎴᏥᎵᏃ ᎤᏍᏆᎸᎡᎴ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏍᏗᏱ, ᎠᎴ ᎤᏣᏘ ᎠᏍᏓᏯ ᎤᏱᎵᏙᎮᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎤᏣᏘ ᎠᏍᏓᏯ ᎤᏱᎵᏙᎸ, ᎤᏍᏕᎵᏍᎩ ᎯᎠ ᏄᏪᏎᎴᎢ ᏞᏍᏗ ᏱᎾᏰᏍᎨᏍᏗ; ᎾᏍᏉᏰᏃ ᎯᎠ ᏤᏥ ᎠᏧᏣ ᏛᎯᎾᏄᎪᏫᏏ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎿᏉ ᎤᏓᏅᏙ ᎠᏓᏅᏍᎨᎢ, --- ᎤᏲᎱᏎᏰᏃ, --- ᎾᏍᎩ ᏇᏃᏂ ᏚᏬᎡᎢ; ᎤᏙᏓᏍᎩᏂ ᏇᏂ ᏚᏬᎡᎢ. ᎴᏥᎵᏃ ᎤᏲᎱᏎᎢ, ᎠᎴ ᎠᏥᏂᏌᏁ ᏫᎦᏅᎤ ᎡᏆᏓ, ᎾᏍᎩ ᎦᏚᏱ ᏥᏚᏙᎥ. ᏤᎦᏈᏃ ᎤᏪᏘᏁ ᎠᏥᏂᏌᎲᎢ; ᎾᏍᎩ ᎴᏥᎵ ᎠᏥᏂᏌᎲ ᎩᎳᎯᏳ ᎨᏔ. ᎢᏏᎵᏃ ᎤᏂᎩᏎᎢ, ᎠᎴ ᎢᏓ ᏗᏐᏴ ᎤᏗᏗᏢ ᏚᎵᏦᏔᏁᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᎢᏏᎵ ᎾᎿ ᎦᏓ ᎠᎲ ᏤᎮᎢ, ᎾᏍᎩ ᎷᏈᏂ ᏭᏂᏏᏁᎴ ᏈᎳ ᎤᏙᏓ ᏔᎵ ᏚᏮᏕ ᏣᏓᏰᎮᎢ; ᎢᏏᎵᏃ ᎤᏛᎦᏁᎢ. ᏤᎦᏈᏃ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᏔᎳᏚ ᎤᏂᎡᎢ. ᎵᎠ ᏧᏪᏥ; ᎷᏈᏂ ᎢᎬᏱ ᎤᏕᏁᎸᎯ ᏤᎦᏈ, ᏏᎻᏯᏂᏃ, ᎠᎴ ᎵᏫ, ᎠᎴ ᏧᏓ, ᎠᎴ ᎢᏏᎦ, ᎠᎴ ᏤᏆᎳᏂ; ᎴᏥᎵᏃ ᏧᏪᏥ; ᏦᏩ ᎠᎴ ᏇᏂ. ᏈᎳᏃ ᏧᏪᏥ, ᎾᏍᎩ ᏧᏥᎵ ᎤᏅᏏᏓᏍᏗ; ᏕᏂ ᎠᎴ ᏁᏩᏔᎵ. ᏏᎵᏆᏃ ᏧᏪᏥ, ᎾᏍᎩ ᎵᎠ ᎤᏅᏏᏓᏍᏗ; ᎦᏗ ᎠᎴ ᎡᏌ. ᎾᏍᎩ ᎯᎠ ᏤᎦᏈ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᏇᏓᏁᎳᎻᏱ ᏥᎬᏩᏕᏁᎴᎢ. ᏤᎦᏈᏃ ᏭᎷᏤᎴ ᎤᏙᏓ ᎡᏏᎩ ᎹᎻᎵᏱ, ᎩᎵᏯ-ᎠᏆ. ᎾᏍᎩ ᎯᏆᏂ ᏥᏚᏙᎥ, ᎾᎿ ᎡᏆᎭᎻ ᎠᎴ ᎡᏏᎩ ᎤᏁᏙᎸᎢ. ᎡᏏᎩᏃ ᎤᎴᏂᏙᎸ ᎠᏍᎪᎯᏧᏈ ᏁᎳᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ. ᎡᏏᎩᏃ ᎤᏲᎯᏍᏔᏁ ᎬᏬᎳᏕᏍᎬ ᎠᎴ Ꭴ ᏮᎱᏎᎢ, ᎠᎴ ᏧᏤᎵᎦ ᏴᏫ ᏄᎾᏛᏅ ᏫᏚᏖᎳᏕᎴᎢ, ᎤᏛᏐᏅᎯ ᎠᎴ ᏧᎩᏨᏂᎶᏛ ᎨᏎᎢ; ᏧᏪᏥᏃ ᎢᏐ ᎠᎴ ᏤᎦᏈ ᎬᏩᏂᏌᏁᎢ. ᎠᏯᏙᎸᎢ 36 ᎯᎠᏃ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎨᏒ ᎢᏐ, ᎾᏍᎩ ᎢᏙᎻ ᏥᏚᏙᎥ. ᎢᏐ ᎨᎾᏂ ᎠᏁᎯ ᏧᏁᏥ ᏫᏚᏯᏅᎮ ᏧᏓᎵᎢ; ᎾᏍᎩ ᎡᏓ ᎢᎶᏂ ᎡᎯᏗ ᎤᏪᏥ, ᎠᎴ ᎠᎰᎵᏆᎹ ᎡᏮ ᎤᏪᏥ ᎾᏍᎩ ᏥᏈᎣᏂ ᎠᎯᏫ ᎤᏪᏥ; ᎠᎴ ᏆᏏᎹ ᎢᏏᎺᎵ ᎤᏪᏥ ᎤᏙ ᎢᏆᏲᏗ. ᎡᏓᏃ ᎡᎵᏆ ᎤᎾᏄᎪᏫᏎᎴ ᎢᏐ; ᏆᏏᎹᏃ ᎷᎡᎵ ᎤᎾᏄᎪᏫᏎᎴᎢ. ᎠᎰᎵᏆᎹᏃ ᏥᎤᏏ ᎠᎴ ᏤᎠᎳᎻ ᎠᎴ ᎪᎳ ᏚᎾᏄᎪᏫᏎᎴᎢ; ᎯᎠ ᎾᏍᎩ ᎢᏐ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎨᎾᏂ ᎦᏙᎯ ᏥᎬᏩᏕᏁᎴᎢ. ᎢᏐᏃ ᏚᏘᏅᏎ ᏧᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏧᏪᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏂᎦᏛ ᎦᏁᎸ ᎠᏁᎯ, ᎠᎴ ᎦᎾᏝᎢ, ᎠᎴ ᏧᏤᎵ ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥᎢ, ᎾᏍᎩ ᎨᎾᏂ ᎦᏙᎯ ᏭᏩᏛᏛ; ᎠᎴ ᎢᎸᎯᏢ ᏭᎶᏎᎢ, ᎤᏅᏟ ᏤᎦᏈ ᎤᏓᏅᎡᎴᎢ. ᎤᏣᏘᏰᏃ ᏧᎬᏩᎶᏗ ᎤᏂᎲ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎥᏝ ᎢᏧᎳᎭ ᎬᏩᎾᏕᏗ ᏱᎨᏎᎢ; ᎠᎴ ᎾᏍᎩ ᎦᏙᎯ ᎾᎿ ᎠᏁᏙᎯ ᎨᏒᎢ, ᏚᏂᎷᎶᎨᏉ ᏂᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᎾᏝᎾᎥᎢ. ᎾᏍᎩᏃ ᎢᏐ ᏏᎠ ᎣᏓᎸ ᎡᎮᎢ. ᎢᏐ ᎾᏍᎩ ᎢᏙᎻ. ᎯᎠᏃ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎢᏐ, ᎾᏍᎩ ᎠᏂᎡᏙᎻ ᎤᏂᏙᏓ, ᏏᎠ ᎣᏓᎸ ᎠᏁᎯ. ᎯᎠ ᎾᏍᎩ ᏚᎾᏙᎥ ᎢᏐ ᏧᏪᏥ; ᎡᎵᏆ ᎡᏓ ᎤᏪᏥ ᎾᏍᎩ ᎢᏐ ᎤᏓᎵᎢ, ᎷᎡᎵ ᏆᏏᎹ ᎤᏪᏥ ᎾᏍᎩ ᎢᏐ ᎤᏓᎵᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎡᎵᏆ ᏧᏪᏥ, ᏘᎹᏂ, ᎠᎹ, ᏂᏉ, ᎠᎴ ᎦᏓᎻ, ᎠᎴ ᎨᎾᏏ. ᏘᎻᎾᏃ ᎡᎵᏆ ᏔᎵ ᎤᏮᏗ ᎠᏓᏰᎲ ᎨᏎᎢ, ᎾᏍᎩ ᎢᏐ ᎤᏪᏥ; ᎾᏍᎩᏃ ᎡᎵᏆ ᎠᎹᎴᎩ ᎤᎾᏄᎪᏫᏎᎴᎢ. ᎯᎠ ᎾᏍᎩ ᎡᏓ ᏧᏪᏥ ᎢᏐ ᎤᏓᎵᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎷᎡᎵ ᏧᏪᏥ; ᏁᎭᏗ, ᎠᎴ ᏎᎳ, ᏌᎹ, ᎠᎴ ᎻᏌ; ᎯᎠ ᎾᏍᎩ ᏆᏏᎹ ᎢᏐ ᎤᏓᎵᎢ ᏧᏪᏥ ᎨᏎᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏧᏪᏥ ᎠᎰᎵᎠ ᎢᏐ ᎤᏓᎵᎢ, ᎡᎾ ᎤᏪᏥ ᎾᏍᎩ ᏥᏈᎣᏂ ᎤᏪᏥ ᏥᎨᏎᎢ; ᎠᎴ ᎾᏍᎩ ᏤᎤᏏ, ᎠᎴ ᏤᎳᎻ, ᎠᎴ ᎪᎳ ᏚᎾᏄᎪᏫᏎᎴ ᎢᏐ. ᎯᎠᏃ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎨᏎ ᎢᏐ ᏧᏪᏥ; ᎡᎵᏆ ᏧᏪᏥ ᎾᏍᎩ ᎢᏐ ᎢᎬᏱ ᎤᏕᏁᎸᎯ; ᏘᎹᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎣᎹ ᎤᎬᏫᏳᏌᏕᎩ, ᏎᏉ ᎤᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎩᎾᏏ ᎤᎬᏫᏳᏌᏕᎩ. ᎪᎳ ᎤᎬᏫᏳᏌᏕᎩ, ᎦᏔᎻ ᎤᎬᏫᏳᏌᏕᎩ, ᎠᎹᎴᎩ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎡᎵᏆ ᎬᏩᏕᏁᎸᎯ ᎢᏙᎻ ᏣᏁᎮᎢ; ᎯᎠ ᎾᏍᎩ ᎡᏓ ᏧᏪᏥ ᎨᏎᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎷᎡᎵ ᏧᏪᏥ ᎾᏍᎩ ᎢᏐ ᎤᏪᏥ; ᏁᎭᏗ ᎤᎬᏫᏳᏌᏕᎩ, ᏎᎳ ᎤᎬᏫᏳᏌᏕᎩ, ᏌᎹ ᎤᎬᏫᏳᏌᏕᎩ, ᎻᏌ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎷᎡᎵ ᎬᏩᏕᏁᎸᎯ ᎢᏙᎻ ᏣᏁᎮᎢ; ᎯᎠ ᎾᏍᎩ ᏆᏏᎹ ᏧᏪᏥ ᎢᏐ ᎤᏓᎵᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎠᎪᎵᏆᎹ ᏧᏪᏥ ᎢᏐ ᎤᏓᎵᎢ; ᏥᎤᏏ ᎤᎬᏫᏳᏌᏕᎩ, ᏤᎠᎳᎻ ᎤᎬᏫᏳᏌᏕᎩ, ᎪᎳ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᎰᎵᏆᎹ ᎬᏩᏕᏁᎸᎯ ᎾᏍᎩ ᎢᏐ ᎤᏓᎵᎢ ᎡᎾ ᎤᏪᏥ. ᎯᎠ ᎾᏍᎩ ᎢᏐ ᏧᏪᏥ, ᎾᏍᎩ ᎢᏙᎻ ᏥᏙᏙᎥ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏧᎾᏤᎵᎦ. ᎯᎠᏃ ᎾᏍᎩ ᏏᎠ ᎠᎰᎸ ᏧᏪᏥ, ᎾᏍᎩ ᎾᎿ ᎦᏙᎯ ᏣᏁᎮᎢ; ᎶᏔᏂ, ᎠᎴ ᏐᏆᎵ, ᎠᎴ ᏥᏈᎣᏂ, ᎠᎴ ᎡᎾ. ᎠᎴ ᏗᏐᏂ, ᎠᎴ ᎢᏌ, ᎠᎴ ᏗᏌᏂ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᎰᎸ ᏧᎾᏤᎵᎦ, ᎾᏍᎩ ᏏᎠ ᏧᏪᏥ ᎢᏙᎻ ᎦᏙᎯ ᏣᏁᎮᎢ. ᎶᏔᏂᏃ ᏧᏪᏥ ᎰᎵ ᎠᎴ ᎯᎹᏂ ᏚᎾᏙᎡᎢ; ᎶᏔᏂᏃ ᎤᏙ ᏘᎻᎾ ᏚᏙᎡᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏐᏆᎵ ᏧᏪᏥ; ᎠᎵᏆᏂ, ᎠᎴ ᎹᏁᎭ, ᎠᎴ ᎢᏆᎵ, ᏎᏉ, ᎠᎴ ᎣᎾᎻ. ᎯᎠᏃ ᎾᏍᎩ ᏥᏈᎣᏂ ᏧᏪᏥ; ᎢᏧᎳ ᎡᏣ, ᎠᎴ ᎡᎾ; ᎯᎠ ᎾᏍᎩ ᎡᎾ ᎤᏗᎴᎩ ᎠᎹ ᏕᎦᏄᎪᎬ ᏥᏚᏩᏛᎮ ᎢᎾᎨᎢ, ᎤᏙᏓ ᏥᏈᎣᏂ ᏧᏤᎵᎦ ᏗᏂᎵᎠᏅᎯᏛ ᏐᏈᎵ ᏓᎦᏘᏴᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎡᎾ ᏧᏪᏥ; ᏗᏐᏂ, ᎠᎴ ᎠᎰᎵᏆᎹ ᎡᎾ ᎤᏤᏥ ᎠᎨᏴ. ᎯᎠᏃ ᎾᏍᎩ ᏗᏐᏂ ᏧᏪᏥ; ᎮᎻᏓᏂ, ᎠᎴ ᎡᏏᏆᏂ, ᎠᎴ ᎢᏗᎳᏂ, ᎠᎴ ᎩᎳᏂ. ᎯᎠᏃ ᎾᏍᎩ ᎢᏌ ᏧᏪᏥ; ᏈᎳᏂ, ᎠᎴ ᏤᏆᏂ, ᎠᎴ ᎡᎧᏂ ᎯᎠᏃ ᎾᏍᎩ ᏗᏌᏂ ᏧᏪᏥ; ᎥᏏ, ᎠᎴ ᎠᎳᏂ. ᎯᎠᏃ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᎰᎸ ᎬᏩᎾᏕᏁᎸᎯ; ᎶᏔᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᏐᏆᎵ ᎤᎬᏫᏳᏌᏕᎩ, ᏥᏈᎣᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎡᎾ ᎤᎬᏫᏳᏌᏕᎩ, ᏗᏐᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎢᏌ ᎤᎬᏫᏳᏌᏕᎩ, ᏗᏌᏂ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎰᎳ ᎬᏩᏕᏁᎸᎯ, ᎾᏍᎩ ᏧᎾᏤᎵ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎤᎾᏓᏑᏴ ᏏᎠ ᎦᏙᎯ ᏣᏁᎮᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎤᏂᎬᏫᏳ ᏣᏁᎮ ᎢᏙᎻᏱ ᎠᏏᏉ ᎢᏏᎵ ᏧᏪᏥ ᏄᏂᎧᎲᎾ ᏥᎨᏎ ᎤᎬᏫᏳᎯ. ᏈᎳ ᏈᎣ ᎤᏪᏥ ᎢᏙᎻ ᎤᎬᏫᏳᎯ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎤᏪᏚᎲ ᏗᏂᎮᏆ ᏚᏙᎡᎢ. ᏈᎳᏃ ᎤᏲᎱᏎᎢ, ᏦᏆᏈᏃ ᏎᎳ ᎤᏪᏥ ᏉᏏᎳ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏓᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ. ᏦᎠᏈᏃ ᎤᏲᎱᏎᎢ, ᎱᏌᎻᏃ ᏘᎹᏂ ᎦᏓ ᎠᎲ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏔᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ. ᎱᏌᎻᏃ ᎤᏲᎱᏎᎢ, ᎤᏓᏁᏟᏴᏍᏓᏁᎴᏃ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁ ᎮᏓᏗ ᏈᏓᏗ ᎤᏪᏥ ᎾᏍᎩ ᏥᏚᏎᎪᎩᏎ ᎻᏗᏯᏂ ᎼᎠᏈ ᎤᎾᏤᎵᎪᎯ. ᎾᏍᎩᏃ ᎤᏪᏚᎲ ᎡᏫᏗ ᏚᏙᎡᎢ. ᎮᏓᏗᏃ ᎤᏲᎱᏎᎢ, ᏌᎻᎳᏃ ᎹᏏᎵᎦ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏔᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ. ᏌᎻᎳᏃ ᎤᏲᎱᏎᎢ, ᏐᎳᏃ ᎵᎰᏉ ᎡᏉᏄᎶᏗ ᏂᎦᏚᎭ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏓᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ. ᏐᎳᏃ ᎤᏲᎱᏎᎢ, ᎤᏓᏁᏟᏴᏍᏔᏁᎴᏃ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁ ᏇᎳ-ᎮᎾᏂ ᎡᎩᏉ ᎤᏪᏥ. ᏇᎳ-ᎮᎾᏂᏃ ᎡᎩᏉ ᎤᏪᏥ ᎤᏲᎱᏎᎢ, ᎮᏓᎵᏃ ᎤᏓᏁᏟᏴᏍᏓᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩᏃ ᎤᏪᏚᎲ ᏆᎤ ᏚᏙᎡᎢ; ᎤᏓᎵᎢᏃ ᎺᎮᏗᏇᎵ ᏚᏙᎡᎢ, ᎹᏞᏗ ᎤᏪᏥ, ᎻᏎᎭᏈ ᎤᏪᏥ ᎠᎨᏴ. ᎯᎠᏃ ᎾᏍᎩ ᏚᎾᏙᎥ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎢᏐ ᎤᏁᏢᏔᏅᎯ, ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᏓᏁᏩᏗᏒᎢ, ᎨᏥᏯᏅᏗ ᎨᏒᎢ; ᏗᎻᎾ ᎤᎬᏫᏳᏌᏕᎩ, ᎡᎵᏩ ᎤᎬᏫᏳᏌᏕᎩ, ᏥᏓᏗ ᎤᎬᏫᏳᏌᏕᎩ, ᎠᎰᎵᏆᎹ ᎤᎬᏫᏳᏌᏕᎩ, ᎢᎳ ᎤᎬᏫᏳᏌᏕᎩ, ᏆᏃᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎨᎾᏏ ᎤᎬᏫᏳᏌᏕᎩ, ᏘᎹᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎻᏈᏌ ᎤᎬᏫᏳᏌᏕᎩ, ᎹᎩᏓᏱᎵ ᎤᎬᏫᏳᏌᏕᎩ, ᎠᏱᎳᎻ ᎤᎬᏫᏳᏌᏕᎩ. ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎢᏙᎻ ᎠᏁᎯ ᎾᎿ ᏓᏂᏁᎳᏗᏒᎢ, ᎦᏙᎯ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ. ᎯᎠ ᎾᏍᎩ ᎢᏐ, ᎠᏂᎢᏙᎻ ᎤᏂᏙᏓ. ᎠᏯᏙᎸᎢ 37 ᏤᎦᏈᏃ ᎡᎮ ᎾᎿ ᎦᏙᎯ ᎤᏙᏓ ᎡᏙᎯ ᏥᎨᏎᎢ, ᎨᎾᏂ ᎦᏙᎯ ᎨᏒᎢ. ᎯᎠ ᎾᏍᎩ ᎧᏃᏀᎡᏍᏗ ᏤᎦᏈ ᎤᏁᏢᏔᏅᏒᎢ. ᏦᏩ ᎦᎵᏆᏚ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᏧᏂᎵ ᎤᎾᎵᎪᎭ ᏓᏅᎿᏗᏍᏗᏍᎨ ᎠᏫ; ᎾᏍᎩᏃ ᎠᏫᏄᏣ ᎢᏧᎳᎭ ᎠᏁᏙᎮ ᏈᎳ ᏧᏪᏥ ᎠᎴ ᏏᎵᏆ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏙᏓ ᏧᏓᎵᎢ. ᏦᏩᏃ ᎤᏃᏁᎴ ᎤᏂᏙᏓ ᎤᏲ ᎨᏥᏃᎮᏍᎬᎢ. ᎢᏏᎵᏃ ᎤᏟ ᏄᎨᏳᏎ ᏦᏩ ᎡᏍᎦᏉ ᏂᎦᏛ ᏧᏪᏥ, ᏅᏗᎦᎵᏍᏙᏗᎡ ᎤᏛᏐᏅᎯ ᎨᏒ ᎤᏕᏁᎸᎢ. ᎠᎴ ᎠᏄᏬ ᎤᏅᏣᏛ ᎤᏪᏰᏫᏎᎴᎢ. ᏧᏂᎵᏃ ᎤᎾᏙᎴᎰᏒ ᎤᏂᏙᏓ ᎤᏟ ᏄᎨᏳᏒ ᎾᏍᎩ ᎡᏍᎦᏉ ᏂᎦᏛ ᏧᏂᎵ, ᎬᏩᏂᏆᏘᎴᎢ, ᎠᎴ ᎥᏝ ᏙᎯᏱ ᎬᏩᎾᎵᏃᎮᏙᏗ ᏱᎨᏎᎢ. ᎰᏩᏃ ᎤᏍᎩᏓᏎᎢ, ᎠᎴ ᎾᏍᎩ ᏚᏃᏁᎴ ᏧᏂᎵ; ᎤᏟᏃ ᎢᎦᎢ ᎬᏩᏂᏆᏘᎴᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; Ꭷ, ᎢᏣᏛᏓᏍᏓ ᎯᎠ ᎾᏍᎩ ᎠᏆᏍᎩᏓᏒᎢ. ᎬᏂᏳᏉ ᏕᏙᏛᎢᎲᎩ ᏠᎨᏏ; ᎬᏂᏳᏉᏃ ᎠᏉᏛᎸᎯ ᏚᎴᏅᎩ ᎠᎴ ᏧᏳᎪᏗ ᎦᎧᎲᎩ; ᎠᎴ ᎬᏂᏳᏉ ᏂᎯ ᏗᏦᏛᎸᎯ ᏚᎾᏚᏫᏍᏔᏅᎩ, ᎡᎳᏗ ᎾᎾᏛᏁᎲᎩ ᎠᏴ ᎠᏉᏛᎸᎯ. ᏧᏂᎵᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏥᎪᏃ ᎤᏙᎯᏳᎯ ᏂᎩ ᏣᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏴ ᎣᏤᎲᎢ? ᎠᎴᏍᎪ ᎤᏙᎯᏳᎯ ᎭᏓᏅᏖᎵᏙᎯ ᎨᏎᏍᏗ ᎠᏴ ᎣᏤᎲᎢ? ᎠᎴ ᎠᏏᏉ ᎤᏟ ᎢᎦᎢ ᎢᎬᏩᏂᏆᏘᎴᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏍᎩᏓᏒᎢ ᎠᎴ ᏄᏪᏒᎢ. ᎣᏂᏃ ᎠᏏ ᎤᏍᎩᏓᏎᎢ, ᎠᎴ ᏚᏃᏁᎴ ᎠᎾᎵᏅᏟ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏏ ᏌᏉ ᎢᏯᏍᎩᏓᏒᎢ ᎥᎦᏍᎩᏘ, ᎠᎴ ᎬᏂᏳᏉ ᏅᏙ ᎢᎦ ᎡᎯ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ, ᎠᎴ ᏌᏚ ᎢᏯᏂᏛ ᏃᏈᏏ ᎡᎳᏗ ᏂᎬᏆᏛᏁᎲᎩ. ᎤᏙᏓᏃ ᎠᎴ ᎠᎾᎵᏅᏟ ᏚᏃᏁᎴᎢ. ᎤᏙᏓᏃ ᎤᎬᏍᎪᎸᏁᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙ ᎤᏍᏗ ᎾᏍᎩ ᎠᏍᎩᏓᏍᏗ ᏣᏍᎩᏘ? ᏥᎪ ᎠᏴ, ᎠᎴ ᏣᏥ, ᎠᎴ ᎢᏣᎵᏅᏟ, ᎤᏙᎯᏳᎯ ᎦᏙᎯ ᎢᏴᏛ ᎡᎳᏗ ᏅᏓᏨᏯᏛᏁᎵᎵ? ᎠᎾᎵᏅᏟᏃ ᎬᏩᏳᏤᎴᎢ; ᎤᏙᏓᏍᎩᏂ ᎤᏅᏓᏕ ᎾᏍᎩ ᏄᏪᏒᎢ. ᎠᎾᎵᏅᏟᏃ ᎤᏁᏅᏎ ᏚᏂᎦᏘᏛᏎ ᎤᏂᏙᏏ ᏧᏤᎵ ᎠᏫ ᏏᎩᎻᏱ. ᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ; ᏝᏍᎪ ᎢᏣᎵᏅᏟ ᎠᏫ ᏱᏫᏓᏂᎦᏘᏯ ᏏᎩᎻᏱ? Ꭷ, ᏓᎬᏅᏏ ᏩᏁᏙᎲᎢ; ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏂᏉ ᎠᏗᎾ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎮᎾ ᏣᎦᏛᏄᎦ ᏄᎾᏛᎿᏕᎬ ᎢᏣᎵᏅᏟ ᎠᎴ ᏄᎾᏛᎿᏕᎬ ᎠᏫ, ᎢᏍᎩᏃᏁᎵᎸᏃ. ᎯᏉᏂᏃ ᎤᎨᏓᎵᏴ ᎤᏅᏎᎢ, ᎠᎴ ᏏᎩᎻ ᏭᎷᏤᎢ. ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏩᏛᎮᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎢᎾᎨ ᎤᎴᎾᎵᏙᎮᎢ; ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎤᏛᏛᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙ ᏣᏲᎭ? ᎯᎠᏃ ᏄᏪᏎᎢ; ᎣᏣᎵᏅᏟ ᎦᏥᏲᎭ; ᏍᎩᏃᎲᏏ ᎾᎿ ᏫᏓᏂᎦᏘᏴ ᎠᏫ. ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎯᎠ ᏄᏪᏎᎢ; ᎤᎾᏓᏅᏒ ᎠᏂ; ᎠᏆᏛᎦᏅᏰᏃ ᎯᎠ ᎾᏂᏪᏍᎬᎢ; ᏙᏓᏂ ᏫᏗᎶᎯ. ᏦᏩᏃ ᏚᏍᏓᏩᏛᏎ ᎠᎾᎵᏅᏟ; ᏙᏓᏂᏃ ᏫᏚᏩᏛᎮᎢ. ᎨᏃ ᎢᏴᏛ ᏫᎬᏩᎪᎲ ᎾᎥ, ᎠᏏᏉ ᏂᎦᎷᎬᏫ ᎨᏎᎢ, ᎬᏩᎯᏍᏗᏱ ᎤᎾᏓᏅᏖᎴᎢ. ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎯᎠ ᎾᏍᎩ ᎠᏍᎩᏓᏒᎥᏍᎩ ᏓᏯᎢ. Ꭷ ᎿᏉ ᎡᏘᎷᎦ, ᎠᎴ ᎢᎸᎯᏢ ᎠᏔᎴᏒ ᏪᏓᏓᎡᏒᎭ, ᎯᎠᏃ ᏂᏗᏪᏒᎭ, ᎪᎱᏍᏗ ᎤᏍᏗ ᎤᏍᎦᏎᏗ ᎡᎿᎢ ᎤᏪᏯᎥ; ᏓᏓᏙᎴᎰᏏᏃ ᏅᏗᎦᎵᏍᏔᏂᏒ ᎤᏍᎩᏓᏒᏅᎢ. ᎷᏈᏂᏃ ᎤᏛᎦᏁᎢ, ᎤᏭᏓᎴᏎᏃ ᏚᏯᏅᎡᎴᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ; ᏞᏍᏗ ᎡᏗᎸᎩ. ᎷᏈᏂᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᎩᎬ ᎢᏣᏤᏮᎩ, ᎡᏥᏯᎥᎦᏉᏍᎩᏂ ᎯᎠ ᎢᎾᎨ ᏣᏔᎴᏒ, ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᎡᏨᏁᎸᎩ; ᎾᏍᎩ ᏧᏭᏓᎳᎡᏗᏱ ᎤᏰᎸᏎᎢ, ᎤᏙᏓ ᏔᎵᏁ ᏮᎤᏪᎧᏁᏗᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏦᏩ ᏫᏚᎷᏤᎸ ᎠᎾᎵᏅᏟ, ᎤᏂᏄᏪᏎ ᎤᏅᏬ, ᎾᏍᎩ ᎤᏅᏣᏛ ᎠᏄᏬ ᎤᏄᏩᎥᎢ, ᎬᏩᏂᏴᎮᏃ ᎠᎴ ᎠᏔᎴᏒ ᎬᏩᏯᏁᎢ. ᎾᏍᎩᏃ ᎠᏔᎴᏒ ᎤᏏᏩ ᎨᏎᎢ, ᎠᎹ ᏂᎦᏁᎲᎾ ᎨᏎᎢ. ᎤᎾᏅᏁᏃ ᏗᎾᎵᏍᏓᏴᏂᏎᎢ, ᏗᏂᎦᏙᎵᏃ ᏚᏂᏌᎳᏓᏁᎢ, ᎠᎴ ᏫᏚᎾᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ ᏑᎾᏓᏡᎩ ᎠᏂᎢᏏᎺᎵ ᏗᎾᎢᏎ ᎩᎵᏯᏗ ᏅᏓᏳᏂᎶᏒᎯ; ᎨᎻᎵ ᏓᎾᏘᏁᎮᎢ ᏚᏂᏐᏈᎴ ᏗᎦᏩᏒᎩ, ᎠᎴ ᏅᏬᏘ ᎠᏜ, ᎠᎴ ᎦᏩᏒᎩ ᎠᏜ, ᎢᏥᏈᏱ ᏓᏂᏱᏎᎢ. ᏧᏓᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ; ᎦᏙ ᏱᎩᏁᏉᏥ ᎢᏳᏃ ᏰᏗᎸ ᎢᎩᏅᏟ, ᎤᎩᎬᏃ ᏱᎦᏕᎵᏍᏔᏅ? Ꭷ ᎡᏗᎾᏚᎦ ᎠᏂᎢᏏᎺᎵ ᎨᏗᎧᏏ, ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᎡᏛᏁᎸᎩ; ᎢᎩᏅᏟᏰᏃ ᎠᎴ ᎢᎩᏇᏓᎸᎢ. ᎠᎾᎵᏅᏟᏃ ᎬᏩᏛᏓᏍᏓᏁᎴᎢ. ᎤᏂᎶᏎᏃ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᎠᏂᎻᏗᏯᏂ ᎠᏂᏃᏔᏂᏙᎯ; ᏦᏩᏃ ᏫᎬᏩᏎᏒᎮ ᎬᏩᏯᎢᏎ ᎠᏔᎴᏒᎢ, ᎠᎴ ᎬᏩᎾᏗᏅᏎ ᏦᏩ ᎠᏂᎢᏏᎺᎵ ᏚᏂᎧᏁᎴᎢ, ᏔᎳᏍᎪᎯ ᎠᏰᎵ ᎠᏕᎸ ᎤᏂᏁᎬ ᏚᏂᎬᏩᎶᏔᏁᎢ. ᏦᏩᏃ ᎢᏥᏈᏱ ᏫᎬᏩᏘᏅᏍᏔᏁᎢ. ᎷᏈᏂᏃ ᏗᏔᎴᏒ ᏫᎤᏨᏎᎢ, ᎬᏂᏳᏉᏃ ᏦᏩ ᎥᏝ ᏱᏯᎡ ᎠᏔᎴᏒᎢ. ᏧᏄᏬᏃ ᏚᏪᏣᎦᎸᎮᎢ. ᎢᎤᏨᏎᏃ ᎠᎾᎵᏅᎶ ᏫᏚᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏫᏄᏣ ᎥᏝ ᏰᎭ; ᎠᏴᏃ, ᎭᏢ ᏮᏓᏥᎶᏏ ᎠᏴ? ᏦᏩᏃ ᎤᏄᏬᎥᎯ ᎤᏂᏁᏎᎢ, ᎠᎴ ᎤᏂᎴ ᎠᏫ ᎠᎭᏄᎸᎯ ᎠᏨᏯ, ᎠᎴ ᎤᎩᎬᎯ ᎤᏅᏁ ᎠᏄᏬ. ᎤᎾᏓᏅᏎᏃ ᎠᎴ ᏭᏂᏃᎮᎴ ᎤᏂᏙᏓ ᎾᏍᎩ ᎠᏄᏬ ᎤᏅᎶᏛ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎣᏥᎾᏩᏛ; ᎯᎪᎵᏯ, ᎭᏙᎴᎰᎯ ᏥᎪ ᎯᎠ ᎾᏍᎩ ᏤᏥ ᎤᏄᏬᎥᎯ, ᏝᎨ. ᎤᏬᎵᏤᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎾᏍᎩ ᎠᏇᏥ ᎤᏄᏬᎥᎯ; ᎤᏍᎦᏎᏗ ᎡᎿᎢ ᎤᏪᏯᎥ; ᏄᏜᏏᏛᏒᎾ ᎠᏥᏓᎦᎸᎥᏒ ᏦᏩ. ᏤᎦᏈᏃ ᏚᏪᏣᎦᎸᎮ ᏄᏄᏬ, ᎠᎴ ᎤᏍᏕᎾ ᎠᏄᏬ ᎤᏓᏠᏍᏔᏁᎢ, ᎠᎴ ᎤᏣᏘ ᏄᏬᏓᏇ ᎤᏍᎪᏂᎴ ᎤᏪᏥ. ᏂᎦᏛᏃ ᏄᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᏚᎾᎴᏁ ᎬᏩᏄᏬᎯᏍᏙᏗᏱ; ᎠᏎᏃ ᎤᏉᏌᏁ ᎤᏄᏬᎯᏍᏗᏱ; ᎯᎠᏃ ᏄᏪᏎᎢ; ᏗᎦᎦᏠᏱᎯᏰᏃ ᏓᎦᏠᎣᏏ ᏧᏂᏲᎱᏒᎯ ᏄᎾᏛᏅ ᏮᏓᏥᏴᎵ ᏮᏓᏥᎷᏤᎵ ᎠᏇᏥ. ᎤᏙᏓᏃ ᎤᏍᎪᏂᎴᎢ. ᎠᏂᎻᏗᏯᏂᏃ ᎢᏥᏈᏱ ᎬᏩᏘᏅᏎ ᏫᎬᏪᎧᏁᎴ ᏉᏗᏆ, ᎤᎬᏫᏳᏌᏕᎩ ᏇᎵᏲ ᎤᏤᎵᎦ, ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ. ᎠᏯᏙᎸᎢ 38 ᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩ ᏧᏓ ᏚᏓᏅᎡᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏓᎳᎻ ᎤᏕᏅᎯ ᏭᎷᏤᎴᎢ, ᎾᏍᎩ ᎭᎳ ᏚᏙᎡᎢ. ᎾᎿᏃ ᏧᏓ ᎤᎪᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᎨᎾᏂ ᎤᏪᏥ ᎠᎨᏴ ᏑᎠ ᏧᏙᎢᏛ, ᎠᎴ ᎤᏯᏅᎮᎢ, ᎠᎴ ᎤᏓᏴᏎᎢ. ᎤᏁᎵᏤᏃ ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎠᏧᏣ, ᎠᎴ ᎥᎵ ᏚᏬᎡᎢ. ᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎠᏧᏣ, ᎠᎴ ᎣᎾᏂ ᏚᏬᎡᎢ. ᎠᏏᏃ ᏔᎵᏁ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᏏᎳ ᏚᏬᎡᎢ. ᎩᏏᏈᏃ ᏪᏙᎮ ᎾᎯᏳ ᎤᎾᏄᎪᏫᏒ. ᏧᏓᏃ ᎤᏩᏛᎡᎴ ᎥᎵ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎤᏓᎵᎢ; ᎾᏍᎩ ᏖᎹ ᏚᏙᎡᎢ. ᎥᎵᏃ, ᏧᏓ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎠᏍᎦᎾᎯᏳ ᎨᏎ ᏱᎰᏩ ᏓᎧᏅᎢ; ᏱᎰᏩᏃ ᎤᎴᎢ. ᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᎣᎾᏂ; ᎡᏣᏂᎵ ᎤᏓᏴᏛ ᏫᎷᏥᏏ, ᎠᎴ ᎠᎾᏛᎯ ᎢᏳᏛᏁᏗ ᎨᏒ ᏂᏯᏛᏂᏏ, ᎠᎴ ᎡᏣᏂᎵ ᏧᏪᏥ ᏕᎯᏯᏛᎯᏍᏓᎸᎭ. ᎣᎾᏂᏃ ᎠᎦᏔᎮ ᎠᏲᎵ ᎤᏤᎵ ᎠᏥᏰᎸᎾᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᏚᎾᏂᏏᏅ ᎤᏂᎵ ᎤᏓᏴᏛ, ᎤᏤᏪ ᎦᏙᎯ, ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎤᏂᎵ ᎤᏪᏥ ᎤᏕᏁᏗᏱ. ᎾᏍᎩᏃ ᏄᏛᏁᎸ ᎤᏲᎢᏳ ᎨᏎ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᎴᎢ. ᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᏖᎹ ᎤᏦᎯ; ᏦᏑᎶᏨᎯᏉ ᏣᏙᏓ ᎦᏁᎸ ᏦᎴᏍᏗ, ᎬᏂ ᏏᎳ ᎠᏇᏥ ᎤᏛᎾ ᎨᏎᏍᏗ; (ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᎾᏍᎩᏰᏃ ᎾᏍᏉ ᏯᏲᎱᎯ, ᎾᏍᎩ ᏧᏂᎵ ᏄᎾᎵᏍᏔᏅᎢ.) ᏖᎹᏃ ᎤᏪᏅᏎᎢ, ᎠᎴ ᎤᏙᏓ ᎦᏁᎸ ᏪᎮᎢ. ᎢᎸᎯᏳᏃ ᎢᏴᏛ ᏑᎠ ᎤᏪᏥ ᏧᏓ ᎤᏓᎵᎢ ᎤᏲᎱᏎᎢ, ᏧᏓᏃ ᎤᏄᏬᎯᏎᎢ, ᎠᎴ ᏗᎻᎾᏗ ᎤᏪᏅᏎ ᎠᏫ ᏗᎬᏩᏍᏙᏰᎯ ᏗᏁᎲᎢ, ᎤᏩᏒ ᎠᎴ ᎤᎾᎵᎢ ᎭᎳ ᎠᏓᎳᎻ ᎤᏕᏅᎯ. ᏖᎹᏃ ᎠᏥᏃᏁᎴᎢ ᎯᎠ ᎾᏥᏪᏎᎴᎢ; ᎬᏂᏳᏉ ᎯᏦᎢᏯ ᏗᎻᎾᏗ ᎠᎢ ᎠᏫ ᏧᏤᎵ ᏓᏍᏙᏰᎯ. ᎤᏬᏑᎶᏨᎯᏃ ᎤᏄᏬᏍᏗ ᎤᏄᏪᏎᎢ, ᎠᎴ ᎤᎵᎬᏚᎳᏁᎢ, ᎠᎴ ᎤᏚᏢᏁᎢ, ᎠᎴ ᎤᏜᏅᏛ ᎤᏪᏁᎢ, ᏗᎻᎾᏗ ᏫᎦᏅᏅᎢ; ᎤᏙᎴᎰᏎᏰᏃ ᏏᎳ ᎤᏛᎾ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏂᏓᎾᏤᎬᎾ ᎨᏒᎢ. ᏧᏓᏃ ᎤᎪᎲ ᎤᏁᎫᏥᏛ ᎠᎨᏴ ᎤᏪᎵᏎᎴᎢ, ᏂᎦᎵᏍᏙᏗᏍᎨ ᎤᎵᎬᏚᎸᎢ. ᎾᏍᎩᏃᏭᎷᏤᎴ ᏅᏃᎱᎶᏗ, ᎯᎠᏃ ᏄᏪᏎᎢ, Ꭷ, ᏗᎾᏂᏏᎲᎦ; (ᎥᏝᏰᏃ ᏱᎦᎳᎮ ᎾᏍᎩ ᎤᏦᎯ ᎨᏒᎢ.) ᎯᎠᏃ ᏄᏪᏎᎢ, ᏚᏙᏃ ᏓᏍᎩᏁᎵ ᎾᏍᎩ ᏗᎩᎾᏂᏏᏗᏱ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᏗᎦᏓᏅᏒᎭ ᎠᏫ ᏗᏁᏙᎲ ᏩᏯᏅᏛ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᎦᏘᏗᏍᏙᏗᏍᎪᏃ ᏓᏍᎩᏁᎵ ᏔᏓᏅᏒᎭ ᎢᎪᎯᏛ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎤᏍᏗ ᎠᎦᏘᏗᏍᏙᏗ ᏓᎬᏁᎵ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎵᏰᏑᏍᏚᏬ ᎠᏏᎥᏍᏙᏗ, ᎠᎴ ᎪᎸᏌᏛᏗ ᎬᏩᏠᏯᏍᏗ, ᎠᎴ ᏣᏙᎳᏅᏍᏗ ᏥᏁᎭ. ᎾᏍᎩᏃ ᏚᏁᎴᎢ, ᎠᎴ ᏚᎾᏂᏏᏁᎢ, ᎠᎴ ᎤᏁᎵᏍᏔᏁᎢ. ᏚᎴᏁᏃ, ᎠᎴ ᎤᏪᏅᏎᎢ, ᎠᎴ ᎤᎵᎬᏚᎴᏎᎢ, ᎠᎴ ᏧᏃᏑᎶᏨᎯ ᏧᎾᏄᏬᏍᏗ ᏫᏚᏄᏬᎡᎢ. ᏧᏓᏃ ᎤᏓᏅᏎ ᏭᏪᎧᏁᎴ ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᎤᎨᏅᏕ ᎤᎾᎵᎢ ᎠᏓᎳᎻ ᎡᎯ, ᎠᎴ ᎥᎤᎩᏍᏗᏱ ᎤᎦᏘᏗᏍᏓᏁᎸᎯ ᎠᎨᏴ; ᎠᏎᏃ ᎥᏝ ᏳᏩᏛᎮᎢ. ᎿᏉᏃ ᏚᏛᏛᏁ ᎾᎿ ᎠᏁᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᎭᏢ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎬᏂᎨᏒ ᏅᏃᎱᎶᏗ ᏧᏬᎸᎩ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎥᏝ ᎤᏁᎫᏥᏛ ᎠᎨᏴ ᎠᏂ ᏰᏙᎮᎢ. ᏧᏓᏃ ᏫᎤᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏎᎢ, ᏥᏯᏠᎩᏉ, ᎠᎴᏃ ᎾᏍᏉ ᎾᎿ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎥᏝ ᎠᏂ ᏰᏙᎮ ᎤᏁᎫᏥᏛ ᎠᎨᏴ. ᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏩᎾᎡᏍᏗᏉ, ᏰᎩᎾᏕ ᎣᎯᏍᏓᏰᏃ; ᎬᏂᏳᏉ ᎯᎠ ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᎬᏯᎨᏅᏛᎩ, ᏮᎯᏯᏠᎩᏉᏃ. ᏦᎢᎭᏃ ᎢᏯᏅᏙ ᎣᏂ, ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏧᏓ ᎠᏥᏃᏁᎴ ᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᏖᎹ ᏣᏦᎯ ᎤᏓᏁᎬᏍᏔᏅ, ᎠᎴ ᎾᏍᏉ ᎬᏂᏳᏉ ᎤᏁᎵᏨ ᏚᏂᏏᏂᏙᎸᎢ; ᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏣᏘᏃᎦ ᎠᎴ ᏩᎦᎪᎲᏍᏓ. ᎠᎦᏘᏃᎸᏃ ᎤᏓᏅᏎ ᎤᏛᎪᏗ ᎤᏦᎯᏛᎯ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎠᏍᎦᏯ ᎾᏍᎩ ᎯᎠ ᏧᏤᎵᎦ ᎠᎩᏁᎵᏍᏔᏅ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎭᏙᎴᎰᎯ, ᎦᎪ ᏧᏤᎵᎦ ᎯᎠ, ᎠᎵᏰᏑᏍᏚᏬ ᎠᏐᎥᏍᏙᏗ, ᎠᎴ ᎪᎸᏌᏛᏗ, ᎠᎴ ᎠᏙᎳᏅᏍᏗ. ᏧᏓᏃ ᏧᏤᎵᎦ ᎨᏒ ᎤᏃᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏟ ᏚᏳᎪᏛ ᏄᏛᏁᎸ ᎡᏍᎦᏉ ᎠᏴ; ᏂᎦᎵᏍᏙᏗᎭ ᎠᏇᏥ ᏏᎳ ᏂᏥᏯᎧᏁᎸᎾ ᎨᏒᎢ. ᎥᏝ ᎠᎴ ᎢᎸᎯᏳ ᏔᎵᏁ ᏳᎦᏙᎥᏎᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎤᏍᏆᎸᎲ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏍᏗᏱ, ᎬᏂᏳᏉ ᏗᏂᎳᏫ ᏕᎦᏁᎵᏎᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎿᏉ ᏓᏓᎾᏄᎪᏫᏍᎨᎢ, ᎾᏍᎩ ᎠᏏᏴᏫ ᏧᏙᏯᏅᎯᏕᎢ; ᎠᎵᏍᏕᎵᏍᎩᏃ ᎩᎦᎨ ᎠᏍᏘ ᎤᎸᏍᏓᏁᎴ ᎤᏬᏰᏂ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎢᎬᏱ ᎤᎾᏄᎪᏨᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᎤᏎᏒᎲ ᎤᏬᏰᏂ, ᎬᏂᏳᏉ ᏗᎾᏓᏅᏟ ᏧᎾᏄᎪᏤᎢ; ᎠᎵᏍᏕᎵᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᎦᎵᏍᏙᏓ ᎥᎯᎳᏅᏓᏓ ᏛᎯᏄᎪᎢ? ᎾᏍᎩ ᎯᎠ ᎦᎳᏅᏓᏛᎢ ᏂᎯ ᎡᏣᎳᏫᏎᎮᏍᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏇᎵᏏ ᏓᎪᎡᎢ. ᎣᏂᏃ ᏗᎾᏓᏅᏟ ᏧᏄᎪᏤᎢ, ᎾᏍᎩ ᎩᎦᎨ ᎠᏍᏘ ᎤᎸᏍᏗ ᎤᏬᏰᏂ; ᏎᎳᏃ ᏓᎪᎡᎢ. ᎠᏯᏙᎸᎢ 39 ᏦᏩᏃ ᎢᏥᏈᏱ ᏩᎦᏘᏃᎴᎢ; ᏉᏗᏆᏃ ᎤᎬᏫᏳᏌᏕᎩ ᏇᎵᏲ ᎤᏤᎵᎦ, ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ, ᎢᏥᏈᏱ ᎡᎯ, ᎾᏍᎩ ᏚᏩᏎᎴ ᎠᏂᎢᏏᎺᎵ, ᎾᏍᎩ ᎾᎿ ᏫᎬᏩᏘᏃᎸᎯ. ᏱᎰᏩᏃ ᏚᎧᎿᏩᏗᏙᎮ ᏦᏩ, ᎣᏍᏛᏃ ᎢᏳᎵᏍᏓᏁᎯ ᎨᏎᎢ; ᎤᎾᏝᎢᏃ ᎦᏁᎸ ᎢᏥᏈᏱ ᎡᎯ ᎡᎯᎢ. ᎤᎾᏝᎢᏃ ᎤᏙᎴᎰᏎ ᏱᎰᏩ ᏚᎧᎿᏩᏗᏙᎲᎢ, ᎠᎴ ᏱᎰᏩ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗᏱ ᏄᏩᏁᎲ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ. ᏦᏩᏃ ᎣᏍᏛ ᎤᏰᎸᏗᏱ ᎤᏩᏛᎮᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏛᏁᎮᎢ; ᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᏄᏩᏁᎴ ᎦᏁᎸᎢ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥ ᏚᏲᏎᎴᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᏄᏩᏁᎸ ᎦᏁᎸᎢ ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥᎢ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎾᏍᎩ ᏱᎰᏩ ᎣᏍᏛ ᏄᏛᏁᎴ ᎦᏁᎸ ᎢᏥᏈᏱ ᎡᎯ, ᏦᏩ ᎢᏳᏩᏂᏌᏛ; ᎠᎴ ᏱᎰᏩ ᎤᏓᏍᏕᎸᏗ ᎨᏒ ᏔᎵ ᎤᏛᏗᏕᎨ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎿᎥ ᎦᎵᏦᏕ ᎠᎴ ᏠᎨᏏ. ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥ ᏦᏩ ᎤᎦᏘᏗᏍᏔᏁᎢ; ᎠᎴ ᎥᏝ ᏯᎦᏔᎮ ᎢᏳᏍᏗ ᎤᎲᎢ, ᎠᎵᏍᏓᏴᏗ ᎠᎩᏍᎬ ᎤᏩᏒ. ᎠᎴ ᏦᏩ ᎤᏬᏚᎯᏳ ᎨᏎᎢ, ᎠᎴ ᎣᏏᏳ ᎨᏎ ᏣᎦᎦᏅᏗᏱ. ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᎾᏝᎢ ᎤᏓᎵᎢ ᏚᎧᏂᏍᎨ ᏦᏩ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏍᏆᏂᏏᎲᏏ. ᎠᏎᏃ ᏦᏩ ᏚᏢᏫᏎᎴᏉ, ᎠᎴ ᎯᎠ ᏄᎡᏎᎴ ᎤᎾᏝᎢ ᎤᏓᎵᎢ; ᎬᏂᏳᏉ, ᎠᎩᎾᏝᎢ ᎥᏝ ᏱᎦᏔᎭ ᎢᏳᏍᏗ ᎠᎩᎦᏘᏗᏍᏛ ᎦᏁᎸᎢ, ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎿᎥ ᏓᎩᏲᎯᏎᎸ. ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏟ ᏱᎾᏥᎸᏉᏗ ᎠᏂ ᎠᏓᏁᎸ ᎠᏴ ᏅᎩᎸᏉᏛᎢ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏂᏓᎩᏲᎯᏎᎸᎾ ᏱᎩ, ᏂᎯ ᏨᏒ, ᎾᏍᎩ ᏂᎯ ᎤᏓᎵᎢ ᎨᏒ ᎢᏳᏍᏗ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏱᏁᏋ ᎤᏲ ᏱᏓᎩᎸᏫᏍᏓᏏ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏱᏥᏍᎦᏅᏥᏏ? ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏎᎲ ᏦᏩ ᏗᎬᏩᎩᏨᏗ, ᎥᏝ ᏱᏛᏓᏍᏓᏁᎮ ᎤᏂᏏᏁᏗᏱ, ᎠᎴ ᎢᏧᎳᎭ ᎤᏁᏓᏍᏗᏱ. ᎾᎯᏳᏉᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎦᎵᏦᏕ ᏭᏴᎴ ᏧᎸᏫᏍᏓᏁᏗᏱ ᎤᎲ ᏧᎸᏫᏍᏓᏁᏗ; ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏂᏍᎦᏯ ᎾᎿ ᎠᏁᎯ ᏯᏯᎡ ᎦᎵᏦᏕ. ᎠᎴ ᎤᏂᏴᎮ ᎤᏄᏩᎥᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᏆᏂᏏᎲᏏ; ᎤᏄᏬᏃ ᎬᏩᏒᎦᎵ [ᎠᎨᏴ] ᎤᎵᏘᏎ [ᏦᏩ] ᎠᎴ ᎤᏄᎪᏤᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ [ᎠᎨᏴ] ᎿᏉ ᎤᏙᎴᎰᏒ ᎤᏂᏴ ᎤᏄᏬ ᎤᏒᎦᎸᎢ, ᎠᎴ ᏙᏱ ᏮᏗᏢᏍᏔᏅᎢ, ᎾᏍᎩ ᏫᏚᏯᏅᎮ ᎠᏂᏍᎦᏯ ᎦᏁᎸ ᎠᏁᎯ, ᎠᎴ ᏚᏃᏁᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎠᏈᎷ ᎢᎦᏘᏃᎮᎸ ᎢᎩᏐᏢᎢᏍᏙᏗᏱ; ᎾᏍᎩ ᎠᎩᎷᏤᎸᎩ ᎠᏆᏂᏏᏁᏗᏱ ᎤᏰᎸᏒᎩ, ᎠᏍᏓᏯᏃ ᎠᏇᎷᏅᎩ; ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎿᏉ ᎤᏛᎦᏅᎠᏍᏓᏯ ᎠᏇᎷᏅᎢ, ᎾᏍᎩ ᎠᎩᏂᏰᎸ ᎤᏄᏬ, ᎠᎴ ᎤᎵᏘᏒᎩ, ᎠᎴ ᎤᏄᎪᏨᎩ. ᎤᏄᏬᏃ ᎤᏍᏆᏂᎪᏔᏁᎢ ᎬᏂ ᎤᎾᏝᎢ ᎢᎤᎷᏨ. ᎤᏠᏱᏉᏃ ᎾᏍᎩ ᎤᏃᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏈᎷ ᎠᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᏥᏍᎩᏯᏘᏃᎮᎸᎩ, ᎠᎩᎷᏤᎸᎩ ᎠᎩᏐᏢᎢᏍᏙᏗᏱ ᎤᏰᎸᏒᎩ. ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎠᏍᏓᏯ ᎠᏇᎷᏅ, ᎤᏄᏬ ᎠᎩᏂᏰᎸᎩ, ᎠᎴ ᏙᏱ ᏭᏗᏢᏍᏔᏅᎩ. ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᎾᏝᎢ ᎤᏛᎦᏅ ᎤᏓᎵᎢ ᏂᎦᏪᏍᎬᎢ, ᎾᏍᎩ ᎤᏃᏁᎲ ᎯᎠ ᏂᎦᏪᏎᎬᎢ, ᎯᎠ ᎾᏍᎩ ᎾᏋᎦ ᎯᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎤᏔᎳᏬᏎᎢ. ᏦᏩᏃ ᎤᎾᏝᎢ ᎤᏂᏴᎮᎢ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎤᏴᏔᏁᎢ, ᎾᎿ ᎤᎬᏫᏳᎯ ᏧᏤᎵᎦ ᎠᏂᏴᎩ ᏕᎨᎦᎸᎥᎢ; ᎾᎿᏃ ᏗᏓᏍᏚᏗᏱ ᎠᏯᎡᎢ. ᎠᏎᏃ ᏱᎰᏩ ᏚᎧᎿᏩᏗᏙᎮ ᏦᏩ, ᎠᎴ ᎤᏪᏙᎵᎨᎢ, ᎠᎴ ᎣᏍᏛ ᎤᏰᎸᏗᏱ ᏄᏩᏁᎴ ᏗᏓᏍᏚᏗᏱ ᎠᎦᏘᏯ. ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎠᎦᏘᏯ ᏦᏩ ᏚᎦᏘᏗᏍᏔᏁ ᏂᎦᏛ ᎠᏂᏴᎩ ᏗᏓᏍᏚᏗᏱ ᎠᏂᏯᎢ; ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᎿ ᎠᎾᏛᏁᎲ ᎾᏍᎩ ᎢᏳᏛᏁᎸᎯ ᎨᏎᎢ. ᏗᏓᏍᏚᏗᏱᏃ ᎠᎦᏘᏯ ᎥᏝ ᎪᎱᏍᏗ ᏯᎦᏌᏯᏍᏗᏍᎨ ᎾᏍᎩ ᎤᎦᏘᏗᏍᏛᎢ: ᏂᎦᎵᏍᏙᏗᏍᎨ ᏱᎰᏩ ᏚᎧᎿᏩᏗᏙᎲᎢ; ᎠᎴ ᏚᎸᏫᏍᏓᏁᎲ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗᏱ ᏄᏩᏁᎲ ᏱᎰᏩ. ᎠᏯᏙᎸᎢ 40 ᎯᎠᏃ ᏄᎵᏍᏔᏂᎣᎸ ᎣᏂ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᎠᏗᏔᏍᏗ ᎤᎦᏘᏕᎯ, ᎠᎴ ᏧᏪᏚᏁᎯ ᎤᏂᏍᎦᏅᏤᎴ ᎤᏂᏅᏏᏙᎯ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ. ᏇᎵᏲᏃ ᏚᎿᎸᏤᎴ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏰᎬᏍᏓ ᏧᏤᎵᎦ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᏂᎦᏘᏯ ᎨᏒᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᏂᏚᎲᏍᎩ ᎨᏒᎢ. ᎠᎴ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ ᎦᏁᎸ ᏫᏚᏴᏔᏁᎢ, ᎾᎿ ᏗᏓᏍᏚᏗᏱ, ᏦᏩ ᎾᎿ ᎤᏥᏴᏛᎢ. ᎠᎴ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏄᎬᏫᏳᏒ ᏚᎨᏅᏕ ᏦᏩ ᎠᏂᏴᎩ, ᎠᎴ ᎾᏍᎩ ᏓᎦᏘᏰᎢ; ᎠᎴ ᎢᎸᏍᎩ ᏄᏬᎯᏤ ᏕᎨᏥᏍᏚᎮᎢ. ᎠᎴ ᎢᏧᎳ ᏚᎾᏍᎩᏓᏎᎢ, ᎢᏧᎳ ᏌᏉ ᏒᏃᏱ ᏚᎾᏍᎩᏓᏎᎢ, ᎢᏧᎳ ᏧᏓᎴᎾᎢ ᏕᎦᏛᎬ ᏚᎾᏍᎩᏓᏎᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᎠᏗᏔᏍᏗ ᎤᎦᏘᏕᎯ, ᎠᎴ ᏧᏪᏚᏁᎯ, ᎾᏍᎩ ᏗᏓᏍᏚᏗᏱ ᏥᏕᎨᏥᏴᏕᎢ. ᏦᏩᏃ ᏑᎾᎴ ᏭᏴᎵᎴ ᎠᏂᏯᎥᎢ, ᎠᎴ ᏚᎧᎿᏁ ᎾᏍᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏲ ᎤᎾᏓᏅᏖᎢ. ᏚᏛᏛᏁᏃ ᏇᎵᏲ ᏧᏤᎵ ᎤᏂᎬᏫᏳᏌᏕᎩ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᏂᏯᎡ ᏗᏓᏍᏚᏗᏱ ᎤᎾᏝᎢ ᎦᏁᎸᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎤᏲᏉ ᎢᏍᏓᏓᏅᏔ ᏤᏍᏓᎦᏃᏗᏱ ᎪᎯ ᎢᎦ? ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎣᏍᏓᏍᎩᏘ, ᎥᏝ ᎠᎴ ᎪᎶ ᎦᏛᎬ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᏰᏙᎭ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᏳᎭ ᎦᏛᎬ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ? ᏍᎩᏂᏃᎲᏏ [ᏄᏍᏛ ᎢᏍᏓᏍᎩᏓᏒᎢ.] ᏄᎬᏫᏳᏒᏃ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᎤᏍᎩᏓᏒ ᎤᏃᏁᎴ ᏦᏩ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏍᎩᏓᏍᎬ ᎬᏂᏳᏉ, ᎤᏖᎸᎳᏛ ᎢᎬᏱᏗᏢ ᎾᏆᎵᏍᏓᏁᎸᎩ; ᎤᏖᎸᎳᏛᏃ ᏦᎢ ᏚᏩᏂᎦᎸᎩ; ᎠᎴ ᏣᏥᎸᎲᏍᎪ ᎾᏍᎩᏯ ᎥᎨᏒᎩ, ᎠᎴ ᎠᏥᎸᏍᎬᎩ; ᎠᎴ ᏖᎸᎳᏗ ᎤᏅᎾᏏᏛ ᎤᎾᏓᏛᏅᎩ; ᎠᎴ ᏇᎵᏲ ᎤᏤᎵ ᎤᎵᏍᏈᏗ ᎥᏥᏰᎲᎩ; ᏖᎸᎳᏗᏃ ᏓᏆᏕᏒᎩ, ᎠᎴ ᏓᎩᏨᏩᏍᏔᏅᎩ, ᏇᎵᏲ ᎤᏤᎵ ᎤᎵᏍᏈᏗ ᎠᎩᏟᏍᏔᏅᎩ; ᎠᎴ ᏇᎵᏲ ᎥᏥᏯᏒᎦᎶᏔᏅᎩ ᎤᎵᏍᏈᏗ. ᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎦᏛᎬᎢ; ᏦᎢ ᎾᏍᎩ ᏥᏚᏩᏂᎦᎴ ᏦᎢ ᏧᏒᎯᏛ ᎦᏛᎦ. ᏦᎢ ᎢᏳᏒᎯ ᏇᎵᏲ ᏛᏣᏌᎳᏓᏁᎵ ᎯᏍᎪᎵ; ᎠᎴ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏔᎵᏁ ᏛᏣᏁᎵ. ᎠᎴ ᏇᎵᏲ ᎤᏤᎵ ᎤᎵᏍᏈᏗ ᏛᎯᏯᏒᎦᎶᏔᏂ, ᎾᏍᎩᏯ ᏥᎿᏛᏁᎲ ᏧᏩᎫᏔᏅᏒ ᎠᏗᏔᏍᏗ ᎯᎦᏘᏕᎯ ᏥᎨᏒᎩ. ᎠᏗᎾ ᏍᏆᏅᏓᏛᎭ ᎾᎯᏳ ᎣᏍᏛ ᏂᏣᏛᎿᏕᎨᏍᏗ, ᎠᎴ ᎣᏍᏛ ᏂᏍᏆᏛᏁᎸᎭ, ᎠᎴ ᏇᎵᏲ ᎯᏃᏁᎸᎭ ᎠᏴ ᏍᎩᏁᎢᏍᏔᏅᎭ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎠᏓᏁᎸ ᏍᎩᏄᎪᏫᏒᎭ; ᎤᏙᎯᏳᎯᏯᏰᏃ ᎥᎩᏃᏍᎩᏒᎩ ᎠᏂᏈᎷ ᎤᎾᏤᎵᎪᎯ ᏫᎬᎩᏯᏅᎲᎩ; ᎠᎴ ᎠᏂ ᎥᏝ ᎪᎱᏍᏗ ᏯᏆᏛᏁᎸ ᎬᎩᏍᏛᏗᏍᏗ ᏗᏓᏍᏚᏗᏱ ᎦᎬᎩᏴᏙᏗ. ᏄᎬᏫᏳᏒᏃ ᏗᎦᏚᎲᏍᎩ ᎤᏙᎴᎰᏒ ᎦᏛᎬ ᎣᏏᏳ ᎨᏒᎢ, ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎠᏴ ᎾᏍᏉ ᎦᏍᎩᏓᏍᎬᎩ, ᎠᎴ ᎬᏂᏳᏉ ᏦᎢ ᏔᎷᏣ ᎦᏚ ᎤᏂᏁᎬ ᏗᎦᎶᏗ ᏓᏆᏃᏍᏛᎩ; ᎠᎴ ᏔᎷᏣᎩᎯ ᎦᏚᎢᏗᏢ ᎠᏝᎲ ᎦᎸᎩ ᏄᏓᎴᏒ ᏇᎵᏲ ᎤᎵᏍᏓᏴᏗ ᏗᎦᏚᎲᏍᎩ ᏧᏪᏚᏅᎯ; ᏥᏍᏆᏃ ᎠᏂᎴᏍᎬᎩ ᎠᏂᎩᏍᎬᎩ ᏔᎷᏣᎩᎯ ᎾᏍᎩ ᎠᏆᏃᏍᏛᎢ. ᏦᏩᏃ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎦᏛᎲᎢ; ᏦᎢ ᏔᎷᏣ ᏦᎢ ᏧᏒᎯᏛ ᎦᏛᎦ; ᏦᎢᏉ ᎢᏳᏒᎯ ᏇᎵᏲ ᏛᏣᏌᎳᏓᏁᎵ ᎯᏍᎪᎵ ᏓᏣᏍᎫᏕᏏ ᎠᎴ ᏡᎬ ᏓᏣᏛᏂ; ᏥᏍᏆᏃ ᏣᏇᏓᎸ ᏛᏂᎩ. ᏦᎢᏃ ᏫᏄᏒᎸ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎾᎯᏳ ᎢᎦ ᏇᎵᏲ ᎤᏕᏅᎢ ᎨᏎᎢ, ᎾᏍᎩᏃ ᏂᎦᏛ ᏧᏅᏏᏓᏍᏗ ᎬᏩᎵᏍᏓᏴᎾᏁᏗᏱ ᎤᏛᏅᎢᏍᏔᏁᎢ; ᏚᏌᎳᏓᏁᏃ ᏗᏂᏍᎪᎵ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᎦᏚᎲᏍᎩ ᏧᏅᏏᏓᏍᏗ ᎠᏂᎦᏔᎲᎢ. ᏄᎬᏫᏳᏒᏃ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏔᎵᏁ ᎤᏁᎴᎢ; ᎤᎵᏍᏈᏗᏃ ᏇᎵᏲ ᎠᏒᎦᎶᏗᏍᎨᎢ. ᏗᎦᏚᎲᏍᎩᏍᎩᏂ ᏄᎬᏫᏳᏒ ᎤᏛᏁᎢ; ᎾᏍᎩᏯ ᏦᏩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸ ᎦᏛᎬᎢ. ᎠᏎᏃ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᎥᏝ ᏳᏅᏏᏕ ᏦᏩ, ᎤᏩᎨᏫᏎᏉᏍᎩᏂ. ᎠᏯᏙᎸᎢ 41 ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏧᏕᏘᏴᏛ ᎤᎵᏍᏆᏛ, ᎾᏍᎩ ᏇᎵᎰ ᎤᏍᎩᏓᏎᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎡᏉᏄᎶᏗ ᎦᏙᎨᎢ. ᎠᎴ ᎬᏂᏳᏉ ᎡᏉᏂ ᏧᎾᏚᎩᏎ ᎦᎵᏉᎩ ᎢᏯᏅᏗ ᏩᎦ ᎠᏂᎩᏏ, ᏧᏃᏚᎯ ᏗᎧᏃᏗᏱ, ᎠᎴ ᏗᎾᎵᏦᎯᏛ; ᎠᎴ ᎧᏁᏍᎦ ᎤᏰᎬ ᎠᎾᎵᏍᏓᏴᎲᏍᎨᎢ. ᎠᎴ ᎬᏂᏳᏉ ᏅᏩᎾᏓᎴ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏩᎦ ᎠᏂᎩᏏ ᎣᏂ ᏧᎾᏚᎩᏎ ᎡᏉᏂ, ᎤᏂᏁᎩᎸᏗ ᏗᎧᏃᏗᏱ, ᎠᎴ ᏧᎾᎴᏐᏛ; ᎠᎴ ᎠᏂᏐᎢ ᏩᎦ ᎠᏂᏙᎾᎥ ᎾᎥ ᎠᏂᏙᎾᎡ ᎡᏉᎸᎶᏗ. ᎤᏂᏁᎩᎸᏗᏃ ᏗᎧᏃᏗᏱ, ᎠᎴ ᏧᎾᎴᏐᏛ ᏩᎦ ᏚᏂᏯᎣᏁ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏧᏃᏚᎯ ᏗᎧᏃᏗᏱ. ᎠᎴ ᏗᎾᎵᏦᎯᏛ ᏩᎦ. ᏇᎵᏲᏃ ᎤᏰᏤᎢ. ᎠᎴ ᎤᎸᏁᎢ, ᎠᎴ ᏔᎵᏁ ᎤᏍᎩᏓᏎᎢ; ᎠᎴ ᎬᏂᏳᏉ ᏌᏉ ᎤᏰᎬ ᎤᏣᎴᏍᏗ, ᎦᎵᏉᎩ ᏄᏍᎫᏓᏕᎢ, ᏤᏆ ᎠᎴ ᏦᏍᏛ. ᎠᎴ ᎬᏂᏳᏉ ᎣᏂ ᎦᎵᏉᎩ ᏧᏍᏗ ᏚᏍᎫᏓᏕᎢ ᏚᎵᏰᏁᎢ, ᏗᎧᎸᎬ ᏗᎦᏃᎸᏗᏍᎬ ᏧᏲᏍᏔᏅᎯ. ᎦᎵᏉᎩᏃ ᏧᏲ ᏚᏍᎫᏓᏛ ᏚᏒᏁ ᎦᎵᏉᎩ ᏤᏆ ᎠᎴ ᏦᏍᏛ ᏧᎦᏔᏘ ᏚᏍᎫᏓᏛᎢ. ᏇᎵᏲᏃ ᎤᏰᏤᎢ, ᎠᎴ ᎬᏂᏳᏉ, ᎤᏍᎩᏓᏒᎯᏉ ᎨᏎᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏑᎾᎴᎢ, ᎾᏍᎩ ᏧᏓᏅᏛ ᎤᏪᎵᎯᏍᏗᏍᎨᎢ; ᎤᏓᏅᏎᏃ ᎠᎴ ᏫᏚᏯᏅᎮ ᏂᎦᏛ ᎠᎾᏙᏂᏍᎩ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᎠᏂᎦᏔᎾᎢ ᎾᎿ ᎠᏁᎯ; ᏇᎵᏲᏃ ᏚᏃᎮᎴ ᏄᏍᏛ ᎤᏍᎩᏓᏒᎢ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᏱᎨᏎ ᏇᎵᏲ ᎾᏍᎩ ᎦᏛᎬᎢ. ᎿᏉ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᎤᏁᏤᎴ ᏇᎵᏲ, ᎯᎠ ᏄᏪᏎᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᎦᏅᏓᏗ ᎠᎩᏍᎦᏅᏨᎢ. ᏇᎵᏲ ᏚᎾᎸᏤᎸᎩ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᎠᎩᏴᏔᏅᎩ ᏗᏓᏍᏚᏗᏱ ᎾᎿ ᎦᏁᎸ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ, ᎠᏴ, ᎠᎴ ᎾᏍᏉ ᏄᎬᏫᏳᏒ ᏗᎦᏚᎲᏍᎩ. ᎠᎴ ᎢᏧᎳ ᏌᏉ ᏒᏃᏱ ᏙᎩᎾᏍᎩᏓᏒᎩ, ᏧᏓᎴᎾᎢᎭ ᏕᎦᏛᎬ ᏙᎩᎾᏍᎩᏓᏒᎩ. ᎾᎿᏃ ᎣᏥᏯᎥᎩ ᎠᏫᏅ, ᎠᏈᎷ, ᎤᏅᏏᏓᏍᏗ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ, ᎾᏍᎩᏃ ᎣᏍᏗᏃᏁᎸᎩ, ᎠᎴ ᎬᏂᎨᏒ ᏃᎩᏅᏁᎸᎩ ᏄᏍᏛ ᎦᏛᎬ ᏙᎩᎾᏍᎩᏓᏒᎢ; ᎣᏍᏗᏏᏴᏫᎭ ᏄᏍᏛ ᏙᎩᎾᏍᎩᏓᏒ ᎦᏛᎬ ᎡᏂᎨᏒ ᏃᎩᏅᏁᎸᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏃᎩᏅᏁᎸ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏅᎩ; ᎠᏴ, ᏔᎵᏁ ᎥᎠᎩᏁᎸᎩ ᏗᎩᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏃ ᎤᏛᏅᎩ. ᎿᏉᏃ ᏇᎵᏲ ᎤᏓᏅᏎ ᎠᎴ ᏭᏯᏅᎮ ᏦᏩ, ᎠᎴ ᎤᎵᏍᏗᏳ ᏭᏂᏯᎢᏎ ᏗᏓᏍᏚᏗᏱ; ᎤᎵᏍᏙᏰᎮᏃ ᎠᎴ ᏚᏄᏩᎢᏴᏎᎢ, ᎠᎴ ᏇᎵᏲ ᎠᏯᎥ ᏭᏴᎴᎢ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ; ᎠᏆᏍᎩᏓᏒᎩ, ᎥᏝ ᎠᎴ ᎩᎶ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᏱᎩ ᎦᏛᎬᎢ; ᏂᎯᏃ ᎬᏯᏛᎦᏁᎸ ᎰᎵᎬ ᎠᏍᎩᏓᏒᎯ, ᎠᎴ ᎬᏂᎨᏒ ᎢᎨᏨᏁᏗ ᎨᏒ ᏄᏍᏛ ᎦᏛᎬᎢ. ᏦᏩᏃ ᎤᏁᏤᎴ ᏇᎵᏲ, ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᎠᏴ ᏯᎩᎭ ᎾᏍᎩ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏅᏩᏙᎯᏯᏛ ᏓᏳᏬᎯᎵᏴᏍᏓᏁᎵ ᏇᎵᏲ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎦᏍᎩᏓᏍᎬ, ᎬᏂᏳᏉ ᎡᏉᏄᎶᏗ ᏥᏙᎬᎩ. ᎬᏂᏳᏉᏃ ᎡᏉᏂ ᏓᏳᎾᏚᎩᏒ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏩᎦ ᎠᏂᎩᏏ, ᏗᎾᎵᏦᎯᏛ, ᎠᎴ ᎠᏃᏍᏛ ᏗᎧᏃᏗᏱ, ᎧᏁᏍᎦᏃ ᎤᏰᎬ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎩ. ᎠᎴ ᎬᏂᏳᏉ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏅᏩᎾᏓᎴ ᏩᎦ ᎠᏂᎩᏏ ᎣᏂ ᏓᏳᎾᏚᎩᏒᎩ, ᏧᎾᎴᏐᏛ, ᎠᎴ ᎤᏣᏘ ᎤᏂᏲ ᏗᎧᏃᏗᏱ, ᎠᎴ ᎤᏲ ᎤᏂᏇᏓᎵ ᎾᏍᎩ ᎢᏳᏂᏲ ᎥᏝ ᎢᎸᎯᏳ ᏱᏗᏥᎪᎣ ᏂᎬᎾᏛ ᎢᏥᏈᏱ. ᏩᎦᏃ ᏧᎾᎴᏐᏛ ᎠᎴ ᎤᏂᏲ ᏗᎧᏃᏗᏱ ᏚᏂᏯᎣᏅᎩ ᎢᎬᏱ [ᎤᎾᏚᎩᏛ] ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᎾᎵᏦᎯᏛ ᏩᎦ ᎠᏂᎩᏏ. ᏚᏂᏯᎣᏅᏃ ᎥᏝ ᎬᏙᎴᎰᎯᏍᏗ ᏱᎨᏎ ᏚᏂᏯᎥᎢ; ᎠᏏᏉᏍᎩᏂ ᎤᏂᏲ ᎨᏒᎩ ᏗᎧᏃᏗᏱ, ᎾᏍᎩᏯ ᏄᎾᏍᏛ ᎢᎬᏱᏱ. ᎿᏉᏃ ᎠᎩᏰᏨᎩ. ᎠᎴ ᎦᏍᎩᏓᏍᎬ ᎠᎩᎪᎲᎩ, ᎠᎴ ᎬᏂᏳᏉ ᏌᏉ ᎤᏰᎬ ᎤᏣᎴᏍᏗ ᎦᎵᏉᎩ ᏚᏍᎫᏓᏔᏅᎩ, ᎠᎧᎵᎢ ᏧᎦᏔᏘ, ᎠᎴ ᏦᏍᏛ. ᎠᎴ ᎬᏂᏳᏉ ᎦᎵᏉᎩ ᏚᏍᎫᏓᏛ ᏧᎾᏍᎬᏨᎯ, [ᎠᎴ] ᏧᏍᏗᎦ, ᏗᎧᎸᎬ ᏗᎦᏃᎸᏗᏍᎬ ᏧᏲᏍᏔᏅᎯ, ᎣᏂ ᏚᎵᏰᏅᎩ. ᏧᏍᏗᏃ ᏚᏍᎫᏓᏛᎢ, ᏚᏒᏅᎩ ᎦᎵᏉᎩ ᎬᏍᏛ ᏚᏍᎫᏓᏛᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏗᎾᏙᏂᏍᎩ ᎥᎦᏥᏃᏁᎸᎩ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᎬᏂᎨᏒ ᎢᎬᏋᏁᏗ ᏱᎨᏎᎢ. ᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ, ᏣᏍᎩᏓᏒ ᏌᏉᏉ ᏂᎦᎵᏍᏗᎭ. ᎤᏁᎳᏅᎯ ᎤᎾᏄᎪᏫᏎᎸ ᏇᎵᏲ ᎾᏍᎩ ᏅᏗᏛᏁᎵᏒᎢ. ᎦᎵᏉᎩ ᎠᏃᏍᏛ ᏩᎦ ᎠᏂᎩᏏ, ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ [ᎦᏛᎦ,] ᎠᎴ ᎦᎵᏉᎩ ᏦᏍᏛ ᏚᏍᎫᏓᏛ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ [ᎦᏛᎦ;] ᏣᏍᎩᏓᏒ ᏌᏉᏉ [ᏂᎦᎵᏍᏗᎭ.] ᎦᎵᏉᎩᏃ ᏩᎦ ᎠᏂᎩᏏ ᏧᎾᎴᏐᏛ ᎠᎴ ᏄᏂᏲ ᏗᎧᏃᏗᏱ ᎣᏂ ᏨᏧᎾᏚᎩᏎᎢ, ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ [ᎦᏛᎦ;] ᎦᎵᏉᎩᏃ ᏧᏏᏩ ᏚᏍᎫᏓᏛ ᎾᏍᎩ ᏗᎧᎸᎬ ᏗᎦᏃᎸᏗᏍᎬ ᏧᏲᏍᏔᏅᎯ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᏧᎪᏄᎶᎯᏍᏗᏱ [ᎦᏛᎦ.] ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏇᎵᏲ ᏥᏥᏃᎲᏏ; ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏗᏛᏁᎵᏒ ᎦᎾᏄᎪᏫᏎ ᏇᎵᏲ. ᎬᏂᏳᏉ ᎦᎵᏉᎩ ᏅᏛᏕᏘᏴᎯ ᎤᏧᏈᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏛᏛᏏ ᏂᎬᎾᏛ ᎢᏥᏈᏱ. ᎣᏂᏃ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᏙᏛᎪᏄᎶᏏ, ᎠᎴ ᏂᎦᏛ ᎤᏧᏈᏍᏗ ᎤᎾᏛᎯᏎᎸ ᏓᏳᏅᎨᏫᏏ ᏂᎬᎾᏛ ᎢᏥᏈᏱ; ᏓᎪᏄᎸᏃ ᏛᏒᏂ ᎦᏙᎯ. ᎠᎴ ᎤᏧᏈᏍᏗ ᎠᎵᏍᏓᏴᏗ ᎥᏝ ᏯᎾᏅᏓᏗᏍᎨᏍᏗ ᎠᏂ ᎦᏓ ᎠᎲᎢ ᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏚᎪᏄᎶᏒ ᎤᎨᎲᏔᏅᏒᎢ; ᎤᏣᏘᏰᏃ ᎠᎩᎵᏯ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏎᏏ. ᎾᏃ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏍᎩᏓᏒ ᏥᎩ ᏇᎵᏲ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏍᏓᏱᏛᎯ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏞᎩᏳ ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏒᎢ. ᎿᏉᏃ ᏇᎵᏲ ᏭᏲᎦ ᎠᏏᎾᏌᏂ ᎠᎴ ᎠᎦᏔᎾᎢ ᎠᏍᎦᏯ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏫᏂᎬᎦ ᏂᎬᎾᏛ ᎢᏥᏈᏱ. ᏇᎵᏲ ᎾᏍᎩ ᎯᎠ ᏫᎾᏛᎦ, ᎠᎴ ᎾᏍᎩ ᏫᏗᎧᏁᏥ ᏂᎬᎾᏛ ᎠᏂ ᎠᎾᎦᏌᏯᏍᏗᏍᎩ, ᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᏧᏈᏯ ᎤᏛᎯᏍᏗ ᏥᎩ ᎾᏍᎩ ᎯᏍᎩᏁ ᎪᏣᎴᏛ ᎦᏙᎯ ᎤᏛᏒᎯ ᎢᏥᏈᏱ ᎤᎾᎫᏴᏗ ᏫᏂᎬᎦ. ᎠᎴ ᎾᏍᎩ ᎠᏂᏟᏍᎨᏍᏗ ᏂᎦᏛ ᎠᎵᏍᏓᏴᏗ ᎾᎯᏳ ᎣᏍᏛ ᏚᏕᏘᏴᏌᏗᏒᎢ, ᎠᎴ ᎤᎶᎴᏍᏗ ᎠᏂᏟᏏᏍᎨᏍᏗ ᏇᎵᏲ ᎤᏁᏨᎯ, ᏕᎦᏚᎲᏃ ᎠᏂᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᎠᎵᏍᏓᏴᏗ. ᎾᏍᎩᏃ ᎠᎵᏍᏓᏴᏗ ᎠᏂᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᏂᎬᎾᏛ ᎤᎾᎵᏍᏓᏴᏙᏗ ᎾᎯᏳ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎢᏥᏈᏱ ᏥᏙᏛᎪᏄᎶᏏ; ᎾᏍᎩᏃ ᏞᏍᏗ ᏓᎪᏄᎸᏉ ᎤᎾᏗᏒᎲᏍᏔᏅᎩ ᎠᏂ ᎦᏓ ᎠᎲᎢ. ᏇᎵᏲᏃ ᏐᏏᏳ ᎤᏰᎸᏁ ᎾᏍᎩ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏄᏅᏏᏓᏍᏗ. ᏇᎵᏲᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ, ᏥᎪ ᎯᎠ ᎾᏍᎩ ᎢᏳᏍᏗ ᏰᏗᏩᏛ, ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᏯᎢ? ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏥᏣᎾᏄᎪᏫᏎᎸ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎥᏝ ᎩᎶ ᏂᎯ ᏥᏂᏏᎾᏌᎾ ᎢᏯᏏᎾᏌᏂ ᏱᎩ, ᎠᎴ ᏥᏂᎦᏔᎾᎠ ᎢᏯᎦᏔᎾᎢ ᏱᎩ. ᏥᏁᎸ ᏣᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ, ᎠᎴ ᏂᎯ ᎯᏁᎬ ᏚᎾᏁᎶᏕᏍᏗ ᏂᎦᏛ ᏕᎢᏆᏤᎵ ᏴᏫ; ᎦᏍᎩᎸᏉ ᎠᏉᎸ ᎤᎬᏫᏳᎯ ᎤᏪᏗᏱ ᎤᏩᏒ ᎤᏟ ᏅᎩᎸᏉᏕᏍᏗ ᎠᏴ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎬᏂᏳᏉ ᏂᎬᎾᏛ ᎢᏥᏈᏱ ᏣᎬᏫᏳᏌᏕᎩ ᏂᎬᏴᎦ. ᏇᎵᏲᏃ ᎤᎵᏰᏑᏍᏙᎩᏎᎢ, ᎠᎴ ᏦᏩ ᎤᎵᏰᏑᏍᏙᏁᎢ, ᎠᎴ ᎤᏥᎸ ᏧᏏᏙᎵ ᏗᏄᏬ ᏚᏄᏬᎡᎢ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᏧᏓᏕᏒᏛ ᎤᏪᏯᏢᏁᎢ; ᎠᎴ ᏔᎵᏁᏉ ᎤᎲ ᏓᏆᎴᎷ ᎤᏦᏗᏱ ᏄᏩᏁᎴᎢ; ᎢᎬᏱᏗᏢᏃ ᎠᎢᏒ ᎤᏁᎷᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏗᏣᎵᏂᏆᏅᎥᎦ; ᎤᎬᏫᏳᏌᏕᎩᏃ ᏄᏩᏁᎴ ᏂᎬᎾᏛ ᎢᏥᏈᏱ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᏇᎵᏲ ᎠᏴ, ᎠᎴ ᏂᎯ ᏂᏣᏁᏨᎾ ᎥᏝ ᎩᎶ ᎤᏌᎳᏙᏗ ᏱᎨᏎᏍᏗ ᎤᏬᏰᏂ ᎠᎴ ᎤᎳᏏᏕᏂ ᏂᎬᎾᏛ ᎢᏥᏈᏱ. ᏇᎵᏲᏃ ᏣᏆᏇᏂᎠ ᏚᏬᎡ ᏦᏩ; ᎠᎴ ᏉᏘᏈᎳ ᎣᎾ ᏚᏙᎥ ᎠᏥᎸ-ᏗᎨᎴᎯ ᎤᏪᏥ, ᎠᏏᎾ [ᏧᏙᎢᏛ,] ᎤᏪᎧᏁᎴ ᎤᏓᏴᏍᏗ; ᏦᏩᏃ ᏂᎬᎾᏛ ᎢᏥᏈᏱ ᎤᏪᏙᎴᎢ. ᏦᏩᏃ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎾᎯᏳ ᏇᎵᏲ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲ ᏧᎴᏁᎢ; ᎤᏄᎪᏤᏃ ᏦᏩ ᏇᎵᏲ ᎠᎦᏔᎲᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎢᏥᏈᏱ ᎤᏪᏙᎴᎢ. ᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᎤᏣᏔᏅᎯ ᏧᏛᏒᏁ ᎤᏧᏈᏍᏙᏒᎯ ᎤᎾᏄᎪᏫᏏ ᎦᏙᎯ. ᏂᎦᏛᏃ ᎠᎵᏍᏓᏴᏗ ᎤᏪᏟᏌᏁ ᎾᎯᏳ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᏧᏛᏒᏁ ᎢᏥᏈᏱ, ᎠᎴ ᏕᎦᏚᏩᏗᏒ ᎤᏍᏆᏂᎪᏔᏁ ᎠᎵᏍᏓᏴᏗ; ᎠᎵᏍᏓᏴᏗ ᏠᎨᏏ ᎤᏛᏒᎯ, ᎾᏍᎩ ᏕᎦᏚᏩᏗᏒ ᎬᏩᏚᏫᏛ [ᏕᎦᎶᎨᏒ ᎤᏛᏎᎯ,] ᎾᎿᏉ ᎦᏚᎲ ᎤᏍᏆᏂᎪᏔᏁᎢ. ᏦᏩᏃ ᎤᏣᎴᏍᏗ ᎤᏪᏟᏌᏁ ᏃᏳ ᎠᎺᏉᎯ ᏥᎦᎳᎨᏲ ᎾᏍᎩᏯᎢ, ᎤᏧᏈᏍᏙᏒᎯ, ᏫᎬᏩᏑᎵᎪᏤ ᎠᏎᎯᎲᎢ; ᎥᏝᏰᏃ ᎬᏎᎰᎲᏍᏗ ᏱᎨᏎᎢ. ᏦᏩᏃ ᎠᏂᏔᎵ ᎠᏂᏧᏣ ᎬᏩᏕᏁᎴ ᎠᏏᏉ ᏂᏓᎪᏄᎶᏍᎬᎾ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏏᎾ, ᏥᏚᎾᎤᎪᏫᏎᎴᎢ, ᏉᏗᏈᎳ ᎣᎾ ᏚᏙᎥ ᎠᏥᎸ-ᏗᎨᎴᎯ ᎤᏪᏥ. ᏦᏩᏃ ᎢᎬᏱ ᎤᏕᏁᎸᎯ ᎹᎾᏌ ᏚᏬᎡᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎠᏋᎨᏫᏍᏗᏱ ᎾᏋᏂᏏ ᏂᎦᏛ ᏓᏆᏣᏪᎢᏍᏔᏅᎢ, ᎠᎴ ᏂᎦᏛ ᎡᏙᏓ ᏚᏓᏘᎾᎥᎢ, [ᎤᏛᏁᎢ.] ᏔᎵᏁᏃ ᎯᎠ ᎢᏆᎻ ᏚᏬᎡᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎠᎩᏁᏉᏣᏘ ᎾᏋᏁᎸ ᎠᏂ ᎦᏓ ᎠᎲ ᎠᎩᎩᎵᏲᏥᏙᎸᎢ [ᎤᏛᏁᎢ.] ᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᎤᏧᏈᏍᏗ ᏧᏛᏒᏁ ᎢᏥᏈᏱ ᎦᏙᎯ ᎿᏉ ᏚᎵᏍᏆᏕᎢ. ᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᏧᎪᏄᎶᎯᏍᏗᏱ ᎤᎵᏱᎶᎴᎢ, ᎾᏍᎩᏯ ᏦᏩ ᏄᏪᏒᎢ; ᎠᎴ ᏂᎦᏛ ᎦᏙᎯ ᏓᏁᏩᏗᏒ ᏚᎪᏄᎶᏎᎢ; ᎢᏥᏈᏍᎩᏂ ᏂᎬᎾᏛ ᎦᏓ ᎠᎲᎢ ᎠᎵᏍᏓᏴᏗ ᎠᎮᎢ. ᎿᏉᏃ ᏂᎬᎾᏛ ᎦᏓ ᎠᎲ ᎢᏥᏈᏱ ᏚᏂᏲᏏᏌᏅ, ᏇᎵᏲ ᎬᏩᏔᏲᏎᎴ ᎠᎵᏍᏓᏴᏗ; ᏇᎵᏲᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ, ᏦᏬᎢᏤᎾ; ᎾᏍᎩᏃ ᏂᏥᏪᏎᎲ ᏂᏣᏛᏁᎮᏍᏗ. ᎾᎿᏃ ᎦᏓ ᎠᎲ ᏂᎬᎾᏛ ᏚᎪᏄᎶᏎᎢ; ᏦᏩᏃ ᏂᎦᏛ ᎤᏣᎴᏍᏗ ᎠᎲ ᏓᏓᏁᎸ ᏚᏍᏚᎢᏎᎢ, ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᏚᏃᏓᏁᎴᎢ; ᎠᎴ ᏓᎪᏄᎸ ᎤᏣᏘ ᎤᏁᏉᏤ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲᎢ. ᏂᎦᏛᏃ ᏴᏫ ᏓᏁᏩᏗᏒ ᎢᏥᏈᏱ ᎠᏂᎷᎨ ᏦᏩ ᎬᏩᏩᏎᎵᎯᎮᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᏓᏁᏩᏗᏒ [ᏴᏫ] ᎤᏣᏘ ᏓᎪᏄᎴᎢ. ᎠᏯᏙᎸᎢ 42 ᏤᎦᏈᏃ ᎤᏙᎴᎰᏒ ᎢᏥᏈᏱ ᏗᎲ ᎢᏣᎴᏍᏗ, ᏤᎦᏈ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏪᏥ, ᎦᏙᏃ ᏙᏣᏓᎧᏂᎭᏉ? ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎦᏛᎬᎦ, ᎢᏥᏈᏱ ᏗᎲ ᎤᏣᎴᏍᏗ; ᎾᎿ ᏫᏥᎶᎯ, ᎠᎴ ᏫᏍᎩᏩᎯᏏ ᎾᎿᏂ; ᎾᏍᎩᏃ ᎢᏕᎮᏍᏗ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏗᏲᎱᎯ. ᏦᏩᏃ ᎠᎾᎵᏅᏟ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎤᏣᎴᏍᏗ ᎤᏂᏩᏒᏎ ᎢᏥᏈᏱ. ᏇᏂᏍᎩᏂ, ᏦᏩ ᎤᏅᏟ, ᏤᎦᏈ ᎥᏝ ᏳᏅᏎ ᎠᎾᎵᏅᏟ ᏳᏁᏅᏎᎢ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏱᏅᏎᎦᎩᏰᏃ ᎤᏲ ᏱᏄᎵᏍᏓᏏ. ᎢᏏᎵᏃ ᏧᏪᏥ ᏓᏂᎷᎬ ᎤᏁᎳᏙᎴ ᎤᏣᎴᏍᏗ ᎤᏂᏩᏏᎴᎢ; ᎨᎾᏂᏰᏃ ᏓᎪᏄᎴᎢ. ᏦᏩᏃ ᎤᎬᏫᏳᏌᏕᎩ ᎨᏎ ᎾᎿᏂ, ᎠᎴ ᎾᏍᎩ ᏗᎦᏃᏓᏁᎯ ᎨᏎ ᏂᎦᏛ ᎾᎿ ᎠᏁᎯ; ᏦᏩᏃ ᎠᎾᎵᏅᏟ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎴ ᎦᏙᎯ ᎢᏴᏛ ᏚᎾᎵᏯᏍᏚᏁᎢ. ᏦᏩᏃ ᏚᎪᎮ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏚᏬᎵᏤᎢ, ᎠᏎᏃ ᏚᎵᎪᏁᎶᎯᏍᏓᏁᎴᎢ, ᎠᎴ ᎬᏍᎦᎢᏍᏓᎩ ᏚᏬᏁᏔᏁᎢ; ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎭᏢ ᏓᏣᏓᎴᎲᎦ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎨᎾᏂ ᏓᏲᏥᎶᎯ, ᎠᎵᏍᏓᏴᏗ ᎣᎩᏩᏏᎦ. ᎠᎴ ᏦᏩ ᏕᎪᎵᎨ ᎠᎾᎵᏅᏟ, ᎤᏩᏒᏍᎩᏂ ᎥᏝ ᏱᎬᏬᎵᎨᎢ. ᏦᏩᏃ ᎤᏅᏓᏕ ᎤᏍᎩᏓᏒᎢ, ᎾᏍᎩ ᎤᏂᏛᎬ ᏧᏍᎩᏓᏎᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏥᎦᏛᏂᏙᎯᏉ, ᎤᏲᏉ ᏃᎦᏛᏅ ᎠᏂ ᎢᏥᎦᏛᏂᎸ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎥᏝ, ᏣᎬᏫᏳᎯ, ᎠᎵᏍᏓᏴᏗᏉᏍᎩᏂ ᎤᏂᏩᏏᎸ ᏘᏅᏏᏗ. ᎠᏯᏍᎩᏂ ᏂᎦᏛ ᏌᏉ ᎠᏍᎦᏯ ᏧᏪᏥ, ᏚᏳᎪᏛ ᎢᏲᏣᏛᏁᎯ ᎠᏴ, ᏘᏅᏏᏓᏍᏗ ᎥᏝ ᎤᏂᎦᏛᏂᏙᎯᏉ ᏱᎩ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ, ᎤᏲᏉᏍᎩᏂ ᏃᎦᏛᏅ ᎠᏂ ᎢᏥᎦᏛᏂᎸ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏘᏅᏏᏓᏍᏗᏍᎩᏂ ᏔᎳᏚ ᎾᏂᎥ ᎠᎾᎵᏅᏟ, ᏌᏉ ᎠᏍᎦᏯ ᏧᏪᏥ ᎨᎾᏂ ᎡᎯ; ᎠᎴ ᎬᏂᏳᏉ ᎣᏂ ᎡᎯ ᎪᎯ ᎨᏒ ᎣᎩᏙᏙᏱ ᏤᏙᎭ, ᏌᏉᏃ ᏁᎲᎾ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᎩᏍᎩᏂ ᏥᏨᏁᎢᏍᏓᏁᎲᎩ, ᎢᏥᎦᏛᏂᏙᎯᏉ ᏥᏨᏲᏎᎲᎩ. ᎯᎠ ᎾᏍᎩ ᏓᏨᏯᏙᎴᎣᎯᏍᏓᏁᎵ; ᏇᎵᏲ ᎡᎲ [ᏥᏁᎢᏍᏗᎭ,] ᎾᏍᎩ ᎥᏝ ᎠᏂ ᏴᏓᏥᏄᎪᏥ ᎬᏂ ᎣᏂ ᎡᎯ ᎢᏥᏅᏟ ᎠᏂ ᎦᎷᏨᎭ. ᎠᏏᏴᏫ, ᏂᏣᏛᏅ ᎡᏥᏅᎵ ᎠᎴ ᏩᏘᏃᎦ ᎢᏥᏅᏟ, ᏂᎯᏃ ᎢᏥᏴᎩ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎢᏥᏁᎬ ᎡᏥᎪᎵᏰᏗᏱ, ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏥᏁᎬᎢ, [ᎠᎴ ᏚᏳᎪᏛ ᏂᏥᏁᎬᎾ ᎨᏒᎢ.] ᎢᏳᏃ ᎾᏍᎩ ᏄᏍᏛᎾ ᎢᎨᏎᏍᏗ, ᏇᎵᏲ ᎡᎲ [ᏥᏁᎢᏍᏗᎭ] ᎤᏙᎯᏳᎯᏯ ᎢᏥᎦᏛᏂᏙᎯᏉ. ᎠᎴ ᏂᎦᏛ ᏚᏍᏚᏁ ᏦᎢ ᏧᏒᎯᏛ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏦᎢᏁ ᎢᎦ, ᎯᎠ ᏂᏣᏛᎦ ᎠᎴ ᏚᏨᏁᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᏥᎾᏰᏍᎩ ᎠᏴ. ᎢᏳᏃ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᎨᏎᏍᏗ, ᎠᏏᏴᏫ ᎢᏣᎵᏅᏟ ᎠᎦᎸᎡᏍᏗ ᎠᏓᏁᎸ ᏕᏥᏍᏚᏅᎢ; ᏂᎯᏃ ᎢᏤᎾ ᎤᏣᎴᏍᏗ ᏗᏥᏴᏏ ᏕᏣᏓᏘᎾᎥ ᏚᎾᎪᏄᎸᎢ; ᎣᏂᏃ ᎢᎡᎯ ᎢᏣᎵᏅᏟ ᏍᎩᏯᏘᏃᎮᎸᎭ; ᎰᏩᏃ ᎢᏥᏁᏨ ᎠᏙᎯᏳᏅᎭ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏥᏲᎱᎯ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎴᎢ. ᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎢᎩᏍᎦᏅᏨ ᎢᎩᏅᏟ ᎾᏍᎩ ᏥᏁᏛᏁᎸᎩ, ᎾᏍᎩ ᏥᎩᎪᎲᎩ ᎡᎯᏍᏗ ᎤᏓᏅᏛᎢ, ᎾᎯᏳ ᏥᎩᏍᏗᏰᏛᎩ, ᎠᎴ ᏁᏓᏛᏓᏍᏓᏁᎲᎾ ᏥᎨᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎤᏕᏯᏙᏗ ᏂᎦᎵᏍᏓᏁᎭ. ᎷᏈᏂᏃ ᏚᏁᏤᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᏱᏨᏁᏤᎴ, ᎯᎠ ᏱᏂᏨᏪᏎᎴᎢ, ᏞᏍᏗ ᎢᏥᏍᎦᏅᏤᎸᎩ ᎠᏫᏄᏣ; ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏯᏛᏓᏍᏓᏁᎴᎢ? ᎾᏍᎩ ᎢᏳᏍᏗ, ᎬᏂᏳᏉ ᎾᏍᎩ ᎤᎩᎬ ᏕᎩᎬᏩᎶᏓᏁᎭ. ᎥᏝᏃ ᏯᏂᎦᏔᎮ ᏦᏩ ᎪᎵᎬ ᎠᏂᏬᏂᏍᎬᎢ, ᏕᎦᏬᏁᏗᏍᎬᏰᏃ ᎠᎦᏁᏢᏓᏁᎮᎢ. ᏦᏩᏃ ᎤᎦᏔᎲᏎ ᎠᏂᏙᎾᎥ ᎠᎴ ᏚᏠᏱᎴᎢ; ᏔᎵᏁᏃ ᏚᎷᏤᎴᎢ, ᎠᎴ ᏚᎵᏃᎮᏔᏁᎢ; ᎠᎴ ᏏᎻᏯᏂ ᏚᏯᏅᎡᎴᎢ, ᎠᎴ ᏓᏂᎧᏅ ᎤᎸᎴᎢ. ᎿᏉᏃ ᏦᏩ ᎤᏁᏤ ᏕᎦᎶᏗ ᏧᏂᎧᎵᎢᏍᏔᏁᏗᏱ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᎠᏕᎸ ᏓᏂᏰᎲ ᏕᎦᎶᏗᎯ ᏔᎵᏁ ᏗᎨᏥᎳᏁᏗᏱ, ᎠᎴ ᎠᎾᎢᏒ ᎤᎾᎵᏍᏓᏴᏗ ᎨᏥᏁᏗᏱ; ᎠᎴ ᎾᏍᎩ ᏂᏚᏛᏁᎴᎢ. ᏐᏈᎵᏃ ᏗᏂᎵᎠᏅᎯᏛ ᏚᏂᏐᏈᎳᏁ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎾᎿ ᎤᎾᏂᎩᏎᎢ. ᎠᏏᏴᏫᏃ ᎠᎱᏃᏱᏍᎬ ᏕᎦᎶᏗ ᏧᏂᏒᏍᏗᏱ ᏗᎦᎵᎠᏅᎯᏛ ᏗᎨᎶᎵᏎᎢ, ᏚᎪᎮ ᏧᏤᎵ ᎠᏕᎸ; ᎬᏂᏳᏉᏰᏃ ᏕᎦᎶᏗᎯ ᎠᎱᏃᎲᏉ ᏕᎦᎴᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᏕᎸ ᏗᏆᏤᎵ ᏙᎥᎩᏁᎸᏉ; ᎠᎴ ᎬᏂᏳᏉ ᎠᏂ ᏕᎦᎶᏗᎯ ᏕᎦᎳ; ᏧᏂᎾᏫᏃ ᎡᏍᎦ ᏂᏚᎾᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᎤᏂᏍᎦᎴᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᏙ ᎾᏍᎩ ᎯᎠ ᎤᏁᎳᏅᎯ ᎢᎬᎦ. ᏤᎦᏈᏃ ᎤᏂᏙᏓ ᏭᏂᎷᏤᎴ ᎦᏓ ᎠᎲᎢ, ᎠᎴ ᎤᏂᏃᏁᎴ ᏂᎦᎥ ᏄᎾᎵᏍᏓᏁᎵᏙᎸᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎠᏍᎦᏯ, ᎾᎿ ᏄᎬᏫᏳᏒᎢ, ᎬᏍᎦᎢᏍᏓᎩ ᎣᎩᏬᏁᏔᏅᎩ, ᎠᎴ ᎾᎿ ᎦᏓ ᎠᎲ ᎣᎩᎦᏛᏂᏙᎯᏉ ᎣᎨᎵᏎᎲᎩ. ᎯᎠᏃ ᏃᏥᏪᏎᎸᎩ, ᏚᏳᎪᏛ ᎢᏲᏣᏛᏁᎯ ᎠᏴ; ᎥᏝ ᎣᎩᎦᏛᏂᏙᎯᏉ ᏱᎩ; ᏔᎳᏚ ᏃᏥᎥ ᎣᏣᎵᏅᏟ, ᏌᏉᏉ ᎣᎩᏙᏓ; ᎠᏏᏴᏫ ᏁᎲᎾ, ᎣᏂᏃ ᎡᎯ ᎪᎯ ᎨᏒ ᎣᎩᏙᏙᏱ ᏤᏙᎭ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ. ᎠᎴ ᎠᏍᎦᏯ ᎾᎿ ᏄᎬᏫᏳᏒ, ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᏓᎦᏙᎴᎣᎯᏍᏔᏂ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᎨᏒᎢ. ᎠᏏᏴᏫ ᎢᏣᎵᏅᏟ ᎨᏒ ᏍᎩᏯᎠᎯᏯᏏ, ᎠᎴ ᏕᎶᏓᏘᎾᎥ ᎤᎾᎪᏄᎸ ᎤᎾᎵᏍᏓᏴᏗ ᏗᏥᏴᏏ, ᎠᎴ ᎢᏣᏂᎩ. ᎣᏂᏃ ᎡᎯ ᎢᏥᏅᏟ ᏍᎩᏯᏘᏃᎮᎸᎭ; ᎿᏉᏃ ᏓᎦᏙᎴᎣᏏ ᎢᏥᎦᏛᏂᏙᎯᏉ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᎨᏒᎢ; ᎢᏣᎵᏅᏟᏃ ᏕᏨᏲᎯᏎᎸᎭ, ᎠᎴ ᎠᏂ ᎢᏥᏃᏔᏂᏙᎸᎭ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᏕᎦᎶᏗᎯ ᎤᏂᎴᏒ ᎤᏣᎴᏍᏗ, ᎬᏂᏳᏉ ᎠᏂᏏᏴᏫᎭ ᏧᎾᏤᎵ ᎠᏕᎸ ᏗᎦᏇᏅᎯ ᏕᎦᎶᏗᎯ ᏙᎦᎴᎢ; ᎤᏅᏒᏃ ᎠᎴ ᎤᏂᏙᏓ ᎠᏕᎸ ᏗᎦᏇᏅᎯ ᏚᏂᎪᎲ, ᎤᏂᏍᎦᎴᎢ. ᏤᎦᏈᏃ ᎤᏂᏙᏓ ᎯᎠ ᏄᏂᏪᏎᎴᎢ, ᎠᏴ ᏗᏇᏥ ᏕᏍᎩᏯᏅᎡᎸ; ᏦᏩ ᏁᎲᎾ, ᎠᎴ ᏏᎻᏯᏂ ᏁᎲᎾ, ᎠᎴ ᏇᏂ ᏛᎡᏣᏘᎾᏫᏛᎯ; ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎠᏆᏡᏗᏍᎩ. ᎷᏈᏂᏃ ᎤᏁᏤᎴ ᎤᏙᏓ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏧᎳ ᏗᏇᏥ ᎠᏂᏧᏣ ᏕᎯᎸᎭ, ᎢᏳᏃ ᏂᎬᏯᏘᏃᎮᎸᎾ ᎢᎨᏎᏍᏗ; ᎠᏴ ᏗᏍᎩᏲᎯᏏ, ᎠᏴᏃ ᏔᎵᏁ ᏛᎬᏯᏘᏃᎮᎵ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎨᏤᎾ ᎠᏇᏥ, ᏄᏂᎵᏰᏃ ᎤᏲᎱᏒ, ᎯᎠᏃ ᎤᏩᏒ ᎤᏕᎯᏴ; ᎢᏳᏃ ᎤᏲ ᏱᏄᎵᏍᏓᏁᎸ ᎢᏣᎢᏒᎢ, ᎿᏉ ᎤᏁᎬ ᏗᎩᏍᏗᏰᎩ ᏧᏂᏲᎱᏒᎯ ᏩᏁᎲ ᏮᏓᏍᎩᏯᏘᏃᎵ ᎤᏲ ᎬᏆᏓᏅᏘ. ᎠᏯᏙᎸᎢ 43 ᎠᎴ ᎤᏣᏘ ᏗᎪᏄᎵᏳ ᎨᏎ ᎾᎿᏂ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎤᏂᏒᏅ ᎤᏣᎴᏍᏗ ᎢᏥᏈᏱ ᏭᏂᎩᏛ, ᎤᏂᏙᏓ ᎯᎠ ᏄᏂᏪᏎᎴᎢ, ᏔᎵᏁ ᏥᏤᎾ, ᎤᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏫᏍᎩᏩᎯᏏ. ᏧᏓᏃ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏍᏓᏱᏳ ᎣᎩᏁᏤᎸ, ᎯᎠ ᏄᏪᏒᎩ, ᎥᏝ ᏴᎨᏥᎪᏩᏛ ᎠᏆᎧᏛ ᎢᏳᏃ ᎢᏥᏅᏟ ᏂᏤᎲᎾ ᎢᎨᏎᏍᏗ. ᎢᏳᏃ ᏱᏅᏒ ᎣᎩᏅᏟ ᎣᎨᏅᏍᏗᏱ, ᏲᏤᎾ ᏱᏫᏨᏩᎯᏏ ᎠᎵᏍᏓᏴᏗ. ᎢᏳᏍᎩᏂ ᏂᏅᏒᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏴᎦᏲᏤᎾ; ᎾᏍᎩᏰᏃ ᎠᏍᎦᏯ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎥᏝ ᏴᎨᏥᎪᏩᏛ ᎠᏆᎧᏛ ᎢᏳᏃ ᎢᏥᏅᏟ ᏂᏤᎲᎾᎢ ᎨᏎᏍᏗ. ᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᏂᎤᏲᏞ ᏂᏍᎩᏴᏁᎴᎢ, ᎾᏍᎩ ᏤᏥᏃᏁᎮ ᎠᏍᎦᏯ ᎠᏏ ᎡᎲ ᎢᏥᏅᏟ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎾᏍᎩᏰᏃ ᎠᏍᎦᏯ ᎤᎵᏂᎩᏛ ᎣᎦᏛᏛᏅᎩ ᏄᏍᏛ ᎣᏤᎲᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏦᎬᏅ ᎠᏁᎲᎢ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎢᏥᏙᏓᏍᎪ ᎠᏏ ᎡᎯ? ᎢᏥᏅᏟᏍᎪ ᎡᎭ? ᎾᏍᎩᏯᏃ ᏥᏃᏥᏫ ᏃᏥᏪᏎᎸᎩ; ᏥᎪᏃ ᎦᏲᎦᏙᎴᎰᎯᏍᏗ ᎨᏎ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᏪᏏᏒᎢ, ᎢᏥᏅᏟ ᏤᏣᏘᏁᏒᎭ? ᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ ᎢᏏᎵ, ᎯᏅᎵ ᎠᏫᏄᏣ ᎠᏴ ᏬᏍᏕᎾ, ᏙᏓᏲᏣᎴᏂᏃ ᎠᎴ ᏓᏲᏤᏏ; ᎾᏍᎩᏃ ᏕᏛᏁᏍᏗ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏗᏲᏞᎯ, ᎠᏴ ᎠᎴ ᏂᎯ, ᎠᎴ ᎾᏍᏉ ᏧᎾᏍᏗ ᏗᎦᏤᎵᎦ. ᎠᏴ ᏔᎵ ᏓᏥᏯᏛᏓᏁᎵ; ᎠᏴ ᏗᏍᏆᎧᏂᏐᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏂᎬᏯᏘᏃᎮᎸᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᎢᎬᏱᏗᏢ ᏂᎬᏯᎧᏁᎵᎸᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎠᏴ ᎬᏍᎦᏅᏤᎸᎯ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ. ᎢᏳᏰᏃ ᏃᎦᏙᎯᏛᎾ ᏱᎨᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎦᏳᎳ ᏔᎵᏁ ᏱᎣᎩᎷᏦᏁᎢ. ᎤᏂᏙᏓᏃ ᎢᏏᎵ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ ᎿᏉ ᎯᎠ ᏂᏣᏛᎦ; ᎢᏥᎩ ᎣᏌᏂ ᎤᏓᏔᏅᎯ ᎡᏍᎦᏂ ᏗᏣᎵᏁᏌᎶᏗ ᏗᏥᎶᏓ, ᎠᎴ ᎡᏥᏴᏏ ᎠᏍᎦᏯ ᎡᏥᏁᏗ, ᎤᏍᏗ ᏅᏬᏘ ᎠᏜ, ᎠᎴ ᎤᏍᏗ ᏩᏚᎵᏏ, ᎠᎴ ᏗᎦᏩᏒᎩ, ᎠᎴ ᎻᎳ, ᎠᎴ ᎤᏅᏙᎩ ᎠᎾᏓᏛᏍᎩ, ᎠᎴ ᎠᎹᏂ. ᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎢᎦᎢ ᎠᏕᎸ ᏥᏙᏥᏳᎦ; ᎠᎴ ᎠᏕᎸ ᏕᎦᎶᏗᎯ ᏓᎱᏃᎲ ᏥᏕᎦᎸ ᏥᏕᏥᏲᎸᎩ, ᏔᎵᏁ ᏥᏙᏥᏳᎦ; ᎤᏂᎵᏓᏍᏔᏅᎯᏉ ᏱᏂᎦᎩ. ᎢᏥᏅᏟ ᎾᏍᏉ ᎡᎶᏘᏄᎦ; ᎠᎴ ᏗᏣᎴᎲᎦ, ᏔᎵᏁ ᏪᏥᎷᏥᏏ ᎠᏍᎦᏯ. ᎠᎴ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎢᏥᏙᎵᏍᏗᏱ ᏫᏂᎬᎦ ᎾᏍᎩ ᎠᏍᎦᏯ ᎾᏍᎩ ᏅᏓᏳᏂᎩᏍᏙᏗᏱ ᏐᎢ ᎢᏣᎵᏅᏟ, ᎠᎴ ᏇᏂ; ᎢᏳᏃ ᏛᎩᏯᏅᎡᎴᏍᏗ ᏗᏇᏥ, ᏛᎩᏯᏅᎡᎴᏍᏗᏉ. ᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᎤᎾᏓᏁᏗ ᎤᏂᏴᏎᎢ, ᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎢᎦᎢ ᎠᏕᎸ ᏚᏂᏴᏎᎢ, ᎠᎴ ᏇᏂ ᎤᎾᏘᏅᏎᎢ; ᎠᎴ ᏚᎾᎴᏁᎢ, ᎠᎴ ᎢᏥᏈᏱ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎢᎬᏱᏗᏢ ᏭᎾᎴᏅᏁᎴ ᏦᏩ. ᏦᏩᏃ ᎤᎪᎲ ᏇᏂ ᎾᏍᎩ ᎠᏁᎲᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᏌᏕᎩ ᎦᏁᎸᎢ, ᏗᏇᏅᏒ ᏔᏘᏄᎦ ᎯᎠ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏘᎷᎦ ᎠᎴ ᎭᏛᏅᎢᏍᏓ ᎠᎵᏍᏓᏴᏗ; ᎯᎠᏰᏃ ᎠᏂᏍᎦᏯ ᏓᎬᏆᎵᏍᏓᏴᎾᏁᎵ ᎢᎦ. ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᏦᏩ ᏄᏪᏎᎸ ᎾᏍᎩᏯ ᏄᏛᏁᎴᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᏦᏩ ᎦᏁᎸ ᏫᏚᏘᏅᏍᏔᏁ ᎠᏂᏍᎦᏯ. ᎠᎴ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᎠᏂᏍᎦᎢᎮᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎨᏥᏴᏔᏂᎸ ᏦᏩ ᎦᏁᎸᎢ; ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎠᏂ ᏥᏕᎩᏴᏔᏂᎦ ᏂᎦᎵᏍᏙᏗ ᎠᏕᎸ ᏥᏕᎩᎳᏁᎸ ᏕᎦᎶᏗᎯ ᎢᎬᏱᏱ ᏥᏕᏙᎲᎩ; ᎾᏍᎩ ᎪᎱᏍᏗ ᏧᏢᏫᏍᏙᏗ ᎤᏚᎵ ᎾᏍᎩ ᏗᎩᎦᏗᎸᏍᏙᏗᏱ, ᎠᎴ ᏗᎩᏂᏴᏗᏱ, ᎠᎴ ᏗᎩᎾᏢᏗᏱ, ᎠᎴ [ᏗᎩᏯᏅᎡᏗᏱ] ᏗᏂᎵᎠᏅᎯᏛ. ᎾᎥᏃ ᎤᏂᎷᏤᎴ ᏄᎬᏫᏳᏌᏕᎩ ᏦᏩ ᎦᏁᎸᎢ, ᎠᎴ ᎤᎾᎵᏃᎮᏔᏁ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏕ. ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎢᏳᎸᏉᏗ, ᎤᏙᎯᏳᎯ ᎢᎬᏱᏱ ᏦᎩᎷᏥᎸᎩ ᎠᎵᏍᏓᏴᏗ ᎣᎩᏩᏏᎸᎩ; ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏗᏒᏍᏗᏱ ᏬᎩᎷᏨ ᏙᎩᎱᏃᏴᎲᎩ ᏕᎦᎶᏗ, ᎠᎴ ᎬᏂᏳᏉ, ᎣᏥᏏᏴᏫᎭ ᏕᎦᎶᏗ ᏙᏥᏁᎲ ᏓᎱᏃᎲᏉ ᏙᎦᎸ ᎠᏕᎸ ᏦᎦᏤᎵᎦ, ᏂᏙᎬᏩᏓᎨᏒᏉ; ᎠᎴ ᏔᎵᏁ ᏙᏥᏲᎦ. ᎠᎴ ᏅᏩᎾᏓᎴ ᎠᏕᎸ ᏙᏥᏲᎦ ᎠᎵᏍᏓᏴᏗ ᎣᎩᏩᎯᏍᏙᏗ; ᎥᏝ ᎦᏲᎦᏙᎴᎰᎯᏍᏗ ᏱᎩ ᎾᏍᎩ ᎨᏒ ᎠᏕᎸ ᏦᎩᎳᏁᎸᎯ ᏕᎦᎶᏗᎯ. ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᎤᏁᎳᏅᎯ ᎢᏣᏤᎵᎦ, ᎠᎴ ᎢᏥᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ ᎢᏥᏁᎸ ᏧᎬᏩᎶᏗ ᏕᎦᎶᏗᎯ; ᎠᏴ ᏛᎩᏁᎸ ᏗᏣᏤᎵ ᎠᏕᎸ. ᏏᎻᏯᏂᏃ ᏚᏘᏃᎮᎴᎢ. ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᏦᏩ ᎦᏁᎸ ᏫᏚᏘᏃᎴ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎠᎹ ᏚᏁᏁᎴᎢ, ᏧᎾᎳᏏᏕᏂᏃ ᏑᏃᏑᎴᎡᎢ; ᎠᎴ ᏗᏂᎵᎠᏅᎯᏛ ᎤᎾᎵᏍᏓᏴᏗ ᏚᏁᎴᎢ. ᎠᎴ ᎤᎾᏛᏅᎢᏍᏔᏁ ᎤᏂᏁᎸᏗ ᎨᏒ ᎠᏏ ᎢᎦ ᏂᎬᏒᎾ ᏦᏩ ᎾᎯᏳ ᎤᎷᎯᏍᏗᏱ ᎨᏒᎢ; ᎤᎾᏛᎦᏁᏰᏃ ᎾᎿ ᏗᎾᎵᏍᏓᏴᏂᏒᎢ. ᏦᏩᏃ ᏭᎷᏨ ᏧᏪᏅᏒᎢ, ᎤᏂᏁᏗ ᎠᏂᏰᎲ ᏔᎵᏦᏕ ᎤᏂᏴᏔᏁᎢ, ᎠᎴ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎴᎢ. ᎠᎴ ᏚᏛᏛᏁ ᏙᎯ ᏄᎾᏛᎾᏕᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᏙᏓᏍᎪ ᏙᎯᏱᏉ, ᎾᏍᎩ ᎤᏛᏐᏅᎯ ᏤᏥᏁᎢᏍᏗᏍᎬᎩ? ᎠᏏᏉᏍᎪ ᎡᎭ ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎯᏅᏏᏓᏍᏗ ᎣᎩᏙᏓ ᏙᎯᏱᏉ, ᎠᏏᏉ ᎡᎭ; ᎠᎴ ᎡᎳᏗ ᏂᏚᏅᏁᎴ ᏗᏂᏍᎪᎵ, ᎠᎴ ᏚᎾᏗᏌᏓᏕᎢ. ᏗᎦᏙᎵᏃ ᏚᏌᎳᏓᏁᎢ, ᎠᎴ ᎤᏅᏟ ᏇᏂ ᎤᎪᎮᎢ, ᎾᏍᎩ ᎤᏥ ᎤᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠᏍᎪ ᎢᏥᏅᏟ, ᎾᏍᎩ ᏥᏍᎩᏁᎢᏍᏓᏁᎲᎩ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᏫᏣᏙᎵᎩ, ᎠᏇᏥ. ᏦᏩᏃ ᎤᎵᏍᏗ ᏄᏛᏁᎴᎢ; ᎭᏫᏂᏰᏃ ᎤᎵᏖᎸᎾᏁᎴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏅᏟ; ᎠᎴ ᎤᏲᎴ ᎢᎸᎯᏢ ᏧᏠᏱᏍᏗᏱ; ᎠᎴ ᎧᏅᏑᎸ ᎤᏴᏍᏗᏱ ᏭᏴᎴᎢ, ᎠᎴ ᎾᎿ ᏚᏠᏱᎴᎢ. ᎤᎬᏍᏉᎡᏃ, ᎠᎴ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎬᏩᏛᏂᎡᏉ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᎵᏍᏓᏴᏗ ᎢᏥᏝᎲᎦ. ᎠᎴ ᎤᏩᏒ ᏕᎬᏩᏝᏁᎴᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎤᏅᏒ, ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᎵᏍᏓᏴᎲᏍᎬ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ, ᎾᏍᏉ ᎤᏅᏒ ᏙᎨᏥᏝᏁᎴᎢ; ᎢᏥᏈᏱᏰᏃ ᎠᏁᎯ ᎥᏝ ᎢᏧᎳᎭ ᎬᏩᎾᎵᏍᏓᏴᏗ ᏱᎨᏎ ᎠᏂᏈᎷ; ᎾᏍᎩᏴᏃ ᎤᏍᎦᎢᏍᏗᏳ ᎤᏂᏰᎸᏎ ᎢᏥᏈᏱ ᎠᏁᎯ. ᎠᎴ ᎤᏬᎸ ᎢᎬᏱᏢ ᎠᏂᏁᎢ, ᎤᏓᏂᎵᎨ ᎢᎬᏱ ᎤᏪᏁᎢ, ᎣᏂᏃ ᎡᎯ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏕᏔᏅ ᎤᏪᏁᎢ; ᎠᏂᏍᎦᏯᏃ ᎤᏅᏒ ᏓᎾᏓᏍᏆᏂᎪᏍᎨᎢ. ᎢᎬᏱᏗᏢᏃ ᎤᏬᎸ ᎠᏝᎲ ᏫᏚᏁᎴ ᏧᎾᏁᎳᎩᎭ ᎠᎵᏍᏓᏴᏗ; ᎠᏎᏃ ᏇᏂ ᏩᏥᏁᎸᎯ ᎾᏍᎩ ᎢᏳᏩᎫᏗ ᎤᎶᏒᏍᏕ ᎠᏂᏐᎢ ᎢᎩ ᎨᏥᏁᎸᎢ. ᏚᎾᏗᏔᎮᏃ ᎠᎴ [ᏦᏩ] ᎢᏧᎳᎭ ᎣᏍᏛ ᎤᎾᏓᏅᏓᏕᎢ. ᎠᏯᏙᎸᎢ 44 ᎠᎴ ᎤᏁᏤᎴ ᎦᏁᎸ ᏄᎬᏫᏳᏌᏕᎩ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎠᏂᏍᎦᏯ ᏕᎦᎶᏗ ᏧᎾᏤᎵ ᏘᎧᎵᏏ ᎠᎴᏍᏓᏴᏗ ᏘᎧᎵᏍᏓᏏ, ᎢᎦᎢ ᎬᏩᏂᏴᏍᏗ ᎬᏒᎢ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏧᎾᏤᎵᎦ ᎠᏕᎸ ᏕᎦᎶᏗᎯ ᏓᎱᏃᎲ ᏕᎩᎳᏁᎸᎭ. ᎠᎴ ᎠᏆᏤᎵ ᎤᎵᏍᏈᏗ, ᎠᏕᎸ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎯᎳᏏ ᎠᎱᏃᎲ ᏕᎦᎶᏗᎯ ᎾᏍᎩ ᎣᏂ ᎡᎩ, ᎠᎴ ᎾᏍᏉ ᎠᏕᎸ ᎤᏣᎴᏍᏗ ᎤᏩᎯᏍᏔᏅᎯ [ᏦᏙᎯᎳᏏ.] ᎠᎴ ᎾᏍᎩᏯ ᏦᏩ ᎤᏁᏤᎸ ᏄᏛᏁᎴᎢ. ᏑᎾᎴᏃ ᎩᎳ ᏧᎩᏥᏍᎪᎢ, ᎠᏂᏍᎦᏯ ᎨᎦᏂᎩᏍᏔᏁᎢ, ᎤᏅᏒ, ᎠᎴ ᏗᏂᎵᎠᏅᎯᏛ. ᎤᏂᏄᎪᏨᏃ ᎦᏚᎲᎢ, ᎠᎴ ᎥᏝ ᎠᏏ ᎢᏅᎯᏳ ᏱᏩᎾᎢᏎᎢ, ᏦᏩ ᎯᎠ ᏄᏪᏎᎴ ᎦᏁᎸ ᏄᎬᏫᏳᏌᏕᎩ, ᏔᎴᎲᎦ, ᎩᎨᎱᎦ ᎾᏍᎩ ᎠᏂᏍᎦᏯ; ᎠᎴ ᎿᏉ ᏫᎩᏯᏢᏔᎲᎭ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᎦᏙᏃ ᎣᏍᏛ ᏁᏣᏛᏁᎸ ᎤᏲᏉ ᎥᏣᏓᎫᏴᏓᏏ? ᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᎠᎩᏅᏏᏓᏍᏗ ᎤᏗᏔᏍᏙᏗ ᏱᎩ? ᎠᎴ ᎤᏙᎯᏳᏒ ᎾᏍᎩ ᎬᏩᏙᎴᎰᎯᏍᏙᏗ ᎨᏒᎢ; ᎤᏲ ᏂᏣᏛᎦ ᎾᏍᎩ ᏥᏂᏣᏛᏁᎸ. ᏫᏚᏢᏔᎮᏃ, ᎠᎴ ᎾᏍᎩᏯ ᏫᏂᏚᏪᏎᎴᎢ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎦᏙᏃ ᎾᏍᎩ ᏂᎦᏪᎭ ᎤᎬᏫᏳᎯ ᎣᎦᏤᎵ? ᎬᏩᏟᏍᏗ ᏘᏅᏏᏓᏍᏗ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ. ᎬᏂᏳᏉ ᎠᏕᎸ ᎾᏍᎩ ᏥᏙᎩᏩᏛᎲ ᏓᎱᏃᎲ ᏕᎦᎶᏗᎯ ᏔᎵᏁ ᏥᏙᏨᏲᎮᎸᎩ ᎨᎾᏂ ᏥᏙᏛᎣᎩᏴᏍᏔᏅᎩ; ᎦᏙᏃ ᏲᏥᏃᏍᎩᎭ ᏣᏅᏏᏙᎯ ᎦᏁᎸ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨᎢ? ᎩᎶ ᎯᎠ ᏘᏅᏏᏓᏍᏗ ᎠᏥᏩᏛᎡᎸᎭ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᏴᏃ ᎾᏍᏉ ᏣᎬᏫᏳᎯ ᏗᏍᎩᎾᏝᎢ ᏂᎦᎵᏍᏔᏅᎭ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏥᏁᏨᎪᎦ ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ, ᎩᎶ ᎾᏍᎩ ᎠᏥᏩᏛᎡᎸᎭ ᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ; ᏂᎯᏃ ᎢᏣᏚᏓᎴᏛ ᎨᏎᏍᏗ. ᎿᏉᏃ ᎠᏂᏏᏴᏫᎭ ᎤᎵᏍᏗᏳ ᏚᏂᏞᏎ ᏕᎦᎶᏗ, ᎡᎳᏗᏃ ᏚᏂᏅᏁᎢ, ᎠᎴ ᎠᏂᏏᏴᎭ ᏚᏂᎱᏃᏴᎮ ᏧᎾᏤᎵ ᏕᎦᎶᏗ. ᎤᏲᎴᏃ, ᎠᏓᏂᎵᎨ ᎤᏤᎵ ᎤᎴᏅᏔᏁᎢ, ᎠᎴ ᎣᏂᏱ ᎡᎯ ᏭᏍᏆᏗᏍᏔᏁᎢ; ᎤᎵᏍᏈᏗᏃ ᏇᏂ ᎤᏤᎵ ᏕᎦᎶᏗᎯ ᎤᏩᏛᎮᎢ. ᎿᏉᏃ ᏚᏂᏣᎦᎸᎮ ᏧᎾᏄᏬ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏚᏂᏐᏈᎳᏁ ᏧᎾᏤᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎤᎾᏨᏎ ᏗᎦᏚᎲ ᏭᏂᎶᏎᎢ. ᏧᏓᏃ ᎠᎴ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᏦᏩ ᎦᏁᎸ ᏭᏂᎷᏤᎢ; ᎾᏍᎩᏃ ᎠᏏᏉ ᎾᎿ ᎡᏙᎮᎢ; ᎢᎬᏱᏗᏢᏃ ᎤᏬᎸ ᎦᏙᎯ ᏚᎾᏓᏅᏁᎢ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏉ ᎢᏣᏛᎦ? ᏝᏍᎪ ᏱᏥᎦᏔᎮ ᎠᏴ ᎾᏍᎩ ᎢᏯᏆᏍᏗ ᎤᏙᎯᏳᎯᏯ ᎬᏆᏙᎴᎰᎯᏍᏗ ᎨᏒᎢ? ᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᏨᏲᏎᎵ ᏣᎬᏫᏳᎯ? ᎠᎴ ᎦᏙ ᏓᏲᏣᏛᏂ? ᎠᎴ ᎦᏙ ᏓᏲᏣᏛᏁᎵ ᎣᎦᏚᏓᎴᏍᏗᏱ? ᎤᏁᎳᏅᎯ ᎤᏙᎴᎰᏒ ᎤᏂᏍᎦᏅᏨ ᏘᏅᏏᏓᏍᏗ; ᎬᏂᏳᏉ, ᏣᎬᏫᏳᎯ ᏕᏍᎩᎾᏝᎠ, ᎠᏴ ᎠᎴ ᎾᏍᏉ Ꮎ ᎤᎵᏍᏈᏗ ᎠᏥᏩᏛᎡᎸᎯ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏩᏟᏍᏗ ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗᏱ; ᎤᎵᏍᏈᏗᏍᎩᏂ ᎠᏥᏩᏛᎡᎸᎯ, ᎾᏍᎩ ᏥᎾᏝᎢ ᎨᏎᏍᏗ; ᏂᎯᏍᎩᏂ ᏅᏩᏙᎯᏯᏛ ᏥᏣᏂᎩ ᎢᏥᏙᏙᏱ ᏫᏥᎶᎯ. ᎿᏉᏃ ᏧᏓ ᎾᎥ ᏭᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ ᎬᏔᏲᏏ ᎯᏅᏏᏓᏍᏗ ᏌᏉ ᎢᎧᏁᏨᎯ ᏣᏁᏤᏗᏱ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ; ᎠᎴ ᏞᏍᏗ ᏱᎾᎸᏤᎴᏍᏗ ᎯᏅᏏᏓᏍᏗ; ᏇᎵᏲᏰᏃ ᏄᏍᏛ ᎾᏍᎩᏯ ᏂᏣᏍᏗ ᏂᎯ. ᏂᎯᏰᏃ ᏣᎬᏫᏳᎯ ᏕᎭᏛᏛᏅᎩ ᏘᏅᏏᏓᏍᏗ, ᎯᎠ ᏥᏂᏣᏪᏒᎩ, ᏥᎪ ᎢᏥᏙᏓ ᎡᎭ, ᎠᎴ ᎢᏥᏅᏟ? ᎠᎴ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ ᏣᎬᏫᏳᎯ, ᎣᎩᏙᏓ ᎡᎭ, ᎤᏛᏐᏅᎯ, ᎠᎴ ᎤᏪᏥ ᎤᏛᏐᏅᎯ ᎨᏒ ᎤᏕᏁᎸᎢ, ᎠᏲᎵᏉ; ᎤᏂᎵᏃ ᎤᏲᎱᏒ, ᎠᎴ ᎤᏩᏒ ᎤᏕᎯᏴ ᎤᏥ ᏧᏪᏥᏛᎯ, ᎤᏙᏓᏃ ᎤᎨᏳᎯᏳ ᎢᎩ. ᏘᏅᏏᏓᏍᏗᏃ ᎯᎠ ᏥᏂᏕᎯᏪᏎᎸᎩ, ᏍᎩᏯᏘᏃᎮᎸᎭ, ᎠᎴ ᎾᏍᎩ ᏕᏥᏯᎦᎿᏅᎭ. ᎠᎴ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ ᏣᎬᏫᏳᎯ, ᎠᏫᏄᏣ ᎥᏝ ᎬᏮᏕᎢᏍᏗ ᏱᎩ ᎤᏙᏓ; ᎢᏳᏰᏃ ᎤᏙᏓ ᏳᏮᏕᏨ, [ᎤᏙᏓ] ᏯᏲᎱᎯ. ᎠᎴ ᎯᎠ ᏥᏂᏕᎯᏪᏎᎸᎩ ᏘᏅᏏᏓᏍᏗ, ᎢᏳᏃ ᏁᏣᏘᏃᎸᎾ ᎢᎨᏎᏍᏗ ᎣᏂ ᎡᎯ ᎢᏥᏅᏟ, ᎥᏝ ᎿᏉ ᎢᎸᎯᏳ ᏴᎨᏥᎪᏩᏛ ᎠᏆᎧᏛᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎿᏉ ᏫᎣᏥᎷᏤᎸ ᎯᏅᏏᏓᏍᏗ ᎡᏙᏓ, ᎣᏥᏃᏁᎸᎩ ᏂᏣᏪᏒ ᏣᎬᏫᏳᎯ. ᎣᎩᏙᏓᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏔᎵᏁ ᏥᏤᎾ, ᎤᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏫᏍᎩᏩᎯᏏ. ᎯᎠᏃ ᏃᎩᏪᏒᎩ, ᎥᏝ ᏴᎦᏲᏤᎾ; ᎢᏳᏍᎩᏂ ᎣᏂ ᎡᎯ ᏍᎩᏅᏟ ᏲᏤᎭ, ᎩᎳ ᏲᏤᎾ; ᎥᏝᏰᏃ ᏴᎦᏲᏥᎪᏩᏛ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᎧᏛ, ᎬᏂ ᎣᏂ ᎡᎯ ᏍᎩᏅᏟ ᏲᏤᎭ. ᎯᏅᏏᏓᏍᏗᏃ ᎡᏙᏓ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᏂᎯ ᎢᏥᎦᏔᎭ ᎠᏆᏓᎵᎢ ᎠᏂᏔᎵᏉ ᎠᏂᏧᏣ ᏓᎩᎾᏄᎪᏫᏎᎸᎢ; ᏌᏉᏃ ᎢᎸᎯᏢ ᏩᎩᎶᎯᏎᎸᎢ, ᎠᎴ ᎯᎠ ᎾᎩᏪᏒᎢ, ᎤᏙᎯᏳᎯᏯ ᎠᏥᏓᎦᎸᎢᏒ; ᎥᏝᏃ ᎣᏂ ᏱᏥᎪᎣᎢ; ᎢᏳᏃ ᎾᏍᏉ ᎯᎠ ᏱᏍᎩᏯᏅᎡᎸ ᎠᎴ ᎤᏲ ᏱᏄᎵᏍᏓᏁᎸ, ᎤᏁᎬ ᏗᎩᏍᏗᏰᎩ ᏧᏂᏲᎱᏒᎯ ᏩᏁᎲ ᏮᏓᏍᎩᏯᏘᏃᎵ ᎤᏲ ᎬᏆᏓᏅᏘ. ᎢᏳᏃ ᎾᏍᎩ ᏫᏥᎷᏤᎸᎭ ᎯᏅᏏᏓᏍᏗ ᎡᏙᏓ, ᏃᏤᎲᎾᏃ ᎢᎨᏎᏍᏗ ᎠᏫᏄᏣ, (ᎤᏩᏒᏰᏃ ᎬᏅᎠᏫᏄᏣ ᎬᏅ ᎬᎿᏗᏍᏗ;) ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎿᏉ ᎠᎪᎲ ᎠᏫᏄᏣ ᏃᏤᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏛᏲᎱᏏᏉ; ᎠᎴ ᏘᏅᏏᏗ ᎾᏍᎩ ᎤᏁᎬ ᏧᏍᏘᏰᎩ ᎯᏅᏏᏓᏍᏗ ᎣᎩᏙᏓ ᏧᏂᏲᎱᏒᎩ ᏩᏁᎲ ᏮᏓᏲᏣᏘᏃᎵ ᎤᏲ ᎬᏩᏓᏅᏘ. ᎠᏴᏰᏃ ᏍᎩᏅᏏᏓᏍᏗ ᏔᎵ ᏥᏯᏛᏓᏁᎸᎩ ᎠᏫᏄᏣ, ᎡᏙᏓ ᏥᏯᏚᏓᎳᏁᎸᎩ, ᎯᎠ ᎾᎩᏪᏒᎩ, ᎢᏳᏃ ᏔᎵᏁ ᏂᎬᏯᏘᏃᎮᎸᎾ ᎢᎨᏎᏍᏗ, ᎠᏴ ᎬᏍᎦᏅᏤᎸᎯ ᎨᏎᏍᏗ ᎡᏙᏓ ᏂᎪᎯᎸᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᏅᏏᏓᏍᏗ ᏩᏘᎩᏴ ᏩᏓᏁᏟᏴᏍᏓᏏ ᎠᏫᏄᏣ, ᎾᏍᎩ ᎯᎾᏝᎢ ᏫᏂᎦᎵᏍᏓ ᏩᎬᏫᏳᎯ; ᎠᏫᏄᏣᏃ ᏧᏂᎵ ᏫᎠᏁᎾ. ᎦᏙᏰᏃ ᏱᎦᎵᏍᏙᏓ ᎡᏙᏓ ᏱᏫᏥᎷᏥᏏ, ᎠᏫᏄᏣ ᏃᏍᏕᎲᎾ ᏱᎩ? ᎠᎴ ᏱᏥᎪᏩᏛ ᎤᏲ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏒ ᎡᏙᏓ? ᎠᏯᏙᎸᎢ 45 ᏦᏩᏃ ᎥᏝ ᎬᏩᏛᏂᏗᏍᏗ ᏱᎨᏎ ᏂᎦᏛ ᎠᏂᎦᏔᎲ ᎾᏍᎩ ᎾᎿ ᎠᏂᏙᎾᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎦᏛ ᎩᏄᎪᏩ ᏥᏯᎥᎢ; ᎥᏝᏃ ᎩᎶ ᏦᏩ ᏱᏓᏂᏙᎨ, ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸ ᎠᎾᎵᏅᏟ ᎾᏍᎩ ᎨᏒᎢ. ᎠᏍᏓᏯᏃ ᏚᏠᏱᎴᎢ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᏇᎵᏲ ᏚᏓᏘᎾᎥ ᎤᎾᏛᎦᏁᎢ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᏴ ᏦᏩ; ᎡᏙᏓᏍᎪ ᎠᏏᏉᎡᎭ? ᎠᎾᎵᏅᏟᏃ ᎥᏝ ᎦᎬᏩᏁᏤᏗ ᏱᎨᏎᎢ; ᎤᎾᏕᏯᏙᏗᏍᎨᏰᏃ ᎬᏩᎪᏩᏗᏍᎬᎢ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎾᎥ ᏍᎩᎷᏥᏏ; ᎾᎥᏃ ᎤᏂᎷᏤᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴ ᏦᏩ ᎢᏥᏅᏟ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏩᎦᏘᏅᏍᏙᏗᏱ ᏤᏥᎾᏗᏅᏒᎩ. ᎿᏉᏃ ᎥᏞᏍᏗ ᎤᏲ ᏱᏣᏓᏅᏖᏍᏗ, ᎠᎴ ᏞᏍᏗ ᎢᏨᏒ ᏱᏣᏓᏂᏆᏘᎮᏍᏗ, ᎾᏍᎩ ᎡᏍᎦᏂ ᏗᏍᎩᎾᏗᏅᏍᏔᏅᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎢᎬᏱ ᏗᎩᏅᏎ ᏓᏅᏅ [ᏴᏫ] ᏗᎦᏥᏍᏕᎸᎡᏗᏱ. ᎿᏉᏰᏃ ᏔᎵ ᎾᏕᏘᏴ ᏓᎪᏄᎶᎯ; ᎠᎴ ᎠᏏ ᎾᏍᎩ ᏧᏕᏘᏴᏛ, ᎥᏝ ᎦᏓᎷᎪᏗᏱ ᎠᎴ ᎠᏍᎫᏕᏍᏗᏱ ᏱᎨᏎᏍᏗ. ᎤᏁᎳᏅᎯᏃ ᎢᎬᏱ ᏗᎩᏅᏒ, ᎢᏨᏍᏕᎸᎡᏗᏱ ᎢᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎡᎶᎯ, ᎠᎴ ᏕᏨᏅ ᏗᏨᏍᏕᎸᎡᏗᏱ, ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗ ᎬᏗᏍᎬ ᎢᏨᏳᏓᎴᏍᎬᎢ. ᎾᏍᎩᏃ ᎥᏝ ᏂᎯ ᎠᏂ ᏴᏗᏍᎩᏅᏎᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ; ᎠᎴ ᏇᎵᏲ ᎤᏙᏓ ᎾᏋᏁᎸ, ᎠᎴ ᎾᎩᎬᏫᏳᏒ ᏂᎦᎥ ᎦᏁᎸᎢ, ᎠᎴ ᏨᏆᏁᎶᏗ ᏂᎬᎾᏛ ᎢᏥᏈᏱ. ᏞᎩᏳᏃ ᎡᏙᏓ ᏪᏥᎷᏥᏏ, ᎠᎴ ᎯᎠ ᏫᏁᏥᏪᏏ, ᎯᎠ ᏂᎦᏪᎭ ᏤᏥ ᏦᏩ, ᎤᏁᎳᏅᎯ ᏨᏆᏁᎶᏗ ᎾᏋᏁᎸ ᏂᎬᎾᏛ ᎢᏥᏈᏱ; ᏖᏒᎭ ᏍᎩᎷᏤᎸᎭ, ᏞᏍᏗ ᏣᏙᎯᏛᎩ. ᎪᏌᏂᏃ ᏚᏙᎥ ᎭᏁᎳᏛᎭ, ᎠᎴ ᎾᎥᏉ ᏂᏕᎩᎾᏓᎴᏍᏗ, ᏂᎯ ᎠᎴ ᏗᏤᏥ, ᎠᎴ ᏗᏤᏥ ᏧᏁᏥ, ᎠᎴ ᏗᏣᏤᎵ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏂᎦᎥ ᏣᏤᎵ ᎨᏒᎢ. ᎠᎴ ᎾᎿ ᏓᎬᏰᎶᎵ; ᎠᏏᏰᏃ ᎾᏍᎩ ᏧᏕᏘᏴᏛ ᏥᏓᎪᏄᎸ; ᏂᎯᏰᏃ, ᎠᎴ ᏕᏣᏓᏘᎾᎥᎢ, ᎠᎴ ᏂᎦᏛ ᏗᏣᏤᎵ ᎨᏒ ᎤᏲ ᎢᏣᏛᎿᏕᎩ ᏱᏂᎦᎵᏍᏓ. ᎠᎴ ᎬᏂᏳᏉ, ᏗᏥᎦᏙᎵ ᏓᎪᏩᏘᎭ, ᎠᎴ ᎥᎩᏅᏟ ᏇᏂ ᏗᎦᏙᎵ ᎾᏍᎩ ᎠᏴ ᏥᎣᎵ ᎨᏒ ᏥᏥᏬᏁᏗᎭ. ᎠᎴ ᎡᏥᏃᏁᎸᎭ ᎡᏙᏓ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎾᏆᏛᏅ ᎢᏥᏈᏱ, ᎠᎴ ᏂᎦᎥ ᎢᏥᎪᎲᎢ; ᎠᎴ ᏞᎩᏳ ᎠᏂ ᎡᏙᏓ ᎡᏣᏘᏃᎸᎭ. ᎠᎴ ᎤᏅᏟ ᏇᏂ ᎠᎩᎵᎨᏂ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᏚᏠᏱᎴᎢ; ᎠᎴ ᏇᏂ ᏚᏠᏱᎴ ᏦᏩ ᎠᎩᎵᎨᏂ ᎦᏯᎸᎢ. ᎠᎴ ᎾᏍᏉ ᏚᏙᏪᏙᏁ ᏂᎦᏛ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏚᏪᏯᎸᏤ ᏚᏠᏱᎴᎢ; ᎩᎳᏃ ᎣᏂ ᎠᎾᎵᏅᏟ ᎬᏩᎵᏃᎮᏔᏁᎢ. ᎠᏂᏃᎮᏍᎬᏃ ᎾᏍᎩ ᏇᎵᏲ ᎦᏁᎸ ᎢᏴᏛ ᏭᎾᏛᎦᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏦᏩ ᎠᎾᎵᏅᏟ ᎠᏂᎷᎩ; ᏇᎵᏲᏃ ᎣᏂᏳ ᎤᏰᎸᏁᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏅᏏᏓᏍᏗ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎢᏣᎵᏅᏟ ᎯᎠ ᏂᎩᏪᏏ, ᎯᎠ ᏂᏣᏛᎦ; ᏗᏥᏐᏈᎸᎦ ᏗᏥᏐᏈᎸᏗ, ᎠᎴ ᎢᏤᎾ ᎨᎾᏂᏱ ᏫᏥᎶᎯ; ᎠᎴ ᏙᏗᏣᏘᏁᏒᎭ ᎢᏥᏙᏓ ᎠᎴ ᏕᏣᏓᏘᎾᎥᎢ, ᎠᎴ ᎠᏴ ᏍᎩᎷᏤᎸᎭ; ᎠᎴ ᎣᏌᏂ ᎦᏙᎯ ᎢᏥᏈᏱ ᏓᏨᏁᎵ, ᎠᎴ ᎦᏙᎯ ᎦᎵᏦᏅ ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ. ᎿᏉ ᎡᏣᏁᏥ, ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᎦ; ᏓᏆᎴᎷ ᎠᏂ ᎢᏥᏈᏱ ᏗᏥᏫᏛ, ᏧᎾᏦᏗ ᏗᏤᏥ ᏧᎾᏍᏗᎦ, ᎠᎴ ᏗᏣᏓᎵᎢ, ᎢᏥᏙᏓᏃ ᏤᏣᏘᏁᏒᎭ, ᎠᎴ ᎢᏥᎷᏨᎭ. ᎠᎴ ᏞᏍᏗ ᏱᏥᎨᏳᎲᏍᎨᏍᏗ ᎪᎱᏍᏗ ᎢᏥᎿᎥᎢ; ᎣᏌᏂᏰᏃ ᎦᏙᎯ ᎢᏥᏈᏱ ᎢᏣᏤᎵᎦ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎾᏍᎩ ᏄᎾᏛᏁᎴᎢ; ᏦᏩᏃ ᏚᏁᎴ ᏓᏆᎴᎷ ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏁᏨ ᏇᎵᏲ, ᎠᎴ ᎤᎾᎡᏃᏗ ᏚᏁᎴ ᏩᎾᎢᏒᎢ. ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᏚᏅᏁᎴ ᏧᎾᏄᏩᎢᏴᏍᏗ ᏗᏄᏬ; ᏇᏂᏍᎩᏂ ᏦᎢᏧᏈ ᎠᏰᎵ ᎠᏕᎸ ᏚᏁᎴᎢ, ᎯᏍᎩᏃ ᎢᏧᏄᏩᎢᏴᏍᏗ ᏗᏄᏬ; ᎤᏙᏓᏃ ᎯᎠ ᏄᏍᏕ ᏭᏁᎴᎢ; ᎠᏍᎪᎯ ᏗᏂᎵᎠᏅᎯᏛ ᏗᏐᏈᎵ ᎣᏌᏂ ᎢᏥᏈᏱ ᎤᏕᏅᎯ, ᎠᎴ ᎠᏍᎪᎯ ᎠᏂᎩᏏ ᏗᏂᎵᎠᏅᎯᏛ ᏗᏐᏈᎵ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎦᏚ, ᎠᎴ ᎤᏕᏃᏗ, ᎤᏙᏓ ᏣᎢᏒ ᎤᎵᏍᏓᏴᏗ. ᎾᏍᎩᏃ ᏚᏂᎩᏍᏔᏁ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᎾᏂᎩᏎᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏫᏣᎢᏒᏉ ᏥᏥᏲᏠᎯᏎᎵ. ᎤᏂᏄᎪᏤᏃ ᎢᏥᏈᏱ, ᎠᎴ ᎨᎾᏂᏱ ᏭᏂᎷᏤ, ᏤᎦᏈᏱ ᎤᏂᏙᏙᏱ, ᎠᎴ ᎤᏂᏃᏁᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏦᏩ ᎠᏏᏉ ᎡᎭ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏂᎬᎾᏛ ᎢᏥᏈᏱ; ᏤᎦᏈᏃ ᎤᎾᏫ ᎤᎸᏕᎴᎢ, ᎥᏝᏰᏃ ᏱᏚᏬᎯᏳᏁᎢ. ᎬᏩᏃᏁᎴᏃ ᎾᏍᎩ ᏂᎦᏛ ᏦᏩ ᏄᏪᏒᎢ, ᎾᏍᎩ ᏚᏬᏁᏔᏅᎢ; ᎠᎴ ᎿᏉ ᏚᎪᎲ ᏓᏆᎴᎷ ᎾᏍᎩ ᏦᏩ ᏂᏙᏓᏳᏓᏅᏏᏛ ᏧᏦᏗ, ᎤᏂᏙᏓ ᏤᎦᏈ ᎤᏓᏅᏙ ᎤᏩᏂᎦᎵᏍᏙᏎᎢ. ᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, Ꭷ, ᏰᎵᏉ; ᏦᏩ ᎠᏇᏥ ᎠᏏᏉ ᎡᎭ; ᏓᎨᏏ ᏓᏥᏯᎦᏔᏁᏏ ᎠᏏᏉ ᎾᎩᏲᎱᏒᎾ. ᎠᏯᏙᎸᎢ 46 ᎢᏏᎵᏃ ᎤᏂᎩᏎ ᏚᏘᏅᏎ ᏂᎦᏛ ᏚᏪᎧᎲᎢ, ᎠᎴ ᏈᏯᏏᏆ ᏭᎷᏤᎢ, ᎠᎴ ᎠᏥᎸ ᎤᏪᎴᎴ ᎤᏁᎳᏅᎯ, ᎤᏙᏓ ᎡᏏᎩ ᎤᏤᎵᎦ. ᎤᏁᎳᏅᎯᏃ ᎢᏏᎵ ᎤᏁᏤᎴ ᏒᏃᏱ ᎤᏁᎳᏫᏎᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏤᎦᏈ, ᏤᎦᏈ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏂ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ, ᏣᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ; ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ ᎢᏥᏈᏱ ᏤᏅᏍᏗᏱ; ᎾᎿᏰᏃ ᏂᎯ ᎡᏉᎯᏳ ᎤᎾᏓᏣᎵᏛ ᏴᏫ ᏅᏓᎬᏴᏁᎵ; ᎠᏴ ᏙᏓᎬᎦᎿᏩᏗᏙᎵ ᎢᏥᏈᏱ ᏫᎦᎷᎩ; ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᏔᎵᏁ ᏛᎬᏯᏘᏃᎵ; ᎠᎴ ᏦᏩ ᎠᏎ ᏙᏛᏏᏔᏗ ᏘᎦᏙᎵ. ᏤᎦᏈᏃ ᎤᏂᎩᏎ ᏈᏯᏏᏆ, ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏘᏅᏎ ᏤᎦᏈ ᎤᏂᏙᏓ, ᎠᎴ ᎾᏍᎩ ᏧᏁᏥ ᏄᎾᏍᏗᎦ, ᎠᎴ ᏧᎾᏓᎵᎢ, ᏚᏂᏲᏔᏁ ᏓᏆᎴᎷ ᎾᏍᎩ ᏇᎵᏲ ᏥᏙᏧᏓᏅᏎ ᏧᏦᏗ. ᎠᎴ ᎦᎾᏝᎢ ᏚᎾᏘᏅᏎᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᏴᏎ ᎾᏍᎩ ᎨᎾᏂᏱ ᎤᏂᏟᏌᏅᎯ, ᎢᏥᏈᏱᏃ ᏭᏂᎷᏤᎢ, ᏤᎦᏈ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎨᏒ ᎠᏁᎮᎢ. ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᏁᏥ ᎠᏁᎮᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᏧᏁᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏂᎦᏛ ᎤᏁᏢᏔᏅᎯ ᎨᏒ ᎢᏥᏈᏱ ᏫᏚᏘᏃᎴᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᏘᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᏥᏭᏂᎷᏤ ᎢᏥᏈᏱ, ᏤᎦᏈ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ; ᎷᏈᏂ, ᏤᎦᏈ ᎢᎬᏱ ᎤᏕᏁᎸᎯ. ᎷᏈᏂᏃ ᏧᏪᏥ, ᎭᏃᎦ, ᎠᎴ ᏆᎷ, ᎠᎴ ᎮᏏᎶᏅ, ᎠᎴ ᎧᎹ. ᏏᎻᏯᏂᏃ ᏧᏪᏥ, ᏥᎽᎡᎵ, ᎠᎴ ᏤᎻᏂ, ᎠᎴ ᎣᎭᏗ, ᎠᎴ ᏤᎩᏂ, ᎠᎴ ᏐᎭ, ᎠᎴ ᏐᎵ ᎨᎾᏂ ᎡᎯ ᎠᎨᏴ ᎤᏪᏥ. ᎵᏫᏃ ᏧᏪᏥ, ᎦᏐᏂ, ᎪᎭᏗ, ᎠᎴ ᎻᎴᎳ. ᏧᏓᏃ ᏧᏪᏥ, ᎥᎵ, ᎠᎴ ᎣᎾᏂ, ᎠᎴ ᏏᎳ, ᎠᎴ ᏇᎵᏏ, ᎠᎴ ᏎᎳ; ᎠᏎᏃ ᎥᎵ ᎠᎴ ᎣᎾᏂ ᎨᎾᏂᏱᏉ ᎢᏴᏛ ᏚᏂᏲᎱᏎᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏇᎵᏏ ᏧᏪᏥ, ᎮᏏᎶᎻ, ᎠᎴ ᎮᎹᎵ. ᎢᏏᎦᏃ ᏧᏪᏥ, ᏙᎳ, ᎠᎴ ᏊᏩ, ᎠᎴ ᏦᏈ ᎠᎴ ᏏᎻᎶᏂ. ᏤᏆᎳᏂᏃ ᏧᏪᏥ, ᏏᎴᏗ, ᎠᎴ ᎢᎶᏂ, ᎠᎴ ᏣᎵᎵ. ᎯᎠ ᎾᏍᎩ ᎵᎠ ᏧᏪᏥ, ᎾᏍᎩ ᏧᎾᏄᎪᏫᏎᎸᎯ ᏤᎦᏈ ᏇᏓᏁᎳᎻᏱ, ᎠᎴ ᎠᎨᏴ ᎤᏪᏥ ᏓᏱᎾ; ᎾᏂᎥᏃ ᎾᏍᎩ ᏤᎦᏈ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᏦᎠᏍᎪᎯ ᏦᎢᎦᎵ ᎾᏂᎡᎢ. ᎦᏗᏃ ᏧᏪᏥ; ᏥᏈᏲᏂ, ᎠᎴ ᎭᎩ, ᎠᎴ ᏑᏂ, ᎠᎴ ᎡᏏᏉᏂ, ᎢᎳ, ᎠᎴ ᎡᎶᏗ, ᎠᎴ ᎡᎵᎳ. ᎡᏌᏃ ᏧᏪᏥ; ᏥᎻᎾ, ᎠᎴ ᎢᏑᎠ, ᎠᎴ ᎢᏑᎢ, ᎠᎴ ᏈᎳᏯ, ᎠᎴ ᏏᎳ ᎾᏍᎩᏉ ᎤᏂᏙ; ᏈᎳᏯᏃ ᏧᏪᏥ; ᎯᏆ ᎠᎴ ᎹᎵᎦᏱᎵ. ᎯᎠ ᎾᏍᎩ ᏏᎵᏆ ᏧᏪᏥ ᎾᏍᎩ ᎴᏈᏂ ᏧᏪᎧᏁᎸᎯ ᎤᏪᏥ ᎵᎠ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏚᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ, ᏓᎳᏚ ᎢᏯᏂᏛ. ᎴᏥᎵᏃ ᏧᏪᏥ ᎾᏍᎩ ᏤᎦᏈ ᎤᏓᎵᎢ; ᏦᏩ ᎠᎴ ᏇᏂ. ᏦᏩᏃ ᎢᏥᏈᏱ ᎬᏩᏕᏁᎸᎯ ᎾᏍᎩ ᎻᎾᏌ, ᎠᎴ ᎢᏆᎻ, ᎾᏍᎩ ᎠᏏᎾ ᏉᏗᏈᎳ ᎣᏂ ᏚᏙᎥ ᎠᏥᎸ ᏗᎨᎴᎯ ᎤᏪᏥ ᏧᎾᏄᎪᏫᏎᎸᎯ. ᏇᏂᏃ ᏧᏪᏥ, ᏈᎳ, ᎠᎴ ᏈᎦ, ᎠᎴ ᎠᏏᏇᎵ, ᎠᎴ ᎩᎳ, ᎠᎴ ᏁᎡᎹᏂ, ᎠᎴ ᎢᎭ, ᎠᎴ ᎶᏏ, ᎹᏈᎻ, ᎠᎴ ᎭᏈᎻ, ᎠᎴ ᎠᏗ. ᎯᎠ ᎾᏍᎩ ᎴᏥᎵ ᏧᏪᏥ, ᎾᏍᎩ ᏤᎦᏈ ᎬᏩᏕᏁᎸᎯ; ᏂᎦᏛᏃ ᏂᎦᏚ ᎾᏂᎡᎢ. ᏕᏂᏃ ᏧᏪᏥ ᎱᏏᎻ. ᏁᏩᏔᎵᏃ ᏧᏪᏥ; ᏣᏏᎵ, ᎠᎴ ᎫᏂ, ᎠᎴ ᏤᏌ, ᎠᎴ ᏏᎵᎻ. ᎯᎠ ᎾᏍᎩ ᏈᎳ ᏧᏪᏥ, ᎾᏍᎩ ᎴᏈᏂ ᏧᏪᎧᏁᎴ ᎤᏪᏥ ᎴᏥᎵ, ᎾᏍᎩᏃ ᎯᎠ ᏚᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ; ᏂᎦᏛᏃ ᎦᎵᏉᎩ ᎾᏂᎡᎢ. ᏂᎦᏛᏃ ᏴᏫ ᏤᎦᏈ ᏧᏂᎷᏤ ᎢᏥᏈᏱ, ᎾᏍᎩ ᏅᏓᏳᎾᏓᎴᏅᎯ, ᏂᏓᏁᏢᏛᎾ ᏤᎦᏈ ᏧᏪᏥ ᏧᎾᏓᎵᎢ, ᏂᎦᏛ ᎾᏍᎩ ᏴᏫ ᏑᏓᎵᏍᎪᎯ ᏑᏓᎵᎦᎵ ᎾᏂᎡᎢ. ᏦᏩᏃ ᏧᏪᏥ ᎢᏥᏈᏱ ᎬᏩᏕᏁᎸᎯ ᎠᏂᏔᎵ ᎨᏎᎢ; ᏂᎦᏛᏃ ᏴᏫ ᏤᎦᏈ ᏚᏓᏘᎾᎥᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᏳᏂᎶᏒᎯ, ᎦᎵᏆᏍᎪᎯ ᎾᏂᎡᎢ. ᏧᏓᏃ ᎤᏅᏎ ᎢᎬᏱ ᏭᎶᎯᏍᏗᏱ ᏦᏩ ᏧᏬᎸᎢ, ᎾᏍᎩ ᎪᏌᏂ ᎢᏗᏢ ᏭᎦᏙᏗᏱ; ᎠᎴ ᎪᏌᏂ ᎦᏓ ᎠᎲ ᏭᏂᎷᏤᎢ. ᏦᏩᏃ ᎤᏛᏅᎢᏍᏔᏁ ᏓᏆᎴᎷ, ᎠᎴ ᎪᏌᏂ ᎤᏪᏅᏎ ᏚᏠᏒᏎ ᎤᏙᏓ ᎢᏏᎵ, ᎠᎴ ᎬᏂᎨᏒ ᏄᏛᏁᎴᎢ; ᎠᎴ ᎠᎩᎵᎨᏂ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᎤᏬᎯᏤ ᏚᏠᏱᎴ ᎠᎩᎵᎨᏂ ᎤᏯᎸᎢ. ᎠᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, Ꭷ, ᎿᏉ ᏫᏥᏲᎤᎯ, ᎾᏍᎩ ᏣᎧᏛ ᎠᏏ ᏨᏥᎪᏩᏛ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏏᏉ ᎲᏅᎢ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎾᏍᎩ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ, ᏓᎨᏏ, ᎠᎴ ᎬᏂᎨᏒ ᏅᏓᏥᏴᏁᎵ ᏇᎵᏲ, ᎠᎴ ᎯᎠ ᏅᏓᎦᏥᏪᏎᎵ, ᎣᏣᎵᏅᏟ, ᎠᎴ ᎡᏙᏓ ᏚᏓᏘᎾᎥᎢ, ᎾᏍᎩ ᎨᎾᏂᏱ ᏣᏁᎲᎩ, ᎬᎩᎷᏥ; ᎠᎴ ᎠᏂᏍᎦᏯ ᎠᏫ ᏗᏂᎦᏘᏯ, ᎦᎾᏝᎢᏰᏃ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᏚᎾᏘᏃᎸ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏂᎦᏛ ᎤᏂᎿᎥᎢ. ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎿᏉ ᎾᏍᎩ ᏇᎵᏲ ᏗᏥᏯᏅᎲᎭ, ᎠᎴ ᎯᎠ ᏂᎦᏪᏒᎭ, ᎦᏙ ᎤᏍᏗ ᏗᏥᎸᏫᏍᏓᏁᎯ? ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᏒᎭ, ᏘᏅᏏᏓᏍᏗ ᎦᎾᏝᎢ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᏒᎩ, ᏙᏧᎾᏛᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ, ᎠᏴ ᎣᎬᏒ ᎨᏒ, ᎠᎴ ᎾᏍᏉ ᏦᎩᎦᏴᎵᎨᎢ; ᎾᏍᎩ ᎪᏌᏂ ᎦᏓ ᎠᎲ ᎨᏣᏕᏗ ᏱᏂᎦᎵᏍᏓ; ᎾᏂᎥᏰᏃ ᎠᏫ ᏗᏂᎦᏘᏯ ᎤᏂᏍᎦᎢᏍᏗᏳ ᏚᏂᏰᎸᎭ ᎢᏥᏈᏱ ᎠᏁᎯ. ᎠᏯᏙᎸᎢ 47 ᏦᏩᏃ ᎤᎷᏤ ᎠᎴ ᎤᏃᏁᎴ ᏇᎵᏲ, ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ ᎠᎴ ᎣᏣᎵᏅᏟ ᎠᏂᎷᎩ, ᎠᎴ ᎠᏫ ᏚᏂᎧᎲ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏂᎦᏛ ᏧᎾᏤᎵ ᎨᏒ ᎨᎾᏂᏱ ᏛᏂᎶᎯ, ᎠᎴ ᎬᏂᏳᏉ ᎪᏌᏂᏱ ᎠᏂᏅ. ᎠᎾᎵᏅᏟᏃ ᎢᎦᏛ ᏚᏘᏅᏎᎢ, ᎯᏍᎩ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎢᎬᏱᏢ ᏚᏪᎧᏁᎴ ᏇᎵᏲ. ᏇᎵᏲᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏦᏩ ᎠᎾᎵᏅᏟ, ᎦᏙ ᎤᏍᏗ ᏗᏥᎸᏫᏍᏓᏁᎯ? ᎯᎠᏃ ᏄᏂᏪᏎᎴ ᏇᎵᏲ, ᏘᏅᏏᏓᏍᏗ ᎠᏫ ᏗᏂᎦᏘᏯ, ᎠᏴ ᎣᎬᏒ ᎨᏒ, ᎠᎴ ᎾᏍᏉ ᏦᎩᎦᏴᎵᎨᎢ. ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏄᏂᏪᏎᎴ ᏇᎵᏲ, ᎠᏂ ᎦᏓ ᎠᎲ ᎣᎦᏕᏗᏱ ᎣᎦᏚᎵᎭ ᏦᎩᎷᏥᎸ; ᏘᏅᏏᏓᏍᏗᏰᏃ ᎥᏝ ᏱᏚᏁᎭ ᎦᎾᏝᎢ ᎤᎾᎵᏍᏓᏴᏂᏓᏍᏗᏱ; ᎤᏣᏘᏰᏃ ᏓᎪᏄᎸ ᎨᎾᏂᏱ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏘᏅᏏᏓᏍᏗ ᏔᎵᏍᎪᎸᏓᏏ ᎪᏌᏂᏱ ᎤᎾᏕᏘᏱ. ᏇᎵᏲᏃ ᎤᏁᏤᎴ ᏦᏩ, ᎯᎠ ᏄᏪᏎᎢ, ᏣᏙᏓ ᎠᎴ ᎢᏣᎵᏅᏟ ᎨᏣᎷᏥ. ᎢᏥᏈᏱ ᎦᏓ ᎠᎲ ᎢᎬᏱᏢ ᏗᏣᎧᎾᏂᏓᏍᏗᏱ ᎠᎭ; ᎣᏌᏂ ᎨᏒ ᎦᏙᎯ ᎤᎾᏕᏗᏱ ᏂᎩᏴᏂᏏ ᏣᏙᏓ, ᎠᎴ ᎢᏣᎵᏅᏟ; ᎪᏌᏂ ᎦᏓ ᎠᎲ ᏫᏓᎾᏁᎳᏓ; ᎢᏳ ᎠᎴ ᏕᎯᎦᏔᎮᏍᏗ ᎩᎶ ᏗᏅᏂᎦᎵᏍᏗ ᎤᎾᏓᏑᏰᏍᏗ, ᎾᏍᎩ ᏗᏆᏤᎵ ᎦᎾᏝᎢ ᏧᎾᎦᏌᏯᏍᏗᏕᎩ ᏂᏕᎲᏁᎸᎭ. ᏦᏩᏃ ᎤᏴᏔᏂᎴ ᎤᏙᏓ ᏤᎦᏈ, ᎠᎴ ᏇᎵᏲ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎤᏪᎧᏁᎢ; ᏤᎦᏈᏃ ᎣᏍᏛ ᎤᏁᏤᎴ ᏇᎵᏲ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎢᎳᎪ ᎢᏣᏕᏘᏴᏛ? ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ, ᎢᎪᎯᏛ ᎠᏆᎴᏂᏙᎸ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎾᏕᏘᏴ; ᎦᏲᎵᏳᏉ, ᎠᎴ ᎤᏲᏉ ᏄᎵᏍᏔᏁᏅ ᎢᎪᎯᏛ ᏓᏆᏕᏘᏴᎲᏒᎢ, ᎠᎴ ᎥᏝ ᏗᎩᎦᏴᎵᎨ ᏚᎾᏕᏘᏴᎲᏒ ᏚᎾᎴᏂᏙᎸ ᏩᎩᏱᎶᎸᎯ ᏱᎩ. ᏤᎦᏈᏃ ᎣᏍᏛ ᎤᏁᏤᎴ ᏇᎵᏲ, ᎠᎴ ᎤᏄᎪᏤ ᎤᏓᏅᏎ ᏇᎵᏲ ᎠᎦᏔᎲᎢ. ᏦᏩᏃ ᎤᏙᏓ ᎠᎴ ᎠᎾᎵᏅᏟ ᏚᏪᎧᏁ ᏧᎾᏁᎳᏗᏍᏗᏱ, ᎠᎴ ᏚᏁᎴ ᎦᏓ ᎢᏥᏈᏱ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ, ᎣᏌᏂ ᎦᏓ ᎠᎲᎢ, ᎳᎻᏏ ᏚᏙᎥᎢ, ᎾᏍᎩᏯ ᏇᎵᏲ ᎤᏁᏨᎢ. ᏦᏩᏃ ᏕᎨᎶᎮ ᎤᏙᏓ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏂᎦᏛ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ, ᏓᏁᎮ ᎤᎾᎵᏍᏓᏴᏗ ᎾᏍᎩᏯ ᏂᏓᏂᎠᏗᏒ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒᎢ. ᎥᏝ ᎠᎴ ᏰᎮ ᎠᎵᏍᏓᏴᏗ ᏂᎬᎾᏛ ᎾᎿ ᎦᏓ ᎠᎲᎢ; ᎤᏣᏘᏰᏃ ᏓᎪᏄᎴᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏈᏱ ᎠᎴ ᎨᎾᏂᏱ, ᏚᏂᏩᎾᎦᎶᏤᎢ, ᏓᎪᏄᎸ ᏂᎦᎵᏍᏙᏗᏍᎨᎢ. ᏦᏩᏃ ᎤᏪᏟᏌᏁ ᏂᎦᏛ ᎠᏕᎸ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲ ᎠᎴ ᎨᎾᏂ ᎦᏓ ᎠᎲ ᏗᎬᏩᏛᏗ ᎨᏒᎢ, ᏓᎬᏩᏓᏁᎲ ᎤᏣᎴᏍᏗ ᎤᏂᏩᏒᎯ; ᏦᏩᏃ ᏇᎵᏲ ᎦᏁᎸ ᏚᏲᎴ ᎠᏕᎸ. ᎿᏉᏃ ᎠᏕᎸ ᎤᎾᏗᏒᏅ ᎢᏥᏈᏱ, ᎠᎴ ᎨᎾᏂᏱ, ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᎬᏩᎷᏤᎴ ᏦᏩ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᎵᏍᏓᏴᏗ ᏍᎩᎥᏏ; ᎦᏙᏃ ᏱᏙᏥᏲᎱᏍᎦ ᎯᎦᏔᎲᎢ? ᎠᏕᎸᏰᏃ ᎤᎾᏗᏒᏅ. ᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎾᏝᎾᎥ ᏗᏥᎧᎲᎦ; ᎢᏥᎾᏝᎾᎥᏃ ᏧᎬᏩᎳᏅᎯ ᏓᏨᏁᎵ, ᎢᏳᏃ ᎠᏕᎸ ᎠᎾᏗᏒᎲᏍᎨᏍᏗ. ᎤᏂᎾᏝᎾᎥᏃ ᏚᎾᏘᏃᎮᎴ ᏦᏩ; ᏦᏩᏃ ᎠᎵᏍᏓᏴᏗ ᏚᏁᎴ ᏚᏁᏟᏴᏍᏓᏁᎴ ᏐᏈᎵ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ; ᎠᎵᏍᏓᏴᏗᏃ ᏚᏪᎳᏍᏔᏁ ᎤᏕᏘᏴᏌᏗᏒᎢ, ᏂᎦᏛ ᎤᏂᎾᏝᎾᎥ ᎾᎯᏳ ᏚᎬᏩᎶᏓᏁᎴᎢ. ᎾᎯᏳᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎤᎵᏍᏆᏛ, ᏔᎵᏁ ᏭᏕᏘᏴᏌᏗᏒ ᎢᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎥᏝ ᏴᏓᏨᏴᏍᎦᎳᏁᎵ ᏣᎬᏫᏳᎯ, ᎾᏍᎩ ᎠᏕᎸ ᏙᎦᏗᏒᏁᎸᎢ; ᎠᎴ ᎾᏍᏉ ᏣᎬᏫᏳᎯ ᏕᏣᎧᎭ ᎦᎾᏝᎢ ᏦᎩᎾᏢᏅᎯ; ᎥᏝ ᎿᏉ ᎪᎱᏍᏗ ᏲᎦᏘᏰᎭ ᎯᎦᏔᎲ ᏣᎬᏫᏳᎯ, ᏦᏥᏰᎸ ᎠᎴ ᎦᏓ ᏙᎩᎲ ᎤᏩᏒ. ᎦᏙᏃ ᏲᏣᏗᏒᎲᏍᎦ ᏕᏍᎩᎦᏅᎢ, ᎠᏴ ᎠᎴ ᎦᏓ ᏙᎩᎲᎢ. ᏍᎩᏩᎯ ᎠᏴ, ᎠᎴ ᎦᏓ ᏙᎩᎲᎢ, ᎠᎵᏍᏓᏴᏗ ᏍᎩᏯᎫᏴᏓᏏ, ᎠᏴᏃ ᎠᎴ ᏦᎦᏤᎵᎦ ᎦᏓ ᏇᎵᏲ ᎣᎩᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᎦᏔ ᏍᎩᎥᏏ ᎾᏍᎩᏃ ᏙᏣᏛᏂᏛᎭ, ᎠᎴ ᏞᏍᏗ ᏦᎩᏲᎱᏒᎩ, ᎠᎴ ᏞᏍᏗ ᏅᏔ ᎢᏳᎵᏍᏔᏅᎩ ᎦᏓ ᎠᎲᎢ. ᏦᏩᏃ ᎤᏩᎯᏎᎴ ᏇᎵᏲ ᏂᎦᏛ ᎦᏙᎯ ᎢᏥᏈᏱ; ᎢᏥᏈᏱᏰᏃ ᎠᏁᎯ ᎠᏂᏏᏴᏫᎭ ᏚᏂᎾᏗᏅᏎ ᏚᏂᎶᎨᏒᎢ, ᏂᎦᎵᏍᏙᏗᏍᎨ ᎤᏣᏘ ᏚᎾᎪᏄᎸᎢ; ᎦᏙᎯᏃ ᏇᎵᏲ ᎤᏤᎵᎦ ᏄᎵᏍᏔᏁᎢ. ᏴᏫᏃ ᎨᏒᎢ, ᏕᎦᏚᎲ ᏚᏪᎧᏂᏙᎴᎢ ᏌᏉ ᎢᏗᏢ ᎤᎵᏍᏘᏂᎸ ᎢᏥᏈᏱ ᏐᎢᏱ ᏭᎵᏍᏘᏂᎸ ᏩᏍᏗ. ᎠᏥᎸ ᎠᏁᎶᎯ ᎤᏂᎲ ᎦᏓ ᎤᏩᏒ, ᎥᏝ ᏳᏩᏎᎢ; ᎠᏥᎸᏰᏃ ᎠᏁᎶᎯ ᎤᏂᎮ ᏇᎵᏲ ᎤᎾᏁᎳᏁᎸᎯ, ᎠᎴ ᎠᎾᎵᏍᏓᏴᏗᏍᎨ ᏇᎵᏲ ᎤᏂᏁᎸᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏱᏚᏂᎾᏗᏅᏎ ᎦᏓ ᏚᏂᎲᎢ. ᎿᏉᏃ ᏦᏩ ᎯᎠ ᏂᏚᏪᏎᎴ ᏴᏫ, ᎬᏂᏳᏉ ᎪᎯ ᎢᎦ ᏥᎩ, ᎢᏳᏩᎯ, ᎠᎴ ᎦᏓ ᎢᏥᎲᎢ, ᏇᎵᏲ ᏥᏩᎯᏏ; ᎬᏂᏳᏉ ᎠᏉ ᎠᎭ ᎤᎦᏔ ᎢᏥᎩᏍᏗ, ᎠᎴ ᏓᏥᏫᏏ ᎦᏙᎯ. ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎾᏍᎩ ᎤᏁᏉᏨᎯ ᎯᏍᎩᏁ ᎪᏣᎴᏛ ᎡᏥᏁᏗ ᎨᏎᏍᏗ ᏇᎵᏲ, ᏅᎩᏃ ᎢᏳᏓᏛᎯ ᎢᏨᏒ ᎢᏣᏤᎵ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏠᎨᏏ ᎠᏫᏍᏙᏗ, ᎠᎴ ᎢᏣᎵᏍᏓᏴᏗ, ᎠᎴ ᏕᏣᏓᏘᎾᎥ ᎤᎾᎵᏍᏓᏴᏗ, ᎠᎴ ᏗᏤᏥ ᏗᏂᏲᎵ ᎤᎾᎵᏍᏓᏴᏗ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏂᎯ ᏕᏍᎩᏍᏕᎸᎡᎸ ᏙᏨᏅᎢ; ᎣᏍᏛ ᏍᎩᏯᏓᏅᏖᏗᏱ ᎢᏨᏩᏛᏏ ᏣᎬᏫᏳᎯ, ᏇᎵᏲᏃ ᏍᎩᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ. ᏦᏩᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏄᏩᏁᎴ ᎦᏓ ᎠᎲ ᎢᏥᏈᏱ ᎪᎯ ᎢᏯᏍᏘ ᏇᎵᏲ ᎯᏍᎩᏂ ᎪᏣᎴᏛ ᎠᏥᏗᏱ; ᎠᏥᎸ ᎠᏁᎶᎯ ᎤᎾᏤᎵᎦ ᎦᏓ ᎤᏩᏒ ᎥᏝ ᎾᏍᎩ ᏇᎵᏲ ᎤᏤᎵᎦ ᏱᏄᎵᏍᏔᏁᎢ. ᎢᏏᎵᏃ ᎢᏥᏈᏱ ᎠᏁᎮᎢ, ᎪᏌᏂ ᏚᏙᎥᎢ; ᎠᎴ ᏧᎾᏤᎵᎪᎯ ᏕᎨᏌᏗᏎ ᎾᎿᏂ, ᎠᎴ ᎤᎾᎥᏎᎢ, ᎠᎴ ᎤᏂᏁᏉᏤ ᎤᏣᏘ. ᏤᎦᏈᏃ ᎦᎵᏆᏚ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴ ᎢᏥᏈᏱ; ᎾᏍᎩᏃ ᏂᎪᎯᎸ ᎤᎴᏂᏙᎸ ᏤᎦᏈ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᎦᎵᏉᎩᎦᎵ ᏄᏕᏘᏴᎮᎢ. ᎿᏉᏃ ᎤᏍᏆᎸᎯᏗᏎ ᎢᏏᎵ ᎤᏲᎱᎯᏍᏗᏱ; ᏭᏯᏅᎮᏃ ᎤᏪᏥ ᏦᏩ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗᏱ ᎬᏩᏛᎡᎴᏍᏗ, ᏥᎦᎶ ᏍᏆᏏᏄᏴᏓᏏ, ᎣᏍᏛᏃ ᎠᎴ ᏚᏳᎪᏛ ᏂᏍᏆᏛᏂᏏ; ᏞᏍᏗ ᎢᏥᏈᏱ ᏍᎩᏂᏌᏅᎩ. ᏗᎩᎦᏴᎵᎨᏍᎩᏂ ᎢᏧᎳᎭ ᎣᏥᏂᏝᎡᏍᏗ, ᎠᎴ ᎢᏥᏈᏱ ᏍᎩᎾᏫᏛᎲᎭ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏓᏂᏐᏗᏱ ᏍᎩᏂᏌᏅᎭ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏂᏣᏪᏒ ᎾᏍᎩᏯ ᏅᏓᎦᏛᏁᎵ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏍᏆᏎᎵᏓᏏ. ᎤᏎᎵᏓᏁᎴᏃ. ᏭᏗᏌᏓᏕᏃ ᎠᏙᎳᏅᏍᏗᏱ ᎤᏍᎪᎵ ᎤᎵᏍᏕᎸᏕᎢ. ᎠᏯᏙᎸᎢ 48 ᎯᎠᏃ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ, ᎣᏂ ᏦᏩ ᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᏣᏙᏓ ᎤᏢᎦ; ᏧᏪᏥᏃ ᎢᏧᎳ ᏚᏘᏅᏎᎢ, ᎾᏍᎩ ᎻᎾᏌ ᎠᎴ ᎢᏆᎻ. ᎩᎶᏃ ᎤᏃᏁᎴ ᏤᎦᏈ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᏤᏥ ᏦᏩ ᏣᎷᏤᎵᎯᎭ; ᎢᏏᎵᏃ ᎤᎵᏍᏓᏲᏔᏁᎢ, ᎠᎴ ᎠᏤᏍᏙᎩᎯ ᎤᏪᏁᎢ. ᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎬᏂᎨᏒ ᎾᏆᏛᏁᎸᎩ ᎳᏏ ᏚᏙᎥ ᎨᎾᏂᏱ, ᎠᎴ ᎣᏍᏛ ᎠᎩᏁᏤᎸᎩ. ᎠᎴ ᎯᎠ ᎢᏪᏎᎸᎩ, ᎬᏂᏳᏉ ᏣᏁᏉᏣᏘ ᏅᏓᎬᏴᏁᎵ, ᎠᎴ ᏓᎬᏁᏉᎢ, ᎠᎴ ᎤᏂᏧᏈᏍᏗ ᏛᏫ ᏅᏓᎬᏴᏁᎵ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎦᏙᎯ ᏓᎦᏥᏁᎵ ᏣᏁᏢᏔᏅᎯ, ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ. ᎿᏉᏃ ᎠᏂᏔᎵ ᏗᏤᏥ ᎢᏆᎻ, ᎠᎴ ᎻᎾᏌ ᎠᏂ ᎢᏥᏈᏱ ᎨᏣᏕᏁᎸᎯ, ᎠᏏ ᎢᏥᏈᏱ ᏂᎬᎷᏤᎲᎾ ᏥᎨᏒᎩ, ᎠᏴ ᏗᏆᏤᎵᎦ; ᎾᏍᎩᏯ ᎷᏈᏂ, ᎠᎴ ᏏᎻᏯᏂ, ᎾᏍᎩ ᏗᏆᏤᎵᎦ ᎨᏎᏍᏗ. ᏂᎯᏃ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎨᏣᏕᏁᏗ ᎨᏒ, ᏨᏒ ᏗᏣᏤᎵᎦ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᎾᎵᏅᏟ ᏚᎾᏙᎥ ᏕᎨᎪᏍᎨᏍᏗ ᎤᎾᏤᎵᎦ ᏂᎨᎬᏁᎲᎢ. ᎠᏴᏃ ᏇᎵᏂ ᏨᏛᎩᎶᏒᎩ ᎴᏥᎵ ᏂᎦᏔᎲ ᎤᏲᎱᏒᎩ ᎨᎾᏂᏱ, ᎦᎢᏒᎢ, ᏑᏟᎶᏛᏉ ᎢᏴᏛ ᎠᎩᎷᎸ ᎢᏆᏓ ᏩᎩᎷᎯᏍᏗᏱ; ᎠᎴ ᎾᎿ ᏥᏂᏌᏅᎩ ᎢᏆᏓ ᏫᎦᏅᏅ, ᎾᏍᎩ ᎦᏚᏱ ᏥᏚᏙᎥ. ᎢᏏᎵᏃ ᏚᎪᎮ ᏦᏩ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᎯᎠ? ᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎠᏴ ᏗᏇᏥ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏂ ᏗᎩᎧᏁᎸᎯ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏗᏍᏆᏘᏃᎯᏏ, ᎣᏍᏛᏃ ᏙᏓᏥᏁᏤᎵ. ᎢᏏᎵᏃ ᏗᎦᏙᎵ ᎿᏉ ᏧᏍᎪᎸᎢ ᎨᏎ ᎠᎦᏴᎵᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎠᎴ ᎥᏝ ᎬᏩᎪᏩᏛᏗ ᏱᎨᏎᎢ. ᎾᎥᏃ ᏚᏘᏃᎮᎴᎢ; ᏚᏔᏪᏙᏁᏃ, ᎠᎴ ᏚᏄᎶᎴᎢ. ᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᏣᎧᏛ ᎠᎩᎪᏩᏛᏗᏱ ᎥᏝ ᏱᎦᏓᏅᏖᏍᎨᎢ; ᎬᏂᏳᏉᏃ ᎤᏁᎳᏅᎯ ᏗᏤᏥ ᎾᏍᏉ ᏗᏥᎪᏩᏛᏗᏱ ᎾᏋᏂᏏ. ᏦᏩᏃ ᏚᏪᎧᎲᏎ [ᏤᎦᏈ] ᏗᎧᏂᎨᏂ ᎠᏰᎵ ᏓᏂᏙᎬᎢ, ᎠᎴ ᎡᎳᏗ ᏄᏛᏁᎴ ᎦᏙᎯ ᎢᏴᏛ ᎤᎵᏯᏍᏚᏁᎢ. ᏦᏩᏃ ᎢᏧᎳ ᏚᏬᏯᏁᏎᎢ, ᎢᏆᎻ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏯᏁᏍᏔᏁᎢ ᎢᏏᎵ ᎠᎦᏍᎦᏂᏗᏢ ᎨᏒ ᎤᏪᎧᏁᎢ, ᎻᎾᏌᏃ ᎠᎦᏍᎦᏂᏗᏢ ᎤᏬᏯᏁᏍᏔᏁᎢ ᎢᏏᎵ ᎠᎦᏘᏏᏗᏢ ᎤᏪᎧᏁᎢ, ᎠᎴ ᎾᎥ ᏚᏘᏃᎮᎴᎢ. ᎢᏏᎵᏃ ᎠᎦᏘᏏᏗᏢ ᎤᏙᏯᏅᎯᏕᎢ, ᎠᎴ ᎢᏆᎻ ᎠᏍᎪᎵ ᎤᏏᏔᏕᎢ, ᎾᏍᎩ ᎣᏂ ᎡᎯ ᏥᎨᏎᎢ, ᎠᎦᏍᎦᏂᏃ ᎢᏗᏢ ᎻᎾᏌ ᎠᏍᎪᎵ ᎤᏏᏔᏕᎢ, ᎠᏙᎴᎰᏍᎨ ᏂᏕᎬᏁᎲ ᏧᏬᏰᏂ; ᎻᎾᏌᏰᏃ ᎤᏓᏂᎵᎨ ᎨᏎᎢ. ᎣᏍᏛᏃ ᎤᏁᏤᎴ ᏦᏩ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᎦᏔᎲ ᎤᏁᏙᎸᎯ ᏥᎩ ᏗᎩᎦᏴᎵᎨ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏇᎶᎸᎯ ᏥᎩ ᎠᏆᎴᏂᏙᎸ ᎢᎪᎯᏛ ᎪᎯ ᎨᏒ ᎢᏯᏍᏗ, ᏗᎧᎿᏩᏗᏙᎯ ᎾᏍᎩ ᏄᏓᎴᏒ ᎤᏲ ᎠᏊᏓᎴᏛ ᏥᎩ, ᎣᏍᏛ ᏫᏂᏓᏛᏂᏏ ᎯᎠ ᎠᏂᏫᏄᏣ; ᎠᎴ ᎠᏴ ᏓᏆᏙᎥ ᏫᏓᎾᏙᏍᏓ, ᎠᎴ ᏚᎾᏙᎥ ᏗᎩᎦᏴᎵᎨ ᎠᏆᎭᎻ ᎠᎴ ᎡᏏᎩ; ᎠᎴ ᎤᏂᏣᏘ ᏫᎾᎾᎵᏍᏓ ᎾᎿ ᎠᏰᎵ ᎨᏒ ᎡᎶᎯ. ᏦᏩᏃ ᎡᏙᎴᎰᏒ ᎤᏙᏓ ᎢᏆᎻ ᎠᏍᎪᎵ ᎠᎦᏘᏏᏗᏢ ᎤᏏᏔᏛᎢ ᎡᏍᎦ ᎤᏰᎸᏁᎢ; ᎠᎴ ᎤᏌᎳᏓᏁ ᎤᏙᏓ ᎤᏬᏰᏂ, ᎣᏏᏘᏴᏍᏗᏱ ᎢᏆᎻ ᎠᏍᎪᎵ ᎣᏏᏔᏛᎢ, ᎠᎴ ᎻᎾᏌ ᎠᏍᎪᎵ ᏭᏏᏔᏗᏍᏗᏱ. ᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎥᏞᏍᏗ ᎡᏙᏓ; ᎯᎠᏰᏃ ᎢᎬᏱ ᎤᏕᏅᎯ; ᎯᎦᏘᏍᏗᏢ ᎾᏍᎩ ᎠᏍᎪᎵ ᎯᏯᏏᏔᏓ. ᎤᏙᏓᏃ ᏚᏢᏫᏎᎴ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏥᎦᏔᎭ ᎠᏇᏥ, ᏥᎦᏔᎭ; ᎾᏍᎩ ᎾᏍᏉ ᎤᏂᏣᏘ ᏴᏫ ᏅᏓᎦᎵᏍᏔᏂ, ᎠᎴ ᎾᏍᏉ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ; ᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎤᏅᏟ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎡᏍᎦᏉ ᎾᏍᎩ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎤᏂᏧᏈᏍᏗ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏅᏛᎾᎵᏍᏔᏂ. ᎠᎴ ᎣᏍᏛ ᏚᏁᏤᎴ ᎾᎯᏳ ᎢᎦ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᎨᏨᏗᏍᎨᏍᏗ ᎢᏏᎵ ᎣᏍᏛ ᏓᎾᏓᏁᏤᎮᏍᏗ, ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎤᏁᎳᏅᎯ ᎢᏆᎻ ᎠᎴ ᎻᎾᏌ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏫᏂᏨᎦ; ᎠᎴ ᎢᏆᎻ ᎢᎬᏱ ᎤᎴᏓᏁᎴ ᎻᎾᏌ. ᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎬᏂᏳ ᏓᏥᏲᎤᏏ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ, ᎠᎴ ᏔᎵᏁ ᏫᏙᏛᏣᏘᏃᎵ ᏗᏥᎦᏴᎵᎨ ᏧᎾᏤᎵ ᎦᏓ ᏗᎲᎢ. ᎠᎴ ᎾᏍᏉ ᎠᏴ ᏌᏉ ᎢᏯᏯᏙᎸᎯ ᎤᏓᎪᎾᏛᏗ ᏂᎯ ᎬᎥᏏ, ᎡᏍᎦ ᎢᏣᎵᏅᏟ, ᎾᏍᎩ ᎠᏂᎡᎼᎵ ᎦᏥᎩᎡᎸᎯ ᎠᏋᏔᏅᎯ ᎠᏆᏤᎵ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎠᎴ ᎠᏆᏤᎵ ᎦᎶᏣᏗ. ᎠᏯᏙᎸᎢ Ꮞ9 ᏤᎦᏈᏃ ᏫᏚᏯᏅᎮ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᏓᏟᏌ, ᎾᏍᎩ ᎢᏳᏃᏁᏗᏱ ᏅᏗᏣᎵᏍᏓᏁᎵᏒ ᎣᏂ ᎠᎵᏰᎢᎵᏎᏍᏗ. ᎢᏣᏓᏟᏌ, ᎠᎴ ᎢᏣᏛᏓᏍᏓ, ᏂᎯ ᏤᎦᏈ ᏧᏪᏥ; ᎠᎴ ᎡᏣᏛᏓᏍᏓᏏ ᎢᏏᎵ ᎢᏥᏙᏓ. ᎷᏈᏂ, ᏂᎯ ᎢᎬᏱ ᏍᏆᏕᏁᎸᎯ, ᎠᏆᎵᏂᎬᎬᎢ, ᎠᎴ ᎠᏓᎴᏂᏍᎬ ᎠᏆᎵᏂᎬᎬᎢ, ᎢᎬᏱ ᎦᏙᎩ ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎢᎬᏱ ᎦᏙᎩ ᎤᎵᏂᎩᏛ ᎨᏒᎢ; ᎠᎹ ᏥᎾᏩᎿ ᎾᏍᎩᏯ ᏂᏣᎿ, ᎥᏝ ᎢᎬᏱ ᎯᏙᎩ ᏱᎨᏎᏍᏗ, ᏂᎦᎵᏍᏙᏗᎭ ᏣᏙᏓ ᎤᏂᏏᏗᏱ ᏫᏣᎷᏨᎢ; ᎿᏉᏃ ᎾᏍᎩ ᏣᏐᏢᎢᏍᏔᏁᎢ; ᎠᏆᏤᏍᏙᎩᎯ ᏭᎷᏤᎢ. ᏏᎻᏯᏂ ᎠᎴ ᎵᏫ ᏗᎾᏓᏅᏟᏉ; ᎡᎯᏍᏗ ᎢᏗᏓᏛᏁᏙᏗ ᏚᏅᏴ ᎠᏁᎲᎢ. ᎠᏆᏓᏅᏙ, ᏞᏍᏗ ᎠᏂᏙᎾᎥ ᏫᏣᎷᏨᎩ; ᎾᏍᎩ ᏓᏂᎳᏫᎥ ᏞᏍᏗ ᏣᏖᎳᏛᎩ, ᎠᏆᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎤᏂᏔᎳᏬᏍᎬᏰᏃ ᏴᏫ ᎤᏂᎸᎩ, ᎠᎴ ᎤᏅᏒ ᎠᎾᏓᏅᏖᏍᎬ ᎾᎾᏛᏁᎲ ᏩᎦ ᏚᏅᏏᎳᏛ ᏚᏂᎦᎵᏒᎩ. ᎠᏍᎦᏨᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᏂᏔᎳᏬᏍᎬᎢ, ᎤᏍᎦᏎᏗᏳᏰᏃ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ ᎤᏂᎿᎸᏒᎢ, ᎡᎯᏍᏗᏳᏰᏃ ᎢᏯᏓᏛᏁᎯ ᎨᏒᎩ, ᏤᎦᏈᏱ ᎨᏒ ᏔᎵ ᎤᏓᎦᏥᏯᏗ, ᎠᎴ ᎢᏏᎵᏱ ᎨᏒ ᏓᎦᏥᏯᏗᎦᎴᏯᏍᏔᏂ. ᏧᏓ, ᏂᎯ ᎾᏍᎩ ᎢᏣᎵᏅᏟ ᏨᏛᏂᎸᏉᏔᏂ; ᏂᎯ ᏦᏰᏂ ᎨᏣᏍᎦᎩ ᎠᏂᎩᎵᎨᏂ ᏕᎯᏂᏴᏎᏍᏗ, ᏣᏙᏓ ᏧᏪᏥ ᎡᎳᏗ ᏂᎨᏣᏛᏁᎮᏍᏗ. ᏧᏓ ᏢᏓᏥ ᎤᏃᏕᎾ ᎤᏪᏥ; ᎠᏇᏥ, ᎠᎵᏍᏓᏴᏗ ᎯᏂᏴᏛ ᏨᏕᏨ; ᎤᏗᏌᏓᏛᎩ, ᎡᎳᏗ ᎤᏂᏏᏅᎩ, ᏢᏓᏥ ᏥᎾᏛᏁᎰ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎤᏃᏕᎾ ᏢᏓᏥ ᎾᏍᎩᏯᎢ; ᎦᎪ ᎾᏍᎩ ᏓᏳᏖᏍᏔᏂ. ᎠᏙᎳᏅᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏒᎦᎶᏗᏍᏗ ᎥᏝ ᎤᏓᏅᎡᏗ ᏱᎨᏎᏍᏗ ᏧᏓ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏢᏙᏗ ᎥᏝ ᎤᏓᏅᏍᏗ ᏱᎨᏎᏍᏗ ᏚᎳᏍᎬ ᎠᏰᎵ, ᎬᏂ ᏌᎶ ᎦᎷᏨᎭ; ᎠᎴ ᎾᏍᎩ ᎬᏬᎯᏳᎲᏍᎨᏍᏗ ᏴᏫ. ᎤᏤᎵᎦ ᏗᎦᎵᎠᏅᎯᏛ ᎠᎩᎾ ᎤᏖᎸᎳᏛ ᎤᏪᎵᏌᏛᏅᎩ, ᎠᎴ ᎤᏤᎵᎦ ᎠᎩᏏ ᏗᎦᎵᎠᏅᎯᏛ ᎤᏪᏥ ᎦᎸᏉᏗ ᎤᏖᎸᎳᏛ ᎤᏪᎵᏌᏛᏅᎩ, ᏧᏄᏬ ᎩᎦᎨ ᎠᏗᏔᏍᏗᏱ ᏚᏮᎩᎶᎥᎩ, ᎠᎴ ᏖᎸᎳᏗ ᎤᏂᎩᎬᎯ ᏚᏮᎩᎶᎥᎩ ᏧᏄᏬᎢ. ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏗᏔᎲ ᏗᎦᏙᎵ ᏗᎩᎦᎨᎢᏳ ᎨᏎᏍᏗ, ᎤᏅᏗᏃ ᎤᏗᏔᎲ ᏕᎦᏄᏙᎬ ᏧᏁᎩᏳ ᎨᏎᏍᏗ. ᏤᏆᎳᏂ ᎠᎺᏉᎯ ᏥᏳ ᏗᏔᎳᏗᏍᏗᏱ ᎡᎮᏍᏗ; ᎠᎴ ᏥᏳ ᏗᏔᎳᏗᏍᏗᏱ ᎨᏎᏍᏗ ᎾᎿᏂ; ᎠᎴ ᎾᏍᎩ ᎤᏤᎵᎪᎯ ᎠᏟᎶᎥ ᏌᏙᏂ ᏩᏍᏕᏍᏗ. ᎢᏏᎦ ᏗᎦᎵᎠᏅᎯᏛ ᎤᎵᏂᎩᏛ, ᏗᏴᏙᏗᏱ ᎠᏰᎵ ᎦᏅᎦ. ᎠᎴ ᎤᏙᎴᎰᏎ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎣᏏᏳ ᎨᏒᎢ, ᎠᎴ ᎦᏙᎯ ᎣᏏᏳ ᎨᏒᎢ; ᎠᎴ ᎦᏅᏬ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᎦᏃᎭᏢᏙᏗᏱ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᎠᏰᎵ ᎠᎫᏱᏍᎩ ᏄᎵᏍᏔᏁᎢ. ᏕᏂ ᏕᎫᎪᏓᏁᎮᏍᏗ ᏧᏤᎵ ᏴᏫ, ᎾᏍᎩᏯ ᏌᏉ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ. ᏕᏂ ᎢᎾᏛ ᎨᏎᏍᏗ ᏅᏃᎯ ᎦᏅᎨᏍᏗ, ᎢᎾᏛ ᎤᏅᏣᏛ ᏅᏃᎯ ᎦᏅᎨᏍᏗ, ᎾᏍᎩ ᏐᏈᎵ ᎦᏗᎨᏂ ᎠᏍᎦᎶᎩ, ᎤᎩᎸᏗᏃ ᏛᎰᏛᏥ. ᏱᎰᏩ, ᏂᎯ ᏣᏓᏍᏕᎸᏗ ᎨᏒ ᎠᎩᎦᏘᏛ. ᎦᏗ ᏑᎾᏓᏡᎩ ᏓᎿᏩ ᎠᏁᏙᎯ ᏓᎬᏩᏕᏯᏙᏔᏂ, ᎠᏎᏃ ᎾᏍᎩ ᎣᏂ ᎠᏁᎩ ᏓᎨᎯᏒ ᏙᏛᏕᏯᏙᏔᏂ. ᎠᏌ, ᎠᎵᏍᏓᏴᏗ ᎤᏛᎯᏎᎸᎯ ᎦᎵᏦᎯᏗᏳ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᎠᎵᏍᏓᏴᏗ ᎤᏛᎯᏎᎮᏍᏗ. ᏁᏩᏔᎵ, ᎠᏫ ᎠᎩᏏ ᎨᎵᏌᏕᏛ ᎾᏍᎩᏯ; ᎤᏬᏚᎯ ᎦᏬᏂᏍᎩ. ᏦᏩ ᎤᏣᏘ ᎠᏓᏛᏍᎩ ᎤᏩᏂᎦᎸᎢ, ᎤᏣᏘ ᎠᏓᏛᏍᎩ ᎤᏩᏂᎦᎸ ᎠᎹ ᎦᏄᎪᎬ ᎾᎥ ᏧᏰᎪᎢ; ᎾᏍᎩ ᏚᏩᏂᎦᎸ ᎠᏐᏴ ᏥᏓᏓᏬᎯᎳᏗᏍᎪᎢ. ᎤᏣᏘ ᎡᎯᏍᏗ ᎬᏩᏓᏅᏓᏗᏍᏔᏅ, ᎠᎴ ᎦᏂ ᏚᎾᎵᏍᏙᎸ, ᎠᎴ ᎬᏩᎭᎷᏩᏕᎬᎩ ᎦᏂ ᏗᏂᏙᎯ. ᎠᏎᏃ ᎤᏤᎵᎦ ᎦᎶᏣᏗ ᎤᎵᏂᎩᏛ ᎨᏒ ᏅᏩᏍᏛᏉ, ᎠᎴ ᏗᎧᏃᎨᏂ ᎠᎴ ᏧᏬᏰᏂ ᏚᎵᏂᎪᎯᏍᏓᏁᎲᎩ ᎤᎵᏂᎩᏛ [ᎤᏁᎳᏅᎯ] ᏤᎦᏈ ᎤᏤᎵᎦ; ᎾᎿ ᏗᏓᎴᎲᏍᎦ ᎠᏫ ᏗᎦᏘᏯ, ᏅᏯ ᎢᏏᎵ ᎤᏤᎵᎦ. ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏣᏙᏓ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏣᏍᏕᎸᏗ ᏥᎩ; ᎠᎴ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ, ᎾᏍᎩ ᎣᏍᏛ ᎢᏣᏛᏁᏗ ᏥᎩ, ᏣᏁᎲ ᎣᏍᏛ ᎨᏒ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎣᏍᏛ ᎨᏒ ᎠᎹᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎾᏍᎩ ᎡᎳᏗᏢ ᏥᎦᏁᎭ, ᎣᏍᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏓᎾᏓᏍᏛᏍᎬ ᎠᎴ ᏓᏂᏁᎵᎬᎢ. ᏣᏙᏓ ᎣᏍᏛ ᎤᏁᏨ ᎤᏓᎪᎾᏛᏔᏅ ᎣᏍᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏙᏓᎸ ᏂᏓᎵᏍᏆᏗᏍᎬᎾ, ᎠᎴ ᎤᏚᎸᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏙᏓᎸ ᏂᏓᎵᏛᏗᏍᎬᎾ; ᏦᏩ ᎠᏍᎪᎵ ᎤᎷᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᏚᎢ ᎠᏍᎪᎵ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᎠᏁᎲ ᎠᎦᏓᏓᎴᏔᏅᎯ ᏥᎨᏒᎩ. ᏇᏂ ᎦᏓᎦᎸᎥᏍᎨᏍᏗ ᏩᏯ ᎾᏍᎩᏯᎢ; ᏑᎾᎴ ᎦᏰᏍᎨᏍᏗ ᎤᏂᏴᏛ, ᎤᏒᏃ ᎤᏓᏬᏅᏛ ᎠᏯᏙᎯᎮᏍᏗ. ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᏂᏙᏓ ᏥᏚᏬᏁᏔᏁᎢ, ᎠᎴ ᎣᏍᏛ ᏥᏚᏁᏤᎴᎢ; ᎠᏂᏏᏴᏫᎭ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏄᏍᏕ ᏚᏁᏤᎴᎢ. ᎠᎴ ᏚᏁᏤᎴᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏗᏆᏤᎵᎦ ᏴᏫ ᏫᏄᎾᏛᏅ ᎠᏆᏖᎳᏗᏗ; ᏗᎩᎦᏴᎵᎨ ᏕᎨᏥᏂᏌᎲ ᏍᎩᏂᏌᏅᎭ, ᎢᏆᎶᏂ ᎠᎯᏗ ᎤᎶᎨᏛ ᎤᏍᏓᎦᎸᎢ, ᎹᎩᏈᎳ ᎦᎶᎨᏒ ᎤᏍᏓᎦᎸᎢ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᎨᎾᏂᏱ ᎦᏙᎯ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᏩᏎᎢ, ᎢᏆᎶᏂ ᎠᎯᏗ ᎤᎶᎨᏒ ᏧᎵᏠᏯᏍᏕᎢ, ᎾᏍᎩ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᏗᏓᏂᏐᏗᏱ. ᎾᎿ ᎡᏆᎭᎻ ᎠᎴ ᎤᏓᎵᎢ ᏎᎵ ᏚᏂᏂᏌᏁᎢ; ᎾᎿ ᎡᏏᎩ ᎠᎴ ᎵᏇᎩ ᎤᏓᎵᎢ ᏚᏂᏂᏌᏁᎢ; ᎠᎴ ᎾᎿ ᎵᎠ ᏥᏂᏌᏅᎩ. ᎾᏍᎩ ᏠᎨᏏ, ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸ ᎮᏗ ᏧᏪᏥ ᎨᏥᏩᎯᏎᎴᎢ. ᏤᎦᏈᏃ ᎤᏍᏆᏛ ᏕᎧᏁᏤᎲ ᏧᏪᏥ, ᎤᏓᏯᏍᏔᏁ ᎠᏤᏍᏙᎩᎯ, ᎠᎴ ᎤᏲᎱᏎᎢ, ᎠᎴ ᏧᏤᎵᎦ ᏴᏫ ᏫᏄᎾᏛᏅ ᏭᏖᎳᏗᎴᎢ. ⁠ ᎠᏯᏙᎸᎢ 50 ᏦᏩᏃ ᎤᏙᏓ ᎤᎧᏛ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᎾᎿ ᏚᏠᏱᎴᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ. ᏦᏩᏃ ᏚᏁᏤᎴ ᏧᏅᏏᏓᏍᏗ ᏗᎾᏓᏅᏫᏍᎩ ᎦᏩᏒᎩ ᎤᏅᏙᏗᏱ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ ᎤᏙᏓ; ᏗᎾᏓᏅᏫᏍᎩᏃ ᎤᏂᏍᏆᏂᎪᏔᏁ ᎢᏏᎵ. ᏅᎦᏍᎪᎯᏃ ᏧᏒᎯᏛ ᎤᏂᎦᏘᏕᎢ; ᎾᏍᎩᏰᏃ ᎢᎪᎯᏛ ᎠᏂᎦᏘᏗᏍᎨ ᎦᏩᏒᎩ ᎬᏗ ᎠᏂᏍᏆᏂᎪᏗᏍᎬᎢ; ᎢᏥᏈᏱᏃ ᎦᎵᏆᏍᎪᎯ ᏧᏒᎯᏛ ᎬᏩᏍᎪᏂᎴᎢ ᎿᏉᏃ ᎢᎪᎯᏛ ᎠᏥᏍᎪᏂᏍᏗ ᎨᏒ ᎤᎵᏍᏆᏛ, ᏦᏩ ᏚᏁᏤᎴ ᏇᎵᏲ ᏚᏓᏘᎾᎥᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗᏱ ᎢᏨᏩᏛᎡᎴᏍᏗ, ᏇᎵᏲ ᎡᏥᏁᏥ, ᎯᎠ ᏁᏥᏪᏏ; ᎡᏙᏓ ᎠᏆᏎᎵᏙᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ, ᎠᎩᏲᎱᏏᏗ; ᎢᎬᏂᏐᏗᏱ, ᎾᏍᎩ ᎨᎾᏂᏱ ᎠᏆᏍᎪᏒᎯ, ᎾᎿ ᏍᎩᏂᏌᏅᎭ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎨᎾ, ᎡᏙᏓ ᏥᏂᏌᏄᎦ, ᏔᎵᏁᏃ ᎢᏥᎷᏨᎭ. ⁠ ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎮᎾ, ᎯᏂᏌᏄᎦ ᏣᏙᏓ, ᎾᏍᎩᏯ ᏄᏪᏒᎢ ᏣᏎᎵᏙᏔᏅᎢ. ᏦᏩᏃ ᎤᏪᏅᏎ ᎤᏂᏌᏅᏎ ᎤᏙᏓ; ᎢᏧᎳᎭᏃ ᎤᏁᏅᏎ ᏂᎦᏛ ᏇᎵᏲ ᏧᏅᏏᏓᏍᏗ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎦᏁᎸ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᏦᏩ ᏚᏓᏘᎿᎥᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ; ᏧᏁᏥᏍᎩᏂᏃᏅ ᏧᎾᏍᏗᎦ, ᎠᎴ ᎠᏫ ᏧᎾᏤᎵ, ᎠᎴ ᏩᎦ ᏧᎾᏤᎵ ᎪᏌᏂᏱ ᏚᏂᎧᎯᏰᎢ. ᎠᎴ ᎤᏁᎳᏛᏎ ᏓᏆᎴᎷ ᎠᎴ ᏐᏈᎵ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏧᏈᏯ ᎨᏎ ᎤᎾᏓᏡᏩᏗᏒᎢ. ᎠᏔᏗᏃ ᎤᎦᏔᏙᎥᏙᏗᏱ ᏭᏂᎷᏤᎢ, ᎾᏍᎩ ᏦᏓᏂ ᏍᎪᏂᏗᏢ ᏥᎩ, ᎾᎿᏃ ᎤᏣᏘ ᏚᏂᏴᎳᏎᎢ ᎡᎯᏍᏗ ᏚᎾᏠᏱᎴᎢ; ᎠᎴ ᎦᎵᏉᎩ ᏧᏒᎯᏛ ᎤᏙᏓ ᎤᏂᏍᎪᏂᏍᏗᏱ ᏄᏩᏁᎴᎢ. ᎾᎿᏃ ᎠᏁᎯ ᎠᏂᎨᎾᏂ ᎤᏂᎪᎲ ᎠᏔᏗ ᎤᎦᏔᏙᎥᏙᏗᏱ ᏓᏂᏴᎬᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᏧᏂᏴᎵᏍᏗ ᏄᎾᎵᏍᏓᏏ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏈ-ᎠᏁᎯ-ᏧᏂᏴᎳᏍᏗᏱ ᏚᏃᎡ ᎾᎿᏂ, ᎾᏍᎩ ᏦᏓᏂ ᏍᎪᏂᏗᏢ ᏥᎩ. ᏧᏪᏥᏃ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸ ᏂᎬᏩᏛᏁᎴᎢ; ⁠⁠ ᏧᏪᏥᏰᏃ ᎨᎾᏂ ᎦᏙᎯ ᏫᎬᏩᏅᏍᏔᏁᎢ, ᎠᎴ ᎤᏍᏓᎦᎸ ᎹᏈᎳ ᎦᎶᎨᏒ ᎬᏩᏂᏌᏁᎢ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏢ ᏥᎩ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᏩᏎ ᏠᎨᏏ ᎬᏩᏠᏯᏍᏗ, ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏓᏂᏐᏗᏱ, ᎾᏍᎩ ᎢᏆᎶᏂ ᎠᎯᏗ ᏧᏩᎯᏎᎴᎢ. ᏦᏩᏃ ᎢᏥᏈᏱ ᏫᎤᎶᏎᎢ, ᎤᏩᏒ ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏂᎦᏛ ᎢᏧᎳᎭ ᎤᏁᏅᏛ ᎤᏙᏓ ᎤᏂᏂᏌᏁᏅ, ᎾᏍᎩ ᎿᏉ ᎤᏙᏓ ᎤᏂᏌᏅ. ᏦᏩᏃ ᎠᎾᎵᏅᏟ ᎤᏂᎪᎲ ᎤᏂᏙᏓ ᎤᏲᎱᏒᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏦᏩ ᏱᎩ ᎤᏲ ᏱᏂᎬᎾᏕᎦ, ᎠᎴ ᏴᎦᏞᏥᏏ ᏂᎦᎥ ᎤᏲ ᏁᏛᏁᎸᎢ. ᎤᎾᏓᏅᏎᏃ ᎯᎠ ᏫᏄᏂᏪᏎᎴ ᏦᏩ; ᏣᏙᏓ ᎤᏁᏨᎩ ᎠᏏᏉ ᎾᏲᎱᏍᎬᎾ ᏥᎨᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᏁᏥᏪᏎᎸᎭ ᏦᏩ, ᏗᎨᎯᎲᏏ ᎢᏣᎵᏅᏟ ᎤᏂᏍᎦᏅᏨᎢ, ᎤᏲ ᏄᎾᏛᏁᎸᎢ; ᏂᎯᏰᏃ ᎤᏲ ᏂᎨᏨᏁᎸᎩ. ᎾᏍᎩᏃ ᎿᏉ ᏣᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ ᎣᎩᏅᏏᏓᏍᏗ ᏗᎨᏍᎩᎲᏏ ᎣᎩᏍᎦᏅᏨᎢ. ᏦᏩᏃ ᏚᏠᏱᎴ ᎬᏩᏬᏁᏔᏅ. ᎠᎴ ᎠᎾᎵᏅᏟ ᎤᏁᏅᏎ ᎾᏍᏉ ᎠᎴ ᎡᎳᏗ ᏫᏂᎬᏩᏛᏁᎴᎢ; ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎬᏂᏳᏉ ᏂᎯ ᏍᎩᏅᏏᏓᏍᏗ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᎠᏴᏰᏃ ᎨᏒ, ᏥᎪ ᎤᏁᎳᏅᎯ ᏥᏯᏓᏁᏟᏴᏍᏓᏁᎸ? ᏂᎯᏍᎩᏂ, ᎤᏲ ᏍᎩᏯᏓᏅᏖᏍᎬᎩ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎣᏍᏛ ᎠᏓᏅᏖᏍᎬᎩ, ᎪᎯ ᎢᎦ ᎨᏒ ᏂᏄᏍᏗ ᎢᏳᏩᏁᏗᏱ, ᎤᏂᏣᏘ ᏴᏫ ᏓᏅᏅ ᏧᏍᏕᎸᏗᏱ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᏓᏨᏰᎶᎵ, ᏂᎯ ᎠᎴ ᏗᏤᏥ ᏧᎾᏍᏗᎦ, ᎦᏚᎵᏍᏓᏕᏃ, ᎠᎴ ᎤᏓᏅᏘ ᏚᏬᏁᏔᏁᎢ. ᏦᏩᏃ ᎢᏥᏈᏱ ᎡᎮᎢ, ᎤᏩᏒ ᎠᎴ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ; ᏦᏩᏃ ᎠᏍᎪᎯᏧᏈ ᎠᏍᎪᎯᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ. ᏦᏩᏃ ᏚᎪᎮ ᎢᏆᎻ ᏧᏪᏥ ᏦᎢᏁ ᎤᎾᏓᎵᏴᏛ, ᎠᎴ ᎾᏍᎪ ᏦᏩ ᏗᎧᏂᎨᏂ ᏕᎨᎦᏛᎯᏍᏔᏁ ᎺᎦ ᏧᏪᏥ ᎾᏍᎩ ᎻᎾᏌ ᎤᏪᏥ ᏥᎨᏎᎢ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᎩᏲᎱᏏᏗ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯᏯ ᏓᏥᏩᏛᎯᎵ, ᎠᎴ ᎠᏂ ᎦᏙᎯ ᏙᏓᏣᏘᎾᏫᏛᎯ; ᏫᏙᏓᏣᏘᏃᎵ ᎾᎿ ᎦᏙᎯ ᏧᏁᏁᏗᏱ ᏥᏚᏎᎵᏓᏁᎴ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ. ᏦᏩᏃ ᏚᏎᎵᏙᏔᏁ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯᏯ ᏓᏥᏩᏛᎯᎵ, ᎠᎴ ᏗᎩᎪᎳ ᎠᏂ ᏕᏥᏴᏫᏛᎲᎭ. ᎯᎠᏃ ᎾᏍᎩ ᏕᎤᎾᏙᎥ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ ᏧᏦᎷᏥᎴᎢ: ᎠᏂᏏᏴᏫᎭ ᎠᎴ ᏕᏅᎾᏓᏘᎾᎥ ᏤᎦᏈ ᏧᏂᎷᏤᎢ. ᎷᏈᏂ, ᏏᎻᏯᏂ, ᎵᏫ, ᏧᏓᏃ, ᎢᏌᎦ, ᏤᏆᎳᏂ, ᏇᏂᏃ ᏕᏂ, ᏁᏩᏔᎵᏃ, ᎦᏗ, ᎡᏌᏃ. ᎢᎦᏛᏃ ᏧᏪᏥ ᏤᎦᏈ ᎬᏩᏕᏁᎸᎯ ᎦᎵᏆᏍᎪᎯ ᎾᏂᎡᎢ; ᏦᏩᏰᏕᏃ ᎢᏥᏈᏱ ᏫᏂᎡᎰᎢ. ᏦᏩᏃ ᎤᏲᎱᏎᎢ, ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᎠᎴ ᏂᎦᏛ ᎾᎯᏳ ᏣᏁᎮᎢ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᏁᏉᏣᏖᎢᎢ, ᎠᎴ ᎤᏣᏖ ᎤᏂᎪᏙᏎᎢ, ᎠᎴ ᎤᏂᏧᏈᏍᏙᏎᎢ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎦᎾᎵᏂᎪᏎᎢ; ᎾᏍᎩᏃ ᎦᏙᎯ ᎤᏂᎧᎵᎴᎢ. ᎾᎯᏳᏃ ᎢᏤ ᎤᎬᏫᏳᎯ ᎤᎾᏄᎪᏤ ᎢᏥᏈᏱ, ᎾᏍᎩ ᏦᏩ ᏄᎦᏔᎲᎾ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏧᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ ᎯᎠ ᏴᏫ, ᎢᏏᎵ ᏧᏪᏥ, ᎨᎩᎪᎾᏛᏗ ᎾᏂᎥ ᎠᎴ ᏂᏚᎾᎵᏂᎬᎬᎢ. Ꭷ, ᏗᏗᏏᎾᏌᏅᏥ; ᏯᏂᏁᏉᎩᏰᏃ, ᎠᎴ ᏯᎵᏰᎢᎶᎦ ᏓᎿᏩ ᏱᏄᎵᏍᏔᏅ, ᎨᎩᏍᎦᎩ ᏱᏓᎾᎵᎪᎲᏏ ᎠᎴ ᏴᏂᎦᏡᏓ ᏕᏓᎵᎲᎢ, ᎠᎴ ᏯᏂᏄᎪᎩ ᎠᏂ ᎦᏙᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᎤᏂᎧᏁ ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯ ᎾᏍᎩ ᎬᏩᏂᎩᎵᏲᎢᏍᏉ ᏗᏱ ᎦᎨᏛ ᎬᏩᏂᎲᏛᎨᏍᎬᎢ. ᏇᎵᏲᏃ ᏗᏓᎾᏅᏗᏱ ᎾᏩᎦᏁ ᏕᎬᏬᎵᎾᏁᎴ, ᎾᏍᎩ ᏆᏙᎻ ᎠᎴ ᎴᎠᎻᏱ. ᎠᏎᏃ ᎠᏂᏁᏉᏍᎬ ᎨᏥᎩᎵᏲᎢᏍᏗᏍᎬ ᎾᏍᏉ ᎠᏂᏁᏉᎨ ᎠᎴ ᎠᏂᏣᏛᏍᎨᎢ. ᎠᎴ ᎠᏂᏍᎦᎢᎮ ᎢᏏᎵ ᏧᏪᏥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ. ᎠᏂᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎠᏍᏓᏱᏳ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏂᏓᏅᏁᎮ ᎢᏏᎵ ᏧᏪᏥ; ᎠᎴ ᏓᏅᏅ ᎤᎯᏐᏗ ᏂᏮᏅᏁᎮ ᎠᏍᏓᏯ ᏂᏚᏅᎿᏕᎬᎢ, ᎠᏂᏛᎨᏍᎬ ᏝᏬᏚ, ᎠᎴ ᏗᏛᏓᏅᎯ ᏓᏃᏢᏍᎬᎢ, ᎠᎴ ᏄᏓᎴᏒ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏠᏛᏓᏅᎯ ᏓᏃᏢᏍᎬᎢ ᎠᎴ ᏄᏓᎴᏒ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏠᎨᏏ; ᏂᎦᎥᏃ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗ ᏂᎨ ᎬᏁᎲ ᎤᏣᏘ ᎠᏍᏓᏯ ᎨᏎᎢ. ᎢᏥᏈᏱᏃ ᎤᎬᏫᏳᎯ ᏚᏁᏤᎴ ᎠᏂᎨᏴ ᎠᎾᎵᏍᏕᎵᏍᎩ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬᎢ ᎠᏏᏴᏫ ᏏᏆᎳ ᏧᏙᎢᏛ, ᏐᎢᏃ ᏊᎠ ᏧᏙᎢᏛ; ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏂᏧᏏ ᎠᏂᎨᏴ ᏗᏥᏍᏕᎸᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬᎢ, ᎠᎴ ᏚᏃᎸ ᎿᏉ ᏕᏥᎪᏩᏗ ᏍᎨᏍᏗ; ᎢᏳᏃ ᎠᏧᏣ ᎨᏎᏍᏗ ᎡᏥᎢᎮᏍᏗ ᎢᏳᏍᎩᏂ ᎠᎨᏳᏣ ᎨᏎᏍᏗ, ᎬᏁᏍᏗᏉ ᎠᏎᏃ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕ ᎵᏍᎩ, ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎨᎢ, ᎠᎴ ᎥᏝ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᏄᏂᏪᏎᎸ ᏱᏄᎾᏛᏁᎴᎥᎢ ᏚᏂᎨᏳᏁᏍᎩᏂ ᎠᏂᏧᏣ ᏓᏅᏅᎢ ᎤᎬᏫᏳᎯᏃ ᎢᏥᏈᏱ, ᏫᏚᏯᏅᎮ ᎠᎾᎵᏍᏕᎵᏍᎩ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬᎢ ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᏣᏛᏁᎸ, ᎠᏂᏧᏣ ᏓᏅᏅ ᏙᏥᎨᏳᏅ? ᏗᏂᏲᎵᏃ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏯᎩ ᎯᎠ ᏂᎬᏩᏪᏎᎴ ᏇᎵᏲ, ᏅᏗᎦᎵᏍᏙᏗᏍᎩᏂ ᎠᏂᏧᏏ ᎠᏂᎨᏴ, ᎥᏝ ᎠᏂᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎠᏂᎨᏴ ᏄᎾᏍᏛ ᏱᏄᎾᏍᏗ; ᏗᏅᏂᎦᎵᏍᏗᏳᏰ ᎠᎴ ᏄᎾᏕᏁᎶ ᎠᏲᎵ ᏫᎬᏩᏂᎷᏥᏏ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏍᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᏂᏚᏛᏁᎴ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏍᎩ; ᎠᎴ ᏴᏫ ᎤᏂᏁᏉᏤᎢ, ᎠᎴ ᎤᏣᏘ ᏚᎾᎵᏂᎪᏎᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎬ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᎾᏓᏘᎾᎢ ᏂᏚᏩᏁᎴᎢ. ᏇᎵᏲᏃ ᏚᏁᏤᎴ ᏂᎦᏛ ᎫᏤᎵ ᏴᏫ, ᎯᎠ ᏄᏪᏎᎢ, ᏫᏂᎥ ᎠᏂᏧᏣ ᎠᎾᏕᎲᏍᎨᏍᏗ ᎡᏉᏂ ᏕᏣᏓᎡᎨᏍᏗ, ᎾᏂᎥᏃ ᎠᏂᎨᏳᏣ ᎤᎾᏁᎳᎩ ᏓᏅᏁᏍᏗ. ᎵᏫᏃ ᎤᏂᏠᏱ ᎨᏒ ᎠᏍᎦᏯ [ᎠᎻᎳᎻ] ᎵᏫ ᎤᏪᏥ ᎠᎨᏴ [ᏣᎩᏯᏗ] ᎤᏓᏴᏎᎢ. ᎠᎨᏴᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᎫᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎤᏥᏃ ᎤᎪᎲ ᎤᏬᏚᎯᏳ ᎨᏒ, ᏦᎢ ᎢᏯᏅᏙ ᎤᏩᏍᎦᎴᎢ. ᎿᏉᏃ ᎤᏟ ᎢᎪᎯᏛ ᎬᏩᏍᎦᎸᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ, ᎤᎩᏎ ᏥᏳ ᎢᏳᏍᏗ, ᎦᏄᏯ ᎪᏢᏔᏅᎯ, ᎠᎴ ᏩᏥᎳᎨ ᎠᎴ ᎠᏜ ᎤᏍᏚᏔᏁᎢ, ᎾᎿᏃ ᎤᎸᏁ ᎠᏲᎵ; ᎦᏄᏲᎯᏃ ᎡᏉᏄᎶᏗ ᎤᏁᎢ. ᎤᏙᏃ ᎢᏅ ᏗᎦᏙᎨᎢ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎤᏚᎵᏍᎨ ᏅᏗᏅᏁᎵᏒᎢ. ᏇᎵᏲᏃ ᎤᏪᏥ ᎠᎨᏴ ᎤᎷᏤ ᎤᏓᏬᎢᎴ ᎡᏉᏂ; ᎠᏂᎨᏴᏃ ᏧᏅᏏᏓᏍᏗ ᎡᏉᏄᎶᏗ ᎠᎾᎢᏎᎢ; ᎤᎪᎲᏃ ᏥᏳ ᎢᏳᏍᏗ ᎦᏄᏲᎯ ᎤᏅᏎ, ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏭᏴᏗᏱ. ᎤᏍᏚᎢᏒᏃ, ᎤᎪᎮ ᎠᏲᎵ; ᎠᎴ ᎬᏂᏳᏉ ᎠᏲᎵ ᏚᏠᏱᎴᎢ. ᎤᏪᏙᎵᏤᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎠᏲᎵ ᎠᏂᏡᎷ ᎤᏁᏥ. ᎤᏙᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ, ᏓᎨᏏᎨ ᏮᏓᎬᏯᏅᎡᎵ ᎩᎶ ᎢᏳᏍᏗ ᎠᏈᎷ ᎠᎨᏴ ᎠᏛᎯᏍᏗᏍᎩ, ᎾᏍᎩ ᏣᏛᎯᏍᏓᏁᎯ ᎠᏲᎵᎮ ᏇᎵᏲᏃ ᎤᏪᏥ, ᎮᎾ, ᎤᏬᏎᎴᎢ. ᎠᏛᏃ ᎤᏪᏅᏎ ᏭᏯᏅᎮ ᎠᏲᎵ ᎤᏥ. ᏇᎵᏲᏃ ᎤᏪᏥ ᎯᎠ ᏄᏪᏎᎴ ᎠᎨᏴ, ᎯᎠ ᎠᏲᎵ ᎯᏄᎦ, ᎠᎴ ᏍᏆᏛᎯᏍᏓᏁᎸᎭ, ᏓᎬᏯᎫᏴᎡᎵᏃ ᏂᎦᎥ ᏕᏣᎬᏩᎶᏔᏅᎢ. ᎠᎨᏴᏃ ᎠᏲᎵ ᎤᏯᏅᎮ, ᎠᎴ ᎤᏛᎯᏍᏔᏁᎢ. ᎠᏲᎵᏃᎤᏛᏎᎢ, ᎠᎴ ᎤᏘᏃᎮᎴ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ, ᎠᎴ ᎾᏍᎩ ᎤᏪᏥ ᏄᎵᏍᏔᏁᎢ, ᎼᏏᏃ ᏕᎤᏬᎡᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏱᎯ ᏫᏥᏯᏎᏒᎯ ᏥᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᎢ, ᎾᏍᎩ ᎼᏏ ᎿᏉ ᎤᏛᏅ ᏄᎵᏍᏔᏅ, ᎠᎾᎵᏅᏟ ᏚᏩᏛᎲᏎᎢ, ᎠᎴ ᏚᎧᎿᏁ ᎦᎨᏛ ᏂᎨᏂᎾᏕᎬᎢ; ᎤᎪᎮᏃ ᎢᏥᏈᏱ ᎡᎯ ᎠᏈᎷ ᎠᏏ ᎠᎾᎵᏅᏟ ᎢᎦᎵᎥᏂᎮᎢ. ᏚᎧᎿᏂᏙᎴᏃ, ᎠᎴ ᎤᏙᎴᎰᏒ ᎩᎶ ᏁᏙᎲᎾ ᎨᏒ, ᎤᎴ ᎢᏥᏈᏱ ᎡᎯ, ᎠᎴ ᏃᏳᎯ ᎤᏩᏍᎦᎸᏁᎢ. ᎼᏏ ᏔᎵᏁ ᎤᏬᏪᎳᏅᎯ 2 ᎤᎩᏨᏛᏃ ᎢᎤᏄᎪᏨ, ᎬᏂᏳᏉ ! ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎠᏂᏈᎷ ᎠᎾᎵᎮᎢ; ᎤᏣᏘᏂᏃ ᎢᏳᏛᏁᎸᎯ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᎯᎵᎥᏂᎭ ᎢᏍᏓᎵᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎪ ᏣᎬᏫᏳᎯ ᎠᎴ ᏗᏍᎩᏳᎪᏓᏁᎯ ᏣᎧᏅᎮ ᏥᎪ ᏍᎩᎯᏍᏗᏱ ᎭᏓᏅᏖᎭ, ᎾᏍᎩᏯ ᏂᏴᏁᎸ ᎯᎸ ᎢᏥᏈᏱ ᎡᎯᎮ ᎼᏏᏃ ᎤᏍᎦᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏎ Ꭷ ᎤᎾᏛᎦᏅ ᎯᎠ. ᏇᎵᏲᏃ ᎾᏍᎩ ᎯᎠ ᎤᏛᎦᏅ ᎤᏲᎴ ᎤᎯᏍᏗᏱ ᎼᏏ. ᎠᏎᏃ ᎼᏏ ᎤᏓᏅᎡᎴ . ᏇᎵᏲ, ᎠᎴ ᎻᏗᏂᏱ ᏭᏕᏁᎢ: ᎠᎹᏃ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎾᎥ ᎤᏪᏁᎢ. ᎠᏥᎸᏃ-ᎨᎶᎯ ᎻᏗᏂᏱ ᎡᎯ, ᎦᎵᏉᎩ ᎠᏁᎮ ᏧᏪᏥ ᎠᎾᏛ: ᎤᏂᎷᏤᏃ ᎠᎴ ᎠᎹ . ᎤᏂᏢᎮᎢ, ᎠᎴ ᏥᏳ ᏚᏂᎧᎵᎴᎢ, ᎤᏂᏙᏓ ᏧᏤᎵ ᎠᏫ ᎠᎹ ᏓᎾᏗᏔᏍᏗᏍᎨᎢ. ᎠᏫᏃ ᏗᏂᎦᏘᏯ ᎤᏂᎷᏤ ᎠᎴ ᏚᏂᎨᎯᏙᎴᎢ; ᎠᏎᏃ ᎼᏏ ᏚᎴᏁ ᎠᎴ ᏚᏍᏕᎸᎮᎢ, ᎠᎴ ᎠᎹ ᏚᏗᏔᏍᏔᏁ ᏧᎾᏤᎵ ᎠᏫ. ᎤᏂᏙᏓᏃ ᎷᏫᎵ ᎤᏂᎷᏤᎸ, ᎦᏙ ᏓᎦᎵᏍᏙᏓ ᏂᎠᏞᎦ ᎥᏥᎷᎩ ᎪᎯ ᎢᎦ, ᏚᏬᏎᎴᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎢᏥᏈᏱ ᎡᎯ ᎣᏗᏓᎴᏒ ᎪᎦᏕᏯᏙᏗᏍᎬ ᎠᏫ-ᏗᏂᎦᏘᏯ, ᎠᎴ ᎤᏣᏛ ᎠᎹ ᎣᎩᏢᎡᎸᎩ, ᎠᎴ ᏚᏗᏔᏍᏔᏅ ᎠᏫ ᏑᎾᏓᏡᎩ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ ᏧᏪᏥ, ᎭᏢᏃ ᎡᏙᎭᎮ ᎦᏙᏃ ᏛᎡᏥᎧᏯ ᎠᏍᎦᏯᎮ ᏪᏥᏯᏅ, ᎠᎵᏍᏓᏴᏅᎭ. ᎼᏏᏃ ᎼᏏ ᎤᏰᎸᏁ ᎾᏍᎩ ᎠᏍᎦᏯ ᎦᏁᎸ ᎤᏕᏗᏱ; ᎠᏍᎦᏯᏃ ᏥᏉᎳ ᎤᏪᏥ ᎠᏛ ᎤᏪᎧᏁᎴ ᏱᏏ. ᎠᎫᏣᏃ ᎤᎾᏄᎪᏫᏎᎢ, ᎼᏏᏃ ᎦᏐᎻ ᏚᏬᎡᎢ; ᎯᎠᏕᏰᏃ ᏄᏪᏎᎢ, ᏅᎩᎦᏔᎲᎾ ᎨᏒᎩ ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎸᎯᏳ ᎢᏴᏛ,ᎾᏍᎩ ᎢᏥᏈᏱ ᎡᎯ ᎤᎬᏫᏳᎯ ᎤᏲᎱᏎᎢ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᎵᏰᏗᏍᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎩᎵᏯ ᏄᎾᏛᏅᎢ, ᎠᎴ ᏚᎾᏠᏱᎴᎢ; ᏓᎾᏠᏱᎲᏃ ᎤᎵᏌᎳᏓᏁ ᎤᏁᎳ ᏅᎯᏱ ᎢᏴᏛ, ᎾᏍᎩ ᎠᎩᎵᏯ ᏄᎾᏛᏅ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ. ᎤᏁᎳᏅᎯᏃ ᏚᏛᎦᏁᎴ ᎤᏂᎵᏰᏗᏍᎬᎢ, ᎠᎴ ᎤᏅᏓᏕ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏔᏅ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ. ᎤᏁᎳᏅᎯᏃ ᏚᎧᎿᏁ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏬᎵᏤᎢ. ᎾᏍᎩᏃ ᎨᏏ ᏓᎦᏘᏰ ᎤᎿᏥ Ꮵ“Ꮆ ᎻᏗᏂᏱ ᎡᎯ ᎠᏥᏏᎸ-ᎨᎶᎯ ᏧᏤᎵ ᎠᏫ; ᎢᎾᎨᏃ ᎨᏒ ᏂᏚᏘᏅᏍᏔᏁ ᎠᏫ, ᎠᎴ ᏭᎷᏤ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎣᏓᎸ, ᎾᏍᎩ ᎰᎵᏈ ᏚᏙᎥᎢ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎨᏩ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎬ ᎤᏪᏲᏓᏛ ᎠᏰᎵ; ᏚᎧᎿᏁᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏪᏲᏓᏛ ᎤᏥᏍᏞᎢ, ᎤᏪᏲᏓᏛᏃ ᎥᏝ ᏳᎪᏁᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏓᎦᎪᎸᏏᎾᏗ, ᎠᎴ ᏮᏓᎦᎦᏔᏂ ᎯᎠ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᎠᎪ- ᏩᏛᏗ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏪᏲᏓᏛ ᏄᎪᏅᎾ ᎨᏒᎢ. ᏱᎰᏩᏃ ᎤᎪᎲ ᎤᎪᎸᏒ ᎾᏍᎩ ᎤᎦᏙᏗᏱ, ᎤᏁᎳᏅᎯ ᏧᏯᏅᎮ ᏧᏓᎴᏁ ᎤᏪᏲᏓᏛ ᎠᏰᎵ, ᎠᎴ ᎯᎠ ᏅᏧᏪᏎᎢ, ᎼᏏ, ᎼᏏ. ᎯᎠᏃ ᏄᏪᏎ ᏏᏏ, ᎠᏂ ᎨᏙᎭ. ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎠᏂ ᎾᎥ ᏣᎷᏨᎩ; ᏔᎳᏑᎳᎩ, ᎠᏂᏰᏃ ᎯᏙᎬ ᎦᎸᏉᏗᏳ ᎦᏙᎯ. ᎠᎴᏬ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴ ᎤᏁᎳᏅᎯ ᏣᏙᏓ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏘᏆᎭᎻ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ. ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᎼᏏᏃ ᎤᏩᏍᎦᎳᏁ ᎤᎧᏛᎢ; ᎠᏍᎦᎢᎮᏰᏃ ᎤᏁᎳᏅᎯ ᏧᎧᏃᏗᏱ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ. ᎤᏙᎯᏳᎯᏯ ᎠᎩᎪᎲ ᎤᏲ ᏄᎾᏛᎾᏕᎬ ᏗᏆᏤᎵ ᏴᏫ ᎢᏥᏈ ᏣᏁᎭ, ᎠᎴ ᎠᏆᏛᎦᏅ ᏓᎾᏠᏱᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯ ᏂᎬᏩᏅᎿᏕᎬᎢ; ᏥᎦᏔᎭᏰᏃ ᎠᏂᎩᎵᏲᎬᎢ. ᎠᎴ ᎠᏆᏠᎠᏏᎸ ᎦᏥᏳᏓᎴᏏᎸ ᎢᏥᏈᏱ ᎠᏁᎯ ᏕᎬᏩᏂᎾᏝᎥᎢ, ᎠᎴ ᎾᎿ ᎦᏙᎯ ᏗᎦᏥᏯᎧᎲᏍᏗᏱ, ᏫᏗᎦᏥᏯᎪᏙᏱ ᎣᏒ ᎠᎴ ᎡᏉᎯᏳ ᎦᏙᎯ, ᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏕᎦᎶᎴᎬᎢ; ᎾᎿ ᏓᏂᏁᎸ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᎡᏖᏂ, ᎠᎴ ᎠᏂᏇᎵᏥ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ. ᎿᏉᏃ ᎬᏂᏳᏉ, ᏓᏂᏴᎬᎢ ᎢᏏᎵ ᏧᏪᏥ ᎠᎩᎷᏤᎸ; ᎠᎴ ᎾᏍᏉ ᎠᎩᎪᎲ ᎠᏂᎩᎵᏲᎬ ᎾᏍᎩ ᎢᏥᏈ ᎠᏁᎯ ᎬᏩᏂᎩᎵᏲᎢᏍᏗᏍᎬᎢ. ᎿᏉᏃ Ꭷ, ᏓᎬᏅᏏ ᏇᎵᏲ ᏧᏬᎸᎢ, ᎾᏍᎩ ᏗᏆᏤᎵ ᏴᏫ ᎢᏏᎵ ᏧᏪᏥ ᏙᏘᎸᎪᏫᏍᏗᏱ ᎢᏥᏡᏱ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏁᎳᏅᎯ, ᎦᎪ ᎠᏴ, ᎾᏍᎩ ᏰᎵ ᏇᎵᏲ ᏫᎦᏥᎷᏤᏗ, ᎠᎴ ᏰᎵ ᎢᏏᎵ ᏧᏪᏥ ᏂᏙᏓᎦᏥᏄᎪᎾᏍᏗᏱ ᎢᏥᏈᏱ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴᏍᎩᏂ ᏓᎬᏍᏓᏩᏕᏏ; ᎯᎠᏃ ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏴ ᎬᏅᎡᎯ ᎨᏒᎢ; ᎿᏉ ᏴᏫ ᏙᏘᏄᎪᏫᏒᎭ ᎢᏥᏈᏱ, ᎠᏂ ᎣᏓᎸ ᎤᏁᎳᏅᎯ. ᎡᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏁᎳᏅᎯ, ᎬᏂᏳᏉ, ᏫᎦᏥᎷᏤᎸ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᏂᎦᏥᏪᏎᎸᎭ, ᎤᏁᎳᏅᎯ ᏗᏥᎦᎵᎨ ᎤᎾᏤᎵᎦ ᏗᎩᏅᏒ ᎢᏨᎷᏤᏗᏱ; ᎯᎠᏃ ᏂᎬᎩᏪᏎᎸᎭ, ᎦᏙ ᏕᎤᏙᎠ? ᎦᏙ ᏓᎦᏥᏲᏎᎵ? ᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎠᏴᎨᎠ ᏥᎨᎠ; ᎯᎠᏃ ᏄᏪᏎᎢ: ᎯᎠ ᏂᎩᏪᏎᎸᎭ ᎢᏏᎵ ᏧᏪᏥ, ᎠᏴᎨᎠ ᏗᎩᏅᏒ ᎢᏨᎷᏤᏗᏱ. ᎤᏁᎳᏅᎯᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ ᎢᏏᎵ ᏧᏪᏥ; ᏱᎰᏩ, ᏗᏥᎦᏴᎵᎨ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᏤᎦᏈ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᏗᎩᏅᏒ ᎢᏨᎷᏤᏗᏱ; ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᏓᏆᏙᎥ ᏂᎪᎯᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎥᏆᏅᏓᏗᏍᏙᏗ ᏂᏓᎾᏓᏁᏟᏴᏏᏒ ᏂᎪᎯᎸᎢ. ᎮᎾ ᎠᎴ ᏫᏗᎩᎳᏫᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᏱᎰᏩ, ᎤᏁᎳᏅᎯ ᏗᏥᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᏤᎦᏈ ᎤᏤᎵᎦ, ᎬᏂᎨᏒ ᎾᏆᏛᏁᎸᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏯᎦᏔᏅᏒᎩ, ᎠᎴ ᎠᎩ ᎪᎲ ᏁᏨᎾᏕᎬ ᎢᏥᏡᏱ: ᎠᎴ ᎯᎠ ᏥᎾᎩᏪᏒᎩ, ᏓᏨᏳᏓᎴᏏ ᎡᏥᎩᎵᏲᎢᏍᏗᏍᎬ ᎢᏥᏈᏱ, ᏫᏙᏓᏨᏯᏘᏃᎵ ᎦᏓ ᎤᏂᎲ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᎡᎼᏂ, ᎠᎴ ᎠᏂᏇᎵᏥ, ᎠᎴ ᎠᏂᎯᎧ, ᎠᎴ ᎠᏂᏥᏊᏏ, ᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏕᎦᎶᎴᎬᎢ. ᎠᎴ ᏓᎨᏣᏛᏓᏍᏓᏁᎵ ᎯᏁᎬᎢ; ᎠᎴ ᏂᎯ, ᏧᎾᏛᏐᏅᎯᏃ ᎢᏏᎵ ᏧᎾᏤᎵᎦ ᎢᏤᎮᏍᏗ ᏪᏥᎷᏤᎸᎭ ᎤᎬᏫᏳᎯ ᎢᏥᏈᏱ ᎡᎯ, ᎯᎠᏃ ᏁᏥᏪᏎᎸᎭ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ ᏙᎦᏠᏒᎩ; ᎿᏉᏃ ᎢᏨᏔᏲᏎᎭ ᏍᎩᏯᎵᏍᎪᎸᏓᏁᏗᏱ ᎣᎦᏂᎩᏍᏗᏱ ᏦᎢ ᏧᏒᎯᏛ ᎡᏅᏍᏗ ᎢᏴᏛ Ꭰ ᎢᎾᎨᎢ, ᎠᏥᎸ ᎣᏤᎴᏗᏱ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎣᎦᏤᎵᎦ. ᎠᎴ ᎠᏴ ᏥᎦᏔᎭ ᎤᎬᏫᏳᎯ ᎢᏥᏈ ᎤᏤᎵᎦ ᎥᏝ ᏴᏓᎪᎯᏳᏂ ᎢᏤᏅᏍᏗᏱ, ᎥᏝ ᎾᏍᏉ ᎤᎵᏂᎩᏛ ᎤᏬᏰᏂ ᎬᏔᏅᎯ ᎨᏒᎢ. ᏓᎦᏎᎵᎢᏔᏂᏃ, ᎠᎴ ᏓᏥᏴᏂᏍᏔᏂ ᎢᏥᏈ ᏂᎦᏗᏳ ᎤᏍᏆᏂᎪᏗ ᎠᏆᏤᎵ ᎾᎿ ᎠᏰᎵ ᏥᏙᏛᎩᎸᏫᏍᏓᏁᎵ; ᎣᏂᏃ ᏓᎪᎯᏳᏂ ᎢᏤᏅᏍᏗᏱ. ᎠᎴ ᏓᎦᏥᏯᎵᏍᎪᎸᏓᏁᎵ ᎯᎠ ᏴᏫ ᎣᏏᏳ ᎬᏩᏂᏰᎸᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎾᏍᎩᏃ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎿᏉ ᎢᏣᏓᏅᏒᎭ, ᎥᏝ ᎠᏒᎭ ᎢᏤᏅᏍᏗ ᏱᎨᏎᏍᏗ ᎾᏂᎥᏍᎩᏂ ᎠᏂᎨᏴ ᏧᎾᏙᎸᏒᏗ ᎨᏎᏍᏗ ᎾᎥ ᎢᏧᎾᏓᎵ, ᎠᎴ ᎡᏙᎯ ᎾᎿ ᏓᏂᏁᎸ ᎤᏬᎵ, ᎠᏣᏅᎩ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎠᏣᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏗᏄᏬ; ᏧᎾᏣᏅᏙᏗᏃ ᎨᏎᏍᏗ ᏗᏤᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏗᏤᏥ ᎠᏂᎨᏴ; ᎠᎴ ᏗᏥᎾᏌᏗ ᎨᏎᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ. ᎼᏏᏃ ᏗᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ. ᎠᏎᏃ ᎬᏂᏳᏉ ᎥᏝ ᏴᎦᎬᏉᎯᏳᎲᎦ, ᎠᎴ ᎥᏝ ᏴᎬᎾᏛᏓᏍᏓ ᏥᏁᎬᎢ; ᎯᎠᏰᏃ ᏅᏛᏂᏪᏏ, ᏱᎰᏩ ᎥᏝ ᎬᏂᎨᏒ ᏱᏂᏣᏛᏁᎸ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙ Ꮎ ᏥᎶᏒᎦᎳ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏙᎳᏅᏍᏗ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎡᎳᏗ ᎯᏗᎦ. ᎡᎳᏗᏃ ᎤᏕᎢ, ᎠᎴ ᎢᎾᏛ ᏄᎵᏍᏔᏁᎢ: ᎼᏏᏃ ᎤᎵᏘᏒᎴᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎭᏙᏯᏅᎯᏛ ᎠᎴ ᎯᏂᏓᏂᏴ. ᎤᏙᏯᏅᎯᏕᏃ ᎠᎴ ᎤᏂᏴᎮᎢ, ᎠᏙᎳᏅᏍᏗᏃ ᏄᎵᏍᏔᏁ ᎤᏒᎦᎸᎢ. ᎾᏍᎩ ᎤᏃᎯᏳᏗᏱ ᎾᏍᎩᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏧᏂᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ ᎬᏂᎨᏒ ᏂᏣᏛᏁᎸᎢ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᏱᎰᏩᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏦᏰᏂᏃ ᎯᏁᏥᏱ ᎯᏄᏴᏓ. ᎤᏬᏰᏂᏃ ᎦᏁᏥᏱ ᎤᏄᎬᏔᏁᎢ: ᎤᏄᏴᏕᏒᏃ, ᎬᏂᏳᏉ ᎤᏬᏰᏂ ᎠᏓᏰᏍᎨᎢ, ᎥᏃᏥ ᏥᏄᏍᏗ ᎾᏍᎩᏯ ᏄᏍᏕᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ , ᏦᏰᏂ ᏔᎵᏂ ᏥᎯᏄᏴᏓ ᎯᏁᏥᏱ; ᎤᏬᏰᏂᏃ ᏔᎵᏁ ᎤᏄᏴᏔᏁ ᎦᏁᏥᏱ, ᎠᎴ ᎤᏄᏴᏕᏎ ᏔᎵᏁᎢ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏓᏁᏟᏴᏛ ᎢᎨᏎᎢ, ᎾᏍᎩᏯ ᏐᎢ ᎤᏇᏓᎸᎢ. ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎾᏍᎩ ᏂᎨᏦᎯᏳᏅᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᏄᎾᏛᏓᏍᏔᏅᎾ ᎢᎨᏎᏍᏗ ᎢᎬᏱᏱ ᎤᏰᎸᏛ ᏕᎯᎾᏄᎪᏫᏎᎸᎢ, ᏛᏃᎯᏳᏂ ᏔᎵᏁ ᎤᏰᎸᏛ ᏕᎯᎾᏄᎪᏫᏎᎸᎢ. ᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎢᏳᏃ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎯᎠ ᎾᏍᎩ ᏔᎵ ᏕᎤᏰᎸᏛᎢ, ᎠᎴ ᎯᏁᎬ ᏂᎨᏣᏛᏓᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎠᎹ ᎡᏉᏂ ᏩᏢᏛ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏫᏣᏨᏗ ᎨᏎᏍᏗ ᎤᎧᏲᏛᎯ ᎨᏒᎢ; ᎠᎹᏃ ᎾᏍᎩ ᎡᏉᏂ ᏫᏣᏢᏛ ᎬᎩ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᎤᎧᏲᏛᎯ ᎨᏒᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᏱᎰᏩ; ᎠᏆᏤᎵ ᏣᎬᏫᏳᎯ, ᎥᏝ ᏱᏥᏏᎾᎯ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎥᏝ ᏧᏩᎫᏔᏅᏒᎢ, ᎠᎴ ᎦᎯᏁᏤᎸᎯ ᎯᏅᏏᏓᏍᏗ ᏅᏓᎬᏩᏓᎴᏅᏛ; ᎦᏂᎵᏨᏍᎩᏂ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎠᎴ ᎤᏍᎦᏃᎸ ᏥᏃᏓᏛᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᎪ ᎤᏬᏢᎾᏁᎴ ᎠᎰᎵ ᏴᏫ? ᎠᎴ ᎦᎪ ᎪᏢᏍᎪ ᎤᏩᎨᏫ, ᎠᎴ ᏧᎵᎡᎾ, ᎠᎴ ᎠᎪᏩᏗᏍᎩ, ᎠᎴ ᏗᎨᏫ? ᏝᏍᎪ ᎠᏴ, ᏱᎰᏩ? Ꭷ! ᎾᏍᎩ ᎢᏳᏍᏗ ᎮᎾ, ᎠᏴᏃ ᏙᏓᏥᎧᎿᏩᏗᏙᎵ ᎯᎰᎵ, ᎠᎴ ᎬᏰᏲᎲᏍᎨᏍᏗ ᎢᏣᏪᏍᏗᏱ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎬᏍᏗᏰᏗᎭ ᏣᏓᏅᏍᏗᏱ ᎯᎠᏉ ᎮᎵᏒ ᎾᏍᎩᏉ ᎯᏅᏍᏗᏱ. ᏱᎰᏩᏃ ᎤᎿᎸᏤᎴ ᎼᏏ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎡᎳᏂ ᎠᎵᏫ ᏗᏍᏓᏓᏅᏟ ᏱᎩ? ᏥᎦᏔᎭ ᎣᏏᏳ ᎬᏩᏬᏂᎯᏍᏗ ᎨᏒ ᎾᏍᎩ. ᎠᎴ ᎾᏍᏉ ᎬᏂᏳᏉ ᏙᏗᏣᏠᏎᏅ; ᏣᎪᎲᏃ ᎣᏍᏛ ᎤᏰᎸᏎᏍᏗ ᏧᏓᏅᏛᎢ. ᎯᏬᏁᏔᏅᏃ ᎠᎴ ᎯᏁᎸᎭ ᎢᏳᏪᏍᏗᏱ; ᎠᏴᏃ ᏙᏓᏥᎦᎿᏩᏗᏙᎵ ᎯᎰᎵ, ᎠᎴ ᎾᏍᎩ ᎠᎰᎵ, ᎠᎴ ᏓᏍᏛᏰᏲᏂ ᎢᏍᏓᏛᏁᏗᏱ. ᎾᏍᎩᏃ ᏣᏬᏂᎯᏎᎯ ᎨᏎᏍᏗ ᏕᎯᏬᏁᏗᏍᎬ ᏴᏫ; ᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎯᎰᎵ ᎾᏍᎩᏯ ᎨᏎᏍᏗ, ᏂᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎾᏍᎩᏯ ᎨᏎᏍᏗ. ᎯᎠᏃ ᎠᏙᎳᏅᏍᏗ ᎯᏁᏒᎭ ᎾᏍᎩᏃ ᎬᏗ ᎤᏍᏆᏂᎪᏗ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ. ᎼᏏᏃ ᎤᏪᏅᏎ ᎠᎴ ᏭᏨᏎ Ꮵ“Ꮆ ᎤᎾᏥ ᏗᎦᏁᎸᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏔᏲᏎᎭ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ ᎥᎠᏩᏨᏍᏗᏱ ᎣᏣᎵᏅᏟ ᏗᏁᎲ ᎢᏥᏈᏱ, ᎠᎴ ᏩᎩᎦᏛᏂᏓᏍᏗᏱ ᎠᏏ ᏓᏅᏅ ᎠᎴ ᏂᏓᏅᏅᎾ ᎨᏎᏍᏗ. Ꮵ’ᎶᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎮᎾ ᏅᏩᏙᎯᏯᏛ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎻᏗᏂᏱ, ᎮᎾ ᎢᏥᏈᏱ ᏫᎮᏓ; ᏂᎦᏛᏰᏃ ᎠᏂᏍᎦᏯ ᎲᏅ ᏥᎨᏣᏲᏎᎲᎩ ᏚᏂᏲᎱᏒ. ᎼᏏᏃ ᏚᏘᏅᏎ ᎤᏓᎵᎢ ᏧᏪᏥ, ᏗᎦᎵᎠᏅᎯᏛᏃ ᏐᏈᎵᎯ ᏚᎩᎸᏔᏁᎢ, ᎠᎴ ᎢᏥᏡᏱ ᏔᎵᏁ ᏭᎶᏎᎢ. ᎼᏏᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏙᎳᏅᏍᏗ ᎤᏪᏅᏎᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎢᎮᏒ ᎢᏥᏈᏱ ᏫᎯᎶᏒᎭ, ᎠᏎ ᎤᏍᏆᏂᎪᏗ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏇᎵᏲ ᎠᎦᏔᎲ ᎾᏍᎩ ᎬᏯᏒᎦᎶᏔᏅᎯ ᏥᎩ; ᎠᏎᏃ ᏓᏥᏍᏓᏱᏕᎵ ᎤᎾᏫ, ᎾᏍᎩ ᏧᏲᎯᏍᏗᏱ ᏂᎨᏒᎾ ᏴᏫ. ᎯᎠᏃ ᏄᏪᏎᎸᎭ ᏇᎵᏂ, ᏱᎰᏩ ᎯᎠ ᏂᎦᏪᎭ, ᎢᏏᎵ ᎠᏴ ᎠᏇᏥ, ᎢᎬᏱᏱ ᎡᎯ ᎠᏇᏥ. ᎯᎠᏃ ᏂᎬᏪᏎᎭ, ᏘᏲᎯ ᎠᏇᏥ, ᎠᏴ ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱ. ᎢᏳᏃ ᎢᏣᎨᏳᏅᎭ ᏘᏲᎯᏍᏗᏱ, ᎬᏂᏳᏉ ᎠᏴ ᏓᏥᎵ ᏤᏥ, ᎢᎬᏱᏱ ᎡᎯ ᏤᏥ. ᎠᏃ ᏄᎵᏍᏔᏁ ᏩᎾᎢᏒ ᏗᏒᏍᏗᏱ ᎠᏓᏁᎸᎢ, ᏱᎰᏩ ᏚᏠᏎᎢ, ᎠᎴ ᎤᏲᎴ ᎤᎯᏍᏗᏱ. ᎿᏉᏃ ᏥᏉᎳ ᎠᏰᎳᏍᏗ ᎤᏴᎮᎢ, ᎠᎴ ᎤᎱᏍᏕᏎᎴ ᎤᏪᏥ ᎠᏧᏣ, ᎠᎴ ᏚᎳᏍᎬ ᏭᏓᎢᏅᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎩᎰᎭ ᏍᎩᏰᎯ. ᎾᏍᎩᏃ ᎿᏉ ᏚᏲᏎᎢ; ᎿᏉᏃ [ᏥᏉᎳ] ᎯᎠ ᏄᏪᏎᎢ, ᎯᎩᎬᎭ ᎾᎮ ᏍᎩᏰᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎱᏍᏕᏍᏗ ᎨᏒᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᎳᏂ, ᎮᎾ ᎢᎾᎨᎢ ᏫᏘᏯᏠᎢ ᎼᏏ. ᎤᏪᏅᏎᏃ ᎠᎴ ᏫᏚᏠᏎ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎣᏓᎸᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ. ᎼᏏᏃ ᎤᏃᏁᎴ ᎡᎳᏂ ᏂᎦᏛ ᏄᏪᏎᎸ ᏱᎰᏩ ᎾᏍᎩ ᏅᏓᏳᏅᏏᏛ, ᎠᎴ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ ᎤᏁᏤᎸᎢ. ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᎤᏁᏅᏎᎢ, ᎠᎴ ᏫᏚᏂᎳᏫᏕ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᏪᏥ ᎬᏩᎾᏓᏑᏴᎢ. ᎡᎳᏂᏃ ᏂᎦᏛ ᏚᏃᎯᎮᎴ ᎾᏍᎩ ᏱᎰᏩ ᎼᏏ ᎤᏬᏁᏔᏅᎢ, ᎠᎴ ᎤᏍᏆᏁᏔᏅᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎴ ᏴᏫ ᎠᏂᎦᏔᎲᎢ. ᏴᏫᏃ ᎤᏃᎯᏳᏁᎢ; ᎤᏮᏛᎦᏅᏃ ᏱᎰᏩ ᏚᎦᏔᏂᎸ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᎾᏍᎩ ᏚᎧᎿᏅ ᎠᏂᎩᎵᏲᎬᎢ, ᏚᎾᏗᏍᏚᏁ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏁᎢ ᎣᏂᏃ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏭᏂᏴᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎴ ᏇᎵᏲ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ. ᎢᏏᎵ ᎤᎾᏤᎵᎦ, ᏘᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎬᏆᎵᏍᏓᏴᎾᏁᏗᏱ ᎢᎾᎨᎢ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᎢᏳᏍᏗ ᏱᎰᏩ, ᎾᏍᎩ ᏰᎵ ᎬᏉᎯᏳᏗ ᎧᏁᎬ ᏗᎦᏥᏲᎵᏍᏗᏱ ᎢᏞᎵᎮ ᎥᏝ ᏱᏥᎦᏔᎭ ᏱᎰᏩ, ᎥᏝ ᎠᎴ ᏱᏙᎦᎦᏥᏲᎯ ᎢᏏᎵ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᏂᏈᎷ ᎤᎾᏤᎵᎦ ᏙᎦᏠᏒᎩ; ᎢᏨᏔᏲᏎᎭ ᏗᏍᎩᏲᎯᏍᏗᏱ ᏦᎢ ᏧᏒᎯᏛ ᎢᏴᏛ ᎡᏅᏍᏗ ᎨᏒ Ꭰ ᎢᎾᎨᎢ, ᎠᎴ ᎠᏥᎸ ᎣᏤᎴᏗᏱ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ; ᎾᏍᎩ ᎤᏓᏅᏍᏗ Ᏹ ᏂᎨᏒᎾ ᎣᎩᎷᏤᏗᏱ ᎥᏳᎩ ᎠᎴ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ. ᎤᎬᏫᏳᎯᏃ ᎢᏥᏡᏱ ᎡᎯ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᏂᎯ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏙᏍᏗᎧᎲᏍᎦ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ? ᎤᏟ, ᏗᏥᎸᏫᏍᏓᏁᎷᎦ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳ Ꮙ, ᏴᏫ ᎠᏂ ᎠᏁᎲ ᎿᏉ ᎤᏂᏣᏔ, ᎠᎴ ᏕᏥᏯᏪᏐᎸᏍᏗᎭ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ. ᏇᎵᏲᏃ ᎾᎯᏳᏉ ᎢᎦ ᏚᏁᏤᎴ ᎬᏩᏂᏅᎧᏍᏔᏂᏙᎯ ᏴᏫ, ᎠᎴ ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ⁠ ᎥᏞᏍᏗ ᎿᏉ ᎧᏁᏍᎦ ᏗᏥᏁᏗ ᏱᎨᏎᏍᏗ ᏴᏫ ᏗᏛᏓᏅᎯ ᏧᏃᏢᏙᏗ ᎾᏍᎩ ᏧᏩᏧᏔᏅᏒ ᏥᏂᏕᏣᏛᏁᎲᎢ; ᎤᏅᏒᏍᎩᏂ ᏩᏁᎾ ᏩᏄᏔᎩ ᎧᏁᏍᎦ. ᏂᎦᎥᏃ ᏚᏃᏢᏅ ᏗᏛᏓᏅᎯ ᏧᏩᎫᏔᏅᏒᎢ ᎾᏍᎩ ᎠᏏ ᎢᎦᎢ ᏧᏃᏢᏗ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ; ᎥᏝ ᏗᏥᎪᎳᏕᏗ ᏱᎨᏎᏍᏗ; ᎤᎾᏓᏄᎸᏗᏰᏃ: ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏂᏴᎦ ᎯᎠ ᎾᏂᏪᎭ, ᏬᏤᎾ ᎠᏥᎸ ᏬᏤᎶᏏ ᎣᎦᏁᎳᏅᎯ. ᎦᎨᏛ ᏫᏂᎦᎵᏍᏓ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎾᎿ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ; ᏞᏍᏗᏃ ᏳᏂᎸᏉᏔᏁᏍᏗ ᎦᏰᎪᎩ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ. ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯᏃ ᏴᏫ, ᎠᎴ ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ, ᎤᏂᏄᎪᏤᎢ, ᎠᎴ ᏚᏂᏬᏁᏔᏁ ᏴᏫ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏇᎵᏲ ᎯᎠ ᏂᎦᏪᎭ, ᎥᏝ ᏴᎨᏨᎥᏏ ᎧᏁᏍᎦ. ᎢᏤᎾ, ᏫᏥᎩ ᎧᏁᏍᎦ ᎾᎿ ᎨᏥᏩᏛᏗ ᎨᏒᎢ; ᎥᏝᏰᏃ ᎤᏍᏗ ᎤᏅ ᎡᏥᎪᎳᏕᏗ ᏱᎨᏎᏍᏗ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ. ᎾᏍᎩᏃ ᏴᏫ ᏂᎬᎾᏛ ᎠᏁᏙᎮ ᎢᏥᏈᏱ ᎠᏄᏖᏍᎨ ᎧᏁᏍᎦ ᎤᏂᏰᎸᎯ ᎠᏍᎫᏕᏒ ᎤᎵᏃᎯᏴᎯ. ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯᏃ ᎬᏩᏂᏅᏫᏍᏗᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᏥᏍᏆᏛ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ, ᏂᏓᏙᏓᏈᏒ ᎡᏣᏁᎳᏁᎸᎢ, ᎾᏍᎩᏯ ᎧᏁᏍᎦ ᏣᏗᎩ. ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩᏃ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᏇᎵᏲ ᏧᏤᎵ ᎠᏂᏅᏫᏍᏔᏂᏙᎯ ᎬᏩᏂᏁᏤᎸᎯ ᏕᎨᏥᎵᎥᏂᎴᎢ, ᎠᎴ ᎯᎠ ᏂᎨᏥᏪᏎᎴᎢ, ᎦᏙᏃ Ꮭ ᏴᏥᏍᏆᏛ ᎡᏣᏁᎳᏁᎸ ᏗᏦᏢᏗᏱ ᏗᏛᏓᏅᎯ ᎤᏒᎯ ᏥᎨᏒ ᎠᎴ ᎪᎯ ᎾᏍᎩᏯ ᏂᏣᏛᏁᎸ ᏧᏩᎫᏔᏅᏒᎢ. ᎿᏉᏃ ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᎷᏤ ᎤᏂᏍᏗᏰᏔᏁ ᏇᎵᏲ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᏂᏙᎲᏁᏉ ᏗᏣᏤᎵ ᏘᏅᏏᏓᏍᏗᎮ ᎥᏝᏰᏃ ᎧᏁᏍᎦ ᏱᎨᏥᏁᎭ ᏘᏅᏏᏓᏍᏗ, ᎠᎴ ᎯᎠ ᏂᎪᎩᏪᏎᎭ, ᏗᏛᏓᏅᎯ ᏗᏦᏢᎾ; ᎠᎴ ᎬᏂᏳᏉ ᏚᎨᏥᎵᎥᏂᎭ ᏘᏅᏏᏓᏍᏗ; ᏂᎯᏍᎩᏂ ᏗᏣᏤᎵ ᏴᏫ ᎤᏣᏘᏂ ᏥᎾᎾᏛᏁᎭ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᏓᏄᎸᏗ, ᎢᏣᏓᏄᎸᏗ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏥᏪᎭ, ᏬᏤᎾ ᎠᎴ ᎠᏥᎸ ᏬᏤᎶᏏ ᏱᎰᏩ. ᎢᏤᎾᏲᎪ ᎿᏉ ᏫᏗᏥᎸᏫᏍᏓᏏ; ᎥᏝᏰᏃ ᏴᏓᏰᏥᏁᎵ ᎧᏁᏍᎦ, ᎠᏎᏃ ᎢᎦᎢ ᎡᏣᏁᎳᏅ ᏗᏥᏲᎯᏍᏗ ᎨᏎᏍᏗ ᏗᏛᏓᏅᎯ. ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩᏃ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᎪᎮ ᎤᏲ ᏄᎾᏛᏅᎢ, ᎯᎠ ᏂᎨᏥᏪᏎᎸ, ᎥᏝ ᎤᏍᏗ ᎤᏅᎢᏥᎪᎳᏗᏍᏗ ᏱᎨᏎᏍᏗ ᏂᏚᎩᏨᏂᏒ ᎡᏣᏁᎳᏁᎸ ᏗᏦᏢᏗ ᏗᏛᏓᏅᎯ. ᎾᏍᎩᏃ ᏚᎾᏠᏎ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᏓᏂᏙᎨ ᎠᎾᎢᏒ ᏇᎵᏲᎩᏱ ᏭᏁᏙᎸᎯ: ᎯᎠᏃ ᏂᏚᏂᏪᏎᎴᎢ, ᏱᎰᏩ ᏫᏗᏣᎧᏅᎦ ᎠᎴ ᏫᏗᎫᎪᏓ;, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎣᏥᏩᏒᎬ ᎠᏒᎩᏳ ᏂᏨᏁᎸ ᏇᎵᏲ ᎠᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎨᎦᏒᎦᎳᏗᏍᏔᏅ ᎪᎩᎯᏍᏙᏗ. ᎼᏏᏃ ᏔᎵᏁ ᏱᎰᏩ ᏤᏙᎲ, ᏭᎶᏎᎢ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎦᏙᏃ ᎤᏲ ᏂᏙᎲᏁᎸ ᎯᎠ ᏴᏫ? ᎦᏙᏃ ᏗᏍᎩᏅᏒ ᎠᏴ? ᏫᎦᏥᎷᏤᎸᎯᏰᏃ ᏇᎵᏲ ᏥᏯᎵᏃᎮᏙᏗᏱ ᏕᏣᏙᎥ ᎬᏗᏍᎬᎢ, ᎤᏲ ᏂᏚᏩᏁᎸ ᎯᎠ ᏴᏫ; ᎥᏝ ᎠᎴ ᎤᏍᏗ ᎤᏅ ᏱᏚᏓᎴᏒ ᏗᏣᏤᎵ ᏴᏫ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎿᏉ ᏘᎪᎯ ᏅᏗᏥᎬᏁᎵᏒ ᏇᎵᏲ; ᎤᎵᏂᎩᏛᏰᏃ ᎤᏬᏰᏂ ᏓᎬᏔᏂ ᏙᏓᎦᎧᏂ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎤᏬᏰᏂ ᏓᎬᏔᏂ ᏙᏓᎦᏄᎪᏫᏏ ᎤᏤᎵᎪᎯ ᎦᏙᎯ. ᎤᏁᎳᏅᎯᏃ ᎤᏬᏁᏔᏁ ᎼᏏ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏱᎰᏩ: ᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏯᏛᏁᎸᎩ ᎡᏆᎭᎻ, ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ, ᏨᏉᏍᏙᏗ ᎯᎠ ᏄᏍᏛᎩ, ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ: ᏱᎰᏩᏍᎩᏂ ᏨᏉᏍᏙᏗ ᎨᏒ ᎥᏝ ᏱᎬᎩᎦᏔᎮᎢ. ᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏯᏛᏁᎸᎩ. ᎡᏆᏎᎻ ᎡᏏᎩ, ᎠᎴ ᏤᎦᎲ, ᏨᏉᏍᏙᏗ ᎯᎠ ᏄᏍᏛᎩ, ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏱᎰᏩᏍᎩᏂ ᏨᏉᏍᏙᏗ ᎨᏒ ᎥᏝ ᏱᎬᎩᎦᏔᎮᎢ. ᎠᎴ ᎾᏍᏉ ᎧᏃᎮᏛ ᏙᎦᏠᎯᏍᏔᏅ ᎦᏥᏍᏓᏱᏕᎸ, ᎾᏍᎩ ᎦᏥᏁᏗᏱ ᎦᏙᎯ ᎨᎾᏂ, ᎦᏙᎯ ᎾᎿ ᎤᏁᏙᎸᎢ, ᎾᎿ ᎠᏁᏙᎯᏉ ᎨᏒᎢ. ᎠᎴ ᎾᏍᏉ ᎦᏥᏯᏛᎦᏁᎸ ᏚᏂᎵᏰᏗᏍᎬ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᏥᏕᎬᏩᏂᎾᏝᎠ; ᎠᎴ ᎠᏆᏅᏓᏓ ᎧᏃᎮᏛ ᏓᏆᏠᎯᏍᏔᏅᎢ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎯᎠ ᏂᎩᏪᏏ ᎢᏏᎵ ᏧᏪᏥ, ᎠᏴ ᏱᎰᏩ, ᎠᎴ ᎠᏴ ᏓᏨᏳᏓᎴᏏ ᎢᏣᏓᏄᏴᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᎨᏥᏐᏠᎸᎢ; ᎠᎴ ᏓᏨᏳᏓᎴᏏ ᏕᎨᏥᎾᏝᎥᎢ; ᎠᎴ ᏓᏨᏯᎫᏴᎯ ᏥᏃᎨᏂ ᎠᎩᏌᎳᏓᏅᎯ ᎨᏒ ᏓᎬᏔᏂ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏍᏛᏗᏍᏗ ᎨᏒᎢ. ᎠᎴ ᏓᏨᏯᏅᎯ ᏗᏆᏤᎵ ᏴᏫ ᏅᏓᏨᏴᏁᎵ, ᎠᏴᏃ ᎢᏨᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ; ᎠᎴ ᎢᏥᎦᏔᎮᏍᏗ ᎠᏴ ᏱᎰᏩ ᎢᏨᏯᏁᎳᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏧᏓᎴᏛ ᎢᏣᏓᏄᏴᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᎨᏥᏐᏠᎸᎢ. ᎠᎴ ᏫᏙᏓᏨᏯᏘᏃᎵ ᎾᎿ ᎦᏙᎯ ᎠᏆᏎᎵᏔᏅᎯ ᏥᎩ ᎦᏥᏁᏗᏱ ᎡᏆᎭᎻ, ᎡᏏᎩ ᎠᎴ ᏤᎦᏡᏈ; ᎠᎴ ᏓᏨᏁᎵ ᎾᏍᎩ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ; ᎠᏴ ᏱᎰᏩ. ᎼᏏᏃ ᎾᏍᎩ ᏂᏚᏪᏎᎴ ᎢᏏᎵ ᏧᏪᏥ; ᎠᏎᏃ ᎥᏝ ᏱᎬᏩᏛᏓᏍᏓᏁᎴ ᎼᏏ , ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎡᎯᏍᏗ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏕᎨᏥᎾᏝᎥ ᎠᏂᎩᎵᏲᎬᎢ. ᏱᎰᏩᏃ ᎤᏁᏤᎴ ᎼᏏ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏫᏴᎭ, ᏫᏁᏥ ᏇᎵᏲ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᏧᏲᎯᏍᏗᏱ ᎤᏂᏄᎪᎢᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎤᏤᎵᎪᎯ ᎦᏙᎯ. ᎼᏏᏃ ᎤᏁᏤ ᏱᎰᏩ ᎠᎦᏔᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎢᏏᎵ ᏧᏪᏥ ᎥᏝ ᏱᎬᏆᏛᏓᏍᏗᏁᎸ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏇᎵᏲ ᏯᏆᏛᏓᏍᏓᏏ, ᎠᏴ ᎥᎩᎱᏍᏕᏛ ᏂᎨᏂᎾ ᏥᎩ ᏕᏥᎠᏁᎦᎸᎢ? ᏱᎰᏩᏃ ᏚᏬᏁᏔᏁ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᏚᎨᏅᏕ ᎤᏁᏨᎯ ᎤᎾᏛᎪᏗ ᎢᏏᎵ ᏧᏪᏥ ᎠᎴ ᏇᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏈᎢ, ᎾᏍᎩ ᏂᏙᏓᏳᏂᏄᎪᏫᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ ᎦᏙᎯ. ᎯᎠ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒᎢ ᎾᏍᎩ ᏧᏂᎦᏴᎵᎨ ᏧᎾᏁᏢᏔᏅᏛ ᎨᏒᎢ. ᎾᏍᎩ ᎷᏈᏂ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏓᏂᎵᎨ ᏥᎨᏎ ᎢᏏᎵ ᎤᏪᏥ: ᎭᏃᎦ, ᎠᎴ ᏆᎷ, ᎮᏏᎶᏅ ᎠᎴ ᎧᎹ; ᎯᎠ ᎾᏍᎩ ᎷᏈᏂ ᏧᏁᏢᏔᏅᏛ ᎨᏒᎢ. ᏏᎻᏯᏂᏃ ᏧᏪᏥᏛᎯ; ᏥᎩᏒᎵ, ᎠᎴ ᏤᎻᏂ, ᎠᎴ ᎣᎭᏗ, ᎠᎴ ᏤᎩᏂ, ᎠᎴ ᏐᎭ, ᎠᎴ ᏐᎳ, ᎨᎾᏂ ᎡᎯ ᎠᎨᏴ ᎤᏪᏥ: ᎯᎠ ᎾᏍᎩ ᏏᎻᏯᏂ ᏧᏁᏢᏔᏅᏛ ᎨᏒᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏚᎾᏙᎥ ᎵᏫ ᏧᏪᏥ, ᎤᎾᏁᏢᏔᏅᏒᎢ; ᎦᏐᏂ, ᎠᎴ ᎪᎭᏗ, ᎠᎴ ᎻᎴᎳ. ᎵᏫᏃ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ. ᎦᏐᏂ ᏧᏪᏥ; ᎵᏈᏂ ᎠᎴ ᏌᏱᎹ ᎤᎾᏁᏢᏔᏅᏒᎢ. ᎪᎭᏗᏃ ᏧᏪᏥ; ᎠᎻᎳᎻ ᎠᎴ ᎢᏌ, ᎠᎴ ᎯᏩᏂ, ᎠᎴ ᎠᏌᏱᎵ. ᎪᎭᏗᏃ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᏦᎢᎦᎵ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ. ᎻᎴᎳᏃ ᏧᏪᏥ; Ꮉ ’Ꮅ, ᎠᎴ ᎩᏏ; ᎯᎠ ᎾᏍᎩ ᎵᏫ ᏧᏪᏥᏛᎯ ᎤᎾᏁᏢᏔᏅᏒᎢ. ᎠᎻᎳᎻᏃ ᏦᎩᏇᏗ ᎤᏙᏓ ᎤᏙ ᎤᏓᏴᏎᎢᎾᏍᎩᏃ ᎡᎳᏂ ᎠᎴ ᎼᏏ. ᏚᎾᏄᎪᏫᏎᎴᎢ. ᎠᎻᎳᎻᏃ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎦᎵᏉᎩ ᏧᏎᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ. ᎢᏌᏃ ᏧᏪᏥ; ᎪᎳ, ᎠᎴ ᏂᏇᎩ, ᎠᎴ ᏥᎩᏯ. ᎠᏌᏱᎵᏃ ᏧᏪᏥ; ᎻᏎᎢᎵ, ᎠᎴ ᎡᎳᏤᏈᏂ, ᎠᎴ Ꮟ’Ꮃ. ᎡᎳᏂᏃ ᎢᎵᏏᏆ ᎤᏓᏴᏎᎢ, ᎾᏍᎩ ᎡᎻᏂᏓ ᎤᏪᏥ ᎤᏙ ᎾᎠᏐᏂ; ᎾᏍᎩᏃ ᏚᎾᏄᎪᏫᏎᎴ ᏁᏓᏈ ᎠᎴ ᎠᏆᏳ, ᎡᎵᎡᏌ ᎠᎴ ᎢᏗᎹ. ᎪᎳᏃ ᏧᏪᏥ; ᎠᏌ, ᎠᎴ ᎡᎵᎨᎾ, ᎠᎴ ᎠᏆᏯᏌᏈ; ᎯᎠ ᎾᏍᎩ ᎠᏂᎪᎭᏗ ᎤᎾᏁᏢᏔᏅᏛ ᎨᏒᎢ. ᎡᎵᎡᏌᏃ ᎡᎳᏂ ᎤᏪᏥ ᎤᏓᏴᏎ ᎠᏛ ᏊᏓᏱᎵ ᎤᏪᏥ; ᎾᏍᎩᏃ ᏈᏂᎭᏏ ᎤᎾᏄᎪᏫᏎᎴᎢ ᎯᎠ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᏧᏂᎦᏴᎵᎨ ᎢᏳᎵᏍᏔᏅᎯ ᎠᏂᎵᏫ, ᏚᎾᏁᏢᏔᏅᏒᎢ. ᎯᎠ ᎾᏍᎩ ᎡᎳᏂ ᎠᎴ ᎼᏏ ᏱᎰᏩ ᎯᎠ ᏥᏂᏚᏪᏎᎴᎢ, ᎢᏏᎵ ᏧᏪᏥ ᏗᏍᏗᏄᎪᏩ ᎢᏥᏈᏱ, ᏚᎾᏓᏡᏩᏗᏒᎢ. ᎯᎠ ᎾᏍᎩ ᏧᏂᏁᏤᎴ ᏈᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏈᏱ, ᏧᏄᎪᏫᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ; ᎯᎠ ᎾᏍᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ. ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ ᎢᏥᏈᏱ; ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏤᎴ ᎼᏏ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏱᎰᏩ; ᎯᏁᏥ ᏇᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏡᏱ ᏂᎦᏛ ᏂᎬᏪᏎᎲᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᏱᎰᏩ, ᎬᏂᏳᏉ, ᎠᏴ ᎥᎩᎱᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᏕᏥᎠᏁᏕᎸᎢ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏇᎵᏲ ᏯᏆᏛᏓᎶᏏ? ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎬᏂᏳᏉ, ᏂᎯ ᎤᏁᎳᏅᎯ ᏂᎬᏴᏁᎸ ᏇᎵᏲ ᏓᎧᏅᎢ; ᎡᎳᏂᏃ ᎡᏣᏂᎵ ᏣᏤᎵ ᎠᏙᎴᎰᏍᎩ ᎨᏎᏍᏗ. ᏂᎯ ᏘᏃᎮᎵ ᏂᎦᏛ ᎬᏁᏤᎲᎢ; ᎡᎳᏂᏃ ᎡᏣᏂᎵ ᏓᎧᏁᏤᎵ ᏇᎵᏲ ᏧᏪᎧᎲᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎤᏤᎵᎪᎯ. ᏇᎵᏲᏃ ᎤᎾᏫ ᏓᏥᏍᏓᏱᏕᎵ, ᎠᎴ ᎤᏣᏘ ᏙᏓᏥᎾᏄᎪᏫᏏ ᏗᏆᏤᎵ ᎤᏰᎸᏛᎢ ᎠᎴ ᏗᏆᏤᎵ ᎤᏍᏆᏂᎪᏗ ᎢᏥᏡᏱ ᎦᏙᎯ. ᏇᎵᏲᏃ ᎥᏝ ᏴᏓᏍᏓᏛᏓᏍᏓᏁᎵ, ᎾᏍᎩᏃ ᎢᏥᏈ ᏓᏥᏯᏏᏔᏗ, ᎠᎴ ᏓᎦᏥᏄᎪᏫᏏ ᏗᏆᏤᎵ ᏚᎾᏓᏡᏩᏗᏒ ᏗᏆᏤᎵ ᏴᏫ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ ᎦᏙᎯ ᎤᏣᏘ ᎤᏓᏍᏛᏗᏍᏗ ᎬᏗᏍᎬᎢ. ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᏛᎾᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ, ᎾᎯᏳ ᎠᏉᏰᏂ ᏥᎾᏄᎪᏫᏎᎸ ᎢᏥᏈ, ᎠᎴ ᎾᎿ ᎠᏁᎲ ᎦᏥᏄᎪᏫᏒ ᎢᏏᎵ ᏧᏪᏥ. ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏄᎾᏛᏁᎴ ᏱᎰᏩ ᏄᏂᏪᏎᎸᎢ; ᎾᏍᎩ ᏄᎾᏛᏁᎴᎢ. ᎼᏏᏃ ᏁᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎡᎳᏂᏃ ᏁᎳᏍᎪᎯ ᏦᎢᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᏇᎵᏲ ᎾᏂᏬᏁᏔᏅ. ᏱᎰᏩᏃ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏚᏁᎴᎴᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏇᎵᏲ ᎢᏍᏗᏁᏤᎸᎭ ᎯᎠ ᏂᏍᏗᏪᏎᎸᎭ, ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏍᏗᎾᏄᎪᏩ; ᎿᏉ ᎯᎠ ᏂᏪᏎᎸᎭ ᎡᎳᏂ, ᎯᏴ ᏣᏙᎳᏅᏍᏗ, ᎠᎴ ᏇᎵᏲ ᏓᎧᏅ ᏣᏚᎦ, ᎢᎾᏛᏃ ᏅᏓᎦᎵᏍᏔᏂ. ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏇᎵᏲ ᏭᏂᏴᏎᎴᎢ, ᎠᎴ ᏱᎰᏩ ᏄᏂᏪᏎᎸ ᎾᏍᎩ ᏄᎾᏛᏁᎴᎢ: ᎠᎴ ᎡᎳᏂ ᎤᏙᎳᏅᏍᏗ ᎤᏗᏅᏎ ᏇᎵᏲ ᏓᎧᏅ, ᎠᎴ ᏓᏂᎧᏅ ᏧᏅᏏᏓᏍᏗ, ᎢᎾᏛᏃ ᏄᎵᏍᏔᏁᎢ. ᏇᎵᏲᏃ ᎾᏍᏉ ᏫᏚᏯᏅᎮ ᎠᏂᎦᏔᎾᎢ ᎠᏂᏍᎦᏯ ᎠᎴ ᏗᎾ ᏙᏂᏍᎩ; ᏗᎾ ᏙᏂᏍᎩᏃ ᎢᏥᏈᏃ ᎠᏁᎯ ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᎾᏛᏁᎴ ᏚᏅᏔᏁ ᏧᎾ ᏙᏅ ᏙᏗ; ᎠᏂᏏᏴᏫᎭᏰᏃ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᏚᎾᏗᏅᏎ ᏧᎾᏙᎳᏅᏍᏗ, ᎢᎾᏛᏃ ᏂᎦᎵᏍᏔᏁᎢ; ᎡᎳᏂᏃ ᎤᏙᎳᏅᏍᏗ ᏚᎩᏎ ᎾᏍᎩ ᏧᎾᏙᎳᏅᏍᏗ. ᎤᏍᏓᏱᏕᎴᏃ ᏇᎵᏲ ᎤᎾᏫ, ᎾᏍᎩ ᏂᏚᏛᏓᏍᏓᏁᎲᎾ ᎨᏎᎢ; ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᏇᎵᏲ ᎤᎾᏫ ᎠᏥᏍᏓᏱᏕᎸ, ᎤᎨᏳᎲᏍᎦ ᏧᏲᎯᏍᏗᏱ ᏴᏫ. ᎾᎷᏤᎸᎭ ᏇᎵᏲ ᏑᎾᎴᎢ; ᎬᏂᏳᏉ ᎠᎹᏱ ᏓᏰᏏ; ᎡᏉᏄᎶᏗᏃ ᎭᎴᏅᎭ ᎯᎦᏘᏛᎭ; ᎠᏙᎳᏅᏍᏗᏃ ᎢᎾᏛ ᎢᏳᎵᏍᏔᏅᎯ ᎯᏁᏒᎭ. ᎯᎠᏃ ᏂᏪᏎᎸᎭ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ ᏗᎩᏅᏒ ᎬᎷᎮᏗᏱ, ᎯᎠ ᎢᎬᏪᏎᏗᏱ, ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎢᎾᎨᎢ; ᎬᏂᏳᏉᏃ ᎪᎯ ᎢᏯᏍᏗ ᎥᏝ ᏯᏛᏓᏍᏗᏍᎨᎢ. ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ, ᎠᏂ ᎾᏍᎩ ᏔᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ; ᎬᏂᏳᏉ ᎠᏙᎳᏅᏍᏗ ᏣᏆᏒᎦᎸ ᎠᎹ ᎡᏉᏂ ᎦᏁᎲ ᏓᎬᏂᎵ, ᎩᎬᏃ ᏅᏓᎦᎵᏍᏔᏂ. ᎠᏣᏗᏃ ᎡᏉᏂ ᎠᏁᎲ ᏙᏛᏂᎵᏬᏥ. ᎡᏉᏂᏃ ᎠᏒᎨᏍᏗ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎤᏂᏁᎵᏍᎨᏍᏗ ᎤᎾᏗᏔᏍᏗᏱ ᎠᎹ ᎡᏉᏂ ᎠᏢᏛ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎯᎠ ᏂᏪᏏ ᎡᎳᏂ, ᏣᏙᎳᏅᏍᏗ ᎯᏴ ᏦᏰᏂᏃ ᎯᏌᎳᏛᎦ ᎢᏥᏈᏱ ᎠᎹ ᏕᎦᏁᎲ ᎦᎸᎳᏗᏢ, ᎡᏉᏂ ᏚᏪᏴᎢ, ᏛᏓᎸᎢ, ᎠᎴ ᎦᎸᎳᏗᏢ ᏂᎦᏛ ᎠᎹ ᏕᏰᏁᏩᏗᏒᎢ; ᎾᏍᎩ ᎩᎬ ᎢᏧᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᎦᏁᎯᎭ ᎩᎬ ᎢᏳᎵᏍᏗᏱ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ, ᎦᏙᎯ ᎠᎴ ᏅᏲᎯ. ᎼᏏᏃ ᎠᎴ ᎡᎡᎳᏂ ᎾᏍᎩ ᏄᎾᏛᏁᎴ ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏂᏪᏎᎸᎢ; ᎠᎴ ᎤᏌᎳᏓᏁ ᎠᏙᎳᏅᏍᏗ, ᎠᎴ ᎠᎹ ᎡᏉᏂ ᎡᎬ ᏚᏩᏂᎴᎢ, ᏓᎧᏅ ᏇᎵᏲ, ᎠᎴ ᏓᏂᎧᏅ ᏧᏅᏏᏓᏍᏗ; ᏂᎦᏛᏃ ᎠᎹ ᎡᏉᏂ ᎡᎬ ᎩᎬ ᏄᎵᏍᏔᏁᎢ. ᎠᏣᏗᏃ ᎡᏉᏂ ᎠᏁᎲ ᏚᏂᎵᏬᏤᎢ; ᎠᎴ ᎡᏉᏂ ᎠᏒᎨᎢ, ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎥᏝ ᏰᎵ ᎬᏩᎾᏗᏔᏍᏗ ᏱᎨᏎ ᎠᎹ ᎡᏉᏂ ᎠᏢᏛ; ᎠᎴ ᎩᎬ ᏕᎦᏁᏩᏗᏎ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ. ᏗᎾᏙᏂᏍᎩᏃ ᎢᏥᏈᏱ ᎠᏁᎯ ᎾᏍᎩ ᎾᏍᏉ ᏄᎾᏛᏁᎴ ᏧᎾᏙᏅᏙᏗ ᏓᏅᏗᏍᎬᎢ; ᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏎᎢ, ᎥᏝ ᎠᎴ ᏱᏚᏛᏓᏍᏓᏁᎴᎢ, ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ. ᏇᎵᏲᏃ ᎤᏕᏔᎲᏎᎢ, ᎠᎴ ᏗᎦᏁᎸ ᏭᏴᎴᎢ, ᎾᏍᏉ ᎠᎴ ᎯᎠ ᎥᏝ ᏳᎦᏌᏯᏍᏔᏁᎢ. ᏂᎦᏛᏃ ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᎾᏍᎪᏏᏙᎮ ᎡᏉᏄᎶᏗ ᎠᎹ ᎤᎾᏗᏔᏍᏗ ᎤᏂᏲᎮᎢ; ᏝᏰᏃ ᏰᎵ ᎬᏩᎾᏗᏔᏍᏗ ᏱᎨᏎ ᎠᎹ ᎡᏉᏂ ᎡᎬᎢ. ᎦᎵᏉᎩᏃ ᎢᎦ ᏄᎶᏎᎢ, ᎾᏍᎩ ᏱᎰᏩ ᎡᏉᏂ ᎬᏩᏂᎸᎯ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ ᏫᎷᏥ ᏇᎵᏲ, ᎯᎠᏃ ᏫᏂᏪᏏ, ᏱᎰᏩ ᎯᎠ ᏂᎦᏪᎭ, ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ. ᎢᏳᏃ ᎢᏣᎨᏳᎲᏍᎨᏍᏗ ᏗᎩᏲᎯᏍᏗᏱ ᏗᏆᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ ᏂᎬᎾᏛ ᏣᏤᎵᎪᎯ ᏩᎶᏏ ᎤᎾᏕᏗᏱ ᏅᏓᎬᏁᎵ. ᎡᏉᏂᏃ ᎨᏴᎢ, ᏩᎶᏏ ᏧᏈᏯ ᏧᎾᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏂᎸᏍᏗ ᎠᎴ ᎯᏁᎸ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏂᏏᏗᏱ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏤᏍᏙᎩᎯ ᎤᏂᎵᏓᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᏅᏏᏓᏍᏗ ᏓᏂᏁᎸ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎬᏩᏂᎵᏓᏍᏗ ᎨᏎᏍᏗ ᏗᏣᏤᎵ ᏴᏫ, ᎠᎴ ᏗᏣᏤᎵ ᏗᏣᏚᏗᏱ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᏣᏑᎨᏗᏱ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᏩᎶᏏ ᎨᏣᎵᏓᏍᏗ ᎨᏎᏍᏗ ᏨᏒ. ᎠᎴ ᎬᏩᏂᎵᏓᏍᏗ ᎨᏎᏍᏗ ᏗᏣᏤᎵ ᏴᏫ. ᎠᎴ ᏂᎦᏛ ᏗᏣᏤᎵ ᏘᏅᏏᏓᏍᏗ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎡᎳᏂ ᎯᎠ ᏂᏪᏏ, ᏦᏰᏂ ᎯᏌᎳᏛᎦ ᏣᏒᎦᎴᏍᏗ ᏣᏙᎳᏅᏍᏗ ᏚᏪᏴ ᎦᎸᎳᏗᏢ ᎡᏉᏂ ᏕᎨᏴᎢ, ᎠᎴ ᏛᏓᎸᎢ, ᎠᎴ ᏩᎶᏏ ᏘᎾᏄᎪᏩ ᎢᏥᏈᏱ ᎦᏙᎯ. ᎡᎳᏂᏃ ᎤᏌᎳᏓᏁ ᎤᏬᏰᏂ ᎦᎸᎳᏗᏢ ᎠᎹ ᏕᎦᏁᎲ ᎢᏥᏈᏱ; ᏩᎶᏏᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᏄᏢᏁ ᎦᏙᎯ ᎢᏥᏈᏱ. ᎠᎾᏙᏂᏍᎩᏃ ᎾᏍᎩᏯ ᏄᎾᏛᏁᎴ ᏧᎾᏙᏅᏙᏗ ᏓᏅᏗᏍᎬᎢ, ᎠᎴ ᏚᏂᎾᏄᎪᏫᏎ ᏩᎶᏏ ᎢᏥᏈᏱ ᎦᏙᎯ. ᏇᎵᏲᏃ ᎤᏓᏅᏎ ᏫᎨᏥᏯᏅᏗᏱ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏍᏗᏔᏲᏏ ᏱᎰᏩ ᎾᏍᎩ ᏗᎩᎧᎲᎡᏗᏱ ᏩᎶᏏ ᎠᏴ ᎠᎴ ᏗᏆᏤᎵ ᏴᏫ; ᎠᏴᏃ ᏙᏓᎦᏥᏲᏏ ᏴᏫ, ᎾᏍᎩ ᎠᏥᎸ ᎤᏁᎴᏗᏱ ᏱᎰᏩ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ, ᏗᏍᏊᎪᏓᏏ. ᎢᎳᎩᏳ ᏓᏥᏔᏲᎵ ᎾᏍᎩ ᎢᏰᏣᏛᏁᏗᏱ ᏂᎯ, ᎠᎴ ᏘᏅᏏᏓᏍᏗ, ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ. ᎾᏍᎩ ᏧᏛᏙᏗᏱ ᏩᎶᏏ ᏂᎯ ᏂᏣᏛᏅᎢ. ᎠᎴ ᏕᎯᏁᎸᎢ, ᎾᏍᎩᏃ ᎡᏉᏂ ᎤᏩᏒ ᎤᎾᏕᏗᏱ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏑᎾᎴᎢ. ᎾᏍᎩᏯ ᏂᏣᏪᏒ ᏫᏂᎦᎵᏍᏓ, ᎤᏬᏎᎴᎢ; ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏗᏱ ᎩᎶ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ ᏄᏍᏛ ᎾᏍᎩ ᏄᏍᏛᎾ ᎨᏒᎢ. ᏩᎶᏏᏃ ᏓᎨᏣᏓᏅᏒᎵ ᏂᎯ, ᎠᎴ ᏕᎯᏁᎸᎢ, ᎠᎴ ᏓᎬᏩᎾᏓᏅᎡᎵ ᏘᏅᏏᏓᏍᏗ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ; ᎡᏉᏂᏉ ᎤᏩᏒ ᎠᏁᎮᏍᏗ. ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᎤᏂᏄᎪᏨᎩ ᏇᎵᏲ ᎤᎾᏓᏅᎡᎸᎩ; ᎠᎴ ᎼᏏ ᎤᏍᏗᏰᏔᏅᎩ ᏱᎰᏩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏩᎶᏏ ᏚᎾᏄᎪᏫᏎᎸ ᏇᎵᏲ. ᏱᎰᏩᏃ ᏄᏛᏁᎸᎩ ᎾᏍᎩᏯ ᏄᎲᏒ ᎼᏏ; ᎠᎴ ᏩᎶᏏ ᏚᏂᎵᏬᏨᎩ ᏓᏓᏁᎸᎢ, ᎣᏂ ᏕᎤᎾᏐᏴᎢ, ᎠᎴ ᏕᎦᎶᎨᏒᎢ. ᏚᏂᏡᏂᏙᎸᎩᏃ, ᎦᏙᎯᏃ ᎠᏒᎬᎩ. ᏇᎵᏲᏍᎩᏂ ᎤᏙᎴᎰᏒ ᏅᏩᏙᎯᏯᏛ ᏄᎵᏍᏔᏅᎢ, ᎤᏍᏓᏱᏛᎩ ᎤᎾᏫ, ᎠᎴ ᏂᏚᏛᏓᏍᏓᏁᎸᎾ ᎨᏒᎩ; ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ. ᏱᎨᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎡᎳᏂ ᎯᎠ ᏂᏪᏏ, ᎯᎾᏄᎪᏩ ᏣᏙᎳᏅᏍᏗ, ᎠᎴ ᎲᏂᎦ ᎪᏍᏚ ᎦᏙᎯ ᎦᎳᎨᏴᎢ, ᎾᏍᎩ ᏘᏅ ᎤᎾᏙᏢᏗᏱ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎸᎩ; ᎡᎳᏂᏰᏃ ᎤᏙᏯᏅᎯᏛᎩ ᎤᏙᎳᏅᏍᏗ ᎦᎦᏁᎯ, ᎠᎴ ᎪᏍᏚ ᎤᏩᏂᎸᎩ ᎦᏙᎯ ᎦᎳᎨᏴᎢ, ᏘᏅᏃ ᎤᎾ ᏙᏢᏅᎩ, ᏕᎬᏩᏂᎳᎥᎩ ᏴᏫ, ᎠᎴ ᎦᎾᏝᎢ; ᏂᎦᏛ ᎪᏍᏚ ᎦᏙᎯ ᎦᎳᎨᏴ ᏘᏅ ᎤᎾᏙᏢᏅᎩ, ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ. ᏗᎾᏙᏂᏍᎩᏃ ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸᎩ ᏧᎾᏙᏅᏗ ᏓᏅᏗᏍᎬᎢ, ᏘᏅ ᏧᏂᎾᏄᎪᏫᏍᏗᏱ, ᎠᏎᏃ ᎤᏂᏄᎸᏅᎩ ᎾᏍᎩᏃ ᏘᏅ ᏕᎬᏩᏂᎳᎥᎩ ᏴᏫ ᎠᎴ ᎦᎾᏝᎢ. ᏗᎾᏙᏂᏍᎩᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ ᏇᎵᏲ, ᎯᎠ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᏰᏌᏛᎢ: ᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏒᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏛᏓᏍᏓᏁᎴᎢ; ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏁᎳᏅᎯ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏑᎾᎴ ᎭᏗᏛᎲᎭ, ᎠᎴ ᎢᎬᏱᏗᏢ ᏫᏯᎴᏁᎸᎭ ᏇᎵᏲ; ᎬᏂᏳᏉ, ᎠᎹᏱ ᏗᎦᏖᏍᏗ; ᎯᎠᏃ ᏂᏪᏎᎸᎭ, ᎯᎠᏃ ᏂᎦᏪᎭ ᏱᎰᏩ, ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ; ᎢᏳᏃ ᎢᏣᎨᏳᎲᏍᎨᏍᏗ ᏗᎩᏲᎯᏍᏗᏱ ᏗᏆᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ, ᎠᏆᏓᏅᏍᏗ ᎨᏎᏍᏗ ᎨᏣᎷᏤᏗᏱ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ, ᎠᎴ ᎬᏩᏂᎷᏤᏗᏱ ᏘᏅᏏᏓᏍᏗ, ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ, ᎠᎴ ᏕᎯᏁᎸ ᏅᏂᏴᏍᏗᏱ; ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᏂᏁᎸ ᏗᏂᎧᎵᏬᎯ ᎨᏎᏍᏗ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ, ᎠᎴ ᎾᏍᏉ ᎦᏙᎯ ᎾᎿ ᎠᏁᎲᎢ. ᏓᎦᏓᏓᎴᏔᏂᏃ ᎾᎯᏳ ᎢᎦ ᎪᏏᏂ ᏍᎦᏚᎩ ᎨᏒᎢ, ᎾᎿ ᏓᏂᏁᎸ ᏗᏆᏤᎵ ᏴᏫ, ᎥᏝ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ ᎾᎿ ᏯᏁᎮᏍᏗ; ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏗᏱ ᎠᏴ ᏱᎰᏩ ᎦᏙᎯ ᎠᏰᎵ ᎾᏆᏛᏅᎢ. ᎠᎴ ᏓᎦᏥᏯᏓᏓᎴᏔᏂ ᏗᏆᏤᎵ ᏴᏫ ᎠᎴ ᏂᎯ ᏗᏣᏤᎵ ᏴᏫ; “ᎾᎴ ᎾᏍᎩ ᎯᎠ ᎤᏰᎸᏛ ᎬᏂᎨᏒ ᏅᏓᎦᎵᏍᏔᏂ. ᏱᎰᏩᏃ ᎾᏍᎩ ᏄᏛᏁᎸᎩ; ᎠᎴ ᎤᏂᎷᏨᎩ ᎤᎾᏕᏯᏙᏗ ᎠᎾᏓᏍᎦᎶᎩ ᏛᎦ, ᎤᏂᏴᎸᎩ ᏇᎵᏲ ᎦᏁᎸᎢ, ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᏓᏂᏁᎸᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ; ᎦᏙᎯ ᎤᏲᏨᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎾᏓᏍᎦᎶᎩ ᏛᎦ. ᏇᎵᏲᏃ ᏫᏚᏇᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎯᎠᏃ ᏄᏪᏒᎩ, ᎢᏤᎾ ᎠᏥᎸ ᏪᏤᎶᏏ ᎢᏣᏁᎳᏅᎯ ᎠᏂ ᎦᏙᎯ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏱᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏯᏛᏁᏗᏱ; ᎠᏥᎸᏰᏃ ᏲᏤᎳᏍᏓ ᎤᏂᏆᏘᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏤᎵᎦ, ᏲᏣᎵᏍᎪᎸᏓᏏ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ; ᎬᏂᏳᏉ, ᏥᎪ ᎠᏥᎸ ᏓᏲᏤᎳᏍᏔᏂ ᎤᏂᏆᏘᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏤᎵᎦ ᏓᏂᎧᏅᎢ, ᏝᏍᎪᏃ ᏅᏯ ᏱᏙᎦᎪᎬᏂᏍᏓ? ᏦᎢᏍᎩᏂ ᎢᎦ ᎡᏅᏍᏗ ᎢᏴᏛ ᏓᏲᏤᏏ Ꭰ ᎢᎾᎨᎢ, ᎠᎴ ᎠᏥᎸ ᏮᏓᏲᏤᎴᎵ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏃᎩᏪᏎᎸᎢ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏙᏓᏨᏲᏏ ᎢᏤᏅᏍᏗᏱ, ᎾᏍᎩ ᎠᏥᎸ ᎡᏤᎴᏗᏱ ᏱᎰᏩ ᎢᏣᏁᎳᏅᎯ Ꭰ ᎢᎾᎨᎢ; ᏞᏍᏗ ᎠᏗᎾ ᎢᏅ ᎢᏤᏅᏒᎩ: ᏍᏆᏓᏙᎵᏍᏓᏏ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᏓᎦᏓᏅᏏ ᎮᏙᎲᎢ, ᎠᎴ ᏓᏥᏔᏲᏎᎵ ᏱᎰᏩ ᎾᏍᎩ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ ᎬᏩᏓᏅᏒᏗᏱ ᏇᎵᏲ, ᎬᏩᎾᏓᏅᎡᏗᏱ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎬᏩᎾᏓᏅᎡᏗᏱ ᏧᏤᎵ ᏴᏫ ᎤᎩᏨᏅᎢ; ᎠᏎᏃ ᏞᏍᏗ ᎦᎶᏄᎮᏛ ᏳᏩᏔᏁᏍᏗ ᏇᎵᏲ ᎾᏍᎩ ᏂᏚᏲᏍᎬᎾ ᎨᏒ ᏴᏫ ᎠᏥᎸ ᎤᏁᎴᏗᏱ ᏱᎰᏩ. ᎼᏏᏃ ᏇᎵᏲ ᎤᏓᏅᎡᎸᎩ, ᎠᎴ ᏱᎰᏩ ᎤᏔᏲᏎᎸᎩ. ᏱᎰᏩᏃ ᎾᏍᎩᏯ ᏄᏪᏒ ᎼᏏ ᏄᏛᏁᎸᎩ; ᎠᎴ ᏚᏪᎧᎲᎡᎸᎩ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ ᏇᎵᏲ, ᎠᎴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏧᏤᎵ ᏴᏫ; ᎠᎴ ᎥᏝ ᏌᏉ ᏳᎵᏃᎯᏰᎢ. ᏇᎵᏲᏃ ᎠᏏᏉ ᎤᎾᏫ ᎤᏍᏓᏱᏛᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏲᏎ ᏴᏫ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏇᎵᏲ ᏫᎷᏥ, ᎠᎴ ᎯᎠ ᏫᏂᏪᏏ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏖᏡᎷ ᎤᎾᏤᎵᎦ. ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ. ᎢᏳᏰᏃ ᎢᏣᎨᏳᏅ ᏗᎩᏲᎯᏍᏗᏱ, ᎠᎴ ᎠᏏᏉ ᏙᎩᏂᏴᏎᏍᏗ, ᎬᏂᏳᏉ, ᏱᎬᏩ ᏙᏛᏏᏔᏗ ᏗᏣᏤᎵ ᎦᎾᏝᎢ ᏠᎨᏏ ᎠᏁᎯ, ᏐᏈᎵ, ᏗᏂᎵᎠᏅᎯᏛ ᏐᏈᎵ, ᎨᎻᎵ, ᏩᎦ, ᎠᎴ ᎠᏫ; ᎤᏣᏘ ᎤᏍᏚᏎᏗ ᎥᏳᎩ ᏓᏳᏂᏰᎢᎵᏕᎵ. ᎠᎴ ᏱᎰᏩ ᏙᏛᏓᏓᎴᏔᏂ ᎦᎾᏝᎢ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎦᎾᏝᎢ ᎢᏥᏈ ᏧᎾᏤᎵᎦ; ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏴᏓᎦᎵᏬᏥ ᏥᏂᎦᎥ ᎢᏏᎵ ᏧᎾᏤᎵᎦ. ᏱᎰᏩᏃ ᎤᏎᎸᎩ ᎢᏳᏉ ᎨᏒᎢ. ᎯᎠ ᏄᏪᏒᎩ, ᎤᎩᏨᏅᏉ ᏱᎰᏩ ᎾᏍᎩ ᎯᎠ ᏅᏛᏛᏁᎵ ᎠᏂ ᎦᏙᎯ. ᏱᎰᏩᏃ ᎾᏍᎩ ᏄᏛᏁᎸᎩ ᏭᎩᏨᏅ, ᎠᎴ ᏂᎦᏛ ᎦᎾᏝᎢ ᎢᏥᏈᏱ ᎡᎯ ᎤᎵᏬᏨᎩ; ᎦᎾᏝᎢᏍᎩᏂ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ ᎥᏝ ᏌᏉ ᏳᎵᏬᏤᎢ. ᏇᎵᏲᏃ ᎤᏓᏅᏒᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎥᏝ ᏌᏉ ᎤᏅ ᎦᎾᏝᎢ ᎢᏏᎵ ᏧᎾᏤᎵ ᎤᎵᏬᏨᎯ ᏱᎨᏎᎢ. ᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏒᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏲᏎ ᎾᏍᎩ ᏴᏫ. ᏱᎰᏩᏃ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏫᏍᏗᎩ ᎪᏍᏚ ᎠᏏᎩᎳᏅᎯ ᏔᎷᎩᏍᎩᎬᎾᏬᏙᏗᏱ, ᎼᏏᏃ ᏭᏕᏒᎭ. ᎦᎸᎳᏗ ᎢᏗᏢ ᏇᎵᏲ ᏓᎧᏅᎢ. ᎤᏃᎱᏲᎵᏃ ᎪᏍᏚ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ, ᎠᎴ ᏚᏯᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏕᎬᏩᎾᏢᎥᏍᎨᏍᏗ ᏴᏫ, ᎠᎴ ᎦᎾᏝᎢ, ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ. ᎪᏍᏚᏃ ᏔᎷᎩᏍᎩᎬᎾᏬᏙᏗᏱ ᎠᎩᏛ ᎤᏂᏴᏒᎩ, ᎠᎴ ᏇᎵᏲ ᎢᎬᏱᏢ ᏚᎾᎴᏁᎸᎩ; ᎼᏏᏃ ᎦᎸᎳᏗ ᎢᏗᏢ ᏭᏗᏅᎩ:; ᏚᏯᏍᏗᏃ ᏄᎵᏍᏔᏅᎩ ᎾᏍᎩ ᏕᎬᏩᎾᏢᎥᏍᎬᎩ ᏴᏫ ᎠᎴ ᎦᎾᏝᎢ. ᏗᎾᏙᏂᏍᎩᏃ ᎥᏝ ᏰᎵ ᎼᏏ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎬᏩᎾᎴᏁᏗ ᏱᎨᏎᎢ ᏚᏯᏍᏗ ᏕᎬᏩᎾᏢ ᎢᏳᏍᏗ; ᏗᎾᏙᏂᏍᎩᏰᏃ ᎠᎴ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᏚᏯᏍᏗ ᏕᎬᏩᎾᎣᎥᎩ. ᏱᎰᏩᏃ ᎤᏍᏓᏱᏕᎸᎩ ᏇᎵᏲ ᎤᎾᏫ, ᎠᎴ ᎥᏝ ᏱᏚᏛᏓᏍᏓᏁᎴᎢ: ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎼᏏ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏑᎾᎴ ᎭᏗᏛᎲᎭ ᎠᎴ ᏇᎵᏲ ᏫᎷᏤᎸᎭ, ᎠᎴ ᎯᎠ ᏂᏪᏎᎸᎭ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ, ᏗᏆᏤᎵ ᏴᏫ ᏗᎩᏲᎯ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ. ᎪᎯᏰᏃ ᎨᏒᎢ ᏓᎦᏓᏅᏏ ᏣᎷᏤᏗᏱ ᏣᎾᏫᏱ ᏂᎦᏗᏳ ᎠᏆᏤᎵ ᎤᏕᏯᏙᏗ, ᎠᎴ ᎤᏂᎷᏤᏗᏱ ᏘᏅᏏᏓᏍᏗ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ; ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏓᏱ ᎩᎶ ᏁᎲᎾ ᎨᏒ ᎠᏴ ᎾᏆᏍᏛ ᎾᏍᎩᏯ ᎡᎶᎯ ᏂᎬᎾᏛᎢ. ᎪᎯᏰᏃ ᎨᏒ ᏓᏥᏌᎳᏓᏂ ᎠᏉᏰᏂ ᎾᏍᎩ ᏂᎯ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ ᎥᏳᎩ ᎢᏨᏴᏂᏍᏙᏗᏱ; ᎠᎴ ᏣᎵᏛᏙᏗ ᎨᏎᏍᏗ ᎡᎶᎯ. ᎠᎴ ᎤᏙᎯᏳᎯ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᎢᎭ ᏥᎬᏌᎳᏓᏅ, ᏂᎯ ᎬᏴᏗᏍᎬ ᎠᎩᎾᏄᎪᏫᏍᏗᏱ ᎠᏆᎵᏂᎬᎬᎢ; ᎠᎴ ᏓᏆᏙᎥ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏂᏃᎮᏗᏱ. ᎠᏏᏉᏍᎪ ᏕᎭᎴᎲᏍᎦ ᏕᎭᏡᏗᎭ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎥᏝ ᏲᎯᏳᎲᏍᎦ ᏗᎩᏲᎯᏍᏗᏱᎸ ᎬᏂᏳᏉ ᎤᎩᏨᏅ ᎪᎯ ᏥᏂᎧᎳ ᏂᎧᎴᏍᏗ ᏓᏥᎦᏃᏔᏂ ᎠᎴ ᎤᏣᏘ ᎤᏍᎦᏎᏗ ᏓᎦᏁᏐᎠᏏ, ᎾᏍᎩ ᎥᏝ ᎢᎸᎯᏳ ᏱᏄᎵᏍᏔᏃ ᎢᏥᏈ ᎬᏩᏙᏢᏅᎯ ᎪᎯ ᎢᏯᏍᏗ. ᎾᏍᎩᏃ ᏇᎵᏲ ᏧᏅᏏᏓᏍᏗ ᏱᎰᏩ ᎧᏁᎬ ᎠᏂᎾᏰᏍᎩ, ᏓᏓᏁᎸ ᏫᏚᏂᏴᏔᏅᎩ ᏧᏂᏅᏏᏓᏍᏗ ᎠᎴ ᎦᎾᏝᎢ ᏧᎾᏤᎵᎦ. ᎾᏃ ᎾᏍᎩ ᏄᎸᏉᏔᏅᎾ ᏱᎰᏩ ᎤᏁᏨᎢ, ᏚᏪᎧᎯᏴᎩ ᏠᎨᏏ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᏧᏤᎵ ᎦᎾᏝᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᏌᎳᏛᎦ ᏦᏰᏂ ᎦᎸᎶᎢ ᎢᏗᏢ, ᎾᏍᎩ ᎤᏁᏐᎢᏍᏗᏱ ᎢᏥᏈᏱ ᎦᏙᎯ ᏂᎬᎾᏛᎢ, ᎤᏩᏂᏍᏗᏱ ᏴᏫ, ᎠᎴ ᎦᎾᏝᎢ, ᎠᎴ ᏂᎦᎥ ᎦᏄᎸᏒᎢ ᏠᎨᏏ ᎡᎯ, ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ. ᎼᏏᏃ ᎤᏌᎳᏓᏅᎩ ᎤᏙᎳᏅᏍᏗ ᎦᎸᎳᏗ ᎢᏗᏢ, ᏱᎰᏩᏃ ᏓᏳᏅᏒᎩ ᎠᏴᏓᏆᎶᏍᎩ ᎠᎴ ᎤᏁᏍᏓᎳ, ᎠᏥᎸᏃ ᎦᏙᎯ ᎤᏪᏙᎸᎩ; ᏱᎰᏩᏃ ᏄᏩᏂᏌᏅ ᎤᏁᏐᎠᏒᎩ ᎢᏥᏡᏱ ᎦᏙᎯ. ᎾᏍᎩᏃ ᎤᏁᏐᎠᏒᎩ ᎠᎴ ᎠᏥᎸ ᎤᏓᏑᏴᎩ ᎦᏁᏐᎠᏍᎬᎢ, ᎤᏣᏘ ᎤᎾᏰᎯᏍᏗ ᎾᏍᎩᏯ Ꮭ ᎢᎸᎯᏳ ᏳᏁᏐᎠᏐ ᎢᏥᏈᏱ ᎾᎿ ᎠᏰᎵ ᎬᏩᏙᏢᏅᎯ ᏅᏓᎬᏩᏓᎴᏅᏛ. ᏂᎬᎾᏛᏃ ᎦᏙᎯ ᎢᏥᏈᏱ ᎤᏁᏍᏓᎳ ᎤᏅᏂᎲᎩ ᏂᎦᏛ ᏠᎨᏏ ᎠᏁᏙᎯ, ᏴᏫ ᎠᎴ ᎾᏍᏉ ᎦᎾᏝᎢ; ᎠᎴ ᎤᏁᏍᏓᎳ ᏂᎦᎥ ᎦᏄᎸᏒ ᏠᎨᏏ ᎤᏩᏂᎸᎩ, ᎠᎴ ᏕᏡᎬ ᏠᎨᏏ ᏚᏲᏍᏔᏅᎩ. ᎪᏏᏂ ᎤᏩᏒ, ᎾᎿ ᎢᏏᎵ ᏧᏪᏥ ᎠᏁᎲᎢ, ᎥᏝ ᏳᏁᏐᏗᏎᎢ. ᏇᎵᏲᏃ ᎤᏓᏅᏒᎩ, ᎠᎴ ᏫᏚᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏥᏍᎦᏅᎩ ᎪᎯ; ᏱᎰᏩ ᎾᏍᎦᏅᎾ, ᎠᏴᏃ ᎠᎴ ᏗᏆᏤᎵ ᏴᏫ ᎣᏥᏍᎦᎾᎢ. ᎿᏉ ᏰᎵᏉ, ᎯᏔᏲᏏ ᏱᎰᏩ, ᎾᏍᎩᏉ ᎢᎦᎢ ᎤᏣᏘ ᎤᏴᏓᏆᎶᏍᏗᏱ ᎠᎴ ᎤᏁᏐᎠᎯᏍᏗᏱ; ᏙᏓᏨᏲᏏᏃ, ᎠᎴ ᎥᏝ ᎤᏟ ᎢᎪᎯᏛ ᏴᎨᏤᏓ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᏄᎪᏨᏉ ᎦᏚᎲᎢ. ᏗᏉᏰᏂ ᏱᎰᏩ ᎢᏗᏢ ᏫᏛᏓᏥᏌᎳᏙᏔᏂ; ᎠᏴᏓᏆᎶᏍᎬᏃ ᏛᏑᎵᎪᏥ, ᎥᏝ ᎠᎴ ᎿᏉ ᎤᏁᏐᎠᎯᏍᏗ ᏱᎨᏎᏍᏗ; ᎾᏍᎩ ᏣᎦᏙᎥᎯᏍᏗᏱ ᎡᎶᎯ ᏱᎰᏩ ᎤᏤᎵᎦ ᎨᏒᎢ. ᏂᎯᏍᎩᏂ ᎨᏒᎢ, ᎠᎴ ᏗᏣᏤᎵ ᏘᏅᏏᏓᏍᏗ, ᏥᎦᏔᎭ ᎠᏏᏉ ᎡᏥᎾᏰᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏱᎰᏩ ᎤᏁᎳᏅᎯ. ᏙᎴᏛ ᎠᎴ ᎤᏣᎴᏍᏗᎢᏳᏍᏗ ᎤᏲᏍᏔᏅᎩ; ᎤᏣᎴᏍᏗᏰᏃᎢᏳᏍᏗ ᎤᏥᏣᏔᏅᎯ ᎨᏒᎩ, ᏙᎴᏛᏃ ᎿᏉ ᎤᎦᏔᏛᎩ. ᎤᏣᎴᏍᏗᏍᎩᏂ ᎠᎴ ᎤᏣᎴᏍᏗ ᎤᏰᎸᎭ ᎥᏝ ᏳᏲᏤᎢ, ᎥᏝᏰᏃ ᎤᏛᏏᏌᏛ ᏱᎨᏎᎢ. ᎼᏏᏃ ᎤᏄᎪᏨᎩ ᎦᏚᎲ ᏇᎵᏲ ᎤᏓᏅᎡᎸᎩ, ᎠᎴ ᏧᏬᏰᏂ ᏱᎰᏩ ᎢᏗᏢ ᏚᏌᎳᏙᏔᏅᎩ; ᎠᏴᏓᏆᎶᏍᎬᏃ ᎠᎴ ᎦᏁᏐᎠᏍᎬ ᎤᏑᎵᎪᏨᎩ, ᎠᎴ ᎥᏝ ᎠᎦᏍᎬ ᏴᏧᏪᏐᏅᏰ ᎦᏙᎯ. ᏊᎵᏲᏃ ᎤᏙᎴᎰᏒ ᎠᎦᏍᎬ ᎠᎴ ᎦᏁᏐᎠᏍᎬ ᎠᎴ ᎠᏴᏓᏆᎶᏍᎬ ᎤᏑᎵᎪᏨᎢ, ᎠᏏᏉ ᎤᏍᎦᏅᏨᏩᎩ, ᎠᎴ ᎤᏍᏓᏱᏛ ᎤᎾᏫ, ᎤᏩᏒ ᎠᎴ ᏧᏅᏏᏓᏍᏗ. ᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏒᎩ, ᎥᏝ ᎠᎴ ᏱᏚᏲᏎ ᎢᏏᎵ ᏧᏪᏥ; ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ ᎼᏏ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸ ᎼᏏ, ᏇᎵᏲ ᏫᎷᏥ; ᎠᏴᏰᏃ ᏥᏍᏓᏱᏕᎸ ᎤᎾᏫ, ᎠᎴ ᏧᏂᎾᏫ ᏧᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏥᏴᏁᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ; ᎠᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎯᏴᏁᏗᏱ ᏤᏥ, ᎠᎴ ᎾᏍᎩ ᏤᏥ ᎤᏪᏥ ᎾᏆᏛᏁᎸᎢ ᎢᏥᏈᏱ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎠᏁᎲᎢ; ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ. ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏇᎵᏲ ᏭᏂᎷᏅᏤᎸᎩ ᎠᎴ ᎯᎠ ᏫᏄᏂᏪᏎᎸᎩ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᏓᏣᎨᏳᏂ ᎡᎳᏗ ᎢᏍᏆᏛᏁᏗᏱ? ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ ᎾᏍᎩ ᏫᎬᏆᏓᏙᎵᏍᏓᏁᏗᏱ.’ ᎢᏳᏰᏃ ᎢᏣᎨᏳᏅᎭ ᏗᎩᏲᎯᏍᏗᏱ ᏗᏆᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ, ᏑᎾᎴᎢ ᏙᏓᎦᏘᏃᎵ ᏙᎳᏧᎦ-ᏣᏁᏆ ᎠᏂ ᏣᏤᎵᎪᎯ; ᎠᎴ ᏛᏄᏢᏂ ᎦᏙᎯ, ᎾᏍᎩ ᎩᎶ ᎥᏝ ᏰᎵ ᎬᏩᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ ᎦᏙᎯ; ᎠᎴ ᏛᏂᎪᏂ ᎾᏍᎩ ᎤᎵᏃᎯᏴᎯ, ᎾᏍᎩ ᎤᏁᏐᎠᏒ ᎢᏥᏃᎯᏰᎸᎯ, ᎠᎴ ᏛᎾᎵᏍᏓᏴᏔᏂ ᏂᎦᏛ ᏕᏡᎬ ᏠᎨᏏ ᎢᏣᏛᎯᏎᎸᎢ. ᎠᎴ ᏙᏛᏂᎧᎵᎵ ᏕᎯᏁᎸᎢ, ᎠᎴ ᏂᎦᏛ ᏘᏅᏏᏓᏍᏗ ᏓᏂᏁᎸᎢ, ᎠᎴ ᏓᏂᏁᎸ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎾᏍᎩ ᎥᏝ ᏗᏥᎦᏴᎵᎨ. ᎠᎴ ᏗᏥᎦᏴᎵᎨ ᏧᏂᎦᏴᎵᎨ ᎤᏂᎪᎲᎯ ᏱᎩ ᎡᎶᎯ ᎤᎾᏕᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏗ. ᎤᎦᏔᎲᏒᎩᏃ ᎠᎴ ᎤᏓᏅᎡᎸᎩ ᏇᎵᏲ. ᏯᏇᎵᏲᏃ ᏧᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ. ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᎢᎩᏌᏛᎥᏍᎩ ᎨᏎᏍᏗ ᎯᎠ ᎠᎦᏍᏯ) ᏗᎩᏲᎯ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᎪᎱᏍᏗ ᏭᎾᏛᏁᏗᏱ ᏱᎰᏩ ᎤᎾᏁᎳᏅᎯ; ᏝᏍᎪ ᎠᏏ ᏱᎦᏔᎭ ᎢᏥᏈ ᎤᏲᏨᎢᎮ ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏔᎵᏁ ᏇᎵᏲ ᎤᏬᎸ ᏙᎨᎦᏘᏃᎸᎩ; ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎢᏤᎾ ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ ᎢᏣᏁᎳᏅᎯ; ᎦᎪ ᎠᏕᏃ ᎾᏍᎩ ᏨᏛᏁᏏ? ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏗᏂᏲᎵ ᎠᎴ ᎠᏂᎦᏴᎵᎨ ᏦᎦᏤᎵ ᏓᏲᏤᏏ; ᎠᎴ ᎠᏂᏍᎦᏯ ᏦᎨᏥ ᎠᎴ ᎠᏂᎨᏴ ᏦᎨᏥ ᏓᏲᏤᏏ; ᎠᏫ ᎠᎴ ᏩᎦ ᏙᏓᏲᏣᏘᏁᏏ; ᎠᏎᏰᏃ ᎣᎦᎵᏍᏓᏴᏗ ᏱᎰᏩ ᎤᏤᎵ ᎠᎵᏍᏓᏴᏗ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᏱᎰᏩ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ, ᎾᏍᎩᏯ ᏥᏙᏓᏨᏲᏏ ᎠᎴ ᏧᎾᏍᏗ ᏗᏣᏤᎵᎦ. ᎢᏣᎦᏌᏯᏍᏓ; ᎤᏲᏰᏃ ᎢᎬᏱᏗᏢ ᏄᏍᏗ. ᎥᏝ ᎾᏍᎩ ᏱᏅᎨᏣᏛᎦ, ᏂᎯᏍᎩᏂᎢᏥᏍᎦᏯ ᎢᏣᏂᎩ, ᎠᎴ ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ; ᎾᏍᎩᏰᏃ ᏥᏄᏍᏛᎩ ᏥᏥᏔᏲᎸᎩ. ᎥᎨᏥᎨᎯᏙᎸᏃ ᏇᎵᏲ ᎠᎦᏔᎲᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᏌᎳᏛᎦ ᏦᏰᏂ ᎢᏥᏈᏱ ᎦᏙᎯ ᎦᎸᎳᏗᏢ ᏙᎳᏧᎦᏣᏁᏆ ᎤᏂᎵᎯᏍᏗᏱ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎦᏙᎯ ᎤᏂᎷᎯᏍᏗᏱ, ᎠᎴ ᎤᏂᎩᏍᏗᏱ ᏂᎦᎥ ᎦᏄᎸᏒ ᎦᏙᎯ, ᎾᏍᎩ ᏂᎦᏛ ᎤᏁᏍᏓᎳ ᎤᏃᎯᏴᎯ. ᎼᏏᏃ ᎤᏌᎳᏓᏅᎩ ᎤᏙᎳᏅᏍᏗ ᎢᏥᏈᏱ ᎦᏙᎯ ᎦᎸᎳᏗᏢ, ᏱᎰᏩᏃ ᏄᏩᏂᏌᏅᎩ ᎾᎿ ᎦᏙᎯ ᎤᏃᏄᏅᎩ ᏗᎧᎸᎬ ᎢᏗᏢ ᏓᏳᏱᎸᏍᏔᏅᎩ, ᎤᏙᏓᏆᏛ ᎾᎯᏳ ᎢᎦ ᎠᎴ ᎤᎵᏨᏓᏆᏛ; ᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᏗᎧᎸᎬ ᏧᏃᎸᏛ ᏙᎳᏧᎦᏣᏁᏆ ᎤᏂᏃᎸᏔᏂᎸᎩ. ᏙᎳᏧᎦᏃᏣᏁᏆ ᎤᏁᏙᎸᎩ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ, ᎠᎴ ᎤᎾᎴᏫᏍᏔᏅᎩ ᎢᏥᏈ ᏂᎬᎾᏛᎢ; ᎤᏣᏘ ᎤᎾᏕᏯᏙᏛᎩ; ᎾᎯᏳ ᎢᏯᏍᏗ ᎥᏝ ᎢᎸᎯᏳ ᏳᎾᏕᏃ ᎾᏍᎩ ᎢᏳᎾᏍᏗ, ᎣᏂ ᎠᎴ ᎥᏝ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏴᎬᎾᏕᎲᎦ. ᏂᎬᎾᏛᏰᏃ ᎦᏙᎯ ᎤᏄᏢᏔᏅᎩ, ᎾᏍᎩ ᎤᎾᎵᏏᎲᏍᏔᏅ ᎦᏙᎯ; ᎠᎴ ᎤᏂᎪᏅ ᏂᎦᎥ ᎤᏰᎾᎥ ᎦᏙᎯ ᎠᎴ ᏂᎦᏛ ᎤᏔᎾᎥ ᏕᏡᎬ ᎾᏍᎩ ᎤᏁᏍᏓᎳ ᎤᏃᎯᏴᎯ: ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎢᏤ ᏳᎵᏃᎯᏰ ᏕᏡᎬᎢ, ᎠᎴ ᎤᏰᎾᎥ ᏠᎨᏏ, ᎢᏥᏈᏱ ᎦᏙᎯ ᏂᎬᎾᏛᎢ. ᏇᎵᏲᏃ ᎤᎵᏍᏗ ᏫᏚᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ; ᎯᎠᏃ ᏄᏪᏒᎩ, ᏥᏍᎦᏅᏤᎸ ᏱᎰᏩ ᎢᏍᏓᏁᎳᏅᎯ, ᎠᎴ ᏂᎯ ᎢᏍᏛᏍᎦᏅᏤᎸ. ᎿᏉᏃ ᎢᏍᏛᏔᏲᏎᎭ, ᎠᏏ ᏌᏉ ᏂᏍᎩᏂᏙᎵᎩ ᎠᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎡᏍᏗᏔᏲᏏ ᏱᎰᏩ ᎢᏍᏓᏁᎳᏅᎯ ᎾᏍᎩ ᎠᎩᎲᎡᏗᏱ ᎯᎠᏉ ᎤᏩᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ. ᎤᏓᏅᎡᎸᎩᏃ ᏇᎵᏲ, ᎠᎴ ᏭᏔᏲᏎᎸᎩ ᏱᎰᏩ. ᏱᎰᏩᏃ ᎤᎦᏔᎲᏒᎩ ᎤᏃᎴ, ᎤᎵᏂᎩᏛ ᏭᏕᎵᎬ ᏛᎤᏃᎸᏔᏅᎩ, ᎾᏍᎩ ᏙᎳᏧᎦᏣᏁᏆ ᎤᏂᏃᎸᏔᏅᎩ, ᎠᏣᏩᏉᎯ ᎩᎦᎨᏍᏛᏱ ᏫᏚᎾᏓᎢᏅᏒᎩ; ᏙᎳᏧᎦᏣᏁᏆ ᎥᏝ ᏌᏉᎤᏅ ᏳᎵᏃᎯᏰ ᏂᎬᎾᏛ ᎢᏥᏡᏱ. ᎠᏎᏃ ᏱᎰᏩ ᎤᏍᏓᏱᏕᎸᎩ ᏇᎵᏲ ᎤᎾᏫ; ᎾᏍᎩ ᎥᏝ ᏱᏚᏲᏎ ᎢᏏᎵ ᏧᏪᏥ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏦᏰᏂ ᎦᎸᎳᏗ ᎢᏗᏢ ᎯᏌᎳᏙᏓ, ᎾᏍᎩ ᎤᎵᏏᎲᏍᏗᏱ ᎢᏥᏈᏱ ᎦᏙᎯ ᏂᎬᎾᏛᎢ, ᎾᏍᎩ ᎤᎾᏒᏂᎵᏓᏍᏗᏱ ᎤᎵᏏᎬᎢ. ᎼᏏᏃ ᎤᏌᎳᏓᏅᎩ ᎤᏬᏰᏂ ᎦᎸᎳᏗ ᎢᏗᏢ; ᎤᏅᏘᏛᏃ ᎤᎵᏏᎲᏒᎩ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ ᏦᎢ ᏧᏒᎯᏛ. ᎥᏝ ᏱᏓᎾᏓᎪᏩᏘᏍᎨᎢ, ᎥᏝ ᎠᎴ ᎩᎶ ᏱᏓᎴᎲᏍᎨ ᏄᏛᏅᎢ ᏦᎢ ᏧᏒᎯᏛ: ᎢᏏᎵᏍᎩᏂ ᏧᏪᏥ ᏂᎦᏛ ᎢᎦᎯᏳ ᎨᏒᎩ ᏓᏂᏁᎸᎢ. ᏇᎵᏲᏃ ᏭᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎢᏤᎾ, ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ; ᎠᏫ ᎤᏅᏒ ᎠᎴ ᏩᎦ ᏗᏣᏤᎵᎦ ᏗᎦᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ; ᏗᏂᏲᎵ ᎾᏍᏉ ᏗᏤᏥ ᏗᏣᏘᏄᎦ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᏒᎩ, ᏍᎩ ᏁᏗ ᎾᏍᏉ ᎨᏎᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎠᎴ ᎠᏥᎸᎨᎳᏍᏙᏗ, ᎾᏍᎩ ᎣᏣᎵᏍᎪᎸᏓᏁᏗᏱ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ. ᎣᎩᎾ ᏝᎥ ᎾᏍᏉ ᏦᏣᏘᏅᏍᏗ ᎨᏎᏍᏗ; ᎥᏝ ᏌᏉᎤᏅ ᎤᏗᎩᏯᏍᏗ ᏱᎨᏎᏍᏗ; ᎾᏍᎩᏰᏃ ᏦᎬᏙᏗ ᎣᏣᏓᏙᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ; ᎥᏝ ᎠᎴ ᏲᏥᎦᏔᎭ ᎢᏳᏍᏗ ᎣᎬᏙᏗ ᎨᏒ ᏱᎰᏩ ᎣᏣᏓᏙᎵᏍᏓᏁᎲ ᎬᏂ ᎾᎿ ᏬᏥᎷᏥᎸᎢ. ᎠᏎᏃ ᏱᎰᏩ ᎤᏍᏓᏱᏕᎸᎩ ᏇᎵᏲ ᎤᎾᏫ, ᎠᎴ ᎥᏝ ᏳᏬᎯᏳᏁ ᏧᏲᎯᏍᏗᏱ. ᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏍᏆᏓᏅᏏ, ᎭᏓᏯᏫᏍᎨᏍᏗ ᏞᏍᏗ ᏔᎵᏁ ᎠᏆᎧᏛ ᏥᎯᎪᎯ; ᎾᎯᏳᏰᏃ ᎢᎦ ᎠᏆᎧᏛ ᎪᎯᎲᎭ ᏣᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏰᎵᏉ ᏂᏫ; ᎥᏝ ᏔᎵᏁ ᏣᎧᏛ ᏴᎦᏥᎪᏩᏛ. ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮔ⁠Ꮺ⁠Ꮞ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮌ⁠Ꮟ⁠,⁠ ⁠Ꮣ⁠Ꭶ⁠Ꮣ⁠Ꮕ⁠Ꮟ⁠ ⁠Ꭰ⁠Ꮟ⁠ ⁠Ꮡ⁠Ꮣ⁠Ꮄ⁠Ꭹ⁠ ⁠Ꭴ⁠Ꮥ⁠Ꮿ⁠Ꮩ⁠Ꮧ⁠ ⁠Ꭴ⁠Ꮇ⁠Ꮴ⁠Ꮧ⁠Ᏹ⁠ ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠;⁠ ⁠Ꭳ⁠Ꮒ⁠Ꮓ⁠ ⁠Ꮩ⁠Ꮣ⁠Ꮵ⁠Ᏺ⁠Ꮟ⁠ ⁠Ꭰ⁠Ꮒ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮔ⁠Ꭺ⁠Ꭲ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮓ⁠ ⁠Ꮥ⁠Ꮵ⁠Ᏺ⁠Ꮢ⁠Ꭽ⁠,⁠ ⁠Ꮏ⁠Ꮙ⁠ ⁠Ꭰ⁠Ꮞ⁠”⁠ ⁠Ꭲ⁠Ꮵ⁠Ꭸ⁠Ꭿ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮒ⁠ ⁠ ⁠Ꭷ⁠ ⁠ ⁠Ꮨ⁠Ꮑ⁠Ꮵ⁠ ⁠Ᏼ⁠Ꮻ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꮟ⁠Ᏼ⁠Ꮻ⁠Ꭽ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꮝ⁠Ꭶ⁠Ꮿ⁠ ⁠Ꮻ⁠Ꮣ⁠Ꮎ⁠Ꮩ⁠Ꮈ⁠Ꮟ⁠ ⁠Ꮎ⁠Ꭵ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮎ⁠Ꮣ⁠Ꮅ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꮟ⁠Ᏼ⁠Ꮻ⁠Ꭽ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꭸ⁠Ᏼ⁠ ⁠Ꮻ⁠Ꮣ⁠Ꮎ⁠ ⁠Ꮩ⁠Ꮈ⁠Ꮟ⁠ ⁠Ꮎ⁠Ꭵ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮎ⁠Ꮣ⁠Ꮅ⁠,⁠ ⁠Ꭺ⁠Ꮁ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮥ⁠Ꮈ⁠ ⁠Ꭴ⁠Ꮑ⁠Ꭼ⁠ ⁠Ꮧ⁠Ꭺ⁠Ꮲ⁠Ꮤ⁠Ꮕ⁠Ꭿ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭰ⁠Ꮥ⁠Ꮈ⁠ ⁠Ꮣ⁠Ꮆ⁠Ꮒ⁠Ꭸ⁠ ⁠Ꮧ⁠Ꭺ⁠Ꮲ⁠Ꮤ⁠Ꮕ⁠Ꭿ⁠ ⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꮪ⁠Ꮑ⁠Ꮈ⁠ ⁠Ᏼ⁠Ꮻ⁠ ⁠Ꭳ⁠Ꮟ⁠Ᏻ⁠ ⁠Ꭼ⁠Ꮹ⁠Ꮒ⁠Ᏸ⁠Ꮈ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠. ⁠ ⁠Ꭰ⁠Ꮄ⁠Ꮼ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭰ⁠Ꮝ⁠Ꭶ⁠Ꮿ⁠ ⁠Ꮌ⁠Ꮟ⁠ ⁠Ꭰ⁠Ꮵ⁠Ꮈ⁠Ꮙ⁠Ꮧ⁠Ᏻ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭼ⁠Ꮹ⁠Ꮈ⁠Ꮙ⁠Ꮧ⁠Ᏻ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꮷ⁠Ꮕ⁠Ꮟ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭴ⁠Ꮒ⁠Ꮳ⁠Ꮨ⁠ ⁠Ꭸ⁠Ꮢ⁠ ⁠Ᏼ⁠Ꮻ⁠. ⁠ ⁠Ꮌ⁠Ꮟ⁠Ꮓ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮔ⁠Ꮺ⁠Ꮢ⁠Ꭹ⁠,⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮺ⁠Ꭽ⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠,⁠ ⁠Ꭰ⁠Ᏸ⁠Ꮅ⁠ ⁠Ꮢ⁠Ꮓ⁠Ᏹ⁠ ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꮣ⁠Ꮵ⁠Ꮔ⁠Ꭺ⁠Ꮵ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮱ⁠Ᏹ⁠ ⁠Ꭰ⁠Ᏸ⁠Ꮅ⁠ ⁠Ꮾ⁠Ꮣ⁠Ꭸ⁠Ꮩ⁠Ꮅ⁠:⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠Ꮓ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠ ⁠Ꮷ⁠Ꮒ⁠Ᏺ⁠Ꮁ⁠Ꭿ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠,⁠ ⁠Ꭰ⁠Ꭶ⁠Ꮄ⁠Ꮕ⁠Ꮩ⁠Ꮧ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭱ⁠Ꭿ⁠ ⁠Ꭴ⁠Ꮺ⁠Ꮵ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭴ⁠Ꮺ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭶ⁠Ꮝ⁠Ꭹ⁠Ꮈ⁠ ⁠Ꮷ⁠Ꮼ⁠Ꮃ⁠,⁠ ⁠Ꭰ⁠Ꮵ⁠Ꮝ⁠Ꮖ⁠Ꮧ⁠Ꮝ⁠Ꮩ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꭸ⁠Ᏼ⁠ ⁠Ꭰ⁠Ꮵ⁠Ꮕ⁠Ꮟ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮝ⁠Ꮩ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭳ⁠Ꮒ⁠Ꮧ⁠Ꮲ⁠ ⁠Ꭴ⁠Ꮼ⁠Ꮅ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭱ⁠Ꭿ⁠ ⁠Ꭴ⁠Ꮺ⁠Ꮵ⁠;⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭶ⁠Ꮎ⁠Ꮭ⁠Ꭲ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠. ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭴ⁠Ꮳ⁠Ꮨ⁠ ⁠Ꮩ⁠Ꮫ⁠Ꮒ⁠Ᏼ⁠Ꮃ⁠Ꮟ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮱ⁠Ᏹ⁠ ⁠Ꮒ⁠Ꭼ⁠Ꮎ⁠Ꮫ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠,⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꭲ⁠Ꮈ⁠Ꭿ⁠Ᏻ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠Ꮿ⁠ ⁠Ᏹ⁠Ꮔ⁠Ꮒ⁠Ꮺ⁠Ꮠ⁠Ꭲ⁠,⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮒ⁠Ꮺ⁠Ꮝ⁠Ꮧ⁠ ⁠Ᏹ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭲ⁠Ꮈ⁠Ꭿ⁠Ᏻ⁠Ꭲ⁠ ⁠ ⁠Ꭲ⁠Ꮟ⁠Ꮅ⁠Ꮝ⁠Ꭹ⁠Ꮒ⁠ ⁠Ꮷ⁠Ꮺ⁠Ꮵ⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꭹ⁠Ꮅ⁠ ⁠Ꭶ⁠Ꮓ⁠Ꭺ⁠Ꭲ⁠ ⁠Ꭴ⁠Ꮦ⁠Ꮈ⁠Ꮧ⁠ ⁠Ᏹ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꮣ⁠Ꮱ⁠Ꮧ⁠Ꮝ⁠Ꭼ⁠Ꭲ⁠,⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꮙ⁠ ⁠Ᏼ⁠Ꮻ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭶ⁠Ꮎ⁠Ꮭ⁠Ꭲ⁠;⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꭶ⁠Ꮩ⁠Ꭵ⁠Ꭿ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠ ⁠Ꮣ⁠Ꮣ⁠Ꮣ⁠Ꮄ⁠Ꮧ⁠Ꮝ⁠Ꭼ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭲ⁠Ꮟ⁠Ꮅ⁠ ⁠Ꭿ⁠Ꭰ⁠Ꮓ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ꮨ⁠Ꮕ⁠Ꮟ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꮾ⁠Ꮣ⁠Ꭼ⁠Ꭹ⁠Ꮇ⁠Ꮴ⁠Ꮅ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭱ⁠Ꮃ⁠Ꮧ⁠ ⁠Ꮕ⁠Ꮣ⁠Ꭼ⁠Ꮖ⁠Ꮫ⁠Ꮑ⁠Ꮅ⁠,⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮎ⁠Ꮒ⁠Ꮺ⁠-⁠ ⁠Ꮝ⁠Ꭸ⁠Ꮝ⁠Ꮧ⁠,⁠ ⁠Ꭿ⁠Ꮔ⁠Ꭺ⁠Ꭲ⁠,⁠ ⁠Ꮒ⁠Ꭿ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ᏼ⁠Ꮻ⁠ ⁠Ꮵ⁠Ꭸ⁠Ꮳ⁠Ꮝ⁠Ꮣ⁠Ꮹ⁠Ꮧ⁠Ꮩ⁠Ꭽ⁠;⁠ ⁠Ꭳ⁠Ꮒ⁠Ꮓ⁠ ⁠Ꮵ⁠Ꮔ⁠Ꭺ⁠Ꮸ⁠Ꭽ⁠ ⁠ ⁠Ꭴ⁠Ꮔ⁠Ꭺ⁠Ꮸ⁠Ꭹ⁠Ꮓ⁠ ⁠Ꭴ⁠Ꮣ⁠Ꮕ⁠Ꭱ⁠Ꮄ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭴ⁠Ꮳ⁠Ꮨ⁠ ⁠Ꭴ⁠Ꮤ⁠Ꮃ⁠Ꮼ⁠Ꮢ⁠Ꭿ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮔ⁠Ꮺ⁠Ꮞ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮌ⁠Ꮟ⁠,⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ᏼ⁠Ꮣ⁠Ꮳ⁠Ꮫ⁠Ꮣ⁠Ꮝ⁠Ꮣ⁠Ꮑ⁠Ꮅ⁠;⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭰ⁠Ꭹ⁠Ꮑ⁠Ꮙ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭴ⁠Ꮝ⁠Ꮖ⁠Ꮒ⁠Ꭺ⁠Ꮧ⁠ ⁠Ꮣ⁠Ꭹ⁠Ꮈ⁠Ꮻ⁠Ꮝ⁠Ꮣ⁠Ꮑ⁠Ꮂ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠ ⁠ ⁠Ꮌ⁠Ꮟ⁠Ꮓ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭱ⁠⁠Ꮃ⁠Ꮒ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ꭴ⁠Ꮝ⁠Ꮖ⁠Ꮒ⁠Ꭺ⁠Ꮧ⁠ ⁠Ꮪ⁠Ꮒ⁠Ꮈ⁠Ꮻ⁠Ꮝ⁠Ꮣ⁠Ꮑ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭰ⁠Ꭶ⁠Ꮤ⁠Ꮂ⁠Ꭲ⁠;⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꭴ⁠Ꮝ⁠Ꮣ⁠Ᏹ⁠Ꮥ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭴ⁠Ꮎ⁠Ꮻ⁠,⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠Ꮓ⁠ ⁠Ꮒ⁠Ꮪ⁠Ᏺ⁠Ꮢ⁠Ꮎ⁠Ꮙ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠Ꭲ⁠Ꮟ⁠Ꮅ⁠ ⁠Ꮷ⁠Ꮺ⁠Ꮵ⁠ ⁠Ꭴ⁠Ꮒ⁠Ꮔ⁠Ꭺ⁠Ꭲ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭴ⁠Ꮴ⁠Ꮅ⁠Ꭺ⁠Ꭿ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠ ! ᏱᎰᏩᏃ ᏚᏁᏤᎸᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᎢᏥᏈᏱ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ. ᎪᎯ ᏥᎧᎳ ᏗᏓᎴᏅᏗᏍᎩ ᎨᏎᏍᏗ ᏓᏦᎳᏂᏒᎢ; ᏗᏓᎴᏅᏗᏍᎩ ᎨᏎᏍᏗ ᎠᏕᏘᏱᏍᎬ ᎪᎯ ᎧᎸᎢ. ᏗᏍᏗᏁᏥ ᏂᎦᏛ ᎢᏏᎵ ᏓᏂᎳᏫᎥᎢ, ᎯᎠ ᏂᏗᏍᏗᏪᏏ, ᎠᏍᎪᎯᏁ ᎢᎪᎯ ᎪᎯ ᏥᎧᎳ ᎠᏂᏏᏴᏫᎭ ᎠᏂᏍᎦᏯ ᏧᏂᎦᏴᎵᎨ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒ ᎠᏫ ᎤᎾᏘᏅᏍᏗ ᎨᏎᏍᏗ, ᏏᏓᏁᎸᎯ ᎨᏒ ᏌᏉ ᎠᏫ ᎤᎾᏘᏅᏍᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᏏᏓᏁᎸᎯ ᎨᏒ ᎠᏂᎦᏲᎵᏳᏉ ᏱᎩ ᎤᏂᏒᎲᏍᏗᏱ ᎠᏫ, ᎿᏉ ᎾᎥᏂᎨ ᎾᎥ ᎢᏳᎾᏓᎵ ᎨᏒ ᏏᏓᏁᎸᎯ ᎤᏂᏁᏍᏗ ᎨᏎᏍᏗ, ᎾᏂᎥ ᎾᏍᎩᏯ ᎢᎦᎢ ᎤᏂᏁᏍᏗ ᎨᏎᏍᏗ, ᎠᏂᏏᏴᏫᎭ ᎢᎦᎢ ᎬᏩᏂᎩᏍᏗ ᎨᏒ ᏗᏣᏎᏍᏗ ᎨᏎᏍᏗ ᎤᎾᏕᏆᎶᏗ ᏌᏉ ᎠᏫ. ᎢᏣᏤᎵ ᎠᏫ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎨᏎᏍᏗ, ᎠᏨᏯ ᎤᏕᏘᏴᏛ,; ᏗᏥᏯᏅᎡᏗ ᎨᏎᏍᏗ ᎤᏂᏃᏕᎾ ᎠᎴ ᎠᏂᎭᏄᎸᎯ. ᎠᎴ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᏂᎦᏚᏏᏁ ᎢᎪᎯ ᎢᏯᏍᏗ ᎪᎯ ᎧᎳᏩᏗᏒᎢ; ᏂᎦᏛᏃ ᏓᏂᎳᏫᎥ ᎢᏏᎵ ᎤᏂᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏒᎢ. ᎾᏍᎩᏃ ᎤᎩᎬ ᎤᏂᏁᎩᏍᏗ ᏧᏂᏍᏚᏟᏍᏗ ᎨᏎᏍᏗ ᎢᏧᎳᏗᏢ ᏕᎦᏯᎸ ᎦᎶᎯᏍᏗᏱ, ᎠᎴ ᎦᎸᎳᏗᏢ ᏚᎶᎯᏍᏗᏱ ᎠᏍᏆᎾᎸᎢ, ᎾᎿ ᏓᏓᏁᎸ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ. ᎾᎯᏳᏉᏃ ᏒᏃᏱ ᎤᏫᏯ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᏒᎾᏘᎶᎥᎯ ᎠᏥᎸᏱ, ᎠᎴ ᎦᏚ ᎠᎪᏔᏅᎯ ᏂᎨᏒᎾ: ᎠᎴ ᎤᏴᏍᏗ ᎦᏄᎸᏒᎢ ᎤᎾᏠᏯᏍᏗ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ. ᏞᏍᏗ ᎠᎪᏍᏗ ᎢᏥᎬᎩ, ᎠᎴ ᏞᏍᏗ ᎠᎪᏎᎯ ᎬᏂᏍᏔᏅᎯ, ᎠᏒᎾᏘᎶᎥᎯᏍᎩᏂ ᎠᏥᎸᏱ, ᎤᏍᎪ ᎠᎴ ᏗᎦᏅᏍᎨᏂ, ᎠᎴ ᏄᏍᏗᏓᏅ ᎤᎵᏠᏯᏍᏕᏍᏗ. ᎠᎴ ᏞᏍᏗ ᎢᎦᏛ ᎢᏥᎯᏴᎩ ᏑᎾᎴ ᎢᏴᏛ; ᎾᏍᎩᏃ ᏑᎾᎴ ᎤᏘᏴᎯ ᎢᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᏥᏥᎸᏱ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎢᏥᎬᎭ; ᏕᏣᏓᏠᎮᏍᏗ, ᏕᏣᎳᏑᎴᏍᏗ, ᎠᎴ ᏗᏣᏙᎳᏅᏍᏗ ᏕᏥᏁᎮᏍᏗ; ᎠᎴ ᎤᎵᏍᏗ ᎢᏥᎬᎭ; ᏱᎰᏩᏰᏃ ᎤᏤᎵ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎾᏍᎩ. ᏓᏥᎦᏛᎴᏏᏰᏃ ᎢᏥᏈᏱ ᎦᏙᎯ ᎪᎯ ᏒᏃᏱ, ᎠᎴ ᏓᎦᏥᏴᏂᎵ ᏂᎦᏛ ᎢᎬᏱ ᎠᏁᎯ ᎢᏥᏈᏱ ᎠᏁᎯ, ᏴᏫ ᎠᎴ ᎦᎾᏝᎢ; ᎠᎴ ᏂᎦᏗᏳ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏁᎳᏅᎯ ᏓᎦᏥᏍᏛᏗᏍᏔᏂ; ᎠᏴ ᏱᎰᏩ ᎩᎬᏃ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᏓᏓᏁᎸ ᎾᎿ ᎢᏥᏯᎥᎢ; ᏥᎪᎥᏃ ᎩᎬ ᎢᏨᏃᎯᏯᏍᏗ ᎨᏎᏍᏗ, ᎤᏕᏯᏙᏗᏃ ᎥᏝ ᎢᏥᎷᏤᏗ ᎢᏥᏒᎲᏍᏗ ᏱᎨᏎᏍᏗ, ᎾᎯᏳ ᎬᏂᎸᎭ ᎢᏥᏈᏱ ᎦᏙᎯ. ᎪᎯᏃ ᎢᎦ ᏥᎩ ᎢᏣᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎢᏥᏍᏆᏂᎪᏙᏗ ᏱᎰᏩ ᎡᏣᎵᏍᏓᏴᎾᏁᏗ ᎨᏎᏍᏗ ᏂᏣᏓᏁᏟᏴᏏᏒᎢ; ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᏂᎪᎯᎸ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ. ᎦᎵᏉᎩ ᎢᎦ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᏂᏥᎩᏍᏗ ᎨᏎᏍᏗ; ᎢᎬᏱᏱᏉ ᎢᎦ ᎢᏥᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ ᏕᏥᏁᎸ ᎠᎪᏙᏗ; ᎩᎶᏰᏃ ᎠᎪᏔᏅᎯ ᎦᏚ ᎢᎠᎩᏍᎨᏍᏗ ᎢᎬᏱᏱ ᎢᎦ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎦᎵᏉᎩᏁ ᎢᎦ ᎢᏯᏍᏗ, ᎾᏍᎩ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ ᎢᏏᎵᏱ ᎤᏙᏣᎸᎢ. ᎢᎬᏱᏱᏉ ᎢᎦ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗ ᎢᏥᏰᎸᏎᏍᏗ, ᎠᎴ ᎦᎵᏉᎩᏁ ᎢᎦ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗ ᎢᏥᏰᎸᏎᏍᏗ; ᎥᏝ ᎪᎱᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᎾᎯᏳ ᎨᏒᎢ, ᎾᏍᎩᏂᏃᏅ ᎠᏂᏏᏴᏫᎭ ᎤᎾᎵᏍᏓᏴᏗ. ᎨᏒ ᎾᏍᎩ ᎤᏩᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎠᎵᏍᏓᏴᏗᏱ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᎩᏍᏗᏱ; ᎾᎯᏳᏰᏃ ᎢᎦ ᎨᏒ ᎢᏥᏈᏱ ᎦᏙᎯ ᏓᏨᏄᎪᏫᏒᎩ ᏕᏣᏓᏡᏩᏗᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎪᎯ ᎢᎦ ᎢᏣᏓᏁᏟᏴᏏᏒ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ. ᎢᎬᏱᏱ ᏅᏙᎯ, ᏂᎦᏚᏏᏁ ᎢᎦ ᎾᏍᎩ ᎧᎸᎢ, ᎤᏒᎢ, ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᏗᏥᎩᏍᏗ ᎨᏎᏍᏗ, ᏐᎢᏦᏁᏏᏁ ᎢᎦ ᎾᏍᎩ ᎧᎳᏩᏗᏒ ᎢᏯᏍᏗ ᎤᏒᎢ. ᎦᎵᏉᎩ ᎢᎦ ᎠᎪᏙᏗ ᎥᏞᏍᏗ ᎬᏩᏛᏗ ᏱᎨᏎᏍᏗ ᏕᏥᏁᎸᎢ; ᎩᎶᏰᏃ ᎪᎱᏍᏗ ᎠᎪᏔᏅᎯ ᎠᎩᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᎤᎾᏓᏡᎬ ᎤᏙᏣᎸᎢ, ᎾᏍᏉ ᎡᏙᎯᏉ ᏱᎩ, ᎠᎴ ᎾᎿᏉ ᎤᏕ-ᏅᎯ ᏱᎩ. ᎥᏞᏍᏗ ᎪᎱᏍᏗ ᎢᏥᎩᏍᏗ ᏱᎨᏎᏍᏗ ᎠᎪᏔᏅᎯ; ᏂᎦᏛ ᏕᏥᏁᎳᏗᏒ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᏥᎩᏍᏗ ᎨᏎᏍᏗ. ᎿᏉᏃ ᎼᏏ ᏫᏚᏯᏅᎲᎩ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᎠᏁᎲᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏗᏥᏂᏴ ᎠᎴ ᏗᏣᏘᏄᎦ ᎠᏫ ᏕᏣᏓᏘᎾᏩᏗᏒᎢ, ᎠᎴ ᏗᏥᎷᎦ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᏗᎯᏍᏗ ᎨᏒᎢ. ᎯᏌᏈᏃ ᎪᏛᎢᏛ ᎢᏥᎩᏒᎭ, ᎩᎬᏃ ᎦᏁᎲ ᎠᏕᎵᏙᎩᎯ ᎢᏅᎭ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎦᎸᎳᏗᏢ ᎠᏍᏆᎾᎸ ᎠᎴ ᎢᏧᎳ ᎢᏗᏢ ᏕᎦᏯᎸ ᏕᎯᏍᏚᏟᏍᏔᏅᎭ ᎯᎠ ᎩᎬ ᎠᏕᎵᏙᎩᎯ ᎦᏁᎲᎢ;: ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏄᎪᎢᏍᏗ ᏱᎨᏎᏍᏗ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᎦᏁᎸᎢ ᎬᏂ ᏑᎾᎴ ᏂᎦᎵᏍᏔᏅᎭ. ᏱᎰᏩᏰᏃ ᏓᎦᎶᏏ ᏧᎩᎵᏲᎢᏍᏙᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎠᎪᎲᏃ ᎩᎬ ᎤᏓᏅᎵᏰᎥ ᎦᎶᎯᏍᏗᏱ ᎦᎸᎳᏗᏢ ᎠᏍᏆᎾᎸᎢ, ᎠᎴ ᎢᏧᎳ ᎢᏗᏢ ᏕᎦᏯᎸᎢ, ᏱᎰᏩ ᏓᎧᏃᎯᏱ ᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ, ᎠᎴ ᎥᏝ ᎤᎵᏍᎪᎸᏓᏁᏗ ᏱᎨᏎᏍᏗ ᏗᏛᏗᏍᎩ ᎤᏴᏍᏗᏱ ᏕᏥᏁᎸ ᎢᏥᎩᎵᏲᎢᏍᏙᏗᏱ. ᎯᎠ ᎾᏍᎩ ᎤᎵᏁᏨᎯ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᏂᎯ ᎠᎴ ᏗᏤᏥ ᎠᏂᏍᎦᏯ ᏂᎪᎯᎸᎢ. ᎠᎴ ᎯᎠ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ, ᎿᏉ ᏫᏥᎷᏨᎭ ᎾᎿ ᎦᏙᎯ ᏱᎰᏩ ᎢᏥᏁᏗ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏚᎢᏍᏔᏅᎢ, ᎾᏍᎩ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎯᎠ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏗᏤᏥ ᎯᎠ ᏂᎨᏥᏪᏎᎸᎭ; ᎦᏙ ᎢᏨᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᏕᏥᎸᏫᏍᏓᏁᎭ, ᎯᎠ ᎢᏥᏪᏍᏗ ᎨᏎᏍᏗ, ᎯᎠ ᎾᏍᎩ ᏱᎰᏩ ᎤᏤᎵ ᎧᏃᎯᏰᎩ ᎠᎵᏍᎪᎸᏓᏁᏗ; ᎾᏍᎩ ᏥᏚᏃᎯᏰ ᏓᏂᏁᎸ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ, ᎾᎯᏳ ᏥᏚᎩᎵᏲᎢᏍᏔᏁ ᎢᏥᏠᏱ ᎠᏁᎯ ᎠᏴᏃ ᏙᏥᏁᎸ ᏥᏚᏍᏕᎸᎮᎢ. ᏴᏫᏃ ᏚᎾᏗᏍᏚᏅᎩ, ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅᎩ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᎾᏓᏅᏒᎩ, ᎠᎴ ᏫᏄᎾᏛᏁᎸᎩ ᎾᏍᎩᏯ ᏱᎰᏩ ᏂᏚᏪᏎᎸ ᎼᏏ ᎠᎴ ᎥᎡᎳᏂ, ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸᎩ. ᏇᎵᏲᏃ ᎤᏗᏛᎲᎩ ᏒᏃᏱ, ᎤᏩᏒ ᎠᎴ ᏂᎦᏛ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎠᎴ ᎤᏣᏘ ᏓᏂᏴᎬᎩ ᎢᏥᏡᏱ; ᎥᏝᏰᏃ ᎢᎸᎯᏢ ᏯᏓᏁᎴ ᎾᎿ ᎠᏏᏴᏫ ᎤᏲᎢᏒᎯ ᏂᎦᏅᎾ ᎨᏒᎢ. ᎠᎴ ᏫᏚᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏒᏃᏱ, ᎯᎠᏃ ᏄᏪᏒᎩ, ᏗᏍᏓᎴᎲᎦ ᎢᏍᏓᏓᏅᎾ ᏗᏆᏤᎵ ᏴᏫ ᎠᏂ ᏄᎾᏛᏅᎢ, ᏂᎯ ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ: ᎠᎴ ᎢᏤᎾ ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ, ᎾᏍᎩᏯ ᏂᏥᏪᏒᎢ. ᎠᎴ ᏗᏣᏘᏄᎦ ᎠᏫ ᎠᎴ ᏩᎦ, ᎾᏍᎩᏯ ᏂᏥᏪᏒᎢ, ᎠᎴ ᎢᏤᎾ, ᎠᎴ ᎾᏍᏉ ᎣᏍᏛ ᏍᎩᏂᏁᏤᎸᎭ. ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᏓᎾᎵᏍᏓᏁᎲᎩ ᏴᏫ, ᎤᎾᏚᎵᏍᎬᎩ ᏧᏂᏄᎪᏫᏍᏗᏱ ᎤᎾᏤᎵᎪᎯ; ᎯᎠᏰᏃ ᎾᏂᏪᏍᎬᎩ, ᏗᎩᏲᎱᏒᎯᏉ ᏂᏗᎥᎢ. ᏴᏫᏃ ᎤᎾᏑᎨᎲᎯ ᎠᏏᏉ ᎾᎪᏔᏅᎾ ᏧᎾᏑᎨᏗᏱ ᏥᏳᎯ ᎦᎸᎢ ᏧᎾᏄᏬᎩᎯ ᎦᏇᏅᏒᎯ ᏚᎾᏃᎭᏝᏅᎩ.. ᎢᏏᎵᏃ ᏧᏪᏥ ᏄᏪᏒ ᎼᏏ ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸᎩ; ᎠᎴ ᏚᎾᏙᎸᎡᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᏧᏓᎴᏅᏛ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏗᏄᏬ. ᏱᎰᏩᏃ ᏚᏁᎸ ᏴᏫ ᎣᏏᏳ ᎬᏩᏂᏰᎸᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎾᏍᎩ ᏕᎬᏩᎾᏙᎳᏍᏗᏍᎬᎩ, ᎠᎴ ᏚᏂᎾᏌᏅᎩ ᎢᏥᏠᏱ ᎠᏁᎯ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᎾᏂᎩᏒᎩ ᎴᎻᏏ ᏌᎪᏗᏃ ᏭᏂᎷᏨᎩ, ᏑᏓᎵᏧᏈ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᎠᏁᎩ, ᏗᏂᏲᎵ ᏂᏓᏁᏢᏛᎾ. ᎠᎴ ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᏉ ᎤᏁᎳᏛᏒᎩ;: ᎠᎴ ᎠᏫ ᎠᎴ ᏩᎦ, ᏰᎵᎦᏯ ᎤᏂᏣᏘ ᎦᎾᏝᎢ. ᏚᏂᏚᏅᎩᏃ ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᎤᎾᏑᎨᎲᎯ ᎢᏒ ᎢᏥᏈ ᏅᏓᏳᏂᏴᏍᏔᏅᎯ, ᎥᏝᏰᏃ ᎠᎪᏔᏅᎯ. ᏱᎨᏎᎢ; ᏓᎨᏥᏄᎪᏫᏒᎩᏰᏃ ᎢᏥᏈᏱ, ᎥᏝ ᎠᎴ ᎬᏩᎾᏗᎩᏯᏍᏗ ᏱᎨᏎᎢ, ᎠᎴ Ꮭ ᎤᎾᏓᏁᎳᏅᎯ ᏱᎨᏎ ᎤᎾᎵᏍᏓᏴᏗ. ᎾᏍᎩᏯ ᎤᏁᏙᎸᎢ ᎢᏏᎵ ᏧᏪᏥ ᎢᏏᏈᏱ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯᏃ ᏄᏕᏘᏴᎲᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯᏃ ᏄᏕᏘᏴᎲ, ᎾᏍᎩ ᎾᎯᏳ ᎠᎦ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏂᎦᏛ ᏚᎾᏓᏡᏩᏗᏒ ᏱᎰᏩ ᏧᏤᎵᎦ ᎤᏂᏄᎪᏦᏅᎩ ᎢᏥᏡᏱ. ᎾᏍᎩ ᎾᎯᏳ ᏒᏃᏱ ᎤᏣᏘ ᎠᏍᏆᏂᎪᏓᏁᏗ ᏱᎰᏩ, ᎢᏥᏈᏱ ᎦᏙᎯ ᏙᏧᏘᎾᏫᏛᎲ ᎢᏳᏍᏗ; ᎯᎠ ᎾᏍᎩ ᎡᏃᏱ ᏱᎰᏩ ᎤᏂᏍᏆᏂᎪᏓᏁᏗ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᎾᎾᏓᏁᏟᏴᎲᏒᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎯᎠ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᎬᏩᎵ, ᏞᏍᏗ ᎩᎶ ᏅᏩᏓᎴ ᏴᏫ ᎤᎵᏍᏓᏴᏗ ᏱᎨᏎᏍᏗ; ᎾᏂᎥᏍᎩᏂ ᏗᏥᏅᏏᏓᏍᏗ ᎠᏕᎸ ᏗᏥᏩᎯᏍᏔᏅᎯ, ᏗᏥᎱᏍᏕᏎᎸᎯ ᎨᏎᏍᏗ, ᎿᏉ ᎤᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ. ᎡᏙᎯ, ᎠᎴ ᎠᎦᎫᏴᎡᎯ ᎠᏥᏅᏏᏛ ᏐᏝ ᎬᏩᎾᎵᏍᏓᏴᏗ ᏱᎨᏎᏍᏗ. ᏌᏉᏉ ᎠᏓᏁᎸ ᎠᎩᏍᏗ ᎨᏎᏍᏗ; ᎥᏝ ᎢᎦᏛ ᎤᏫᏯ ᏣᏄᎪᏫᏍᏗ ᏱᎨᏎᏍᏗ ᎠᏓᏁᎸᎢ: ᎥᏝ ᎠᎴ ᎤᎪᎳ ᎢᏥᏍᏆᎵᏎᏗ ᏱᎨᏎᏍᏗ. ᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎨᏒ ᎢᏏᎵ ᎯᎠ ᎾᏍᎩ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ. ᏅᏩᏓᎴᏃ ᏴᏫ ᏰᏙᎭ ᎢᏤᎲᎢ, ᎠᎴ ᏳᏚᎵ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᏱᎰᏩ ᎤᏍᏆᏂᎪᏓᏁᏗᏱ, ᏂᎦᏛ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᏗᎨᏥᎤᏍᏕᏎᏗ ᎨᏎᏍᏗ, ᎩᎳ ᎿᏉ ᎾᎥ ᎤᎷᎯᏍᏗ ᎠᎴ ᎤᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎾᎿᏉ ᎤᏕᏅᎯ ᎢᏳᏍᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎾᏥᎤᏍᏕᏎᎸᎾ ᎥᏞ ᎾᏍᎩ ᎬᏩᎩᏍᏗ ᏱᎨᏎᏍᏗ. ᏌᏉᏉ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᎢᏣᏤᎵᎪᎯ ᎤᏕᏅᎯ, ᎾᏃ ᏅᏩᏓᎴ ᏴᏫ ᎢᏤᎲ ᎥᎸᏛᏒᏃ ᎾᏍᎩᏃ ᎯᎠ ᏄᎾᏛᏁᎸᎩ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏂᏚᏪᏎᎸ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳᏉ ᎢᎦ, ᎾᏍᎩ ᏱᎰᏩ ᏚᏄᎪᏫᏒᎩ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏓᏡᏩᏗᏒ ᎢᏥᏈᏱ ᎦᏙᎯ. ᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ, ᎯᎠ ᏄᏪᏒᎩ, ᏗᏍᏆᏓᏓᎴᏓᏏ ᏂᎦᏛ ᎢᎬᏱ ᎠᏁᎯ ᏂᎦᏛ ᎢᎬᏱ ᎨᏥᎾᏄᎪᏫᏍᎩ ᏥᎩ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ, ᏴᏫ ᎠᎴ ᎾᏍᏉ ᎦᎾᏝᎢ; ᎠᏆᏤᎵᎦ ᎾᏍᎩ. ᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᎢᎭᏅᏓᏓ ᎪᎯ ᎢᎦ ᏥᎩ, ᎾᎯᏳ ᏗᏥᏄᎪᏨ ᎢᏥᏈᏱ, ᏗᎨᏥᎾᏝᎢ ᏙᏗᏂᏁᎸᎢ; ᎤᎵᏂᎩᏛᏰᏃ ᎨᏒ ᎤᏬᏰᏂ ᏱᎰᏩ ᎤᏩᏔᏅᏓᏥᏄᎪᏫᏒᎩ ᎾᎿᏂ; ᎥᏝ ᎠᎪᏔᏅᎯ ᎦᏚ ᎢᏥᎩᏍᏗ ᏱᎨᏎᏍᏗ. ᎪᎯ ᎢᎦ ᏓᏥᏄᎪᎢ, ᏅᏙ ᎧᎸ ᎡᏈ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎿᏉ ᏱᎰᏩ ᏫᏣᏘᏃᎸᎭ ᎠᏂᎨᎾᏂ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᎠᎼᎵ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ ᎤᎾᏤᎵᎪᎯ, ᎾᏍᎩ ᏧᏎᎵᏔᏁ ᏥᏚᏚᎢᏍᏓᏁᎴ ᏗᏣᎦᏴᎵᎨ ᏂᎯ ᏣᏁᏗᏱ, ᎾᏍᎩ ᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏥᏕᎦᎶᎴᎦ, ᎾᏍᎩ ᎾᎯᏳ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎪᎯ ᎧᎸᎢ. ᎦᎵᏉᎩ ᏧᏒᎯᏛ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᏣᎩᏍᏗ ᎨᏎᏍᏗ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᏱᎰᏩ ᎡᏣᎵᏍᏓᏴᎾᏁᏗ ᎨᏎᏍᏗ. ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᎦᎵᏉᎩ ᎢᎦ ᏗᎩᏍᏗ ᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᎡᏣᎪᏩᏛᎡᏗ ᏱᎨᏎᏍᏗ ᎠᎪᏔᏅᎯ. ᎦᏚ) ᎥᏝ ᎠᎴ ᎡᏣᎪᏩᏛᎡᏗ ᏱᎨᏎᏍᏗ ᎠᎪᏙᏗ ᏣᏤᎵᎪᎯ ᏂᎬᎾᏛᎢ. ᏤᏥᏃ ᎬᏂᎨᏒ ᎢᎯᏴᏁᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ, ᎯᎠ ᎢᏣᏪᏍᏗ ᎨᏎᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᎰᏩ ᎾᏆᏛᏁᎸ ᎾᎯᏳ ᎢᏥᏈᏱ ᏗᎩᏄᎪᏨ. ᎠᎴ ᏗᏣᏁᎶᏙᏗ ᎨᏎᏍᏗ ᎦᏯᎴᏍᏗ ᏦᏰᏂ, ᎠᎴ ᏣᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᏘᎦᏙᎵ ᎠᏰᎵ ᎦᏯᎴᏍᏗ, ᎾᏍᎩ ᏱᎰᏩ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏣᏍᏆᏂᎪᏙᏗᏱ. ᎯᎰᎵ; ᎤᎵᏂᎩᏛᏰᏃ ᎤᏬᏰᏂ ᎤᏩᏔᏅᎩ ᏱᎰᏩ ᏓᏣᏄᎪᏫᏒᎩ ᎢᏥᏈᏱ. ᎯᎠᏃ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᎸᎮᎬ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏂᏓᏕᏘᏴᎯᏒᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᎾᎯᏳ ᏱᎰᏩ ᎠᏂᎨᎾᏂ ᎤᎾᏤᎵᎪᎯ ᏫᏣᏘᏃᎸᎭ ᎾᏍᎩᏯ ᏂᏣᏪᏎᎸ ᏂᎯ ᎠᎴ ᏂᏚᏪᏎᎸ ᏗᏣᎦᏴᎵᎨᎢ ᎠᏎᎵᏛᏍᎬᎢ, ᎠᎴ ᏣᏁᎸᎭ, ᎾᏍᎩ ᏤᏥᎧᏁᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᏂᎦᏛ ᎢᎬᏱ ᎨᏥᎾᏄᎪᏫᏍᎩ ᏥᎩ, ᎠᎴ ᎾᏂᎥ ᎢᎬᏱ ᎠᏁᎯ ᎦᎾᏝᎢ ᏣᎧᎲ ᎨᏥᎾᏄᎪᏫᏒᎯ; ᎠᏂᏨᏯ ᏱᎰᏩ ᏧᏤᎵ ᎨᏎᏍᏗ. ᏗᎦᎵᎠᏅᎯᏛᏃ ᏐᏈᎵ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎯᏯᎫᏴᏗᏉ ᎨᏎᏍᏗ ᎤᏃᏕᎾ ᎠᏫ ᎯᏯᎫᏴᏙᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏂᏯᎫᏴᎲᎾ ᎢᎨᏎᏍᏗ ᎯᏍᏆᎵᏎᏗᏉ ᎨᏎᏍᏗ ᎠᏴᏤᏂ; ᎠᎴ ᎾᏂᎥ ᎢᎬᏱ ᎠᏁᎯ ᏴᏫ ᏗᏤᏥ ᏕᏤᎲᎢ, ᎩᏯᎫᏴᏗ ᎨᏎᏍᏗ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎢᏳᏃ ᏤᏥ ᎢᎸᎯᏳ ᎢᏣᏛᏛᎲᏍᎨᏍᏗ ᎯᎠ ᏂᎦᏪᏍᎨᏍᏗ, ᎦᏙ ᎯᎠ? ᎯᎠ ᎢᎯᏪᏎᏗ ᎨᏎᏍᏗ, ᏱᎬᏩ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏬᏰᏂ ᎤᏩᏔᏅᎩ ᏓᏲᎩᏄᎪᏫᏒᎩ ᎢᏥᏈᏱ, ᏗᎨᏥᎾᏝᎢ ᏙᏗᏂᏁᎸᎢ; ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳ ᏇᎵᏲ ᎦᏂᎳ ᎤᏬᎯᏳᏅ ᏦᎩᏲᎯᏍᏗᏱ, ᏱᎰᏩ ᏚᎸᎩ ᏂᎦᏛ ᎢᎬᏱ ᎠᏁᎯ ᎢᏥᏠᏈᏱ ᎠᏁᎲᎢ, ᎾᏍᏉ ᏴᏫ ᏧᏁᏥ ᎢᎬᏱ ᎠᏁᎯ, ᎠᎴ ᎦᎾᏝᎢ ᏧᏁᏥ ᎢᎬᏱ ᎠᏁᎯ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏴ ᏕᏥᏯᎵᏍᎪᎸᏓᏁᎰ ᏱᎰᏩ ᏂᎦᏛ ᎢᎬᏱ ᎨᏥᎾᏄᎪᏫᏒᎯᏊ ᎠᏂᏨᏯ ᏱᎩ; ᎢᎬᏱᏍᎩᏂ ᎠᏁᎯ ᏗᏇᏥ ᏂᎦᏛ ᏕᎦᎫᏱᏍᎪᎢ. ᎠᎴ ᎾᏍᎩ ᏗᏣᏁᎶᏙᏗ ᎨᏎᏍᏗ ᏦᏰᏂ ᎦᏯᎴᏍᏗ, ᎠᎴ ᏗᎦᏙᎵ ᎠᏰᎵ ᎦᏯᎸᏗ ᎨᏎᏍᏗ; ᎤᎵᏂᎩᏗᏳᏰᏃ ᎨᏒ ᎤᏬᏰᏂ ᏱᎰᏩ ᎤᏩᏔᏅᎩ ᏓᏲᎩᏄᎪᏫᏒᎩ ᎢᏥᏡᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳ ᏇᎵᏲ ᏚᏲᏒ ᏴᏫ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎥᏝ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎪᎯ ᎦᏙᎯ ᏫᎦᏅᏅ ᏱᏫᏚᏘᏅᏍᏔᏁᎢ, ᎾᎥᏂᏳᏍᎩᏂ ᎨᏒ ᎾᏍᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏴᏫᏰᏃ ᏱᏓᏂᏁᏟᏴᎾ ᏚᎾᏓᏅᏛ ᎿᏉ ᏓᎿᏩ ᎠᏂᎪᎲᎭ, ᎠᎴ ᏯᎾᏨᎾ ᎢᏥᏈ ᏱᏩᏂᎶᎯ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏚᏪᏕᏯᏍᏔᏅᎩ ᏴᏫ ᎢᎾᎨ ᏫᎦᎶᎯᏍᏗᏱ ᎾᏍᎩ ᎠᎹᎩᎦᎨᏍᏛᏱ ᎾᎥᎢ. ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᏄᎪᏨᎩ ᎢᏥᏈᏱ ᏧᎾᎵᏍᎦᏍᏙᏗ ᏗᏂᏁᎯ. ᎼᏏᏃ ᏦᏩ ᏧᎪᎳ ᏚᏪᏅᏒᎩ;: ᎤᎵᏂᎩᏛᏰᏃ ᏧᏎᎵᏙᏔᏅᎯ ᎨᏒᎩ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᎢᏳᏪᏛ ᎨᏒᎩ, ᎤᏁᎳᏅᎯ ᎠᏎ ᏓᏥᏳᏩᏛᎯᎵ; ᎠᎴ ᎠᏎ ᏗᏥᏅᏍᏗ ᎨᏎᏍᏗ ᏗᎩᎪᎳ ᎠᏂ ᎢᏣᏓᏅᎡᎭ. ᏌᎪᏗᏃ ᎤᎾᏂᎩᏒᎩ, ᎢᏓᎻᏃ ᎤᎾᏅᏅᎩ ᎢᎾᎨ ᎠᏍᏛᎢ. ᏱᎰᏩᏃ ᎢᎬᏱ ᎠᎢᏒᎩ ᎠᎾᎢᏒ ᎢᎦ ᎾᎿ ᎤᏓᏡᎬ ᎤᎶᎩᎸᎢ, ᏧᏘᏅᏍᏗᏱ ᎾᎿ ᏫᎦᎶᎯᏍᏗᏱ; ᎤᏒᏃ ᎤᏓᏡᎬ ᎠᏥᎸ ᎠᎢᏒᎩ ᎾᏍᎩ ᎢᎦ-ᏧᏘᏍᏓᏁᏗᏱ; ᎾᏍᎩ ᎤᏁᏅᏍᏗᏱ ᎢᎦ ᎠᎴ ᏒᏃᏱ. ᎥᏝ ᎠᎴ ᏱᏚᎩᎡᎴ ᎤᏓᏡᎬ ᎤᎶᎩᎸ ᎢᎦ, ᎠᎴ ᎤᏓᏡᎬ ᎠᏥᎸ ᏒᏃᏱ ᎢᎬᏱ ᏕᎡᏅᎡᎲ ᏴᏫ. ᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏒᎩ, ᏘᏁᏥ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎤᎾᎪᎸᏍᏗᏱ ᎠᎴ ᏭᎾᏅᏘᏱ ᏆᎮᎭᎶᏛ ᎢᎬᏱᏗᏢ, ᎠᏰᎵ ᎻᎦᏙᎳ ᎠᎴ ᎠᏳᏉᎯ, ᏇᎵᏥᏉᏂ ᏧᏳᎪᏗ; ᎾᎿ ᎢᎬᏱᏗᏢ ᎢᏣᏅᏗᏢ ᎨᏎᏍᏗ ᎠᏣᏉᎯ ᎾᎥᎢ. ᏇᎵᏲᏃ ᎯᎠ ᏅᏓᎦᏪᏏ ᎢᏏᎵ ᏧᏪᏥ ᏕᎧᏃᎮᏍᎬᎢ, ᎤᏄᏓᎸᏨ ᎦᏙᎯ, ᎢᎾᎨ ᎨᏒ ᎤᎾᎵᏍᏚᏔᏅ. ᎠᎴ ᏓᏥᏍᏓᏱᏕᎵ ᏇᎵᏲ ᎤᎾᏫ, ᎠᎴ ᏙᏛᏍᏓᏩᏕᏏ; ᎠᎴ ᎥᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᏇᎵᏲ ᎠᎴ ᏧᏤᎵ ᏑᎾᏓᏡᎩ ᏄᎾᎵᏍᏓᏁᎸ; ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᏛᎾᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎸᎩ. ᎠᏥᏃᏁᎸᎩᏃ ᎢᏥᏈᏱ ᎡᎯ ᎤᎬᏫᏳᎯ, ᏴᏫ ᎤᎾᎵᏒᎢ; ᏇᎵᏲᏃ ᎤᎾᏫ ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᏧᏂᎾᏫ ᏚᏂᎦᏔᎲᏒᎩ, ᏚᎾᏡᏔᏅᎩ ᏴᏫ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙᏃ ᎯᎠ ᎾᏍᎩ ᏅᏓᏛᎦ, ᏙᎨᏘᏲᎯ ᎢᏏᎵ, ᎠᏴ ᎪᎱᏍᏗ ᎨᎦᏛᏁᎲᎢ. ᎤᏛᏅᎢᏍᏔᏅᎩᏃ ᎤᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏚᏘᏅᏒᎩ ᏧᏤᎵ ᏴᏫ. ᏑᏓᎵᏧᏈᏃ ᏗᏑᏰᏛ ᏗᏦᏗ ᏓᏆᎴᎷ ᏚᏴᏒᎩ, ᎠᎴ ᏂᎦᏛ ᏗᏦᏗ ᏓᏆᎴᎷ ᎢᏥᏠᏱ ᏚᏂᎲᎢ, ᎠᎴ ᏌᏉ ᏓᏆᎴᎷ ᎠᏂᏯᏫᏍᎩ ᎤᎾᏣᎢᎭ ᏚᏘᏅᏒᎩ. ᏱᎰᏩᏃ ᎤᏍᏓᏱᏕᎸᎩ ᎤᎾᏫ ᏇᎵᏲ ᎢᏥᏈᏱ ᎡᎯ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏚᎨᎲᏒᎩ ᎢᏏᎵ ᏧᏪᏥ; ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᏄᎪᏨᎩ ᏧᏃᏰᏂ ᏚᏂᏌᎳᏛᎩ. ᎢᏥᏠᏡᏱᏃ ᎠᏁᎯ ᎠᎴ ᏂᎦᏛ ᏐᏈᎵ ᎠᎴ ᏗᏦᏗ ᏓᏆᎴᎷ ᏇᎵᏲ ᏧᏤᎵᎦ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏑᎾᏓᏡᎩ ᏓᎿᏩ ᎠᏁᎩ ᏧᏤᎵᎦ ᏚᏂᎨᎲᏒᎩ, ᎠᎴ ᏫᏚᎾᏢᏔᎲᎩ ᏩᏂᏅ ᎠᎾᏉᎯ ᎾᎥᎢ, ᏆᎮᎭᎶᏛ ᎤᎶᏗᏢᎢ, ᏇᎵᏥᏉᏂ ᏧᏳᎪᏗ. ᏇᎵᏲᏃ ᎾᎥ ᏭᎷᏨ, ᎢᏏᎵ ᏧᏪᏥ ᏫᏚᎾᎧᎿᏅᎩ, ᎠᎴ ᎬᏂᏳ ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᎬᏩᏂᏍᏓᏩᏗᏒᎩ; ᎠᎴ ᎤᏣᏘ ᎤᏂᏍᎦᎸᎩ; ᎢᏏᎵᏃ ᏧᏪᏥ ᏚᎾᏠᏱᎸᎩ ᏱᎰᏩ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ. ᎯᎠᏃ ᏄᏂᏪᏎᎸᎩ ᎼᏏ, ᎢᏥᏈᏱ ᏂᏗᎪᏢᏒᎾ ᎨᏒ ᎢᏳᏍᏗ ᏗᏓᏂᏐᏗᏱ, ᏙᏗᏍᎩᏯᏘᏁᏅ ᏦᎩᏲᎱᎯᏍᏗᏱ. ᎢᎾᎨᎢ? ᎦᏙᏃ ᎾᏍᎩ ᏂᏯᎩᏴᏁᎸ ᏙᏗᏍᎩᏯᏘᏁᏅ ᎢᏥᏈᏱ? ᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᏱᏂᏨᏪᏎᎴ ᎢᏥᏈᏱ; ᎣᎦᏁᎳᎩ, ᎢᏥᏈᏱ ᎠᏁᎯ ᎪᎱᏍᏗ ᏦᏣᏛᏁᎯ ᎨᏎᏍᏗᎸ1 ᎤᏟᏰᏃ ᏱᏃᏎ ᎢᏥᏈᏱ ᎠᏁᎯ ᎪᎱᏍᏗ ᏦᏣᏛᏁᎯ ᏱᎨᏎᎢ, ᎠᏃ ᎢᎾᎨ ᏦᎩ ᏲᎢᎯᏍᏗᏱ. ᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᎢᏣᎴᎾᏫᏍᏓ, ᎠᎴ ᎢᏥᎪᏩᏛ ᏱᎰᏩ ᎤᏓᏍᏕᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎪᎯ ᎢᎦ ᏨᏓᏨᎾᏄᎪᏫᏎᎵ; ᎢᏥᏈᏱᏰᏃ ᎠᏁᎯ ᎪᎯ ᎢᎦ ᏥᏕᏥᎪᏩᏛ, ᎥᏝ ᏔᎵᏁ ᎢᎸᎯᏳ ᏱᏙᎨᏥᎪᏩᎩ; ᏱᎰᏩ ᏙᏓᏣᎴᎵ, ᏂᎪᏃ ᏔᏉ ᏂᏣ ᏁᏍᏗ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎦᏙᏃ ᎠᏴ ᎢᏍᏆᎵᏍᏓᏁᎭ) ᏘᏁᏥ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏂᎩᏍᏗᏱᎢ ᏂᎯᏍᎩᏂ ᎯᏌᎳᏛᎦ ᏣᏙᎳᏅᏍᏗ. ᎠᎴ ᎭᏎᎵᏛᎦ ᏦᏰᏂ ᎠᏩᏉᎯ ᎦᎸᎳᏗᏢ ᏧᏳᎪᏗ, ᎠᎴ ᏔᎵ ᏂᏓ: ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᎧᏲᏛᎯ ᎦᏙᎯ ᏮᏛᏂᎶᏏ ᎠᏰᎵ ᎠᏣᎾᏉᎯ. ᎠᏰᏃ, ᎬᏂᏳᏉ, ᎠᏴ ᏙᏓᎦᏥᏍᏓᏱᏕᎵ ᏧᏂᎾᏫ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᏙᏛᏂᏍᏓᏩᏕᏏ; ᎠᎴ ᎥᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏇᎵᏲ ᏄᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᎠᎴ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᏓᎿᏩ ᎠᏁᎩ ᏧᏤᎵ ᏄᎾᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᎠᎴ ᏗᏦᏗ ᏓᏆᎴᎷ ᏧᏤᎵ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ ᏄᎾᎵᏍᏓᏁᎸ ᎢᏳ ᏍᏗ. ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᏛᎾᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ, ᎾᎯᏳ ᎥᎩᎸᏉᏔᏅ ᏇᎵᏲ ᏄᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᏂᏚᎵᏍᏓᏁᎸᏃ ᏗᏦᏗ ᏓᏆᎴᎷ ᏧᏤᎵᎦ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ. ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎢᎬᏱ ᎠᎢᏒᎩ ᎢᏏᎵ ᎤᎾᏓᏡᎬᎢ, ᎤᏓᏅᏒᎩ ᎠᎴ ᎣᏂᏗᏢ ᎠᎾᎢᏒ ᎤᏪᏅᏒᎩ; ᎤᎶᎩᎸᏃ ᎤᏓᏡᎬ ᎤᏓᏅᏒᎩ ᎢᎬᏱᏗᏢ ᏄᏛᎿᏕᎬ, ᎠᎴ ᎣᏂᏗᏢ ᏄᎾᏛᏅ ᎤᎴᏅᎩ. ᎠᎴ ᎠᏰᎵ ᎤᎷᏨᎩ ᎠᏂᏅ ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᎴ ᎢᏏᎵ ᎠᏂᏅᎢ; ᎠᎴ ᎤᎵᏏᎩ ᎤᎶᎩᎸᎩ [ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᏂᏅ ᎢᏗᏢ,] ᎠᎴ [ᎢᏏᎵ ᎠᏂᏅ ᎢᏗᏢ] ᎢᎦ ᎤᏘᏍᏛᎩ ᏒᏃᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎾᎥ ᏱᎦᏮᏓᎷᏤᎴ ᎤᎵᏨᏓᏆᏛ. ᎼᏏᏃ ᎤᏎᎵᏔᏅᎩ ᎠᎺᏉᎯ ᎦᎸᎳᏗᏢ; ᏱᎰᏩᏃ ᏄᏩᏂᏌᏅᎩ ᎠᎺᏉᎯ ᎤᏓᏅᏒᎩ ᎠᏍᏓᏯ ᏗᎧᎸᎬ ᎢᏗᏢ ᏧᏃᎸᏛ ᎤᎵᏨᏓᏆᏛ ᎢᏳᏍᏗ, ᎠᎴ ᎤᎧᏲᏛᎯ ᏄᏩᏁᎸ ᎠᎺᏉᎯ, ᎠᎴ ᏔᎵ ᏄᏓᏛᎩ ᎠᎹ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎠᏩᏉᎯ ᎠᏰᎵ ᏭᏂᎷᏨᎩ ᎤᎧᏲᏛᎯ; ᎠᎴ ᎠᎹ ᏣᏐᏯᏍᏙ ᎢᏳᏍᏗ ᎨᏒᎩ ᎠᎦᏘᏏᏗᏢ, ᎠᎴ ᎠᎦᏯᎦᏂᏗᏢ ᎠᎾᎢᏒᎢ. ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎬᏩᏂᎨᎲᏒᎩ, ᎠᎴ ᎬᏩᏂᏍᏓᏩᏛᏒᎩ ᎠᎾᏉᎯ ᎠᏰᎵ ᎢᏴᏛ, ᎾᏍᎩ ᏂᎦᏛ ᏇᎵᏲ ᏧᏤᎵ ᏐᏈᎵ ᏗᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ. ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏑᎾᎴ ᎠᏯᏫᏍᏗᏱ ᎨᏒ ᏱᎰᏩ ᏙᏓᏳᎧᎿᏅᎩ ᏑᎾᏓᏡᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏓᏡᎬ ᎠᏥᎸ ᎠᎴ ᎤᎶᎩᎸ ᎠᏰᎵ, ᎠᎴ ᏚᏕᏯᏙᏔᏅᎩ ᏑᎾᏓᏡᎩ ᎢᏥᏈᏱ ᎠᏁᎯ. ᎠᎴ ᏚᏪᏆᏓᏒᎸᎩ ᏕᎦᏆᏛ ᏧᎾᏦᏗ ᏓᏆᎴᎷ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᏂᎵᏳ ᏓᏂᏱᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎨᏓᎵᏏ ᎢᏏᎵ; ᏱᎰᏩᏰᏃ ᏓᏍᏕᎵᎭ ᎠᎾᎵᎲᎢ, ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᏡᏗᎭ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎭᏎᎵᏛᎦ ᏦᏰᏂ ᎠᏘᏩᏉᎯ ᎦᎸᎳᏗᏢ, ᎾᏍᎩ ᎠᎹ ᏔᎵᏁ ᎥᎤᏪᏅᏍᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᏄᏢᏗᏱ, ᏧᏭᏢᏗᏱ ᏧᎾᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏧᎾᏤᎵ ᏧᎾᎩᎸᏗ. ᎼᏏᏃ ᎤᏎᎵᏔᏅᎩ ᎤᏬᏰᏂ ᎠᏣᏉᎯ ᏚᎸᎳᏗᏢ, ᎠᎾᏣᏉᎯᏃ ᎤᎵᏂᎬᎬ ᎬᏗ ᏛᎤᏨᏒᎩ ᏑᎾᎴ ᏄᎵᏍᏔᏅ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎾᎿ ᎢᏗᏢ ᎤᎾᎵᏍᏔᏅᎩ; ᏱᎰᏩᏃ ᏚᏓᎢᏅᏔᏅᎩ ᎢᏥᏡᏱ ᎠᏁᎯ ᎠᏣᎾᏄᏉᎯ ᎠᏰᎵ. ᎠᎹᏃ ᏛᎤᏨᏒᎩ, ᎠᎴ ᏚᏭᏢᏅᎩ ᎾᎿ ᎠᏣᎾᏉᎯ ᏗᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᏇᎵᏲ ᏧᏤᎵᎦ ᎾᏍᎩ [ᎢᏏᎵ] ᎬᏩᏂᏍᏓᏩᏙᎸᎯ; ᎥᏝᏃ ᏌᏉ ᎤᏅ ᏳᎵᏃᎯᏰᎢ. ᎢᏏᎵᏍᎩᏂ ᏧᏪᏥ ᎤᎧᏲᏛᎯ ᎠᎾᎢᏒᎩ ᎠᏩᏉᎯ ᎠᏰᎵ; ᎠᎹᏃ ᏣᏐᏲ ᎢᏳᏍᏗ ᎨᏒᎩ ᎠᎦᏘᏏᏗᏢ ᎠᎴ ᎠᎦᏍᎦᏂᏗᏢ ᎠᎾᎢᏒᎢ. ᎾᏍᎩᏃ ᏱᎰᏩ ᏚᏍᏕᎸᎲᎩ ᎢᏏᎵ, ᏚᏭᏓᎴᏒᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᏕᎬᏩᏂᏂᏴᏒ ᎾᎯᏳ ᎢᎦ: ᎢᏏᎵᏃ ᏚᏂᎪᎲᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᏧᏂᏲᎱᏒᎯ ᎠᏣᏉᎯ ᎤᎶᏗ. ᎠᎴ ᎢᏏᎵ ᎤᏂᎪᎲᎩ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏱᎰᏩ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᏂᏚᏩᏁᎸ ᎢᏥᏈᏱ ᎠᏁᎯ; ᏴᏫᏃ ᎤᏂᎾᏰᏒᎩ ᏱᎰᏩ, ᎠᎴ ᎤᏃᎯᏳᏅᎩ ᏱᎰᏩ ᎠᎴ ᎤᏅᏏᏓᏍᏗ ᎼᏏ. ᎿᏉᏃ ᎼᏏ ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᏚᏂᏃᎩᏍᏔᏅᎩ ᏱᎰᏩ ᎯᎠ ᎾᏍᎩ ᏗᎧᏃᎩᏍᏗ, ᎠᎴ ᎤᏂᏁᏨᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏱᎰᏩ ᏙᏓᏥᏃᎩᏍᏔᏂ ᎤᏣᏘᏰᏃ ᎦᎸᏉᏗᏳ ᏂᎦᎵᏍᏓ ᎾᏍᎩ; ᏐᏈᎵ ᎠᎴ ᏅᎩᎸᏘ ᎠᎺᏉᎯ ᏫᏚᏓᎢᏅ. ᏱᎰᏩ, ᎠᏍᎦᏯ ᏓᎿᏩ ᎤᎩᏌᏛ; ᏱᎰᏩ ᏕᎤᏙᎥ. ᏇᎵᏲ ᏧᏤᎵ ᏗᏦᏗ ᏓᏆᎴᎷ ᎠᎴ ᏑᎾᏓᏡᎩ ᏧᏤᎵ ᎠᎺᏉᎯ ᏕᏅᏓᎢᏅ: ᎠᎴ ᏧᏤᎵ ᎨᎦᏑᏰᏛ ᎠᏂᏯᏫᏍᎩ ᏓᏆᎴᎷᎯ ᎠᎾᏣᎥᏍᎩ ᏚᏂᎬᏨ ᎠᎺᏉᎯ ᎩᎦᎨᏍᏛᏱ. ᎠᏍᏛᎩ ᎨᏒ ᎤᏄᏢᏅᎩ; ᎤᏂᏃᏴᏨᎩ ᎭᏫᏂ ᎢᏴᏛ ᏅᏯ ᎾᏍᎩᏯᎢ. ᎯᎦᏘᏏ ᏦᏰᏂ ᏱᎰᏩ, ᎦᎸᏉᏗᏳ ᏄᎵᏍᏔᏅ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᏳᏍᏗ; ᎯᎦᏘᏏ ᏦᏰᏂ ᏱᎰᏩ, ᏕᏣᎤᎸᏛᏂᏍᏔᏅ ᎠᏂᎦᏍᎩ. ᎠᎴ ᎤᏣᏘ ᎡᏣᎸᏉᏗᏳ ᎨᏒ ᏨᏔᏅ ᎩᏛᏔᏅ ᎾᏍᎩ ᏗᎨᏣᎦᏘᎸᏛ; ᏓᏣᏓᏅᏒᎩ. ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎾᎪᎲᏍᏓ ᎾᏍᎩᏯ ᎠᏍᎫᏕᏒ ᏚᏂᏡᎾᎥᎢ. ᎠᎴ ᏙᏴᏐᎵ ᏣᏦᏔᏍᏔᏅ ᎠᎹ ᎤᏓᏟᏌᏅᎩ; ᎠᎹ ᏧᏳᎪᏗ ᎤᎴᏅᎩ ᏥᎦᏡᎪ ᎢᏳᏍᏗ, ᎠᎴ ᎠᏍᏛᎩ ᎨᏒ ᎤᏍᏓᏲᏒ ᎠᎺᎯ ᎠᏰᎵ. ᎠᎦᏍᎩ ᎯᎠ ᏄᏪᏒᎩ, ᏓᎦᏥᎨᎮᏏ, ᏓᎦᏥᏯᏢᏔᎯ, ᏓᏥᏯᏙᎵ ᎠᏆᏓᏬᏅᏛ; ᏄᏍᏛ ᎠᏆᏚᎵᏍᎬ ᏛᎩᏛᏓᏁᎵ ᏂᎦᏥᏴᏁᎸᎢ: ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎠᏆᏤᎵ ᏓᏥᎸᎢ, ᎠᏉᏴᏂ ᏓᏳᏂᏛᏔᏂ. ᏣᏤᎵ ᎤᏃᎴ ᏣᏦᏔᏍᏔᏅᎩ, ᎠᎺᏉᎯ ᎤᏄᏢᏅᎩ; ᎤᏂᏃᏴᏨᎩ ᎦᏂ ᎾᏍᎩ ᏯᎢ ᎤᏣᏘ ᏕᎦᏃᎢᎩᏍᎬᎢ. ᎦᎪ ᏂᎯ ᏂᏣᏍᏛ ᏄᏍᏗ ᏱᎰᏩ, ᎠᏁᎲ ᎤᎾᏁᎳᏅᎯ? ᎦᎪ ᏂᏣᏍᏛ ᏄᏍᏛ ᎦᎸᏉᏗᏳ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎤᎾᏰᎯᏍᏗᏳ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᎤᏍᏆᏂᎪᏗᏳ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ. ᎯᎦᏘᏏ ᏦᏰᏂ ᏣᏎᎵᏔᏅᎩ, ᎦᏙᎯ ᎤᏂᎩᏒᎩ. ᏣᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏨᏔᏅᎩ ᏕᎭᏘ ᏅᏒ ᏴᏫ ᎾᏍᎩ ᏔᎴᏴᏛ ᎨᏒᎢ; ᏣᎵᏂᎩᏗᏳ ᎨᏒ ᏨᏔᏅᎩ ᏕᎭᏘᏅᏒᎩ ᏫᏕᎯᎧᏅᎩ ᏣᏤᎵᎪᎯ ᎦᎸᏉᏗᏳ ᏩᏕᏗᏱ. ᏴᏫ ᏛᎾᏛᎦᏂ, ᎠᎴ ᏙᏓᏳᏂᏅᏫ; ᎤᏲ ᏛᎾᏓᏅᏓᏗ ᏈᎵᏍᏗᏱ ᎠᏁᎯ. ᎿᏉ ᏗᎨᎦᏁᎶᏗ ᎢᏓᎻ ᎠᏁᎯ ᏛᏂᎾᏰᏏ; ᎩᎠᏈ ᎠᏁᎯ ᏧᎾᎵᏂᎩᏛ ᎠᏂᏍᎦᏯ ᏙᏓᏳᏂᎾᏫ; ᏂᎦᏛ ᎨᎾᏂ ᎠᏁᎯ ᏙᏛᏅᎾᏬᏏ. ᎠᏂᎾᏰᏍᎨᏍᏗ, ᎠᎴ ᎤᏯ ᎤᏅᏎᏍᏗ; ᎯᏃᎨᏂ ᎡᏉᎯᏳ ᎨᏒ ᎢᏳᏍᏗ ᎡᎳᏪ ᎤᏅᏎᏍᏗ ᏅᏯ ᎾᏍᎩᏯᎢ: ᎬᏂ ᏗᏣᏤᎵ ᏴᏫ ᏓᏂᎶᏒᎭ, ᏱᎰᏩ, ᎬᏂ ᏓᏂᎶᏒᎭ ᏴᏫ ᎾᏍᎩ ᏔᎫᏴᏛ ᎨᏒᎢ. ᏙᏘᏴᏔᏂᎵ, ᎠᎴ ᏙᏘᏫᏏ. ᎣᏓᎸ ᏣᏤᎵᎪᎯ ᎨᏒᎢ, ᎾᎿᏂ ᏱᎰᏩ ᏣᏛᏅᎢᏍᏔᏅ ᏣᏁᎳᏗᏍᏗᏱ; ᎦᎸᏉᏗᏳ ᏗᎨᏒ, ᏣᎬᏫᏳᎯ, ᏂᎯ ᏗᏦᏰᏂ ᏧᏬᏢᏅᎯ. ᏱᎰᏩ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ. ᏇᎵᏲᏰᏃ ᎤᏤᎵ ᏐᏈᎵ ᎠᎴ ᏓᏆᎴᎷ ᏗᏦᏗ ᎠᎺᏉᎯ ᏭᏂᎶᏒᎩ, ᎬᏩᎾᏠᏯᏍᏗ ᏧᎾᎩᎸᏗ, ᏱᎰᏩᏃ ᎠᎹ ᎠᎺᏉᎯ ᎡᎯ ᏔᎵᏁ ᎤᏱᎶᎸᎩ ᎤᏄᏢᏔᏅᎩ;: ᎢᏏᎵᏍᎩᏂ ᏧᏪᏥ ᎤᎧᏲᏛᎯ ᎤᏂᎶᏒᎩ ᎠᎺᏉᎯ ᎠᏰᎵ. ᎻᎵᏯᎻᏃ ᎠᏙᎴᎰᏍᎩ ᎡᎳᏂ ᎤᏙ ᎠᎱᎵ ᏨᎩᏒᎩ; ᏂᎦᏛᏃ ᎠᏂᎨᏴ ᎥᎬᏩᏍᏓᏩᏛᏒᎩ ᎠᏴᎵ ᏗᏂᏰᎯ, ᎠᎴ ᎠᎵᏍᎩᏛ ᏔᎵ ᎤᏛᏛᎩ. ᎻᎵᏯᎻᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ. ᏤᏥᏃᎩᏍᏓ ᏱᎰᏩ, ᎤᏣᏘᏰᏃ ᎦᎸᏉᏗᏳ ᏂᎦᎵᏍᏓ ᎾᏍᎩ; ᏐᏡᎵ ᎠᎴ ᎾᏍᎩ ᎤᎩᎸᏗ ᎠᎺᏉᎯ ᏫᏚᏓᎢᏅ. , ᎾᏍᎩᏃ ᎼᏏ ᏚᏘᎾᏫᏛᎲᎩ ᎢᏏᎵ ᎠᎺᏉᎯ ᎩᎦᎨᏍᏛᏱ ᎠᏂᏅᎢ; ᎠᎴ ᏑᎵ ᏚᏙᎥ ᎢᎾᎨ ᏭᏂᎶᏒᎩ; ᏦᎢᏃ ᎢᎦ ᎤᏁᏅᏒᎩ ᎢᎾᎨ ᎨᏒᎢ, ᎠᎴ ᎥᏝ ᎠᎹ ᏳᏂᏁᏩᏛᎮᎢ. ᎹᎳᏃ ᏭᏂᎷᏨᎩ; ᎥᏝᏃ ᏰᎵ ᎬᏩᎾᏗᏔᏍᏗ ᏱᎨᏎ ᎠᎹ ᎹᎳ ᎤᏂᏁᏩᏛᏛ, ᎤᏴᏍᏗᏳᏰᏃ ᎨᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎹᎳ ᏚᏃᎥᎩ. ᏴᏫᏃ ᎪᎱᏍᏗ ᎬᏬᏎᎸᎩ ᎤᎾᏡᏔᏅᎩ ᎼᏏ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙ ᏓᏲᏣᏗᏔᎯ? ᏱᎰᏩᏃ ᎤᎵᏍᏓᏁᎸᎩ , ᎠᎴ ᏱᎰᏩ ᎤᏎᎮᎸᎩ ᏡᎬᎢ, ᎾᏍᎩ ᎠᎼᎯ ᏭᏗᏅ ᎤᎦᎾᏍᏛ ᏄᎵᏍᏔᏅᎩ ᎠᎹ. ᎾᎿ ᏚᏬᏢᎾᏁᎸᎩ ᏚᏭᎪᏔᏅᎢ ᎠᎴ ᏗᎧᎾᏩᏛᏍᏗ, ᎠᎴ ᎾᎿ ᏚᎪᎵᏰᎥᎩ. ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎢᏳᏃ ᏣᎵᏏᎾᎯᏍᏗ ᏱᏣᏛᏓᏍᏔᏅ ᎧᏁᎬ ᏱᎰᏩ ᏣᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎣᏏᏳ ᎤᏰᎸᏗ ᏱᏂᏣᏛᏁᎸ, ᎠᎴ ᏱᏣᎦᏌᏯᏍᏗ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏂᎦᏛ ᏚᏭᎪᏔᏅᎢ ᏱᏗᏣᏍᏆᏂᎪᏗ, ᎥᏝ ᏣᎷᏤᏗᏱ ᏱᏅᎦᎬᎦ ᏌᏉᎤᏅ ᎯᎠ ᎾᏍᎩ ᎥᏳᎩ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᏂᎷᏤᏗ ᏥᎾᏮᏁᎸᎢ; ᎠᏴᏰᏃ ᏱᎰᏩ ᎬᎾᏫᏍᎩ. ᎢᎵᎻᏃ ᏭᏂᎷᏨᎩ, ᎾᎿ ᏔᎳᏚ ᎠᎹ ᏕᎦᏄᎪᎬᎩ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᏧᏕᏄᏓᏅᎯᏛ ᏕᏡᎬᎩ, ᎾᎿᏃ ᎤᎾᏅᏅᎩ ᎠᎹᏳᎶᏗ. ᎢᎵᎻᏃ ᎤᎾᏂᎩᏒᎩ; ᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎨᏒ ᎢᏏᎵ ᏧᏪᏥ ᏏᏂ ᏚᏙᎥ ᎢᎾᎨ ᎤᏂᎷᏨᎩ, ᎾᎿ ᎠᏰᎵ ᎢᎵᎻ ᎠᎴ: ᏌᎾᏱ, ᎾᏍᎩ ᎯᏍᎩᎦᏚᏏᏁ ᎢᎦ ᏔᎵᏁ ᎧᎳᏩᏗᏒ ᏅᏓᎬᏩᎾᏂᎩᏛ ᎢᏥᏈᏱ ᎦᏙᎯ. ᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ ᎪᎱᏍᏗ ᎬᏩᏃᏎᎸᎩ ᎬᏩᎾᏡᏔᏅᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᎾᎿ ᎢᎾᎨᎢ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎸᎩ, ᏲᏎᏉ ᏱᎰᏩ ᏱᏙᎩᎴ ᎢᏥᏡᏱ ᎦᏙᎯ, ᎾᎯᏳ ᏧᎳᏍᎩ ᎭᏫᏯ ᏗᎦᎶᏗ ᏕᎦᎧᎲ ᎾᎥ ᏥᏙᎪᎸᎢ, ᎦᏲᏦᎸᏍᎩ. ᎦᏚ ᏦᏥᎩᏍᎬᎢ. ᏕᏍᎩᏯᏘᏃᎸᏰᏃ ᎠᏂ ᎢᎾᎨ ᎨᏒ ᎠᎪᏄ ᏗᎯᏍᏗᏱ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎨᏒᎢ. ᏓᏉᏃ ᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎬᏂᏳᏉ ᎦᏚ ᎦᎸᎶᎢ ᏓᏨᏅᎪᎥᏓᏁᎵ; ᏴᏫᏃ ᎠᏂᏄᎪᎨᏍᏗ ᎠᎴ ᎠᏄᏖᏍᎨᏍᏗ ᎤᏙᏓᏆᏛ ᎤᎾᎵᏍᏓᏴᏗ ᏂᏚᎩᏨᏂᏒᎢ, ᎾᏍᎩ ᎦᏥᎪᎵᏰᏗᏱ ᏗᎦᎬᎩᎧᎿᏩᏛᎡᏗ ᎨᏒ ᎠᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏗᎦᎬᎩᎧᎿᏩᏛᎡᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎯᎠᏃ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏑᏓᎵᏁ ᎢᎦ ᎤᎾᏛᏅᎢᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᏂᏲᎸᎯ; ᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏓᎪᏕᏍᏗ Ꮎ ᏂᏚᎩᏨᏂᏒ ᎠᏄᏖᏍᎬᎢ. ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᎯᎠ ᏂᏚᏂᏪᏎᎸ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ, ᎤᏒᎢ ᎿᏉ ᏓᏣᏙᎴᎰᏏ ᎾᏍᎩ ᏱᎰᏩ ᎢᏥᏈᏱ ᏂᏙᏓᏣᏘᎾᏫᏛᏛ ᎨᏒᎢ. ᏑᎾᎴᏃ ᎿᏉ ᏓᏥᎪᎯ ᏱᎰᏩ ᎤᏤᎵ ᏚᎸᏉᏗᏳ ᎨᏒᎢ; ᎠᏛᎩᏰᏃ ᏱᎰᏩ ᎪᎱᏍᏗ ᎡᏦᏎᎲ ᎡᏣᏡᏚᏍᎬᎢ; ᎠᏴᏃ ᎨᏒ ᎦᏙᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏥᏍᎩᏃᏎ ᏍᎩᎾᏡᏗᏍᎬᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ; [ᎾᏍᎩ ᏄᏍᏕᏍᏗ] ᎾᎯᏳ ᏱᎰᏩ ᎢᏥᏁᎸ ᎭᏫᏯ ᎢᏥᎩᏍᏗ ᎤᏒᎢ; ᏑᎾᎴᏃ ᎦᏚ ᎢᏦᎸᎯᏍᏗ ᎢᎦᎢ; ᏱᎰᏩᏰᏃ ᎠᏛᎩᎭ ᎪᎱᏍᏗ ᎡᏦᏎᎲᎢ ᎾᏍᎩ ᎡᏣᏗᏍᎬ ᎪᎱᏍᏗ ᏤᏦᏎᎭ; ᎠᏴᏃ ᎨᏒ ᎦᏙᎢ? ᎪᎱᏍᏗ ᎢᏣᏗᏍᎬ ᎥᏝ ᎠᏴ ᏱᏍᎩᏯᏡᏗᎭ, ᏱᎰᏩᏍᎩᏂ ᎡᏣᏡᏗᎭ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸ ᎡᎳᏂ, ᎯᎠ ᏂᎩᏪᎲ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ, ᎢᏥᎷᎩ ᎾᎥ ᎢᎬᏱᏗᏢ ᏱᎰᏩ ᏄᏛᏅᎢ ᎤᏛᎦᏅᏰᏃ ᎪᎱᏍᏗ ᎡᏦᏎᎲᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᎾᎯᏳ ᎡᎳᏂ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ ᏕᎦᏬᏁᏗᏍᎬ, ᎾᏍᎩ ᎢᎾᎨ ᎢᏗᏢ ᏫᏚᎾᎧᎿᏅ, ᎠᎴ ᎬᏂᏳᏉ, ᎦᎸᏉᏗᏳ ᏱᎰᏩ ᎤᏤᎵ ᎬᏂᎨᏒ ᏄᏍᏛᎩ ᎤᎶᎩᎸᎢ. ᏱᎰᏩᏃ ᎤᏁᏤᎸ ᎼᏏ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏆᏛᎦᏅ ᎪᎱᏍᏗ ᎠᎾᏗᏍᎬᎢ ᎢᏏᎵ ᏧᏪᏥ; ᏘᏬᏁᏓ, ᎯᎠ ᏂᎩᏪᏏ, ᎤᏒᎢ ᎭᏫᏯ ᏓᏥᎩ, ᏑᎾᎴᏃ ᏗᏦᎸᎯᏍᏗ ᎨᏎᏍᏗ ᎦᏚ; ᎠᎴ ᎢᏥᎦᏔᎮᏍᏗ ᎠᏴ ᏱᎰᏩ ᎢᏨᏯᏁᎳᏅᎯ ᎨᏒᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ; ᎾᏍᎩ ᎤᏒᎢ ᎤᏂᎷᏨᎩ ᎫᏇ ᎠᎴ ᎤᏄᏢᏔᏅ ᎠᏂᏅᎢ; ᏑᎾᎴᏃ ᎤᎯᏌᏛᎩ ᎤᏚᏫᏛ ᎠᏂᏅᎢ. ᎤᎯᏌᏛᏃ ᏚᎴᏅ ᎬᏂᏳᏉ ᎦᎳᎨᏴᎩ ᎢᎾᎨ ᎦᏙᎯ ᎦᏚᎢ ᎪᎱᏍᏗ ᎤᏍᏗ ᎦᏌᏆᎸᎢ ᎤᏯᏛᏅᏔ ᎢᎩᏛ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᎪᎲ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ, ᎦᏙ ᎯᎠ; ᎥᏝᏰᏃ ᏯᏂᎦᏔᎮ ᎢᏳᏍᏗ ᎨᏒᎢ. ᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᎦᏚ ᏱᎰᏩ ᏥᏥᏁᎸ ᎢᏥᎩᏍᏗ. ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏱᎰᏩ ᎤᏁᏨᎢ; ᎢᏧᏖᏍᏗᏱ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎢᎦᎢ ᎨᏥᎩᏍᏗ ᎨᏒᎢ; ᏑᏟᎶᏛ ᎠᎹ ᎠᏟᎶᏍᏗ ᎢᏥᏏᏴᏫᎭ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏂᏥᎥ ᏕᏣᏓᏘᎾᏩᏗᏒᎢ, ᎢᏥᎩᏒᎭ ᏂᏥᎥᎢ ᏕᏥᎵᏦᏛ ᎠᏂᏂ ᎤᎾᏤᎵᎦ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ, ᎤᏄᏖᏒᎩ, ᎢᎦᏛ ᎤᎪᏛᎩ, ᎢᎦᏛᏃ ᎦᏲᎵᎨ ᎨᏒᎩ. ᎿᏉᏃ ᎠᎹ ᎠᏟᎶᏍᏗ ᎤᎾᏟᎶᏍᏔᏅ, ᎾᏍᎩ ᎤᎪᏗᏗ ᎤᏭᏖᏛ ᎥᏝ ᏳᏘᏰᎴᎢ, ᎾᏃ ᎦᏲᎵ ᎤᏭᏖᏛ ᎥᏝ ᏳᎷᎶᏤᎴᎢ: ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎤᏄᏖᏒᎩ ᏰᎵ ᎬᏩᏂᎩᏍᏗ ᎨᏒᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏞᏍᏗ ᎩᎶ ᎤᎯᏴᎩ ᏑᎾᎴ ᎢᏴᏛ. ᎠᏎᏍᎩᏂᏃᏅ ᎥᏝ ᏱᎬᏩᏛᏓᏍᏓᏁᎴ ᎼᏏ; ᎢᎦᏛᏍᎩᏂ ᎤᏂᎯᏴᎩ ᏑᎾᎴ ᎢᏴᏛ, ᏥᏍᎪᏴᏃ ᏚᎾᏅᏅᎩ’ ᎠᎴ ᎠᏒᎩᏳ ᏄᎵᏍᏔᏅᎩ; ᎼᏏᏃ ᏚᎿᎸᏤᎸᎩ. ᏂᏚᎩᏨᏂᏒᏃ ᏑᎾᎴ ᎠᏄᏖᏍᎬᎩ, ᎠᏂᏏᏴᏫᎭ ᎢᎦᎢ ᎬᏩᏂᎩᏍᏗ ᎨᏒᎢ; ᏅᏙᏃ ᎠᏗᎴᎲᎯ ᎥᎬᎾᏬᏍᎬᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏑᏓᎵᏁ ᎢᎦ ᎤᏟ ᎢᎦᎢ ᎦᏚ ᎤᏄᏕᏒᎩ, ᏔᎵ ᎢᏳᏟᎶᏛ ᎠᏂᏏᏴᏫᎭᎢ, ᏂᎦᏛᏃ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎾᏍᎩ ᎤᎾᏓᏡᎬ ᎤᏂᎷᏨᎩ ᎠᎴ ᎬᏩᏃᏁᎸᎩ ᎼᏏ ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᏱᎰᏩ ᏥᏄᏪᏒ, ᏑᎾᎴᎢ ᎢᏣᏪᏐᎸᏍᏓᏁᏗᏱ ᏱᎰᏩ ᎦᎸᏉᏗᏳ ᎤᎾ ᏙᏓᏆᏍᎬᎢ: ᏗᏥᏚᎲᎦ ᎾᏍᎩ ᏗᏥᏚᏗ ᎨᏒᎢ, ᎠᎴ ᎢᏧᎲᎦ ᎾᏍᎩ ᎢᏧᏗ ᎨᏒᎢ; ᎾᏃ ᎤᏘᏴᎯ ᎢᏥᏍᏆᏂᎪᏓ ᏑᎾᎴ ᎬᏗᏍᎩ. ᎤᏂᏍᏆᏂᎪᏔᏅᎩᏃ ᏑᎾᎴ ᎬᏗᏍᎩ, ᎾᏍᎩᏯ ᎼᏏ ᏄᏪᏒᎢ, ᎥᏝᏃ ᏳᏒᏤᎢ, ᎠᎴ ᎥᏝ ᏥᏍᎪᏴ ᏯᏂᏯᎡᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎪᎯ ᎢᎦ ᎢᏥᎦ ᎾᏍᎩ; ᎪᎯᏰᏃ ᎢᎦ ᎤᎾᏙᏓᏆᏍᎬ ᏱᎰᏩ ᎤᏤᎵᎦ: ᎪᎯ ᎢᎦ ᎥᏝ ᏴᎨᏥᏩᏛ ᎢᎾᎨᎢ. ᏑᏓᎵ ᎢᎦ ᎢᏧᏖᏍᎨᏍᏗ, ᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎾᎯᏳ ᎥᏝ ᏱᎦᎳᎨᏰᏍᏗ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎢᎦᏛ ᏴᏫ ᎤᏂᏄᎪᏨᎩ ᎤᏄᏖᏒᏒᎩ ᎦᎵᏉᎩᏁ ᎢᎦ, ᎠᎴ ᏭᎾᏠᏨᎩ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᎢᏣᏉᏏᏍᎨᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ ᎠᎩᏁᏨ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏆᏤᎵᎦ. ᎬᏂᏳᏉ ᎾᏍᎩ ᏱᎰᏩ ᏥᏥᏁᎸ ᎤᎾᏤᏓᏆᏍᎬᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏁᎭ ᏑᏓᎵᏁ ᎢᎦ ᏔᎵ ᎢᎦ ᎢᏣᎵᏍᏓᏴᏗ: ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᏁᏣᏛᏁᏍᏗᏉ; ᏞᏍᏗ ᎩᎶ ᎤᏄᎪᏨᎩ ᎦᎵᏉᎩᏁ ᎢᎦ. ᎰᏩᏃ ᏴᏫ ᎠᎾᏣᏪᏐᎸᏍᏗᏍᎬᎩ ᎦᎵᏉᎩᏁ ᎢᎦ. ᎢᏏᎵᏃ ᎠᏂᎳᏍᏓᎸ ᎹᎾ ᏚᏃᎥᎩ ᎾᏍᎩ; ᎠᎴ ᎤᏁᎬ ᎨᏒᎩ ᎪᎵᎠᏂ ᎤᎦᏔ ᎾᏍᎩᏯᎢ; ᎠᎩᏍᏗᏱᏃ ᎾᏍᎩᏯ ᎨᏒᎩ ᏗᏌᎨ ᎦᏚ ᏩᏚᎵᏏ ᏗᏑᏱ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏱᎰᏩ ᎤᏁᏨᎢ, ᎯᎠ ᎢᏥᎧᎵᎢᏍᏓ ᎠᎹ ᎠᏟᎶᏍᏗ, ᎠᏍᏆᏂᎪᏙᏗ ᎢᏣᏓᏁᏟᏴᏏᏒ ᎢᏣᏤᎵᎦ; ᎾᏍᎩ ᎤᏂᎪᏩᏛᏗᏱ ᎦᏚ ᎾᏍᎩ ᎢᏨᏰᎳᏍᏔᏅ ᎢᎾᎨᎢ, ᎾᎯᏳ ᎢᏥᏈᏱ ᏥᏙᏓᏨᏯᏘᏅᏍᏔᏅᎩ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎡᎳᏂ, ᎠᏖᎵᏙ ᏫᎩ, ᎠᎴ ᎠᎹ ᎠᏟᎶᏍᏗ ᎠᎧᎵᎢ ᎹᎾ ᎾᎿ ᎯᎸᎦ, ᎠᎴ ᎯᏝᎲᎦ ᏱᎱᏩ ᏓᎧᏅᎢ, ᏗᏍᏆᏂᎪᏓᏁᏗ ᏂᎯ ᎢᏣᏓᏁᏟᏴᏏᏒᎢ. ᎾᏍᎩᏯᏃ ᏱᎰᏩ ᏄᏪᏎᎸ ᎼᏏ, ᎾᏍᎩ ᎡᎳᏂ ᏄᏛᏁᎸᎩ ᎤᏝᏅᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏓᏝᎥ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᎠᏍᏆᏂᎪᏙᏗ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎹᎾ ᎤᏂᎬᎩ ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ, ᎬᏂ ᏭᏂᎷᏨ ᎾᎿ ᎦᏓ ᎠᎲ ᎩᎶ ᏓᏂᏁᎸᎢ; ᎾᏍᎩ ᎤᏂᎬᎩ ᎹᎾ ᎬᏂ ᏭᏂᎷᏨ ᎠᏍᏛ ᎦᏙᎯ ᎨᎾᏂ ᎠᎲᎢ. ᎾᏍᎩ ᎯᎠ ᎠᎹ ᎠᏟᎶᏍᏗ, ᎢᏆ ᏧᏙᎢᏛ ᎠᏟᎶᏍᏗ ᎠᏍᎪᎯ ᎢᎦᏛᎯ ᏌᏉ ᎾᏍᎩ. ᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏂᎩᏒᎩ ᏏᏂ ᎢᎾᎨ ᎨᏒᎢ, ᏓᎾᏂᎩᏍᎬᎩ ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏁᏨ ᏱᎰᏩ; ᎵᏆᏗᎻᏃ ᏭᎾᏅᏅᎩ. ᏂᎦᏁᎲᎾᏃ ᎨᏒᎩ ᎠᎹ ᏴᏫ ᎤᎾᏗᏔᏍᏗ. ᏴᏫᏃ ᎬᏩᏍᎦᎬᎩ ᎼᏏ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏍᎩᏁᎲᏏ ᎠᎹ ᎣᎦᏗᏔᏍᏗ. ᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎦᏙᏃ ᎠᏴ ᎢᏍᎩᏍᎦᎦ? ᎦᏙᏃ ᏱᎰᏩ ᎢᎡᏥᎪᎵᏰᎭ? ᎾᎿᏃ ᏴᏫ ᏚᏂᏔᏕᎦᏅᎩ ᎠᎹ; ᎠᎴ ᏴᏫ ᎪᎱᏍᏗ ᎬᏬᏎᎸᎩ ᎬᏩᏡᏔᏅᎩ ᎼᏏ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙᏃ ᎢᏥᏈᏱ ᏙᏗᏍᎩᏯᏘᏅᏍᏔᏅ ᏗᏍᎩᎢᏍᏗᏱ ᎠᎹ ᏙᎩᏔᏕᎩᏍᎬᎢ, ᎠᎴ ᏦᎨᏥ, ᎠᎴ ᎣᎩᎾᏝᎾᎥᎢ? ᎼᏏᏃ ᎤᎵᏍᏓᏁᎸᎩ ᏱᎰᏩ, ᎯᎠ ᏄᏪᏒᎩ, ᎦᏙ ᏓᎦᏥᏴᏁᎵ ᎯᎠ ᏴᏫ? ᎠᎴᏉ ᏅᏯ ᏂᏗᎬᎦᏂᏍᏗᎭ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎢᎬᏱ ᏂᎩᏰᏅᏏ ᏴᏫ, ᎠᎴ ᏔᏘᏄᎦ ᎢᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎠᎴ ᏣᏙᎳᏅᏍᏗ ᎯᏄᎦ, ᎾᏍᎩ ᎡᏉᏂ ᏨᎾᏍᏗᏍᎬᎩ, ᎠᎴ ᎮᎾ. ᎬᏂᏳᏉ, ᎢᎬᏱᏢ ᏥᏙᎨᏍᏗ ᎭᎢᏒ ᎾᎿ ᏅᏲᎯ ᎰᎵᏈᏱ, ᏅᏲᎯᏃ ᏛᏂᎵ, ᎾᎿᏃ ᏓᎦᏄᎪᏥ ᎠᎹ, ᏴᏫᏃ ᎠᎾᏗᏔᏍᎨᏍᏗ. ᎼᏏᏃ ᎾᏍᎩ ᏄᏛᏁᎸᎩ ᎠᏂᎦᏔᎲ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ. ᎾᎿᏃ ᎹᏌ ᎠᎴ ᎺᎵᏆ ᏚᏬᎥᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᏰᎯᎶᎥ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᎪᎵᏰᎥ ᏱᎰᏩ, ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᏱᎰᏩᏍᎪ ᎢᎨᎳᏗᏙᎭ, ᏝᎨ? ᎾᎯᏳᏃ ᎠᎹᎴᎩ ᎤᏂᎷᏨᎩ ᎠᎴ ᎤᎾᎵᎸᎩ ᏆᏏᎵ ᎵᏆᏗᎻ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏦᏑᏫ, ᏗᏍᎩᏯᏑᏰᏏ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎢᏤᎾ, ᏫᏣᎵᎦ ᎠᎹᎴᎩ; ᎤᎩᏨᏅ ᎠᏴ ᎦᏚᏏ ᏓᎦᎴᏂ, ᏥᏁᎡᏍᏗ ᎠᏙᎳᏅᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎰᏩᏃ ᏦᏑᏫ ᎼᏏ ᏄᏪᏎᎸ ᎾᏍᎩᏯ ᏄᏛᏁᎸᎩ, ᎠᎴ ᎤᎾᎵᎸᎩ ᎠᎹᎴᎩ; ᎼᏏᏃ, ᎡᎳᏂ ᎠᎴ ᎭᎵ, ᎤᏂᎿᎷᏒᎩ ᎣᏓᎸᎢ, ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎼᏏ ᎤᏌᎳᏛ ᎤᏬᏰᏂ ᎢᎪᎯᏛ ᎢᏏᎵ ᎠᎾᏓᏎᎪᎩᏍᎬᎩ; ᎢᎪᎯᏛᏃ ᎡᎳᏗ ᏄᏩᏅ ᎤᏬᏰᏂ, ᎠᎹᎴᎩ ᎠᎾᏓᏎᎪᎩᏍᎬᎩ. ᎠᏎᏃ ᎼᏏ ᏧᏬᏰᏂ ᏗᎦᎨᏗᏳ ᎨᏒᎩ; ᏅᏯᏃ ᏭᏂᎩᏒᎩ, ᎠᎴ ᎭᏫᏂᏗᏢ ᎤᏂᏅᎩ, ᎾᎿᏃ ᎤᏪᏅᎩ; ᎡᎳᏂᏃ ᎠᎴ ᎭᎵ ᎣᏂᏌᎳᏛᎩ ᏧᏬᏰᏂ, ᎠᏏᏴᏫ ᎠᏂᏗᏢ; ᏧᏬᏰᏂᏃ ᏂᏕᎬᏩᏍᏛᎩ ᎬᏂ ᏅᏙ ᏭᏕᎵᏨ. ᏦᏑᏫᏃ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ ᏚᏎᎪᎩᏒ ᎠᎹᎴᎩ, ᎠᎴ ᏧᏤᎵ ᏴᏫ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸ ᎼᏏ, ᎰᏪᎸᎦ ᎯᎠ ᎪᏪᎵᎯ ᎠᏅᏓᏗᏍᏗ ᎨᏎᏍᏗ, ᏦᏑᏫᏃ ᎯᏯᏛᎪᏔᏅᎭ; ᏓᏥᏛᏔᏂᏰᏃ ᎠᎦᏚᏅᏓᏗᏍᏙᏗ ᎨᏒ ᎠᎹᎴᎩ ᎠᏂ ᎦᎸᎶ ᎭᏫᏂᏗᏢ. ᎼᏏᏃ ᎤᏁᏍᎨᎲᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎯᎠ ᏄᏍᏛ ᏚᏬᎥᎩ; ᏱᎰᏩᏂᏏ. ᎯᎠᏰᏃ ᏄᏪᏒᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᎰᏩ ᎤᏎᎵᏔᏅ ᎯᎠ ᏄᏪᏒᎢ, ᏱᎰᏩ ᏓᏂᏓᎿᏫᏰᏍᏗ ᎠᎹᎴᎩ ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏏᏒ ᎾᏍᎩ. ᏥᎶᏃ, ᎠᏥᎸᎨᎶᎯ ᎻᏗᏂ ᎡᎯ, ᎼᏏ ᎤᏖᏥ, ᎤᏛᎦᏅᎩ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏂᎦᏛᏁᎸ ᎼᏏ, ᎠᎴ ᎢᏏᎵ ᏧᏤᎵ ᏴᏫ, ᎾᏍᎩ ᏱᎰᏩ ᎢᏏᎵ ᎢᏥᏈᏱ ᏙᏧᏘᏅᏍᏔᏅᎢ. ᎿᏉᏃ ᏥᎶ ᎼᏏ ᎤᎿᏥ ᎤᏯᏅᎲᎩ ᏥᏉᎳ ᎼᏏ ᎤᏓᎵᎢ, ᎾᏍᎩ ᎦᏳᎳ ᏄᏨᏍᏔᏃᎢ; ᎠᏂᏔᎵᏃ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎠᏏᏴᏫ ᎦᏐᎻ ᏚᏙᎥᎩ; ᎯᎠᏰᏃ ᏄᏪᏒᎩ, ᎨᏙᎯ ᎨᏒᎩ ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ. ᏐᎢᏃ ᎢᎵᎡᏌ ᏚᏙᎥᎩ, ᎤᏁᎳᏅᎯᏰᏃ ᎠᎩᎦᏴᎵᎨ ᎤᏤᎵᎦ ᎠᎩᏍᏕᎵᏍᎩ ᎨᏒᎩ, ᎠᎴ ᎠᏊᏓᎴᏒᎩ ᏇᎵᏲ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎦᏁᎲ, ᎤᏛᏅᎩ. ᏥᎶᏃ ᎼᏏ ᎤᎿᏥ ᎼᏏ ᎤᎷᏤᎸᎩ ᎢᎾᎨᎢ, ᎠᎴ ᏧᏪᏥ ᎠᎴ ᎤᏓᎵᎢ, ᎾᎿ ᎠᏂᏅ ᎣᏓᎸ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ: ᎯᎠᏃ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎠᏴ ᏥᎶ ᏣᎿᏥ, ᎬᎷᏥᏏ, ᎣᏤᎭ ᏣᏓᎵᎢ, ᎠᎴ ᏗᏤᏥ ᎠᏂᏔᎵ. ᎼᏏᏃ ᎤᏪᏅᏒᎩ ᏚᏠᏒᏒᎩ ᎤᎿᏥ, ᎠᎴ ᎡᎳᏗ ᏄᏛᏁᎸᎩ, ᎠᎴ ᎤᏚᏣᎳᏅᎩ; ᏚᎾᏓᏛᏛᏅᏃ ᏙᎯᏱ ᏄᎾᏛᎿᏕᎬᎢ; ᎦᎵᏦᏛᏃ ᏭᏂᏴᎸᎩ. ᎼᏏᏃ ᎤᏃᏁᎸᎩ ᎤᎿᏥ ᏂᎦᏛ ᏱᎰᏩ ᏄᏩᏁᎸ ᏇᎵᏲ ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᎢᏏᎵ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎢ, ᎠᎴ ᏂᎦᎥ ᎤᏕᏯᎠᏙᏗ ᎤᏂᎷᏤᎸ ᏗᎾᎢᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏱᎰᏩ ᏚᏭᏓᎴᏒᎢ. ᏥᎶᏃ ᎤᎵᎮᎵᏨᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏂᎦᎥ ᎣᏍᏛ ᏱᎰᏩ ᏂᏚᏛᏁᎸ ᎢᏏᎵ, ᎾᏍᎩ ᏥᏚᏭᏓᎴᏂ ᎠᏍᏓᏯ ᏂᎬᏩᏅᎿᏕᎬ ᎢᏥᏈᏱ ᎠᏁᎯ. Ꮵ’ᎶᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏱᎰᏩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎢᏧᏓᎴᏛ ᏥᎩ ᎠᏍᏓᏯ ᏥᏂᎨᏨᎿᏕᎬ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᎠᏍᏓᏯ ᏥᏂᏨᏕᎬ ᏇᎵᏲ; ᎾᏍᎩ ᏧᏭᏓᎴᏛ ᏥᎩ ᏴᏫ ᎠᏍᏓᏯ ᏥᏂᎬᏩᏅᎿᏕᎬ ᎢᏥᏈᏱ ᎠᏁᎯ. ᎿᏉ ᏥᎦᏔᎭ ᏱᎰᏩ ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎡᏍᎦᏉ ᎾᏂᎥ ᎤᎾᏁᎳᏅᎯ; ᎾᎿᏰᏃ ᎤᎾᏢᏉᏗ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎾᏍᎩ ᏚᏓᎵᏁᎯᏕᎸ. Ꮵ’ᎶᏃ ᎼᏏ ᎤᎿᏥ ᎠᏥᎸᎨᎳᏍᏗ ᎠᎴ ᏗᎵᏍᎪᎸᏓᏁᏗ ᎤᏁᎳᏅᎯ ᏚᎩᏒᎩ: ᎡᎳᏂᏃ ᎤᎷᏨᎩ, ᎠᎴ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎤᏂᎩᏍᏗᏱ ᎦᏚ ᎢᏧᎳᎭ ᎼᏏ ᎤᎿᏥ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᏭᎩᏨᏅ, ᎾᏍᎩ ᎼᏏ ᎤᏪᏅᎩ ᏧᏭᎪᏁᏗᏱ ᏴᏫ; ᏴᏫᏃ ᎤᎾᎴᎿᏫᏍᏛᎩ ᎼᏏ ᎤᏬᎸ ᏑᎾᎴ ᎤᏓᎴᏅᏛ ᎤᏒ ᎬᏗᏍᎩ. ᎼᏏᏃ ᎤᎿᏥ ᎤᎪᎲ ᏂᎦᎥ ᏂᏓᏛᏁᎲ ᏴᎾ, ᎯᎠ ᏄᏪᏒᎩ, ᎦᏙ ᎯᎠ ᏥᏂᎩᏯᏛᏁᎭ ᏴᏫ? ᎦᏙᏃ ᏨᏒᏉ ᎢᏦᎳ, ᏂᎦᏛᏃ ᏴᏫ ᎤᎾᎴᎿᏫᏍᏗ ᏦᎸ ᎾᎥᎢ, ᏑᎾᎴ ᎤᏓᎴᏅᏛ ᎤᏒ ᎬᏗᏍᎩ? ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎤᎿᏥ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎬᎩᎷᏤᎲ ᏴᏫ ᎤᏂᎨᏛᎲᏍᎬ ᎤᏁᎳᏅᎯ ᏄᏪᏒᎢ. ᎪᎱᏍᏗ ᎠᏰᎢᎵᏓᏍᏗ ᏧᏂᎨᎢ, ᎠᏴ ᎬᎩᎷᏤᎰᎢ; ᎠᏴᏃ ᏕᎦᏥᏳᎪᏓᏁᎰᎢ; ᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎰ ᎤᏁᎳᏅᎯ ᎤᏁᏨ, ᎠᎴ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ. ᎼᏏᏃ ᎤᎿᏥ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎾᏍᎩ ᏥᎿᏛᏁᎭ ᎥᏝ ᎣᏏᏨ ᏱᎩ. ᏙᏓᏣᏯᏪᏥᏉ, ᏨᏒ ᎠᎴ ᎯᎠ ᏴᏫ ᏥᏣᎵᎪᏩᏕᎦ; ᎦᎨᏗᏳᏰᏃ ᏨᏒ ᏗᏣᎸᏫᏍᏓᏁᏗᏱ; ᎥᏝ ᏰᎵ ᎾᏍᎩ ᏱᏂᏍᏓᏴ ᏗᏣᎸᏫᏍᏗᏁᏗᏱ ᏨᏒ ᎨᏒᎢ. ᎭᏛᏓᏍᏓᎾᏗ ᎠᏴ ᏥᏁᎬᎢ, ᏓᎬᏰᏲᏂ, ᎤᏁᎳᏅᎯᏃ ᏙᏓᏣᎧᎾᏩᏗᏙᎵ; ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᎩᏯᎴᏁᎯ ᎨᏎᏍᏗ ᏴᏫ, ᎾᏍᎩ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏫᏲᎮᏗ ᎨᏎᏍᏗ. ᎩᏰᏲᏗᏃ ᎨᏎᏍᏗ ᎤᎵᏁᏨ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᎩᏯᏎᎮᏗ ᎾᎿ ᎤᏂᎶᎯᏍᏗᏱ ᎨᏒᎢ, ᎠᎴ ᏄᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎴ ᎾᏍᏉ ᏔᏑᏰᏍᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏴᏫ ᏄᎾᏛᏅ, ᎠᏂᏍᎦᏯ ᎠᏂᎦᏔᎿᎢ, ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎩ, ᎠᏂᏍᎦᏯ ᏚᏳᎪᏛ ᎠᏂᏁᎩ, ᎠᏂᏂᏆᏘᎯ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏕᎯᏁᏤᎮᏍᏗ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏂᏕᎲᏁᎮᏍᏗ ᏌᏉ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎢ, ᎠᎴ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯᏧᏈ ᎾᏂᎥᎢ, ᎤᏂᎬᏫᏳᏌᏕᎩ ᎯᏍᎦᏍᎪᎯ ᎾᏂᎥᎢ, ᎠᎴ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯ ᎾᏂᎥᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏓᏄᎪᏓᏁᎮᏍᏗ ᏴᏫ ᏂᎪᎯᎸᎢ; ᎠᎴ ᎯᎠ ᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎵᏍᎨᏛ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒᎢ, ᏂᎯ ᎨᏣᏲᎮᏗ ᎨᏎᏍᏗ; ᎤᏍᏗᏉᏍᎩᏂ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎾᏍᎩ ᏓᏄᎪᏗᏍᎨᏍᏗ; ᎾᏍᎩᏃ ᎤᏓᏌᎧᎯᎨ ᏂᏣᎵᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏗᏍᏗᏍᎨᏍᏗ ᏣᎵᏐᏈᏖᎸᎢ. ᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᏱᏂᏣᏛᏁᎸ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏱᏂᏣᏪᏎᎸ, ᎿᏉ ᎾᏍᎩ ᏰᎵ ᏱᏅᏂᎠ ᏂᎯ, ᎠᎴ ᏂᎦᏛ ᎯᎠ ᏴᏫ ᎾᏍᏉ ᎤᎾᏤᎵᎪᎯ ᏅᏩᏙᎯᏯᏛ ᏭᏂᎶᎯᏍᏗ ᎨᏎᏍᏗ. ᎼᏏᏃ ᎤᏛᏓᏍᏓᏁᎸᎩ ᎧᏁᎬ ᎤᎿᏥ, ᎠᎴ ᏂᎦᎥ ᏄᏪᏒ ᏄᏛᏁᎸᎩ. ᎼᏏᏃ ᏚᏑᏰᏒᎩ ᎠᏂᎦᏔᎿᎢ ᎠᏂᏍᎦᏯ ᏂᎬᎾᏛ ᎢᏏᎵᏱ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏂᏚᏩᏁᎸᎩ ᏴᏫ ᎠᏁᎲᎢ, ᏄᏂᎬᏫᏳᏌᏕᎩ ᏂᏚᏩᏁᎸᎩ ᏌᏉ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎢ, ᏄᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯᏧᏈ ᎾᏂᎥᎢ, ᏄᏂᎬᏫᏳᏌᏕᎩ ᎯᏍᎦᏍᎪᎯ ᎾᏂᎥᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯ ᎾᏂᎥᎢ. ᎠᎴ ᎾᏍᎩ ᏓᏄᎪᏓᏁᎲᎩ ᏴᏫ ᏂᎪᎯᎸᎢ; ᎪᎱᏍᏗ ᎠᏍᏓᏯ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎼᏏ ᎠᏂᏲᎮᎲᎩ; ᏂᎦᎥᏃ ᎤᏍᏗ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎤᏅᏒᏉ ᏓᏄᎪᏗᏍᎬᎩ ᎼᏏᏃ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎸᎩ ᎥᎤᏪᏅᏍᏗᏱ ᎤᎿᏥ; ᎤᏪᏅᏒᎩᏃ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᏭᎶᏒᎩ. ᏦᎢᏁ ᏅᏙᎯ, ᏅᏓᎬᏩᎾᏂᎩᏛ ᎢᏏᎵ ᏧᏪᏥᎢᏥᏈᏱ ᎤᎾᏤᎵᎪᎯ, ᎾᎯᏳ ᎢᎦ ᎤᏂᎷᏨᎩ ᎢᎾᎨ ᎨᏒ ᏌᎾᏱ. ᎵᏆᏗᎻᏰᏃ ᎤᎾᏂᎩᏛ ᎨᏒᎩ, ᎢᎾᎨᏃ ᎨᏒ ᏌᎾᏱ ᏭᏂᎷᏨᎩ, ᎠᎴ ᏭᎾᏅᏅᎩ ᎢᎾᎨᎢ; ᎠᎴ ᎾᎿ ᎢᏏᎵ ᎠᏂᏅᎩ ᎣᏓᎸ ᎢᎬᏱᏗᏢ. ᎼᏏᏃ ᎤᏁᎳᏅᎯ ᏤᏙᎲ ᏭᎶᏒᎩ, ᏱᎰᏩᏃ ᏓᏳᏯᏅᎲᎩ ᎣᏓᎸᎢ, ᎯᎠ ᏅᏓᏳᏪᏒᎩ, ᎯᎠ ᏂᎩᏪᏏ ᏤᎦᏈ ᎤᏂᏠᏱ ᎨᏒᎢ, ᎠᎴ ᎯᎠ ᏂᎩᏪᏏ ᎢᏏᎵ ᏧᏪᏥ: ᎢᏥᎪᎲ ᎢᏥᏡᏱ ᎠᏁᎯ ᏂᎦᏥᏴᏁᎸᎢ, ᎠᎴ ᏕᏨᏂᏙᎸ ᎠᏬᎭᎵ ᏗᎧᏃᎨᏂ, ᎠᎴ ᏕᏨᏯᏘᏃᎸ ᎠᏕᏒ ᎾᏆᏛᏅᎢ. ᎾᏍᎩᏃ ᎢᏳ ᎤᏙᎯᏳᎯᏯ ᏱᏣᏛᏓᏍᏔᏅ ᏥᏁᎬᎢ, ᎠᎴ ᏱᏥᏍᏆᏂᎪᏔᏅ ᎠᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎿᏉ ᎦᎸᏉᏗ ᏧᎬᏩᎶᏗ ᎨᏎᏍᏗ ᏕᏨᏯᎦᏂᏍᎬᎢ, ᎡᏍᎦᏉ ᎾᏂᎥ ᏴᏫ; ᏂᎬᎾᏛᏰᏃ ᎡᎶᎯ ᎠᏆᏤᎵᎦ. ᎠᎴ ᏗᏆᏤᎵ ᏅᏓᏣᎵᏍᏔᏂ ᎢᏥᎬᏫᏳᎯ ᎠᏥᎸᎢᏤᎶᎯ, ᎠᎴ ᎡᏥᎸᏉᏔᏅᎯ ᎢᏣᏓᏤᎵᏛ. ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎧᏃᎮᏛ ᎩᏃᎮᎮᏗ ᏥᎩ ᎢᏏᎵ ᏧᏪᏥ. ᎼᏏᏃ ᎤᎷᏨᎩ, ᎠᎴ ᏫᏚᏯᏅᎲᎩ ᏧᎾᏛᏐᏅᎯ ᏴᏫ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ ᏂᎦᏛ ᎯᎠ ᎧᏃᎮᏛ ᏱᎰᏩ ᎤᏁᏤᎸᎯ. ᏂᎦᏛᏃ ᏴᏫ ᎤᎴᏃᏅᎯ ᎤᏂᏁᏨᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᏂᎦᏛ ᏱᎰᏩ ᏃᎩᏪᏎᎸ ᎾᏍᎩ ᏅᏓᏲᏣᏛᏁᎵ. ᎼᏏᏃ ᏄᏂᏪᏒ ᏴᏫ ᏭᏃᏁᎸᎩ ᏱᎰᏩ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ. ᎬᏂᏳᏉ, ᏓᎬᎷᏤᎵ, ᏥᏯᎡᏍᏗ ᎤᎭᎨᏛ ᎤᎶᎩᎸᎢ, ᎾᏍᎩ ᏴᏫ ᎤᎾᏛᎪᏗᏱ ᎬᏬᏁᏔᏅᎭ, ᎠᎴ ᎾᏍᏉ ᎨᏦᎯᏳᏗᏱ ᏂᎩᎯᎸᎢ. ᎼᏏᏃ ᏄᏂᏪᏒ ᏴᏫ ᏱᎰᏩ ᏭᏃᏁᎸᎩ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎮᎾ ᏴᏫ ᏗᏁᏙᎲᎢ, ᎠᎴ ᏫᎩᏯᏛᏅᎢᏍᏓ ᎪᎯ ᎢᎦ, ᎠᎴ ᏑᎾᎴᎢ, ᎠᎴ ᏫᏓᏅᎩᎶᏨ ᏧᎾᏄᏬᎢ, ᎠᎴ ᎤᎾᏛᏅᎢᏍᏘᏌᏛ ᎨᏎᏍᏗ ᏦᎢᏁ ᎢᎦ ᎠᏍᏆᎸᎲᎭ; ᏦᎢᏁᏰᏃ ᎢᎦ ᏱᎰᏩ ᏛᎩᎸᏂᎵ ᏂᎦᏛ ᏴᏫ ᏓᏂᎧᏅ ᏌᎾᏱ. ᎠᎴ ᎩᏯᏟᎶᎡᎸᎭ ᎬᏩᏚᏫᏛ ᏴᏫ ᎤᏁᏓᏍᏗᏱ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᎢᏣᏓᏯᏫᏍᎨᏍᏗ ᎢᏨᏒ, ᎾᏍᎩ ᏞᏍᏗ ᎢᏥᎿᎷᏒᎩ ᎣᏓᎢᎸᎢ, ᎠᎴ ᏞᏍᏗ ᎠᎦᏐᎠᏍᎬ ᎢᏣᏒᏂᎸᎩ; ᎩᎶ ᎠᏒᏂᎮᏍᏗ ᎠᏎ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ; ᎾᏍᏉ ᎩᎶ ᎤᏬᏰᏂ ᎤᏒᏂᏍᏙᏗ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏎ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎬᏩᎶᏒᎯ ᎠᏥᏲᏍᏗ ᎨᏎᏍᏗ, ᎦᎾᏜᎢᏉ ᎾᏍᏉ ᎨᏎᏍᏗ, ᎠᎴ ᏴᏫ ᎨᏎᏍᏗ, ᎠᏎ ᏞᏍᏗ ᏱᎬᏁᏍᏗ; ᎠᏤᎷᎯᏍᏗ ᎤᏃᏴᎳᏒᎭ, ᎣᏓᎸ ᎤᏂᎷᎯᏍᏗ ᎨᏎᏍᏗ. ᎼᏏᏃ ᎤᎦᏐᎠᏒᎩ ᎣᏓᎵ ᏴᏫ ᏗᏁᏙᎲ ᏭᎷᏨᎩ, ᎠᎴ ᏚᏛᏅᎢᏍᏔᏅᎩ ᏴᏫ, ᎠᎴ ᏚᏅᎩᎶᎥᎩ ᏧᎾᏄᏬᎢ. ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᎢᏣᏛᏅᎢᏍᏗᏌᏛ ᎨᏎᏍᏗ ᏦᎢᏁ ᎢᎦ ᎠᎵᏰᎢᎶᎸᎭ: ᏞᏍᏗ ᎠᎨᏴ ᎾᎥ ᎡᏥᎷᏤᎸᎭ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᏦᎢᏁ ᎢᎦ ᏑᎾᎴᎢ, ᎤᏴᏓᏆᎶᎥᎩ, ᎠᎴ ᎤᎾᎦᎸᎲᎩ, ᎠᎴ ᎤᎭᎨᏛ ᎤᎶᎩᎳᏛᎩ ᎣᏓᎸᎢ, ᎠᎴ ᎠᏤᎷᎩ ᎤᏣᏔᏅᎯ ᎠᏍᏓᏱᏳ ᎤᏃᏴᎳᏒᎩ, ᏂᎦᏛᏰᏃ ᏴᏫ ᏂᎬᎾᏛ ᎠᏂᏅ ᏚᏂᎾᎶᎩ. ᎼᏏᏃ ᎠᏂᏅ ᏚᏄᎪᏫᏒᎩ ᏴᏫ ᎤᏁᎳᏅᎯ ᏚᎾᏠᏒᏒᎩ;: ᎠᎦᏐᎠᏏᎯᎲᏃ ᎣᏓᎸ ᎤᎾᎴᎿᏫᏍᏔᏅᎩ. ᏌᎾᏱᏃ ᎣᏓᎸ ᏂᎬ ᏚᎦᏒᏍᏛᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏱᎰᏩ ᎤᎩᎸᏂᎸᎢ ᎠᏥᎸ ᎤᏄᏬᏍᏛᎢ: ᏧᎦᏒᏍᏗᏃ ᎠᎵᏌᎳᏗᏍᎬᎩ ᏔᎷᎩᏍᎩ ᎬᎾᏬᏙᏗᏱ ᏥᏚᎦᏒᏍᏙ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏂᎬᏃ ᎣᏓᎸ ᎤᏣᏔᏅᎯ ᎤᎵᏖᎸᏅᎩ. ᎿᏉᏃ ᎠᏤᎷᎩ ᎪᎯᏗᏳ ᎤᏃᏴᎳᏒ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎠᏍᏓᏱᏳ ᏂᎦᎵᏍᏗᏍᎬᎢ, ᎼᏏ ᎤᏁᏨᎩ, ᎤᏁᎳᏅᎯᏃ ᏓᏳᏁᏤᎸᎩ ᏰᎵ ᎬᏛᎪᏗ ᎨᏒᎢ. ᏱᎰᏩᏃ ᎤᏠᎠᏒᎩ ᎣᏓᎸ ᏌᎾᏱ ᎤᎩᎸᏂᎸᎩ ᎣᏓᎸ ᎦᎸᎳᏗ; ᏱᎰᏩᏃ ᏓᏳᏯᏅᎲᎩ ᎼᏏ ᎣᏓᎸ ᎦᎸᎳᏗ: ᎼᏏᏃ ᎤᎿᎷᏒᎩ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎭᏠᎠᎯ, ᏫᏖᏯᏔᎲᎦ ᏴᏫ, ᏯᏂᎦᏛᎴᎯᏰᏃ ᏱᎰᏩ ᎡᏙᎲ ᎤᎾᎦᏙᏍᏙᏗᏱ, ᎠᎴ ᎤᏂᏣᏘ ᏱᏓᏂᏲᎱᎯ. ᎠᎴ ᎾᏍᏉ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏱᎰᏩ ᎾᎥ ᎠᏂᎷᏤᎯ, ᏩᎾᏓᏅᎦᎸ, ᏱᎰᏩᏰᏃ ᏯᎦᏛᎴᎯ ᎠᏁᏙᎲᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏱᎰᏩ, ᎥᏝ ᏰᎵ ᎣᏓᎸ ᏌᎾᏱ ᏴᎬᏂᎷᎩ ᏴᏫ; ᏨᏍᎩᏁᏤᎸᏰᏃ, ᎯᎠ ᏥᏅᏣᏪᏒᎩ, ᎢᏣᏟᎶᎢᏛ ᎣᏓᎸ ᎬᏩᎦᏫᏛ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏨᎦ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎮᎾ, ᎭᏠᎠᎯ; ᎠᎴ ᏔᎩᎳᏩᏒᎭ ᏂᎯ, ᎠᎴ ᎡᎳᏂ ᎢᏍᏕᎮᏍᏗ; ᎠᏥᎸᏍᎩᏂᎠᏁᎶᎯ ᎠᎴ ᏴᏫ ᏞᏍᏗ ᎤᏂᎦᏛᎴᏒᎭ ᎤᏂᎿᎷᏒᎭ ᏭᏄᎷᏤᏗᏱ ᏱᎰᏩ, ᎾᏍᎩᏰᏃ ᏯᎦᏛᎴᎯ ᎠᏁᏙᎲᎢ. ᎰᏩᏃ ᎼᏏ ᎤᎦᏐᎠᏏᎸᎩ ᏴᏫ ᎠᏁᏙᎲᎢ, ᎠᎴ ᏚᏬᏁᏔᏅᎩ. ᎤᏁᎳᏅᎯᏃ ᏂᎦᏛ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎠᏴ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᏣᏄᎪᏫᏒᎯ, ᏗᎨᏥᎾᏝᎢ ᏙᏗᏂᏁᎸᎢ. ᏞᏍᏗ ᏅᏩᎾᏓᎴ ᎤᎾᏁᎳᏅᎯ ᏗᏣᏰᎸᎯ ᎢᎬᏱᏢ ᎠᏆᎧᏛ ᏱᏗᏣᎧᏁᏍᏗ. ᏞᏍᏗ ᎪᎱᏍᏗ ᏨᏒ ᏣᏓᏙᏢᎾᏁᎸᎩ, ᏗᏟᎶᏍᏔᏅᎯ ᎪᎱᏍᏗ ᎦᎸᎶᎢ ᎡᎯ, ᎠᎴ ᏗᏟᎶᏍᏔᏅᎯ ᎪᎱᏍᏗ ᎡᎶᎯ ᎡᎯ, ᎠᎴ ᏗᏟᎶᏍᏔᏅᎯ ᎪᎱᏍᏗ ᎠᎹᏱ ᎡᎯ ᎦᏙᎯ. ᎡᎳᏗᏢ. ᏞᏍᏗ ᎡᎳᏗ ᏱᏂᎩᏯᏛᏁᎴᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏱᎩᏯᏓᏙᎵᏍᏓᏁᎴᏍᏗ: ᎠᏴᏰᏃ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎠᏆᏛᏳᎩᏍᏗᏳ ᎠᏆᏁᎳᏅᎯ, ᎠᏂᎦᏴᎵᎨ ᎤᏂᏍᏚᏅᏨᎢ ᏅᏓᏕᎵᏍᏙᏗᏍᎩ ᏗᏥᎩᎵᏲᎢᏍᏗᏍᎩ ᏧᏁᏥ ᎬᎩᏯᎦᎩ, ᏦᎢ, ᎠᎴ ᏅᎩ ᎢᏳᎾᏓᏁᏟᏴᏛ ᏩᏍᏗ; ᏗᏥᏙᎵᎩᏃ ᎤᏣᏔᏅᎯ ᎢᏳᎾᏓᏁᏟᏴᏛ ᎬᎩᎨᏳᎯ ᎠᎴ ᎠᎩᏁᏍᏆᏂᎪᏗᏍᎩ. ᏞᏇᏗ ᎠᏎᏉᏉ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᏕᎤᏙᎥᎢ. ᎥᏝᏰᏃ ᏱᎰᏩ ᏄᏍᏕᏅᏨᎾ ᏴᎬᏰᎸᎾ ᎠᏎᏉ ᏕᏅᏙᎥ ᎧᏁᎱᏍᏗᏍᎩ. ᏣᏅᏖᏍᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ ᎢᎦ, ᏣᎸᏉ ᏙᏗᏱ. ᏑᏓᎵ ᎢᎦ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᏂᎦᏛ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎿᏛᏁᎮᏍᏗ: ᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ ᎤᎾ ᏙᏓᏆᏍᎬᎢ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏤᎵᎦ: ᏞᏍᏗ ᎪᎱᏍᏗ ᏗᏣᎸᏫᏍᏓᏁᎸᎩ ᎾᎯᏳᎢ, ᏨᏒ, ᎠᎴ ᎠᏍᎦᏯ ᏤᏥ, ᎠᎴ ᎠᎨᏴ ᏤᏥ, ᎠᎴ ᎠᏍᎦᏯ ᎯᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎯᏅᏏᏓᏍᏗ, ᎠᎴ ᎦᎾᏝᎢ ᏣᏤᎵᎦ, ᎠᎴ ᎯᏁᎸ ᎡᏙᎯ: ᏱᎰᏩᏰᏃ ᏑᏓᎵ ᎢᎦ ᏚᏱᎵᏙᎴ ᏚᏬᏢᏁ ᏚᎸᎶᎢ ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᏂᏚᏛ ᎾᎿ ᏣᏁᎭ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎤᏯᏪᏐᎴᎢ: ᎾᏍᎩ ᎢᏳᏍᏗ ᏱᎰᏩ ᎣᏍᏛ ᎤᏁᏤᎴ ᎤᎾ ᏙᏓᏆᏍᎬ ᎢᎦ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎴᎢ. ᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ, ᎾᏍᎩ ᎪᎯᏗᏳ ᏣᎴᏂᏓᏍᏗᏱ ᎦᏙᎯ ᎾᏍᎩ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᏥᏣᏁᎭ. ᏞᏍᏗ ᏣᏓᎸᎩ. ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ. ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ. ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ ᎯᏯᏡᏔᏅᎩ ᎾᎥ ᎢᏗᏍᏓᏓᎳ. ᏞᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎦᏁᎸᎢ ᎯᏯᏚᎸᎡᎸᎩ, ᏞᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎤᏓᎵᎢ ᎯᏯᏚᎸᎡᎸᎩ, ᎠᎴ ᏞᏍᏗ ᎤᏅᏏᏓᏍᏗ ᎠᏍᎦᏯ, ᎠᎴ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ, ᎠᎴ ᎤᏤᎵ ᏩᎦ, ᎠᎴ ᎤᏤᎵ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎤᏤᎵᎦ. ᏂᎦᏛᏃ ᏴᏫ ᎤᎾᏙᎴᎰᏒᎩ ᎤᏍᏆᏃᏴᎬᎢ, ᎠᎴ ᎠᏓᏪᎵᎩᏍᎬᎢ, ᎠᎴ ᎠᏤᎷᎩ ᎤᏃᏴᎬᎢ, ᎠᎴ ᎣᏓᎸ ᏚᎦᏒᏍᏛᎢ: ᎤᏂᎪᎲᏃ ᏴᏫ ᎤᎾᏓᏅᏒᎩ, ᎠᎴ Ꭸ ᎢᏴᏛ ᏓᏳᎾᎴᎿᏫᏍᏔᏅᎩ. ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᎼᏏ, ᏂᎯ ᏍᎩᏬᏁᏓ, ᏓᏲᏣᏛᏓᏍᏔᏂᏃ: ᎤᏁᎳᏅᎯᏍᎩᏂ ᏞᏍᏗ ᎣᎩᏬᏁᏔᏅᎩ, ᏱᏙᏥᏲᎢᎱᎯᏰᏃ. ᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᎤᏁᎳᏅᎯᏰᏃ ᎢᏥᎪᎵᏰᎢᎸ, ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᎨᏒ ᎤᏤᎵᎦ ᎢᎬᏱᏢ ᏕᏣᎧᏛ ᎢᏳᎵᏍᏔᏂᏓᏍᏗᏱ; ᎾᏍᎩᏃ ᎢᏥᏍᎦᏅᎢᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ. ᏴᏫᏃ Ꭸ ᎢᏴᏛ ᏓᏳᎾᎴᎿᏫᏍᏛᎩ; ᎼᏏᏃ ᎾᎥ ᎤᎷᏨᎩ ᎤᎭᎨᏛ ᎤᎵᏏᎬ ᎾᎿ ᎤᏁᎳᏅᎯ ᎡᏙᎲᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ ᎢᏏᎵ ᏧᏪᏥ, ᎢᏥᎪᎲ ᎦᎸᎳᏗ ᎢᏴᏛ ᏗᏨᏬᏁᏔᏅᎢ. ᎥᏞᏍᏗ ᎠᏕᎸ ᎤᏁᎬ ᏗᏦᏢᏙᏗ ᏱᎨᏎᏍᏗ ᎤᎾᏁᎳᏅᎯ, ᎠᎴ ᎥᏞᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏣᏓᏙᏢᎾᏁᏙᏗ ᏱᎨᏎᏍᏗ ᎤᎾᏁᎳᏅᎯ. ᎠᏥᎸᎨᎳᏍᏗᏱ ᎦᏓ ᏍᎩᏲᏢᎾᏁᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᎠᎵᏍᎪᎸᏙᏗ, ᎠᏫ ᏗᏣᏤᎵᎦ, ᎠᎴ ᏩᎦ ᏗᏣᏤᎵᎦ. ᏂᎦᎥᎢ ᎾᎿ ᎠᏅᏓᏗᏍᏗ ᏂᎬᏁᎮᏍᏗ ᏓᏆᏙᎥᎢ, ᎾᎿ ᎬᎷᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎢᎬᏯᏛᏁᏗ ᎨᏎᏍᏗ. ᎢᏳ ᎠᎴ ᏅᏯ ᎢᏍᎩᏲᏢᎾᏁᏓᏁᎸ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᏞᏍᏗ ᏗᏲᎪᎳᏅᎯ ᏅᏯ ᎢᏣᏁᏍᎨᏙᏗ ᏱᎨᏎᏍᏗ; ᎦᏅᏆᎶᏍᏗᏰᏃ ᎾᎿ ᎢᎯᏱᏗᎸᎭ ᎦᏓᎭ ᏅᏛᏁᎵ. ᎥᏝ ᎠᎴ ᎠᎩᎳᏫᏍᏗᏱ ᏣᎩᎳᏫᏍᏗ ᎨᏎᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏆᏤᎵᎦ: ᏣᏲᏓᎬᏰᏃ ᎨᏒ ᏯᏂᎪᏩᏛ ᎾᏍᎩᏃ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎩᏴᏁᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎠᎫᏏ ᎯᏅᏏᏓᏍᏗ ᎢᎯᏩᏒᎭ, ᏑᏓᎵ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎤᏛᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎾᏥᎾᏝᎥᎾ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎪᎱᏍᏗ ᏄᎫᏴᎲᎾ. ᎢᏳᏃ ᎤᏩᏒᏉ ᎤᎷᏨᎯ ᏱᎩ, ᎤᏩᏒᏉ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᎤᏓᎵ ᏱᎩ, ᎿᏉ ᎤᏓᎵᎢ ᎤᏂᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎤᎾᏝᎢ ᏳᏪᎧᏁᎸ ᎤᏓᎵᎢ, ᎾᏍᎩᏃ ᏱᏚᎾᏄᎪᏫᏎᎸ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ;: ᎠᎨᏴ ᎠᎴ ᏧᏪᏥ ᎤᏓᎾᏝᎢ ᏧᏤᎵ ᎨᏎᏍᏗ, ᎤᏩᏒᏉᏃ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ. ᎠᏥᎾᏝᎢᏃ ᎬᏂᎨᏒ ᎢᏳ ᎯᎠ ᏱᏄᏪᏒ, ᎠᎩᎾᏝᎢ ᏥᎨᏳᎠ, ᎠᏆᏓᎵᎢ, ᎠᎴ ᏗᏇᏥ; ᎥᏝ ᏅᎩᎾᏝᎥᎾ ᏴᎦᏥᏄᎪᎢ: ᎿᏉ ᎾᏍᎩ ᎤᎾᏝᎢ ᎤᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯᏱ; ᎠᎴ ᎾᏍᏉ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎦᏯᎸ ᎤᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ; ᎤᎾᏝᎢᏃ ᏴᎩ ᎬᏗ ᎤᏔᎴᏎᏗ ᎨᏎᏍᏗ ᎦᎴᏂ,; ᏂᎪᎯᎸᏃ ᎠᏥᎾᏢᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᎤᏪᏥ ᎠᎨᏴ ᏳᎾᏗᏅ, ᎠᏥᎾᏝᎢ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝ ᎠᏂᏍᎦᏯ ᏗᎨᏥᎾᏝᎢ ᎠᏂᏄᎪᎬ ᎾᏍᎩᏯ ᎬᏩᏄᎪᎢᏍᏗ ᏱᎨᏎᏍᏗ. ᎢᏳᏃ ᎣᏏᏳ ᏄᏰᎸᏒᎾ ᏱᎩ ᎤᎾᏝᎢ, ᎾᏍᎩ ᎤᏓᏴᏍᏗᏱ ᎤᏁᏨᎢ, ᎿᏉ ᎤᏁᎳᎩ ᎤᏪᎵᏍᏗ ᎨᏎᏍᏗ ᎠᎦᎫᏴᏗᏱ; ᏅᏩᎾᏓᎴᏍᎩᏂ ᏴᏫ ᎥᏝ ᏳᎮᏍᏗ ᏧᏪᎧᏁᏗᏱ, ᎤᎶᎾᏍᏔᏅᎢ ᎢᏳᏍᏗ. ᎢᏳ ᎠᎴ ᎠᏍᎦᏯ ᎤᏪᏥ ᎤᏓᏴᏍᏗᏱ ᎤᏁᏨᎯ ᏱᎩ, ᎠᏂᎨᏴ ᎨᎦᏅᎩ ᎢᎨᎦᏛᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᎢᏳᏛᏁᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᏅᏩᏓᎴ ᎠᏓᏰᎨᏍᏗ, ᎤᎵᏍᏓᏴᏗ, ᏧᏄᏬᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᏛᏤᎲ, ᎥᏝ ᎤᎪᎳᏕᏗ ᏱᎨᏎᏍᏗ. ᎢᏳᏃ ᎾᏍᎩ ᏦᎢ ᎢᏳᏓᎴᎩ ᏄᏛᏁᎸᎾ ᏱᎩ, ᎿᏉ ᎠᏎᏉ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏄᎫᏴᏔᏅᎾ. ᎩᎶ ᏴᏫ ᎢᎬᏂᎮᏍᏗ ᎾᏍᎩᏃ ᎠᏲᎢᏍᎨᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎠᏎ ᎾᏍᎩ ᏄᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᏱᏚᏲᎯᏎᎸ; ᎿᏉ ᏓᎬᏯᏎᎮᎵ ᏭᎶᎯᏍᏗᏱ ᎤᎵᏘᏍᏗᏱ. ᎢᏳᏍᎩᏂ ᎩᎶ ᎠᏎ ᎤᏚᎸᏛ ᎨᏒ ᏕᎦᎶᏄᎮᏛ ᏳᏩᏔᏅ ᎾᎥ ᎢᏧᎾᏓᎳ ᏳᎸ, ᎯᏯᎧᎲᏍᏗ ᎨᏎᏍᏗ ᎠᏆᏤᎵ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗᏱ. ᎠᎴ ᎩᎶ ᎤᏙᏓ, ᎠᎴ ᎤᏥ ᎢᎬᏂᎮᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎩᎶᎢ ᎠᏍᎦᏯ ᎢᎦᏃᏍᎩᏍᎨᏍᏗ, ᎠᎴ ᎢᎦᎾᏕᎨᏍᏗ, ᎠᎴ ᎤᏪᎧᎲᏉ ᎠᏥᏩᏛᎡᎮᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎩᎶᎢ ᎤᏙᏓ ᎠᎴ ᎣᏥ ᏓᏍᎩᏅᏗᏍᎨᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎢᏳ ᎠᎴ ᎠᏂᏍᎦᏯ ᎠᎾᎵᎲᎢ ᎠᏏᏴᏫ ᏐᎢ ᏅᏯ ᏳᏩᏂᏍᏔᏅ, ᎠᎴ ᎠᏍᏈᏅᏉ ᏳᏩᏔᏅ, ᏄᏲᏴᏒᎾᏃ ᏱᎩ, ᏳᏂᏏᏅᏉᏍᎩᏂ; ᎢᏳᏃ ᏳᏗᏛᎲ, ᎠᎴ ᏙᏱ ᎤᏪᏙᎸ ᏳᏙᎳᏅᏂᏙᎸ, ᎿᏉ ᎾᏍᎩ ᎤᏩᏂᎸᎯ ᎤᏚᏓᎴᏛ ᎨᏎᏍᏗ; ᎤᎫᏴᎡᏗᏍᎩᏂᏃᏅ ᎨᏎᏍᏗ ᎢᎪᎯᏛ ᎤᏲᎱᏎᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗ ᎨᏎᏍᏗ ᎣᏍᏛ ᎠᏥᏅᏬᏗᏱ. ᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᎦᎾᏍᏓ ᏳᏩᏂᏍᏔᏅ ᎠᏍᎦᏯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎾᎯᏳᏉ ᏳᏲᎱᏒ, ᎠᏎ ᎠᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ. ᎢᏳᏍᎩᏂᏃᏅ ᏔᎵᎭ ᏧᏒᎯᏛ ᏱᎬᏅ, ᎥᏝ ᎠᏥᏍᏛᏗᏍᏙᏗ ᏱᎨᏎᏍᏗ; ᎠᏕᎸᏰᏃ ᏧᏤᎵ ᎾᏍᎩ. ᎢᏳᏃ ᎠᏂᏍᎦᏯ ᏳᎾᎵᎸ, ᎠᎴ ᎪᎱᏍᏗ ᏳᏅᏁᎸ ᎠᎨᏴ ᎦᏁᎵᏛ, ᎾᏍᎩᏃ ᎦᏁᎵᏒ ᏳᏲᎱᏎᎸ; ᎪᎱᏍᏗᏃ ᎤᏐᏅ ᏫᏄᎵᏰᎢᎶᎸᎾ ᏱᎩ; ᎠᏎ ᎤᎫᏴᏗ ᎨᏎᏍᏗ, ᎯᎠᏉ ᎢᎦᎢ ᏳᏛᏅ ᎠᎨᏴ ᎤᏰᎯ; ᎠᎴ ᎤᎫᏴᏗ ᎨᏎᏍᏗ ᏗᏄᎪᏗᏍᎩᏱ. ᎢᏳᏃ ᎪᎱᏍᏗ ᎤᏐᏅ ᏫᏳᎵᏰᎢᎶᎸ, ᎿᏉ ᎾᏍᎩ ᎬᏅᎢ ᎬᏅ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ. ᎠᎦᏔ, ᎠᎦᏔ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎧᏳᎦ, ᎧᏳᎦ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎤᏬᏰᏂᏃ ᎤᏬᏰᏂ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎤᎳᏏᏕᏂᏃ ᎤᎳᏏᏕᏂ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎤᎴᏴᏒᏃ ᎤᎴᏴᏒ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎠᏥᏐᏅᏅ ᎠᏥᏐᏅᏅ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎠᏥᎵᎥᏂᎸ, ᎠᏥᎵᎥᏂᎸ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎤᏅᏏᏓᏍᏗ ᎠᏍᎦᏯ ᎠᎦᏙᎵ ᎢᎬᏂᎮᏍᏗ, ᎠᎴ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ ᎠᎦᏙᎵ ᎢᎬᏂᎮᏍᏗ, ᎾᏍᎩᏃ ᎠᏲᎨᏍᏗ; ᎾᏍᎩ ᎤᏪᎪᏗ ᎨᏎᏍᏗ ᎠᎦᏙᎵ ᎠᎫᏱᏍᎨᏍᏗ. ᎢᏳ ᎠᎴ ᎠᏍᎦᏯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏳᏄᏕᏍᏔᏅ; ᎤᏪᎪᏗ ᎨᏎᏍᏗ ᎦᏄᏙᎬ ᎠᎫᏱᏍᎨᏍᏗ. ᎢᏳᏃ ᏩᎦ ᏱᏚᏪᏘᎸ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ, ᎾᏍᎩᏃ ᏳᏲᎱᏒ; ᎿᏉ ᎾᏍᎩ ᏩᎦ ᎠᏎ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ, ᎤᏫᏯᏃ ᎥᏝ ᎠᎩᏍᏗ ᏱᎨᏎᏍᏗ; ᎤᎾᏝᎢᏃ ᏩᎦ ᎤᏚᏓᎴᏛ ᎨᏎᏍᏗ. ᎢᏳᏍᎩᏂ ᏩᎦ ᏗᎬᏩᏓᏘᏍᏗ ᏱᎩ ᏧᏩᎫᏔᏅᏒᎢ, ᎠᎴ ᎠᏥᏃᏁᎸᎯ ᏱᎩ ᎤᎾᏲᎢ, ᎠᎴ ᎤᎬᏔᏅᎯᏉ ᏂᎨᏒᎾ ᏱᎩ, ᎠᏍᎦᏯᏃ ᎠᎴ ᎠᎨᏴ ᎤᎸᎯ ᏱᎩ: ᏩᎦ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎾᏝᎢ ᎾᏍᏉ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎠᎫᏴᏙᏗ ᏳᎾᏎᎸ, ᎿᏉ ᎤᎫᏴᏗ ᎨᏎᏍᏗ ᎢᎦᎢ ᎤᎾᏎᎸ ᎬᏅ ᎫᏓᎴᏍᎬᎢ. ᎾᏍᏉ ᎩᎶ ᎤᏪᏥ ᎠᏧᏣ ᎠᎴ ᎠᎮᏳᏣ ᏧᏪᏘᎸᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎯᎠ ᏚᏚᎪᏔᏅ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᏩᎦ ᏱᏚᏪᏘᎸ ᎠᏍᎦᏯ ᎠᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎠᏥᏅᏏᏓᏍᏗ; ᎿᏉ ᏦᎠᏍᎪᎯ ᎠᏰᎵᎠᏕᎸ ᏧᏁᏗ ᎨᏎᏍᏗ ᎤᎾᏝᎢ, ᏩᎦᏃ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᏳᏍᏚᎢᏒ ᎠᏔᎴᏒᎢ, ᎢᏳ ᎠᎴ ᎩᎶ ᏳᏍᎪᏒ ᎠᏔᎴᏒᎢ, ᏄᏭᏢᏅᎾᏃ ᏱᎩ, ᏩᎦᏃ ᎠᎴ ᏐᏈᎵ ᏗᎦᎵᎠᏅᎯᏛ ᏳᏂᎸᏨ ᎾᎿᏂ; ᎾᏍᎩ ᎠᏔᎴᏒ ᎤᏤᎵᎦ ᎤᎫᏴᏗ ᎨᏎᏍᏗ, ᎠᏕᎸ ᏧᏁᏗ ᎨᏎᏍᏗ ᎤᎾᏝᎢ: ᎤᎵᏬᏨᎯᏃ ᎤᏤᎵ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎤᏤᎵ ᏩᎦ, ᏅᏩᏓᎴ ᎤᏤᎵ ᏩᎦ ᏱᏚᏪᏘᎸ, ᏳᎵᏬᏨᏃ, ᎿᏉ ᎬᏃᏛ ᏩᎦ ᎤᏂᎾᏗᏅᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎬᏩᎳᏅᎯ ᎠᏕᎸ ᏔᎵ ᎢᏳᏂᏗᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᎵᏬᏨᎯ ᏩᎦ ᎾᏍᏉ ᏔᎵ ᎢᏳᏂᏗᏍᏗ ᎨᏎᏍᏗ. ᎢᏳᏍᎩᏂ ᏳᎾᏅᏔ ᏗᎬᏩᏓᏘᏍᏗ ᎨᏒ ᏩᎦ ᏧᏩᎫᏔᏅᏒᎢ, ᎠᎴ ᎤᎾᏝᎢ ᏄᏴᏔᏅᎾ ᏱᎩ; ᎠᏎ ᏩᎦ ᎤᎫᏴᏙᏗ ᎨᏎᏍᏗ ᏩᎦ, ᎤᎵᏬᏨᎯᏃ ᎤᏤᎵ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎠᎴ ᎠᏫ ᏳᏃᏍᎩᏒ, ᎠᎴ ᏳᎸ, ᎠᎴ ᏳᎾᏗᏅ; ᎯᏍᎩ ᏩᎦ ᏧᏪᎪᏗ ᎨᏎᏍᏗ ᏌᏉ ᏩᎦ ᎠᎫᏱᏍᎬᎢ: ᎠᎴ ᏅᎩ ᎠᏫ ᏧᏪᏎᏗ ᎨᏎᏍᏗ ᏌᏉ ᎠᏫ ᎠᎫᏱᏍᎬᎢ. ᎢᏳᏃ ᎦᏃᏍᎩᏍᎩ ᏯᏥᏩᏛᏔᏅ ᎠᏓᏴᏎᎲᎢ, ᏍᎬᏂᎸᏃ ᎠᎴ ᏳᏲᎱᏒ, ᎥᏝ ᎩᎬ [ᎠᏨᏗ ᏱᎨᏎᏍᏗ] ᎾᏍᎩ ᎠᏥᏍᏛᏗᏍᏗᏍᎬᎢ. ᎢᏳᏍᎩᏂ ᏴᏧᎧᎸᏨ, ᎩᎳ ᎾᏍᎩ ᏱᎾᎬᏁᎸ, ᎩᎬ [ᎠᏨᏗ ᎨᏎᏍᏗ] ᎾᏍᎩ ᎠᏥᏍᏛᏗᏍᏗᏍᎬᎢ: ᎠᎧᎵᎢᏰᏃ ᎤᎫᏴᎰᎲᏍᏗ ᏱᎩ; ᎢᏳᏃ ᎪᎱᏍᏗ ᏄᎲᎾ ᏱᎩ, ᎿᏉ ᎠᏥᎾᏗᏅᏗ ᎨᏎᏍᏗ ᎤᏍᏛᏗᏍᎬ ᎤᏃᏍᎩᏒᎢ. ᎢᏳᏃ ᎪᎱᏍᏗ ᎤᏃᏍᎩᏛ ᎤᏙᎯᏳ ᎯᏯ ᏳᏂᏩᏛᎲ ᎤᏪᎧᎲᎢ ᎬᏃᏛ, ᏩᎦ, ᎠᎴ ᏗᎦᎵᎠᏅᎯᏛ ᏐᏈᎵ, ᎠᎴ ᎠᏫ ᏱᎾᎩ, ᎿᏉ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᎫᏴᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᏱᏄᏩᏂᏌᏅ ᏠᎨᏏ ᎠᎴ ᏖᎸᎳᏗ ᏓᏫᏒ ᎦᎾᏝᎢ ᎤᎾᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᏳᏴᏔᏅ ᎤᏤᎵ ᎦᎾᏝᎢ, ᎾᏍᎩ ᎤᎵᏍᏓᏴᏗᏱ ᎤᏩᏓᎴ ᎤᎶᎨᏒᎢ; ᎣᏌᏂ ᎤᏩᏒ ᎤᎶᎨᏒ ᎠᎩᏛ, ᎠᎴ ᎣᏌᏂ ᎤᏩᏒ ᏖᎸᎳᏗ ᏚᏫᏒ ᎠᎩᏛ ᎤᎫᏴᏙᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᏳᎵᏨ, ᎠᎴ ᏥᏍᏚᏂᎩᏍᏗᏱ ᏳᏥᏠᏨ, ᎾᏍᎩᏃ ᎤᏣᎴᏍᏗ ᏕᎦᎧᎲ, ᎠᎴ ᎤᏰᎬᏉ, ᎠᎴ ᏠᎨᏏ ᏳᎪᏅ; ᎿᏉ ᎾᏍᎩ ᎤᎴᎾᏅᎯ ᎠᏎ ᎤᎫᏴᎰᎲᏍᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎾᎥ ᎢᏧᎾᏓᎳ ᎠᏕᎸ ᎠᎴ ᎪᎱᏍᏗᏉ ᏳᎨᏅᏛ, ᎾᏍᎩᏃ ᎾᎿ ᎦᏁᎸ ᏯᏥᏃᏍᎩᏒ; ᎢᏳᏃ ᎦᏃᏍᎩᏍᎩ ᏯᏥᏩᏛᎲ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᎫᏴᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎦᏃᏍᎩᏍᎩ ᎾᏥᏩᏛᎲᎾ ᏱᎩ, ᎿᏉ ᎾᏍᎩ ᎦᏁᎳ ᎤᏁᎳᏅᎯᏱ ᎠᎦᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ, ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎪᎱᏍᏗ ᏄᏩᏁᎸᎾ ᎨᏒ ᏧᎬᏩᎶᏗ ᎾᎥ ᎢᏧᎾᏓᎳ ᎤᏤᎵᎦ. ᏄᏓᎴᏒᏰᏃ ᏗᏓᏍᎦᏅᏤᏗ ᎨᏒᎢ, ᎢᏳ ᎾᏍᏉ ᏩᎦ ᏱᎩ, ᎠᎴ ᏐᏈᎵ ᏗᎦᎵᎠᏅᎯᏛ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏗᏄᏬ, ᎠᎴ ᏄᏓᎴᏒᏉ ᎤᏓᏲᎱᏎᎯ; ᎾᏍᎩ ᎩᎶ ᎠᏆᏤᎵᎦ ᏯᏗᎭ, ᎾᏍᎩ ᎠᎾᏗᏒᎯᎲ ᎤᏁᎳᏅᎯ ᎤᏂᏲᎮᏗ ᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯᏃ ᎾᏍᎩ ᎤᏍᎦᏅᏨᎯ ᏱᏚᏭᎪᏔᏅ, ᎾᏍᎩ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎾᎥ ᎢᏧᎾᏓᎳ. ᎢᏳᏃ ᎩᎶ ᎾᎥ ᎢᏧᎾᏓᎳ ᏐᏈᎵ ᏗᎦᎵᎠᏅᎯᏛ, ᎠᎴ ᏩᎦ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏂᎦᎥᏉ ᎦᎾᏝᎢ ᏳᎨᏅᏛ; ᎾᏍᎩᏃ ᏳᎵᏬᏨ, ᎠᎴ ᏯᏥᎸ, ᎠᎴ ᏯᎦᏗᏝᎥᏔᏅ, ᎩᎶᏃ ᏄᎪᎲᎾ ᏱᎩ; ᎿᏉ ᎾᏍᎩ ᎠᏎᎵᏙᏗ ᎨᏒ ᏱᎰᏩ ᎤᏤᎵᎦ ᎤᏅᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏄᏩᏁᎸᎾ ᎨᏒ ᏧᎬᏩᎶᏗ ᎾᎥ ᎢᏧᎾᏓᎳ ᎤᏤᎵᎦ, ᏧᎬᏩᎶᏗᏃ ᎤᏤᎵᎦ ᏧᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏎᎵᏔᏅᎢ, ᎾᏍᎩᏃ ᏐᎢ ᎥᏝ ᎤᎫᏴᏗᏱ ᎨᏎᏍᏗ. ᎢᏳᏃ ᏯᏥᏃᏍᎩᎡᎸ ᎤᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎤᎾᏝᎢ ᎾᏍᎩ. ᎢᏳᏃ ᏯᏥᏓᎦᎸᎢᏒ, ᎿᏉ ᎤᏃᎯᏍᏗ ᎨᏎᏍᏗ ᎧᏃᎲᏍᎩ ᎢᏳᎵᏍᏙᏗ, ᎾᏍᎩᏃ ᎥᏝ ᎤᎫᏴᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏥᏓᎦᎸᎢᏒᎯ. ᎢᏳ ᎠᎴ ᎩᎶ ᎪᎱᏍᏗ ᏳᏙᎸᎡᎸ ᎾᎥ ᎢᏳᎾᏓᎳ, ᏯᏥᎸᏃ, ᎠᎴ ᏳᎵᏬᏨ, ᎤᎾᏝᎢᏃ ᎤᎦᏔᎲᎾ ᏱᎩ, ᎠᏎ ᎤᎩᏴᏗ ᎨᏎᏍᏗ. ᎢᏳᏍᎩᏂ ᎤᎾᏝᎢ ᏯᎦᏔᎭ, ᎥᏝ ᎤᎫᏴᏗ ᏱᎨᏎᏍᏗ; ᎢᏳᏃ ᎤᎫᏴᏗ ᏱᎩ ᎤᏙᎳᏒᎢ, ᎤᏙᎳᏒᏉ ᎤᎫᏴᏗ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᏳᏂᎳᏕᎸ ᎠᏛ ᎩᎶ ᏂᏚᎾᏓᏁᎸᎾ ᏧᎾᏨᏍᏗᏱ, ᎠᎴ ᏱᏚᎾᏄᏏᏅ, ᎿᏉ ᎠᏎ ᎤᏩᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏓᎵᎢ ᎢᏳᎵᏍᏙᏗᏱ. ᎢᏳᏃ ᎤᏙᏓ ᎤᎵᏂᎩᏛ ᏳᎨᏳᎲᏍᎦ ᎤᏪᎧᏁᏗᏱ, ᎤᎫᏴᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᎢᎦᎢ ᎨᎦᎫᏴᏗ ᎨᏒ ᎠᎾᏛ. ᏞᏍᏗ ᎤᏁᎳᎩ ᎬᏁᏍᏗ ᏤᎵᏍᏗ ᏱᎨᏎᏍᏗ ᎠᎨᏴ ᎠᏙᏂᏍᎩ. ᎩᎶ ᎦᎾᏝᎢ ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ. ᎩᎶ ᏅᏩᏓᎴ ᎤᏁᎳᏅᎯ ᎠᏥᎸ ᎢᎨᎴᎮᏍᏗ, ᏱᎰᏩᏉ ᎤᏩᏒ, ᎾᏍᎩ ᎠᏎ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ. ᏞᏍᏗ ᏱᏯᏕᏯᏙᏗᏍᎨᏍᏗ ᎠᎴ ᎠᎩᎵᏯ ᏱᏂᏴᎾᏕᎨᏍᏗ ᎡᏙᎯ; ᏂᎯᏰᏃ ᎢᏤᏙᎯᏉ ᎨᏒᎩ ᎢᏥᏡᏱ. ᏞᏍᏗ ᎠᎩᎵᏯ ᏱᏁᏨᎾᏕᎨᏍᏗ ᎩᎶ ᎤᏬᏑᎶᏨᎯ, ᎠᎴ ᎤᏓᏂᏯᏛ. ᎢᏳᏃ ᎢᎯᎩᎵᏲᎢᏍᏔᏅᎭ ᏂᎦᎥᏉ ᎢᎦᎯᏴᏁᏗ ᎨᏒᎢ, ᎠᏴᏃ ᎠᏆᎵᏍᏓᏁᎸᎭ, ᎠᏎ ᏥᏯᏛᎦᏁᏗ ᎨᏎᏍᏗ ᎤᎵᏍᏛᎢ: ᎠᎩᏔᎳᏬᏍᎬᏃ ᎤᏗᎴᎲᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏨᎢᏍᏗ ᎨᏎᏍᏗ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ: ᏗᏣᏓᎵᎢᏃ ᏧᏃᏑᎶᏨᎯ ᎨᏎᏍᏗ, ᏗᏤᏥᏃ ᎤᎾᏓᏂᏯᏛ. ᎢᏳᏃ ᎠᏕᎸ ᏕᎯᏯᏙᎳᏍᏗᏍᎨᏍᏗ ᎩᎶ ᏗᏆᏤᎵ ᎨᏒ ᏴᏫ ᎾᎥ ᎢᏣᏓᎳ, ᎤᏲ ᎢᏳᏛᎿᏕᎩ, ᎥᏞᏍᏗ ᎧᏁᏉᎩ ᎠᏕᎸ ᏗᏓᏙᎳᏍᏗᏍᎩ ᏥᎩ ᎢᏣᏍᏗ ᏱᎨᏎᏍᏗ, ᎥᏞᏍᏗ ᎧᏁᏉᎩ ᎤᎫᏴᏗ ᎢᎯᏴᏁᏗ ᏱᎨᏎᏍᏗ. ᎢᏳᏃ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎤᏄᏬ ᏱᏣᎦᏘᏗᏍᏓᏁᎸ, ᎠᏎ ᏅᏙᏉ ᏭᏕᎵᎨᏍᏗ ᎯᏅᏁᏗ ᎢᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎤᏩᏒᎯᏳ ᎤᏄᏬᏍᏗ; : ᎤᏁᎦᎸ ᎤᏄᏬᏍᏗ; ᎦᏙ ᏛᏚᏢᏔᏂ ᎦᎸᏅᎭ? ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎠᏆᎵᏍᏓᏁᎸ ᏓᎦᏛᎦᏂ;ᎠᏆᏓᏙᎵᏣᏘᏨᏰᏃ. ᎥᏞᏍᏗ ᏱᏐᏢᏍᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏞᏍᏗ ᎯᏍᎩᏅᏛᎩ ᏄᎬᏫᏳᏌᏕᎩ ᏗᏣᏤᎵ ᏴᏫ ᎤᎾᏤᎵᎦ. ᎥᏞᏍᏗ ᏣᏙᎯᏗᏍᏗ ᏱᎨᏎᏍᏗ ᏣᎵᏍᎪᎸᏙᏗᏱ ᎢᎬᏱ ᏨᏂᏎᎸᎯ ᏣᏛᎯᏎᎸᏅᎢ, ᎠᎴ ᏣᏤᎵ ᎦᏨᏩᏍᏔᏅᎯ ᎨᏒᎢ; ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᎨᏒ ᎢᎬᏱ ᎡᎯ ᏍᎩᎧᏁᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏛᏁᏗ ᎨᏎᏍᏗ ᏩᎦ, ᎠᎴ ᎠᏫ, ᎦᎵᏉᎩ ᎢᎦ ᎤᏥ ᎤᏍᏓᏩᏗᏓᏍᏗ ᎨᏎᏍᏗ; ᏧᏁᎵᏁᏃ ᎢᎦ ᏍᎩᎧᏁᏗ ᎨᏎᏍᏗ. ᎢᏣᏓᏓᎴᎢ ᏗᏆᏤᎵ ᎢᏥᏍᎦᏯ ᎨᏎᏍᏗ; ᎥᏝ ᎢᏥᎩᏍᏗ ᏱᎨᏎᏍᏗ ᎤᏫᏯ ᎪᎱᏍᏗ ᎤᏂᎸᎯ ᎢᎾᎨᎢ; ᎩᎵ ᏗᏣᏗᏁᏗ ᎨᏎᏍᏗ. ᏞᏍᏗ ᎦᏰᎪᎩ ᎧᏃᎮᏛ ᏣᏃᎮᎸᎩ; ᏞᏍᏗ ᎠᏍᎦᎾ ᎯᏯᎵᎪᏁᎸᎩ, ᏂᏚᏳᎪᏛᎾ ᎯᏃᎮᏍᎩ ᎢᏣᎵᏍᏙᏗᏱ. ᏞᏍᏗ ᎤᏂᏣᏘ ᏘᏍᏓᏩᏛᏒᎩ ᎤᏲ ᏗᏣᎸᏫᏍᏓᏁᏗᏱ; ᏞᏍᏗ ᎠᎴ ᎯᏬᏂᏍᎬ ᏣᎪᎸᏒᎩ ᏘᏍᏓᏩᏛᏒᎩ ᎤᏂᏣᏘ ᏗᎫᎪᏙᏗᏱ ᎯᏲᏍᏙᏗᏍᎬᎢ. ᏞᏍᏗ ᎠᎴ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎠᏍᎦᏯ ᎯᎸᏉᏔᏅᎩ ᏄᏍᏛ ᎠᏓᏰᎢᎵ ᏙᎲᎢ. ᎢᏳᏃ ᏣᏍᎦᎩ ᎤᏤᎵ ᏩᎦ ᎠᎴ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎤᎵᏘᏏᏗᏒ ᏱᏗᏯᏠᏒ, ᎠᏎ ᎯᏯᏘᏃᎮᏗ ᎢᎨᏎᏍᏗ. ᎢᏳᏃ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᏣᏍᎦᎩ ᎤᏤᎵᎦ ᏱᎪᎥ ᏱᎦᏅ ᎬᏩᎵᏐᏈᎵ, ᎠᎴ ᏂᏣᏚᎵᏍᎬᎾ ᏱᎩ ᎯᏍᏕᎸᏗᏱ; ᎠᏎ ᎯᏍᏕᎸᏗ ᎨᏎᏍᏗ. ᎥᏞᏍᏗ ᎯᎪᎸᎡᏗ ᏱᎨᏎᏍᏗ ᏓᎫᎪᏓᏁᎲ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏣᏤᎵᎦ, ᎾᏍᎩ ᏓᎵᏰᎢᎵ ᏙᎲᎢ. ᎢᏅᎯᏳ ᏂᏣᏛᎿᏕᎨᏍᏗ . ᎪᎱᏍᏗ ᎦᏰᎪᎩ ᎠᎵᏰᎢᎵᏙᎲᎢᎶᏫ ᏄᏍᎦᏅᏨᎾᏃ ᎠᎴ ᎤᏓᏅᏘ ᏞᏍᏗ ᏗᏥᎸᎩ; ᎥᏝᏰᏃ ᏴᎦᏥᏳᏓᎳᎩ ᎤᏍᎦᏅᏨᎯ. ᎥᏝ ᎠᎴ ᏗᏣᏓᏂᎸᎢᏍᏗ ᏱᎨᏎᏍᏗ ᎪᎱᏍᏗ ᎡᏣᏁᎲᎢ; ᎠᏓᏁᏗᏰᏃ ᏚᏂᎨᏫᏗᎭ ᎠᏂᎪᏩᏘᏍᎩ, ᎠᎴ ᏓᎴᎾᏍᏗ ᎠᏂᏟᏂᏩᎬ ᏚᏳᎪᏛ ᎢᏯᎾᏛᏁᎯ. ᎠᎴ ᎾᏍᏉ ᎡᏙᎯ ᏞᏍᏗ ᎠᏍᏓᏯ ᏱᏁᏨᎾᏕᎨᏍᏗ; ᎢᏥᎦᏔᎭᏰᏃ ᏄᏍᏛ ᎤᏓᏅᏛ ᎡᏙᎯ, ᎢᏤᏙᎯᏰᏃ ᎾᏍᏉ ᎨᏒᎩ ᎢᏥᏈᏱ. ᎠᎴ ᏑᏓᎵ ᏧᏕᏘᏴᏛ ᎢᏥᏫᏒᏗ ᎨᏎᏍᏗ ᏕᏥᎶᎨᏒᎢ, ᎠᎴ ᎢᏥᏟᏐᏗ ᎨᏎᏍᏗ ᎢᏣᏛᎯᏎᎸᎢ. ᎦᎵᏉᎩᏁᏍᎩᏂ ᎤᏕᏘᏴᏌᏗᏒ ᎤᏯᏪᏐᎸᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏙᏉ ᏄᏍᏕᏍᏗ; ᎾᏍᎩ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏗᏣᏤᎵ ᏴᏫ ᎬᏩᎾᎵᏍᏓᏴᏗ ᏱᎩ; ᎾᏍᎩᏃ ᎤᏂᏃᎯᏴᎯ ᏠᎨᏏ ᎠᏁᎯ ᎦᎾᏝᎢ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ ᏖᎸᎳᏗ ᏕᏣᏫᏒᎢ, ᎠᎴ ᎣᎵᏩ ᏕᏣᏫᏒᎢ. ᏑᏓᎵ ᎢᎦ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏣᏛᏁᏗ ᎨᏒᎢ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᏣᏣᏪᏐᎸᏍᏙᏗ ᎨᏎᏍᏗ; ᎾᏍᎩ ᏩᎦ ᏣᏤᎵᎦ ᎠᎴ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᏯᎾᏣᏪᏐᎸᏍᏓ, ᎠᎴ ᎠᎨᏴ ᎯᏅᏏᏓᏍᏗ ᎤᏪᏥ ᎠᎴ ᎡᏙᎯ Ꮩ ᏯᏁᏛ. ᎠᎴ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎯᎠ ᏥᏂᏨᏪᏏ, ᎢᏣᏓᏯᏫᏍᎨᏍᏗ; ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏯᏅᎮᏍᏗ ᏚᎾᏙᎥ ᏅᏩᎾᏓᎴ ᎤᎾᏁᎳᏅᎯ, ᎠᎴ ᏞᏍᏗ ᎢᏥᎰᎵ ᎢᏥᏁᎬ ᏰᏣᏛᎦᏁᎴᏍᏗ. ᏑᏕᏘᏴᏛ ᎨᏒ ᏦᎢ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ. ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗ ᎨᏒᎢ (ᎾᎪᏔᏅᎯ ᎦᏚ ᎦᎵᏉᎩ ᎢᎦ ᎢᏥᎩᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏂᏨᏪᏎᎸᎢ, ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎡᏈᏈ ᎧᎸᎢ; ᎾᎯᏳᏰᏃ ᏓᏣᏄᎪᏨᎩ ᎢᏥᏡᏱ; ᏞᏍᏗ ᎠᎴ ᎩᎶ ᎠᏒᎭ ᎢᎬᏱᏗᏢ ᏯᎩᎷᏤᎴᏍᏗ;) ᎠᎴ ᎠᏍᎫᏕᏍᏗᏱ ᎨᏒ ᏗᎵᏍᏓᏴᏗᏱ, ᎢᎬᏱ ᏣᎾᏄᎪᏤᎸᎯ ᏕᏣᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᏣᏫᏒᏅ ᏠᎨᏏ; ᎠᎴ ᏗᎵᏍᏓᏴᏗᏱ ᎾᎯᏳ ᎦᏟᏐᏗ ᎨᏒᎢ, ᎤᏕᏗᏴᏌᏗᏒ ᎦᎶᏐᎲᏍᎬᎢ, ᎾᎯᏳ ᎯᏟᏏᏍᎬ ᏕᏣᎸᏫᏍᏓᏁᎸ ᏠᎨᏏ ᏘᏴᏍᏗᏍᎨᏍᏗ. ᏑᏕᏘᏴᏛ ᎨᏒ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏗᏣᏤᎵᎦ ᏦᎢ ᎢᏳᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᎤᎬᏫᏳᎯ ᏱᎰᏩ. ᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎤᎩᎬ ᎢᏣᎵᏍᎪᎸᏗᏍᎬ ᏞᏍᏗ ᎪᎱᏍᏗ ᎠᎪᏔᏅᎯ ᎢᏣᏠᏯᏍᏙᏗ ᏱᎨᏎᏍᏗ; ᏞᏍᏗ ᎠᎴ ᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎤᎪᎢ ᎠᎯᏯᏍᏗ ᏱᎨᏎᏍᏗ ᏑᎾᎴ ᎢᏴᏛ. ᎢᎬᏱ ᎤᎦᏛᎾᏨᎯ ᎦᏙᎯ ᏣᎾᏄᎪᏫᏎᎸᎯ ᏣᏲᎯᏍᏗ ᎨᏎᏍᏗ ᎠᏓᏁᎸ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎥᏞᏍᏗ ᎠᎭᏄᎸᎯ ᎠᎩᎾ [ᎤᏫᏯ] ᎤᏥ ᎤᏅᏗᏱ ᏧᏅᎩ. ᎬᏂᏳᏉ, ᏥᏅᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ, ᏣᏍᏆᏂᎪᏙᏗᏱ ᏫᎦᏛᎢ, ᎠᎴ ᏫᏣᏘᏃᎯᏍᏗᏱ ᎾᎿ ᎠᏆᏛᏅᎢᏍᏔᏅᎢ. ᎡᏣᎦᏌᏯᏍᏕᏍᏗ ᎾᏍᎩ, ᎠᎴ ᎢᏣᏛᏓᏍᏗᏍᎨᏍᏗ ᎧᏁᎬᎢ, ᏞᏍᏗ ᎡᏥᎾᎸᏍᏔᏅᎩ; ᎥᏝᏰᏃ ᏴᎨᏥᎲᏏ ᎢᏥᏍᎦᏅᏨᎢ; ᏓᏆᏙᎥᏰᏃ ᎤᏯᎠ. ᎢᏳᏃ ᎤᏙᎯᏳᎯ ᎢᏣᏛᏓᏍᏗᏍᎨᏍᏗ ᎧᏁᎬᎢ, ᎠᎴ ᏂᎦᏛ ᏂᏥᏪᏍᎬ ᏂᏣᏛᏁᎮᏍᏗ, ᎿᏉ ᎦᏥᏍᎦᎩ ᎨᏎᏍᏗ ᎨᏣᏍᎦᎩ, ᎠᎴ ᎦᏥᏯᏈᏗᏍᎩ ᎨᏎᏍᏗ ᎨᏣᏡᏗᏍᎩ. ᎠᏆᏤᎵᏰᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱ ᏓᏤᏅᎡᎵ, ᎠᎴ ᏮᏓᏣᏘᏃᎵ ᎠᏁᎲ ᎠᏂᎡᎼᏂ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏁᏇᎵᏥ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ, ᎠᎴ ᏓᎦᏥᏛᏔᏂ. ᎥᏞᏍᏗ ᎡᎳᏗ ᎢᏔᏛᏁᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ, ᎠᎴ ᏞᏍᏗ ᏱᏔᏓᏙᎵᏍᏓᏁᎴᏍᏗ, ᎠᎴ ᎾᎾᏛᏁᎲ ᏞᏍᏗ. ᎾᏍᎩ ᏱᏂᏣᏛᎴᏍᏗ; ᏕᎯᏛᏔᏅᎭᏍᎩᏂ, ᎠᎴ ᏕᎯᏍᏆᏒᎭ ᏧᎾᏤᎵ ᎤᏁᎳᏅᎯ ᏗᏟᏩᏍᏔᏅᎯ. ᏱᎰᏩᏃ ᎢᏣᏁᎳᏅᎯ ᏤᏣᏁᎶᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᎣᏍᏛ ᏅᏓᏣᏛᏁᎵ ᎢᏣᏤᎵ ᎦᏚ ᎨᏒᎢ, ᎠᎴ ᎢᏣᏤᎵ ᎠᎹ ᎨᏒᎢ, ᎠᎴ ᎥᏳᎩ ᎠᎩᎲᏍᏗ ᎨᏎᏍᏗ ᎾᎿ ᎠᏰᎵ ᏂᏣᏛᏅᎢ. ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᎤᎶᎢᏎᏗ ᏱᎨᏎᏍᏗ ᎦᏁᎵᏒᎢ, ᎠᎴ ᏂᏓᏅᎥᏍᎬᎾ ᏱᎨᏎᏍᏗ ᎢᏣᏤᎵᎪᎯ; ᎢᎪᎯᏛ ᏣᎴᏂᏓᏍᏗ ᎨᏒ ᎬᎧᎵᎴᏗ ᎨᏎᏍᏗ. ᎥᎩᎾᏰᎯᏍᏗ ᎨᏒ ᎢᎬᏱ ᏤᏅᎡᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᏥᏛᏙᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏴᏫ ᎾᏍᎩ ᏫᎩᎷᏤᏗ ᎨᏒᎢ; ᏂᎦᏗᏨᏃ ᎨᏣᏍᎦᎩ ᎨᏣᏐᎭᏛᎡᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏎᏩᏓ ᎦᏥᏅᏍᏗ ᎨᏎᏍᏗ ᎢᎬᏱ. ᎭᎢᏒᎢ, ᎾᏍᎩ ᏓᎬᏩᏂᎨᎯᏙᎵ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᎿᏗᏒᎢ. ᎥᏝ ᏑᏕᏘᏴᏛ ᎨᏒ ᎦᏥᎨᎯᏓᏍᏗ ᏱᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ; ᏅᏛᏰᏃ ᏱᏅᎦᎵᏍᏓ ᎦᏙᎯ, ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ ᏱᎨᏥᎪᏙᎯᏏ. ᎢᎸᏍᎩᏉ ᎢᏳᏂᏨᏛ ᎦᏥᎨᎯᏓᏍᏗ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ, ᎬᏂ ᎯᎪᏙᏒᎭ, ᎠᎴ ᏣᏤᎵ ᏂᎦᎵᏍᏔᏅᎭ ᎾᏍᎩ ᏚᏙᎯ. ᎠᎴ ᏓᎬᏯᏟᎡᎵ ᏂᎬᎾᏛ ᏣᏤᎵᎦ ᎨᏒᎢ, ᎠᎹ ᎩᎦᎨᏍᏛᏱ ᏅᏓᏳᏓᎴᏅᏛ, ᎠᎺᏉᎯᏃ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎦ ᏫᎦᎷᎩ, ᎠᎴ ᎢᎾᎨ ᎤᏓᎴᏅᏛ ᎡᏉᏂ ᏫᎦᎷᎩ; ᏙᏓᏨᏲᎯᏎᎵᏰᏃ ᎾᎿ ᎦᏙᎯ ᏗᏁᎯ; ᏘᎨᎯᏓᏍᏗᏃ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ. ᎥᏞᏍᏗ ᎧᏃᎮᏛ ᏗᏣᏠᎯᏍᏙᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏤᎵ ᎤᏁᎳᏅᎯ ᏧᏂᏰᎸᎯ. ᎥᏞᏍᏗ ᎢᏣᏤᎵᎪᎯ ᎦᏙᎯ ᎤᎾᏕᏗ ᏱᎨᏎᏍᏗ. ᎾᏍᎩᏰᏃ ᏱᎾᏅᏂᏒ ᏍᎩᏍᎦᏅᏤᏗ ᏱᏅᏚᎵᏍᏓ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ ᏱᏗᏣᏓᏙᎵᏍᏓᏁᎭ ᎠᏎ ᎢᏥᏌᏛᎲᏍᎩ ᎨᏎᏍᏗ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎡᏣᎩᎳᏩ ᏱᎰᏩ ᎡᏥᎷᏥ, ᏂᎯ, ᎠᎴ ᎡᎳᏂ, ᏁᏓᏈ, ᎠᎴ ᎡᏆᏳ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ: ᎠᎴ Ꭸ ᎢᏴᏛ ᏗᏣᏓᏙᎵᏍᏔᏅᎭ. ᎼᏏᏃ ᎤᏩᏒ ᎾᎥ ᎦᎷᏨᎭ ᏱᎰᏩ ᏄᏛᏅᎢ; ᎾᏍᎩᏍᎩᏂ ᏞᏍᏗ ᎾᎥ ᎤᏂᎷᏨᎩ, ᏞᏍᏗ ᎠᎴ ᏴᏫ ᎤᎾᎩᎳᏫᏒᎩ ᎬᏩᏍᏓᏩᏛᏒᎩ. ᎼᏏᏃ ᎤᎷᏨᎩ ᎠᎴ ᏚᏃᏁᎸᎩ ᏴᏫ ᏂᎦᏛ ᏄᏪᏒ ᏱᎰᏩ, ᎠᎴ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ; ᏂᏚᏛᏃ ᏴᏫ ᏌᏉ ᎢᎦᎦᏛ ᎤᏂᏁᏨᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏂᎦᏛ ᏄᏪᏒ ᎤᏁᏨ ᏱᎰᏩ ᎾᏍᎩ ᏅᏓᏲᏣᏛᏁᎵ. . ᎼᏏᏃ ᎤᏬᏪᎳᏅᎩ ᏂᎦᏛ ᏄᏪᏒ ᏱᎰᏩ, ᎠᎴ ᏑᎾᎴᎢ ᎤᏗᏛᎲᎩ, ᎠᎴ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎤᏬᏢᏅᎩ ᎠᎦᏐᎠᏏᎯᎲᎢ, ᎠᎴ ᏔᎳᏚ ᏗᎦᎫᏍᏛᏗ, ᎾᏍᎩᏯ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ. ᏚᏅᏒᎩᏃ ᎠᏂᏫᏅ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᏠᏱ, ᎾᏍᎩ ᎤᎾᎵᏍᎪᎸᏔᏅᎩ ᎠᏥᎸᎨᎳᏍᏗ, ᎠᎴ ᎤᎾᎵᏍᎪᎸᏔᏅᎩ ᏅᏩᏙᎯᏇᏛ ᎠᏓᏁᎯ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏩᎦ ᏚᎾᎵᏍᎪᎸᏓᏁᎸᎩ ᏱᎰᏩ. ᎼᏏᏃ ᎠᏰᎵ ᎢᏴᏛ ᎤᏁᎩᏒᎩ ᎩᎬ ᎠᎴ ᏗᏕᎵᏙ ᏚᏟᏍᏔᏅᎩ; ᎠᏰᎵᏃ ᎢᏴᏛ ᎤᏍᏚᏟᏍᏔᏅᎩ ᎠᏥᎸᎨᎳᏍᏗᏱ. ᎪᏪᎵᏃ ᎤᏁᏒᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎪᏯᎸᎢ, ᎠᎴ ᎤᎪᎵᏰᎥᎩ ᎤᎾᏛᏓᏍᏛ ᏴᏫ; ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏒ ᏅᏓᏲᏣᏛᏁᎵ, ᎠᎴ ᎣᎪᎯᏳᎯᏍᏗᏅ ᎨᏎᏍᏗ. ᎼᏏᏃ ᎩᎬ ᎤᏁᎩᏒᎩ, ᎠᎴ ᏴᏫ ᏚᏍᏚᏢᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎩᎬ ᎯᎠ, ᎾᏍᎩ ᏱᎰᏩ ᏥᏕᏣᏠᎯᏍᏔᏅ ᎾᏍᎩ ᏂᎦᏛ ᎯᎠ ᎧᏃᎮᏛ ᎤᎬᏩᎵ. ᎤᎿᎷᏒᎩᏃ ᎼᏏ, ᎠᎴ ᎡᎳᏂ, ᏁᏓᏈ, ᎠᎴ ᎡᏆᏳ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ. ᎤᏂᎪᎲᎩᏃ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᏤᎵᎦ, ᏚᎳᏍᎬᏃ ᏣᏲᏓᏝᎰ ᎾᏍᎩᏯ ᎨᏒᎩ ᏧᎸᎾᏛ ᏌᏆᏯᏅᏯ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎦᎸᎶ ᎤᏩᏒ ᏄᏍᏛ ᏗᎬᏩᎸᏌᏛ ᎨᏒᎢ. ᎨᏥᎸᏉᏗᏃ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ ᎥᏝ ᏱᏚᏏᏔᏕᎢ;, ᎾᏍᏉ ᎤᏂᎪᎲᎩ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏅᎩ ᎠᎴ ᎤᎾᏗᏔᎲᎩ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎡᎭᎩᎳᏩ ᏍᎩᎷᏥ ᎠᏂ ᎣᏓᎸᎢ, ᎠᏂᏃ ᎮᏙᎮᏍᏗ, ᏙᏓᎬᏁᎵᏃ ᏗᏯᏖᏅ ᏅᏯ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎤᎵᏁᏨᎢ ᎾᏍᎩ ᏗᏉᏪᎳᏅᎯ, ᎾᏍᎩ ᏗᎩᏰᏲᏗ. ᎼᏏᏃ ᏚᎴᏅᎩ, ᎠᎴ ᎾᏍᏉ ᎤᏍᏕᎸᎯᏙᎯ ᏦᏑᏫ, ᎼᏏᏃ ᎤᎿᎷᏒᎩ ᎣᏓᎸ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ ᏧᎾᏛᏐᏅᎯ, ᏍᎩᎦᏘᏰᏍᏗ ᎠᏂ, ᎬᏂ ᏔᎵᏁ ᎢᏨᎷᎮᎸᎩ; ᎬᏂᏳᏃ, ᎡᎳᏂ ᎠᎴ ᎭᎵ ᎨᏤᎳᏗᏙᎭ; ᎢᏳᏃ ᎩᎶ ᎤᏓᏰᎢᎵᏓᏍᏗ ᎤᎮᏍᏗ, ᎾᏍᎩ ᏓᏂᎷᏤᎮᏍᏗ. ᎼᏏᏃ ᎤᎿᎷᏒᎩ ᎣᏓᎸᎢ, ᎤᎶᎩᎸᏃ ᎤᏭᏢᏔᏅᎩ ᎣᏓᎸᎢ. ᏚᎸᏌᏛᏃ ᏱᎰᏩ ᏌᎾᏱ ᎣᏓᎸ ᎤᎴᏫᏍᏔᏅᎩ, ᎤᎶᎩᎸᏃ ᎤᏭᏢᏅᎩ ᏑᏓᎵ ᏧᏒᎯᏛ; ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎼᏏ ᎤᎵᏍᏔᏁᎸᎩ ᎤᎶᎩᎸ ᎠᏰᎵ ᏓᏳᏓᎴᏅᎩ. ᏗᎧᏃᏗᏱᏃ ᏱᎰᏩ ᏚᎸᏌᏛᎢ ᎠᏥᎸ ᎠᏒᎲᏍᎩ ᎾᏍᎩᏯ ᎨᏒᎩ ᎣᏓᎸ ᎦᎸᎳᏗ ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᏓᏂᎧᏅᎢ. ᎼᏏᏃ ᎤᎶᎩᎸ ᎠᏰᎵ ᏭᎶᏒᎩ, ᎠᎴ ᎤᎾᎷᏒᎩ ᎣᏓᎸᎢ; ᎼᏏᏃ ᎤᎩᎸᎩ ᎣᏓᎸ ᏅᎦᏍᎪᎯ ᎢᎦ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ. ᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎩᏁᏥ ᎢᏏᎵ ᏧᏪᏥ ᎠᎵᏍᎪᎸᏙᏗ ᎬᎩᏲᎮᏗᏱ; ᎾᏂᎥ ᎤᏂᎾᏫ ᎤᏂᏅᏫᏍᏗᏍᎩ ᎤᏂᏗᏱ ᏗᏍᏗᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ ᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ. ᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᏗᏍᏓᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ; ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎴ ᎠᏕᏄ. ᎤᏁᎬ, ᎠᎴ ᎥᎶᏱ, ᎠᎴ ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᎠᎭᏄᎸᎯ ᎠᏫ ᎤᎩᏢ, ᎤᏂᏃᏕᎾᏃ ᎦᏁᎦ ᏗᎩᎦᏏᎨᎢ, ᎠᎴ ᏓᎭᏏ ᎦᏁᎦ, ᎠᎴ ᎠᏓᎬᎿᏥᎨ, ᎯᎢᏃ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ, ᎦᏩᏒᎩ ᎠᏠᏁᏗ ᎪᏢᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ ᎪᏢᏗ; ᎣᏂᎦ ᏅᏯ, ᎠᎴ ᏅᏯ ᎡᏉᏗ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏗᎦᎪᏗ. ᎠᎴ ᏫᎬᏆᏁᏍᎩᏏ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸ, ᎾᏍᎩ ᎠᏆᏕᏗᏱ ᎠᏁᎲᎢ. ᎾᏍᎩᏯ ᎬᏂᎨᏒ ᏂᎬᏴᏁᎸᎢ, ᎾᏍᎩ ᏗᏟᎶᏍᏔᏅᎯ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏗᏟᎶᏍᏔᏅᎯ ᏂᎦᏛ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎾᎿᏂ, ᎾᏍᎩᏯ ᎢᏨᏁᏗ ᏦᏢᏗ ᎨᏎᏍᏗ. ᎦᏁᏌᎢᏃ ᎤᏃᏢᏗ ᎨᏎᏍᏗ ᎠᏓᎬᎿᎨ ᎤᏃᏢᏙᏗ ᎨᏎᏍᏗ; ᏦᎢᏁ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏖᏍᏗ. ᎠᎴ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏧᏢᏙᏗ ᎨᏎᏍᏗ; ᎭᏫᏂᏗᏢ ᎠᎴ ᎦᏚᎢᏗᏢ ᏧᏢᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏁᎨ ᏂᎬᏁᏕᏍᏗ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ. ᏅᎩᏃ ᏧᏓᏆᏙᎩ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᏅᎩᏃ ᎾᏍᎩ ᏂᏚᎳᏍᎬᎢ ᏗᏣᏙᏗ ᎨᏎᏍᏗ; ᏔᎵᏃ ᏧᏓᏆᏙᎩ ᏌᏉ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᏗᏣᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ Ꭰ ᎢᏗᏢ ᎠᏍᏆᎨᏂ ᏗᎦᏙᏗ ᎨᏎᏍᏗ. ᎦᏅᏍᏙᏗᏃ ᎠᏓᎬᎿᎨ ᏗᏦᏢᏙᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎦᏅᏍᏙᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎾᎿ ᏗᎫᏍᏙᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏁᏌᎢ ᎦᏅᏍᏙᏗ ᎨᏎᏍᏗ. ᎦᏅᏍᏙᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᎦᏁᏌᎢᎯ ᏕᎫᏍᏙᎰᎨᏍᏗ; ᎥᏝ ᏗᎫᏍᏙᎩᏍᏗ ᏱᎨᏎᏍᏗ. ᎦᏁᏌᎢᎯᏃ ᏗᏣᎶᏗ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏗᎬᏲᎯᏎᏗ ᏥᎩ. ᎠᎴ ᏧᏢᏗ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎢᏍᏗ ᎾᏑᏴᎾ ᏦᏢᏙᏗ ᎨᏎᏍᏗ; ᏦᎢᏁ ᎠᏰᎵ ᎢᏍᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ; ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ. ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎩᎷᏫ ᏕᎰᏢᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎰᎨᏢᏔᏅᎭ, ᏗᎦᏅᏆᎶᏏᎶᏛ ᎨᏎᏍᏗ ᏧᏍᎪᎵ ᎫᏢᏘᏱ ᏕᎯᎧᏅᎭ, ᎠᎴ ᏌᏉ ᎠᎩᎷᎾ ᏌᏉ ᎢᏗᏢ ᎤᏍᎪᎵ ᎯᎧᏅᎭ, ᏐᎢᏃ ᎠᎩᎷᏫ ᏐᎢᏗᏢ ᎤᏍᎪᎵ ᎯᎧᏅᎭ; ᎾᏍᎩ ᎫᏢᏗᏱ ᏧᏍᎪᎵ ᎢᏗᏢ ᎢᏧᎳ ᏗᏣᎪᏗ ᎨᏎᏍᏗ ᎠᏂᎩᎷᏫ. ᎠᏂᎩᎷᏫᏃ ᏚᎾᏐᎸᏖᏍᏗ ᏗᏂᏃᎨᏂ, ᎫᏢᏗᏱ ᏚᏄᏢᏕᏍᏗ ᏗᏂᏃᎨᏂ, ᏚᎾᎧᏛᏃ ᏓᎾᏓᎧᏁᏍᏗ; ᏧᏢᏗᏱ ᎢᏗᏢ ᏭᎾᎦᏖᏍᏗ ᎠᏂᎩᎷᏫ. ᎫᏢᏗᏃ ᎦᏁᏌᎢ ᎦᏚᎢ ᏧᏢᏙᏗ ᎨᏎᏍᏗ; ᎦᏁᏌᎢᎯᏃ ᏗᏣᎶᏗ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᏗᎬᏲᎯᏎᏗ ᏥᎩ. ᎾᎿᏃ ᏗᎬᏯᏠᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎬᏯᎵᏃᎮᏙᏗ ᎨᏎᏍᏗ ᎦᏁᏌᎢ ᎫᏢᏘᏱ ᎦᎸᎳᏗᏢ, ᎠᏂᎩᎷᏫ ᏓᏂᏙᎬ ᎠᏰᎵ ᎾᏍᎩ ᎦᏁᏌᎢᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎧᎶᏗ ᏥᏓᏂ ᏙᎦ, ᎾᏍᎩ ᎬᏯᎵᏃᎮᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏂᎦᏛ ᎬᏁᏤᏗ ᏥᎩ, ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏛᎪᏗ. ᎠᎴ ᎦᏍᎩᎶ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏓᎬᎿᎨ ᎪᏢᏔᏅᎯ; ᏔᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᏌᏉᏃ ᎢᏯᎩᏳᏍᏈᏡᏛ ᎾᏯᏛᎡᏍᏗ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏖᏍᏗ. ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏧᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏂᎬᏁᏕᏍᏗ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ. ᎠᎴ ᏣᎬᏔᏅᏗ ᎨᏎᏍᏗ ᎣᏬᏰᏂ ᎾᏯᏛ; ᎢᏯᏯᏖᏅ ᎬᏩᏚᏫᏛ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎦᏯᎴᏍᏗ ᎬᏩᏚᏫᏛ. ᎠᎴ ᏅᎩ ᏧᏓᏆᏙᎩ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏓᏆᏙᎩ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᏅᎩ ᏂᏚᏅᏏᏴ ᎾᎿ ᏅᎩ ᏂᏚᎳᏍᎬᎢ. ᎠᎬᏔᏅᏛᏃ ᎾᎥ ᏗᎦᏙᏗ ᎨᏎᏍᏗ ᏧᏓᏆᏙᎩ ᏗᎫᏍᏙᏍᏗᏱ ᎦᏅᏍᏙᏗ ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ. ᏗᎦᏅᏍᏙᏗᏃ ᎠᏓᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎱᏢᏔᏅᎭ, ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎾᎿ ᏤᎯ ᏗᏯᏖᎾ ᏕᎰᏢᏅᎭ, ᎠᎴ ᏗᏗᏙᏗ, ᎠᎴ ᏗᏖᎵᏙ, ᎠᎴ ᏗᏟᏍᏙᏗ ᏗᏖᎵ Ꮩ; ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎰᏢᏔᏅᎭ. ᎦᏍᎩᎸᏃ ᏣᏝᎮᏍᏗ ᎦᏚ ᎠᎦᏙᏗ ᎢᎬᏱᏢ ᎠᏆᎧᏛᎢ ᏂᎪᎯᎸᎢ. ᏗᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏦᏢᏙᏗ ᎨᏎᏍᏗ; ᎦᏅᏆᎶᏏᎶᏛ ᎠᏕᎸ ᎪᏢᏙᏗ ᎨᏎᏍᏗ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ; ᎤᏪᏛᎢ, ᎠᎴ ᏚᏩᏂᎦᎸᎢ, ᏧᏖᎵᏙᎩ, ᏚᏆᏛᎢ, ᎠᎴ ᏚᏥᎸᏒᎢ, ᎤᏠᏱ ᏗᎪᏢᏙᏗ ᎨᏎᏍᏗ. ᏑᏓᎵᏃ ᏚᏩᏂᎦᎸ ᎢᏧᎳ ᎢᏗᏢ ᏧᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ; ᏦᎢ ᏂᏚᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏌᏉ ᎢᏗᏢ ᏧᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏦᎢ ᏂᏚᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏐᎢᏱᏗᏢ ᏧᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ. ᏦᎢᏃ ᏗᏖᎵᏙ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏕᎤᏍᏕᏍᏗ, ᎤᏆᏖᏍᏗ ᎠᎴ ᎤᏥᎸᏎᏍᏗ ᏌᏉ ᎤᏩᏂᎦᎸᎢ; ᎠᎴ ᏦᎢ ᏕᎪᏢᏎᏍᏗ ᏗᏖᎵᏙ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏕᎤᏍᏕᏍᏗ ᏐᎢᏱ ᎤᏩᏂᎦᎸᎢ, ᎤᏆᏖᏍᏗ ᎠᎴ ᎤᏥᎸᏎᏍᏗ; ᎾᏍᎩᏯ ᏂᏕᏅᏍᏕᏍᏗ ᏑᏓᎵ ᏂᏕᎤᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ. ᏗᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᏅᎩ ᏕᎪᏢᏎᏍᏗ ᏗᏖᎵᏙ ᎠᎹᏂ ᎤᏥᎸᏒ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏕᎤᏍᏕᏍᏗ, ᏚᏆᏖᏍᏗ ᎠᎴ ᏕᎤᏥᎸᏎᏍᏗ. ᎠᎴ ᎤᏆᏖᏍᏗ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏖᏍᏗ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎾᏍᎩᏯ ᏑᏓᎵ ᏂᎦᎥ ᏕᎤᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ. ᏚᏆᏛ ᎠᎴ ᏚᏩᏂᎦᎸ ᎤᏠᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ; ᏂᎦᏛ ᏌᏉ ᎦᏅᏆᎶᏏᎶᏛ ᎪᏢᏅᎯ, ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ. ᎠᎴ ᎦᎵᏉᎩ ᎪᎱ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ ᎾᎿ ᏗᎦᎪᏗ ᏗᏦᏢᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏂᏨᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏗᏨᏍᏙᏗ, ᎾᏍᎩ ᎢᎦ ᎤᎾᏘᏍᏙᏗᏱ ᏧᏳᎪᏗ ᎤᏗᏗᏢ. ᎠᎴ ᏗᏥᏃᏍᎦᎸᏗ ᎠᎴ ᏗᏥᏃᏍᎦᎸᏛ ᏗᎦᎶᏗ, ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ. ᎨᏎᏍᏗ. ᏌᏉ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏧᏬᏢᏙᏗ ᎨᏎᏍᏗ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ. ᎠᎴ ᎭᎦᏌᏯᏍᏔᏅᎭ ᏕᎰᏢᏅᎭ ᎾᏍᎩ ᏗᏟᎶᏍᏙᏗ ᎠᏴᎢ, ᎾᏍᎩ ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸᎢ. ᎠᎴ ᎾᏍᏉ ᎦᎵᏦᏙᏗ ᎰᏢᏅᎭ ᎠᏍᎪᎯ ᏗᏰᏙᎳᏗ ᎠᏄᏬ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ ᎪᏢᏔᏅᎯ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎬᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ: ᎠᏂᎩᎷᏫ ᎠᎵᏏᎾᎪᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏔᏁᎸᎯ ᏨᏙᏗ ᏗᏦᏢᏗ ᎨᏎᏍᏗ. ᏌᏉ ᎠᏰᏙᎳᏛ ᏁᎳᏦᏁ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᏅᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ; ᏂᎦᏛᏃ ᏓᏰᏙᎳᏛ ᎢᏗᎦᎯᏛᎭ ᎨᏎᏍᏗ. ᎯᏍᎩ ᏂᏓᏰᏙᎳᏛ ᏕᏅᎤᎾᏚᏓᏖᏍᏗ; ᏗᏐᎢᏃ ᎯᏍᎩ ᏓᏰᏙᎳᏛ ᏕᎤᎾᏚᏓᏖᏍᏗ. ᏧᎾᏓᏕᏍᏗᏱᏃ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏍᏛ ᎠᏰᏙᎳᏛᏗᏱ ᏕᎭᎷᎨ ᎠᏍᏘ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᏓᎴᏂᏍᎨᏍᏗ ᎠᏍᏛ ᏚᏚᏓᏛᎢ: ᎠᎴ ᎤᏠᏱᏉ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏍᏛ ᏔᎵᏁ ᎠᏰᏙᎳᏛ ᏚᎦᏓᏛᎢ. ᎯᏍᎦᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏧᏓᏕᏍᏗᏱ ᏌᏉ ᎠᏰᏙᎳᏛᎢ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏍᏛ ᏔᎵᏁ ᎠᏰᏙᎳᏛ ᏚᏚᏓᏛᎢ, ᎾᏍᎩ ᏧᏓᏂᏴᏗᏱ ᏕᎪᏢᏒ ᏧᏓᏕᎯᏍᏗᏱ. ᎠᎴ ᎯᏍᏚᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏗᎫᏓᎸᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩᏃ ᏗᎫᏓᎸᏗᏱ ᏕᎭᏚᏙᏔᏅᎭ ᏓᏰᏙᎳᏛᎢ, ᎾᏍᎩᏃ ᏌᏉᏉ ᎨᏎᏍᏗ ᎦᎵᏦᏛᎢ. ᏓᏰᏙᎳᏛᏗᏃ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᏍᏘᏰᏅᎯ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎬᏅᏙᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏛᎢ: ᏌᏚ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏗᏰᏙᎳᏛᏗ. ᏌᏉ ᎠᏰᏙᎳᏛ ᏦᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᏅᎩᏃ ᎢᏯᎩᏳᏍᏡᏛ ᎾᏯᏛᎡᏍᏗ ᏌᏉ ᎠᏰᏙᎳᏛᎢ: ᏌᏚᏃ ᏂᏓᏰᏙᎳᏛ ᎢᏗᎦᎯᏛᎭ ᎨᏎᏍᏗ. ᎯᏍᎩᏃ ᏓᏕᏙᎳᏛ ᎤᏁᎳᎩ ᏗᎦᏚᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏑᏓᎵ ᏓᏕᏙᏔᏛ ᎤᏁᎳ ᏗᏣᏚᏙᏗ ᎨᏎᏍᏗ, ᏑᏓᎵᏁᏃ ᎠᏰᏙᎳᏛ ᏗᏣᏰᏈᏛᏗ ᎨᏎᏍᏗ ᏭᎦᏛ ᎦᎵᏦᏛᎢ. ᎯᏍᎦᏍᎪᎯᏃ ᏕᎨᏢᎾᎭ. ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᏌᏉ ᎠᏰᏙᎳᏛᎢ ᎾᏍᎩ ᎠᏍᏛ ᎤᏚᏓᏛᏗᏱ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᎠᏰᏙᎳᏛ ᎾᏍᎩ ᏔᎵᏁ ᎤᏚᏓᏛᏗᏱ. ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏗᎫᏓᎸᏗᏱ, ᎥᏣᏱ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᏗᎫᏓᎸᏗᏱ ᏗᏣᏚᏙᏗ ᏧᏓᏕᏍᏗᏱ, ᎠᎴ ᏕᎱᏓᏔᏅᎭ ᎦᎵᏦᏛᎢ, ᎾᏍᎩᏃ ᏌᏉ ᏂᎦᎵᏍᏔᏅᎭ. ᎾᏍᎩᏃ ᎤᎵᏃᎯᏴᎯ ᏗᏰᏙᎳᏛᏗ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎠᏰᎵ ᎢᎦᎢ ᎤᎵᏃᎯᏴᎯ, ᎾᏍᎩ ᎦᎵᏦᏛ ᎣᏂᏗᏢ ᎦᏛᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏌᏉ ᎢᏗᏢ, ᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᎠᎢᏗᏢ, ᎾᏍᎩ ᏕᏚᏅᎯᏒ ᏧᎵᏃᎯᏴᎯ ᏗᏰᏙᎳᏛᏗ ᎦᎵᏦᏛᎢ, ᏗᏍᏆᎨᏂ ᏫᏗᎦᏖᎳᏕᏍᏗ ᎦᎵᏦᏛᎢ ᎠᏂ ᎢᏗᏢ ᎠᎴ ᏐᎢᏱ ᎢᏗᏢ, ᎾᏍᎩ ᎫᏢᏙᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏦᏢᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏛ ᎫᏢᏗ, ᎤᏃᏕᎾ ᎦᏁᎦ ᎩᎦᎨ ᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎦᏚᏃ ᎢᏗᏢ ᎫᏢᏗ ᏓᎭᏏ ᎦᏁᎦ ᏦᏢᏙᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏧᏯᏖᎾ ᎠᏓ-ᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᎵᏦᏛ ᎪᏢᏗ ᏕᎦᎵᎦᎴᏍᏗ. ᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏌᏉ ᎤᏯᏖᎾ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏇᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ ᏌᏉ ᎤᏯᏖᎾ. ᏔᎵ ᏕᎪᏢᏎᏍᏗ ᏗᎫᏍᏙᏍᏗᏱ ᏌᏉ ᏅᏯᏖᏃᎯ, ᏕᎦᎧᎮᏍᏗ ᎣᏍᏛ ᏓᏙᎵᎨᏍᏗ; ᎾᏍᎩ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏧᏯᏖᎾ ᎦᎵᏦᏙᏙᏗ. ᏧᏯᏖᎾᏃ ᎦᎵᏦᏙᏙᏗ ᏔᎳᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏧᎦᎾᏮ ᎢᏗᏢ ᏤᎯ. ᏅᎦᏍᎪᎯᏃ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ, ᎭᏫᏂᏗᏢ ᏔᎳᏍᎪᎯ ᏧᏯᏖᏃᎯ. ᏔᎵ ᏓᏔᎴᏒ ᏕᎪᏢᏎᏍᏗ ᎭᏫᏂᏗᏢ ᏌᏉ ᎤᏯᏖᏃᎯ ᎾᏍᎩ ᏔᎵ ᏗᎫᏍᏙᏍᏗ ᏗᏠᏍᎩ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏐᎢᏱ ᎤᏯᏖᏃᎯ ᎾᏍᎩ ᏗᏠᏍᎩ ᏔᎵ ᏗᎫᏍᏙᏍᏗ. ᏔᎵᏁᏃ ᎠᏍᏆᎨᏂ ᏫᎨᏒ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᏧᏴᏢ ᎢᏗᏢ ᏔᎵᏍᎪᎯ ᏂᏕᎬᏁᏍᏗ ᏧᏯᏖᎾ. ᎠᎴ ᏅᎦᏍᎪᎯ ᎾᏍᎩ ᏗᏠᏍᎩ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ; ᏔᎵ ᏂᏕᎬᏁᏍᏗ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏌᏉ ᎤᏯᏖᏃᎯ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏐᎢᏱ ᎤᏯᏖᏃᎯ. ᏗᏍᏆᎨᏂᏃ ᏭᏕᎵᎬ ᎢᏗᏢ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᏑᏓᎵ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏧᏯᏖᎾ. ᎠᎴ ᏔᎵ ᏧᏯᏖᎾ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎤᏅᏏᏴ ᏤᎯ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᎢᏧᎳ ᏗᏍᏆᎨᏂ ᎢᏗᏢ ᏤᎯ. ᎾᏍᎩᏃ ᏗᎫᏓᏙᏗ ᎨᏎᏍᏗ ᎡᎳᏗᏢ, ᎠᎴ ᏗᎫᏓᏙᏗ ᎨᏎᏍᏗ ᎤᏍᎪᎵ ᎦᎸᎳᏗ ᎾᏍᎩ ᏌᏉ ᎤᏆᏙᎬᎢ; ᎾᏍᎩ ᎢᏗᎬᏁᏗ ᎨᏎᏍᏗ ᎢᏧᎳ; ᎾᏍᎩ ᎯᎠ ᏧᏇᏖᎾ ᎤᏅᏏᏴᏢ ᎢᏧᎳᏗ ᏤᎯ ᎨᏎᏍᏗ. ᎠᎴ ᏧᏁᎳ ᏂᎦᎡᏍᏗ ᏧᏯᏖᎾ: ᏓᏔᎴᏒᏃ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏓᎳᏚ ᏂᎦᎡᏍᏗ; ᏔᎵ ᏓᏔᎴᏒ ᏂᏕᎬᏁᏍᏗ ᏌᏉ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏅᏩᏓᎴ ᎤᏯᏖᏃᎯ. ᏗᏍᏆᎾᎳᏗᏍᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ; ᎯᏍᎩ ᏓᏞᏍᏗ ᏧᏯᏖᏃᎯ ᏌᏉ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎦᎵᏦᏛᎢ: ᎠᎴ ᎯᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏞᏍᏗ ᏧᏯᏖᏃᎯ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎯᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏞᏍᏗ ᏧᏯᏖᏃᎯ . ᎦᎵᏦᏛ ᎠᏍᏆᎨᏂ ᏭᏕᎵᎬ ᎢᏗᏢ. ᎠᏰᎵ ᎡᎯ ᎠᏍᏆᎾᎳᏗᏍᏗ ᏧᏯᏖᏃᎯ ᎠᏰᎵ ᏓᏢᎢ ᏂᎦᏅᎯᏒ ᎠᏞᏍᏗ. ᎠᎴ ᏧᏯᏖᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎫᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ ᎾᎿ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏗᎦᏙᏌᏗᏍᏗᏱ; ᎠᎴ ᎠᏕᎸ. ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ ᏗᏍᏆᎾᎳᏗᏍᏗ. ᎠᎴ ᏣᎪᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏙᏙᏗ ᎾᏍᎩᏯ ᏗᏟᎶᏍᎳᏅᎯ. ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸᎢ. ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᏦᏢᏗ ᎨᏎᏍᏗ, ᏕᎭᎷᎨ ᎠᏄᏬ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᎤᏥᎸᎢ, ᎠᎵᏏᎾᎯᏍᏔᏅᎯ. ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᎿᏂ ᎠᏂᎩᎷᏫ ᏕᎪᏢᏎᏍᏗ. ᎠᎴ ᏣᏛᏗ ᎨᏎᏍᏗ ᏅᎩ ᏕᎨᏛ ᏗᎦᎫᏍᏛᏗ, ᎠᏓ-ᎬᎿᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎫᏢᏔᏅᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᏅᎩ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎾᎿ ᏕᎫᏍᏙᎨᏍᏗ. ᎠᎴ ᏣᏛᏗ ᎨᏎᏍᏗ ᎠᏰᏙᎳᏛᏗ ᏗᎫᏓᎸᏗᏱ ᎭᏫᏂᏗᏢ, ᎾᏍᎩ ᎾᎿ ᏣᏴᏔᏂᎯᏍᏗᏱ ᎠᏰᏙᎳᏛ ᎭᏫᏂᏗᏢ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗ; ᎠᏰᏙᎳᏛᏃ ᎢᏣᏓᏓᎴᏓᏁᎮᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏅᏟ ᎢᎦᎸᏉᏗ ᎨᏒᎢ. ᎫᏢᏗᏃ ᎯᏝᏛᎭ ᎦᏁᏌᎢᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎾᎿ ᎤᏟ ᎢᎦᎸᏉᏗ ᎨᏒᎢ. ᎦᏍᎩᎶᏃ ᎠᏰᏙᏛ ᏙᏱᏗᏢ ᏣᏍᎩᎳᏗᏍᏗ ᎨᏎᏍᏗ, ᎠᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᎦᏍᎩᎸ ᏧᏳᎪᏗ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛ ᏧᎦᎾᏮ ᎢᏗᏢ ᏣᎪᏗ ᎨᏎᏍᏗ; ᎦᏍᎩᎶᏃ ᏧᏴᏢ ᎢᏗᏢ ᏣᏍᎩᎳᏗᏍᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏰᏙᎳᏛᏗ ᎠᏍᏚᏗ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ, ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᎤᏥᎸᎢ, ᎪᏪᎳᏅᎯ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ. ᎠᎴ ᏗᏰᏙᎳᏛᏗᏱ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎯᏍᎩ ᏗᎦᎫᏍᏛᏗ ᎠᏓ-ᎬᎿᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎱᏢᏔᏅᎭ, ᎠᎴ ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ; ᎠᎴ ᎯᏍᎩ ᏓᏔᎴᏒ ᎥᏣᏱ ᎬᎾᏬᏔᏅᎯ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ ᏗᎦᎫᏍᏛᏗ ᏗᎫᏍᏙᏍᏗᏱ, ᎠᎴ ᎰᏢᏅᎭ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏓᎬᎿᎨ ᎰᏢᏔᏅᎭ, ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ, ᎦᏌᏆᎸ ᎨᏎᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᏦᎢᏃ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏖᏍᏗ. ᏕᎤᎷᎬᏃ ᏅᎩ ᏂᏚᏅᏏᏴ ᏗᏣᎪᏗ ᎨᏎᏍᏗ; ᏕᎤᎷᎬ ᎤᏠᏱᏉ ᎨᏎᏍᏗ; ᎥᎶᏱᏃ ᏧᏢᏙᏗ ᎨᏎᏍᏗ. ᏗᏦᏢᏗᏃ ᎨᏎᏍᏗ ᎪᏍᏚ ᎦᎶᏗ, ᎠᎴ ᎪᏕᏍᏗ, ᎠᎴ ᏗᏖᎵᏙ, ᎠᎴ ᎭᏫᏯ ᎦᏂᏴᏙᏗ, ᎠᎴ ᎠᏥᎸ ᎦᎶᏗ; ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎥᏣᏱ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎥᏣᏱ ᎪᏢᏔᏅᎯ; ᎾᎿᏃ ᏅᎩ ᏂᏚᏅᏏᏴ ᏅᎩ ᏧᏓᏆᏙᎩ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᏗᏣ ᏙᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᎦᏌᏛᎢ ᎭᏫᏂᏗᏢ ᏣᏄᏴᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏰᎵ ᎢᏴᏛ ᏫᎬᏩᎵᏍᏗᏍᏗ ᎨᏎᏍᏗ. ᎦᏅᏍᏙᏗᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏗᏦᏢᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏅᏍᏙᏗ ᎠᏓ-ᎬᎿᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎥᏣᏱ ᏗᎫᏢᏔᏅᎯ. ᎦᏅᏍᏙᏗᏃ ᏧᏓᏆᏉᎩ ᏕᎦᏛ ᏗᎫᏍᏙᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏧᎳᏗᏢ ᏗᏍᏆᎨᏂ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎦᏅᏍᏙᏗ ᏓᏞᏍᏗ, ᎾᏍᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏴᏍᏙᏗ. ᎤᏒᏙᏂ ᏅᏁᎸᎭ ᏧᏯᏖᎾ ᎰᏢᏔᏅᎭ; ᎾᏍᎩᏯ ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸᎢ, ᎾᏍᎩᏯ ᎢᏳᏅᏁᏗ ᎤᏃᏢᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎣᏂ ᎰᏢᏅᎭ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛ ᎤᏚᏫᏛ; ᎠᏍᏆᎨᏂ ᏧᎦᏅᏮ ᎢᏗᏢ ᎠᏰᏙᎳᏕᏍᏗ ᎠᏂ ᎾᏍᎩ ᎣᏂ; ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᎨᏎᏍᏗ, ᎠᏍᎪᎯᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏌᏉ ᎢᏗᏢ ᎠᏍᏆᎨᏂ. ᏔᎳᏍᎪᎯᏃ ᏗᎦᎫᏍᏛᏗ ᎠᎴ ᎾᏍᎩ ᏔᎳᏍᎪᎯ. ᏓᏔᎴᏒ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ; ᏗᎦᏙᏌᏗᏍᏗᏱᏃ ᎠᎴ ᎤᏯᏅᎯ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᎦᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ. ᎠᎴ ᎾᏍᏉ ᏧᏴᏢ ᎢᏗᏢ ᎠᏰᏙᎳᏕᏍᏗ ᎠᏍᎪᎯᎫᏈ ᎢᏍᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ; ᎠᎴ ᏗᎦᎫᏍᏛᏗ ᏔᎳᏍᎪᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏔᎳᏍᎪᎯ ᏓᏔᎴᏒ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱᏃ ᎠᎴ ᎤᏯᏅᎯ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ. ᎾᏯᏛᎥᏃ ᎣᏂ ᏭᏕᎵᎬ ᎢᏗᏢ ᏓᏰᏙᎳᏕᏍᏗ ᎯᏍᎪᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ; ᏗᎦᎫᏍᏛᏗ ᎠᏍᎪᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏓᏔᎴᏒ ᎠᏍᎪᏂᎯ ᎨᏎᏍᏗ. ᎾᏯᏛᎥᏃ ᎣᏂ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎯᏍᎦᏍᎪᎯ ᎢᏯᎩᏅᏳᏍᏈᏛ ᎨᏎᏍᏗ. ᏓᏰᏙᎳᏛ ᏌᏉ ᎢᏗᏢ [ᎦᎶᎯᏍᏗᏱ] ᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏎᏍᏗ: ᏗᏕᎫᏍᏛᏗ ᏦᎢ ᏂᎦᎡᏍᏗ, ᎠᎴ ᏓᏔᎴᏒ ᏦᎢ. ᎠᎴ ᎠᎢᏗᏢ ᏓᏰᏙᎳᏕᏍᏗ ᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᎢᏗᎦᏅᎯᏛ; ᏗᎦᎫᏍᏛᏗ ᏦᎢ ᏂᎦᎡᏍᏗ, ᎠᎴ ᏓᏔᎴᏒ ᏦᎢ ᏂᎦᎡᏍᏗ. ᎦᎶᎯᏍᏗᏱᏃ ᎪᏢᏒ ᎦᎵᏦᏛ ᎠᏰᏙᎳᏕᏍᏗ ᏔᎳᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᎢᎦᏅᎯᏛ, ᏕᎭᎷᎨ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ ᎨᏎᏍᏗ, ᎪᏪᎳᏅᎯ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ; ᏗᏕᎫᏍᏛᏗ ᏅᎩ ᎨᏎᏍᏗ ᎠᎴ ᏓᏔᎴᏒ ᏅᎩ. ᏂᎦᏛᏃ ᏗᎦᎫᏍᏛᏗ ᎦᎵᏦᏛ ᎬᏩᏚᏫᏛ ᎤᏯᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏂᏕᎬᏁᏕᏍᏗ; ᏗᎦᏙᏌᏏᏍᏗᏱ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏓᏔᎴᏒ ᎾᎿ ᏗᎫᏍᏙᏍᏗᏱ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ. ᎣᏂ ᎠᏍᎪᎯᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎾᏯᏛᎥᏃ ᎯᏍᎦᏍᎪᎯ ᎨᏎᏍᏗ ᏂᎦᎥᎢ, ᏂᎦᏛᎢᏃ ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎨᏎᏍᏗ, ᎪᏢᏔᏅᎯ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ, ᏓᏔᎴᏒᏃ ᎾᎿ ᏗᎫᏍᏙᏍᏗᏱ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ. ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏁᏗ ᎦᎵᏦᏛᎢ ᎾᎿ ᏄᏓᎴᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᏗᎨᏘᏂᏓᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎣᏂ ᏗᎨᏘᏂᏓᏍᏗ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ. ᏂᎯᏃ ᏘᏁᏤᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎨᏣᏁᏦᎮᏗᏱ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎣᎵᏩ ᎪᎢ ᎦᏅᏆᎶᎥᎯ ᎢᎦ ᎦᏘᏍᏙᏗ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏓᏪᎵᎩᏍᏗᏱ ᎠᏨᏍᏙᏗ ᏂᎪᎯᎸᎢ. ᎦᎵᏦᏛ ᎭᏫᏂᏗᏢ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏰᏙᎳᏛ ᏙᏱᏗᏢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲᎢ ᎢᎬᏱᏗᏢ, ᎡᎳᏂ ᎾᏍᎩᏃ ᏧᏪᏥ ᎣᏍᏛ ᎢᏳᏅᏁᏗ ᎨᏎᏍᏗ ᎤᏒ ᎤᏓᎴᏅᏛ ᏑᎾᎴ ᎬᏗᏍᎩ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎾᏍᎩ ᏂᎪᎯᎸ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᎠᎾᏓᏁᏟᏴᏏᏒ ᏑᎾᏓᏡᎩ ᎨᏒ ᎢᏏᎵ ᏧᏪᏥ ᏂᎯᏃ ᎯᏯᏘᏃᎦ ᎯᏯᏓᏓᎴᏛ ᎤᎾᏓᏑᏴ ᎢᏏᎵ ᏧᏪᏥ ᎠᏁᎲᎢ ᎡᎳᏂ ᎡᏣᏂᎵ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎡᎳᏂ, ᎠᎴ ᏁᏓᏈ, ᎠᎴ ᎡᏆᏳ, ᎢᎵᎡᏌ, ᎠᎴ ᎢᏗᎹ, ᎡᎳᏂ ᏧᏪᏥ. ᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏘᏲᏢᎾᏁᏗ ᏘᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎡᏣᏂᎵ, ᏗᎬᏩᎸᏌᏛ ᎠᎴ ᎤᏬᏚᎯ ᎢᏳᏩᏁᎯ. ᏂᎯᏃ ᏘᏁᏤᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᎠᏂᎦᏔᎾᎢ ᏙᏧᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᎧᎵᎢ ᎦᏥᏁᎸᎯ ᏥᎩ ᎠᏓᏅᏙ ᎠᎦᏔᎾᎢ ᎾᏍᎩ ᏧᏃᏢᎾᏁᏗᏱ ᎡᎳᏂ ᏧᏄᏬᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏨ ᎢᏳᏩᏁᎯ, ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏗᎸᏬ ᏧᏃᏢᏗ ᎨᏒᎢ; ᎠᏓᏁᏣᏍᏚᎶ, ᎠᎴ ᎡᏉᏗ, ᎠᎴ ᏂᎦᏰᏫᏒᎾ ᎠᏄᏬ, ᎠᎴ ᏗᎪᏪᎵ ᎭᏫᏂ ᎠᏄᏬ, ᎠᎵᏍᏚᎶ, ᎠᎴ ᎠᏓᏠᏍᏗ; ᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏧᏃᏢᎾᏁᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎡᏣᏂᎵ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎪᎢᏍᏗ ᎠᏆᏛᏁᏗᏱ ᎠᏂᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎴ ᎤᏅᏙᏗ ᎨᏎᏍᏗ, ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᏢᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ. ᎡᏉᏗᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏃᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ, ᎠᎴ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏎᏍᏗ ᎾᎿᏂ. ᎢᏧᎳᏃ ᏗᎦᏅᏬ ᏤᎯ ᎢᏧᎳ ᏓᏍᏛ ᏧᏠᎯᏍᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ ᏚᏚᏓᏖᏍᏗ. ᎠᏓᏠᏍᏗᏃ ᎡᏉᏗ ᎦᎸᏍᏙᏗ ᎾᎿ ᏂᎦᏛ ᎤᏠᏱᏉ ᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩᏯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ; ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ. ᎠᎴ ᏔᎵ ᎣᏂᎩ ᏅᏯ ᏕᎯᎩᎡᎭ, ᎠᎴ ᎾᎿ ᏕᎯᏰᎶᎸᎭ ᏕᎨᏪᎳᏅᎭ ᏕᎣᎾ ᏙᎥ ᎢᏏᎵ ᏧᏪᏥ; ᏑᏓᎵ ᏚᎾᏙᎥ ᏌᏉ ᏅᏲᎯ ᏕᎪᏪᎴᏍᏗ, ᎠᏂᏐᎢᏃ ᏚᎾᏙᎥ ᏑᏓᎵ ᎢᏯᏂᏛ ᏐᎢᏱ ᎾᏲᎯ ᏕᎪᏪᎴᏍᏗ, ᎾᏍᎩᏯ ᎤᎾᏕᏅᏒᎢ. ᎾᏍᎩ ᏅᏲᎯ ᎠᏰᎶᎯ ᏗᎪᏪᎵᏍᎩ ᎤᏬᏪᎳᏅᎯ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᏐᎥᏍᏙᏗ ᏂᎬᏅᎢ ᎪᏪᎸ ᏕᎪᏪᎴᏍᏗ, ᎾᏍᎩ ᏔᎵ ᏅᏯ, ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏙᎥ ᏕᎪᏪᎴᏍᏗ; ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎾᎿ ᏅᏯᏗᎦᎪᏗᏱ ᏕᎯᎧᏅᎴ. ᎾᏍᎩᏃ ᏔᎵ ᏅᏯ ᎡᏉᏗᏱ ᏗᎦᏅᏬᎢ ᏕᎧᏅᎭ, ᎾᏍᎩ ᏅᏯ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ, ᎡᎳᏂᏃ ᎾᏍᎩ ᏚᎾᏙᎥ ᏕᎤᏃᏝᎮᏍᏗ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩ ᎨᎦᏅᏓᏍᏙᏗ. . ᎠᎴ ᏅᏯ ᏗᎦᎪᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎨᏢᏔᏅᎭ; ᏧᏓᏕᏒᏛᏃ ᏔᎵ ᏕᎨᏢᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏕᎰᏢᏔᏅᎭ, ᏓᏍᏛᎢ ᏕᎦᏕᏍᏗ; ᎾᏍᎩ ᏗᏏᏓᎵ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᏧᏓᏕᏒᏛ ᏅᏯᏗᎦᎪᏗᏱ ᏕᎫᏓᎴᏍᏗ. ᎠᏓᏁᏣᏍᏚᎶᏃ ᏗᎫᎪᏙᏗ ᎰᏢᏅᎭ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏔᏁᎸᎯ ᎨᏎᏍᏗ; ᎡᏉᏗ ᎢᏨᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏅᏁᎸᎭ ᎨᏢᏅᎭ; ᎰᏢᏔᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎠᎴ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏌᏓᎵ. ᎢᎦᏲᏛᎭ ᎨᏎᏍᏗ ᎬᏩᏚᏫᏛ ᏗᏯᎦᏑᏛᏅᎯ ᎨᏒᎢ, ᎠᏓᏬᎯᎳ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᎠᏓᏬᎯᎳ ᎾᏯᏛᎡᏍᏗ. ᎠᎴ ᎾᎿ ᏗᏣᎪᏗ ᎨᏎᏍᏗ ᎾᏯ, ᎾᏍᎩ ᏅᎩ ᏂᏚᏓᏅᏅ ᏅᏯ; ᏌᏉ ᎤᏓᏅᏅ, ᏓᏂᎵᏯ, ᎠᎴ ᏙᏆᏏ, ᎠᎴ ᎡᎻᎳ ᏕᎦᎧᎮᏍᏗ; ᎯᎠ ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᏓᏅᏅ ᎨᏎᏍᏗ. ᏔᎵᏁᏃ ᎤᏓᏅᏅ ᏃᏈᎩ, ᏌᏆᏯ ᎠᎴ ᏓᎹᏂ ᏕᎦᎧᎮᏍᏗ. ᏦᎢᏁᏃ ᎤᏓᏅᏅ ᏤᏏᏂ, ᎡᎩᏗ, ᎠᎴ ᎠᎻᏗᏏ ᏕᎦᎧᎮᏍᏗ. ᏅᎩᏁᏃ ᎤᏓᏅᏅ ᏇᎵ, ᎠᎴ ᎣᏂᎩ, ᎠᎴ ᏣᏍᏆ; ᎠᏕᎸ ᏓᎶᏂᎨᏍᏛᏱ ᏕᎦᏬᎮᏍᏗ ᎾᎿ ᏗᎦᎪᏗᏱ ᎨᏒ. ᎤᏲᎯᏃ ᏓᏰᎶᎴᏍᏗ ᏕᎪᏪᎴᏍᏗ ᏚᎾᏙᎥ ᎢᏏᎵ ᏧᏪᏥ, ᏔᎳᏚ ᎨᏎᏍᏗ ᏚᎾᏙᎥ ᏕᎪᏪᎸᎢ, ᎠᏐᎥᏍᏙᏗ ᏥᏂᎬᏃ ᏥᎪ-ᏪᎶ ᎾᏍᎩᏯᎢ; ᎠᏂᏏᏴᏫᎭ ᏚᎾᏙᎥ ᏕᎪᏪᎴᏍᏗ ᎾᏍᎩ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸᎢ. ᎠᏓᏁᏣᏍᏚᎶᎩ ᎯᏃ ᏓᏍᏛᎢ ᏧᏓᏕᏒᏛ ᏗᏣᏛᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ. ᎠᎴ ᎠᏓᏁᏣᏍᏕᎶᎩᎯ ᏔᎵ ᏧᏓᏆᏙᎩ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩᏃ ᎯᎠ ᏔᎵ ᏧᏓᏆᏙᎩ ᏗᏣᏆᏙᎩ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᎢᏧᎳ ᎢᏗᏢ ᏓᏍᏛ ᎠᏓᏁᎳᏍᏚᎶᎩᎯ. ᎾᏍᎩᏃ ᏔᎵ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᏕᎸ ᏓᎵᏂᎨ ᏗᎪᏢᏔᏅᎯ ᏗᏣᏛᏗ ᎨᏎᏍᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᎢᏧᎳᏗᏢ ᏓᏍᏛ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ. [ᏗᏐᎢᏃ] ᏔᎵ ᏧᏍᎪᎵ ᎾᏍᎩ ᏔᎵ ᏗᏏᏓᎵ ᏧᏓᏕᏒᏛ ᏕᎱᏓᎸᏅᎭ ᏔᎵ ᏅᏯᏗᎦᎪᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏕᎱᏓᏔᏅᎭ ᏗᎦᏅᏬ ᏤᎯ ᎾᏍᎩ ᎡᏉᏗᏱ ᎢᎬᏱᏗᏢ. ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᏕᎰᏢᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎨᏢᏔᏅᎭ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏧᏍᎪᎵ ᎢᏧᎳ ᎢᏗᏢ ᏕᎭᏔᏅᎭ, ᎾᎿ ᏓᏍᏛᎢ, ᎾᏍᎩ ᎡᏉᏗᏱ ᎠᏍᏆᎨᏂ ᎭᏫᏂᏗᏢ ᏥᎩ. ᏂᏗᎬᏩᏓᎴᏃ ᏧᏓᏆᏙᎩ ᏔᎵ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎰᎨᏢᏔᏅᎭ, ᎠᎴ ᏕᎭᏔᏅᎭ ᎡᏉᏗᏱ ᏔᎵ ᏗᎦᏅᏬ ᏤᎯ ᎭᏫᏂᏗᏢ, ᎢᎬᏱ ᎢᏗᏢ, ᏕᎫᏓᏛ ᎾᎥᎢ, ᎡᏉᏗ ᎦᎸᏍᏗᏗ ᎦᎸᎥ ᎦᎸᎳᏗᏢ. ᎠᏓᏁᏣᏍᏚᎶᏃ ᎠᎴ ᎡᏉᏗ ᏧᏓᏚᏙᏗ ᎨᏎᏍᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛᎢ, ᎤᏅᏙᏗ ᎠᏍᏘ ᏕᎭᎷᎨᎢ, ᎾᏍᎩ ᎦᎸᎳᏗᏢ ᎢᏳᎵᏍᏙᏗᏱ ᎾᎿ ᎦᎸᏍᏗ ᎦᎸᎥ ᎡᏉᏗ, ᎾᏍᎩ ᎠᏓᏁᏣᏍᏚᎶ ᎡᏉᏗᏃ ᏧᎾᎦᎴᏅᏗᏱ ᏂᎨᏒᎾ. ᎡᎳᏂᏃ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏙᎥ ᏓᏱᏙᎮᏍᏗ ᏗᎫᎪᏙᏗ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏕᎦᎧᎲᎢ ᎤᎾᏫᏱ ᏄᏩᏁᏍᏗ ᎾᎯᏳ ᏩᏴᎯᎮᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲ ᏂᎪᎯᎸᎢ. ᎠᎴ ᏗᎫᎪᏙᏗ ᎠᏓᏁᏣᏍᏕᎶᎩᎯ ᎾᎿ ᏗᏣᎪᏗ ᎨᏎᏍᏗ ᎤᎵᎻ ᎠᎴ ᎡᎳᏂ ᎤᎾᏫᏱ ᏂᏕᎤᏍᏕᏍᏗ ᎾᎯᏳ ᏱᎰᏩ ᎠᎦᏔᎲ ᏫᎦᎷᎨᏍᏗ; ᎠᎴ ᎡᎳᏂ ᎤᎾᏫᏱ ᏂᏕᎤᏍᏕᏍᏗ ᏗᎨᎫᎪᏓᏁᏗ ᎢᏏᎵ ᏧᏪᏥ ᏱᎰᏩ ᎠᎦᏔᎲ ᏂᎪᎯᎸᎢ. ᎠᏄᏬᏃ ᎡᏉᏗ ᎭᏫᏂᏗᏢ ᎠᏄᏬᏍᏗ ᏕᎭᎷᎨᏍᏛᎭ ᏦᏢᏙᏗ ᎨᏎᏍᏗ. ᎤᏍᎩᎵᏃ ᎾᎿ ᎠᏰᎵ ᎠᏔᎴᎭᏍᏗ, ᎠᎴ ᎠᎬᏔᏅᏕᏍᏗ ᎬᏅᎯ ᎠᏔᎴᏒ ᎤᏚᏫᏛ ᎭᏆᏥᏂ ᏣᏔᎴᏐ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎤᏓᏣᎦᎸᏗᏱ ᏂᎨᏒᎾ. ᎭᏫᏂᏗᏢᏃ ᎦᏓᎷᏯᏛᎢ ᏆᎻᏆᏂ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏂᏕᎭᎷᎨ ᎠᎴ ᎠᏂᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎠᏂᎩᎦᎨᎢ, ᎦᏓᎷᏯᏛ ᎤᏚᏫᏛ ᏗᏣᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᎭᎸᏂᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎠᏰᎵ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᎾᎿ ᎬᏩᏚᏫᏛ; ᎢᎬᏱ ᎦᏖᏍᏗ ᎤᎭᎸᏂᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ, ᎿᏉᏃ ᏆᎻᏆᏂ, ᎤᎭᎸᏂᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ, ᎠᎴ ᏆᎻᏆᏂ, ᎾᎿ ᎦᏓᎷᏯᏛ ᎠᏄᏬᎩᎯ ᎤᏚᏫᏛ. ᎡᎳᏂᏃ ᎤᏄᏪᏍᏗ ᏚᎸᏫᏍᏓᏁᎸᎭ: ᎤᏓᏃᏴᎵᏍᏛᏃ ᎬᏛᎪᏗ ᎨᏎᏍᏗ ᏩᏴᎯᎮᏍᏗ ᎦᎸᏉ ᏗᏳ ᎨᏒ ᏱᎰᏩ ᎠᎦᏔᎲᎢ, ᎠᎴ ᏗᎦᏄᎪᎨᏍᏗ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ. ᎠᏯᏖᎾᏃ ᎤᏥᏍᏓᎷᎩᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎰᏢᏔᏅᎭ; ᎾᎿᏃ ᎯᏰᎶᎸᎭ ᎬᏪᎳᏅᎭ ᎠᏐᎥᏍᏙᏗᏱ ᏥᏕᎪᏪᎶ ᎾᏍᎩᏯᎢ, ᎯᎠ ᏄᏍᏕᏍᏗ, ᏱᎰᏩ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎢᏯᎬᏁᎸᎯ. ᎾᏍᎩᏃ ᏕᎭᎷᎨ ᎠᏇᎷᏍᏗ ᎢᏳᏍᏗ ᎾᎿ ᏣᏯᎸᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᎠᎵᏍᏚᎶᎩᎯ ᎦᏯᎴᏍᏗ, ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᎠᎵᏍᏚᎶᎩᎯ ᎦᏯᎴᏍᏗ. ᎠᎴ ᎡᎳᏂ ᎠᎬᏓᎨᏂ ᎦᏯᎴᏍᏗ; ᎠᎴ ᎡᎳᏂ ᎠᏱᏙᎮᏍᏗ ᎤᏂᏍᎦᏅᏨ ᎾᎿ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏥᎾᏅᏁᎭ ᎢᏏᎵ ᏧᏪᏥ ᏄᏓᎴᏒ ᎠᎾᎵᏍᎪᎸᏗᏍᎬᎢ; ᎠᎴ ᏂᎪᎯᎸ ᎦᏯᎴᏍᏗ ᎡᎳᏂ ᎠᎬᏓᎨᏂ, ᎾᏍᎩ ᎨᎦᏓᏂᎸᎢᏍᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎠᎴ ᏴᎩ ᎬᏗ ᏗᏥᏪᎶᏗ ᎨᏎᏍᏗ ᎭᏫᏂ ᎠᏄᏬ ᎤᏏᏙᎵ ᎤᏥᎸ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᎵᏍᏚᎶ ᎤᏏᏙᎵ ᎤᏥᎸ ᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏓᏠᏍᏗ ᏦᏪᎶᏗ ᎨᏎᏍᏗ ᏴᎩ ᎬᏗ. ᎠᎴ ᎡᎳᏂ ᏧᏪᏥ ᎭᏫᏂ ᏧᎾᏄᏬ ᏗᎩᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏓᏠᏍᏗ ᏗᎩᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎩᏲᏢᏁᏗ ᎨᏎᏍᏗ ᏄᎾᎵᏍᏚᎶ ᏧᎸᏌᏛ ᎠᎴ ᎤᏬᏚᎯ ᎢᏳᏅᏁᎯ. ᎡᎳᏂᏃ ᎡᏣᏂᎵ ᎠᎴ ᏧᏪᏥ ᎾᏍᎩ ᏗᎩᏄᏬᏍᏙᏗ ᎠᎴ ᏗᎩᏍᏚᎶᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᏗᎩᎶᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎩᏯᏒᎦᎶᏗ ᎨᏎᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᎩᏴᏁᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᏧᎾᏑᎶᏃ ᏗᎩᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ ᎤᏥᎸ ᎠᏄᏬ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩ ᎤᏂᏲᏓᎬ ᎨᏒ ᎤᏄᏢᏉᏗ: ᏗᏂᏖᏍᎨᏂ ᎠᏃ ᏗᏂᎦᎶ ᎢᏴᏛ ᏫᏚᏂᎶᎨᏍᏗ. ᎡᎳᏂᏃ ᎠᎴ ᏧᏪᏥ ᎾᏍᎩ ᏚᎾᏑᎴᏍᏗ ᎾᎯᏳᏩᏂᏴᎯᎮᏍᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎾᎯᏳ ᎠᏥᎸ ᎨᎳᏍᏗᏱᎾᎥ ᏩᏂᎷᎨᏍᏗ ᏧᏂᎸᎡᎢᏍᏓᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎾᏍᎩ ᎤᏂᏱᏓᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏍᎦᏂ, ᎠᎴ ᏧᏂᏲᎱᎯᏍᏗᏱ ᏁᎨᏒᎾ. ᎾᏍᎩ ᏧᎧᎾᏩᏛᏍᏗ ᎨᏎᏍᏗ ᎤᏩᏒ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎩ ᎨᏒ ᏂᎪᎯᎸᎢ. ᎯᎠᏃ ᎾᏍᎩ ᎢᎩᏴᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᏂᎩᏴᏁᎸᎭ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᏌᏉ ᏩᎦ ᏧᎪᏅᏍᏓᎵ ᎭᏘᏁᏒᎭ, ᎠᎴ ᎠᏂᏔᎵ ᎤᏂᏃᏕᎾ ᏧᎾᎪᏅᏍᏓᎵ ᎪᎱᏍᏗ ᏄᏂᎪᎸᎾ, ᎠᎴ ᎦᏚ ᎾᎪᏔᏅᎾ, ᎠᎴ ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᎪᎢ ᏗᏑᏱ, ᎠᎴ ᏗᏌᎨ ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᏗᎦᎶᏁᎥᎯ; ᎤᏣᎴᏍᏗ ᎢᏒ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ. ᏌᏉᏃ ᏔᎷᎶᎩᎯ ᏗᏣᎶᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏔᎷᏣᎩᎯ ᏗᎦᎵ ᏗᏣᏲᎯᏍᏗ ᎨᏎᏍᏗ, ᏚᎵᏠᏯᏍᏕᏍᏗ ᏩᎦ ᎠᎴ ᎠᏂᏔᎵ ᎤᏂᏃᏕᎾ. ᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏗᎩᏯᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎹ ᏗᎩᏯᏬᏍᏙᏗ ᎨᏎᏍᏗ. ᏗᏄᏬᏃ ᏗᏣᏁᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎭᏫᏂ ᎠᏄᏬ ᎯᏄᏬᏍᏗ ᎨᏎᏍᏗ ᎡᎳᏂ, ᎠᎴ ᏂᎦᏰᏫᏒᎾ ᎠᏄᏬ ᎡᏉᏗ ᏗᏂᏰᎦᎵ ᎯᏄᏬᎥᎭ, ᎠᎴ ᎡᏉᏗ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶ, ᎠᎴ ᎯᏯᏠᏍᏔᏅᎭ ᎠᏓᏠᏍᏗ ᎡᏉᏗ ᎦᎸᏍᏙᏗ. ᎠᎵᏍᏚᎶᏃ ᎯᏍᏚᎶᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗ ᎠᏯᏖᎾ ᎤᏥᏍᏓᎷᎩᏍᎩ ᎠᎵᏍᏚᎶᎩᎯ ᎯᏯᎸᏅᎭ. ᎪᎢᏃ ᎠᏠᏁᏗ ᎯᏁᎩᏒ ᎠᎴ ᎠᏍᎪᎵ ᎯᏍᏚᏢᎭ ᎠᎴ ᎯᎶᏁᎥᎭ. ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏕᎭᏘᏃᎸᎭ, ᎠᎴ ᎭᏫᏂ ᏗᏄᏬ ᏕᎩᏄᏫᎥᎭ. ᎠᎴ ᏕᎩᏯᏠᏍᏔᏅᎭ ᏗᏓᏠᏍᏗ ᎡᎳᏂ ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏕᎩᏍᏚᎶᏔᏅ ᏗᎵᏍᏚᎶ; ᎠᏥᎸᏃᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᎾᏤᎵ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᏂᎪᎯᎸᎢ; ᎠᎴ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎩᏯᏒᎦᎸᏙᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ. ᎠᎴ ᎯᏯᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᏧᎪᏅᏍᏓᎵ ᏩᎦ ᎢᎬᏱᏗᏢ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎠᎴ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎠᏍᎪᎵ ᏩᎦ ᏧᎾᏏᏔᏗᏍᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎯᎢᏍᏗ ᎨᏎᏍᏗ ᏩᎦ ᏱᎰᏩ ᎠᎦᏔᎲ ᎦᎶᎯᏍᏗᏳᎶᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎢᎦᏛᏃ ᎾᏍᎩ ᏩᎦ ᎤᎩᎬ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏅᎵᏰᏗ ᎨᏎᏍᏗ ᎯᏰᏌᏛ ᎬᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏚᎷᎬᎢ, ᏂᎦᏛᏃ ᎩᎬ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎦᎧᎲ ᎤᎶᏗᏢ ᏣᏨᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏂᎦᏛ ᎤᎵᏦᎯᏛ ᏧᎵᎩᏏᏱ ᎦᏯᎸ ᏣᎴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏪᎶ ᎦᎸᎳᏗᏢ ᏓᏓᎯᏢ ᎡᎯ, ᎠᎴ ᎢᏧᎳ ᏧᏓᎵ ᎠᎴ ᎤᎵᏦᎯᏛ ᎾᎿ ᎦᏯᎸᎢ; ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏕᎭᎪᎲᏍᏔᏅᎭ. ᎤᏫᏯᏍᎩᏂ ᎾᏍᎩ ᏩᎦ ᎠᎴ ᎤᏁᎦ, ᎠᎴ ᎤᏬᎳᏅᎢ, ᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸᏱ ᎠᏂᏅ ᏙᏱᏗᏢ; ᎠᏍᎦᏅᏨ ᎠᎵᏍᎪᎸᏙᏗ ᎾᏍᎩ. ᎠᎴ ᎤᏃᏕᎾ ᏌᏉ ᎯᏯᏘᏅᏍᏗ ᎨᏎᏍᏗ; ᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏏᏔᏗᏍᏗ ᎨᏎᏍᏗ ᎠᏍᎪᎵ ᎤᏃᏕᎾ. ᎠᎴ ᎯᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ, ᎠᎴ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ ᎤᎩᎬ ᎠᎴ ᎠᏥᎸ -ᎨᎳᏍᏗᏱ ᏂᎬᎾᏛ ᏗᏣᏍᏚᏟᏓᏍᏗ ᎨᏎᏍᏗ. ᎤᏃᏕᎾᏃ ᎯᎬᎠᎷᏯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎵᎩᏏ ᏗᏨᎩᎶᏍᏗ ᎨᏎᏍᏗ ᎠᎴ ᏗᎦᏅᏍᎨᏂ, ᏗᎬᎭᎸᏛᏃ ᎠᎴ ᎤᏍᎪᎵ ᏓᎲ ᎾᎿ ᏗᏣᏗ ᎨᏎᏍᏗ ᎾᏍᎩ. ᎤᏃᏕᎾᏃ ᏂᎬ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᏯᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎰᏩ ᎯᎠ; ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎯᎠ, ᎠᏥᎸ ᎬᏗ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎰᏩ. ᎠᎴ ᏐᎢ ᎤᏃᏕᎾ ᎯᏯᏘᏅᏍᏗ ᎨᏎᏍᏗ; ᎡᏁᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏏᏔᏗᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ ᎤᏍᎪᎵ. ᎿᏉᏃ ᎯᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ, ᎠᎴ ᎢᎦᏛ ᎤᎫᎬ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏅᎵᏰᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎦᏘᏏ ᎦᎴᏂ ᎠᏍᏛᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎠᎦᏘᏏ ᏗᏂᎴᏂ ᎠᏍᏛᎢ, ᎠᎴ ᎤᏛᏃᎯ ᏓᏂᏰᏌᏛ ᎠᎦᏘᏏ. ᏧᏃᏰᏂ, ᎠᎴ ᏧᏛᏃᎯ ᏓᏂᎾᏌᏛᎢ ᎠᎦᏘᏏ ᏧᎾᎳᏏᏕᏂ, ᎠᎴ ᎩᎬ ᏗᏣᏍᏚᏟᏓᏍᏗ ᎨᏎᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏂᎬᎾᏛᎢ. ᎩᎬᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᏓᏅᎵᏰᎥ ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎡᎳᏂ ᎯᏍᏚᏟᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏄᏬᎩᎯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏄᏬᎩᎯ; ᎾᏍᎩᏃ ᎠᏥᎸᏉᏔᏅᎯ Ꮥ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏄᏬ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏄᎾᏄᏬ ᏗᎦᎸᏉᏔᏅᎯ ᎨᏎᏍᏗ. ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᎤᏃᏕᎾ ᎤᎵᏦᎯᏛ ᎠᎴ ᏗᎦᏆᎵᎢ, ᎠᎴ ᎤᎵᏦᎯᏛ ᏧᎵᎩᏏᎯ ᎦᏯᎸᎢ, ᎠᎴ ᎤᏪᎶ ᎦᎸᎳᏗᏢ ᏓᏓᎯᏢ ᎡᎯ, ᎠᎴ ᎢᏧᎳ ᏧᏓᎵ, ᎠᎴ ᎤᎵᏦᎯᏛ ᎾᎿ ᎦᏯᎸᎢ, ᎠᎴ ᎠᎦᏘᏏ ᎦᎦᎳ; ᎦᎸᏉᏗᏳᏰᏃ ᎢᎬᏁᎯ ᎤᏃᏕᎾ. ᎠᎴ ᏌᏉ ᎦᏌᏆᎸ ᎦᏚ, ᎠᎴ ᏌᏉ ᎦᏚ ᎪᎢ ᏗᏑᏱ, ᎠᎴ ᏌᏉ ᏌᎨ ᎦᏚ ᏔᎷᏣᎩᎯ ᏗᎦᎴᏛ ᎾᏍᎩ ᎾᎿ ᎾᎪᏔᏅᎾ ᎦᏚ ᎦᎸᎢ ᏱᎰᏩ ᎠᎦᏔᎲ ᎢᎬᏱᏗᏢ ᎠᏝᎲᎢ. ᎾᏍᎩᏃ ᏂᎦᏛ ᏗᎩᏯᏒᎦᎶᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏗᏣᏖᎸᏗ ᏗᏣᏨᏏᏰᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏨᏏᏰᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎠᎴ ᏗᎩᏯᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏗᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎨᏎᏍᏗ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩ ᎯᎠ ᎠᏥᎸ ᎬᏗ ᎠᎵᏍᎪᎸᏔᏅᎯ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎤᏃᏕᎾᏃ .ᎡᎳᏂ ᎦᎸᎳᏗᏱ ᎢᏳᏩᏁᎯ ᎦᏁᏥᏱ ᎡᎯ ᏣᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏕᎸᏗ ᏣᏨᏏᏰᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏨᏏᏰᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲᎢ; ᎠᎴ ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ. ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏨᏁᏗ ᎨᏎᏍᏗ ᎦᏁᏥᏱ ᎾᏍᎩ ᎠᏨᏏᏰᏗ, ᎠᎴ ᎦᏚᎳ ᎾᏍᎩ ᎠᏌᎳᏙᏗ, ᎾᏍᎩ ᎠᏨᏏᏰᏗ ᏥᎩ, ᎠᎴ ᎠᏌᎳᏙᏗ ᏥᎩ, ᎾᏍᎩ ᎤᏃᏕᎾ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎯ, ᎾᏍᎩ ᎡᎳᏂ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏧᏯᏥ ᎤᎾᏤᎵᎦ. ᎠᎴ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎤᎾᏤᎵ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᎬᏩᏂᏁᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎪᎯᎸᎢ; ᎾᏍᎩᏰᏃ ᎠᏌᎳᏙᏗ ᎠᎵᏍᎪᎸᏙᏗ, ᎠᎴ ᎠᏌᎳᏙᏗ ᎠᎵᏍᎪᎸᏉᏗ ᎨᏎᏍᏗ, ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᎵᏍᎪᎸᏙᏗ, ᎾᏍᎩ’ ᎠᏥᎸ-ᎨᎳᏍᏗ ᏙᎯᏱ ᎤᏂᏁᎯ ᎪᏣᎴᏛ, ᎠᏌᎳᏙᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎤᎾᎵᏍᎪᎸᏓᏁᏗ ᏱᎰᏩ. ᏗᎦᎸᏉᏗᏃ ᏗᏄᏬ ᎡᎳᏂ ᏧᏤᎵᎦ, ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏲᎱᏒᎭ, ᎾᏍᎩ ᏚᎾᏄᏪᏍᏗ ᎨᏥᎶᏁᎥᎭ ᎠᎴ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎨᎦᏒᎦᎶᏔᏅᎭ. ᎾᏍᎩᏃ ᎤᏪᏥ ᎤᏓᏁᏟᏴᏍᏓᏁᎸᎯ ᎠᏥᎸ ᎨᎶᎯ ᎨᏒᎢ, ᏧᏄᏬᏍᏗ ᎨᏎᏍᏗ ᏚᎵᏉᎩ ᎢᎦ, ᎾᎯᏳ ᎠᏴᎵᎸᎭ ᎦᎵᏦᏛ ᏗᏚᎳᏫᎢᏍᏗᏱ, ᏧᎸᏫᏍᏓᏁᏗᏱ ᎾᎿ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎤᏃᏕᎾᏃ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎯ, ᏣᏁᏍᏗ ᎨᏎᏍᏗ ᎠᎴ ᏧᏗ ᎨᏎᏍᏗ ᎾᎿ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ ᎤᏫᏯ, ᎠᎴ ᎦᏚ ᏔᎷᏣᎩᎯ ᎦᎸᎢ, ᎦᎶᎯᏍᏗᏳᎶᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎠᎴ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏃᎯᏍᏙᏔᏅᎯ ᎾᏍᎩ ᏧᎾᏒᎦᎶᏗᎭ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎴ ᎦᎸᏉᏗᏳ ᏥᏄᏅᏁᎭ, ᏅᏩᏓᎴᏍᎩᏂ ᎥᏝ ᎤᎩᏍᏗ ᏱᎨᏎᏍᏗ, ᏚᎸᏉᏗᏳᏰᏃ. ᎢᏳᏃ ᎢᎦᏛ ᎤᏫᏯ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᏓᏒᎦᎶᏗᏍᎩ ᎠᎴ ᎦᏚ ᏳᎵᏃᎯᏴ ᏑᎾᎴ ᎢᏴᏛ, ᎿᏉ ᎾᏍᎩ ᎤᎵᏃᎯᏴᎯ ᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸᏱ; ᎥᏝ ᎠᎩᏍᏗ ᏱᎨᏎᏍᏗ, ᎦᎸᏉᏗᏳᏰᏃ. ᎠᎴ ᎾᏍᎩ ᎢᎩᏴᏁᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩᏯ ᏂᎦᎥ ᏂᎬᏪᏎᎸ ᎬᏁᏤᎸᎢ; ᎦᎵᏉᎩ ᎢᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎩᏯᏒᎦᎶᏗᏍᎬ. ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᏩᎦ ᎠᏍᎦᏅᏨ ᎠᎵᏍᎪᎸᏙᏗ, ᎾᏍᎩ ᎪᎯᏍᏗᏍᎩ; ᎠᎴ ᏣᏅᎦᎸᏗ ᎨᏎᏍᏗ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎨᎯᏍᏓᏁᎸᎢ, ᎠᎴ ᏣᎶᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎯ. ᎦᎸᏉᎩ ᎢᎦ ᏦᎯᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏨᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎦᏃᏟᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏂᎸ- ᎨᎳᏍᏗᏱ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ. ᎯᎠᏃ ᎾᏍᎩ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎠᏥᎸᎨᎳᏍᏗᏱ; ᎠᏂᏔᎵ ᎤᏂᏃᏕᎾ ᎤᎾᏕᏘᏴᏛ ᏂᏚᎩᏨᏂᏒ ᏂᎪᎯᎸᎢ ᏗᏣᏢᏍᎪᎸᏙᏗ. ᏌᏉ ᎤᏃᏕᎾ ᏑᎾᎴ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎤᏃᏕᎾ ᎤᏒ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ; ᏌᏉᏃ ᎤᏃᏕᎾ ᎤᎵᏠᏯᏍᏕᏍᏗ ᏩᎾᎨ ᎢᏒ ᎠᏍᎪᎯᏁ ᎢᎦᏛᎯ ᎠᏟᎶᎥᎯ, ᎠᏑᏰᏍᏗ ᎪᎢ ᎦᏅᏆᎶᎥᎯ, ᏅᎩ ᎢᎦᏛᎯ ᎯᎾ ᎠᏟᎶᏍᏗ ᏌᏉ ᎢᏯᏟᎶᎥᎯ; ᎠᎴ ᏅᎩ ᎢᎦᏛᎯ ᎯᎾ ᎠᏟᎶᏍᏗ ᎩᎦᎨ ᎠᏗᏔᏍᏗ, ᎾᏍᎩ ᎠᎵᏍᎪᎸᏙᏗ ᎠᏗᏔᏍᏗ. ᏐᎢᏃ ᎤᏃᏕᎾ ᎤᏒ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩᏯ ᎢᏨᏁᏗ ᎨᏎᏍᏗ ᎢᏒ ᎠᎵᏍᎪᎸᏙᏗ ᏂᏨᏁᎸ ᏑᎾᎴᎢ, ᎠᎴ ᎾᏍᎩᏯ ᎠᏗᏔᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᏂᏨᏁᎸᎢ, ᎾᏍᎩ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ. ᎠᏥᎸ ᎬᏗ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎰᏩ. ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗ ᏂᎪᎯᎸ ᏂᏨᎾᏛ. ᎢᏣᏓᏁᏟᏴᏏᏒᎢ, ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏱᎰᏩ ᎠᎦᏔᎲ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ; ᎾᎿ ᏗᏨᏯᏠᎢᏍᏗ ᎨᏎᏍᏗ, ᎾᎿ ᎬᏯᎵᏃᎮᏙᏗᏱ. ᎾᎿᏃ ᏗᎦᏥᏯᏠᎢᏍᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ, ᎦᎸᏉᏗᏳᏃ ᎢᏳᏩᏁᏗ ᎨᏎᏍᏗ ᏓᎩᎸᏌᏛ ᎾᎿᏂ. ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏯᏋᏁᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᎠᎴ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᏅᏓᎦᏥᏴᏁᎵ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎠᏁᎲ ᎠᏆᏕᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ. ᎠᎴ ᎠᏂᎦᏔᎮᏍᏗ ᎾᏍᎩ ᎠᏴ ᏱᎰᏩ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏓᎦᏥᏄᎪᏫᏒᎯ ᎢᏥᏈᏱ, ᎾᏍᎩ ᎠᏁᎲ ᎠᏆᏕᏗᏱ; ᎠᏴ ᏱᎰᏩ ᎦᏥᏯᏁᎳᏅᎯ. ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏦᏢᏗ ᎨᏎᏍᏗ ᎾᎿ ᎦᏩᏒᎩ ᎬᏙᏗᏱ; ᎠᏓ-ᎬᎿᎨ ᏦᏢᏙᏗ ᎨᏎᏍᏗ. ᎠᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᎠᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ: ᎢᎦᏱᏛᎭ ᎨᏎᏍᏗ; ᏔᎵᏃ ᎢᏍᎩᏳᏍᏡᏛ ᏂᎦᏖᏍᏗ; ᏚᎷᎬᏃ ᎤᏠᏱ ᏗᎪᏢᏙᏗ ᎨᏎᏍᏗ. ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏧᏢᏙᏗ ᎨᏎᏍᏗ ᎦᏚ ᎢᏗᏢ, ᎠᎴ ᏗᏍᏆᎨᏂ ᎢᏗᏢ ᎤᏚᏫᏛ, ᎠᎴ ᎾᏍᎩ ᏚᎷᎬᎢ; ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏂᎬᏁᏕᏍᏗ ᎤᏚᏫᏛ ᎦᎸᎳᏗᏢ. ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᏗᏣᏙᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏚᏫᏛ ᏂᎬᏁᏛ ᎡᎳᏗᏢ, ᎾᎿ ᏔᎵ ᏓᏍᏛᎢ ᎢᏧᎳ ᎢᏗᏢ ᏗᏍᏆᎨᏂ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎾᎿ ᏚᏅᏍᏙᏗ ᏗᏝᏗᏍᏗᏱ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᏃᏍᏙᏗ. ᎠᎴ ᎠᏓ-ᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ ᎦᏅᏍᏙᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ. ᎠᎴ ᎠᏄᏬ ᎠᏰᏙᎳᏛ ᎢᎬᏱᏗᏢ ᏣᎪᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ ᏥᏴ ᎾᎥᎢ, ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᎫᏢᏗ ᏥᏴ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ; ᎾᎿ ᏗᎬᏯᏠᎢᏍᏗ ᏥᎩ. ᎡᎳᏂᏃ ᎾᎿ ᎤᏩᏙᏗ ᎨᏎᏍᏗ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ; ᎢᏳᏍᏗᎭ ᏑᎾᎴᎢ, ᎾᎯᏳ ᏗᏨᏍᏙᏗ ᏓᏛᏅᎢᏍᏗᏍᎨᏍᏗ ᎾᎯᏳ ᎦᏩᏒᎩ ᎬᏛᏍᎨᏍᏗ. ᎡᎳᏂᏃ ᏓᏨᏍᏛᏍᎨᏍᏗ ᏗᏨᏍᏙᏗ ᎤᏒᎢ ᎾᎿ ᎬᏛᏍᎨᏍᏗ ᎦᏩᏒᎩ; ᏂᎪᎯᎸ ᏂᏨᎾᏛ ᎢᏣᏓᏁᏟᏴᏎᎬ ᎬᏙᏗ ᎨᏎᏍᏗ ᎦᏩᏒᎩ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎥᏝ ᎤᏓᎴᎯ ᎦᏩᏒᎩ ᎾᎿ ᎢᏨᏙᏗ ᏱᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎾᎿ ᎠᏥᎸ ᎢᏤᎳᏍᏙᏗ ᏱᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎢᏒ ᎠᎵᏍᎪᎸᏙᏗ ᎾᎿ ᎢᏣᎵᏍᎪᎸᏙᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᎠᏗᏔᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎾᎿ ᎢᏥᏍᏚᏟᏍᏗ ᏱᎨᏎᏍᏗ. ᎡᎳᏂᏃ ᏌᏉ ᏂᎪᎯᏍᏗᏍᎨᏍᏗ ᎾᎿ ᏕᎤᎷᎬᎢ ᏂᏓᏕᏘᏴᎯᏒᎢ, ᎬᏗᏍᎨᏍᏗ ᎠᏍᎦᏅᏨ ᎠᎵᏍᎪᎸᏙᏗ ᎾᏍᎩ ᎪᎯᏍᏗᏍᎩ; ᎾᎿ ᏌᏉ ᏂᎪᎯᏍᏗᏍᎨᏍᏗ ᏂᏓᏕᏘᏴᎯᏒᎢ ᏂᏨᎾᏛ ᎢᏣᏓᏁᏟᏴᏏᏒᎢ; ᎤᏣᏔᏅᎯ ᎦᎸᏉᏔᏁᎸᎯ ᏱᎰᏩ ᎾᏍᎩ. ᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᎯᏳ ᎩᏯᏎᎸ ᎢᏏᎵ ᏧᏪᏥ; ᎾᏍᎩ ᎾᏂᎥᎢ, ᎿᏉ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎤᏂᏁᏗ : ᎨᏎᏍᏗ ᏱᎰᏩ ᏧᎾᏓᏅᏙ ᎠᎫᏴᏙᏗ ᎨᏒᎢ, ᎾᎯᏳ ᎨᎦᏎᎸᎭ; ᎾᏍᎩ ᎤᏕᏍᏙᏗ ᎤᎾᏕᏁᏗᏱ ᏂᎨᏒᎾ ᎾᎯᏳ ᎨᎦᏎᎸᎭ. ᎯᎠ ᎾᏍᎩ ᎤᏂᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᎤᏂᎶᏒᎯ ᎨᎦᏎᎸᎯ ᏄᎾᏛᏅᎢ, ᎠᏰᎵ ᏎᎩᎵ ᎤᎾᎫᏴᏗ ᎨᏎᏍᏗ, ᏓᏁᎶᏕᏍᏗ ᏎᎩᎵ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗ ᎤᏂᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏎᎩᎵ ᏔᎳᏍᎪᎯ ᎩᎳ ᏂᎦᎦ; ᎠᏰᎵ ᏎᎩᎵ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎨᏎᏍᏗ. ᎾᏂᎥ ᎤᏂᎶᏒᎯ ᎨᎦᏎᎸᎯ ᏄᎾᏛᏅᎢ, ᏔᎳᏍᎪᎯ ᏅᏛᎴᏅᏛ ᎤᎶᏒᏍᏗ ᎢᏳᎾᏕᏘᏴᏛ, ᎤᏂᏗ ᎨᏎᏍᏗ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏱᎰᏩ. ᏧᏁᎿᎢ ᎥᏝ ᎤᏟ ᎢᎦᎢ ᎤᏂᏗ ᏱᎨᏎᏍᏗ, ᎤᏲᏃ ᎢᏳᎾᏛᎿᏕᎩ ᎥᏝ ᎡᏍᎦ ᎢᏴᏛ ᎤᏂᏗ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏰᎵ ᏎᎩᎵ ᎠᏗ ᎨᏒᎢ, ᎾᎯᏳ ᎠᏂᎲᏍᎨᏍᏗ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ, ᎾᏍᎩ ᏗᏣᏓᏅᏙ ᎠᎫᏴᏙᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎠᏕᎸ ᎠᎫᏴᏙᏗ ᎨᏒ ᎢᏏᎵ ᏧᏪᏥ ᏗᎩᏱᏯᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎾᏍᎩᏃ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ ᏱᎰᏩ ᎠᎦᏔᎲᎢ, ᎾᏍᎩ ᏗᏣᏓᏅᏙ ᎠᎫᏴᏙᏗ ᎨᏒᎢ. ᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎠᎴ ᎾᏍᏉ ᎰᏢᏅᎭ ᏗᎪᏑᎴᏗᏱ ᎥᏣᏱ ᎰᏢᏔᏅᎭ, ᎠᎴ ᎠᏠᏗᏱ ᎥᏣᏱ ᎨᏢᏔᏅᎭ, ᏗᎪᏑᎴᏗᏱ ᎨᏎᏍᏗ; ᎠᎴ ᎯᎧᏅᎭ ᎠᏰᎵ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᎾᎿ ᎠᎹ ᎯᏢᎭ. ᎡᎳᏂᏰᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎾᎿ ᏧᏃᏑᎴᏗ ᎨᏎᏍᏗ ᏧᏃᏰᏂ ᎠᎴ ᏧᎾᎳᏏᏕᏂ. ᎾᎯᏳ ᏩᏂᏴᎸᎭ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎹ ᏧᏃᎠᏑᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏧᏂᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ; ᎠᎴ ᎾᎯᏳ ᎾᎥ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏂᎷᏨᎭ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎤᏅᏙᏗᏱ ᎠᏥᎸ ᎬᏗ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏧᏃᏑᎴᏗ ᎨᏎᏍᏗ, ᏧᏃᏰᏂ ᎠᎴ ᏧᎾᎳᏏᏕᏂ, ᎾᏍᎩ ᏧᏂᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎾᏍᎩ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ, ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᎳᏅᏛ ᎨᏒ ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏎᎬᎢ. ᎠᎴᏬ ᏱᎰᏩ ᎤᏁᏤᎸᎩ ᎼᏏ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏂᎯᏃ ᏘᎩ ᏄᎬᏫᏳᏒ ᎦᏩᏒᎩ, ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎻᎳ ᎯᏍᎩᏧᏈ ᏎᎩᎵ, ᎤᎦᎾᏍᏛᏃ ᏏᏂᎹᏂ ᎠᏰᎵ ᎢᏴᏛ ᎾᏍᎩ ᎢᎦᎢ, ᎾᏍᎩ ᏯᏛᏅ, ᏔᎵᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏎᎩᎵ, ᎤᎦᎾᏍᏛᏃ ᎦᎳᎹᏏ ᏔᎵᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏎᎩᎵ. ᎦᏏᏯᏃ ᎯᏍᎩᏧᏈ ᏎᎩᎵ, ᏓᏁᎶᏕᏍᏗ ᏎᎩᎵ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏅᏙᏗ ᎨᏒᎢ, ᎣᎵᏩᏃ ᎪᎢ ᏌᏉ ᎯᎾ. ᎾᏍᎩᏃ ᎰᏢᏔᏅᎭ ᎪᎢ ᎦᎸᏉᏗ ᎠᏠᏁᏗ, ᎾᏍᎩᏯ ᎤᏬᏘ ᎪᏢᏍᎩ ᏓᏜᏍᏗᏍᎬ ᏗᏜᏍᏔᏅᎯ ᎨᏎᏍᏗ ᎯᎠ ᎠᏠᏁᏗ;: ᎦᎸᏉᏗ ᎠᏠᏁᏗ ᎪᎱ ᎨᏎᏍᏗ. ᎯᎠᏃ ᎾᏍᎩ ᏕᎯᎶᏁᏔᏅᎭ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ, ᎠᎴ ᎦᏍᎩᎶ ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ, ᎠᎴ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᏩᏒᎩ ᎬᏙᏗᏱ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎠᎴ ᎾᏍᎩ ᎠᏠᏗᏱ. ᎠᎴ ᏗᏣᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏣᏔᏅᎯ. ᏗᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎦᏃᏟᏍᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ. ᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎩᎶᏁᎥᎭ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᎩᏴᏁᎸᎭ ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏗ ᎨᏒᎢ. ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎩᏁᏤᎸᎭ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᎯᎠ ᎾᏍᎩ ᏍᎩ ᏍᏆᏂᎪᏓᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗ ᎠᏠᏁᏗ ᎪᎱ ᏂᎪᎯᎸ ᎢᏣᏓᏁᏟᏴᏎᎬᎢ. ᏴᏫ ᎤᏇᏓᎸᎢ ᎥᏝ ᎠᏍᏚᏟᏍᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏦᏢᏗ ᏱᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏗᏜᏍᏔᏅᎯ; ᎦᎸᏉᏗᏳ ᎾᏍᎩ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ. ᎩᎶ ᎾᏍᎩ ᏂᎬᏁᎮᏍᏗ ᏓᏜᏍᏗᏍᎨᏍᏗ, ᎠᎴ ᎩᎶ ᏅᏩᏓᎴ ᎢᎠᏍᏚᏟᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ ᎤᏤᎵᎪᎯ ᏴᏫᎯ ᎤᏓᏑᏴᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᏟᏌ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᏍᏕᎩᏗ, ᎠᎴ ᎣᏂᎦ, ᎠᎴ ᎦᎵᏆᎾ,Ꮻ ᎯᎠ ᎾᏍᎩ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎤᎵᏠᏯᏍᏕᏍᏗ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᎦᎾᏍᏛ ᎬᏙᏗ ᎠᏜ; ᎤᏠᏱᏉ ᎨᏎᏍᏗ ᏂᏕᎦᎥᎢ. ᎠᎴ ᎦᏩᏒᎩ ᎬᏙᏗ ᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᏗᏜᏍᏔᏅᎯ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏅᏬᏘ ᎪᏢᏍᎩ ᏥᏓᏜᏍᏗᏍᎪᎢ, ᎠᎹ ᎦᎳᏅᎯ ᎨᏎᏍᏗ, ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎴ ᎦᎸᏉᏗᏳ. ᎢᎦᏛᏃ ᏣᏅᏆᎶᏍᏗ ᎨᏎᏍᏗ ᎤᏃᎱᏲᎵ ᎢᏨᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᎦᏛ ᏣᏗ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ, ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᎿ ᏗᎬᏯᏠᎢᏍᏗ ᎨᏒᎢ; ᎤᏣᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ ᎾᏍᎩ. ᎾᏍᎩᏃ ᎦᏩᏒᎩ ᎬᏙᏗ ᏦᏢᏗ ᏥᎩ, ᎥᏝ ᎢᏨᏒ ᎢᏣᏓᏙᏢᎾᏁᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᏓᏜᏍᏛᎢ; ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ ᏱᎰᏩ ᎤᏤᎵᎦ. ᎩᎶ ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎪᏢᏍᎨᏍᏗ, ᎠᎵᏒᎢᏍᏙᏗ, ᎾᏍᎩ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ ᎤᏤᎵᎪᎯ ᏴᏫᎯ ᎤᏮᏑᎬᎢ. ᏱᎰᏩᏃ ᎼᏏ ᎤᏁᏤᎸᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᏚᏙᎥ ᏥᏯᏅᎲ ᏇᏣᎵᎵ ᏳᎳ ᎤᏪᏥ, ᎾᏍᎩ ᎭᎵ ᎤᏪᏥ, ᏧᏓᏏ ᎠᏂᎳᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ. ᎠᎴ ᎠᎧᎵᎢ ᏥᏁᎸ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ, ᎾᏍᎩ ᎠᏏᎾᏌᏂ ᎨᏒ, ᎠᎴ ᎪᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎠᎦᏔᎾᎢ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ. ᎠᏯᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏅᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ. ᎠᎴ ᏅᏯ ᏗᏲᎳᏅᎯ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓ ᎪᏢᏅᎥᏍᎩ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ. ᎠᎴ ᎠᏴ, ᎬᏂᏳᏉ ᏕᏥᏲᏒ ᎾᏍᏉ ᎡᎰᎵᎠᏈ, ᎠᎯᏌᎹᎩ ᎤᏪᏥ, ᏕᏂ ᎠᏂᎳᏍᏓᎸ ᏧᏴᏫ; ᎠᎴ ᎾᏂᎥ ᎠᏂᏏᎾᏌᏂ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎦᏥᎳᏁᎸ, ᎾᏍᎩ ᎤᏃᏢᏗᏱ ᏄᏓᎴᏒ ᎬᏁᏤᎸᎯ ᏥᎩ; ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎠᎴ ᎫᏢᏗ ᎾᏍᎩ ᎾᎿᏂ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᏚᎵᏦᏛᎢ, ᎠᎴ ᎦᏍᎩᎶ ᎠᎴ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ, ᎠᎴ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏚᏍᎩᎶ ᎦᏩᏒᎩ ᎬᏙᏗᏱ. ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᏗᎪᏑᎴᏗᏱᏃ ᎠᎴ ᎾᏍᎩ ᎠᏠᏗᏱ. ᎠᎴ ᏗᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏗᏄᏬᏍᏗ; ᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᎡᎳᏂ ᎠᏥᎸ ᎨᎶᎯ ᏧᏄᏬᏍᏗ, ᎠᎴ ᏧᎾᏄᏬ ᎾᏍᎩ ᏧᏪᏥ, ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎴ ᎠᏠᏁᏗ ᎪᎢ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎾᎿ ᎦᎸᏉᏗ ᎨᏒ ᎬᏙᏗ, ᎾᏍᎩᏯ ᏄᏓᎴᏒ ᎬᏁᏤᎸ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏎᏍᏗ. ᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏒᎩ, ᎩᏁᏥ ᎾᏍᏉ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᏂᎩᏪᏏ, ᎠᏎ ᎤᎾᏙᏓᏆᏍᎬ ᏗᏆᏤᎵ ᏗᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏰᏃ ᏗᎦᏁᎶᏙᏗ ᎠᏴ ᏂᎯᏃ ᏂᎪᎯᎸ ᎢᏣᏓᏁᏟᏴᏎᎬᎢ; ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎠᏴ ᏱᎰᏩ ᎦᎸᏉᏗᏳ ᎢᏨᏴᏁᎯ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ; ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ; ᎾᏂᎥ ᎩᎶ ᎠᏲᏍᏗᏍᎨᏍᏗ ᎠᏎ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ; ᎩᎶᏰᏃ ᎪᎱᏍᏗ ᎠᏛᏁᎮᏍᏗ ᎾᎯᏳ ᎨᏒᎢ. ᎾᏍᎩ ᏴᏫ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ ᎤᏓᏑᏴ ᎤᏤᎵᎪᎯ ᏴᏫ. ᏑᏓᎵ ᎢᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏍᎩᏂ ᎤᎾᏙᏓᏆᏍᎬ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ, ᏱᎰᏩ ᎦᎸᏉᏓᏁᎸᎯ; ᎩᎶ ᎪᎱᏍᏗ ᎠᏛᏁᎮᏍᏗ ᎤᎾ ᏙᏓᏆᏍᎬ ᎢᎦ ᎨᏒᎢ, ᎠᏎ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎤᎾ ᏙᏓᏆᏍᎬᎢ, ᎤᎾᎦᏌᏯᏍᏙᏗᏱ ᎤᎾ ᏙᏓᏆᏍᎬ ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏎᎬᎢ, ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ. ᎯᎠ ᎾᏍᎩ ᏗᎦᏁᎶᏙᏗ ᎠᏴ ᎢᏏᎵᏃ ᏧᏪᏥ ᏂᎪᎯᎸᎢ; ᏑᏓᎵᏉᏰᏃ ᎢᎦ ᏚᎸᏫᏍᏓᏁᎸᎩ ᏱᎰᏩ ᎤᏬᏢᏅᎩ ᎦᎸᎶ ᎠᎴ ᎡᎶᎯ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎤᏯᏪᏐᎸᎩ, ᎠᎴ ᎤᎦᎵᏍᏙᏒᎡᎩ. ᎼᏏᏃ ᏚᏲᎯᏎᎸᎩ ᎿᏉ ᎤᏍᏆᏛ ᎤᎵᏃᎮᏗᏍᎬ ᎣᏓᎸ ᏌᎾᏱ, ᏔᎵ ᏗᏯᏖᎾ, ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎸᎢ, ᏗᏯᏖᎾ ᏅᏯ ᏗᎪᏢᏔᏅᎯ, ᏗᎪᏪᎵ ᎤᏁᎳᏅᎯ ᎦᏰᏌᏛ ᎬᏔᏅᎯ ᎪᏪᎳᏅᎯ. ᎤᎾᏙᎴᎰᏒᏃ ᏴᏫ ᎼᏏ ᎤᏙᎯᏛᎢ ᎣᏓᎸᎤᏠᎠᎯᏍᏗᏱ, ᎡᎳᏂ ᏫᎬᏩᏓᏡᏫᏍᏔᏁ ᏴᏫ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, Ꭷ, ᎤᎾᏁᎳᏅᎯ ᏗᏍᎩ ᏲᏢᎾᏏ, ᎾᏍᎩ ᎢᎬᏱ ᎪᎨᏅᎡᎯ; ᎯᎠᏰᏃ ᎼᏏ ᎠᏍᎦᏯ ᎢᏥᏠᏱ ᏂᏙᏓᏲᎦᏘ ᎾᏫᎹᏍ, ᎥᏝ ᎡᏥᎦᏔᎭ ᏄᎵᏍᏓᏁᎸᎢ. ᎡᎳᏂᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᏗᏟᏯᏙ ᏗᏣᏓᎩ, ᎾᏍᎩ ᏥᏚᎾᏟᏯᏛ ᏗᏣᏓᎵᎢ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᎠᎴ ᎠᏂᎨᏴ ᏗᏤᏥ, ᎠᏴᏃ ᏕᏍᎩᏲᎮᎸᎭ. ᏂᎦᏛᏃ ᏴᏫ ᏚᎾᏕᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏟᏯᏙ ᎾᏍᎩ ᏚᎾᏟᏯᏛᎢ, ᎠᎴ ᎡᎳᏂ ᏚᏂᏲᎮᎴᎢ, ᎠᎴ ᏚᏓᏂᎸᏤᎴᎢ, ᏅᏲᎯᏃ ᏗᎪᏪᎶᏗ ᎤᏩᏔᏁᎢ ᎣᏍᏛ ᏄᏩᏁᎴᎢ, ᏩᎦ ᎠᎩᎾ ᎬᎾᏬᏔᏅᎯ ᎤᏬᏢᏁᎢ: ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏗᏣᏁᎳᏅᎯ, ᎢᏏᎵ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᎨᏣᏄᎪᏫᏒᎯ. Ꮂ ᎡᎳᏂᏃ ᎤᎪᎲ ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᎤᏬᏢᏁ ᎠᏥᎸ ᎨᎳᏍᏗᏱ; ᎠᎴ ᎡᎳᏂ ᎧᏃᎮᏛ ᏚᏰᎵᎯᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏑᎾᎴᎢ ᏱᎰᏩ ᎠᎵᏍᏓᏴᎾᏁᏗ ᎨᏎᏍᏗ. ᏭᎩᏨᏅᏃ ᏑᎾᎴᏉ ᎠᎴ ᎠᏥᎸ ᎤᏁᎶᎴᎢ, ᎠᎴ ᏚᏂᏲᎴ ᎠᎵᏍᎪᎸᏙᏗ ᏙᎯ ᎠᏓᏁᎯ; ᏴᏫᏃ ᎤᎾᏅᏁ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎤᎾᏗᏔᏍᏗᏱ, ᏚᎾᎴᏁᏉᏃ ᏚᎾᏁᎶᏣᎶᏁᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎮᎾ, ᎭᏠᎠᎯ; ᏗᏣᏤᎵᏰᏃ ᏴᏫ, ᎢᏥᏈᏱ ᏂᏙᏔᏘᎾᏫᏛᏛ ᎤᏲ ᏄᎾᏛᏁ.. ᏞᎩᏳ ᎤᎾᎪᎸᏒ ᎾᎿ ᎦᏅᏅ ᎾᏍᎩ ᎦᏥᏁᏤᎸᎯ ᎨᏒᎢ; ᏩᎦ ᎠᎩᎾ ᎬᎾᏬᏔᏅᎯ ᎤᏅᏒ ᎤᎾᏓᏙᏢᏁᎸ, ᎠᎴ ᎠᏥᎸ ᎤᏁᎴᎸ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒ, ᎯᎠ ᎾᏍᎩ ᏗᏣᏁᎳᏅᎯ, ᎢᏏᎵ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᏣᏄᎪᏫᏒᎯ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎦᏥᎪᎥ ᎯᎠ ᏴᏫ, ᎠᎴ ᎬᏂᏳᏉ, ᏧᏩᏗᏔᏯ ᏗᏂᎵᎨᏂ ᎯᎠ ᏴᏫ: ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏁᎳᎩ, ᎾᏍᎩ ᎠᎩᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏗᎴᎩ ᏫᏂᎦᎵᏍᏓ ᎾᏍᎩ ᎤᎾᏡᏗᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏱᎦᏥᏛᏓ; ᏂᎯᏃ ᏣᏧᏡᏍᏗ ᏣᏓᏤᎵᏛ ᏴᏫ ᏅᏓᎬᏴᏁᎵ. ᎼᏏᏃ ᎤᏔᏲᏎᎴ ᏱᎰᏩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏱᎰᏩ, ᎦᏙᏃ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏗᎴᎩᏳ ᎢᎩ ᏗᏣᏤᎵ ᏴᏫ ᏕᎭᏡᏗᏍᎬᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏂᏙᏔᏘᏅᏍᏔᏅᎯ, ᏨᏔᏅᎯ ᏣᎵᏂᎩᏛ ᎨᏒ, ᎠᎴ ᏨᏔᏅᎯ ᎤᎵᏂᎩᏛ ᏦᏰᏂ? ᎦᏙᏃ ᎢᏥᏈᏱ ᎠᏁᎯ. ᏯᏂᏁᎦ ᎯᎠ ᏱᎾᏂᏪᎭ, ᎤᏲᏉ ᎤᎬᏩᎴ ᏥᏙᏧᏄᎪᏫᏎᎢ, ᏧᎯᏍᏗᏱᏉ ᎦᏚᏏ ᏕᎨᏒᎢ, ᎠᎴ ᏧᏛᏙᏗᏱ ᎡᎶᎯ ᎠᏁᎲᎢ? ᎭᎦᏔᎲᎾ ᎯᏲᎯᏍᏓ ᎯᎠ ᎾᏍᎩ ᎤᏗᎴᎬ ᏣᏔᎳᏬᏍᎬᎢ, ᎠᎴ ᎯᏁᏟᏴᎾ ᎤᏲ ᎢᎩᏴᏁᏗᏱ ᏕᏧᎪᏛ ᎯᎠ ᏴᏫ; ᎩᏯᏅᏓᏓ ᎡᏆᎭᎻ, ᎡᏏᎩ, ᎠᎴ ᎢᏏᎵ, ᎩᏅᏏᏓᏍᏗ, ᎩᏯᏎᎵᏓᏁᎸᎯ ᏨᏒ ᎨᏒ ᎩᏁᎢᏍᏓᏁᎸᎯ ᎠᎴ ᎯᎠ ᎢᎩᏪᏎᎸᎯ, ᏓᎦᏥᏁᏉᎢ ᎢᏣᏁᏢᏔᏅᏛ ᎨᏒ, ᏃᏈᏏ ᎦᎸᎶ ᎠᏂᎧᎸ ᎾᏍᎩᏯᎢ; ᎠᎴ ᏂᎦᏛ ᎯᎠ ᎦᏙᎯ ᎠᎩᏁᎢᏍᏔᏅᎯ ᏥᎩ ᎦᏥᏁᏗ ᎨᏎᏍᏗ ᎢᏣᏁᏢᏔᏅᏛ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏤᎵ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ. ᏱᎰᏩᏃ ᎤᏁᏟᏴᏒᎩ ᎤᏓᏅᏛ ᎾᏍᎩ ᎤᏲ ᎢᏧᏩᏁᏗᏱ ᎤᏓᏅᏖᎸ ᏧᏤᎵ ᏴᏫ. ᎼᏏᏃ ᎤᎦᏔᎲᏒᎩ, ᎠᎴ ᎤᏠᎠᏒᎩ ᎣᏓᎸᎢ ᎠᎴ ᏗᏯᏖᎾ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎸ ᏚᏒᎦᎸᎩ, ᏗᏯᏖᎾ ᎢᏧᎳᏗᏢ ᏕᎪᏪᎸᎩ; Ꭰ ᎢᏗᏢ ᎠᎴ ᏐᎢ ᎢᏗᏢ ᏕᎪᏪᎸᎩ. ᏗᏯᏖᎾᏃ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏅᎯ ᎨᏒᎩ, ᎪᏪᎸᏃ ᎤᏁᎳᏅᎯ ᎤᏬᏪᎳᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᏗᏰᎶᎸᎯ ᎨᏒᎩ ᏗᏯᏖᎾ. ᏦᏑᏫᏃ ᎤᏛᎦᏅᎩ ᎤᎾᏓᏃᏴᎵᏍᏛ ᏴᏫ, ᎾᏍᎩ ᎤᏁᎷᎬᎢ, ᎯᎠᏃ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏓᎿᏩ ᎤᏍᏆᏃᏴᎦ Ꭰ ᏙᏗᏓᏅᎢ. ᎯᎠᏃ ᏄᏪᏒᎩ, ᎥᏝ ᎤᎾᏓᏎᎪᎩᏛ ᎢᏳᏂᏪᏍᏗ ᎤᎾᏓᏃᏴᎵᏍᏛ ᏱᎩ, ᎥᏝ ᎠᎴ ᎨᏥᏎᎪᎩᏛ ᎢᏳᏂᏪᏍᏗ ᎤᎾᏓᏃᏴᎵᏍᏛ ᏱᎩ; ᏗᏂᏃᎩᏍᎩᏍᎩᏂ ᎤᎾᏓᏃᏴᎵᏍᏛ ᎦᏛᎩᎠ ᎠᏴ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎾᎥᏉ ᎤᎷᏨ ᎠᏂᏅᎢ, ᎤᎪᎲᎩ ᏩᎦ ᎠᎩᎾ, ᎠᎴ ᎠᎾᎵᏍᎩᏍᎬᎢ: ᎼᏏᏃ ᎤᏔᎳᏬᏍᎬ ᎤᏗᎴᎩ ᏄᎵᏍᏔᏅᎩ, ᎠᎴ ᏚᏗᏅᏒᎩ ᏗᏯᏖᎾ ᏓᏰᎲᎢ, ᎠᎴ ᏚᏲᏍᏔᏅ ᏩᎦᏐᎠᏍᎬᎢ. ᎠᎩᎾᏃ ᎾᏍᎩ ᎤᏃᏢᏅᎯ ᎤᎩᏒᎩ, ᎠᎴ ᎠᏥᎸᏱ ᎤᎪᎲᏍᏔᏅᎩ, ᎠᎴ ᎤᏪᏓᏬᏔᏅᎩ ᎪᏍᏚ ᏄᏩᏁᎸᎩ, ᎠᎴ ᎤᎴᎳᏛᏅᎩ ᎠᎼᎯ, ᎠᎴ ᎠᏎ ᎤᎾᏗᏔᏍᏗ ᏂᏚᏩᏁᎸᎩ ᎢᏏᎵ ᏧᏪᏥ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎡᎳᏂ, ᎦᏙ ᎨᏨᏁᎴ ᎯᎠ ᏴᏫ, ᎾᏍᎩ ᎢᎦᎢ ᎡᏉᎯᏳ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᏘᏲᎮᏗᏱ? ᎡᎳᏂᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏞᏍᏗ ᎤᏔᎳᏬᏍᎬ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᎤᏗᎴᎩ ᎢᏳᎵᏍᏔᏅᎩ; ᏕᎯᎦᏔᎭ ᎯᎠ ᏴᏫ ᎤᏲᏉ ᏚᎸᎪᏛᎢ. ᎯᎠᏰᏃ ᏂᎬᎩ ᏪᏎᎸᎩ, ᏗᏍᎩ ᏲᏢᎾᏏ ᏦᎦᏁᎳᏅᎯ ᎾᏍᎩ ᎢᎬᏱ ᎪᎨᏅᎡᎯ; ᎯᎠᏰᏃ ᎼᏏ, ᎠᏍᎦᏯ ᎾᏍᎩ ᎢᏥᏈᏱ ᏂᏉᏙᏓᏲᎦᏘ ᎾᏫᏛᏛ, ᎥᏝ ᏲᏥᎦᏔᎭ ᏄᎵᏍᏓᏁᎸᎢ. ᎯᎠᏃ ᏂᎦᏥᏪᏎᎸᎩ, ᎩᎶ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎾᏣᏅᏕᏍᏗ, ᎾᏍᎩ ᏫᏓᎾᏓᎩ: ᎰᏩᏃ ᎥᎬᎩᏁᎸᎩ, ᎠᏥᎸᏱᏃ ᏩᏆᏗᏅᏒᎩ, ᎠᎴ ᎯᎠ ᏩᎦ ᎠᎩᎾ ᏛᎤᎾᏄᎪᏨᎩ. ᎼᏏᏃ ᏚᎪᎲ ᏧᏂᏲᏓᎬ ᎨᏒ ᏴᏫ, ᎡᎳᏂᏰᏃ ᎤᏂᏲᏓᎬ ᏂᏚᏩᎡᎸᎩ ᎤᎾᏕᎰᎯᏍᏗᏱ ᎠᏂᎦᏔᎲ ᎬᏩᎾᏡᏗᏍᎩ, ᎿᏉ ᎼᏏ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎤᎴᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎦᎪ ᏱᎰᏩ ᎢᏗᏢ ᎤᎵᎪᏗ? ᎾᏍᎩ ᏩᎩᎷᏥᏏ. ᏂᎦᏛᏃ ᎵᏫ ᏧᏪᏥ ᎾᏍᎩ ᎬᏩᏓᏡᏫᏍᏔᏅᎩ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ, ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏫᏓᎾᎵᎧᏌᏓᏓ ᎠᎴ ᏫᏓᏂᏴᎵᏛ ᎦᎶᎯᏍᏗᏱ ᏕᎨᏌᏗᏒ ᏂᎬᎾᏛ ᏓᏂᎾᏩᏗᏒᎢ, ᎠᎴ ᏫᏓᏂᎷᎦ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎤᏁᏓᏍᏗ ᏫᏓᏂᏍᏗ ᏫᏓᏂᎷᎦ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎾᎥ ᎢᏳᎾᏓᎳ ᏫᏓᏂᎷᎦ. ᎵᏫᏃ ᏧᏪᏥ ᏄᎾᏛᏁᎸᎩ ᎾᏍᎩᏯ ᎼᏏ ᏂᏚᏪᏎᎸᎢ; ᏚᏂᏲᎱᏒᎩᏃ ᏴᏫ ᎾᎯᏳ ᎢᎦ ᏦᎢ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎢᏯᏂᏛ ᏴᏫ. ᎯᎠᏰᏃ ᎢᏳᏪᏛ ᎨᏒᎩ ᎼᏏ, ᎦᎸᏉᏗᏳ ᏁᏣᏓᏛᏂᏏ ᏱᎰᏩ, ᏂᏥᎥ ᎢᏥᏍᎦᏯ ᏗᏨᏓ ᏗᏤᏥ, ᎠᎴ ᎢᏣᎵᏅᏟ; ᎾᏍᎩ ᎣᏍᏛ ᎢᏥᏁᏗᏱ ᎪᎯ ᎢᎦ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᏭᎩᏨᏅ, ᎾᏍᎩ ᎼᏏ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᎢᏥᏍᎦᏅᎩ ᎡᏆ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎿᏉ ᏓᏥᎾᎷᏏ ᏱᎰᏩ ᏮᏓᏥᎷᏤᎵ; ᏴᎪᎢᏍᏓ ᏱᎩ ᎢᏥᏍᎦᏅᏨᎢ. ᎼᏏᏃ ᏔᎵᏁ ᏱᎰᏩ ᏭᎷᏤᎸᎩ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏒᎩ, ᎤᏲᏍᏛᏉ, ᎯᎠ ᏴᏫ ᎤᏂᏍᎦᏅᏨ ᎡᏆ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏙᏢᎾᏁᎸ ᎤᏁᎳᏅᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ; ᎪᎯᏃ ᎤᏂᏍᎦᏅᏨᎢ ᎢᏳᏃ ᎦᎩᏯᏙᎵᏍᏗ ᏱᎩ,-ᎢᏳᏃ ᏱᏝᏉ, ᎯᏲᏍᏓᏉ ᏓᏆᏙᎥ ᎪᏪᎸ ᎪᏪᎵᎯ ᎾᏍᎩ ᏦᏪᎳᏅᎯ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎩᎶ ᎠᎩᏍᎦᏅᏤᎸᎯ ᎾᏍᎩ ᏓᏥᏲᏍᏔᏂ ᏚᏙᎥ ᎪᏪᎸ ᎠᏆᏤᎵ ᎪᏪᎵᎯ. ᎿᏉᏃ ᎮᎾ, ᏔᏘᏄᎦ ᏴᏫ ᎾᎿ ᎬᏁᎢᏍᏓᏁᎸᎯ ᏥᎩ; ᎬᏂᏳᏉ, ᎠᏆᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱ ᏓᏤᏅᎡᎵ; ᎠᏎᏃ ᎾᎯᏳ ᎢᎦ ᎦᏥᏩᏛᎯᎸᎭ, ᎦᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎤᏂᏍᎦᏅᏨᎢ. ᏱᎰᏩᏃ ᏚᏕᏯᏙᏔᏅᎩ ᏴᏫ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏩᎦ ᎠᎩᎾ ᎤᏃᏢᏅᎢ, ᎾᏍᎩ ᎡᎳᏂ ᎤᏬᏢᏅᎯ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ; ᎤᏟ, ᎭᏓᏅᎾ ᎠᏂ, ᏂᎯ ᎠᎴ ᏴᏫ ᎾᏍᎩ ᎢᏥᏈ ᏂᏙᏔᏘᏅᏍᏔᏅᎯ, ᏫᏔᏘᏅᏍᏓ ᎾᎿ ᎦᏙᎯ ᎦᏥᏯᏎᎵᏓᏁᎸᎯ ᏥᎩ ᎡᏆᎭᎻ, ᎡᏏᎫ, ᎠᎴ ᏤᎦᏈ, ᎯᎠ ᎢᎩᏪᏛ ᏥᎩ, ᏣᏁᏢᏔᏅᏛ ᎨᏒ ᎦᏥᏁᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏓᏥᏅᏏ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱ ᏓᏤᏅᎡᎵ; ᎠᎴ ᎦᏥᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎡᏱᎵ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᏯᎵᏥ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ. ᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏕᎦᎶᎴᎬᎢ; ᎥᏝᏰᏃ ᏴᏓᎨᏏ ᎠᏰᎵ ᏱᏨᏯᏓᏑᏰᏍᏗ; ᏧᏩᏗᏔᏯᏰᏃ ᏗᏥᎵᎨᏂ ᏂᎯ; ᏴᏨᏛᏓᏰᏃ ᏫᏣᎢᏒᎢ. ᏴᏫᏃ ᎤᎾᏛᎦᏅ ᎯᎠ ᎾᏍᎩ ᎤᏐᏅ ᎧᏃᎮᏛ, ᏚᎾᏠᏱᎸᎩ; ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏤᎵ ᎠᏣᏅᎩ ᏳᏣᏅᏔᏁᎢ. ᏱᎰᏩᏰᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏒᎩ ᎼᏏ, ᎯᎠ ᏂᎩᏪᏏ ᎢᏏᎵ ᏧᏪᏥ, ᏧᏩᏗᏔᏯ ᏗᏥᎵᎨᏂ ᏴᏫ ᏂᎯ; ᎩᎳᏉ ᎢᏴᏛ ᎠᏰᎵ ᏂᏣᏛᏅ ᏮᏓᏥᎷᏥ, ᎠᎴ ᏓᏨᏛᏔᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᏣᏣᏅᎩ ᎢᏴᏛ ᏘᎲᎦ, ᎾᏍᎩ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ ᎢᎬᏴᏁᏗᏱ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎢᏴᏛ ᏚᏂᏅᎩ ᏧᎾᏣᏅᎩ ᎰᎵᏈ ᎣᏓᎸ ᎾᎥᎢ. ᎼᏏᏃ ᎦᎵᏦᏛ ᎤᎩᏒᎩ, ᎠᎴ ᏙᏱᏗᏢ ᎠᏂᏅ ᏭᎵᏦᏔᏅᎩ, ᎠᏂᏅ ᏰᎵ ᎢᏴᏛ, ᎯᎠᏃ ᏄᏪᏎᎸᎩ ᏚᏬᎥᎩ, ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎩᎶ ᏱᎰᏩ ᎤᏲᎯ ᎦᎸᎪᎬᎩ ᏗᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏫᎦᎶᏍᎬᎩ, ᎾᏍᎩ ᏙᏱᏗᏢ ᎠᏂᏅ ᏗᎦᎵᏦᏛᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎼᏏ ᎦᏄᎪᎢ ᏗᎦᎵᏦᏛ ᏫᎦᎶᎯ, ᏂᎦᏛ ᏴᏫ ᏓᎾᎴᎲᏍᎬᎩ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏚᏂᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎾᎴᎲᏍᎬᎩ, ᎠᎴ ᎼᏏ ᎤᎾᎦᏙᏍᏛᎩ ᎬᏂ ᏩᏴᎲ ᏗᎦᎵᏦᏛᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎼᏏ ᎿᏉ ᏭᏴᎸ ᏗᎦᎵᏦᏛᎢ, ᎤᎶᎩᎸ ᎤᏓᏡᎬ ᎡᎳᏗ ᏄᏛᏁᎸᎩ, ᎦᎵᏦᏛᏃ ᎦᎶᎯᏍᏗᏱ ᎤᎴᏅᎩ, ᏱᎰᏩᏃ ᎤᎵᏃᎮᏔᏅᎩ ᎼᏏ. ᏂᎦᏛᏃ ᏴᏫ ᎤᏂᎪᎲᎩ ᎤᎶᎩᎸ ᎤᏓᏡᎬ ᎦᏙᎬ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ; ᏂᎦᏛᏃ ᏴᏫ ᏚᎾᎴᏅᎩ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅᎩ ; ᎠᏂᏏᏴᏫᎭ. ᏚᏂᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ. ᏱᎰᏩᏃ ᎤᎵᏃᎮᏔᏅᎩ ᎼᏏ ᏓᎾᏓᎧᏅᎢ, ᎾᏍᎩᏯ ᎠᏍᎦᏯ ᎤᎵᎢ ᏣᎵᏃᎮᏗᏍᎪᎢ. ᎤᏨᏒᎩᏃ ᏗᏂᏅ ᏔᎵᏁ ᏭᎶᏒᎩ; ᎤᏅᏏᏓᏍᏗᏍᎩᏂ ᏦᏑᏫ, ᏅᏂ ᎤᏪᏥ, ᎠᏫᏅ, ᎥᏝ ᏳᏄᎪᏤ ᎦᎵᏦᏛᎢ. ᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏱᎰᏩ, ᎬᏂᏳᏉ ᎯᎠ ᏂᏍᎩᏪᏎᎭ, ᏔᏘᏄᎦ ᎯᎠ ᏴᏫ; ᎥᏝᏃ ᏱᏍᎩᏃᏁᎸ ᎾᏍᎩ ᏘᏅᏏᏒ ᎣᏍᏕᎩ. ᎠᏎᏃ ᎯᎠ ᏂᏣᏪᏒ, ᏕᏣᏙᎥ ᎬᏲᎵᏍᏔᏅ, ᎠᎴ ᎾᏍᏉ ᎤᏪᏙᎵᏍᏗ ᏕᎬᏯᎦᎿᏅ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎬᏔᏲᏎᎭ, ᎢᏳᏃ ᎤᏪᏙᎵᏍᏗ ᏱᏗᏍᏆᎧᎿᏅ, ᎿᏉ ᏍᎩᎾᏄᎪᏫᏏ ᏣᏅᏅᎢ, ᎾᏍᎩ ᎬᏲᎵᏍᏗᏱ, ᎾᏍᎩ ᎤᏪᏙᎵᏍᏗ ᏗᏍᏆᎧᏃᏗᏱ; ᎠᎴ ᎭᏓᏅᏛᎵ ᎯᎠ ᎾᏍᎩ ᎤᎾᏓᏤᎵᏛ ᏗᏣᏤᎵ ᏴᏫ ᎨᏒᎢ. ᎯᎠᏃ ᏄᏪᏒᎩ, ᎠᏴ ᏓᏁᏏ, ᎠᎴ ᏓᎬᏯᏪᏐᎸᏍᏔᏂ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ, ᎢᏳᏃ ᏂᎯ ᏂᎩᏁᏅᏒᎾ ᎢᎨᎡᏍᏗ, ᏞᏍᏗ ᏗᏍᎩᏯᏘᎾᏫᏛᎲᎩ ᎠᏂ. ᎦᏙᏃ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏴ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ ᎤᏪᏙᎵᏍᏗ ᏕᏍᎩᏯᎦᎿᏅᎢ? ᏝᏍᎪ ᏍᎩᏰᎳᏛᏍᏗ ᎨᏒ ᎾᎿ ᏱᎩ? ᎾᏍᎩᏃ ᎠᏴ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ ᎣᎦᏙᏣᎴᏛ ᎨᏎᏍᏗ ᏂᎦᏛ ᏴᏫ ᏂᎬᎾᏛ ᎡᎶᎯ ᎠᏁᎲᎢ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᎠ ᎾᏍᏉ ᏥᏂᏫ ᏅᏓᎦᏛᏁᎵ; ᎤᏪᏙᎵᏍᏗᏰᏃ ᏕᎬᏯᎦᏓᏅ, ᎠᎴ ᏕᏣᏙᎥ ᎬᏲᎵᏍᏔᏅ. ᎯᎠᏃ ᏄᏪᏒᎩ, ᏍᎩᎾᏄᎪᏫᏏ ᏕᏣᎸᏌᏛᎢ. ᎯᎠᏃ ᏄᏪᏒᎩ, ᏂᎦᏛ ᎪᏏᏳ ᎨᏒ ᎢᎬᏱᏗᏢ ᏣᎶᎯᏎᏗᏱ ᏅᏓᎬᏁᎵ, ᎠᎴ ᏱᎰᏩ ᏚᏙᎥ ᎬᏂᎨᏒ ᏅᏓᎬᏁᎵ ᎯᎦᏔᎲᎢ; ᎠᎴ ᎤᏪᏙᎵᏍᏗ ᏗᏥᏯᎦᏅᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏪᏙᎵᏍᏗ ᏗᏥᏯᎦᏅᎦ ᎨᎵᏒᎭ, ᎠᎴ ᏥᏯᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏥᏯᏙᎵᎩ ᎨᎵᏒᎭ. ᎯᎠᏃ ᏄᏪᏒᎩ, ᎥᏝᏰᎴᎵ ᏴᎦᎯᎪᏩᏛ ᎠᏆᎧᏛᎢ,Ꮻ ᎥᏝᏰᏃ ᎩᎶ ᏴᎬᎩᎪᏩᏛ ᎠᎴ ᎠᏏ ᏱᎦᎬᏅ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᎠᏓᏁᎳ ᎾᏆᏛᏅ ᎾᎥᎢ, ᎠᎴ ᏅᏲᎯ ᏔᎴᏂ; ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᏓᎩᎸᏌᏛ ᎦᎶᏍᎬ ᎢᎪᎯᏛ, ᎤᏲᎯ ᎠᏔᎴᏒ ᏓᎬᎸᏂ, ᎠᎴ ᎠᏉᏰᏂ ᏓᎬᏳᏢᏔᏂ ᏥᎶᏍᎬ ᎢᎪᎯᏛ; ᎠᏉᏰᏂᏃ ᎢᏴᏛ ᏅᏓᎬᏁᎵ, ᎠᎴ ᏥᏐᎯᏱ ᏘᎪᎯ; ᎠᏆᎧᏛᏍᎩᏂ ᎥᏝ ᎬᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏘᏲᎸᎦ ᏔᎵ ᏗᏯᏖᎾ ᏅᏯ ᎾᏍᎩᏯ ᎢᎬᏱᏱ ᏥᏂᏚᏍᏛᎩ; ᎾᎿᏃ ᏅᏲᎯ ᏓᎪᏪᎳᏂ ᎧᏃᎮᏛ ᎢᎬᏱᏱ ᏅᏲᎯ ᏥᎪᏪᎸᎢ, ᎾᏍᎩ ᏥᏕᏣᏓᏬᏔᏅᎩ. ᎠᎴ ᏣᏛᏅᎢᏍᏕᏍᏗ ᏑᎾᎴᎢ, ᎠᎴ ᎯᎿᎷᏒᎭ ᏑᎾᎴ ᏌᎾᏱ ᎣᏓᎸᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏂᏍᏆᏛᏁᎸᎩ ᎾᎿ ᎦᏏᏏ. ᏞᏍᏗ ᎠᎴ ᎩᎶ ᏱᏍᏕᎡᎮᏍᏗ, ᏞᏍᏗ ᎠᎴ ᎩᎶ ᏴᏫ ᎬᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ ᎾᎿ ᏂᎬᎾᏛ ᎣᏓᎸᎢ; ᏞᏍᏗ ᎠᎴ ᎠᏫ ᎠᎴ ᎦᎾᏝᎢ ᎢᎬᏱᏗᏢ ᎣᏓᎸ ᎤᎾᎵᏍᏓᏴᏂ ᏙᎸᎩ. ᏔᎵᏃ ᏚᏲᎳᏅᎩ ᏗᏯᏖᎾ ᏅᏯ, ᎾᏍᎩᏯ ᎢᎬᏱᏱ ᏥᏂᏕᏅᏍᏛᎩ; ᎼᏏᏃ ᏑᎾᎴᎢ ᎤᏗᏛᎲᎩ, ᎠᎴ ᏌᎾᏱ ᎤᎿᎷᏒᎩ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸᎢ, ᎠᎴ ᏚᏴᏒᎩ ᎾᏍᎩ ᏔᎵ ᏅᏯ ᏗᏲᎳᏅᎯ. ᎢᎸ. ᏱᎰᏩᏃ ᎤᏠᎠᏏᎸᎩ ᎤᎶᎩᎸ ᎠᏯᎥᎩ, ᎠᎴ ᎦᏙᎬ ᎤᏯᏅᎲᎩ. ᏱᎰᏩᏃ ᎤᎶᏒᎩ ᏓᎧᏅ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ, ᏱᎰᏩ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ, ᎤᏓᏙᎵᏣᏘ ᎠᎴ ᎤᏓᏅᏘ, ᎤᏍᎦᏃᎳ ᎤᏔᎳᏬᎯᏍᏗᏱ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏁᎵ ᎣᏍᏛ ᎨᏒ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒᎢ. ᎠᏍᏆᏂᎪᏗᏍᎩ ᏧᏪᏙᎵᏍᏗ ᎨᏒ ᏧᎦᏴᎳᏥᎶᏛ ᎢᏯᏂᏛ, ᏗᎲᎡᎯ ᏂᎦᏳᎪᏛᎾ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᎴ ᎠᏍᎦᏅᏨ ᎠᎴ ᎠᏍᎦᏂ, ᎠᎴ ᎾᏍᎩ ᏰᎵ ᏄᏍᎦᏅᏨᎾ ᎬᏪᎵᏎᏗ ᏂᎨᏒᎾ ᏥᎩ ᎤᏍᎦᏅᏨᎯ; ᏗᏍᏛᏗᏍᏗᏍᎩ ᏧᏁᏥ ᏧᏂᎦᏴᎵᎨ ᎤᏂᏍᎦᏅᏨ, ᎠᎴ ᏧᏁᏥ ᎾᏍᎩ ᏧᏁᏥ ᏗᏍᏛᏗᏍᏗᏍᎩ, ᏦᎢ ᎠᎴ ᏅᎩ ᎢᏳᎾᏓᏁᏟᏴᏛ ᏩᏍᏘ. ᎼᏏᏃ ᎤᏩᏅᏨᎩ ᎠᎴ ᎦᏙᎯ ᎢᏗᏢ. ᎤᏗᏍᏚᏅᎩ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏅᎩ. ᎯᎠᏃ ᏄᏪᏒᎩ, ᎢᏳᏃ ᎰᏩ ᎤᏪᏙᎵᏍᏗ ᏱᏘᏍᏆᎧᎿᏅ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᏫᏙᎩᎧᎿᏩᏗᏓ; ᏧᏩᏗᏔᏯᏍᎩᏂᏃᏅ ᏗᏂᎵᎨᏂ ᎯᎠ ᏴᏫ; ᎠᎴ ᏗᎨᏍᎩᎲᏏ ᏂᏚᏳᎪᏛᎾ ᏃᎦᏛᏁᎸ ᎠᎴ ᎣᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎢᏨᏯᏤᎵ ᏂᏍᎩᏴᎦ. ᎯᎠᏃ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᎠᏴ ᎧᏃᎮᏛ ᏕᎦᏠᎢᏍᏗᎭ; ᏂᎦᏛ ᏗᏣᏤᎵ ᏴᏫ ᎠᏂᎦᏔᎲ ᎤᏍᏆᏂᎪᏗ ᏙᏛᎩᎸᏫᏍᏓᏁᎵ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎠᎴ ᎢᎸᎯᏢ ᎤᎾᏓᏤᎵᏛ ᎠᏁᎲᎢ; ᏂᎦᏛᏃ ᏴᏫ ᎾᏍᎩ ᏂᎯ ᏥᎩᏰᎳᏗᏙᎭ, ᏛᏂᎪᎯ ᏚᎸᏫᏍᏓᏁᎸ ᏱᎰᏩ; ᎤᎾᏰᎯᏍᏗᏳᏰᏃ ᎾᏍᎩ ᏥᏙᏛᎩᎸᏫᏍᏓᏁᎵ ᏂᎯ ᎬᏴᏗᏍᎬᎢ. ᎭᎦᏌᏯᏍᏓ ᎾᏍᎩ ᎪᎯ ᎢᎦ ᏥᎬᏁᏤᎭ; ᎬᏂᏳᏉ, ᎦᏥᏄᎪᏫᏍᎦ ᎢᎬᏱᏢ ᏂᏣᏛᏅ ᎠᏂᎡᎼᎵ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ: ᎠᎴ ᎠᏂᏇᎵᏥ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ. ᎭᏓᏯᏫᏍᎨᏍᏗ ᏨᏒ, ᏞᏍᏗ ᎧᏃᎮᏛ ᏥᏙᏣᏠᎯᏍᏔᏂ ᎾᎿ ᎠᏁᎯ ᎾᎿ ᏥᏫᎦᏘ, ᎢᏥᏌᏛᎥᏍᎩᏰᏃ ᏱᏂᎦᎵᏍᏓ ᎠᏰᎵ ᏂᏣᏛᏅᎢ; ᏕᏥᏲᏍᏔᏅᏍᎩᏂ ᎠᏥᎸ Ꮷ ᏁᎳᏍᏗᏱ, ᏕᏥᏲᏍᏔᏅᎭ ᏗᏟᎶᏍᏔᏅᎯ ᎤᏁᎳᏅᎯ ᏧᏂᏰᎸᎯ, ᎠᎴ ᏕᏥᎴᏴᏍᏓᏁᎸᎭ ᏧᎾᏤᎵ ᏧᏓᏡᎩ ᏕᏡᎬᎢ. ᎥᏝᏰᏃ ᏅᏩᏓᎴ ᎤᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ; ᏱᎰᏩᏰᏃ ᎠᏛᏳᎨᏗ ᏥᏚᏙᎥ, ᎤᏛᏳᎩᏍᏗᏳ ᎤᏁᎳᏅᎯ. ᎧᏃᎮᏛᏰᏃ ᏱᏕᏣᏠᎯᏍᏓ ᎾᎿ ᎠᏁᎯ, ᎾᏍᎩᏃ ᎤᏁᎳᏲᏍᎬ ᏱᏓᏂᏍᏓᏩᏚᎦ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ, ᎠᎴ ᎠᏥᎸ ᏱᏓᏁᎶᏏ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ, ᎠᎴ ᎩᎶ ᏱᏣᏯᏅ, ᎠᎴ ᎾᏍᎩ ᏯᎵᏍᏓᏴᏓ ᎤᎵᏍᎪᎸᏔᏅᎯ; ᎠᎴ ᎾᏍᎩ ᏱᏕᏥᏯᏅ ᎠᏂᎨᏴ ᎾᏍᎩ ᏧᏁᏥ, ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᏧᎾᏓᏴᏍᏗ, ᎾᏍᎩᏃ ᎠᏂᎨᏴ ᎾᏍᎩ ᏧᏁᏥ ᏚᏁᎳᏲᏍᎬ ᏧᎾᏁᎳᏅᎯ ᏱᏓᏂᏍᏓᏩᎦᎦ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎦᏯ ᏧᏤᏥ ᏚᏁᎳᏲᏍᎬ ᏧᎾᏁᎳᏅᎯ ᏱᏓᏂᏍᏓᏩᎦᎦ. ᏞᏍᏗ ᏗᎬᎾᏬᏔᏅᎯ ᎤᏁᎳᏅᎯ ᏗᏣᏓᏙᏢᎾᏁᎸᎩ. ᏗᎵᏍᏓᏴᏗᏱ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ. ᎦᎵᏉᎩ ᎢᎦ ᎾᎪᏔᏅᎾ ᎦᏚ ᏣᎩᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏪᏎᎸ ᎬᏁᏤᎸᎢ ᎡᏈ ᎧᎸᎢ; ᎡᏈᏰᏃ ᎧᎸᎢ ᏓᏣᏄᎪᏨᎩ ᎢᏥᏈᏱ. ᏂᎦᏛ ᎢᎬᏱᏱ ᎠᏁᎯ ᏗᏆᏤᎵᎦ: ᎠᎴ ᎦᎾᏝᎢ ᏗᏣᏤᎵᎦ ᏩᎦ, ᎠᎴ ᎠᏫ ᏱᎩ, ᏂᎦᏛ ᎢᎬᏱᏱ ᎠᏁᎯ ᎠᏂᏨᏯᎢ ᏗᏆᏤᎵᎦ. ᏗᎦᎵᎠᏅᎯᏛᏍᎩᏂ ᏐᏈᎵ ᎢᎬᏱ ᎡᎯ, ᏣᏩᎯᏍᏗ ᎠᏫ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏂᏯᎫᏴᎲᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎯᏍᏆᎵᏎᏍᏗ ᎨᏎᏍᏗ ᎠᏴᏤᏂ. ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᎢᎬᏱᏱ ᎠᏁᎯ ᏔᎫᏴᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎩᎶ ᎢᎬᏱᏢ ᎠᎩᎷᏤᏗ ᏱᎨᏎᏍᏗ ᎠᏒᎭᎢ. ᏑᏓᎵ ᎢᎦ ᏗᏣᎸᏫᏯᏓᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ, ᏣᏣᏪᏐᎸᏍᏙᏗ ᎨᏎᏍᏗ; ᎦᏓᎷᎪᏗᏱ ᎨᏒ ᎠᎴ ᎠᎦᏛᎾᏨᎲᏍᎬ ᎢᏳᎢ ᏣᏣᏪᏐᎸᏍᏗ ᎨᏎᏍᏗ. ᎠᎴ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎦᎵᏉᎩ ᎢᏳᎾᏙᏓᏆᏍᏗ ᏓᎵᏍᏆᏗᏍᎬᎢ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᎦᏛᎾᏨᎯ ᎤᏣᎴᏍᏗ ᎠᏍᎫᏕᏍᏗᏱ, ᎠᎴ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᏂᎪᏙᏗᏱ ᎤᏕᏘᏴᏌᏗᏒ ᎠᎵᏍᏆᏗᏍᎬᎢ. ᏑᏕᏘᏴᏛ ᎨᏒ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏗᏣᏤᎵᎦ ᏦᎢ ᎬᏂᎨᏒ ᎢᏳᎾᏛᏁᏗ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏱᎰᏩ, ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ. ᏓᎦᏥᏄᎪᏫᏏᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᎢᎬᏱᏗᏢ ᏄᎾᏛᏅᎢ, ᎠᎴ ᏓᎦᏛᏃᎯᏍᏔᏂ ᏂᎬᎾᏛ ᎢᏣᏤᎵᎪᎯ, ᎥᏝ ᎠᎴ ᎩᎶ ᏣᏚᎸᎡᏗ ᏱᎨᏎᏍᏗ ᏣᏤᎵ ᎦᏙᎯ, ᎾᎯᏳ ᏂᏓᏕᏘᏴᎯᏒ ᏦᎢ ᎬᏂᎨᏒ ᏫᏂᏯᏛᏁᎮᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ. ᎩᎬ ᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎭᎵᏍᎪᎸᏗᏍᎨᏍᏗ ᏞᏍᏗ ᎠᎪᏙᏗ ᏯᏠᏯᏍᏗᏍᎨᏍᏗ: ᎥᏝ ᎠᎴ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎤᎩᏨᏅ ᎢᏴᏛ ᎧᏃᎯᏯᏍᏗ ᏱᎨᏎᏍᏗ. ᎢᎬᏱ ᎦᎾᏄᎪᏫᏍᎩ ᏣᏤᎵ ᎦᏙᎯ ᎢᎬᏱᏱᏉ ᎤᎾᏄᎪᏫᏒᎯ ᏣᏲᎯᏍᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ. ᎠᏫ ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᎤᏫᏯ ᎥᏝᏍᏗ ᏧᏗ ᏱᎨᏎᏍᏗ ᎤᏥ ᎤᏅᏗᎯ. ᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸ ᎼᏏ, ᎯᎠ ᎾᏍᎩ ᎧᏃᎮᏛ ᎰᏪᎸᎦ: ᎤᏠᏱᏰᏃ ᎧᏃᎮᏛ ᎬᏔᏅᎯ, ᎧᏃᎮᏛ ᏕᎩᎾᏠᎯᏍᏔᏅ, ᎠᎴ ᎾᏍᏉ ᎢᏏᎵ. ᎾᎿᏃ ᏱᎰᏩ ᎡᏙᎲ ᎤᏪᏙᎸᎩ ᏅᎦᏍᎪᎯ ᎢᎦ, ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ: ᎥᏝ ᎠᎴ ᏳᎵᏍᏓᏴᏁᎢ, ᎥᏝ ᎠᎴ ᎠᎹ ᏳᏗᏔᎮᎢ, ᏗᏯᏖᎾᏃ ᏅᏲᎯ ᎤᏬᏪᎳᏁ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎠᏍᎪᎯ ᏄᎵᏁᏨᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎼᏏ ᏧᏠᎠᏒ ᏌᎾᏱ ᎣᏓᎸᎢ, ᏗᎬᏰᎯ ᏔᎵ ᏗᏯᏖᎾ ᏅᏯ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎸᎢ, ᎾᏍᎩ ᏧᏠᎠᏒ ᎣᏓᎸᎢ, ᎥᏝ ᎼᏏ ᏯᎦᏔᎮ ᎤᎧᏛ ᎤᏁᎦᎸ ᎤᏔᎷᎩᏍᎬ ᎾᎯᏳ ᎤᎵᏃᎮᏗᏍᎬᎢ. ᎡᎳᏂᏃ ᎠᎴ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᎬᏩᎪᎲ ᎼᏏ, ᎬᏂᏳᏉ, ᎤᎧᏛ ᎤᏁᎦᎸ ᎤᏔᎷᎩᏍᎬᎩ; ᎠᏂᏍᎦᎢᎲᏃ ᎡᏙᎲ ᎾᎥ ᎤᏂᎷᎯᏍᏗᏱ. ᎼᏏᏃ ᏫᏚᏯᏅᎲᎩ; ᎡᎳᏂᏃ ᎠᎴ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎤᎾᏓᏡᎬ ᎤᏂᎷᏨ ᎡᏙᎲᎢ; ᎼᏏᏃ ᏚᎵᏃᎮᏔᏅᎩ. ᎣᏂᏃ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᎾᎥ ᎤᏂᎷᏥᎸᎩ; ᏚᏲᎯᏎᎸᏃ ᏚᏁᏤᎸᎩ, ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎣᏓᎸ ᏌᎾᏱ. ᎼᏏᏃ ᎢᎪᎯᏛ ᏕᎦᏬᏁᏗᏍᎬ ᎤᎧᏛ ᎠᏄᏬ ᎤᏭᏢᏔᏅᎩ. ᏱᎰᏩᏍᎩᏂ ᎡᏙᎲ ᏫᎦᎷᎩ ᎼᏏ, ᎾᏍᎩ ᎤᎵᏃᎮᏙᏗᏱ, ᎠᏚᏞᏍᎬᎩ ᎬᏂ ᏓᎦᏄᎪᎢ. ᏓᎦᏄᎪᎬᏃ ᎠᎴ ᏕᎧᏃᏁᎲᎩ ᎢᏏᎵ ᏧᏪᏥ ᎾᏍᎩ ᏄᏍᏛ ᎠᏥᏁᏤᎸᎢ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᎪᎲᎩ ᎼᏏ ᎤᎧᏛ, ᎾᏍᎩ ᎤᏁᎦᎸ ᎤᎧᏛ ᎤᏔᎷᎩᏍᎬᎢ: ᎼᏏᏃ ᎤᎧᏛ ᎠᏄᏬ ᎤᎴᏢᏔᏅᎩ, ᎬᏂ ᎾᏍᎩ ᏩᏴᎲ ᎾᏍᎩ ᎤᎵᏃᎮᏙᏗᏱ. ᎼᏏᏃ ᏂᎦᏛ ᎤᎾᏓᏡᎬ ᎢᏏᎵ ᏧᏪᏥ ᏚᎳᏫᏛᎩ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᎧᏃᎮᏛ ᎾᏍᎩ ᏱᎰᏩ ᏧᏁᏨ ᎾᏍᎩ ᎢᏣᏳᏛᏁᏗᏱ. ᏑᏓᎵ ᎢᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ, ᏱᎰᏩ ᎡᏣᏣᏪᏐᎸᏍᏔᏁᏗᏱ; ᎩᎶ ᎾᎯᏳ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᎥᏝ ᏗᏦᏙᏗ ᏱᎨᏎᏍᏗ ᏂᎬᎾᏛ ᎢᏥᏅ ᎤᎾ ᏙᏓᏆᏍᎬ ᎢᎦ. ᎼᏏᏃ ᏚᏁᏤᎸ ᏂᎦᏛ ᎤᎾᏓᏡᎬ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏒᎩ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏱᎰᏩ ᏧᏁᏨ, ᎯᎠ ᏥᏄᏪᏒ, ᎢᏥᎩ ᎢᏤᎲ ᏱᎰᏩ ᎡᏣᎵᏍᎪᎸᏓᏁᏗ: ᎩᎶ ᎤᎾᏫᏱ ᎤᎵᏰᏍᏗ, ᎾᏍᎩ ᏩᏲᎦ, ᎾᏍᎩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏱᎨᏩ; ᎠᏕᎸ ᏓᎶᏂᎨ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩ , ᎤᏂᏃᏕᎾᏃ ᎦᏁᎦ ᏗᎩ ᎦᎨᎢ, ᎠᎴ ᏓᎭᏏ ᎦᏁᎦ, ᎠᎴ ᎠᏓ-ᎬᎾᎨ, ᎠᎴ ᎪᎢ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ, ᎠᎴ ᎦᏩᏒᎩ ᎠᏠᏁᏗ ᎪᏢᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ ᎪᏢᏗ. ᎣᏂᎦ ᎾᏯ, ᎠᎴ ᏅᏯ ᎡᏉᏗᏱ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏗᎦᎪᏗ. ᎾᏂᎥᏃ ᎠᏂᎦᏔᎾᎢ ᏙᏧᎾᏓᏅᏛᎢ ᎨᎶᏓᏑᏴᎢ ᎤᏂᎷᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏃᏢᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏱᎰᏩ ᎤᏁᏨ ᎪᏢᏗᏱ; ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎤᏤᎵ ᎦᎵᏦᏙᏗ, ᎠᎴ ᎤᏤᎵ ᎫᏢᏗ, ᎠᎴ ᏧᏤᎵ ᏗᎫᏓᎸᏗᏱ, ᎠᎴ ᏧᏤᎵ ᏧᏯᏖᎾ, ᏧᏤᎵ ᏗᏍᏆᎾᎳᏗᏍᏗ, ᏧᏤᎵ ᏗᎦᎫᏍᏛᏗ, ᎠᎴ ᏧᏤᎵ ᏓᏔᎴᏒᎢ: ᎦᏁᏌᎢ, ᎠᎴ ᎾᎿ ᏤᎯ ᎦᏅᏍᏙᏗ, ᎫᏢᏗ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎾᏍᎩ ᎫᏢᏗ. ᎦᏍᎩᎶ ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎦᏅᏍᏙᏗ ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏧᏤᎵ ᎪᎱᏍᏗ ᏗᏂᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᎦᏙᏗ ᎦᏚ. ᏗᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᎢᎦ ᎠᏘᏍᏙᏗ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎪᎢ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ, ᎠᎴ ᎪᎢ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ, ᎠᎴ ᎦᏩᏒᎩ ᎬᏙᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎦᏅᏍᏙᏗ, ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ, ᎠᎴ ᎤᏚᎾᏍᏛ ᎦᏩᏒᎩ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎦᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᏩᏴᏍᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ, ᎾᏍᎩ ᏧᏤᎵ ᎦᏅᏍᏙᏗ, ᎠᎴ ᏂᎦᏛ ᏧᏤᎵ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᏗᎪᏑᎴᏗᏃ ᎠᎴ ᎾᏍᎩ ᎠᏠᏗᏱ, ᏗᏰᏙᎳᏛᏗ ᎣᏂ ᎪᏢᏒᎢ, ᏗᎦᎫᏍᏛᏗ, ᎠᎴ ᏧᏤᎵ ᏓᏔᎴᏒ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎦᎶᎯᏍᏗᏱ ᎣᏂ ᎪᏢᏒᎢ, ᏗᎨᎢᏂᏓᏍᏗ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎣᏂ ᎪᏢᏒᎢ ᏗᎨᏘᏂᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎠᏍᏕᏱᏛ. ᏗᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏗᏄᏬᏍᏗ; ᎾᎿ ᎦᎸᏉᏗᏨ ᎨᏒ ᎪᎱᏍᏗ ᎥᏛᏁᎲ ᏗᏄᏬᏍᏗ, ᎾᏍᎩ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᎡᎳᏂ ᎠᏥᎸ ᎨᎶᎯ ᏧᏄᏬᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏄᏬᎢ, ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᏂᎦᏛᏃ ᏓᏂᎳᏫᎥ ᎢᏏᎵ ᏧᏪᏥ ᎼᏏ ᎤᎾᏓᏅᎡᎸᎩ. ᎤᏂᎷᏨᎩᏃ, ᎾᏂᎥ ᎤᎾᏫ ᎤᏖᎸᎲᏍᎩ, ᎠᎴ ᎾᏂᎥ ᎤᏓᏅᏛ ᎤᏅᏫᏍᏗᏍᎩ, ᎤᏂᏲᎸᏃ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏃᏢᏍᎬ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏗᎪᏢᏙᏗ. ᎤᏂᎷᏨᎩᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᏂᎦᏛ ᎤᎾᏛᏅᎢᏍᏗ ᏧᏂᎾᏫᏱ, ᎠᎴ ᏚᏂᏃᎸᎩ ᏗᎵᏴᏌᏙᏗ ᎠᎴ ᏧᎾᏟᏯᏙ ᎠᎴ ᏧᎾᎵᏰᏑᏍᏚᏬ, ᎠᎴ ᎠᏕᎸ ᏗᏯᏠᏗ ᏂᎦᏛ ᏗᏣᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ; ᎾᏂᎥᏃ ᎠᎾᎵᏍᎪᎸᏗᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎾᎵᏍᎪᎸᏓᏁᎸᎩ ᏱᎰᏩ. ᎩᎶᏃ ᏕᎭᎷᎨ ᏳᎾᎠ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩᏢ, ᎠᎴ ᎤᏃᏕᎾ ᎦᏁᎦ ᎩᎦᎨᎢ, ᎠᎴ ᏓᎭᏏ ᎦᏁᎦ, ᎾᏍᎩ ᏚᏂᏃᎸᎩ. ᎩᎶᏃ ᎠᏕᎸ ᎤᏁᎬ ᎠᎵᏍᎪᎸᏗᏍᎩ ᎠᎴ ᎥᏣᏱ, ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎤᏂᏲᎸᎩ; ᎩᎶᏃ ᎠᏓ-ᎬᎿᎨ ᏧᏩᏯ ᎪᎱᏍᏗ ᎦᎬᏙᏗ ᎨᏒ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩ ᎤᏪᏃᎸᎩ. ᏂᎦᏛᏃ ᎠᏂᎨᏴ ᎠᏂᏏᎾᏌᏂ ᏧᏂᎾᏫᏱ, ᎠᏂᏍᏙᎲᎩ, ᎠᎴ ᎤᏂᏲᎸᎩ ᎾᏍᎩ ᎤᏂᏍᏙᎸᎯ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ. ᎠᎴ ᏂᎦᏛ ᎠᏂᎨᏴ ᏧᏂᎾᏫ ᎤᏂᏖᎸᎲᏍᎩ ᎠᏂᏏᎾᏌᏅ ᎤᏅᏙᏗᏱ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩᏢ ᎤᏂᏍᏙᎸᎩ. ᏄᏂᎬᏫᏳᏌᏕᎩᏃ ᎣᏂᎦ ᎤᏯ ᏚᏂᏲᎸᎩ, ᎠᎴ ᎤᏯ ᏗᎦᎪᏗ ᎡᏉᏗᏱ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᏱ ᏗᎦᎪᏗ. ᎠᎴ ᎦᏩᏒᎩ, ᎠᎴ ᎪᎢ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ, ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ. ᎢᏏᎵ ᏧᏪᏥ ᎣᏏᏳ ᎤᏂᏰᎸᎯ ᎠᏂᏲᎯᎲ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏱᎰᏩ. ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎾᏍᎩ ᏧᏂᎾᏫ ᎤᏂᏗᏱ ᎢᏳᏅᏁᎯ, ᎾᏍᎩ ᏄᏓᎴᏒ ᎪᏢᏙᏗ ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ ᎪᏢᏗᏱ. ᎼᏏᏃ ᎯᎠ ᏄᏚᏪᏎᎸᎩ ᎢᏏᎵ ᏧᏪᏥ, ᎬᏂᏳᏉ, ᏱᎰᏩ ᏚᏙᎥ ᎤᏯᏅᏔᏅ ᏇᏣᎵᎵ ᏳᎳ ᎤᏪᏥ, ᎾᏍᎩ ᎭᎵ ᎤᏪᏥ, ᏧᏓᏏ ᎠᏂᎳᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ; ᎠᎴ ᎾᏍᎩ ᎠᎧᎵᎢ ᎤᏁᎸ ᎠᏓᏅᏙ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᏏᎾᏌᏂ ᎨᏒ, ᎠᎴ ᎪᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎠᎦᏔᎾᎢ ᎨᏒ, ᎠᎴ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ. ᎠᎴ ᎠᏯᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏅᏗ ᎨᏒ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ, ᎠᎴ ᏅᏯ ᏗᏲᎳᏅᎯ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓ ᎪᏢᏅᎥᏍᎩ, ᎪᏢᏗᏱ ᏄᏓᎴᏒ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ. ᎠᎴ ᎤᎸᏅ ᎤᎾᏫᏱ ᎾᏍᎩ ᏧᏕᏲᏗᏱ, ᎤᏩᏒ ᎨᏒ ᎠᎴ ᎠᎰᎵᎠᏈ, ᎠᎯᏏᎹᎩ ᎤᏪᏥ, ᏕᏂ ᎠᏂᎳᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ. ᎾᏍᎩ ᏧᏂᎾᏫ ᏚᎧᎵᎴᎸ ᎠᏏᎾᏌᏂ ᎨᏒᎢ ᎤᏃᏢᏗᏱ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ, ᏗᏰᎶᎯ, ᎤᏬᏢᏅᏗ ᎨᏒ, ᎠᎴ ᎠᏏᎾᏌᏂ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎠᏄᏬᎩᎯ ᏗᎪᏪᎵᏍᎩ, ᎤᏃᏢᏅᏗ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᏗᎬᏍᎩ ᎤᏬᏢᏅᏗ ᎨᏒ, ᎾᏍᎩ ᏂᎦᎥᏉ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏂᏲᎯ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ. ᎿᏉᏃ ᏚᏂᎸᏫᏍᏓᏁᎸᎩ ᏇᏣᎵᎵ ᎠᎴ ᎠᎰᎵᎠᏈ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᏂᎦᏔᎾᎢ ᏙᏧᎾᏓᏅᏛᎢ ᎾᏍᎩ ᏱᎰᏩᏧᎳᏁᎸᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᎪᎵᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏃᎵᏍᏗᏱ ᎢᏳᏅᏁᏗᏱ ᎤᏃᏢᏗᏱ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒ ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸᎢ, ᎾᏍᎩᏯ ᏂᎦᏛ ᏄᏪᏒ ᏱᎰᏩ. ᎼᏏᏃ ᏫᏚᏯᏅᎲᎩ ᏇᏣᎵᎵ ᎠᎴ ᎠᎰᎵᎠᏈ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏙᏧᎾᏓᏅᏛ ᏱᎰᏩ ᏧᎳᏁᎸᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏂᎥ ᏧᏂᎾᏫ ᎤᏂᏅᏫᏍᏗᏍᎩ ᎤᏂᎷᎯᏍᏗᏱ ᎾᎿ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ. ᎠᎴ ᎼᏏ ᏚᏲᎯᏎᎸᎩ ᏂᎦᏛ ᎤᎾᎵᏍᎪᎸᏔᏅᎯ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏂᏲᎸᎯ ᎪᏢᏙᏗ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸᎢ ᎾᏍᎩ ᎪᏢᏗ. ᎠᎴ ᎠᏏᏉ ᎠᏂᏲᎯᎲᎩ ᏂᏚᎩᏨᏂᏒ ᎤᏅᏒ ᎤᎾᏓᏅᏖᏛ ᎠᎵᏍᎪᎸᏙᏗ. ᏂᎦᏛᏃ ᎠᏂᎦᏔᎾᎢ ᎠᏂᏍᎦᏯ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎤᏃᏢᏅᎯ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎠᏓᏁᎸ ᎡᎯ, ᎤᏅᏕᏨᎩ ᎠᏂᏏᏴᏫᎭ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏃᏢᏅᎥᏍᎬᎢ. ᎤᏂᏁᏤᎸᎩᏃ ᎼᏏ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎤᎶᏒᏍᏔᏅᎯᏉ ᎠᏂᏲᎯᎭ ᏴᏫ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎪᏢᏗ ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏨᎯ ᏥᎩ ᎪᏢᏗᏱ. ᎼᏏᏃ ᎤᏁᏨᎩ, ᎠᎴ ᎾᏍᎩ ᏚᏂᏃᏳᎳᏅᎩ ᏂᎬᎾᏛ ᎠᏂᏅᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᏞᏍᏗ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᎿᏉ ᏳᏬᏢᏁᏍᏗ ᎪᎱᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸᎢ. ᎰᏩᏃ ᎥᎨᏥᏲᎯᏍᏓᏁᎸᎩ ᏴᏫ ᎠᏂᏲᎯᎲᎢ. ᎪᎱᏍᏗᏰᏃ ᎤᎾᏛᏅᎢᏍᏔᏅᎢ ᏰᎵᏉ ᎨᏒᎩ ᏂᎦᏛ ᎪᏢᏅᏗ ᎨᏒ ᎪᏢᏗ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎨᏒᎩ. ᎾᏂᎥᏃ ᎠᏂᏍᎦᏯ ᏙᏧᎾᏓᏅᏛ ᎠᏂᎦᏔᎾᎢ ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎠᏂᎵᏦᏛᏍᎬᎢ, ᎾᏍᎩ ᏚᏃᏢᏅᎩ ᎠᏍᎪᎯ ᏗᏰᏙᎳᏛᏗ, ᎤᏏᏙᎵ ᏙᎴᏛ ᏗᏏᏓᎵ, ᎠᎴ ᏕᎭᎷᎨ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ ᎠᏄᏬ ᏚᏃᏢᏔᏅᎩ; ᎠᏂᎩᎷᏫ ᎠᎵᏏᎾᎯᏍᏗ ᎬᏔᏅᎯ ᏗᎪᏢᏅᎯ ᏂᏚᏅᏁᎸᎩ. ᏌᏉ ᎠᏰᏙᎳᏛᏗ ᏁᎳᏦᏁ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏌᏉᏃ ᎠᏰᏙᎳᏛᏗ ᏅᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ; ᎢᏗᎦᏱᏛᎭ ᎨᏒᎩ ᏂᎦᏛ ᏗᏰᏕᏙᎳᏛᏗ ᏚᏭᏓᏔᏅᏃ ᎯᏍᎩ ᏗᏰᏙᎳᏛᏗ; ᎠᎴ ᎾᏍᏉ ᏗᏐᎢ ᎯᏍᎩ ᏗᏰᏙᎳᏛᏗ ᏚᏭᏓᏔᏅᎩ. ᏧᏓᏕᏍᏗᏱᏃ ᏚᏬᏢᏅᎩ. ᏕᎭᎷᎨᎢ ᎾᏍᎩ ᎠᏍᏛ ᏌᏉ ᎠᏰᏙᎳᏛᏗᏱ, ᎠᏓᎴᏂᏍᎬᎩ ᎠᏍᏛ ᏚᏚᏓᏛᎢ; ᎤᏠᏱ ᏚᏬᏢᏅᎩ ᎠᏍᏛ ᏔᎵᏁ ᎠᏰᏙᎳᏛᎢ ᏚᏚᏓᏛᎢ. ᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᏚᏬᏢᏅᎩ ᏌᏉ ᎠᏰᏙᎳᏛᎢ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᏚᏬᏢᏅᎩ ᎠᏍᏛ ᎠᏰᏙᎳᏛ ᎾᏍᎩ ᏚᏚᏓᏛ ᏐᎢᏱ; ᎾᏍᎩ ᏧᏓᏕᏍᏗᏱ ᏗᎫᏓᏕᏫᏍᎩ ᎨᏒ ᏓᏰᏙᎳᏛᎢ. ᎯᏍᎦᏍᎪᎯᏃ ᏚᏬᏢᏅᎩ ᏗᎫᏓᎸᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏗᎫᏓᎸᏗᏱ ᏚᏭᏙᏔᏅᎩ ᏓᏰᏙᎳᏛᎢ ᎾᏍᎩᏃ ᏌᏉ ᏄᎵᏍᏔᏅᎩ ᎦᎵᏦᏛᎢ. ᏗᎦᏙᎳᏛᏗᏃ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩᏢ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎬᏅᏙᏗ ᎦᎵᏦᏛᎢ: ᏌᏚ ᏚᏬᏢᏅᎩ ᏗᏕᏙᎳᏛᏗ. ᏌᏉ ᎠᏰᏙᎳᏛᏗ ᏦᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏅᎩᏃ ᎢᏯᎩᏳᏍᏈᏛ ᎤᏯᏛᎥᎩ ᏌᏉ ᎠᏰᏙᎳᏛᏗ;: ᎾᏍᎩ ᏌᏚ ᏗᏰᏙᎳᏛᏗ ᎢᏗᎦᏱᏛᎭ ᎨᏒᎩ. ᎯᏍᎩᏃ ᏗᏰᏙᎳᏛᏗ ᎤᏁᎳᎩ ᏚᏭᏓᏔᏅᎩ, ᎠᎴ ᏑᏓᎵ ᏗᏰᏙᎳᏛᏗ ᎤᏁᎳᎩ ᏚᏭᏓᏔᏅᎩ. ᎯᏍᎦᏍᎪᎯᏃ ᏚᏬᏢᏅᎩ ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᎠᏰᏙᎳᏛᏗ ᎾᎿ ᏚᏚᏓᏛᎢ. ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏚᏬᏢᏅᎩ ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᎠᏰᏙᎳᏛᏗ ᎾᏍᎩ ᏔᎵᏁ ᏚᏚᏓᏛᎢ… ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏚᏬᏢᏅᎩ ᏗᎫᏓᎸᏗᏱ ᎥᏣᏱ ᏚᏬᏢᏔᏅᎩ ᎾᏍᎩ ᏗᎫᏓᏙᏗ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᏌᏉ ᎢᏳᎵᏍᏙᏗᏱ. ᎠᎴ ᎦᎵᏦᏛ ᎫᏢᏙᏗ ᎤᏬᏢᏅᎩ ᎤᏂᏃᏕᎾ ᎦᏁᎦ ᏗᎩᎦᎨ ᎤᏬᏢᏔᏅᎩ, ᎠᎴ ᎾᎿ ᎦᎸᎳᏗᏢ ᎫᏢᏗ ᎤᏬᏢᏅᎩ ᏓᎭᏏ ᎦᏁᎦ ᎤᏬᏢᏔᏅᎩ. ᏧᏯᏖᎾᏃ ᏚᏬᏢᏅᎩ ᎠᏓ-ᎬᎾᎨ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎦᎵᏦᏙᏉᏉᏙᏗ, ᏕᎦᎧᎲᎩ. ᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ ᏌᏉ ᎤᏯᏖᎾ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ ᏌᏉ ᎤᏯᏖᎾ. ᏌᏉ ᎤᏯᏖᎾ ᏔᎵ ᏕᎪᏢᏒᎩ ᏗᎫᏍᏗᏍᏓᏱ, ᏕᎦᎧᎲᎩ ᎣᏍᏛ ᏓᏙᎵᎬᎩ; ᎾᏍᎩ ᏂᏚᏩᏁᎸᎩ ᏂᎦᏛ ᏧᏯᏖᎾ ᎾᏍᎩ ᎦᎵᏦᏙᏙᏗ. ᎠᎴ ᏧᏯᏖᎾ ᏚᏬᏢᏅᎩ ᎦᎵᏦᏙᏙᏗ ᏔᎳᏍᎪᎯ ᏧᏯᏖᎾ ᏧᎦᎾᏮ ᎢᏗᏢ ᏤᎯ. ᎤᎦᏍᎪᎯᏃ ᏚᏬᏢᏅᎩ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎭᏫᏂᏗᏢ ᏔᎳᏍᎪᎯ. ᏧᏯᏖᏃᎯ ᏂᏚᏩᏁᎸᎩ; ᏔᎵ ᏓᏔᎴᏒ ᏌᏉ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ ᎾᏍᎩ ᏗᏠᏍᎩ ᏗᎫᏍᏙᏍᏗ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᏐᎢᏱ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ, ᎾᏍᎩ ᏗᏠᏍᎩ ᏔᎵ ᏗᎫᏍᏙᏍᏗ. ᎠᎴ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ ᏤᎯ, ᎾᏍᎩ ᏧᏴᏢ ᎢᏗᏢ, ᏔᎳᏍᎪᎯ ᏚᏬᏢᏅᎩ ᏧᏯᏖᎾ. ᎠᎴ ᎾᎿ ᏤᎯ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏅᎦᏍᎪᎯ ᏚᏬᏢᏅᎩ; ᏔᎵ ᏓᏔᎴᏒ ᏌᏉ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᏐᎢᏱ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ. ᎠᏍᏆᎨᏂᏃ ᎾᏍᎩ ᎦᎵᏦᏛ ᏭᏕᎵᎬ ᏫᏚᏳᎪᏛ ᏑᏓᎵ ᏓᏯᏖᎾ ᏚᏬᏢᏅᎩ. ᏔᎵᏃ ᏧᏯᏖᎾ ᏚᏬᏢᏅᎩ ᎤᏅᏏᏴ ᏤᎯ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᎾᎿ ᏔᎵ ᏗᏍᏆᎨᏂ ᎨᏒᎢ. ᎡᎳᏗᏢᏃ ᏕᎫᏓᏛᎩ, ᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ ᎦᎸᎳᏗ ᏕᎫᏓᏛᎩ, ᎾᏍᎩ ᎯᎠ ᎢᏧᎳ ᏂᏚᏩᏁᎸᎩ, ᎢᏧᎳᏗᏢ ᎾᏍᎩ ᎤᏅᏏᏴᎢ. ᎾᏍᎩᏃ ᏧᏁᎳ ᏂᎦᎥᎩ ᏧᏯᏖᎾ: ᏓᏔᎴᏒᏃ ᏓᎳᏚ ᏂᎦᎥᎩ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏓᏔᎴᏒᎩ; ᏂᎦᏛ ᏧᏯᏖᎾ ᏔᎵᎭᎾ ᎭᏫᏂᏗᏢ ᏓᏔᎴᏒᎩ. ᏗᏍᏆᎾᎳᏗᏍᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ; ᎯᏍᎩ ᏓᏢᎩ ᏧᏯᏖᏃᎯ ᏌᏉ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎦᎵᏦᏛᎢ. ᎯᏍᎩᏃ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏢᎩ ᏧᏯᏖᏃᎯ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ: ᎠᎴ ᎯᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏢᎩ ᏧᏯᏖᏃᎯ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ ᏭᏕᎵᎬ ᎢᏗᏢ. ᎠᏰᎵᏃ ᎡᎯ ᎠᏍᏆᎾᎳᏗᏍᏗ ᏧᏯᏖᏃᎯ ᎠᏰᎵ ᏂᎦᏅᎯᏒ ᎠᏢᎩ. ᏧᏯᏖᎾᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏧᏓᏆᏙᏉᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ ᎾᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏗᏝᏗᏍᏗᏱ; ᎾᏍᎩᏃ ᏗᏍᏆᎾᎳᏗᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ. ᎠᏰᏙᎳᏛᏗᏃ ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᎤᏥᎸᎢ ᎤᏬᏢᏔᏅᎩ, ᎠᏂᎩᎷᏫ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ. ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏚᏬᏪᎳᏅᎩ ᎾᎿᏂ. ᎠᎴ ᎾᎿ ᏚᏠᏯᏍᏔᏅᎩ ᏅᎩ ᏗᎦᎫᏍᏛᏗ ᎠᏓ ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᎠᎴ ᏅᎩ ᏓᏔᎴᏒ ᏚᏩᏅᏬᏅᎩ ᏚᏬᏢᏔᏅᎩ, ᎠᏕᎸ ᎤᏁᎬ ᏚᏬᏢᏔᏅᎩ. ᎠᏰᏙᎳᏛᏗᏃ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᎠᏍᏚᏗ ᎤᏬᏢᏅᎩ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᎤᏬᏢᏔᏅᎩ, ᎪᏪᎳᏅᎯ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ. ᎠᎴ ᎾᏍᎩ ᎯᏍᎩ ᏗᎦᎫᏍᏛᏗ ᎬᏩᏠᏯᏍᏗ ᎠᎴ ᎾᎿ ᏤᎯ ᏗᎦᏙᏌᏗᏍᏗᏱ; ᎠᎴ ᎾᏍᎩ ᏧᏍᎪᎵ ᎠᎴ ᎾᎿ ᏤᎯ ᎤᏯᏅᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ; ᎾᏍᎩᏂ ᎯᏍᎩ ᏓᏔᎴᏒ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᏇᏣᎵᎵᏃ ᎦᏁᏌᎢ ᎠᏓ-ᎬᎿᎨ ᎤᏬᏢᏔᏅᎩ; ᏦᎢᏁ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ. ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏭᏢᏔᏅᎩ ᎭᏫᏂᏗᏢ ᎠᎴ ᎦᏚᎢ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏄᏩᏁᏔᏅᎩ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ. ᎠᎴ ᎾᏍᎩ ᎤᏩᏅᏬᏔᏅᎯ ᏅᎩ ᏧᏓᏆᏙᎩ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᏗᎦᏙᏗ, ᏔᎵ ᏧᏓᏆᏙᎩ ᏌᏉ ᎠᏍᏆᎨᏂ ᏤᎯ, ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᏤᎯ. ᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ. ᎦᏅᏍᏙᏗᏃ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᏚᏭᏍᏛᏅᎩ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎦᏁᏌᎢᎯ, ᎾᏍᎩ ᎦᏁᏌᎢ ᎦᏅᏍᏙᏗ. ᎠᎴ ᎫᏢᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏬᏢᏔᏅᎩ;, ᏦᎢᏁ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏍᏛᎥᎩ. ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎩᎷᏫ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ, ᏗᎦᏅᏆᎶᏏᎶᏛ ᎨᏒᎩ, ᎢᏧᎳ ᎢᏗᏢ ᏧᏍᎪᎵ ᎫᏢᏗᎯ ᏚᏪᎧᏅᎩ. ᎠᏏᏴᏫ ᎠᎩᎷᏫ ᎤᏍᎪᎵ ᎯᎠ ᎢᏗᏢ ᎦᏙᎬᎩ, ᏐᎢᏃ ᎠᎩᎷᏫ ᏐᎢᏗᏢ ᎤᏍᎪᎵ ᎦᏙᎬᎩ, ᏗᏢᏗᏱ ᏚᏪᎧᏅᎩ ᏚᏬᏢᏅᎩ ᎠᏂᎩᎷᏫ, ᎾᏍᎩ ᎾᎿ ᎢᏧᎳᏗᏢ ᏧᏍᎪᎵ. ᎠᏂᎩᎷᏫᏃ ᏚᎾᏐᎸᏛᎩ ᏗᏂᏃᎨᏂ; ᎠᎴ ᏗᏂᏃᎨᏂ ᎬᏗ ᎤᏄᏢᏛᎩ ᎫᏢᏗ, ᏓᎾᏓᎧᏅᎩ; ᎾᏍᎩ ᎫᏢᏗᏱ ᎢᏗᏢ ᏭᎾᎦᏛᎩ ᎠᏂᎩᎷᏫ. ᎦᏍᎩᎶᏃ ᎠᏓ-ᎬᏁᎨ ᎤᏬᏢᏔᏅᎩ; ᏔᎵ ᎢᏯᎩᏳᏍᏡᏛ ᏂᎦᏅᎯᏒᎩ, ᏌᏉᏃ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ. ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏭᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏪᏯᎸᏅᎩ ᎾᎿ ᎬᏩᏚᏫᏛ. ᎠᎴ ᎾᏍᏉ ᎾᎿ ᎤᎬᏔᏅᏅᎩ ᎤᏬᏰᏂ ᎾᏯᏛᎥ ᎢᏯᏯᏖᏅᎬ ᏩᏚᏫᏛ; ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏪᏯᎸᏅᎩ ᎾᎿ ᎬᏩᏚᏫᏛ. ᎠᎴ ᏅᎩ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ ᎬᎾᏬᏔᏅᎯ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ ᏧᏓᏆᏙᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᏚᏔᏅᎩ, ᎾᎿ ᏅᎩ ᏂᏚᏔᏍᎬᎢ. ᎠᎬᏔᏅᏛ ᎾᎥ ᏕᎦᏛᎩ ᏧᏓᏆᏙᎩ, ᎾᎿ ᏗᎫᏍᏙᏍᏗᏱ ᏗᎦᏅᏍᏙᏗ ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ. ᏗᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ. ᎠᎴ ᎦᏍᎩᎸ ᏤᎯ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏚᏬᏢᏅᎩ, ᎾᏍᎩ ᏗᏯᏖᎾ ᎠᎴ ᏗᏗᏙᏗ, ᎠᎴ ᏗᎡᎵᏙ, ᎠᎴ ᏗᏟᏍᏙᏗᏖ ᏗᏖᎵᎩ, ᎾᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏚᏬᏢᏔᏅᎩ. ᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏬᏢᏔᏅᎩ; ᎦᏅᏆᎶᏛ ᎨᏒ ᎤᏬᏢᏅ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ; ᎤᏪᏛᎢ, ᎠᎴ ᏚᏩᏂᎦᎸᎢ, ᏗᏖᎵᏙ ᏧᏤᎵᎦ, ᏚᏆᏛᎢ, ᎠᎴ ᏚᏥᎸᏒᎢ, ᎤᏠᏱᏉ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᏦᎢ ᏗᏖᎵᏙ ᏚᏬᏢᏅᎩ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯᎢ ᎾᎿ ᏌᏉ ᎤᏩᏂᎦᎸᎢ, ᎤᏆᏛᎩ ᎠᎴ ᎤᏥᎸᏒᎩ: ᎠᎴ ᏦᎢ ᏗᏖᎵᏙ ᏚᏬᏢᏅᎩ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏅᏩᏓᎴ ᎤᏩᏂᎦᎸᎢ, ᎤᏆᏛᎩ ᎠᎴ ᎤᏥᎸᏒᎩ; ᎾᏍᎩᏯ ᏂᏕᎤᏍᏛᎩ ᏑᏓᎵ ᏂᏚᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ. ᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏅᎩ ᏗᏖᎵᏙ ᏂᏕᎤᏍᏛᎩ ᎠᏑᏂ ᎤᏥᎸᏒ ᏄᎾᏍᏛ ᎾᏍᎩᏯ, ᏚᏆᏛᎩ ᎠᎴ ᏚᏥᎸᏒᎩ; ᎠᎴ ᎤᏆᏛᎩ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᏅᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏛᎩ. ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏛᎩ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏛᎩ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎾᏍᎩᏯ ᏑᏓᎵ ᏂᏚᏩᏂᎦᎸ ᎾᎿ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ. ᏚᏆᏛ ᎠᎴ ᏚᏩᏂᎦᎸ ᎤᏠᏱᏉ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᏂᎦᏛ ᏌᏉ ᎦᏅᏆᎶᏏᎶᏛ ᎪᏢᏅᎯ, ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᎾᏍᎩᏃ ᎦᎵᏉᎩ ᎪᎢ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ ᎠᎴ ᏗᏥᏃᏍᎦᎶᏗ ᎠᎴ ᏗᏥᏃᏍᎦᎸᏛᏗᎦᎶᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏚᏬᏢᏔᏅᎩ. ᏌᏉ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏬᏢᏔᏅᎩ ᎾᏍᎩ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᎾᎿ ᏤᏥ ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᏩᏒᎩ ᎬᏙᏗᏱ ᎤᏬᏢᏅᎩ ᎠᏓ-ᎬᎿᎨ ᎤᏬᏢᏔᏅᎩ. ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᎢᎦᏱᏛᎭ ᎨᏒᎩ, ᎠᎴ ᏔᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ; ᏚᎷᎬ ᎤᏠᏱᏉ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏭᏢᏔᏅᎩ, ᎦᏚᎢᏗᏢ, ᎠᎴ ᏗᏍᏆᎨᏂ ᎬᏩᏚᏫᏛ, ᎠᎴ ᏕᎤᎷᎬᎢ; ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᏄᏩᏁᏔᏅᎩ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ. ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ ᎾᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎬᏩᏚᏫᏛ ᏂᎬᏁᏛ ᎡᎳᏗᏢ ᏚᏔᏅᎩ ᎾᎿ ᏔᎵ ᏓᏍᏛᎢ, ᏗᏍᏆᎨᏂ ᎢᏧᎳᏗᏢ, ᏗᏝᏗᏍᏗᏱ ᎦᏅᏍᏙᏗ, ᎾᏍᎩ ᎦᏅᏍᏙᏗ. ᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ. ᎠᎴ ᎾᏍᎩ ᎪᎢ ᎦᎸᏉᏗ ᎠᏠᏁᏗ ᎤᏬᏢᏅᎩ, ᎠᎴ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎦᏩᏒᎩ ᎬᏙᎩ ᎤᏬᏢᏔᏅᎩ, ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎤᏬᏢᏔᏅᎩ, ᎾᏍᎩᏯ ᏂᎬᏁᎲ ᎪᏢᏍᎬ ᏅᏬᏘ ᎪᏢᏍᎩ. ᎠᏥᎸᏃ ᎨᎳᏍᏗᏱ ᎠᏓ-ᎬᎿᎨ ᎤᏬᏢᏔᏅᎩ; ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᎠᎴ ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᎢᎦᏱᏛᎭ ᎨᏒᎩ, ᎠᎴ ᏦᎢ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ. ᏚᎷᎬᏃ ᏚᏬᏢᏅᎩ, ᏚᏪᎧᏅᎩ ᎾᎿ ᏅᎩ ᏂᏚᏅᏏᏴᎢ; ᏚᎷᎬ ᎤᏠᏱᏉ ᎨᏒᎩ; ᎥᏣᏱᏃ ᎤᏭᏢᏔᏅᎩ. ᏂᎦᏛᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᏚᏬᏢᏅᎩ, ᎾᏍᎩ ᎪᏍᏚ ᎦᎶᏗ, ᎠᎴ ᎪᏕᏍᏗ, ᎠᎴ ᏧᏖᎵᏙ, ᎠᎴ ᎭᏫᏯ ᎦᏂᏴᏙᏗ, ᎠᎴ ᎠᏥᎸ ᎦᎶᏗ, ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎥᏣᏱ ᏚᏬᏢᏔᏅᎩ. ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎤᏬᏢᎾᏁᎸᎩ ᎥᏣᏱ ᎪᏢᏔᏅᎯ, ᎭᏫᏂᏗᏢ ᎤᎦᏌᏛᎢ ᏄᏩᏁᎸᎩ, ᎡᎳᏗᏢ ᎠᏰᎵ ᎢᏴᏛ ᏩᏍᏘ. ᏅᎩᏃ ᏚᏬᏢᏅᎩ ᏧᏓᏆᏙᎩ ᎾᏍᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᏗᎦᏙᏗ ᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎾᎿ ᏗᏝᏗᏍᏗᏱ ᎦᏅᏍᏙᏗ. ᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎥᏣᏱ ᏚᏭᏢᏔᏅᎩ. ᎦᏅᏍᏙᏗᏃ ᏧᏓᏆᏉᎩ ᏕᎦᏛ ᏚᏭᏍᏙᏅᎩ, ᎾᏍᎩ ᏗᏍᏆᎨᏂ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏕᎦᏛᎢ ᎾᏍᎩ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᏂᏴᏗᏱ ᎠᏴᏍᏗᏱ; ᎤᏒᏙᏂ ᏄᏩᏁᎸ ᎤᏬᏢᏅ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᏧᏯᏖᎾ ᎤᏬᏢᏔᏅᎩ. ᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎥᏣᏱ ᎤᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏠᏗᏱ ᎥᏣᏱ ᎤᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᏗᏓᎨᏗ ᎾᏍᎩ ᎠᏂᎨᏴ ᏗᏂᎳᏫᏦᎯᎯ ᏧᎾᏤᎵᎦ, ᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏗᏂᎳᏫᏦᎯᎯ. ᎣᏂᏃ ᎤᏬᏢᏅᎩ; ᎠᏍᏆᎨᏂ ᏧᎦᎾᏮ ᎢᏗᏢ ᏗᏰᏙᎳᏛᏗ ᎠᏂ ᎾᏍᎩ ᎣᏂ ᎤᏏᏙᎵ ᏙᎴᏛ ᏗᏏᏓᎵ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ, ᎠᏍᎪᎯᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᎢᎦᏅᎯᏛ. ᏗᎦᏓᏍᏛᏗ ᏔᎳᏍᎪᎯ ᏂᎦᎥᎩ, ᎠᎴ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ. ᏓᏔᎴᏒ ᏔᎳᏍᎪᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ ᏗᎦᎫᏍᏯᏍᏛᏗᏱ ᏤᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᏧᏴᏢᏃ ᎢᏗᏢ ᏤᎯ ᏗᏰᏙᎳᏛᏗ ᎠᏍᎪᎯᎫᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏗᎦᎫᏍᏛᏗᏃ ᏔᎳᏍᎪᎯ ᎨᏒᎩ, ᏓᏔᎴᏒᏃ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᏔᎳᏍᎪᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ. ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᏭᏕᎵᎬᏃ ᎢᏗᏢ ᏤᎯ ᏗᏰᏙᎳᏛᏗ ᎯᏍᎦᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏒᎩ, ᏗᎦᎫᏍᏛᏗ ᎠᏍᎪᎯ ᏂᎦᎥᎩ, ᎠᎴ ᏓᏔᎴᏒ ᎠᏍᎪᎯ ᎨᏒᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᏗᎧᎸᎬᏃ ᎢᏗᏢ ᏤᎯ ᎯᏍᎦᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ. ᏗᏰᏙᎳᏛᏗᏃ . ᏌᏉ ᎢᏗᏢ ᎾᏍᎩ [ᎦᎶᎯᏍᏗᏱ] ᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏒᎩ; ᏗᎦᎫᏍᏛᏗ ᏦᎢ ᎨᏒᎩ, ᏓᏔᎴᏒᏃ ᏦᎢ. ᏐᎢᏱᏃ ᎢᏗᏢ, ᎣᏂ ᎦᎶᎯᏍᏗᏱ, ᎯᎠ ᎢᏗᏢ ᎠᎴ Ꭰ ᎢᏗᏢ, ᏗᎦᏙᎳᏛᏗ ᎯᏍᎩᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏒᎩ; ᏗᎦᎫᏍᏛᏗ ᏦᎢ ᎨᏒᎩ, ᎠᎴ ᏓᏔᎴᏒ ᏦᎢ ᎨᏒᎩ. ᏂᎦᏛ ᏗᏰᏙᎳᏛᏗ ᎣᏂ ᎬᏩᏚᏫᏛ ᏕᎦᏛᎢ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᎠᎴ ᏓᏔᎴᏒ ᏗᎦᎫᏍᏛᏗ ᏗᎦᎪᏗᏱ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏇᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ ᏧᏍᎪᎵ ᏕᎫᏢᏛ ᎠᏕᎸ ᎤᏁᎬ ᎨᏒᎩ; ᎠᎴ ᏂᎦᏛ ᏗᎦᎫᏍᏛᏗ ᎾᏍᎩ ᎣᏂ [ᎤᏯᏅᎯ] ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏕᎦᎸᏍᏙᏛᎩ. ᎣᏂ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᏗᏯᏙᎳᏛᏗ ᎪᏪᎳᏅᎯ ᎨᏒᎩ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ, ᏕᎭᎷᎨ ᎠᏄᏬ ᎨᏒᎩ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ;, ᏔᎳᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᎯᏍᎩᏃ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ ᎠᏯᏛᎥᎢ, ᎤᏠᏱ ᎨᏒᎩ ᏓᏱᏙᎳᏛ ᎣᏂ ᎪᏢᏒᎢ. ᎾᎿᏃ ᏗᎦᎫᏍᏛᏗ ᏅᎩ ᏂᎦᎥᎩ , ᏓᏔᎴᏒᏃ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᏅᎩ ᏂᎦᎥᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ, ᎠᎴ ᏧᏍᎪᎵ ᏕᎫᏝᎥᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᏂᎦᏛᏃ ᏗᎨᏘᏂᏓᏍᏗ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎣᏂ ᎬᏩᏚᏫᏛ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ. ᎯᎠ ᎾᏍᎩ ᏂᎦᏥᎯᎭ ᎦᎵᏦᏙᏗᏱ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎿᏉ ᎠᏕᎸᎯ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎤᏁᏨ ᎼᏏ, ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏂ ᎵᏫ, ᎠᎬᏗᏍᎬ ᎢᏗᎹ, ᎡᎳᏂ ᎤᏪᏥ, ᎠᏥᎸ ᎨᎶᎯ. ᏇᏣᎵᎵᏃ ᏳᎳ ᎤᏪᏥ, ᎾᏍᎩ ᎭᎵ ᎤᏪᏥ, ᏧᏓᏏ ᎠᏂᎳᏍᏓᎸ ᎤᏂᏠᏱ, ᎤᏬᏢᏅᏅᎩ ᏂᎦᏛ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ ᎤᏬᏢᏗᏱ. ᎾᏍᎩᏃ ᎤᏍᏕᎸᎯᏙᎲᎩ ᎠᎰᎵᎠᏈ, ᎤᏪᏥ ᎠᎯᏏᎹᎩ ᏕᏂ ᎠᏂᎳᏍᏓᎸ ᎤᏂᏠᏱ, ᎾᏍᎩ ᏅᏲᎯ ᏗᎪᏪᎵᏍᎩ, ᎠᎴ ᎠᏏᎾᏌᏂ ᎪᏢᏅᎥᏍᎩ, ᎠᎴ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏗ ᏗᎪᏪᎵᏍᎩ ᏗᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ. ᏂᎦᏛᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎤᏅᏔᏅᎯ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎢ, ᏂᎦᏛ ᏕᎦᎸᏫᏍᏓᏁᎸ ᎦᎸᏉᏗᏳ ᎦᎵᏦᏛ ᎠᏃᏢᏍᎬᎢ, ᎾᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎾᎵᏍᎩᎸᏔᏅᎯ ᏔᎳᏍᎪᎯ ᏐᎣᏁᎳᏦᏁ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎨᏒᎩ, ᎠᎴ ᎦᎵᏉᎩᏧᏈ ᏦᎠᏍᎪᎯ ᏎᎩᎵ, ᎾᏍᎩ ᏎᎩᎵ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏗ ᎨᏒ ᏓᏁᎶᏛᎩ. ᎠᏕᎸᏃ ᎤᏁᎬ ᎤᏂᏅᎯ ᎾᏍᎩ ᎨᎦᏎᎸᎯ ᎾᏍᎩ ᏑᎾᏓᏡᎩ ᎨᏒᎢ, ᎠᏍᎪᎯᏧᏈ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎨᏒᎩ, ᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎦᎵᏉᎩᏧᏈ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᏎᎩᎵ ᎨᏒᎩ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏗ ᎨᏒ ᏓᏁᎶᏛᎩ: ᏈᎦ ᎠᏂᎲᏍᎬᎩ ᎠᏂᏏᏴᏫᎭᎢ, ᎾᏍᎩ ᎦᏛᎬ ᏌᏉ ᏎᎩᎵ ᎠᏰᎵ ᎢᎦᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏗ ᎨᏒ ᏓᏁᎶᏛᎩ; ᎾᏍᎩ ᎾᏂᎥ ᎤᏁᏅᏛ ᎨᎦᏎᏍᏗᏱ, ᏔᎳᏍᎪᎯ ᎢᏳᎾᏕᏘᏴᏛ ᏅᏛᎴᏅᏛ ᎠᎴ ᎤᎶᏒᏍᏗ, ᎾᏍᎩ ᏑᏓᎵᏧᏈ ᎢᏯᎦᏴᎵ, ᎠᎴ ᏦᎢ ᎢᏯᎦᏴᎵ, ᎠᎴ ᎯᏍᎩᏧᏈ ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᎢᏯᏂᏛ ᎨᏒᎩ. ᎾᏍᎩᏃ ᎠᏍᎪᎯᏧᏈ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎤᏁᎬ ᎠᏕᎸ ᎤᏂᏅᎢ ᎤᏅᏅᏬᏔᏅᎩ ᏚᏃᏢᏔᏅᎩ ᏓᏔᎴᏒ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎪᎱᏍᏗ ᏗᎬᏙᏗ, ᎠᎴ ᏓᏔᎴᏒ ᎠᏰᏙᎳᏛᏗ ᎪᎱᏍᏗ ᏗᎬᏙᏗ; ᎾᏍᎩ ᎠᏍᎪᎯᏧᏈ ᏓᏔᎴᏒ ᏚᏃᏢᏔᏅᎩ ᎠᏍᎪᎯᏧᏈ ᏔᎸᏗ; ᏌᏉ ᏔᎸᏗ ᏌᏉ ᎠᎳᎴᏒ ᎤᏃᏢᏔᏅᎩ ᎾᏃ ᏌᏉ ᎢᏯᎦᏴᎵ ᎦᎵᏉᎩᏧᏈ ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᏎᎩᎵ ᏗᎦᏙᏌᏗᏍᏗᏱ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᏗᎦᎫᏍᏛᏗᏱ. ᏤᎯ, ᎠᎴ ᏚᏭᏢᏅᎩ ᎾᏍᎩ ᏧᏍᎪᎵ, ᎠᎴ ᏚᏭᏓᏔᏅᎩ. ᎥᏣᏱᏃ ᎤᎾᎵᏍᎪᎸᏔᏅᎯ ᎦᎵᏆᏍᎪᎯ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎨᏒᎩ, ᏔᎵᏃ ᎢᏯᎦᏴᎵ ᏅᎩᏧᏈ ᏎᎩᎵ ᎨᏒᎩ. ᎾᏍᎩᏃ ᏚᏬᏢᏔᏅᎩ ᏓᏔᎴᏒ ᎦᎶᎯᏍᏗᏱ ᏤᎯ ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᎶᎯᏍᏗᏱ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎥᏣᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎾᎿ ᎡᎯ, ᎠᎴ ᏂᎦᏛ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ. ᏓᏔᎴᏒᏃ ᎣᏂ ᎬᏩᏚᏫᏛ ᏤᎯ, ᎠᎴ ᏓᏔᎴᏒ ᎣᏂ ᎦᎶᎯᏍᏗᏱ ᏤᎯ, ᎠᎴ ᏂᎦᏛ ᏗᎨᏘᏂᏓᏍᏗ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏂᎦᏛ ᏗᎨᏘᏂᏓᏍᏗ ᎣᏂ ᎬᏩᏚᏫᏛ. ᎠᏄᏬᏃ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᏗᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏧᎾᏄᏬᏍᏗ ᏚᏃᏢᏅᎩ, ᎦᎸᏉᏗᏳ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᏚᏃᏢᏅᎩ ᏗᎦᎸᏉᏗ ᎡᎳᏂ ᏧᏄᏬᎢ; ᎾᏍᎩᏯ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ. ᎠᎴ ᎡᏉᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏬᏢᏔᏅᎩ ᎠᎴ ᏕᎭᎷᎨ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ. ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎤᏂᏅᏆᎶᎥᎯ ᏌᎨ ᏄᏅᏁᎸᎩ, ᎤᏯᏅᎯᏃ ᎤᏃᏢᏔᏅᎩ, ᎾᏍᎩ ᎤᎾᏑᏴᏗ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ, ᎤᏥᎸᎢ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎩ. ᏗᎦᏅᏬᏃ ᏤᎯ ᏚᏃᏢᏅᎩ ᎾᏍᎩ ᎾᎿ ᏗᎫᏓᏙᏗᏱ; ᎾᏍᎩ ᏔᎵ ᏓᏍᏛ ᏕᎫᏔᏛᎩ. ᎠᏓᏠᏍᏗ ᎡᏉᏗ ᎤᏤᎵ ᎦᎸᏍᏙᏗ ᎾᎿ ᎫᏓᏛᎢ, ᎤᏠᏱ ᎪᏢᏔᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᏂᎬᏅ ᎪᏢᏒᎢ; ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏛᎩ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏄᎨᏓᎵ; ᎾᏍᎩᏯ ᏱᎱᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎣᏂᎦᏃ ᏅᏯ ᏚᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏅᏯᏗᎦᎪᏗᏱ ᏚᏂᎧᏅᎩ, ᏕᎪᏪᎸᎩ ᎾᏍᎩᏯ ᎠᏐᎥᏍᏙᏗ ᏂᎬᏅ ᎪᏪᎸᎢ, ᏚᎾᏙᎥ ᎢᏏᎵ ᏧᏪᏥ ᏕᎪᏪᎸᎩ. ᏗᎦᏅᏬᏃ ᎡᏉᏗᏱ ᏚᏪᎧᏅᎩ, ᎾᏍᎩ ᏅᏯ ᎢᏏᎵ ᏧᏪᏥ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏒᎩ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎠᏓᏁᏣᏍᏚᎶᏃ ᎤᏬᏢᏅᎩ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎩ, ᎡᏉᏗ ᏂᎬᏅ ᎾᏍᎩᏯ ᏂᎬᏅᎩ; ᎪᏢᏛᎩ ᎠᏕᎸ ᏓᎶᏂᎨ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎨᎦᎨᎢ, ᎠᎴ ᎤᏥᎸᎢ ᎤᏏᏙᎵ ᏗᏏᏓᎵ. ᎢᎦᏱᏛᎭ ᎨᏒᎩ; ᎠᏰᎦᎵ ᏄᏅᏁᎸᎩ ᎤᏃᏢᏅ ᎠᏓᏁᏣᏍᏚᎶᎢ; ᎠᏓᏬᎯᎳ ᏂᎦᏅᎯᏒᎩ, ᎠᎴ ᎠᏓᏬᎯᎳ ᎾᏯᏛᎥᎩ, ᎠᏰᎦᎸᎩ. ᎾᎿᏃ ᏅᎩ ᏂᏚᏓᏅᏅ ᏅᏯ ᏚᏂᎧᏅᎩ; ᎢᎬᏱᏱ ᎤᏓᏅᏅ ᎦᏂᎵᏯ, ᎠᎴ ᏙᏆᏏ, ᎠᎴ ᎡᎻᎳ ᏕᎦᎧᎲᎩ; ᎯᎠ ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᏓᏅᏅᎢ. ᏔᎵᏁᏃ ᎤᏓᏅᏅ ᏕᎦᎧᎲᎩ ᏃᏈᎩ, ᎠᎴ ᏌᏆᏯ, ᎠᎴ ᏓᎹᏂ. ᏦᎢᏁᏃ ᎤᏓᏅᏅ. ᏤᏏᏂ, ᎠᎴ ᎡᎩᏗ, ᎠᎴ ᎠᎻᏗᏏ. ᏅᎩᏁᏃ ᎤᏓᏅᏅ, ᏇᎵ, ᎠᎴ ᎣᏂᎩ, ᎠᎴ ᏣᏍᏆ; ᎠᏕᎸ ᏓᎶᏂᎨ ᏅᏯ-ᏗᎦᎪᏗᏱ ᏕᎦᎧᎲᎩ ᎾᎿ ᏗᎦᎪᏗᏱ ᎨᏒᎢ. ᏅᏯᏃ ᎾᏍᎩᏯ ᎢᏏᎵ ᏧᏪᏥ ᎾᏂᎥ ᏚᎾᏙᎥ ᏂᎦᎥᎩ, ᎾᏍᎩ ᏔᎳᏚ, ᎾᏍᎩᏯ ᎾᏂᎥ ᏚᎾ ᏙᎥᎢ, ᎾᏍᎩᏯ ᎠᏐᎥᏍᏙᏗ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎠᏂᏏᏴᏫᎭ ᏕᎪᏪᎸᎩ ᏚᎾ ᏙᎥᎢ, ᎾᏍᎩᏯ ᎾᏂᎥ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸᎢ. ᎠᏓᏁᏣᏍᏚᎶᎩ ᎯᏃ ᏓᏍᏛᎢ, ᏧᏓᏕᏒᏛ ᏚᏃᏢᏅᎩ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏏᏓᎵ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏚᏃᏢᏔᏅᎩ. ᏔᎵᏃ ᏅᏯ-ᏗᎦᎪᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ, ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ; ᎠᏓᏁᏣᏍᏚᎶᎩ ᎯᏃ ᏓᏍᏛᎢ ᏚᎾᏔᏅᎩ ᎾᏍᎩ ᏔᎵ ᏧᏓᏆᏙᎩ. ᎾᏍᎩᏃ ᏔᎵ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ; ᏧᏓᏆᏙᎩ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏓᏍᏛᎢ ᏚᎾᏛᏅᎩ. ᎢᏧᎳᏃ ᏧᏍᎪᎵ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏯ-ᏗᎦᎪᏗᏱ ᏚᏄᏓᎸᏅᎩ, ᏗᎦᏅᏬᏃ ᏤᎯ ᎡᏉᏗᏱ ᎢᎬᏱᏗᏢ ᏚᏂᏯᎸᏅᎩ. ᏧᏓᏆᏙᎩᏃ ᏔᎵ ᏚᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ, ᏓᏍᏛᏃ ᎢᏧᎳᏗᏢ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏚᎾᏔᏅᎩ, ᎾᏍᎩ ᎡᏉᏗᏱ ᎠᏍᏛ ᎭᏫᏂᏗᏢ. ᏂᏗᎬᏩᏓᎴᏃ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ, ᏔᎵᏃ ᏗᎦᏅᏬ ᏤᎯ ᎡᏉᏗᏱ ᎭᏫᏂᏗᏢ ᏚᎾᏔᏅᎩ, ᎢᎬᏱᏗᏢ ᏫᏚᏳᎪᏛᎢ, ᏕᎫᏓᏛ ᎾᎥᎢ, ᎡᏉᏗ ᎦᎸᏍᏙᏗ ᎦᎸᎳᏗᏢ. ᏧᏓᏆᏙᎩᏃ ᏕᎦᏛ ᎠᏓᏁᏣᏍᏚᎶᎩᏱ ᎠᎴ ᎡᏉᏗᏱ ᏚᏄᏓᏔᏅᎩ, ᎤᏅᏔᏅᎩ ᏕᎭᎷᎨ ᎠᏍᏘ, ᎾᏍᎩ ᎦᎸᎳᏗᏢ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎾᎿ ᎦᎸᏍᏗ ᎦᎸᎥᎢ ᎡᏉᏗ, ᎾᏍᎩ ᎠᏓᏁᏣᏍᏚᎶ ᎡᏉᏗᏃ ᏧᎾᎦᎴᏅᏗᏱ ᏂᎨᎡᎾ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎠᏄᏬᏃ ᎡᏉᏗ ᎭᏫᏂᏗᏢ ᎠᏄᏬᏍᏗ ᎤᏬᏢᏅᎩ, ᎬᏅᎯ ᎠᏄᏬ ᎤᏬᏢᏔᏅᎩ, ᏕᎭᎷᎨᏍᏛᎭ ᎨᏒᎩ. ᎠᏄᏬᎩ ᎯᏃ ᎠᏰᎵ ᎠᏔᎴᏒᎩ, ᎭᏆᏥᏂᏱ ᏣᏔᎴᏐ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎠᎬᏔᏅᏛᎩ ᎠᏔᎴᏒ ᎬᏩᏚᏫᏛ, ᎾᏍᎩ ᎤᏓᏣᎦᎸᏗᏱ ᏂᎨᏒᎾ. ᏕᏓᎷᏯᏛᏃ ᎠᏄᏬᎩᎯ ᏆᎻᏆᏂ ᏚᏃᏢᏅᎩ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᏚᏃᏢᏔᏅᎩ. ᎤᎭᎸᏂᎯᏃ ᏚᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎤᏑᏴᎾ ᏚᏃᏢᏔᏅᎩ, ᎠᏰᎵᏃ ᏚᎾᏔᏅᎩ ᎤᎭᎸᏂᎯ ᏆᎻᏆᏂ ᏕᎦᏛᎢ, ᎦᏓᎷᏯᏛ ᎠᏄᏬᎩᎯ, ᎬᏩᏚᏫᏛ ᏆᎻᏆᏂ ᏕᎦᏛ ᎠᏰᎵ; ᎤᎭᎸᏂᎯ ᎠᎴ ᏆᎻᏆᏂ, ᎤᎭᎸᏂᎯ ᎠᎴ ᏆᎻᏆᏂ ᏕᎦᏛᎩ ᎬᏩᏚᏫᏛ ᎦᏓᎷᏯᏛ ᎠᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏄᏬᏍᏗ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎠᎴ ᏗᏄᏬ ᎤᏥᎸᎢ ᎤᏏᏙᎵ ᏚᏃᏢᏔᏅᎩ, ᎬᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏄᏬᏍᏗ. ᎠᎴ ᎠᎵᏍᏚᎶ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᎤᏃᏢᏔᏅᎩ, ᎠᎴ ᏧᏬᏚᎯ ᏗᎵᏍᏚᎶ ᎤᏥᎸ ᎤᏏᏙᎵ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏥᎵ ᏗᏑᎶ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᏚᏃᏢᏔᏅᎩ. ᎠᎴ ᎠᏓᏠᏍᏗ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᎤᏃᏢᏔᏅᎩ, ᎠᎴ ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᏴᎩ ᎬᏗ ᎪᏪᎳᏅᎯ ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎠᏯᏖᎾᏃ ᎦᏯᎸᏗ ᎦᎸᏉᏗᏳ ᎠᎵᏍᏚᎶᎩᎯ ᎤᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᏅ ᎤᏃᏢᏔᏅᎩ, ᎠᎴ ᎤᏃᏪᎳᏅᎩ ᎾᎿᏂ ᎠᏐᎥᏍᏙᏗᏱ ᏥᏕᎪᏪᎶ ᎾᏍᎩᏯᎢ, ᎯᎠ ᏄᏍᏛᎩ; ᏱᎰᏩ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎸᎯ. ᎾᎿᏃ ᎤᏃᎸᏌᏛᏅᎩ ᎠᏇᎷᏍᏗ ᎢᏳᏍᏗ ᏕᎭᎷᎨᎢ, ᎾᏍᎩ ᎠᏍᏓᏱᏗᏍᏙᏗ ᎠᎵᏍᏚᎶᎩᎯ ᎦᎸᎳᏗ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎾᏍᎩᏃ ᏂᎦᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᏃᏢᏍᎬ ᎦᎵᏦᏙᏙᏗ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏍᏆᏛᎩ; ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᏄᎾᏛᏁᎸᎩ ᎾᏍᎩᏯ ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ; ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸᎩ. ᎦᎵᏦᏙᏙᏗᏃ ᎼᏏ ᎤᏂᏲᎮᎸᎩ ᎦᎵᏦᏙᏙᏗ ᎠᎴ ᏂᎦᏛ ᎤᏤᎵ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᏧᏤᎵ ᏗᎫᏓᎸᏗᏱ, ᏧᏤᎵ ᏧᏯᏖᎾ, ᏧᏤᎵ ᏗᏍᏆᎾᎳᏗᏍᏗ, ᎠᎴ ᏧᏤᎵ ᏗᎦᎫᏍᏛᏗ, ᎠᎴ ᏧᏤᎵ ᏓᏔᎴᏒᎢ. ᎠᎴ ᎫᏢᏗ ᎤᏂᏃᏕᎾ ᎦᏁᎦ ᎩᎦᎨ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎫᏢᏗ ᏓᎭᏏ ᎦᏁᎦ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎾᏍᎩ ᎫᏢᏗ. ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᎦᎶᏗᏱ, ᎦᏅᏍᏙᏗ, ᎠᎴ ᎫᏢᏗ, ᎦᏍᎩᎶ ᏂᎦᏛᏃ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᎾᎿ ᏗᏠᏗ, ᎠᎴ ᎠᎦᏙᏗ ᎦᏚ, ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᎪᎱᏍᏗ ᎾᏑᏴᏫ, ᎪᎢ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ ᎾᎿ ᏗᎦᎪᏗ, ᎾᏍᎩ ᏗᏨᏍᏙᏗ ᏗᎦᏅᏃᏗ ᏗᎦᎪᏗ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᎾᎿ ᏤᎯ, ᎠᎴ ᎪᎢ ᎢᎦ ᎠᏘᏍᏙᏗ. ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ, ᎠᎴ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎴᏙᎳᏛᏗᎠ; ᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᎾᎿ ᎡᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎥᏣᏱ ᎪᏢᏔᏅᎯ, ᏧᏤᎵ ᎦᏅᏍᏙᏗ, ᎠᎴ ᏂᎦᏛ ᏧᏤᎵ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᏗᎪᏑᎴᏗ, ᎠᎴ ᎾᎿ ᎠᏠᏗᏱ: ᏗᎦᏰᏙᎳᏛᏗ ᎣᏂ ᎪᏢᏒᎢ, ᏗᎦᎫᏍᏛᏗ ᎠᎴ ᏓᏔᎴᏒᎢ, ᎠᎴ ᎣᏂ ᎪᏢᏒ ᎦᎶᎯᏍᏗᏱ ᎠᏰᏙᎳᏛᏗ, ᎠᏍᏕᏱᏛ ᏧᏤᎵᎦ, ᎠᎴ ᏧᏤᎵ ᏗᎨᏗᏂᏓᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏗᏄᏬ ᏙᎸᏫᏍᏓᏁᎲ ᏗᏄᏬᏍᏗ, ᎾᏍᎩ ᎦᎸᎳᏗᏳ ᎨᏒ ᏙᎸᏫᏍᏓᏁᎲᎢ, ᎦᎸᏉᏗᏳ ᏗᏄᏬ ᎡᎳᏂ ᎠᏥᎸ ᎨᎶᎯ ᏧᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏄᏬ, ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ. ᎾᏍᎩᏯ ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ, ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᎤᏃᏢᏅᎩ ᏂᎦᏛ ᏗᎦᎸᏫᏍᏓᏁᎯᏘ. ᎼᏏᏃ ᏚᎧᎿᏅᎩ ᏂᎦᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎬᏂᏳᏉ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏒ ᎤᏁᏨ ᏄᏅᏁᎸ ᎥᎨᏒᎩ, ᎾᏍᎩᏯ ᏄᏅᏁᎸ ᎥᎨᏒᎩ, ᎼᏏᏃ ᎣᏍᏛ ᏚᏁᏤᎸᎩ. ᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎢᎬᏱᏱ ᎢᎦ ᎢᎬᏱᏱ ᎧᎴᏍᏗ ᏅᏙ ᎯᎧᏅᎭ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎾᎿᏃ ᎯᏛᎭ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎠᎴ ᎦᏁᏌᎢ ᎠᏰᏙᎳᏛᏗ ᎱᏢᏔᏅᎭ. ᎠᎴ ᎦᏍᎩᎶ ᎯᏴᏔᏂᎸᎭ, ᎠᎴ ᎣᏍᏛ ᏕᎯᏝᏅᎭ ᎾᎿ ᎣᏍᏛ ᏗᏠᏗ ᎨᏒᎢ; ᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᎯᏴᏔᏂᎸᎭ, ᎠᎴ ᏕᎯᏨᏍᏔᏅᎭ ᏗᏨᏍᏙᏗ. ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ, ᎾᎿ ᎦᏩᏒᎩ ᎬᏙᏗᏱ, ᎯᎧᏅᎭ ᎢᎬᏱᏗᏢ ᎦᏁᏌᎢ ᏥᏴ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎠᎴ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎦᏛᏗ ᎯᏰᏙᎳᏛᏅᎭ. ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏙᏗᏱ, ᎯᎧᏅᎭ ᎦᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏰᎵ ᎯᎧᏅᎭ, ᎠᎴ ᎠᎹ ᎾᎿ ᎯᏢᎭ. ᎠᎴ ᎬᏩᏚᏫᏛ ᎯᎧᏅᎭ ᎣᏂ ᎪᏢᏒᎢ, ᎠᎴ ᎭᏛᏅᎭ ᎠᏰᏙᎳᏛᏗ ᎣᏂ ᎦᎶᎯᏍᏗᏱ. ᎠᏠᏁᏗᏃ ᎪᎢ ᎯᏁᎩᏒᎭ, ᎠᎴ ᎯᎶᏁᏔᏅᎭ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᎿᎥᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏅᏁᎸᎭ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᎾᎿ ᏓᎲᎢ; ᎦᎸᏉᏗᏳᏃ ᎨᏎᏍᏗ. ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏔᏁᏗᏱ ᎯᎶᏁᎥᎭ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏅᏁᎸᎭ ᎠᏥᎸ ᎨᎳᏍᏗᏱ; ᎠᎴ ᎤᏣᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ. ᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎠᏠᏗᏱ ᏕᎯᎶᏁᎥᎭ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏕᎲᏁᎸᎭ. ᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎩᏯᏖᏃᎸᎭ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎹ ᎩᏯᏬᏍᏔᏅᎭ. ᎡᎳᏂᏃ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏕᎯᏄᏬᎥᎭ, ᎠᎴ ᎯᎶᏁᎥᎭ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏴᏁᎸᎭ; ᎠᎴ ᎪᎱᏍᏗ ᎠᏆᏛᏁᎸᎭ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎩᏯᏘᏃᎸᎭ ᎠᎴ ᏗᏄᏬ ᏕᎩᏄᏬᎥᎭ: ᎠᎴ ᎩᎶᏁᎥᎭ, ᎾᏍᎩᏯ ᎤᏂᏙᏓ ᏨᏘᎶᏁᎢ, ᎪᎱᏍᏗ ᎬᏆᏛᏁᎸᎭ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎨᏥᎶᏁᎥ ᎠᏥᎸ ᎠᏁᎶᎯ ᎨᏒ ᎠᏎ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᎾᏓᏁᏟᏴᏏᏒᎢ. ᎾᏍᎩ ᏄᏛᏁᎸᎩ ᎼᏏ; ᎾᏍᎩᏯ ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ, ᎾᏍᎩ ᏄᏛᏁᎸᎩ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᎢᎬᏱ ᎧᎸ ᏅᏙ ᏔᎵᏁ ᎤᏕᏘᏴᏌᏗᏒ, ᎢᎬᏱᏛ ᎢᎦ ᏅᏙ ᎧᎸ, ᎤᏂᎧᏅᎩ ᎦᎵᏦᏛᎢ. ᎼᏏᏃ ᎤᏪᎧᏅᎩ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏚᏍᏓᏱᏛᎩ ᏓᏔᎴᏒᎢ, ᎠᎴ ᏧᏯᏖᎾ ᏚᏪᎧᏅᎩ, ᎠᎴ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏚᏍᏆᎾᎳᏛᎩ, ᎠᎴ ᏗᎦᎫᏍᏛᎩ, ᏗᎦᎫᏍᏛᏗ ᏚᏪᎧᏅᎩ. ᎠᎴ ᎤᏕᏙᎳᏛᏅᎩ ᎠᏄᏬ ᎤᏭᏢᏔᏅᎩ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎫᏢᏗ ᎦᎵᏦᏛ ᎾᎿ ᎦᏚᎢᏗᏢ ᎠᎨᏢᏅᎩ ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᏗᎧᎿᏩᏛᏍᏗᏃ ᏚᎩᏒᎩ, ᎠᎴ ᎦᏁᏌᎢᎯ ᏚᎳᏅᎩ, ᎠᎴ ᎦᏅᏍᏙᏗ ᎦᏁᏌᎢᎯ ᏚᏝᏛᎩ, ᎫᏢᏗᏃ ᎦᏁᏌᎢᎯ ᎦᏚ ᎤᏝᏛᎩ: ᎦᏁᏌᎢᏃ ᎦᎵᏦᏛ ᎤᏴᏔᏂᎸᎩ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎫᏢᏗ ᎤᏰᏙᎳᏓᏅᎩ, ᎠᎴ ᎤᏭᏢᏅᎩ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎦᏍᎩᎶᏃ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏴᏔᏅᎩ, ᎫᏴᏢ ᎢᏗᏢ ᎦᎵᏦᏛ ᎤᏪᎧᏅᎩ, ᎠᏰᏙᎳᏛ ᏙᏱᏗᏢ. ᎦᏚᏃ ᎾᎿ ᎤᏅᏃᏔᏅᎩ ᏱᎰᏩ ᏓᎧᏅᎢ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏪᎧᏅᎩ ᎦᏍᎩᎶ ᎦᏍᎩᎸ ᏧᏳᎪᏗ ᏧᎾᎦᏮ ᏫᏚᏳᎪᏛ ᎦᎵᏦᏛᎢ. ᎠᎴ ᏗᏨᏍᏙᏗ ᏚᏨᏍᏔᏅᎩ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏁᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎠᏥᎸᏃ ᎨᎳᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏪᎧᏅᎩ, ᎠᏰᏙᎳᏛ ᎢᎬᏱᏗᏢ: ᎤᎦᎾᏍᏛᏃ ᎦᏩᏒᎩ ᎾᎿ ᎤᏩᏔᏅᎩ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎦᎶᎯᏍᏗᏱᏃ ᎦᎵᏦᏛ ᎠᏰᏙᎳᏛᏗ ᎤᏛᏅᎩ. ᎠᏥᎸᏃ ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏙᏗᏱ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎾᎥ ᎤᏪᎧᏅᎩ, ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎾᎿ ᎤᎾᎵᏍᎪᎸᏔᏅᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏉᏙᏗ, ᎠᎴ ᎢᏒ ᎠᎵᏍᎪᎸᏙᏗ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᏗᎪᏑᎴᏗᏱᏃ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏥᎸᏃ ᎨᎳᏍᏗᏱ ᎠᏰᎵ ᎤᏪᎧᏅᎩ, ᎠᎴ ᎠᎹ ᎾᎿ ᎤᏢᎩ, ᎾᏍᎩ ᎠᏙᏑᎴᏗᏱ. ᎼᏏᏃ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᎿ ᏚᏃᏑᎴᎥᎩ ᏧᏃᏰᏂ ᎠᎴ ᏧᎾᎳᏏᏕᏂ.: ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏩᏂᏴᎲ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎾᎥ ᎠᏂᎷᎩ, ᎠᎾᏙᏑᎴᏍᎬᎩ; ᎾᏍᎩᏯ ᏱᎰᏩᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ. ᎠᎴ ᎤᎵᏦᏔᏅᎩ ᎤᏚᏫᏛ ᎦᎵᏦᏛ ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᎧᎲᎢ, ᎠᎴ ᎤᏰᏙᎳᏛᏅᎩ ᎠᏰᏙᎳᏛᏗ ᎣᏂ ᎦᎶᎯᏍᏗᏱ. ᎾᏍᎩᏃ ᎼᏏ ᎤᏍᏆᏛᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᎤᎶᎩᎸᏃ ᎤᏭᏢᏅᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏱᎰᏩ ᎦᎸᏌᏛ ᎤᎧᎵᎸᎩ ᎦᎵᏦᏛᎢ. ᎼᏏᏃ ᎥᏝ ᏰᎵ ᏫᎬᏩᏴᏍᏗ ᏱᎨᏎ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᎶᎩᎸᏰᏃ ᎾᎿ ᎤᎩᎸᎩ, ᎠᎴ ᎦᎸᏌᏛ ᏱᎰᏩ ᎤᎧᎵᎸ ᎦᎵᏦᏛᎢ. ᎤᎶᎩᎸᏃ ᎠᎵᏌᎳᏛᎦ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᎸᎳᏗᏢ ᏄᏛᏅᎢ, ᎢᏏᎵ ᏧᏪᏥ ᎠᎾᏂᎩᏍᎬᎩ ᏩᏂᎦᏛᎢ: ᎢᏳᏍᎩᏂ ᎤᎶᎩᎸ ᏄᎵᏌᎳᏌᏅᎾ ᏱᎩ, ᎥᏝ ᏱᎾᏂᎩᏍᎨ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎠᎵᏌᎳᏛᎦ. ᎤᎶᎩᎸᏰᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎦᎵᏦᏛ ᎤᎩᎸᎩ ᎢᎦ ᎨᏒᎢ, ᎠᏥᎸᏃ ᎤᎩᎸᎩ ᏒᏃᏱ, ᏓᏂᎧᏅ ᎾᏂᎥ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᏂᎦᏅᎯᏒ ᏚᎾᏂᎩᏒᏒᎢ. ᏗᎧᏃᎩᏛ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᎦᏯ ᏁᏙᎲᎾᎢ ᎨᏎᏍᏗ ᎠᏂᏍᎦᎾ ᏄᏍᏛ ᎤᎾᏓᏅᏖᎵᏓᏍᏗᏱ ᎠᎴ ᎾᎴᎮᎵᏙᎲᎾ ᎢᎨᏎᏍᏗ ᎤᏲ ᏧᏂᎸᏫᏍᏔᏁᎯ ᎤᏂᏅᏅᎢ ᎠᎴ ᏂᎦᎲᏍGᎾ ᎢGᏎᏍᏗ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ ᎤᎾᏅᏗᏱ ᏱᎰᏩᏍᎩᏂ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎣᏏ ᎤᏰᎸᏐᎢ ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏓᏅᏖᏍᎪ ᏗᎬᏩᎩ ᎠᎴ ᎾᏍᎩ ᏡᎬ ᏓᏤᎴᏍᏗ ᎠᎹ ᏕGᏴ ᎤᎶᏗ ᏥᎦᎧᎰᎢ, ᎾᏍᎩ ᎤᏓᏛᏗᏱ ᏓᏍᏆᎸᎯᏒᎢ ᏣᏓᏛᏍᎪᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎳᏍᏚᏒ ᎥᏝ ᏱᎧᏴᏍᎨᏍᏗ; ᎠᏂᏍᎦᎾᏍᎩ ᎥᏝ ᎾᏍᎩ ᏱᏄᎾᏍᏗ; ᎤᎦᏔᏄᎶᏔᏅᎯᏍᎩᏂ ᏓᎾᏤᎸ, ᎾᏍᎩ ᎤᏃᎴ ᏣᏴᏍᏗᏍᎪᎢ ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏂᏍᎦᎾᎢ ᎥᏝ ᏴᎬᎾᎴᎲᎦ ᏗᎫᎪᏙᏗᏱ ᎠᎴ ᎤᏲ ᎢᏯᎾᏛᏁᎯ ᎥᏝ ᏴᎬᎾᎴᎲᎦ ᎤᎾᏓᏅᏘ ᏓᏂᎳᏫᎥᎢ ᏱᎰᏩᏰᏃ ᎠᎦᏔᎭ ᎾᏓᏅᏘ ᎤᏂᏅᏅᎢ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᎤᏂᏅᏅ ᏛᏲᏦᏂ ᎠᏙᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᎳᏬᏍᎦ, ᎠᎴ ᎠᎾᏓᏅᏖ ᎢᏳᎾᏛᏁᏗᏱ ᎾᏍᎩ ᎢᎬᏩᎵᏍᏙᏗ ᏂᎨᏒᎾ? ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᏚᎾᎴᏅᎩ, ᎠᎴ ᎠᏰᎵ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏂᎳᏫᏨᎩ ᎠᎾᏡᏗᏍᎬ ᏱᎰᏩ, ᎠᎴ ᎠᎾᏡᏗᏍᎬ ᎤᏤᎵ ᎦᎶᏁᏛ [ᎯᎠ ᎾᏂᏪᏍᎬᎩ] ᏗᏗᎦᎸᎦ ᏧᎾᏓᎸᏍᏗ, ᎠᎴ ᏗᎦᏓᎤᎦ ᎠᏍᏕᏱᏛ ᎾᏍᎩ ᏧᎾT. ᎦᎸᎶᎢ ᎤᏬᎵ ᏓᏳᏰᏥ; ᎢᎰᏩ ᏙᏛᏙᏢᏔᎢ ᎿᏉᏃ ᏙᏓᎧᏁᏤᎵ ᎤᏔᎳᏬᏍᎬᎢ, ᎠᎴ ᏙᏛᏕᏯᏙᏔᏂ ᎤᎿᎸᏒᎢ. ᎠᏎᏃ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᏥᎶᏁᎥ ᎠᏆᏤᎵ ᎦᎸᏉᏗ ᏌᏯᏂ ᎤᏌᎯᎸᎢ. ᎬᏂᎨᏒ ᏅᏓᎬᏁᎵ ᏄᏍᏛ ᏚᏚᎪᏔᏅᎢ; ᏱᎰᏩ ᎯᎠ ᎾᎩᏪᏎᎸ; ᏂᎯ ᎠᏇᏥ, ᎪᎯ ᎢᎦ ᏍᏆᏕᏁᎸ. ᏍᎩᏔᏲᏏ, ᏙᏓᎬᏴᎧᏁᎵᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎢᏣᎧᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎡᎶᎯ ᏫᏚᏍᏘᏥᏙᎸ ᏣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ. ᏔᎷᎩᏍᎩ ᎠᏙᎳᏅDᏍᏗ ᏙᏓᎩᏍᏆᎵᏍ; ᏓᎩᏯᏓᏬᏔᏂ ᎾᏍᎩᏯ ᏗᏩᎵ ᏣᎦ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᎦᏔᎿᎢ ᎿᏉ Ꮻ ᏳᎯ; ᏂᎯ ᎢᏥᎬᏫᏳᎯ; ᏪᏤᏲᎲᎦ ᏗᏧᎪᏗᏍᎩ ᎡᎶᎯ ᎢᏤ. ᏤᏥᎦᎿᏩᏚᎦ ᏱᎰᏩ ᎦᎾᏰᎯᏍD, ᎠᎴ ᏗᏥᎾᏩ ᎢᏥᎾᏰᏍᎬᎢ. ᎡᏣᏙᏪᏙᎥᎦ ᎤᏪᏥ ᏴᏥᏔᎳᏬᎯᏍ, ᎠᎴ ᏱᏙᏥᏲᎱᎯ ᎾᎿ ᎢᏣᎢᏒ ᎠᏏᏉ ᎤᏍᏗᏉ ᎤᏔᎳᏬᏍᎬᎢ, ᎣᏏᏳ ᎢYᎾᎵᏍᏓᏁᏗ ᏂᎦᏗᏳ ᎬᏩᎵᏍᎦᏍᏙᏗᏍᎩ ᎾᏍᎩ. ᏱᎰᏩ ᎦᏙ ᎤᎵᏍᏙᏓᏅ ᏧᏂᏁᏨ ᎬᏯᎵᎯᏍᏗᏍᎩ? ᎤᏂᏣᏔ ᎠᏴ ᏕᎬᎩᏍᏘᎴᏱᏌ: ᎤᏂᏣᏔ ᎯᎠ ᏂᎬᎩᏪᏎᎭ ᎠᏆᏓᏅᏙ, ᎤᏁᏔᎤᎯᏱ ᎥᏝ ᏱᎭ ᎤᎵᏍᎨᏙᏗ ᎠᏎᏃ ᏂᎯ ᏱᎰᏩ, ᎠᏴ ᎠᏆᎬᏑᎶᏙᏗ; ᎠᏴ ᎠᏆᏙᎵ ᎦᎸᏉᏗᎯᏳ ᎨᏒᎢ; ᎠᎴ ᏥᏍᎪᎵ ᏍᎩᏌᏔᏓᏁᎯ. ᏱᎰᏩ ᏥᏁᏙᎸᎩ ᎠᎩᏁᎢᏍᏗ ᎨᏒ ᎠᏋᏔᏅᎩ, ᏛᎠᏆᏛᎦᏁᎸᎩᏃ ᎤᏙᎵᎪᎯ ᎦᎸᏉᏗᏳ ᎤᏌᎯᎸᎢ. ᎠᏆᏂᏏᏅᎩ, ᎠᎴ ᎠᎩᎸᏅᎩ; [ᎠᎴ] ᎠᎩᏴᏨᎩ; ᏱᎰᏣᏰᏃ ᎠᎩᏍᏆᏂᎪᏔᏅᎩ. ᎥᏝ ᏴᎦᎦᏥᏍᎦᏯ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ ᏴᏫ, ᎬᏣᏚᏫᏛ ᏥᏕᎬᎩᎦᏘᎴᎦ. ᏔᎴᎲᎦ ᏱᎰᏩ [ᏣᎬᏫᏳᎯ]; ᏍᎩᏍ d g ᎸᏲᎩ ᏍᏆᏁᎳᏅᎯ: ᏂᎦᏗᏳᏰᏃ ᎬᎩᏍᎦᎩ ᏚᏂᎪᏆᎸᏛ ᏕᎨᎯᏴᏂᎸ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᏂᏍᎦᎩ ᏓᏂᎰᏙᎬ ᏕᎨᎯᏍᏆᎵᏌᎸ. ᎠᎵᏍᎦᎸᏙᏗ ᎨᏒ ᏱᎰᏩ ᎤᏍᏆᏂᎪᏗ; ᏗtᏍᏙᎵᎦ ᏴᏫ ᎣᏍᏛ ᏂᏕᎭᏛᏁᎭ. ᏥᏁᎩ ᏯᏆᏛᎦᏁᎰᏍᏗ, ᏂᎯ ᏚᏳᎪᏛ ᎢᏯᏆᏛᏁᏗᏱ ᏯᏆᏁᎳᏅᎯ ᏥᎩ: ᏀᎢᏳ ᎤᏪᎵᎯᏍᏗ ᏥnᏆᎵᏍᏓᏁᎲᎩ, ᎠᎴ ᎭᏛᎬᎦ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ. ᎯᎳᎪ ᎤᏓᎪᎯᏥ ᏂᎯ ᏴᏫ ᏧᏁᏥ, ᎠᏆᏙᎵᏌ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎨᎰᎯᏍᏗ ᏅᏓᏍᎩᏴᏁᎵ? ᎯᎳᎪ ᎤᏓᎪᎯᏥ ᎬᏙᏗ ᏂᎨᏒᎾ ᎢᏥᎨᏳᏎᏍᏗ ᎠᎴ ᎦᏰᎪᎢ ᎨᏒ ᎢᏥ ᏲᎰᏍᏗ ᎠᏎᏃ ᎢᏥᎦᏔᎰᏏd ᏱᎰᏩ ᎤᏓᏓᎴᏔᏅᎢ ᎣᏓᏅᏘ ᎤtᏍᏒ ᎤᏙᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ; ᏱᎰᏩ ᎠᏎ ᏛᏆᏛᎦᏁᎵ ᏥᎮᏙᎸᎭ. ᏣᎾᏴᏒᎯ ᎯᏙᎨᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏣᏍᎦᏅᏨᎩ; ᏨᏒ ᏣᏓᏅᏙ ᎭᎵᏃᎰᏓ ᎯᏅᎬᎢ, ᎠᎴ ᏁᏣᏛᏁᏍᏗᏉ. ᏚᏳᎪᏛ ᏓᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏥᏍᎪᎸᏓ, ᎠᎴ ᏱᎰᏩ ᎠᏣᎵᏍᎦᏍᏙᏗ. ᎤnᏘᏌᏔ ᎦᎪ ᎣᏍᏛ ᎢᎦᏓᏅᏓᏗᏍᏗ ᏓᎩᎾ ᎰᎪᏫᏎᎵ ᎠᎾᏓᎭ? ᏂᎯ ᏙᏣᎧᏃᏗᏱ ᎢᎦ ᎦᏓᏍᏓᏍᎬ ᏍᎩᏌᎳᏓᏏ ᎠᏆᏓᏅᏙᎩ ᎤᎵᎰᎵᏍᏗ ᎨᏒ ᏍᎩᏍᎪᎸᏁᎸ, ᏑᏍᎦᏉ ᏀᎢᏳ ᎠᎦᏔᏛᏍᎩ, ᎠᎴ ᏖᎸᎳᏗ ᏨᏣᏍᏔᏅᎯ ᏧᏂᏁᏉ ᏉᎲᎦ. ᏙᎯ ᏓᎦᏂᏏᎯ, ᎠᎴ ᏓᏥᎸᏂ; ᏱᎰᏩᏰᏃ ᎤᏥᏒᎯ ᎤᏣᏙᎯᏰᏛ ᎬᏆᏕᏗ ᎾᏋᏃᎭ. ᏥᏁᎬ ᎭᏛᏓᏍᏔ, ᏱᎰᏩ, ᎭᎦᏌᏯᏍᏓ ᎮᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ. ᎭᏛᏓᏍᏓ ᏥᏁᎬ ᎦᏧᏱᎲᎢ, ᏣᎬᏫᏳᎯ, ᎠᎴ ᏍᏆᏁᎳᏅᎯ; ᏂᎯᏰᏃ ᏓᎬᏯᏓᏙᎵᏍᏓᏁᎵ. ᏑᎾᎴᎢ ᏓᏛᎦᏂ ᏥᏁᎬ, ᏱᎰw (ᏣᎬᏫᏳᎯ); ᏑᎾᎴ ᏂᎯ ᏗᏦᎸ ᎾᏗᏓᎪᏗᏍᎨᏍᏗ ᎦᏓdᎵᏍᏗᏍᎬᎢ, ᎠᎴ ᎦᎸᎳᏗ ᏫᏗᎦᎦᏂᏎᏍᏗ. ᏂᎯᏰᏃ ᏣᏁᎳᏅᎯ ᏥᎩ ᎥᏝ: ᎣᏏ ᎨᏣᏰᎸᏗ ᏱᎩ ᎤᏁᏗᏥᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎤᏲᏃ ᎨᏒ ᎤᏝ ᏂᎯ ᎮᎲ ᎬᏣᏕᏗᏱᎩ. ᎤᏁᎳᎵᏍᎦᏂᏍᏛ ᎥᏝ ᏂᎯ ᏕᎯᎧᏅ ᏱᏓᏂ ᏙᎨᏍᏗ; ᏂᎦᏗᏣ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎨᎯᏂᏆᏘᎯ ᎢᎩ. ᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᏓᎨᎯᏛᏔᏂ ᏱᎰᏩ ᎤᏣᏘ ᏓᎦᏂᏆᏘᎵ, ᎠᎴ ᎤᏠᎾᏍᏗ ᎠᏍᎦᏯ. ᎠᏴᏍᎩᏂ, ᎤᏣᏘ ᏣᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏓᏥᏳᏍᏔᏂ ᏣᏓᎵᎦ ᎠᏓᏁᎸᎢ; ᎠᎴ ᏂᎯ ᎬᎾᏰᏍᎬ ᏣᏙᎵᎦ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᏍᏗᏱ ᎢᏗᏢ ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ. ᏱᎰᏩ, ᏍᏆᏘᏂᏎᏍᏗ ᏣᏙᎵᎦ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎬᎩᏍᎦᎩ ᎠᏁᎲᏫᎦᎵᏒᏙᏗ; ᏣᏙᎵᎦ ᎦᏅ Ꮏ ᏣᏗᏒ ᏂᏥᏃᎯᏍᏗ ᎢᎬᏱᏢ ᎠᏆᎧᎸᎢ. ᏚᏳᎪᏛᏰᏃ ᎨᏒ ᎥᏝ ᏳᏓᏑᏯ ᎠᏂᎧᏂᏍᎬᎢ; ᎭᏫᏂᏃ ᎨᏒ ᎤᏣᏘ ᎤᏂᏁᏗᎯᏳ; ᎤᏂᎩᏍᏗᏱ ᎨᏒ 'ᎠᏙᎵᏍᏛ ᎤᎵᏍᏚᎢᏛ ᎢᎩᏛᏙᎵᏙ; ᏓᏂᏃᏙᏛ ᎠᏅᏗᏍᎪ ᎠᎾᏓᎸᏉᏗᏍᎩ. ᏂᎯ ᏣᏁᎳᏅᎯ ᏓᎨᎯᏛᏔᏂ; ᎤᏅᏒ ᎠᎾᏓᏅᏘᏍᎬ ᎡᎳᏗ ᏧᏂᏅᎢ ᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᏧᏡᏍᎪᏒᎯ ᎠᏂᏍᏚᏅᎬ ᏓᎨᎯᎸᎪᏫᏍᏔᏂ; ᏂᎪᏰᏃ ᏕᎨᏣᎦᏘᎴᏅ. ᏂᎦᏗᏳᏍᎩᏂ ᏂᎯ ᎨᏣᎵ ᏍᎦᏙᏗᏍᎩ ᏛᎾlᏂᎵᏥ; ᎠᎴ ᏂᎪᎯᎸ ᏛᏁᎷᏂ ᎠᎾᎵᎮᎵᎬᎢ, Ꮒ ᎨᎮᏍᏕᎵᏍᎬ ᏅᏓᎦᎵᏍᏙᏔᏂ; ᎠᎴ ᎾᏍᏉ ᏕᏍᏙᎥ; ᎤᏂᎨᏒᎯ ᎨᏣᎵᎮᎵᏙᎮᏍᏗ. ᏂᎯᏰᏃ ᏱᎰw ᎣᏍᏛ ᎾᏘᏰᏛᏁᎵ ᎤᏓᏅᏘ: ᎣᏍᏛ ᏂᏯᏛᏁᎲ; ᎠᎴ ᎾᏍᏉ ᏕᏤᏙᎥ; ᎤᏂᎨᏳᎯ ᎨᏣᎵᎮᎵᏙᎮᏍᏗ. ᏱᎰᏩ ᏞᏍᏗ ᏍᎩᏯᎩᏨᎩ ᏣᏔᎳᎧᏯᎬᎢ, ᏞᏍᏗ ᎠᎴ ᏍᎩᏯᏛᏗᏍᏔᏅᎩ ᎤᏗᎴᎩ ᏣᏐᏅᏙᎲᎢ. ᏍᎩᏙᎵᎩᏲᎪ ᏱᎰᏩ ᏥᏣᎾᎦᎵᏳᏰᏃ; ᏱᎰᏣᏲᎪ ᏍᎩᏅᏮᎦ, ᏗᎩᎪᎶᎯᏰᏃ ᎠᎩᏢᎦ. ᎠᏆᏓᏅᏛ ᎠᎴ Ꭷ ᎤᏣᏘ ᎡᎯᏍᏗ ᎾᏉ ᎵᏍᏔᏁᎭ: ᎠᏎᏃ ᏂᎯ ᏱᎰᏩ (ᎬᏯᏛᏛᎲᏍᎦ) ᎯᎳᎪ ᏅᏓᎪᎯᏥ (ᎾᏍᎩ ᎮᏍᏕᏍᏗ?) ᎡᎭᏧᎾᏲᎪ ᏱᎰᏩ, ᎠᏆᏓᏅᏙᎩ ᎢᏓᎳᎩ: ᏍᎩ ᎦᎸᏲᎪ ᏣᏓᏙᎵᏍᏣᏛ ᏫᏂᎦᎵᏍᏙᏓ. ᎠᏲᎱ ᎯᏍᏗᏰᏃ ᏗᎨᏒ ᎥᏝ ᏂᎯ ᏰᏣᏅᏓᏗᏍᎨᏍᏗ; ᎠᎴ ᏗᏓᏂᏐᏗᏱ ᏗᎨᏒ ᎦᎪ ᏂᎯ ᏣᎴ ᎮᏙᎵᎮᏍᏗ? ᎠᎩᎸᏰᏗᏍᎬ ᏓᎩᏯᏪᎦ; ᎠᏆᏙᏍᏓᎥ ᎤᎵᏧᏓᏆᏛ ᏓᏯᏯᏗᏍᏙᎢ; ᎠᎴ ᏕᏥᎦᏌᎢᎲ ᎠᏆᏙᏍᏙ ᏥᏚᎳᏍᏗᎪᎢ. ᏗᏥᎦᏙᎵ ᏓᎩᏙᎸ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏛ ᏅᏧᎵᏍᏙᏔᏅ ᏓᎩᎦᏴᎳᏙᎭ ᎬᎩᏍᎦᎩᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ. ᏍᎩ ᏯᏓᏅᏏ ᏂᎦᏗᏳ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᎯ; ᏱᎰᏣᏰᏃ ᎤᏛᎦᏅ ᏥᏁᎬ ᎦtᎤᏍᏱᎲᎢ. ᏱᎰᏩ ᎤᏛᎦᏅ ᎮᏍᏛ ᏥᏔᏲᏎᎬᎢ; ᏱᎰᏩ ᏙᏛᏓᏂᎸᏥ ᏥᏍᏓᏙᎵᏍᏙᏁᎲᎢ. ᎬᎩᏍᎦᎩ ᏛᎾᎦᎰᏏ ᎠᏚ ᎤᏣᏖ ᎤᏲ ᏛᎾᏓᏅᏓᏗ; ᏛᎾᏧᏏ ᎠᎴ ᎤᏰᎶᎢᏍᏗ ᏛᎾᏕᎰᏏ. ᏱᎰᏩ ᎣᎦᏤᎵ ᏣᎬᏫᏳᎯ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᏕᏣᏙᎥ ᎡᎳᏂᎬᎢ ᏗᏂᎰᎵ ᏗᏂᏲᎵ ᎠᎴ ᏗᏂᏍᏓᎢ ᏕᏧᎪᏔᏅ ᏅᏓᏳᎾᏄᎪᎢᏍᏗᏱ ᎡᏣᎸᏉᏙᏗ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎨᏣᏍᎦᎩ ᎨᏒᎢ, ᎾᏍᎩ ᎡlᏪ ᎩᏴᏗᏱ ᎠᎦᏍᎩ ᎠᎴ ᎤᎾᏞᎩ. ᎢᏳᏃ ᏕᎦᎦᏅᎦ ᏣᏤᎵ ᎦᎸᎶᎢ ᏕᎯᏰᏌᏛ ᏚᎸᏫᏍᏓᏁᎸᎢ; ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎠᎴ ᏃᏈᏏ, ᎾᏍᎩ ᏗᏦᏢᏅᎯ ᏥᎩ; ᎦᏙ ᏴᏫ ᎾᏍᎩ ᏥᏯᏓᏅᏖᏍᎪᎢ? ᎠᎴ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩ ᏥᏯᎦᏔᏂᎯᎰᎢ? ᎤᏍᏗᎩᏛᏉᏰᏃ ᎡᏍᎦ ᏂᏴᏁᎸ ᏂᎩᏴᏁᎸ ᎦᎸᎳᏗ ᎨᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎯᏍᏚᎶᏔᏅ ᏗᎬᏩᎸᏌᏓ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ. ᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏂᎥyᏁᎸᎩ ᏗᏦᏰᏂ ᏚᎸᏫᏍᏓᏁᎸᎢ; ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏧᎳᏏᏕᏂ ᎭᏫᏂᏗᏢ ᏂᏕᏨᏁᎸᎩ; ᏂᎦᏗᏳ ᎤᏂᏃᏕᎾ ᎠᎴ ᏩᎦ, ᎥᎥ, ᎠᎴ ᏅᎩ ᏗᏂᏅᏌᏗ ᎢᎾᎨ ᎠᏁᎯ; ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᎠᏣᏗ ᎠᎺᏉᎯ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎠᎺᏉᎯ ᏕᎦᏅᏅ ᎠᏂᎶᏍᎩ. ᏱᎰᏩ, ᎣᎦᏤᎵ ᏣᎬᏫᏳᎯ, ᏂᎦᎥ ᎦᎷᏉᏗᏳ ᏕᏣᏙᎥ ᎡᎳᏂᎬᎢ. ᏱᎰᏩ, ᎦᎪ ᏛᏕᏂ ᏣᎵᏦᏛᎢ? ᎦᎪ ᏛᏁᎳᏗ ᏣᏤᎵ ᎦᎸᏉᏗᏳ ᎤᏌᎯᎸᎢ? ᎾᏍᎩ ᏚᏳᎪᏛ ᎠᎴᏂᏙᎯ, ᎠᎴ ᏚᏳᎪᏛ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏁᎩ ᏧᏓᏅᏛᎢ. ᎾᏍᎩ ᎤᏲ ᎾᏓᏃᎮᏍᎬᎾ ᎦᏃᎪ ᎬᏗᏍᎬᎢ, ᎠᎴ ᎤᏲ ᏂᎬᏁᎲᎾ ᎾᎥ ᎢᏧᎾᏓᎳ, ᎠᎴ ᎤᏐᏅ ᏂᎦᏃᏣᎸᏍᎬᎾ ᎾᎥ ᎢᏧᎾᏓᎳ. ᎾᏍᎩ ᎦᏂᏆᏘᎯ ᎠᏥᏲᎢᏎᏛ ᏴᏫ; ᏗGᎸᏉᏗᏍᎩᏍᎩᏂ ᏱᎰᏩ ᎠᏂᎾᏰᏍᎩ; ᎤᏲ ᎢᏳᏩᏁᎯ ᎠᏎᎵᏛᎦ ᎦᏁᏟᏴᏍᎩ ᏂᎨᏒᎾ. ᎠᏕᎸ ᏓᏓᏙᎳᏍᏗᏍᎬ ᎧᏁᏉᎩ ᎢᎬᏁᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏗᏓᏂᎸᎩ ᏂᎨᏒᎾ ᎨᎦᏌᏍᏛ ᏄᏂᏍᎦᏂᏫᏘᏍᏫᎾ. ᎯᎠ ᎾᏍᎩ ᎢᏯᏛᏁᎯ Ꭵ Ꮭ ᎢᎸᎯᏳ ᎠᏥᏖᎸᏗ ᏱᎨᏎᏍᏗ. ᎦᎸᎶ ᎧᏃᎲᏍᎦ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎠᎴ ᎦᎸᎶ ᎬᏂᎨᏒ ᏂᎬᏁ ᏧᏬᏰᏂ ᏚᎸᏫᏍᏓᏁᎸᎢ. ᎢᎦ ᏂᏚᎩᏨᏂᏒ ᎦᏬᎯᎭ, ᎠᎴ ᏒᏃᏱ ᏂᏚᎵᏏᏂᏒ ᎧᏃᎲᏍᎦ ᎠᎦᏔᎾᎢᏳ ᎨᏒᎢ. ᎥᏝ ᎬᏩᏂᏁᎢᏍᏗ ᏱᎩ, ᎥᏝ ᎠᎴ ᎬᏩᏂᏬᏂᎯᏍᏗ ᏱᎩ, ᎠᎴ ᎠᏂᏁᎬ ᎥᏝ ᎬᏛᎪᏗ ᏱᎩ. ᎠᏂᏃᎮᏍᎬ ᎡᎶᎯ ᏂᎬᎾᏛ ᏚᏰᎵᏒ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎡᎶᎯ ᏩᏍᏛ ᎢᏴᏛ ᏚᏰᎵᏒ. ᏀᎾ ᎤᎵᏦᏓᏁᎸ ᏅᏙ ᎢᎦ-ᎡᎯ; ᎾᏍᎩ ᏅᏙ ᎠᏕᏒᎲᏍᎩ ᏓᏤᎸ ᎤᏴᏍᏗᏱ ᏨᏗᎦᏄᎪᎪᎢ, ᎠᎴ ᎠᎵᎮᎵᎪ ᎾᏍᎩᏯ ᎤᎵᏂᎩᏛ ᎠᏍᎦy ᏨᏗᏙᎩᏱᏐ ᏣᎵᎮᎵᎪᎢ. ᎦᎸᎶᎢ ᏩᏍᏛ ᏗdᎴᎲᏍᎦ, ᎠᎴ ᏀᎾ ᏩᏍᏔ ᎤᏕᏯᏍᏗᏱ; ᎤᎥᏝ ᎪᎱᏍᏗ ᎬᏍᎦᎳᏁᎸᎯ ᏱᎩ ᎾᏍᎩ ᎤᏗᎴᎬᎢ. ᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᎤᏤᎵ ᏄᎪᎸᎾ, ᎦᏁᏟᏴh {ᏴᏫ} ᎤᏓᏅᏙ; ᏗᎧᎾᏩᏛᏍᏗ ᏱᎰw ᎤᏤᎵ ᎤᏙᎯᏳᎯᏯ, ᎠᎦᏔᎾᎢ ᎢᏳᏩᏁᎯ ᎾᎦᏔᎾᎥᎾ; ᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᎤᏤᎵ ᎤᏣᏘᏂ ᏂᎨᏒᎾ ᎤᎵᎮᎵᏍᏗᎭ {ᏴᏫ} ᎤᎾᏫ; ᏗᎧᎾᏩᏛᏍᏗ ᏱᎰw ᎤᏤᎵ ᎦᏓh ᏂᎨᏒᎾ, ᎢᎦᎯ ᎢᎬᏁᎯ ᏗᏂᎦᏙᎵ {ᏴᏫ.} ᏱᎰᏩ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎦᎦᏅᎦᎸᏛ, ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎡᎲᎢ; ᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᏧᏤᎵ ᎤᏙᎯᏳᎯᏯ, ᎠᎴ ᏚᏳᎪᏛ ᎤᏩᏒᎯᏳ. ᎤᏟ ᎤᏚᎸᏗᏳ ᎾᏍᎩ ᎡᏍᎦᏉ ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎥᎥ, ᎡᏍᎦᏉ ᎤᎪᏗ ᎪᎱᏍᏗ ᏄᏓᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨᎢ; ᎠᎴᏬ ᎤᏟ ᏄᎦᏀᎢ ᎡᏍᎪᏉ ᏩᏚᎵᏏ, ᎠᎴ ᏩᏚᎵᏏᏕᎦᏬᎬᎢ. ᎠᎴᏬ ᎾᏍᎩ {ᏗᎧᎿᏩᏛᏍᏗ} ᎤᏪᏯᏔᎲᏏg ᎢᎩ ᎯᏅᏏᏓᏍᏗ; ᎠᎴ ᏛᎧᎿᏩᏕᎬ ᎤᏣᏘ ᎠᏩᏛᏙᏗ. ᎦᎧ ᏱᎪᎵᎩ ᎠᏍᎦᏀᎢᏳ ᎨᏒᎢ? ᏍᎩᏅᎦᎸ ᏂᎨᎵᏍᎬᎾ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ. ᎯᏲᏍᏙᏓᏏ ᎾᏍᏉ ᎯᏅᏏᏓᏍᏗ ᎤᏢᏉᏗ ᎤᏓᏅᏛ ᎤᏍᎦᏂᏍᏗᏱ; ᏞᏍᏗ ᎬᎩᏎᎪᎩᏒᎩ; ᎿᏉ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎯ ᎨᏎᏍᏗ. ᎠᎴ ᎠᎩᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᎡᏆ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ. ᏘᎣᎵ ᎧᏁᎬᎢ ᎠᎴ ᎠᎩᎾᏫ ᎠᏓᎥNᏖᏍᎬ ᏗᎨᏣᏓᏂᎸᏍᏗᏉ ᎨᏎᏍᏗ ᏗᏣᎧᎾᏂᏓᏍᏗᏱ ᏱᎰᏩ ᏂᎯ ᏍᏆᎵ ᏱᎰᏩ ᎠᏆᏤᎵ ᎠᏫ-ᏗᎦᏘᏯ; ᎥᏝ ᏱᎬᎩᏂᎪᎯᏎᎮᏍᏗ ᎢᏤ ᏕᎦᏄᎸᏒ ᎠᎩᏂᏏᎲᏍᎪ ᎾᏍᎩ; ᎠᏆᏘᏂᏐ ᎤᎶᏗᏢ ᎤᏓᏥᎾᏍ'Ꮫ ᎠᎹ ᏕᎦᏁᎲᎢ. ᎠᏆᏓᏅᏙ ᏔᎵᏁ ᎠᏘᏃᎯᎰᎢ; ᎠᏆᏘᏂᏐ ᏚᏳᎪᏛ ᏕᎦᏅᏅᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏩᏒ ᏚᏙᎥᎢ. ᎾᏍᏉ ᏱᎦᎢ ᎤᎨᏓᎵᏴ ᎤᏓᏩᏗᏍᏙᏛ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᏎ ᎥᏝ ᏴᎦᏥᏍᎦᏯ ᎪᎱᏍᏗ ᎤᏲᎢ, ᏂᎯᏰᏃ ᏕᏍᎩᎧᎿᏩᏗᏙᎰᎢ; ᏂᎯ ᏣᏤᎵ ᎦᎾᏍᏓ ᎠᎴ ᏂᎯ ᏣᏤᎵ ᎠᏙᎳᎥᎾᏍᏗ ᎬᎩᎦᎵᏍᏓᏗᏍᎪᎢ. ᏂᎯ ᎢᎬᏱᏗᏢ ᏍᏆᏛᏅᎢᏍᏓᏁᎰ ᎦᏍᎩᎸᎢ ᎠᏂᎦᏔᎲ ᎬᎩᏍᎦᎩ; ᏂᎯ ᎪᎢ ᎯᎶᏁᏗᏍᎪ ᏥᏍᎪᎵ; ᎠᏆᏤᎵ ᎤᎵᏍᏈᏗ ᎠᎧᎵᎪᎢ ᏄᏓᎳᏏᏛᏒᎾ ᎣᏍᏛ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᎩᏍᏓᏩᏗᏙᎮ ᏂᎪᎯᎸ ᎨᎥᎢ, ᎠᎴ ᎠᏎ ᏂᎪᎯᎸ ᏥᏯᎡᏍᏗ ᏱᎰᏩ ᎤᏤᎵ ᎠᏓᏁᎸᎢ. ᏱᎰᏩ ᎢᎦᎦᏘ ᎠᏆᏤᎵᎦ ᎠᎴ ᎠᎩᏍᏕᎵᏍᎩ; ᎦᎪ ᏓᏥᎾᏰᏏ? ᏱᎰw ᎠᎵᏂᎪᎯᏍᏗᏍᎩ ᎬᏅᎢ; ᎦᎪ ᏥᏍᎦᎢᎮᏍᏗ? ᎢᏳᏃ ᎠᏂᏍᎦᎾᎢ, ᎬᎩᏍᎦᎩ ᎠᎴ ᎬᏆᏡᏗᏍᎩ ᎬᎩᎷᏤᎸ ᎬᎩᏯᎡᏗᏱ ᎠᎩᏇᏓᎸᎢ, ᏚᏂᎿᏍᏆᎶᎥᎩ ᎠᎴ ᏚᏂᏅᏨᎩ. ᎾᏍᏉ ᎤᏂᏣᏘ ᏳᎾᏅᏅ ᏱᏗᎬᎩᎦ, ᎠᎩᎾᏫ ᎥᏝ ᏴᎬᏍᎦᏯ ᎾᏍᏉ ᏓᎿᏩ ᏱᏄᏅᏁᎸ ᏱᎬᏆᏁᎷᎩᎡᎸ, ᎠᏏᏉ ᎾᏍᎩ ᏱᎠᏉᎯᏳᎭ ᏑᏓᎴᎩ ᎪᎱᏍᏗ ᏥᏯᏚᎸᎡᎸ ᏱᎰᏩ ᎠᎴ ᎾᏍᎩ ᏛᎩᏲᎵ, ᎾᏍᎩ ᎠᏆᏕᏗᏱ ᏱᎰᏩ ᎤᏤᎵ ᎠᏓᏁᎸ ᏂᎪᎯᎸ ᎨᎥᎢ ᎠᎩᎪᏩᏛᏗᏱ ᎤᏬᏚᎯ ᎨᏒ ᏱᎰᏩ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏆᎵᎮᎵᏍᏗᏱ ᏥᎪᏩᏘᏍᎬ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏀᎢᏳᏰᏃ ᎤᏲ ᎾᏆᎵᏍᏓᏁᎮᏍᏗ ᏛᏋᏍᎦᎸᏂ ᎤᎵᏦᏛ ᎭᏫᏂᏗᏢ; ᏀᎾ ᎤᏕᎵᏒ ᎤᎵᏦᏛ ᏛᏋᏍᎦᎸᏂ; ᏛᎩᏌᎳᏔᏂ ᏅᏲᎯ ᏛᎩᎧᏂ. ᎿᏉᏃ ᏥᏍᎪᎵ ᎦᎸᎳᏗᏢ ᏄᏍᏕᏍᏗ ᎬᎩᏍᎦᎩ ᏕᎬᏆᏚᏫᏍᏛᎢ; ᎤᎵᏦᏛᏃ ᏓᎦᎵᏍᎪᎸᏔᏂ ᎠᏥᎸ ᎨᎳᏍᏗ ᎨᏒ ᎾᏍᎩ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ; ᏙᏓᏥᏃᎩᏏ, ᎥᎥ, ᏙᏥᏃᎩᏏ ᏓᏥᎸᏉᏔᏂ ᏱᎰᏩ. ᏱᎰᏩ ᏔᏛᎦᏅᎭ ᏥᏁᎬᎢ ᎦᎵᏍᏔᏅᎭ, ᎠᎴ ᏍᎩᏙᎵᏨᎭ, ᎠᎴ ᏘᏁᏨᎭ ᎬᏯᏅᎲᎭ. ᎢᏥᏲᎦ ᎠᏆᎧᏛ, ᏣᏛᏅ, ᎠᎩᎾᏫ Ꭿ ᏂᏣᏪᏎᎸᎩ; ᏣᎧᏛ, ᏱᎰᏩ, ᏛᎩᏲᎵ. ᏞᏍᏗ ᏍᏋᏍᎦᎳᏁᎸ ᏣᎧᏛᎢ; ᏣᏔᎳᏬᏍᎬ ᏞᏍᏗ ᎢᏴᏛ ᎢᎯᏴᏁᎸ ᎯᏅᏏᏓᏍᏗ; ᏍᎩᏍᏕᎸᎲᎩᏰᏃ; ᏞᏍᏗ ᏍᏋᏍᎦᎳᏁᎸ ᏣᎧᏛᎢ; ᏣᏔᎳᏬᏍᎬ ᏞᏍᏗ ᎢᏴᏛ ᎢᎯᏴᏁᎸ ᎯᏅᏏᏓᏍᏗ; ᏍᎩᏍᏕᎸᎲᎩᏰᏃ; ᏞᏍᏗ ᏍᏋᏕᏨᎩ, ᎠᎴ ᏞᏍᏗ ᏍᏆᏓᏅᎡᎸᎩ, ᏣᏁᎳᏅᎯ ᎠᏗᏍᏕᎵᏍᎩ. ᎢᏳᏃ ᎡᏙᏓ ᎠᎴ ᎡᏥ ᎬᏋᏕᏨᎭ, ᎿᏉ ᏱᎰᏩ ᏛᎩᏯᏅᎯ. ᏍᏇᏲᎲᎦ ᏣᏅᏅᎢ ᏱᎰᏩ, ᎠᎴ ᏍᏆᏘᏄᎦ ᎬᏂᎨᏒ ᎦᏅᏅᎢ, ᏫᏂᎦᎵᏍᏙᏓ ᎬᎩᏍᎦᎩ ᎨᏒᎢ. ᏞᏍᏗ ᏫdᏍᎩᏲᏒᎩ ᎬᎩᏍᎦᎩ ᏄᏍᏛ ᎤnᏓᏚᎵᏍᎬ ᎢᎬᏋᏁᏗᏱ; ᎠᏂᏰᎪᎩᏰᏃ ᎠᏂᏃᎮᏍᎩ ᏚᎾᎴᏅ ᎬᏆᏡᏔᏅ, ᎾᏍᎩ ᎤᏲ ᎢᏳᎾᏓᏛᏁᏗᏱ ᎠᏅᏬᎳᏕᏍᎩ. [ᏯᏆᎵᎲᏲᎵᎴ] ᎢᏳᏃ ᎾᏉᎯᏳᏒᎾ ᏱᎨᏎ ᎠᎩᎪᏩᏛᏗᏱ ᎤᏓᏅᏘᏳ ᎨᏒ ᏱᎰw ᎠᏂ ᎦᏙᎯ ᏗᏅᏃᏛ ᎠᏁᎲᎢ. ᎯᎦᏘᏓ ᏱᎰw; ᎤᎵᏂᎩᏛ ᏣᏓᏅᏖᏍᏗ, ᎾᏍᎩᏃ ᏓᏣᎵᏂᎩᎪᎯᏍᏓᏁᎵ ᏣᎾᏫ; ᎯᎦᏘᏓ ᏱᎰᏩ. ᎯᎠ ᎾᎩᏪᏒᎩ, ᎨᏯᏔᎯ ᎨᏎᏍᏗ ᎦᎴᏂᏙᎲ ᎾᏍᎩ ᎠᎩᏍᎦᏅᎢᏍᏗᏱ ᏂᎨᏒᎾ ᏥᏃᎪᎢ ᏴᏗᏍᎬᎢ; ᏘᎣᎵ ᏓᏥᏍᏆᏂᎪᏔᏂ ᎠᏴᏑᎶᏗ ᏓᎬᏔᏂ, ᏀᎢᏳ ᎠᏂᏍᎦᎾ ᎢᎬᏱᏗᏢ ᎠᏁᏙᎯ. ᎠᏋᎨᏩ ᎨᏒᎩ ᎡᎳᏪᏱ ᎠᏋᏒᎢ, ᎡᎳᏪᏱ ᎠᏋᏒᎩ ᎣᏍᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏓᏗᏍᏗ ᏄᎵᏍᏔᏅᎩ. ᎠᎩᎾᏫ ᎭᏫᏂ ᎤᏗᎴᎲᏒᎩ; ᎠᏏᏃ ᎦᏓᏅᏖᏍᎬᎢ ᎠᏥᎸ ᎤᏓᏪᎵᎬᎩ; ᎿᏉᏃ ᏥᏃᎪᎢ ᎠᏋᏔᏅᎩ ᎠᎩᏁᏨᎩ; ᏱᎰᏩ, ᏍᏇᏲᎲᎦ ᏄᏍᏛ ᏩᏆᎵᏰᎢᎶᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎢᎪᎯᏛ ᎠᏆᎴᏂᏓᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏄᏍᏛᎢ; ᎾᏍᎩ ᎠᎩᎦᏙᎥᎯᏍᏗᏱ ᏂᏥᏩᎾᎦᎸᎢ. ᎬᏂᏳᏉ ᎢᎪᎯᏛ ᎠᏆᎴᏂᏓᏍᏗ ᎨᏒ ᎤᏬᏱᏉ ᎾᏯᏛᎥ ᏂᏨᏁᎸ, ᏗᏆᏕᏘᏱᎶᏍᏗᏃ ᎨᏒ ᎠᏎᏉ ᎢᎦᎦᏛ ᏗᏣᎧᏃᏗᏱ; ᎤᏙᎯᏳᎯᏯ ᎢᎬᏂᎢᏛᏉ ᏴᏫ ᏀᎢᏳ ᎤᎵᏂᎩᏛ ᏄᎾᏛᏅᎢ ᎠᏎᏉᏉ. ᎤᏙᎯᏳᎯᏯ ᏴᏫ ᎠᏁᏙᎲ ᎠᎾᏓᏴᎳᏔᏩᏍᎪᎢ; ᎤᏙᎯᏳᎯᏯ ᎠᏎᏉᏉ ᎠᎾᎵᏖᎸᏂᏙᎰᎢ; ᎦᏟᏏᏍᎪ ᏧᎬᏩᎶᏗ, ᎥᏝᏃ ᏯᎦᏔᎰ ᎾᏍᎩ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ. Ꭷ, ᎿᏉᏃ, ᏣᎬᏫᏳᎯ ᎦᏙ ᏥᎦᏘᏯ ? ᏂᎯ ᎬᏯᎵᏍᎦᏍᏙᏗᎭ. ᏍᏊᏓᎳᎩ ᏂᎦᏗᏳ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ; ᏞᏍᏗᏉ ᏱᎬᏆᏙᏢᏗᏍᎨᏍᏗ ᎤᏂᏁᎫ. ᎠᏋᎨᏩ ᎨᏒᎩ, ᎠᎴ ᎥᏝ ᏯᎩᏍᏚᎢᏎ ᏥᎣᎵ; ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᏂᎯ ᎢᏣᏛᏁᎸᎯ ᎨᏒᎢ. ᎯᎲᎾ ᏍᏋᏂᎸᎢ; ᎠᎩᏒᎲᏍᎦ ᏦᏰᏂ ᏍᏋᏂᏍᏔᏅᎢ. ᎢᏳᏃ ᎯᎬᎪᎸᎥᏍᎬ ᏱᎩᎵᏲᎢᏍᏗᎭ ᏴᏫ ᎤᏍᎦᏅᏨ ᏱᏍᏛᏗᏍᏗᎭ, ᎤᏬᏚᏒ ᎯᏒᏁᎰ ᏥᏍᎪᏴ ᏥᏍᎪᏴ ᎾᏍᎩᏯᎢ; ᎤᏙᎯᏳᎯᎠ ᎢᎬᏂᎢᏛᏉ ᏴᏫ ᎠᏎᏉᎢ. ᎭᏛᎬᎦ ᎦᏓᏙᎵᏍᏗᏍᎬ, ᏱᎰᏩ, ᎠᎴ ᎭᏛᏓᏍᏓ ᏕᎦᏠᏱᎲᎢ; ᏞᏍᏗᏉ ᎡᎳᏪᏱ ᏱᏨᏎᏍᏗ ᏕᏥᎦᏌᏬᎢᎲᎢ; ᏅᏆᏓᎴᏉᏰᏃ ᎯᎦᏔᎲ ᎠᎴ ᎨᏙᎯᏉ, ᎾᏍᎩᏯᏉ ᏂᎦᏛ ᏗᎩᎦᏴᎵᎨ ᏥᏄᎾᏍᏛᎢ, ᎤᏲᏍᏛᏉ ᏍᎩᏙᎵᎩ, ᎾᏍᎩ ᎠᏆᎵᎮᎵᏍᏗᏱ, ᎠᏏᏉ ᎠᏂ ᏂᎦᏂᎩᏍᎬᎾ ᎠᎴ ᏂᎦᎵᏛᏗᏍᎬᎾ ᎨᏒᎢ. ᎠᏫ ᎠᎹ ᏕgᏴ ᏥᏚᏚᎵᏍᎪᎢ, ᎾᏍᎩᏯ ᎠᏆᏓᏅᏙ ᏂᏣᏚᎵ ᏂᎯ ᏣᏁᎳᏅᎯ. ᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎤᏚᎵ ᎤᏁᎳᏅᎯ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ: ᎢᎳᎪ ᎢᏳ ᏓᎨᏏ ᎬᏂᎨᏒ ᏫᏅᏓᎦᏛᏁᎵ ᎢᎬᏱᏗᏢ ᎤᏁᎳᏅᎯ ᎤᎧᏛᎢ. ᏗᎩᎦᏌᏬᎸᎯ ᎠᏆᎵᏍᏓᏴᏗ ᎨᏒᎩ ᏗᎬᏩᎩᏨᏗ, ᎯᎠ ᏂᎪᎯᎸ ᏂᎬᎩᏪᏎᎲᎢ, ᎭᏢ ᏣᏁᎳᏅᎯ? ᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᎦᏅᏓᏓ ᎠᏆᏓᏅᏙ ᎭᏫᏂ ᏥᏐᏅᏯᏍᎪᎢ: ᎦᏥᏍᏓᏩᏛᏛᏰᏃ ᎨᏒᎩ ᎤᏂᏣᏘ; ᎣᎨᏅᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᏓᏁᎸᎢ, ᎣᏥᏁᎢᏍᏗᏍᎬ ᎠᎵᎮᎵᏍᏕᎢ ᎨᏒ ᎠᎴ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᎣᏣᎢᏒᎩ ᎤᏂᏣᏘ ᎾᏍᎩ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᎦᎸᏉᏗ ᎢᎦ ᎨᏒᎢ. ᎠᏆᏓᏅᏙ, ᎦᏙᏃ ᎡᎳᏗ ᎢᏣᏅᏨ? ᎠᎴ ᎦᏙᏃ ᎤᏪᎵᎯᏍᏗᏉ ᎢᏣᏓᏅᏔᏩᏕᎦ? ᎯᏯᎵᏍᎦᏍᏙᏓᏉ ᎤᏁᎳᏅᎯ; ᎠᏏᏉᏰᏃ ᏛᏥᎸᏉᏔᏂ ᎤᎧᏛ ᎠᎩᏎᎸᎲ ᎢᏳᏍᏗ ᎠᏆᏁᎳᏅᎯ, ᎠᏆᏓᏅᏙ ᎡᎳᏗ ᎤᏅᏨ ᎭᏫᏂ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏯᏅᏓᏗᏍᎨᏍᏗ ᎠᏓᎴhᏍᏍᎨᏍᏗ ᏦᏓᏂ ᎤᏪᏴ ᎦᏓ ᎠᎲᎢ, ᎠᎴ ᎠᏂᎭᎹᏂ ᎤᎾtᏤᎵᎪᎢh, ᎠᎴ ᎹᏌ ᎤᏌᎯᎸᎢ. ᎠᏒᎩ ᎠᎵᏍᏓᏁᎰ ᎠᏒᎩ, ᎤᏍᏆᏃᏴᎳ ᎠᎹ ᏓᎵᏌᎳᏗᏍᎬᎢ; ᏂᎦᏗᏳ ᏗᏣᏤᎵ ᏓᏓᏁᏆᏒᏍᎬ ᎠᎴ ᏓᎵᏍᏗᎳᏁᎬ ᎬᏇᎸᏔᏅ. ᎠᏎᏃ ᏱᎰᏩ ᎤᏓᏅᏘᏳ ᎨᏒ ᏛᏆᎵᏍᎪᎸᏓᏁᎵ ᎢᎦ ᎨᏎᏍᏗ, ᏒᏃᏱᏃ ᎨᏎᏍᏗ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏗ ᏕᏥᏃᎩᏍᎨᏍᏗ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎬᏅᎢ ᎠᎩᏁᎯ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ. ᎯᎠ ᏅᏓᏥᏪᏎᎵ ᎤᏁᎳᏅᎯ ᎠᎥy ᎠᏆᏤᎵ ᏅᏯ, ᎦᏙᏃ ᎢᏍᏋᎨᏫᏒ? ᎦᏙᏃ ᎢᎨᏙᎰ ᎤᏲ ᎠqᎤᏓᏅᏔwᏕᎪ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠdᏌy ᏂᎬᏋᎿᏕᎬ ᎬᎩᏍᎦᎩ? ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏗᎩᎪᎶᎯ ᏥᏚᏂᎶ ᎾᏏᎩᏯ ᎬᎩᏍᎦᎩ ᎬᏆᏢᏗᎭ; ᎯᎠ ᏂᎬᎩᏪᏎᎲ ᏂᏚᎩᏨᏂᏒᎢ; ᎭᏢ ᏣᏁᎳᏅᎯ? ᎦᏙᏃ ᎡᎳᏗ ᎢᏣᏅᏨ ᎠᏆᏓᏅᏙ? ᎠᎴ ᎦᏙᏃ ᎤᏪᎵᎯᏍᏗᏉ ᎢᏣᏓᏅᏔᏩᏕbᎠ? ᎯᏯᎵᏍᎦᏍᏙᏍᏓᏉ ᎤᏁᎳᏅᎯ; ᎠᏏᏉᏰᏃ ᏛᏥᎥᏉᏔᏂ, ᎾᏍᎩ ᏙᎯᏱ ᎠᏁᎯ ᏥᎩ ᎠᏆᎧᏛᎢ ᎠᎴ ᎾᏍᎩ ᎠᏆᏁᎳᏅᎯ. ᎤᏁᎳᏅᎯ ᎢᎦᏤᎵ ᎢᎦᏗᏍᎦᎶᏗᏱ, ᎠᎴ ᎢᏍᎦᎵᏂᎪᎯᏍᏗᏍᎩ, ᏂᎪᎯᎸ ᎠᎦᏔᏩᏕᎩ ᎢᎩᏍᏕᎵᏍᎩ ᎤᏲ ᏂᎦᏛᎿᏕᎬᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏴᎨᏗᏍᎦᏯ ᎾᏍᏉ ᎦᏙᎯ ᏳᏓᏁᏟᏴᏒ, ᎠᎴ ᏙᏓᎸ ᎠᎺᏉᎯ ᎠᏰᎵ ᏫᏓᏅᎯ ᏱᎩ; ᎠᎴ ᎾᏍᏉ ᎠᎹ nᎿ ᏕᎨᏒ ᏱᏚᏍᏆᏃᏴᎦ ᏱᏓᎵᏖᎸᎲᏍᎦ, ᎠᎴ ᏙᏓᎸ ᏱᏚᏖᎸᏗᎭ ᎾᏍᎩ ᏓᎵᏍᏗᎳᏁᎬᎢ ᎡᏉᏂ ᎤᏪᏴ, ᎠᎴ ᎾᏍᎩ ᏕᎤᏪᏯᏗᏒ ᎣᏍᏛ ᏓᏳᏓᏅᏓᏗᏍᏔᏂ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏚᎲᎢ, ᎦᎸᏉᏗᏳ ᎨᏒ ᏕᎦᏁᎸ ᎾᏍᎩ ᏩᏛ ᎦᎸᎳᏗᏳ ᎡᎯ. ᎤᏁᎳᏅᎯ ᏀᎾ ᎠᏰᎵ ᏄᏛᏅ; ᎥᏝ ᎠᏥᏖᎸᏗ ᏱᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯ ᏓᏳᏍᏕᎸᎯ ᎤᎵᏍᏗᏳ. ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᎳᏬᏒᎩ, ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎤᎾᎵᏖᎸᏅᎩ; ᎤᏁᏨᎩ; ᎡᎶᎯ ᎤᏩᎾᏬᏒᎩ. ᏱᎰᏩ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎢᎨᎳᏗᏙᎭ; ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ ᎢᎦᏗᏍᎦᎶᏗᏱ. ᎡᏤᎾ, ᎢᏣᎦᏌᏯᏍᏓ ᏕᎤᎸᏫᏍᏓᏁᎸ ᏱᎰᏩ, ᎣᏍᏛᎯ ᏂᏕᎤᏩᏁᎵᏙᎸ ᎡᎶᎯ. ᏓᎿᏩ ᏕᎨᏒ ᏓᏲᎯᏍᏗᎭ ᎡᎶᎯ ᏩᏛ ᎢᏴᏛ; ᎦᎵᏣᏗ ᏓᏍᏆᎵᏍᎦ, ᎠᎴ ᏗᏓᏘᏍᏗ ᏔᎵ ᏂᏕᎦᏗᎭ; ᏓᏆᎴᎷ ᎠᎪᎲᏍᏗ ᎠᏥᎸᏱ. ᎢᏥᏑᎵᎪᎢ, ᎠᎴ ᎢᏣᏙᎴᎰᎯ ᎠᏴ ᎤᏁᎳᏅᎯ ᎨᏒᎢ; ᎤᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎥᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎡᎶᎯ. ᏱᎰᏩ ᎤᏂᏣᏘ ᏗtᏂnᏙᎯ ᎢᎨᎳᏗᏙᎭ; ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ ᎢᎦᏗᏍᎦᎶᏗᏱ. ᏍᎩᏙᎵᎩ ᏣᏁᎳᏅᎯ, ᎲᏓ ᏣᏓᏅᏘᏳ ᎨᏒᎢ; ᎤᏣᏘ ᎨᏣᏓᏙᎵᏍᏗ ᎨᏒ ᎲᏓ ᎯᏅᎦᎸ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ. ᎣᏍᏛ ᏍᏉᏑᎵ ᏂᏗᏳᎪᏛᎾ ᎾᏆᏛᏁᎸᎢ, ᎠᎴ ᏍᎩᏅᎦᎸ ᎠᎩᏍᎦᏅᏨᎢ. ᏥᎦᏔᎭᏰᏃ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ ᎠᎴ ᎠᎩᏍᎦᏅᏨᎢ ᏂᎪᎯᎸ ᎢᎬᏱᏗᏢ ᏄᏍᏗᏕᎦ. ᏂᎯ ᏂᎯ ᏨᏒᎯᏳ ᎬᏍᎦᏅᏤᎸ, ᎠᎴ ᏕᎯᎧᏅ ᎯᎠ ᎾᏍᎩ ᎤᏲ ᎾᏆᏛᏁᎸ, ᎾᏍᎩ ᏣᏚᏓᎴᏍᏗᏱ ᎯnᎨᎬᎢ, ᎠᎴ ᏂᏣᏍᎦᏅᏨᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏕᎱᎪᏗᏍᎬᎢ. ᎬᏂᏳᏉ, ᎠᏍᎦᏂ ᎨᏒ ᎠᏆᏕᎥnᎩ; ᎠᎴ ᎠᏍᎦᏂ ᎨᏒ ᎡᏥ ᎠᎩᏁᎵᏍᏨᎩ. ᎬᏂᏳᏉ, ᎣᎯ ᏣᏰᎸᎭ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎭᏫᏂ ᎨᏒᎢ; ᎤᏕᎵᏒᏃ ᎨᏒ ᎠᏆᏕᎶᏆᏍᏗᏱ ᏅᏛᏁᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ. ᎯᏐᏈ ᏍᎩᏅᎦᎸᏓ, ᎠᏆᏓᏅᎦᎸᏛᏃ ᎨᏎᏍᏗ; ᏍᏉᏑᎵ, ᎥᏃᏥᏃ ᏄᏁᎩᏴ ᎤᏟ ᎾᎩᏁᎩᏰᏍᏗ. ᏥᎦᏛᎬᎦ ᎤᎵᎮᎵᏍᏗ ᎠᎴ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ ᎬᏩᎾᎵᎮᎵᏍᏗ ᏱᎩ. ᏛᏍᎦᎳᏏ ᏣᎧᏛᎢ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏂᏚᏳᎪᏛᎾ ᎾᏆᏛᏁᎵᏙᎸ ᎯᏅᎦᎸ. ᏣᏁᎳᏅᎯ ᏍᏉᏢᎾᏏ ᎭᏫᏂ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎩᎾᏫ; ᎠᎴ ᎭᏫᏂ ᏍᏉᏢᎯᏌᏏ ᎠᏆᏓᏅᏙᎩ, ᏚᏳᎪᏛ ᏅᎦ. ᎠᎴ ᏞᏍᏗ ᏍᎩᎨᎯᏙᎸᎩ ᎮᏙᎲᎢ; ᎠᎴ ᏣᏤᎵ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏞᏍᏗ ᏍᎩᏯᏅᎡᎸᎩ. ᏔᎵᏁ ᏍᏆᎵᏍᎪᎸᏓᏍᏗ ᎠᎵᎮᎵᏍᏗ ᏣᏓᏍᏕᎸᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ; ᎠᎴ ᎬᏩᎦᏗᏯ ᏣᏓᏁᏗ ᎨᏒ ᎠᏓᏅᏙ ᎲᏓ ᏍᎩᏌᎳᏕᏍᏗ. [ᎿᏉᏃ] ᎦᏥᏰᏲᎲᏍᎨᏍᏗ ᎤᏣᏘᏂ ᎢᏯᎾᏛᏁᎯ ᏂᎯ ᏕᏣᏅᏅᎢ; ᎠᎴ ᎠᏂᏍᎦᎾ ᎠᎾᏨᏍᎨᏍᏗ ᏂᎯ ᎨᏣᎷᏤᎮᏍᏗ. ᏍᏊᏓᎳᎩ ᎩᎬ ᎠᏨᏗ ᎨᏒ ᎠᎩᏍᎦᎥnᏨᎢ ᏣᏁᎳᏅᎯ, ᏂᎯ ᎠᏆᎵᏍᏕᎸᏙᏗ ᏣᏁᎳᏅᎯ; ᏥᏃᎪᎪ ᎠᏍᏓᏯ ᏙᏓᎧᏃᎩᏍᏔᏂ ᏣᏤᎵ ᏚᏳᎪᏛ ᎨᏒᎢ. ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᏘᏍᏗ ᏓᎩᎭᏁᎦᎸᎢ; ᏥᎣᎵᏃ ᎬᏂᎨᏒ ᏅᏓᎬᏁl ᎡᏣᎸᏉᏗᏳ ᎨᏒᎢ. ᎥᏝᏰᏃ ᏱᏣᏚᎵ ᎪᎱᏍᏗ ᎠᎸᎯ, ᏴᎦᎵᏍᎪᎸᏓᏰᏃ; ᎥᏝ ᎣᏏᏳ ᏱᏣᏰᎸᎭ ᎠᏥᎸ ᎨᎳᏍᏗ ᎨᏒᎢ. ᎠᏓnᏙ ᎠᏍᏆᎵᏒᎯ ᎾᏍᎩ ᎠᏥᎸ ᎨᎳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᎠᏍᏆᎵᏒᎯ ᎠᎴ ᎦᏓᏬᏔᏅᎯ ᎤᎾᏫ ᎥᏝ ᏴᎦᎯᏍᎦᎩ, ᏣᏁᎳᏅᎯ. ᎣᏍᏛ ᏣᏓᏰᎸᏗ ᎨᏒ ᎲᏓ ᎣᏍᏛ ᏂᏯᏛᏂᏏ ᏌᏯᏂ; ᎭᏐᏯᎦ ᎠᏐᏯᏍᏛ ᏥᎷᏏᎵᎻ. ᎩᎳ ᎿᏉ ᎣᏏᏳ ᏣᏰᎸᏎᏍᏗ ᏚyᎪᏛ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏃᏍᏛ ᎠᎪᎲᏍᏔᏅᎯ; ᎿᏉᏃ ᏓᎾᎵᏍᎪᎸᏗᏍᎨᏍᏗ ᏧᎾᎪᏅᏍᏓᎵ ᏩᎦ ᏣᏤᎵ ᎠtᏍᎸ ᎨᎳᏍᏗᏱ ᎦᏍᎩᎸᎢ. ᏣᏁᎳᏅᎯ ᏂᎯ ᏗᏧᎪᏙᏗ ᎨᏒ ᎯᎥᏏ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏂᎯ ᏣᏤᎵ ᏚᏳᎪᏛ ᎨᏒ [ᎯᎥᏏ] ᎤᎬᏫᏳᎯ ᎤᏪᏥ. ᎾᏍᎩ ᏚᏳᎪᏛ ᏓᎬᏔᏂ ᏙᏓᎫᎪᏓᏁᎵ ᏴᏫ ᏗᏣᏤᎵ, ᎠᎴ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏗᏣᏤᎵ ᏚᏳᎪᏛ ᏙᏓᎫᎪᏓᏁᎵ. ᏙᏓᎸ ᏅᏩᏙᎯᏯᏛ ᎬᏩᏂᎾᏄᎪᏫᏎᎮᏍᏗ ᏴᏫ ᎠᎴ ᏚᏌᎯᎸ [ᏅᏩᏙᎯᏯᏛ ᎬᏩᏂᎾᏄᎪᏫᏎᎮᏍᏗ] ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎬᏗ. ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎾᏍᎩ ᏴᏫ ᏙᏓᎫᎪᏓᏁᎵ, ᏙᏛᏍᏕᎸᎯ ᎤᏂᏂᎩᏛ ᏧyᏁᏥ, ᎠᎴ ᏛᏍᏆᎵᏏ ᎠᏍᏓᏯ ᎢᏯᏓᏛᏁᎯ. ᎨᏣᎾᏰᏍᎨᏍᏗ ᏂᎪᎯᎸ ᏅᏙ ᎢᎦ ᎡᎯ ᎠᎴ ᏒᏃᏱ ᎡᎯ ᎠᏂᎧᎸᎢ, ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏎᎬ [ᏴᏫ]. ᏓᎦᎷᏥ ᎾᏍᎩᏯ ᎠᎦᏍᎬ ᏥᎦᎷᎪ ᎧᏁᏍᎦ ᎠᏍᎫᏕᏒᎯ ᎦᎳᎨᏴᎢ; ᎾᏍᎩᏯ ᎠᎦᏍᎬ ᏥᎦᏚᎳᏍᏗᏍᎪ ᎦᏙᎯ. ᏀᎢᏳ ᎡᎮᏍᏗ ᎤᏓᏅᏘ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ; ᎠᎴ ᎤᏣᏘ ᏅᏩᏙᎯᏯᏛ ᎡᎮᏍᏗ ᏂᎪᎯᎸ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎧᎸᎢ. ᎤᎬᏫᏳᎯ ᎾᏍᏉ ᎨᏎᏍᏗ, ᎠᎺᏉᎯ ᎠᏓᎴᏂᏍᎨᏍᏗ ᎠᎴ ᎠᎺᏉᎯ ᏩᏍᏖᏍᏗ, ᎠᎴ ᎡᏉᏂ ᎤᏪᏴ ᎠᏓᎴᏂᏍᎨᏍᏗ ᎡᎶᎯᏃ ᏫᏚᎵᏍᏘᏂᎸ ᏩᏍᏖᏍᏗ. ᎢᎾᎨ ᏗᏁᎯ ᎢᎬᏱᏗᏢ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎮᏍᏗ; ᎬᏩᏍᎦᎩᏃ ᎦᏙᎯ ᎠᏂᎦᎾᏗᏍᎨᏍᏗ. ᎤᏂᎬᏫᏳᎯ ᏓᏏᏏ ᎠᏁᎯ ᎠᎴ ᎠᎹᏰᎵ ᏗᎬᏩᏓᏂᎸᎢᏍᏙᏗ ᎠᏂᏲᎯᎮᏍᏗ; ᎤᏂᎬᏫᏳᎯ ᏥᏩ ᎠᏁᎯ ᎠᎴ ᏏᏩ ᎠᏁᎯ ᎬᏩᎵᏍᎪᎸᏓᏁᎮᏍᏗ ᎠᏓᏁᏗ ᎨᏒᎢ. ᎥᎥ, ᏂᎦᏗᏳ ᎤᏂᎬᏫᏳᎯ ᎢᎬᏱᏗᏢ ᎡᎳᏗ ᎬᏩᏓᏅᏁᎮᏍᏗ; ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏕᎬᏩᏁᎶᏕᏍᏗ. ᎤᏂᎬᏂᏰᏃ ᏓᎫᏓᎴᏏ ᎢᏳᏃ ᏓᏠᏱᎮᏍᏗ; ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎾᏍᏉ, ᎠᎴ ᎾᏍᎩ ᏁᎲᎾ ᎤᏍᏕᎵᏍᎩ. ᏙᏓᎦᏙᎵᏥ ᎾᏍᎩ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎠᎴ ᎤᏂᎩᏛ, ᎠᎴ ᏙᏛᏍᏕᎸᎯ ᏓᏅᏅ ᎤᏂnᎩᏛ ᏙdᎫᏓᎴᏏ ᏓᏅᏅ ᎠᏓᎶᏄᎮᏍᎩ ᎨᏒ ᎠᎴ ᎠᏍᏓᏯ ᎢᏯᏓᏛᏁᎯ ᎨᏑᎥᎢ; ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᎨᏎᏍᏗ ᎤᏂᎩᎬ ᎾᏍᎩ ᏓᎧᏅᎢ. ᎠᎴ ᎾᏍᎩ ᎡᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᏥᏁᎮᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏥᏩ ᎤᏕᏅᎯ; ᎠᎴ ᏂᎪᎯᎸ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏥᏙᎵᏍᏗᏱ; ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᎠᏥᎸᏉᏗᏍᎨᏍᏗ ᏏᏏᏥᎳᏂᏫᎯ ᎠᏘᏌᎴᏍᏗ ᎦᏙᎯ ᏓᎭᏕᏍᏗ ᎦᏚᏏ ᏳᎦᏔᏔᏂᏫᎯᏃ ᎾᏍᏥ ᎠᎵᏖᎵᏫᏫᏍᏤᏍᏗ ᎴQᎤᏫᏂᏫ ᎾᏍᏥᏰᎢ ; ᎦᏚᎲᏃ ᎠᏁᎯ ᎧᏁᏍᎦ ᎦᏙᎯ ᎠᏛᏍᎩ ᏄᏬᏚᏒ ᎾᏍᎩᏯ ᏧᏃᏚᎯᏳ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᏕᎤᏙᎥ ᏂᎪᎯᎸ ᎡᎮᏍᏗ; ᏕᎤᏙᎥ ᏅᏙ ᎢᎦ ᎡᎯ ᎧᎸ ᎢᎪᎯᏛ ᎤᏛᏗ ᎨᏎᏍᏗ; ᏴᏫᏃ ᏅᏩᏙᎯᏯᏛ ᏚᎾᏓᏅᏖᏍᏗ ᎾᏍᎩ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᏂᎦᏗᏳ ᏧᎾᏓᎳᏅᏛ ᏴᏫ ᎣᏍᏛ gwᏩᏃᎮᏍᎨᏍᏗ. ᎦᎸᏉᏗ ᎨᏎᏍᏗ ᏱᎰw ᎤᏁᎳᏅᎯ, ᎢᏏᎵ ᎤnᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᎤᏩᏒᎯᏳ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎯ. ᎠᎴ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᏕᎤᏙᎥ ᏂᎪᎯᎸᎢ; ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᏩᎧᎵᎩ ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ. ᎡᎺᏅ, ᎠᎴ ᎡᎺᏅ. ᎤᏓᏙᎵᏍᏔᏅ ᏕᏫ ᏤᏏ ᎤᏪᏥ ᏓᎵᏍᏆᏓ ᏂᎦ ᏕᎤᏚᎸᏗ ᏕᎯᏁᎸ ᏱᎰᏩ ᏂᎯ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ! ᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎤᏚᎵᎭ ᎠᎴ ᎤᎸᏕᏍᏗᎭ ᏕᎤᏚᎵᏍᎬ ᏓᏓᏁᎸ ᏱᎰᏩ ᏧᏤᎵᎦ; ᎠᎩᎾᏫ ᎠᎴ ᎠᎩᏇᏓᎸ ᎠᏁᎷᎲᏍᎦ ᎤᎾᏚᎵᏍᎬ ᎬᏂᏛ ᎤᏁᎳᏅᎯ. ᎥᎥ, ᏥᏍᏆᏯ ᎤᏩᏛᎲ ᎤᏁᎳᏗᏍᏗᏱ, ᎠᎴ ᎠᎪᏍᏓᏯ ᎤᏁᏍᏓᏠᏗᏱ ᏀᎾ ᏧᏅᏗᏱ, ᎾᏍᎩ ᏂᎯ ᏗᏣᏤᎵ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᏱᎰᏩ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ, ᎠᏆᏤᎵ ᏣᎬᏫᏳᎯ, ᎠᎴ ᎠᏆᏤᎵ ᎤᏁᎳᏅᎯ. ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ ᏣᏤᎵ ᎠᏓᏁᎸ ᏗᏂᏁᎳ; ᏂᎪᎯᎸ ᎨᏣᎸᏉᏗᏍᎨᏍᏗ. ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᎦᏯ ᎾᏍᎩ ᏂᎯ ᎯᏯᎵᏂᎪᎯᏍᏗᏍᎩ; ᎾᏍᎩ ᎤᎾᏫᏱ ᏚᏍᏆᏂᎪᏗ ᏕᎦᏅᏅᎢ. ᎾᏍᎩ ᎨᏆ ᎤᎨᏓᎵᏴ ᎠᏂᎶᏍᎬ ᎠᎹ ᎠᏢᏗᏱ ᎾᏅᏁᎭ; ᎠᎴ ᎾᏍᏉ ᎠᎦᏍᎬ ᎠᎧᎵᎭ ᏛᏓᎸᎢ. ᎠᎾᎢᏒ ᎧᏁᏉᏥ ᏚᎾᎵᏂᎪᏍᎬᎢ; ᏌᏯᏂ ᏩᏂᎷᎦ ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎢᎬᏱᏗᏢ. ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ, ᎭᏛᎬᎦ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ; ᎭᏛᏓᏍᏓ ᏣᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᏣᏁᎳᏅᎯ, ᏔᎦᏅᎦ ᎣᎦᎬᏑᎶᏙᏗ, ᎠᎴ ᏔᎦᏅᎦ ᎤᎧᏛ ᏣᏤᎵ ᎦᎶᏁᏛ. ᏌᏉᏰᏃ ᎢᎦ ᏣᏤᎵ ᏓᏓᏁᎸ ᎠᏴᏍᏗᏱ ᎤᏟ ᏃᎯ ᎡᏍᎦᏉ ᏌᏉ ᎢᏯᎦᏴᎵ [ᎢᎦ]. ᎤᏟ ᏱᏥᏰᎸᎾ ᎦᎶᎯᏍᏗᏱ ᏥᎦᏘᏯ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏆᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎠᏃ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏕᎦᎵᏦᏛ ᎠᏆᏕᏗᏱ. ᏱᎰᏩᏰᏃ ᎤᏁᎳᏅᎯ ᏅᏙ ᎢᎦ ᎡᎯ, ᎠᎴ ᎠᎬᏑᎶᏗ, ᏱᎰᏩ ᏛᎵᏍᎪᎸᏔᏂ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; Ꮭ ᎪᎱᏍᏗ ᎣᏍᏛ ᎨᏒ ᏧᎨᏳᏙᏗ ᏱᎩ ᏚᏳᎪᏛ ᎠᏁᏙᎯ. ᏱᎰᏩ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ, ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᏂᎯ ᏣᎵᏍᎦᏍᏙᏗᏍᎩ. ᏣᎬᏫᏳᎯ ᏂᎯ ᎣᎦᏁᎳᏗᏍᏗᏱ ᎨᏒᎩ ᏂᎪᎯᎸ ᏴᏫ ᎤᎾᏓᏁᏟᏴᏒᏒᎢ. ᎠᏏ ᏙᏓᎸ ᏂᏓᏙᏢᎬᎾ ᎨᏎᎢ, ᎠᎴ ᎠᏏᏉ ᏂᏓᏙᏢᏍᎬᎾ ᎨᏎ ᎦᏙᎯ ᎠᎴ ᎡᎳᏂᎬᎢ, ᎠᎴ ᏅᏧᏓᎴᏅᎲᎾ ᎠᎴ ᎾᎵᏍᏆᏗᏍᎬᎾ ᏂᎯ ᏣᏁᎳᏅᎯ. ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏗᏢ ᏫᎩᎦᏘ ᏴᏫ, ᎠᎴ ᎯᎠ ᏂᏪᎭ, ᏥᏣᏨᎾ ᏂᎯ ᏴᏫ ᏧᏁᏥ. ᏂᎯᏰᏃ ᏕᎯᎧᏅ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎤᏒᎯᏉ ᎾᏍᎩᏯ ᎿᏉ ᎦᎶᎯ, ᎠᎴ ᏌᏉ ᎢᏯᏯᏫᏍᏗ ᏒᏃᏱ ᎾᏍᎩᏯᎢ. ᏕᎭᏘᏁᎦ ᎾᏍᎩᏯ ᎦᏃᎱᎩᏍᎬ ᏧᏂᏄᎲᏍᏗᏍᎩ; ᎦᎸᏗᏉ ᎨᏒ ᏓᎾᏤᎸ; ᏑᎾᎴ ᎧᏁᏍᎦ ᏣᏛᏍᎪ ᏓᎾᏤᎸ ᏑᎾᎴ ᎠᏥᎸᏍᎪ ᎠᎴ ᎠᏛᏍᎪᎢ; ᎤᏒᎯᏰᏱ ᎠᏂᏍᎫᏕᏍᎪ ᎠᎴ ᎢᎧᎾᏍᎬᎪᎢ. ᏣᎾᎸᏒᏰᏃ ᎣᎩᏒᎲᏍᎦ, ᎠᎴ ᏣᏔᎳᏬᏍᎬ ᎣᎦᏕᏯᏙᏗᎭ. ᏣᎧᏛ ᎢᎬᏱᏗᏢ ᏂᏕᏨᏁᎸ ᎣᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎤᏕᎵᏛ ᎣᎩᏍᎦᏅᏨ ᏣᎧᏛ ᏚᎸᏌᏛ ᎢᎬᏱᏗᏢ ᏂᏕᏨᏁᎸ. ᏣᏔᎳᏬᎯᏍᏗᏰᏃ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗ ᏙᎩᎩᏨᏂᏒ ᏕᎦᎶᏐᎲᏍᎪᎢ; ᏙᎦᏕᏘᏱᎶᏍᎬᏃ ᏕᎦᎶᏍᎦ ᎾᏍᎩᏯ ᎠᏓᏅᏖᏗ ᏥᎦᎶᏍᎪᎢ ᎦᎵᏆᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎠᏎᎸᎯ ᎣᎦᎴᏂᏓᏍᏗᏱ; ᏙᎦᎵᏂᎬᎬᏃ ᏱᏅᏗᎦᎵᏍᏙᏗ ᏁᎳᏍᎪᎯ ᏧᏕᏘᏴᏛ ᏱᏃᎩᏛ, ᎠᏎ ᎾᏍᎩ ᏙᎦᎵᏂᎩᎬᎬ ᏧᏯᏪᎢᏍᏗ ᎠᎴ ᎤᏕᏯᏙᏗ ᎨᏐᎢ; ᏞᎩᏳᏰᏃ ᎠᎵᏍᏆᏗᏍᎪ ᎠᎴ ᎢᏓᎵᏛᏗᏍᎪᎢ. ᎦᎪ ᎠᎦᏔᎭ ᏄᎵᏂᎬᎬ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ? ᎾᏍᎩ ᏂᏣᎾᏰᎯᏍᏛ ᎾᏍᎩᏯ ᏄᏍᏗ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ. ᏍᎩᏰᏲᎲᎦ ᏦᎦᏎᏍᏗᏱ ᏙᎩᎩᏨᏁᎬ ᎾᏍᎩ ᏗᎦᏔᎿᎢ ᎢᏧᎵᏍᏙᏗᏱ ᏦᎩᎾᏫ. ᎭᎦᏔᎲᎾ ᏱᎰᏩ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ? ᎠᎴ ᎤᏲ ᎭᏓᏅᏓᏓ ᏘᏂᎥᏏᏓᏍᏗ ᏕᎭᏓᏅᏖᏍᎬᎢ. ᏣᏓᏙᎵᏍᏗ ᎨᏒ ᏄᎳᏉ ᎣᎩᏛᏓᏁᎯ ᎢᎦᎢ ᏍᎩᎥᏏ; ᎾᏍᎩ ᎣᎦᎵᎮᎵᏍᏗᏱ,; ᎠᎴ ᎣᏍᏛ ᎣᎦᏓᏅᏓᏗᏍᏗᏱ ᏂᎪᎯᎸ ᎣᏣᎴᏂᏙᎲᎢ ᎣᏍᏛ ᏍᎩᏯᏓᏅᏓᏗᏍᏓ ᎾᏍᎩᏯ ᎢᎪᎯᏛ ᏍᎩᎩᎵᏲᎢᏍᏔᏅᎢ, ᎠᎴ ᎾᏍᎩᏯ ᏂᏚᏕᏘᏴᎲ ᎤᏲ ᎣᎩᎪᎯᏙᎸᎢ. ᏕᏣᎸᏫᏍᏓᏁᎸ ᏘᏅᏏᏓᏍᏗ ᎬᏂᎨᏒ ᏫᏄᎾᎵᏍᏓᏏ, ᎠᎴ ᎡᏣᎸᏉᏗᏳ ᎨᏒ ᏧᏁᏥ ᎬᏂᎨᏒ ᏫᏄᎾᎵᏍᏓᏏ. ᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏫᏙᎩᎧᎿᏩᏗᏓ; ᎠᎴ ᏍᎩᏍᏓᏱᏗᏏ ᏦᎪᏰᏂ ᏙᏨᏗᏍᎬ ᏙᎩᎸᏫᏍᏓᏁᎲᎢ; ᎥᎥ, ᏦᎪᏰᏂ ᏙᏨᏗᏍᎬ ᏙᎩᎸᏫᏍᏓᏁᎲ ᎯᏌᏓᏱᏛ ᎾᏍᎩ. ᎢᏥᏃᏴᎵᏍᏓ ᏤᏥᏃᎩᏍᏓ ᏱᎰᏩ ᏂᎬᎾᏛ ᎡᎶᎢ ᎢᏤᎯ. ᏤᏥᎦᎿᏩᏚᎦ ᏱᎰᏩ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎢᏨᏓ; ᎢᏥᎷᎩ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎢᏣᎵᎮᎵᎬ ᏕᏥᏃᎩᏍᎨᏍᏗ. ᎢᏥᎦᏔᎮᏍᏗ ᏂᎯ ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎨᏒᎢ; ᎾᏍᎩ ᎢᎪᏢᏁᎢ, ᎥᏝᏃ ᎢᎬᏒ ᏱᎦᏓᏙᏢᏁᎢ; ᎾᏍᎩ ᏧᏤᎵ ᏴᏫ ᎠᏴ, ᎠᎴ ᎤᏂᏃᏕᎾ ᎤᏤl ᎦᏄᎸᏒ ᎢᏓᎵᏍᏓᏴᏗᏍᎩ. ᎦᎶᎯᏍᏗᏱ ᎤᏬᎸ ᎢᏥᏴᎭ ᎢᏣᎵᎮᎵᎬᎢ; ᎢᏥᏴᎭ ᎾᏍᎩ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎢᏥᎸᏉᏗᏍᎬᎢ; ᎡᏣᎵᎮᎵᏥ ᎾᏍᎩ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏨᎦ ᎾᏍᎩ ᏕᎤᏙᎥᎢ. ᎤᏓᏅᏘᏳᏰᏃ ᏱᎰᏩ; ᎾᎵᏍᏆᏗᏍᎬᎾ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎤᏁᎢᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏂᎪᎯᎸ ᏴᏫ ᎠᎾᏓᏁᏟᏴᏏᏒᎢ. ᎠᏆᏓᏅᏙ ᏱᎰᏩ ᎯᎸᏉᏓ; ᎠᎴ ᏂᎦqᏛ ᎭᏫᏂ ᎠᎩᏯᎥ ᎯᎸᏉᏓ ᏱᎰᏩ ᎠᏆᏓᏅᏙ ᏱᎰᏩ ᎯᎸᏉᏓ; ᎠᎴ ᏞᏍᏗ ᏨᎨᏫᏒᎩ ᏂᎦᎥ ᎣᏍᏛ ᏂᏣᏛᏁᎸᎢ. ᎾᏍᎩ ᏣᏙᎵᎩ ᏥᎩ ᏄᏓᎴᏒ ᏣᏍᎦᏅᏥᏙᎸᎢ; ᎾᏍᎩ ᏣᏅᏫᏍᎩ ᏧᏓᎴᏅᏛ ᏣᏢᏥᏰᏍᎬᎢ. ᎾᏍᎩ ᎲᏅᎢ ᎫᏓᎴᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏣᏁᎯ ᎤᏣᏘ ᎤᏓᏅᏘᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒᎢ; ᎾᏍᎩ ᏣᏛᏁᎯ ᎣᏍᏛ ᏣᏁᎲᎢ ᏣᏛᏐᏅᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎯᏫᏅ ᏔᎵᏁ ᏂᎭᎵᏍᏗᎭ ᎠᏬᎭᎵ ᎾᏍᎩᏯᎢ. ᏱᎰᏩ ᏚyᎪᏛ ᏂᏓᏛᏁᎭ ᎠᎴ ᏕᎫᎪᏓᏁᎭ ᏂᎦᏛ ᎠᏍᏓy ᎢᎨᎬᎾᏕᎩ. ᏚᏅᏅ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎼᏏ, ᎠᎴ dᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎴ ᎢᏏᎵ ᏧᏪᏥ. ᏱᎰᏩ ᎤᏓᏅᏘᏳ ᎠᎴ ᎤᏣᏘ ᎤᏓᏙᎵᏣᏘᏳ, ᎤᏍᎦᏃᎵᏳ ᎤᏔᎳᏬᎯᏍᏗᏱ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᏓᏅᏘᏳ. ᎥᏝ ᏂᎪᎯᎸ ᏱᏓᏍᎦᎨᏍᏗ, ᎥᏝ ᎠᎴ ᏂᎪᎯᎸ ᏳᎿᎸᏎᏍᏗ. ᎥᏝ ᎾᏍᎩᏯ ᎢᎩᏍᎦᏅᏨ ᏱᎩᏍᏛᏗᏍᏔᏅ, ᎥᏝ ᎠᎴ ᎾᏍᎩᏯ ᎢᎩᏍᎦᏅᏨ ᏱᎦᎫᏴᎡᎸ. ᎦᎸᎶᏰᏃ ᎡᎶᎯ ᎢᏅᎯᏳ ᎦᎸᎳᏗᏢ ᏥᎩ, ᎾᏍᎩᏯ ᎡᏉᎯᏳ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏧᏪᏙᎵᏍᏗᏱ ᎬᏩᎾᏰᏍᎩ. ᎾᏍᎩ ᎢᏅᎯᏳ ᏥᏂᏕᎤᏓᎳ ᏅᏙ ᏗᎧᎸᎬ ᎠᎴ ᏅᏙ ᏭᏕᎵᎬᎢ, ᎾᏍᎩᏯ ᎢᏅᎯᏳ ᏕᎩᎲᎸ ᎢᎩᏍᎦᏅᏥᏙᎸᎢ. ᎠᎦᏴᎵᎨ ᏥᏕᎦᏙᎵᎪ ᏧᏪᏥ ᎾᏍᎩᏯ ᏱᎰᏩ ᏕᎦᏙᎵᎪ ᎬᏩᎾᏰᏍᎩ. ᎠᎦᏔᎭᏰᏃ ᏂᎦᏍᏛᎢ; ᎠᏅᏓᏗᏍᎪ ᎦᏓᏉ ᎨᏒ ᎠᏴ. ᏴᏫᏍᎩᏂ ᎠᏂ ᎤᎴᏂᏓᏍᏗ ᎨᏒ ᎧᏁᏍᎦᏉ ᏓᏤᎸ; ᎤᏥᎸᏒ ᏠᎨᏏ ᎡᎯ ᎾᏍᎩᏯ ᎠᏥᎸᏍᎪᎢ; ᎤᏃᎸᏓᏰᏃ ᎤᏃᎴ ᎿᏉ ᎠlᏛᏗᏍᎪᎢ; ᏀᎾᏃ ᎤᏛᏒ ᎤᏝ ᏔᎵᏁ ᎤᎦᏙᎥᎯᏍᏗ ᏱᎨᏎᏍᏗ. ᏱᎰᏩᏍᎩᏂ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏅᏧᏓᎴᏅᎲᎾ ᎠᎴ ᏫᎾᏍᏛᎾ ᏧᏪᏙᎵᏍᏗᏱ ᎬᏩᎾᏰᏍᎩ, ᎣᏍᏛᏃ ᎢtᏍᏛᏁᏗ ᏗᏂᏲᎵ ᏧᏁᏥᏛᎯ, ᎾᏍᎩ ᎠᏂᏍᏆᎪᏗᏍᎩ ᎤᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᎾᏍᎩ ᎠᎾᏅᏓᏗᏍᎩ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ. ᏱᎰᏩ ᎤᏪᏍᎩᎳᏛ ᎤᏪᏗᏱ ᎦᎸᎶᎢ; ᎤᎬᏫᏳᎯᏃ ᎨᏒ ᏂᎬᎾᏛ ᎤᎬᏫᏳᏌᏕᎩ. ᎡᏥᎸᏉᏓ ᏱᎰᏩ, ᏂᎯ ᎦᎸᎳᏗ ᎡᏥᏅᏏᏓᏍᏗ ᎾᏍᎩ ᏧᏤᎵᎦ, ᎢᏣᏓᎪᎾᏛᏗ ᏗᏣᎵᏂᎩᏛ, ᏗᏥᎧᎿᏩᏕᎩ, ᎢᏣᏛᏓᏍᏗᏍᎩ ᎧᏁᎬ ᎤᏤᎵ ᎧᏃᎮᏛ. ᎡᏥᎸᏉᏓ ᏱᎰᏩ ᏂᎦᏗᏳ ᏂᎯ ᏧᏤᎵ ᎢᏥᏣᏘ; ᏂᎯ ᎡᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎣᏍᏛ ᎤᏰᎸᏗ ᏗᏥᎸᏫᏍᏓᏁᎯ. ᎡᏥᎸᏉᏓ ᏱᎰᏩ ᏂᎦᏗᏳ ᎤᏬᏢᏅᏅᎯ ᏂᎬᎾᏛ ᏀᎾ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎯᎸᏉᏓ ᏱᎰᏩ ᎠqᎠᏓᏅᏙ. ᏥᎨᏳᎠ ᏱᎰᏩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏆᏛᎦᏁᎸ ᏥᏁᎬ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ. ᎾᏍᎩ ᏣᏆᏛᏓᏍᏓᏁᎸ ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᏂᎪᎯᎸ ᎨᎥᎢ. ᎤᏲ ᎠᏰᎸᏗ ᎠᏲᎱᎯᏍᏗ ᎾᏍᎩᏯ ᏓᏆᏚᏫᏍᏔᏅᎩ, ᎠᎴ ᎡᎯᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᏨᏍᎩᏃ ᎡᎯ ᎠᎩᎷᏤᎸᎩ; ᎠᎩᏩᏛᎲᎩ ᎤᏕᏯᏙᏗ ᎠᎴ ᎤᏲ ᎠᏰᎸᏗ ᎨᏒᎢ. ᎿᏉᏃ ᎥᏥᏯᏓᏙᎵᏍᏓᏁᎸᎩ ᎥᏥᏯᏅᎲᎩ ᎦᏛᎣ ᏱᎰᏩ; ᏱᎰᏩ, ᎤᏲᏍᏛᏉ ᎱᏓᎳᎩ ᎠᏆᏓᏅᏙ. ᏱᎰᏩ ᎤᏓᏙᎵᏣᏔ ᎠᎴ ᎤᏓᏅᏘ; ᎥᎥ, ᎤᏁᎳᏅᎯ ᎢᎦᏤᎵ ᎤᏓᏙᎵᏣᏘᏳ. ᏱᎰᏩ ᏓᏍᏆᏂᎪᏗᎭ ᎤᎾᏠᎾᏍᏗ ᏂᎨᏒᎾ; ᎤᏲ ᎾᏆᏛᎿᏕᎬᎩ, ᎾᏍᎩᏃ ᎠᎩᏍᏕᎸᎲᎩ. ᏣᏣᏪᏐᎸᏍᏙᏗᏱ ᏫᎯᎶᎯ ᎠᏆᏓᏅᏙᎩ; ᏱᎰᏩᏰᏃ ᎣᏍᏛ ᏂᏣᏛᏁᎸ. ᏂᎯᏰᏃ ᏍᏊᏓᎳᎡᎸᎩ ᎠᏆᏓᏅᏙ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᏗᏥᎦᏙᎵ ᏗᎦᏌᏬᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏆᎳᏏᏕᏂ ᎦᏅᎢᏍᏗ ᎨᏒᎢ. ᏓᎨᏙᎵ ᏱᎰᏩ ᎤᎧᏛ ᎢᎬᏱᏗᏢ ᎦᏙᎯ ᏗᏅᏃᏛ ᎠᏁᎲᎢ. ᎠᏉᎯᏳᏅᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᏁᏨᎩ; ᎤᏣᏘ ᏥᎩᎵᏲᎬᎩ. ᎠᎩᏏᏄᎶᎯᏎᎸᎩ ᎯᎠ ᎾᎩᏪᏒᎩ, ᏂᎦᏗᏳ ᏴᏫ ᎠᏂᏰᎪᎩ. ᎦᏙ ᏓᏥᏯᎵᏍᎪᎸᏓᏁᎵ ᏱᎰᏩ ᏓᏥᏯᎫᏴᏓᏁᎵ ᎤᏣᏘ ᎣᏍᏛ ᎾᏆᏛᏁᎸᎢ? ᏓᏥᎩᏏ ᎤᎵᏍᏈᏗ ᎠᎵᏍᏕᎸᏙᏗ, ᎠᎴ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ ᏚᏙᎥ ᏓᏥᏯᏅᎯ ᏱᎰᏩ. ᏱᎰᏩ, ᏥᏁᏤᎸ ᎢᏯᏆᏛᏁᏗᏱ ᎠᏎ ᏓᎦᎫᏴᎯ ᎠᏂᎦᏔᎲ ᏂᎦᏛ ᏧᏤᎵ ᏴᏫ. ᏱᎰᏩ ᏙᏗᎧᏅ ᎦᎸᏉᏗᏳ ᏓᏂᏲᎱᏍᎬ ᏧᏤᎵ ᎤᎾᏓᏅᏘ. ᏱᎰᏩ, ᎤᏙᎯᏳᎯᏯ ᏍᏆᏤᎵ ᏍᎩᏅᏏᏓᏍᏗ; ᏍᏆᏤᎵ ᏍᎩᏅᏏᏓᏍᏗ ᎠᏴ, ᎠᎴ ᎠᎨᏴ ᎯᏅᏏᏓᏍᏗ ᎤᏪᏥ; ᏂᎯ ᏕᏣᎸᏒᎭ ᏓᏆᏢᏍᏛᎢ. ᏓᎬᏯᎵᏍᎪᎥᏓᏁᎵ ᎠᏥᎸ ᎨᎳᏍᏗ ᎬᏯᎵᎡᎵᏤᎲ ᎬᏂᎨᏒ ᎢᎬᏁᎯ, ᎠᎴ ᏱᎰᏩ ᏕᎤᏙᎥ ᏓᏥᏯᏅᎯ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ. ᏱᎰᏩ ᏥᏁᏤᎸ ᎢᏯᏆᏛᏁᏗᏱ ᎠᏎ ᏓᎦᎫᏴᎯ ᎠᏂᎦᏔᎲ ᏂᎦᏛ ᏧᏤᎵ ᏴᏫ; ᏱᎰᏩ ᎤᏤl ᎠᏓᏁᎸ ᏚᏜᏅᏛᎢ, ᎠᏰᎵ ᏂgᎯ ᎨᏒ, ᏥᎷᏏᎵᎻ. ᎡᏥᎸᏉᏓ ᏱᎰᏩ. ᎡᏥᎸᏉᏓ ᏱᎰᏩ, ᏂᏥᎥ ᏗᏣᏓᎴᏅᏛ; ᎡᏥᎸᏉᏓ ᏂᏥᎥ ᏴᏫ ᎤᏓᏅᏘᏳᏰᏃ ᎨᏒ ᎤᏣᏘ ᎡᏉᎯᏳ ᎢᎩᏙᎵᏍᏗᏱ; ᎠᎴ ᎤᏙᎯᏳᎯ ᏱᎰᏩ ᎤᏁᎢᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᏥᎸᏉᏓ ᏱᎰᏩ. ᎦᏚᏏ ᏫᏗᎦᎦᏂᎭ, ᎭᎾ ᏗᏓᎴᎲᏯᎦ ᎠᎩ ᏍᏕᎵᏍᎩ. ᏱᎰᏩᏱ ᏗᏓᎴᎲᏍᏕ ᎠᎩ ᏍᏕᎵᏍᎩ, ᎦᎸᎶ ᎠᎴ ᏒᎶᎯ ᏧᏬᏢᏅᎯ. ᏱᎰᏩ ᎥᏞ ᎤᏁᎳᎩ ᏴᎦᏰᎳ ᏣᎳᏏᏕᏂ ᎠᏪᏍᏗᏱ ᎯᎠᏣ ᏍᏉᏂᎪᏗ ᎥᏞ ᎦᎸᏍᎪ ᏱᎩ ᎬᏂᏳᏉ ᎾᏍᎩ ᎤᏍᏉᏂᎪᏗ ᎢᏏᎵᏱ, ᎥᏞ ᎦᎸᏍᎩ ᎠᏚ ᏱᎦᎵ ᏱᎰᏩ ᏣᏍᏉᏂᎪᏗᏍᎩ, ᏱᎰᏣᏰᏃ tᏍᏙᏩᏗᏍᏓᏁᎯ ᏦᏰᏂ ᎯᎦᏘᏏ, ᏅᏙ ᎢᎦ ᎡᎯᎥᏝ ᎪᎱᏍᏗ ᏴᎦᏨᎦ ᎢᎦ ᎨᏒ, ᎠᎦ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᏱᎰᏩ ᏣᏍᏉᏂᎪᏗ ᏂᎦᎢ ᎤᏲ ᎨᏒ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏣᏓᏅᏙ ᏱᎰᏩ ᏣᏍᏉᏂᎪᏗ ᎯᏄᎪᎬᎢ ᎠᎴ ᎯᏴᎵ ᎢᎲ ᎪᎯᎨᏒ ᎠᏓᎴᏂᏍᎩ ᎠᎦ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ ᎣᏏᏳ ᎠᎩᏰᎸᏅᎩ ᎾᎯᏳ ᎯᎠ ᏂᎬᎩᏪᏎᎸ, Ꭷ, ᎢᏕᎾ ᏱᎰᏩ ᎤᏤᎵ ᏗᏓᏁᎸᎢ. ᏦᎦᎳᏏᏕᏂ ᏫᏗᎦᏙᎨᏍᏗ ᎭᏫᏂᏗᏢ ᎦᎶᎯᏍᏗᏱ ᏗᏣᏤᎵ, ᏥᎷᏏᎵᎻ. ᏥᎷᏏᎵᎻ ᎦᏚᎲ ᎤᎵᏂᎩᏛ ᏥᏂᎬᏃ ᎾᏍᎩᏯ ᏂᎬᏅ ᎠᏁᏍᎨᎲᎢ. ᎾᎿ ᎠᏁᎪ ᎠᏂᎿᎷᏍᎪ ᏓᏂᎳᏍᏓᎸᎢ, ᏓᏂᎳᏍᏓᎸ ᏱᎰᏩ ᏧᏤᎵᎦ, ᎠᎾᏛᏓᏍᏔᏁᎪ ᎧᏃᎮᏛ ᎢᏏᎵ ᎤᎾᏤ ᎾᎿᏰᏃ ᏕᎦᏍᎩᎳ ᏗᎫᏙᏙᏗᏱ, ᏕᏫ ᏨᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏧᎾᏤᎵ ᏕᎦᏍᎩᎸᎢ. ᎢᏣᏓᏙᎵᏍᏓ ᎢᏥᏔᏲᎭ ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᏧᎧᎿᏩᏗᏓᏍᏗᏱ ᏥᎷᏏᎵᎢᎢ; ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ Ꮎ ᏅᏩᏙᎯᏯᏛ ᎠᏯᎡᏍᏗ ᎭᏫᏂᏗᏢ ᏣᏐᏴᎢ, ᎠᎴ ᎧᏁᏉᎨᏍᏗ ᎣᏍᏛ ᎨᏒ ᏧᏬᏚᎯ ᏓᏓᏁᎸ ᏗᏣᏤᎵᎦ. ᎣᏣᎵᏅᏟ ᎠᎴ ᏗᏆᎵᎢ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᏣᏯᎡᏍᏗ ᏂᎯ,; ᏕᎦᏛᏂ. ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎣᏍᏛ ᎢᏣᎵᏍᏓᏁᏗ ᎨᏒ ᏛᎩᏲᎵ. ᎬᏂᏳᏉ ᏂᎦᎥ ᎣᏏᏳ ᎠᎴ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏐ ᏗᎾᏓᏅᏟ ᏌᏉ ᏥᎮᏅᏃ ᎠᏂᎲᎢ. ᎾᏍᎩᏯᏉ ᎤᏣᏘ ᏧᎬᏣᎶᏗ ᎠᏧᎮᎸᏒ ᏥᏚᏍᏚᏍᏟᏙᎢ, ᎾᏍᎩ ᎡᎳᏂ ᎠᎭᎮᎸᏒᎢ ᎠᎴ ᏅᎮᎧᎩᎯ ᎢᏴᏛ ᏥᏚᏣᏍᏉᎴᎢ; ᎾᏏᎩᏯ ᎲᏰᏂ ᏅᏌᎯᎸ ᏧᎯᏌᏔᏁᎢ, (ᎠᎴ) ᎾᏍᎩᏯ ᏌᏯᏂ ᏙᏓᎸ ᏥᏚᎯᏌᏔᏁᎢ: Ꮎ Ꮏ ᏰᏃ ᏱᎰᏩ ᎣᏍᏛ ᎤᏁᏙᎢ, ᎾᏍᎩ ᎠᎵᏯᏆᏘᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ. ᏓᏓᎶᏂ ᎡᏉᏂ ᏚᏪᏴ ᏀᎾ ᎣᎦᏅᏅᎩ; ᎥᎥ, ᏙᎦᏠᏱᎸᎩ ᏌᏯᏂ ᎣᎦᏅᏓᏓ. ᏦᎩᏃᎩᏍᏙᏗ ᏙᎦᏙᏌᏓᏛᎩ ᏧᎦᎾᏍᏓᏦᎵ ᏕᏡᎬᎢ ᏀᎾ ᎠᏰᎵ ᎨᏒᎢ. ᎪᎦᏘᎾᏫᏛᏛᏰᏃ ᎭᎿ ᎥᎪᎩᏔᏲᏎᎸ ᏦᎩᏃᎩᏍᏗᏱ; ᎠᎴ ᎾᏍᎩ ᎪᎩᎩᎵᏲᎢᏍᏔᏅᎯ ᎤᏙᎵᏍᏙᏍᏛ ᎣᎦᏛᎠnᏓᏗᏍᏗᏱ ᎥᎪᎩᏔᏲᏎᎲᎩ, [ᎯᎠ ᏅᎪᎩᏪᏎᎲᎩ,] ᏗᏍᎩᏃᎩᏏ ᏌᏯᏂ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏗ. ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏙᏥᏃᎩ ᏱᎰᏩ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏗ ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ? ᎢᏳᏃ ᏂᎯ ᏥᎷᏏᎵᎻ ᎢᎬᏴᎨᏫᏒᎭ, ᏥᎦᏘᏏ ᎠᏉᏰᏂ ᏭᏩᎨᏩ ᎠᏏᎾᏌᏅᎢ. ᏥᏃᎪᎢ ᏫᎦᏯᎸᎩ ᏥᎣᎵ, ᎢᏳᏃ ᏂᎯ ᏂᎬᏯᏅᏓᏛᎾ ᎢᎨᏎᏍᏗ-- ᎢᏳᏃ ᏥᎷᏏᎵᎻ ᎤᏟ ᏂᏥᎸᏉᏔᏅᎾ ᎢᎨᏎᏍᏗ ᎡᏍᎦᏉ ᏄᎬᏫᏳᏒ ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓnᏓᏗᏍᏗᏍᎩ. ᏱᎰᏩ ᎩᏯᏅᏓᏓ ᎢᏓᎻ ᏧᏪᏥ ᏥᎷᏏᎵᎻ ᎤᏤᎵ ᎢᎦ ᎯᎠ ᏥᏄᏂᏪᏎᎢ, ᎢᏥᏲᏍᏓ, ᎢᏥᏲᏍᏓ ᎦᎫᏍᏓᎥ ᏩᏍᏗ. ᏂᎯ ᏓᏓᎶᏂ ᎤᏪᏥ ᎯᎨᏴ ᏂᎯ ᎡᏣᏛᏙᏗ ᏥᎩ; ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏣᎫᏴᎡᎯ ᎾᏍᎩᏯ ᏂᎯ ᏂᏍᎩᏴᏁᎸᎢ. ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᏗᎦᏁᏍᎩ ᏧᎾᏍᏗ ᏗᏤᏥ ᎠᎴ ᏗᎦᎸᏛᏂᏍᏗᏍᎩ ᏅᏲᎯ. ᏱᎰᏩ, ᏂᎯ ᏍᎩᎪᎵᏰᎥᎯ, ᎠᎴ ᏍᎩᎦᏙᎥᏒᎯ. ᏂᎯ ᎯᎦᏔᎭ ᏥᎥᏍᎬᎢ, ᎠᎴ ᏕᎦᎴᎥᏍᎬᎢ; ᎢᏅᎯᏳ ᏔᏙᎴᎰᏍᎪ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ. ᎯᏌᏰᎶᎪ ᎠᏇᏓᏍᏗᏱ ᎠᎴ ᎦᏂᏏᎲᏍᎬᎢ, ᎠᎴ ᎯᎦᏔᎯᏳ ᏂᎦᎥ ᏓᎩᏅᏅᎢ, ᎥᏝᏰᏃ ᏌᏉ ᎢᎧᏁᏨᎯ ᏥᏃᎪ ᏯᏓᎴᎲᏍᎪᎢ, ᎠᏎ ᎬᏂᏳᏉ, ᏱᎰᏩ, ᎯᎦᏔᎭ ᎾᏍᎩ ᏂᎦᏗᏳ. ᏂᎯ ᏍᏆᎵᏍᏚᏔᏅ ᎣᏂᏗᏢ ᎠᎴ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎢᏍᏆᏏᏔᏛ. ᎾᏍᎩ ᎯᎠ ᏥᏄᏍᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎩᎶᏒᏍᏓᏁᎭ ᎤᏍᏆᏂᎪᏗᏳ ᎨᏒᎢ; ᎦᎸᎳᏗᏳᏉ, ᎥᏝᏰᎵ ᏫᏴᎦᏥᎷᎩ. ᎭᏢ ᏮᏓᏥᎶᏏ ᏓᏥᏯᏓᏅᎡᎵ ᏣᏓᏅᏙ? ᎭᏢᎨ ᏮᏓᏥᎶᏏ ᏓᏥᏯᎵᏗᎡᎵ ᏣᎧᏛᎢ. ᎢᏳᏃ ᎦᎸᎳᏗ ᏫᏱᎾᏆᏛᏁᏔᏅ, ᏀᎾ ᎮᏙᎭ; ᎢᏳᏃ ᏨᏍᎩᏃ ᎠqᎠᏂᏏᏗᏱ ᏱᎾᏋᏁᎸ, ᎬᏂᏳᏉ ᏀᎾ ᎮᏙᎭ. ᎢᏳᏃ ᎢᎦ ᏚᎸᏌᏛ ᏍᎩᏍᏓᏩᏕᏅ, ᎠᎺᏉᎯᏃ ᏫᏚᎵᏍᏘᏂᎸ ᏱᏩᏆᏕᏅ, ᏀᎾ ᎾᏍᏉ ᏦᏰᏂ ᏱᎠᏆᏘᏂᏙᎭ, ᎠᎴ ᎯᎦᏘᏏ ᏦᏰᏂ ᏱᎠᏆᏘᏂᏙᎭ, ᎠᎴ ᎯᎦᏘᏏ ᏦᏰᏂ ᏱᏙᏍᎩᏂᏴᏗ. ᎢᏳ ᎠᎴ ᎯᎠ ᏱᎾᎩᏪᏒ, ᎠᏎ ᎤᎵᏏᎩ ᏛᏊᏢᏂ; ᎾᏍᏉ ᏒᏃᏱ ᎢᎦᎯᏳ ᏱᎩ ᎨᏙᎲᎢ. ᎥᎥ, ᎤᎵᏏᎩ ᎥᏝ ᏱᏣᎵᏏᎲᏍᏓᏁᎭ; ᏒᏃᏱᏍᎩᏂ ᏚᎸᏌᏓ ᎾᏍᎩᏯ ᎢᎦ ᏥᏚᎸᏌᏙᎢ; ᎤᎵᏏᎩ ᎠᎴ ᎢᎦᎦᏘ ᎤᏠᏱᏉ ᏗᏣᎧᏃᏗᏱ. ᏂᎯ ᏦᏢᏅᎯ ᎠᎩᎾᏫ; ᏂᎯ ᏍᏊᏢᏅᎩ ᎡᏥ ᎤᏍᏉᎵᏱ. ᏓᎬᎸᏉᏔᏂ ᏂᎯ, ᎤᎾᏰᎯᏍᏗᏳᏰᏃ ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᎾᏆᏍᏗ ᎠᏆᏙᏢᏒᎢ; ᎤᏍᏆᏂᎪᏗᏳ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏄᏍᏛ ᎣᏏᏳ ᎠgᏔh ᎠᏆᏓᏅᏙ. ᏥᏰᎸ ᎥᏝ ᏰᏨᎦᎳᏁᎴᎢ, ᏀᎢᏳ ᎤᏕᎵᏒ ᎠᏆᏚᏴᏅ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏅᏋᏁᎸ ᎥᏉᏢᏅ ᎡᎳᏗ ᎨᏒ ᏓᏙᎯ. ᎯᎪᏩᏘᏍᎨ ᎦᏚᏴᎲᏍᎬᎢ, ᎠᎴ ᏣᏤᎵᎪᎯ ᎪᏪᎵᎯ ᏂᎦᎥ ᎪᏪᎸᎩ, ᎾᏍᎩᏃ ᎠᎵᏰᎢᎵᏒ ᎤᏙᏢᏁᎢ, ᏀᎢᏳ ᎠᏏ ᎪᎱᏍᏗ ᏄᏙᏢᏒᎾ ᎨᏎᎢ. ᏂᎦᎥ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎠᎩᏰᎸᎭ ᏂᎯ ᎭᏓᏅᏖᏍᎬ ᏣᏁᎳᏅᎯ! ᏄᏧᏈᏍᏗ ᏂᎦᎵᏍᏗᎭ ᏂᏓᏛ ᏗᏎᎰᏅᎯ ᎨᏒᎢ! ᎢᏳᏃ ᏱᏓᏆᏎᎸ ᎤᏟ ᏂᎦᎦ ᎡᏍᎦᏉ ᏃᏳ ᏂᎦᎥᎢ; ᏥᏰᎩᏃ ᎩᎳᎯ ᏂᎯ ᎢᏁᏙᎭ. ᏣᏁᎳᏅᎯ ᎠᏎ ᏘᎵ ᎠᏍᎦᎾᎢ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏍᎩᏯᏓᏅᏏ ᎢᏥᏍᎦᏯ ᎢᏥᎩᎬᎭᎢ. ᎨᏣᏁᎢᏍᏗᏍᎬᏰᏃ ᎤᏲ ᎠᏂᏬᏂᎭ, ᎨᏣᏍᎦᎩᏃ ᎠᏎᏉ ᎠᏂᏁᎢᏍᏗᎭ ᏕᏣᏙᎥᎢ. ᏱᎰᏩ, ᏝᏍᎪ ᏱᎦᏥᏍᎦᎦ ᏂᎯ ᎨᏣᏍᎦᎩ? ᎠᎴ ᏝᏍᎪ ᎤᏲ ᏯᏆᏓᏅᏓᏗᏍᏗᎭ ᎦᏥᏯᏓᏅᏛᏗ ᏗᎨᏣᎦᏘᎴᎩ ᏥᎩ? ᎤᏣᏔᏅᎯ ᎦᏥᏂᏆᏘᎭ; ᎬᎩᏍᏕᎩ ᎦᏥᏰᎸᎠ. ᏍᎩᎪᎵᏯ, ᏣᏁᎳᏅᎯ, ᎠᎴ ᎭᏙᎴᎰᎯ ᏄᏍᏛ ᎠᎩᎾᏫ; ᏍᏆᎦᏔ ᎠᎴ ᎭᏙᎴᎰᎢ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ; ᎠᎴ ᎭᎦᏔ ᏥᎪᏃ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎦᏅᏅ ᏥᏍᏓᏩᏕᎦ, ᎠᎴ ᏍᏆᏘᏄᎦ ᎬᏂᏛ ᎦᏅᏅᎢ. ᏄᏍᏛ ᎤᎪᎲ ᎢᏌᏯ, ᎡᎼᏏ ᎤᏪᏥ, ᎾᏍᎩ ᎤᎪᎲ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏥᎷᏏᎵᎻ, ᎾᎯᏳ ᎣᏌᏯ, ᏦᏓᎻ, ᎡᎭᏏ ᎮᏏᎦᏯᏃ ᎤᏂᎬᏫᏳᎯ ᏥᎨᏒ ᏧᏗᏱ. ᎭᏛᎬᎦ ᏂᎯ ᎦᎸᎶᎢ; ᎭᏛᏓᏍᏓ ᏂᎯ ᎡᎶᎯ; ᏱᎰᏳᏕᏃ ᎤᏁᏨ; ᏕᎨᎶᎸ ᎠᎴ ᏕᎦᏛᎯᏍᏔᏅ ᏗᏂᎵᏲᎵ, ᎾᏍᎩᏃ ᎢᎬᏆᏡᏔᏅᏉ. ᏩᎦ ᎢᎪᎵᎪ ᎤᎾᏝᎢ, ᎠᎴ ᏐᏈᎵᏗᎦᎵᎠᏅᎯᏛ ᎠᎦᏔᎰ ᎤᎾᏝᎢ ᏗᎨᎳᏍᏗᏱ ᎤᏬᏢᎡᎢ; ᎢᏏᎵᏍᎩᏂ ᎥᏝ ᏯᎦᏔᎭ, ᏗᏆᏤᎵ ᏴᏫ ᎥᏝ ᏯᎾᏓᏅᏖᎭ. ᎤᏲᏍᏛᏉ, ᎠᏂᏍᎦᎾ ᎤᎾᏓᏤᎵᏛ ᎠᏁᎲᎢ! ᏴᏫ ᎦᎨᏛ ᎠᏍᎦᏂ ᏗᎾᎵᏎᎯ! ᏴᏫ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ! ᏅᏩᎾᏓᎴ ᏗᏂᏲᏍᏗᏍᎩ ᏴᏫ! ᎤᎾᏕᏨ ᏱᎰᏩ, ᎤᏂᏍᎦᏨ Ꮎ ᎦᎸᏉᏗᏳ ᎢᏏᎵ ᎤᎾᏤᎵᎦ, ᎬᏩᏕᏨ ᎤᎾᏏᏁᏅ. ᎦᏙᏃ ᎠᏏ ᏱᎡᏨᏂᎭ? ᎤᏟᏉ ᎢᏴᏛ ᏴᏣᎴᏲᏨ. ᏂᎬᎢ ᎠᏍᎪᎵ ᎤᏢᎦ, ᏂᎬᎢ ᎤᎾᏫ ᎤᎸᏕᎯᎭ. ᎤᎳᏏᏕᏂ ᏅᏓᏳᏓᎴᏅᏛ ᎠᏍᎪᎵ ᏩᏍᏘ ᎥᏝ ᏳᏓᏓᎳ ᎪᎱᏍᏗ ᏄᏍᏛᎾ, ᏓᏥᏐᏅᏅᏉᏍᎩᏂ, ᎠᎴ ᏓᏥᏂᏆᎶᏔᏅᎢ,ᎠᎴ ᏕᎦᏬᏍᎬᎢ ᎤᏩᏒᎯᏳ; ᎥᏝ ᏗᏍᏚᏅᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᏗᎦᎸᎸᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᎠᏠᏁᏗ ᏩᎾᎨ ᎢᏗᎬᏁᏔᏅᎯ ᏱᎩ. ᎢᏣᏤᎵᎪᎯ ᎣᏍᏛᎯ. ᎢᎬᏁᎸᎯ: ᏕᏥᏚᎲ ᏗᎪᎲᏍᏔᎯ; ᎦᏓ ᎢᏥᎲ ᏅᏩᎾᏓᎴ ᏴᏫ ᏕᏥᎧᏅ ᎠᏂᏒᎲᏍᎦ, ᎠᎴ ᎣᏍᏛᎯ ᎢᎬᏁᎸᎯ, ᎾᏍᎩᏯ ᏅᏩᎾᏓᎴ ᏴᏫ ᏥᏚᏂᎷᏆᏗᏅᏐᎢ. ᏌᏯᏂᏃ ᎤᏪᏥ ᎠᎴ ᎠᎬᏕᏨ ᎾᏍᎩᏯ ᎦᎵᏦᏛ ᏖᎸᎳᏗ ᏓᏫᏒ ᏣᏅᏕᎪᎢ, ᎠᎴ ᎾᏍᎩᏯ ᎦᎵᏦᏛ ᎦᎦᎹ ᏓᏫᏒ ᏥᎦᎵᏦᏙ ᏣᏅᏕᎪᎢ, ᎠᎴ ᎦᏚᎲ ᏧᎾᏚᏫᏍᏔᏅᎯ ᏥᎨᏐ ᎾᏍᎩᏯᎢ. ᎢᏳᏃ ᏱᎰᏩ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎠᏂᎦᏲᎵ ᏂᏗᎩᏃᎯᏰᎸᎾ ᏱᎨᏎᎢ, ᏐᏓᎻ ᏥᏄᎵᏍᏓᏁᎴ ᏱᏂᎦᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᎪᎹᎵ ᏥᏄᎵᏍᏓᏁᎴ ᏱᏂᎦᎵᏍᏓᎠᏁᎴᎢ. ᎢᏣᏛᎬᎦ ᎧᏃᎮᏛ ᏱᎰᏩ ᎤᏤᎵᎦ, ᏂᎯ ᏂᏥᎬᏫᏳᏌᏕᎩ ᏐᏓᎻ: ᎢᏣᏛᏓᏍᏓ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎦᏁᎳᏅᎯ. ᎤᏤᎵᎦ, ᏂᎯ ᎪᎹᎵ ᎢᏤᎯ! ᎦᏙ ᏗᏜᏙᏗ ᎯᎠ ᎤᏂᏣᏘ ᏗᏥᎸᎯ, ᎠᏗ ᏱᎰᏩ? ᏓᎩᏯᏪᎦ ᎠᏫ ᏧᎾᎪᏅᏍᏓᎵ ᏕᏣᎵᏍᎪᎸᏗᏍᎬᎢ ᎠᎴ ᎦᎵᏦᏅ ᏗᎦᎵᏦᏔᏅᎯ ᎢᏣᎵᏍᎪᎸᏗᏍᎬᎢ. ᎥᏝ ᎠᎴ ᏱᏓᎩᎸᏉᏗ ᎤᏂᎩᎬ ᏩᎦ ᏧᎾᎪᏅᏍᏓᎵ, ᎠᎴ ᎤᎾᏕᏘᏴᏛ ᎤᏂᏃᏕᎾ, ᎠᎴ ᏧᎾᎪᏅᏍᏓᎵ ᏗᏂᎭᏄᎸᎯ ᎠᏫ. ᎢᏳᏃ ᎠᏆᎧᏛ ᎢᎬᏱᏗᏢ ᎢᏥᎷᎩ, ᎦᎪ ᎢᏥᏁᏤᎰ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᏗᏣᎳᏏᏗᏱ ᏚᏜᏅᏛ ᎠᏆᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏞᏍᏗ ᎿᏉ ᎠᏎᏉᏉ ᎠᎵᏍᎪᎸᏙᏗ ᎢᏥᏲᎸᎩ; ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎠᏜ ᏥᏂᏆᏘᎭᎢᏤ ᏅᏉ ᏓᏢᎥᏍᎬᎢ ᎠᎴ ᎤᎾ- ᏙᏓᏆᏍᎬ ᎢᎦ, ᎠᎴ ᏗᎦᎳᏫᏗᏍᏗᏱ ᎨᏒᎢ, ᎥᏝ ᏰᎵ ᏱᏂᎬᏂᎠ ᎤᏁᎳᎩ ᎠᏇᎵᏍᏗᏱ; ᎠᏍᎦᏂᏉ, ᎾᏍᏉ ᎦᎸᏉᏗ ᏕᏥᎳᏫᏦᎯᎲᎢ. ᎢᏤ ᏓᏢᎥᏍᎬ ᏅᏙ ᏕᏥᎳᏫᎬᎢ, ᎠᎴ ᏗᏥᎳᏫᎢᏍᏗᏱ ᏓᏍᏆᎸᎮᎬᎢ ᎠᏆᏓᏅᏙ ᏕᏂᏆᏘᎭ; ᎬᏆᏕᏯᏙᏗᏉ, ᎠᎴ ᏓᎩᏯᏪᎦ ᏥᏱ ᏙᎲᎢ. ᎠᎴ ᏕᏣᏐᎸᏛᏍᎨᏍᏗ ᏙᏓᏨᏴᏍᎦᎳᏁᎵ ᏗᏥᎦᏙᎵ; ᎥᎥ ᎾᏍᏉ ᎤᏩᎫᏘᎶᏛ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎠᏎ ᎥᏝ ᏴᎦᎦᏛᎬᎦ; ᏗᏦᏰᏂ ᎩᎬ ᏓᎧᎵᎠ. ᏗᏣᏙᏑᎵ, ᎢᏣᏓᏅᎦᎸ, ᎢᏥᎲᎾ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ ᎠᏆᎧᏛ ᎢᎬᏱᏗᏢ: ᎢᏥᏑᎵᎪᎢ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ: ᎢᏣᏕᎶᏆ ᎣᏍᏛ ᎢᏣᏛᏁᏗᏱ; ᎢᏣᎦᏌᏯᏍᏓ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎡᏥᏍᏕᎸ ᎠᏍᏓᏯ ᎢᏯᎬᎾᏕᎩ; ᏚᏳᎪᏛ ᏤᏧᎪᏓᏏ ᎤᏓᏂᏯᏛ; ᎡᏥᏬᏂᎯᏏ ᎤᏬᏑᎶᏨᎯ. Ꭷ. ᎢᏓᎵᏃᎲᎵᏲᎪ ᎠᏗ ᏱᎰᏩ; ᎾᏍᏉ ᎩᎦᎨ ᏗᏑᏫᏍᏗ ᎢᎦᎦᏛ ᎨᏎᏍᏗ ᎢᏥᏍᎦᏅᏨᎢ, ᎥᏃᏥ ᏄᏁᎩᏴ ᏄᏁᎩᏰᏍᏗ; ᎾᏍᏉ ᎩᎦᎨᎢᏳ ᎨᏎᏍᏗ ᎩᎦᎨ ᏗᏑᏫᏍᏗ ᎾᏍᎩᏯᎢ, ᎤᏩᏅ ᎾᏍᎩᏯ ᎨᏎᏍᏗ. ᎢᏳᏃ ᎣᏏᏳ ᎢᏥᏰᎸᏎᏍᏗ ᎠᎴ ᎢᏦ- ᎯᏳᎲᏍᎨᏍᏗ, ᎣᏒᏂ ᎢᏣᎵᏍᏓᏴᏙᏗ ᎢᏳᏍᎩᏂᏃ ᎢᏥᏲᎢᏎᎸᎭ ᎠᎴ ᏙᏥᎦᏘᎴᏒᎭ, ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ ᎡᏥᏒᎲᏍᏗ ᎨᏎᏍᏗ; ᏱᎰᏩᏰᏃ ᎠᎰᎵ ᎾᏍᎩ ᏄᏪᏒ. ᎤᏲᏍᏛᏉ, ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᏥᎨᏒ ᎦᏚᎲ ᎤᏁᎫᏥᏛ ᏂᎤᎵᏍᏔᏅ! ᎤᎧᎵᏨᎯ ᎨᏒᎩ ᏚᏳᎪᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ! ᏚᏳᎪᏛ ᎨᏒ ᎾᎿ ᎡᎲᎩ! ᎪᎯᏍᎩᏂ ᏗᎾᏓᎯᎯ [ᎾᎿ ᎠᏁᎭ!] ᎠᏕᎸ ᎢᎶᏤᎵᎦ ᎤᏲᏨ, ᏅᏬᏘ-ᎩᏚᎨ ᎢᏣᏤᎵᎦ ᎠᎹ ᎤᏓᏑᏯ. ᏗᏣᏤᎵᎦ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏄᏃᎯᏨᏓᏛᎾ ᏄᎾᎵᏍᏔᏅ, ᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ ᎤᎾᏖᏆᎶᎯ; ᏂᎦᏗᏳ ᎤᏂᎸᏉᏗ ᎨᏥᏁᏗ ᎨᏂᎢ, ᎠᎴ ᎠᏂᏍᏓᏩᏗᏙ ᎨᎦᎫᏴᏓᏁᏗ ᎨᏒᎢ; ᎥᏝ ᏚᏳᎪᏛ ᏱᏓᏄᎪᏓᏁᎭ ᎤᎾᏓᏂᏯᏛ, ᎥᏝ ᎠᎴ ᎤᏬᏑᎶᏨᎯ ᎤᏤᎵ ᎠᏱᎵᏓᏍᏗ ᎬᏩᏂᎩᏍᏗ ᏱᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪ ᎤᎬᏫᏳᎯ ᏱᎰᏩ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎤᎵᏂᎩᏛ ᎢᏏᎵ ᎤᎾᏤᎵᎦ, Ꭷ, ᏙᎯᏉ ᏓᎦᏓᏅᏓᏗ ᎦᏥᏯᏓᏅᏖᏍᎬ ᎬᏆᏡᏗᏍᎩ, ᎠᎴ ᏓᎦᏥᏯᏞᏤᎵ ᎬᎩᏍᎦᎩ. ᎠᏉᏰᏂᏃ ᏂᎯ ᎢᏤᎲ ᎢᏗᏢ ᏅᏓᎬᏁᎵ, ᎠᎴ ᏓᎬᏴᎾᏬᏔᏂ ᎠᎴ ᏓᏥᎴᏐᏂ ᏂᎦᏛ ᎤᏲ ᎤᏓᏑᏴᎢ, ᎠᎴ ᏂᎦᏛ ᎬᎾᏬᏍᎩ ᏣᏤᎵ ᏓᏥᎴᏐᏂ. ᎠᎴ ᏙᏛᏨᏴᎧᏁᎵ ᏗᏄᎪᏗᏍᎩ ᏗᏣᏤᎵᎦ ᎾᏍᎩᏯ ᎢᎬᏱᏱ ᏥᏄᎾᏍᏛᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏗᏣᏤᎵᎦ ᎾᏍᎩᏯ ᏗᏓᎴᏂᏍᎬ ᏥᏄᎾᏍᏛᎢ: ᎿᏉᏃ ᎯᎠ ᏁᏣᏪᏎᎮᏍᏗ, ᎣᏍᏛ ᏗᎧᎿᏩᏕᎩ ᎦᏚᎲᎢ, ᏚᏨᎪᏛ ᎢᏯᏛᏁᎯ. ᎦᏚᎲᎢ. ᏌᏯᏂ ᏚᏳᎪᏛ ᎨᏒ ᎠᎦᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏅᏓᏳᎾᏨᏟᏛ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ. ᎨᏥᏛᏙᏗᏃ ᎨᏒ (ᎤᏁᎳᏅᎯ) ᎠᎾᏡᏗᏍᎩ ᎠᎴ ᎠᏂᏍᎦᎾ ᎢᏧᎳᎭ ᎨᏎᏍᏗ, ᎠᎴ ᏱᎰᏩ ᎠᏅᏕᎩ ᎨᏥᏒᎲᏍᏗ ᎨᏎᏍᏗ. ᏓᎾᏕᎰᏍᎨᏍᏗᏰᏃ ᏗᏓᏯ ᏕᏡᎬ ᎾᏍᎩ ᏥᏕᏣᏚᎵᏍᎬᎢ, ᎠᎴ ᏙᏓᏣᏕᎰᏏ ᏗᏫᏒᏗᏱ ᎾᏍᎩ ᎣᏏᏳ ᏥᏕᏥᏰᎸᏒᎩ. ᎠᏓᏯᏃ ᏡᎬ ᏕᏣᏤᎴᏍᏗ ᎾᏍᎩ ᏚᎦᏄᏓᏛ ᏥᏕᎧᏴᏍᎪᎢ, ᎠᎴ ᎠᏫᏒᏗᏱ ᏕᏣᏤᎴᏍᏗ ᎠᎹ ᏂᎦᏁᎲᎾ ᏥᎨᏐᎢ. ᎤᎵᏂᎩᏛᏃ ᎠᏍᎦᏯ ᏙᎴᏛ ᏓᏤᎴᏍᏗ, ᎾᏍᎩᏃ ᎤᏬᏴᏅᎯ ᎠᏥᎸ ᎤᏔᏍᎩᏛ ᏓᏤ- ᎴᏍᏗ, ᎠᎴ ᎢᏧᎳ ᎢᏧᎳᎭ ᎤᎾᎪᎲᏍᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎩᎶ ᏧᏩᏜᏗᏍᏗ ᏱᎨᏎᏍᏗ. ᎧᏃᎮᏍᎩ ᎢᏌᏯ ᏒᎼᏏ ᎤᏪᏥ ᎤᎪᎲ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏗᏱ ᎠᎴ ᏥᎷᏏᎵᎻ. ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎯᎸᎯᏳᎢ, ᎾᏍᎩ ᎣᏓᎸ ᏱᎰᏩ ᎤᏤᎵ ᎠᏓᏁᎸ ᎦᎧᎲᎢ ᎾᏍᎩ ᎠᏍᏓᏱᏗᏍᏗ ᎨᏎᏍᏗ ᏙᏓᎸ ᎦᏚᎢ, ᎠᎴ ᎠᏌᎳᏙᏗ ᎨᏎᏍᏗ ᏚᏌᎯᎸ ᎦᎸᎳᏗᏢ: ᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎾᎿ ᏓᏂᎳᏫᏦᎯᎮᏍᏗ. ᎤᏂᏣᏘᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏛᏁᏏ ᎠᎴ ᎯᎠ ᏅᏛᏂᏪᏏ; Ꭷ, ᎢᏕᎾ ᎢᏗᎿᎷᎯ ᏱᎰᏩ ᎤᏤᎵ ᎣᏓᎸᎢ. ᏫᏗᎷᎩ ᎠᏓᏁᎸ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏤᎦᏈ ᎤᏤᎵ ᎤᏁᎳᏅᎯ. ᎾᏍᎩᏃ ᏓᎨᏲᏂ ᏚᏅᏅᎢ, ᎾᏍᎩᏃ ᏕᎤᏅᏅ ᏓᏕᏙᎵ; ᏌᏯᏂᏰᏃ ᏅᏓᏳᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ, ᎧᏃᎮᏛᏃ ᏱᎰᏩ ᎤᏤᎵ ᏥᎷᏏᎵᎻ ᏅᏓᏳᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏃ ᏙᏓᎫᎪᏓᏁᎵ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᏙᏛᎬᏍᎪᎸᏂ; ᎾᏍᎩᏃ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏙᏛᏂᏅᏆᎶᎢ ᏗᎦᏓᎷᎪᏗ ᏙᏛᏃᏢᏔᏂ; ᏗᏓᏘᏍᏗᏃ ᎠᏰᎳᏍᏗᏗᎬᏂᎦᎸᏗ ᏙᏛᏃᏢᏔᏂ; ᏑᎾᏓᎴᎩ ᏴᏫ ᎥᏝ ᎠᏰᏕᎳᏍᏗᎦᏅᎯᏛ ᏧᏂᏴᏗ ᏧᏂᎦᏘᎸᏍᏗ ᏱᎨᏎᏍᏗ ᏅᏩᎾᏓᎴ ᏴᏫ, ᎥᏝ ᎠᎴ ᏔᎵᏁ ᎤᏂᎦᏙᎥᎯᏍᏗ ᏱᎨᏎᏍᏗ ᏓᎿᏩ. [Ꭷ!] Ꭶ. ᏤᎦᏈ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᎢᏕᎾ, ᏱᎰᏩ ᎦᎸᏌᏛ ᎢᏓᎢᏎᏍᏗ. ᏕᎩᏲᏒᏰᏃ ᏗᏣᏤᎵ ᏴᏫ, ᏤᎦᏡ ᏏᏓᏁᎸᎯ ᎨᏒᎢ ᏅᏧᎵᏍᏙᏔᏅ ᎤᏂᏣᏘ ᏚᏂᎧᎲ ᏗᎧᎸᎬ ᎢᏗᏢ ᏅᏓᏳᎾᏓᎴᏅᎯ, ᎠᎴ ᏗᎾ ᏙᏂᏍᎩ ᎠᏂᏈᎵᏍᏗᏂ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎣᏏᏳ ᏓᏂᏰᎸᏍᎦ ᏅᏩᎾᏓᎴ ᏴᏫ ᏧᏁᏥ. ᎤᎾᏤᎵᎪᎯ ᎾᏍᏉ ᎠᎧᎵᏬᎯ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎥᏝ ᎠᎴ ᏱᏩᏍᏔ ᏧᎬᏩᎶᏗ ᎤᏂᎿᎥᎢ; ᎤᎾᏤᎵᎪᎯ ᎾᏍᏉ. ᎠᎧᎵᏬᎯ ᏐᏈᎵ ᏚᏂᎧᎲᎢ, ᎥᏝ ᎠᎴ ᏱᏩᏍᏔ ᏓᏆᎴᎷ ᏚᏂᎲᎢ. ᎤᎾᏤᎵᎪᎯ ᎾᏍᏉ ᎠᎧᎵᏬᎯ ᎤᏁᎳᏅᎯ. ᏗᏰᎸᎯ ᏚᏂᎧᎲᎢ; ᎤᏅᏒ ᏧᏃᏰᏂ ᏧᏃᏢᏔᏅᎯ ᎡᎳᏗ ᏂᏓᎾᏛᏁᎭ, ᎤᏅᏒ ᏓᏂᏰᏌᏛ ᏧᏅᏔᏅᎯ ᏧᏃᏢᏅᎯ. ᎡᏍᎦ ᎤᏬᎭᏛ ᎠᏍᎦᏯ ᎡᎳᏗ ᎾᏛᏁᎭ, ᎠᎴ ᎠᏥᎸᏉᏗ ᎠᏍᎦᏯ ᎠᏓᏙᎵᏍᏗᎭ; ᎥᏝᏃ ᏴᏓᎩᏯᏙᎵᏥ. ᏅᏲᎯ ᎯᏴᎭ, ᎠᎴ ᎭᏗᏍᎦᎸᎦ ᎦᏙᎯ, ᎯᏯᏓᏅᏏ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏔᏅᎯ. ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ. ᏓᎧᎿᎿᏂᏙᎲ ᎤᏢᏉᏗ ᏴᏫ ᎡᎳᏗ ᎢᎬᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎾᏢᏉᏗᏳ ᎨᏒ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᎢᎬᏁᏗ ᎨᏎᏍᏗ; ᏱᎰᏩᏃ ᎤᏩᏒᎯᏳ ᎠᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ. ᏱᎰᏩᏰᏃ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎤᏤᎵ ᎢᎦ ᏓᏳᎾᏛᏡᏂ ᏂᎦᏗᏳ ᎤᎾᏢᏉᏗ ᎠᎴ ᎤᎾᏓᎸᏉᏗ, ᎠᎴ ᏂᎦᏗᏳ ᎨᏥᏌᎳᏗ, ᎾᏍᎩᏃ ᎡᎳᏗ ᎢᎨᎬᏁᏗ ᎨᏎᏍᏗ; ᎠᎴ ᏂᎦᏗᏳ ᎠᏥᎾ ᏕᏡᎬ ᎴᏈᏅ ᎤᏓᎸ ᎢᏅᎢᏗᎦᏘ ᎠᎴ ᏧᎵᏌᎳᏗ ᏙᏛᏛᏔᏂ, ᎠᎴ ᏂᎦᏗᏳ ᏔᎳ ᏕᏡᎬ ᏇᏌᏂ; ᎠᎴ ᏂᎦᏗᏳ ᎢᏅ-ᎢᏗᎦᏘ ᏙᏓᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᎢᏅ-ᎢᏗᎦᏘ ᏚᏌᎯᎸᎢ, ᏙᏛᏛᏔᏂ; ᎠᎴ ᏂᎦᏗᏳ ᎢᏅ-ᎢᏗᎦᏘ ᏓᏓᏁᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏗᎬᏓᏬᎯᎳᏗᏍᏗ ᏂᎨᏒᎾ ᏓᏐᏴᎢ ᏙᏛᏡᏔᏂ; ᎠᎴ ᏂᎦᏗᏳ ᏥᏳ-ᏧᏛᎾ ᏓᏏᏏ ᏤᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎤᏬᏚᎯ ᏗᎧᏃᏗᏱ ᏙᏛᏡᏔᏂ. ᎤᎵᏌᎳᏗᏳ ᎨᏒ ᏴᏫ ᎡᎳᏗ ᎢᎬ-ᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎾᏢᏉᏗᏳ ᎨᏒ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᎢᎬᏁᏗ ᎨᏎᏍᏗ; ᏱᎰᏩᏃ ᎤᏩᏒᎯᏳ ᎠᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ. ᎤᏁᎳᏅᎯᏃ ᏗᏰᎸᎯ ᏛᎾᎵᏛᏔᏂ. ᏓᏂᏴᎯᎮᏍᏗᏃ ᏚᏍᏓᎦᎸ ᏅᏲᎯ, ᎠᎴ ᎦᏙᎯ ᏓᏔᎴᏒᎢ, ᎠᎾᏓᏅᎡᎮᏍᏗ ᎤᎾᏰᎯ- ᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎠᏂᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᎯᏳ ᏓᎴᏅᎭ ᎤᏣᏘ ᎤᏍᎦᏍᏓᏁᏗᏱ ᎡᎶᎯ. ᎾᎯᏳᏃ ᎢᎦ ᎠᏍᎦᏯ ᏙᏓᏳᏕᏏ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩ ᏧᎾᏓᏙᎵᏍᏓᏁᏗ ᏥᎦᏃᏢᏅ, ᏙᏛᏂᏲᎯᏎᎵ ᏘᏁᏆ ᎠᎴ ᎣᏑᎭ: ᏫᏚᏂᏴᏍᏗᏱ ᏚᏍᏓᎦᎸ ᏅᏲᎯ, ᎠᎴ ᏅᏲᎯ ᏚᏜᏅᏛᎢ, ᎤᎾᏓᏅᎡᏗᏱ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏘ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᎯᏳ ᏓᎴᏅᎭ ᎤᏣᏘ ᎤᏍᎦᏍᏓᏁᏗᏱ ᎡᎶᎯ. ᏫᏚᏂᏴᏍᏗᏱ ᏚᏍᏓᎦᎸ ᏅᏲᎯ, ᎠᎴ ᏅᏲᎯ ᏚᏜᏅᏛᎢ, ᎤᎾᏓᏅᎡᏗᏱ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏘ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᎯᏳ ᏓᎴᏅᎭ ᎤᏣᏘ ᎤᏍᎦᏍᏓᏁᏗᏱ ᎡᎶᎯ. ᏐᎳᎹᏅ ᏕᏫ ᎤᏪᏥ, ᎢᏏᎵᏱᏃ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᏕᎬᏍᎪᎸᏅᎢ; ᎠᎦᏔᎿᎢ ᎠᎴ ᎥᏓᏗᏕᏲᏗ ᎨᏒ ᎠᎦᏙᎥᎯᏍᏗᏱ, ᎾᏍᎩ ᎪᎵᎩ ᎧᏁᎬ ᎪᎵᏍᏗᏱ. ᎠᎦᏔᎿᎢ ᎤᏓᏕᏲᏗ ᎨᏒ ᏗᏓᏂᎸᎢᏍᏗᏱ, ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎵᏍᏓᏍᏗ, ᎠᎴ ᏗᎫᎪᏙᏗᏱ ᎠᎴ ᏗᎬᏩᏳᎪᏗᏯ ᎨᏒᎢ, ᎠᏏᎾᏌᏂ ᎢᏯᏩᏁᎯ ᎾᎦᏔᎿᎥᎾ, ᎠᏫᏅᏃ ᎠᎦᏙᎥᎯᏍᏗᏯ ᎠᎴ ᎠᎵᏏᏀᎢᏍᏗᏱ ᎤᏁᎯ. ᏛᏛᏓᏍᏔᏂ ᎠᎦᏔᎿᎢ ᎠᏍᎦᏯ, ᎠᎴ ᎠᎦᏙᎢᎯᏍᏗ ᏓᎧᏁᏉᎢ; ᎠᎴ ᎤᏬᎵᏣᏘ ᎠᏍᎦᏯ ᎠᎦᏔᎿᎢ ᏧᏬᏏᏐᏗᏱ ᏮᏛᏱᎶᎵ; ᎦᏛᎩ ᎨᏒ ᎤᏬᎵᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎠᏁᏢᏙᏗᏱ, ᎾᏍᎩ ᎠᏂᎦᏔᎿᎢ ᎤᏂᏁᏨᎢ ᎠᎴ ᎾᏍᎩ ᎤᎵᏏᎩ ᏄᏂᏪᏟᏙᎸᎢ. ᎠᎦᏙᎥᎯᏍᏗ ᎠᏓᎴᏃᏗᏍᎬᏉ ᎢᎩ ᎾᏍᎩ ᏱᎰᏩ ᎦᎾᏰᎯᏍᏗᏱ; ᎠᏎᏃ ᎠᎦᏙᎥᎯᏍᏗ ᎠᎴ ᎨᎨᏲᏗᏱ ᎠᏂᏂᏆᏘᎭ ᎤᏂᏁᎫ. ᎠᏇᏥ, ᏣᏙᏓ ᏤᏲᎲᏍᎬ ᎭᏛᏓᏍᏓ, ᎠᎴ ᏣᏥ ᎤᏤᎵ ᏗᎧᎾᏩᎱᏍᏗ ᏞᏍᏗ ᏨᏕᏨᎩ. ᎾᏍᎩᏰᏃ ᎯᏍᎪᎵ ᎤᎵᎶᎯ ᎪᏚᎯᏍᏗᏍᎩ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏓᏕᏒᏓ ᏣᎵᏯᏣᏃᏍᏙᏗ ᎠᏇᏥ, ᎨᏣᏍᏗᏰᏗᏍᎨᏍᏗ ᎠᏂᏍᎦᎾᎢ, ᎥᏞᏍᏗ ᏦᎯᏳᏅᎩ. ᎯᎠ ᏂᎨᏣᏪᏎᎮᏍᏗ, Ꭷ ᎢᏕᏅ, ᎩᎬ ᎤᏤᏬᎢᏍᏗ ᎢᎩᎭᎷᎨᏍᏗ, ᎪᎱᏍᏗ ᏅᏗᎦᎵᏒᏗᏍᎬᎾ ᎾᏍᎩ ᎤᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᎤᏕᎵᏛ ᎡᏗᏃᎵᏓ; ᏗᏓᏂᏐᏗᏱ ᎢᎦᎦᏛ ᏗᎬᏅᏃᏛᏉ ᎾᏍᎩ ᏫᏗᎨᏗᎩᏏᏅ; ᎠᎴ ᏗᎬᏩᏂᏃᏍᏛ, ᎾᏍᎩ ᎠᏔᎴᏒ ᏩᏲᎸᏥᎯᎯ ᎾᏍᎩ ᏯᎢ; ᏓᏗᏩᏛᎯ ᏂᎦᎥ ᎦᎸᏉᏗ ᏧᎬᏩᎶᏗ, ᎠᏓᏬᏅᏛ ᎨᏒ ᏕᏗᏁᎸ ᏙᏓᏗᎧᎵᎢᏍᏔᏂ; ᎭᏙᏣᎸᎦ ᏍᎩᏯᏕᎳᏗᏏ, ᏧᎬᏩᎶᏗ, ᎠᏍᏆᏂᎪᏙᏗ ᏌᏉᏇ ᎢᎩᎮᏍᏗ; ᎠᏇᏥ, ᏞᏍᏗ ᏤᏅᏒᎩ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏤᏓᏍᏗ ᏅᏃᎯ, ᎾᏍᎩ ᎤᏂᏅᏅ ᎡᏓᏍᏗ ᏣᏀᎢᏍᏕᏍᏗ ᏣᎳᏏᏚᏂ; ᎤᏐᏅᏉᏰᏃ ᏗᎨᏒ ᏓᏗᏝᎡᎦ ᎾᏍᎩ ᏧᎾᎳᏏᏕᏂ. ᎠᎴ ᎤᏅᏅᏥᏗ ᎩᎬ ᎤᏂᏨᏗᏱ. ᏄᎣᏏᏛᏒᎾ ᎠᏎᏉᏉ ᎠᏌᏛᏗ ᏯᏌᏛᏁᎸ ᏂᎦᎥᏉ ᏥᏍᏆ ᎾᏍᎩ ᏓᎧᏅᎢ, ᎾᏍᎩᏃ ᎤᎲᏒᏉ ᎤᏂᎩᎬ ᎠᏂᎭᎷᎥᏍᎦ ᎤᏅᏒᏉ ᏓᏅᏅ ᏧᎦᏘᎴᏍᎩ ᎤᏕᎵᏒ ᎠᎾᏗᏍᎦᎳᏂᏙᎭ. ᎾᏍᎩᏯ ᏄᏍᏗ ᏧᏪᏓᏍᏗᏱ ᎾᏂᎥ ᎠᏏᏴᏫᎭ ᎤᏁᏉᏤᏗᏱ ᎤᎬᎥᏍᎩ; ᎬᏅ ᎠᎩᎡᎯ, ᎾᏍᎩ ᎤᎦᏤᎵᎦ ᎨᏒᎢ. ᎠᎦᏔᎿᎢ ᎤᎵᏍᏗ ᏙᏱᏗᏢ; ᏕᎦᎳᏅᏛ ᎠᏌᎳᏗ ᎧᏁᎬᎢ; ᏄᎬᏫᏳᏒ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎵᏍᏗ, ᎦᎶᎯᏍᏗᏱ ᏕᎪᏢᏒᎢ; ᎠᎴ ᎦᏚᎲ ᎠᏌᎳᏗ ᎧᏁᎬᎢ, ᎯᎠ ᏂᎦᏪᎭ; ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᏂᏣᏓᏅᏛᎾ ᎣᏏᏳ ᎢᏥᏰᎸᏎᏍᏗ ᏂᏣᏓᏅᏛᎾ ᎢᏣᎵᏍᏙᏗᏱ, ᎤᎾᏓᏕᎰᏗᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏎᏍᏗ ᎠᏌᏓᏕᎰᏗᏍᎬᎢ, ᎠᏂᏍᎦᎨᏍᏗ ᎠᎩᏙᎥᎯᏍᏗ ᎨᏒᎢ. ᎢᏣᎦᏔᎲᎾ ᏫᏂᎦᎵᏍᏙᏓ ᎢᏨᎬᏍᎪᎸᎢᏍᎬᎢ; ᎬᏂᏳᏉ ᏓᏨᏯᏐᏅᏰᎵ ᎠᏆᏓᏅᏙ, [ᎠᎴ] ᎬᏂᎨᏒ ᏅᏓᏨᏰᏁᎵ ᏥᏃᎮᏍᎬᎢ. ᎠᏴ ᎢᏨᏯᏅᏛ ᏥᎩ, ᎠᎴ ᏂᎯ ᏥᏥᏲᎢᏎᎸ; ᎠᎴ ᏣᏆᏎᎵᏔᏅ, ᎩᎶᏃ ᎾᏆᎦᏌᏯᏍᏗᏁᎸᎭ ᏥᎩ, ᏅᎵᏌᎵᏉᏍᎩᏂ ᏥᏥᏰᎸᏅ ᏂᎦᏗᏳ ᎢᏨᏬᏁᏔᏅᎢ, ᎠᎴ ᏂᏣᎦᏌ ᏯᏍᏔᏅᎾᏉ ᏥᎩ ᎢᏨᎬᏍᎪᎸᏅᎢ; ᎾᏍᏉ ᎠᏴ ᏓᏥᏰᏣᏍᏔᏂ ᎢᏥᎩᎵᏲᎬᎢ, ᎠᎴ ᏓᎦᏙᏢᏔᏂ ᎿᏉ ᎤᎾᏰᎯᏍᏗ ᎢᏥᎷᏤᎮᏍᏗ. ᎾᎯᏳ ᎢᏥᎾᏰᏍᎬ ᎦᎷᎨᏍᏗ ᎠᏛᏗᏍᎩ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎢᏥᎯᎯ ᎦᎷᎨᏍᏗ ᎠᎦᎷᎦ ᎾᏍᎩᏯᎢ; ᎾᎯᏳ ᎠᎩᎵᏯ ᎠᎴ ᎡᎯᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎢᏥᎷᏤᎮᏍᏗ; ᎿᏉ ᏓᎬᎩᏯᏅᎯ, ᎠᏎᏃ ᎥᏝ ᏴᏓᎦᏥᏁᏤᎸ; ᎠᎴ ᏞᎩᏯ ᏓᎬᎩᏲᎵ, ᎠᏎᏃ ᎥᏝ ᏴᏓᎬᎩᏩᏛᎯ; ᎠᏂᏂᏆᏘᎲᏰᏃ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏳᎾᏑᏰᏎ ᏱᎰᏩ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ, Ꮭ ᏳᎾᏚᎵᏍᎨ ᎦᏥᏬᏁᏗᏍᎬᎢ, ᎤᏂᏯᎦᏨᎩ ᏂᎦᏗᏳ ᎦᏥᎬᏍᎪᎸᏅᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᏛᎾᎵᏍᏓᏴᏔᏂ ᎤᏅᏒ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎤᎾᏄᎪᏫ ᏒᎯ, ᎠᎴ ᎨᏍᏤᎧᎵᎢᏍᏙᏗ ᎨᏎᏍᏗ ᎤᏅᏒ ᎤᎾᏓᏅᏖᎵᏙᎸᎢ. ᎠᎾᎪᎸᏍᎬᏰᏃ ᏄᎾᏓᏅᏛᎾ ᏓyᏂᎵ ᎤᏂᏁᏉᏤᎲᏃ ᎤᏂᏁᎫ ᏓᏳᏂᏛᏔᏂ. ᎩᎶᏍᎩᏂ ᎠᏴ ᎠᏆᏛᏓᏍᏓᏁᎵ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎡᎮᏍᏗ, ᎠᎴ ᏅᏩᏙᎯᏍᏛ ᎤᏓᏅᏖᏍᏗ ᎾᏍᎦᎢᎲᎾ ᎨᏎᏍᏗ ᎪᏢᏍᏗ ᎤᏲᎢ. ᎠᏇᏥ, ᏗᎧᎿᏩ ᏚᎦ ᏥᏁᎬᎢ, ᏗᎧᎿᏫᏛᏍᏗᏃ ᎠᏆᏤᎵ ᏗᏍᏆᏂᎪᏓ. ᏗᎧᎿᏩᏚᎦ ᎠᏆᏤᎵ ᏗᎧ Ꮏ ᏩᏛᏍᏗ, ᎠᎴ ᎲᏁᏍᏗ; ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵ ᎯᏍᏆ ᏂᎪᏓ ᎾᏍᎩᏯ ᎠᎦᏔ ᏣᎸ ᏣᏍᏆᏂᎪᏛᎢ. ᎾᏏ ᏕᎯᏰᏌᎱ ᏔᎸᏍᏓ, ᎠᎴ ᏣᏌᏫᏱ ᏙᏪᎸᏌ. ᎠᎦᏔ ᎾᎢ ᎯᎠ ᏂᏪᏥ ᏂᎯ ᎥᎩᏙ; ᎪᎵᏍᏗᏃ ᎩᏂᏠᏱ ᎯᎬᏎᎮᏍᏗ. ᎾᏍᎩ ᏱᎨᏣᏲᏍᏙᏓᏏ ᏅᏩᏓᏛ ᎠᎨᏴ ᎯᎷᏤᏗᏱ, ᎯᎷᏤᏗᏱ ᏅᏩᏓᎴ ᎠᎨᏴ ᎾᏍᎩ ᎨᏬᏂᏍᎬ ᎠᏓᎶᏄᎮᏗᏍᎩ. ᏥᏁᎸᏰᏃ ᎠᏦᎳᏅ ᎪᏢᏒ ᏙᏛᏆᎿᏅᎩ; ᎠᎴ ᏗᏆᎧᎿᏅᎩ ᏄᎾᏓᏅᏛᎾ ᎠᏁᏙᎲ, ᎠᎴ ᏥᎪᎥᎩ ᎩᎳ ᏗᏌᏛᏍᎩ ᎠᏁᏙᎲ ᎨᎳᏗᏙᎲᎩ ᎠᏫᏅ ᏄᏓᏅᏛᎾ! ᎡᏙᎲᎩ ᏕᎦᎳᏅᏛ ᎾᎢ ᎤᏅᏏᏴᎢ; [ᎠᎨᎬᏃ] ᏗᎦᏁᎸ ᎢᏗᏢ ᏭᎶᏒᎩ; ᎩᎳ ᏧᎵᏏᎲᏍᎪᎢ, ᎤᏒᎢ, ᎬᎾᎨ ᎠᎴ ᎤᎵᏴᎩ ᏒᏃᏱ ᏥᎨᏐᎢ; ᎠᎴ ᎬᏂᏳ ᏙᏓᏳᏠᏒᎩ ᎠᎨᏳ ᎤᏂᏁᏓᏥᏛ ᎤᎾᏣᏃᏗ ᎤᏣᏃᏛᎩ, ᎠᏏᎾᏌᏂ ᎨᏒᎩ ᎤᏓᏅᏖᏗᏱ; ᎠᏍᏓᏯ ᏚᏬᏂᏍᎩ ᎾᏍᎩ, ᎠᎴ ᎤᎫᏏᏯ, ᎠᎴ ᏂᎦᎮᏍᎬᎾ ᎦᏁᎸᎢ; ᎢᎸᎯᏳ ᏙᏱ ᎡᏙᎨᎢ, ᎢᎸᎯᏳᏃ ᏚᎹᏅᏛᎢ, ᎠᎴ ᎤᎭᎷᎪ ᏚᏅᏴᏯᏅᎢ. ᎾᏍᎩᏃ ᎤᏂᏴᎲᎩ [ᎠᏫᏅ] ᎠᎴ ᎤᏚᏣᎳᏅᎩ, ᎠᎴ ᎾᏕᎰᏍᎬᎾ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏥᎸ ᎨᎳᏍᏗ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏩᏛᏥᎯ ᎠᎩᎭ; ᎪᎯ ᎢᎦ ᎦᎫᏴ ᎠᎩᏁᏨ ᎢᏯᏆᏛᏁᏗy. ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏥᏄᎪᎢ ᏗᎬᏯᏠᏍᏗᏱ, ᎬᏩᏛᏗᏱ, ᎠᎴ ᎥᎬᏩᏛ. ᏗᏰᏍᏛᏗ ᏓᎩᏰᏍᏓᎠ ᎠᏆᏂᏏᏗᏱ, ᏧᏬᏚᎯ ᏧᏅᏣᏛ ᏗᏄᏬ, ᎢᏥᎲ ᏧᏕᏅᎯ. ᎠᎩᏩᏒᎢᏍᏔᏅᏃ ᎠᏆᏂᏏᏗᏱ ᎻᎳ, ᎠᎴ ᎬᎳᎾ, ᎠᎴ ᎦᏩᏒᎩ ᎤᏯᎷᎦ. Ꭷ! ᏑᎾᎴ ᎬᏗᏍᎩ ᎩᏂᏛᏓᏏ ᏕᎩᎾᏓᎨᏳᏒᎢ; ᎣᏍᏛ ᏫᎩᎾᏓᏅ ᏓᏗᏍᏗ ᏕᎩᎾᏓᎨᏳᏒᎢ. ᎥᏝ ᏰᏃ ᏳᏬᎳ ᎠᏍᎦᏯ ᏑᏁᎳ, ᎤᏁᎳᏛᎢᏅ ᎤᏪᏅ; ᏕᎦᎶᏗ ᎠᏕᎸ ᎠᎧᎵᎢ ᎤᏁᏅ, ᎠᎴ ᎦᏌᏆᎸ ᎨᏎᏍᏗ ᏅᏙ ᎩᎳ ᎬᏩᎷᎯᏍᏗ. ᎾᏍᎩ ᎤᏣᏛ ᎤᏬᏚᎯ ᎦᏬᏂᏍᎬ ᎠᏎᎪᎩᏍᏗᏍᎪ ᎠᏫᏅ, ᎠᎴ ᎤlᏉᏗᏍᎬ ᎤᏎᎪᎩᏍᏗᏯᎪ ᎤᏘᏁᎪᎢ. ᎠᏫᏅ ᎩᎳᏉ ᎢᏴᏛ ᎠᏍᏓᏩᏕᎪ ᎠᎨᎡ ᎾᏍᎩᏯ ᏗᎯᏍᏗᏱ ᏩᎦ ᏣᎦᏘᏁᎪᎢ, ᎠᎴ ᎾᏍᎩᎲ ᎤᏁᏓ ᎠᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᎠᎦᎸᎢᏛ ᏣᏚᏘᏁᎪᎢ; ᎬᏂ ᎦᏂ ᎤᏪᎶᎢ ᎤᏥᏲᎭ; ᎠᎴ ᎾᏍᎩᏯ ᏥᏍᏍᏆ ᎠᏌᏛᏗ ᏥᏴ ᏞᎩᏳ ᏥᎦᎷᎪᎢ, ᎠᎴ ᎾᎦᏔᎲᎾ ᏥᎨᏐ ᎬᏃ ᎤᎩᏒᎯ ᎨᏒᎢ. Ꭷ! ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏇᏥ ᏍᎩᏯᏛᏓᏍᏗᏏ, ᎠᎴ ᎢᏣᏚᏌᏯᏍᏗ ᏥᏬᏂᏍᎬᎢ; ᏞᏍᏗ ᏣᎾᏫ ᎾᏍᎩ ᏕᎤᏅᏅ ᎢᏗᏢ ᏱᏄᏛᏁᏔᏁᏍᏗ, ᏞᏍᏗ ᎾᏍᎩ ᏕᎤᏅᏅ ᏱᏣᎴᎾᎴᏍᏗ. ᎤᏂᏣᏗᏰᏃ ᏚᏍᏢᏂᏍᏔᏅ ᏗᎨᏥᏐᏅᏅᎯ; ᎥᎥ, ᎤᏂᏣᏘ ᏧᎾᎵᏂᎩᏛ ᎾᏍᎩ ᏚᎸ. ᎾᏍᎩ ᎦᏁᎸ ᏨᏍᎩᏃ ᏫᎦᏅᏅ ᎠᏓᏁᎸ, ᏫᎦᎾᏄᎪᎦ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏙᏗᎧᏅᏑᎸᎢ. ================================================ FILE: a4/chr_en_data/train.en ================================================ and by him every one that believeth is justified from all things, from which ye could not be justified by the law of Moses. When 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. But each in his own order: Christ the firstfruits; then they that are Christ’s, at his coming. His was a strange homecoming. So the chief captain let the young man go, charging him, Tell no man that thou hast signified these things to me. He picked the letter up again and studied the signature and said again, Major Cotton. And seek not ye what ye shall eat, and what ye shall drink, neither be ye of doubtful mind. Wilbur trembled all over when he saw it. And 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. Surely some of them have some superior features. The Fair Grounds were soon deserted. that they do good, that they be rich in good works, that they be ready to distribute, willing to communicate; There 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. Is Christ divided? was Paul crucified for you? or were ye baptized into the name of Paul? As Wilbur watched, the spider let go of the fence and rose into the air. The crowd cheered. Since the world began it was never heard that any one opened the eyes of a man born blind. “I’m seeing things,” he whispered. And he said unto her, Thy sins are forgiven. And now, go to sleep.” As the fire burned the people heard songs coming from the fire – songs of healing. When he was done tasting, he scrubbed at his greasy finger with the thumb of the same fist. and 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; The rat visits the dump regularly and has access to old magazines. That night as the tree slept, the boy tied a big red apple on a branch of the little apple tree. That, 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. “Don’t just stand there, Wilbur! being 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. And 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. And 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. He soon began coming around the Indian Queen late afternoons for a drink and a visit. Then the soldiers cut away the ropes of the boat, and let her fall off. And thus, sinning against the brethren, and wounding their conscience when it is weak, ye sin against Christ. “I didn’t ask for a shower bath,” said Mr. Zuckerman. His little mustache, faint even in brightest daylight, was invisible by the fire. But before faith came, we were kept in ward under the law, shut up unto the faith which should afterwards be revealed. But my righteous one shall live by faith: And if he shrink back, my soul hath no pleasure in him. and 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. Be ye also patient; establish your hearts: for the coming of the Lord is at hand. But let your speech be, Yea, yea; Nay, nay: and whatsoever is more than these is of the evil one. And let our people also learn to maintain good works for necessary uses, that they be not unfruitful. Take ye heed, watch and pray: for ye know not when the time is. Woe unto you! for ye are as the tombs which appear not, and the men that walk over them know it not. And 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. Avery grabbed his gun and another doughnut. Only 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; The darkest evening of the year. This Jesus did God raise up, whereof we all are witnesses. who 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? Do you think you understand?” I think it is only fair to tell you that I was devoted to your mother. “It’s getting all over everything,” shouted Fern. And 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. whom they set before the apostles: and when they had prayed, they laid their hands upon them. And when he opened the fourth seal, I heard the voice of the fourth living creature saying, Come. Fern peered through the door. Wilbur was poking the straw with his snout. And 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. to Timothy, my beloved child: Grace, mercy, peace, from God the Father and Christ Jesus our Lord. And let patience have its perfect work, that ye may be perfect and entire, lacking in nothing. And 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; Is it not lawful for me to do what I will with mine own? or is thine eye evil, because I am good? when the multitude therefore saw that Jesus was not there, neither his disciples, they themselves got into the boats, and came to Capernaum, seeking Jesus. “I should worry.” But 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, And 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? Wherefore I ask that ye may not faint at my tribulations for you, which are your glory. And yet a lawyer and businessman and now an Indian chief himself. And he was an expert, for every fraction of Indian in existence had passed through his office. And he said unto him also, Be thou also over five cities. About the forth night we did not go, but instead we went to visit my grandmother. while they themselves also, with supplication on your behalf, long after you by reason of the exceeding grace of God in you. So he left a whole noodle, instead of a half. It was a sort of sac, or cocoon. men fainting for fear, and for expectation of the things which are coming on the world: for the powers of the heavens shall be shaken. Quickly, he jumped away! Soon there were only shadows and the noises of the sheep chewing their cuds, and occasionally the rattle of a cow—chain up overhead. Avery ran after her, holding his nose. And Jesus cried again with a loud voice, and yielded up his spirit. Verily I say unto you, All these things shall come upon this generation. Winders? “Well,” said Wilbur, “it means to have fun, to frolic, to run and skip and make merry.” He is not here; for he is risen, even as he said. Come, see the place where the Lord lay. When night came, I had to walk through the woods alone. I went and sat by one of the fires with the muskets on the ground beside me. And 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, Now the God of peace be with you all. Amen. So belief cometh of hearing, and hearing by the word of Christ. But 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. They were loaded and cocked. And now send men to Joppa, and fetch one Simon, who is surnamed Peter: That 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 “Have you heard about the words that appeared in the spider’s web?” asked Mrs. Arable nervously. And the blind and the lame came to him in the temple; and he healed them. For I know that this shall turn out to my salvation, through your supplication and the supply of the Spirit of Jesus Christ, for I say unto you, I shall not eat it, until it be fulfilled in the kingdom of God. “Jump off!” Now I would have you know, brethren, that the things which happened unto me have fallen out rather unto the progress of the gospel; Turn 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. So the soldiers, as it was commanded them, took Paul and brought him by night to Antipatris. Lest haply, when he hath laid a foundation, and is not able to finish, all that behold begin to mock him, “Let’s swing in the swing!” said Avery. For how knowest thou, O wife, whether thou shalt save thy husband? or how knowest thou, O husband, whether thou shalt save thy wife? And 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. A world once gone was gone for good. Then she started weaving something to take the place of the threads she had removed. Come back when you don’t, and I’ll be glad to meet with you and hear your business. “Don’t get overheated!” said their mother. I started with a rant against the whole sweeping weight of the modern world that was poised to fall on them. And 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. And I bumped smack into him and we both ran away. “What is the date of your birth? that 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: Mary Magdalene cometh and telleth the disciples, I have seen the Lord; and that he had said these things unto her. Even Lurvy, who wasn’t particularly interested in beauty, noticed the web when he came with the pig’s breakfast. For 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, I intend to speak about it in my sermon and point out the fact that this community has been visited with a wondrous animal. “Kneel down!” whispered the old sheep. So your father has decided to do away with it.” Then the devil leaveth him; and behold, angels came and ministered unto him. Jesus 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. In 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. Lurvy, the hired man, heard the noise and came up from the asparagus patch where he was pulling weeds. And 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. for I am with thee, and no man shall set on thee to harm thee: for I have much people in this city. And 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. And Jesus departed thence, and came nigh unto the sea of Galilee; and he went up into the mountain, and sat there. Avery and Fern Arable heard it as they walked the dusty road. “Actually,” said Wilbur, “I feel radiant.” Again, 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. He 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. If she took her doll for a walk in the doll carriage, Wilbur followed along. And 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. And they spake the word of the Lord unto him, with all that were in his house. Wilbur himself could look at it whenever he wanted to. For if the trumpet give an uncertain voice, who shall prepare himself for war? And he said, Come. And Peter went down from the boat, and walked upon the waters to come to Jesus. receiving the end of your faith, even the salvation of your souls. and the two shall become one flesh: so that they are no more two, but one flesh. It was soon arranged. From seven to eight, Wilbur planned to have a talk with Templeton, the rat that lived under his trough. The 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. “I will never forget this as long as I live.” At 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. After these things there was a feast of the Jews; and Jesus went up to Jerusalem. having heard the things concerning Jesus, came in the crowd behind, and touched his garment. They pulled the Indian blanket over them. Mr. Zuckerman hugged Mrs. Zuckerman. He 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. for we brought nothing into the world, for neither can we carry anything out; Who 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. Mrs. Arable shifted uneasily in her chair. They 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. Now 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. making void the word of God by your tradition, which ye have delivered: and many such like things ye do. Then therefore he delivered him unto them to be crucified. “Maybe so,” said Mrs. Zuckerman. Wolf thought he knew everything. And 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. They went out of the city, and were coming to him. Yes, I said. The young spiders just waved. and others had trial of mockings and scourgings, yea, moreover of bonds and imprisonment: I 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. For 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 In the days that followed, Mr. Zuckerman was so busy entertaining visitors that he neglected his farm work. He heaved and grunted with desolation. And there are diversities of workings, but the same God, who worketh all things in all. “All right, it’s a deal,” said the rat. Doth the fountain send forth from the same opening sweet water and bitter? but he that is married is careful for the things of the world, how he may please his wife, I said. His mother saith unto the servants, Whatsoever he saith unto you, do it. And all were weeping, and bewailing her: but he said, Weep not; for she is not dead, but sleepeth. “Please tell me what it is,” begged Wilbur. Whosoever denieth the Son, the same hath not the Father: he that confesseth the Son hath the Father also. Give to every one that asketh thee; and of him that taketh away thy goods ask them not again. He answered them, I told you even now, and ye did not hear; wherefore would ye hear it again? would ye also become his disciples? “You can have it,” replied the goose. Everyone knew Spearfinger was magic and would soon figure out a way to get out of the pitfall. Wherefore, putting away falsehood, speak ye truth each one with his neighbor: for we are members one of another. Deep in his soft bed, Wilbur snoozed. Your success in the ring this morning was, to a small degree, my success. This is a paper bag that someone left in the woods. “Put that empty buttermilk jar into the truck!” commanded Mr. Arable. And 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. Now this Hagar is mount Sinai in Arabia and answereth to the Jerusalem that now is: for she is in bondage with her children. The first spider said hello, but its voice was so small Wilbur couldn’t hear it. He gets embarrassed easily. Their throat is an open sepulchre; With their tongues they have used deceit: The poison of asps is under their lips: “Yes, I do,” said Mrs. Arable. Charlotte, sleepy after her night's exertions, smiled as she watched. But 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. Do 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. For 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. For our exhortation is not of error, nor of uncleanness, nor in guile: At 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. Whosoever shall seek to gain his life shall lose it: but whosoever shall lose his life shall preserve it. He had buried his child, and then shortly thereafter he had buried his wife. And after the uproar ceased, Paul having sent for the disciples and exhorted them, took leave of them, and departed to go into Macedonia. And five of them were foolish, and five were wise. Soon he saw the rat climbing down a slanting board that he used as a stairway. When 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. The balloonists were gone. “What do people catch in the Queensborough Bridge —bugs? asked Wilbur. When 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. and bring the fatted calf, and kill it, and let us eat, and make merry: and 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. Where then is the glorying? It is excluded. By what manner of law? of works? Nay: but by a law of faith. And one said unto him, Behold, thy mother and thy brethren stand without, seeking to speak to thee. Again he went out about the sixth and the ninth hour, and did likewise. It is fit neither for the land nor for the dunghill: men cast it out. He that hath ears to hear, let him hear. “Another summer gone,” she sighed. These 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: I 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. And now I have told you before it come to pass, that, when it is come to pass, ye may believe. But 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? searching 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. Maybe some others. O.K., Templeton, the soap ad will do, I guess. They 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. Those who could afford it went out whoring, drunk and lustful, at least a night or two a week. and what the exceeding greatness of his power to us-ward who believe, according to that working of the strength of his might There was at the table reclining in Jesus’ bosom one of his disciples, whom Jesus loved. But the days will come; and when the bridegroom shall be taken away from them, then will they fast in those days. And in her was found the blood of prophets and of saints, and of all that have been slain upon the earth. And 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. And many of them said, He hath a demon, and is mad; why hear ye him? But Jesus saith unto him, Follow me; and leave the dead to bury their own dead. Whoa! Attach! Good! And he saw a certain poor widow casting in thither two mites. But if, while we sought to be justified in Christ, we ourselves also were found sinners, is Christ a minister of sin? God forbid. They are millipedes. These 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. But she did. Wilbur stood still and closed his eyes. He could feel the buttermilk trickling down his sides. that 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, And yet count him not as an enemy, but admonish him as a brother. For 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. But farther along. Jesus said unto him, Again it is written, Thou shalt not make trial of the Lord thy God. His eyes had a wild look. This is what they do when they put on shoes, said Wolf, truly in pain now. For who hath known the mind of the Lord, that he should instruct him? But we have the mind of Christ. Nevertheless 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: And when he had said this, he showed unto them his hands and his side. The disciples therefore were glad, when they saw the Lord. Jesus 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. And they asked him, saying, How is it that the scribes say that Elijah must first come? These things write I unto thee, hoping to come unto thee shortly; Wilbur watched him disappear into his tunnel. “But do you know how long it took men to build it? as 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. No matter how she looked her skin was hard like a rock and arrows would not pierce it. But he denied, saying, Woman, I know him not. for it is written, He shall give his angels charge concerning thee, to guard thee: Ye have condemned, ye have killed the righteous one; he doth not resist you. I'll bring you a piece of the package. It said: SOME PIG! (As he spake unto our fathers) Toward Abraham and his seed for ever. This is the third time I am coming to you. At the mouth of two witnesses or three shall every word be established. Mrs. 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. Wilbur grew beautifully white and smooth. “Note the general radiance of this animal! “What a lot of nonsense!” muttered the rat. But in a contest of extravagant hair just among white men, Jackson and Calhoun would have split the prize. Wherefore let him that speaketh in a tongue pray that he may interpret. When he entered a room, it felt like the candles would all flicker out from the breeze created when every head suddenly turned his way. “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.” Sometimes at night he would have a bad dream. Several men stepped forward from the crowd to help lift the crate. Wilbur started to race out to his yard. as ye know how we dealt with each one of you, as a father with his own children, exhorting you, and encouraging you, and testifying, for they all did cast in of their superfluity; but she of her want did cast in all that she had, even all her living. And he said unto them, What communications are these that ye have one with another, as ye walk? And they stood still, looking sad. And 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. Now even the first covenant had ordinances of divine service, and its sanctuary, a sanctuary of this world. Attach! It is another that beareth witness of me; and I know that the witness which he witnesseth of me is true. I can’t reach it, and I can't climb. remembering without ceasing your work of faith and labor of love and patience of hope in our Lord Jesus Christ, before our God and Father; All right, I said. And the sea was rising by reason of a great wind that blew. He that believeth and is baptized shall be saved; but he that disbelieveth shall be condemned. Now the Lord is the Spirit: and where the Spirit of the Lord is, there is liberty. We studied them one by one and guessed in which of the two basic categories the persons belonged, preachers or drunks. And the beast that was, and is not, is himself also an eighth, and is of the seven; and he goeth into perdition. This was the first enrolment made when Quirinius was governor of Syria. Ye have heard the blasphemy: what think ye? And they all condemned him to be worthy of death. For in hope were we saved: but hope that is seen is not hope: for who hopeth for that which he seeth? But 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. Tell me, ye that desire to be under the law, do ye not hear the law? The sheep lay calmly at her feet. And 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. For ye were going astray like sheep; but are now returned unto the Shepherd and Bishop of your souls. The 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. After eating from the community stewpots nonstop for two or three days, Lichen’s men joined us in searching for Charley. So did the geese, who lived with the sheep. but for our sake also, unto whom it shall be reckoned, who believe on him that raised Jesus our Lord from the dead, And Peter said unto him, Aeneas, Jesus Christ healeth thee: arise, and make thy bed. And straightway he arose. So that the law is become our tutor to bring us unto Christ, that we might be justified by faith. Soon a prophet named Dull Hoe weighed in with his vision. He used a fragrant pomade, and the comb tracks were straight as bean rows traversing his scalp. But 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. We love, because he first loved us. “Well,” said Charlotte, vaguely, “I don't really know. And if any one ask you, Why do ye loose him? thus shall ye say, The Lord hath need of him. Boy Crockett had dared either man—master or father—to try enforcing the contract. But as touching the resurrection of the dead, have ye not read that which was spoken unto you by God, saying, Peter, an apostle of Jesus Christ, to the elect who are sojourners of the Dispersion in Pontus, Galatia, Cappadocia, Asia, and Bithynia, beseeching us with much entreaty in regard of this grace and the fellowship in the ministering to the saints: “Anyway, I can guarantee that it is strong. And 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; Hot summer days are for swimming! And 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. And Pilate said unto the chief priests and the multitudes, I find no fault in this man. Now the passover of the Jews was at hand: and many went up to Jerusalem out of the country before the passover, to purify themselves. And he said unto him, Teacher, all these things have I observed from my youth. And my spirit hath rejoiced in God my Saviour. He and the younger men began climbing away. but 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. Blessed are the poor in spirit: for theirs is the kingdom of heaven. I recognized one of them immediately as our neighbor. Now from the sixth hour there was darkness over all the land until the ninth hour. Lurvy, at work building a crate for Wilbur, heard the song and knew it was time to dig potatoes. not 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. Smith said it all exploded so fast he still wasn’t sure what happened, exactly who did what. It 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, Step by step, footprints lay lighter on the earth, fainter and fainter as if the bear were slowly elevating into the sky. So he tried just sitting, looking with unfocused eyes at the various parts of the laurel in its dim green light. And 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. Salute Urbanus our fellow-worker in Christ, and Stachys my beloved. Sometimes 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. For all these things do the nations of the world seek after: but your Father knoweth that ye have need of these things. He 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. The cocker spaniel was sneaking up on him from one side, Lurvy the hired man was sneaking up on him from the other side. To 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. The rest of the dead lived not until the thousand years should be finished. This is the first resurrection. that upon the Gentiles might come the blessing of Abraham in Christ Jesus; that we might receive the promise of the Spirit through faith. And 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. There 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. “You're terrific as far as I'm concerned, replied Charlotte, sweetly, “and that's what counts. seeing that thou canst take knowledge that it is not more than twelve days since I went up to worship at Jerusalem: And the superscription of his accusation was written over, THE KING OF THE JEWS. But 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. I guess I would mess up your looks, “You stay right where you are!” said her mother. Now when morning was come, all the chief priests and the elders of the people took counsel against Jesus to put him to death: In 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. Moreover the tabernacle and all the vessels of the ministry he sprinkled in like manner with the blood. at 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. But 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? Though it was going on noon, he sat behind a table littered with breakfast dishes. Him did God exalt with his right hand to be a Prince and a Saviour, to give repentance to Israel, and remission of sins. for I was hungry, and ye did not give me to eat; I was thirsty, and ye gave me no drink; And 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. So now it is no more I that do it, but sin which dwelleth in me. They 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. beginning 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. It smelled of grain and of harness dressing and of axle grease and of rubber boots and of new rope. His legs collapsed, his mind went blank, and he fell to the ground, unconscious. And Pilate gave sentence that what they asked for should be done. envyings, 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. Jesus therefore saith unto them, My time is not yet come; but your time is always ready. And for this cause God sendeth them a working of error, that they should believe a lie: Boudinot and young Ridge and their Yankee wives made a happy jaunt of it. For this cause also the multitude went and met him, for that they heard that he had done this sign. And 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. His tail had a fine, tight curl in it. And 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. and the napkin, that was upon his head, not lying with the linen cloths, but rolled up in a place by itself. He that hath the Son hath the life; he that hath not the Son of God hath not the life. Everyone is invited to attend. Now, Wolf began smelling. And 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? Moses hath given you circumcision (not that it is of Moses, but of the fathers); and on the sabbath ye circumcise a man. Aren't you anxious to get home?” And there stood up certain, and bare false witness against him, saying, It said PRE-SHRUNK. knowing that Christ being raised from the dead dieth no more; death no more hath dominion over him. If you enter the barn, the swallows swoop down from their nests and scold. “Cheeky, cheeky!” they say. and that he was buried; and that he hath been raised on the third day according to the scriptures; At 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. who 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, Wilbur paid no attention. And the Lord said unto Paul in the night by a vision, Be not afraid, but speak and hold not thy peace: I 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 by glory and dishonor, by evil report and good report; as deceivers, and yet true; At 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. Then 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. He 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. Before 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. I saw the flash of powder in the pans, the leap of grey smoke against the background of dark trees. And 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: withal taking up the shield of faith, wherewith ye shall be able to quench all the fiery darts of the evil one. And he looked round about to see her that had done this thing. As she dropped, her spinning tubes went into action and she let out thread. and with difficulty coasting along it we came unto a certain place called Fair Havens; nigh whereunto was the city of Lasea. It was something hairy. Littlefish swam slowly around the pool for several days. It is no great thing therefore if his ministers also fashion themselves as ministers of righteousness; whose end shall be according to their works. but their plot became known to Saul. And they watched the gates also day and night that they might kill him: A factious man after a first and second admonition refuse; When the first gosling poked its grey-green head through the goose’s feathers and looked around, Charlotte spied it and made the announcement. And 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. They 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. Of course, that was back when men joked about the pox as if it were a runny nose. He walked on down the winding creek, passing a white cascade and a deep black pool. Bear’s old lessons in fearlessness and my own experiments in nightwalking had brought about the transformation. They 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. During the months leading up to the Removal, letters and reports flew back and forth between Washington and the earliest representatives of the Army. This 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. They add nutrients to the soil. The fewer people we’re hunting the better. while 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. And 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. Fern hugged her mother. Iced stream banks, frost-burnt pigeon moss, a cold sun setting down a metal-colored sky. But the Pharisees went out, and took counsel against him, how they might destroy him. For that ye ought to say, If the Lord will, we shall both live, and do this or that. Perhaps you could arrange to return after those obligations have been met. And behold, a woman, who had an issue of blood twelve years, came behind him, and touched the border of his garment: Sequoyah began drawing hundreds of symbols, one for each word. I 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. And he said, Who hath ears to hear, let him hear. “I’m hungry,” said Avery. But thou didst follow my teaching, conduct, purpose, faith, longsuffering, love, patience, “Well, we are all here except the rat,” said Charlotte. So it was an honorable thing to fight against the world. Woe 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. For what if some were without faith? shall their want of faith make of none effect the faithfulness of God? Women received their dead by a resurrection: and others were tortured, not accepting their deliverance; that they might obtain a better resurrection: For 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. Who bit your tail and got you back on your feet this morning after you had fainted in front of the crowd? Old Templeton. The boy’s arms and legs were bone thin, and the elbow and knee joints looked enormous. In the evening I would leave, after school was finished, I would go and stay late into the night. I really enjoyed going to the store because I liked to drive our car. But they were the more urgent, saying, He stirreth up the people, teaching throughout all Judæa, and beginning from Galilee even unto this place. Now 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. “Who made trip after trip to the dump?” he asked. “Do away with it?” shrieked Fern. Sequoyah was not a chief, but he loved his people like one. for now we live, if ye stand fast in the Lord. She 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. I had once been like that myself. Stars overlapped stars down a vertiginous well. “She doesn’t talk very loud, but she talks.” He 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. But the men who die in these little inconsequential fights are just as stone dead as if they fought at Hastings or Culloden or Sharpsburg. She knew just what to wear. I could see them talking. Charlotte had her web almost finished when Templeton returned, carrying the newspaper clipping. The smell is unbearable. Who wants to live in a barn that is perfumed with rotten egg?” Everyone admired the web. But ye believe not, because ye are not of my sheep. I don’t want to die. Let your forbearance be known unto all men. The Lord is at hand. And they reasoned one with another, saying, We have no bread. And he received a cup, and when he had given thanks, he said, Take this, and divide it among yourselves: Now is my soul troubled; and what shall I say? Father, save me from this hour. But for this cause came I unto this hour. After a while the fog lifted. Now John himself had his raiment of camel’s hair, and a leathern girdle about his loins; and his food was locusts and wild honey. But now ye glory in your vauntings: all such glorying is evil. teaching them to observe all things whatsoever I commanded you: and lo, I am with you always, even unto the end of the world. As I came past that pig next door—the one that calls himself Uncle — I noticed a blue tag on the front of his pen. I went back to Cranshaw, feeling hopeless and foolish at my desperation to make one more try to reach her. And 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. without understanding, covenant-breakers, without natural affection, unmerciful: how 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? “Ladeez and gentlemen,” said the loud speaker, “we now present Mr. Homer L. Zuckerman’s distinguished pig. and sent Timothy, our brother and God’s minister in the gospel of Christ, to establish you, and to comfort you concerning your faith; I 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. And his mother answered and said, Not so; but he shall be called John. And turning to the disciples, he said privately, Blessed are the eyes which see the things that ye see: The trap clanged hard. Balloons by the dozen were rising, circling, and drifting away through the door, sailing off on the gentle wind. Swallows passed on silent wings, in and out of the doorways, bringing food to their young ones. This 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: For this is acceptable, if for conscience toward God a man endureth griefs, suffering wrongfully. And behold, thou shalt conceive in thy womb, and bring forth a son, and shalt call his name JESUS. And having this confidence, I know that I shall abide, yea, and abide with you all, for your progress and joy in the faith; Mr. Zuckerman rushed and called Mrs. Zuckerman. Some 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. “Humble?” said Charlotte. “Hello, there!” he said. A 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. And then I screamed and threw the gun into the air, and I ran as fast as I could…like this. Go 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: Peace, Lichen said. And 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. and 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. Paul, an apostle of Christ Jesus through the will of God, to the saints that are at Ephesus, and the faithful in Christ Jesus: The animals treated her as an equal. John said unto him, Teacher, we saw one casting out demons in thy name; and we forbade him, because he followed not us. and the stars shall be falling from heaven, and the powers that are in the heavens shall be shaken. “I'm making a trip to the dump tomorrow afternoon. And 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. And they continued stedfastly in the apostles’ teaching and fellowship, in the breaking of bread and the prayers. Now when Jesus saw great multitudes about him, he gave commandment to depart unto the other side. “Give him his breakfast!” she said. And she, when she heard it, arose quickly, and went unto him. I 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. Avery jumped to his feet. Great sobs racked his body. Beyond 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. Grace, mercy, peace shall be with us, from God the Father, and from Jesus Christ, the Son of the Father, in truth and love. So we sorted through our packs and gave the old man food and then we let Hog Meat be. It 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. Yet 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. He 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. And he saith unto them, Know ye not this parable? and how shall ye know all the parables? And Pilate again answered and said unto them, What then shall I do unto him whom ye call the King of the Jews? I'm glad I'm a sedentary spider. And 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. But 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: After 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. Those were the pressing questions. Consider 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! but is under guardians and stewards until the day appointed of the father. in 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); But I hope that ye shall know that we are not reprobate. All of us. I guess I was just trying to show off. A disciple is not above his teacher, nor a servant above his lord. If Charlotte herself was unable to go home to the barn, at least he must take her children along. Martha saith unto him, I know that he shall rise again in the resurrection at the last day. Mr. Arable grinned. For ye have brought hither these men, who are neither robbers of temples nor blasphemers of our goddess. XIV. Dr. Dorian And 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. And 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: As she worked she kept thinking about Fern. even 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. But 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. “Not going back?” he cried. Slowly Templeton dragged himself across the pen and threw himself down in a corner. If 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. But ye, beloved, remember ye the words which have been spoken before by the apostles of our Lord Jesus Christ; They eat at you like heartworm, coring you out until you are just a skin enclosing nothing. Good girl!” and he fell upon his face at his feet, giving him thanks: and he was a Samaritan. “The meeting is now adjourned. For 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. The 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. These 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. They coasted down the lane and out onto the frozen pond in the pasture. Those are the winners. But if a woman have long hair, it is a glory to her: for her hair is given her for a covering. it seemed good unto us, having come to one accord, to choose out men and send them unto you with our beloved Barnabas and Paul, If then ye are not able to do even that which is least, why are ye anxious concerning the rest? I 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. And 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. Mr. Zuckerman particularly wanted to look at tractors. “Why, yes,” said Mr. Zuckerman. To 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. But when it was now the midst of the feast Jesus went up into the temple, and taught. Your land included. Glory to God in the highest, And on earth peace among men in whom he is well pleased. But 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: Ye therefore, beloved, knowing these things beforehand, beware lest, being carried away with the error of the wicked, ye fall from your own stedfastness. Charlotte moved aside for him. And they answering said, John the Baptist; but others say, Elijah; and others, that one of the old prophets is risen again. Fear 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. He hoped withal that money would be given him of Paul: wherefore also he sent for him the oftener, and communed with him. You see them receding before you as you walk the trail, their shapes beautiful and sad. By their fruits ye shall know them. Do men gather grapes of thorns, or figs of thistles? Asmeret looks everywhere for evidence of soil being made. And I brought him to thy disciples, and they could not cure him. “Do you really think it’s all right?” she asked. Be not overcome of evil, but overcome evil with good. And on some have mercy, who are in doubt; Give diligence to come shortly unto me: The churches of Asia salute you. Aquila and Prisca salute you much in the Lord, with the church that is in their house. And they found the stone rolled away from the tomb. But Paul saith, I am not mad, most excellent Festus; but speak forth words of truth and soberness. “What's everybody crying about?” asked Mr. Zuckerman. But as many as received him, to them gave he the right to become children of God, even to them that believe on his name: “How is the plan coming, Charlotte? Have you got very far with it? In another minute he spoke. And 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. but when this thy son came, who hath devoured thy living with harlots, thou killedst for him the fatted calf. Jesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me? They made tiny webs near the sac. He patted his stomach, grinned at the sheep, and crept upstairs to lie down. “Did she succeed?” asked Wilbur. “Do you?” said Charlotte, looking at him with affection. For the mind of the flesh is death; but the mind of the Spirit is life and peace: There were therefore seven brethren: and the first took a wife, and died childless; give, 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. Woe 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! And 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. “Not tonight,” she said in a low voice. And 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. But if ye had known what this meaneth, I desire mercy, and not sacrifice, ye would not have condemned the guiltless. Way back for thousands and thousands of years we spiders have been laying for flies and bugs.” “I would have to have St. Vitus’s Dance to weave a word like that into my web.” From that time began Jesus to preach, and to say, Repent ye; for the kingdom of heaven is at hand. Seeing that Jews ask for signs, and Greeks seek after wisdom: In other parts of the country, it’s the section of town with all the bars and whorehouses and gunfighters and knife fighters. If you look closely you can see that it is decomposing into soil. “Well, I didn’t think you were expecting woodpeckers,” said Wilbur, bitterly. The pole benches all around the walls were crowded with people, and the children sat or lay on the packed earth floor. At best, they were captives beyond his power to redeem. He continued to visit Wilbur three times a day, exactly at mealtime, and Wilbur kept the promise he had made. The sting of death is sin; and the power of sin is the law: Fern climbed into the pen and knelt by Wilbur’s side. And there were also two others, malefactors, led with him to be put to death. And they entreated him that he would not command them to depart into the abyss. Mr. 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. “Will you play with me, Templeton?” asked Wilbur. I 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. And in like manner was not also Rahab the harlot justified by works, in that she received the messengers, and sent them out another way? And when they came to the disciples, they saw a great multitude about them, and scribes questioning with them. “Listen to me, listen to me!” screamed the goose. Generations 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. And 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. Hello Littlefish. replied the new fish through rounded lips, I am called Hogsucker by the Cherokee people. I cling to rocks and clean them. for already some are turned aside after Satan. The rat was hungry and thirsty. Wherefore 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. And so, talking to herself, the spider worked at her difficult task. And Herod and Pilate became friends with each other that very day: for before they were at enmity between themselves. The larger fish swam slowly up to him and said in a gravelly voice, Hello Littlefish, the Cherokee people call me Knottyhead. And I think it right, as long as I am in this tabernacle, to stir you up by putting you in remembrance; But 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. Clinging upside down to the ceiling, she settled down for a nap, leaving Wilbur very much worried. They were so angry they caught the bird and cut off its tongue. In 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. And the first came before him, saying, Lord, thy pound hath made ten pounds more. Every 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. Contrary to his wishes, Claire remained behind to pack their belongings. Wilbur couldn’t count them, but he knew that he had a great many new friends. And 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. Avery's foot touched Templeton under the straw. and 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. He was a famous man, we say, because he invented writing for the Cherokee. comfort your hearts and establish them in every good work and word. And Agrippa said unto Festus, I also could wish to hear the man myself. To-morrow, saith he, thou shalt hear him. The first time I dined on oysters, my enthusiasm embarrassed my tablemates. But let each man prove his own work, and then shall he have his glorying in regard of himself alone, and not of his neighbor. always in every supplication of mine on behalf of you all making my supplication with joy, saying, This is the blood of the covenant which God commanded to you-ward. What fruit then had ye at that time in the things whereof ye are now ashamed? for the end of those things is death. And as they passed by in the morning, they saw the fig tree withered away from the roots. For I have given you an example, that ye also should do as I have done to you. Everyone in the village came to a great council to decide how to get rid of her once and for all. Charlotte was delighted with the way her trick was working. Rejoice over her, thou heaven, and ye saints, and ye apostles, and ye prophets; for God hath judged your judgment on her. But when it was day, the magistrates sent the serjeants, saying, Let those men go. For a moment Charlotte said nothing. To stop without a farmhouse near And 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: He barely spoke. But 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. that no advantage may be gained over us by Satan: for we are not ignorant of his devices. My brethren, if any among you err from the truth, and one convert him; “I like it there,” replied Fern. For other foundation can no man lay than that which is laid, which is Jesus Christ. These 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. Jesus answered them, Do ye now believe? “I guess we can proceed without him. that it might be fulfilled which was spoken through Isaiah the prophet, saying, Himself took our infirmities, and bare our diseases. For 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. And 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. “I did indeed,” replied Charlotte in a weak voice. And they went away, and found a colt tied at the door without in the open street; and they loose him. For a while he could take his direction by stopping for a second and listening to the bear moving ahead of him through the leaves. He 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. “Oh, beautiful day, it is here at last! Now our Lord Jesus Christ himself, and God our Father who loved us and gave us eternal comfort and good hope through grace, Jesus 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. They trotted to the new Nation in fine carriages drawn by strong healthy horses. Greater love hath no man than this, that a man lay down his life for his friends. With the sun and rain, the peas start to peek through the earth. Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. For the wrath of God is revealed from heaven against all ungodliness and unrighteousness of men, who hinder the truth in unrighteousness; Most decomposers live in wet and dark places. And 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. And from another long night by a campfire with Charley. And now ye know that which restraineth, to the end that he may be revealed in his own season. And only a thousand of them? The younger women and the children and Nancy sat down in the leaves and could go no farther. “Look!” cried Fern, pointing. Now Elisabeth’s time was fulfilled that she should be delivered; and she brought forth a son. Go down through the orchard and stroll in the woods! And some of them would have taken him; but no man laid hands on him. How 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? They sought therefore to take him: and no man laid his hand on him, because his hour was not yet come. When the scribe fell silent, the colonel drew on his pipe and puffed smoke. You don’t have to spin a web. Certain 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. For 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, So he cometh to Simon Peter. He saith unto him, Lord, dost thou wash my feet? Let 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. In 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. The kitchen table was set for breakfast, and the room smelled of coffee, bacon, damp plaster, and wood smoke from the stove. preaching the kingdom of God, and teaching the things concerning the Lord Jesus Christ with all boldness, none forbidding him. The sky lightened. Do it before Charley gets to them. Tears ran down her cheeks and she took hold of the ax and tried to pull it out of her father's hand. giving thanks unto the Father, who made us meet to be partakers of the inheritance of the saints in light; He reminded the people of the great comet years ago, before the memories of many in his audience. Look at you! A weakling makes trouble. It is a very sociable place. if we are faithless, he abideth faithful; for he cannot deny himself. In the second place, I am not interested in pigs. For ye have the poor always with you; but me ye have not always. And 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? If I then, the Lord and the Teacher, have washed your feet, ye also ought to wash one another’s feet. And 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! “Now climb to the highest place you can get to, like this.” whom withstand stedfast in your faith, knowing that the same sufferings are accomplished in your brethren who are in the world. All 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. For even when we were with you, this we commanded you, If any will not work, neither let him eat. but 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. The pig's up! And 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. And 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. he 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: Unfair, yes. “Joy! It means ‘not proud’ and it means ‘near the ground.’ That’s Wilbur all over. When they were thirsty they ate snow. But 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. For every one that doeth evil hateth the light, and cometh not to the light, lest his works should be reproved. He that saith he is in the light and hateth his brother, is in the darkness even until now. Up the road at the Arables’ house, Fern lugged a pail of hot water to her room and took a sponge bath. Jesus therefore again groaning in himself cometh to the tomb. Now it was a cave, and a stone lay against it. And when the sixth hour was come, there was darkness over the whole land until the ninth hour. But take ye heed: behold, I have told you all things beforehand. Charlie and Stephen bade them stay back. And 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. For 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. And the sixth angel sounded, and I heard a voice from the horns of the golden altar which is before God, And what drinking! Lurvy ran for a pail of water. Even 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. It was standing there in the middle of the road And he took a great big bite. What 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. Charge 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; even the mystery which hath been hid for ages and generations: but now hath it been manifested to his saints, It was apple—blossom time, and the days were getting warmer. We’re born, we live a little while, we die. And 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. They clattered against one another like potsherds when he moved. There were good hiding places there—excellent cover for a rat. And the Pharisees and Sadducees came, and trying him asked him to show them a sign from heaven. And 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. Greater joy have I none than this, to hear of my children walking in the truth. From then on, Charlie was known as Sir Charles - the bravest of the knights of the village. I’m needed here right now. Let their eyes be darkened, that they may not see, And bow thou down their back always. And the Lord direct your hearts into the love of God, and into the patience of Christ. They say unto him, Why then did Moses command to give a bill of divorcement, and to put her away? A little village called Wayah. “What’s that mean?” asked Wilbur. And he commanded them that all should sit down by companies upon the green grass. And they asked him, and said unto him, Why then baptizest thou, if thou art not the Christ, neither Elijah, neither the prophet? laying 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. Jesus 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. for 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. “Well, do you understand it?” asked Mrs. Arable. Twilight settled over Zuckerman’s barn, and a feeling of peace. And 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. The big trees were visible only halfway up their wet trunks, and the creek was a muffled rush off to his left. “I’m going to steer a jet plane and make it bump into another one.” For I through the law died unto the law, that I might live unto God. But 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? Now don’t get lost! Many shelves of books and bureaus of folded clothes laid rectangle by rectangle in wooden crates. Else 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? With anyone else? And 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. in 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; Nevertheless he that comforteth the lowly, even God, comforted us by the coming of Titus; But in those days, after that tribulation, the sun shall be darkened, and the moon shall not give her light, Major 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. No man can come to me, except the Father that sent me draw him: and I will raise him up in the last day. And I saw an angel coming down out of heaven, having the key of the abyss and a great chain in his hand. When the poor Indians arrived, he’d be there waiting to profit like most of the other rich Indians. Thus hath the Lord done unto me in the days wherein he looked upon me, to take away my reproach among men. “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. Howbeit that is not first which is spiritual, but that which is natural; then that which is spiritual. And 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. And Jesus came and touched them and said, Arise, and be not afraid. And he said, So is the kingdom of God, as if a man should cast seed upon the earth; “Be quiet, Wilbur!” said Charlotte, who had been listening to this awful conversation. Early summer days are a jubilee time for birds. Wilbur, who was asleep in the straw, jumped up. And 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. seeing 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; Even 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. He said, I guess next you’ll want cash payment for your services? Six 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. Charlotte was building a web. And they sat down in ranks, by hundreds, and by fifties. according to the eternal purpose which he purposed in Christ Jesus our Lord: in labor and travail, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness. “Pig’s out! And 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. and laid hands on the apostles, and put them in public ward. Deacons in like manner must be grave, not double-tongued, not given to much wine, not greedy of filthy lucre; Descend! He seemed almost ready to cry himself. For where a testament is, there must of necessity be the death of him that made it. But 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; Take ye away therefore the talent from him, and give it unto him that hath the ten talents. They’ve committed a capital crime. And they had hair as the hair of women, and their teeth were as the teeth of lions. He 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. But straightway a woman, whose little daughter had an unclean spirit, having heard of him, came and fell down at his feet. Are ye so foolish? having begun in the Spirit, are ye now perfected in the flesh? Salute Prisca and Aquila, and the house of Onesiphorus. It is good not to eat flesh, nor to drink wine, nor to do anything whereby thy brother stumbleth. During the day’s walk, the boy Wasseton had shot several squirrels from chestnut trees with darts from a cane blowgun taller than he was. And 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. And if the house be worthy, let your peace come upon it: but if it be not worthy, let your peace return to you. “I can think better if I think alone.” And the soldiers’ counsel was to kill the prisoners, lest any of them should swim out, and escape. Smith asked. Never a kind word for a rat.” And this will we do, if God permit. And he would fain have filled his belly with the husks that the swine did eat: and no man gave unto him. Why askest thou me? ask them that have heard me, what I spake unto them: behold, these know the things which I said. He that findeth his life shall lose it; and he that loseth his life for my sake shall find it. These are the bones of a snake that died months ago. and ran round about that whole region, and began to carry about on their beds those that were sick, where they heard he was. He took Wilbur’s tail in his mouth and bit it, just as hard as he could bite. And 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. A queer look came over John Arable’s face. and 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: And the fruit of righteousness is sown in peace for them that make peace. “Where’s Templeton?” he demanded. But when the Jews saw the multitudes, they were filled with jealousy, and contradicted the things which were spoken by Paul, and blasphemed. And they bring him unto the place Golgotha, which is, being interpreted, The place of a skull. You have a big red apple, he said. And 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? Wilbur was what farmers call a spring pig, which simply means that he was born in springtime. And the earth helped the woman, and the earth opened her mouth and swallowed up the river which the dragon cast out of his mouth. I had brought along a bottle of good Scotch whisky, and in the spirit of conviviality I offered to share it. Not learning yet. It was a happy day for Wilbur. Here, moreover, it is required in stewards, that a man be found faithful. And the bondservant abideth not in the house for ever: the son abideth for ever. Let 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. And one of them, when he saw that he was healed, turned back, with a loud voice glorifying God; And 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. Salutations! holding faith and a good conscience; which some having thrust from them made shipwreck concerning the faith: But he that is spiritual judgeth all things, and he himself is judged of no man. Okay, said Wolf, barely speaking. Whereunto then shall I liken the men of this generation, and to what are they like? But he said unto them, Have ye not read what David did, when he was hungry, and they that were with him; Are you on your web?” The words gave her courage. Now 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? So when Jesus came, he found that he had been in the tomb four days already. Don’t stop now. Handle not, nor taste, nor touch and set up false witnesses, who said, This man ceaseth not to speak words against this holy place, and the law: He came back out and sent two of the boys off to fetch the horses. How 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? When therefore the lord of the vineyard shall come, what will he do unto those husbandmen? And 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, Wherefore I was displeased with this generation, And said, They do always err in their heart: But they did not know my ways; And 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. Jesus answered them, Is it not written in your law, I said, Ye are gods? And he was in the wilderness forty days tempted of Satan; and he was with the wild beasts; and the angels ministered unto him. God, having of old time spoken unto the fathers in the prophets by divers portions and in divers manners, I told Smith what Charley had said, and Smith said, We’ll wait awhile and see if some more come in. I am the good shepherd; and I know mine own, and mine own know me, the Holy Spirit this signifying, that the way into the holy place hath not yet been made manifest, while the first tabernacle is yet standing; Salt 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. But blessed are your eyes, for they see; and your ears, for they hear. “I won’t break it,” snarled Templeton. And 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; Wherefore 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; nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God. As Wilbur was studying the web, a pair of whiskers and a sharp face appeared. Against an elder receive not an accusation, except at the mouth of two or three witnesses. Her campaign against insects seemed sensible and useful. Right now I am on my way to your trough to eat your breakfast, since you haven’t got sense enough to eat it yourself.” and 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. They answered him, Jesus of Nazareth. Jesus saith unto them, I am he. And Judas also, who betrayed him, was standing with them. Don't you think that’s fascinating?” And he sware unto her, Whatsoever thou shalt ask of me, I will give it thee, unto the half of my kingdom. For 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. The maples and birches turned bright colors and the wind shook them and they dropped their leaves one by one to the ground. So they, when they were dismissed, came down to Antioch; and having gathered the multitude together, they delivered the epistle. Everybody who visited the pigpen had a good word to say about Wilbur. And it is the Spirit that beareth witness, because the Spirit is the truth. “The heat is too much for him.” For God sent not the Son into the world to judge the world; but that the world should be saved through him. Let your loins be girded about, and your lamps burning; They 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. “Salu-what?” he cried. and 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. I thought my argument was simple and unassailable. There 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. He 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. Remember 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. if any man is blameless, the husband of one wife, having children that believe, who are not accused of riot or unruly. Now all the publicans and sinners were drawing near unto him to hear him. Neither let us make trial of the Lord, as some of them made trial, and perished by the serpents. Bacteria are almost everywhere. Do we then make the law of none effect through faith? God forbid: nay, we establish the law. And the angel that I saw standing upon the sea and upon the earth lifted up his right hand to heaven, And for their sakes I sanctify myself, that they themselves also may be sanctified in truth. For this cause they could not believe, for that Isaiah said again, But certain men clave unto him, and believed: among whom also was Dionysius the Areopagite, and a woman named Damaris, and others with them. And 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? and 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. “They should say Zuckerman’s Famous Pig.” For 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? Let's burn down his cabin, they cried. And because ye are sons, God sent forth the Spirit of his Son into our hearts, crying, Abba, Father. And the chief priests and the principal men of the Jews informed him against Paul; and they besought him, He, of course, lost steadily and seemed to think the other two possessed enormous luck. Shortly 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. He heard them coming, following his trail, which must have lain behind him in the dead leaves plain as if he were dragging a plowpoint. Doth he thank the servant because he did the things that were commanded? And 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? and those that use the world, as not using it to the full: for the fashion of this world passeth away. For 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: Aranea! Through various channels, bits of copied correspondence continued to fall my way. I was in the Spirit on the Lord’s day, and I heard behind me a great voice, as of a trumpet Having therefore these promises, beloved, let us cleanse ourselves from all defilement of flesh and spirit, perfecting holiness in the fear of God. And the building of the wall thereof was jasper: and the city was pure gold, like unto pure glass. If there is therefore any exhortation in Christ, if any consolation of love, if any fellowship of the Spirit, if any tender mercies and compassions, Faithful is the saying: For if we died with him, we shall also live with him: But Jesus hearing it, answered him, Fear not: only believe, and she shall be made whole. I had been to New Echota many times and was never sure whether it represented a grand experiment or a pathetically inept confidence game. “But don’t fail to let me know if there’s anything I can do to help, no matter how slight.” But if we shall say, From men; all the people will stone us: for they are persuaded that John was a prophet. Rain upset Wilbur’s plans. But if any provideth not for his own, and specially his own household, he hath denied the faith, and is worse than an unbeliever. And he went forth again by the sea side; and all the multitude resorted unto him, and he taught them. He that is not with me is against me; and he that gathereth not with me scattereth. Previously to entering upon this as a question of numbers, physical strength, interest in the country they inhabit, their means of subsistence & ca. There arose a division again among the Jews because of these words. If 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. All I had to offer them was five pounds of dried beans and an ugly deal, but necessary and without reasonable option. She loved to stroke him, to feed him, to put him to bed. What, 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. Fighting? Littlefish replied, It is very nice to meet you, Knottyhead. He still worried some about the future, as he could hardly believe that a mere spider would be able to save his life. Mr. Arable smiled. Afterward the woman also died. Even 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. They soon ceased listening and began wondering how agreeing with me might benefit anyone who mattered. In particular, themselves. While 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. All 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. But new wine must be put into fresh wine-skins. Wherein ye greatly rejoice, though now for a little while, if need be, ye have been put to grief in manifold trials, And he said unto them, How is it that ye sought me? knew ye not that I must be in my Father’s house? Ye yourselves know that these hands ministered unto my necessities, and to them that were with me. And I knew him not; but that he should be made manifest to Israel, for this cause came I baptizing in water. for 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. Jesus cometh, and taketh the bread, and giveth them, and the fish likewise. whom I have sent unto you for this very purpose, that ye may know our state, and that he may comfort your hearts; And wisdom is justified of all her children. At a distance of ten paces, Wasseton had driven long shaved hickory darts through their skulls with a single plosive breath. even so have these also now been disobedient, that by the mercy shown to you they also may now obtain mercy. He’s trying to lure you back into captivity-ivity. And Judas, who betrayed him, answered and said, Is it I, Rabbi? He saith unto him, Thou hast said. “Where are you?” asked Wilbur. “Yes?” If then ye were raised together with Christ, seek the things that are above, where Christ is, seated on the right hand of God. but shun foolish questionings, and genealogies, and strifes, and fightings about the law; for they are unprofitable and vain. Be ye imitators of me, even as I also am of Christ. She bent her knees and sank below the water. Now the feast of the Jews, the feast of tabernacles, was at hand. Content to let worrying wait for later. And 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. And 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. But if to live in the flesh,—if this shall bring fruit from my work, then what I shall choose I know not. And 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. Lurvy felt weak. But, because of fornications, let each man have his own wife, and let each woman have her own husband. The phrase that might be used by someone who has never seen a man die is that Perry was dead before he hit the ground. And when the disciples saw him walking on the sea, they were troubled, saying, It is a ghost; and they cried out for fear. Even so did the Lord ordain that they that proclaim the gospel should live of the gospel. and 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. I, though, had spent enough years in these wet woods to know how to do. Some have an acid taste that almost stings our tongues. For they all seek their own, not the things of Jesus Christ. When 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. I will let you have your choice of everything in the trough and I won’t touch a thing until you're through.” “Control myself?” yelled Fern. the clerk said. After that, they sold liquor from their persons, in coat pockets and satchels. And the Pharisees came forth, and began to question with him, seeking of him a sign from heaven, trying him. If he called them gods, unto whom the word of God came (and the scripture cannot be broken), And 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. “Yes,” she replied in her sweet, musical voice, “I always give them an anaesthetic so they won’t feel pain. Charley walked partway to the fire and stopped. Blessed be the Lord, the God of Israel; For he hath visited and wrought redemption for his people, To 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; Then I cooked the quails slow and patient on spits over a fire burned down to red coals. “Is this true?” he asked. And his disciples asked him, saying, Rabbi, who sinned, this man, or his parents, that he should be born blind? The Lord said unto my Lord, Sit thou on my right hand, Till I put thine enemies underneath thy feet? I taught the young clerk minding the till to say, Well, maybe you’d better go back to New Jersey then. Eat grass! For 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. as it is written, There is none righteous, no, not one; And 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. “They say he’s quite a pig.” Now, who was this Sequoyah? my father asks. I guess you're licked, Wilbur. Wilbur heaved a great sigh of relief. It says so, right there in the middle of the web.” “Go along to bed, then,” said Charlotte. Templeton crept into the crate and buried himself in the straw. And 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. For what saith the scripture? And Abraham believed God, and it was reckoned unto him for righteousness. and they bound him, and led him away, and delivered him up to Pilate the governor. And, similarly, we were left with no choice. “Oh, I don’t remember,” said Wilbur. and 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; But 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. Maybe alone. “I’m scared to death,” whispered Mrs. Zuckerman. They climbed round and round on the sac, exploring their new world. Then three more little spiders. By 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. And 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, In the end, Lichen’s people came on down to Wayah with me. And 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. When 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. And a multitude was sitting about him; and they say unto him, Behold, thy mother and thy brethren without seek for thee. He felt that he should make a short speech on this very important occasion. but refuse profane and old wives’ fables. And exercise thyself unto godliness: And the fifth poured out his bowl upon the throne of the beast; and his kingdom was darkened; and they gnawed their tongues for pain, But what went ye out to see? a man clothed in soft raiment? Behold, they that wear soft raiment are in kings’ houses. Both 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. saying, I will declare thy name unto my brethren, In the midst of the congregation will I sing thy praise. there 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. Wherefore that field was called, The field of blood, unto this day. of the teaching of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment. And 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. saying, Sir, we remember that that deceiver said while he was yet alive, After three days I rise again. Then she spoke in a voice so low Wilbur could hardly hear the words. The crickets sang in the grasses. Verily, 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. A hell. have all gifts of healings? do all speak with tongues? do all interpret? who is on the right hand of God, having gone into heaven; angels and authorities and powers being made subject unto him. “I’m up here.” how 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? in stripes, in imprisonments, in tumults, in labors, in watchings, in fastings; They 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. serving the Lord with all lowliness of mind, and with tears, and with trials which befell me by the plots of the Jews; Wherefore God gave them up in the lusts of their hearts unto uncleanness, that their bodies should be dishonored among themselves: There 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. And he would not for a while: but afterward he said within himself, Though I fear not God, nor regard man; Even as the Father hath loved me, I also have loved you: abide ye in my love. And when she knew Peter’s voice, she opened not the gate for joy, but ran in, and told that Peter stood before the gate. And 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. He felt very happy. and they began to salute him, Hail, King of the Jews! Wherefore 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. “This is the most terrible case of injustice I ever heard of.” Paul, an apostle of Christ Jesus according to the commandment of God our Saviour, and Christ Jesus our hope; Back then our mobility was by foot. Then I began to get scared. I went to check on Smith, who had built his own fire. A spider's life can’t help being something of a mess, with all this trapping and eating flies. Then came a quiet morning when Mr. Zuckerman opened a door on the north side. For the first few days of his life, Wilbur was allowed to live in a box near the stove in the kitchen. When Jesus therefore had received the vinegar, he said, It is finished: and he bowed his head, and gave up his spirit. and being in readiness to avenge all disobedience, when your obedience shall be made full. “Isn’t that nice!” The boys sprawled in their uniforms and overcoats on ground cloths waterproofed with wax. Those had been the decisions someone needed to call. But 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, And 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. And 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. “He’s fainted. Who is wise and understanding among you? let him show by his good life his works in meekness of wisdom. But arise, and get thee down, and go with them, nothing doubting: for I have sent them. And 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. Now about that time Herod the king put forth his hands to afflict certain of the church. She walked into the river. “So!” he said, in disgust. Templeton lay back in the straw. Apparently not one of my well-wishers, I said. Our fathers ate the manna in the wilderness; as it is written, He gave them bread out of heaven to eat. Then shall the righteous shine forth as the sun in the kingdom of their Father. He that hath ears, let him hear. And 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. Writing will make us strong. then wherefore gavest thou not my money into the bank, and I at my coming should have required it with interest? And he spake a parable unto them, saying, The ground of a certain rich man brought forth plentifully: Overthrow 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. Or else let these men themselves say what wrong-doing they found when I stood before the council, We sat by the fire in the trading post, and I listened to his story. How far do we have to go? For 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: But 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: “Charlotte what?” asked Wilbur, eagerly. But Judas Iscariot, one of his disciples, that should betray him, saith, For which is easier, to say, Thy sins are forgiven; or to say, Arise, and walk? And 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. But all things when they are reproved are made manifest by the light: for everything that is made manifest is light. And 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. If thou therefore wilt worship before me, it shall all be thine. to the only wise God, through Jesus Christ, to whom be the glory for ever. Amen. “Do you think she'll ever start thinking about something besides pigs and sheep and geese and spiders?” “You mean you eat flies?” gasped Wilbur. Charley and his family fled before us like driven deer or quail flushed to the guns by beaters. And straightway the leprosy departed from him, and he was made clean. But Jesus answered and said unto them, Ye do err, not knowing the scriptures, nor the power of God. And they straightway left the nets, and followed him. And 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, I 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. When I discovered this fact, I brought it up at a dinner. and knowest his will, and approvest the things that are excellent, being instructed out of the law, Believest 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. “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.” or, Who shall descend into the abyss? (that is, to bring Christ up from the dead.) sound speech, that cannot be condemned; that he that is of the contrary part may be ashamed, having no evil thing to say of us. What end does that suggest? ye 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. By 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. Fern knew it was almost suppertime but she couldn’t bear to leave. Now on the morrow, which is the day after the Preparation, the chief priests and the Pharisees were gathered together unto Pilate, Salute Ampliatus my beloved in the Lord. Spiders have to eat, the same as the rest of us.” Heaven and earth shall pass away, but my words shall not pass away. “He’s the rat,” replied Fern. And they passed through Pisidia, and came to Pamphylia. The 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. and thou shalt be blessed; because they have not wherewith to recompense thee: for thou shalt be recompensed in the resurrection of the just. Also, 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. It is for chastening that ye endure; God dealeth with you as with sons; for what son is there whom his father chasteneth not? And 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, to 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. Instantly, 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. And who are you?” and returned from the tomb, and told all these things to the eleven, and to all the rest. And I know that, when I come unto you, I shall come in the fulness of the blessing of Christ. Then, without transition, Charley told how Nancy tailored his pants. “Take that thing out of here!” said Mrs. Zuckerman. “May I have your name?” she asked, politely. XXII. A Warm Wind but thanks be to God, who giveth us the victory through our Lord Jesus Christ. And he said, Who art thou, Lord? And he said, I am Jesus whom thou persecutest: and Paul, as his custom was, went in unto them, and for three sabbath days reasoned with them from the scriptures, For 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, For if we believe that Jesus died and rose again, even so them also that are fallen asleep in Jesus will God bring with him. And 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. “We all do.” I 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. And he laid his hands upon her: and immediately she was made straight, and glorified God. who once was unprofitable to thee, but now is profitable to thee and to me: Some for medicine. They saw no use for writing. Late 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. But 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. Now he spake of Judas the son of Simon Iscariot, for he it was that should betray him, being one of the twelve. And from Miletus he sent to Ephesus, and called to him the elders of the church. I 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. “Yes indeed! And 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. “All right,” he said. And 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. What therefore God hath joined together, let not man put asunder. But ye are they that have continued with me in my temptations; The little boy said, Look at you! And of course Avery was tickled to find himself so wet, and he immediately started to act like a clown. No, I said. One of themselves, a prophet of their own, said, Cretans are always liars, evil beasts, idle gluttons. For 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. The trough tipped up and then came down with a slap. “Bee-bee-bee!” He motioned me away with flicks of his two hands. And ye are puffed up, and did not rather mourn, that he that had done this deed might be taken away from among you. For mine eyes have seen thy salvation, On each web, working busily was one of Charlotte's daughters. But I will come unto you, when I shall have passed through Macedonia; for I pass through Macedonia; Sluggishly it rose to life. And 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. to the end that we should be unto the praise of his glory, we who had before hoped in Christ: But 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. “You’ve got a frog—isn’t that enough?” And whosoever shall compel thee to go one mile, go with him two. “Let the blood rush to your head!” And it came to pass, while they communed and questioned together, that Jesus himself drew near, and went with them. For what? But I say to the unmarried and to widows, It is good for them if they abide even as I. “You don’t know the first thing about egg laying, Wilbur. Behold, I Paul say unto you, that, if ye receive circumcision, Christ will profit you nothing. but the tongue can no man tame; it is a restless evil, it is full of deadly poison. But give for alms those things which are within; and behold, all things are clean unto you. Churning 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. This cousin of hers built a web across a stream. Then 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. But the unclean spirit, when he is gone out of the man, passeth through waterless places, seeking rest, and findeth it not. For if the inheritance is of the law, it is no more of promise: but God hath granted it to Abraham by promise. For I say not this that others may be eased and ye distressed; and after these things he gave them judges until Samuel the prophet. And if indeed they had been mindful of that country from which they went out, they would have had opportunity to return. For I reckon that I am not a whit behind the very chiefest apostles. And 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; “Call up the Zuckermans,” suggested Mrs. Arable to Fern. How could that be right? I talked with seat-fillers in various departments and agencies. And he said unto them, What would ye that I should do for you? inasmuch 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. Mr. 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. who 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. Then—only after the four men began falling, knee joints gone limp—the reports of gunfire arrived across the river where I stood watching. He needed something from me, and I was afraid it might have been absolution. And everywhere good hiding and good hunting. Many 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? Charley moved jittery as a crawfish. Now 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. And if he sin against thee seven times in the day, and seven times turn again to thee, saying, I repent; thou shalt forgive him. And 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. and led him to Annas first; for he was father in law to Caiaphas, who was high priest that year. All the way through, line by line, we laughed like idiots, especially at the conclusion about lips of garnet. The last enemy that shall be abolished is death. But when he saw the multitudes, he was moved with compassion for them, because they were distressed and scattered, as sheep not having a shepherd. An enormous voice over the loudspeaker said: “Attention, please! But all their works they do to be seen of men: for they make broad their phylacteries, and enlarge the borders of their garments, the 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. And 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. And as ye enter into the house, salute it. They just keep trotting back and forth across the bridge thinking there is something better on the other side. But Jesus answered them, My Father worketh even until now, and I work. “Day is almost here,” he thought. “What?” said Wilbur. They had spread themselves up each slope of the cove and came on relentlessly, driving Charley’s people forward. I 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. So that they are no more two, but one flesh. What therefore God hath joined together, let not man put asunder. In his humiliation his judgment was taken away: His generation who shall declare? For his life is taken from the earth. may be strong to apprehend with all the saints what is the breadth and length and height and depth, But 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. And they arrived at the country of the Gerasenes, which is over against Galilee. and last of all, as to the child untimely born, he appeared to me also. Of the Jews five times received I forty stripes save one. He straightened his whiskers. But Saul, who is also called Paul, filled with the Holy Spirit, fastened his eyes on him, The other three boys were farther back in the woods, sitting with their muskets beside them. Who cares anything about old Templeton?” But 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: It 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! As therefore ye received Christ Jesus the Lord, so walk in him, And 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: The little apple tree said, You have cared for me and loved me. He was in the world, and the world was made through him, and the world knew him not. A bold creek cutting through the middle of the farm, running clear over mossy stones. Honor thy father and mother (which is the first commandment with promise), Smith 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. Well, fewer of us than that. that the creation itself also shall be delivered from the bondage of corruption into the liberty of the glory of the children of God. Verily, verily, I say unto you, If a man keep my word, he shall never see death. how 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. Now that I know where you are, I will come back and visit you. And I was alive apart from the law once: but when the commandment came, sin revived, and I died; Give diligence to present thyself approved unto God, a workman that needeth not to be ashamed, handling aright the word of truth. How long does it take a goose egg to hatch?” for he that giveth him greeting partaketh in his evil works. The Fair is almost over. But Jesus did not trust himself unto them, for that he knew all men, Let all that ye do be done in love. even as the Father knoweth me, and I know the Father; and I lay down my life for the sheep. Avery carried a live frog in his hand. If 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. And 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. (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.) “Salutations!” it said. though he was a Son, yet learned obedience by the things which he suffered; And they that were sent, returning to the house, found the servant whole. I am the bread of life. Hold the pattern of sound words which thou hast heard from me, in faith and love which is in Christ Jesus. And when his audience grew bored, he would spring into the air and do a back flip with a half twist. I 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. Of course you will. Usually he slept during the daytime and was abroad only after dark. For 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. And they cast him forth out of the vineyard, and killed him. What therefore will the lord of the vineyard do unto them? God is a Spirit: and they that worship him must worship in spirit and truth. He hath showed strength with his arm; He hath scattered the proud in the imagination of their heart. to 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. He waved to them with his fin and swam on. And there were gathered unto him great multitudes, so that he entered into a boat, and sat; and all the multitude stood on the beach. For 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. Avery crawled out of the crate on hands and knees, making faces at Wilbur. It 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. What doth it profit, my brethren, if a man say he hath faith, but have not works? can that faith save him? And 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. That would put ideas into his head. It smelled of hay and it smelled of manure. But should we say, From men—they feared the people: for all verily held John to be a prophet. if 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. Jesus therefore said unto them again, Verily, verily, I say unto you, I am the door of the sheep. I took just a little of it in a tin cup, and mostly sat drinking coffee and enjoyed watching the people eat. The 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. who both killed the Lord Jesus and the prophets, and drove out us, and please not God, and are contrary to all men; Then shall the righteous answer him, saying, Lord, when saw we thee hungry, and fed thee? or athirst, and gave thee drink? And when he had said these words, the Jews departed, and had great reasoning among themselves. and if Satan casteth out Satan, he is divided against himself; how then shall his kingdom stand? He heard them wheeze in their effort. He boiled creek water in a kettle and set it off the fire and steeped rounds cut from a piece of ginseng root. Charlotte's children were here at last. and they gave them for the potter’s field, as the Lord appointed me. Templeton was nowhere to be seen. I desire therefore that the younger widows marry, bear children, rule the household, give no occasion to the adversary for reviling: When 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. And Wilbur was crying again, for the second time in two days. It went round and round in the sky and seemed twice as high as by day. And these all, having had witness borne to them through their faith, received not the promise, or 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. but ye are come unto mount Zion, and unto the city of the living God, the heavenly Jerusalem, and to innumerable hosts of angels, Charley placed both hands in leverage against the place where his knee joined his thighbone. But 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? And that servant, who knew his lord’s will, and made not ready, nor did according to his will, shall be beaten with many stripes; “Fern says the animals talk to each other. And there arose also a contention among them, which of them was accounted to be greatest. and 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. the 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. I 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. And she, being put forward by her mother, saith, Give me here on a platter the head of John the Baptist. “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. And when he had thus spoken, he kneeled down and prayed with them all. And they cast out many demons, and anointed with oil many that were sick, and healed them. So 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. Poor Wilbur was dazed and frightened by this hullabaloo. “Too many things on my mind,” said Wilbur. “Let him die, said the rat. “I am an old friend of your mother’s,” said Wilbur. You will find that the conditions at a fair will surpass your wildest dreams. The boy was so proud. Lurvy picked up a pitchfork and walked away to get some clean straw. Now it was the Preparation of the passover: it was about the sixth hour. And he saith unto the Jews, Behold, your King! Fight 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. It perched on a tree and sang out “un, un, un”. When she returned, she wore rubber boots and an old raincoat, and she carried a bucket of buttermilk and a small wooden paddle. And 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. See 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. And he entered into the temple, and began to cast out them that sold, “Bee-bee-bee!” Clattering silver service, footed trays and platters, tiny salt bowls, and endless flatware. For I am already being offered, and the time of my departure is come. And 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, The Cherokee Nation praised the writing Sequoyah invented. It's very small and weak, and it will never amount to anything. Now 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. “Reconsider, reconsider!” cried the goose. For if ye believed Moses, ye would believe me; for he wrote of me. Even 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. he that saith he abideth in him ought himself also to walk even as he walked. “It’s about Fern,” she explained. “I just don’t have much pep any more. I guessI feel sad because I won’t ever see my children.” I 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. “But, my friends, if that ancient egg ever breaks, this barn will be untenable.” but 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: and that repentance and remission of sins should be preached in his name unto all the nations, beginning from Jerusalem. And 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? “Well,” replied Charlotte, “you must try to build yourself up. And again he stooped down, and with his finger wrote on the ground. “So am I,” said a third voice. “Ladeez and gentlemen,” continued the loud speaker, “I must not take any more of your valuable time. be 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. And I exhort you the more exceedingly to do this, that I may be restored to you the sooner. He saw her up overhead in a corner near the back of his pen. There were several children, all wakening and hungry and crying. In the horse barn you will find oats that the trotters and pacers have spilled. Nobody realized that the crate already contained a rat and a spider. And the high priest rent his clothes, and saith, What further need have we of witnesses? Families had staked out futile claims to a place on earth by spreading blankets on the ground. For 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. and 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. for 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. Oh, no. saying unto them, It is written, And my house shall be a house of prayer: but ye have made it a den of robbers. for 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. And 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. It seemed to me that onanists must feel the same way. Not happy if they are unable to practice their special art daily. But 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. For 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. And 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. So Charlotte told him about another cousin of hers who was an aeronaut. Wilbur’s heart brimmed with happiness. But 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. And 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. Therefore 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. who shall not receive manifold more in this time, and in the world to come eternal life. For this is a word of promise, According to this season will I come, and Sarah shall have a son. He that reapeth receiveth wages, and gathereth fruit unto life eternal; that he that soweth and he that reapeth may rejoice together. But 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! And he called to him one of the servants, and inquired what these things might be. Then eight. Then ten. Charley still sat, breathing deep. who was faithful to him that appointed him, as also was Moses in all his house. The disciples therefore said unto him, Lord, if he is fallen asleep, he will recover. And 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, If any man destroyeth the temple of God, him shall God destroy; for the temple of God is holy, and such are ye. Lieutenant 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. Gaius my host, and of the whole church, saluteth you. Erastus the treasurer of the city saluteth you, and Quartus the brother. I have responsibilities. It resumes its inner life and allows you to see it. And 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. And 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. forsaking the right way, they went astray, having followed the way of Balaam the son of Beor, who loved the hire of wrong-doing; Glad to have met you, and now I must be going. Green Corn Moon, the weeks leading up to the summer solstice, had long been one of my favorite stretches of time. Bear looked so old, everything about him drawn smaller except his knobby fingers. And they blindfolded him, and asked him, saying, Prophesy: who is he that struck thee? The minister explained the miracle. Now! You still have two feet, said Rabbit. But I said unto you, that ye have seen me, and yet believe not. But it is good to be zealously sought in a good matter at all times, and not only when I am present with you. “You almost never leave your web.” and killed the Prince of life; whom God raised from the dead; whereof we are witnesses. He 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. Days on the stage to the railhead. And they, when they came to Jesus, besought him earnestly, saying, He is worthy that thou shouldest do this for him; Wolf still pretends he knows everything. The sheep loathed them. And whoso shall receive one such little child in my name receiveth me: Are you a spring pig?” Then all those virgins arose, and trimmed their lamps. The air was now so full of balloonists that the barn cellar looked almost as though a mist had gathered. Templeton and I must get in the crate right now and hide ourselves.” But we are not of them that shrink back unto perdition; but of them that have faith unto the saving of the soul. Do I speak these things after the manner of men? or saith not the law also the same? Then they would move on to the next pen where the bigger pig lay. according 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. that no flesh should glory before God. And Jesus with his disciples withdrew to the sea: and a great multitude from Galilee followed; and from Judæa, It 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. I 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. but unto them that are called, both Jews and Greeks, Christ the power of God, and the wisdom of God. Where you’re going. That 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. So 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. and when the ship was caught, and could not face the wind, we gave way to it, and were driven. And after these things he went forth, and beheld a publican, named Levi, sitting at the place of toll, and said unto him, Follow me. The truck backed slowly to the pigpen and stopped. There then because of the Jews’ Preparation (for the tomb was nigh at hand) they laid Jesus. I don’t seem to have the energy I once had. It sounded rather thin, but pleasant. You’re no bundle of sweet peas yourself. As thou didst send me into the world, even so sent I them into the world. Thrashing through newly fallen leaves that lay knee-deep on the legs of the younger fugitives. For 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. having foreordained us unto adoption as sons through Jesus Christ unto himself, according to the good pleasure of his will, And Pilate again asked him, saying, Answerest thou nothing? behold how many things they accuse thee of. For he is our peace, who made both one, and brake down the middle wall of partition, Now stop arguing and go get some sleep. The 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 ... A heavy fur for the children to sleep beneath when snow comes. At nine o'clock, Mr. Arable’s truck rolled into the Fair Grounds and came to a stop at Wilbur’s pen. If 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. So 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. The stunned look on his face suggested that his imprisonment had come as a surprise to him. And 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, “You know,” he said, in an important voice, “I’ve thought all along that that pig of ours was an extra good one. And reckonest thou this, O man, who judgest them that practise such things, and doest the same, that thou shalt escape the judgment of God? But 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. And if Christ is in you, the body is dead because of sin; but the spirit is life because of righteousness. saying, 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. For 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. I'm too pretty as you know. And when he came upon the stairs, so it was that he was borne of the soldiers for the violence of the crowd; Here he comes now. And they come unto Bethsaida. And they bring to him a blind man, and beseech him to touch him. Every morning, as soon as she got up, she warmed his milk, tied his bib on, and held the bottle for him. Washington 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. For it seemed good to the Holy Spirit, and to us, to lay upon you no greater burden than these necessary things: All the saints salute you, especially they that are of Cæsar’s household. The current is strong and you may be pulled down into the hole! but 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. And while he said these things, there came a cloud, and overshadowed them: and they feared as they entered into the cloud. The Harvest Moon arrived like it intended to be about the same. Others said, This is the Christ. But some said, What, doth the Christ come out of Galilee? So they took the body of Jesus, and bound it in linen cloths with the spices, as the custom of the Jews is to bury. Then he got into his car and drove to the minister’s house. How do I start?” And they said unto her, Thou art mad. But she confidently affirmed that it was even so. And they said, It is his angel. Her red blood. And who is he that overcometh the world, but he that believeth that Jesus is the Son of God? And the servant said, Lord, what thou didst command is done, and yet there is room. Her eight legs were very busy helping. Why did I let myself in for this?” “Oh, yes, she’s always hungry.” There was an awful lot of blood in the brown leaves, and the men with the hatchets turned in Smith’s direction. for ye were bought with a price: glorify God therefore in your body. And he came again and found them sleeping, for their eyes were heavy. And they did so, and made them all sit down. “I was just thinking,” said the spider, “that people are very gullible.” And 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. Whosoever hateth his brother is a murderer: and ye know that no murderer hath eternal life abiding in him. Skim 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. “How many nights till frost?” sang the crickets. Therefore said his parents, He is of age; ask him. They say ‘deganiyitsa,’ or ‘danisintanv’ - But others said, It is Elijah. And others said, It is a prophet, even as one of the prophets. I 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. She was dying, but she still had strength enough to move a little. And more was what the situation called for. and 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. “When I’m out here,” he said, “there’s no place to go but in. But younger widows refuse: for when they have waxed wanton against Christ, they desire to marry; Day after day the spider waited, head-down, for an idea to come to her. And 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. It's also the dirtiest trick I ever heard of. For he knew him that should betray him; therefore said he, Ye are not all clean. A thin brown dog rose stiffly and stretched and circled and then moved a few inches closer to the blaze. I would say, offhand, that spiders and pigs were fully as interesting as Henry Fussy. And 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. We like this place, and we like you. And he measured the wall thereof, a hundred and forty and four cubits, according to the measure of a man, that is, of an angel. For where your treasure is, there will your heart be also. when John had first preached before his coming the baptism of repentance to all the people of Israel. Wherefore ye must needs be in subjection, not only because of the wrath, but also for conscience’ sake. And 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. She shut her eyes tight and jumped. If 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. I thank my God always concerning you, for the grace of God which was given you in Christ Jesus; And 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. And 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. lie not one to another; seeing that ye have put off the old man with his doings, For many are called, but few chosen. Truth be told, it was my own racquet. The brown chickens gathered and so did wild mourning doves. He had tunnels and runways all over Mr. Zuckerman’s farm and could get from one place to another without being seen. Else 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? Apple blossoms come with the lilacs, and the bees visit around among the apple trees. The harder the men pushed, the harder he held back. Wherefore 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, Pilate 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: And 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. And when the day of Pentecost was now come, they were all together in one place. Martha therefore said unto Jesus, Lord, if thou hadst been here, my brother had not died. And they besought him, saying, Send us into the swine, that we may enter into them. Have we no right to eat and to drink? but that we write unto them, that they abstain from the pollutions of idols, and from fornication, and from what is strangled, and from blood. and to make all men see what is the dispensation of the mystery which for ages hath been hid in God who created all things; Still not learning, thought Rabbit. We 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. He did not like being treated like a messenger boy. Though Lowan and Jake and George hunted daily, they had failed to kill a deer for the better part of a month. and 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. Skip and dance, jump and prance! For John indeed baptized with water; but ye shall be baptized in the Holy Spirit not many days hence. God forbid: for then how shall God judge the world? Faithful is he that calleth you, who will also do it. And the old sheep was right—the friend was still asleep. ever learning, and never able to come to the knowledge of the truth. And now why tarriest thou? arise, and be baptized, and wash away thy sins, calling on his name. whatsoever ye do, work heartily, as unto the Lord, and not unto men; “Wash your hands and face, Avery!” He 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. For he hath said somewhere of the seventh day on this wise, And God rested on the seventh day from all his works; A good tree cannot bring forth evil fruit, neither can a corrupt tree bring forth good fruit. Finally, brethren, pray for us, that the word of the Lord may run and be glorified, even as also it is with you; They say unto him, Because no man hath hired us. He saith unto them, Go ye also into the vineyard. For this cause shall a man leave his father and mother, and shall cleave to his wife; Simon 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: but 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. The goose took command and began to give orders. Then certain of the scribes and Pharisees answered him, saying, Teacher, we would see a sign from thee. In the Fall Spearfinger would watch for the smoke to rise above the trees. “Do you want a friend, Wilbur?” it said. I looked over, and the clerk had tears of joy in his eyes and a look of rapture beaming on his face. But he, desiring to justify himself, said unto Jesus, And who is my neighbor? But just call me Charlotte.” And this was his own country. For 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. And the way of peace have they not known: Charley 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. And 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. Now 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, but without thy mind I would do nothing; that thy goodness should not be as of necessity, but of free will. This is a tree. Jesus said unto them, Verily, verily, I say unto you, Before Abraham was born, I am. He 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. Soldiers stood Charley and the boys up and walked them out near the riverbank and left them standing there in some confusion. Remember 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. Come unto me, all ye that labor and are heavy laden, and I will give you rest. And 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. Finally, 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. but he left the linen cloth, and fled naked. When 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. he 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. Others 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. And 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. Smith, of course, wanted to assign watches through the night. and might deliver all them who through fear of death were all their lifetime subject to bondage. saying, I have sinned in that I betrayed innocent blood. But they said, What is that to us? see thou to it. But be ye doers of the word, and not hearers only, deluding your own selves. But the chief priests took counsel that they might put Lazarus also to death; And they laid hands on him, and took him. It had rained since dawn, rain falling white against the trees. And when they were filled, he saith unto his disciples, Gather up the broken pieces which remain over, that nothing be lost. Simon, Simon, behold, Satan asked to have you, that he might sift you as wheat: if by any means I may attain unto the resurrection from the dead. And 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. And they said, The Lord hath need of him. Having confidence in thine obedience I write unto thee, knowing that thou wilt do even beyond what I say. But it had the advantage of belonging neither to the Nation nor to any whiteman. It was on paper under his name. Jesus 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. XVII: Uncle Whosoever abideth in him sinneth not: whosoever sinneth hath not seen him, neither knoweth him. There is therefore now no condemnation to them that are in Christ Jesus. If 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. He brushed his hand across his eyes and stared harder at Charlotte’s web. For this cause many among you are weak and sickly, and not a few sleep. And 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. I 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. Can’t you just see the web, sagging dangerously under the weight of the fish? The same was well reported of by the brethren that were at Lystra and Iconium. “Alone? If she says they plan to kill you, I’m sure it’s true. When Asmeret Asefaw Berhe goes for a walk in the woods, she looks at all these things. and Hezekiah begat Manasseh; and Manasseh begat Amon; and Amon begat Josiah; But he that glorieth, let him glory in the Lord. Pretty 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. For narrow is the gate, and straitened the way, that leadeth unto life, and few are they that find it. This only would I learn from you, Received ye the Spirit by the works of the law, or by the hearing of faith? Winter will pass, the days will lengthen, the ice will melt in the pasture pond. “Fern,” he said gently, “you will have to learn to control yourself.” For 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. Going west, I said. A long way. And 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, And he answered and said, He that soweth the good seed is the Son of man; His spit turned to mucilage, tongue stuck to the roof of his drying mouth. Jesus therefore, knowing all the things that were coming upon him, went forth, and saith unto them, Whom seek ye? It didn't seem to be a very good day she thought. See with how large letters I write unto you with mine own hand. And 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. And again he came, and found them sleeping, for their eyes were very heavy; and they knew not what to answer him. And 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. Lurvy pointed to the spider's web. And he said unto them, Wheresoever ye enter into a house, there abide till ye depart thence. The officers therefore came to the chief priests and Pharisees; and they said unto them, Why did ye not bring him? This persuasion came not of him that calleth you. “Watch out for the dog!” cried the sheep. People who had journeyed to see Wilbur when he was “some pig” came back again to see him now that he was “terrific.” Howbeit at that time, not knowing God, ye were in bondage to them that by nature are no gods: But he that is greatest among you shall be your servant. But behold, the hand of him that betrayeth me is with me on the table. So the entire tally of electors is one? Arise, let us be going: behold, he is at hand that betrayeth me. We 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: Fern 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. “Die of a broken heart,” he mimicked. For whosoever would save his life shall lose it: and whosoever shall lose his life for my sake shall find it. But the boy drove a blade deep in the bear’s vitals. no 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. And after they had held their peace, James answered, saying, Brethren, hearken unto me: “I believe what I need is a little piece of string to hold me.” It covered house and barn and fields and woods. “I’m going to win a doll by spinning a wheel and it will stop at the right number,” said Fern. Wilbur closed his eyes. The Jews therefore murmured concerning him, because he said, I am the bread which came down out of heaven. Ye therefore shall be perfect, as your heavenly Father is perfect. We should teach him a lesson, the neighbors hooted. “Yes, but I’m near-sighted,” replied Charlotte. Pig’s out! Every 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. to do whatsoever thy hand and thy council foreordained to come to pass. Ones with payments and ones without. I 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. You’re making this up.” And Jesus came to them and spake unto them, saying, All authority hath been given unto me in heaven and on earth. Once again the boy went to the tree. And when the men of that place knew him, they sent into all that region round about, and brought unto him all that were sick; Howbeit what things were gain to me, these have I counted loss for Christ. And he said unto me, Depart: for I will send thee forth far hence unto the Gentiles. People sat far back from the flames and were only dark shapes. The hunters backed away and raised their muskets. The blackberries got ripe, and Mrs. Zuckerman failed to put up any blackberry jam. and said, Behold, I see the heavens opened, and the Son of man standing on the right hand of God. And 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? “He is not,” said Avery. And there came unto him Pharisees, and asked him, Is it lawful for a man to put away his wife? trying him. They had survived beyond fright into glazed and fatal blankness. And Jesus saith unto her, Woman, what have I to do with thee? mine hour is not yet come. and 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; Nevertheless in this rejoice not, that the spirits are subject unto you; but rejoice that your names are written in heaven. I met Crockett through the agency of Calhoun. Crockett was then at the height of his fame, at least pre-posthumously. And after six days Jesus taketh with him Peter, and James, and John his brother, and bringeth them up into a high mountain apart: He scooped up his frog. “Say it slower!” Now I found the woods narcotic. For neither doth the Father judge any man, but he hath given all judgment unto the Son; Hearken, 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? And 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; Really it must have been close to a mile out, there was a big field. Therefore is the kingdom of heaven likened unto a certain king, who would make a reckoning with his servants. For every creature of God is good, and nothing is to be rejected, if it be received with thanksgiving: Now if Timothy come, see that he be with you without fear; for he worketh the work of the Lord, as I also do: “Liver, I eat... su sa sai” They knew she would come as soon as she saw the smoke. “Templeton?” But Peter said unto him, Although all shall be offended, yet will not I. He 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. And the disciples, every man according to his ability, determined to send relief unto the brethren that dwelt in Judæa: Epaphras, my fellow-prisoner in Christ Jesus, saluteth thee; While 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? And in praying use not vain repetitions, as the Gentiles do: for they think that they shall be heard for their much speaking. He sat without a word for a long time and smoked a long-stemmed clay pipe down to ash. for 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. “You sound like three ganders,” muttered Charlotte. Nevertheless do ye also severally love each one his own wife even as himself; and let the wife see that she fear her husband. And 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. Lunch would be over at one. But 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. For the Son of man is lord of the sabbath. This might be the end of Charlotte if the boy succeeded in catching her. Now 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. They 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. “Watch out for pickpockets! ” cautioned their father. And 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; Or what man is there of you, who, if his son shall ask him for a loaf, will give him a stone; The truck crept along slowly in low speed. Goodbye mother, I love you. Unfortunately, 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. The kingdom of heaven is likened unto a certain king, who made a marriage feast for his son, For if they that are of the law are heirs, faith is made void, and the promise is made of none effect: And no man having drunk old wine desireth new; for he saith, The old is good. It came from the name of a Cherokee Indian man who was alive when the United States was new. For 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, whose 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. “No, I’m not. I counted them. And he ran on before, and climbed up into a sycomore tree to see him: for he was to pass that way. And it had been revealed unto him by the Holy Spirit, that he should not see death, before he had seen the Lord’s Christ. “He isn’t dead,” hollered Zuckerman. He therefore that sweareth by the altar, sweareth by it, and by all things thereon. “Well,” said Mrs. Zuckerman, “it seems to me you're a little off. It seems to me we have no ordinary spider.” Jesus 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? Put your marks where I say. And there was war in heaven: Michael and his angels going forth to war with the dragon; and the dragon warred and his angels; But 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. Whosoever is begotten of God doeth no sin, because his seed abideth in him: and he cannot sin, because he is begotten of God. It was still only about four o'clock but Wilbur was ready for bed. and when the sun was risen, it was scorched; and because it had no root, it withered away. Wherever she went during the day, all traffic, both pedestrian and vehicular, came to a halt to watch her pass. Everything displaced, unfamiliar. Charlotte laughed so hard her web began to sway. whereas our comely parts have no need: but God tempered the body together, giving more abundant honor to that part which lacked; And he took them the same hour of the night, and washed their stripes; and was baptized, he and all his, immediately. Wilbur liked Charlotte better and better each day. If 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. “Your Uncle Homer sometimes raises a pig. “Coasting is the most fun there is,” said Avery. What I tell you in the darkness, speak ye in the light; and what ye hear in the ear, proclaim upon the house-tops. He’s down there under that apple tree.” Charley reckoned his tools might suffice to kill this bear. And they spat upon him, and took the reed and smote him on the head. Fern and Avery were in bed by eight. My attention was drawn to a dish of fig pastries, each no bigger around than a gold dollar. I therefore so run, as not uncertainly; so fight I, as not beating the air: Really?” cried Wilbur. And no one was able to answer him a word, neither durst any man from that day forth ask him any more questions. Voices were raised and lowered and raised again, though I could not make out a word of what passed down below me. They 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. And after the carrying away to Babylon, Jechoniah begat Shealtiel; and Shealtiel begat Zerubbabel; And he opened his mouth for blasphemies against God, to blaspheme his name, and his tabernacle, even them that dwell in the heaven. And he that hath seen hath borne witness, and his witness is true: and he knoweth that he saith true, that ye also may believe. and they shall kill him, and the third day he shall be raised up. And they were exceeding sorry. He might not be exactly what you think he is. Let each one of us please his neighbor for that which is good, unto edifying. and in your knowledge self-control; and in your self-control patience; and in your patience godliness; For after this manner aforetime the holy women also, who hoped in God, adorned themselves, being in subjection to their own husbands: The tunnel enabled him to get from the barn to his hiding place under the pig trough without coming out into the open. And 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. As she walked away, Wilbur saw a new lamb following her. “A fair is a rat’s paradise. but, when he was in Rome, he sought me diligently, and found me Templeton grinned. Loopholes opened high in the walls, which suggested the existence of banquettes inside to stand on and move from one loop to another to fire. After dark, he ventured to strike a little fire no bigger around than the mouth to a bucket. He stayed for an hour and explained to the minister that a miracle had happened on the farm. in 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. who found favor in the sight of God, and asked to find a habitation for the God of Jacob. Charley nodded to Nancy. Then one of the twelve, who was called Judas Iscariot, went unto the chief priests, For this cause shall a man leave his father and mother, and shall cleave to his wife; and the two shall become one flesh. Best how? the purser said. “Some pigs were born last night.” She never moved again. Brethren, children of the stock of Abraham, and those among you that fear God, to us is the word of this salvation sent forth. Perhaps we might, I said. He wiggled his feet down at the bottom of the chaise to highlight them. And Mary said unto the angel, How shall this be, seeing I know not a man? And another of the disciples said unto him, Lord, suffer me first to go and bury my father. The air smelled of the damp earth, of the spruce woods, of the sweet springtime. But though he had done so many signs before them, yet they believed not on him: “One of the boards is loose. By faith Abraham, being tried, offered up Isaac: yea, he that had gladly received the promises was offering up his only begotten son; And he took a cup, and when he had given thanks, he gave to them: and they all drank of it. Mrs. Zuckerman and Mrs. Arable stood on the running board of the truck. and 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. Grace be with you all. Amen. And 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. but 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. Then she opened them up and ate their livers. And 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. These things command and teach. Don’t fall for it, don’t fall for it! And when Moses saw it, he wondered at the sight: and as he drew near to behold, there came a voice of the Lord, But 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. They live on animals and plants. For such a high priest became us, holy, guileless, undefiled, separated from sinners, and made higher than the heavens; But 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. But 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. And 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. And fear took hold on all: and they glorified God, saying, A great prophet is arisen among us: and, God hath visited his people. For they that have served well as deacons gain to themselves a good standing, and great boldness in the faith which is in Christ Jesus. So that’s what happened to me one time. And they were not able to take hold of the saying before the people: and they marvelled at his answer, and held their peace. And her spirit returned, and she rose up immediately: and he commanded that something be given her to eat. Wolf's feet were really hurting. and it came to pass, as he sowed, some seed fell by the way side, and the birds came and devoured it. came unto me, and standing by me said unto me, Brother Saul, receive thy sight. And in that very hour I looked up on him. “She’s Wilbur’s best friend. Jesus answered, Verily, verily, I say unto thee, Except one be born of water and the Spirit, he cannot enter into the kingdom of God. And the disciples went forth, and came into the city, and found as he had said unto them: and they made ready the passover. A round brown woman of indeterminate race opened the door. When they were done, Wolf sat down. Avery knelt in the dirt by Wilbur’s side, busily stroking him and showing off. Dozens of people had visited his yard during the afternoon, and he had had to stand and pose, looking as terrific as he could. Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak. The word bleak would pretty well describe every element of those footslogging days. Don't swim there Littlefish; you are beneath us and too small to see. We may squash you. “We're staying quietly—ietly-ietly at home. And what about any other fugitives hiding up in the mountains? Avery was kneeling by Wilbur’s head, stroking him. and 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. We 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. For first of all, when ye come together in the church, I hear that divisions exist among you; and I partly believe it. “It says ‘Crunchy.’ Down in the barn cellar, the animals, too, went to sleep early, all except Charlotte. Everybody 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. Still a few days later the boy found the little apple tree sad and droopy. “Will the party who addressed me at bedtime last night kindly make himself or herself known by giving an appropriate sign or signal!” and 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. And 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: “Bring me back a word!” Charlotte called after him. but (which becometh women professing godliness) through good works. I soon learned that the public galleries of the Senate chamber were an excellent place to meet ladies, both young and youngish. Him therefore I hope to send forthwith, so soon as I shall see how it will go with me: Jesus 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. I tell you, Nay: but, except ye repent, ye shall all likewise perish. No 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. “That’s some pig!” said Mrs. Arable. For 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. “Will you please play with me?” he asked. “Be quiet, Wilbur. but ye know that because of an infirmity of the flesh I preached the gospel unto you the first time: Wilbur sat bolt upright. “Is this true?” asked the rat, eyeing the sac suspiciously. And the merchants of the earth weep and mourn over her, for no man buyeth their merchandise any more; And 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. “Hmm. Remarkable. “I think about it all the time,” said Fern, picking snow from her ear. The kings of the earth set themselves in array, And the rulers were gathered together, Against the Lord, and against his Anointed: For 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. And 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. I notice that it’s always me you come to when in trouble. And when Herod the king heard it, he was troubled, and all Jerusalem with him. Now while the Pharisees were gathered together, Jesus asked them a question, But 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. And you, being in time past alienated and enemies in your mind in your evil works, “Is it something for me?” asked Wilbur. Be ye also ready: for in an hour that ye think not the Son of man cometh. And 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; If 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. And after the sop, then entered Satan into him. Jesus therefore saith unto him, What thou doest, do quickly. And 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. So speak ye, and so do, as men that are to be judged by a law of liberty. For Adam was first formed, then Eve; But he couldn’t resist boasting. beholding your chaste behavior coupled with fear. But all this is come to pass, that the scriptures of the prophets might be fulfilled. Then all the disciples left him, and fled. Think not that I came to destroy the law or the prophets: I came not to destroy, but to fulfil. Now 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, “I’m done for,” she replied. And when they were come to the multitude, there came to him a man, kneeling to him, and saying, And 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. “I don’t want to die,” he moaned. She loved to weave and she was an expert at it. And 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. I soon moved to the famous Indian Queen, even though I could not really afford my long stay there. He 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. For 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; And 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. To ask if there is some mistake. And 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; Down along the coast, everything smelled of fish and salt water. No 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. The 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. For both he that sanctifieth and they that are sanctified are all of one: for which cause he is not ashamed to call them brethren, insomuch 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. And 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. And when they saw it, they made known concerning the saying which was spoken to them about this child. and a man’s foes shall be they of his own household. The wind howled out of the northwest and carried the winter’s first pellets of snow. Tears came to Fern’s eyes. and will turn away their ears from the truth, and turn aside unto fables. Sanctify them in the truth: thy word is truth. And 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. Upon this many of his disciples went back, and walked no more with him. who in the generations gone by suffered all the nations to walk in their own ways. And 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. saying, The Lord is risen indeed, and hath appeared to Simon. because we would fain have come unto you, I Paul once and again; and Satan hindered us. thou that sayest a man should not commit adultery, dost thou commit adultery? thou that abhorrest idols, dost thou rob temples? And they communed with each other of all these things which had happened. Watch me wrap up this fly.” And 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. The sheep stayed near the barn, too, for protection. For 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. Sequoyah, they say, gave up drawing a different symbol for each word. There were just too many marks and squiggles for anyone to remember. Lieutenant Smith was left sitting with a flat inch of Moët’s in his flute. for he had an only daughter, about twelve years of age, and she was dying. But as he went the multitudes thronged him. Or are ye ignorant that all we who were baptized into Christ Jesus were baptized into his death? From the far mountains. An orphan adopted by an Indian chief. “How?” asked Wilbur. It left a shining trail across the desk like a slug’s passage. “Delicious. Him God raised up the third day, and gave him to be made manifest, And 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. For a while the long glossy leaves turned water away from him, and then suddenly they did not. All the brethren salute you. Salute one another with a holy kiss. “It's terribly hot,” said Mrs. Arable, fanning herself with an advertisement of a deep freeze. A 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. And he was parted from them about a stone’s cast; and he kneeled down and prayed, He 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? I sat by the fire and told the story that everyone already knew. Then he could see the sheep and the lambs. “Can I, too?” asked Avery. For a testament is of force where there hath been death: for it doth never avail while he that made it liveth. And ye have not his word abiding in you: for whom he sent, him ye believe not. Claire bending her head and her hair falling over her face like drawing curtains across a bright window. and he beholdeth the heaven opened, and a certain vessel descending, as it were a great sheet, let down by four corners upon the earth: And 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. Everywhere 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. But Saul increased the more in strength, and confounded the Jews that dwelt at Damascus, proving that this is the Christ. Life in the barn was very good — night and day, winter and summer, spring and fall, dull days and bright days. You’re carrying on in a childish way. Avery had a balloon tied to his ear and was chewing a candied apple. And 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. Everybody knew that the Zuckermans had a wondrous pig. And as Jesus passed by from thence, two blind men followed him, crying out, and saying, Have mercy on us, thou son of David. and with all deceit of unrighteousness for them that perish; because they received not the love of the truth, that they might be saved. and above all these things put on love, which is the bond of perfectness. And they stoned Stephen, calling upon the Lord, and saying, Lord Jesus, receive my spirit. I can only see one.” But 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. For where two or three are gathered together in my name, there am I in the midst of them. And in the hearing of all the people he said unto his disciples, Their feet are swift to shed blood; Lobbying must have seemed a little too much like real work, though I could have set him straight on that fear. and 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. to 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, Look therefore carefully how ye walk, not as unwise, but as wise; I could hardly sleep for fear of missing something. For they had before seen with him in the city Trophimus the Ephesian, whom they supposed that Paul had brought into the temple. And Jesus said unto him, Why callest thou me good? none is good save one, even God. Avery had finished and was upstairs looking for his slingshot. Yeah, she probably would have. “Don’t tell anybody else,” said the minister. But 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. Then cometh Jesus with them unto a place called Gethsemane, and saith unto his disciples, Sit ye here, while I go yonder and pray. Wilbur and the sheep and the lambs and the goose and the gander and the goslings and Charlotte and me.” The rat yawned. And 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. They 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. By faith the walls of Jericho fell down, after they had been compassed about for seven days. “Avery, you get out of that crate this instant!” commanded his mother. I’ve never done anything for you.” High, low. Near, far. whereby, when ye read, ye can perceive my understanding in the mystery of Christ; “Well, break it up! said Templeton. Somewhere deep in their minds, they both imagined a future in which the Nation would become a state, a new star on the striped banner. And Jesus answered and said unto him, It is written, Thou shalt worship the Lord thy God, and him only shalt thou serve. And then, if we are not weaklings, we have to take possession of our old madness and try to soothe its issue. Again 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. When therefore the Lord knew that the Pharisees had heard that Jesus was making and baptizing more disciples than John and 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: These things said Isaiah, because he saw his glory; and he spake of him. Bear ye one another’s burdens, and so fulfil the law of Christ. I regretted the comment as soon as it fell from my mouth. “And a fair is a good place to start, I guess.” The 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. Everybody lined up at the fence and stood for a moment admiring Wilbur and the beautiful green crate. And then shall many stumble, and shall deliver up one another, and shall hate one another. All winter Wilbur watched over Charlotte’s egg sac as though he were guarding his own children. nor yet that he should offer himself often, as the high priest entereth into the holy place year by year with blood not his own; And all the people came early in the morning to him in the temple, to hear him. And he was three days without sight, and did neither eat nor drink. It seemed as though everybody was after him. The pig walked out to his yard. So 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. For 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. But 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. He sat on a big downed log with a raucous group of old men drinking from a shared bottle. Then where we going? He waited by the tree until dawn for the outcome to his prayer. He 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. And the scribes and the Pharisees bring a woman taken in adultery; and having set her in the midst, but in every nation he that feareth him, and worketh righteousness, is acceptable to him. And a man cannot crawl under a rock and disappear. Now 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; and he shall say, I tell you, I know not whence ye are; depart from me, all ye workers of iniquity. And when they draw nigh unto Jerusalem, unto Bethphage and Bethany, at the mount of Olives, he sendeth two of his disciples, and they sat and watched him there. And 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. Howbeit we know this man whence he is: but when the Christ cometh, no one knoweth whence he is. People get pushed too far, they lose their heads. that, being justified by his grace, we might be made heirs according to the hope of eternal life. For as touching those who were once enlightened and tasted of the heavenly gift, and were made partakers of the Holy Spirit, Now concerning spiritual gifts, brethren, I would not have you ignorant. The air was filled with the terrible gases and smells from the rotten egg. If they were this hungry now, just after the fall of leaves, what would it be when the Bone Moon came? “My, my. she said. “Henry Fussy. Think of that!” And a voice came unto him again the second time, What God hath cleansed, make not thou common. And 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. One day more than a hundred people came to stand at his yard and admire him. But Philip was found at Azotus: and passing through he preached the gospel to all the cities, till he came to Cæsarea. For 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. “It can handle anything. And 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? He 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. From the edge of the woods, the white-throated sparrow (which must come all the way from Boston) calls, “Oh, Peabody, Peabody, Peabody!” But Peter said unto him, Thy silver perish with thee, because thou hast thought to obtain the gift of God with money. from 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. I owe my very life to her. It often had a sort of peaceful smell — as though nothing bad could happen ever again in the world. And the woman whom thou sawest is the great city, which reigneth over the kings of the earth. And it was told him, Thy mother and thy brethren stand without, desiring to see thee. But she is happier if she abide as she is, after my judgment: and I think that I also have the Spirit of God. “Goose?” said Charlotte. But they, passing through from Perga, came to Antioch of Pisidia; and they went into the synagogue on the sabbath day, and sat down. “Templeton, said Wilbur, “if you weren't so dopey, you would have noticed that Charlotte has made an egg sac. Grace to you and peace be multiplied in the knowledge of God and of Jesus our Lord; For he of whom these things are said belongeth to another tribe, from which no man hath given attendance at the altar. And it had started snowing a lot. Look to yourselves, that ye lose not the things which we have wrought, but that ye receive a full reward. And there came a scribe, and said unto him, Teacher, I will follow thee whithersoever thou goest. And 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. And he lifted up his eyes on his disciples, and said, Blessed are ye poor: for yours is the kingdom of God. For which of you, desiring to build a tower, doth not first sit down and count the cost, whether he have wherewith to complete it? being only (with meats and drinks and divers washings) carnal ordinances, imposed until a time of reformation. But 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: Some of the multitude therefore, when they heard these words, said, This is of a truth the prophet. And they all wept sore, and fell on Paul’s neck and kissed him, “No trouble at all. She uses a dry, tough thread for foundation lines, and she uses a sticky thread for snare lines—the ones that catch and hold insects. And 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. “At my age it’s a good idea to keep gaining.” Half 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. “I’ll be a friend to you. And then she started feeding her chickens from grain she held basined in her apron. But I call God for a witness upon my soul, that to spare you I forbare to come unto Corinth. West. But if the truth of God through my lie abounded unto his glory, why am I also still judged as a sinner? But mostly it smelled of hay, for there was always hay in the great loft up overhead. And when they had crossed over, they came to the land, unto Gennesaret. But unto us God revealed them through the Spirit: for the Spirit searcheth all things, yea, the deep things of God. Let these words sink into your ears: for the Son of man shall be delivered up into the hands of men. but his disciples took him by night, and let him down through the wall, lowering him in a basket. Her house was afire and black smoke rose to meet the low clouds before she made the second turning in the trail. but 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. that the ordinance of the law might be fulfilled in us, who walk not after the flesh, but after the Spirit. There are also celestial bodies, and bodies terrestrial: but the glory of the celestial is one, and the glory of the terrestrial is another. And it came to pass soon afterwards, that he went to a city called Nain; and his disciples went with him, and a great multitude. But when he heard these things, he became exceeding sorrowful; for he was very rich. Mrs. Zuckerman lay dreaming about a deep freeze unit. He 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. When I am in the world, I am the light of the world. and 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; Even when sickness half emptied their towns, they kept their writing. Brethren, my heart’s desire and my supplication to God is for them, that they may be saved. Of whom we have many things to say, and hard of interpretation, seeing ye are become dull of hearing. Don’t go. It was the kind of barn that children like to play in. For 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. Now the chief priests and the elders persuaded the multitudes that they should ask for Barabbas, and destroy Jesus. The servant therefore fell down and worshipped him, saying, Lord, have patience with me, and I will pay thee all. He findeth first his own brother Simon, and saith unto him, We have found the Messiah (which is, being interpreted, Christ). and 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. whether Paul, or Apollos, or Cephas, or the world, or life, or death, or things present, or things to come; all are yours; For 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. Upon 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. For my yoke is easy, and my burden is light. Now, all of you must have noticed what’s been going on around here the last few days. I didn’t know all the names. And ye shall be hated of all men for my name’s sake: but he that endureth to the end, the same shall be saved. but sin, finding occasion, wrought in me through the commandment all manner of coveting: for apart from the law sin is dead. but God giveth it a body even as it pleased him, and to each seed a body of its own. Tell us therefore, What thinkest thou? Is it lawful to give tribute unto Cæsar, or not? forbidding to marry, and commanding to abstain from meats, which God created to be received with thanksgiving by them that believe and know the truth. Soon, belief in these visions and revelations became widespread, and trails from the foothills up to the mountains began filling with pilgrims. And 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. For he was numbered among us, and received his portion in this ministry. This 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. Major 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. And the two disciples heard him speak, and they followed Jesus. And 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. “Run uphill!” cried the sheep. “Hey, look at that big spider!” he said. For 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. He had the habit of including the word perhaps in nearly every order he gave. He watched his chance and when no one was looking he crept into the crate and buried himself in the straw at the bottom. The runners would have to be on top of him to see it through the brush. but like as he who called you is holy, be ye yourselves also holy in all manner of living; Salute Asyncritus, Phlegon, Hermes, Patrobas, Hermas, and the brethren that are with them. Seeing that many glory after the flesh, I will glory also. Ye have lived delicately on the earth, and taken your pleasure; ye have nourished your hearts in a day of slaughter. Afterward came also the other virgins, saying, Lord, Lord, open to us. let 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. Much every way: first of all, that they were intrusted with the oracles of God. But I say unto you that hear, Love your enemies, do good to them that hate you, Now the chief priests and the whole council sought witness against Jesus to put him to death; and found it not. The fish was caught by one fin, Mother; its tail was wildly thrashing and shining in the sun. And he said unto them, Why are ye fearful? have ye not yet faith? Being therefore always of good courage, and knowing that, whilst we are at home in the body, we are absent from the Lord And 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? It began when Charley’s wife, Nancy, had grown tired. There 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. She would take a stick and trace the outline of his lower body as children trace their hands. My little children, let no man lead you astray: he that doeth righteousness is righteous, even as he is righteous: In that hour came the disciples unto Jesus, saying, Who then is greatest in the kingdom of heaven? On the morrow he seeth Jesus coming unto him, and saith, Behold, the Lamb of God, that taketh away the sin of the world! She held her nose and ran toward the house. The 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. He had scooped out a special place in the manure for the sac, next to the board fence. So the band and the chief captain, and the officers of the Jews, seized Jesus and bound him, Well; by their unbelief they were broken off, and thou standest by thy faith. Be not highminded, but fear: And 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. but 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. And 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; But 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. But I am going to save you, and I want you to quiet down immediately. having hope toward God, which these also themselves look for, that there shall be a resurrection both of the just and unjust. Ah! 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. And 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; Wilbur sank to his knees, all radiance gone. But woe unto you that are rich! for ye have received your consolation. From henceforth I tell you before it come to pass, that, when it is come to pass, ye may believe that I am he. She sat with head tucked under a wing. And he was teaching in one of the synagogues on the sabbath day. And they also, if they continue not in their unbelief, shall be grafted in: for God is able to graft them in again. They 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. Your fathers ate the manna in the wilderness, and they died. “Seven is a lucky number.” one Lord, one faith, one baptism, It is not easy to look radiant, but Wilbur threw himself into it with a will. But he spake of the temple of his body. And he entered into a boat, and crossed over, and came into his own city. For 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. “Welcome to the barn cellar. “The fish lost the fight. “Be quiet, Templeton!” said the sheep. They 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. And 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. And 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. And 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. but glory and honor and peace to every man that worketh good, to the Jew first, and also to the Greek: Now Judas also, who betrayed him, knew the place: for Jesus oft-times resorted thither with his disciples. Let us therefore give diligence to enter into that rest, that no man fall after the same example of disobedience. Are 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. “Wilbur’s all right now,” said Fern. And when they had read it, they rejoiced for the consolation. Nay, in all these things we are more than conquerors through him that loved us. “But it’s unfair,” cried Fern. And he drove them from the judgment-seat. He stepped through the fence into his yard. She lived about three miles away. and when they were come over against Mysia, they assayed to go into Bithynia; and the Spirit of Jesus suffered them not; When he hath put forth all his own, he goeth before them, and the sheep follow him: for they know his voice. “Is it a plaything?” Once when I was a young man, I had a girlfriend. The man answered and said unto them, Why, herein is the marvel, that ye know not whence he is, and yet he opened mine eyes. Of course, not a broken one. For every one shall be salted with fire. I desire therefore that the men pray in every place, lifting up holy hands, without wrath and disputing. but if ye have respect of persons, ye commit sin, being convicted by the law as transgressors. Charley was too weary to hold any hope of killing a hog with just a hatchet. And he sent yet another servant: and him also they beat, and handled him shamefully, and sent him away empty. The short of it was, French didn’t sound a bit like I thought it would. And he left them, and again entering into the boat departed to the other side. “Its name is Wilbur,” she whispered to herself. “Look out for Zuckerman!” yelled the gander. He urgently needed to tell me about a visit to his homestead by a little party of pilgrims. Concerning 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. His neighbors stopped laughing when Sequoyah's six-year-old daughter, Ayoka, learned to read. To flee or hide or surrender? men that have hazarded their lives for the name of our Lord Jesus Christ. But to each one is given the manifestation of the Spirit to profit withal. The border, leastways, said the Philadelphia boy. Jesus 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. “Now I knock him out, so he’ll be more comfortable.” She bit the fly. Wherefore 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; They believed him, for he looked every day of that age, and I vouched for his harmlessness and frailty. Wilbur rushed out, ate everything in a hurry, and licked the trough. Brethren, let each man, wherein he was called, therein abide with God. So 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; They stared and stared for a long time at Wilbur. By any standard, I looked irreproachable. On 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.” that thou keep the commandment, without spot, without reproach, until the appearing of our Lord Jesus Christ: For 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; For 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? When I get ready to lay eggs, I have to lay eggs, Fair or no Fair. which we have as an anchor of the soul, a hope both sure and stedfast and entering into that which is within the veil; There 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. So he cometh to a city of Samaria, called Sychar, near to the parcel of ground that Jacob gave to his son Joseph: I went over and said, Boys, this is not your country, and I guess you feel uneasy in it. Then he dried himself with an imaginary towel. My age, I guess.” Jesus therefore said, Yet a little while am I with you, and I go unto him that sent me. Behold, your house is left unto you desolate. That 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. Blessed are they that hunger and thirst after righteousness: for they shall be filled. Flies, 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?” “Will Mr. Homer Zuckerman bring his famous pig to the judges’ booth in front of the grandstand. For 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. I 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. Lurvy was in bed by eight-thirty. The 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. Jesus 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. When he returned to the barn, he carried in his mouth an advertisement he had torn from a crumpled magazine. And 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. Behold, 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. But one night, it was cold, but I left her house that night close to midnight. The goose knew a day in advance that they were coming—she could hear their weak voices calling from inside the egg. And 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. And he said unto them, Take nothing for your journey, neither staff, nor wallet, nor bread, nor money; neither have two coats. But not even Titus who was with me, being a Greek, was compelled to be circumcised: The pain revived Wilbur. Have 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? But he giveth more grace. Wherefore the scripture saith, God resisteth the proud, but giveth grace to the humble. Behold, 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. And a certain young man followed with him, having a linen cloth cast about him, over his naked body: and they lay hold on him; And 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. It seemed unimaginably large. And Paul stood in the midst of the Areopagus, and said, Ye men of Athens, in all things I perceive that ye are very religious. He and Mr. Arable and Lurvy and Avery grabbed the crate and boosted it over the side of the pen and up into the truck. Charley 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. Next 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. for 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. I met Mrs. Chapman at other parties and was initially only polite to her, given the Mrs. attached to her name. He 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. For 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; as it is written, He hath scattered abroad, he hath given to the poor; His righteousness abideth for ever. “Congratulations!” shouted Wilbur. My, my! And that to feed a dozen people. Blessed 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. For as the Father hath life in himself, even so gave he to the Son also to have life in himself: And don’t eat a lot of stuff that's going to make you sick to your stomachs.” I recollect that you’re an attorney. “Don't worry about my stomach,” snarled Templeton. For 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. But the governor answered and said unto them, Which of the two will ye that I release unto you? And they said, Barabbas. I made it pretty far before I stopped; I turned back and in the distance… If anybody can think of another message, or remark, I'll be glad to weave it into the web. And when much time was spent, and the voyage was now dangerous, because the Fast was now already gone by, Paul admonished them, Of easy wind and downy flake. “Bee-bee-bee!” Beware therefore, lest that come upon you which is spoken in the prophets: longing to see thee, remembering thy tears, that I may be filled with joy; And straightway in the synagogues he proclaimed Jesus, that he is the Son of God. Bright 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. I have to get my own living. I live by my wits. I have to be sharp and clever, lest I go hungry. “I know where there's a package of soap flakes in the woodshed. Others said, These are not the sayings of one possessed with a demon. Can a demon open the eyes of the blind? “Run along, if you want to see more of the Fair.” When 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. For he said unto him, Come forth, thou unclean spirit, out of the man. And his head was brought on a platter, and given to the damsel: and she brought it to her mother. And when Jesus saw her, he called her, and said to her, Woman, thou art loosed from thine infirmity. It shall turn out unto you for a testimony. But when the multitudes saw it, they were afraid, and glorified God, who had given such authority unto men. One night when we returned home, our dog was barking fiercely as if he were barking at some animal close by. He could have reached out and hit them with a stick. But 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. looking 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; Bless my soul, I believe it was old Templeton. And behold, there appeared unto them Moses and Elijah talking with him. He's modest and can’t stand praise.” But they were urgent with loud voices, asking that he might be crucified. And their voices prevailed. traitors, headstrong, puffed up, lovers of pleasure rather than lovers of God; There was one thing that disturbed their happy lives . . . Spearfinger! Bear’s face did not shift one way or the other. He 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. Then Pilate therefore took Jesus, and scourged him. A light for revelation to the Gentiles, And the glory of thy people Israel. And he asked them, But who say ye that I am? Peter answereth and saith unto him, Thou art the Christ. The children of thine elect sister salute thee. whose 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. “What's up? he asked, seeing the animals assembled. Whence come wars and whence come fightings among you? come they not hence, even of your pleasures that war in your members? The horses were long gone—traded to Axe, first one and then the other—during late summer and early fall. Yea and in your law it is written, that the witness of two men is true. One day she was hanging around on the web and a tiny fish leaped into the air and got tangled in the web. What 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. “Over and gone, over and gone. And Joseph arose from his sleep, and did as the angel of the Lord commanded him, and took unto him his wife; But I say that so long as the heir is a child, he differeth nothing from a bondservant though he is lord of all; “Why can’t you?” asked the pig. Only Wilbur—ilbur-ilbur is going to the Fair.” His eyes grew wet with tears. And if also a man contend in the games, he is not crowned, except he have contended lawfully. Fern was just about to jump up when a voice was heard. Met with many young representatives, and even a couple of old regal senators, one of them the famously contentious John C. Calhoun. “Hey, watch me!” yelled Avery, crawling on all fours into the crate. I'm in pain! I'm in pain! and when they had withdrawn, they spake one to another, saying, This man doeth nothing worthy of death or of bonds. He was partly blinded. And he went out about the third hour, and saw others standing in the marketplace idle; but the other proclaim Christ of faction, not sincerely, thinking to raise up affliction for me in my bonds. I stood and waited, and in a minute the colonel lost his place in his own thoughts and fell silent. And 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. “ ‘Humble’ has two meanings. Then, only a day later, nothing but watery grey soup of feet and necks and gizzards. according to the custom of the priest’s office, his lot was to enter into the temple of the Lord and burn incense. All my affairs shall Tychicus make known unto you, the beloved brother and faithful minister and fellow-servant in the Lord: But this year the pigeons came only in ones and twos, and then after a few days they were suddenly gone altogether. Now the parable is this: The seed is the word of God. But 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. Silver trinkets and talk of the Great White Father got nowhere with them. He 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. No man hath beheld God at any time: if we love one another, God abideth in us, and his love is perfected in us: But Jesus said, Some one did touch me; for I perceived that power had gone forth from me. They 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. The 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. You see, I must stay looking strong They 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. I'll have to ask you to try again.” And when his friends heard it, they went out to lay hold on him: for they said, He is beside himself. and 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. Faithful is the saying, and worthy of all acceptation. And when Jesus came into the ruler’s house, and saw the flute-players, and the crowd making a tumult, Everyone rejoiced to find that the miracle o f the web had been repeated. To him therefore that knoweth to do good, and doeth it not, to him it is sin. “You’re certainly making a beautiful noise,” snapped the old sheep. And 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. Bear said. “What’s going on, Zuckerman? And he said unto them, I beheld Satan fallen as lightning from heaven. And they made a calf in those days, and brought a sacrifice unto the idol, and rejoiced in the works of their hands. Let them alone: they are blind guides. And if the blind guide the blind, both shall fall into a pit. The travel with the soldiers, the capture of Charley, the killings. And what I say unto you I say unto all, Watch. See 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. Thinking was not what the moment called for. When 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. And Jesus lifted up himself, and said unto her, Woman, where are they? did no man condemn thee? At last Wilbur saw the creature that had spoken to him in such a kindly way. Wherefore putting away all filthiness and overflowing of wickedness, receive with meekness the implanted word, which is able to save your souls. And there, where I was walking, something was suddenly standing in the middle of the road. Ye 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. That began the period of time when I refused to wear any outfit in which the hat failed to correspond with the clothes. So because thou art lukewarm, and neither hot nor cold, I will spew thee out of my mouth. insomuch 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. But Saul, yet breathing threatening and slaughter against the disciples of the Lord, went unto the high priest, He decided to change the subject. And if ye salute your brethren only, what do ye more than others? do not even the Gentiles the same? What he believed then was that Green Man and God were not going to save him or his people. to speak evil of no man, not to be contentious, to be gentle, showing all meekness toward all men. What then shall we say that Abraham, our forefather, hath found according to the flesh? “Oh, keep quiet!” hollered Fern. And 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. yet, looking unto the promise of God, he wavered not through unbelief, but waxed strong through faith, giving glory to God, “It’s never been done.” But certain of the Pharisees said, Why do ye that which it is not lawful to do on the sabbath day? Now 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. And 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; (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; He said, I’m meant to come home someday with honors. The pig stared at her. Come 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. “Everybody watch!” he cried. “Let's see it!” said Avery, setting his gun down. And 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. For hereunto were ye called: because Christ also suffered for you, leaving you an example, that ye should follow his steps: It’s true, and I have to say what is true. He vanished into the shadows. Howbeit the Most High dwelleth not in houses made with hands; as saith the prophet, And they come, bringing unto him a man sick of the palsy, borne of four. Now 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; “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?” Then they went running upward into the mountains. “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. But these rail at whatsoever things they know not: and what they understand naturally, like the creatures without reason, in these things are they destroyed. The children no longer wept. They were all silent except for their hard breathing. White bones gnawed by porcupines. For this Melchizedek, king of Salem, priest of God Most High, who met Abraham returning from the slaughter of the kings and blessed him, That’s what the immediate future looked like it was shaping up to be. And he saith unto them, Come ye after me, and I will make you fishers of men. the son of Jesse, the son of Obed, the son of Boaz, the son of Salmon, the son of Nahshon, Every newspaper jackass with a pen and half an hour of unclaimed time gets to take a shot. So then it is not of him that willeth, nor of him that runneth, but of God that hath mercy. Jesus 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. And 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. that there should be no schism in the body; but that the members should have the same care one for another. Hath not the scripture said that the Christ cometh of the seed of David, and from Bethlehem, the village where David was? And Jesus, full of the Holy Spirit, returned from the Jordan, and was led in the Spirit in the wilderness Yea, 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. And when they heard this they were filled with wrath, and cried out, saying, Great is Diana of the Ephesians. They have been alive for thousands of years. For we have not here an abiding city, but we seek after the city which is to come. He 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. Then you'll see what trouble a pig can be.” Verily 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. to whom we gave place in the way of subjection, no, not for an hour; that the truth of the gospel might continue with you. Behold, I send you forth as sheep in the midst of wolves: be ye therefore wise as serpents, and harmless as doves. And 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, And Jesus returned in the power of the Spirit into Galilee: and a fame went out concerning him through all the region round about. “Now then — there is no time to be lost. Be 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; When the group had finished putting their names to paper, one of them expressed the opinion that they had just signed their own execution warrants. Will the crowd please make way and let the truck pass. Under 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. Let's go for a walk in the woods with Asmeret. “The management of the Fair takes great pleasure in presenting Mr. Homer L. Zuckerman and his famous pig. No soldier on service entangleth himself in the affairs of this life; that he may please him who enrolled him as a soldier. And they crucify him, and part his garments among them, casting lots upon them, what each should take. of 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? Ye 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? and unto none of them was Elijah sent, but only to Zarephath, in the land of Sidon, unto a woman that was a widow. And 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; I cannot find a place to stay and wait, until winter is gone. But 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. But they shall proceed no further: for their folly shall be evident unto all men, as theirs also came to be. What eating! Be it known therefore unto you, that this salvation of God is sent unto the Gentiles: they will also hear. I'll bring back a magazine clipping if I can find one.” And they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why then did ye not believe him? So fighting was out. Finally he said that he did not intend to altercate. And all the people saw him walking and praising God: and hearing a multitude going by, he inquired what this meant. And 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. And 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; But 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. An old hemlock grew on the highest part of this piece of land. and 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. But when Herod was dead, behold, an angel of the Lord appeareth in a dream to Joseph in Egypt, saying, And 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, “But I'm not terrific, Charlotte. She sees soil and decomposers everywhere. knowing that the putting off of my tabernacle cometh swiftly, even as our Lord Jesus Christ signified unto me. And having gifts differing according to the grace that was given to us, whether prophecy, let us prophesy according to the proportion of our faith; When Mr. Arable returned to the house half an hour later, he carried a carton under his arm. If you were a member of a clan, you were an Indian. and the second: One afternoon she heard a most interesting conversation and witnessed a strange event. Today it is sunny outside. and 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. Templeton, not wishing to come out in broad daylight, stayed quietly under the straw at the bottom of the crate. And 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. We 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; One man hath faith to eat all things: but he that is weak eateth herbs. Now 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. For these are days of vengeance, that all things which are written may be fulfilled. By faith he kept the passover, and the sprinkling of the blood, that the destroyer of the firstborn should not touch them. And another also said, I will follow thee, Lord; but first suffer me to bid farewell to them that are at my house. For 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. But 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. The 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. Draw nigh to God, and he will draw nigh to you. Cleanse your hands, ye sinners; and purify your hearts, ye doubleminded. “Please don't kill it!” she sobbed. For 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? It 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. If you had been sitting quietly in the barn cellar that evening, you would have heard something like this: “Now for the R! And 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. For 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. whom I would fain have kept with me, that in thy behalf he might minister unto me in the bonds of the gospel: At noon the Zuckermans and the Arables returned to the pigpen. as sorrowful, yet always rejoicing; as poor, yet making many rich; as having nothing, and yet possessing all things. Water and air mix with these things are part of the soil, too. Well, 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. It looked like the aftermath of a train wreck. And 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. And Jesus rebuked him, saying, Hold thy peace, and come out of him. “Goodness, are you still thinking about that ol’ Ferris wheel?” said Avery in disgust. saying, 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. And what we say is yet more abundantly evident, if after the likeness of Melchizedek there ariseth another priest, Otherwise, despair. And he went into their synagogues throughout all Galilee, preaching and casting out demons. “However, I have a feeling I’m not going to see the results of last night’s efforts. And 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; We can’t tell what may happen at the Fair Grounds. But others mocking said, They are filled with new wine. But 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. until 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: Then you straddled the knot, so that it acted as a seat. In every direction, mountains hanging like green curtains from the sky. And 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. Now there are diversities of gifts, but the same Spirit. A barn is never perfectly quiet. He disappeared into his tunnel, pushing the goose egg in front of him. If ye are reproached for the name of Christ, blessed are ye; because the Spirit of glory and the Spirit of God resteth upon you. “Say those names again, I didn’t catch them the first time.” Look at my web — doesn’t it show up well with the dew on it?” “Run around!” commanded Charlotte. These 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. And if a son of peace be there, your peace shall rest upon him: but if not, it shall turn to you again. And the glory which thou hast given me I have given unto them; that they may be one, even as we are one; “Don’t tell me any more. We don’t want Zuckerman to think Wilbur is crunchy. Ye see that by works a man is justified, and not only by faith. What about Featherstone? And one of the elders answered, saying unto me, These that are arrayed in the white robes, who are they, and whence came they? The Jews therefore strove one with another, saying, How can this man give us his flesh to eat? And 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. Then shall two men be in the field; one is taken, and one is left: Not flight but slog. “It’s the old pail trick, Wilbur. He that hath ears to hear, let him hear. “It would serve you right if you had an acute attack of indigestion.” so that ye became an ensample to all that believe in Macedonia and in Achaia. Charlotte noticed his embarrassment and she spoke sharply to the lamb. But after no long time there beat down from it a tempestuous wind, which is called Euraquilo: The river was high and thick and red with the clay it was carrying. And as they went forth, behold, there was brought to him a dumb man possessed with a demon. and there they preached the gospel. And he entered and was passing through Jericho. He swam around until he found the entrance he came through. And Ananias hearing these words fell down and gave up the ghost: and great fear came upon all that heard it. and 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. But he spake exceeding vehemently, If I must die with thee, I will not deny thee. And in like manner also said they all. After this manner therefore pray ye: Our Father who art in heaven, Hallowed be thy name. And he gave some to be apostles; and some, prophets; and some, evangelists; and some, pastors and teachers; and 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. And the next day we touched at Sidon: and Julius treated Paul kindly, and gave him leave to go unto his friends and refresh himself. Now 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. Beware of false prophets, who come to you in sheep’s clothing, but inwardly are ravening wolves. to 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. For it is written, that Abraham had two sons, one by the handmaid, and one by the freewoman. “Why, how perfectly simple!” she said to herself. and 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? But 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.” And this report went forth concerning him in the whole of Judæa, and all the region round about. His disciples say, Lo, now speakest thou plainly, and speakest no dark saying. For this is the will of God, even your sanctification, that ye abstain from fornication; The 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. She ate a small bug that she had been saving. And when he opened the seventh seal, there followed a silence in heaven about the space of half an hour. I want that pig to have clean, bright straw every day for his bedding. And amazement took hold on all, and they glorified God; and they were filled with fear, saying, We have seen strange things to-day. “Is this appetizing yarn of yours true? and a voice came out of the heavens, Thou art my beloved Son, in thee I am well pleased. And 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. “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.” in hope of eternal life, which God, who cannot lie, promised before times eternal; Governor Ross or Governor Ridge living in a new executive mansion. That's why those shoes hurt me, because they were too small. “That doesn't make a particle of difference,” replied Charlotte. She had eight legs, and she was waving one of them at Wilbur in friendly greeting. “Well,” said her father, “he’s a runt. As he walked he tried to be brave The women gathered the few items that would help them in their escape. He got out of sight just in time. as unknown, and yet well known; as dying, and behold, we live; as chastened, and not killed; And 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. But he charged them, and commanded them to tell this to no man; And into whatsoever city ye enter, and they receive you, eat such things as are set before you: Then Jesus therefore said unto them plainly, Lazarus is dead. for indeed ye do it toward all the brethren that are in all Macedonia. But we exhort you, brethren, that ye abound more and more; “Scratch it!” yelled Avery, as he sailed back. Once in a while I would go visit her at her house. Do all things without murmurings and questionings: But they made light of it, and went their ways, one to his own farm, another to his merchandise; Therefore 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? And 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? He 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. The little spiders waved their forelegs at him. But 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. “Come, pig. said Mr. Zuckerman, tapping the pail. For God gave us not a spirit of fearfulness; but of power and love and discipline. Wherefore, O king Agrippa, I was not disobedient unto the heavenly vision: And even as Jannes and Jambres withstood Moses, so do these also withstand the truth; men corrupted in mind, reprobate concerning the faith. Wilbur scrambled to the top of the manure pile. All 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. And 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. One only is the lawgiver and judge, even he who is able to save and to destroy: but who art thou that judgest thy neighbor? “I’m hungry,” said Stephen. Then 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. For I delivered unto you first of all that which also I received: that Christ died for our sins according to the scriptures; Now 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. If any man hath ears to hear, let him hear. When we could not see anything up there, my dad aimed up toward the branch and fired a shot. And 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. “Here,” she said. Finally, be strong in the Lord, and in the strength of his might. And 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. “Yes, but you seem specially so today. But 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: For Christ is the end of the law unto righteousness to every one that believeth. For 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. Jesus answered and said unto them, Murmur not among yourselves. There was not a date as exact for that apocalypse as Jackson had given for this one. Render 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. Wherefore let no one glory in men. For all things are yours; He'd be scared to go to the Fair.” How can you argue against peace? Then Herod privily called the Wise-men, and learned of them exactly what time the star appeared. These Indians were about as low as you can get to be. I 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. “I think you’re beautiful,” said Wilbur. I liked him a great deal but I had no desire to become Davy Crockett’s understudy, his sidekick, his young buddy. And his disciples asked him, saying, Why then say the scribes that Elijah must first come? I 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. The 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; And there come unto him Sadducees, who say that there is no resurrection; and they asked him, saying, And 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: Instead, they tell us, he invented letters to spell out the sounds of the language. Walk in wisdom toward them that are without, redeeming the time. Let's see what we can find. It was on a day in early summer that the goose eggs hatched. And 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. The second is this, Thou shalt love thy neighbor as thyself. There is none other commandment greater than these. Being therefore justified by faith, we have peace with God through our Lord Jesus Christ; She got in the car and drove to his office in the village. And they that are of Christ Jesus have crucified the flesh with the passions and the lusts thereof. “Bath time!” said Zuckerman, cheerfully. for 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; When he heard the crowd begin to cheer and clap again, he suddenly fainted away. “Thank you,” said the gander. While I stood there looking at it, something happened to me. But go ye and learn what this meaneth, I desire mercy, and not sacrifice: for I came not to call the righteous, but sinners. I glorified thee on the earth, having accomplished the work which thou hast given me to do. I can do all things in him that strengtheneth me. And 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. And I baptized also the household of Stephanas: besides, I know not whether I baptized any other. A deal for services as guide and translator that only I was in a position to render. He had not seen Galway Bay since he was nine years old, and he never expected to see it again this side of the grave. And he said, How shall we liken the kingdom of God? or in what parable shall we set it forth? I 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. how 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? Drops became rare as garnets cupped in fallen leaves. Let us therefore go forth unto him without the camp, bearing his reproach. She poured warm milk into the bottle, fitted the nipple over the top, and handed it to Fern. But the very hairs of your head are all numbered. Fear not: ye are of more value than many sparrows. I 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. having despoiled the principalities and the powers, he made a show of them openly, triumphing over them in it. Then the soldiers of the governor took Jesus into the Prætorium, and gathered unto him the whole band. Cautiously Templeton pulled himself up over the edge of the trough. And there are diversities of ministrations, and the same Lord. Or think ye that the scripture speaketh in vain? Doth the spirit which he made to dwell in us long unto envying? And ye know that he was manifested to take away sins; and in him is no sin. As Wilbur was being shoved back into the crate, Lurvy came charging through the crowd carrying a pail of water. Let 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. For 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. The generations surrounding me were as desperate as you can drive people to be. As the truth of Christ is in me, no man shall stop me of this glorying in the regions of Achaia. But all of them Indians? I went by the old rules. Brethren, 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. And when the sabbath was past, Mary Magdalene, and Mary the mother of James, and Salome, bought spices, that they might come and anoint him. God having provided some better thing concerning us, that apart from us they should not be made perfect. But the word of God grew and multiplied. O 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! And when they had preached the gospel to that city, and had made many disciples, they returned to Lystra, and to Iconium, and to Antioch, I’m in this thing pretty deep now—I might as well go the limit.” And then, damned if I didn’t pop right out and say it aloud. “I guess there's nothing wrong with him.” Who? I've got to tear my web apart and write ‘Terrific.’ They’re wiped clean away. I know him. At that season Jesus went on the sabbath day through the grainfields; and his disciples were hungry and began to pluck ears and to eat. Wilbur stretched out on his side. It turned out she did speak English, for she said in a loud clear voice, I spit on my past. Shall 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. Wherefore 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. And 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. Charley wondered why his people possessed such unreasonable desire. It 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. In early summer there are plenty of things for a child to eat and drink and suck and chew. The 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. Moreover he must have good testimony from them that are without; lest he fall into reproach and the snare of the devil. Nobody feeds me. And 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: but he whose genealogy is not counted from them hath taken tithes of Abraham, and hath blessed him that hath the promises. and there shall be great earthquakes, and in divers places famines and pestilences; and there shall be terrors and great signs from heaven. For the bread of God is that which cometh down out of heaven, and giveth life unto the world. But 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. yet 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. Dr. Dorian had a thick beard. But his citizens hated him, and sent an ambassage after him, saying, We will not that this man reign over us. And 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: Is 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. But 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. Wherefore Jesus also, that he might sanctify the people through his own blood, suffered without the gate. A few strands of her old web still hung in the doorway. yet because this widow troubleth me, I will avenge her, lest she wear me out by her continual coming. I know what this is, said Wolf. Forasmuch 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; What then is Apollos? and what is Paul? Ministers through whom ye believed; and each as the Lord gave to him. David himself calleth him Lord; and whence is he his son? And the common people heard him gladly. For 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. And he went away, and communed with the chief priests and captains, how he might deliver him unto them. And certain of the scribes answering said, Teacher, thou hast well said. Having therefore such a hope, we use great boldness of speech, And the gospel must first be preached unto all the nations. And 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. Although he loved her children and grandchildren dearly, none of the new spiders ever quite took her place in his heart. Woe 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. I 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. But I was no preacher. And 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? For whom he foreknew, he also foreordained to be conformed to the image of his Son, that he might be the firstborn among many brethren: And 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. But 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. And this was not a singularity. These 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. Oh no! You cannot stay with me. Big oak began to turn his head. But in vain do they worship me, Teaching as their doctrines the precepts of men. and 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. “You mean kill it? I had not slept in more than a day. “Wherever the wind takes us. But felt lost in all the trees. And 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. Jesus answered, The first is, Hear, O Israel; The Lord our God, the Lord is one: Furthermore, you are interrupting a very pleasant conversation. The mullioned parlor windows were grey. Wherefore be ye not foolish, but understand what the will of the Lord is. He liked being a clown in a ring, with everybody watching, in front of a grandstand. No more Nation. Suddenly he remembered Templeton’s fondness for food. The Pharisees heard the multitude murmuring these things concerning him; and the chief priests and the Pharisees sent officers to take him. Jesus saith unto her, Thy brother shall rise again. He said, I am the voice of one crying in the wilderness, Make straight the way of the Lord, as said Isaiah the prophet. And Simon Peter answered and said, Thou art the Christ, the Son of the living God. I took out the caps and put the hammers down. For if that first covenant had been faultless, then would no place have been sought for a second. For I delight in the law of God after the inward man: “You go back to the house and I will bring the runt when I come in. that 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. Fern winked at Charlotte. And 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. so 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. Or 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. For I say unto you, that none of those men that were bidden shall taste of my supper. There were still a few wormy chestnuts and hickory nuts on the ground under leafless trees. Many of them therefore believed; also of the Greek women of honorable estate, and of men, not a few. There was nothing to be done about it. So then death worketh in us, but life in you. Ye judge after the flesh; I judge no man. Pilate said unto them, Ye have a guard: go, make it as sure as ye can. Mr. 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. When Charlotte's web said SOME PIG, Wilbur had tried hard to look like some pig. And 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. If 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. Her 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. Charley 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. And 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; But 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. Many of them were contemptible, but I guess no greater portion than the generality of people. In the mean while the disciples prayed him, saying, Rabbi, eat. They, too, were tired and hardly had energy enough to walk. When Lurvy showed up at lunchtime carrying a pail of food for Wilbur, he stopped short a few paces from the pigpen. and the enemy that sowed them is the devil: and the harvest is the end of the world; and the reapers are angels. Now 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. But without any dispute the less is blessed of the better. And the nations shall walk amidst the light thereof: and the kings of the earth bring their glory into it. I 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. Be not therefore anxious for the morrow: for the morrow will be anxious for itself. Sufficient unto the day is the evil thereof. But 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. Or 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? Avery hugged Fern. Now 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. yea and a sword shall pierce through thine own soul; that thoughts out of many hearts may be revealed. He 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. And the fourth poured out his bowl upon the sun; and it was given unto it to scorch men with fire. Then 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. And 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. Littlefish remembered what the big fish had said to him, so … Wherefore, holy brethren, partakers of a heavenly calling, consider the Apostle and High Priest of our confession, even Jesus; But 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? And the demons besought him, saying, If thou cast us out, send us away into the herd of swine. and 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. But 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. Now a mediator is not a mediator of one; but God is one. I’ve always numbered myself among the drunks. But I was the one condemned. But he said unto him, Leave the dead to bury their own dead; but go thou and publish abroad the kingdom of God. But 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? All 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. It came from a cedar tree And he said unto them, But who say ye that I am? And Peter answering said, The Christ of God. It must be a lot of fun to spin a web. Its 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. Christmas will come, then the snows of winter. Charlotte stopped. The multitude therefore that was with him when he called Lazarus out of the tomb, and raised him from the dead, bare witness. “Leave it alone!” commanded Fern. For if Abraham was justified by works, he hath whereof to glory; but not toward God. Where did the name come from? and they cry with a great voice, saying, Salvation unto our God who sitteth on the throne, and unto the Lamb. Concerning whom, when the accusers stood up, they brought no charge of such evil things as I supposed; we accept it in all ways and in all places, most excellent Felix, with all thankfulness. By that point, it was too late to save anybody but yourself anyway. And Herod with his soldiers set him at nought, and mocked him, and arraying him in gorgeous apparel sent him back to Pilate. which 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: They answered and said unto him, Art thou also of Galilee? Search, and see that out of Galilee ariseth no prophet. and let him that is in the field not return back to take his cloak. But it shall be more tolerable for Tyre and Sidon in the judgment, than for you. Then it dries and forms a crust. And 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. Did you ever hear of the Queensborough Bridge? Wilbur shook his head. And 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: But he answered and said unto them, When it is evening, ye say, It will be fair weather: for the heaven is red. Buddy, you must stay close to us For a very hard trip it will be. But 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. And they said unto him, In Bethlehem of Judæa: for thus it is written through the prophet, Bring them in and we’re done with each other. And when he was entered into the house from the multitude, his disciples asked of him the parable. He felt happy but dizzy. Templeton was asleep. He couldn’t bear to watch any more. He said, My grandfather. Is everything all right?” So also it is written, The first man Adam became a living soul. The last Adam became a life-giving spirit. “Edith, you better phone the reporter on the Weekly Chronicle and tell him what has happened. And he that spake with me had for a measure a golden reed to measure the city, and the gates thereof, and the wall thereof. Once you were just a seed, now you are an apple tree. Charlotte’s web never looked more beautiful than it looked this morning. And he began to say unto them, To-day hath this scripture been fulfilled in your ears. And 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. where we found brethren, and were entreated to tarry with them seven days: and so we came to Rome. But when he did it the second time, my dad got curious and went in the house and got our shotgun. But if it is by grace, it is no more of works: otherwise grace is no more grace. And there arose a reasoning among them, which of them was the greatest. one who for a certain insurrection made in the city, and for murder, was cast into prison. They had no weapon to slay it with. Even so let your light shine before men; that they may see your good works, and glorify your Father who is in heaven. Smith deferred to my judgment and drank the whisky slow and careful. And Judas and Silas, being themselves also prophets, exhorted the brethren with many words, and confirmed them. Later on that morning, the animals came up from the pasture—the sheep, the lambs, the gander, the goose, and the seven goslings. “It must be real nice and quiet down there. Let’s bring him in, Bear said. And 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. For we are a sweet savor of Christ unto God, in them that are saved, and in them that perish; The Indian hunters, including Lichen, went and stood near Charley and the boys. The hobbled horses had finished eating their oats, and they shuffled and whickered nervously off in the dark beyond the firelight. Fern and Avery arrived, dragging a sled. Five dramatic heartbeats. Templeton’s teeth scraped loudly against the wood and made quite a racket. Ye yourselves bear me witness, that I said, I am not the Christ, but, that I am sent before him. Blessed is the kingdom that cometh, the kingdom of our father David: Hosanna in the highest. I was raw to that flat country of piedmont and coastal plain. I think there are a few drops of milk left in my trough.” Sadly, Wilbur lay down and listened to the rain. and 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: The slops ran creamily down around the pig’s eyes and ears. All that day Wilbur stayed inside, taking life easy in the straw. whereunto I was appointed a preacher, and an apostle, and a teacher. and he shall reign over the house of Jacob for ever; and of his kingdom there shall be no end. But as he was being shoved into the crate, he looked up at Charlotte and gave her a wink. And 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: And he called the twelve together, and gave them power and authority over all demons, and to cure diseases. Mrs. Arable opened her handbag. And many spread their garments upon the way; and others branches, which they had cut from the fields. And 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. “ ‘With new radiant action,’ repeated Charlotte, slowly. He made no effort to separate meat from shell, but crunched them together between his back teeth and swallowed them down. And a certain man was there, who had been thirty and eight years in his infirmity. Nobody said much of anything during the meal. we are of good courage, I say, and are willing rather to be absent from the body, and to be at home with the Lord. And 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. As it was, they wept. I heard when we’re done here it’s Florida for us, Perry said. knowing, brethren beloved of God, your election, The Pharisees therefore answered them, Are ye also led astray? And Paul stood up, and beckoning with the hand said, Men of Israel, and ye that fear God, hearken: These are leaves that have decomposed into soil. For ye all can prophesy one by one, that all may learn, and all may be exhorted; Washington and Jefferson had told them that to survive, those were the only terms. And 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. Now when they had passed through Amphipolis and Apollonia, they came to Thessalonica, where was a synagogue of the Jews: It was wet and foggy and rainy a great deal of the year. But I speak to you that are Gentiles. Inasmuch then as I am an apostle of Gentiles, I glorify my ministry; This is good and acceptable in the sight of God our Saviour; “I’m going to knock that ol’ spider into this box,” he said. And 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. And 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. that 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, You know spiders don’t tell stories. And because of it we cause pain farther on down the road. They have all turned aside, they are together become unprofitable; There is none that doeth good, no, not so much as one: sorrowing 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. And another came, saying, Lord, behold, here is thy pound, which I kept laid up in a napkin: For 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? For if I pray in a tongue, my spirit prayeth, but my understanding is unfruitful. When 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? The 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. And 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. For, All flesh is as grass, And all the glory thereof as the flower of grass. The grass withereth, and the flower falleth: And straightway there fell from his eyes as it were scales, and he received his sight; and he arose and was baptized; They’ve none of them got winders. Fern nodded. After one year, the bag has decomposed. And they come unto a place which was named Gethsemane: and he saith unto his disciples, Sit ye here, while I pray. And the chief priests and the scribes stood, vehemently accusing him. and 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. “That’s a mercy,” replied Wilbur, and he lay down in the shade of his fence and went fast asleep. even as they delivered them unto us, who from the beginning were eyewitnesses and ministers of the word, Charlotte crouched and made herself as small as possible in the knothole, so Avery wouldn’t see her. Crowds of people surrounded it, and Mr. Arable had to drive very carefully in order not to run over anybody. The language of the law is not a mystery to you. (for the weapons of our warfare are not of the flesh, but mighty before God to the casting down of strongholds); I can’t stand hysterics.” So when his fellow-servants saw what was done, they were exceeding sorry, and came and told unto their lord all that was done. Or 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? Now unto our God and Father be the glory for ever and ever. Amen. “Wilbur,” replied Fern, dreamily. And 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. And 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. “He gets these spells. And none too soon. And 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. “He-aa-aa!” answered the sheep all together. Many of them. And lo, he speaketh openly, and they say nothing unto him. Can it be that the rulers indeed know that this is the Christ? Take 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: You lack two things needed for spinning a web.” one saying to the sixth angel that had the trumpet, Loose the four angels that are bound at the great river Euphrates. and Josiah begat Jechoniah and his brethren, at the time of the carrying away to Babylon. Yes, you are right, he said And 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. From 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. And he said unto them, Ye men of Israel, take heed to yourselves as touching these men, what ye are about to do. At 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. So 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. And he entered again into the synagogue; and there was a man there who had his hand withered. And 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. But primarily, the preacher was a citizen of the Nation and not America, so he had to go. “I have some very remarkable cousins. And they had been sent from the Pharisees. “It’s hard to believe that he was the runt of the litter. Now whatever will I do? “Good-bye!” it said, as it sailed through the doorway. When he had touched each of them, he bade them good night and went back and lay down under his blanket to sleep. And they reasoned among themselves, saying, We took no bread. And the evil spirit answered and said unto them, Jesus I know, and Paul I know; but who are ye? Now all this is come to pass, that it might be fulfilled which was spoken by the Lord through the prophet, saying, And 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. No one tried to stop them. For Moses from generations of old hath in every city them that preach him, being read in the synagogues every sabbath. and brought his head on a platter, and gave it to the damsel; and the damsel gave it to her mother. To 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: and 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. And when the demon was cast out, the dumb man spake: and the multitudes marvelled, saying, It was never so seen in Israel. concerning his Son, who was born of the seed of David according to the flesh, Festus therefore, having come into the province, after three days went up to Jerusalem from Cæsarea. Is 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: Grace to you and peace from God our Father and the Lord Jesus Christ. Now 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. Howbeit he shook off the creature into the fire, and took no harm. She studies soil and what makes soil. “Yes, he'll make a good pig,” said Mr. Zuckerman. As she approached her chair, the carton wobbled, and there was a scratching noise. He emerged from the house with boots, with oil, and with sword. In 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. and I give unto them eternal life; and they shall never perish, and no one shall snatch them out of my hand. Every 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. He hath given help to Israel his servant, That he might remember mercy And certain also of the Asiarchs, being his friends, sent unto him and besought him not to adventure himself into the theatre. And they took up broken pieces, twelve basketfuls, and also of the fishes. “Listen! Let love of the brethren continue. And if Satan also is divided against himself, how shall his kingdom stand? because ye say that I cast out demons by Beelzebub. Put that Wayah Town behind me. And they went, and found as he had said unto them: and they made ready the passover. “Why don’t you come with me to the Fair Grounds and lay your eggs there?” pleaded Wilbur. It was a white one. even he, whose coming is according to the working of Satan with all power and signs and lying wonders, Late 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. He stepped there, where the trap lay… When Jesus therefore saw his mother, and the disciple standing by whom he loved, he saith unto his mother, Woman, behold, thy son! And he said unto them, Do ye not yet understand? “It sounds like a rich dessert.” But 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. And 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. These things I command you, that ye may love one another. He that is of God heareth the words of God: for this cause ye hear them not, because ye are not of God. Send some thoughts this way to fill this empty place. And he said unto them, This is my blood of the covenant, which is poured out for many. She calls him Wilbur. that is, that I with you may be comforted in you, each of us by the other’s faith, both yours and mine. We’re the same age. This man led them forth, having wrought wonders and signs in Egypt, and in the Red sea, and in the wilderness forty years. She liked it better when she could be all alone with her friends the animals. Here is the patience of the saints, they that keep the commandments of God, and the faith of Jesus. Be 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. “Seven,” replied Fern. And Philip opened his mouth, and beginning from this scripture, preached unto him Jesus. Charley had reached such a point when he went to sleep under his blanket up on a bald. What then shall we say to these things? If God is for us, who is against us? His 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. For as ye in time past were disobedient to God, but now have obtained mercy by their disobedience, Can't be bothered with a bird not in the passion of lust, even as the Gentiles who know not God; They found a key - long, of iron. for Demas forsook me, having loved this present world, and went to Thessalonica; Crescens to Galatia, Titus to Dalmatia. Seeing ye have purified your souls in your obedience to the truth unto unfeigned love of the brethren, love one another from the heart fervently: XII. A Meeting and these things we write, that our joy may be made full. For I bear them witness that they have a zeal for God, but not according to knowledge. He could not be at peace because soldiers had hunted them like wild deer. And their dead bodies lie in the street of the great city, which spiritually is called Sodom and Egypt, where also their Lord was crucified. in the day when God shall judge the secrets of men, according to my gospel, by Jesus Christ. But the scripture shut up all things under sin, that the promise by faith in Jesus Christ might be given to them that believe. For 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, that it might be fulfilled which was spoken through Isaiah the prophet, saying, for there is born to you this day in the city of David a Saviour, who is Christ the Lord. Yes, I said. “You are a famous pig and you are a good pig. For 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. “But I can’t help it. Who 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, Slug And 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. Let 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, And I saw the seven angels that stand before God; and there were given unto them seven trumpets. Therefore he that resisteth the power, withstandeth the ordinance of God: and they that withstand shall receive to themselves judgment. If 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. but when that which is perfect is come, that which is in part shall be done away. Now when even was come, he was sitting at meat with the twelve disciples; I speak not by way of commandment, but as proving through the earnestness of others the sincerity also of your love. Wherefore comfort one another with these words. and she beholdeth two angels in white sitting, one at the head, and one at the feet, where the body of Jesus had lain. it is sown a natural body; it is raised a spiritual body. If there is a natural body, there is also a spiritual body. And the young men arose and wrapped him round, and they carried him out and buried him. The dead organisms decompose. that they all might be judged who believed not the truth, but had pleasure in unrighteousness. He did not want them to disappear in the white man's world. how that in much proof of affliction the abundance of their joy and their deep poverty abounded unto the riches of their liberality. And they led Jesus away to the high priest: and there come together with him all the chief priests and the elders and the scribes. I will remark briefly what has occurred to me as to the moral disposition of the Indians in relation to this subject. And 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. “I didn’t know you could lay eggs,” said Wilbur in amazement. Now Paul and his company set sail from Paphos, and came to Perga in Pamphylia: and John departed from them and returned to Jerusalem. In 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. And 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: And 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. “But we have received a sign, Edith — a mysterious sign. whom 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: The only other sound’s the sweep And when he had gone through those parts, and had given them much exhortation, he came into Greece. For if we have become united with him in the likeness of his death, we shall be also in the likeness of his resurrection; “What are they?” asked Wilbur, sadly. Templeton's whiskers quivered. For we who live are always delivered unto death for Jesus’ sake, that the life also of Jesus may be manifested in our mortal flesh. His yard was cold and wet. And I wept much, because no one was found worthy to open the book, or to look thereon: How were we to know these few would put up a fight? But we will continue stedfastly in prayer, and in the ministry of the word. “Perhaps,” she said, wearily. And as we tarried there some days, there came down from Judæa a certain prophet, named Agabus. For as the Father raiseth the dead and giveth them life, even so the Son also giveth life to whom he will. This 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? And 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. After that, the dog did not bark like that anymore. Let's go hunt for another shoe. “Making something, as usual.” For ye bear with the foolish gladly, being wise yourselves. Charley handed him his hatchet. And 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. For 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; It got dark while we were there, so we decided to spend the night there. And whence is this to me, that the mother of my Lord should come unto me? For there is nothing hid, save that it should be manifested; neither was anything made secret, but that it should come to light. “What ails you, Lurvy? I went looking for her. And John calling unto him two of his disciples sent them to the Lord, saying, Art thou he that cometh, or look we for another? It was empty. It was said to be nothing but white people up there now. And 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. ‘‘It will show up better if I make the whole thing with double lines.” Simon 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. I will ask someone else for help. and coming forth out of the tombs after his resurrection they entered into the holy city and appeared unto many. where there cannot be Greek and Jew, circumcision and uncircumcision, barbarian, Scythian, bondman, freeman; but Christ is all, and in all. “I’m glad to see you. the 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. The Cherokees listened and remember those songs to this day. Wilbur had gone to sleep thinking about these plans. Nothing but a dent in the pillow, flapped-back sheets. Tears came to his eyes. Blessed is that servant, whom his lord when he cometh shall find so doing. And the Jews also joined in the charge, affirming that these things were so. Give diligence to come before winter. Eubulus saluteth thee, and Pudens, and Linus, and Claudia, and all the brethren. and he shall set the sheep on his right hand, but the goats on the left. “All together, now, boys! If thou art the Christ, tell us. But he said unto them, If I tell you, ye will not believe: whose soever sins ye forgive, they are forgiven unto them; whose soever sins ye retain, they are retained. Jesus saith unto her, Go, call thy husband, and come hither. and 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; But 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. The baptism of John, was it from heaven, or from men? answer me. And when he hath found it, he layeth it on his shoulders, rejoicing. to whom be the glory for ever and ever. Amen. Did 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. during forty days, being tempted of the devil. And he did eat nothing in those days: and when they were completed, he hungered. The book of the generation of Jesus Christ, the son of David, the son of Abraham. Let a woman learn in quietness with all subjection. and called and asked whether Simon, who was surnamed Peter, were lodging there. We 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. I 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. Then Avery picked up a handful of straw and threw it high in the air and gave a loud yell. Nathanael answered him, Rabbi, thou art the Son of God; thou art King of Israel. And he stood over her, and rebuked the fever; and it left her: and immediately she rose up and ministered unto them. For even as we have many members in one body, and all the members have not the same office: Put it on! Put it on! they told Wolf. “I’m delighted that the egg never hatched,” she gabbled. The ladies climbed in beside him. Then 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. And 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! “Really?” said Wilbur. “No,” said Charlotte. “What’s the trouble?” asked Mr. Zuckerman. For this cause I bow my knees unto the Father, I haven’t even strength enough to climb down into the crate. Wilbur will soon be put into the crate. Now this I say, brethren, that flesh and blood cannot inherit the kingdom of God; neither doth corruption inherit incorruption. And they stirred up the people, and the elders, and the scribes, and came upon him, and seized him, and brought him into the council, A fly that had been crawling along Wilbur’s trough had flown up and blundered into the lower part of Charlotte’s web and was tangled in the sticky threads. Open your hearts to us: we wronged no man, we corrupted no man, we took advantage of no man. But I fleshed it out and used the best features of the language to make it live anew. Littlefish realized that somewhere along his journey he had grown into a large fish and that he was no longer afraid. And 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. Slough a skin, dismiss memory, move on. But 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? “This is a very serious thing, Edith,” he replied. and say, We piped unto you, and ye did not dance; we wailed, and ye did not mourn. “The pig couldn't help being born small, could it? And 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. But 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. “I’d be only too glad to help in any way I can.” Wendy woke up early one morning. Let's find one more shoe. forbidding 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. Then touched he their eyes, saying, According to your faith be it done unto you. the younger men likewise exhort to be sober-minded: When therefore he heard that he was sick, he abode at that time two days in the place where he was. So Littlefish swam on to the next pool where he heard a tiny voice say, Hello. “It’s a miserable inheritance,” said Wilbur, gloomily. For 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. henceforth expecting till his enemies be made the footstool of his feet. Then after this he saith to the disciples, Let us go into Judæa again. Bleeding out or healing up. The animals were left to themselves in the barn. Jesus looking upon them saith, With men it is impossible, but not with God: for all things are possible with God. The senator had coffee brought in and we left off business and talked more generally, as elder to younger. Van Buren followed him and his Indian policies like a swimmer caught in a riptide. Love worketh no ill to his neighbor: love therefore is the fulfilment of the law. For he that doeth wrong shall receive again for the wrong that he hath done: and there is no respect of persons. She would wave good-bye to him, and he would stand and watch the bus until it vanished around a turn. If 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? All that are with me salute thee. Salute them that love us in faith. Grace be with you all. The woman saith unto him, Sir, give me this water, that I thirst not, neither come all the way hither to draw. And 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. But ye denied the Holy and Righteous One, and asked for a murderer to be granted unto you, He may need me. And he sought to see Jesus who he was; and could not for the crowd, because he was little of stature. Many days and nights passed as Littlefish met new friends on his journey. Through 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. Lurvy sprang from the judges’ ring and disappeared. 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. Straightway the father of the child cried out, and said, I believe; help thou mine unbelief. Afterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing befall thee. The Jews answered and said unto him, Say we not well that thou art a Samaritan, and hast a demon? From one to two, Wilbur planned to sleep. In 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. Charley looked down the long view south, grey mountains lapped and stacked to the end of the world. “I do, too,” said Aranea. And blessed is he, whosoever shall find no occasion of stumbling in me. and because he needed not that any one should bear witness concerning man; for he himself knew what was in man. And other fell amidst the thorns; and the thorns grew with it, and choked it. I can’t. But Charley’s no warrior. Of 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. The tusks of the boars were like pairs of long dirks that would lay you wide open. All said they had never seen such a pig before in their lives. But he sneaked away to the dump and was back in a while with a strip of cotton cloth. At 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. Now the works of the flesh are manifest, which are these: fornication, uncleanness, lasciviousness, Or else, while the other is yet a great way off, he sendeth an ambassage, and asketh conditions of peace. “You there, Templeton?” he called. Expecting nothing. no brawler, no striker; but gentle, not contentious, no lover of money; It didn’t seem natural for a little girl to be so interested in animals. Now 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. For the body is not one member, but many. I protest by that glorying in you, brethren, which I have in Christ Jesus our Lord, I die daily. And 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. And 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. The Zuckermans have fallen for it, and so has everybody else. And while Peter thought on the vision, the Spirit said unto him, Behold, three men seek thee. Quench not the Spirit; “A big grey one. Let not your heart be troubled: believe in God, believe also in me. “You know why they’re fattening you up, don’t you?” Now when I came to Troas for the gospel of Christ, and when a door was opened unto me in the Lord, One day a tiny fish leaped into the air and got tangled in the web. I recited to her from memory my old poem “To C——,” taking care to note that it had actually been published in The Arcadian. But he answered and said unto him that told him, Who is my mother? and who are my brethren? At the base of a large mountain was a small pond. whereby 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. “There are a lot of things Wilbur doesn’t know about life,” she thought. whom God raised up, having loosed the pangs of death: because it was not possible that he should be holden of it. And 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. But I haunted the salons until late, having discovered that the ladies on board found me exotic. “Maybe he’s dead,” said Avery. I said. The 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. Dozens and dozens of strangers stopped to stare at him and to admire his silky white coat, his curly tail, his kind and radiant expression. For John said unto Herod, It is not lawful for thee to have thy brother’s wife. For with what judgment ye judge, ye shall be judged: and with what measure ye mete, it shall be measured unto you. The fact that the boys had seen no animal bigger than a groundhog failed to ease their minds. I want to breathe the beautiful air and lie in the beautiful sun.” But 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: And he said unto all, If any man would come after me, let him deny himself, and take up his cross daily, and follow me. Some men’s sins are evident, going before unto judgment; and some men also they follow after. “Get up! screamed Wilbur. “He can’t feel a thing now,” she remarked. But I permit not a woman to teach, nor to have dominion over a man, but to be in quietness. Hey, Charley, I said. Sit down here where it’s warm. in like manner the second also, and the third, unto the seventh. Finally, one morning toward the middle of July, the idea came. The tunnel was an example of his skill and cunning. For as in Adam all die, so also in Christ shall all be made alive. The luminous brown contents of both vessels rocked with the effort of his writing. “This pig has won first prize already.” They stared at the sign ZUCKERMAN’S FAMOUS PIG. Earthworm “And don’t get dirty!” and stedfastness, approvedness; and approvedness, hope: Axe 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. Wilbur looked everywhere. She went back into her house and looked into her closet again. Do you really think so?” Not that which entereth into the mouth defileth the man; but that which proceedeth out of the mouth, this defileth the man. “It is true,” said the old sheep. Yea, and all that would live godly in Christ Jesus shall suffer persecution. Eight whole years. Now it came to pass, while he executed the priest’s office before God in the order of his course, and they lifted up their voices, saying, Jesus, Master, have mercy on us. I’ll skip forward to a point that I remember very clearly. The rocks, the leaves and wood and even the animals could become soil someday. It was warm too. But 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. Ye observe days, and months, and seasons, and years. In 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. “I never heard one say anything,” he replied. Some would be for eating. But now abideth faith, hope, love, these three; and the greatest of these is love. Is it coming along pretty well?” And the Pharisees and their scribes murmured against his disciples, saying, Why do ye eat and drink with the publicans and sinners? When therefore he was gone out, Jesus saith, Now is the Son of man glorified, and God is glorified in him; “I don't want to be killed. My little horse must think it queer The boys were not cooks. But Herod, when he heard thereof, said, John, whom I beheaded, he is risen. And when they had brought them, they set them before the council. And the high priest asked them, So Wilbur cleared his throat. “Anybody would think we had three ganders, three geese, and twenty-one goslings. Simon, whom he also named Peter, and Andrew his brother, and James and John, and Philip and Bartholomew, and 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. But 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, Everybody knew it. (for the law made nothing perfect), and a bringing in thereupon of a better hope, through which we draw nigh unto God. And Jesus perceiving it withdrew from thence: and many followed him; and he healed them all, and 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. And God is able to make all grace abound unto you; that ye, having always all sufficiency in everything, may abound unto every good work: And fear came upon every soul: and many wonders and signs were done through the apostles. He didn’t swim too close to the bottom of the water. if by any means I may provoke to jealousy them that are my flesh, and may save some of them. save that the Holy Spirit testifieth unto me in every city, saying that bonds and afflictions abide me. unto an inheritance incorruptible, and undefiled, and that fadeth not away, reserved in heaven for you, Every day Wilbur would stand and look at the torn, empty web, and a lump would come to his throat. She could tell by the sound of his breathing that he was sleeping peacefully, deep in the straw. A year ago he had a wife and child, a woman he loved and a brave bright-eyed boy. But nobody pointed out that the web itself is a miracle.” If 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. For 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; For I bear him witness, that he hath much labor for you, and for them in Laodicea, and for them in Hierapolis. But as the church is subject to Christ, so let the wives also be to their husbands in everything. I know him; because I am from him, and he sent me. I beseech you therefore, be ye imitators of me. “I need you, Charlotte. Paul, an apostle of Christ Jesus through the will of God, according to the promise of the life which is in Christ Jesus, Our 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. because the mind of the flesh is enmity against God; for it is not subject to the law of God, neither indeed can it be: And when they saw him, they worshipped him; but some doubted. that aged women likewise be reverent in demeanor, not slanderers nor enslaved to much wine, teachers of that which is good; And 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: The colonel laughed as if I’d told the joke about Old Blue the coon dog. not in the way of eyeservice, as men-pleasers; but as servants of Christ, doing the will of God from the heart; Wherefore let him that thinketh he standeth take heed lest he fall. to 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, then hath he said, Lo, I am come to do thy will. He taketh away the first, that he may establish the second. Middlings, warm water, apple parings, meat gravy, carrot scrapings, meat scraps, stale hominy, and the wrapper off a package of cheese. For as many of you as were baptized into Christ did put on Christ. It has writing on it. At this point, Templeton showed his nose from his hiding place under Wilbur’s trough. But they understood not the saying, and were afraid to ask him. And how hear we, every man in our own language wherein we were born? “I’ll tell you my name,” replied the first little spider, “if you'll tell me why you are trembling.” Some people say their shoes are too small and they hurt. I find then the law, that, to me who would do good, evil is present. Charlotte went back to her work. It was quite dark now. For the name of God is blasphemed among the Gentiles because of you, even as it is written. If any man loveth not the Lord, let him be anathema. Maranatha. At the end of such days, Smith said he went to sleep with a bitter taste like ash from a coal fire in his mouth. for neither can they die any more: for they are equal unto the angels; and are sons of God, being sons of the resurrection. and they came and besought them; and when they had brought them out, they asked them to go away from the city. “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. Nay, 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? despise not prophesyings; The 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. And 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. He 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. unto him be the glory in the church and in Christ Jesus unto all generations for ever and ever. Amen. They sang the song of summer’s ending, a sad, monotonous song. He will want to know about this. “Ever try to spin one?” asked Dr. Dorian. Beloved, 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. “Pull in your head—they’re coming. For from within, out of the heart of men, evil thoughts proceed, fornications, thefts, murders, adulteries, “What’s unusual about the pig?” asked Mrs. Zuckerman, who was beginning to recover from her scare. So they gathered them up, and filled twelve baskets with broken pieces from the five barley loaves, which remained over unto them that had eaten. “Just the same, I intend to have a look at that spider.” The scribe read the several pages of the letter through in silence. Worthy 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. And 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. And there came also publicans to be baptized, and they said unto him, Teacher, what must we do? And suddenly there was with the angel a multitude of the heavenly host praising God, and saying, and he bade them provide beasts, that they might set Paul thereon, and bring him safe unto Felix the governor. “Ouch!” he screamed. And Nathanael said unto him, Can any good thing come out of Nazareth? Philip saith unto him, Come and see. “What time is it?” whispered Wilbur to the goose. By necessity, the firing squad killed the boy sitting on a log, for he was too terrified to stand. after the same manner shall it be in the day that the Son of man is revealed. “Now make an attachment with your spinnerets, hurl yourself into space, and let out a dragline as you go down!” And the next night he did the same thing. The 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. Know ye not that we shall judge angels? how much more, things that pertain to this life? Your future is assured. “Yes?” said the spider. And after Axe was finished telling his tale, I too wondered what varieties of woe Charley might bring upon us when the Army came searching. And 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. And 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; Woe 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. And he saith unto me, The waters which thou sawest, where the harlot sitteth, are peoples, and multitudes, and nations, and tongues. But 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. Let’s say four hundred Indians. Jesus said therefore unto the twelve, Would ye also go away? The day grew fiercely hot. Verily I say unto thee, Thou shalt by no means come out thence, till thou have paid the last farthing. Yea, I will give diligence that at every time ye may be able after my decease to call these things to remembrance. Wherefore Come ye out from among them, and be ye separate, saith the Lord, And touch no unclean thing; And I will receive you, Behold 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. I looked around at Smith. He walked at a smart pace, and before long came to the creek and turned downstream. A 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. I’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. For it is written, As I live, saith the Lord, to me every knee shall bow, And every tongue shall confess to God. Most of them sailed away, on their balloons. And Jesus answering said unto him, Simon, I have somewhat to say unto thee. And he saith, Teacher, say on. Now 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. When 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, Now if we put the horses’ bridles into their mouths that they may obey us, we turn about their whole body also. But 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, 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. And 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. And I besought thy disciples to cast it out; and they could not. She ascended slowly and returned to Wilbur’s pen. And 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. The pen was grassy, and it was shaded from the sun by a shed roof. For they that sleep sleep in the night; and they that are drunken are drunken in the night. “I’ll tell you in the morning,” she said. Jesus saith unto him, Arise, take up thy bed, and walk. but 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. And now, Wilbur, it’s time you went to sleep.” Charley said the blanket bundle in his arms was airy as if it had been stuffed with cornhusks. She found an earthworm with its droppings! “I just love it here in the barn, said Wilbur. Judge not according to appearance, but judge righteous judgment. Then cometh Jesus from Galilee to the Jordan unto John, to be baptized of him. In 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. The frog seemed tired after his morning in the swing. And when the ten heard it, they began to be moved with indignation concerning James and John. He wrapped the blankets from his grandson’s bundle around his shoulders and began walking back down the trail. So then let us follow after things which make for peace, and things whereby we may edify one another. Servants, be obedient unto them that according to the flesh are your masters, with fear and trembling, in singleness of your heart, as unto Christ; When therefore they were gathered together, Pilate said unto them, Whom will ye that I release unto you? Barabbas, or Jesus who is called Christ? “You watch and see what he does.” In 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. Nobody noticed her. But 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. Because he saith also in another psalm, Thou wilt not give thy Holy One to see corruption. doth not behave itself unseemly, seeketh not its own, is not provoked, taketh not account of evil; In 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. And when we were escaped, then we knew that the island was called Melita. In a minute he had squeezed through the fence and was standing in the long grass outside his yard. Fern was enchanted. It relieved her mind to know that her baby would sleep covered up, and would stay warm. And 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. Have this mind in you, which was also in Christ Jesus: Existing independently outside the Nation for many years. Most decomposers are so small that you can't even see them. Then saith Jesus unto them, Fear not: go tell my brethren that they depart into Galilee, and there shall they see me. And 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. That's a fine specimen of a pig — it’s no bigger than a white rat.” Nevertheless, Ridge and I drank together some nights in the Queen and got along just fine when we were not talking business. In whole burnt offerings and sacrifices for sin thou hadst no pleasure: And I will say to my soul, Soul, thou hast much goods laid up for many years; take thine ease, eat, drink, be merry. When the child fell asleep, Spearfinger would stab her with the long awl finger and take out her liver. But the Jews that were disobedient stirred up the souls of the Gentiles, and made them evil affected against the brethren. The same was in the beginning with God. A moment later a tear came to Wilbur’s eye. The 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. Now 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. Stop your crying! and to them he said, Go ye also into the vineyard, and whatsoever is right I will give you. And they went their way. He poured a bucket of warm slops into the trough, and while Wilbur ate his breakfast Lurvy scratched him gently with a smooth stick. Ye know that when ye were Gentiles ye were led away unto those dumb idols, howsoever ye might be led. She wonders about what she observes in the soil. “Let's get busy! Edith, bring the buttermilk!” And 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. named of God a high priest after the order of Melchizedek. Remember Lot’s wife. And when the disciples heard it, they fell on their face, and were sore afraid. That's when I do my thinking, because then all the blood is in my head.” But 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. He said, George is out hunting. And 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. And if ye love them that love you, what thank have ye? for even sinners love those that love them. And Jesus said unto them, How many loaves have ye? And they said, Seven, and a few small fishes. But 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? then 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. I and the Father are one. If any one cometh unto you, and bringeth not this teaching, receive him not into your house, and give him no greeting: as free, and not using your freedom for a cloak of wickedness, but as bondservants of God. For he accepted indeed our exhortation; but being himself very earnest, he went forth unto you of his own accord. I reached out and ran my finger across the four knobs of bone. Templeton, who had been resting in his home, scuttled away into the barn. These things were done in Bethany beyond the Jordan, where John was baptizing. Your riches are corrupted, and your garments are moth-eaten. a devout man, and one that feared God with all his house, who gave much alms to the people, and prayed to God always. where their worm dieth not, and the fire is not quenched. Rain spattered against Mrs. Zuckerman’s kitchen windows and came gushing out of the downspouts. For 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. And behold, a man called by name Zacchæus; and he was a chief publican, and he was rich. Fern disappeared after a while, walking down the road toward Zuckermans’. So they don’t join up? I don’t spit on it. Whatsoever is sold in the shambles, eat, asking no question for conscience’ sake; There was no justice in the world anymore. But if we died with Christ, we believe that we shall also live with him; The woman struck her palms against each other twice, with a hard brushing smack. And 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. Defraud 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. We had better hurry along Sufficient to such a one is this punishment which was inflicted by the many; Ye 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: Salute Philologus and Julia, Nereus and his sister, and Olympas, and all the saints that are with them. I could feel them beating in my wrists and temples. Jesus therefore saith unto them, Children, have ye aught to eat? They answered him, No. You know where I’d really like to be this evening?” A man that hath set at nought Moses’ law dieth without compassion on the word of two or three witnesses: If 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. But they said, Not during the feast, lest a tumult arise among the people. I 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. God forbid. We who died to sin, how shall we any longer live therein? And 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. The grace of our Lord Jesus Christ be with your spirit. Amen. Pay out line! The rain caused the stream to rise, and, now it would be deep enough for him to swim up stream. merchandise 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; Paul, a servant of Jesus Christ, called to be an apostle, separated unto the gospel of God, And 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. Christ 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: He 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. And they all left him, and fled. I thank God, I speak with tongues more than you all: Lord, 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. “How’s that for a pig?” Mr. Zuckerman would ask, well pleased with himself. And after these things he was manifested in another form unto two of them, as they walked, on their way into the country. And the light shineth in the darkness; and the darkness apprehended it not. “Seems to me you're putting on weight.” Ha! Thought Rabbit. Then 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. for I will give you a mouth and wisdom, which all your adversaries shall not be able to withstand or to gainsay. You might, by chance, know what it is. For 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. And 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. And 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. It’s good in some ways, not so good in others. But beware of men: for they will deliver you up to councils, and in their synagogues they will scourge you; And 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. and if Christ hath not been raised, your faith is vain; ye are yet in your sins. that each one of you know how to possess himself of his own vessel in sanctification and honor, as touching zeal, persecuting the church; as touching the righteousness which is in the law, found blameless. Judas then, having received the band of soldiers, and officers from the chief priests and the Pharisees, cometh thither with lanterns and torches and weapons. And I will give unto my two witnesses, and they shall prophesy a thousand two hundred and threescore days, clothed in sackcloth. In these lay a multitude of them that were sick, blind, halt, withered. For 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. and whosoever would be first among you shall be your servant: To shine upon them that sit in darkness and the shadow of death; To guide our feet into the way of peace. saying, 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. Let 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. two women shall be grinding at the mill; one is taken, and one is left. “Oh, making something,” she said. Smith said they had ridden out from the fort shortly after dawn to go round people up and escort them back to the stockade. For if because of meat thy brother is grieved, thou walkest no longer in love. Destroy not with thy meat him for whom Christ died. and let him that is in the field not return back to take his cloak. And 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. but now, having no more any place in these regions, and having these many years a longing to come unto you, but each man is tempted, when he is drawn away by his own lust, and enticed. And 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. testifying both to Jews and to Greeks repentance toward God, and faith toward our Lord Jesus Christ. After 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: But 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. The sheep lay motionless. For he that is not against us is for us. saying, This man persuadeth men to worship God contrary to the law. “So far,” said Zuckerman, “only four people on earth know about this miracle—myself, my wife Edith, my hired man Lurvy, and you.” And other fell among the thorns, and the thorns grew up, and choked it, and it yielded no fruit. I didn’t see Ancih’s husband and said so to Charley. This Sequoyah must have been famous, we say. And 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. but he, because he abideth for ever, hath his priesthood unchangeable. His opinion was, the new boots were close to the finest he had ever worn. It was fine to jump in, and perfect to hide in. For he that speaketh in a tongue speaketh not unto men, but unto God; for no man understandeth; but in the spirit he speaketh mysteries. But we believe that we shall be saved through the grace of the Lord Jesus, in like manner as they. And many more happy, tranquil days followed. Brethren, be ye imitators together of me, and mark them that so walk even as ye have us for an ensample. And 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? And in the fourth watch of the night he came unto them, walking upon the sea. For he hath looked upon the low estate of his handmaid: For behold, from henceforth all generations shall call me blessed. And the peace of God, which passeth all understanding, shall guard your hearts and your thoughts in Christ Jesus. And the Holy Spirit also beareth witness to us; for after he hath said, Whereupon he promised with an oath to give her whatsoever she should ask. And 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. Even so faith, if it have not works, is dead in itself. And he that doth not take his cross and follow after me, is not worthy of me. “Easy to fool,” said Charlotte. I believe we have reached a deal, he said. and 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. He doesn't know what it is, said Squirrel. for 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. So 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. which some professing have erred concerning the faith. Grace be with you. but I trust in the Lord that I myself also shall come shortly. But at midnight there is a cry, Behold, the bridegroom! Come ye forth to meet him. And 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; And 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? and were continually in the temple, blessing God. On those actions, as opposed to a matter of chicken bones, Jackson had no comment one way or the other. At four would come supper. I’m afraid he’s much bigger than you are.” Are you all right? “Good idea,” said Charlotte. I was trying to avoid saying that you look the fool. And he that sent me is with me; he hath not left me alone; for I do always the things that are pleasing to him. Neither shalt thou swear by thy head, for thou canst not make one hair white or black. to them that by patience in well-doing seek for glory and honor and incorruption, eternal life: I 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. And Jesus said unto him, If thou canst! All things are possible to him that believeth. And 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. And 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. “No, the trough is dry, and I want you to go to sleep. Nevertheless 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. And 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. And he showed me a river of water of life, bright as crystal, proceeding out of the throne of God and of the Lamb, Avery grabbed the jar and rushed to the truck. Perry 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. He said, No money at all? And 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. I had since visited every fine tailor and cobbler in the city and had acquired all the wardrobe I could afford. Ye offspring of vipers, how can ye, being evil, speak good things? for out of the abundance of the heart the mouth speaketh. saying, 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: But 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. After 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. who 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. He rose slowly to his feet, while the geese cheered. And 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. But if we shall say, From men; we fear the multitude; for all hold John as a prophet. And 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. And when he was alone, they that were about him with the twelve asked of him the parables. But some of them said, By Beelzebub the prince of the demons casteth he out demons. Asmeret has found some decomposers under a log! There can be no mistake about it. And if I by Beelzebub cast out demons, by whom do your sons cast them out? therefore shall they be your judges. He didn't know whether he could endure the awful loneliness any more. And 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. “Fern,” said her mother sternly, “you must not invent things. He shook hands with the minister, and left. What happened? ᎠᏆᏛᏅ. And 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. For 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. I don’t know what the girls were expecting when they reached the young gentlemen’s ancestral home. But their eyes were holden that they should not know him. These things speak and exhort and reprove with all authority. Let no man despise thee. He took the letter from the scribe and tossed it back among the clutter. “Nicely done, nicely done!” cried the goose. And he said unto them, How say they that the Christ is David’s son? And they came to Capernaum: and when he was in the house he asked them, What were ye reasoning on the way? according 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. For 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. Claire did not even lift her face from where it was pressed in the space between my neck and shoulder. And at the second time Joseph was made known to his brethren; and Joseph’s race became manifest unto Pharaoh. Writers can tell any lie that leaps into their heads. And he said unto them, When I sent you forth without purse, and wallet, and shoes, lacked ye anything? And they said, Nothing. And the apostles said unto the Lord, Increase our faith. I don’t feel good at all. seeing 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; So, as much as in me is, I am ready to preach the gospel to you also that are in Rome. And Joseph sent, and called to him Jacob his father, and all his kindred, threescore and fifteen souls. Where your fathers tried me by proving me, And saw my works forty years. Which of you convicteth me of sin? If I say truth, why do ye not believe me? For each tree is known by its own fruit. For of thorns men do not gather figs, nor of a bramble bush gather they grapes. And 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. For 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. In the forever that was, all the forest dwellers spoke Cherokee. and Jesse begat David the king. And David begat Solomon of her that had been the wife of Uriah; For 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 but he whom God raised up saw no corruption. Yea 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, And the day following Paul went in with us unto James; and all the elders were present. The 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. Mr. Zuckerman and Mr. Arable and Lurvy grabbed the pig and pushed him headfirst toward the crate. One day when the stream merged with a larger creek, Littlefish entered it without much fear at all. And they began to beseech him to depart from their borders. In 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. IV. Loneliness I say unto you, that he will avenge them speedily. Nevertheless, when the Son of man cometh, shall he find faith on the earth? But food will not commend us to God: neither, if we eat not, are we the worse; nor, if we eat, are we the better. instructing us, to the intent that, denying ungodliness and worldly lusts, we should live soberly and righteously and godly in this present world; Charley sat by the fire a long time thinking about food. Lurvy appeared, carrying an Indian blanket that he had won. without 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. I 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. And we have beheld and bear witness that the Father hath sent the Son to be the Saviour of the world. There 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. for thou hast had five husbands; and he whom thou now hast is not thy husband: this hast thou said truly. Let no man deceive you with empty words: for because of these things cometh the wrath of God upon the sons of disobedience. “Wilbur’s not dirty,” said Mr. Zuckerman proudly. and whosoever liveth and believeth on me shall never die. Believest thou this? As touching the gospel, they are enemies for your sake: but as touching the election, they are beloved for the fathers’ sake. And Jesus said unto him, Friend, do that for which thou art come. Then they came and laid hands on Jesus, and took him. Jesus said unto him, Thou hast both seen him, and he it is that speaketh with thee. Nathanael 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. Things change, he said. Bear kept close watch over all the dealings, and at one point he asked if I knew what the difference between us was. upon 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. And if Wilbur goes there to live, you can walk down the road and visit him as often as you like.” and in your godliness brotherly kindness; and in your brotherly kindness love. but 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: “My name,” said the spider, “is Charlotte.” if 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. and 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. The old sheep nodded. “I don’t deserve it. And they laid hands on them, and put them in ward unto the morrow: for it was now eventide. “Bee-bee-bee!” but when they came to Jesus, and saw that he was dead already, they brake not his legs: Likewise even as it came to pass in the days of Lot; they ate, they drank, they bought, they sold, they planted, they builded; He shall not strive, nor cry aloud; Neither shall any one hear his voice in the streets. And when they heard it, they marvelled, and left him, and went away. Now this he said not of himself: but being high priest that year, he prophesied that Jesus should die for the nation; When 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. And he said unto them, Ye are from beneath; I am from above: ye are of this world; I am not of this world. Therefore seeing we have this ministry, even as we obtained mercy, we faint not: Jesus therefore answered them, and said, My teaching is not mine, but his that sent me. “Charlotte A. Cavatica. And he answered and said unto it, No man eat fruit from thee henceforward for ever. And his disciples heard it. Till I come, give heed to reading, to exhortation, to teaching. And the disciples came, and said unto him, Why speakest thou unto them in parables? Because the foolishness of God is wiser than men; and the weakness of God is stronger than men. and he said unto him, All these things will I give thee, if thou wilt fall down and worship me. And when we had sailed across the sea which is off Cilicia and Pamphylia, we came to Myra, a city of Lycia. “You call that miserable thing a pig? saying, 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. And then she straightened her clothes and smiled and kissed me a glancing blow on my cheekbone. For he is not a Jew who is one outwardly; neither is that circumcision which is outward in the flesh: I didn’t know where to begin arguing with these people. But 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. For Moses said, Honor thy father and thy mother; and, He that speaketh evil of father or mother, let him die the death: even he to whom it was said, In Isaac shall thy seed be called: And 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. He sat up and pulled wisely at his long whiskers, then crept away to pay a visit to the dump. They threw rocks at it. But if a man walk in the night, he stumbleth, because the light is not in him. I have not written unto you because ye know not the truth, but because ye know it, and because no lie is of the truth. XXI: Last Day For 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. But if ye have bitter jealousy and faction in your heart, glory not and lie not against the truth. and he had in his hand a little book open: and he set his right foot upon the sea, and his left upon the earth; And when this was done, the rest also that had diseases in the island came, and were cured: And 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. “I’m not inventing,” said Fern. Be 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. From three to four, he planned to stand perfectly still and think of what it was like to be alive, and to wait for Fern. But be it so, I did not myself burden you; but, being crafty, I caught you with guile. And 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? For 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. And he answered and said unto them, Why do ye also transgress the commandment of God because of your tradition? The best I could tell, my claim was not accepted, but neither was it rejected. and 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? Jesus, knowing that the Father had given all things into his hands, and that he came forth from God, and goeth unto God, And the scribes that came down from Jerusalem said, He hath Beelzebub, and, By the prince of the demons casteth he out the demons. Her eight legs were spread wide. for, Whosoever shall call upon the name of the Lord shall be saved. For we know in part, and we prophesy in part; Things change. Make for the woods! But Jesus answered and said, Suffer ye them thus far. And he touched his ear, and healed him. But he answered her not a word. And his disciples came and besought him, saying, Send her away; for she crieth after us. There was the web, sagging dangerously under the weight of the fish.” They 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. Now we that are strong ought to bear the infirmities of the weak, and not to please ourselves. And 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. And 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. This is he, of whom it is written, Behold, I send my messenger before thy face, Who shall prepare thy way before thee. Moreover certain women of our company amazed us, having been early at the tomb; For 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. He 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. In 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. And straightway he called them: and they left their father Zebedee in the boat with the hired servants, and went after him. Up you go! Repeat! Attach! Descend! Pay out line. “The Zuckerman pig is now being taken from his crate,” boomed the voice of the loud speaker. Then saith he unto his disciples, The harvest indeed is plenteous, but the laborers are few. “O.K., Wilbur,” said Charlotte. And he left them again, and went away, and prayed a third time, saying again the same words. and 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. Be sober, be watchful: your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour: There was this one time I was at Chapel Hill, and it was a Friday night. “When are you going to spin a web?” asked Wilbur. And they came with haste, and found both Mary and Joseph, and the babe lying in the manger. All these sights and sounds and smells will be yours to enjoy, Wilbur—this lovely world, these precious days ... And 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. I come quickly: hold fast that which thou hast, that no one take thy crown. And 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. The colonel smiled at my foolish lack of skill in negotiating. “Oh, everybody in the barn cellar. Intimate with Nature. I awoke in the dark. I 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. “ ‘Versatile’ means I can turn with ease from one thing to another. His 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. Even the goose was quiet. For if they do these things in the green tree, what shall be done in the dry? Then 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. Demetrius hath the witness of all men, and of the truth itself: yea, we also bear witness; and thou knowest that our witness is true. Between the woods and frozen lake but having food and covering we shall be therewith content. And it came to pass, when the days of his ministration were fulfilled, he departed unto his house. Old men and women and children. Five hundred, about. Arise, let us be going: behold, he that betrayeth me is at hand. But 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. And if he shall come in the second watch, and if in the third, and find them so, blessed are those servants. “I get everything all beautifully planned out and it has to go and rain,” he said. But he said, Yea rather, blessed are they that hear the word of God, and keep it. “We’re all going home today. And 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? It's just a common grey spider.” “I don’t know,” said Charlotte. And they drew nigh unto the village, whither they were going: and he made as though he would go further. I came to cast fire upon the earth; and what do I desire, if it is already kindled? This is the bread which cometh down out of heaven, that a man may eat thereof, and not die. and he charged them that they should take nothing for their journey, save a staff only; no bread, no wallet, no money in their purse; Everybody climbed out. And 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. It 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. Ye know this, my beloved brethren. But let every man be swift to hear, slow to speak, slow to wrath: And the people shouted, saying, The voice of a god, and not of a man. Now may our God and Father himself, and our Lord Jesus, direct our way unto you: And 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? And 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. Another thing I did that people chose to interpret as an eccentricity was to take an umbrella into the woods for especially wet days. But 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. So often in life, all the option Creation grants us is either shit or go blind. And he could there do no mighty work, save that he laid his hands upon a few sick folk, and healed them. even the righteousness of God through faith in Jesus Christ unto all them that believe; for there is no distinction; After a few games, with me whispering, Top left, bottom middle, Perry saw what he’d been missing. Salt therefore is good: but if even the salt have lost its savor, wherewith shall it be seasoned? And we see that they were not able to enter in because of unbelief. “Thanks,” said Charlotte. Perhaps we should let him be and give him some cornmeal. and 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. Beloved, if our heart condemn us not, we have boldness toward God; The trap clanged hard. “I can smell you from here. And 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. Pilate therefore entered again into the Prætorium, and called Jesus, and said unto him, Art thou the King of the Jews? And he said unto them, Why are ye troubled? and wherefore do questionings arise in your heart? Hereby we know that we love the children of God, when we love God and do his commandments. For 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. When Charley returned to camp the next day, it was with neither a bloody haunch over his shoulder nor a heroic story to tell. knowing this first, that in the last days mockers shall come with mockery, walking after their own lusts, Say 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. And 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. Weapons, leather goods, saddlebags, tin pots, and dirty linens. Father, 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. Partway there I saw her moving across the dark room without a candle. “That’s because you've never been to one,” remarked the old sheep. And 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, John came, who baptized in the wilderness and preached the baptism of repentance unto remission of sins. For we know that the whole creation groaneth and travaileth in pain together until now. Whosoever 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. neither shall they say, Lo, here! or, There! for lo, the kingdom of God is within you. And 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. On a hot day like this, Asmeret looks for decomposers under leaves and logs. And when Paul was minded to enter in unto the people, the disciples suffered him not. Made by whom? One day later, and I’ll wipe all of you away to the Territories. Water fell in runnels from the leaves onto the chalky ground litter under the shelter of the rhododendron and pooled at his feet. Charley remembered that last deer, a fat buck. And Jesus began to say unto them, Take heed that no man lead you astray. She climbed in with Wilbur and went to work. redeeming the time, because the days are evil. And 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: They already had all the fight beat out of them some time ago. And he said unto them, The sabbath was made for man, and not man for the sabbath: And they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why did ye not believe him? having a field, sold it, and brought the money and laid it at the apostles’ feet. “Yes, sir,” said Lurvy. And 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. And let the peace of Christ rule in your hearts, to the which also ye were called in one body; and be ye thankful. And the soldiers also mocked him, coming to him, offering him vinegar, The web glistened in the light and made a pattern of loveliness and mystery, like a delicate veil. And he had already abandoned fearfulness. All he could do was exercise an attitude of still acceptance. And Jesus asked him, What is thy name? And he said, Legion; for many demons were entered into him. Return 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. And he felt like he should find some nice tree that he could stay with. The slow water moved almost without sound. They were willing therefore to receive him into the boat: and straightway the boat was at the land whither they were going. No deadly plotting took place among them. And when he knocked at the door of the gate, a maid came to answer, named Rhoda. He wanted all Indians gone, no matter how rich or how white, and the provision was stricken from the final document. Note the smoothness and whiteness of the coat, observe the spotless skin, the healthy pink glow of ears and snout.” Let’s go. And he said, Nay, father Abraham: but if one go to them from the dead, they will repent. And 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. “The old sheep was right—this Fair is a rat’s paradise. And behold, there came to him a leper and worshipped him, saying, Lord, if thou wilt, thou canst make me clean. But because I say the truth, ye believe me not. The soldiers stood spaced out. It was about two miles from our house. and 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. And they could not answer again unto these things. And the jailor reported the words to Paul, saying, The magistrates have sent to let you go: now therefore come forth, and go in peace. But Sequoyah, they tell us, knew no English and couldn't read -- not even the letter A. A veil of blood streamed down my lower face. For they were about five thousand men. And he said unto his disciples, Make them sit down in companies, about fifty each. whom he gathered together, with the workmen of like occupation, and said, Sirs, ye know that by this business we have our wealth. I'll ask that big strong oak tree, I'm sure he'll have some room, he said. “I'm a pig! send them away, that they may go into the country and villages round about, and buy themselves somewhat to eat. And when he saw Jesus from afar, he ran and worshipped him; For 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. A look of complete bewilderment came over Mrs. Zuckerman’s face. And 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. And their eyes were opened. And Jesus strictly charged them, saying, See that no man know it. “I bet I can get him to help,” said the old sheep. Are not two sparrows sold for a penny? and not one of them shall fall on the ground without your Father: But Peter raised him up, saying, Stand up; I myself also am a man. And he must needs pass through Samaria. Wilbur’s stomach was empty and his mind was full. Where’s Papa going with that ax?” said Fern to her mother as they were setting the table for breakfast. For what thanksgiving can we render again unto God for you, for all the joy wherewith we joy for your sakes before our God; Wendy sighed. Tears began to come to his eyes. And he prayed again; and the heaven gave rain, and the earth brought forth her fruit. and if Christ hath not been raised, then is our preaching vain, your faith also is vain. And he saith unto them, Draw out now, and bear unto the ruler of the feast. And they bare it. I am a bottom feeder and have seen many different kinds of fish. He 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? And then, after four pours, he told that every day in these impenetrable woods and mountains left him terrified. “Catch his head again,” Charlie said. I 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. The goslings have arrived. “This magnificent animal,” continued the loud speaker, “is truly terrific. And they said, Lord, behold, here are two swords. And he said unto them, It is enough. They went to the high balds and camped in the long grass and waited. And 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. And 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. And she went out, and said unto her mother, What shall I ask? And she said, The head of John the Baptizer. The woods are lovely, dark, and deep, “That's where you're wrong, my friend, my friend,” said a voice. Jesus 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. And 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. Philip 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. The 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. “What's inside it?” asked Wilbur. And Jesus said unto them, Neither tell I you by what authority I do these things. But 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? You know perfectly well animals don’t talk.” “I hope you brought a good one,” Charlotte said. For of his fulness we all received, and grace for grace. And 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. For 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: She repeated this, making it double. Here are a few decomposers. On foggy mornings, Charlotte’s web was truly a thing of beauty. Jesus 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. I guess my face looked like a map in process of erasure. added this also to them all, that he shut up John in prison. But I’m working on a plan.” As for my whereabouts, that’s easy. All 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. A real gorge! Parthians and Medes and Elamites, and the dwellers in Mesopotamia, in Judæa and Cappadocia, in Pontus and Asia, yet hath he not root in himself, but endureth for a while; and when tribulation or persecution ariseth because of the word, straightway he stumbleth. And 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. Alright, Wolf! said Rabbit. These 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. “Now let us feast.” speaking one to another in psalms and hymns and spiritual songs, singing and making melody with your heart to the Lord; to 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. But if he hath wronged thee at all, or oweth thee aught, put that to mine account; But I seek not mine own glory: there is one that seeketh and judgeth. Beloved, 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. There 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. The lambs learned about it from their mothers. She 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. and if I ask you, ye will not answer. I will arise and go to my father, and will say unto him, Father, I have sinned against heaven, and in thy sight: One evening, just before Christmas, snow began falling. “Templeton?” Thou believest that God is one; thou doest well: the demons also believe, and shudder. When 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. but 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. while it is said, To-day if ye shall hear his voice, Harden not your hearts, as in the provocation. We know that we have passed out of death into life, because we love the brethren. He that loveth not abideth in death. She fed him again at suppertime, and again just before going to bed. “Sure I'm a spring pig,” replied Uncle. What 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. And Herodias set herself against him, and desired to kill him; and she could not; Putting away therefore all wickedness, and all guile, and hypocrisies, and envies, and all evil speakings, Naked because other children needed the clothes. And 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. And Peter calling to remembrance saith unto him, Rabbi, behold, the fig tree which thou cursedst is withered away. Many 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. I 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. and having found a ship crossing over unto Phoenicia, we went aboard, and set sail. When 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. A man can’t live in the woods. And we know that the judgment of God is according to truth against them that practise such things. and being fully assured that what he had promised, he was able also to perform. He wasn’t thinking of anything much. And 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; And straightway he entered into the boat with his disciples, and came into the parts of Dalmanutha. “My cousin used to stand on her head and let out enough thread to form a balloon. to 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. Charlotte, watching her chance, scrambled out of the crate and climbed a post to the under side of the roof. Get you no gold, nor silver, nor brass in your purses; Supper that night was beans and bacon and cornmeal mush fried crisp in lard. The hungry he hath filled with good things; And the rich he hath sent empty away. And 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; And 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. thou therefore that teachest another, teachest thou not thyself? thou that preachest a man should not steal, dost thou steal? He 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? He looked at the boy and said, Hey. And why are ye anxious concerning raiment? Consider the lilies of the field, how they grow; they toil not, neither do they spin: Bear looked at the crowd and waited in silence long enough for them to grow uncomfortable. The future held no hope. And 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: for 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. I was reading a Washington Irving book about the western prairies by candlelight reflected. if you’re a boy, or a young man, dating a girl, it’s kind of funny, you pretend to be brave all the time. Before 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. And John was clothed with camel’s hair, and had a leathern girdle about his loins, and did eat locusts and wild honey. Charlotte raced up to the top of the doorway. and I was afraid, and went away and hid thy talent in the earth: lo, thou hast thine own. Perhaps next time you might walk a little farther away from camp to shit. Goddamn, he said. There’s nothing to it at all. He was naked and already arranged by the women into fetal compactness. Once just a tiny seed, now you are an apple tree. Asmeret points to evidence of trees decomposing into soil. As Wilbur came out of the crate, the crowd clapped and cheered. And 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. And Jesus cried and said, He that believeth on me, believeth not on me, but on him that sent me. He mentioned this to the goose, who was sitting quietly in a corner of the sheepfold. He thought I was trying to scare him. Haden’s a detestable old sow. Blessed 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. for the things which are done by them in secret it is a shame even to speak of. And he said, Abba, Father, all things are possible unto thee; remove this cup from me: howbeit not what I will, but what thou wilt. But he that is joined unto the Lord is one spirit. He ran out of money.” In good time he was to discover that he was mistaken about Charlotte. Ye hypocrites, well did Isaiah prophesy of you, saying, but in the day that Lot went out from Sodom it rained fire and brimstone from heaven, and destroyed them all: Shabby as it was, there was almost nothing about the paddleboat and its passage eastward toward the Atlantic that I did not like. and be ye kind one to another, tenderhearted, forgiving each other, even as God also in Christ forgave you. being filled with all unrighteousness, wickedness, covetousness, maliciousness; full of envy, murder, strife, deceit, malignity; whisperers, Heaven and earth shall pass away: but my words shall not pass away. But that’s not always the way it happens, even with your head opened up, and I’ll leave it at that without further detail. But thou, O man of God, flee these things; and follow after righteousness, godliness, faith, love, patience, meekness. Her death was a sad victory for the people, for Spearfinger had once been one of them. When 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. But if they have not continency, let them marry: for it is better to marry than to burn. For 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. But 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; He 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. And 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; Wolf Wears Shoes: Told by Sequoyah Guess And 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. The morning light shone through its ears, turning them pink. And they gave him a piece of a broiled fish. Peter saith unto him, Thou shalt never wash my feet. Jesus answered him, If I wash thee not, thou hast no part with me. The lieutenant did not even bother to get down off his horse but said, That old man won’t live out the winter. for I say unto you, I shall not drink from henceforth of the fruit of the vine, until the kingdom of God shall come. and saying, Lord, my servant lieth in the house sick of the palsy, grievously tormented. But when the kindness of God our Saviour, and his love toward man, appeared, A 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. And 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 And not a one of them with the vote. Littlefish said, Hello Mud Dog. The earth beareth fruit of herself; first the blade, then the ear, then the full grain in the ear. Jesus therefore said to them again, Peace be unto you: as the Father hath sent me, even so send I you. saying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done. Jesus 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. He 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. For if we sin wilfully after that we have received the knowledge of the truth, there remaineth no more a sacrifice for sins, I can make a web in a single evening.” I’m shocked that a man of such rank is so misinformed, I said. But Bear had put his hope in a fistful of deeds, and his faith never wavered. VI. Summer Days For though we walk in the flesh, we do not war according to the flesh as newborn babes, long for the spiritual milk which is without guile, that ye may grow thereby unto salvation; For as yet they knew not the scripture, that he must rise again from the dead. who 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. I 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. “But somebody taught you, didn’t they?” Later 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. He faced the water flowing downstream, closed his eyes, and although he was scared, he decided to swim on. And even if our gospel is veiled, it is veiled in them that perish: Then 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. For 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. But cheer up, you don't need a web. and when he was cast out, Pharaoh’s daughter took him up, and nourished him for her own son. For the Son of man came to seek and to save that which was lost. And after three months we set sail in a ship of Alexandria which had wintered in the island, whose sign was The Twin Brothers. I coveted no man’s silver, or gold, or apparel. But the Spirit saith expressly, that in later times some shall fall away from the faith, giving heed to seducing spirits and doctrines of demons, And 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. And he spread the blanket across the sideboards of the truck so that it was like a little tent. Moreover, brethren, we make known to you the grace of God which hath been given in the churches of Macedonia; When I shall send Artemas unto thee, or Tychicus, give diligence to come unto me to Nicopolis: for there I have determined to winter. The frog jumped and landed in Mrs. Zuckerman’s dishpan full of soapy water. and others fell upon the good ground, and yielded fruit, some a hundredfold, some sixty, some thirty. And behold, a man named Joseph, who was a councillor, a good and righteous man And whatsoever ye shall ask in my name, that will I do, that the Father may be glorified in the Son. No trouble. And now, behold, I go bound in the spirit unto Jerusalem, not knowing the things that shall befall me there: “Oh, they can’t, can’t they?” murmured Charlotte to herself. But we will do the best we can, and stay until winter is gone. He had other plans, too. And if a kingdom be divided against itself, that kingdom cannot stand. So 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. “Very well,” said Charlotte. Let your speech be always with grace, seasoned with salt, that ye may know how ye ought to answer each one. For I had much joy and comfort in thy love, because the hearts of the saints have been refreshed through thee, brother. And 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. Uh, what do they say: ‘like a worm stuck onto me’ And so as I was walking halfway between where I lived and where her place was, halfway there, a long time ago, someone lived there. Then 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. And 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. and 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. And when he had begun to reckon, one was brought unto him, that owed him ten thousand talents. He lay down meekly in the manure, facing the door. For out of the heart come forth evil thoughts, murders, adulteries, fornications, thefts, false witness, railings: Who saved Charlotte's life by scaring that Arable boy away with a rotten goose egg? For 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. “Yes,” replied the doctor. And as some spake of the temple, how it was adorned with goodly stones and offerings, he said, Now Squirrel saw another shoe. His eyes closed. As 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. O righteous Father, the world knew thee not, but I knew thee; and these knew that thou didst send me; Then Peter, filled with the Holy Spirit, said unto them, Ye rulers of the people, and elders, The chickadee knew Spearfinger’s secret – that her heart was not in her chest. And 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: Rain 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. No? But now in Christ Jesus ye that once were far off are made nigh in the blood of Christ. “Fern’s father?” The soldiers are riding up and down the river looking for runners. Then she’d let go and be lifted into the air and carried upward on the warm wind.” “Well,” he thought, “I’ve got a new friend, all right. He was not the light, but came that he might bear witness of the light. and 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. Dr. Dorian, do you believe animals talk?” Watch ye, stand fast in the faith, quit you like men, be strong. being sore troubled because they taught the people, and proclaimed in Jesus the resurrection from the dead. but 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. Avery heard nothing but the applause. The chief priests therefore and the Pharisees gathered a council, and said, What do we? for this man doeth many signs. For according to their power, I bear witness, yea and beyond their power, they gave of their own accord, For 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. He 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, And 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? And he spake to them many things in parables, saying, Behold, the sower went forth to sow; But he answered and said, Verily I say unto you, I know you not. I know, because I have been down there and seen them. And 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: when they now shoot forth, ye see it and know of your own selves that the summer is now nigh. My 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. But 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. as Sarah obeyed Abraham, calling him lord: whose children ye now are, if ye do well, and are not put in fear by any terror. But the end of all things is at hand: be ye therefore of sound mind, and be sober unto prayer: That’s why Wild Hemp had died back in the last century at the end of the Revolution. But 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. Repent ye; for the kingdom of heaven is at hand. But 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, It could very well be near kin to words like cotillion or promenade. but 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. But 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. Wilbur let the rat eat first. The grace of our Lord Jesus Christ be with you. “Good night!” screamed Avery. Then, forgetting all about Wilbur’s breakfast, he walked back to the house and called Mr. Zuckerman. Yea, and for this very cause adding on your part all diligence, in your faith supply virtue; and in your virtue knowledge; And there came a voice to him, Rise, Peter; kill and eat. For we write no other things unto you, than what ye read or even acknowledge, and I hope ye will acknowledge unto the end: My goodness, I would have starved to death waiting that long. On Sunday morning Mr. and Mrs. Arable and Fern were sitting at breakfast in the kitchen. But the husbandmen, when they saw the son, said among themselves, This is the heir; come, let us kill him, and take his inheritance. The offense was failing to obey a command to pick up some chicken bones littering the ground. Now he was tired. But if I was to cull, I’d say, the way the air flows, maybe fore is better than aft. Then she summoned all her strength and waved one of her front legs at him. For Jesus himself testified, that a prophet hath no honor in his own country. And he said unto them, O foolish men, and slow of heart to believe in all that the prophets have spoken! And since then, all of us spiders have had to work the same trick. For whosoever would save his life shall lose it; but whosoever shall lose his life for my sake, the same shall save it. meekness, self-control; against such there is no law. Almost every morning there was another new lamb in the sheepfold. What shall we say then? That the Gentiles, who followed not after righteousness, attained to righteousness, even the righteousness which is of faith: And 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; “So is yours!” cried Avery, sailing out again with the frog. But unto each one of us was the grace given according to the measure of the gift of Christ. whereof I was made a minister, according to the dispensation of God which was given me to you-ward, to fulfil the word of God, What a stink! Charley 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. And 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. Jesus answered, I told you that I am he; if therefore ye seek me, let these go their way: A balloon filled with hot breath. Wilbur’s heart almost stopped when he saw what was going on. And he wrote a letter after this form: And being in an agony he prayed more earnestly; and his sweat became as it were great drops of blood falling down upon the ground. Her goal was to be done and gone before the soldiers came. But he said unto him, A certain man made a great supper; and he bade many: But he perceived their craftiness, and said unto them, Ye are not straitened in us, but ye are straitened in your own affections. Them that sin reprove in the sight of all, that the rest also may be in fear. In that day ye shall know that I am in my Father, and ye in me, and I in you. The whole world will hear about you. Salute Prisca and Aquila my fellow-workers in Christ Jesus, Arise 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. And 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. Their sharp hooves left him looking like he’d taken a beating with a war club. And Peter said, Lo, we have left our own, and followed thee. Whosoever doth not bear his own cross, and come after me, cannot be my disciple. And behold, all the city came out to meet Jesus: and when they saw him, they besought him that he would depart from their borders. I did not know what that might mean other than a girl proving to be married when you thought she was not. Jesus 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. and he fell upon the earth, and heard a voice saying unto him, Saul, Saul, why persecutest thou me? But them that are without God judgeth. Put away the wicked man from among yourselves. The morning sun shone through his pink ears. You climbed a ladder to the hayloft. and 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. She has a web across the top of Wilbur’s doorway. “He’s very radiant,” said Fern, remembering the day he was born. And 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. and charged them that they should not make him known: And 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. And there was also a superscription over him, THIS IS THE KING OF THE JEWS. And we were in all in the ship two hundred threescore and sixteen souls. “How touching! crying 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. And behold, a certain lawyer stood up and made trial of him, saying, Teacher, what shall I do to inherit eternal life? For though I was free from all men, I brought myself under bondage to all, that I might gain the more. Millipede For 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, One afternoon, when Fern was sitting on her stool, the oldest sheep walked into the barn, and stopped to pay a call on Wilbur. At 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: “Salutations!” said the voice. All our family have been trappers. Were they any good at it? But Saul laid waste the church, entering into every house, and dragging men and women committed them to prison. but the sons of the kingdom shall be cast forth into the outer darkness: there shall be the weeping and the gnashing of teeth. Or 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? Having eyes, see ye not? and having ears, hear ye not? and do ye not remember? She simmered them in a black iron pot. and as he sowed, some seeds fell by the way side, and the birds came and devoured them: The 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. But 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. But the king was wroth; and he sent his armies, and destroyed those murderers, and burned their city. Jesus therefore said to those Jews that had believed him, If ye abide in my word, then are ye truly my disciples; But Jesus said, Let her alone; why trouble ye her? she hath wrought a good work on me. “But I feel like the end of along day.” Make the crate large and paint it green with gold letters! ” I searched down long corridors for someone to whom I might present the letter. that he might sanctify it, having cleansed it by the washing of water with the word, He 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. All 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. The man went away, and told the Jews that it was Jesus who had made him whole. He sailed out through the door, frog and all, and into the sky, frog and all. “Charlotte?” he said, in a whisper. About all the Indian he could have had in him was a half-blood grandmother, but that was enough. The crickets felt it was their duty to warn everybody that summertime cannot last forever. And he spake also a parable unto them, Can the blind guide the blind? shall they not both fall into a pit? For 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: Even at that desperate moment, they knew no altitude was high enough to offer sanctuary or refuge. pray without ceasing; Her mother dusted the sitting room. Thou gavest me no kiss: but she, since the time I came in, hath not ceased to kiss my feet. Everyone in camp still seemed to lie abed, though the sun had been up for nearly an hour. saying, 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. And Moses indeed was faithful in all his house as a servant, for a testimony of those things which were afterward to be spoken; Now lettest thou thy servant depart, Lord, According to thy word, in peace; The 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.) But 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. And 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. There 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. Lazily he placed his forepaws behind his head and crossed his knees, in an attitude of complete relaxation. And 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; Ye shall seek me, and shall not find me: and where I am, ye cannot come. And 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. The warriors saw this and knew it was a sign to aim there. And 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. But I have a baptism to be baptized with; and how am I straitened till it be accomplished! Then they suborned men, who said, We have heard him speak blasphemous words against Moses, and against God. And the maid saw him, and began again to say to them that stood by, This is one of them. The lamp of the body is the eye: if therefore thine eye be single, thy whole body shall be full of light. to 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. And now, Lord, look upon their threatenings: and grant unto thy servants to speak thy word with all boldness, Which things contain an allegory: for these women are two covenants; one from mount Sinai, bearing children unto bondage, which is Hagar. “It was a nice try.” The geese saw Avery in the crate and cheered. “Who is Templeton?” asked Mrs. Arable. These things have I spoken unto you, that ye should not be caused to stumble. Lets in bugs. Then he looked up at the egg sac. And her neighbors and her kinsfolk heard that the Lord had magnified his mercy towards her; and they rejoiced with her. Charley looked at the muskets on the ground and grinned and said, Hey, Will. And 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? He 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. and art confident that thou thyself art a guide of the blind, a light of them that are in darkness, Now he that planteth and he that watereth are one: but each shall receive his own reward according to his own labor. At this the crowd would yell and cheer. He no longer worried about being killed, for he knew that Mr. Zuckerman would keep him as long as he lived. He leaned over the fire as close as smoking meat, trying to get warmth. Rejoice in the Lord always: again I will say, Rejoice. As the seasons passed, the boy and the apple tree grew … Then she blew her nose. For there must be also factions among you, that they that are approved may be made manifest among you. They 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. And the third day there was a marriage in Cana of Galilee; and the mother of Jesus was there: And as he talked with him, he went in, and findeth many come together: The 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. Apparently I was the biggest spectacle that the suitemates had seen in quite a while. For there was a tabernacle prepared, the first, wherein were the candlestick, and the table, and the showbread; which is called the Holy place. Then 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. Not that any man hath seen the Father, save he that is from God, he hath seen the Father. And when he had said this, he breathed on them, and saith unto them, Receive ye the Holy Spirit: When 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. A little maple tree in the swamp heard the cricket song and turned bright red with anxiety. And as we labored exceedingly with the storm, the next day they began to throw the freight overboard; “Tell us.” The driver looked back at her. Exhort servants to be in subjection to their own masters, and to be well-pleasing to them in all things; not gainsaying; My sheep hear my voice, and I know them, and they follow me: And as he went, they spread their garments in the way. When the strong man fully armed guardeth his own court, his goods are in peace: I remember we spent the night there a couple of times. “Where are you? He opened the blanket and baked for a while. Mothers 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. “I’m a pig!” cried Avery, tossing handfuls of straw into the air. I 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. The first was their land. It was so difficult and beautiful that nobody wanted it but them. Most of it lay inconveniently vertical. but 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. He noticed that the end of Wilbur’s tail was within reach. And 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. By and by an old woman came hobbling along the trail. And 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. The red fish with the strange fins replied, Hello Littlefish, the people of the mountains call me Crawdaddy. I haven’t got your gift for words. Everybody is in the plot—- Lurvy, Zuckerman, even John Arable.” The grace of the Lord Jesus be with the saints. Amen. Life is always a rich and steady time when you are waiting for something to happen or to hatch. For these things came to pass, that the scripture might be fulfilled, A bone of him shall not be broken. He that hath an ear, let him hear what the Spirit saith to the churches. if ye have tasted that the Lord is gracious: Nobody had seen Templeton. And 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. Any gesture of accomplishment could stand tall, for it would lack further reference or perspective beyond itself. And the foolish said unto the wise, Give us of your oil; for our lamps are going out. And he that sweareth by the heaven, sweareth by the throne of God, and by him that sitteth thereon. and had seen that some of his disciples ate their bread with defiled, that is, unwashen, hands. And no man taketh the honor unto himself, but when he is called of God, even as was Aaron. “Edith, you're crazy,” mumbled Zuckerman. It’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. For John said unto him, It is not lawful for thee to have her. He 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. Now that the broken egg was buried, the air cleared and the barn smelled good again. (Behold, I come as a thief. Blessed is he that watcheth, and keepeth his garments, lest he walk naked, and they see his shame.) There’s not a second to be lost. The people are coming—they’ll be here in no time. Give us day by day our daily bread. Charley 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. And the chief priests accused him of many things. And when Jesus was come into Peter’s house, he saw his wife’s mother lying sick of a fever. Paul and Timothy, servants of Christ Jesus, to all the saints in Christ Jesus that are at Philippi, with the bishops and deacons: Wilbur blushed. “Good-bye!” she whispered. The beginning of the gospel of Jesus Christ, the Son of God. Neither 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. “Summer is over and gone,” repeated the crickets. For 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; The multitude answered, Thou hast a demon: who seeketh to kill thee? These things have I spoken unto you, that my joy may be in you, and that your joy may be made full. But what kind of world would it be if we all took every opportunity presented to us to assault the weak? Now that no man is justified by the law before God, is evident: for, The righteous shall live by faith; But whensoever it shall turn to the Lord, the veil is taken away. Thou wilt say then, Branches were broken off, that I might be grafted in. And they went through the region of Phrygia and Galatia, having been forbidden of the Holy Spirit to speak the word in Asia; Now there is in Jerusalem by the sheep gate a pool, which is called in Hebrew Bethesda, having five porches. For he perceived that for envy the chief priests had delivered him up. As he swam closer still he heard a large fish yell. Mr. Zuckerman sat down weakly and ate a doughnut. For therein is revealed a righteousness of God from faith unto faith: as it is written, But the righteous shall live by faith. The woman saith unto him, Sir, thou hast nothing to draw with, and the well is deep: whence then hast thou that living water? Then understood the disciples that he spake unto them of John the Baptist. Perhaps 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. then let them that are in Judæa flee unto the mountains: He saith unto them, How then doth David in the Spirit call him Lord, saying, Show ye therefore unto them in the face of the churches the proof of your love, and of our glorying on your behalf. “It’s the buttermilk,” whispered Mrs. Arable to Mrs. Zuckerman. “What was my mother’s middle initial?” asked the second spider. And 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. The peas are always planted first. For 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: “Henry Fussy,” he mumbled. In that very hour there came certain Pharisees, saying to him, Get thee out, and go hence: for Herod would fain kill thee. He’s not proud and he’s near the ground.” In a few days she would have to drop everything and build the beautiful little sac that would hold her eggs. This was her hour of triumph. And he said, Lord, I believe. And he worshipped him. that they may train the young women to love their husbands, to love their children, that ye may walk becomingly toward them that are without, and may have need of nothing. And I heard also a voice saying unto me, Rise, Peter; kill and eat. And 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; And he asked his father, How long time is it since this hath come unto him? And he said, From a child. Smith was barely older than the boys, but he did his best to act confident beyond his years and experience. And they rehearsed the things that happened in the way, and how he was known of them in the breaking of the bread. He is not here, but is risen: remember how he spake unto you when he was yet in Galilee, It was a perfect piece of designing and building. For many bare false witness against him, and their witness agreed not together. Where are you all going? “I’ve always been rather quiet.” The 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, circumcised the eighth day, of the stock of Israel, of the tribe of Benjamin, a Hebrew of Hebrews; as touching the law, a Pharisee; Now there was there on the mountain side a great herd of swine feeding. And he went out, and wept bitterly. “What kind of an acrobat do you think I am?” said Charlotte in disgust. And behold, certain of the scribes said within themselves, This man blasphemeth. And again he denied with an oath, I know not the man. Follow after peace with all men, and the sanctification without which no man shall see the Lord: For God called us not for uncleanness, but in sanctification. Fern had a monkey doll in her arms and was eating Crackerjack. shouldest not thou also have had mercy on thy fellow-servant, even as I had mercy on thee? She don’t need your little pasteboard, but I’ll tell her you’re calling. They 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. To proclaim the acceptable year of the Lord. because we are members of his body. The barn was very large. It was very old. He looked as if he needed a nap or a drink. “Can I have a pig, too, Pop?” asked Avery. And except those days had been shortened, no flesh would have been saved: but for the elect’s sake those days shall be shortened. He 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. Then 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. “None of us like him much.” Frankly, sir, I cannot understand our continuing concern with this land and its inhabitants either white or red. Marvel not that I said unto thee, Ye must be born anew. He loves Fern almost as much as we do, and I want him to know how queerly she is acting about that pig and everything. My little children, guard yourselves from idols. and if we know that he heareth us whatsoever we ask, we know that we have the petitions which we have asked of him. So we walked over to Granville Towers, and when they got there their friend came out the door to meet them. Our land was not the Nation, it was America. “It’s sunstroke,” said Zuckerman. So that thou art no longer a bondservant, but a son; and if a son, then an heir through God. Ye 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. You people spit on peace. This is a tree that died years ago. He made them epic animals in his story, inhabitants of an old better world not to come round again. Did not my hand make all these things? Look for oats! When 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. then shall ye begin to say, We did eat and drink in thy presence, and thou didst teach in our streets; Now there were certain Greeks among those that went up to worship at the feast: Now Bethany was nigh unto Jerusalem, about fifteen furlongs off; “Looks fine,” snapped Mr. Zuckerman, as he and Lurvy set the crate down in front of Wilbur. I 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. Flowers? By faith Isaac blessed Jacob and Esau, even concerning things to come. Are all apostles? are all prophets? are all teachers? are all workers of miracles? Even as it is written, For thy sake we are killed all the day long; We were accounted as sheep for the slaughter. If then thou countest me a partner, receive him as myself. For they refreshed my spirit and yours: acknowledge ye therefore them that are such. Ye 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. The 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. neither 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. After a while, I went over and said, Look, son. I got started counting, so I kept on—just to keep my mind occupied.” and by some, that Elijah had appeared; and by others, that one of the old prophets was risen again. Are they not all ministering spirits, sent forth to do service for the sake of them that shall inherit salvation? And there came a cloud overshadowing them: and there came a voice out of the cloud, This is my beloved Son: hear ye him. From 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. The rat, surprised out of a sound sleep, looked first dazed then disgusted. flies spent their time pestering others. Ye were running well; who hindered you that ye should not obey the truth? “Never mind that—do as I say! He walked to the trough and took a long drink of slops, sucking in the milk hungrily and chewing the popover. Charlotte's babies were disappearing at a great rate. And every priest indeed standeth day by day ministering and offering oftentimes the same sacrifices, the which can never take away sins: From eight to nine, Wilbur planned to take a nap outdoors in the sun. And it came to pass, that, when I had returned to Jerusalem, and while I prayed in the temple, I fell into a trance, He backed them down. Verily, 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. And another said, I have bought five yoke of oxen, and I go to prove them; I pray thee have me excused. amidst which they found me purified in the temple, with no crowd, nor yet with tumult: but there were certain Jews from Asia— The board gave way. for 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. As 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. They were a band of fugitives living hard and pressed, starving and hopeless, but together in body and purpose. And when the Lord saw her, he had compassion on her, and said unto her, Weep not. And to the angel of the church in Smyrna write: These things saith the first and the last, who was dead, and lived again: I like high living, and what you say tempts me.” Let 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. that it might be fulfilled which was spoken through Isaiah the prophet, saying, Now 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: One day Charlie and Stephen went out for groceries. not because we have not the right, but to make ourselves an ensample unto you, that ye should imitate us. If any man hath an ear, let him hear. The 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. I 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: and many of the Jews had come to Martha and Mary, to console them concerning their brother. “Yes, I guess I am,” replied Wilbur. They 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. All of which is to say that for the Government, Chief Ross and the Ridges were unsatisfactory Indians and hard to deal with. I don’t understand it, and I don’t like what I can’t understand.” that ye no longer should live the rest of your time in the flesh to the lusts of men, but to the will of God. The women and little children stood together, off to the side, guarded by a pair of young soldiers. What then? shall we sin, because we are not under law, but under grace? God forbid. It was dark brown and seemed to be covered in mud. Simon Peter therefore beckoneth to him, and saith unto him, Tell us who it is of whom he speaketh. And seeing the multitudes, he went up into the mountain: and when he had sat down, his disciples came unto him: nor seeking glory of men, neither from you nor from others, when we might have claimed authority as apostles of Christ. When she opened her eyes she was looking up into the blue sky and was about to fly back through the door. A few, though, resembled actual human beings and seemed shaken and saddened by what they were doing. They chased her through the mountains, and then they dug a pit and trapped her in it. Much more then, being now justified by his blood, shall we be saved from the wrath of God through him. “We’re leaving here on the warm updraft. For 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: And when they sought to lay hold on him, they feared the multitudes, because they took him for a prophet. Soon was all the Green Man and God and the Black Rider had said. And it came to pass, on the next day, when they were come down from the mountain, a great multitude met him. And they feared exceedingly, and said one to another, Who then is this, that even the wind and the sea obey him? for all have sinned, and fall short of the glory of God; “What finally happened?” asked her mother, whose curiosity began to get the better of her. Neither the seven loaves of the four thousand, and how many baskets ye took up? And other fell on the rock; and as soon as it grew, it withered away, because it had no moisture. This is the disciple that beareth witness of these things, and wrote these things: and we know that his witness is true. I was met on deck by a little lean purser even younger than myself. “But I want you in bed again without delay.” Mr. Zuckerman was the most pleased of all. And 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; But 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? He did not know it, but his friend was very near. even 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. He answered and said, And who is he, Lord, that I may believe on him? And they were in all about twelve men. But the cold seeped through the weave of his clothing and chilled him deep in his joints. And 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. Over 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. Fern and Avery were standing in the body of the truck hanging on to the sideboards. And one of the multitude answered him, Teacher, I brought unto thee my son, who hath a dumb spirit; “Furthermore, each leg of mine has seven sections -— the coxa, the trochanter, the Fernur, the patella, the tibia, the metatarsus, and the tarsus.” There was no precedent for hunting your own people like game. Then one of the cows told one of the sheep, and soon all the sheep knew. The geese cheered. Charley’s people went back into the shelters and talked among themselves, and then Charley and Lowan and Jake came and squatted by the fire. for thus shall be richly supplied unto you the entrance into the eternal kingdom of our Lord and Saviour Jesus Christ. a corrector of the foolish, a teacher of babes, having in the law the form of knowledge and of the truth; My defence to them that examine me is this. “You lack a set of spinnerets, and you lack know-how. while 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. I do not play when there are eggs to hatch. Nobody said a word. Finally 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. What kind of day is it? she thought. And they said unto him, Where wilt thou that we make ready? And I heard the altar saying, Yea, O Lord God, the Almighty, true and righteous are thy judgments. It smelled of the perspiration of tired horses and the wonderful sweet breath of patient cows. so that ye may approve the things that are excellent; that ye may be sincere and void of offence unto the day of Christ; All the people of the town. He began to fall and sway. And they offered him wine mingled with myrrh: but he received it not. So then, brethren, stand fast, and hold the traditions which ye were taught, whether by word, or by epistle of ours. And when he heard concerning Jesus, he sent unto him elders of the Jews, asking him that he would come and save his servant. But this multitude that knoweth not the law are accursed. Mrs. Arable gave him a feeding around noontime each day, when Fern was away in school. and 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: I'm just about average for a pig.” But 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. No answer. And 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; That which I speak, I speak not after the Lord, but as in foolishness, in this confidence of glorying. Calhoun 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. But 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; But fornication, and all uncleanness, or covetousness, let it not even be named among you, as becometh saints; “Yes, indeed,” replied Templeton, who saved string. And 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. Howbeit 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. yet 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. The boy said he could smell squirrels, especially on damp days. “I’ve heard funnier ones, though. And Jesus said, Father, forgive them; for they know not what they do. And parting his garments among them, they cast lots. Back 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. Beloved, 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. And 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. Repent therefore of this thy wickedness, and pray the Lord, if perhaps the thought of thy heart shall be forgiven thee. “You ought to be ashamed of yourself,” said Charlotte in disgust. Paul, called to be an apostle of Jesus Christ through the will of God, and Sosthenes our brother, Mr. Arable kissed Mrs. Arable. for he beholdeth himself, and goeth away, and straightway forgetteth what manner of man he was. “Three of us are staying. Have peace. What we had before us were two bad choices. But woe unto them that are with child and to them that give suck in those days! for her sins have reached even unto heaven, and God hath remembered her iniquities. how I shrank not from declaring unto you anything that was profitable, and teaching you publicly, and from house to house, or ministry, let us give ourselves to our ministry; or he that teacheth, to his teaching; And a certain one of them smote the servant of the high priest, and struck off his right ear. “That’s a fine spider and I’m going to capture it,” said Avery. And he said unto him, What is written in the law? how readest thou? And 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; “You can’t all go. Perry 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. to whom they all gave heed, from the least to the greatest, saying, This man is that power of God which is called Great. that aged men be temperate, grave, sober-minded, sound in faith, in love, in patience: For 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. Go ye, and stand and speak in the temple to the people all the words of this Life. While 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. Then Wilbur looked more closely. and that he appeared to Cephas; then to the twelve; in all things showing thyself an ensample of good works; in thy doctrine showing uncorruptness, gravity, “Hoorray. yelled the crowd. The 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; Not an issue if I get the killers. if so be that it is a righteous thing with God to recompense affliction to them that afflict you, But 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. A weeding hoe, a shovel plow, a short-handled axe. Ye call me, Teacher, and, Lord: and ye say well; for so I am. The Pharisees therefore said unto him, Thou bearest witness of thyself; thy witness is not true. That kind of thing, you can’t get away with it anymore. and 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; Neither murmur ye, as some of them murmured, and perished by the destroyer. “Edith,” he said, trying to keep his voice steady, “I think you had best be told that we have a very unusual pig.” For perhaps he was therefore parted from thee for a season, that thou shouldest have him for ever; And 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. For 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. No more boundary lines. But the rat was in no hurry. But if any man buildeth on the foundation gold, silver, costly stones, wood, hay, stubble; withal 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; But she was greatly troubled at the saying, and cast in her mind what manner of salutation this might be. and to esteem them exceeding highly in love for their work’s sake. Be at peace among yourselves. And his affection is more abundantly toward you, while he remembereth the obedience of you all, how with fear and trembling ye received him. And there were the deeds Bear and I held to the land we occupied. to the one a savor from death unto death; to the other a savor from life unto life. And who is sufficient for these things? It was considerably more difficult to arrange a meeting with Crockett than with the president. Peter therefore seeing him saith to Jesus, Lord, and what shall this man do? “Just once more—please! said Charlotte. And he spake a parable unto them to the end that they ought always to pray, and not to faint; And if the firstfruit is holy, so is the lump: and if the root is holy, so are the branches. For the children, one little leg apiece like upside-down water drops of meat. Small split breasts and bony backs for everyone else. Concerning this thing I besought the Lord thrice, that it might depart from me. For though there be that are called gods, whether in heaven or on earth; as there are gods many, and lords many; Then another baby spider crawled to the top of the fence, stood on its head, made a balloon, and sailed away. And death and Hades were cast into the lake of fire. This is the second death, even the lake of fire. Jesus saw Nathanael coming to him, and saith of him, Behold, an Israelite indeed, in whom is no guile! For we are God’s fellow-workers: ye are God’s husbandry, God’s building. Now when they heard these things, they were cut to the heart, and they gnashed on him with their teeth. There are many who can make new selves at a moment’s notice. And Simon answered and said, Master, we toiled all night, and took nothing: but at thy word I will let down the nets. He swayed and toppled and landed on the edge of Wilbur’s trough. Hunted like animals in your own country. But ye, brethren, be not weary in well-doing. nor filthiness, nor foolish talking, or jesting, which are not befitting: but rather giving of thanks. The air carried the smell of the river and the mudflats. and 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: Then they also that are fallen asleep in Christ have perished. In a flash he was back on his feet. But at the last moment of Bear Drowning Him’s strength, the bear died. they gave him wine to drink mingled with gall: and when he had tasted it, he would not drink. and they that were troubled with unclean spirits were healed. “Very good!” said Charlotte. Let the elders that rule well be counted worthy of double honor, especially those who labor in the word and in teaching. And 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. His 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. He stood perfectly still and tried to look his best. Fern chuckled softly, and her eyes grew wide with love for the pig. And he asked him, What is thy name? And he saith unto him, My name is Legion; for we are many. And the shepherds returned, glorifying and praising God for all the things that they had heard and seen, even as it was spoken unto them. but the wise took oil in their vessels with their lamps. Wet day, Smith said. Bless them that persecute you; bless, and curse not. A rat can creep out late at night and have a feast. Jesus answered and said unto them, This is the work of God, that ye believe on him whom he hath sent. It 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. But 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. For what have I to do with judging them that are without? Do not ye judge them that are within? For as many as are led by the Spirit of God, these are sons of God. The 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. She knew she didn’t have much time. keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life. And 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; Suddenly a voice was heard on the loud speaker. And he said, I pray thee therefore, father, that thou wouldest send him to my father’s house; A special award will be made there in twenty minutes. If I told you earthly things and ye believe not, how shall ye believe if I tell you heavenly things? After 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; Wilbur could see the goose a few feet away. But Jesus knowing in himself that his disciples murmured at this, said unto them, Doth this cause you to stumble? And may the good Lord forgive me for this foolishness.” “Yes, I understand,” said Wilbur. They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out. “I don’t want to die! And 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. If you can’t get drunk when your entire world comes crashing down around your feet, why did God make alcohol to begin with? and Judah begat Perez and Zerah of Tamar; and Perez begat Hezron; and Hezron begat Ram; as 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. And 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. Charley stopped and turned back around and saw a motionless square shape, a dark interruption in the luminous fog. Children, obey your parents in the Lord: for this is right. for they poured out the blood of saints and prophets, and blood hast thou given them to drink: they are worthy. Confess 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. And many believed on him there. And 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, “It means nobody will be able to live here on account of the smell. “You needn't feel too badly, Wilbur,” she said. but 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. And all flesh shall see the salvation of God. For men swear by the greater: and in every dispute of theirs the oath is final for confirmation. The barn was still dark. Smoky and strange. For I shrank not from declaring unto you the whole counsel of God. “Just in time for a piece of blueberry pie,” said Mrs. Zuckerman. The neighbors therefore, and they that saw him aforetime, that he was a beggar, said, Is not this he that sat and begged? Humble yourselves therefore under the mighty hand of God, that he may exalt you in due time; But 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. Heaven and earth shall pass away: but my words shall not pass away. This was the greatest moment in Mr. Zuckerman’s life. The 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. And of the angels he saith, Who maketh his angels winds, And his ministers a flame of fire: But at some point, he said, it was just a job. opening 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. In the cool of the evening, when shadows darkened the Fair Grounds, Templeton crept from the crate and looked around. Also 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. I thank him that enabled me, even Christ Jesus our Lord, for that he counted me faithful, appointing me to his service; Now it was not written for his sake alone, that it was reckoned unto him; I. Before Breakfast And 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. Summer was half gone. And 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. Mr. Zuckerman and Lurvy and Fern and Avery rode in back, hanging onto the sideboards. But she paid no attention to him. Rejoice 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. But when the apostles, Barnabas and Paul, heard of it, they rent their garments, and sprang forth among the multitude, crying out Be ye merciful, even as your Father is merciful. the son of Jacob, the son of Isaac, the son of Abraham, the son of Terah, the son of Nahor, through whom we received grace and apostleship, unto obedience of faith among all the nations, for his name’s sake; Peter therefore was kept in the prison: but prayer was made earnestly of the church unto God for him. And the report concerning them came to the ears of the church which was in Jerusalem: and they sent forth Barnabas as far as Antioch: of whom do thou also beware; for he greatly withstood our words. He planned to leave half a noodle and a few drops of milk for Templeton. Brethren, be not children in mind: yet in malice be ye babes, but in mind be men. and a certain beggar named Lazarus was laid at his gate, full of sores, Vast caravans of Indians and slaves, accompanied by soldiers and missionaries, emptying the old Nation and filling the new one. And 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. and as they were eating, he said, Verily I say unto you, that one of you shall betray me. Claire rode away as the condemned ride the final cart to the gallows. “Templeton!” screamed Wilbur. Even so ought husbands also to love their own wives as their own bodies. He that loveth his own wife loveth himself: Now after John was delivered up, Jesus came into Galilee, preaching the gospel of God, And a second time they say, Hallelujah. And her smoke goeth up for ever and ever. And he said unto them, Go ye into all the world, and preach the gospel to the whole creation. “There's never anything to do around here,” he thought. Besides, it wouldn’t make any sense for you to stay. but he, when he had offered one sacrifice for sins for ever, sat down on the right hand of God; Settle it therefore in your hearts, not to meditate beforehand how to answer: And 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. Mercy unto you and peace and love be multiplied. And let the prophets speak by two or three, and let the others discern. For in Christ Jesus neither circumcision availeth anything, nor uncircumcision; but faith working through love. And he said unto another, Follow me. But he said, Lord, suffer me first to go and bury my father. Ye are witnesses of these things. “Time for us to go home,” he said to the pig. But when Jesus saw the reasoning of their heart, he took a little child, and set him by his side, She knew that they were in a desperately cramped position inside the shell and were most anxious to break through and get out. Destruction and misery are in their ways; Believe me that I am in the Father, and the Father in me: or else believe me for the very works’ sake. And the more I thought about it and imagined their conversation, the more disturbed I became. A bad sign. Count it all joy, my brethren, when ye fall into manifold temptations; On 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. And 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. Then it did something that came as a great surprise to Wilbur. When he looked up, they were all gone So the last shall be first, and the first last. And he said, That which proceedeth out of the man, that defileth the man. not giving heed to Jewish fables, and commandments of men who turn away from the truth. The nutrients that were in the leaves are now in the soil. But Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew. “You’ll be sorry-sorry-sorry,” called the goose. From nine to eleven he planned to dig a hole, or trench, and possibly find something good to eat buried in the dirt. A young spider knows how to spin a web without any instructions from anybody. Now this is come to pass, that it might be fulfilled which was spoken through the prophet, saying, “Don’t yell, Fern!” she said. “Your father is right. The pig would probably die anyway.” “Every time Lurvy slops him, the food runs down around the ears. Let 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. Howbeit with most of them God was not well pleased: for they were overthrown in the wilderness. The 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: giving diligence to keep the unity of the Spirit in the bond of peace. yet 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. one God and Father of all, who is over all, and through all, and in all. The world cannot hate you; but me it hateth, because I testify of it, that its works are evil. that I may not seem as if I would terrify you by my letters. They didn’t ask for it, she brought it. Lurvy! So then he hath mercy on whom he will, and whom he will he hardeneth. and shall deliver him unto the Gentiles to mock, and to scourge, and to crucify: and the third day he shall be raised up. In like manner also the chief priests mocking him, with the scribes and elders, said, Yea and on my servants and on my handmaidens in those days Will I pour forth of my Spirit; and they shall prophesy. For 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. For these are not drunken, as ye suppose; seeing it is but the third hour of the day; and 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? Rich soil has lots of nutrients. His 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. And he cometh unto the disciples, and findeth them sleeping, and saith unto Peter, What, could ye not watch with me one hour? He’s a dirt farmer. And when it was evening he cometh with the twelve. He had plowed up quite a piece of ground before anyone noticed him. Mrs. Zuckerman was the first to see him. They went to the storage house. who moreover assayed to profane the temple: on whom also we laid hold: And the rest of the Jews dissembled likewise with him; insomuch that even Barnabas was carried away with their dissimulation. He 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. And Judas Iscariot, he that was one of the twelve, went away unto the chief priests, that he might deliver him unto them. He 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: He glanced at Fern, then crept cautiously toward the goose, keeping close to the wall. Mrs. Zuckerman wiped her eyes with her handkerchief. So mightily grew the word of the Lord and prevailed. him, being delivered up by the determinate counsel and foreknowledge of God, ye by the hand of lawless men did crucify and slay: After these things Jesus manifested himself again to the disciples at the sea of Tiberias; and he manifested himself on this wise. He hasn’t touched his food.” He regretted fighting against other Indians, even though the Creeks had been enemies of the Cherokee long before the first whiteman erupted into the world. The door opened, and our neighbor got in and closed the door behind him. And 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. I suppose it was true, because a few days later he died. And Havana cigars wrapped carefully in oilcloth. But 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. and brought them out and said, Sirs, what must I do to be saved? “Well, I’m sort of sedentary myself, I guess,” said the pig. I wore a silk turban in the style recently adopted by many of the eastern Indians for occasions of high seriousness. The 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. For if that which passeth away was with glory, much more that which remaineth is in glory. This is a tree that died many years ago. Wolf walked along and moaned in agony. “Means I sit still a good part of the time and don’t go wandering all over creation. Mrs. Chapman claimed to have handmade them herself. And many other things spake they against him, reviling him. It wasn't a shoe. And when they found him on the other side of the sea, they said unto him, Rabbi, when camest thou hither? for it is God who worketh in you both to will and to work, for his good pleasure. And they went forth from thence, and passed through Galilee; and he would not that any man should know it. “But Charlotte,” said Wilbur, “I’m not terrific.” Tired from his romp, Wilbur lay down in the clean straw. Not a broken bird in my limbs. and ye are Christ’s; and Christ is God’s. Then she opened the lid again, lifted the pig out, and held it against her cheek. A 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. She stands on her head, lets out a lot of line, and is carried aloft on the wind. You’re not the first young man ever to do so. He awoke at six and saw the rain, and it seemed as though he couldn’t bear it. “Well, you're a good little pig, and radiant you shall be. “What? But 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; Then were gathered together the chief priests, and the elders of the people, unto the court of the high priest, who was called Caiaphas; It was a single long piece of heavy rope tied to the beam over the north doorway. Lurvy nailed some boards across the end, so Wilbur couldn't back out. “Now for the E!” “Charlotte,” said Wilbur. Cold coffee and cream skinned over in a cup. And 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. Then I came into the regions of Syria and Cilicia. and the salutations in the marketplaces, and to be called of men, Rabbi. Her hands out at waist level, palms forward, to touch doorframes, table corners, chair arms, crates of packed china, trunks of clothing. but they only heard say, He that once persecuted us now preacheth the faith of which he once made havoc; But 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. “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. For 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. The sheep moved off down the lane, the gander waddled along behind them, pulling grass. When he heard that the price was only six dollars, he said he would buy the pig. The crate was green. The larger fish always bossed him around. that 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; and James the son of Zebedee, and John the brother of James; and them he surnamed Boanerges, which is, Sons of thunder: O foolish Galatians, who did bewitch you, before whose eyes Jesus Christ was openly set forth crucified? You 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. who 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. And it came to pass on the morrow, that their rulers and elders and scribes were gathered together in Jerusalem; But she found that the barn was not nearly as pleasant — too many people. knowing this first, that no prophecy of scripture is of private interpretation. He went by the name of Dull Hoe and sometimes John. that the blood of all the prophets, which was shed from the foundation of the world, may be required of this generation; If David then calleth him Lord, how is he his son? And the Father that sent me, he hath borne witness of me. Ye have neither heard his voice at any time, nor seen his form. He crawled into the tunnel and disappeared from sight, completely covered with straw. Now when he heard that John was delivered up, he withdrew into Galilee; “Oh, good!” said Wilbur. the son of Serug, the son of Reu, the son of Peleg, the son of Eber, the son of Shelah, But 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. So Smith squatted on the ground with the other soldiers and refilled his pipe and smoked. He looked up at me from his puffing and said, You’re the lawyer? This mystery is great: but I speak in regard of Christ and of the church. Many other signs therefore did Jesus in the presence of the disciples, which are not written in this book: For 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. They’ve emptied out. and 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? But the man from whom the demons were gone out prayed him that he might be with him: but he sent him away, saying, The woman came back to the door and said Claire was not receiving visitors. Charlotte stood quietly over the fly, preparing to eat it. I beseech you, brethren, become as I am, for I also am become as ye are. Ye did me no wrong: Seeing 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. Of his own will he brought us forth by the word of truth, that we should be a kind of firstfruits of his creatures. These words spake he in the treasury, as he taught in the temple: and no man took him; because his hour was not yet come. And judge not, and ye shall not be judged: and condemn not, and ye shall not be condemned: release, and ye shall be released: Brethren, 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. Then 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. And 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. Lurvy went to shave and put on his plaid shirt and his purple necktie. “Certainly not,” said Charlotte. for 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. (howbeit there came boats from Tiberias nigh unto the place where they ate the bread after the Lord had given thanks): who was delivered up for our trespasses, and was raised for our justification. Every 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: Now unto him that is able to do exceeding abundantly above all that we ask or think, according to the power that worketh in us, Mr. and Mrs. Zuckerman were in bed by nine. Templeton, asleep in the straw, heard the commotion and awoke. And because iniquity shall be multiplied, the love of the many shall wax cold. But I will tarry at Ephesus until Pentecost; Go your ways; behold, I send you forth as lambs in the midst of wolves. And 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? I was left to stand on the logic of my argument about the sanctity of property ownership. Let 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. “You didn't even look at my hair!” said Mrs. Zuckerman. “You coach me and I'll spin one. It is my egg sac, my magnum opus.” But he denied before them all, saying, I know not what thou sayest. How to survive? Wolf doesn't know everything! And 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. A 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. saying, Amen: Blessing, and glory, and wisdom, and thanksgiving, and honor, and power, and might, be unto our God for ever and ever. Amen. He that hath ears, let him hear. “Let’s see ...one, two, three, four, five, six, seven. Charley’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. Heavy-timbered steep land. And 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. And I, brethren, when I came unto you, came not with excellency of speech or of wisdom, proclaiming to you the testimony of God. But 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, And 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. Most 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. And the Lord said unto him, Loose the shoes from thy feet: for the place whereon thou standest is holy ground. This parable spake Jesus unto them: but they understood not what things they were which he spake unto them. And 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. And 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: Wilbur thought hard. THE END The string trailed behind him. They are very big! “Listen to me,” whispered the old sheep to Wilbur. For John was not yet cast into prison. Rain fell on the backs of the sheep as they grazed in the meadow. I told them I would show them around, and they wanted to know where Granville Towers was, ‘cause that’s where their friend lived. who can bear gently with the ignorant and erring, for that he himself also is compassed with infirmity; In him was life; and the life was the light of men. Late that afternoon, Lurvy went to Mr. Zuckerman. How’s Avery?” he asked, opening his eyes wide. When 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. Now they know that all things whatsoever thou hast given me are from thee: She found an old milking stool that had been discarded, and she placed the stool in the sheepfold next to Wilbur’s pen. “Good night, Charlotte!” said Wilbur. delivering thee from the people, and from the Gentiles, unto whom I send thee, For our light affliction, which is for the moment, worketh for us more and more exceedingly an eternal weight of glory; At the bottom end of the rope was a fat knot to sit on. and asked them, saying, Is this your son, who ye say was born blind? how then doth he now see? For the gifts and the calling of God are not repented of. Ye fools and blind: for which is greater, the gold, or the temple that hath sanctified the gold? which 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; And 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. And Philip ran to him, and heard him reading Isaiah the prophet, and said, Understandest thou what thou readest? And both the Pharisees and the scribes murmured, saying, This man receiveth sinners, and eateth with them. Jesus 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. And his disciples answered him, Whence shall one be able to fill these men with bread here in a desert place? Charlotte climbed to a point at the top of the left hand side of the web. Just 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. In the distance he saw the Arables and the Zuckermans approaching. Cries of “Good—bye, good-bye, good-bye!” came weakly to Wilbur’s ears. and to know the love of Christ which passeth knowledge, that ye may be filled unto all the fulness of God. But 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. “Jump into the air!” cried Charlotte. And there followed him great multitudes from Galilee and Decapolis and Jerusalem and Judæa and from beyond the Jordan. without natural affection, implacable, slanderers, without self-control, fierce, no lovers of good, What 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. And all his acquaintance, and the women that followed with him from Galilee, stood afar off, seeing these things. Father, glorify thy name. There came therefore a voice out of heaven, saying, I have both glorified it, and will glorify it again. He that hath an ear, let him hear what the Spirit saith to the churches. but the very hairs of your head are all numbered. For 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. For freedom did Christ set us free: stand fast therefore, and be not entangled again in a yoke of bondage. Therefore also said the wisdom of God, I will send unto them prophets and apostles; and some of them they shall kill and persecute; Two 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. “Were you serious when you promised you would keep them from killing me?” for I have five brethren; that he may testify unto them, lest they also come into this place of torment. Is it true what the old sheep says, Charlotte? Think not that I will accuse you to the Father: there is one that accuseth you, even Moses, on whom ye have set your hope. and 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. Smith 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. When a pig is to be butchered, everybody helps. They were all draped about their chests and shoulders with powder horns and shot pouches. And 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. Spirits dwelled there, people said, a long time ago, just right by the building where I needed to pass by. Wherefore he saith, When he ascended on high, he led captivity captive, And gave gifts unto men. But godliness with contentment is great gain: but 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: Could you go tell that to the boys? Smith said. These are murmurers, complainers, walking after their lusts (and their mouth speaketh great swelling words), showing respect of persons for the sake of advantage. I am much too tired and too cold to keep trying to go on. For as touching the ministering to the saints, it is superfluous for me to write to you: But they shook off the dust of their feet against them, and came unto Iconium. But not that year. The Jews therefore marvelled, saying, How knoweth this man letters, having never learned? These all with one accord continued stedfastly in prayer, with the women, and Mary the mother of Jesus, and with his brethren. Most 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. “Let Wilbur alone!” she said. And even now I know that, whatsoever thou shalt ask of God, God will give thee. And when he had spent all, there arose a mighty famine in that country; and he began to be in want. Peter therefore denied again: and straightway the cock crew. “The way to save Wilbur’s life is to play a trick on Zuckerman. His trough had an inch of rainwater in it. “A rat is a rat,” said Charlotte. I don’t play with pigs.” And when they saw the star, they rejoiced with exceeding great joy. But if we discerned ourselves, we should not be judged. This is my first trip South I can hardly wait to know OH! But the Lord is faithful, who shall establish you, and guard you from the evil one. The Old Possum was implacable, and he meant to put an end to Indians. “I’m afraid not,” she said. Salute Apelles the approved in Christ. Salute them that are of the household of Aristobulus. by which also ye are saved, if ye hold fast the word which I preached unto you, except ye believed in vain. But all these things are the beginning of travail. But 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, and 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. and saying, If thou art the King of the Jews, save thyself. Avery lay dreaming that the Ferris wheel had stopped and that he was in the top car. yea, Father, for so it was well-pleasing in thy sight. And he went his way, and began to publish in Decapolis how great things Jesus had done for him: and all men marvelled. and 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: And 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. He was heavily armed — an air rifle in one hand, a wooden dagger in the other. “What’s that?” he demanded. “What’s Fern got?” Rest 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. Suffer hardship with me, as a good soldier of Christ Jesus. My argument is about ownership of land, not blood. And then Charley told a new story from the past month, another hunting tale. Wherefore 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. As 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, that thine alms may be in secret: and thy Father who seeth in secret shall recompense thee. and they found it not, though many false witnesses came. But afterward came two, “Thank you, Templeton,” he said. and that ye be renewed in the spirit of your mind, But because I have spoken these things unto you, sorrow hath filled your heart. I 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. The Lord grant mercy unto the house of Onesiphorus: for he oft refreshed me, and was not ashamed of my chain; “Attention, please!” he said in a loud, firm voice. And this commandment have we from him, that he who loveth God love his brother also. The 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. And I gave her time that she should repent; and she willeth not to repent of her fornication. “He’s got to go, Fern,” he said. And the people were waiting for Zacharias, and they marvelled while he tarried in the temple. But they held their peace: for they had disputed one with another on the way, who was the greatest. Blessed is the man to whom the Lord will not reckon sin. Avery noticed the spider web, and, coming closer, he saw Charlotte. and whosoever would be first among you, shall be servant of all. The thought of death came to him and he began to tremble with fear. “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 ...” And after these days we took up our baggage and went up to Jerusalem. And 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? The people all walked away from their homes fearing what their new lives held for them. they 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 Now 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: It was a still day, and I could hear voices inside. But Jesus said unto him, No man, having put his hand to the plow, and looking back, is fit for the kingdom of God. He sniffed the air and made a face. But 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; because that, knowing God, they glorified him not as God, neither gave thanks; but became vain in their reasonings, and their senseless heart was darkened. After Christmas the thermometer dropped to ten below zero. And 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; Wilbur rushed to the front of his pen. Claire was beautiful, beautiful. “Don’t shout, Fern!” said her mother. for it is sanctified through the word of God and prayer. When 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. This is the same bag after one month. How can something be less than nothing? I took pleasure in noting that few if any of them had run up against Charleston women. in which also he went and preached unto the spirits in prison, Breakfast would be finished at seven. And he said, All these things have I observed from my youth up. And as we have borne the image of the earthy, we shall also bear the image of the heavenly. And 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. You worthless little shitheel, he said. And this I pray, that your love may abound yet more and more in knowledge and all discernment; And after some business there, on to navigable water. And 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. And 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. Hearing this, Wilbur threw himself down in an agony of pain and sorrow. A bound boy, I thought. Then 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: And 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. There, before the door, lay a great serpent. He 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. “No,” said Wilbur. Take up that which is thine, and go thy way; it is my will to give unto this last, even as unto thee. (but if a man knoweth not how to rule his own house, how shall he take care of the church of God?) And 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. Mine was deep purple and patterned with yellow figures of pineapples. But 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? There, inside, looking up at her, was the newborn pig. The thorny chestnut husks had fallen and the nuts had been eaten every way there was to eat them. And when he was entered into Capernaum, there came unto him a centurion, beseeching him, for 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? What a silly thing to say. Now 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. Or somewhat fewer. “Then my name is Aranea,” said the spider. Several of Lichen’s hunters began working at the loads to their muskets, fooling with shot pouches and powder horns, checking the pans and priming. And when we had finished the voyage from Tyre, we arrived at Ptolemais; and we saluted the brethren, and abode with them one day. Jesus saith unto her, Woman, believe me, the hour cometh, when neither in this mountain, nor in Jerusalem, shall ye worship the Father. And 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; pursued, yet not forsaken; smitten down, yet not destroyed; And if ye do good to them that do good to you, what thank have ye? for even sinners do the same. And 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. But after I am raised up, I will go before you into Galilee. He's absolutely perfect.” In like manner also the chief priests mocking him among themselves with the scribes said, He saved others; himself he cannot save. If ye died with Christ from the rudiments of the world, why, as though living in the world, do ye subject yourselves to ordinances, Actually, Wilbur felt queer to be outside his fence, with nothing between him and the big world. We drove the carriage at high speed along the valley roads at any hour that suited us from dawn to midnight. Every one therefore who shall confess me before men, him will I also confess before my Father who is in heaven. Wilbur didn’t understand the word “languish” and he hated to bother Charlotte by asking her to explain. And the second came, saying, Thy pound, Lord, hath made five pounds. and leaving Nazareth, he came and dwelt in Capernaum, which is by the sea, in the borders of Zebulun and Naphtali: “Maybe he’s older than I am, and has had more time to grow,” suggested Wilbur. At intervals he found gouts of blood on the forest floor and broad smears against tree bark to confirm the correct working of his imagination. So 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. And 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. But as he lay there he remembered what the old sheep had told him. For 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: For 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: And he commanded them to be baptized in the name of Jesus Christ. Then prayed they him to tarry certain days. For nation shall rise against nation, and kingdom against kingdom; and there shall be famines and earthquakes in divers places. And he, when he is come, will convict the world in respect of sin, and of righteousness, and of judgment: and 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. Ye are our epistle, written in our hearts, known and read of all men; But 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. And, 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. Beloved, if God so loved us, we also ought to love one another. Maybe every life has one moment where everything could have been different if you’d climbed on the cart. “five hundred and fourteen?” said Wilbur. “Do a back flip with a half twist in it!” cried Charlotte. So when the Samaritans came unto him, they besought him to abide with them: and he abode there two days. This is a leaf that died months ago. But his countenance fell at the saying, and he went away sorrowful: for he was one that had great possessions. Ankle-deep, she stopped, wavering. Every morning after breakfast, Wilbur walked out to the road with Fern and waited with her till the bus came. Then he looked at Lurvy. Okay, said Wolf. Now 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. Saying 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. “Sorry, sorry, sorry,” said the goose. They talked and laughed and seemed able to let their larger circumstances not weigh on their thoughts for now. Largest, finest, cleanest, brightest. Those sorts of things. Your best. Now when Jesus was in Bethany, in the house of Simon the leper, And they all ate, and were filled: and they took up that which remained over of the broken pieces, twelve baskets full. God 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. She 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. But 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. for the perfecting of the saints, unto the work of ministering, unto the building up of the body of Christ: But Jesus said unto them, They have no need to go away; give ye them to eat. And Herod said, John I beheaded: but who is this, about whom I hear such things? And he sought to see him. I rejoice greatly that I have found certain of thy children walking in truth, even as we received commandment from the Father. Their eyes were dead and hopeless as polished river stones. And 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? For 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. In nothing be anxious; but in everything by prayer and supplication with thanksgiving let your requests be made known unto God. A fire of red cedar logs burned on the ground outside the house, and the smoke in the air smelled like incense. A voice was heard in Ramah, Weeping and great mourning, Rachel weeping for her children; And she would not be comforted, because they are not. And the boy Wasseton and the married daughter Ancih, and a few other women. We love our big summer garden, but no body likes to pick green beans on hot summer days! Then a hard left to the head, while the web swayed and stretched.” And 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? And it shall be, that every soul that shall not hearken to that prophet, shall be utterly destroyed from among the people. My little children, let us not love in word, neither with the tongue; but in deed and truth. that in the ages to come he might show the exceeding riches of his grace in kindness toward us in Christ Jesus: And 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. Now ye are the body of Christ, and severally members thereof. But if what I would not, that I do, I consent unto the law that it is good. But they held their peace. And he took him, and healed him, and let him go. Ye 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. Far away. She was brilliant, beautiful, and loyal to the end. But 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. I 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. And straightway Jesus, perceiving in his spirit that they so reasoned within themselves, saith unto them, Why reason ye these things in your hearts? But when the disciples saw it, they had indignation, saying, To what purpose is this waste? Do ye not yet perceive, neither remember the five loaves of the five thousand, and how many baskets ye took up? Everyone will be warm down south He 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. Both 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. I heard horses in the woods and went and collected the three and tailed them one to the other for travel. I said that by killing the soldiers, Charley and his people had brought similar threat of annihilation to all our people. Also a tin of ginger candies and a bottle of good Tennessee whiskey. But 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; And Jesus answering saith unto them, Have faith in God. But 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. “Wait a minute!” screamed Wilbur. “Oh, I'll work it out alone,” said Charlotte. There remaineth therefore a sabbath rest for the people of God. The numbers of the hunters had grown by the day. “Look out, the people are coming-oming-oming!” shouted the gander. And 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. And all the people when they heard, and the publicans, justified God, being baptized with the baptism of John. Then he shook hands with Mr. Zuckerman while Wilbur blushed. Faithful is the saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief: I 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: Think no more of it. This is your big day today. Jesus Christ is the same yesterday and to-day, yea and for ever. I 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. But when it was the good pleasure of God, who separated me, even from my mother’s womb, and called me through his grace, Ye 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. “I have decided to go with Wilbur. for sin, finding occasion, through the commandment beguiled me, and through it slew me. Lord, they have killed thy prophets, they have digged down thine altars; and I am left alone, and they seek my life. Kindly stand back and give the truck room to proceed! And 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. Let not then your good be evil spoken of: That moment has haunted me all my life. that, according as it is written, He that glorieth, let him glory in the Lord. Next 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. He dug roots and brushed the dirt off and ate them raw as apples. I 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. He 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. Various house clutter, basins, spoons, and dippers. “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. And most of all for not acting on it. Up overhead, in the shadows of the ceiling, Charlotte crouched unseen, her front legs encircling her egg sac. Or 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. And 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: We heard him say, I will destroy this temple that is made with hands, and in three days I will build another made without hands. “What does sedentary mean?” asked Wilbur. for 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; But 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. Now 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. And 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. And 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. Then, suddenly, the sound of runners coming close. Paul, 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, And he called to him the multitude, and said unto them, Hear, and understand: Smith became suddenly occupied with the tedium of writing. The cocker spaniel heard the commotion and he ran out from the barn to join the chase. Even as it is written, Jacob I loved, but Esau I hated. And it was the day of the Preparation, and the sabbath drew on. Zuckerman will be proud and happy to own such a pig. And they ran both together: and the other disciple outran Peter, and came first to the tomb; He pretended he was taking a shower bath; he made faces and danced around and rubbed imaginary soap under his armpits. But now I come to thee; and these things I speak in the world, that they may have my joy made full in themselves. And 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. And the scribes and the Pharisees began to reason, saying, Who is this that speaketh blasphemies? Who can forgive sins, but God alone? And 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? “There is to be no more cow manure thrown down into that pigpen. And 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. It had no gold. All would laugh if they heard. And many women were there beholding from afar, who had followed Jesus from Galilee, ministering unto him: And 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. But 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: even so ye also, when ye see these things coming to pass, know ye that he is nigh, even at the doors. And he saith unto them, Whosoever shall put away his wife, and marry another, committeth adultery against her: These are the two olive trees and the two candlesticks, standing before the Lord of the earth. His father an old veteran of 1812, his mother somewhat younger but now dead. For verily in this we groan, longing to be clothed upon with our habitation which is from heaven: Now it was the sabbath on the day when Jesus made the clay, and opened his eyes. “You can't stay here. And they had no child, because that Elisabeth was barren, and they both were now well stricken in years. And 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; Just then Charlotte interrupted. “You don’t suppose that that spider...” began Mr. Zuckerman — but he shook his head and didn’t finish the sentence. If therefore thou art offering thy gift at the altar, and there rememberest that thy brother hath aught against thee, So the tongue also is a little member, and boasteth great things. Behold, how much wood is kindled by how small a fire! Tell us, when shall these things be? and what shall be the sign when these things are all about to be accomplished? I therefore, the prisoner in the Lord, beseech you to walk worthily of the calling wherewith ye were called, “Well,” said Wilbur. I wanted to kiss them, but when I tried to pull her hand to me, she pulled it away. At least the wooden wine cases made fine bookshelves when stacked in a staggered fashion along the walls of the store’s sleeping room. Soon, he sat down. And be not drunken with wine, wherein is riot, but be filled with the Spirit; They closed awkwardly together, neither finding much purchase against the round slick stones of the riverbed. For 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. “Couldn't be worse. And if ye are Christ’s, then are ye Abraham’s seed, heirs according to promise. And 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. And 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. May I offer my sincere congratulations!” And 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! Salute all the brethren with a holy kiss. He said, Speaking of loss, you’re about to lose something too. For neither did I receive it from man, nor was I taught it, but it came to me through revelation of Jesus Christ. Wilbur examined it. The fly was beating its wings furiously, trying to break loose and free itself. But she had left them no choice. Avery obeyed his mother and climbed into the back of the truck so he could see better. But 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. But wilt thou know, O vain man, that faith apart from works is barren? Suddenly a small fish came by and said, Hello Bigfish, and swam on. And 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. He began to squeal. For godly sorrow worketh repentance unto salvation, a repentance which bringeth no regret: but the sorrow of the world worketh death. The Zuckermans and the Arables stared at the tag. Lurvy 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. Down 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. And when they had set them in the midst, they inquired, By what power, or in what name, have ye done this? Avery's wet trousers made a big wet spot on the seat. standing 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. Forasmuch 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; How many, then? if we endure, we shall also reign with him: if we shall deny him, he also will deny us: For David, after he had in his own generation served the counsel of God, fell asleep, and was laid unto his fathers, and saw corruption: For this cause God gave them up unto vile passions: for their women changed the natural use into that which is against nature: For 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. And 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. We really liked to visit our neighbors. And the disciples were filled with joy and with the Holy Spirit. Bear 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. Templeton, of course, was miserable over the loss of his beloved egg. And Paul went down, and fell on him, and embracing him said, Make ye no ado; for his life is in him. And then he sang the bear hunter’s song. And there appeared unto him an angel of the Lord standing on the right side of the altar of incense. Moreover 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. “Are you awake, Charlotte?” he said softly. And 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. Her blue skirt draped in her lap to outline her thighs, a shadowed valley between them. Sam Houston had been a regular before he fled to Texas, and the management still talked of him with sad affection. Set your mind on the things that are above, not on the things that are upon the earth. If ye keep my commandments, ye shall abide in my love; even as I have kept my Father’s commandments, and abide in his love. But 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. And when the first came, they supposed that they would receive more; and they likewise received every man a shilling. for 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, But 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. But 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. David 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. We know that God heareth not sinners: but if any man be a worshipper of God, and do his will, him he heareth. Lurvy reached out and grabbed. One of his disciples, Andrew, Simon Peter’s brother, saith unto him, who 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, and he came and preached peace to you that were far off, and peace to them that were nigh: And straightway, when they were come out of the synagogue, they came into the house of Simon and Andrew, with James and John. And the whole multitude of the people were praying without at the hour of incense. “Oh, look at him! And it came to pass, when Jesus had finished these parables, he departed thence. “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. Now Simon’s wife’s mother lay sick of a fever; and straightway they tell him of her: Give us this day our daily bread. When he jumped off, he threw the swing up to his sister. And Peter answered and said unto him, Declare unto us the parable. “I need it to spin a web.” “Why, it was old Templeton! Therefore we ought to give the more earnest heed to the things that were heard, lest haply we drift away from them. Love 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. And God, who knoweth the heart, bare them witness, giving them the Holy Spirit, even as he did unto us; And to these also Enoch, the seventh from Adam, prophesied, saying, Behold, the Lord came with ten thousands of his holy ones, And the scribe said unto him, Of a truth, Teacher, thou hast well said that he is one; and there is none other but he: It 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. And they were astonished exceedingly, saying unto him, Then who can be saved? I am not entirely happy about my diet of flies and bugs, but it’s the way I’m made. but lay up for yourselves treasures in heaven, where neither moth nor rust doth consume, and where thieves do not break through nor steal: And a woman, who had an issue of blood twelve years, Neglect not the gift that is in thee, which was given thee by prophecy, with the laying on of the hands of the presbytery. I 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. but taking his leave of them, and saying, I will return again unto you if God will, he set sail from Ephesus. And 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: Cass sat looking at me, at the hue of skin visible outside my clothing—my face and neck and handbacks—judging blood degree. And I turned to see the voice that spake with me. And having turned I saw seven golden candlesticks; All morning people wandered past Wilbur’s pen. but 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. Avery straddled the rope and jumped. The elder unto Gaius the beloved, whom I love in truth. “Imagine wanting a junky old rotten egg!” he muttered. He 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? “You don’t have to stay in that dirty-little dirty-little dirty-little yard,” said the goose, who talked rather fast. and have no fellowship with the unfruitful works of darkness, but rather even reprove them; And they that stood by said, Revilest thou God’s high priest? And 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. “What a night!” Not 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. Besides those things that are without, there is that which presseth upon me daily, anxiety for all the churches. “Look!” cried Fern. Wilbur stared back and tried to look extra good. For the Son of man also came not to be ministered unto, but to minister, and to give his life a ransom for many. and others fell upon the rocky places, where they had not much earth: and straightway they sprang up, because they had no deepness of earth: For his disciples were gone away into the city to buy food. having 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: and 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. “But I'm not sure Templeton will be willing to help. “Go to sleep. and shall begin to beat his fellow-servants, and shall eat and drink with the drunken; Their slim charred bones and tiny skulls were mixed with the white ashes of the fire pit. Now there were some present at that very season who told him of the Galilæans, whose blood Pilate had mingled with their sacrifices. But the spider was already out of sight. “We can start. I want to take a ride in the Ferris wheel.” saying, Teacher, Moses said, If a man die, having no children, his brother shall marry his wife, and raise up seed unto his brother. … yellow apples took their place. Behold, I cast her into a bed, and them that commit adultery with her into great tribulation, except they repent of her works. And 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: You’re the smelliest creature in the place.” For 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: Mr. Arable started the motor. So also ye, since ye are zealous of spiritual gifts, seek that ye may abound unto the edifying of the church. He scampered over to the crate, crawled between the slats, and pulled straw up over him so he was hidden from sight. Winter was falling soon, and they would need more shelter. even us, whom he also called, not from the Jews only, but also from the Gentiles? Tell your Uncle Homer you've got a pig you'll sell for six dollars, and see what he says.” They brawled down a hillside and then to the river’s edge and then onward until they were waist-deep in the water. but 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. Peter, 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? yea, we ourselves have had the sentence of death within ourselves, that we should not trust in ourselves, but in God who raiseth the dead: but 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. And their sins and their iniquities will I remember no more. And the Spirit said unto Philip, Go near, and join thyself to this chariot. And there was much joy in that city. “Ho-mer!” she cried. the 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. Without hesitating a second, he dashed the water at Wilbur. So ye are witnesses and consent unto the works of your fathers: for they killed them, and ye build their tombs. and 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. Wilbur leapt to his feet. And again, Praise the Lord, all ye Gentiles; And let all the peoples praise him. for a friend of mine is come to me from a journey, and I have nothing to set before him; And as Jesus returned, the multitude welcomed him; for they were all waiting for him. “What in thunder?” he said. Wilbur was merely suffering the doubts and fears that often go with finding a new friend. He 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. The grownups and the children joined hands and stood there, studying the new sign. Charlotte got so interested in her work, she began to talk to herself, as though to cheer herself on. he is puffed up, knowing nothing, but doting about questionings and disputes of words, whereof cometh envy, strife, railings, evil surmisings, They would bring with them quilts and pillows, and when it got late, some would make their pallets on the group and sleep. which he promised afore through his prophets in the holy scriptures, Peace 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. who devour widows’ houses, and for a pretence make long prayers: these shall receive greater condemnation. “In a day or two I'll be dead. I’m to make this my life and advance in it, he said. For 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. Stephen caught the beast’s head in the wooden tube and buried it in the rocky soil. And running under the lee of a small island called Cauda, we were able, with difficulty, to secure the boat: But 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; “The plan is still in its early stages and hasn't completely shaped up yet, but I’m working on it.” For Christ also pleased not himself; but, as it is written, The reproaches of them that reproached thee fell upon me. I am he that beareth witness of myself, and the Father that sent me beareth witness of me. And he looked up, and said, I see men; for I behold them as trees, walking. “You're too stuffed and bloated to know what you're saying. What happened to the other egg? Why didn’t it hatch?” Rabbit knew very well what it was. “He's quite a pig,” said Lurvy. who only hath immortality, dwelling in light unapproachable; whom no man hath seen, nor can see: to whom be honor and power eternal. Amen. and 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? It had been a busy day—his first day of being terrific. “All together, now, boys!” said Mr. Zuckerman. that the word of Jesus might be fulfilled, which he spake, signifying by what manner of death he should die. And seeing one of them suffer wrong, he defended him, and avenged him that was oppressed, smiting the Egyptian: And 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: “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. “Alone?” said Fern. He wished Fern were there to take him in her arms and comfort him. Whose mouth is full of cursing and bitterness: Or if he shall ask an egg, will he give him a scorpion? Littlefish thought about the stream that had brought him to the creek. I 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. More 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. But Tychicus I sent to Ephesus. Salute every saint in Christ Jesus. The brethren that are with me salute you. “He’s up!” said Mr. Arable. Or ‘ayatso’? “Sleep, sleep, my love, my only, Deep, deep, in the dung and the dark; Be not afraid and be not lonely! The baptism of John, was it from heaven, or from men? When 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. If I had been very small at birth, would you have killed me?” but 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. and 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. He 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. Calhoun’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. They nearly faded into the darkness, except for vague blurs of faces, the pale movements of hands. By this shall all men know that ye are my disciples, if ye have love one to another. He enjoyed good health and he gained a lot of weight. nor 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. in diligence not slothful; fervent in spirit; serving the Lord; When the Congress was in session, the houses were full from dusk until dawn. Every single part of her. Now if their fall is the riches of the world, and their loss the riches of the Gentiles; how much more their fulness? and 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. and I will give him the morning star. And behold, one came to him and said, Teacher, what good thing shall I do, that I may have eternal life? Did ye suffer so many things in vain? if it be indeed in vain. Now at the feast he used to release unto them one prisoner, whom they asked of him. Watch therefore, for ye know not the day nor the hour. They saw only a pig. It was a configuration of terrain that had an old appeal to the Cherokee and to the people before them. And in the house the disciples asked him again of this matter. “What does she look like?” asked Mrs. Arable. “And if you go in those swings,” said Mrs. Arable, “you hang on tight! You hang on very tight. “It is the last word I shall ever write.” Hitherto have ye asked nothing in my name: ask, and ye shall receive, that your joy may be made full. “I see no difference,” replied Fern, still hanging on to the ax. If 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. Axe looked at Charley and rubbed his hands down his face to compose himself for wakefulness. And then he looked more closely and said, You favor a man I once knew. The light from the east struck it and made it all plain and clear. “What are you going to do with it?” continued Templeton, his little round beady eyes fixed on the goose. for the multitude of the people followed after, crying out, Away with him. The first man is of the earth, earthy: the second man is of heaven. Now some are puffed up, as though I were not coming to you. They sat with their wool-socked feet close to the fire, steam rising from their toes. The 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? “Fine!” said Charlotte. She made a speech. For 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; they became aware of it, and fled unto the cities of Lycaonia, Lystra and Derbe, and the region round about: Salute all them that have the rule over you, and all the saints. They of Italy salute you. The hogs went about their work all hunched forward. he said, Give place: for the damsel is not dead, but sleepeth. And they laughed him to scorn. Simon answered and said, He, I suppose, to whom he forgave the most. And he said unto him, Thou hast rightly judged. For it was the good pleasure of the Father that in him should all the fulness dwell; The children ran to the barn. Blessed are the peacemakers: for they shall be called sons of God. And being warned of God in a dream that they should not return to Herod, they departed into their own country another way. And Peter remembered the word which Jesus had said, Before the cock crow, thou shalt deny me thrice. And he went out, and wept bitterly. And immediately he rose up before them, and took up that whereon he lay, and departed to his house, glorifying God. “Bee-bee-bee!” He will not see me stopping here and 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: And when they had spoken the word in Perga, they went down to Attalia; Your 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. With 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. Paul, an apostle (not from men, neither through man, but through Jesus Christ, and God the Father, who raised him from the dead), neither is he served by men’s hands, as though he needed anything, seeing he himself giveth to all life, and breath, and all things; Now 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. Its tail stretched across half the sky, and it had fallen through the night for weeks. I'm afraid to be alone, he thought Over in their favorite corner, the goslings whistled a night song. saying, 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! But what a gamble friendship is! And 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. And 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. And again he went away, and prayed, saying the same words. who, when they had examined me, desired to set me at liberty, because there was no cause of death in me. And they straightway left the boat and their father, and followed him. And 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. The grace of our Lord Jesus Christ be with you all. Amen. The little spider waved at him. The response was worded in such exquisite bureaucratic cant that it took me three readings to decipher its meaning. Seeing 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, One of these latter officers was a young lieutenant named Smith. Now the woman was a Greek, a Syrophoenician by race. And she besought him that he would cast forth the demon out of her daughter. And I, brethren, could not speak unto you as unto spiritual, but as unto carnal, as unto babes in Christ. Being 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. And I, being perplexed how to inquire concerning these things, asked whether he would go to Jerusalem and there be judged of these matters. After that, right through until dawn, the younger representatives came and went. This might be regarded as contributing some what to their resources in that respect. Beloved, 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. where they crucified him, and with him two others, on either side one, and Jesus in the midst. “Run downhill!” suggested the cows. and not for the nation only, but that he might also gather together into one the children of God that are scattered abroad. that I may know him, and the power of his resurrection, and the fellowship of his sufferings, becoming conformed unto his death; But Jesus no more answered anything; insomuch that Pilate marvelled. A child would lay her head down to be petted and the old woman would stroke her hair with that deadly spear finger. When they pulled into the Fair Grounds, they could hear music and see the Ferris wheel turning in the sky. And 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. With many other exhortations therefore preached he good tidings unto the people; And 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. These have one mind, and they give their power and authority unto the beast. And they were all amazed, and were perplexed, saying one to another, What meaneth this? but whoso keepeth his word, in him verily hath the love of God been perfected. Hereby we know that we are in him: And 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. It was a bad time of year to be a fugitive living off the land. And they departed quickly from the tomb with fear and great joy, and ran to bring his disciples word. for he had healed many; insomuch that as many as had plagues pressed upon him that they might touch him. and the third day they cast out with their own hands the tackling of the ship. And 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. “I pledge mine,” said Joy. And when they were gone up into the boat, the wind ceased. “You’re going with me, aren’t you, Charlotte?” he said. Now is the judgment of this world: now shall the prince of this world be cast out. He 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. And when he was at the place, he said unto them, Pray that ye enter not into temptation. The beast hissed menacingly and thrashed around, its great maw gaping. That night, I told the boys to toss out their charred cabbage. Shadows lengthened. Come, see a man, who told me all things that ever I did: can this be the Christ? “That remains to be seen. And their eyes were opened, and they knew him; and he vanished out of their sight. And behold, there was before him a certain man that had the dropsy. Dry dead laurel leaves under his hands and knees and feet were thick as nutshells. And the robbers also that were crucified with him cast upon him the same reproach. For, He that would love life, And see good days, Let him refrain his tongue from evil, And his lips that they speak no guile: “You wait! ” said Mrs. Arable. All 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. And the only reason for her death was that Indians had sided with the English, and the English had lost. No 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. She closed the carton carefully. But her father was firm about it. And 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: the son of Methuselah, the son of Enoch, the son of Jared, the son of Mahalaleel, the son of Cainan, And the men that held Jesus mocked him, and beat him. But whosoever shall deny me before men, him will I also deny before my Father who is in heaven. and that every tongue should confess that Jesus Christ is Lord, to the glory of God the Father. And I heard the angel of the waters saying, Righteous art thou, who art and who wast, thou Holy One, because thou didst thus judge: And 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. Around 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. And when he learned it of the centurion, he granted the corpse to Joseph. For if a man thinketh himself to be something when he is nothing, he deceiveth himself. Hunters had reported to him that people were hiding somewhere up among the highest mountains, starving and cold and sick. Lichen’s bunch. with all prayer and supplication praying at all seasons in the Spirit, and watching thereunto in all perseverance and supplication for all the saints, And 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. He didn’t know a thing about them and did not ever care to know. But let him ask in faith, nothing doubting: for he that doubteth is like the surge of the sea driven by the wind and tossed. When 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. I 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: “What is that nifty little thing? “Look at this!” Even so ye also, when ye see these things coming to pass, know ye that the kingdom of God is nigh. I’d take it as a favor if you’d lap that blanket shut before you turn around, the Charleston boy said. Wherefore, my brethren, desire earnestly to prophesy, and forbid not to speak with tongues. And it came to pass, while they were perplexed thereabout, behold, two men stood by them in dazzling apparel: That 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. Look at all the fish around us. Blessed are ye that hunger now: for ye shall be filled. Blessed are ye that weep now: for ye shall laugh. If any man’s work shall abide which he built thereon, he shall receive a reward. And 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. The sisters therefore sent unto him, saying, Lord, behold, he whom thou lovest is sick. And 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. So that the law is holy, and the commandment holy, and righteous, and good. By faith Joseph, when his end was nigh, made mention of the departure of the children of Israel; and gave commandment concerning his bones. It 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. Every valley shall be filled, And every mountain and hill shall be brought low; And the crooked shall become straight, And the rough ways smooth; He was a half-blood and lived on the outskirts of our land. Book me a cabin to the fore, then. Me and Will can save us. And into whatsoever house ye shall enter, first say, Peace be to this house. But some of them went away to the Pharisees, and told them the things which Jesus had done. He that loveth me not keepeth not my words: and the word which ye hear is not mine, but the Father’s who sent me. for then shall be great tribulation, such as hath not been from the beginning of the world until now, no, nor ever shall be. Fern 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. The old sheep spoke to him about his size one day. I 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. He would have felt lonely and homesick, had Charlotte not been with him. “I’m not going to spend all my time fetching and carrying. And the king rose up, and the governor, and Bernice, and they that sat with them: Hereby know ye the Spirit of God: every spirit that confesseth that Jesus Christ is come in the flesh is of God: Pilate 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. And with many such parables spake he the word unto them, as they were able to hear it; and 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. Then he poureth water into the basin, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded. For 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. Mr. Zuckerman had the best swing in the county. And they set up over his head his accusation written, THIS IS JESUS THE KING OF THE JEWS. And 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. And 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. And 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. This is what they do when they put on shoes, said Wolf, nearly crying “Charlotte never fibs. The goose shouted to the nearest cow that Wilbur was free, and soon all the cows knew. accounting that God is able to raise up, even from the dead; from whence he did also in a figure receive him back. Of the tribe of Zebulun twelve thousand; Of the tribe of Joseph twelve thousand; Of the tribe of Benjamin were sealed twelve thousand. Perhaps, Private Perry, you might build the woodpile a bit higher before dark. “Thank you, thank you, thank you!” said the goose, nodding and bowing shamelessly. Whosoever believeth that Jesus is the Christ is begotten of God: and whosoever loveth him that begat loveth him also that is begotten of him. Might have been that your horse wheeled and bolted as you were trying to unholster your pistol. Long 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. Now what about your other foot? Wilbur hesitated a moment, then jumped out into the air. which he wrought in Christ, when he raised him from the dead, and made him to sit at his right hand in the heavenly places, “You may have the egg. yea, 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. And from the days of John the Baptist until now the kingdom of heaven suffereth violence, and men of violence take it by force. At which point the men righteously objected and drew their hidden hatchets. And the soldiers led him away within the court, which is the Prætorium; and they call together the whole band. and because he was of the same trade, he abode with them, and they wrought; for by their trade they were tentmakers. and Andrew, and Philip, and Bartholomew, and Matthew, and Thomas, and James the son of Alphæus, and Thaddæus, and Simon the Cananæan, Good morning! “Charlotte,” he moaned. I 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. And when the chief Shepherd shall be manifested, ye shall receive the crown of glory that fadeth not away. For 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. Wherefore 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. And 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! It's a little service I throw in.” “Look,” he began in his sharp voice, “you say you have seven goslings. And he that falleth on this stone shall be broken to pieces: but on whomsoever it shall fall, it will scatter him as dust. Blessed are they that mourn: for they shall be comforted. He dropped to his knees and uttered a short prayer. Wilbur heard the words of praise. Look at you! and upon her forehead a name written, MYSTERY, BABYLON THE GREAT, THE MOTHER OF THE HARLOTS AND OF THE ABOMINATIONS OF THE EARTH. And 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. And Jesus said, For judgment came I into this world, that they that see not may see; and that they that see may become blind. But I say unto you, it shall be more tolerable for Tyre and Sidon in the day of judgment, than for you. And the four and twenty elders, who sit before God on their thrones, fell upon their faces and worshipped God, On 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 And then if any man shall say unto you, Lo, here is the Christ; or, Lo, there; believe it not: Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak. I said, Well, I do wear shoes and can count to twenty with them on and everything, but there are lots of chiefs. In your patience ye shall win your souls. But when the king came in to behold the guests, he saw there a man who had not on a wedding-garment: Wilbur looked up. And he taketh with him Peter and James and John, and began to be greatly amazed, and sore troubled. This morning each thin strand was decorated with dozens of tiny beads of water. Templeton had quit work and gone off somewhere on an errand. And 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. Annas therefore sent him bound unto Caiaphas the high priest. There wasn’t time to say anything. We must work the works of him that sent me, while it is day: the night cometh, when no man can work. Watch therefore: for ye know not on what day your Lord cometh. And when the Pharisee saw it, he marvelled that he had not first bathed himself before dinner. And 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. The next day was foggy. He had never actually seen it done. and he saith unto them, It is written, My house shall be called a house of prayer: but ye make it a den of robbers. XX:The Hour of Triumph The 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. Or 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. And the disciples did as Jesus appointed them; and they made ready the passover. And he left them, and went forth out of the city to Bethany, and lodged there. Nicodemus answered and said unto him, How can these things be? And Joseph took the body, and wrapped it in a clean linen cloth, The bear did not charge but made a single plosive utterance, a huff. But 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. And the day of unleavened bread came, on which the passover must be sacrificed. Even 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. And they had then a notable prisoner, called Barabbas. That was freedom. “Please come with me!” begged Wilbur. “Slowly, slowly. said Charlotte. They 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: And Pilate said unto them, Why, what evil hath he done? But they cried out exceedingly, Crucify him. Again 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. You will live, secure and safe, Wilbur. For if Joshua had given them rest, he would not have spoken afterward of another day. Mother, wouldn’t you simply love to do that?” What 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. and 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. Even as Abraham believed God, and it was reckoned unto him for righteousness. And he saith unto them, Whose is this image and superscription? But solid food is for fullgrown men, even those who by reason of use have their senses exercised to discern good and evil. For I am the least of the apostles, that am not meet to be called an apostle, because I persecuted the church of God. But she also looks at something you might not notice -- soil. No 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. Way down the cove they could hear a long cackling laugh. But 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. the son of Matthat, the son of Levi, the son of Melchi, the son of Jannai, the son of Joseph, And call no man your father on the earth: for one is your Father, even he who is in heaven. And all things, whatsoever ye shall ask in prayer, believing, ye shall receive. For, 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. Up we go! then he appeared to above five hundred brethren at once, of whom the greater part remain until now, but some are fallen asleep; Rebuke not an elder, but exhort him as a father; the younger men as brethren: and Simon he surnamed Peter; By that point in the night, all the other officers had wandered back down the hill. I dare say my trick will work and Wilbur’s life can be saved. But when ye see Jerusalem compassed with armies, then know that her desolation is at hand. “Then my name is Joy,” said the first spider. But 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. in the highpriesthood of Annas and Caiaphas, the word of God came unto John the son of Zacharias in the wilderness. And it came to pass in those days, that Jesus came from Nazareth of Galilee, and was baptized of John in the Jordan. Then one morning we rode up unexpectedly on sixteen fugitives camped right out in the open by the river with no apparent thought to concealment. And he suffered no man to follow with him, save Peter, and James, and John the brother of James. And 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. and 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. Wherefore, my brethren, when ye come together to eat, wait one for another. Circumcision is nothing, and uncircumcision is nothing; but the keeping of the commandments of God. For he must reign, till he hath put all his enemies under his feet. She was about the size of a gumdrop. And other fell on the rocky ground, where it had not much earth; and straightway it sprang up, because it had no deepness of earth: Wilbur heard the trill of the tree toad and the occasional slamming of the kitchen door. When a small fly blundered into the web, just beyond the word “pig,” Charlotte dropped quickly down, rolled the fly up, and carried it out of the way. even as the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many. The 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. “Stop showing off!” He said therefore, Unto what is the kingdom of God like? and whereunto shall I liken it? For there is no good tree that bringeth forth corrupt fruit; nor again a corrupt tree that bringeth forth good fruit. “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. But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Spirit, She said, You might consider just letting people think a chief is whatever they imagine it to be without further correction. For neither at any time were we found using words of flattery, as ye know, nor a cloak of covetousness, God is witness; He swam closer and watched leaves and small twigs float down the hole. He set about peeling and slicing them and brewing a pot of bitter tea the color of strong urine. You can hear them now.” Peter saith unto him, Lord, why cannot I follow thee even now? I will lay down my life for thee. Hasp and staple, collar and hames. When Templeton got back from the dump, around midnight, the spider was still at work. the son of Symeon, the son of Judas, the son of Joseph, the son of Jonam, the son of Eliakim, The 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. for 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. Wilbur heard them coming and got up. For he whom God hath sent speaketh the words of God: for he giveth not the Spirit by measure. But always two or three stayed and set up housekeeping in the doorway. And straightway all the multitude, when they saw him, were greatly amazed, and running to him saluted him. Because 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. I want you to get plenty of sleep, and stop worrying. He must have been as tall and as strong as these trees. and by reason thereof is bound, as for the people, so also for himself, to offer for sins. And 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. It’s a lovely evening.” God 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. And 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. Fern and Avery climbed into the truck and lay down. It 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. But if I by the Spirit of God cast out demons, then is the kingdom of God come upon you. Mr. Zuckerman took off his cap and bowed. Or 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. It had been a narrow escape. Were there none found that returned to give glory to God, save this stranger? I would like you to have my first apple. Together they studied the soap ad. And they were not able to withstand the wisdom and the Spirit by which he spake. Let none be enrolled as a widow under threescore years old, having been the wife of one man, “Do they taste good?” And John bare witness, saying, I have beheld the Spirit descending as a dove out of heaven; and it abode upon him. And they that passed by railed on him, wagging their heads, and saying, Ha! thou that destroyest the temple, and buildest it in three days, And 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: and shall come forth; they that have done good, unto the resurrection of life; and they that have done evil, unto the resurrection of judgment. One 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. Charley went at a near trot, bent double to look for fading sign. Littlefish was afraid but swam up to it anyway and said, Hello, I am called Littlefish and I have never seen a fish like you. Shove!” the son of Jesus, the son of Eliezer, the son of Jorim, the son of Matthat, the son of Levi, Each spring there were new little spiders hatching out to take the place of the old. And now, behold, I know that ye all, among whom I went about preaching the kingdom, shall see my face no more. who, existing in the form of God, counted not the being on an equality with God a thing to be grasped, “So it’s old Templeton to the rescue again, is it? Now 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. Having promised Wilbur that she would save his life, she was determined to keep her promise. The nutrients from the snake are becoming part of the soil. because for the work of Christ he came nigh unto death, hazarding his life to supply that which was lacking in your service toward me. And 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. His young clerks traded right by the stockade, where they were penned until the cart they sold from was ordered to be confiscated. I press on toward the goal unto the prize of the high calling of God in Christ Jesus. Busted all to fuck, he said. Just before they left the pigpen, Mr. Zuckerman took one last look at Wilbur. The bishop therefore must be without reproach, the husband of one wife, temperate, sober-minded, orderly, given to hospitality, apt to teach; For every one that exalteth himself shall be humbled; and he that humbleth himself shall be exalted. I 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. And they began to question among themselves, which of them it was that should do this thing. And after they had spent some time there, they were dismissed in peace from the brethren unto those that had sent them forth. Humble yourselves in the sight of the Lord, and he shall exalt you. even 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. He 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. The children were hot and dirty. For the grace of God hath appeared, bringing salvation to all men, Influential 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. and 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. He noticed that something was wrong with the pig. And he said unto him, Arise, and go thy way: thy faith hath made thee whole. My love be with you all in Christ Jesus. Amen. There cometh a woman of Samaria to draw water: Jesus saith unto her, Give me to drink. we are pressed on every side, yet not straitened; perplexed, yet not unto despair; He sat drafting his report atop a little folding table, and the ground at his feet was littered with balled sheets of paper. but unto them that are factious, and obey not the truth, but obey unrighteousness, shall be wrath and indignation, and sent forth his servants to call them that were bidden to the marriage feast: and they would not come. By faith Jacob, when he was dying, blessed each of the sons of Joseph; and worshipped, leaning upon the top of his staff. But the boat was now in the midst of the sea, distressed by the waves; for the wind was contrary. When 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. Spearfinger the Monster. But 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. For 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. “Charlotte?” he said. Art 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? He 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. that ye may eat and drink at my table in my kingdom; and ye shall sit on thrones judging the twelve tribes of Israel. Though 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. But this I say, brethren, the time is shortened, that henceforth both those that have wives may be as though they had none; And after he had taken leave of them, he departed into the mountain to pray. and Salmon begat Boaz of Rahab; and Boaz begat Obed of Ruth; and Obed begat Jesse; “Oh, no,” said Zuckcrman. but 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. Work 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. For 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: And the gander opened his strong wings and beat the air with them to show his power. Then released he unto them Barabbas; but Jesus he scourged and delivered to be crucified. The dog kept barking fiercely. And 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. Your pants are coming down.” “What’s wrong?” asked the loud speaker. And he appointed twelve, that they might be with him, and that he might send them forth to preach, But 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. Alright, said Wolf, barely. We sprawled on the broad river rocks at noon, and the sun scalded our buttocks as in days of yesteryear. but contrariwise, when they saw that I had been intrusted with the gospel of the uncircumcision, even as Peter with the gospel of the circumcision (for he that wrought for Peter unto the apostleship of the circumcision wrought for me also unto the Gentiles); For when one saith, I am of Paul; and another, I am of Apollos; are ye not men? that 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; Charley’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. For 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. Then saith he to the man, Stretch forth thy hand. And he stretched it forth; and it was restored whole, as the other. And when he was accused by the chief priests and elders, he answered nothing. or unto governors, as sent by him for vengeance on evil-doers and for praise to them that do well. Just watch what you're doing, Mr. Radiant, when they get shoving you in!” “I’m back here,” she answered. And they put forward two, Joseph called Barsabbas, who was surnamed Justus, and Matthias. And 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. And I felt like there was something following close behind me. “I'm a doctor. And 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. “Hurry up, Templeton!” And the eunuch answered Philip, and said, I pray thee, of whom speaketh the prophet this? of himself, or of some other? having 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. For 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. Except for the goose herself, Charlotte was the first to know that the goslings had at last arrived. and 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. And Pilate, wishing to content the multitude, released unto them Barabbas, and delivered Jesus, when he had scourged him, to be crucified. All I could say was that the ball remained in play. But 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. When Pilate therefore heard this saying, he was the more afraid; “You’re getting your pie on you,” said Fern. Now 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. Don't pay any attention to him, Wilbur! It was arranged so that you could swing without being pushed. For 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. and this, not as we had hoped, but first they gave their own selves to the Lord, and to us through the will of God. to the end that ye should walk worthily of God, who calleth you into his own kingdom and glory. Wherefore also it was reckoned unto him for righteousness. “I’m sitting- sitting on my eggs. And Jesus looked round about, and saith unto his disciples, How hardly shall they that have riches enter into the kingdom of God! And 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. Everyone but Charley stood off in the trees and waited. that he might redeem them that were under the law, that we might receive the adoption of sons. And they were bringing unto him little children, that he should touch them: and the disciples rebuked them. And they were more than forty that made this conspiracy. for the Holy Spirit shall teach you in that very hour what ye ought to say. The 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. having the glory of God: her light was like unto a stone most precious, as it were a jasper stone, clear as crystal: “Well,” said Charlotte, “you and I lead different lives. Decomposers break dead things down into soil. He 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. (As he spake by the mouth of his holy prophets that have been from of old), When I knew him, he was a figure of folklore; it took the Alamo to elevate him all the way to myth. And his disciples came, and took up the corpse, and buried him; and they went and told Jesus. But how do dead plants and animals become soil? The 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? I 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. The 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, and when they found not his body, they came, saying, that they had also seen a vision of angels, who said that he was alive. In that place, worms never die, and the fire is never put out. and cried out as they looked upon the smoke of her burning, saying, What city is like the great city? Remember Jesus Christ, risen from the dead, of the seed of David, according to my gospel: And Jesus answered and said unto them, Go and tell John the things which ye hear and see: Like 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. And 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. this man went to Pilate, and asked for the body of Jesus. And 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. And he also that received the two talents came and said, Lord, thou deliveredst unto me two talents: lo, I have gained other two talents. You’re a man with payments. And a second like unto it is this, Thou shalt love thy neighbor as thyself. if so be that ye have heard of the dispensation of that grace of God which was given me to you-ward; The officers drank all the Moët’s and Macallan’s Scotch that could be kept coming by the wagonload up the roads from Charleston. And 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. I'll wait until it is morning, then I'll go, he thought, feeling bold. For 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. Not at all lonely.” And he questioned him in many words; but he answered him nothing. for with the heart man believeth unto righteousness; and with the mouth confession is made unto salvation. And he said, I tell thee, Peter, the cock shall not crow this day, until thou shalt thrice deny that thou knowest me. If you’re going to water it down, you might as well be drinking the piss Welch sells at the tavern. The Commandments were, as always, especially favorable to the rulers. and that he might make known the riches of his glory upon vessels of mercy, which he afore prepared unto glory, When they got there Charlie gave a warning shout. And 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. and their word will eat as doth a gangrene: of whom is Hymenæus and Philetus; And might have been that if I’d come along with you I could have said something that would have mattered. Yea 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; Now this man had four virgin daughters, who prophesied. Fern bit into a raspberry that had a bad-tasting bug inside it, and got discouraged. whose end is perdition, whose god is the belly, and whose glory is in their shame, who mind earthly things. Fern was happy, for she felt that Charlotte’s trick was working and that Wilbur’s life would be saved. The boy took two strips of deer jerky from a pouch and reached them to Charley. Everybody keep quiet while I put the matter up to him!” Then, when Mrs. Arable complained, he was moved to a bigger box in the woodshed. Verily, 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. Talk it up, geese!” For the Son of man indeed goeth, as it hath been determined: but woe unto that man through whom he is betrayed! And Zacharias was troubled when he saw him, and fear fell upon him. And he gave heed unto them, expecting to receive something from them. And 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. Repent 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; Where their worm dieth not, and the fire is not quenched. And 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. Mary 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. Nevertheless 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. And in the synagogue there was a man, that had a spirit of an unclean demon; and he cried out with a loud voice, Verily 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. And 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. And 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. People suffer and die in ignorance and delusion. So he reasoned in the synagogue with the Jews and the devout persons, and in the marketplace every day with them that met him. And the king was exceeding sorry; but for the sake of his oaths, and of them that sat at meat, he would not reject her. and chief seats in the synagogues, and chief places at feasts: What good is an apple tree that makes no apples? asked the little tree. For he knew that for envy they had delivered him up. And 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: The rat grinned. And 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. Let no man seek his own, but each his neighbor’s good. Another 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: And 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, and madest them to be unto our God a kingdom and priests; and they reign upon the earth. And a certain ruler asked him, saying, Good Teacher, what shall I do to inherit eternal life? “She's got a guest for breakfast,” said Mrs. Arable. And the scripture was fulfilled, which saith, And he was numbered with the transgressors. It was necessary to draw the line somewhere. If 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. And of course he was right. Brethren, 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, They're wearing them with wider brims and rounder crowns of late. “No good,” said Charlotte. We 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. and looking up to heaven, he sighed, and saith unto him, Ephphatha, that is, Be opened. who 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. And when this sound was heard, the multitude came together, and were confounded, because that every man heard them speaking in his own language. Let 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. But 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. “I don’t think there is any such thing as less than nothing. “No,” she replied. “Got a little piece of string I could borrow?” asked Wilbur. There 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. And they took him, and beat him, and sent him away empty. One evening it had just gotten dark. I was driving back from the store going home. I am the Alpha and the Omega, saith the Lord God, who is and who was and who is to come, the Almighty. There 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. and said, What are ye willing to give me, and I will deliver him unto you? And they weighed unto him thirty pieces of silver. And 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. It just shows what can happen if a person gets out of bed promptly. Let's eat!” The former treatise I made, O Theophilus, concerning all that Jesus began both to do and to teach, She 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. Templeton poked his head from the straw. Below 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. And 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; The 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. “You’ll miss your freedom,” honked the goose. But 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. The sky seemed wider and a warm wind blew. Secrets are hard to keep. Therefore 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. But 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. I Tertius, who write the epistle, salute you in the Lord. He’s appealing to your stomach.” Buddy flew right into the limb And 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. One warm afternoon, Fern and Avery put on bathing suits and went down to the brook for a swim. I 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. And Mary arose in these days and went into the hill country with haste, into a city of Judah; he lodgeth with one Simon a tanner, whose house is by the sea side. There is no fear of God before their eyes. And Pilate wrote a title also, and put it on the cross. And there was written, JESUS OF NAZARETH, THE KING OF THE JEWS. and 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.) Mrs. Zuckerman prepared special meals for Wilbur. Letting constant motion stand in place of actual achievement, everything done half-assed, both tending to business and to the heart. Wilbur was trembling again, but Charlotte was cool and collected. Whether therefore ye eat, or drink, or whatsoever ye do, do all to the glory of God. that ye should remember the words which were spoken before by the holy prophets, and the commandment of the Lord and Saviour through your apostles: Simon Peter saith unto him, Lord, whither goest thou? Jesus answered, Whither I go, thou canst not follow me now; but thou shalt follow afterwards. But he was determined to get in touch with his unknown friend. For in the resurrection they neither marry, nor are given in marriage, but are as angels in heaven. how that by revelation was made known unto me the mystery, as I wrote before in few words, The lieutenant was sitting a little distance away with a candle lantern, writing up his report for the day. The blacker and noisier the better. “Now the trouble starts,” thought Wilbur. Every 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. But Jesus perceiving their reasonings, answered and said unto them, Why reason ye in your hearts? no wallet for your journey, neither two coats, nor shoes, nor staff: for the laborer is worthy of his food. but after thy hardness and impenitent heart treasurest up for thyself wrath in the day of wrath and revelation of the righteous judgment of God; I 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? Be not ye therefore partakers with them; Everyone climbed in, and off they drove to the judge's booth in front of the grandstand. All men and most women found her sidling manner charming in the extreme. Not 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. I put Perry to work helping cook while the other two stood watch at the edge of camp. At 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. I'll teach him, thought Rabbit. The colonel touched a forefinger into the cold grey juice in his plate and then put the first joint of the finger into his mouth. And 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. All the other fish called him Littlefish. She doesn't like to find trash in the woods. he foreseeing this spake of the resurrection of the Christ, that neither was he left unto Hades, nor did his flesh see corruption. Verily I say unto you, This generation shall not pass away, till all these things be accomplished. And he answereth them, and saith, Who is my mother and my brethren? A little leaven leaveneth the whole lump. And 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; and 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. He gulped and sucked, and sucked and gulped, making swishing and swooshing noises, anxious to get everything at once. “He’s long, and he’s smooth,” said Zuckerman. The grace of our Lord Jesus Christ be with your spirit, brethren. Amen. This is a picture of bacteria. And 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. “Oh, be quiet!” said the lamb. He talked and we drank most of the night. “You know it couldn’t happen. For 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. The thief cometh not, but that he may steal, and kill, and destroy: I came that they may have life, and may have it abundantly. And by the way, I've got some bad news. What do you think I am, anyway, a rat-of-all—work?” She catches flies and sucks their blood. “No,” said her father. Ye search the scriptures, because ye think that in them ye have eternal life; and these are they which bear witness of me; I said. I suppose the next thing you'll want me to fetch is a dictionary. There isn’t a pig in the whole state that is as terrific as our pig.” But 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. She's terribly clever.” “Many, many, many thanks!” they always said, when they saw food coming. I sent you to reap that whereon ye have not labored: others have labored, and ye are entered into their labor. wherefore neither thought I myself worthy to come unto thee: but say the word, and my servant shall be healed. I have therefore my glorying in Christ Jesus in things pertaining to God. I have a terrific pig. And they stripped him, and put on him a scarlet robe. When therefore the people saw the sign which he did, they said, This is of a truth the prophet that cometh into the world. Women in like manner must be grave, not slanderers, temperate, faithful in all things. And when evening came, his disciples went down unto the sea; Come now, ye rich, weep and howl for your miseries that are coming upon you. Wigwams and feather headdresses, maybe. Some therefore of them of Jerusalem said, Is not this he whom they seek to kill? But wherefore went ye out? to see a prophet? Yea, I say unto you, and much more than a prophet. Now it came to pass, when all the people were baptized, that, Jesus also having been baptized, and praying, the heaven was opened, But he had a counteroffer. And every day he was teaching in the temple; and every night he went out, and lodged in the mount that is called Olivet. the lord of that servant shall come in a day when he expecteth not, and in an hour when he knoweth not, for kings and all that are in high place; that we may lead a tranquil and quiet life in all godliness and gravity. “I have to hang around here whether I want to or not. Homer! Let 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. A rotten egg is a regular stink bomb.” “Can I have some money?” asked Fern. For he that lacketh these things is blind, seeing only what is near, having forgotten the cleansing from his old sins. “When do you work on it?” begged Wilbur. wild waves of the sea, foaming out their own shame; wandering stars, for whom the blackness of darkness hath been reserved for ever. then he appeared to James; then to all the apostles; “Look out for Lurvy! called the cows. “I’ve sometimes wondered. These are good spots for decomposers to hide from the sunlight. which he poured out upon us richly, through Jesus Christ our Saviour; Will the owner of a Pontiac car, license number H-2439, please move your car away from the fireworks shed!” Then shall they begin to say to the mountains, Fall on us; and to the hills, Cover us. He put a sign around the tree, so no one would step on it. Thou blind Pharisee, cleanse first the inside of the cup and of the platter, that the outside thereof may become clean also. At two weeks of age, he was moved outdoors. Now 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, My last one. And he gave him no answer, not even to one word: insomuch that the governor marvelled greatly. I was sleeping on this huge purple stuffed bear and there were people looking down on me from all directions. For 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; And when we heard these things, both we and they of that place besought him not to go up to Jerusalem. “Once upon a time,” she began, “I had a beautiful cousin who managed to build her web across a small stream. But on the first day of the week, at early dawn, they came unto the tomb, bringing the spices which they had prepared. and whom he foreordained, them he also called: and whom he called, them he also justified: and whom he justified, them he also glorified. let 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. The 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. Wilbur could see by the way they acted that they were glad to see him. And you did he make alive, when ye were dead through your trespasses and sins, “Can't a rat catch a wink of sleep without being rudely popped into the air?” Charley went into the clearing, walking effortfully on bowed legs like an old horseman, though he had seldom ridden. and that he may send the Christ who hath been appointed for you, even Jesus: I collected the two muskets, old worn trade pieces, where they lay propped against the hemlock trunk. As the living Father sent me, and I live because of the Father; so he that eateth me, he also shall live because of me. and we toil, working with our own hands: being reviled, we bless; being persecuted, we endure; For 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. And 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. For there are many unruly men, vain talkers and deceivers, specially they of the circumcision, I should say not. and 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; But 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. “Fern’s got the itch! ” sang Avery. Then were they all of good cheer, and themselves also took food. Lilacs bloom and make the air sweet, and then fade. But I, brethren, if I still preach circumcision, why am I still persecuted? then hath the stumbling-block of the cross been done away. “Congratulations! ” murmured Templeton. And there are gathered together unto him the Pharisees, and certain of the scribes, who had come from Jerusalem, “How's that? confirming 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. Carry no purse, no wallet, no shoes; and salute no man on the way. knowing that the proving of your faith worketh patience. But he answered and said, Every plant which my heavenly Father planted not, shall be rooted up. The 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. unto 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! “It pays to save things,” he said in his surly voice. whose 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. The short of it was, Charley’s people had put us in danger. even 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. that in everything ye were enriched in him, in all utterance and all knowledge; holding 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. But in giving you this charge, I praise you not, that ye come together not for the better but for the worse. He would kill a gosling if he could get away with it—the goose knew that. for this cause ought the woman to have a sign of authority on her head, because of the angels. out of the same mouth cometh forth blessing and cursing. My brethren, these things ought not so to be. For this is the message which ye heard from the beginning, that we should love one another: not 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, And then I reached this line: Here roamed the red men of the forest, free as the breezes which fanned their raven locks. And 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: But there was no direction to go other than forward. For the life is more than the food, and the body than the raiment. “That’s wonderful,” said Wilbur. And upon a set day Herod arrayed himself in royal apparel, and sat on the throne, and made an oration unto them. Put it on! Put it on! they told Wolf. He remembered what Charlotte had told him—that the sac was waterproof and strong. Who then is the faithful and wise servant, whom his lord hath set over his household, to give them their food in due season? Upstairs, Avery was already in bed and asleep. She seemed to have shrunk during the night. And he said unto them, With desire I have desired to eat this passover with you before I suffer: I have never seen the thing that I found before. “May I get a drink of milk? having 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; and Asa begat Jehoshaphat; and Jehoshaphat begat Joram; and Joram begat Uzziah; From across the road a bird sang “Whippoorwill, whippoorwill! ” to Titus, my true child after a common faith: Grace and peace from God the Father and Christ Jesus our Saviour. The word which he sent unto the children of Israel, preaching good tidings of peace by Jesus Christ (he is Lord of all)— The 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. and without a parable spake he not unto them: but privately to his own disciples he expounded all things. Wilbur looked at his friend. Now 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. Jesus answered, Sayest thou this of thyself, or did others tell it thee concerning me? For 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. Even in a great pressing party crowd, everyone knew exactly where Crockett was at all times. If we say that we have not sinned, we make him a liar, and his word is not in us. At 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. But we must be cast upon a certain island. And right spang in the middle of the web there were the words ‘Some Pig.’ The words were woven right into the web. And Joseph, who by the apostles was surnamed Barnabas (which is, being interpreted, Son of exhortation), a Levite, a man of Cyprus by race, Therefore, as through one man sin entered into the world, and death through sin; and so death passed unto all men, for that all sinned:— Then answered Peter and said unto him, Lo, we have left all, and followed thee; what then shall we have? “Run toward me!” yelled the gander. And sometimes Avery would find a little grass snake in the hay, and would add it to the other things in his pocket. The 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. Okay, said Wolf. He is too familiar, too noisy, and he cracks weak jokes. If we say that we have no sin, we deceive ourselves, and the truth is not in us. And he said unto them, Full well do ye reject the commandment of God, that ye may keep your tradition. And 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. I would that they that unsettle you would even go beyond circumcision. Wilbur came and stood directly under the web. And 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. “Is it a web?” Young 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. Think not that I came to send peace on the earth: I came not to send peace, but a sword. I 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. And he arose and took the young child and his mother by night, and departed into Egypt; They can stay or go. I am afraid of you, lest by any means I have bestowed labor upon you in vain. Hogs ran free range right into the edges of town. I flurried about, always a-saddle. The surface of the river before her was black, bottomless. Neither Smith nor the boys from Ireland and Philadelphia and Charleston were ever cruel. On his way, he saw Hogsucker, Crawdaddy, Mud Dog and Knottyhead. Jesus answered and said unto them, I did one work, and ye all marvel because thereof. Pigs need warmth, and it was warm and comfortable down there in the barn cellar on the south side. but 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. And 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? the 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, And not a hair of your head shall perish. But no child ever did. and he took food and was strengthened. And he was certain days with the disciples that were at Damascus. with whom the kings of the earth committed fornication, and they that dwell in the earth were made drunken with the wine of her fornication. in 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; A lot of our people had never been farther from their own farms than the top of the most distant ridge they could see. And 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; But 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. For 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. So both your front feet will have shoes. And 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. And 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: He 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. It 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. It was peach-colored and looked as though it were made of cotton candy. Jesus 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. Everyone watched him, for he was not well liked, not trusted. But 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. “I want a candied apple.” And he taught in their synagogues, being glorified of all. Put them in mind to be in subjection to rulers, to authorities, to be obedient, to be ready unto every good work, The 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. He raced round and round the pen. And when the thousand years are finished, Satan shall be loosed out of his prison, “But this is different. The Pharisees therefore said among themselves, Behold how ye prevail nothing; lo, the world is gone after him. This egg sac is my great work—the finest thing I have ever made.” I am the true vine, and my Father is the husbandman. and we went on board the ship, but they returned home again. He saw the three boys cut down while he was still fumbling. His stomach was as big around as a jelly jar. It will work better for you. Then she eased out the door. I exhort Euodia, and I exhort Syntyche, to be of the same mind in the Lord. This 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. Harden not your hearts, as in the provocation, Like as in the day of the trial in the wilderness, Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life. Nay 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? Blessed 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, But the witness which I receive is not from man: howbeit I say these things, that ye may be saved. He turned to swim away, but it was too late. And a woman having an issue of blood twelve years, who had spent all her living upon physicians, and could not be healed of any, And also, my invitations to parties increased. “Where?” Wives, be in subjection to your husbands, as is fitting in the Lord. And 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. In the resurrection therefore whose wife shall she be of the seven? for they all had her. he shall not honor his father. And ye have made void the word of God because of your tradition. For 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. Wilbur fainted away. and he said unto them, Thus it is written, that the Christ should suffer, and rise again from the dead the third day; Asmeret looks under another log. I wrote somewhat unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. The fame of this unique animal has spread to the far corners of the earth, attracting many valuable tourists to our great State. For some now unaccountable reason specific to young men, we didn’t. but in everything commending ourselves, as ministers of God, in much patience, in afflictions, in necessities, in distresses, And they called Barnabas, Jupiter; and Paul, Mercury, because he was the chief speaker. But, along came a little bird, a titmouse. Jesus answered, Neither did this man sin, nor his parents: but that the works of God should be made manifest in him. Ye do the works of your father. They said unto him, We were not born of fornication; we have one Father, even God. These 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; “The pig has passed out,” said Mrs. Zuckerman. And I saw a strong angel proclaiming with a great voice, Who is worthy to open the book, and to loose the seals thereof? I put my palm on my chest. Doth our law judge a man, except it first hear from himself and know what he doeth? They either will or they won’t. Trapped as the creature was then, Charlie crept up on it. “Springtime,” said the old sheep, thoughtfully. And as the Gentiles heard this, they were glad, and glorified the word of God: and as many as were ordained to eternal life believed. “It was good management and hard work.” Is any among you suffering? let him pray. Is any cheerful? let him sing praise. They said therefore unto him, What then doest thou for a sign, that we may see, and believe thee? what workest thou? The bald was thick with feral hogs. and have put on the new man, that is being renewed unto knowledge after the image of him that created him: No help at all. “Sorry, sorry, sorry,” said the gander. People drank deep to achieve immediate stupor. “Some pig!” whispered Mr. Zuckerrnan. “Appetite good?” And 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. Mrs. Zuckerman came walking down from the house. The rat had done his work well. for our God is a consuming fire. Charley started walking downhill again, and the fog thickened as he descended into it. I got up, met everybody, and decided I would take my leave. I have a busy evening ahead of me. And they gave lots for them; and the lot fell upon Matthias; and he was numbered with the eleven apostles. In Damascus the governor under Aretas the king guarded the city of the Damascenes in order to take me: Again, he sent other servants more than the first: and they did unto them in like manner. “Wait a minute!” cried Avery. Wilbur never forgot Charlotte. Try 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. She was tall and angular and beautiful, and a soft warm light seemed to shine down on her, following wherever she moved. I’m abiding by the old lines. Now 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, The only sound was a slight scraping noise from the rooftop, where the weather-vane swung back and forth. Then said Jesus unto his disciples, If any man would come after me, let him deny himself, and take up his cross, and follow me. What I wanted to do was slap him down a bit with wit and words. Ye know that after two days the passover cometh, and the Son of man is delivered up to be crucified. She is going to become a mother. If I had not come and spoken unto them, they had not had sin: but now they have no excuse for their sin. You’ll not be sorry. And Agrippa said unto Festus, This man might have been set at liberty, if he had not appealed unto Cæsar. Wherefore take up the whole armor of God, that ye may be able to withstand in the evil day, and, having done all, to stand. “I like to sit still,” she said. From the pond, in shrill chorus, came the voices of hundreds of little frogs. Charley pinched the last little bit of fat at his belly and judged he could live only a short while longer on water and nuts. “It’s cruel,” replied Wilbur, who did not intend to be argued out of his position. Take heed to yourselves: if thy brother sin, rebuke him; and if he repent, forgive him. For whatsoever things were written aforetime were written for our learning, that through patience and through comfort of the scriptures we might have hope. In the days that followed, he was very happy. But Jesus said unto him, Judas, betrayest thou the Son of man with a kiss? not 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. What he found himself under was a grunting squealing eruption of hogs, a resurgence of the wild. But the Pharisees said, By the prince of the demons casteth he out demons. and make straight paths for your feet, that that which is lame be not turned out of the way, but rather be healed. Wilbur trembled when he heard this speech. So his fellow-servant fell down and besought him, saying, Have patience with me, and I will pay thee. The boy sat up and took the knife out of his mouth and wiped the spit against his britches. in 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. but Paul chose Silas, and went forth, being commended by the brethren to the grace of the Lord. In 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. For 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. He shuffled among the scattered papers and came up with a sheet that he studied to himself a moment and then handed to the scribe. Even when English-speaking teachers ruled their classrooms, long after Sequoyah had passed away, they remembered their letters. Wherefore, if meat causeth my brother to stumble, I will eat no flesh for evermore, that I cause not my brother to stumble. Some 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. Crate your pig, please, Mr. Zuckerman, and report to the judges’ booth promptly!” Doing nothing. saying, If thou hadst known in this day, even thou, the things which belong unto peace! but now they are hid from thine eyes. But if we hope for that which we see not, then do we with patience wait for it. who, when he was reviled, reviled not again; when he suffered, threatened not; but committed himself to him that judgeth righteously: But he withdrew himself in the deserts, and prayed. Wolf went to where the trap lay. Jesus heard that they had cast him out; and finding him, he said, Dost thou believe on the Son of God? Howbeit 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. Now 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: But 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. Now 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. Verily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall in no wise enter therein. She has seen many a spring pig come and go. I’m going.” Then if any man shall say unto you, Lo, here is the Christ, or, Here; believe it not. He found a small strip of potato skin and ate it. that, as sin reigned in death, even so might grace reign through righteousness unto eternal life through Jesus Christ our Lord. And when he would not be persuaded, we ceased, saying, The will of the Lord be done. Straightway he that received the five talents went and traded with them, and made other five talents. If this man were not from God, he could do nothing. (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. He knew it was almost time for the County Fair, and he was looking forward to the trip. Jesus 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. and 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. The same heard Paul speaking: who, fastening his eyes upon him, and seeing that he had faith to be made whole, Jesus 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. to 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: One 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. And he forsook all, and rose up and followed him. He went on and on, walking stooped when he could, but mostly crawling where the tangled trunks and limbs left no choice. For what is a man profited, if he gain the whole world, and lose or forfeit his own self? and they besought him that they might only touch the border of his garment: and as many as touched were made whole. Doctors are supposed to understand everything. Now as he spake, a Pharisee asketh him to dine with him: and he went in, and sat down to meat. And 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. Wait till he gets hankering for some fresh pork and smoked ham and crisp bacon! The white sky was entirely free of birds. Asmeret shows us evidence of leaves decomposing into soil, too. She 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.” But I’m pulling for Florida, Perry said. And I say unto you, that every idle word that men shall speak, they shall give account thereof in the day of judgment. and this voice we ourselves heard borne out of heaven, when we were with him in the holy mount. Wild Hemp died as a result of forces she didn’t understand or even acknowledge. if we this day are examined concerning a good deed done to an impotent man, by what means this man is made whole; Pigs always resist when they are being loaded.” And 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. And when they that fed them saw what had come to pass, they fled, and told it in the city and in the country. His parents answered and said, We know that this is our son, and that he was born blind: Hour by hour she sat motionless, deep in thought. Nevertheless, neither is the woman without the man, nor the man without the woman, in the Lord. Wherefore my judgment is, that we trouble not them that from among the Gentiles turn to God; The second Woe is past: behold, the third Woe cometh quickly. But we have this treasure in earthen vessels, that the exceeding greatness of the power may be of God, and not from ourselves; And they answered, that they knew not whence it was. The 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. I became really scared. and they, when they came to Cæsarea and delivered the letter to the governor, presented Paul also before him. Kaweh!! It clanged hard. If 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. Know 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? I 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: He hath put down princes from their thrones, And hath exalted them of low degree. Then his lord called him unto him, and saith to him, Thou wicked servant, I forgave thee all that debt, because thou besoughtest me: We hadn’t killed anybody, except in our dreams, but we would be punished just the same by reason of blood identity. There are, it may be, so many kinds of voices in the world, and no kind is without signification. Charley took it that the bear was willing to fight. All those experiences stood me in good stead, at least to the extent that I convinced Lichen and his people not to kill me. And 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. Stretched 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. Don’t you think that was a pleasant thing for her to say?” So also is the resurrection of the dead. It is sown in corruption; it is raised in incorruption: Murmur not, brethren, one against another, that ye be not judged: behold, the judge standeth before the doors. This is he that came by water and blood, even Jesus Christ; not with the water only, but with the water and with the blood. but 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, And 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. And he took a cup, and gave thanks, and gave to them, saying, Drink ye all of it; making request, if by any means now at length I may be prospered by the will of God to come unto you. And straightway coming up out of the water, he saw the heavens rent asunder, and the Spirit as a dove descending upon him: The officers, though, seemed to have a considerably greater scope of personal freedom. Most days of the week, they hung about my trading post. And they ate, and were all filled: and there was taken up that which remained over to them of broken pieces, twelve baskets. and 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. “How are you going to save me?” asked Wilbur, whose curiosity was very strong on this point. “I’ve got something to tell you, Edith,” he said. Now 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: And the disciples of John told him of all these things. for in him dwelleth all the fulness of the Godhead bodily, What do you need? Well, I don’t think you have anything to worry about. And Jesus arose, and followed him, and so did his disciples. “Skip around, run toward me, slip in and out, in and out, in and out! Straightway I was in the Spirit: and behold, there was a throne set in heaven, and one sitting upon the throne; Then organisms like millipedes can still live there. and 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. and heal the sick that are therein, and say unto them, The kingdom of God is come nigh unto you. lest 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. “Where do you think I’d better go?” Apples grew on his trees huge as dreams of apples. And 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. And Jesus answered and said, as he taught in the temple, How say the scribes that the Christ is the son of David? and 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. Wherefore even the first covenant hath not been dedicated without blood. The snows melted and ran away. You are beautiful! For ye received not the spirit of bondage again unto fear; but ye received the spirit of adoption, whereby we cry, Abba, Father. And as he held Peter and John, all the people ran together unto them in the porch that is called Solomon’s, greatly wondering. He crawled over dirt like powdered ashes, trunks and branches spreading all around bare as old bones, broken-down skeletons. Long 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. I am not going to let you die, Wilbur.” All the saints salute you. for the law worketh wrath; but where there is no law, neither is there transgression. Wherefore if any man is in Christ, he is a new creature: the old things are passed away; behold, they are become new. You could do the accounting with your eyes shut, for every place was materially the same. But the days will come, when the bridegroom shall be taken away from them, and then will they fast in that day. Bye, bye, my humble Wilbur! “How's this?” he asked. For God appointed us not unto wrath, but unto the obtaining of salvation through our Lord Jesus Christ, There 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. The 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. Lurvy dumped the slops, scraped the pail, and walked away. But 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. And he that was dead sat up, and began to speak. And he gave him to his mother. Don’t you regard that as a miracle?” “The goose did what?” asked Mrs. Arable, gazing at her daughter with a queer, worried look. “Well,” said Mrs. Zuckerman, “he’s clean, anyway. And in covetousness shall they with feigned words make merchandise of you: whose sentence now from of old lingereth not, and their destruction slumbereth not. Children almost always hang onto things tighter than their parents think they will. And when he was entered into a boat, his disciples followed him. They are of the world: therefore speak they as of the world, and the world heareth them. Around his neck he wore a medal of honor; in his mouth he held a sac of spider’s eggs. Abide 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. Teams of yellow oxen snaked the straight trunks out of the woods. And 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. “You may call me Nellie.” As if she had never lived. And he spake to them a parable: Behold the fig tree, and all the trees: Wherefore 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. but 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. For many walk, of whom I told you often, and now tell you even weeping, that they are the enemies of the cross of Christ: Everything’s gone. He finished his smoke and knocked out his pipe bowl against his boot heel. History in the making, at least on the personal level, is almost exclusively pathetic. But Mary was standing without at the tomb weeping: so, as she wept, she stooped and looked into the tomb; Everything happened all at once. But I am afraid my efforts have produced little gain. For to this end Christ died and lived again, that he might be Lord of both the dead and the living. But John would have hindered him, saying, I have need to be baptized of thee, and comest thou to me? Sympathetic lawmakers ranted righteous opposition to Jackson and then moved on to more pressing matters. Now 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; Faithful is the saying, If a man seeketh the office of a bishop, he desireth a good work. Thou seest that faith wrought with his works, and by works was faith made perfect; XIX: The Egg Sac And 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. I thank God that I baptized none of you, save Crispus and Gaius; Claire looked around at Cranshaw and said, I would have burnt all this down at a word from you. Again, 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: Everybody heard the song of the crickets. but we speak God’s wisdom in a mystery, even the wisdom that hath been hidden, which God foreordained before the worlds unto our glory: He looked at the working of his hand as if it were fascinating. At six-thirty Wilbur heard the banging of a pail. that 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. In the last analysis, we simply know that we are dealing with supernatural forces here, and we should all feel proud and grateful. And 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. And 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. Then Wolf's tail and ears stiffened. If ye know that he is righteous, ye know that every one also that doeth righteousness is begotten of him. Purge 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: by which means the world that then was, being overflowed with water, perished: But the Jerusalem that is above is free, which is our mother. We would start out on foot to go to his home. all these evil things proceed from within, and defile the man. I 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. and 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. His plans for the day went something like this: Breakfast at six-thirty. I’m not going, Charley said. and if it bear fruit thenceforth, well; but if not, thou shalt cut it down. And 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? And 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. The 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. They 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. Gouts became drops. “Just the same, I don’t envy you,” said the old sheep. What then? only that in every way, whether in pretence or in truth, Christ is proclaimed; and therein I rejoice, yea, and will rejoice. The 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. There was the sound of a solid blow struck, but he could not see what he had hit. Not that I seek for the gift; but I seek for the fruit that increaseth to your account. “Don’t worry, you'll get used to it,” said Templeton. Then she sighed. When morning came he went out and plowed the drifts in his yard, for the fun of it. Without saying anything to anybody, he started off. And 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. I held one of my tracts by such convoluted means that a second mortgage on a prime field hand figured prominently in the deal. She was sixteen or seventeen, somewhere in there. Pigs mean less than nothing to me.” God is faithful, through whom ye were called into the fellowship of his Son Jesus Christ our Lord. “I think you’d better come down to the pigpen,” he said. Tomorrow would be Fair Day. Upon 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. One spider climbed to the top of the fence. She could change her appearance from looking like a monster to looking like an old woman. And 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? If it was during the summer, they would build a fire to produce smoke to repel the mosquitoes as they kept watch. Smith reached to his canteen to cut it, but I would not hear of it. I 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. But know this, that in the last days grievous times shall come. “Can’t you see I’m busy?” replied Avery in disgust. but with you it may be that I shall abide, or even winter, that ye may set me forward on my journey whithersoever I go. You'll get some extra good ham and bacon, Homer, when it comes time to kill that pig.” John 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: Therefore doth the Father love me, because I lay down my life, that I may take it again. And the geese will have a new set of goslings, and the sheep will have their new lambs ...” “I’m back,” he said in a husky voice. What is this word that he said, Ye shall seek me, and shall not find me; and where I am, ye cannot come? “Unload your pig, please!” said the loud speaker. This miracle has never been fully explained, although learned men have visited the Zuckerman pigpen to study and observe the phenomenon. But many of them that heard the word believed; and the number of the men came to be about five thousand. And 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. But being goes on regardless. And 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. And 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. And all the multitudes that came together to this sight, when they beheld the things that were done, returned smiting their breasts. Jesus saith unto them, Fill the waterpots with water. And they filled them up to the brim. I shall find it inconvenient to leave home, even for a few days.” Even 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. Now 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: And 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. I’m not young any more, Wilbur. They cried out with fear, dropping their burdens. even as he chose us in him before the foundation of the world, that we should be holy and without blemish before him in love: He did not want their Cherokee voices to fade away. Now Caiaphas was he that gave counsel to the Jews, that it was expedient that one man should die for the people. Be no longer a drinker of water, but use a little wine for thy stomach’s sake and thine often infirmities. nor 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. For I determined not to know anything among you, save Jesus Christ, and him crucified. Who 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. Ye stiffnecked and uncircumcised in heart and ears, ye do always resist the Holy Spirit: as your fathers did, so do ye. And they worshipped him, and returned to Jerusalem with great joy: Wheresoever the carcase is, there will the eagles be gathered together. Stop thrashing about!” In short order, Mrs. Chapman and I began seeing a great deal of each other. And behold, men bring on a bed a man that was palsied: and they sought to bring him in, and to lay him before him. I’ll set the record straight, though it is not in the least to my credit. “Where do you think you’re going?” The sheep looked at each other in disgust. As he spake these things, many believed on him. And they shall come from the east and west, and from the north and south, and shall sit down in the kingdom of God. If 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. And they say unto him, We have here but five loaves, and two fishes. Wherein God, being minded to show more abundantly unto the heirs of the promise the immutability of his counsel, interposed with an oath; Be ye angry, and sin not: let not the sun go down upon your wrath: “Now let's see, the first letter is T.” Of 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. Wherefore exhort one another, and build each other up, even as also ye do. If ye had known me, ye would have known my Father also: from henceforth ye know him, and have seen him. And having sent into Macedonia two of them that ministered unto him, Timothy and Erastus, he himself stayed in Asia for a while. For he that herein serveth Christ is well-pleasing to God, and approved of men. To 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. So then the Lord Jesus, after he had spoken unto them, was received up into heaven, and sat down at the right hand of God. “How about ‘Pig Supreme’?” asked one of the lambs. “You’re kidding,” he said. I baptized you in water; but he shall baptize you in the Holy Spirit. And they clothe him with purple, and platting a crown of thorns, they put it on him; “Yes, it is pretty,” replied Charlotte, patting the sac with her two front legs. And 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. having heard of your faith in Christ Jesus, and of the love which ye have toward all the saints, and love the chief place at feasts, and the chief seats in the synagogues, She that is in Babylon, elect together with you, saluteth you; and so doth Mark my son. And very early on the first day of the week, they come to the tomb when the sun was risen. And if I by Beelzebub cast out demons, by whom do your sons cast them out? therefore shall they be your judges. He found the entrance and yelled, Hello mother! It is Littlefish. And I saw the holy city, new Jerusalem, coming down out of heaven from God, made ready as a bride adorned for her husband. I didn’t spend a second wondering what it meant or how I felt about it. But 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. And now I exhort you to be of good cheer; for there shall be no loss of life among you, but only of the ship. There is none that understandeth, There is none that seeketh after God; And 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? Then came Peter and said to him, Lord, how oft shall my brother sin against me, and I forgive him? until seven times? each 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. Unwashed, unshowered, and unfettered by rule of law I strode through the cool breeze, back along Franklin Street. And Simon also himself believed: and being baptized, he continued with Philip; and beholding signs and great miracles wrought, he was amazed. He sheathed the knife and went and retrieved the bloody hatchet where it lay on the ground and took off running hard. for he that hath died is justified from sin. For 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. And 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. She handed back the card and shut the door in my face. She was now a stout woman of middle age with a half dozen children, most of them grown. “Or are you just making it up?” “Yes, I suppose they do,” said Mrs. Arable, vaguely. Salute Rufus the chosen in the Lord, and his mother and mine. The 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. “Then what happened?” asked Wilbur. prove all things; hold fast that which is good; For if the readiness is there, it is acceptable according as a man hath, not according as he hath not. Hello Littlefish, I am called Mud Dog by the Cherokee and I am not a fish, I am a large salamander. Bear was a spectator that day. You took all they had. And 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. And 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; or who hath first given to him, and it shall be recompensed unto him again? For 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. Then saith he to the disciple, Behold, thy mother! And from that hour the disciple took her unto his own home. Wherefore? Because they sought it not by faith, but as it were by works. They stumbled at the stone of stumbling; that 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: But Peter answered and said unto him, If all shall be offended in thee, I will never be offended. And 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. How about boys — does she know any boys?” For I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established; Masters, render unto your servants that which is just and equal; knowing that ye also have a Master in heaven. for the earth is the Lord’s, and the fulness thereof. And he guessed they could hear him too. And they took counsel, and bought with them the potter’s field, to bury strangers in. And Zacharias said unto the angel, Whereby shall I know this? for I am an old man, and my wife well stricken in years. neither give place to the devil. Honor widows that are widows indeed. The light strengthened, the mornings came sooner. Give 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. And the smoke of the incense, with the prayers of the saints, went up before God out of the angel’s hand. John answered them, saying, I baptize in water: in the midst of you standeth one whom ye know not, But when two years were fulfilled, Felix was succeeded by Porcius Festus; and desiring to gain favor with the Jews, Felix left Paul in bonds. And he asked them, How many loaves have ye? And they said, Seven. “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. And when they saw it, they all murmured, saying, He is gone in to lodge with a man that is a sinner. Follow after love; yet desire earnestly spiritual gifts, but rather that ye may prophesy. And it came to pass, while he blessed them, he parted from them, and was carried up into heaven. He was only about sixty, but he looked eighty and was a grandfather several times over. We have to make him stop. Without 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. Moses 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. She wrapped the fish up, then she ate him when she got good and ready. A half-full bottle of whiskey and a half-full glass stood side by side on his desk. “My mother taught me.” Now 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; I’d like your best cabin, I said. And 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. Charley kept searching until it was so dark he could not tell one kind of fallen leaf from another. Booming 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. But as the time of the promise drew nigh which God vouchsafed unto Abraham, the people grew and multiplied in Egypt, And 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. Now his elder son was in the field: and as he came and drew nigh to the house, he heard music and dancing. And 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. “What kind of story did she tell?” asked Mrs. Arable. Whose woods these are I think I know. She daintily fastened her orb line to the next spoke of the web. I 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. Good food and regular hours were showing results: Wilbur was a pig any man would be proud of. And as he was praying, the fashion of his countenance was altered, and his raiment became white and dazzling. In the distance he could still hear the music of the merry-go-round. He will come and destroy these husbandmen, and will give the vineyard unto others. And when they heard it, they said, God forbid. And 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; Did not Moses give you the law, and yet none of you doeth the law? Why seek ye to kill me? Now there was a man of the Pharisees, named Nicodemus, a ruler of the Jews: to 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: He 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. And he said unto him, Verily I say unto thee, To-day shalt thou be with me in Paradise. By faith he forsook Egypt, not fearing the wrath of the king: for he endured, as seeing him who is invisible. Again, the kingdom of heaven is like unto a man that is a merchant seeking goodly pearls: Adopted. And fear came on all that dwelt round about them: and all these sayings were noised abroad throughout all the hill country of Judæa. And when they heard that he spake unto them in the Hebrew language, they were the more quiet: and he saith, Yet as he walked away, he saw the tree still looked sad. For thou verily givest thanks well, but the other is not edified. Either drink it or don’t, I said. But they were terrified and affrighted, and supposed that they beheld a spirit. I commended them to what god they claimed and then walked about the perimeter, observing the order of the scene. And he said unto the woman, Thy faith hath saved thee; go in peace. Wilbur was loaded into the truck. But 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. Repeat! 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! And 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. No 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. And the serpent was never seen or heard from again. “Why can’t you just say ‘here’? Why do you have to repeat everything?” “A,” said Wilbur. For 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. The 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? Spearfinger had magic powers and she was always hungry. Now you've seen how a soil scientist like Asmeret looks at the woods. And 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: “I shall go, too,” she said, softly. And when he had fasted forty days and forty nights, he afterward hungered. And a stranger will they not follow, but will flee from him: for they know not the voice of strangers. And 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. “Will you come over and play with me?” he asked. and to have authority to cast out demons: knowing that from the Lord ye shall receive the recompense of the inheritance: ye serve the Lord Christ. Anybody got a loaner? And the high priest stood up, and said unto him, Answerest thou nothing? what is it which these witness against thee? Now white voices and Indian voices both hunted him. backbiters, hateful to God, insolent, haughty, boastful, inventors of evil things, disobedient to parents, “Fern, dear, how would a fish get in a spider’s web?” said Mrs. Arable. Seeing that these things are thus all to be dissolved, what manner of persons ought ye to be in all holy living and godliness, But no—with men it's rush, rush, rush, every minute. and to wait for his Son from heaven, whom he raised from the dead, even Jesus, who delivereth us from the wrath to come. And he brought them up into his house, and set food before them, and rejoiced greatly, with all his house, having believed in God. As to peace, I said, I had spent most of the past few years trying to find a path to it. it is sown in dishonor; it is raised in glory: it is sown in weakness; it is raised in power: He took another step toward the pail. But he, knowing their thoughts, said unto them, Every kingdom divided against itself is brought to desolation; and a house divided against a house falleth. Its 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. Or thinkest thou that I cannot beseech my Father, and he shall even now send me more than twelve legions of angels? Hath any of the rulers believed on him, or of the Pharisees? A breeze brought him the smell of clover—the sweet-smelling world beyond his fence. And neither would war save them. On the third night, we fell asleep fully clothed, exhausted. But an angel of the Lord by night opened the prison doors, and brought them out, and said, Ye 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. And when they had crossed over, they came to the land unto Gennesaret, and moored to the shore. but this is that which hath been spoken through the prophet Joel: But he saw nothing new. And 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: Another miracle. “Can I have some money?” asked Fern. And 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. And 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: I 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. And I will most gladly spend and be spent for your souls. If I love you more abundantly, am I loved the less? for the Lord will execute his word upon the earth, finishing it and cutting it short. But I found that he had committed nothing worthy of death: and as he himself appealed to the emperor I determined to send him. She 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. And he went with him; and a great multitude followed him, and they thronged him. But when the morning came again He knew he could not fly And 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. Now 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. Pausing in the shade of an apple tree, he put his strong snout into the ground and began pushing, digging, and rooting. All in all, the Zuckermans’ pigpen was the center of attraction. You talked with that colonel? for this my son was dead, and is alive again; he was lost, and is found. And they began to be merry. And they came to the other side of the sea, into the country of the Gerasenes. And 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. Wherefore, my brethren beloved and longed for, my joy and crown, so stand fast in the Lord, my beloved. and 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: That takes real leg work.” Know ye that our brother Timothy hath been set at liberty; with whom, if he come shortly, I will see you. For being ignorant of God’s righteousness, and seeking to establish their own, they did not subject themselves to the righteousness of God. And when ye see a south wind blowing, ye say, There will be a scorching heat; and it cometh to pass. “Everybody in!” called Mr. Arable. He barely took note that the sky was closing down over him, becoming a grey press of moisture. What do the people do when they put on shoes? Said Rabbit. Also 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. I beseech thee for my child, whom I have begotten in my bonds, Onesimus, Jake closed with him and struck again and hit more with the flat than the sharp part of the blade. Jesus 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. and thence they sailed to Antioch, from whence they had been committed to the grace of God for the work which they had fulfilled. Dodge about, dodge about!” cried the goose. He walked slowly to his food trough and sniffed to see if anything had been overlooked at lunch. if so be that ye heard him, and were taught in him, even as truth is in Jesus: Kids think they hear all sorts of things.” But for that matter I don’t understand how a spider learned to spin a web in the first place. He 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. Or I only and Barnabas, have we not a right to forbear working? These 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. and she was with child; and she crieth out, travailing in birth, and in pain to be delivered. There were seven brethren: and the first took a wife, and dying left no seed; Enough light to shape the ridges against the sky, enough light to know that though the mountains are not permanent, they are persistent. I do not see how this place could support a lone man in the wild, much less a large population of fugitives. And she said, No man, Lord. And Jesus said, Neither do I condemn thee: go thy way; from henceforth sin no more.] Somewhere in their eastward progress, they had crossed the boundary line and had left the Nation and entered America and become fugitives. One day while swimming around beside a large rock he noticed a small hole through which pond water flowed. “Did you hear the way she rambled on about the animals, pretending that they talked?” Mr. Arable chuckled. Setting the pail down, he picked up the stick that Avery had dropped and pried the trough up. let 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. And 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. Howbeit, after I am raised up, I will go before you into Galilee. I do not make void the grace of God: for if righteousness is through the law, then Christ died for nought. Take 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. Thou foolish one, that which thou thyself sowest is not quickened except it die: But from the beginning of the creation, Male and female made he them. Fern looked at her father. Servants, be in subjection to your masters with all fear; not only to the good and gentle, but also to the froward. But his partner I didn't recognize. As I caught up with them, I stopped the car to give them a ride. A sparrow with a streaky breast arrived and sang. Which thou hast prepared before the face of all peoples; But at least Calhoun saw some prospect in me, or some element of entertainment. that your glorying may abound in Christ Jesus in me through my presence with you again. and being made free from sin, ye became servants of righteousness. “I could spin a web if I tried,” said Wilbur, boasting. Mr. 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. But 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. Was any man called being circumcised? let him not become uncircumcised. Hath any been called in uncircumcision? let him not be circumcised. Look! Other trees had lost their leaves, but this one was forever green. And 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. so we, who are many, are one body in Christ, and severally members one of another. “Sure,” said the doctor. The children walked slowly up toward the barn. Nevertheless 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. Now the chief priests and the whole council sought false witness against Jesus, that they might put him to death; Ye lust, and have not: ye kill, and covet, and cannot obtain: ye fight and war; ye have not, because ye ask not. Some 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. (all which things are to perish with the using), after the precepts and doctrines of men? Her 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. and to Apphia our sister, and to Archippus our fellow-soldier, and to the church in thy house: and when they found him not, they returned to Jerusalem, seeking for him. It made it easier to stay hidden until she was ready to strike her next victim. “For goodness’ sake!” bellowed Mr. Zuckerman, who was really drenched. Command 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. And 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. And he said unto them, The Son of man is lord of the sabbath. As the days went by, Wilbur grew and grew. By faith Moses, when he was grown up, refused to be called the son of Pharaoh’s daughter; “So am I,” said another tiny voice. An old man. I say it not to condemn you: for I have said before, that ye are in our hearts to die together and live together. One 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. For it is as when a man, going into another country, called his own servants, and delivered unto them his goods. “What are your names, please?” asked Wilbur, trembling with joy. “fine, I like that very much,” said the third spider. Everything that is living will die one day. Nay, much rather, those members of the body which seem to be more feeble are necessary: “Kill you. For there is one God, one mediator also between God and men, himself man, Christ Jesus, and Uzziah begat Jotham; and Jotham begat Ahaz; and Ahaz begat Hezekiah; And he answered and said, Have ye not read, that he who made them from the beginning made them male and female, For I am come down from heaven, not to do mine own will, but the will of him that sent me. Ye 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; So 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? But 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. But 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; The end And 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. None. For such men are false apostles, deceitful workers, fashioning themselves into apostles of Christ. Mrs. Zuckerman wanted to see a deep freeze. For we rejoice, when we are weak, and ye are strong: this we also pray for, even your perfecting. Then went the Pharisees, and took counsel how they might ensnare him in his talk. to 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, Have ye understood all these things? They say unto him, Yea. Or 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? Even today the titmouse has a short tongue and Cherokee people know it is a liar. When Lurvy arrived with breakfast, there was the handsome pig, and over him, woven neatly in block letters, was the word TERRIfiC. Charlotte needs new ideas so she can write messages in her web and save Wilbur's life.” “Plaything? Now 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; Just Charley and Nancy and their grown boys, Nantayale Jake and Lowan. And the multitude went up and began to ask him to do as he was wont to do unto them. His brethren therefore said unto him, Depart hence, and go into Judæa, that thy disciples also may behold thy works which thou doest. Finally, he came to the small pond at the base of the large rock. The grass was wet and the earth smelled of springtime. Fern’s sneakers were sopping by the time she caught up with her father. He that descended is the same also that ascended far above all the heavens, that he might fill all things.) For through thy knowledge he that is weak perisheth, the brother for whose sake Christ died. Wilbur heard several people make favorable remarks about Uncle’s great size. But Paul and Barnabas tarried in Antioch, teaching and preaching the word of the Lord, with many others also. And then shall they see the Son of man coming in a cloud with power and great glory. And he charged them much that they should not make him known. Arriving at the house once more, they spied a giant boulder upon the hillside. To him bear all the prophets witness, that through his name every one that believeth on him shall receive remission of sins. At least that’s the story the book told. Stop inventing these wild tales!” And Jesus perceiving it said, O ye of little faith, why reason ye among yourselves, because ye have no bread? And we are witnesses of these things; and so is the Holy Spirit, whom God hath given to them that obey him. On 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. And they were glad, and covenanted to give him money. And he that sweareth by the temple, sweareth by it, and by him that dwelleth therein. “Give him two spoonfuls of sulphur and a little molasses,” said Mr. Zuckerman. I 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, For 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. Wilbur ate heartily. And when they had kindled a fire in the midst of the court, and had sat down together, Peter sat in the midst of them. She was still thinking about the pig when the teacher said: “Fern, what is the capital of Pennsylvania?” Mr. Arable was not willing to provide for him any longer. Care to memorialize this agreement on paper? But 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. But that it spread no further among the people, let us threaten them, that they speak henceforth to no man in this name. But what saith it? The word is nigh thee, in thy mouth, and in thy heart: that is, the word of faith, which we preach: There’s no honor here. Grace to you and peace from God the Father and the Lord Jesus Christ. He wore his good clothes all the time now—got right into them when he got up in the morning. Now 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. “Come and see for yourself.” The rat didn’t waste a minute. And 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. And to whom sware he that they should not enter into his rest, but to them that were disobedient? “Then don’t worry,” said the doctor. And 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. But 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. And there were shepherds in the same country abiding in the field, and keeping watch by night over their flock. But 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. For 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: hath 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; They just figured it was better to be armed than disarmed. “That sign ought to say ‘Zuckerman’s Famous Pig and Two Stowaways. And 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. (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: You go there almost every afternoon, don’t you?” Spearfinger was a terrible old monster who lived high in the mountains. and through a window was I let down in a basket by the wall, and escaped his hands. And 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. Even 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? He knew he would have to act quickly. And when he was come down from the mountain, great multitudes followed him. And it came to pass when Jesus had finished commanding his twelve disciples, he departed thence to teach and preach in their cities. I’m an old sheep and I see the same thing, same old business, year after year. In the kitchen, Mrs. Zuckerman suddenly made an announcement. Among humans, they call it a 'shoe.' As they passed the Ferris wheel, Fern gazed up at it and wished she were in the topmost car with Henry Fussy at her side. Along the way, we collected a few more fugitive stragglers. This is a dead tree. Fern came slowly down the stairs. And 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. If any man’s work shall be burned, he shall suffer loss: but he himself shall be saved; yet so as through fire. And 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. Charlotte watched in delight. One 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. and 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. “He claims he’s a spring pig,” reported Charlotte, “and perhaps he is. And they all ate, and were filled. You have nothing to fear, Wilbur—nothing to worry about. But with me helping you, it can be done.” Rejoice always; But 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. Then, when they had fasted and prayed and laid their hands on them, they sent them away. By 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. For 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. And Jesus answering them said, Have ye not read even this, what David did, when he was hungry, he, and they that were with him; Now 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. And 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. and 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. Fungus It was in the fall, and the leaves had fallen, and the moon was shining brightly. But 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: And they went to another village. No 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. And 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. And when the dragon saw that he was cast down to the earth, he persecuted the woman that brought forth the man child. And he came nigh and touched the bier: and the bearers stood still. And he said, Young man, I say unto thee, Arise. And 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? “A buttermilk bath. Dipping her paddle in the buttermilk, she rubbed him all over. These they took back toward the beast, with plans to snare its head. And 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? I guess I was about sixteen years old, and I had just gotten my operator's license. And 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. But Bear had seen Jackson at work. Let each man abide in that calling wherein he was called. But forget not this one thing, beloved, that one day is with the Lord as a thousand years, and a thousand years as one day. and 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. But just at the first point of slumber, he had a dream of falling and gave out a little yell. So that with good courage we say, The Lord is my helper; I will not fear: What shall man do unto me? that it may be well with thee, and thou mayest live long on the earth. “Nothing,” said Charlotte. “But that proves nothing. And Jesus seeing their faith saith unto the sick of the palsy, Son, thy sins are forgiven. Yea, brother, let me have joy of thee in the Lord: refresh my heart in Christ. While 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. These 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. And 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; We scoured the rivers and creeks and streams like hounds after foxes. So she sat quite still, and talked less than usual. “Just keep calm.” The people, they say, learned the Cherokee letters quickly. the son of Melea, the son of Menna, the son of Mattatha, the son of Nathan, the son of David, And we have confidence in the Lord touching you, that ye both do and will do the things which we command. When he quit beating, he started talking, and his words matched up with the story of the Green Man and God. When I was growing up, I guess it was about the year 1957, we did not have electricity in our house yet. Now in the place where he was crucified there was a garden; and in the garden a new tomb wherein was never man yet laid. Now we beseech you, brethren, touching the coming of our Lord Jesus Christ, and our gathering together unto him; I came out from the Father, and am come into the world: again, I leave the world, and go unto the Father. From two to three, he planned to scratch itchy places by rubbing against the fence. But the things which God foreshowed by the mouth of all the prophets, that his Christ should suffer, he thus fulfilled. For the Son of Man has come to save that which was lost. Would that ye could bear with me in a little foolishness: but indeed ye do bear with me. And he said unto her, For this saying go thy way; the demon is gone out of thy daughter. How to save the broken fragments of the world? But I say unto you that it shall be more tolerable for the land of Sodom in the day of judgment, than for thee. “I want to go out on the midway.” And he answered and said, He that dipped his hand with me in the dish, the same shall betray me. but if it beareth thorns and thistles, it is rejected and nigh unto a curse; whose end is to be burned. Not all of us do, I said. “I worry about Fern,” she said. “It's my turn,” said Fern. And we desire that each one of you may show the same diligence unto the fulness of hope even to the end: She jabbed around in every direction trying to stab anyone who came near the top of the pitfall. For ye are not come unto a mount that might be touched, and that burned with fire, and unto blackness, and darkness, and tempest, And he laid hold on the dragon, the old serpent, which is the Devil and Satan, and bound him for a thousand years, He that overcometh shall inherit these things; and I will be his God, and he shall be my son. And 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. Charlotte was both. Flee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body. He that heareth you heareth me; and he that rejecteth you rejecteth me; and he that rejecteth me rejecteth him that sent me. And 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, Templeton seized the string, passed it around the end of the pig's tail, and tied two half hitches. “Just the same, I do worry about her,” replied Mrs. Arable. asking a favor against him, that he would send for him to Jerusalem; laying a plot to kill him on the way. I 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. They answered and said unto him, If this man were not an evil-doer, we should not have delivered him up unto thee. “Stop acting like a spoiled child!” And they that were with me beheld indeed the light, but they heard not the voice of him that spake to me. “None of us do,” said Dr. Dorian, sighing. which, 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. So were her teeth. Wherefore, though I have all boldness in Christ to enjoin thee that which is befitting, The rat was swollen to twice his normal size. In the resurrection therefore whose wife of them shall she be? for the seven had her to wife. Jesus 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. Then come to him the disciples of John, saying, Why do we and the Pharisees fast oft, but thy disciples fast not? Finally he decided he would have to speak up. that 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. As soon as the people were gone, Charlotte spoke to Wilbur. The day was hot. “I know,” he said; “she’d kill you if you did.” It was the kind of barn that swallows like to build their nests in. These 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: All of a sudden she had an idea. The truck began to move ahead. And after these days Elisabeth his wife conceived; and she hid herself five months, saying, For thou shalt be a witness for him unto all men of what thou hast seen and heard. And he took a little child, and set him in the midst of them: and taking him in his arms, he said unto them, Saying 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), It is thought that there are not more than 400 rifles among them, and those for the most part useless or in bad repair. And Jesus stood, and commanded him to be brought unto him: and when he was come near, he asked him, And 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; “I’ll appeal to his baser instincts, of which he has plenty. Simon Peter saith unto him, Lord, not my feet only, but also my hands and my head. Jackson 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. If ye love me, ye will keep my commandments. If ye abide in me, and my words abide in you, ask whatsoever ye will, and it shall be done unto you. Unto you first God, having raised up his Servant, sent him to bless you, in turning away every one of you from your iniquities. Something along those lines, Smith said. By helping you, perhaps I was trying to lift up my life a trifle. how that he was caught up into Paradise, and heard unspeakable words, which it is not lawful for a man to utter. It 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. Again, the kingdom of heaven is like unto a net, that was cast into the sea, and gathered of every kind: The salutation of me Paul with mine own hand. Divisions of governance no bigger than cove bottoms but assigned the names of lost clans. In the beginning was the Word, and the Word was with God, and the Word was God. Yet in like manner these also in their dreamings defile the flesh, and set at nought dominion, and rail at dignities. And behold, forthwith three men stood before the house in which we were, having been sent from Cæsarea unto me. The nobleman saith unto him, Sir, come down ere my child die. that with one accord ye may with one mouth glorify the God and Father of our Lord Jesus Christ. The 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. And 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. And Jesus looking upon them said to them, With men this is impossible; but with God all things are possible. Now there was a certain rich man, and he was clothed in purple and fine linen, faring sumptuously every day: Mr. Arable set the carton down at Fern’s place. The Jews therefore said unto him, Thou art not yet fifty years old, and hast thou seen Abraham? They shall put you out of the synagogues: yea, the hour cometh, that whosoever killeth you shall think that he offereth service unto God. However, I was around him enough to think that being Crockett in those days would have been pretty fine. We heard it again the third time, and we knew for sure it was coming toward us, as the meows were getting louder. People sat in small groups talking. Jesus saith unto him, Because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed. and I appoint unto you a kingdom, even as my Father appointed unto me, This is again the second sign that Jesus did, having come out of Judæa into Galilee. And when the seven among the four thousand, how many basketfuls of broken pieces took ye up? And they say unto him, Seven. Put to death therefore your members which are upon the earth: fornication, uncleanness, passion, evil desire, and covetousness, which is idolatry; And 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. about whom, when I was at Jerusalem, the chief priests and the elders of the Jews informed me, asking for sentence against him. In Charley’s telling, it was a miraculous process, at the end of which he suddenly had new pants. And when he had said this, he showed them his hands and his feet. And 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. And 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. and 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: The losers leave their dead and wounded where they fall and flee in vomitous panic. and 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. About half an hour before dawn, Wilbur woke and listened. He tried to look radiant without getting food in his ears. And 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. Then understood they that he bade them not beware of the leaven of bread, but of the teaching of the Pharisees and Sadducees. He began to cry. The first evening at dinner, she straddled me in my chair, her dress in a bunch around us. (for that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their lawless deeds): Take 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. Anything to oblige.” Ye have heard that it was said, Thou shalt not commit adultery: But to do good and to communicate forget not: for with such sacrifices God is well pleased. “But it all started with that pig we let Fern raise on a bottle. I cooked the best quail any of them had ever tasted. Okay, said Wolf. And 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. But 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? And 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. If the world hateth you, ye know that it hath hated me before it hated you. Then saith Pilate unto him, Hearest thou not how many things they witness against thee? I could feel everything falling apart. The strange new fish walked along the bottom of the stream on four legs. The 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. when 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. “It’s a good thing you can’t see what I see,” she said. But he said unto them, Not all men can receive this saying, but they to whom it is given. “Come out at once!” cried Mrs. Arable. But the water was flowing too fast for such a small fish to swim against. “He'll make a perfect breakfast for me.” I paused to think but then realized that not much thought was required. He must have fought bravely and led his people well. Then charged he the disciples that they should tell no man that he was the Christ. and they repented not of their murders, nor of their sorceries, nor of their fornication, nor of their thefts. Then 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? When 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. Behold, 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, And by chance a certain priest was going down that way: and when he saw him, he passed by on the other side. And he that sat on the cloud cast his sickle upon the earth; and the earth was reaped. He that loveth not knoweth not God; for God is love. That's some pig!” He was a short man who spoke Cherokee so poorly that he would not attempt it in public, nor could he even read the syllabary. And 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. and I persecuted this Way unto the death, binding and delivering into prisons both men and women. And 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. Please present this to Mrs. Featherstone, I said. They were actually part of the web, Edith. And there come his mother and his brethren; and, standing without, they sent unto him, calling him. The Jews therefore answered and said unto him, What sign showest thou unto us, seeing that thou doest these things? After all, what’s a life, anyway? and 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. “What does ‘languishing’ mean?” They profess that they know God; but by their works they deny him, being abominable, and disobedient, and unto every good work reprobate. And they rose up that very hour, and returned to Jerusalem, and found the eleven gathered together, and them that were with them, He 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. Teacher, which is the great commandment in the law? He examined the window ledge, stared up at the ceiling. It is a fearful thing to fall into the hands of the living God. VII. Bad News Continue stedfastly in prayer, watching therein with thanksgiving; This time when she stepped outside … she was wearing her scarf and boots. “That is, I guess I like it.” No way to come out the other side feeling noble or even whole anymore. One of the two that heard John speak, and followed him, was Andrew, Simon Peter’s brother. But speak thou the things which befit the sound doctrine: The 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. And they departed, and went throughout the villages, preaching the gospel, and healing everywhere. And 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. That 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. For verily that which hath been made glorious hath not been made glorious in this respect, by reason of the glory that surpasseth. For when God made promise to Abraham, since he could swear by none greater, he sware by himself, Yea, 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. And 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. and 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, “Put it on her chair!” said Mrs. Arable. Others said, It is he: others said, No, but he is like him. He said, I am he. If we sowed unto you spiritual things, is it a great matter if we shall reap your carnal things? Now when they heard of the resurrection of the dead, some mocked; but others said, We will hear thee concerning this yet again. And 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? “That pig is radiant.” Wilbur lay asleep in the straw. “Furthermore,” said Mr. Zuckerman, “I want you to start building a crate for Wilbur. And he would not: but went and cast him into prison, till he should pay that which was due. He could reliably drive a dart through a pigeon’s head at nearly the distance he could throw a rock. If 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. But call to remembrance the former days, in which, after ye were enlightened, ye endured a great conflict of sufferings; neither 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: For I could wish that I myself were anathema from Christ for my brethren’s sake, my kinsmen according to the flesh: And every evening he went forth out of the city. “Roll it away and add it to that nasty collection of yours.” to enrol himself with Mary, who was betrothed to him, being great with child. it was winter; and Jesus was walking in the temple in Solomon’s porch. What people don't think of!” He couldn’t help overhearing these remarks, and he couldn't help worrying. Children, obey your parents in all things, for this is well-pleasing in the Lord. so 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. You smell less of everybody’s chamberpots in the morning. Some therefore cried one thing, and some another: for the assembly was in confusion; and the more part knew not wherefore they were come together. Nothing 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. You can tell all kinds of stories in the space between dark and dawn. These autumn days will shorten and grow cold. For 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. They got soaking wet. Know 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. “I won’t leave you here alone to die. So 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: Fill ye up then the measure of your fathers. for 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. Not the word you wanted spoken to you out alone in the high mountains. She fell back to the end of the group and then stopped. And many came unto him; and they said, John indeed did no sign: but all things whatsoever John spake of this man were true. Do you wonder where soil comes from? But they did not all hearken to the glad tidings. For Isaiah saith, Lord, who hath believed our report? For what is our hope, or joy, or crown of glorying? Are not even ye, before our Lord Jesus at his coming? But he answered and said to one of them, Friend, I do thee no wrong: didst not thou agree with me for a shilling? and 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. “There's no denying that. Lurvy pulled his big handkerchief from his pocket and wiped the sweat from the back of his neck. The woods refused sustenance. The truck, driven by Mr. Arable, crawled slowly back to the pigpen. But they’re not going to be gained here. “My cousin kept the fish for a while, and then, when she got good and ready, she ate it.” The salutation of me Paul with mine own hand. Remember my bonds. Grace be with you. “I think there’s something wrong with that pig of yours. “Wash up and eat your breakfast, Avery!” said his mother. and sent messengers before his face: and they went, and entered into a village of the Samaritans, to make ready for him. Behold, 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. And 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. Jesus therefore came out, wearing the crown of thorns and the purple garment. And Pilate saith unto them, Behold, the man! How 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. Hello, said Wolf. And 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? His friends the sheep and the geese were glad to see him back. He was pleased with his new home. All they had brought in the trade was a puzzlingly small quantity of beans and cornmeal and a few pumpkins and cabbages. The Spirit himself beareth witness with our spirit, that we are children of God: And 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. for 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; who hath been made, not after the law of a carnal commandment, but after the power of an endless life: And when they had brought their boats to land, they left all, and followed him. and 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; unto 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: But 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: Wilbur couldn't believe what was happening to him when Lurvy caught him and forced the medicine down his throat. I 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. Let each man do according as he hath purposed in his heart: not grudgingly, or of necessity: for God loveth a cheerful giver. And 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. It's a shoe? said the others. and so fearful was the appearance, that Moses said, I exceedingly fear and quake: By the time the bus reached school, Fern had named her pet, selecting the most beautiful name she could think of. having 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. The year before the Removal, Bear and I between us could fairly accurately claim control over about ten thousand acres. Lurvy! King Agrippa, believest thou the prophets? I know that thou believest. And his mouth was opened immediately, and his tongue loosed, and he spake, blessing God. and being found in fashion as a man, he humbled himself, becoming obedient even unto death, yea, the death of the cross. But 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. “Why?” asked Wilbur. But 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. And 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. Isn't your friend going to ride with us? I asked him. But it is my country. “If I struggle I'll get dirty,” said Wilbur. and they shall bring the glory and the honor of the nations into it: “Well, he's dirty, and he’s going to have a bath.” Wherefore? because I love you not? God knoweth. And it was the third hour, and they crucified him. Ye 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. whereas 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. Two of them started loading pipes, tamping tobacco with their thumbs like filling a posthole. They said therefore unto him, How then were thine eyes opened? for he taught them as one having authority, and not as their scribes. Blessed are the pure in heart: for they shall see God. Let 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. And his father and his mother were marvelling at the things which were spoken concerning him; Fern jumped aboard and sat on top of the crate. And 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. “Who’s ‘us’?” asked Mr. Arable. but they, when they saw him walking on the sea, supposed that it was a ghost, and cried out; but if a man suffer as a Christian, let him not be ashamed; but let him glorify God in this name. that they said to you, In the last time there shall be mockers, walking after their own ungodly lusts. For 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. People are already getting sick of reading the words ‘Some Pig!’ If any man thinketh that he knoweth anything, he knoweth not yet as he ought to know; “Oh, dear!” And to the angel of the church in Pergamum write: These things saith he that hath the sharp two-edged sword: And when the disciples saw it, they marvelled, saying, How did the fig tree immediately wither away? And 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, using hospitality one to another without murmuring: But 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; and let him that is on the housetop not go down, nor enter in, to take anything out of his house: He would dream that men were coming to get him with knives and guns. and having been made perfect, he became unto all them that obey him the author of eternal salvation; And Agrippa said unto Paul, Thou art permitted to speak for thyself. Then Paul stretched forth his hand, and made his defence: Now the passover, the feast of the Jews, was at hand. “Let’s let the children go off by themselves,” suggested Mr. Arable. And they answering say unto him, Where, Lord? And he said unto them, Where the body is, thither will the eagles also be gathered together. He 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. And he said, Why, what evil hath he done? But they cried out exceedingly, saying, Let him be crucified. But she was shot down by the Americans nevertheless. A missionary named Worcester helped Sequoyah turn his beautiful loops and spirals into sturdy, English-looking symbols that could be printed with lead type. Jesus saith unto him, If I will that he tarry till I come, what is that to thee? follow thou me. Again a second time he went away, and prayed, saying, My Father, if this cannot pass away, except I drink it, thy will be done. But Solomon built him a house. But 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. Our 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. Then Charlie went to fetch his armor. that 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: Smith made broad encompassing motions using the whole of both arms, as if to implicate the wide landscape in the coming actions. The boys lay spaced apart, and the ground was marked everywhere with sign of what had taken place. And the Pharisees went out, and straightway with the Herodians took counsel against him, how they might destroy him. Mrs. Arable found a baby's nursing bottle and a rubber nipple. And there appeared unto him an angel from heaven, strengthening him. My cousin was very much surprised, of course. When the peas come in, they are so sweet we pick and eat them right there. And when the ten heard it, they were moved with indignation concerning the two brethren. He had indeed the pointed face, tiny blank eyes, and sharp snapping teeth of a possum. Now consider how great this man was, unto whom Abraham, the patriarch, gave a tenth out of the chief spoils. I laughed. And he hath on his garment and on his thigh a name written, KING OF KINGS, AND LORD OF LORDS. And 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. And he is arrayed in a garment sprinkled with blood: and his name is called The Word of God. Therefore, 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: “What fantastic creatures boys are! Woe 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. for ye are all sons of light, and sons of the day: we are not of the night, nor of darkness; And he commanded the chariot to stand still: and they both went down into the water, both Philip and the eunuch; and he baptized him. But foolish and ignorant questionings refuse, knowing that they gender strifes. I was a stranger, and ye took me not in; naked, and ye clothed me not; sick, and in prison, and ye visited me not. His catch went into the creel with its fellow roots, and Charley closed the lid as if they might otherwise escape. I love you Bigfish. Swim on, swim on… and 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; I 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: And they answered Jesus, and said, We know not. He also said unto them, Neither tell I you by what authority I do these things. The 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. For the mystery of lawlessness doth already work: only there is one that restraineth now, until he be taken out of the way. and he gave him authority to execute judgment, because he is a son of man. After these things Jesus went away to the other side of the sea of Galilee, which is the sea of Tiberias. He 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. But Paul thought not good to take with them him who withdrew from them from Pamphylia, and went not with them to the work. Whereupon as I journeyed to Damascus with the authority and commission of the chief priests, for neither was the man created for the woman; but the woman for the man: Ye serpents, ye offspring of vipers, how shall ye escape the judgment of hell? that 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. and looking up, they see that the stone is rolled back: for it was exceeding great. And they took him, and killed him, and cast him forth out of the vineyard. And Paul, looking stedfastly on the council, said, Brethren, I have lived before God in all good conscience until this day. The chickens would not live out the morning but would have their necks wrung and be roasting on a spit for someone’s dinner. Nothing to keep you awake fretting. and 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; Being 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; I kept a set of clean dry clothes in an oilcloth bag. for no man ever hated his own flesh; but nourisheth and cherisheth it, even as Christ also the church; A photographer took Wilbur’s picture. Take, brethren, for an example of suffering and of patience, the prophets who spake in the name of the Lord. And he called to him the multitude again, and said unto them, Hear me all of you, and understand: He waved his hand in front of his face and could not see a thing. And take it easy—don’t rush him! Wilbur was desperate. Another 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. and 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. Wherefore lift up the hands that hang down, and the palsied knees; Tomorrow will go fine. Why do we also stand in jeopardy every hour? But, 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. But he saith, Nay; lest haply while ye gather up the tares, ye root up the wheat with them. “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. He breathed the morning air into his lungs. having condemnation, because they have rejected their first pledge. “It’s something for me, for a change.” In a week, armed with only a few letters of introduction, you could meet everyone of political or social consequence, right up to the president. “Oh, don’t pay any attention to me,” said Charlotte. Grandpa always tries the hottest kinds, even some from South America. I put the book down and tried not to let it color my view of the man, for Crockett had no say in its production. “My little niece calls him Wilbur. one that ruleth well his own house, having his children in subjection with all gravity; “Come out of that pigpen immediately!” cried Mrs. Arable. but Israel, following after a law of righteousness, did not arrive at that law. The 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. When the stampede was over, he was bleeding and bruised, but nothing was broken. “How many goslings are there? For 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. Then remember the day when the word ‘radiant’ appeared clearly on the web. And he said unto him, Son, thou art ever with me, and all that is mine is thine. A thing of wonder, but only to be admired briefly and then shut carefully away again. “Good night, Wilbur!” And 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. The geese cheered. But 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. Woe 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. X. An Explosion Long before Sunday came, the news spread all over the county. As we neared the door of the colonel’s office, Smith slowed and entered behind me. The 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. For scarcely for a righteous man will one die: for peradventure for the good man some one would even dare to die. He spun and looked behind him and saw the blurred black shape of what might be bear at the edge of vision. While 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. It seemed to sleep. and shall cut him asunder, and appoint his portion with the hypocrites: there shall be the weeping and the gnashing of teeth. And 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. After he had ended all his sayings in the ears of the people, he entered into Capernaum. And he that beholdeth me beholdeth him that sent me. And 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? The God and Father of the Lord Jesus, he who is blessed for evermore knoweth that I lie not. Then Festus, when he had conferred with the council, answered, Thou hast appealed unto Cæsar: unto Cæsar shalt thou go. and delivered righteous Lot, sore distressed by the lascivious life of the wicked to whom our fathers would not be obedient, but thrust him from them, and turned back in their hearts unto Egypt, And 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? Nothing 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. Yeah, something like that. Jesus saith unto him, Go thy way; thy son liveth. The man believed the word that Jesus spake unto him, and he went his way. but 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. and they may recover themselves out of the snare of the devil, having been taken captive by him unto his will. “Of course it is,” replied Lurvy. One 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. Now in the morning as he returned to the city, he hungered. “Luck had nothing to do with this,” said the goose. Mostly full-bloods. So they took away the stone. And Jesus lifted up his eyes, and said, Father, I thank thee that thou heardest me. “Neither will I,” said the rat, picking his teeth. “What a lot of fuss about nothing!” Looking back upon my first meeting with them in the social room of the Queen, it seems like we should have gotten along. For what should a man give in exchange for his life? Now there went with him great multitudes: and he turned, and said unto them, And he said, Jesus, remember me when thou comest in thy kingdom. You 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. Sleep hard and dream of your sweethearts. that in the name of Jesus every knee should bow, of things in heaven and things on earth and things under the earth, In 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. The Cherokees were never safe and tried to always stay together in groups of 2 or more. even when we were dead through our trespasses, made us alive together with Christ (by grace have ye been saved), When therefore he said unto them, I am he, they went backward, and fell to the ground. Who shall separate us from the love of Christ? shall tribulation, or anguish, or persecution, or famine, or nakedness, or peril, or sword? and 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. And the white Indians of the Nation had gone at it to the best of their understanding. whom 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; One night we built a fire in the yard in the old black circle. And they said unto them even as Jesus had said: and they let them go. I 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. But 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. He 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. Now Jesus loved Martha, and her sister, and Lazarus. “Meetings bore me. The 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? And now, Father, glorify thou me with thine own self with the glory which I had with thee before the world was. They said therefore unto him, What must we do, that we may work the works of God? strengthened with all power, according to the might of his glory, unto all patience and longsuffering with joy; And putting to sea from thence, we sailed under the lee of Cyprus, because the winds were contrary. “There! he said, triumphantly. Now 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? “It would be wonderful fun.” They bring to the Pharisees him that aforetime was blind. Not from the spider, we can rest assured of that. Everyone looked at me. I 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; But when these things begin to come to pass, look up, and lift up your heads; because your redemption draweth nigh. Is 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. Before she finished the sentence, Wilbur was asleep. I fast twice in the week; I give tithes of all that I get. “Yes, it is,” agreed Charlotte. I think I left just a tiny bit of mashed potato.” Take heed, brethren, lest haply there shall be in any one of you an evil heart of unbelief, in falling away from the living God: And Simon answered and said, Pray ye for me to the Lord, that none of the things which ye have spoken come upon me. Jesus 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. He said he believed that you could think about our situation for a month and come to the same conclusion, for our dilemma was simple. knowing that such a one is perverted, and sinneth, being self-condemned. I am a glutton but not a merry-maker. and having rehearsed all things unto them, he sent them to Joppa. Mr. Zuckerman knew that a manure pile is a good place to keep a young pig. “No name,” he said in a big, hearty voice. But when we are judged, we are chastened of the Lord, that we may not be condemned with the world. Brethren, 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. For Moses writeth that the man that doeth the righteousness which is of the law shall live thereby. It 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. But 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. “He lays in clean straw,” corrected Mr. Zuckerman. And being moved with compassion, he stretched forth his hand, and touched him, and saith unto him, I will; be thou made clean. What 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: preaching boldly in the name of the Lord: and he spake and disputed against the Grecian Jews; but they were seeking to kill him. And 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), and 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; He 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. Nevertheless that which ye have, hold fast till I come. If 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. And when forty years were fulfilled, an angel appeared to him in the wilderness of mount Sinai, in a flame of fire in a bush. He would stand and gaze up at her with adoring eyes. I love you. And 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; But 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. And as they went out from Jericho, a great multitude followed him. This is my commandment, that ye love one another, even as I have loved you. While 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. Everybody I talked to came to the same conclusion as the secretary of war. But let the brother of low degree glory in his high estate: Littlefish thought to himself, They only say these things because I am so small and they are so big. For 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; Ye ask, and receive not, because ye ask amiss, that ye may spend it in your pleasures. and he supposed that his brethren understood that God by his hand was giving them deliverance; but they understood not. And they were all filled with the Holy Spirit, and began to speak with other tongues, as the Spirit gave them utterance. And 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: When he woke it was late afternoon. And 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: He stopped to listen, and there was silence, even when he opened his mouth wide to aid his hearing. for he was a good man, and full of the Holy Spirit and of faith: and much people was added unto the Lord. But, according to his promise, we look for new heavens and a new earth, wherein dwelleth righteousness. Then went falling to the ground After these things came Jesus and his disciples into the land of Judæa; and there he tarried with them, and baptized. for we are become partakers of Christ, if we hold fast the beginning of our confidence firm unto the end: You’ve got to quit thinking that way, I said. And the Lord’s servant must not strive, but be gentle towards all, apt to teach, forbearing, being confident of this very thing, that he who began a good work in you will perfect it until the day of Jesus Christ: and Eliud begat Eleazar; and Eleazar begat Matthan; and Matthan begat Jacob; Then after three years I went up to Jerusalem to visit Cephas, and tarried with him fifteen days. Still, I don’t understand how those words got into the web. And when the devil had completed every temptation, he departed from him for a season. In his excitement he missed his aim, and the water splashed all over Mr. Zuckerman and Avery. who through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions, Spiders are very clever at weaving their webs, but needless to say spiders cannot write.” in 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; But the fruit of the Spirit is love, joy, peace, longsuffering, kindness, goodness, faithfulness, And 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. Wilbur's food is your food; therefore Wilbur's destiny and your destiny are closely linked. Nancy 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. Near dusk, the faces in tree bark cease hiding and stare out at you, the welcoming ones and also the malevolent, open in their curiosity. howbeit 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. Smith rose and went to a trunk and took out another glass and poured me a drink from his bottle. Wilbur didn’t care. “What are you thinking about, Charlotte?” he asked. Charlotte was not satisfied, however. “He’s humble, too,” said a woman, reading the sign on the web. “Avery is always fine. But 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. The Ferris wheel was lighted now. lest any man should say that ye were baptized into my name. And when they were assembled with the elders, and had taken counsel, they gave much money unto the soldiers, When he recovered from his emotion, he spoke again. The disciples say unto him, If the case of the man is so with his wife, it is not expedient to marry. There was a joy in descent, in suddenly finding the pull of the earth acting consonant with your needs. “He’s in that corner, under the straw, asleep,” said Charlotte. And 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. But 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. Then are there crucified with him two robbers, one on the right hand and one on the left. Now concerning things sacrificed to idols: We know that we all have knowledge. Knowledge puffeth up, but love edifieth. And they said, What further need have we of witness? for we ourselves have heard from his own mouth. And I am glad for your sakes that I was not there, to the intent ye may believe; nevertheless let us go unto him. The Jews answered him, For a good work we stone thee not, but for blasphemy; and because that thou, being a man, makest thyself God. All 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. They 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. even as thou gavest him authority over all flesh, that to all whom thou hast given him, he should give eternal life. The sun shall be turned into darkness, And the moon into blood, Before the day of the Lord come, That great and notable day: Light comes from everywhere at once, shapes shift, and sounds are muffled and magnified unpredictably. Love suffereth long, and is kind; love envieth not; love vaunteth not itself, is not puffed up, A little while, and ye behold me no more; and again a little while, and ye shall see me. She’s a rather queer child — full of notions. but 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. And the rat began to climb a rope that hung against the wall. His medal still hung from his neck; by looking out of the corner of his eye he could see it. They got up, and together they walked down to Wilbur’s yard. And on that day, when even was come, he saith unto them, Let us go over unto the other side. And 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. His name was Perry. And with many other words he testified, and exhorted them, saying, Save yourselves from this crooked generation. Some indeed preach Christ even of envy and strife; and some also of good will: And he went out from thence; and he cometh into his own country; and his disciples follow him. A 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. He carefully took the little bundle in his mouth and held it there on top of his tongue. But to him that worketh not, but believeth on him that justifieth the ungodly, his faith is reckoned for righteousness. Too much going on around here.” He saith unto them, But who say ye that I am? She tipped her head in the direction of forward. Thou knowest the commandments, Do not commit adultery, Do not kill, Do not steal, Do not bear false witness, Honor thy father and mother. And 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. And when he drew nigh, he saw the city and wept over it, The rat mumbled something to himself and disappeared into the shadows. And 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. Then he tied the medal around Wilbur’s neck. Circle 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. But of that day or that hour knoweth no one, not even the angels in heaven, neither the Son, but the Father. The 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. The families had gone to look for Fern. which in its own times he shall show, who is the blessed and only Potentate, the King of kings, and Lord of lords; He closed his eyes, pulled some straw over himself, and dropped off into a deep sleep. And 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?” And many shall follow their lascivious doings; by reason of whom the way of the truth shall be evil spoken of. Remember 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. And 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. But 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. And 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, saying, Thou wentest in to men uncircumcised, and didst eat with them. But 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. But 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? For 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. This was an important event in the barn cellar. only, whereunto we have attained, by that same rule let us walk. At any rate, don't worry about Fern—she’s just got a lively imagination. Take my yoke upon you, and learn of me; for I am meek and lowly in heart: and ye shall find rest unto your souls. For 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. But I am in a strait betwixt the two, having the desire to depart and be with Christ; for it is very far better: But Simon Peter, when he saw it, fell down at Jesus’ knees, saying, Depart from me; for I am a sinful man, O Lord. But what think ye? A man had two sons; and he came to the first, and said, Son, go work to-day in the vineyard. Now where remission of these is, there is no more offering for sin. Till I make thine enemies the footstool of thy feet. We have an altar, whereof they have no right to eat that serve the tabernacle. And he killed James the brother of John with the sword. They were telling tales, and I nodded at them to keep on with what they were doing. What he hath seen and heard, of that he beareth witness; and no man receiveth his witness. For this ointment might have been sold for much, and given to the poor. “Saved from an untimely death. and they spake, saying unto him, Tell us: By what authority doest thou these things? or who is he that gave thee this authority? Wilbur didn’t care. Then 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, All unrighteousness is sin: and there is a sin not unto death. He tried to yell back to her, but his tiny voice disappeared in the roar of the water. And the whole company of them rose up, and brought him before Pilate. “Don't say that!” groaned Wilbur. “Please don't say things like that!” And I answered, Who art thou, Lord? And he said unto me, I am Jesus of Nazareth, whom thou persecutest. And 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. And behold, a woman that had a spirit of infirmity eighteen years; and she was bowed together, and could in no wise lift herself up. and he put all things in subjection under his feet, and gave him to be head over all things to the church, Two men went up into the temple to pray; the one a Pharisee, and the other a publican. and there was a widow in that city; and she came oft unto him, saying, Avenge me of mine adversary. Yea, 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. And the rat was failing him. And thou shalt have joy and gladness; and many shall rejoice at his birth. “Do you understand how there could be any writing in a spider’s web?” “I can’t see you. Through the woods they traveled, and to the market. She 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. And at the season he sent to the husbandmen a servant, that he might receive from the husbandmen of the fruits of the vineyard. And 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. And 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. but had certain questions against him of their own religion, and of one Jesus, who was dead, whom Paul affirmed to be alive. Be it known unto you therefore, brethren, that through this man is proclaimed unto you remission of sins: Flattering portraits notwithstanding, Jackson looked older than he was, sixty-five or thereabouts. Wherefore 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. At another party, we created a minor scandal by dancing every dance exclusively together. saying 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. And taking the child by the hand, he saith unto her, Talitha cumi; which is, being interpreted, Damsel, I say unto thee, Arise. “You're kidding.” Now 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. At 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. For 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, Pilate answered, What I have written I have written. Wherefore, 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. that 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? What therefore will the lord of the vineyard do? he will come and destroy the husbandmen, and will give the vineyard unto others. And all the people answered and said, His blood be on us, and on our children. Charlotte rested and ate a grasshopper. The children in the grandstand screamed with appreciation. Sometime when no one was looking, George had slipped back into camp to share the fate of his wife and children. And he went and joined himself to one of the citizens of that country; and he sent him into his fields to feed swine. and all that heard him were amazed at his understanding and his answers. Simon 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. “I am,” said Charlotte. and when he had given thanks, he brake it, and said, This is my body, which is for you: this do in remembrance of me. The 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. And 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. They 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. Now 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. abstain from every form of evil. Howbeit ye did well that ye had fellowship with my affliction. You couldn’t cut a wagon road through even the easiest parts without the greatest difficulty. And 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. And others fell upon the thorns; and the thorns grew up and choked them: America took Ross’s low bid and got what they paid for. This was certainly the worst day of his life. Now 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, “What do you think you are?” and said unto him, Go, wash in the pool of Siloam (which is by interpretation, Sent). He went away therefore, and washed, and came seeing. And according to the law, I may almost say, all things are cleansed with blood, and apart from shedding of blood there is no remission. This had been a tiring afternoon. With 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. Hens were shaken from their roosts onto the dirt, and treetops swayed though there was no wind whatsoever. He said again, Come to me. Now while Paul waited for them at Athens, his spirit was provoked within him as he beheld the city full of idols. But 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; And 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; whom I have sent back to thee in his own person, that is, my very heart: Wilbur, feeling the cold water, came to. but 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: She 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. among whom are ye also, called to be Jesus Christ’s: When organisms decompose, they make rich soil. but if any man loveth God, the same is known by him. End-times are tricky things to deal with, Bear said. for the truth’s sake which abideth in us, and it shall be with us for ever: He said, These goddamn fucking mountains. There arose therefore a questioning on the part of John’s disciples with a Jew about purifying. He parted laurel boughs and they rattled against him as he passed through their gates at a stoop. His view was that they needed a great deal more such land. But it is not as though the word of God hath come to nought. For they are not all Israel, that are of Israel: They sought again to take him: and he went forth out of their hand. And 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. No one had ever had such a friend—-so affectionate, so loyal, and so skillful. There was no answer. whom I have sent unto you for this very purpose, that ye may know our state, and that he may comfort your hearts. “Let’s go!” And on both ends of the transaction, I had ways to get hold of scrivener’s copies. He was tired, and the whisky had hit him fast. from whom every family in heaven and on earth is named, From that point, the bloody little moment unfolded in less time than drawing five breaths. If I partake with thankfulness, why am I evil spoken of for that for which I give thanks? “No, I only distribute pigs to early risers,” said Mr. Arable. But 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. Here she sat quietly during the long afternoons, thinking and listening and watching Wilbur. His 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. Where is he that is born King of the Jews? for we saw his star in the east, and are come to worship him. Art thou greater than our father Jacob, who gave us the well, and drank thereof himself, and his sons, and his cattle? And as they were loosing the colt, the owners thereof said unto them, Why loose ye the colt? The fish had many names, but the Cherokee people called them Rainbow Trout. But Jesus perceived their wickedness, and said, Why make ye trial of me, ye hypocrites? Those of the Pharisees who were with him heard these things, and said unto him, Are we also blind? So 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. Therefore I say unto you, Every sin and blasphemy shall be forgiven unto men; but the blasphemy against the Spirit shall not be forgiven. He can tear out bits of advertisements and bring them up here to the barn cellar, so that Charlotte can have something to copy.” Neither be ye called masters: for one is your master, even the Christ. And for so long I have hated my nature for failing to say what I felt. even 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. And I will show wonders in the heaven above, And signs on the earth beneath; Blood, and fire, and vapor of smoke: It is deeply satisfying to win a prize in front of a lot of people. Our orbits were duplicated in a great rippling framed mirror on the wall. Meats 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: And behold, there are last who shall be first, and there are first who shall be last. And 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. Again therefore he asked them, Whom seek ye? And they said, Jesus of Nazareth. And who is he that will harm you, if ye be zealous of that which is good? There were no digging tools to be had, so the burial would be in the fashion of a stone barrow. They were going south, you see. His 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. And with him they crucify two robbers; one on his right hand, and one on his left. If the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling? Philadelphia wanted to fall and went as far as his knees, but George kept yanking him upright, trying to get his hatchet out. I thank my God always, making mention of thee in my prayers, If therefore the Son shall make you free, ye shall be free indeed. “Oh,” she whispered. None of them had ever fired a weapon except in training or for amusement or in highly amateur attempts at hunting. They were not afraid of Wolf, but they thought that he was truly annoying. And he answered and said, I will not: but afterward he repented himself, and went. and having found one pearl of great price, he went and sold all that he had, and bought it. The cloak that I left at Troas with Carpus, bring when thou comest, and the books, especially the parchments. He said therefore, A certain nobleman went into a far country, to receive for himself a kingdom, and to return. because that which is known of God is manifest in them; for God manifested it unto them. And they went out, and preached that men should repent. Please, please, please, Templeton, climb up and get the egg sac.” “Do you know what Charlotte said when the goslings hatched?” He found what Beaver was talking about. If any man speaketh in a tongue, let it be by two, or at the most three, and that in turn; and let one interpret: And inasmuch as it is not without the taking of an oath Grace to you and peace from God our Father and the Lord Jesus Christ. And 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? Mr. Arable cut the motor, got out, walked around to the rear, and lowered the tailgate. And bring us not into temptation, but deliver us from the evil one. “Get around behind him, Lurvy,” said Mr. Zuckerman, “and drive him toward the barn! and 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. But 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: Everything had gone wrong, but how could it not have? Only Luke is with me. Take Mark, and bring him with thee; for he is useful to me for ministering. And Jesus said unto them, The sons of this world marry, and are given in marriage: Jesus saith unto her, Mary. She turneth herself, and saith unto him in Hebrew, Rabboni; which is to say, Teacher. Lurvy shaved and got a haircut; and his principal farm duty was to feed the pig while people looked on. I have fought the good fight, I have finished the course, I have kept the faith: For I rejoiced greatly, when brethren came and bare witness unto thy truth, even as thou walkest in truth. Wherefore let them also that suffer according to the will of God commit their souls in well-doing unto a faithful Creator. They marched nobody away with a bayonet point to their buttocks. And 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. Lurvy shook hands with everybody. But the righteousness which is of faith saith thus, Say not in thy heart, Who shall ascend into heaven? (that is, to bring Christ down:) I 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. “Maybe you're right, he said gruffly. Oh, you look just fine to me. The current of the water was too strong and Littlefish closed his eyes as it pulled him through into a smaller pool. And 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. And the report of him went out straightway everywhere into all the region of Galilee round about. and raised us up with him, and made us to sit with him in the heavenly places, in Christ Jesus: Now 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, Little fingers push through to reach for a string to hold onto. And no marvel; for even Satan fashioneth himself into an angel of light. Paul, an apostle of Christ Jesus through the will of God, and Timothy our brother, The children ran out to the road and climbed into the bus. Or 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; I’m not proud to report it. “Look,” said the old sheep, “next time you go to the dump, Templeton, bring back a clipping from a magazine. But they cried out with a loud voice, and stopped their ears, and rushed upon him with one accord; Can you hear me? “What are they, and where are you?” screamed Wilbur. and 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. It started to rain and the wind blew her hat in the puddle. Wolf was in serious pain. The droppings put nutrients in the soil. Hear me? ” “You asked for water,” said Lurvy meekly. they that devour widows’ houses, and for a pretence make long prayers; these shall receive greater condemnation. Let 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. and, 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: and in nothing affrighted by the adversaries: which is for them an evident token of perdition, but of your salvation, and that from God; Charlotte felt greatly relieved to see him go. Mr. Arable stopped walking. In the distance, fireworks began going off — rockets, scattering fiery balls in the sky. Hatchets appeared from under blanket cloaks. But if nothing is nothing, then nothing has nothing that is less than it is.” and 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. Very nice to meet you Crawdaddy, but I must swim on, said Littlefish. And 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: And 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. And seeing the man that was healed standing with them, they could say nothing against it. For by thy words thou shalt be justified, and by thy words thou shalt be condemned. whereunto I was appointed a preacher and an apostle (I speak the truth, I lie not), a teacher of the Gentiles in faith and truth. And 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. For 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, “I never looked at it that way before. Seven baby geese. I said to the colonel, What about our previous agreement? In gold letters it said: ZUCKERMAN’S FAMOUS PIG Charlotte had her web looking fine for the occasion. A great feeling of happiness swept over the Zuckermans and the Arables. And behold, two of them were going that very day to a village named Emmaus, which was threescore furlongs from Jerusalem. These things have I spoken unto you, while yet abiding with you. She 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. For he shall be delivered up unto the Gentiles, and shall be mocked, and shamefully treated, and spit upon: Thank you, the boy said. Chief Ross had more Scots blood than anything else—seven-eighths majority of it, in fact. He 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. We 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. And 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. But he was angry, and would not go in: and his father came out, and entreated him. The 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. In a short time he had dug a tunnel in the straw. “I’m no good at making speeches. and 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. But there was no sign of bear along the rill. and said, Where have ye laid him? They say unto him, Lord, come and see. rooted and builded up in him, and established in your faith, even as ye were taught, abounding in thanksgiving. “Can't I please have some money?” asked Fern. But now hath God set the members each one of them in the body, even as it pleased him. “Good. said Charlotte, winking at the old sheep. But 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. He 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. Even so every good tree bringeth forth good fruit; but the corrupt tree bringeth forth evil fruit. Mr. Zuckerman ordered Lurvy to increase Wilbur’s feedings from three meals a day to four meals a day. The 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. Mrs. Zuckerman sank into a chair. Hereby shall we know that we are of the truth, and shall assure our heart before him: “It's real thoughtful of you to do that, Charlotte,” he said. He had only his creel of withered roots. And 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. And I said, Who art thou, Lord? And the Lord said, I am Jesus whom thou persecutest. The disciples therefore said one to another, Hath any man brought him aught to eat? And the disciples came to the other side and forgot to take bread. But Jesus, not heeding the word spoken, saith unto the ruler of the synagogue, Fear not, only believe. And 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. Charley went on upward, one red drop at a time until the sign died entirely before him. Whosoever shall confess that Jesus is the Son of God, God abideth in him, and he in God. Each strand held dozens of bright drops of early morning dew. “How much did the fish weigh?” asked Wilbur eagerly. As he swam on, Littlefish though about what the big fish had said. Fern was crying. Yet 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. For 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. looking 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? And when he opened the second seal, I heard the second living creature saying, Come. They are called Giant Sequoia. Ha! Really not learning anything, thought Rabbit… However, this kind does not go out except by prayer and fasting Therewith bless we the Lord and Father; and therewith curse we men, who are made after the likeness of God: And of course he couldn’t say anything. But 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. For what purpose? And when he was come into Jerusalem, all the city was stirred, saying, Who is this? “Lambs?” For this cause I Paul, the prisoner of Christ Jesus in behalf of you Gentiles,— And 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. He 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. with all lowliness and meekness, with longsuffering, forbearing one another in love; and the Living one; and I was dead, and behold, I am alive for evermore, and I have the keys of death and of Hades. And the world passeth away, and the lust thereof: but he that doeth the will of God abideth for ever. a horse was standing there And straightway the damsel rose up, and walked; for she was twelve years old. And they were amazed straightway with a great amazement. He didn’t like being the center of all this fuss. For the husband is the head of the wife, as Christ also is the head of the church, being himself the saviour of the body. And as they spake these things, he himself stood in the midst of them, and saith unto them, Peace be unto you. For the whole law is fulfilled in one word, even in this: Thou shalt love thy neighbor as thyself. And 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. I would be left alone, with no friends. who seeing Peter and John about to go into the temple, asked to receive an alms. And 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; Charley’s people sat by the fire with Axe and his wife and ate the meal off wood trays with cane-stalk implements. For 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. Now he is not the God of the dead, but of the living: for all live unto him. Awake to soberness righteously, and sin not; for some have no knowledge of God: I speak this to move you to shame. The salutation of me Paul with mine own hand, which is the token in every epistle: so I write. When he looked up at me, tears were brimming at his lids. “Of course you do,” said Charlotte. ‘‘He’s really a very innocent little pig. Now we, brethren, as Isaac was, are children of promise. there 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. For we are his workmanship, created in Christ Jesus for good works, which God afore prepared that we should walk in them. “Another spring.” “I can’t be quiet,” screamed Wilbur, racing up and down. And 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? For whosoever would save his life shall lose it; and whosoever shall lose his life for my sake and the gospel’s shall save it. And by the way, don’t ever ignore my orders again. Marvel not, brethren, if the world hateth you. I will no more speak much with you, for the prince of the world cometh: and he hath nothing in me; but I made supplication for thee, that thy faith fail not; and do thou, when once thou hast turned again, establish thy brethren. who 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; And as Jesus was going up to Jerusalem, he took the twelve disciples apart, and on the way he said unto them, And 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; And for me, it was as Romantic as all of Byron’s poetry put together. Every man praying or prophesying, having his head covered, dishonoreth his head. And it was about the space of three hours after, when his wife, not knowing what was done, came in. Mr. Zuckerman spied them when he came with Wilbur’s supper. When they got ready to leave, she had said, Be off with you, then. Salute the brethren that are in Laodicea, and Nymphas, and the church that is in their house. He walked to the wall and started to climb. yea and before governors and kings shall ye be brought for my sake, for a testimony to them and to the Gentiles. but he was rebuked for his own transgression: a dumb ass spake with man’s voice and stayed the madness of the prophet. Every one that cometh unto me, and heareth my words, and doeth them, I will show you to whom he is like: I say again, Let no man think me foolish; but if ye do, yet as foolish receive me, that I also may glory a little. But some one will say, How are the dead raised? and with what manner of body do they come? And 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. casting all your anxiety upon him, because he careth for you. She grabbed the fly, threw a few jets of silk around it, and rolled it over and over, wrapping it so that it couldn't move. Personal goods and clothing lay scattered about. But 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. but given to hospitality, a lover of good, sober-minded, just, holy, self-controlled; Fathers, provoke not your children, that they be not discouraged. being defamed, we entreat: we are made as the filth of the world, the offscouring of all things, even until now. And 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. Having such an important pig was going to mean plenty of extra work, he could see that. Jaggy stones of all sizes lay scattered on the ground, sloughed off the rock face. And all the multitude sought to touch him; for power came forth from him, and healed them all. And if Charlotte needs help in finding words, I think she can get it from our friend Templeton. and they knew not until the flood came, and took them all away; so shall be the coming of the Son of man. And the apostles gather themselves together unto Jesus; and they told him all things, whatsoever they had done, and whatsoever they had taught. And so Wilbur came home to his beloved manure pile in the barn cellar. The 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. Jesus therefore said, Suffer her to keep it against the day of my burying. They thrust their little necks out and kept up a musical whistling, like a tiny troupe of pipers. He closed his eyes. There is romance in the lone fugitive. Then you got up all your nerve, took a deep breath, and jumped. who delivered us out of the power of darkness, and translated us into the kingdom of the Son of his love; “I’m too tired.” By faith they passed through the Red sea as by dry land: which the Egyptians assaying to do were swallowed up. They said therefore unto him, Lord, evermore give us this bread. “You'll have to read it for me.” I looked back, and a vigorous plume of vapor puffed from Smith’s mouth. Now 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, But when the young man heard the saying, he went away sorrowful; for he was one that had great possessions. All things are lawful; but not all things are expedient. All things are lawful; but not all things edify. I receive not glory from men. Or 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? Perhaps some green young lieutenant unacquainted with the facts. Charley looked at Lowan and George and Jake, and they seemed to have no opinion on this matter or any other. Wilbur didn’t know what to do or which way to run. And when Paul had laid his hands upon them, the Holy Spirit came on them; and they spake with tongues, and prophesied. and 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. I 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. As 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. Now at the feast the governor was wont to release unto the multitude one prisoner, whom they would. and passing by Mysia, they came down to Troas. And perhaps that was the point. Mrs. Arable hugged Mrs. Zuckerman. who 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: Beloved, I beseech you as sojourners and pilgrims, to abstain from fleshly lusts, which war against the soul; but all these worketh the one and the same Spirit, dividing to each one severally even as he will. But so much the more went abroad the report concerning him: and great multitudes came together to hear, and to be healed of their infirmities. What to say to her other than Love me, love me. And 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. We know that we are of God, and the whole world lieth in the evil one. And 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. And the angel said unto her, Fear not, Mary: for thou hast found favor with God. But that didn't matter to Sequoyah. And with the rain, the creek grew deeper and the water flowed faster. And while they were looking stedfastly into heaven as he went, behold two men stood by them in white apparel; He 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. that I have great sorrow and unceasing pain in my heart. But 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. and 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. “Sleep is important.” These are they who make separations, sensual, having not the Spirit. Raw and roasted in the fire and made into bread. Charlotte was naturally patient. But Jesus took him by the hand, and raised him up; and he arose. And there followed him a great multitude of the people, and of women who bewailed and lamented him. And 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. Mrs. Featherstone. but 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; Therefore be ye also ready; for in an hour that ye think not the Son of man cometh. so then let us not sleep, as do the rest, but let us watch and be sober. because it is written, Ye shall be holy; for I am holy. And 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. After 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. And 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. And he arose and took the young child and his mother, and came into the land of Israel. A miracle has happened on this farm. He began the council with a confession. For whosoever shall do the will of my Father who is in heaven, he is my brother, and sister, and mother. And many of the children of Israel shall he turn unto the Lord their God. The day immediately dimmed to twilight, but stained green, and he moved through it as if crawling across the bottom of a slow deep river. But 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. John 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. I understood the injury as justice. And it came to pass, when Jesus had finished all these words, he said unto his disciples, Or 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? and he became hungry, and desired to eat: but while they made ready, he fell into a trance; The goose chuckled. And he stretched forth his hand, and touched him, saying, I will; be thou made clean. And straightway the leprosy departed from him. Then 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. for there shall be from henceforth five in one house divided, three against two, and two against three. Summer is dying, dying.” And 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. Strong stuff, Smith said after throwing back a shot. beareth all things, believeth all things, hopeth all things, endureth all things. If 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. and 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. far 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: Charley said again, I’m not going. Now 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. But if there is no resurrection of the dead, neither hath Christ been raised: and they found him, and say unto him, All are seeking thee. For no one will let me stay I remember one evening in particular, but I’m not sure why, for it was about like all the others. And when he had read it, he asked of what province he was; and when he understood that he was of Cilicia, and tasted the good word of God, and the powers of the age to come, If any man have ears to hear, let him hear. And when he did, the hogs broke to run, and the direction they went was right over the top of him. for we cannot but speak the things which we saw and heard. How much then is a man of more value than a sheep! Wherefore it is lawful to do good on the sabbath day. The poplars, simplified by having shed their broad palmate leaves, stood as bright vertical slashes against the brown hillsides. And 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. Through the fog, Charley could see the bear’s ears and tan muzzle. Are they Hebrews? so am I. Are they Israelites? so am I. Are they the seed of Abraham? so am I. See 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: We take to the breeze, we go as we please.” For 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. And it came to pass, as Peter went throughout all parts, he came down also to the saints that dwelt at Lydda. He told Stephen to hold the beast while he soaked it in oil. As they were walking near the river, suddenly Wolf appeared at their side. saying, Blessed are they whose iniquities are forgiven, And whose sins are covered. But she said, Yea, Lord: for even the dogs eat of the crumbs which fall from their masters’ table. Neither for these only do I pray, but for them also that believe on me through their word; I doubt if I have enough silk in my spinnerets to lower me to the ground.” I verily thought with myself that I ought to do many things contrary to the name of Jesus of Nazareth. that 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. The 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. The trail where they cried. and he entered into the Prætorium again, and saith unto Jesus, Whence art thou? But Jesus gave him no answer. No pig ever had truer friends, and he realized that friendship is one of the most satisfying things in the world. There was some kind of altercation, and the other boys dismounted as well. The grace of the Lord Jesus Christ be with your spirit. “Oh, yes.” “And tighten your belt. For he that eateth and drinketh, eateth and drinketh judgment unto himself, if he discern not the body. The 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. “Well, we can’t give a prize to a dead pig,” said the loud speaker. The cave held the heat of the wood fire close. “I’m right up here,” said the voice. Twelve o’clock—lunchtime. Some 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. And he said unto them, It is not for you to know times or seasons, which the Father hath set within his own authority. For 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. They’ll be wanting your blades. But the Pharisees, when they heard that he had put the Sadducees to silence, gathered themselves together. The school bus honked from the road. For not he that commendeth himself is approved, but whom the Lord commendeth. for we take thought for things honorable, not only in the sight of the Lord, but also in the sight of men. I 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. And if Satan hath risen up against himself, and is divided, he cannot stand, but hath an end. “Well,” said Dr. Dorian, “I think she will always love animals. One afternoon in June, when Wilbur was almost two months old, he wandered out into his small yard outside the barn. Many fish lived in the pond. Because thou wilt not leave my soul unto Hades, Neither wilt thou give thy Holy One to see corruption. “And now, with Charlotte not feeling well ...” he thought. To live is to suffer. Then 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. And when he again bringeth in the firstborn into the world he saith, And let all the angels of God worship him. Then said I, Lo, I am come (In the roll of the book it is written of me) To do thy will, O God. But he began to curse, and to swear, I know not this man of whom ye speak. The corn needed hoeing, and Lurvy didn't find time to hoe it. When he came back he had a strip of blue-and-white cardboard in his teeth. Now there were six waterpots of stone set there after the Jews’ manner of purifying, containing two or three firkins apiece. Never 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!” And 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. She saith unto him, Yea, Lord: I have believed that thou art the Christ, the Son of God, even he that cometh into the world. Ye 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. Spearfinger looked dead, but to make sure the Cherokees threw her on the big fire they had built. And when he had said these things, as they were looking, he was taken up; and a cloud received him out of their sight. The snow is coming down so fast that the word might be fulfilled which he spake, Of those whom thou hast given me I lost not one. When the words appeared, everyone said they were a miracle. For 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. On behalf of such a one will I glory: but on mine own behalf I will not glory, save in my weaknesses. a minister of the sanctuary, and of the true tabernacle, which the Lord pitched, not man. to take the place in this ministry and apostleship from which Judas fell away, that he might go to his own place. Concerning which salvation the prophets sought and searched diligently, who prophesied of the grace that should come unto you: But, that I be not further tedious unto thee, I entreat thee to hear us of thy clemency a few words. And this is the promise which he promised us, even the life eternal. For if I make you sorry, who then is he that maketh me glad but he that is made sorry by me? not 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: yet I say unto you, that even Solomon in all his glory was not arrayed like one of these. Let 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: Peter therefore went forth, and the other disciple, and they went toward the tomb. One thing is certain, he has a most unattractive personality. that I may make it manifest, as I ought to speak. Now 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. The horses detested them. He spent long hours lying on his side, half asleep, dreaming pleasant dreams. Red 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. “I’m just telling you the facts.” Already ye are clean because of the word which I have spoken unto you. (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): This 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: not looking each of you to his own things, but each of you also to the things of others. Know ye not that they that run in a race run all, but one receiveth the prize? Even so run; that ye may attain. And his father Zacharias was filled with the Holy Spirit, and prophesied, saying, together with Onesimus, the faithful and beloved brother, who is one of you. They shall make known unto you all things that are done here. For 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. She screamed and clawed at the sides of the pit with her sharp awl finger. Templeton was a crafty rat, and he had things pretty much his own way. To show mercy towards our fathers, And to remember his holy covenant; And when they’re done fighting, men lie dead and dying, stunned and bleeding and pale. Of the tribe of Asher twelve thousand; Of the tribe of Naphtali twelve thousand; Of the tribe of Manasseh twelve thousand; And fearing lest haply we should be cast ashore on rocky ground, they let go four anchors from the stern, and wished for the day. (but should she depart, let her remain unmarried, or else be reconciled to her husband); and that the husband leave not his wife. Jesus saith unto her, I that speak unto thee am he. He that receiveth you receiveth me, and he that receiveth me receiveth him that sent me. On that day there came to him Sadducees, they that say that there is no resurrection: and they asked him, Not so shall it be among you: but whosoever would become great among you shall be your minister; The buttermilk certainly helped.” Mr. Arable studied Wilbur carefully. “Yes, he’s a wonderful pig,” he said. but 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; But Charlotte's children and grandchildren and great grandchildren, year after year, lived in the doorway. And the rest of them agreed entirely. And 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, Almost all spiders are rather nice-looking. What I desired was Claire, but the gallery ladies were better than lone bachelorhood. And Jesus, crying with a loud voice, said, Father, into thy hands I commend my spirit: and having said this, he gave up the ghost. And great fear came upon the whole church, and upon all that heard these things. These things said he in the synagogue, as he taught in Capernaum. He wanted them to stand as tall as any people on earth. “Attention, please!” it said. I do not like being a little fish. Herein is my Father glorified, that ye bear much fruit; and so shall ye be my disciples. I will hear thee fully, said he, when thine accusers also are come: and he commanded him to be kept in Herod’s palace. Knowing 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. “A what?” said Mr. Zuckerman. Most of the faces gleamed up from brown darkness, bathed in a flattering buttery light, eyes liquid and searching. Even deducting for decades of exaggeration, that was still a big bear. In 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. He that hath received his witness hath set his seal to this, that God is true. For that which I do I know not: for not what I would, that do I practise; but what I hate, that I do. What is your name, please? May I have your name?” I commend unto you Phoebe our sister, who is a servant of the church that is at Cenchreæ: For a while he stood gloomily indoors. I can’t arrange my family duties to suit the management of the County Fair. With these new signs, the Cherokee nation published newspapers and books and made sure that their words would never fade away. When they came back they had heavy loads. holding a form of godliness, but having denied the power thereof: from these also turn away. Likewise, 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. And 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. A shoe. Humans' feet hurt if they don't wear shoes. And they were beyond measure astonished, saying, He hath done all things well; he maketh even the deaf to hear, and the dumb to speak. ‘It’s a ghost!’ I thought then. And behold, there talked with him two men, who were Moses and Elijah; And the four living creatures said, Amen. And the elders fell down and worshipped. The last remaining strands of Charlotte's old web floated away and vanished. who 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. Nicodemus 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? Charlotte'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...” “Stop it! The goose was proud of her share in the adventure. There was a great deal more to Charley’s story. Whosoever therefore shall humble himself as this little child, the same is the greatest in the kingdom of heaven. But 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. And 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. And Jesus said unto them, Take heed and beware of the leaven of the Pharisees and Sadducees. For the scripture saith, Whosoever believeth on him shall not be put to shame. And 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. looking for the blessed hope and appearing of the glory of the great God and our Saviour Jesus Christ; In the tall grass behind the cattle barn he found a folded newspaper. It itches! called Fern. But if ye do not forgive, neither will your Father which is in heaven forgive your trespasses. We can't stay here very long. Now touching the things which I write unto you, behold, before God, I lie not. Land and people and everything. Wilbur checked himself and crept slowly to his trough. Perry fell face down. And as they cried out, and threw off their garments, and cast dust into the air, he 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. As he swam up to a big fish and said, Hello, I'm called Littlefish and you look like me. It 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. When he looked up and saw Mr. Zuckerman standing quite close to him, holding a pail of warm slops, he felt relieved. It is not often that someone comes along who is a true friend and a good writer. I 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. For 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; So the disciples went away again unto their own home. Up against one palisade, a minister sat with his ass upon a crate that had held wine bottles. Let all bitterness, and wrath, and anger, and clamor, and railing, be put away from you, with all malice: Therefore by their fruits ye shall know them. “Edith, something has happened,” he said, in a weak voice. At this moment her brother Avery came into the room. The big truck with Mr. Arable at the wheel backed slowly down toward the barnyard. Lurvy and Mr. Zuckerman walked alongside. He scratched them on slats of wood and filled his cabin with shingles of writing. One by one they climbed into the truck and opened lunch boxes. Now Peter was sitting without in the court: and a maid came unto him, saying, Thou also wast with Jesus the Galilæan. These 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. But the crowd loved it. and 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; that the fellowship of thy faith may become effectual, in the knowledge of every good thing which is in you, unto Christ. I said, It was the spirit of the evening and the Scotch whisky. And Jesus said unto him, To-day is salvation come to this house, forasmuch as he also is a son of Abraham. Set forward Zenas the lawyer and Apollos on their journey diligently, that nothing be wanting unto them. And, Thou, Lord, in the beginning didst lay the foundation of the earth, And the heavens are the works of thy hands: “Another crisis!” groaned Fern. A sally port opened on the side of the square they considered the front. rendering vengeance to them that know not God, and to them that obey not the gospel of our Lord Jesus: but brother goeth to law with brother, and that before unbelievers? I 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. And 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. and great multitudes followed him; and he healed them there. And the multitude cometh together again, so that they could not so much as eat bread. and 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; And 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. Now 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. for 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. Birds? Pilate answered, Am I a Jew? Thine own nation and the chief priests delivered thee unto me: what hast thou done? And again he saith, Rejoice, ye Gentiles, with his people. Ye foolish ones, did not he that made the outside make the inside also? Nellie!” he began. And when they had eaten enough, they lightened the ship, throwing out the wheat into the sea. Perry dug the spoon into the grey mess and turned up the burnt bottom, black as cinders. But 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? There, into the tall grass, went Wolf. And 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. Furthermore, I wouldn't be surprised if Zuckerman changes his mind about you. and 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. then he received him into his arms, and blessed God, and said, And all the city was gathered together at the door. One 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. When the sheep tired of standing in the rain, they walked slowly up the lane and into the fold. “Tie one end to my tail, will you, Templeton?” The 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. “What does ‘gullible’ mean?” Real property was a bond as strong as blood. Like 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. Elijah 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. Jesus answered, I have not a demon; but I honor my Father, and ye dishonor me. As he was dropping off to sleep he spoke to Charlotte. Because 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. For the creation was subjected to vanity, not of its own will, but by reason of him who subjected it, in hope How can ye believe, who receive glory one of another, and the glory that cometh from the only God ye seek not? who died for us, that, whether we wake or sleep, we should live together with him. She has only a short time to live. “Well,” began Fern, “she told us about a cousin of hers who caught a fish in her web. And as he sat on the mount of Olives over against the temple, Peter and James and John and Andrew asked him privately, And he went away again beyond the Jordan into the place where John was at the first baptizing; and there he abode. Now I make known unto you brethren, the gospel which I preached unto you, which also ye received, wherein also ye stand, and ye also bear witness, because ye have been with me from the beginning. But 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. Her eyes were brimming with tears. Wilbur tried not to think about what the rat had just said. Ready with knife and hand axe in case a dark shape separated itself from the night and came to him, offering him its life. I'm almost ready, said his mom For 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. All Indians? the secretary said. He felt radiant and happy. Smith walked over and pulled Wasseton from the group and led him away toward the women. And 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. and he was returning and sitting in his chariot, and was reading the prophet Isaiah. Bear 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. “In the first place, I cannot get into your pen, as I am not old enough to jump over the fence. And 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. And 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; Then he turned a back flip. And 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. And they prayed, and said, Thou, Lord, who knowest the hearts of all men, show of these two the one whom thou hast chosen, And 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. that 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. But if what I would not, that I do, it is no more I that do it, but sin which dwelleth in me. A cord of dry split hickory must be a thing of absolute wonder to such people. O 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! But this I say by way of concession, not of commandment. and to Jesus the mediator of a new covenant, and to the blood of sprinkling that speaketh better than that of Abel. In 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. But 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. “When they open the crate and try to put you in, struggle! Thomas therefore, who is called Didymus, said unto his fellow-disciples, Let us also go, that we may die with him. and 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; Or is God the God of Jews only? is he not the God of Gentiles also? Yea, of Gentiles also: But Fern couldn't eat until her pig had had a drink of milk. and they glorified God in me. In 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. a doubleminded man, unstable in all his ways. “Won’t he be cold at night?” asked Fern. He was as big as a young woodchuck. Write therefore the things which thou sawest, and the things which are, and the things which shall come to pass hereafter; So then neither is he that planteth anything, neither he that watereth; but God that giveth the increase. For 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. And that’s where I was walking that night, really afraid. But 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. The disciples say unto him, Rabbi, the Jews were but now seeking to stone thee; and goest thou thither again? David therefore calleth him Lord, and how is he his son? Somebody’s got to go along who knows how to write. for we are the circumcision, who worship by the Spirit of God, and glory in Christ Jesus, and have no confidence in the flesh: And 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. having 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. “Thith thtuff thticks in my mouth,” complained the rat. “It’th worth than caramel candy.” Take them off! Take them off! screamed Wolf. There 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. even as ye learned of Epaphras our beloved fellow-servant, who is a faithful minister of Christ on our behalf, If 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. They 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. If 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. These 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. And the lord of the vineyard said, What shall I do? I will send my beloved son; it may be they will reverence him. On Sundays we often went riding, usually to view the stone locks on the towpath of the Chesapeake and Ohio Canal. But we beseech you, brethren, to know them that labor among you, and are over you in the Lord, and admonish you; He stepped closer and stared. Whosoever 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. that 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. wherein I suffer hardship unto bonds, as a malefactor; but the word of God is not bound. and were all baptized unto Moses in the cloud and in the sea; His own people running him through the woods like an old boar. subjecting yourselves one to another in the fear of Christ. “Goodness!” said Wilbur, looking down at his own chubby legs. “I don’t think my legs have seven sections.” in meekness correcting them that oppose themselves; if peradventure God may give them repentance unto the knowledge of the truth, being 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; Send 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. But if thou bearest the name of a Jew, and restest upon the law, and gloriest in God, Her hair was parted in a strict line down the top of her head and was threaded with white. I tell you, Nay: but, except ye repent, ye shall all in like manner perish. The 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. For days after that, all you could hear was the ringing of axes as the soldiers cut and limbed pine trees. And 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; Yea and if I judge, my judgment is true; for I am not alone, but I and the Father that sent me. for if God spared not the natural branches, neither will he spare thee. saying, There was in a city a judge, who feared not God, and regarded not man: because 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, saying, 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. This is what had happened in this story that I am telling. Perry and Charleston lay still, and Philadelphia, bleeding heavily, made motions with his hands like trying to get a grip on the earth. And it shall be, that whosoever shall call on the name of the Lord shall be saved. The 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? For your information, there are five hundred and fourteen eggs in that peachy little sac.” And 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. And I was still unknown by face unto the churches of Judæa which were in Christ: but 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. for we have heard him say, that this Jesus of Nazareth shall destroy this place, and shall change the customs which Moses delivered unto us. He was the lamp that burneth and shineth; and ye were willing to rejoice for a season in his light. This is a leaf. Wilbur had already decided how he would carry the egg sac—there was only one way possible. You have a month from today. Like 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. He looked with teary eyes so wide. And there the centurion found a ship of Alexandria sailing for Italy; and he put us therein. For 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. Ye 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. One day, as he swam in the large creek, it started to rain. But Smith looked tired and white-eyed with fatigue and the nervous strain of this woods duty, which had been confusing and frightening to him. And if the righteous is scarcely saved, where shall the ungodly and sinner appear? for 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. “Of course,” said Charlotte. Then began he to curse and to swear, I know not the man. And straightway the cock crew. Skirmish is such an airy-sounding word. but they shouted, saying, Crucify, crucify him. who also sealed us, and gave us the earnest of the Spirit in our hearts. But when the blade sprang up and brought forth fruit, then appeared the tares also. But we would not have you ignorant, brethren, concerning them that fall asleep; that ye sorrow not, even as the rest, who have no hope. whose mouths must be stopped; men who overthrow whole houses, teaching things which they ought not, for filthy lucre’s sake. Now 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. Verily 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. The baby spiders felt the warm updraft. and 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. For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened. And 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. And 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. Which 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. “Homer,” she said to her husband, “I am going to give that pig a buttermilk bath.” Then after the space of fourteen years I went up again to Jerusalem with Barnabas, taking Titus also with me. For I would not, brethren, have you ignorant, that our fathers were all under the cloud, and all passed through the sea; Wherefore when he cometh into the world, he saith, Sacrifice and offering thou wouldest not, But a body didst thou prepare for me; And 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. for until the law sin was in the world; but sin is not imputed when there is no law. All in all, it was a companionable breakfast. Ye are my friends, if ye do the things which I command you. Now 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. Or did I commit a sin in abasing myself that ye might be exalted, because I preached to you the gospel of God for nought? I 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. Now Jesus had spoken of his death: but they thought that he spake of taking rest in sleep. “You have been my friend,” replied Charlotte. Now these things were our examples, to the intent we should not lust after evil things, as they also lusted. “You can go back to sleep. And the word of the Lord was spread abroad throughout all the region. And now I stand here to be judged for the hope of the promise made of God unto our fathers; But, beloved, we are persuaded better things of you, and things that accompany salvation, though we thus speak: The wolf's feet were really hurting. for I will show him how many things he must suffer for my name’s sake. For thou bringest certain strange things to our ears: we would know therefore what these things mean. I 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. the colonel said. Everything on the farm was dripping wet. holding 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. John answered and said, A man can receive nothing, except it have been given him from heaven. This wisdom is not a wisdom that cometh down from above, but is earthly, sensual, devilish. Abraham begat Isaac; and Isaac begat Jacob; and Jacob begat Judah and his brethren; Jesus answered them, Many good works have I showed you from the Father; for which of those works do ye stone me? He had no time to hide and just squatted with his back against the trunk of the tree and became utterly still. And he dwelt there a year and six months, teaching the word of God among them. If she went into the house, Wilbur went, too. And Mary abode with her about three months, and returned unto her house. And the veil of the temple was rent in two from the top to the bottom. And 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. And 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. And Satan entered into Judas who was called Iscariot, being of the number of the twelve. “I haven't the faintest idea,” said Mr. Arable. But 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: And if ye are willing to receive it, this is Elijah, that is to come. It was not long, they tell us, before everyone was reading and writing. Now 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? Wilbur was in a panic. because if our heart condemn us, God is greater than our heart, and knoweth all things. above all things being fervent in your love among yourselves; for love covereth a multitude of sins: A few families would come to watch the television. The blood led on, but thinned down. For the man was more than forty years old, on whom this miracle of healing was wrought. Back and forth on the daylong ride between Valley River and Wayah. And 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. And he sent them forth to preach the kingdom of God, and to heal the sick. Now as soon as it was day, there was no small stir among the soldiers, what was become of Peter. And we indeed justly; for we receive the due reward of our deeds: but this man hath done nothing amiss. neither as lording it over the charge allotted to you, but making yourselves ensamples to the flock. for 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, And the apostles and the elders were gathered together to consider of this matter. Remember them that are in bonds, as bound with them; them that are ill-treated, as being yourselves also in the body. and God both raised the Lord, and will raise up us through his power. When that happened, she knew the Cherokees were burning the leaves to get the chestnuts on the ground. She hath done what she could; she hath anointed my body beforehand for the burying. the son of Joanan, the son of Rhesa, the son of Zerubbabel, the son of Shealtiel, the son of Neri, Thou madest known unto me the ways of life; Thou shalt make me full of gladness with thy countenance. Then was Jesus led up of the Spirit into the wilderness to be tempted of the devil. For they that are after the flesh mind the things of the flesh; but they that are after the Spirit the things of the Spirit. Judge not, that ye be not judged. “They'll never-never-never catch you in the woods.” And it was now about the sixth hour, and a darkness came over the whole land until the ninth hour, Then she crawled along a beam till she was directly over the next pen. Then laid they their hands on them, and they received the Holy Spirit. “Not many creatures can spin webs. They therefore that were scattered abroad went about preaching the word. “N-not exactly,” said Lurvy. And they, when they heard it, were glad, and promised to give him money. And he sought how he might conveniently deliver him unto them. “You’re all right, Edith,” said Mrs. Arable. Big muscles that would make good eating. let us hold fast the confession of our hope that it waver not; for he is faithful that promised: But shun profane babblings: for they will proceed further in ungodliness, but go rather to the lost sheep of the house of Israel. If I speak with the tongues of men and of angels, but have not love, I am become sounding brass, or a clanging cymbal. The ghosts of animals reveal themselves to you without prejudice toward your humanity. But if ye seek anything about other matters, it shall be settled in the regular assembly. And 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. Remember 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. Furthermore, 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? Darkness settled over everything. What say I then? that a thing sacrificed to idols is anything, or that an idol is anything? But many that are first shall be last; and the last first. Wilbur heard these words and his heart almost stopped. “I think I’m going to faint,” he whispered to the old sheep, who was watching. Fern pushed a chair out of the way and ran outdoors. Wilbur’s appetite had increased; he was beginning to eat scraps of food in addition to milk. And my speech and my preaching were not in persuasive words of wisdom, but in demonstration of the Spirit and of power: Jesus answered and said, This voice hath not come for my sake, but for your sakes. But 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. Then opened he their mind, that they might understand the scriptures; Next 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. wherein they think it strange that ye run not with them into the same excess of riot, speaking evil of you: Charley circled the calf of the boy’s leg with just his thumb and index finger and there was room to spare. Other men go on calmly about their business. for there is no respect of persons with God. And 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. Now 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? Woe 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. but now, I say, I go unto Jerusalem, ministering unto the saints. For I make known to you, brethren, as touching the gospel which was preached by me, that it is not after man. They were artists of misdirection as sure as any thimblerigger shifting his three shells and one wizened pea. And 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. Or 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, He is not the God of the dead, but of the living: ye do greatly err. I am debtor both to Greeks and to Barbarians, both to the wise and to the foolish. Simultaneously, 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. And Crispus, the ruler of the synagogue, believed in the Lord with all his house; and many of the Corinthians hearing believed, and were baptized. He listened to the water as it flowed through the hole and wondered where the water, leaves, and twigs were going. Wherefore 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. The goose had been listening to this conversation and chuckling to herself. And the lord of that servant, being moved with compassion, released him, and forgave him the debt. for the kingdom of God is not eating and drinking, but righteousness and peace and joy in the Holy Spirit. Wilbur lay down and closed his eyes. Fern came almost every day to visit him. Presided 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. and 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. Chief Ross and the Ridges had constructed years and years’ worth of arguments, and nothing they did or said changed a thing. As Charley walked, he began to feel a presence in the woods, a sense of being watched from out of the fog. but if it is of God, ye will not be able to overthrow them; lest haply ye be found even to be fighting against God. I’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. For when they shall rise from the dead, they neither marry, nor are given in marriage; but are as angels in heaven. For example, better views than others? I am the God of thy fathers, the God of Abraham, and of Isaac, and of Jacob. And Moses trembled, and durst not behold. Then 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. Two men shall be in the field; the one shall be taken, and the other left. “Do you see what I see?” he asked. The slant light of afternoon fell in broken beams through the yellow leaves and straight trunks. And so well-spoken. and they could not find what they might do; for the people all hung upon him, listening. What is it therefore? they will certainly hear that thou art come. And with great power gave the apostles their witness of the resurrection of the Lord Jesus: and great grace was upon them all. But if any man is ignorant, let him be ignorant. And they came to Ephesus, and he left them there: but he himself entered into the synagogue, and reasoned with the Jews. He whistled a sharp note down the line of wagons, and the whole train lurched forward. according 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. and 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. “This has been a night!” who 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. He liked this. And when they heard this, they were baptized into the name of the Lord Jesus. When she was done marking, Charley got up carefully, and Nancy would scribe lines to show his waist and the bottoms of his pantlegs. I was wandering around the campus and I ran into these 3 girls that had come over from another school. He who testifieth these things saith, Yea: I come quickly. Amen: come, Lord Jesus. And 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. Then he sailed back into the barn. Grace to you and peace from God the Father, and our Lord Jesus Christ, Now when certain days were passed, Agrippa the king and Bernice arrived at Cæsarea, and saluted Festus. For if I build up again those things which I destroyed, I prove myself a transgressor. “What is an aeronaut?” asked Wilbur. Fern grew rigid on her stool. having a good conscience; that, wherein ye are spoken against, they may be put to shame who revile your good manner of life in Christ. His appearance was as lightning, and his raiment white as snow: Pig’s out. Friendless, dejected, and hungry, he threw himself down in the manure and sobbed. He went and addressed himself to the fire, standing close, his back to the other men. Then came the disciples, and said unto him, Knowest thou that the Pharisees were offended, when they heard this saying? say ye of him, whom the Father sanctified and sent into the world, Thou blasphemest; because I said, I am the Son of God? And 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. Save me, somebody! If 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? A new commandment I give unto you, that ye love one another; even as I have loved you, that ye also love one another. And 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; and knew her not till she had brought forth a son: and he called his name JESUS. And 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. And then immediately the brethren sent forth Paul to go as far as to the sea: and Silas and Timothy abode there still. So the churches were strengthened in the faith, and increased in number daily. She 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. For if the dead are not raised, neither hath Christ been raised: Then they stared at Uncle. When the next rain came, the pool would fill up again. Wilbur loved the barn when it was like this - calm and quiet, waiting for light. And 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; When she stepped onto the pitfall and tumbled through the branches into the hole she turned back into Spearfinger. And this is life eternal, that they should know thee the only true God, and him whom thou didst send, even Jesus Christ. The oath which he sware unto Abraham our father, They 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! wherefore also I came without gainsaying, when I was sent for. I ask therefore with what intent ye sent for me. And the disciples say unto him, Whence should we have so many loaves in a desert place as to fill so great a multitude? “I’ll tend to this,” he chuckled. It was hard to farm. and, On their hands they shall bear thee up, Lest haply thou dash thy foot against a stone. “My legs are hairy for a good reason,” replied Charlotte. “Oh, Avery,” chuckled Mrs. Arable. And Jesus said unto them, Come ye after me, and I will make you to become fishers of men. Astride her web, Charlotte sat moodily eating a horsefly and thinking about the future. Lay not up for yourselves treasures upon the earth, where moth and rust consume, and where thieves break through and steal: I see the other birds leaving And he consented, and sought opportunity to deliver him unto them in the absence of the multitude. Finally, be ye all likeminded, compassionate, loving as brethren, tenderhearted, humbleminded: And he said unto them, The kings of the Gentiles have lordship over them; and they that have authority over them are called Benefactors. Avery put one leg over the fence of the pigpen. And 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. I 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. Right there the rabbit fell down, knowing that the wolf had learned nothing. Luke, the beloved physician, and Demas salute you. And when they drew nigh unto Jerusalem, and came unto Bethphage, unto the mount of Olives, then Jesus sent two disciples, But he that entereth in by the door is the shepherd of the sheep. because 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: first she kissed her father, then she kissed her mother. Bear 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. (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); “I'll tell you what I'll do, said Templeton. Jesus therefore said unto him, Except ye see signs and wonders, ye will in no wise believe. and he is before all things, and in him all things consist. Avery was the busiest helper of all. And 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. Her mother was a trapper before her. He looked into the air. I feel cold…. he shook and shook and shook. and God shall glorify him in himself, and straightway shall he glorify him. As 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. Again 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. But the Pharisees, when they saw it, said unto him, Behold, thy disciples do that which it is not lawful to do upon the sabbath. (Now this, He ascended, what is it but that he also descended into the lower parts of the earth? And 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. And when even was come, there came a rich man from Arimathæa, named Joseph, who also himself was Jesus’ disciple: Take 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. For David himself saith in the book of Psalms, The Lord said unto my Lord, Sit thou on my right hand, She shed it onto the frothy hummock of pale silk and bombazine and linen and stood pale and slim in the moonlight. Special announcement!” said the loud speaker in a pompous voice. Everything was a shade of brown, the people and their clothes, horses and wagons, and even the muddy road itself. Denial was what the Army was for. And when he was come into the house, his disciples asked him privately, How is it that we could not cast it out? Wilbur?” Poor, 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. Now 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? Smith sat looking at the fire in a daze. The 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. said with a loud voice, Stand upright on thy feet. And he leaped up and walked. He pointed to the blue tag on Uncle’s pen. And 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. Smith, finished with his report, came over and said, Perhaps one of you might stir that pot. And when I arrive, whomsoever ye shall approve, them will I send with letters to carry your bounty unto Jerusalem: The goose egg was right underneath. But take heed lest by any means this liberty of yours become a stumblingblock to the weak. The 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. “You better sit down.” Finally Mrs. Arable made up her mind she would pay a call on old Doctor Dorian and ask his advice. There was the true light, even the light which lighteth every man, coming into the world. But he that doubteth is condemned if he eat, because he eateth not of faith; and whatsoever is not of faith is sin. He opened his mouth and some buttermilk ran in. He 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). And when he knew that he was of Herod’s jurisdiction, he sent him unto Herod, who himself also was at Jerusalem in these days. And 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. And let him turn away from evil, and do good; Let him seek peace, and pursue it. Now when the apostles that were at Jerusalem heard that Samaria had received the word of God, they sent unto them Peter and John: Wilbur took a step toward the pail. So 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. Wherefore, even as the Holy Spirit saith, To-day if ye shall hear his voice, But this cometh to pass, that the word may be fulfilled that is written in their law, They hated me without a cause. Now he that wrought us for this very thing is God, who gave unto us the earnest of the Spirit. but 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. There 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. And he will show you a large upper room furnished: there make ready. for which I am an ambassador in chains; that in it I may speak boldly, as I ought to speak. Woe unto you, when all men shall speak well of you! for in the same manner did their fathers to the false prophets. They 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. And this he said to prove him: for he himself knew what he would do. Look 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. I 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. And there appeared unto them tongues parting asunder, like as of fire; and it sat upon each one of them. And they brought him to Jesus: and they threw their garments upon the colt, and set Jesus thereon. and that ye study to be quiet, and to do your own business, and to work with your hands, even as we charged you; Verily I say unto you, that he will set him over all that he hath. And 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. The grass looked like a magic carpet. And 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. “Is there anything I can get you? Show me the tribute money. And they brought unto him a denarius. But 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. And they go into Capernaum; and straightway on the sabbath day he entered into the synagogue and taught. Pilate 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. And gathering together all the chief priests and scribes of the people, he inquired of them where the Christ should be born. I 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. For I will be merciful to their iniquities, And their sins will I remember no more. For 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. Big woods rose black all around. And 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. and Jacob’s well was there. Jesus therefore, being wearied with his journey, sat thus by the well. It was about the sixth hour. And 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. We went around the oak tree, but we did not seen anything up in the tree. And 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. and in the same manner do ye also joy, and rejoice with me. For 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. When I brake the five loaves among the five thousand, how many baskets full of broken pieces took ye up? They say unto him, Twelve. “Nothing,” said Charlotte. My best friends are in the barn cellar. And though they found no cause of death in him, yet asked they of Pilate that he should be slain. for 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. And they went forth, and preached everywhere, the Lord working with them, and confirming the word by the signs that followed. Amen. And 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. wherein were all manner of fourfooted beasts and creeping things of the earth and birds of the heaven. And 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. “Well, I don’t know,” replied Charlotte. “The Fair comes at a bad time for me. And he departed thence, and went into their synagogue: Wilbur listened to the sound with love in his heart. When therefore ye assemble yourselves together, it is not possible to eat the Lord’s supper: For if these things are yours and abound, they make you to be not idle nor unfruitful unto the knowledge of our Lord Jesus Christ. whom Jason hath received: and these all act contrary to the decrees of Cæsar, saying that there is another king, one Jesus. He was particularly glad that she always put her victim to sleep before eating it. Every brothel we passed was tinkling with piano music and breathing out its own particular fragrance of perfume and sweat into the evening. Therefore, 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. And he did not many mighty works there because of their unbelief. And 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. Now while the bridegroom tarried, they all slumbered and slept. having been begotten again, not of corruptible seed, but of incorruptible, through the word of God, which liveth and abideth. And at least Smith had sense to say, I thank you. He 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. The fungus breaks wood down into soil. “Did you have a good time at the Fair?” she asked as she kissed her daughter. Wherefore, brethren, give the more diligence to make your calling and election sure: for if ye do these things, ye shall never stumble: Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. But flee youthful lusts, and follow after righteousness, faith, love, peace, with them that call on the Lord out of a pure heart. And these shall go away into eternal punishment: but the righteous into eternal life. “I've just never tried.” And he spake to his disciples, that a little boat should wait on him because of the crowd, lest they should throng him: I stay put and wait for what comes. Lurvy was standing outside in the rain, stirring up breakfast. nor by the earth, for it is the footstool of his feet; nor by Jerusalem, for it is the city of the great King. “I’m really too young to go out into the world alone,” he thought as he lay down. But the things which proceed out of the mouth come forth out of the heart; and they defile the man. Charley 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. “There are seven,” said the goose. And lifting up their eyes, they saw no one, save Jesus only. So they took the money, and did as they were taught: and this saying was spread abroad among the Jews, and continueth until this day. And 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. For 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. The web dried off and the words didn't show up so plainly. “See you tomorrow.” Zuckerman thinks Wilbur is an unusual pig, and therefore he won't want to kill him and eat him. And of course nobody noticed Charlotte. Timothy my fellow-worker saluteth you; and Lucius and Jason and Sosipater, my kinsmen. For 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. And they were both righteous before God, walking in all the commandments and ordinances of the Lord blameless. And one said unto him, Lord, are they few that are saved? And he said unto them, They therefore, when they were come together, asked him, saying, Lord, dost thou at this time restore the kingdom to Israel? Millipedes eat dead plants and then leave droppings on the ground. Pure 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. And when the pink blossoms fell off … Wilbur began to struggle. Peter began to say unto him, Lo, we have left all, and have followed thee. Wilbur galloped back. They just stared at the tag. One day the Cherokees decided they had to stop living in fear of Spearfinger. And Moses fled at this saying, and became a sojourner in the land of Midian, where he begat two sons. “Go play by yourself! For a certain man named Demetrius, a silversmith, who made silver shrines of Diana, brought no little business unto the craftsmen; “Just the wrong idea,” replied Charlotte. “The Fair was weeks and weeks ago.” To 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. People believe almost anything they see in print. Claire. I adjure you by the Lord that this epistle be read unto all the brethren. “Well,” said the spider, plucking thoughtfully at her web, “the old sheep has been around this barn a long time. So 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. but insomuch as ye are partakers of Christ’s sufferings, rejoice; that at the revelation of his glory also ye may rejoice with exceeding joy. And 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. And it was the feast of the dedication at Jerusalem: It means I don’t have to limit my activities to spinning and trapping and stunts like that.” That pig is as solid as they come. And the woman that hath an unbelieving husband, and he is content to dwell with her, let her not leave her husband. And when they came that were hired about the eleventh hour, they received every man a shilling. I have traveled far. And he came, and he taketh it out of the right hand of him that sat on the throne. “There's Henry!” And they were astonished at his teaching: for he taught them as having authority, and not as the scribes. After all, Wilbur was a very young pig—not much more than a baby, really. For none of us liveth to himself, and none dieth to himself. “What a mess!” thought the rat. For when we were in the flesh, the sinful passions, which were through the law, wrought in our members to bring forth fruit unto death. And 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. Howbeit 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. For every one that partaketh of milk is without experience of the word of righteousness; for he is a babe. So they went, and made the sepulchre sure, sealing the stone, the guard being with them. He'll take the knife to you, my boy.” And 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. And 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: Then he would breathe deeply. because 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. You still have one foot, he told Wolf. “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.” And his head and his hair were white as white wool, white as snow; and his eyes were as a flame of fire; For 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: She knew from experience that if she waited long enough, a fly 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. The 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. They say unto him, Lord, that our eyes may be opened. After which it would just keep moving forward like a wave on the sea, oblivious to individual pain. Very pleased to meet you. Then he saith, I will return into my house whence I came out; and when he is come, he findeth it empty, swept, and garnished. Die otherwise. And 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. Then he said, And now the second thing we have is our own lawyer, who is one of us. and to offer a sacrifice according to that which is said in the law of the Lord, A pair of turtledoves, or two young pigeons. And 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. And during supper, the devil having already put into the heart of Judas Iscariot, Simon’s son, to betray him, I had no relief for my spirit, because I found not Titus my brother: but taking my leave of them, I went forth into Macedonia. Templeton knew the dump and liked it. Haw, haw—that’s a good one, eh, Sister?” And he saith unto them, How many loaves have ye? go and see. And when they knew, they say, Five, and two fishes. Whenever any creature broke loose on Zuckerman’s farm, the event was of great interest to the others. The smaller children make holes with a stick and drop a dried up pea into each one. Root up everything! The whole thing had taken three minutes. But he said, The things which are impossible with men are possible with God. The land of Zebulun and the land of Naphtali, Toward the sea, beyond the Jordan, Galilee of the Gentiles, that 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; But the chief captain Lysias came upon us, and with great violence took him away out of our hands, Which things also we speak, not in words which man’s wisdom teacheth, but which the Spirit teacheth; combining spiritual things with spiritual words. I 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. “Of course, they won't show up till next spring.” For this cause the Jews seized me in the temple, and assayed to kill me. I 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. And for this cause the Jews persecuted Jesus, because he did these things on the sabbath. Every 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. Then 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. “I'm trembling with joy,” said Wilbur. Come 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: The dead and their wounds, though, were certain. If then ye have to judge things pertaining to this life, do ye set them to judge who are of no account in the church? for 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. But the Pharisees and the lawyers rejected for themselves the counsel of God, being not baptized of him. Peace be to the brethren, and love with faith, from God the Father and the Lord Jesus Christ. That the residue of men may seek after the Lord, And all the Gentiles, upon whom my name is called, And he hit it so very hard that his head went round and round. And I soon saw how the business was done but realized I did not have the money to do it very well. but 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: She paused and then mentioned the exact melancholy number. We give thanks to God the Father of our Lord Jesus Christ, praying always for you, Serves me right. Now 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. And 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. At 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. So 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. for it is witnessed of him, Thou art a priest for ever After the order of Melchizedek. And he took them in his arms, and blessed them, laying his hands upon them. The disciple is not above his teacher: but every one when he is perfected shall be as his teacher. They therefore departed from the presence of the council, rejoicing that they were counted worthy to suffer dishonor for the Name. which is his body, the fulness of him that filleth all in all. “Charlotte is the best storyteller I ever heard,” said Fern, poking her dish towel into a cereal bowl. He barely spoke… Yea, and if I am offered upon the sacrifice and service of your faith, I joy, and rejoice with you all: But the word of the Lord abideth for ever. And this is the word of good tidings which was preached unto you. And Stephen, full of grace and power, wrought great wonders and signs among the people. When 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? “Use extreme care!” he said. The woman saith unto him, Sir, I perceive that thou art a prophet. Verily 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. They all wore moccasins and britches and shirts of linen and faded red calico. Thou hast neither part nor lot in this matter: for thy heart is not right before God. The world would be wiped clean. The 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. And there was usually a tin can with food still clinging to the inside. After she had left the room, Mrs. Arable spoke in a low voice to her husband. When 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. This 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. “Here, here, here!” said the goose. For, 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; And 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. My 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: And they were all filled with wrath in the synagogue, as they heard these things; And 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. For men shall be lovers of self, lovers of money, boastful, haughty, railers, disobedient to parents, unthankful, unholy, and they said unto him, By what authority doest thou these things? or who gave thee this authority to do these things? When she stepped outside, the sun was shining, but it was very cold and she started to shiver. Thou hast loved righteousness, and hated iniquity; Therefore God, thy God, hath anointed thee With the oil of gladness above thy fellows. And 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. “Keep your knees straight and touch the ground with your ears!” called Charlotte. In 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. Wilbur blushed. “No, I'm not, either.” the 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. in the name of our Lord Jesus, ye being gathered together, and my spirit, with the power of our Lord Jesus, But when his brethren were gone up unto the feast, then went he also up, not publicly, but as it were in secret. All that which the Father giveth me shall come unto me; and him that cometh to me I will in no wise cast out. that all may honor the Son, even as they honor the Father. He that honoreth not the Son honoreth not the Father that sent him. “How enchanting!” he said. but she shall be saved through her child-bearing, if they continue in faith and love and sanctification with sobriety. I passed out cigars to the men, and we lit them with a twig caught alight in the fire and passed the bottle around. and the third took her; and likewise the seven also left no children, and died. Pilate 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? “Nothing wrong with this pig,” said Mr. Zuckerman cheerfully, pressing his knee against Wilbur’s behind. He searched his pen thoroughly. For 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. And 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. Are not five sparrows sold for two pence? and not one of them is forgotten in the sight of God. I know trees are good and kind. For 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. The ground they passed over looked like it had been turned by plows. make full my joy, that ye be of the same mind, having the same love, being of one accord, of one mind; And such confidence have we through Christ to God-ward: So Charlotte sang a lullaby, while crickets chirped in the grass and the barn grew dark. and 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. Salute Mary, who bestowed much labor on you. “How does it feel to be free?” she asked. on the east were three gates; and on the north three gates; and on the south three gates; and on the west three gates. “Certainly not,” said the lamb. Dr. Dorian leaned back and closed his eyes. But I said, Not so, Lord: for nothing common or unclean hath ever entered into my mouth. knowing 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; Mr. Arable patted him. So Lichen would agree neither to come down from the mountains nor to join in the hunt for Charley. A dying fire sent up white smoke from its bed of ashes, and Smith said he could see muskets propped against the hemlock trunk nearby. And which of you by being anxious can add a cubit unto the measure of his life? And they that went before, and they that followed, cried, Hosanna; Blessed is he that cometh in the name of the Lord: who will render to every man according to his works: In 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. Every morning he awoke twisted in his blankets, more exhausted than when he went to bed. Let all the house of Israel therefore know assuredly, that God hath made him both Lord and Christ, this Jesus whom ye crucified. But the multitude of the city was divided; and part held with the Jews, and part with the apostles. Neither man spoke. And 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. And he said unto them that stood by, Take away from him the pound, and give it unto him that hath the ten pounds. It would make one’s feelings about this go down easier if they had put up a fight. Although it is made of thin, delicate strands, the web is not easily broken. A bird told them where to aim their arrows between the scales of rock to strike her heart. and they were baptized of him in the river Jordan, confessing their sins. This 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. And 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. And 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. The pasture was bleak and frozen. And as he was entering into the boat, he that had been possessed with demons besought him that he might be with him. “And so do I,” said Nellie, who had just managed to catch a small gnat. Philadelphia grabbed the handle just behind the head and they disputed over it, and even then George could not retrieve his hatchet. That morning, just as Wilbur fell asleep, Avery Arable wandered into the Zuckerman’s front yard, followed by Fern. Wilbur paused and listened. because by the works of the law shall no flesh be justified in his sight; for through the law cometh the knowledge of sin. And Pilate asked him, Art thou the King of the Jews? And he answering saith unto him, Thou sayest. But a certain Samaritan, as he journeyed, came where he was: and when he saw him, he was moved with compassion, And behold, there arose a great tempest in the sea, insomuch that the boat was covered with the waves: but he was asleep. The Zuckermans and Lurvy walked back to the house. You are beautiful! saying, This man began to build, and was not able to finish. The boy replied, When we are big we will both be able to do lots of things! “Well-l,” said Fern, thoughtfully, “she has eight legs. And the angel answered and said unto the women, Fear not ye; for I know that ye seek Jesus, who hath been crucified. “You have awfully hairy legs, Charlotte,” said Wilbur, as the spider busily worked at her task. And 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. He said being in a place without mountains was like riding in the bed of a careening wagon without side rails. Wast thou called being a bondservant? care not for it: nay, even if thou canst become free, use it rather. And 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. And he commanded the multitude to sit down on the ground; When 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. Charlotte read the words: “With New Radiant Action.” Thou 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. “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. “I’m sure you would. Jesus 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? In the next pool, Littlefish saw a small fish that seemed to be stuck to a rock. The 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. All of the bacteria in this picture could fit on the period at the end of this sentence. Wherefore we faint not; but though our outward man is decaying, yet our inward man is renewed day by day. And he said unto them, When ye pray, say, Father, Hallowed be thy name. Thy kingdom come. “I want to stay alive, right here in my comfortable manure pile with all my friends. And 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. You've just got to come.” all things therefore whatsoever they bid you, these do and observe: but do not ye after their works; for they say, and do not. being built upon the foundation of the apostles and prophets, Christ Jesus himself being the chief corner stone; And it came to pass, as they were on the way to Jerusalem, that he was passing along the borders of Samaria and Galilee. If 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? Wilbur rushed over, pushed his strong snout under the rat, and tossed him into the air. And there was one called Barabbas, lying bound with them that had made insurrection, men who in the insurrection had committed murder. “Well, who taught a spider? “Not till tomorrow,” said Mr. Zuckerman. and his feet like unto burnished brass, as if it had been refined in a furnace; and his voice as the voice of many waters. If so, it stood square to the ground looking his way, motionless. And the gates thereof shall in no wise be shut by day (for there shall be no night there): So then they that are of faith are blessed with the faithful Abraham. It was only a few hours old. There's a regular conspiracy around here to kill you at Christmastime. When 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. For 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. Then he remembered that the rat had been useful in saving Charlotte’s life, and that Charlotte was trying to save his life. And there came unto him Pharisees, trying him, and saying, Is it lawful for a man to put away his wife for every cause? Or despisest thou the riches of his goodness and forbearance and longsuffering, not knowing that the goodness of God leadeth thee to repentance? In 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. They are not likely to come in if they see us, I said. And while they abode in Galilee, Jesus said unto them, The Son of man shall be delivered up into the hands of men; For behold your calling, brethren, that not many wise after the flesh, not many mighty, not many noble, are called: Wherefore also God highly exalted him, and gave unto him the name which is above every name; Not that I speak in respect of want: for I have learned, in whatsoever state I am, therein to be content. A great bloom of red blossomed on the white forehead band of Charley’s turban. and if she herself shall put away her husband, and marry another, she committeth adultery. And in the morning, a great while before day, he rose up and went out, and departed into a desert place, and there prayed. I went to the creek and stanched it with cold water and went on playing. For I have no man likeminded, who will care truly for your state. Which 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; Now when the captain of the temple and the chief priests heard these words, they were much perplexed concerning them whereunto this would grow. And he answered and said, Elijah indeed cometh, and shall restore all things: And out of the smoke came forth locusts upon the earth; and power was given them, as the scorpions of the earth have power. Perhaps we might choose one to enter? For 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: “Good night!” All 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. But concerning the times and the seasons, brethren, ye have no need that aught be written unto you. For 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. Butterfiles, birds, and honey bees came to visit. “That’s just the thing,” he said. But I know you, that ye have not the love of God in yourselves. I 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. For verily not to angels doth he give help, but he giveth help to the seed of Abraham. that your faith should not stand in the wisdom of men, but in the power of God. And he said unto his disciples, It is impossible but that occasions of stumbling should come; but woe unto him, through whom they come! And 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. Now it is soil. and Joanna the wife of Chuzas Herod’s steward, and Susanna, and many others, who ministered unto them of their substance. And then shall they see the Son of man coming in clouds with great power and glory. But these mine enemies, that would not that I should reign over them, bring hither, and slay them before me. But if ye are led by the Spirit, ye are not under the law. And he will himself show you a large upper room furnished and ready: and there make ready for us. I lived in fear that if one twig was pulled from it, the whole nest would collapse and fall to the ground. and here he hath authority from the chief priests to bind all that call upon thy name. and 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; Then 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: “Can I have some money?” asked Fern. Now the God of patience and of comfort grant you to be of the same mind one with another according to Christ Jesus: “I don’t want a single one of those eggs harmed.” Blessed be the God and Father of our Lord Jesus Christ, the Father of mercies and God of all comfort; Their leader was beating a drum, and the whole world vibrated to its urgent rhythm. Here's another! Here's another! said Beaver. “Charlotte's cousin won. When mom and dad came back again he told them what he had done and seen He wanted to go home. And 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. And they gathered them together into the place which is called in Hebrew Har-Magedon. His wet clothes hung limp on a tripod of sticks near the fire. Having therefore, brethren, boldness to enter into the holy place by the blood of Jesus, And 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? Bring 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. “That’s Latin,” explained Charlotte. And there came to him certain of the Sadducees, they that say that there is no resurrection; Scientists study the natural world. The rat crawled in and ate everything. When he had finished the last drop, he grunted and walked sleepily into the box. The geese cheered. I have sent him therefore the more diligently, that, when ye see him again, ye may rejoice, and that I may be the less sorrowful. “Gander?” And 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. And his disciples asked him what this parable might be. “Oh, I just don’t feel like leaving my web. And when even was come, the boat was in the midst of the sea, and he alone on the land. Blessed are the merciful: for they shall obtain mercy. “I don't know what a magnum opus is,” said Wilbur. As 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. And I know such a man (whether in the body, or apart from the body, I know not; God knoweth), No 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. He shall glorify me: for he shall take of mine, and shall declare it unto you. But let all things be done decently and in order. If we have only hoped in Christ in this life, we are of all men most pitiable. And 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. And they troubled the multitude and the rulers of the city, when they heard these things. Rabbit, however, knew that Wolf was lying. It is also waterproof. And 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; It also comes from dead organisms. Paul, a prisoner of Christ Jesus, and Timothy our brother, to Philemon our beloved and fellow-worker, And as they spake unto the people, the priests and the captain of the temple and the Sadducees came upon them, If a brother or sister be naked and in lack of daily food, Aristarchus my fellow-prisoner saluteth you, and Mark, the cousin of Barnabas (touching whom ye received commandments; if he come unto you, receive him), And the unclean spirit, tearing him and crying with a loud voice, came out of him. But not endless. But it was all the same to her, for she didn’t look back. Yes. And as the people were in expectation, and all men reasoned in their hearts concerning John, whether haply he were the Christ; And 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. This man called Sequoyah was crippled. Charley 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. “What kind of work?” asked Wilbur. She would have him lie down on his back on a smooth patch of bare dirt outside their door. All of them headed in the direction of the river. For they heard them speak with tongues, and magnify God. Then answered Peter, By 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. making known unto us the mystery of his will, according to his good pleasure which he purposed in him So the Jews said unto him that was cured, It is the sabbath, and it is not lawful for thee to take up thy bed. And at Lystra there sat a certain man, impotent in his feet, a cripple from his mother’s womb, who never had walked. “Told Templeton she didn’t want the egg any more,” repeated Fern. At last he managed to reach the judges’ stand. these are the things which defile the man; but to eat with unwashen hands defileth not the man. that 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. For 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. God 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: “Cheer up,” replied Mrs. Arable, “this is fun.” unto 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, Immediately 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. “Does my hair look all right?” asked Mrs. Zuckerman. Grace be with all them that love our Lord Jesus Christ with a love incorruptible. The women and children had no energy and they hardly spoke. Jesus 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. And at even, when the sun did set, they brought unto him all that were sick, and them that were possessed with demons. Behold Israel after the flesh: have not they that eat the sacrifices communion with the altar? “Tum and twist!” honked the goose. And when he was twelve years old, they went up after the custom of the feast; At the top of the doorway three small webs were being constructed. And he went on his way through cities and villages, teaching, and journeying on unto Jerusalem. “I think I'll try again,” said Wilbur, cheerfully. not of works, that no man should glory. While Wilbur was being unloaded and taken out of his crate and into his new pigpen, crowds gathered to watch. They 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. Consider 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. “Approximately-oximately thirty days, all told,” answered the goose. “That in itself is a tremendous thing. Look at you! And when they had fulfilled all things that were written of him, they took him down from the tree, and laid him in a tomb. He had yet one, a beloved son: he sent him last unto them, saying, They will reverence my son. He also has a smudge on one side where he lays in the manure.” Notwithstanding it pleased Silas to abide there still. for the Father himself loveth you, because ye have loved me, and have believed that I came forth from the Father. And 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. While 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. Then entered in therefore the other disciple also, who came first to the tomb, and he saw, and believed. But they went forth, and spread abroad his fame in all that land. and shall cast them into the furnace of fire: there shall be the weeping and the gnashing of teeth. But ye, brethren, are not in darkness, that that day should overtake you as a thief: I asked when might be a more convenient time to return, and she said, There’s not likely to be one. wranglings of men corrupted in mind and bereft of the truth, supposing that godliness is a way of gain. neither 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. And 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. For 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? My head with oil thou didst not anoint: but she hath anointed my feet with ointment. “We're holding a directors’ meeting,” replied the old sheep. Jesus 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; But there is nothing covered up, that shall not be revealed; and hid, that shall not be known. The pupils giggled. Fern blushed. Wilbur next tried one of the lambs. For as the body apart from the spirit is dead, even so faith apart from works is dead. For even his brethren did not believe on him. For where jealousy and faction are, there is confusion and every vile deed. Now 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. But he said unto him, Man, who made me a judge or a divider over you? whom we proclaim, admonishing every man and teaching every man in all wisdom, that we may present every man perfect in Christ; For whatsoever is begotten of God overcometh the world: and this is the victory that hath overcome the world, even our faith. unto Timothy, my true child in faith: Grace, mercy, peace, from God the Father and Christ Jesus our Lord. This – what do they call this here? If 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. But 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. A bout of drear military school. Let 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: So then am I become your enemy, by telling you the truth? For of him, and through him, and unto him, are all things. To him be the glory for ever. Amen. The grace of our Lord Jesus Christ be with you all. Do you dissipate like a drop of blood in a bucket of milk, or do you persist, a small stone tossed into a rushing river? Avery jumped down and joined the men. But in all the excitement A limb, Buddy did not see. And he called for lights and sprang in, and, trembling for fear, fell down before Paul and Silas, And 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. If 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? “They're going to what?” screamed Wilbur. And 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. And they were about four thousand: and he sent them away. These new white people took all the fun out of war and just won and kept winning, as if that was all that mattered. Asmeret wonders if we will find many decomposers. Lay low, Charlotte! And 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. “Listen to me!” cried Wilbur. but Herod the tetrarch, being reproved by him for Herodias his brother’s wife, and for all the evil things which Herod had done, to walk worthily of the Lord unto all pleasing, bearing fruit in every good work, and increasing in the knowledge of God; For the law of the Spirit of life in Christ Jesus made me free from the law of sin and of death. For of these are they that creep into houses, and take captive silly women laden with sins, led away by divers lusts, Ascend! Now right and down and swing that loop and around and around! And others fell into the good ground, and yielded fruit, growing up and increasing; and brought forth, thirtyfold, and sixtyfold, and a hundredfold. And they said unto her, There is none of thy kindred that is called by this name. For 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. But of him are ye in Christ Jesus, who was made unto us wisdom from God, and righteousness and sanctification, and redemption: And he came forth, and saw a great multitude, and he had compassion on them, and healed their sick. Behold 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. tribulation and anguish, upon every soul of man that worketh evil, of the Jew first, and also of the Greek; This was from the Lord, And it is marvellous in our eyes? yea, 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; Avery jumped out and lowered the tailgate. Perry, perhaps you could try not to burn that bacon to a cinder. And straightway the Spirit driveth him forth into the wilderness. She 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. I planted, Apollos watered; but God gave the increase. The 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. And 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; Wherefore receive ye one another, even as Christ also received you, to the glory of God. “It was a never-to-be-forgotten battle,” said Charlotte. Let Fern associate with her friends in the barn if she wants to. And the four and twenty elders and the four living creatures fell down and worshipped God that sitteth on the throne, saying, Amen; Hallelujah. “Why not? whereof 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. For 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; The 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. But 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. “No, said Charlotte. I was just a young man, but I was real cowardly. And straightway they left the nets, and followed him. And 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. And again another scripture saith, They shall look on him whom they pierced. How then should the scriptures be fulfilled, that thus it must be? Smith and I sat studying the fire and Smith had almost nothing to say. And 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. She still had straw in her hair and looked very pretty and excited. The droppings help make new soil. But thanks be to God, who putteth the same earnest care for you into the heart of Titus. saying, Say ye, His disciples came by night, and stole him away while we slept. came behind him, and touched the border of his garment: and immediately the issue of her blood stanched. And he said, He that showed mercy on him. And Jesus said unto him, Go, and do thou likewise. Herein I also exercise myself to have a conscience void of offence toward God and men always. “Yes,” said Mrs. Arable. For ye were once darkness, but are now light in the Lord: walk as children of light “You stop it, Avery!” cried Fern. For it seemeth to me unreasonable, in sending a prisoner, not withal to signify the charges against him. For 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. And one of the lawyers answering saith unto him, Teacher, in saying this thou reproachest us also. and stooping and looking in, he seeth the linen cloths lying; yet entered he not in. The 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. And as he passed by, he saw a man blind from his birth. Therefore 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. And on his way to Washington City to lobby Congress and the Jackson administration on behalf of his people. Beloved, believe not every spirit, but prove the spirits, whether they are of God; because many false prophets are gone out into the world. but in his own seasons manifested his word in the message, wherewith I was intrusted according to the commandment of God our Saviour; But 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. And they entered in, and found not the body of the Lord Jesus. See that none render unto any one evil for evil; but always follow after that which is good, one toward another, and toward all. Wilbur had never seen snow before. And now, brethren, I know that in ignorance ye did it, as did also your rulers. Let us not become vainglorious, provoking one another, envying one another. And he that overcometh, and he that keepeth my works unto the end, to him will I give authority over the nations: And they went away in the boat to a desert place apart. My age exactly. But 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. Then 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: “Now back again, faster!” said Charlotte. And 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. It 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. Calhoun’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. And again he sent unto them another servant; and him they wounded in the head, and handled shamefully. And they made signs to his father, what he would have him called. And I was with you in weakness, and in fear, and in much trembling. Run for some water, Lurvy!” “It’s unfair.” I’ll bring them in. Even so ye also outwardly appear righteous unto men, but inwardly ye are full of hypocrisy and iniquity. An arrow struck her palm and she was dead. for they understood not concerning the loaves, but their heart was hardened. And the passover of the Jews was at hand, and Jesus went up to Jerusalem. And 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. Verily, verily, I say unto you, He that believeth hath eternal life. And the Pharisees said unto him, Behold, why do they on the sabbath day that which is not lawful? But 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. Fern couldn't take her eyes off the tiny pig. And the seventy returned with joy, saying, Lord, even the demons are subject unto us in thy name. And they brought the lad alive, and were not a little comforted. For behold, when the voice of thy salutation came into mine ears, the babe leaped in my womb for joy. But 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? which none of the rulers of this world hath known: for had they known it, they would not have crucified the Lord of glory: Beyond looking for a cave, Charley had no plan for winter. When Charley was done, the snow was falling again in little grains, rattling in the tree branches. And 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: Then was fulfilled that which was spoken through Jeremiah the prophet, saying, Agree 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. “Nothing,” said Charlotte. And why beholdest thou the mote that is in thy brother’s eye, but considerest not the beam that is in thine own eye? All that came before me are thieves and robbers: but the sheep did not hear them. Ye have not yet resisted unto blood, striving against sin: And when they had laid many stripes upon them, they cast them into prison, charging the jailor to keep them safely: If he could distinguish himself at the Fair, and maybe win some prize money, he was sure Zuckerman would let him live. You know how he is always looking out for himself, never thinking of the other fellow.” “I was never more serious in my life. Therefore he that rejecteth, rejecteth not man, but God, who giveth his Holy Spirit unto you. and 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: But a voice answered the second time out of heaven, What God hath cleansed, make not thou common. But 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: who, 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. For God said, Honor thy father and thy mother: and, He that speaketh evil of father or mother, let him die the death. And do. And forgive us our debts, as we also have forgiven our debtors. “Try it again, try it again!” And 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. Judas (not Iscariot) saith unto him, Lord, what is come to pass that thou wilt manifest thyself unto us, and not unto the world? The 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. They say it stays warm all winter and there’s plenty of fish to fry. “Stop!” screamed Wilbur. That 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. And straightway he came to Jesus, and said, Hail, Rabbi; and kissed him. Jesus therefore perceiving that they were about to come and take him by force, to make him king, withdrew again into the mountain himself alone. She roamed through the forests and any time she wanted to she could shapeshift. And 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. Wilbur ran to her and she held the bottle for him while he sucked. Wilbur stood in the trough, drooling with hunger. Lurvy poured. “Now I’ll catch it.” and the seven left no seed. Last of all the woman also died. While he yet spake, there cometh one from the ruler of the synagogue’s house, saying, Thy daughter is dead; trouble not the Teacher. Jesus answered and said unto him, What I do thou knowest not now; but thou shalt understand hereafter. “Rats!” he said. “Fhew! I might a’ known a rat would make a nest under this trough. There were other such forts scattered about the old Nation, each host to its own drab procession heading out to the West. He leaning back, as he was, on Jesus’ breast saith unto him, Lord, who is it? “I’m hungry too,” said Charlie. Congratu—congratu-congratulations!” they cried. and when they had brought them unto the magistrates, they said, These men, being Jews, do exceedingly trouble our city, Perhaps if people talked less, animals would talk more. And 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. It was probably a tree stump or a wet rock. Beaver found something near the river, said Rabbit. And our people? But some trash never decomposes. Give no occasion of stumbling, either to Jews, or to Greeks, or to the church of God: I put the narrow-brimmed creased-crowned specimen back on its display block. and the spirits of the prophets are subject to the prophets; Epaphras, 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. and to them that sold the doves he said, Take these things hence; make not my Father’s house a house of merchandise. But those husbandmen said among themselves, This is the heir; come, let us kill him, and the inheritance shall be ours. but rise, and enter into the city, and it shall be told thee what thou must do. And they have tails like unto scorpions, and stings; and in their tails is their power to hurt men five months. Avery was led from the ring by his mother and placed on the seat of the truck to dry off. His ratty home under the pig trough was too chilly, so he fixed himself a cozy nest in the barn behind the grain bins. Jesus answered them, Verily, verily, I say unto you, Every one that committeth sin is the bondservant of sin. Go get another word, please, Templeton!” Think ye that I am come to give peace in the earth? I tell you, Nay; but rather division: And 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: If 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. Beloved, 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: But 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. Know ye not that ye are a temple of God, and that the Spirit of God dwelleth in you? Aren’t you spending quite a lot of time there? Crossing into the village, they came close to Stephen’s door. Even when soldiers forced the people from their lands and sent them west in the 1830s, the Cherokee held on to their books. Well, home we go!” Wilbur noticed that Charlotte's voice sounded sad. Now isn’t that lovely!” Pray for us: for we are persuaded that we have a good conscience, desiring to live honorably in all things. but 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. Why do thy disciples transgress the tradition of the elders? for they wash not their hands when they eat bread. I would swim back up to see you, but I'm too big to fit through. The trap was hooked there. And it was that Mary who anointed the Lord with ointment, and wiped his feet with her hair, whose brother Lazarus was sick. Lurvy sat down under an apple tree and lit his pipe; the animals sniffed the familiar smell of strong tobacco. Wilbur didn't want food, he wanted love. And he found in the temple those that sold oxen and sheep and doves, and the changers of money sitting: And he sent yet a third: and him also they wounded, and cast him forth. The 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. Some lay curled up, knees to chest, trying to sleep. Wherefore ye witness to yourselves, that ye are sons of them that slew the prophets. Jesus 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. So there arose a division in the multitude because of him. So 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. And 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. And Jesus answering said unto them, They that are in health have no need of a physician; but they that are sick. It says, ‘Some Pig,’ just as clear as clear can be. All that remained visible was the muscled hump of the bear’s back breaking the dark surface of the river. And the Pharisees, who were lovers of money, heard all these things; and they scoffed at him. Heaven knows anyone’s life can stand a little of that.” One of the soldier boys dismounted and went to see what was the matter. You can stay as long as you like If you care to stay with me. Now 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; “But I can’t see you,” said Wilbur, jumping to his feet. And 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. The passenger list was shuffled up at each stop down the river as people came and went from town to town. The wind began to blow so hard He backed up to where the trap lay and stepped on it with his rear foot. Low on the ground. and said, This man said, I am able to destroy the temple of God, and to build it in three days. This is a dead leaf. that they should seek God, if haply they might feel after him and find him, though he is not far from each one of us: His house is in the village, though; Whence came this mysterious writing? The 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. “Oh, yes.” Who 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. But he answered and said unto them, My mother and my brethren are these that hear the word of God, and do it. And 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? A decimated round of warm butter slumping on its dish. the son of Melchi, the son of Addi, the son of Cosam, the son of Elmadam, the son of Er, Who was I to deny them comfort? They had their muskets aimed generally at the bunched people. Wherefore 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. And they said, Some say John the Baptist; some, Elijah; and others, Jeremiah, or one of the prophets. “He's fading away!” And seeing their faith, he said, Man, thy sins are forgiven thee. And straightway the fountain of her blood was dried up; and she felt in her body that she was healed of her plague. The Jews answered him, We have a law, and by that law he ought to die, because he made himself the Son of God. But 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. And he said, Bring them hither to me. They live in the soil. If we live by the Spirit, by the Spirit let us also walk. And 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. to 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. The next day was Saturday. Fern got up from her stool and started for home, her mind full of everything she had seen and heard. “I’ve been hearing things about that pig,” said Dr. Dorian, opening his eyes. but 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. that thou mightest know the certainty concerning the things wherein thou wast instructed. So 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. White plates with smears of dark yellow where the yolks of soft-fried eggs had run and congealed. (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); Thou 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. well 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. For the man is not of the woman; but the woman of the man: What then? That which Israel seeketh for, that he obtained not; but the election obtained it, and the rest were hardened: And when the centurion saw what was done, he glorified God, saying, Certainly this was a righteous man. When 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! I wove my webs for you because I liked you. to be sober-minded, chaste, workers at home, kind, being in subjection to their own husbands, that the word of God be not blasphemed: I, 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. As the night closed in the dark he began to feel the cold. But 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. I say unto thee, Arise, take up thy bed, and go unto thy house. And Jesus answered and said, O faithless and perverse generation, how long shall I be with you, and bear with you? bring hither thy son. And 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: Ever since the spider had befriended him, he had done his best to live up to his reputation. How many Indians are you representing? the secretary said. Peter saith unto him, Even if I must die with thee, yet will I not deny thee. Likewise also said all the disciples. Have you ever tried to sleep while sitting on eight eggs?” the son of Enos, the son of Seth, the son of Adam, the son of God. I know a good thing when I see it, and my web is a good thing. But he, taking her by the hand, called, saying, Maiden, arise. “Look!” screamed Fern. One day a little Cherokee boy planted an apple seed in his backyard. My cousin hardly dared tackle it. Or at least back to your tent. “Can I have a frozen custard and a cheeseburger and some raspberry soda pop?” asked Avery. Even Templeton poked his head out cautiously, to watch Wilbur get a buttermilk bath. Go down through the garden, dig up the radishes! Then 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; And he took with him Peter and the two sons of Zebedee, and began to be sorrowful and sore troubled. even he that cometh after me, the latchet of whose shoe I am not worthy to unloose. And 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? She looked outside and saw the sun shining. They zealously seek you in no good way; nay, they desire to shut you out, that ye may seek them. He 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. Now to him that worketh, the reward is not reckoned as of grace, but as of debt. In the Spring, when the children were on the hillsides picking wild strawberries she would come upon them, looking like their old grandmother. Neither 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. “Good night!” The blade had caught hard in the bones, buried as in a dry log butt. When Christ, who is our life, shall be manifested, then shall ye also with him be manifested in glory. And when they had crucified him, they parted his garments among them, casting lots; Then, a few minutes later, Fern and Avery showed up. Across the river I could see the fire circle where Charley and I had sat up talking all night. But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. And devout men buried Stephen, and made great lamentation over him. and saying, The time is fulfilled, and the kingdom of God is at hand: repent ye, and believe in the gospel. And he sent him away to his home, saying, Do not even enter into the village. The 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. Then came to him the mother of the sons of Zebedee with her sons, worshipping him, and asking a certain thing of him. But a certain one of them that stood by drew his sword, and smote the servant of the high priest, and struck off his ear. Blessed are ye when men shall reproach you, and persecute you, and say all manner of evil against you falsely, for my sake. no, nor yet Herod: for he sent him back unto us; and behold, nothing worthy of death hath been done by him. Know therefore that they that are of faith, the same are sons of Abraham. What 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. Where is the rest of the snake? He closed his eyes. And 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. Since 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; And 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. He 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. And I, if I be lifted up from the earth, will draw all men unto myself. And he believed the same now. Jesus said unto him, Verily I say unto thee, that this night, before the cock crow, thou shalt deny me thrice. A few years younger than I was, but when you’re that young two or three years still seems significant. Fern was there, sitting on her stool, when it happened. Helping 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. And 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. Charley’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. If I must needs glory, I will glory of the things that concern my weakness. and said unto his servants, This is John the Baptist; he is risen from the dead; and therefore do these powers work in him. “I’ve left it tonight,” she said. Perry said. And Moses was instructed in all the wisdom of the Egyptians; and he was mighty in his words and works. And the rest said, Let be; let us see whether Elijah cometh to save him. He might go on to the highest ridges and follow them northeast until he was far away from the hunters. But then what? He wondered where Nancy was tonight, and all the children. It was said also, Whosoever shall put away his wife, let him give her a writing of divorcement: and they sold their possessions and goods, and parted them to all, according as any man had need. Many shall come in my name, saying, I am he; and shall lead many astray. And the disciples went, and did even as Jesus appointed them, and 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. These 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. You notice how solid he is around the shoulders, Lurvy?” Wriggling free of its bonds, it fled for the nearby rocks. And having spent some time there, he departed, and went through the region of Galatia, and Phrygia, in order, establishing all the disciples. And they that heard it said, Then who can be saved? They’re all of a kind. So 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. I wrote a poem rather more about my moping than about Mrs. Chapman, and it was published in The Chesapeake Review. “Terrific!” breathed Zuckerman, in joyful admiration. He that eateth my flesh and drinketh my blood abideth in me, and I in him. And in his teaching he said, Beware of the scribes, who desire to walk in long robes, and to have salutations in the marketplaces, But when he saw the wind, he was afraid; and beginning to sink, he cried out, saying, Lord, save me. For the foolish, when they took their lamps, took no oil with them: The soldiers therefore came, and brake the legs of the first, and of the other that was crucified with him: And 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: Beloved, I pray that in all things thou mayest prosper and be in health, even as thy soul prospereth. leave there thy gift before the altar, and go thy way, first be reconciled to thy brother, and then come and offer thy gift. I am the Alpha and the Omega, the first and the last, the beginning and the end. having knowledge of me from the first, if they be willing to testify, that after the straitest sect of our religion I lived a Pharisee. Where 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. Smith and the boys were miserable. Then again he laid his hands upon his eyes; and he looked stedfastly, and was restored, and saw all things clearly. “Good!” said the doctor. and 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: But he never had any fun — no walks, no rides, no swims. He and Mrs. Zuckerman and Avery climbed into Wilbur’s pen. With 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. Thou 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: But 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. There is one body, and one Spirit, even as also ye were called in one hope of your calling; School ends, and children have time to play and to fish for trouts in the brook. And thus, having patiently endured, he obtained the promise. But 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. Wherefore I beseech you to confirm your love toward him. “Cut that down to one ‘terrific’ and it will do very nicely,” said Charlotte. She descended to the center of the web and there she began to cut some of her lines. They 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. He moved in the bear’s wake all afternoon, climbing without letup. Choctaws had been cut down likewise. “That’s right,” agreed Lurvy. For God so loved the world, that he gave his only begotten Son, that whosoever believeth on him should not perish, but have eternal life. But 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; and they sounded, and found twenty fathoms; and after a little space, they sounded again, and found fifteen fathoms. Honor thy father and thy mother; and, Thou shalt love thy neighbor as thyself. who had his dwelling in the tombs: and no man could any more bind him, no, not with a chain; And 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. and 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. But I don’t understand everything, and I don’t intend to let it worry me.” And shall not God avenge his elect, that cry to him day and night, and yet he is longsuffering over them? But she that giveth herself to pleasure is dead while she liveth. And these signs shall accompany them that believe: in my name shall they cast out demons; they shall speak with new tongues; They 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. This I say, that no one may delude you with persuasiveness of speech. I am come in my Father’s name, and ye receive me not: if another shall come in his own name, him ye will receive. Setting sail therefore from Troas, we made a straight course to Samothrace, and the day following to Neapolis; Charley said, Where we going? He and the three younger men flared off from one another, Charley taking the path straight up. how 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. I'm not very pretty at all, and my limbs are not so strong. But 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. Being 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. Not together, Nancy said. In 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. Every creature planned to get up early to see Wilbur off on his great adventure. But if ye forgive not men their trespasses, neither will your Father forgive your trespasses. persecutions, sufferings; what things befell me at Antioch, at Iconium, at Lystra; what persecutions I endured: and out of them all the Lord delivered me. The seven goslings paraded round and round their mother. Contrary 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. And when they that were about him saw what would follow, they said, Lord, shall we smite with the sword? Gain weight and stay well—that’s the way you can help. Keep fit, and don’t lose your nerve. Her eyes were red from crying. For therein the elders had witness borne to them. Charlotte liked to do her weaving during the late afternoon, and Fern liked to sit nearby and watch. Then 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: For it is not ye that speak, but the Spirit of your Father that speaketh in you. And again, I will put my trust in him. And again, Behold, I and the children whom God hath given me. I 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. While Peter yet spake these words, the Holy Spirit fell on all them that heard the word. And 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. the son of Amminadab, the son of Arni, the son of Hezron, the son of Perez, the son of Judah, I hesitated. Woe unto you, scribes and Pharisees, hypocrites! for ye build the sepulchres of the prophets, and garnish the tombs of the righteous, Among the hunters from Lichen’s bunch, disagreements appeared to run in many different directions. They said therefore, What is this that he saith, A little while? We know not what he saith. I have decided to take the pig to the County Fair on September sixth. and our hope for you is stedfast; knowing that, as ye are partakers of the sufferings, so also are ye of the comfort. in whom ye also are builded together for a habitation of God in the Spirit. And he said unto him, Well done, thou good servant: because thou wast found faithful in a very little, have thou authority over ten cities. First his house and animals and crops and neighbors, then his family. “You can't spin a web, Wilbur, and I advise you to put the idea out of your mind. The two men walked silently down to Wilbur’s yard. Then they both began to tremble. They are very illy provided with arms and ammunition. And he said, Are ye also even yet without understanding? I lounged with the three boys around a small fire that pushed back the dark only to arm’s length. but Jesus went unto the mount of Olives. But on the morrow they left the horsemen to go with him, and returned to the castle: looking 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. but one thing is needful: for Mary hath chosen the good part, which shall not be taken away from her. “This afternoon, late, if I’m not too tired,” said Charlotte. “The least thing tires me these days. For every kind of beasts and birds, of creeping things and things in the sea, is tamed, and hath been tamed by mankind: Two days later, back in Wayah, I sat in the dim midday townhouse with Bear. What advantage then hath the Jew? or what is the profit of circumcision? if so be that being clothed we shall not be found naked. Asmeret points to some trash near the trail. And Peter answered unto her, Tell me whether ye sold the land for so much. And she said, Yea, for so much. “Good-bye!” they called. How can I learn to like her, even though she is pretty and, of course, clever?” They perceived not that he spake to them of the Father. Charley and his people had camped on a piece of land where two rivers joined together. “Oh, it happened all right,” replied Fern. But 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. But we know that the law is good, if a man use it lawfully, But aloud I said, With me it’s the other way around. “Nice work.” and shall cast them into the furnace of fire: there shall be the weeping and the gnashing of teeth. In the afternoon I watched them march families and old folks into the holding pen that the fort had become. Yea, 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. He's a solid pig. because to you it hath been granted in the behalf of Christ, not only to believe on him, but also to suffer in his behalf: And 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. Of the tribe of Simeon twelve thousand; Of the tribe of Levi twelve thousand; Of the tribe of Issachar twelve thousand; Are we beginning again to commend ourselves? or need we, as do some, epistles of commendation to you or from you? “Isn’t it hot?” said Mrs. Zuckerman. Behold, 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. Every night we cover the seedlings and wait until it is warm enough during the day to set them out for sunshine. Asmeret says everything in the woods could become part of the soil. These are springs without water, and mists driven by a storm; for whom the blackness of darkness hath been reserved. “You're ever so much cleverer and brighter than I am, Charlotte. That means he has won first prize. For 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. Wherefore, beloved, seeing that ye look for these things, give diligence that ye may be found in peace, without spot and blameless in his sight. Woe 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. But it is not so among you: but whosoever would become great among you, shall be your minister; Nobody seemed hungry. Now run along!” who, when they were come down, prayed for them, that they might receive the Holy Spirit: For what doth it profit a man, to gain the whole world, and forfeit his life? and 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. And 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; A certain lender had two debtors: the one owed five hundred shillings, and the other fifty. “How about me?” asked the third spider. (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. And 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. Now a certain Jew named Apollos, an Alexandrian by race, an eloquent man, came to Ephesus; and he was mighty in the scriptures. And 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. And with whom was he displeased forty years? was it not with them that sinned, whose bodies fell in the wilderness? Seeing then that these things cannot be gainsaid, ye ought to be quiet, and to do nothing rash. Without 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. And, 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. Wilbur jumped as high as he could. Back in Wayah, I told Bear all the details of my recent past. and when the sun was risen, they were scorched; and because they had no root, they withered away. Howbeit the son by the handmaid is born after the flesh; but the son by the freewoman is born through promise. And 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? And they did not receive him, because his face was as though he were going to Jerusalem. saying, The scribes and the Pharisees sit on Moses’ seat: And he went forth to Tarsus to seek for Saul; “He's almost dead, that frog.” And pray ye that it be not in the winter. I ate one and offered the bland opinion that it was especially good. And then the Philadelphia boy said he’d like to be walking down South Street. that 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. in Phrygia and Pamphylia, in Egypt and the parts of Libya about Cyrene, and sojourners from Rome, both Jews and proselytes, Charley 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. Babies 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. If we confess our sins, he is faithful and righteous to forgive us our sins, and to cleanse us from all unrighteousness. He didn't swim too close to the top of the water. Axe sat asleep in a straight chair by the fire with his hands folded in his lap and his chin on his chest. For 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. And they that saw it told them how he that was possessed with demons was made whole. having 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; Never a kind word for old Templeton, only abuse and wisecracks and side remarks. The grownups climbed slowly into the truck and Wilbur heard the engine start and then heard the truck moving away in low speed. But God raised him from the dead: He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him; Smith wanted to tell her not to bother. He that hateth me hateth my Father also. and he saw two boats standing by the lake: but the fishermen had gone out of them, and were washing their nets. For 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, It is the spirit that giveth life; the flesh profiteth nothing: the words that I have spoken unto you are spirit, and are life. Then saith he to his servants, The wedding is ready, but they that were bidden were not worthy. The 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. howbeit one of the soldiers with a spear pierced his side, and straightway there came out blood and water. For nothing is hid, that shall not be made manifest; nor anything secret, that shall not be known and come to light. “Can I have a balloon?” asked Fern. Did you make it?” Lichen said I was not the issue. Jesus 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. Now 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; And the high priest said, Are these things so? I’m done with commerce for this evening. But the officers that came found them not in the prison; and they returned, and told, And 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. You're my best friend, and I think you're sensational. Also, he’s not anywhere near as clean as you are, nor as pleasant. Then he and Mr. Zuckerman leaned lazily on the fence and Mr. Zuckerman scratched Wilbur’s back with a stick. “Good night! And 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. “It's true,” replied Charlotte. On 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. They 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. For 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. So 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. And Peter answered him and said, Lord, if it be thou, bid me come unto thee upon the waters. Wilbur grunted. He still stood behind me, and he was looking off to the side. Dr. Dorian closed his eyes again and went into deep thought. I backed directly into Smith. For 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. Templeton crouched under the straw at the bottom of the crate. For he knew not what to answer; for they became sore afraid. And 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. During that time he had witnessed Jackson order a boy soldier shot for insubordination. So then ye are no more strangers and sojourners, but ye are fellow-citizens with the saints, and of the household of God, Salute one another with a holy kiss. All the churches of Christ salute you. He trusteth on God; let him deliver him now, if he desireth him: for he said, I am the Son of God. From 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. Woe 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. Two 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. And the scribes and the Pharisees watched him, whether he would heal on the sabbath; that they might find how to accuse him. And they told him, that Jesus of Nazareth passeth by. And the unclean spirits, whensoever they beheld him, fell down before him, and cried, saying, Thou art the Son of God. And 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. After the heat of the day, the evening came as a welcome relief to all. He grew to a great size. And he cried, saying, Jesus, thou son of David, have mercy on me. He 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. But 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. For 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; I 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. The disciples looked one on another, doubting of whom he spake. And 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. But when babies are involved and exhausted young mothers and grey-haired elders with swollen finger joints, being a fugitive is just terrifying and hopeless. And when he met us at Assos, we took him in, and came to Mitylene. It 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. saying, Blessed is the King that cometh in the name of the Lord: peace in heaven, and glory in the highest. If 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. “Mr. Arable?” sobbed Wilbur. Decomposers will break it all down into soil. Philip saith unto him, Lord, show us the Father, and it sufficeth us. The 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. And 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, And they that ate the loaves were five thousand men. not a novice, lest being puffed up he fall into the condemnation of the devil. But from henceforth shall the Son of man be seated at the right hand of the power of God. The 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. in whom we have boldness and access in confidence through our faith in him. Then, when Templeton couldn’t hold another mouthful, Wilbur would eat. What she liked best was to eat the livers of Cherokee children! Any suggestions for a new slogan?” “How much money should I ask for him?” Fern wanted to know. they say unto him, Teacher, this woman hath been taken in adultery, in the very act. Then he planted his front feet and came to a stop in front of Charlotte's children. One morning a seedling appeared. On the morrow a great multitude that had come to the feast, when they heard that Jesus was coming to Jerusalem, Now 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. XVI: Off to the Fair I 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. And 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. And the seven angels that had the seven trumpets prepared themselves to sound. Wilbur's leftover food is your chief source of supply, Templeton. Come back in a couple of years and they’ll be wearing them high, hove up nearly to their chins. It 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. “Play? Even men aren't as good at it as spiders, although they think they're pretty good, and they'll try anything. And 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. Every tree that bringeth not forth good fruit is hewn down, and cast into the fire. Philip cometh and telleth Andrew: Andrew cometh, and Philip, and they tell Jesus. But 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. The 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. But a certain man named Ananias, with Sapphira his wife, sold a possession, among whom was Mary Magdalene, and Mary the mother of James and Joses, and the mother of the sons of Zebedee. But Ananias answered, Lord, I have heard from many of this man, how much evil he did to thy saints at Jerusalem: He must increase, but I must decrease. Lurvy soon got busy. Whereupon all the attending young men, in turn, commented favorably on their every superlative feature, from heels to lacing. And all the multitudes were amazed, and said, Can this be the son of David? and saith, Cornelius, thy prayer is heard, and thine alms are had in remembrance in the sight of God. And 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. for 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. he fleeth because he is a hireling, and careth not for the sheep. And there ariseth a great storm of wind, and the waves beat into the boat, insomuch that the boat was now filling. “Can I look for eggs in the henhouse, Aunt Edith?” how shall not rather the ministration of the spirit be with glory? I’m a pig!” And furthermore, I said, if he wanted to call me white, that was his privilege. Charlotte glared at her. Wherefore also we make it our aim, whether at home or absent, to be well-pleasing unto him. And not only so; but Rebecca also having conceived by one, even by our father Isaac— And when it came to pass that Peter entered, Cornelius met him, and fell down at his feet, and worshipped him. Then 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. And if any one say aught unto you, ye shall say, The Lord hath need of them; and straightway he will send them. Two more little spiders crawled out and waved. By 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. Now he that betrayed him had given them a token, saying, Whomsoever I shall kiss, that is he; take him, and lead him away safely. Mrs. Arable said goodbye and thanked Dr. Dorian very much for his advice. And 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: But Peter continued knocking: and when they had opened, they saw him, and were amazed. And 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. Zuckerman stared at the writing on the web. Charley turned and nodded again. And Peter took him, and began to rebuke him, saying, Be it far from thee, Lord: this shall never be unto thee. who was foreknown indeed before the foundation of the world, but was manifested at the end of the times for your sake, She went to the truck and came back with a gallon jar of buttermilk. Symeon hath rehearsed how first God visited the Gentiles, to take out of them a people for his name. “Hundreds of people are looking at us.” glory not over the branches: but if thou gloriest, it is not thou that bearest the root, but the root thee. Wherefore 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. Yea and all the prophets from Samuel and them that followed after, as many as have spoken, they also told of these days. As 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. And he said unto her, Daughter, thy faith hath made thee whole; go in peace. Gliding silently, keeping her bare feet close to the oak floorboards so not to stumble. Not the Hell. “And don’t get lost!” said Mrs. Zuckerman. How 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? As he saith also in Hosea, I will call that my people, which was not my people; And her beloved, that was not beloved. “O.K.,” replied Wilbur. in everything give thanks: for this is the will of God in Christ Jesus to you-ward. He didn’t swim too close to the side of the water. that 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: And when the wine failed, the mother of Jesus saith unto him, They have no wine. Know 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? “No-no-no!” said the goose. As it was, Beaver had to fell the tree. knowing that ye were redeemed, not with corruptible things, with silver or gold, from your vain manner of life handed down from your fathers; In 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. whensoever 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)— The rat sat up. When 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. through the hypocrisy of men that speak lies, branded in their own conscience as with a hot iron; The peppers grow in a rainbow of colors: purple, yellow, green, red, orange, and white. If she went upstairs, Wilbur would wait at the bottom step until she came down again. For in that she poured this ointment upon my body, she did it to prepare me for burial. And they called them, and charged them not to speak at all nor teach in the name of Jesus. henceforth 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. At the end of the story, I paused. He 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. Speak 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. He shook his big stoppered gourd to check if it was still full from the most recent creek. Then 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. Suddenly Wilbur felt lonely and friendless. In a country like this and at a season the most unpropitious for surveying operations, it is natural to suppose many difficulties have been encountered. She gripped the edge of the tailboard so hard her knuckles went white. The crowd roared with laughter. There were ten boys, all from big towns. And if they were all one member, where were the body? And 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. And 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. “Homer Zuckerman, what in the world are you talking about?” she said. Asmeret carefully puts the log back the way she found it. The geese gave him a noisy welcome. What 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? His 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. And his parents went every year to Jerusalem at the feast of the passover. And 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. All color was damped down to shades of grey. and they shall see his face; and his name shall be on their foreheads. They could hear sheep blatting in their pens. I'll let you start it on a bottle, like a baby. Am I not free? am I not an apostle? have I not seen Jesus our Lord? are not ye my work in the Lord? And Jesus knowing their thoughts said, Wherefore think ye evil in your hearts? For 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. in whom we have our redemption, the forgiveness of our sins: I robbed other churches, taking wages of them that I might minister unto you; Children pay better attention than grownups. The 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; Your mother wouldn’t want that to happen, I’m sure.” Colonel Haden was a big hog of a man, with biscuit crumbs in his whiskers and gravy stains down his shirtfront. For to me to live is Christ, and to die is gain. And 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, Let 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. When the children grew tired of swinging, they went down toward the pasture and picked wild raspberries and ate them. and had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse, She felt the dizzy drop, then the supporting lift of the swing. “This is a matter of life and death, and you talk about controlling myself.” Buddy could not believe his ears Avery found an empty candy box and put his frog in it. and 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. “Charlotte?” said Mrs. Arable. A 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. Only, 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. Dull 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. Everybody knew that a sign had appeared in a spider's web on the Zuckerman place. The 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. And he cometh, and findeth them sleeping, and saith unto Peter, Simon, sleepest thou? couldest thou not watch one hour? “He’s yours,” said Mr. Arable. And they that did eat were about five thousand men, besides women and children. Major Cotton, he said. The straw seemed scratchy —not as comfortable as the cow manure, which was always delightfully soft to lie in. And not only so, but we also rejoice in our tribulations: knowing that tribulation worketh stedfastness; Wherefore, brethren, we are not children of a handmaid, but of the freewoman. in 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; And a great multitude followed him, because they beheld the signs which he did on them that were sick. “Lurvy, help with the crate!” When 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. But Peter said, Not so, Lord; for I have never eaten anything that is common and unclean. Then she slept. It’s wonderful out here.” Templeton was down there now, rummaging around. The little tree was not so beautiful, but because the little boy loved the tree so much, the tree felt beautiful. Bill Axe sought me out immediately upon my arrival. And some believed the things which were spoken, and some disbelieved. And they watched him, whether he would heal him on the sabbath day; that they might accuse him. And I was not content with just the quail. “Up in this back corner.” except 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. Verily, 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. “Yes, it’s true,” sighed Charlotte. Jesus 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? I 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: I flushed red to the hairline and got up and gave a little one-inch head bob of a bow and left. For 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. for every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened. “Oh, no,” said Dr. Dorian. Had 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. and 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: Soil comes from rocks breaking down. wherein ye also once walked, when ye lived in these things; Wasseton blinked back tears and shut up. Now for a recompense in like kind (I speak as unto my children), be ye also enlarged. the one do it of love, knowing that I am set for the defence of the gospel; It looked just like Charlotte. And 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. The 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. We had frightened each other as he had been standing in the middle of the road sleeping. For if the casting away of them is the reconciling of the world, what shall the receiving of them be, but life from the dead? And then the bear lurched forward and pressed the boy down under the water with his full weight. And ye have an anointing from the Holy One, and ye know all things. Even Wilbur, who could eat almost anything, was appalled. which 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. Drops of dew, catching the sun, made the web stand out clearly. though I was before a blasphemer, and a persecutor, and injurious: howbeit I obtained mercy, because I did it ignorantly in unbelief; If 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? And 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. Everything of value was noted down in his ledger. Wilbur lay resting after the excitement and strain of the ceremony. and so do Mark, Aristarchus, Demas, Luke, my fellow-workers. Late 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. And hereby we know that we know him, if we keep his commandments. and on my behalf, that utterance may be given unto me in opening my mouth, to make known with boldness the mystery of the gospel, And being asked by the Pharisees, when the kingdom of God cometh, he answered them and said, The kingdom of God cometh not with observation: And the next sabbath almost the whole city was gathered together to hear the word of God. for there shall arise false Christs and false prophets, and shall show signs and wonders, that they may lead astray, if possible, the elect. And the chief captain answered, With a great sum obtained I this citizenship. And Paul said, But I am a Roman born. And looking round on them that sat round about him, he saith, Behold, my mother and my brethren! “Oink, oink, oink!” And in those days cometh John the Baptist, preaching in the wilderness of Judæa, saying, Major Ridge, who had been given his rank by Jackson back in the Creek War, had his boys with him, both approximately my age. But, 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. Fern and Avery jumped to the ground. When he finished, they headed toward the river. And the witness is this, that God gave unto us eternal life, and this life is in his Son. He crept down into his hole, pushed the goose egg out of the way, and returned with an old piece of dirty white string. If 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. else 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. Wilbur burst into tears. Perry settled back against his bedroll. For 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. Now a certain man was sick, Lazarus of Bethany, of the village of Mary and her sister Martha. Then he picked up a stick. “Well,” said the goose, “that’s not my trouble. I was terrified. The God of our fathers raised up Jesus, whom ye slew, hanging him on a tree. Jesus said unto them, If ye were blind, ye would have no sin: but now ye say, We see: your sin remaineth. And after them all, the woman died. “A blanket.” wherefore 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. And whosoever shall exalt himself shall be humbled; and whosoever shall humble himself shall be exalted. but a certain fearful expectation of judgment, and a fierceness of fire which shall devour the adversaries. the 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. And 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. Brethren, pray for us. For 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: who also declared unto us your love in the Spirit. His greatest wish was to operate a store selling clothing, men’s and women’s, of the most recent fashion. And 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: The Irishman recalled how his grandmother had refused to acknowledge that the journey meant she would never see any of them again in this life. And there were seven sons of one Sceva, a Jew, a chief priest, who did this. But I feel peaceful. Not one of them other than Smith had yet passed twenty. The faith which thou hast, have thou to thyself before God. Happy is he that judgeth not himself in that which he approveth. And 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. And after these things Jesus walked in Galilee: for he would not walk in Judæa, because the Jews sought to kill him. And whither I go, ye know the way. The runners in the distance made a sound like a rising wind below them. And Pilate answered them, saying, Will ye that I release unto you the King of the Jews? But if any hath caused sorrow, he hath caused sorrow, not to me, but in part (that I press not too heavily) to you all. But in those sacrifices there is a remembrance made of sins year by year. For there are three who bear witness, the Spirit, and the water, and the blood: and the three agree in one. Having then a great high priest, who hath passed through the heavens, Jesus the Son of God, let us hold fast our confession. Seems to be, there’s two kinds of men in this new world the white people are making. Let's get out of here!” And he stretched forth his hand towards his disciples, and said, Behold, my mother and my brethren! It's a Wendy day! For yourselves know perfectly that the day of the Lord so cometh as a thief in the night. But 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: But withal prepare me also a lodging: for I hope that through your prayers I shall be granted unto you. But Paul’s sister’s son heard of their lying in wait, and he came and entered into the castle and told Paul. Now I praise you that ye remember me in all things, and hold fast the traditions, even as I delivered them to you. But Peter began, and expounded the matter unto them in order, saying, and 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. But when they had commanded them to go aside out of the council, they conferred among themselves, “It's a dud, I guess,” said the goose. Every day was a happy day, and every night was peaceful. So they made him a supper there: and Martha served; but Lazarus was one of them that sat at meat with him. There were chairs farther along the gallery, but I went to the steps and sat down with my back to the door. A desperate passage through a landscape rising against you, the beautiful world you love suddenly risky and dangerous. And they bring the colt unto Jesus, and cast on him their garments; and he sat upon him. And on the under side of the leaf of the potato vine are the bright orange eggs of the potato bug. The night seemed long. Render to all their dues: tribute to whom tribute is due; custom to whom custom; fear to whom fear; honor to whom honor. and 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. neither, because they are Abraham’s seed, are they all children: but, In Isaac shall thy seed be called. All 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. And 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; Look therefore whether the light that is in thee be not darkness. And, Whosoever shall swear by the altar, it is nothing; but whosoever shall swear by the gift that is upon it, he is a debtor. Got to keep them toasty-oasty—oasty warm. Wherefore 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. of whom is Hymenæus and Alexander; whom I delivered unto Satan, that they might be taught not to blaspheme. And the soldiers platted a crown of thorns, and put it on his head, and arrayed him in a purple garment; But 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: She laughed a tinkling little laugh. Templeton’s keen nose detected many fine smells in the air. And 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. The 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. My little children, of whom I am again in travail until Christ be formed in you— And they shall say to you, Lo, there! Lo, here! go not away, nor follow after them: Fern had arrived and seated herself quietly on her stool in the corner. Polished ankle boots dangled in space. saying, Give me also this power, that on whomsoever I lay my hands, he may receive the Holy Spirit. “If this is what it’s like to be free,” he thought, “I believe I’d rather be penned up in my own yard.” Wilbur didn’t care. I will invent writing for our people, he said. Is this blessing then pronounced upon the circumcision, or upon the uncircumcision also? for we say, To Abraham his faith was reckoned for righteousness. He's fine.” How then was it reckoned? when he was in circumcision, or in uncircumcision? Not in circumcision, but in uncircumcision: And 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. unto whom coming, a living stone, rejected indeed of men, but with God elect, precious, And 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, But the chief priests stirred up the multitude, that he should rather release Barabbas unto them. When Jesus therefore saw her weeping, and the Jews also weeping who came with her, he groaned in the spirit, and was troubled, The spider stood on its head, pointed its spinnerets in the air, and let loose a cloud of fine silk. The silk formed a balloon. And 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. And 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; so that the Son of man is lord even of the sabbath. Don’t come all white-faced telling me about peace. And Jesus stood still, and called them, and said, What will ye that I should do unto you? And 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. For of necessity he must have let one loose unto them at the feast. Thus Paul went out from among them. even 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. He 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: This helps keep it wet and dark under the log. and they came unto him, and said, Hail, King of the Jews! and they struck him with their hands. laying wait for him, to catch something out of his mouth. Charlotte just sat quietly. First 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. Then he walked drearily to the doorway, where Charlotte's web used to be. And 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, And 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. And in like manner a Levite also, when he came to the place, and saw him, passed by on the other side. Ye blind: for which is greater, the gift, or the altar that sanctifieth the gift? I vote. All things were made through him; and without him was not anything made that hath been made. One 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. He saved everything.) Certainly-ertainly-ertainly,” said the gander. And he said, A hundred measures of oil. And he said unto him, Take thy bond, and sit down quickly and write fifty. ye being enriched in everything unto all liberality, which worketh through us thanksgiving to God. Now concerning the collection for the saints, as I gave order to the churches of Galatia, so also do ye. And he goeth up into the mountain, and calleth unto him whom he himself would; and they went unto him. For, His letters, they say, are weighty and strong; but his bodily presence is weak, and his speech of no account. I 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; “Attention, please!” he said. and might reconcile them both in one body unto God through the cross, having slain the enmity thereby: And all that sat in the council, fastening their eyes on him, saw his face as it had been the face of an angel. We have never been more than a thousand souls. But all these things will they do unto you for my name’s sake, because they know not him that sent me. And the multitude rose up together against them: and the magistrates rent their garments off them, and commanded to beat them with rods. Now they were Mary Magdalene, and Joanna, and Mary the mother of James: and the other women with them told these things unto the apostles. But 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. For as soon as Bear died, the memory of Wild Hemp would pass entirely from the world, never to be retrieved again. And into whatsoever city or village ye shall enter, search out who in it is worthy; and there abide till ye go forth. The early summer days on a farm are the happiest and fairest days of the year. and the second took her, and died, leaving no seed behind him; and the third likewise: And the Lord said, Hear what the unrighteous judge saith. I sat in a camp chair and waited for what he had to say. And they kept the saying, questioning among themselves what the rising again from the dead should mean. But 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. And many more believed because of his word; “Well!” said Mrs. Arable. Oh. The Nut Moon had hardly made an appearance during its cloudy month. “I don't see why he needs an ax,” continued Fern, who was only eight. I pray not that thou shouldest take them from the world, but that thou shouldest keep them from the evil one. And 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. Then the devil taketh him into the holy city; and he set him on the pinnacle of the temple, The Jews therefore sought him at the feast, and said, Where is he? “I'm sorry, Templeton,” she said, “but ‘Pre-shrunk’ is out of the question. And why call ye me, Lord, Lord, and do not the things which I say? After days of chase—down creeks, over ridges, up coves—the hunters were right behind them in the grey open woods. And 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. Behold, 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. So is he that layeth up treasure for himself, and is not rich toward God. Provisional structures that would fall apart and melt into the ground in a few seasons. and they were astonished at his teaching; for his word was with authority. What 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? I came to this Fair to enjoy myself, not to deliver papers.” And 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. Beware 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; “It’s just a common grey spider,” said Zuckerman. And another said, I have married a wife, and therefore I cannot come. “I am naturally a heavy eater and I get untold satisfaction from the pleasures of the feast.” that whosoever believeth may in him have eternal life. I 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. Wilbur crouched low, with his thin, curly tail toward the rat. but supposing him to be in the company, they went a day’s journey; and they sought for him among their kinsfolk and acquaintance: We didn't pay much attention to him that first night. And when saw we thee sick, or in prison, and came unto thee? Fern met her friend Henry Fussy, and he invited her to ride with him in the Ferris wheel. and Matthew and Thomas, and James the son of Alphæus, and Simon who was called the Zealot, He that loveth his brother abideth in the light, and there is no occasion of stumbling in him. And she went away unto her house, and found the child laid upon the bed, and the demon gone out. As 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. Lurvy rushed and called Mr. Zuckerman. I marvel that ye are so quickly removing from him that called you in the grace of Christ unto a different gospel; And it came to pass, while they were there, the days were fulfilled that she should be delivered. We know that God hath spoken unto Moses: but as for this man, we know not whence he is. For a moment after this announcement, the Arables and the Zuckermans were unable to speak or move. He was born in eastern Tennessee in the 1760s, the son of a Cherokee woman and a white man he never knew. I am, Sir, with respect W. G. WILLIAMS CAPT. U.S. Top Ensgn. And it became known throughout all Joppa: and many believed on the Lord. For if the ministration of condemnation hath glory, much rather doth the ministration of righteousness exceed in glory. He handed Mr. Zuckerman two ten dollar bills and a five dollar bill. With a final heave they jammed him into the crate. The truck, with no one at the wheel, had started to roll downhill. As Bear saw it, his people had only a pair of things in their favor. Mrs. Arable worked silently. He talked to it in a low voice. He said, Come to me. Come to me. And he went through Syria and Cilicia, confirming the churches. And when he said, From strangers, Jesus said unto him, Therefore the sons are free. Deep woods are haunted places in the fog. I will not leave you desolate: I come unto you. And when he entered again into Capernaum after some days, it was noised that he was in the house. Now she that is a widow indeed, and desolate, hath her hope set on God, and continueth in supplications and prayers night and day. And when they had taken security from Jason and the rest, they let them go. And the tempter came and said unto him, If thou art the Son of God, command that these stones become bread. Jesus answered them, Did not I choose you the twelve, and one of you is a devil? The soles of his feet were a color of white that Charley had never seen before, even on a whiteman. He lay all day by the ashes of the fire with his mind blank, wishing he would die here and never be found. they 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. Claire gone. and he opened his mouth and taught them, saying, “It means ‘great work.’ who shall speak unto thee words, whereby thou shalt be saved, thou and all thy house. Why is it judged incredible with you, if God doth raise the dead? Many therefore of the Jews, who came to Mary and beheld that which he did, believed on him. And 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. Just get in. I have yet many things to say unto you, but ye cannot bear them now. The sweet peppers are crisp and watery and they taste and smell like summer. Wherefore I testify unto you this day, that I am pure from the blood of all men. “I’ve always noticed that pig. He’s quite a pig.” And 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; And 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. and he reasoned within himself, saying, What shall I do, because I have not where to bestow my fruits? Let's hunt down two more shoes. On these two commandments the whole law hangeth, and the prophets. Ye are severed from Christ, ye who would be justified by the law; ye are fallen away from grace. And 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. They said therefore unto him, Who art thou? Jesus said unto them, Even that which I have also spoken unto you from the beginning. And, so to say, through Abraham even Levi, who receiveth tithes, hath paid tithes; And David saith, Let their table be made a snare, and a trap, And a stumblingblock, and a recompense unto them: “I feel as though I’d eaten a spool of thread. It was a chase suited for an old man, very slow and mostly on hands and knees. He 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. When 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! “I shall be writing tonight for the last time. And he looked up, and saw the rich men that were casting their gifts into the treasury. And 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. Claire 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. Finally Mr. Zuckerman had to laugh, too. (although Jesus himself baptized not, but his disciples), She left the radial lines alone, as they were needed for support. But 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. This 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. No answer. choosing rather to share ill treatment with the people of God, than to enjoy the pleasures of sin for a season; A spider’s web is stronger than it looks. To you, her daughters, I pledge my friendship, forever and ever.” And some of the Pharisees from the multitude said unto him, Teacher, rebuke thy disciples. The 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. For let none of you suffer as a murderer, or a thief, or an evil-doer, or as a meddler in other men’s matters: For 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. And 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. Having 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. But he answered them, He that made me whole, the same said unto me, Take up thy bed, and walk. But 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. But if ye are without chastening, whereof all have been made partakers, then are ye bastards, and not sons. But I don’t want you to worry about me. Push on it, push-push-push on it, and come on out!” And 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. having become by so much better than the angels, as he hath inherited a more excellent name than they. And if ye have not been faithful in that which is another’s, who will give you that which is your own? I’ve worked so long for Bear, for our people. And as he thus made his defence, Festus saith with a loud voice, Paul, thou art mad; thy much learning is turning thee mad. His skin shone. In 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, Now that school was over, Fern visited the barn almost every day, to sit quietly on her stool. Jesus therefore six days before the passover came to Bethany, where Lazarus was, whom Jesus raised from the dead. Ye blind guides, that strain out the gnat, and swallow the camel! and 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: But 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. Bright and early, Lurvy put clean straw in Wilbur’s crate and lifted it into the pigpen. “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. And the whole thing was owned by Fern’s uncle, Mr. Homer L. Zuckerman. So they, being sent forth by the Holy Spirit, went down to Seleucia; and from thence they sailed to Cyprus. When their delegations arrived, I half expected Featherstone to be among them, but he was not. and he sent forth his servant at supper time to say to them that were bidden, Come; for all things are now ready. And 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. knowing that he that raised up the Lord Jesus shall raise up us also with Jesus, and shall present us with you. Lay hands hastily on no man, neither be partaker of other men’s sins: keep thyself pure. to another faith, in the same Spirit; and to another gifts of healings, in the one Spirit; This 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; All the chambermaids and desk clerks agreed that those were the days, and it had all been downhill since. Your glorying is not good. Know ye not that a little leaven leaveneth the whole lump? But 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. hereby we know that we abide in him and he in us, because he hath given us of his Spirit. in 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, And they came to him, and awoke him, saying, Save, Lord; we perish. And they ate, and were filled: and they took up, of broken pieces that remained over, seven baskets. (of whom the world was not worthy), wandering in deserts and mountains and caves, and the holes of the earth. Thou therefore, my child, be strengthened in the grace that is in Christ Jesus. And touching at Syracuse, we tarried there three days. I took quite a dislike to him in our brief interview. For we also once were foolish, disobedient, deceived, serving divers lusts and pleasures, living in malice and envy, hateful, hating one another. There would be no one to feed you. who were born, not of blood, nor of the will of the flesh, nor of the will of man, but of God. according to the gospel of the glory of the blessed God, which was committed to my trust. O Timothy, guard that which is committed unto thee, turning away from the profane babblings and oppositions of the knowledge which is falsely so called; But unto this day, whensoever Moses is read, a veil lieth upon their heart. No hares or coons. And 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. so 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. Charlotte returned to her weaving. And every one that hath this hope set on him purifieth himself, even as he is pure. and the tombs were opened; and many bodies of the saints that had fallen asleep were raised; There, in the direction of the river, Beaver was coming. So many yellow apples, the branches bowed from the weight. Soon another little bird, a chickadee, flew down from the high branches and lighted on the witch’s right hand. And the number of the armies of the horsemen was twice ten thousand times ten thousand: I heard the number of them. The days of the year were too evasive for planning. They fled shapeless before him. And when we were come to Jerusalem, the brethren received us gladly. Oh, honestly!” His bowels suffered greatly from such diet. Be 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. To him be the dominion for ever and ever. Amen. And 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. “When I say ‘salutations,’ it’s just my fancy way of saying hello or good morning. and 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. One of those new sorts then, I said. For it is better, if the will of God should so will, that ye suffer for well-doing than for evil-doing. The Jews therefore said, Behold how he loved him! No one believed him. Of 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. And 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. If the foot shall say, Because I am not the hand, I am not of the body; it is not therefore not of the body. Howbeit 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. Right through to the backbone with a Bowie knife, which I had on my hip. “But where?” asked Wilbur. “What do you see?” asked Wilbur. Boudinot and young Ridge featured themselves to be darkly Byronic figures, an image countless young men—myself included—held of themselves. So 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. And 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. And 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. The food smelled appetizing. After 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. For after all these things do the Gentiles seek; for your heavenly Father knoweth that ye have need of all these things. For the word of the cross is to them that perish foolishness; but unto us who are saved it is the power of God. And the multitudes asked him, saying, What then must we do? While 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. and they have no root in themselves, but endure for a while; then, when tribulation or persecution ariseth because of the word, straightway they stumble. And 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. And he reasoned in the synagogue every sabbath, and persuaded Jews and Greeks. The afternoon passed, and evening came. For in that he himself hath suffered being tempted, he is able to succor them that are tempted. She and I would watch television; whatever they were doing on there, until really late in the night. But desire earnestly the greater gifts. And moreover a most excellent way show I unto you. Charley’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. But if any man say unto you, This hath been offered in sacrifice, eat not, for his sake that showed it, and for conscience’ sake: The goose heard the racket and she, too, started hollering. “Run-run-run downhill, make for the woods, the woods!” she shouted to Wilbur. And 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. Our mouth is open unto you, O Corinthians, our heart is enlarged. Claire leaned back and shifted the mass of hair from her face with a raking motion of wrist and forearm. And these words appeared in their sight as idle talk; and they disbelieved them. Then the proconsul, when he saw what was done, believed, being astonished at the teaching of the Lord. Him 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. You can imagine Wilbur’s surprise when, out of the darkness, came a small voice he had never heard before. I speak by way of disparagement, as though we had been weak. Yet whereinsoever any is bold (I speak in foolishness), I am bold also. And 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; He 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. Go ye therefore unto the partings of the highways, and as many as ye shall find, bid to the marriage feast. And 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. Now I think, What more could she have said? “All right,” said Charlotte, “I’m next.” She climbed up and made another attachment, right next to the first. of sin, because they believe not on me; This is he of whom I said, After me cometh a man who is become before me: for he was before me. If 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; There was a woodpile, and I stoked the fire and motioned for Smith and the boys to come on in. One day he realized the pool seemed smaller. And he called to him a little child, and set him in the midst of them, And 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: Having 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; And many false prophets shall arise, and shall lead many astray. And they indeed have been made priests many in number, because that by death they are hindered from continuing: And in their mouth was found no lie: they are without blemish. I say unto thee, Thou shalt by no means come out thence, till thou have paid the very last mite. Wilbur’s new home was in the lower part of the barn, directly underneath the cows. Now 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. The 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. Finally, 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. Wet 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. But whereunto shall I liken this generation? It is like unto children sitting in the marketplaces, who call unto their fellows But of the rest durst no man join himself to them: howbeit the people magnified them; Can you imagine this forest without decomposers? He would turn his head slightly and blink his long eye-lashes. Now there were with us seven brethren: and the first married and deceased, and having no seed left his wife unto his brother; by the way which he dedicated for us, a new and living way, through the veil, that is to say, his flesh; For 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. He began imitating Wilbur’s voice. When 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. “Are all of you going?” asked Wilbur. Jesus answered them, I told you, and ye believe not: the works that I do in my Father’s name, these bear witness of me. Be subject therefore unto God; but resist the devil, and he will flee from you. While Wilbur ate, Lurvy fetched a hammer and some 8-penny nails and nailed the board in place. The news spread. And 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. Therefore 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, And working together with him we entreat also that ye receive not the grace of God in vain They are redwood trees. Spearfinger After a bit she spoke. He took the cover off the candy box. The next day he did not even get up off the ground where he had slept. And 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. Some 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? But 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. And 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. She stared at me hard, lips parted. If 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. “Well, I am pretty,” replied Charlotte. Through a small window, a faint gleam appeared. I played seldom and carefully and quit early, for I did not care to lose much money. And it came to pass, that he abode many days in Joppa with one Simon a tanner. Now 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. But I have this against thee, that thou didst leave thy first love. The geese gathered around to see the fun, and so did the sheep and lambs. “You children be quiet till we get the pig unloaded,” said Mrs. Arable. But you have saved me, Charlotte, and I would gladly give my life for you — I really would.” Dead leaves and black humus and pale pipe plants broke apart under their struggling feet. Smith did not have a response, and when the boys returned leading the horses, I turned my attention to the food. Oh come back! he cried and cried And 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. but whosoever shall blaspheme against the Holy Spirit hath never forgiveness, but is guilty of an eternal sin: in whom each several building, fitly framed together, groweth into a holy temple in the Lord; I'm getting sleepy. Skim 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. “Play? ” said Templeton, twirling his whiskers. But when Gallio was proconsul of Achaia, the Jews with one accord rose up against Paul and brought him before the judgment-seat, Wasseton had darted all the squirrels within a mile of the camp with his blowgun. and ye will not come to me, that ye may have life. Ye have sent unto John, and he hath borne witness unto the truth. But if a revelation be made to another sitting by, let the first keep silence. avoiding this, that any man should blame us in the matter of this bounty which is ministered by us: But when the fruit is ripe, straightway he putteth forth the sickle, because the harvest is come. But if ye believe not his writings, how shall ye believe my words? For the bishop must be blameless, as God’s steward; not self-willed, not soon angry, no brawler, no striker, not greedy of filthy lucre; The spider, however, stayed wide awake, gazing affectionately at him and making plans for his future. They knew that school would soon begin again. And 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. When she had thus said, she turned herself back, and beholdeth Jesus standing, and knew not that it was Jesus. If therefore the uncircumcision keep the ordinances of the law, shall not his uncircumcision be reckoned for circumcision? “I know what I'm doing. But one hath somewhere testified, saying, What is man, that thou art mindful of him? Or the son of man, that thou visitest him? The Son of man is come eating and drinking; and ye say, Behold, a gluttonous man, and a winebibber, a friend of publicans and sinners! Perceive ye not, that whatsoever goeth into the mouth passeth into the belly, and is cast out into the draught? “Let’s build a tree house,” suggested Avery. When he was fifty, they say, he decided to capture the people's voices in writing. When you go for a walk in the woods, what do you look at? The geese cheered. Saith the Lord, who maketh these things known from of old. As therefore the tares are gathered up and burned with fire; so shall it be in the end of the world. Twist and turn!” Jesus answered and said unto him, Verily, verily, I say unto thee, Except one be born anew, he cannot see the kingdom of God. Then spake Jesus to the multitudes and to his disciples, I 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. Every one that falleth on that stone shall be broken to pieces; but on whomsoever it shall fall, it will scatter him as dust. But Peter followed him afar off, unto the court of the high priest, and entered in, and sat with the officers, to see the end. Little 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. who shall suffer punishment, even eternal destruction from the face of the Lord and from the glory of his might, Wilbur often thought of Charlotte. And no one in the heaven, or on the earth, or under the earth, was able to open the book, or to look thereon. We’re famous for our moisture, I said. He came over and sat down. I 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; and he would not suffer that any man should carry a vessel through the temple. And ye became imitators of us, and of the Lord, having received the word in much affliction, with joy of the Holy Spirit; for 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. While 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. When the cooking was done, the squirrels looked awfully little with the hair and skin off, but they were sizzling brown and shining with grease. For he that is mighty hath done to me great things; And holy is his name. This thou knowest, that all that are in Asia turned away from me; of whom are Phygelus and Hermogenes. “Wilbur!” she called. Everybody walked toward Wilbur and Wilbur didn’t know what to do. This fungus lives on a dead tree. He knew Templeton was getting soaked, out there in the pouring rain, but even that didn’t comfort him. and she lifted up her voice with a loud cry, and said, Blessed art thou among women, and blessed is the fruit of thy womb. But now apart from the law a righteousness of God hath been manifested, being witnessed by the law and the prophets; So therefore whosoever he be of you that renounceth not all that he hath, he cannot be my disciple. I 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. And 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. So, my dad, my brother, and I followed the dog. “You asked for words and I brought them. Why should you worry about trapping food? Wilbur sighed. “Come back, children!” he cried. VIII. A Talk At Home and saw him saying unto me, Make haste, and get thee quickly out of Jerusalem; because they will not receive of thee testimony concerning me. Mr. Zuckerman took the medal from Wilbur’s neck and hung it on a nail over the pigpen, where visitors could examine it. For our citizenship is in heaven; whence also we wait for a Saviour, the Lord Jesus Christ: “Fern,” said Mr. Arable, “I know more about raising a litter of pigs than you do. And they that did eat were four thousand men, besides women and children. The days were all alike, Smith said. But in the stories, the men had always first wounded the animal with bow or gun and then let it bleed awhile to weaken. That 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. but they that are accounted worthy to attain to that world, and the resurrection from the dead, neither marry, nor are given in marriage: The winter ended at last. Because of the tender mercy of our God, Whereby the dayspring from on high shall visit us, Jesus 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. in the word of truth, in the power of God; by the armor of righteousness on the right hand and on the left, This beginning of his signs did Jesus in Cana of Galilee, and manifested his glory; and his disciples believed on him. “That crazy rat!” thought Wilbur. Asmeret has found a beautiful fungus. Charley stood and listened to the cracking of limbs and imagined the working of the massive hams and buttocks. The killers. And as many as receive you not, when ye depart from that city, shake off the dust from your feet for a testimony against them. He was like a lot of them down on the Nation; he thought becoming as white as he could would protect him. Alright, said rabbit, let's go. and 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: The woman answered and said unto him, I have no husband. Jesus saith unto her, Thou saidst well, I have no husband: And leaving the multitude, they take him with them, even as he was, in the boat. And other boats were with him. It was a splendid outfit. I want to lay them low on the ground. for he was yet in the loins of his father, when Melchizedek met him. “Let's see you do it,” said Charlotte. “I want to see you in action, to see if you are radiant.” Then she climbed the side of the crate and hid herself inside a knothole in the top board. As 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. Now when Simon saw that through the laying on of the apostles’ hands the Holy Spirit was given, he offered them money, Even so it is not the will of your Father who is in heaven, that one of these little ones should perish. My mother was a trapper before me. And no one hath ascended into heaven, but he that descended out of heaven, even the Son of man, who is in heaven. And every island fled away, and the mountains were not found. And I do all things for the gospel’s sake, that I may be a joint partaker thereof. But there were certain of the scribes sitting there, and reasoning in their hearts, But I say, Walk by the Spirit, and ye shall not fulfil the lust of the flesh. Never hurry and never worry! He 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. And they said unto him, Lord, he hath ten pounds. Wilbur breathed deeply. The husbandman that laboreth must be the first to partake of the fruits. All 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. For 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? Art thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife. And an angel of the Lord stood by them, and the glory of the Lord shone round about them: and they were sore afraid. Blessed 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. I wish I’d never laid eyes on them. See how the smaller ones swim along the side, not too close, not too deep, and not too high. And they gave heed to him, because that of long time he had amazed them with his sorceries. The 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. Wilbur was frantic. And 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. We reckon therefore that a man is justified by faith apart from the works of the law. We being Jews by nature, and not sinners of the Gentiles, Beaver had to gnaw the tree the trap was hooked to. Put on the whole armor of God, that ye may be able to stand against the wiles of the devil. “Charlotte is a spider?” asked Fern’s mother. And beginning from Moses and from all the prophets, he interpreted to them in all the scriptures the things concerning himself. The big fish looked at him from one end to the other, and said, Why do they call you Littlefish? But 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. Smith started to get his back up and then thought better of it. And he spake a parable unto those that were bidden, when he marked how they chose out the chief seats; saying unto them, He was tired from his wakeful night and from the excitement of meeting someone for the first time. No man hath seen God at any time; the only begotten Son, who is in the bosom of the Father, he hath declared him. And 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. At this hour, no people were around the pigpen, so the rat and the spider and the pig were by themselves. But Jesus said, Suffer the little children, and forbid them not, to come unto me: for to such belongeth the kingdom of heaven. Jesus 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. For 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; Even unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwelling-place; They 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. Fear not therefore: ye are of more value than many sparrows. This 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, This is a snake. And straightway the man was made whole, and took up his bed and walked. Now it was the sabbath on that day. He closed his eyes and was silent for a while. Why bother? it was said unto her, The elder shall serve the younger. He that speaketh in a tongue edifieth himself; but he that prophesieth edifieth the church. They 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? Jesus therefore said unto Peter, Put up the sword into the sheath: the cup which the Father hath given me, shall I not drink it? “Ooomp!” he grunted. And he marvelled because of their unbelief. And he went round about the villages teaching. If he were Negro that would make him an octoroon. Charlotte gave her web a twitch and moodily watched it sway. And 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. Let love be without hypocrisy. Abhor that which is evil; cleave to that which is good. So 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. This 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. I must have eaten the remains of thirty lunches. “Sure. Sure I do,” said Lurvy. If they'd hang head-down at the top of the thing and wait quietly, maybe something good would come along. Then he walked to the sink and washed his hands and dried them on the roller towel. He crept along till he reached the egg sac. And 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. What shall we say then? Shall we continue in sin, that grace may abound? Summarize the relevant sections, please. I’m not as flashy as some, but I’ll do. I 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? And for about the time of forty years as a nursing-father bare he them in the wilderness. “Oh, yes indeed,” said Wilbur. Then 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. We therefore ought to welcome such, that we may be fellow-workers for the truth. And he said unto them, Extort no more than that which is appointed you. But when Jacob heard that there was grain in Egypt, he sent forth our fathers the first time. Stopping by Woods on a Snowy Evening Carrying a bottle of milk, Fern sat down under the apple tree inside the yard. Next 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. And 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. “Who's Charlotte?” And 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. And 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. Then they built a large fire near the trail and hid in the laurels. It 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. And 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. In the camps, some of the women killed themselves. for they could not endure that which was enjoined, If even a beast touch the mountain, it shall be stoned; and 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! And 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. Honor all men. Love the brotherhood. Fear God. Honor the king. She 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. Sheep?” Martha therefore, when she heard that Jesus was coming, went and met him: but Mary still sat in the house. They jingled and crashed and thumped their way into camp and everyone in the two shelters woke up and rose fully dressed. Buckets with sour mash sticking to them, tin cans containing particles of tuna fish, greasy paper bags stuffed with rotten...” Faithful 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: Traversing the long dark upstairs halls, keeping my bearings by brushing fingertips against the plaster walls. she said. And 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. Then 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. I need new ideas for the web. Bear and everyone who had taken me in as a boy, walking away to the West. Instead, he walked solemnly back up to the house and spoke to his wife. She walked on, wobbling and uncertain, the arches of her feet shaping to the round stones of the river bottom. And 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. Wilbur trotted over to the darkest corner of his pen and threw himself down. I was daily with you in the temple teaching, and ye took me not: but this is done that the scriptures might be fulfilled. Bear 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. What wilt thou that I should do unto thee? And he said, Lord, that I may receive my sight. For 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; And Jesus said unto them, Can ye make the sons of the bride-chamber fast, while the bridegroom is with them? He 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. saying, Fear not, Paul; thou must stand before Cæsar: and lo, God hath granted thee all them that sail with thee. For the priesthood being changed, there is made of necessity a change also of the law. Absolution was outside my range of talents or responsibilities. As is the earthy, such are they also that are earthy: and as is the heavenly, such are they also that are heavenly. The log fort sitting dark and squat in the middle like a lump of black wax impressed with the seal of fate. He wrapped a tape measure around my head and said, Excellent. And Jesus went up into the mountain, and there he sat with his disciples. and 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. And I had done my best to be a warrior. For as the woman is of the man, so is the man also by the woman; but all things are of God. I was just assigning theoretical parts for the killers. When he paused, he could hear them coming. Thou wilt say then unto me, Why doth he still find fault? For who withstandeth his will? There, where rabbit and squirrel stood, Beaver arrived. Charley and I talked and Smith sat listening as if he expected to catch a word now and then. Pretty soon quite a crowd had gathered. And he charged them that they should tell no man of him. Yea, I testify again to every man that receiveth circumcision, that he is a debtor to do the whole law. The 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. And when he rose up from his prayer, he came unto the disciples, and found them sleeping for sorrow, “You’ve been very helpful,” Charlotte said. For when ye were servants of sin, ye were free in regard of righteousness. I rubbed a mixture of dried sage and salt and red pepper between my palms and let the dust fall over the plucked skins. For even as Jonah became a sign unto the Ninevites, so shall also the Son of man be to this generation. Homer bought the pig, and ever since it left our place Fern has been going to her uncle’s to be near it.” what is it, Beaver? said Rabbit. For if the word spoken through angels proved stedfast, and every transgression and disobedience received a just recompense of reward; And Pilate called together the chief priests and the rulers and the people, The whole bunch of followers smelled of armpits and ramps. The deer and bear and turkey are on the way to wherever the bison and elk already went. The owl’s face as big as his own and pale as the moon. For 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. Is there anything you need?” I wanted to run far away from the kind of fight Bear was proposing. Charley made an exhaling noise between his teeth and lips like a long string of F’s. “Ho, ho. Yet seek ye his kingdom, and these things shall be added unto you. When the evil magic of Spearfinger was finally destroyed, healing magic was released. which are a shadow of the things to come; but the body is Christ’s. Of this man’s seed hath God according to promise brought unto Israel a Saviour, Jesus; Paul, 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: And one Ananias, a devout man according to the law, well reported of by all the Jews that dwelt there, It sounded like a puppy barking. However, 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.” and 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? “Lurvy!” he called. And when they had done this, they inclosed a great multitude of fishes; and their nets were breaking; And 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. The Jews therefore said, Forty and six years was this temple in building, and wilt thou raise it up in three days? And they said, Believe on the Lord Jesus, and thou shalt be saved, thou and thy house. that 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. That 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. Even as it is written in Isaiah the prophet, Behold, I send my messenger before thy face, Who shall prepare thy way; The raw new city amounted to not much. She raised the pig on a bottle and I bought him from her when he was a month old.” And he spake unto them this parable, saying, but 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. Then 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. She knew that she couldn’t help Wilbur much longer. They 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. For who, when they heard, did provoke? nay, did not all they that came out of Egypt by Moses? For we hear of some that walk among you disorderly, that work not at all, but are busybodies. Jesus 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. Blossom, the girl he had redeemed from slavery, was among the people in the townhouse. None of the others, not even the goose, noticed that she was at work. One day the bones will be soil, too. And 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. “How about ‘Terrific, terrific, terrific’?” asked the goose. And Simon and they that were with him followed after him; Go home, Lieutenant, I said. And immediately he received his sight, and followed him, glorifying God: and all the people, when they saw it, gave praise unto God. having 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, Paul, and Silvanus, and Timothy, unto the church of the Thessalonians in God the Father and the Lord Jesus Christ: Grace to you and peace. “And don’t point!” And 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. and from among your own selves shall men arise, speaking perverse things, to draw away the disciples after them. Be subject to every ordinance of man for the Lord’s sake: whether to the king, as supreme; The 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. And 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. He therefore answered, Whether he is a sinner, I know not: one thing I know, that, whereas I was blind, now I see. Claire reached the front door, crossed the porch, walked down the lawn to the riverbank. “What makes you sound so down-hearted? Now 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. Wilbur raced to the end of his yard. and Jacob begat Joseph the husband of Mary, of whom was born Jesus, who is called Christ. And as with any job, you can become accustomed to it. Soon each was as big as a BB shot. Why was not this ointment sold for three hundred shillings, and given to the poor? And they took him, and cast him forth out of the vineyard, and killed him. And when he had left speaking, he said unto Simon, Put out into the deep, and let down your nets for a draught. thou oughtest therefore to have put my money to the bankers, and at my coming I should have received back mine own with interest. Remember ye not, that, when I was yet with you, I told you these things? Then she lifted the lid of the carton. And they come to the house of the ruler of the synagogue; and he beholdeth a tumult, and many weeping and wailing greatly. And 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. among 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:— Charlotte tore quite a section out of her web, leaving an open space in the middle. And it came to pass, that, while Apollos was at Corinth, Paul having passed through the upper country came to Ephesus, and found certain disciples: You know that. What's the trouble with your pig?” What? was it from you that the word of God went forth? or came it unto you alone? But I took my clan membership to heart. whose are the fathers, and of whom is Christ as concerning the flesh, who is over all, God blessed for ever. Amen. Put on therefore, as God’s elect, holy and beloved, a heart of compassion, kindness, lowliness, meekness, longsuffering; Verily, 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. “five hundred and fourteen of them,” she replied. Jesus saith unto him, I am the way, and the truth, and the life: no one cometh unto the Father, but by me. for not the hearers of the law are just before God, but the doers of the law shall be justified; For he was amazed, and all that were with him, at the draught of the fishes which they had taken; And this is my covenant unto them, When I shall take away their sins. It's wet and dark there. for 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. And 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. Thy kingdom come. Thy will be done, as in heaven, so on earth. And 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. Even 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. He never felt lonely when she was near. His stomach was still swollen from last night’s gorge. But he that prophesieth speaketh unto men edification, and exhortation, and consolation. And 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? But as to Israel he saith, All the day long did I spread out my hands unto a disobedient and gainsaying people. On 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.” I 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. For the law was given through Moses; grace and truth came through Jesus Christ. But 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. But that was only a dream. But she answered and saith unto him, Yea, Lord; even the dogs under the table eat of the children’s crumbs. for which things’ sake cometh the wrath of God upon the sons of disobedience: One man esteemeth one day above another: another esteemeth every day alike. Let each man be fully assured in his own mind. Woe unto you Pharisees! for ye love the chief seats in the synagogues, and the salutations in the marketplaces. Every scripture inspired of God is also profitable for teaching, for reproof, for correction, for instruction which is in righteousness: Charlotte had worries of her own, but she kept quiet about them. Several dozen fugitives from at least three generations. “It’s a label off an old shirt.” We 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. Days on horseback east to the nearest town with stage service. No one was with her when she died. Going to water. to 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. Whether 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. “Take that frog out!” ordered Fern. “How’s this?” he asked, showing the ad to Charlotte. East, west. North, south. for he looked for the city which hath the foundations, whose builder and maker is God. It 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. rejoicing in hope; patient in tribulation; continuing stedfastly in prayer; They shall hunger no more, neither thirst any more; neither shall the sun strike upon them, nor any heat: And 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. Lurvy returned with cold water and dashed it on Wilbur. The asparagus patch looked like a silver forest. And always, night and day, in the tombs and in the mountains, he was crying out, and cutting himself with stones. And as Peter was beneath in the court, there cometh one of the maids of the high priest; and he looked upon Jesus as he walked, and saith, Behold, the Lamb of God! Soldiers on horseback, wagons loaded with provisions under their canvas coverlids, Indians and their slaves following afoot behind, children walking and babies being carried. She swooped down and threw great masses of wrapping material around the fish and fought bravely to capture it.” The barn smelled good. Then another. Wherefore 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. Again, the devil taketh him unto an exceeding high mountain, and showeth him all the kingdoms of the world, and the glory of them; There 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. The children ran for the kitchen. So 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. How I hate a rat!” But 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. And there were many lepers in Israel in the time of Elisha the prophet; and none of them was cleansed, but only Naaman the Syrian. But when Silas and Timothy came down from Macedonia, Paul was constrained by the word, testifying to the Jews that Jesus was the Christ. For yourselves know how ye ought to imitate us: for we behaved not ourselves disorderly among you; “One day just like another,” he groaned. “Go to the Fair, Templeton. and Judas the son of James, and Judas Iscariot, who became a traitor; And 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: He gives his harness bells a shake “You would live longer,” said the old sheep, “if you ate less.” Since I was there to represent the Cherokee, I dressed the part. And one of the malefactors that were hanged railed on him, saying, Art not thou the Christ? save thyself and us. Next morning, Wilbur arose and stood beneath the web. And Jesus said unto him, Receive thy sight: thy faith hath made thee whole. or 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. Wolf went to where the trap lay and stepped in it. And he that sitteth on the throne said, Behold, I make all things new. And he saith, Write: for these words are faithful and true. and he cried with a great voice, as a lion roareth: and when he cried, the seven thunders uttered their voices. Do not they blaspheme the honorable name by which ye are called? It felt funny on his tongue and made him drool a bit. But 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? Men had done such things before, or at least people told stories of killing bear in close combat. seeing that we, who are many, are one bread, one body: for we all partake of the one bread. Cherokees call the chickadee “truth teller”. One fine sunny morning, after breakfast, Wilbur stood watching his precious sac. To 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. You will be okay Littlefish, so swim on, swim on. And he that was sown upon the rocky places, this is he that heareth the word, and straightway with joy receiveth it; And 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. as children of obedience, not fashioning yourselves according to your former lusts in the time of your ignorance: Unto me, who am less than the least of all saints, was this grace given, to preach unto the Gentiles the unsearchable riches of Christ; The old hag loved fog and smoke. And we know that to them that love God all things work together for good, even to them that are called according to his purpose. And as I began to speak, the Holy Spirit fell on them, even as on us at the beginning. And 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. Groaning and complaining, he pulled himself slowly to the ceiling. the sun’s light failing: and the veil of the temple was rent in the midst. Mrs. Zuckerman wasted no time. But the Lord answered and said unto her, Martha, Martha, thou art anxious and troubled about many things: That 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. “Not a particle. Teacher, 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. He said that the words on the spider's web proved that human beings must always be on the watch for the coming of wonders. But the other answered, and rebuking him said, Dost thou not even fear God, seeing thou art in the same condemnation? Tomorrow you will probably win a prize. And all that believed were together, and had all things common; Sow bugs He fixed his eyes on the ground between his feet, for it is the meeting of eyes that most identifies prey to predator. who also honored us with many honors; and when we sailed, they put on board such things as we needed. “I heard the frogs today,” said the old sheep one evening. And as ye go, preach, saying, The kingdom of heaven is at hand. He climbed the rope that hung on the wall and disappeared through a hole in the ceiling. Then he tore a word out of the paper, rolled it up, and started back to Wilbur’s pen. Do you feel all right?” The second time Wilbur woke, he heard the goose turning on her nest and chuckling to herself. There seemed to be few turkey or quail or even songbirds left in the woods. When 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. The 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. He 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. Zuckerman supplies you with three big meals a day. I’m not sure Wilbur’s action is exactly radiant, but it’s interesting.” But him that is weak in faith receive ye, yet not for decision of scruples. In 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. For there stood by me this night an angel of the God whose I am, whom also I serve, “What a night! he repeated, hoarsely. Then 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? Suddenly he had an idea—he thought of the egg sac and the five hundred and fourteen little spiders that would hatch in the spring. “How should I know? said Templeton. and 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. “Never hurry and never worry!” For 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: who 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. Just the oaks held out against the cold with a few yellow-brown leaves left rattling in the wind. Mr. Arable dashed to the driver's seat and pulled on the emergency brake. And the child grew, and waxed strong, filled with wisdom: and the grace of God was upon him. I know that ye are Abraham’s seed, yet ye seek to kill me, because my word hath not free course in you. They 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. Forget not to show love unto strangers: for thereby some have entertained angels unawares. and 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. Go ye up unto the feast: I go not up unto this feast; because my time is not yet fulfilled. for a great door and effectual is opened unto me, and there are many adversaries. Trash takes a long time to decompose. Verily I say unto you, This generation shall not pass away, until all these things be accomplished. They then that received his word were baptized: and there were added unto them in that day about three thousand souls. Is it true they are going to kill me when the cold weather comes?” And 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. This is what they do, said Wolf. “Eggs?” Crockett was philosophical on the matter. I had hardly looped Waverley’s reins around the hitching post when she came rushing down the front steps and fell into my arms. and entered into the house of Zacharias and saluted Elisabeth. She grew a forefinger like a spear point and poked everyone she met to the heart, men and women and children. They never let them disappear. And they say unto me, Thou must prophesy again over many peoples and nations and tongues and kings. XV: The Crickets The 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. Wilbur and Charlotte were glad to be rid of him for a while. Wherefore also I was hindered these many times from coming to you: “Of course you don’t,” said Charlotte in a comforting voice. “I haven’t the slightest interest in fairs.” which is not another gospel: only there are some that trouble you, and would pervert the gospel of Christ. And when his disciples heard thereof, they came and took up his corpse, and laid it in a tomb. We poured another drink and sipped without further comment, neither of us truly believing the generous interpretation of the other. And this was done thrice: and all were drawn up again into heaven. “Did you know that Uncle Homer's goslings had hatched?” asked Fern. But these had gone before, and were waiting for us at Troas. A career. He could not even see the far bank, just a ribbon of dark water and the mossy rocks rising from it. who is the image of the invisible God, the firstborn of all creation; I will therefore chastise him, and release him. While Fern was in school, Wilbur was shut up inside his yard. Now 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. Verily, 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. “What do you mean, less than nothing?” replied Wilbur. And 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, And when they were come unto a place called Golgotha, that is to say, The place of a skull, whereunto he called you through our gospel, to the obtaining of the glory of our Lord Jesus Christ. And contrary to the devout belief of his Yankee people, money was not the engine that wheeled the stars across the night sky. And 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. And having said these things unto them, he abode still in Galilee. He was banned from entering the stockade until the primary departure. When I'm indoors, there's no place to go but out in the yard.” But 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. And here men that die receive tithes; but there one, of whom it is witnessed that he liveth. Fern had not arrived for her usual visit. “Egg laying. But 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: “But I cheat a little. All you could do was try to go on living as a form of vengeance, to keep your memory alive as long as possible. They were like everyone else; all they truly knew was locked in the body. and, A stone of stumbling, and a rock of offence; for they stumble at the word, being disobedient: whereunto also they were appointed. Oh yes you can! said a voice For the death that he died, he died unto sin once: but the life that he liveth, he liveth unto God. I don’t expect we’re going to have any trouble here today, I said. Wilbur admired the way Charlotte managed. and for fear of him the watchers did quake, and became as dead men. The news of Wilbur’s escape spread rapidly among the animals on the place. He squatted under the canopy of rhododendron and felt that his insides were being twisted like a dirty dishrag. seeing that ye seek a proof of Christ that speaketh in me; who to you-ward is not weak, but is powerful in you: Verily I say unto you, All their sins shall be forgiven unto the sons of men, and their blasphemies wherewith soever they shall blaspheme: Of 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. Nevertheless, he sold them liquor in any quantity they desired and could afford, from the demijohn to the noggin. Light 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. For the Sadducees say that there is no resurrection, neither angel, nor spirit; but the Pharisees confess both. And he said unto him, Lord, with thee I am ready to go both to prison and to death. Behold 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? neither went I up to Jerusalem to them that were apostles before me: but I went away into Arabia; and again I returned unto Damascus. Colonel Haden is fond of referring to the people hiding in these mountains as fugitive warriors. And the men that journeyed with him stood speechless, hearing the voice, but beholding no man. Talking with Templeton was not the most interesting occupation in the world but it was better than nothing. He looked around until he saw a red fish emerge from under a rock. And he led them out until they were over against Bethany: and he lifted up his hands, and blessed them. Then were there brought unto him little children, that he should lay his hands on them, and pray: and the disciples rebuked them. But as soon as she got home in the afternoon, she would take him out and he would follow her around the place. The days grow warm and soft. Heal the sick, raise the dead, cleanse the lepers, cast out demons: freely ye received, freely give. “You'll worry all right when next winter comes,” said the sheep. But Elymas the sorcerer (for so is his name by interpretation) withstood them, seeking to turn aside the proconsul from the faith. From 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. And Mary said, Behold, the handmaid of the Lord; be it unto me according to thy word. And the angel departed from her. I have seen and met many different fish along the way and now I must swim back because I am too big for this pond. Philadelphia fell forward and lay dying, half propped up by the handle and grabbing desperately at the ground. Charley’s grandson had lived five years. that 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. It 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. For a while there was no sound. whereas angels, though greater in might and power, bring not a railing judgment against them before the Lord. And let these also first be proved; then let them serve as deacons, if they be blameless. The cocker spaniel sprang for Wilbur’s hind leg. Some would say that fact is all that matters. I rode back to Wayah, through the gloomy gorge, with the feeling that the whole world was splitting apart. Asmeret takes a handful of soil. O 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! At times. You were once just a seed, now you are a big apple tree. And Jesus answering said, Were not the ten cleansed? but where are the nine? casting 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; promising 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. and the law is not of faith; but, He that doeth them shall live in them. To grant unto us that we being delivered out of the hand of our enemies Should serve him without fear, And 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. If any man thinketh himself to be religious, while he bridleth not his tongue but deceiveth his heart, this man’s religion is vain. Wilbur stood in the sun feeling lonely and bored. Verily 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. Yet a little while, and the world beholdeth me no more; but ye behold me: because I live, ye shall live also. Wherefore, sirs, be of good cheer: for I believe God, that it shall be even so as it hath been spoken unto me. In the next pool of water he saw an odd looking fish. ‘Crunchy’ would be a good word to write in your web.” “Run outdoors, both of you! Smith lay behind a blown-down hickory trunk glassing the camp. This was the song she sang. This formed the upright part of the letter T. “Throw some on me!” cried Avery. “I’m hot, too.” Who shall lay anything to the charge of God’s elect? It is God that justifieth; Let's not talk any more for a while, Charlotte. Meat to last into the next moon. As she dropped, a tiny silken thread unwound from her rear end. The good man out of his good treasure bringeth forth good things: and the evil man out of his evil treasure bringeth forth evil things. Wilbur jumped to his feet. “At-at—at, at the risk of repeating myself,” said the goose, “I suggest that you come on out. And 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. Now 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. We'll all see them. and 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. To give knowledge of salvation unto his people In the remission of their sins, not that we are sufficient of ourselves, to account anything as from ourselves; but our sufficiency is from God; and that we may be delivered from unreasonable and evil men; for all have not faith. She washed her face, brushed her teeth, and began choosing clothes to wear. They 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. She was growing up, and was careful to avoid childish things, like sitting on a milk stool near a pigpen. Then go, I said. Sometimes disaster happens for a reason. Sometimes it says: Follow a different path. Simon the Cananæan, and Judas Iscariot, who also betrayed him. She put on green shorts and a blue and white striped tank top. And I will pray the Father, and he shall give you another Comforter, that he may be with you for ever, The Fair Grounds will soon be empty and deserted.” And his mercy is unto generations and generations On them that fear him. I write not these things to shame you, but to admonish you as my beloved children. Those days, it was hard to be noted as a character in Washington, what with Crockett strutting and flashing about town being the wild frontiersman. holding the mystery of the faith in a pure conscience. And Barnabas and Saul returned from Jerusalem, when they had fulfilled their ministration, taking with them John whose surname was Mark. And the God of peace shall bruise Satan under your feet shortly. The grace of our Lord Jesus Christ be with you. “No,” replied Wilbur. Templeton 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.” Run all over! He's going to be a hard pig to beat, though, Wilbur, on account of his size and weight. “Some pig. muttered Lurvy in a low voice. If any man willeth to do his will, he shall know of the teaching, whether it is of God, or whether I speak from myself. A 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. She wiped her mouth and ran upstairs. In 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; He would run after it and then run back, barking all along. Salute Andronicus and Junias, my kinsmen, and my fellow-prisoners, who are of note among the apostles, who also have been in Christ before me. But let him that is taught in the word communicate unto him that teacheth in all good things. “Cheese it, cheese it, cheese it!” When 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. Bear’s people were too small and remote to be of interest to America. naked, and ye clothed me; I was sick, and ye visited me; I was in prison, and ye came unto me. As Stephen fought to hold it, some townspeople approached. “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.” He did not know what would happen to his family. But it is easier for heaven and earth to pass away, than for one tittle of the law to fall. but we preach Christ crucified, unto Jews a stumblingblock, and unto Gentiles foolishness; Asmeret even finds evidence of animals decomposing into soil. but emptied himself, taking the form of a servant, being made in the likeness of men; Stand therefore, having girded your loins with truth, and having put on the breastplate of righteousness, Mrs. Arable stood quietly and watched them go. But 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: Which of these three, thinkest thou, proved neighbor unto him that fell among the robbers? He 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. Truly the signs of an apostle were wrought among you in all patience, by signs and wonders and mighty works. Now 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? It wheeled and ran uphill at amazing speed, crashing through a stand of laurel and disappearing into the fog. It 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. He 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. having eyes full of adultery, and that cannot cease from sin; enticing unstedfast souls; having a heart exercised in covetousness; children of cursing; They asked him, Who is the man that said unto thee, Take up thy bed, and walk? “There’s a pig in the next pen and he’s enormous. Paul said to the centurion and to the soldiers, Except these abide in the ship, ye cannot be saved. But now hath Christ been raised from the dead, the firstfruits of them that are asleep. And a certain centurion’s servant, who was dear unto him, was sick and at the point of death. Howbeit Festus answered, that Paul was kept in charge at Cæsarea, and that he himself was about to depart thither shortly. Children wandered about, aimless and blank. The children felt refreshed after their nap. But when you reach the point that you no longer trust the world, you live in never-ending fear. The tomatoes are as big as softballs and some are smaller than walnuts. Then did they spit in his face and buffet him: and some smote him with the palms of their hands, Congress was in town, so Washington City was a busy place. And when he saw that it pleased the Jews, he proceeded to seize Peter also. And those were the days of unleavened bread. If 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. Mrs. Arable got out of the truck. “Summer is over and gone,” they sang. The 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. “Does he really?” said Mrs. Arable, rather vaguely. I handle stuff like this all the time.” And when he had thus spoken, he cried with a loud voice, Lazarus, come forth. And 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, Then he walked to the door and looked out. “Anywhere you like, anywhere you like,” said the goose. And 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: I stood in the doorway and watched as she undressed in the moonlight. And me saying nothing. The first Woe is past: behold, there come yet two Woes hereafter. Now 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. Doth not even nature itself teach you, that, if a man have long hair, it is a dishonor to him? For we know him that said, Vengeance belongeth unto me, I will recompense. And again, The Lord shall judge his people. And I remembered the word of the Lord, how he said, John indeed baptized with water; but ye shall be baptized in the Holy Spirit. And 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. I must needs glory, though it is not expedient; but I will come to visions and revelations of the Lord. and the grace of our Lord abounded exceedingly with faith and love which is in Christ Jesus. If 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. And John answered and said, Master, we saw one casting out demons in thy name; and we forbade him, because he followeth not with us. And 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. The 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? As I sware in my wrath, They shall not enter into my rest. And when he had said this, one of the officers standing by struck Jesus with his hand, saying, Answerest thou the high priest so? When 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. Brethren, 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. And 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. “It’s a perfectly beautiful egg sac,” said Wilbur, feeling as happy as though he had constructed it himself. that the man of God may be complete, furnished completely unto every good work. We are aeronauts and we are going out into the world to make webs for ourselves.” And 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; The smell from the toilet pits brought tears to my eyes. And 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. For 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. Husbands, love your wives, and be not bitter against them. He backed up to it. Jesus said unto them, Is it not for this cause that ye err, that ye know not the scriptures, nor the power of God? He wanted a friend—someone who would play with him. The store was about three miles from where we lived. Templeton poked his head up through the straw. but, as it is written, They shall see, to whom no tidings of him came, And they who have not heard shall understand. “What’s miraculous about a spider's web?” said Mrs. Arable. Under 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. and above it cherubim of glory overshadowing the mercy-seat; of which things we cannot now speak severally. But 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, For 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. and 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. and 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. For the love of Christ constraineth us; because we thus judge, that one died for all, therefore all died; Wendy went back into the house and put on her snowsuit. “A balloonist,” said Charlotte. Furthermore, I said that if I was to die I didn’t want to go under the ground as a hireling. Behold, 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. Again on the morrow John was standing, and two of his disciples; Eight of them. And he charged them, saying, Take heed, beware of the leaven of the Pharisees and the leaven of Herod. For herein is the saying true, One soweth, and another reapeth. “You don’t think I need worry about her?” Jesus 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. Judge ye in yourselves: is it seemly that a woman pray unto God unveiled? He put his front feet up on the top board and gazed around. They were farmers, I said. But that is not a skill I ever acquired. Then, holding the rope, you stood at the edge and looked down, and were scared and dizzy. Babies crying in piercing tones, elders coughing with a deep rattle in the lung. he 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. And when the hour was come, he sat down, and the apostles with him. But when day was now breaking, Jesus stood on the beach: yet the disciples knew not that it was Jesus. And his sisters, are they not all with us? Whence then hath this man all these things? He 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. And he arose, and departed to his house. And he asked them, What question ye with them? And when the disciples heard it, they were astonished exceedingly, saying, Who then can be saved? And my God shall supply every need of yours according to his riches in glory in Christ Jesus. But ye know the proof of him, that, as a child serveth a father, so he served with me in furtherance of the gospel. I know that after my departing grievous wolves shall enter in among you, not sparing the flock; Fare thee well, Charlotte, you old schemer! Another 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. A column of four soldiers, if just four could be called a column. He 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. For 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. “Take a deep breath!” said Charlotte, smiling. Was not Abraham our father justified by works, in that he offered up Isaac his son upon the altar? “Why doesn’t Fern come?” The truck bearing this extraordinary animal is now approaching the infield. Of the tribe of Judah were sealed twelve thousand; Of the tribe of Reuben twelve thousand; Of the tribe of Gad twelve thousand; Trees? “Don’t be ridiculous,” said Charlotte. There shall be two women grinding together; the one shall be taken, and the other shall be left. Woe unto you! for ye build the tombs of the prophets, and your fathers killed them. For no word from God shall be void of power. saying, 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. Now he that betrayed him gave them a sign, saying, Whomsoever I shall kiss, that is he: take him. The Lord be with thy spirit. Grace be with you. He 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. Is it very far down there? Behold, 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. And now one of the judges climbed into the ring with the prizes. Then flying along on the train for two days at dizzying speeds occasionally approaching twenty miles an hour to the state capital. I am resolved what to do, that, when I am put out of the stewardship, they may receive me into their houses. And 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. Now in the sixth month the angel Gabriel was sent from God unto a city of Galilee, named Nazareth, Axe said, You’re taking the wrong direction. “That I did, that I did,” said the goose. And 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. She sat without moving a muscle, and listened to the conversation of the people. The Indian trackers would certainly not kill women and children, and perhaps the soldiers would spare them as well. “Good night, Wilbur!” And inasmuch as it is appointed unto men once to die, and after this cometh judgment; And the men marvelled, saying, What manner of man is this, that even the winds and the sea obey him? Every cabin here, you walk in and shut the door, it’s like you’ve shut your eyes. Take 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. There was a dull explosion as the egg broke, and then a horrible smell. And 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. And ye shall be hated of all men for my name’s sake: but he that endureth to the end, the same shall be saved. I 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. The rat poked his head out from under the trough. For David ascended not into the heavens: but he saith himself, The Lord said unto my Lord, Sit thou on my right hand, But this I say, He that soweth sparingly shall reap also sparingly; and he that soweth bountifully shall reap also bountifully. Littlefish thought of what his mother had said, and although he was scared, he decided to swim on. And when he would have put him to death, he feared the multitude, because they counted him as a prophet. But 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.) In Wayah, Bear didn’t think he and his people could turn white no matter how hard they tried. He saw many different fish of all shapes, sizes, and colors. And one out of the multitude said unto him, Teacher, bid my brother divide the inheritance with me. The young lieutenant and three enlisted men, boys from Ireland and Philadelphia and Charleston. He had already sold Wilbur’s ten brothers and sisters. And he, casting away his garment, sprang up, and came to Jesus. He is crazy, the people jeered. A little girl is one thing, a little runty pig is another.” Look white, dress white, act white, be white. hearing of thy love, and of the faith which thou hast toward the Lord Jesus, and toward all the saints; And 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. And the chief captain took him by the hand, and going aside asked him privately, What is it that thou hast to tell me? And 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. By 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. And when the south wind blew softly, supposing that they had obtained their purpose, they weighed anchor and sailed along Crete, close in shore. from 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. And the patriarchs, moved with jealousy against Joseph, sold him into Egypt: and God was with him, They feared his signs were evil. But there were some that had indignation among themselves, saying, To what purpose hath this waste of the ointment been made? That's what I like.” “Charlotte,” said Wilbur dreamily, “are you really going to have five hundred and fourteen children?” These organisms are called decomposers. “Well,” said her mother, “one of the pigs is a runt. And Jesus answered unto him, It is written, Man shall not live by bread alone. But 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. let him that is on the housetop not go down to take out the things that are in his house: But Felix, having more exact knowledge concerning the Way, deferred them, saying, When Lysias the chief captain shall come down, I will determine your matter. Then 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. Two other Indians went and propped their muskets against a rock and walked into the forest and did not return. “Charlotte,” he said, after a while, “do you really think Zuckerman will let me live and not kill me when the cold weather comes? not rendering evil for evil, or reviling for reviling; but contrariwise blessing; for hereunto were ye called, that ye should inherit a blessing. “She knows Henry Fussy,” said Mrs. Arable brightly. I am not come to call the righteous but sinners to repentance. But Mary kept all these sayings, pondering them in her heart. And they that passed by railed on him, wagging their heads, and Annas the high priest was there, and Caiaphas, and John, and Alexander, and as many as were of the kindred of the high priest. Lurvy 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. Now in these days there came down prophets from Jerusalem unto Antioch. But 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. For 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: For neither is circumcision anything, nor uncircumcision, but a new creature. They said therefore unto him, Who art thou? that we may give an answer to them that sent us. What sayest thou of thyself? Neither 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. But unto the married I give charge, yea not I, but the Lord, That the wife depart not from her husband Wilbur was modest; fame did not spoil him. Why doth this man thus speak? he blasphemeth: who can forgive sins but one, even God? “Charlotte can,” replied Fern. The cool and kindly breath of evening entered through doors and windows. It was good to be home again. And he stretched forth his hand, and touched him, saying, I will; be thou made clean. And straightway his leprosy was cleansed. (Now Jesus was not yet come into the village, but was still in the place where Martha met him.) And 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, He 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. Blessed 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. For so is the will of God, that by well-doing ye should put to silence the ignorance of foolish men: He was a short man but broad at the shoulders, stout through the barrel of his body, round-headed and big-handed. And 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. And they that were sent went away, and found even as he had said unto them. And 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. For John came neither eating nor drinking, and they say, He hath a demon. And as many as shall walk by this rule, peace be upon them, and mercy, and upon the Israel of God. “I don’t understand it. Two spermaceti candles burned in pewter holders. For if ye love them that love you, what reward have ye? do not even the publicans the same? Therefore I endure all things for the elect’s sake, that they also may obtain the salvation which is in Christ Jesus with eternal glory. And they all said, Art thou then the Son of God? And he said unto them, Ye say that I am. And he saith unto them, My soul is exceeding sorrowful even unto death: abide ye here, and watch. which 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; At my first defence no one took my part, but all forsook me: may it not be laid to their account. It’s amazing how children change from year to year. And the chief captain came and said unto him, Tell me, art thou a Roman? And he said, Yea. and 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. For consider him that hath endured such gainsaying of sinners against himself, that ye wax not weary, fainting in your souls. who, when he was in Galilee, followed him, and ministered unto him; and many other women that came up with him unto Jerusalem. But when thou doest alms, let not thy left hand know what thy right hand doeth: Love 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. We 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. I’ll just say that I walked a long way and finally tracked Lichen’s bunch to their cave. For much of his life, Sequoyah was nobody famous. And 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, I have nothing at all on my mind, but I've too many things under my behind. “That’s enough!” cried Templeton. Pilate therefore went out unto them, and saith, What accusation bring ye against this man? He 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. “It says ‘Humble,’ ” replied the rat. and 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. And Jesus answered and said unto them, Are ye come out, as against a robber, with swords and staves to seize me? saying, Prophesy unto us, thou Christ: who is he that struck thee? And 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. I 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. And Agrippa said unto Paul, With but little persuasion thou wouldest fain make me a Christian. An 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. And 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. Ye are the light of the world. A city set on a hill cannot be hid. saying, 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. If we say that we have fellowship with him and walk in the darkness, we lie, and do not the truth: And 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. Salute Tryphæna and Tryphosa, who labor in the Lord. Salute Persis the beloved, who labored much in the Lord. Now 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. If it be possible, as much as in you lieth, be at peace with all men. Miles 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. As 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. But first must he suffer many things and be rejected of this generation. Let us walk becomingly, as in the day; not in revelling and drunkenness, not in chambering and wantonness, not in strife and jealousy. But 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. “Certainly. “Look at Charlotte's web! and 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. To him the porter openeth; and the sheep hear his voice: and he calleth his own sheep by name, and leadeth them out. And when they had sung a hymn, they went out unto the mount of Olives. If therefore ye have not been faithful in the unrighteous mammon, who will commit to your trust the true riches? He 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. His wife went to the woodshed. “I’m awfully sorry to hear that you're feeling poorly, Charlotte,” he said. and 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? He 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. And 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. and as they were affrighted and bowed down their faces to the earth, they said unto them, Why seek ye the living among the dead? Avery often brought a trout home in his pocket, warm and stiff and ready to be fried for supper. There 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. And he awoke, and rebuked the wind, and said unto the sea, Peace, be still. And the wind ceased, and there was a great calm. His back itched, so he leaned against the fence and rubbed against the boards. “This is getting to be quite a meeting,” said Charlotte. She was very quiet. After 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. “The last time I swang in this swing, I almost crashed into a barn swallow,” he yelled. Now after some years I came to bring alms to my nation, and offerings: And 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. “Well, they've got to grow up some time,” said Mr. Arable. Lieutenant Smith and another officer huddled together and there was a long period of talk between them, and then they seemed to argue. In holiness and righteousness before him all our days. And Joseph her husband, being a righteous man, and not willing to make her a public example, was minded to put her away privily. And this is the witness of John, when the Jews sent unto him from Jerusalem priests and Levites to ask him, Who art thou? Dare any of you, having a matter against his neighbor, go to law before the unrighteous, and not before the saints? And he said unto them, This kind can come out by nothing, save by prayer. And 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. So from that day forth they took counsel that they might put him to death. For 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. And 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. The 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. She hoped Fern would go out and play with other children, instead of heading for the Zuckermans’ barn to sit and watch animals. “Well,” said one of the lambs, “this whole business is all well and good for Charlotte, but what about the rest of us? With the flat of his sword, he hoisted it into the air and flung it into the woods. Mrs. Zuckerman ran to the phone and called the Arables. After that, I quit worrying and let desire rule. Wherefore, 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. so that my bonds became manifest in Christ throughout the whole prætorian guard, and to all the rest; Bear had guessed at Lichen’s response and had suggested that at some point I might need to tell the tale of U’tlunta. who appeared in glory, and spake of his decease which he was about to accomplish at Jerusalem. Erastus remained at Corinth: but Trophimus I left at Miletus sick. He 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. Well, the story just got the more unbelievable the farther I proceeded. He needs to be gutted, and I had about half a mind to do it. And 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: He 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; Without are the dogs, and the sorcerers, and the fornicators, and the murderers, and the idolaters, and every one that loveth and maketh a lie. “Now I called this meeting in order to get suggestions. His disciples remembered that it was written, Zeal for thy house shall eat me up. Wives, be in subjection unto your own husbands, as unto the Lord. Blessed 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. Fern loved Wilbur more than anything. And 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. The pig, although tiny, had a good appetite and caught on quickly. But God commendeth his own love toward us, in that, while we were yet sinners, Christ died for us. “And now, Fern, it’s time to get ready for Sunday School. And others, trying him, sought of him a sign from heaven. And he made haste, and came down, and received him joyfully. The sheds and buildings were empty and forlorn. And he came out, and went, as his custom was, unto the mount of Olives; and the disciples also followed him. It began raining hard, straight down, as if the air had turned to water. Verily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall in no wise enter therein. He 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. the fifth, sardonyx; the sixth, sardius; the seventh, chrysolite; the eighth, beryl; the ninth, topaz; the tenth, chrysoprase; the eleventh, jacinth; the twelfth, amethyst. The cows hated them. While he was yet speaking to the multitudes, behold, his mother and his brethren stood without, seeking to speak to him. I 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. the son of Maath, the son of Mattathias, the son of Semein, the son of Josech, the son of Joda, I 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. Has it ever occurred to you that I’m sick of running errands and doing favors? On the Nation, some of the people had decided that becoming as much like the whites as possible was the way. lest there be any fornicator, or profane person, as Esau, who for one mess of meat sold his own birthright. And John also was baptizing in Ænon near to Salim, because there was much water there: and they came, and were baptized. So 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. and he hath seen a man named Ananias coming in, and laying his hands on him, that he might receive his sight. And 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. These things also command, that they may be without reproach. who 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. But seek ye first his kingdom, and his righteousness; and all these things shall be added unto you. quenched 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. “Sing me that song again, about the dung and the dark,” he begged. giving no occasion of stumbling in anything, that our ministration be not blamed; “Coxa, trochanter, femur, patella, tibia, metatarsus, and tarsus.” And when the season of the fruits drew near, he sent his servants to the husbandmen, to receive his fruits. And 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. “All ready, boys!” cried Mr. Zuckerman. these 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. The next morning after he awoke, he sat motionless a long while trueing up his mind. “I think ‘terrific’ might impress Zuckerman.” that 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. And it came to pass, when Jesus had finished these words, the multitudes were astonished at his teaching: and Judas Iscariot, who also betrayed him. And he cometh into a house. And he answered and said unto them, I also will ask you a question; and tell me: One 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. This seemed like the end of the world, to be deserted by Charlotte's children. For 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, Then was brought unto him one possessed with a demon, blind and dumb: and he healed him, insomuch that the dumb man spake and saw. And blessed is he, whosoever shall find no occasion of stumbling in me. in whom we have our redemption through his blood, the forgiveness of our trespasses, according to the riches of his grace, Jesus answered and said unto him, Art thou the teacher of Israel, and understandest not these things? Blessed are the meek: for they shall inherit the earth. Till I make thine enemies the footstool of thy feet. Now 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; and he is the propitiation for our sins; and not for ours only, but also for the whole world. Don't spend it all the first few minutes. Now there was afar off from them a herd of many swine feeding. There would be no regaining what was lost. You go ahead and finish fixing your web and I'll just lie here and watch you. She said, Many are. And some of them that stood there, when they heard it, said, This man calleth Elijah. There are all kinds of peppers in our garden. Though Ross and Ridge shared the same goal, the survival of the Nation, they hated each other more than Calhoun and Jackson did. Mrs. Arable put a pitcher of cream on the table. I was out to dinners and dances at least five nights a week. And 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: Verily 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. and they took counsel together that they might take Jesus by subtlety, and kill him. But 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. Now the apostles and the brethren that were in Judæa heard that the Gentiles also had received the word of God. Bear said, We’ll start tracking Charley from here. On the morrow he was minded to go forth into Galilee, and he findeth Philip: and Jesus saith unto him, Follow me. The sheep soon got to know her and trust her. Charley squatted, and his knees made a crackling sound like dropping an armload of firewood. “Good-bye, summer, good-bye, good-bye!” Every one that doeth sin doeth also lawlessness; and sin is lawlessness. Then shall the kingdom of heaven be likened unto ten virgins, who took their lamps, and went forth to meet the bridegroom. Here is the mind that hath wisdom. The seven heads are seven mountains, on which the woman sitteth: And 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. And 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. Everything had fallen away from him. The Supreme Court rendered a decision siding with the Indians, and Jackson said, Now let them enforce it. And he took him aside from the multitude privately, and put his fingers into his ears, and he spat, and touched his tongue; They began to be sorrowful, and to say unto him one by one, Is it I? A pile of chestnuts lay roasting in the outer ashes. Not that we have lordship over your faith, but are helpers of your joy: for in faith ye stand fast. And 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. Can’t you see the pig is all right?” For sin shall not have dominion over you: for ye are not under law, but under grace. Drops of rain struck his face. And the third poured out his bowl into the rivers and the fountains of the waters; and it became blood. but I say unto you, Resist not him that is evil: but whosoever smiteth thee on thy right cheek, turn to him the other also. I 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. And he spake also this parable unto certain who trusted in themselves that they were righteous, and set all others at nought: The colonel asked for our help, I said. All through that unsettled weather, I rode with Lieutenant Smith and his soldiers, scouring the coves for fugitives. In like manner, that women adorn themselves in modest apparel, with shamefastness and sobriety; not with braided hair, and gold or pearls or costly raiment; This is now the third time that Jesus was manifested to the disciples, after that he was risen from the dead. For there is a disannulling of a foregoing commandment because of its weakness and unprofitableness Stephen was inclined to defer to his wisdom. “I don’t see why you say a web is a miracle - it’s just a web.” And about that time there arose no small stir concerning the Way. For 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. Upon 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. Then you must also be a Littlefish, replied Littlefish. and all the brethren that are with me, unto the churches of Galatia: Much less a family, three generations extending from Charley down to members not yet weaned and still wavery on their feet. Charley said, I’m abiding by the old lines. Smith rode half asleep with his reins loose and his pipestem clamped between his teeth. But when he was well-nigh forty years old, it came into his heart to visit his brethren the children of Israel. Might have been. The first time he woke, he heard Templeton gnawing a hole in the grain bin. And 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, But woe unto them that are with child and to them that give suck in those days! Hear then ye the parable of the sower. And 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. But he that endureth to the end, the same shall be saved. And I have seen, and have borne witness that this is the Son of God. “Anything wrong with the pig?” As a result of overeating, Templeton grew bigger and fatter than any rat you ever saw. He was gigantic. And what thanks do I ever get for these services, I would like to know? Up it looked as the stone fell from above. I 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. Wilbur had been feeling dizzier and dizzier through this long, complimentary speech. The serpent went mad with the oil fumes. We intend for you to help us bring in the runners, the colonel said. A 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. And 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. And in his name shall the Gentiles hope. Some of Wilbur’s friends in the barn worried for fear all this attention would go to his head and make him stuck up. Wilbur cried himself to sleep. “I shall begin by calling the roll. And Peter went down to the men, and said, Behold, I am he whom ye seek: what is the cause wherefore ye are come? Strive to enter in by the narrow door: for many, I say unto you, shall seek to enter in, and shall not be able. Gives me a chance to think.” the son of Cainan, the son of Arphaxad, the son of Shem, the son of Noah, the son of Lamech, Zuckerman 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. but 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: And he was with them going in and going out at Jerusalem, And 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. And I wondered, but did not ask, how the size of my head might be worthy of such a superlative. He went into the living room and sat down, and Mrs. Zuckerman followed. saying 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. And there he stayed until spring with the nicest, kindest tree. And these things will they do, because they have not known the Father, nor me. Salvation from our enemies, and from the hand of all that hate us; “I’m versatile.” And the armies which are in heaven followed him upon white horses, clothed in fine linen, white and pure. I can’t stand going to the Fair without you. communicating to the necessities of the saints; given to hospitality. My true friend!” The 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. The boy watered the seed and kept the weeds away. Wilbur went over backwards, writhing and twisting as he went. And there went forth a rumor concerning him into every place of the region round about. This is what they do, he said. accounting the reproach of Christ greater riches than the treasures of Egypt: for he looked unto the recompense of reward. Everyone was tired and happy. Everyone was delighted. who ought to have been here before thee, and to make accusation, if they had aught against me. How 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. Cretans and Arabians, we hear them speaking in our tongues the mighty works of God. And I saw no temple therein: for the Lord God the Almighty, and the Lamb, are the temple thereof. Stephen wanted to light it aflame, but Charlie held him back. “Well, I don’t really know yet,” said Mr. Zuckerman. In the words of the spider's web, ladies and gentlemen, this is some pig.” “Come pig!” On 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. And 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; Woe unto you, ye that are full now! for ye shall hunger. Woe unto you, ye that laugh now! for ye shall mourn and weep. Smith went and looked in the shelters for weapons and found none. And he said unto them, It is one of the twelve, he that dippeth with me in the dish. That's the reason the wolf walks around alone. Now them that are such we command and exhort in the Lord Jesus Christ, that with quietness they work, and eat their own bread. Whether then it be I or they, so we preach, and so ye believed. When it was completed, she felt hungry. And Peter opened his mouth, and said, Of a truth I perceive that God is no respecter of persons: Whose adorning let it not be the outward adorning of braiding the hair, and of wearing jewels of gold, or of putting on apparel; And Pilate asked him, saying, Art thou the King of the Jews? And he answered him and said, Thou sayest. Well then of course they all started screeching real loud like they do, and I was relieved to see my friend Michael standing there. He 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. And 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. “It’s the pig that’s unusual. And he touched her hand, and the fever left her; and she arose, and ministered unto him. “It's tremenjus.” The people were coming. And to this agree the words of the prophets; as it is written, “And don’t cross the race track when the horses are coming!” cried Mrs. Zuckerman. Does anybody here know how to spell ‘terrific’?’’ Goodbye. Even as David also pronounceth blessing upon the man, unto whom God reckoneth righteousness apart from works, For ye died, and your life is hid with Christ in God. “The Fair only comes once a year.” And Peter said, Lord, speakest thou this parable unto us, or even unto all? and 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. Its legs were grey and tan. A warm draft of rising air blew softly through the barn cellar. I went on and walked into camp and got between the people and their guns. let 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, Wherefore watch ye, remembering that by the space of three years I ceased not to admonish every one night and day with tears. Consider what I say; for the Lord shall give thee understanding in all things. “Wilbur’s out,” they said. I’m not going. We can deal with that when we get there. and brought the ass, and the colt, and put on them their garments; and he sat thereon. They wanted to live and so they climbed. For whom the Lord loveth he chasteneth, And scourgeth every son whom he receiveth. For 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. Again 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. For 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. for as yet it was fallen upon none of them: only they had been baptized into the name of the Lord Jesus. As many as I love, I reprove and chasten: be zealous therefore, and repent. Spearfinger forced the people to band together and find a way to kill her. Yes. And he came in unto her, and said, Hail, thou that art highly favored, the Lord is with thee. And he said, How can I, except some one shall guide me? And he besought Philip to come up and sit with him. Perry 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. saying, Surely blessing I will bless thee, and multiplying I will multiply thee. I had many things to write unto thee, but I am unwilling to write them to thee with ink and pen: And Jesus said unto him, Why callest thou me good? none is good, save one, even God. He was sad because his new friend was so bloodthirsty. it 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; We must advertise Wilbur’s noble qualities, not his tastiness. And hath raised up a horn of salvation for us In the house of his servant David And the high priest stood up in the midst, and asked Jesus, saying, Answerest thou nothing? what is it which these witness against thee? Now when John heard in the prison the works of the Christ, he sent by his disciples who gave himself a ransom for all; the testimony to be borne in its own times; And forgive us our sins; for we ourselves also forgive every one that is indebted to us. And bring us not into temptation. The young man saith unto him, All these things have I observed: what lack I yet? “What does ‘versatile’ mean—full of eggs?” asked Wilbur. But 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? It is part of the soil. But when Herod’s birthday came, the daughter of Herodias danced in the midst, and pleased Herod. “Yes, Wilbur?” And 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. “Probably-obably-obably about half-past eleven,” said the goose. Wilbur was now the center of attraction on the farm. Hereby know we love, because he laid down his life for us: and we ought to lay down our lives for the brethren. A fungus is a decomposer, too. She looked pale and frightened. Then returned they unto Jerusalem from the mount called Olivet, which is nigh unto Jerusalem, a sabbath day’s journey off. He found a bit of potato, chewed it carefully, swallowed it, and walked back to bed. And there came a poor widow, and she cast in two mites, which make a farthing. “Throw water on him!” And 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. And he said, Verily I say unto you, No prophet is acceptable in his own country. It was no bigger than a grain of sand, no bigger than the head of a pin. For Herod had laid hold on John, and bound him, and put him in prison for the sake of Herodias, his brother Philip’s wife. and Ram begat Amminadab; and Amminadab begat Nahshon; and Nahshon begat Salmon; And they that were in the boat worshipped him, saying, Of a truth thou art the Son of God. And 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. But 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? Do therefore this that we say to thee: We have four men that have a vow on them; But the centurion gave more heed to the master and to the owner of the ship, than to those things which were spoken by Paul. Obey 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. For whosoever shall do the will of God, the same is my brother, and sister, and mother. It was delicious. And they send unto him certain of the Pharisees and of the Herodians, that they might catch him in talk. There were dozens and dozens of them. because they said, He hath an unclean spirit. And he doeth great signs, that he should even make fire to come down out of heaven upon the earth in the sight of men. lest coming suddenly he find you sleeping. The yard of the stockade was packed with people, internees. The Jews took up stones again to stone him. And about the eleventh hour he went out, and found others standing; and he saith unto them, Why stand ye here all the day idle? And when he had so said, there arose a dissension between the Pharisees and Sadducees; and the assembly was divided. I pray for them: I pray not for the world, but for those whom thou hast given me; for they are thine: And there he found a certain man named Aeneas, who had kept his bed eight years; for he was palsied. “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. And when the brethren knew it, they brought him down to Cæsarea, and sent him forth to Tarsus. They both grew tall and strong. yet for love’s sake I rather beseech, being such a one as Paul the aged, and now a prisoner also of Christ Jesus: and laid them at the apostles’ feet: and distribution was made unto each, according as any one had need. Major Ridge and his wife chose to travel out to the new Nation by riverboat, quickly and uneventfully. Mr. Zuckerman lay dreaming about Wilbur. But 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! And he went up unto them into the boat; and the wind ceased: and they were sore amazed in themselves; And one of them, a lawyer, asked him a question, trying him: And he came down to Capernaum, a city of Galilee. And he was teaching them on the sabbath day: “He lets me scratch him between the eyes.” In love of the brethren be tenderly affectioned one to another; in honor preferring one another; By 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. What if God, willing to show his wrath, and to make his power known, endured with much longsuffering vessels of wrath fitted unto destruction: “So it’s ‘Hurry up, Templeton,’ is it?” he said. Yes. do ye not make distinctions among yourselves, and become judges with evil thoughts? And they seized him, and led him away, and brought him into the high priest’s house. But Peter followed afar off. Little 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. Jesus said, Make the people sit down. Now there was much grass in the place. So the men sat down, in number about five thousand. and the Lord make you to increase and abound in love one toward another, and toward all men, even as we also do toward you; Be not deceived: Evil companionships corrupt good morals. The leaves will shake loose from the trees and fall. And if any was not found written in the book of life, he was cast into the lake of fire. Then 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. “Charlotte! But 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. When 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. Besides the Indians, bear and wolves and panthers still roamed all through these forests. They did not know that under the straw was a rat, and inside a knothole was a big grey spider. And will be to you a Father, And ye shall be to me sons and daughters, saith the Lord Almighty. for 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. “Run!” commanded Mrs. Arable, taking the pig from Fern and slipping a doughnut into her hand. “I’m going to make a night of it,” he said. Fern lay dreaming that she was getting sick in the swings. For ye are all sons of God, through faith, in Christ Jesus. “And remember, the money has to last all day. And Peter, fastening his eyes upon him, with John, said, Look on us. For 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. Now 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. Save me!” how 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; Then there come to Jesus from Jerusalem Pharisees and scribes, saying, “Charlotte,” said Wilbur after a while, “why are you so quiet?” “You see, Edith? And in this confidence I was minded to come first unto you, that ye might have a second benefit; And don’t bother the hens!” Now Beaver cut down the tree that the trap was tied to. But 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. And if any man would go to law with thee, and take away thy coat, let him have thy cloak also. “I will not be going back to the barn,” she said. It 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. “Well, I feel better about Fern,” said Mrs. Arable. that 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. but I say unto you, Swear not at all; neither by the heaven, for it is the throne of God; For for this cause ye pay tribute also; for they are ministers of God’s service, attending continually upon this very thing. Avery put the frog in his pocket and climbed to the hayloft. In sorrow he sank to the ground and closed his eyes. Behold, 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. And I said, Lord, they themselves know that I imprisoned and beat in every synagogue them that believed on thee: And, ye fathers, provoke not your children to wrath: but nurture them in the chastening and admonition of the Lord. Their saddles and rolled wool blankets served as backrests. I 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. When the treaty reached the White House, however, Jackson ranted against any exemptions whatsoever. The men have been in ill temper and poor health. but if there be no interpreter, let him keep silence in the church; and let him speak to himself, and to God. You live with such choices until you die. Please tell me where you are, if you are my friend!” There is a lad here, who hath five barley loaves, and two fishes: but what are these among so many? And 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. The frog kicked, splashing soapy water onto the blueberry pie. There’s nothing you can count on. And certain of them that stood there said unto them, What do ye, loosing the colt? Alexander the coppersmith did me much evil: the Lord will render to him according to his works: And Barnabas was minded to take with them John also, who was called Mark. for the great day of their wrath is come; and who is able to stand? I've watched you all day and I like you.” Fern raced off, ducking and dodging through the crowd, in search of Henry. And entering into the tomb, they saw a young man sitting on the right side, arrayed in a white robe; and they were amazed. The bear was claimed to have measured a full arms’ span across at the ass. Let 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. the Lord knoweth how to deliver the godly out of temptation, and to keep the unrighteous under punishment unto the day of judgment; “His pie is all over his front.” For 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. For the kingdom of God is not in word, but in power. Charley put his back to a big chestnut tree and slept sitting up, forehead to knees, cowled in his blanket. Be 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. … just to show how much I am loved. It tasted of the minerals in the rock it had passed through. He that believeth on me, as the scripture hath said, from within him shall flow rivers of living water. One choice that lay before them was to go west as Jackson had commanded them to do. And 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. Bill Axe’s cabin stood in a clearing of tulip trees above the north bank of the river. And there came to him his mother and brethren, and they could not come at him for the crowd. Cooking grease for the entire winter. what think ye? They answered and said, He is worthy of death. And he charged them much that no man should know this: and he commanded that something should be given her to eat. Now 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. But I determined this for myself, that I would not come again to you with sorrow. The Indians are ignorant beyond all reckoning and the whites too, mostly the dregs of Scotland and Ireland fled here for lack of alternative. Wherefore, receiving a kingdom that cannot be shaken, let us have grace, whereby we may offer service well-pleasing to God with reverence and awe: “Perhaps if you spin a web and catch a couple of flies you'll feel better.” Is it lawful for us to give tribute unto Cæsar, or not? “She’s eight.” But when the Pharisees heard it, they said, This man doth not cast out demons, but by Beelzebub the prince of the demons. “Yes, I would, come to think of it,” replied Mrs. Arable. And they returned, and prepared spices and ointments. And on the sabbath they rested according to the commandment. And 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, But Jesus said unto them, For your hardness of heart he wrote you this commandment. They fear them and fervently wish us to rout them out. But now complete the doing also; that as there was the readiness to will, so there may be the completion also out of your ability. As she worked, her eight legs were a great help to her. Jesus wept. You have chosen a hallowed doorway from which to string your webs. So they burned his cabin down and turned his writing into smoke. And 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. And 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. Wilbur walked into his yard just at that moment. And others are they that are sown among the thorns; these are they that have heard the word, And Mary Magdalene and Mary the mother of Joses beheld where he was laid. that 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. And as it came to pass in the days of Noah, even so shall it be also in the days of the Son of man. Repent therefore; or else I come to thee quickly, and I will make war against them with the sword of my mouth. And he came to the second, and said likewise. And he answered and said, I go, sir: and went not. I fed you with milk, not with meat; for ye were not yet able to bear it: nay, not even now are ye able; He sighed with relief. and should sleep and rise night and day, and the seed should spring up and grow, he knoweth not how. but speaking truth in love, may grow up in all things into him, who is the head, even Christ; But 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: The fish was thrashing wildly. For God hath shut up all unto disobedience, that he might have mercy upon all. The men stood a better chance of escape on their own. And on the morrow they entered into Cæsarea. And Cornelius was waiting for them, having called together his kinsmen and his near friends. Blessed be the God and Father of our Lord Jesus Christ, who hath blessed us with every spiritual blessing in the heavenly places in Christ: And when we entered into Rome, Paul was suffered to abide by himself with the soldier that guarded him. I said. Deadly markings it bore upon its carapace scales. Jesus saith unto him, I say not unto thee, Until seven times; but, Until seventy times seven. For the good which I would I do not: but the evil which I would not, that I practise. knowing that whatsoever good thing each one doeth, the same shall he receive again from the Lord, whether he be bond or free. He 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. He is the stone which was set at nought of you the builders, which was made the head of the corner. “Why does he have to stay up all night, grinding his clashers and destroying people's property? The 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. Now Philip was from Bethsaida, of the city of Andrew and Peter. Hardly anybody around the farm had a good word to say for a fly. But 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. For I know nothing against myself; yet am I not hereby justified: but he that judgeth me is the Lord. He 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." Peter 1:21 Genesis Chapter 1 In the beginning God created the heaven and the earth. And 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. And God said, Let there be light: and there was light. And God saw the light, that it was good: and God divided the light from the darkness. And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day. And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters. And 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. And God called the firmament Heaven, And the evening and the morning were the second day. And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so. And God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good. And 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. And 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. And the evening and the morning were the third day. And 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: And let them be for lights in the firmament of the heaven to give light upon the earth: and it was so. And 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. And God set them in the firmament of the heaven to give light upon the earth, And to rule over the day and over the night, and to divide the light from the darkness: and God saw that it was good. And the evening and the morning were the fourth day. And 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. And 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. And God blessed them, saying, Be (fruitful, and multiply, and fill the waters in the seas, and let fowl multiply in the earth. And the evening and the morning were the fifth day. And 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. And 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. And 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. So God created man in his own image, in the image of God created he him; male and female created he them. And 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. And 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. And 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. And God saw every thing that he had made, and, behold, it was very good. And the evening and the morning were the sixth day. Chapter 2 Thus the heavens and the earth were finished, and all the host of them. And 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. And God blessed the seventh day, and sanctified it: because that in it he had rested from all his work which God created and made. These 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, Andevery 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. But there went up a mist from the earth, and watered the whole face of the ground. And 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. And the LORD God planted a garden eastward in Eden; and there he put the man whom he had formed. And 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. And a river went out of Eden to water the garden; and from thence it was parted, and became into four heads. The name of the first is Pison: that is it which compasseth the whole land of Havilah, where there is gold; And the gold of that land is good: there is bdellium and the onyx stone. And the name of the second river is Gihon: the same is it that compasseth the whole land of Ethiopia. And the name of the third river is Hiddekel: that is it which goeth toward the east of Assyria. And the fourth river is Euphrates. And the LORD God took the man, and put him into the garden of Eden to dress it and to keep it. And the LORD God commanded the man, saying, Of every tree of the garden thou mayest freely eat: But 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. And the LORD God said, It is not good that the man should be alone; I will make him an help meet for him. And 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. And 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. And 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; And the rib, which the LORD God had taken from man, made he a woman, and brought her unto the man. And 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. Therefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh. And they were both naked, the man and his wife, and were not ashamed. Chapter 3 Now 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? And the woman said unto the serpent, We may eat of the fruit of the trees of the garden: But 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. And the serpent said unto the woman, Ye shall not surely die: For 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. And 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. And the eyes of them both were opened, and they knew that they were naked; and they sewed fig leaves together, and made themselves aprons. And 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. And the LORD God called unto Adam, and said unto him, Where art thou? And he said, I heard thy voice in the garden, and I was afraid, because I was naked; and I hid myself. And he said, Who told thee that thou wast naked? Hast thou eaten of the tree, whereof I commanded thee that thou shouldest not eat? And the man said, The woman whom thou gavest to be with me, she gave me of the tree, and I did eat. And 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. And 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: AndI 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. Unto 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. And 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; Thorns also and thistles shall it bring forth to thee; and thou shalt eat the herb of the field; In 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. And Adam called his wife’s name Eve; because she was the mother of all living. Unto Adam also and to his wife did the LORD God make coats of skins, and clothed them. And 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: Therefore the LORD God sent him forth from the garden of Eden, to till the ground from whence he was taken. So 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. Chapter 4 And Adam knew Eve his wife; and she conceived, and bare Cain, and said, I have gotten a man from the LORD. And she again bare his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground. And in process of time it came to pass, that Cain brought of the fruit of the ground an offering unto the LORD. And 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: But unto Cain and to his offering he had not respect. And Cain was very wroth, and his countenance fell. And the LORD said unto Cain, Why art thou wroth? and why is thy countenance fallen? If 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. And 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. And the LORD said unto Cain, Where is Abel thy brother? And he said, I know not: Am I my brother’s keeper? And he said, What hast thou done? the voice of thy brother’s blood crieth unto me from the ground. And now art thou cursed from the earth, which hath opened her mouth to receive thy brother’s blood from thy hand; When thou tillest the ground, it shall not henceforth yield unto thee her strength; a fugitive and a vagabond shalt thou be in the earth. And Cain said unto the LORD, My punishment is greater than I can bear. Behold, 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. And 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. And Cain went out from the presence of the LORD, and dwelt in the land of Nod, on the east of Eden. And 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. And unto Enoch was born Irad: and Irad begat Mehujael: and Mehujael begat Methusael: and Methusael begat Lamech. And Lamech took unto him two wives: the name of the one was Adah, and the name of the other Zillah. And Adah bare Jabal: he was the father of such as dwell in tents, and of such as have cattle. And his brother’s name was Jubal: he was the father of all such as handle the harp and organ. And Zillah, she also bare Tubalcain, an instructer of every artificer in brass and iron: and the sister of Tubalcain was Naamah. And 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. If Cain shall be avenged sevenfold, truly Lamech seventy and sevenfold. And 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. And 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. Chapter 5 This is the book of the generations of Adam. In the day that God created man, in the likeness of God made he him; Male and female created he them; and blessed them, and called their name Adam, in the day when they were created. And Adam lived an hundred and thirty years, and begat a son in his own likeness, after his image; and called his name Seth: And the days of Adam after he had begotten Seth were eight hundred years: and he begat sons and daughters: And all the days that Adam lived were nine hundred and thirty years: and he died. And Seth lived an hundred and five years, and begat Enos: And Seth lived after he begat Enos eight hundred and seven years, and begat sons and daughters: And all the days of Seth were nine hundred and twelve years: and he died. And Enos lived ninety years, and begat Cainan: And Enos lived after he begat Cainan eight hundred and fifteen years, and begat sons and daughters: And all the days of Enos were nine hundred and five years: and he died. And Cainan lived seventy years, and begat Mahalaleel: And Cainan lived after he begat Mahalaleel eight hundred and forty years, and begat sons and daughters: And all the days of Cainan were nine hundred and ten years: and he died. And Mahalaleel lived sixty and five years, and begat Jared: And Mahalaleel lived after he begat Jared eight hundred and thirty years, and begat sons and daughters: And all the days of Mahalaleel were eight hundred ninety and five years: and he died. And Jared lived an hundred sixty and two years, and he begat Enoch: And Jared lived after he begat Enoch eight hundred years, and begat sons and daughters: And all the days of Jared were nine hundred sixty and two years: and he died. And Enoch lived sixty and five years, and begat Methuselah: And Enoch walked with God after he begat Methuselah three hundred years, and begat sons and daughters: And all the days of Enoch were three hundred sixty and five years: And Enoch walked with God: and he was not; for God took him. And Methuselah lived an hundred eighty and seven years, and begat Lamech: And Methuselah lived after he begat Lamech seven hundred eighty and two years, and begat sons and daughters: And all the days of Methuselah were nine hundred sixty and nine years: and he died. And Lamech lived an hundred eighty and two years, and begat a son: And 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. And Lamech lived after he begat Noah five hundred ninety and five years, and begat sons and daughters: And all the days of Lamech were seven hundred seventy and seven years: and he died. And Noah was five hundred years old: and Noah begat Shem, Ham, and Japheth. Chapter 6 And it came to pass, when men began to multiply on the face of the earth, and daughters were born unto them, That the sons of God saw the daughters of men that they were fair; and they took them wives of all which they chose. And 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. There 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. And 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. And it repented the LORD that he had made man on the earth, and it grieved him at his heart. And 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. But Noah found grace in the eyes of the LORD. These are the generations of Noah: Noah was a just man and perfect in his generations, and Noah walked with God. And Noah begat three sons, Shem, Ham, and Japheth. The earth also was corrupt before God, and the earth was filled with violence. And God looked upon the earth, and, behold, it was corrupt; for all flesh had corrupted his way upon the earth. And 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. Make thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch. And 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. A 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. And, 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. But 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. And 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. Of 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. And 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. Thus did Noah; according to all that God commanded him, so did he. Chapter 7 And 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. Of 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. Of fowls also of the air by sevens, the male and the female; to keep seed alive upon the face of all the earth. For 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. And Noah did according unto all that the LORD commanded him. And Noah was six hundred years old when the flood of waters was upon the earth. And 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. Of clean beasts, and of beasts that are not clean, and of fowls, and of every thing that creepeth upon the earth, There went in two and two unto Noah into the ark, the male and the female, as God had commanded Noah. And it came to pass after seven days, that the waters of the flood were upon the earth. In 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. And the rain was upon the earth forty days and forty nights. In 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; They, 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. And they went in unto Noah into the ark, two and two of all flesh, wherein is the breath of life. And they that went in, went in male and female of all flesh, as God had commanded him: and the LORD shut him in. And 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. And the waters prevailed, and were increased greatly upon the earth; and the ark went upon the face of the waters. And the waters prevailed exceedingly upon the earth; and all the high hills, that were under the whole heaven, were covered. Fifteen cubits upward did the waters prevail; and the mountains were covered. And 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: All in whose nostrils was the breath of life, of all that was in the dry land, died. And 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. And the waters prevailed upon the earth an hundred and fifty days. Chapter 8 And 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; The fountains also of the deep and the windows of heaven were stopped, and the rain from heaven was restrained; And the waters returned from off the earth continually: and after the end of the hundred and fifty days the waters were abated. And the ark rested in the seventh month, on the seventeenth day of the month, upon the mountains of Ararat. And 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. And it came to pass at the end of forty days, that Noah opened the window of the ark which he had made: And he sent forth a raven, which went forth to and fro, until the waters were dried up from off the earth. Also he sent forth a dove from him, to see if the waters were abated from off the face of the ground; But 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. And he stayed yet other seven days; and again he sent forth the dove out of the ark; And 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. And he stayed yet other seven days; and sent forth the dove; which returned not again unto him any more. And 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. And in the second month, on the seven and twentieth day of the month, was the earth dried. And God spake unto Noah, saying, Go forth of the ark, thou, and thy wife, and thy sons, and thy sons’ wives with thee. Bring 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. And Noah went forth, and his sons, and his wife, and his sons’ wives with him: Every beast, every creeping thing, and every fowl, and whatsoever creepeth upon the earth, after their kinds, went forth out of the ark. And 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. And 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. While the earth remaineth, seedtime and harvest, and cold and heat, and summer and winter, and day and night shall not cease. Chapter 9 And God blessed Noah and his sons, and said unto them, Be fruitful, and multiply, and replenish the earth. And 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. Every moving thing that liveth shall be meat for you; even as the green herb have I given you all things. But flesh with the life thereof, which is the blood thereof, shall ye not eat. And 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. Whoso sheddeth man’s blood, by man shall his blood be shed: for in the image of God made he man. And you, be ye fruitful, and multiply; bring forth abundantly in the earth, and multiply therein. And God spake unto Noah, and to his sons with him, saying, And I, behold, I establish my covenant with you, and with your seed after you; And 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. And 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. And 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: I do set my bow in the cloud, and it shall be for a token of a covenant between me and the earth. And it shall come to pass, when I bring a cloud over the earth, that the bow shall be seen in the cloud: And 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. And 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. And 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. And the sons of Noah, that went forth of the ark, were Shem, and Ham, and Japheth: and Ham is the father of Canaan. These are the three sons of Noah: and of them was the whole earth overspread. And Noah began to be an husbandman, and he planted a vineyard: And he drank of the wine, and was drunken; and he was uncovered within his tent. And Ham, the father of Canaan, saw the nakedness of his father, and told his two brethren without. And 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. And Noah awoke from his wine, and knew what his younger son had done unto him. And he said, Cursed be Canaan; a servant of servants shall he be unto his brethren. And he said, Blessed be the LORD God of Shem; and Canaan shall be his servant. God shall enlarge Japheth, and he shall dwell in the tents of Shem; and Canaan shall be his servant. And Noah lived after the flood three hundred and fifty years. And all the days of Noah were nine hundred and fifty years: and he died. Chapter 10 Now these are the generations of the sons of Noah, Shem, Ham, and Japheth: and unto them were sons born after the flood. The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras. And the sons of Gomer; Ashkenaz, and Riphath, and Togarmah. And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim. By these were the isles of the Gentiles divided in their lands; every one after his tongue, after their families, in their nations. And the sons of Ham; Cush, and Mizraim, and Phut, and Canaan. And the sons of Cush; Seba, and Havilah, and Sabtah, and Raamah, and Sabtecha: and the sons of Raamah; Sheba, and Dedan. And Cush begat Nimrod: he began to be a mighty one in the earth. He was a mighty hunter before the LORD: wherefore it is said, Even as Nimrod the mighty hunter before the LORD. And the beginning of his kingdom was Babel, and Erech, and Accad, and Calneh, in the land of Shinar. Out of that land went forth Asshur, and builded Nineveh, and the city Rehoboth, and Calah, And Resen between Nineveh and Calah: the same is a great city. And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim, And Pathrusim, and Casluhim, (out of whom came Philistim,) and Caphtorim. And Canaan begat Sidon his firstborn, and Heth, And the Jebusite, and the Amorite, and the Girgasite, And the Hivite, and the Arkite, and the Sinite, And the Arvadite, and the Zemarite, and the Hamathite: and afterward were the families of the Canaanites spread abroad. And 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. These are the sons of Ham, after their families, after their tongues, in their countries, and in their nations. Unto Shem also, the father of all the children of Eber, the brother of Japheth the elder, even to him were children born. 22, The children of Shem; Elam, and Asshur, and Arphaxad, and Lud, and And the children of Aram; Uz, and Hul, and Gether, and Mash. And Arphaxad begat Salah; and Salah begat Eber. And 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. And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah, And Hadoram, and Uzal, and Diklah, And Obal, and Abimael, and Sheba, And Ophir, and Havilah, and Jobab: all these were the sons of Joktan. And their dwelling was from Mesha, as thou goest unto Sephar a mount of the east. These are the sons of Shem, after their families, after their tongues, in their lands, after their nations. These 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. Chapter 11 And the whole earth was of one language, and of one speech. And it came to pass, as they journeyed from the east, that they found a plain in the land of Shinar; and they dwelt there. And 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. And 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. And the LORD came down to see the city and the tower, which the children of men builded. And 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. Go to, let us go down, and there confound their language, that they may not understand one another’s speech. So the LORD scattered them abroad from thence upon the face of all the earth: and they left off to build the city. Therefore 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. These are the generations of Shem: Shem was an hundred years old, and begat Arphaxad two years after the flood: And Shem lived after he begat Arphaxad five hundred years, and begat sons and daughters. And Arphaxad lived five and thirty years, and begat Salah: And Arphaxad lived after he begat Salah four hundred and three years, and begat sons and daughters. And Salah lived thirty years, and begat Eber: And Salah lived after he begat Eber four hundred and three years, and begat sons and daughters. And Eber lived four and thirty years, and begat Peleg: And Eber lived after he begat Peleg four hundred and thirty years, and beat sons and daughters. And Peleg lived thirty years, and begat Reu: And Peleg lived after he begat Reu two hundred and nine years, and begat sons and daughters. And Reu lived two and thirty years, and begat Serug: And Reu lived after he begat Serug two hundred and seven years, and begat sons and daughters. And Serug lived thirty years, and begat Nahor: And Serug lived after he begat Nahor two hundred years, and begat sons and daughters. And Nahor lived nine and twenty years, and begat Terah: And Nahor lived after he begat Terah an hundred and nineteen years, and begat sons and daughters. And Terah lived seventy years, and begat Abram, Nahor, and Haran. Now these are the generations of Terah: Terah begat Abram, Nahor, and Haran; and Haran begat Lot. And Haran died before his father Terah in the land of his nativity, in Ur of the Chaldees. And 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. But Sarai was barren; she had no child. And 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. And the days of Terah were two hundred and five years: and Terah died in Haran. Chapter 12 Now 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: And I will make of thee a great nation, and I will bless thee, and make thy name great; and thou shalt be a blessing: And I will bless them that bless thee, and curse him that curseth thee: and in thee shall all families of the earth be blessed. So 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. And 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. And Abram passed through the land unto the place of Sichem, unto the plain of Moreh. And the Canaanite was then in the land. And 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. And 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. And Abram journeyed, going on still toward the south. And there was a famine in the land: and Abram went down into Egypt to sojourn there; for the famine was grievous in the land. And 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: Therefore 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. Say, 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. And it came to pass, that, when Abram was come into Egypt, the Egyptians beheld the woman that she was very fair. The princes also of Pharaoh saw her, and commended her before Pharaoh: and the woman was taken into Pharaoh’s house. And 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. And the LORD plagued Pharaoh and his house with great plagues because of Sarai Abram’s wife. And 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? Why 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. And Pharaoh commanded his men concerning him: and they sent him away, and his wife, and all that he had. Chapter 13 And Abram went up out of Egypt, he, and his wife, and all that he had, and Lot with him, into the south. And Abram was very rich in cattle, in silver, and in gold. And 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; Unto the place of the altar, which he had made there at the first: and there Abram called on the name of the LORD. And Lot also, which went with Abram, had flocks, and herds, and tents. And 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. And 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. And 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. Is 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. And 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. Then Lot chose him all the plain of Jordan; and Lot journeyed east: and they separated themselves the one from the other. Abram dwelled in the land of Canaan, and Lot dwelled in the cities of the plain, and pitched his tent toward Sodom. But the men of Sodom were wicked and sinners before the LORD exceedingly. And 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: For all the land which thou seest, to thee will I give it, and to thy seed for ever. And 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. Arise, walk through the land in the length of it and in the breadth of it; for I will give it unto thee. Then 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. Chapter 14 And 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; That 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. All these were joined together in the vale of Siddim, which is the salt sea. Twelve years they served Chedorlaomer, and in the thirteenth year they rebelled. And 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, And the Horites in their mount Seir, unto El-paran, which is by the wilderness. And 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. And 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; With 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. And 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. And they took all the goods of Sodom and Gomorrah, and all their victuals, and went their way. And they took Lot, Abram’s brother’s son, who dwelt in Sodom, and his goods, and departed. And 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. And 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. And 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. And he brought back all the goods, and also brought again his brother Lot, and his goods, and the women also, and the people. And 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. And Melchizedek king of Salem brought forth bread and wine: and he was the priest of the most high God. And he blessed him, and said, Blessed be Abram of the most high God, possessor of heaven and earth: And blessed be the most high God, which hath delivered thine enemies into thy hand. And he gave him tithes of all. And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself. And 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, That 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: Save 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. Chapter 15 After 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. And Abram said, Lord GOD, what wilt thou give me, seeing I go childless, and the steward of my house is this Eliezer of Damascus? And Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir. And, 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. And 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. And he believed in the LORD; and he counted it to him for righteousness. And 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. And he said, Lord GOD, whereby shall I know that I shall inherit it? And 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. And 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. And when the fowls came down upon the carcases, Abram drove them away. And when the sun was going down, a deep Sleep fell upon Abram; and, lo, an horror of great darkness fell upon him. And 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; And also that nation, whom they shall serve, will I judge: and afterward shall they come out with great substance. And thou shalt go to thy fathers in peace; thou shalt be buried in a good old age. But in the fourth generation they shall come hither again: for the iniquity of the Amorites is not yet full. And 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. In 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: The Kenites, and the Kenizzites, and the Kadmonites, And the Hittites, and the Perizzites, and the Rephaims, And the Amorites, and the Canaanites, and the Girgashites, and the Jebusites. Chapter 16 Now Sarai Abram’s wife bare him no children: and she had an handmaid, an Egyptian, whose name was Hagar. And 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. And 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. And he went in unto Hagar, and she conceived: and when she saw that she had conceived, her mistress was despised in her eyes. And 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. But 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. And the angel of the LORD found her by a fountain of water in the wilderness, by the fountain in the way to Shur. And 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. And the angel of the LORD said unto her, Return to thy mistress, and submit thyself under her hands. And the angel of the LORD said unto her, I will multiply thy seed exceedingly, that it shall not be numbered for multitude. And 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. And 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. And 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? Wherefore the well was called Beer-lahai-roi; behold, it is between Kadesh and Bered. And Hagar bare Abram a son: and Abram called his son’s name, which Hagar bare, Ishmael. And Abram was fourscore and six years old, when Hagar bare Ishmael to Abram. Chapter 17 And 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. 2, And I will make my covenant between me and thee, and will multiply thee exceedingly. And Abram fell on his face: and God talked with him, saying, As for me, behold, my covenant is with thee, and thou shalt be a father of many nations. Neither shall thy name any more be called Abram, but thy name shall be Abraham; for a father of many nations have I made thee. And I will make thee exceeding fruitful, and I will make nations of thee, and kings shall come out of thee. And 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. And 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. And God said unto Abraham, Thou shalt keep my covenant therefore, thou, and thy seed after thee in their generations. This is my covenant, which ye shall keep, between me and you and thy seed after thee; Every man child among you shall be circumcised. And ye shall circumcise the flesh of your foreskin; and it shall be a token of the covenant betwixt me and you. And 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. He 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. And 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. And God said unto Abraham, As for Sarai thy wife, thou shalt not call her name Sarai, but Sarah shall her name be. And 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. Then 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? And Abraham said unto God, O that Ishmael might live before thee! And 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. And 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. But my covenant will I establish with Isaac, which Sarah shall bear unto thee at this set time in the next year. And he left off talking with him, and God went up from Abraham. And 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. And Abraham was ninety years old and nine, when he was circumcised in the flesh of his foreskin. And Ishmael his son was thirteen years old, when he was circumcised in the flesh of his foreskin. In the selfsame day was Abraham circumcised, and Ishmael his son. And all the men of his house, born in the house, and bought with money of the stranger, were circumcised with him. Chapter 18 And the LORD appeared unto him in the plains of Mamre: and he sat in the tent door in the heat of the day; And 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, And said, My Lord, if now I have found favour in thy sight, pass not away, I pray thee, from thy servant: Let a little water, I pray you, be fetched, and wash your feet, and rest yourselves under the tree: And] 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. And 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. And 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. And 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. And they said unto him, Where is Sarah thy wife? And he said, Behold, in the tent. And 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. Now Abraham and Sarah were old and well stricken in age; and it ceased to be with Sarah after the manner of women. Therefore Sarah laughed within herself, saying, After I am waxed old shall I have pleasure, my lord being old also? And the LORD said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a surety bear a child, which am old? Is 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. Then Sarah denied, saying, I laughed not; for she was afraid. And he said, Nay; but thou didst laugh. And the men rose up from thence, and looked toward Sodom: and Abraham went with them to bring them on the way. And the LORD said, Shall I hide from Abraham that thing which I do; Seeing that Abraham shall surely become a great and mighty nation, and all the nations of the earth shall be blessed in him? For 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. And the LORD said, Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous; I 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. And the men turned their faces from thence, and went toward Sodom: but Abraham stood yet before the LORD. 23. And Abraham drew near, and said, Wilt thou also destroy the righteous with the wicked? Peradventure there be fifty righteous within the city: wilt thou also destroy and not spare the place for the fifty righteous that are therein? That 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? And the LORD said, If I find in Sodom fifty righteous within the city, then I will spare all the place for their sakes. And Abraham answered and said, Behold now, I have taken upon me to speak unto the Lord, which am but dust and ashes: Peradventure 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. And 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. And 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. And 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. And 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. And the LORD went his way, as soon as he had left communing with Abraham: and Abraham returned unto his place. Chapter 19 And 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; And 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. And 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. But 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: And 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. And Lot went out at the door unto them, and shut the door after him, And said, I pray you, brethren, do not so wickedly. Behold 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. And 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. But the men put forth their hand, and pulled Lot into the house to them, and shut to the door. And 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. And 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: For 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. And 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. And 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. And 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. And 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. And Lot said unto them, Oh, not so, my Lord: Behold 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: Behold 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. And 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. Haste thee, escape thither; for I cannot do any thing till thou be come thither. Therefore the name of the city was called Zoar. The sun was risen upon the earth when Lot entered into Zoar. Then the LORD rained upon Sodom and upon Gomorrah brimstone and fire from the LORD out of heaven; And he overthrew those cities, and all the plain, and all the inhabitants of the cities, and that which grew upon the ground. But his wife looked back from behind him, and she became a pillar of salt. And Abraham gat up early in the morning to the place where he stood before the LORD: And 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. And 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. And 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. And 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: Come, let us make our father drink wine, and we will lie with him, that we may preserve seed of our father. And 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. And 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. And 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. Thus were both the daughters of Lot with child by their father. And the firstborn bare a son, and called his name Moab: the same is the father of the Moabites unto this day. And 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, Chapter 20 And Abraham journeyed from thence toward the south country, and dwelled between Kadesh and Shur, and sojourned in Gerar. And Abraham said of Sarah his wife, She is my sister: and Abimelech king of Gerar sent, and took Sarah. But 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. But Abimelech had not come near her: and he said, Lord, wilt thou slay also a righteous nation? Said 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. And 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. Now 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. . Therefore 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. Then 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. And Abimelech said unto Abraham, What sawest thou, that thou hast done this thing? And 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. And 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. And 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. And Abimelech took sheep, and oxen, and menservants, and womenservants, and gave them unto Abraham, and restored him Sarah his wife. And Abimelech said, Behold, my land is before thee: dwell where it pleaseth thee. And 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. So Abraham prayed unto God: and God healed Abimelech, and his wife, and his maidservants; and they bare children. For the LORD had fast closed up all the wombs of the house of Abimelech, because of Sarah Abraham’s wife. Chapter 21 And the LORD visited Sarah as he had said, and the LORD did unto Sarah as he had spoken. For Sarah conceived, and bare Abraham a son in his old age, at the set time of which God had spoken to him. And Abraham called the name of his son that was born unto him, whom Sarah bare to him, Isaac. And Abraham circumcised his son Isaac being eight days old, as God had commanded him. And Abraham was an hundred years old, when his son Isaac was born unto him. And Sarah said, God hath made me to laugh, so that all that hear will laugh with me. And 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. And the child grew, and was weaned: and Abraham made a great feast the same day that Isaac was weaned. And Sarah saw the son of Hagar the Egyptian, which she had born unto Abraham, mocking. Wherefore 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. And the thing was very grievous in Abraham’s sight because of his son. And 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. And also of the son of the bondwoman will I make a nation, because he is thy seed. And 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. And the water was spent in the bottle, and she cast the child under one of the shrubs. And 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. And 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. Arise, lift up the lad, and hold him in thine hand; for I will make him a great nation. And 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. And God was with the lad; and he grew, and dwelt in the wilderness, and became an archer. And he dwelt in the wilderness of Paran: and his mother took him a wife out of the land of Egypt. And 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: Now 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. And Abraham said, I will swear. And Abraham reproved Abimelech because of a well of water, which Abimelech’s servants had violently taken away. And Abimelech said, I wot not who hath done this thing: neither didst thou tell me, neither yet heard I of it, but to day. And Abraham took sheep and oxen, and gave them unto Abimelech; and both of them made a covenant. And Abraham set seven ewe lambs of the flock by themselves. And Abimelech said unto Abraham, What mean these seven ewe lambs which thou hast set by themselves? And 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. Wherefore he called that place Beer-sheba; because there they sware both of them. Thus 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. And Abraham planted a grove in Beer-sheba, and called there on the name of the LORD, the everlasting God. And Abraham sojourned in the Philistines’ land many days. Chapter 22 And it came to pass after these things, that God did tempt Abraham, and said unto him, Abraham: and he said, Behold, here I am. And 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. And 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. Then on the third day Abraham lifted up his eyes, and saw the place afar off. And 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. And 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. And 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? And Abraham said, My son, God will provide himself a lamb for a burnt offering: so they went both of them together. And 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. And Abraham stretched forth his hand, and took the knife to slay his son. And the angel of the LORD called unto him out of heaven, and said, Abraham, Abraham: and he said, Here am I. And 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. And 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. And 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. And the angel of the LORD called unto Abraham out of heaven the second time, And 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: That 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; And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. So Abraham returned unto his young men, and they rose up and went together to Beer-sheba; and Abraham dwelt at Beer-sheba. And it came to pass after these things, that it was told Abraham, saying, Behold, Milcah, she hath also born children unto thy brother Nahor; Huz his firstborn, and Buz his brother, and Kemuel the father of Aram, And Chesed, and Hazo, and Pildash, and Jidlaph, and Bethuel. And Bethuel begat Rebekah: these eight Milcah did bear to Nahor, Abraham’s brother. And his concubine, whose name was Reumah, she bare also Tebah, and Gaham, and Thahash, and Maachah. Chapter 23 And Sarah was an hundred and seven and twenty years old: these were the years of the life of Sarah. And 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. And Abraham stood up from before his dead, and spake unto the sons of Heth, saying, I 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. And the children of Heth answered Abraham, saying unto him, Hear 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. And Abraham stood up, and bowed himself to the people of the land, even to the children of Heth. And 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, That 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. And 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, Nay, 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. And Abraham bowed down himself before the people of the land. And 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. And Ephron answered Abraham, saying unto him, My lord, hearken unto me: the land is worth four hundred shekels of silver; what is that betwixt me and thee? bury therefore thy dead. And 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. And 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 Unto Abraham for a possession in the presence of the children of Heth, before all that went in at the gate of his city. And 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. And the field, and the cave that is therein, were made sure unto Abraham for a possession of a buryingplace by tie sons of Heth. Chapter 24 And Abraham was old, and well stricken in age: and the LORD had blessed Abraham in all things. 2. 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: And 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: But thou shalt go unto my country, and to my kindred, and take a wife unto my son Isaac. And 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? And Abraham said unto him, Beware thou that thou bring not my son thither again. The 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. And 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. And the servant put his hand under the thigh of Abraham his master, and sware to him concerning that matter. And 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. And 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. Behold, I stand here by the well of water; and the daughters of the men of the city come out to draw water: And 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. And 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. And 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. And the servant ran to meet her, and said, Let me, I pray thee, drink a little water of thy pitcher. And she said, Drink, my lord: and she hasted, and let down her pitcher upon her hand, and gave him drink. And when she had done giving him drink, she said, I will draw water for thy camels also, until they have done drinking. And she hasted, and emptied her pitcher into the trough, and ran again unto the well to draw water, and drew for all his camels. And the man wondering at her held his peace, to wit whether the LORD had made his journey prosperous or not And 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; And said, Whose daughter art thou? tell me, I pray thee: is there room in thy father’s house for us to lodge in? And she said unto him, I am the daughter of Bethuel the son of Milcah, which she bare unto Nahor. She said moreover unto him, We have both straw and provender enough, and room to lodge in. And the man bowed down his head, and worshipped the LORD. And 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. And the damsel ran, and told them of her mother’s house these things. And Rebekah had a brother, and his name was Laban: and Laban ran out unto the man, unto the well. And 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. And he said, Come in, thou blessed of the LORD; wherefore standest thou Without? for I have prepared the house, and room for the camels. And 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. And 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. And he said, lam Abraham’s servant. And 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. And 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. And 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: But thou shalt go unto my father’s house, and to my kindred, and take a wife unto my son. And I said unto my master, Peradventure the woman will not follow me. And 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: Then 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. 42. 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: Behold, 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; And 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. And 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. And 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. And 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. And 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. And 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. Then Laban and Bethuel answered and said, The thing proceedeth from the LORD: we cannot speak unto thee bad or good. Behold, Rebekah is before thee, take her, and go, and let her be thy master’s son’s wife, as the LORD hath spoken. And it came to pass, that, when Abraham’s servant heard their words, he worshipped the LORD, bowing himself to the earth. And 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. And 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. And her brother and her mother said, Let the damsel abide with us a few days, at the least ten; after that she shall go. And he said unto them, Hinder me not, seeing the LORD hath prospered my way; send me away that I may go to my master. And they said, We will call the damsel, and enquire at her mouth. And they called Rebekah, and said unto her, Wilt thou go with this man? And she said, I will go. And they sent away Rebekah their sister, and her nurse, and Abraham’s servant, and his men. And 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. And Rebekah arose, and her damsels, and they rode upon the camels, and followed the man: and the servant took Rebekah, and went his way. And Isaac came from the way of the well Lahai-roi; for he dwelt in the south country. And 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. And Rebekah lifted up her eyes, and when she saw Isaac, she lighted off the camel. For 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. And the servant told Isaac all things that he had done. And 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. Chapter 25 Then again Abraham took a wife, and her name was Keturah. And she bare him Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah. And Jokshan begat Sheba, and Dedan. And the sons of Dedan were Asshurim, and Letushim, and Leummim. And the sons of Midian; Ephah, and Epher, and Hanoch, and Abida, and Eldaah. All these were the children of Keturah. And Abraham gave all that he had unto Isaac. But 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. And these are the days of the years of Abraham’s life which he lived, an hundred threescore and fifteen years. Then 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. And 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; The field which Abraham purchased of the sons of Heth: there was Abraham buried, and Sarah his wife. And it came to pass after the death of Abraham, that God blessed his son Isaac; and Isaac dwelt by the well Lahai-roi. Now these are the generations of Ishmael, Abraham’s son, whom Hagar the Egyptian, Sarah’s handmaid, bare unto Abraham: And 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, And Mishma, and Dumah, and Massa, Hadar, and Tema, Jetur, Naphish, and Kedemah: These are the sons of Ishmael, and these are their names, by their towns, and by their castles; twelve princes according to their nations. And 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. And 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. And these are the generations of Isaac, Abraham’s son: Abraham begat Isaac: And 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. And Isaac intreated the LORD for his wife, because she was barren: and the LORD was intreated of him, and Rebekah his wife conceived. And 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. And 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. And when her days to be delivered were fulfilled, behold, there were twins in her womb. And the first came out red, all over like an hairy garment; and they called his name Esau. And 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. And the boys grew: and Esau was a cunning hunter, a man of the field; and Jacob was a plain man, dwelling in tents. And Isaac loved Esau, because he did eat of his venison: but Rebekah loved Jacob. And Jacob sod pottage: and Esau came from the field, and he was faint: And Esau said to Jacob, Feed me, I ray thee, with that same red pottage; for I am faint: therefore was his name called Edom. And Jacob said, Sell me this day thy birthright. And Esau said, Behold, I am at the point to die: and what profit shall this birthright do to me? And Jacob said, Swear to me this day; and he sware unto him: and he sold his birthright unto Jacob. Then 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. Chapter 26 And 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. And the LORD appeared unto him, and said, Go not down into Egypt; dwell in the land which I shall tell thee of: Sojourn 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; And 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; Because that Abraham obeyed my voice, and kept my charge, my commandments, my statutes, and my laws. And Isaac dwelt in Gerar: And 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. And 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. And 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. And 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. And Abimelech charged all his people, saying, He that toucheth this man or his wife shall surely be put to death. Then Isaac sowed in that land, and received in the same year an hundredfold: and the LORD blessed him. And the man waxed great, and went forward, and grew until he became very great: For he had possession of flocks, and possession of herds, and great store of servants: and the Philistines envied him. For 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. And Abimelech said unto Isaac, Go from us; for thou art much mightier than we. And Isaac departed thence, and itched his tent in the valley of Gerar, and dwelt there. And 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. And Isaac’s servants digged in the valley, and found there a well of springing water. And 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. And they digged another well, and strove for that also: and he called the name of it Sitnah. And 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. And he went up from thence to Beer-sheba. And 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. And 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. Then Abimelech went to him from Gerar, and Ahuzzath one of his friends, and Phichol the chief captain of his army. And Isaac said unto them, Wherefore come ye to me, seeing ye hate me, and have sent me away from you? And 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; That 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. And he made them a feast, and they did eat and drink. And they rose up betimes in the morning, and sware one to another: and Isaac sent them away, and they departed from him in peace. And 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. And he called it Shebah: therefore the name of the city is Beer-sheba unto this day. And 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: Which were a grief of mind unto Isaac and to Rebekah. Chapter 27 And 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. And he said, Behold now, Lam old, I know not the day of my death: Now therefore take, I pray thee, thy weapons, thy quiver and thy bow, and go out to the field, and take me some venison; And 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. And Rebekah heard when Isaac spake to Esau his son. And Esau went to the field to hunt for venison, and to bring it. And Rebekah spake unto Jacob her son, saying, Behold, I heard thy father speak unto Esau thy brother, saying, Bring me venison, and make me savoury meat, that I may eat, and bless thee before the LORD before my death. Now therefore, my son, obey my voice according to that which I command thee. Go 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: And thou shalt bring it to thy father, that he may eat, and that he may bless thee before his death. And Jacob said to Rebekah his mother, Behold, Esau my brother is a hairy man, and I am a smooth man: My 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. And his mother said unto him, Upon me be thy curse, my son: only Obey my voice, and go fetch me them. And he went, and fetched, and brought them to his mother: and his mother made savoury meat, such as his father loved. And Rebekah took goodly raiment of her eldest son Esau, which were with her in the house, and put them upon Jacob her younger son: And she put the skins of the kids of the goats upon his hands, and upon the smooth of his neck: And she gave the savoury meat and the bread, which she had prepared, into the hand of her son Jacob. And he came unto his father, and said, My father: and he said, Here am I; who art thou, my son? And 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. And 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. And 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. And 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. And he discerned him not, because his hands were hairy, as his brother Esau’s hands: so he blessed him. And he said, Art thou my very son Esau? And he said, I am. And 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. And his father Isaac said unto him, Come near now, and kiss me, my son. And 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: Therefore God give thee of the dew of heaven, and the fatness of the earth, and plenty of corn and wine: Let 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. And 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. And 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. And Isaac his father said unto him, Who art thou? And he said, I am thy son, thy firstborn Esau. And 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. And 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. And he said, Thy brother came with subtilty, and hath taken away thy blessing. And 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? And 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? And 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. And 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; And 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. And 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. And 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. Now therefore, my son, obey my voice; and arise, flee thou to Laban my brother to Haran; And tarry with him a few days, until thy brother’s fury turn away, Until 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? And 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? Chapter 28 And Isaac called Jacob, and blessed him, and charged him, and said unto him, Thou shalt not take a wife of the daughters of Canaan. Arise, 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. And God Almighty bless thee, and make thee fruitful, and multiply thee, that thou mayest be a multitude of people; And 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. And 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. When 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; And that Jacob obeyed his father and his mother, and was gone to Padan-aram; And Esau seeing that the daughters of Canaan pleased not Isaac his father; Then 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. And Jacob went out from Beersheba, and went toward Haran. And 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. And 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. And, 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; And 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. And, 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. And Jacob awaked out of his sleep, and he said, Surely the LORD is in this place; and I knew it not. And 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. And 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. And he called the name of that place Beth-el: but the name of that city was called Luz at the first. And 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, So that I come again to my father’s house in peace; then shall the LORD be my God: And 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. Chapter 29 Then Jacob went on his journey, and came into the land of the people of the east. And 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. And 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. And Jacob said unto them, My brethren, whence be ye? And they said, Of Haran are we. And he said unto them, Know ye Laban the son of Nahor? And they said, We know him. And he said unto them, /s he well? And they said, He is well: and, behold, Rachel his daughter cometh with the sheep. And 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. And 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. And while he yet spake with them, Rachel came with her father’s sheep: for she kept them. And 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. And Jacob kissed Rachel, and lifted up his voice, and wept. And Jacob told Rachel that he was her father’s brother, and that he was Rebekah’s son: and she ran and told her father. And 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. And Laban said to him, Surely thou art my bone and my flesh. And he abode with him the space of a month. And Laban said unto Jacob, Because thou art my brother, shouldest thou therefore serve me for nought? tell me, what shall thy wages be? And Laban had two daughters: the name of the elder was Leah, and the name of the younger was Rachel. Leah was tender eyed; but Rachel was beautiful and well favoured. And Jacob loved Rachel; and said, I will serve thee seven years for Rachel thy younger daughter. And Laban said, /t is better that I give her to thee, than that I should give her to another man: abide with me. And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her. And Jacob said unto Laban, Give me my wife, for my days are fulfilled, that I may go in unto her. And Laban gathered together all the men of the place, and made a feast. And it came to pass in the evening, that he took Leah his daughter, and brought her to him; and he went in unto her. And Laban gave unto his daughter Leah Zilpah his maid for an handmaid. And 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? ; And Laban said, It must not be so done in our country, to give the younger before the firstborn. Fulfil her week, and we will give thee this also for the service which thou shalt serve with me yet seven other years. And Jacob did so, and fulfilled her week: and he gave him Rachel his daughter to wife also. And Laban gave to Rachel his daughter Bilhah his handmaid to be her maid. And he went in also unto Rachel, and he loved also Rachel more than Leah, and served with him yet seven other years. And when the LORD saw that Leah was hated, he opened her womb: but Rachel was barren. And 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. And 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. And 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. And 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. Chapter 30 And when Rachel saw that she bare Jacob no children, Rachel envied her sister; and said unto Jacob, Give me children, or else I die. And 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? And 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. And she gave him Bilhah her handmaid to wife: and Jacob went in unto her. And Bilhah conceived, and bare Jacob a son. And Rachel said, God hath judged me, and hath also heard my voice, and hath given me a son: therefore called she his name Dan. And Bilhah Rachel’s maid conceived again, and bare Jacob a second son. And Rachel said, With great wrestlings have I wrestled with my sister, and I have prevailed: and she called his name Naphtali. When Leah saw that she had left bearing, she took Zilpah her maid, and gave her Jacob to wife. And Zilpah Leah’s maid bare Jacob a son. And Leah said, A troop cometh: and she called his name Gad. And Zilpah Leah’s maid bare Jacob a second son. And Leah said, Happy am I, for the daughters will call me blessed: and she called his name Asher. And 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. And 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. And 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. And God hearkened unto Leah, and she conceived, and bare Jacob the fifth son. And Leah said, God hath given me my hire, because I have given my maiden to my husband: and she called his name Issachar. And Leah conceived again, and bare Jacob the sixth son. And 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. And afterwards she bare a daughter, and called her name Dinah. And God remembered Rachel, and God hearkened to her, and opened her womb. And she conceived, and bare a son; and said, God hath taken away my reproach: And she called his name Joseph; and said, The LORD shall add to me another son. And 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. Give 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. And 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. And he said, Appoint me thy wages, and I will give it. And he said unto him, Thou knowest how I have served thee, and how thy cattle was with me. For 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? And 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: I 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. So 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. And Laban said, Behold, I would it might be according to thy word. And 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. And he set three days’ journey betwixt himself and Jacob: and Jacob fed the rest of Laban’s flocks. And 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. And 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. And the flocks conceived before the rods, and brought forth cattle ringstraked, speckled, and spotted. And 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. And 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. But when the cattle were feeble, he put them not in: so the feebler were Laban’s, and the stronger Jacob’s. And the man increased exceedingly, and had much cattle, and maidservants, and menservants, and camels, and asses. Chapter 31 And 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. And Jacob beheld the countenance of Laban, and, behold, it was not toward him as before. And the LORD said unto Jacob, Return unto the land of thy fathers, and to thy kindred; and I will be with thee. And Jacob sent and called Rachel and Leah to the field unto his flock, And 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. And ye know that with all my power I have served your father. And your father hath deceived me, and changed my wages ten times; but God suffered him not to hurt me. If 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. Thus God hath taken away the cattle of your father, and given them to me. And 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. And the angel of God spake unto me in a dream, saying, Jacob: And I said, Here am I. And 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. I 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. And Rachel and Leah answered and said unto him, Js there yet any portion or inheritance for us in our father’s house? Are we not counted of him strangers? for he hath sold us, and hath quite devoured also our money. For 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. Then Jacob rose up, and set his sons and his wives upon camels; And 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. And Laban went to shear his sheep: and Rachel had stolen the images that were her father’s. And Jacob stole away unawares to Laban the Syrian, in that he told him not that he fled. Sohe fled with all that he had; and he rose up, and passed over the river, and set his face toward the mount Gilead. 22, And it was told Laban on the third day that Jacob was fled. And he took his brethren with him, and pursued after him seven days’ journey; and they overtook him in the mount Gilead. And 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. Then Laban overtook Jacob. Now Jacob had pitched his tent in the mount: and Laban with his brethren pitched in the mount of Gilead. And 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? Wherefore 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? And hast not suffered me to kiss My sons and my daughters? thou hast Now done foolishly in so doing. It 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. And now, though thou wouldest needs be gone, because thou sore longedst after thy father’s house, yer wherefore hast thou stolen my gods? And Jacob answered and said to Laban, Because I was afraid: for I said, Peradventure thou wouldest take by force thy daughters from me. With 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. And 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. Now 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. And 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. And 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? Whereas 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. This 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. That 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. Thus I was; in the day the drought consumed me, and the frost by night; and my sleep departed from mine eyes. Thus 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. Except 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. And 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? Now therefore come thou, let us make a covenant, I and thou; and let it be for a witness between me and thee. And Jacob took a stone, and set it up for a pillar. And Jacob said unto his brethren, Gather stones; and they took stones, and made an heap: and they did eat there upon the heap. And Laban called it Jegarsahadutha: but Jacob called it Galeed. And Laban said, This heap is a witness between me and thee this day. Therefore was the name of it called Galeed; And Mizpah; for he said, The LORD watch between me and thee, when we are absent one from another. If 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. And Laban said to Jacob, Behold this heap, and behold this pillar, which I have cast betwixt me and thee; This 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. The 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. Then 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. And 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. Chapter 32 And Jacob went on his way, and the angels of God met him. And when Jacob saw them, he said, This is God’s host: and he called the name of that place Mahanaim. And Jacob sent messengers before him to Esau his brother unto the land of Seir, the country of Edom. And 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: And 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. And 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. Then 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; And said, If Esau come to the one company, and smite it, then the other company which is left shall escape. And 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: I 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. Deliver 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. And thou saidst, I will surely do thee good, and make thy seed as the sand of the sea, which cannot be numbered for multitude. And he lodged there that same night; and took of that which came to his hand a present for Esau his brother; Two hundred she goats, and twenty he goats, two hundred ewes, and twenty rams, Thirty milch camels with their colts, forty kine, and ten bulls, twenty she asses, and ten foals. And 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. And 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? Then 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. And 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. And 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. So went the present over before him: and himself lodged that night in the company. And he rose up that night, and took his two wives, and his two womenservants, and his eleven sons, and passed over the ford Jabbok. And he took them, and sent them over the brook, and sent over that he had. And Jacob was left alone; and there wrestled a man with him until the breaking of the day. And 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. And he said, Let me go, for the day breaketh. And he said, I will not let thee go, except thou bless me. And he said unto him, What is thy name? And he said, Jacob. And 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. And 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. And Jacob called the name of the lace Peniel: for I have seen God face to face, and my life is preserved. And as he passed over Penuel the sun rose upon him, and he halted upon his thigh. ; Therefore 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. Chapter 33 And 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. And he put the handmaids and their children foremost, and Leah and her children after, and Rachel and Joseph hindermost. And he passed over before them, and bowed himself to the ground seven times, until he came near to his brother. And Esau ran to meet him, and embraced him, and fell on his neck, and kissed him: and they wept. And 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. Then the handmaidens came near, they and their children, and they bowed themselves. And Leah also with her children came near, and bowed themselves: and after came Joseph near and Rachel, and they bowed themselves. And 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. And Esau said, I have enough, my brother; keep that thou hast unto thyself. And 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. Take, 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. And he said, Let us take our journey, and let us go, and I will go before thee. And 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. Let 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. And 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. So Esau returned that day on his way unto Seir. And Jacob journeyed to Succoth, and built him an house, and made booths for his cattle: therefore the name of the place is called Succoth. And 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. And 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. And he erected there an altar, and called it El-elohe-Israel. Chapter 34 And Dinah the daughter of Leah, which she bare unto Jacob, went out to see the daughters of the land. And when Shechem the son of Hamor the Hivite, prince of the country, saw her, he took her, and lay with her, and defiled her. And his soul clave unto Dinah the daughter of Jacob, and he loved the damsel, and spake kindly unto the damsel. And Shechem spake unto his father Hamor, saying, Get me this damsel to wife. And 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. And Hamor the father of Shechem went out unto Jacob to commune with him. And 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. And Hamor communed with them, saying, The soul of my son Shechem longeth for your daughter: I pray you give her him to wife. And make ye marriages with us, and give your daughters unto us, and take our daughters unto you. And ye shall dwell with us: and the land shall be before you; dwell and trade ye therein, and get you possessions therein. And 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. Ask 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. And the sons of Jacob answered Shechem and Hamor his father deceitfully, and said, because he had defiled Dinah their sister: And 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: But in this will we consent unto you: If ye will be as we be, that every male of you be circumcised; Then 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. Butif ye will not hearken unto us, to be circumcised; then will we take our daughter, and we will be gone. And their words pleased Hamor, and Shechem Hamor’s son. And 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. And Hamor and Shechem his son came unto the gate of their city, and communed with the men of their city, saying, These 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. Only 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. Shall 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. And 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. And 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. And they slew Hamorand Shechem his son with the edge of the sword, and took Dinah out of Shechem’s house, and went out. The sons of Jacob came upon the slain, and spoiled the city, because they had defiled their sister. They took their sheep, and their oxen, and their asses, and that which was in the city, and that which was in the field, And all their wealth, and all their little ones, and their wives took they captive, and spoiled even all that was in the house. And 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. And they said, Should he deal with our sister as with an harlot? Chapter 35 And 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. Then 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: And 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. And 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. And 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. So Jacob came to Luz, which is in the land of Canaan, that is, Beth-el, he and all the people that were with him. And 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. But Deborah Rebekah’s nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allon-bachuth. And God appeared unto Jacob again, when he came out of Padanaram, and blessed him. And 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. And 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; And 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. And God went up from him in the Jace where he talked with him. And 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. And Jacob called the name of the place where God spake with him, Bethel. And they journeyed from Beth-el; and there was but a little way to come to Ephrath: and Rachel travailed, and she had hard labour. And it came to pass, when she was in hard labour, that the midwife said unto her, Fear not; thou shalt have this son also. And 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. And Rachel died, and was buried in the way to Ephrath, which is Bethlehem. And Jacob set a pillar upon her grave: that is the pillar of Rachel’s grave unto this day. And Israel journeyed, and spread his tent beyond the tower of Edar. And 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: The sons of Leah; Reuben, Jacob’s firstborn, and Simeon, and Levi, and Judah, and Issachar, and Zebulun: The sons of Rachel; Joseph, and Benjamin: And the sons of Bilhah, Rachel’s handmaid; Dan, and Naphtali: And the sons of Zilpah, Leah’s handmaid; Gad, and Asher: these are the sons of Jacob, which were born to im in Padan-aram. And Jacob came unto Isaac his father unto Mamre, unto the city of Arbah, which is Hebron, where Abraham and Isaac sojourned. And the days of Isaac were an hundred and fourscore years. And 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. Chapter 36 Now these are the generations of Esau, who is Edom. Esau 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; And Bashemath Ishmael’s daughter, sister of Nebajoth. And Adah bare to Esau Eliphaz; and Bashemath bare Reuel; And Aholibamah bare Jeush, and Jaalam, and Korah: these are the sons of Esau, which were born unto him in the land of Canaan. And 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. For 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. Thus dwelt Esau in mount Seir: Esau is Edom. And these are the generations of Esau the father of the Edomites in mount Seir: These 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. And the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz. And Timna was concubine to Eliphaz Esau’s son; and she bare to Eliphaz Amalek: these were the sons of Adah Esau’s wife. And these are the sons of Reuel; Nahath, and Zerah, Shammah, and Mizzah: these were the sons of Bashemath Esau’s wife. And 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. These were dukes of the sons of Esau: the sons of Eliphaz the firstborn son of Esau; duke Teman, duke Omar, duke Zepho, duke Kenaz, Duke 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. And 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. And 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. These are the sons of Esau, who is Edom, and these are their dukes. These are the sons of Seir the Horite, who inhabited the land; Lotan, and Shobal, and Zibeon, and Anah, And Dishon, and Ezer, and Dishan: these are the dukes of the Horites, the children of Seir in the land of Edom. And the children of Lotan were Hori and Hemam; and Lotan’s sister was Timna. And the children of Shobal were these; Alvan, and Manahath, and Ebal, Shepho, and Onam. And 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. And the children of Anah were these; Dishon, and Aholibamah the daughter of Anah. And these are the children of Dishon; Hemdan, and Eshban, and Ithran, and Cheran. The children of Ezer are these; Bilhan, and Zaavan, and Akan. The children of Dishan are these; Uz, and Aran. These are the dukes that came of the Horites; duke Lotan, duke Shobal, duke Zibeon, duke Anah, Duke Dishon, duke Ezer, duke Dishan: these are the dukes that came of Hori, among their dukes in the land of Seir. And these are the kings that reigned in the land of Edom, before there reigned any king over the children of Israel. And Bela the son of Beor reigned in Edom: and the name of his city was Dinhabah. And Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead. And Jobab died, and Husham of the land of Temani reigned in his stead. And 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. And Hadad died, and Samlah of Masrekah reigned in his stead. And Samlah died, and Saul of Rehoboth by the river reigned in his stead. And Saul died, and Baal-hanan the son of Achbor reigned in his stead. And 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. And 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, Duke Aholibamah, duke Elah, duke Pinon, Duke Kenaz, duke Teman, duke Mibzar, Duke 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. Chapter 37 And Jacob dwelt in the land wherein his father was a stranger, in the land of Canaan. These 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. Now 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. And when his brethren saw that their father loved him more than all his brethren, they hated him, and could not speak peaceably unto him. And Joseph dreamed a dream, and he told it his brethren: and they hated him yet the more. And he said unto them, Hear, I pray you, this dream which I have dreamed: For, 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. And 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. And 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. And 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? And his brethren envied him; but his father observed the saying. And his brethren went to feed their father’s flock in Shechem. And 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. And 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. And acertain man found him, and, behold, he was wandering in the field: and the man asked him, saying, What seekest thou? And he said, I seek my brethren: tell me, I pray thee, where they feed their flocks. And 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. . And when they saw him afar off, even before he came near unto them, they conspired against him to slay him. And they said one to another, Behold, this dreamer cometh. Come 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. And Reuben heard it, and he delivered him out of their hands; and said, Let us not kill him. 22, 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. And 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; And they took him, and cast him into a pit: and the pit was empty, there was no water in it. And 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. And Judah said unto his brethren, What profit is it if we slay our brother, and conceal his blood? Come, 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. Then 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. And Reuben returned unto the pit; and, behold, Joseph was not in the pit; and he rent his clothes. And he returned unto his brethren, and said, The child is not; and I, whither shall I go? And they took Joseph’s coat, and killed a kid of the goats, and dipped the coat in the blood; And 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. And he knew it, and said, It is my son’s coat; an evil beast hath devoured him; Joseph is without doubt rent in pieces. And Jacob rent his clothes, and put sackcloth upon his loins, and mourned for his son many days. And 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. And the Midianites sold him into Egypt unto Potiphar, an officer of Pharaoh’s, and captain of the guard. Chapter 38 And 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. And Judah saw there a daughter of a certain Canaanite, whose name was Shuah; and he took her, and went in unto her. And she conceived, and bare a son; and he called his name Er. And she conceived again, and bare a son; and she called his name Onan. And she yet again conceived, and bare a SON; and called his name Shelah: and he was at Chezib, when she bare him. And Judah took a wife for Er his firstborn, whose name was Tamar. And Er, Judah’s firstborn, was wicked in the sight of the LORD; and the LORD slew him. And Judah said unto Onan, Go in unto thy brother’s wife, and marry her, and raise up seed to thy brother. And 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. And the thing which he did displeased the LORD: wherefore he slew him also. Then 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. And 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. And it was told Tamar, saying, Behold thy father in law goeth up to Timnath to shear his sheep. And 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. When Judah saw her, he thought her to be an harlot; because she had Covered her face. And 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? And he said, I will send thee a kid from the flock. And she said, Wilt thou give me a pledge, till thou send it? And 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. And she arose, and went away, and laid by her vail from her, and put on the garments of her widowhood. And 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. Then 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. And 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. And Judah said, Let her take it to her, lest we be shamed: behold, I sent this kid, and thou hast not found her. And 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. When 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. And 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. And it came to pass in the time of her travail, that, behold, twins were in her womb. And 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. And 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. And afterward came out his brother, that had the scarlet thread upon his hand: and his name was called Zarah. Chapter 39 And 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. And the LORD was with Joseph, and he was a prosperous man; and he was in the house of his master the Egyptian. And his master saw that the LORD was with him, and that the LORD made all that he did to prosper in his hand. And 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. And 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. And 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. And it came to pass after these things, that his master’s wife cast her eyes upon Joseph; and she said, Lie with me. But 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; There 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? And 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. And 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. And she caught him by his garment, saying, Lie with me: and he left his garment in her hand, and fled, and got him out. And it came to pass, when she saw that he had left his garment in her hand, and was fled forth, That 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: And 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. And she laid up his garment by her, til his lord came home. And 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: And it came to pass, as I lifted up my voice and cried, that he left his garment with me, and fled out. And 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. And 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. But the LORD was with Joseph, and shewed him mercy, and gave him favour in the sight of the keeper of the prison. And 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. The 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. Chapter 40 And 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. And Pharaoh was wroth against two of his officers, against the chief Of the butlers, and against the chief of the bakers. And he put them in ward in the house of the captain of the guard, into the prison, the place where Joseph was bound. And the captain of the guard charged Joseph with them, and he served them: and they continued a season in ward. And 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. And Joseph came in unto them in the morning, and looked upon them, and, behold, they were sad. And 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? And 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. And the chief butler told his dream to Joseph, and said to him, In my dream, behold, a vine was before me; And 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: And 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. And Joseph said unto him, This is the interpretation of it: The three branches are three days: Yet 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. But 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: For 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. When 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: And 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. And Joseph answered and said, This is the interpretation thereof: The three baskets are three days: Yet 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. And 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. And he restored the chief butler unto his butlership again; and he gave the cup into Pharaoh’s hand: But he hanged the chief baker: as Joseph had interpreted to them. Yet did not the chief butler remember Joseph, but forgat him. Chapter 41 And it came to pass at the end of two full years, that Pharaoh dreamed: and, behold, he stood by the river. And, behold, there came up out of the river seven well favoured kine and fatfleshed; and they fed in a meadow. And, 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. And the ill favoured and leanfleshed kine did eat up the seven well favoured and fat kine. So Pharaoh awoke. And he slept and dreamed the second time: and, behold, seven ears of corn came up upon one stalk, rank and good. And, behold, seven thin ears and blasted with the east wind sprung up after them. And the seven thin ears devoured the seven rank and full ears. And Pharaoh awoke, and, behold, it was a dream. And 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. Then spake the chief butler unto Pharaoh, saying, I do remember my faults this day: Pharaoh was wroth with his servants, and put me in ward in the captain of the guard’s house, both me and the chief baker: And we dreamed a dream in one night, I and he; we dreamed each man according to the interpretation of his dream. And 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. And it came to pass, as he interpreted to us, so it was; me he restored unto mine office, and him he hanged. Then 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. And 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. And Joseph answered Pharaoh, saying. It is not in me: God shall give Pharaoh an answer of peace. And Pharaoh said unto Joseph, In my dream, behold, I stood upon the bank of the river: And, behold, there came up out of the river seven kine, fatfleshed and well favoured; and they fed in a meadow: And, 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; And the lean and the ill favoured kine did eat up the first seven fat kine: Ann 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. And I saw in my dream, and, behold, seven ears came up in one stalk, full and good. And, behold, seven ears, withered, thin, and blasted with the east wind, sprung up after them: And 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. And Joseph said unto Pharaoh, The dream of Pharaoh is one: God hath shewed Pharaoh what he is about to do. The seven good kine are seven Years; and the seven good ears are seven years; the dream is one. And 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. This is the thing which I have spoken unto Pharaoh: What God is about to do he sheweth unto Pharaoh. Behold, there come seven years of great plenty throughout all the land of Egypt: And 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; And the plenty shall not be known in the land by reason of that famine following; for it shall be very grievous. And 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. Now therefore let Pharaoh look out a man discreet and wise, and set him over the land of Egypt. Let 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. And 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. And 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. And the thing was good in the eyes of Pharaoh, and in the eyes of all his servants. And Pharaoh said unto his servants, Can we find such a one as this is, a man in whom the Spirit of God is? And Pharaoh said unto Joseph, Forasmuch as God hath shewed thee all this, there is none so discreet and wise as thou art: Thou 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. And Pharaoh said unto Joseph, See, I have set thee over all the land of Egypt. . And 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; And 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. And 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. And 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. And 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. And in the seven plenteous years the earth brought forth by handfuls. And 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. And Joseph gathered corn as the sand of the sea, very much, until he left numbering; for it was without number. And unto Joseph were born two sons before the years of famine came, which Asenath the daughter of Potipherah priest of On bare unto him. And 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. And the name of the second called he Ephraim: For God hath caused me to be fruitful in the land of my affliction. And the seven years of plenteousness, that was in the land of Egypt, were ended. And 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. And 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. And 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. And all countries came into Egypt to Joseph for to buy corn; because that the famine was so sore in all lands. Chapter 42 Now when Jacob saw that there was corn in Egypt, Jacob said unto his sons, Why do ye look one upon another? And 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. And Joseph’s ten brethren went down to buy corn in Egypt. But Benjamin, Joseph’s brother, cob sent not with his brethren; for he said, Lest peradventure mischief befall him. And the sons of Israel came to buy corn among those that came: for the famine was in the land of Canaan. And 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. And 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. And Joseph knew his brethren, but they knew not him. And 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. And they said unto him, Nay, my lord, but to buy food are thy servants come. Weare all one man’s sons; we are true men, thy servants are no spies. And he said unto them, Nay, but to see the nakedness of the land ye are come. And 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. And Joseph said unto them, That is it that I spake unto you, saying, Ye are spies: Hereby ye shall be proved: By the life of Pharaoh ye shall not go forth hence, except your youngest brother come hither. Send 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. And he put them all together into ward three days. And Joseph said unto them the third day, This do, and live; for I fear God: If 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: But bring your youngest brother unto me; so shall your words be verified, and ye shall not die. And they did so. And 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. And 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. And they knew not that Joseph understood them; for he spake unto them by an interpreter. And 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. Then 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. And they laded their asses with the corn, and departed thence. And 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. And 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? And they came unto Jacob their father unto the land of Canaan, and told him all that befell unto them; saying, The man, who is the lord of the Jand, spake roughly to us, and took us for spies of the country. And we said unto him, We are true men; we are no spies: We be twelve brethren, sons of our father; one is not, and the youngest is this day with our father in the land of Canaan. And 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: And 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. And 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. And 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. And 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. And 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. Chapter 43 And the famine was sore in the land. And 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. And 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. If thou wilt send our brother with us, we will go down and buy thee food: But 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. And Israel said, Wherefore dealt ye so ill with me, as to tell the man whether ye had yet a brother? And 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? And 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. I 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: For except we had lingered, surely now we had returned this second time. And 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: And 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: Take also your brother, and arise, o again unto the man: And 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. And 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. And 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. And the man did as Joseph bade; and the man brought the men into Joseph’s house. And 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. And they came near to the steward of Joseph’s house, and they communed with him at the door of the house, And said, O sir, we came indeed down at the first time to buy food: And 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. And other money have we brought down in our hands to buy food: we cannot tell who put our money in our sacks. And 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. And the man brought the men into Joseph’s house, and gave them water, and they washed their feet; and he gave their asses provender. And they made ready the present against Joseph came at noon: for they heard that they should eat bread there. And 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. And he asked them of their welfare, and said, Js your father well, the old man of whom ye spake? /s he yet alive? And they answered, Thy servant our father is in good health, he is yet alive. And they bowed down their heads, and made obeisance. And 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. And 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. And he washed his face, and went out, and refrained himself, and said, Set on bread. And 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. . And they sat before him, the firstborn according to his birthright, and the youngest according to his youth: and the men marvelled one at another. And 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. Chapter 44 And 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. And 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. As soon as the morning was light, the men were sent away, they and their asses. And 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? Is not this it in which my lord drinketh, and whereby indeed he divineth? ye have done evil in so doing. And he overtook them, and he spake unto them these same words. And they said unto him, Wherefore saith my lord these words? God forbid that thy servants should do according to this thing: Behold, 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? With whomsoever of thy servants it be found, both let him die, and we also will be my lord’s bondmen. And 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. Then they speedily took down every man his sack to the ground, and opened every man his sack. And he searched, and began at the eldest, and left at the youngest: and the cup was found in Benjamin’s sack. Then they rent their clothes, and laded every man his ass, and returned to the city. And Judah and his brethren came to Joseph’s house; for he was yet there: and they fell before him on the ground. And Joseph said unto them, What deed is this that ye have done? wot ye not that such a man as I can certainly divine? And 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. And 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. Then 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. My lord asked his servants, saying, Have ye a father, or a brother? And 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. And thou saidst unto thy servants, Bring him down unto me, that I may mine eyes upon him. And we said unto my lord, The lad cannot leave his father: for if he should leave his father, his father would die. And thou saidst unto thy servants, Except your youngest brother come down with you, ye shall see my face no more. And it came to pass when we came up unto thy servant my father, we told him the words of my lord. And our father said, Go again, and buy us a little food. And 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. And thy servant my father said unto us, Ye know that my wife bare me two sons: And the one went out from me, and I said, Surely he is torn in pieces; and I saw him not since: And if ye take this also from me, and mischief befall him, ye shall bring down my gray hairs with sorrow to the grave. Now 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; It 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. For 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. Now 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. For 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. Chapter 45 Then 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. And he wept aloud: and the Egyptians and the house of Pharaoh heard. And 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. And 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. Now therefore be not grieved, nor angry with yourselves, that ye sold me hither: for God did send me before you to preserve life. For 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. And God sent me before you to preserve you a posterity in the earth, and to save your lives by a great deliverance. So 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. Haste 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: And 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: And 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. And, behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaketh unto you. And 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. And he fell upon his brother Benjamin’s neck, and wept; and Benjamin wept upon his neck. Moreover he kissed all his brethren, and wept upon them: and after that his brethren talked with him. And the fame thereof was heard in Pharaoh’s house, saying, Joseph’s brethren are come: and it pleased Pharaoh well, and his servants. And Pharaoh said unto Joseph, Say unto thy brethren, This do ye; lade your beasts, and go, get you unto the land of Canaan; And 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. Now 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, Also regard not your stuff; for the 800d of all the land of Egypt is yours. And the children of Israel did so: and Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way. To 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. And 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. So he sent his brethren away, and they departed: and he said unto them, See that ye fall not out by the way. And they went up out of Egypt, and came into the land of Canaan unto Jacob their father, And 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. And 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: And Israel said, /t is enough; Joseph my son is yet alive: I will go and see him before I die. Chapter 46 And Israel took his journey with all that he had, and came to Beer-sheba, and offered sacrifices unto the God of his father Isaac. And God spake unto Israel in the visions of the night, and said, Jacob, Jacob. And he said, Here am I. And 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: I 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. And 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. And 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: His sons, and his sons’ sons with him, his daughters, and his sons’ daughters, and all his seed brought he with him into Egypt. And these are the names of the children of Israel, which came into Egypt, Jacob and his sons: Reuben, Jacob's firstborn. And the sons of Reuben; Hanoch, and Hezron, and Hezron, and Carmi. And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman. And the sons of Levi; Gershon, Kohath, and Merari. And 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. And the sons of Issachar; Tola, and Phuvah, and Job and Shimron. And the sons of Zebulun; Sered, and Elon, and Jahleel. These 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. And the sons of Gad; Ziphion, and Haggi, Shuni, and Ezbon, Eri, and Arodi, and Areli. And the sons of Asher; Jimnah, and Ishuah and Isui, and Beriah, and Serah their sister: and the sons of Beriah; Heber, and Malchiel. These are the sons of Zilpah, whom Laban gave to Leah his daughter, and these she bare unto Jacob, even sixteen souls. The sons of Rachel Jacob’s wife; Joseph, and Benjamin. And 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. And the sons of Benjamin were Belah, and Becher, and Ashbel, Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard. These are the sons of Rachel, which were born to Jacob: all the souls were fourteen. And the sons of Dan; Hushim. And the sons of Naphtali; Jahzeel, and Guni, and Jezer, and Shillem. These are the sons of Bilhah, which Laban gave unto Rachel his daughter, and she bare these unto Jacob: all the souls were seven. All 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; And 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. And he sent Judah before him unto Joseph, to direct his face unto Goshen; and they came into the land of Goshen. And 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. And Israel said unto Joseph, Now let me die, since I have seen thy face, because thou art yet alive. And 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; And 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. And it shall come to pass, when Pharaoh shall call you, and shall say, What is your occupation? That 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. Chapter 47 Then 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. And he took some of his brethren, even five men, and presented them unto Pharaoh. And Pharaoh said unto his brethren, What is your occupation? And they said unto Pharaoh, Thy servants are shepherds, both we, and also our fathers. They 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. And Pharaoh spake unto Joseph, Saying, Thy father and thy brethren are come unto thee: The 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. And Joseph brought in Jacob his father, and set him before Pharaoh: and Jacob blessed Pharaoh. And Pharaoh said unto Jacob, How old art thou? And 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. And Jacob blessed Pharaoh, and went out from before Pharaoh. And 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. And Joseph nourished his father, and his brethren, and all his father’s household, with bread, according to their families. And 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. And 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. And 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. And Joseph said, Give your cattle; and I will give you for your cattle, if money fail. And 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. When 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: Wherefore 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. And 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. And as for the people, he removed them to cities from one end of the borders of Egypt even to the other end thereof. Only 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. Then 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. And 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. And they said, Thou hast saved our lives: let us find grace in the sight of my lord, and we will be Pharaoh’s servants. And 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. And Israel dwelt in the land of Egypt, in the country of Goshen; and they had possessions therein, and grew, and multiplied exceedingly. And Jacob lived in the land of Egypt seventeen years: so the whole age of Jacob was an hundred forty and seven years. And 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: But 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. And he said, Swear unto me. And he sware unto him. And Israel bowed himself upon the bed’s head. Chapter 48 And 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. And one told Jacob, and said, Behold, thy son Joseph cometh unto thee: and Israel strengthened himself, and sat upon the bed. And Jacob said unto Joseph, God Almighty appeared unto me at Luz in the land of Canaan, and blessed me, And 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. And 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. And thy issue, which thou begettest after them, shall be thine, and shall be called after the name of their brethren in their inheritance. And 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. And Israel beheld Joseph’s sons, and said, Who are these? And 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. Now 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. And Israel said unto Joseph, I had not thought to see thy face: and, lo, God hath shewed me also thy seed. And Joseph brought them out from between his knees, and he bowed himself with his face to the earth. And 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. And 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, And 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, The 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. And 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. And Joseph said unto his father, Not so, my father: for this is the firstborn; put thy right hand upon his head. And 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. And 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. And Israel said unto Joseph, Behold, I die: but God shall be with you, and bring you again unto the land of your fathers. Moreover 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. Chapter 49 And Jacob called unto his sons, and said, Gather yourselves together, that I may tell you that which shall befall you in the last days. Gather yourselves together, and hear, ye sons of Jacob; and hearken unto Israel your father. Reuben, thou art my firstborn, my might, and the beginning of my strength, the excellency of dignity, and the excellency of power: Unstable 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. Simeon and Levi are brethren; instruments of cruelty are in their habitations. O 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. Cursed 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. Judah, 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. Judah 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? The 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. Binding 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: His eyes shall be red with wine, and his teeth white with milk. Zebulun shall dwell at the haven of the Sea; and he shall be for an haven Of ships; and his border shall be unto Zidon. Issachar is a strong ass couching down between two burdens: And 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. Dan shall judge his people, as one of the tribes of Israel. Dan shall be a serpent by the way, an adder in the path, that biteth the horse heels, so that his rider shall fall backward. I have waited for thy salvation, O LORD. Gad, a troop shall overcome him: but he shall overcome at the last. Out of Asher his bread shall be fat, and he shall yield royal dainties. Naphtali is a hind let loose: he giveth goodly words. Joseph is a fruitful bough, even a fruitful bough by a well; whose branches run over the wall: The archers have sorely grieved him, and shot at him, and hated him: But 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:) Even 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: The 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. ; ; Benjamin shall ravin as a wolf: in the morning he shall devour the prey, and at night he shall divide the spoil. All 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. And 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, In 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. There they buried Abraham and Sarah his wife; there they buried Isaac and Rebekah his wife; and there I buried Leah. The purchase of the field and of the cave that is therein was from the children of Heth. And 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. Chapter 50 And Joseph fell upon his father’s pce. and wept upon him, and kissed im. And Joseph commanded his servants the physicians to embalm his father: and the physicians embalmed Israel. And 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. And 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, My 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. And Pharaoh said, Go up, and bury thy father, according as he made thee swear. And 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, And 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. And there went up with him both chariots and horsemen: and it was a very great company. And 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. And 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. And his sons did unto him according as he commanded them: For 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. And 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. And 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. And they sent a messenger unto Joseph, saying, Thy father did command before he died, saying, So 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. And his brethren also went and fell down before his face; and they said, Behold, we be thy servants. And Joseph said unto them, Fear not: for am I in the place of God? But 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. Now therefore fear ye not: I will nourish you, and your little ones. And he comforted them, and spake kindly unto them. And Joseph dwelt in Egypt, he, and his father’s house: and Joseph lived an hundred and ten years. And 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. And 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. And Joseph took an oath of the children of Israel, saying, God will surely visit you, and ye shall carry up my bones from hence. Now these are the names of the children of Israel, which came into Egypt; every man and his household came with Jacob. Reuben, Simeon, Levi, and Judah, Issachar, Zebulun, and Benjamin, Dan, and Naphtali, Gad, and Asher. And all the souls that came out of the loins of Jacob were seventy souls: for Joseph was in Egypt already. And Joseph died, and all his brethren, and all that generation. And the children of Israel were fruitful, and increased abundantly, and multiplied, and waxed exceeding mighty; and the land was filled with them. Now there arose up a new king over Egypt, which knew not Joseph. And he said unto his people, Behold, the people of the children of Israel are more and mightier than we: Come 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. Therefore they did set over them taskmasters to afflict them with their burdens. And they built for Pharaoh treasure cities, Pithom and Raamses. But the more they afflicted them, the more they multiplied and grew. And they were grieved because of the children of Israel. And the Egyptians made the children of Israel to serve with rigour: And 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. And 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: And 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. But the midwives feared God, and did not as the king of Egypt commanded them, but saved the men children alive. And 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? And 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. Therefore God dealt well with the midwives: and the people multiplied, and waxed very mighty. And it came to pass, because the midwives feared God, that he made them houses. And Pharaoh charged all his people, saying, Every son that is born ye shall cast into the river, and every daughter ye shall save alive. And there went a man* [Amram] of the house of Levi, and took to wife* [Jachobed] a daughter of Levi. And the woman conceived, and bare a son: and when she saw him that he was a goodly child, she hid him three months. And 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. And his sister stood afar off, to wit what would be done to him. And 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. And 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. Then 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? And Pharaoh's daughter said to her, Go. And the maid went and called the child's mother. And 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. And 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. And 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. And 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. And 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? And 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. Now 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. Now the priest of Midian had seven daughters: and they came and drew water, and filled the troughs to water their father's flock. And the shepherds came and drove them away: but Moses stood up and helped them, and watered their flock. And when they came to Reuel their father, he said, How is it that ye are come so soon to day? And they said, An Egyptian delivered us out of the hand of the shepherds, and also drew water enough for us, and watered the flock. And 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. And Moses was content to dwell with the man: and he gave Moses Zipporah his daughter. And she bare him a son, and he called his name Gershom: for he said, I have been a stranger in a strange land. And 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. And God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob. And God looked upon the children of Israel, and God had respect unto them. Now 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 And 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. And Moses said, I will now turn aside, and see this great sight, why the bush is not burnt. And 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." And he said, Draw not nigh hither: put off thy shoes from off thy feet, for the place whereon thou standest is holy ground. Moreover 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. And 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; And 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. Now 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. Come now therefore, and I will send thee unto Pharaoh, that thou mayest bring forth my people the children of Israel out of Egypt. And 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? And 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. And 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? And 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. And 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. Go, 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: And 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. And 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. And I am sure that the king of Egypt will not let you go, no, not by a mighty hand. And 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. And 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. But 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. And 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. And the Lord said unto him, What is that in thine hand? And he said, A rod. And 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. And 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: That 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. And 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. And 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. And 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. And 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. And 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. And 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? Now therefore go, and I will be with thy mouth, and teach thee what thou shalt say. And he said, O my Lord, send, I pray thee, by the hand of him whom thou wilt send. And 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. And 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. And 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. And thou shalt take this rod in thine hand, wherewith thou shalt do signs. And 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. And the Lord said unto Moses in Midian, Go, return into Egypt: for all the men are dead which sought thy life. And 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. And 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. And thou shalt say unto Pharaoh, Thus saith the Lord, Israel is my son, even my firstborn: And 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. And it came to pass by the way in the inn, that the Lord met him, and sought to kill him. Then 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. So he let him go: then she said, A bloody husband thou art, because of the circumcision. And 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. And Moses told Aaron all the words of the Lord who had sent him, and all the signs which he had commanded him. And Moses and Aaron went and gathered together all the elders of the children of Israel: And Aaron spake all the words which the Lord had spoken unto Moses, and did the signs in the sight of the people. And 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. And 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. And 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. And 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. And the king of Egypt said unto them, Wherefore do ye, Moses and Aaron, let the people from their works? get you unto your burdens. And Pharaoh said, Behold, the people of the land now are many, and ye make them rest from their burdens. And Pharaoh commanded the same day the taskmasters of the people, and their officers, saying, Ye shall no more give the people straw to make brick, as heretofore: let them go and gather straw for themselves. And 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. Let there more work be laid upon the men, that they may labour therein; and let them not regard vain words. And 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. Go ye, get you straw where ye can find it: yet not ought of your work shall be diminished. So the people were scattered abroad throughout all the land of Egypt to gather stubble instead of straw. And the taskmasters hasted them, saying, Fulfill your works, your daily tasks, as when there was straw. And 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? Then the officers of the children of Israel came and cried unto Pharaoh, saying, Wherefore dealest thou thus with thy servants? There 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. But he said, Ye are idle, ye are idle: therefore ye say, Let us go and do sacrifice to the Lord. Go therefore now, and work; for there shall no straw be given you, yet shall ye deliver the tale of bricks. And 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. And they met Moses and Aaron, who stood in the way, as they came forth from Pharaoh: And 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. And Moses returned unto the Lord, and said, Lord, wherefore hast thou so evil entreated this people? why is it that thou hast sent me? For 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. Then 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. And God spake unto Moses, and said unto him, I am the Lord: And 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. And 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. And I have also established my covenant with them, to give them the land of Canaan, the land of their pilgrimage, wherein they were strangers. And I have also heard the groaning of the children of Israel, whom the Egyptians keep in bondage; and I have remembered my covenant. Wherefore 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: And 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. And 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. And Moses spake so unto the children of Israel: but they hearkened not unto Moses for anguish of spirit, and for cruel bondage. And the Lord spake unto Moses, saying, Go in, speak unto Pharaoh king of Egypt, that he let the children of Israel go out of his land. And 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? And 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. These 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. And 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. And 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. The sons of Gershon; Libni, and Shimi, according to their families. And 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. And the sons of Merari; Mahali and Mushi: these are the families of Levi according to their generations. And 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. And the sons of Izhar; Korah, and Nepheg, and Zichri. And the sons of Uzziel; Mishael, and Elzaphan, and Zithri. And Aaron took him Elisheba, daughter of Amminadab, sister of Naashon, to wife; and she bare him Nadab, and Abihu, Eleazar, and Ithamar. And the sons of Korah; Assir, and Elkanah, and Abiasaph: these are the families of the Korhites. And 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. These 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. These are they which spake to Pharaoh king of Egypt, to bring out the children of Israel from Egypt: these are that Moses and Aaron. And it came to pass on the day when the Lord spake unto Moses in the land of Egypt, That the Lord spake unto Moses, saying, I am the Lord: speak thou unto Pharaoh king of Egypt all that I say unto thee. And Moses said before the Lord, Behold, I am of uncircumcised lips, and how shall Pharaoh hearken unto me? And the Lord said unto Moses, See, I have made thee a god to Pharaoh: and Aaron thy brother shall be thy prophet. Thou 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. And I will harden Pharaoh's heart, and multiply my signs and my wonders in the land of Egypt. But 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. And 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. And Moses and Aaron did as the Lord commanded them, so did they. And Moses was fourscore years old, and Aaron fourscore and three years old, when they spake unto Pharaoh. And the Lord spake unto Moses and unto Aaron, saying, When 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. And 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. Then Pharaoh also called the wise men and the sorcerers: now the magicians of Egypt, they also did in like manner with their enchantments. For they cast down every man his rod, and they became serpents: but Aaron's rod swallowed up their rods. And he hardened Pharaoh's heart, that he hearkened not unto them; as the Lord had said. And the Lord said unto Moses, Pharaoh's heart is hardened, he refuseth to let the people go. Get 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. And 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. Thus 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. And 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. And 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. And 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. And 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. And 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. And Pharaoh turned and went into his house, neither did he set his heart to this also. And all the Egyptians digged round about the river for water to drink; for they could not drink of the water of the river. And seven days were fulfilled, after that the Lord had smitten the river. And 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. And if thou refuse to let them go, behold, I will smite all thy borders with frogs: And 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: And the frogs shall come up both on thee, and upon thy people, and upon all thy servants. And 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. And Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt. And the magicians did so with their enchantments, and brought up frogs upon the land of Egypt. Then 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. And 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? And 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. And 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. And Moses and Aaron went out from Pharaoh: and Moses cried unto the Lord because of the frogs which he had brought against Pharaoh. And 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. And they gathered them together upon heaps: and the land stank. But when Pharaoh saw that there was respite, he hardened his heart, and hearkened not unto them; as the Lord had said. And 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. And 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. And the magicians did so with their enchantments to bring forth lice, but they could not: so there were lice upon man, and upon beast. Then 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. And 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. Else, 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. And 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. And I will put a division between my people and thy people: to morrow shall this sign be. And 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. And Pharaoh called for Moses and for Aaron, and said, Go ye, sacrifice to your God in the land. And 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? We will go three days' journey into the wilderness, and sacrifice to the Lord our God, as he shall command us. And 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. And 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. And Moses went out from Pharaoh, and entreated the Lord. And 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. And Pharaoh hardened his heart at this time also, neither would he let the people go. Then 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. For if thou refuse to let them go, and wilt hold them still, Behold, 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. And 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. And the Lord appointed a set time, saying, To morrow the Lord shall do this thing in the land. And 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. And 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. And 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. And 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. And 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. And the magicians could not stand before Moses because of the boils; for the boil was upon the magicians, and upon all the Egyptians. And the Lord hardened the heart of Pharaoh, and he hearkened not unto them; as the Lord had spoken unto Moses. And 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. For 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. For 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. And 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. As yet exaltest thou thyself against my people, that thou wilt not let them go? Behold, 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. Send 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. He that feared the word of the Lord among the servants of Pharaoh made his servants and his cattle flee into the houses: And he that regarded not the word of the Lord left his servants and his cattle in the field. And 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. And 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. So 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. And 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. Only in the land of Goshen, where the children of Israel were, was there no hail. And 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. Intreat 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. And 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. But as for thee and thy servants, I know that ye will not yet fear the Lord God. And the flax and the barley was smitten: for the barley was in the ear, and the flax was bolled. But the wheat and the rie were not smitten: for they were not grown up. And 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. And 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. And 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: And 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. And 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. Else, if thou refuse to let my people go, behold, to morrow will I bring the locusts into thy coast: And 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: And 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. And 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? And 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? And 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. And 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. Not 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. And 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. And 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. And 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. For 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. Then Pharaoh called for Moses and Aaron in haste; and he said, I have sinned against the Lord your God, and against you. Now 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. And he went out from Pharaoh, and intreated the Lord. And 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. But the Lord hardened Pharaoh's heart, so that he would not let the children of Israel go. And 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. And Moses stretched forth his hand toward heaven; and there was a thick darkness in all the land of Egypt three days: They saw not one another, neither rose any from his place for three days: but all the children of Israel had light in their dwellings. And 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. And Moses said, Thou must give us also sacrifices and burnt offerings, that we may sacrifice unto the Lord our God. Our 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. But the Lord hardened Pharaoh's heart, and he would not let them go. And 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. And Moses said, Thou hast spoken well, I will see thy face again no more. And 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. Speak 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. And 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. And Moses said, Thus saith the Lord, About midnight will I go out into the midst of Egypt: And 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. And 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. But 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. And 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. And the Lord said unto Moses, Pharaoh shall not hearken unto you; that my wonders may be multiplied in the land of Egypt. And 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. And the Lord spake unto Moses and Aaron in the land of Egypt saying, This month shall be unto you the beginning of months: it shall be the first month of the year to you. Speak 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: And 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. Your lamb shall be without blemish, a male of the first year: ye shall take it out from the sheep, or from the goats: And 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. And 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. And they shall eat the flesh in that night, roast with fire, and unleavened bread; and with bitter herbs they shall eat it. Eat not of it raw, nor sodden at all with water, but roast with fire; his head with his legs, and with the purtenance thereof. And ye shall let nothing of it remain until the morning; and that which remaineth of it until the morning ye shall burn with fire. And 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. For 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. And 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. And 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. Seven 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. And 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. And 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. In 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. Seven 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. Ye shall eat nothing leavened; in all your habitations shall ye eat unleavened bread. Then 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. And 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. For 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. And ye shall observe this thing for an ordinance to thee and to thy sons for ever. And 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. And it shall come to pass, when your children shall say unto you, What mean ye by this service? That 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. And the children of Israel went away, and did as the Lord had commanded Moses and Aaron, so did they. And 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. And 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. And 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. Also take your flocks and your herds, as ye have said, and be gone; and bless me also. And 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. And the people took their dough before it was leavened, their kneadingtroughs being bound up in their clothes upon their shoulders. And 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: And 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. And the children of Israel journeyed from Rameses to Succoth, about six hundred thousand on foot that were men, beside children. And a mixed multitude went up also with them; and flocks, and herds, even very much cattle. And 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. Now the sojourning of the children of Israel, who dwelt in Egypt, was four hundred and thirty years. And 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. It 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. And the Lord said unto Moses and Aaron, This is the ordinance of the passover: There shall no stranger eat thereof: But every man's servant that is bought for money, when thou hast circumcised him, then shall he eat thereof. A foreigner and an hired servant shall not eat thereof. In 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. All the congregation of Israel shall keep it. And 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. One law shall be to him that is homeborn, and unto the stranger that sojourneth among you. Thus did all the children of Israel; as the Lord commanded Moses and Aaron, so did they. And 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. And the Lord spake unto Moses, saying, Sanctify unto me all the firstborn, whatsoever openeth the womb among the children of Israel, both of man and of beast: it is mine. And 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. This day came ye out in the month Abib. And 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. Seven days thou shalt eat unleavened bread, and in the seventh day shall be a feast to the Lord. Unleavened 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. And 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. And 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. Thou shalt therefore keep this ordinance in his season from year to year. And 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, That 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. And 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. And 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: And 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. And 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. And 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: But 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. And 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. And they took their journey from Succoth, and encamped in Etham, in the edge of the wilderness. And 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: He took not away the pillar of the cloud by day, nor the pillar of fire by night, from before the people. And the Lord spake unto Moses, saying, Speak 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. For Pharaoh will say of the children of Israel, They are entangled in the land, the wilderness hath shut them in. And 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. And 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? And he made ready his chariot, and took his people with him: And he took six hundred chosen chariots, and all the chariots of Egypt, and captains over every one of them. And 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. But 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. And 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. And 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? Is 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. And 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. The Lord shall fight for you, and ye shall hold your peace. And the Lord said unto Moses, Wherefore criest thou unto me? speak unto the children of Israel, that they go forward: But 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. And 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. And the Egyptians shall know that I am the Lord, when I have gotten me honour upon Pharaoh, upon his chariots, and upon his horsemen. And 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: And 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. And 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. And 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. And the Egyptians pursued, and went in after them to the midst of the sea, even all Pharaoh's horses, his chariots, and his horsemen. And 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, And 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. And 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. And 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. And 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. But 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. Thus the Lord saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead upon the sea shore. And 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. Then 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. The 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. The YHWH is a man of war: the YHWH is his name. Pharaoh's chariots and his host hath he cast into the sea: his chosen captains also are drowned in the Red sea. The depths have covered them: they sank into the bottom as a stone. Thy right hand, O Lord, is become glorious in power: thy right hand, O Lord, hath dashed in pieces the enemy. And 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. And 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. The 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. Thou didst blow with thy wind, the sea covered them: they sank as lead in the mighty waters. Who is like unto thee, O Lord, among the gods? who is like thee, glorious in holiness, fearful in praises, doing wonders? Thou stretchedst out thy right hand, the earth swallowed them. Thou in thy mercy hast led forth the people which thou hast redeemed: thou hast guided them in thy strength unto thy holy habitation. The people shall hear, and be afraid: sorrow shall take hold on the inhabitants of Palestina. Then 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. Fear 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. Thou 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. The Lord shall reign for ever and ever. For 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. And 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. And Miriam answered them, Sing ye to the Lord, for he hath triumphed gloriously; the horse and his rider hath he thrown into the sea. So 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. And 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. And the people murmured against Moses, saying, What shall we drink? And 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, And 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. And 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. And the whole congregation of the children of Israel murmured against Moses and Aaron in the wilderness: And 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. Then 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. And 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. And 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: And 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? And 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. And 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. And 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. And the Lord spake unto Moses, saying, I 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. And 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. And 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. And 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. This 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. And the children of Israel did so, and gathered, some more, some less. And 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. And Moses said, Let no man leave of it till the morning. Notwithstanding 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. And they gathered it every morning, every man according to his eating: and when the sun waxed hot, it melted. And 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. And 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. And they laid it up till the morning, as Moses bade: and it did not stink, neither was there any worm therein. And 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. Six days ye shall gather it; but on the seventh day, which is the sabbath, in it there shall be none. And it came to pass, that there went out some of the people on the seventh day for to gather, and they found none. And the Lord said unto Moses, How long refuse ye to keep my commandments and my laws? See, 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. So the people rested on the seventh day. And 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. And 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. And 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. As the Lord commanded Moses, so Aaron laid it up before the Testimony, to be kept. And 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. Now an omer is the tenth part of an ephah. And 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. Wherefore 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? And 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? And Moses cried unto the Lord, saying, What shall I do unto this people? they be almost ready to stone me. And 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. Behold, 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. And 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? Then came Amalek, and fought with Israel in Rephidim. And 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. So 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. And it came to pass, when Moses held up his hand, that Israel prevailed: and when he let down his hand, Amalek prevailed. But 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. And Joshua discomfited Amalek and his people with the edge of the sword. And 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. And Moses built an altar, and called the name of it Jehovahnissi: For he said, Because the Lord hath sworn that the Lord will have war with Amalek from generation to generation. When 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; Then Jethro, Moses' father in law, took Zipporah, Moses' wife, after he had sent her back, And her two sons; of which the name of the one was Gershom; for he said, I have been an alien in a strange land: And 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: And 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: And he said unto Moses, I thy father in law Jethro am come unto thee, and thy wife, and her two sons with her. And 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. And 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. And Jethro rejoiced for all the goodness which the Lord had done to Israel, whom he had delivered out of the hand of the Egyptians. And 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. Now I know that the Lord is greater than all gods: for in the thing wherein they dealt proudly he was above them. And 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. And 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. And 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? And Moses said unto his father in law, Because the people come unto me to enquire of God: When 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. And Moses' father in law said unto him, The thing that thou doest is not good. Thou 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. Hearken 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: And thou shalt teach them ordinances and laws, and shalt shew them the way wherein they must walk, and the work that they must do. Moreover 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: And 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. If 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. So Moses hearkened to the voice of his father in law, and did all that he had said. And 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. And they judged the people at all seasons: the hard causes they brought unto Moses, but every small matter they judged themselves. And Moses let his father in law depart; and he went his way into his own land. In 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. For 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. And 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; Ye have seen what I did unto the Egyptians, and how I bare you on eagles' wings, and brought you unto myself. Now 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: And 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. And Moses came and called for the elders of the people, and laid before their faces all these words which the Lord commanded him. And 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. And 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. And the Lord said unto Moses, Go unto the people, and sanctify them to day and to morrow, and let them wash their clothes, And 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. And 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: There 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. And Moses went down from the mount unto the people, and sanctified the people; and they washed their clothes. And he said unto the people, Be ready against the third day: come not at your wives. And 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. And Moses brought forth the people out of the camp to meet with God; and they stood at the nether part of the mount. And 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. And when the voice of the trumpet sounded long, and waxed louder and louder, Moses spake, and God answered him by a voice. And 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. And the Lord said unto Moses, Go down, charge the people, lest they break through unto the Lord to gaze, and many of them perish. And let the priests also, which come near to the Lord, sanctify themselves, lest the Lord break forth upon them. And 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. And 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. So Moses went down unto the people, and spake unto them. And God spake all these words, saying, I am the Lord thy God, which have brought thee out of the land of Egypt, out of the house of bondage. Thou shalt have no other gods before me. Thou 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. Thou 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; And shewing mercy unto thousands of them that love me, and keep my commandments. Thou 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. Remember the sabbath day, to keep it holy. Six days shalt thou labour, and do all thy work: But 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: For 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. Honour thy father and thy mother: that thy days may be long upon the land which the Lord thy God giveth thee. Thou shalt not kill. Thou shalt not commit adultery. Thou shalt not steal. Thou shalt not bear false witness against thy neighbour. Thou 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. And 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. And they said unto Moses, Speak thou with us, and we will hear: but let not God speak with us, lest we die. And 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. And the people stood afar off, and Moses drew near unto the thick darkness where God was. And 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. Ye shall not make with me gods of silver, neither shall ye make unto you gods of gold. An 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. And 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. Neither shalt thou go up by steps unto mine altar, that thy nakedness be not discovered thereon. Now these are the judgments which thou shalt set before them. If thou buy an Hebrew servant, six years he shall serve: and in the seventh he shall go out free for nothing. If he came in by himself, he shall go out by himself: if he were married, then his wife shall go out with him. If 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. And if the servant shall plainly say, I love my master, my wife, and my children; I will not go out free: Then 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. And if a man sell his daughter to be a maidservant, she shall not go out as the menservants do. If 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. And if he have betrothed her unto his son, he shall deal with her after the manner of daughters. If he take him another wife; her food, her raiment, and her duty of marriage, shall he not diminish. And if he do not these three unto her, then shall she go out free without money. He that smiteth a man, so that he die, shall be surely put to death. And 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. But if a man come presumptuously upon his neighbour, to slay him with guile; thou shalt take him from mine altar, that he may die. And he that smiteth his father, or his mother, shall be surely put to death. And he that stealeth a man, and selleth him, or if he be found in his hand, he shall surely be put to death. And he that curseth his father, or his mother, shall surely be put to death. And if men strive together, and one smite another with a stone, or with his fist, and he die not, but keepeth his bed: If 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. And if a man smite his servant, or his maid, with a rod, and he die under his hand; he shall be surely punished. Notwithstanding, if he continue a day or two, he shall not be punished: for he is his money. If 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. And if any mischief follow, then thou shalt give life for life, Eye for eye, tooth for tooth, hand for hand, foot for foot, Burning for burning, wound for wound, stripe for stripe. And 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. And if he smite out his manservant's tooth, or his maidservant's tooth; he shall let him go free for his tooth's sake. If 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. But 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. If there be laid on him a sum of money, then he shall give for the ransom of his life whatsoever is laid upon him. Whether he have gored a son, or have gored a daughter, according to this judgment shall it be done unto him. If 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. And 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; The owner of the pit shall make it good, and give money unto the owner of them; and the dead beast shall be his. And 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. Or 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. If 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. If a thief be found breaking up, and be smitten that he die, there shall no blood be shed for him. If 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. If the theft be certainly found in his hand alive, whether it be ox, or ass, or sheep; he shall restore double. If 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. If 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. If 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. If 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. For 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. If 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: Then 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. And if it be stolen from him, he shall make restitution unto the owner thereof. If it be torn in pieces, then let him bring it for witness, and he shall not make good that which was torn. And 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. But if the owner thereof be with it, he shall not make it good: if it be an hired thing, it came for his hire. And if a man entice a maid that is not betrothed, and lie with her, he shall surely endow her to be his wife. If her father utterly refuse to give her unto him, he shall pay money according to the dowry of virgins. Thou shalt not suffer a witch to live. Whosoever lieth with a beast shall surely be put to death. He that sacrificeth unto any god, save unto the Lord only, he shall be utterly destroyed. Thou shalt neither vex a stranger, nor oppress him: for ye were strangers in the land of Egypt. Ye shall not afflict any widow, or fatherless child. If thou afflict them in any wise, and they cry at all unto me, I will surely hear their cry; And my wrath shall wax hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless. If 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. If thou at all take thy neighbour's raiment to pledge, thou shalt deliver it unto him by that the sun goeth down: For 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. Thou shalt not revile the gods, nor curse the ruler of thy people. Thou 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. Likewise 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. And 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. Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness. Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment: Neither shalt thou countenance a poor man in his cause. If thou meet thine enemy's ox or his ass going astray, thou shalt surely bring it back to him again. If 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. Thou shalt not wrest the judgment of thy poor in his cause. Keep thee far from a false matter; and the innocent and righteous slay thou not: for I will not justify the wicked. And thou shalt take no gift: for the gift blindeth the wise, and perverteth the words of the righteous. Also thou shalt not oppress a stranger: for ye know the heart of a stranger, seeing ye were strangers in the land of Egypt. And six years thou shalt sow thy land, and shalt gather in the fruits thereof: But 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. Six 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. And 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. Three times thou shalt keep a feast unto me in the year. Thou 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:) And 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. Three times in the year all thy males shall appear before the Lord God. Thou shalt not offer the blood of my sacrifice with leavened bread; neither shall the fat of my sacrifice remain until the morning. The 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. Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared. Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him. But 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. For 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. Thou 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. And 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. There shall nothing cast their young, nor be barren, in thy land: the number of thy days I will fulfil. I 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. And I will send hornets before thee, which shall drive out the Hivite, the Canaanite, and the Hittite, from before thee. I 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. By little and little I will drive them out from before thee, until thou be increased, and inherit the land. And 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. Thou shalt make no covenant with them, nor with their gods. They 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. And 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. And Moses alone shall come near the Lord: but they shall not come nigh; neither shall the people go up with him. And 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. And 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. And he sent young men of the children of Israel, which offered burnt offerings, and sacrificed peace offerings of oxen unto the Lord. And Moses took half of the blood, and put it in basons; and half of the blood he sprinkled on the altar. And 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. And 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. Then went up Moses, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel: And 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. And upon the nobles of the children of Israel he laid not his hand: also they saw God, and did eat and drink. And 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. And Moses rose up, and his minister Joshua: and Moses went up into the mount of God. And 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. And Moses went up into the mount, and a cloud covered the mount. And 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. And 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. And 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. And the Lord spake unto Moses, saying, Speak 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. And this is the offering which ye shall take of them; gold, and silver, and brass, And blue, and purple, and scarlet, and fine linen, and goats' hair, And rams' skins dyed red, and badgers' skins, and shittim wood, Oil for the light, spices for anointing oil, and for sweet incense, Onyx stones, and stones to be set in the ephod, and in the breastplate. And let them make me a sanctuary; that I may dwell among them. According 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. And 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. And 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. And 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. And thou shalt make staves of shittim wood, and overlay them with gold. And thou shalt put the staves into the rings by the sides of the ark, that the ark may be borne with them. The staves shall be in the rings of the ark: they shall not be taken from it. And thou shalt put into the ark the testimony which I shall give thee. And 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. And thou shalt make two cherubims of gold, of beaten work shalt thou make them, in the two ends of the mercy seat. And 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. And 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. And thou shalt put the mercy seat above upon the ark; and in the ark thou shalt put the testimony that I shall give thee. And 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. Thou 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. And thou shalt overlay it with pure gold, and make thereto a crown of gold round about. And 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. And thou shalt make for it four rings of gold, and put the rings in the four corners that are on the four feet thereof. Over against the border shall the rings be for places of the staves to bear the table. And thou shalt make the staves of shittim wood, and overlay them with gold, that the table may be borne with them. And 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. And thou shalt set upon the table shewbread before me alway. And 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. And 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: Three 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. And in the candlesticks shall be four bowls made like unto almonds, with their knops and their flowers. And 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. Their knops and their branches shall be of the same: all it shall be one beaten work of pure gold. And thou shalt make the seven lamps thereof: and they shall light the lamps thereof, that they may give light over against it. And the tongs thereof, and the snuffdishes thereof, shall be of pure gold. Of a talent of pure gold shall he make it, with all these vessels. And look that thou make them after their pattern, which was shewed thee in the mount. Moreover 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. The 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. The five curtains shall be coupled together one to another; and other five curtains shall be coupled one to another. And 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. Fifty 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. And thou shalt make fifty taches of gold, and couple the curtains together with the taches: and it shall be one tabernacle. And thou shalt make curtains of goats' hair to be a covering upon the tabernacle: eleven curtains shalt thou make. The 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. And thou shalt couple five curtains by themselves, and six curtains by themselves, and shalt double the sixth curtain in the forefront of the tabernacle. And 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. And thou shalt make fifty taches of brass, and put the taches into the loops, and couple the tent together, that it may be one. And the remnant that remaineth of the curtains of the tent, the half curtain that remaineth, shall hang over the backside of the tabernacle. And 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. And thou shalt make a covering for the tent of rams' skins dyed red, and a covering above of badgers' skins. And thou shalt make boards for the tabernacle of shittim wood standing up. Ten cubits shall be the length of a board, and a cubit and a half shall be the breadth of one board. Two tenons shall there be in one board, set in order one against another: thus shalt thou make for all the boards of the tabernacle. And thou shalt make the boards for the tabernacle, twenty boards on the south side southward. And 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. And for the second side of the tabernacle on the north side there shall be twenty boards: And their forty sockets of silver; two sockets under one board, and two sockets under another board. And for the sides of the tabernacle westward thou shalt make six boards. And two boards shalt thou make for the corners of the tabernacle in the two sides. And 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. And they shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board. And thou shalt make bars of shittim wood; five for the boards of the one side of the tabernacle, And 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. And the middle bar in the midst of the boards shall reach from end to end. And 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. And thou shalt rear up the tabernacle according to the fashion thereof which was shewed thee in the mount. And thou shalt make a vail of blue, and purple, and scarlet, and fine twined linen of cunning work: with cherubims shall it be made: And 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. And 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. And thou shalt put the mercy seat upon the ark of the testimony in the most holy place. And 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. And thou shalt make an hanging for the door of the tent, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework. And 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. And 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. And 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. And 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. And 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. And thou shalt put it under the compass of the altar beneath, that the net may be even to the midst of the altar. And thou shalt make staves for the altar, staves of shittim wood, and overlay them with brass. And the staves shall be put into the rings, and the staves shall be upon the two sides of the altar, to bear it. Hollow with boards shalt thou make it: as it was shewed thee in the mount, so shall they make it. And 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: And the twenty pillars thereof and their twenty sockets shall be of brass; the hooks of the pillars and their fillets shall be of silver. And 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. And for the breadth of the court on the west side shall be hangings of fifty cubits: their pillars ten, and their sockets ten. And the breadth of the court on the east side eastward shall be fifty cubits. The hangings of one side of the gate shall be fifteen cubits: their pillars three, and their sockets three. And on the other side shall be hangings fifteen cubits: their pillars three, and their sockets three. And 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. All the pillars round about the court shall be filleted with silver; their hooks shall be of silver, and their sockets of brass. The 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. All 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. And 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. In 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. And 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. And thou shalt make holy garments for Aaron thy brother for glory and for beauty. And 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. And 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. And they shall take gold, and blue, and purple, and scarlet, and fine linen. And they shall make the ephod of gold, of blue, and of purple, of scarlet, and fine twined linen, with cunning work. It shall have the two shoulderpieces thereof joined at the two edges thereof; and so it shall be joined together. And 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. And thou shalt take two onyx stones, and grave on them the names of the children of Israel: Six of their names on one stone, and the other six names of the rest on the other stone, according to their birth. With 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. And 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. And thou shalt make ouches of gold; And two chains of pure gold at the ends; of wreathen work shalt thou make them, and fasten the wreathen chains to the ouches. And 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. Foursquare it shall be being doubled; a span shall be the length thereof, and a span shall be the breadth thereof. And 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. And the second row shall be an emerald, a sapphire, and a diamond. And the third row a ligure, an agate, and an amethyst. And the fourth row a beryl, and an onyx, and a jasper: they shall be set in gold in their inclosings. And 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. And thou shalt make upon the breastplate chains at the ends of wreathen work of pure gold. And thou shalt make upon the breastplate two rings of gold, and shalt put the two rings on the two ends of the breastplate. And thou shalt put the two wreathen chains of gold in the two rings which are on the ends of the breastplate. And 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. And 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. And 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. And 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. And 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. And 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. And thou shalt make the robe of the ephod all of blue. And 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. And 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: A golden bell and a pomegranate, a golden bell and a pomegranate, upon the hem of the robe round about. And 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. And thou shalt make a plate of pure gold, and grave upon it, like the engravings of a signet, Holiness To The Lord. And thou shalt put it on a blue lace, that it may be upon the mitre; upon the forefront of the mitre it shall be. And 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. And 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. And 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. And 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. And thou shalt make them linen breeches to cover their nakedness; from the loins even unto the thighs they shall reach: And 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. And 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. And unleavened bread, and cakes unleavened tempered with oil, and wafers unleavened anointed with oil: of wheaten flour shalt thou make them. And thou shalt put them into one basket, and bring them in the basket, with the bullock and the two rams. And Aaron and his sons thou shalt bring unto the door of the tabernacle of the congregation, and shalt wash them with water. And 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: And thou shalt put the mitre upon his head, and put the holy crown upon the mitre. Then shalt thou take the anointing oil, and pour it upon his head, and anoint him. And thou shalt bring his sons, and put coats upon them. And 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. And 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. And thou shalt kill the bullock before the Lord, by the door of the tabernacle of the congregation. And 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. And 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. But the flesh of the bullock, and his skin, and his dung, shalt thou burn with fire without the camp: it is a sin offering. Thou shalt also take one ram; and Aaron and his sons shall put their hands upon the head of the ram. And thou shalt slay the ram, and thou shalt take his blood, and sprinkle it round about upon the altar. And 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. And 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. And thou shalt take the other ram; and Aaron and his sons shall put their hands upon the head of the ram. Then 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. And 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. Also 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: And 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: And 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. And 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. And 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. And 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: And 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. And the holy garments of Aaron shall be his sons' after him, to be anointed therein, and to be consecrated in them. And 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. And thou shalt take the ram of the consecration, and seethe his flesh in the holy place. And 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. And 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. And 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. And 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. And 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. Seven 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. Now this is that which thou shalt offer upon the altar; two lambs of the first year day by day continually. The one lamb thou shalt offer in the morning; and the other lamb thou shalt offer at even: And 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. And 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. This 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. And there I will meet with the children of Israel, and the tabernacle shall be sanctified by my glory. And 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. And I will dwell among the children of Israel, and will be their God. And 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. And thou shalt make an altar to burn incense upon: of shittim wood shalt thou make it. A 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. And 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. And 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. And thou shalt make the staves of shittim wood, and overlay them with gold. And 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. And Aaron shall burn thereon sweet incense every morning: when he dresseth the lamps, he shall burn incense upon it. And when Aaron lighteth the lamps at even, he shall burn incense upon it, a perpetual incense before the Lord throughout your generations. Ye shall offer no strange incense thereon, nor burnt sacrifice, nor meat offering; neither shall ye pour drink offering thereon. And 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. And the Lord spake unto Moses, saying, When 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. This 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. Every one that passeth among them that are numbered, from twenty years old and above, shall give an offering unto the Lord. The 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. And 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. And the Lord spake unto Moses, saying, Thou 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. For Aaron and his sons shall wash their hands and their feet thereat: When 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: So 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. Moreover the Lord spake unto Moses, saying, Take 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, And of cassia five hundred shekels, after the shekel of the sanctuary, and of oil olive an hin: And 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. And thou shalt anoint the tabernacle of the congregation therewith, and the ark of the testimony, And the table and all his vessels, and the candlestick and his vessels, and the altar of incense, And the altar of burnt offering with all his vessels, and the laver and his foot. And thou shalt sanctify them, that they may be most holy: whatsoever toucheth them shall be holy. And thou shalt anoint Aaron and his sons, and consecrate them, that they may minister unto me in the priest's office. And thou shalt speak unto the children of Israel, saying, This shall be an holy anointing oil unto me throughout your generations. Upon 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. Whosoever compoundeth any like it, or whosoever putteth any of it upon a stranger, shall even be cut off from his people. And 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: And thou shalt make it a perfume, a confection after the art of the apothecary, tempered together, pure and holy: And 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. And 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. Whosoever shall make like unto that, to smell thereto, shall even be cut off from his people. And the Lord spake unto Moses, saying, See, I have called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah: And I have filled him with the spirit of God, in wisdom, and in understanding, and in knowledge, and in all manner of workmanship, To devise cunning works, to work in gold, and in silver, and in brass, And in cutting of stones, to set them, and in carving of timber, to work in all manner of workmanship. And 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; The tabernacle of the congregation, and the ark of the testimony, and the mercy seat that is thereupon, and all the furniture of the tabernacle, And the table and his furniture, and the pure candlestick with all his furniture, and the altar of incense, And the altar of burnt offering with all his furniture, and the laver and his foot, And 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, And the anointing oil, and sweet incense for the holy place: according to all that I have commanded thee shall they do. And the Lord spake unto Moses, saying, Speak 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. Ye 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. Six 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. Wherefore the children of Israel shall keep the sabbath, to observe the sabbath throughout their generations, for a perpetual covenant. It 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. And 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. And 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. And 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. And all the people brake off the golden earrings which were in their ears, and brought them unto Aaron. And 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. And when Aaron saw it, he built an altar before it; and Aaron made proclamation, and said, To morrow is a feast to the Lord. And 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. And the Lord said unto Moses, Go, get thee down; for thy people, which thou broughtest out of the land of Egypt, have corrupted themselves: They 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. And the Lord said unto Moses, I have seen this people, and, behold, it is a stiffnecked people: Now 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. And 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? Wherefore 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. Remember 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. And the Lord repented of the evil which he thought to do unto his people. And 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. And the tables were the work of God, and the writing was the writing of God, graven upon the tables. And when Joshua heard the noise of the people as they shouted, he said unto Moses, There is a noise of war in the camp. And 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. And 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. And 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. And Moses said unto Aaron, What did this people unto thee, that thou hast brought so great a sin upon them? And Aaron said, Let not the anger of my lord wax hot: thou knowest the people, that they are set on mischief. For 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. And 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. And when Moses saw that the people were naked; (for Aaron had made them naked unto their shame among their enemies:) Then 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. And 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. And the children of Levi did according to the word of Moses: and there fell of the people that day about three thousand men. For 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. And 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. And Moses returned unto the Lord, and said, Oh, this people have sinned a great sin, and have made them gods of gold. Yet now, if thou wilt forgive their sin--; and if not, blot me, I pray thee, out of thy book which thou hast written. And the Lord said unto Moses, Whosoever hath sinned against me, him will I blot out of my book. Therefore 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. And the Lord plagued the people, because they made the calf, which Aaron made. And 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: And 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: Unto 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. And when the people heard these evil tidings, they mourned: and no man did put on him his ornaments. For 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. And the children of Israel stripped themselves of their ornaments by the mount Horeb. And 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. And 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. And 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. And 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. And 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. And 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. Now 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. And he said, My presence shall go with thee, and I will give thee rest. And he said unto him, If thy presence go not with me, carry us not up hence. For 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. And 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. And he said, I beseech thee, shew me thy glory. And 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. And he said, Thou canst not see my face: for there shall no man see me, and live. And the Lord said, Behold, there is a place by me, and thou shalt stand upon a rock: And 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: And I will take away mine hand, and thou shalt see my back parts: but my face shall not be seen. And 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. And 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. And 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. And 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. And the Lord descended in the cloud, and stood with him there, and proclaimed the name of the Lord. And the Lord passed by before him, and proclaimed, The Lord, The Lord God, merciful and gracious, longsuffering, and abundant in goodness and truth, Keeping 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. And Moses made haste, and bowed his head toward the earth, and worshipped. And 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. And 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. Observe 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. Take 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: But ye shall destroy their altars, break their images, and cut down their groves: For thou shalt worship no other god: for the Lord, whose name is Jealous, is a jealous God: Lest 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; And 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. Thou shalt make thee no molten gods. The 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. All that openeth the matrix is mine; and every firstling among thy cattle, whether ox or sheep, that is male. But 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. Six days thou shalt work, but on the seventh day thou shalt rest: in earing time and in harvest thou shalt rest. And thou shalt observe the feast of weeks, of the firstfruits of wheat harvest, and the feast of ingathering at the year's end. Thrice in the year shall all your menchildren appear before the LordGod, the God of Israel. For 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. Thou 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. The 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. And 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. And 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. And 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. And 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. And Moses called unto them; and Aaron and all the rulers of the congregation returned unto him: and Moses talked with them. And 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. And till Moses had done speaking with them, he put a vail on his face. But 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. And 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. And 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. Six 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. Ye shall kindle no fire throughout your habitations upon the sabbath day. And Moses spake unto all the congregation of the children of Israel, saying, This is the thing which the Lord commanded, saying, Take 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, And blue, and purple, and scarlet, and fine linen, and goats' hair, And rams' skins dyed red, and badgers' skins, and shittim wood, And oil for the light, and spices for anointing oil, and for the sweet incense, And onyx stones, and stones to be set for the ephod, and for the breastplate. And every wise hearted among you shall come, and make all that the Lord hath commanded; The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets, The ark, and the staves thereof, with the mercy seat, and the vail of the covering, The table, and his staves, and all his vessels, and the shewbread, The candlestick also for the light, and his furniture, and his lamps, with the oil for the light, And 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, The altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot, The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court, The pins of the tabernacle, and the pins of the court, and their cords, The 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. And all the congregation of the children of Israel departed from the presence of Moses. And 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. And 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. And 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. Every 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. And 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. And all the women whose heart stirred them up in wisdom spun goats' hair. And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate; And spice, and oil for the light, and for the anointing oil, and for the sweet incense. The 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. And 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; And he hath filled him with the spirit of God, in wisdom, in understanding, and in knowledge, and in all manner of workmanship; And to devise curious works, to work in gold, and in silver, and in brass, And in the cutting of stones, to set them, and in carving of wood, to make any manner of cunning work. And he hath put in his heart that he may teach, both he, and Aholiab, the son of Ahisamach, of the tribe of Dan. Them 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. Then 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. And 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: And 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. And all the wise men, that wrought all the work of the sanctuary, came every man from his work which they made; And they spake unto Moses, saying, The people bring much more than enough for the service of the work, which the Lord commanded to make. And 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. For the stuff they had was sufficient for all the work to make it, and too much. And 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. The length of one curtain was twenty and eight cubits, and the breadth of one curtain four cubits: the curtains were all of one size. And he coupled the five curtains one unto another: and the other five curtains he coupled one unto another. And 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. Fifty 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. And he made fifty taches of gold, and coupled the curtains one unto another with the taches: so it became one tabernacle. And he made curtains of goats' hair for the tent over the tabernacle: eleven curtains he made them. The length of one curtain was thirty cubits, and four cubits was the breadth of one curtain: the eleven curtains were of one size. And he coupled five curtains by themselves, and six curtains by themselves. And 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. And he made fifty taches of brass to couple the tent together, that it might be one. And he made a covering for the tent of rams' skins dyed red, and a covering of badgers' skins above that. And he made boards for the tabernacle of shittim wood, standing up. The length of a board was ten cubits, and the breadth of a board one cubit and a half. One board had two tenons, equally distant one from another: thus did he make for all the boards of the tabernacle. And he made boards for the tabernacle; twenty boards for the south side southward: And 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. And for the other side of the tabernacle, which is toward the north corner, he made twenty boards, And their forty sockets of silver; two sockets under one board, and two sockets under another board. And for the sides of the tabernacle westward he made six boards. And two boards made he for the corners of the tabernacle in the two sides. And 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. And there were eight boards; and their sockets were sixteen sockets of silver, under every board two sockets. And he made bars of shittim wood; five for the boards of the one side of the tabernacle, And 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. And he made the middle bar to shoot through the boards from the one end to the other. And he overlaid the boards with gold, and made their rings of gold to be places for the bars, and overlaid the bars with gold. And he made a vail of blue, and purple, and scarlet, and fine twined linen: with cherubims made he it of cunning work. And 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. And he made an hanging for the tabernacle door of blue, and purple, and scarlet, and fine twined linen, of needlework; And 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. And 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: And he overlaid it with pure gold within and without, and made a crown of gold to it round about. And 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. And he made staves of shittim wood, and overlaid them with gold. And he put the staves into the rings by the sides of the ark, to bear the ark. And 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. And he made two cherubims of gold, beaten out of one piece made he them, on the two ends of the mercy seat; One 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. And 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. And 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: And he overlaid it with pure gold, and made thereunto a crown of gold round about. Also he made thereunto a border of an handbreadth round about; and made a crown of gold for the border thereof round about. And he cast for it four rings of gold, and put the rings upon the four corners that were in the four feet thereof. Over against the border were the rings, the places for the staves to bear the table. And he made the staves of shittim wood, and overlaid them with gold, to bear the table. And 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. And 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: And 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: Three 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. And in the candlestick were four bowls made like almonds, his knops, and his flowers: And 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. Their knops and their branches were of the same: all of it was one beaten work of pure gold. And he made his seven lamps, and his snuffers, and his snuffdishes, of pure gold. Of a talent of pure gold made he it, and all the vessels thereof. And 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. And 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. And 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. And he made the staves of shittim wood, and overlaid them with gold. And 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. And he made the horns thereof on the four corners of it; the horns thereof were of the same: and he overlaid it with brass. And 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. And he made for the altar a brasen grate of network under the compass thereof beneath unto the midst of it. And he cast four rings for the four ends of the grate of brass, to be places for the staves. And he made the staves of shittim wood, and overlaid them with brass. And he put the staves into the rings on the sides of the altar, to bear it withal; he made the altar hollow with boards. And 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. And he made the court: on the south side southward the hangings of the court were of fine twined linen, an hundred cubits: Their pillars were twenty, and their brasen sockets twenty; the hooks of the pillars and their fillets were of silver. And 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. And 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. And for the east side eastward fifty cubits. The hangings of the one side of the gate were fifteen cubits; their pillars three, and their sockets three. And 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. All the hangings of the court round about were of fine twined linen. And 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. And 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. And 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. And all the pins of the tabernacle, and of the court round about, were of brass. This 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. And Bezaleel the son Uri, the son of Hur, of the tribe of Judah, made all that the Lord commanded Moses. And 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. All 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. And 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: A 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. And 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. And of the thousand seven hundred seventy and five shekels he made hooks for the pillars, and overlaid their chapiters, and filleted them. And the brass of the offering was seventy talents, and two thousand and four hundred shekels. And 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, And 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. And 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. And he made the ephod of gold, blue, and purple, and scarlet, and fine twined linen. And 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. They made shoulder pieces for it, to couple it together: by the two edges was it coupled together. And 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. And they wrought onyx stones inclosed in ouches of gold, graven, as signets are graven, with the names of the children of Israel. And 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. And he made the breastplate of cunning work, like the work of the ephod; of gold, blue, and purple, and scarlet, and fine twined linen. It was foursquare; they made the breastplate double: a span was the length thereof, and a span the breadth thereof, being doubled. And they set in it four rows of stones: the first row was a sardius, a topaz, and a carbuncle: this was the first row. And the second row, an emerald, a sapphire, and a diamond. And the third row, a ligure, an agate, and an amethyst. And the fourth row, a beryl, an onyx, and a jasper: they were inclosed in ouches of gold in their inclosings. And 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. And they made upon the breastplate chains at the ends, of wreathen work of pure gold. And they made two ouches of gold, and two gold rings; and put the two rings in the two ends of the breastplate. And they put the two wreathen chains of gold in the two rings on the ends of the breastplate. And 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. And 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. And 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. And 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. And he made the robe of the ephod of woven work, all of blue. And 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. And they made upon the hems of the robe pomegranates of blue, and purple, and scarlet, and twined linen. And they made bells of pure gold, and put the bells between the pomegranates upon the hem of the robe, round about between the pomegranates; A bell and a pomegranate, a bell and a pomegranate, round about the hem of the robe to minister in; as the Lord commanded Moses. And they made coats of fine linen of woven work for Aaron, and for his sons, And a mitre of fine linen, and goodly bonnets of fine linen, and linen breeches of fine twined linen, And a girdle of fine twined linen, and blue, and purple, and scarlet, of needlework; as the Lord commanded Moses. And 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. And they tied unto it a lace of blue, to fasten it on high upon the mitre; as the Lord commanded Moses. Thus 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. And they brought the tabernacle unto Moses, the tent, and all his furniture, his taches, his boards, his bars, and his pillars, and his sockets, And the covering of rams' skins dyed red, and the covering of badgers' skins, and the vail of the covering, The ark of the testimony, and the staves thereof, and the mercy seat, The table, and all the vessels thereof, and the shewbread, The 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, And the golden altar, and the anointing oil, and the sweet incense, and the hanging for the tabernacle door, The brasen altar, and his grate of brass, his staves, and all his vessels, the laver and his foot, The 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, The 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. According to all that the Lord commanded Moses, so the children of Israel made all the work. And 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. And the Lord spake unto Moses, saying, On the first day of the first month shalt thou set up the tabernacle of the tent of the congregation. And thou shalt put therein the ark of the testimony, and cover the ark with the vail. And 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. And 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. And thou shalt set the altar of the burnt offering before the door of the tabernacle of the tent of the congregation. And thou shalt set the laver between the tent of the congregation and the altar, and shalt put water therein. And thou shalt set up the court round about, and hang up the hanging at the court gate. And 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. And 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. And thou shalt anoint the laver and his foot, and sanctify it. And thou shalt bring Aaron and his sons unto the door of the tabernacle of the congregation, and wash them with water. And 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. And thou shalt bring his sons, and clothe them with coats: And 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. Thus did Moses: according to all that the Lord commanded him, so did he. And 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. And 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. And he spread abroad the tent over the tabernacle, and put the covering of the tent above upon it; as the Lord commanded Moses. And 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: And 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. And he put the table in the tent of the congregation, upon the side of the tabernacle northward, without the vail. And he set the bread in order upon it before the Lord; as the Lord had commanded Moses. And he put the candlestick in the tent of the congregation, over against the table, on the side of the tabernacle southward. And he lighted the lamps before the Lord; as the Lord commanded Moses. And he put the golden altar in the tent of the congregation before the vail: And he burnt sweet incense thereon; as the Lord commanded Moses. And he set up the hanging at the door of the tabernacle. And 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. And he set the laver between the tent of the congregation and the altar, and put water there, to wash withal. And Moses and Aaron and his sons washed their hands and their feet thereat: When they went into the tent of the congregation, and when they came near unto the altar, they washed; as the Lord commanded Moses. And 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. Then a cloud covered the tent of the congregation, and the glory of the Lord filled the tabernacle. And 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. And when the cloud was taken up from over the tabernacle, the children of Israel went onward in all their journeys: But if the cloud were not taken up, then they journeyed not till the day that it was taken up. For 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. Psalms Blessed 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. But his delight is in the law of the Lord; and in his law doth he meditate day and night. And 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. The ungodly are not so: but are like the chaff which the wind driveth away. Therefore the ungodly shall not stand in the judgment, nor sinners in the congregation of the righteous. For the Lord knoweth the way of the righteous: but the way of the ungodly shall perish. Why do the heathen rage, and the people imagine a vain thing? The kings of the earth set themselves, and the rulers take counsel together, against the Lord, and against his anointed, saying, Let us break their bands asunder, and cast away their cords from us. He that sitteth in the heavens shall laugh: the Lord shall have them in derision. Then shall he speak unto them in his wrath, and vex them in his sore displeasure. Yet have I set my king upon my holy hill of Zion. I will declare the decree: the Lord hath said unto me, Thou art my Son; this day have I begotten thee. Ask of me, and I shall give thee the heathen for thine inheritance, and the uttermost parts of the earth for thy possession. Thou shalt break them with a rod of iron; thou shalt dash them in pieces like a potter's vessel. Be wise now therefore, O ye kings: be instructed, ye judges of the earth. Serve the Lord with fear, and rejoice with trembling. Kiss 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. Lord, how are they increased that trouble me! many are they that rise up against me. Many there be which say of my soul, There is no help for him in God. Selah. But thou, O Lord, art a shield for me; my glory, and the lifter up of mine head. I cried unto the Lord with my voice, and he heard me out of his holy hill. Selah. I laid me down and slept; I awaked; for the Lord sustained me. I will not be afraid of ten thousands of people, that have set themselves against me round about. Arise, 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. Salvation belongeth unto the Lord: thy blessing is upon thy people. Selah. Hear 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. O ye sons of men, how long will ye turn my glory into shame? how long will ye love vanity, and seek after leasing? Selah. But know that the Lord hath set apart him that is godly for himself: the Lord will hear when I call unto him. Stand in awe, and sin not: commune with your own heart upon your bed, and be still. Selah. Offer the sacrifices of righteousness, and put your trust in the Lord. There be many that say, Who will shew us any good? Lord, lift thou up the light of thy countenance upon us. Thou hast put gladness in my heart, more than in the time that their corn and their wine increased. I will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety. Give ear to my words, O Lord, consider my meditation. Hearken unto the voice of my cry, my King, and my God: for unto thee will I pray. My voice shalt thou hear in the morning, O Lord; in the morning will I direct my prayer unto thee, and will look up. For thou art not a God that hath pleasure in wickedness: neither shall evil dwell with thee. The foolish shall not stand in thy sight: thou hatest all workers of iniquity. Thou shalt destroy them that speak leasing: the Lord will abhor the bloody and deceitful man. But 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. Lead me, O Lord, in thy righteousness because of mine enemies; make thy way straight before my face. For there is no faithfulness in their mouth; their inward part is very wickedness; their throat is an open sepulchre; they flatter with their tongue. Destroy 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. But 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. For thou, Lord, wilt bless the righteous; with favour wilt thou compass him as with a shield. O Lord, rebuke me not in thine anger, neither chasten me in thy hot displeasure. Have mercy upon me, O Lord; for I am weak: O Lord, heal me; for my bones are vexed. My soul is also sore vexed: but thou, O Lord, how long? Return, O Lord, deliver my soul: oh save me for thy mercies' sake. For in death there is no remembrance of thee: in the grave who shall give thee thanks? I am weary with my groaning; all the night make I my bed to swim; I water my couch with my tears. Mine eye is consumed because of grief; it waxeth old because of all mine enemies. Depart from me, all ye workers of iniquity; for the Lord hath heard the voice of my weeping. The Lord hath heard my supplication; the Lord will receive my prayer. Let all mine enemies be ashamed and sore vexed: let them return and be ashamed suddenly. O Lord, our Lord, how excellent is thy name in all the earth! who hast set thy glory above the heavens. Out of the mouth of babes and sucklings hast thou ordained strength because of thine enemies, that thou mightest still the enemy and the avenger. When I consider thy heavens, the work of thy fingers, the moon and the stars, which thou hast ordained; What is man, that thou art mindful of him? and the son of man, that thou visitest him? For thou hast made him a little lower than the angels, and hast crowned him with glory and honour. Thou madest him to have dominion over the works of thy hands; thou hast put all things under his feet: All sheep and oxen, yea, and the beasts of the field; The fowl of the air, and the fish of the sea, and whatsoever passeth through the paths of the seas. O Lord our Lord, how excellent is thy name in all the earth! Lord, who shall abide in thy tabernacle? who shall dwell in thy holy hill? He that walketh uprightly, and worketh righteousness, and speaketh the truth in his heart. He that backbiteth not with his tongue, nor doeth evil to his neighbour, nor taketh up a reproach against his neighbour. In 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. He that putteth not out his money to usury, nor taketh reward against the innocent. He that doeth these things shall never be moved. The heavens declare the glory of God; and the firmament sheweth his handywork. Day unto day uttereth speech, and night unto night sheweth knowledge. There is no speech nor language, where their voice is not heard. Their 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, Which is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race. His 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. The law of the Lord is perfect, converting the soul: the testimony of the Lord is sure, making wise the simple. The statutes of the Lord are right, rejoicing the heart: the commandment of the Lord is pure, enlightening the eyes. The fear of the Lord is clean, enduring for ever: the judgments of the Lord are true and righteous altogether. More to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb. Moreover by them is thy servant warned: and in keeping of them there is great reward. Who can understand his errors? cleanse thou me from secret faults. Keep 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. Let the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O Lord, my strength, and my redeemer. The Lord is my shepherd; I shall not want. He maketh me to lie down in green pastures: he leadeth me beside the still waters. He restoreth my soul: he leadeth me in the paths of righteousness for his name's sake. Yea, 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. Thou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over. Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord for ever. The 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? When the wicked, even mine enemies and my foes, came upon me to eat up my flesh, they stumbled and fell. Though an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident. One 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. For 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. And 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. Hear, O Lord, when I cry with my voice: have mercy also upon me, and answer me. When thou saidst, Seek ye my face; my heart said unto thee, Thy face, Lord, will I seek. Hide 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. When my father and my mother forsake me, then the Lord will take me up. Teach me thy way, O Lord, and lead me in a plain path, because of mine enemies. Deliver me not over unto the will of mine enemies: for false witnesses are risen up against me, and such as breathe out cruelty. I had fainted, unless I had believed to see the goodness of the Lord in the land of the living. Wait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord. I 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. I was dumb with silence, I held my peace, even from good; and my sorrow was stirred. My heart was hot within me, while I was musing the fire burned: then spake I with my tongue, Lord, make me to know mine end, and the measure of my days, what it is: that I may know how frail I am. Behold, 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. Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them. And now, Lord, what wait I for? my hope is in thee. Deliver me from all my transgressions: make me not the reproach of the foolish. I was dumb, I opened not my mouth; because thou didst it. Remove thy stroke away from me: I am consumed by the blow of thine hand. When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah. Hear 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. O spare me, that I may recover strength, before I go hence, and be no more. As the hart panteth after the water brooks, so panteth my soul after thee, O God. My soul thirsteth for God, for the living God: when shall I come and appear before God? My tears have been my meat day and night, while they continually say unto me, Where is thy God? When 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. Why 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. O 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. Deep calleth unto deep at the noise of thy waterspouts: all thy waves and thy billows are gone over me. Yet 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. I will say unto God my rock, Why hast thou forgotten me? why go I mourning because of the oppression of the enemy? As with a sword in my bones, mine enemies reproach me; while they say daily unto me, Where is thy God? Why 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. God is our refuge and strength, a very present help in trouble. Therefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea; Though the waters thereof roar and be troubled, though the mountains shake with the swelling thereof. Selah. There is a river, the streams whereof shall make glad the city of God, the holy place of the tabernacles of the most High. God is in the midst of her; she shall not be moved: God shall help her, and that right early. The heathen raged, the kingdoms were moved: he uttered his voice, the earth melted. The Lord of hosts is with us; the God of Jacob is our refuge. Selah. Come, behold the works of the Lord, what desolations he hath made in the earth. He 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. Be still, and know that I am God: I will be exalted among the heathen, I will be exalted in the earth. The Lord of hosts is with us; the God of Jacob is our refuge. Selah. Have mercy upon me, O God, according to thy loving kindness: according unto the multitude of thy tender mercies blot out my transgressions. Wash me thoroughly from mine iniquity, and cleanse me from my sin. For I acknowledge my transgressions: and my sin is ever before me. Against 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. Behold, I was shapen in iniquity; and in sin did my mother conceive me. Behold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom. Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow. Make me to hear joy and gladness; that the bones which thou hast broken may rejoice. Hide thy face from my sins, and blot out all mine iniquities. Create in me a clean heart, O God; and renew a right spirit within me. Cast me not away from thy presence; and take not thy holy spirit from me. Restore unto me the joy of thy salvation; and uphold me with thy free spirit. Then will I teach transgressors thy ways; and sinners shall be converted unto thee. Deliver me from bloodguiltiness, O God, thou God of my salvation: and my tongue shall sing aloud of thy righteousness. O Lord, open thou my lips; and my mouth shall shew forth thy praise. For thou desirest not sacrifice; else would I give it: thou delightest not in burnt offering. The sacrifices of God are a broken spirit: a broken and a contrite heart, O God, thou wilt not despise. Do good in thy good pleasure unto Zion: build thou the walls of Jerusalem. Then shalt thou be pleased with the sacrifices of righteousness, with burnt offering and whole burnt offering: then shall they offer bullocks upon thine altar. Give the king thy judgments, O God, and thy righteousness unto the king's son. He shall judge thy people with righteousness, and thy poor with judgment. The mountains shall bring peace to the people, and the little hills, by righteousness. He shall judge the poor of the people, he shall save the children of the needy, and shall break in pieces the oppressor. They shall fear thee as long as the sun and moon endure, throughout all generations. He shall come down like rain upon the mown grass: as showers that water the earth. In his days shall the righteous flourish; and abundance of peace so long as the moon endureth. He shall have dominion also from sea to sea, and from the river unto the ends of the earth. They that dwell in the wilderness shall bow before him; and his enemies shall lick the dust. The kings of Tarshish and of the isles shall bring presents: the kings of Sheba and Seba shall offer gifts. Yea, all kings shall fall down before him: all nations shall serve him. For he shall deliver the needy when he crieth; the poor also, and him that hath no helper. He shall spare the poor and needy, and shall save the souls of the needy. He shall redeem their soul from deceit and violence: and precious shall their blood be in his sight. And 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. There 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. His 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. Blessed be the Lord God, the God of Israel, who only doeth wondrous things. And blessed be his glorious name for ever: and let the whole earth be filled with his glory; Amen, and Amen. The prayers of David the son of Jesse are ended. How amiable are thy tabernacles, O Lord of hosts! My soul longeth, yea, even fainteth for the courts of the Lord: my heart and my flesh crieth out for the living God. Yea, 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. Blessed are they that dwell in thy house: they will be still praising thee. Selah. Blessed is the man whose strength is in thee; in whose heart are the ways of them. Who passing through the valley of Baca make it a well; the rain also filleth the pools. They go from strength to strength, every one of them in Zion appeareth before God. O Lord God of hosts, hear my prayer: give ear, O God of Jacob. Selah. Behold, O God our shield, and look upon the face of thine anointed. For 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. For 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. O Lord of hosts, blessed is the man that trusteth in thee. Lord, thou hast been our dwelling place in all generations. Before the mountains were brought forth, or ever thou hadst formed the earth and the world, even from everlasting to everlasting, thou art God. Thou turnest man to destruction; and sayest, Return, ye children of men. For a thousand years in thy sight are but as yesterday when it is past, and as a watch in the night. Thou carriest them away as with a flood; they are as a sleep: in the morning they are like grass which groweth up. In the morning it flourisheth, and groweth up; in the evening it is cut down, and withereth. For we are consumed by thine anger, and by thy wrath are we troubled. Thou hast set our iniquities before thee, our secret sins in the light of thy countenance. For all our days are passed away in thy wrath: we spend our years as a tale that is told. The 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. Who knoweth the power of thine anger? even according to thy fear, so is thy wrath. So teach us to number our days, that we may apply our hearts unto wisdom. Return, O Lord, how long? and let it repent thee concerning thy servants. O satisfy us early with thy mercy; that we may rejoice and be glad all our days. Make us glad according to the days wherein thou hast afflicted us, and the years wherein we have seen evil. Let thy work appear unto thy servants, and thy glory unto their children. And 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. Make a joyful noise unto the Lord, all ye lands. Serve the Lord with gladness: come before his presence with singing. Know 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. Enter into his gates with thanksgiving, and into his courts with praise: be thankful unto him, and bless his name. For the Lord is good; his mercy is everlasting; and his truth endureth to all generations. Bless the Lord, O my soul: and all that is within me, bless his holy name. Bless the Lord, O my soul, and forget not all his benefits: Who forgiveth all thine iniquities; who healeth all thy diseases; Who redeemeth thy life from destruction; who crowneth thee with lovingkindness and tender mercies; Who satisfieth thy mouth with good things; so that thy youth is renewed like the eagle's. The Lord executeth righteousness and judgment for all that are oppressed. He made known his ways unto Moses, his acts unto the children of Israel. The Lord is merciful and gracious, slow to anger, and plenteous in mercy. He will not always chide: neither will he keep his anger for ever. He hath not dealt with us after our sins; nor rewarded us according to our iniquities. For as the heaven is high above the earth, so great is his mercy toward them that fear him. As far as the east is from the west, so far hath he removed our transgressions from us. Like as a father pitieth his children, so the Lord pitieth them that fear him. For he knoweth our frame; he remembereth that we are dust. As for man, his days are as grass: as a flower of the field, so he flourisheth. For the wind passeth over it, and it is gone; and the place thereof shall know it no more. But the mercy of the Lord is from everlasting to everlasting upon them that fear him, and his righteousness unto children's children; To such as keep his covenant, and to those that remember his commandments to do them. The Lord hath prepared his throne in the heavens; and his kingdom ruleth over all. Bless the Lord, ye his angels, that excel in strength, that do his commandments, hearkening unto the voice of his word. Bless ye the Lord, all ye his hosts; ye ministers of his, that do his pleasure. Bless the Lord, all his works in all places of his dominion: bless the Lord, O my soul. I love the Lord, because he hath heard my voice and my supplications. Because he hath inclined his ear unto me, therefore will I call upon him as long as I live. The sorrows of death compassed me, and the pains of hell gat hold upon me: I found trouble and sorrow. Then called I upon the name of the Lord; O Lord, I beseech thee, deliver my soul. Gracious is the Lord, and righteous; yea, our God is merciful. The Lord preserveth the simple: I was brought low, and he helped me. Return unto thy rest, O my soul; for the Lord hath dealt bountifully with thee. For thou hast delivered my soul from death, mine eyes from tears, and my feet from falling. I will walk before the Lord in the land of the living. I believed, therefore have I spoken: I was greatly afflicted: I said in my haste, All men are liars. What shall I render unto the Lord for all his benefits toward me? I will take the cup of salvation, and call upon the name of the Lord. I will pay my vows unto the Lord now in the presence of all his people. Precious in the sight of the Lord is the death of his saints. O Lord, truly I am thy servant; I am thy servant, and the son of thine handmaid: thou hast loosed my bonds. I will offer to thee the sacrifice of thanksgiving, and will call upon the name of the Lord. I will pay my vows unto the Lord now in the presence of all his people. In the courts of the Lord's house, in the midst of thee, O Jerusalem. Praise ye the Lord. O praise the Lord, all ye nations: praise him, all ye people. For his merciful kindness is great toward us: and the truth of the Lord endureth for ever. Praise ye the Lord. I will lift up mine eyes unto the hills, from whence cometh my help. My help cometh from the Lord, which made heaven and earth. He will not suffer thy foot to be moved: he that keepeth thee will not slumber. Behold, he that keepeth Israel shall neither slumber nor sleep. The Lord is thy keeper: the Lord is thy shade upon thy right hand. The sun shall not smite thee by day, nor the moon by night. The Lord shall preserve thee from all evil: he shall preserve thy soul. The Lord shall preserve thy going out and thy coming in from this time forth, and even for evermore. I was glad when they said unto me, Let us go into the house of the Lord. Our feet shall stand within thy gates, O Jerusalem. Jerusalem is builded as a city that is compact together: Whither the tribes go up, the tribes of the Lord, unto the testimony of Israel, to give thanks unto the name of the Lord. For there are set thrones of judgment, the thrones of the house of David. Pray for the peace of Jerusalem: they shall prosper that love thee. Peace be within thy walls, and prosperity within thy palaces. For my brethren and companions' sakes, I will now say, Peace be within thee. Because of the house of the Lord our God I will seek thy good. Behold, how good and how pleasant it is for brethren to dwell together in unity! It 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; As 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. By the rivers of Babylon, there we sat down, yea, we wept, when we remembered Zion. We hanged our harps upon the willows in the midst thereof. For 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. How shall we sing the Lord's song in a strange land? If I forget thee, O Jerusalem, let my right hand forget her cunning. If I do not remember thee, let my tongue cleave to the roof of my mouth; if I prefer not Jerusalem above my chief joy. Remember, O Lord, the children of Edom in the day of Jerusalem; who said, Rase it, rase it, even to the foundation thereof. O daughter of Babylon, who art to be destroyed; happy shall he be, that rewardeth thee as thou hast served us. Happy shall he be, that taketh and dasheth thy little ones against the stones. O lord, thou hast searched me, and known me. Thou knowest my downsitting and mine uprising, thou understandest my thought afar off. Thou compassest my path and my lying down, and art acquainted with all my ways. For there is not a word in my tongue, but, lo, O Lord, thou knowest it altogether. Thou hast beset me behind and before, and laid thine hand upon me. Such knowledge is too wonderful for me; it is high, I cannot attain unto it. Whither shall I go from thy spirit? or whither shall I flee from thy presence? If I ascend up into heaven, thou art there: if I make my bed in hell, behold, thou art there. If I take the wings of the morning, and dwell in the uttermost parts of the sea; Even there shall thy hand lead me, and thy right hand shall hold me. If I say, Surely the darkness shall cover me; even the night shall be light about me. Yea, the darkness hideth not from thee; but the night shineth as the day: the darkness and the light are both alike to thee. For thou hast possessed my reins: thou hast covered me in my mother's womb. I will praise thee; for I am fearfully and wonderfully made: marvellous are thy works; and that my soul knoweth right well. My substance was not hid from thee, when I was made in secret, and curiously wrought in the lowest parts of the earth. Thine 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. How precious also are thy thoughts unto me, O God! how great is the sum of them! If I should count them, they are more in number than the sand: when I awake, I am still with thee. Surely thou wilt slay the wicked, O God: depart from me therefore, ye bloody men. For they speak against thee wickedly, and thine enemies take thy name in vain. Do not I hate them, O Lord, that hate thee? and am not I grieved with those that rise up against thee? I hate them with perfect hatred: I count them mine enemies. Search me, O God, and know my heart: try me, and know my thoughts: And see if there be any wicked way in me, and lead me in the way everlasting. The 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. Hear, 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. The ox knoweth his owner, and the ass his master's crib: but Israel doth not know, my people doth not consider. Ah 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. Why should ye be stricken any more? ye will revolt more and more: the whole head is sick, and the whole heart faint. From 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. Your 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. And the daughter of Zion is left as a cottage in a vineyard, as a lodge in a garden of cucumbers, as a besieged city. Except 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. Hear the word of the Lord, ye rulers of Sodom; give ear unto the law of our God, ye people of Gomorrah. To 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. When ye come to appear before me, who hath required this at your hand, to tread my courts? Bring 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. Your new moons and your appointed feasts my soul hateth: they are a trouble unto me; I am weary to bear them. And 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. Wash you, make you clean; put away the evil of your doings from before mine eyes; cease to do evil; Learn to do well; seek judgment, relieve the oppressed, judge the fatherless, plead for the widow. Come 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. If ye be willing and obedient, ye shall eat the good of the land: But if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the Lord hath spoken it. How is the faithful city become an harlot! it was full of judgment; righteousness lodged in it; but now murderers. Thy silver is become dross, thy wine mixed with water: Thy 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. Therefore 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: And I will turn my hand upon thee, and purely purge away thy dross, and take away all thy tin: And 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. Zion shall be redeemed with judgment, and her converts with righteousness. And the destruction of the transgressors and of the sinners shall be together, and they that forsake the Lord shall be consumed. For they shall be ashamed of the oaks which ye have desired, and ye shall be confounded for the gardens that ye have chosen. For ye shall be as an oak whose leaf fadeth, and as a garden that hath no water. And 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. The word that Isaiah the son of Amoz saw concerning Judah and Jerusalem. And 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. And 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. And 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. O house of Jacob, come ye, and let us walk in the light of the Lord. Therefore 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. Their 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: Their land also is full of idols; they worship the work of their own hands, that which their own fingers have made: And the mean man boweth down, and the great man humbleth himself: therefore forgive them not. Enter into the rock, and hide thee in the dust, for fear of the Lord, and for the glory of his majesty. The 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. For 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: And upon all the cedars of Lebanon, that are high and lifted up, and upon all the oaks of Bashan, And upon all the high mountains, and upon all the hills that are lifted up, And upon every high tower, and upon every fenced wall, And upon all the ships of Tarshish, and upon all pleasant pictures. And 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. And the idols he shall utterly abolish. And 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. In 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; To 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. Cease ye from man, whose breath is in his nostrils: for wherein is he to be accounted of ? The proverbs of Solomon the son of David, king of Israel; To know wisdom and instruction; to perceive the words of understanding; To receive the instruction of wisdom, justice, and judgment, and equity; To give subtilty to the simple, to the young man knowledge and discretion. A wise man will hear, and will increase learning; and a man of understanding shall attain unto wise counsels: To understand a proverb, and the interpretation; the words of the wise, and their dark sayings. The fear of the Lord is the beginning of knowledge: but fools despise wisdom and instruction. My son, hear the instruction of thy father, and forsake not the law of thy mother: For they shall be an ornament of grace unto thy head, and chains about thy neck. My son, if sinners entice thee, consent thou not. If they say, Come with us, let us lay wait for blood, let us lurk privily for the innocent without cause: Let us swallow them up alive as the grave; and whole, as those that go down into the pit: We shall find all precious substance, we shall fill our houses with spoil: Cast in thy lot among us; let us all have one purse: My son, walk not thou in the way with them; refrain thy foot from their path: For their feet run to evil, and make haste to shed blood. Surely in vain the net is spread in the sight of any bird. And they lay wait for their own blood; they lurk privily for their own lives. So are the ways of every one that is greedy of gain; which taketh away the life of the owners thereof. Wisdom crieth without; she uttereth her voice in the streets: She crieth in the chief place of concourse, in the openings of the gates: in the city she uttereth her words, saying, How long, ye simple ones, will ye love simplicity? and the scorners delight in their scorning, and fools hate knowledge? Turn you at my reproof: behold, I will pour out my spirit unto you, I will make known my words unto you. Because I have called, and ye refused; I have stretched out my hand, and no man regarded; But ye have set at nought all my counsel, and would none of my reproof: I also will laugh at your calamity; I will mock when your fear cometh; When your fear cometh as desolation, and your destruction cometh as a whirlwind; when distress and anguish cometh upon you. Then shall they call upon me, but I will not answer; they shall seek me early, but they shall not find me: For that they hated knowledge, and did not choose the fear of the Lord: They would none of my counsel: they despised all my reproof. Therefore shall they eat of the fruit of their own way, and be filled with their own devices. For the turning away of the simple shall slay them, and the prosperity of fools shall destroy them. But whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil. My son, keep my words, and lay up my commandments with thee. Keep my commandments, and live; and my law as the apple of thine eye. Bind them upon thy fingers, write them upon the table of thine heart. Say unto wisdom, Thou art my sister; and call understanding thy kinswoman: That they may keep thee from the strange [prostitute]woman, from the stranger [prostitute] which flattereth with her words. For at the window of my house I looked through my casement, And beheld among the simple ones, I discerned among the youths, a young man void of understanding, Passing through the street near her corner; and he went the way to her house, In the twilight, in the evening, in the black and dark night: And, behold, there met him a woman with the attire of an harlot [prostitute], and subtil of heart. (She is loud and stubborn; her feet abide not in her house:[euphemism for a prostitute] Now is she without, now in the streets, and lieth in wait at every corner.) So she caught him, and kissed him, and with an impudent face said unto him, I have peace offerings with me; this day have I payed my vows. Therefore came I forth to meet thee, diligently to seek thy face, and I have found thee. I have decked my bed with coverings of tapestry, with carved works, with fine linen of Egypt. I have perfumed my bed with myrrh, aloes, and cinnamon. Come, let us take our fill of love until the morning: let us solace ourselves with loves. For the goodman is not at home, he is gone a long journey: He hath taken a bag of money with him, and will come home at the day appointed. With her much fair speech she caused him to yield, with the flattering of her lips she forced [compelled/persuaded] him He goeth after her straightway, as an ox goeth to the slaughter, or as a fool to the correction of the stocks; Till a dart strike through his liver; as a bird hasteth to the snare, and knoweth not that it is for his life. Hearken unto me now therefore, O ye children, and attend to the words of my mouth. Let not thine heart decline to her ways, go not astray in her paths. For she hath cast down many wounded: yea, many strong men have been slain by her. Her house is the way to hell, going down to the chambers of death. ================================================ FILE: a4/collect_submission.bat ================================================ @echo off del /f assignment4.zip tar.exe -r -f assignment4.zip *.py chr_en_data sanity_check_en_es_data outputs ================================================ FILE: a4/collect_submission.sh ================================================ rm -f assignment4.zip zip -r assignment4.zip *.py ./chr_en_data ./sanity_check_en_es_data ./outputs ================================================ FILE: a4/gpu_requirements.txt ================================================ nltk docopt tqdm==4.29.1 sentencepiece sacrebleu torch ================================================ FILE: a4/local_env.yml ================================================ name: local_nmt channels: - pytorch - defaults dependencies: - python=3.7 - numpy - scipy - tqdm - docopt - pytorch - nltk - torchvision - pip - pip: - sentencepiece - sacrebleu ================================================ FILE: a4/model_embeddings.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-21: Homework 4 model_embeddings.py: Embeddings for the NMT model Pencheng Yin Sahil Chopra Anand Dhoot Vera Lin """ import torch.nn as nn class ModelEmbeddings(nn.Module): """ Class that converts input words to their embeddings. """ def __init__(self, embed_size, vocab): """ Init the Embedding layers. @param embed_size (int): Embedding size (dimensionality) @param vocab (Vocab): Vocabulary object containing src and tgt languages See vocab.py for documentation. """ super(ModelEmbeddings, self).__init__() self.embed_size = embed_size # default values self.source = None self.target = None src_pad_token_idx = vocab.src[''] tgt_pad_token_idx = vocab.tgt[''] ### YOUR CODE HERE (~2 Lines) ### TODO - Initialize the following variables: ### self.source (Embedding Layer for source language) ### self.target (Embedding Layer for target langauge) ### ### Note: ### 1. `vocab` object contains two vocabularies: ### `vocab.src` for source ### `vocab.tgt` for target ### 2. You can get the length of a specific vocabulary by running: ### `len(vocab.)` ### 3. Remember to include the padding token for the specific vocabulary ### when creating your Embedding. ### ### Use the following docs to properly initialize these variables: ### Embedding Layer: ### https://pytorch.org/docs/stable/nn.html#torch.nn.Embedding self.source = nn.Embedding(len(vocab.src), self.embed_size, padding_idx=src_pad_token_idx) self.target = nn.Embedding(len(vocab.tgt), self.embed_size, padding_idx=tgt_pad_token_idx) ### END YOUR CODE ================================================ FILE: a4/nmt_model.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-21: Homework 4 nmt_model.py: NMT Model Pencheng Yin Sahil Chopra Vera Lin """ from collections import namedtuple import sys from typing import List, Tuple, Dict, Set, Union import torch import torch.nn as nn import torch.nn.utils import torch.nn.functional as F from torch.nn.utils.rnn import pad_packed_sequence, pack_padded_sequence from model_embeddings import ModelEmbeddings Hypothesis = namedtuple('Hypothesis', ['value', 'score']) class NMT(nn.Module): """ Simple Neural Machine Translation Model: - Bidrectional LSTM Encoder - Unidirection LSTM Decoder - Global Attention Model (Luong, et al. 2015) """ def __init__(self, embed_size, hidden_size, vocab, dropout_rate=0.2): """ Init NMT Model. @param embed_size (int): Embedding size (dimensionality) @param hidden_size (int): Hidden Size, the size of hidden states (dimensionality) @param vocab (Vocab): Vocabulary object containing src and tgt languages See vocab.py for documentation. @param dropout_rate (float): Dropout probability, for attention """ super(NMT, self).__init__() self.model_embeddings = ModelEmbeddings(embed_size, vocab) self.hidden_size = hidden_size self.dropout_rate = dropout_rate self.vocab = vocab # default values self.encoder = None self.decoder = None self.h_projection = None self.c_projection = None self.att_projection = None self.combined_output_projection = None self.target_vocab_projection = None self.dropout = None # For sanity check only, not relevant to implementation self.gen_sanity_check = False self.counter = 0 ### YOUR CODE HERE (~8 Lines) ### TODO - Initialize the following variables: ### self.encoder (Bidirectional LSTM with bias) ### self.decoder (LSTM Cell with bias) ### self.h_projection (Linear Layer with no bias), called W_{h} in the PDF. ### self.c_projection (Linear Layer with no bias), called W_{c} in the PDF. ### self.att_projection (Linear Layer with no bias), called W_{attProj} in the PDF. ### self.combined_output_projection (Linear Layer with no bias), called W_{u} in the PDF. ### self.target_vocab_projection (Linear Layer with no bias), called W_{vocab} in the PDF. ### self.dropout (Dropout Layer) ### ### Use the following docs to properly initialize these variables: ### LSTM: ### https://pytorch.org/docs/stable/nn.html#torch.nn.LSTM ### LSTM Cell: ### https://pytorch.org/docs/stable/nn.html#torch.nn.LSTMCell ### Linear Layer: ### https://pytorch.org/docs/stable/nn.html#torch.nn.Linear ### Dropout Layer: ### https://pytorch.org/docs/stable/nn.html#torch.nn.Dropout self.encoder = nn.LSTM(input_size=embed_size, hidden_size=self.hidden_size, bias=True, bidirectional=True) self.decoder = nn.LSTMCell(input_size=embed_size + self.hidden_size, hidden_size=self.hidden_size, bias=True) self.h_projection = nn.Linear(self.hidden_size*2, self.hidden_size, bias=False) # W_{h} self.c_projection = nn.Linear(self.hidden_size*2, self.hidden_size, bias=False) # W_{c} self.att_projection = nn.Linear(self.hidden_size*2, self.hidden_size, bias=False) # W_{attProj} self.combined_output_projection = nn.Linear(self.hidden_size*3, self.hidden_size , bias=False) # W_{u} self.target_vocab_projection = nn.Linear(self.hidden_size, len(self.vocab.tgt), bias=False) # W_vocab self.dropout = nn.Dropout(p=self.dropout_rate) ### END YOUR CODE def forward(self, source: List[List[str]], target: List[List[str]]) -> torch.Tensor: """ Take a mini-batch of source and target sentences, compute the log-likelihood of target sentences under the language models learned by the NMT system. @param source (List[List[str]]): list of source sentence tokens @param target (List[List[str]]): list of target sentence tokens, wrapped by `` and `` @returns scores (Tensor): a variable/tensor of shape (b, ) representing the log-likelihood of generating the gold-standard target sentence for each example in the input batch. Here b = batch size. """ # Compute sentence lengths source_lengths = [len(s) for s in source] # Convert list of lists into tensors source_padded = self.vocab.src.to_input_tensor(source, device=self.device) # Tensor: (src_len, b) target_padded = self.vocab.tgt.to_input_tensor(target, device=self.device) # Tensor: (tgt_len, b) ### Run the network forward: ### 1. Apply the encoder to `source_padded` by calling `self.encode()` ### 2. Generate sentence masks for `source_padded` by calling `self.generate_sent_masks()` ### 3. Apply the decoder to compute combined-output by calling `self.decode()` ### 4. Compute log probability distribution over the target vocabulary using the ### combined_outputs returned by the `self.decode()` function. enc_hiddens, dec_init_state = self.encode(source_padded, source_lengths) enc_masks = self.generate_sent_masks(enc_hiddens, source_lengths) combined_outputs = self.decode(enc_hiddens, enc_masks, dec_init_state, target_padded) P = F.log_softmax(self.target_vocab_projection(combined_outputs), dim=-1) # Zero out, probabilities for which we have nothing in the target text target_masks = (target_padded != self.vocab.tgt['']).float() # Compute log probability of generating true target words target_gold_words_log_prob = torch.gather(P, index=target_padded[1:].unsqueeze(-1), dim=-1).squeeze(-1) * target_masks[1:] scores = target_gold_words_log_prob.sum(dim=0) return scores def encode(self, source_padded: torch.Tensor, source_lengths: List[int]) -> Tuple[torch.Tensor, Tuple[torch.Tensor, torch.Tensor]]: """ Apply the encoder to source sentences to obtain encoder hidden states. Additionally, take the final states of the encoder and project them to obtain initial states for decoder. @param source_padded (Tensor): Tensor of padded source sentences with shape (src_len, b), where b = batch_size, src_len = maximum source sentence length. Note that these have already been sorted in order of longest to shortest sentence. @param source_lengths (List[int]): List of actual lengths for each of the source sentences in the batch @returns enc_hiddens (Tensor): Tensor of hidden units with shape (b, src_len, h*2), where b = batch size, src_len = maximum source sentence length, h = hidden size. @returns dec_init_state (tuple(Tensor, Tensor)): Tuple of tensors representing the decoder's initial hidden state and cell. """ enc_hiddens, dec_init_state = None, None ### YOUR CODE HERE (~ 8 Lines) ### TODO: ### 1. Construct Tensor `X` of source sentences with shape (src_len, b, e) using the source model embeddings. ### src_len = maximum source sentence length, b = batch size, e = embedding size. Note ### that there is no initial hidden state or cell for the decoder. ### 2. Compute `enc_hiddens`, `last_hidden`, `last_cell` by applying the encoder to `X`. ### - Before you can apply the encoder, you need to apply the `pack_padded_sequence` function to X. ### - After you apply the encoder, you need to apply the `pad_packed_sequence` function to enc_hiddens. ### - Note that the shape of the tensor returned by the encoder is (src_len, b, h*2) and we want to ### return a tensor of shape (b, src_len, h*2) as `enc_hiddens`. ### 3. Compute `dec_init_state` = (init_decoder_hidden, init_decoder_cell): ### - `init_decoder_hidden`: ### `last_hidden` is a tensor shape (2, b, h). The first dimension corresponds to forwards and backwards. ### Concatenate the forwards and backwards tensors to obtain a tensor shape (b, 2*h). ### Apply the h_projection layer to this in order to compute init_decoder_hidden. ### This is h_0^{dec} in the PDF. Here b = batch size, h = hidden size ### - `init_decoder_cell`: ### `last_cell` is a tensor shape (2, b, h). The first dimension corresponds to forwards and backwards. ### Concatenate the forwards and backwards tensors to obtain a tensor shape (b, 2*h). ### Apply the c_projection layer to this in order to compute init_decoder_cell. ### This is c_0^{dec} in the PDF. Here b = batch size, h = hidden size ### ### See the following docs, as you may need to use some of the following functions in your implementation: ### Pack the padded sequence X before passing to the encoder: ### https://pytorch.org/docs/stable/nn.html#torch.nn.utils.rnn.pack_padded_sequence ### Pad the packed sequence, enc_hiddens, returned by the encoder: ### https://pytorch.org/docs/stable/nn.html#torch.nn.utils.rnn.pad_packed_sequence ### Tensor Concatenation: ### https://pytorch.org/docs/stable/torch.html#torch.cat ### Tensor Permute: ### https://pytorch.org/docs/stable/tensors.html#torch.Tensor.permute X = self.model_embeddings.source(source_padded) # X.shape (src_len, b, e) X_packed = pack_padded_sequence(X, source_lengths) # X-packed.shape (src_len, b, e) enc_hiddens, (last_hidden, last_cell) = self.encoder(X_packed) # enc.hiddens.shape (src_len, b, h*2) enc_hiddens, len_pad = pad_packed_sequence(enc_hiddens, batch_first=True) # shape (b, src_len, h*2) init_decoder_hidden = self.h_projection(torch.cat((last_hidden[0], last_hidden[1]), 1)) # shape (b, 2*h) init_decoder_cell = self.c_projection(torch.cat((last_cell[0], last_cell[1]), 1)) # shape (b, 2*h) dec_init_state = (init_decoder_hidden, init_decoder_cell) ### END YOUR CODE return enc_hiddens, dec_init_state def decode(self, enc_hiddens: torch.Tensor, enc_masks: torch.Tensor, dec_init_state: Tuple[torch.Tensor, torch.Tensor], target_padded: torch.Tensor) -> torch.Tensor: """Compute combined output vectors for a batch. @param enc_hiddens (Tensor): Hidden states (b, src_len, h*2), where b = batch size, src_len = maximum source sentence length, h = hidden size. @param enc_masks (Tensor): Tensor of sentence masks (b, src_len), where b = batch size, src_len = maximum source sentence length. @param dec_init_state (tuple(Tensor, Tensor)): Initial state and cell for decoder @param target_padded (Tensor): Gold-standard padded target sentences (tgt_len, b), where tgt_len = maximum target sentence length, b = batch size. @returns combined_outputs (Tensor): combined output tensor (tgt_len, b, h), where tgt_len = maximum target sentence length, b = batch_size, h = hidden size """ # Chop of the token for max length sentences. target_padded = target_padded[:-1] # Initialize the decoder state (hidden and cell) dec_state = dec_init_state # Initialize previous combined output vector o_{t-1} as zero batch_size = enc_hiddens.size(0) o_prev = torch.zeros(batch_size, self.hidden_size, device=self.device) # Initialize a list we will use to collect the combined output o_t on each step combined_outputs = [] ### YOUR CODE HERE (~9 Lines) ### TODO: ### 1. Apply the attention projection layer to `enc_hiddens` to obtain `enc_hiddens_proj`, ### which should be shape (b, src_len, h), ### where b = batch size, src_len = maximum source length, h = hidden size. ### This is applying W_{attProj} to h^enc, as described in the PDF. ### 2. Construct tensor `Y` of target sentences with shape (tgt_len, b, e) using the target model embeddings. ### where tgt_len = maximum target sentence length, b = batch size, e = embedding size. ### 3. Use the torch.split function to iterate over the time dimension of Y. ### Within the loop, this will give you Y_t of shape (1, b, e) where b = batch size, e = embedding size. ### - Squeeze Y_t into a tensor of dimension (b, e). ### - Construct Ybar_t by concatenating Y_t with o_prev on their last dimension ### - Use the step function to compute the the Decoder's next (cell, state) values ### as well as the new combined output o_t. ### - Append o_t to combined_outputs ### - Update o_prev to the new o_t. ### 4. Use torch.stack to convert combined_outputs from a list length tgt_len of ### tensors shape (b, h), to a single tensor shape (tgt_len, b, h) ### where tgt_len = maximum target sentence length, b = batch size, h = hidden size. ### ### Note: ### - When using the squeeze() function make sure to specify the dimension you want to squeeze ### over. Otherwise, you will remove the batch dimension accidentally, if batch_size = 1. ### ### You may find some of these functions useful: ### Zeros Tensor: ### https://pytorch.org/docs/stable/torch.html#torch.zeros ### Tensor Splitting (iteration): ### https://pytorch.org/docs/stable/torch.html#torch.split ### Tensor Dimension Squeezing: ### https://pytorch.org/docs/stable/torch.html#torch.squeeze ### Tensor Concatenation: ### https://pytorch.org/docs/stable/torch.html#torch.cat ### Tensor Stacking: ### https://pytorch.org/docs/stable/torch.html#torch.stack enc_hiddens_proj = self.att_projection(enc_hiddens) # shape (b, src_len, h) Y = self.model_embeddings.target(target_padded) # shape shape (tgt_len, b, e) for i in torch.split(Y, 1, dim=0): # torch.split(tensor, split_size_or_section, dim=0), Y_t.shape (1, b, e) Y_t = i.squeeze(0) # Y_t.shape (b, e), o_prev.shape (b, h), squeeze explicitly at location Ybar_t = torch.cat((Y_t, o_prev), dim=1) # Ybar_t.shape(b, e+h), torch.cat(tensors, dim=0, out=None) 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 combined_outputs.append(o_t) # shape (b, h) o_prev = o_t combined_outputs = torch.stack(combined_outputs, dim=0) # (tgt_len, b, h) ### END YOUR CODE return combined_outputs def step(self, Ybar_t: torch.Tensor, dec_state: Tuple[torch.Tensor, torch.Tensor], enc_hiddens: torch.Tensor, enc_hiddens_proj: torch.Tensor, enc_masks: torch.Tensor) -> Tuple[Tuple, torch.Tensor, torch.Tensor]: """ Compute one forward step of the LSTM decoder, including the attention computation. @param Ybar_t (Tensor): Concatenated Tensor of [Y_t o_prev], with shape (b, e + h). The input for the decoder, where b = batch size, e = embedding size, h = hidden size. @param dec_state (tuple(Tensor, Tensor)): Tuple of tensors both with shape (b, h), where b = batch size, h = hidden size. First tensor is decoder's prev hidden state, second tensor is decoder's prev cell. @param enc_hiddens (Tensor): Encoder hidden states Tensor, with shape (b, src_len, h * 2), where b = batch size, src_len = maximum source length, h = hidden size. @param enc_hiddens_proj (Tensor): Encoder hidden states Tensor, projected from (h * 2) to h. Tensor is with shape (b, src_len, h), where b = batch size, src_len = maximum source length, h = hidden size. @param enc_masks (Tensor): Tensor of sentence masks shape (b, src_len), where b = batch size, src_len is maximum source length. @returns dec_state (tuple (Tensor, Tensor)): Tuple of tensors both shape (b, h), where b = batch size, h = hidden size. First tensor is decoder's new hidden state, second tensor is decoder's new cell. @returns combined_output (Tensor): Combined output Tensor at timestep t, shape (b, h), where b = batch size, h = hidden size. @returns e_t (Tensor): Tensor of shape (b, src_len). It is attention scores distribution. Note: You will not use this outside of this function. We are simply returning this value so that we can sanity check your implementation. """ combined_output = None ### YOUR CODE HERE (~3 Lines) ### TODO: ### 1. Apply the decoder to `Ybar_t` and `dec_state`to obtain the new dec_state. ### 2. Split dec_state into its two parts (dec_hidden, dec_cell) ### 3. Compute the attention scores e_t, a Tensor shape (b, src_len). ### Note: b = batch_size, src_len = maximum source length, h = hidden size. ### ### Hints: ### - dec_hidden is shape (b, h) and corresponds to h^dec_t in the PDF (batched) ### - enc_hiddens_proj is shape (b, src_len, h) and corresponds to W_{attProj} h^enc (batched). ### - Use batched matrix multiplication (torch.bmm) to compute e_t (be careful about the input/ output shapes!) ### - To get the tensors into the right shapes for bmm, you will need to do some squeezing and unsqueezing. ### - When using the squeeze() function make sure to specify the dimension you want to squeeze ### over. Otherwise, you will remove the batch dimension accidentally, if batch_size = 1. ### ### Use the following docs to implement this functionality: ### Batch Multiplication: ### https://pytorch.org/docs/stable/torch.html#torch.bmm ### Tensor Unsqueeze: ### https://pytorch.org/docs/stable/torch.html#torch.unsqueeze ### Tensor Squeeze: ### https://pytorch.org/docs/stable/torch.html#torch.squeeze (dec_hidden, dec_cell) = self.decoder(Ybar_t, dec_state) dec_state = (dec_hidden, dec_cell) e_t = torch.bmm(enc_hiddens_proj, dec_hidden.unsqueeze(2)).squeeze(2) ### END YOUR CODE # Set e_t to -inf where enc_masks has 1 if enc_masks is not None: e_t.data.masked_fill_(enc_masks.bool(), -float('inf')) ### YOUR CODE HERE (~6 Lines) ### TODO: ### 1. Apply softmax to e_t to yield alpha_t ### 2. Use batched matrix multiplication between alpha_t and enc_hiddens to obtain the ### attention output vector, a_t. #$$ Hints: ### - alpha_t is shape (b, src_len) ### - enc_hiddens is shape (b, src_len, 2h) ### - a_t should be shape (b, 2h) ### - You will need to do some squeezing and unsqueezing. ### Note: b = batch size, src_len = maximum source length, h = hidden size. ### ### 3. Concatenate dec_hidden with a_t to compute tensor U_t ### 4. Apply the combined output projection layer to U_t to compute tensor V_t ### 5. Compute tensor O_t by first applying the Tanh function and then the dropout layer. ### ### Use the following docs to implement this functionality: ### Softmax: ### https://pytorch.org/docs/stable/nn.html#torch.nn.functional.softmax ### Batch Multiplication: ### https://pytorch.org/docs/stable/torch.html#torch.bmm ### Tensor View: ### https://pytorch.org/docs/stable/tensors.html#torch.Tensor.view ### Tensor Concatenation: ### https://pytorch.org/docs/stable/torch.html#torch.cat ### Tanh: ### https://pytorch.org/docs/stable/torch.html#torch.tanh alpha_t = F.softmax(e_t, dim= 1) # alpha_t.shape (b, src_len) a_t = torch.bmm(alpha_t.unsqueeze(1), enc_hiddens).squeeze(1) # a_t.shape (b, 2h) U_t = torch.cat((dec_hidden, a_t), 1) # (b, 3h) V_t = self.combined_output_projection(U_t) #(b, h, 3h) O_t = self.dropout(torch.tanh(V_t)) # O_t.shape (b, h) ### END YOUR CODE combined_output = O_t return dec_state, combined_output, e_t def generate_sent_masks(self, enc_hiddens: torch.Tensor, source_lengths: List[int]) -> torch.Tensor: """ Generate sentence masks for encoder hidden states. @param enc_hiddens (Tensor): encodings of shape (b, src_len, 2*h), where b = batch size, src_len = max source length, h = hidden size. @param source_lengths (List[int]): List of actual lengths for each of the sentences in the batch. @returns enc_masks (Tensor): Tensor of sentence masks of shape (b, src_len), where src_len = max source length, h = hidden size. """ enc_masks = torch.zeros(enc_hiddens.size(0), enc_hiddens.size(1), dtype=torch.float) for e_id, src_len in enumerate(source_lengths): enc_masks[e_id, src_len:] = 1 return enc_masks.to(self.device) def beam_search(self, src_sent: List[str], beam_size: int=5, max_decoding_time_step: int=70) -> List[Hypothesis]: """ Given a single source sentence, perform beam search, yielding translations in the target language. @param src_sent (List[str]): a single source sentence (words) @param beam_size (int): beam size @param max_decoding_time_step (int): maximum number of time steps to unroll the decoding RNN @returns hypotheses (List[Hypothesis]): a list of hypothesis, each hypothesis has two fields: value: List[str]: the decoded target sentence, represented as a list of words score: float: the log-likelihood of the target sentence """ src_sents_var = self.vocab.src.to_input_tensor([src_sent], self.device) src_encodings, dec_init_vec = self.encode(src_sents_var, [len(src_sent)]) src_encodings_att_linear = self.att_projection(src_encodings) h_tm1 = dec_init_vec att_tm1 = torch.zeros(1, self.hidden_size, device=self.device) eos_id = self.vocab.tgt[''] hypotheses = [['']] hyp_scores = torch.zeros(len(hypotheses), dtype=torch.float, device=self.device) completed_hypotheses = [] t = 0 while len(completed_hypotheses) < beam_size and t < max_decoding_time_step: t += 1 hyp_num = len(hypotheses) exp_src_encodings = src_encodings.expand(hyp_num, src_encodings.size(1), src_encodings.size(2)) exp_src_encodings_att_linear = src_encodings_att_linear.expand(hyp_num, src_encodings_att_linear.size(1), src_encodings_att_linear.size(2)) y_tm1 = torch.tensor([self.vocab.tgt[hyp[-1]] for hyp in hypotheses], dtype=torch.long, device=self.device) y_t_embed = self.model_embeddings.target(y_tm1) x = torch.cat([y_t_embed, att_tm1], dim=-1) (h_t, cell_t), att_t, _ = self.step(x, h_tm1, exp_src_encodings, exp_src_encodings_att_linear, enc_masks=None) # log probabilities over target words log_p_t = F.log_softmax(self.target_vocab_projection(att_t), dim=-1) live_hyp_num = beam_size - len(completed_hypotheses) contiuating_hyp_scores = (hyp_scores.unsqueeze(1).expand_as(log_p_t) + log_p_t).view(-1) top_cand_hyp_scores, top_cand_hyp_pos = torch.topk(contiuating_hyp_scores, k=live_hyp_num) prev_hyp_ids = top_cand_hyp_pos // len(self.vocab.tgt) hyp_word_ids = top_cand_hyp_pos % len(self.vocab.tgt) new_hypotheses = [] live_hyp_ids = [] new_hyp_scores = [] for prev_hyp_id, hyp_word_id, cand_new_hyp_score in zip(prev_hyp_ids, hyp_word_ids, top_cand_hyp_scores): prev_hyp_id = prev_hyp_id.item() hyp_word_id = hyp_word_id.item() cand_new_hyp_score = cand_new_hyp_score.item() hyp_word = self.vocab.tgt.id2word[hyp_word_id] new_hyp_sent = hypotheses[prev_hyp_id] + [hyp_word] if hyp_word == '': completed_hypotheses.append(Hypothesis(value=new_hyp_sent[1:-1], score=cand_new_hyp_score)) else: new_hypotheses.append(new_hyp_sent) live_hyp_ids.append(prev_hyp_id) new_hyp_scores.append(cand_new_hyp_score) if len(completed_hypotheses) == beam_size: break live_hyp_ids = torch.tensor(live_hyp_ids, dtype=torch.long, device=self.device) h_tm1 = (h_t[live_hyp_ids], cell_t[live_hyp_ids]) att_tm1 = att_t[live_hyp_ids] hypotheses = new_hypotheses hyp_scores = torch.tensor(new_hyp_scores, dtype=torch.float, device=self.device) if len(completed_hypotheses) == 0: completed_hypotheses.append(Hypothesis(value=hypotheses[0][1:], score=hyp_scores[0].item())) completed_hypotheses.sort(key=lambda hyp: hyp.score, reverse=True) return completed_hypotheses @property def device(self) -> torch.device: """ Determine which device to place the Tensors upon, CPU or GPU. """ return self.model_embeddings.source.weight.device @staticmethod def load(model_path: str): """ Load the model from a file. @param model_path (str): path to model """ params = torch.load(model_path, map_location=lambda storage, loc: storage) args = params['args'] model = NMT(vocab=params['vocab'], **args) model.load_state_dict(params['state_dict']) return model def save(self, path: str): """ Save the odel to a file. @param path (str): path to the model """ print('save model parameters to [%s]' % path, file=sys.stderr) params = { 'args': dict(embed_size=self.model_embeddings.embed_size, hidden_size=self.hidden_size, dropout_rate=self.dropout_rate), 'vocab': self.vocab, 'state_dict': self.state_dict() } torch.save(params, path) ================================================ FILE: a4/outputs/.gitignore ================================================ ================================================ FILE: a4/outputs/test_outputs.txt ================================================ The Abraham said unto him, Moses and prophets; that he may be with them. “Well,” said Charlotte. 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. When he was going to the other side. 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. not in the evil work, but the righteousness of righteousness; which is not worthy of you, neither is no more with him: And there was no root of them, that the faith of faith were with them. And they were all amazed, they said to another, Know ye, not all these things are of Galilee? 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. 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. 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. But if we cast out demons in the temple of God, ye shall not see the kingdom of God. I guess I was a tree in the tree, and I would have a tree.” 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. It went into the air and wiped their noses and ate. Even as it is written in the law of the law in the law of Israel; 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. Wilbur stood asleep. 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; I’m going to me. He sat on the edge of the other side, he put them into heaven. 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. Her egg sac sac. And as he had seen it, he took bread, and gave thanks, he gave them, and gave them, and said, This is my body. Perry went back to the ground and the sounds of the man, wet wet. Not me. And when they were come to pass, they were astonished, they began to say, Who is this, who did also also also? This was three days, when he went out again unto the second time. 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. “I don’t feel life for the barn’s barn. 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. And they shall not say that it is written, that the stones of the chief corner; “Oh, Charlotte,” she said. “I’m going to the Ferris wheel, but I’m not need. I say unto you, I will keep you; for it is, I will give you: I pray thee, ye shall die. whose Father is greater than all, and I cannot be able to my Father. The spider seemed to the web, This is the web seemed to the spider. It was like the winds of the air. Yea, who is the law of the law, but the law of the law, And he said unto him, Friend, why do ye that thou art here that thou art? And they were afraid. Salute another with love with love. II. For whatsoever is no one that is in the things; he that doeth all things are the things of God. “What are you going to do?” asked asked. 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? And they took the fire in the fire, and the fish, and the fishes. But though it is good for thee for thee. “I’m going to eat, and his tail was sitting in the sun. 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. 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, 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. You'll get you, Wilbur! 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. And when he went to the door of the door, and said unto Peter, Art thou also this man? I am not. For this is the love of God, that he may keep his commandments to the law; and the law is not. “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. And in the blue, of gold, with gold, with their handss. erily I say unto you, This generation shall not pass away. You’re all my morning.” And there are the disciples of the disciples. and when I beseech thee, I pray thee, I pray thee not a new law; I am not a new law; He went back to the dump and went back to his house. And, behold, this voice came out of heaven, This is my beloved son, that it is well. Then do good good tree, and shall be done evil evil evil; for it is a tree that is in the world. One morning Wilbur. Mrs milk.” And he that followed him, and saw him; and the flood was left, and took him. 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. 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. nto the multitude of the multitude, because they were three days three days, because they were not three days; And they that were with him, they brought him out of the demons, and gave him a pig. 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. For your faith were gone down from all men. And when they heard these things, and they that were with him, they were not afraid. Now there was a certain man named Csarea, a centurion, a centurion, a centurion, of the centurion. Fern was sitting in the edge of Fern, and I’d going to another. 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. And I will give thee thee, and ye shall be with me: and because I have found me. And Philip said unto him, two hundred and the bread that is not able to make one of them. And he went out another, and said unto them that were bidden, and said unto them that were with us. When he fell down to the ground. Then another spider. And when John came to him, and began to say unto John the people; how are ye into the wilderness? But they told them not. 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. But we know that the truth is true, and I thought that they might have been made. He went back to be a long time to be a long time to be a long time to be the water. There was also that two thousand came also two talents. Then he went on the eleven disciples to the disciples, The Jews therefore said, What shall I tell him? saying, I will not go. When it came to the top of the air, and she sat down from the ground, and then it was a deep. And they brought him to him, Paul said unto him, The centurion came unto the centurion of the centurion. “Look out for it!” he Fern. Lurvy went and went up and went on his own hand. It was like a lot of wood. He that is born in his own body, that we might receive the body, that we might be made for a sin unto righteousness; This will I live with me. He would have a swim in the straw. And in the midst of the web. And they said, Because thou hast found in the presence of Moses, and in the country. And they that were not ignorant, let him hear. And they tell me, whose is the greatest? Mr. He was tired and happy. “Well, Wilbur!” said the old sheep. 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. But I say, Is not I say unto you? yea, indeed ye have heard the world, and from the end of the earth. “Don’t worry, Templeton!” said Charlotte. But when he was gone away, but I’m not going to be, when he didn’t want to sleep. So that we may make one of each one of each one of God. For I say unto you, There shall not come unto you, until ye say, This is the name of the Lord: And he answered and said, There is no man in the house of Egypt, the sheep of the sheep of the house of Israel. Beloved, because it is love: for love is the God of God, and one of the God of God; 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. Charley started with a stone in a rock, and put it into the top of his head. From the ueens, and rolled to the Ridges, and I’d like the Ridges of the Nation. “Yes, it is,” said Wilbur. p! And the last egg, he said, I will surely my son. “It’s name of him. “Well,” said the goose. “Good!” said Charlotte. 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. For there are all things that are in the sight of God, yea, and erily is in the sight of God. 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. These are they that are sown in the way, that they went into the country, and went down into the midst of his hands, Please, I'm going to sleep!” 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. 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. For ye shall say unto the bread of bread, and this cup, The cup of the Lord, until he come. 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. Take heed unto you, and pray thee, if any man thinketheth me, if any man hath given you, even as ye also do. But ye shall not be of them, for your Father because ye have your father before you. This is the work which thou hast given me, my beloved brother, even as thou hast given me to be comforted. And I pray thee, and be filled with me, and in my name; Wherefore, my beloved, beloved, ye know that the things which is with you? The days seemed up and the Zuckermans and the Zuckermans were gone up. 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? 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: Mr. The chief priests and the chief priests and the elders shall come to death, and they shall see. And there was one of the four living creatures seven angels and seven angels, and the wrath of God, even for ever and ever. But concerning the Son of man’s Son, whose Son are in the world, 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. 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, 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. The horses seemed to the goose, but the goose said. This is a good world. They answered him and said unto him, I am Abraham of Abraham’s seed, and I will not see it? And he that sent him by the way of them, when he saw it in the sight of it. And he said unto her a man, half a half. But if thou refuse to him, let him go to the poor to the poor, that they might receive the poor, and the blind; They shall not be with a stranger, let it be no wise. So in the end of sin is sin; and sin is the death of death. 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, “I’ll worry about here,” said Fern. “I don’t know what I don’t know the word.” “Yes,” he said. And when I was come to because of the time, I was in the sight of the swine. Then he looked up into the air. that the righteousness of righteousness, which is in the resurrection, the resurrection of the resurrection; and they gave them away of the resurrection. It seemed to the end of the end of it was very grievous to be. Perry’t not going to be a good way to the West, but I guessed it was not. “Do Fern Fern?” He that would not be found in the house of the dead, and see Mr. Zuckerman. And straightway the voice of Jesus went out from him, and said unto him, Sirs is, because thou art in the earth? 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, 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. 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. 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. “This, one seven?” When he had left him, and went away to the master’s wombs, that they might make all that were with him. “Oalutations!” And he went to sleep. 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. The goose came to pass, the seven goslings had gone up and seven goslings. 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. But he spake unto him, and said unto his hand, Arise, and sat down. And he arose and sat down. 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. That he was coming from the city. But the other part of some rose up, and fell upon the ship. And there came to him, and took him on him, and said unto him, If thou wilt, thou canst make me. Wherefore he sent to me, that he might send them out of them. It was a few time, one of the other fish. 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. 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. I'll let you see the pig. Don't now now!” 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. He went back into his yard. Sack for the first Grounds of the Fair Grounds, all the Zuckermans’s life. This is the things which I have spoken unto you, that they might eat. 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. And they brought all his hand. And when they were in those days, that they were able to God; but when he had seen all the people all the people, 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. And Peter and John came with them with them, and asked him, and John came into the third hour. And some of them believed, and gave them forth to Paul and Silas, and many rulers of God, 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, These things are the church of the church: If they say unto you, that ye may be saved, the disciples of God, are good. And they said, John the Baptist; but some of Elijah is Elijah; and others, a certain prophets. 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. When they were going down. 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; And he sent unto him Peter and John, saying, Go into the passover, that it may be light. and he did not know that he did not know that in Jesus: for Jesus went away from them; for they were there. Arise, behold, the sower went forth; behold, the sower went forth; Templeton. And all men shall be for all men’s sake. And they knew not no man: and there was no more come out of heaven. 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. I am the light of the world, that he that believeth on me is no more in darkness. 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? On the morrow was in the morrow, he was standing in the morrow, 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. It was in his own. But he charged them, and said, It is not lawful in the spirit of you. but this is written, It is written, Behold, I send my servant before thy face, that thou shalt take before thee before thee. “Look, it!” cried Wilbur. And the angel said unto him, Go on, and thou shalt eat his feet. And he said unto him, Give me and drink. And the women of the women shall be with women, as the men of women, as the women of women were evil. Wilbur lay down his head. 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. But he was very far to the city. But he said unto him, If we be not ashamed of Moses, and the prophets, not also also also, whosoever was dead. Where is a man? Where is the old? Where is a piece of the world? Is not to God that are in the world? Everybody was proud in my mouth and said to his life in the world. I’m not here. He answered and said unto him, Whosoever shall hear me in the second time; 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. The boy said to the tree, Jesus said unto them, If you say, I pray you, some of the fishes? None of them. For a man loveth his wife according to the love: and so also the woman also with her husband. There was not able to live. He went back into the house and looked in the house. 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. 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. I will take my peace and ever. In that day ye shall go, and ye shall die: and I will not see the Father; that the faith of faith shall be justified in the power of God, that ye may be filled in the last last. And some of them would see Wilbur, that he would not make it a fire in the fire. 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. I know thy works, that thou mayest eat and drink; but I will not hear thee, and thou shalt live. In the Cherokees of the Cherokee people had been in the mountains. This is a good pig and a good pig. For the other side of the river was gone out of the river, and Fern had left the creek. 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. It was a knife in the creek, and I saw the end of the end of the month, by the end of the grandstand. And they could not be able to pass, this is now. “It’s all all. But I don’t know that I’m not. I’m not what it is like a long time. And there was a great multitude, and in the ark, and came into the ark, and went away to the ark. “Can I see?” asked the doctor. Having to be baptized of your hearts; After a while, he saw her back, he saw his head. He climbed into the edge of his pocket, and came back into the blanket, and came back into the woods. The men of the people go up to the ground, and they could not go out from the ground. for we would have been in the days of Christ, that we may believe in Christ. whose are they that believe not, because of all the land of righteousness, in all things have been made manifest. For ye know that ye know, brethren, that they might not be vain. to whom the glory of the glory of the glory which is given unto us: And they shall keep the hem of his mouth. 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. 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. They went back to the smoke of the air and was a pomegranate in the air. Now now, Lord, the Lord hath eternal eternal, neither shall not be able to God, and glory for ever and ever: Amen. 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. And I heard a voice of all things that are in the temple, and an hundred and forty years of the children of Israel. Be not therefore for them: for there is not nothing, that it should not be manifested, neither is nothing, neither is nothing. And Jesus lifted up his eyes, and saw a great multitude, he saith unto Philip, Whence I have done. Know ye not this, that they may know the Christ, and shall keep the glory of his glory. 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. If I was not a very grievous to the ground and she was like a balloon. 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, Wherefore, brethren, I pray thee, ye are not flesh, who are in the flesh. Charlotte felt Charlotte, and Wilbur was going to Wilbur. Furthermore, and I guess it was in the way, he was in the air. And he spake unto him, saying, Take heed unto us, how shall ye do? how long shall I give you? Salute the glory of our Lord Jesus Christ, because two of the Lord Jesus Christ. And all that were gathered together, and the governor, and the Lord. He was tired and she was going to sleep. The people seemed not the Cherokees of the Nation. But as as as as as as they were going, as ye were baptized; ye are afraid. It was a little city. But whosoever shall deliver me before men, because of the angels of God. The next day of the day we were going up to the day. 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. Then, the web,” said the web, “I’m going to sleep. 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. Wherefore, brethren, we have sent you with you in all things, in all things, for your faith. I’m going to stand in the killers. And some of the fish, a fish of a large fish, a fish of the fish. But he knew that he could not believe it. And when Jesus saw him, the multitude of many witnesses were gathered together, and the Holy Spirit, and said unto him, nto the Spirit, I pray thee, and be no more. Now these are the scriptures, that they may be filled in the sight of their works, even so also I also. 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. 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: With some of the web I'll get a web in the spider, and the spider’s spider. And the fish shall say, Thou shalt eat the serpent? 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. 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. And when they were gone away, straightway they were left. For a while the old man had been gone to the old man. If ye know this, I know it. The spider's a spider’s web in the barn and the barn was a pigpen in the barn. “I don’t want to die!” he cried in a loud voice voice, And when he had taken the four corners of the four corners of his own wood. As at the way, there came across across the dark side. James, the God and Jesus Christ, who is called unto you, who are called you, 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. 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. This is the first and the law. But thou shalt make it with you, and make thy brethren with thy brethren. 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. 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, 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; Now when it was no more, he went up into the mountains. And they went up to the rest, and they would not believe. “I’m going to sleep,” she thought. I don’t know what I said. And the officers that heard these things were come to pass. And when they heard it, they heard that they heard. “How?” said Charlotte. The little tree, what? said the boy. Blessed are they that dwell in the house, when they shall come in the way: erily, verily, I will say, erily I will say unto you. “That’s all,” said Wilbur. The chief priests and the officers saw him, they cried out, they cried out, and cried out, and said, Thou shalt not die. When Mr. Zuckerman went back into the house, and took her back into the pigpen. And let us make their hearts in your love and love, love in love and work, But Paul cried with a loud voice, saying, Thou shalt not kill thee, for we are here in all. This would have been done, he said. And the devil took him away from the mountain, and took him to him that were in the midst of the earth. For the grace of your faith are faith with faith; and it is not for yourselves; 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. 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. Then he was like the top of the ground and it was a little sheep to the ground. “I don’t noticed a pig of Charlotte. And to the angel of the church: This saith the Son of God: And straightway the ears of them that were opened; and he laid them out of them, and blessed him. But I say unto you, Thou shalt love your hearts, that ye may do good good, and do good good, and blessed them. And when they heard it, they brought him to the Lord. 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. Are you all? Fern had buried her hair in her hair. I say unto you, that they should send them away from them? 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 Wilbur. 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. For the angels that are in the world, which is in the world, that he might be saved. And when they had sat down on the mountain, went on the mount. “You’s going on the web, there is a big-handed.” There was no any man. 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. She went out of the river. As the children of children, the children, whoses, the children, too. Wherefore my heart is good, and I will eat with you, and also also in the hope of his hope; There was no more. Moreover the church also in the church where they were in the church. Salute my beloved beloved, who is in the beginning of Christ. 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. But the God of God is with grace, beingcause of our own salvation; The hot was hot. For whosoever shall be with him, and he shall die: but whosoever shall not be left, he shall be left. The younger people stood at the kitchen, and he walked back to them. And Jesus went forth to the disciples to the disciples. They were of the people rose up on the two men, and they took the other. 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. 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. Jesus said unto him, Dost thou not this, and if it is good, thou shalt receive the glory of God. And it was good good for God, that I may be given unto you, and with you. Jesus therefore therefore, when he was in all, that they might be fulfilled, that the scripture might be fulfilled, that he might be saved. Every one that walketh in the days of Christ, even as we have heard the mystery of God. 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. Don't tell you a little fish! 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. If it came to the Fair, and he walked back to keep it for it. It seemed to be a minute in the mountains. And he said, erily I say unto you, This is the poor more than the more. 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. He had two two men, and children and children and children and children. From it, that they would have something’s that which was something’s soil. 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? 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. The geese cheered. If ye shall ask in my name, that he may do. to whom he was come, and saw the grace of God, and he spake to the power of all the power of the Lord. In that day Jesus went into the house of Jesus, and the breadth thereof. 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. 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. and not only, but God also with our Lord Jesus Christ, that ye may receive this day. He wanted to the new new world, he was peaceful. For our God abideth with us in Christ Jesus. And Philip, brethren, and Thomas, and Thomas, and James the son of Zohar, And in the synagogues, there was a spirit of unclean spirit, and rose up, And the next day, a boy. It was a long of wood, and I didn’t catch it a good way to the soldiers. I rose up with me. The heart of his heart shall not be ashamed of his heart, but in the sight, and in the sight of his life? “I don’t get on the other side of the air,” he said, “I’m going to get up. And he said unto them, What is a little multitude? John John. And he put the right hand into the hand of the hand; and straightway he left his feet, and took him on his hand. He sat on the table and his hands on the top of his hands and sat down on the top of his hands. The boy said, We’m going to the rest. This are the egg sac.” It was a good thing. Or Spirit I say unto you, Thou shalt not know thy soul: for what is I to do that I am of the Spirit? 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. For they said, Take heed out of the land. And when Herod was taken away, and put him away his feet, and commanded him. Because of the beginning of the Lord Jesus our Lord Jesus, that he might receive his life in us. And I saw them that sat on the way; and the time of this time shall be done unto all these things. Grace to you and peace from God, and the Lord Jesus Christ. 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. “I’m not going to sleep in the midst of the country. He fell down his head, and his knees, and his neck. 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. What then shall they do? Shall I come with me? or he that is love, and the Spirit? And they made the other side of the gold. And when he got to the Avery, Avery, too. 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. For there shall we say unto men? God is good? or if a good man doth not to my master? But I say unto you, that ye shall receive the glory of the day of the day of the day of the city. Now when they had told him, he showed the things concerning these things, And I will make thy right hand. 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. 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. But he made a rich man, but as a flower of a flower, even as it is like. The next day was dark and dark. 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, He that sat on his head across the fire with a knife. of the grace of Christ Jesus: “It’s a very hour,” said Charlotte. They fell down down. 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. For as he came to pass in the days of Noah, according to the Son of man. “I’m nothing to eat. And after these things I saw, and, behold, the ruler of the ark are the tabernacle; When Bear was in Bear’s day, Charley had been seen that which was not worthy of Bear. 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. 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. It is very nice to you, but I said. 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. But But ye fast, let them go out, and let them go, And God shall be filled with the works of God, The second time I’ll see him, and I’ll see the pig. And when they had seen the people, they came to them that were with him, they spake unto them: And there shall be filled with him that he should not die. The truck of the truck, as it was like to the truck that had been like to the West. These things had the ground. Charlotte was afraid to see the web. And they could not see the child. 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. And when even when it was come, the same is it unto you, that he might light on the day. And when he had brought it out of the people, he entered into his hand, and kissed him. And if ye shall be given unto you in peace, be peace in peace. Ye have heard that it is said, Thou shalt love thy neighbour, and take thy neighbor. He,” he said. That I have said unto you, and to see the day of Israel, for the children of Israel hath been spoken unto me. The woods are in the woods. They were gone down into the barn. But if ye shall eat of you, lest ye know that ye have no wise. Behold, your father is gone. even as ye know that we may believe with us, and now I have spoken of you. In the next day I came back to the ground, and I found in the three days of the next day. pons because he was gone up. From blood,” said Charlotte, in a man. And when he was come into the seventh day, the disciples came into the house, and followed him. 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. When Mr. Zuckerman heard the door, he planned to the door, “You’m going to the web,” said Mrs. Arable. “I’m going to know it. And ye all things, that ye may do one to another, according to the gospel of God. So that he was gone away, and they were amazed. 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; 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? “What are your web?” asked Wilbur. 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. The colonel seemed to the colonel and the colonel would have the colonel. And he said, Peter, and he began to tell him. 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. I'll know what the barn cellar. He said I was like a ueens. I don’t want to the Fair, and I'm too. 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. Jesus saith unto him, I am the resurrection and life. He that believeth on me is dead, because he is dead. The next morning, as it were across the next morning, as it was like across the stockade. II. 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. 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. 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. to the power, because of righteousness, evilly, uncleanness, uncleanness, inwardly, in necessities, 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. 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; And they all heard that they were gathered together with the sheep. But if if if if I could not make you if we would live. Jesus answered and said unto them, This is the temple in the temple, and in the day of the day I shall see me. All of all that Crockett had been in all. If I am not because I’m not because of it. 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; And they were gathered together with them, and told him, and told all the chief priests and the elders. The day was gone. Be not your brethren, ye know that ye know that ye have no more. Beware of God, according to the flesh of his sons; Templeton. unto the brethren, and your brethren in Christ, and peace from peace from God our Father and the Lord Jesus Christ. She’s head and the boys would not see the ground, they went out. I'll be a good time?” And he said unto him, Cast thee out and thee, and I will give thee a land unto thee. He sat in the midst. They went out, I said, I said. I will go down down to the ground. Then they all the second time, saying, It is not this man, but he is called Barabbas. He leaned with the rope. These are the Son of Zebedee, Mary his mother, and his brethren, and Simon, and Simon, and Simon? This is going to sleep. For the Lord hardened the eyes of the Lord, and the children of them, but the face of the Lord. 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. Wherefore we sent unto him, that he might touch him, according to the end of his mind, according to the end of it. Mrs. Arable had to see the door, the door came down to the door, his hair with her hair with her hair. and Ram begat Jotham; and there begat Arphaxad; and Manasseh begat Arphaxad; and Manasseh begat Hezekiah; 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. But he said unto them, I have sinned my word. 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. Be not therefore that ye shall say, What is it, and what is it, and what shall they eat? They could not see them. And they gathered together all the way. 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. which whosoever rejecteth them that are sick; He that’s because of Bear’s office. And I beseech you, brethren, that ye may be given unto you; for ye shall speak in the book of the book. Mrs. And when the good priests and the officers went forth to meet them: for they feared the multitude, they are a stone. 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. And they made a little while, he fell down and worshipped him, and worshipped him. This was come to come. From three days were gone up, even as I had been done in the ground. 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. the son of Martha, the son of Matthat, the son of Matthat, the son of Matthat, the son of Melchi, the son of Zibeon, Thou shalt not the man of the Lord. “I’m all. 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, 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. And when he entered into the hand, he sat down, and was night. but there is a great body, but one body. That I had done all the people, I had told them out of them that had been spoken to them. And he took one of them, and said unto him, Shall we go to Jerusalem, and because thou knew that which is these things? But if ye do all things, that there is no man, or a man, whosoever believeth on him, and every one that doetheth him; “Aoets?” For he hath loved love the people, and in that day I will come to pass. Thou shalt make the law with the law, thou shalt make the commandments of the law; Lurvy Wilbur’s straw for Wilbur’s pen. 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. “How shall they see Wilbur?” asked Mrs. Zuckerman. 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. For there is no one that loveth him, he shall say unto him, that it is written, the world appeared unto you. “How is true,” he thought. The Cherokees of the Nation, I said. This is the ground. Beware of them, knowing that evil evil; but ye shall ask of them. But if ye shall be baptized in the law of the prophet, What shall not make a prophet in a prophet? Whosoever shall lose his life shall lose it: and whosoever shall lose his life in the world, who shall be to eternal life. She climbed to the ground, and she fell down down, and then bowed down. 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? 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. 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; Be not therefore that are in the sight of the faith, which is of the body. So then they would make them that they could eat them that they had fed them in the ground with them. And the people saw him, and followed him, and followed him, and fell down to the tomb, and they bowed down unto them. “He!” he said. I’ll get it back on Charley. The sabbath was very old. He sat down to the web. “I am,” said Wilbur. And I saw it, and I was going down in the night when I had said, I am a few. But that ye may know that the Son of man is able to save the world, erily I say unto thee, Arise, Take thy bed, and go thy way. The stone seemed a stone between a stone, and then it was a rock. “Charlotte?” II. And Jesus said unto him, Fear not: for whosoever is not lawful for us. And they also set their little little children, that he might eat: but the disciples saw that they saw him. Avery jumped to the other. And they appeared unto them that Elijah, and spake unto Moses; and Jesus said unto him. 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. 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. “Oh, here, here!” said the gander. saying, What is ye that thou son of Christ, who is the Son of man? “I’m going to me.” And they said to another, Who shall I make a stone to the tomb? 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: For the poor always always; but I will not always always. But when Jesus heard it, he said unto them, that they should have no need of them, but they that are sick. He shall make one a wife, and the good sons and his head. Fear not: for your Father is good in the Lord. Woe unto you, scribes and Pharisees, hypocrites! for ye are the sea and the earth, and in the land of your faith. And they shall put him into the castle, he would not die: None of it is there, for that he is. 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. And when they had come to the church, and brought the church in the church of God, and gave them out of the Gentiles. Jesus was a demon with a demon; and the devil went a boy, and was made in the hour. I will go. And when he was in those days, that the same is begotten of the Spirit, even so is now. It was a grey grey body, he sat down under the ground. The barn was gone out from the barn, when he could see the fence of the fence. Seeing all these things that are sown in subjection unto them; and who will keep me in the last world. Asmeret climbed in the woods in the woods in the woods in the woods. Charley’s going to Charley’s tail, and the crowds and ate the ground and ate the men. But when Jesus saw it, when he saw much evil, he said, All things that are in the kingdom of God! 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. This is the thing of the land of the earth because of the thousand years. “Look out of it, Avery!” cried Mrs. Zuckerman. The children seemed in the air and then shall be in the air. Go back from me. And he spake unto the multitudes, and took the five loaves and the five loaves and the two fishes and two fishes. Then she looked for a while. but to the grace of our Lord and our Saviour Jesus Christ; for the glory for ever and ever. Amen. 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? I'm back to me. 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; And after the two days he went forth, and went into Galilee. And Jesus went up from thence from thence, and went away from thence. A children of children, and then all the Fair. And he spake unto them, and went up, and went with them in the temple, and went with them in the temple, And behold, there came a certain ruler of the synagogue, he was called: and when he saw him, he fell on his feet, For that ye shall be in peace, then ye shall say, even as the woman hath taken away; and they shall not eat. “Good night, Charlotte!” For verily, I pray thee in the sight of thy son, and of the people, and of the people, and the people of Israel, and let not the poor of the Holy Spirit of God, that ye may receive him until day. He sat on the fence and went into the fence and went out into the pigpen. It’m going. “I’m going to me.” 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 Juda, and go into Juda, I pray thee. Now therefore the man shall cast out the hand of the ephod. The chief priests and the Pharisees heard it, and they heard that he had said. Ye are my beloved, and also God, with all things and righteousness, and I am not worthy of you; For we have been able to see the day, in that which is the power of the circumcision, that is the mystery of fornication, “This you!” And he charged them many things, and said unto his teaching, He was like a good way to Wilbur. And she took his own child, men’s child. 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. In the ground of the ground. And God is the kingdom of God, because they were gathered together, because they say, and not the evil of their works. And whatsoever ye have done with us, because ye have heard of the law, and have mercy with them, that he might bless us. And he that sat in his house shall be well: but he that eateth not, he shall live. but he that walketh in the sight of God in the sight of God. Mrs, and two years came to Fern. I’m like a very grievous, and I’m like to get with you. The disciples therefore came to him, saying, Why do we that we should do? I was very fair to me. Wilbur didn’t understand. Mr. It was like the ground in the ground, though he could hear. 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, And they rose up again again the temple, and all the people came to him; and they went down, and kissed them. And they were filled with their heart. Wherefore therefore therefore that thou hast taken away from thee, which I have said unto thee, that I may be brought for you. Now there was before the mount side of Mary. The rat’s going in the rat’s in the rat’s in the top of the top of the truck.” And Jesus spake unto them their eyes, and straightway it was come: and they followed him. And they all their garments according to every man’s sake. “I’m going to eat one?” And it came to pass in those days, that they came unto Csarea into the earth. He wanted to stay and in the country. 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; Now a certain man was a certain man named God. 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. who also also the things which I have done, that ye may be according to the same, that in the power of his power. 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; I told you, when he was very old, but when he was very idea to them. But we are not vain of men that are of men. 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. 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. This is a few time I appeared to pass. Many of them that sat down in the mountains’s office, they took them out of them. When the voice of the wilderness, saith he saith, Beware of the wilderness, saying, Make the Lord, let him go away. He climbed up into the straw, in the manure pile. He that would have been done, so that the blind man would come out of the river. But because of God, that ye have received the sin of sin, but ye received the things that were in the beginning. The cows and the barn grew to him. One of them, when I was going down to the city and came to the ground in the wilderness. What then shall we say then? Are ye not the truth? God forbid. 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. And Jesus said unto him, I will go again. For we are not ourselves in our hearts, but Christ Jesus: and the things of the Lord Jesus. 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. And they were all, and were filled; and when he saw the broken pieces, seven baskets. I said, I didn’t want to keep the ground with the ground. “It’s a boy with me?” And he went away from the way of the tomb, that he might be fulfilled the signs which he had done for all things. Are ye greater than Abraham than the father of Abraham, who is the prophets? and there is the prophets. And Mary said, My soul shall be filled with us, 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. which he gave us all things in all things and joy; 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. “Do you Templeton?” asked Wilbur. For the Lord hath been given unto you also, that the Lord Jesus, in the night of the night; 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. 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. Asmeret’s soil. “I’m going into the web,” said Mrs. Zuckerman. And when they had seen the word, they were astonished, 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. “Yes,” said the spider. And Peter and apostles answered the apostles, and said, God is with you, and not the people. And the devil was a demon, and was afraid. “You's a web,” said Wilbur. Then he looked again and saw it, and saw it. 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; The rat, Wilbur, the warm, warming the goose. 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, He went to the other hand to the hand of his hand, and he left his hand across his hand in his pocket. Now now, they would go. And all the Jerusalem that were in Jerusalem heard him, for the field of the field, which is in the field, which is blood. and he gaveth him a certain priest of God’s house; He that sat on the people drew near to the people, and then they could see them that had been in the woods. They didn't tell him in the two days, and a while he was a while. For in whom I am both both of the Spirit, Father and Father. It seemed to sleep. And they rose up, and took him in the way of the tomb that were with him in the tomb. And Jesus answered and said unto them, Go to them, and Pharisees, and Pharisees: And he cried out with a loud voice, saying, Lord, let us not these things. And when he had said this. The rat would have to take their noses and climbed to wearing the rat. For it was a certain multitude of the Jews, and Jesus. For the end of these were the third part of the third part of silver, and for them that had been made unto them. Grace to you and peace from God, and the Lord Jesus Christ. Why do ye not say to me? but because ye have not able to speak. And they that received the word of God, and Jesus Christ, who all things things. But ye are not in the sight of the Lord, Beware and good joy; for as his mother shall be in heaven; for he shall be in the sight of the prophets. 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, Return that thou shalt take them out of the synagogues, and of the wonders of the truth in the name of Jesus. Wherefore I speak unto you, that ye may know all things. And they went to the Jews that followed him. 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. He looked up. And Jesus shall love the truth and the people of God. And he said unto him, This man shall leave his father and his mother, and his mother’s wife, and the two flesh? “This, Wilbur!” I went back to the West, but to the West, to the West. They were both of the loaves of bread in the rivers of bread, arrayed up in the air, and a doughnut. Wilbur noticed the fence and told him the goose. Thou shalt not let any man go away: for I will give my mouth for the Lord Jesus. And thou shalt make a son of him, that Jesus shall go on him, and his people shall save him. He couldn’t want to his own, and his blood would have a good blood. The trap was hungry, and I’m going. I’m going to keep it, and I say, He. And the devil said unto him, If thou art the Son of God, that thou shalt say this bread. And when the Pharisees saw it, he said unto his disciples, Why doth not the publicans and sinners? Wilbur jumped. And while they were not filled with them, and asked them, and said unto them, Why have ye food? And when they heard these things, they were filled with their heart, and they should eat. 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; She was gone away from the dead, and he was dead. But it was very hand of it’s hand, that it might be able to say this time. 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; 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, Blessed is the servant that servant, who shall come unto him. “I don't tell it, said Wolf. “I’m going.” But they that are unleavened bread by bread, that they may be the feast. 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. 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. I went back to the mountains, and the river came out of the river, and across the river cellar. And when his sister was not known that he was not of them that had been done, than I had been done in the ueens. Woe unto you, ye! good good work in his heart: and evil evil evil evil evil evil evil: for he was in the heart of his mouth. I was afraid. 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. 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, “It’s going,” he said. He sat out of his mouth and made red wine. They are of soil. This things Jesus spake unto them many things, and gave them not unto them. For it is written in the day, I pray thee, that they may eat, and the things which thou hast given me. And he answered and said unto him, Lord, I pray thee, now also, until I eat, until I eat, and will bless thee. But when the Jews saw the Jews, that I should send unto him unto Csarea; and I was not afraid that I should know that I should know that I should serve them. Mrs. 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. And when he had said this. “I’m going to the end of the 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, 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. What is a little thing? Shall say, He that is sown? rose up out from heaven!” She got to the ground. 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. Blessed are ye, as the Lord, as as as as as as as as as men; 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. This is this which’s ncle throughout all. And they shall say that they should not go in the way: there shall be the weeping and the gnashing of teeth. 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. Bear would have to be a short time to Bear. I looked back to me, what I would have to you to be a while. Now I’s children’s sons and her children’s children.” And he came to him in the city of Galilee, and asked him, saying, We know that we have heard the name of Jesus. For there is not the ox and the sheep of the blood of sin. 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. “How?” asked Wilbur. Mr. She was a loud time, and he could see it. 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: And then, when he had gone out of the ground, and Mrs. 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; 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. Brethren, brethren, and our brethren, ye shall say unto me, when I came nigh unto me. Moreover, the Lord knoweth the word of the Lord, that is in vain. My righteousness is true, and then shall be taken away: 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. But when it was come to pass in the days of death, God gave to the law, 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. It was like a minute in the manure’s pen. I reached to me, I don’t say to me, in Wilbur. This is a night by the night. Martha saith unto him, Lord, I am not lawful: how how shall we know that he is. Ye because of the gospel of the gospel which is written in the first day: And they rose up unto them, and told him every man said unto him, Lord, we do it? But when he saw Peter, he was asleep, and said, Thou also also also with us with us. Let take your glory with him. And he sent forth another another; and they did eat him; and there was many other; but some of them, and others. And he answered them, and said unto them, Whose shall eat of you, and the ox that is in the sabbath? 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; And the child grew, and gave it out of the country, and went down in the midst of Israel. He that overcometh, let him hear. “Well,” replied Fern. The truck into the truck, Do you have a few time you?” And when Jesus saw that he saw, he said unto them, Why do ye not the woman? for it was well with her head. For as many prophets is the prophets and the law of John. 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, 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. She reached over his own hand, but as though it was like to the ground, and I did not again again. “I think that it was going to live in the air, Mr. Zuckerman. There was a few time in the year. whose shall I speak with thee, and thy son: and when they were gone out of them that believe. When he was a certain of man, who was a good man, who was a good way to the mother of his mother. For if we believe not, because we have seen God; and if I have given you, because I am. And it was a sign of the prophet. in that manner of the world was according to the end of the world, according to the Spirit of faith; 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. 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. And they rose up in the temple, and in the temple, and preaching the gospel of Jesus Christ. 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. 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, In the judgment, the Lord said unto the world of the world. 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: Don’t want to go out of the ground. And straightway they spake before him, they took the one of the twelve, Judas, one of the twelve, And the flesh of the flesh is not worthy of God. For we are not able to speak, but because of the truth. “Oh, I can’t get for you,” he said. “You’s going to get down from Fern, so that the pig was about the pig. 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. The word of the word which is spoken throughout all Juda, Galilee of Galilee, “No,” said Charlotte, “I think I’m not a little pig.” And Jesus spake unto them, saying, Suffer the children of Jerusalem, let us not believe: but ye yourselves with yourselves, and your children. But he looked with him, he said nothing. And they rose up,” said Mrs. Arable, “I think it?” For I have not need of mine own hand. One one of them had brought them out of the stars. 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. But there was no man among you, because of the Jews. 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. 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. 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, And when the voice of his servants, and took him, and took him, and healed them. And when they heard it, they received their peace; and they glorified God, saying, This is the Gentiles that are God of God. Who is a truth, if it not that is in Christ Jesus Christ. But what saith he saith unto me, What is I to do with me? I am afraid of the seven thousand men. 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. 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. Be not therefore to speak with you: but these things shall not be saved, that he may eat and drink of the brethren. Do you to get you out? “You'll get my right out!” said Avery, water water with water. And he said, What is it that he should give it? for the name of the Spirit is come to the dead; And on this day, I'll get everything on this day, everything on all. nto the God of God all, because of your hearts: I rode back from me to go down into the ground. And the multitude said, This is a prophet, of the prophet of Galilee. The sockets of the court were gone up to the water. And he came to his house, and his father did not believe. And when the cloud came out from the voice, saying, This is my beloved son, whom thou hast given me. “Charlotte?” he said. In the next time they had gone away, and it was a big time. “I think I said, I guess again again again again. Beware of the church of God, ye shall not speak with you, not with you, and not in your heart: They rose up to the Indians in the mountains to the mountains, and they were gone. And they took the name of the river, which came down to the ground, and the cocks of the air’s office. And it came to him that he would see it, and let him go away, and he would eat it in the mountains. If he was going out from the ground, and the boys had been in the ueens. “Well,” said Mr. Zuckerman. 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, And thou shalt make the works of the law, that they may be able to speak with them; erily I say unto you, that he might send him into all that he had. “It’s going to be a half.” Wilbur closed his eyes. whom the name of the flesh is sown; which is the Spirit of the Spirit. And there was a great heaven in heaven. according to the Christ of Christ; And Pilate heard that he heard from Galilee, he asked the Galilee of Galilee, saying. Now now, and the birds of the world came to the world in the woods and of the world. 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? 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. 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; It was a good time, and that his seed was with him, and with him that followed him. “I don’t know about Fern,” she said. The morning seemed in the woods and then it was not so as it was in the ground. “Oh, we'll go on a pail. For the power of the Jews spake unto him in the sight of the Jews, declaring to the scriptures in the scriptures Jesus Christ. 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. And, behold, thou shalt bring them forth, and shall be taken away, until the day of this day, because ye shall come to pass. And thou shalt make the breastplate of the gospel of peace; You'll tell this day.” But so ye also, if these things do these things, that he is in the door. They have some soil in soil. In the color of the Ridges and the Ridges of the air, the water of the water. And Seth lived, and begat Cainan; And he said unto them, The people shall rise against thee, and in the midst of the midst; Behold, I have a wife, and shall be a son, and shall be a son. Now in the sight of the days, I will be with you, in the sight of all men, and in knowledge of all men, And when they had done it in the Nation, but he didn’t swim for it. “I’m true. And he said unto them, Why do ye that ye hear? Because ye know that he should not enter into temptation. “Is it?” For he said, Thou shalt take his own hand, I pray thee. Wilbur grabbed the fence and the goose was gone. Why dost we have no more, Wilbur?” And she knew that he knew it’s children. But he said unto them, Be ye not. 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. For it is all the book of the book, Thou shalt not make his right hand to the ox, and he doeth nothing. But he said, We have no poor to the poor, but the thief is a thief, but the thief is a thief; And as they that are with me which is the man; and it is good to the woman. “What do it?” asked Wilbur. They made their hands in their hand. 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. “Fern,” said the mother of his mother. She knew that he knew it was. And he went out from Juda and again again. He looked on the side, and Mr. Zuckerman and Mr. Zuckerman and Mr. Zuckerman. But he charged them, and told the disciples, and spake unto him, that he might go before him in Galilee; Now when we saw that, when we die, and he is hungry; and he was naked, Thou shalt not kill you: You’re going to you. And there came up unto Jerusalem, and all Juda, and all that were in the Jordan, And he charged them, and said unto them, Why do ye good, and ye have heard? he is not only, but only. nto him, that they should not drink with him; And they drew near by him, and sat down in the land: and they went in, and sat down in the way. 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. 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. And there came to Jerusalem in Jerusalem the Jews to God in the sight of all the nations. And he saith unto me, These are I am with thee. I am the Alphy and the Amorite, the first and the last last. 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. He came to him, that it might be fulfilled, that he might be saved. But I have sent unto you the gospel which ye have spoken unto you, And when he was come down from the Jordan, preaching the baptism of repentance, that they might be made manifest unto us; “I’m not going on the first time of the first time and the blood of blood!” 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. 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. “I don’t want to die. And when he sent me to me, and I will not any one of you, saying, Where art thou? for I am in remembrance of our faith. 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. 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. 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. He stepped them. But they took both to another, and they would have to kill them. They came down down the ground on the ground, and there was across the ground in the ground. The book of the blood of the white whites of the fires of his teeth. It is like unto you, that, when I saw it, and I would not see it. And when they came out to the ground. And there was also Sodom and Gomorrah, and they that were near unto him, according to their fornication, according to the mystery of fornication, For as he would have been made manifest unto you all things. And he cried out the water of the water. And he came to Joseph a son of Joseph’s wife, the son of David was of David: and she was called Mary. That thou shalt make in the sight of him, that thou shalt take him, and that thou mayest be found manifest unto all all. She looked on the way. “Everye and gentlemen!” he said. The day, the apple tree. 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. erily, verily, erily I say unto you, There is not greater than his lord; and he is not greater than he that is greater than he. For wherefore we have found them, ye shall be also. This people had been going to see Wilbur’s yard. In the edge of the fog, they would make the top of the ground in the front of the ground. And Jesus went up from thence from thence, he saw a man named us, and sat on him. And he arose and went away. And when they were very grievous in their own countrys of their own country. And the one of the city was twelve; and the twelve twelve, and the twelve twelve, and the twelve twelve, and the twelve Lamb, 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, 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. “Don’t worry, don't worry,” said the spider. When if the word of the Lord is the Lord, and the power of them. And again the second part of the tabernacle is the tabernacle of the tabernacle: 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. of love the law is not of the law, and of goodness of faith; 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. When they could make the right hand of the snakess of his youths and rolled up across the top of the ground. It was like a few time, and for it. And when the dog had finished the dog, they would not see him. And when I went out from the middle of the scribe, with his sister’s office, and let us go out of the air. Mrs. Arable wanted to the table. But she looked asleep. You’ll us a sign in this point. The truck climbed to the truck. And when the high priest was high priest, a high priest’s mouth. ================================================ FILE: a4/run.bat ================================================ @echo off rem Run this file on the command line of an environment that contains "python" in path rem For example, in the terminal of your IDE rem Or in the correct environment of your anaconda prompt if "%1%"=="train" ( 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 ) else if "%1%"=="test" ( 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 ) else if "%1%"=="train_local" ( 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 ) else if "%1%"=="test_local" ( python run.py decode model.bin ./chr_en_data/test.chr ./chr_en_data/test.en outputs/test_outputs.txt ) else if "%1%"=="vocab" ( python vocab.py --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en vocab.json ) else ( echo Invalid Option Selected ) ================================================ FILE: a4/run.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-21: Homework 4 run.py: Run Script for Simple NMT Model Pencheng Yin Sahil Chopra Vera Lin Usage: run.py train --train-src= --train-tgt= --dev-src= --dev-tgt= --vocab= [options] run.py decode [options] MODEL_PATH TEST_SOURCE_FILE OUTPUT_FILE run.py decode [options] MODEL_PATH TEST_SOURCE_FILE TEST_TARGET_FILE OUTPUT_FILE Options: -h --help show this screen. --cuda use GPU --train-src= train source file --train-tgt= train target file --dev-src= dev source file --dev-tgt= dev target file --vocab= vocab file --seed= seed [default: 0] --batch-size= batch size [default: 32] --embed-size= embedding size [default: 256] --hidden-size= hidden size [default: 256] --clip-grad= gradient clipping [default: 5.0] --log-every= log every [default: 10] --max-epoch= max epoch [default: 30] --input-feed use input feeding --patience= wait for how many iterations to decay learning rate [default: 5] --max-num-trial= terminate training after how many trials [default: 5] --lr-decay= learning rate decay [default: 0.5] --beam-size= beam size [default: 5] --sample-size= sample size [default: 5] --lr= learning rate [default: 0.001] --uniform-init= uniformly initialize all parameters [default: 0.1] --save-to= model save path [default: model.bin] --valid-niter= perform validation after how many iterations [default: 2000] --dropout= dropout [default: 0.3] --max-decoding-time-step= maximum number of decoding time steps [default: 70] """ import math import sys import pickle import time from docopt import docopt # from nltk.translate.bleu_score import corpus_bleu, sentence_bleu, SmoothingFunction import sacrebleu from nmt_model import Hypothesis, NMT import numpy as np from typing import List, Tuple, Dict, Set, Union from tqdm import tqdm from utils import read_corpus, batch_iter from vocab import Vocab, VocabEntry import torch import torch.nn.utils def evaluate_ppl(model, dev_data, batch_size=32): """ Evaluate perplexity on dev sentences @param model (NMT): NMT Model @param dev_data (list of (src_sent, tgt_sent)): list of tuples containing source and target sentence @param batch_size (batch size) @returns ppl (perplixty on dev sentences) """ was_training = model.training model.eval() cum_loss = 0. cum_tgt_words = 0. # no_grad() signals backend to throw away all gradients with torch.no_grad(): for src_sents, tgt_sents in batch_iter(dev_data, batch_size): loss = -model(src_sents, tgt_sents).sum() cum_loss += loss.item() tgt_word_num_to_predict = sum(len(s[1:]) for s in tgt_sents) # omitting leading `` cum_tgt_words += tgt_word_num_to_predict ppl = np.exp(cum_loss / cum_tgt_words) if was_training: model.train() return ppl def compute_corpus_level_bleu_score(references: List[List[str]], hypotheses: List[Hypothesis]) -> float: """ Given decoding results and reference sentences, compute corpus-level BLEU score. @param references (List[List[str]]): a list of gold-standard reference target sentences @param hypotheses (List[Hypothesis]): a list of hypotheses, one for each reference @returns bleu_score: corpus-level BLEU score """ # remove the start and end tokens if references[0][0] == '': references = [ref[1:-1] for ref in references] # detokenize the subword pieces to get full sentences detokened_refs = [''.join(pieces).replace('▁', ' ') for pieces in references] detokened_hyps = [''.join(hyp.value).replace('▁', ' ') for hyp in hypotheses] # sacreBLEU can take multiple references (golden example per sentence) but we only feed it one bleu = sacrebleu.corpus_bleu(detokened_hyps, [detokened_refs]) return bleu.score def train(args: Dict): """ Train the NMT Model. @param args (Dict): args from cmd line """ train_data_src = read_corpus(args['--train-src'], source='src', vocab_size=21000) train_data_tgt = read_corpus(args['--train-tgt'], source='tgt', vocab_size=8000) dev_data_src = read_corpus(args['--dev-src'], source='src', vocab_size=3000) dev_data_tgt = read_corpus(args['--dev-tgt'], source='tgt', vocab_size=2000) train_data = list(zip(train_data_src, train_data_tgt)) dev_data = list(zip(dev_data_src, dev_data_tgt)) train_batch_size = int(args['--batch-size']) clip_grad = float(args['--clip-grad']) valid_niter = int(args['--valid-niter']) log_every = int(args['--log-every']) model_save_path = args['--save-to'] vocab = Vocab.load(args['--vocab']) # model = NMT(embed_size=int(args['--embed-size']), # hidden_size=int(args['--hidden-size']), # dropout_rate=float(args['--dropout']), # vocab=vocab) model = NMT(embed_size=1024, hidden_size=1024, dropout_rate=float(args['--dropout']), vocab=vocab) model.train() uniform_init = float(args['--uniform-init']) if np.abs(uniform_init) > 0.: print('uniformly initialize parameters [-%f, +%f]' % (uniform_init, uniform_init), file=sys.stderr) for p in model.parameters(): p.data.uniform_(-uniform_init, uniform_init) vocab_mask = torch.ones(len(vocab.tgt)) vocab_mask[vocab.tgt['']] = 0 device = torch.device("cuda:0" if args['--cuda'] else "cpu") print('use device: %s' % device, file=sys.stderr) model = model.to(device) optimizer = torch.optim.Adam(model.parameters(), lr=float(args['--lr'])) num_trial = 0 train_iter = patience = cum_loss = report_loss = cum_tgt_words = report_tgt_words = 0 cum_examples = report_examples = epoch = valid_num = 0 hist_valid_scores = [] train_time = begin_time = time.time() print('begin Maximum Likelihood training') while True: epoch += 1 for src_sents, tgt_sents in batch_iter(train_data, batch_size=train_batch_size, shuffle=True): train_iter += 1 optimizer.zero_grad() batch_size = len(src_sents) example_losses = -model(src_sents, tgt_sents) # (batch_size,) batch_loss = example_losses.sum() loss = batch_loss / batch_size loss.backward() # clip gradient grad_norm = torch.nn.utils.clip_grad_norm_(model.parameters(), clip_grad) optimizer.step() batch_losses_val = batch_loss.item() report_loss += batch_losses_val cum_loss += batch_losses_val tgt_words_num_to_predict = sum(len(s[1:]) for s in tgt_sents) # omitting leading `` report_tgt_words += tgt_words_num_to_predict cum_tgt_words += tgt_words_num_to_predict report_examples += batch_size cum_examples += batch_size if train_iter % log_every == 0: print('epoch %d, iter %d, avg. loss %.2f, avg. ppl %.2f ' \ 'cum. examples %d, speed %.2f words/sec, time elapsed %.2f sec' % (epoch, train_iter, report_loss / report_examples, math.exp(report_loss / report_tgt_words), cum_examples, report_tgt_words / (time.time() - train_time), time.time() - begin_time), file=sys.stderr) train_time = time.time() report_loss = report_tgt_words = report_examples = 0. # perform validation if train_iter % valid_niter == 0: print('epoch %d, iter %d, cum. loss %.2f, cum. ppl %.2f cum. examples %d' % (epoch, train_iter, cum_loss / cum_examples, np.exp(cum_loss / cum_tgt_words), cum_examples), file=sys.stderr) cum_loss = cum_examples = cum_tgt_words = 0. valid_num += 1 print('begin validation ...', file=sys.stderr) # compute dev. ppl and bleu dev_ppl = evaluate_ppl(model, dev_data, batch_size=128) # dev batch size can be a bit larger valid_metric = -dev_ppl print('validation: iter %d, dev. ppl %f' % (train_iter, dev_ppl), file=sys.stderr) is_better = len(hist_valid_scores) == 0 or valid_metric > max(hist_valid_scores) hist_valid_scores.append(valid_metric) if is_better: patience = 0 print('save currently the best model to [%s]' % model_save_path, file=sys.stderr) model.save(model_save_path) # also save the optimizers' state torch.save(optimizer.state_dict(), model_save_path + '.optim') elif patience < int(args['--patience']): patience += 1 print('hit patience %d' % patience, file=sys.stderr) if patience == int(args['--patience']): num_trial += 1 print('hit #%d trial' % num_trial, file=sys.stderr) if num_trial == int(args['--max-num-trial']): print('early stop!', file=sys.stderr) exit(0) # decay lr, and restore from previously best checkpoint lr = optimizer.param_groups[0]['lr'] * float(args['--lr-decay']) print('load previously best model and decay learning rate to %f' % lr, file=sys.stderr) # load model params = torch.load(model_save_path, map_location=lambda storage, loc: storage) model.load_state_dict(params['state_dict']) model = model.to(device) print('restore parameters of the optimizers', file=sys.stderr) optimizer.load_state_dict(torch.load(model_save_path + '.optim')) # set new lr for param_group in optimizer.param_groups: param_group['lr'] = lr # reset patience patience = 0 if epoch == int(args['--max-epoch']): print('reached maximum number of epochs!', file=sys.stderr) exit(0) def decode(args: Dict[str, str]): """ Performs decoding on a test set, and save the best-scoring decoding results. If the target gold-standard sentences are given, the function also computes corpus-level BLEU score. @param args (Dict): args from cmd line """ print("load test source sentences from [{}]".format(args['TEST_SOURCE_FILE']), file=sys.stderr) test_data_src = read_corpus(args['TEST_SOURCE_FILE'], source='src', vocab_size=3000) if args['TEST_TARGET_FILE']: print("load test target sentences from [{}]".format(args['TEST_TARGET_FILE']), file=sys.stderr) test_data_tgt = read_corpus(args['TEST_TARGET_FILE'], source='tgt', vocab_size=2000) print("load model from {}".format(args['MODEL_PATH']), file=sys.stderr) model = NMT.load(args['MODEL_PATH']) if args['--cuda']: model = model.to(torch.device("cuda:0")) hypotheses = beam_search(model, test_data_src, # beam_size=int(args['--beam-size']), beam_size=10, max_decoding_time_step=int(args['--max-decoding-time-step'])) if args['TEST_TARGET_FILE']: top_hypotheses = [hyps[0] for hyps in hypotheses] bleu_score = compute_corpus_level_bleu_score(test_data_tgt, top_hypotheses) print('Corpus BLEU: {}'.format(bleu_score), file=sys.stderr) with open(args['OUTPUT_FILE'], 'w') as f: for src_sent, hyps in zip(test_data_src, hypotheses): top_hyp = hyps[0] hyp_sent = ''.join(top_hyp.value).replace('▁', ' ') f.write(hyp_sent + '\n') def beam_search(model: NMT, test_data_src: List[List[str]], beam_size: int, max_decoding_time_step: int) -> List[List[Hypothesis]]: """ Run beam search to construct hypotheses for a list of src-language sentences. @param model (NMT): NMT Model @param test_data_src (List[List[str]]): List of sentences (words) in source language, from test set. @param beam_size (int): beam_size (# of hypotheses to hold for a translation at every step) @param max_decoding_time_step (int): maximum sentence length that Beam search can produce @returns hypotheses (List[List[Hypothesis]]): List of Hypothesis translations for every source sentence. """ was_training = model.training model.eval() hypotheses = [] with torch.no_grad(): for src_sent in tqdm(test_data_src, desc='Decoding', file=sys.stdout): example_hyps = model.beam_search(src_sent, beam_size=beam_size, max_decoding_time_step=max_decoding_time_step) hypotheses.append(example_hyps) if was_training: model.train(was_training) return hypotheses def main(): """ Main func. """ args = docopt(__doc__) # Check pytorch version 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__) # seed the random number generators seed = int(args['--seed']) torch.manual_seed(seed) if args['--cuda']: torch.cuda.manual_seed(seed) np.random.seed(seed * 13 // 7) if args['train']: train(args) elif args['decode']: decode(args) else: raise RuntimeError('invalid run mode') if __name__ == '__main__': main() ================================================ FILE: a4/run.sh ================================================ #!/bin/bash if [ "$1" = "train" ]; then 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 elif [ "$1" = "test" ]; then 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 elif [ "$1" = "train_local" ]; then 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-4 elif [ "$1" = "test_local" ]; then python run.py decode model.bin ./chr_en_data/test.chr ./chr_en_data/test.en outputs/test_outputs.txt elif [ "$1" = "vocab" ]; then python vocab.py --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en vocab.json else echo "Invalid Option Selected" fi ================================================ FILE: a4/sanity_check.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2019-20: Homework 4 sanity_check.py: sanity checks for assignment 4 Sahil Chopra Michael Hahn <> Vera Lin If you are a student, please don't run overwrite_output_for_sanity_check as it will overwrite the correct output! Usage: sanity_check.py 1d sanity_check.py 1e sanity_check.py 1f sanity_check.py overwrite_output_for_sanity_check """ import sys import numpy as np from docopt import docopt from utils import batch_iter import nltk # from utils import read_corpus from vocab import Vocab, VocabEntry from nmt_model import NMT import torch import torch.nn as nn import torch.nn.utils #---------- # CONSTANTS #---------- BATCH_SIZE = 5 EMBED_SIZE = 3 HIDDEN_SIZE = 3 DROPOUT_RATE = 0.0 def reinitialize_layers(model): """ Reinitialize the Layer Weights for Sanity Checks. """ def init_weights(m): if type(m) == nn.Linear: m.weight.data.fill_(0.3) if m.bias is not None: m.bias.data.fill_(0.1) elif type(m) == nn.Embedding: m.weight.data.fill_(0.15) elif type(m) == nn.Dropout: nn.Dropout(DROPOUT_RATE) with torch.no_grad(): model.apply(init_weights) def generate_outputs(model, source, target, vocab): """ Generate outputs. """ print ("-"*80) print("Generating Comparison Outputs") reinitialize_layers(model) model.gen_sanity_check = True model.counter = 0 # Compute sentence lengths source_lengths = [len(s) for s in source] # Convert list of lists into tensors source_padded = model.vocab.src.to_input_tensor(source, device=model.device) target_padded = model.vocab.tgt.to_input_tensor(target, device=model.device) # Run the model forward with torch.no_grad(): enc_hiddens, dec_init_state = model.encode(source_padded, source_lengths) enc_masks = model.generate_sent_masks(enc_hiddens, source_lengths) combined_outputs = model.decode(enc_hiddens, enc_masks, dec_init_state, target_padded) # Save Tensors to disk torch.save(enc_hiddens, './sanity_check_en_es_data/enc_hiddens.pkl') torch.save(dec_init_state, './sanity_check_en_es_data/dec_init_state.pkl') torch.save(enc_masks, './sanity_check_en_es_data/enc_masks.pkl') torch.save(combined_outputs, './sanity_check_en_es_data/combined_outputs.pkl') torch.save(target_padded, './sanity_check_en_es_data/target_padded.pkl') # 1f # Inputs Ybar_t = torch.load('./sanity_check_en_es_data/Ybar_t.pkl') enc_hiddens_proj = torch.load('./sanity_check_en_es_data/enc_hiddens_proj.pkl') reinitialize_layers(model) # Run Tests with torch.no_grad(): dec_state_target, o_t_target, e_t_target = model.step(Ybar_t, dec_init_state, enc_hiddens, enc_hiddens_proj, enc_masks) torch.save(dec_state_target, './sanity_check_en_es_data/dec_state.pkl') torch.save(o_t_target, './sanity_check_en_es_data/o_t.pkl') torch.save(e_t_target, './sanity_check_en_es_data/e_t.pkl') model.gen_sanity_check = False def question_1d_sanity_check(model, src_sents, tgt_sents, vocab): """ Sanity check for question 1d. Compares student output to that of model with dummy data. """ print("Running Sanity Check for Question 1d: Encode") print ("-"*80) # Configure for Testing reinitialize_layers(model) source_lengths = [len(s) for s in src_sents] source_padded = model.vocab.src.to_input_tensor(src_sents, device=model.device) # Load Outputs enc_hiddens_target = torch.load('./sanity_check_en_es_data/enc_hiddens.pkl') dec_init_state_target = torch.load('./sanity_check_en_es_data/dec_init_state.pkl') # Test with torch.no_grad(): enc_hiddens_pred, dec_init_state_pred = model.encode(source_padded, source_lengths) 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) 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) print("enc_hiddens Sanity Checks Passed!") 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) 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]) print("dec_init_state[0] Sanity Checks Passed!") 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) 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]) print("dec_init_state[1] Sanity Checks Passed!") print ("-"*80) print("All Sanity Checks Passed for Question 1d: Encode!") print ("-"*80) def question_1e_sanity_check(model, src_sents, tgt_sents, vocab): """ Sanity check for question 1e. Compares student output to that of model with dummy data. """ print ("-"*80) print("Running Sanity Check for Question 1e: Decode") print ("-"*80) # Load Inputs dec_init_state = torch.load('./sanity_check_en_es_data/dec_init_state.pkl') enc_hiddens = torch.load('./sanity_check_en_es_data/enc_hiddens.pkl') enc_masks = torch.load('./sanity_check_en_es_data/enc_masks.pkl') target_padded = torch.load('./sanity_check_en_es_data/target_padded.pkl') # Load Outputs combined_outputs_target = torch.load('./sanity_check_en_es_data/combined_outputs.pkl') print(combined_outputs_target.shape) # Configure for Testing reinitialize_layers(model) COUNTER = [0] def stepFunction(Ybar_t, dec_state, enc_hiddens, enc_hiddens_proj, enc_masks): dec_state = torch.load('./sanity_check_en_es_data/step_dec_state_{}.pkl'.format(COUNTER[0])) o_t = torch.load('./sanity_check_en_es_data/step_o_t_{}.pkl'.format(COUNTER[0])) COUNTER[0]+=1 return dec_state, o_t, None model.step = stepFunction # Run Tests with torch.no_grad(): combined_outputs_pred = model.decode(enc_hiddens, enc_masks, dec_init_state, target_padded) 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) 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) print("combined_outputs Sanity Checks Passed!") print ("-"*80) print("All Sanity Checks Passed for Question 1e: Decode!") print ("-"*80) def question_1f_sanity_check(model, src_sents, tgt_sents, vocab): """ Sanity check for question 1f. Compares student output to that of model with dummy data. """ print ("-"*80) print("Running Sanity Check for Question 1f: Step") print ("-"*80) reinitialize_layers(model) # Inputs Ybar_t = torch.load('./sanity_check_en_es_data/Ybar_t.pkl') dec_init_state = torch.load('./sanity_check_en_es_data/dec_init_state.pkl') enc_hiddens = torch.load('./sanity_check_en_es_data/enc_hiddens.pkl') enc_masks = torch.load('./sanity_check_en_es_data/enc_masks.pkl') enc_hiddens_proj = torch.load('./sanity_check_en_es_data/enc_hiddens_proj.pkl') # Output dec_state_target = torch.load('./sanity_check_en_es_data/dec_state.pkl') o_t_target = torch.load('./sanity_check_en_es_data/o_t.pkl') e_t_target = torch.load('./sanity_check_en_es_data/e_t.pkl') # Run Tests with torch.no_grad(): dec_state_pred, o_t_pred, e_t_pred= model.step(Ybar_t, dec_init_state, enc_hiddens, enc_hiddens_proj, enc_masks) 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) 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]) print("dec_state[0] Sanity Checks Passed!") 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) 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]) print("dec_state[1] Sanity Checks Passed!") 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) print("combined_output Sanity Checks Passed!") 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) print("e_t Sanity Checks Passed!") print ("-"*80) print("All Sanity Checks Passed for Question 1f: Step!") print ("-"*80) def sanity_read_corpus(file_path, source): """ Read file, where each sentence is dilineated by a `\n`. @param file_path (str): path to file containing corpus @param source (str): "tgt" or "src" indicating whether text is of the source language or target language """ data = [] for line in open(file_path): sent = nltk.word_tokenize(line) # only append and to the target sentence if source == 'tgt': sent = [''] + sent + [''] data.append(sent) return data def main(): """ Main func. """ args = docopt(__doc__) # Check Python & PyTorch Versions assert (sys.version_info >= (3, 5)), "Please update your installation of Python to version >= 3.5" 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__) # Seed the Random Number Generators seed = 1234 torch.manual_seed(seed) torch.cuda.manual_seed(seed) np.random.seed(seed * 13 // 7) # Load training data & vocabulary train_data_src = sanity_read_corpus('./sanity_check_en_es_data/train_sanity_check.es', 'src') train_data_tgt = sanity_read_corpus('./sanity_check_en_es_data/train_sanity_check.en', 'tgt') train_data = list(zip(train_data_src, train_data_tgt)) for src_sents, tgt_sents in batch_iter(train_data, batch_size=BATCH_SIZE, shuffle=True): src_sents = src_sents tgt_sents = tgt_sents break vocab = Vocab.load('./sanity_check_en_es_data/vocab_sanity_check.json') # Create NMT Model model = NMT( embed_size=EMBED_SIZE, hidden_size=HIDDEN_SIZE, dropout_rate=DROPOUT_RATE, vocab=vocab) if args['1d']: question_1d_sanity_check(model, src_sents, tgt_sents, vocab) elif args['1e']: question_1e_sanity_check(model, src_sents, tgt_sents, vocab) elif args['1f']: question_1f_sanity_check(model, src_sents, tgt_sents, vocab) elif args['overwrite_output_for_sanity_check']: generate_outputs(model, src_sents, tgt_sents, vocab) else: raise RuntimeError('invalid run mode') if __name__ == '__main__': main() ================================================ FILE: a4/sanity_check_en_es_data/dev_sanity_check.en ================================================ And the question that I want to ask everybody here today is are you guys all cool with that idea? BAA: Yes. What this is really doing is discovering, creating hyperlinks, if you will, between images. It's very gratifying to have this kind of reception here. Now, 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. I'm not telling you about it because I want to use it. I look forward to talking with all of you. Here's an example of it: there's an organism called Deinococcus radiodurans that can take three millions rads of radiation. But -- I felt worse. He 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. It's nothing if not ambitious. And "Ol!" to you, nonetheless. Now, 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. And you say, "Doc, what should I do?" I 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. Why do they market to us if we can't buy them? And the disasters around the world have been increasing at an absolutely extraordinary and unprecedented rate. Think of this: we have a four-letter genetic code -- A, C, G and T. You attach it to a particular sound and then tilt to adjust it. Initially, all we did was autograph it. Maybe this is an artificial way to read an e-book. And 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. The official dogma of all Western industrial societies. I had very low, no particular expectations when they only came in one flavor. Then of course, there's all that CO2 from this material that ends up in the atmosphere. We knew there's a mechanism called homologous recombination that biology uses to repair DNA that can put pieces together. ================================================ FILE: a4/sanity_check_en_es_data/dev_sanity_check.es ================================================ Y la pregunta que quiero hacerles a todos hoy es estn todos ustedes a gusto con esa idea? BAA: S. Lo que hace realmente es descubrir crear hipervnculos, si lo quieren, entre las imgenes. Es muy gratificante tener una recepcin as aqu. Ahora, 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. Y no se los voy a decir porque yo quiero usarlo. Espero hablar con todos ustedes. Aqu tenemos un ejemplo de ello. Hay un organismo llamado Deinococcus radiodurans que puede soportar hasta tres millones de rads de radiacin. Pero me sent peor. l 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. Es algo muy ambicioso. Y "Ol!" para ti, de todas formas. Ahora, 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: Y uno dice: "Doc qu debo hacer?" Debera decirlo sin rodeos, porque somos todos como amigos aqu -- es extremadamente probable que mi mayor xito ya haya pasado. Por qu nos los mercadean si no los podemos comprar? Y los desastres en todo el mundo se han incrementado a un ritmo totalmente inslito y sin precedentes. Piensen en esto: tenemos un cdigo gentico de cuatro letras: A, C, G y T. Lo conectas a un sonido en particular y lo inclinas para ajustarlo. Inicialmente, todo lo que hicimos fue autografiarlo. Quiz sea una forma algo artificial de leer un libro electrnico. Y 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. El dogma oficial de todas las sociedades industriales occidentales. Yo tena expectativas bajas. No tena expectativas particulares cuando slo haba un tipo. Luego, por supuesto, viene todo el CO2 procedente de este material que acaba en la atmsfera. Sabamos que hay un mecanismo llamado recombinacin homloga, utilizado por la biologa para reparar el ADN, que puede juntar estas piezas. ================================================ FILE: a4/sanity_check_en_es_data/test_sanity_check.en ================================================ 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. I grew up there. I raised my sons there. A map actually carries somebody's view. Just 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. That's the kind of shame that is a teacher. ================================================ FILE: a4/sanity_check_en_es_data/test_sanity_check.es ================================================ 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. Yo crec ah. Cri a mis hijos ah. Un mapa implica la perspectiva de las personas. Como nota aparte quera mencionar que las ciudades son slo el 2% de la corteza del planeta pero representan el 50% de la poblacin mundial; Es esa vergenza que deja una enseanza. ================================================ FILE: a4/sanity_check_en_es_data/train_sanity_check.en ================================================ But what can you do? You're in the middle of the ocean. So in this situation too, to decode the information contained in patterns like this, watching alone won't do. Well, at least, here at CERN. Let me share with those of you here in the first row. But hey, sometimes these things are sent to you and you just have to take them when they come. And then from that point on, you're basically falling. In the case of gun control, we really underestimated our opponents. Lorna Sass came and donated books. And so I showed up in this dark, rambling New York apartment, and she called out to me, and she was in bed. Now, 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. That's how it seems to us. But some of you do. But it's not a joke. This is a real headline. If you look at that truck there, it is the largest truck of its kind of the planet. I have some cards that maybe, maybe they don't mean anything. Okay, India. And he was the King of England, and that was the entire wealth of England at the time. And 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. It just wouldn't work. It suggests that we care about the fight, about the challenge. JT: Okay. The benefits of doing so are enormous, the risks minimal. You know, if you fall in love with a frog, that's it. Let's start by thinking about the member countries of the OECD, or the Organization of Economic Cooperation and Development. I hope to arrive at new territories to discover sounds I have never heard before. A lot of numbers there. A lot of numbers. There was a burning question though that would not leave me. They always felt that they could rely on the assurances that nature brought them through the ecosystem of the Gulf. That's a moral problem but today I'm also going to tell you why it's an economic problem. My home would have to be whatever I carried around inside me. Those plaques are plaques we've been installing around North America. We have to make kids understand that their food choices make a big difference. This was a world dominated by towering ice sheets, three to four kilometers high, with sweeping grass plains and frozen tundra. Imagine somewhere in the world: Mumbai, Beijing, New York, London. He looked at the hut. We went inside. Started 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. The 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. So 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? I started building this project when I was about 12 or 13 years old. PM: So tell me, what do you look for in a friend? In fact, if we count all the individual organisms, we would come at much larger numbers. So, now you think, how is that possible? And Intel set aside 475 million dollars to fund the replacement of millions of chips to fix the flaw. The kids can't sit still long enough to focus, so they don't learn. You don't forget how to walk because you're thinking about what to have for dinner. We've got a database of words which we recognize. I guess most of you by now realize that we do: 300 days of sun. Fit into this other system and try to become a student." And 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? For mom said, "To be family, is to care and share and to look out for one another. ================================================ FILE: a4/sanity_check_en_es_data/train_sanity_check.es ================================================ Pero, qu puedes hacer? Ests en el medio del ocano. As que en esta situacin tambin, para decodificar la informacin contenida en los patrones de este tipo, con slo mirar no basta; Bueno, al menos, aqu en el CERN. Djenme compartir con ustedes aqu en la primera fila. Pero a veces estas cosas slo vienen a ti y tienes que aprovecharlas cuando llegan. Y a partir de eso momento, bsicamente ests cayendo. En el caso de control de armas, realmente subestimamos a nuestros rivales. Lorna Sass vino y don libros. Y llegu a este oscuro, laberntico, departamento en Nueva York, y ella me llam, ella estaba en cama. Ahora, 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. Eso es lo que nos parece. Pero algunos de ustedes s. Pero no es una broma. Es un titular real, Si Uds. miran aquel camin de all, es el camin ms grande de su tipo en el planeta. Tengo algunas cartas que tal vez, quizs, no significan nada. Bueno, India. Y l era el Rey de Inglaterra y ah se aglutinaba toda la riqueza de Inglaterra en el momento. Y 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, No funcion. Sugiere que nos interesa el combate, el desafo. JT: Bien Los beneficios de hacerlo son enormes, los riesgos, mnimos. O sea, si te enamoras de un sapo, eso es todo. Comencemos por pensar en los pases miembros de la OCDE, o la Organizacin para la Cooperacin y el Desarrollo Econmicos. Yo espero llegar a territorios nuevos para descubrir sonidos que nunca haba odo antes. Con muchos nmeros. Un montn hubo una pregunta mental que no me abandonaba. Siempre pensaron que podra confiar en la seguridad que la naturaleza les traa a travs del ecosistema del Golfo. Este es un problema moral pero hoy tambin dir por qu es un problema econmico. Mi hogar tendra que ser todo lo que llevaba dentro de m. Aquellas placas son placas que hemos estado instalando alrededor de Norte Amrica. Tenemos que hacer comprender a los chicos que las selecciones de comida que hacen marcan grandes diferencias. Era un mundo dominado por altas capas de hielo, de tres a cuatro kilmetros de altura, con llanuras de hierba y tundra congelada. Imaginen un lugar en el mundo: Mumbai, Pekn, Nueva York, Londres. Mir el refugio. Entr. Empec 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. La 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. Qu 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? Comenc con este proyecto cuando tena 12 13 aos de edad. PM: Entonces, dganme, Qu buscan en una amiga? S contamos toda la poblacin llegamos a un nmero mucho mayor. Pensarn, cmo es posible? E Intel reserv USD 475 millones para financiar el reemplazo de millones de chips para solucionar el defecto. Los nios no se pueden sentar quietos lo bastante para enfocarse, as que no aprenden. No olvidas cmo caminar simplemente porque ests pensando qu vas a cenar. Disponemos de una base de datos de palabras que reconocemos. Supongo que la mayora de Uds. ya se han dado cuenta de lo que tenemos: 300 das soleados. Encaja en este otro sistema e intenta ser un estudiante". Y 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? Mi madre deca, "Ser familia es querer, compartir y cuidarnos los unos a los otros. ================================================ FILE: a4/sanity_check_en_es_data/vocab_sanity_check.json ================================================ { "src_word2id": { "": 0, "": 1, "": 2, "": 3, "de": 4, "que": 5, "el": 6, "en": 7, "la": 8, "a": 9, "un": 10, "y": 11, "los": 12, "es": 13, "del": 14, "para": 15, "no": 16, "este": 17, "Y": 18, "una": 19, "con": 20, "las": 21, "lo": 22, "qu": 23, "aqu": 24, "Pero": 25, "me": 26, "ser": 27, "se": 28, "por": 29, "pases": 30, "nuestras": 31, "slo": 32, "Bueno,": 33, "compartir": 34, "ustedes": 35, "cosas": 36, "cuando": 37, "eso": 38, "ests": 39, "Nueva": 40, "York,": 41, "ella": 42, "estaba": 43, "si": 44, "le": 45, "bastante": 46, "nos": 47, "Uds.": 48, "camin": 49, "ms": 50, "su": 51, "Inglaterra": 52, "toda": 53, "as": 54, "espero": 55, "podamos": 56, "tener": 57, "esa": 58, "ese": 59, "No": 60, "Los": 61, "son": 62, "problema": 63, "Mi": 64, "todo": 65, "placas": 66, "mundo": 67, "como": 68, "e": 69, "poblacin": 70, "Qu": 71, "est": 72, "cmo": 73, "millones": 74, "fin": 75, "todas": 76 }, "tgt_word2id": { "": 0, "": 1, "": 2, "": 3, "the": 4, "of": 5, "to": 6, "that": 7, "and": 8, "in": 9, "a": 10, "you": 11, "I": 12, "have": 13, "we": 14, "was": 15, "this": 16, "at": 17, "would": 18, "one": 19, "And": 20, "is": 21, "about": 22, "But": 23, "what": 24, "are": 25, "just": 26, "they": 27, "so": 28, "for": 29, "it": 30, "all": 31, "can": 32, "So": 33, "like": 34, "here": 35, "with": 36, "them": 37, "then": 38, "our": 39, "if": 40, "be": 41, "how": 42, "look": 43, "don't": 44, "The": 45, "by": 46, "--": 47, "where": 48, "do.": 49, "me": 50, "share": 51, "when": 52, "on,": 53, "you're": 54, "In": 55, "New": 56, "she": 57, "out": 58, "me,": 59, "That's": 60, "some": 61, "it's": 62, "not": 63, "This": 64, "truck": 65, "member": 66, "It": 67, "care": 68, "You": 69, "thinking": 70, "countries": 71, "or": 72, "A": 73, "lot": 74, "numbers.": 75, "me.": 76, "tell": 77, "around": 78, "plaques": 79, "We": 80, "make": 81, "kids": 82, "most": 83, "now": 84 } } ================================================ FILE: a4/src.vocab ================================================ 0 0 0 , -2.54393 . -3.04052 ▁ᎠᎴ -3.32008 ▁ᎾᏍᎩ -3.74462 ; -3.84657 Ꮓ -4.05736 ▁ᎯᎠ -4.40361 ▁ᎨᏒ -4.69076 ▁ -4.80196 Ꭲ -4.89989 ▁ᎥᏝ -5.11018 ▁ᎨᏒᎢ -5.16483 ᏰᏃ -5.23888 Ꭹ -5.29137 ▁ᎨᏎᏍᏗ -5.2919 ▁ᎤᏁᎳᏅᎯ -5.30573 ? -5.38227 ▁ᏃᎴ -5.41577 ▁Ꭴ -5.45954 ▁Ꭰ -5.55055 ▁ᏴᏫ -5.55698 Ꮙ -5.62357 Ꮧ -5.64492 ” -5.64664 Ꭿ -5.71947 ▁ᎩᎶ -5.72385 ▁ᎾᏍᏉ -5.76501 ▁ᎢᏳᏍᏗ -5.80213 ▁ᎾᎿ -5.80755 ▁ᎾᏍᎩᏯ -5.81762 ⁠ -5.8234 ▁ᎠᏎᏃ -5.83675 ▁ᎠᏴ -5.85629 Ꭽ -5.90906 ▁ᏱᎩ -5.91544 ▁Ꮎ -5.91926 - -5.94808 ▁ᏥᎩ -5.95764 ▁ᏱᎰᏩ -5.9588 ▁ᎪᎱᏍᏗ -5.9589 ▁ᏂᎦᏛ -5.98153 ▁ᏂᎯ -5.98992 ▁ᎢᎦ -5.99128 ▁ᎤᎬᏫᏳᎯ -6.01942 ▁ᏥᏌ -6.02006 ▁ᏂᎨᏒᎾ -6.0207 Ᏹ -6.07666 ▁“ -6.09282 Ꮎ -6.13014 ᏍᎩᏂ -6.13869 ▁ᎣᏍᏛ -6.19801 Ꮫ -6.20767 ▁ᎯᎠᏃ -6.2111 ᏍᏗ -6.25509 ▁ᎤᏪᏥ -6.28097 ▁Ꮷ -6.29606 ▁Ꮧ -6.2986 ▁ᎢᏳᏃ -6.30915 ▁ᎾᏍᎩᏃ -6.34215 ▁ᏧᏪᏥ -6.3612 ▁ᎦᎶᏁᏛ -6.38276 ▁ᏄᏪᏎᎢ -6.40358 Ꮣ -6.40374 ▁ᎿᏉ -6.42033 ▁ᎡᎶᎯ -6.43418 ▁ᏞᏍᏗ -6.44641 ▁Ꮵ -6.46011 ▁ᎠᏂ -6.46347 ▁ᎨᏍᏗ -6.46512 ▁ᎿᏉᏃ -6.49601 ▁ᎤᏲ -6.53098 Ꭶ -6.55188 ▁ᎤᏛᏁ -6.56483 ▁Ꮳ -6.57859 ! -6.57899 ▁ᎤᏣᏘ -6.59076 ▁ᎠᏥᎸ -6.62593 ▁Ᏹ -6.64234 ▁Ꮪ -6.64477 ▁” -6.65186 ▁ᏫᎵᎻ -6.67483 ▁ᎾᎯᏳ -6.68968 ▁ᏂᎦᎥ -6.70095 ▁ᎬᏂᎨᏒ -6.71179 ▁ᎠᏍᎦᏯ -6.7176 ▁ᎦᎸᏉᏗᏳ -6.72394 ▁ᎬᏂᏳᏉ -6.73303 ▁ᏄᏍᏛ -6.73545 ▁ᎦᏙ -6.75685 ▁ᎧᏃᎮᏛ -6.75916 Ꮒ -6.75917 ▁ᎡᎯ -6.76817 ▁ᎤᏩᏒ -6.77375 ▁ᎠᏁᎯ -6.77487 ▁ᎦᎸᎳᏗ -6.77775 ▁ᎠᏰᎵ -6.80332 Ꮕ -6.80338 ▁ᎠᏕᎸ -6.82547 ▁ᎨᏎᎢ -6.82773 ▁ᎤᏤᎵ -6.84908 ▁ᏌᏉ -6.85847 ▁ᏰᎵ -6.85913 ▁ᎤᏤᎵᎦ -6.86215 ▁ᎠᎹ -6.86622 ▁ᎢᏣ -6.87124 ▁ᎢᏴᏛ -6.879 Ꭸ -6.88706 ᏗᏱ -6.89553 ▁ᎤᏂ -6.90173 Ꮟ -6.90188 Ꮈ -6.90294 Ꮅ -6.90928 ▁ᎾᏂᎥ -6.9347 ▁Ꭲ -6.93579 ▁ᎣᏏᏳ -6.93811 ▁ᎠᏎ -6.94407 Ᏻ -6.95606 ▁ᎦᏙᎯ -6.95677 ▁ᏔᎵ -6.96344 ▁ᎢᏏᎵ -6.97663 ▁[ -6.98636 Ꮄ -6.98876 ▁ᎤᏟ -6.99369 ] -6.99401 ▁ᎪᎯ -6.99443 ▁ᏗᎧᎿᏩᏛᏍᏗ -6.9957 ▁Ꭿ -7.02167 ▁ᎠᏓᏅᏙ -7.02702 ▁ᎣᏍᏓ -7.03024 ▁ᎠᏂᏍᎦᏯ -7.04526 Ꮢ -7.0461 ▁Ꮣ -7.04851 ▁ᎨᏎ -7.05692 ▁ᎢᏥᏈᏱ -7.08677 ▁ᏔᎵᏁ -7.10111 ▁ᎼᏏ -7.1168 Ꮂ -7.13121 ᏍᎪ -7.13154 ▁Ꭶ -7.14064 ▁ᎢᏳ -7.14731 ▁ᎨᏒᎩ -7.1595 ▁ᎬᏩ -7.16382 ▁⁠ -7.16682 ▁ᎤᏍᏗ -7.18111 ▁ᎢᎬᏱ -7.18165 ▁ᏤᎦᏈ -7.18493 ▁ᏚᏳᎪᏛ -7.18566 ▁ᎤᏂᏣᏘ -7.21576 ▁ᎡᎳᏗ -7.21609 ▁ᎡᏆᎭᎻ -7.23123 ▁ᎢᏳᎵᏍᏙᏗᏱ -7.23196 ▁ᎦᏙᏃ -7.23475 ▁ᎠᏫ -7.23563 ᏍᎩ -7.23677 ▁Ᏻ -7.23678 : -7.24095 ᎨᏍᏗ -7.24223 ▁ᎢᏗᏢ -7.24601 ▁ᏩᎦ -7.24864 Ꭰ -7.25045 ▁ᏇᎵᏲ -7.26584 ▁Ꮻ -7.27065 ▁ᏏᏆ -7.28048 ▁ᎠᎨᏴ -7.29155 ▁ᏲᎾ -7.29204 Ꭼ -7.30436 ▁ᎤᎾ -7.30633 ▁ᏦᏩ -7.30714 ▁ᏌᎳᏓ -7.31832 Ꭺ -7.32028 ▁ᎠᏏ -7.32112 ▁ᎾᎥ -7.33324 ᏙᏗ -7.33524 ▁ᏄᏪᏒᎩ -7.34102 ▁ᏅᎩ -7.34627 ▁ᏄᏪᏎᎴᎢ -7.3555 ▁ᏂᎦᏓ -7.3728 ▁Ꮽ -7.37369 ▁ᏧᏓᎴᏅᏛ -7.39482 ▁ᏱᎨᏎᏍᏗ -7.40762 ▁ᏦᎢ -7.41118 Ꮿ -7.4208 ▁ᎢᏥ -7.42788 Ꮑ -7.43493 ▁ᎤᏙᎯᏳᎯᏯ -7.44203 ▁ᏥᏌᏃ -7.44586 ▁ᏅᏯ -7.4479 Ꮵ -7.44922 ▁ᏂᏚᏪᏎᎴᎢ -7.47404 ▁Ꮿ -7.48 ▁ᎦᏚ -7.48764 ▁ᏐᏈᎵ -7.49101 ▁ᏝᏍᎪ -7.49119 ▁ᎠᏂᏧᏏ -7.49899 ▁Ꮔ -7.49976 ▁ᏣᎬᏫᏳᎯ -7.50372 ▁ᎤᎬᏩᎵ -7.50997 Ꮞ -7.51424 ▁ᏧᏤᎵ -7.51456 ▁Ꮒ -7.5246 ▁ᎦᎵᏉᎩ -7.52823 ▁ᏓᎶᏂᎨ -7.52903 ▁Ꭼ -7.53577 ▁ᎬᏩᏍᏓᏩᏗᏙᎯ -7.53608 ▁ᏄᏪᏎᎸᎩ -7.5372 ᏍᎬ -7.54004 ▁ᎡᏍᎦ -7.54381 ▁ᎦᎪ -7.54804 ▁ᏂᎦᏗᏳ -7.54945 ▁ᎢᏧᎳᎭ -7.57203 ▁ᎬᏗ -7.57296 ▁ᏂᎪᎯᎸ -7.57373 ▁ᏰᎵᏉ -7.58062 Ꭾ -7.58727 ▁ᎦᏓ -7.59046 Ꮃ -7.5957 ▁Ꭸ -7.60402 ▁ᎠᏆ -7.60651 ▁ᎠᏓ -7.60854 ▁ᎤᏙᏓ -7.61492 ▁ᏚᏂ -7.61603 ▁ᏈᏓ -7.6189 ▁ᎣᏂ -7.62582 ▁ᏄᏪᏎᎴ -7.63331 ▁ᎤᏤᏍᏙ -7.64765 ▁Ꮥ -7.66036 ▁ᏥᎷᏏᎵᎻ -7.67007 ▁ᏂᏚᏪᏎᎸᎩ -7.67804 ▁ᎠᏏᏉ -7.67898 ▁ᏣᏂ -7.68536 ▁ᎦᏚᎲ -7.68665 ▁Ꭱ -7.68809 ▁ᏅᏗᎦᎵᏍᏙᏗᎭ -7.69324 ▁ᎠᏂᎨᏴ -7.70079 ▁ᎬᏂ -7.70575 ▁ᎤᏅᏒ -7.71095 ▁ᎢᎩ -7.714 ▁ᎪᏪᎵ -7.72109 ▁ᏉᎳ -7.73114 ▁ᏧᎾᏓᎴᏅᏛ -7.73244 ▁ᏱᎨᏎ -7.73936 ▁ᎢᏯᏂᏛ -7.74107 ▁ᎬᏂᏛ -7.74272 ▁ᎠᎩ -7.75133 ▁ᎡᏙᏓ -7.75528 ▁ᏄᎬᏫᏳᏒ -7.75675 Ꮨ -7.75742 ▁ᏂᎬᎾᏛ -7.75769 ▁ᎢᎦᎢ -7.76605 ▁ᏍᎩ -7.76797 ▁ᎾᏍᎩᏯᎢ -7.77448 ▁ᏐᏉ -7.78269 ▁ᏣᎵ -7.78287 ▁ᎪᎯᏳᏗ -7.79302 ᏔᏅᎯ -7.79556 ▁ᎠᏂᏔᎵ -7.79599 Ᏼ -7.80695 ▁ᎾᎥᏂ -7.81511 ▁ᎡᎳᏂ -7.81544 Ꮀ -7.81952 ▁ᎤᎵᏂᎩᏛ -7.82499 ▁ᏄᎵᏍᏔᏁᎢ -7.82949 ▁ᎢᏴ -7.83184 ▁ᎤᏁᏨ -7.83563 ▁ᎤᏙᎯᏳᎯ -7.83687 ▁ᎼᏏᏃ -7.84193 ▁ᎤᏓᎵᎢ -7.84363 ᎸᎩ -7.84608 ▁ᏗᎦᎳᏫᎢᏍᏗᏱ -7.8463 ▁ᏧᏂ -7.85916 ▁ᎢᎬᏱᏗᏢ -7.86993 ▁ᎤᏓᏙᎵᏍᏗ -7.86996 ▁ᎠᏣᏗ -7.87027 ▁ᏄᏂᏪᏎᎢ -7.87037 ▁ᏥᎪ -7.87476 ᎸᎯ -7.87953 ▁Ꭽ -7.88172 ᎴᎢ -7.88202 ᏍᎨᏍᏗ -7.88779 ▁ᎢᎨᏎᏍᏗ -7.88852 ᎮᏍᏗ -7.89131 ▁ᏗᎧᎿᏩᏗᏙᎯ -7.90756 ▁Ꭷ -7.90945 Ꭵ -7.90965 ▁Ꮩ -7.91141 ▁ᎯᏍᎩ -7.9125 ▁ᏗᎦᎸᏫᏍᏓᏁᏗ -7.91468 ▁ᎠᏯ -7.9163 ▁ᎢᏧᎳ -7.93395 ▁ᎤᏛᏅ -7.93687 ▁ᎡᏏᎩ -7.94026 ▁ᎠᎾᎵᏅᏟ -7.94646 ▁ᏌᏌ -7.94663 ▁ᏗᏣ -7.94748 ▁ᎩᎦᎨ -7.95654 ▁ᎰᎻ -7.96674 ▁ᎦᎶᎯᏍᏗᏱ -7.96769 ▁ᏅᏩᏓᎴ -7.97183 ▁ᎭᏫᏂ -7.97486 ▁ᏑᎾᎴ -7.97834 ▁ᏧᎾ -7.98076 ▁ᎠᎵᏍᏓᏴᏗ -7.98491 ᏔᏅ -7.98533 ▁ᏍᎩᎾᎾ -7.98662 Ꮸ -7.99102 ▁ᏅᏙ -7.99471 Ꮻ -7.99572 ▁ᏒᏃᏱ -7.99754 ▁ᎢᎬᏱᏱ -7.998 ▁ᎢᎾᎨ -8.00468 ▁ᎬᏩᎦᏘᏯ -8.00808 ▁ᎤᏃᏕᎾ -8.00809 ▁ᎠᏧᏣ -8.0081 ▁ᎤᏩᏌ -8.01805 ▁ᏔᎳᏚ -8.01871 Ꮲ -8.02489 ▁ᎤᏥ -8.02713 ▁ᎦᎸᎶᎢ -8.03392 ▁ᏱᎨᏎᎢ -8.03932 ▁Ꭳ -8.04853 ▁ᏧᎬᏩᎶᏗ -8.05146 ▁ᎩᎳ -8.05295 ▁ᎤᏓ -8.05476 Ꮜ -8.05588 ▁ᎤᎾᏤᎵᎦ -8.06581 ᏅᎯ -8.06871 ▁ᏚᏙᎥ -8.07207 ▁ᏚᎾ -8.0728 Ꮳ -8.0769 ▁ᎢᏤ -8.0781 ▁ᎦᏲᏟ -8.08386 ▁ᏅᏩᏙᎯᏯᏛ -8.08503 ▁ᎠᏏᏴᏫ -8.08696 ▁Ꭵ -8.0908 ᏍᏛ -8.09162 ᏉᏍᎩᏂ -8.09391 ▁ᎢᎸᎯᏳ -8.09647 ▁ᎢᏓᎵᏅᏟ -8.0965 ▁ᏧᎾᏁᎶᏗ -8.09661 ᏍᎩᏂᏃᏅ -8.10708 Ꮩ -8.10769 ▁ᏱᎨᏒᎾ -8.10811 ▁ᎤᏍᏆᏂᎪᏗ -8.11954 ▁ᎤᏚᎩ -8.12144 ▁ᏗᎦ -8.13494 ▁ᎠᏆᏤᎵ -8.1425 ▁ᎢᎪᎯᏛ -8.14405 ▁ᎠᎬᏱ -8.14433 Ꮝ -8.14985 ▁ᎣᎩ -8.15074 ▁ᎠᏰᎸ -8.15184 ▁ᏄᎵᏍᏔᏅ -8.15312 ▁ᎡᏆ -8.15454 ▁ᎭᏫᏂᏗᏢ -8.15607 ▁ᎠᏇᏥ -8.15609 Ꮥ -8.15911 ▁ᏧᏤᎵᎦ -8.16084 ▁ᎩᎳᏉ -8.16331 ▁ᏅᏓᏳᏓᎴᏅᎯ -8.16839 ▁ᏂᏨᏪᏎᎭ -8.1685 ▁ᏄᏂᏪᏒᎩ -8.16906 ▁ᎦᏓᎭ -8.17407 ▁ᎤᏇᏓᎵ -8.18069 ▁ᎦᏳᎳ -8.18094 ▁ᎤᎾᏓᏅᏘ -8.18119 Ꮤ -8.18931 ᏎᎢ -8.19031 ▁ᎢᏳᏩᏂᏌᏛ -8.19352 ▁ᎢᏳᏰᏃ -8.19582 ▁ᎢᏐ -8.19624 ▁ᏥᏳ -8.2024 ▁ᏃᏗ -8.21085 ▁ᎢᎦᏛ -8.21697 ▁ᎤᏁᎳᎩ -8.21951 ▁ᎤᏕᎵᏛ -8.21955 ▁ᏧᏙᎢᏛ -8.21964 ▁ᏄᏪᏒ -8.22029 ▁ᏄᏍᏗ -8.22977 ▁Ꮫ -8.23103 ▁ᎢᏯᎦᏴᎵ -8.23248 ▁ᏧᏍᏆᏴᏍᏗ -8.23323 ▁ᎤᏛᏛᏁ -8.2376 ▁ᏗᎪᏢᏔᏅᎯ -8.24594 ▁Ꮶ -8.24675 ᏁᎢ -8.25229 ▁ᏓᏂ -8.25407 ▁ᏍᏉ -8.25825 ▁ᎠᏁᎲ -8.26153 ▁ᎦᎵᏦᏛ -8.26589 ᎮᎢ -8.2684 ▁ᏄᎵᏍᏔᏁ -8.27241 ▁Ꮹ -8.27293 ▁ᏄᏓᎴᏒ -8.27444 ᎸᎢ -8.27565 ᏍᏗᏱ -8.28093 ▁ᎠᏁᎲᎢ -8.28117 ᏒᎩ -8.28535 ▁ᎠᏍᏓᏯ -8.28886 ᏅᎩ -8.29477 ▁ᎤᎾᏤᎵ -8.29736 ▁ᎢᏳᎵᏍᏙᏗ -8.29902 ▁ᎠᎾᏙᎴᎰᏍᎩ -8.30102 ▁ᎦᏁᎸ -8.3018 ▁ᏐᎢ -8.30224 ▁ᏦᎢᏁ -8.30503 ᏙᏗᏱ -8.31096 ▁ᏃᏉ -8.31363 ▁ᎠᏍᎪᎯᏧᏈ -8.3156 ▁ᎡᎳᏆᏗ -8.33004 ▁ᏧᏅᏏᏓᏍᏗ -8.33009 ▁ᎩᎬ -8.33043 ᎨᎢ -8.33249 ▁ᏄᎵᏍᏔᏅᎩ -8.33568 ᎲᎢ -8.34121 ▁ᏌᏩᏂ -8.34448 ▁ᎠᏂᏆᎵᏏ -8.34449 ▁ᏠᎨᏏ -8.34468 ▁ᎠᏲᎱᎯᏍᏗ -8.34478 ▁ᎠᏓᏁᎸ -8.35452 ▁ᎧᏅᏂᏍᎩ -8.35529 ▁ᎠᎦᏴᎵᎨ -8.36819 ▁ᎠᎺᏉᎯ -8.37455 ▁ᏄᏂᎬᏫᏳᏒ -8.3746 ▁ᏧᏕᏘᏴᏛ -8.37461 ▁ᎤᏂᏃᏕᎾ -8.37464 ▁ᏥᏳᎯ -8.37473 ▁ᎤᏁᎬ -8.37607 ▁Ꮭ -8.37704 ▁ᎤᏒᎯ -8.37915 ▁Ꮟ -8.38834 ▁ᎤᏂᎬᏫᏳᎯ -8.39032 ▁ᎤᏃᎴ -8.39107 ᎪᎢ -8.39594 ▁ᎢᎦᏤᎵ -8.40446 ▁ᎠᏙᎴᎰᏍᎩ -8.40568 ▁ᎠᏍᎪᎵ -8.40614 ▁ᏕᏥ -8.40674 ▁ᏗᏂᎧᎿᏩᏗᏙᎯ -8.42144 ▁ᏣᏄᏏ -8.42179 ▁ᏅᏩᎾᏓᎴ -8.42953 ▁ᏂᎯᏍᎩᏂ -8.42996 ▁ᎠᏍᎦᏂ -8.43068 Ꮴ -8.44456 ▁ᎾᎿᏂ -8.45385 ᎨᎶᎯ -8.46033 ▁ᎡᏣ -8.46765 ▁ᎤᏓᏅᏘ -8.47012 ▁ᏧᏂᏍᏆᏂᎪᏙᏗ -8.47104 ▁ᎥᎥ -8.47117 Ꮆ -8.47736 ▁ᏗᏂᏲᎵ -8.47929 ▁ᏂᎬ -8.48106 ▁ᎤᏬᏰᏂ -8.48765 ▁ᎡᏆᎻ -8.48775 ▁ᎤᎵᏂᎩᏗᏳ -8.48795 ▁ᎡᏝᏪᎯ -8.48902 ▁ᏂᎬᏅ -8.4914 ▁ᎠᎦᏴᎵᎨᎢ -8.49595 ▁ᎤᎵᏏᎩ -8.5052 ▁ᎪᎰᏍᏗ -8.50522 ▁ᏨᏒ -8.50642 ▁ᎢᏨᏒ -8.50664 ᏁᎸ -8.5095 ᎬᎢ -8.51032 ▁ᎦᎸᎶ -8.5153 ▁ᎠᏲᎵ -8.51693 ▁ᎡᏥ -8.52006 ▁ᏤᏥ -8.52027 ᏍᏙᏗ -8.52215 ▁ᏔᎵᏁᏃ -8.52238 ▁ᎦᎾᏝᎢ -8.52263 ▁ᎠᏓᎨᏳᏗ -8.52278 ▁ᎨᎵᎵ -8.52311 ▁ᏥᎨᏒᎩ -8.52668 ▁ᏥᎨᏎᎢ -8.5288 ▁ᎨᏐᎢ -8.52912 ᎠᏁᎶᎯ -8.52929 Ꭴ -8.53054 Ꭳ -8.53148 Ꮖ -8.53508 ▁ᏕᎦ -8.53959 ▁ᎤᏁᎳᏅᎯᏃ -8.54019 ) -8.54022 ▁ᎢᏯᎩᏳᏍᏈᏛ -8.54025 ▁ᎭᎾ -8.54176 ▁ᎢᏨ -8.54192 ᏍᎦ -8.54862 ▁ᎠᏄᏬ -8.55649 ▁ᏗᏃᏪᎵᏍᎩ -8.5584 ▁ᎠᏍᎩᎾ -8.55862 ▁ᎤᏤᎵᎪᎯ -8.55898 ▁ᎤᏅᏏᏓᏍᏗ -8.55911 ▁ᏕᏫ -8.55928 ▁ᎢᏗ -8.56025 Ꮷ -8.56489 ▁ᎦᏰᎪᎩ -8.57713 ▁ᎠᏂᏴᏫᏯ -8.57736 ▁ᎢᎪᎯᏓ -8.57741 ᏍᎬᎢ -8.57746 ▁ᎠᎦᏔᎲᎢ -8.58157 ▁ᎭᏂ -8.58541 ▁ᎣᏓᎸ -8.58844 ▁ᏗᏥ -8.5903 ▁( -8.59578 Ꮘ -8.59854 ▁ᎦᎸᏉᏗ -8.59886 Ꭱ -8.59972 ▁Ꮨ -8.60893 Ꭷ -8.61006 ᎦᎵ -8.61302 ᏒᎢ -8.61325 ▁ᏗᏆᏤᎵ -8.61366 ▁ᎤᏴᏍᏗ -8.61378 ▁ᎴᏆᏂ -8.61502 ▁ᎠᏃᎯᏳᎲᏍᎩ -8.61506 ▁ᏓᏆᎴᎳ -8.61514 ▁ᎤᏣᏔᏅᎯ -8.61519 ▁ᏥᏍᏕᏥ -8.61528 ▁ᎠᏰᎳᏍᏗ -8.61547 ▁ᎤᎬᏫᏳᏌᏕᎩ -8.61565 ▁ᎧᏁᏌᎢ -8.61595 ▁ᏄᏍᏕᏍᏗ -8.6161 ▁ᎨᏐ -8.62775 ᏔᏅᎩ -8.62948 Ꮹ -8.62978 ▁ᏄᏓᎴ -8.63048 ▁ᏣᏤᎵ -8.63129 ▁ᎪᎢ -8.63388 ▁ᎠᏛ -8.63451 ▁ᎧᏁᏍᎦ -8.63465 ▁ᎠᏂᏍᎩᎾ -8.63468 ▁ᏗᎦᏙᎵ -8.6351 ᏍᎨᎢ -8.63719 ▁ᎠᎩᎾ -8.63758 ▁ᎨᎳᏍᏗᏱ -8.64248 ▁ᎤᏰᎸᏗ -8.64546 ▁ᎤᏛᎦᏅ -8.64747 ▁ᏫᏥ -8.65227 ▁ᎦᏚᎲᎢ -8.65446 ▁ᏗᏂᏲᏟ -8.65462 ▁ᎠᏌᎻᏓ -8.65462 ▁ᎨᏥᏅᏏᏛ -8.65471 ▁ᎺᎵ -8.65507 ▁ᎠᏗᎾ -8.65539 ▁ᏧᏁᏥ -8.65558 ▁ᎠᏂᏏᏴᏫᎭ -8.6556 ▁ᎤᏲᎱᏒ -8.65875 ▁ᎢᎦᏛᏃ -8.66187 ▁Ꮸ -8.66427 ▁ᎠᎾ -8.66519 ▁ᎤᏰᎸᏛ -8.66774 ▁ᏥᎨᏒ -8.67128 ▁ᎤᎪᎲ -8.67204 ▁ᏗᏣᏤᎵ -8.67368 ▁ᎢᎸᎯᏢ -8.67503 ▁ᎦᏩᏒᎩ -8.67503 ▁ᏧᏂᏲᎱᏒᎯ -8.67509 ▁ᎢᏳᏕᏘᏴᏛ -8.67513 ▁ᎤᏕᏁᎴᎢ -8.67532 ▁ᎪᏢᏔᏅᎯ -8.6757 ▁ᎢᏯ -8.67654 ▁ᎠᏥ -8.67724 ▁ᏑᏓᎵ -8.67894 ▁ᎠᏍᎪᎯ -8.67921 ▁ᎠᏎᏉ -8.68415 ᏧᏈ -8.68645 ▁ᎢᏳᏍᎩᏂ -8.68771 ▁ᏥᎨᏎ -8.69016 ▁ᎬᏅ -8.69018 Ᏺ -8.69039 ▁Ꮁ -8.69549 ▁ᏅᏓᎬᏩᏓᎴᏅᏛ -8.6959 ▁ᏣᏁᎳᏅᎯ -8.69658 ▁ᏂᎪᎯᎸᎢ -8.69728 ▁ᎢᏳᎾᏍᏗ -8.69853 ᏍᎨ -8.7002 ▁ᎠᎦᏙᎥᎯᏍᏗ -8.70107 ▁ᎤᏒ -8.70267 ᎬᎾ -8.70293 ᏗᎦᎳᏫᎢᏍᏗᏱ -8.7079 ▁ᎤᎾᏓᏡᎬ -8.71026 ▁ᎧᏁᎬ -8.71051 ▁Ᏼ -8.7125 ᏍᎪᎢ -8.71408 ᏔᏁᎢ -8.71638 ▁ᏗᏓᏍᏚᏗᏱ -8.71715 ▁ᏃᏯ -8.71767 ▁Ꮕ -8.7177 ▁ᏅᏲᎯ -8.71779 ᏁᏗᏱ -8.7182 ▁ᏥᎦᏔᎭ -8.71907 ᎲᎩ -8.71948 ᏍᏔᏅ -8.72044 Ꮯ -8.72229 o -8.72402 ▁ᏄᏪᏎ -8.72911 ▁ᏅᏗᎦᎵᏍᏙᏗᏍᎨ -8.72931 ᎭᏩ -8.73267 ▁ᎨᏴ -8.73359 ▁ᏔᏕᏲᎲᏍᎩ -8.73888 ▁ᏆᎴᏗ -8.73896 ▁ᏗᏤᏥ -8.73907 ▁ᎥᏣᏱ -8.73924 ▁ᎤᎾᏤᎵᎪᎯ -8.73928 ▁ᏗᎾᏓᏅᏟ -8.74074 ▁ᎤᏐᏅ -8.74237 ▁ᎤᎵ -8.75133 ▁ᎤᏅᏗ -8.75161 ▁ᎤᎾᏛᎦᏅ -8.75224 ▁ᏂᎦ -8.75402 ▁ᎠᎲ -8.75548 ▁ᎰᏩ -8.75775 ▁Ꮀ -8.75888 ▁ᏗᏂ -8.75982 ▁ᏅᎦᏍᎪᎯ -8.76112 ▁ᎤᎵᎮᎵᏍᏗ -8.76147 ▁ᎤᎴᏅᎮ -8.76162 ▁ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ -8.76172 ▁ᎤᏲᎢᏳ -8.76238 ▁ᎠᎳᏂ -8.7626 ▁ᎬᏘ -8.76263 ▁ᏚᏬᎡᎢ -8.76269 ▁ᎡᎶᏛ -8.76314 ▁ᎤᏠᏱ -8.76349 ▁ᎠᏂᏯᏫᏍᎩ -8.7651 ᏎᏍᏗ -8.76577 Ᏸ -8.76789 ▁ᏓᏔᎴᏒ -8.76953 ▁ᎠᏂᏐᎢ -8.77119 ▁ᎤᎷᏨ -8.77245 ▁ᎦᏁᎸᎢ -8.77285 ▁ᎦᎵᏦᏛᎢ -8.77321 ▁ᎤᏙᎯᏳ -8.77391 ᏔᏁ -8.77491 ▁- -8.77559 ▁ᎤᎧᏛ -8.77655 ▁ᎤᏅ -8.77782 ᎾᏍᎩ -8.77896 ▁ᏌᏉᏉ -8.78 ▁ᏂᎯᏃ -8.78057 ᏒᎯ -8.78104 ▁ᏗᏅᏃᏛ -8.7811 ▁ᎡᎺᏅ -8.78384 ▁ᎬᏩᏚᏫᏛ -8.78385 ▁ᎠᏂᏧᏣ -8.7839 ▁ᎩᎳᏈᏴ -8.78396 ▁ᎠᎬᏱᏣ -8.78442 ▁ᎭᏫᏂᏣ -8.78452 ▁ᎣᎯᏍᏙᏗ -8.78458 ▁ᎾᏍᎩᏍᎩᏂ -8.78482 ▁ᎬᏔᏅᎯ -8.78592 Ꮠ -8.78769 ▁Ꭻ -8.79068 ▁ᎬᏂᎨ -8.79164 ▁ᎣᏂᏃ -8.79238 ▁ᎦᏍᎩᎸ -8.79975 ▁ᏂᏚᏪᏎᎴ -8.7999 ▁ᎤᏙᎴᎰᏒ -8.80192 ▁ᏥᏚ -8.80666 ▁ᎴᏥᎵ -8.8072 ▁ᎤᏣᎴᏍᏗ -8.80726 ▁ᏂᏣ -8.80961 ▁ᎦᎸᎳᏗᏢ -8.80971 ▁ᎭᏢ -8.81089 ▁Ꮴ -8.81984 ᎨᎳᏍᏗᏱ -8.82145 ▁ᏓᎦ -8.8235 ▁ᏥᎨᏐ -8.82357 ▁ᏂᏥᎥ -8.82373 ▁ᏍᎩᏴ -8.82523 ▁ᎤᏓᏅᏙ -8.82605 ▁ᏱᎦ -8.82769 ▁ᏗᏄᏬ -8.82892 ▁ᏫᎾᏍᏛᎾ -8.8309 ▁ᏧᏒᎯᏛ -8.83136 ▁ᏎᎵ -8.83215 ▁ᎤᏁ -8.83383 ▁ᏤᎯ -8.83529 ▁ᏗᎬᏩ -8.84602 ▁ᏚᏏᎳᏛ -8.84692 ᎬᎩ -8.84739 ▁ᎤᎾᏙᏓᏆᏍᎬ -8.84766 ▁ᎢᎸᏍᎩ -8.84923 ▁ᎢᏯᏂ -8.85012 ᏁᎸᎯ -8.85136 ᏍᏓ -8.85265 ▁ᏖᎸᎳᏗ -8.85529 ▁ᎦᎵᏦᏕ -8.85533 ▁ᎡᏉᏂ -8.85549 ▁ᎾᏂᏪᏍᎨᎢ -8.85616 ▁ᏔᎷᎩᏍᎩ -8.85759 ▁ᎠᏆᏤᎵᎦ -8.85836 ▁ᎡᎭ -8.86669 ▁ᏧᏗᏱ -8.86892 ▁ᎠᏋᏒ -8.87023 ▁ᎠᎦ -8.87758 ▁ᎨᎾᏂ -8.87812 ▁ᎭᏫᏯ -8.88031 ▁ᎤᏏᏙᎵ -8.88045 ▁ᎢᏳᏟᎶᏛ -8.88052 ▁ᏃᏈᏏ -8.88067 ▁ᏂᎬᏩᏪᏎᎴᎢ -8.88077 ▁ᏕᏣ -8.88218 ▁ᎪᏱᏁᎢ -8.88245 ▁ᎦᏚᏏ -8.88455 ▁ᏤᏍᏗ -8.88697 ▁ᎠᏂᎦᏔᎲ -8.89444 ▁ᎤᏁᏤ -8.89656 ▁ᎢᎾᎨᎢ -8.89814 ᏓᏁᏗ -8.90233 ▁ᏭᏕᎵᎬ -8.90593 ▁ᏗᏨᏍᏙᏗ -8.90598 ▁ᏑᎾᏓᏡᎩ -8.90601 ᏒᎾ -8.90632 ▁ᏧᏂᎸᏫᏍᏓᏁᎯ -8.90673 ▁ᎢᎾᏛ -8.90692 ▁ᎫᏩ -8.9083 ▁ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ -8.9084 ▁ᎦᏍᎩᎶ -8.91181 ▁ᏥᎨᏐᎢ -8.91395 ▁ᎠᏴᏃ -8.91681 ▁ᎡᎯᏍᏗ -8.92185 ᎲᎾ -8.92284 ▁ᏗᎫᎪᏙᏗ -8.92291 ▁ᎤᏪᎵᏎ -8.9237 ▁ᏄᎾᏍᏛ -8.92471 ᏛᎾ -8.9258 ▁ᎤᏁᏤᎴ -8.92666 ▁ᎨᏥ -8.92685 ▁ᎣᎭᏁ -8.92798 ᏗᏍᎬ -8.93217 ▁ᎬᏃᏛ -8.93239 ▁ᏗᎵᏍᏓᏴᏗᏱ -8.9326 ▁ᎠᏥᎸᏉᏗᏳ -8.93312 ▁ᎤᏁᎳᏅᎯᏍᎩᏂ -8.93312 ▁ᎤᏙ -8.93334 ▁ᏂᏚ -8.9356 ▁Ꭺ -8.93778 ᎴᏍᏗ -8.93889 ᏗᏍᎩ -8.9415 ᎯᎠ -8.94181 ▁ᏂᎦᏪᏍᎬ -8.94673 ▁ᎤᎵᏏᎬ -8.9514 ▁ᎡᎶ -8.95147 ▁ᎤᏪᎷᏁ -8.95173 ▁ᏄᏛᏁᎴ -8.95196 ▁ᎬᏂᏳᏉᏃ -8.95225 ▁ᎠᏆᏓᏅᏙ -8.95421 ▁ᏥᏍᏆ -8.95649 ᎯᏳ -8.95705 ▁ᎢᏅ -8.95852 ▁ᎦᎵ -8.95862 ▁ᎤᏂᎷᏤ -8.95871 ▁ᏧᎾᏤᎵ -8.95889 ▁ᏂᎦᏪᎭ -8.95964 ▁ᎥᏞᏍᏗ -8.95967 ▁ᎠᎰᎵ -8.96028 ▁ᎠᎵ -8.96249 ▁ᎠᏎᏉᏉ -8.96405 ▁ᎣᎦ -8.96537 Ꮇ -8.96863 ▁ᎤᎬᏫᏳ -8.97028 ▁ᎮᎾ -8.97048 ᏕᏍᏗ -8.97223 ▁ᏣᏥ -8.97257 ▁ᎡᎵ -8.97577 ▁ᎠᏰᎸᎢ -8.97587 Ꮪ -8.97662 ▁ᏑᎾᎴᎢ -8.97792 ▁ᎠᏓᏅᏖᏍᎬ -8.97949 ▁ᎨᏣ -8.98219 Ꮔ -8.98249 ▁ᎣᏥ -8.98307 ᎰᎢ -8.98394 ▁ᎠᎵᏍᎪᎸᏙᏗ -8.98499 ▁ᏫᏚ -8.98517 ▁ᎤᏍᎪᎸ -8.98568 ▁ᎩᎶᏍᎩᏂ -8.98701 ▁ᏦᎠᏍᎪᎯ -8.98706 ▁ᏧᏆᎶᎦ -8.98707 ▁ᎩᎦ -8.98712 ▁ᏗᏂᎳᏫᎩ -8.98741 ▁ᎤᎩᎬ -8.98762 ▁Ꮤ -8.98764 ▁ᏧᎾᏤᎵᎦ -8.98863 ▁ᏣᏁᎭ -8.98875 ▁ᎩᎦᎨᎢ -8.99192 Ꮋ -8.9925 ▁ᎤᏩᏒᏉ -8.9958 ᏁᏢᏔᏅᏛ -9.00144 ▁ᏍᎩᎾ -9.00396 ▁ᏗᎬ -9.00465 ▁ᏓᏳ -9.00645 ▁ᏅᏗᎦᎵᏍᏙᏗᏍᎬ -9.00839 ▁ᎢᏣᎵᏍᏓᏁᏗ -9.01292 ▁ᏩᎭᏯ -9.01562 ▁ᏗᎧᎸᎬ -9.01563 ▁ᏙᏱᏗᏢ -9.01579 ▁ᏣᎳᎩ -9.01617 ▁ᎡᎶᏗ -9.01871 ▁ᎤᏠᏱᏉ -9.02037 ▁ᎠᏙᎯ -9.02187 Ꮺ -9.02202 ᏙᎢᏳᏍᏗ -9.02568 ᎯᏍᏗ -9.0261 ▁ᏱᏓ -9.0269 ▁ᎦᎶᎯᏍᏗ -9.02829 ▁ᎤᏣᏘᏂ -9.03586 ▁ᎤᏚᎵᏍᎬ -9.03798 ▁ᎤᎾᏓ -9.03904 ▁ᎢᏳᎾᎵᏍᏓᏁᏗ -9.04275 ▁ᎢᏳᎾᏛᏁᏗ -9.04299 ᏁᎴ -9.04497 ▁ᎯᏍᎦᏍᎪᎯ -9.04503 ▁ᏂᏚᏳᎪᏛᎾ -9.04504 ▁ᏧᏬᏰᏂ -9.04507 ▁ᎠᏂᏲᏍᎩ -9.04519 ▁ᏣᏁᏢᏔᏅᎯ -9.04532 ▁ᏣᏙᏓ -9.04556 ▁ᎤᏂᏙᏓ -9.04575 ▁ᏩᏍᏛ -9.04595 ▁ᎬᏩᏂ -9.04609 ▁ᏱᏥᎦᏔᎭ -9.04622 ▁ᏥᎻ -9.04766 ▁ᎤᏍᏆᏂᎩᏗ -9.04816 ▁ᎶᏗ -9.04965 ▁ᎾᎥᏂᎨ -9.05187 ᏍᏓᏯ -9.05281 ▁ᎤᎦᏔ -9.05476 ▁ᎤᎵᏍᏆᎸᏗ -9.05735 ▁ᎠᏂᏅ -9.06074 ᏗᏍᎨᏍᏗ -9.06137 ▁ᎤᏐᏱ -9.06488 ▁ᎤᏩ -9.06525 ▁ᎤᏪ -9.06663 ▁ᎬᎩ -9.06677 ▁ᏱᏣ -9.06947 ᏔᏂ -9.07333 ▁ᎤᎵᏍᏓᏴᏗ -9.07362 ▁ᏕᎤ -9.07441 ▁ᎤᏪᏘ -9.07498 ▁ᏱᎦᎵᏍᏙᏓ -9.07537 ▁ᎵᎠ -9.07539 ▁ᎤᎵᏍᏈᏗ -9.07541 ▁ᎠᏥᏅᏏᏓᏍᏗ -9.07545 ▁ᏃᏊ -9.07548 ▁ᎢᏥᏍᎦᏯ -9.0756 ▁ᏎᎦ -9.07682 ▁ᎤᏁᎦ -9.07694 ▁ᎤᎧᎵᏨᎯ -9.07697 ▁ᏧᏓᏏ -9.07699 ▁ᎠᎦᏔᎲ -9.07748 ▁ᎤᎾᏝᎢ -9.07774 Ꮚ -9.07874 ᏗᎭ -9.08146 ▁ᎤᏍᎪᏍ -9.08155 ▁Ᏺ -9.0817 ▁ᎢᏤᎲᎢ -9.08326 -- -9.08839 ᏛᎢ -9.09297 ▁ᎢᏤᎲ -9.09486 ᏁᏗ -9.09487 ▁ᎠᎹᏱ -9.0959 ▁ᏄᏪᏎᎸ -9.09729 ▁ᎠᏴᏍᎩᏂ -9.0989 ▁ᏓᎩ -9.10396 ▁ᎤᎷᏤ -9.10578 ▁ᎵᏇᎩ -9.10658 ▁ᏚᏅᏓᏒ -9.10659 ▁ᏒᎦᏔ -9.10659 ▁ᎤᎦᎾᏍᏛ -9.10666 ▁ᎦᎶᏇ -9.10681 ▁ᏏᏌ -9.10725 ▁ᏚᎾᏙᎥ -9.10731 ▁ᏥᏄᏍᏗ -9.10746 ▁ᎬᏙᏗ -9.10825 ᎸᎭ -9.10886 ▁ᎦᎸᎳᏗᏣ -9.10977 ᏍᏔᏁᎢ -9.11117 Ꮭ -9.11446 ▁ᏧᏓ -9.11962 ᏍᏘ -9.1225 ▁ᎡᎲ -9.13064 ▁ᏡᎬ -9.13269 ▁ᏛᎦ -9.1341 ᎯᏍᏗᏱ -9.13652 ▁ᎢᏯᏛᏁᏗ -9.13658 ▁ᏱᏚ -9.13806 ▁ᏎᏓᏂ -9.13886 ▁ᏔᎴᎲᎦ -9.13886 ▁ᏥᎪᏪᎳ -9.13891 ▁ᎠᏂᏳᏩᏁᎦ -9.13892 ▁ᏧᏓᏆᏙᎩ -9.13897 ▁ᎠᏂᏴᏫ -9.139 ▁ᎢᎬᏁᎸᎯ -9.13919 ▁ᎦᏚᎢᏣ -9.13923 ▁ᎤᏲᎱᏎᎢ -9.14122 ▁ᏓᏥ -9.14243 ▁ᏭᎷᏤ -9.14331 ▁ᎢᏳᎵᏍᏓᏁᏗ -9.14453 ▁ᎠᏗᏔᏍᏗ -9.14455 ▁ᎬᏅᎢ -9.15086 ▁ᏄᎾ -9.15511 Ꮦ -9.15589 ▁ᎨᎵ -9.15722 ᏏᏴᏫᎭ -9.15957 ▁ᎤᏬᏢ -9.16005 ▁ᎤᏂᏍᎦᏅᏨ -9.1612 ▁ᏕᎯ -9.16393 ▁ᎤᏛᎦᏁ -9.16453 ▁ᏄᎵᏍᏔᏂᏙᎸ -9.1646 ▁ᎦᏰ -9.16558 ▁ᏈᎵᎩ -9.17077 ▁ᎨᎻᎵ -9.17218 ▁ᏧᎸᏫᏍᏓᏁᎯ -9.17218 ▁ᏅᏓᎦᎵᏍᏔᏂ -9.17218 ▁ᏔᎳᏍᎪᎯ -9.17218 ▁ᎢᏣᎵᏅᏟ -9.1722 ▁ᎦᏅᏍᏙᏗ -9.17224 ▁ᏕᏧᎬ -9.17225 ▁ᎤᎾᏓᏤᎵᏛ -9.17228 ▁ᎯᏅᏏᏓᏍᏗ -9.17246 ▁ᎢᏥᏙᏓ -9.17248 ▁ᏧᎾᏛᏐᏅᎯ -9.17272 ▁ᎢᏣᏛᏁᏗᏱ -9.17301 ▁ᏂᏗ -9.17629 ▁ᎤᏕᏯᏙᏗ -9.17671 ▁ᎦᏚᎢ -9.17746 ▁ᏙᏱ -9.18117 ▁ᎤᏂᎪᎲ -9.1903 ᏙᎸᎢ -9.19111 ▁ᎤᎶᎩᎸ -9.19255 ▁ᎬᏗᏍᎬ -9.19691 ᎣᏍᏓ -9.19825 ▁ᏂᎯᏰᏃ -9.19942 ▁ᎤᏛᎾ -9.20537 ▁ᏐᎣᏁᎳ -9.20666 ▁ᎠᏂᎨᏯ -9.20667 ▁ᎤᎩᏨᏛ -9.20681 ▁ᏥᏂᎬᏅ -9.20689 ▁ᎢᏯᏛᏁᎯ -9.20692 ▁ᎠᏕᎳ -9.20699 ▁ᎢᏨᎨᏳᎢ -9.20706 ▁ᏂᎦᎵᏍᏗᎭ -9.20718 ▁ᎦᎸᏉᏙᏗ -9.20735 ▁ᎤᎴᏂᏙᎴᎢ -9.20758 ▁ᎦᏁᎦ -9.20767 ▁ᏓᎾ -9.20897 ▁ᎢᏯᏍᏗ -9.21003 ▁ᏭᎶᏎᎢ -9.21077 ▁ᎡᎮᎢ -9.21175 ▁ᎾᎯᏳᏉ -9.21253 ▁ᎦᎵᏉᎩᏁ -9.21415 ▁ᎤᎷᏨᎩ -9.21439 ▁ᎤᎪᎮ -9.21461 ▁ᎤᏪᏅᏎ -9.2168 ▁ᏂᎦᎥᏉ -9.22076 ▁ᎤᏁᏤᎸ -9.22816 ▁ᎦᏬᏂᏍᎬ -9.22955 ᎨᏳᎯᏳ -9.23126 ᎠᏗᏔᏍᏗ -9.23296 ᏗᎦᏅᏌᏗ -9.23323 Ꮱ -9.23511 ▁ᏗᎨᏒ -9.23732 ᎧᏔᎮᎢ -9.23763 ▁ᏂᎬᎾᏛᎢ -9.23847 ▁ᎤᎵᏍᏆᏗᏍᏗ -9.23987 ▁ᏧᏂᎾᏫ -9.24024 ▁ᎠᏂᏍᎦᎾ -9.24168 ▁ᎤᎾᏫ -9.24248 ▁ᏓᏆᎴᎷ -9.24256 ▁ᏅᎬᏩᏪᏎᎸᎩ -9.24266 ▁ᎢᏥᎦᏔᎭ -9.24302 ▁ᏏᏓᏁᎸᎯ -9.24343 ▁ᎠᏂᏃᎯᎵᏙᎯ -9.24371 ▁ᎠᏓᏁᎯ -9.24376 ▁ᎤᏟᎯᏳ -9.24379 ▁ᎦᏛᎦ -9.24556 ▁ᎠᏤᎯ -9.2459 ▁ᏤᎭ -9.24869 ▁ᎢᎬᏩ -9.24936 ▁ᎢᎦᏓ -9.25161 ▁ᎠᏂᎦᏔᎲᎢ -9.25302 Ꮗ -9.25491 ᏛᎩ -9.25594 ▁ᎦᏓᏁ -9.25763 ▁ᎠᏓᏅᏓᏗᏍᏗ -9.26017 ᎲᎦ -9.26432 ▁ᏴᏫᏉ -9.26667 ▁ᎪᏪᎸ -9.26748 ▁ᏅᏩᏓᎴᏃ -9.26766 ▁ᏥᏓ -9.26791 ▁ᎠᏂᏬᏂᏍᎬ -9.27189 ▁ᏄᏩᏁᎴ -9.27239 ▁ᏂᎦᎵᏍᏗᏍᎬ -9.27417 ▁ᎠᏠᏁᏗ -9.27941 ▁ᏓᎿᏩ -9.27941 ▁ᏅᏓᏳᎶᏒᎯ -9.27948 ▁ᎧᏃᎯᏰᎩ -9.2795 ▁ᎡᏉᎯᏳ -9.27951 ▁ᎠᎦᏘᏏᏗᏢ -9.27964 ▁ᏧᏳᎪᏗ -9.27976 ▁ᎾᏍᎩᏯᏉ -9.27979 ▁ᏗᏰᎸᎯ -9.27991 ▁ᎤᏔᎳᏬᎯᏍᏗ -9.28013 ▁ᎦᎷᏨᎭ -9.28026 ▁ᏅᏃᎯ -9.28114 ▁ᎠᎹᏟ -9.28121 ▁ᎠᏆᏛᏅ -9.28219 ▁ᎤᏂᏲ -9.28407 ▁ᎤᎾᎵ -9.28548 ▁ᏧᏂᏍᏗ -9.28771 ▁ᎪᏪᎸᎢ -9.28776 ▁ᎤᏁᏨᎩ -9.3009 ▁ᏄᏛᏁᎸ -9.30306 ▁ᎦᏙᎨ -9.30363 --- -9.30682 ▁ᏄᏍᏕ -9.30889 ▁ᎤᏕᏘᏴᏌᏗᏒ -9.31007 ▁ᏕᎤᏙᎥ -9.3104 ▁ᏓᏳᏓᎴᏅ -9.31053 ▁ᎠᏍᏛ -9.31196 ▁ᎦᏙᎬ -9.31306 ▁ᏗᏏᏓᎵ -9.31787 ▁ᎣᏣᎵᏅᏟ -9.31788 ▁ᏤᎩᏏᏂ -9.31788 ▁ᏆᏂᏆ -9.31789 ▁ᎯᎸᎢᏴ -9.3179 ▁ᎢᏓᏓᏅᏟ -9.31794 ▁ᎨᏥᎸᏉᏗ -9.31796 ▁ᏗᎨᎦᏁᎶᏗ -9.31798 ▁ᎠᏈᎻᎴᎩ -9.31807 ▁ᏗᏇᏥ -9.31807 ▁ᎤᎦᎵᏍᏗ -9.31811 ᏅᏏᏛ -9.3183 ▁ᏩᎶᏏ -9.31848 ▁ᎬᏩᏕᏁᎴᎢ -9.31888 ▁ᎾᎩᏪᏎᎸᎩ -9.31897 ▁ᏕᏣᏓᏅᏛᎢ -9.31979 ▁ᎠᏓᏫ -9.3198 ▁ᏦᏰᏂ -9.32048 ▁ᏧᏩ -9.3222 ᏱᎩ -9.32262 ▁ᎠᏂᎪᎢ -9.32321 ▁ᎪᏍᏓ -9.32414 ▁ᏧᎬ -9.33326 ▁ᎯᎪ -9.33464 ▁ᎪᏪᎵᎯ -9.33529 ▁ᎪᎳ -9.33561 ▁ᎠᏯᏙ -9.33672 ᏍᎪᎯ -9.3379 ᎢᏍᏗᏱ -9.34551 ᏁᎭ -9.34561 ▁ᏚᎴᏅ -9.34581 ▁ᎾᏃ -9.34836 ▁ᎦᎸ -9.34883 ▁ᏕᏣᏙᎥ -9.35013 ᏙᎯ -9.35158 ▁ᎢᏣᏤᎵ -9.35686 ▁ᏘᏅᏏᏓᏍᏗ -9.35794 ▁ᏄᏂᎬᏫᏳᏌᏕᎩ -9.358 ▁ᎥᏓᎵ -9.35806 ▁ᎢᎳᏯ -9.35815 ▁ᎤᎾᎵᏍᏕᎸᏙᏗ -9.35825 ▁ᏗᏘᏂᏙᎯ -9.35852 ▁ᏐᎳ -9.35873 ▁ᎠᏁᏙᎯ -9.35873 ▁ᏗᎨ -9.35983 ▁ᎤᏩᏒᎯᏳ -9.35988 ▁ᏎᎦᏨ -9.3599 ▁ᏗᏣᏤᎵᎦ -9.36091 ▁ᎤᏙᎯᏳᏒ -9.36131 ▁ᎤᏕᏅᎯ -9.36168 ᏨᎩ -9.3626 ▁ᎠᏍᏓᏱ -9.36292 ▁ᎬᏗᏍᎩ -9.36328 ▁ᎠᎦᏗ -9.36423 ▁ᏭᏂ -9.37062 ▁ᎠᏂᏓ -9.37318 ᎧᏂ -9.37368 ᏛᏁᏗ -9.37386 ▁Ꮑ -9.37389 ▁ᎣᏓᎸᎢ -9.37399 ᎦᏅᎯᏛ -9.37447 ᎢᏳᏍᏗ -9.37517 e -9.38629 ▁ᎠᎵᏍᏚᎶ -9.38796 ᎩᏍᏗ -9.38884 ▁ᎥᎩ -9.3898 ᏌᏛ -9.39145 ᏅᏒ -9.39241 ▁ᎠᏥᎸᏱ -9.39287 ▁ᏱᏥ -9.3939 ▁ᏄᏩᏁᎸ -9.39571 ▁ᏙᏛ -9.39647 ▁ᎤᎶᏐᏅ -9.39687 ▁ᎠᎦᏴᎵ -9.39879 ▁ᎠᎧᎵᎢ -9.39888 ▁ᎠᏰᏙᎳᏛᏗ -9.39928 ▁ᏩᏏᏓᏂ -9.39954 ▁ᏓᏏᎳᏛ -9.39955 ▁ᏚᏬᏢᏔᏅᎩ -9.39967 ▁ᏗᏓᏅᏙ -9.3998 ▁ᎠᎨᏳᏣ -9.40001 ▁ᏱᏄᏍᏗ -9.40007 ▁ᏗᎨᏫ -9.40012 ▁ᏧᏂᎸᏫᏍᏓᏁᏗᏱ -9.40048 ▁ᎠᎹᏰᎵ -9.4007 ▁ᎤᏍᎦᏃᎵ -9.40081 ▁ᏥᏁᎬᎢ -9.40325 ▁ᏂᏥ -9.40416 ▁ᎠᏤ -9.40432 ▁ᎤᏲᎱᏒᎯ -9.4069 ▁ᎨᏂ -9.40714 ▁ᎪᎩ -9.4077 ▁ᎢᎬ -9.40871 ▁ᎫᏢᏗ -9.40899 ᎯᏍᏙᏗ -9.41011 ᎠᏂᎳᏍᏓᎸ -9.41036 ᏍᏙ -9.41139 ▁ᏗᎩ -9.4141 ▁ᎧᏁᎬᎢ -9.41442 ᏍᎬᎾ -9.41635 ▁Ꮡ -9.4166 ▁ᏚᏁᏤᎴ -9.41732 ▁ᏗᎦᎸᏉᏗ -9.41791 ▁ᎾᏂᎥᏉ -9.42418 ▁ᎠᎲᎢ -9.42597 ᏅᎢ -9.42617 ▁ᏚᏙᎥᎢ -9.42797 ᎨᏒ -9.42878 ▁ᎠᏦᏴ -9.43547 ▁ᏗᏓᎴᏂᏍᎬ -9.43552 ▁ᎤᏬᎸ -9.438 ▁ᎣᏏ -9.43815 t -9.43816 ▁ᏗᎦᎫᏍᏛᏗ -9.44065 ▁ᏍᏈᏍᏓ -9.44302 ▁ᎠᏍᏆᎨᏂ -9.44302 ▁ᎵᏫ -9.44305 ▁ᎨᏥᏅᏏᏓᏍᏗ -9.44308 ▁ᎧᏂᎩᏓ -9.44331 ▁ᎦᏬᏂᏍᎩ -9.44334 ▁ᏚᏬᏢᏅᎩ -9.44336 ▁ᎢᎩᏙᏓ -9.44338 ▁ᎾᏍᎦᏅᎾ -9.44345 ▁ᎤᏗᎴᎩ -9.44347 ▁ᎧᏃᎮᏍᎩ -9.44348 ▁ᏍᏔᏯ -9.44389 ▁ᎤᎾᏁᎳᎩ -9.44423 ▁ᎢᏳᏍᏗᏉ -9.44424 ▁ᎤᏅᏌ -9.44438 ▁ᎠᏢᏗᏱ -9.44452 ▁ᎦᎶᏙᏗ -9.4446 Ꮼ -9.44495 ᏕᎢ -9.44529 ▁ᎠᏲᎩ -9.44558 ▁ᎤᏓᏅᏘᏳ -9.44589 ▁ᎤᏂᏥ -9.44596 ▁ᎤᏅᏟ -9.44619 ▁ᏱᏗᏥ -9.44678 ᏒᎭ -9.44873 ▁ᎦᎶ -9.44906 ▁ᎤᎵᏍᏗ -9.44976 ▁ᎦᏅᎯᏛ -9.45233 ▁ᏕᎨ -9.4538 ▁ᏂᏓ -9.45393 ▁ᎡᎲᎢ -9.45627 ▁ᏥᏕ -9.4578 ▁ᎤᏓᏅᏖ -9.46332 ᏤᎢ -9.46452 ▁ᎠᏍᎦᎾ -9.46467 ▁ᏱᏗ -9.46715 ▁ᏅᏓ -9.46718 ▁ᏓᎬ -9.47235 ▁ᎠᏔᎴᏒ -9.47548 ᎠᎴ -9.4756 ▁ᏫᏣ -9.47866 ▁ᏦᎩ -9.47954 ▁ᏓᏓᎿᏩᏍᏛ -9.48041 ▁ᎤᏂᏣᏖ -9.48059 ▁ᏂᏚᎩᏨᏂᏒ -9.48066 ᏚᎵᏍᎬᎾ -9.48076 ▁ᏓᏆᏙᎥ -9.48085 ▁ᎢᎦᎦᏛ -9.48198 ▁ᏗᎧᏃᏗ -9.48649 ▁ᏧᎸᏫᏍᏓᏁᏗ -9.48675 ▁ᏩᏚᎵᏏ -9.48848 ▁ᎦᎷᏯᏍᏗ -9.48849 ▁ᎪᏍᏚ -9.48851 ▁ᏧᏯᏖᎾ -9.48852 ᎴᎯᏐᏗ -9.48855 ▁ᏧᏃᏰᏂ -9.48857 ▁ᏓᎦᎷᏥ -9.48868 ▁ᏅᏛᎩᏅᏏᏛ -9.4887 ▁ᏂᎦᏪᏍᎨᎢ -9.4887 ▁Ꭹ -9.48872 ▁ᏧᏂᏢᎩ -9.48884 ▁ᏗᏂᎦᏙᎵ -9.48887 ▁ᎾᏎᎵᏗ -9.48889 ▁ᎠᎩᏅᏏᏙᎯ -9.48894 ▁ᎯᎸᎯᏳ -9.48915 ▁ᎬᏂᏗᏳ -9.4892 ▁ᎠᏂᎩᏏ -9.48922 ▁ᎤᏍᏆᎸᎲ -9.4894 ▁ᏗᎧᏃᏗᏱ -9.49074 ▁ᎠᎩᏏ -9.49175 ▁ᎤᏂᎷᏨᎩ -9.4926 ▁ᎭᎾᎾ -9.49424 ▁ᎤᏥᎸᎢ -9.49556 ᏍᏆ -9.49598 ▁ᎠᎼ -9.49671 ▁ᎢᎦᏘ -9.49752 ▁ᏭᎷᏤᎢ -9.49968 ᏁᎯ -9.50019 ᏍᏉ -9.50071 ▁ᎢᎬᏁᏗ -9.50199 ᎠᏋᏌ -9.502 ᎦᏔᎲᎾ -9.5029 ▁ᏩᏯ -9.50435 ᏍᎬᎩ -9.50711 ᎡᎵ -9.50914 ᏅᎾ -9.51035 ᏍᎦᏅᎢᏍᏗ -9.51237 ▁Ꭾ -9.51272 ᎩᏎ -9.52251 ▁ᎤᏲᎢ -9.52289 ▁ᎤᏍᎦᏅᏨ -9.52489 ▁ᏥᏣ -9.5249 ▁ᎢᏤᎾ -9.52558 ᏤᏍᏗ -9.52622 ▁ᎠᎴᏬ -9.52735 ᎲᏏ -9.52748 ▁ᎦᏛᎬ -9.52802 ▁ᎦᎳᎨᏴ -9.52817 ▁ᏕᎦᏚᎲ -9.52822 ▁ᏗᎩᎦᏴᎵᎨ -9.52831 ▁ᏂᏣᏛᏁᎸ -9.52834 ▁ᏚᏂᎸᏫᏍᏓᏁᎲ -9.52857 ▁ᎦᏓᏅᏖᏍᎬ -9.52878 ▁ᏚᎾᏓᏅᏛ -9.52892 ▁ᎤᏕᏅ -9.52925 ▁ᎠᎪ -9.5301 ▁ᎦᏄᎸ -9.53127 ᏰᎵ -9.53184 ▁ᏇᏂ -9.53383 ▁ᏥᎦ -9.53432 ▁ᎤᎾᎵᏍᏓᏴᏗ -9.53487 ▁ᎢᏥᏈ -9.53576 c -9.53576 ▁ᏗᎾ -9.536 ▁ᎢᏳᏩᎫᏗ -9.53609 ▁ᏒᎧᏔ -9.53609 ▁ᎢᏳᏓᎴᎩ -9.53609 ▁ᏄᏃᎯᏳᏒᎾ -9.53609 ▁ᎢᏥᏡᏱ -9.53609 ▁ᎦᎵᏆᏍᎪᎯ -9.5361 ▁ᏚᏙᎡᎢ -9.53612 ▁ᏙᎴᏛ -9.53617 ▁ᏫᏥᎢᎦ -9.53618 ▁ᏎᎷ -9.53618 ▁ᎠᏂᏣᎳᎩ -9.53621 ▁ᎢᏤᏯᏔᎮᏍᏗ -9.53624 ▁ᎤᏍᎦᏎᏗ -9.53625 ▁ᎢᏌᏯ -9.53625 ▁ᎢᏗᎦᏔᎭ -9.53638 ▁ᏅᏓᏳᎵᏍᏙᏔᏅᎩ -9.53646 ▁ᏄᎬᏫᏳᏌᏕᎩ -9.53654 ▁ᎢᏨᏲᏎᎭ -9.53664 ▁ᏗᎹᏗ -9.53671 ▁ᎠᏂᎪᏕᏍᎩ -9.53676 ▁ᎤᎯᏐᏗ -9.53682 ▁ᏧᏙᏓᏆᏓ -9.53708 ▁ᎾᏂᎥᎢ -9.53737 ᎵᎦ -9.5374 ▁ᎠᏏᎾᏌᏂ -9.53746 ▁ᎠᎫᏴᏙᏗ -9.53822 ▁ᏗᎦᎪᏗᏱ -9.5385 ▁ᎦᎾᏰᎯᏍᏗ -9.53854 ▁ᎤᎾᏄᎪᏫᏒᎯ -9.53918 ▁ᎤᎾᏫᏱ -9.53921 ▁ᎠᏆᏛᎦᏅᎩ -9.53969 ▁ᏗᏦᏢᏗ -9.54073 ▁ᎦᏬᏂᎯᏍᏗ -9.54094 ▁ᏁᎳ -9.54115 ᏁᎳᏅᎯ -9.54133 ▁ᏭᏴᎴᎢ -9.54146 ▁ᏩᏍᏗ -9.54311 ▁ᏉᎳᏃ -9.54341 ▁ᏧᏪ -9.54472 ▁ᎠᏗᎭ -9.54492 ▁ᏂᏕ -9.54571 ▁ᎤᏪᎿᎢ -9.54702 ▁ᏴᎩ -9.54812 ▁ᏗᏦ -9.54943 ▁ᏫᎦ -9.55029 ▁ᎢᏤᎯ -9.5507 ▁ᏅᏛ -9.55742 ▁ᎦᏥ -9.55833 ▁ᏄᏍᏛᎢ -9.55922 ▁ᎡᏘ -9.56526 ᏗᏍᎪ -9.56938 ᏂᏏ -9.57083 ᎡᎢ -9.57427 ᎦᏘ -9.57545 ᏕᎾ -9.57664 ▁ᏚᎪᎮ -9.57673 ▁ᏅᏗᎦᎵᏍᏙᏗᏍᎪ -9.57704 ᎤᏁᎳᏅᎯ -9.57762 ▁ᎠᏂᏃᎮᏍᎬ -9.57809 ▁ᏧᏪᏅᏒ -9.57812 ▁ᎤᏃᏴᎬ -9.57854 ▁ᏓᏓᏁᎸ -9.5788 ▁ᎯᏯ -9.58248 ᎲᏍᎩ -9.58319 ᏁᎳ -9.58398 ᎶᎯ -9.58423 ᏛᎬᎦ -9.58479 ▁ᎡᏉᏗ -9.58487 ▁ᎤᏂᏬᏂᎯᏍᏗ -9.58521 ᎾᏝᎢ -9.58536 ▁Cr -9.58609 ▁ᎢᏳᎾᏛᎿᏕᎩ -9.58609 ▁ᏍᎦᏚᎩ -9.58609 ▁ᏂᏥᏪᎭ -9.5861 ▁ᏎᎩᎵ -9.58611 ▁ᏧᏓᏕᏒᏛ -9.58615 ▁ᏗᏂᎭᏄᎸᎯ -9.58616 ▁ᎡᏈᏌ -9.58618 ▁ᏔᎷᏣ -9.58619 ▁ᎠᏦᎭᏴ -9.58622 ▁ᎠᎩᎵᏯ -9.5863 ▁ᏌᎪᏂᎨ -9.58635 ▁ᎢᎳᎪ -9.58639 ▁ᏍᎩᏃᎲᏏ -9.5864 ▁ᏗᎪᏪᎵᏍᎩ -9.58646 ▁ᎤᏩᏙᎯᏴᏓ -9.58647 ▁ᎢᏳᏓᎴᏅᏛ -9.58648 ▁ᎤᏂᎬᏫᏳᏌᏕᎩ -9.58649 ▁ᎢᏳᏩᏂᏐᏗᏱ -9.58651 ▁ᎢᏳᏩᏁᏗᏱ -9.5866 ▁ᏙᏰ -9.58693 ▁ᎤᏰᎯ -9.58695 ▁ᎤᏬᏗᎨ -9.58733 ▁ᏒᎮᏱᏣ -9.5877 ▁ᎢᎬᏁᎯ -9.58771 ▁ᏓᏯᎢ -9.58783 ▁ᎾᏍᎩᏉ -9.59039 ▁Ꮖ -9.59074 ▁ᎧᎸᎢ -9.59088 ᏙᎩ -9.59102 ▁ᏚᎸᏫᏍᏓᏁᎲᎢ -9.59117 ▁ᏚᎾᏓᏅᏛᎢ -9.59415 ᏁᎴᎢ -9.59503 ▁ᎤᎾᎵᎢ -9.59644 ᏔᏅᎭ -9.59915 ▁ᏄᏛᏁᎴᎢ -9.60039 ᏑᏴᎾ -9.60084 ▁ᎦᎸᎳᏗᏳ -9.60236 ▁ᎤᎾᏓᏡᎬᎢ -9.60411 ▁ᏣᏤᎵᎦ -9.60514 ▁ᎡᏓ -9.60617 ▁ᎨᎦ -9.60779 ▁ᎪᎯᏓ -9.60893 ᏁᎸᎩ -9.61148 ▁ᏂᎦᏗ -9.61183 ▁ᏴᎦ -9.6122 ᏁᎲ -9.61269 ▁ᎤᏓᏅᏖᏗ -9.61443 ▁ᏗᎧᎿᏩᏛᏍᏗᏱ -9.61662 ▁ᏱᏂ -9.61667 ▁ᏯᏆ -9.61679 ▁ᏗᎦᏓ -9.61818 ▁ᎯᎸ -9.62385 ▁ᎾᏍᎩᏴ -9.62414 ▁ᎾᏂ -9.62729 ▁ᎦᏃᎸᎥᏍᎬ -9.6291 ▁ᎧᎳᏩᏗᏒ -9.63043 ᎦᏔᎭ -9.63063 ᎢᏍᏗ -9.63083 ▁ᏗᎦᏚᎲ -9.63085 ▁ᎢᏦᎯᏳᏒ -9.63102 ▁ᎠᏤᎵᏍᏛ -9.63107 ᏥᏌ -9.63121 ▁ᎦᎨ -9.63244 ▁ᎠᏃ -9.63315 ▁ᎨᎳ -9.63452 ▁ᏭᎶᏒ -9.63458 ▁ᎠᏆᏚᎵ -9.63504 ▁ᎤᏅᏒᏉ -9.63578 ▁ᎦᏁᏌᎢ -9.63581 ᏍᏔᏂ -9.63599 ▁ᏙᎯ -9.63753 ▁ᏍᏆ -9.63806 ▁ᏨᏗᏓᎴᎲᏍᎦ -9.63872 ▁ᏧᏕᏘᏴᏓ -9.63874 ▁ᏗᏟᎶᏍᏔᏅᎯ -9.63875 ▁ᏗᏖᎵᏙ -9.6388 ▁ᎤᎪᏏᏓ -9.63886 ▁ᏦᏓᏂ -9.63887 ▁ᎠᏂᏫᏅ -9.63887 ▁ᏱᏅᏗᎦᎵᏍᏙᏗᎭ -9.63894 ▁ᎢᏳᎾᎵᏍᏙᏗᏱ -9.63904 ▁ᎤᎦᎾᏍᏓ -9.63913 ▁ᏧᎪᎳ -9.63921 ▁ᎢᏯᎾᏛᏁᎯ -9.63922 ▁ᎬᏩᏟᏍᏗ -9.63938 ▁ᎠᏥᏍᏛ -9.63954 ▁ᏧᏍᏗ -9.63963 ▁ᎪᎯᏗᏳ -9.63966 ▁ᎠᎵᏍᏕᎸᏙᏗ -9.64041 ▁ᎤᏚᎵᏍᎨᏍᏗ -9.64041 ▁ᎤᏚᎸᏗ -9.64109 ▁ᎢᏣᏤᎵᎦ -9.64119 ▁ᏣᏁᎳ -9.64127 ▁ᎢᎦᎦᏘ -9.64146 ᏁᎵ -9.64198 ᎪᎯ -9.64277 ▁ᏗᏆᏤᎵᎦ -9.64286 ᏛᎦ -9.6471 ▁ᎡᎵᏍᏗ -9.64714 ▁ᏱᎬ -9.64731 ᏉᏃ -9.64898 ▁ᏧᏓᏃ -9.65215 ᏕᎵ -9.65297 ▁ᏙᏓ -9.65539 ▁ᎤᏂᏣᏔ -9.65576 ▁ᎣᏂᏱ -9.65577 ▁ᎯᎠᏍᎩᏂ -9.65769 ᎪᏗ -9.65861 ▁ᏗᏆ -9.65944 ᎭᏂ -9.66095 ▁ᏃᏥ -9.66122 ᏁᎮᏍᏗ -9.66161 ▁ᏱᏨ -9.66606 ▁ᎠᏓᏁᎸᎢ -9.66621 ▁ᏭᎾ -9.66734 ▁ᏄᏪᏒᎢ -9.66994 ▁ᏄᎵᏍᏔᏅᎢ -9.67204 ▁ᏯᎩ -9.67561 ▁ᎾᎾᏛᏁᎲ -9.6779 ▁ᏞᎦ -9.67799 ▁ᎬᏩᎾ -9.67896 ᎷᎦ -9.68004 ▁ᏚᎳᏍᎬ -9.68466 ▁ᎤᏁᏨᎢ -9.68479 ▁ᏫᏓ -9.68534 ▁ᎤᎨᏓᎵᏴ -9.68599 ▁ᎤᏅᏏᏴ -9.68599 ▁ᏭᏯᏅᎮ -9.68606 ᎩᎶ -9.6862 ▁ᎠᎾᎢᏒ -9.68648 ▁ᎤᏂᎷᏨ -9.68671 ▁ᏕᎭᎷᎨ -9.68714 ▁ᎦᏅᏅ -9.68732 ▁ᏕᎩ -9.68872 ▁ᏭᎷᏨ -9.68935 ▁ᏧᎾᏍᏗ -9.68984 ▁ᎤᏒᎢ -9.69068 ▁ᏗᏥᎾᏫ -9.69193 ▁ᏐᏓᎻ -9.69194 ▁ᏓᏣ -9.69216 ᏌᎳᏓ -9.69295 ▁ᎤᎷᎯᏍᏗ -9.69371 ▁ᎤᏂᏴᏍᏗ -9.69417 ▁ᎠᎦᏘᏏ -9.69425 ▁Perry -9.69428 ▁ᏧᎦᎾᏮ -9.69428 ᏚᏓᎴᏍᏙᏗ -9.69428 ▁ᎥᏳᎩ -9.6943 ▁ᎠᎵᏍᏔᏴᏗ -9.69441 ▁ᎤᎩᏨᏓ -9.69443 ▁ᎧᏂᎩᏛ -9.69448 ▁ᏗᏕᏲᏗ -9.69456 ▁ᎤᎾᏰᎯᏍᏗ -9.69457 ▁ᎤᏫᏯ -9.69458 ▁ᎤᏂᎩᎬ -9.69458 ▁ᎤᏬᏢᏔᏅᎩ -9.6946 ▁ᏧᎾᎩᎸᏗ -9.69462 ▁ᏗᏓᏘᏂᏙᎯ -9.69465 ▁ᎤᏁᎫᏥᏛ -9.69466 ▁ᏗᎪ -9.69484 ▁ᎠᏆᏁᎳᏅᎯ -9.69485 ▁ᎠᎵᏍᎪᎸᏔᏅᎯ -9.69493 ▁ᏳᏚᎵᏍᎨ -9.69507 ▁ᎠᏍᏚᏗ -9.69514 ▁ᎨᎵᏍᎬ -9.69545 ▁ᏂᏗᎥ -9.69562 ▁ᏚᏓᏘᎾᎥᎢ -9.69664 ▁ᎤᏂᏍᏆᏂᎪᏎᎢ -9.69669 ▁ᎢᏳᎾᏛᏁᏗᏱ -9.69885 ▁ᎤᏍᏆᏂᎪᏗᏳ -9.69983 ▁ᏓᏆ -9.70038 ▁ᎣᏏᏉ -9.70186 ▁ᏄᏛᏁᎸᎩ -9.70193 ▁ᎤᎿ -9.70524 ▁ᏗᎨᏒᎢ -9.70642 ▁Ᏸ -9.70767 ▁ᎤᎾᎵᎪ -9.70771 ▁ᎠᏫᏅ -9.70975 ᏍᏕᎸᏗ -9.70997 ▁ᏂᎦᏪᏍᎬᎢ -9.71018 ᎴᏂ -9.71137 ▁ᎠᎩᏍᏗ -9.71161 ᎵᏍᏙᏗ -9.71229 ᎡᎯ -9.71498 ▁ᎢᏧ -9.71663 ᎵᏍᏗ -9.71838 ▁ᏅᎩᏁ -9.71896 ᎡᏗᏱ -9.71902 ▁ᏁᎰ -9.71981 ▁ᏳᎾ -9.71992 ▁ᎾᎥᎢ -9.72047 ᏍᏔ -9.72103 ▁ᎤᏁᏨᎯ -9.72112 n -9.7221 ▁ᎠᏏᏴᏫᏃ -9.72425 ▁ᏣᎾ -9.72547 ▁ᏫᎬᏩ -9.72604 ▁ᏚᏳᎪᏛᎢ -9.72832 ▁ᎢᏳᎢ -9.73165 ᏗᏍᎨᎢ -9.73396 ▁ᎤᏥᎸ -9.7368 ᎶᏛ -9.73789 ▁ᎤᏪᎵᎯᏍᏗ -9.73882 ▁ᎤᏕᏁᎸ -9.74028 ▁ᎠᏰᏙᎳᏛ -9.74035 ▁ᎡᏙᎲ -9.74059 ᏗᏳ -9.74293 ▁ᎠᎾᏓ -9.74337 ▁ᎤᏓᏂᎵᎨ -9.74439 ▁ᎤᎵᏁᏨ -9.745 ▁ᏕᏡᎬ -9.74563 ▁ᏓᏁᏩᏗᏒ -9.74564 ▁ᏕᎨᏌᏗᏒ -9.74589 ▁ᎤᏓᏅᏖᎴ -9.74659 ▁ᎠᏆᏚᎵᏍᎬ -9.74712 ▁ᎤᏓᏴᏍᏗ -9.75108 ▁ᎷᏈᏂ -9.7531 ▁ᏗᏂᎵᎠᏅᎯᏛ -9.7531 ▁ᎢᏈᎬᎢ -9.7531 ▁ᎹᏏᏙᏂ -9.75314 ▁ᏞᎩᏳ -9.75317 ▁ᎠᎾᏓᏅᏟ -9.75319 ▁ᎬᏔᏂᏓᏍᏗ -9.75325 ▁ᎠᎪᏄ -9.75326 ▁ᏌᎺᎵᏱ -9.75331 ▁ᎠᏙᎳᏅᏍᏗ -9.75332 ▁ᎩᏟ -9.75343 ▁ᏗᎦᏅᏙᏗ -9.75346 ▁ᎠᏫᏄᏣ -9.75349 ▁ᎠᏟᎶᏍᏗ -9.75362 ▁ᎢᏨᏗᏍᎨᏍᏗ -9.75368 ▁ᎢᏳᏪᏅᏍᏗ -9.7537 ▁ᏧᏍᏆᏅᎾ -9.75375 ▁ᎡᏏᏱ -9.75399 ▁ᎤᏬᏚᎯ -9.75406 ▁ᎤᏬᏚᎯᏳ -9.75415 ▁ᎠᏥᎾᏝᎢ -9.75416 ▁ᎤᎶᏒᏍᏗ -9.75418 ▁ᏧᏓᎴᏅᏓ -9.7545 ▁ᎠᏓᎯ -9.75455 ▁ᏎᎳᏱ -9.75498 ▁ᎤᏂᏴᏍᏗᏱ -9.7559 ▁ᏔᎵᏧᏈ -9.75594 ᎤᏅ -9.75748 ▁ᎣᏁ -9.75768 ▁ᏚᏯ -9.75771 ▁ᏤᎮᎢ -9.75815 ᎶᏗ -9.75832 ▁ᎠᏁᎮᎢ -9.75898 ▁ᏚᎴᏁᎢ -9.76063 ▁ᏰᎭ -9.76092 ▁ᎠᏁᎭ -9.7618 ▁ᏐᎢᏱ -9.76283 ▁ᏱᏗᏣ -9.76477 ᎾᏏ -9.76528 ᏨᎯ -9.76582 ▁ᎢᏳᎾ -9.76584 ▁ᎠᎬ -9.76665 ▁ᏓᏨ -9.76938 ▁ᎦᏍᎩᎸᎢ -9.77266 ▁ᎠᏥᎸᏉᏗ -9.77274 ᏍᏊ -9.77736 ᏍᏗᏍᎬ -9.78051 ▁ᎤᎨᏳᎯ -9.78124 ▁ᎢᏓ -9.78304 ▁ᎤᏬᎵ -9.78356 ▁ᏙᎯᏱ -9.7837 ▁ᎠᏎᎩ -9.7867 ▁ᎠᏜ -9.78778 ᏛᏗ -9.7883 ▁ᏚᎴᏁ -9.78842 ▁ᎤᏁᏅᏎ -9.78929 ▁ᎤᎸ -9.79089 ▁ᏓᎾᏓ -9.79118 a -9.79247 ᏠᎾᏍᏗ -9.79268 ᏛᎯ -9.79489 ᎸᏉᏙᏗ -9.79647 ᏛᎭ -9.79886 ᎸᏉᏗᏳ -9.79954 ▁ᏅᏓᏳ -9.80132 ▁ᎠᏂᏙᎾᎥ -9.80185 ᏅᏒᎩ -9.80238 ▁ᏔᎵᎭ -9.80348 ▁ᏄᏂ -9.80464 ▁ᏗᏣᏓᏅᏙ -9.8055 ▁ᎡᏗ -9.80583 ▁ᎬᏆ -9.80643 ᎠᏯ -9.80643 ▁ᏨᏍᎩᏃ -9.80762 ▁ᎤᏰᏤ -9.80763 ▁ᎠᏆᎧᏛ -9.80773 ▁ᏓᏠᎯᏍᏛ -9.8081 ▁ᎠᏁᏙᎲ -9.80813 ▁ᏭᎶᏎ -9.80832 ▁ᎠᎾᏛ -9.80839 ▁ᎤᏓᏅᏎ -9.80971 ▁ᏗᏓ -9.81015 ▁ᏕᎦᎶᏗ -9.81247 ▁ᏏᎩᎻ -9.8127 ▁ᎠᏥᎦᏘᏗᏍᏗ -9.81296 ▁ᎤᏓᏅ -9.8134 ▁ᎤᏍᎪᎵ -9.81375 ▁ᎪᏪᎳ -9.81416 ᏐᎢ -9.81454 ▁ᎤᏕᎰᎯᏍᏗ -9.81458 ▁ᎢᏳᏛᏁᏗ -9.81488 y -9.81549 ▁ᎦᎷᏯᏍᏘ -9.8156 ▁ᎢᏏᎺᎵ -9.8156 ▁ᎬᏩᏍᏓᏩᏛᏎᎢ -9.8156 ▁ᎤᎵᏗᏨ -9.8156 ett -9.81561 ▁ᏅᏓᏳᏂᎶᏒᎯ -9.81562 ▁ᏑᎾᏙᏓᏆᏍᏗ -9.81562 ▁ᎢᏯᏅᏙ -9.81564 ▁ᏗᎬᏔᏂᏓᏍᏗ -9.81564 ▁ᎢᎦᏪᏍᏗ -9.81565 ▁ᏂᎬᏩᏪᏎᎸᎩ -9.81565 ▁ᎤᏓᎵ -9.81567 ▁ᏗᏰᏙᎳᏛᏗ -9.81569 ▁ᎠᏖᎵᏙ -9.81569 ▁ᎭᏩᏧ -9.81573 ▁ᏚᏘᏅᏎ -9.81578 ▁ᎤᎴᏂᏙᎸ -9.81584 ▁ᏕᎹᏍᎦ -9.81593 ▁ᎠᏂᎨᎾᏂ -9.81593 ▁ᎠᏫᏒᏗᏱ -9.81593 ▁ᏗᏍᏓᏓᏅᏟ -9.81593 ▁ᎦᏂᎦᏔ -9.81595 ▁ᏣᏓᎵᎢ -9.81613 ▁ᎠᏂᎦᏓᎭ -9.81624 ▁ᏌᎾᏱ -9.81626 ▁ᏥᏚᏙᎥ -9.81628 ▁ᎤᏁᎵᏤᎢ -9.81636 ▁ᎤᎾᏁᎳᏅᎯ -9.81649 ▁ᎠᎪᏙᏗ -9.81653 ▁ᏙᏱᏨ -9.81659 ▁ᎤᎾᏠᎾᏍᏗ -9.81665 ▁ᏗᏦᏢᏙᏗ -9.81667 ▁ᎤᎾᏰᎯᏍᏗᏳ -9.81669 ▁ᏎᎻ -9.81687 ▁ᎤᏏᏩ -9.81742 ▁ᎤᏬᏚᏨ -9.81758 ▁ᎮᎦ -9.81768 ▁ᏁᎲᎾ -9.81768 ▁ᏂᎦᎵᏍᏓ -9.81795 ▁ᏱᏂᎦᎵᏍᏓ -9.81796 ᎢᏳ -9.81797 ▁ᎠᎩᏰᎸᎭ -9.81808 ▁ᎤᏂᎯᏍᏗᏱ -9.81817 ▁ᎢᎨ -9.81826 ▁ᏫᏗ -9.8183 ▁ᎠᏍᎪᎯᏁ -9.81842 ▁ᎤᏟᏍᏓ -9.81852 ▁ᎢᎬᏓ -9.81856 ▁ᎤᎷᎯᏍᏗᏱ -9.81864 ▁ᎾᏂᏪᏍᎬᎩ -9.81873 ▁ᏈᎳ -9.8188 ᏩᏛᎲ -9.81954 ▁ᎢᎬᏒ -9.82048 ▁ᏗᏂᏅᏌᏗ -9.82055 ▁ᎠᎱᏍᏕ -9.82056 ▁ᎠᏁᎩ -9.82172 ᎨᏳᏎᏍᏗ -9.82188 ▁ᎢᎾ -9.82262 ▁ᏄᎾᏛᏅᎢ -9.82268 ▁ᏓᏁᏩᏗᏒᎢ -9.82366 ▁ᏕᎭᎷᎨᎢ -9.82415 ▁ᏙᎩ -9.82706 Ꮰ -9.82786 ▁ᎦᏂ -9.82909 ▁ᏕᎦᏛ -9.83227 ᏃᎮᎭ -9.833 ▁ᎨᏴᎢ -9.83809 ᎥᏍᎬ -9.84013 ᎥᎢ -9.84142 ᎳᏅᎯ -9.84142 ᎪᎵᏰᏍᎩ -9.8415 ᏩᏛᏗ -9.84151 Ꮡ -9.84284 ▁ᎠᎩᎵᏲᎢᏍᏗ -9.84429 ▁ᎠᏙ -9.84503 ▁ᎯᎳ -9.8456 ▁ᎤᏂᏁ -9.84584 ▁ᏗᏤ -9.84985 ▁ᎤᏂᏠᏱ -9.85044 ᏉᏰᏃ -9.85236 ▁ᏕᏣᏓ -9.85619 ▁ᎤᎾᏙᎴᎰᏒ -9.85674 ▁ᎤᏇᏓᎸ -9.85947 ▁ᏗᏗ -9.86336 ᎦᏛ -9.86481 ▁ᏣᏉ -9.86508 ᎡᎭ -9.86569 ▁ᎦᏥᏯ -9.86629 ▁ᏔᎵᏁᎢ -9.86837 ▁ᏧᎾᏓ -9.86843 ᏅᏟ -9.8686 ▁ᏚᎸᏫᏍᏓᏁᎸ -9.86941 Ꮏ -9.86999 ▁ᏯᎾ -9.87013 ᎸᎾ -9.87031 ▁ᎦᏁᎲ -9.87049 ▁ᎤᏴ -9.87094 ᎵᏱ -9.8711 ᏛᏅ -9.87238 ▁ᎤᏚᎵᏍᎨ -9.87274 ▁ᏁᎳᎩ -9.87347 ▁ᏕᏥᎸᏫᏍᏓᏁᎲ -9.87468 ▁ᏭᏴᎴ -9.87503 ᏯᏖᏅ -9.87505 ᎵᏍᏆᏗᏍᎩ -9.87512 ▁ᏙᏓᎸ -9.87567 ▁ᏄᎾᏛᏅ -9.87579 ▁ᎡᎮ -9.87668 ▁ᏗᏁᎲ -9.87739 ᎲᏍᎬ -9.87804 ▁ᏅᏗᎦᎵᏍᏙᏗ -9.87839 ▁ᎤᏁᎸ -9.87936 Ꮁ -9.87946 ▁ᎤᏛᏁᎢ -9.87956 ▁ᎠᎾᏓᎾᏏᏂᏙᎯ -9.88227 ▁ᏯᎦᏔᎮ -9.88227 ▁ᎠᎵᏰᎾ -9.88228 ▁ᎦᏣᏄᎳ -9.8823 ▁ᎠᏨᏍᏙᏗ -9.88231 ▁ᏧᎦᏒᏍᏗ -9.88234 ▁ᎢᎬᏩᎵᏍᏙᏗ -9.88242 ▁ᎠᏒᎬ -9.88246 ▁ᎢᏣᎵᏍᏙᏗᏱ -9.88248 ▁ᏗᏥᏲᎵ -9.88252 ▁ᏗᏂᏏᏗ -9.88254 ▁ᎠᏤᎷᎩ -9.88256 ▁ᏥᏄᏪᏎᎢ -9.88256 ▁ᎠᏂᎩᎷᏫ -9.88264 ▁ᏧᎳᏏᏕᏂ -9.88271 ▁ᎤᏛ -9.88272 ▁ᏫᎦᎷᎩ -9.88294 ▁ᏥᏍᏚ -9.88299 ▁ᎤᎾᎳᏅᎯ -9.88313 ▁ᏗᏂᏰᎸ -9.88313 ▁ᏄᎾᏓᎴᏒ -9.8832 ▁ᎫᎫ -9.88335 ᏯᏅᏛ -9.88374 ᎵᏰᎢᎶᎯᏍᏗ -9.88414 ▁ᎤᏲᎱᎯᏍᏗᏱ -9.88424 ▁ᎤᎵᏍᎨᏛ -9.88435 ▁ᏏᏲ -9.88456 ▁ᎭᏫᏂᏨ -9.88461 ▁ᎧᏃᎮᏗ -9.8849 ▁ᎢᏳᏍᏘ -9.88491 ▁ᎠᎾᏓᏅᏖᏍᎬ -9.88501 ▁ᏚᎾᏓ -9.88508 ▁ᎫᎴ -9.88511 ▁ᎤᏂᏣᏛᎩ -9.88565 ▁ᏭᏂᎶᏎᎢ -9.88567 ᎦᏙᏃ -9.88572 ▁ᏗᎩᏏ -9.88574 ▁ᎠᏆᏚᎵᎭ -9.88594 ▁ᎠᎪᏩᏛᏗ -9.88595 ▁ᏓᏅᏅ -9.88605 ▁ᏂᎪᎯᎸᎾᏉ -9.88653 ▁ᎤᏲᏨ -9.88679 ▁ᏙᎦ -9.88684 ▁ᏥᎨᏳᎢ -9.88698 ▁ᏱᎨᏐᎢ -9.88729 ᎳᎻ -9.88734 ᏴᏫ -9.88766 ▁ᏂᎦᎵᏍᏙᏗ -9.88876 ▁ᎨᎵᎠ -9.88911 ▁ᎡᎮᏍᏗ -9.88966 ▁ᎡᎩ -9.88976 ▁ᏚᎸᏫᏍᏓᏁᎸᎢ -9.88992 ▁ᎠᏁ -9.88994 ▁ᎠᏁᏙᎲᎢ -9.89041 ▁ᎢᎦᏤᎵᎦ -9.89051 ▁ᎪᎨ -9.89117 ▁ᎡᏙᎲᎢ -9.89125 ▁ᏗᏁᎲᎢ -9.89156 ▁ᎤᏓᏅᏅ -9.89259 ▁ᎠᏓᏁᏗ -9.8947 ▁ᎠᏗ -9.89511 ▁Ꮠ -9.89754 ▁ᎡᎾ -9.8977 ▁ᏂᏙᏓᏳ -9.90156 ▁ᏂᎪᎯᎸᎾ -9.90201 ▁ᎤᏂᎷᏤᎢ -9.9038 ▁ᏂᏥᎥᎢ -9.90417 ᎦᏗᏓ -9.90601 ▁ᏧᏅ -9.90605 ▁ᏍᎩᏯ -9.90689 ▁ᎠᏂᏐ -9.90911 ▁ᎠᏋᏒᏉ -9.91243 ▁ᏣᏚ -9.91267 ▁Ꮜ -9.91308 ▁ᏴᎬ -9.91379 ▁ᏤᏣ -9.9146 ᏧᏈᏍᏗ -9.91553 ᎲᏍᎨᏍᏗ -9.92112 ▁ᎪᎯᏍᎩᏂ -9.92255 ᏙᎴᎰᎯᏍᏗ -9.92524 ᏢᏙᏗ -9.92633 ᎳᏗ -9.92791 ᏣᏘ -9.93071 ▁ᏕᎬᏩ -9.93942 ▁ᏚᏪ -9.94097 ᏂᎸ -9.94116 ▁ᏧᎾᏄᏬ -9.94315 Ꮉ -9.94382 ▁ᏎᎳ -9.94498 ᎦᎶᏁᏛ -9.94502 ▁ᎠᏆᏛᎦᏅ -9.94537 ▁ᎡᎳᏪ -9.9456 ▁Ꮞ -9.94567 ▁ᏓᏫᏒ -9.94624 ▁ᎢᏳᏪ -9.94678 ▁ᏭᏂᎷᏨ -9.94858 ᏩᎬᏘ -9.9496 ▁ᏚᏁᎴ -9.94968 ▁ᏄᏛᏅ -9.95025 ᎵᏍᎦᏍᏙᏛ -9.95027 ▁ᎡᏝᏪ -9.95082 ▁ᎤᏓᏅᏛ -9.95151 ▁ᏗᎧᏃᎩᏍᏗ -9.95173 ▁ᎠᏛᎪᏗ -9.95202 ▁ᎬᏍᎦᎢᏍᏓᎩ -9.95369 ▁ᎠᏗᏆᎸᏕᏲ -9.9537 ▁ᏂᎦᏅᎯᏎᏍᏗ -9.9537 ▁ᎠᏂᏌᏚᏏ -9.9537 ▁ᏄᏜᏏᏛᏒᎾ -9.9537 ▁ᏌᏯᏂ -9.9537 ▁ᎤᎵᎪᎲᏍᏗ -9.9537 ▁ᏗᏁᎶᏙᏗ -9.9537 ▁ᏧᏃᏑᎶᏨᎯ -9.9537 ▁ᏥᏔᎦ -9.95371 ▁ᎤᎶᏒᏍᏔᏅᎯ -9.95372 ▁ᏧᎾᏦᎯᏍᏗ -9.95376 ▁ᎢᏨᏔᏲᏎᎭ -9.95376 ▁ᏧᎾᎳᏏᏕᏂ -9.95378 ▁ᎳᏏᎳ -9.95379 ▁ᎢᏳᏓᎨᏛ -9.95381 ▁ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ -9.95387 ▁ᎢᎩᏍᏕᎵᏍᎩ -9.95389 ▁ᎾᏛᏁᎮᏍᏗ -9.95389 ▁ᎤᏚᏫᏛ -9.95391 ▁ᏫᏂᎦᎵᏍᏓ -9.95392 ▁ᏫᏄᏒᎸ -9.95392 ▁ᎣᏌᏂ -9.95401 ▁ᎣᎦᏁᎳᏅᎯ -9.95401 ▁ᎤᏴᏣ -9.95402 ▁ᎤᎾᎴᏅᎮ -9.95405 ▁ᎦᏰᏌᏗ -9.95407 ▁ᏤᏈ -9.95409 ▁ᎠᎦᏘᏯ -9.9542 ▁ᎠᏂᎦᏔᎿᎢ -9.95423 ▁ᎬᎪᏩᏛᏗ -9.95424 ▁ᏗᏯᏖᎾ -9.95431 ▁ᎠᎵᎮᎵᏍᏗ -9.95432 ▁ᎢᎦᏪᏛ -9.95432 ▁ᎤᎵᏑᏫᏓ -9.95455 ᎭᏗ -9.95499 ▁ᎤᎦᏃᏩ -9.955 ▁ᏧᎾᏓᎵᎢ -9.95514 ᏛᏳᎨᏗ -9.95571 ▁ᎢᏳᏅᏁᏗᏱ -9.95574 ▁ᎢᎾᏓ -9.95607 ▁ᎪᎨᏱ -9.95614 ▁ᎤᏬᏢᏅᎯ -9.95621 ▁ᎤᎴᏫᏍᏔᏅ -9.9563 ᏔᏲᏎᎴ -9.95645 ▁ᎠᏓᏅᏖᏗ -9.95652 ▁ᎢᏍᏗ -9.95664 ▁ᏣᏁᎮᎢ -9.95679 ▁ᏧᎸᏫᏍᏓᏁᏗᏱ -9.95736 ▁ᏗᎦᎵᎠᏅᎯᏛ -9.95806 ▁ᏄᎾᏛᏁᎸᎩ -9.95815 ▁ᏚᏳᎪᏗ -9.95841 ▁ᎤᎾᏄᎪᏫᏎᎢ -9.95926 ▁ᎠᏥᎸᎠᏁᎶᎯ -9.95942 ▁ᎤᏔᎷᎩᏍᎩ -9.95986 ▁ᏥᏥ -9.96033 ▁ᎬᏩᏛᏛᏁ -9.96043 ▁ᏭᎶᏒᎩ -9.96078 ▁ᎠᎦᏔᎭ -9.96114 ▁ᎤᎵᏍᎨ -9.96164 ▁ᏧᎵᎢ -9.962 ▁ᎾᎥᏂᏳ -9.9621 ▁ᎠᏓᏰᏍ -9.96246 ▁ᏓᏠᎯᏍᏛᎢ -9.96253 ▁ᏕᎨᏌᏗᏒᎢ -9.963 ▁ᏚᎸᏫᏍᏓᏁᎲ -9.96328 ▁ᎤᏂᎵ -9.96374 ▁ᎭᏓᏅᏖᏍᎬ -9.96457 ▁ᎣᏣ -9.96531 ▁ᏍᎪᎯ -9.96555 ᏗᏍᎨ -9.9657 ᏌᏘ -9.96578 ▁ᎤᏁᏤᎸᎩ -9.96628 ▁ᎧᏁᎢᏍᏗ -9.96666 ᏅᏍᏗ -9.96672 an -9.96736 ᎦᏘᏍᏙᏗ -9.96743 ▁ᏑᏓᎵᏁ -9.96764 ▁ᎤᏣᏛ -9.96776 ▁ᏳᏂ -9.96928 ▁ᏙᏳ -9.96939 ▁ᏗᎨᏥ -9.97044 ▁ᏥᏯ -9.97199 ᎵᏏ -9.97248 ▁ᎬᏗᏍᎬᎢ -9.9725 ▁ᏗᏣᏓ -9.9748 ᏃᎯᏎᎸ -9.97536 ▁ᎤᎴᏅ -9.97603 ▁ᎠᏰᎸᏗ -9.97823 ▁ᏳᏩ -9.97912 ▁ᏚᏅ -9.97927 ᎵᏍᏔᏅ -9.98101 ▁ᎤᏰᎸᏛᎢ -9.98162 ᏍᏔᏅᎩ -9.9831 ▁ᎤᏕ -9.9863 ▁ᎤᏲᏉ -9.98658 ᏁᏥ -9.98844 ▁ᏤᎩ -9.98884 Ꭻ -9.9929 ▁ᎪᎯᏛ -9.99434 ▁ᎠᏓᏅᏙᏍᎩᏂ -9.99572 ᎯᎭ -9.99631 ᏟᏍᏗ -9.99633 ▁ᏍᎩᏃ -9.99759 ▁ᎯᎦᏔᎭ -9.99826 ▁ᎤᏬ -9.99938 ▁--- -10.0004 ▁ᎢᏅᎯ -10.0006 ▁ᏱᎨ -10.0009 ᏂᏗᏳ -10.002 ▁ᏙᏓᎦ -10.0022 ▁Ꮼ -10.0025 ▁ᎤᎫᏴᏗ -10.0031 ▁ᏑᎾᎴᏃ -10.0068 ▁ᏩᏁ -10.0106 ▁ᏗᎬᏩᏂ -10.0112 ▁ᏥᏅᏏᏓᏍᏗ -10.0115 ▁ᏄᏍᏛᎾ -10.0117 ▁ᏧᎵ -10.0132 ▁ᎤᎪ -10.0161 ▁ᏛᎾ -10.0169 ▁Ꮲ -10.0201 ▁ᎠᏁᏙᎮ -10.0205 ▁ᏕᎨᏴ -10.0219 ▁ᎾᏑᏴ -10.0221 ᎪᏩᏛᏗ -10.0224 ▁ᏚᎾᏓᏡᏩᏗᏒ -10.0231 ▁ᎯᏆ -10.0232 ▁ᏅᏃ -10.0247 ▁ᎤᏄᎪᏨ -10.0255 ▁ᏚᎪᎲ -10.0265 ▁ᎦᏅᎬ -10.0266 ▁ᎤᏪᏙᎸ -10.0273 ▁ᎤᏪᏅᏍᏗ -10.0292 ▁ᏥᎬ -10.0293 ▁ᎠᏒᎨ -10.0294 ▁ᎠᎩᎾᏫ -10.0295 ▁ᎤᏲᎱᎯᏍᏗ -10.0296 ▁ᎠᏇ -10.0303 ᏄᎮᏛ -10.0306 ▁ᏅᏬᏘ -10.0306 ▁ᏑᏓᎴᎩ -10.0306 ▁ᎦᏃᏍᎩᏍᎩ -10.0306 ▁ᏀᎾ -10.0306 ▁ᏍᏏᏉᏯ -10.0306 ▁ᏗᎦᏙᏌᏗᏍᏗᏱ -10.0306 ▁ᏗᏂᎨᏫ -10.0306 ▁ᏌᏙᏂ -10.0306 ▁ᏧᎾᏦᏴᏍᏗ -10.0306 ▁ᎮᎳᏂ -10.0307 ▁ᏗᎪᏒᏔᏅ -10.0307 ▁ᎾᎦᎥ -10.0307 ▁ᎨᏣᏍᎦᎩ -10.0307 ▁ᎠᏉᏰᏂ -10.0307 ▁ᎦᏚᎢᏗᏢ -10.0307 ▁ᏇᏍᏓ -10.0307 ▁ᏗᏂᎰᎵ -10.0307 ▁ᏍᏗᏫ -10.0308 ▁ᏌᏊ -10.0308 ▁ᏚᏑᎬ -10.0308 ▁ᎤᎧᏲᏛᎯ -10.0308 ▁ᏁᏂᏏ -10.0308 ▁ᎨᎦᏑᏰᏛ -10.0308 ▁ᎠᏂᎦᏔᎾᎢ -10.0308 ▁ᏚᎦᏒᏍᏛ -10.0308 ▁ᏗᏍᏆᎾᎳᏗᏍᏗ -10.0309 ▁ᏄᏍᏗᏓᏅ -10.0309 ▁ᏗᎳᏑᎶ -10.0309 ▁ᎢᏳᏓᏅᎯᏓ -10.0309 ▁ᎬᎩᏍᎦᎩ -10.0309 ▁ᎣᏥᎦᏔᎭ -10.0309 ▁ᎤᏕᎶᎰᏎ -10.031 ▁ᏩᏛᎬᎦ -10.031 ▁ᎢᏥᏯᏫᏍᎨᏍᏗ -10.0312 ▁ᎣᎭᏂ -10.0312 ᎪᏣᎴᏛ -10.0312 ▁ᎠᏂᎩᏏᏙᎯ -10.0312 ▁ᎨᏆᏂ -10.0312 ▁ᎠᏂᎦᏔᎯ -10.0313 ▁ᏗᏥᎶᏍᏔᏅ -10.0313 ▁ᎢᏥᏅᏟ -10.0313 ▁ᎤᏓᏅᏖᎸ -10.0313 ▁ᎠᏍᎦᏰᎬᏍᏔ -10.0315 ▁ᏥᎮᎾ -10.0315 ▁ᏫᎶᎯ -10.0318 ▁ᎤᏙᎴᎰᏎ -10.0319 ▁ᎤᏪᎷᏅᎩ -10.0321 ▁ᏄᏕᏘᏴᎮᎢ -10.0322 ᏁᎲᎢ -10.0322 ▁ᏓᏳᎶᏒ -10.0323 ▁ᏂᎦᏚ -10.0325 ▁ᎤᏤ -10.0328 ▁ᏚᎧᎾᏁ -10.0331 ▁ᎤᏛᏐᏅᎯ -10.0334 ▁ᎤᏁᎷᏁᎢ -10.0334 ▁ᎢᏥᏍᎦᏅᏨᎢ -10.0334 ▁ᎪᏢᏅᎯ -10.0339 ▁ᏯᏂ -10.0339 ▁ᎤᎵᏍᏕᎸᏙᏗ -10.0339 ▁ᎤᏓᏅᏒᎩ -10.034 ▁ᎠᏧᏏ -10.0345 ᎠᏎᏃ -10.0345 ▁ᏕᎦᎶᏗᎯ -10.0348 ▁ᎠᎩᎪᎲᎩ -10.0349 ▁ᎤᏓᏔᏅᎯ -10.0349 ▁ᏓᎧᏅᎢ -10.0353 ▁ᏓᏓ -10.0355 ▁ᎬᏩᎷᏤᎸᎩ -10.0356 ▁ᎪᏢᏒᎢ -10.0359 ▁ᎡᎳᏗᏣ -10.036 ᎿᎨ -10.0361 ▁ᎢᏧᏩᏁ -10.0361 ▁ᎤᏄᎪᏤ -10.0363 ᏗᏍᎪᎢ -10.0365 ▁ᎠᏥᎸᎨᎶᎯ -10.0373 ▁ᎡᏙᎯ -10.0374 ▁ᏓᎬᎾ -10.0374 ᎶᎢ -10.0376 ▁ᎠᏁᎳ -10.0379 ▁ᎨᎾᏂᏱ -10.0379 ▁ᏚᎾᏓᏡᏩᏗᏒᎢ -10.0384 ▁ᎤᏁᎳᏅᎯᏱ -10.0384 ▁ᎤᏂᏍᎦᏅᏨᎯ -10.0389 ᏌᏂ -10.0389 Ꮾ -10.039 ▁ᎤᎾᏓᏑᏴ -10.0395 ▁ᎪᏣᎴᏛ -10.0397 ▁ᎮᏗ -10.0397 ▁ᎤᏍᏘᏰᎬ -10.04 ▁ᏥᎪᎨ -10.0404 ▁ᏣᏂᏃ -10.0407 ᏙᏓ -10.0414 ᏖᎸᏗ -10.0417 ▁ᏚᏂᎸᏫᏍᏓᏁᎲᎢ -10.0432 ᏓᏥ -10.0438 ▁ᎠᏔᎴᏒᎢ -10.0439 ᎸᏗ -10.0448 ▁ᏂᎦᏪᏍᎬᎩ -10.0459 ᎵᏓᏍᏗ -10.0466 ᏕᎩ -10.0473 ▁ᏱᎦᎩ -10.0475 ▁ᎤᎪᎮᎢ -10.048 ▁ᏡᎬᎢ -10.0493 ▁ᎤᎴ -10.0545 ▁ᎤᏣ -10.0584 ▁ᏙᏗ -10.0601 ▁ᎠᏍᎦ -10.0607 ▁ᎤᏲᎱᏒᎢ -10.0607 ▁ᏓᏰ -10.0624 ▁ᎡᎳ -10.0642 ▁Ꮋ -10.0659 ᏴᏓ -10.0676 ᎵᏍᎪᎸᏓᏁᎸᎯ -10.0683 ▁ᎠᏂᏂ -10.069 ▁ᏥᏓᏂ -10.0702 ▁ᎤᏩᏛᏗ -10.0717 ᏚᎦ -10.0736 ᎴᎭ -10.0745 ▁ᏥᏴ -10.0752 ᏣᏓ -10.0769 ᎷᏥᏏ -10.0782 ᏖᏍᏗ -10.0783 ▁ᎤᏄᏬ -10.079 ▁ᎤᏂᏁᏨ -10.0792 ᎥᎾ -10.0793 ▁ᎦᎾ -10.0803 ᏓᏑᏯ -10.0829 ᏅᏎ -10.0874 ᏓᏂᎸᏨᎯ -10.0888 ▁ᎢᏍ -10.0914 ᏗᏣ -10.0914 ▁ᏱᎬᏩ -10.0924 ▁ᎤᏦ -10.0931 ▁ᎦᏁ -10.0933 ▁ᏏᎻᏯᏂ -10.095 ᏎᎸ -10.0952 ▁ᎪᎯᏳᏗᏍᎩ -10.0956 ᏤᎵ -10.0956 ▁ᎠᎯᏗ -10.0972 ▁ᎣᎦᏤᎵ -10.0983 ᏁᎶᏗ -10.0984 ▁ᎦᏛ -10.0989 ᏒᏅ -10.0992 ▁ᏂᎬᏁ -10.0994 ▁ᎧᏃᎮᏍᎬ -10.1009 ▁ᏄᎾᏛᏁᎸ -10.1012 ▁ᎠᏍᏓ -10.1032 ▁ᎠᏅᏗᏍᎬ -10.1056 ▁ᎤᏜᏅᏛ -10.1057 ▁ᎤᎿᏥ -10.1058 ▁ᏫᏚᏯᏅᎮ -10.1066 ▁ᎠᏨᏯ -10.1074 ▁ᎠᏂᏁᎬ -10.1078 ▁ᎤᎾᏚᎵᏍᎬ -10.1086 ▁ᎤᏂᎩᏎ -10.1087 ᎥᎯᏍᏗ -10.1089 ▁ᎪᏱᏁ -10.1089 ▁ᏚᎸᏌᏛ -10.109 ▁ᎠᏇᎵᏒ -10.1091 ▁ᏂᏚᏩᏁᎸ -10.1091 ▁ᎤᏪᏅᏒ -10.1094 ᎬᎭᎷᏴ -10.1095 ▁ᏥᏁᎬ -10.1098 ▁ᎠᏴᏫᏯ -10.11 ᎸᏌᏛ -10.1103 ▁ᎢᏨᏯ -10.1108 ▁ᏱᏥᎦᏔ -10.1109 ᎶᏒ -10.1114 ▁ᏫᎬ -10.1115 ▁ᎢᏯᏆᏛᏁᏗ -10.1117 ▁ᏂᏨᏁᎸ -10.1118 ▁ᎤᏁᏓᏍᏗ -10.1119 ▁ᏗᎦᎪᏗ -10.1122 ▁ᎠᏁᎵᏍᎨ -10.1126 ▁ᎡᎳᏂᎬ -10.1131 ▁ᎤᏩᏛᎲ -10.1138 ▁ᎤᎵᏬᏨ -10.1139 ▁ᎠᏂᏩᏥᏂ -10.114 ▁ᎦᎳᎱᏂ -10.114 ▁ᏕᎦᎳᏫᎥ -10.114 ▁ᏧᏓᎿᏩᏛ -10.114 ▁ᎢᏆᎶᏂ -10.114 ▁ᎾᎪᏔᏅᎾ -10.114 ▁ᏚᎾᎧᏛ -10.114 ▁ᏗᏂᏬᏂᏍᎩ -10.114 ▁ᏣᏔᎦ -10.114 ▁ᎤᏙᎴᎰᎯᏍᏗᏱ -10.114 ▁ᏚᏃᏢᏔᏅᎩ -10.114 ▁ᎢᏕᎯ -10.114 ▁ᏄᏓᎵᏓᏍᏛᎾ -10.114 ▁ᏗᎨᏥᎤᏍᏕᏎᎸᎯ -10.114 ▁ᏅᏓᎦᎵᏍᏙᏓ -10.114 ▁ᏗᏂᏍᎪᎵ -10.114 ▁ᏂᎦᎵᏍᏔᏂᏙᎲ -10.114 ▁ᎦᏂᏓᏛ -10.1141 ▁ᏍᎪᏯ -10.1141 ▁ᏧᏆᎶᎬ -10.1141 ▁ᏂᏣᏛᏁᎮᏍᏗ -10.1141 ▁ᎾᎵᏍᏆᏗᏍᎬᎾ -10.1141 ▁ᎢᏥᏰᎸᏎᏍᏗ -10.1141 ▁ᎢᏣᏅᏖᏍᏗ -10.1141 ▁ᎤᏬᏑᎶᏨᎯ -10.1141 ▁ᎥᎩᏅᏏᏛ -10.1141 ▁ᎠᏂᏃᏍᎩᏍᎩ -10.1142 ▁ᏗᏓᏬᏍᎩ -10.1142 ▁ᏓᎬᏩ -10.1142 ▁ᎢᏳᏕᏘᏴᏓ -10.1142 ▁ᎢᏧᎳᏗᏢ -10.1143 ▁ᎯᏍᎦᏯ -10.1143 ▁ᎢᏥᎦᏔᎮᏍᏗ -10.1143 ▁ᎡᏂᏗ -10.1143 ▁ᏂᏚᎾᏓᏪᏎᎴᎢ -10.1143 ▁ᎠᏌᏅᏙᏗ -10.1144 ▁ᏗᏑᏢᏛ -10.1144 ▁ᎣᏂᏗᏢ -10.1144 ▁ᏅᏓᎦᎵᏍᏙᏔᏂ -10.1144 ▁ᎠᎵᏥᏙᎲᏍᎩ -10.1144 ▁ᎢᏯᏍᏘ -10.1144 ▁ᎡᏈᎵ -10.1145 ▁ᎢᏥᎦᏙᎥᎯᏍᏗᏱ -10.1145 ▁ᏧᎾᎵᏂᎩᏛ -10.1145 ▁ᎠᎦᏯᎷᏗ -10.1146 ▁ᎠᏥᎤᏍᏕᏎᎸᎯ -10.1146 ▁ᎪᎯᏳᎲᏍᎩ -10.1146 ▁ᏂᎬᏪᏎᎭ -10.1146 ▁ᏣᏓᏅᏙ -10.1148 ▁ᏧᏍᎪᎵ -10.1148 ▁ᎦᎾᏍᏓ -10.1148 ▁ᏂᎦᎵᏍᏔᏅᎭ -10.1151 ▁ᏅᏧᎵᏍᏙᏔᏅ -10.1152 ▁ᏍᎩᏙᎵᎩ -10.1155 ▁ᎤᏕᎵᏒ -10.1155 ▁ᎢᏳᎵᏍᏔᏅᎯ -10.1157 ▁ᎤᎵᏍᏗᏳ -10.1159 ▁ᏧᏂᎳᏫᎢᏍᏗᏱ -10.1159 ▁ᎢᏕᎾ -10.1159 ▁ᏓᏓᏏ -10.116 ▁ᎠᎦᏔᎿᎢ -10.116 ▁ᎠᏆᎵᏏ -10.1161 ▁ᏚᏠᏱᎴᎢ -10.1161 ▁ᎤᏍᏆᏛ -10.1162 ▁ᎢᏯᏆᏛᏁᏗᏱ -10.1163 ▁ᎢᏓᎵ -10.1164 ▁ᎹᏗ -10.1168 ▁ᎤᏪᏗᏱ -10.1171 ▁ᎨᎥᎢ -10.1175 ▁ᎤᏟᏂᎩᏓ -10.1177 ᎷᏤᏗᏱ -10.1179 ▁ᎤᏂᎩᏒᎩ -10.1181 ▁ᏘᎵ -10.1185 ▁ᎡᏘᏴ -10.1187 ▁ᎤᎾᏛᏁᎢ -10.1188 ▁ᎤᏩᏅ -10.119 ▁ᎹᎩ -10.1191 ▁ᏂᏚᏩᏁᎸᎩ -10.1192 ▁ᏄᎾᏍᏗ -10.1195 ▁ᏧᏂᎾᏫᏱ -10.1196 ▁ᏫᏚᏂ -10.1198 ▁ᏧᏓᏅᏛᎢ -10.1201 ▁ᎬᏩᎪᎲ -10.1205 ▁ᏭᏂᎷᏤᎢ -10.1212 ▁ᎨᏙᎲ -10.1214 ᏢᏗ -10.1218 ▁ᎨᏂᏗ -10.1218 ▁ᏂᏙ -10.122 ᏃᏁᎸᎩ -10.124 ᏓᏡᎬ -10.1248 ▁Ꮘ -10.1251 ▁ᏂᏫ -10.1253 ▁ᏯᏆᏚᎵ -10.1261 ▁ᎠᏆᎵ -10.1262 ▁ᎤᏣᏖ -10.1267 ▁ᎭᎵ -10.1272 ▁ᏱᎰ -10.1275 ▁ᎯᎸᎯ -10.1276 ▁ᎦᏛᎬᎢ -10.1278 ᏁᏍᎨ -10.1282 ▁ᎤᎪᎲᎯ -10.1293 ▁ᎨᏓᎵ -10.1298 ▁ᎤᏁᎢᏍᏗ -10.1302 ▁ᎤᎭᎨ -10.1312 ᏙᎥ -10.1312 ▁ᏄᏛᏁᎸᎢ -10.1313 ᎡᏍᏗ -10.1315 ᏓᏅ -10.1324 ᏃᎲᏏ -10.1331 ᏙᎵᏍᏗ -10.1334 ▁ᎤᏩᎨᏫ -10.1334 ᏍᏆᏂᎪᏗ -10.1343 ᎫᏴᏙᏗ -10.1346 ᏪᏨᎯ -10.1363 ▁ᎤᎴᏅᎲ -10.1369 ▁ᏧᏪᏘ -10.1373 ▁ᎤᏯ -10.1386 ▁ᏗᎬᏙᏗ -10.1397 ᏅᎭ -10.1418 ▁ᎠᎩᎭ -10.1443 ▁ᎯᎾ -10.1456 ᏓᏏ -10.1468 ᏩᏛᎮ -10.1473 ▁ᎠᎦᏛ -10.1477 ▁ᏓᏥᏯ -10.1512 ▁ᎤᏔᏅ -10.1518 ᎠᏯᏗ -10.1521 ▁ᎤᏙᏓᏃ -10.1524 ᏂᏒ -10.1527 ᏅᏏᏙᎯ -10.1535 ᏍᏕᏍᏗ -10.1562 ▁ᎤᏛᏅᎩ -10.1624 ▁ᎨᎶᎯ -10.1647 ▁ᏭᏂᎷᏤ -10.1664 ᏁᎸᏔᏅ -10.1681 ▁ᏄᏓ -10.1708 ▁ᏂᏣᏛᏅᎢ -10.1744 ᏧᏏ -10.1746 ᎤᏙᎯᏳ -10.1748 ᏓᏁᎸ -10.1775 ᏙᎵ -10.1784 ᏴᎭ -10.1785 ᏐᏅ -10.1792 ᎩᏍᎨᏍᏗ -10.1805 ᎥᏝ -10.1808 ᏓᏅᎦᎸᏛ -10.1822 ▁ᎠᏂᏁ -10.1849 ▁ᎠᏍᎦᏅᏨ -10.1893 ᏓᎶᏂᎨ -10.1903 ▁ᎾᏆᏛᏁᎸ -10.1916 ᏔᎷᎩᏍᎩ -10.1917 ᎨᎳᏍᏗ -10.1921 ᏚᎵ -10.1924 ▁ᎠᎩᏁᏨ -10.1933 ▁ᎠᏓᏅᏖᏍᎨ -10.1948 ▁ᎡᎵᏍᎨ -10.1952 ▁ᏫᎦᏅᏅ -10.1955 ▁ᎠᏂᏨᏯ -10.1957 ▁ᎠᏓᏯ -10.196 ▁ᎤᎩᏨᏅ -10.196 ▁ᎤᎵᏂᎬᎬ -10.1961 ▁ᏕᎦᏅᏅ -10.1961 ▁ᏗᏤᎲ -10.1964 ▁ᎥᏓᎸ -10.1965 ᎩᎯ -10.1965 ᎢᏳᎾᏍᏗ -10.1965 ▁ᎤᏂᏃᎮᎸ -10.1967 ▁ᏣᎧᏛ -10.1969 ▁ᎦᏰᏌᏛ -10.197 ▁ᎬᏩᎷᏤᎴ -10.1971 ▁ᏗᏓᏁᎸ -10.1977 ▁ᏂᏣᏛᏅ -10.198 ▁ᎤᏰᎸᏁ -10.1982 ᏎᏗ -10.1985 ▁ᎤᎿᎥ -10.1985 ▁ᏗᏥᏰᎸ -10.1995 ▁ᏥᏙᎬ -10.1996 ▁ᏫᏚᏯᏅᎲ -10.1998 ᏍᏗᏍᎨᏍᏗ -10.1999 ▁ᎠᏍᏚᎲ -10.2004 ᏅᏓ -10.201 ▁ᎬᏩᎷᏤᎸ -10.2011 ▁ᏂᎪ -10.2014 ▁ᎠᏂᏃᎯᎵᏙ -10.2023 ▁ᏗᏄᎪᏗᏍᎩ -10.2025 ▁ᎢᎬᏩᏁᏗ -10.2025 ▁ᎠᏥᎢᏍᏗ -10.2026 ▁ᏱᏙ -10.2033 ▁ᎠᏁᎵᏍᎬ -10.2033 ᏔᏅᎢ -10.204 ▁ᏚᏅᏎ -10.204 ▁ᎠᏰᎲ -10.2044 ▁ᏂᏓᎪᏔᏅᎾ -10.2049 ▁ᎡᎩᎵᏈ -10.2049 ▁ᎢᏗᏍᏓᏓᎳ -10.2049 ▁ᎢᏯᎬᏁᎸᎯ -10.2049 ▁ᏌᏬᏚ -10.2049 ▁Chap -10.2049 ▁ᎠᏂᏈᎵᏍᏗ -10.2049 ▁ᏌᏱᎳ -10.2049 ▁ᎠᏰᎳᏍᏘ -10.2049 ▁ᏚᎧᏔᏍᏔᏁᎢ -10.2049 ▁ᏣᎦᏟᎶᏍᏔᏅᎯ -10.2049 ▁ᏥᏍᎪᏴ -10.2049 ▁ᏅᏓᎦᏥᏴᏁᎵ -10.2049 ▁ᏧᏓᏕᏍᏗᏱ -10.2049 ▁ᎠᏗᏒᏍᏗ -10.2049 ▁ᎮᎼ -10.2049 ▁ᎤᏲᏍᏛᏉ -10.2049 ▁ᎠᏕᏒᎲᏍᎩ -10.2049 ▁ᎢᏆᎻ -10.2049 ▁ᏗᏥᎦᏙᎵ -10.205 ▁ᏧᎾᏓᏅᏙ -10.205 ▁ᎤᏂᏁᎫᏥᏛ -10.205 ▁ᏥᏂᏣᏛᏅ -10.205 ▁ᎤᎳᎨᏯᏛᏤᎢ -10.2051 ▁ᎤᎩᏓᏟᏅᏯ -10.2051 ▁ᎢᏳᏛᏁᎸᎯ -10.2051 ▁ᏌᏚ -10.2051 ▁ᎠᎹᏳᎸᏓ -10.2051 ▁ᏱᏥᏍᎦᎢᎮᏍᏗ -10.2052 ▁ᎠᎩᎬᏫᏳᎯ -10.2052 ▁ᏣᏤᎵᎪᎯ -10.2052 ▁ᏏᎵᏱ -10.2052 ▁ᎦᎫᏍᏛᏗ -10.2052 ▁ᏤᏙᎲ -10.2053 ▁ᎤᏍᏚᎢᏒ -10.2053 ▁ᎤᏣᏔ -10.2054 ▁ᏭᎷᏣ -10.2054 ▁ᏇᏕᎵ -10.2054 ▁ᏗᎨᏥᎾᏌᎢ -10.2054 ▁ᎠᏂᏃᎮᏍᎩ -10.2054 ▁ᎧᏁᏍᎪ -10.2054 ▁ᏥᏲᏎᎸ -10.2055 ▁ᎠᏉᎳ -10.2055 ▁ᎠᎦᏔᎾᎢ -10.2055 ▁ᎤᎾᏗᏍᎦᎶᏗ -10.2055 ▁ᏓᎬᏔᏂ -10.2056 ▁ᎣᎩᏙᏓ -10.2056 ▁ᎬᏩᏍᏓᏩᏛᏒᎩ -10.2057 ▁ᏗᎦᏅᏍᎨᏂ -10.2057 ▁ᎬᎵᏍᏆᏗᏍᎩ -10.2057 ▁ᏗᎬᏩᎸᏌᏛ -10.2057 ▁ᎢᏳᏩᏁᎯ -10.2058 ▁ᏥᏥᎦᏔᎭ -10.2058 ▁ᎠᎵᏍᎪᎸᏓᏁᏗ -10.2058 ▁ᏚᏃᎡᎢ -10.2058 ▁ᏯᎦᏔᎭ -10.2059 ▁ᎠᏃᏍᏛ -10.206 ▁ᏓᎨᏏ -10.2061 ▁ᎾᏥᎾᏝᎥᎾ -10.2061 ▁ᎤᏁᏢᏔᏅᎯ -10.2061 ▁ᎾᎨ -10.2061 ᎬᏫᏳᏒ -10.2062 ▁ᎠᏂᏅᎢ -10.2062 ▁ᏦᎳᏂ -10.2062 ▁ᏧᏂᎦᏴᎵᎨ -10.2063 ▁ᏭᎶᎯᏍᏗᏱ -10.2064 ▁ᏳᏩᏁᎦ -10.2065 ▁ᎢᏣᏠᎾᏍᏗ -10.2065 ▁ᎪᏪᎳᏅᎯ -10.2067 ▁ᏦᏈ -10.2069 ▁ᎬᏂᎨᏒᎢᏳ -10.2071 ▁ᏥᏂᎦᏪᎭ -10.2072 ▁ᏦᎳ -10.2072 ᎦᏅᎯᏓ -10.2073 ▁ᎠᏥᏃᎮᏍᎬᎢ -10.2076 ▁ᏂᎦᏅᎯᏒᎩ -10.2081 ▁ᏧᏁᎬ -10.2081 ▁ᏂᏚᏍᏛ -10.2085 ▁ᎤᏬᏢᏅᎩ -10.2091 ▁ᎤᏢᎩ -10.2092 ▁ᎢᏳᏩ -10.2095 ▁ᎤᏅᏏᏙᎯ -10.2096 ▁ᎡᏉᏗᏱ -10.2096 ▁ᏕᏍᎩ -10.2096 ▁ᎤᏓᏅᏖᎸᎯ -10.2097 ▁ᎤᏕᏁᎸᎯ -10.2105 ᎾᏰᏍᎬᎾ -10.2105 ᎸᏉᏗ -10.2116 ▁ᎡᎳᏗᏢ -10.2117 ▁ᏓᏂᏁᎸᎢ -10.2119 ▁ᎠᎢᏒᎢ -10.2121 ▁ᎬᏂᏳ -10.2131 ▁ᎤᏍᎦᏅᏨᎯ -10.2131 ᎨᏳᏗ -10.2132 ᏏᏗᏒ -10.2133 ᏳᎯ -10.2134 ▁ᏧᏬᏚᎯ -10.2138 ▁ᎦᏅᎯᏓ -10.2139 ▁ᎠᎩᏍᏗᏱ -10.215 ▁ᎤᎿᎥᎢ -10.2151 ▁ᎨᎳᏍᏗ -10.2154 ▁ᎤᏄᏢ -10.216 ᏓᎵ -10.2163 ▁ᏤᏆ -10.2165 ▁ᏕᏡᎬᎢ -10.2174 ᏗᏍᎬᎢ -10.2183 ᏑᏰᏛ -10.2184 ▁ᎤᎾᏛᎦᏅᎯ -10.2197 ▁ᏥᎨ -10.2198 ▁ᎾᏆ -10.2201 ▁ᎤᎾᏛ -10.2204 ▁ᏕᏂ -10.2211 ▁ᏫᏍᎩ -10.2217 ᎡᎸᎯ -10.2226 ▁ᎠᎩᏰᎸ -10.2233 ᏅᏗ -10.2233 ▁ᎠᏆᏓᏅᏙᎩ -10.2234 ▁ᎦᏙᎬᎩ -10.2238 ᏄᎪᏫᏒᎩ -10.2242 ᏁᏃ -10.2248 ▁ᏂᎬᏁᎲ -10.2258 ▁ᎾᏛᏁᎲ -10.2259 ᏰᎯ -10.2259 ᏙᏓᏆᏓ -10.226 ᏙᏢᏅ -10.2265 ᏕᎶᎰᎯᏍᏗ -10.2267 ▁ᎤᏂᏍᎦᏅᏨᎢ -10.227 ᏔᏅᎾ -10.2273 ▁ᎤᎷᏤᎢ -10.2287 ▁ᏚᎦ -10.2287 ▁ᎤᏚ -10.2294 ▁ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ -10.2306 ▁ᏕᎬ -10.2311 ▁ᎤᏯᏅ -10.2312 ᏂᏓᏍᏗᏱ -10.2315 ▁ᎠᎭ -10.233 ᎴᏅ -10.2331 ᏔᏲᏏ -10.2343 ▁ᎠᏒᎩ -10.2352 ▁ᎢᏒ -10.2357 ▁ᎬᏯ -10.2358 ᏤᎸ -10.2372 ▁ᏦᎯᏳᏒ -10.238 ᏦᏢᏗ -10.2382 id -10.2387 ᏁᏤᎴ -10.2389 ᎦᏙ -10.2392 ▁ᏗᏨ -10.2396 ▁ᎠᎩᎪᎲ -10.241 ▁ᎤᏂᎲ -10.2411 ᏙᎴᎰᏏ -10.2451 ᎵᏏᏱ -10.2477 ▁ᎭᏩ -10.248 ▁ᎦᏲᎵ -10.2502 ᏉᏗ -10.2506 ▁ᏥᏙ -10.2511 ᏍᏔᏅᎯ -10.2522 ᎩᎳ -10.2528 l -10.2532 ᎧᎵᎢ -10.2535 ▁ᎢᏥᏰᎸ -10.254 ᏌᏁ -10.255 ᏂᎩᏛ -10.2561 ▁ᎠᏂᏫᎾ -10.2575 ᏲᎯᏍᏗ -10.2639 ▁ᎢᏏᎵᏱ -10.2645 ▁ᏫᎩ -10.2648 ▁ᎠᏰ -10.265 ᏅᏓᏓ -10.2656 ▁ᎠᎾᎵ -10.2694 ᏁᏤᏗ -10.2695 ᎪᎵᏰᏗ -10.2696 ᏛᏂ -10.2704 ▁Ꮗ -10.2712 ᎵᏍᏔᏁ -10.2715 ᏒᏃ -10.2728 ᎩᏓ -10.2736 ᏄᎦ -10.2739 ᎶᏨ -10.2742 ▁ᏥᏄ -10.2749 ▁ᎯᏍᎩᏁ -10.2754 ▁ᎠᎢᏒ -10.2754 ▁ᎠᎦᏔ -10.2759 ▁ᏂᎨ -10.2784 ᏥᏲᏏ -10.279 ᏁᏤᎸᎯ -10.2792 ▁ᎠᏋ -10.2794 ▁ᏚᎾᎴᏁ -10.2822 ▁ᎯᎦᏘᏏ -10.2839 ▁ᎭᎻ -10.2841 ᏕᏅ -10.2852 ᏗᏢ -10.2866 ᎪᏩᏘᎭ -10.2872 ᏬᏂᎯᏍᏗ -10.2886 ▁ᏚᎧᎿᏅ -10.2906 ▁ᎤᏂᏣᏛ -10.2912 ▁ᎣᎩᎾ -10.2926 ▁ᎾᎩ -10.2938 ᎬᎿ -10.2939 ▁ᎠᏔᎴᎦᏒ -10.2953 ▁ᎤᏃᏁᎴ -10.2955 ▁ᏕᎦᏚᏩᏗᏒ -10.2966 ▁ᎤᏂᎷᏤᏗ -10.2969 ▁ᏧᏩᎫᏔᏅᏒ -10.2969 ᎾᏄᎪᏫᏏ -10.297 ▁ᏓᏕᏲᎲᏍᎬ -10.2972 ▁ᏱᎨᏐ -10.2976 ▁ᏚᏬᎡ -10.2982 ▁ᎠᎦᏍᎦᏂ -10.2983 ▁ᎠᏚᎢᏍᏛ -10.2985 ▁ᎦᎸᏉ -10.2986 ▁ᎤᏰᎸᏅ -10.2986 ▁ᏓᏂᏁᎸ -10.299 ▁ᎠᏓᏙᎵᏍᏗ -10.2994 ᏃᎮᏍᎬᎢ -10.2995 ▁ᎤᎦᏔᎲᏒ -10.2998 ▁ᎣᎵᏩ -10.3003 ▁ᎤᎷᏤᎴ -10.3011 ▁ᎤᏬᏚ -10.3012 ▁ᏤᎮ -10.3015 ▁ᏕᎪᏪᎸ -10.3015 ▁ᎤᏛᏐᏅ -10.3016 ᏲᎯᏍᏔᏅ -10.3022 ▁ᎦᎴᏂ -10.3034 ᏯᏅᎲ -10.3041 ▁ᎦᏁᏥ -10.3043 ▁ᎤᏅᏎ -10.3046 ▁ᏩᎩ -10.3046 ᏓᎴᏅᏛ -10.3047 ᎰᎲᏍᏗ -10.3049 ▁ᎡᏂᎾᏯ -10.3049 ▁ᎢᏍᎦᎳᏗ -10.3049 ▁ᎥᏘᎣᎩ -10.3049 ▁ᎦᏌᏆᎸ -10.3049 ▁ᏑᏓᎳᏍᎪᎯ -10.3049 ▁ᏗᎫᏓᎸᏗᏱ -10.3049 ▁ᏤᎦᎳᏯ -10.3049 ▁ᎡᎹᏂᏓ -10.3049 ▁ᏧᏙᏓᏋᏓ -10.3049 ▁ᏧᏯᏖᏃᎯ -10.3049 ▁ᏯᏃᎩᏳ -10.3049 ▁ᏫᏚᎧᎿᏁ -10.3049 ▁ᎤᏯᏖᏃᎯ -10.3049 ▁ᏗᏍᏆᎨᏂ -10.3049 ▁ᎢᏤᎳᏗᏙᎮᏍᏗ -10.3049 ▁ᎬᏉᏎᎰ -10.3049 ▁ᏕᎨᏥᏰᎸᏔᏅᎩ -10.3049 ▁ᎤᎾᏢᏉᏗ -10.3049 ▁ᎻᎾᏌ -10.3049 ▁ᏂᏣᏪᏒ -10.3049 ▁ᎢᏳᏩᏂᏌᏅᎯ -10.3049 ▁ᏑᎾᏓᎴᎩ -10.3049 ▁ᎦᎶᎯᏍᏗᏳᎶᏗ -10.3049 ▁ᎡᏥᎸᏉᏓ -10.3049 ▁ᎤᏂᏃᎮᎴ -10.3049 ▁ᏅᏓᏳᎵᏍᏙᏗᏱ -10.3049 ▁ᎨᏣᏍᏓᏩᏗᏙᎯ -10.305 ▁ᏗᎧᎾᏩᏛᏍᏗ -10.305 ▁ᎠᎦᎵᏍᎬ -10.305 ▁ᏄᎵᏍᏔᎾ -10.305 ▁ᏍᎩᏄᏍᏛ -10.305 ▁ᎢᏲᏍᏛ -10.305 ▁ᎦᏌᎾᎵ -10.305 ▁ᏅᏓᎬᏁᎵ -10.305 ▁ᏱᏅᎦᎵᏍᏓ -10.305 ▁ᎪᏌᏂ -10.305 ▁ᏱᏚᏂ -10.3051 ▁ᎢᏳᏩᏂᎸ -10.3051 ▁ᎠᏂᏈᎷ -10.3051 ▁ᎤᎵᏍᏔᏴᏗ -10.3051 ▁ᎤᏰᎸᎮ -10.3052 ▁ᏑᏕᏘᏴᏛ -10.3052 ▁ᏄᎾᎵᏍᏔᏁ -10.3053 ▁ᏭᏴᎸ -10.3053 ▁ᎯᎨᏴ -10.3053 ▁ᏗᏓᎴᎲᏍᎦ -10.3053 ▁ᎢᏳᏛᎿᏕᎩ -10.3054 ▁ᎢᎧᏁᏨᎯ -10.3054 ᏍᎦᎢᎲᎾ -10.3054 ▁ᏗᏓᏂᏐᏗᏱ -10.3054 ▁ᏓᏓᎶᏂ -10.3055 ▁ᏫᏨᎷᏤᏗᏱ -10.3055 ᎸᏉᏕᏍᏗ -10.3055 ▁ᎤᏂᎷᎯᏍᏗᏱ -10.3056 ▁ᎤᎵᏠᏯᏍᏕᏍᏗ -10.3056 ▁ᎠᏂᏦᎢ -10.3056 ▁ᏛᏍᏆᎸᎯ -10.3057 ▁ᎢᏣᎵᏍᏕᎸᏙᏗ -10.3058 ▁ᎢᏣᏛᎦᏅᎯ -10.3058 ▁ᏗᎦᎴᏂ -10.3058 ▁ᎠᏙᎴᎰᎯᏍᏙᏗ -10.3059 ▁ᎤᏂᎩᏍᏗ -10.3059 ▁ᎤᏛᎪᏗᏱ -10.306 ▁ᎢᏳᏩᏁᎸᎯ -10.306 ▁ᎠᎩᏅᏏᏛ -10.306 ▁ᏭᏂᎶᎯᏍᏗᏱ -10.306 ▁ᎤᏪᎵᏍᏗ -10.3061 ▁ᎤᏓᏙᎵᏍᏓᏁᎴᎢ -10.3061 ▁ᎢᏣᏓᏡᎬ -10.3061 ▁ᎾᏂᎦᏔᎲᎾ -10.3062 ▁ᎤᏁᎷᏅᎩ -10.3062 ▁ᎧᏃᎮᏓ -10.3063 ▁ᎤᏁᏍᏓᎳ -10.3063 ▁ᎤᏓᏙᎵᏣᏘᏳ -10.3063 ▁ᏦᏓᎸ -10.3064 ▁ᎤᏪᏙᎵᏍᏗ -10.3065 ▁ᎬᏩᏔᏲᏎᎴ -10.3066 ▁ᎢᎨᎬᏁᏗ -10.3067 ▁ᏙᏓᏳ -10.3068 ▁ᎾᎩᏪᏒᎩ -10.3068 ▁ᏂᎦᎵᏍᏗᏍᎨᏍᏗ -10.3069 ▁ᎤᏂᏇᏓᎸᎢ -10.307 ▁ᎪᏢᏅ -10.3072 ▁ᎠᎦᏍᎬ -10.3072 ▁ᏥᏍᏆᏯ -10.3072 ▁ᎤᏂᏁᎫ -10.3075 ▁ᏗᎦᎶᏗ -10.3077 ᎦᏴᎵᎨ -10.3079 ▁ᏙᎩᎾ -10.3083 ▁ᎤᎾᏕᏅᎯ -10.3085 ▁ᎤᏂᏃᎮᎸᎯ -10.3087 ▁ᏂᎬᏁᎭ -10.3088 ▁ᎤᎵᏬᏨᎯ -10.309 ▁ᎦᏁᎳ -10.309 ▁ᏴᎨᏥ -10.309 ▁ᎠᏂᏁᎵ -10.3092 ▁ᏚᏂᏅᏎ -10.3093 ▁ᏚᏁᏤᎸᎩ -10.3093 ▁ᏙᏧᎾᏓᏅᏛᎢ -10.3093 ▁ᎭᎴ -10.3095 ▁ᎢᏳᏛᏁᏗᏱ -10.3095 ▁ᎤᏪᏅᏍᏗᏱ -10.3096 ▁ᎤᏓᎴᏅᏛ -10.3099 ▁ᎤᏓᏑᏯ -10.3099 ▁ᎤᏰᎸᎯ -10.31 ▁ᎤᎾᎵᏍᏓᏴᏗᏱ -10.3102 ▁ᏤᎲᎩ -10.3102 ▁ᏄᎾᏛᏁᎴᎢ -10.3102 ▁ᎠᏆᏓᏅᏛ -10.3103 ▁ᏫᏚᏯᏅᎲᎩ -10.3107 ▁ᎣᎬᏒ -10.311 ▁ᎾᎦᏔᎲᎾ -10.3113 ᎦᏔᎯ -10.3113 ▁ᎤᏪᏅᏒᎩ -10.3115 ▁ᏚᏌᎳᏓᏁ -10.3117 ▁ᎤᏪᏙᎸᎩ -10.3118 ▁ᎾᏂᏪᏍᎬᎢ -10.3118 ▁ᎠᏥᎸᎨᎳᏍᏗᏱ -10.3121 ▁ᏓᏕᏲᎲᏍᎬᎢ -10.3126 ▁ᏧᏒᎯ -10.3127 ▁ᎨᎦᎫᏴᎡ -10.3128 ▁ᎧᏅᏑᎸ -10.3134 ▁ᎢᎾᎩ -10.3135 ᏏᏅᏓ -10.3136 ▁ᎤᏄᎪᏨᎩ -10.3137 ▁ᎠᏎᏍᎩᏂᏃᏅ -10.314 ▁ᎤᏰᎸᏁᎢ -10.3141 ▁ᎠᏨᏯᎢ -10.3142 ᏅᏃ -10.3145 ▁ᏩᎾ -10.3148 ▁ᎤᏂᏰ -10.3148 ᏓᏂ -10.3148 ▁ᏕᎳ -10.3159 ᏄᎪᏩ -10.318 ▁ᎤᏂᏰᎸᏁ -10.3182 ▁ᎠᏫᏍᎩ -10.3189 ▁ᎧᎪ -10.319 ▁ᎠᏤᎵᏍᏛᎢ -10.3199 ᏍᏔᏁ -10.3237 ▁ᏧᏙ -10.3238 ▁ᎤᏥᎸᏒ -10.324 ᏍᏛᎾ -10.3252 ᏁᎸᎾ -10.3255 ▁ᏄᏩᏁᎴᎢ -10.3267 ▁ᎦᏬᏂᏍᎬᎢ -10.3275 ▁ᎤᎶᎩᎸᎢ -10.3283 ᏅᏍᏗᏱ -10.3289 ᏓᏱᎵ -10.3296 ▁ᎣᎬ -10.3297 ▁ᎾᏋᏁᎸ -10.3316 ᏁᎮ -10.332 ▁ᏗᎦᏅᏌᏗ -10.3321 ▁ᎦᏰᏥ -10.3325 ᎨᏛ -10.3326 ᏆᎵ -10.3327 ▁ᏕᎪ -10.3329 ▁ᎠᏉ -10.3329 ᏲᎯ -10.3329 ▁ᏗᎪᏪᎶᏗ -10.3337 ▁ᏧᏬ -10.3338 ▁ᎤᎴᏁ -10.3338 ᎦᏓᏁ -10.3342 ▁ᏱᏏ -10.3367 ▁ᏕᎭ -10.337 ᎢᏴ -10.3389 ᏅᏏᏓᏍᏗ -10.3392 ▁ᎤᎧᏛᎢ -10.3406 ᎰᎵ -10.3428 ᏍᏓᏴ -10.3434 ᎦᏔᎰ -10.3444 ▁ᎤᎲᎢ -10.346 ▁ᏂᏕᎬᏁ -10.3475 ᏏᏆ -10.3476 ᏁᏆ -10.3482 ▁ᎩᎶᎢ -10.3501 ᎡᎸᎩ -10.3504 ▁ᎠᏲ -10.3514 ᏣᏛᏁᎯ -10.3516 ᏫᏍᏗ -10.353 ᏓᎳ -10.3533 ᏂᏌᏁ -10.3535 ᎾᎥ -10.3547 ▁ᎦᏃ -10.3549 ᏛᏙᏗ -10.3563 ▁ᏄᎵᏍᏔᏁᎮ -10.3568 ▁ᏱᏙᎦ -10.3577 ᏍᏆᏙᏅ -10.3579 ᏤᎵᎦ -10.3581 ▁ᏰᎵᏍᎨ -10.3583 ᎠᏈ -10.3588 ▁ᎢᎯ -10.3593 ᏥᎪᏩᏛ -10.3607 ▁ᎣᎩᏂ -10.3611 ᏗᏏ -10.3617 ▁ᎢᏣᏓᏅᏘ -10.3622 ᎦᏐᎯ -10.3639 ᏁᎮᎢ -10.3648 ▁ᎤᎲ -10.3653 ▁ᎢᎬᏁ -10.3654 ᎵᏯ -10.3657 ᏙᎮᏍᏗ -10.3681 ᎵᎪ -10.3687 ▁ᎩᎳᎯ -10.3699 ᎸᏉᏙᏗᏱ -10.3704 ᎾᏄᎪᏨᎯ -10.3718 ᎷᏣ -10.3731 ▁ᎡᏥᏁᏗ -10.3734 ▁ᎦᏅ -10.3736 ▁ᎤᎾᏛᎦᏁ -10.3739 ▁ᎢᎳ -10.3761 ᏍᏓᏩᏗᏙᎯ -10.3767 ᎪᎵᏰᎡ -10.3768 ᎯᏫ -10.3775 ▁Ꮾ -10.3791 ▁ᎤᎶᏒ -10.3791 ▁ᎤᏲᎱᏎ -10.38 ▁Ꮉ -10.3802 ᏰᏂ -10.3812 ▁ᎤᎶ -10.3812 ᏙᎸ -10.3814 ᏍᎦᎩ -10.3836 ᏅᏓᏗᏍᏙᏗ -10.3846 ▁ᏲᎩ -10.3849 ▁ᏥᎾ -10.3868 ▁ᏗᎾᏓ -10.3877 ᏍᏔᏱ -10.3904 ▁ᎠᏂᏐᎢᏃ -10.3914 ▁ᏥᏂᎦᏪ -10.3933 ▁ᏄᏪ -10.3938 ▁ᎾᎿᏉ -10.3959 ▁ᎠᏓᏅᏖᎵᏙ -10.3959 ᎨᏂ -10.3963 ▁ᏥᏂ -10.3964 ᏏᏁ -10.3966 ᎩᎡᎸ -10.3992 ▁ᎠᏍᎪᎯᏃ -10.4 ▁ᏫᏓᏂ -10.4002 ᎡᎴᎢ -10.4026 ▁ᏄᏂᏪᏒ -10.4026 ᏠᏱ -10.4028 ▁ᎪᏢᏒ -10.403 ᎠᏎ -10.4031 ᏰᎭ -10.4033 ▁ᏱᏗᎦ -10.4033 ᏍᏕ -10.4038 ▁ᎾᎬᏁᎸ -10.4039 ▁ᎾᏂᏪᏍᎬ -10.4042 ▁ᏥᏁᎸ -10.4046 ▁ᏣᏓ -10.4046 ᏗᏒ -10.4048 ▁ᏂᎦᎵᏍᏗᏍᎨ -10.4058 ᏎᎴ -10.4059 ᏗᏂᏅᏌᏗ -10.4062 ᎭᏕᏬ -10.4065 ▁ᎣᏓᏅᏛ -10.4065 ▁ᎤᏲᎯᏍᏔᏁ -10.407 ᎨᎵᎠ -10.4073 ᎪᎱᏍᏗ -10.4074 ᎠᏕᎸ -10.4076 ᎧᎵᏨᎯ -10.4081 ᏗᎦᏘᏯ -10.4084 ᎠᎩᎾ -10.4085 ▁ᎯᏰᎸ -10.4088 ▁ᎡᏙᎮ -10.4089 ▁ᎠᏕ -10.4089 ▁ᏧᏓᏅᏛ -10.409 ▁ᏕᎤᎴᏔᏅ -10.4091 ▁ᏚᏂᎸᏫᏍᏓᏁᎸ -10.4094 ▁ᎤᏁᎦᎸ -10.411 ᏠᎠᏏ -10.4112 ▁ᎠᏓᏁᏣᏍᏚᎶ -10.4112 ▁ᏧᎾᎴᎯᏐ -10.4113 ᎶᏐᏅ -10.4129 ▁ᎤᎾᎵᎮᎵᏤ -10.4131 ▁ᎢᏙᎻ -10.4133 ▁ᏏᏓᏁᎸ -10.4135 ▁ᏅᏲ -10.4136 ▁ᏧᏂᎳᏫᎢᏍᏗ -10.4137 ▁ᎠᏥᏍᏕᎸᏗ -10.4138 ᎵᏍᏗᏱ -10.4139 ▁ᎠᏲᎱᏒ -10.4141 ▁ᏣᎾᏫ -10.4143 ▁ᎤᎾᏕᏅ -10.4146 ▁ᏱᏓᏂ -10.4148 ᎶᎯᏍᏗᏱ -10.4149 ᏍᏕᎸᎯ -10.4151 ᎥᎩ -10.4153 ▁ᏗᎪᏪᎵ -10.4157 ᏲᎢᏴ -10.4157 ᎭᏄᎸᎯ -10.4158 ᏍᏆᏂᎪᏙᏗᏱ -10.4159 rs -10.4159 ▁Philadelphia -10.416 ▁ᎠᏓᏪᎳᎩᏍᎩ -10.416 ▁ᏐᎵᎹᏅ -10.416 ▁ᏕᏦᎯᏳᏎᏍᏗ -10.416 ▁ᏚᏍᏆᎸᏔᏁ -10.416 ▁ᏱᏄᎵᏍᏔᎾ -10.416 ▁ᏆᎳᏆ -10.416 ▁ᏗᎦᏒᏍᏔᏅ -10.416 ▁ᎢᏦᎯᏳᎯ -10.416 ▁ᏇᏚᎡᎵ -10.416 ▁ᎤᏣᎴᏓ -10.416 ▁ᏗᎾᏕᏲᎲᏍᎩ -10.416 ▁ᏧᎴᎯᏌᏅᎯ -10.416 ▁ᎧᏂᎵᏯ -10.416 ▁ᏗᏇᏅᏒ -10.416 ▁ᏧᏴᏨ -10.416 ▁ᎤᏬᏓᎸ -10.416 ▁ᏚᎧᎿᏁ -10.416 ▁ᏓᏳᏂᎶᏒ -10.416 ▁ᎠᏚᎸᏗ -10.416 ▁ᎤᏓᏅᎵᏰᎥ -10.416 ▁ᎢᏗᏅᏁ -10.416 ▁ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ -10.416 ▁ᎢᏥᏆᎵᏏ -10.416 ▁ᎬᏩᏠᏯᏍᏗ -10.4161 ▁ᎢᏧᎾᏓᎳ -10.4161 ▁ᏗᏥᎸᏫᏍᏓᏁᏗᏱ -10.4161 ▁ᏗᎦᎸᏫᏍᏓᏁᎸᎯ -10.4161 ▁ᎤᏓᏑᏱ -10.4161 ▁ᏚᏛᏛᏁ -10.4161 ▁ᎨᏅᎢᏍᏗ -10.4161 ▁ᎡᏣᏂᎵ -10.4161 ▁ᏕᎪᏪᎵᏍᎬ -10.4161 ▁ᏗᏛᏓᏅᎯ -10.4161 ▁ᏗᎨᏥᎾᏝᎢ -10.4161 ▁ᎤᏒᎯᏰᏱ -10.4161 ▁ᎦᏓᎷᏯᏛ -10.4161 ▁ᎠᎾᏛᎩᏍᎩ -10.4162 ▁ᏗᎬᎪᏩᏛᏗ -10.4162 ▁ᎠᎩᎷᏥᎸ -10.4162 ▁ᏱᎪᎵᎦ -10.4162 ▁ᎠᏍᏆᏚᎸ -10.4163 ▁ᎠᏂᎴᏴᏍᎩ -10.4163 ▁ᎠᎵᎮᎵᎬ -10.4163 ▁ᎤᏂᎪᎮ -10.4163 ▁ᏧᏓᎴᏅᎲ -10.4163 ▁ᎤᎾᏓᏓᏍᎬ -10.4163 ▁ᏂᏣᏛᎦ -10.4163 ▁ᎬᏩᏲᎱᎯᏍᏗ -10.4163 ▁ᎾᏯᏛᎡᏍᏗ -10.4163 ▁ᎠᏄᎦᎸ -10.4164 ▁ᎦᏣᏃᏍ -10.4164 ▁ᏥᏕᎦ -10.4164 ▁ᎧᏴᏐᎵ -10.4164 ▁ᏚᏃᏢᏅᎩ -10.4164 ▁ᏗᎪᏑᎴᏗᏱ -10.4164 ▁ᏧᏴᏢ -10.4164 ▁ᎤᏓᎴᏨ -10.4164 ▁ᏧᎴᏔᏅᎯ -10.4164 ▁ᎤᏄᎪᎢᏍᏗ -10.4165 ▁ᏥᎣᎵ -10.4165 ▁ᎬᏆᏛᏁᏗᏱ -10.4165 ▁ᎠᏓᏍᏓᏩᏗᏙᎯ -10.4165 ▁ᏂᏥᎦᏔᎲᎾ -10.4166 ▁ᏀᎢᏳ -10.4166 ▁ᎥᏥᎪᎥᎩ -10.4166 ᎳᏏᏕᎾ -10.4166 ▁ᎤᎾᎵᏗᎩᏛ -10.4166 ▁ᎤᏬᏪᎳᏅᎯ -10.4167 ▁ᏚᎷᏫᏍᏔᏁᎲ -10.4167 ▁ᎢᏧᏕᏘᏴᏛ -10.4167 ▁ᎠᎹᎴᎩ -10.4167 ▁ᏔᎸᏗ -10.4167 ▁ᎤᏗᏔᎲ -10.4167 ▁ᎢᎩᏅᏟ -10.4168 ᏛᏅᎢᏍᏙᏗᏱ -10.4168 ▁ᏍᎩᎾᏝᎢ -10.4169 ▁ᎤᎬᏫᏳᏎᏍᏗ -10.417 ▁ᎦᏅᏙᏗ -10.417 ▁ᏧᎾᏄᏩᎢ -10.417 ▁ᏄᏩᏅ -10.4171 ▁ᎾᏁᎲᎾ -10.4171 ▁ᎤᏂᏰᎸᏒᎩ -10.4172 ▁ᎤᏕᏁᎢ -10.4172 ▁ᎢᏳᏓᎵᎭ -10.4174 ▁ᎠᎩᏰᎸᎲ -10.4174 ▁ᎤᎧᎭᏛ -10.4174 ▁ᏭᏂᏴᎴᎢ -10.4175 ▁ᏩᎩᎷᏨ -10.4177 ▁ᎤᎴᏫᏍᏔᏁ -10.4177 ᏥᎯᏍᏗ -10.4178 ▁ᎠᎵᏥᏙᎲᏍᎨ -10.4179 ▁ᎤᎾᏗᏅᏗ -10.418 ▁ᎡᏙᎭ -10.418 ▁ᎤᏌᎳᏓᏅ -10.4182 ▁ᎨᏥᏁᎸᎯ -10.4183 ▁ᎥᎩᏙᏉ -10.4184 ᏲᎯᏎᎸᎩ -10.4184 ▁ᎠᏟᏍᏛᎢ -10.4186 ▁ᎤᏬᎯᏳ -10.4187 ▁ᏭᏂᎶᏒᎩ -10.4187 ▁ᏅᏓᎬ -10.4188 ▁ᎤᏪᎧᏅᎩ -10.4188 ▁ᎤᏅᏙᏗᏱ -10.4189 ▁ᏗᏂᎦᏘᏯ -10.4189 ▁ᎤᏕᏗᏱ -10.419 ▁ᎾᏍᎦᎢᎲᎾ -10.4192 ▁ᏄᏂᏪᏎᎸᎩ -10.4193 ▁ᎾᏂᎡᎢ -10.4193 ▁ᎤᎵᏏᏂ -10.4194 ▁ᏧᏬᎸ -10.4194 ▁ᎢᏗᎦᏪᏍ -10.4196 ▁ᎠᎧᎵᏬᎯ -10.4197 ▁ᎤᏨᏉᏗ -10.4198 ▁ᎤᏪᏁᎢ -10.4203 ▁ᏗᏟᏍᏗ -10.4203 ▁ᎤᏢ -10.4203 ▁ᏗᎦᎵᏍᏙᏗᎭ -10.4203 ▁ᎤᎪᏩᏛᏗ -10.4204 ▁ᎤᏔᎾ -10.4205 ᎾᏄᎪᎢᏍᏗ -10.4206 ▁ᏐᏓᎻᏱ -10.4208 ▁ᎢᎩᏁᎸᎯ -10.4208 ▁ᏧᏁᎳ -10.421 ᏗᏍᎪᏂᎯ -10.4211 ▁ᏓᏳᏓᎴᏅᏓ -10.4219 ▁ᏯᎩᎭ -10.422 ▁ᎢᎦᏁᎳᏅᎯ -10.4229 ᏁᎬ -10.4229 ▁ᎢᏯᎬᏁᏗ -10.423 ▁ᎤᏯᏅᎯ -10.4232 ▁ᎦᏁᏌᎢᎯ -10.4234 ▁ᏚᏂᎸᏫᏍᏓᏁᎸᎢ -10.4237 ▁ᏗᏐᎢ -10.4239 ▁ᎡᏙᎮᎢ -10.4239 ▁ᎭᎾᏂ -10.424 ▁ᏥᎨᏥ -10.4243 ▁ᎤᎾᏛᎦᏁᎢ -10.4245 ▁ᏓᏈ -10.4247 ▁ᎤᏩᏛᎮᎢ -10.4247 ▁ᏍᎩᎨᏳ -10.4251 ᏂᏯ -10.4251 ▁ᏗᏍᎩ -10.4254 ▁ᎧᎸ -10.4256 ▁ᏭᎷᏨᎩ -10.4267 ▁ᎤᏯᎢ -10.4268 ▁ᎡᎵᏍᎨᎢ -10.427 ▁ᎤᏎᎵᏔᏅ -10.4272 ᎡᏗ -10.4273 ▁ᎠᏒᎭ -10.4274 ▁ᎥᎵ -10.4277 ᎭᏲᎲ -10.4278 ᏓᏍᏗ -10.428 ᎳᏁᎢ -10.4282 ▁ᎤᏓᏅᏖᎸᎢ -10.4283 on -10.4285 ▁ᏕᏥᎸᏫᏍᏓᏁᎲᎢ -10.4293 ▁ᎬᏙᏗᏱ -10.4295 ᎪᎵᏯ -10.43 ▁ᎤᏓᏅᏛᎢ -10.4301 ▁ᎤᏃᎮᎴ -10.4301 ▁ᏇᎵᏥ -10.4307 ▁ᎤᏓᏅᏎᎢ -10.4308 ▁ᏗᎬᏗ -10.4317 ▁ᏚᏁᎴᎢ -10.4319 ▁ᎾᎾᏛᏁᎲᎢ -10.4322 ▁ᎢᏦᎯᏳᏒᎢ -10.4332 ▁ᎦᏓᏅᏖᏍᎬᎢ -10.4348 ᏁᎰᎢ -10.435 ▁ᎤᏲᎴ -10.4351 ▁ᎢᏦ -10.4353 ᎦᏨ -10.4354 ▁ᎠᏍᎦᎾᎢ -10.4361 ▁ᎠᏁᎰ -10.4364 ▁ᏦᎾ -10.4365 ▁ᏚᏁᏤᎴᎢ -10.4374 ▁ᎡᎲᎩ -10.4379 ▁ᎡᎵᎩ -10.4381 ▁ᏧᎴ -10.4384 ▁ᏌᎵ -10.4393 ᏍᏛᏱ -10.4398 ᎿᎢ -10.4399 ᏲᎰᏎᎸ -10.4402 ▁ᎤᏅᏅ -10.4414 ▁ᎤᏪᏅᏎᎢ -10.4423 ▁ᏧᎾᏄᎪᏫᏎᏗ -10.4429 ▁ᎠᏍᏛᎢ -10.4435 ᏍᎪᏃ -10.4436 ▁ᏅᏓᏳᎾᎵᏍᎪᎸᏔ -10.444 ▁ᎤᏩᏂ -10.4446 ᏕᏗ -10.4449 ᎦᏯ -10.4452 ▁ᏗᎬᏩᏓᏂᎸᎢᏍ -10.4453 ▁ᎪᏍᏔ -10.4469 ▁ᎩᎵ -10.4472 ▁ᎤᎪᎲᎩ -10.4485 ▁ᎠᏓᏅᏖᏍᎬᎢ -10.4487 ▁ᎤᎾᏄᎪᏫᏒ -10.4494 ▁ᎤᏪᎷᏁᎢ -10.4498 ▁ᏗᏂᏩᎾᎦᎳ -10.4502 ᏳᎵ -10.452 ▁ᎢᏯᏂᎢ -10.4531 ▁ᎢᏣᏓ -10.4532 ▁ᎤᎾᏙᏓᏆᏍᎬᎢ -10.4534 ▁ᎦᏨ -10.4548 ▁ᎤᏂᎬ -10.4552 ▁ᏗᏂᏃ -10.4569 ▁ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ -10.4585 ᏙᎢ -10.4585 ᎴᏅᎯ -10.4586 ▁ᎠᏆᏓᏅᏖᏗ -10.4595 ▁ᎦᏚᏱ -10.4603 ▁ᎤᎩᎸ -10.4623 ᏓᏁᏟᏴᏛ -10.4623 ᎱᏍᏗ -10.4623 ᎲᏍᎦ -10.463 ᏎᎭ -10.464 ᎳᏏ -10.4644 ᏂᏫ -10.4649 ▁ᏚᏙ -10.4655 ▁ᏫᏚᎾ -10.466 ▁ᎤᏂᏩᏛᏗ -10.4661 ▁ᏙᏘ -10.4667 ▁Ꮮ -10.4691 ▁ᎠᏫᎾ -10.4712 ▁ᎬᏗᎭ -10.4716 ᏍᏆᏂᎪᏕᏍᏗ -10.4718 ᏁᏤᎵ -10.472 ᏢᏅ -10.4732 ▁ᏦᎦ -10.4751 ▁ᏗᏨᏂᏗ -10.4765 ▁ᎤᎾᏄᎪᏫᏎ -10.4769 ▁ᏣᏁ -10.4781 ᏥᏩᏛᎲ -10.4788 ▁ᏂᎦᎵᏍᏙᏗᏍᎨ -10.4793 ▁ᎤᎵᎮᎵᏤ -10.4796 ▁ᎦᏅᎨ -10.4799 ▁ᏚᏁᎸ -10.4807 ᎵᏍᎬ -10.4813 ▁ᎤᎬ -10.4818 ᏟᎶᏍᏙᏗ -10.482 ▁ᎠᎦᏕ -10.4822 ᎾᏄᎪᏫᏒᎯ -10.4826 ▁ᎧᏁᏉ -10.4828 ▁ᏗᎨᏣ -10.4829 ▁ᏧᏂᎵ -10.4837 ᎵᏍᏕᎸᏙᏗ -10.4844 ᏗᏍᎬᎾ -10.4846 ᎸᏓ -10.4854 ▁ᎢᏥᎩᏍᏗ -10.4857 ▁ᎠᏋᎭ -10.4878 ▁ᎠᎦᏘᏰ -10.4882 ▁ᎤᏁᎴ -10.4888 ᏏᏳ -10.4897 ▁ᏛᎩ -10.4907 ᎤᏅᏓᏕ -10.4912 ᏍᏕᎵᎭ -10.4928 ▁ᎥᏍᎩ -10.4931 ▁ᎤᏥᏃ -10.4939 ᎦᏙᎥᎯᏍᏗᏱ -10.4939 ▁ᎡᏣᎫᏴ -10.4939 ᎩᏍᎪ -10.4949 ▁ᎾᎦᏛ -10.4952 ▁Ꮏ -10.4964 ᏎᎸᎩ -10.4984 ▁ᏄᏅ -10.4999 ᎨᏍᏗᏗ -10.5003 ▁ᎤᏂᎸᏉᏗ -10.5016 ▁ᎢᏥᎲ -10.5019 ▁ᏛᏂ -10.5037 ▁ᏂᎯᏍᎪ -10.505 ▁ᎠᏲᎱᏍ -10.5052 ▁ᎡᎳᏪᏱ -10.5061 ᎢᏍᏔᏂ -10.5065 ▁ᏂᎬᏩ -10.5073 ᏚᎬ -10.5077 ᏁᏍᏗ -10.5105 ᏦᏅ -10.513 ▁ᏱᏫ -10.5142 ▁ᏣᎩ -10.5142 ▁ᎤᏂᏗ -10.5152 ▁ᏣᏆ -10.5153 ᏁᏟᏴᏍᏗ -10.5166 ᎬᏫᏳᎯ -10.5172 ᏂᎬᎦ -10.5172 ᏇᏓᎵ -10.5174 ▁ᎤᎧᏔ -10.5177 ▁ᎦᏗ -10.5191 ▁ᎠᏗᏍᎬ -10.5206 ᏲᎪ -10.521 ᎷᏨ -10.5214 ▁ᏁᎵᏍᎬ -10.5217 ᏎᎸᎯ -10.5227 ▁ᎣᏍᏗ -10.5227 ᎪᏩᏛ -10.5236 h -10.5243 ᎥᎦ -10.5247 ᎴᏅᏛ -10.5258 ᏰᏌᏛ -10.527 ▁ᎤᏬᏂᏒ -10.5273 ▁ᏂᏚᏪᏎᎸ -10.528 ▁ᎯᎠᏉ -10.5281 ᎦᏔ -10.5298 ▁ᎾᏍ -10.5305 ▁ᎠᏲᏟ -10.5308 ▁ᏓᎵᏍᏗᎳᏁᎬ -10.5314 r -10.5323 ᏥᎨᏳᎢ -10.5323 ▁ᎤᏬᎴ -10.5324 ▁ᏗᎦᏅᏬ -10.5324 ▁ᎤᏁᎵᏎ -10.5324 ▁ᎧᎸᎬ -10.5325 ▁ᎢᏕᎲ -10.5327 ▁ᏓᏂᎳᏫᎥ -10.533 ▁ᏗᏥᎦᏴᎵᎨ -10.533 ▁ᏓᏟᎶᏍᏛ -10.5331 ▁ᎤᏗᏛᎮ -10.5331 ▁ᎤᏚᎢᏍᏔᏅ -10.5333 ▁ᎢᎩᏍᎦᏅᏨ -10.5333 ▁ᎤᏬᏎᎴ -10.5333 ▁ᎤᏍᏓᎦᎸ -10.5334 ᎠᎹ -10.5335 ᏔᎾ -10.5337 ▁ᎠᏂᏙᎾᎡ -10.5338 ▁ᏚᎴᎯᏌᏅ -10.534 ▁ᎤᏪᎧᏁᎴ -10.5343 ▁ᎠᏂᎦᏴᎵᎨ -10.5348 ▁ᏓᏂᎧᏅ -10.535 ▁ᏧᎦᏴᎵᎨ -10.5352 ▁ᎤᏂᎦᏙᎥᏒ -10.5354 ᏘᏰ -10.5355 ᎵᏬᏨ -10.5355 ᏯᎠ -10.5355 ᎤᏍᏆᏂᎩᏗ -10.5356 ᏂᎦᏓ -10.5356 ᎬᏫᏳᏌᏕᎩ -10.5357 ▁ᏚᏁᏤᎸ -10.5368 ᎧᎵᏬᎯ -10.5368 ▁ᏳᏫ -10.537 ▁ᎤᏂᏴ -10.5372 ▁ᎤᏂᎩᏒ -10.5373 ▁ᎢᏣᏚᎵ -10.5375 ᏟᏂᎩᏓ -10.5376 ▁ᎠᏁᎮ -10.5376 ▁ᎤᏂᏍᏆᏂᎪᏙᏗ -10.5387 ▁ᎪᎹᎵ -10.5387 ▁ᏚᎷᏫᏍᏔᏁ -10.5388 ▁ᏣᎨ -10.5389 ▁ᎢᏥᏍᏆᏂᎪᏙᏗ -10.5391 ▁ᎢᏳᏅᏁᏗ -10.5395 ▁ᎤᎾᏅᏗ -10.5396 ᏔᏲᏎᎸᎩ -10.5396 ᎴᎯᏌᏅ -10.5397 ▁ᎨᏥᏁᏗ -10.5397 ▁ᎤᏩᏛᎮ -10.5399 ▁ᎤᎾᏅᏅ -10.5401 ᏴᏐᎵ -10.5406 ᎾᏓᎴᎩ -10.5409 ▁ᎡᏉᏄᎶᏗ -10.541 ▁ᎤᎭᎸᏂᎯ -10.541 ▁ᎤᏂᏚᏯᏍᏗ -10.541 ▁ᎤᏓᏏᏂᏕᎾ -10.541 ▁ᎤᏪᏲᏓᏛ -10.541 ▁ᏅᏓᎬᏴᏁᎵ -10.541 ▁ᏈᏯᏏᏆ -10.541 ▁ᏕᎨᎦᏨᏍᏗᏍᎬ -10.541 ▁ᏗᎾᏙᏂᏍᎩ -10.541 ▁ᏦᎩᎸᏫᏍᏓᏁᎯ -10.541 ᎦᏌᏯᏍᏕᏍᏗ -10.541 ▁ᎢᏰᏆ -10.541 ▁ᎦᎵᏦᏙᏙᏗ -10.541 ▁ᏆᎻᏆᏂ -10.541 ▁ᏚᏩᏂᎦᏢ -10.541 ▁ᎠᏣᏪᏐᎸᏍᏙᏗᏱ -10.541 ▁ᎯᎧᏅᎭ -10.541 ▁ᏧᏣᏲᏍ -10.541 ▁ᎯᎦᏙᎵ -10.541 ▁ᎠᎵᎮᎵᎨ -10.541 ▁ᎤᏓᏛᏛᏁ -10.541 ▁ᏧᎦᏃᏮ -10.541 ▁ᏂᏚᎾᏓᏪᏎᎸᎩ -10.541 ▁ᏫᏂᎦᎵᏍᏙᏓ -10.541 ▁ᏗᏉᏰᏂ -10.541 ▁ᏗᎾᏓᏂᏱᏍᎩ -10.541 ▁ᏗᎦᏃᏣᏟ -10.541 ▁ᎾᏂᎳᏍᏓᎸ -10.541 ▁ᏧᏙᎢᏓ -10.541 ▁ᏗᏆᎳᏏᏕᏂ -10.541 ▁ᏄᏬᎯᏳᏒᎾ -10.541 ▁ᏅᏓᎪᎯᏥ -10.541 ▁ᏅᏃᎱᎶᏗ -10.541 ▁ᏅᏩᏙᎯ -10.541 ᏍᎦᎣᏅ -10.541 ▁ᎤᏬᏞ -10.541 ▁ᎤᏪᏚᎲ -10.541 ▁ᏧᏩᏂᎦᏝᏅ -10.541 ▁ᎦᏣᏄᎸ -10.541 ▁ᏕᏥᏲᎵᎸᎭ -10.541 ▁ᎬᏩᏕᏁᎸᎯ -10.541 ▁ᏌᎶᎵ -10.5411 ▁ᎤᏂᎬᎥᏍᎩ -10.5411 ▁ᎪᏒᏔᏅ -10.5411 ▁ᎤᏂᎸᏉᏔᏁ -10.5411 ▁ᏱᏄᎵᏍᏔᏅ -10.5411 ▁ᎲᏗᏍᎨᏍᏗ -10.5411 ᎥᏍᎨᏍᏗ -10.5411 ▁ᎰᏪᎸᎦ -10.5411 ▁ᏧᏓᏘᎾᎢ -10.5411 ▁ᏗᎧᏁᎢᏍᏗ -10.5411 ▁ᎪᏢᏗ -10.5411 ▁ᎤᎾᏓᏑᏰᏛ -10.5411 ▁ᎥᎩᏅᏟ -10.5411 ▁ᎢᏨᏍᏗᏰᏗᎭ -10.5411 ▁ᎦᏯᎴᏍᏗ -10.5412 ▁ᎢᎬᏪᏅᏛ -10.5412 ▁ᎠᏓᏍᏓᏴᏗ -10.5412 ▁ᏕᎪᏢᏩᏗᏒ -10.5412 ▁ᏧᏃᏩ -10.5412 ▁ᏅᏓᏳᏓᎴᏅᏛ -10.5412 ▁ᏂᏚᏅᏏᏴ -10.5413 ▁ᏗᎩᏅᏒ -10.5413 ▁ᏄᏂᎲᎾ -10.5413 ▁ᏗᏁᏙᎲ -10.5413 ▁ᎠᏂᎾᏁᏍᎬ -10.5413 ▁ᏄᏠᎾᏍᏛᎾ -10.5413 ▁ᎤᏢᏉᏗ -10.5413 ▁ᏌᏈ -10.5414 ▁ᏚᎦᏌᏛ -10.5414 ▁ᎠᏆᎵᏍᏓᏴᏗ -10.5414 ▁ᎠᏓᏠᏍᏗ -10.5414 ▁ᎠᎹᏳᎶᏗ -10.5415 ▁ᎢᏥᏪᏍᏗᏱ -10.5415 ᏃᎴ -10.5415 ▁ᎤᏂᏑᎸᏓ -10.5415 ▁ᎡᏣᎸᏉᏗᏳ -10.5415 ▁ᎢᎠ -10.5415 ▁ᎬᏩᏓᏍᏕᎸᏗ -10.5415 ▁ᏫᎨᏥᏲᎵᎭ -10.5415 ▁ᎠᏂᏙᎾᎢ -10.5416 ▁ᏙᏗᏣᏓᏅᏛᎢ -10.5416 ▁ᎠᏁᏢᏔᏅᎯ -10.5416 ᏅᎪᏤ -10.5416 ▁ᎬᏁᏍᏗ -10.5416 ▁ᏓᎭᏃᏫ -10.5416 ▁ᏚᏦᎯᏍᏛ -10.5417 ▁ᎤᏘᏴᎯ -10.5417 ▁ᎠᎾᏓᏙᎵᏍᏓᏁᎯ -10.5417 ▁ᎡᏃᏱ -10.5417 ᎿᏕᎩ -10.5417 ▁ᎠᏯᏖᎾ -10.5418 ▁ᏧᏙᏓᏆᏛ -10.5418 ▁ᎠᎬᎭᎸᏛ -10.5418 ▁ᎠᏆᏓᎵᎢ -10.5418 ▁ᎠᏓᏪᎳᎩᏍᎬ -10.5418 ▁ᎢᎧᏁᎢᏍᏗ -10.5419 ▁ᎯᏬᏂᏍᎬ -10.5419 ▁ᏫᎦᎶᎯᏍᏗ -10.5419 ▁ᎤᏃᏍᏛ -10.5419 ▁ᎦᏆᏘ -10.5419 ▁ᎤᎶᎯᏍᏗ -10.5419 ▁ᎤᏍᏗᎩᏛ -10.5419 ▁ᎤᏂᎵᏦᏩᏛ -10.5419 ▁ᎤᎩᎵᏲᏨ -10.5419 ▁ᏥᏅᏗᎦᎵᏍᏙᏗᎭ -10.542 ▁ᏓᎬᏁᎵ -10.542 ▁ᏱᏍᎦᎢᎮᏍᏗ -10.542 ▁ᎤᎾᏛᏁᎸᏗ -10.542 ▁ᎤᏂᏍᏆᏂᎪᏒᎩ -10.542 ᎦᏃᎱᎩᏍᎬ -10.5421 ▁ᎤᏰᎸᏎ -10.5423 ▁ᏗᏓᏬᏍᏗ -10.5423 ▁ᎬᏩᏃᏁᎴ -10.5424 ▁ᎠᎪᏎᎮᏍᏗ -10.5424 ▁ᎦᎵᎡᎵᎦ -10.5424 ▁ᎹᎾ -10.5424 ᎳᎩᏒ -10.5425 ▁ᎢᎪᎯ -10.5425 ▁ᎠᏂᏯᎢ -10.5426 ▁ᏕᎬᏗᏍᎬ -10.5427 ▁ᎤᏛᏅᎢᏍᏔᏁ -10.5427 ▁ᎢᏥᏁᏍᏗ -10.5427 ▁ᎮᏂᎵ -10.5429 ▁ᎠᏓᏰᎨᏍᏗ -10.543 ▁ᎠᏴᏤᏂ -10.543 ▁ᎠᎪᏔᏅᎯ -10.543 ▁ᎤᏃᎯᏳᏗᏱ -10.543 ▁ᎠᎦᎸᏓ -10.5431 ▁ᎠᏥᏅᏏᏛ -10.5431 ▁ᏳᏚᎵ -10.5431 ▁ᏧᎾᏄᎪᏫᏒᎯ -10.5432 ▁ᎩᎾᎵᎢ -10.5433 ▁ᎭᏂᏣ -10.5433 ▁ᏕᎧᏁᏤ -10.5434 ▁ᏮᏛ -10.5435 ▁ᎠᏂᎯᏗ -10.5437 ▁ᎤᎾᎦᏙᏍᏕᎢ -10.5438 ▁ᏯᏗᎭ -10.5438 ▁ᎧᏃᎩᏍᏗ -10.5439 ᎲᏍᎬᎾ -10.544 ▁ᏄᎾᎵᏍᏓᏁᎸ -10.544 ▁ᎤᎾᏕᏗᏱ -10.544 ▁ᎠᏲᏙᏗ -10.5441 ▁ᏗᎵᏍᎪᎸᏓᏁᎸᎯ -10.5442 ▁ᎠᏥᎳ -10.5443 ▁ᎤᏂᏩᏛᎮ -10.5443 ▁ᎠᏇᏅᏍᏗ -10.5444 ▁ᏥᏍᎪᎵ -10.5448 ᏰᎢᎵᏓᏍᏗ -10.5448 ᏓᏅᏖᏗ -10.5448 ▁ᏕᏥᏁᎸ -10.545 ▁ᎤᏂᎩᏍᏗᏱ -10.5452 ▁ᎤᏂᏁᎬ -10.5452 ▁ᏬᎩᎷᏨᎩ -10.5455 ▁ᎤᏗᏗᏢ -10.5456 ▁ᎤᏡᏗᏍᎩ -10.5456 ▁ᏙᏥ -10.5457 ▁ᎠᎬᏗᏍᎬᎢ -10.5458 ▁ᎡᎮᎾ -10.5459 ▁ᎧᏫ -10.546 ▁ᎠᎴᏂᏍᎩ -10.5462 ▁ᎠᏓᎴᏂᏍᎬ -10.5462 ᏓᏁᎮ -10.5463 ▁ᎠᏂᎩᏍᎬ -10.5463 ᏲᎾ -10.5464 ᎤᏲ -10.5465 ▁ᏧᏁᏤᎢ -10.5465 ▁ᎤᏪᏅᎩ -10.5465 ▁ᏗᏥᎾᏫᏱ -10.5465 ᏓᏴᎳᏛ -10.5465 ▁ᎦᏟᎮ -10.5465 ▁ᎠᎪᎵᏰᏗ -10.5466 ᏛᏁᎲ -10.5468 ▁Ꮺ -10.5474 ▁ᎤᏰᎸᎭ -10.5474 ᏯᏔᎮᏍᏗ -10.5476 ▁ᏗᎧᏂᎨ -10.5476 ▁ᏓᏍᏛᎢ -10.5477 ▁ᎤᏌᎯᎸᎢ -10.5477 ▁ᏗᏁᎯ -10.548 ▁ᏕᏣᎧ -10.548 ▁ᏎᏉ -10.5481 ▁ᏄᏛᏅᎢ -10.5481 ᏍᏛᎢ -10.5482 ▁ᎠᏥᏛᏙᏗ -10.5482 ▁ᎾᏆᏍᏛ -10.5483 ▁ᏓᏆᎧᎾᏅ -10.5486 ▁ᎠᏯᎥ -10.549 ᏯᏅ -10.549 ▁ᎢᎩᏍᎦᏅᏨᎢ -10.549 ▁ᎤᏂᏁᏨᎩ -10.5495 ▁ᎤᎾᏓᏅᏎ -10.5495 ▁ᎦᏓᏍᎬᎢ -10.5496 ▁ᎮᏓ -10.5497 ▁ᎤᎴᏅᎩ -10.5506 ▁ᏓᏤᎸ -10.5514 ▁ᏙᏯ -10.5517 ▁ᎦᏁᏟᏴᏍᏗ -10.5525 ▁ᏚᏩᏛᎮ -10.5531 ▁ᎦᏄᎸᏒ -10.5532 ▁ᏗᎪᏢ -10.5534 ▁ᏅᎵᏌᎵᏉ -10.5536 ▁ᎤᏂᎩᏎᎢ -10.5541 ᏂᏍᏙᏗ -10.5541 ▁ᎣᏒ -10.555 ▁ᎬᎨᏳᎢ -10.5559 ▁ᎤᏂᎪᎲᎯ -10.5562 ▁ᏏᎳ -10.5563 ▁ᏣᏚᎵᏍᎬ -10.5566 ᎠᏆ -10.5566 ᏐᏉ -10.557 ▁ᏮᏓ -10.557 ▁ᎤᏩᏔᏅ -10.5575 ᏃᎮᎸ -10.5576 ᏕᏯᏙᏔᏅᎩ -10.5576 ᎥᏏ -10.5583 ▁ᎠᏍᏘ -10.5584 ▁ᎤᏍᏉᏟ -10.5585 ▁ᎦᎬᏩ -10.5587 ▁ᏗᎦᏅ -10.5587 ▁ᎤᏁᎳ -10.5592 ᏥᎶᏏ -10.5593 ᏔᏂᏓ -10.5595 ▁ᎦᏅᏅᎢ -10.5597 ▁ᎪᏪᎸᎩ -10.5598 ▁ᎠᎵᏍᏆᏗᏍ -10.5603 ▁ᎤᏁᏒ -10.5608 ▁ᎤᎦᏃ -10.561 ▁ᏓᎶᏂᎨᎢ -10.562 ▁ᏨᏗ -10.5621 ▁ᏄᏓᎴᎯ -10.5644 ▁ᎡᏍᎦᏂ -10.5646 ▁ᎤᏬᎸᎢ -10.565 ᎧᏏ -10.5657 ▁ᎠᎦᏙ -10.5663 ▁ᎠᏂᏲ -10.5664 ᎪᎲ -10.5665 ᏙᎳ -10.5669 ▁ᎤᏭ -10.568 ᏦᏩᏛ -10.5688 ▁ᎠᏂᏍᎦᎾᎢ -10.5699 ᎸᏉᏛᎾ -10.5699 ▁ᏄᏍᏕᎢ -10.5701 ᎯᏳᎲᏍᎦ -10.5705 ▁ᎮᎯ -10.5709 ᎡᎵᏍᏗ -10.571 ▁ᏅᏗ -10.5711 ▁ᎠᏓᏙᎵᏍᏙᏗ -10.5711 ▁ᎤᎦᏛ -10.5715 ▁ᎤᏁᏤᎸᎢ -10.5716 ▁ᏄᎵᏍᏔᏂᏙᎸᎢ -10.572 ᎯᏯ -10.5722 ᎬᎾᎨ -10.5737 ▁ᏲᏥ -10.5737 ᏍᎦᏃᎳ -10.5737 ▁ᎥᏣ -10.5739 ▁ᏅᏩᏍᏛ -10.5742 ▁ᏚᏬ -10.5753 ▁ᎤᎾᏛᎦᏅᎩ -10.5753 ᎩᏍᏗᏱ -10.5754 ᎧᏅ -10.5754 ᎵᎹ -10.5757 ▁ᎲᎦ -10.5761 ▁ᎵᏏ -10.5762 ▁ᏕᏅ -10.5764 ᏍᏙᏗᏱ -10.5764 ▁ᎧᎵ -10.5779 ▁ᎢᏥᎩ -10.5785 ▁ᏱᎾ -10.5786 ᎾᏉ -10.5789 ss -10.579 ▁ᎤᏍᎪ -10.5792 ᏦᏰᏂ -10.5811 ▁ᎤᏩᏁ -10.5817 ᏯᏅᎲᎩ -10.5834 ▁ᎯᏁᎸ -10.5836 s -10.5838 Ꮮ -10.5846 ▁ᎢᏣᏟᏂᎬᏁ -10.5855 ▁ᎠᏂᏔᎵᎭ -10.5859 ▁ᏥᎪᎥ -10.5881 ᏙᎵᏨ -10.5891 ▁ᎬᏩᏍᏓᏩᏗ -10.5905 ▁ᏣᏛ -10.5906 ▁ᎤᎵᏍᏚᎢ -10.5909 ▁ᎾᏕᏘᏴ -10.5915 ▁ᎤᏗᏔᏍᏗ -10.5916 ᎴᏃ -10.5922 ▁ᏗᎲ -10.5923 ᏬᏂᏍᎬ -10.5931 ᏓᏅᏖᎴ -10.5938 ▁ᏙᏉ -10.5941 ᏥᏃᎮᏍᎩ -10.5944 ᏰᎸᎭ -10.5945 ᏫᏒ -10.5946 ▁ᎤᏂᎷᏤᎸ -10.5957 ▁ᏱᏕ -10.5965 ᏘᏃᎮᎸᎩ -10.5991 ▁ᏓᏲ -10.5993 ᏦᏢᏙᏗ -10.6004 ▁ᎠᏌ -10.6014 ᏰᎸᎲ -10.6016 ▁ᎠᎩᏰᎸᏅ -10.6018 ▁ᎨᎩ -10.6024 ᏰᎸᏗ -10.6034 ᏍᏚᎢᏒ -10.6038 ᎶᏏ -10.6058 ▁ᏑᎾᎴᏉ -10.6077 ᏏᎾᏌᏂ -10.6078 ᏴᎵ -10.6079 ▁ᎢᏣᎵᎮᎵ -10.6089 ▁ᏥᏁ -10.6105 ᏣᎵᏍᏙ -10.6106 ▁ᎤᏪᏅᏎᏃ -10.6114 ▁ᏍᎦ -10.6116 ▁ᏗᎫ -10.6127 ▁ᎤᏁᏅ -10.614 ᎦᏘᏴ -10.6156 ▁ᎬᏩᎪᏩᏛ -10.6156 ▁ᎠᏁᎶᎯ -10.616 ▁ᏧᏄᏬ -10.6167 ▁ᏚᏃ -10.6168 ▁ᎬᎾ -10.6168 ᏍᏔᏅᎭ -10.617 ᎯᏓ -10.6173 ▁ᏕᎦᏅ -10.6178 ▁ᎠᎦᏔᎮ -10.618 ▁ᎦᏂᏏ -10.618 ᎷᏤᎸ -10.6206 ᏁᏎᎢ -10.6206 ▁ᏱᏂᎬ -10.6214 ▁ᏚᏂᏲ -10.6221 ▁ᏗᎩᎦ -10.6236 ᏕᎬ -10.6251 ᎾᏄᎪᏩ -10.6259 ▁ᎤᎦ -10.6262 ᏁᎸᎭ -10.6262 ᎳᏕ -10.6265 ᏛᏁᎵ -10.6266 ᏍᏖ -10.6269 ▁ᏓᏂᎸ -10.6314 ▁ᎤᏂᎶᏒ -10.6322 ᏏᎳ -10.6329 ᎤᏍᏗ -10.6329 ▁ᏗᎩᏲᎯ -10.6335 Ꮽ -10.6349 ᏣᎵ -10.6354 Ꮶ -10.6357 ▁ᎯᏍᎩᎦᏚ -10.6369 ᏣᏅᎩ -10.6378 ᏙᎬ -10.6379 ▁ᏱᏍᎩ -10.6392 ▁ᎤᏰ -10.6394 ᏅᏓᏗᏍᏗ -10.6401 ᏛᏔᏂ -10.6419 ▁ᎤᏍᏆᏂᎪᏙᏗ -10.6432 ▁ᎤᏩᏒᏍᎩᏂ -10.6438 ▁ᎠᏓᏅ -10.644 ▁ᏫᏨᏲᏪᎳ -10.6448 ▁ᎾᏓ -10.6457 ▁ᏄᏬ -10.6462 ▁ᏥᎦᏔᎲ -10.6463 ▁ᏂᏨ -10.6467 ᏲᏍᏔᏂ -10.6473 ▁ᏓᎨᏣ -10.6477 Ꮛ -10.6479 ᏢᎢ -10.6479 ▁ᎤᎾᏕ -10.6484 ᎾᏄᎪᏫᏎᎸ -10.6494 ▁ᏂᎦᎥᎩ -10.6495 ▁ᏚᏂᎧᎵ -10.6507 ᎢᏍᏙᏗ -10.6521 ᏩᏛ -10.6535 ᏩᏒ -10.6543 ▁Ꮝ -10.6547 ▁ᏈᎵ -10.6552 ▁ᎢᏍᏓ -10.6554 ᏠᏍᏗ -10.6555 ᎵᏙᎴ -10.6564 ᎯᎯ -10.6584 ▁ᏕᏨ -10.6584 ▁ᏥᏚᏂ -10.6592 ᏥᎪᏩᏛᏗᏱ -10.6593 ᏆᏏ -10.6596 ᏘᏃᎸ -10.6597 ᏇᏅ -10.66 ᏍᏓᏱ -10.6606 ᏴᏗ -10.6606 ▁ᎤᎭ -10.6612 ᎸᏛ -10.663 ▁ᎤᎾᎩᎸ -10.6632 ᏁᏨ -10.6635 ᏨᏗ -10.666 ▁ᎤᏍᏗᏉ -10.6668 ᏍᏗᏍᎩ -10.6679 ᎪᏛ -10.6679 ▁ᎬᏩᏓ -10.6689 ᎴᎣ -10.6693 ▁ᎤᏃᎮᎸ -10.6701 ▁ᎢᏥᏠ -10.6706 ᏍᏚ -10.6718 ▁ᎤᎵᎮᎵᏨ -10.6726 ᏬᎥ -10.6734 ▁ᏂᏣᏛᏁᎲ -10.6735 d -10.674 ▁ᎤᏂᏙ -10.6741 ▁ᏚᎾᏄᎪᏫᏎᎴ -10.6745 ▁ᎦᎦᎶ -10.6749 ▁ᏓᏂᏙᎨ -10.6751 ᏧᏍᏆᏴᏍᏗ -10.6751 ▁ᏙᏓᏆᏍᎬ -10.6751 ᏗᎦᎵᎠᏅᎯᏛ -10.6754 ▁ᏤᎲ -10.6755 ▁ᏕᎦᎶᎨᏒ -10.6755 ᏑᎾᎴ -10.6757 ▁ᎤᏦᏱᎴ -10.676 ▁ᏭᏂᎶᏎ -10.6763 ▁ᎤᏌᎯᎸ -10.6765 ▁ᏕᏣᏓᏅᏛ -10.6765 ▁ᎧᏁᏌ -10.6767 ▁ᎠᏍᏆᎵᏍᎬ -10.6768 ▁ᎤᏓᏑᏴ -10.6769 ▁ᎤᎾᏄᎪᏫᏎᎴ -10.677 ▁ᏗᏧ -10.677 ᏍᏆᏂᎪᏔᏂ -10.6771 ▁ᏙᏓᎬ -10.6772 ᎢᎦ -10.6772 ▁ᏄᎾᏛᏁᎴ -10.6773 ᎤᏙᎯᏳᎯ -10.6774 ᎳᏁ -10.6774 ▁ᎠᏂᏍᎦᎢᎲ -10.6776 ᏔᏲᏍᏗ -10.6778 ▁ᎤᏂᏴᎮ -10.6779 ▁ᏂᎨᏎ -10.678 ▁ᎤᏪᏴ -10.678 ▁ᏧᎵᏏ -10.678 ᏠᏨ -10.678 ᏓᎴᏂᏍᎬ -10.6781 ᏍᏈᏯ -10.6782 ▁ᎠᎫ -10.6786 ▁ᏬᎩᎷᏨ -10.6786 ▁ᏂᎦᏅᎯᏒ -10.6788 ᎦᎸ -10.6789 ▁ᎦᎢᏒ -10.6793 ▁ᎡᎵᏍᎬ -10.6795 ᎬᏁᎵ -10.6795 ▁ᎾᏯᏛᎥ -10.6795 ▁ᏕᎦᎧᎲ -10.6801 ᏓᏂᎸᎢᏍᏗ -10.6802 ▁ᎤᏁᏝᏅ -10.6804 ᏰᎸ -10.6805 ▁ᏓᎩᎸᏫᏍᏓᏁᎲ -10.6806 ▁ᏚᏩᏂᎦᎸ -10.6807 ▁ᎤᏁᎢᏍᏔᏅ -10.6809 ᎸᏫᏍᏓᏁᏗ -10.681 ᎵᏍᏓᏴᏙᏗ -10.6811 ▁ᏧᏭᎪᏙᏗ -10.6812 ▁ᎤᎾᏂᎩᏒ -10.6816 ᎦᎵᎷᎨᏍᏗ -10.682 ▁ᎥᏞ -10.6823 ▁ᏂᎦᏛᏁᎲ -10.6823 ▁ᎪᎵᏍᏗ -10.683 ᎦᏘᏕᎯ -10.6832 ▁ᏧᏂᎸᏫᏍᏓᏁᏗ -10.6834 ▁ᎠᏩᎾᎦᎳ -10.6837 ▁ᏥᎦᏘᏏ -10.6838 ▁ᎠᎵᏏᎾᎯᏍᏔᏅᎯ -10.6838 ▁ᎠᏂᏰᎪᎩ -10.6838 ▁ᎠᏲᏓᏌᎲ -10.6838 ▁ᎤᎾᏗᏍᎦᏟ -10.6838 ▁ᎤᏩᎭᏂᎴ -10.6838 ▁ᏂᎩᏪᏎᎸᎭ -10.6838 ▁ᏅᏧᏓᎴᏅᎲᎾ -10.6838 ▁ᏗᏦᏪᎵᏍᎩ -10.6838 ▁ᎠᏐᎥᏍᏙᏗ -10.6838 ▁ᏅᏛᏆᏓᎴᏅᎯ -10.6838 ▁ᏏᎵᏆ -10.6838 ▁ᏣᏓᏲᏁᎸᎩ -10.6838 ▁ᎠᎾᏓᏍᎦᎶᎩ -10.6838 ▁ᎦᏅᏃᏩ -10.6838 ▁ᏅᏥᏪᏎᎸᎩ -10.6838 ▁ᎤᏚᏓᎴᏛ -10.6838 ▁ᎠᏓᏪᎯ -10.6838 ▁ᏄᎾᏓᎡᏍᏗ -10.6838 ▁ᏦᏑᏫ -10.6838 ▁ᎤᏪᏐᏅᏴ -10.6838 ▁ᎤᏛᎴᎮ -10.6838 ▁ᎤᎿᎷᏒᎩ -10.6838 ▁ᎢᏣᏛᏓᏍᏓ -10.6838 ▁ᎢᎳᎩᏳ -10.6839 ᏲᎦ -10.6839 ▁ᎠᎪᏕᏍᎩ -10.6839 ▁ᏧᏁᎿᎢ -10.6839 ▁ᎠᏍᎩᏓᏍᎬ -10.6839 ▁ᏤᏆᎳᏂ -10.6839 ▁ᏧᏁᎵᏁ -10.6839 ▁ᎨᎴᏏᏱ -10.6839 ▁ᎤᎵᏏᏂᏕᏅ -10.6839 ▁ᎤᎵᏲᏗ -10.6839 ▁ᎢᎪᏪᎳ -10.6839 ▁ᏕᏥᏃᎩᏍᎨᏍᏗ -10.6839 ▁ᎾᎨᎢᏴ -10.6839 ▁ᎠᎾᏓᏍᏓᏩᏗᏙᎯ -10.6839 ▁ᎤᏂᎩᎵᏲᎢᏍᏗ -10.6839 ▁ᏓᏲᏤᏏ -10.6839 ▁ᏔᏘᏄᎦ -10.6839 ▁ᎠᎾᎵᏍᏕᎵᏍᎩ -10.6839 ▁ᏱᏂᎬᏁᎭ -10.6839 ▁ᎠᏓᏅᏖᏍᎪ -10.6839 ▁ᏂᎩᏪᏏ -10.6839 ▁ᏚᎨᏓᎵᏴ -10.6839 ▁ᎠᎾᏓᏤᎵ -10.6839 ▁ᎠᏦᎳᏅ -10.6839 ▁ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ -10.6839 ▁ᏚᏍᏓᎦᎸ -10.684 ▁ᏱᏤᎵᎯᏍᎨᏍᏗ -10.684 ▁ᏗᎦᎶᏔᏅ -10.684 ▁ᏚᎭᏄᏮ -10.684 ▁ᏗᎧᏃᎩᏍᏙᏗ -10.684 ▁ᏧᎾᎬᏩᎶᏗ -10.684 ▁ᎤᏭᏢᏔᏅᎩ -10.684 ᏘᏯᏍᏓᏁ -10.684 ▁ᏗᎾᎢᏒ -10.684 ▁ᏕᎪᏪᎴᏍᏗ -10.684 ▁ᎤᏁᏉᏨ -10.684 ▁ᏫᏗᎶᎯ -10.684 ▁ᏓᎦᏛᏁᎵ -10.684 ▁ᏄᏪᎲᎾ -10.684 ▁ᎢᏦᎯᏳᏗᏱ -10.684 ▁ᎤᏛᎦᏍᏕ -10.684 ▁ᏓᏱᎾ -10.684 ▁ᎮᎵᎠ -10.6841 ▁ᎠᏓᏲᏁᎮᏍᏗ -10.6841 ▁ᎡᏥᏅᏏᏓᏍᏗ -10.6841 ▁ᎢᎬᏛᏁᏗ -10.6842 ▁ᎣᎦᏚᎵᎭ -10.6842 ▁ᏥᏚᏳᎪᏗ -10.6842 ▁ᏧᏂᎶᎸᏗ -10.6842 ▁ᎨᏥᏍᏕᎸᏗ -10.6842 ▁ᎠᎫᏩᏌ -10.6842 ▁ᎦᏂᎩᎸ -10.6842 ▁ᎢᏯᏥᎸᏉᏗ -10.6842 ▁ᎤᎬᎥᏍᎩ -10.6842 ▁ᏰᏙᎭ -10.6842 ▁ᎠᏂᎪᎲᎭ -10.6842 ▁ᎠᏰᏟ -10.6843 ▁ᎿᏛᎦ -10.6843 ▁ᎬᏬᎯᏳᏅᎩ -10.6843 ▁ᏧᏂᏁᏟᏴᏍᏗ -10.6843 ▁ᏣᎦᏨᏍ -10.6843 ▁ᎤᎴᏴᏒ -10.6843 ▁ᎠᏍᏕᏯᏓ -10.6844 ▁ᎢᏳᏪᏎᎸᎯ -10.6844 ▁ᎲᏓ -10.6844 ▁ᏓᎭᏏ -10.6844 ▁ᏍᎩᏍᏓᏩᏚᎦ -10.6844 ▁ᎤᏂᎪᏩᏛᏗᏱ -10.6844 ▁ᎯᎸᏉᏓ -10.6844 ▁ᏣᏙᎳᏅᏍᏗ -10.6844 ▁ᎤᏕᎶᎰᏒ -10.6844 ▁ᎭᏓᏅᎾ -10.6845 ▁ᏗᎫᎪᏗᏍᎩ -10.6845 ▁ᎤᎶᏗᏢ -10.6845 ▁ᏂᏴᏁᎸ -10.6845 ▁ᏂᏣᏛᎿᏕᎬᎢ -10.6845 ▁ᏗᎪᏢᏅᎯ -10.6845 ▁ᏑᏓᎵᏍᎪᎯ -10.6846 ▁ᎢᎩᏁᎸ -10.6846 ▁ᎠᏍᎩᏗᏍᎨᎢ -10.6846 ▁ᎢᏣᏚᎵᏍᎨᏍᏗ -10.6846 ▁ᏚᏯᏪᎨ -10.6846 ▁ᎢᏥᏯᎡᏍᏗ -10.6846 ▁ᏍᏈᏍᏔ -10.6846 ▁ᏗᏣᎧᏅᎦ -10.6846 ▁ᏫᏥᎷᏨᎭ -10.6847 ▁ᎢᏣᎵᎮᎵᎨᏍᏗ -10.6847 ▁ᎨᏥᏅᏒᎯ -10.6847 ▁ᏥᏣᏛᎩᎭ -10.6847 ▁ᏗᎩᎸᏫᏍᏓᏁᏗᏱ -10.6847 ▁ᏇᏗᏂᏱ -10.6848 ▁ᎶᎻ -10.6848 ▁ᎡᏥᏯᏅᏛ -10.6848 ▁ᎠᏠᏗᏱ -10.6848 ▁ᎤᏍᏆ -10.6848 ▁ᏎᏘ -10.6848 ▁ᏧᎳᏍᎩ -10.6849 ▁ᎤᎾᏛᏅᎩ -10.6849 ▁ᏧᎷᏫᏍᏔᏁᏗ -10.6849 ▁ᎠᏂᎦᏲᏟ -10.6849 ▁ᏗᏣᏓᎴᏅᏛ -10.6849 ▁ᏈᎵᏏ -10.685 ▁ᏍᎪᏁ -10.6851 ▁ᎠᎩᎵᎨᏂ -10.6851 ▁ᎤᏁᎯ -10.6851 ▁ᎠᏂᏴᎩ -10.6851 ▁ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ -10.6851 ▁ᎦᏃᏙᏗᏱ -10.6853 ▁ᎪᎯᎢᏴ -10.6854 ▁ᎢᎦᎵᏍᏙᏗᏱ -10.6854 ▁ᏚᏃᎸ -10.6855 ▁ᎢᏨᏃᎮᎮᎸ -10.6855 ▁ᏂᏨᎦ -10.6856 ▁ᎢᎦᎦᏓ -10.6858 ▁ᎪᎰᏍ -10.6858 ▁ᎤᏓᏙᎵᏣᏛ -10.6859 ▁ᎠᏨᏍᏛ -10.6859 ▁ᎹᎦ -10.6859 ▁ᏓᎾᏕᏲᎲᏍᎬ -10.686 ▁ᏄᏩᏁᎰ -10.686 ▁ᎤᎦᏔᏔᏅᎯ -10.6861 ▁ᎤᏃᎯᏳᏅᎯ -10.6863 ▁ᎠᏓᏁᏣᏍᏚᎶᎩᎯ -10.6863 ᎡᎸ -10.6864 ▁ᎠᏍᎫᏕᏍᏗᏱ -10.6865 ▁ᎤᏰᏨ -10.6865 ▁ᏯᏂᎦᏔᎮ -10.6866 ▁ᏥᏁᎦ -10.6867 ▁ᎤᏛᏒᎯ -10.6867 ▁ᎢᏍᏕᎾ -10.6867 ▁ᏗᏘᏲᎯ -10.6867 ▁ᏃᎩᏪᏎᎸ -10.6869 ▁ᎠᎦᏔᎯᏳ -10.6869 ▁ᎤᏓᏴᏎᎢ -10.6869 ▁ᏧᏓᎴ -10.6869 ▁ᏥᏙᎦ -10.687 ▁ᎬᏩᏛᏗ -10.6871 ▁ᎤᏪᎧᏁᎢ -10.6871 ▁ᎤᎾᏕᏗ -10.6872 ▁ᏥᎪᏩᏘᏍᎬ -10.6873 ▁ᎤᏁᏉᏨᎯ -10.6873 ▁ᏓᎧᏅ -10.6873 ▁ᎩᎳᎯᏳ -10.6873 ▁ᎤᎾᏄᎪᎢᏍᏗ -10.6873 ▁ᎤᏂᎾᏫ -10.6875 ▁ᏇᎵᎩ -10.6875 ▁ᎪᏪᎴ -10.6875 ▁ᎤᏃᎯᏳᏅᎩ -10.6875 ▁ᏓᏨᏁᎵ -10.6876 ▁ᎡᎦ -10.6878 ▁ᎤᎪᏩᏛᏗᏱ -10.6878 ▁ᎨᎵᏍᎩ -10.6879 ▁ᏗᎦᏥ -10.6879 ▁ᏥᏯᎵᎡᎵᏤ -10.6879 ᏁᏉᏥ -10.688 ▁ᎡᏓᏍᏗ -10.6881 ▁ᎤᎾᏛᎪᏗᏱ -10.6881 ▁ᎤᏪᏍᎩᎸᎢ -10.6881 ▁ᏫᏥᎦᏛᎢ -10.6881 ▁ᏧᏓᎵᎢ -10.6882 ▁ᎤᎩᏒᎩ -10.6882 ▁ᎠᏂᏃᎮᎭ -10.6883 ▁ᏂᏚᏩᏁᎴᎢ -10.6883 ▁ᎤᏍᏆᏂᎪᏛ -10.6883 ▁ᎻᎳ -10.689 ▁ᎢᎦᎵᎢ -10.689 ▁ᎾᏯᏛᎥᎩ -10.6891 ▁ᎤᏓᏙᎵᏍᏔᏁᎢ -10.6892 ▁ᏗᎾᏓᎪᎾᏗᏍᎬᎢ -10.6893 ▁ᎠᎾᏓᎪᎾᏗᏍᎬᎢ -10.6893 ᏍᎦᏎᏗ -10.6893 ▁ᎤᎾᏂᎩᏒᎩ -10.6894 ▁ᎦᏓᏙᎵᏍᏗᏍᎬᎢ -10.6894 ▁ᎢᎪ -10.6895 ▁ᎢᏳᏒᎯ -10.6896 ▁ᎠᎦᏍᎩ -10.6898 ᏅᏬᏗᏱ -10.6901 ▁ᏥᏰᎸᎢ -10.6902 ▁ᎤᏬᏢᏅ -10.6902 ▁ᎣᎵᏩᏲ -10.6905 ᏓᏛᏍᎩ -10.6906 ▁ᎤᏇᏓᎵᏉ -10.6906 ▁ᎤᎾᏂᎩᏎᎢ -10.6907 ▁ᎤᎾᏓᏅᏖᎴ -10.6907 ▁ᎤᏩᏔᏅᎩ -10.6907 ᏂᏓᏍᏗ -10.6907 ▁ᎤᏂᏣᏖᏍᏗ -10.6908 ▁ᎠᏆᏣ -10.6909 ▁ᎤᎩᏎᎢ -10.6914 ▁ᏚᏩᏂᎦᎸᎢ -10.6917 ▁ᎤᏦᏱᎴᎢ -10.6917 ▁ᎤᎵᏍᏆᏛ -10.6918 ▁ᎠᎢᏒᎩ -10.6921 ▁ᎤᎾᏓᏅᏖᎸ -10.6922 ▁ᎦᏯᎸ -10.6923 ᏓᏂᎸᎩ -10.6924 ▁ᏥᏄᏍᏕ -10.6925 ▁ᏣᏗᎭ -10.6931 ▁ᎤᏍᎪᏒ -10.6932 ▁ᎤᏗᏛᎮᎢ -10.6933 ▁ᎢᏣᏓᏅᏖᏍᎬ -10.6936 ▁ᎤᏲᎢᏴ -10.6938 ᏰᏛ -10.6943 ▁ᏝᎨ -10.6949 ▁ᏭᏂᎷᏨᎩ -10.6949 ᏔᎵ -10.6953 ᏗᏂᏍᎪᏂᎯ -10.6955 ▁ᎤᏁᏍᏔ -10.6956 ▁ᎠᏓᎯᎯ -10.6956 ▁ᏫᎦᎷᎬ -10.6956 ▁ᎠᎩᏁᏨᎢ -10.6966 ᏚᎢᏍᏓᏁᎴ -10.6969 ▁ᏧᏁᎦ -10.6969 ▁ᎫᎦ -10.6969 ▁ᏍᎩᏍᏕᎸ -10.6974 ▁ᎢᏗᎬᏁ -10.6975 ᏃᎯᏎᎴ -10.6977 ▁ᏫᏚᏯᏅᎮᎢ -10.6979 ▁ᎤᏄᎪᏤᎢ -10.6985 ▁ᎢᏨᏗᏍᎬ -10.6985 ▁ᎢᏔ -10.6985 ▁ᏗᏐᏴ -10.6986 ᏯᎥᎢ -10.6986 ▁ᏂᏕᎬᏁᎲ -10.6988 ▁ᎤᏅᏎᎢ -10.699 ▁ᎯᎦᏔᎲ -10.6991 ▁ᎠᏁᎮᏍᏗ -10.6991 ▁ᏪᏣ -10.6996 ᏔᏁᏍᏗ -10.6996 ᏞᏍᏗ -10.6998 ▁ᏧᏁᏗᏱ -10.7001 ▁ᎤᏬᏨ -10.7002 ᏛᏁᏗᏱ -10.7003 ᎦᏛᎦ -10.7003 ▁ᎤᎪᎵᏰᎥ -10.7005 ▁ᎭᏗ -10.7005 ▁ᎤᎷᏤᎴᎢ -10.7007 ᏓᏁᎯ -10.7011 ▁ᏗᎬᏩᎾ -10.7011 ▁ᎤᏩᏔᏁ -10.7012 ▁ᎡᎾᎢ -10.7014 ▁ᎤᏁᏍᎩᎸ -10.7016 ▁ᎤᏬᏂᏎ -10.702 ᎳᏅᎩ -10.7025 ᏂᏗ -10.7026 ▁ᏚᏙᏍᏛ -10.7027 ▁ᎤᎾᏛᏁ -10.703 ▁ᏄᏩᏁᎸᎩ -10.7033 ᏍᏗᏍᎨᎢ -10.7035 ᎨᏎᎢ -10.7046 ᏟᏌᏂ -10.7046 ▁ᎤᎪᏗ -10.7049 ᎵᏍᏓᏴᎲᏍᎦ -10.7051 ▁ᎠᎾᎵᎮᎵᎨ -10.7051 ᎵᏍᎪᎸᏓᏁᏗᏱ -10.7057 ᏏᏐᏗ -10.7061 ▁ᏙᏓᎨ -10.7063 ▁ᏂᏥᏪᏎᎸ -10.7067 ▁ᏧᏁᏤᎴ -10.7067 ▁ᎤᏤᎸ -10.7074 ▁ᏗᎬᎩ -10.7076 ᎫᏩ -10.7076 ▁ᏥᏗ -10.7077 ▁ᎤᏂᎪᎲᎩ -10.7083 ▁ᏓᎬᎩ -10.7083 ᏁᎲᎩ -10.7086 ▁ᏗᎩᎦᏴᎵᎨᎢ -10.7089 ᏅᎦ -10.7093 ᏖᎵ -10.7094 ᏄᎪᏫᏏ -10.71 ▁ᏂᏚᎩᏨᏂᏒᎢ -10.7101 ᏢᎾᏁᏗ -10.7109 ▁ᎠᏦᏴᎢ -10.7113 ▁ᏧᎾᏦ -10.7114 ▁ᎤᏍᎦᏅᏨᎢ -10.7116 ᏅᏗᏍᎨᏍᏗ -10.7117 ▁ᏕᎬᏩᏂ -10.7121 ▁ᎪᎦ -10.7122 ᎲᏍᎪᎢ -10.7122 ▁ᎤᏁᏅᏍᏗ -10.7128 ▁ᏃᏳ -10.7132 ▁ᏱᏓᎩ -10.7135 ᏒᏗ -10.7135 ▁ᎤᏂᏅ -10.7135 ▁ᏕᏣᏙᎥᎢ -10.7139 ᏳᏍᏗ -10.7141 ᏇᎵ -10.7141 ᏰᎲ -10.7143 ▁ᎤᏓᏅᏙᎩ -10.7143 ᏪᏎᏗ -10.7147 ▁ᏗᏍᏆ -10.7156 ᏏᏩ -10.7164 ᏏᎳᏛᏗ -10.7167 ▁ᏃᎩ -10.7169 ▁ᎤᏍᏓᏱᏕ -10.717 ▁ᎤᎵᏍᏆᏕ -10.7172 ▁ᏣᎪ -10.7179 ᏟᏯ -10.718 ▁ᎤᎧᎵᎸ -10.7183 ᎳᏚ -10.7183 ᏨᎾ -10.7184 ᎬᏂᎨ -10.7186 ᏓᏁᎮᏍᏗ -10.7187 ᎧᏁᎸ -10.7195 ᎩᏍᎬ -10.7196 ▁ᎠᏂᏁᎸ -10.7198 ▁ᎤᏙᎯᏳᎭ -10.7199 ᎪᏅ -10.7206 ᏌᎳᏓᏁ -10.7209 ▁ᏗᎨᎦ -10.721 ▁ᏂᎬᏁᎸ -10.7211 ᏏᏗ -10.7216 ▁ᏗᏛ -10.7221 ᎦᏔᎲ -10.7223 ▁ᏦᏥ -10.7238 ᏂᏌᏂ -10.7238 ▁ᎠᏉᏢ -10.724 ▁ᎠᏃᎵ -10.7242 ᏅᎦᎸᏛ -10.7243 ▁ᏄᏪᏎᎸᎢ -10.7248 ᎪᎵᏂᏗ -10.7252 ▁ᎤᏓᏅᏒ -10.7256 ▁ᎤᏍᏆᎸ -10.7268 ▁ᎤᎧᎵ -10.7279 ᎦᏙᎥᏎ -10.7281 ᏙᎲᎢ -10.7299 ▁ᎤᏁᏅᏎᏃ -10.7303 ᏧᏂᏲᎯᏍᏗᏱ -10.7306 ▁ᏚᎸ -10.7313 ᏕᎦ -10.7314 ▁ᎠᏰᎵᏒ -10.7315 ᎯᎲᎢ -10.7316 ᏲᏏ -10.7317 ▁ᎤᏃᏴᎵ -10.7317 ▁ᎤᏁᏤᎢ -10.732 ▁ᎬᏒ -10.7323 ▁ᏳᎪ -10.7324 ▁ᏃᏒ -10.7329 ▁ᎤᏙᎯ -10.733 ᏂᏙᎸ -10.7343 ᏣᏗ -10.7343 ᎤᏩᏂᎦᎸ -10.7343 ▁ᎤᏁᏤᎴᎢ -10.7344 ▁ᎤᏙᏳ -10.7349 ᏉᏍᎪ -10.7359 ᏍᎦᎢᎮᏍᏗ -10.7362 ▁ᎾᏂᎥᎩ -10.7375 ▁ᏓᏔᎴᏒᎢ -10.7379 ▁ᎤᏅᏁ -10.739 ▁ᎠᏂᎸᏉᏗᏍᎨ -10.7392 ▁ᏦᏏ -10.7396 ▁ᏙᏓᏣ -10.7433 ▁ᏦᏒ -10.7447 ᏡᏗᏍᎩ -10.745 ▁ᎠᎹᏂ -10.7451 ▁ᏤᎳᏗ -10.7456 ᎵᏍᏓᏴᏗ -10.7471 ▁ᎦᏲᎦ -10.7471 ▁ᎤᎳ -10.7474 ▁ᏲᎦ -10.7475 ᏁᎢᏍᏓᏁᏗ -10.7479 ▁ᎡᏍᏗ -10.7483 ▁ᎠᎫᏴᏗ -10.75 ᎳᏛ -10.75 ▁ᎤᏂᏏᏗ -10.7503 ᏤᎭ -10.7507 ▁ᏚᏁᏤᎴᏃ -10.7508 ▁ᏥᏕᏣ -10.7519 ▁ᎢᎬᏱᏱᏉ -10.7521 ▁ᎨᎢ -10.7529 ᎬᏅ -10.753 ▁ᏓᎦᏥ -10.7531 ᏍᏓᏩᏕᎩ -10.7542 ▁ᎠᏥᏁᎸ -10.7543 ᏘᏍᏗᏍᎩ -10.7545 ▁ᎠᎩᏍᎦᏅᏨ -10.7546 ᎧᎯᏯᏍᏗ -10.7556 ▁ᏱᏥᏰᎸ -10.7557 ᏥᏧᏣ -10.7562 ▁ᎦᎾᏄᎪ -10.757 ᎦᏚ -10.7571 ▁ᎤᏂᏴᎸ -10.7581 ᏢᏅᎯ -10.759 ᏗᏯ -10.759 ᏗᏍᏔᏁ -10.7598 ᏲᎭ -10.7609 ▁ᏥᏳᎪ -10.761 ᏍᏓᏁ -10.762 ᏂᏆᏘᎯ -10.7624 ᏗᏔᏍᎬ -10.764 ▁ᏩᏴ -10.7646 ᎵᎢ -10.7649 ▁ᏗᎧ -10.7659 ▁ᏂᏛ -10.7669 ᏄᎵ -10.7673 ▁ᏥᎦᏔ -10.7678 ᏂᏴ -10.7694 ▁ᎪᏛ -10.77 ▁ᎠᎾᏗᏍᎨ -10.7701 ▁ᎤᏂᏄᎪᏨ -10.7711 ▁ᎢᏳᏂ -10.7721 ▁ᎤᏣᏅ -10.7729 ᏪᏎᎴᎢ -10.7731 ᏘᎾᏫᏛᎲᎩ -10.7737 ᏍᏆᎵ -10.7746 ᏫᏎᎴᎢ -10.7749 ᏍᎦᏰᎬᏍᏓ -10.7767 ᎶᏓ -10.7768 ▁ᎠᏩᏛ -10.7774 ▁ᏂᎦᎥᎢ -10.7776 ᏓᏱ -10.7778 ᏍᏕᎵᏍᎬ -10.7781 ᏁᏟᏴ -10.7789 ▁ᎢᎤ -10.7791 ▁ᎤᏪᏰ -10.781 ▁ᎤᎵᏍᏆᎸᏗᏃ -10.7812 ᏓᏎᎪᎩᏍ -10.7823 ᎩᏒ -10.7828 ᎦᎳ -10.7828 ▁ᎾᎯᏳᎢ -10.783 ᏛᏃᎯ -10.783 ᎸᏉᏗᏍᎩ -10.7833 ▁ᏚᏳ -10.7836 ▁ᏕᎨᏥ -10.7853 ᏲᏍᏗᏍᎬ -10.7853 ᏡᏗᏍᎬᎢ -10.7859 ▁ᏚᏲᏎ -10.7868 ᏫᏛ -10.7877 ▁ᎠᎨ -10.7882 ▁ᏱᎨᏣ -10.7885 ᏍᏗᏍᎬᎢ -10.7888 ᏍᏕᎵᏍᎩ -10.7899 ᏳᎳ -10.7915 ᏗᏍᏗᏍᎩ -10.793 ᏅᎪᎢᏍᏗ -10.7935 ▁ᎤᎵᏍᏆ -10.7938 al -10.7947 ᏰᎸᎯ -10.7947 ᏂᏙᎯ -10.7951 ▁ᏯᏓᏅᏖ -10.7964 ᏑᏰᏒ -10.7965 ▁ᎠᎵᏰᎢᎵ -10.7968 ▁ᎦᏯ -10.7968 ᏢᏗᏱ -10.7976 ▁ᏭᏩ -10.7978 ᏴᏍᏗ -10.7978 ᎵᏳ -10.7983 ▁ᏕᎫ -10.7989 ᏂᎩᏍᎬ -10.7989 ▁ᎩᏯ -10.7993 ▁ᎢᏨᏲᏪᎳ -10.7997 ᏥᏍᎦᏯ -10.8006 ▁ᏓᏳᏂ -10.8013 ▁ᏄᏍᏛᎩ -10.8019 ᏍᎩᎸ -10.8026 ᎡᎰᎢ -10.803 ▁ᎠᏍᏆᏂᎪᏙᏗ -10.8033 ᏥᏁᎸ -10.8038 ᏅᏛ -10.8039 ᏓᏑᏰᏍᏗ -10.8043 ᏍᏓᏩᏛᏒᎩ -10.8044 ᏍᏓᏩᏗᏒ -10.8047 ᏛᏅᎢᏍᏓ -10.8049 ▁ᏥᏂᎬ -10.8054 ▁ᏔᏯ -10.8057 ᏓᎵᏓᏍᏗ -10.8058 ᎤᏍᏓᎦᏴᎯᏓ -10.8063 ▁ᏚᏭ -10.8067 ▁ᎨᏍᏗᏗ -10.8072 ▁ᎦᎬ -10.8074 ▁ᏚᏁ -10.8077 ᏲᏒᎩ -10.8077 ▁ᎢᏗᎦᏘ -10.8085 ▁ᎢᏳᏍᎩᏂᏃ -10.8101 ᎳᏓ -10.8108 ᎦᏁᎶᏗ -10.8108 ᏲᎵ -10.8114 ᎳᏂ -10.8119 ▁ᎥᎩᎸᏉ -10.8125 ▁ᎤᎵᏰ -10.8145 ᏓᏙᎵᏍᏗᏍᎬ -10.8149 ᎷᎯᏍᏗ -10.8153 ᏘᏃᎯᏍᏗᏱ -10.8159 ᏍᎦᏨᎯ -10.816 ᏂᎪᎲ -10.816 ᎦᏘᏓ -10.8167 ▁ᎢᏍᏛ -10.8179 ▁ᎬᏰᎸ -10.819 ▁ᏅᏓᎬᏩ -10.8195 ▁ᎠᏢ -10.8195 ᎧᏁ -10.8203 ᏙᎮ -10.8223 ▁ᎤᏂᏍᏆᏂᎪᏎ -10.8233 ᎸᏂ -10.8234 ▁ᏗᏣᏁᎶ -10.8237 ▁ᏗᏍᏚ -10.8248 ᏉᏂ -10.8249 ▁ᎤᎷ -10.8251 ᏓᏂᎸᏤᎢ -10.8259 ▁ᏳᏬᎯᏳ -10.8274 ᎶᎯᏍᏗ -10.8279 ᏩᏕᎬ -10.8293 Ꮌ -10.8305 ▁ᎠᏂᎦ -10.8306 ᎦᏅᎦ -10.8313 ▁ᏄᏂᏪᏎ -10.8319 ▁ᏣᎦ -10.8321 ▁ᏧᏁᏨ -10.8327 ᏪᏎᎸᎩ -10.833 ᎿᎥᎢ -10.8332 ▁ᎤᎸᏉᏗ -10.8337 ▁ᎧᏃᎮ -10.834 ᏪᎶᏗ -10.8342 ᏍᏕᎸᏗᏱ -10.8345 ᎢᎦᎸᏉᏗ -10.8345 ᏦᏁ -10.8346 ᏢᏛ -10.8349 ▁ᎦᏟ -10.836 ▁ᎤᏁᎷᎬ -10.8365 ᏓᏬᏍᏗ -10.8367 ▁ᏧᎳᏑᎶ -10.8372 ▁ᎤᏃᎸ -10.8376 ᎯᏍᏔᏂ -10.8379 ▁ᏙᏧ -10.8381 ▁ᎤᏍᎦ -10.8385 ▁ᏕᎦᏄᎪᏫᏍ -10.8393 ᎪᎵᏰᎥᎯ -10.8398 ▁ᎥᏥ -10.8398 ᏍᎦᏃᎵ -10.8407 ▁ᎢᎩᏰᎸ -10.8407 ▁ᏕᎦᏄᎪᎬ -10.8409 ▁ᏕᎦᎳᏅᏛ -10.8411 ᎦᎸᎳᏗ -10.8412 ▁ᎤᏍᏆᏂᎪᏎ -10.8412 ▁ᎠᏐᏴ -10.8412 ▁ᎣᎦᏛᎦᏅ -10.8414 ᏓᎩᏍᎨ -10.8416 ▁ᎠᏓᏪᎵᎩᏍᎬ -10.8418 ▁ᏚᏲ -10.842 ᏄᏓᎴ -10.8421 ᏫᎵᎻ -10.8421 ᏗᎦᏛᎯ -10.8421 ▁ᎠᎩᏇᏓᎸ -10.8423 ▁ᏂᎦᎵᏍᏗᏍᎪ -10.8424 ▁ᏕᎦᏍᎩᎸ -10.8424 ▁ᎢᏣᏓᏙᎵᏍᏗᏍᎬ -10.8425 ▁ᏧᏁ -10.8426 ▁ᏱᎨᏥ -10.8427 ▁ᎬᏩᎾᏕ -10.8427 ▁ᎤᎵᏰᏔᏁ -10.8427 ▁ᏙᏧᎾᏓᏅᏛ -10.8428 ▁ᏱᏥᎦᏔᎮ -10.8431 ▁ᏄᏂᏪᏎᎴ -10.8433 ▁ᎢᏣᎵᎮᎵᎬ -10.8433 ▁ᎤᎾᏂᎩᏎ -10.8433 ▁ᏚᏓᏘᎾᎥ -10.8434 ▁ᎤᎶᎨᏒ -10.8435 ▁ᏯᏛᏅ -10.8436 ▁ᏱᏄᏍᏕ -10.844 ▁ᎤᏬᎯᏳᏒ -10.8442 ᎰᏩ -10.8445 ▁ᎤᏄᏩᎥ -10.8445 ▁ᏈᎬ -10.8451 ▁ᏕᎦᏬᏁᏗᏍᎬ -10.8451 ▁ᎾᎩᏪᏎᎸ -10.8455 ᎣᏏ -10.8456 ᎪᎲᏍᏙᏗ -10.8456 ▁ᏭᏯᏅᎲ -10.8458 ▁ᎠᎩᏩᏛᎲ -10.8459 ▁ᏄᏅᏁᎸ -10.846 ▁ᏄᏛᏁ -10.8461 ᎵᏙᎯ -10.8465 ▁ᎤᎵᏦᏛ -10.8465 ▁ᎥᎩᏙ -10.8466 ᏰᎳᏍᏗ -10.8466 ▁ᎢᎫᏩ -10.8471 ▁ᎾᏏ -10.8472 ᏬᏗᎨ -10.8474 ▁ᎠᏂᎪᏩᏘᏍᎬ -10.8475 ᎪᎵᏰ -10.8477 ▁ᏇᏓᏁᎳᎻ -10.8479 ▁ᎠᏓᎨᏗ -10.848 ▁ᏧᏂᎧᎿᏩᏛᏍᏗ -10.848 ▁ᏫᏗᎦ -10.8481 ▁ᎠᏍᎫᏕᏍᏗ -10.8481 ᎤᎷᏨ -10.8482 ▁ᎤᏬᎯᏳᏅ -10.8482 ▁ᏂᏕᎦᏪᏎᎲ -10.8483 ▁ᏗᎫᏍᏙᏍᏗ -10.8483 ᏒᏆᎶᏍᏗ -10.8484 ▁ᏗᎨᎫᎪᏓᏁᏗ -10.8486 ▁ᎤᏪᏓᏍᏗ -10.8487 ᏅᎵ -10.8487 ᏲᎱᎯᏎᎸᎯ -10.8487 ▁ᎠᏥᏁᏗ -10.849 ▁ᏭᎷᏤᎴ -10.8492 ▁ᏤᏅᏍᏗ -10.8492 ᎲᏎ -10.8496 ▁ᎤᎾᏛᎪᏗ -10.8496 ▁ᎠᏇᏓᏍᏗ -10.8496 ▁ᏅᏓᏰ -10.8499 ▁ᏚᏄᎪᏫᏒ -10.8505 ▁ᎠᏂᎾᏰᏍᎩ -10.8505 ▁ᎠᏂᏥᏊᏏ -10.8505 ▁ᎢᎨᎬᏁᎸᎯ -10.8505 ▁ᎢᎵᎡᏌ -10.8505 ▁ᎤᏍᏔᏲᏒ -10.8505 ▁ᎤᏖᎸᎳᏛ -10.8505 ▁ᎥᏆᎸᎢᏛ -10.8505 ▁ᎫᏫᏍᎫᏫ -10.8505 ▁ᎬᏬᎯᏳᎲᏍᎩ -10.8505 ▁ᎰᏢᏔᏅᎭ -10.8505 ▁ᎴᎣᏗᏏᏯ -10.8505 ▁ᎻᏚᏏᎳ -10.8505 ▁ᏂᏦᎵᎬᎾ -10.8505 ▁ᏇᏣᎵᎵ -10.8505 ▁ᏍᎪᏂᏗᏢ -10.8505 ▁ᏓᏇᎪᏔᏅ -10.8505 ▁ᏗᎾᏙᎴᏆᏍᎩ -10.8505 ▁ᏗᏓᎴᏅᏗᏍᎩ -10.8505 ▁ᏥᏈᎣᏂ -10.8505 ▁ᏧᏂᏦᏯᏍᏗ -10.8505 ▁ᎤᏂᎵᏅᏨᎯ -10.8505 ▁ᏗᎬᏩᎩᏨᏗ -10.8505 ▁ᏭᏕᎵᏤ -10.8505 ▁ᏓᏗᎶᏂ -10.8505 ▁ᏧᎾᏗᎩᏓ -10.8505 ▁ᎢᏯᏛᏁᎵᏓᏍᏗ -10.8505 ▁ᏗᏥᎨᏫ -10.8505 ᏫᏂᏗᏢ -10.8505 ▁ᏦᏍᏓᏓᏅᏟ -10.8505 ▁ᏥᏂᏨᏪᏎᎸᎩ -10.8505 ▁ᎠᏆᏗᏔᏍᏗ -10.8505 ▁ᎤᏪᏯᎸᏤᎢ -10.8505 ▁ᎠᎵᏏᎾᎯᏍᏙᏗ -10.8505 ▁ᎠᎾᎵᏖᎸᎲᏍᎩ -10.8505 ▁ᎢᎬᏆᏛᏁᏗ -10.8505 ▁ᎤᎵᏍᏛᏧᏁ -10.8505 ▁ᎠᏟᎶᎥ -10.8505 ▁ᏗᎨᏘᏂᏓᏍᏗ -10.8505 ▁ᎹᎺᎵ -10.8505 ▁ᎠᏂᎶᏍᎩ -10.8505 ▁ᏧᎬᏩᎳᏅᎯ -10.8505 ▁ᏭᏕᎵᏨ -10.8505 ▁ᎤᏦᎠᏎᏗ -10.8505 ▁ᎪᎯᏳᎲᏍᎨᏍᏗ -10.8505 ▁ᎤᎵᏃᎯᏴᎯ -10.8505 ▁ᎤᎦᏛᎾᏨᎯ -10.8505 ▁ᏣᎦᏑᎲᎢ -10.8505 ▁ᎠᎪᎲᏍᏔᏅᎯ -10.8505 ▁ᏆᏏᎹ -10.8505 ▁ᎢᏥᏁᎫ -10.8505 ▁ᏕᏥᏂᏴᏎᏍᏗ -10.8505 ▁ᏓᏲᏣᏛᏁᎵ -10.8505 ▁ᎠᏁᎸᏗᏍᎨᎢ -10.8505 ▁ᎢᎪᏂᏯ -10.8505 ▁ᏖᎹ -10.8505 ▁ᎬᏲᏎᎭ -10.8505 ▁ᏅᏓᏳᎾᏓᎴᏅᎯ -10.8505 ▁ᏗᎩᏲᎱᏒᎯ -10.8505 ▁ᏧᏃᏚᎯ -10.8505 ▁ᎾᏂᏍᎦᏅᎾ -10.8505 ▁ᏕᎦᏅᏙᎬ -10.8505 ▁ᏱᏥᎪᎵᏰᎣ -10.8505 ▁ᎦᏗᎨᏂ -10.8505 ᏙᎴᏋ -10.8505 ▁ᎠᏂᎪᏗᏳ -10.8506 ▁ᎾᏃᎯᏳᎲᏍᎬᎾ -10.8506 ▁ᏧᏈᏯ -10.8506 ▁ᏩᎩᎷᏣ -10.8506 ᎩᏏᏕᎩ -10.8506 ▁ᎬᏩᏕᏱᏛ -10.8506 ▁ᎢᏥᏇᏓᎸ -10.8506 ▁ᎠᏙᎴᎰᏒᎯ -10.8506 ▁ᎤᎦᏃᏮ -10.8506 ▁ᏄᎾᏛᏁᎵᏙᎸ -10.8506 ▁ᏓᏓᏛᏂ -10.8506 ▁ᏳᏲᎱᏒ -10.8506 ▁ᏗᎬᏩᏂᏰᎯ -10.8506 ▁ᏗᏂᏃᎨᏂ -10.8506 ▁ᎦᎶᏣᏗ -10.8506 ▁ᎤᏴᎵᎴ -10.8506 ▁ᎢᏳᎾᏓᎳ -10.8506 ▁ᏗᏂᏐᎯ -10.8506 ▁ᏁᏆᎸ -10.8506 ▁ᏘᎦᏙᎵ -10.8506 ▁ᎤᏆᏛᎩ -10.8506 ▁ᎢᎬᎾᏕᏅ -10.8506 ▁ᏚᏪᎧᏅᎩ -10.8506 ▁ᏫᏥᏲᎵᎦ -10.8506 ▁ᎶᏩᏂ -10.8506 ▁ᎦᎵᏆᏚ -10.8506 ▁ᎠᏂᎱᏣ -10.8506 ▁ᏚᏭᏢᏔᏅᎩ -10.8507 ▁ᎠᏆᏟᏂᎬᏁᎸ -10.8507 ᏌᎳᏛᎦ -10.8507 ▁ᏧᎾᎪᏅᏍᏓᎵ -10.8507 ▁ᎥᏃᏥ -10.8507 ▁ᏧᏬᏢᏅᎯ -10.8507 ▁ᏧᎵᎬᏩᏟ -10.8507 ▁ᏗᎦᎾᏌᎢ -10.8507 ▁ᎢᏯᏓᏛᏁᎯ -10.8507 ▁ᏓᎩᏯᏪᎦ -10.8507 ▁ᏐᏁᎳ -10.8507 ▁ᏗᏟᏍᏙᏗ -10.8507 ᏐᎭᏛ -10.8507 ▁ᎭᏛᏓᏍᏓ -10.8507 ▁ᎠᏂᏃᎮᏍᎨ -10.8507 ▁ᏗᏣᎴᎲᎦ -10.8507 ▁ᎤᎾᏚᎵᏍᎩ -10.8507 ▁ᏓᎦᏥᏁᎵ -10.8507 ▁ᎢᏯᏆᎵᏍᏙᏗᏱ -10.8507 ▁ᎪᎢᏳᎲᏍᎦ -10.8507 ▁ᏅᏁᎸᎭ -10.8507 ▁ᏗᎩᏴᏫ -10.8508 ▁ᎦᏥᏯᏁᎳᏅᎯ -10.8508 ▁ᏥᏍᎦᎢᎲ -10.8508 ▁ᏅᏓᏳᏅᏏᏛ -10.8508 ▁ᎱᎷᏣ -10.8508 ▁ᏕᎦᏰᏌᏛ -10.8508 ▁ᎤᎾᏙᎴᎰᎯᏍᏙᏗ -10.8508 ▁ᏓᏓᏂᎸᎨᏍᏗ -10.8508 ▁ᎡᏥᏲᎵᎸᎭ -10.8508 ▁ᎠᎬᏓᎨᏂ -10.8509 ▁ᏄᏓᏑᏴᎾ -10.8509 ▁ᎤᏃᎯᏳᎯ -10.8509 ▁ᏦᎨᏥ -10.8509 ▁ᎠᎾᏓᎭᏲᎯ -10.8509 ▁ᏕᏅᏙᎥ -10.8509 ▁ᏅᏓᏍᏆ -10.8509 ▁ᏗᏥᎸᏫᏍᏓᏁᎯ -10.851 ▁ᎠᏂᎡᎼᎵ -10.851 ▁ᎤᏂᏆᏘᏍᏗ -10.851 ▁ᎠᏆᏕᎶᎰᏒ -10.851 ▁ᎢᏥᎨᏴ -10.851 ▁ᎠᏆᏛᏅᎢᏍᏗ -10.851 ▁ᎤᎸᏉᏔᏁ -10.851 ᏡᏔᏂ -10.851 ▁ᎢᏧᏖ -10.851 ▁ᏗᏣᎳᏏ -10.8511 ▁ᏗᎭᎾᏬ -10.8511 ▁ᎤᎧ -10.8511 ᏲᎵᏍᏗᏱ -10.8511 ▁ᏬᏤ -10.8511 ▁ᏫᏂᏪᏏ -10.8511 ▁ᏚᏄᏌᏛ -10.8511 ▁ᏗᎦᎪᏙᏗ -10.8511 ▁ᎤᏓᏑᏰᏛ -10.8511 ▁ᎯᏍᎪᎵ -10.8511 ᏂᎴ -10.8512 ▁ᎪᏒᏅ -10.8512 ᏓᎴᏒ -10.8512 ▁ᏓᏂᏴᎬᎢ -10.8512 ▁ᏣᏓᎸᎩ -10.8513 ▁ᏥᎦᏚᎭ -10.8513 ▁ᏓᏂᏴᎨᏍᏗ -10.8513 ▁ᎬᏔᏲᏎᎭ -10.8513 ▁ᎤᏙᎳᏅᏍᏗ -10.8513 ▁ᏓᏂᏄᏙᎬᎢ -10.8513 ▁ᏚᏚᏓᏛᎢ -10.8513 ▁ᎠᎨᏯ -10.8513 ▁ᎠᏄᏬᎩᎯ -10.8513 ▁ᎢᏤᏅᏍᏗᏱ -10.8513 ▁ᎤᏬᏒᏅ -10.8513 ▁ᏚᏕᏲᏁ -10.8513 ▁ᏗᏣᎳᏏᏕᏂ -10.8513 ▁ᏓᏥᏁᎵ -10.8514 ▁ᏤᎵᎪ -10.8514 ▁ᎡᏈᎳ -10.8514 ▁ᏭᎳᎩᏒ -10.8514 ▁ᏭᎩᎶᏫᏎ -10.8514 ▁ᎠᏂᎩᎾ -10.8514 ▁ᏚᏬᏁᏔᏅᎩ -10.8514 ▁ᏧᏲᎯᏍᏗᏱ -10.8514 ▁ᎢᏨᏲᏪᎳᏁᎭ -10.8514 ▁ᏙᎳᏧᎦ -10.8514 ᎩᎾᏝᎢ -10.8515 ▁ᎤᎵᏦᎯᏛ -10.8515 ᏍᎦᎢᏍᏗ -10.8515 ▁ᏇᎵᏏ -10.8515 ▁ᏧᎸᏫᏍᏓᏁᎸᎯ -10.8515 ▁ᏅᏛᏛᏁᎵ -10.8516 ▁ᏕᎯᎧᏅ -10.8516 ▁ᎤᏅᏪ -10.8516 ▁ᏗᎦᏁᎲ -10.8516 ▁ᏧᏬᏪᎳᏅ -10.8516 ▁ᏚᏘᏃᎮᎴᎢ -10.8516 ▁ᏫᏄᏪᏎᎢ -10.8517 ▁ᏣᏔᎳᏬᎯᏍᏗ -10.8517 ▁ᎬᏯᎵᎡᎵᏤ -10.8517 ▁ᎢᏯᏓᏅᏖᏗ -10.8517 ▁Ꮇ -10.8517 ▁ᏚᏏᏔᏛ -10.8517 ᏄᏍᏗ -10.8517 ▁ᎠᏈᎷ -10.8518 ▁ᎠᏌᎳᏙᏗ -10.8518 ▁ᎢᏥᏁᏨ -10.8518 ▁ᏂᏥᏪᏍᎬ -10.8519 ▁ᏧᎧᎭᏲ -10.8519 ▁ᎧᏁᏍᎬ -10.8519 ▁ᎤᎵᏨᏓᏆᏓ -10.852 ▁ᎴᎻᎩ -10.852 ▁ᎢᏤᎵᎭ -10.852 ▁ᏧᎾᏁᎳᏅᎯ -10.852 ▁ᏓᎧᏁ -10.852 ▁ᎠᏁᏙᎭ -10.852 ▁ᎢᏣᎵᏍᏓᏴᏗᏱ -10.852 ▁ᎢᏨᏁᏗ -10.852 ▁ᎠᏆᏓᏅᏖᏛ -10.8521 ▁ᏣᏓᏅᏛᎢ -10.8521 ▁ᎠᏆᏛᏁᏗᏱ -10.8521 ▁ᎤᏬᏪᎳᏅᎩ -10.8521 ▁ᎤᏲᎱᏎᎮᏍᏗ -10.8521 ▁ᏑᏓᎵᏧᏈ -10.8521 ▁ᎡᏍᎦᏂᏳ -10.8522 ▁ᎠᎦᏙᎵ -10.8522 -“ -10.8522 ▁ᎠᏓᎬᎿ -10.8522 ▁ᎦᏰᎵᏍᏗ -10.8522 ▁ᎠᏂᏍᎦᏰᎬᏍᏓ -10.8523 ▁ᎤᏃᏪᎳᏅ -10.8524 ▁ᎠᏂᎦᏘᏯ -10.8524 ▁ᎠᏫᏌᏅ -10.8524 ▁ᎠᏤᏍᏙᎩᎯ -10.8524 ▁ᎤᏛᎦᎾ -10.8524 ▁ᎦᎪᎵᏍᏗ -10.8524 ▁ᎠᎺ -10.8525 ▁ᏗᏥᎧᎿᏩᏛᏍᏗᏱ -10.8525 ▁ᏚᏭᎪᏔᏅ -10.8525 ▁ᎤᏬᎳ -10.8525 ▁ᏚᏪᏴ -10.8526 ▁ᏣᏍᏆ -10.8526 ▁ᎤᏁᏅᏒᎩ -10.8526 ▁ᏳᏪᎭ -10.8526 ▁ᏓᎾᏠᏱᎲ -10.8527 ▁ᎤᏩᏂᎦᎸᎢ -10.8527 ▁ᎤᎾᏄᎪᏥᎸ -10.8527 ▁ᏱᏥᏏᎾ -10.8527 ▁ᎤᏂᎾᎥ -10.8528 ▁ᎤᏍᏆᏂᎪᏔᏁᎢ -10.8528 ▁ᎤᏂᏍᎦᎴᎢ -10.8528 ▁ᎠᏋᏔᏅᎯ -10.8529 ▁ᎤᏪᏙᎴᎢ -10.8529 ▁ᎢᏳᏩᎬᏗ -10.8529 ▁ᎦᏃᎯᎵᏙ -10.8529 ▁ᏗᎫᏍᏙᏍᏗᏱ -10.8529 ▁ᎭᏟᏂᎬᏁ -10.8531 ▁ᏱᏅᎦ -10.8531 ▁ᎾᏥᏪᏎᎴᎢ -10.8531 ▁ᎢᏳᏪᏍᏗ -10.8532 ▁ᎢᏣᏛᏁᏗ -10.8532 ▁ᎤᏂᏁᏉᏤ -10.8532 ▁ᎤᎦᎹ -10.8532 ▁ᎤᏂᏃᎮᏗᏱ -10.8532 ▁ᏧᎾᏛᎾ -10.8533 ᏥᎤᏍᏕᏎᎸᎾ -10.8533 ▁ᏂᏨᏁᎲ -10.8534 ▁ᎬᏩᏍᎦᎩ -10.8534 ▁ᎾᏥᎤᏍᏕᏎᎸᎾ -10.8534 ▁ᏱᏂᎦᎩ -10.8536 ▁ᎤᏕᏔᏅᎯ -10.8537 ▁ᏗᏥᏁᏟᏴ -10.8537 ᏴᎵᎸ -10.8537 ᏩᏛᎲᏍᏗᏱ -10.8538 ▁ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ -10.8538 ▁ᎤᎵᏍᎪᎸᏔᏅᎯ -10.8538 ▁ᏤᏣᎧᏃᏗ -10.8539 ᏁᏉᏣᏘ -10.854 ▁ᎤᏂᏚᎲᎢ -10.8541 ▁ᎢᏨᏙᏗᏱ -10.8542 ▁ᎠᎩᎷᏤᎸᎩ -10.8542 ▁ᏓᎪ -10.8542 ▁ᏥᏄᏍᏛ -10.8542 ▁ᏣᎾᏫᏱ -10.8543 ▁ᎤᎾᏅᏗᏱ -10.8543 ▁ᎢᏥᏁᏗ -10.8544 ▁ᏥᎬᏩ -10.8544 ᏁᏅ -10.8545 ᎵᏖᎸᏂᏍᏗ -10.8545 ▁ᎢᏣᏁᎳᏅᎯ -10.8546 ▁ᎤᏂᏰᎸᎯ -10.8546 ▁ᎦᏁᏥᏱ -10.8547 ▁ᏭᏓᏒᏍᏔᏁ -10.8547 ▁ᏭᏓᎪᎾᏛᏛ -10.8547 ▁ᎤᏴᎸᎩ -10.8547 ▁ᎤᏁᏝᏅᎯ -10.8547 ▁ᎤᎦᏔᎲᏎ -10.8548 ▁ᏍᎦᏰᎬᏍᏔ -10.8549 ▁ᎤᏦᏍᏗ -10.8549 ▁ᎠᏍᏕᎵᏍᎩ -10.855 ▁ᎱᏂᎷᏤ -10.855 ▁ᎡᏥᏁᎸᎯ -10.8551 ▁ᎯᏄᎪᎢ -10.8551 ▁ᎦᎬᏩᏐᏢ -10.8552 ▁ᏚᏃᏁᎴ -10.8553 ▁ᎠᏂᎩᎦᎨ -10.8553 ▁ᎣᎨᏅᏒ -10.8553 ▁ᏂᎨᏥᏪᏎᎸ -10.8554 ▁ᏗᎪᏩᏛᏗ -10.8554 ▁ᏧᎾᏍᏗᎦ -10.8556 ▁ᏩᎦᏛᎢ -10.8557 ▁ᎤᎾᏄᎪᏫᏍᏗᏱ -10.8559 ▁ᎤᎩᎵ -10.856 ▁ᎤᎾᏓᏟᏌᏅ -10.856 ▁ᎤᏔᏪᏙᏁᎢ -10.856 ▁ᎤᏍᏕᎸᏗᏱ -10.8562 ▁ᎠᎳᏑᎶ -10.8563 ▁ᎢᏓᏙᎴᎰᎯᏍᏗ -10.8563 ▁ᎠᎦᏅᎩ -10.8564 ᏘᏁᏒᎭ -10.8564 ▁ᎤᏅᏙᏗ -10.8564 ▁ᎤᏍᏚᏁ -10.8567 ▁ᏌᎻ -10.8568 ▁ᎠᎩᎪᏩᏛᏗᏱ -10.8568 ᏬᏁᏔᏁ -10.8569 ▁ᏕᎦᎧᎲᎩ -10.857 ▁ᎠᎾᏗᏍᎬ -10.857 ▁ᏧᏪᏥᏛᎯ -10.8571 ▁ᎹᎵ -10.8571 ▁ᎤᏂᏴᏗ -10.8572 ▁ᎠᏩᏛᏗ -10.8572 ▁ᎢᎾᏏ -10.8572 ▁ᎤᏬᏢᏁᎢ -10.8572 ▁ᏧᏓᎴᏁᎢ -10.8574 ▁ᏧᎦ -10.8574 ▁ᎤᏍᎦᏤ -10.8574 ᎧᎸ -10.8576 ᎴᏁᎯ -10.8576 ▁ᎦᏁᎮᎢ -10.8576 ▁ᎤᏍᏓᏩᏗᏙᎯ -10.8578 ▁ᏓᏥᏂ -10.8578 ▁ᏓᏍᏛ -10.8579 ▁ᏥᏅᎵ -10.8579 ▁Ꮌ -10.858 ᏎᏗᏱ -10.858 ▁ᎯᏴ -10.8581 ▁ᎢᎨᏣᏛᏁᏗ -10.8581 ᏂᏬᏂᎯᏍᏗ -10.8583 ▁ᏕᎠ -10.8586 ▁ᎦᏆᎵ -10.8586 ▁ᎤᎵᏰᏔᏁᎢ -10.8587 ▁ᎤᏄᏬᏍᏗ -10.8587 ▁ᎠᎩᏃᎮᎸ -10.8587 ᏍᏗᏰᏗᎭ -10.8591 ▁ᎤᏂᎾ -10.8592 ▁ᎤᎾᎴᏅᎲ -10.8596 ▁ᏕᎪᏪᎸᎩ -10.8598 ▁ᏭᏴᎸᎩ -10.86 ▁ᏂᏣᏛᏁᎲᎢ -10.8603 ▁ᏗᎦᎫᏍᏛᏗᏱ -10.8604 ▁ᎣᎩᎾᎵᎪ -10.8604 ▁ᎤᎶᎨᏒᎢ -10.8608 ▁ᎠᏫᏒᎯ -10.8608 ▁ᎤᏰᎬ -10.8611 ▁ᎤᏬᏢᏅᎢ -10.8612 ▁ᏭᎷᏤᎴᎢ -10.8612 ▁ᏩᎩᎦ -10.8613 ᏥᏁᎢᏍᏗᎭ -10.8614 ▁ᎤᏍᏓᎦᎸᎢ -10.8614 ▁ᏓᏟᎶᏍᏛᎢ -10.8614 ▁ᎠᏇᎵᏒᎩ -10.8618 ▁ᎦᎵᎷᎨᏍᏗ -10.8618 ᏕᎪᎢ -10.8619 ▁ᎧᏃᎮᏍᎬᎩ -10.8619 ▁ᏂᏗᎨ -10.862 ill -10.8621 ▁ᎢᏣᎴᏂᏙᎲ -10.8622 ▁ᎤᏬᎭ -10.8623 ▁ᏱᏍᏛ -10.8623 ▁ᏥᏂᎨᎬᏁ -10.8623 ▁ᎤᏂᏴᎮᎢ -10.8627 ▁ᏧᏃᎸ -10.8629 ▁ᎤᏬᏎᎴᎢ -10.8631 ᏢᏂ -10.8637 ▁ᎦᏲᏟᎨ -10.8638 ᏩᏔ -10.8638 ▁ᏎᎳᎩ -10.8638 ᎵᏓᏍᏔᏅ -10.8638 ▁ᎤᏄᎸ -10.8638 ▁ᏧᏩᎫᏔᏅᏒᎢ -10.8643 ᎶᎸᏗ -10.8643 ᏕᎶᎰᏌ -10.8646 ᏓᏅᎡᎮᏍᏗ -10.8646 ᏘᏱ -10.8647 ▁ᎬᏩᎦ -10.8648 ▁ᎤᎾᏙᎴᎰᏒᎩ -10.865 ᎠᎩᏏᏙᎯ -10.865 ▁ᎭᏕᏬ -10.8653 ▁ᎯᏌ -10.8654 ᏯᏪᎢᏍᏗ -10.8657 ᎵᏎᎲ -10.8658 ▁ᏣᎧᏛᎢ -10.8658 ▁ᏚᏂᎪᎲ -10.8658 ▁ᎾᏆᏛᏁᎸᎢ -10.8659 ᏛᏛᎾ -10.8663 ▁ᎬᏩᎷᏤᎴᎢ -10.8664 ▁ᎡᏙᎲᎩ -10.867 ▁ᎠᏥᎾ -10.8673 ▁ᎨᏙᎲᎢ -10.8675 ᎦᎶᎨᏒ -10.8675 ▁ᎠᏂᏁᎬᎢ -10.8677 ▁ᎾᏛᏁᎲᎢ -10.8678 ᏚᎵᏍᎪ -10.8678 ▁ᏤᏏ -10.8679 ▁ᎦᎵᏦᏙᏗ -10.868 ▁ᎦᏁᎯ -10.8684 ᎳᏗᏍᎬ -10.8686 ᏚᏓᎴᏍᏗᏱ -10.869 ▁ᏏᎦ -10.8692 ▁ᎢᏌ -10.8694 ▁ᎤᏪᎭ -10.8698 ▁ᏯᎩᏰᎸ -10.8699 ▁ᎢᏥᎲᎢ -10.8699 ▁ᎾᏛᎦ -10.8699 ▁ᏓᏫᏒᎢ -10.8704 ▁ᏧᎾᏗᏔᏍᏗ -10.8708 ▁ᎢᏢ -10.871 ▁ᏣᏍᎦᏅᏨ -10.8712 ▁ᎠᎢᏎ -10.8718 ᎵᏍᎪᎸᏙᏗ -10.8718 ᏙᎡᏍᏗ -10.8718 ▁ᎠᎩᎲ -10.8719 ▁ᎡᎳᏂᎬᎢ -10.8719 ▁ᎤᏂᎯ -10.872 ᏍᏚᏟᏍᏗ -10.8721 ▁ᏚᎷᎬ -10.8723 ᎩᏳᏍᏈᏛ -10.8723 ▁ᏙᏓᎸᎢ -10.8727 ha -10.8732 ▁ᎤᏄᏪ -10.8737 ▁ᏕᎨᏒ -10.874 ▁ᏕᎯᏁᎸ -10.8745 ▁ᏥᎩᎵᏲᎬ -10.8757 ▁ᎤᏚᎸᎲ -10.876 ▁ᎠᎾᎢᏒᎢ -10.8761 ᏱᏆ -10.8765 ▁ᎠᎦᎵᏍᎪᎸᏓᏁᎸ -10.8768 ▁ᏁᏣ -10.8771 ᏌᏛᏗ -10.8771 ▁ᏄᎳ -10.8772 ▁ᏗᏍᎩᎧᏁ -10.8776 ▁ᏅᎩᏃ -10.8776 ▁ᎤᏁᎳᏅ -10.8776 ᎵᏍᏗᏍᎩ -10.8779 ▁ᏥᎳ -10.8779 ▁ᏗᏟ -10.8785 ▁ᎠᏣ -10.8786 ᎧᎾ -10.879 ▁ᏂᎩ -10.8792 ▁ᏓᏓᏁᎸᎢ -10.8792 ▁ᏙᎤ -10.8794 ▁ᎤᎷᏨᎯ -10.8801 ▁ᎦᎳᎨᏴᎢ -10.8805 ▁ᏕᎦᏚᎲᎢ -10.8805 ᏴᎮᎢ -10.8805 ▁ᏂᏣᏛᏁᎸᎢ -10.8805 ᏌᏛᎥᏍᎩ -10.8807 ᏫᏍᎩ -10.8819 ▁ᏓᏆᏙᎥᎢ -10.882 ▁ᎢᏥᏍᏆ -10.8824 ▁ᎤᏕᎸ -10.8824 ᏬᎭ -10.8827 ᏓᎴᎾᏍᏗ -10.8828 ▁ᎩᏓ -10.8831 ▁ᎡᏏ -10.8832 ▁ᎵᏍᏗ -10.8832 ▁ᎤᏓᏅᏖᎢ -10.8832 ▁ᎭᏗᏔ -10.8835 ▁ᎤᏃᏢᏅ -10.8839 ▁ᏂᏣᏍᏛ -10.8843 ▁ᎦᎸᏍᏗ -10.8847 ᏂᏲᏏᏍᎩ -10.885 ▁ᎬᏩᏛᏛ -10.8855 ᎵᏦᏩᏛ -10.8858 ᎤᏣ -10.8874 ▁ᏔᎵᏍᎪ -10.8881 ▁ᏥᏂᎦ -10.8884 ᏓᎾᏫᏛᎮ -10.8884 ᏏᎳᏛ -10.8889 ▁ᎠᏍᎩ -10.8894 ▁ᎠᏂᏬᏂᏍᎬᎢ -10.8894 ▁ᎤᏕᎵ -10.8896 ᏏᏂ -10.89 ▁ᎤᏓᎨᏳ -10.8901 ▁ᏏᏆᏏ -10.8905 ▁ᏃᎦ -10.8906 ▁ᏣᎬ -10.8911 ᏙᎴ -10.8932 ▁ᎠᎵᏍᏓᏴᏗᏱ -10.8934 ▁ᏱᏣᏓᏅᏖ -10.8937 ▁ᏥᏫ -10.8939 ▁ᎠᎾᏛᎩᏍᎨ -10.8941 ▁ᎢᏆ -10.8942 ▁ᎤᏛᎦᏁᎢ -10.8942 ▁ᎠᏑ -10.8948 ᏂᏍᏆᏂᎪ -10.8951 ᎾᏄᎪᏫᏍᎨᏍᏗ -10.8965 ▁ᎦᏳ -10.8965 ▁ᎠᏏᎾ -10.897 ᎵᎭ -10.8971 ᎵᏱᎶᎯᏍᏗ -10.8979 ᏛᏁᎲᎢ -10.8989 ▁ᏥᏰᎸ -10.899 ᎯᏗᏳ -10.8992 ▁ᏇᎳ -10.8992 ▁ᏕᏗ -10.8992 ᏏᏏ -10.9001 ▁ᏂᏚᏓᎴ -10.9007 ᏙᎵᎩ -10.9007 ᏰᎵᏉ -10.9009 ᎩᏯ -10.9013 ▁ᏃᏉᏗ -10.9015 ▁ᏄᏅᏁ -10.9017 ▁ᎤᎶᏎ -10.9021 ᎵᏍᎪᎸᏓᏏ -10.9029 ▁ᎨᏍ -10.9031 ᏗᏅᏓ -10.904 ᏯᎡᏍᏗ -10.9045 ᏝᎡ -10.9048 ᏓᏅᏖᏙᏗ -10.9051 ▁ᏚᏂᎸ -10.9053 ▁ᏱᏂᏣᏛᏁ -10.9056 ᏯᏔᏬ -10.9062 ᏅᏁᎮᏍᏗ -10.9068 ▁ᎢᏥᎷᏤᎸ -10.9068 ▁ᏳᏰᎸ -10.907 ᏏᏔᏛ -10.9071 ▁ᎢᏍᏕ -10.9076 ▁ᎠᎾᏓᏙᎵᏍᏗᏍᎨ -10.9079 ᎦᏍᎪ -10.9092 ᏍᏗᎭ -10.9098 ᏟᏂᎬᎬ -10.9099 ▁ᎠᏍᏆᏂᎪᏗᏍᎨ -10.9133 ▁ᎢᎸ -10.9134 ᎰᎸ -10.9147 ▁ᎤᎩᏒ -10.9152 ▁ᎠᏆᏓ -10.9156 ▁ᏂᎬᏁᎮ -10.916 ▁ᎤᏭᏢ -10.917 ▁ᎤᏂᎬᏫᏳ -10.9176 ᎷᏤ -10.9181 ▁ᏭᏍᏗ -10.9192 ᏗᎦᏅᎯᏛ -10.9194 ▁ᏍᎩᏰᎸᏗ -10.9203 ▁ᏧᏲᎯᏎᏗ -10.9206 ▁ᏍᎩᏳ -10.9226 ▁ᎣᏍ -10.9228 ▁ᏣᎵᏍᎪᎸᏙᏗ -10.9231 ᏰᎵᏎ -10.9234 ᏛᏅᎩ -10.9237 ▁ᏧᏁᏤ -10.9247 ᎵᏍᎦᏍᏙᏗ -10.9271 ᎵᏍᏓᏏ -10.9274 ᎾᏗ -10.9276 ▁ᎾᏥ -10.9283 ▁ᎢᎡ -10.9284 ▁ᎠᏁᎲᎩ -10.9297 ᏅᏍᏓᏕᎸᎩ -10.9304 ᏥᎾᏄᎪᏫᏏ -10.9305 ▁ᎠᏂᏤ -10.9309 ▁ᎤᏆ -10.9312 ▁ᎾᏛᏁᎰ -10.9317 ▁ᎡᏙ -10.9327 ᏘᏃᎦ -10.9328 ᏤᎴ -10.9331 ᏁᏤᎸ -10.9334 ▁ᎤᏍᏆᎸᎯᏗ -10.9336 ▁ᏰᎵᎦ -10.9345 ▁ᎠᎪᎢ -10.936 ᏚᏃᏴᎬ -10.937 ᏓᏁᎸᎯ -10.937 ᎸᏍᏗᏱ -10.9375 ᎬᏓ -10.9381 ▁ᎢᏥᎭ -10.9387 ᏒᎲᏍᏗ -10.9394 ▁ᎣᏤ -10.9398 ▁Ꮢ -10.9403 ▁ᎠᏫᏃ -10.9406 ▁ᎪᏢ -10.9407 ▁ᎠᏓᏲᏁ -10.9408 ᏐᏁ -10.9408 ᏐᏗ -10.9416 ▁ᎢᏗᎦ -10.9419 ᎳᏗᏍᏗ -10.9434 ▁ᏣᏁᎩ -10.9439 ᏂᎲ -10.9441 ▁ᏦᎢᎭ -10.9451 ▁ᎾᏯ -10.9458 ᏲᎯᏎᏗᏱ -10.946 ᏓᏎᎪᎩ -10.9465 ᏓᏬᎯᎳ -10.9468 ᏙᏂ -10.9476 ᏩᏗᏒᎢ -10.9487 ▁ᎤᎵᏏᏅ -10.9517 ᎩᎵ -10.952 ▁ᎤᎵᎢ -10.9523 ▁ᏆᎾ -10.9529 ᏢᏅᎩ -10.9536 ᎯᎮᏍᏗ -10.9538 ᏍᏗᏍᎨ -10.954 ᎪᎦ -10.9542 ▁ᏚᏓ -10.9551 ᎨᎯᏓᏍᏗ -10.9554 ▁ᏫᏱ -10.9557 ᎮᎾ -10.9562 ᎪᎩ -10.9562 ᎩᎨᏳᎯᏳ -10.9568 ᏥᎦᏔᎲᎾ -10.9568 ᏓᏁᏗᏱ -10.9571 ᏍᏇᏚ -10.9573 ᎲᏍᎨᎢ -10.9574 ▁ᏓᏌ -10.9581 ᎾᏔ -10.9591 ᏍᏕᎾ -10.9599 ▁ᎢᏲ -10.96 ᎦᏕ -10.9621 ᎾᏛᎦ -10.9621 ᏤᏗ -10.9627 ▁ᎦᏘ -10.9628 ▁ᏙᏣ -10.9632 ᏌᏕ -10.9633 ᎵᏓᏍᏗᏱ -10.9636 ᏴᏔᏁᎢ -10.965 ▁ᎯᏃ -10.9651 ▁ᎠᏂᏉ -10.9662 ▁ᎢᏥᏍᏆᏂᎪ -10.9664 ▁ᎤᏪᏅ -10.9666 ᏥᎦᏔᎭ -10.9666 ᎳᎩᏍᏗ -10.9672 ▁ᏰᏣ -10.9679 ▁ᏣᏓᏰ -10.9683 ▁ᏂᏚᏅ -10.9695 ▁ᏱᏣᏓ -10.9707 ᏰᎸᏍᎬ -10.9709 ▁ᏓᎾᎵ -10.9712 ᏦᎯ -10.9717 ᏁᎰ -10.9724 ᏌᏅ -10.9726 ᎸᏅᎯ -10.9727 ᏛᏁᎭ -10.9733 ▁ᎠᎾᏘ -10.9742 ᎩᏏ -10.9742 ᏅᏔ -10.9743 ᏘᏅᏒᎩ -10.9759 ᏤᎷᎯᏒ -10.9766 ▁ᎦᎶᏁᏛᏰᏃ -10.9766 ᏡᎬ -10.9772 ▁ᎠᏏᏴᏫᏉ -10.9774 ▁ᏥᏕᏥ -10.9793 ᎪᎳ -10.9794 ▁ᎬᎾᏬ -10.9806 ᏰᏍᏗ -10.9812 ▁ᏱᏙᎩ -10.9815 ▁ᎤᏪᏯ -10.9816 ᎵᏍᎪᎸᏙᏗᏱ -10.9816 ᏛᏁ -10.9816 ▁ᏗᏍᏓ -10.9824 ᏕᏅᎯ -10.9829 ᏍᏗᏉ -10.9833 ᎦᏬᏂᎯᏍᏗ -10.984 ᏬᎢ -10.9841 ᏅᏤᎢ -10.9846 ᏛᏂᏏ -10.9865 ᎦᏎᏍᏕᏍᏗ -10.9873 ᏬᏣ -10.9879 ᏑᏫᏓ -10.9883 ᏍᏆᏂᎩᏗ -10.9885 ᏎᎮᏍᏗ -10.9891 ▁ᏚᏂᏍᏚ -10.9893 ▁ᎠᏚᎢᏍ -10.9897 ▁ᏂᎦᏪ -10.9898 ▁ᏓᏥᏲ -10.991 ᏂᏴᏛ -10.9914 ᏁᎳᎩ -10.9918 ▁ᏥᏅ -10.9925 ᎧᏯ -10.9928 ᏕᎰ -10.9932 ᏤᎦᏈᏃ -10.9932 ᎪᏩᏘᏍᎬᎾ -10.9933 ᏓᎾ -10.9936 ▁ᎠᏂᏧᏏᏃ -10.994 ▁ᏳᏓ -10.9943 ▁ᎠᎵᏥᏙ -10.9944 ᎻᏂ -10.9947 ▁ᎤᏰᎸ -10.9951 ▁ᎩᏂ -10.9958 ᏥᏁᏤᎸ -10.9961 ᏯᏙ -10.9973 ᏄᎪ -10.9982 ▁ᎤᏩᏗ -10.9989 ▁ᎦᎵᏦ -10.9994 ▁ᏂᏯ -10.9995 ▁ᏥᏍ -10.9998 ᏙᎭ -11.0003 ᏍᎦᎳᏁᎸ -11.0003 ᎪᏎᎭ -11.0014 ᎦᏅᏓᏗᏍᏙᏗ -11.0017 ▁ᏘᏅ -11.0023 ᏞᎢ -11.003 ▁ᎠᎦᏓ -11.0033 ▁ᎦᎶᏗ -11.0044 ᏛᏁᎯ -11.0055 ᏯᏅᏗ -11.0073 ᎵᏍᏕᎵᏍᎬ -11.0075 ▁ᏱᏂᎪ -11.0077 ᏰᎢ -11.009 ▁ᏧᏂᏅ -11.0096 ▁ᏣᎫ -11.0096 ᏍᏔᎾ -11.0098 ▁ᏓᏛ -11.0106 ▁ᎠᎩᏁ -11.0106 ▁ᎤᏓᏁ -11.0118 ᎦᏔᏁᎢ -11.0131 ᏂᎯ -11.0134 ▁ᎢᏣᏓᏅᏖ -11.0136 ᏟᏐᏗᏱ -11.0153 ᏕᏘᏱ -11.0156 ▁ᏂᎤ -11.0167 ᏲᏍᎬ -11.0169 ᏖᎢ -11.0173 ▁ᏚᏂᏁ -11.0181 ᎦᏔᎮᏍᏗ -11.0182 ▁ᎢᏥᏍᎦᎾ -11.0193 ᏁᏤᏗᏱ -11.0195 ▁ᎤᏅᏤ -11.0196 ᏘᏄᎦ -11.0196 ▁ᎢᏗᏣ -11.0198 ᎪᏕᏍᏗ -11.02 ᏎᎮ -11.0203 ᎪᎾᏛ -11.0204 ▁ᎠᏂᏍᎦᎢᎮ -11.0205 ᏣᏛ -11.0205 ᎵᎰ -11.0214 ▁ᎠᏎᎵ -11.0218 ▁ᎤᏂᏩ -11.0221 ▁ᏂᏚᏩ -11.0229 ▁ᎠᏂᏍᎦ -11.0246 ▁ᎠᏥᎸᏳ -11.0248 ᎬᏩᎶᏓᏁ -11.0252 ᏁᏤᎲ -11.0253 ᎾᏄᎪᏫᏍᏗᏱ -11.0256 ▁ᎠᏲᎱ -11.0265 ᏔᏲᏎᎭ -11.0266 ▁ᎤᏄ -11.0268 ▁ᏛᏆ -11.0271 ▁ᏧᏲ -11.0274 ᏴᏛ -11.0275 ᏚᎯ -11.0278 ▁ᎦᏬᏂ -11.0279 ▁ᎯᏥ -11.0281 ᏅᏓᏛ -11.0282 ᏇᏅᎯ -11.0283 ▁ᏗᏂᏅ -11.0293 ᏄᏬᏍᏗ -11.0297 ᎦᏄᎪᏫᏍᎦ -11.0299 ▁ᎤᏲᎢᏍᏗ -11.0304 ▁ᏕᏍ -11.0306 ᎷᏥ -11.0314 ▁ᏙᎩᏂ -11.0316 ▁ᎤᏪᎵ -11.0322 ᏁᎾ -11.0322 ᏛᏗᏍᎩ -11.0324 ▁ᎤᏁᏙᎸ -11.033 ▁ᎠᏚᏓᎴᏍᏗ -11.0336 ▁ᎤᎾᏣᎢ -11.0341 ▁ᏤᏈᏛ -11.0343 ▁ᏗᎧᏃᎩ -11.0343 ᏂᎵ -11.0348 ▁ᏫᏂ -11.0349 ▁ᏱᎬᎩ -11.0355 ▁ᏣᏤᏍᏙ -11.0356 ᎨᎾ -11.0359 ▁ᏙᏓᎧ -11.0371 ᏯᏗ -11.0373 ᎬᎭ -11.0373 ▁ᏦᎩᏂ -11.0377 ▁ᎦᏬᏂᏍᎨ -11.0386 ᏍᏆᎳ -11.039 ▁ᎤᏂᏰᎸᏎ -11.0396 ▁ᏥᏨ -11.0398 ᏓᏍᏗᏱ -11.0405 ▁ᏫᏚᎧᎾᏁ -11.0409 ▁ᎦᏍᎩᏓᏍᎬ -11.0409 ▁ᎠᏥᏃᏁᎴ -11.041 ▁ᏙᎩᎸᏫᏍᏓᏁᎲ -11.0411 ▁ᎢᏛᏗᏍᎬ -11.0414 ▁ᎠᎾᏛᎩᏍᎬ -11.0415 ▁ᎠᎾᎵᎮᎵᎬ -11.0416 ▁ᏗᎩᏲ -11.0419 ▁ᎤᏃᎯᏳᏒ -11.042 ▁ᏕᎤᎷᎬ -11.0421 ▁ᏂᏓᏕᏘᏴᎯᏒ -11.0422 ▁ᎠᏂᎩᎵᏲᎬ -11.0422 ᎾᏰᎯᏍᏗ -11.0423 ᏟᏏᏍᎪ -11.0423 ᎢᏏᎵ -11.0423 ᎡᏝᏪᎯ -11.0423 ▁ᎤᏒᏂᎴ -11.0427 ▁ᏗᎾᏓᎪᎾᏗᏍᎬ -11.0427 ᎠᎳᏂ -11.0428 ▁ᎯᏁᎬ -11.0428 ▁ᎠᏂᎧᎸ -11.0428 ▁ᎤᏃᎯᏳᏅ -11.043 ᎠᏍᎦᏯ -11.043 ▁ᎤᏁᎷᏁ -11.043 ᎾᏄᎪᏫᏎ -11.0431 ▁ᎠᎩᏍᏛᏗᏍᎬ -11.0431 ᏴᏔᏂᎸ -11.0433 ▁ᎠᎬᏗᏍᎬ -11.0433 ▁ᎠᎾᏕᎲᏍᎬ -11.0433 ▁ᏦᎢᏉ -11.0434 ▁ᎤᏓᏙᎵᏍᏔᏅ -11.0436 ▁ᎤᏍᏗᏰᏔᏁ -11.0436 ▁ᎤᎾᏓᏙᎵᏍᏔᏅ -11.0441 ᏆᎴ -11.0441 ▁ᎾᏆᎵᏍᏔᏅ -11.0443 ᏄᏕᏘᏴᎲ -11.0445 ▁ᎪᏙ -11.0446 ▁ᎦᏓᏙᎵᏍᏗᏍᎬ -11.0448 ▁ᎤᏦᎯ -11.0452 ▁ᎠᏇᏅᏒ -11.0453 ▁ᎤᏂᏰᎸᏅ -11.0455 ▁ᏭᏂᎶᏒ -11.0455 ▁ᎤᏪᎧᏅ -11.0456 ▁ᏥᏃᎮᏍᎬ -11.0458 ▁ᏅᏓᎦᎵᏍᏙᏗᏍᎬ -11.0458 ▁ᎠᎾᏓᎪᎾᏗᏍᎬ -11.046 ▁ᎢᏗᏂ -11.046 ᏈᎳ -11.0461 ▁ᏗᎦᏁᎸ -11.0462 ▁ᏧᎶᏒ -11.0463 ▁ᎠᏉᏪᎳᏅ -11.0463 ▁ᏨᏌ -11.0465 ▁ᏅᏗᎦᎵᏍᏙ -11.0466 ᏓᏍᏕᎸᏗ -11.0467 ▁ᏧᏓᎴᏁ -11.0468 ᎠᏁᎯ -11.0468 ▁ᏭᏓᎪᎾᏛ -11.0469 ▁ᎢᏯᏅᏁ -11.047 ▁ᏚᎪ -11.0471 ▁ᎤᏙᎯᏳᏁ -11.0474 ▁ᏧᎾᏛᏐᏅ -11.0474 ▁ᎢᏓᎵᎮᎵ -11.0475 ▁ᏗᎩᎾᏫ -11.0476 ▁ᎢᏳᎵᏍᏔᏂᏓᏍᏗ -11.0479 ᎸᏙᏗ -11.0479 ᏁᎵᏍᎬᎾ -11.0479 ᏎᎪᎩᏍᏗ -11.0479 ▁ᏗᎪᏪᎳᏅ -11.0481 ᏲᎯᎲ -11.0481 ▁ᎨᏥᏛᏙᏗ -11.0481 ᏥᎾᏝᎥᎾ -11.0481 ▁ᏓᎦᏥᏯ -11.0482 ▁ᏕᏣᏓᏂᎸᏨ -11.0483 ▁ᏭᏂᎶᎯᏍᏗ -11.0483 ▁ᏂᎦᎵᏍᏔᏅ -11.0483 ▁ᏗᏥᎧᎿᏩᏛᏍᏗ -11.0484 ▁ᏗᏍᏆᏂᎪᏙᏗ -11.0485 ▁ᏣᏍᏆᏂᎪᏙᏗ -11.0488 ▁ᏭᎶᎯᏍᏗ -11.0491 ▁ᏗᎦᎵᏦ -11.0492 ▁ᎢᏳᏟᎶ -11.0494 ▁ᎠᏁᎵ -11.0495 ▁ᎤᏂᏃᎮᏗ -11.0495 ▁ᎤᎵᏂᎩᏗ -11.0496 ▁ᏩᎾᎢ -11.0497 ▁ᏗᏣᎸᏫᏍᏓᏁᏗ -11.0497 ▁ᏩᏥᎳ -11.0498 ᏠᎾᏍᏛᎾ -11.0499 ▁ᎪᎵᎬ -11.0499 ▁ᎨᏨ -11.05 ᎰᏢᏅᎭ -11.05 ᏁᏔᏁ -11.0501 es -11.0501 ᏥᏁᎸᎯ -11.0501 ▁ᎤᏂᎸ -11.0502 ᏦᎢ -11.0502 dinot -11.0505 ▁ᎠᎰᎵᏆᎹ -11.0505 ▁ᎤᎧᏖᏃᎴ -11.0505 ▁ᎤᎬᏩᎳ -11.0505 ▁ᎱᏁᏅᏎ -11.0505 ▁ᎾᎵᏍᏓᏴᎲᏍᎬᎾ -11.0505 ▁ᏂᏥᎪᎸᎾ -11.0505 ▁ᏂᏥᏪᎠ -11.0505 ▁ᏕᏏᎶᏂᎦ -11.0505 ▁ᏗᎦᏃᏣᏝᏍᎩ -11.0505 ▁ᏗᎦᏌᏆᎸ -11.0505 ▁ᏧᎾᏍᏕᏥ -11.0505 ▁ᏧᏂᎳᎾᎢ -11.0505 ▁ᏬᎩᎶᏒᎩ -11.0505 ▁ᏭᎩᏨᏅ -11.0505 ▁ᏱᏕᏍᎬᏏ -11.0505 ▁ᎠᏳᎾᎦ -11.0505 ▁ᎤᏔᎳᏬᏎᎢ -11.0505 ▁ᏧᏩᏗᏔᏯ -11.0505 ▁ᏱᏅᏎᎦᎩ -11.0505 ▁ᎤᏓᏥᎾᏍ -11.0505 ▁ᎤᏔᎴᎦᏒ -11.0505 ▁ᎤᏩᏯᎨᎢ -11.0505 ▁ᏂᏣᏛᎿᏕᎨᏍᏗ -11.0505 ▁ᎤᏕᏯᏔᏁᎴ -11.0505 ▁ᏄᎾᏓᏅᏛᎾ -11.0505 ▁ᏗᎦᏩᏒᎩ -11.0505 ▁ᎤᏓᏩᏗᏍᏙᏛ -11.0505 ▁ᎾᏅᏛᏁᎰ -11.0505 ▁ᏅᏧᎵᏍᏙᏔᏁ -11.0505 ▁ᏍᎩᏁᎲᏏ -11.0505 ▁ᎠᎩᏍᏓᏩᏕᎨᏍᏗ -11.0505 ▁ᎠᎵᏰᎢᎶᎸᎭ -11.0505 ▁ᎢᏣᏛᏅᎢᏍᏙᎢ -11.0505 ▁ᎣᏍᏓᏓᏤᎵ -11.0505 ▁ᎤᏁᎳᏫᏎᎸ -11.0505 ▁ᎨᎢᎾᏂ -11.0505 ▁ᏗᏔᎳᏗᏍᏗᏱ -11.0505 ▁ᏥᏂᏥᏪᎭ -11.0505 ▁ᏗᏠᏍᎩ -11.0505 ▁ᎠᏓᏪᎵᎩᏍᎩ -11.0505 ▁ᏄᎾᏛᎾᏕᎬ -11.0505 ▁ᏫᏂᏨᎦ -11.0505 ▁ᎤᎬᏩᎴ -11.0505 ▁ᎤᏍᏔᏩᏛ -11.0505 ▁ᏙᏓᎫᎪᏓᏁᎵ -11.0505 ▁ᏅᏓᏣᏓᎴᏅᎯ -11.0505 ▁ᏗᎫᎪᏓᏁᎯ -11.0505 ▁ᏂᎪᎯᏳᎲᏍᎬᎾ -11.0505 ▁ᎢᎦᏪᏍᎩ -11.0505 ▁ᎥᎨᏒᎩ -11.0505 ᏁᏉᏣᏖᏍᏗ -11.0505 ▁ᎢᎬᏩᎾᏛᏁᏗ -11.0505 ▁ᎤᎬᏩᎸ -11.0505 ▁ᎤᎵᏘᎾᎥ -11.0505 ▁ᏥᏕᏣᎪᎲᎩ -11.0505 ▁ᏅᏓᏥᏴᏁᎵ -11.0505 ▁ᏴᎦᏥᏛᏓ -11.0505 ▁ᏂᎬᏠᏍᎬᎾ -11.0505 ▁ᎠᎵᏛᏓ -11.0505 ▁ᎠᎨᏲᏅ -11.0505 ▁ᏣᏃᎮᎸᎩ -11.0505 ▁ᏍᎨᏫ -11.0505 ▁ᏱᏂᎦᏛᏁᎭ -11.0505 ▁ᏗᎪᏏᏏᏍᎩ -11.0505 ▁ᏤᎿᎠ -11.0505 ▁ᎥᏓᎷᎶᏗ -11.0505 ▁ᏕᎭᏓᏅᎡᎮᏍᏗ -11.0505 ▁ᏧᎾᎴᏐᏛ -11.0505 ▁ᏗᏂᎧᎿᏩᏕᎩ -11.0505 ▁ᏥᏨᏰᎳᏗᏙᎲᎩ -11.0505 ▁ᎤᏩᏃᏪ -11.0506 ▁ᏥᏚᎸᏫᏍᏓᏁᎭ -11.0506 ▁ᏕᎪᏢᏎᏍᏗ -11.0506 ▁ᏚᏜᏅᏛ -11.0506 ▁ᏂᏕᎤᏍᏕᏍᏗ -11.0506 ▁ᏔᏘᏂᏙᎯ -11.0506 ▁ᏅᏓᎬᏯᏛᏁᎵ -11.0506 ▁ᎤᎾᏗᎦᎴᏲᏨᎯ -11.0506 ▁ᏄᏍᎦᏅᏨᎾ -11.0506 ▁ᏂᎩᏴᏁᎸ -11.0506 ▁ᏕᎯᏁᏤᎮᏍᏗ -11.0506 ▁ᎰᏌᎾ -11.0506 ▁ᎤᎾᎵᏍᏔᏴᏗ -11.0506 ▁ᏂᎨᎵᏍᎬ -11.0506 ▁ᏗᎾᏂᏏᎲᏍᎩ -11.0506 ▁ᏗᏣᏓᎵᎢ -11.0506 ▁ᎠᎾᏛᏁᎵᏍᎩ -11.0506 ▁ᏕᏥᏙᎨᏍᏗ -11.0506 ▁ᏍᎩᏲᎮᏍᏗ -11.0506 ▁ᏗᏥᏲᎱᏒᎯ -11.0506 ▁ᎤᏄᏬᏍᏕᏍᏗ -11.0506 ▁ᏂᏪᏍᎬᎢ -11.0506 ᏤᏬᎩ -11.0506 ans -11.0506 ▁ᏂᏑᏪᏎᎴᎢ -11.0506 ᎵᏍᎪᎸᏗᏍᎨᏍᏗ -11.0506 ▁ᏅᏓᏨᏁᎵ -11.0506 ▁ᏱᏄᏪᏒ -11.0506 ▁ᏗᏂᏲᎤᎵ -11.0506 ▁ᎤᏂᎾᏰᏎᎢ -11.0506 ▁ᎢᏣᎦᏌᏯᏍᏓ -11.0506 ▁ᏧᏯᏍᎦ -11.0506 ▁ᎤᏩᎾᏕ -11.0506 ▁ᎠᎩᏍᎦᏅᏥᏙᎸᎢ -11.0507 ▁ᎠᎾᏁᎸᏗᏍᎬ -11.0507 ▁ᎢᏳᏩᎦᏘ -11.0507 ▁ᏚᏌᎯᎸ -11.0507 ▁ᏂᏥᏍᎦᎢᎲᎾ -11.0507 ▁ᏚᏓᏂᎸᏨ -11.0507 ▁ᏧᎾᏘᏂᏙᎯ -11.0507 ▁ᏗᏣᏘᏂᏙᎯ -11.0507 ▁ᏂᎦᏪᏍᎪᎢ -11.0507 ▁ᎤᏁᎾᎢ -11.0507 ᏙᎴᏇ -11.0507 ay -11.0507 ▁ᎤᏃᏢᏔᏅᎩ -11.0507 ▁ᎨᎵᏌᏕ -11.0507 ▁ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ -11.0507 ▁ᎨᎦᎫᏴᏓᏁᏗ -11.0507 ▁ᏚᏆᏛ -11.0507 ▁ᏙᏛᏛᏔᏂ -11.0507 ▁ᏗᎾᏓᎾᏌᎲᏍᎩ -11.0507 ▁ᎤᏛᏒ -11.0507 ▁ᎭᏓᏅᏓᏓ -11.0507 ▁ᏗᏕᏲᎲᏍᎩ -11.0507 ▁ᏧᏔᎾᎶ -11.0507 ▁ᏲᏥᎦᏔᎭ -11.0508 ▁ᎢᏨᏰᎳᏗᏙᎭ -11.0508 ▁ᏧᎳᏏᏕᏅ -11.0508 ▁ᎢᏣᏓᏅᏟ -11.0508 ▁ᎦᏙᎴᎣᏍ -11.0508 ▁ᎠᏂᎶᎻ -11.0508 ▁ᏂᎦᏚᏏᏁ -11.0508 ▁ᎤᏗᏌᏓᏛ -11.0508 ▁ᎠᎵᏍᎦᏁᏛ -11.0508 ▁ᎡᎭᎦᏔ -11.0508 ▁ᏳᏓᏬᎠ -11.0508 ▁ᎠᏂᏬᏂᏍᎩ -11.0508 ▁ᏂᏤᎲᎾ -11.0508 ▁ᎨᏥᏍᎦᎩ -11.0508 ᎸᏂᏗᏍᎩ -11.0508 ▁ᎠᎩᏬᏂᎯᏍᏗᏱ -11.0508 ▁ᎾᏅᏁᎲ -11.0508 ▁ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ -11.0508 ▁ᏩᎵᏰᎢᎶᎯᎭ -11.0509 ▁ᎠᏛᏂᏗᏍᏙᏗ -11.0509 ▁ᎢᏥᎪᏩᏘᏍᎨᏍᏗ -11.0509 ▁ᏣᏂᎧᎳ -11.0509 ▁ᏭᏓᏐᎴ -11.0509 ▁ᏓᎩᎸᏫᏍᏓᏁᎸ -11.0509 ▁ᏂᎦᎾᏰᏍᎬᎾ -11.0509 ▁ᎢᏣᏤᎵᎪᎯ -11.0509 ▁ᎢᏰᏨᏁᎸᎯ -11.0509 ▁ᎡᏣᏅᏏᏓᏍᏗ -11.0509 ▁ᎤᏓᏴᏛ -11.0509 ▁ᏧᏚᎪᏔᏅ -11.0509 ▁ᏓᏥᏍᏓᏱᏕᎵ -11.0509 ▁ᏤᏌᏂ -11.0509 ▁ᎤᏮᏙᏗᏱ -11.051 ▁Ꮰ -11.051 ▁ᎣᎾᏂ -11.051 ▁ᏂᏣᏓᏅᏛᎾ -11.051 ▁ᎤᎾᎵᏏᎾᎯᏍᏗ -11.051 ▁ᎬᎩᏁᏉᏤᏗᏱ -11.051 ▁ᏚᏕᏘᏴᏌᏗᏒ -11.051 ▁ᏂᏍᎦᏅᎾ -11.051 ▁ᏂᏣᏛᏁᎭ -11.051 ᏓᏬᏅᏛ -11.051 ▁ᏓᎾᏤᎸ -11.051 ▁ᏣᏃᏍᎩᏒᎩ -11.051 ▁ᏯᏆᏚᎵᏍᎨ -11.051 ▁ᎤᏬᏯᏁᏒ -11.051 ▁ᏕᎬᏆ -11.051 ▁ᏗᎧᎿᏩᏕᎩ -11.051 ▁ᎠᎪᏎ -11.051 ▁ᎣᏩᏒ -11.0511 ▁ᎠᏇᏲᏅ -11.0511 ▁ᎤᏯᏖᎾ -11.0511 ▁ᎤᏔᏂᏗᎨ -11.0511 ▁ᏭᎪᎮ -11.0511 ▁ᎠᎩᏍᏕᎵᏍᎩ -11.0511 ▁ᏗᎩᏲᎯᏍᏗᏱ -11.0511 ▁ᏗᏂᎴᏂ -11.0511 ▁ᎤᏂᎬᎥᏍᎬ -11.0511 ▁ᏣᏓᏴᎳᏔᏍ -11.0511 ▁ᏭᏂᎷᏣ -11.0511 ▁ᎹᏓ -11.0512 ▁ᎠᎱᎵ -11.0512 ▁ᏧᏂᏴᏍᏕᏍᎩ -11.0512 ▁ᎢᏥᏩᏛᏗᏱ -11.0512 ▁ᏕᎤᏙᏍᏛ -11.0512 ▁ᎤᎾᏕᏘᏱ -11.0512 ▁ᎬᏩᏃᎮᏍᎩ -11.0512 ▁ᏙᏓᏰ -11.0512 ▁ᎡᏥᎾᏰᏍᎨᏍᏗ -11.0512 ▁ᏣᎢᏎᏍᏗ -11.0512 ▁ᎡᏤᎾ -11.0512 ▁ᏛᏓᎴᎲᏍᎬᎩ -11.0512 ▁ᎤᏂᏃᏁᏗᏱ -11.0513 ▁ᏁᎳᏚ -11.0513 ▁ᏚᎿᏍᏕᏢ -11.0513 ▁ᏱᏙᎨᏥ -11.0513 ▁ᏗᎦᏟᏓ -11.0513 ▁ᏚᏅᏍᏓᏕᎴ -11.0513 ▁ᏗᏣᎦᏴᎵᎨ -11.0513 ▁ᎠᎩᏃᎮᏍᎩ -11.0513 ▁ᏫᏥᎦᏘ -11.0513 ▁ᏗᏆᎵᎢ -11.0513 ᏨᏁᏗ -11.0513 ▁ᎠᎾᏛᎬᎦ -11.0514 ᎦᏘᎴᏅ -11.0514 ▁ᎤᏍᏗᎩᏳ -11.0514 ▁ᎪᏢᏍᎩ -11.0514 ▁ᎢᏏᎦ -11.0514 ▁ᏍᎩᏅᏏᏓᏍᏗ -11.0514 ▁ᏗᏲᏍᏙᏗ -11.0514 ᎾᏌᎾᎩ -11.0514 ▁ᏏᏐᎢ -11.0514 ▁ᏥᏄᎵᏍᏔᏅ -11.0514 ᏂᎬᎬ -11.0515 ▁ᎢᏥᎷᎩ -11.0515 ▁ᎢᏨᏃᏁᎭ -11.0515 ▁ᏗᎧᏃᎨᏂ -11.0515 ▁ᎡᎿᎢ -11.0515 ▁ᏣᏃᏎᎰᎢ -11.0515 ▁ᎦᏟᎲ -11.0515 ▁ᏭᏴᎮ -11.0515 ▁ᎪᏱᏅᏍᏗ -11.0515 ▁ᎡᏥᏍᏕᎸᏗᏱ -11.0516 ▁ᎢᏥᎦᏔᎲ -11.0516 ▁ᏲᏨᏗᏍᎨ -11.0516 ▁ᎢᏥᎬᏫᏳᎯ -11.0516 ᏍᏓᏩᏛᏍᏗᏱ -11.0516 ▁ᎠᎵᏥᏙᎲᏍᎬ -11.0516 ▁ᎤᏂᏂᏴᏗᏱ -11.0516 ▁ᎠᏥᎸᎨᎳᏍᏗ -11.0516 ▁ᏂᎦᎡᏍᏗ -11.0517 ▁ᏂᏨᏴᏁᎭ -11.0517 ▁ᏗᏨᏲᎯᏎᏗᏱ -11.0517 ▁ᎤᏛᏓᏍᏓᏁᎴ -11.0517 ▁ᏓᎪᏄᎸ -11.0517 ▁ᎡᏚᏥ -11.0517 ▁ᎤᎾᏙᎴᎰᎯᏍᏗᏱ -11.0517 ▁ᎬᏁᏤᎭ -11.0517 ▁ᎠᏂᎦᏲᎵᏳ -11.0517 ▁ᏧᏬᎳ -11.0517 ▁ᎠᎩᏰᎸᎰ -11.0517 ▁ᏗᏑᏱ -11.0518 ᎵᏛᏓᏁ -11.0518 ▁ᎤᏛᎪᏗ -11.0518 ▁ᏚᎵᏍᏚᎢᏎᎢ -11.0518 ▁ᎢᏥᎦᏴᎵᎨ -11.0518 ▁ᎦᏓᎷᎪᏗ -11.0518 ▁ᎬᎥᏏ -11.0519 ▁ᏚᎸᏫᏍᏓᏁᎮᏍᏗ -11.0519 ▁ᎤᎵᏖᎸᏅᎩ -11.0519 ▁ᏓᏦᎯᏍᏛ -11.0519 ▁ᎬᏩᏔᏲᏎᎸᎩ -11.052 ▁ᎠᏴᏓᏆᎶᏍᎩ -11.052 ▁ᏚᏘᏅᏒᎩ -11.052 ▁ᏍᎩᎷᏥᏏ -11.0521 ▁ᏭᏅᏥᎴ -11.0521 ▁ᏧᏕᏲᏅᎯ -11.0521 ▁ᎡᏣᎫᏴᎡᏗ -11.0521 ▁ᏗᏙᎴᏆᏍᏗ -11.0521 ▁ᏗᏣᏄᏬ -11.0521 ▁ᎦᎶᏐᏅᎭ -11.0521 ▁ᏍᏋ -11.0522 ▁ᎤᎾᏤ -11.0522 ▁ᎠᎾᏗᏍᎪ -11.0522 ▁ᏣᎾᎥᎢ -11.0522 ▁ᏂᎦᏥᏴᏁᎸᎭ -11.0522 ▁ᏓᎬᎩᎵ -11.0522 ▁ᎢᏥᎪᏩᏘᎭ -11.0522 ▁ᎣᏓᎵ -11.0522 ▁ᏗᎵᏒᏍᏗ -11.0523 ▁ᏭᏃᏁᎸᎩ -11.0523 ▁ᏧᎪᎸ -11.0523 ▁ᏍᎩᎥᏏ -11.0524 ▁ᏗᎦᏘᎴᎩ -11.0524 ▁ᏥᏂᎦᎵᏍᏗᎭ -11.0524 ▁ᏩᏍᏘ -11.0524 ▁ᏗᎦᎳᏫᎩ -11.0525 ▁ᏫᎨᏥᏯᏅᏛ -11.0525 ᏰᎸᏍᎦ -11.0525 ▁ᏗᏂᏢᏗᏱ -11.0525 ▁ᏧᏂᏲᎱᎯᏍᏗᏱ -11.0525 ▁ᏅᎩᏦᏁ -11.0526 ▁ᎯᎰᎵ -11.0526 ▁ᏂᎨᏳᏎᏍᏗ -11.0526 ▁ᎠᏂᏍᏓᏩᏕᎩ -11.0526 ▁ᏅᎦ -11.0526 ▁ᎤᎾᎵᏃᎮᎴ -11.0526 ▁ᎦᏂᎳ -11.0526 ▁ᎠᏛᎩᏍᎨᏍᏗ -11.0527 ▁ᎾᏂᏪᏍᎨᏍᏗ -11.0527 ▁ᎤᎾᏓᏓᏍᎩ -11.0527 ▁ᎦᎸᏉᏗᏍᎨ -11.0527 ᏨᎭ -11.0528 ▁ᎨᏥᏯᏅᏛ -11.0528 ᏃᎯᏎᎲ -11.0528 ▁ᎤᎵᏃᎮᏔᏅᎢ -11.0528 ▁ᎠᎾᏓᏙᎵᏍᏗᏍᎬ -11.0528 ▁ᏕᎦᏅᏌᏛ -11.0529 ▁ᎢᏥᏔᏲ -11.0529 ▁ᏄᎾᎵᏍᏔᏅ -11.053 ▁ᎠᎩᏠᏫᏍ -11.053 ▁ᏥᏤᎭ -11.0531 ▁ᎤᏂᎨᏳᎯ -11.0531 ▁ᏗᏆᏓᏅᏛ -11.0531 ▁ᎡᏦᎢᏳᏒ -11.0531 ▁ᎠᏓᏙᎵᏍᏓᏁᎯ -11.0531 ▁ᎤᎧᎵᏨ -11.0532 ▁ᏄᎵᏂᎬᎬ -11.0532 ▁ᏄᎾᏓᎴ -11.0533 ▁ᎢᎨᏎᎢ -11.0533 ▁ᏫᏚᏂᏯᏅᎲ -11.0534 ᏓᎸᏛ -11.0534 ▁ᎤᏍᏓᏲᏒ -11.0535 ▁ᏓᏰᏏ -11.0535 ᏢᏔᏂ -11.0535 ▁ᎠᏩᎾᎦᎳᎯᏳ -11.0536 ▁ᎤᎾᏓᏅᏒᎩ -11.0537 ▁ᎾᏅᏁᎭ -11.0537 ▁ᎢᏥᎷᏤᏗᏱ -11.0537 ▁ᏰᎵᎦᏯ -11.0537 ▁ᏄᏩᏂᏌᏅ -11.0538 ᏒᎾᏔᏅ -11.0538 ▁ᏣᏰᎯ -11.0539 ▁ᏕᎾᏓᎪᎲᏳ -11.0539 ▁ᏭᏂᏴᎸᎩ -11.0539 ▁ᎯᏍᎩᏍᎪᎯ -11.054 ▁ᏗᎦᏚᎲᏍᎩ -11.054 ▁ᎠᎪᏩᏘᏍᎬ -11.054 ▁ᎠᏂᎷᎩ -11.054 ▁ᎤᏕᎰᎯᏍᏗᏳ -11.0541 ▁ᎢᏯᏅᏁᎯ -11.0541 ▁ᏣᏓᏅᏖᏍᏗ -11.0542 ▁ᎾᎦᎸᎳᏗ -11.0542 ▁ᎯᎷᎦ -11.0542 ▁ᏯᏃᏉ -11.0543 ᎷᎬ -11.0543 ▁ᏥᏍᎦᏅᏤᎸ -11.0544 ▁ᎤᏁᏙᎸᎯ -11.0544 ▁ᏣᏚᎵᏍᎪ -11.0544 ▁ᎦᏓᎥ -11.0545 ▁ᎬᏩᎪᎮᎢ -11.0545 ▁ᎿᏛᏁᎲ -11.0545 ᏚᎸᏅᎥᏍᎬ -11.0545 ▁ᎤᏍᏉᎵᏱ -11.0545 ᎹᏂ -11.0545 ▁ᎤᏓᏔᏅ -11.0547 ▁ᎤᏓᏅᏍᏗᏱ -11.0547 ▁ᎡᏈ -11.0547 ▁ᎣᏤᎯ -11.0548 ▁ᏚᎾᎴᏅᎩ -11.0548 ᏅᏓᏛᎩ -11.0548 ▁ᎠᎦᏛᏅᎯ -11.055 ᎣᏏᏉ -11.055 ▁ᏕᏣᎸᏫᏍᏓᏁᎲᎢ -11.055 ▁ᏓᎩᏏᎳᏛᎢ -11.055 ▁ᏚᏬᏢᏁᎢ -11.055 ▁ᏧᏑᏰᏛ -11.055 ▁ᎤᎾᎵᏎᎢ -11.0551 ▁ᏗᎬᏔᏅᎯ -11.0551 ▁ᎢᎦᎵᏍᏕᎸᏙᏗ -11.0552 ᏁᏅᏍᏗᏱ -11.0552 ᏂᏃᏁᎴ -11.0552 ▁ᎤᎳᏏᏕᏂ -11.0553 ▁ᎪᎵᏍᏗᏱ -11.0553 ▁ᎢᎨᏨᏁᏗ -11.0554 ▁ᏚᏂᎧᏁᎢ -11.0554 ▁ᎾᏆᏍᏗ -11.0554 ▁ᎠᏇᎷᏅ -11.0558 ▁ᎠᏯᏫᏍᎩ -11.0558 ▁ᏚᏪᎧᎲ -11.0559 ▁ᏓᏰᏂ -11.0559 ▁ᎤᏂᎦᎸ -11.0559 ▁ᎠᏂᏍᏆᏂᎪᏗᏍᎩ -11.0561 ▁ᎤᎸᏁᎢ -11.0561 ▁ᏧᏁᎶᏗ -11.0561 ▁ᎠᏇᏅᏒᎩ -11.0561 ▁ᏦᏍᏛ -11.0562 ▁ᏦᎴᏍᏗ -11.0562 ▁ᏴᎨᏨ -11.0562 ▁ᏂᏚᏂᏪᏎᎴᎢ -11.0562 ▁ᎤᏂᏰᎸᎭ -11.0563 ᎿᎷᏒ -11.0564 ᎦᏁᎳᏅᎯ -11.0565 ▁ᎤᏓᏅᏍᏗ -11.0565 ▁ᏪᎯ -11.0566 ▁ᏱᏍᏆ -11.0566 ▁ᎤᎵᏍᏙᏔᏅ -11.0567 ▁ᏕᎤᎸᏫᏍᏓᏁᎲᎢ -11.0568 ▁ᎲᏅᎢ -11.0569 ▁ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ -11.0569 ▁ᏄᎵᏍᏓᏁᎸᎢ -11.0569 ▁ᏓᏘᏁᎲᎢ -11.0569 ▁ᏚᏂᎸᏫᏍᏓᏁᎮ -11.0569 ᎧᎵᎢᏍᏗᏱ -11.0569 ▁ᎠᏓᎴᏒᎢ -11.057 ▁ᎤᎫᏴᎡᏗ -11.057 ▁ᎤᏁᏓᏍᏗᏱ -11.057 ▁ᏚᏓᏘᎿᎥᎢ -11.057 ▁ᏪᏙᎮ -11.057 ▁ᎤᏓᏅᎡᎴᎢ -11.0571 ▁ᎠᎧᏘ -11.0571 ▁ᏕᎦᏬᏁᏗᏍᎬᎩ -11.0572 ▁ᎨᎳᏍᏙᏗ -11.0572 ▁ᎤᏁᎷᎬᎩ -11.0573 ▁ᎠᏓᏁᏣᏍᏚᎶᎩ -11.0573 ▁ᎠᏰᎸᏒᎩ -11.0574 ᏛᏗᏍᎪᎢ -11.0575 ▁ᎤᏚᎵᎭ -11.0576 ᎦᏂᏌᎲ -11.0577 ▁ᎤᏬᎯᏳᏅᎩ -11.0577 ▁ᏧᎧ -11.0578 ▁ᎤᏂᏁᎢᏍᏔᏅ -11.0578 ᎦᏌᎴ -11.0578 ▁ᏓᎻ -11.0581 ᏆᏠ -11.0582 ▁ᎨᏍᏓ -11.0582 ᏰᏲᎲᏍᎩ -11.0585 ᏃᎯᏎᏗ -11.0586 ▁ᏗᏍᏓᏱ -11.0587 ▁ᎠᏂᏍᎦᎢᎮᎢ -11.0588 ▁ᏚᎾᏄᎪᏫᏎᎸ -11.0588 ▁ᎠᏁᎵᏍᎪ -11.0592 ᏙᏱ -11.0592 ▁ᎤᎵᎮᎵᏨᎯ -11.0593 ᏠᎯᏍᏓ -11.0593 ▁ᏥᏯᎥᎢ -11.0593 ▁ᎡᎶᏗᏏ -11.0594 ▁ᏑᏟᎶᏛᏉ -11.0594 ᎨᏳᏅᎾ -11.0594 ▁ᏚᏂᏍᏘᏰᎬ -11.0597 ▁ᏂᏓᏛᏁᎲ -11.0598 ▁ᏥᎪᎥᎩ -11.0601 ▁ᏧᎴᎯᏐᏗ -11.0602 ▁ᏕᏨᏅ -11.0603 ▁ᏄᏕᏘᏴᎲ -11.0603 ▁ᎤᏒᏂᎴᎢ -11.0605 ▁ᎤᏃᏛ -11.0607 ▁ᏌᎾ -11.0608 ▁ᎤᏂᏂᏴᎮ -11.0608 ▁ᎠᎾᏗᏍᎬᎢ -11.0609 ▁ᎦᏓᏍᎬ -11.061 ▁ᎤᎾᏄᎪᏫᏏ -11.061 ▁ᏁᏨᏁᎸ -11.061 ▁ᏚᏂᏏᏂᏙᎸ -11.061 ▁ᎦᏰᏥᏐᏢ -11.0611 ▁ᏂᏕᏨᏁᎸ -11.0611 ᏣᏉᎯ -11.0613 ▁ᏚᏯᏪ -11.0614 ▁ᏦᏨ -11.0615 ▁ᎨᏥᏚᎢᏍᏓᏁᎸ -11.0618 ᏳᏓᎴᏏ -11.0621 ᏓᏂᎧᎿᏩᏕ -11.0621 ▁ᏧᏂᏲ -11.0621 ▁ᏅᏔ -11.0622 ▁ᎤᏪᏴᎢ -11.0624 ▁ᎤᏰᎸᏅᎩ -11.0624 ᏓᏙᎵᏍᏔᏂ -11.0624 ▁ᎵᏳ -11.0625 ᏗᎦᎵᏍᏙᏗ -11.0627 ᏙᎥᎯᏍᏗ -11.0628 ▁ᎤᏂᏅᏅ -11.0629 ▁ᎤᎾᏄᎪᏫᏎᎴᎢ -11.063 ▁ᎢᏍᎩ -11.0631 ▁ᎠᎴᏂᏍᎬ -11.0633 ▁ᎠᏁᎵᏍᎬᎩ -11.0633 ᏁᎩᏎᎢ -11.0634 ᏲᎵᎸ -11.0637 ᏙᎲ -11.0638 ▁ᏂᎨᏎᎢ -11.0638 ▁ᎡᎵᏍᎬᎢ -11.0639 ᏓᏁᎲ -11.064 ▁ᏓᏂᎧᏅᎢ -11.064 ▁ᎠᏂᏙᎾᎡᎢ -11.0641 ▁ᏓᏂᎳᏫᎥᎢ -11.0641 ▁ᎾᏋ -11.0641 ▁ᏂᏚᏪᏎᎸᎢ -11.0641 ᏂᎷᏥ -11.0643 ▁ᎢᏣᏕᎶᏆ -11.0643 ▁ᏄᏛᏁᎸᎾ -11.0645 ▁ᎤᏛᎦ -11.0648 ▁ᎤᎩᏎ -11.065 ▁ᏭᏂᏴᎮ -11.0653 ▁ᎯᎩ -11.0654 ▁ᎡᎳᏪᏉ -11.0655 ▁ᏣᎩᏍᏗ -11.0656 ▁ᏗᎦᏙᏗ -11.0659 ▁ᏚᏲᎯᏎᎴ -11.0663 ▁ᏧᏬᎸᎢ -11.0664 ▁ᎾᏉᎯᏳ -11.0664 ▁ᎠᎦᏔᎯ -11.0666 ᎦᏙᎥᏒᎯ -11.0668 ▁ᏥᏕᎭ -11.0671 ▁ᏄᎵᏍᏔᏁᎴ -11.0672 ▁ᏣᎪᏩᏘᏍᎪ -11.0673 ᎳᏅᏛ -11.0674 ▁ᏥᏰ -11.0675 ▁ᎤᏍ -11.0676 ▁ᏄᏂᏪᏎᎸ -11.0677 ▁ᎠᏚᎢᏍᏛᎢ -11.0678 ᏪᎳ -11.0682 ▁ᏟᏗ -11.0685 ᎯᏉ -11.0686 ▁ᎤᎾᏓᏅᏖ -11.0689 ▁ᏩᎾᎢᏒ -11.0689 ▁ᎤᏂᏲᎭ -11.0692 ▁ᎤᏕᏗ -11.0692 ᎦᏍᎦᏂᏗᏢ -11.0696 ᏍᏕᎸ -11.0698 ▁ᏫᏯ -11.0699 ▁ᏗᎦᏘᏯ -11.07 ▁ᎦᏁᎲᎩ -11.0701 ▁ᎠᎾᎵᏥᏙᎲᏍ -11.0701 ▁ᎤᏢᏗ -11.0702 ▁ᎠᏂᏙᎾᎥᎩ -11.0702 ▁ᏣᏉᎩ -11.0704 ᎴᏂᏓᏍᏗ -11.0704 ▁ᎣᎦᎵᎪ -11.0705 ᏓᎴᏅᎯ -11.0707 ▁ᏚᏅᏎᎢ -11.071 ▁ᏱᏗᏓ -11.0714 ᏗᏔᎯ -11.0715 ᏔᎳᏬᎯᏍᏗ -11.0715 ▁ᏄᎾᏛᏁᎸᎢ -11.0716 ᏆᎳ -11.0717 ▁ᏚᎾᎵ -11.0721 ᏲᎦᏛᏅ -11.0721 ▁ᎤᏩᎨᏫᏎ -11.0722 ▁ᏪᏥ -11.0723 ᏅᏓᏗᏍᎬ -11.0723 ▁ᎠᎩᏍᎨᏍᏗ -11.0726 ▁ᎧᏃᎮᏍᎬᎢ -11.0726 ᏚᎪᏓᏁᏗ -11.0728 ▁ᎠᏍᏆᎸ -11.0732 ▁ᎠᏂᎵ -11.0735 ▁ᎦᏅᎬᎢ -11.0735 ▁ᎬᏩᎷᏤᎮ -11.0737 ▁ᎢᏧᏓᎴ -11.0741 ▁ᎤᏂᏄᎪᏨᏃ -11.0745 ᏤᎯ -11.0752 ▁ᎤᎶᏗ -11.0756 ▁ᏇᎵ -11.0756 ▁ᎠᏗᏍᎨ -11.0757 ᏃᎮᎮᎸ -11.0758 ᏅᎡᎵ -11.0758 ᎦᏍᏙᏗ -11.0758 ᏍᏓᏁᎸᎯ -11.0761 ▁ᎤᏅᏏᏛ -11.0762 ᏁᎵᏍᎬ -11.0765 ▁ᎤᎷᏤᎸ -11.0765 ▁ᏱᏙᎨ -11.0766 ▁ᎤᏪᎷᎬ -11.0767 ᏥᏄᎪᏫᏍᏗ -11.0768 ᏅᏗᏍᎪ -11.0769 ▁ᎧᏁ -11.0769 ▁ᎢᏥᏍᎦᏅᏨ -11.0771 ▁ᏮᏓᏲ -11.0777 ᏆᏓ -11.0779 ▁ᏨᏍᎩᏃᎢ -11.0787 ▁ᏱᏗᏗ -11.0787 ▁ᎠᏆᎧᏛᎢ -11.0787 ▁ᎤᏁᎵᏍᏗ -11.0788 ▁ᎤᏪᎯ -11.0789 ▁ᎤᏂᏣᏖᏰᏃ -11.0791 ▁ᎤᏰᏤᎢ -11.0794 ᏣᏘᏃᎵ -11.0794 ▁ᎤᏃᏢᏗ -11.0795 ▁ᏯᏛ -11.0795 ▁ᏥᎦᎶ -11.0796 ▁ᏫᏓᎦ -11.08 ▁ᎦᏁᎲᎢ -11.0803 ᏓᏅᎯᏓ -11.0806 ▁ᎠᏰᏙᎳᏛᎢ -11.0807 ▁ᏚᎴᏅᎩ -11.0808 ᏴᏍᏗᏱ -11.0811 ᏅᎢᏍᏗᏱ -11.0813 ▁ᎤᏁᏅᏎᎢ -11.0813 ᏥᎶᏍᏔᏅ -11.0813 ᎩᎪᏩᏛᏗᏱ -11.0813 ᏣᏛᏂᏏ -11.0824 ▁ᎢᏨᏴ -11.0831 ▁ᎦᎶᏍᎬ -11.0831 ᎴᏫᏍᏔᎾ -11.0832 ▁ᎤᏬᎯᏳᏁ -11.0834 ▁ᏧᎳ -11.0839 ▁ᏗᎵ -11.0842 ▁ᎤᏴᏍᏗᏱ -11.0843 ▁ᏗᏦᎸ -11.0844 ᎵᏂᎩᏛ -11.0846 ▁ᎦᏬᏂᏍᎬᎩ -11.0846 ᏛᏅᎢᏍᏕ -11.0848 ᎷᏤᎸᎩ -11.0849 ▁ᏓᏯ -11.0852 ▁ᎤᏁᏤᎸᎯ -11.086 ▁ᎤᎯᏍᏗᏱ -11.086 ▁ᏧᏪᏅᏒᎢ -11.0861 ▁ᎤᏃᏴᎬᎢ -11.0862 ▁ᏳᏂᏰᎸ -11.0864 ▁ᎢᏣᎵ -11.0865 ▁ᎤᏂᎲᎢ -11.0866 ▁ᏕᎨᎦᎸ -11.0874 ▁ᏳᎳ -11.0878 ᏯᎩᏍᏗ -11.0879 ▁ᏚᏭᏢ -11.088 ▁ᎤᏕᏅᎢ -11.0882 ▁ᏕᎦᏁᎲ -11.0882 ▁ᎤᏃᏢ -11.089 ▁ᎦᎪᎨ -11.0896 ᏛᏃ -11.0902 ▁ᎠᎦᏛᏅ -11.0915 ▁ᏚᎧᎿᏅᏃ -11.0916 ▁ᎢᎦᏛᏍᎩᏂ -11.0916 ▁ᎢᎩᏴᏁᏗ -11.0916 ᏒᏍᏗ -11.0916 ▁ᏗᏓᎴᏂᏍᎬᎢ -11.0917 ▁ᎢᏳᎾᎵᏍᏔᏅ -11.0917 ▁ᎠᎢᏒᏃ -11.0923 ▁ᏗᎦᎦ -11.0933 ▁ᎨᏥᏁᏤᎸ -11.0939 ᏍᎦᎳᏁ -11.0943 ▁ᏕᎨᎦᏛ -11.0943 ▁ᎦᏅᎦ -11.0943 ᎵᏂᎩᏗᏳ -11.0946 ▁ᏩᏥ -11.0948 ▁ᎨᏆ -11.0956 ▁ᎢᏨᏯᎵᏥᏙᏁᎸ -11.0957 ▁ᎤᏂᏣᏘᏰᏃ -11.0971 ▁ᏚᏂᎩᏒ -11.0972 ▁ᎤᏕᏘᏴᏌᏗᏒᎢ -11.0972 ᎠᏤ -11.0973 ▁ᏕᎤᏙᎥᎢ -11.0973 ▁ᎮᎵᏍᎬ -11.0993 ᏴᎮ -11.0998 ▁ᎨᎥ -11.1002 ▁ᎤᎾᏓᏅᏛ -11.1005 ᏨᎢ -11.1005 ▁ᏏᎻᏯᏂᏃ -11.1007 ▁ᎣᏂᎦ -11.1008 ᎧᏔᎭ -11.1008 ▁ᎤᏲᎯ -11.1009 ᏴᏙᏗᏱ -11.101 ▁ᎤᏙᏢᏒ -11.1014 ᏌᎥ -11.1014 ▁ᎤᏂᏁᏨᏃ -11.1015 ᏚᎧᎾᏅ -11.1016 ᏴᎯᎮᏍᏗ -11.1028 ᎳᏅ -11.1031 ᏥᏯᏅᏗ -11.1035 ▁ᎤᎾᏓᏃᏴᎵᏍ -11.104 ▁ᏗᏍᏛ -11.104 ᏳᏩᏅ -11.104 ᏓᏛᏁᎮᏍᏗ -11.1049 ᎦᏖᏃᎲ -11.1054 ᏟᎶ -11.1054 ▁ᎤᏚᎵ -11.1069 ᏥᏐᏅᏅ -11.1074 ᏏᎸ -11.1074 ▁ᎠᏆᏓᏅᏖᎸ -11.1074 ▁ᏗᎦᎸᏫᏍᏓᏁᏗᏱ -11.1083 ᏴᎢ -11.1096 ▁ᏱᏚᎾ -11.1096 ᎪᎲᎩ -11.1098 ᏲᎯᏎᎸᎯ -11.1103 ▁ᎤᏲᎱᏒᎩ -11.1113 ᏥᏍᎦᏨᎯ -11.1122 ᎸᏎ -11.1123 ᎵᎸ -11.1125 ▁ᏓᏕᏲᎲᏍᎨ -11.1126 ᏁᏟᏴᏛ -11.1127 ▁ᎤᏁᏗ -11.1136 ᏍᏛᎩ -11.1138 ▁ᏥᏩ -11.1142 ▁ᎢᎩᏛ -11.1148 ▁ᎢᏳᏓᎵ -11.1153 ᎪᏩᏘᏍᎪ -11.1159 ᎰᏅ -11.1161 ᏣᏓᏙᎵᏍᏗ -11.1161 ᏏᏱ -11.1162 ᏕᎭ -11.1166 ᏣᎾᏄᎪᏫᏎᎸ -11.1167 ᎲᏒ -11.1173 ▁ᎤᏃᎮᏗ -11.1174 ▁ᎦᏅᎢ -11.1176 ᏕᎶᏆᏍᏗ -11.1177 ▁ᎠᎩᏢ -11.1178 ▁ᎤᎵᏏᎬᎢ -11.1181 ᎾᎥᎢ -11.1184 ᏤᎮ -11.1184 ▁ᏧᎾᏙ -11.1187 ᎾᏰᏍᎨᏍᏗ -11.1188 ▁ᎠᏂᎪ -11.1189 ▁ᎦᎸᎳᏗᎨ -11.1191 ᏔᏂᏓᏍᏗ -11.1192 ᏍᎦᎾᎯᏳ -11.1198 ᏄᏬ -11.1198 ▁ᎤᎾᏓᏅᏖᏗ -11.1199 ᏩᏛᏗᏱ -11.1202 ▁ᏕᏣᏂᏴ -11.1214 ▁ᏓᏥᏩᏛᎯ -11.1214 ▁ᎣᏍᏕ -11.122 ▁ᏣᎵᏍᎦᏍᏙᏗ -11.1229 ᎦᏓᎭ -11.1231 ▁ᏚᏂᎬ -11.1233 ▁ᎤᏪᎷ -11.1238 ᏥᎶᏍᏗ -11.124 ▁ᎠᏐ -11.124 ▁ᎬᏓ -11.1243 ᏛᎦᏁᎰᎢ -11.1245 ᏒᏰᏃ -11.1249 ᏂᏪᏏ -11.1252 ▁ᎢᏥᏁ -11.1259 ᏅᏗᏱ -11.1261 ᎩᏍᏙᏗ -11.1282 ▁ᏚᏩ -11.1287 ᎲᏍᎬᎢ -11.1295 ᏢᏈᏍᏗᏱ -11.1296 ▁ᏕᏥᎧ -11.1299 ᎯᏰ -11.1301 ᏛᏅᎯ -11.1303 ᏂᎦ -11.1311 ᏁᏪᏎᎢ -11.1312 ▁ᎢᏥᏴ -11.1321 ▁ᏦᎨ -11.1334 ᎾᏓ -11.1336 ᎨᏴ -11.1345 ᏘᏍᎬ -11.1347 ▁ᎤᏂᏅᏁ -11.1359 ▁ᎤᏍᏕᎸᎲ -11.1364 ▁ᏧᏃᏢ -11.1368 ᎪᏍᎬ -11.1372 ᎦᏘᎴᎩ -11.1388 ᎢᏣ -11.1397 ▁ᏧᏂᏰᎸ -11.1398 ᏂᏏᏅᎯ -11.1401 ᏗᏗᏱ -11.1402 ▁ᎤᎪᎲᎢ -11.1413 ▁ᎢᎭ -11.1417 ▁ᏗᎧᎾ -11.1428 ▁ᏕᏤ -11.1431 ▁ᏚᏲᎯᏎᎸ -11.1432 ▁ᏂᎦᏪᏎ -11.1435 ▁ᎤᏂᎷᏤᎴ -11.1446 ▁ᎪᎱ -11.1447 ▁ᏗᏅᏂ -11.1454 ᎾᏕᏘᏴᏛ -11.1454 ᏅᎯᏒ -11.1466 ▁ᏱᏙᏥ -11.1467 ᏓᏁᎸᎩ -11.1467 ᎧᎭ -11.1473 ᏓᏯᏂᏍᎪ -11.1475 ▁ᎨᎾ -11.148 ᏅᏒᎾ -11.1499 ᏁᏤᎸᎭ -11.1511 ᏲᎮᎢ -11.1511 ▁ᏗᏥᏲᎯᏍᏗ -11.1512 ▁ᏧᎾᏓᎴᏅ -11.1515 ᏁᎩ -11.1518 ᏃᎯᏍᏗ -11.1521 ᎨᏳᎭ -11.1525 ᎶᏃ -11.1532 ᏅᏁᏗᏱ -11.1542 ᏎᎴᎢ -11.1546 ᎵᏙᎮ -11.1548 ▁ᎬᏛᎪ -11.1556 ▁ᏍᎩᏉ -11.1556 ᎩᏍᏆᏂᎪᏔᏅ -11.1557 ᏓᏁᎴ -11.1558 ᏆᏟ -11.1571 ᏧᎬ -11.1572 ▁ᎤᎦᏙᏍᏕ -11.1572 ᎵᏦᏛ -11.1575 ▁ᎨᎪᏎ -11.1583 ▁ᎠᏍᏓᏱᏛ -11.1587 ▁ᎠᏂᏫᎾᎨ -11.1588 ᎨᏩ -11.1598 ▁ᏫᏙ -11.1603 ᏑᎶ -11.1606 ▁ᏱᏚᏳᎪ -11.1609 ▁ᏱᏅ -11.161 ▁ᏥᎶ -11.1614 ᏓᏴᏎ -11.1614 ᎾᎲ -11.1622 ᎦᏛᏁ -11.1629 ᎢᏍᏔᏅ -11.1632 ▁ᎨᏛ -11.1641 ᏂᏏᏍᎨᏍᏗ -11.1647 ▁ᏦᎠ -11.1653 ▁ᎦᏙᎨᏃ -11.1663 ▁Ꮦ -11.1663 ▁ᏅᏩᎾᏓᎴᎢ -11.1668 ▁ᎡᏉ -11.1671 ᎴᏙᏗ -11.1675 ▁ᎦᎶᎯᏍᏗᏳ -11.1676 ▁ᎢᏦᎵᏍ -11.1678 ▁ᎤᎾᏚᎵᏍᎨ -11.168 ᏂᎩᏓ -11.1681 ᏓᏅᏛᎵ -11.1681 ᏣᎦᏌᏯᏍᏗᏕᎩ -11.1682 ▁ᎤᎮᏍᏗ -11.1686 ▁ᎢᏣᏓᏅᏛ -11.1694 ▁ᎠᎾᎵᎮᎵ -11.1706 ▁ᎤᎸᎢ -11.1708 ▁ᏱᏘ -11.1712 ᏗᏍᎬᎩ -11.1716 ▁ᎠᏥᏅ -11.1716 ▁ᎧᏃ -11.172 ▁ᏍᎩᏍᏓᏩᏕ -11.1721 ᏌᎳᏓᏅ -11.1727 ᎧᎵᏎ -11.1733 ▁ᏫᏍᏗ -11.1734 ᏩᏛᎯᏙ -11.1736 ᏍᏓᏁᎸ -11.1747 ▁ᎦᏙᎦ -11.1753 ᎵᏎ -11.1768 ▁ᎤᎾᎵᎪᏎ -11.1772 ᏎᏃ -11.1776 ᎪᏩᏘᏍᎬ -11.1781 ▁ᎠᏍᎪ -11.1782 ▁ᎡᏥᏁ -11.1783 ▁ᏕᎤᏲ -11.1784 ▁ᎤᏂᎧᎵ -11.1785 ▁ᏓᏘ -11.1791 ᏛᎯᏍᏙᏗ -11.1794 ᎵᏍᏓ -11.18 ▁ᎠᏉᎯᏳ -11.18 ▁ᎠᎦᏅ -11.1802 ▁ᏂᎦᏛᏉ -11.1808 ▁ᏙᎯᏱᏉ -11.1811 ᏣᏉ -11.1815 ▁ᏥᏩᎾᎦ -11.1816 ᏂᎦᏔᎲᎾ -11.1826 ▁ᏯᏇ -11.1833 ᏓᏛᏁᏗ -11.1841 ▁ᎤᏬᏂᎯᏍᏗ -11.1846 ᏏᏯ -11.1851 ᏙᎴᎰᏒ -11.1852 ▁ᎠᏂᎪᏩᏘᏍᎨ -11.1864 ▁ᏨᏆ -11.1865 ᏍᏆᏂᎪᏓᏁᏗ -11.1866 ▁ᎠᏆᏓᏅ -11.1867 ᏥᏍᏔᏅ -11.1872 ▁ᏱᏅᏩᏍᏗ -11.1877 ▁ᎠᏆᏓᏅᏖ -11.1884 ᏬᏁᏔᏅ -11.1888 ᏬᏁᏙᏗ -11.1894 ᏪᏏ -11.1899 ᏲᏍᏔᏅ -11.1903 ᏘᏍᎩ -11.1904 ᏔᎴᏒ -11.1914 ᎨᏎ -11.1915 ᎴᏗᏱ -11.1917 ᏥᎵ -11.1922 ᏎᎵᏙᏗ -11.1929 ▁ᎢᏣᏓᏙᎵᏍᏗ -11.1939 ᏁᎸᏗᏍᎬ -11.1939 ᎵᏍᏕᎸ -11.1944 ᏩᏛᎯ -11.1948 ▁ᏴᎦᏥ -11.1951 ▁ᎠᏍᏚ -11.1951 ▁ᏳᏲ -11.1955 ▁ᎤᎾᏓᏅ -11.196 ᏅᏂ -11.196 ᏄᎪᏨᎩ -11.1962 ▁ᏕᎦᏘ -11.1964 ᏯᏅᎯ -11.1967 ᏅᏓᏗᏍᎨᏍᏗ -11.1975 ᏍᏕᎸᎯᏙᎯ -11.1982 ▁ᎥᏝᏍᎩᏂ -11.1998 ▁ᏴᏗ -11.2 ᏍᏙᎢ -11.2003 ᏩᏓ -11.2011 ᏍᏓᏲ -11.202 ᏚᎵᎭ -11.2023 ᎧᏂᏍᎬ -11.2025 ᎮᎵ -11.2028 ᎶᏅ -11.2042 ▁ᎠᏰᎵᏉ -11.2047 ᎵᏍᎩ -11.2048 ᏁᎦ -11.2049 ᏂᏪᏎ -11.2052 ▁ᎤᏄᎪᏫᏎ -11.2054 ▁ᎠᏍᏆ -11.2055 ᏪᏎᎵ -11.2059 ▁ᎠᏎᏍᎩᏂ -11.206 ▁ᏳᎸ -11.2065 ᏁᎶᏕᏍᏗ -11.207 ▁ᎤᏂᏩᏛ -11.2076 ᏣᎷᏤᏗᏱ -11.2084 ▁ᏱᎬᏆ -11.2107 ᏙᎵᎪ -11.2109 ᎸᎮ -11.2115 ᏓᎴᎲᎦ -11.2116 ▁ᎦᏪ -11.2138 ᏔᏪᏙ -11.214 ᏍᏆᏂᎪᏓ -11.2142 ᎥᏍᎨᎢ -11.2156 ᏲᏙᏗ -11.2157 ᎵᎻ -11.2164 ▁ᎠᏂᎪᎵᏰᏍᎨ -11.2169 ᎵᏍᏆᏙᎾ -11.2178 ᏢᏁᎢ -11.2185 ᎮᎸ -11.2195 ᏦᏒ -11.2201 ▁ᎤᏂᏃ -11.2201 ▁ᎦᏲ -11.2201 ▁ᏯᏆᏓ -11.2205 ▁ᎠᎩᏁᎸ -11.2219 ᏌᎲ -11.2221 ᏥᏓ -11.2226 ▁ᎥᏝᏍᏗ -11.2227 ▁ᏥᏍᎦᎾ -11.2227 ▁ᎤᏩᏎ -11.2228 ᏜᏗ -11.2229 ᏉᎯ -11.223 ᎷᎩᏍᎩ -11.2231 ᏰᎬ -11.2235 ᏓᏛᏁᎵ -11.2235 ▁ᏫᏯᏅ -11.2237 ᏇᏓ -11.2238 ▁ᏣᏢ -11.2242 ▁ᎢᏥᏍᎦᏅ -11.2249 ▁ᎤᎩᏍᏗ -11.2249 ᎲᏍᎨ -11.2254 ᏓᏁᎢ -11.2254 ᏛᏁᎰ -11.2256 ᎴᏅᏓ -11.2258 ▁ᎩᎳᎢ -11.2267 ᏓᏑᏴ -11.2269 ▁ᎬᏩᎵᎪᏁ -11.2271 ᎪᎨ -11.2274 ▁ᎠᏑᏴ -11.2293 ᎦᏛᎩ -11.2297 ▁ᎤᏲᏍᏔᏅ -11.2305 ▁ᏗᏕᎶᏆᏍ -11.2306 ▁ᎭᏓᏅᏖ -11.2309 ▁ᏕᎨᏣ -11.2312 ▁ᏙᎬ -11.2314 ▁ᏩᏂᎷ -11.2316 ᎾᎵ -11.2325 ▁ᎠᎩᎨᏳᎯ -11.2329 ▁ᏓᏍᎩ -11.233 ▁ᎤᏩᏙ -11.2333 ᎡᎲᎢ -11.2336 ᎴᏅᎮ -11.2339 ▁ᎭᏓ -11.234 ᏓᏙᎵᏍᏓᏏ -11.2344 ᏑᎸᏓ -11.2349 ᏍᏔᏅᎢ -11.2352 ▁ᎠᏂᎾ -11.2354 ᎨᎯᏙᎸ -11.2354 ▁ᏄᏩᏁ -11.2359 ▁ᏳᏓᏑ -11.2363 ᏲᏎᎸ -11.2375 ᏪᏒ -11.2375 ᎨᏥᏁᏗᏱ -11.2377 ᏥᎾᏄᎪᏫᏎᎸ -11.2378 ᏍᎪᏒ -11.2379 ᎣᏁ -11.238 ▁ᏗᏍ -11.24 ᎾᎡ -11.2406 ᎵᏓ -11.2409 ᏲᎮᏗ -11.2417 ᎲᏍᏗᏱ -11.2417 ▁ᏓᎨ -11.2419 ▁ᏂᏥᏪᏎ -11.2429 ▁ᎠᏥᎸᏃ -11.2434 ▁ᎤᏍᏛ -11.2436 ▁ᏈᏂ -11.2441 ᏂᏍᎨᏍᏗ -11.2441 ᏚᎸᏅᏗ -11.2442 ᎵᏬ -11.2443 ▁ᎦᏐ -11.2444 ᏂᏢᏗᏱ -11.2444 ᏕᎨ -11.2449 ▁ᏩᏆ -11.2451 ▁ᏬᎩ -11.2455 ᏤᏪ -11.2456 ᏍᎦᏯ -11.2457 ▁ᎾᏥᎸᏉ -11.2462 ᏅᏩᏍᏗᏉ -11.2465 ᏓᎨᏳᏗ -11.2468 ᏥᏯᏅᏛ -11.2472 ᎩᏛ -11.2475 ᏲᎱᎯ -11.2482 ᏘᏎᎢ -11.2483 ᏍᏓᏩᏕᏏ -11.2483 ᎪᏒ -11.2483 ᎪᎵᏰᏍᎨᎢ -11.2485 ᏣᏁ -11.2486 ▁ᏚᎵ -11.2492 ᏓᏘᏂᏙᎯ -11.2501 ▁ᏚᎾᎵᎪ -11.2507 ▁ᏄᎵᏍ -11.2508 ᏠᎠᎯ -11.2514 ᏃᎮᏗ -11.2525 ▁ᎤᎷᏨᏃ -11.2527 ᎳᏏᏕᏂ -11.2528 ▁ᎠᏆᏛ -11.253 ▁ᏳᏪ -11.2531 ᏂᏱᏍᎨ -11.2542 ᎴᏅᎲ -11.2542 ᏙᎾ -11.2542 ▁ᎠᏂᏯᏫᏍᎩᏃ -11.2543 ᏐᏢ -11.2546 ▁ᎠᏴᏉ -11.255 ᏕᏣᏙ -11.2569 ᏍᎦᏅᏨᎢ -11.2569 ᏍᏛᏗ -11.2571 ▁ᎠᏂᎡ -11.2581 ▁ᏧᏅᏏ -11.2588 ᏲᎱᎯᏍᏗ -11.2593 ᎦᏓ -11.2594 ᏓᏗᏍᏗ -11.26 ▁ᎠᎵᏥ -11.2604 ᏛᏛᎲᏍᎦ -11.2607 ▁ᎠᏓᏍᏕᎵ -11.2607 ▁ᏂᏣᎵᏍᏓᏁ -11.2609 ▁ᎤᏐᏅᎢ -11.2614 ᏒᎦᎸ -11.262 ᏍᎪᎵ -11.2628 ᏚᎩ -11.2634 ▁ᏳᏃᏴ -11.2643 ᏨᏍᏗᏱ -11.2643 ᏙᎦ -11.2644 ▁ᎥᏆ -11.2645 ▁ᎠᏍ -11.2657 ᎮᎯ -11.2661 ᏢᏔᏅᎯ -11.2664 ᏚᎵᏍᎨ -11.2675 ᎯᏍᏗᏍᎬ -11.2676 ᎦᏉ -11.268 ᏥᎦᏔ -11.2687 ▁ᏂᎦᏥᏴᏁ -11.269 ᎸᏉᏓ -11.2691 ᏫᏎᎢ -11.2695 ᏎᎸᎢ -11.2703 ᏄᎪᏫᏒᎯ -11.2713 ▁ᏅᏓᏳᏓᎴ -11.2725 ▁ᏗᎩᏍᏗ -11.2732 ▁ᏅᎵᏌᎵ -11.2742 ᏘᏃᎯᏍᏗ -11.2746 ▁ᏅᏩ -11.2747 ᏥᏲᏍᏙᏓᏁ -11.2752 ᏲᎯᏏ -11.2756 ᏍᏗᏂ -11.2757 ᏍᏚᎩᏒ -11.2759 ▁ᎠᏕᎸᏃ -11.2764 ᎶᎥ -11.2764 ᎪᏩᏗᏍᎬ -11.2766 ᏍᎬᎾᏉ -11.2767 ᏣᎴᏛ -11.2767 ▁ᏱᏚᏓ -11.2767 ᏃᏅᎯ -11.2772 ▁ᏯᎩᎪ -11.2774 ᎦᎵᎰ -11.2782 ᎦᎶ -11.2788 ᏢᎭ -11.2793 ᏴᏔᏅᎩ -11.2795 ᎯᏛ -11.2796 ᏚᏓᏲᏎ -11.2796 ᏧᏔᏅ -11.2799 ᏐᎾ -11.2799 ᏍᏕᎢ -11.2799 ▁ᏁᏩᏔᎵ -11.28 ▁ᏯᎦᏓ -11.2803 ▁ᏚᏩᏛᎲ -11.2803 ᏎᎰᎢ -11.281 ▁ᎯᏁᎩ -11.2813 ᏏᏅᏍᏗ -11.2815 ᏍᏆᎵᏍᎬ -11.2815 ▁ᏕᏥᏯ -11.2817 ᎪᎰᏍ -11.2825 ᏛᎦᏅ -11.2839 ᎡᏃ -11.2839 ▁ᏘᏁ -11.2839 ▁ᎤᎾᎴᏅ -11.2843 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎬ -11.2845 ▁ᎬᏩᏃᎯᏳ -11.2849 ᎾᏄᎪᏫᏒ -11.2851 ᎪᎯᏳ -11.2853 ▁ᏕᎪᏢᏒ -11.2855 ᎦᏌᏯᏍᏙᏗ -11.2856 ▁ᎦᎦ -11.2861 ᏗᏢᏍᏙᏗ -11.2864 ᏁᎢᏍᏗᏍᎬ -11.2867 ▁ᎤᏂᏩᏒ -11.2871 ᎩᏍᏓ -11.2874 ▁ᎤᏢᎬ -11.2882 ᎨᏳᎯ -11.2882 ▁ᎠᏥᏰᎸᎾᏁ -11.2889 ᏥᎷᎩ -11.289 ᏙᎴᎰᏎ -11.289 ᏘᏓ -11.2891 ᏍᏕᎵᏍᎪ -11.2892 ▁ᏓᏟᎶᏍᏗ -11.2894 ▁ᏑᏟᎶᏛ -11.2895 ▁ᏭᏭᏍ -11.2895 ᏚᏲᏎ -11.2899 ▁ᏆᏏ -11.2899 ▁ᏱᏓᎾ -11.2901 ▁ᎦᏅᎪᎢ -11.2902 ᎦᎸᎲᎩ -11.2905 ᏗᏉ -11.2906 ▁ᏴᏓ -11.2907 ▁ᎤᏅᏂ -11.291 ▁ᏂᏓᏙᏓᏈᏒ -11.291 ▁ᎾᎬᏁᎴ -11.291 ▁ᎠᎧᎵ -11.291 ▁ᏂᏚᏍᏕ -11.2913 ᎤᏨᏉᏗ -11.2913 ᎢᏗᎦᏘ -11.2914 ᏘᏅᏍᏔᏁᎢ -11.2914 ▁ᏚᏄᏩᎥ -11.2916 ᎤᏂᎷᏤᎢ -11.2916 ▁ᎤᎾᏅᏁ -11.2916 ᏒᎮᏱᏣ -11.2917 ▁ᎡᏌ -11.2918 ▁ᏕᏣᎸᏫᏍᏓᏁᎸ -11.2918 ᎧᏃᎮᏛ -11.2918 ᎢᏥᏈᏱ -11.2918 ▁ᎦᎵᎡᎵᎬ -11.2919 ᎠᎬᏱ -11.2919 ▁ᎾᎩᏪᏒ -11.2919 ▁ᎤᏃᎯᏳᏁ -11.292 ᎵᎪᎯ -11.2923 ▁ᎾᏂᏪᏍᎨ -11.2924 ▁ᏚᏓᏘᎿᎥ -11.2924 ▁ᏕᎤᎸᏫᏍᏓᏁᎲ -11.2925 ▁ᏚᏍᎫᏓᏛ -11.2925 ▁ᏄᎵᏍᏓᏁᎸ -11.2925 ▁ᎤᎵᏖᎸᏁ -11.2925 ᏇᎵᏥ -11.2925 ᏉᎡᏗ -11.2926 ▁ᎤᏔᏪᏙᏁ -11.2926 ▁ᎤᏎᎵ -11.2926 ▁ᏂᏣᏓᎨᏳᏒ -11.2926 ▁ᎤᏓᏙᎵᏍᏔᏁ -11.2927 ▁ᏚᏄᎪᏔᏅ -11.2929 ▁ᎤᏪᏍᎩᎸ -11.2929 ▁ᏱᏄᎵᏍᏔᏁ -11.293 ▁ᏚᏂᏢᎬ -11.293 ▁ᏧᎶᏎ -11.293 ▁ᎤᎴᏂᏙᎴ -11.2931 ▁ᎲᏅ -11.2932 ▁ᎢᏣᏚᎵᏍᎬ -11.2932 ▁ᏓᎾᎵᏍᏓᏴᎲᏍᎬ -11.2932 ▁ᎢᏥᏁᎬ -11.2933 ▁ᏫᏥᎦᏛ -11.2935 ▁ᎤᏓᏅᎡᎴ -11.2935 ▁ᏂᏚᏩᏁᎴ -11.2936 ▁ᏓᏅᏗᏍᎬ -11.2936 ᎯᏢᎾ -11.2938 ᏍᏓᏩᏛᏎ -11.2939 ▁ᎾᏂᎡ -11.294 ▁ᎤᏍᎩᏓᏒ -11.294 ▁ᎠᏥᏃᎮᏍᎬ -11.294 ▁ᎢᏳᎵᏍᏔᏅ -11.294 ▁ᎢᏨᏰᎳᏗᏙᎲ -11.2941 ▁ᎤᏍᏓᏱᏛ -11.2941 ᎵᎨᏂ -11.2945 ▁ᎨᎬ -11.2945 ▁ᎤᏍᎦᎴ -11.2948 ᏚᏓᏕᏫᏒ -11.2948 ▁ᎤᏑᎵᎪᏨ -11.2948 ▁ᎤᏮᏔᏅ -11.2949 ▁ᏚᏂᏲᎱᏒ -11.295 ▁ᎤᏓᏅᏁ -11.2951 ᏍᏉᎵᏱ -11.2951 ▁ᏂᎦᎵᏍᏗ -11.2952 ▁ᎠᏄᎯᏍᏗᏍᎬ -11.2953 ᎦᏘᏗᏍᏗᏱ -11.2955 ▁ᏥᏬᏂᏍᎬ -11.2955 ᏍᎩᏓᏎᎢ -11.2957 ᎵᏍᎪᎸᏗᏍᎬ -11.2957 ▁ᏚᎾᎴᏅ -11.296 ▁ᎤᏯᏅᎮ -11.2961 ▁ᏣᏁᏨ -11.2961 ▁ᎠᏆᎴᏅ -11.2964 ▁ᏪᏙ -11.2964 ᎸᎥᏍᎬ -11.2964 ▁ᎣᎪᎯᏳ -11.2964 ᎸᏍᎦ -11.2964 ▁ᎣᎦᏣᏅ -11.2966 ᎾᎾᏛᏁᎰ -11.2968 ᎩᏍᏓᏩᏕ -11.2968 ▁ᎦᏁᎮ -11.2969 ᏙᏢᎾ -11.297 ▁ᏗᏘᏲ -11.2971 ᏒᎵ -11.2971 ▁ᎤᏍᏓᏩᏛᏎ -11.2972 ▁ᏗᏘᏂᏙ -11.2972 ▁ᎤᏪᎧᎲ -11.2974 ᎦᏔᎲᏍᎬ -11.2977 ᏲᎵᎴ -11.2977 ᏍᏕᎸᎲᎩ -11.2978 ᏴᏤᏂ -11.2978 ▁ᏦᎩᎾᏫ -11.2979 ᏓᏓᏍᎬ -11.298 ▁ᏱᏙᎬ -11.298 ▁ᏥᎪᏩᏛ -11.298 ᏁᎵᏎᎢ -11.298 ᎸᏉᏔᏂ -11.2981 ▁ᎡᎩᏍᏕᎸᏗ -11.2981 ▁ᎦᏅᏆᎶ -11.2982 ᏒᎲᏍᎦ -11.2982 ▁ᎢᏳᏩᏂᏐᏗ -11.2983 ▁ᏗᎬᏩᎸᏌ -11.2984 ▁ᎠᏂᏛ -11.2984 ▁ᏧᏂᏒᏍᏗ -11.2985 ▁ᏣᏁᎮ -11.2985 ▁ᎢᏣᏓᏅᎦᎸ -11.2986 ▁ᎢᏨᏲᏎ -11.2987 ▁ᎤᎩᎵᏲᎢᏍᏗ -11.2988 ᏩᏁᎦ -11.2988 ▁ᏂᎦᎵᏍᏔᏂ -11.299 ▁ᎤᏬᏢᏁ -11.2992 ▁ᏗᎧᏃᎨ -11.2993 ᏍᏆᏂᎪᏗᏳ -11.2994 ᏏᏔᏗᏍᏗ -11.2995 ▁ᏩᏚ -11.2995 ᏠᎠᏒ -11.2996 ▁ᎢᏣᎵᏍᏓᏴᏗ -11.2996 ▁ᏗᎦᏤᎵ -11.2998 ▁ᎦᎷᏨ -11.2998 ᏕᏲᏅᎯ -11.2999 ▁ᎠᏂᏍᏆᏂᎪᏗᏍ -11.2999 ᏄᏬᎡᎢ -11.3 ᏂᏁᏨ -11.3 ᏓᏂᎵᎨ -11.3001 ▁ᎤᏂᏲᎴ -11.3001 ᏃᎵᏤ -11.3001 ᏚᏅᏏᏴ -11.3002 ᏙᎴᏆᏍᏗ -11.3002 ▁ᎠᏛᎩᏍᎨ -11.3002 ▁ᏭᏓ -11.3003 ᏁᏤᎮᏍᏗ -11.3003 ᏦᏎᎭ -11.3004 ▁ᏥᏯᎥ -11.3004 ᏓᏅᏓᏗᏍᏗᏍᎩ -11.3004 ▁ᎠᏓᎴᏒ -11.3005 ▁ᏱᎡᏦᎢᏳ -11.3005 ᏓᎾᏕᏒᎲᏍᎪᎢ -11.3005 ▁ᎠᏁᏯᏔᎯ -11.3005 ▁ᎠᏂᎢᏏᎺᎵ -11.3005 ▁ᎠᏍᏕᏱᏛ -11.3005 ▁ᎢᏍᎪᏂᏗᏢ -11.3005 ▁ᎢᏯᏆᏕᏘᏴᏓ -11.3005 ▁ᎤᎾᏓᎪᎾᏙᏗ -11.3005 ▁ᎤᎾᏗᏍᎦᏢ -11.3005 ▁ᎤᏔᏲᎴ -11.3005 ▁ᎤᏩᎬᏘᎶᏓ -11.3005 ▁ᎤᏩᎾᏓᎴ -11.3005 ▁ᎥᏖᎣᎩ -11.3005 ▁ᏁᏥᏪᏎᎸᎭ -11.3005 ▁ᏂᎦᏗᎹᏏ -11.3005 ▁ᏂᏓᏁᏢᏛᎾ -11.3005 ▁ᏂᏗᎬᏩᏓᎴ -11.3005 ▁ᏂᏧᏪᏎ -11.3005 ▁ᏄᏃᎯᏳᏅᎾ -11.3005 ▁ᏒᏗᏩᏟ -11.3005 ▁ᏓᎱᏃᎲ -11.3005 ▁ᏓᎾᏦᎭᏱᎲ -11.3005 ▁ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ -11.3005 ▁ᏓᏂᎶᏄᎮᏍ -11.3005 ▁ᏓᏊᎪᏔᏅ -11.3005 ▁ᏓᏟᏰᎵᏙ -11.3005 ▁ᏗᎾᎵᏦᎯᏛ -11.3005 ▁ᏗᏝᏗᏍᏗᏱ -11.3005 ▁ᏙᏛᎾᏓᏡᏔᏂ -11.3005 ▁ᏥᏂᏥᏪᎠ -11.3005 ▁ᏥᏓᎩᎸᏫᏍᏓᏁᎭ -11.3005 ▁ᏥᏕᎭᏘᏁᎭ -11.3005 ▁ᏧᏄᏩᎢ -11.3005 ▁ᏯᏙᎴᎰᏍᎦ -11.3005 ▁ᏱᏓᎴᏂᏙᎭ -11.3005 ▁ᏱᏣᏁᎢᏍᏔᏁᏍᏗ -11.3005 ▁ᏱᏫᏣᏴᎸ -11.3005 ▁ᎤᎩᏠᏫᏎ -11.3005 ▁ᎨᏥᎦᏘᏗᏍᏗ -11.3005 ▁ᎺᎮᎴᎵ -11.3005 ▁ᏂᏚᎾᏁᎶᏛᎾ -11.3005 ▁ᏄᏛᎿᏕᎬ -11.3005 ▁ᏆᎻᏈᎵᏱ -11.3005 ▁ᏓᎦᎫᏴᎯ -11.3005 ▁ᏚᏬᏏᏌᏁ -11.3005 ▁ᏥᎪᎵᏰᏍᎬ -11.3005 ▁ᏨᏓᏯᎢ -11.3005 ᎵᏍᎨᏗᏴ -11.3005 ▁ᎠᎵᎮᎵᎪ -11.3005 ▁ᎤᏪᏟᏌᏁ -11.3005 ▁ᎹᎻᎵ -11.3005 ▁ᏁᏓᏈ -11.3005 ▁ᏙᏓᏥᏲᎱᏏ -11.3005 ▁ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ -11.3005 ▁ᏛᎾᏛᎦᏂ -11.3005 ▁ᏮᏘᏯᏅᎯ -11.3005 ▁ᏳᎵᏃᎯᏰ -11.3005 ▁ᏓᏍᏗᏰᏗᏍᎬ -11.3005 ᎩᏪᏎᎲᎩ -11.3005 ▁ᎡᎻᎳ -11.3005 ▁ᎢᎦᏗᏍᎦᎶᏗᏱ -11.3005 ▁ᎩᏅᎪᎢ -11.3005 ▁ᏁᎨᏒᎾ -11.3005 ▁ᏂᏨᏴᏁᎸ -11.3005 ▁ᏧᎾᏓᏂᎸᎢᏍᏗᏱ -11.3005 ▁ᏯᏎᎦᎩ -11.3005 ▁ᎠᏲᏓᏝᎲᎢ -11.3005 ▁ᏚᏂᎧᎮᏍᏗ -11.3005 ▁ᏚᏟᏂᏆᏅᏁ -11.3005 ▁ᏮᏘᎶᏏ -11.3005 ▁ᏯᎵᏖᎸᎮᏍᎬᎾ -11.3005 ᎦᎭᎾᏅ -11.3005 ▁ᎢᏖᎳ -11.3005 ▁ᏂᏪᏎᎸᎭ -11.3005 ▁ᏓᏤᎵᏍᏛ -11.3005 ▁ᏕᎷᎨ -11.3005 ▁ᏬᎩᏅᏍᏔᏅᎩ -11.3005 ▁ᎢᎬᏩᏛᏛᏁ -11.3005 ▁ᏯᏓᏅᏍᎬᎾ -11.3005 ▁ᏥᏄᏩᏁᎸ -11.3005 ▁ᎤᏪᏯᎸᏅᎩ -11.3005 ▁ᎠᎦᏔᏛᏍᎩ -11.3005 ▁ᎤᏎᎦᏨᎯ -11.3005 ▁ᎪᎶᏁᏛ -11.3005 ▁ᎬᏩᏴᎸᎯ -11.3005 ▁ᏘᏰᎸᏂ -11.3005 ▁ᏚᎵᏃᎮᏔᏁᎢ -11.3005 ᏬᏁᏗᏍᎪ -11.3005 ▁ᎬᏍᎦᎵ -11.3005 ▁ᏧᏘᏲ -11.3005 ▁ᏫᎬᏲᏪᎳᏏ -11.3005 ▁ᎡᏗᏂᏱ -11.3005 ▁ᏄᏍᏆᏂᎩᏛ -11.3005 ▁ᏛᏂᎾᏄᎪᏥ -11.3005 ▁ᎢᏦᎵᎩ -11.3005 ▁ᏣᏔᎳᏬᏍᎬ -11.3005 ▁ᎤᏂᏔᎳᏬᏍᎬᎢ -11.3005 ▁ᏁᏍᏗᏪᏎᎸᎭ -11.3005 ▁ᎢᏳᎾᏛᎾᏕᎩ -11.3005 ▁ᎤᎯᏐᏓᏁ -11.3005 ▁ᎤᏕᏒᏂᎸᎯ -11.3005 ▁ᎤᎾᎵᏃᎯᏴᎯ -11.3005 ▁ᏂᏦᎯᏳ -11.3005 ▁ᏓᏑᏫᏍᎬ -11.3005 ▁ᎠᏍᎫᏕᏒ -11.3005 ▁ᎠᏍᏙᏍᎩ -11.3005 ▁ᎤᎵᏌᎵᏓᏁ -11.3005 ▁ᏱᏗᏣᏰᎸᏁᎢ -11.3005 ▁ᎤᏩᏂᎦᏢ -11.3005 ▁ᎠᏙᏂᏍᎩ -11.3005 ▁ᎦᏄᎾᏓᎴᎩ -11.3005 ▁ᏗᏂᎬᏓᎨᏂ -11.3005 ▁ᎢᏣᏓᏟᏌ -11.3005 ▁ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ -11.3005 ▁ᎣᎨᏙᎸ -11.3005 ▁ᏙᏛᎾᎴᏂ -11.3005 ▁ᏯᏂᎷᎬᎾ -11.3005 ▁ᏗᎾᏓᏲᏁᎯ -11.3005 ▁ᏧᎵᎦᎸᏓ -11.3005 ▁ᏂᏗᎨᏥᎾᏝᎥᎾ -11.3005 ▁ᏂᏦᎯᏳᎲᏍᎬᎾ -11.3005 ▁ᏗᎨᎦᏛᏅᎯ -11.3005 ▁ᏗᏐᏂ -11.3005 ᏓᏫᏍᎦᎨ -11.3005 ▁ᎠᏂᎷᏨᎭ -11.3005 ▁ᎢᏣᏕᏗᏱ -11.3005 ▁ᎤᎬᏍᏕᎵ -11.3005 ▁ᎪᏢᏅᎥᏍᎩ -11.3005 ▁ᏌᎶᎻ -11.3005 ▁ᏓᏆᏓᏂᎸᎨᏍᏗ -11.3005 ▁ᏙᎩᎾᏦᏒ -11.3005 ▁ᎦᎵᏒᏍᏗᏍᎬ -11.3005 ▁ᏕᎫᏓᏛ -11.3005 ▁ᎢᎬᏂᎮᏍᏗ -11.3005 ᎨᏅᏴ -11.3005 ▁ᏗᎦᎶᎩᏍᎩ -11.3005 ▁ᏗᎾᏓᏙᎵᏍᏓᏁᎯ -11.3005 ▁ᎤᏔᏲᎸ -11.3005 ▁ᎤᎾᎵᏍᏓᏴᏁᏃ -11.3005 ▁ᏂᏓᎾᏓ -11.3005 ▁ᏱᏨᏰᎵᏎᎭ -11.3005 ▁ᏗᏓᏂᏱᏍᎩ -11.3005 ▁ᎩᎵᏯᏗ -11.3005 ▁ᏓᏓᏂᏌᎲ -11.3005 ᏧᎪᏓᏏ -11.3005 ▁ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ -11.3005 ▁ᎢᏣᏄᏬᏍᏕᏍᏗ -11.3005 ▁ᏂᏕᏣᏛᏁᎮᏍᏗ -11.3006 ▁ᏍᎩᏯᏛᎦᏁᎸᎯ -11.3006 ▁ᎤᎿᎷᏎ -11.3006 ▁ᏄᎾᏓᏛᎩ -11.3006 ▁ᏙᏓᏳᏲᏏ -11.3006 ▁ᎤᏁᎢᎸᏗ -11.3006 ▁ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ -11.3006 ▁ᎤᏓᏁᏟᏴᏍᏓᏁᎴ -11.3006 ▁ᎩᏂᏙᏓ -11.3006 ▁ᎡᏗᎸᏉᏓ -11.3006 ▁ᏕᎦᎧᎮᏍᏗ -11.3006 ▁ᏚᎾᎭᏄᏮ -11.3006 ▁ᎥᏇᎵᏎᎸ -11.3006 ᎯᏣᏛᎦᏍᏓ -11.3006 ▁ᎠᎩᎵᏬᎢᏍᏗ -11.3006 ▁ᏂᏕᎦᎵᏍᏗᏍᎨ -11.3006 ▁ᎠᏛᎩᏍᎩ -11.3006 ▁ᎠᏥᏅᏩᏅᎯ -11.3006 ᏔᎴᏐ -11.3006 ▁ᏅᏛᏂᏪᏏ -11.3006 ᎬᏲᎵᎭ -11.3006 ▁ᏓᎬᏅᏏ -11.3006 ▁ᏗᎩᏂᏴᏗᏱ -11.3006 ▁ᏴᎨᏥᎪᏩᏛ -11.3006 ᏯᏛᏁᎮᏍᏗ -11.3006 ▁ᏓᏂᏂᏓᏛ -11.3006 ▁ᏣᎵᏍᏓᏴᏗ -11.3006 ▁ᏗᎫᏓᏙᏗ -11.3006 ▁ᏧᎾᏓᏅᏬᏗᏱ -11.3006 ran -11.3006 ▁ᏫᏄᎾᎵᏍᏓᏏ -11.3006 ▁ᏗᎦᏃᏙᏗᏱ -11.3006 ▁ᎠᏂᏁᏉᎨ -11.3006 ▁ᎠᏍᎦᏲᎯ -11.3006 ▁ᎬᏍᎦᏅᏤᎸ -11.3006 ▁ᎾᏆᏛᏁᎵᏙᎸ -11.3006 ▁ᏗᏗᏰᎸ -11.3006 ▁ᎤᏁᎵᏨ -11.3006 ▁ᏳᏲᎱᏎᎸ -11.3006 ▁ᎤᎸᏫᏒ -11.3006 ▁ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯ -11.3006 ▁ᏂᏨᏁᎮᏍᏗ -11.3006 ▁ᏧᎵᎩᏏ -11.3006 ▁ᎠᎾᏟᎲ -11.3006 ᏓᏒᏍᏓ -11.3006 ᎬᏩᏳᎪᏗ -11.3006 ᏍᏓᏩᏗᏒᎩ -11.3006 ▁ᏕᎬᏩᏠᏎᎢ -11.3006 ▁ᎫᎭᎳ -11.3006 ▁ᏧᏭᏓᎴᏍᏗᏱ -11.3007 ▁ᏓᏍᏆᏚᎸ -11.3007 ▁ᎢᏥᎧᎵᏣ -11.3007 ▁ᎠᎾᏟᏃᎮᏍᎬ -11.3007 ▁ᏓᏅᏩ -11.3007 ▁ᏚᎩᏒᎩ -11.3007 ▁ᎤᏓᎾᏏᏅ -11.3007 ᏠᏯᏍᏗᏍᎨᏍᏗ -11.3007 ▁ᎪᏢᏛᎩ -11.3007 ▁ᏧᏁᏅᏒ -11.3007 ▁ᎠᎩᏲᏏᏍᎬ -11.3007 ▁ᏚᏁᏅᏒ -11.3007 ▁ᏃᎦᏛᏅ -11.3007 ▁ᏗᎩᏣᏗ -11.3007 ▁ᏭᏓᏓᎩᏅᏎ -11.3007 ▁ᎢᏍᏗᏙᏓ -11.3007 ▁ᏫᏲᏪᎳᏏ -11.3007 ▁ᎡᎶᏂᎵ -11.3007 ▁ᏗᏂᎦᏘᎴᎩ -11.3007 ᏏᏀᎥ -11.3007 ᎫᏘᎶ -11.3007 ▁ᎠᏆᎵᏥᏙᏗᏱ -11.3007 ▁ᏱᏂᏓᎦᎵᏍᏔᏂ -11.3007 ▁ᎤᏓᏍᏛᏗᏍᏗ -11.3007 ▁ᏚᏙᏓᏈᏒ -11.3007 ▁ᏚᎵᎬᏩᏢ -11.3007 ▁ᏫᎦᎢᏒ -11.3007 ▁ᏭᏕᏁᎢ -11.3007 ▁ᏱᏄᏩᏁᎰ -11.3007 ▁ᎢᎬᏩᏍᏗᎭ -11.3007 ▁ᏕᏣᏓᎨᏳᏎᏍᏗ -11.3007 ers -11.3008 ▁ᏱᏓᏲᎩ -11.3008 ▁ᎠᏓᏅᏖᎸ -11.3008 ᎾᏞᎬ -11.3008 ▁ᎠᏓᎦᎵᏍᏓᏗᏍᎩ -11.3008 ▁ᏘᎹᏂ -11.3008 ▁ᏙᏓᎬᏁᎵ -11.3008 ▁ᏥᏕᏣᎸᏫᏍᏓᏁᎭ -11.3008 ▁ᎤᏪᎷᏅ -11.3008 ▁ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ -11.3008 ᏈᎪᎵ -11.3008 ▁ᏕᎦᎵᏦᏛ -11.3008 ▁ᎣᏣᎵᎡᎵᏤ -11.3008 ▁ᎤᏂᎧᎲ -11.3008 ▁ᏥᏍᎦᏅᎩ -11.3008 ▁ᎤᏅᏂᏍᏗᏱ -11.3008 ▁ᏗᎤᏁᏤ -11.3008 ▁ᎠᏂᏍᏆᏂᎪᏍᎨ -11.3008 ▁ᏚᎪᏄᎶᏎ -11.3008 ▁ᏌᎪᏗ -11.3008 ▁ᎢᏥᎩᎵᏲᎬᎢ -11.3008 ▁ᎬᏩᏂᏍᏓᏩᏗᏙᎯ -11.3008 ▁ᏧᏓᏅᏓᏗᏍᏙᏗᏱ -11.3008 ▁ᏧᏪᎷᏁ -11.3008 ▁ᏧᏅᎨᏫ -11.3008 ▁ᏗᏓᏙᏕᏍᏗᏍᎩ -11.3008 ▁ᏚᏃᎩᏎ -11.3008 ▁ᏗᏂᏙᎬ -11.3008 ▁ᏗᏜᏍᏔᏅᎯ -11.3009 ᎵᏍᏘᏂᎸ -11.3009 ▁ᏗᎩᏙᏓ -11.3009 ▁ᎤᏂᏃᎮᏛ -11.3009 ▁ᏄᏂᎪᎸᎾ -11.3009 ▁ᎱᎷᏨ -11.3009 ▁ᏂᏗᏣᏓ -11.3009 ▁ᎠᎩᏲᎱᎯᏍᏗᏱ -11.3009 ▁ᏗᎬᏯᏠ -11.3009 ▁ᎤᎾᏓᏛᏅᎯ -11.3009 ▁ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ -11.3009 ᏅᏓᏥᏪᏎᎵ -11.3009 ▁ᏓᎦᎾᏄᎪᏫᏏ -11.3009 ▁ᏣᎩᏯᎠ -11.3009 ▁ᎬᏬᎳᏕᏍᎬ -11.3009 ▁ᏗᏂᏁᎵᏛ -11.3009 ▁ᎠᏥᏂᏌᏅ -11.3009 ▁ᏂᏓᎾᏤ -11.3009 ▁ᎠᎵᏍᏆᏓ -11.3009 ▁ᏓᎬᎷᏤᎵ -11.3009 ▁ᎡᏣᏙᎵᎩ -11.301 ▁ᏍᎩᏲᏍᏓ -11.301 ▁ᎭᏠᎠᎯ -11.301 ▁ᎢᏥᎦᏛᏂᏙᎯᏉ -11.301 ▁ᏅᏯᏗᎦᎪᏗᏱ -11.301 ▁ᎦᎶᎪᏗ -11.301 ▁ᏱᎦᏬᏂᎭ -11.301 ▁ᎤᎾᏨᏓᎵ -11.301 ▁ᎣᎩᎵᏦᏩᏛ -11.301 ▁ᏗᏍᎩᏲᎯᏏ -11.301 ▁ᎠᎩᎩᎬ -11.301 ▁ᎤᏰᎶᎢᏍᏔ -11.301 ▁ᏦᏚᎯ -11.301 ▁ᏗᎨᏥᏲᎯᏎᎸᎯ -11.301 ▁ᏧᏬᏪᎳᏁ -11.301 ▁ᎠᏥᏂᏌᏁ -11.301 ▁ᎤᏣᏪᏐᎸᏍᏕ -11.301 ▁ᏅᏓᏳᎶᎯᏍᏗᏱ -11.301 ▁ᏁᏓᏂᎵ -11.3011 ▁ᏌᏆᏯ -11.3011 ▁ᎾᎩᎲᎾ -11.3011 ▁ᏧᎾᏂᏏᏗᏱ -11.3011 ᎫᏓᎴᏍᎩ -11.3011 ▁ᏂᎦᏖᏍᏗ -11.3011 ᏍᏕᎵ -11.3011 ▁ᏧᏙᏍᏙᏗ -11.3011 ᏰᎸᎾ -11.3011 ▁ᎤᎩᏢ -11.3011 ▁ᏂᎨᏨᏁ -11.3011 ▁ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ -11.3011 ▁ᏕᎧᏅ -11.3011 ▁ᎤᏗᏩᏒᎯ -11.3012 ▁ᏓᎶᎨ -11.3012 ▁ᏧᎦᏌᏬᎸ -11.3012 ▁ᎢᏓᎻ -11.3012 ᎾᎵᏍᏓᏁᏗ -11.3012 ▁ᏧᏬᏪᎶᏗ -11.3012 ᎦᎫᏍᏓᎥ -11.3012 ▁ᎠᎦᏙᎥᎯᏍᏙᏗ -11.3012 ▁ᏕᎰᏢᏅᎭ -11.3012 ᏂᎸᎬᎾ -11.3012 ▁ᎪᎭᏗ -11.3012 ▁ᎯᏌᏙᏯ -11.3012 ▁ᎢᏣᏛᏁᎸᎯ -11.3012 ▁ᎤᎾᎵᏍᏓᏴᏁᎢ -11.3012 ▁ᏛᏂᎪᎯ -11.3013 ▁ᏱᏥᏯᎠ -11.3013 ▁ᎪᎵ -11.3013 ▁ᎤᎾᏓᏅᏓᏕᎢ -11.3013 ▁ᎠᏂᏏᎾᏌᏅ -11.3013 ▁ᎤᏯᏪᏐᎴ -11.3013 ▁ᎧᏃᎨᏂ -11.3013 ▁ᎤᏄᎩᏣᏁ -11.3013 ᎾᏙᏓᏆᏍᏗ -11.3013 ▁ᎠᏓᏛᏗᏍᎩ -11.3013 ▁ᎢᏗᎬᏁᎸᎯ -11.3013 ▁ᏧᎾᏨᏍᏗᏱ -11.3013 ▁ᏳᏃᎵᏤ -11.3013 ▁ᎣᎩᏅᏏᏓᏍᏗ -11.3013 ▁ᏗᏥᏅᏏᏓᏍᏗ -11.3013 ▁ᎣᎩᎷᏤᎸ -11.3013 ▁ᏯᏕᎶᎰᏍ -11.3014 ▁ᎭᎦᏌᏯᏍᏓ -11.3014 ▁ᏗᏂᎾᏕᎩ -11.3014 ▁ᎠᏓᏴᏍᏔᎩᏍᎩ -11.3014 ▁ᎤᏁᏐᎠᏒᎩ -11.3014 ▁ᎬᏩᎾᏰᏍᎩ -11.3014 ▁ᎴᎹᎩ -11.3014 ▁ᎠᏥᎶᎥ -11.3014 ▁ᎦᏌᎴᏅ -11.3014 ▁ᏍᏊᏓᎳᎩ -11.3014 ᏓᏅᏛᎳ -11.3014 ▁ᏣᏍᎦᎸᎩ -11.3014 ▁ᏂᏚᏂᏪᏎᎸᎩ -11.3014 ▁ᎰᎯᏳᎲᏍᎦ -11.3014 ▁ᏧᏄᎪᏔᏅ -11.3014 ▁ᏚᏭᏓᏔᏅᎩ -11.3014 ▁ᏚᏂᏚᎲ -11.3014 ▁ᎠᏗᏔᏍᎨᏍᏗ -11.3015 ▁ᏓᏕᏏ -11.3015 ▁ᎠᏍᏆᏂᎪᎯᏍᏗ -11.3015 ▁ᎤᎾᏗᏔᏍᏗ -11.3015 ▁ᎤᎵᏨᏓᏆᏛ -11.3015 ▁ᎠᏖᎵᏙᎩᎯ -11.3015 ▁ᏯᏆᏛᏁᎸ -11.3015 ▁ᏧᏂᏄᎪᏫᏍᏗᏱ -11.3015 ▁ᎤᏁᏍᏔᎳ -11.3015 ▁ᎢᏣᎵᏏᎾᎯᏍᏗ -11.3015 ▁ᎢᏥᏴᏍᏗᏱ -11.3015 ▁ᏕᎦᎶᏛ -11.3016 ▁ᎤᏩᏂᎸᎩ -11.3016 ▁ᎬᏩᏄᎯ -11.3016 ▁ᏗᏣᎵᏂᎩᏗᏳ -11.3016 ▁ᏣᏰᎸᏅ -11.3016 ▁ᎻᏗᏂᏱ -11.3016 ▁ᏫᏥᎶᎯ -11.3016 ᎤᏁᏨ -11.3016 ᏚᎧᎾᎾ -11.3016 ᏪᏎᎸᎯ -11.3016 ▁ᏗᎵᏍᏚᎶ -11.3016 ▁ᎢᏥᏯᎥᎢ -11.3016 ᏕᏯᏙᏗ -11.3016 ▁ᏱᎰᏣ -11.3016 ▁ᎤᎾᏛᏅᎢᏍᏔᏁ -11.3016 ▁ᏗᎧᎿ -11.3016 ▁ᏥᏥᏯᎠ -11.3017 ▁ᎢᏯᏋᏁᏗᏱ -11.3017 ▁ᎤᏓᎪᎵᏰᏗ -11.3017 ▁ᎬᎩᏁᏤᎸᎯ -11.3017 ▁ᎡᏥᎨᏳᎢ -11.3017 ▁ᎠᎩᏅᏏᏓᏍᏗ -11.3018 ▁ᎠᏂᎨᏳᏣ -11.3018 ▁ᎣᏥᏃᎮᏍᎩ -11.3018 ▁ᎤᏓᏅᎡᎸᎩ -11.3018 ᏍᏔᏁᎰ -11.3018 ▁ᎤᎾᎵᏓᎩᏛ -11.3018 ▁ᎬᏩᏂᏴᏗᏱ -11.3018 ▁ᎤᏓᏅᏓᏕᎢ -11.3018 ▁ᏅᏧᏪᏎᎢ -11.3018 ▁ᎤᏙᏯᏅᎯᏛ -11.3018 ▁ᎤᏓᏱᎴᎢ -11.3018 ▁ᎤᏇᏓᏢ -11.3019 ▁ᏥᏄᎾᏍᏗ -11.3019 ▁ᎤᎾᏛᏅᎢᏍᏗ -11.3019 ▁ᏳᎨᏳᎭ -11.3019 ▁ᎤᏂᏍᏆᏂᎪᏔᏅ -11.3019 ▁ᏗᎦᏃᎸᏗᏍᎬ -11.3019 ▁ᎤᎾᏍᎪᏎ -11.3019 ▁ᏦᎨᏅᏒ -11.3019 ᏍᏓᏱᏗᏍᏗᏱ -11.3019 ▁ᎤᏁᏍᏓ -11.302 ▁ᏧᎵᏏᎬ -11.302 ▁ᎦᎬᏩᏐᏢᏕᎢ -11.302 ▁ᏫᎤᎶᏎᎢ -11.302 ▁ᎤᏂᎾᏰᎯᏍᏗ -11.302 ▁ᎤᎾᏓᏍᏔᏴ -11.302 ▁ᏥᏥᎪᏩᏘᎭ -11.302 ▁ᏁᏪᏎᎴᎢ -11.302 ᏩᏘᏍᎩ -11.3021 ᏌᎩᏒ -11.3021 ▁ᏒᎦᎾᏲᎪ -11.3021 ▁ᎥᎦᏥᎪᎥᎩ -11.3021 ▁ᏧᎾᎵᏍᏓᏴᏗᏱ -11.3021 ▁ᏕᎩᎸᏫᏍᏓᏁᎲ -11.3021 ▁ᏅᏋᏁᎸ -11.3021 ▁ᏭᏩᏅᏓᏕ -11.3021 ▁ᎣᎦᎵᎪᏅ -11.3021 ▁ᎤᎧᎭᏲᏛ -11.3021 ▁ᎦᎸᏍᏙᏗ -11.3021 ▁ᏕᎦᏃᏣᎸ -11.3021 ▁ᎣᎦᏚᎵᏍᎬ -11.3022 ▁ᎤᏓᏅᎦᎸᏓ -11.3022 ▁ᏓᎩᏲᎯᏎᎸ -11.3022 ▁ᏗᎵᏍᎪᎸᏔᏅᎯ -11.3022 ▁ᎭᏙᎴᎰᎯ -11.3022 ▁ᎡᎦᏔ -11.3022 ▁ᏳᎷᏨ -11.3022 ▁ᎠᏗᏍᎦᎶᏗ -11.3022 ▁ᏚᏌᎳᏓᏅ -11.3023 ▁ᎠᎾᎦᎵᏍᎩ -11.3023 ᏒᏁᎰ -11.3023 ▁ᎠᏁᎷᎲᏍᎨ -11.3023 ▁ᏥᏐᎯ -11.3023 ▁ᏓᏍᎩᏁᎵ -11.3023 ▁ᏱᏂᏣᏛᏁᎸ -11.3023 ▁ᎢᏥᎷᏨᎭ -11.3023 ▁ᏧᏄᎪᏙᏗᏱ -11.3023 ▁ᏂᎬᏩᏂᏪᏎ -11.3023 ▁ᎢᏣᏛᎪᏗᏱ -11.3023 ▁ᎢᏳᏂᏪᏍᏗᏱ -11.3023 ▁ᏧᏂᎷᏫᏍᏔᏁᏗ -11.3023 ▁ᏚᏲᎵᎸ -11.3023 ▁ᎤᎾᎵᏍᏓᏴᏅᎯ -11.3023 ▁ᎯᏥᏧᏣ -11.3023 ▁ᏚᏂᏲᏎ -11.3023 ▁ᏓᏞᏍᏗ -11.3023 ▁ᎠᎦᎫᏴᎡᏗ -11.3023 ▁ᎶᏔᏂ -11.3024 ▁ᏧᏏᎳᏛᏙᏗ -11.3024 ▁ᎠᏆᏡᏗᏍᎩ -11.3024 ▁ᏓᏥᎷᏥ -11.3024 ᏗᎦᎴᏲᏤ -11.3024 ᎦᎿᏩ -11.3024 ▁ᎠᏨᏏᏰᏗ -11.3025 ▁ᎾᎾᏛᏁᎮᏍᏗ -11.3025 ▁ᎢᏥᎦᏔᎰ -11.3025 ▁ᎤᏩᏇᏅᏔᏁ -11.3025 ▁ᏱᏣᏞ -11.3025 ▁ᏭᏘᏅᏍᏔᏁᎢ -11.3026 ▁ᎤᏓᎷᎸ -11.3026 ▁ᎠᏛᎯᏍᏗᏍᎩ -11.3026 ▁ᎠᏔᏲᎯᎮᏍᏗ -11.3026 ▁ᎤᏂᏰᏨ -11.3026 ▁ᎤᏪᏙᎵᏤᎢ -11.3026 ▁ᎤᏓᏴᎳᏔᏅ -11.3026 ▁ᎠᏲᎱᏍᎨᏍᏗ -11.3026 ▁ᏭᏴᏍᏗᏱ -11.3026 ▁ᎤᏁᎳᏗᏍᏗᏱ -11.3027 ▁ᎧᏃᏍᎦ -11.3027 ▁ᎦᎾᏄᎪᏥᎸᎭ -11.3027 ▁ᏥᏍᎦ -11.3027 ▁ᎤᏘᏅᏎ -11.3027 ▁ᎤᎬᏍᎪᎸᏁ -11.3027 ▁ᎡᏥᏁᎸ -11.3028 ▁ᏤᏏᏂ -11.3028 ▁ᏗᎦᎸ -11.3028 ▁ᎨᏥᏰᎸᎯ -11.3028 ▁ᏗᎦᎫᏍ -11.3028 ▁ᏥᎧᏍᎨᏂ -11.3029 ▁ᎢᏣᏙᎴᎰᎯ -11.3029 ▁ᎡᏥᎦᏔᎭ -11.3029 ▁ᏱᎾᏛᎦ -11.3029 ▁ᎠᏂᏐᏢᎢᏍᏗᏍᎩ -11.3029 ▁ᏚᏅᏩᏅᎩ -11.3029 ▁ᏫᏓᏆᎧᎾᏅᎩ -11.3029 ▁ᎤᏂᏁᎢᏍᏗᏱ -11.303 ▁ᏂᏕᎲᏁ -11.303 ▁ᎬᎭᏃ -11.303 ▁ᎤᏍᏔᎦ -11.303 ▁ᎤᎩᎵᏲᎢᏍᏗᏱ -11.303 ▁ᎤᎾᏓᏅᏍᏗᏱ -11.303 ▁ᏕᏛᏅ -11.3031 ▁ᏳᏪᎾ -11.3031 ▁ᎮᎮᏍᏗ -11.3031 ▁ᏚᏪᏐᏤ -11.3031 ▁ᎠᏤᎷᎯᏍᏗ -11.3031 ▁ᎯᏍᎩᏍᏆ -11.3032 ▁ᎾᏅᏁᎰ -11.3032 ▁ᎪᏍᏔᏴ -11.3032 ᎠᏍᎦ -11.3033 ᏐᏍᏙᏗ -11.3033 ▁ᎠᏆᏕᏗᏱ -11.3033 ▁ᎠᏥᎤᏍᏕᏎ -11.3033 ᏌᎳᏙᏗᏱ -11.3033 ᎾᏝᎥᎾ -11.3034 ▁ᎤᎾᏠᎾᏍᏛ -11.3034 ▁ᏚᎵᏰ -11.3034 ▁ᎤᏍᏆᏂᎩ -11.3034 ▁ᎠᏅ -11.3035 ▁ᎤᎾᏗᏔᏍᏗᏱ -11.3035 ▁ᎬᏩᏂᏴᎲᎩ -11.3035 ▁ᏣᎾᏗᎭ -11.3035 ᏍᎩᏰᎵᏎᎮᏍᏗ -11.3035 ▁ᎤᎵᏌᎳᏓᏁ -11.3036 ▁ᎠᏂᏣᏗ -11.3037 ▁ᏔᏔ -11.3037 ▁ᏱᏓᏚ -11.3037 ▁ᎠᏲᏍᏙᏗ -11.3037 ▁ᏧᏍᏕᎸᏗᏱ -11.3037 ▁ᎠᏂᎦᏘᏴ -11.3038 ▁ᎢᎬᏴ -11.3038 ▁ᎠᏍᏓᏱᏗᏍᎩ -11.3038 ᏦᎦᏓᎵ -11.3038 ▁ᎠᎩᏁᏤᎸᎩ -11.3038 ▁ᎩᎳᏊ -11.3039 ▁ᏗᏍᏕᎵᏍᎩ -11.304 ▁ᏗᎬᏩᏁᎶᏗ -11.304 ▁ᏣᎦᏙᎥᎯᏍᏗᏱ -11.304 ▁ᏧᏏᎳᏛᏗ -11.3041 ᏓᏙᎵᏍᏓᏁᎭ -11.3041 ▁ᎠᎾᏓᏩᏛᎯᏙᎢ -11.3041 ▁ᎤᏅᏓᏗᏗᏒᎢ -11.3041 ▁ᏓᏓᏁᎳᏗᏒᎢ -11.3041 ▁ᏗᏆᏓᎴᏅᎢ -11.3041 ▁ᏚᏠᏒᏎᎢ -11.3041 ▁ᏚᏚᎪᏔᏅᎢ -11.3041 ▁ᎤᏓᏏᏁᎢ -11.3041 ▁ᎤᏂᏌᏛᏗ -11.3041 ▁ᏕᏣᏓᏘᎾᎥᎢ -11.3041 ▁ᏧᎾᏄᎪᏫᏎᎴᎢ -11.3041 ▁ᏳᏫᎦ -11.3042 ▁ᏓᎬᏩᎵ -11.3042 ▁ᏗᏒᏆᎶᏍᏗ -11.3042 ▁ᏣᏍᎦᎩ -11.3042 ▁ᏚᎾᏄᎪᏫᏎᎢ -11.3042 ▁ᎢᏣᏂᎩ -11.3042 ▁ᏧᏛᏒ -11.3042 ▁ᎠᏕᎸᏓᎶᏂᎨ -11.3043 ▁ᏙᏣᏓ -11.3043 ▁ᎤᏛᎦᏍᏔᏁᎢ -11.3043 ▁ᏗᎦᎵᏦᏛᎢ -11.3043 ᏍᏓᏁᎭ -11.3043 ▁ᏚᎾᏓᏂᎸᏨ -11.3043 ▁ᏍᎩᎨᏳᎯᏳ -11.3044 ᏅᏍᏔᏅᎯ -11.3044 ▁ᎧᏁᎨᎢ -11.3045 ▁ᎠᏂᎦᏔᎮᏍᏗ -11.3045 ▁ᎣᏤᎲᎢ -11.3045 ᎧᎲᏍᏗᏱ -11.3045 ▁ᏣᏚᎵᎭ -11.3045 ▁ᏴᎦᎬ -11.3045 ▁ᎤᎵᏏᎾᎯᏍᏗ -11.3046 ▁ᎤᏂᏲᎸᎩ -11.3046 ▁ᎠᎩᏰᎯ -11.3046 ▁ᎤᏢᎦ -11.3046 ▁ᎣᎦᏓᏅᏔᏩᏕ -11.3047 ▁ᎠᏓᎾᏅ -11.3047 ▁ᏥᏃᎪᎢ -11.3047 ▁ᏂᎤᏍᏗ -11.3047 ▁ᎤᎾᏛᏓᏍᏛ -11.3047 ▁ᎠᏥᏯᏅᎲ -11.3047 ᎬᎭᎷᏰᎢ -11.3048 ▁ᎠᏍᏆᏂᎪᏛ -11.3048 ▁ᎠᏍᎦᎢᎮᏰᏃ -11.3048 ▁ᎮᏙᎭ -11.3049 ▁ᏄᏁᎩᏴ -11.3049 ▁ᎾᏆᎵᏍᏓᏁᎸᎩ -11.3049 ᏛᏂᏗᏍᏕᏍᏗ -11.3049 ▁ᏥᏚᏁᏤᎴ -11.305 ▁ᏕᎨᏥᏲ -11.305 ▁ᏳᏛᎦ -11.305 ᏍᏆᏂᎪᏔᏅ -11.305 ▁ᎢᎬᏩᏅᏁ -11.305 ▁ᎠᏥᏍᏛᏗᏍᏙᏗ -11.3051 ▁ᎾᏂᎠ -11.3051 ᏍᏚᎲᏍᎪ -11.3051 ▁ᎤᎾᏄᎪᎢᏍᏗᏱ -11.3052 ▁ᎤᏁᏉᎢᏍᏗᏱ -11.3052 ᏄᏪᏎ -11.3052 ▁ᏕᏥᎳᏫᎩ -11.3052 ▁ᎠᎫᏤᎵ -11.3053 ▁ᎤᏁᏙᎴᎢ -11.3053 ▁ᏧᏍᎩᏃ -11.3053 ▁ᎠᏂᎵᎾ -11.3054 ▁ᎠᎩᎸᏙᏗ -11.3054 ▁ᎤᏪᏁ -11.3054 ▁ᏧᏅᎪᏤ -11.3055 ▁ᏧᏂᏍᏓ -11.3055 ▁ᎤᏁᎫ -11.3055 ▁ᎤᎾᎵᎪᎲ -11.3055 ▁ᏚᏑᏰᏒ -11.3055 ▁ᎤᎾᏛᎦ -11.3056 ▁ᎠᏓᏅᏙᎩᎯ -11.3056 ▁ᏯᎩᏰᎸᎭ -11.3056 ▁ᎠᏯᏫᏍ -11.3056 ▁ᏗᎻᎾ -11.3057 ▁ᏚᎾᏔᏅᎩ -11.3058 ᎵᏍᏔᏅᎯ -11.3058 ᎧᏁᏗ -11.3058 ᎷᏤᎴᎢ -11.3059 ▁ᎤᏁᎸᏙᏗ -11.3059 ▁ᎨᏥᏍᏕᎸᏗᏱ -11.3059 ▁ᎪᎹᎵᏱ -11.3059 ▁ᎤᏂᎶᏐᏅ -11.3059 ▁ᏂᏚᏛᏁᎸ -11.3059 ▁ᎦᎵᎡᎵ -11.3059 ▁ᎠᏂᎦᏔᎯᏳ -11.306 ▁ᏗᏤᏅᏒ -11.3061 ᎨᎮᎩ -11.3061 ▁ᏚᏂᏲᎱᏒᎩ -11.3061 ▁ᏕᏥᎧᏅ -11.3061 ▁ᎠᎾᏓᏅ -11.3061 ▁ᏂᎪᎯ -11.3062 ▁ᏄᏪᎡᎢ -11.3063 ▁ᏧᏪᎳ -11.3063 ▁ᎣᎦᏛᎦᏅᎯ -11.3063 ▁ᎣᎦᏣᏅᎩ -11.3064 ▁ᎣᏥᏬᏂᏍᎬ -11.3064 ▁ᎾᏆᏛᏅᎢ -11.3065 ▁ᎤᏔᎳᏬᏍᎬᎢ -11.3065 ▁ᎣᎦᏤᎵᎦ -11.3065 ▁ᏮᏓᏥ -11.3065 ▁ᏚᏪᏲᏁᎢ -11.3065 ▁ᎤᏪᏓᏍᏗᏱ -11.3065 ᏅᏬᏒ -11.3066 ▁ᎤᏢᎬᎩ -11.3066 ▁ᎠᏫᎾᎨᏍᏗ -11.3066 ᏲᏓᎬ -11.3067 ▁ᎩᏥ -11.3067 ▁ᎤᏍᎩᏓᏎᎢ -11.3067 ᎦᏔᎿᎢ -11.3067 ▁ᎤᏂᎩᏌ -11.3067 ▁ᎮᏙᎲᎢ -11.3068 ▁ᎤᎧᎵᎢᏍᏗᏱ -11.3068 ▁ᎤᏂᏰᎸᏗ -11.3068 ▁ᎤᏂᏬᏂᏒ -11.3068 ▁ᎦᎵᏦᏅ -11.3068 ▁ᏅᏓᏍᎩ -11.3069 ᎬᏂᏛ -11.3069 ▁ᏥᏧᏏ -11.3069 ▁ᎤᏛᏛᏅᎩ -11.307 ▁ᏳᏁᎭ -11.307 ▁ᏥᏤᎾ -11.3071 ▁ᎤᏰᎸᏒ -11.3071 ▁ᏧᏓᎴᏅᎢ -11.3071 ▁ᎠᏗᏅᏓ -11.3072 ▁ᎤᎾᏁᎶᏔᏅ -11.3073 ▁ᎡᏥᎦᏙᎥ -11.3073 ▁ᏧᏄᏬᏍᏗ -11.3073 ▁ᎠᏈ -11.3074 ▁ᏤᏙᎭ -11.3074 ᏬᎥᎯ -11.3074 ▁ᎦᎷᎩ -11.3075 ▁ᏣᏠᎾᏍᏗ -11.3075 ▁ᎤᎵᏦ -11.3075 ᏛᏛᎲᏍᎨᏍᏗ -11.3076 ▁ᎡᏓᏍᏗᏱ -11.3076 ▁ᏕᏓᏓᎪᎲᏳ -11.3076 ▁ᎠᏑᏫᏍ -11.3077 ▁ᎢᏓᎵᎮᎵᎩ -11.3077 ▁ᎤᏓᏙᎵᏍᏔᏅᎩ -11.3077 ▁ᎤᏃᎮᎸᎯ -11.3077 ▁ᎤᎵᏓᏍᏔᏅ -11.3078 ᎳᏫ -11.3078 ▁ᎪᏢᏗᏱ -11.3078 ▁ᎢᎳᎻ -11.3078 ▁ᏭᎶᏒᏍᏛ -11.3079 ▁ᎢᏥᏍᏆᏂᎪᏙᏗᏱ -11.3079 ᎩᎦᏘᏛ -11.3079 ᏕᎨᏍᏗ -11.308 ▁ᏚᏭᎪᏔᏁᎢ -11.308 ᏕᎭᏲ -11.308 ▁ᎤᏂᏴᎲᎩ -11.3081 ▁ᏱᎦᏔᎭ -11.3082 ᎵᏍᎪᎸᏓᏁᎰ -11.3085 ▁ᎠᏁᎨ -11.3085 ▁ᎦᎵᏙᏗ -11.3085 ▁ᎩᎦᎨᏍᏛᏱ -11.3086 ▁ᎤᏂᏍᏆᏂᎪᏙᏗᏱ -11.3086 ▁ᎧᏃᎮᎭ -11.3087 ▁ᏧᏓᎵ -11.3087 ▁ᏓᏰᏙᎳᏛᎢ -11.3088 ▁ᎢᎨᎦ -11.3088 ▁ᎤᏰᎸᏒᎩ -11.3088 ▁ᎪᎵᎩ -11.3088 ▁ᏣᏁᏨᎢ -11.3089 ▁ᎤᏍᏓᏩᏛᏎᎢ -11.3089 ▁ᎤᎵᏖᎸᏁᎢ -11.309 ▁ᎢᏳᏅᏂ -11.309 ᎳᏁᎸᎯ -11.309 ▁ᎢᏨᏁᏗᏱ -11.3091 ▁ᎤᏂᏄᎪᏤᏃ -11.3092 ▁ᏚᏪᏟᏌᏅ -11.3092 ᎩᏍᎬᎢ -11.3093 ▁ᏗᏣᎵᎢ -11.3093 ▁ᎠᏥᏍᏕᎸᏗᏱ -11.3094 ▁ᎠᎵᎮᎵᏤᏗ -11.3094 ▁ᏗᏂᏁᎯ -11.3095 ▁ᏓᏘᏁᎲ -11.3095 ▁ᏬᏥ -11.3095 ▁ᎤᏍᎦᎴᎢ -11.3096 ▁ᏳᏛᎾ -11.3096 ▁ᏂᏓᏅ -11.3096 ᏏᏙᎴ -11.3096 ▁ᎠᎩᎾᏫᏱ -11.3096 ᏟᎶᏍᏔᏅ -11.3097 ▁ᏧᎶᏎᎢ -11.3097 ▁ᏕᏦᏕᏍᏗ -11.3097 ▁ᏱᏕᎬ -11.3098 ▁ᎨᎦᎵᏥᏙᏁ -11.3102 ▁ᎡᏓᏓᏙᎵᏍᏓᏁ -11.3102 ᏙᏔᏅᎩ -11.3102 ▁ᎢᏥᏰᎸᎭ -11.3103 ▁ᎤᏲᏍᏔᏅᎯ -11.3103 ▁ᏴᎬᎾ -11.3104 ᎯᏍᏔᏅ -11.3104 ▁ᎢᏯᏋᏁ -11.3106 ▁ᎤᏬᏢᏗᏱ -11.3107 ▁ᏇᎯ -11.3108 ▁ᎬᎨᏳ -11.311 ▁ᏥᏂᏣᏛᏁᎸ -11.311 ᎦᎨᏗᏳ -11.3111 ▁ᏙᏌ -11.3111 ᏨᏒᎩ -11.3111 ▁ᎠᏂᎦᏔᎭ -11.3111 ▁ᎤᏯᎠ -11.3112 ▁ᎢᏧᏍᏗ -11.3112 ᎤᏅᏗ -11.3112 ▁ᏂᏓᏕᏘᏴᎯᏒᎢ -11.3112 ▁ᏗᎦᏁᎸᎢ -11.3112 ᏛᏅᎢᏍᏗᏍᎨ -11.3113 ᎾᏓᏡᎩ -11.3113 ▁ᎤᎾᏓᏅᏖᎸᎩ -11.3114 ▁ᎦᎾᏄᎪᏫᏍᎪ -11.3114 ▁ᏚᏂᎲᎢ -11.3115 ▁ᎤᏂᏍᏚ -11.3115 ▁ᏩᏌ -11.3116 ▁ᏓᏰᏙᎳᏛ -11.3116 ᏥᎳᏫᏎᎲ -11.3117 ▁ᏚᏯᏍᏗ -11.3117 ▁ᏦᏕ -11.3118 ▁ᎤᏗᎴᎲᏍᎬ -11.3118 ᎦᏙᏍᏙ -11.3118 ᏌᎻ -11.3118 ▁ᏗᏆᏄᏬ -11.3119 ᎪᎲᏍᎬ -11.312 ▁ᎤᏂᏅᏅᎢ -11.3121 ᏍᎦᏅᎾ -11.3121 ᎬᏗᎭ -11.3122 ᎶᏘ -11.3122 ▁ᎢᏳᏲ -11.3123 ▁ᎣᏏᏉᏍᎪ -11.3123 ▁ᏆᎷ -11.3126 ▁ᏂᎨᏒ -11.3126 ▁ᎤᏬᏂᏒᎩ -11.3128 ▁ᎤᏁᏙᎸᎢ -11.3128 ▁ᎤᏛᏗᏱ -11.3129 ▁ᏑᏓᎨ -11.3129 ▁ᎤᏓᏰ -11.3129 ▁ᎤᏯᏅᎮᎢ -11.3132 ▁ᎤᏂᏁᏨᎯ -11.3133 ᎵᏍᏓᏁᎸᎩ -11.3133 ᏈᎦ -11.3134 ▁ᏑᎾᎴᎢᏳ -11.3134 ᏗᎣᏈ -11.3135 ▁ᎠᎩᏇᏓᎸᎢ -11.3136 ▁ᏕᎦᏍᎩᎸᎢ -11.3136 ▁ᎤᎩᎸᏗ -11.3136 ▁ᏕᎦᎸᎢ -11.3138 ᏩᏌᏙᏰ -11.3139 ▁ᏰᎮᏍᏗ -11.3139 ▁ᎾᎾᏛᏁᎲᎾ -11.3139 ▁ᏗᎹ -11.314 ▁ᎤᏚᏓᎳ -11.3141 ▁ᎢᏣᎵᎮᎵᎬᎢ -11.3141 ▁ᎠᏇᎵᏍᏗ -11.3141 ▁ᎤᏬᎯᏳᏒᎢ -11.3141 ▁ᎤᎶᏏ -11.3142 ▁ᏌᏉᎯᏳ -11.3142 ᏯᏍᏛ -11.3143 ᏩᏛᎮᎢ -11.3143 ▁ᎠᏁᎬ -11.3143 ▁ᎤᎩᎸᎩ -11.3143 ▁ᎠᏓᎶᏂᎨ -11.3144 ▁ᏄᏂᏪᏎᎴᎢ -11.3144 ▁ᎠᏟᏍᏕ -11.3144 ▁ᎤᎾᏚᎸ -11.3145 ▁ᎬᏩᏛᏛᏅᎩ -11.3146 ▁ᎮᎵ -11.3146 ▁ᎤᏬᎯᏨᏃ -11.3147 ▁ᎠᏔᎸ -11.3147 ▁ᎤᏕᎶᎰᎯᏍᏗ -11.3148 ᎵᏍᎪᎸᏔ -11.3149 ▁ᎠᏆᏛᎦᏅᎯ -11.3149 ▁ᏧᎦᎴᏅ -11.315 ▁ᎠᎩᏍᎦᏅᏨᎢ -11.3151 ▁ᏫᏚᎷᏤᎴ -11.3152 ᏎᎵᏔᏁ -11.3152 ᏄᎪᏫᏒᎭ -11.3154 ᏕᎸᎩ -11.3154 ᏏᎳᏗ -11.3155 ▁ᎦᏆ -11.3155 ᎤᏙᎯᏳᎭ -11.3155 ▁ᏱᏁ -11.3156 ᏥᎸᏉᏔᏅᎯ -11.3156 ▁ᎨᏙ -11.3158 ▁ᎦᎢᏒᎢ -11.3161 ▁ᏓᎩᎸᏫᏍᏓᏁᎲᎢ -11.3161 ▁ᎣᎳ -11.3161 ▁ᎯᎦᏔᎲᎢ -11.3162 ree -11.3163 ᏓᏛᏁᎸ -11.3163 ᏴᏅᎮ -11.3164 ▁ᏤᎦ -11.3165 ᏑᎶᏗ -11.3165 ▁ᎦᏗᎭ -11.3166 ▁ᎦᏯᎸᎢ -11.3166 ᏂᏴᏗᏱ -11.3166 ▁ᎤᎬᎭᎷᏴ -11.3166 ᎾᎾᏛᏁᎭ -11.3167 ▁ᎤᏔᎷᎩᏍᎬ -11.3167 ▁ᏧᏄᏬᎢ -11.3167 ᎩᏍᎨ -11.317 ᏓᏢᎩ -11.317 ▁ᏣᏯ -11.3171 ▁ᎤᏍᏚᎢᏒᎩ -11.3173 ▁ᏓᎾᏗᏔᏍᎨ -11.3175 ▁ᎤᏦᏍᏔᏁ -11.3175 ᎦᏅᏍᎨᏂ -11.3175 ▁ᎤᏂᏃᎮᎸᎩ -11.3175 ▁ᎾᏆᏛᏁᎸᎩ -11.3176 ▁ᎠᏆᎴᏂᏙᎸ -11.3179 ᏍᎪᎯᏧᏈ -11.318 ▁ᎤᏁᎳᎩᏉ -11.3181 ▁ᏥᏂᎦᏪᏍᎪ -11.3181 ▁ᎤᎦᏔᎲᏒᎩ -11.3182 ▁ᏣᏍᏓ -11.3183 ᏫᏏ -11.3183 ▁ᏚᎴᎯᏌᏅᎢ -11.3184 ▁ᏣᏓᏁᏗ -11.3184 ▁ᏗᏥᎦᏴᎵᎨᎢ -11.3184 ▁ᎠᏂᎦᏴᎵᎨᎢ -11.3185 ▁ᏧᎦᏴᎵᎨᎢ -11.3185 ▁ᎤᏰᎸᏎᎢ -11.3187 ᏓᎢᏅᏒᎩ -11.3187 ᏫᏒᏗ -11.3188 ᏂᏅᎪᎠ -11.3189 ▁ᎢᏕᎲᎢ -11.319 ▁ᏩᎩᏴ -11.319 ▁ᎤᎾᏚᎵᏍᎬᎩ -11.319 ▁ᎢᏨᏰᎵᏎ -11.3191 ᎵᎮ -11.3192 ▁ᎦᏄᎸᏒᎢ -11.3193 ▁ᎤᎾᏣ -11.3194 ▁ᎦᎶᏛ -11.3195 ▁ᎤᏂᎷᏨᎯ -11.3196 ▁ᏥᏂᏥ -11.3197 ▁ᎡᎪᎢ -11.3198 ▁ᎤᏬᎴᎢ -11.3202 ▁ᏧᏂᏥ -11.3202 ▁ᎠᎪᎵᏰᏍᎩ -11.3202 ᎪᏢᏔᏅᎯ -11.3202 ▁ᎣᏁᎯ -11.3202 ▁ᎭᎳ -11.3204 ▁ᎢᏣᎦᏔᏅᏎ -11.3204 ▁ᎤᎵᏍᏆᏗᏍᏗᏱ -11.3205 ᏓᎳᎩ -11.3205 ▁ᏗᎯᏍᏗᏱ -11.3207 ▁ᎬᏍᎦᎳ -11.3207 ᏰᎸᏗᏱ -11.3208 ▁ᎢᎶ -11.3209 ᎵᏂᎪᎯᏍᏗᏍᎩ -11.321 ▁ᎠᏂᏍᎦᎩ -11.3211 ᎵᎮᎵᏍᏙᏗ -11.3213 ▁ᏥᏁᎸᎢ -11.3213 ▁ᏈᎵᎩᏱ -11.3218 ▁ᏓᏂᏃ -11.3222 ᎵᎷᎬ -11.3222 ᏓᏅᏖᏍᏗ -11.3223 ▁ᏭᎶ -11.3224 ᏥᏉᎳ -11.3225 ▁ᏚᏂᏅᏨ -11.3225 ᏏᏙ -11.3225 ᏛᏓᏍᏓᏁᎵ -11.3226 ᏢᏫᏍᏙᏗ -11.3227 ▁ᎤᎾᎵᏥᏙᏅ -11.3227 ▁ᎠᎼᎯ -11.3228 ᏏᏙᎮ -11.3231 ▁ᎢᏯᏛᏁᏗᏱ -11.3232 ▁ᏧᏍᎪᎸ -11.3232 ▁ᏕᎦᏚᏩᏗᏒᎢ -11.3232 ▁ᎤᏰᎸᏅᎢ -11.3233 ᏓᏎᎪᎩᏍᏗᏱ -11.3234 ▁ᏕᎮ -11.3236 ▁ᎤᏂᏁᎯ -11.3237 ▁ᎠᏲᏟᎨ -11.3238 ▁ᎤᎵᏍᏓᏴᏗᏱ -11.324 ▁ᎠᎦᎸ -11.3243 ▁ᎤᏣᏗ -11.3243 ᏪᏛ -11.3245 ▁ᎬᎩᏍᏗ -11.3247 ▁ᏧᏁᏗ -11.3249 ᏆᏂ -11.325 ▁ᏓᏰᏣ -11.325 ▁ᎢᏳᎾᎵᏍᏓᏁᏗᏱ -11.3252 ᎩᎳᎾᎳᏗᏍ -11.3253 ᏂᏍᏓᏩᏚᎦ -11.3253 ▁ᎣᎦᎾ -11.3254 ▁ᏙᏓᏥ -11.3257 ▁ᎠᎪᎲᏍᎬ -11.3258 ▁ᎬᏩᏍᏛᏗᏍ -11.3258 ᏣᏓᏅᏛᎾ -11.3265 ᎯᎠᎾ -11.3268 ᏂᎨᏒᎾ -11.3269 ▁ᏧᏂᏲᎰ -11.3273 ᎤᎬᏫᏳ -11.3276 ᏄᏛᏗ -11.3277 ▁ᏧᏭᏓ -11.328 ▁ᎠᏯᎥᎢ -11.328 ▁ᎤᏜᏅᏛᎢ -11.3281 ▁ᎠᎪᎲ -11.3283 ▁ᎤᏗᏍᎦᏢ -11.3285 ▁ᏗᎦᎴᏴ -11.3286 ▁ᎤᏢᏨ -11.3287 or -11.3287 ᎨᏫᏍᏗ -11.3288 ▁ᎤᏂᏧᏈᏍ -11.3289 ᏓᏁᎴᎢ -11.3293 ▁ᏗᏄᏬᏍᏗ -11.3293 ᏌᏁᎢ -11.3294 ᏂᎢᏛ -11.3297 ▁ᎠᏍᎦᏅᏨᎢ -11.3299 ᏪᏒᎩ -11.33 ▁ᏆᎩ -11.3302 ᏕᏗᏴ -11.3307 ▁ᏂᏕᎦᏪᏎ -11.3309 ᏲᎯᏎᏗ -11.3309 ▁ᏳᎾᎵᎪ -11.3311 ▁ᎧᏃᎲᏍ -11.3311 ▁ᎠᏍᏆᏂᎪᏍᎨ -11.3312 ▁ᎤᎵᏍᏙᏗ -11.3314 ▁ᎤᎾᏓᏅᎦᎸ -11.3315 ᏱᎵᏙᎸ -11.332 ▁ᏅᏩᏍᏗ -11.3321 ▁ᎤᏂᏍᏆᏂᎪᏎᏃ -11.3321 ▁ᏳᏰᎸᏁ -11.3323 ᎩᎷᏫ -11.3329 ▁ᏧᎾᏄᏬᎢ -11.333 ᏄᏍᏛ -11.333 ᏓᏂᏙᎦ -11.3331 ▁ᏭᏏᎳᏛᏁ -11.3331 ᎯᏐᏗ -11.3332 ▁ᎠᏌᏅ -11.3334 ᏕᎸ -11.3334 ▁ᏃᎴᏍᏉ -11.3337 ᎬᏁᏗ -11.3338 ▁ᏓᏍᏆᏂᎪᏗ -11.3338 ᏟᏏᏍᎪᎢ -11.3347 ▁ᏏᏉ -11.3348 ᏓᎢᏅᏎᎢ -11.335 ▁ᎨᏣᎵᎮᎵ -11.335 ᏁᏉᎢᏍᏗᏱ -11.335 ▁ᏕᎤᎴ -11.3351 ᏙᏙᏱ -11.3351 ᎪᏯᏛ -11.3353 ▁ᏴᎾ -11.3355 ᏛᎦᏁᎴ -11.3356 ᏰᎮᏍᏗ -11.3357 ▁ᎦᎸᎢ -11.3357 ▁ᎠᏟ -11.3357 ▁ᎤᏇᏓᎸᎢ -11.336 ▁ᏫᏗᎩ -11.3361 ▁ᎤᎾᎥ -11.3362 ᏍᏗᏍᎪ -11.3369 ᏅᎬ -11.337 ᏍᏔᏁᎴ -11.337 ▁ᏣᏓᏡᏗᏍᎪ -11.3371 ▁ᎥᎩᏂᏐᏗ -11.3376 ▁ᏧᏂᏗᏱ -11.3378 ▁ᎠᎩᎷᏤᎸ -11.3378 ▁ᎠᏂᏙᎾᎥᎢ -11.338 ᏆᎧᎿᏅᎩ -11.3381 ▁ᎦᏥᏯᎵᏥᏙᏁ -11.3383 ᏲᏍᏙᏓᏁᏗ -11.3385 ᎸᏉᏙᎢ -11.3387 ▁ᏍᎩᎵ -11.3388 ▁ᎠᎩᎪᎵᏰ -11.339 ▁ᎦᎵᏣ -11.3394 ▁ᏕᎦᏛᎢ -11.3394 ᏥᎩ -11.3402 ᏂᏆᏘᎮᏍᏗ -11.3402 ▁ᎤᎵᏁᏨᎢ -11.3403 ▁ᏱᏂᎬᏂ -11.3404 ᏥᏍᏛᏗᏍᏙᏗ -11.3405 ▁ᎠᏄᏬᏍᏗ -11.3407 ▁ᎨᎦᏎᎸ -11.3409 ▁ᏱᏓᏓ -11.3413 ᎮᏗ -11.3413 ᏓᏌᎳᏗᏍᎨᏍᏗ -11.3415 ᏏᎳᏛᏙᏗ -11.3417 ᏔᏍᏗ -11.3418 ᎩᎸᏙᏗ -11.3418 ▁ᏓᏳᏓᎴᏅᎩ -11.342 ▁ᎠᏊ -11.3425 ᏓᏅᏬᏗ -11.3427 ▁ᎤᏅᏏᏴᎢ -11.3427 ▁ᎤᎨᏓᎵᏴᎢ -11.3427 ▁ᏯᏥ -11.3428 ▁ᏭᏯᏅᎮᎢ -11.3433 ▁ᏧᏩᏔᏁ -11.3438 ᏙᎯᏉ -11.3438 ᏂᏅᏏᏓᏍᏗ -11.3439 ▁ᎠᏍᎦᏂᏍᎩᏂ -11.3444 ᏓᏅᏘ -11.3447 ᏃᎮᏍᎨᏍᏗ -11.3447 ▁ᎢᏨᏯᏅᏓᏗᏍ -11.3449 ▁ᎥᏍᎩᏃ -11.345 ᎧᏁᎸᎾ -11.3451 ᎾᏗᏅᏗ -11.3452 ▁ᎧᎳᏩᏗᏒᎢ -11.3452 ▁ᏗᎦᏚᎲᎢ -11.3454 ▁ᏃᎦᏍ -11.3454 ▁ᎤᏃᏴ -11.3454 ▁ᎤᎾᏞ -11.3461 ᎾᏚᎦ -11.3463 ▁ᏂᏥᏍᎦᏅ -11.3464 ᎾᏗᏅᏎ -11.3466 ▁ᏰᎮ -11.3466 ᎪᎵᎬᎾ -11.3467 ᎭᏢ -11.3468 ᎴᏛ -11.3477 ▁ᏚᎾᏓᎸ -11.3477 ᏍᎩᏯᏅᎡᎸ -11.3481 ᏁᏉᏤᏗᏱ -11.3485 ᏥᏛᎯ -11.3486 ᎯᏰᏃ -11.349 ᎵᎢᏍᏗ -11.3491 ᎪᎲᏍᏔᏁ -11.3497 ▁ᏧᏂᏁ -11.3499 ▁ᎠᏂᏯᎥ -11.3499 ▁ᎣᏣᎵᏥᏙᎲᏍ -11.35 ᏐᎯ -11.35 ▁ᏗᎦᎴ -11.3501 ▁ᎤᏛᏛ -11.3506 ▁ᎣᏓ -11.3507 ▁ᏧᏂᎦᏐᎠ -11.3509 ▁ᎤᎯᏍᏗ -11.3512 ▁ᏱᎦᎨᏎ -11.3513 ▁ᎬᏗᏍᎬᎩ -11.3517 ᎸᏏ -11.352 ▁ᎢᏗᏓᏛᏁ -11.3524 ▁ᎤᎾᏙᏢ -11.3525 ▁ᎢᏳᏂᏨ -11.3525 ▁ᏉᏏ -11.3525 ▁ᏓᏓᎿᏩᏍᏛᎢ -11.3526 ᏓᏁᎲᎩ -11.3527 ▁ᎢᎦᎦᏛᎢ -11.3527 ▁ᎠᏂᏃᎮᏍᎬᎢ -11.3527 ᏄᎪᎨᏍᏗ -11.3527 ▁ᎤᎾᏟ -11.3528 ▁ᎥᎴ -11.3529 ▁ᏱᎦᎷ -11.3531 ᏍᏓᏁᏗ -11.3532 ᏖᏃᎯ -11.3536 ▁ᎤᏲᎴᏃ -11.3537 ▁ᎦᏛᎩ -11.354 ▁ᎤᏁᎴᎢ -11.3542 ᏓᏂᏴ -11.355 ᎷᏤᎸᎭ -11.3552 ▁ᎱᏂᎷ -11.3567 ᏍᏛᏅᎯ -11.357 ▁ᏗᎦᎳ -11.3574 ᎨᏳᏒ -11.3574 ▁ᏔᎳ -11.3575 ᏰᏨ -11.3576 ▁ᎦᎶᏍᎨ -11.358 ᏍᏗᏰᎬ -11.3581 ᏍᏚᎩᏎ -11.3585 ᎾᎷᏒ -11.3587 ᏠᏱᎭ -11.359 ᏅᏣᏛ -11.3591 ᏨᏛ -11.3594 ▁ᎢᏥᏔᏲᎯ -11.3596 ᏳᎶᏗ -11.3597 ᏚᎲ -11.3599 ▁ᎤᏬᏒ -11.3599 ▁ᎤᎾᎵᎪᏒ -11.3599 ▁ᏕᎦᎸ -11.3604 ▁ᎤᏣᏙ -11.3609 ᏂᎨᏂ -11.3609 ᎪᏩᏗᎭ -11.3611 ᏲᎤᎵ -11.3615 ᏣᎵᎮᎵᎦ -11.3622 ᏂᏪᎠ -11.3622 ᎥᎭ -11.3624 ▁ᎬᏩᏕ -11.3629 ᏛᏂᏗᏍᏗ -11.3629 ▁ᏴᏫᏯ -11.3631 ᏓᏅᏖᏍᎨ -11.3633 ᎩᏚᎢᏍᏓᏁᎸ -11.3633 ▁ᎤᏤᎵᎪ -11.3635 ᏙᎭᏴ -11.3636 ᏂᎦᏛ -11.3639 ▁ᎤᏤᎵᎦᏯ -11.3648 ▁ᏱᏂᎨ -11.3649 ▁ᎦᏥᏲ -11.3657 ᎦᏔᎯᏳ -11.3657 ᎦᏔᏙᎥ -11.3657 ▁ᏫᎬᏩᏴ -11.3658 ᎦᎸᎢᏛ -11.3659 ▁ᏥᏫᎦ -11.366 ▁ᎬᏩᏃᎵᏍ -11.3661 ▁ᎠᎦᏔᎲᎩ -11.3663 ᏃᏎᎭ -11.3663 ᎯᏍᏗᏍᎪ -11.3668 ▁ᎣᏣᎵᏍᎦᏍᏙ -11.3673 ᎾᏄᎪᏫᏎᎸᎯ -11.3674 ▁ᏭᏚ -11.3676 ᏌᎡ -11.3685 ᏓᏯ -11.3687 ᎬᏁᎲ -11.3689 ▁ᎢᏣᏓᏄᏴ -11.3692 ᎷᏥᎸ -11.3694 ▁ᎤᏣᏁ -11.3697 ᏲᎯᏎᎴ -11.3699 ▁ᏬᎩᏂ -11.3699 ▁ᎠᏤᎸᏍ -11.3701 ᎦᏙᎥᏒ -11.3703 ᏓᎬᏩᏍᏓᏩᏛᏛ -11.3705 ▁ᎤᏙᎴᎰᏒᎩ -11.3705 ▁ᎤᎵᏍᏙ -11.3708 ▁ᎤᏂᎪᎲᎢ -11.3708 ▁ᏚᎧᎵ -11.3709 ᏚᏓᎳᎡ -11.3711 ▁ᏴᎦᎦ -11.3715 ▁ᎠᏗᏍᎩ -11.3718 ▁ᏚᏪᎧᎮ -11.3725 ᏓᏤᎵᏛ -11.3729 ▁ᏕᎨᎦᏬᏍ -11.3732 ▁ᎦᏙᏉ -11.3734 ▁ᎤᎾᏨᏎ -11.3738 ▁ᎯᎬ -11.3739 ▁ᎢᏤᏙᎯ -11.3739 ▁ᎣᎬᏙᏗ -11.3744 ᏍᏉᏟ -11.3744 ▁ᎠᎡ -11.3752 ᏪᏎᎮᏍᏗ -11.3754 ▁ᏧᎵᏰ -11.3758 ᏯᏅᏓ -11.3762 ▁ᎤᏓᏣᎦᎸ -11.3764 ▁ᎠᏂᎦᏔᎲᎩ -11.3765 ᎳᏍᏓ -11.377 ▁ᏂᎯᎾ -11.3772 ᏍᎦᏅᏨᎯ -11.3774 ᏲᎱᏍᎦ -11.3776 ᏍᏆᏂᎪᏗᏍᎩ -11.3776 ᎦᏍᎩᎶᎩ -11.3777 ▁ᎡᏣᏑᏰ -11.3784 ▁ᏴᏛ -11.3793 ▁ᎤᏂᏲᎮ -11.3799 ᏛᎩᏍᎬ -11.3801 ▁ᏩᏴᏍᏗ -11.3803 ▁ᎣᎩᎭ -11.3806 ᏃᎮᏍᎩ -11.3813 ▁ᎢᏨᏰ -11.3815 ▁ᏱᏭᏂ -11.3817 ri -11.3823 ᏥᏁᎰᎢ -11.3824 ▁ᏗᏰ -11.3834 ᏗᏍᏙᏗ -11.3835 ▁ᎬᏩᎵ -11.3837 ▁ᏘᎩ -11.3844 ᏑᏢ -11.385 ▁ᏣᏍᎦᏅᎪ -11.385 ▁ᎤᏂᏰᎸ -11.3853 ᏏᎳᏕ -11.386 ᎤᏙ -11.3862 ᎦᏚᎩᏱ -11.3862 ▁ᎦᏂᏴᏗ -11.3863 ᏄᎪᏫᏍᏗᏱ -11.3863 ᏲᎮᎸ -11.3868 ᏅᏅ -11.3869 ᏉᎯᏳᎭ -11.3871 ▁ᎤᏚᎵᏍᎬᎢ -11.3871 ▁ᎦᎾᎸ -11.3876 ▁ᏥᏨᏲᏎ -11.3879 ᏛᏗᏱ -11.388 ▁ᎢᏝ -11.3881 ᎫᎢᏍ -11.3882 ᎳᎭ -11.3886 ᎯᎮ -11.3889 ᏗᏍᏗᏱ -11.3903 ᏴᎦ -11.3908 ▁ᎢᏥᏁᎸ -11.3918 ▁ᏚᎴᏁᏃ -11.3923 ▁ᎠᎾᏓᏅᏖ -11.3927 ▁ᎡᎳᏪᏱᏉ -11.3928 ᎾᏄᎪᏫᏍᎦ -11.3928 ▁ᏗᏧᎬ -11.393 ▁ᏗᏣᎵ -11.3932 ▁ᏄᎾᏍᏛᎢ -11.3934 ᏥᏌᎳᏙᏗ -11.3938 ▁ᎠᏑᏰ -11.394 ᎵᏏᎾᎯᏍᏗ -11.3941 ▁ᎠᎪᎵᏰᏍᎬ -11.396 ᏒᏉ -11.3961 ᎨᏏ -11.3968 ᏕᏏ -11.397 ▁ᏱᏂᎦ -11.3972 ᏴᏁᏗᏱ -11.3972 ▁ᏱᏤ -11.3981 ᏥᏰᎯ -11.3983 ᏘᏲᎯ -11.3987 ▁ᏕᎬᏕ -11.399 ᏲᎯᏎᎸ -11.3995 ▁ᏁᎵ -11.4 ᏣᏛᏅᎢᏍᏓᏁ -11.4002 ▁ᏱᏥᏩᏛ -11.4004 ᎸᏍᏙᏗᏱ -11.4006 ᏪᎳᏅ -11.4011 ▁ᎤᎾᏑ -11.4014 ▁Ꮚ -11.4016 ▁ᎠᎩᏍᏆᏂᎪ -11.402 ▁ᏎᏗ -11.4028 ᏒᏂᎸ -11.4029 ▁ᎤᏴᎸ -11.403 ▁ᏕᏧᎪ -11.4036 ▁ᎤᎵᏦᏔᏅ -11.4037 ᏛᏁᎢ -11.4037 ᏥᏯᏂᏍᎨᏍᏗ -11.4038 ᏂᏯᏪᏨ -11.4039 ᎾᏡᏗᏍᎬ -11.4044 ᏙᏔᏁᎢ -11.4061 ▁ᏥᎦᏃ -11.4068 ▁ᏂᎬᎩ -11.4069 ᎾᏌᎢ -11.4069 ᏨᏍᏛ -11.4072 ᎤᎾᏣᏁ -11.4078 ᏁᏛ -11.4081 ▁ᏓᎧᎿᏩᏗ -11.4082 ᏓᏑᏲ -11.4084 ᏍᏗᏰᏔᏅᎩ -11.4086 ▁ᎠᎩᎾᎥ -11.4092 ▁ᎤᎾᏄᎪᏨ -11.4097 ᏛᏅᎢᏍᏔᏅᎯ -11.4103 ᏨᏁᎸ -11.4107 ▁ᏣᎦᎴ -11.4112 ▁ᏥᎠ -11.4115 ᏲᏎᎮᏍᏗ -11.4118 ᏂᏐᏗᏱ -11.4123 ▁ᏗᏂᏁ -11.4125 ▁ᎢᏦᎯᏳᎲᏍ -11.4125 ᏣᎦᏎᏍᏕᏍᏗ -11.4125 ᏲᏍᏓ -11.4126 ▁ᎢᏣᏠᏯᏍᏙᏗ -11.4126 ᎾᎫᏴᏗ -11.4128 ▁ᎠᏓᏅᏍᎨ -11.413 ▁ᏂᎬᏪᏎ -11.413 ▁ᏓᏂᏁᎲ -11.4134 ᏲᎮᎸᎩ -11.4136 ▁ᎣᎩᎾᎵ -11.4138 ᏗᎹ -11.414 ▁ᎤᏲᏏᏍᎨ -11.4144 ᏂᎦᎥ -11.416 ▁ᎬᏆᏓᏅ -11.416 ᏙᏛ -11.4161 ᏔᏍᎬ -11.4162 ▁ᏓᏳᏁ -11.4164 ᏍᏓᏁᎵ -11.4172 ᎦᎴᏔᏂ -11.4172 ᏌᏛᎢ -11.4176 ▁ᏓᎴᎲᏍᎬ -11.4177 ᏎᎯ -11.418 ᎵᎪᏁᎸᎯ -11.4182 ▁ᎠᏂᎯ -11.4185 ᎴᏫᏍᏔᏅ -11.4191 ▁ᏘᏂ -11.4192 ᏓᏓᎸ -11.4194 ᏃᎮᏍᎬ -11.4196 ▁ᎨᏥᏁᎸ -11.4197 ᏃᏴᎵᏍᏗ -11.4202 ᏅᏙ -11.4204 ᏴᏙᏗ -11.4206 ▁ᏗᎧᎿᏩ -11.4209 ᎵᏂ -11.4229 ᏗᎤᏨᏎ -11.4231 ▁ᏭᏢ -11.4233 ᏥᏁᎴ -11.4242 ▁ᎢᏥᎪᎵᏰ -11.4243 ᎶᏙᏗ -11.4243 ▁ᎤᏓᎴ -11.4246 ᎮᎸᎩ -11.4252 ▁ᎠᏓᎴ -11.426 ▁ᏯᎵ -11.426 ᏍᏕᏓᎵᏴ -11.4261 ᏎᎪᎩᏒ -11.4261 ▁ᎮᏙ -11.4262 ᎵᏙᎲᎢ -11.4264 ▁ᏱᎦᏓ -11.4269 ᏜᏏᏛᎡ -11.427 ▁ᏂᏚᏪ -11.427 ▁ᏧᏍᎪ -11.4272 ▁ᏣᏗ -11.4272 ᎠᎩ -11.4281 ᏅᏗᏍᎬ -11.4282 ᏙᎥᎢ -11.4284 ᏍᏆᏂᎪᏛ -11.4286 ᎬᏩᏂᎪᏩᏛ -11.4297 ᏅᏏ -11.43 ᏍᎦᏍᏓᏁᏗᏱ -11.4313 ▁ᎠᏯᏦ -11.4314 ᎾᏰᏍᎦ -11.4326 ᏩᎯᏍᏔᏅᎯ -11.4328 ▁ᎤᏍᎩ -11.4328 ▁ᎤᏂᏏ -11.4337 ᏓᏅᏙ -11.4345 ᏚᎵᏍᎬᎢ -11.4348 ▁ᎤᎾᎴᏅᏗ -11.435 ᏲᏎᎢ -11.4352 ▁ᏚᏂᎭ -11.437 ᏚᎸᏌᏛ -11.4373 ᎵᏍᏗᏍᎬ -11.4377 ᏄᎶᏔᏅ -11.4389 ᏓᎾᏅ -11.439 ᏚᎢᏍᏓᏁ -11.4396 ᎣᎢ -11.44 ᎪᏩᏔ -11.4401 ▁ᏯᏂᎦᏔ -11.4402 ▁ᏫᏘ -11.4405 ᎵᏥᏙᏁᎸ -11.4409 ▁ᎤᎸᏕ -11.4412 ▁ᏧᏪᎧᏁ -11.4414 ▁ᎤᎾᎵᏍ -11.442 ᏳᎢ -11.4426 ▁-- -11.4431 ᏨᏓ -11.4444 ᎳᏕᏗ -11.4447 ▁ᏫᎦᎾᏄᎪ -11.4449 ▁ᏯᎭ -11.4449 ᏓᏂᏐᏗᏱ -11.4456 ᏪᎢ -11.4456 ▁ᎤᏂᏍᏆᏛ -11.4456 ᏫᏎᎸᎯ -11.4458 ▁ᏗᏯᏖ -11.446 ᏍᎩᎲᏏ -11.4461 ▁ᏣᏙᎵ -11.4462 ᎦᎹ -11.4467 ᏍᎩᏃ -11.447 ᎯᏏ -11.447 ▁ᎤᏢᏁ -11.4484 ᏚᎵᏍᎬ -11.4492 ▁ᏥᏍᎩ -11.4492 ▁ᎾᏁ -11.4494 ▁ᎤᏁᎢ -11.45 ᏲᎯᎮ -11.4501 ᏲᎰᏎᏗ -11.4505 ᏯᎡ -11.4511 ▁ᎤᎾᏂᏢ -11.4512 ▁ᏫᏕ -11.4515 ᏲᎢᏳ -11.4521 ▁ᎦᏄᎪᎬ -11.4531 ▁ᎤᏂᎦ -11.4532 ᏥᏲᎢᏎ -11.4533 ▁ᎠᏂᏩᏛ -11.4533 ᏚᏓᎴ -11.4538 ᏳᎵᏍᏙᏗ -11.4545 ▁ᏗᏂᎳ -11.4577 ᎶᎯᏎᎸ -11.4578 ᎦᎶᎯᏍᏗᏱ -11.4581 ᏥᏂᎨᏂ -11.4589 ▁ᎢᎯᏯ -11.4592 ᏃᎮᏗᏱ -11.4593 ▁ᏱᏥᏍᏆᏂᎪ -11.4596 ᏔᏲᎯᎰ -11.4602 ᎴᏗ -11.461 ᎦᏘᎴᎦ -11.4612 ᏥᏴᏔᏂ -11.4615 ᏙᎲᎾ -11.4622 ᏘᎷᎦ -11.4622 ᏛᏎ -11.4631 ᎦᎷᎬ -11.4634 ᏂᏓ -11.4637 ᎳᎩ -11.464 ▁ᏧᏪᏲ -11.464 ᏂᏴᎲ -11.4641 ▁ᎤᏍᏓᏩᏗᏒ -11.4645 ▁ᎤᏑᏰ -11.4645 ▁ᎠᎨᏳ -11.4646 ᏓᏲ -11.4648 ▁ᎠᏆᏗ -11.4653 ▁ᎢᎦᏛᏉ -11.4655 ᏓᏅᏔ -11.4662 ▁ᎦᏂᎵ -11.4662 ᏥᏪᏏ -11.4663 ▁ᎠᎳ -11.4664 ▁ᎢᏨᏁᎸ -11.4665 ᏝᎥ -11.4682 ▁ᏱᎦᏰ -11.4683 ▁ᏯᏉ -11.469 ᎻᎦ -11.4698 ▁ᏣᎢᏒ -11.4701 ᏩᎾᎦᎳᎯᏳ -11.4701 ᏰᎵᏏ -11.4705 ᏂᎩᏍᏔᏁ -11.4705 ▁ᎤᎾᏣᏅ -11.4706 ᏛᏅᎢᏍᏙᏗ -11.4708 ▁ᏗᏣᏓᎨᏳ -11.4708 ▁ᎣᏤᎵ -11.4713 ᏂᏍᎦᎩ -11.4721 ᏩᏛᎲᎾ -11.4721 ᏴᎳᏒ -11.4722 ᏤᎳ -11.4732 ▁ᎨᏥᏅ -11.4734 ᏂᏆᏘᎭ -11.4739 ▁ᎤᎪᏅ -11.474 ᎦᎵᏍᏙᏗᎭ -11.4741 da -11.4745 ᏫᏍ -11.4749 ᏥᏩᎯᏍᏔᏅᎯ -11.4749 ▁ᏰᏙᎮ -11.4751 ᎦᏌᏯᏍᏗᏍ -11.4751 ᏴᎳ -11.4752 ᏌᏬᎸ -11.4754 ▁ᎠᎩᏍᎩ -11.4754 ▁ᎫᏓ -11.4754 ▁ᎤᎫᏴ -11.4761 ᏫᏗ -11.4763 ᎤᏟ -11.4769 ▁ᎣᎩᏃᎮ -11.4773 ▁ᎭᎵᏍᏓᏴ -11.4775 ▁ᏗᏥᏴ -11.4775 ▁ᏭᎷᏤᎸ -11.478 ᎦᎵᏍᏓ -11.4781 ᎦᏔᎰᎢ -11.4792 ᎯᏴᎩ -11.4803 ▁ᎤᎨᏳ -11.4809 ▁ᎤᏂᎧᎵᏨ -11.4812 ᎯᏍᏓᏁᎸ -11.4817 ᏇᏗ -11.4819 ᏘᏃᎸᎩ -11.4824 ᎢᏒ -11.4828 ▁ᎤᏂᏁᏤ -11.4829 ᏍᏓᏴᏗ -11.4842 ᏲᎲᏍᎬ -11.4847 ᏥᏁᎪᎢ -11.4849 ▁ᎠᎱ -11.4854 ᏨᏁᏍᏗ -11.4859 ᎾᏛᎩᏍᎪ -11.4864 ▁ᏖᎾ -11.4881 ᎤᏨᏎ -11.4884 ▁ᏂᏚᏂ -11.4891 ᎵᏍᏓᏴᏙᏗᏱ -11.4892 ᎵᏙᎸᎢ -11.4893 ᎩᏐᏅ -11.4894 ᏝᏅ -11.491 ᎨᎯᏒ -11.4911 ᏘᏂᏒ -11.4915 ᎧᏃᏗ -11.4915 ᏕᎪ -11.4918 ᎦᏘᏲ -11.4923 ᎦᏙᏍᏔᏁᎢ -11.4925 ᎸᏫᏍᏓᏁᎰᎢ -11.4928 ᏐᏢᎢᏍᏙᏗᏱ -11.493 ᎷᏤᏗ -11.493 ▁ᎤᏛᏛᏁᎢ -11.4931 ▁ᎣᎩᏴ -11.4931 ᎦᏲᎵᏳ -11.4933 ▁ᏭᏴ -11.494 ᎪᏩᏘᏍᎨᏍᏗ -11.4943 ▁ᎢᎩᎧ -11.4945 ᏣᎵᏍᏗᎭ -11.4946 ᏛᏁᎴᎢ -11.4956 ▁ᎠᏂᎸ -11.4959 ᎡᎪᎢ -11.4963 ▁ᏕᎦᎾ -11.4968 ᏁᎲᎾ -11.4971 ▁ᎤᎿᎸ -11.4978 ᏲᎮᎴᎢ -11.4982 ▁ᏳᎾᏅ -11.4986 ▁ᎢᎾᎨᏉ -11.4993 ᏁᏍᎨᏍᎩ -11.4996 ᏃᏁᎵ -11.5001 ▁ᎠᏐᏢᎢᏍᏙᏗ -11.5006 ᏛᏁᎸ -11.5016 ᏅᏍᏔᏁᎢ -11.5018 ▁ᎠᏨ -11.502 ᏓᏓᏱ -11.503 ᎸᏅ -11.5032 ᎴᏔᏂ -11.5034 ᏰᎸᏎ -11.5034 ▁ᎤᏢᎨ -11.5039 ▁ᎦᏥᏁᏗ -11.504 ▁ᏧᎾᏚᎪᏓᏁᏗ -11.5046 ▁ᎤᏂᏇᏓ -11.5055 ᏱᎴ -11.5057 ᎢᎲ -11.5062 ᏈᏓ -11.5064 ▁ᎤᎪᎳ -11.5065 ᎵᏍᎪᎸᏓᏁᎸ -11.5066 ▁ᎡᏥᎸ -11.5067 ᏓᏥᎶ -11.5068 ᏍᏓᏁᎮ -11.5075 ▁ᏗᏯ -11.5077 ᏩᏯ -11.5081 ▁ᎠᏎᎪᎩᏍ -11.5098 ᏩᏂᎦᎸ -11.5103 ᏴᏓᏆᎶᎥᎩ -11.5111 ▁ᎤᎾᎵᏍᎩ -11.5123 ᏎᎵᏛ -11.5124 ᏴᏍᏕᏍ -11.5126 ▁ᏕᎤᏅ -11.5127 ▁ᏱᏂᎦᎵᏍ -11.513 ▁ᎠᏆᏕ -11.5131 ᎪᏢᏙᏗ -11.5136 ᏛᎪᏗ -11.5143 ᎾᏛᏁᎭ -11.5148 ᏓᏉ -11.5151 ▁ᏕᎦᏓ -11.5155 ᎵᏍᎪᎢ -11.5163 ▁ᎤᏙᎯᏳᏗ -11.5165 ▁ᏅᏓᏣ -11.5174 ▁ᎢᏥᎨᏳ -11.5177 ▁ᎭᎸ -11.5179 ▁ᏧᏓᏴᎳ -11.518 ▁ᎤᏙᏯᏅᎯᏕ -11.5185 ᏗᏩᏛᎯ -11.5185 ᏢᏈ -11.5185 ᎶᏍᎬ -11.5187 ᏗᏎᎢ -11.5187 ᎵᎥᏂᎸ -11.5188 ᏔᏲᏎᎮ -11.5194 ᎦᏧ -11.5198 ᎪᎥᎯ -11.5199 ▁ᏭᏂᏴ -11.5204 ᎡᎰ -11.521 ᎯᎠᏃ -11.5211 ᎦᎵᏍᎪ -11.5213 ▁ᎦᎾᏰ -11.5218 ᎪᏔᏅ -11.5219 ᏐᏅᎢᏍᏔᏅᎯ -11.5241 ▁ᎡᎬ -11.5242 ᏍᏗᏰᏔᏁ -11.5242 ᏚᎶ -11.5243 ᏱᏢᏗ -11.5253 ᏓᏕᏲᎲᏍᎨᏍᏗ -11.5255 ᎩᏍᏕᎸᏗᏱ -11.5257 ᎲᏍᎪ -11.5262 ▁ᎤᏂᎷᏤᏃ -11.5271 ▁ᎤᏂᎾᏗᏅ -11.5277 ▁ᏗᎦᏓᎨᏳᎯ -11.5277 ▁ᏚᎾᏠᎯᏍ -11.5277 ᎯᏍᏔᏁ -11.5279 ᏅᏌ -11.5279 ▁ᏔᎴ -11.5281 le -11.5285 ᏴᏗᏱ -11.5293 ▁ᎤᎾᎪᎸ -11.5297 ▁ᎡᏥᎾᏰ -11.5304 ▁ᏥᏯᏓᏙᎵᏍᏓᏁ -11.5307 ▁ᎦᎷᎶ -11.5307 ᏰᎵᎯᏍᏗ -11.5314 ▁ᏥᏭ -11.5325 ᎦᎸᎢ -11.5336 ᎲᎯ -11.5338 ▁ᏓᎩᏯ -11.534 ▁ᎠᏓᏂ -11.5341 ▁ᏗᎪᏪᎶ -11.5344 ▁ᎨᏥᏯᏅᏗ -11.5351 ᎳᏅᏓᏕ -11.5351 ▁ᎤᎴᏗ -11.5352 ᏁᏟᏴᏒ -11.5354 ᏂᎨᏥᏪᏎᎴ -11.5356 ᏣᎦᎸ -11.5357 ᏈᏴᎡ -11.5363 ᎵᏍᏆᏗ -11.5363 ᎵᏏᏂ -11.5375 ᎴᎲ -11.5379 ▁ᏗᎦᎵ -11.5379 ▁ᏫᎷᏥ -11.5384 ▁ᏱᎦᏥ -11.5386 ᏓᏅᏛᎢ -11.5389 ia -11.5395 ᏅᏁ -11.5397 ᏚᏩᏂᎦᎸ -11.5404 ᏔᏲᎯᎲ -11.5407 ▁ᎦᎳᏅᏛ -11.5409 ᎶᏔᏅ -11.542 ▁ᏓᏅ -11.5427 ᏓᏍᎩ -11.5437 ▁ᎠᎩᏃᎮ -11.544 ᎦᏔᎲᏍᏗᏱ -11.544 ᏍᎦᏅᏤᎮᏍᏗ -11.5442 ᏤᎴᏍᏗ -11.5443 ▁ᎤᏤᏪ -11.5449 ᏪᏥ -11.5451 ᏓᏅᏓᏗᏍᏔᏅ -11.5458 ▁ᏆᏂ -11.546 ▁ᎬᏩᏁ -11.546 ▁ᏧᏭᎪ -11.5461 ▁ᏔᎫᏴ -11.5462 ᏫᏍᎪ -11.5463 ᏍᏚᎢᏍᏗ -11.5465 ▁ᎣᏂᎩ -11.5465 ▁ᏫᏄ -11.5472 ▁ᎤᏣᏘᏂᏉ -11.5472 ᏗᏒᏍᏗᏱ -11.5474 ▁ᏩᎪᏩᏛ -11.5474 ᏅᏙᏗ -11.5478 ᎾᏛᏁᎰᎢ -11.5482 ᎩᏳ -11.5482 ▁ᎢᏥᏰ -11.5484 ᎿᎢᏳ -11.5487 ᎵᎮᎵᏍᏗᏱ -11.5488 ᎨᏥᎾᏌᎢ -11.5494 ᏣᎪᏩᏛᏗᏱ -11.5495 ᎲᏍᏗ -11.5495 ▁ᎤᏬᎯᏳᎯ -11.5498 ▁ᏚᏂᎨ -11.5504 ᎵᏍᎦᎸ -11.5506 ᏥᏅᎵ -11.5517 ▁ᎤᏪᎧᏁ -11.5517 ᏲᎰᏒ -11.5522 ▁ᎦᏙᎩ -11.5523 ᎾᏫᏛᎮ -11.5524 ▁ᏧᏓᎴᏅ -11.5527 ▁ᏓᎭ -11.5528 ᎪᏍᏓᏯ -11.5539 ▁ᏭᏗᏅ -11.5546 ᎵᏍᎨᏍᏗ -11.5548 ᎦᎾᏅᎪ -11.5549 ᏥᏍᏕᎵᏍᎬ -11.5549 ᏥᎪᏩᏗᎭ -11.5555 ▁ᎠᏥᎪ -11.5561 ᏂᏳ -11.5561 ᏘᏌ -11.5568 ▁ᎤᏂᏯ -11.5568 ᏫᏍᎪᎢ -11.5568 ▁ᏦᎯᏍ -11.557 ᎧᎲᎦ -11.5573 ▁ᎨᎯ -11.5578 ᏍᏓᏩᏕᏅ -11.5581 ᏅᏛᎾ -11.5588 ▁ᏅᏩᏓᎴᎢ -11.559 ▁ᎢᏯᎾᏛᏁ -11.5593 ▁ᎠᏓᏰ -11.5598 ▁ᎤᏝ -11.5604 ▁ᎤᏅᎢᏍᏗ -11.5605 ▁ᎦᏇᏅ -11.5608 ᏆᏤᎵ -11.5611 ᎯᏍᏙᏗᏱ -11.5611 ▁ᎢᏳᎯ -11.5615 ▁ᎠᏂᎴ -11.5621 ᎪᎥ -11.5622 ᏥᏃᎯᏎᎸ -11.5624 ᏑᏯᎩ -11.5625 ▁ᎤᏁᏉᏤ -11.563 ᎬᏩᎶᏗ -11.5644 ᎿᎥᎾ -11.565 ᎾᏣᎥ -11.5653 ᏓᏨᏯᏍᏗ -11.5653 ᎡᎮᏍᏗ -11.5653 ᏛᏅᎢᏍᏔᏅᎩ -11.566 ᎾᏗᏍᎪᎢ -11.5661 ▁ᎠᎦᏞ -11.5668 ▁ᏫᎬᎩ -11.5668 ᎪᎵᏰᏍᎨᏍᏗ -11.5669 ᏍᏘᏰ -11.5669 ᏌᏙ -11.567 ᏩᏘᏍᎨᏍᏗ -11.5672 ▁ᎦᏴ -11.5676 ᏅᏬᏗ -11.5677 ᏃᎯᎮ -11.568 ᎪᎵᏰᏍᎪᎢ -11.5683 ▁ᎠᏂᎷ -11.5684 ▁ᎤᏂᏥᎸ -11.569 ᏲᏢᎾᏁ -11.5691 ᏗᎵᏍᎪᎸᏙᏗ -11.5695 ᏏᏔᏗ -11.5697 ▁ᎤᎾᏗᏓ -11.5698 ᎯᎰᎢ -11.5698 ▁ᎢᏳᎵᏍᏓᏁ -11.5699 ▁ᏭᏕ -11.57 ᎵᏍᏓᏴ -11.5705 ᏂᏙᎲᎢ -11.5707 ▁ᏓᎾᏓᏅ -11.571 ᏥᏅᏍᏗ -11.5716 ᏂᏣᏔ -11.572 ᏓᏅᏘᏐ -11.5721 ᎥᏍᎬᎢ -11.5723 ᎦᎸᏉᏗᏳ -11.5725 ᏂᏙᎲ -11.5725 ▁ᏙᏛᏂ -11.5726 ᏓᏓᎴᏓ -11.5727 ᎾᏝᎠ -11.5729 as -11.574 ▁ᏗᏍᎩᏯ -11.574 ᎨᏎᏍᏗ -11.574 ▁ᏛᏣ -11.5747 ▁ᎠᏌᎹᏗ -11.5748 ▁ᏨᏙᏗ -11.5749 ▁ᏯᏰ -11.5753 ᏙᏥᏩᏛᎲᎩ -11.5758 ᎵᏍᎪᎸᏔᏅᎯ -11.5761 ᏘᏅ -11.5764 ᏯᏅᎲᎭ -11.5769 ᎾᎻ -11.5773 ᏏᏁᎩ -11.5777 ▁ᏓᎾᏛ -11.5778 ᏍᏘᏰᎬᎢ -11.5785 ▁ᏗᏣᎶ -11.5793 ▁ᏩᏗ -11.5807 ▁ᏯᎦ -11.5809 ▁ᏱᏚᏁ -11.5812 ▁ᏕᏣᎵ -11.5815 ▁ᏴᎦᏰ -11.5816 ▁ᎤᏔᎶ -11.5818 ▁ᎠᏫᏒ -11.5819 ▁ᎠᏩ -11.5823 ᏍᎦᏍᎪ -11.5831 ᎠᏂ -11.5835 ᏯᏫᏍᎨᏍᏗ -11.5836 ▁ᎢᎤᏁᏅ -11.5844 ▁ᎢᏥᎨᏳᎯ -11.5846 ▁ᏙᏓᏓ -11.5851 ▁ᏓᎴᏅ -11.5856 ᏍᏈᏗ -11.5857 ᎤᏙᏓ -11.5858 ᏩᏛᎯᎵ -11.5859 ▁ᏗᎩᎦᎨ -11.586 ᏍᏓᏩᏛᏛ -11.5862 ▁ᎠᎾᏁᎷᎩ -11.5865 ᏅᎲᎭ -11.5867 ᎣᎵ -11.5868 ᏁᏣ -11.5872 ▁ᏱᏛ -11.5877 ᏥᎾᏝᎢ -11.5882 ᎳᏗᏓᏍᏗᏱ -11.5888 ᎸᏁ -11.5889 ᎷᏤᎵ -11.5899 ᏃᏴᎵᏍ -11.5908 ▁ᎫᏢ -11.5908 ᏐᏴᎢ -11.5909 ᏂᏂᏌᏁᎢ -11.591 ▁ᎠᏴᎩ -11.5911 ▁ᏥᏚᎾ -11.5911 ᎩᎳᏩ -11.5913 ᎳᏍᏙᏗ -11.5914 ᎶᎨᏒᎢ -11.5914 ᏏᏅ -11.5915 ▁ᎤᏂᎭ -11.5922 ▁ᏧᏭ -11.5923 ᎦᏗᏔ -11.5935 ▁ᎾᎾᎵᏍ -11.5935 ▁ᎢᏣᏛ -11.5939 ▁ᎤᏚᏒ -11.5941 ▁ᏕᎦᏁ -11.5945 ▁ᏱᏨᏯ -11.5946 ▁ᎤᏁᏙ -11.5957 ᏘᏁᎪ -11.5957 ▁ᎠᏆᏚ -11.5958 ᏁᎨ -11.5959 ᏏᏍᎨ -11.5966 ᎦᏌᏯᏍᏗᏕᎩ -11.5973 ᎵᎥᏂᎴ -11.5974 ᏤᎰ -11.5974 ▁ᏧᏂᏯ -11.5981 ᏓᏁᎲᎢ -11.5982 ᏂᎷᏣ -11.5993 ▁ᏨᏔᏅ -11.5995 ▁ᏓᎧ -11.5996 ▁ᏕᏨᏯ -11.5998 ▁ᎦᏥᏃᏍ -11.5999 ᏒᏂᏍᏗᏱ -11.6 ᎾᏣᎡᎢ -11.6004 ᏲᏞᎯ -11.6007 ▁ᎤᎵᏘ -11.601 ᏓᎴᏍᎨᏍᏗ -11.6011 ▁ᏗᎧᏃᎮ -11.6021 ▁ᏤᎳ -11.6022 ▁ᏛᎬ -11.6027 ▁ᎦᏄ -11.6028 ▁ᎠᏏᎾᏌᏅ -11.6032 ▁ᎠᏆᏓᏅᏔ -11.6034 ᏕᏍᎩ -11.604 ▁ᏗᎪᏱ -11.6041 ▁ᎠᏩᏔ -11.6042 ᏍᏔᏴ -11.6043 ▁ᎭᎦᏔ -11.6044 ᎩᎸᏗ -11.6045 ▁ᎠᏗᏔᏍ -11.6052 ▁ᏥᏅᏗᎦᎵᏍᏙᏗ -11.6058 ᏚᏓ -11.6063 ▁ᏙᏓᎦᏥ -11.6064 ᎯᏳᎲᎦ -11.6065 ▁ᎤᏂᏁᏗ -11.6065 ᎧᎿ -11.6069 ▁ᎯᏍᏆ -11.6077 ᎾᏩᏛ -11.608 ▁ᎣᎩᏙ -11.6082 ᏅᏓᏗᏍᏗᏱ -11.6083 ᏎᎲ -11.6088 ᎩᏰᏃ -11.6092 ᏓᏡᏗᏍᎪᎢ -11.6093 ▁ᏧᏢᏫ -11.6093 ▁ᏱᏣᏁ -11.61 ᏂᎾᏰᏍᎬ -11.6103 ▁ᏗᎦᏰ -11.6103 ▁ᎦᏣᏄᎵ -11.6104 ▁ᏓᏍᏆ -11.6108 ᎿᏬ -11.611 ▁ᎠᎩᏰ -11.6112 ᎩᎷᎯᏍᏗᏱ -11.6115 ▁ᏕᏣᏓᏠ -11.6116 ▁ᏂᏨᏪᏎ -11.6116 ᎵᏰᎢᎶ -11.6117 ▁ᎡᏦ -11.6122 ▁ᎤᎾᏓᏟᏌ -11.6124 ᏲᎲᏍᎩ -11.6125 ▁ᏦᏍᎪ -11.613 ᎾᏕᎶᏆᏍᏗ -11.6135 ᏖᎸᎮᏍᎬ -11.614 ▁ᏗᎻ -11.6146 ᏗᏅᏗ -11.6146 ▁ᎤᏔᎷᎩᏍ -11.615 ▁ᎣᏨᏗ -11.6152 ▁ᎤᏍᏆᏃᏴ -11.6152 ᏝᏁᎢ -11.6154 ▁ᏚᏂᏣ -11.6154 ▁ᎠᏥᎸᏉᏙᏗ -11.6157 ᏣᏯ -11.6159 ᎮᏗᏱ -11.6163 ▁ᏣᏲ -11.6164 ▁ᏱᏄ -11.6168 ᎾᏓᏗᏍᎪ -11.6168 ᏓᏓ -11.6168 ▁ᏍᎩᏲᏎ -11.6169 ▁ᎤᏬᏢᏅᏅ -11.6172 ▁ᏱᏓᏆ -11.6175 ▁ᎤᏬᎯᏨ -11.6176 ▁ᏅᏩᏍᏕ -11.6182 ᎸᏉᏛ -11.6186 ᎵᏍᏔᏁᎢ -11.6186 ▁ᎠᎾᏗᏒᎯ -11.6186 ᎴᏂᏓᏍᏗᏱ -11.6189 ᎵᏱᎶᎸ -11.6193 ᎨᎳᏍᏙᏗ -11.6196 ᏩᎯᏍᏗ -11.6198 ᏲᎲᏍᎨᏍᏗ -11.6198 ▁ᎾᏆᎵᏍᏓᏁᎸ -11.6199 ᎦᏓᏅᏓᏗ -11.6203 ᏁᏤᎴᎢ -11.6204 ᏗᎧ -11.6206 ᎧᎭᏲᏔ -11.6207 Ꮊ -11.6207 ▁ᏱᏩ -11.6207 ᏍᎦᏰᎬᏍᏔ -11.6209 ᎬᏗᏍᎨᎢ -11.6212 ▁ᏥᏂᎦᎵᏍᏗ -11.6213 ᏍᏔᏁᏍᏗ -11.6213 ᏩᏍᎦ -11.6214 ᎺᎵ -11.6215 ▁ᎢᏓᏙᎴᎰᎯ -11.6218 ▁ᏱᏓᏥ -11.6221 ᏨᏯ -11.6221 ᏓᎦᎶᏐᏂ -11.6221 ᏯᏅᎡᎵ -11.6223 ᏗᎨᎴ -11.6224 ᎰᏂ -11.6229 ᏍᏔᏅᎾ -11.6229 ᎮᎵᎠᏍᎪ -11.6229 ▁ᏗᏌ -11.6229 ᎦᎵᎡᎵ -11.6232 ▁ᏂᏕᎦ -11.6233 ᎦᏔᎲᎩ -11.6235 ▁ᎦᎸᏉᏗᏳᏰᏃ -11.6238 ᎵᏬᏤ -11.6239 ᏕᏓᏓᎪᎲᏳ -11.624 ᎩᎦᎨᏍᏛᏱ -11.624 ᏲᎢᏎᎴ -11.6241 ᎠᏡᏗᏍᎩ -11.6243 ▁ᎤᏂᎶᏎ -11.6243 ▁ᎤᏅᏍᎦᎴ -11.6243 ▁ᎤᎵᏍᎪᎸᏔᏁ -11.6243 ▁ᎠᎩᎪᏁᎸ -11.6243 ▁ᏚᏂᎧᎲ -11.6243 ᏗᎦᎪᏗᏱ -11.6243 ▁ᎤᏓᏙᏎᎴ -11.6244 ▁ᏓᎾᏓᏅᏖᏍᎬ -11.6244 ᏚᏪᎧᏁᎢ -11.6245 ▁ᎠᎵᎬ -11.6245 ▁ᏳᏂᎪᎮ -11.6245 ᎦᎾᏄᎪᏫᏍᎪ -11.6247 ▁ᎢᏨᏬᏁᏔᏅ -11.6247 ᏓᎩᎸᏫᏍᏓᏁᎲ -11.6247 ▁ᎢᎬᏬ -11.6248 ▁ᏩᏂᎦᏛ -11.6248 ▁ᏫᏚᏳᎪᏛ -11.6249 ᏡᏔᏅ -11.6249 ᎪᎵᏰᏍᎬᎢ -11.625 ᎠᎳᏑᎶ -11.625 ᎤᏬᏚᏨ -11.625 ᎤᏓᏅᏒ -11.625 ᏣᏄᏏ -11.6251 ᏧᏂᎸᏫᏍᏓᏁᎯ -11.6251 ᎬᏂᏳᏉ -11.6252 ▁ᎢᏣᏓᏁᏟᏴᏏᏒ -11.6252 ▁ᏥᎦᎷᎪ -11.6253 ▁ᎠᎾᎢᏎ -11.6253 ᏧᏙᎢᏛ -11.6253 ▁ᎠᏋᏔᏅ -11.6253 ▁ᏚᏂᏂᏴᎮ -11.6254 ᏧᏪᏥ -11.6255 ▁ᎠᏐᏢᎢᏍᏗᏍᎬ -11.6255 ▁ᎠᏂᎦᏔᎮ -11.6256 ▁ᎤᏔᎳᏬᏍᎬ -11.6256 ᏗᏂᎦᏘᏯ -11.6256 ▁ᎤᏂᏂᎬᏎᎲ -11.6257 ᎡᎳᏂ -11.6257 ᎣᏏᏉᏍᎪ -11.6257 ▁ᏚᏪᎧᏁᎴ -11.6257 ▁ᏂᏚᏂᏪᏎᎴ -11.6258 ᎪᏪᎴ -11.6258 ▁ᏕᏣᎸᏫᏍᏓᏁᎲ -11.6258 ▁ᏣᎾᏗ -11.6259 ᎤᏔᎷᎩᏍᎩ -11.6259 ▁ᏥᏄᎵᏍᏔᏁ -11.626 ▁ᏓᎩᏏᎳᏛ -11.6261 ▁ᎤᎾᎦᏙᏍᏕ -11.6261 ▁ᏗᏦᏢ -11.6261 ▁ᏓᎫ -11.6262 ▁ᎤᏁᎸᏔᏁ -11.6262 ᏂᏨᏁᏍᏗ -11.6263 ᎠᏎᏗ -11.6263 ▁ᏚᏠᏱᎴ -11.6263 ▁ᏄᏕᏘᏴᎮ -11.6263 ᎪᏪᎵ -11.6264 ᎪᏪᎸᎢ -11.6264 ▁ᏂᎨᎬᏁᎸ -11.6265 ▁ᎬᏩᏍᏓ -11.6265 ᎵᏍᏙᏔᏅ -11.6265 ᎵᏍᎪᎸᏓᏁᏗ -11.6266 ᎠᎨᏴ -11.6267 ▁ᏚᏫᏞᏫᏒ -11.6267 ▁ᎠᏟᏍᏛ -11.6267 ▁ᏂᎬᏩᏪᏎᎴ -11.6268 ᏂᏍᏚᏁ -11.6269 ▁ᎢᏥᎪᎲ -11.6269 ᏥᏅᏬᏗ -11.6269 ▁ᏕᎫᎪᏓᏁ -11.627 ᏣᏁᎳ -11.6272 ᎦᎵᏉᎩ -11.6272 ᎣᎯᏍᏙᏗ -11.6273 ▁ᏧᏯ -11.6273 ᎤᏛᏁᎢ -11.6275 ▁ᎠᎵᏍᏓᏴᎲᏍᎬ -11.6275 ᎾᏗᏔᏍᏗ -11.6275 ▁ᎤᏂᏚᎲ -11.6275 ▁ᏪᎮ -11.6276 ▁ᏥᏍᏚᏂᎩᏍᏗ -11.6277 ▁ᏕᏥᎳᏫ -11.6278 ▁ᏚᏂᎧᏁ -11.6278 ▁ᎾᏆᏛᏅ -11.6279 ᏂᏬᏂ -11.628 ▁ᎤᏂᏇᏓᎸ -11.628 ▁ᎦᏃᎪ -11.6281 ▁ᏚᏬᏢᏁ -11.6281 ᏥᎸᏉᏔᏅ -11.6282 ▁ᎠᏒᏛ -11.6282 ▁ᏩᎩᎶᏒ -11.6282 ᎦᏪᏍᎬᎩ -11.6282 ▁ᎤᏁᎲ -11.6283 ▁ᏓᏂᏙᎬ -11.6283 ▁ᏚᏪᏲᏁ -11.6283 ▁ᏥᏄᏪᏒ -11.6283 ▁ᏚᏂᎳᏫᏨ -11.6283 ▁ᏓᎩᎪᎲ -11.6284 ᎩᏌ -11.6284 ᎬᏂᎨᏒ -11.6286 ▁ᎤᏮ -11.6286 ᏗᎧᎿᏩᏛᏍᏗ -11.6287 ᎯᏙᎲ -11.6287 ᏅᎪᏨ -11.6288 ▁ᏣᏅ -11.6289 ᏲᏂ -11.629 ▁ᎤᏃᎯᏳᏗ -11.629 ᏁᎢᏍᏔᏁ -11.629 ▁ᎤᏁᎢᏍᏔᏁ -11.6291 ᏓᏙᎵᏍᏗᎭ -11.6291 ᏂᎪᎵᏰᎥ -11.6291 ▁ᎠᏛᏍᎨ -11.6291 ▁ᏧᎾᏓᏡ -11.6292 ᎦᏓᎡᎢ -11.6293 ᏯᏫᏍᏗ -11.6293 ᎯᏄᎪᎢ -11.6293 ▁ᎤᎾᏠᏤ -11.6293 ▁ᎠᏧ -11.6294 ᏪᏎᎢ -11.6294 ▁ᎤᏁᎵᏒ -11.6295 ▁ᏗᏂᎳᏫ -11.6296 ᎩᏓᏟ -11.6297 ▁ᏫᎬᏆ -11.6297 ᎫᏈ -11.6297 ▁ᎢᎦᎯ -11.6298 ᏲᎱᏎ -11.6298 ᎦᏍᎦᏂ -11.6298 ▁ᏭᏂᏴᎸ -11.6299 ▁ᏂᏣᎵᏍᏔᏅ -11.6299 ▁ᏭᏂᏃᏁ -11.6299 ᎶᏄᎮᏗᏱ -11.6299 ᏂᏐᏢᎢᏍᏙᏗ -11.63 ▁ᏛᏥ -11.6301 ᏀᎢ -11.6302 ᏁᏍᏓᎳ -11.6302 ▁ᏄᏅᏁᎴ -11.6302 ᏍᏓᏁᎴ -11.6303 ▁ᎠᏉᎸ -11.6303 ᏲᎱᏒᎯ -11.6304 ᏏᏓᏍᏗ -11.6305 ᏅᏨᎩ -11.6305 ▁ᏱᏚᎸᏫᏍᏓᏁ -11.6306 ᎹᎵ -11.6306 ᏆᏕ -11.6307 ▁ᏗᎬᏩᏁᎶ -11.6307 ▁ᎦᎾᏄᎪᏥᎸ -11.6308 ▁ᏱᏥᎪᏩᏘ -11.6309 ᏟᏌ -11.6309 ᏘᏳ -11.6309 ᏂᏪᏍᎬ -11.6309 ᎡᏆ -11.6309 ▁ᎤᎾᏘᏅᏍᏗ -11.631 ▁ᏱᏣᏚᎵ -11.631 ▁ᏧᏳᎪ -11.631 ▁ᎡᎩᏁᎸ -11.631 ▁ᎾᏎᎵ -11.6311 ᏃᎯᏰ -11.6311 ᏪᎳᏅᎯ -11.6312 ▁ᏭᏂᎷᎯᏍᏗ -11.6313 ᎠᏆᏚᎵ -11.6313 ▁ᎢᏳᏂᏪᏍᏗ -11.6313 ▁ᏧᏄᎪᏙᏗ -11.6313 ▁ᎠᏆᎵᎮᎵᏍᏗ -11.6314 ▁ᎤᎾᏓᏡ -11.6314 ▁ᎢᏣᏓᏤᎵ -11.6314 ▁ᎢᏳᏪᏅᏍ -11.6314 ▁ᏗᎨᏥᎢᏍᏗ -11.6315 ▁ᏫᏨᎷᏤᏗ -11.6315 ▁ᏇᏗᏂ -11.6315 ▁ᎣᎦᎵᏍᏓᏴᏗ -11.6316 ᎸᎢᏍᏗ -11.6316 ▁ᏥᏄᎵᏍᏔ -11.6316 ▁ᎤᎾᏄᎪᏫᏍᏗ -11.6317 ▁ᏗᎦᎳᏫᎢᏍᏗ -11.6317 ᏁᎶᏙ -11.6317 ᏩᏙᎯᏯᏛ -11.6317 ▁ᏗᎩᎸᏫᏍᏓᏁᏗ -11.6317 ▁ᎠᏰᏙᎳ -11.6318 ᏯᏘᏃᎮᎸ -11.6318 ▁ᏧᏍᏆᏅ -11.6318 ▁ᎠᏥᏙᎵᏍᏗ -11.6318 ᎨᏳᏣ -11.632 ▁ᎢᏳᎾᎵᏍᏙᏗ -11.632 ᏲᎦᏛᏁᏗ -11.6321 ᏈᏱ -11.6321 ᏍᏚᎢᏎ -11.6321 ᏣᎳᏁ -11.6322 ▁ᎠᏍᎦᎢᎮ -11.6322 ▁ᎢᏣᏛᎦᏅ -11.6322 ▁ᏚᎸᏫᏍᏓᏁᎮ -11.6322 ᏡᎦ -11.6323 ▁ᎠᏫᎾᎨ -11.6323 ᎴᎲᎦ -11.6323 ▁ᎠᏍᏆᎸᎲ -11.6323 ᏃᎮᎮᎴ -11.6326 ▁ᎨᏣᎵ -11.6326 ᎨᏅᏕ -11.6326 ᎴᎬ -11.6327 ᎿᏍᏕᏢ -11.6327 ▁ᎠᏂᎩᎵᏲ -11.6328 ᎾᏛᏗᏱ -11.6328 ᏄᏩᎢᏴ -11.6329 ▁ᎾᏆᎵᏍᏔᏁ -11.6329 ▁ᏕᎾᏓᎪ -11.6329 ᎵᏍᏓᏴᎾᏁᏗ -11.6329 ▁ᎢᏣᏛᎪᏗ -11.633 ᏁᏓᏥᏛ -11.633 ᎧᎿᏩᏗᏓ -11.633 ▁ᏄᏟᏂᎬ -11.6331 ᏝᏪᎯ -11.6331 ᏜᏏᏛᎡᎲᎾ -11.6332 ᎣᏍᏛ -11.6332 ▁ᎮᎲ -11.6332 ᎨᏢᏔᏅᎭ -11.6333 ᎦᏛᏂᏙᎯᏉ -11.6333 ᎵᏍᏔᏁᏍᏗ -11.6333 ᏅᏍᏓᏕᎴ -11.6333 ᏅᎵᏰᏓ -11.6333 in -11.6334 ᏗᏌᏓᏕ -11.6334 ᏣᎵᎡᎵᏤᏗ -11.6334 ▁ᏕᎬᎦᎿᏩᏗᏙ -11.6335 ᎪᏅᏍᏓᎵ -11.6335 ᏓᏲᎵᏍᏗ -11.6336 ᎤᏍᏕᏎᎸᎯ -11.6337 ᎵᏏᎾᎯᏍᏛᎾ -11.6337 ▁ᎤᏓᏴᏎ -11.6337 ▁ᏩᎾᎦᎳ -11.6337 ᎭᏄᏩ -11.6338 aire -11.6338 ichael -11.6338 reland -11.6338 ᎦᏨᏩᏍᏙᏗᏱ -11.6338 ᎶᏄᎲᎵ -11.6338 ᏂᏍᏋᎦ -11.6338 ᏍᏕᎵᏌᏕᏒᎭ -11.6338 ᏓᏂᏲᎰᏍᎪ -11.6338 ᏓᏅᏖᏔᏂ -11.6338 ᏓᏓᎾᏁᎶᏂᎨ -11.6338 ᏔᏕᎶᎰᏏ -11.6338 ᏚᎸᎡᎸᎩ -11.6338 ᏩᏛᎱᎦ -11.6338 ▁ᎠᎩᏲᎱᏏᏗ -11.6338 ▁ᎠᎾᎵᏍᏓᏴᏂᏙᎮ -11.6338 ▁ᎠᏂᏯᏙᎯᎯ -11.6338 ▁ᎠᏍᏈᏅ -11.6338 ▁ᎠᏥᏂᏌᎲ -11.6338 ▁ᎡᏣᏁᎳᏁᎸ -11.6338 ▁ᎢᎡᏍᏕᎵᏌᏕ -11.6338 ▁ᎢᏍᏙᏎᎸᎭ -11.6338 ▁ᎢᏨᏰᎳᏗᏙᎸ -11.6338 ▁ᎢᏰᎬᏁᎸᎯ -11.6338 ▁ᎤᎦᏑᎲᎢ -11.6338 ▁ᎤᎳᏍᏚᏒ -11.6338 ▁ᎤᎾᏓᏄᏴᏗ -11.6338 ▁ᎤᎾᏓᏙᎵᏍᏓᏁᎴ -11.6338 ▁ᎤᏁᏄᎳᏍᏔᏁᎢ -11.6338 ▁ᎤᏂᏔᎳᏬᏒᎩ -11.6338 ▁ᎤᏄᏖᏎ -11.6338 ▁ᎤᏍᎫᏓᏁᎦᎸ -11.6338 ▁ᎤᏭᏓᎸᏤ -11.6338 ▁ᎦᏖᏌᏗ -11.6338 ▁ᎨᏤᎳᏗᏙᎮᏍᏗ -11.6338 ▁ᎬᏩᏄᎸᏗ -11.6338 ▁ᎬᏩᏓᏡᏫᏍᏔᏅᎩ -11.6338 ▁ᎬᏬᏍᏔᏅᎯ -11.6338 ▁ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ -11.6338 ▁ᎮᏏᎦᏯ -11.6338 ▁ᏂᎠᏂᏪᎭ -11.6338 ▁ᏂᎦᎸᏉᏗᏍᎬᎾ -11.6338 ▁ᏂᎧᏪᏍᎬᎩ -11.6338 ▁ᏂᏓᏓᏂᎸᎬᎾ -11.6338 ▁ᏂᏗᎦᎵᏍᏔᏂ -11.6338 ▁ᏂᏥᏪᏍᎪᎢ -11.6338 ▁ᏄᎾᏓᏁᏟᏴᏎᎢ -11.6338 ▁ᏄᏂᎦᏙᎥᏒᎾ -11.6338 ▁ᏅᏓᎨᏥᏅᏏᏛ -11.6338 ▁ᏅᏓᏍᏛᏴᏁᎵ -11.6338 ▁ᏅᏩᏍᏗᏗᏎᏍᏗᏉ -11.6338 ▁ᏈᏯᏏᏱᏆ -11.6338 ▁ᏍᏆᏎᎵᏓᏁᎸᎢ -11.6338 ▁ᏍᏆᏎᎵᏓᏏ -11.6338 ▁ᏐᎣᏁᎵᏁ -11.6338 ▁ᏑᎧᏔ -11.6338 ▁ᏓᎪᏄᎶᏏᏙᎮᏍᏗ -11.6338 ▁ᏓᎵᏖᎸᏂᏙᎮᏍᏗ -11.6338 ▁ᏓᎾᏦᏍᎬ -11.6338 ▁ᏓᏂᏍᏔᏲᎯᎲ -11.6338 ▁ᏓᏂᏏᎳᏛᎥᏍᎨ -11.6338 ▁ᏓᏆᏚᏫᏍᏔᏅᎩ -11.6338 ▁ᏓᏓᏬᏍᏗᏍᎬᎩ -11.6338 ▁ᏓᏛᎯᏍᏓᏁᎮᏍᏗ -11.6338 ▁ᏔᏓᏅᏗᏍᏓ -11.6338 ▁ᏕᎤᎸᏫᏍᏓᏁᎸ -11.6338 ▁ᏕᎦᎶᎴᎬᎢ -11.6338 ▁ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ -11.6338 ▁ᏕᏥᏅᏫᏍᎨᏍᏗ -11.6338 ▁ᏕᏦᏢᎯᏏ -11.6338 ▁ᏗᎩᎸᏫᏍᏓᏁᎯ -11.6338 ▁ᏗᎩᏄᎪᏨ -11.6338 ▁ᏗᏓᏙᏪᏙᎥ -11.6338 ▁ᏙᏓᏳᎸᏫᏍᏓᏁᎵ -11.6338 ▁ᏙᏗᏂᏁᎸᎢ -11.6338 ▁ᏚᎧᏙᏍᏕ -11.6338 ▁ᏚᎾᏁᏢᏔᏅᏒᎢ -11.6338 ▁ᏚᎾᏠᏱᎴᎢ -11.6338 ▁ᏚᏂᏖᎸᏁ -11.6338 ▁ᏚᏃᏣᎶᏤ -11.6338 ▁ᏚᏢᏫᏎᎴ -11.6338 ▁ᏠᏆᎹ -11.6338 ▁ᏣᏍᏕᏅᏨ -11.6338 ▁ᏣᏗᏫᏍᏓ -11.6338 ▁ᏧᎦᏎᏍᏗᏕᎩ -11.6338 ▁ᏧᏃᏕᏍᏗᏍᎩ -11.6338 ▁ᏫᏙᏓᏨᏯ -11.6338 ▁ᏫᏴᎨᏥᎷᎩ -11.6338 ▁ᏭᏭᏓᎸ -11.6338 ▁ᏮᏓᎦᎶᏏ -11.6338 ▁ᏯᏓᏬᏍᎨᏍᏗ -11.6338 ▁ᏱᏄᎵᏍᏔᏃ -11.6338 ▁ᏱᏙᎬᏩᎸᏫᏍᏓᏏ -11.6338 ▁ᏱᏚᏓᏌᏝᎮᏍᏗ -11.6338 ▁ᏱᏚᏛᏓᏍᏓᏁᎴᎢ -11.6338 ▁ᏱᏚᏪᏘᎸ -11.6338 ▁ᏱᏨᏲᏪᎳᏁᎭ -11.6338 ▁ᏳᎾᏛᏅᎢᏍᏗ -11.6338 ▁ᏳᏍᎦᏅᏨ -11.6338 ▁ᏴᎬᏂᎷᎩ -11.6338 ᎵᏰᏑᏍᏚᏬ -11.6338 ᏍᏇᎵᏰᏗ -11.6338 ᏓᎾᏫᏛᏗ -11.6338 ▁ᎠᏂᎫᏌᏩᎩ -11.6338 ▁ᎢᏍᏉᏎᎭ -11.6338 ▁ᎤᏦᏔᎮ -11.6338 ▁ᏂᏓᎷᎸᎥᏍᎬᎾ -11.6338 ▁ᏂᏚᎿᏍᏕᏢᎾ -11.6338 ▁ᏗᎩᎧᏁᎸᎯ -11.6338 ▁ᏙᏓᎨᏥᏲᎯᏎᎵ -11.6338 ▁ᏙᏧᏁᏅᏒ -11.6338 ▁ᏩᏂᎦᏖᎢ -11.6338 ᏥᏍᎩᏅᏛᎯ -11.6338 ᏬᎯᎵᏴᏍᏓᏁ -11.6338 ▁ᎠᎦᏘᏗᏍᏙᏗ -11.6338 ▁ᎠᎾᏓᏌᎩᏙᎲ -11.6338 ▁ᎤᏓᏏᏂᏕᏅ -11.6338 ▁ᎤᏙᎴᎱ -11.6338 ▁ᎵᏆᏗᎻ -11.6338 ▁ᏍᎩᏯᏅᏓᏗᏍᎬᎢ -11.6338 ▁ᏍᎩᏲᎢᏳᎲᎦ -11.6338 ▁ᏓᎦᏓᏅᏏ -11.6338 ▁ᏓᏍᏆᎸᎮᎬᎢ -11.6338 ▁ᏦᎧᏔᏂ -11.6338 ▁ᏨᏓᎬᏯᏎᎮᎵ -11.6338 ▁ᏭᏪᏙᎴᎢ -11.6338 ▁ᏱᏄᏓᎠ -11.6338 ᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ -11.6338 ᏤᏲᎲᏍᎦ -11.6338 ▁ᎠᎻᏗᏏ -11.6338 ▁ᎠᎾᏓᎩᎡᎯ -11.6338 ▁ᎢᏨᏂᏌᏛ -11.6338 ▁ᎢᏯᏂᏪᏍᎩ -11.6338 ▁ᎤᏂᏍᏛᏛᎯ -11.6338 ▁ᎤᏃᎱᎦᏅ -11.6338 ▁ᎤᏉᏔᏗ -11.6338 ▁ᎤᏖᎸᏁ -11.6338 ▁ᎪᎸᏌᏛᏗ -11.6338 ▁ᏂᏚᎾᏑᎴᎲᎾ -11.6338 ▁ᏅᏗᏛᏁᎵᏒ -11.6338 ▁ᏇᏣᏱᏗ -11.6338 ▁ᏌᎷᏱ -11.6338 ▁ᏍᎩᎨᏳᎭᏧ -11.6338 ▁ᏓᎬᏯᎫᏴᎡᎵ -11.6338 ▁ᏗᎦᎸᏉᏔᏅᎯ -11.6338 ▁ᏗᏂᎭᏲᎯ -11.6338 ▁ᏗᏂᏏᎲᏍᎩ -11.6338 ▁ᏗᏲᎳᏅᎯ -11.6338 ▁ᏙᏛᏂᏲᎯᏎᎵ -11.6338 ▁ᏣᏂᎦᏴᎵ -11.6338 ▁ᏦᎩᎦᏴᎵᎨᎢ -11.6338 ▁ᏱᏄᏩᏁᎸ -11.6338 ▁ᎠᎩᏔᎳᏬᏍᎬ -11.6338 ▁ᎠᎾᎵᏙᎩᏯᏍᎩ -11.6338 ▁ᎣᎦᏛᏅᎢᏍᏗ -11.6338 ▁ᎤᎵᏍᎦᏎ -11.6338 ▁ᎤᏲᏏᏌᏁᎢ -11.6338 ▁ᎬᏩᎵᏃᎮᏔᏁ -11.6338 ▁ᏍᏇᎵᏎᏗᏱ -11.6338 ▁ᏚᏂᏐᏨ -11.6338 ▁ᏚᏟᎶᏍᏓᏁᎸᎩ -11.6338 ▁ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁ -11.6338 ▁ᏯᏂᎷᎩ -11.6338 ᏗᎩᏴᎩ -11.6338 ▁Co -11.6338 ▁ᎡᎵᏍᏓᎦ -11.6338 ▁ᎢᏨᏁᏤᎸᎢ -11.6338 ▁ᎤᏁᎳᎥᎯ -11.6338 ▁ᎤᏩᎢᏎᎸᎯ -11.6338 ▁ᎾᏂᏴᎬᎾ -11.6338 ▁ᏄᎪᎸᎾ -11.6338 ▁ᏅᏓᏲᏣᏛᏁᎵ -11.6338 ▁ᏚᏬᏑᎴ -11.6338 ▁ᏧᏂᏍᏚᏗ -11.6338 ▁ᏩᏓᏁᏟᏴᏍᏓ -11.6338 ▁ᎠᏂᏇᎵᏏ -11.6338 ▁ᎤᏓᏁᏟᏴᏍᏔᏁᎴ -11.6338 ▁ᏂᏚᎾᎵᏂᎬᎬ -11.6338 ▁ᏄᎵᏍᏔᏂᏙᎴ -11.6338 ▁ᏕᏓᎧᏂᏍᎬ -11.6338 ▁ᏥᏅᏓᎦᎵᏍᏔᏂ -11.6338 ▁ᏥᏓᎾᏕᏲᎲᏍ -11.6338 ▁ᎤᏕᏯᏔᏁᎸ -11.6338 ▁ᏄᎵᏍᏚᎸᎾ -11.6338 ▁ᏩᎦᏘᏅᏍᏙᏗᏱ -11.6338 ▁ᎠᎩᎳᏫᏍᏗᏱ -11.6338 ▁ᎠᏆᏙᎴᎰᎯᏍᏗᏱ -11.6338 ▁ᎠᏥᏅᏩᏅᎢ -11.6338 ▁ᎤᎾᎵᏛᏔᏅ -11.6338 ▁ᎤᏆᎶᎦ -11.6338 ▁ᏈᏥᏱ -11.6338 ▁ᏕᎱᏓ -11.6338 ▁ᏚᏰᎵᎯᏍᏔᏁ -11.6338 ▁ᏦᏓᎻ -11.6338 ▁ᏫᎷᏨᎭ -11.6338 ▁ᏮᏓᎦᏙᎴᎣᏏ -11.6338 ▁ᏴᎨᏦᎯᏳᎲᎦ -11.6338 ▁ᎣᏌᏯ -11.6338 ▁ᎤᎾᏕᏯᏔᏁᎴᎢ -11.6338 ▁ᎤᎾᏗᏒᎸ -11.6338 ▁ᎻᎴᎳ -11.6338 ▁ᏓᎾᏗᏔᏍᏗᏍᎨ -11.6338 ▁ᏗᏂᏍᏔᏲᎯ -11.6338 ▁ᏥᎨᏳᎠ -11.6338 per -11.6338 ▁ᎠᎫᏴᎡᏗᏱ -11.6338 ▁ᎤᏚᏣᎳᏅᎩ -11.6338 ▁ᏙᏓᏰᏣᏬᏍᏔᏂ -11.6338 ▁ᏚᎵᏘᎾᎥ -11.6338 ▁ᏚᏂᎵᏬᏨᎩ -11.6338 ▁ᏥᏚᏃᎱᎦᏁ -11.6338 ▁ᎠᏓᏍᏕᎸᏓ -11.6338 ▁ᎡᏦᎯᏳᎲᏍ -11.6338 ▁ᏓᎦᏥᏁᏉᎢ -11.6338 ▁ᏓᏱᏓᎵ -11.6338 ▁ᏣᎷᎯᏍᏗᏱ -11.6338 ▁ᏧᎳᏏᏗᏱ -11.6338 ᎩᏲᎱᏎᎲᎩ -11.6338 ᏬᏁᏓ -11.6338 ▁ᎠᏂᏃᏟᏙ -11.6338 ▁ᎤᎦᏖᏃ -11.6338 ▁ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ -11.6338 ▁ᎦᏨᏩᏍᏔᏅᎯ -11.6338 ▁ᎬᏩᎪᎵᏰᏍᎬ -11.6338 ▁ᏂᏙᏓᎦᏪᏎᎵ -11.6338 ▁ᏓᏤᏅᎡᎵ -11.6338 ▁ᏕᎦᏆᏛ -11.6338 ▁ᏕᎯᏯᏁᎶᏕᏍᏗ -11.6338 ▁ᏥᏂᏴᏁᎭ -11.6338 ▁ᎤᏬᎦᏒ -11.6338 ▁ᏬᎩᏃᎸᎩ -11.6338 ▁ᎾᏂᎦᏔᎾᎥᎾ -11.6338 ▁ᏗᎾᎵᏍᏓᏴᏂ -11.6338 ᏍᏚᎢᎡᎸ -11.6338 ▁ᎠᎵᏍᏕᎵᏍᎬ -11.6338 ▁ᏗᎬᏩᎾᏛᎪᏙᏗ -11.6338 ▁ᏙᎦᏠᏒᎩ -11.6338 ▁ᎤᎾᏕᎶᏆᏍᏗᏱ -11.6338 ▁ᎻᏗᏯᏂ -11.6338 ▁ᏄᏂᏍᎦᏅᏨᎾ -11.6338 ▁ᏛᏓᎸᎢ -11.6338 ▁ᏯᏥᏯᏝ -11.6338 ᏓᎴᏴᏗᏍᎩ -11.6338 ᏓᏓᎴᏔᏂ -11.6338 ▁ᎢᏥᎪᎵᏰᎥᎭ -11.6338 ▁ᎤᎾᏦᏍᏔᏁ -11.6338 ▁ᏂᏨᎾᏛ -11.6338 ▁ᏱᏅᏓᎦᎵᏍᏙᏓ -11.6338 ᎱᏢᏔᏅᎭ -11.6338 ▁ᏛᏥᎷᏥ -11.6338 ▁ᏒᎦᏙᎯ -11.6338 ᏙᏥᎵᏦᏛᎦ -11.6338 ▁ᎠᎵᏃᎮᏗᏍᎬᎢ -11.6338 ▁ᎠᏂᏁᎢᏍᏗᏍᎩ -11.6338 ▁ᎤᎾᏘᏍᏙᏗᏱ -11.6338 ▁ᎤᏎᎵᏓᏁᎴᏃ -11.6338 ▁ᏂᏙᏓᎬᏁᎵ -11.6338 ▁ᏅᏓᏨᏴᏁᎵ -11.6338 ▁ᏗᎾᏓᏙᏕᏍᏗᏍᎩ -11.6338 ▁ᎠᏰᎴᎩ -11.6339 ▁ᎦᏴᏓᏗ -11.6339 ▁ᏕᎦᏕᏲᎲᏍᎬ -11.6339 ▁ᏕᎧᏃᎮᏍᎬ -11.6339 ▁ᏚᎳᏫᏛ -11.6339 ᎩᎵᏲᏥᏙᎸᎢ -11.6339 ▁ᎤᏅᏘᏛ -11.6339 ▁ᎤᏍᏆᎷᎪ -11.6339 ▁ᎤᏙᏣᎸᎢ -11.6339 ▁ᎾᎾᏓᏛᏍᎬᎾ -11.6339 ▁ᎣᏥᏯᎥ -11.6339 ▁ᎤᏓᏦᎯᏯ -11.6339 ▁ᏗᏧᎪᏗᏍᎩ -11.6339 ▁ᎯᏯᏛᎥᎦ -11.6339 ▁ᏙᎩᎾᏗᏔᎲ -11.6339 ▁ᎦᏅᏃᏫ -11.6339 ▁ᏧᏃᏑᎴᏗ -11.6339 ᏲᎱᎯᏎᎴᎢ -11.6339 ▁ᎦᏢᏍᎩ -11.6339 ▁ᏄᎾᏙᏓᏈᏒ -11.6339 ▁ᎤᎾᏓᏓᏍᎩᏌᎲ -11.6339 ▁ᎦᏃᎱᎩᏍᎨ -11.6339 ▁ᏅᏗᎦᏪ -11.6339 ▁ᎠᏂᏂᎩᎸ -11.6339 ▁ᎠᏍᏚᎢᏛ -11.6339 ▁ᎤᎦᏛᎴᎯᏍᏗᏱ -11.6339 ▁ᏗᎬᏩᏂᏯᎢ -11.6339 ▁ᏛᎵᏛᏔᏂ -11.6339 ▁ᏄᎵᏌ -11.6339 ▁ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ -11.6339 ▁ᎤᏍᏘᏰᎩ -11.6339 ▁ᎤᏟᏃᎮᏔᏁᎢ -11.6339 ▁ᏄᏂᏧᏈᏍᏕᏍᏗ -11.6339 ▁ᏛᎬᏯᏘᏃ -11.6339 ▁ᎠᎵᏱᎵᏒᎢ -11.6339 ▁ᎠᏃᏢᏅᎥᏍᎩ -11.6339 ▁ᏧᎾᏛᏒᎯ -11.6339 ᎫᎪᏓᏁᏗ -11.6339 ᏑᎶᏨᎯ -11.6339 ▁ᎠᎾᎵᏍᎩᏍᎬ -11.6339 ▁ᎤᎾᎵᏍᏓᏴᏃᏅ -11.6339 ▁ᏥᏄᎾᏍᏛᎢ -11.6339 ᏨᏯᏛᏛᏂ -11.6339 ▁ᎦᎨᏥᏐᏢ -11.6339 ᎿᎸᏍᏗᏍᎨᏍᏗ -11.6339 ᏕᏯᏔᏁᎭ -11.6339 ᏣᏓᏅᎡᎸ -11.6339 ▁ᏃᎩᏪᏒᎩ -11.6339 ▁ᏓᏳᏂᏄᎪᏨᎩ -11.6339 ▁ᎤᏗᏛᎲᎩ -11.6339 ▁ᏂᎨᏣᏛᏁᎮᏍᏗ -11.6339 ▁ᏧᎾᏓᏟᏴᏗ -11.6339 ▁ᏗᎵᏰ -11.6339 ▁ᏙᎩᏃᏢ -11.6339 ▁ᎠᎩᏔᏕᎩᏍᎬ -11.6339 ▁ᏙᏘᏲᎢ -11.6339 ▁ᏚᏥᎸᏒ -11.6339 ▁ᏫᏄᏒ -11.6339 ▁ᎢᏣᏛᎿᏕᎩ -11.6339 ▁ᎾᏆᎵᏍᏓᏁᎵᏕᎬ -11.6339 ▁ᏚᎾᎵᏯᏍᏚ -11.6339 ▁ᏣᎦᏥᎶᏍᏔᏅ -11.6339 ▁ᏧᎧᏃᏗᏱ -11.6339 ᎬᏣᏝᏅ -11.6339 ▁ᏂᎦᎷᎶᎬᎾ -11.6339 ▁ᏚᎵᏥᏙᏁᎴᎢ -11.6339 ▁ᏥᏂᎦᏛᏁᎭ -11.6339 ▁ᎠᎩᏟᏲ -11.6339 ▁ᏅᏓᏥᏯᏛᏁᎵ -11.6339 ▁ᎢᏥᎪᏙᏍᎨᏍᏗ -11.6339 ▁ᏰᏦᏎᎮᏍᏗ -11.6339 ▁ᏚᏄᏮ -11.6339 ▁ᎠᏉᎵᏨ -11.6339 ▁ᎤᏄᏬᎥᎯ -11.6339 ▁ᎡᏣᏁᏍᎨᎲᎯ -11.6339 ▁ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ -11.6339 ▁ᏗᎩᎪᎶᎯ -11.6339 ▁ᏗᏥᏅᏍᎨᏂ -11.6339 ▁ᏧᏁᎩᏳ -11.6339 ▁ᏄᏓᏅᏛᎾ -11.6339 ▁ᎠᏃᏢᏍᎬ -11.6339 ▁ᎤᏍᎦᎢᏓ -11.6339 ▁ᎢᏥᎾᏫ -11.6339 ▁ᎠᎵᏍᏆᏛᎭ -11.6339 ▁ᎡᏣᎵᎡᎵᏤᎮᏍᏗ -11.6339 ᎳᏫᏎᎮᏍᏗ -11.6339 ᏧᎾᏚᎩᏎ -11.6339 ▁ᎠᏆᎵᏂᎬᎬᎢ -11.6339 ▁ᏫᎷᎩ -11.6339 ▁ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ -11.6339 ▁ᎢᏏᎳᎻ -11.6339 ▁ᎾᏐᏂ -11.6339 ▁ᎾᏓᏛᏁᎲᎢ -11.6339 ᎾᎪᏄᎸ -11.6339 ▁ᎨᎩᏍᎦᎩ -11.6339 ▁ᎹᏈᎳ -11.6339 ▁ᎤᏂᎾᏰᏒᎩ -11.6339 ▁ᏂᏕᎦᏅᎯᏒᎩ -11.6339 ▁ᎢᏣᏛᎩᏍᎨᏍᏗ -11.6339 ᎩᎵᏲᎨᏍᏗ -11.6339 ᎳᏫᏎᏗ -11.6339 ▁ᎤᏁᏢᏔᏅᏒᎢ -11.6339 ▁ᏄᏲᎱᏒᎩ -11.6339 ▁ᏗᏓᎪᏗᏍᎩ -11.6339 ᏍᎦᎳᏤ -11.6339 ▁ᏱᏩᏍᏔ -11.6339 ▁ᏛᎩᏲᎵ -11.6339 ᎬᏲᏎᏗ -11.6339 ᏢᏥᏰᏍ -11.6339 ▁ᏥᏓᏓᏂᎸᎪᎢ -11.6339 ▁ᎠᎵᏱᎶᎸᎭ -11.6339 ▁ᏙᎨᏥ -11.6339 ▁ᏫᏨᏲᎵ -11.6339 ▁ᎠᏆᏁᎳᏫᏎ -11.6339 ▁ᎾᏂᎦᏔᎿᎥᎾ -11.6339 ▁ᎤᎧᎵᏦᏅ -11.6339 ᎳᏍᏕᎵᏴᏌ -11.6339 ▁ᏒᎯᏰ -11.6339 ▁ᏱᏓᏂᏁᏟᏴ -11.6339 ▁ᎤᏪᏣᏄ -11.6339 ▁ᎠᎨᎾᏂ -11.6339 ▁ᏧᏲᏍᏔᏅᎯ -11.6339 ▁ᏬᏥᎦᏛ -11.6339 ▁ᎢᏳᎾᎵᏍᏔᏁᏗ -11.6339 ▁ᎤᏗᎦᎵᏍᏙᏗᏍᎨ -11.6339 ▁ᏧᎾᎳᏏᏕᏄᎶᏗ -11.6339 ▁ᎠᎩᏬᏂ -11.6339 ▁ᎤᎾᏁᎳᏛ -11.6339 ▁ᏕᎱᎪ -11.6339 ▁ᏫᏚᎾᏘᏃᎮᎸᎩ -11.6339 ᏲᎱᏒᎾ -11.6339 ▁ᏅᏓᏳᏪᏒᎩ -11.6339 ▁ᏳᏍᏆᎸ -11.6339 ▁ᎠᏍᏆᎾᎸ -11.6339 ▁ᏧᎾᎳᏏᏕᏅ -11.6339 ▁ᏭᏪᏙᎸ -11.6339 ▁ᎠᏆᏛᏛᏅ -11.6339 ᎩᏍᏚᎲᎩ -11.6339 ▁ᏂᏗᏨᎦ -11.6339 ▁ᎢᎪᎯᏳᏒ -11.6339 ▁ᏣᎪᏎᎰᎢ -11.6339 ▁ᏂᏥᏲᎯᏍᏗᏍᎬᎾ -11.6339 ▁ᎠᎾᏕᎲᏍᎨ -11.6339 ▁ᎤᏃᏴᎳᏒ -11.6339 ▁ᎤᏅᏫᏍᏗᏍᎩ -11.6339 ▁ᏄᎵᏁᏨ -11.6339 ▁ᏅᏧᏪᏎᎴᎢ -11.6339 ᏍᏇᏲᎲᎦ -11.6339 ▁ᎠᎪᏩᏘᏍᎩ -11.634 ▁ᏁᏙᎲᎾ -11.634 ▁ᏍᎩᏯᏛᏓᏍᏓᏏ -11.634 ᏩᎵ -11.634 ᎵᎯᎮᎢ -11.634 ▁ᏏᏗᎻ -11.634 ▁ᏚᏂᏲᏏᏍᎬ -11.634 ▁ᎢᎩᏇᏓᎸ -11.634 ▁ᏚᏂᎦᏘᎸᏎ -11.634 ᏥᏯᏫᏍᎬ -11.634 ▁ᎠᏂᏲᎵᎮ -11.634 ▁ᎢᏣᏓᏅᏓᏓ -11.634 ▁ᎤᏗᎴᎲᏍᎨᎢ -11.634 ▁ᎤᏙᎵᏍᏙ -11.634 ▁ᎠᏆᏛᏐᏅᎯ -11.634 ᏟᎶᏍᏔᏂ -11.634 ▁ᎠᎢᏗᏢ -11.634 ▁ᏄᎸᏉᏔᏅᎾ -11.634 ▁ᏚᏬᎥᎩ -11.634 ▁ᎢᎨᏓᏍᏗᏱ -11.634 ▁ᏗᎾᏓᎯᎯ -11.634 ᏣᎦᏎᏍᏓ -11.634 ▁ᏧᏓᏅᎵᏰᏓ -11.634 ▁ᎤᎵᏒᏍᏔᏁᎢ -11.634 ▁ᏓᏥᎾᏄᎪᏫᏎᎵ -11.634 ▁ᎠᏓᏅᏬᎯᏍᏗᏍᎩ -11.634 ᎭᏄᏫ -11.634 ▁ᎢᏨᏁᏤᎭ -11.634 ▁ᎬᏩᏛᎡᎴᏍᏗ -11.634 ▁ᎤᎦᏌᏛᎢ -11.634 ▁ᎤᏠᎩ -11.634 ▁ᏓᏳᏠᎠᏒᎩ -11.634 ▁ᏚᏂᏎᎪᎩᏎ -11.634 ▁ᎠᏎᎵᏛᏍᎬ -11.634 ▁ᎣᏣᏓᏅᏟ -11.634 ▁ᏫᏚᏂᏴᏍᏗᏱ -11.634 ▁ᎤᎯᏌᏛ -11.634 ▁ᎠᎾᏓᎸᏉᏗᏍᎩ -11.634 ▁ᎠᎩᏁᏉᏤ -11.634 ▁ᏕᎤᏲᎯᏎᎴᎢ -11.634 ▁ᎠᏍᏙᏓ -11.634 ▁ᏳᏂᏃᎮᎸ -11.634 ▁ᎢᏨᏲᎵᎦ -11.634 ▁ᏦᏥᏰᎸ -11.634 ▁ᎠᏓᏓᏱᎮᏍᏗ -11.634 ▁ᎾᎾᎵᏍᏗᎭ -11.634 ▁ᏕᎦᎦᏙᏍᏛ -11.634 ▁ᎠᏁᏦ -11.634 ᏯᏓᏂᎸᏥ -11.634 ▁ᎥᏆᏬᏍᏙᏗ -11.634 ▁ᏭᏗᏢᏍᏔᏅ -11.634 ▁ᎢᏥᏲᎮᏍᏗ -11.634 ▁ᎢᏥᏁᎢᏍᏗᏱ -11.634 ▁ᎤᎾᎵᏍᏔᏴᏅ -11.634 ▁ᏳᏥᏍᎪᎸ -11.634 ᏨᏉᏛᎾ -11.634 ▁ᎥᎩᏂᎵ -11.634 ▁ᏱᎦᏂᏆᏘᎭ -11.634 ᎬᏑᎶᏙᏗ -11.634 ▁ᏫᎬᎷᏤᏗᏱ -11.634 ▁ᏚᎾᏂᏏᏁᎢ -11.634 ▁ᏗᎪᏏᏐᏗ -11.634 ▁ᎠᏉᎯᏳᎲᏍᎨᏍᏗ -11.634 ▁ᏳᏓᏅᏒ -11.634 ▁ᎤᎾᏁᎶᏔᏁ -11.634 ▁ᎣᎦᏂᎩᏒᎩ -11.634 ▁ᎤᏂᏲᎢᏎᎸᎯ -11.634 ▁ᏫᏚᎵᏍᏘᏂᎸ -11.634 ▁ᏚᏂᎳᏫᏦᎴ -11.634 ᏦᎣᏍᏙᏗ -11.634 ▁ᎢᏣᏗᏔᏍᎨᏍᏗ -11.634 ▁ᏓᏆᎭᏄᏮ -11.634 ▁ᏫᏍᎩᏩᎯᏏ -11.634 ▁ᎤᏛᎸᎮ -11.634 ▁ᏙᏂᏍᎩ -11.634 ᎵᏍᏓᏁᎵᏕᎬ -11.634 ▁ᎦᎾᏜᎢ -11.634 ▁ᏅᏓᏳᎾᏄᎪᎢᏍᏗ -11.634 ost -11.6341 ▁ᏓᏰᏥᎪᎢ -11.6341 ▁ᎠᎦᏘᏅᏍᏗᏱ -11.6341 ▁ᏌᎳᏓᏱᎵ -11.6341 ᏕᎰᏍᎬᎾ -11.6341 ▁ᏓᏘᎭᏁᎲ -11.6341 ▁ᏓᏳᏗᏩᏏ -11.6341 ▁ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ -11.6341 ▁ᎤᎾᎦᏙᏍᏛ -11.6341 ▁ᏫᏓᏂᎷᎦ -11.6341 ▁ᏓᏉᏙᎥ -11.6341 er -11.6341 ▁ᏐᏆᎵ -11.6341 ▁ᏌᏗᏏ -11.6341 ▁ᏧᏟᏴ -11.6341 ▁ᎢᏨᏍᏓᏩᏕᏅ -11.6341 ▁ᏙᏓᏲᏣ -11.6341 ▁ᏧᎾᎭᎾᏬ -11.6341 ▁ᎤᏓᏬᎡ -11.6341 ▁ᏅᏛᎴᏅᏛ -11.6341 ᏢᏈᏍᎦ -11.6341 ᏗᎨᏥᏰᎪᎢ -11.6341 ▁ᏫᏗᏍᎩᏯᏅᏏ -11.6341 ▁ᎡᏥᎸᏉᏗᏍᎨᏍᏗ -11.6341 ▁ᏝᏬ -11.6341 ▁ᎤᏂᎦᎾᏍᏓ -11.6341 ▁ᎣᎦᏁᎳᎩ -11.6341 ᎶᏄᎮᎸᎩ -11.6341 ᎠᎩᎷᏨ -11.6341 ▁ᎠᏓᏅᏖᏍᎩ -11.6341 ▁ᎤᎵᏏᏂᏕᎾ -11.6341 ᎨᎲᏒᎩ -11.6341 ▁ᎢᏳᎾᏓᎵ -11.6341 ▁ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ -11.6341 ▁ᎢᏓᎢᏎᏍᏗ -11.6341 ▁ᎢᏣᏓᏄᎸᏗ -11.6341 ▁ᎢᎨᎳᏗᏙᎭ -11.6341 ▁ᎤᏪᎧᎮ -11.6341 ᏃᏪᎳᏁ -11.6341 ▁ᎫᏘᏍᎬ -11.6341 ▁ᎢᎤᏂᎷᏨ -11.6341 ▁ᎤᎾᏓᏅᎡᎸᎩ -11.6341 ▁ᎡᎳᏆᏘ -11.6341 ▁ᏙᏥᏲᎦ -11.6341 ▁ᏕᏣᏏᎳᏛ -11.6341 ▁ᎠᏉᎯᏳᎲᏍᎩ -11.6341 ▁ᎣᎩᎾᏟᏃᎮᎸ -11.6341 ▁ᎣᏦᎯᏳᎲᏍᎦ -11.6342 ▁ᏥᏥᏃᎮᎭ -11.6342 ▁ᎢᏰᏨᏁᏗᏱ -11.6342 ▁ᎠᏆᏎᎵᏙᏔᏅ -11.6342 ▁ᏱᏂᎬᏩᏍᏗᏉ -11.6342 ▁ᎠᏇᏙᏅ -11.6342 ▁ᏚᏰᎵᏏᏙᎴᎢ -11.6342 ▁ᏚᏍᏕᎸᎯᎸ -11.6342 ▁ᏱᏍᎩᏃᎯᏎ -11.6342 ▁ᏗᏤᎵᏏ -11.6342 ▁ᎤᏩᏃᏫᏍ -11.6342 ▁ᏴᏗᏓᎴᎲᏍᎦ -11.6342 ▁ᏭᏂᎧᏁ -11.6342 ▁ᏕᏥᏁᏤᎮᏍᏗ -11.6342 ▁ᏚᏂᏐᏈ -11.6342 ▁ᎤᎵᏍᏚᎸᎩ -11.6342 ▁ᏗᎫᎪᏗᏱ -11.6342 ▁ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ -11.6342 ▁ᎢᏗᏜ -11.6342 ▁ᏓᎾᎴᎯᏌᏅ -11.6342 ▁ᏌᎵᎹ -11.6342 ▁ᏚᎾᏠᏱᎸᎩ -11.6342 ▁ᎤᎩᎴᏍᏗ -11.6342 ▁ᎠᏆᏣᏅᏓᏕ -11.6342 ▁ᎭᎵᏍᏓᏴᎲᎦ -11.6342 ▁ᎡᏣᏓᏅᏛᎵ -11.6342 ▁ᎢᎪᎯᏳᏅ -11.6342 ▁ᏗᎬᏩᏂᎾᏝᎢ -11.6342 ▁ᎠᎬᏂᏗᏳ -11.6342 ▁ᏕᏣᏓᏅᏖᏍᏗ -11.6342 ▁ᎤᏍᏆᏄ -11.6342 ▁ᎤᏓᏅᎵᏰᏓ -11.6342 ▁ᏴᎨᏤ -11.6342 ▁ᏂᏥᎾᏰᏍᎬᎾ -11.6342 ▁ᎠᏅᏍᎬᎢ -11.6342 ▁ᎢᎫᏓᎴᏍᏗᏱ -11.6342 ▁ᎢᎬᏴᏁᏗᏱ -11.6342 ᏓᏚᎪᏓᏁᎭ -11.6342 ᏗᏔᏍᏔᏁ -11.6342 ▁ᏥᏗᎧᎸᎪ -11.6342 ▁ᏯᏬᏅ -11.6343 ▁ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ -11.6343 ▁ᏖᏒ -11.6343 ▁ᏗᏂᏂᏙᎯ -11.6343 ▁ᏭᎦᏔᎲᏍᏔᏅ -11.6343 ▁ᎠᏔᏍᎩᏍ -11.6343 ▁ᎠᎾᏙᎴᎰᏍᎨᏍᏗ -11.6343 ▁ᏕᏣᏓᎨᏳᏒ -11.6343 ▁ᏗᎦᎾᎯᏍᏙᏗ -11.6343 ▁ᏥᎨᎳᏗᏙᎮ -11.6343 ▁ᏚᏂᏃᎸᎩ -11.6343 ▁ᎢᏥᏫᏅ -11.6343 ▁ᏥᎾᏂᎥ -11.6343 ▁ᎤᏃᏒᏅ -11.6343 ▁ᏩᏎᎯ -11.6343 ᏍᎦᏞᎢ -11.6343 ▁ᏂᏍᎩᏴᏁᎸ -11.6343 ᏍᏕᏓᎵᏴᏌ -11.6343 ▁ᏚᏍᏚᏤ -11.6343 ▁ᎤᏂᏏᏁᎢ -11.6343 ▁ᏭᎵᏰᎢᎶᎸ -11.6343 ▁ᎢᏗᎬᏓ -11.6343 ▁ᎢᏨᏅᎵ -11.6343 ▁ᏧᏪᏲᏅᎯ -11.6343 ▁ᎤᏁᏍᎨᎴ -11.6343 ▁ᏕᏨᏰ -11.6343 ▁ᏧᏕᏲᏗᏱ -11.6343 ᎵᏴᏌ -11.6343 ᏳᎪᏛᎾ -11.6343 ▁ᎨᏣᎵᏍᏕᎸᏙᏗ -11.6343 ᏲᎲ -11.6343 ▁ᎢᏥᏂᎬᏎᎲᎢ -11.6343 ▁ᏍᎩᏯᏓᏅᏏ -11.6343 ᎩᎩᎡᎵ -11.6343 ▁ᏓᏳᏍᏕᎸᎯ -11.6343 ▁ᎤᏤᏥᏍᏗ -11.6343 ▁ᎦᏁᏐᎠᏍᎬ -11.6343 ▁ᏅᏩᏛᏁᏍᏗ -11.6343 ▁ᏍᏆᏕᏁᎸ -11.6343 ▁ᎢᏨᏲᎢᏳ -11.6343 ▁ᎠᏕᏄ -11.6343 ▁ᎠᏕᎰᎯᏍᏗ -11.6343 ▁ᎢᏳᏥᎶᏓ -11.6343 ᏓᏄᏴᏛᎾ -11.6343 ▁ᏫᏨᏲᏪᎳᏁᏗᏱ -11.6343 ▁ᏗᏣᏠᏱᎸᎩ -11.6344 ▁ᎤᏂᏯᏙᎴ -11.6344 ▁ᏚᏅᏫᏍᏔᏅ -11.6344 ▁ᎹᏚ -11.6344 ▁ᏧᏓᎴᏅᏔᏅᎯ -11.6344 ▁ᏄᎾᏍᏕᏍᏗ -11.6344 ▁ᎠᎦᏬᎥ -11.6344 ▁ᏕᎦᎶᏍᎬ -11.6344 ᏴᎳᏎᎢ -11.6344 ▁ᏄᏓᎨᏒ -11.6344 ▁ᎠᏯᎣᎢ -11.6344 ▁ᎠᎾᎵᏍᏔᏴᎲᏍᎬ -11.6344 ▁ᎢᏲᎦᏛᏁᏗᏱ -11.6344 ▁ᏤᏥᎤᏍᏕᏎᏗᏱ -11.6344 ▁ᏱᏓᎨᏏ -11.6344 ▁ᎣᏣᏓᏙᎵᏍᏓᏁ -11.6344 ▁ᎯᏅᎦᎸ -11.6344 ▁ᎢᏕᎮᏍᏗ -11.6344 ▁ᏧᎾᏁᎳᏗᏍᏗᏱ -11.6344 ▁ᏥᏄᏪᏎᎴᎢ -11.6344 ▁ᏋᏗᏱ -11.6344 ▁ᎤᎾᏓᏙᎵᏍᏗ -11.6344 ▁ᎦᏁᎵᏛ -11.6344 ▁ᎯᏁᏒᎭ -11.6344 ᎦᏎᏍᏔᏅ -11.6345 ᏙᎰᏎ -11.6345 ▁ᏛᎨᏥ -11.6345 ▁ᏯᏆᏛᎦ -11.6345 ▁ᏱᏙᎦᏰ -11.6345 ▁ᎢᏨᏯᏛᏁᏗᏱ -11.6345 ▁ᏂᎦᏁᎲᎾ -11.6345 ᏕᎰᎯᏍᏙᏗᏱ -11.6345 ▁ᎢᏤᎳᏗᏙᎭ -11.6345 ▁ᎠᎾᏔᏍᎩᏍᎩ -11.6345 ▁ᎢᎤᎷᏤ -11.6345 ᎥᏍᎩᏱᎩ -11.6345 ▁ᎤᏓᏅᏓᏛᎩ -11.6345 ▁ᎢᏥᎷᎨᏍᏗ -11.6345 ▁ᎠᏝᎲ -11.6345 ▁ᎢᏣᏓᏯᏫᏍᎨᏍᏗ -11.6345 ▁ᏍᎩᏯᏘᏃᎮᎸᎭ -11.6345 ▁ᏣᎾᏓᎾᏏᏂᏙᎭ -11.6345 ▁ᏥᎦᎷᎯᏍᏗᎭ -11.6345 ▁ᎢᏳᏪᏍᏘ -11.6345 ᎫᏴ -11.6345 ▁ᏂᏥᏪᏒᎭ -11.6345 ▁ᏗᎦᏅᏍᏙᏗ -11.6345 ▁ᏱᏣᏰᎸᏅ -11.6345 ▁ᏳᏲᏤᎢ -11.6345 ▁ᎤᏂᏑᎵᎪᏤ -11.6345 ▁ᏅᏓᏳᏄᎪᏨᎯ -11.6345 ▁ᎾᎾᏓᏁᏟᏴᏏᏒ -11.6346 ᎶᏅᎮᎸ -11.6346 ▁ᎾᏥᏪᏎᎸ -11.6346 ▁ᏱᏦᎵᎦ -11.6346 ▁ᎢᏣᏣᏪᏐᎸᏍᏓ -11.6346 ▁ᏗᎦᏚᏗᏱ -11.6346 ▁ᎢᏳᏩᎪᏗ -11.6346 ▁ᎤᏩᎦᏘ -11.6346 ▁ᏓᏂᎾᏌᏛ -11.6346 ▁ᎯᏫᏅ -11.6346 ▁ᏗᎨᎪᏍ -11.6346 ▁ᎠᏂᎵᏫ -11.6346 ▁ᏕᏨᏁᏍᏗ -11.6346 ▁ᎬᎩᎷᏤᏗᏱ -11.6346 ▁ᏱᎾᏥᎸᏉᏙ -11.6346 ᏎᏒᎮ -11.6346 ▁ᏥᏯᎵᎪᏁᎯ -11.6346 ᏠᎯᏍᏗᏱ -11.6346 ▁ᏗᏑᏫᏍᎩ -11.6346 ▁ᏍᎩᏂᏌᏅᎭ -11.6346 ▁ᏗᏋᏅ -11.6346 ▁ᎠᏥᏌᎳᏓᏅ -11.6346 ▁ᎤᏓᏅᏘᏌᏅ -11.6346 ᏓᏐᎴ -11.6346 st -11.6346 ▁ᎠᎩᏁᎢᏍᏗᏱ -11.6346 ▁ᎦᎸᎳ -11.6346 ▁ᎡᏙᏙᏱ -11.6347 ▁ᎢᏨᎥᏏ -11.6347 ▁ᎠᏯᏖᏂ -11.6347 ▁ᏍᎩᏩᎯ -11.6347 ▁ᎡᏥᏯᎡᏍᏗ -11.6347 ▁ᎢᏦᎯᏳᏅ -11.6347 ▁ᎨᏥᏁᎢᏍᏗᏍᎬ -11.6347 ▁ᏦᏥᎦᏔᎭ -11.6347 ▁ᎤᏰᏥᏍᎩ -11.6347 ▁ᏗᏣᏚᏙ -11.6347 ▁ᎡᏦᎢᏳᏗᏱ -11.6347 ▁ᎬᏩᏂᏴᎮᎢ -11.6347 ᏄᎵᏍᏓᏁᎴ -11.6347 ▁ᎤᏂᏴᏔᏂᎯᏍᏗᏱ -11.6347 ▁ᏚᏂᎵᏦᏛ -11.6347 ▁ᏗᏂᏃᎩᏍᎩ -11.6347 ▁ᏥᎦᏁᎭ -11.6347 ▁ᏥᏰᎸᎥ -11.6347 ▁ᎭᎴᎲᎦ -11.6347 ▁ᏫᎯᎶᎯ -11.6347 ▁ᏚᏃᎸᏎᎢ -11.6347 ▁ᏱᏥᏩᏘᎭ -11.6347 ▁ᎢᏨᎪᏩᏛᏗᏱ -11.6347 ▁ᎤᎾᏓᏅᏔᏩᏕ -11.6347 ▁ᏥᏚᏙᎠ -11.6347 ▁ᏂᎪᎵᎬᎾ -11.6347 ▁ᎢᏨᎷᏤᏗᏱ -11.6347 ▁ᏕᏨᏗᏍᎨᏍᏗ -11.6347 ▁ᎤᏓᎵᏁᎯᏕ -11.6348 ▁ᎤᏬᎯᏳᎯᏍᏛ -11.6348 ▁ᏕᎨᏥᎵᎥᏂ -11.6348 ▁ᏚᏃᎯᏳ -11.6348 ▁ᎠᏆᏙᎴᎰᏒ -11.6348 ▁ᎰᎯᏳᎲᎦ -11.6348 ᏯᏓᏅᏏ -11.6348 ▁ᎥᎩᏍᏕᎸᏗᏱ -11.6348 ▁ᏕᏥᎸᏉᏕᏍᏗ -11.6348 ▁ᎠᎦᎸᏥ -11.6348 ▁ᎠᎫᏣ -11.6348 ▁ᏱᎦᏕᎣᏍᎦ -11.6348 ▁ᏯᏲᎱᎯ -11.6348 ▁ᎤᎵᏍᏆᏙᏅ -11.6348 ▁ᏱᎾᏛᏁᎮ -11.6348 ▁ᎢᏯᏆᎵᏍᏓᏁᏗ -11.6348 ▁ᏣᏍᏉᏂᎪᏗ -11.6348 ▁ᎤᏂᏲᏍᏙᏗᏱ -11.6348 ▁ᎦᏓᏆᏟ -11.6348 ᏠᏱᎸᎩ -11.6348 ▁ᏚᏰᎵᏒ -11.6349 ▁ᎯᏲᏍᏗᏍᎩ -11.6349 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎩ -11.6349 ▁ᎤᏍᏆᎸᎯᏗᏒᎩ -11.6349 ▁ᏧᏂᎦᏯᎷᏗ -11.6349 ▁ᎠᎩᎾᏄᎪᏫᏎᎸᎩ -11.6349 ▁ᎠᎩᎸᏗᏍᎩ -11.6349 ᎪᎲᏍᏔᏂ -11.6349 ▁ᎨᎪᏢᏅᎯ -11.6349 ▁ᏓᏆᎴᎸ -11.6349 ▁ᎦᎶᏐᏅ -11.6349 ▁ᎠᎾᏓᏁᏟᏴᏏᏒ -11.6349 ▁ᎤᎾᏓᏙᎵᏍᏙᏗᏱ -11.6349 ▁ᏩᏲᎯ -11.6349 ▁ᎢᏥᎷᏤᏗ -11.6349 ▁ᎭᏓᏙᎵᏍᏗᏍᎬ -11.6349 ▁ᎬᏩᏍᏚᎢᏍᏗ -11.6349 ▁ᏧᏩᎿ -11.6349 ▁ᎣᏣᎢᏒ -11.6349 ▁ᏚᎾᎵᏂᎬᎬ -11.6349 ▁ᏧᏓᏂᎸᎢᏍᏗᏳ -11.6349 ▁ᏣᏓᏅᏖᏗᏱ -11.6349 ▁ᎤᏓᏴᏒᎩ -11.6349 ▁ᏥᎦᏡᎦ -11.635 ▁ᏫᏄᏩᏁᎴ -11.635 ▁ᏥᎦᏘᏏᏗᏢ -11.635 ▁ᏧᏂᏲᎱᎯᏍᏗ -11.635 ▁ᎤᎧᏲᏓ -11.635 ▁ᎤᎵᏍᏛᏧᏅ -11.635 ▁ᎤᎱᏍᏕᏎᎴ -11.635 ▁ᎤᎵᏍᎫᏮ -11.635 ▁ᎤᎵᏬᎢᏍᏗ -11.635 ▁ᎤᏯᏍᏚᏎᎢ -11.635 ▁ᏧᎾᏓᎵ -11.635 ▁ᎨᏥᏛᎦ -11.635 ▁ᏂᎬᏩᏍᏛ -11.635 ▁ᏭᏕᎵᎨ -11.635 ᎱᏩ -11.635 ᏅᏮᎦ -11.635 ▁ᎠᎩᏁᎫ -11.635 ▁ᎠᏆᏎᎵᏔᏅ -11.635 ▁ᏅᏛᏁᎵ -11.635 ▁ᎢᏣᏓᏅᏓᏗᏍᏗᏱ -11.635 ▁ᎠᎵᏍᏓᏴᎲᏍᎩ -11.635 ▁ᎤᏅᎦᎳᎲ -11.635 ᏑᏩ -11.635 ▁ᎢᏣᏗᏔᏍᏗᏱ -11.635 ▁ᏣᏴᏍᏗ -11.635 ▁ᎤᎿᏬᎡ -11.635 ▁ᎾᏆᎵᏍᏔᏁᎸ -11.635 ▁ᎠᏱᏍᎨᏍᏗ -11.635 ▁ᏥᏂᎬᏁᎭ -11.635 ▁ᎠᎩᏁᎢᏍᏔᏅ -11.635 ▁ᎤᏟᎶᎥᎩ -11.635 ▁ᎪᎵᎦᏓ -11.635 ▁ᏥᏁᏣᏛᏁ -11.635 ▁ᏥᎦᏘᏯ -11.6351 ᏂᎶᏌ -11.6351 ▁ᎡᎩᏩ -11.6351 ▁ᏄᏛᏁᎵᏙᎸ -11.6351 ▁ᎠᎾᎵᎲᎢ -11.6351 ▁ᎠᎶᎻ -11.6351 ▁ᎢᏣᎴᏂᏓᏍᏗᏱ -11.6351 ▁ᏭᏗᏅᏎ -11.6351 ▁ᏙᏛᎠᎴ -11.6351 ▁ᏚᏄᎪᏫᏎ -11.6351 ▁ᎤᏰᏣ -11.6351 ▁ᏓᏍᏕᎵᏍᎬᎩ -11.6351 ▁ᏥᏧ -11.6351 ▁ᎣᎦᏅᏅᎩ -11.6351 ▁ᎹᏌ -11.6351 ▁ᏗᎦᏁᎶ -11.6351 ᎤᏰᎸᏗ -11.6351 ▁ᏄᏛᏁᎳ -11.6351 ▁ᏤᏣᏛᏅᎩ -11.6352 ▁ᎯᏃᎮᏍᎩ -11.6352 ▁ᎢᏤᏙᎮᏍᏗ -11.6352 ▁ᎤᎾᏓᏄᎸᏗ -11.6352 ▁ᎤᏂᎷᎯᏍᏗ -11.6352 ᏥᏲᎤᎯ -11.6352 ᏯᏠᎢᏍᏓᏁᎵ -11.6352 ᏥᏍᎦᎢᎭ -11.6352 ▁ᏳᏩᏛᎮᎢ -11.6352 ᏋᎨᏫ -11.6352 ▁ᎤᎭᏄᏮ -11.6352 ▁ᏧᎭᎾᏬ -11.6352 ▁ᏳᏪᎵᏎ -11.6352 ᏂᎦᏛᏁᎰᎢ -11.6353 ᏍᏚᎢᏏ -11.6353 ▁ᎥᏘᏍᎩ -11.6353 ▁ᎠᏆᏦ -11.6353 ▁ᏧᏪᏲᎲᏍᎩ -11.6353 ▁ᎢᏳᎾᏕᏘᏴᏛ -11.6353 ᏰᏫᏒ -11.6353 ▁ᎤᏗᏩᏒᎩ -11.6353 ▁ᎢᎬᏩᏂᎩᏍᏔᏁ -11.6353 ▁ᎦᏃᏙᏗ -11.6353 ▁ᏓᎪᏩᏘᏍᎬ -11.6353 ᎩᏩᏛᎲᎩ -11.6353 ▁ᏚᎭᏁᎦᎸ -11.6354 ▁ᎠᏆᏢᏈᏍᏗᏱ -11.6354 ▁ᎠᏓᎦᏘᏕᎯ -11.6354 ▁ᏧᎬᏩᏟ -11.6354 ▁ᎤᏍᏆᎸᎮ -11.6354 ▁ᏗᏓᏘᏍᏗ -11.6354 ᏧᎧᎸᏨ -11.6354 ▁ᎠᏛᏁᎮᏍᏗ -11.6354 ▁ᏱᏦᎯᏳᎲᎦ -11.6354 ᎴᎳᏛᏅ -11.6354 ▁ᎢᏥᎦᏔᎯᏳ -11.6354 ▁ᏚᏍᏚᎢᏎ -11.6354 ▁ᎠᎵᏍᎩᏍᏗ -11.6354 ▁ᏫᏚᎧᎾᏅ -11.6354 ▁ᎠᏥᎸᎨᎳᏍᏙᏗ -11.6354 ▁ᎢᏯᎩᏪᏍᏗᏱ -11.6354 ▁ᏗᎾᏟ -11.6354 ▁ᎠᏆᏍᎦᏱ -11.6354 ▁ᎠᏓᏬᏍᏗᏱ -11.6354 ▁ᎤᏂᎪᎵᏰᏗᏱ -11.6354 ▁ᎣᎾᏫᏱ -11.6354 ▁ᏣᏱᎵᏙᎯ -11.6354 ᏣᏘᏃᎸᎭ -11.6355 ▁ᏧᏪᏙᎵᏍᏗᏱ -11.6355 ▁ᎢᎩᏍᏕᎵᎭ -11.6355 ▁ᏫᏗᎦᏘ -11.6355 ▁ᎦᏓᏫᏔᏅ -11.6355 ᏕᏙᎲᎩ -11.6355 ▁ᏗᎦᏘᏍᏗ -11.6355 ▁ᎢᏥᏙᎾ -11.6355 ▁ᎭᏅᏓᏓ -11.6356 ▁ᏫᎾᏛᎦ -11.6356 ▁ᎠᏂᎪᏩᏘᏍᎩ -11.6356 ▁ᏱᏄᎾᏍᏗ -11.6356 ᏬᏍᎪᎢ -11.6356 ▁ᏧᏴᎴ -11.6356 ▁ᏥᏚᎦᏒᏍᏙ -11.6356 ▁ᏧᏌᎨ -11.6356 ▁ᎻᏌ -11.6356 ▁ᏫᏥᏤᎢ -11.6356 ▁ᏭᎷᎯᏍᏗ -11.6356 ▁ᎦᏐᏂ -11.6356 ▁ᏔᎷ -11.6356 ▁ᏭᎳᏛ -11.6357 ᏏᏏᏍᎩ -11.6357 ᎦᎧᎲᏍᎨᏍᏗ -11.6357 ▁ᎢᏣᏙᎴᎰᎯᏍᏗᏱ -11.6357 ᎵᏯᎻ -11.6357 ▁ᎠᏂᏍᎦᏰᎬᏍᏔ -11.6357 ᏁᏢᏙᏗᏱ -11.6357 ▁ᎢᏣᏓᏅᏙ -11.6357 ▁ᎯᎦᏔᎮᏍᏗ -11.6357 ▁ᎾᏑᎵᎪᎬᎾ -11.6357 ▁ᏥᏕᏙᎭ -11.6357 ▁ᏧᏄᎪᏤᎢ -11.6358 ▁ᎡᏤᏲᏅᎢ -11.6358 ▁ᎢᏨᏁᎢᏍᏗᏍᎬᎢ -11.6358 ▁ᎬᏁᏤᎲᎢ -11.6358 ▁ᏚᏃᏪᎸᎢ -11.6358 ▁ᏚᏪᏣᎦᎸᎮᎢ -11.6358 ▁ᏧᎾᏄᎪᏤᎢ -11.6358 ▁ᏧᏁᏢᏔᏅᏒᎢ -11.6358 ▁ᎤᎾᏓᏁᏟᏴᏒᏒᎢ -11.6358 ▁ᎤᏓᏅᏔᏕᎢ -11.6358 ▁ᏄᏍᏗᏕᎬᎢ -11.6358 ▁ᏓᎪᏄᎴᎢ -11.6358 ▁ᎢᏣᏛᎩᏍᎬᎢ -11.6358 ▁ᎠᎦᏬᎡᎢ -11.6358 ▁ᎤᎾᏁᏢᏔᏅᏒᎢ -11.6358 ▁ᎧᏄᎦ -11.6358 ▁ᏱᏥᏩᏘᏍᎪᎢ -11.6358 ᏓᏨᎾᏄᎪᏫᏎᎵ -11.6358 ▁ᏧᏂᎶᏒ -11.6358 ᏍᏓᏩᏕᎪᎢ -11.6359 ▁ᎧᏁᏉᏥᏎ -11.6359 ▁ᏕᎬᏩᏘᏃᎮᎴᎢ -11.6359 ▁ᏄᏪᎵᏍ -11.6359 ▁ᏂᎦᏪᎠ -11.6359 ▁ᎬᏃᏓ -11.6359 ▁ᎤᎬᎥᏍᎬ -11.6359 ᏓᎵᏅᏟ -11.6359 ᏕᏁᎵ -11.6359 ▁ᎨᏣᏓᏑᏴ -11.6359 ▁ᏕᎭᏕᏲᎲᏍᎬᎢ -11.6359 ▁ᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ -11.6359 ▁ᏗᏣᏏᎳᏛᏗ -11.6359 ▁ᎤᏂᏁᎢᏍᏗ -11.6359 ▁ᏧᎦᏙᏍᏙᏗ -11.6359 ▁ᏱᏚᎾᏓ -11.6359 ▁ᏫᎤᏂᎶᏎᎢ -11.636 ᏋᏕᏨ -11.636 ▁ᎬᏩᎨᏳᎯ -11.636 ▁ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ -11.636 ▁ᏕᎯᏬᏁᏗᏍᎬ -11.636 ▁ᏚᏄᏬᎡᎢ -11.636 ▁ᏝᏬᏚ -11.636 ▁ᎯᎶᏁᎥᎭ -11.636 ▁ᎤᎸᏁ -11.636 ᏖᏍᎬᎢ -11.636 ▁ᏫᏂᎬᎦ -11.636 ▁ᏩᏥᎳᎨ -11.636 ▁ᏄᏟᏂᎬᎬ -11.636 ▁ᎤᏌᎨ -11.636 ▁ᏭᏅᎪᏤ -11.636 ▁ᎠᎩᏃᎮᏍᎬᎢ -11.636 ▁ᎤᏴᏨ -11.636 ▁ᎤᏚᎢᏍᏓᏁᎸ -11.6361 ▁ᎤᎾᏓᏅᏍᏗ -11.6361 ▁ᏚᏂᎵᏬᏤᎢ -11.6361 ▁ᏧᏂᏣᏔ -11.6361 ᏍᏔᏩᏕ -11.6361 ▁ᏚᏂᏴᎲ -11.6361 ▁ᏚᏅᏩᏁᎢ -11.6361 ▁ᏅᏛᎾᎵᏍᏔᏂ -11.6361 ▁ᏅᏓᎦᏛᏁᎵ -11.6361 ▁ᏨᏗᎦᏚᎭ -11.6361 ▁ᏭᏙᎯᏳᎲ -11.6361 ▁ᎤᎾᏁᎳᏗᏍᏗᏱ -11.6361 ▁ᏍᎩᏍᏕᎳ -11.6361 ▁ᏓᎪᏪᎳᏂ -11.6361 ▁ᎠᎻᎳᎻ -11.6361 ▁ᎦᎳᎨᏰ -11.6361 ▁ᎤᏂᏛᏗᏍᎩ -11.6362 ▁ᏓᏂᎧᎿᏩᏗ -11.6362 ▁ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ -11.6362 ▁ᏃᎦᏛᏁᎸ -11.6362 ▁ᎢᏳᏩᏁᏗ -11.6362 ▁ᎭᎵᏘ -11.6362 ▁ᎠᏓᏏᏎ -11.6362 ▁ᎤᏩᏓᎴ -11.6362 ▁ᎢᎦᎵᏍᏓᏁᏗ -11.6362 ᎧᎲᏍᎩ -11.6362 ▁ᏓᏰᏥᏁᎵ -11.6362 ▁ᏗᏩᎾᎨ -11.6362 ▁ᏣᏫᏎᎢ -11.6362 ᎪᏪᎸᎾ -11.6362 ▁ᎦᎷᎨᏍᏗ -11.6362 ▁ᏍᎩᏁᏥ -11.6362 ▁ᎤᏰᎾᎥ -11.6362 ▁ᎠᏆᏓᏅᏖᏙᏗ -11.6362 ▁ᎤᏓᏙᎵᏣᏘ -11.6363 ▁ᎠᎬᏔᏅᏛ -11.6363 ▁ᏱᎦᏗᎭ -11.6363 ▁ᏧᏂᎷᏤᎸ -11.6363 ▁ᎢᎳᏍᏓ -11.6363 ▁ᏚᏅᏴ -11.6363 ▁ᏱᏥᏁᎦ -11.6363 ▁ᎤᏴᎴᎢ -11.6364 ▁ᏳᎵᏬᏨ -11.6364 ▁ᎤᎾᎳᏍᏓᎡᏗ -11.6364 ▁ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ -11.6364 ▁ᎠᏓᏍᏕᎵᏍᎩ -11.6364 ▁ᏱᏂᏙ -11.6364 ▁ᏓᏕᏲ -11.6364 ▁ᎨᏥᏃᎮᏍᎬᎢ -11.6364 ▁ᎢᏳᏅᏁᎯ -11.6364 ▁ᎢᏳᏏᏗ -11.6364 ▁ᎤᎦᏔᏔᏁᎢ -11.6364 ▁ᎦᎵᏦᏩᏛ -11.6364 ▁ᏱᎾᏰᏍᎨᏍᏗ -11.6364 ▁ᏗᎨᏥᏰᎯ -11.6364 ▁ᏅᎩᏗᏂᏅᏌᏗ -11.6365 ▁ᎣᎦᎵᏍᏓᏴᏗᏱ -11.6365 ▁ᎠᏂᎪᏩᏗᏍᎬ -11.6365 ▁ᎤᎪᎵᏰᏗᏱ -11.6365 ▁ᎠᏆᏤᎵᎪᎯ -11.6365 ▁ᎤᏗᏍᎦᎶᏗ -11.6365 ▁ᏫᏚᏩ -11.6365 ▁ᎤᏂᎿᎥᎢ -11.6365 ▁ᏂᏯᏛᏂᏏ -11.6365 ᎾᏍᏆᎶᏍ -11.6365 ▁ᎤᏗᎴᎬ -11.6365 ▁ᎤᏂᎧᎭᏲ -11.6366 ᏍᏆᏃᏴᎪ -11.6366 ▁ᎠᏲᏍᏗᏍᎪ -11.6366 ▁ᎦᎬᏙᏗ -11.6366 ᎵᎲᏲᎵ -11.6366 ▁ᎤᏰᎸᏐᎢ -11.6366 ▁ᎡᏤᎵᏎ -11.6366 ▁ᏂᏚᏂᎨᏳᏒ -11.6366 ▁ᎠᏆᏅᏛ -11.6366 ▁ᏓᎫᏩ -11.6366 ᏍᏚᎢᎡᎴ -11.6366 ᏚᏁᎢ -11.6366 ᏓᏁᏏ -11.6366 ▁ᏥᎦᏙ -11.6366 ▁ᎤᏍᏗᎩᎨ -11.6367 ▁ᎬᏩᏂᏍᎦᎩ -11.6367 ▁ᏯᏃᎯᏳᎲ -11.6367 ▁ᎹᎳ -11.6367 ▁ᏗᎦᏅᎬ -11.6367 ᏄᏬᎥᎭ -11.6367 ▁ᎠᏴᏓᏆᎶᏍᎬ -11.6367 ▁ᎣᏥᏃᎮᎭ -11.6367 ▁ᎠᎵᏰᎢᎶᎦ -11.6367 ▁ᎠᎭᎾᏬ -11.6367 ᎦᏂᏍᎬ -11.6367 ▁ᎢᏗᎹ -11.6367 ▁ᎠᏂᏃᎲᏍᎨ -11.6367 ▁ᎢᏣᎵᏂᎬᏁ -11.6367 ▁ᎠᏣᎳᎩ -11.6367 ▁ᎢᎶᏂ -11.6367 ▁ᏚᏂᏂᏴᎲ -11.6368 ▁ᎨᏥᏙᎵᏍᏗ -11.6368 ▁ᎬᏩᏕᎰᎯᏍ -11.6368 ᏛᏅᎢᏍᏓᏁᏗᏱ -11.6368 ▁ᏙᏓᏨ -11.6368 ▁ᏙᏛᏁᎵ -11.6368 ▁ᎠᏯᏛᎥ -11.6368 ▁ᎣᎩᎪᎲᎯ -11.6368 ▁ᎡᎵᎻ -11.6368 ᏴᎳᏏ -11.6368 ▁ᏥᏚᎾᏚ -11.6368 ᏛᎦᏅᎢ -11.6368 ▁ᎠᏒᏛᏓ -11.6368 ▁ᏓᏐᏴᎢ -11.6369 ▁ᎠᎾᎵᏥᏙᎲᏍᎦ -11.6369 ▁ᎠᏃᏎᎮ -11.6369 ᏮᏕᏨ -11.6369 ▁ᎦᏃᏟ -11.6369 ▁ᏗᏣᏘᏄᎦ -11.6369 ▁ᎤᏬᎯᏤ -11.6369 ᎠᏗᏒ -11.6369 ᏗᎦᏔᏫᎢᏍᏗᏱ -11.6369 ▁ᎤᏬᏍᎩᎵ -11.6369 ▁ᎤᏲᎱᏏᏕᎾ -11.6369 ᏅᎬᏛ -11.6369 ▁ᎡᏥᏲᎭ -11.6369 ▁ᏗᏍᏆᏂᎪᏗᏍᎩ -11.6369 ▁ᎤᎧᎭᏲ -11.6369 ᏅᏨᎾ -11.6369 ▁ᏚᏯᏙᎮᎴ -11.6369 ▁ᎤᎵᏛᏔᏁᎢ -11.637 ᏱᎵᏕᎲᎢ -11.637 ▁ᎠᏍᏆᎸᎲᎭ -11.637 ▁ᏧᏌᎴᏅ -11.637 ▁ᎤᏣᎢᏒ -11.637 ▁ᎠᏆᎵᎮᎵᏍᏗᏱ -11.637 ▁ᎠᏆᎵᎮᎵᏨᎩ -11.6371 ▁ᎨᎪᏣᎴᏛ -11.6371 ▁ᏣᏂᏃᎮᎭ -11.6371 ᏅᎥᏏ -11.6371 ▁ᏫᎦᎶᏍᎬ -11.6371 ▁ᏚᎪᏓᏁᎯ -11.6371 ▁ᎠᏛᏃ -11.6371 ᏐᏲ -11.6371 ▁ᏖᏒᎭ -11.6371 ▁ᎤᎵᏦᏔᏁᎢ -11.6372 ▁ᏱᏣᏚᎵᎭ -11.6372 ᎦᏓᎴᏅᎯ -11.6372 ▁ᏳᏰᎸᏅ -11.6372 ▁ᎤᏩᏂᎴᎢ -11.6372 ▁ᏚᏙᎡᏍᏗ -11.6372 ▁ᏚᎾᏓᏡᎬ -11.6373 ▁ᏚᏯᏅᎮᎢ -11.6373 ▁ᏱᎨᏩ -11.6373 ▁ᎠᏲᏍᎩ -11.6373 ▁ᏓᏃᏎᎰ -11.6373 ▁ᏫᏥᎶᎢ -11.6373 ▁ᏳᏇᏗ -11.6373 ᎶᎩᎯ -11.6374 ▁ᎤᎸᏓᎸᎥᏍᎩ -11.6374 ▁ᏍᎩᏁᎮᏍᏗ -11.6374 ▁ᏗᎧᏃᎩᏓ -11.6374 ▁ᏄᎾᎵᏍᏔᏁᎲ -11.6374 ▁ᎤᎾᏤᎸᎯ -11.6374 ▁ᏕᎨᏥᏂ -11.6374 ▁ᎠᏂᏔᏲᎯᎮᏍᏗ -11.6374 ▁ᏣᏁᏤᏗᏱ -11.6374 ▁ᎤᏒᎦᎸᎩ -11.6374 ▁ᎤᎸᏖᎴ -11.6374 ▁ᏑᏥᎶ -11.6375 ᏰᏗᎭ -11.6375 ▁ᎦᎧᎮ -11.6375 ▁ᏦᎩᎾᏫᏱ -11.6375 ᎵᏂᎪᎯᏍᏙᏗᏱ -11.6375 ▁ᏓᎩᎧᎭ -11.6375 ᏯᏛᎩᎭ -11.6375 ᏂᏜ -11.6375 ▁ᎤᏍᏚᏅ -11.6375 ᏅᏓᎨᏨᏁᎵ -11.6375 ᎧᏔᏁ -11.6375 ᎵᏍᏓᏁᎵᏒ -11.6376 ▁ᏣᏛᏁᎸ -11.6376 ᏛᏂᎸᏉᏔᏂ -11.6376 ▁ᎬᏁᏤᎸᎢ -11.6376 ▁ᎪᎶ -11.6377 ▁ᎤᎾᎵᏍᏓᏴᏅᎩ -11.6377 ▁ᎠᏯᏨᏗ -11.6377 ▁ᏗᎪᏍᏓᏯ -11.6377 ▁ᏧᎵᏠᏯᏍ -11.6377 ▁ᎢᏣᏓᏁᎮᏍᏗ -11.6377 ▁ᏙᏨᏗᏍ -11.6377 ▁ᏕᎦᎵ -11.6378 ▁ᏗᎦᏥᏯ -11.6378 ▁ᎠᏅᏬᎳᏕᏍ -11.6378 ᏏᏔᏗᏍᏗᏱ -11.6378 ▁ᎤᏂᏍᎦᎢᏍᏗ -11.6379 ▁ᎤᎵᏍᎪᎸᏓᏁᎸᎩ -11.6379 ▁ᎤᏂᏴᎲ -11.6379 ▁ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨ -11.6379 ▁ᏥᎨᎲ -11.6379 ▁ᏄᏃᎯ -11.6379 ▁ᎢᏨᏃᏁᎸᎯ -11.6379 ▁ᏧᏂᏒᏍᏗᏱ -11.6379 ᏓᏕᎵᏎ -11.6379 ▁ᏄᏦ -11.6379 ▁ᎤᎾᏎᎸ -11.6379 ▁ᎤᏍᏚᏞ -11.638 ▁ᎬᏩᏡᏗᏍᎬᎢ -11.638 ▁ᎡᎳᎻ -11.638 ▁ᎦᏬᏂᏍᏗ -11.638 ᏅᏅᎢ -11.638 ▁ᎣᏥᏁᎦ -11.638 ▁ᏧᏓᏂᎸᎢᏍᏗ -11.638 ᎦᎪᎯᏳᏗ -11.638 ▁ᎦᏰᏣ -11.6381 ᏗᎨᎳᏍᏙᏗ -11.6381 ᏟᏂᎬᏁᎰ -11.6381 ᏕᎰᏏ -11.6381 ᏓᏙᎵᏣᏘᏳ -11.6381 ᏨᏌ -11.6381 ᎷᎨᏍᏗ -11.6381 ▁ᏣᏚᎵ -11.6381 ᏥᏰᎸᏂ -11.6381 ▁ᎤᎾᏓᏅᏖᏛ -11.6381 ᏣᎦᏔᎲᏛ -11.6382 ᏙᏓᏆᏛ -11.6382 ᎥᏍᎪᎢ -11.6382 ▁ᎻᎵ -11.6382 ▁ᎾᏂᏪᎭ -11.6382 ▁ᎢᏣᏓᏅᏓᏛ -11.6382 ▁ᎠᏆᏕᏗ -11.6383 ▁ᏕᏥᎨᏳᏒ -11.6383 ▁ᎡᎩᏍᏕᎸᏗᏱ -11.6384 ▁ᎤᏂᏂᎩᏛ -11.6384 ▁ᎤᎾᏚᎸᏅᏗ -11.6384 ▁ᎦᏢᏗ -11.6384 ▁ᎡᏥᏯᏅᎲ -11.6384 ▁ᏣᏣᏪᏐᎸᏍᏙᏗ -11.6384 ▁ᏚᎾᏙ -11.6384 ▁ᏣᏰᎸᏗ -11.6384 ▁ᏓᏁᎶᏛᎩ -11.6385 ▁ᎩᎦᎨᎠᏗᏔᏍᏗ -11.6385 ▁ᎤᏍᏆᏗᏍᏗᏱ -11.6385 ▁ᏳᏬ -11.6386 ▁ᎤᏄᎸᏅ -11.6386 ▁ᏄᎵᏍᏓᏁᎲ -11.6386 ▁ᎤᏂᏲᎸᎯ -11.6386 ᎵᏍᏓᏴᏁᎢ -11.6386 ▁ᏍᏔᎵ -11.6386 ▁ᎠᏓᏁᎳ -11.6387 ▁ᎤᎦᏌᏯᏍᏗᏕᎩ -11.6387 ▁ᏗᎤᎷᏨ -11.6387 ▁ᎨᏥᏛᏙᏗᏱ -11.6387 ▁ᎤᎵᏏᎲᏎ -11.6387 ᎵᏍᏙᏗᏱ -11.6387 ᏆᎧᎿᏅ -11.6387 ᏕᎶᏆᎡ -11.6387 ᏓᏁᎲᎾ -11.6387 ▁ᏣᎷᏨ -11.6387 ▁ᏱᎾᎩ -11.6387 ▁ᎤᏁᎷᏅ -11.6388 ▁ᎤᎾᏏᏁ -11.6388 ▁ᎪᏪᎳᏅ -11.6388 ▁ᎣᎩᏍᎦᏅᏨᎢ -11.6388 ▁ᎤᏩᎾᏬᏒ -11.6388 ▁ᏥᏓᎩᏂᏴ -11.6388 ᎨᎦᏛᏅᎢᏍᏓᏁᎸ -11.6388 ▁ᏕᎦᏯᎸ -11.6388 ▁ᏓᏂᏐ -11.6389 ▁ᎤᏓᏅᏖᏗᏍᎨᎢ -11.6389 ▁ᎤᎾᏨᏏ -11.6389 ▁ᏗᏗᏙᏗ -11.6389 ▁ᎠᏂᎶᏍᎬ -11.6389 ▁ᎪᎯᏍᏗᏍᎩ -11.6389 ▁ᏚᏁᏒ -11.6389 ▁ᎤᏅᎪᏨ -11.6389 ▁ᎠᎾᏙᎴᎰ -11.6389 ▁ᎢᏳᏂᏁᎫᏥ -11.639 ▁ᎤᎵᎦᎵᏴ -11.639 ▁ᏄᏓᏛᏁᎴ -11.639 ▁ᎤᎩᏓᏟ -11.639 ▁ᏂᏣᎵᏍᏓᏁᎲᎢ -11.6391 ▁ᏄᏓᏪᏎᎴ -11.6391 ▁ᎤᎾᏓᏴᎳᏛ -11.6391 ▁ᏄᎾᏛᎿᏕᎬᎢ -11.6391 ▁ᏕᎦᎸᏫᏍᏓᏁᎸᎢ -11.6391 ▁ᏥᏮᎦᏙᎢ -11.6391 ᏓᏅᏫᏍᎩ -11.6391 ᏱᎵᏓᏍᏗᏱ -11.6391 ▁ᎤᏬᏁᏔᏅᎢ -11.6391 ▁ᎤᏁᎳᏫᏎᎲᎢ -11.6391 ▁ᎠᏩᏘᏍᎪᎢ -11.6391 ▁ᏨᏓᎸᎢ -11.6391 ▁ᏭᏓᎾᏫᏛᎮ -11.6391 ▁ᎤᏗᏔᎮᎢ -11.6392 ▁ᏗᎪᏢᏙᏗ -11.6392 ▁ᎠᏌᏍᏛ -11.6392 ▁ᏭᏩᎦᏘᏗᏒᎢ -11.6393 ▁ᏗᏣᎸᏫᏍᏓᏁᏗᏱ -11.6393 ▁ᏧᎶᎯᏍᏗ -11.6393 ᏲᎯᏍᏗᏱ -11.6393 ▁ᎠᏴᏈᏛ -11.6393 ᏌᏛᏅᎩ -11.6394 ▁ᏂᎨᏐᎢ -11.6394 ▁ᎠᎵᏌᎳᏗᏍᎬ -11.6394 ▁ᎢᏍᏛᏯ -11.6395 ▁ᎠᏥᏍᏙᏗ -11.6395 ▁ᎤᏩᏛᏛ -11.6395 ▁ᎠᏓᎴᏂᏍᎩ -11.6395 ▁ᏥᏄᏍᏙ -11.6396 ᏰᎩ -11.6396 ▁ᎢᏣᎵᎪᎯ -11.6396 ▁ᏇᏓᏁᎳᎻᏱ -11.6396 ▁ᏧᏂᎧᎿᏩᏛᏍᏗᏱ -11.6396 ▁ᎣᏥᏬᏂ -11.6396 ▁ᎢᏣᎢᏒᎢ -11.6396 ▁ᎦᏥᎪᎥ -11.6396 ▁ᎤᏲᎰᏒ -11.6397 ▁ᎠᏓᎨᏗᏱ -11.6397 ᏙᎯᏳᎲᎦ -11.6397 ▁ᏂᏣᎵᏍᏔᏅᎩ -11.6397 ▁ᏚᏂᎳᏫᏨᎩ -11.6397 ▁ᎤᏁᎵᏒᎩ -11.6397 ᏏᏕᏅ -11.6397 ▁ᎠᎩᏰᎸᏗᏱ -11.6397 ▁ᏤᏆᏂ -11.6398 ▁ᏥᏄᏪᏒᎩ -11.6398 ▁ᎧᏁᎦ -11.6399 ▁ᎤᏓᏅᏖᏗᏍᎬ -11.6399 ᏯᏛᏂᏏ -11.6399 ▁ᏓᎩᎪᎲᎩ -11.6399 ᏌᏙᎭ -11.6399 ▁ᎤᏓᎢᏅ -11.6399 ▁ᎤᎾᎵᏖᎸᏅᎩ -11.6399 ▁ᎠᎾᏗᎭ -11.64 ▁ᎴᏈ -11.6401 ▁ᏴᏛᎾ -11.6401 ▁ᏱᏂᏣᎵᏍᏓᏁ -11.6401 ▁ᏚᏬᏁᏔᏁᎢ -11.6401 ▁ᏓᏍᏔᏅᏅ -11.6402 ▁ᎠᎦᎸᎢᏛ -11.6402 ▁ᎬᏩᏂᎪᏩᏛᏗ -11.6402 ▁ᎢᏣᏓᎳ -11.6402 ▁ᏥᏍᏓᏱ -11.6402 ▁ᏤᏅᏍᏗᏱ -11.6403 ▁ᎬᏩᎾᏝᎢ -11.6403 ▁ᎭᏗᏛ -11.6403 ▁ᏳᏁᏐ -11.6404 ▁ᎬᏬᏎᎸᎩ -11.6404 ᎧᎪ -11.6404 ᎦᎴᏂᏙᎭ -11.6405 ▁ᏕᎩᎸᏫᏍᏓᏁᎸ -11.6405 ▁ᏗᏓᎾᏅ -11.6405 ▁ᏂᏗᎬ -11.6405 ᎭᏁᎦᎸ -11.6405 ᏍᏆᏗᏍᏗᏍᎩ -11.6405 ▁ᎤᏞᎩ -11.6405 ᏍᏙᏗᏍᎨ -11.6406 ▁ᏍᎩᏃᎯᏏ -11.6406 ▁ᏂᏣᏛᏁᎲᎾ -11.6406 ▁ᏍᎩᏯᏅᏛ -11.6406 ▁ᏫᏚᎧᎿᏅ -11.6406 ▁ᏭᏍᏆ -11.6406 ᎪᎲᎯ -11.6406 ▁ᎤᎾᏓᏅᎦᎸᏛ -11.6406 ▁ᏫᏚᎾᎧᎿᏅ -11.6406 ▁ᎤᏍᏚᎩᏎ -11.6407 ▁ᏚᏰᎵᎯᏍᏔᏅ -11.6407 ▁ᏕᎫᎪᏗᏍᎬ -11.6407 ▁ᎠᏔᎴ -11.6407 ▁ᏚᎸᏫᏍᏓᏁᎰᎢ -11.6407 ▁ᎨᏥᏰᎸᎢ -11.6407 ▁ᎤᎾᎷᏒ -11.6407 ᏰᎢᎸᏍᏗᏱ -11.6407 ▁ᏥᏫᎾ -11.6408 ▁ᎤᏂᎪᏁ -11.6408 ᏰᎢᎵᏙᎲᎢ -11.6408 ▁ᏫᏚᏠᏎ -11.6408 ▁ᏗᏁ -11.641 ▁ᎤᏂᏔᏲᏎᎴ -11.641 ᏱᎵᏙᎯ -11.6411 ▁ᎤᏂᏲᎰᎢ -11.6411 ▁ᎤᏓᏓᏍᎬ -11.6411 ᎪᎲᏍᏔᏅ -11.6411 ▁ᎤᏍᎫᏕ -11.6411 ᏘᎭᏁ -11.6412 ▁ᏕᎨᏥᏰ -11.6412 ▁ᏱᏙᎨᏗ -11.6412 ᏁᏙᎮ -11.6413 ▁ᏳᏚᎵᏍᎬᎾ -11.6413 ▁ᎤᏛᏗᏕᎨ -11.6413 ▁ᎰᎵᏈ -11.6413 ▁ᏗᎪᏪᎳᏅᎯ -11.6414 ▁ᎠᎩᏍᏚ -11.6414 ▁ᏥᏣᏓ -11.6414 ᏪᏒᏛ -11.6415 ▁ᏭᏂᎦᏐᎠ -11.6415 ▁ᏚᏟᎶᏍᏓᏁᎴᎢ -11.6415 ▁ᎤᏅᏓᏛ -11.6416 ▁ᎤᏃᏴᎩ -11.6416 ▁ᎤᎾᎵᏍᎪᎸᏔᏅᎯ -11.6416 ▁ᏑᎠ -11.6417 ▁ᎡᏥᏍᎦᏅᏤ -11.6417 ▁ᎠᏂᎷᎬ -11.6417 ▁ᏱᏮ -11.6417 ᎷᎳ -11.6417 ᏴᎲ -11.6417 ▁ᏗᏓᎨ -11.6418 ▁ᏕᏥᎵᎷ -11.6419 ▁ᎡᏣᏙ -11.6419 ▁ᏲᎩᎾ -11.6419 ▁ᏩᎩᎶᏒᎩ -11.642 ▁ᎢᏳᏪᏍᏗᏱ -11.642 ▁ᏱᏍᎩᏃᏁᎴ -11.642 ▁ᎢᎵᎻ -11.642 ▁ᎤᎦᏘᏗᏍᏗᏱ -11.6421 ᏠᎠᏒᎩ -11.6421 ▁ᎤᏍᏆᎸᎭ -11.6421 ▁ᏂᏥᏃᎯ -11.6421 ▁ᎤᎾᏁᎶᏔᏅᎩ -11.6421 ▁ᏓᏂᏍᎦᎢ -11.6422 ▁ᎢᏣᎨᏳᏅ -11.6422 ▁ᎤᏮᏔᏅᎩ -11.6422 ▁ᏕᏚ -11.6422 ▁ᎠᎩᏰᏨ -11.6423 ▁ᎧᏁᏉᎨᎢ -11.6423 ▁ᎢᏣᏛᏓᏍᏗᏍ -11.6423 ᏝᏅᎯ -11.6424 ▁ᏥᏫᎯ -11.6424 ▁ᎠᏯᎡᎢ -11.6424 ▁ᏧᎦᎿᏁ -11.6424 ▁ᏕᎨᎶ -11.6424 ▁ᎪᏙᎯ -11.6425 ᏍᎬᏰᏃ -11.6425 ▁ᎤᏍᏗᏰᎬ -11.6426 ▁ᎠᎾᎢᏎᎢ -11.6426 ▁ᎤᏂᏄᎪᎢᏍᏗ -11.6426 ▁ᏱᏂᎬᎦ -11.6426 ▁ᏳᏰᎸᎭ -11.6427 ▁ᎠᏂᏁᏉᏍ -11.6427 ᏫᏂᏴ -11.6427 ▁ᎤᏃᏢᏅᎯ -11.6427 ᏘᏁᎪᎢ -11.6427 ▁ᎣᏥᎩᎵᏲᎬ -11.6427 ▁ᎤᏁᎢᏍᏔᏁᎢ -11.6427 ᏍᎩᎳᏛ -11.6427 ᏚᎾᏚᏫᏍᏔᏁᎢ -11.6427 ▁ᎢᏧᏓ -11.6428 ▁ᎤᏍᏆᏂᎪᏔᏅ -11.6428 ᏛᎿ -11.6428 ▁ᎢᏣᏓᏁᏟᏴᏏᏒᎢ -11.6428 ᎩᏠᏫᏍ -11.6428 ▁ᎠᎾᏓᏅᏖᎵᏙ -11.6429 ▁ᏥᏄᎵᏍᏔᏁᎢ -11.6429 ▁ᎠᏂᎫ -11.6429 ▁ᎤᏘᏃᎴᎢ -11.6429 ▁ᎤᏪᎲᎢ -11.6429 ᏂᏐᏗ -11.643 ▁ᎮᏙᎲ -11.643 ▁ᎠᏂᏲᎯᎲ -11.643 ▁ᎤᎵᏠᏯᏍᏛ -11.643 ▁ᏥᎦᎷᎪᎢ -11.643 ▁ᎤᎾᏖ -11.6432 ▁ᎤᏁᏉᏤᎢ -11.6432 ▁ᎤᏪᏘᏁᎢ -11.6432 ᎶᏒᏍᏙᏗᏱ -11.6432 ▁ᏫᎲᎦ -11.6432 ▁ᏓᏂᏅᎬ -11.6433 ▁ᏳᏬᎵᏤ -11.6433 ▁ᎭᎧ -11.6434 ▁ᎠᏥᏁᏗᏱ -11.6434 ▁ᏒᏍᎦ -11.6434 ▁ᏂᎦᏅᏅ -11.6434 ▁ᎾᎾᏛᏁᎮ -11.6435 ▁ᎠᏟᏂᎬᏁ -11.6435 ▁ᏫᏚᏯ -11.6436 ᏗᎦᎵᏍᏙᏗᎭ -11.6436 ▁ᎠᏐᏢᎢᏍᏗᏍᎬᎢ -11.6436 ▁ᎤᎾᎵᏍᎪᎸᏔᏅ -11.6436 ▁ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ -11.6437 ▁ᎤᏁᎸᏔᏁᎢ -11.6437 ᏯᏅᎮᎢ -11.6437 ▁ᏄᏅᏁᎴᎢ -11.6437 ▁ᎠᏂᏱᏙ -11.6437 ▁ᎤᏪᎷᎩ -11.6438 ▁ᎠᏍᎧ -11.6438 ▁ᏧᏂᏁᏗᏱ -11.6438 ▁ᏤᎪᎢ -11.6438 ▁ᎦᎶᏐᎲᏍ -11.6439 ᏂᏙᎸᎯ -11.6439 ▁ᏗᏁᎶᏗ -11.6441 ▁ᎤᏅᏕᏨ -11.6441 ▁ᎠᏂᎱ -11.6441 ▁ᏗᎪᏒ -11.6441 ▁ᎠᏍᏆᎵ -11.6441 ▁ᎠᎾᎵᏥᏙᎲᏍᎩ -11.6442 ▁ᏣᏍᏆᏂᎪᏙᏗᏱ -11.6442 ▁ᎤᏍᏆᎳ -11.6443 ᎦᎷᎩ -11.6444 ▁ᎠᎿᎥᎢ -11.6445 ▁ᏧᎪᏄᎶ -11.6445 ᎧᏒᎢ -11.6445 ▁ᎤᏂᏲᏍᏔᏁ -11.6445 ▁ᏫᎬᏍᏗ -11.6445 ▁ᏱᎪᎯᏳᎲ -11.6445 ▁ᏚᏆᎵ -11.6446 ▁ᏕᎪᏢᏒᎩ -11.6446 ▁ᎤᎾᏏᏅ -11.6446 ▁ᎤᎦᎾᏬᏍᎬ -11.6446 ▁ᎾᎬᏁᎸᎭ -11.6447 ▁ᎤᏂᏃᎴ -11.6447 ▁ᏥᏂᎦᎵᏍᏗᏍᎪ -11.6448 ▁ᏗᏄᎪᏗᏍᎩᏱ -11.6448 ᏰᎵᏎᏗ -11.6449 ▁ᏚᏅᏒᎩ -11.6449 ▁ᏚᏲᏍᏔᏅ -11.6449 ▁ᏄᎾᎵᏍᏓᏁᎲ -11.645 ᏗᏔᎲᎭ -11.645 ▁ᎤᏲᎱᎯᏎᎸᎯ -11.645 ▁ᎣᏣᏓ -11.645 ▁ᎮᎲᎢ -11.645 ▁ᎢᏥᎩᎬ -11.6451 ▁ᎬᏩᎯᏍᏗᏱ -11.6451 ᏢᏔᎮ -11.6451 ᏥᏅᎦᎸᎡ -11.6451 ᏞᏒ -11.6452 ▁ᏂᏓᏅᏁᎲ -11.6452 ᏣᏘᏃᎯᎮᏍᏗ -11.6453 ᏇᏓᏍᏗ -11.6453 ᎤᏂᏃᏕᏅ -11.6455 ▁ᏗᎦᏐᎯ -11.6455 ▁ᎠᏒᎨᏍᏗ -11.6455 ▁ᎡᏣᏛᎦᏁᎸ -11.6456 ▁ᎯᏴᎭ -11.6456 ᏑᏢᏛ -11.6457 ▁ᏱᏅᏩᏍᏗᏗ -11.6457 ᏕᎬᏲᎯᏏ -11.6457 ▁ᎤᏓᏅᏙᎩᎯ -11.6457 ᏢᏔᎲ -11.6458 ▁ᎠᎵᏍᏓᏴᎲᏍᎬᎢ -11.6458 ▁ᎤᎾᎵᏖᎸᏅ -11.6458 ▁ᏫᎦᎾᏄᎪᎢ -11.6458 ▁ᏗᏌᏂ -11.6459 ▁ᏕᎯᏁ -11.6459 ▁ᎤᏅᏎᏍᏗ -11.6459 ▁ᏍᏆᏛᎦᏁ -11.6459 ▁ᎤᎷᏤᎸᎯ -11.646 ▁ᎢᏲᎩ -11.646 ▁ᏚᏂᏢᎬᎢ -11.646 ▁ᏕᏣᎸᏫᏍᏓᏁᎸᎢ -11.646 ▁ᎠᏄᎯᏍᏗᏍᎬᎢ -11.646 ▁ᏚᏍᎫᏓᏛᎢ -11.646 ▁ᏓᏅᏗᏍᎬᎢ -11.646 ▁ᏚᏄᎪᏔᏅᎢ -11.6461 ▁ᎤᏃᎯᏳᏁᎢ -11.6461 ▁ᎯᎲᎦ -11.6461 ᏒᏗᏱ -11.6461 ▁ᏥᏙᏓᎦ -11.6463 ▁ᎠᏯᎡᏍᏗ -11.6463 ▁ᏧᎪᏩᏛᏗ -11.6464 ▁ᏛᏨ -11.6464 ▁ᎤᎾᏟᎶᎥ -11.6464 ▁ᏧᏴᏫ -11.6465 ▁ᎢᎦᏅᎯᏛ -11.6465 ▁ᎦᏓᏅᏖᏍᎪ -11.6465 ▁ᏚᏟᎶᏍᏓᏁᎴᏃ -11.6465 ▁ᎪᎪ -11.6465 ᏥᏯᏁᎶᏗ -11.6466 ▁ᎤᏓᎴᏅᎯ -11.6466 ᎵᏍᏓᏴᎾᏁᏗᏱ -11.6467 ▁ᎤᎾᎵᎪᏒᎢ -11.6468 ▁ᎠᏛᏍᎨᎢ -11.6468 ᎵᏂᏆᏅᏁ -11.6469 ▁ᏧᎾᏄᏬᏍᏗ -11.6469 ▁ᎤᏢᎬᎢ -11.6469 ▁ᎢᎬᏩᏁᏗᏱ -11.6469 ᎨᏠᎮ -11.647 ▁ᎢᏳᏩᏁᎸ -11.647 ▁ᎤᏬᏛ -11.647 ▁ᎠᏥᎢᏍᏗᏱ -11.647 ▁ᎤᎾᎵᏗᎩ -11.647 ᎾᏍᏉ -11.6471 ᎳᏗᏍᎨᎢ -11.6471 ▁ᏱᎦᎷᎩ -11.6472 ᏚᏓᎸ -11.6473 ▁ᎠᎾᏗ -11.6473 ▁ᎤᏥᏍᏛ -11.6474 ▁ᎢᏣᎵᎪ -11.6474 ▁ᎠᏁᏙᎮᏍᏗ -11.6474 ▁ᎠᏆᎫᏴ -11.6475 ▁ᏳᏲᎰ -11.6476 ᏯᎷᎦ -11.6477 ▁ᏁᏨᏁ -11.6477 ᏒᎲᏍᏗᏱ -11.6478 ᏂᏩᏛᎮ -11.6479 ▁ᏓᏕᏲᎲᏍᎨᎢ -11.6479 ▁ᏄᏅᏁᎸᎩ -11.648 ▁ᎤᏩᏴᏒ -11.648 ▁ᏓᏰᏍ -11.648 ▁ᎢᏳᏍᏗᏓᏂ -11.6481 ᏍᏔᏁᏗ -11.6481 ▁ᎤᏍᏕᏓᎵᏴ -11.6482 ▁ᏥᏯᎠ -11.6482 ᏙᏳ -11.6483 ▁ᏱᎬᏅ -11.6483 ▁ᎣᎩᎦᎵᏍᏓᏗᏍ -11.6484 ▁ᏯᏆᏚᎵᎭ -11.6484 ▁ᎠᏯᏙᎵ -11.6484 ▁ᏧᏂᎷᏤ -11.6484 ▁ᏗᎦᏅᏆᎶ -11.6484 ▁ᏥᎸᏉᏗ -11.6484 ▁ᎤᏬᏱ -11.6485 ▁ᎢᎬᏩᎷᏤᎴ -11.6485 ᎸᏉᏔᏅᎩ -11.6485 ᏐᏅᏤᎸᎩ -11.6485 ᎭᎵᏙᎩ -11.6485 ᏓᏏᏒ -11.6486 ▁ᏗᎧᏃᎩᏍᏗᏱ -11.6486 ▁ᎤᏪᎴ -11.6487 ᏓᏨᏁᎵ -11.6488 ▁ᏕᎨᏥᏅᏩ -11.6488 ᏲᏅᎵ -11.6489 ▁ᏭᏯᏅᎲᎩ -11.6489 ▁ᎠᎩᏁᎸᎯ -11.6489 ▁ᏣᎦᏛ -11.649 ᏓᏡᏗᎭ -11.6491 ▁ᎢᏣᏓᏅᏛᎢ -11.6491 ▁ᎤᏓᏅᏁᎢ -11.6491 ᎦᏥᏲᏎᎸ -11.6491 ▁ᎤᏍᎩᏓᏒᎢ -11.6493 ▁ᏤᏥᏃ -11.6494 ▁ᏤᏙᎰ -11.6494 ▁ᎨᏥᎸ -11.6494 ▁ᎤᏓᏙ -11.6495 ▁ᎢᏤᎮᏍᏗ -11.6495 ▁ᎠᎾᏕᎲᏍᎬᎢ -11.6495 ▁ᎠᎩᏂᎬᏎᎲ -11.6495 ▁ᎬᏣ -11.6495 ▁ᎤᏃᎯᏳᏒᎢ -11.6495 ▁ᎣᎯᏍᏗ -11.6495 ▁ᏚᎾᏦᏎ -11.6495 ᏓᏁᎸᎭ -11.6496 ᏴᏎᎸᎩ -11.6496 ▁ᏧᏬᏢᏁ -11.6498 ▁ᎤᏃᎮᎸᎩ -11.6498 ▁ᏚᏪᎧᏁᎢ -11.6499 ᏃᎮᎵ -11.6499 ▁ᎠᎩᏍᏛᏗᏍᎬᎢ -11.65 ▁ᎠᏲᏍᏗᏍᎬ -11.65 ▁ᏂᎦᏪᏏ -11.65 ▁ᏓᏥᏁ -11.6501 ᎵᏥᏙᏁᎲᎢ -11.6501 ▁ᏧᏩᏒ -11.6501 ▁ᏂᏥᏴ -11.6502 ▁ᏤᎮᏍᏗ -11.6502 ▁ᏗᎦᎷᏫᏍᏔᏁ -11.6502 ▁ᏧᏔᏂ -11.6503 ▁ᏣᏂᏅᎩ -11.6503 ▁ᎠᎾᎵᏍᏓᏴᏗᏍᎬ -11.6503 ▁ᏥᎪᏩᏘᎭ -11.6504 ▁ᎠᏥᎦᏘᏗᏍᏗᏱ -11.6504 ᏦᏩ -11.6504 ᎧᎿᏩᏛᎡ -11.6505 ᎧᎭᏲ -11.6505 ᎿᏬᏍᏗ -11.6505 ▁ᏓᏍᏓ -11.6506 ᎩᏩᏛᏗᏱ -11.6507 ▁ᏧᏍᎦ -11.6507 ▁ᏓᏂᏁᎵ -11.6507 ▁ᎦᏌᎴ -11.6508 ▁ᎤᎵᏍᏕᎸ -11.6508 ▁ᏥᏚᏲᏎ -11.6508 ᏂᏱᏍᎩ -11.6508 ᎵᏍᏙᏔᏁ -11.6508 ᏂᏕᏅ -11.6509 ᎭᏯᎸ -11.6509 ᎧᏁᏍᏗ -11.651 ▁ᏓᏲᎩ -11.651 ▁ᎡᎯᏍᏗᏳ -11.651 ▁ᎠᏂᎩᎵᏲᎬᎢ -11.651 ▁ᏂᎦᎵᏍᏙ -11.6511 ▁ᏥᏄᏛᏁᎴ -11.6511 ▁ᏱᎯᎦᏔᎮ -11.6512 ᏓᏬᏍᏙᏗ -11.6512 ▁ᎥᏘ -11.6512 ▁ᎤᎪᎵᏰᏗ -11.6513 ᎫᏴᎡᎸ -11.6515 ▁ᎠᎩᏩᏛᎲᎩ -11.6515 ▁ᎵᏓ -11.6516 ▁ᏕᏣᎴ -11.6517 ᎨᎬᏁᎵ -11.6517 ▁ᎤᏓᏴᏍᏗᏱ -11.6518 ▁ᏗᎦᎵᏍᏙᏗ -11.6518 ᏓᏦᏍᎬ -11.6519 ᏣᏛᎩᎭ -11.6519 ▁ᎤᏂᎾᏗᏅᏎ -11.652 ▁ᎠᏞ -11.652 ᎦᏎᏍᏙ -11.6521 ᏲᏍᏗᏍᎩ -11.6521 ᏔᏁᎸᎯ -11.6524 ▁ᎠᎫᏬᏰ -11.6525 ▁ᏐᎭ -11.6525 ▁ᏚᎷᎬᎢ -11.6525 ▁ᏂᏪᏏ -11.6525 ▁ᏫᏚᎷᏤᎸ -11.6525 ▁ᎤᏔᏲᏎᎸᎩ -11.6525 ▁ᏥᏍᎩᏯ -11.6526 ᏍᏢᏂᏍᏔᏅ -11.6527 ᎤᏏ -11.6527 ▁ᎤᎾᏤᎵᎪ -11.6527 ᎾᏋᏁᎸ -11.6528 ▁ᏧᏂᎬ -11.653 ▁ᎠᏓᏪᎵᎩᏍᎬᎢ -11.653 ᏥᏂ -11.6531 ▁ᎤᏁᎷᎬᎢ -11.6531 ▁ᎤᎵᏦᏛᎢ -11.6532 ▁ᎦᏓᎥᎢ -11.6532 ▁ᎡᎭᏏ -11.6532 ▁ᎢᏳᏩᎬ -11.6532 ▁ᎤᏂᏖᎸᏅ -11.6532 ▁ᏣᏓᏅᏘ -11.6533 ▁ᎡᏗᎨᏳᎢ -11.6533 ▁ᏚᏇ -11.6534 ᏓᏂᏱ -11.6534 ▁ᏱᏔ -11.6534 ᏗᎬᏩᎧᏃᏗ -11.6534 ▁ᏪᏙᎲ -11.6536 ▁ᎤᎳᏏ -11.6537 ▁ᏂᎦᎵᏍᏗᏍᎪᎢ -11.6537 ᏤᎵᎯᏍᎪ -11.6537 ▁ᎾᎾᏛᏁᎭ -11.6537 ▁ᎪᎯᏳᏙᏗ -11.6537 ᎾᏰᎯᏍᏛ -11.6538 ▁ᎤᏰᎯᏍᎩᏂ -11.6538 ▁ᏚᎸᏌᏓ -11.6538 ▁ᏓᏂᏢ -11.6538 ▁ᎦᎷᏥ -11.6539 ᎦᎵᏍᏓᏛ -11.6539 ▁ᏗᎧᎵᎢ -11.6539 ▁ᏱᏄᏍᏕᎢ -11.654 ▁ᏱᏝ -11.654 ▁ᎢᏥᏁᏗᏱ -11.6541 ▁ᏣᎯᏍᏗᏱ -11.6542 ▁ᏚᏓᏓᎴᏔᏁ -11.6543 ᏤᏯᏙᏤᎮᏍᏗ -11.6544 ▁ᏱᏥᎦᏔᎮᎢ -11.6544 ▁ᎤᏂᎯᏍᏗ -11.6544 ▁ᏚᏘᏃᎴ -11.6545 ▁ᏓᏓᎯ -11.6545 ▁ᎪᏢᏒᎩ -11.6545 ▁ᏂᏙᏔᏘ -11.6546 ▁ᏅᏩᏓ -11.6547 ᏱᎩᎵ -11.6547 ᏪᎵᏏ -11.6548 ▁ᎤᏍᏗᏰ -11.655 ᎰᎯᏍᏗ -11.655 ▁ᏄᏩᏁᎲ -11.6551 ▁ᎤᏁᎳᏛ -11.6551 ▁ᎣᏨᏗᏍᎬ -11.6553 ▁ᎠᏓᎴᏂᏍ -11.6553 ▁ᎤᏂᏬᏂᎯᏍᏗᏱ -11.6554 ▁ᏥᏂᎩ -11.6554 ᎧᏁᎬ -11.6556 ▁ᎠᏆᏚᎸᎲ -11.6557 ▁ᎠᏆᏓᏤᎵᎦ -11.6557 ▁ᎦᏛᎬᎦ -11.6557 ᏂᏍᏗᎭ -11.6558 ▁ᏄᏬᏚᏒ -11.6558 ▁ᎠᏥᏁᎸᎯ -11.6558 ▁ᏗᎦᏲᏥ -11.6559 ▁ᎨᏛᎢ -11.6561 ▁ᎠᎩᏌ -11.6563 ▁ᎤᎾᏓᏙᎵᏍᏔᏁ -11.6563 ▁ᏍᏆᎳ -11.6564 ᏍᏓᏩᏗᏙ -11.6566 ▁ᏙᏓᏆᏍᎬᎢ -11.6566 ▁ᏥᏃᎮᏍᎬᎢ -11.6567 ▁ᏂᎦᏔᎲᎾ -11.6568 ▁ᏱᏚᏩᏛᎮ -11.6568 ᎳᏑᎳ -11.6568 ▁ᎤᏂᏃᏁᎴ -11.6568 ᎾᏕᎨ -11.6568 ▁ᎨᏌ -11.6569 ᎷᎸᏁ -11.6569 ▁ᏃᏥᎥ -11.657 ᏁᎳᏕᎢ -11.6571 ᏍᏔᏲᏍᏙᏗ -11.6573 ᏂᏓᏅᏁᎰ -11.6574 ᏌᏙᏯ -11.6576 ᎵᏉᎩ -11.6577 ▁ᏂᏚᏩᏁ -11.6579 ▁ᏂᏍᏛ -11.6581 ▁ᏗᎬᏅ -11.6582 ▁ᏚᏂᏰᎵᏒ -11.6582 ᏛᎲᏃ -11.6583 ᏯᎦᏎᏍᏗ -11.6584 ▁ᏅᏂ -11.6585 ▁ᏙᎦᏠᎯᏍ -11.6585 ᏟᏃᎮᏔᏁ -11.6586 ▁ᏍᎩᏯᏕᎶᏆᎡ -11.6587 ▁ᎠᎩᏁᏨᎩ -11.6589 ▁ᎠᏥᎪᎵᏰᎥ -11.6589 ᏯᎪ -11.659 ᎫᏴᎲᎾ -11.6591 ▁ᏕᎭᏘᏁ -11.6592 ▁ᎬᏩᏂᏃᎮᏗ -11.6594 ▁ᎤᎶᎯᏍᏗᏱ -11.6595 ▁ᏂᎬᏁᎰ -11.6595 ᎬᏎ -11.6595 ▁ᏱᎾᎾᏛᏁᎰ -11.6595 ▁ᏂᏣᏛᏁᎰ -11.6596 ▁ᎤᎾᏂᎩᏍᏗ -11.6597 ▁ᎬᏩᎾᏓᏅᎡ -11.6597 ▁ᎯᎦᏘ -11.6598 ▁ᏂᏣᏪᏎᎸ -11.6598 ▁ᎤᏃᎭ -11.6599 ᏍᏛᏗᏍᏗ -11.66 ▁ᏗᎦᏅᏬᎢ -11.6601 ▁ᏫᎬᏪᎧᏁ -11.6602 ▁ᎯᎩᏍᎪ -11.6602 ᎪᏛᎢ -11.6603 ᏅᏍᎬᎾ -11.6603 ▁ᏂᎦᏛᏁᎰᎢ -11.6603 ᎣᎸ -11.6605 ▁ᎦᎴᏂᏙᎲ -11.6606 ▁ᏁᎵᏍᎬᎾ -11.6606 ▁ᎤᏩᏌᏆ -11.6607 ▁ᎤᏁᏉᎡ -11.6608 ▁ᎤᏅᏁᎢ -11.6608 ᏥᏍᏢ -11.6609 ▁ᎤᎧᎭ -11.661 ▁ᎤᏩᏛᎲᎩ -11.661 ▁ᏓᏳᏪ -11.6611 ▁ᏱᏚᏩᏛᎲ -11.6611 ▁ᏧᎬᏩᎴ -11.6612 ᏓᏇ -11.6613 ▁ᎤᎾᏌ -11.6614 ᎾᏓᏙᎵᏍᏗᏍᎪᎢ -11.6616 ▁ᏤᎲᎢ -11.6617 ᏯᏛᎦᏁᎵ -11.6619 ᎬᏇᎯᏍᏗᎭ -11.662 ▁ᎤᏥᏯ -11.6622 ᏚᏓᏴᎳᏛ -11.6622 ᏪᏌᏆᎴ -11.6623 ▁ᏯᏃᎵ -11.6623 ▁ᏧᏁᎯ -11.6624 ▁ᏫᎬᏩᏂᏴ -11.6624 ᏲᏍᏗᏍᎨᏍᏗ -11.6625 ▁ᏧᏂᏴ -11.6625 ▁ᏂᏨᏪᏎᎸ -11.6627 ▁ᎦᏁᎵᏒ -11.6627 ᏕᏲᎲ -11.6627 ▁ᏯᎩᏍᏆᎸᎡ -11.6628 ▁ᏧᎾᏙᏅ -11.6629 ▁ᎤᏂᏄᎸᏅ -11.663 ▁ᎤᎵᏦᎯ -11.663 ▁ᏁᏩᏔᎵᏃ -11.663 ᏛᏗᏍᎨᏍᏗ -11.663 ▁ᎤᏚᎢᏍᏔᏅᎢ -11.6632 ▁ᏚᎾᏘᏃᎸ -11.6632 ᏁᏟᏴᏍᏔᏁ -11.6632 ▁ᎠᎦᏯ -11.6632 ▁ᎤᎾᎵᎮᎵᏤᎢ -11.6633 ᎥᏍᎦ -11.6634 ᎠᏴ -11.6634 ▁ᎤᏩᏓ -11.6634 ▁ᎢᏥᎦᎵᏍᏓᏗᏍ -11.6635 ▁ᎢᏳᏩᏁ -11.6636 ▁ᎤᎵᏘᏎ -11.6636 ᏰᏍᏔᏁᎢ -11.6636 ᎵᏔᏕ -11.6637 ▁ᏕᎤᎴᏔᏅᎢ -11.6637 ᏤᏍᏙᎩᎯ -11.6637 ᎦᏙᏍᏙᏗ -11.6638 ▁ᏱᏕᏍᏗ -11.6638 ▁ᏄᏂᏪᏒᎢ -11.6639 ᏓᏁᎰᎢ -11.6639 ▁ᏂᎦᎵᏍᏗᏍᎨᎢ -11.664 ▁ᎣᎩᏰᎸ -11.664 ▁ᏍᎩᏅᎦᎸ -11.6641 ▁ᏂᎦᏛᏅᎢ -11.6641 ᏍᏚᎶᏙᏗ -11.6642 ▁ᏘᎦᎵᏍᏙ -11.6644 ▁ᏙᎦᏘᏁ -11.6645 ▁ᏫᏓᏗ -11.6645 ᏓᏅᏓᏗᏍᏔᏅᎯ -11.6645 ▁ᏱᏍᎩᏯ -11.6646 ▁ᎤᎷᏤᏗ -11.6647 ▁ᎤᏕᏒᏅ -11.6649 ᏓᏅᏔᏩᏕᎬ -11.6651 ▁ᎪᏱ -11.6651 ▁ᏓᏄ -11.6652 ᏨᏁᎰ -11.6653 ▁ᏱᏅᎨᏣ -11.6653 ▁ᎤᏍᏕᎸᏗ -11.6656 ᏦᎯᏳᎲᎦ -11.6656 ▁ᎤᎶᏒᎢ -11.6658 ᏚᏳᎯᏛ -11.6658 ▁ᎤᏰᏥ -11.666 ᎴᏎᎢ -11.666 ▁ᎠᎧ -11.6661 ᏓᏴᏍᏗ -11.6661 ▁ᎳᏏ -11.6662 ▁ᏂᎦᏥᏴᏁᎸ -11.6663 ▁ᎨᏥᏍᏗ -11.6663 ▁ᎢᎦᏛᏁᏗ -11.6666 ▁ᏓᏘᏁ -11.6666 ▁ᏴᎬᏩ -11.6666 ▁ᎤᎿᎸᏤ -11.6666 ▁ᎠᏉᎯᏳᏅ -11.6667 ᏌᏕᎢ -11.6668 ▁ᎤᎾᏗᏔᎲ -11.6668 ▁ᎤᎾᏓᏅᏖᏔᏁ -11.6669 ▁ᎦᎸᎥ -11.667 ▁ᎦᎳᎩ -11.6671 ▁ᎤᏁᎵᏎᎢ -11.6674 ᎾᎥᎾ -11.6674 ▁ᎤᏂᏩᏛᎲ -11.6675 ▁ᏕᎨᏲᎲᏍᎨ -11.6675 ▁ᎢᎬᏩᎵᏍᏓᏁ -11.6677 ᏔᎷᎩᏍᎬ -11.6678 ▁ᏤᎵ -11.6681 ᏂᎨᏒ -11.6684 ▁ᎤᏂᎾᏝᎾᎥ -11.6685 ▁ᏱᏗᏍᎩ -11.6685 ▁ᎠᏲᎵᏃ -11.6685 ᏣᏛᏁᎮᏍᏗ -11.6686 ▁ᎠᏢᏛ -11.6687 ▁ᎠᏂᎦᎵ -11.6687 ▁ᏚᎸᏫᏍᏓᏁᎸᎩ -11.6687 ▁ᏱᏧ -11.6689 ᏍᏗᏰ -11.6689 ▁ᏥᎶᏃ -11.6691 ▁ᎦᎨᏣ -11.6692 ▁ᏚᏑᎦ -11.6694 ᏓᏂᎸᏤ -11.6696 ▁ᏱᎾᏅ -11.6698 ▁ᏘᏲ -11.67 ▁ᎢᏥᏪᏍ -11.6701 ᏥᏰᎸᎾᏁᎰᎢ -11.6701 ᎪᎮ -11.6704 ᎮᏙᎮ -11.6705 ▁ᎠᏂᏁᎩ -11.6705 ▁ᏗᏥᏰᎸᎢ -11.6706 ▁ᎾᏆᎵᏍᏓᏁ -11.6706 ᎾᏬᏍᏔᏁᎢ -11.6709 ᏝᏁ -11.6709 ▁ᎬᎳ -11.6712 ▁ᏧᏲᎰ -11.6713 ᏯᏂᏍᎬᎢ -11.6713 ᏔᏛ -11.6714 ᎪᏪᎶᏗ -11.6714 ▁ᎠᏗᏔᏍᏗᏱ -11.6715 ▁ᎦᏰᏌᏛᎢ -11.6715 ▁ᎠᏎᏍᏗ -11.6718 ▁ᏓᏲᏣ -11.672 ᏰᎶᎴ -11.672 ▁ᎢᏓᏓ -11.6723 ᏉᏎᏗ -11.6725 ▁ᎤᏪᎶ -11.6725 ▁ᎡᏙᎰ -11.6726 ᏓᏙᎵᎨᏍᏗ -11.6728 ▁ᏚᏬᏎᎴ -11.6728 ᏥᏍᏓᏱᏕᎸ -11.6729 ᏂᏏᏅᎩ -11.6729 ▁ᎡᏥᎷᏤᎸ -11.673 ᏇᎵᏎ -11.6731 ▁ᎤᏪᎵᏒ -11.6731 ▁ᎠᏓᏅᏖᏍᎨᎢ -11.6733 ᏥᏏ -11.6735 ᎸᏒ -11.6735 ᏛᏂᎲ -11.6738 ᏛᏙᏗᏱ -11.6738 ᏲᎱᏍᎬ -11.6739 ▁ᏚᎸᏌᏛᎢ -11.6743 ▁ᎢᏳᏓ -11.6744 ▁ᏣᎬᎩ -11.6745 ▁ᎠᏁᎵᏍᎨᎢ -11.6745 ▁ᎤᏂᏍᎫᏕᏒ -11.6747 ▁ᏳᏂᎬ -11.6747 ▁ᎢᏣᏓᏑᏴ -11.6747 ▁ᏲᎪ -11.6748 ᎪᎰᏍᎬ -11.6752 ᎠᎩᏲᏏ -11.6753 ▁ᎤᏂᏁᏨᎢ -11.6755 ▁ᏧᏙᏢ -11.6755 ▁ᏗᎬᏩᏂᏐᏢ -11.6756 ▁ᎠᏚ -11.6757 ᏱᏉᏍᎩᏂ -11.676 ᏑᏯᎩᏍᏗ -11.6766 ▁ᏕᎰ -11.6769 ᏯᏛᏅ -11.6771 ᏘᏍᎬᎾ -11.6772 ᏑᏰᏎ -11.6773 ᏍᏆᏛᎯ -11.6774 ▁ᏳᏔᎳᏬ -11.6776 ᏏᏲ -11.6777 ᏓᏛᏁᎭ -11.6778 ▁ᎠᎪᏎᎴ -11.6779 ▁ᏗᎬᏩᏁ -11.6779 ▁ᎤᏂᏁᎸ -11.678 ▁ᏒᏟ -11.6783 ▁ᎤᏛᏗ -11.6784 ▁ᏳᏯ -11.6786 ᏍᎩᏘ -11.6787 ▁ᎠᏯᎠ -11.6788 ▁ᎣᎩᎸᏉᏗ -11.6789 ᎬᏍᎪᎸᏅᎢ -11.679 ᏙᏓᏋ -11.6791 ᎾᏟᏃᎮᎸ -11.6793 ᎵᏩᏛᎡᎲᎢ -11.6793 ᏓᏅᏛ -11.6796 ▁ᏚᏲᎴ -11.6797 ▁ᏂᎦᎷᎬ -11.6797 ▁ᏛᎾᎢ -11.6799 ▁ᏧᏁᏨᏃ -11.6801 ᎩᏎᎢ -11.6804 ᏣᏙᎴᎰᎯᏍᏗᏱ -11.6805 ▁ᎠᏁᏙᎮᎢ -11.6805 ▁ᏚᏑᏰᏎ -11.6806 ᏱᏐ -11.6808 ᏨᏗᏍᎨᏍᏗ -11.681 ▁ᎤᏂᎷᏤᎭ -11.681 ᎵᏃᎮᏗᏍᎨᏍᏗ -11.6814 ▁ᎠᎵᏍᎪᎸᏙᏗᏱ -11.6814 ▁ᎢᏨᏁ -11.6817 ᏅᏍᏙᏗᏱ -11.6819 ᏲᎢ -11.6819 ᏓᎦᎵᏍᏙᏓ -11.6821 ᏅᎾᏉ -11.6822 ᎬᏙᏗ -11.6823 ▁ᎭᏕᎶᎰ -11.6823 ᏍᏓᏱᏕ -11.6828 ▁ᏂᎦᏪᏒ -11.6832 ▁ᏳᎾᏚᎵᏍ -11.6835 ᏲᏒ -11.6842 ▁ᏥᏂᎦᏪᏍᎬ -11.6844 ᏍᏔᏁᎯ -11.6844 ▁ᏧᎾᏓᏕ -11.6844 ᎨᎵ -11.6845 ᎵᎦᎵᏴ -11.6852 ▁ᏄᏛᎾᏕ -11.6852 ᏙᎴᎰᎯᏍᏙᏗ -11.6854 ▁ᎦᎵᎭ -11.6855 ▁ᎤᏚᎵᏍᎨᎢ -11.6858 ▁ᎤᏲᏨᎩ -11.6858 ▁ᏗᏑᏫ -11.6859 ᎧᎯᏴᎩ -11.686 ▁ᏩᏥᏯᏅ -11.6861 ▁ᎣᎬᏔᏅ -11.6862 ▁ᎦᏙᎥ -11.6863 ▁ᏕᏦ -11.6864 ▁ᎢᏨᏗᏍᎪ -11.6867 ᏩᏗᏍᎬ -11.6868 ▁ᏚᏕᏲᏅ -11.6871 ᎫᏓᎸ -11.6872 ᏗᏎ -11.6872 ▁ᏛᎵ -11.6873 ᏐᏢᎢᏍᏗᎭ -11.6874 ᏄᏪᏎᎢ -11.6879 ▁ᎢᏫ -11.688 ᎪᏫᏎ -11.6881 ▁ᎤᎾᎵᏍᎦᏍᏙ -11.6881 ▁ᏲᎨ -11.6885 ᏩᎾᎨ -11.6885 ᏚᏅᏁᎴ -11.6885 ▁ᎠᎪᏢᏅ -11.6887 ▁ᎠᏍᎪᏒ -11.689 ᎳᎨᏯᏛ -11.689 ▁ᎤᎦᏘᏗᏍ -11.6891 ▁ᎦᏛᎢ -11.6892 ▁ᎣᏣᏓᏙᎵᏍᏗᏍ -11.6894 ᏥᏃᎲᏏ -11.6894 ▁ᎠᏆᎩᎸ -11.6902 ᎾᏓᏡᎬ -11.6904 ▁ᏍᎩᎾᎾᏂ -11.6906 ▁ᎠᎩᏍᏆᏛ -11.6907 ▁ᏚᏂᏯᏪ -11.6907 ▁ᏩᎩᎶᎯ -11.6911 ᎢᏎᏗ -11.6912 ᏃᎸᏔᏅᎩ -11.6913 ▁ᎦᏰᏗ -11.6913 ▁ᎬᎩᎸᏉᏗ -11.6916 ᏁᏤᎸᎩ -11.6918 ᏗᎦᏚᎲ -11.6928 ▁ᎤᏕᏯ -11.6929 ▁ᏕᏥᎾ -11.6933 ▁ᏱᏗᎩ -11.6934 ᏥᏯᎵᏍᎪᎸᏓᏁ -11.6934 ▁ᏂᎠ -11.6936 ᎦᏚᏢ -11.6941 ᎩᎷᏨᎩ -11.6943 ᏴᏍᎪᏳᏁ -11.6945 ▁ᏓᏍᏆᎵᏍ -11.6946 ᏎᎲᎢ -11.6946 ▁ᎠᏆᏚᎵᏍᎬᎢ -11.6947 ᏕᎪᏢᎾ -11.6951 ᏆᎶ -11.6952 ▁ᎠᏂᎳᎨᏴ -11.6953 ▁ᏘᎪ -11.6954 ▁ᎤᏞ -11.6957 ᎵᏑᏫᏓ -11.696 ▁ᏥᎩᏁᎸ -11.6964 ᎪᏢᏁᎢ -11.6967 ▁ᎤᏍᎪᏍᏗ -11.6969 ᎣᏐᏅ -11.6969 ▁ᎣᏥᏁ -11.6971 ᏁᏟᏴᏎ -11.6972 ᎸᏔᏅᎯ -11.6973 ▁ᏧᏂᏙ -11.6974 ▁ᏗᏂᏂᎨ -11.6975 ▁ᏣᎾᎢ -11.6976 ᏓᎴᏍᏗ -11.6977 ᎾᎵᎩᏛ -11.6981 ▁ᏦᏥᏩᎾᎦᎳ -11.6983 ᎾᎵᏙᎩᏯ -11.6983 ▁ᎠᏥᏰ -11.6986 ▁ᏚᎾᏗᏩᏍᎨ -11.6991 ᏯᏂᏍᎬ -11.6993 ▁ᎬᏩᏓᏅᏘ -11.6998 ▁ᏚᏂᏅᏁ -11.7 ▁ᏯᎩᏍᏕᎵ -11.7 ᎬᎾᏬᏙᏗᏱ -11.7004 ▁ᏗᎨᎩ -11.7004 ▁ᎠᏍᏓᏲ -11.7006 ▁ᏙᏍᎩ -11.7007 ▁ᏳᏃᎯᏳ -11.7007 ᎦᎵᏯ -11.7008 ▁ᎤᎾᏛᏓᏍ -11.7008 ▁ᏂᏍᎩ -11.7009 ▁ᏙᏥᏩᏛᎲ -11.7012 ▁ᏂᎤᏪᏎ -11.7012 ▁ᏍᏊ -11.7013 ▁ᎤᏫᏒ -11.7014 ▁ᎠᏍᏓᏱᏗᏍᏗ -11.7014 ▁ᎢᏨᏃᏁᎸ -11.7025 ᏂᏆᏘᎸ -11.7025 ▁ᏫᏥᎷᏤᎸ -11.7027 ᏯᏂᏍᎨᏍᏗ -11.7029 ▁ᎤᏙᏩᏗᏍ -11.7029 ᏙᎳᏅ -11.7032 ▁ᏣᏚᎳ -11.7033 ᏗᎦᎸᏉᏗ -11.7034 ▁ᏧᏩᏅ -11.7036 ᎡᏥᏍᏓᏩᏕᎩ -11.704 ▁ᎠᎪᎵᏰᏍᎨ -11.7041 ▁ᎢᏳᎾᏛᏁᎸ -11.7041 ᏚᏓᎸᏙ -11.7042 ▁ᏂᏗᎩ -11.7042 ᏤᎸᎩ -11.7043 ▁ᎠᎾᏓᏱ -11.7044 ᎫᏴᎡᎮᏍᏗ -11.7045 ᎿᏕᎬ -11.7048 ▁ᏓᏂᏃᎩᏍ -11.705 ᏒᏍᏗᏱ -11.705 ▁ᎤᏴᏔᏁ -11.7051 ᏩᏔᎰ -11.7052 ᏂᎬᎬᎢ -11.7057 ▁ᏂᏨᏃᏁ -11.7059 ▁ᎬᎩᏰᎸ -11.706 ▁ᎤᏩᏒᎯ -11.706 ᏯᎩᏍᎪ -11.706 ▁ᎤᏰᎶ -11.7061 ▁ᏚᏄ -11.7062 ᎫᏴᏗᏱ -11.7063 ᏓᏁᏘ -11.7064 ▁ᎦᎵᏥᏙᎲᏍ -11.7068 ▁ᎤᎴᏅᏔᏅ -11.7069 ᏐᏍᏔᏅ -11.707 ᏯᏔᎲ -11.707 ▁ᏧᎾᎦ -11.7071 ▁ᎷᎦ -11.7072 ᏪᏅᏎ -11.7074 ᎵᏖᎸᏂᎴ -11.7077 ▁ᏚᎾᏓᏅ -11.708 ▁ᏙᏓᎦᏅ -11.7081 ᎪᏪᎸ -11.7083 ᏅᎦᎸᎮᎢ -11.7087 ▁ᎤᏲᎮᏍᏗ -11.7091 ᏆᏒᎦᎸ -11.7091 ▁ᏓᏂᎾ -11.7091 ▁ᏗᏣᏓᏅᏙᎩ -11.7092 ᎦᏔᎿᎥᎾ -11.7096 ᎴᏍᏗᏱ -11.7101 ᏴᏍᎪᎢ -11.7101 ▁ᎬᎵ -11.7105 ᏆᏗᏅᏛ -11.7107 ᏒᏓᏅ -11.7109 ᏍᎦᎢᎮ -11.7111 ▁ᎤᏬᏢᎾᏁ -11.7118 ▁ᎤᏲᏉᏍᎩᏂ -11.712 ᏪᏣ -11.7122 ▁ᎢᏥᎦ -11.7124 ᎯᏥᎨ -11.7124 ᎬᏍᎦᎸ -11.7125 ▁ᎤᏅᏗᏱ -11.7127 ▁ᏱᏗᏥᏳᎪᏓᏁ -11.7128 ᏔᏛᎩ -11.7128 ▁ᎦᎪᏗᏱ -11.713 ▁ᎤᎵᏂ -11.713 ᏥᏍᏈ -11.7131 ᏰᏗ -11.7134 ▁ᏚᎾᎵᏂᎪ -11.7135 ᏗᏍᎦᎳᏁ -11.7136 ▁ᎠᏂᎲᏍᎨ -11.7139 ▁ᏧᏂᎭ -11.7144 ᎾᏏᏗ -11.7151 ᎾᎵᏖᎸᏂ -11.7153 ᎵᎨ -11.7156 ▁ᎠᏂᏟ -11.7158 ᎫᏴᎲ -11.7161 ▁ᎢᏣᎴ -11.7163 ▁ᎠᏛᏁᎵᏍ -11.7163 ᎦᏙᎥᎯᏍᏗ -11.7164 ᏚᏛᏛᏅᎩ -11.7169 ᎬᎾᏉ -11.7169 ▁ᎤᏁᏅᎢᏍᏗ -11.7175 ᎪᎸᏏ -11.7177 ᏲᏞᏒ -11.7182 ▁ᎤᎶᏒᏍᏓᏁ -11.719 ▁ᎠᏢᏈᏍᏗ -11.7191 ᏟᏫᏛᏗ -11.7191 ᎵᎥᏂ -11.7196 ᏂᏴᎭ -11.7199 ▁ᏛᎠ -11.7199 ▁ᏓᏂᏱ -11.72 ▁ᎤᏩᏛ -11.7202 ᎩᎬ -11.7203 ▁ᏱᏄᏅᏁ -11.7206 ᎨᏰᎢ -11.7207 ▁ᏯᏆᏓᏅᏓᏗᏍ -11.7208 ▁ᎠᏍᏚᎩ -11.7209 ▁ᏗᎬᏂ -11.7217 ▁ᎤᏍᏕᎸᎮ -11.7225 ᏛᏎᎢ -11.7228 ▁ᏄᏩᎾ -11.7231 ▁ᎤᏓᏂᏴ -11.7232 ▁ᎦᏥᏔᏲᏎ -11.7236 ▁ᎬᏩᏂᎾᏄᎪᏫᏒ -11.7237 ᎫᏤᎵ -11.7238 ▁ᎣᎩᏂᏙ -11.7239 ▁ᏱᏕᏣ -11.7241 ▁ᏗᎲᎢ -11.7242 ᏙᎰᎢ -11.7245 ᏛᏓᏍᏓᏁᏗᏱ -11.7247 ᏬᎦ -11.7255 ᎧᎾᏂ -11.7256 ▁ᏚᎩᏎ -11.7256 ᎾᏣᏪᏐᎸᏍᏙᏗ -11.726 ▁ᎠᏓᎩᎡ -11.7262 ▁ᏣᏍᏆᏂᎪ -11.7262 ᎵᏎᎯ -11.7263 ▁ᏗᏤᎷ -11.7264 ᏂᏴᎲᎩ -11.7269 ▁ᏫᏚᏂᏲᎯᏎ -11.7274 ▁ᎢᏨᏴᏁ -11.7274 ᏥᎪᎵᏰᏗᏱ -11.7275 ᏫᏱ -11.7279 ▁ᎠᏥᏴ -11.7282 ▁ᎡᏥᏃᏁ -11.7283 ▁ᏗᎦᎬ -11.7283 ▁ᏕᏥᏁ -11.7284 ᎥᏍᎬᎾ -11.7294 ▁ᏓᎾᏁᎶ -11.7296 ▁ᏂᎦᎵᏍᏗᏍᎬᎢ -11.7296 ▁ᎤᏬᏘ -11.7297 ▁ᎠᏆᎵᏃᎮᏔᏅ -11.7303 ᏫᏒᎯ -11.7305 ᎪᏗᏱ -11.7305 ▁ᎤᏪᏅᎡ -11.7314 ᏩᏘᎭ -11.7317 ᏅᏎᏃ -11.7317 ᏂᏍᎩᏴᎦ -11.7318 ᏩᏛᎡᏗᏱ -11.7319 ᎾᏗᏅᏒᎩ -11.7321 ▁ᏚᏅᏅ -11.7323 ᏂᏎ -11.7329 ▁ᏧᏪᏰ -11.733 ▁ᎠᏂᎧᎵ -11.7331 ᏒᏁ -11.7334 ᏔᏂᎴ -11.7336 ᏚᏙᎥ -11.7338 ▁ᎤᏂᎦᏙᎥᎯᏍᏗ -11.7339 ▁ᎨᏣᎪᏩᏛᏗ -11.7341 ᏎᎦ -11.7344 ᏲᎸᎩ -11.7346 ▁ᏗᎦᎴᏅ -11.7347 ▁ᎤᏑᎸ -11.735 ▁ᎢᏏ -11.7355 ▁ᏧᏐ -11.7358 ᏥᎦᏖᏃᎭ -11.7364 ᎦᏔᏂᎴ -11.7366 ▁ᏣᏓᏅᏖ -11.7367 ▁ᎠᎩᏰᎸᏒ -11.7369 ᏥᏂᏐᏗᏱ -11.7369 ▁ᏓᏚ -11.7371 ▁ᎨᏥᏯᏅ -11.7373 ᏯᏅᎯᎸ -11.7374 ᏅᏍᏓᏕ -11.7374 ᏍᏓᎦᏴᎯᏓ -11.7375 ᏕᎶᏆᎥ -11.7375 ▁ᏧᎾᏁ -11.7377 ᏓᏦᎲ -11.7378 ᏱᏍᎪᎢ -11.7382 ▁ᎢᎸᏍᎩᏉ -11.7382 ▁ᎪᏍᏗ -11.7383 ᏥᏚᎢᏍᏓᏁᎸ -11.7385 ᏍᏆᏗᏍᏗᏱ -11.7386 ᎫᏴᎡᏗ -11.7387 ᏒᎲ -11.739 ᎷᏤᎰᎢ -11.7393 ᎶᏄᎮᏍᎩ -11.7395 ᏰᏙᎳᏛᏅ -11.7395 ᏂᏴᏙᏗ -11.7397 ▁ᎠᎩᏩᏒ -11.7397 ▁ᎬᏍᎬ -11.7405 ▁ᏚᎪᎲᏃ -11.7406 ▁ᏓᏂᎯᏯᏍ -11.7408 ▁ᏧᎾᏓᎯᏍᏗ -11.7412 ᎫᏍᏛᏗ -11.7415 ᏍᎪᎳ -11.7415 ▁ᎬᏩᏍᏆᏗᏍ -11.7419 ᎾᏓᏨᏯᏍ -11.7421 ᎧᎵᎢᏍᏔᏅ -11.7424 ᏳᎲᏍᎩ -11.7425 ▁ᏥᏅᏏᏓᏍᏗᏃ -11.7425 ▁ᏥᏳᎯᏃ -11.7426 ▁ᎤᏲᎴᎢ -11.743 ▁ᏭᏖᎳ -11.7432 ▁ᎤᏲᎰᏎ -11.7436 ᏯᏙᎮᎮᏍᏗ -11.7437 ᏍᎪᎸᏨ -11.744 ᏲᎱᏎᎸᎯ -11.7441 ᎦᏟ -11.7445 ▁ᏳᏗᏔ -11.7451 ▁ᏙᏓᏥᏃᎩ -11.7453 ᏭᎪ -11.7454 ▁ᎤᎾᏕᏯᏙᏗ -11.7457 ᏓᏁᏟᏴᏒ -11.7458 ▁ᎤᏂᏟᏌᏅ -11.746 ᏲᎲᎩ -11.7462 ᎵᏃᎮᏔᏅᎩ -11.7464 ᎸᏫᏍᏓᏁᎸᎯ -11.7464 ▁ᎡᏥᎩᎵᏲᎢᏍᏗᏍ -11.7466 ▁ᏍᏆᏛᏓᏍᏓ -11.7471 ▁ᎤᎾᎵᏍᏓᏴ -11.7472 ▁ᏗᏥᏁᎸ -11.7479 ᏄᏬᎥ -11.7486 ▁ᏯᏓ -11.7492 ▁ᏱᏂᏨᏁ -11.7499 ▁ᎧᏅᏂᏍᎩᏉ -11.7503 ▁ᎢᏣᏙᎴᎰ -11.7504 ▁ᎤᎵᏍᏙᏰ -11.7506 ᎷᎪ -11.7507 ᏐᏈᎵ -11.7507 ᎧᏲᏗ -11.7511 ▁ᎠᏓᏔᎶᎯ -11.7515 ᏟᎶᏍᏗ -11.7516 ▁ᎢᏣᏪᏍᏗ -11.7517 ▁ᏧᏃᎯᏳᏗ -11.7525 ᎾᏓᏛᏁᎭ -11.7525 ▁ᏙᎤᏁᏅ -11.7525 ▁ᎡᏥᏍᏕᎸ -11.7526 ᏂᏯᏫᏍᎬ -11.7526 ᎧᎿᏩᏗᏙᎮᏍᏗ -11.7528 ▁ᎠᎴᏂᏓᏍᏗ -11.7536 ᏥᏁᎢᏍᏗᏍᎬ -11.7537 ▁ᎤᏍᏓ -11.7539 ᎸᏨ -11.7541 ᏯᏘᏃᎯᏏ -11.7543 ᎶᎨ -11.7543 ᎩᎵᏲᎢᏍᏗᏍᎬᎢ -11.7546 ▁ᎤᏛᎯᏍᏗ -11.755 ᏨᏁᏗᏱ -11.7554 ᎯᏯᏍᏗ -11.7562 ▁ᎤᎵᎬᏚ -11.7569 ▁ᏆᏙ -11.7585 ᎾᏓᏛᏁᏗᏱ -11.7586 ᏂᎥ -11.7592 ᎳᏑᎸ -11.7598 ᏲᎱᏍ -11.7604 ▁ᏏᎻ -11.7606 ▁ᏒᏃ -11.7611 ᏥᎷᏤᎸ -11.7613 ᎦᎴᏍᏗ -11.7613 ▁ᎨᏦᎯᏳᏗ -11.7614 ▁ᎤᎾᏙᎴᎰᏒᏃ -11.7615 ▁ᎦᏙᎬᎢ -11.7621 ᎦᎵᏍᏓᏗᏍᏗᏱ -11.7622 ▁ᎢᏨᎪ -11.7629 ▁ᎠᏲᎪ -11.7632 ▁ᎠᏆᏓᏅᏘ -11.7633 ᎯᏙᎸ -11.7634 ᏓᏅᏖᎭ -11.7643 ▁ᏏᏂ -11.7646 ▁ᏒᏕ -11.7651 ᏍᏔᏯ -11.7654 ▁ᎠᏎᏛ -11.7656 ᎮᎸᎯ -11.766 ᎶᏁᎥ -11.7664 ▁ᎭᎵᏍ -11.7667 ▁ᏘᏅᎵ -11.767 ᏥᎾᏌᎢ -11.7672 ᏅᎡᎯ -11.7674 ᏤᎶᎯ -11.7676 ▁ᏄᎨᏳᏎ -11.768 ᏤᏙᎭ -11.7683 ᏙᏯᏅᎯᏕᎢ -11.7684 ᎲᏍᏔᏅ -11.7688 ᏒᎨ -11.7689 ᏂᏅᏫᏍᏗᏍᎩ -11.7689 ᏘᏅᏍᏗᏱ -11.7699 ▁ᎤᎵᏘᏒ -11.7702 ᎫᏓᎴ -11.771 ᎮᎭ -11.7714 ▁ᎣᎨ -11.7715 ▁ᎠᏍᏚᎢᏍ -11.7719 ▁ᎠᎩᏛ -11.7719 ▁ᎣᎩᏃ -11.7721 ᏗᎦᏄᎪᎪ -11.7724 ᎬᏔᏅᎯ -11.7724 ᎩᏁᏥ -11.7748 ᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ -11.775 ᏣᏛᎦᏁᎸ -11.7753 ▁ᎢᏳᎵᏍᏔᏁ -11.7758 ᎪᏗᏍᎩ -11.7759 ▁ᎤᏪᎵᏎᎢ -11.7761 ▁ᎦᏰᎪ -11.7763 ▁ᎧᎾ -11.7764 ᏈᏃ -11.7765 ▁ᎦᏂᎩ -11.7767 ᏍᏕᏓᎵᏴᏍ -11.777 ▁ᏗᏣᏛ -11.7772 ᎯᎦᏔᎭᏍᎪ -11.7772 ᏥᎵᎥᏂᎵ -11.7773 ᎦᏔᏂᎸ -11.7777 ᏍᏓᏩᏗᏙᎭ -11.7778 ▁ᏔᎵᏉ -11.7779 ᏐᏗᏱ -11.7781 ▁ᎦᏙᎨᎢ -11.7783 ᎦᎵᏍᏙᏗᏍᎨᏍᏗ -11.7783 ▁ᎤᏂᎩ -11.7784 ▁ᎠᏍᎦᏰᎬᏍ -11.7794 ᏏᏙᎸ -11.7794 ᏥᏴᎩ -11.7798 ᏕᏙᏛ -11.78 ▁ᎠᎾᏡᏗ -11.7801 ᏢᎾ -11.7805 ᏣᏓᏅᏔ -11.7806 ▁ᎢᏍᏗᎪ -11.7806 ᏂᎦᎸ -11.781 ▁ᏚᏃᏒ -11.781 ▁ᎦᎸᏅ -11.7815 ▁ᎣᏥᏅ -11.7817 ᎸᎾᏉ -11.7818 ᏰᎸᏅ -11.7823 ▁ᎠᏙᎴᎰ -11.7829 ᎾᎵᏍᏓᏴᏗ -11.7831 ▁ᏣᏂᎧᏔᎮ -11.7831 p -11.7832 ᎾᏓᏂᎸᏤ -11.784 ▁ᏚᏏᎳᏛᎢ -11.7844 ᏥᏬᏁᏔᏅ -11.7845 ▁ᎦᏕᎶᎣᏍ -11.7846 ▁ᎣᏂᏍᎩᏂ -11.785 ᎵᏁᏌ -11.7852 ᎪᎸ -11.7858 ▁ᏥᏕᎲ -11.7861 ᏩᏂᏌᏁ -11.7862 ▁ᎯᏃᎮᏍᎬ -11.7867 ᏂᏴᏍᏗ -11.7868 ▁ᏂᎬᏅᎩ -11.787 ▁ᎯᏍᏚ -11.7875 ᏛᏁᎰᎢ -11.7882 ᎷᏏ -11.7883 ᏂᏎᎢ -11.7885 ▁ᎤᏪᎳᏗᏍ -11.7886 ᎷᏤᎲ -11.7888 ▁ᎤᏱᎶ -11.7895 ▁ᎠᏆᏍᏗ -11.7896 ▁ᎤᏂᏔᏲ -11.7897 ᏴᏍᏕᏍᏗ -11.7899 ᏂᏏᏁ -11.79 ▁ᎧᏁᏉᎨ -11.7903 ᏅᏍᏔ -11.7906 ᎵᏍᎪᎸᏓᏁ -11.7907 ᏥᏯᏅᎲ -11.7908 ▁ᎠᎩᎬ -11.7909 ᏂᎦᎵᏍᏓ -11.7909 ▁ᏧᏬᏢ -11.7911 ▁ᎤᏂᏐ -11.7913 ᏍᏓᎡ -11.7914 ▁ᎤᏐ -11.7919 ▁ᏕᎩᏂᏴ -11.7926 ᏓᎦ -11.7937 ᎾᏰᏍᎬᎢ -11.7943 ▁ᏧᏂᏍ -11.7943 ᏥᏫ -11.7945 ▁ᏂᏥᎦᏔ -11.7945 ᏅᏫᏍᏗᏍᎨ -11.7951 ▁ᎤᏓᎵᏓᏍ -11.7955 ᏰᎸᎰ -11.796 ᎾᎦᏔᎲ -11.7964 ᏏᎾᏍᏛ -11.7964 ▁ᏍᏆᏂ -11.7966 ▁ᎤᎷᏨᎢ -11.7966 ᏓᏙᎵᏍᏙᏗᏱ -11.797 ▁ᏓᎩᎧ -11.7974 ᏥᏍᎪᎵ -11.7974 ▁ᏂᎬᏴ -11.7984 ᎭᏂᏍᏔᏅ -11.7984 ᎯᏎᎴ -11.7988 ᏬᎡ -11.7988 ▁ᏓᏆᎴ -11.7994 ▁ᏧᏬᏚ -11.7994 ᏕᏨᎩ -11.7995 ▁ᎢᏤᎵ -11.8 ᎩᏙᎵᏍᏗᏱ -11.8002 ᎬᏂᏐᏗᏱ -11.8003 ᎴᏅᏗᏱ -11.8005 ▁ᎤᎾᎴᏗ -11.8006 ᏯᎪᎦ -11.801 ▁ᎤᎨᎢ -11.8011 ᏘᏍᏓᏁᎯ -11.8013 ᏯᏨ -11.8014 ▁ᏓᏁᎶᏛ -11.8015 ▁ᏚᏂᏲᏒ -11.8015 ▁ᏫᏓᎾ -11.8031 ᎦᎶᏙᏗ -11.8034 ▁ᏫᎦᏅ -11.8034 ᏍᏚᏣ -11.8036 ᎧᎮ -11.8036 ᏔᎶ -11.8041 ▁ᏓᎪᏩᏘᏍᎨ -11.8046 ▁ᎤᏔᏕᎩᏍᎨ -11.805 ᎵᏎᏗ -11.805 ▁ᏧᎾᏁᎳ -11.805 ▁ᎬᏯᏛᏁ -11.8055 ▁ᎤᎵᏃᎯᏰ -11.8056 ▁ᎾᏗᏍ -11.8057 ▁ᎤᏤᎸᏅ -11.8057 ns -11.8059 ▁ᎢᏍᎪ -11.806 ᏰᎵᏎᎭ -11.807 ▁ᏂᏚᎾ -11.807 ᏕᏔᏅᎯ -11.8071 ▁ᏅᎬ -11.8072 ▁ᏛᎾᎵᏍᏓᏴ -11.8075 ▁ᎢᏍᏓᏛ -11.8081 ▁ᎬᏩᏯᎢ -11.8081 ▁ᏚᎦᏙᏍᏔᏁ -11.8082 ᎦᏡᏓ -11.8089 ▁ᎦᏓᏬ -11.8091 ᎿᎸ -11.8095 ᏍᎩᏰᏲᎲ -11.8102 ᏫᏍᏔᏁ -11.8104 ▁ᎠᎵᏍᎩ -11.8107 ᏔᏲᏎᎸ -11.8108 ▁ᎬᏬᎯᏳᎲᏍᎨ -11.8113 ᏗᏍ -11.8116 ▁ᎤᏍᎦᏍᏓᏁ -11.8117 ᏆᏓᎾᏰᏍ -11.8119 ▁ᏭᎪᎲ -11.8125 ▁ᏓᏂᏃᎮ -11.8128 ᎳᏍᏛ -11.8132 ᏓᏁᎮᎢ -11.8135 ▁ᎤᏃᎮ -11.8136 ᎦᏑᏰᏛ -11.8137 ▁ᏚᏪᏯ -11.8139 ▁ᏥᏯᏙᎵ -11.8143 ᏰᏅ -11.8144 ▁ᎬᏩᏲ -11.8151 ᎾᏓᏂᎸᏨ -11.8154 ᏂᏌᏙᏴ -11.8158 ▁ᎢᏤᎵᏎ -11.8161 ▁ᏓᏥᏃ -11.8169 ▁ᎤᏂᎦᏯᎷ -11.8173 ᏑᏱ -11.8173 ᎵᏲ -11.8174 ▁ᏧᎾᎵ -11.818 ▁ᏍᏆᏓᏅ -11.8181 ᎸᏫᏍᏓᏁᎴ -11.8183 ᎯᏎᎸᎢ -11.8186 ▁ᏱᏓᎩᏯ -11.8194 ▁ᎤᏂᏁᏎ -11.8195 ᎧᎸᎩ -11.8195 ▁ᎤᏂᏣ -11.8199 ▁ᏚᏏᏔᏕ -11.8203 ᏁᎳᏗᏍᎨ -11.8203 ▁ᎠᎪᎵᏰᏍᎪ -11.8204 ▁ᎡᏣᎵ -11.8213 ▁ᎠᏓᏯᏅ -11.8228 ▁ᏚᏒᏁ -11.8228 ᎾᏲᎪ -11.823 ᎾᎩᏪᏒ -11.8231 ▁ᎨᏦᎯᏳ -11.8232 ᎩᏂᎬᎦ -11.8233 ▁ᎤᏍᏆᏂᎪ -11.8233 ᏎᎩ -11.8246 ▁ᎢᏥᏰᎸᏒ -11.8249 ▁ᏯᏍᎦᎢᎮ -11.8251 ▁ᎤᏬᏎ -11.8254 ▁ᎬᏩᏛᏓᏍᏓᏁ -11.8257 ᎯᏎᎸᎯ -11.8264 ▁ᏧᎪᎲ -11.8266 ᎢᏍᏓᏁᏗᏱ -11.8267 ▁ᎤᎾᎵᏍᎪᎸᏙᏗ -11.8268 ▁ᎢᏍᏆ -11.8272 ᏙᎴᎢ -11.8273 ᎦᎵᏴ -11.8274 ▁ᏭᏂᏴᏍᏗ -11.8277 ▁ᏱᏥᏲ -11.8282 ᏤᏅ -11.8287 ᎫᏍᏛ -11.8288 ᎧᏘ -11.829 ᎵᏲᎩ -11.8296 ▁ᏗᏓᎴᎲᏍᎨ -11.83 ▁ᏴᏫᏍᎩᏂ -11.83 ᎨᏙᎰ -11.8303 ▁ᎤᎾᏦᏗ -11.8307 ᏏᏌᏅ -11.8309 ▁ᏓᏰᏥ -11.8312 ᎸᏍᏔᏅ -11.8312 ▁ᎠᏥᎪᏗ -11.8312 ᏣᎶᏁ -11.8314 ᎾᏉᎯ -11.8322 ᏣᏃᏁᎵ -11.8326 ▁ᏚᏂᏅ -11.8331 ᏓᎴᎲᏍᎩ -11.834 ᏓᏰᏅ -11.8341 ▁ᏙᏤ -11.8343 ▁ᏛᎭ -11.8354 ᏣᏅ -11.8356 ᏓᏅᎦᎸ -11.8365 ᎩᎸᏔᏁ -11.8369 ᏎᎪᎩ -11.837 ᏪᎸ -11.8372 ᎵᎴ -11.8372 ᏬᏂᎯᏍᏗᏱ -11.838 ᏆᏅᏔ -11.8381 ▁ᏂᎨᏥ -11.8382 ᏉᏑᎴ -11.8383 ▁ᎠᎾᏅ -11.8384 ᏨᎦ -11.8386 ▁ᎥᎩᏁᎸ -11.839 ▁ᏗᏕ -11.8391 ▁ᏥᏲ -11.8395 ᎳᏅᏓᏕᎸ -11.84 ▁ᏱᏚᏂᎸᏫᏍᏓᏁ -11.8402 ᎴᏫᏍᏗᏍᎨ -11.8403 ᎸᏃᏘᎭ -11.8404 ▁ᎥᎬᏩ -11.8411 ᎵᎮᎵᏥ -11.8412 ᏅᎦᎵᏍᎬᎢ -11.8412 ᎸᎥᏍᎩ -11.8414 ▁ᏥᏓᎾ -11.8419 ᏂᏟ -11.8423 ▁ᎤᎧᏙᏍ -11.8425 ᏔᎳᏬ -11.8428 ᏥᎩᏍᏗ -11.8431 ᏟᏌᏅᎩ -11.8434 ▁ᏱᏂᏣᏛ -11.8434 ▁ᎤᎵᎮᎵᏤᎸ -11.8441 ᏍᎦᏃᎸ -11.8441 ▁ᏧᏅᏙᏗ -11.8442 ▁ᎬᏆᏕ -11.8444 ▁ᎧᏁᎢᏍ -11.8448 ▁ᎠᎾᏛᎩ -11.8451 ᏛᎦᏁᏗᏱ -11.8457 ᎦᏢᏈ -11.8458 ▁ᏳᏝ -11.8458 ᎵᏍᏓᏴᎲᏍᎨᎢ -11.8463 ᎾᎴᏫᏍᏔᏁ -11.8469 ▁ᏗᏂᏲᎵᏉ -11.8472 ᏒᎦᎳ -11.8473 ᏝᎴ -11.8474 ᏥᏯᏬᎥ -11.8478 ▁ᎤᏬᏪᎳ -11.8483 ▁ᏙᏓᏥᏯ -11.8485 ▁ᎠᎩᎷᏤᏗ -11.8488 ▁ᎬᏯᏛᏁᎸ -11.8495 ᏗᏔᏍᏗᏱ -11.8497 ▁ᏧᏂᏁᏤ -11.8497 ▁ᎤᏛᏓᏍ -11.8499 ▁ᎤᏪᏙᎵᏨ -11.85 ᎬᏁᏗᏱ -11.8515 ᏓᎪᏩᏘᎭ -11.8515 ▁ᎡᏣᏚ -11.8518 ▁ᏙᏛᏃ -11.852 ▁ᏥᏅᏩᏍᏗ -11.8523 ᏯᏛᏗ -11.8524 ▁ᏗᎦᎨ -11.8525 ᏌᎾ -11.8526 ᎯᏓᏍᏗᏱ -11.8528 ᎾᏚᎵᏍᎨᏍᏗ -11.853 ᎵᏍᏔᏴᎲᏍᎬ -11.8537 ᏲᏍᏙᏗ -11.8546 ▁ᎤᏂᏯᎸ -11.855 ▁ᎤᏁᎳᏗᏍᏗ -11.855 ᎯᏍᏗᏍᎩ -11.8553 ᏂᏍᏚᎩ -11.8557 ᎩᎧᏏ -11.8558 ᏍᎩᏲᏎᎭ -11.8559 ▁ᎠᏓᎾᏏᏂ -11.8559 ▁ᎬᎩᏯ -11.8564 ᏩᏉ -11.8568 ▁ᎲᏂ -11.8574 ᏥᏰᎵᏒ -11.8574 ᎫᏱᏍᎨᏍᏗ -11.8577 ▁ᏕᎶ -11.858 ᏛᏁᎵᏍᎩ -11.8582 ᏍᎪᎸᏓᏏ -11.8587 ▁ᏂᎬᏅᎢ -11.8587 ᎾᏄᎪᎨᏍᏗ -11.8588 ᏍᎩᎦᏔᎭ -11.8593 ᏆᏂᏏ -11.8596 ᏃᏁᎸᎯ -11.8598 ᏥᏃᏍᏛ -11.8604 ᎬᏩᎪᎲ -11.8605 ▁ᏗᎦᏍᎩᎶ -11.8607 ᏕᏋᎯᏍᏗ -11.8608 ᎾᎿ -11.8613 ▁ᎦᎧᎲ -11.8615 ▁ᏚᏙᏪ -11.8623 ᏣᏲᎭ -11.8626 ▁ᏚᏙᎥᎩ -11.8632 ▁ᎠᎹᏉ -11.8632 ᎵᏎᎭ -11.8632 ᏓᏂᎸᎨᏍᏗ -11.8634 ᎦᏄᎪᎬᎢ -11.8637 ᎦᏥᏴ -11.864 ᏪᏙᎵᏨᎩ -11.8643 ᎾᏓᏅᏖᎸ -11.8649 ᎵᏨ -11.8653 ᎵᏍᏚᎶ -11.8664 ▁ᎤᎵᏠᏯᏍ -11.8665 ▁ᎦᏗᏔ -11.8668 ▁ᏚᏪᎧ -11.8669 ▁ᏄᏧᏈᏍ -11.8671 ▁ᏣᏛᏗ -11.8673 ▁ᎤᏂᏲᎰᏎ -11.8675 ᏫᎨᏙᎲ -11.8677 ▁ᎠᏥᏍᏚ -11.8682 ᎮᏍᎬᎾ -11.8684 ▁ᎠᏂᎾᎷᏍ -11.8686 ᎨᏓᎵ -11.8688 ▁ᎠᎩᏩᏛᏗ -11.87 ᎩᎡᎴ -11.87 ᏅᏎᎢ -11.8701 ▁ᏴᎦᏥᏍᎦ -11.8709 ▁ᎯᏩᏛ -11.8716 ▁ᏂᎬᏂᏏ -11.872 ▁ᎤᎵᏍᎪᎸᏙᏗ -11.8723 ᏘᏂᏙᎯ -11.8724 ▁ᏯᏂᏁ -11.8725 ▁ᏳᏴ -11.8725 ᏛᏓᎴᎲᏍᎩ -11.8734 ᏃᎭᏝ -11.8741 ▁ᎨᏣᏁᎢᏍᏗ -11.8742 ᎸᏉᏗᏍᎨᏍᏗ -11.8745 ▁ᎢᏥᎧᎵᎢ -11.8746 ᎵᏍᏓᏁᏗ -11.875 ▁ᏩᏂ -11.8752 ᎩᏠ -11.8756 ▁ᏚᎸᏫᏍᏓᏁ -11.8763 ▁ᏕᎦᏂᏱᏍ -11.8764 ᎾᏄᎪᎬ -11.8765 ᏣᏓᏱᎸ -11.8775 ▁ᎠᎾᎵᏥᏙᏂᏙ -11.8782 ᏄᎪᏫᏍᎦ -11.8782 ▁ᎲᎾ -11.8792 ᏓᏬᎠ -11.8811 ᏓᏁᎵ -11.8812 ᏓᏅᏓᏗᏍᏗᏱ -11.8812 ▁ᎨᏥᏰᎸ -11.8813 ᏄᎪᏤ -11.8817 ᏎᏛ -11.8833 ᏠᏯ -11.8836 ᎦᏙᏍᏕᎢ -11.884 ᏙᏢᏒᎢ -11.8843 ᎡᎾ -11.8854 ᏂᏚᏪᏎᎸᎩ -11.8857 ᎦᏛᎴᎯ -11.8862 ▁ᎨᏥᏁ -11.8863 ▁ᎦᏁᏟᏴ -11.8868 ᎾᏰᎯ -11.8871 ᏥᏓᏍᏗ -11.8877 ᎦᎸᏓ -11.8884 ᏰᎲᎾ -11.8888 ᏆᏕᏘᏴᎲ -11.8891 ᎦᏔᎲᎢ -11.8898 ᏟᏴᎭ -11.8902 ▁ᎤᏛᏂᏗ -11.8908 ▁ᏨᏛ -11.8908 ▁ᏧᏍᏆᏂᎪᏙᏗ -11.8911 ᏱᎵᏙᎭ -11.8919 ▁ᎠᎵᏍᎪ -11.8922 ᏕᏙᎭ -11.8923 ᏙᎨᏍᏗ -11.8924 ᏑᎵᎪᎬ -11.8928 ▁ᎤᎪᎮᏃ -11.8929 ▁ᎠᎩᏁᏤ -11.8931 ▁ᏄᏪᎡ -11.8947 ᏄᎮᎵ -11.8947 ▁ᎦᎾᏍ -11.8949 ᏂᏩᏛᎲ -11.8961 ▁ᎯᏃᏁᎸ -11.8972 ▁ᏥᏚᏄᎪ -11.8976 ᏂᏍᎪ -11.8977 ᏁᏙᎯ -11.8979 ᎧᎾᏅ -11.8989 ▁ᏓᏰᎵ -11.8995 ▁ᎠᏓᏙᎵᏍ -11.8998 ▁ᏓᏥᎶᏍ -11.9001 ᎷᎬᎾ -11.9011 ▁ᏚᏃᏴ -11.9013 ᎨᎮ -11.9015 ▁ᎢᏣᎫᏱᏍ -11.9021 ᎭᏉ -11.9023 ▁ᎠᎸᎯ -11.9024 ᏕᏃ -11.9033 ▁ᎢᎦᏓᏅᏓᏗᏍᏗ -11.9051 ᎦᏘᏰᎢ -11.9052 ᎵᏍᎪᎸᏓᏁᎸᎩ -11.9059 ᏛᏓᏍᏔᏂ -11.9065 ᎧᏁᏥ -11.9072 ▁ᏧᏳ -11.9075 ▁ᎡᎶᎯᏉ -11.9085 ▁ᏕᎬᎩ -11.9086 ᏂᏍᏘᏰᎬ -11.9089 ᏲᎩ -11.909 ᏣᏢ -11.9095 ▁ᏓᎬᏯ -11.9097 ᏯᏑᏰᏛ -11.9099 ▁ᎬᏴ -11.91 ▁ᎠᏔ -11.9108 ᎧᎿᏩᏛᏍᏗ -11.9117 ▁ᏛᎪ -11.9131 ᏓᎴᎲᏍᎨ -11.9134 ▁ᎯᏍᏕᎸᏗ -11.9135 ᏂᎭ -11.9137 ▁ᏣᏄᏬ -11.914 ▁ᎢᏤᏓᏍᏗ -11.9148 ▁ᎢᏤᏲ -11.9158 ᏖᏆᎶ -11.9173 ▁ᎠᏂᎶᏏᏙ -11.9174 ᏗᏒᏅ -11.9181 ᏁᎵᏙᎸ -11.9186 ᎦᏰᏃ -11.9191 ▁ᎤᏂᏁᎦ -11.9196 ᏂᏔᏲᎴ -11.9201 ▁ᏧᎵᏍᏚ -11.9206 ᎦᏃᏥ -11.9208 ▁ᎤᏂᏍᏘᏰ -11.9208 ▁ᎬᏔᏅ -11.9229 ᏥᏁᏤᎸᎯ -11.923 ▁ᏥᏂᏨ -11.9241 ▁ᏧᎫᏴ -11.9243 ᏤᎵᎦᏯ -11.9249 ᎧᎾᏩᏗᏙ -11.9249 ᎩᎡᏗ -11.925 ᎡᎮ -11.9251 ▁ᏕᏧᎪᏗᏍ -11.9258 ᏧᏣ -11.9258 ▁ᏴᏓᎦ -11.9259 ᎾᎦᏔᎲᏍᎬ -11.9263 ▁ᎨᎪ -11.9275 ᏦᏱ -11.9279 ᏓᏑᏴᎢ -11.9285 ᏞᏤ -11.9285 ▁ᎤᏍᏆᎸᏗ -11.9286 ᏓᎨᏛ -11.9287 pi -11.9288 ᏯᏖᏃ -11.9297 ᏎᎵᏙ -11.9298 ᏴᎭᎦ -11.9298 ▁ᏞᎦᏉ -11.9298 ᏣᏁᎵ -11.9298 ᏃᎯᏏ -11.9304 ᏛᏛᏅᎩ -11.9306 ▁ᏣᏕ -11.9317 ᏲᎦᏘ -11.9317 ᎾᏁᏍᎨᏗ -11.9325 ᏓᏥᎩᏏ -11.9327 ▁ᎠᎧᏔ -11.9332 ▁ᎤᏂᏲᎯᏍᏔ -11.9334 ᎵᏙᎮᏍᏗ -11.9334 ▁ᎬᏭᎯᏍᏗᏍ -11.9341 ᏥᏩᏛᏓ -11.9344 ᏨᏉ -11.9348 ▁ᎢᏥᎪᏩᏛ -11.9349 ▁ᏓᎦᏂ -11.9349 ▁ᏯᎦᎵ -11.9361 ᏗᏤᎾ -11.9362 ᎵᏗ -11.9366 ▁ᏥᎨᏣ -11.9369 ᎾᏯ -11.937 ᎵᎥᏂᎵ -11.9378 ᏓᏂᎸᎦ -11.9378 ᎷᎯᏍᏓᏁ -11.9381 ᏓᎴᏅᏓ -11.9398 ᏏᎾᏏ -11.9405 ᎡᎲ -11.941 ▁ᎤᏁᎳᏗᏍ -11.9411 ᎪᎸᏒ -11.9411 ▁ᏧᎾᏓᏁᎳ -11.9416 ᏂᏲ -11.9417 ▁ᎤᏓᎾ -11.9417 ᎾᏕᎪ -11.9419 ᎪᏎᎮᏍᏗ -11.942 ᎵᏂᎪᎯᏍᏓ -11.9427 ᏩᏘᏍᎬ -11.9432 ᏩᏁᎲ -11.9432 ▁ᏗᏆᏓ -11.9436 ᏑᎴᏗ -11.9438 ᏃᏴᎬ -11.9444 ▁ᏗᎦᎶᎯᏍᏗ -11.9448 ▁ᎠᎩᏁᎵᏍ -11.9453 ᏩᎯᏎᎴᎢ -11.9457 ▁ᏳᎾᏗᏅ -11.9458 ᎶᏂ -11.9462 ▁ᏓᏂᏅ -11.9466 ᎬᏩᏂ -11.9466 ᎶᏍᎨᏍᏗ -11.9467 ᏁᎵᏍᎨ -11.9473 ▁ᎤᏂᎶᎯᏍᏗ -11.9475 ᎦᏘᏰᏍᏗ -11.9475 ᏭᎾ -11.9484 ▁ᎠᏂᎦᏗ -11.9487 ᎦᏘᏯ -11.9488 ᏆᎵᏍᎪᎸᏓᏁ -11.9489 ▁ᎢᏥᎦᎵ -11.949 ▁ᏥᏯᏓᏅᏖᏍ -11.95 ᏩᏐ -11.9513 ▁ᎣᏆ -11.9517 ▁ᎤᎵᏏ -11.9524 ▁ᏧᏂᎸᏫᏍᏓᏁ -11.9525 ᎳᏑᎶ -11.9533 ᎴᎦ -11.9539 ᏬᎥᎢ -11.9543 ᎧᏅᎩ -11.9546 ▁ᎤᏒᎴ -11.9547 ▁ᎠᎦᏘᏃᎮ -11.9549 ᏥᎪᎥ -11.955 ▁ᎢᏣᏍᏗ -11.9555 ᎩᏂᏆᏘᎯ -11.9555 ᏴᏢ -11.9557 ᏑᏰᏒᎢ -11.9562 ᏣᏛᏁᎵ -11.9567 ᎾᏗᏅ -11.957 ᏓᏅᏒᎭ -11.9585 ᎦᎵᏱ -11.9585 ᏰᎸᎾᏁᏗ -11.9587 ᏓᏙᎵᏍᏓᏁᎮᏍᏗ -11.9589 ᏩᏕᎨ -11.9594 ▁ᏝᏰ -11.9598 ▁ᏳᏔᏲᏎ -11.9601 ᏒᏗᏍᎬ -11.9602 ᏦᎯᏳᎲᏍᎦ -11.9605 ▁ᏳᎾᏚᎵ -11.9606 ▁ᏱᏥᏲᏍ -11.9612 ᏕᏘᏴᏛ -11.9616 ▁ᎠᏂᏯᏫᏍ -11.9622 ᏗᏕᎬᎢ -11.9623 ᏯᎦᏔᏂ -11.963 ᏂᎰ -11.9637 ▁ᎠᎩᏁᏤᎸ -11.9641 ᎫᏏ -11.9642 ᏘᏃᎯᏏ -11.9647 ᏍᎦᏅᎪᎢ -11.9648 ▁ᎾᎦ -11.9649 ᏖᎳᏗ -11.9657 ᎩᎵᏲᎢᏍᏙᏗᏱ -11.9659 ▁ᏧᏃᎯᏳ -11.9666 ▁ᏫᏓᏯᏂᏍ -11.9672 ᏯᎩᏍᎬ -11.9673 ᏗᏫᏎᏗ -11.9675 ᏍᏛᏗᏍᎬᎢ -11.9675 ᏐᏯᏍᏗ -11.968 ᏓᏅᎡᏗᏱ -11.9687 ᏓᎤᎦ -11.9688 ᏐᎸ -11.969 ▁ᏧᏬᏎ -11.9692 ᎵᎪᏔᏅ -11.9695 ᎧᎳ -11.9695 ᏛᏔᏁ -11.9699 ᏂᎩᏏ -11.9701 ᏏᏃᎴ -11.9702 ᎭᎷᎨ -11.9704 ᏂᎪᎯᏍᏗᏍᎨᏍᏗ -11.9711 ᎵᏖᎸᎲᏍᎦ -11.972 ᏩᏛᎡᎮ -11.9721 ᏂᏯᏍᏗ -11.9722 ᏪᏍᏗᏱ -11.9726 ᎸᏅᎩ -11.9727 ▁ᎠᏂᎦᏔ -11.9731 ᎼᏏ -11.9734 ᏓᎩᏅ -11.9735 ᏓᏟᏴ -11.9737 ▁ᏥᎦᎳ -11.9743 ▁ᏳᏂᏁ -11.9744 ▁ᏧᎶ -11.9746 ᏪᎶ -11.975 ᎨᏳᏒᎾ -11.975 ᏁᎵᏍᎪ -11.9752 ᎵᏍᏔᏁᏗ -11.9752 ▁ᎤᎴᎾ -11.9753 ᎳᏃ -11.9757 ▁ᏱᎨᎦ -11.976 ᏠᏎ -11.9761 ▁ᎠᏂᎶᏍᎨ -11.9762 ▁ᏂᏕᎤᏍ -11.9764 ᏬᏯᏁᏎᎢ -11.9765 ▁ᎠᏂᏃᎯ -11.9767 ᏕᏯᏙᏓ -11.9769 ᏣᏅᏔ -11.977 ᏡᏗᎭ -11.9776 ▁ᎦᎾᏄᎪᏫᏎ -11.9778 ᏙᎻ -11.9779 ᏍᏆᏗᏍᏗ -11.9785 ▁ᏚᏛ -11.9789 ▁ᎠᎩᏯ -11.9791 ▁ᎢᎾᎯ -11.9792 ᎴᎲᏍᎬᎩ -11.9792 ▁ᎣᎦᎵᏍᏔᏴ -11.9793 ▁ᏕᎦᏥ -11.9794 ᎵᏍᏔᏴᎾ -11.9796 ᏗᏓᎴᎲᏍᎪᎢ -11.9803 ᎯᏍᏗᏍᎨᏍᏗ -11.9804 ▁ᏱᏣᏛᏓᏍᏔ -11.981 ᏈᏴ -11.9811 ᏂᎶᏒᎯ -11.9816 ᏗᏥᏂᏴ -11.9817 ᏤᎲᎾ -11.9818 ▁ᎤᎵᏍᏚ -11.9819 ᏄᏙᎬ -11.9819 ▁ᏂᏚᎾᏓ -11.982 ᎵᎪᎲ -11.9821 ▁ᎠᎿᏬ -11.9825 ▁ᏂᏙᏓ -11.9831 ᏄᏣ -11.9833 ᏂᎪᏩᏛ -11.9834 ᏘᏒᎴᎢ -11.9835 ᏲᏍᏙᏓᏁᎸᎩ -11.9858 ▁ᏚᎵᏍᏚ -11.986 ▁ᎤᎵᏍᏔᏁ -11.9862 ᏍᏆᏂᎪᏙᏗ -11.9864 ▁ᎤᏓᏦ -11.9869 ᎾᏗᎾ -11.9872 ᏱᏙ -11.9874 ᎪᎯᏳᏗᏱ -11.9876 ▁ᎥᎠᎩ -11.9877 ▁ᏅᏓᏳᏂ -11.9881 ▁ᏫᏚᏃᏁ -11.9883 ᏕᏯᏙᏗᎭ -11.9889 ᎮᎴᎢ -11.9889 ᏂᏩᏛᎯᏙ -11.9889 ᎶᏒᎯ -11.9889 ᏛᏓᏍᏔᏅ -11.9899 ᏲᏏᏍᎨᎢ -11.9907 ᏗᎦᏔᎭ -11.9914 ▁ᏘᏏ -11.9923 ᏖᏆᎶᎯ -11.9925 ᏍᏓᎥ -11.9927 ▁ᏗᏠᎯᏍ -11.9937 lo -11.9937 ▁ᎣᏍᏕᏙ -11.9939 ᏢᏔ -11.9942 ▁ᎠᎯᏯ -11.9943 ᎴᏉ -11.9947 ▁ᎠᏍᏆᏂᎪᏗᏍ -11.9953 ▁ᏣᏓᏅᎦᎸ -11.9956 ᏗᏍᎦᎳ -11.996 ᏯᎦᎿᏅ -11.9972 ▁ᏣᏁᏤ -11.9975 ᏄᎪᎬᎢ -11.9981 ᎠᏰᎸ -11.9985 ᎵᏍᏙ -11.9985 ᏣᏪᏐᎸᏍᏙᏗ -11.9992 ▁ᎬᏩᎾᏓ -11.9999 ▁ᏫᏥᏂ -12.0002 ▁ᏓᏳᎾ -12.0005 ᏂᏲᎸ -12.0006 ᏥᏳ -12.0007 ▁ᎢᏥᎶᏁ -12.0014 ▁ᎬᏩᎸᏉᏗ -12.0015 ▁ᏕᏣᎸ -12.0018 ▁ᎬᏩᏂᎩᎵᏲᎢᏍ -12.0019 ᏃᎩᏍᏔᏂ -12.0022 ᏂᏍᏙᏗᏱ -12.0028 ᏚᎾᏛ -12.0029 ᏌᎴᏓ -12.0033 ᎦᏘᏰ -12.0036 ᏥᎸᎯ -12.0044 ᏓᏔᎶᎯᏍᏗ -12.0045 ᏚᏓᎳ -12.0046 ᎪᏩᏘᏍᎪᎢ -12.0051 ᎮᎵᏍᎬᏉ -12.0052 ▁ᎠᎩᎵᏓᏍ -12.0067 ▁ᏣᏍᏕᎸ -12.0068 ᎯᎶᎥ -12.0071 ᎵᏏᏅᏓ -12.0079 ᏰᎸᏁ -12.0083 ᏯᏊ -12.0084 ▁ᏗᏥᏲᎯ -12.0084 ▁ᏗᎦᏔ -12.0086 ᏮᎩ -12.0091 ᎶᎸᎯ -12.0091 ᏣᏓᏑᏯ -12.0092 ▁ᏥᏃᎮ -12.0093 ▁ᏧᏂᎸᏉᏗ -12.0093 ᏂᏬᏂᎭ -12.0096 ▁ᎥᎬ -12.0098 ᏓᏒᏂ -12.01 ᎾᎴᏗ -12.0105 ᏩᏘᏍᎪ -12.0112 ▁ᏛᎤ -12.0118 ᏍᏕᎸᎡᏗᏱ -12.0118 ▁ᎤᎵᎪ -12.0121 ᏅᏖ -12.0122 ▁ᏳᏙ -12.0123 ▁ᎠᏢᏈᏍ -12.0126 ᏥᏲᎵᎭ -12.013 ▁ᏂᏍᎩᏴ -12.0132 ▁ᎡᏦᎢᏳ -12.0133 ▁ᎢᏕᏙ -12.0134 ▁ᏝᏉ -12.0141 ᎵᎥᏂᎸᎩ -12.0146 ▁ᏱᎪᎯ -12.0151 ᏩᏛᏔᏅ -12.0152 ᎩᏂᏴᏎᏍᏗ -12.0152 ▁ᏧᏢᏗ -12.0154 ᏟᏴᏗ -12.0157 ᏰᎸᏒᎩ -12.0157 ᏣᎦᎸᎮ -12.0161 ᏍᏚᎮᎢ -12.0163 ᏔᎲᎾ -12.0168 ᏩᏗᏒ -12.0176 ▁ᏙᏍᏗ -12.0178 ▁ᎠᎩᏍᏕᎸᏗ -12.0178 ᏣᎧᏂᏍᎬ -12.0184 ▁ᏚᎦᏔ -12.0184 ᎸᏫᏍᏓᏁᎭ -12.0186 ▁ᎤᏂᏍᎪᎸ -12.0189 ᏢᏗᏍᎨ -12.019 ▁ᎦᎳ -12.0192 ᏘᏍᎨ -12.0197 ▁ᎤᏩᏙᏗ -12.02 ▁ᏓᏥᏯᏛ -12.0204 ᎸᎲ -12.0205 ᏥᏍᎦᏅᏤᎸ -12.0218 ▁ᎢᏥᏯᏅ -12.0218 la -12.0221 ▁ᎤᏃᎯᎸ -12.0227 ᏲᎯᏎᎴᎢ -12.0227 ᏙᎯᏳᎮ -12.0229 ▁ᏥᎪᏩᏘ -12.0233 ᎾᏓᏛᏁᎮᏍᏗ -12.0236 ᏄᏂ -12.0237 ▁ᏯᏆᏓᏅᏔ -12.024 ▁ᎢᏳᎾᏛᏁ -12.024 ᏈᎵ -12.0244 ▁ᎠᎩᎷ -12.0247 ᏂᏲᎯᏍᏙᏗ -12.0247 ▁ᎤᏕᏘ -12.0251 ᎧᎿᏅᎩ -12.0258 ᏗᏙᎵᎩ -12.0264 ▁ᏫᏗᎨ -12.0264 ▁ᎠᎩᏍᎦ -12.0265 ᏓᏥᏩᏛᎯᏃ -12.0275 ▁ᏗᎷ -12.0277 ᎸᏅᎭ -12.0287 ᎦᏖᏃᎭ -12.0291 ▁ᏧᏓᏅᏖ -12.0292 ▁ᏧᏔ -12.0294 ᏍᎩᎳ -12.0298 ᏗᏅᏎ -12.0298 ▁ᏕᏥᎸᏫᏍᏓᏁ -12.0302 ▁ᏚᎧᏁ -12.0302 ᎩᎵᏲᎬᎢ -12.0306 ▁ᏓᏂᏁ -12.0306 ᏣᏅᏓᏗᏍ -12.0307 ▁ᎤᏃᎯ -12.0314 ▁ᎤᏏᎳᏛ -12.0314 ▁ᎠᏦ -12.0319 ᏓᏂᎸᎪᎢ -12.0322 ᎵᏍᎪᎸᏓᏁᎴ -12.033 ᎾᏙᎴᏆᏍᎬ -12.0331 ᏌᎳᏙᏗ -12.0331 ᎩᎸᏉᏔᏅ -12.0332 ▁ᎠᏔᏲᎯ -12.0335 ᏄᎪᏥ -12.0337 ᎵᎮᎵᏨᎯ -12.0338 ᏪᎵ -12.0338 ᏂᏗᏍᏗ -12.0338 ▁ᎤᏍᏆᎸᎡ -12.0339 ᎳᏍᏓᎸ -12.0341 ▁ᎤᎾᏕᎰ -12.0341 ▁ᎤᎴᏫᏍ -12.0342 ▁ᏕᎯᏯ -12.0342 ᏒᎸᎩ -12.0343 ᏘᏍᎪ -12.0345 ᎦᏘᏗ -12.0352 ▁ᎤᏥᏍᏓ -12.0356 ▁ᎠᎵᏖᎸᎮᏍ -12.0357 ▁ᎠᏁᏍᎨ -12.0361 ᏦᎯᏳᏅ -12.0363 ᎦᏌᏯᏍᏗ -12.0367 ᏂᎪᏩᏘᏍᎨᎢ -12.0367 ᏕᎲᎦ -12.0371 ▁ᎠᏑᏰᏍ -12.0375 ᎸᎪᏫᏍ -12.0378 ▁ᎣᎩᏍᏛᏗᏍ -12.0386 ▁ᎬᏩᏍᎦ -12.0387 ▁Ꮬ -12.0387 ▁ᏚᏂᏚ -12.039 ᎪᏩ -12.0396 ᏓᏪᎵᎩᏍ -12.0396 ᏲᎵᎦ -12.04 ᎤᏅᏎ -12.0401 ᏂᎩᏒᎩ -12.0401 ᏓᏅᎵᏰ -12.0405 ▁ᎠᎩᎾᏄᎪᏫᏍᏗ -12.0406 ▁ᎠᏂᎦᏖᏃ -12.0406 ᎯᏴᏁᎸ -12.0411 ▁ᎡᏥᏄᎪ -12.0412 ᎢᎦᏚᎩ -12.042 ▁ᏛᏛ -12.042 ▁ᎢᏤᏯᏔ -12.0421 ▁ᎾᏋᏁ -12.0423 ᏥᏲᎭ -12.0423 ᏓᏙᎵᏍᏓᏁᎯ -12.0424 ▁ᎠᏡᏗᏍ -12.0425 ᏩᏛᏛ -12.0425 ▁ᎣᎩᏍᏛᏗᏍᏗ -12.0426 ▁ᏓᎨᏥ -12.0428 ᎸᎡᎴ -12.043 ▁ᏥᎧᏁᎢᏍᏗ -12.0431 ▁ᎩᎦᎨᏃ -12.0438 ▁ᏓᏂᎳᏫ -12.0442 ᏓᏘᎾᎥ -12.0442 ᏍᏛᏗᏍᏗᏱ -12.0443 ᎠᏧ -12.0446 ᏥᏬᏁᏙᏗ -12.0449 ᏂᎨᏴ -12.045 ᏰᎵᏒ -12.045 ▁ᏕᎪᏢ -12.0455 ▁ᏥᏂᏣᎵᏍ -12.0456 ᏆᏙ -12.0456 ▁ᎢᏯᎦ -12.0463 ▁ᎢᏳᏅᏁ -12.0467 ᎦᏯᎷᏗ -12.0471 ᎶᏍᎪ -12.0473 ᏨᏍᏗ -12.0473 ᏁᎢᏍᏓ -12.0476 ▁ᏧᏭᏓᎴ -12.0477 ᏓᏍᎦᎨᏍᏗ -12.0486 ▁ᏕᏍᎩᏯ -12.0486 ▁ᎢᏯᏥ -12.0487 ▁ᎬᏩᏍᏕᎸᎯᏙ -12.0492 ᏂᏍᏔᏅ -12.0493 ᎷᏨᎯ -12.0493 ▁ᏧᎴᏗ -12.0498 ᏓᎾᏌᎲᏍᎩ -12.0499 ᎵᏍᏓᏴᎲᏍᎬᎢ -12.0511 ᏫᏒᏅ -12.0511 ᏴᏅ -12.0512 ---- -12.0513 ▁ᏯᏂᎸᏉ -12.0516 ᎦᏓᎡ -12.0517 ▁ᎤᎪᎯ -12.0526 ▁ᎠᎩᏍᎬ -12.0531 ᏙᎵᏍᏗᏱ -12.0532 ᏥᏍᎬ -12.0536 ᎦᏅᎾ -12.0541 ▁ᏩᏂᏴ -12.0547 ᏓᏛᎢ -12.0549 ▁ᎤᏏᏔᏕ -12.0551 ᏛᏗᏕᎬ -12.0552 ▁ᎬᏩᏯᏫ -12.0555 ▁ᏥᏫᎬ -12.0559 ▁ᎯᏰ -12.0559 ▁ᎤᏓᎪᎾᏛ -12.0562 ᎴᎲᏍᎦ -12.0568 ▁ᎠᏂᏃᎮᎵᏙ -12.0569 ᏍᏆᏓᏃ -12.0572 ᏳᏨ -12.0576 ᏑᎦᎸ -12.0583 ᏒᎦᎶᏗ -12.0586 ▁ᎤᎵᏖᎸᏂ -12.0587 ᎬᏩᏛᏗ -12.059 ᏓᏖᎸᎮᏍ -12.0593 ᏩᏘᏃ -12.0598 ▁ᎦᎸᏉᏗᏳᏍᎩᏂ -12.0603 ▁ᎢᏨᏯᎵᏥᏙᏁ -12.0603 ▁ᏓᎧᎿᏩᏗᏙᎮ -12.0605 ᏂᏆᏘᎲ -12.0608 ▁ᏩᏓ -12.0608 ᏌᏙᏰ -12.0613 ᎦᎵᏍᎨᎢ -12.0618 ▁ᎡᏣᎵᏍᎪᎸᏓᏁ -12.0619 ᏪᏎ -12.062 ᎯᏐ -12.0629 ᏁᎢᏍᏓᏁᎭ -12.0632 ᏍᏚᏟ -12.0638 ᎵᏂᎬᎬ -12.0641 ᏲᏍᏙᏓ -12.0642 ▁ᏳᏕᎶᎰ -12.0642 ▁ᏧᎾᏁᏍᎨ -12.0643 ᏯᏅᎮ -12.0646 ▁ᎬᏩᏂᎩ -12.0649 ᎱᏁ -12.065 ▁ᏚᎾᏕ -12.065 ᏄᎪᏫᏎ -12.0651 ▁ᎢᏨᏲᏪᎳᏁ -12.0652 ᏳᏩᏂ -12.0654 ▁ᎢᎦᏚᏓᎴᏍ -12.0655 ᏏᏔᏕᎢ -12.0656 ᎶᎩ -12.0656 ▁ᎢᏙᎯᏳᎲᏍ -12.0656 ᎦᎵᏍᏓᏗᏍᎩ -12.0658 ᏂᎨᏳᎯ -12.0658 ᏣᏛᎦᏁ -12.066 ▁ᏓᏗ -12.0662 ᎶᎢᏍᏗᏱ -12.0662 ▁ᎠᏛᎵ -12.0674 ᎵᏌᎳᏓᏅᎩ -12.0677 ᎦᏔᎲᏒᎩ -12.0679 ▁ᏥᎾᏆ -12.068 ᎠᏯᎨ -12.0685 ᎪᏢᎭ -12.0687 ᏂᎶᏍᎨᏍᏗ -12.0687 ▁ᎦᎵᏗ -12.0688 ᏋᏁᎸᎩ -12.0691 ᎵᎪᏁᎸᎩ -12.0697 ᎴᏒ -12.0699 ▁ᎤᏂᏲᎵ -12.0701 ▁ᏧᎷᏤ -12.0701 ᎶᏍᎦ -12.0702 ᏍᏔᏁᎲ -12.0702 ▁ᎠᎩᏫ -12.0709 ▁ᏥᏅᏒ -12.0712 ᏕᏍᏔ -12.0721 ᏓᏬᎢ -12.0724 ᏓᏍᏕᏓᎵᏴᏍᎩ -12.073 ᏜᏍᏛ -12.0731 ▁ᎤᏂᏁᏉ -12.0734 ▁ᎫᏔ -12.0734 ᏣᎷᏤᎵ -12.0735 ▁ᎾᏲ -12.0736 ▁ᏱᏂᎬᏩ -12.0736 ᏚᏂ -12.0737 ▁ᏧᏢ -12.0738 ᏘᏃᎮᏗᏱ -12.0741 ▁ᏣᏕᎲᏍ -12.0741 ▁ᎪᏒ -12.0742 ᏃᎮᎴᎢ -12.0742 ᎾᏕᏏ -12.0743 ᏓᎷᎸ -12.0743 ▁ᏓᎦᏢ -12.0747 ᏍᏆᎶ -12.0752 ▁ᏚᎾᏁᎶ -12.0752 ᏐᏢᏗᎭ -12.0753 ▁ᏄᎾᏓ -12.0757 ▁ᏧᏚᎢᏍᏓᏁ -12.0757 ▁ᎯᏅᏁ -12.0762 ▁ᎢᏣᏠᏯᏍ -12.0763 ᏬᏯ -12.0765 ᏍᎪᏎ -12.0766 ▁ᏗᎦᏄ -12.0768 ᏂᎰᎢ -12.0768 ᏥᏍᏕᎸᏗᏱ -12.077 ▁ᏗᏧᎪᏓ -12.0773 ᏂᏴᎩ -12.0773 ▁ᎢᎠᏓ -12.0774 ᏯᏓᏱ -12.0775 ᏯᎴ -12.0778 ᏕᎰᏍᎨᏍᏗ -12.0781 ᏅᏩᏅ -12.0784 ᎬᏩᏟ -12.0785 ᎩᎳᎾᎳ -12.0798 ᏅᏍᎪᎢ -12.08 ᏓᏣ -12.0803 ᎾᏝᎾᎥᎢ -12.0808 ▁ᎤᎾᎵᏍᏗ -12.0809 ▁ᏗᎾᏓᏅᏟᏉ -12.081 ▁ᎾᏂᏪ -12.0811 ▁ᏂᎨᏣ -12.0814 ᎱᏍᏕᏎᎸ -12.0816 ᎵᏂᎪᎯᏍᏔᏅ -12.0819 ᎵᏃᎮᏙᏗᏱ -12.0822 ▁ᎠᎩᎶ -12.0824 ᏅᏓᏗᏍᎪ -12.0825 ᏣᏓᏅᎦᎸᏛ -12.0825 ᎾᏁᎴ -12.0826 ᏥᏍᏕᎸ -12.0829 ᏍᏉᏟᎢ -12.0831 ᏓᎷᏯᏛ -12.0834 ᏑᏰᏎᎢ -12.0838 ᏃᏍᎩᏛ -12.0839 ᏥᏅᏁᏗ -12.0842 ▁ᎾᎾᏛᏁ -12.0844 ᏍᏆᎵᏎ -12.0844 ▁ᏛᎾᏓ -12.0848 ▁ᏕᎦᏥᏯ -12.0852 ▁ᎤᎾᏘᏲ -12.086 ᏉᏗᏍᎬ -12.086 ᏲᏤᎢ -12.0864 ▁ᎠᎵᎮᎵᏍ -12.0865 ᏑᎴᏍᏗ -12.0867 ▁ᎢᎫ -12.0873 ᏕᏍᏗᏍᎨᏍᏗ -12.0874 ▁ᏱᎦᏅ -12.0875 ▁ᎠᎾᎵᏍᏓᏴᏗᏍ -12.0882 ▁ᎤᎦᏌ -12.0883 ᎦᏔᎾᎢ -12.0885 ▁ᎢᏧᎳᎭᏉ -12.0886 ᏅᎢᏍᏗ -12.0891 ᏟᎶᎡᎸ -12.0893 ᏓᏰᎨᏍᏗ -12.0896 ᏏᏅᎯ -12.0898 ᏟᏍᏔᏁ -12.0898 ▁ᎤᏂᏄᎸ -12.09 ᏌᏛᎥᏍᎬ -12.0902 ᏗᏔᎲᎩ -12.0902 ᎬᏂᏍᏗ -12.0903 ᏍᎩᏓᏒᎢ -12.0905 ▁ᎡᏥᎾᏰᏍ -12.0905 ᏂᏒᎩ -12.0906 ᎦᎷᏯ -12.0912 ᏒᎴᎢ -12.0912 ᏁᎵᏒᎢ -12.0914 ▁ᏧᏥᏍ -12.0916 ᎵᏍᏗᏍᎨᏍᏗ -12.0917 ▁ᎠᏆᏛᎦ -12.0919 ▁ᏦᎸ -12.0921 ▁ᎤᎦᏛᎾ -12.0925 ᏂᎴᎢ -12.0927 ᎯᏍᏓᏁᎯ -12.093 ▁ᏗᏓᎾ -12.0933 ᏓᏙᎵᏍᏔᏁᎢ -12.0936 ▁ᏚᏓᏂᎸᏤ -12.0939 ▁ᎤᏂᏍᎦ -12.0939 ᏯᏛᏁᎵ -12.0945 ▁ᏍᎩᏯᏕᎶᏆ -12.0946 ᏅᏗᏍᏗ -12.095 ▁ᎨᎶ -12.0951 ᏲᏍᏙᏗᏱ -12.0951 ▁ᎠᏢᏆᏍ -12.0963 ᏃᏁᎸ -12.0966 ᏅᏯ -12.0967 ᏦᎯᏳᏒᎢ -12.0968 ▁ᎤᏂᏍᏆ -12.0972 ᏪᎭ -12.0974 ᏁᎳᎩᏉ -12.0977 ▁ᏗᎦᏂᏴ -12.0978 ▁ᏧᎬᏩ -12.098 ▁ᏳᏩᏛ -12.0982 ▁ᏓᎧᎿ -12.0986 ᏫᏚᏓᎢᏅ -12.0989 ᏯᏙᏤᎮᏍᏗ -12.0989 ᎦᏌᏬᎢ -12.0989 ᎦᏃᎸ -12.099 ᏲᏏᏌ -12.099 ᏄᎪᎢ -12.0991 ▁ᎤᏕᏒ -12.0994 ᏯᏍᏛᎾ -12.0995 ▁ᏱᏄᎾᏛᏁ -12.0996 ᏄᏍᏕᎢ -12.0999 ᏥᏎᎪᎩ -12.1 ▁ᏧᎾᎵᎪ -12.1 ᎴᏂᏙᎸᎢ -12.1002 ▁ᎠᎾᎵᏍᎪᎸᏗᏍ -12.1003 ▁ᎤᎾᏓᏛᏁ -12.1009 ᏬᏅ -12.1009 ᏚᎨ -12.101 ᏩᏕᏁᎴᎢ -12.1012 ᏁᏟᏴᎡᏗ -12.1013 ᏣᏯᏅ -12.1014 ▁ᎤᎸᏌ -12.1014 ▁ᏧᏓᏄ -12.1014 ▁ᎣᏥᏃᎮ -12.1015 ▁ᏓᏁᎶ -12.1015 ᏡᏓ -12.1016 ▁ᏚᏂᏣᎦ -12.1018 ᏓᏁᎶ -12.1019 ᏩᏂ -12.1021 ᏟᏍᏗᏍᎪᎢ -12.1021 ᏔᏍᎪᎢ -12.1025 ᏴᏈᏛ -12.1026 ᏯᏅᏓᏗᏍᎪ -12.1026 ᎬᏫᏳ -12.1028 ▁ᎤᏔᏕ -12.1034 ▁ᏱᏫᏨ -12.1034 ▁ᏚᏭᎪᏓᏁ -12.1035 ▁ᏣᎧᎵᎢ -12.1035 ▁ᎤᏍᏢᏂᏍ -12.1038 ᏬᎯᏳᏅ -12.1039 ▁ᎤᏁᎵᏤ -12.1041 ᎯᏳᏒᎾ -12.1043 ▁ᎤᏓᏠᏍ -12.1044 ▁ᎬᏬᏎ -12.1049 ᎾᏛᏁᏗᏱ -12.1049 ▁ᏚᏟᎶᏍᏓᏁᎴ -12.1049 ▁ᎤᏂᏲᎢ -12.1052 ᏥᎪᏗ -12.1053 ᏌᎳᏗ -12.1053 ▁ᎾᏅᏁ -12.1056 ᎾᏄᎪᏫ -12.1061 ᎣᏒ -12.1062 ▁ᏕᏍᏓ -12.1062 ᏍᏔᏁᎮ -12.1066 ᎱᏍᏕ -12.1066 ᏣᎬ -12.1067 ▁ᎤᏂᏄᎪᏤ -12.1068 ᏘᏃᎵ -12.1071 ▁ᎤᎾᏙᏓ -12.1073 ᏚᎳ -12.1076 ᏰᎵᏒᎩ -12.1077 ▁ᏣᏚᏓᎴ -12.1079 ▁ᎤᏍᏆᏂ -12.1079 ᏏᏙᎰ -12.1079 ▁ᏂᏍᏋᏁ -12.1079 ᏟᏴᎮᎢ -12.1081 ᏍᏆᏙᎾ -12.1082 ᏔᎩᏍᏗ -12.1082 ᎤᏍᏆᏂᎩ -12.1085 ▁ᏕᎫᎪᏗ -12.1086 ▁ᏂᏍᎩᏪᏎ -12.1088 ▁ᎱᏰ -12.1089 ▁ᎠᏂᏯᎡ -12.1089 ▁ᎠᏲᏞ -12.1092 ▁ᎦᏰᏥᏙ -12.1095 ▁ᏂᏓᏛ -12.1097 ᎧᎵᎵ -12.1099 ▁ᎤᎾᎴᎿᏫᏍ -12.1099 ᏁᏅᏒᎩ -12.11 ▁ᎤᎵᏍᏕᏍᏔ -12.1101 ▁ᎠᏓᏄᏖᏲ -12.1103 ᏣᏓᏂᎸᎩ -12.1107 ▁ᏚᎾᏄᎪᏫᏎ -12.1108 ▁ᎠᏂᏏᎾ -12.1109 ▁ᎠᏥᎸᏍᎩᏂ -12.1109 ᎬᏍᎪᎸᏁ -12.111 ᎤᏃᎴ -12.111 ▁ᎤᎾᏚᎵ -12.111 ᏍᏕᎸᏙᏓ -12.111 ᏍᏚᎸ -12.1111 ▁ᏚᎾᏚᏫᏍ -12.1111 ▁ᎠᎩᏲᎰ -12.1112 ▁ᎢᏓᎴᏂᏙ -12.1114 ▁ᏩᎫ -12.1119 ᏓᎦᏘᎴ -12.1123 ᎩᏂᏴᏗ -12.1127 ▁ᏥᏩᏂ -12.1127 ᏂᎬᏎᎲᎢ -12.1127 ▁ᎤᏕᏯᏙ -12.1128 ▁ᎠᎫᏬ -12.1129 ▁ᎤᎭᏲ -12.1129 ▁ᎢᏣᏓᏙᎵᏍ -12.1131 ᏍᎫᏕᏍᎬ -12.1133 ▁ᏗᏩᎾᎦᎳ -12.1133 ᎫᏓᎴᏏ -12.1133 ᎿᏩᏗᏒ -12.1134 ▁ᎡᏍᏓ -12.1136 ᎭᏲᎮ -12.1136 ᏖᎳᏕ -12.1136 ᏲᏎᎲᎩ -12.1137 ᏍᏗᏰᏕ -12.1137 ▁ᏓᎦᏛ -12.1138 ᏄᏍᏕ -12.1139 ▁ᏓᎵᏂᎪᎯᏍᏗᏍ -12.114 ᏑᎴᎥ -12.1141 ᎯᏍᏔᏁᎢ -12.1142 ᏍᎩᏓᏒ -12.1143 ▁ᏳᏣᏅᏓᏕ -12.1144 ▁ᎠᏂᎦᏘᏗᏍ -12.1146 ᎿᎷ -12.1147 ᏥᎨᏳᎭ -12.1148 ▁ᏥᏄᏛᏁ -12.1149 ᏛᏁᎸᎩ -12.1151 ᏍᎪᏂᎯ -12.1153 ᏂᎸᏫᏍᏓᏁᎸ -12.1157 ▁ᏱᏅᏩ -12.1157 ᏠᏏ -12.1158 ▁ᏗᏥᏯ -12.1159 ᏓᎦᎵᏍᏙᏔᏂ -12.116 ▁ᏥᏥᏯ -12.1162 ᏙᏩᏗᏍ -12.1163 ▁ᏱᏄᎾ -12.1164 ᎵᏍᎦᏍᏙᏔᏂ -12.1164 ▁ᎤᏃᎱ -12.1165 ▁ᏓᎩᎸᏫᏍᏓᏁ -12.1165 ▁ᏱᏭ -12.1166 ᎵᏍᏚᎸ -12.1166 ᏣᎢᏒ -12.1166 ▁ᎠᏂᏬᏂᏍᎨ -12.1167 ᎵᏍᏓᏴᏔᏂ -12.1167 ▁ᏴᎨᏣ -12.1169 ᏂᎨᎯᏙᎴᎢ -12.117 ▁ᏄᏛᎾ -12.1173 ᏓᏅᏓᏗᏍᏓ -12.1174 ᏦᏕ -12.1174 ᎩᏍᏕᎸᎯᏙᎸ -12.1178 ᏪᏎᎮᎢ -12.1179 ▁ᏩᏂᏴᎯ -12.1179 ᎬᏆᏛᎦᏁ -12.118 ᎪᎸᏛ -12.1181 ᎵᏙᎰ -12.1182 ▁ᎤᎾᏡ -12.1186 ᏃᎮᏢ -12.1187 ᏂᏪᏍᎨ -12.1187 ᎸᏉᏙ -12.1189 ▁ᏓᏕᏙ -12.119 ▁ᏂᏥᏯ -12.119 ᎪᏩᏛᎡᏗ -12.1191 ᏂᎨᏳ -12.1191 ᎬᏍᎦᎳ -12.1193 “ -12.1194 ▁ᏃᎦᎵᏍᏔ -12.1194 ᎦᏙᎨ -12.1194 ᏴᎡᎲ -12.1194 ᏓᏁᏣᏍᏚ -12.1195 ᎼᏂ -12.1195 ᏓᏛᏁᎲᎩ -12.1196 ᏍᏕᎸᎲ -12.1196 ᏴᎯᎲ -12.1198 ▁ᎤᏂᏲᎰ -12.1198 ᏅᎦᎸᏗ -12.1203 ᏛᏗᏍᎬ -12.1207 ᎫᎩ -12.1208 ᏫᏍᏗᏍᎩ -12.121 ▁ᏓᎾᏟ -12.1212 ▁ᏚᏂᏰ -12.1213 ▁ᏱᏂᏨ -12.1213 ᏩᎾᎦᎶ -12.1213 ▁ᏂᏍᏆᏛᏁ -12.1213 ᏣᏚᎵᏍᎨᏍᏗ -12.1214 ᏂᎾᏫ -12.1215 ᎭᏂᎸ -12.1215 ▁ᎢᏣᎨᏳ -12.1215 ▁ᎤᎦᎾᏬ -12.1215 ᏰᎸᏍᏗ -12.1215 ᏟᏂᎬᏁᎸ -12.1216 ▁ᏫᎦᎶᎯ -12.1216 ᎧᏁᏗᏱ -12.1216 ▁ᎤᎾᎴᏫᏍ -12.1217 ᎪᏓᏁᎯ -12.1218 ▁ᎠᏇᎷ -12.1219 ᏟᏴᎡ -12.1223 ᏧᏁᏍᎨᎮᎢ -12.1226 ᏚᏂᎳᏫᏤ -12.1226 ᎦᏄᎳᏥ -12.1226 ▁ᎠᏛᏅᎢᏍᏗ -12.1226 ᎣᎨᏅ -12.1227 ᏄᎸᎲ -12.1228 ᏧᏓᎴᏅ -12.1229 ᏘᏅᏍᏓ -12.1229 ᎤᏛᏎᎢ -12.1229 ᎭᎾᏬ -12.123 ᏘᏲᎸ -12.1232 ᎶᏁᎢ -12.1232 ᏓᏟᎶᏍᏗᏍᎬ -12.1233 ▁ᎥᏥᏯ -12.1233 ᎦᏕᎶᎣᏍ -12.1234 ᎾᎾᎵᏍᏗ -12.1234 ᎩᎪᎲᎯ -12.1235 ▁ᏗᏤᏍᏙ -12.1235 ᏂᎨᏐ -12.1235 ᎬᏬᏎᎸᎩ -12.1236 ᎿᎥ -12.1236 ᏓᏥᏯᏅᎯ -12.1237 ᎩᎸᏂ -12.1239 ᏣᎪᏍᏗ -12.124 ᏙᏯ -12.124 ᏓᏍᏔᏅᏅ -12.124 ᏍᎩᎾᎾ -12.1241 ᏓᏰᏙᎳᏛ -12.1241 ᎤᏁᎫ -12.1241 ᎩᎶᎯᏍᏗ -12.1241 ᏄᏩᏂᏌᏅ -12.1243 ᏕᎾᏓᎪᎲᏳ -12.1243 ▁ᏗᎦᎸᏫᏍ -12.1244 ▁ᎢᎤᎾᏨᏎ -12.1244 ▁ᏚᎧᎿᏩᏗᏙᎮ -12.1244 ▁ᎤᏅᏩᏁ -12.1244 ▁ᎨᏣᏡᏗᏍᎬ -12.1244 ▁ᏧᎩᏥᏍᎪ -12.1244 ▁ᎠᎾᎵᏅᏢ -12.1244 ▁ᏭᎩᎸᏁ -12.1244 ▁ᎤᏍᎦᏅᏥᏙᎸ -12.1244 ᎠᎾᏓᎪᎾᏗᏍᎬ -12.1244 ᏄᎾᏓᎴ -12.1244 ▁ᏧᏲᏏᏍᎨ -12.1245 ▁ᎤᏁᎢᏍᏓᏁᎸ -12.1245 ᏚᏳᎪᏛ -12.1245 ᏍᎪᏂᏍᏗ -12.1245 ▁ᏄᏍᏆᏂ -12.1245 ᏬᎯᏳᏁ -12.1245 ▁ᏂᏚᏛᏁᎴ -12.1246 ▁ᏙᏗᎧᏂᏍᎬ -12.1246 ᎵᏍᏓᏴᏁ -12.1246 ᎤᏂᎶᏒ -12.1246 ᎤᏁᎢᏍᏔᏅ -12.1246 ᎤᎾᏛᎪᏗᏱ -12.1246 ᎪᎯᏳᎲᏍᎪ -12.1247 ᏓᎴᏍᎬᎢ -12.1247 ▁ᎢᏥᎾᏰᏍᎬ -12.1248 ᏙᏓᎦᏥ -12.1248 ᎤᎵᏍᏙᏔᏅ -12.1248 ᏍᎩᏃᎯᏏ -12.1248 ▁ᎠᎩᎵᏲᎬ -12.125 ▁ᎠᎩᏯᎥ -12.125 ᎤᎵᏍᎨ -12.125 ᏓᏳᎶᏒ -12.1251 ᎤᎦᏃᏩ -12.1251 ᏅᏁᎭ -12.1251 ᎠᏂᎪᏕᏍᎩ -12.1251 ᏧᏓᎴᏁ -12.1251 ᎠᎦᏴᎵ -12.1251 ᎤᎵᏍᏆᎸᏗ -12.1251 ᏚᎾᏙᎥ -12.1252 ᏦᎴᏍᏗ -12.1252 ▁ᏫᎬᏩᏴᏔᏁ -12.1252 ᎠᏥᎸᏉᏗᏳ -12.1252 ▁ᏫᏓᎧᏁ -12.1252 ᏥᏍᏕᏥ -12.1252 ᎤᎾᏄᎪᏫᏎᎢ -12.1252 ᏗᎵᏍᏓᏴᏗᏱ -12.1252 ᎡᎳᏆᏗ -12.1252 ▁ᏧᏂᎳᏫ -12.1253 ᏕᎤᏙᎥ -12.1253 ᏓᏗᏍᏗᏱ -12.1253 ▁ᎤᏁᎳᏫᏎᎲ -12.1253 ▁ᏕᎦᎸᏫᏍᏓᏁᎸ -12.1253 ▁ᏥᏮᎦᏙ -12.1253 ▁ᏭᏩᎦᏘᏗᏒ -12.1253 ▁ᏄᎾᏛᎿᏕᎬ -12.1253 ▁ᎤᏘᏃᎴ -12.1253 ▁ᎠᎩᏐᏅ -12.1253 ▁ᏨᏓᎸ -12.1254 ᏄᎾᏛᏅ -12.1254 ᏠᎨᏏ -12.1254 ▁ᏥᏂᎨᏎ -12.1254 ᎢᎪᎯᏓ -12.1254 ᏣᏅᏓᏕ -12.1255 ▁ᎣᎩᎪᎲ -12.1255 ᏂᎪᎯᎸᎾ -12.1255 ▁ᎤᏗᏔᎮ -12.1255 ᎨᏥᏍᏕᎸᏗ -12.1255 ▁ᏅᏓᎬᏩᎾ -12.1256 ᎡᏆᎭᎻ -12.1256 ▁ᏕᏥᎧᎿᏩᏗᏒ -12.1256 ▁ᏚᏪᎧᏁ -12.1256 ▁ᎣᏥᏃᎮᏍᎬ -12.1256 ▁ᎤᏅᏓᏗᏗᏒ -12.1257 ▁ᏧᎾᏄᎪᏫᏎᎴ -12.1257 ᏧᎬᏩᎶᏗ -12.1257 ▁ᏱᎪᎵᎨ -12.1257 ▁ᏓᏓᏁᎳᏗᏒ -12.1257 ▁ᏗᏣᎸᏫ -12.1258 ▁ᏗᏆᏓᎴᏅ -12.1258 ᏂᎬᎾᏛ -12.1258 ▁ᎤᏛᎦᏍᏔᏁ -12.1258 ▁ᎠᎾᏓᏩᏛᎯᏙ -12.1258 ᎤᏁᎦ -12.1259 ▁ᎤᏟᏍᏔ -12.1259 ᏍᏛᏗᏍᎨ -12.1259 ᏃᏈᏏ -12.1259 ᏄᏂᏪᏎᎢ -12.1259 ᏡᎩ -12.126 ᏣᎵᏍᎪᎸᏓᏁᎸ -12.126 ᏅᎢᏍᏔᏅᎯ -12.126 ᏁᎫᏥᏛ -12.1261 ᏳᏩᏁᎦ -12.1261 ᎡᏒᎭ -12.1261 ᎦᏂᏴᏛ -12.1261 ᏩᎫ -12.1262 ᏧᏁᎬ -12.1262 ᏚᎳᏑᏝ -12.1262 ᏚᏍᏆᏃᏴ -12.1262 ᎦᏙᎬᎩ -12.1262 ᎤᎾᏣᏅ -12.1262 ᎶᏄᎮᏗ -12.1262 ▁ᏚᏠᏒᏎ -12.1263 ᏛᏅᎢᏍᏔᏁ -12.1263 ᏩᎶᏏ -12.1263 ▁ᎤᏓᏙᎵᏍᏓᏁᎴ -12.1263 ▁ᎤᏍᏆᏂᎪᏔᏁ -12.1263 ᎬᏬᎵ -12.1263 ▁ᏕᏣᏓᏘᎾᎥ -12.1263 ▁ᏓᏂᏬᏂᏍᎬ -12.1263 ᎠᏥᎸ -12.1264 ▁ᎤᏓᏙᎵᏣ -12.1264 ᎩᎨᏳᏒᎢ -12.1264 ᎮᎵᎠ -12.1264 ▁ᏧᏂᎦᏴᎵ -12.1264 ᏚᏬᏁᏔᏁᎢ -12.1264 ▁ᏂᏚᏅᏁᎴ -12.1265 ᏗᎪᏢ -12.1265 ᏲᏍᏔ -12.1265 ᎵᏥᏙᏁᎭ -12.1266 ᎤᏁᎬ -12.1266 ᏯᏘᏅᏍᏗ -12.1266 ᏍᎩᏯᏘᏃ -12.1266 ᎢᏳᏍᏘ -12.1267 ▁ᎩᎾᎵ -12.1267 ᏅᎥᏍᎩ -12.1267 ᏓᏴᎳᏔᏍ -12.1267 ▁ᏚᏚᎪᏔᏅ -12.1267 ᎾᏘᏲ -12.1268 ᎾᏫᏛᏛ -12.1268 ᎮᏂᎵ -12.1268 ▁ᎬᏩᏕᏁᎴ -12.1269 ▁ᎠᏂᎷᎨ -12.1269 ᎭᏗᎭ -12.1269 ᎤᏲᏨ -12.127 ᏗᎧᎿᏩᏗᏙᎯ -12.127 ▁ᏧᏆ -12.1271 ᎠᏓᏅᏙ -12.1272 ᏓᎵᏂᎪᎯᏍᏙᏗ -12.1272 ▁ᎾᏥᏪᏎᎴ -12.1272 ᏣᎬᏫᏳᎯ -12.1272 ▁ᎦᏅᏬ -12.1273 ▁ᎠᏥᏰᎸᎾᏁᎴ -12.1273 ᏂᏤᎷᎯ -12.1273 ᏍᎪᎸᏙᏗ -12.1273 ▁ᏣᎵᏂᎩ -12.1274 ▁ᎣᎦᏓ -12.1274 ᏧᏓᎴᏅᏓ -12.1274 ▁ᎬᏩᎪᎮ -12.1274 ᏏᎾᏌᏅ -12.1274 ▁ᎤᏂᏲᏠᎯᏎᎸ -12.1275 ▁ᏂᎦᏥᏪᏎᎸ -12.1275 ▁ᎾᏆᏛᎿᏕᎬ -12.1275 ᏗᎦᎶ -12.1275 ▁ᏲᏣ -12.1276 ▁ᎯᎦᏍᎦᏂ -12.1277 ▁ᏧᏍᏆᏂᎪ -12.1277 ᏦᏓᎸ -12.1277 ▁ᏫᎾᎩ -12.1277 ᏓᏙᎵᏣᏘ -12.1277 ᎠᎩᎪᏩᏛᏗᏱ -12.1278 ᎤᎵᎮᎵᏍᏗ -12.1278 ▁ᎤᏪᏙᎴ -12.1278 ᏍᎦᏅᏥᏙᎸᎢ -12.1278 ᎩᏍᏕᎸᎯᏓᏍᏗ -12.1279 ᏌᎳᏛ -12.1279 ᏖᎸᏂ -12.128 ᏥᎨᏳ -12.128 ᎾᏛᏁᎮ -12.128 ᏁᎥᎭ -12.1281 ᏩᏘᏍᎬᎾ -12.1281 ᏐᎴᏍᏗ -12.1281 ▁ᎠᎵᏍᏆᏗᏍᎬ -12.1281 ᏖᏍᎬ -12.1282 ▁ᎤᏁᏙᎴ -12.1282 ▁ᏗᎦᏙᎨ -12.1282 ᎹᏅ -12.1282 ▁ᏫᏗᎬᏩ -12.1282 ▁ᏣᏁᎫ -12.1282 ▁ᎤᏬᏂ -12.1282 ▁ᏓᏰᏙᎳ -12.1283 ▁ᏚᏍᏓᏩᏛᏎ -12.1283 ᎢᏧᎳᎭ -12.1283 ▁ᎤᏪᏙ -12.1283 ▁ᎤᎾᏚᎵᏍᎪ -12.1283 ᎵᏍᎦᏂᏍᏛ -12.1283 ▁ᏫᏓᏆᎧᎾᏅ -12.1283 ᎾᏓᎵᏁᎯᏕ -12.1283 ▁ᎤᏓᏏᏁ -12.1283 ᎦᎾᏏᏍᎩ -12.1284 ▁ᎤᏂᏍᎦᎴ -12.1285 ᎬᏬᎯᏳ -12.1285 ▁ᏭᏣᏅ -12.1285 ▁ᎡᎦᎫᏴ -12.1285 ᏔᎵᏁ -12.1285 ᏍᎩᎾᏛ -12.1285 ▁ᎤᎵᏖᎸ -12.1286 ᏍᎩᏙᎵᎩ -12.1286 ▁ᎤᏕᏁᎴ -12.1286 ▁ᎤᎾᏓᏙᎵᏍᏓᏁᎸ -12.1286 ᏓᏪᎳᎩᏍᎬ -12.1286 ▁ᏭᏂᏴᎴ -12.1287 ▁ᎤᏂᏍᏆᏂᎪᏒ -12.1287 ᏗᏥᏁᏟᏴ -12.1288 ▁ᎨᏥᏌ -12.1288 ▁ᎴᎻ -12.1288 ▁ᏄᎾᏛᏁ -12.1288 ᎦᎾᏬᏍᎬ -12.1288 ᏲᎱᏏᏕᎾ -12.1288 ᎵᏱᎵᏕ -12.1288 ▁ᎣᏤᎲ -12.1289 ▁ᏧᎾᏤ -12.1289 ▁ᎤᎾᎦᏎᏍᏛ -12.129 ▁ᏂᏚᎵᏍᏔᏅ -12.129 ᏄᏩᏁᎴ -12.1291 ▁ᏚᏬᏢᏅ -12.1291 ▁ᎭᏓᏅ -12.1291 ▁ᎿᏛ -12.1291 ▁ᏧᎾᎵᏂ -12.1291 ᎯᎪᏩᏛ -12.1291 ᏴᏓᏆᎶᏍᎬ -12.1292 ᏃᎯᎸᏍᏔ -12.1292 ▁ᎤᏗᎴᎲ -12.1292 ▁ᏄᎵᏂᎬ -12.1293 ▁ᎤᏁᏟᏴ -12.1293 ᎦᏰᎬᏍᏔ -12.1293 ᏅᏍᎦᎸ -12.1294 ▁ᎤᎩᏨ -12.1294 ᏨᏏᏰᏗ -12.1294 ▁ᎤᏬᏪᎳᏅ -12.1294 ᎵᏠᏯᏍᏕᏍᏗ -12.1294 ᏆᏓᏅᏖᎸ -12.1294 ᏗᎦᎶᏗ -12.1295 ᏴᏓᏆᎶᏍᎩ -12.1295 ᏩᏗᏎᎢ -12.1296 ▁ᎠᏩᏘᏍᎪ -12.1296 ᏎᎦᏨ -12.1296 ᏙᎴᏆᏍ -12.1297 ᏄᎯᏍᏗᏍᎬ -12.1297 ▁ᏧᏃᏪᎳᏅ -12.1298 ▁ᎤᎾᎳᏍᏓᎡ -12.1298 ▁ᏄᏂᏪ -12.1298 ᏂᏙᎴ -12.1298 ▁ᏥᎧᏁ -12.1298 ᏓᎾᏏᏂ -12.1298 ▁ᏥᏃᎪ -12.1299 ▁ᏧᏂᎷᏫᏍᏔᏁ -12.1299 ▁ᏓᎾᏕᏲᎲᏍ -12.1299 ▁ᎤᎵᏨᏓᏆ -12.1299 ᎵᏍᏙᏰᏗ -12.1299 ᎵᏏᎲᏎ -12.1299 ᎾᏂᎩᏒ -12.13 ▁ᎠᎦᎫᏴᎡ -12.13 ᎦᏟᎮ -12.13 ▁ᏚᏅᏩᏅ -12.13 ▁ᏚᎵᏦ -12.13 ᏓᏴᎳᏔᏅ -12.1301 ▁ᏧᎷᏫᏍᏔᏁ -12.1301 ▁ᎬᏩᏛᎦᏁᎸ -12.1301 ▁ᎢᏳᏕᏘᏴ -12.1301 ▁ᎤᎸᏓᎸᎥᏍ -12.1302 ▁ᎭᏙᎴᎰ -12.1302 ᏌᎺᎵ -12.1303 ▁ᎠᏂᏐᏢᎢᏍᏗᏍ -12.1303 ᎬᎭᎸᏛ -12.1304 ᎤᎵᎮᎵ -12.1304 ▁ᎧᏁᎨ -12.1304 ᎾᏕᎲᏍᎬ -12.1305 ▁ᎠᎾᎦ -12.1305 ▁ᎭᎵᎮᎵ -12.1305 ▁ᎢᎧᏁᏨ -12.1305 ▁ᎬᏩᏂᏴᎲ -12.1305 ᏬᏍᎩᎵ -12.1305 ᎵᏍᏗᏰᏓᏁ -12.1305 ᏅᏧᎵᏍᏙᏔᏅ -12.1305 ᏬᏥ -12.1306 ᏬᏁᏗᏍᎨ -12.1306 ▁ᎤᏘᏴ -12.1306 ▁ᏙᎩᎾᏍᎩᏓᏒ -12.1306 ▁ᎢᏳᏛᏁ -12.1306 ᎵᏃᎮᏗᏍᎬ -12.1306 ᏑᎵᎪᏨᎩ -12.1307 ᎵᏂᎪᎯᏍᏗ -12.1307 ▁ᏙᏦ -12.1307 ᏕᏯᏔᏁᎮ -12.1308 ᎠᎦᏛ -12.1308 ᎷᎯᏍᏔᏅ -12.1308 ▁ᏗᎦᎳᏫ -12.1309 ᏂᏄᎪᏤᎢ -12.131 ᏫᏌᏅ -12.131 ▁ᎬᏯᎵᏃᎮᏙᏗ -12.131 ᏲᏤᎾ -12.131 ᏗᎩᏯᏍᏗ -12.1311 ᏗᎴᎩ -12.1311 ▁ᎾᏥᏪᏎ -12.1311 ᏯᏆ -12.1311 ᏰᏌᏛᎢ -12.1312 ᎾᏄᎪᏥ -12.1312 ᎬᎭᎷᏯᏍ -12.1312 ▁ᎢᏥᎩᎵᏲᎢᏍᏗ -12.1313 ▁ᏱᏕᏣᏓ -12.1313 ▁ᎥᎤ -12.1313 ▁ᎢᏯᎩᏪᏍᏗ -12.1313 ▁ᏚᏃᏕ -12.1313 ▁ᏚᏂᎧᏅ -12.1314 ▁ᎤᎾᎵᏖᎸ -12.1314 ᎧᏍᎨᏂ -12.1314 ▁ᎻᏗᏂ -12.1315 ▁ᎢᎯᏴᏁᏗ -12.1315 ᏭᏂ -12.1315 ᏓᏅᏍᎨ -12.1316 ᎨᎳᏗ -12.1316 ▁ᏗᎪᏑᎴᏗ -12.1316 ᏛᏓᏍᏓᏁᎮ -12.1317 ᎷᏫᏍᏓᏁᏗ -12.1317 ▁ᏫᎨᏥᏯᏅ -12.1317 ▁ᎠᎵᏍᎦ -12.1317 ▁ᏕᎬᏩᎳᏫ -12.1317 ▁ᎣᎾᏫ -12.1317 ᎾᏓᏑᏰ -12.1317 ▁ᏗᏣᎵᏂᎪᎯᏍᏙᏗ -12.1318 ᏅᎵᏰᎥ -12.1318 ▁ᎤᎵᏍᏇᏚ -12.1319 ᎷᏤᎢ -12.1319 ▁ᏅᏓᎬᏩᏓᎴ -12.1319 ᏕᎭᏲᎲ -12.1319 ▁ᎡᎳᏆ -12.1319 ▁ᎠᎩᏍᏛᏗ -12.1319 ᏍᏆᎾᎳᏗᏍᏗ -12.132 ▁ᏚᏓᏓᎴ -12.132 ᎦᎵᏍᏗᏍᎪᎢ -12.132 ▁ᎥᏓᏗ -12.132 ▁ᎢᏣᏓᏅᏔᏩᏕ -12.132 ᏪᎵᏎᎢ -12.132 ᎪᏪᎵᎯ -12.132 ᏘᏅᏎ -12.132 ᏬᎯᏤ -12.1321 ▁ᎾᏯᏛᎡ -12.1321 ▁ᏫᏥᎷᏨ -12.1321 ᏂᏢᎩ -12.1321 ᏣᏪᏐᎸᏍᏓ -12.1321 ᏍᏓᏩᏕᏒᎭ -12.1322 ▁ᏄᏂᎬᏫᏳ -12.1322 ▁ᏚᏬᏢᏔ -12.1322 ᏍᏓᏲᏒ -12.1322 ▁ᏄᎬᏫ -12.1322 ᎦᏕᎣᏍᎦ -12.1323 ▁ᎤᏒᎦᎸ -12.1323 ᎴᏔᏅᎢ -12.1323 ᏕᏘᏴᏌᏗᏒ -12.1323 ▁ᏗᏣᏓᎴᏅ -12.1324 ▁ᎤᎵᏍᎪᎸᏔᏅ -12.1324 ᏭᎷᏤᎢ -12.1324 ▁ᎤᎾᏄᎪᏥ -12.1325 ᏍᏕᎯ -12.1325 ᏍᏉᏂᎪᏗ -12.1325 ᎷᎸᏗᏱ -12.1325 ▁ᎤᏣᎴᏍ -12.1326 ᏂᏙᎾᎡ -12.1326 ▁ᎤᏍᎦᎸ -12.1326 ᏕᏍᏗᏱ -12.1326 ᎦᎫᏴᏓᏁᏗ -12.1326 ▁ᎬᏆᏛᏁᏗ -12.1326 ᏖᎸᏂᎸ -12.1326 ᏕᎵᏙ -12.1327 ᏙᏣᏁ -12.1327 ▁ᎡᏥᏙᎵᏍᏗ -12.1327 ᎾᎥᏂ -12.1327 ᎦᎵᏂᎪᎯ -12.1328 ▁ᏧᏪᏙᎵᏍᏗ -12.1328 ▁ᎠᏆᎴᏂᏓᏍᏗ -12.1328 ᎦᏯᎷᎥᏍᎩ -12.1328 ▁ᎢᏧᏅᏁᏗ -12.1328 ᏅᎵᏰᏗ -12.1328 ▁ᎤᏬᏯᏁ -12.1329 ᏥᎵᏦ -12.1329 ▁ᎬᎩᏁᏉᏤ -12.1329 ▁ᎠᎫᎢᏍᏗᏍ -12.1329 ▁ᏙᏗᏍᎩᏯᏘ -12.1329 ᏌᎳᏓᏁᎢ -12.133 ▁ᏫᎨᏥᏲᎵ -12.133 ᏃᏍᎩᏒᎢ -12.133 ▁ᏕᎭᏕᏲᎲᏍ -12.1331 ᏔᎧᏅᎦ -12.1331 ▁ᏳᏣᏅ -12.1331 ▁ᎬᏬᎳᏕᏍ -12.1331 ▁ᎩᏯᏎ -12.1331 ▁ᎤᏂᏔᎳ -12.1331 ▁ᏭᏔᎷ -12.1331 ᎦᏪᎠ -12.1331 ▁ᎠᏓᎾᏫᏗ -12.1332 ▁ᏕᏥᎧᎿᏩᏗ -12.1332 ᏩᎯᏎᎸ -12.1332 ᎳᏁᎸ -12.1332 ▁ᏓᎭᏬᎢ -12.1332 ᎭᎷᏰ -12.1332 ᏍᏆᏗᏍᎬᎾ -12.1332 ᏍᏛᏗᏍᏔᏅ -12.1333 ᏣᎸᏫᏍᏓᏁᎮᏍᏗ -12.1333 ▁ᎡᎻᏂᏓ -12.1333 ᏥᏍᏓᏱᏕᎵ -12.1333 ▁ᎤᎦᎾᏏ -12.1333 ▁ᏁᏓᏂ -12.1333 ▁ᏕᏣᏓᏘᎾ -12.1333 ▁ᎢᏣᎢᏒ -12.1333 ᏞᏫᏒ -12.1334 ᏢᏆᏍᏙᏗ -12.1334 ᏟᏍᏕ -12.1334 ᏅᎫᏛᎢ -12.1334 ᏈᎷ -12.1334 ▁ᎠᏥᎤᏍᏕᏎᎸ -12.1334 ▁ᎯᏍᎫ -12.1334 ᏯᏘᏅᏍᏔ -12.1335 ᏚᏫᏍᏛ -12.1335 ▁ᏕᏣᎧᎿᏩᏗᏙ -12.1335 ▁ᎢᏯᎩᏳᏍ -12.1335 ᏚᏚ -12.1335 ▁ᎦᏕᎶ -12.1336 ᎵᏓᎩᏛ -12.1336 ᏔᏕᎩᏍᎨ -12.1336 ᎾᏫᏛᎯ -12.1336 ᏍᏓᏩᏕᎦ -12.1336 ᏪᏐᎸᏍᏔ -12.1336 ▁ᏙᏓᏲ -12.1336 ᏔᏍᎩᏍᎩ -12.1337 ▁ᏱᏗᏧᎪ -12.1337 ▁ᏗᎦᏅᏍᎨ -12.1337 ᏛᏛᎲᎦ -12.1337 ▁ᏥᏕᎪᏪ -12.1337 ᏢᏈᏍᏙᏗ -12.1337 ᎢᏓᏙᎴᎰ -12.1338 ᏕᏯᏙᏔᏂ -12.1338 hi -12.1338 ▁ᎠᏍᏆᏂᎪᎯ -12.1338 ▁ᏚᏟᏂᏆ -12.1338 ᏴᏌᏗᏒ -12.1338 ape -12.1338 ▁Ch -12.1338 ᏓᎿᏍᏆᎶᏍᏗ -12.1338 ᎦᎴᏯᏍᎪ -12.1338 ▁ᎠᏩᏂᎦᎳ -12.1338 ▁ᎨᏣᏔᏲᏎ -12.1338 ▁ᏂᏚᏬᏚ -12.1338 ▁ᏗᎦᎷᏫᏍᏔᏅᏗ -12.1338 ▁ᏚᎷᏆᏗᏅ -12.1338 ▁ᏚᏂᏄᏪᏒ -12.1338 ▁ᏫᏰᏣᏓᎢ -12.1338 ᎢᏗᎬᏤᎵᏛ -12.1338 ᎤᎸᏕᎦ -12.1338 ᎦᏌᏯᏍᏛᎾ -12.1338 ᎨᎪᏪᎶᏔᏅᎯ -12.1338 ᎩᎷᏫᏍᏔᏏ -12.1338 ᎭᎴᏫᏍᏔ -12.1338 ᎭᏓᎾᏫᏓ -12.1338 ᎳᏅᏓᏗᏏ -12.1338 ᎵᏂᎬᏁᎭ -12.1338 ᎵᏍᎫᎭᏴ -12.1338 ᎵᏍᏇᏔᏬ -12.1338 ᎵᏍᏕᎸᏙᏔᎾ -12.1338 ᎺᎵᎩᏌᏕᎩᏃ -12.1338 ᎾᏗᏔᎰᏅ -12.1338 ᎾᏙᎯᏳᎾᏁᏗ -12.1338 ᏂᎦᏥᏯᏛᏁᎰ -12.1338 ᏂᏅᎦᎴᎰᏅ -12.1338 ᏂᏆᏘᎵ -12.1338 ᏂᏗᏥᏲᏕᏍᏗᏍᎬᎾ -12.1338 ᏃᎯᎵᏣᏁ -12.1338 ᏅᏔᏗᏘᏍᎬ -12.1338 ᏍᏆᏂᎪᏎᎴ -12.1338 ᏑᏰᏍᎬ -12.1338 ᏓᎦᏕᎶᎣᏏ -12.1338 ᏓᏓᏏᎾᎲᏍᏙᏗ -12.1338 ᏓᏕᏘᏴᎮᎬ -12.1338 ᏔᏕᎦᏅᎩ -12.1338 ᏕᎦᎵᎩᎡᎮᎢ -12.1338 ᏖᎡᎯᏍᏗᏍᎨᎢ -12.1338 ᏙᏛᎪᏄᎶᏏ -12.1338 ᏚᏂᏍᏔᏲᎳ -12.1338 ᏣᎵᏂᎪᎯᏍᏔᏂ -12.1338 ᏥᏔᏲᎯᎭ -12.1338 ᏥᏥᏃᎯᏍᏓ -12.1338 ᏥᏮᏗᎦᎶᏏ -12.1338 ᏯᏓᏴᎡᎵ -12.1338 ᏲᎰᏎᎵ -12.1338 ▁Po -12.1338 ▁ᎠᎦᎫᏴᏓᏁᎮᏍᏗ -12.1338 ▁ᎠᎦᏔᏔᏅᎥᏍᎩ -12.1338 ▁ᎠᎧᏖᏃᎮ -12.1338 ▁ᎠᎾᏁᎳᏗᏍᎪᎢ -12.1338 ▁ᎠᎾᏁᏢᏔᏂᏒᎢ -12.1338 ▁ᎠᏂᎧᏔᎲ -12.1338 ▁ᎠᏂᎻᏗᏯᏂ -12.1338 ▁ᎠᏂᏃᏔᏂᏙᎯ -12.1338 ▁ᎠᏃᏢᏅᎥᏍᎬᎢ -12.1338 ▁ᎠᏆᏓᏙᎵᏍᏔᏅ -12.1338 ▁ᎠᏍᎪᏂᏗᏢ -12.1338 ▁ᎠᏍᎫᏕᏍᎪᎢ -12.1338 ▁ᎠᏒᎾᏘᎶᎥᎯ -12.1338 ▁ᎠᏓᏁᏤᎯ -12.1338 ▁ᎠᏛᏒᎥᏍᎩ -12.1338 ▁ᎠᏜᏩᏍᏗᏍᎨᏍᏗ -12.1338 ▁ᎠᏥᏍᏛᏗᏍᏗᏍᎬᎢ -12.1338 ▁ᎠᏯᏍᏜᏗᏍᎩ -12.1338 ▁ᎡᎵᎣᏈᎦ -12.1338 ▁ᎢᎤᏄᎪᏨ -12.1338 ▁ᎢᎦᎤᏘᏍᏛ -12.1338 ▁ᎢᏍᎩᏌᏛᎥᏍᎦ -12.1338 ▁ᎢᏍᏛᎨᏳᎢ -12.1338 ▁ᎢᏣᏚᎸᏗᏱ -12.1338 ▁ᎢᏣᏠᎾᏍᏛ -12.1338 ▁ᎢᏥᎾᏝᎾᎥ -12.1338 ▁ᎢᏨᏰᎳᏗᏙᎮᏍᏗ -12.1338 ▁ᎢᏨᏰᏯᏔᏅᎢ -12.1338 ▁ᎢᏯᏟᎶᎥᎯ -12.1338 ▁ᎢᏰᏣᏛᏁᏗ -12.1338 ▁ᎢᏲᏨᏴᏁᏗᏱ -12.1338 ▁ᎣᎦᎵᏥᏙᏗᏱ -12.1338 ▁ᎣᏁᏏᏉᎳ -12.1338 ▁ᎤᎦᏎᏍᏕᎢ -12.1338 ▁ᎤᎧᏲᏐᏅ -12.1338 ▁ᎤᎩᎳᏫᏎ -12.1338 ▁ᎤᎵᏍᏔᏴᏃᏁᏍᏗ -12.1338 ▁ᎤᎷᏦᏅᎯ -12.1338 ▁ᎤᎾᎦᎰᏍᏔᏅ -12.1338 ▁ᎤᎾᏙᎴᎨᏎ -12.1338 ▁ᎤᏁᏧᏥᏛ -12.1338 ▁ᎤᏂᎦᏘᏕᎢ -12.1338 ▁ᎤᏂᎪᎯᏙᎸᎯ -12.1338 ▁ᎤᏂᎪᏁᎶᎯᏌᏘ -12.1338 ▁ᎤᏂᏍᏈᏍᏓ -12.1338 ▁ᎤᏂᏐᏢᎢᏍᏔᏅ -12.1338 ▁ᎤᏂᏔᎳᏬᏎᎢ -12.1338 ▁ᎤᏃᎱᎦᏂᎸ -12.1338 ▁ᎤᏐᏢᎢᏍᏔᏅ -12.1338 ▁ᎤᏓᏑᏰᎢ -12.1338 ▁ᎤᏓᏥᏃᎯᏍᏔᏅ -12.1338 ▁ᎤᏓᏩᏗᏍᏛ -12.1338 ▁ᎤᏚᏓᏛᏗᏱ -12.1338 ▁ᎤᏟᏴᏍᎩᎸᎮ -12.1338 ▁ᎤᏧᏈᏍᏙᏒᎯ -12.1338 ▁ᎤᏪᏙᎵᎨᎢ -12.1338 ▁ᎨᏤᎳᏗᏙᎭ -12.1338 ▁ᎨᏥᏐᏠᎸᎢ -12.1338 ▁ᎬᏩᎦᏌᏯᏍᏕ -12.1338 ▁ᎬᏩᏂᎾᏄᎪᏫᏎᎮᏍᏗ -12.1338 ▁ᎬᏩᏍᏓᏩᏙᎯ -12.1338 ▁ᎭᏆᏥᏂ -12.1338 ▁ᎭᏓᏅᏗᏍᏗᏍᎨᏍᏗ -12.1338 ▁ᎯᏯᎵᏍᎦᏍᏙ -12.1338 ▁ᎻᎱᏤᎵ -12.1338 ▁ᎻᏏᎴᎻ -12.1338 ▁ᎻᏚᏎᎵ -12.1338 ▁ᏁᏣᏛᏁᏍᏗᏉ -12.1338 ▁ᏂᎦᏅᎦᎸᎲᎾ -12.1338 ▁ᏂᎦᏥᏪᏎᎭ -12.1338 ▁ᏂᎬᏫᏍᏕ -12.1338 ▁ᏂᏕᏣᏓᏛᏁᎮᏍᏗ -12.1338 ▁ᏂᏗᏣᏓᏕᎵᏎᎲᎾ -12.1338 ▁ᏂᏗᏣᏢᏫᏎᎲᎾ -12.1338 ▁ᏂᏗᏥᏁᎲᎾ -12.1338 ▁ᏂᏙᏣᎵᏍᏓᏁᎭ -12.1338 ▁ᏄᎾᎵᎮᎵᏣᏛᎾ -12.1338 ▁ᏄᏂᎷᎶᏤᎲᎾ -12.1338 ▁ᏅᎤᏪᏎᎸᎩ -12.1338 ▁ᏅᏋᏁᎵᏙᎸᎢ -12.1338 ▁ᏅᏓᎦᏪᏏ -12.1338 ▁ᏅᏓᏍᎩᏴᏁᎵ -12.1338 ▁ᏅᏓᏳᎾᎵᏍᏓᏁᎵ -12.1338 ▁ᏅᏓᏳᏍᏗᏗᏒᎩ -12.1338 ▁ᏅᏛᏂᏙᎾᎢ -12.1338 ▁ᏈᏗᏂᏱ -12.1338 ▁ᏍᎩᏯᎵᎡᎵᏍ -12.1338 ▁ᏍᎩᏯᏐᎥᎦ -12.1338 ▁ᏍᏆᏕᎲᏏ -12.1338 ▁ᏐᎵᎼᏅ -12.1338 ▁ᏓᎦᎳᏐᏫᏏ -12.1338 ▁ᏓᎧᎿᏩᏕᎨᏍᏗ -12.1338 ▁ᏓᎨᎯᏛᏔᏂ -12.1338 ▁ᏓᎩᏯᏪᏥᏙᎸ -12.1338 ▁ᏓᎬᏁᏉᎢ -12.1338 ▁ᏓᎬᏍᏓᏩᏗᏙᎵ -12.1338 ▁ᏓᎾᏕᏒᎲᏍᎨᎢ -12.1338 ▁ᏓᎾᏦᎭᏱᎮ -12.1338 ▁ᏓᎿᏬᏍᎨ -12.1338 ▁ᏓᏁᏙᎲᎩ -12.1338 ▁ᏓᏂᏂᎩᎸ -12.1338 ▁ᏓᏂᏥᏍᏔᎳᏍᎬ -12.1338 ▁ᏓᏍᎩᏯᏠᏥ -12.1338 ▁ᏓᏓᏘᏁᎲᎢ -12.1338 ▁ᏓᏥᎴᏐᏂ -12.1338 ▁ᏓᏥᏍᏔᏩᏕᏏ -12.1338 ▁ᏓᏥᏔᏲᎵ -12.1338 ▁ᏓᏨᏲᏎᎵ -12.1338 ▁ᏓᏲᏍᏓᏁᎳᏗ -12.1338 ▁ᏓᏳᎾᏚᎩᏒ -12.1338 ▁ᏕᎤᎸᏫᏍᏓᏏ -12.1338 ▁ᏕᎨᎦᏓᏂᎸᏨ -12.1338 ▁ᏕᎩᎾᏦᏒ -12.1338 ▁ᏕᎬᏒᎲᏍᎬᎢ -12.1338 ▁ᏕᎬᏩᏓᏂᎸᏨᎩ -12.1338 ▁ᏕᎬᏯᎫᏴᏓᏁᎮᏍᏗ -12.1338 ▁ᏕᎬᏯᏠᎢᏍᏓᏁᎸ -12.1338 ▁ᏕᎭᏅᏓᏗᏍᏗᏍᎨᏍᏗ -12.1338 ▁ᏕᎯᏯᏓᏂᎸᏨᎭ -12.1338 ▁ᏕᏍᏗᏂᏴᎮᏍᏗ -12.1338 ▁ᏕᏥᎦᎿᏩᏗᏒ -12.1338 ▁ᏗᎦᎵᏯᏅᎯᏛ -12.1338 ▁ᏗᎨᏥᏅᏍᏕᏎᎸᎯ -12.1338 ▁ᏗᎩᎾᏓᏛᏙᏗ -12.1338 ▁ᏗᎫᏩᎭᏄᏫ -12.1338 ▁ᏗᎬᏩᏕᏲᏗ -12.1338 ▁ᏗᏂᎳᏍᏓᎳᏩᏗᏒ -12.1338 ▁ᏗᏓᏙᏕᎯᎯ -12.1338 ▁ᏗᏗᏂᏃᎩᏍᎨᎢ -12.1338 ▁ᏗᏴᎦᎴᏴᏓ -12.1338 ▁ᏘᏰᎵᎯᏍᏓ -12.1338 ▁ᏙᎦᏓᏲᎵᎸ -12.1338 ▁ᏙᎵᏓᏍᏆ -12.1338 ▁ᏙᏓᎦᏥᏯᏟᎶᏍᏔᏂ -12.1338 ▁ᏙᏓᏦᎵᏍᏔᏂ -12.1338 ▁ᏙᏘᏴᏔᏂᎵ -12.1338 ▁ᏙᏛᎠᎴᎯᏌᏂ -12.1338 ▁ᏚᎵᏖᎸᏁ -12.1338 ▁ᏚᎾᏁᎳᏗᏙᎴ -12.1338 ▁ᏚᎾᏁᏍᏓᏝᎰᎢ -12.1338 ▁ᏚᎾᏐᏓᎸ -12.1338 ▁ᏚᎾᏗᏫᏍᏗᏍᎨ -12.1338 ▁ᏚᎾᏦᎭᏱᎸ -12.1338 ▁ᏚᏂᎵᏰᏗᏍᎬ -12.1338 ▁ᏚᏂᎷᏫᏍᏔᏁᎲ -12.1338 ▁ᏚᏌᏬᎴ -12.1338 ▁ᏚᏍᏆᎸᏔᏅ -12.1338 ▁ᏚᏗᎦᎴᏯᏍᏔᏅ -12.1338 ▁ᏚᏟᎷᏆᏗᏅᏎ -12.1338 ▁ᏚᏥᏍᏠᏨᎩ -12.1338 ▁ᏚᏩᏅᎦᏢ -12.1338 ▁ᏚᏮᎩᎶᎥᎩ -12.1338 ▁ᏚᏯᏍᏜᏛ -12.1338 ▁ᏛᎩᏯᏅᎡᎴᏍᏗ -12.1338 ▁ᏛᎵᏰᎢᎸᏍᏓ -12.1338 ▁ᏛᎾᎵᏛᏔᏂ -12.1338 ▁ᏛᏋᏍᎦᎸᏂ -12.1338 ▁ᏣᏥᏰᎸᎾᏁᎴᎢ -12.1338 ▁ᏥᎦᎧᎰᎢ -12.1338 ▁ᏥᎬᎩᎾᎸᏍᏔᏅᎩ -12.1338 ▁ᏥᏁᏣᏛᎩᏍᎪᎢ -12.1338 ▁ᏥᏂᏕᎯᏪᏎᎸᎩ -12.1338 ▁ᏥᏂᏚᏩᏁᎸ -12.1338 ▁ᏥᏍᎩᏯᏂᎩᏍᏓ -12.1338 ▁ᏥᏓᏅᎿᏗᏍᏙᏗ -12.1338 ▁ᏥᏓᏚᏫᏍᏗᎭ -12.1338 ▁ᏥᏚᏣᏃᏛᎩ -12.1338 ▁ᏥᏫᏗᎦᎸᏌᏓᏗᏍᎪᎢ -12.1338 ▁ᏥᏫᏨᏲᏪᎳᏁ -12.1338 ▁ᏥᏯᎵᏃᎮᏗᏍᎬᎢ -12.1338 ▁ᏥᏯᏓᏁᏟᏴᏍᏓᏁᎸ -12.1338 ▁ᏥᏯᏚᏣᎳᏅᎭ -12.1338 ▁ᏦᎦᏓᏂᎸᎢᏍᏗᏱ -12.1338 ▁ᏦᎩᏲᎱᎯᏍᏗᏱ -12.1338 ▁ᏦᏣᎵᏥᏙᏁᏗᏱ -12.1338 ▁ᏧᏃᏕᎯᎯ -12.1338 ▁ᏧᏣᏬᏓ -12.1338 ▁ᏨᏧᎶᏎᎢ -12.1338 ▁ᏩᏂᎶᏒᎭ -12.1338 ▁ᏩᏆᏘᏅᏍᏔᏅᎩ -12.1338 ▁ᏫᎤᏪᏅ -12.1338 ▁ᏫᎬᏩᏲᏥᏓᏍᏗ -12.1338 ▁ᏫᏂᏚᏩᏁᎴ -12.1338 ▁ᏫᏄᎾᏛᏁᎸᎩ -12.1338 ▁ᏫᏙᏛᎾᎴᏔᏂ -12.1338 ▁ᏫᏙᏛᎾᏓᎡᏏ -12.1338 ▁ᏫᏙᏛᏂᏲᎯᏎᎵ -12.1338 ▁ᏫᏚᎦᏔᎲᏍᏙᏗᏱ -12.1338 ▁ᏫᏱᏣᎧᎲᎦ -12.1338 ▁ᏭᏁᎳᏗᏓ -12.1338 ▁ᏭᏁᏙᎸᎯ -12.1338 ▁ᏭᏓᏬᎥᏍᏗ -12.1338 ▁ᏭᏗᏍᎦᏝᏁ -12.1338 ▁ᏭᏩᏯᎸᏥᎴ -12.1338 ▁ᏮᏓᏳᏎᎮᎵ -12.1338 ▁ᏮᏛᏂᎶᏏ -12.1338 ▁ᏯᎩᎷᏤᎴᏍᏗ -12.1338 ▁ᏯᎾᏓᏅᏍᎬᎾ -12.1338 ▁ᏯᏂᏍᏙᎰᎢ -12.1338 ▁ᏯᏉᎯᏳᎮ -12.1338 ▁ᏯᏕᏠᏆᏍᎦ -12.1338 ▁ᏱᏁᏨᎾᏕᎨᏍᏗ -12.1338 ▁ᏱᏅᏧᎵᏍᏙᏔᏁ -12.1338 ▁ᏱᏍᎩᎦᏔᎮᎢ -12.1338 ▁ᏱᏍᎩᏲᎢᏳᎲᏍᎦ -12.1338 ▁ᏱᏍᎩᏲᎢᏳᏁᎢ -12.1338 ▁ᏱᏍᏆᏓᏙᎵᏍᏓᏁᎸ -12.1338 ▁ᏱᏓᏂᏍᏓᏩᎦᎦ -12.1338 ▁ᏱᏕᏥᎤᏍᏕᏎᎸ -12.1338 ▁ᏱᏗᏥᏍᏆᏂᎪ -12.1338 ▁ᏱᏚᏂᎿᏍᏕᏠᎢ -12.1338 ▁ᏱᏣᏍᎦᏅᏤᏍᏗ -12.1338 ▁ᏱᏥᎪᏁᎶᏍᎨᏍᏗ -12.1338 ▁ᏱᏦᎯᏳᎭ -12.1338 ▁ᏱᏦᎯᏳᏁᏍᏗ -12.1338 ▁ᏳᎦᏌᏯᏍᏔᏁ -12.1338 ▁ᏳᏂᏬᏂᏌ -12.1338 ▁ᏴᎦᎬᏴᏕᎩ -12.1338 ▁ᏴᎬᏚᏓᎴᏍᏓ -12.1338 ▁ᎠᎩᎪᏩᏘᏍᎩ -12.1338 ▁ᎠᎵᏖᎸᏂᎮᎢ -12.1338 ▁ᎠᏂᏫᏄᏣ -12.1338 ▁ᎠᏂᏫᏅᎨᏌᏂ -12.1338 ▁ᎠᏅᏳᏤᎲ -12.1338 ▁ᎠᏫᏒᎥᏍᎩ -12.1338 ▁ᎤᏂᏲᎸᎢᏍᏔᏅ -12.1338 ▁ᎤᏄᎶᎸ -12.1338 ▁ᎬᏲᎵᏍᏔᏅ -12.1338 ▁ᏂᏛᏅᏁᎵ -12.1338 ▁ᏂᏥᏪᏍᎨᏍᏗ -12.1338 ▁ᏕᎤᏬᎡᎢ -12.1338 ▁ᏕᏥᎦᏌᏬᎢᎲᎢ -12.1338 ▁ᏛᏃᎵᏥ -12.1338 ▁ᏥᎿᏛᎦ -12.1338 ▁ᏫᏗᏍᎩᏯᏘᏅᏍᏔᏅᎩ -12.1338 ▁ᏯᎩᏲᏏᎭ -12.1338 ▁ᏳᏰᎵᏛᎾ -12.1338 ᎦᏙᎴᎰᏍᎦ -12.1338 ᎩᏰᎳᏗᏙᎭ -12.1338 ᏂᎨᎯᏙᎵ -12.1338 ᏌᏆᏞ -12.1338 ᏍᎫᏆ -12.1338 ᏥᎦᏖᏃᎮᏍᏗ -12.1338 ᏩᏒᏙᎣᏎ -12.1338 ᏴᏍᏓᎩᏍᎩ -12.1338 ▁ᎠᎦᎾᏬᏗᏍ -12.1338 ▁ᎠᏄᏖᏍᎨ -12.1338 ▁ᎠᏍᎪᎵᏰᏍᎨ -12.1338 ▁ᎠᏍᎫᏕᏍᎩ -12.1338 ▁ᎡᎵᎡᏌ -12.1338 ▁ᎡᏥᏔᏲᏎᎮᏍᏗ -12.1338 ▁ᎢᎡᏥᎪᎵᏰ -12.1338 ▁ᎢᎩᏲᎱᎯᏎᎸ -12.1338 ▁ᎢᏍᎩᏃᏁᎵᎸ -12.1338 ▁ᎢᏍᎩᏍᎦᎦ -12.1338 ▁ᎤᎦᏴᎳᏨ -12.1338 ▁ᎤᎵᎩᏳᏍ -12.1338 ▁ᎤᎵᏍᎩᏃᏘᏍ -12.1338 ▁ᎤᏂᏩᏒᎥᏍᎩ -12.1338 ▁ᎤᏍᏕᏅᏨ -12.1338 ▁ᎤᏖᎸᏅ -12.1338 ▁ᎥᏆᎨᏅᏛ -12.1338 ▁ᎬᎾᏰᏍᎬ -12.1338 ▁ᎬᏩᏂᏲᏥᏙᎸ -12.1338 ▁ᎬᏩᏕᎰᏔᏁᎢ -12.1338 ▁ᎭᏙᏯᏅᎯ -12.1338 ▁ᏂᎦᏥᏯᏛᏁᎸᎩ -12.1338 ▁ᏂᎻᎶᏗ -12.1338 ▁ᏂᏓᎦᏛᏁᎵ -12.1338 ▁ᏂᏙᏓᎬᏩ -12.1338 ▁ᏅᏧᏛᎿᏗᏎ -12.1338 ▁ᏓᏂᏄᎪᏫᏍ -12.1338 ▁ᏓᏳᏐᏅᏂ -12.1338 ▁ᏕᎨᎦᎴᏗ -12.1338 ▁ᏕᏣᏓᏡᏩᏗᏒ -12.1338 ▁ᏕᏥᎳᏫᏦᎯᎲ -12.1338 ▁ᏕᏥᏄᎪᏫᏍ -12.1338 ▁ᏗᎦᎦᏠᏱᎯ -12.1338 ▁ᏗᎩᎾᏢᏗᏱ -12.1338 ▁ᏚᎳᏑᏞ -12.1338 ▁ᏛᎵᏍᏓᏴᏂ -12.1338 ▁ᏣᏂᏙᎾᎠ -12.1338 ▁ᏣᏦᏔᏍᏔᏅ -12.1338 ▁ᏥᏕᎾᏦᎯ -12.1338 ▁ᏥᏚᏱᎶᎴᎢ -12.1338 ▁ᏧᏃᎸᏔᏂᏙᎰ -12.1338 ▁ᏧᏄᎪᏨ -12.1338 ▁ᏧᏚᎪᏙᏗ -12.1338 ▁ᏱᎦᎳᏍᏢ -12.1338 ▁ᏱᏪᏣᏓᎢᏅ -12.1338 ▁ᏳᏂᏚᎬᎾ -12.1338 ▁ᏴᎬᏓᏛᎦ -12.1338 ᎨᎩᎩᎵᏲᎢᏍᏗᏍᎬᎩ -12.1338 ᎭᏄᏭ -12.1338 ᎳᏫᏎᎵ -12.1338 ᏍᏚᎢᎡᏗᏱ -12.1338 ᏓᎾᏇᏍᎬ -12.1338 ᏚᎾᏓᏩᏛᏔᏁᎢ -12.1338 ᏚᏔᎲᎢ -12.1338 ᏣᎬᏩᎳᏅᎯ -12.1338 ᏬᏁᏔᏂ -12.1338 ᏴᎧᏁᎵ -12.1338 ▁ᎠᎦᏐᎠᏏᎯᎲ -12.1338 ▁ᎠᎵᏒᎢᏍᏙᏗ -12.1338 ▁ᎠᏅᏳᎬ -12.1338 ▁ᎢᏥᏑᎵᎪᎢ -12.1338 ▁ᎢᏨᎩᎵᏲᏤᎲ -12.1338 ▁ᎤᎾᏍᏕᏥ -12.1338 ▁ᎥᏥᏯᏓᏙᎵᏍᏓᏁᎸᎩ -12.1338 ▁ᎥᏥᏯᏛᎦᏁᎸᎩ -12.1338 ▁ᏂᏤᎵᏍᎬᎾ -12.1338 ▁ᏅᏗᎦᎵᏍᏗᏙᏗᏍ -12.1338 ▁ᏕᎦᏓᏬᏍᏗᎭ -12.1338 ▁ᏕᏥᏲᏍᎨᏍᏗ -12.1338 ▁ᏗᎨᏥᏐᏅᏅᎯ -12.1338 ▁ᏗᎩᎧᏁᏴᏗᏱ -12.1338 ▁ᏙᏨᏅᎢ -12.1338 ▁ᏚᏟᎶᏍᏔᏁᎴ -12.1338 ▁ᏛᎾᏓᏅᏓᏗ -12.1338 ▁ᏧᎾᎵᏂᎦᏂ -12.1338 ▁ᏧᏂᎾᏦᏴᏍᏗ -12.1338 ▁ᏩᏐᏝ -12.1338 ▁ᏫᏂᏚᏅ -12.1338 ▁ᏫᏓᏂᏅᎨᎢ -12.1338 ▁ᏫᏥᎾᏄᎪᎢᏍᏗᏱ -12.1338 ▁ᏭᏓᎩᏅᏒ -12.1338 ▁ᏭᏩᎾᏬ -12.1338 ▁ᏭᏬᎯᎶ -12.1338 ▁ᏮᎠᎦᏔᎲᏍᏓ -12.1338 ▁ᏳᎬᏫᏳᎭ -12.1338 ▁ᏳᏩᎨᏫ -12.1338 ᎠᏆᏘᏂᏙ -12.1338 ᎧᏙᏴ -12.1338 ᏐᏢᎢᏍᏔᏁᎢ -12.1338 ᏕᎭᏓᏟᏴᎲ -12.1338 ᏗᏍᎦᏅᎨᏍᏗ -12.1338 ᏯᏙᎴᎣᎯ -12.1338 ▁ᎠᎩᏂᏰᎸ -12.1338 ▁ᎠᏓᎿᏍᏆᎶᏍᏗᏍᎩ -12.1338 ▁ᎡᏣᏛᏓᏍᏓᏏ -12.1338 ▁ᎣᎦᏢᏆᏒ -12.1338 ▁ᎤᏍᏘᏰᏅᎯ -12.1338 ▁ᎬᏩᎦᏘᏗᏍᎩ -12.1338 ▁ᎭᏇᏅᏍᏗ -12.1338 ▁ᎯᎨᏳᎢ -12.1338 ▁ᏂᏓᎵᏍᏗᎭ -12.1338 ▁ᏃᏣᏛᏁᎲ -12.1338 ▁ᏐᏱᏁᎳ -12.1338 ▁ᏗᏅᏂᎦᎵᏍᏗ -12.1338 ▁ᏚᏛᏅᎢᏍᏓᏁᎸ -12.1338 ▁ᏥᏚᏭᏓ -12.1338 ▁ᏧᏂᏄᎪᏨ -12.1338 ▁ᏱᎨᎵᏍᎨ -12.1338 ▁ᏳᏂᎷᏤᎮ -12.1338 ▁ᎠᎩᎵᏲᎦ -12.1338 ▁ᎠᎵᏍᏛᏧᏍᏗ -12.1338 ▁ᎠᎵᏘᏍᎪᎢ -12.1338 ▁ᎠᏆᏂᎩᏍᏗᏱ -12.1338 ▁ᎤᎧᏲᏐᏁ -12.1338 ▁ᎤᎬᏍᏉᎡ -12.1338 ▁ᎤᎾᏰᏒᎯ -12.1338 ▁ᏂᏚᎳᏍᎬᎢ -12.1338 ▁ᏂᏚᎾᏓᏁᎶᏛᎾ -12.1338 ▁ᏣᎶᏅᎮᎭ -12.1338 ▁ᏥᏣᏣᎠ -12.1338 ▁ᏩᏍᏖᏍᏗ -12.1338 ▁ᏯᎪᏩᏘᏍᎨᎢ -12.1338 ▁ᏲᏍᏗᎦᏔᎭ -12.1338 ᎨᏥᎤᏍᏕᏎᎴᎢ -12.1338 ᎨᏦᏎᎰ -12.1338 ᏁᎶᎲᏍᎩ -12.1338 ᏚᏣᎪᏎ -12.1338 ᏩᏍᎦᎸᏁᎢ -12.1338 ᏫᏚᏘᏅᏍᏔᏅᎩ -12.1338 ᏬᏁᏗᏍᎩ -12.1338 ▁ᎠᎾᏓᏛᏍᎬᎢ -12.1338 ▁ᎠᏠᏄᎮᏛ -12.1338 ▁ᎢᎠᏥᏩᏛᎲᏃ -12.1338 ▁ᎣᏣᏁᏦᎥᏍ -12.1338 ▁ᎬᏇᏅᏍᏗ -12.1338 ▁ᎭᏓᏳᎦ -12.1338 ▁ᏂᏣᏓᎨᏒ -12.1338 ▁ᏕᎦᏃᏣᏢ -12.1338 ▁ᏕᎨᎫᎪᏓᏁ -12.1338 ▁ᏗᎦᎶᏐᎲᏍᎩ -12.1338 ▁ᏗᏍᏇᏲᎲᏍᎩ -12.1338 ▁ᏙᎩᏯᏪᏥᏙ -12.1338 ▁ᏙᏓᎦᏥᏳᎪᏓᏁᎵ -12.1338 ▁ᏙᏓᏨᏲᎯᏎᎵ -12.1338 ▁ᏚᏂᏍᏆᎸᏔ -12.1338 ▁ᏣᏁᏉᎥᎯ -12.1338 ▁ᏥᎬᏲᏎᎸᎩ -12.1338 ▁ᏥᏂᏓᎦᏔᎰᎢ -12.1338 ▁ᏥᏂᏚᏪᏎᎴᎢ -12.1338 ▁ᏦᏪᎳᏅᎩ -12.1338 ▁ᏧᏙᎨᏍᎩ -12.1338 ▁ᏫᏥᎧᏅᎯ -12.1338 ▁ᏳᎨᏅᏛ -12.1338 ᎩᏰᏲᏗ -12.1338 ᎭᏓᎾᏫᏗᏍ -12.1338 ᏂᏒᎳᏍᎨ -12.1338 ᏯᏠᎩᏉ -12.1338 ▁ᎠᎾᏙᏂᏍᎩ -12.1338 ▁ᎠᏓᏬᏍᎬ -12.1338 ▁ᎠᏓᏴᏍᏕᏍᎩ -12.1338 ▁ᎢᎨᏣᎵᏍᏓᏁᏗ -12.1338 ▁ᎣᏂᏏᎹ -12.1338 ▁ᎤᏓᏁᎪᏳᎲ -12.1338 ▁ᎦᎴᏫᏍᏗ -12.1338 ▁ᏓᎦᏁᏐ -12.1338 ▁ᏓᏇᎷᎬ -12.1338 ▁ᏕᎦᏟᎶᏍᏗᏍᎬ -12.1338 ▁ᏚᎾᏘᏔ -12.1338 ▁ᏣᏓᎦᏌ -12.1338 ▁ᏤᏧᎪᏓᏁ -12.1338 ▁ᏧᎦᏔᏘ -12.1338 ▁ᏧᏂᏨᏍᏙᏗ -12.1338 ᏓᎩᎧᎿᏩᏗᏙᎸ -12.1338 ▁ᎠᎩᏲᎮ -12.1338 ▁ᎠᏂᏫᏒᎥᏍᎩ -12.1338 ▁ᎠᏆᏘᏂᏙᎲᎩ -12.1338 ▁ᎤᏪᏩᏒᎢᏍᏗ -12.1338 ▁ᎨᏥᏍᎦᏂ -12.1338 ▁ᎪᏎᎰ -12.1338 ▁ᎯᏂᏌᏉ -12.1338 ▁ᏂᎨᎵᏍᎪ -12.1338 ▁ᏓᏂᎶᏒᎭ -12.1338 ▁ᏓᏥᎵᏬᏥ -12.1338 ▁ᏕᏓᏦᏍᎬᎢ -12.1338 ▁ᏗᏂᎳᏫᏦᎯᎯ -12.1338 ▁ᏚᏔᏪᏙᏁ -12.1338 ▁ᏛᎡᏥ -12.1338 ▁ᏣᏰᎸᏎᏍᏗ -12.1338 ▁ᎠᏉᏛᎸᎯ -12.1338 ▁ᎬᏕᏘᏱᎩ -12.1338 ▁ᏓᎬᏯᏎᎮᎵ -12.1338 ▁ᏧᏂᏂᏴᏓ -12.1338 ᏓᎿᏫ -12.1338 ᏗᏚᎳᏫᎢᏍᏗᏱ -12.1338 ᏚᎾᏄᏩᎡ -12.1338 ᏣᎴᏫᏍᏗᏍᎬ -12.1338 ▁ᎤᏁᏐᎠᎯᏍᏗ -12.1338 ▁ᏓᎾᎵᏃᎮᎵᏙᎲ -12.1338 ᎦᏒᎳᏍᎪ -12.1338 ᎬᏯᎵᎮᎵᏤᎭ -12.1338 ᏑᎴᏍᎪ -12.1338 ᏚᎦᎴᏅᏔᏁ -12.1338 ᏬᏎᎵ -12.1338 ▁ᎠᎩᏯᎣᏅ -12.1338 ▁ᎡᏧᎢᏍᏗ -12.1338 ▁ᎬᏩᎵᏠᏯᏍᏗ -12.1338 ▁ᏂᏨᏯᏛᏁᎸ -12.1338 ▁ᏅᏗᎦᏍᏙᏗᏍᎨ -12.1338 ▁ᏍᏆᏂᏏᎲᏏ -12.1338 ▁ᏕᏣᏓᎦᎵᏍᏓᏗᏍ -12.1338 ▁ᏘᎻᎾ -12.1338 ▁ᏥᏂᏥᏪᏍᎬᎩ -12.1338 ▁ᏫᎦᏓᎥ -12.1338 ▁ᏫᏥᎶᏒᎩ -12.1338 ▁ᏱᎫᏩᏂ -12.1338 ▁ᏱᏗᏦᎯᏳ -12.1338 ▁ᎠᎾᏍᎩᏓᏒᎥᏍ -12.1338 ▁ᎤᎦᎶᎬ -12.1338 ▁ᎤᏂᏃᏴᎵᏓ -12.1338 den -12.1338 ᏁᎷᎩᎡᎸ -12.1338 ᏓᏓᏚᎪᏓᏁᎲ -12.1338 ᏙᏧᏄᎪᏫᏎᎢ -12.1338 ▁Pri -12.1338 ▁ᎠᏲᏓᏒ -12.1338 ▁ᎣᎦᏕᏗᏱ -12.1338 ▁ᎣᏍᏗᏴᎩ -12.1338 ▁ᎦᎳᏍᏢ -12.1338 ▁ᎪᎯᏳᎲᏍᎬ -12.1338 ▁ᎬᏇᎸ -12.1338 ▁ᏌᏬᏛ -12.1338 ▁ᏓᏤᏲᏂ -12.1338 ▁ᏕᏛᏁᏍᏗ -12.1338 ▁ᏥᎯᏃᏁᎵ -12.1338 ▁ᏧᏍᏚᎢᎡᎸᎯ -12.1338 ▁ᏦᏌᏯ -12.1338 ▁ᏂᎬᎩᏲᎸᎾ -12.1338 ▁ᏅᏗᎠᏥᏪᏎ -12.1338 ▁ᏫᏙᏓᎨ -12.1338 ▁ᏰᏣᏛᏓ -12.1338 ᎠᎦᏍᎦᏃ -12.1338 ▁ᎤᏄᏓᎴᏍᎩ -12.1338 ▁ᎤᏕᎯᏴ -12.1338 ▁ᎫᎭᏟ -12.1338 ▁ᎺᎠ -12.1338 ▁ᏚᏰᏍᏛ -12.1338 ▁ᏥᏕᎨᏥ -12.1338 ▁ᏧᏍᏕᎸᏛ -12.1338 ᎦᎾᏬᏒ -12.1338 ▁ᎠᎾᎵᏖᎸᎲᏍᎬ -12.1338 ▁ᎠᏂᏴᏍᏗᏍᎩ -12.1338 ▁ᎠᏆᏂᏏᏗᏱ -12.1338 ▁ᎠᏥᏓᎦᎸᎢᏒᎯ -12.1338 ▁ᎤᎵᏍᎩᏃᎳ -12.1338 ▁ᏗᎦᎷᏥᏒ -12.1338 ▁ᏚᏁᏲᏁ -12.1338 ▁ᏥᎬᏩᏂᏛᏔᏁ -12.1338 ▁ᎡᏥᏩᏛᎲᎭ -12.1338 ᏓᏡᏫᏍᏕᎢ -12.1338 ᏗᏫᏎᎸᎩ -12.1338 ▁ᎠᏌᏱᎵ -12.1338 ▁ᎠᏣᎩᏍᎩ -12.1338 ▁ᎤᎦᎾᏅ -12.1338 ▁ᎤᏍᎩᏅᏕ -12.1338 ▁ᎧᏁᎮᏛ -12.1338 ▁ᏥᏂᏌᏅᎩ -12.1338 ▁ᏥᏙᏣᏠᎯ -12.1338 ▁ᏧᎨᏅᏛ -12.1338 ▁ᏧᏎᎪᎩᏍᏗᏱ -12.1338 ▁ᎠᏑᏯᎩᏛ -12.1338 ▁ᎡᏐᏏ -12.1338 ▁ᎢᏣᏢᏆᏍᎬ -12.1338 ▁ᎤᏂᏍᏔᏩᏛ -12.1338 ▁ᏕᏥᎦᏅᎩ -12.1338 ▁ᏚᏒᎦᎸᎩ -12.1338 ▁ᏥᏛᏦ -12.1338 ▁ᏫᎾᏴᎯ -12.1338 ▁ᏯᏗᏔᏍᎨ -12.1338 ▁ᏱᏂᎦᏪᎭ -12.1338 ▁ᏱᏨᏃᏁᎴᎢ -12.1338 ᏥᏍᏝ -12.1338 ▁ᎠᏆᏍᎪᏒᎯ -12.1338 ▁ᎦᏄᏓᎴᎩ -12.1338 ▁ᎬᏯᏛᎦᏁᎸ -12.1338 ▁ᎭᏛᏅᎭ -12.1338 ▁ᏗᏓᎢᏒᎢ -12.1338 ▁ᏙᏛᏂᏴᎳᏏ -12.1338 ▁ᏚᎾᏗᏍᏚ -12.1338 ▁ᏚᏂᎳᏫᏛ -12.1338 ▁ᏧᎵᏯᏏ -12.1338 ▁ᏫᎫᏩᏂᎶᎯᏍᏗ -12.1338 ▁ᏫᏱᏣᏴ -12.1338 ▁ᏱᎫᏩᎾ -12.1338 ▁ᎤᏐᏓᎸ -12.1338 ▁ᎤᏣᏃᏛᎩ -12.1338 ▁ᎦᏲᎩᏂ -12.1338 ▁ᏉᏗᏆ -12.1338 ▁ᏥᏂᏕᎤ -12.1338 ▁ᏥᏂᏨᏪᏏ -12.1338 ▁ᏳᎬᏩ -12.1338 ᏣᎵᎮᎵᎪᎢ -12.1339 ▁ᎠᎪᏩᏘᏍᎨᎢ -12.1339 ▁ᎠᎵᏍᏔᏴᎲᏍᎨ -12.1339 ▁ᎠᏂᎯᏲᎲᎢ -12.1339 ▁ᎢᏣᎵᏥᏙᎲᏍᎨᏍᏗ -12.1339 ▁ᎢᏳᏅᏂᏐᏗᏱ -12.1339 ▁ᎣᎦᏛᏅᎢᏍᏓᏁᎸ -12.1339 ▁ᎤᏗᏍᏚᏅ -12.1339 ▁ᎦᏃᎴᏍᎬ -12.1339 ▁ᏙᏓᏲᎩᎸᏫᏍᏓᏁ -12.1339 ▁ᏙᏗᏂᎧᏁᎢ -12.1339 ▁ᏚᎵᏥᏍ -12.1339 ▁ᏚᏓᎴᏅᏔᏅ -12.1339 ▁ᏩᏕᏗᏱ -12.1339 ▁ᏫᎬᏩᏘᏅᏍᏔᏅᎩ -12.1339 ▁ᏱᏂᎦᏔᎮ -12.1339 ▁ᎬᏩᎩᏨᏗ -12.1339 ᏏᏄᏴ -12.1339 ᏜᏅᏓᏕ -12.1339 ▁ᎠᏌᎻᏛ -12.1339 ▁ᎠᏍᏚᏟᏍᎩ -12.1339 ▁ᎾᏆᎵᏍᏓᏁᎵᏙᎲᎢ -12.1339 ▁ᏚᎾᏓᏟᏴᎲ -12.1339 ▁ᏱᏗᏓᏓᏂᎸᎦ -12.1339 ▁ᎢᎨᎬᎾᏕᎩ -12.1339 ▁ᎤᏃᎱᏲᎵ -12.1339 ▁ᏄᏚᏪᏎᎸᎩ -12.1339 ▁ᏟᏍᏆ -12.1339 ▁ᎬᏬᏱ -12.1339 ▁ᏩᏓᏬᏣ -12.1339 ▁ᏭᏟᏫᏛ -12.1339 ▁ᏳᎦᏙᎥᏎᎢ -12.1339 ▁ᏳᏚᏓᎴᏍᏔᏁ -12.1339 ᎵᏛᏗᏍᎬᎾ -12.1339 ▁ᎤᎦᏎᏍᏗᏕ -12.1339 ▁ᏙᏓᏣᏠᏏ -12.1339 ▁ᏛᏥᎸᏉᏔᏂ -12.1339 ▁ᏥᏕᎯᎾᏄᎪᏫᏎᎸ -12.1339 ▁ᎢᎦᏠᏯᏍᏔᏅ -12.1339 ▁ᎢᏣᏛᎩᏍᎩ -12.1339 ▁ᏕᎬᏩᎾᏍᏗᏍᎨᎢ -12.1339 ▁ᏫᏄᏪᏒᎩ -12.1339 ᏁᎢᏍᏓᏁᎲᎩ -12.1339 ᏍᏔᏩᏗᏎ -12.1339 ᏐᏯᎦ -12.1339 ▁ᎡᏍᏗᏍᏓᏩᏕᏒᎭ -12.1339 ▁ᎤᎸᏉᏔᏅᎯ -12.1339 ▁ᎤᏅᏩᏅᎩ -12.1339 ▁ᎤᏍᎫᏓᏛᎢ -12.1339 ▁ᎧᏴᏌᏛ -12.1339 ▁ᎬᏩᏓᏡᏫᏍᏔᏁᎢ -12.1339 ▁ᏕᎩᎾᏓᎨᏳᏒᎢ -12.1339 ▁ᏗᏥᎾᏌ -12.1339 ᏚᎵᏥᏙᏁᎴ -12.1339 ▁ᏏᏂᎹᏂ -12.1339 ▁ᏓᏂᎪᏩᏗᏍᎨ -12.1339 ▁ᏕᎦᎦᏎᏍ -12.1339 ▁ᏯᎩᏲᎱᏒ -12.1339 ▁ᏯᏆᎴᏂᏙᎸ -12.1339 ▁ᏱᎨᎨᎭ -12.1339 ▁ᎠᎦᏎᏍᏙᏗ -12.1339 ▁ᎠᎱᏃᎲ -12.1339 ▁ᎠᏗᏅᏗᏉ -12.1339 ▁ᎤᏴᏜ -12.1339 ▁ᏕᎰᏢᏔᏅᎭ -12.1339 ▁ᏚᎩᎸᏨ -12.1339 ▁ᏚᏴᏒᎩ -12.1339 ▁ᏥᏚᎸᏫᏍᏓᏁᎸ -12.1339 ▁ᏧᎵᏃᎯᏴᎯ -12.1339 ▁ᏨᎩᏅᏒ -12.1339 ᏧᎾᏄᎪᏨ -12.1339 ▁ᎠᎾᏠᎾᏍᏗᏍᎬ -12.1339 ▁ᎬᏉᎯᏳᎲᏍᎩ -12.1339 ▁ᏚᏪᏌᏍᏔᏁ -12.1339 ▁ᏰᏥᎦᏔᎮ -12.1339 ▁ᏂᏪᏒᎭ -12.1339 ᏥᎦᎿᏩᏗᏙ -12.1339 ▁ᎠᏂᏅᏜᎡᎢ -12.1339 ▁ᎠᏨᏏᏰᏍᎨ -12.1339 ▁ᎥᎶᏱ -12.1339 ▁ᏍᎪᏂᏴ -12.1339 ▁ᏖᏲᎲᏍᎩ -12.1339 ▁ᏗᏔᎸᎢ -12.1339 ▁ᏥᎦᎶᏒᏍᏗᎭ -12.1339 ▁ᏕᎪᏪᎵᏍ -12.1339 ▁ᏥᏂᏕᏣᏛᏁ -12.1339 ᏁᏉᎡᎵ -12.1339 ▁ᎠᏃᏚᎢᏍᏗᏍᎬ -12.1339 ▁ᎠᏣᎾᏉᎯ -12.1339 ▁ᏓᏥᏲᎤᏏ -12.1339 ▁ᏦᎩᏂᎸᏫᏍᏓᏁᎯ -12.1339 ▁ᏧᏪᏚᏁᎯ -12.1339 ᏓᏛᏳᏤ -12.1339 ▁ᎹᏓᏯᏃ -12.1339 ▁ᏕᎨᏥᏂᏌᎲ -12.1339 ▁ᏙᏥᏴᎬ -12.1339 ▁ᏯᏍᎦᎦ -12.1339 ▁ᎺᎮ -12.1339 ▁ᎤᏁᎳᏗᏙᎲ -12.1339 ▁ᏓᏰᏥᏄᎪᏫᏏ -12.1339 ▁ᏚᏂᏲᎱᏎᎢ -12.1339 ᎨᏲᎲᏍᎦ -12.1339 ▁ᏙᎩᏲᏐᏅ -12.1339 ▁ᏳᎯᏐᏓᏁ -12.1339 ᏓᎵᏁᎯᏗᏍ -12.1339 ᏲᎢᎱᎯ -12.1339 ▁ᎤᎵᏃᎮᏔᏁ -12.1339 ▁ᎤᏁᏌᏴ -12.1339 ▁ᏥᎡᏥ -12.1339 ▁ᏧᎪᎵᏰᏗᏱ -12.1339 ▁ᏘᏔᎴ -12.1339 ps -12.1339 ᏟᎶᏍᏓᏁᎭ -12.1339 ▁ᏣᎦᎵᏍᏓᏴᎾᏁᏗᏱ -12.1339 ▁ᏯᏂᏏᎾ -12.1339 ▁ᏱᏂᏣᏍᏕᏍᏗ -12.1339 ▁ᏱᏗᏥᏬᏂᎭ -12.1339 ▁ᏚᏗᏔᏍᏔᏅ -12.1339 ▁ᏫᏗᎦᏅᎪ -12.1339 ᎩᎾᏄᎪᏥᎸᎩ -12.1339 ᎩᏁᏟᏴᏏ -12.1339 ▁ᏓᏗᏍᏆᏂᎪᏔᏂ -12.1339 ▁ᏗᎩᎷᏫᏍᏔᏁᏗ -12.1339 ▁ᎠᎩᎵᏴ -12.1339 ▁ᎤᏂᎿᎸᏨ -12.1339 ▁ᏄᏙᎯᏳᏒ -12.1339 ▁ᏓᎦᏎᎵ -12.1339 ▁ᏥᏕᏥᏙᎦ -12.1339 ▁ᏓᏥᏔᏲᏎᎵ -12.1339 ▁ᏧᏃᏴᎪ -12.1339 ᏄᏲᎢᏯ -12.1339 ▁ᎤᎩᎵᏲᏤᎢ -12.1339 ▁ᎲᏁᏍᏗ -12.1339 ▁ᏂᎨᎬᏁᎮ -12.1339 ▁ᏂᎨᎬᏁᎲᎢ -12.1339 ▁ᏂᎬᏅᎪᏪᎳ -12.1339 ▁ᏓᎬᏩᏍᎪᏂᎵ -12.1339 ᏔᎸᎩᏍᏗ -12.1339 ▁ᎠᎫᎷᏤᏗ -12.1339 ▁ᏗᎬᏩᎾᏓᏁᏟᏴᎡᏗ -12.1339 ▁ᏧᏴᏣ -12.1339 ▁ᏬᎩᏴᎸ -12.1339 ▁ᏮᏓᏥᎷᏤᎵ -12.1339 ▁ᏱᏙᎸᏫᏍᏓᏁᎭ -12.1339 ▁ᎠᏣᏅᏙᏗ -12.1339 ▁ᎤᏪᏩᏒᏤ -12.1339 ▁ᏓᎾᏓᏱᎵᏙᎲ -12.1339 ▁ᏓᏢᎥᏍᎬ -12.1339 ▁ᏕᎨᎦᏨᏍᏔ -12.1339 ᎵᏃᎮᏗᏍᎨᎢ -12.1339 ▁ᎭᏓᏬᏣ -12.1339 ▁ᏥᎾᏰᏍᎦᏰᏃ -12.1339 ᎯᏲᎯᏍᏓ -12.1339 ᏌᎳᏙᏓ -12.1339 ▁ᎠᏆᏘᏂ -12.1339 ▁ᎠᏔᎸᎦᏒ -12.1339 ▁ᎢᎭᏛᏁᎯ -12.1339 ▁ᏗᏂᎧᏅᎢ -12.1339 ▁ᏫᏯᏴᎯᎮᏍᏗ -12.1339 ▁ᎤᎬᎭᏓ -12.1339 ▁ᏅᏓᎬᏩᏪᏎᎵ -12.1339 ▁ᏕᏨᏯᏬᏍᏗᎭ -12.1339 ᎨᏣᎫᏴᏏ -12.1339 ▁ᎢᏳᏩᏓᏗ -12.1339 ▁ᎧᎹᎹ -12.1339 ▁ᏗᎨᏥᏴᎩᏅᎯ -12.1339 ▁ᏙᏓᎦᏘᏃᎵ -12.1339 ▁ᏭᎾᎵᏃᎮ -12.1339 ᏧᏘᏍᏓᏁᏗᏱ -12.1339 ▁ᎢᏓᏓᏅᏓᏓ -12.1339 ▁ᎨᏣᏕᏯᏙᏗᏍᎩ -12.1339 ▁ᏂᏚᏁᎶᏛᎾ -12.1339 ▁ᏩᏆᏗᏅᏒ -12.1339 ▁ᏓᎬᎾᏄᎪᏫᏎᎵ -12.1339 ▁ᏗᏤᎵᏛ -12.1339 ᏘᏁᏏ -12.1339 ▁ᏙᏗᏫᏒᎢ -12.1339 ▁ᏱᏂᎦᏪᏍᎨ -12.1339 ᏊᎪᏓᏁᎸ -12.1339 ▁ᎤᏴᏍᏕᏍᎩ -12.1339 ▁ᏅᏓᏣᏄᎪᏫᏒᎯ -12.1339 ▁ᏳᏁᏤᎢ -12.1339 ▁ᏳᏣᎩᏒᎾ -12.1339 ▁ᏄᏍᏆᎸᎲᎾ -12.1339 ▁ᏥᎧᏃᎮᏍ -12.1339 ▁ᏱᏓᏲᎩᏍᏆᏂᎪᏔᏂ -12.1339 ▁ᏚᏯᏅᎡᎴᎢ -12.1339 ᎨᏬᏗ -12.1339 ▁ᎠᎦᏠᏯᏍᏔᏅᎩ -12.1339 ▁ᏦᏥᏚᎩ -12.1339 ᏠᏒᏒᎩ -12.1339 ᏯᏕᎥᏏ -12.1339 ▁ᎩᏃᎯᏳᏅ -12.1339 ▁ᏫᏘᏯᏅ -12.1339 ᎦᏙᏌᏗᏍᏛ -12.1339 ▁ᎣᏣᎵᏍᏔᏴᎲᏍᎬ -12.1339 ▁ᎦᏄᏲᎯ -12.1339 ▁ᏃᎦᏠᎾᏍᏛᎾ -12.1339 ▁ᏱᏚᏪᎵᏎ -12.1339 ▁ᏱᏩᎦᏓᎢᏅ -12.1339 ᏁᎩᏰᏍᏗ -12.1339 ▁ᎠᏄᏖᏍᎬ -12.1339 ▁ᎠᏥᏁᎢᏍᏔᏅ -12.1339 ▁ᎴᎠᎹ -12.1339 ▁ᏙᎩᎸᏫᏍᏓᏁᎸ -12.1339 ▁ᎤᎵᏍᎫᏪ -12.1339 ▁ᎷᏏᏯ -12.1339 ▁ᏓᏓᏌᎳᏗᏍ -12.1339 ▁ᏥᏯᏛᎦᏁᎸᎢ -12.1339 ▁ᏧᏪᎵᏏᏯ -12.1339 ▁ᏳᏩᏂᏍᏔᏅ -12.1339 ᏆᏦᎥ -12.1339 ▁ᎬᏩᎵᏍᏚ -12.1339 ▁ᏘᏍᏆᏂᎪᏓᏁᏗᏱ -12.1339 ▁ᏲᎩᏂᎭ -12.1339 ᏴᎩᏅᎯ -12.1339 ▁ᎦᎬᏩᏂᏐᏢ -12.1339 ▁ᏅᏓᏨᏰ -12.1339 ▁ᏕᏣᏓᏙᎯᏳ -12.1339 ▁ᏗᏍᏛᏗᏍᏗᏍᎩ -12.1339 ▁ᏚᏅᏂᎦᎸᎲᎩ -12.1339 ▁ᏦᎦᏓᏅᏙ -12.1339 ▁ᏯᎩᏍᏛᏓ -12.1339 ▁ᏚᎧᎿᏩᏗᏙᎲᎢ -12.1339 ᎧᎾᏬᎨ -12.1339 ᎾᏰᏏ -12.1339 ᏥᏂᎬᏎᎲ -12.1339 ▁ᏗᎫᏢᏔᏅᎯ -12.1339 ▁ᏗᏂᏅᏍᎨᏂ -12.1339 ▁ᏯᏆᏘᏝ -12.1339 ▁ᏴᏛᏂᎶᏐᏂ -12.1339 ▁ᏌᎨᎢᏳ -12.1339 ᎵᎪᏁᎲᎾ -12.1339 ▁ᎠᎾᏓᏎᎪᎩᏍᎬᎩ -12.1339 ▁ᎤᏓᏴᎳᏔᏁ -12.1339 ▁ᎿᏛᏁᎮᏍᏗ -12.1339 ▁ᏗᏠᏗ -12.1339 ▁ᎤᏦᎢᏎᏗ -12.1339 ▁ᎤᏲᏞᏒᎢ -12.1339 ᎩᎧᎿᏩᏗᏙᎰᎢ -12.1339 ▁ᏓᏆᏓᏘᎾᎥ -12.1339 ᏂᎭᎷᎥᏍ -12.1339 ▁ᏗᏦᏑᎵ -12.1339 ▁ᏥᎦᎶᎨᏎᎢ -12.1339 ▁ᏱᎬᏩᏲᎱᏎ -12.1339 ᎬᏩᎳᏁ -12.1339 ᎾᎵᏍᎪᎸᏗᏍᎨᎢ -12.1339 ▁ᎤᏓᏅᏓᏛᎢ -12.1339 ▁ᏗᎾᎦᎴᏅᏗᏍᎩ -12.1339 ▁ᏚᎾᏓᏠᎲ -12.1339 ▁ᏚᎿᎸᏤ -12.1339 ▁ᏠᏗᏯ -12.1339 ▁ᎠᏘᏍᏙᏗ -12.1339 ▁ᎤᏅᏓᏒ -12.1339 ▁ᏅᏓᏳᎾᏨ -12.1339 ▁ᏚᏭᏓᎴᏒ -12.1339 ▁ᏱᏅᎬᏛᎦ -12.1339 ᏨᏏᏰᏍᎬ -12.1339 ▁ᎢᏣᏅᏨ -12.1339 ▁ᎤᏂᏁᏉᏨᎯ -12.1339 ▁ᏥᏕᎦᎶᏄᎮ -12.1339 ▁ᏃᏥᏪᎭ -12.1339 ▁ᏭᎳᎩᏎ -12.1339 ▁ᏂᎦᎵᏍᏘᏍᎬ -12.1339 ▁ᏧᏓᎴᎾᎢ -12.1339 ▁ᎤᏂᏄᎯ -12.1339 ▁ᎻᏈᏌ -12.1339 ▁ᎠᎾᏔᏍᎩ -12.1339 ▁ᎬᏛᏍᎨᏍᏗ -12.1339 ▁ᏓᎧᏂᏍᎬᎢ -12.1339 ▁ᏕᎬᎦᏆ -12.1339 ᏓᏳᏓᎴᏅᎯ -12.1339 ▁ᏚᏰᎸᏒ -12.1339 ᏄᎶᎴᎢ -12.1339 ᏓᏟᏃᎮᏗᏍᎨ -12.1339 ▁ᎢᏓᎵᏍᏓᏴᏗᏍᎬᎢ -12.1339 ▁ᎿᎵᏍᏓ -12.1339 ▁ᏂᏚᎸᏫᏍᏓᏁ -12.1339 ▁ᏕᎨᏥᏲᎯᏏ -12.1339 ▁ᏧᏟᎷᏆ -12.1339 ᏣᏪᎢᏍᏔ -12.1339 ▁ᎯᏁᎨᏍᏗ -12.1339 ▁ᎠᏂᏬᏂᏍᎪ -12.1339 ▁ᎡᎾᎢᏓᏍᏗᏱ -12.1339 ▁ᏱᏅᎦᎦᏛᎦ -12.1339 ▁ᏳᏙᎯᏳᎲᎾ -12.1339 ᏤᏬᏤ -12.1339 ▁ᎤᎾᎦᏎᏍᏕᎢ -12.1339 ▁ᏭᏓᏬᎡ -12.1339 ᏁᏢᏗᎭ -12.1339 ▁ᎤᏂᏍᏆᏂᎪᏕ -12.1339 ▁ᎥᎩᏴᎩᏅᎯ -12.1339 ᎦᏗᏙᎯ -12.1339 ▁ᏙᏛᏕᏯᏙᏔᏂ -12.1339 ▁ᏅᏓᏳᏪᏅ -12.1339 ▁ᎠᏓᏁᏣᏍ -12.1339 ▁ᎠᎾᏙᎩᏯᏍ -12.1339 ▁ᏥᏨᏲᏪᎳᏁᎭ -12.1339 ᏙᏑᎴᎥᎩ -12.1339 ▁ᏓᎫᎪᏓᏁ -12.1339 ▁ᏦᎩᎸᏫᏍᏓᏁᎸᎯ -12.1339 ᎯᏎᎵ -12.1339 ▁ᏗᎬᏅᏃᏛ -12.1339 ▁ᏓᎦᏥᏄᎪᏫᏏ -12.1339 ▁ᏕᎬᏩᏂᏂᏴ -12.1339 ▁ᏕᎬᏩᏲᏒ -12.1339 ▁ᎧᏳᎦ -12.1339 ᏓᏚᏓᏔ -12.1339 ▁ᎠᏂᏲᎯᎮᏍᏗ -12.1339 ▁ᎤᏓᏠᏍᏕᎢ -12.1339 ▁ᎤᏩᏓᎷᎦ -12.1339 ▁ᏂᏄᎾ -12.1339 ▁ᏓᏂᎾᏄᎪᏫᏍᎪᎢ -12.1339 ▁ᎢᎯᎩᎵᏲ -12.134 ▁ᎤᏂᏁᎩᎸᏗ -12.134 ᏃᏨᏁᎭ -12.134 ▁ᏅᏗᎬᏩ -12.134 ▁ᏳᎾᏓᏅᏔ -12.134 ▁ᏕᎯᏍᏓᏩᏗᏎᏍᏗ -12.134 ▁ᏗᏓᏱᎵᏓᏍᏗᏱ -12.134 ▁ᎤᏯᎣᎢ -12.134 ▁ᎤᏱᎸᏒᎩ -12.134 ▁ᏕᎦᎶᏄᎮ -12.134 ▁ᎤᎨᎲ -12.134 ▁ᏳᏜᏅᏕ -12.134 ash -12.134 ▁ᎠᎦᏔᎾᎥᎢ -12.134 ▁ᎤᎵᏍᎦᏰᎬᏍᏔᏁᎢ -12.134 ▁ᎦᏃᎯᎵᏒᎩ -12.134 ▁ᎢᏧᎵᏍᏙᏗᏱ -12.134 ▁ᏛᎤᏨᏒᎩ -12.134 ▁ᏙᎨᎦ -12.134 ᎸᏥᎴ -12.134 ▁ᎠᎫᏱᏍᎬᎢ -12.134 ▁ᎢᏥᏃᏔᏂᏙ -12.134 ▁ᏍᎩᎪᏩᏛᏗᏱ -12.134 ᏓᏙᏓᏇ -12.134 ▁ᏥᎾᎩᏪᏒᎩ -12.134 ▁ᏘᏍᏓᏩᏚᎦ -12.134 ▁ᏓᎵᏌᎳᏗᏍᎬ -12.134 ▁ᏓᏆᏠᎯᏍᏛᎢ -12.134 ▁ᏕᎯᎾᏄᎪᏫᏎᎸᎢ -12.134 ▁ᏗᏓᏍᏔᏴ -12.134 ▁ᏗᏥᎳᏫᎢᏍᏗᏱ -12.134 ▁ᏳᏓᏓᎳ -12.134 ▁ᏁᏣᏛᏁᎸ -12.134 ▁ᏂᏓᏙᏢ -12.134 ▁ᏱᏣᏜᏅᏓᏕ -12.134 ▁ᎤᎶᏐᏁ -12.134 ▁ᎤᎾᎴᎾᏫᏍ -12.134 ▁ᏗᎾᏘᏂᏙᎯ -12.134 ▁ᏧᏃᏪᎶᏗ -12.134 ᏁᏟᏴᏍᏓ -12.134 ᏱᎶᎵ -12.134 ▁ᏚᎾᏄᏩᎥ -12.134 ▁ᏚᎾᏡᏕᏍᏗ -12.134 ▁ᏲᏢᎾᏏ -12.134 ᏗᏫᏍᏗᏱ -12.134 ▁ᎥᏇᏲᏅ -12.134 ▁ᏓᏥᏄᎪᎢ -12.134 ᎬᎾᏘᏁᎯ -12.134 ▁ᎤᏢᏲᎵ -12.134 ▁ᏛᏨᎷᏤᎵ -12.134 ᎩᏂᎪᎯᏎ -12.134 ▁ᏕᎬᏩᏚᏫᏍ -12.134 ᏒᏎᎵ -12.134 ▁ᎣᎩᏇᏓᎸ -12.134 ▁ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ -12.134 ▁ᎨᏧᎯᏍᏗᏍᎩ -12.134 ▁ᎾᎩᏴᏍᏗᏱ -12.134 ▁ᏴᎬᏲᎱᎯ -12.134 ▁ᏣᏂᏏᏗᏱ -12.134 ▁ᎤᏓᎵᏗᎩᎡᎸ -12.134 ▁ᏴᎦᏣᎦᎸ -12.134 ▁ᎠᏛᏅᎢᏍᏔᏃᏅᎯ -12.134 ▁ᏩᏆᎵᏰᎢᎶᎯᏍᏗ -12.134 ▁ᏪᏥᎷᏥᏏ -12.134 ▁ᏱᏣᏰᎸᏎᏍᏗ -12.134 ▁ᎬᏩᏂᏯᎢ -12.134 ▁ᏁᏣᏁᎸᎾ -12.134 ▁ᏚᏅᏂᏍᏔᏁ -12.134 ▁ᏥᏕᏣᏓᏂᎸᏨ -12.134 ▁ᎠᎾᎴᏂᏙ -12.134 ▁ᏣᏉᏪᎳᏅ -12.134 ▁ᏧᎾᏕᏲᏗᏱ -12.134 ▁ᎠᎦᎵᎲ -12.134 ▁ᎯᏯᎵᏍᎪᎸᏓᏁᎮᏍᏗ -12.134 ▁ᎬᏆᏕᏯᏙᏗ -12.134 ▁ᎡᏍᏗᏅᏏᏓᏍᏗ -12.134 ▁ᏕᎩᎸᏫᏍᏓᏁᎮᏍᏗ -12.134 ▁ᏥᏥᏲᎢᏎᎸ -12.134 ▁ᎠᎧᏁᎲ -12.134 ▁ᏦᏨᏃᏛ -12.134 ▁ᎤᏃᎯᏳᏔᏅ -12.134 ▁ᏤᏉᎻ -12.134 ▁ᎤᏪᎵᎯᏍᎬ -12.134 ▁ᏑᏙᏓᏆᏛ -12.134 ▁ᏗᎾᏓᏅᏫᏍᎩ -12.134 ᎩᎦᎷᏴ -12.134 ▁ᎤᏄᎪᎩ -12.134 ▁ᏚᏩᏇᏅᏔᏅ -12.134 ᏓᏁᏖᏗ -12.134 ▁ᎣᎩᏩᏏ -12.134 ▁ᏂᏚᎸᏫᏍᏓᏁᎲᎾ -12.134 ▁ᏚᏂᎾᏌᎥ -12.134 ▁ᏱᏣᏤᎸᎮᏍᏗ -12.134 ▁ᎪᎯᏳᏍᎩ -12.134 ▁ᏓᎨᏥᏄᎪᏫᏒᎩ -12.134 ▁ᎦᏙᎩᏯᏍᎬ -12.134 ▁ᏙᎸᏫᏍᏓᏁᎲ -12.134 ▁ᏙᏓᎪᏪᎳᏂ -12.134 ▁ᏗᎦᏃᏣᏢ -12.134 ▁ᎭᏓᏠ -12.134 ▁ᏱᏂᎬᏁᎰᎢ -12.134 ▁ᎣᎩᏌᏙᏴ -12.134 ᎬᏯᎧᏁᎵ -12.134 ▁ᎢᏍᏓᎵᎢ -12.134 ▁ᎬᏉᏎᎮᏍᏗ -12.134 ▁ᏚᏅᏫᏍᏔᏁ -12.134 ᎩᏲᎱᏎᎵ -12.134 ▁ᏕᏣᏫᏒᎢ -12.134 ▁ᎤᎾᏛᏂᏛ -12.134 ᎪᎢᏳᏁᎢ -12.134 ▁ᎣᎦᎵᏍᏓᏴᏅ -12.134 ▁ᎠᏆᏓᏙᎵᏍᏗ -12.134 ▁ᎤᎭᏴᏍᏗ -12.134 ▁ᏂᏣᏛᎩᏍᎬᎾ -12.134 ▁ᎭᏗᏛᎲᎭ -12.134 ▁ᎻᏏᏱ -12.134 ▁ᏚᏂᏯᏙᎸᎩ -12.134 ▁ᏙᎩᏔᏕᎩ -12.134 ▁ᏥᏫᎦᎶᎯ -12.134 ᎦᏄᎪᏨ -12.134 ᎾᏘᏃᎮᎸᎭ -12.134 ▁ᎤᏛᎯᏍᏔᏅ -12.134 ᏚᏫᏍᏔ -12.134 ▁ᎤᏓᎾᏛᎢ -12.134 ▁ᏍᎩᏍᎦᏅᏤᏗ -12.134 ▁ᏚᏓᏅᎵᏰᎥ -12.134 ▁ᏭᏂᏏᏁᎴ -12.134 ▁ᏱᏗᏧᎪᏗᎭ -12.134 ᎵᏃᎯᏴ -12.134 ▁ᏄᎵᏍᏗᏍᎨᎢ -12.134 ▁ᏱᏄᏛᏁ -12.134 ᏂᏆᏅᎥᎦ -12.134 ▁ᏙᎦᏚᏓ -12.134 ᎦᎵᏥᏙᏁᎸᎩ -12.134 ▁ᎤᏍᏚᏔᏁᎢ -12.134 ▁ᎨᏣᏌᎳᏙ -12.134 ▁ᎠᎾᏁᏍᎨᏍᎬ -12.134 ▁ᎠᏟᎶᏛ -12.134 ᎧᎵᎩ -12.134 ▁ᎤᎾᏘᏰᎸᎯ -12.134 ▁ᎦᏥᏰᏲ -12.134 ▁ᎤᏂᏍᏆᏂᎪᏔᏁ -12.134 ▁ᏗᏥᎦᎵᏍᏓᏕᏗ -12.134 ▁ᏦᎩᎷᏥᎸ -12.134 ▁ᎠᏆᎵᏍᏓᏁᎸ -12.134 ᎧᏔᎾᏫᏍ -12.134 ▁ᎠᏉᏪᎶᏗ -12.134 ▁ᏧᎵᏍᏆᎵ -12.134 ᏬᏚᎢᏍᏕ -12.134 ᏚᏂᏐᏤ -12.134 ᎾᎯᏍᏗᎭ -12.134 ᎵᏍᏚᏔᏅ -12.134 ▁ᎠᎩᎦᏘᏗᏍ -12.134 ▁ᏄᎾᎵᏏᎾᎯᏍᏛᎾ -12.134 ▁ᏄᎾᏓᏄᏴᏛᎾ -12.134 ▁ᏚᎵᏂᏆᏅᏁᎸᎩ -12.134 ▁ᏦᏍᏓᏑ -12.134 ▁ᏧᏄᎪᏓᏁ -12.134 ▁ᏄᎾᏜᏏᏛᎡᎲᎾ -12.134 ▁ᎢᎦᏕᏗᏱ -12.1341 ▁ᏕᏣᎳᏍᎬ -12.1341 ▁ᎬᏩᏓᏙᎵᏍᏗ -12.1341 ▁ᏗᎬᏩᎶᏒᎯ -12.1341 ▁ᏫᏓᏗᏅᏗ -12.1341 ▁ᎤᎾᎪᎲᏍᏙᏗᏱ -12.1341 ▁ᏤᏣᏘᏁᏒᎭ -12.1341 ᏍᎩᎾᏛᏂᏏ -12.1341 ▁ᎢᎩᎩᎵᏲᎢᏍᏗ -12.1341 ▁ᏭᎧᏔᏁᎢ -12.1341 ▁ᏗᎾᏓᏍᎦᎩ -12.1341 ▁ᏯᏂᏯᎠ -12.1341 ▁ᏂᏥᏔᏲᎯᎲ -12.1341 ▁ᎠᎾᏨᏏᏰᏍᎬ -12.1341 ▁ᏪᏣᏚᎦ -12.1341 ▁ᎠᎦᏓᏓᎴᏔᏅᎯ -12.1341 ▁ᎤᏅᎨᏫᏒ -12.1341 ▁ᎤᎬᏫᏩ -12.1341 ▁ᏕᎩᎾᏓᏁᏤᎸ -12.1341 ▁ᎤᏚᏓᎸᏛ -12.1341 ▁ᏫᏄᏪᏎᎸᎩ -12.1341 ▁ᏱᏚᎾᏝᎠ -12.1341 ▁ᎠᏥᎬᏍᎪᎸᏁ -12.1341 ▁ᏓᏨᏂᎵ -12.1341 ▁ᎤᎾᏓᏓᎴᏓᏁ -12.1341 ▁ᏗᎩᏏᎳᏛᏙᏗ -12.1341 ▁ᏗᎬᏩᏂᏲᎱᎯᏎᎸᎯ -12.1341 ▁ᏯᏆᎴᏫᏍᏔᎾ -12.1341 ▁ᏧᏁᎫ -12.1341 ▁ᏧᏂᎵᎶᎲᏍᎦ -12.1341 ▁ᏱᏄᎵᏍᏓᏁᎸ -12.1341 ▁ᎡᏥᎧᏁᏗᏱ -12.1341 ▁ᎤᎧᏙᏍᏔᏁᎢ -12.1341 ▁ᏓᏃᏢᏍᎬᎢ -12.1341 ▁ᏥᏓᏂᏰᎲᎩ -12.1341 ᎦᎵᏳᏰᏃ -12.1341 ᎯᎷᏥᏌ -12.1341 ᏓᏍᏕᏓᎵᏴᏍᎪ -12.1341 ᎬᏣᎶᏗ -12.1341 ▁ᏕᎦᏯᎩᏍᎨ -12.1341 ▁ᏥᎦᎧᎭ -12.1341 ▁ᏧᎾᏙᎳᏅᏍᏗ -12.1341 ▁ᏯᎦᏍᎬᎾ -12.1341 ᏲᎢᏎᎮᏍᏗ -12.1341 ▁ᏃᏤᎲᎾ -12.1341 ▁ᏗᎨᏥᏅᏬᏗᏱ -12.1341 ▁ᎤᏬᏪᎶᏗ -12.1341 ▁ᎡᏣᏛᏛᎲᎦ -12.1341 ▁ᎣᎦᏅᏢ -12.1341 ▁ᎨᎦᏎᏍᏗᏱ -12.1341 ▁ᎨᏥᏔᏲᏎᏗ -12.1341 ᎶᎣᏎ -12.1341 ▁ᏱᏓᎬᏯ -12.1341 ▁ᎦᏥᏬᏁᏗᏍᎬ -12.1341 ▁ᏭᎾᎦᏖ -12.1341 ᏑᎵᎪᏥ -12.1341 ᏞᎦ -12.1341 ▁ᎡᏂᎤ -12.1341 ▁ᏁᏪᏒ -12.1341 ▁ᏕᏥᏍᏆᏂᎪᏙ -12.1341 ▁ᏯᏕᎰᏍᎦ -12.1341 ▁ᎤᎾᏓᎩᎸᏗ -12.1341 ▁ᎬᎩᎷᏤᎰᎢ -12.1341 ▁ᏯᏓᏛᏍᎪᎢ -12.1341 ᏍᏗᏰᏗᏍᎨᏍᏗ -12.1341 ▁ᏂᏓᏛᏓᏍᏓᏁᎲᎾ -12.1341 ▁ᏂᏣᏛᏓᏍᏓᏁᎲᎾ -12.1341 ᏓᏩᏗᏍᏙ -12.1341 ▁ᎾᏋᏂᏏ -12.1341 ▁ᏛᎾᏛᏁᎵ -12.1341 ▁ᏫᎬᏩᏛᏅᎩ -12.1341 ▁ᎬᏆᏡᏗᏍᎩ -12.1341 ▁ᎥᏆᏓᏅᏖ -12.1341 ▁ᏂᏚᏪᎭᎸ -12.1341 ▁ᎠᏒᏨ -12.1341 ᏣᎵᏍᏓ -12.1341 ▁ᏂᏓᏛᏁᎰ -12.1341 ▁ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ -12.1341 ▁ᏱᎾᏆᎵᏍᏔᏁ -12.1341 ᎾᎵᏛᎯ -12.1341 ▁ᎤᏪᏲᎲᏍᎬ -12.1341 ▁ᏫᎨᏓ -12.1341 ᎯᎪᏩᏘᎭᏧ -12.1341 ▁ᏔᎷᎩᏍᎩᎬᎾᏬᏙᏗᏱ -12.1341 ▁ᎡᏗᏯᎥᎢ -12.1341 ▁ᏩᏂᏌᏙᏯ -12.1341 ▁ᏓᎩᏅᏅᎢ -12.1341 ▁ᏭᎾᏘᏅᏍᏔᏅᎩ -12.1341 ▁ᎠᎩᎷᏤᎮᏍᏗ -12.1341 ▁ᏛᏂᏁᏥ -12.1341 ▁ᏤᎦᏡ -12.1341 ᏓᏅᏕᏙᏗ -12.1341 ▁ᏃᏥᏪᏎᎸᎩ -12.1341 ▁ᏕᎦᏬᏍᎬᎢ -12.1341 ▁ᎤᏍᏆᎳᎯᏳ -12.1341 ▁ᎥᏣᏂᎩ -12.1341 ▁ᎤᏃᎵᏨ -12.1341 ▁ᏂᎦᏛᎿᏕᎬᎢ -12.1341 ▁ᎤᏩᏝᎥ -12.1341 ▁ᎤᏬᏢᎯᏐᏗ -12.1341 ▁ᏫᎬᏯᏅᎲᎭ -12.1341 ▁ᏫᏂᏚᏪᏎᎴᎢ -12.1341 ▁ᏂᏥᏯᏛᏁᎭ -12.1341 ▁ᏗᎨᎵᏍᎩ -12.1341 ▁ᏗᏂᏅᏬ -12.1341 ▁ᎢᏧᎾᏓ -12.1341 ▁ᏚᎾᏟᎸ -12.1341 ▁ᏌᎩᏯ -12.1341 ▁ᏓᏥᎸᏉᏔᏂ -12.1341 ▁ᎡᎭᎩᎳᏩ -12.1341 ate -12.1341 ▁ᏓᎶᏁ -12.1341 ▁ᏓᏂᎳᏍᏓᎸ -12.1341 ▁ᏓᏋᏔᏅ -12.1341 ▁ᏧᏬᎪᏙᏗ -12.1341 ▁ᏑᎹᏂ -12.1341 ▁ᏕᏥᎾᏰ -12.1341 ▁ᏲᎩᏌᏂ -12.1341 ▁ᏥᎬᏉᎯᏳᎲᏍ -12.1342 ▁ᎤᏗᏩᏎᎢ -12.1342 ▁ᎢᏰᎬᏁᏗ -12.1342 ▁ᏭᎾᏠᏨ -12.1342 ▁ᏱᏚᏲᎱᎯ -12.1342 ▁ᏩᏙᏑᎵ -12.1342 ᏔᎳᏬᏍᎦ -12.1342 ▁ᏃᏨᏁᎰ -12.1342 ᎾᏣᏪᏐᎸᏍᏗᏍᎬ -12.1342 ▁ᏗᏓᏠᏍᏗ -12.1342 ▁ᏱᏣᏛᏛᎲᏍᎨᏍᏗ -12.1342 ▁ᎠᏥᏚᎨ -12.1342 ᎾᎴᏅᏁᎢ -12.1342 ▁ᏫᎬᏲᏪᎳᏁ -12.1342 ᏰᏲᏂ -12.1342 ▁ᏣᎾᎵᏍᏓᏴᎲᏍᎦ -12.1342 ▁ᏫᏍᏗᎷᏨᎭ -12.1342 ᏓᏬᎢᎡ -12.1342 ▁ᏍᏉᏑᎵ -12.1342 ▁ᏭᎾᏣᏅ -12.1342 ▁ᏓᏥᏅᏏ -12.1342 ▁ᏱᎦᏅᎥᏏ -12.1342 ▁ᏕᏥᎠᏁ -12.1342 ▁ᎯᏍᏓᏩᏕᎨᏍᏗ -12.1342 ▁ᏱᎬᏉᏎ -12.1342 ▁ᏥᏂᎬᏂᏏ -12.1342 ▁ᎠᏓᎾᏩᏍ -12.1342 ᏥᏣᏁᎸᏓ -12.1342 ▁ᏓᏄᎪᏗᏍᎨᏍᏗ -12.1342 ᏋᏁᎵ -12.1342 ▁ᏗᎦᏁᎦᎸ -12.1342 ᏛᎯᏎᎮᏍᏗ -12.1342 ▁ᏥᏂᏚᏍ -12.1342 ᎦᏁᎳᏗᏍᏗᏱ -12.1342 ▁ᎤᏄᏴᏕ -12.1342 ▁ᎡᏗᎾᏄᎪᏫᏎ -12.1342 ▁ᏓᎾᏗᏔᎯ -12.1342 ▁ᎬᏩᏂᏐᏢᏗ -12.1342 ▁ᏓᏳᎸᏉᏔᏂ -12.1342 ᎡᏣᏟᎶᎡ -12.1342 ▁ᏧᎾᏓᎴᏛ -12.1342 ᏤᎵᏎᏗ -12.1342 ᏳᎾᏌᎾᎩᏒ -12.1342 ▁ᏱᏗᏥᎨᏳᎭ -12.1342 ▁ᏱᏣᏚᎵᏍᎨᎢ -12.1342 ▁ᎣᎦᏚᏓᏕᏫᏒ -12.1342 ▁ᎤᎶᎩᎳ -12.1342 ▁ᏂᎬᏴᏁᎸ -12.1342 ᎵᏍᎦᏍᏙᏙ -12.1342 ▁ᎤᏂᎿᎸᎯ -12.1342 ▁ᏗᎦᏙᎳᏛᏗ -12.1342 ▁ᎠᏂᎵᏇ -12.1342 ᎦᏆᎸᏂ -12.1342 ▁ᏱᏣᎵᏍᎩ -12.1342 ▁ᎤᎾᎴᎾᎸᎯ -12.1342 ▁ᏳᏬᏎᎴᎢ -12.1342 ᏦᎣᏌ -12.1342 ▁ᎬᏄᏯᎩᏍ -12.1342 ▁ᏙᏛᏡᏔᏂ -12.1342 ᎰᏒᏍᎦ -12.1342 ▁ᎤᏪᏲᏅ -12.1342 ▁ᏓᏥᏯᏬᎢ -12.1342 ▁ᏚᎾᏠᎯᏍᏔᏁᎢ -12.1342 ▁ᏚᏃᎥᎩ -12.1342 ▁ᎥᎬᎭᏅ -12.1342 ▁ᎦᏅᏆᎶᎥᎯ -12.1342 ▁ᎬᏩᏂᏌᏁᎢ -12.1342 ᏓᏘᏍᏗ -12.1342 ᏠᎣᏒ -12.1342 ▁ᎢᏥᏰᏣᏍ -12.1342 ▁ᏂᏚᏪᏎᎵ -12.1342 ▁ᏓᏂᎩᏍᎨᎢ -12.1342 ▁ᏫᏣᎷᎯᏍᏗ -12.1342 ▁ᎢᏍᏓᏁᎳᏅᎯ -12.1342 ▁ᏗᎾᏓᏂᎸᎩ -12.1342 ᏕᏥᎪᎥᎩ -12.1342 ᏓᏁᏄᎸ -12.1342 ▁ᎤᏣᏅᏕᎢ -12.1342 ᎵᎦᏲᏙᏗ -12.1342 ▁ᎦᏙᎴᎣᎯ -12.1342 ▁ᎦᏃᎯᎵᏓᏍᏗ -12.1342 ▁ᎦᎸᎪᎬ -12.1342 ▁ᏓᏥᏌᎳᏓᏂ -12.1342 ▁ᎤᏃᏒᏗ -12.1342 ▁ᎯᎧᏁᎦ -12.1343 ᎵᎮᎵᏍᏛ -12.1343 ▁ᏂᎨᏥᏪᏎᎮᏍᏗ -12.1343 ▁ᎣᎦᏙᎴᎰᏒ -12.1343 ᏣᏰᎸᎮ -12.1343 ▁ᏚᏲᏨᎩ -12.1343 ▁ᏱᏗᏣᏠᏱ -12.1343 ᏃᏍᎩᏍᏗᏱ -12.1343 ▁ᎢᏯᏂᎢᏛᎭ -12.1343 ▁ᏓᏂᏁᎵᎬᎢ -12.1343 ▁ᎢᎦᏚᏓᎴᏍᏙᏗᏱ -12.1343 ▁ᎢᏨᏁᏤᎸᎩ -12.1343 ▁ᎤᎪᏐᏅ -12.1343 ▁ᏱᏓᏂᏬᏂᎭ -12.1343 ᏓᏓᎴᏗᏍᎨᏍᏗ -12.1343 ▁ᎯᏯᏙᎵᎨᏍᏗ -12.1343 ▁ᏭᎾᎦᏔᎲᏍ -12.1343 ▁ᎤᏓᏠᏍᏔᏅᎩ -12.1343 ▁ᏓᎦᎾᏄᎪᏥ -12.1343 ᎪᎬᏂᏍᏓ -12.1343 ▁ᏧᎾᏓᎩᏯᏍᏗ -12.1343 ᏚᏘᎿᏫᏛᎮᎢ -12.1343 ▁ᎠᎾᎵᎪᎲᏍ -12.1343 ▁ᎣᎩᏍᏕᎵᏍᎬᎢ -12.1343 ▁ᏧᏃᏢᎾᏁᏗ -12.1343 ▁ᎱᏛᏁᎢ -12.1343 ▁ᎤᎾᏍᏓᎸ -12.1343 ▁ᏕᎭᏘᏃᎸ -12.1343 ▁ᏯᏆᏚᎳ -12.1343 ᎦᏘᎸᏛ -12.1343 ▁ᏕᏓᏁᎶᏛᎢ -12.1343 ▁ᎤᎾᏓᏅᏓᏛᎩ -12.1343 ▁ᎦᏰᏥᏍᏕᎸᏗ -12.1343 ▁ᏒᎶᎯ -12.1343 ᎩᎦᏔᎮᎢ -12.1343 ▁ᎤᎧᏌ -12.1343 ▁ᏓᎦᏄᎪᏥ -12.1343 ▁ᏓᏂᎾᏆ -12.1343 ▁ᏗᏂᏍᏆᏂᎪᏗᏍᎩ -12.1343 ᎩᎦᏴᎳ -12.1343 ᏥᏯᎴᏁᏗ -12.1343 ▁ᏤᏦᏎᎭ -12.1343 ▁ᏙᏧᏂᏅ -12.1343 ᏙᏓᏣᏘᎾᏫᏛ -12.1343 ▁ᏓᏥᏴᏂᎵ -12.1343 ▁ᏕᏥᏁᏤᎭ -12.1343 ▁ᏕᏥᏯᎦᎿᏅ -12.1343 ▁ᏓᎦᏅᏏ -12.1343 ▁ᏓᏳᏄᎪᏨᎩ -12.1343 ▁ᏚᎧᎿᏂᏙᎸ -12.1343 ▁ᏚᏟᏰᎵᏙᎸ -12.1343 ▁ᏳᎾᎵᏍᏓᏴ -12.1343 ▁ᎤᏍᏙᏰ -12.1343 ▁ᏤᏣᏟᏴᏏ -12.1343 ▁ᎤᏂᏝᏗᏤ -12.1343 ▁ᎤᏂᏂᏆᏘᏍᏗ -12.1343 ▁ᎯᏯᏓᏙᎵᏍᏓᏏ -12.1343 ▁ᏂᏚᏅᏁᎸᎩ -12.1343 ▁ᎤᏂᎾᏄᎪᏤᎸ -12.1343 ▁ᏫᏣᎷᏨ -12.1343 ▁ᎤᎵᏍᎩᏰ -12.1343 ▁ᎠᎦᎴᏗ -12.1343 ▁ᎡᏥᏎᎪᎩᏒ -12.1343 ▁ᎦᏃᎸᎥᏍᎨ -12.1343 ▁ᏚᎾᏏᏔᏕᎢ -12.1343 ▁ᏄᎵᏍᏔᏏ -12.1343 ᎱᏎᎢ -12.1343 ▁ᎢᏥᎵᏓᏍᏗᎭ -12.1343 ▁ᎠᏇᏅᏓ -12.1343 ▁ᏧᎾᏙᎢᏛ -12.1343 ▁ᏕᏥᎦᏘᎸ -12.1343 ᏁᏉᏏ -12.1343 ▁ᏍᎩᎷᏥ -12.1343 ▁ᎢᎯᎦᏔᎭ -12.1343 ▁ᎠᏅᏗᏍᎩ -12.1343 ▁ᎠᏙᏂᏍᎬ -12.1343 ▁ᎡᏓᏤᎵᎦ -12.1343 ▁ᎬᏩᏂᏄᎪ -12.1343 ▁ᎭᏣᏪᏐᎸᏍᏓ -12.1343 ▁ᏱᏥᏏᎳᏛᎥᎦ -12.1343 ▁ᏕᎦᎾᏤᏍ -12.1343 ᏯᏓᏂᎸᏤ -12.1343 ▁ᎤᏴᎴᏃ -12.1343 ▁ᎠᏥᏕᎸᎩ -12.1343 ᏓᎸᏍᏛᎢ -12.1343 ▁ᏚᎩᏨ -12.1343 ᏢᏆᏍᏙᏗᏍᎨᏍᏗ -12.1344 ▁ᏗᎬᏩᏲᎯᏎᎸᎯ -12.1344 ▁ᎢᏥᏍᏓᏩᏕᎨᏍᏗ -12.1344 ▁ᎢᏨᎾᏄᏫᏎᎭ -12.1344 ▁ᎬᏯᎦᏙᏍ -12.1344 ▁ᎮᏏᎶᏅ -12.1344 ▁ᏚᎾᏓᏅᏅᎩ -12.1344 ▁ᎠᏟᏰᎵ -12.1344 ▁ᎤᏂᏍᏕᏲᏅ -12.1344 ▁ᏓᎾᏗᏔᏍᎬ -12.1344 ▁ᏗᏓᏂᏃ -12.1344 ▁ᏛᎵᏍᏆᏗ -12.1344 ▁ᎢᏣᏙᎩᏯᏍ -12.1344 ▁ᏦᏤᏙᎭ -12.1344 ᏥᎶᏄᎡᎸ -12.1344 ▁ᎤᎾᏨᏓ -12.1344 ▁ᎢᏍᏓᎢᏒᎢ -12.1344 ▁ᎣᏍᏓᏟᏃᎮᏍᎬ -12.1344 ▁ᎪᎹ -12.1344 ▁ᏕᏥᎾᏫᏍ -12.1344 ▁ᏗᎨᎦᏬᏍᏗᏱ -12.1344 ▁ᎢᏣᏒᏂᎸᎩ -12.1344 ᏃᏏᏌᏁ -12.1344 ▁ᎠᎫᏴᏍ -12.1344 ▁ᏱᎾᎬᏁᎸ -12.1344 ▁ᎤᎾᏓᏡᎨᎢ -12.1344 ▁ᏄᎶᏎᎢ -12.1344 ▁ᏱᏚᎸᏫᏍᏓᏁᎮᎢ -12.1344 ▁ᎥᏓᏘ -12.1344 ▁ᎤᏫᏒᏁᎢ -12.1344 ▁ᏕᏥᏂᏴᎲ -12.1344 ▁ᎢᎬᏩᏰᎸᎭ -12.1344 ▁ᎡᏥᏝᏅᎯ -12.1344 ᎦᎵᎪᏔᏅᎯ -12.1344 ᏴᎡᎴ -12.1344 ▁ᏗᏍᎩᎾᏝᎢ -12.1344 ▁ᏴᎬᏴᎭ -12.1344 ▁ᏄᏪᎭᎴ -12.1344 ▁ᏕᎭᏔᏅᎭ -12.1344 ᎩᏲᎱᏒᎩ -12.1344 ▁ᎤᏓᏄᎸ -12.1344 ᎧᎵᎢᏍᏔᏂ -12.1344 ▁ᎨᏥᏴᏔᏂᎸ -12.1344 ▁ᎣᏥᏍᏕᎵᏍᎩ -12.1344 ▁ᎡᎻᏂᏓᏈ -12.1344 ᏣᏅᏛᎩ -12.1344 ▁ᎤᏰᎸᏕᏍᏗ -12.1344 ▁ᎢᏥᎩᏒᎭ -12.1344 ▁ᎤᎾᏕᎰᎯᏍᏗᏍᎩ -12.1344 ▁ᎠᏉᏠ -12.1344 ▁ᎤᏛᏂᏛ -12.1344 ▁ᏚᏩᏓᎷᏯᏛ -12.1344 ▁ᏗᏦᎸᏒᎯ -12.1344 ▁ᎢᏥᏯᎢ -12.1344 ▁ᏗᏓᏪᏍ -12.1344 ▁ᎢᏣᏛᏅᎢᏍᏕᏍᏗ -12.1344 ▁ᏓᏃᏱᏁ -12.1344 ▁ᏱᏍᎩᎧᏁᎸ -12.1344 ▁ᎢᏥᎦᏛᏂ -12.1344 ▁ᏕᎦᏎᎯ -12.1344 ▁ᎣᎪᏪ -12.1344 ▁ᏴᏓᎨᏏ -12.1344 ▁ᎯᏍᏚᎶᏔᏅ -12.1344 ▁ᎠᏇᎳᏗᏍ -12.1344 ▁ᎠᎵᏌᎳᏛᎦ -12.1344 ▁ᏚᎾᏓᏁᏤᎸ -12.1344 ▁ᎠᏥᏴᎩᏅ -12.1344 ▁ᎠᎵᏖᎸᎲᏍᎬ -12.1344 ▁ᎢᏥᎩᎵᏲᏨ -12.1344 ▁ᎠᏆᏓᏄ -12.1344 ▁ᎾᎦᏔᎾᎥᎾ -12.1344 ᎾᎦᏙᏍᏔᏂ -12.1344 ▁ᏚᏖᎸ -12.1344 ▁ᏚᎬᏩᏝ -12.1344 ▁ᏚᎵᏍᏡᏰᎢ -12.1344 ▁ᏚᏂᎳᎦᎸ -12.1344 ᏨᏱᏢᏅ -12.1344 ▁ᎢᏨᏬᏁᏗᎭ -12.1344 ▁ᏥᎩᎵᎵ -12.1344 ▁ᏚᏂᎧᎯᏰ -12.1345 ▁ᎠᏆᏒᏂᎦ -12.1345 ▁ᏥᏦᎯᏳᏂ -12.1345 ▁ᏱᏨᎸᏉᏗᎭ -12.1345 ▁ᎢᎬᏩᏍᏗᏰᏔᏁ -12.1345 ᏥᎭᎷ -12.1345 ▁ᏓᏂᎴᏴᏍ -12.1345 ▁ᏳᏂᏗᏍᎩᏌ -12.1345 ▁ᏱᎧᏁᏉᎦ -12.1345 ▁ᏥᏲᎢᏳᎲᏍ -12.1345 ▁ᏏᏅᏙ -12.1345 ᎵᏏᎲᏍᏓ -12.1345 ▁ᎠᏆᏢᏈᏍᏙᏗ -12.1345 ▁ᎤᏙᎳᏒ -12.1345 ▁ᏗᏨᏁᎸᎩ -12.1345 ▁ᎨᏥᏃᎮᏍᎨᏍᏗ -12.1345 ▁ᏓᎭᏬᎢᎮ -12.1345 ▁ᏍᏕᎩ -12.1345 ▁ᏓᏘᏁᎮᎢ -12.1345 ▁ᏣᎵᏬᎢᏍᏗ -12.1345 ▁ᏣᏛᏐᏅᎯ -12.1345 ▁ᎦᏌᎾ -12.1345 ▁ᏫᎦᎶᏍᎩ -12.1345 ▁ᏲᏤᎭ -12.1345 ᎦᏰᏥᏐᏢᏔᏂ -12.1345 ▁ᎠᏂᎫᏌ -12.1345 ▁ᏥᏕᎪᏪᎳ -12.1345 ᏍᏙᏰᎯ -12.1345 ▁ᏚᎾᏗᏌᏓᏕ -12.1345 ▁ᎢᏨᏯᏑᏰᏛ -12.1345 ▁ᎠᏓᎾᏫᏗᏍᎬ -12.1345 ▁ᎣᎦᏅᏗᏱ -12.1345 ▁ᏚᏁᎢᏍᏓᏁᎴ -12.1345 ▁ᎬᏩᏍᏕᎸᎯᏙᎮᎢ -12.1345 ▁ᏓᏔᎴᎦ -12.1345 ▁ᏗᏣᏠᏱᎦ -12.1345 ▁ᎠᏁᏢᏗᏍ -12.1345 ▁ᏓᏥᏴᎵ -12.1345 ▁ᏫᎨᏣᏲᎵᎦ -12.1345 ▁ᏱᏧᏢ -12.1345 ▁ᎠᏓᏩᏛᎡᎯ -12.1345 ▁ᏚᎾᏓᏅᏁᎢ -12.1345 ▁ᏱᎦᎾᏄᎪᎦ -12.1345 ▁ᏚᏍᎦᏤ -12.1345 ▁ᏱᎦᎵᏥᏙᎲᏍᎦ -12.1345 ▁ᏱᏙᎬᏛᏂᏏ -12.1345 ▁ᎤᎾᎵᏍᏔᏴᏃᎾ -12.1345 ᎾᎴᏂᏍᎬ -12.1345 ᏕᏘᏱᎶᏍᎬ -12.1345 ino -12.1345 ᎤᏃᎯᏳᏓᏁᎯ -12.1345 ᎦᏔᎾᏫᏍ -12.1345 ▁ᏯᏅᏗᎭ -12.1345 ᏄᏁᎩᏴ -12.1345 ▁ᏯᎩᏩᏛᎲ -12.1345 ▁ᎤᏬᏨᏛᎢ -12.1345 ᏂᏅᏌᏓ -12.1345 ▁ᏥᎿᏛᏁᎭ -12.1345 ▁ᏱᎪᏪᎳ -12.1345 ▁ᎢᏤᎳᏗᏓᏍᏗᏱ -12.1345 ▁ᎢᏨᏁᏤᎲ -12.1345 ▁ᏧᎾᏄᏬᎩᎯ -12.1345 ▁ᏂᏕᎤ -12.1345 ▁ᏯᏆᏓᏅᏖᎳ -12.1345 ▁ᎤᏂᎸᏐ -12.1345 ᎩᏍᏕᎵᏍᎬᎢ -12.1345 ▁ᎢᏥᏍᏛᏗᏍᎨᏍᏗ -12.1345 ▁ᏓᏥᎶᎥ -12.1345 ▁ᎠᏂᏑᎵᎪ -12.1345 ▁ᏣᏎᎵᏔᏅ -12.1345 ▁ᏫᎨᎥ -12.1345 ▁ᎤᏗᎴᎦ -12.1345 el -12.1345 ▁ᎾᏥᏰᎲᎾ -12.1345 ▁ᏚᏬᎵᏤᎢ -12.1345 ᏬᏐᏅ -12.1345 ▁ᏕᏥᎪᎾᏛ -12.1345 ᏥᎭᏓᏅᏛᎳ -12.1346 ▁ᏙᏓᎫ -12.1346 ▁ᎤᎵᏍᏓᏛ -12.1346 ▁ᎤᏁᏡᎬ -12.1346 ▁ᎠᏧᏍᏛ -12.1346 ᏍᎩᎳᏗᏍᏗ -12.1346 ▁ᎫᏩᎾᏛ -12.1346 ▁ᎨᏦᎵ -12.1346 ▁ᏭᎾᏌᎾᎩᏎ -12.1346 ▁ᏄᏓᏅᎦᎸᎾ -12.1346 ▁ᏄᎳᏏᏁ -12.1346 ▁ᏣᎾᏂᎩᏍᎨ -12.1346 ▁ᏚᏓᏅᎡᎴ -12.1346 ▁ᏕᏥᏲᏍᏔᏅ -12.1346 ▁ᏥᏂᏌᏄᎦ -12.1346 ▁ᏥᏙᏛᎩᎸᏫᏍᏓᏁᎵ -12.1346 ▁ᏱᎧᏃᎮ -12.1346 ▁ᏫᏓᎧᏅ -12.1346 ▁ᎤᎾᏘᏃᎮᎴᎢ -12.1346 ▁ᏥᎦᎵᎡᎵᎦ -12.1346 ▁ᏥᎧᏃᎮᎭ -12.1346 ▁ᏥᏥᎩᎵᏲᎦ -12.1346 ᏓᎾᏅᎥᏍᎩ -12.1346 ▁ᏫᏕᏣ -12.1346 ▁ᏚᎶᎨᏒ -12.1346 ᎦᎵᏍᏓᎴᎩ -12.1346 ▁ᏴᏙᎭ -12.1346 ᏓᎦᎸᎥᎦ -12.1346 ᏓᏅᏫᏍᎨ -12.1346 ▁ᏓᏥᏍᏕ -12.1346 ▁ᏱᎦᏁᎸᏓ -12.1346 ▁ᏗᎬᏩᎦᏘᏕᎯ -12.1346 ᏍᏚᏢᎩ -12.1346 ▁ᏕᎬᎦᎿᏩᏗᏙᎮᏍᏗ -12.1346 ▁ᏄᏒᎴᎢ -12.1346 ▁ᏯᏕᎰᏍᎨᏍᏗ -12.1346 ᏓᎩᏯᏍᏗ -12.1346 ᏖᎳᏛ -12.1346 ▁ᎠᎩᏲᎸᎩ -12.1346 ▁ᎤᎾᏘᎿᏫᏛᎲᎩ -12.1346 ▁ᎤᏓᏅᏖᎵᏓᏍᏗ -12.1346 ▁ᏙᏓᎦᎶᏐᏂ -12.1346 ▁ᏚᏬᏪᎳᏅ -12.1346 ▁ᏭᏅᎫᏛᎢ -12.1346 ▁ᏱᏂᏚᏩᏁ -12.1346 ▁ᎢᏥᏙᎵᏍᏗᏱ -12.1346 ᏂᎦᏗ -12.1346 ▁ᏂᏨᏒᎾ -12.1346 ▁ᎦᏟᏏᏍᎨᏍᏗ -12.1346 ▁ᏚᎿᎷᏔ -12.1346 ▁ᎣᏥᎪᎥ -12.1347 ▁ᏯᏕᎲᎦ -12.1347 ▁ᏄᏍᏗᏓᏁ -12.1347 ▁ᏓᏛᏍᎬᎢ -12.1347 ▁ᏚᎵᏦᏔᏁᎢ -12.1347 ᏑᎸᎮ -12.1347 ▁ᎢᏥᏍᏆᏂᎪᏍᎦ -12.1347 ᏛᎣᏥ -12.1347 ▁ᏱᏂᏣᎵᏍᏔᏅ -12.1347 ▁ᏂᏪᎭ -12.1347 ▁ᏗᏥᏌᎳᏛᎦ -12.1347 ▁ᏱᏣᏙᎴᎰᏍ -12.1347 ▁ᎨᏈᎵ -12.1347 ▁ᏫᎦᏢᏍ -12.1347 ▁ᎤᏁᏍᎨᎮ -12.1347 ᎶᏅᎮᏍᎩ -12.1347 ▁ᏕᏤᎲᎢ -12.1347 ▁ᏫᏗᎨᏥ -12.1347 ▁ᎠᎩᏫᏯ -12.1347 ▁ᎬᏬᎯᏳᎯ -12.1347 ▁ᏭᏔᎷᎪ -12.1347 ▁ᏣᎵᏂᎬᎬᎢ -12.1347 ᏓᏬᏔᏅᎩ -12.1347 ▁ᏧᎧᎿᏩᏗᏓᏍᏗᏱ -12.1347 ▁ᏧᏕᏘᏱᎶᏛ -12.1347 ▁ᎦᏌᏙᏱ -12.1347 ▁ᏗᏂᏁᏟᏴᏍᎩ -12.1347 ᏈᏙᎲ -12.1347 ▁ᏧᎳᎨᏯᏛᏤᎢ -12.1347 ᎬᏬᎯᏳᏁᎢ -12.1347 ▁ᎣᏇᏗ -12.1347 ▁ᏚᏛᏅᎢᏍᏓᏁᎴ -12.1347 ▁ᏕᏥᎦᎾ -12.1347 ▁ᏗᎨᏍᎩᎥᏏᏉ -12.1347 ▁ᏗᎫᏍᎨᏂ -12.1347 ▁ᎤᏁᏉᏤᎴᎢ -12.1347 ▁ᎨᏥᏛᎬ -12.1347 ▁ᏩᏗᏢᏍᏓ -12.1347 ▁ᏯᎾᏕᎰ -12.1347 ᎬᏫᏳᏌᏕᎨᏍᏗ -12.1347 ▁ᏣᏓᏴᏒᎩ -12.1347 ▁ᎡᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ -12.1347 ▁ᏳᏁᏅᏎᎢ -12.1347 ᎤᏙᎯᏳᎩ -12.1347 ᏒᏂᎵᏙᎸ -12.1347 ▁ᎾᎦᏔᏛ -12.1347 ▁ᏗᎦᎵᏦᏛ -12.1347 ᏓᏛᏛᎮᎸᎥᏍᎨ -12.1347 ▁ᏫᎾᏆᎵᏍᏓᏏ -12.1347 ᎦᎫᏴᎡᎵ -12.1347 ▁ᎢᏥᎷᏤᎮᏍᏗ -12.1347 ▁ᏗᏕᎭᎷᎨ -12.1347 ᏨᏇᏍᎨ -12.1347 ▁ᎢᏗᏍᏓᏩᏕᎩ -12.1347 ▁ᏩᏐᎾ -12.1347 ▁ᏄᎡᏎ -12.1347 ᏕᎵᏎᎭ -12.1347 ▁ᎭᎵᎮᎵᎨᏍᏗ -12.1347 ▁ᎠᏆᎴᏁᎸ -12.1347 ▁ᏥᏥᏃᎮᏍᎬ -12.1347 ▁ᎬᏩᎾᏡᏗᏍᎩ -12.1348 ▁ᏕᏣᏂᎬᎦ -12.1348 ▁ᏫᏔᎧᏅᎦ -12.1348 ▁ᏓᏃᏢ -12.1348 ▁ᏕᎦᎵᎥᏂ -12.1348 ▁ᏥᏚᎴᎯ -12.1348 ▁ᎧᏁᎪᎢ -12.1348 ᏓᎪᎯᏥ -12.1348 ▁ᏕᎭᏕᏲᎲᏍᎨᏍᏗ -12.1348 ▁ᎠᎩᏲᎱᏒᎯ -12.1348 ▁ᏧᏖᎵᏙ -12.1348 ▁ᎨᏥᎨᏳᎯ -12.1348 ▁ᏱᎦᎵᎭ -12.1348 ᏛᏛᏅᎩᏃ -12.1348 ▁ᏗᏥᏃᏍᎦᎸᏛ -12.1348 ▁ᏕᎫᏍᏙ -12.1348 ▁ᏯᎵᏖᎸ -12.1348 ▁ᎯᏁᎩᏉᏍᎩᏂ -12.1348 ▁ᏓᎦᎶᏏ -12.1348 ▁ᎤᏃᎯᎵᏙᎸ -12.1348 ▁ᎤᏪᎾᏪ -12.1348 ▁ᏱᏂᎦᎵᏍᏗᎭ -12.1348 ▁ᎢᏨᏍᏕᎵᏍᎬ -12.1348 ▁ᎨᎦᎫᏴᏛ -12.1348 ca -12.1348 ▁ᏧᏲᎱᏒ -12.1348 ▁ᎢᏨᎾᏄᎪᏫᏎᎸ -12.1348 ▁ᏥᏲᎢᏳᏗ -12.1348 ᏃᏫᎠ -12.1348 ▁ᏚᎵᏍᏓᏱᏗᏍ -12.1348 ᏓᏅᎵᏰᎠ -12.1348 ᎬᎪᎥᎩ -12.1348 ▁ᏥᏣᏓᏡᎬ -12.1348 ▁ᏚᏂᎪᎮ -12.1348 ᏄᏬᎯᏍᏔᏂ -12.1349 ᏝᏫᏍᏗ -12.1349 ▁ᏳᎵᏍᎪᎸᏓᏁᎴ -12.1349 ᏚᎪᏄᎶ -12.1349 ᎦᏖᎾ -12.1349 ▁ᎬᏩᎬᏍᎪᎸᏁ -12.1349 ▁ᏭᎾᏅᏅᎩ -12.1349 ▁ᏧᏑᏴ -12.1349 ᏄᏩᎥᎾ -12.1349 ▁ᎢᏨᏰᎳᏍᏔ -12.1349 ▁ᏕᎰᎯᏳᎲᏍ -12.1349 ▁ᎱᎾᏓ -12.1349 ▁ᏧᎦᎾᏍᏓ -12.1349 ▁ᏗᏂᏁᏥᏱ -12.1349 ▁ᏗᏧᎪᏙᏗᏱ -12.1349 ▁ᎤᏍᏓᏩᏗᏓᏍᏗᏱ -12.1349 ▁ᎢᎪᏢᏅᎯ -12.1349 ▁ᎢᏍᏙᎯᏳᎲᏍ -12.1349 ᏛᏁᎰᎲᏍᏗᏱ -12.1349 ▁ᏍᏆᏁᎳᏅᎯ -12.1349 ▁ᎡᏥᎪᎵᏰᏗᏱ -12.1349 ▁ᏳᏬᎳ -12.1349 ᏥᏓᎦᎸᎢᏒ -12.1349 ▁ᏏᏱᏆ -12.1349 ▁ᏯᎦᎵᏍᎨᎢ -12.1349 ▁ᏕᎨᏢᏔᏅᎭ -12.1349 ▁ᎦᎵᏬᎦ -12.1349 ▁ᎦᏅᎵᏰᏗ -12.1349 nt -12.1349 ▁ᏫᏄᏛᏁ -12.1349 ▁ᏳᏩᎩᎸ -12.1349 ᏙᏅᎸᎢ -12.1349 ▁ᎠᏂᎸᏉᏗᏍᎬ -12.1349 ▁ᎨᏣᏛᎦᏁᎸ -12.1349 ▁ᏄᏓᏛᎩ -12.1349 ▁ᏫᎧᎳ -12.1349 ▁ᎤᎾᎵᏃᎮᎸ -12.1349 ▁ᏓᏥᏂᏴᎯ -12.1349 ▁ᎥᏆᎸᏍᏗᏱ -12.1349 ▁ᏚᏂᏍᏗᏰᏔᏁ -12.1349 ▁ᎪᏚᎢᏍᏛ -12.1349 ▁ᎤᎾᏗᏒᏅ -12.1349 ▁ᎤᏄᏬᎯᏍᏗᏱ -12.1349 ▁ᎨᏥᎶᏁᎥ -12.1349 ▁ᎦᏟᏐᏗ -12.135 ▁ᎠᎩᏂᏆᏘᎮᏍᏗ -12.135 ᏍᎪᎸᎪ -12.135 ᏥᎷᏨᎭ -12.135 ▁ᏯᏍᎦᏅᎪᎢ -12.135 ▁ᎤᎩᎸᏂᎸ -12.135 ▁ᏍᎩᎷᏤᎸᎭ -12.135 ▁ᎢᏥᎾᏰᏍᎩ -12.135 ▁ᏓᏓᏪᎳᎩᏍᎬ -12.135 ▁ᎣᏍᏓᏕᎭᏲᎲ -12.135 ▁ᎨᏥᎨᏳᎭ -12.135 ▁ᎠᏆᏚᏓᎸ -12.135 ▁ᏚᏃᏢᏩᏗᏒ -12.135 ▁ᏣᏓᏏᏂ -12.135 ▁ᎬᏋᏕᏨ -12.135 ▁ᏛᎠᏥ -12.135 ᏚᏓᏕᏫᏍᏛ -12.135 ▁ᏓᏥᏛᏔᏂ -12.135 ᎵᏲᎬ -12.135 ▁ᏕᏨᏲᎯᏎᎸ -12.135 ▁ᏚᏬᏒᎢ -12.135 ▁ᏗᏣᏓᏅᏛᎵ -12.135 ▁ᏱᏚᏚᎪ -12.135 ▁ᏣᏥᏐᏅ -12.135 ▁ᏍᎩᏲᎯᏏ -12.135 ▁ᏚᏂᏁᎦᎸ -12.135 ᏘᏂᏙᎲ -12.135 ▁ᎤᏓᏕᏲᏗᏱ -12.135 ᏍᎩᎧᏁᎸᎩ -12.135 ▁ᎤᎶᏒᏍᏕᏍᏗ -12.135 ᎧᎯᏰ -12.135 ▁ᏂᏚᏓᏅ -12.135 ▁ᎦᏄᎪ -12.1351 ▁ᎤᎭᏲᎴ -12.1351 ▁ᏚᎾᏌᎥ -12.1351 ▁ᎤᎾᏓᏂᏯᏛ -12.1351 ▁ᏦᎦᏤᎵᎦ -12.1351 ▁ᎬᏩᏃᎴᎢ -12.1351 ▁ᎠᏥᏍᏕ -12.1351 ᏂᎪᎵᏰᎠ -12.1351 ▁ᏱᏣᏕᎶᎰ -12.1351 ▁ᏧᏮᏔᏅ -12.1351 ▁ᎠᏂᎾᏄᎪᏫᏍᎩ -12.1351 ▁ᏱᏚᎴᏅ -12.1351 ▁ᏕᎧᏃ -12.1351 ▁ᏄᏜᏏᏛᎡᎲᎾ -12.1351 ▁ᏄᏲᎱᏒᎾ -12.1351 ▁ᏗᏥᎶᏓ -12.1351 ▁ᎨᏥᎾᏄᎪᏫᏒᎯ -12.1351 ᎾᏟᎶᎾ -12.1351 ▁ᏧᏐᏱᎭ -12.1351 ᎩᏍᏆᎸᏔᏅ -12.1351 ᎬᏩᎾᏓᏐᏢ -12.1351 ▁ᏱᏙᎨᏨ -12.1351 ▁ᏚᏂᎬᏨ -12.1351 ▁ᎢᏗᎪ -12.1351 ᏩᏛᎯᎸᎩ -12.1351 ▁ᏧᎾᏓᏙᎵᏍᏓᏁᏗᏱ -12.1351 ᏋᏂᏍᏗᏱ -12.1351 ▁ᎤᏧᏗᎭ -12.1351 ▁ᏱᎬᏲᏎᎭ -12.1351 ᏍᏛᏗᏍᏔᏂ -12.1351 ᏛᎨᏣ -12.1351 ᏍᏆᏛᎦᏍᏓᏏ -12.1351 ▁ᎤᏂᏃᏍᎩᏍᏗᏱ -12.1351 ▁ᎦᏰᏥᏐᏢᏔᏅ -12.1351 ᏴᏋᏁᎸᎯ -12.1351 ᏩᎾᏖ -12.1351 ▁ᏧᏲᏨ -12.1351 ▁ᏱᏄᏛᏁᎸ -12.1351 ▁ᏥᏯᏄ -12.1351 ▁ᎤᎬᏫ -12.1351 ol -12.1352 ᎦᏂᎩᏍᏔᏁᎢ -12.1352 ▁ᏙᏛᎦᎴ -12.1352 ᏑᎵᎪᏤ -12.1352 ▁ᎯᏯᏘᏄᎦ -12.1352 ▁ᎾᎾᎵᎮᎵ -12.1352 ▁ᏥᏚᎴᏔᏁᎢ -12.1352 ▁ᏭᏂᎷ -12.1352 ▁ᎠᏥᏩᏛᎡᎸᎭ -12.1352 ▁ᎢᏗᏁᎬ -12.1352 ▁ᏍᏆᏛᏅᎢᏍᏓᏁᎸᎭ -12.1352 ᏚᎧᎿᏩᏗᏙᎲ -12.1352 ▁ᎠᏃᎯᏳᎲᏍᎦ -12.1352 ▁ᏗᏙᎳᏅᏍᏗ -12.1352 ▁ᏥᏅᏩᏍᏙᎢ -12.1352 ▁ᏴᎬᎩᎷᏥ -12.1352 ▁ᏪᏤ -12.1352 ▁ᏱᏗᏥᎸᏫᏍᏓᏁᎭ -12.1352 ᏗᏝᎥᏔ -12.1352 ▁ᎤᎾᎵᏓᎩ -12.1352 ᏛᏓᏍᏓᏁᎮᏍᏗ -12.1352 ▁ᎦᏃᏗᏍᎩ -12.1352 ▁ᏓᏘᏁᎮᏍᏗ -12.1352 ▁ᏕᎬᏩᏂᎮᎢ -12.1352 ▁ᎢᏥᏟᏌ -12.1352 ▁ᎠᏥᏁᏤᎴ -12.1352 ▁ᏦᏢᏅᎯ -12.1352 ᏕᎳᎰ -12.1352 ▁ᏄᏍᏗᏕᎦ -12.1352 ▁ᎠᏥᎧᏅ -12.1352 ▁ᎤᏂᏨᏅ -12.1353 ▁ᎤᎵᏍᎫᏫᏎᎸ -12.1353 ▁ᏗᎨᏥᎤᏍᏕᏎᏗ -12.1353 ▁ᏅᏗᎤ -12.1353 ▁ᎠᎹᏳᎸ -12.1353 ▁ᎣᎨᏅᏍᏗᏱ -12.1353 ▁ᏩᏂᎷᏨ -12.1353 ▁ᎢᎩᏍᏕᎵᏍᎬᎢ -12.1353 ▁ᎣᎦᏕᏯᏙᏗᎭ -12.1353 ▁ᏱᏚᏪ -12.1353 ▁ᎤᏁᏍᎨᎲᎢ -12.1353 ▁ᏂᎬᏩᏁᎸ -12.1353 ▁ᎵᏌ -12.1353 ᏓᎧᎭᏅ -12.1353 ▁ᎡᏍᎪᎵ -12.1353 ▁ᎢᏣᏓᎳᏫᏎᎸ -12.1353 ▁ᎣᎩᎪᏁ -12.1353 ▁ᎠᏓᏓᏅᏓᏗᏍᏗᏍᎩ -12.1353 ᏯᏍᏗ -12.1353 ▁ᎭᎵᏍᏕᎸ -12.1353 ▁ᏂᎦᏍᏕᏍᏗ -12.1353 ᏃᏢᏍᎩ -12.1353 ▁ᏥᎦᎳᎨ -12.1353 ▁ᏫᎦᏲᎩ -12.1353 ▁ᎠᏥᎵᎥᏂᎸ -12.1353 ᏚᎶᎯᏎᎴ -12.1353 ▁ᎦᏲᎩᏐᏢ -12.1353 ▁ᎠᏓᏙᎵᏍᏗᏍᎨᎢ -12.1353 ▁ᏄᏁᎲᎾ -12.1353 ▁ᏩᏆᏕ -12.1354 ᎬᏩᏂᏴᎮᏃ -12.1354 ▁ᏥᏓᏓᏬᏍᎬᎩ -12.1354 ▁ᎠᏥᏩᏛᎡᎸᎯ -12.1354 ▁ᎤᏂᎪᏙ -12.1354 ▁ᎬᏬᎯᏳᏅᎯ -12.1354 ▁ᎭᏈᎳ -12.1354 ▁ᎤᎾᏗᏍᎦᎳᏁ -12.1354 ᎵᎪᏚᏅ -12.1354 ▁ᎬᏩᎶᏁᏗ -12.1354 ▁ᎢᏤᏲᏗᏱ -12.1354 ᎩᏍᏗᏰᏗᏍᎬ -12.1354 ▁ᎠᏲᎰᏍ -12.1354 ▁ᏧᏂᎵᎡᎾ -12.1354 ᎦᎾᎯ -12.1354 ▁ᏕᎯᎦᏔᎭ -12.1354 ▁ᏍᎩᎨᎯᏙᎸ -12.1354 ▁ᏍᎩᏍᏓᏩᏛᏍᏗᏱ -12.1354 ᎩᎳᏫᏍᏗ -12.1354 ▁ᎤᎾᏕᎶᏆᎡ -12.1354 ▁ᎮᏙᎮᏍᏗ -12.1354 ▁ᎠᎾᏙᎴ -12.1354 ▁ᏗᏂᎧᎿᏩᏗ -12.1354 ▁ᎢᏥᏲᏍᏓ -12.1354 ᎷᏥᎴᎢ -12.1354 ᏃᎲᎳ -12.1354 ▁ᏍᎩᏯᏓᏅᏖ -12.1354 ▁ᎨᏯᏔᎯ -12.1355 ᎾᏢᏆ -12.1355 ᏓᏂᎸᏣ -12.1355 ▁ᎠᎩᎷᎳ -12.1355 ▁ᎤᏂᏯᏅᎮ -12.1355 ▁ᎷᏫ -12.1355 ▁ᎤᎾᏜᏏᏛᎡ -12.1355 ▁ᏚᎵᏏᎲᏒᎩ -12.1355 ▁ᏭᎾᏌᎾᎩ -12.1355 ▁ᎤᎾᏘᏅᏎ -12.1355 ▁ᏓᎾᏤᎨᏍᏗᏉ -12.1355 ▁ᎦᏓᏅᏖᎭ -12.1355 ▁ᏚᏅᎵᏰᎥ -12.1355 ▁ᏦᎯᏳᏎᏍᏗᏉ -12.1355 ▁ᎠᏓᏍᏕᎸᎯᏙᎯ -12.1355 ᏰᎶᎵ -12.1355 ▁ᎢᏣᏛᏓᏍᏓᏁᎮᏍᏗ -12.1355 ▁ᏯᏙᏢᎾ -12.1355 ▁ᎠᎩᏍᏓᏩᏛᏍᏗᏱ -12.1355 ▁ᎤᎶᏐᏂᏗ -12.1355 ▁ᎨᎬᏬᎣᏗ -12.1355 ▁ᎯᏗᎦᏔᎭ -12.1355 ▁ᏭᎩᏎ -12.1355 ▁ᏫᏗᎨᎦ -12.1355 ▁ᏥᎾᏆᏍᏗᏉ -12.1355 ᎩᏩᎯᏍᏙᏗ -12.1355 ▁ᏚᎭᎾᏬ -12.1355 ▁ᏱᏅᏛᏅᏁᎵ -12.1356 ▁ᏇᎴᏗ -12.1356 ᏰᎢᏍᏔᏁ -12.1356 ▁ᏧᏬᏑᎴᏗ -12.1356 ▁ᎡᏥᎥᏏ -12.1356 ▁ᎤᏓᏁᏟᏴᏍᏓᏁᎸ -12.1356 ᏚᎾᏟᏯᏛ -12.1356 ▁ᎤᎾᏠᏯᏍᏗ -12.1356 ▁ᎤᏄᏘ -12.1356 ᏕᎳᏍᏗ -12.1356 ▁ᏘᏅᏏᏗ -12.1356 ▁ᎤᎧᏨ -12.1356 ▁ᏥᏍᏆᎸᎾ -12.1356 ▁ᏗᏄᏪ -12.1356 ᎤᎸᎯ -12.1356 ᏓᎬᏅᏁᎵ -12.1356 ▁ᎩᎳᏋ -12.1356 ᏓᏢᏍᏛ -12.1356 ee -12.1356 ▁ᏚᏓᎥ -12.1356 ▁ᏩᎦᏘᏃᎸᎩ -12.1356 ᏫᏍᏔᏁᎲ -12.1356 ▁ᏓᎾᏓᏛᏛᎲᏍᎨ -12.1356 ▁ᏫᎣᎩ -12.1356 ▁ᎨᏥᏐᏅᎢᏍᏔᏅᎯ -12.1357 ᎬᏲ -12.1357 ᏂᏂᏴᎯ -12.1357 ▁ᏗᏣᏓᏂᎸᎢᏍᏗ -12.1357 ▁ᏱᏂᏨᏪᏎᎴ -12.1357 ᏅᎰᏁ -12.1357 ▁ᎤᎾᏅᏣᏛ -12.1357 ᏩᏗᏒᏂ -12.1357 ▁ᎤᏍᏗᏱᏛ -12.1357 ▁ᏚᏓᏟᏴᎮ -12.1357 ᏥᏂᏕᎯ -12.1357 ▁ᏱᏥᏰᎸᏍᎨᏍᏗ -12.1357 ᏓᏦᎳᏂᏒ -12.1357 ▁ᏱᏂᏣᏛᏁᎮᏍᏗ -12.1357 ▁ᏫᏗᎦᎦᏂ -12.1357 ▁ᏁᎭᏗ -12.1357 ▁ᏣᏓᏪᎵᎩᏍ -12.1357 ▁ᎤᏛᏕᏍᏗ -12.1357 ▁ᎤᏬᏟ -12.1357 ▁ᏗᎩᎧᎿᏩᏛᏍᏗ -12.1357 ▁ᏚᎵᏍᎪᎸᏓᏁᎴ -12.1357 ᏄᏪᏍᏗᏱ -12.1357 ▁ᎢᏣᏕᏘᏴᏛ -12.1357 ᏫᏍᏓᏁᏗ -12.1357 ᎳᏲᏍᎨ -12.1357 ▁ᎢᎩᏁᏤᎸ -12.1357 ▁ᏭᏩᏂᎦᎸ -12.1357 ᎵᏁᏌᎸ -12.1357 ▁ᎠᎵᏃᎯᏯ -12.1357 ▁ᎢᏧᏅᏁᎸᎯ -12.1357 ▁ᏫᏂᏣ -12.1357 ▁ᎠᏙᏑᎴᏗᏱ -12.1357 ▁ᎠᏟᏅᏨ -12.1357 ▁ᎠᎾᏓᏃᎮᎵᏙᎯ -12.1357 ▁ᎠᎩᏍᏕᎸᏛ -12.1357 ▁ᎤᏔᏲᏎᎸ -12.1357 ▁ᏗᏑᏴᏅ -12.1357 ▁ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ -12.1357 ᎾᏁᏍᎬ -12.1357 ▁ᎤᎾᏨᏉ -12.1357 ▁ᎠᎩᏍᏆᎸᎡ -12.1357 ▁ᏧᎴᏙᏗᏱ -12.1357 ▁ᎠᏛᏲᎱᏏ -12.1357 ▁ᎠᏖᎸᏅᎯ -12.1357 ▁ᎤᏂᏄᎪᏫᏎ -12.1357 ᏄᏂᏪᏒᎩ -12.1358 ▁ᎠᎪᏎᎲᎩ -12.1358 ▁ᎠᏆᎫᏴᎡᎲᎢ -12.1358 ▁ᎠᏓᏛᏍᎪᎢ -12.1358 ▁ᎤᎾᎦᏙᏍᏙᏗ -12.1358 ᏓᏬᏔᏂ -12.1358 ▁ᏱᏙᎩᎸᏫᏍᏓᏁᎭ -12.1358 ▁ᏚᏂᎳᏫᏤ -12.1358 ▁ᎠᏂᏴᎯᎭ -12.1358 ▁ᎠᏛᎵᏍᎬ -12.1358 ▁ᎤᏂᏍᏙᎸ -12.1358 ▁ᏧᏭᎪᏓᏁᏗ -12.1358 ▁ᎠᎵᎮᎵᏤᎰᎢ -12.1358 ▁ᏱᏭᎷᏨ -12.1358 ▁ᏫᏥᏩᏛ -12.1358 ▁ᎤᏯᏍᎦ -12.1358 ▁ᎤᏓᏅᎦᎸᏗ -12.1358 ▁ᏘᏂᏴ -12.1358 ▁ᏂᏚᏛᏓᏍᏓᏁ -12.1358 ▁ᏳᏰᏨ -12.1358 ▁ᎠᏉᏚᎯ -12.1358 ▁ᎠᎾᏦᎥ -12.1358 ▁ᎯᏍᏆᎵ -12.1358 ▁ᎠᏍᎪᎩᏍᎬ -12.1358 ▁ᎠᏂᏝᎲᏍᎪ -12.1358 ᎧᎯᏴᏍᏗ -12.1358 ▁ᎠᏓᏍᏕᏓᎵᏴᏍᎬ -12.1358 ▁ᏱᏂᏨᎦ -12.1358 ᏓᏁᎳᏁᎸᎯ -12.1358 ▁ᎤᏁᏍᎨᎲᎯ -12.1358 ▁ᎡᎩᏁᏗᏱ -12.1358 ▁ᏥᏁᎢᏍᏓ -12.1358 ▁ᎤᏎᎦᎳᎯ -12.1358 ▁ᎣᎩᎶᏐᏅ -12.1359 ▁ᎠᏔᎸᎩᏓ -12.1359 ▁ᎤᏁᎢᏍᏔᏁᎴ -12.1359 ▁ᏥᏍᏓᏩᏕᎦ -12.1359 ▁ᏚᎩᎸᏔᏁ -12.1359 ▁ᎤᎾᎵᏃᎮᏔᏁ -12.1359 ▁ᎤᎦᏴᎳᏥᎶᏛ -12.1359 ▁ᎤᎾᎴᏲᎥ -12.1359 ▁ᎤᏓᏁᎪᏴᏓ -12.1359 ▁ᏧᎴᏁᎢ -12.1359 ▁ᎦᎵᎥᏂᎮ -12.1359 ▁ᎬᏩᏛᏁᎢ -12.1359 ▁ᎠᎩᏲᎱᎯᏎᎸᎯ -12.1359 ▁ᎠᏓᏅᎦᎸᏗ -12.1359 ▁ᏣᎦᎨᏅ -12.1359 ᏛᏓᏍᏓᏁᎯ -12.1359 ▁ᏚᏂᎸᏫᏍᏓᏁᎭ -12.1359 ▁ᎨᎵᏒᎭ -12.1359 ᏣᏢᏆ -12.1359 ▁ᎬᏩᏁᏄᎳᏍᏗᏍᎨ -12.1359 ▁ᎢᏯᏯᏖᏅ -12.1359 ᏥᏄᎪᏨ -12.1359 ▁ᏚᏂᏯᏪᎨ -12.1359 ▁ᎢᎬᏩᎵᏍᏔᏅᎯ -12.1359 ▁ᏫᎫᏓᎸ -12.1359 ▁ᏧᏂᏅᏬᏗᏱ -12.1359 ▁ᏄᏬᏚ -12.1359 ▁ᎤᏂᎦᎵᏴ -12.1359 ▁ᏣᏗᏥ -12.1359 ▁ᎠᏆᏎᎮᎲ -12.1359 ▁ᎤᎩᏍᏙᎡ -12.136 ᏍᏕᎵᏍᎨᏍᏗ -12.136 ᏚᎳᏕ -12.136 ▁ᎯᎪᎢᎦ -12.136 ▁ᎤᏂᎾᏕᎨ -12.136 ▁ᎨᎦᏠᏯᏍ -12.136 ▁ᎤᏂᏁᏓᏥᏛ -12.136 ▁ᎢᏣᏓᏅᏔᏩᏕᎦ -12.136 ▁ᎤᏂᏍᏓᏩᏛᏛ -12.136 ▁ᎠᏂᏃᏔᏅ -12.136 ▁ᏴᎦᏰᎳ -12.136 ᎪᏔᏂ -12.136 ▁ᎢᏗᎾᏌ -12.136 ᏍᏙᏴᏗ -12.136 ▁ᎢᏥᏂᏆᏘᎮᏍᏗ -12.136 ▁ᏚᏓᏬᎥ -12.136 ▁ᎤᏩᏅᏤ -12.136 ▁ᎠᏆᎵᏂᎩᏛ -12.136 ▁ᎠᏂᏍᏔᏩᏗᏒ -12.136 ᏃᏍᎩᏒᎩ -12.136 ▁ᏯᏆᏛᎾ -12.136 ▁ᎦᎾᏌᎢ -12.136 ▁ᎬᏩᏔᏲᏎᎯ -12.136 ▁ᏭᎴᏅᎮ -12.136 ▁ᎠᏲᎱᏍᎨᎢ -12.136 ▁ᏗᏉᏪᎳᏅ -12.136 ᏤᎸᏍᎦ -12.136 ▁ᎬᏩᏓᏅᏬᏗ -12.136 ▁ᏚᎾᎵᏥ -12.1361 ▁ᎤᏃᎯᏴᎯ -12.1361 ▁ᎾᎦᏛᏁᎸ -12.1361 ▁ᏓᏤᎴᏍᏗ -12.1361 ᏁᏄᎳᏍᏗᏍ -12.1361 ▁ᏥᏚᎳᏍ -12.1361 ▁ᎠᏊᏓᎴ -12.1361 ▁ᎯᎪᎥᎯ -12.1361 ▁ᎠᎦᏓᎢᏅ -12.1361 ᏂᎩᏍᏙᏗᏱ -12.1361 ▁ᎤᎾᏠᎾᏍ -12.1361 ▁ᎠᏂᎦᏔᎿᎥ -12.1361 ▁ᎢᎩᏯᎥᎢ -12.1361 ᏍᎩᎨᏳ -12.1361 ▁ᏕᎨᏥᏰᎸ -12.1361 ▁ᏱᏦᎯᏳᎲᏍᎦ -12.1361 ▁ᏚᏂᏪᏎᎸᎩ -12.1361 ▁ᎤᏅᎾᏏ -12.1361 ▁ᏂᎦᏍᏛ -12.1361 ▁ᎤᏂᏍᏓᏩᏕᏅ -12.1361 ▁ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎩ -12.1361 ᏗᏍᏓᏚᏓ -12.1362 ▁ᎢᎩᎩᎵᏲᏤ -12.1362 ▁ᎨᏙᎯᏉ -12.1362 ▁ᎠᏓᏛᏂᏗᏍᎩ -12.1362 ▁ᎤᏄᏖᏒᎩ -12.1362 ▁ᏃᎩᏅᏁᎸᎩ -12.1362 ▁ᏫᏥᎪᎥᎩ -12.1362 ▁ᎠᏍᏆᏗᏍᎬ -12.1362 ▁ᏚᏂᎦᎵᏒᎩ -12.1362 ᏬᏗᎭ -12.1362 ▁ᎠᏥᎸᏉᏓ -12.1362 ▁ᏧᎷᏫᏍᏓᏁᏗ -12.1362 ▁ᏭᏘᏅᏍᏔᏅᎩ -12.1362 ▁ᏗᏟᏃᎮᏙᏗ -12.1362 ▁ᏧᏛᏅᎢᏍᏔᏁ -12.1362 ▁ᏗᏣᎧᏃᏗᏱ -12.1362 ▁ᎠᏂᏍᏙᏍᎨᏍᏗ -12.1362 ᎵᏗᏍᎩᏍᎬ -12.1362 ᏄᎪᏓᏁᎮᏍᏗ -12.1362 ▁ᏫᏚᏓᏴᎳᏛ -12.1362 ᏏᏛᏂᎸᎩ -12.1362 ▁ᎦᎾᎪᎢ -12.1363 ▁ᎤᏂᏰᏣ -12.1363 ᎯᏯᏍᎨᏍᏗ -12.1363 ▁ᏂᎦᏪᏍᎨᏍᏗ -12.1363 ᏖᎸᎲᏍᎩ -12.1363 ᎴᏲᎡᎸ -12.1363 ▁ᎤᎸᎲᎩ -12.1363 ▁ᎤᏚᎢᏍᏔᏁ -12.1363 ▁ᎠᏙᎩᏯ -12.1363 ▁ᏓᏏᎳᏛᎥᏍᎬ -12.1363 ᎩᎷᏤᎭ -12.1363 ▁ᏂᎦᏛᏁᎰ -12.1363 ᏝᏗᏍᏔᏂᏙ -12.1363 ▁ᎠᏥᎶᏛ -12.1363 ▁ᎠᏯᏙᎵᏳ -12.1363 ▁ᎤᏂᎪᏗᏱ -12.1363 ▁ᏚᏩᏐ -12.1363 ▁ᎠᏍᏛᎪᏒ -12.1363 ▁ᏘᎴᏂ -12.1363 ▁ᏗᎵᏰᎢᎸᏍᏗᏍ -12.1363 ▁ᏥᏍᏆᏙᎾ -12.1363 ᎵᏆᏗ -12.1363 ▁ᎬᏩᏜᏫᏍᏗ -12.1363 ▁ᏕᎦᏚᏓᏕᏫᏒᏰᏃ -12.1364 ▁ᏓᎾᎪᎲᏍᏗᏍᎨ -12.1364 ▁ᏥᎨᏔ -12.1364 ▁ᎦᎵᏉᎩᏦᏁ -12.1364 ▁ᎤᏁᎷᎩ -12.1364 ᏐᏢᏗᏍᎩ -12.1364 ▁ᎠᎴᏫᏍᏙᏗ -12.1364 ᎫᎫ -12.1364 ▁ᏱᏣᏅᏔ -12.1364 ᎦᏅᎦᎸᎯ -12.1364 ▁ᏗᏟᏰᎵᏓᏍᏗ -12.1364 ▁ᎬᏩᏳᏤ -12.1364 ▁ᎣᎨᏅ -12.1364 ▁ᎨᏥᏍᎦᏨᎯ -12.1364 ᎦᎨᎠᏗᏔᏍᏗ -12.1364 ▁ᏥᎧᏁᎦ -12.1364 ce -12.1364 ▁ᏗᎾᎢᏎ -12.1364 ▁ᏱᏂᏣᏛᎦ -12.1364 ▁ᏕᎬᏂᎦ -12.1364 ᎤᎾᏚᏓᏖᏍᏗ -12.1364 ᎾᏙᏢ -12.1364 ▁ᎯᏃᎮᏍᎨᏍᏗ -12.1364 ▁ᎡᏟᏯ -12.1364 ▁ᎤᏥᏍᏔᏁ -12.1365 ᏝᎲᎦ -12.1365 ▁ᏍᎩᎨᏳᎮᏍᏗ -12.1365 ▁ᎬᏬᎯᏳᏗ -12.1365 ▁ᎡᎯᏄᎪᎢ -12.1365 ▁ᏕᎨᎦᏬᎥ -12.1365 ᏓᏓᏟᏌᏁ -12.1365 ᏩᏛᎡᎯ -12.1365 ▁ᎤᎾᎧᏙᏍᏕ -12.1365 ᏐᏈ -12.1365 ▁ᎠᏍᏕᏴ -12.1365 ▁ᏗᏂᏙᎩ -12.1365 ▁ᎬᏍᏕᎵᏍᎬ -12.1365 ᎭᏦᎣ -12.1365 ▁ᏓᏎᎯ -12.1365 ▁ᎤᎵᏇᏅ -12.1365 ▁ᎣᏤᎪ -12.1365 ᏓᏛᏂᎯ -12.1366 ▁ᎢᏤᏯᏙᏤᎮᏍᏗ -12.1366 ▁ᎠᏯᏂᎭ -12.1366 ▁ᏯᏥᎸ -12.1366 ▁ᏧᎷᎸᏗᏱ -12.1366 ▁ᏥᎾᎬᏁᎴ -12.1366 ▁ᏱᏄᎵᏍᏓᏁᎮ -12.1366 ▁ᏗᎦᏯᎩᏍᏗ -12.1366 ᎩᎾᎵᏍᎩᏒ -12.1366 ▁ᏚᏯᏪᏨ -12.1367 ᎩᏪᎡᎸᎩ -12.1367 ᏗᎩᏯᏍᏗᏱ -12.1367 ᏩᏓᏟᏌ -12.1367 ▁ᎯᏁᏥᏱ -12.1367 ▁ᏂᏙᎲᏁ -12.1367 ▁ᎤᏲᏏᏍᎩ -12.1367 ▁ᎢᏥᎩᎵᏲᎢᏍᏗᏱ -12.1367 ▁ᎠᎾᏓᏙᎵᏍᏓᏁᎲ -12.1367 ᏥᏩᏛᎲᏒᎩ -12.1367 ▁ᏣᏛᎦᏅᎢ -12.1367 ▁ᏱᏚᏃᏕ -12.1367 ▁ᎠᎪᎲᏍᏙᏗᏱ -12.1367 ▁ᎤᏟᏃᎮᏔᏅ -12.1368 ᏇᏄᎩ -12.1368 ᏦᏪᎳᏁᎸ -12.1368 ▁ᏥᏚᎢᏍᏗ -12.1368 ▁ᏓᏥᏐᏅᏅ -12.1368 ▁ᏣᎴᏂᏓᏍᏗᏱ -12.1368 ᏝᏁᎴᎢ -12.1368 ▁ᏭᏩᏁ -12.1368 ▁ᎢᎯᏴᏁᏗᏱ -12.1368 ▁ᏯᏆᏓᏅᏖ -12.1368 ᏛᏔᏃᏅ -12.1368 ᏓᎦᏥᏴᏁᎵ -12.1368 ▁ᏚᏮᏕ -12.1368 ▁ᎤᏂᏍᏉᎵᏱ -12.1368 ▁ᏭᏗᏅᏒᎩ -12.1368 ᎦᏐᎠᏒᎩ -12.1368 ▁ᎯᏲᏍᏓ -12.1368 ᏠᎲ -12.1368 ▁ᏛᏂᏍᏓᏩᏕᏏ -12.1369 ▁ᏗᏥᏅᏍᏓᏕᎸᎩ -12.1369 ▁ᎯᏬᏁᏔᏅ -12.1369 ▁ᎠᏁᎵᏍᎩ -12.1369 ᏬᎥᏎ -12.1369 ᏂᏴᏗᎯ -12.1369 ᎸᎣᎢ -12.1369 ▁ᎠᏥᏲᏍᏗ -12.1369 ▁ᎤᏛᏅᎢᏍᏔᎾ -12.1369 ᎾᏁᎳᏓ -12.1369 ᏂᏪᏍᎨᎢ -12.1369 ▁ᏱᎨᏥᎪ -12.1369 ▁ᏂᏨᏁᎭ -12.1369 ▁ᎠᎾᏓᏬ -12.1369 ▁ᏳᎦᏘᏓ -12.1369 ▁ᏗᏥᎪᎥ -12.1369 ▁ᎡᏥᏙᎵᏍᏗᏱ -12.137 ▁ᏦᏏᏆ -12.137 ▁ᏩᎦᏖᎢ -12.137 ▁ᎬᏯᎵᏃᎮᏙᏗᏱ -12.137 ᎱᏃᏴ -12.137 ▁ᏥᏗᎦᏔᎭ -12.137 ▁ᏱᏗᎬᎩ -12.137 ▁ᎠᏓᎶᏄᎮᏍᎩ -12.137 ▁ᎯᎪᏩᏘᏍᎨᏍᏗ -12.137 ▁ᎤᎾᏌᎥ -12.137 ᏅᏛᎢ -12.137 ▁ᏂᎦᎨᏒ -12.137 ▁ᏯᏥᏃᏍᎩ -12.137 ▁ᏧᏂᎪᎵᏰᏗ -12.137 ᏤᏪᎸ -12.1371 ▁ᏆᏏᏗᏱ -12.1371 ▁ᎤᏂᏁᏤᎸᎩ -12.1371 ▁ᏚᏓᏅᎡᎸᎩ -12.1371 ᎾᏓᏡᏩᏗᏒᎢ -12.1371 ▁ᏣᎩᏰᎸᎭ -12.1371 ᏝᏅᎩ -12.1371 ▁ᎤᏟᏂᎬᏁᎴ -12.1371 ▁ᎤᎾᏁᏦ -12.1371 ▁ᎣᎩᏲᏍᏙ -12.1371 ▁ᎠᏂᏲᏍᏗᏍᎩ -12.1371 ᎨᎲᎯ -12.1371 ▁ᏚᏄᏓ -12.1371 ▁ᏙᎩᎲᎢ -12.1371 ▁ᎤᎾᏓᏓᏍᎩᏌᏁ -12.1371 ᎩᎸᏗᏍᎬ -12.1371 ᏁᎥᏏ -12.1372 ▁ᏚᏃᎮᎮᎴ -12.1372 ᎾᎵᏍᏓ -12.1372 ᏍᏆᏛᎦᏍᏓ -12.1372 ▁ᏕᎪᎩᏂ -12.1372 ▁ᎤᏚᏓᏕᏫᏒ -12.1372 ▁ᎯᎧᏔᎭ -12.1372 ▁ᎥᏆᎫᏴᎡ -12.1372 ▁ᏣᏅᏅᎢ -12.1372 ▁ᎢᎤᏁᏨ -12.1372 ▁ᏘᏍᏆ -12.1372 ᏍᏗᎷᎩ -12.1372 ▁ᏭᏃᎯᏎᎴ -12.1372 ▁ᎺᏌ -12.1372 ▁ᎯᏯᏠᏯᏍᏔᏅ -12.1372 ᎰᎻ -12.1372 ▁ᎤᏂᎦᏘᏯ -12.1372 ▁ᎠᏂᏍᎦᏅᎩ -12.1373 ▁ᏓᎹᏂ -12.1373 ▁ᏳᏪᏅ -12.1373 ▁ᎤᏄᏮᎢ -12.1373 ▁ᎾᎩᏲ -12.1373 ▁ᎠᏩᏛᏙᏗ -12.1373 ▁ᎤᏯᏤᎢ -12.1373 ᎪᎳᏗᏴᏗᏱ -12.1373 ▁ᏕᏥᏍᏕᎵᏍᎬᎢ -12.1373 ▁ᎤᏘᏍᏛᎢ -12.1373 ▁ᎠᏂᏯᏙᎯᎲᎢ -12.1373 ▁ᎢᏣᏓᏁᏟᏴᏎᎬᎢ -12.1373 ▁ᎤᎾᏄᎪᏤᎢ -12.1373 ▁ᎤᏂᏐᏅᏤᎴᎢ -12.1373 ᏓᏂᏙᎵᎬ -12.1373 ▁ᎠᎾᏓᏁᏟᏴᏎᎬᎢ -12.1373 ▁ᎥᏆᎸᎥᎢ -12.1373 ▁ᎤᎵᏯᏍᏚᏁᎢ -12.1373 ▁ᏕᏣᏁᎶᏛᎢ -12.1373 ▁ᏚᏪᎳᏍᏔᏁᎢ -12.1373 ▁ᏙᏗᎧᏅᎢ -12.1373 ▁ᏧᏬᎯᏳᏁᎢ -12.1373 ▁ᏂᏥᏪᏒᎢ -12.1373 ▁ᎨᏥᏛᏔᏁᎢ -12.1373 ▁ᏍᎩᎷᏤᏗᏱ -12.1373 ▁ᎡᏦᏎᎲᎢ -12.1373 ▁ᏚᏬᏁᏔᏅᎢ -12.1373 ▁ᎨᏥᎨᏳᎢ -12.1373 ᏂᏚᏑᏰᏐ -12.1374 ▁ᏍᎩᏰᎯ -12.1374 ▁ᏕᎨᏥᎾᏝᎥᎢ -12.1374 ᏃᎲᎵ -12.1374 ▁ᎤᏂᏂᏴᏛ -12.1374 ᏑᎵᎭ -12.1374 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎪᎢ -12.1374 ▁ᏫᏳᎶ -12.1374 ▁ᎢᏨᎨᏳᏒᎢ -12.1374 ▁ᎤᎵᎶᎲᏍᎩ -12.1374 ᏂᏁᎢᏍᏗ -12.1374 ▁ᏴᏓᏥ -12.1374 ▁ᎬᏴᏗᏍᎬᎢ -12.1374 ▁ᎢᎩᏬᏂᎯᏍᏗ -12.1374 ▁ᎭᎢᏒᎢ -12.1374 ▁ᎤᎴᏴᏎᎢ -12.1374 ▁ᏚᎵᏦᏛᎢ -12.1375 ▁ᎤᎦᏙᏍᏛ -12.1375 ▁ᏙᏓᏦ -12.1375 ▁ᏧᏅᏕ -12.1375 ▁ᏚᏨᏍᏛ -12.1375 ▁ᎠᏂᎧᎲᏍ -12.1375 ▁ᏥᏔᏲᎯᎲ -12.1375 ▁ᏥᏩᏴᎯ -12.1375 ▁ᎠᏆᏛᏅᎢᏍᏔᏅ -12.1375 ▁ᏛᎦᏛᎩ -12.1375 ▁ᏓᏆᏙᏍᏛ -12.1375 ▁ᎢᎦᏤᎵᎪᎯ -12.1375 ᏍᏕᎲ -12.1375 ▁ᎤᏩᏩᏙᎣ -12.1375 ᏔᏗᏍᎬ -12.1375 ᏂᏔᎳᏬᏍᎬ -12.1375 ▁ᎤᎨᎲᏎ -12.1375 ▁ᏗᏍᎩᏯᏓᏂᎸᎩ -12.1375 ᏑᎵᏍᎬᎢ -12.1375 ▁ᏂᎪᎩᏪᏎ -12.1375 ▁ᏗᏍᏙᏍ -12.1376 ▁ᎦᎵᏓᏍᏔᏅ -12.1376 ▁ᎠᎫᎢᏍᏗᏍᎬᎢ -12.1376 ▁ᏚᏃᎮ -12.1376 ▁ᏳᏩᏔᏅ -12.1376 ▁ᏂᎨᏐ -12.1376 ▁ᏅᏓᏲ -12.1376 ▁ᏗᏣᎸᏫᏍᏓᏁ -12.1376 ▁ᏕᎦᎾᏄᎪᏫᏎ -12.1376 ᎴᏴᏍᏓ -12.1376 ▁ᎢᏧᏅᏁᏗᏱ -12.1376 ▁ᏭᏗᏢᏍᏔᏁᎢ -12.1376 ᏧᏡᏍ -12.1376 ▁ᏚᎾᏗᏅᏎ -12.1376 ▁ᏖᏏ -12.1376 ▁ᎬᏩᏍᏚ -12.1376 ᏰᎥ -12.1377 ▁ᎦᎴᏴ -12.1377 ▁ᎥᎿ -12.1377 ▁ᏧᏂᎶᏎᎢ -12.1377 ▁ᏚᎾᏐᎸ -12.1377 ᏌᏗᎦ -12.1377 ▁ᎤᏂᎿᎷᏒ -12.1377 ▁ᎠᏆᎴᏅᎲ -12.1377 ▁ᏓᎾᏣ -12.1377 ▁ᎥᎩᎱᏍᏕᏎᎸ -12.1377 ▁ᏧᏍᏆᏃᏴᎪ -12.1377 ▁ᏥᏄᎾᎵᏍᏔᏅ -12.1377 ▁ᏩᏂᎶᎯ -12.1378 ▁ᎠᏆᎴᏂᏓᏍᏗᏱ -12.1378 ▁ᏣᏝᎮ -12.1378 ▁ᎬᏩᏍᏕᎵᏍᎩ -12.1378 ▁ᎤᏄᏢᏔᏅᎩ -12.1378 ᎦᎵᏍᏗᏰᏓᏁᎭ -12.1378 ▁ᏓᏁᎨ -12.1378 ▁ᏳᏗᏛᎭ -12.1378 ᏂᏉᏘ -12.1378 ▁ᏕᏥᏁᎮᏍᏗ -12.1378 ▁ᏯᎾᏌ -12.1378 ▁ᎬᏩᏍᏓᏩᏗᏙᎮ -12.1378 ▁ᎠᏁᏙᎵᏙ -12.1378 ▁ᏫᏨᎷᏤᎸ -12.1378 ▁ᎢᏣᏛᏁᎸᎩ -12.1378 ᏥᏯᎵᏗᎡ -12.1378 ᏥᏌᎳᏓᏅᎭ -12.1378 ▁ᏗᏨᏳᎪᏓᏁᏗ -12.1379 ▁ᏱᏃᏣᏛᏁ -12.1379 ▁ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ -12.1379 ▁ᏓᏣᎾᏄᎪᏫᏎᎵ -12.1379 ᏥᏙᎵᏨᎯ -12.1379 ᏚᎪᏓᏁᎸ -12.1379 ᏥᏍᏓ -12.1379 ▁ᏗᏂᏁᎳ -12.1379 ▁ᎤᏪᏯᏢᏁ -12.1379 ▁ᎠᎾᏙᎴᎰᏍᏗ -12.1379 ▁ᎠᏂᎩᏌ -12.1379 ▁ᏱᏂᏨᏁᎸ -12.1379 ▁ᎤᏂᏍᏆᏂᎪᏍᎨᎢ -12.1379 ▁ᏚᏲᎵᎴ -12.1379 ᎵᎥᏂᏍᏗᏱ -12.1379 ▁ᎢᏧᏩᏁᎸᎯ -12.1379 ▁ᏚᏬᏕᎯᎰᎢ -12.1379 ▁ᏍᎩᏂᏙᎵᎩ -12.1379 ▁ᏧᏂᎪᏩᏛᏗ -12.138 ᏅᏏᏙ -12.138 ▁ᎬᏩᏂᏆᏘᎴᎢ -12.138 ▁ᎢᏤᏅᏒᎩ -12.138 ▁ᎠᏂᏰᎵᏒ -12.138 ᎵᏰᎢᎶᎦ -12.138 ▁ᎤᏠᏯᏍᏙᏗᏱ -12.138 ▁ᎦᎾᏄᎪᏫᏍᎬ -12.138 ▁ᏙᏓᏨᏲᏏ -12.138 ▁ᏚᏍᏔᏅᏅ -12.138 ▁ᏣᎢᏎᎢ -12.138 ▁ᏙᏛᏂᎵ -12.138 ▁ᎦᎾᎱᎩᏍᎬ -12.138 ▁ᏍᎩᏲᎮᎸᎭ -12.138 ▁ᏗᏣᎸᏫᏍᏓᏏ -12.138 ▁ᏗᏥᎸᏫᏍᏓᏏ -12.138 ▁ᎭᎴᏫᏍᏓ -12.138 ▁ᏙᏓᎬᏩᏂᎾᏢᏂ -12.138 ▁ᎤᎵᏍᏛᏂᎴᎢ -12.138 ▁ᏂᎬᏩᏅᎿᏕᎬ -12.138 ▁ᎤᎿᏍᎬᏤ -12.138 ▁ᎭᏓᏄᏖᏯ -12.138 ▁ᎯᏄᏴᏓ -12.138 ▁ᎾᏋᏁᎭ -12.138 ᏓᏅᎦᎸᎾ -12.138 ▁ᎤᏂᏂᎬᎬ -12.138 ▁ᎤᏄᏬᏍᏛᎩ -12.138 ▁ᏮᏓᏨᎷᏤᎵ -12.138 ▁ᏥᏯᏎᎵᏓᏁᎸ -12.138 ▁ᎬᏩᏛᎦᏁᎸᎯ -12.138 ᏆᎭᎻ -12.138 ▁ᏓᎩᎷᏫᏍᏔᏁ -12.138 ▁ᏥᎩᎵᏲᎦ -12.138 ▁ᎠᏂᏥᎸᏍᎩ -12.138 ᏑᎴᎥᎯ -12.138 ᏴᎲᎭ -12.138 ▁ᏓᏛᎩᎭ -12.1381 ▁ᏥᏆᎵᏏ -12.1381 ▁ᏫᏂᎨ -12.1381 ▁ᏧᏭᎪᏓᏁᏗᏱ -12.1381 ▁ᎦᏅᏁᎮᏍᏗ -12.1381 ▁ᏳᏓᎸ -12.1381 ▁ᎤᏓᏱᎸᎩ -12.1381 ▁ᎩᏯᏒᎦᎶᏗ -12.1381 ▁ᎧᏃᎨ -12.1381 ▁ᏧᏃᏪᎳᏅᎯ -12.1381 ▁ᏓᏍᎫᏓᏛ -12.1381 ▁ᏭᎦᏖ -12.1381 ᏓᏲᏤᎳᏍᏔᏂ -12.1381 ▁ᏂᎦᎵᏍᏔᏂᎦ -12.1381 ▁ᎤᎩᎶᏫᏎ -12.1381 ▁ᎤᏤᎸᎲ -12.1381 ▁ᏱᏯᎡ -12.1381 ▁ᏗᏯᏠ -12.1381 ▁ᎤᎾᏛᎦᏁᎸ -12.1381 ᎯᏌᏔᏁᎢ -12.1381 ▁ᎤᏓᏂᏯᏛ -12.1381 ▁ᏕᎤᎸᏫᏍᏓᏁᎭ -12.1381 ▁ᏓᏓᎾᏄᎪᏫ -12.1382 ▁ᏱᏙᎬᏂ -12.1382 ▁ᏛᏂᏍᏗᏍᎩ -12.1382 ▁ᏤᏅᏒᎩ -12.1382 ▁ᏅᏆᏓᎴᏉ -12.1382 ▁ᏚᏫᏎᎢ -12.1382 ᏅᏩᏅᎯ -12.1382 ▁ᏗᎨᎶ -12.1382 ▁ᏳᎾᏚᎵᎭ -12.1382 ▁ᎤᎾᏓᏈᎬ -12.1382 ▁ᏂᎬᏂᏏᎭ -12.1382 ▁ᏦᎳᎻ -12.1382 ▁ᏚᎾᏂᏏ -12.1382 ᏏᏛᏒᎾ -12.1382 ▁ᎤᏓᏙᎵᏍᏓᏁᎸᎩ -12.1382 ▁ᏓᎦᎵᏬᏥ -12.1382 ▁ᎦᏝᏗ -12.1382 ᏗᏁᎸᏙᏗ -12.1383 ᎳᏫᏎᎰ -12.1383 ▁ᎢᏥᏍᏕᎸᏗᏱ -12.1383 ᏂᏔᏲᏎᏗᏱ -12.1383 ▁ᎠᏯᏠ -12.1383 ▁ᎦᎾᎡ -12.1383 ▁ᎤᏂᎵᏓᏍᏔᏅ -12.1383 ▁ᎬᏬᎵᏍᏗ -12.1383 ▁ᏧᎾᏄᎪᏫᏎᎸᎯ -12.1383 ▁ᎠᏥᏃᎮᎭ -12.1383 ▁ᏇᎵᏂ -12.1383 ▁ᏗᎩᎡᏗᏱ -12.1383 ᏢᏉᏙᏗ -12.1384 ▁ᎹᏓᏂ -12.1384 ▁ᎠᏂᏗᏢᏉ -12.1384 ▁ᎤᏓᏙᎵᏍᏔᏅᏎᎢ -12.1384 ▁ᎢᏥᏍᎦᎩ -12.1384 ▁ᏧᏦᏗ -12.1384 ▁ᏧᏓᏂᏐᏗᏱ -12.1384 ▁ᏗᏍᏙᏍᏗ -12.1384 ▁ᎭᎹ -12.1384 ▁ᎦᎷᎨ -12.1384 ᏍᏙᏍᎨᏍᏗ -12.1385 ▁ᏌᎹ -12.1385 ᏍᏓᏊ -12.1385 ▁ᎤᏂᏁᎦᎸ -12.1385 ▁ᏳᏂᏃᎮᎴ -12.1385 ▁ᏥᏕᎦᏘ -12.1385 ▁ᎬᏩᎷᎯᏍᏗ -12.1385 ▁ᏥᏫᏗᎦ -12.1385 ▁ᏥᏫᏍᎪᎢ -12.1385 ▁ᎦᏥᎦᏔᎭ -12.1385 ᏗᎦᏣᏃᏍ -12.1385 ▁ᏚᏬᏯᏁᏎᎢ -12.1385 ᏑᎴᎭ -12.1386 ᏂᏙᎭ -12.1386 ▁ᏓᏆᏢ -12.1386 ▁ᎦᎵᏥᏙᏅ -12.1386 ▁ᏳᎪᏩᏛ -12.1386 ▁ᏕᏣᏓᏛᏗᏍᎬ -12.1386 ᏙᎵᏥᏰᏃ -12.1386 ᏮᏔᏁᎢ -12.1386 ᏏᏗᏢ -12.1386 ▁ᏂᎬᏂᏌ -12.1386 ▁ᎠᎾᏨᏍ -12.1386 ▁ᏱᏂᏪᏍᎨᏍᏗ -12.1386 ᏛᎪᏙᏗ -12.1386 ▁ᏓᏗᏩᏛᎯ -12.1386 ▁ᎤᎾᎵᏍᏓᏴᏅ -12.1387 ▁ᏗᏧᎪᏔᏅ -12.1387 ᏱᏣᎸᏂᏗᏍ -12.1387 ▁ᎤᏔᏃ -12.1387 ▁ᎠᎱᏢᏛ -12.1387 ▁ᏗᏥᏴᏏ -12.1387 ▁ᏂᏚᏅᎿᏕ -12.1387 ▁ᎤᏂᏍᏓᏩᏛᏒᎩ -12.1387 ▁ᎨᏥᏍᎦᏅᏤ -12.1387 ▁ᏭᏂᎷᎯᏍᏗᏱ -12.1387 ᏓᏲᎯᏏ -12.1387 ▁ᎤᏂᏍᎦᎸᎩ -12.1387 ▁ᏚᏂᎾᏗᏅᏎ -12.1387 ▁ᎺᏌᏯ -12.1387 ▁ᏓᎦᏘᏴ -12.1387 ▁ᎦᎸᏉᏔᏅᎯ -12.1387 ▁ᎠᏍᎦᎢᎲ -12.1387 ▁ᎡᎩᏙᎵᏨ -12.1387 ▁ᏚᏂᏒᏅ -12.1387 ▁ᏴᎨᏗ -12.1388 ▁ᏣᎴᏫᏍᏔᏅ -12.1388 ᏁᏟᏴᏏ -12.1388 ▁ᏧᏛᏁᎢ -12.1388 ▁ᏧᏕᏁᎢ -12.1388 ▁ᏲᎩᎪ -12.1388 ▁ᎠᏥᏙᎵᏍᏗᏱ -12.1388 ▁ᏌᏆ -12.1388 ▁ᎠᏂᏃᏗᏍᎩ -12.1388 ▁ᏂᎦᎡ -12.1388 ▁ᎠᏆᏕᏅᎩ -12.1388 ▁ᎤᏂᏅᎪᎢᏍᏗ -12.1388 ▁ᎠᏂᎩᏍᎨ -12.1388 ▁ᏴᏧ -12.1388 ▁ᎨᏙᎮᏍᏗ -12.1388 ▁ᏱᏣᎵᏍᏓᏴ -12.1388 ᏏᏙᏂ -12.1389 ▁ᏄᏁᏤ -12.1389 ▁ᎢᏥᎦᏔᎯ -12.1389 ᎬᏯᎫᏴᎡᎸ -12.1389 ᏓᎾᏣᏅᏗᏍᎨᏍᏗ -12.1389 ▁ᏂᏗᎦᎸᏉ -12.1389 ᏑᎸ -12.1389 ▁ᎡᏥᎧᎵᎢ -12.1389 ▁ᎤᏂᎭᎷᎬ -12.1389 ᏚᎢᏍᏔᏅᎢ -12.1389 ▁ᎠᏂᎦᏯᎷᎥᏍᎩ -12.1389 ▁ᎤᏮᏗ -12.1389 ▁ᎠᏟᏃᎮᏙᏗ -12.1389 ▁ᎠᏓᏛᏍᎬ -12.1389 ᏯᎪᏗᏱ -12.1389 ▁ᏥᏓᎦᎴᏔᏁ -12.139 ▁ᏳᏂᎸᏉ -12.139 ▁ᎠᏥᎦᏘᏗᏍᏛ -12.139 ▁ᎤᏮᏗᏱ -12.139 ▁ᎠᏁᎸᏙᏗ -12.139 ▁ᏤᏍᏓ -12.139 ▁ᎠᏓᏙᎵᏍᏗᏍᎨᏍᏗ -12.139 ᏗᎦᎴᏲᏗ -12.139 ▁ᏚᏟᎶᏍᏔᏅ -12.139 ▁ᏦᏍᏓ -12.1391 ▁ᎪᎵᎦ -12.1391 ▁ᏭᎧ -12.1391 ᏲᏣᏃ -12.1391 ▁ᏅᏓᏩᏓᎴᏅ -12.1391 ▁ᏗᏛᏙᏗᏱ -12.1391 ▁ᎣᎨᎵᏒ -12.1391 ▁ᎤᏁᎩᏒᎩ -12.1391 ▁ᏥᎦᏔᎾᎥ -12.1391 ᏂᏔᏫ -12.1391 ▁ᏥᏂᎦᏪᎠ -12.1391 ▁ᏑᏕᏘᏴ -12.1392 ▁ᏣᎾᎵᏖᎸ -12.1392 ▁ᏅᏓᎦᏥ -12.1392 ▁ᏚᏩᏯ -12.1392 ▁ᏱᏓᎩᏯᏪ -12.1392 ▁ᎠᏕᎭᏲᎲ -12.1392 ▁ᎤᏩᎭᏂᎸ -12.1392 ▁ᏧᎾᎵᏍᏙᏗ -12.1392 ᎤᏲᎮᎴ -12.1392 ▁ᎠᏥᏍᏚᏗ -12.1392 ▁ᏫᏚᏘᏃᎴ -12.1392 ▁ᏧᏲᎱᏎ -12.1393 ▁ᏃᏈ -12.1393 ▁ᎤᎸᎴᎢ -12.1393 ▁ᎤᎵᏰᎢᎶᎸ -12.1393 ▁ᏥᎦᏥ -12.1393 ▁ᏥᏰᎿᎥ -12.1393 ▁ᎤᏁᏟ -12.1393 ▁ᎤᏪᏐ -12.1393 ▁ᎠᏍᎩᏓᏒ -12.1393 ▁ᏧᏙᎴᎰᏎ -12.1393 ▁ᎤᎵᏃᎮᏗᏍᎬ -12.1393 ᎮᎾᏂ -12.1393 ᏬᎯᏨ -12.1393 ▁ᎤᎾᎩᎸᏁ -12.1393 ▁ᎤᎾᏗᎦᎵ -12.1394 ▁ᎤᏃᏍᎩᏒᎢ -12.1394 ᎳᏫᏨ -12.1394 ▁ᎤᎵᏍᎦᏂᏍᏛ -12.1394 ▁ᎥᎩᎸᎢ -12.1394 ▁ᏕᎦᎾᏰ -12.1394 ▁ᏚᏃᎮᎮᎸ -12.1394 ᎸᎡᏗ -12.1394 ▁ᏚᏕᎳᏍᏔ -12.1394 ᎦᏥᏴᏗᏍᎬ -12.1394 ᎩᎯᎵᏓᏍᏗ -12.1394 ᏐᏅᏯ -12.1394 ▁ᎠᎵᏍᏓᏴᎲᏍᎨᏍᏗ -12.1394 ▁ᎤᏅᏍᎦᎸ -12.1395 ▁ᎣᎩᏅᏒ -12.1395 ▁ᏙᏍᏔ -12.1395 ▁ᎠᎦᏲ -12.1395 ▁ᎤᏄᏴ -12.1395 ▁ᎥᏓᏗᏍᏕᎸᏗ -12.1395 ▁ᏗᏍᏆᎧ -12.1396 ▁ᎤᏬᎯᏳᎲ -12.1396 ᏂᏌᎳᏛᎩ -12.1396 ▁ᎤᎵᏃᎮᏙᏗᏱ -12.1396 ▁ᏗᎨᏥᎢᏍᏗᏱ -12.1396 ▁ᎤᎾᏞᏛ -12.1396 ᏲᎱᎯᏎᎭ -12.1396 ᎴᏏᏂ -12.1396 ▁ᏚᏂᏲᎯᏎᎸᎩ -12.1396 ▁ᎤᎾᏚᎵᎭ -12.1396 ▁ᎦᎦᎳ -12.1397 ▁ᎠᏓᎹ -12.1397 ᏴᎯᏓ -12.1397 ᎶᎣᏒ -12.1397 ▁ᎤᏂᎪᎵᏰᏗ -12.1397 ▁ᎤᏂᏦ -12.1397 ▁ᏫᎬᏩᏣᏁ -12.1397 ᏃᏣᏝ -12.1397 ▁ᏧᏩᏛᏔᏅ -12.1397 ᎪᏫᏒ -12.1397 ▁ᎤᏃᏔᏅ -12.1398 ▁ᎤᏃᏫ -12.1398 ▁ᎤᏮᏔᏁᎢ -12.1398 ▁ᏥᏫᏙ -12.1398 ▁ᏧᎨᏳᎯ -12.1398 ▁ᏗᎨᏅᏒ -12.1398 ▁ᏭᏴᏍᏗ -12.1398 ▁ᏥᏂᎦᎥ -12.1398 ▁ᎠᏆᏙᎵ -12.1398 ᎤᏪᎧᏁᎴ -12.1398 ᏓᏁᏢ -12.1398 ᎵᏰᎲ -12.1398 ᏴᏣᏗᏍᏗ -12.1398 ▁ᎠᎪᏩᏘᏍᎪᎢ -12.1399 ▁ᎤᎾᏘᏅᏍᏗᏱ -12.1399 ▁ᏴᎬᎾᏛ -12.1399 ▁ᎠᎩᏯᎠ -12.1399 ▁ᎣᏍᏔ -12.1399 ᏕᏗᏱᎩ -12.1399 ▁ᏧᏦ -12.1399 ▁ᎦᎾᏄᎪᏩ -12.1399 ▁ᏚᏪᎧᏁᎸ -12.1399 ▁ᏣᎾᏴ -12.14 ▁ᏓᏠᏱᎲᎩ -12.14 ᏓᏅᏓᏗᏍᏔᏁ -12.14 ▁ᏥᏲᎵᎩ -12.14 ▁ᎦᏅᏆᎶᏍᏗ -12.14 ▁ᏥᏂᎨᏨᏁ -12.14 ▁ᎤᏂᏯᏅᎲᎩ -12.14 ▁ᎤᎦᏎᏂ -12.14 ▁ᎦᎵᏆ -12.14 ▁ᎢᏯᏉᎵᏍ -12.14 ᏍᏕᎸᎲᏎ -12.1401 ᏕᏲᏅᎢ -12.1401 ▁ᎣᎩᏃᎮᏍᎬᎢ -12.1401 ▁ᎦᏟᏐᏗᏱ -12.1401 ▁ᎠᏂᏁᎪ -12.1401 ▁ᏂᏥᏲ -12.1401 ᏌᎴᏓᏅ -12.1401 ᏙᎦᎵᏂᎬᎬ -12.1401 ▁ᎤᏂᏌᎳᏓᏁ -12.1401 ▁ᏧᎵᏂᎩᏗᏳ -12.1401 ▁ᏭᏢᏁᎢ -12.1402 ▁ᏙᎩᎾᏍᎩᏓᏒᎩ -12.1402 ▁ᏚᎷᏫᏍᏔᏁᎸ -12.1402 ▁ᏧᏲᎯᏎᎸᎯ -12.1402 ▁ᎤᏰᏟ -12.1402 ▁ᏓᏨᏍᏛ -12.1402 ▁ᎾᏆᏛᎿᏕᎬᎩ -12.1402 ▁ᏂᏚᎵᏍᏔᏅᎩ -12.1402 ▁ᎤᏂᏲᏠᎯᏎᎸᎩ -12.1402 ▁ᎤᏬᏁᏔᏅ -12.1402 ▁ᎤᎾᎵᏎ -12.1402 ᏲᏍᏔᏂᎸ -12.1402 ▁ᏥᏚᏂᎸᏫᏍᏓᏁ -12.1402 ᏄᎪᎦ -12.1403 ▁ᏏᏊ -12.1403 ▁ᎤᏂᏴᏫᏛ -12.1403 ▁ᏚᏭᎪᏔᏁ -12.1403 ▁ᏴᏓᏨᏴ -12.1403 ▁ᎠᎵᎮᎵᎩ -12.1403 ▁ᎠᏔᏗ -12.1403 ▁ᎣᎬᏕ -12.1403 ▁ᎤᏥᎸᏎᏍᏗ -12.1403 ▁ᎾᏂᏪᏎᎮ -12.1403 ▁ᏍᏇ -12.1403 ᏛᏥᏁᏥ -12.1403 ▁ᏓᎾᏓᏚ -12.1403 ▁ᎤᏓᏲᏁ -12.1403 ▁ᎤᎦᎾᏏᏍᎩ -12.1404 ▁ᎠᏂᏔᏲᎯᎮ -12.1404 ▁ᎤᏗᏅᏎ -12.1404 ▁ᏳᏍᏆᏂᎪᏗ -12.1404 ▁ᎯᏁᏥ -12.1404 ᎦᏯᎷᎥ -12.1404 ▁ᏚᏂᏴᏍᏕ -12.1404 ▁ᏚᎸᏫᏍᏓᏁᎭ -12.1404 ᏗᏓᎸ -12.1404 ▁ᏣᎵᏍᏓᏴᏗᏱ -12.1404 ▁ᏩᏍᏕᏍᏗ -12.1404 ᎵᏍᏇᏚᏮ -12.1405 ᎾᏄᎪᎪᎢ -12.1405 ▁ᏗᎬᏍᎦ -12.1405 ᏰᎢᎵᏕ -12.1405 ▁ᎤᏛᎯᏍᏔᏁ -12.1405 ▁ᏧᏂᏰᎸᏍᏗ -12.1405 ▁ᏫᎬᎾᎩ -12.1406 ᎩᏎᎪᎩᏒᎩ -12.1406 ▁ᎾᏆᎵᏍᏓᏁᎭ -12.1406 ᏒᏂᎲ -12.1406 ▁ᏥᏂᏕᎬᏁᎰ -12.1406 ᏈᎻ -12.1406 ▁ᏫᏚᏠᏒ -12.1406 ▁ᏣᏡᏗᏍᎩ -12.1406 ▁ᎹᎾᏏ -12.1407 ▁ᎤᏍᏆᏙᎾ -12.1407 ▁ᎤᎾᏓᎵᏁᎯᏕ -12.1407 ▁ᏓᎦᏄᎪᎬ -12.1407 ▁ᏚᏁᎯᏍᏓᏁ -12.1407 ▁ᏚᏏᎳ -12.1407 ᏄᏓᏅᎯᏛ -12.1408 ▁ᎨᏥᎾᏄᎪᏫᏎᏗ -12.1408 ▁ᏚᏂᏅᏒᎩ -12.1408 ᏖᎸᎢ -12.1408 ᏥᎪᎥᏍᎦ -12.1408 ▁ᎤᎾᏓᏅᏒ -12.1408 ▁ᎠᏂᎭᎹ -12.1408 ᏪᎳᎾ -12.1408 ▁ᎤᎱᏁ -12.1408 ▁ᎢᏣᏓᏤᎵᏛ -12.1409 ▁ᎤᏬᏒᏁ -12.1409 ▁ᎹᏏ -12.1409 ᎸᏉᏗᏍᎬᎢ -12.1409 ▁ᏕᏥᎬᏍᎪᎸᎥᏍ -12.1409 ▁ᎤᏓᏬᎢ -12.1409 ᎾᎳᏍᏘᏰ -12.141 ▁ᎤᏂᏃᎮᎵᏙ -12.141 ᏋᎿᏕᎬ -12.141 ▁ᎤᏂᎵᏰᏗᏍᎬ -12.141 ▁ᎤᏂᎾᏄᎪᎢᏍᏗ -12.141 ▁ᏚᏂᎧᏅᎩ -12.141 ᎬᏩᎶᏔᏁ -12.141 ᏛᎨᏍᎬ -12.141 ▁ᏚᏙᎨ -12.141 ᎯᏳᎲᏍᎬᎾ -12.141 ▁ᏗᎨᏨ -12.1411 ▁ᏗᏍᎩᏳᎪᏓᏁ -12.1411 ▁ᏙᏗᏣ -12.1411 ▁ᎹᎵᎦ -12.1411 ▁ᏧᏬᎪᏓᏁ -12.1411 ▁ᏫᏕᎦ -12.1411 ▁ᏫᎬᎩᏴᏍ -12.1411 ▁ᎤᏍᎪᏂᎴᎢ -12.1411 ▁ᏱᏅᎬ -12.1411 ᏅᎥᎦ -12.1411 ᏰᎸᎾᏁᎲ -12.1412 ▁ᏚᏅᏍᏓᏕᎸᎩ -12.1412 ▁ᏔᏈ -12.1412 ▁ᎾᏯᏛ -12.1412 ᏕᏙᎳᏛᏗ -12.1412 ▁ᎠᎾᏗᏍᎩ -12.1412 ▁ᎯᏅᏍᏗᏱ -12.1412 ▁ᎠᏛᏍᎪᎢ -12.1412 ᎶᎮᏍᏗ -12.1412 ▁ᎣᎩᎪᎲᎩ -12.1413 ᏗᏁᏗ -12.1413 ▁ᎠᏂᏂᏆᏘᎯ -12.1413 ▁ᏥᏰᎸᏅ -12.1413 ▁ᏭᏯᏅᏛ -12.1413 ▁ᎥᏆᏓᏓᎴ -12.1413 ▁ᏓᎦᏅᏓ -12.1413 ᎨᎯᏙᎮ -12.1413 ▁ᎤᎾᏛᎦᏁᎸᎯ -12.1413 ▁ᎠᏂᎸᏉᏗᏍᎩ -12.1413 ▁ᎢᏣᏓᏓᎴ -12.1413 ᎬᏆᏡᏔᏅ -12.1413 ▁ᎤᎸᏃᏘᎭ -12.1413 ▁ᎠᎾᎵᏖᎸᏂ -12.1413 ▁ᎦᎶᏐᎲᏍᎦ -12.1414 ▁ᎨᎦᏎᎸᎭ -12.1414 ▁ᏓᎬᏴ -12.1414 ▁ᏱᏗᏣᏘᏂᏙ -12.1414 ▁ᎤᎾᏠᎥᏔ -12.1414 ▁ᎢᏥᏲᎢ -12.1414 ▁ᏗᎨᎦᏨᏍ -12.1414 ▁ᎠᏗᏔᏍᎦ -12.1414 ▁ᏫᎦᏩᏙ -12.1414 ▁ᎭᎦᏌᏯᏍ -12.1414 ᏚᏗᏅᏒᎩ -12.1414 ▁ᎠᏒᏛᏗ -12.1415 ᏁᎳᏗᏒ -12.1415 ▁ᏥᏥᎷᎩ -12.1415 ᎷᏥᏌᏁ -12.1415 ▁ᏛᏊ -12.1415 ▁ᏈᎳᏯ -12.1415 ▁ᏱᏓᏆᏁ -12.1415 ▁ᎤᎵᎪᏗ -12.1415 ▁ᎣᎩᏰᎸᎭ -12.1415 ᏥᎸᏉᏗ -12.1416 ᏲᏏᏍᎪᎢ -12.1416 ▁ᎠᏁᎷᎲᏍᎬ -12.1416 ▁ᏦᎠᎾ -12.1416 ▁ᎤᎾᎦᏌᏯᏍᏔᏁ -12.1416 ▁ᏓᏍᏚᎲᎢ -12.1416 ▁ᎤᏟᎶᏍᏗ -12.1416 ▁ᏓᏂᎳᏫᎡ -12.1416 ᏅᏛᏅᏁᎵ -12.1416 ▁ᎬᏍᏕᎸᏗ -12.1416 ᏎᎵᏓᏁᎴᎢ -12.1416 ▁ᎯᎷᏤᏗᏱ -12.1416 ▁ᎤᎾᏠᏤᏉ -12.1417 ▁ᎤᏂᏐᏯᏍ -12.1417 ▁ᏧᏗᎴᎩ -12.1417 ▁ᎡᎦᎫᏴᏓᏁᏗ -12.1417 ᏟᏃᎮᏙᏗ -12.1417 ▁ᎤᏅᎪᎳᏛ -12.1417 ᎩᏯᏬᏍ -12.1417 ▁ᎤᏂᏰᎸᏎᏍᏗ -12.1417 ᏎᎮᎵ -12.1417 ᏗᏥᏲᏟ -12.1417 ▁ᏅᏧ -12.1417 ▁ᎧᏁᏨᎯ -12.1417 ᏍᎦᏅᎬ -12.1417 ▁ᎬᏃᏌ -12.1417 ▁ᏥᏕᎦᏓ -12.1418 ᏥᏍᏔᏝ -12.1418 ᎼᏓ -12.1418 ▁ᏚᏂᏯᏙᎮ -12.1418 ▁ᏦᎩᏃᎩᏍ -12.1418 ᎵᏑᏫ -12.1418 ▁ᏗᏨᏍᏗᏱ -12.1418 ▁ᏄᎾᏓᏕ -12.1418 ▁ᏕᏨᏯᏠᎢᏍᏓᏁ -12.1418 ▁ᎯᏣ -12.1418 ▁ᏘᏯᏙ -12.1418 ▁ᎤᎾᏕᏁᎢ -12.1419 ᏌᏔᏁᎢ -12.1419 ▁ᎤᏂᏍᎦᎢ -12.1419 ▁ᏥᏕᎯᏳᎪᏓᏁ -12.1419 ▁ᏕᏥᏅᎦᎵᏍᎪ -12.1419 ▁ᏗᎦᏁᏍ -12.1419 ▁ᎢᏂᏯ -12.1419 ▁ᏱᏗᎬᏕᎪ -12.142 ▁ᎠᎾᏧ -12.142 ᏃᏍᎩᎭ -12.142 ▁ᏂᎬᏩᏛᏁᎴᎢ -12.142 ▁ᏫᎦᏕ -12.142 ▁ᏭᏂᏴᎲ -12.142 ▁ᏕᏧᎪᏔᏅ -12.142 ▁ᏣᎧᏅ -12.142 ᎯᎷᎩ -12.142 ▁ᏂᏣᏛᏁᎴ -12.142 ▁ᎦᎷᎪᎢ -12.1421 ▁ᎮᎵᎭ -12.1421 ▁ᏫᏙᎤᎷᏤ -12.1421 ▁ᏫᏙᏛ -12.1421 ▁ᏗᏥᎦᎵ -12.1421 ᎬᏍᎪᎸᏗᏱ -12.1421 ▁ᎤᎾᎦᏌᏯᏍᏙᎢ -12.1421 ▁ᎠᏂᏗᏢ -12.1421 ▁ᎧᎹ -12.1422 ▁ᏚᏓᏅᎡᎸᏃ -12.1422 ▁ᏱᏥᎪᏩᏘᎭ -12.1422 ▁ᎤᏍᎦᎸᎩ -12.1422 ▁ᏓᎾᎵᏍᏛ -12.1422 ᎩᏣᏅ -12.1422 ▁ᎣᎩᎾᏖᏆᎶ -12.1422 ᏧᎾᏛᏒ -12.1422 ▁ᏭᏂᏃᎮᎴ -12.1422 ▁ᏂᏍᏓ -12.1423 ▁ᏁᏣᏓ -12.1423 ᎸᏕᏍᏗᎭ -12.1423 ▁ᏗᎩᎾᏫᏱ -12.1423 ▁ᎢᏳᎵᏍᏔᏂᏓᏍᏗᏱ -12.1423 ▁ᏚᏅᎦᎸ -12.1423 ▁ᎤᏂᎪᏩᏛᏗ -12.1423 ▁ᏂᎬᎩᏪᏎᎲ -12.1424 ▁ᏫᏔ -12.1424 ᎯᏳᎯᏯ -12.1424 ▁ᏯᎾᎵᏖᎸᎲ -12.1424 ▁ᎣᏣᏛᎦ -12.1424 ▁ᎠᏒᎢᏍᏗᏍ -12.1424 ▁ᎧᏁᏨ -12.1424 ▁ᎡᏂᏏ -12.1424 ▁ᎤᏂᏍᎩᎸ -12.1424 ᏚᎾᏄᏮ -12.1424 ᏯᏗᏒᎢ -12.1425 ᎾᏬᏏ -12.1425 ▁ᏧᎾᏓᎸ -12.1425 ᎩᎸᏔᏅ -12.1425 ▁ᎤᎸᏉᏛ -12.1425 ▁ᏅᏓᏰᏥ -12.1425 ▁ᏱᎦᎵᏍᏗᏍᎨ -12.1425 ▁ᎡᎩᏁᎸᎯ -12.1425 ᏥᏲᎢᏳᏓᏁᎭ -12.1425 ▁ᎠᎩᏍᏙ -12.1425 ᏤᎳᏍᏓ -12.1426 ▁ᏓᏂᏱᎵᏒ -12.1426 ▁ᎤᏂᏁᎢᏍᏔᏁ -12.1426 ▁ᎠᏃᏍᏓ -12.1426 ▁ᎠᏍᏚᏅ -12.1427 ▁ᎠᏥᏁᎢᏍᏗᏍᎬ -12.1427 ▁ᏗᎦᏤᎵᎦ -12.1427 ▁ᎤᎵᏍᏓᏴᎾᏁᏗᏱ -12.1428 ᏥᏁᏦ -12.1428 ᏁᎳᏅ -12.1428 ᎬᏩᏛᏓᏍᏓᏁᎴ -12.1428 ᎶᏈ -12.1428 ▁ᎬᏣᏓ -12.1428 ᏣᏕᎰᎯᏍᏗ -12.1428 ᏠᏗᏱ -12.1429 ▁ᎢᏕᏅ -12.1429 ▁ᎬᎾᏄᎪᏫᏎᏗ -12.1429 ▁ᎤᎾᏣᏅᎯ -12.1429 ▁ᏗᏖᎵ -12.1429 ▁ᏧᎾᏓᎸᎯ -12.1429 ▁ᏗᏤᏅ -12.1429 ▁ᎦᎾᏄᎪᏫᏍᎦ -12.1429 ▁ᏚᏃᏣᏝᏁ -12.143 ▁ᎤᏂᎪᎵᏰᎥ -12.143 ▁ᏌᎺᎵ -12.143 ▁ᏕᎬᏩᎾᏢᎥᏍ -12.143 ▁ᎠᏂᏍᎦᏅᎬ -12.143 ▁ᏧᏓᏆ -12.143 ▁ᏱᏁᎦ -12.143 ᎵᏙᎩᎯ -12.143 ▁ᏓᎦᏛᎦ -12.143 ▁ᎦᎶᏁ -12.143 ▁ᏣᎾᏛᎩᏍᎪ -12.143 ▁ᏣᏴᏍᏗᏱ -12.143 ▁ᏗᏋ -12.143 ▁ᏧᏫᏎᎢ -12.1431 ▁ᎠᎾᏙ -12.1431 ᏄᏬᎥᎩ -12.1431 ᏗᏆᎸᏕ -12.1431 ᏓᏬᏍᎩ -12.1431 ᏂᎪᏁᎶᏍᎨᎢ -12.1431 ▁ᏥᏕᎤᎴᏔ -12.1432 ▁ᎤᏁᎷᎨ -12.1432 ▁ᎤᏨᎢᏍᏗ -12.1432 ᎢᎫᏩᏟᏍ -12.1432 ▁ᏍᎩᎢᏍᏗᏱ -12.1432 ▁ᏘᎪᎯ -12.1432 ▁ᏥᎪᏎᎭ -12.1432 ▁ᏣᏁᎸᎭ -12.1432 ▁ᎠᏥᏍᏚᎲᎢ -12.1432 ▁ᏗᏥᏯᎦᏅ -12.1433 ▁ᏚᏂᎳᏫᏤᎢ -12.1433 ▁ᏱᎬᏗᎭ -12.1433 ▁ᎤᏚᏓᏕᏫᏒᎢ -12.1433 ᎭᏄᏬ -12.1433 ▁ᏥᎦᏛᎦ -12.1433 ▁ᏚᏍᏓᏩᏛᏎᎢ -12.1433 ▁ᏙᏗᎧᏂᏍᎬᎢ -12.1433 ▁ᏚᎧᎿᏩᏗᏙᎮᎢ -12.1433 ▁ᏧᎩᏥᏍᎪᎢ -12.1433 ▁ᏭᎩᎸᏁᎢ -12.1433 ▁ᏓᎾᏓᎧᏅ -12.1433 ▁ᎤᎵᏘᏒᎩ -12.1434 ▁ᎤᎾᎩᎳᏫᏎ -12.1434 ▁ᎤᎾᎦᏎᏍ -12.1434 ▁ᎠᏂᎦᏲᎵᏉ -12.1434 ▁ᎠᎾᎵᏅᏢᎢ -12.1434 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎨᎢ -12.1434 ▁ᎦᏬᏂᏍᎨᏍᏗ -12.1434 ▁ᎤᏙᎯᏳᎭᏍᎪ -12.1434 ▁ᎬᎦᏔᎭ -12.1434 ᎭᏛᎦ -12.1435 ▁ᎯᎶᏁ -12.1435 ▁ᎤᎾᎦᏎᏍᏛᎢ -12.1435 ▁ᎢᏯᏆ -12.1435 ▁ᏫᏓᎧᏁᎢ -12.1435 ▁ᏓᏂᏬᏂᏍᎬᎢ -12.1435 ▁ᏥᏂᎨᏎᎢ -12.1435 ▁ᎤᏁᎢᏍᏓᏁᎸᎢ -12.1435 ▁ᎤᎾᏚᎵᏍᎪᎢ -12.1435 ▁ᎤᎶᏄᎮᏗᏱ -12.1436 ▁ᏕᏥᎧᎿᏩᏗᏒᎢ -12.1436 ▁ᎬᏩᎭᎷ -12.1436 ▁ᏗᏓᏂᎸᎢᏍᏗ -12.1436 ▁ᏧᎪᏅ -12.1436 ▁ᎣᏣᏙᎴᎰ -12.1436 ▁ᏱᎪᎵᎨᎢ -12.1436 ▁ᏫᏂᏓ -12.1436 ▁ᎤᎪᏏ -12.1436 ▁ᎤᏍᎪᏎ -12.1437 ▁ᏚᎾᏘᏅᏎ -12.1437 ▁ᎤᏪᏘᏁ -12.1437 ᏏᏙᎵ -12.1437 ᎪᎯᏳᎲᏍᎪᎢ -12.1437 ▁ᎠᎦᏘᏲ -12.1437 ▁ᎤᏂᏢᏗ -12.1437 ᏆᏎᎵᏓᏁᎸᎩ -12.1437 ▁ᏂᏚᏛᏁᎴᎢ -12.1437 ▁ᎤᏯᏛᏅ -12.1438 ▁ᏂᏚᏅᏁᎴᎢ -12.1438 ▁ᎤᏒᎦᎸᎢ -12.1438 ᎧᎭᏛ -12.1438 ▁ᎤᎾᏚᏓᎴᏍᏙᏗ -12.1438 ▁ᎤᏯᎷᎦ -12.1438 ▁ᏤᎦᏛ -12.1438 ᏍᎩᏅᎦᎸ -12.1438 ᏕᏒᎾ -12.1439 ᏲᏍᏙᏗᏍᎬᎢ -12.1439 ▁ᏚᏂᏲᎰᏎ -12.1439 ▁ᏣᎪᏩᏘᎭ -12.1439 ▁ᏄᎦᏔᎲᎾ -12.1439 ▁ᎨᏣᏡᏗᏍᎬᎢ -12.1439 ▁ᏓᏍᏚᏛ -12.1439 ▁ᎠᏂᎷᎨᎢ -12.1439 ᏛᏁᏏ -12.1439 ᏣᏚᏓᎳᎡᏗ -12.144 ▁ᏂᎬᎩᏪᏎᎸ -12.144 ▁ᏥᏍᏚᏂᎩᏍᏗᎯ -12.144 ᎺᏏ -12.144 ▁ᎤᏂᏌᏅ -12.144 ▁ᏫᎬᏩᏴᏔᏁᎢ -12.144 ▁ᎤᎾᎵᏒᎩ -12.144 ᎾᏫᏛᎮᎢ -12.1441 ▁ᏅᏩᏍᏕᏍᏗ -12.1441 ᎵᏒᏍᏔᏁ -12.1441 ▁ᎢᎤᎾᏨᏎᎢ -12.1441 ▁ᎦᏬᏂᎭ -12.1442 ▁ᎠᎾᏓᏍᏔᏴᎲᏍ -12.1442 ▁ᎬᏣᏗ -12.1442 ▁ᏗᎨᎫᎪᏓᏁᏗᏱ -12.1442 ▁ᏣᏅᏏᏓᏍᏗ -12.1442 ᎳᏑᏝᏅ -12.1442 ▁ᎤᏂᏩᏒᎯ -12.1442 ▁ᏘᎾᏄᎪᏫᏏ -12.1442 ᎾᏓᎴᏁᎢ -12.1442 ᎾᏄᎪᏫᏎᏗ -12.1443 ▁ᏕᏣᏓᏂᎸᏨᎭ -12.1443 ᎾᏦᎥᏍᏗ -12.1443 ▁ᎭᏛᎩ -12.1443 ▁ᏭᎾᏓ -12.1443 ▁ᏂᎦᏍᏛᎢ -12.1443 ▁ᎦᏅᏓᏗᏍᎪ -12.1444 ▁ᏂᎦᏥᏪᏎᎸᎩ -12.1444 ▁ᎠᏇᏓᏍᏗᏱ -12.1444 ▁ᎭᎵᎮᎵᎩ -12.1444 ▁ᎠᏆᎴᏅᏗ -12.1444 ᎾᏕᎨᏍᏗ -12.1444 ▁ᎠᏥᏰᎸᎾᏁᎴᎢ -12.1445 ▁ᏣᎵᏍᏕᎸᏙᏗ -12.1445 ᏲᎵᎸᎭ -12.1445 ▁ᏭᏁᎴᎢ -12.1445 ▁ᎣᏥᏃᎮᏍᎬᎢ -12.1445 ▁ᎤᎵᏂᎪᎯᏍᏗ -12.1445 ᏧᏔᎩ -12.1446 ▁ᎤᎵᏰᏑᏍᏙᎩ -12.1446 ᎦᎵᏍᏓᏛᎩ -12.1446 ▁ᏍᎩᏍᏕᎸᎯᏓ -12.1446 ▁ᏗᏍᎩᎳᏗᏍᏗ -12.1446 ▁ᎡᎫᏓᎴ -12.1446 ▁ᏕᎠᎾ -12.1446 ▁ᎠᏛᏅᎢᏍᏔᏅᎯ -12.1447 ▁ᎠᎧᎵᏨ -12.1447 ᎩᎵᎨᏂ -12.1447 ▁ᏚᎾᏙᎡ -12.1447 ▁ᏱᏥᎪ -12.1448 ▁ᎢᏣᏓᏅᏖᏍᏗ -12.1448 ᏂᏔᏲᎴᎢ -12.1448 ▁ᏓᏂᏍᏕᏲ -12.1449 ▁ᏭᏂᏩᎯ -12.1449 ▁ᎦᏄᎪᎢ -12.1449 ᏟᎶᏒᎸ -12.1449 ▁ᏭᎩᏎᎢ -12.1449 ▁ᏣᎵᏂᎩᏛ -12.1449 ᎬᏩᎪᏁᎶᎯᏎᎸᎩ -12.1449 ▁ᏲᏤᎾ -12.145 ▁ᏧᏂᏄ -12.145 ▁ᎨᎾᏏ -12.1451 ▁ᏛᏇ -12.1451 ▁ᎯᏯᏏᏔᏛ -12.1452 ᎳᏗᏙᎮᎢ -12.1452 ᏛᏛᎮᎸᏁ -12.1452 ᏂᏐᎢ -12.1452 ▁ᏧᏁᏍᎨᎮᎢ -12.1452 ▁ᏭᎵᏒ -12.1453 ▁ᎦᎧᎲᎢ -12.1453 ᏍᏓᏱᏗ -12.1453 ▁ᎤᎩᏐᏅ -12.1453 ᏍᏓᏁᎸᎩ -12.1454 ▁ᏚᏂᏡ -12.1454 ᎦᎵᏒ -12.1454 ▁ᏗᎬᏭᎪ -12.1454 ᎹᏞ -12.1454 ᏓᏙᎳᏍᏗᏍ -12.1455 ▁ᎤᏕᏃᏅ -12.1455 ▁ᎦᏄᎳᏥ -12.1455 ᏗᏒᎲᏍᎦ -12.1455 ᎦᏁᎲᎾ -12.1455 ▁ᎤᏅᏩᏁᎢ -12.1455 ▁ᏱᏂᏣᏛᏁᎭ -12.1456 ᎩᏝᏅ -12.1456 ▁ᏫᏕᏓ -12.1456 ᏆᏲᏗ -12.1457 ᏣᏅᏖᏍᏗ -12.1457 ▁ᎠᎩᏯᎥᎢ -12.1457 ▁ᎤᎾᏦᏛ -12.1457 ᏐᎯᏍᏗ -12.1457 ▁ᏧᏬᏕᏍᏗ -12.1458 ᏏᏍᎨᎢ -12.1458 ▁ᎤᏂᎵᏓᏍᏗ -12.1458 ▁ᎠᎦᏌᏯᏍᏙᏗ -12.1458 ᏘᏝ -12.1458 ▁ᎠᏋᏔᏅᎩ -12.1458 ▁ᏗᎦᏙᎨᎢ -12.1459 ᏍᏚᏞ -12.1459 ▁ᎤᏂᎨᏛ -12.146 ▁ᎠᎵᏍᏆᏗᏍᎬᎢ -12.146 ▁ᎢᏥᎾᏰᏍᎬᎢ -12.1461 ▁ᏫᎬᏩᎷᏤᎴ -12.1461 ▁ᏣᏚᎵᏍᎨᏍᏗ -12.1462 ▁ᏓᏨᏍᏕ -12.1462 ᎷᏨᎾ -12.1463 ▁ᏧᏲᏏᏍᎨᎢ -12.1463 ▁ᎠᏂᏔᏲᎯᎲ -12.1463 ▁ᎨᎦᏙ -12.1463 ▁ᎠᏂᎨᏕ -12.1463 ᎬᏍᏉ -12.1463 ▁ᎣᎩᎾᎵᎪᎭ -12.1463 ▁ᎠᏉᏪᎳᏅᎯ -12.1463 ▁ᏨᏣ -12.1463 ᎬᏩᎷᏤᏗᏱ -12.1464 ᏛᏁᎸᏗ -12.1464 ▁ᏅᏛᏍᎩ -12.1465 ▁ᎥᎩᏁᎸᎢ -12.1465 ᏓᏁᎴᏍᏗ -12.1465 ▁ᎠᏥᎳᏫᏎᎲ -12.1466 ▁ᏌᎨ -12.1466 ▁ᏯᏗᏗ -12.1466 ᏅᎪᏫᏍᏗ -12.1466 ▁ᏚᏪᎳᏗᏙ -12.1467 ▁ᏚᏂᎩᏍᏔᏁ -12.1467 ᏚᎾᏓᎴᎿ -12.1467 ▁ᏧᏭᎪᏙᏗᏱ -12.1467 ᏩᎾᎦᎶᏤ -12.1467 ᏙᎢᏛ -12.1468 ▁ᏧᏂᏰᎸᎯ -12.1468 ▁ᏥᏄᎾᎵᏍᏓᏁᎴ -12.1468 ▁ᏂᏓᎬ -12.1468 ▁ᏣᏅᏏᏙᎯ -12.1468 ᎦᏔᎲᎡ -12.1468 ▁ᏓᏲᏍᏗ -12.1468 ᏒᏂᎦ -12.1468 ᎤᏗᏛᎲ -12.1469 ᏛᎩᏍᎬᎾ -12.147 ▁ᏫᎦᎾᏄᎪᎩ -12.147 ▁ᎤᏪᎮᎢ -12.147 ▁ᎠᎦᏔᏩᏕ -12.147 ▁ᏲᎦᏚᎵ -12.147 ▁ᎥᎩᏃᏁᎸ -12.147 ᏗᏥᏂᏱᏍ -12.147 ▁ᏦᏆ -12.1471 ▁ᎠᎾᏂᎩᏍᎬ -12.1471 ▁ᏗᎨᎦᎦᏅᏗ -12.1471 ▁ᎤᏓᏁᏟᏴᏎ -12.1472 ᏂᏲᎮᎲ -12.1472 ᎵᏏᎲᏒᎩ -12.1472 ▁ᎤᏣᎴᏛ -12.1472 ▁ᎾᎾᏛᎦ -12.1473 ᏓᏁᏣᏍᏚᎶ -12.1473 ▁ᏗᎪᏢᏒ -12.1473 ᎯᏯᏍᎪ -12.1473 ▁ᏣᏒᎦᎸ -12.1473 ᏦᎵ -12.1473 ᎳᏫᎩ -12.1473 ▁ᏬᎶᏒ -12.1474 ᎢᎵᎻ -12.1474 ▁ᎠᎾᏓᏙᎵ -12.1474 ▁ᎭᏗᏍᎨᏍᏗ -12.1475 ▁ᎠᏂᎡᎼ -12.1475 ᏫᏅ -12.1476 ▁ᎢᏑ -12.1476 ▁ᏚᏓᎨ -12.1477 ᎨᏣᏡᏗᎭ -12.1477 ▁ᎤᎵᏍᏓᏴᏅ -12.1477 ▁ᎤᏬᎴᏍᏗ -12.1477 ▁ᏚᎾᎵᏍ -12.1477 ᏁᏥᏪᏏ -12.1478 ▁ᏥᎩᏯᎠ -12.1478 ᏥᏁᏤᎸᎢ -12.1478 ▁ᎤᎳᏍᏓ -12.1478 ▁ᎠᏨᏉᏗᏍ -12.1479 ᏅᎥᏍᎬ -12.1479 ▁ᏣᎦᏓᏂᎸᎢᏍᏗ -12.1479 ᎫᏓᎴᏍᎬᎢ -12.1479 ▁ᎤᏃᎯᎵ -12.1479 ▁ᎤᏪᎲ -12.148 ᎲᏍᏔᏅᎩ -12.148 ▁ᏚᏂᏯᎣᏅ -12.148 ▁ᎠᎵᏍᎦᏃᏍ -12.148 ▁ᏱᎬᏍᎦᏅ -12.148 ᏕᏙᎳᏛ -12.1481 ▁ᏳᏛᏅ -12.1481 ᏆᎸᏛ -12.1481 ▁ᏕᎤᏪᎧ -12.1481 ᎪᏢᎾᏁᎴᎢ -12.1482 ᏯᏂᏏᏁᎸ -12.1482 ▁ᎠᎾᏓᏙᎵᏍᏓᏁ -12.1482 ▁ᏥᏗᎸᏉᏗ -12.1482 ▁ᎬᏩᏄᎪᏫ -12.1482 ▁ᎢᏦᏛ -12.1483 ᏕᎩᎳᏁᎸ -12.1483 ᏌᏌ -12.1484 ᏓᏂᏏᎾ -12.1484 ▁ᎢᏣᏓᏙ -12.1484 ᏎᎲᎾ -12.1484 ▁ᏍᎩᏯᎫᏴᏓ -12.1484 ▁ᎠᏯᎡ -12.1484 ᏩᎯᏏ -12.1485 ▁ᎤᏍᏆᎸᎯ -12.1485 ᏓᎵᏓᏍᏗᎭ -12.1485 ▁ᏙᏛᏙ -12.1485 ▁ᎤᏂᏍᏚᎶᏔ -12.1485 ᎾᏛᏍᎩ -12.1485 ᎵᏍᏓᏴᎲᎦ -12.1485 ▁ᏣᏕᎦ -12.1485 ▁ᎤᏪᎵᏎᎴᎢ -12.1486 ▁ᎬᏆᏓᏅᏓᏗᏍ -12.1486 ᏗᏥᎦᏘᏯ -12.1486 ▁ᏄᏓᎵ -12.1486 ▁ᏗᏓᎵᏎ -12.1486 ▁ᏓᏂᏙᎬᎩ -12.1486 ▁ᏂᎤᏪᏎᎢ -12.1486 ᏬᏁᏔᏅᎩ -12.1486 ▁ᎢᏳᎵᏍᏔᏅᎩ -12.1487 ▁ᏙᏍ -12.1487 ▁ᏱᎬᏳ -12.1487 ▁ᎠᏓᏬᏍᏗ -12.1487 ▁ᎢᏨᏰᎳᏗᏙᎲᎩ -12.1487 ▁ᎢᏨᏃᏁ -12.1487 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎩ -12.1487 ᎦᏥᏯᏢᏔ -12.1487 ▁ᎤᏛᏛᎩ -12.1488 ▁ᏯᏛᎦ -12.1488 ▁ᏂᏓᏋᏁᎸ -12.1488 ▁ᏗᎦᏆ -12.1488 ᏓᏂᏍᎫᏓᏛ -12.1488 ▁ᎢᏨᏃᏁᎸᎢ -12.1488 ▁ᏕᎯᏴ -12.1488 ▁ᎤᎦᏔᎲ -12.1489 ▁ᎤᏍᎦᏅᏥᏙᎸᎢ -12.1489 ᏯᏛᎥ -12.1489 ▁ᏂᏨᏪ -12.1489 ▁ᎤᏂᏄᎪᏤᎢ -12.1491 ▁ᏧᎾᏚᎵᏍᎪ -12.1491 ▁ᏗᏂᏅᏗ -12.1492 ▁ᎤᏑᎶ -12.1492 ᏂᏅᎪᎢ -12.1492 ▁ᎤᎾᎵᏖᎸᏅᎢ -12.1492 ᎵᏬᏤᎢ -12.1492 ▁ᏳᏬᏢᏁ -12.1493 ▁ᎠᎩᎵᏲᎬᎢ -12.1493 ▁ᎠᏂᏃᎮ -12.1493 ▁ᎤᏂᎦᎸᎯ -12.1493 ▁ᏧᏭᎪᏓᏁ -12.1493 ▁ᏭᎾᏓᏝ -12.1493 ▁ᏂᏨᏪᏎᎸᎢ -12.1494 ▁ᏗᎦᏙ -12.1494 ▁ᏙᏓᏍ -12.1494 ▁ᏤᎪ -12.1494 ᎪᎲᎭ -12.1494 ▁ᏗᎨᏴ -12.1494 ᎾᏍᎩᏯ -12.1494 ▁ᏫᎦᏥᎷᏤᎸ -12.1494 ▁ᎠᏃᎯᏍᏗᏍᎩ -12.1495 ▁ᏂᎨᎬᏁᎸᎢ -12.1495 ▁ᏚᏫᏞᏫᏒᎢ -12.1495 ᏍᎫᏓᏕᎢ -12.1495 ▁ᏩᏂᎦᏛᎢ -12.1495 ▁ᏫᎬᏩᏘᏃᎸ -12.1495 ▁ᏫᏚᏳᎪᏛᎢ -12.1495 ▁ᎠᎩᎪᏁᎸᎢ -12.1495 ▁ᎤᏅᏍᎦᎴᎢ -12.1495 ▁ᎤᎵᏍᎪᎸᏔᏁᎢ -12.1495 ▁ᏚᏂᎧᎲᎢ -12.1495 ᎣᏍᎪᎢ -12.1496 ▁ᏕᎫᎪᏗᏍᎪ -12.1496 ▁ᏓᎾᏓᏅᏖᏍᎬᎢ -12.1496 ▁ᎤᏓᏙᏎᎴᎢ -12.1496 ▁ᎢᎬᏙᏗ -12.1496 ᏔᏅᏒᎢ -12.1496 ▁ᎤᏁᎳᏛᎢ -12.1496 ᎾᏓᏍᏕᏓᎵᏴᏓ -12.1497 ▁ᏳᏂᎪᎮᎢ -12.1497 ▁ᏚᎾᎵᎪᏁᎴ -12.1497 ▁ᏅᏩᏍᏕᎢ -12.1497 ▁ᏂᎦᏥᏴᏁᎸᎢ -12.1497 ▁ᏱᏄᎵᏍᏓ -12.1497 ▁ᏫᎬᏩᏘᏅᏍᏔᏁ -12.1497 ▁ᏫᏓᎬ -12.1497 ▁ᏱᎬᏗ -12.1498 ᎵᏂᎪᏍᎬᎢ -12.1498 ▁ᎠᎵᏍᏕᎵᏍᎬᎢ -12.1498 ᏱᎵᏐ -12.1498 ▁ᎤᏛᏅᎢᏍᏛ -12.1498 ▁ᏚᏓᏂᎸᏤᎢ -12.1498 ▁ᏱᏙᎬᎾ -12.1498 ▁ᏨᏓᏥᏁ -12.1498 ▁ᎠᏂᎷᎬᎢ -12.1498 ᏯᎶᏘ -12.1499 ᎠᏐ -12.1499 ▁ᎢᏥᎪᎲᎢ -12.1499 ▁ᎢᏙᎻᏱ -12.1499 ▁ᎠᏂᎦᏔᎮᎢ -12.15 ▁ᏥᏯᏛᎦᏁᏗ -12.15 ᎬᏩᏩᏛᎲᏃ -12.15 ▁ᏚᎾᏚᏫᏍᏛ -12.1501 ▁ᏎᎳᎻ -12.1501 ▁ᎢᏨᏬᏁᏔᏅᎢ -12.1501 ▁ᎤᎾᎵᏍᏙᏗ -12.1501 ▁ᎠᎨᎳᏗᏍ -12.1501 ᎳᏁᎸᎩ -12.1501 ▁ᏕᎪᏎᎲ -12.1501 ▁ᎢᏍᏓᏛᏅ -12.1502 ▁ᏚᏪᎧᏁᎴᎢ -12.1502 ▁ᎢᏨᏓ -12.1502 ▁ᏓᎭᏦ -12.1502 ▁ᎤᏓᏁᎵ -12.1502 ▁ᎾᏆᎵᏍᏓᏁᎸᎢ -12.1502 ▁ᎠᎴᏂᏙᎲ -12.1502 ▁ᏱᏤᎵ -12.1502 ▁ᏚᎾᏓᏲ -12.1502 ▁ᎤᏍᎦᏎᏗᏳ -12.1503 ▁ᏚᏂᏂᏴᎮᎢ -12.1503 ᏔᏃᎯᏍᏔ -12.1503 ▁ᏚᏂᏒᎾ -12.1503 ▁ᏱᏚᎧ -12.1503 ▁ᎤᏁᏔᏅᎯ -12.1503 ▁ᏓᎧᎾᏩᏗ -12.1503 ▁ᎠᎪᎲᏍᏙᏗ -12.1503 ▁ᎦᏲᏟᎨᏉ -12.1503 ᎬᏂᏍᏗᏍᎨ -12.1504 ▁ᏱᏓᎾᏕᏍᎪ -12.1504 ᏲᏍᏓᏗ -12.1505 ᏓᏱᎭ -12.1505 ▁ᎤᏴᏔᏂᎸ -12.1505 ▁ᎤᏩᏥ -12.1505 ▁ᏩᏁᏙᎲ -12.1505 ▁ᏅᏛᏅ -12.1506 ▁ᏳᏫᏚ -12.1506 ᏓᎬᏯᏛᏁᎵ -12.1506 ▁ᎤᏬᏥ -12.1506 ᎦᏓᏂᎸᏨᎩ -12.1507 ▁ᏗᏍᏆᏂᎪᏛ -12.1507 ▁ᏱᏅᏩᏍᏕ -12.1507 ▁ᎦᏅᏬᏍᎨ -12.1507 ▁ᏫᎦᎶᎯᏍᏗᏱ -12.1508 ▁ᏱᏨᏅ -12.1508 ▁ᏗᎧᏅ -12.1508 ▁ᏄᏚ -12.1508 ᏓᏌᏆᎴᏍ -12.1508 ᏬᎷᏩᏛ -12.1509 ▁ᏛᏍᏆ -12.1509 ▁ᎤᏃᎭᏝ -12.151 ▁ᎬᏩᏛᏗᏱ -12.151 ▁ᎤᏂᏂᎬᏎᎲᎢ -12.151 ▁ᎢᏣᏓᏅᎦᎸᏛ -12.1511 ▁ᏕᎠᏁᎲ -12.1511 ▁ᎠᏓᎯᏍᏗᏱ -12.1511 ᏢᎾᏏ -12.1512 ᎢᏍᏓ -12.1512 ᏑᎵᎪᎬᎾ -12.1512 ▁ᎤᏏᏔᏛ -12.1514 ᎳᏗᏍᎪ -12.1514 ᏕᎲᎢ -12.1514 ▁ᎢᏍᏛᏔᏲᏎ -12.1514 ▁ᎢᏗᎬᏁᎯ -12.1514 ▁ᏚᎸᏉᏗᏳ -12.1514 ▁ᎠᏓᏅᏖᏍᎨᏍᏗ -12.1515 ▁ᏫᏂᏗ -12.1515 ▁ᎤᏲᏍᏙᏗᏱ -12.1515 ᏩᎭ -12.1515 ᏍᎪᏂᎵ -12.1515 ᏌᎳᏗᏍᎪ -12.1515 ᎾᏓᏗᏫᏎᎸ -12.1516 ᏄᎵᏍᏓᏁᎴᎢ -12.1516 ᎬᏫᏳᏔᏅ -12.1516 ▁ᎡᏧᏓᎴ -12.1517 ▁ᎯᏲᎢᏳᎲ -12.1517 ᏅᎪᎣᏒ -12.1517 ᎵᏎᏗᏱ -12.1517 ▁ᏧᏓᏂᎸᏨᎯ -12.1518 ▁ᏣᎦᏌᏯᏍ -12.1518 ᏙᎵᏨᎢ -12.1518 ᎵᏃᎡᏔ -12.1518 ▁ᏚᎾᎦᎴᏅᎲ -12.1519 ▁ᎠᏍᎩᏥᏍ -12.152 ▁ᎠᏳᎢ -12.152 ▁ᎦᏃᎪᎢ -12.152 ▁ᎠᎾᏓᏅᏖᏍ -12.152 ᎦᎵᏍᏙ -12.152 ▁ᏫᏗᏣ -12.1521 ᎾᎦᏔᏅᏎ -12.1521 ᏍᏓᏁᎴᎢ -12.1522 ▁ᏗᎨᏥᏍᏚᏁᏗ -12.1522 ▁ᎬᏩᎸᎸ -12.1522 ▁ᏣᏕᎸ -12.1522 ▁ᏧᏯᏅᏗ -12.1523 ▁ᎬᏩᎾᎵᎪᏁ -12.1523 ▁ᏫᏍᎩᏯᏅ -12.1524 ᎶᏤ -12.1524 ▁ᎠᏍᏕᎸᏗᏱ -12.1524 ▁ᎤᏕᎰ -12.1524 ᏥᏃᎯᏍᏙᏗ -12.1525 ▁ᏱᏄᎾᎵᏍᏔ -12.1526 ▁ᎢᏣᎦᏔᎲᎾ -12.1526 ▁ᎠᏉᎸᎢ -12.1526 ᎾᏆᎵᏍᏓᏏ -12.1526 ▁ᎦᏝ -12.1527 ▁ᎤᏓᏍᎦ -12.1527 ᏉᏢᏅ -12.1527 ▁ᏤᏣᏁᎶᏙᏗ -12.1528 ▁ᏓᎦᎶᏐᏂ -12.1528 ᏣᏓᎨᏳᏒ -12.1528 ▁ᎠᎦᏁᎳᏅᎯ -12.1528 ▁ᏓᏨᏯᎫᏴ -12.1528 ▁ᎤᎾᏓᏙᎵᏍᏔᏅᎩ -12.1528 ▁ᎤᎶᎪᏗ -12.1528 ᎨᏢᏅᎭ -12.1529 ▁ᎤᏭᏌᎥ -12.153 ▁ᎾᏆᎵᏍᏔᏅᎩ -12.1531 ᏥᏁᎢᏍᏗᏍᎬᎩ -12.1531 ▁ᎥᎩᏙᎵ -12.1531 ᏙᏎᎢ -12.1531 ▁ᎪᎵᎬᎩ -12.1532 ▁ᎤᎨᏳᏎ -12.1532 ᏙᏑᎵ -12.1532 ᏥᏯᏛᎦᏁᎸ -12.1532 ▁ᏱᏅᏗᎦᎵᏍᏙᏗ -12.1532 ᏛᎯᏍᏗᏍᎩ -12.1532 ▁ᏓᎾᏍᎪ -12.1533 ▁ᏕᎦᎦᏂ -12.1533 ᏙᏘ -12.1534 ᏍᏆᏂᎪᏙ -12.1534 ▁ᎠᎩᏍᎦᎩ -12.1534 ▁ᏱᏕᎯ -12.1534 ▁ᏍᏋᏂ -12.1534 ᏣᏒᎩ -12.1534 ▁ᎠᏍᎦᏍᏗ -12.1534 ᏅᏔᏩᏗᏒ -12.1536 ▁ᎢᏯᎦᏛᏁ -12.1536 ▁ᎬᏔ -12.1536 ▁ᏧᏓᏅᏎ -12.1536 ▁ᎠᏲᎱᏒᎭ -12.1536 ▁ᎤᏂᏰᎸᏅᎩ -12.1536 ▁ᏓᏡᏗᎭ -12.1537 ᏥᏍᎦᎦ -12.1537 ▁ᏯᎾᏓᏅᏖ -12.1537 ▁ᎨᏥᎾᏄᎪᏫ -12.1538 ▁ᏓᏂᏴᎨ -12.1538 ᏓᏄᎪᏓᏁ -12.1538 ᏓᏁᎰ -12.1539 ▁ᎤᏍᏓᏱᏛᎩ -12.154 ᎫᏛ -12.1541 ▁ᏗᏯᎢ -12.1541 ᏲᎯᏍᏙᏗ -12.1541 ▁ᏭᏁᏙᎴ -12.1541 ▁ᏗᎦᏓᎷᎩᏍ -12.1541 ▁ᎤᏑᎵᎪᏨᎩ -12.1542 ᏈᎬ -12.1543 ᏉᎯᏳᏓᏁᎯ -12.1543 ▁ᎠᏌᎯ -12.1544 ▁ᏥᎸᏉᏙᏗ -12.1544 ᏥᎾᏰᏍᎬᎢ -12.1544 ▁ᎢᏣᏚᎵᎭ -12.1544 ▁ᎠᏆᏍᎦ -12.1545 ▁ᏕᏥᏴ -12.1545 ᏚᏏ -12.1545 ᏎᏒᎯ -12.1546 ▁ᏥᏨᏲᏪᎳ -12.1546 ▁ᏚᏒᏅ -12.1546 ᎤᏙᎯᏳᏗ -12.1546 ▁ᎤᎾᏛᏗᏱ -12.1546 ᎾᏅᏅᎩ -12.1547 ᎨᎶᎰ -12.1547 ᎩᏰᎢ -12.1547 ▁ᏳᏄ -12.1547 ᏃᎬᏁᎸ -12.1547 ▁ᎤᏍᏕᎵᏍᎩ -12.1547 ᏂᏚᎩ -12.1547 ᏯᏓᏂᎸᎦ -12.1548 ▁ᎤᎵᏍᏚᎩ -12.1548 ᏠᎯᏍᏛᎢ -12.1548 ▁ᎤᏂᎶᏎᎢ -12.1548 ▁ᎤᏍᏓᏩᏛᏒᎩ -12.1549 ▁ᏥᏓᏥᏲ -12.1549 ▁ᏭᏣᏅᎩ -12.155 ᎾᎵᏍᎪᎸᏔᏅᎯ -12.155 ▁ᎤᎾᏤᎸ -12.155 ▁ᎠᏋᏗᏍᎬ -12.1551 ▁ᎨᎳᏂ -12.1551 ▁ᎡᏒᎭ -12.1551 ▁ᎢᏣᏓᏅᏖᎯ -12.1551 ▁ᏭᏓᎩᏅᏎ -12.1552 ᏣᎧᏃᏗᏱ -12.1553 ▁ᎢᏨᏍᏗᏰ -12.1553 ▁ᎢᎩᏙ -12.1553 ᏍᏙᏗᎭ -12.1553 ᏓᎵᏱ -12.1554 ▁ᏕᏥᏯᎦᏅ -12.1554 ▁ᎲᏔᏅ -12.1555 ᏚᏓᎴᏍ -12.1555 ▁ᏬᎩᎶᎯᏍᏗ -12.1555 ᎩᏯᏅᎡᎵ -12.1556 ▁ᏙᏥᏍᏗᏰᏗ -12.1556 ▁ᎤᏪᎧᎲᎢ -12.1556 ▁ᏙᏓᏂ -12.1556 ᎭᏁᏍᏗ -12.1557 ᏔᏅᏅᎩ -12.1557 ᏅᏍᏔᏅᎢ -12.1557 ▁ᎤᏓᎸᎢ -12.1557 ▁ᏱᏄᎵᏍᏔᏁᎢ -12.1557 ▁ᏣᏍᏆᏂᎪᏛ -12.1558 ᏯᏪᎢᏍᏔᏅ -12.1558 ▁ᏥᏬᏂᏍᎬᎢ -12.1558 ▁ᏂᏣᏓᎨᏳᏒᎢ -12.1558 ▁ᏂᏓᏙᏓᏈᏒᎢ -12.1558 ᏍᏚᏅ -12.1559 ▁ᏚᏄᏩᎥᎢ -12.1559 ▁ᎾᎬᏁᎴᎢ -12.1559 ▁ᎤᏁᏙᎸᎩ -12.1559 ▁ᎤᎾᏅᏁᎢ -12.1559 ▁ᎠᎩᏆ -12.1559 ᏣᏁᎸᏔᏅᎯᏍᎪ -12.1559 ▁ᏗᏍᏆᏂᎪᏙᏗᏱ -12.1559 ▁ᎾᎩᏪᏒᎢ -12.156 ▁ᎠᏙᏩᏗᏍᏗ -12.156 ▁ᎯᏍᎫᏕᏍ -12.1561 ᏔᏛᏁᎵ -12.1561 ▁ᏩᎾᎦᎳᎯᏳ -12.1561 ᎴᏒᎭ -12.1561 ᏕᎵᏛ -12.1561 ▁ᏗᏔᎳ -12.1562 ▁ᏕᎪᏢᏒᎢ -12.1562 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ -12.1562 ▁ᎯᏃᎯ -12.1562 ▁ᏂᏚᏍᏕᎢ -12.1563 ▁ᎤᏂᏥᎸᎢ -12.1563 ᏁᎷᎩᎡᎴᎢ -12.1563 ▁ᎻᎾ -12.1563 ▁ᏙᏛᎵ -12.1563 ▁ᏄᏬᎯᏳ -12.1564 ᏲᏅ -12.1564 ▁ᏙᎦᎸ -12.1564 ▁ᎠᏍᎦᏱ -12.1564 ▁ᎦᎵᎡᎵᎬᎢ -12.1565 ▁ᏴᏥ -12.1565 ᎵᏰᎢᎶᎸ -12.1565 ▁ᎮᏓᏗ -12.1565 ▁ᎢᏥᏁᎬᎢ -12.1566 ᎦᎵᏍᏙᏎ -12.1566 ᏗᏍᎦᎳᏅᎩ -12.1567 ▁ᎤᏁᎵᏤᏃ -12.1567 ᏣᏅᏓᏕᎮ -12.1568 ▁ᏧᏩᏂ -12.1568 ▁ᎤᏇᏓᎸᏍᎩᏂ -12.157 ᏍᏚᏁᎰ -12.157 ▁ᎤᏂᏐᏗ -12.157 ᏄᏔᎩ -12.157 ▁ᎤᏄᏩᎥᎩ -12.1571 ᏯᎩᎷᏨ -12.1571 ᎩᎷᏤᎸ -12.1571 ▁ᎣᎦᏛᎦᏅᎩ -12.1572 ▁ᎠᏂᎪᏩᏘᏍᎬᎩ -12.1572 ▁ᎣᏤᏙᎲ -12.1572 ᏥᏂᏴᎯ -12.1573 ▁ᎤᎾᏂᎩᏐ -12.1573 ᎷᏥᎸᎢ -12.1573 ▁ᎠᏯᏖ -12.1573 ▁ᏧᎦᏣ -12.1574 ▁ᏂᏕᏨ -12.1574 ▁ᎤᏣᏁᎢ -12.1574 ▁ᏱᏂᏥᏪᏎ -12.1574 ▁ᏂᏕᎦᏪᏎᎲᎩ -12.1575 ▁ᎤᎷᏥᏗᏒ -12.1575 ᎻᏱ -12.1575 ▁ᏥᏲᎵ -12.1576 ▁ᎤᎾᏓᏟᏌᏅᎩ -12.1576 ▁ᎤᏓᏍᏛ -12.1576 ᎠᏯᏍᎪ -12.1577 ▁ᎠᏂᎦᏘᏗᏍᎨ -12.1577 ▁ᏴᎬᏛ -12.1577 ▁ᎤᏪᎧᎯᏴ -12.1578 ᏓᏕᎰᏗ -12.1578 ▁ᎤᏍᏈᏯ -12.1579 ᎤᏫᏂ -12.1579 ᏁᏅᏎᎢ -12.1579 ▁ᏙᏓᎬᏩ -12.1579 ▁ᎠᎯᏛ -12.1579 ▁ᏓᏠᏱᎲ -12.1579 ▁ᏬᏱ -12.158 ᏛᏗᏍᎬᎢ -12.158 ▁ᎤᎾᏄᎪᏨᎩ -12.158 ▁ᎡᏉᎯ -12.1582 ▁ᎠᏓᏄᏖᏲᎮ -12.1582 ▁ᏫᎯᏳ -12.1582 ▁ᏅᏥ -12.1583 ▁ᏱᎧᏁ -12.1583 ▁ᏓᏱᏙ -12.1583 ᏗᏌᎧ -12.1584 ▁ᎤᎵᏍᏔᏁᎢ -12.1584 ᏂᎷᏤᏗ -12.1584 ▁ᎤᎵᏍᏕᏍᏔᏁ -12.1585 ᏂᎳᏫᏦᎯ -12.1585 ▁ᎠᎦᏅᏙ -12.1585 ▁ᎠᎾᎵᏍᏓᏴᏗᏍᎪ -12.1585 ᏯᏓᏅᏓᏗᏍᏔᏅ -12.1586 ▁ᏳᏣᏅᏓᏕᎮ -12.1587 ▁ᏫᏍᎩᎾᎩ -12.1588 ▁ᏥᎯᏯ -12.1588 ᏕᏯᏙᏗᏍᎬ -12.1588 ▁ᎤᏄᎩ -12.1589 ▁ᏭᎷᏤᎸᎩ -12.159 ▁ᏓᏁᎰᎢ -12.1591 ▁ᎤᎵᏌᎳᏁ -12.1591 ᎦᏔᎲᏍᏔᏅ -12.1591 ᏯᏪᏐᎸᏍᏗᏱ -12.1592 ▁ᎢᏣᏚᏓᎴ -12.1592 ▁ᎪᏢᎭ -12.1593 ▁ᏓᏥᏳ -12.1593 ▁ᎤᎾᏚᎵᏍᎨᎢ -12.1593 ▁ᎤᎾᏎᎵᏔᏅ -12.1593 ᏄᏬᏍᏙᏗ -12.1594 ▁ᏫᏚᏂᎾ -12.1594 ▁ᏧᎨᎯᏙ -12.1594 ᎵᏍᏔᏁᎭ -12.1594 ▁ᏕᎦᎳ -12.1595 ▁ᎦᎵᏥᏙᎲᏍᎬ -12.1595 ᏁᎵᏌᏕ -12.1595 ᏕᏒᎲᏍᏗᏱ -12.1595 ▁ᎠᎾᎵᏍᎦᏍᏙᏗᏍ -12.1595 ▁ᏥᎰᎵ -12.1595 ᏂᏙᎸᎩ -12.1595 ᏃᎱᎶᏗ -12.1595 ▁ᎠᏙᎴᎰᏍᎬ -12.1595 ᏅᏔᏛᏁᎵ -12.1596 ᎳᏍᏗᏱ -12.1596 ▁ᏕᎤᏪ -12.1597 ▁ᎢᏣᏚᎵᏍᎬᎢ -12.1598 ᏒᏍᏔᏁᎢ -12.1598 ᎾᎴᏂᎴ -12.1598 ᎣᎦᏂᎩᏒ -12.1598 ▁ᏫᎬᏩᏂ -12.1599 ᏕᏯᏙᏓᏅ -12.1599 ▁ᎠᏛᎪᏗᏱ -12.1599 ▁ᎬᏩᏘᎾᏫᏛᎮ -12.16 ᏦᎸᎯᏍᏗ -12.16 ▁ᏗᏂᏅᎦ -12.16 ▁ᏗᎦᏥᏯᏠᎢᏍ -12.1601 ▁ᏗᏓᏃᎮ -12.1602 ▁ᏥᏍᏓᎵ -12.1602 ▁ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎪ -12.1603 ᏗᎩᏏ -12.1603 ▁ᏂᏨᏁᎸᎭ -12.1603 ▁ᎠᏋᎨᏫᏍ -12.1603 ▁ᎠᎼᏂ -12.1603 ▁ᏧᏍᏔ -12.1604 ᏂᎴᏴ -12.1604 ▁ᎠᏛᏁᏗ -12.1604 ▁ᎠᏂᎦᎾ -12.1605 ᏂᏟᏅ -12.1605 ▁ᎤᏂᏁᎲ -12.1605 ᏰᏣᏍᏗᏍᎨ -12.1605 ▁ᎡᏙᎢᏳᏅ -12.1605 ▁ᎣᎩᏙᎵᏨ -12.1606 ▁ᏥᎷᎩ -12.1606 ᎵᏍᏓᏴᏅ -12.1607 ▁ᏱᏙᎨᏍᏗ -12.1607 ▁ᎦᎨᏗᏳ -12.1608 ▁ᏣᎬᏍᎪᎸ -12.1608 ▁ᎤᎾᏘ -12.1608 ▁ᏦᏥᏅᎪᎢ -12.1608 ▁ᏣᏍᎪ -12.1609 ▁ᎡᎳᏗᎨ -12.1609 ᏭᏍᏘᏅ -12.1609 ▁ᎢᏓᎴᏂᏙᎲ -12.1611 ▁ᏣᎩᏁᏤᎸ -12.1611 ᏛᎦᏁᎵ -12.1611 ᏂᎶᏍᎬ -12.1612 ᎤᏂᏍᎦᏨ -12.1612 ▁ᏍᎦᏫᏍ -12.1613 ▁ᎤᏁᎳᏗᏍᏗᏍᎬ -12.1614 ▁ᎠᏂᏍᎦᎢᎲᎩ -12.1614 ᏥᏬᏁᏗᎭ -12.1614 ▁ᏄᏍᎦ -12.1614 ᏘᏃᎮᎴᏃ -12.1615 ▁ᎤᏁᎢᏍᏔᏅᎩ -12.1615 ᎠᏎᎵᏛᏍ -12.1615 ▁ᎤᎵᎮᎵᏨᎩ -12.1615 ▁ᏗᏴᏈ -12.1616 ▁ᎠᎧᏔᎲ -12.1616 ▁ᎤᏯᏅᎲᎩ -12.1616 ᏡᏂ -12.1617 ▁ᏥᏂᏣᏛᏁ -12.1617 ▁ᎦᏓᎡᎢ -12.1618 ▁ᎤᏂᏲᏍᏔᏅ -12.1619 ᎻᎴ -12.1619 ▁ᎬᏬᎵᏤ -12.162 ▁ᎠᎾᏔ -12.162 ᏓᏅᏕᎭ -12.1621 ▁ᎤᎷᎯᏍᏓᏁ -12.1621 ▁ᏚᏪᎧᎲᎢ -12.1621 ᎤᏎᏒ -12.1622 ▁ᏕᎤᎷᎬᎢ -12.1622 ▁ᎦᏍᎩᏓᏍᎬᎢ -12.1622 ▁ᏙᎩᎸᏫᏍᏓᏁᎲᎢ -12.1622 ▁ᎯᏁᎬᎢ -12.1622 ▁ᎠᏂᎧᎸᎢ -12.1622 ▁ᎬᏩᏓᏅᏁᎮ -12.1622 ▁ᎠᏥᏃᏁᎴᎢ -12.1622 ᏓᎵᏍᏓᏴᎲᎦ -12.1622 ᏪᏲᎲᏍᎩ -12.1623 ▁ᏫᏚᎧᎾᏁᎢ -12.1623 ▁ᎯᏢᎾ -12.1623 ▁ᎬᏩᏲᎱ -12.1623 ▁ᏓᏥᎵ -12.1624 ▁ᎯᏰᎶ -12.1624 ᏕᏥᏲᏒ -12.1624 ▁ᏅᏓᏳᎵᏍᏙᏔᏅ -12.1624 ▁ᏕᏥᎸᏫᏍᏓᏁᎸ -12.1624 ▁ᏓᎳ -12.1625 ▁ᏥᏕᎦᎶ -12.1625 ▁ᏧᎶᏒᎢ -12.1626 ▁ᎤᎾᎵᏱ -12.1627 ▁ᎠᎾᏛᎩᏍᎬᎢ -12.1627 ᎩᎳᎾᎶ -12.1628 ▁ᎤᎾᏓᏅᏖᎢ -12.1628 ▁ᎤᏍᏗᏰᏔᏁᎢ -12.1628 ᏓᏓᏅᏟ -12.1628 ᎪᎩᏂᏄᎪ -12.1628 ▁ᏕᎦᏅᏍᏓ -12.1628 ▁ᏳᏇ -12.1628 ▁ᎮᎵᎠᏍᎪ -12.1628 ▁ᏧᏃᏰ -12.1629 ▁ᎠᎾᎵᎮᎵᎬᎢ -12.1629 ▁ᎠᏇᎭ -12.1629 ᎦᎷᏨᎭ -12.1629 ▁ᎦᏬᏂᏍᎨᎢ -12.163 ▁ᏥᎨᎭ -12.163 ᏲᏍᏔᏃ -12.163 ▁ᏱᎨᏥᏎᎪᎩ -12.163 ▁ᎠᏰᎸᏎᎢ -12.1631 ▁ᎤᏂᏰᎸᏎᎢ -12.1631 ▁ᎤᏅᏍᎦᏝ -12.1631 ▁ᎢᏨᏙᏗ -12.1632 ᏓᏓᏲᎯᏎ -12.1632 ᏁᎵᏛ -12.1633 ▁ᎤᎾᎵᏘ -12.1633 ▁ᏏᎩᎻᏱ -12.1633 ▁ᏛᎾᎦ -12.1635 ▁ᎠᎳᏏ -12.1635 ᏗᏫᏏ -12.1636 ▁ᎠᏂᏃᏗᏍᎬ -12.1636 ▁ᎤᏰᎸᎾᏁ -12.1636 ▁ᏛᏂᏍᏆᏂᎪ -12.1636 ▁ᏓᎩᎸᏫᏍᏓᏁᎰ -12.1636 ▁ᎤᎾᏘᏃᎴ -12.1637 ▁ᎢᏛᏗᏍᎬᎢ -12.1637 ᏰᎾ -12.1637 ▁ᏨᏕᏨ -12.1637 ▁ᏗᎬᏩᎾᏁᎶᏙᏗ -12.1637 ᎾᏛᏁᎲ -12.1639 ᏒᏍᏙᏗ -12.1639 ᏫᏒᎢ -12.1639 ᏓᎪᎾᏛ -12.1639 ᎾᎵᎪᎲᏍᎬ -12.164 ▁ᎤᏂᏲᎮᎢ -12.164 ▁ᎤᏙᎯᏳᎲ -12.1641 ▁ᎠᏓᏙᎵᏍᏗᎭ -12.1642 ▁ᎢᏥᎦᏔᎲᎢ -12.1642 ᏳᏩᏂᎸ -12.1642 ▁ᎠᏓᏔ -12.1642 ▁ᎠᎯᎯ -12.1642 ᏂᏍᎩᏪᏎᎰ -12.1643 ᏚᎿᎥᎢ -12.1643 ▁ᎤᎾᏓᏅᏙ -12.1643 ᏂᎷᏨ -12.1643 ▁ᎤᎾᎵᏏ -12.1643 ᏦᏱᎮ -12.1644 ᎡᎵᏍᎨᏍᏗ -12.1644 ᏥᏴᏌ -12.1645 ▁ᏥᏥᎭ -12.1645 ▁ᏥᎦᏚ -12.1645 ▁ᎤᏂᏲᎴᎢ -12.1645 ▁ᏂᏍᏋᏁᎸ -12.1647 ▁ᏥᏯᏚᎸᎡᎸ -12.1648 ᏍᎪᎵᏰᎥ -12.1648 ᏝᏛᎩ -12.1649 ᏂᏰᎸᏒ -12.165 ᏕᎶᎰᏍᎬ -12.165 ᎮᎮᎢ -12.165 ᎴᏈ -12.1651 ᏦᏂ -12.1651 ᎠᏆᏛᎦᏁᎸ -12.1651 ᎢᏍᏓᏁᎸᎢ -12.1652 ᏗᏒᏁ -12.1653 ▁ᎤᏠᎠᏏ -12.1653 ᎪᎥᏍᎦᏉ -12.1653 ▁ᎠᏆᏙᏗᏱ -12.1653 ▁ᏫᏣᎢᏒ -12.1653 ᏓᏗᏍᎬ -12.1654 ᎦᎳᎮ -12.1655 ᏓᎨᏙᎵ -12.1655 ▁ᏗᎦᏆᎵ -12.1655 ▁ᏓᏣᎾ -12.1656 ▁ᏚᎾᏟᏴ -12.1656 ▁ᏚᏪᏐ -12.1656 ᎾᏙᏓᏆ -12.1657 ▁ᏳᏂᎭ -12.1657 ▁ᎤᏍᏆᏃᏴᎬ -12.1659 ᏭᏣᏅᎩ -12.1659 ▁ᏣᏙᎯ -12.166 ᎦᏁᎴᎢ -12.1661 ᏁᏙᎰ -12.1661 ▁ᎤᏂᏩᏏ -12.1662 ▁ᏥᏂᏣᏪ -12.1662 ▁ᏫᎦᏅᎨ -12.1662 ᎦᏡᏗᏍᎬ -12.1662 ᎵᏍᎦᏍᏙᏗᏱ -12.1662 ▁ᎤᏙᏢᏁ -12.1664 ᎬᏩᏕᏁᎴᎢ -12.1664 ᏙᏗᏍᎨᎢ -12.1665 ᏙᏣᎸ -12.1665 ▁ᎤᏱᎵᏙ -12.1666 ▁ᎬᏩᏂᏅ -12.1666 ᏙᎳᏛᏗ -12.1667 ▁ᏗᏥᏐᏈᎸ -12.1667 ▁ᎡᏣᏛ -12.1668 ᏌᏛᏙᏗ -12.1669 ᏂᏣᏪᏎᎭ -12.1669 ▁ᏓᎾᏏᏔᏗᏍ -12.167 ᎦᎵᏍᎩ -12.1671 ▁ᎤᏪᏅᎡᎮ -12.1672 ᎦᎿᏁ -12.1673 ᏤᎰᎢ -12.1673 ▁ᏚᏪᎭ -12.1673 ▁ᎦᏙᎥᎢ -12.1673 ▁ᎤᏛᏎᎢ -12.1673 ▁ᏗᎨᏥᏰ -12.1673 ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎩ -12.1673 ▁ᎥᏆᏒᎦᎶᏔᏅ -12.1674 ᎠᏒᎢ -12.1674 ᏥᏅᏁᎸᎩ -12.1675 ᏥᏴᏏ -12.1675 ▁ᏳᎾᏛᎦᏁ -12.1675 ▁ᎤᏛᏛᏅ -12.1676 ▁ᎣᏥᏂ -12.1676 ▁ᎤᏂᎦᏛ -12.1677 ▁ᏫᎦᎷᎯᏍᏗ -12.1678 ▁ᏂᏕᎦᎵᏍᏗ -12.1678 ▁ᏧᏂᏆᏂᏲᏍ -12.1678 ᏮᏔᏁ -12.1679 ᏚᏓᏕᏫᏍᏗ -12.1679 ▁ᎡᏙᎢ -12.1679 ▁ᏓᏤ -12.1679 ▁ᏗᏁᎳ -12.168 ▁ᏚᎹ -12.168 ᏩᏥᎪ -12.1681 ▁ᎢᏗᏍᏓᏱ -12.1681 ▁ᎾᏋᏁᎲ -12.1682 ᎯᏍᏕᎸᏗ -12.1683 ▁ᎣᎩᏅᏍᏔᏅ -12.1683 ▁ᎤᏛᏎ -12.1683 ▁ᎢᎦᎵᏍᏙᏗ -12.1684 ᏩᏛᎯᎸᎭ -12.1684 ᏓᏂᏟᏍᏗᏍᎪᎢ -12.1685 ᏛᏅᎢᏍᏓᏁ -12.1685 ▁ᎤᎵᎪᎾᏔᏅ -12.1686 ᎯᎪᏩᏘᎭ -12.1686 ▁ᏥᎬᎭ -12.1686 ▁ᎠᏥᎸᏉᏙᏗᏱ -12.1686 ᏄᏢᏕ -12.1687 ᏍᏓᏱᏛᎩ -12.1688 ▁ᏕᎦᎳᏅᏛᎢ -12.1688 ᎵᏰᏛ -12.1689 ▁ᏓᏲᏣᏛ -12.1689 ▁ᎢᎨᎭ -12.169 ᏚᏓᎴᏍᏗᏍᎬ -12.169 ᎬᎭᎷᏯᏍᎬᎢ -12.169 ▁ᎰᎵᎦ -12.1691 ▁ᏍᎩᎾᏂ -12.1691 ▁ᎤᏂᏩᎯᏍᏔ -12.1691 ▁ᏕᎦᏂ -12.1691 ▁ᎤᏍᏆᏂᎪᏎᎢ -12.1691 ᏚᏞ -12.1692 ▁ᏔᏘᏍᏓᏁ -12.1693 ▁ᎢᏣᏓᏙᎵᏍᏗᏍᎬᎢ -12.1693 ▁ᎠᎾᏂᎩ -12.1694 ᎢᎨᏅᏍᏗ -12.1694 ᏂᏴᏍᏔᎩᏍ -12.1695 ᏛᎦᏍᏓ -12.1695 ▁ᏚᏂᏃᎩᏒ -12.1695 ᎩᏐᎾ -12.1695 ᎦᏥᏃᏁᎸᎩ -12.1695 ▁ᏔᎵᏍᎪᎯ -12.1696 ▁ᏓᏥᎦ -12.1697 ▁ᎠᎵᏣ -12.1697 ᏂᏔᏕᎩ -12.1698 ▁ᏧᏂᎸᎯ -12.1698 ᏗᎧᏃᎩᏍᎨ -12.1698 ▁ᎠᏴᏫᏯᎯ -12.1698 ▁ᏕᎦᏄᎪᎬᎢ -12.1699 ᎬᎪᏩᏔ -12.1699 ᏏᏂᏙᎮ -12.1699 ▁ᏍᏕᎾ -12.1699 ▁ᏚᏓᏂᎸᏤᎴ -12.17 ᏬᏒᏁ -12.1701 ᎹᏓᏗ -12.1701 ▁ᎠᏆᏢ -12.1701 ▁ᎧᏃᎯᏴ -12.1701 ᎪᏒᎾ -12.1702 ▁ᎠᎫᏏ -12.1705 ▁ᏥᏥᏰᎸ -12.1707 ▁ᎡᎵᏏ -12.1707 ▁ᏈᎬᎢ -12.1707 ᎾᎵᏍᎪᎸᏗᏍᎬᎢ -12.1708 ᏍᏓᎦᏔ -12.1708 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎨ -12.1708 ᏓᏄᏖ -12.1708 ▁ᎠᏂᎨᏂ -12.1709 ᎶᏛᎾ -12.1709 ᏦᏎᎮᏍᏗ -12.171 ▁ᏗᎦᏅᎦᎸᏙᏗ -12.1711 ▁ᏕᎫᎪᏓᏁᎰ -12.1712 ᎦᏬᏂᏍᎪᎢ -12.1712 ᏯᎫᏴᎡᏗᏱ -12.1712 ᏲᏍᏗᏍᎪ -12.1713 ▁ᎠᏂᎲᎦ -12.1714 ▁ᎭᏢᎨ -12.1714 ▁ᏱᏄᎾᏛᏁᎴ -12.1714 ᎪᎯᏍᏓᏁᎯ -12.1715 ᏥᏯᏛᏁᎸ -12.1716 ᏗᎴᎲᏍᎬ -12.1717 ᏚᎢᏍᏛ -12.1717 ▁ᏗᏂᏃᎩᏍᏗᏍ -12.1717 ᎯᏴᏓ -12.1718 ᏃᎯᏳᏏᏱ -12.1719 ᎶᏅᎮ -12.1719 ▁ᏕᏣᏓᏠᎲ -12.1719 ▁ᏇᏂᏍᎩᏂ -12.172 ▁ᏂᎬᏁᎮᎢ -12.1721 ᏓᏅᏒᎯ -12.1721 ▁ᏚᏨ -12.1721 ▁ᎠᎦᏘᏃᎸ -12.1721 ᎾᏏᏃᎴ -12.1722 ▁ᎾᏆᎵᏍ -12.1722 ▁ᏓᏁᎮ -12.1723 ▁ᏓᏂᏍᎦᎢᎮ -12.1723 ▁ᎠᎾᏗᏒᎯᎲ -12.1724 ▁ᎦᏅᎪᎢᏍᏗ -12.1725 ▁ᎤᏙᎯᏳᏁᎢ -12.1725 ▁ᎠᏰᎸᏎ -12.1726 ▁ᎠᏂᎸᏉᏗᏍᎨᎢ -12.1726 ᏅᏛᎩ -12.1726 ᎴᏏ -12.1727 ▁ᏧᏓᏚ -12.1728 ▁ᎭᏓᏅᏖᏍᎪ -12.1729 ᏂᏲᏍᏓᏁ -12.1733 ▁ᎦᏣᏄᎵᎨ -12.1733 ᏍᏛᏗᏍᎨᎢ -12.1733 ▁ᏭᎾᏗᏅ -12.1733 ᏢᏆᏍᎪᎢ -12.1734 ▁ᏚᎴᏔᏁ -12.1734 ▁ᎪᏙᏗ -12.1734 ▁ᎤᏂᏰᎸᏒ -12.1736 ᏅᎦᎶᏔᏅ -12.1736 ▁ᏚᏄᏌ -12.1736 ᏚᏂᏐᎯᏍ -12.1737 ▁ᎤᏩᏣ -12.1737 ᏅᎦᏍᎪ -12.1737 ▁ᎬᏭᎯᏍᏗᏍᎨ -12.1737 ᎵᏱᎶᎯᏍᏗᏱ -12.1737 ᏖᏛ -12.1738 ▁ᎢᎩᎮᏍᏗ -12.1739 ᏅᏂᏌ -12.1739 ▁ᎨᏣᏈᏗ -12.174 ᏣᏪᏐᎸᏍᏔᏁ -12.174 ᎦᎾᏅᎪᎨ -12.1741 ▁ᏧᎾᏓᏡᎬ -12.1741 ▁ᏚᏩᎭᏂᏍ -12.1741 ᏗᎾᏘ -12.1741 ▁ᎤᎵᏥᏙ -12.1741 ▁ᏕᏥᏍᏚᏅ -12.1742 ᏫᎾ -12.1743 ▁ᏈᎦ -12.1745 ᏥᏲᎯᏎᎸ -12.1746 ▁ᎤᏫᏒᏎ -12.1746 ▁ᏭᏁᎢ -12.1747 ᎨᎦᏒᎦᎶ -12.1749 ▁ᏓᏂᏙᎨᎢ -12.175 ᎦᏘᎾᏫᏛ -12.1751 ▁ᏗᎩᎪ -12.1751 ▁ᏧᎸᏌᏓ -12.1751 ▁ᎦᎦᎶᎢ -12.1752 ▁ᎯᏣᏕᎶᎰ -12.1752 ▁ᏗᎦᏚ -12.1753 ▁ᎤᏓᏌᎧᎯ -12.1753 ᏥᎰᎵ -12.1753 ᏓᎪᎲᏍᏗ -12.1753 ᏂᎾᏕᎩ -12.1754 ▁ᏭᏔ -12.1754 ▁ᏂᏓᏅᏁ -12.1754 ᎦᏤᎵᎦ -12.1755 ▁ᏕᎦᎶᎨᏒᎢ -12.1755 ▁ᏧᎨᏳᎯᏳ -12.1755 ▁ᎠᏍᏆᎵᏍᎬᎢ -12.1755 ▁ᎡᎵᏍᎨᏍᏗ -12.1756 ᎩᏲᏏᎯ -12.1756 ᏕᏥᎦᎿᏩᏕᎦ -12.1757 ▁ᏚᎾᏄᎪᏫᏎᎴᎢ -12.1757 ᎤᏪᏅᏍᏗᏱ -12.1759 ▁ᏧᏂᏰᎸᏐ -12.1759 ᏏᎳᏛᎥᏍᎬ -12.1759 ▁ᎤᏃᎮᎸᎢ -12.176 ᎩᏲᏍᏙᏓᏁ -12.1762 ᏐᏢᏙᏗ -12.1765 ▁ᎠᎾᎵᎮᎵᎨᎢ -12.1766 ᏔᏍᎨ -12.1766 ▁ᏍᏕᎵᏍᎩ -12.1767 ▁ᏂᏕᏅ -12.1767 ᏆᎵᎢ -12.1768 ᏫᏣᎷᏣ -12.1768 ▁ᎤᏥᎸᏒᎩ -12.1768 ▁ᎤᎾᏕᏯᏙᏗᏍᎬ -12.1769 ᎢᏥᎦᏔᎾᎢ -12.1773 ▁ᎢᏣᎵᏍᎪᎸᏗᏍᎬ -12.1775 ▁ᎦᏁᎬ -12.1776 ᏏᎲᏏ -12.1776 ▁ᎣᏎ -12.1777 ▁ᏧᏁᏲᎲᏍ -12.1777 ᏓᏍᏗᏍᎩ -12.1779 ▁ᎠᏐᏴᎢ -12.178 ▁ᎢᏧᏅ -12.178 ᏁᎸᏙᏗ -12.178 ▁ᎡᏗᎨᏳ -12.1781 ᏯᏛᏁᏗ -12.1782 ᎾᏕᎶᏆ -12.1782 ᏩᏍᏗᏕᎩ -12.1782 ▁ᏚᏃᎸᎢ -12.1782 ▁ᎠᏉᎯᏳᏒ -12.1783 ▁ᎤᎶᏒᎩ -12.1784 ▁ᎤᏁᎸᏔᏅ -12.1786 ▁ᎤᏂᏠᏱᏉ -12.1786 ▁ᎤᏲᎷ -12.1786 ᏄᏯᎩ -12.1788 ▁ᏍᎦᏰᎬᏍᏓ -12.1791 ᏕᏘᏱᎶ -12.1791 ᏩᏂᏴᎯᎮ -12.1792 ᏓᎧᏃᎮᎵ -12.1792 ᎣᎦᎵᏍᏕᎸᏙᏗ -12.1792 ▁ᎤᏅᏅᎩ -12.1793 ▁ᎠᏥᎪᎵᏰᏍᎬ -12.1794 ᏓᏁᏤᎸ -12.1796 ᎾᏁᎭ -12.1797 ᎢᏍᏗᏍᎨᎢ -12.1797 ᏚᎢᏍᏔᏅ -12.1798 ᎪᏕᏍᏗᏍᎨᏍᏗ -12.1799 ▁ᎠᎦᏔᎮᎢ -12.1799 ▁ᏱᏣᎴ -12.1801 ▁ᎨᎦᏒᎦ -12.1801 ▁ᎠᏆᎧ -12.1802 ▁ᎠᏂᎷᏤ -12.1803 ᏯᏒᎦᎶᏔᏅ -12.1804 ▁ᎠᏓᏙᎵᏍᏓᏁ -12.1804 ▁ᏫᏚᎪᎲ -12.1805 ᎦᏟᎶᎡᎸ -12.1805 ᎾᏓᏓᏍᎩ -12.1805 ▁ᎠᏡᏗᏍᎩ -12.1805 ᏆᏁᏦᏅ -12.1805 ▁ᎠᏆᏍᎩᏓᏒ -12.1805 ▁ᎢᏥᏅᎯ -12.1806 ᏅᎡᎲ -12.1807 ᏪᏯᎸᏤ -12.1808 ▁ᏱᏓᎩᎸᏫᏍᏓ -12.1809 ▁ᏫᏄᏪᏎᎴ -12.1809 ▁ᎤᎩᏓ -12.1811 ᏓᏅᏖᏗᏍᎨᎢ -12.1812 ᎢᏍᏔᏅᎭ -12.1813 ▁ᎠᏆᏛᎦᏍᏙ -12.1813 ▁ᏓᎵᏍᏗᎳᏁᎬᎢ -12.1816 ▁ᎯᏁᎩᏒ -12.1816 ▁ᏕᎪᎵ -12.1817 ▁ᏧᏗᎦᎴ -12.1818 ᏓᏓᏅᏖᏍᎬᎢ -12.1819 ▁ᏱᎬᎭ -12.1819 ▁ᎯᏯᏓᎵᏁᎯᏕ -12.182 ᏄᏬᎯᏍᏗᏍᎩ -12.182 ᏁᎢᏍᏙᏗ -12.1821 ▁ᎤᏓᏑᏴᎢ -12.1821 ᎮᎸᏒ -12.1822 ▁ᎦᏥᏲᏪᎳᏁ -12.1822 ▁ᎠᏍᏛᏗᏍᏗᏍ -12.1824 ▁ᎤᏪᎧᏁᎴᎢ -12.1824 ᎵᎡᎾ -12.1824 ▁ᏗᏁᎨ -12.1826 ▁ᏧᎾᏥ -12.1827 ᏓᏲᏍᏔᏁ -12.1827 ▁ᏚᎧ -12.183 ▁ᎢᏗᎵ -12.183 ▁ᎤᎾᎩᎴ -12.183 ▁ᎤᏩᏂᎦᎸ -12.1831 ▁ᎧᎸᎬᎢ -12.1831 ᏛᎯᏎᎸᎯ -12.1831 ᏫᏍᎦ -12.1832 ᏗᏔᏏ -12.1833 ᎬᎭᏅ -12.1834 ▁ᎠᏯᏥ -12.1834 di -12.1836 ᎮᏰᏃ -12.1837 ▁ᏧᏓᏅᏖᎴ -12.1837 ▁ᎣᏂᏴ -12.1837 ▁ᎤᏓᏁᏁ -12.1838 ▁ᏓᎩᏍᎨ -12.1839 ᏫᏣᎶᏒ -12.184 ▁ᎣᎦᏗᏔᏍᏗ -12.184 ▁ᎤᏬᏂᏒᎢ -12.1841 ▁ᏦᎩᎭ -12.1841 ᏴᏅᎯ -12.1841 ▁ᏧᎯᏍᏗᏱ -12.1841 ᎹᎩ -12.1842 ▁d -12.1842 ▁ᏕᎫᎪᏓᏁᎸ -12.1842 ᏲᏗ -12.1842 ▁ᎠᏓᏅᏍᎬ -12.1844 ▁ᏚᎾᏓᏛᏛᏁ -12.1845 ᏁᎶᎯ -12.1845 ᏥᏩᎾᎦᎸᎢ -12.1848 ▁ᏂᎬᎸ -12.1851 ▁ᏦᏒᎢ -12.1852 ▁ᏥᏙᏥ -12.1852 ▁ᎤᏕᎭᏯ -12.1853 ᎾᏖᏉᎶ -12.1853 ▁ᏣᏟᏍᏛ -12.1854 ▁ᏕᎤᎾ -12.1855 ᏲᎲᎢ -12.1855 ᏥᎪᎵᏰᏍᎨᏍᏗ -12.1856 ▁ᎣᏍᏙ -12.1856 ▁ᎦᏅᎨᎢ -12.1857 ᎪᎸᏍᏔᏁ -12.1857 ▁ᏚᏙᎯ -12.1858 ▁ᎠᏥᏍᏚᎲ -12.1859 ᏩᎭᏂᎸ -12.186 ▁ᎨᏥᏁᏗᏱ -12.186 ▁ᏄᏕ -12.1861 ▁ᎫᏏ -12.1862 ᏦᎯᏳᏅᎩ -12.1862 ᎵᏃ -12.1863 ▁ᏧᎳᏑᎶᎩ -12.1864 ᎩᏰᎸᎭ -12.1865 ᏁᏉᎥ -12.1866 ᏗᏣᏏᎳᏛᏙᏗ -12.1867 ᏓᏂᏏᏅ -12.1867 ᎵᏍᏔᏂᏓᏍᏗ -12.1869 ▁ᎤᏑᏯᎩ -12.1871 ▁ᎡᏌᏃ -12.1871 ᏂᏕᎾ -12.1871 ▁ᏂᎦᎵᏍᏙᏗᏍᎨᎢ -12.1872 ᎸᎡᎸᎯ -12.1874 ▁ᏓᏟᎶᏍᏗᏍᎬ -12.1875 ᏍᏚᏕᏍᏗ -12.1876 ▁ᏓᎲᎢ -12.1877 ▁ᏫᏍᏛ -12.1877 ▁ᏚᎾᏗᏔᎮ -12.1878 ▁ᏗᏍᎩᎾ -12.1879 ᏣᏠᏯᏍᏓ -12.1879 ▁ᎤᎾᎸᎸ -12.188 ᏁᏙᎭ -12.188 ᏘᎾᏫᏛᎲ -12.188 ▁ᎤᏂᏩᏒᎨ -12.1884 ▁ᎠᏗᏔᏍᎬ -12.1884 ▁ᎠᎧᎵᎢᎭ -12.1884 ▁ᏂᎬᏩᏛᏁ -12.1885 ▁ᏱᎪᎵ -12.1885 ▁ᏗᏄ -12.1885 ▁ᎣᎩᏃᎮᎸ -12.1886 ᏤᎳᏗᏍᏗᏍᎬᎢ -12.1887 ▁ᎠᏢᏗ -12.1887 ▁ᎢᎨᏐ -12.1888 ᏨᏒ -12.1888 ▁ᏣᏆᎵᏂᎪᎯᏍ -12.1889 ▁ᏅᏩᏍᏙ -12.1889 ▁ᎣᏓᏅᏛᎢ -12.189 ▁ᎢᏥᎷᏤ -12.189 ▁ᏣᏁᎳᏗᏍᏗ -12.1893 ▁ᎾᎬᏁᎸᎢ -12.1894 ᏆᏛᏂᏏ -12.1895 ▁ᏱᏨᏯᏛ -12.1897 ▁ᏥᎩᏁᎸᎩ -12.19 ᏃᏣᎶᏗ -12.1901 ▁ᎫᏇ -12.1901 ▁ᏴᎨᏣᏛ -12.1902 ᏁᎩᎡ -12.1903 ᎥᏍᎪ -12.1904 ▁ᎯᏯᏅᏗ -12.1907 ▁ᏂᎦᎦ -12.1908 ▁ᎠᏏᎾᏌᏅᎢ -12.1909 ▁ᏚᎵᎪᏁ -12.1909 ▁ᏱᏩᎾ -12.1909 ▁ᎠᏥᎷ -12.1909 ▁ᎤᏲᎯᏍᏔᏁᎢ -12.191 ▁ᎡᏥᏲᎢᏎᎸ -12.191 ᏂᏏᏁᏗᏱ -12.1913 ᎵᎪᏅᏛ -12.1914 ᏓᏍᏛᏗᏍᏙᏗ -12.1914 ▁ᎣᎦᎵᎮᎵᏍᏗ -12.1915 ▁ᎢᎫᏩᎾ -12.1916 ᎾᏁᎳᏗᏍᎬ -12.1917 ▁ᎧᏃᎮᏍᎨ -12.1917 ▁ᏫᎦᎷ -12.1917 ᎵᏏᎩ -12.1918 ▁ᎷᏆ -12.1918 ᏣᏓᏙᏢᎾᏁᎸᎩ -12.1918 ▁ᏩᎦᏘ -12.1919 ᎧᏃᎮᏗ -12.192 ▁ᏂᎦᏪᏎᎲ -12.192 ▁ᏗᎯᏍᏗ -12.1921 ▁ᎠᏚᏓᎴᏍᏗᏍᎬ -12.1923 ▁ᎤᏲᎰᎢ -12.1924 ▁ᎠᏂᏝ -12.1925 ▁ᏙᏛᎾ -12.1927 ᎦᏛᎾᏨ -12.1927 ▁ᏚᏔᏅᎩ -12.1927 ▁ᏱᏃᎩ -12.1928 ᏏᏓᏍᏗᏱ -12.1928 ᏯᏪᏨ -12.1931 ᏥᏯᏘᏍᏓᏁᎯ -12.1934 ▁ᎯᎦᏔᎭᏰᏃ -12.1935 ᎾᏓᏂᎸᎢᏍᏗ -12.1936 ᏴᎯᎭ -12.1937 ᎸᎡᎸ -12.1937 ᏃᎸᏔᏁ -12.1939 ᎵᏃᎮᏗᏍᎪ -12.1939 ᏓᏙᎵᏍᏓᏁᎴᏍᏗ -12.194 ᏍᏛᏗᏍᎨᏍᏗ -12.1942 ᎡᏥᎩᏏ -12.1944 ᏍᏕᎸᏙᏗᏍᎨ -12.1944 ᎡᏣᏘᏃᎦ -12.1945 ᏨᏴᎦ -12.1945 ▁ᎶᏏ -12.1945 ▁ᎠᏰᏙᎳᏛᏗᏱ -12.1946 ▁ᎢᏣᏁᏢᏔᏅ -12.1946 ᏏᏙᎲ -12.1946 ▁ᎠᏔᎴᎦᏒᎢ -12.1947 ᏗᏓᎴᎲᏍᎬ -12.1948 ▁ᎠᏂᏍᏚ -12.1951 ▁ᏚᏩᏛᎲᏎ -12.1951 ᎦᎵᏏ -12.1951 ▁ᎣᎩᏁᏤᎸ -12.1952 ▁ᎤᏂᏣᏛᎢ -12.1952 ▁ᎠᏂᏴᎯᎰ -12.1952 ᎠᏍᎪᎢ -12.1953 ᏇᎵᏒ -12.1953 ᎳᎹ -12.1954 ▁ᎤᎾᎵᏍᎪ -12.1954 ᏆᏁᏍᎩ -12.1956 ▁ᏚᏪᎵᏎᎴ -12.1956 ᏦᎣᏎᎢ -12.1956 ▁ᏚᎾᏁᎶᏛ -12.1958 ᏭᏌᏅ -12.1958 ▁ᏱᎦᎸᏉᏗ -12.1959 ᏖᎭ -12.196 ▁ᏣᏥᏍᏚ -12.196 ▁ᎤᏃᏁᎴᎢ -12.1961 ᎾᏱᎩ -12.1963 ᎾᏰᎯᏍᏗᏱ -12.1963 ▁ᏘᏰ -12.1965 ᎢᏍᎨᏍᏗ -12.1966 ▁ᏯᏉᏎ -12.1967 ▁ᏫᏚᎸᏌ -12.1967 ▁ᎤᏁᎦᎸᎢ -12.1967 ▁ᏥᎥᎡᎸ -12.1969 ▁ᏚᏂᏅᏅ -12.197 ᎧᏁᎢ -12.1971 ᏘᎿᏫᏛᎲᎩ -12.1971 ▁ᎤᎾᏓᏂᏴ -12.1972 ▁ᏚᎵᏍᏚᎸ -12.1974 ▁ᏳᏜᏏᏛ -12.1976 ▁ᎢᏳᎾᎵᏍᏓᏁ -12.1979 ▁ᏥᏕᎯ -12.1981 ᎨᏍᏗᏉᏍᎩᏂ -12.1983 ᎪᏔᏅᎯ -12.1984 ᏘᎴᎢ -12.1986 ᎰᏁᎢ -12.1987 ▁ᎠᎵᏛᏗᏍ -12.1987 ▁ᎯᏍᏆᎵᏎ -12.1987 ▁ᎣᎾ -12.1989 ᏃᏎᎮ -12.199 ᏗᎦᏙᎵ -12.1991 ᎾᏄᎪᏨᎩ -12.1992 ᎢᏳᏍᏗᏉ -12.1992 ᏍᏖᏴ -12.1993 ᎦᏓᏍᏕᏓᎵᏴᏍᎩ -12.1995 ᏓᏃᏍᎩᏛ -12.1996 ᏥᏯᎧᏁᎸ -12.1996 ▁ᏳᏂᏏ -12.1999 ᏍᏗᏙᎬ -12.2 ▁ᏫᏛᏓ -12.2 ᏂᏁᏉᎩ -12.2 ▁ᎤᎵᏍᏕᎸᏙ -12.2002 ▁ᏥᎬᎩᎪᎵᏰ -12.2003 ᏯᎸᏤ -12.2004 ▁ᎡᏥᏯᎥ -12.2004 ▁ᏱᏂᏥᏪ -12.2004 ▁ᎤᎶᏐᏅᎯ -12.2006 ᏲᎮᏗᏱ -12.2006 ▁ᎢᏣᎵᏍᏓᏁᏗᏱ -12.2008 ᎾᏘᏲᎸᎩ -12.2009 ᏓᏳᎾᏂᎩᏛ -12.201 ᎩᏍᏔᏂ -12.201 ▁ᎨᏣᎴ -12.2011 ▁ᏧᎾᏚᎵ -12.2012 ▁ᎯᏍᎩᏍᎪ -12.2012 ▁ᎥᎩᎵᎥᏂ -12.2013 ▁ᎬᏩᏛᏓᏍᏓᏁᎴ -12.2014 ▁ᎠᏂᏨᏯᎢ -12.2014 ▁ᎤᎩᏨᏅᎢ -12.2015 ᎵᏌᎳᏓᏅ -12.2016 ᏗᏦᎭᏴ -12.2016 ▁ᏂᎭᎵᏍᏗ -12.2016 ▁ᎥᏓᎸᎢ -12.2017 ▁ᏫᎦᏅᏅᎢ -12.2017 ▁ᎠᏆᏓᎾ -12.2017 ▁ᎤᎵᏂᎬᎬᎢ -12.2017 ᎩᎡᎭ -12.2017 ▁ᎠᏍᏚᎲᎢ -12.2018 ᏧᎪᏓᏁᎯ -12.2019 ᎯᏐᏢᏗᎭ -12.202 ᎾᏕᎰ -12.202 ᏏᏍᏗᏱ -12.2022 ᏓᏛᏁᏗᏱ -12.2023 ▁ᏕᎦᏅᏅᎢ -12.2024 ▁ᎤᏬᏰ -12.2025 ᏂᏍᎫᏕᏍᎪ -12.2025 ᎦᏟᏓ -12.2027 ▁ᎠᏆᎦᏔᎲᏒ -12.2028 ▁ᎤᏁᏥ -12.2028 ᏓᏆᏎᎸ -12.2029 ▁ᎤᏂᏆ -12.2029 ▁ᎤᏦᎯᏃ -12.203 ▁ᏥᏙᎬᎢ -12.203 ▁ᎠᏰᎲᎢ -12.2031 ᎾᏗᏍᎦᎶᏗ -12.2031 ▁ᏤᏈᏛᏃ -12.2033 ᏥᏲᎵᎴ -12.2035 ▁ᏥᏆ -12.2035 ▁ᎠᏂᏍᎦᎢᎮᏃ -12.2035 ▁ᏗᏓᏁᎸᎢ -12.2036 ᎵᏰᏅ -12.2037 ᎿᏕᎨ -12.2039 ᏴᏣᏗ -12.204 ᎤᏂᏴ -12.2041 ▁ᏂᎬᏁᎲᎢ -12.2041 ▁ᏂᎦᏛᏁᎲᎢ -12.2043 ▁ᏗᏰᎶ -12.2044 ᏚᏭᎪᏓᏁᎴ -12.2044 ▁ᎤᏆᏙ -12.2045 ᏌᏬᎢᎲ -12.2045 ▁ᎣᎩᎵ -12.2046 ᏅᎪᎥ -12.2047 ▁ᏗᏤᎲᎢ -12.2047 ᎦᎴᏅᏗᏍᎩ -12.2047 ᏍᎩᏲᏢᎾᏁ -12.2048 ᎦᎵᏦᏙ -12.2048 ▁ᏴᎦᎦᎵᏍᏓᏴ -12.2048 ᎦᏛᏂᏗᏍᏗᏱ -12.205 ▁ᏕᏥᎸᏌᏓ -12.2051 ▁ᏣᎵᏘ -12.2054 ᎦᏟᏂᎬᏁ -12.2056 ▁ᎤᏪᎾ -12.2057 ᏥᏯᎡᏍᏗ -12.2059 ▁ᏣᏣ -12.2064 ▁ᏗᏤᎳᏍ -12.2064 ▁ᏍᎩᏌᎳ -12.2065 ▁ᏰᏗ -12.2066 ᏩᎫᎵ -12.2068 ᏗᎻᏯ -12.2069 ▁ᎠᎩᎨᏳ -12.2069 ᎢᏍᏔᎾ -12.207 ▁ᏚᏂᎶᎨᏒ -12.2071 ᏟᏛ -12.2073 ᏥᏁᏤᎰᎢ -12.2073 ᏗᎪᎵᎩ -12.208 ᎢᏓᏍᏗ -12.208 ▁ᎤᏂᎫ -12.2082 ▁ᎠᏅᏗᏍᎬᎢ -12.2082 ᏓᏓᎵᏁᎯᏕ -12.2082 ᏗᏓᏅ -12.2084 ▁ᎨᏥᏒᎲᏍ -12.2084 ▁ᏚᏂᎦᏘᎸᏒ -12.2086 ᎬᏫᏳᏌᏕ -12.2087 ▁ᎤᏓᎸᏉ -12.2088 ▁ᎠᎾᎵᏃᎮᏍ -12.2093 ᏍᏓᏩᏗᏎᏍᏗ -12.2094 ▁ᎡᏥᎪ -12.2094 ▁ᏗᎨᎴ -12.2095 ▁ᎭᎴᏅ -12.2096 ▁ᏛᏄ -12.2096 ᏥᎦᏘᏴ -12.2096 ᏣᏛᎩᏍᎪ -12.2097 ᏒᏍᏛ -12.2097 ᏩᏛᎯᏓᏍᏗ -12.2097 ▁ᎠᏲᎳ -12.2102 ▁ᎨᎳᏗ -12.2103 ᏃᏁᏗᏱ -12.2104 ᎩᎦᎵᏍᏓᏗᏍᎬᎩ -12.2105 ᏃᏣᎶ -12.2108 ▁ᎾᎾᏛᏁᎲᎩ -12.211 ▁ᏓᎾᏏ -12.2111 ᏣᎩᏍᏗ -12.2113 ▁ᏓᏨᏯ -12.2115 ᎵᏓᏍᏙᏗ -12.2118 ᏣᏖ -12.2118 ᏚᏙᎡ -12.2125 ᏆᎵᏥᏙᏅ -12.2125 ᏥᏯᏢᏈ -12.2127 ᏗᎤᏠᎠᏎ -12.2128 ᎵᏔᏬ -12.213 ▁ᏗᎩᏗ -12.2133 ▁ᏱᏣᏎᎵ -12.2134 ▁ᎨᎦᎵᏥᏙᏁᎴ -12.2135 ▁ᎢᎤᎨ -12.2137 ▁ᎤᏲᏍᏙᏗ -12.2138 ᏥᏍᏓᏩᏕᎩ -12.2139 ᏓᏍᏗᏍᎨᏍᏗ -12.2139 ᏍᎩᏅᏗᏍᎨᏍᏗ -12.2139 ᎨᏥᏲᎮ -12.2139 ▁ᏫᏗᎦᎶᏍ -12.2141 ᏪᎳᏗᏓᏍᏗᏱ -12.2141 ▁ᎩᏏ -12.2142 ᏓᎧᎿᏩᏕᎬ -12.2143 ᏥᎪᏙᎯᏍᏔᏂ -12.2143 ᏓᏥᎳᏂ -12.2144 ▁ᏭᏟ -12.2144 ▁ᏱᏂᏣᏪ -12.2146 ▁ᎠᎾᏓᏛᎥ -12.2146 ▁ᎰᎵ -12.2151 ▁ᏕᎨᏴᎢ -12.2152 ᏒᎦᎶᏗᏍ -12.2154 ᏂᎮᏍᏗ -12.2155 ᏫᎬᏩ -12.2156 ᎬᏒ -12.2157 ᏑᎦᎸᏙᏗ -12.2157 ᏫᏛᎲ -12.2158 ▁ᏓᎦᎾᏬ -12.2158 ᏥᎦᏘᏗ -12.216 ▁ᎤᎵᏛ -12.2161 ᏯᏨᏗ -12.2161 ▁ᎢᏯᏛ -12.2164 ▁ᎠᎵᏍᎪᎸᏉ -12.2164 ᎬᏬᏎᎴᎢ -12.2164 ▁ᎠᎩᏲᎲ -12.2166 ᏩᎫᏗᏗ -12.2166 ▁ᎤᏍᏚ -12.2167 ᎳᏑᏠ -12.2167 ᎢᏍᏗᏍᎨᏍᏗ -12.2169 ▁ᏗᏅᏃᏛᏍᎩᏂ -12.2171 ▁ᎨᎦᏓᏅᏖᏍᎨ -12.2172 ▁ᎠᏯᏙᎯ -12.2172 ▁ᏗᎬᎩᎶ -12.2173 ▁ᎤᏪᏅᏃ -12.2173 ᏃᏓᏁᎴᎢ -12.2175 ▁ᏂᏚᏕᏘᏴ -12.2176 ▁ᎤᎩᎸᏛ -12.2177 ▁ᎭᏫᏂᏳ -12.2177 ▁ᏩᏥᏯᏅᎲ -12.2177 ▁ᏕᎬᏩᏠ -12.2181 ▁ᏕᏣᏓᏲᎵ -12.2183 ▁ᎠᎾᏟᏂᎬᏁ -12.2183 ▁ᏨᏛᎩ -12.2184 ᏍᏓᏓᏅᏔ -12.2185 ▁ᎦᏬ -12.2185 ᏏᎲᏍᎪ -12.2188 ▁ᏧᏂᏍᏔᏩ -12.2189 ᏗᏨᏲ -12.219 ᏓᏅᏘᏳ -12.2192 ▁ᏭᎵᏌᎳᏓᏅ -12.2192 ▁ᎬᎾᎢ -12.2195 ᎸᏉᏕ -12.2195 ▁ᎤᏲᎰ -12.2196 ᏥᎥᏍᎦ -12.2197 ▁ᎤᏂᏯᏫ -12.2199 ▁ᎢᏥᎪ -12.22 ᏓᏯᏫᏍᎨᏍᏗ -12.22 ᎷᏉᏗ -12.2201 ▁ᏧᏂᏰ -12.2202 ᏣᎶᏁᏔᏅ -12.2202 ᏗᏔᏍᏔ -12.2203 ▁ᎦᎵᏍᏓᏴᎲᏍᎬ -12.2205 ᏄᎪᏫᏎᏗᏱ -12.2207 ▁ᏂᏣᎵᏍᏓᏁᎲ -12.2208 ᏨᏉᏕ -12.2208 ᏪᏓᏍᏗᏱ -12.2209 ▁ᏱᏣᏕᏯᏔᏁ -12.2209 ▁ᏭᏴᎵ -12.2209 ᎵᎲᎾ -12.221 ▁ᏘᏩᏛ -12.221 ᏁᏢᏙᏗ -12.2211 ▁ᏂᏕᏨᏁ -12.2212 ▁ᎠᎴᏈᏱ -12.2213 ▁ᏂᎬᏁᎢ -12.2214 ▁ᎤᏍᏆᎸᎯᏗᏎ -12.2215 ᎩᏍᏆᏂᎪᏔᏅᎩ -12.2217 ᏗᏯᎥ -12.2217 ᎬᏩᏍᏙᎢ -12.222 ᏂᏫᎯ -12.2222 ▁ᏂᎨᎬ -12.2224 ᏍᏚᎢᏒᏃ -12.2224 ᎬᏩᎾᏛᏁᎢ -12.2226 ᏓᎴᎲᏍᎦ -12.2227 ▁ᏥᎨᏥᏍᏕᎸ -12.2227 ▁ᏂᏙᏛ -12.2228 ▁ᏂᏚᏛ -12.2229 ᏴᎩᏁ -12.223 ▁ᎤᎩᎸᏔᏁ -12.223 ▁ᏯᎵᏗ -12.223 ▁ᏯᏁᎮ -12.2232 ▁ᏗᏜ -12.2233 ▁ᏫᏂᎦᎵᏍᏗ -12.2234 ▁ᎤᏂᏨ -12.2237 ▁ᎤᏂᏰᎸᏐ -12.2237 ▁ᎠᏥᎩ -12.2237 ᏘᏍᏗ -12.2238 ▁ᎤᏂᏆᏂᏲᏍ -12.2238 ᏘᏃᎮᎸ -12.2238 ▁ᎨᎦᏑᏴ -12.2239 ▁ᏚᏍᏚᏁ -12.2242 ᏄᏩᏁᎮ -12.2243 ▁ᎤᏂᏴᎸᏃ -12.2248 ᏓᏗᎦᎴᏲ -12.2251 ▁ᎤᏓᎪᎾᏛᏔᏅ -12.2252 ▁ᏘᏯ -12.2252 ▁ᏚᏂᏃᎩ -12.2253 ᎯᏍᏓᏱ -12.2254 ▁ᏂᎦᎾ -12.2255 ▁ᎤᎾᏣᎡ -12.2255 ▁ᏗᎩᎦᎨᎢ -12.2256 ᏗᏕᎨᏍᏗ -12.2256 ▁ᏚᏫ -12.2256 ▁ᏥᏓᏥᎶ -12.2257 ᏂᏪᏒ -12.2258 ▁ᏳᏬᎯᏳᏁ -12.2259 ᏂᏴᎮᎢ -12.226 ▁ᎠᏂᏔ -12.226 ▁ᏍᎩᏯᎵᎪ -12.226 ▁ᎢᏳᏅᏁᎸ -12.2262 ▁ᏧᏮᏗ -12.2264 ▁ᎯᏰᏌᏛ -12.2267 ▁ᏯᏂᏍᎦᎢ -12.2269 ▁ᏕᏨᏲᎯ -12.227 ▁ᏭᏂᏂᏌᏁ -12.2272 ▁ᎯᏁᏤ -12.2274 ▁ᏭᏝᏁ -12.2277 ᎾᎿᏬᏍ -12.2277 ▁ᏕᎤᏁᎶᏕ -12.2277 ᏠᏎᎢ -12.2277 ▁ᏗᏣᏓᏙᎵᏍᏓᏁ -12.2279 ᏃᎯᏰᎸ -12.2281 ᏙᎳᏍᏗᏍᎬ -12.2282 ▁ᏓᎦᎵᏍᎨ -12.2284 ▁ᏫᎡ -12.2284 ▁ᎤᏛᏅᎢᏍ -12.2286 ᏣᎫᏴᏓᏏ -12.2286 ▁ᏱᎦᏄ -12.2287 ▁ᎤᏩᏅᎬ -12.2288 ᎩᎸᏅᎩ -12.2288 ᏩᏕᏅ -12.2289 ▁ᏩᏛ -12.2289 ▁ᎤᏃᏢᏁ -12.2289 ▁ᎤᎴᏫᏍᏙᏗ -12.229 ᎨᏨᏁᎴ -12.2291 ᎦᏍᎪᎯ -12.2296 ▁ᎠᏔᎴᏒᎩ -12.2296 ᏣᎳᏏᏕᏂ -12.2299 ᏥᏛ -12.23 ▁ᎦᎸᎳᏗᏨ -12.2301 ▁ᎬᏩᏂᎪᎲ -12.2301 ▁ᏧᏂᏲᎱᎯᏍ -12.2303 ▁ᏣᏂᏃᎢ -12.2306 ᏯᏛᏛᎲᏍᎦ -12.2306 ▁ᎬᏎ -12.2307 ᎣᎾ -12.2309 ᏗᏔᏍᎦ -12.231 ▁ᏯᏋᏔ -12.2313 ▁ᎣᎩᏰᎸᏒ -12.2316 ▁ᎤᏔᎶᎩ -12.2318 ▁ᏥᏕᏓ -12.2321 ▁ᏏᏏ -12.2321 ▁ᏂᏍᏆᏛᏁᎸ -12.2323 ▁ᎤᎾᏓᏙᎵᏍᏓᏁᏗ -12.2325 ᏄᏂᏣᏔ -12.2326 ▁ᎤᏂᏬᏁ -12.2328 ᎦᎨᏅᏗᏍᏗ -12.2328 ▁ᏚᎪᎵᏰᎥ -12.2332 ▁ᏓᎾᏓᏍᎦ -12.2332 ▁ᎤᏲᏨᎢ -12.2333 ▁ᏓᎵᏍᏆ -12.2334 ▁ᎠᏆᎵᎮᎵᏨ -12.2334 ▁ᎠᏂᏆ -12.2335 ᏓᏲᏥᏂ -12.2335 ▁ᏅᏓᏳᏅᏍᏗ -12.2335 ▁ᎭᏁᏍᎨᏍ -12.2343 ᏍᏓᏁᎰ -12.2347 ▁ᎡᏥᏅᏁ -12.2349 ᎸᎶᎢ -12.2349 ᏅᎲᎩ -12.2353 ▁ᎡᏤ -12.2355 ᏃᏴᏘᏍ -12.2356 ▁ᎠᎲᏍᎩ -12.2357 ▁ᎤᏪᏢᏅ -12.2361 ▁ᎤᏔᏕᎩᏍ -12.2361 ᏓᏅᎩ -12.2361 ᏍᏗᎧ -12.2364 ▁ᎤᎾᎡ -12.2368 ▁ᎬᎩᏁᎢᏍ -12.2368 ᏮᏅ -12.2369 ▁ᎭᏏ -12.237 ᎩᏌᏛ -12.2378 ▁ᏱᎦᎷᎪ -12.2378 ᎬᏃᎯᏏ -12.2381 ▁ᎤᏓᏪᎵ -12.2381 ᏣᏍᏆᏂᎪᏗ -12.2383 ▁ᏚᏂᏟᏌᏅ -12.2384 ᏉᎯᏳ -12.2384 ᎬᏎᎸ -12.2385 ᏅᏍᏔᏅᎩ -12.2386 ᏕᏒᏅ -12.2389 ▁ᎬᏩᎾᏕᏁᎸ -12.2389 ᎦᎾᎦᏘ -12.2391 ▁ᏫᏓᏂᏴ -12.2393 ▁ᎠᏆᏙ -12.2395 ᎯᏎᏗ -12.2402 ▁ᏂᏑᏪᏎ -12.2403 ᎬᏓᏃᏍ -12.2404 ▁ᏭᎸᏅ -12.2404 ▁ᏙᏅ -12.2404 ᏦᎸ -12.2405 ▁ᏗᎨᎦᏟᎶᏍ -12.2405 ▁ᎤᏤᏍᏗ -12.2407 ▁ᏣᏌ -12.2409 ᏆᎸ -12.2409 ▁ᏗᏍᎩᏲᎯ -12.2409 ▁ᏁᏍᏗ -12.2409 ▁ᏚᏢ -12.241 ▁ᎩᏛ -12.241 ▁ᏕᎦᎷᎨ -12.2412 ▁ᎢᎩᏍᎦ -12.2412 ▁ᎠᏂᏌ -12.2415 ᏥᏅᏏᏛ -12.2415 ᎵᏍᏓᏴᎲᏍᎨᏍᏗ -12.2415 ᎨᏳᏐ -12.2415 ▁ᎣᎪᎯᏳᎯ -12.2416 ▁ᎤᎾᏓᏟᏐᏗ -12.2417 ▁ᎠᎵᏰᎵ -12.2421 ▁ᏗᏂᎶ -12.2421 ᏯᏘᏃᎯᏍᏗ -12.2421 ▁ᏓᏴ -12.2422 ᏂᏨᏁᎸ -12.2424 ▁ᎤᏓᏂᎵᎨᎢ -12.2425 ᎾᏝᎥᎢ -12.2425 ᏓᏢ -12.2427 ▁ᎣᎭᏁᎯ -12.2429 ▁ᎤᏕᏁᎸᎢ -12.243 ᏌᎹᏗᏴ -12.2431 ▁ᏚᏂᏍᏚᏅ -12.2431 ▁ᎠᎾᏎᎵ -12.2432 ▁ᏓᎦᏘᏰ -12.2434 ᎵᎪᏩᏕ -12.2434 ᏥᏁᎢᏍᏗᏍᎨᏍᏗ -12.2436 ▁ᎢᏥᎷᏨ -12.2437 ▁ᏫᏕᎨᎦᏓᎢ -12.2439 ᏣᏅᏓᏗᏍᎨᏍᏗ -12.2442 ᎾᏁᎶᏗ -12.2444 ▁ᏚᏅᏁᎸ -12.2445 ▁ᏕᎬᏩᎾ -12.2446 ▁ᎨᏣᏕᏁ -12.2447 ▁ᏕᏣᏠᏱ -12.2447 ▁ᎤᏂᎮ -12.2454 ▁ᏮᏓᏥᏯ -12.2455 ᎬᏩᏓᎴᏅᏛ -12.2455 ▁ᎣᎦᏤᎵᎪ -12.2456 ▁ᎤᎾᏙᎴᏆ -12.2461 ᎾᏕᏘᏴ -12.2464 ᏎᎵᏙᏔᏅ -12.2464 ▁ᎤᎸᏅ -12.2466 ᏣᏕᏯᏙᏗᎭ -12.2468 ▁ᎡᏣᏡᏗ -12.2468 ᏁᎴᏃ -12.247 ᎵᏎᏍᏗ -12.2471 ᏦᏎᎸᎯ -12.2473 ᏁᏒᎭ -12.2474 ᏌᏆᎴᎸ -12.2477 ᎬᎷᏤᎵ -12.2478 ▁ᎢᏤᏯᏔᎯ -12.2478 ▁ᏥᏍᎫᏕᏒ -12.2479 ▁ᏫᏥᏯ -12.248 ▁ᏗᏥᎸᏫᏍᏓᏁᎸ -12.2482 ▁ᏗᏥᏂᏴᏗ -12.2482 ᏥᎸ -12.2483 ▁ᎤᎾᎸ -12.2484 ▁ᏯᏴ -12.2484 ᏆᏒᎭᏂᎸ -12.2486 ᏚᏲᏐ -12.2486 ▁ᏱᏙᏥᏲᎱ -12.2487 ᏱᏍᎬᎢ -12.2488 ᏥᏯᏐᏅᏰᎵ -12.2488 ᎩᏃᎮᎭ -12.249 ᏍᏓᏁᏗᏱ -12.249 ▁ᎠᏌᏃ -12.2491 ▁ᏚᎳᏍᎬᎢ -12.2496 ᎦᎶᏍᎬ -12.25 ᏒᎭᏂᎸ -12.25 ᏂᏍᏓᏩᏙᎸᎯ -12.2503 ▁ᎤᏓᏅᏖᎴᎢ -12.2505 ▁ᏱᏗᎵ -12.2506 ▁ᎠᏆᏓᏅᏒ -12.2507 ▁ᏗᎬᏩᏂᏲᎱᎯ -12.251 ▁ᏙᏛᏍ -12.251 ᏩᏛᏍᏗ -12.2512 ▁ᎢᏣᏉ -12.2514 ▁ᏁᎵᏍᎬᏃ -12.2516 ᏳᏕᏃ -12.252 ▁ᏓᏰᏙ -12.252 ᏍᏗᏃᎮᏍᎬ -12.2521 ᏩᏗ -12.2522 ᏩᏛᎯᎴ -12.2523 ▁ᎨᎦᎵᏍᎪᎸᏓᏁ -12.2523 ▁ᎤᏓᎵᏍᎪᎸᏔᏅ -12.2528 ᏱᎲᎢ -12.253 ᏓᎪᏩᏘᏍᎪᎢ -12.253 ᏥᏌᏛᎥᏍᎩ -12.2533 ᎠᎩᎧᏁᎸ -12.2534 ᏓᎵᏌᎳᏗ -12.2535 ᏌᎹᏗ -12.2535 ᏗᏣᎧᎾ -12.2536 ▁ᏚᎴᏅᏰᏃ -12.2537 ▁ᎣᎩᏒᏍᏗ -12.254 ᎬᎾᏬᏍᎬ -12.254 ▁ᏭᏓᏅᏖ -12.2543 ▁ᎡᏣᎵᎡ -12.2546 ▁ᎤᏍᏘ -12.2547 ▁ᏩᏠᎠ -12.2549 ▁ᎨᏥᏃᏁᎸ -12.255 ▁ᎢᏤᏙᎲ -12.2552 ▁ᏱᏚᏓᏲ -12.2557 ▁ᎥᏓ -12.2558 ▁ᎤᎧᏔᎲ -12.2559 ▁ᎤᏇᏓᎸᏉ -12.2561 ᏬᏂᏎᎢ -12.2561 ▁ᏯᏍᎦᏅ -12.2566 ▁ᏚᏃᏕᎯ -12.2566 ▁ᎦᏃᎸᎥᏍᎬᎢ -12.2567 ▁ᏥᏕᎩ -12.2568 ᏥᏲᏎᎮᏍᏗ -12.2568 ᎩᏍᎨᎢ -12.257 ᏨᏯᎵᏥᏙᏁᎸᎩ -12.2575 ▁ᏧᏪᏰᏍᏗ -12.2581 ▁ᏧᏂᎬᏩᎶ -12.2581 ᏣᎵᏂᎬᎦ -12.2582 ▁ᏍᎩᏛᏔᏂ -12.2586 ᎾᏓᏴᎳᏛ -12.2587 ᏯᏘᏄᎦ -12.259 ▁ᏓᎾᏘᏁ -12.2591 ᏛᏅᏂ -12.2591 ▁ᏚᏭᎪ -12.2599 ᏗᏗᏐ -12.2599 ▁ᎡᏆᏓ -12.26 ᏍᏗᏴᏍᏗᏱ -12.2602 ᎵᏰᎢᎸᏍ -12.2608 ▁ᎡᏣᎫᏴᎡ -12.2608 ▁ᎢᏴᏓ -12.2612 ᏭᏓᎴᏎᎢ -12.2613 ▁ᏚᎾᏓᎡ -12.2613 ▁ᏅᏛᎩᏅ -12.2614 ▁ᏓᏂᏬᏂ -12.2616 ᎦᏛᏅ -12.2617 ᏘᎹ -12.2617 ᏥᏯᏓᏙᎵᏍᏓᏁᎭ -12.262 ▁ᎬᏩᏯᏫᏍ -12.262 ▁ᏕᎨᏥᏍᏚ -12.2621 ᎾᏛᏁᎵᏙᎯ -12.2621 ᎵᎮᎵᏤᎮ -12.2623 ᏗᏥᎱᏍᏕᏎ -12.2623 ▁ᎤᏗᏩ -12.2624 ▁ᎤᎶᎩᎸᎩ -12.2624 ᏍᏆᎸᎡᎸ -12.2624 ▁ᎡᏦᎢᏳᎲ -12.2624 ᎦᏕᏲᎲᏍᎦ -12.2626 ᏤᎷᎯᏍᏗ -12.2627 ᎵᏎᎮ -12.2628 ᏓᏅᏓᏗᏍᏗ -12.2629 ▁ᏚᏂᏢᏁ -12.263 ᎯᏂᏴᏎᏍᏗ -12.2631 ▁ᏓᏜᏍᏗᏍ -12.2631 ᏚᏭᎪᏔᏁᎢ -12.2631 ▁ᎥᎩᏁᏤᏗ -12.2631 ▁ᎤᏢᏅ -12.2632 ▁ᏕᏣᏗ -12.2637 ▁ᏯᏛᏓᏍ -12.264 ᏂᎬᎨᏍᏗ -12.264 ▁ᎹᏁ -12.2641 ▁ᎠᏆᏚᎸ -12.2641 ᎾᏓᏍᏕᏓᎵᏴ -12.2642 ᏂᏍᏕᎸ -12.2643 ᎬᎩᎦᏘᎴ -12.2644 ▁ᏚᏂᎨᎯᏙᎴ -12.2646 ᏙᎵᏍᏗᏍᎬᎢ -12.2647 ▁ᎤᏂᏃᎸᏔ -12.2648 ▁ᎢᎳᏏ -12.2649 ▁ᏚᎪᎮᎢ -12.265 ᏴᏍᏔᏅᎯ -12.2651 ▁ᏩᎩᎷᎯᏍᏗ -12.2654 ▁ᎣᎩᏍᎦᏅᏨ -12.2657 ▁ᎡᏙᏓᏃ -12.2657 ᎩᎡᏗᏱ -12.2661 ▁ᎠᎵᏍᏕᎵᏍ -12.2663 ▁ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ -12.2663 ▁ᎣᎦᏚᎩ -12.2663 ▁ᏚᎾᏓᏂᏴ -12.2666 ▁ᎠᏓᏙᎵ -12.2667 ᏫᏗᏣᎧᎾ -12.2667 ▁ᎢᏥᏴᎸ -12.2668 ▁ᎤᏕᏲ -12.2671 ᏍᏛᏓ -12.2672 ▁ᏫᎬᏩᎾᏛ -12.2675 ▁ᎣᎩᎾᎵᎢ -12.2675 ▁ᎣᏍᏗᎶ -12.2675 ▁ᏍᏆᎵᏍᎪᎸᏓ -12.2675 ᏔᏲᎯᎮᏍᏗ -12.2677 ▁ᎠᏂᏁᎢ -12.2677 ᏲᎸᎾ -12.2686 ᏥᏍᎦᎾᎢ -12.2689 ᏩᏕᎩ -12.2693 ᎸᏍᏗᏍᎨᎢ -12.2695 ᏁᎦᎸ -12.2697 ▁ᏤᏠ -12.2699 ᏩᏅᏬ -12.2702 ᏣᎴ -12.2704 ▁ᏧᏂᎷ -12.2713 ᎦᏯᎱᎶ -12.2716 ▁ᏂᏓᏂ -12.2719 ᎾᎵᏍᏔᏅᎩ -12.272 ᎯᎲᎩ -12.2725 ᎵᏍᏓᏴᏅᎭ -12.2731 ᏨᏍᏕᎸᎡᏗᏱ -12.2732 ᏂᏁᎢᏍᏙᏗᏱ -12.2734 ▁ᎬᏗᏏ -12.274 ▁ᏓᎾᏕᏍᎪ -12.2746 ▁ᎧᏁᏉᎨᏉ -12.2747 ▁ᎤᎵᏃᎮᏔᏅ -12.2747 ▁ᎤᏂᏴᏎ -12.2748 ᎤᏪᎧᏁᏗᏱ -12.2749 ᎾᏓᏴᎳᏔ -12.2749 ▁ᎤᎸᏕᏍᏗᏍ -12.2749 ᎦᏘᏏᏗᏢ -12.275 ᏆᎵᏍᎪᎸᏓᏁᎸ -12.2751 ᎤᎵᏬᏥᏕᎾ -12.2757 ▁ᏚᏫᏒ -12.2765 ▁ᎰᏩᏉ -12.2765 ᏥᎩᎡᏗ -12.2769 ᎿᏗᏍᏗᏍᎨ -12.2769 ▁ᏕᏨᏯᎧ -12.2777 ▁ᏁᎹ -12.2783 ᎫᏍᏙ -12.2786 ▁ᎠᎩᎶᏒ -12.2788 ▁ᎢᏥᏅᏏᏙ -12.2792 ▁ᎤᏁᎩᏒ -12.2792 ᎬᏩᎵᎪᏁᎸᎩ -12.2801 ▁ᏕᏥᏲᎵ -12.2801 ᏌᏙᏱ -12.2804 ᏦᏴ -12.2806 ▁ᏂᏛᏁ -12.2806 ᎦᏙᎨᎢ -12.2809 ᎭᏰᎯ -12.2809 ▁ᎢᏥᏄᎪᎢ -12.281 ▁ᏗᏓᏖ -12.2812 ▁ᏨᏛᏍᏆ -12.2814 ▁ᎤᏂᎵᎥᏂᎸ -12.2815 ▁ᎠᏂᏄᎪᎬ -12.2815 ▁ᎫᏩᏕ -12.2816 ᏍᎩᏰᎳᏍᏔ -12.282 ▁ᏫᏄᏩᏁ -12.2822 ᏰᎸᏍᎨ -12.2824 ᎧᏁᎢᏍᏗᏍᎬᎢ -12.2824 ▁ᏂᎦᏪᏎᎴ -12.2826 ᏗᏛᏗ -12.2832 ▁ᏕᎤᏂᎸᏫᏍᏓᏁ -12.2836 ▁ᏦᎩᏰᎸ -12.2842 ▁ᎣᎩᏛ -12.2843 ᏟᏏᏍᎨᏍᏗ -12.2843 ▁ᏅᏗᎦᎵᏍ -12.2844 ᎰᏍᏗ -12.2845 ᎦᎵᎥᏂ -12.2848 ▁ᏓᏂᏂᏱ -12.2848 ▁ᎭᏫ -12.2854 ᎵᏖᎸᎮᏍᎬ -12.2854 ▁ᎠᎯᏍᏗ -12.2859 ᏬᏔᏂ -12.2863 ▁ᏱᎬᎩᏩᏛ -12.2865 ᎲᎬ -12.2865 ▁ᎠᏂᏍᏙ -12.2865 ▁ᏚᎾᎴᏁᏃ -12.2866 ᏔᏱ -12.2866 ▁ᏧᏭᎪᏔᏅ -12.2871 ▁ᏕᏥᏲᎯᏎᎸ -12.2872 ▁ᏧᎦᎾ -12.2873 ▁ᎠᏆᎵᏍᎪᎸ -12.2875 ᎪᎯᏗ -12.2876 ᎤᏪᎪᏗ -12.2878 ▁ᎤᏕᎴ -12.2878 ▁ᎭᎻᏃ -12.288 ᎬᏩᎶᏓᏁᎸ -12.2882 ▁ᏙᎩᏲ -12.2884 ▁ᏄᏍᏙ -12.2885 ▁ᏚᏘ -12.2887 ▁ᎣᎩᎾᏚᎵ -12.2888 ᏥᏟᏏᏍᎨᏍᏗ -12.2888 ▁ᏒᎲ -12.2893 ▁ᏚᏙᏢᏒ -12.2895 ᏨᎨᏫᏒ -12.2895 ▁ᎬᏩᏕᏨ -12.2897 ᏓᏴᏙᏗ -12.2903 ᏕᏒᎭ -12.2905 ᎦᎵᏬᎩ -12.2906 ▁ᏔᎴᏅ -12.2906 ᎳᏗᏍᏗᏱ -12.2906 ᎪᎩᏔᏲᏎᎲᎩ -12.2907 ▁ᎢᎩᎾᏄᎪᏫᏎᎸ -12.2909 ᏙᎯᏳᎲᏍᎦ -12.2911 ▁ᏧᏂᏁᎵ -12.2911 ᏘᏍᏓᏁᎰ -12.2915 ᎵᏔᏗᏅᏎ -12.292 ▁ᎣᎩᏂᏰ -12.292 ▁ᎠᎦᏘᏃᎯᏍᏗ -12.2925 ▁ᏥᎬᏚ -12.2926 ᏘᏰᎴ -12.2927 ▁ᎣᎩᏱ -12.2928 ▁ᎢᏤᎲᎩ -12.2933 ▁ᎤᎾᏖᏆᎶ -12.2933 ▁ᏱᏚᏂᏲ -12.2937 ᏯᏪᎦ -12.2937 ᏥᏄᎪᏫᏒᎩ -12.2939 ▁ᎤᏓᏅᏖᎯᎶ -12.294 ᏓᎧᎿᏩᏕᎪ -12.2944 ▁ᏴᏗᏍᎬ -12.2945 ▁ᏗᏓᏓ -12.2946 ▁ᎤᎷᎯᏍ -12.2947 ▁ᏳᏂᎸ -12.2949 ▁ᎤᎾᏛᏛᏁ -12.2952 ᏣᏗᏒᏂ -12.2953 ▁ᏕᏥᎸ -12.2958 ▁ᏧᎾᏛᏅ -12.2964 ▁ᏩᎩᎷᏥ -12.2964 ᏛᏓᏁᎵ -12.2971 ▁ᏗᎦᎾ -12.2974 ▁ᏚᏃᎸᏒ -12.2975 ▁ᏳᎪᎲ -12.2976 ▁ᎠᏓᎵᏂᎪᎯᏍᏗᏍᎪ -12.2976 ▁ᎤᎾᏛᏅᎢᏍᏔ -12.2978 ▁ᏂᏓᏣᎵᏍᏔ -12.298 ᏄᎪᏔᏅ -12.2983 ᏛᏉ -12.2983 ᏛᏨᎩ -12.2984 ▁ᏚᏄᎪᏔ -12.2984 ▁ᏓᏂᏴ -12.2985 ᏣᎳᎩ -12.2987 ᎩᎾᎩᏛ -12.299 ll -12.2994 ᏯᏪᏐᎸᏍᏗ -12.2995 ▁ᎤᏪᎵᎯᏍᏗᏍᎨ -12.3 ▁ᏱᎬᎿᏗᏍ -12.3002 ▁ᏕᎯᏰᏌ -12.3002 ▁ᏫᏚᏐ -12.3002 ᎤᎯ -12.3008 ▁ᎤᏂᏥᎸᏅ -12.3009 ▁ᏄᎵᏍᏔᏅᎾ -12.301 ▁ᎣᎦᏓᏅᏓᏗᏍ -12.3015 ▁ᎦᏍᎩ -12.302 ▁ᎤᏃᎯᎸᏍᏔ -12.3024 ▁ᏕᎦᏅᏌ -12.3028 ▁ᏧᎿᏬ -12.3036 ᎪᏔᏅᎭ -12.3037 ᎩᎧᎭ -12.3038 ᏂᎸᏉᏗᎭ -12.3041 ▁ᎬᏩᏃᏎ -12.3041 ▁ᎠᏲᎤ -12.3042 ᏙᎥᏔᏅ -12.3047 ᎠᏏ -12.3048 ᎩᏍᏓᏱᏕᎸ -12.3049 ᏍᎦᏍᏓᏁᎲ -12.3052 ᎩᎵᏲᏥᏙᎲ -12.3058 ▁ᏗᏠᎯᏍᏙ -12.306 ▁ᎬᏩᎪᏩ -12.3063 ᎦᏞᏥ -12.3064 ᏣᎷᏤᎮᏍᏗ -12.3065 ᏦᏁᎢ -12.3065 ᎵᎲᎢ -12.3067 ▁ᎬᏁᎢᏍᏓᏁ -12.3069 ᏂᎦᏖ -12.3072 ▁ᏱᏣᎦᏌᏯᏍ -12.3075 ᏛᏂᏌᏂ -12.3075 ᏚᎲᎦ -12.3076 ᏑᎬ -12.3077 ▁ᏛᏕ -12.3078 ▁ᎤᏪᏅᎢ -12.3084 ▁ᏭᏎᎴ -12.3089 ▁ᏗᎩᏂᏓᏍᏗ -12.3094 ▁ᏔᎸ -12.3096 ▁ᎦᎳᏅᏛᏉ -12.3098 ▁ᎨᏣᎦᏙᎥᎯᏍᏗ -12.3103 ᏟᏏᏍᎬ -12.3103 ▁ᎣᏥᎪᏩᏛ -12.3103 ᎾᎸᏤ -12.3106 ▁ᏓᎬᏂ -12.3107 ᏗᏍᎦᎩ -12.3109 ᎠᏁ -12.3109 ▁ᎬᏩᎾᎴ -12.3117 ▁ᎤᎾᎦᏌᏯᏍᏙ -12.3118 ▁ᎤᏗᏍᎩ -12.3118 ᏣᏟᏴᏗ -12.312 ᏥᏩᏛᎡ -12.312 ᏑᎵ -12.3121 ▁ᏓᏂᎵ -12.3122 ▁ᏫᏘᎦᏔᎲᏍ -12.3125 ᎵᏙ -12.3125 ▁ᏥᏄᏛ -12.3127 ᏥᏍᎦᎢᎮᏍᏗ -12.3138 ᏙᏪᎸ -12.3139 ▁ᎬᏩᏒ -12.314 ▁ᏗᎦᏘ -12.315 ▁ᎤᏚᎨ -12.315 ᎶᏄᎮᏔᏅᎩ -12.315 ᏍᏚᎲᎦ -12.3153 ▁ᎤᏬᏯ -12.3153 ᎴᏫᏍᏔᏁ -12.3153 ▁ᏱᏓᎩᎪ -12.3154 ᏓᏓᏂᎸᎪ -12.3155 ▁ᏥᏚᏠ -12.3157 ▁ᎦᏣ -12.3157 ▁ᎦᎨᏥᏁ -12.316 ▁ᎤᎫ -12.3162 ▁ᎤᏂᎧᏅ -12.3165 ᏓᎾᏠᏱ -12.3165 ▁ᏗᏣᏍᏗ -12.317 ▁ᏂᏍᏓᏛᏁ -12.3172 ᏅᎲ -12.3174 ▁ᏕᎯᏲ -12.3177 ▁ᏯᎵᏍᏔᏴ -12.3179 ▁ᏞᎩ -12.3179 ᎦᏔᏛᏍ -12.3181 ▁ᎤᎿᎸᏒ -12.3185 ▁ᎠᏲᎵᏉ -12.3185 ▁ᏫᏚᎾᏠ -12.3186 ▁ᏭᏓᏏ -12.319 ▁ᎤᏂᏴᎴ -12.3195 ▁ᎢᎬᎯ -12.3197 ▁ᏨᏤ -12.3201 ▁ᏚᏅᎦᎸᎮ -12.3208 ▁ᏫᎵ -12.3209 ▁ᏕᏥᎩᎵᏲᎢᏍᏗᏍ -12.3211 ᎰᏓ -12.3216 ᏂᎳᏫᎢᏍᏗᏱ -12.322 ᏓᏅᏖᎳ -12.3226 ᎾᏕᏯᏙ -12.3226 ▁ᏛᏂᎶ -12.3227 ▁ᏕᎨᏰ -12.3232 ▁ᎠᏥᎾᏗᏅᏗ -12.3234 ▁ᏗᎩᏬᏂᎯ -12.3234 ᎾᎵᏍᏚᎸ -12.3235 ▁ᏗᏂᏰ -12.3235 ▁ᎤᎨᏳᎲ -12.3236 ᏓᏣᎦᎸ -12.3238 ᎵᏍᎪᎸ -12.3245 ᏃᎯᎰ -12.3245 ᏴᏩᏛᎮ -12.3249 ▁ᎢᏥᎶᏄᎮ -12.3255 ᎦᏌᏬᎢᎲ -12.3257 ▁ᎢᏣᏖ -12.3258 ᏄᏍᏆᏂᎩᏗ -12.3259 ▁ᎨᏥᎸᏉᏙᏗ -12.3262 ᏅᎪᎥᏓᏁ -12.3264 ▁ᏓᏂᏰᎲ -12.3266 ᏥᏙᏓ -12.3268 ᎤᏃᎯᏳᎲ -12.3269 ᎩᏁᏓᏍᏗ -12.3278 ᏓᏂᎳᎩ -12.3279 ᏙᏍᏓ -12.3281 ▁ᎣᎦᏛ -12.3283 ᎦᎷᎶᎬ -12.3283 ▁ᏕᏥᏲᎯ -12.3284 ᏘᏃᎯ -12.3285 ▁ᏧᎾᏣᏅ -12.3286 ᎾᏛᏁᎯ -12.3288 ▁ᎤᏓᏠ -12.3289 ▁ᏍᎩᏯᏕ -12.3291 ᏍᎩᎾᏄᎪᏫᏎᎸ -12.3292 ▁ᏚᏲᏍᏙᏓᏁᎸ -12.3294 ▁ᏫᏨᏲᏪᎳᏁᎸ -12.3297 ▁ᎨᏥᏍᏆᏂᎪᏙᏗ -12.33 ▁ᎢᏨᏯᏓᏅᏖ -12.3302 ▁ᏗᏧᎪᏓᏁᏗ -12.3306 ▁ᎤᎴᏂ -12.3306 ▁ᎡᏗᎦᏔ -12.3312 ᎩᏁᏤᎸᎯ -12.3316 ᏅᏔᏅᎢ -12.3317 ▁ᎤᏒᎮ -12.3318 ▁ᎾᏅᎩ -12.3323 ᏃᏮ -12.3325 ᏗᏓᎾᎩᏍ -12.3327 ▁ᏄᎴᏫᏍᏔᏁ -12.3328 ᏗᏂ -12.333 ᏄᎪᏤᎸᎯ -12.3331 ▁ᎤᏂᏂᏴᎲ -12.3331 ▁ᎬᏭᎯᏍᏗ -12.3333 ᏍᏚᎶᎩᎯ -12.3336 ▁ᏣᎫᏴ -12.3341 ᎤᏂ -12.3345 ▁ᎨᏥᏅᏏᏙ -12.3348 ᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ -12.3351 ᎦᏓᏅᏖᏗ -12.3353 ᏃᏅᎭ -12.3356 ▁ᎠᎾᏕᏒ -12.3356 ᏘᏂᏙᎵ -12.3375 ᎩᎵᏲᏨ -12.3379 ▁ᎠᏍᎦᏂᏉ -12.3384 ▁ᏂᏙᏗ -12.3387 ▁ᏓᏔᎴᏒᎩ -12.3387 ▁ᎡᏣᏍᏕᎸᏗ -12.339 ▁ᎥᏍᎩᏯ -12.3391 ▁ᏗᏥᎧᎲ -12.3392 ᏪᏲᏁ -12.3393 ᏴᏨᎩ -12.3394 ▁ᎤᎭᏯ -12.3394 ᏃᎸᏔᏂ -12.3396 ▁ᏓᎾᏓᏰᎢᎵᏙ -12.3398 ▁ᎤᎾᏛᏅᎢᏍᏔᏅ -12.3407 ᏕᎦᏬ -12.341 ▁ᏲᏥᏩᏛ -12.3411 ▁ᏫᎫᏩᏂ -12.3412 ᎬᏩᏓᏂᎸᏤᎢ -12.3423 ▁ᏕᎨᏥᎸ -12.3428 ᎥᏛ -12.343 ▁ᎥᎩᏐᏅᎢᏍ -12.3433 ▁ᎤᏍᏓᏩᏗᏎ -12.3435 ᏓᏅᏓᏗᏍᏗᏍᎨ -12.3436 ▁ᏗᏰᎯ -12.3441 ▁ᏄᎨᏳᏒ -12.3442 ▁ᎢᏣᏄᏬᏍ -12.3443 ᏨᏙᏗᏱ -12.3444 ᏆᏛᏁᎸᎭ -12.3446 ᏫᏍᏔᏁᎸ -12.3449 ▁ᏕᏣᏬᏍ -12.3458 ᎧᎿᏩᏕᎩ -12.346 ▁ᎠᏍᏓᏱᏗᏍ -12.346 ▁ᏓᏂᏯᎩᏍ -12.3464 ▁ᏯᎾᎦᏔᎲ -12.3472 ▁ᎬᏯᏅᏓᏗᏍ -12.3475 ▁ᎠᏂᎮ -12.3476 ▁ᏄᏜ -12.3476 ᏃᎨᏂ -12.3478 ▁ᎦᏓᎷᎩᏍ -12.3479 ᏥᏪᏎᎮᏍᏗ -12.348 ▁ᎢᏤᏙᎸ -12.3481 ▁ᏥᏕᏥᏲ -12.3483 ᏣᎾᏔ -12.3488 ▁ᎻᏎ -12.3492 ᏂᏍᎨᎢ -12.3493 ▁ᏯᎩᏂᎬ -12.3501 ᎾᏓᏙᏪᎳ -12.3502 ▁ᏰᎵᎠ -12.351 ᎵᏍᏔᏴᏃᎾ -12.3515 ▁ᏧᏓᏃᏣ -12.3516 ▁ᏥᏓᏓ -12.3524 ▁ᏅᏓᏥᏪ -12.3532 ▁ᎥᏆᎵᏍᎪᎸᏓᏁ -12.3533 ▁ᎣᎦᏠᎾᏍ -12.3536 ᏠᏯᏍᏗᏍᎬ -12.3538 ▁ᏐᏏ -12.3539 ▁ᎬᏁᎳᎩ -12.3541 ᏦᎣ -12.3549 ᎷᎸᎥᏍ -12.3551 ▁ᏛᎩᎧ -12.3552 ᎳᏑᎵ -12.3561 ᏰᎸᏐᎢ -12.3562 ᏥᏅᏫᏍᏔᏅ -12.3565 ▁ᏓᏥᎶᏍᏗᏍ -12.3568 ▁ᎤᎶᎨ -12.3571 ᏰᎢᎵᏓ -12.3577 ᎾᏕᎬᎢ -12.3577 ▁ᏓᏥᏲᏎ -12.3579 ▁ᏧᏂᎾ -12.358 ᏗᎩᏍᏗ -12.358 ᏍᏓᏁᎲ -12.3581 ▁ᎢᎨᎲ -12.3583 ᏗᎪᎢ -12.3587 ᎡᎩ -12.3589 ᏬᏁᏗᏍᎬ -12.359 ᎦᏓᏅᏒᎭ -12.3591 ▁ᎤᏤᏌ -12.3593 ᎠᎩᎸᏉᏗ -12.3609 ᏁᏢᏔᏅᎯ -12.361 ᎾᎵᏗᎩ -12.3615 ▁ᎢᏨᏯᎵ -12.3622 ▁ᏗᏥᏅᎦᎸ -12.3623 ᏅᎦᎸ -12.363 ᏛᏁᎸᎢ -12.3634 ᏓᏁᎸᎢ -12.3635 ▁ᎤᎾᏕᏃ -12.3636 ᎪᎲᏍᏔᏅᎩ -12.3638 ᏯᏌᏛᏁ -12.3639 ▁ᎢᎬᏋᏁᏗ -12.3641 ▁ᎬᏩᏲᏍᏙ -12.3644 ᏅᏗᎭ -12.3657 ▁ᎯᎪᏙ -12.3658 ▁ᎤᎸᏒ -12.3659 ᏦᎣᏒ -12.3665 ▁ᏓᎾᏟᏃᎮ -12.3667 ▁ᏕᎫᏓᎴ -12.3669 ᏓᏓᏍᎦ -12.3672 ᏯᎧᏁᎸ -12.3674 ▁ᏍᎩᏁᏤᎸ -12.3676 ᏁᏩᏗᏒ -12.3679 ▁ᎠᎩᏲᏍ -12.3683 ▁ᏓᎧᏃ -12.3686 ᎦᎵᏍᎪᎢ -12.3689 ▁ᎢᏗᏯᏙᎯ -12.3694 ▁ᎨᏥᏩᎯᏎ -12.3695 ᎦᏘᏍᏗᏍᎩ -12.3697 ᏧᏠᎠᏎᎢ -12.3701 ᏣᏰᏨ -12.3706 ᏥᏍᎦᏅᎨᏍᏗ -12.3722 ▁ᎠᏆᏓᏅᏓᏗᏍᏗ -12.3726 ᎪᎾᏛᏔᏅ -12.3733 ▁ᏯᏆᏓᏅ -12.3736 ▁ᏱᏥᏍᎦᏅ -12.3738 ᏘᏃᎮᎴᎢ -12.374 ᏩᏗᏙᎯ -12.3741 ᎩᏨᏂᏒ -12.3743 ▁ᎢᏣᏗᏔ -12.3744 ▁ᎠᏴᏍᏗᏱ -12.3745 ▁ᎤᏂᏴᏓᏆᎶᎥ -12.3749 ▁ᏣᏆᏛ -12.3749 ▁ᏚᎵᏃᎮᏔᏅ -12.3757 ᏣᏬᏍᏔᏂ -12.3759 ▁ᏥᏨᏰᎳᏗᏙ -12.3767 ᏣᏪᏐᎸᏍᏗ -12.3773 ᏰᏗᏍᎬ -12.3774 ᏥᎦᎳᎭ -12.3781 ▁ᎦᏥᏁᎸ -12.3783 ᏤᏓᏍᏗ -12.3785 ▁ᏧᏅᎩ -12.3788 ▁ᏱᏚᎾᏄᎪᏫᏎ -12.3791 ▁ᏚᏂᏰᏍᏛ -12.3801 ᎫᏓᎴᏒ -12.3803 ▁ᏥᏯᎵᏍᎦᏍᏙᏗ -12.3803 ᏦᏢᏅ -12.3808 ᏓᏂᏲᎯᏎ -12.381 ᏚᏂᏴᏔᏅᎩ -12.381 ᎦᏚᏏᏁ -12.381 ▁ᎤᏍᏕᎸᎯᏙ -12.3817 ᎾᏓᏅᏛᎢ -12.382 ▁ᎠᏂᏯ -12.382 ▁ᎠᏤᎷᎯ -12.3836 ᏔᏟ -12.3837 ▁ᏂᎨᏥᏪᏎ -12.3843 ᏫᏚᏘᏅᏍᏔᏁᎢ -12.3844 ▁ᏣᏍᎫᏕᏍᏗ -12.3852 ᏒᏂᎸᎯ -12.3855 ᎤᏐᏱᏉ -12.386 ᏗᏍᎦᎶᏗ -12.3862 ᎧᏁᎢᏍᏗᏍᎨ -12.3867 ▁ᎦᎸᏙ -12.387 ᏘᎾᏄᎪᏫᏏ -12.3874 ᎬᏍᎪᎸ -12.3876 ▁ᎠᏍᎦᎢᏍᏗ -12.3877 ᎤᏚᎵᏍᎬ -12.388 ▁ᎡᏗᏔᏲ -12.3882 ᎻᏆ -12.3882 ᏨᏲᏎᎭ -12.3883 ▁ᎢᎪᏢ -12.3887 ᏟᏍᏔᏅ -12.3892 ▁ᎣᏤᏙ -12.3894 ▁ᏯᏆᏁᎸᏔ -12.39 ▁ᎱᎦ -12.3901 ▁ᏆᏌ -12.3901 ▁ᎠᏥᏃᏁᎸ -12.3905 ᏍᏓᏩᏚᎦ -12.3907 ▁ᎠᏆᎦᏎ -12.391 ▁ᎬᏩᏯᎥ -12.3914 ᏥᎪᏩᏘᎭ -12.3917 ᏄᏩᏅ -12.3921 ᏥᎥᏏ -12.3923 ▁ᎤᎾᏟᏂᎬᏁ -12.393 ᏣᎵᏍᎦᏍᏙᏗ -12.3932 ▁ᏚᏳᎪ -12.3933 ▁ᏧᎾᏚᎪᏓᏁ -12.3934 ᏩᏒᎬ -12.3937 ᏪᎶᏔ -12.394 ▁ᏓᎦᏙ -12.3941 ᎾᏓᏅᏖᏗᏍᎬ -12.3943 ᏥᎨᏳᎯ -12.3949 ▁ᏭᎵ -12.3951 ▁ᏗᏟᎶᏍ -12.3952 ᏯᏒᏂᏍᏗᏱ -12.3956 ▁ᏭᏂᎷᏤᎴ -12.396 ▁ᏗᏥᏅᏒ -12.3962 ▁ᏫᏓᎵ -12.3966 ᎦᏢᏔᏍᏗ -12.3981 ᏚᏙᎠ -12.3982 ᎦᏅᏓᏓ -12.3986 ᏂᎨᎲᏎ -12.3994 ᏔᎳᏬᎯ -12.3998 ▁ᎤᏢᎾ -12.4 ▁ᏓᏖᎸᎲᏍ -12.4013 ▁ᎣᎩᏃᏁᎸ -12.4015 ▁ᎭᏓᏃᎮ -12.4025 ▁ᎨᏥᎾᏌ -12.4025 ᏣᏓᎸᏉᏗᎭ -12.4031 ▁ᏙᏍᏓᏓᎪᏩ -12.4035 ▁ᏗᏞ -12.4036 ▁ᏓᎾᏤ -12.4041 ▁ᎤᏪᏯᏔᏅ -12.4043 ᏒᏂᎮᏍᏗ -12.4044 ᎩᏂᏴᎲ -12.4044 ▁ᎧᏂ -12.4046 ▁ᏧᎵᏍᏚᎢ -12.405 ▁ᏴᎦᏲ -12.4051 ᏥᎪᏩᏘᏍᎬᎾ -12.4053 ▁ᎢᎭᏅᏓ -12.4053 ▁ᎠᎵᏍ -12.4057 ᎩᎧᎿᏩᏛᏍᏗ -12.4061 ᏓᎨᏣᎵ -12.4061 ᎦᎷ -12.4075 ▁ᏚᏂᏨ -12.4094 ᏚᏟᏍᏔᏅᎩ -12.4096 ▁ᎬᏁᏤᎸ -12.4096 ▁ᎢᎬᏁᎸ -12.4098 ᏥᎩᎡᎸ -12.4103 ᏩᏂᎷᎦ -12.4104 ▁ᎡᏥᎸᏉᏙᏗ -12.4107 ᎿᎠ -12.4111 ᏘᏍ -12.4113 ▁ᎤᎾᎵᏥᏙᏂ -12.4113 ▁ᏧᎾᏍᏗᎩ -12.4114 ᎨᎦᎵᏍᎪ -12.4116 ▁ᏱᎬᏁ -12.4124 ▁ᎬᏆᏛᎦ -12.4129 ▁ᏱᏂᏣ -12.413 ▁ᎦᎵᏉ -12.4131 ▁ᏗᏓᎴᎲ -12.4134 ▁ᏭᏓᏒᏍ -12.4142 ▁ᏒᏙ -12.4146 ▁ᏚᎵᏍᏆ -12.4147 ▁ᏗᏥᏍᏆᏂᎪᏙᏗ -12.4149 ᎯᎥᏏ -12.4152 ᏜᏍᏗ -12.4152 ▁ᎤᏔᎴ -12.4152 ▁ᎨᏥᎪᎵᏰᏗ -12.4153 ▁ᏥᏰᏅ -12.4156 ▁ᎢᏨᏲ -12.4156 et -12.4157 ▁ᏚᎾᎦᎴᏅ -12.4158 ▁ᏯᎫᏚᎵ -12.4159 ▁ᎠᎭᏰ -12.416 ᎩᎵᏲᏤ -12.4168 ᎩᎶᏫᏎ -12.4174 ▁ᎤᎸᎮ -12.4178 ᎦᏥᎪᎥ -12.418 ᏯᏙᎵᎩ -12.4184 ▁ᎤᎾᏣᎢᏎ -12.4192 ᎤᎾᏗᏒ -12.4196 ᎯᏁᎦ -12.42 ▁ᎤᎦᏛᏅ -12.4207 ᏗᎦᎴᏲ -12.421 ᎷᎩᏍᎬ -12.421 ᎴᎰᏒ -12.4212 ᎵᎸᎩ -12.4219 ᎾᏛᎪᏗ -12.422 ᏕᏣᎳᏑ -12.4222 ▁ᎢᏯᏋᏂ -12.4223 ᏥᏑᎵᎪᎬ -12.4223 ᏟᎸ -12.4233 ▁ᏭᎾᏘᏃ -12.4236 ᏔᏁᏉ -12.4241 ▁ᏕᏣᏕᏲ -12.4243 ▁ᎦᏓᏅ -12.425 ▁ᏯᏇᎵ -12.4259 ▁ᏨᏗᎦ -12.4263 ᎵᏂᎪᎯᏍᏗᏍᎨᏍᏗ -12.4269 ᏰᎸᏁᎢ -12.4272 ᏯᎢᏎ -12.4273 ▁ᏓᏂᏅᎨ -12.4273 ᎢᏍᏗᏍᎪ -12.4277 ᏚᏓᎸᏁ -12.4277 ᎶᏎᎢ -12.4281 ▁ᏚᎾᏁᎶᏕ -12.4294 ᏥᏙᎲ -12.4294 ▁ᎬᎩᏍᏓᏩᏗᏙ -12.4296 ᏂᎵᏙᎸ -12.4298 ᏌᏉ -12.4299 ▁ᏗᎫᎪᏙ -12.4301 ᎸᏌᏓᏕ -12.4305 ᏟᏂᎬᏁ -12.4311 ▁ᎤᏓᎪ -12.4313 ▁ᏳᏗᏛ -12.4318 ▁ᏗᎫᏅ -12.4319 ᏣᏂᎩ -12.4323 ᎾᏓᏑᏲ -12.4326 ᎦᏁᏍᎬ -12.4329 ▁ᏥᏚᏂᏂᏴ -12.4335 ▁ᎠᏆᏑᏰ -12.434 ᎠᏰᏍᏓᎥ -12.4343 ▁ᏤᏥᏲᎯᏎᎸ -12.4345 ᎧᎾᏁᎢ -12.4346 ᏃᎮᏍᎪᎢ -12.4348 ▁ᏱᏣᏰᎸ -12.4356 ▁ᏕᎧᏅᏫ -12.4358 ᎮᏃ -12.4359 ▁ᎤᏁᏉ -12.436 ▁ᏚᏔᏍ -12.437 ᏚᎸᏫᏍᏓᏁᎰᎢ -12.4372 ᎯᏙᎮ -12.4378 ▁ᎯᎪᎢ -12.4381 ▁ᎨᏣᏙᎴᎰᎯ -12.4394 ▁ᎣᎦᏚᏓ -12.4396 ᏡᏗᏍᎨ -12.4396 ᎣᎩᎾᎵᏱ -12.4399 ᎾᎵᏂᎪᏎᎢ -12.4402 ▁ᏱᏣᏛᏓᏍ -12.4402 ▁ᏥᎬᏅ -12.4406 ▁ᏚᏃᏢ -12.4407 ▁ᏚᏂᏰᎸ -12.4407 ▁ᏚᎾᏓᏘ -12.4418 ▁ᏓᏍᏆᏂᎪ -12.4421 ᏑᏴᏅ -12.4425 ▁ᏣᏓᎵ -12.4425 ᎭᏈ -12.4425 ▁ᎠᏎᎪᎩ -12.4439 ▁ᏫᏂᏚᏪᏎ -12.4446 ᎬᏰᎵᏎ -12.4461 ▁ᎤᎾᏝᎥ -12.4469 ▁ᎤᎾᎵᏒ -12.4469 ᏥᎵᎥᏂᎮᏍᏗ -12.447 ▁ᏧᏩᏂᎦ -12.4471 ᏆᎧᏃᏗ -12.4471 ᏯᎸᎢ -12.4476 ᏛᎿᏕᎦ -12.449 ᏥᎬᏩᎶᏔ -12.4492 ᎴᎵ -12.4493 ᏓᏁᏤᏗ -12.4498 ▁ᏓᏂᎨᎯ -12.4505 ᏠᎠ -12.4506 ᏂᏲᎴ -12.4517 ▁ᎠᏓᏅᏖᎵᏙᎲ -12.4517 ▁ᏫᏄᏩ -12.453 ᏲᎯᏍᏗᏍᎬᎾ -12.4537 ᎩᏙᎵᎩ -12.4538 ▁ᎠᎩᏫᏒ -12.4554 ᏥᏯᏂᏍᎬ -12.4558 ᎵᏍᎦᏍᏙᏔᏅ -12.4561 ▁ᏄᎾᏕ -12.4562 ▁ᎠᏓᏒᎲᏍ -12.4566 ▁ᏚᎾᏦ -12.4567 ▁ᎠᎩᏍᏆᏂᎪᏙ -12.4569 ᏣᏏᎳᏛᏗ -12.4575 ▁ᏛᏂᎩ -12.4579 ▁ᏗᏍᎩᏅ -12.4588 ᏂᏓᏛ -12.4598 ▁ᎤᏘᏃᎮᎴ -12.4599 ▁ᎤᏛᎦᏅᏉ -12.4602 ᎦᏌᏬᎸ -12.4603 ▁ᏣᏲᎸ -12.4613 ᏂᎦᏛᎴᎯ -12.4618 ᎵᏍᏇᏚ -12.4618 ▁ᎤᎾᏟᏃᎮ -12.4621 ▁ᎦᏥᏁᏤᎸ -12.4625 ᎾᏛᏛ -12.4625 ᎶᎾᏍᏔ -12.4633 ᏓᏂᎸᏤᎸᎯ -12.4637 ▁ᎢᏨᏁᎵ -12.4638 ▁ᏱᏨᏲᏎ -12.4638 ᏘᎿᏫᏛ -12.464 ▁ᏧᏂᏯᏅ -12.4645 ᏂᏄᎪᏫᏍᏗᏱ -12.465 ▁ᎤᏅᎪᎢᏍ -12.4657 ᏜᏫᏍ -12.466 ▁ᎦᏥᏯᏑᏰ -12.4663 ᏬᏂᏍᎨᏍᏗ -12.4665 ▁ᏱᏙᎦᏙ -12.467 ▁ᎤᏛᏗᏕ -12.467 ▁ᎢᏨᏯᏛᏁ -12.4672 ▁ᏴᎨᏍᎩ -12.4675 ▁ᏫᏄᏂᏪᏎ -12.4676 ▁ᏓᎾᏓᏂᎸ -12.4684 ᏂᎧᎵᎴᎢ -12.4684 ᎾᏚᏓᎸ -12.4688 ᏴᏔᏅ -12.4688 ▁ᏱᏚᏑᏰ -12.4689 ᎦᏩᏒᎬ -12.4696 ▁ᎣᏚᏓᎴᏍᏗ -12.4704 ▁ᎤᎲᏒ -12.4707 ▁ᎤᎾᏓᏔᎶ -12.4709 ▁ᏧᏂᏐᎯᏍᏗ -12.471 ᏣᎨᏳ -12.4728 ᎵᏥᏙᎲᏍᎬ -12.4731 ▁ᎠᏏᏍᎪ -12.474 ▁ᎬᏩᏛᏅ -12.4751 ᏍᎦᏉ -12.4754 ᏆᏘᎾᏫᏛᎲᎩ -12.4757 ᎾᎪᏒ -12.4759 ▁ᎢᏨᏩᏛ -12.4759 ᏄᏛᏁ -12.4766 ᎴᏂᏙᎲᎢ -12.4772 ▁ᏗᏓᎴᎲᏍᎪ -12.4772 ▁ᎤᏂᏴᏔᏁ -12.4774 ᏁᏟᏴᎭ -12.4775 ᏍᎩᎡᎴᎢ -12.4791 ᏙᎸᎭ -12.4793 ᏩᎪᏗ -12.4802 ▁ᎠᏂᎪᎵᏰᏍᎬ -12.481 ▁ᏱᏂᏚᏓ -12.4818 ᎠᎾᏡᏗᏍᎩ -12.4824 ▁ᏭᏍᏚ -12.4824 ᎦᏙᏍᏓᏁ -12.4825 ▁ᏔᏑᏰ -12.4835 ᏂᏴᏎᏍᏗ -12.4835 ᏂᏪᏒᎩ -12.4835 tin -12.4836 ▁ᎢᏍᏆᏓ -12.484 ᏚᎪᏓ -12.4841 ▁ᏫᏙᏥ -12.4844 ▁ᏣᎪᏎ -12.4848 ▁ᏕᎬᏩᏏᏔ -12.4851 ᏕᏘᏴᎲᏒ -12.4854 ᏂᏏᏅᏎ -12.4858 ▁ᏳᏂᏴ -12.4871 ▁ᏍᎩᏲ -12.4873 ▁ᎤᏂᏂᎬᎨ -12.4873 ▁ᎯᏐᏢᎢᏍᏗ -12.4878 ᏕᏘᏴᎲ -12.488 ▁ᏧᏅᏂᏍ -12.488 ▁ᏥᏓᎵᏖᎸᎲ -12.4885 ᎦᎧᎲᎩ -12.4885 ▁ᏫᎨᏙ -12.4887 ᏥᏙᎪ -12.4887 ▁ᎤᏍᏛᎦ -12.4892 ▁ᏫᎦᎶ -12.4902 ▁ᏗᎬᏩᏲ -12.4909 ᏣᏛᏁᎵᏙᎲ -12.4918 ᎩᏱᎵᏙᎭ -12.4922 ᏓᏂᏯᏛ -12.4926 ▁ᎤᎦᏔᏛ -12.4938 ▁ᎤᎾᎵᏥᏙ -12.4938 ▁ᎭᎵᏥᏙᎲᏍ -12.4943 ᏁᏍᎨᎲᎩ -12.4946 ᎦᎵᏍᏔᏁᎲ -12.4948 ᏗᎾᏓ -12.4952 ▁ᏕᏣᏓᏂᎸ -12.4954 ▁ᏭᎾᏏ -12.4954 ▁ᎢᏍᏛᎷᏤ -12.496 ᏖᎸᎲᏍᎦ -12.496 ᏛᏛᏔᏂ -12.4964 ▁ᏱᏤᏙ -12.4967 ▁ᏂᎨᏂᎾ -12.4968 ▁ᎢᏣᏛᏁᎲ -12.4975 ᏂᏌᏅ -12.4975 ᎶᏄᎮᎴᎢ -12.4976 ▁ᎤᏴᏍ -12.4976 ᏓᏓᏬᏍᎨ -12.4981 ᏂᎸᏌᏓᏕ -12.4983 ᏥᎳᏫᏤ -12.4985 ᎾᎷᏍᎬ -12.4986 ᎾᏟᏃᎮᏗ -12.4994 ᎩᏅᏁᎸ -12.5 ᏲᎢᏍᏗ -12.5004 ᏑᏰᏍᏗ -12.5007 ▁ᎬᏩᏃᎮᏍᎬ -12.5024 ᏤᎵᎯᏍ -12.5025 ▁ᏱᎦᎬ -12.5026 ▁ᏭᎳᏏ -12.5028 ᏚᎩᏛ -12.5044 ᎦᎷᎨ -12.5048 ᎳᏗᏍᏗᏍᎨᏍᏗ -12.506 ▁ᎢᏨᏃᎮ -12.5062 ᏅᎡᎴᎢ -12.5073 ᏚᏍᏕᎸᎮᎢ -12.5076 ᏓᏕᏲᎲᏍᎦ -12.5079 ▁ᎬᏩᏡᏗᏍ -12.5079 ▁ᎠᎵᏍᏆᏙ -12.5079 ▁ᏕᏣᎵᏂᎪ -12.5079 ᏥᏩᏛᎯ -12.508 ▁ᎤᏂᎷ -12.5081 ᎬᏁᏤᎸᎭ -12.5088 ▁ᎨᏥᎩᎵᏲᎢᏍᏗᏍ -12.5096 ▁ᎠᎩᏁᎲ -12.5105 ▁ᏘᎧᎵ -12.5106 ▁ᎠᎦᎷ -12.511 ▁ᎤᏓᎴᏅ -12.511 ᏣᏓᏅᏒᎩ -12.5128 ▁ᏍᎩᏰᎵ -12.5138 ▁ᎠᎩᏴᏍᏗ -12.5138 ᏓᏬᎯᎳᏗᏍ -12.5139 ▁ᏓᏲᏥ -12.5142 ᎾᎪᎲᏍᏗ -12.5142 ᏍᏓᏩᏛᏒ -12.5144 ᏕᎫᎪᏓᏏ -12.5145 ▁ᏲᎯ -12.5147 ▁ᏓᎵᏂᎪᎯᏍᏗᏍᎪ -12.5157 ▁ᏓᏂᎦᏘᎴ -12.5162 ▁ᏚᏗᎦᎴ -12.5175 ᏯᎵᏃᎮ -12.5176 ▁ᎡᏥᏍᎦ -12.518 ᎾᏠᎯᏍᏔᏅ -12.5182 ᎩᏒᏎ -12.5184 ᏥᏂᏴᎲᎩ -12.5188 ▁ᏓᎾᏘ -12.5191 ▁ᎠᏥᏃᎮ -12.5191 ▁ᎱᏰᎸ -12.5192 ᎩᏄᎸᏅ -12.5202 ᎦᏙᎯ -12.5202 ▁ᎠᏆᏄᏬ -12.5212 ᏩᏥᏍᎦᎸ -12.5216 ᏍᎪᏂᎴᎢ -12.5219 ᏯᏥᎪᏁᎸ -12.5227 ▁ᎤᎾᏕᏁ -12.5229 ▁ᏘᏅᏍᏓ -12.5234 ᏐᏅᏰ -12.5234 ▁ᎠᎩᏍᏕᎸᎲ -12.5235 ▁ᎡᏍᏕ -12.5237 ᏓᏓᏬᏍᎬᎢ -12.5238 ▁ᏴᎨ -12.5241 ᎩᎸᏫᏍᏓᏏ -12.5242 ▁ᎢᏥᏂᏆᏘ -12.525 ᏕᎲᏍᎪ -12.525 ᎾᎴᎿᏫᏍᏛᎩ -12.5257 ▁ᏚᏩᏥᏍᎦ -12.5259 ▁ᎠᏆᏕᏅ -12.5264 ▁ᏗᏨᏙ -12.527 ▁ᏓᏥᏰ -12.5271 ▁ᎠᎩᏍᎦᏅ -12.5278 ᏍᏕᎸᎯᏙᎸᎯ -12.5278 ▁ᎠᎩᏄᎸ -12.5284 ▁ᎤᎵᏍ -12.5287 ᏓᎡᏏ -12.5293 ▁ᏕᎭᏡᏗ -12.53 ᎦᎾᏩ -12.5301 ᏍᎦᎶᏗ -12.5312 ▁ᏳᏴᎵ -12.5325 ᏬᏪᎳᏁ -12.5326 ᏇᏅᏔᏅ -12.5327 ▁ᏥᏓᏕᏲᎲᏍ -12.5328 ▁ᎠᏓᏰᎮ -12.5339 ▁ᎬᏁᏤᏗ -12.5343 ᏚᏳᎪᏗ -12.5344 ᏣᏛᎯᏎᎸ -12.5345 ᏥᎦᏙᎥᏒ -12.5347 ▁ᏣᎸᏃᏘ -12.5348 ᏣᏛᏁᎲᎢ -12.5349 ▁ᏕᎤᎵᏍᎪᎸᏓᏁ -12.5356 ᏬᏚᏨ -12.5358 ▁ᎯᏯᏥᎪᏁ -12.5362 ᎬᎩᎷᏤᎸ -12.5371 ᎾᏛᏁᎴ -12.5374 ᏍᏕᎵᏍᎨᎢ -12.5378 ᏴᏍᏗᏍᎨᏍᏗ -12.5387 ▁ᎢᏥᎾᏄᎪᏫᏍ -12.5393 ▁ᏭᏲ -12.5399 ᏛᏅᎢᏍᏔᏅᎾ -12.5404 ᏲᏔᏁ -12.5405 ▁ᏓᏦ -12.5408 ᏇᎵᏎᎮᏍᏗ -12.542 ᏥᏏᎾᏌᏂ -12.5443 ▁ᎤᎾᏒᏂ -12.5453 ᏍᎩᎪᏩᏛ -12.5453 ᏙᎭᏰ -12.5454 ᏍᎩᏴᏁᎸ -12.5454 ▁ᎢᏥᏴᏁᏗ -12.5466 ▁ᎾᎾᏛ -12.5468 ᎪᎯᏍᏗ -12.5469 ᏂᏕᎬᏁᎰ -12.5471 ▁ᎤᎾᏦ -12.5478 ▁ᎨᏥᏅᎦᎵᏍ -12.548 ▁ᏱᏗᏣᏓ -12.5482 ᏩᏂᎴᎢ -12.5484 ᏓᏲᏁᎯ -12.5486 ▁ᏱᏂᏚ -12.5489 ▁ᏧᎾᏑ -12.549 ▁ᏓᏳᎾᎴᎿᏫᏍ -12.55 ᏓᏗᏍᎪᎢ -12.5503 ᏆᏛᏁᏗᏱ -12.5521 ᎾᏄᎪᏫᏍᎩ -12.5522 ᏇᏓᏢ -12.5523 ▁ᎠᏂᏃᏗᏍ -12.5527 ᎵᏙᎸ -12.5531 ᎾᎯᏍᏓᏁᎸ -12.5549 ▁ᏓᏂᏃᎯ -12.5551 ᎳᏏᏁ -12.5555 ▁ᏚᏦ -12.5572 ▁ᏥᏕᎫᎪᏓᏁ -12.559 ▁ᎱᏃᎮ -12.5593 ᎿᏕᎦ -12.5605 ▁ᏗᏥᏅ -12.5606 ᏂᎪᎵᏰᏍᎬᎩ -12.5609 ᏙᎩᏨᏍ -12.5612 ᏂᏲᎱ -12.5615 ᏂᏲᎲᎩ -12.5618 ▁ᎤᎾᏛᏅᎢᏍ -12.5626 ▁ᎤᎾᎵᏍᏓᏴᏙᏗ -12.5633 ᏂᏗᏍᎩᏌ -12.5642 ▁ᏗᎫᏴᎡ -12.5645 ᎩᏍᏛᏗᏍᏗ -12.5649 ᏴᎸᎾ -12.5654 ▁ᎠᎵᏍᏓᏴᎲᏍᎨ -12.5681 ᏍᎩᏯ -12.5682 ▁ᎠᏥᎩᎡ -12.5688 ▁ᏓᎧᎿᏩᏗᏙ -12.5689 ᎬᎿᏗᏍᏗ -12.5736 ᏴᏫᏯᎯ -12.5736 ▁ᎤᏓᏟᏌᏅ -12.574 ▁ᎣᎩᎾᎩ -12.5749 ᎤᏴᏢ -12.5757 ▁ᏣᏓᏴ -12.5757 ᏥᏂᏆᏘᎭ -12.5764 ᏕᎰᏗᏍᎬ -12.5765 ᏯᎧᎯᏯ -12.5767 ᏂᏁᎦ -12.5767 ᎬᏍᏕᎸ -12.5773 ▁ᏳᎵᏍᏆᏙ -12.5787 ▁ᎤᎵᏍᏆᏂᎪᏙ -12.5787 ▁ᎯᏯᎫᏴ -12.5788 ᏓᏍᎦ -12.5792 ᏍᏗᏗᏎ -12.5795 ᏍᏕᎸᎮᎢ -12.5797 ᏂᏐᎯᏍᏗᏱ -12.5801 ▁ᎤᏂᏍᏕᎸᎯᏙ -12.5802 ᏂᎩᏎᎢ -12.5806 ▁ᏍᎩᏂᏴ -12.5807 ᏰᏍᏛᎢ -12.5807 ▁ᎠᏂᏙ -12.581 ᏣᏯᏂᏍᎨᏍᏗ -12.5816 ᎠᏑᎵ -12.5816 ᏥᎾᏰᏍᎦ -12.5816 ᎡᏉ -12.5819 ▁ᏓᏳᏰ -12.5824 ᏕᎮᏍᏗ -12.5824 ᎷᏅ -12.5827 ▁ᏗᏣᎵᏂᎪᎯᏍ -12.5836 ▁ᎢᏨᏲᏪᎳᏁᏗ -12.5836 ne -12.5838 ▁ᏱᏗᏥᎪᏩᏘ -12.5839 ᏥᏅᏍᏓᏕᎸᎩ -12.5842 ᎠᏐᏢᎢᏍᏗᎭ -12.5845 ▁ᎤᏂᏣᏄ -12.5849 ᏯᏅᏏ -12.5853 ᎾᏕᏋᎯᏍᏗ -12.5877 ▁ᎣᎩᏃᎸ -12.5879 ▁ᎣᎩᏍᏕᎸᏗ -12.5893 ᏗᏛᎲ -12.5895 ▁ᎤᏃᏴᎨ -12.5916 ᏣᏓᏅᏖᏍᎨᏍᏗ -12.5927 ᏓᏅᏖᏗᏍᎨ -12.593 ▁ᏧᏂᏅᎢᏍ -12.5932 ▁ᎢᏣᏘᏍᏗᏍ -12.5935 ᎵᏏᏯ -12.5939 ᏥᏙᎵᎩ -12.594 ▁ᎡᏣᎵᎮᎵ -12.596 ▁ᏚᎾᎳᏑ -12.5963 ▁ᏱᏍᎩᏁ -12.5968 ▁ᎣᎦᏓᏙᎵᏍ -12.5976 ▁ᎠᏥᎪᎵᏰ -12.599 ▁ᏕᏥᎦᏔᎲ -12.599 ᏓᏣᏛᏂ -12.5991 ▁ᏲᎯᏳᎲ -12.5996 ▁ᎦᏂᏆᏘᎮ -12.5999 ▁ᏓᎦᏥᏴ -12.6002 ▁ᎢᏥᏃᎯ -12.6006 ᏥᎭᏯᎸ -12.6009 ᎦᎴᏅᏔᏅ -12.6015 ▁ᏄᎾᏕᏁ -12.6022 ▁ᏭᎾᎵᏍᏔ -12.603 ᏲᏎᎴᎢ -12.6037 ᏎᎵᏙᏔᏁ -12.6039 ▁ᏔᏙᎴᎰ -12.6049 ▁ᎤᏅᎦᎸᎮ -12.6055 ▁ᏱᎾᎩᏪ -12.6055 ᎬᏬᎯᏳᎲᏍᎨᎢ -12.6057 ᏂᏍᏓᏩᏗᏒᎩ -12.6058 ᏤᎲᎩ -12.606 ▁ᎢᎦᏠᏯᏍᏙᏗ -12.6063 ᎨᏫᏒ -12.6068 ᏥᏯᎠ -12.607 ᏆᎵᏂᎬᎬ -12.6071 ▁ᎢᏨᏯᏅ -12.6072 ᏯᏅᎡᏗᏱ -12.6078 ▁ᎤᎾᏂᎩ -12.6086 ᎾᎦᏌᏯᏍᏗᏕᎩ -12.6087 ᎵᎥᏂᎮᏍᏗ -12.6091 ᎵᏃᎮ -12.6093 ᎶᏏᏙᎮ -12.6117 ᏂᎿᎸ -12.6126 ᎾᏄᎪᏫᏎᎵ -12.6131 ᏮᏕ -12.6136 ▁ᏕᎧᏅᏫᏍ -12.6136 ᏛᎯᏍᏓ -12.6159 ▁ᎢᎩᏅᎦ -12.616 ▁ᏰᏙ -12.6161 ᏠᏯᏍᏙᏗᏱ -12.6176 ᏣᏟᎶᏍᏙᏗ -12.6178 ᏤᎵᏍᎪᎢ -12.6182 ▁ᎠᏰᏍᏓ -12.6195 ᎵᏃᎯᏰᎯ -12.6197 ᏂᏲᎵᎴ -12.6198 ᏓᎪᏩᏘᏍᎨᎢ -12.6213 ▁ᏣᏩᎯ -12.6214 ▁ᎡᏣᎸᏉ -12.6225 ᏓᏍᏖ -12.6228 ▁ᏯᏎ -12.6237 ᏄᏴᎸ -12.6243 ᎮᏙᎸ -12.6245 ᏚᎾᏓᏂᎸᏨ -12.6246 ▁ᎨᏥᏚᎢᏍᏓ -12.625 ▁ᎢᏥᏄᎪ -12.6255 ▁ᏍᎩᏰᎵᏎ -12.6256 ᏥᏲᎦ -12.6264 ᏲᏏᏌᏅ -12.6266 ▁ᎤᎾᎩᎶᏫ -12.6266 ᏓᏁᎶᏛᎢ -12.6271 ᏓᏬᏍᎪ -12.6274 ᏣᏓᏅᏘ -12.6281 ▁ᏯᏇᎵᏎ -12.6283 ▁ᏑᏓᎵᏉ -12.6292 ᎵᎡᎵᏤᎲ -12.6293 ᏓᎡᎪᎢ -12.6294 ▁ᎾᏂᎦᏔ -12.6298 ▁ᏍᎩᏃᏁᏗ -12.6301 ᏤᎸᎯ -12.6309 ᏯᏗᏒ -12.6313 ▁ᏱᏕᎫᎪᏓ -12.6324 ▁ᏫᏚᎶ -12.6331 ᏚᎢᏍ -12.6337 ati -12.634 ᎬᏯᏛᏁᎸᎢ -12.634 ᎤᎪᎲ -12.6352 ▁ᏩᎾᏓᏅ -12.6359 ᎰᏎᎴ -12.6359 ᏴᏂᎸ -12.6364 ▁ᏚᏭᏍ -12.6366 ᏯᎸᏎ -12.6375 ▁ᏫᎩᏯ -12.6375 ▁ᏧᎦᏘᎴ -12.6382 ᏛᏓᏍᏓᏁᎸ -12.6395 ᏰᎶ -12.6417 ▁ᏴᎦᏲᏥ -12.6417 ᎬᏩᎶᏔᏅ -12.6423 ▁ᏗᎦᏬᏁ -12.6423 ᏁᏙᎮᏍᏗ -12.6434 ᎩᏲᏍᏙᏗ -12.6438 ▁ᏯᏲᏍ -12.6453 ᏬᏍᎨᎢ -12.6467 ▁ᏗᎨᏧᎪ -12.6469 ᏬᎵᏨ -12.647 ▁ᎤᎾᎫᏴ -12.6474 ▁ᏓᎦᎵᏍᏓᏴ -12.648 ▁ᏯᎫ -12.6483 ᏙᎳᏅᏍᏗ -12.6499 ᏱᎶᎴ -12.65 ᏈᎵᏱ -12.6501 ▁ᏙᏍᏓᏓ -12.6514 ᎩᏯᏪᎦ -12.6515 ᏍᏔᏩᏗᏒ -12.6516 ▁ᎦᏅᏫᏍᏗᏍ -12.652 ▁ᏍᏆᏘᏂ -12.6531 ᏚᎵᏍᏓ -12.6537 ᏗᎧᎿᏩᏗ -12.6538 ▁ᏯᎴᏫᏍᏗᏍ -12.6546 ▁ᎠᏥᏄᎪᏫᏒ -12.655 ᏐᏢᏔᏅ -12.6553 ▁ᏗᏓᏁ -12.6554 ᏓᎸᏉᏗᎭ -12.6559 ᏪᎧᏁᎴ -12.6566 ᏚᏓᏴᏎ -12.6567 ▁ᏗᏥᏁᏗ -12.6572 ᏥᎪᏩᏔ -12.6578 ▁ᏙᏓᎬᏯ -12.6579 ᏱᎾᏆᏛᏁ -12.6582 ᏥᏔᏲᎸᎩ -12.6591 ᎪᎵᎩ -12.6605 ᎪᏩᏘᏍᎨ -12.6612 ▁ᏧᏲᏍᏙᏗ -12.6614 ▁ᎤᏚᎵᏍ -12.6617 ᏪᎮᎢ -12.6618 ᏟᏂᎬᏁᎴ -12.6619 ᎩᏐᏢ -12.6627 ᏂᏙᎴᎢ -12.6629 ▁ᎤᎾᏚᏓᎴᏍᏗ -12.6634 ▁ᎢᎤᏪᏅ -12.6642 ▁ᎣᎩᏩᏛ -12.6649 ᏁᏤᎭ -12.6654 ᏌᎴᏒ -12.6656 ᎦᎩᏳ -12.668 ▁ᏓᏣᏄᎪ -12.6687 ᏗᏥᏯᏪ -12.6696 ᎵᏰᎢ -12.6701 ▁ᏫᎫᏓ -12.6707 ᎵᏍᏚᎢᏎᎢ -12.6709 ▁ᎬᏩᏓᏅᎡ -12.671 ᏍᎫᏕᏍᏗᏱ -12.671 ᎪᏫᏍᎪ -12.6714 ᏲᏍᎦ -12.6719 ᏗᏔᏍᏓ -12.672 ᎡᏏᎩᏃ -12.6728 ▁ᏛᎯ -12.6733 ᏍᏚᏟᏍᏔᏅ -12.6767 ᏂᏂᏒᎩ -12.6768 ▁ᎢᎩᎨᏳᎯ -12.6775 ▁ᎧᏁᎢᏍᏙᏗ -12.6783 ▁ᎤᏍᎦᏅ -12.6794 ▁ᎣᎦᏢᏈ -12.6795 ᎾᏑᎩᏍ -12.6804 ▁ᏱᎦᏓᏙ -12.6812 ᎦᎾᏄᎪᎬ -12.6817 ᏍᏓᏱᏕᎴ -12.6818 ▁ᎤᎪᎵᏰᏍᎬ -12.682 ▁ᎬᏩᏁᏤ -12.6826 ᏰᏍᏛᏁ -12.683 ▁ᎦᏕᎶᎣ -12.6835 ▁ᎠᏥᏁᎮ -12.6838 ▁ᏱᏂᎦᏛ -12.684 ▁ᏕᏣᏘᏃ -12.6841 ᏨᏰᎳᏗᏙᎭ -12.6847 ᎨᏓᎵᏰ -12.6853 ▁ᏚᏒᎭᏂ -12.6865 ᏂᏱᏍᎪ -12.6867 ᎵᏥᏙᏂᏙᎸᎭ -12.6873 ▁ᎢᎫᏓᎴ -12.6889 ▁ᏳᎾᏓᏅᏖ -12.69 ▁ᏙᎩᎩᏨ -12.69 ᏬᏍᏔᏂ -12.69 ᏯᎵᏍᎦᏍᏙᏗᎭ -12.6901 ▁ᎡᏥᏬ -12.6903 ᎦᏎᏙᏗ -12.6903 ▁ᏧᏕᏁ -12.6904 ᏤᎷᎩ -12.6906 ▁ᎤᎾᎵᏥᏙᏁ -12.6914 ᎾᎵᏍᏕᎸᏙᏗ -12.6918 ▁ᏭᏂᏩᏛ -12.692 ▁ᏚᏲᏒ -12.6927 ▁ᏗᎨᏣᏓᏂᎸ -12.6933 ▁ᏧᏠᎠᏎ -12.6951 ▁ᏭᎾᏕ -12.6951 ▁ᎤᎾᎪᎲᏍ -12.6953 ᎦᎾᎨ -12.6964 ▁ᎣᏥᏍᏗᏰ -12.6965 ▁ᏗᏛᏅᎢᏍᏔᏅ -12.6978 ᏍᎩᎧᏏ -12.6982 ᏩᏛᏁᎸᎢ -12.6993 ᏲᎱ -12.6996 ᏔᏍᎩᏎ -12.6998 ᏲᎯᏎᎲ -12.6999 ▁ᎠᏋᎨ -12.7001 ᏚᎢᏍᏓᏁᎸ -12.7002 ▁ᏓᏌᏬᎢ -12.7009 ᎩᏂᏴᏛ -12.7009 ᎪᏓᏏ -12.7041 ▁ᏥᎶᏒ -12.7042 ᏤᏙᎵᏙᎮ -12.7043 ▁ᏚᏍᏕᎸᎮ -12.7043 ᎪᏫ -12.7046 ▁ᏫᏚᏘᏅᏍᏔᏁ -12.7047 ᏲᎰᏏ -12.7048 ▁ᎡᏣᎵᏥᏙᏁ -12.7058 ᏣᏛᏂ -12.706 ᏗᎦᏘᎸᏍᏗ -12.7061 ▁ᎠᏆᏦᏩ -12.7066 ᏓᏅᎩᎶ -12.7069 ᏙᏗᏱᏉ -12.7074 ▁ᎦᏓᏅᏖᏍ -12.7077 ▁ᏥᏣᏚᎵ -12.7105 ᏂᏏᏅᏒ -12.7106 ᏂᏰᎸᎭ -12.7114 ᏣᏗᏍᏓᏁ -12.7114 ᏅᏫᏍᏔᏅ -12.7125 ▁ᎢᏥᏍᎦᏃ -12.7127 ᏗᏲᎪ -12.7131 ᎦᏙᎲ -12.714 ▁ᎠᏆᏅ -12.7143 ᏓᏅᏖᏍᎬ -12.7145 ▁ᎢᏥᎧᎵᎢᏍᏗ -12.7153 ᏗᏯᏂ -12.7154 ᎷᏤᎮᏍᏗ -12.7157 ▁ᎤᏪᎳᏗ -12.7157 ▁ᎠᏥᏲ -12.7162 ▁ᏧᏘᏅᏍᏗ -12.7184 ᏣᏯᎠ -12.7187 ᏥᏲᏎᎵ -12.719 ᎨᎲᏎ -12.719 ▁ᏥᎮ -12.7191 ᏯᏙᎮᎮ -12.72 ᎾᎵᏍᏓᏴᎯ -12.7202 ᏥᏄᎪᏫᏍᎦ -12.7205 ▁ᏱᏙᎦᏓᏂᎸ -12.7206 ▁ᎢᎨᏣ -12.7213 ᏠᎸ -12.7223 ▁ᏧᎳᏑ -12.7224 ᏢᎾᏁᎸᎯ -12.7232 ▁ᎣᎩᏂᏲ -12.7242 ᏍᏓᏱᏕᎸ -12.7245 ᏪᏎᎲᎢ -12.7245 ᏙᏪᎳᏁ -12.7247 ▁ᏕᏓ -12.7255 ᏂᎨᏎ -12.7271 ᏔᏬᏙ -12.728 ᏙᏍᏙ -12.7283 ▁ᎠᏂᏅᏫᏍᏗᏍ -12.7293 ▁ᎤᏂᎦᎵᏍᏓᏗᏍ -12.7294 ᏓᎵᎪᏁ -12.7297 ▁ᎤᏩᎨᏫᏒ -12.7301 ▁ᏥᎦᏡ -12.7307 ᏬᏣᎳ -12.7313 ᏣᏄᏬᏍᏓ -12.7319 ▁ᏗᏐᏈ -12.7328 ▁ᏥᏤᏙ -12.7332 ᏂᏴᎮ -12.736 ᏂᎦᏯᎷᏗ -12.7361 ᏗᏕᏂ -12.7366 ▁ᎬᏩᏍᎪᏂ -12.7368 ᏍᏓᏩᏗᏎᎢ -12.7368 ᎵᎬᏚᎳᏁ -12.7368 ▁ᏗᎦᏖ -12.7377 ᎦᎾᏄᎪᏫᏍᎦ -12.7387 ▁ᏚᎾᎧᎾ -12.7394 ▁ᎦᏥᎥ -12.7395 ᎬᏩᏛᏛᏗ -12.7395 ᎩᎩᎵᏲ -12.7403 ▁ᏙᏛᏘᏂ -12.7411 ᎬᏋᏁᏗᏱ -12.7424 ▁ᎡᏣᏯᏅ -12.7425 ᏥᏍᏆᏂᎪᏔᏅ -12.7427 ▁ᏫᎫᏩ -12.7428 ▁ᏳᏙᎯᏳ -12.7429 ᎩᏏᏙᎮ -12.7433 ᏥᎸᏍᎬ -12.7437 ᎩᎧᎲ -12.7446 ᎾᏣᎢᏎᎢ -12.7453 ▁ᏕᎭᏘ -12.7454 ▁ᎠᏥᎩᎵᏲᎢᏍᏙᏗ -12.7458 ᏛᎯᏍᏗᏍᎨ -12.7459 ᏙᎸᎯ -12.7461 ᏂᎧᏅ -12.7462 ▁ᎤᏕᏁ -12.7463 ▁ᎤᏂᏲᎢᏎ -12.7465 ▁ᎤᎾᏓᎸᏉᏗ -12.7471 ▁ᎤᏂᏄᎪᏫᏒ -12.7484 ᎵᏥᏙᎲᏍᎩ -12.7503 ▁ᏧᏂᏍᏕᎸ -12.7504 ▁ᏧᎳᏁᎸ -12.7507 ᎵᏰᎡ -12.7507 ᏯᏛᏅᎢᏍᏓ -12.7508 ᏓᏙᎵᏍᏗᏍᎪᎢ -12.7509 ▁ᎢᏥᎪᏩᏛᏗ -12.7513 ᎴᏫᏍᏔᏁᎴ -12.7515 ᏓᏫᏔᏅ -12.7515 ᏣᏛᏁᎭ -12.7522 ᏲᏪᎳᏏ -12.7523 ▁ᎬᏩᏄᎪᏤ -12.7527 ▁ᏥᏂᎬᏁ -12.7527 ▁ᏚᏍᏚ -12.7529 ▁ᎣᎩᏲᎰᏎ -12.753 re -12.7534 ▁ᎤᏯᏪᏐᎸ -12.7534 ▁ᎠᏆᏛᏁᎸ -12.7544 ▁ᎤᏂᏃᏴ -12.7547 ▁ᎾᏆᎵᏂᎬ -12.7558 ᎵᏙᎲ -12.757 ▁ᎤᏍᎪᎵᏰ -12.7575 ▁ᎠᏥᏁᎰ -12.758 ▁ᏗᏥᏲ -12.7583 ▁ᎤᎾᎦᏌᏯᏍ -12.7588 ᏠᏯᏍᏗ -12.7588 ▁ᎬᎩᏢ -12.7603 ▁ᏧᎧᎵᏨ -12.7605 ᎾᏏᏂᏎᎢ -12.7607 ▁ᎢᏣᏙᎴᎰᏍ -12.761 ᏃᎯᏳᎲ -12.7636 ᏓᎢᏅ -12.7639 ▁ᎠᏥᎾᏗᏅ -12.7645 ▁ᎬᏩᏁᏁ -12.7646 ᏄᎪᎢᏍᏗ -12.7653 ▁ᎦᏅᎪ -12.7654 ▁ᏳᏓᎵ -12.7655 ᎾᎵᎪᏁ -12.7671 ᏘᏂᏓᏍᏗ -12.7672 ᏦᏪᎵᏍ -12.7685 ᎯᏎᏗᏱ -12.7687 ▁ᎠᎾᏓᏙᎵᏍᏗᏍ -12.7691 ▁ᎠᏐᏩ -12.77 ᎪᎵᏰᎥᎩ -12.7705 ᏓᏛᏁᎲ -12.7706 ᏎᎵᏓᏁᎸ -12.7707 ᎾᏛᏁᎲᎾ -12.7708 ᏫᏛᎲᎭ -12.7709 ▁ᏦᏣ -12.7714 ▁ᏓᏯᏙᎮ -12.7717 ▁ᎤᎪᎵᏰᏍᎨ -12.7718 ᏣᎫᏴᎡᏗ -12.7719 ᎵᏍᏙᏰᎲ -12.7722 ᎾᏓᏘᎾᎥ -12.7725 ▁ᏚᏂᏬᏂ -12.7729 ▁ᎠᎴᏫᏍᏘᏍ -12.773 ᏩᏥᏍᏓ -12.7734 ▁ᏣᎫᏴᎡ -12.7736 ᎵᏖᎸᏂ -12.7737 ᎵᎶᎲᏍᎦ -12.7748 ▁ᎠᏕᎶᎰᎯᏍ -12.7749 ᎪᎡᎸ -12.7749 ▁ᏱᏭᏂᎷ -12.775 ▁ᏕᏣᎧᏂᏍ -12.775 ᎵᏍᎦᏍᏙᏗᏍᎩ -12.776 ᏪᏘᎸᎯ -12.7761 ᏓᏳᏂᎶᏒᎯ -12.7769 ᏄᏪ -12.7775 ▁ᎢᏲᎬ -12.7788 ▁ᏓᎾᏕᎰ -12.7788 ▁ᎤᎦᏙᎥᎯᏍ -12.779 ▁ᎤᏰᏙᎳ -12.7799 ᎧᎵᎴ -12.7799 ▁ᏓᏋᏂ -12.78 ▁ᏓᎵ -12.7804 ᏗᏧᎬᎢ -12.7805 ᎦᏅᏗᏱ -12.7808 ▁ᏣᏓᏙᎵᏍ -12.7808 ▁ᎠᏒᏂᎮ -12.7812 ▁ᎤᏂᏍᏓᏱ -12.7812 ᏚᎸᎲᎩ -12.7818 ▁ᏕᎨᎦᏬ -12.783 ▁ᏣᏙᎴᎰᎯᏍ -12.7836 ᏍᏘᏰᎬ -12.7837 ▁ᎯᏟᏏ -12.784 ᏚᏒᏁᎢ -12.7845 ▁ᎠᏂᏌᏛᎥᏍ -12.7852 ᏄᏪᏍᏗ -12.7873 ᎧᏲ -12.7876 ᎬᏩᏙᏢ -12.7886 ᏩᎾᏛᏁᏗ -12.789 ▁ᏂᎦᎵᏍ -12.7893 ▁ᎣᏥᏁᎢᏍᏗ -12.7896 ᏥᏃᏁᏗᏱ -12.7901 ▁ᏥᏨᏯᎵᏥᏙᏁ -12.7914 ▁ᏚᏍᏕᎸ -12.7917 ᏅᏩᏍᏛᏉ -12.7926 ▁ᎦᏥᏲᎢᏳᏓᏁ -12.7927 ▁ᎨᏥᏐᏅ -12.7934 ▁ᎡᏥᎷᏥ -12.7937 ᎵᏤᏗᏱ -12.7937 ᏰᏎᎢ -12.7951 ᏢᏔᏍᏗ -12.7957 ᏣᎵᏂᎪᎯᏍᏓ -12.7958 ▁ᎠᏂᎩᎵᏲᏥᏙ -12.7959 ᏁᎢᏍᏓᏏ -12.7966 ▁ᎣᏣᎴᏂ -12.7969 ▁ᎠᏓᏅᏖ -12.7972 ᎩᏐᏢᎢᏍᏙᏗᏱ -12.798 ▁ᎠᏂᏌᏆᎴ -12.7982 ᎶᏄᎡ -12.7985 ▁ᎭᎴᏂᏙ -12.7986 ᏐᏅᏰᎵ -12.7991 ▁ᎤᏣᎳ -12.7995 ᎸᏉᏗᏍᎪ -12.8009 ▁ᏄᎾᎵᏍᏓᏁ -12.801 ▁ᏥᏔᏲᏎ -12.8012 ▁ᎠᏆᏕᎰ -12.8023 ᏍᎦᏅᏤᎸ -12.8026 ᏓᏣᎵᏍᏔᏂ -12.8037 ▁ᏓᏂᎦᏔᎲᏍ -12.8046 ᏍᎫᏕᏒᎩ -12.8054 ▁ᏂᏓᎾᏛ -12.8059 ᏳᏖᏍ -12.8062 ᎲᏍ -12.8067 ᏣᏓᏁᎮᏍᏗ -12.8076 ▁ᏱᏓᎧᎿᏩᏕ -12.8076 ▁ᏗᏥᏚ -12.8087 ᎤᎨᏳᎭ -12.8089 ᏑᏴᎥᏍ -12.8097 ᏄᎪᏨᎭ -12.811 ▁ᏕᎦᎫ -12.8111 ▁ᏍᎩᎩᎵᏲᎢᏍ -12.8112 ᏬᏂᏍᎩ -12.8113 ᎳᏗᏍᏛ -12.8124 ᏥᏱᎵᏙ -12.8128 ᏁᎢᏍᏙᏗᏱ -12.8134 ᎵᏌᎳᏗ -12.8135 ᏍᎦᏅᎦ -12.8152 ᎦᎵᏍᏙᏓ -12.8157 ᏂᎭᎷᎩᏍ -12.8158 ▁ᎠᏇᏙ -12.8159 ᎪᎲᏍᏓ -12.8167 ▁ᎢᏥᎾᏰ -12.8169 ▁ᏚᎨᎯᏙ -12.817 ᎾᏂᏍᎬ -12.8173 ᎠᏏᎳᏛ -12.8181 ▁ᏘᏂᏣ -12.8182 ▁ᏚᎾᏗᏩ -12.8189 ᏯᏍᏔᏁ -12.819 ᎠᏂᎲᏍᎨᏍᏗ -12.8202 ᏥᎦᏔᎰ -12.8206 ▁ᎥᎪᎩᏔᏲᏎ -12.8208 ᎾᏛᏛᏁᎢ -12.8214 ᏉᏌ -12.8215 ᏂᏯᎡᎢ -12.822 ᎿᎸᏒᎢ -12.8222 ▁ᎤᏂᎧᎵᎢᏍ -12.8226 ᏓᏙᎵᏍᏓᏁᎵ -12.8228 ▁ᏩᎩᏍ -12.824 ᏛᏍᏆᎸᎯ -12.8241 ᏤᏙᎸᎯ -12.8241 ᏛᏅᎢᏍᏓᏁᎴ -12.8245 ▁ᎦᏥᏍᏕᎸ -12.8253 ᏥᎦᏔᎲᎢ -12.8256 ▁ᎤᏂᎶᏄᎮ -12.8259 ▁ᏧᎾᏛᎯᏍ -12.8259 ▁ᏫᏓᎾᏓ -12.8261 ▁ᏥᏚᏲ -12.8263 ᏚᏎᎪᎩᏎ -12.8265 ▁ᏱᎪᏪ -12.8266 ▁ᎦᎵᏬ -12.8267 ᏚᎸᏫᏍᏓᏁᎲᎩ -12.8271 ᏥᏂᏴ -12.8276 ᏎᎪᎩᏏ -12.8283 ᏛᏓᏍᏓᏁᎴ -12.8288 ᏗᎷᏨ -12.8291 ᏚᎪᏔᏅ -12.8295 ᏣᎵᏂᎩᏗᏳ -12.83 ᏂᎸᏫᏍᏓᏁᎲᎢ -12.8303 ᏪᏎᎸ -12.8306 ᏙᎯᏳᏅᎩ -12.8325 ᏣᎵᏍᎦᏍᏙᏛ -12.8339 ▁ᏚᏩᏍᎦ -12.8341 ᏘᏃᎴᎢ -12.8346 ▁ᎬᏩᏍᏆᏂᎪᏙᏗ -12.8346 ᏍᏓᏛᏁᎸ -12.8347 ▁ᏍᎩᏰᎸ -12.8347 ᏛᏅᎢᏍᏔᎾ -12.8354 ᏩᏕᎦ -12.8374 ᏕᏯᏙ -12.8378 ᏌᏙᏱᏍ -12.8384 ▁ᏫᎦᏓᏙᎵᏍ -12.8386 ᎵᏬᏥᏕᎾ -12.8386 to -12.8398 ▁ᏱᎦᏔᎮ -12.8404 ᏥᎳᏅᏓᏕ -12.8408 ᏯᏴᎭ -12.8411 ᏓᏔᎶᏒ -12.8421 ▁ᏣᎦᎸᏍ -12.8428 ᏥᎩᎵᏲᎢᏍᏙᏗᏱ -12.8433 ▁ᏳᎾᏕ -12.844 en -12.8441 ᎸᏉᏗᏍᎬ -12.8453 ▁ᏫᏗᎷ -12.8478 ▁ᎤᏂᏍᎪᏂ -12.8484 ▁ᎤᏟᏫᏛ -12.8485 ᎵᎪᏁᎴ -12.8486 ᎦᏘᏗᏍᏓᏁᎸ -12.8493 ᎶᏕᏍᏗ -12.8497 ᏟᏌᏅᎯ -12.8503 ▁ᏂᏚᏭᎪᏔ -12.8503 ▁ᎦᏁᏟᏴᏍ -12.8514 ▁ᏯᏓᏁ -12.8527 ▁ᎤᏌᎵᏓ -12.8536 ▁ᏥᏥᎷ -12.8537 ▁ᏣᎸᏉ -12.854 ᎦᏚᎲ -12.8541 ᎶᏍᎨ -12.8542 ▁ᎢᏓᏓᏁ -12.8547 ᏥᏍᏈᏍ -12.8548 ᏕᎶᎰᏒ -12.855 ▁ᏓᏓᏅ -12.8556 ᎦᎴᏙᏗ -12.8558 ᎦᏔᎲᏍᎨᏍᏗ -12.8561 ᏓᏅᏖᎵᏙᎲᎢ -12.8564 ▁ᏥᏂᏆᏘ -12.8565 ▁ᎤᏂᎸᏉᏙ -12.8567 ᏒᏍᏗᏍᎬ -12.8577 ▁ᎠᎵᏍᏆ -12.8585 ᏍᎦᎸᎦ -12.8601 ᏟᏃᎮᏔᏅ -12.8605 ▁ᎠᏂᎾᏰᏍᎨ -12.861 ᎣᎯᏍᏗ -12.8611 ᏚᏏᏔᏕᎢ -12.8611 ▁ᏥᏕᎦᏕᏲ -12.8617 ᏂᎷᏆᏗᏅ -12.8617 ᏯᏏᏔᏛ -12.8618 ▁ᏱᏣᏛᎦᏁ -12.8619 ᏠᎰ -12.8623 ᏚᎩᏍᏗᏱ -12.8625 ▁ᏚᏩᏂ -12.8634 ᏥᎷᎦ -12.8637 ᏆᏂᏲᏍᏗ -12.8651 ▁ᏳᎷᏥ -12.866 ▁ᏕᏥᎸᏫᏍᏓ -12.8662 ᎦᏘᎴᎬ -12.8665 ▁ᏥᏂᏪ -12.8666 ᏚᏯᏙᎮᎸ -12.8668 ᏓᏃᏴᎵᏍᏛ -12.8669 ▁ᎨᏥᏃᎮ -12.8671 ᏓᏂᎸᎪ -12.8676 ᏥᏳᎪᏓᏁᎰᎢ -12.8676 ᏍᎩᏰᎳ -12.8685 ᏕᎶᏆ -12.869 ▁ᎤᏂᏍᏆᏗᏍ -12.87 ᏥᏯᏚᏓᎳ -12.8704 ▁ᎠᏆᏕᎶᏆ -12.8704 ᎦᏘᏅᏍᏗ -12.8707 ᏙᎴᎰᎯ -12.872 ▁ᏅᏗᎦᎵ -12.8721 ᏓᏄᏴᏛ -12.8724 ᎩᏅᏒᎯ -12.8725 ▁ᎦᏅᏓᏗ -12.8728 ᏓᎦᏓᏂᎸᎪ -12.8732 ᏂᏁᎦᎸ -12.8735 ᎦᏐᎠᏒ -12.874 ᎦᏌᏯᏍᏔᏅ -12.8746 ▁ᏓᎦᎸᏍ -12.8755 ▁ᎠᏆᏛᎪ -12.8756 ᏠᎯᏍᏔᏅ -12.8757 ᏬᏁᏗᏍᎨᏍᏗ -12.876 ▁ᏓᎦᏥᏁ -12.877 ᏅᏤ -12.8783 ᏂᎨᏨᎿᏕ -12.8791 ᏍᏛᏗᏍᏙᏗ -12.8791 ᏄᎪᏫᏍᏗ -12.8797 ▁ᏱᏕᏥ -12.8807 ▁ᎬᏩᏔᏲᏎ -12.8812 ᎵᏦᏔᏅᎩ -12.8814 ▁ᏣᎦᏓᏂᎸ -12.8819 ▁ᏱᎦᎵᏍ -12.882 ▁ᏱᏄᏅ -12.8824 ᏤᏗᏱ -12.8827 ᏍᏓᏩᏙᎸᎯ -12.8833 ▁ᏓᏣᏓᏅ -12.8836 ᏕᏦᏁ -12.8837 ᏖᎳᏗᏍᏗ -12.8841 ▁ᎥᎨᏥ -12.8846 ᏂᏯᎥᎢ -12.8846 ᎭᏄᏮ -12.8849 ▁ᎲᏲ -12.8858 ᏛᏔᏂᎸ -12.8861 ᎧᎿᏩᏕᎬ -12.8866 ▁ᎤᎾᎵᏍᎦᏍᏙᏔ -12.887 ▁ᎢᏗᏩᏛ -12.8872 ᏰᎶᎸ -12.888 ᏥᎩᎵᏲᎢᏍᏗᏍᎩ -12.8882 ▁ᏱᎦᎷᏤ -12.8905 ᎾᏛᏁᎢ -12.8907 ᎬᏚᎢᏍᏓ -12.8908 ᏔᏛᎦ -12.8914 ᎾᎯᏳ -12.8922 ᏤᎸᏍᎩ -12.8938 ᏣᎪᏩᏛᏗ -12.8939 ▁ᎢᏨᏯᎦᏔ -12.894 ▁ᎠᏂᎳᎨ -12.8941 ᏣᎪᎳ -12.8943 ᎢᏐᏃ -12.8944 ᎵᏥᏙᏁ -12.8946 ᏗᏥᏍᏕᎸᏗ -12.8947 ᏓᎴᎲᏍᎪᎢ -12.8948 ᏓᏴᎳᏔ -12.8949 ▁ᎤᏁᏢᏔᏅ -12.8955 ᏚᏓᎴᏍᏗ -12.8959 ▁ᎢᏣᏓᏁ -12.8961 ᏣᏛᎿᏗ -12.8965 ᎴᏅᏙᏗ -12.8967 ᏕᎨᎦᎸᎥ -12.8971 ᏓᏙᎵᏍᏓᏁᏗᏱ -12.8975 ▁ᎤᏗᎦᎵᏍᏙ -12.8975 ᎵᎪᏁᏗᏱ -12.8978 ▁ᏕᎫᎪᏓ -12.898 ᏃᎯᏳᏅ -12.8982 ▁ᏚᏂᏯᎸ -12.8985 ▁ᏣᎧᎵᏨ -12.8997 ᎸᏉᏔᏅ -12.8997 ᏍᏓᏩᏗᏙᎮ -12.8998 ᎵᏔᏗ -12.9 ᎫᏴᏓᏏ -12.9003 ᎩᎵᏲᎢᏍ -12.9004 ᎯᏌᎹ -12.9013 ▁ᎠᏓᎸᏉᏗ -12.9013 ᏙᎵᏥ -12.9013 ▁ᏚᏂᏩᏛ -12.9014 ᎤᏄᎪᏤᏃ -12.9018 ▁ᎤᏂᎾᎷ -12.9018 ▁ᏍᎩᏁᎢᏍ -12.902 ▁ᎣᏥᏔᏲᎯ -12.9023 ᏍᎬᏓᎨ -12.903 ᎵᎪᏁᎸ -12.9032 ᏍᏔᏴᎲᏍᎩ -12.9035 ▁ᎧᏁᏤ -12.9036 ▁ᏚᎨᏩ -12.9037 ▁ᏱᏂᏴ -12.904 ᏍᏚᏗᏱ -12.904 ᏠᏱᎮᏍᏗ -12.9044 ▁ᏥᎾᏌ -12.9044 ▁ᏗᏓᎴᎲᏍ -12.9047 ᎷᎬᏒ -12.9055 ᏳᏫᏯ -12.9057 ▁ᎭᏗᏔᏍ -12.9069 ▁ᎠᏍᏆᏂᎪ -12.9069 ▁ᏚᏠ -12.9071 ᎯᏙᎸᎢ -12.9072 ᎳᏫᎢᏍᏗᏱ -12.9074 ᏌᏙᏴ -12.9078 ᏏᎳᏛᎥᎦ -12.9079 ▁ᏥᎦᏖᏃ -12.9088 ▁ᏍᎩᎪᏩᏘᏍ -12.9095 ᏙᎩᏯᏍ -12.9102 ▁ᏘᎧᎿᏩ -12.9103 ▁ᎨᏍᎩᏐᏢ -12.9103 ▁ᎢᏣᏚᏓ -12.9105 ᏂᎳᎨᏴᎢ -12.9109 ▁ᏱᏙᎨᏣ -12.9117 ▁ᏗᏥᎧᎿᏩ -12.9118 ᏗᏤᎵᏎ -12.9121 ᎵᏴᏍᎪᏳ -12.9121 ▁ᏂᏓᏍᎦ -12.9128 ᎤᎾᏨᏎᎢ -12.913 ▁ᏧᏲᏍᏙ -12.9142 ▁ᏕᏥᎪᏩ -12.9144 ᏃᎯᏳᎲᏍᎪ -12.9148 ᎦᏓᎢᏅᏒᎩ -12.9151 ▁ᏗᏍᏆᏂᎪ -12.9159 ᏙᎾᎥᎩ -12.916 ▁ᎢᏗᏍᎦᎾ -12.9162 ᏙᏢᏒ -12.9166 ▁ᎠᏆᏗᏍᎦ -12.9174 ᏛᎴᏫᏍᏔ -12.92 ▁ᏧᏂᏲᎯᏍᏗ -12.9205 ᎨᏅᏗᏍᏗ -12.9206 ▁ᏧᎾᏄᎪᏫᏍᏗ -12.9208 ᏪᏛᏨ -12.9226 ᏂᏴᎸᎩ -12.9231 ▁ᎠᏂᎾᏏᏂ -12.9242 ᏴᏔᏂ -12.9253 ▁ᏥᎾᎬ -12.9253 ᏌᎳᏗᏍᎨᏍᏗ -12.9261 ᎧᏲᏙ -12.9263 ▁ᏯᏋ -12.9265 ▁ᎠᏰᎮ -12.9267 ▁ᏚᏂᎨᏳ -12.9279 ▁ᎯᏂᏓ -12.9282 ▁ᎢᏣᏟᏂᎬ -12.9285 ᎪᏑᎴ -12.9288 ᎦᏰᏧ -12.9288 ᏩᏂᎦᎶ -12.9289 ▁ᎤᏂᏂᎬ -12.929 ▁ᎡᏣᏓᏙᎵᏍᏓ -12.9292 ▁ᏧᎾᏂᏏ -12.9296 ▁ᎭᎵᏍᎪᎸᏓ -12.9301 ▁ᎤᏓᏅᏓᏗ -12.9305 ▁ᎤᏰᎢᎵ -12.9312 ᎵᏍᏘᏍᎬ -12.9318 ᎷᏴ -12.9321 ᏥᎶᏒᏍᏓ -12.9324 ᎩᏯᏅᎡᎸᎩ -12.9324 ᎦᏑᏴᏛ -12.9332 ▁ᏓᎦᏙᎴᎣ -12.9341 ▁ᎨᎩᏃᎮ -12.9346 ᏃᎯᎵᏙ -12.9351 ᏓᎴᎲᏍᎬᎩ -12.9352 ᏠᎯᏍᏛ -12.9371 ▁ᏓᎾᏠ -12.9374 ▁ᎠᎾᏓᏏᏂ -12.9392 ᏏᎾᎯ -12.9397 ᏬᏪᎳ -12.9397 ▁ᎠᏉᏚ -12.9401 ▁ᏓᏂᏰ -12.9401 ᎬᏩᎵᏖᎸ -12.9401 ᏂᎳᎨᏯᏛ -12.9406 ▁ᏫᏂᎦᎵᏍ -12.9407 ᏆᏅᏓᏛ -12.9411 ᎩᎵᏲᎢᏍᏗᏍᎬ -12.9412 ▁ᎢᎩᎪᏩᏛ -12.9419 ᏚᏬ -12.9428 ▁ᏧᎾᏓᏲ -12.9431 ᎤᎶᏎᎢ -12.9446 ᏕᏯᏔᏁᎮᏍᏗ -12.9456 ᏅᏓᏕ -12.9459 ᎷᎸᏁᎴ -12.9466 ᏥᎷᏥᏏ -12.9467 ▁ᏭᏃᎮ -12.9469 ▁ᎤᏃᏁᏗ -12.9472 ▁ᎢᎦᏚᎸ -12.9477 ▁ᏗᏍᏆᏓᏂᎸ -12.9478 ▁ᎢᎬᏩᎵᏍ -12.9481 ᏯᏙᎯᎲ -12.9484 ar -12.9486 ᎪᎳᏗᏴ -12.9489 os -12.949 ▁ᏓᎦᎾᏬᏍ -12.9491 ᏟᏐᏗ -12.9491 ᎧᎵᏍᏓᏗᏍ -12.9501 ᎤᏙᎯᏳᎯᏍᎪ -12.9502 ᏁᏉᏤ -12.9503 ᎾᏙᎳᏍᏗᏍ -12.9504 ᎧᏁᎮᏍᏗ -12.9507 ▁ᎤᎾᎵᏍᏓᏴᏂ -12.9508 ▁ᏱᏥᎵᏓᏍ -12.9509 ▁ᎠᎦᏬ -12.9514 ▁ᏫᏚᏄ -12.9517 ᎪᏙᎯᏍᏔᏂ -12.952 ᎦᎸᏍᏙᏗᏱ -12.9521 ᎾᏡᏗᏍᎩ -12.9521 ᎪᏁᎶ -12.9527 ▁ᏥᏂᏣ -12.9528 ▁ᏭᏩᎫ -12.953 ᏓᏱᎮᏍᏗ -12.9536 ▁ᏳᎦᏔ -12.9537 ᎪᏢᏅᎯ -12.9538 ᏬᏢᏁ -12.9543 ▁ᎠᏆᎵᏥᏙ -12.9545 ᏘᎸᏉᏙ -12.955 ᎦᏙᏍᏛ -12.955 ᏐᏢᏙᏗᏱ -12.9554 ▁ᎤᏕᏘᏴ -12.9556 ▁ᎤᏍᏓᏩᏛ -12.9558 ᏳᏍᏈᏛ -12.9559 ᎧᏂᏍᎨ -12.9559 ▁ᎠᎵᏃᎮᏗᏍᎨ -12.956 ▁ᏓᏍᎦᎢ -12.9564 ▁ᏄᏰᎸ -12.9566 ▁ᎠᏂᎪᏩᏘᏍ -12.9567 ▁ᏱᏗᎫᎪ -12.9567 ▁ᎯᏯᏒᏂ -12.9569 ▁ᏣᎧᏔᎮ -12.9571 ᏜᏅᏓᏗᏍᎨ -12.9575 ᎵᏂᎪᏎᎢ -12.9577 ᎭᏓᏅᏖᏍᎬᎢ -12.9581 ᏁᎢᏍᏗᏍᎨᏍᏗ -12.9582 ▁ᎤᏓᏙᎵᏍᏙᏗ -12.9586 ᏔᎶᏒ -12.9588 ᎵᏗᏒᏂᎮ -12.9594 ᏗᏔᎲ -12.9602 ▁ᎬᎩᎦᎵᏍᏓᏗᏍ -12.9604 ᏚᏕᎢ -12.9606 ᏓᎵᏁᎯᏕᏗ -12.961 ᎵᏍᏙᏓ -12.961 ▁ᎠᎩᎷᎯᏍᏗ -12.9613 ᎩᏍᎦᏅᏤ -12.9614 ᏂᏑᏪᏎᎸ -12.9615 ▁ᎠᏘᏲ -12.9618 ᎬᏁᎮᏍᏗ -12.9619 ▁ᏗᎨᏥᏲ -12.9622 ▁ᎠᏂᏟᏌ -12.9622 ᏁᏍᎩᎸᏗ -12.9628 ᏟᏃᎮᏍᎬ -12.9629 ᏏᎳᏛᏁᎴ -12.9632 ▁ᎢᏯᏂᎵᏍ -12.9633 ᏂᎦᏘᎸᏒᎩ -12.9636 ᎤᏠᎠᏎ -12.9641 ᎵᎮᎵᎩ -12.9642 ▁ᎢᏨᎬᏍᎪᎸ -12.9643 ▁ᎠᏂᎦᎾᎦ -12.9647 ▁ᏚᎾᏕᏲ -12.9647 ᏫᏞᏫᏒ -12.9654 ᏒᏂᏉ -12.9658 ▁ᏂᏍᏆᏛ -12.9663 ᏓᏅᎡᎴ -12.9671 ᎵᏥᏙᏂᏙᎮ -12.9675 ᎳᏐᏫ -12.9678 ᏛᏅᏓᎩ -12.9679 ᏣᏖᏍᏗ -12.969 ᎾᏂᎩᏍᎬ -12.9697 ▁ᎤᏃᏙ -12.9703 ᎶᏁᏔᏅ -12.9707 ▁ᏥᏯᏘᏅ -12.9708 ᏔᎶᏎ -12.9715 ▁ᎢᏰᏨᏁ -12.9717 ▁ᏗᏥᎸᏫᏍᏓᏁ -12.9718 ▁ᎢᎬᏆ -12.9721 ᏎᎪᎩᏎ -12.9721 ᎵᏙᎩᏯᏍ -12.9721 ▁ᏁᏪᏎ -12.9727 ▁ᏭᏂᏌᏙ -12.9731 ▁ᏳᏂᏆᏘ -12.9733 ▁ᎦᏥᏯᏓᏙᎵᏍᏓᏁ -12.9734 ᎤᎴᏅ -12.9739 ᏛᏗᏕᎨ -12.9741 ▁ᎬᏩᎷᏤ -12.9747 ᎾᎵᏔᏗᏅ -12.9754 ᎾᏚᎪᏓᏁᏗ -12.9757 ▁ᏥᎦᏂᏱᏍ -12.9768 ▁ᎠᏁᎸᏗᏍ -12.977 ᏍᏆᏂᎪᏍᎨᎢ -12.9772 ᎾᎵᏍᏓᏁᎯ -12.9777 ᎫᎪᏓ -12.9778 ▁ᏭᏪᎧ -12.9781 ▁ᎠᏂᏍᎫᏕᏍ -12.9782 ▁ᏗᎤᎾᏨ -12.9785 ▁ᎠᎾᏗᏔᏍ -12.9788 ▁ᎠᏓᏅᏖᏙ -12.9789 ᏥᏔᏲᏎᎭ -12.9789 ᏦᎭᏴ -12.979 ᎦᏎᏍᏔ -12.9803 ᎩᏁᏤᏗᏱ -12.9805 ᏙᏍᏛᎢ -12.9808 ▁ᎯᏁᎢᏍᏗ -12.9808 ᎶᎻ -12.9817 ▁ᏍᎩᏰᎸᎾ -12.9819 ▁ᎠᎾᏓᏛᎥᏍ -12.9819 ▁ᏭᎾᎵᏱᎶ -12.9821 ▁ᏳᏞ -12.9823 ᏩᏗᏙᎸᎯ -12.9836 ▁ᎠᎫᏱᏍ -12.9846 ᎵᏎᎮᏍᏗ -12.9847 ᏍᎫᏕ -12.9848 ᎤᏂᎩᏛ -12.9849 ▁ᎫᏩᎾᏓ -12.9849 ᏎᎵᏙᎮ -12.9851 ᏗᎧᏁᏤ -12.986 ᎵᏘᎡ -12.9866 ᎶᏔᏂ -12.9866 ᏥᎶᏁᎥ -12.9871 ᏗᏩᏍᎬ -12.9873 ▁ᎬᏩᏘᎿᏫᏛ -12.9875 ▁ᏚᏔᎷᎩ -12.9879 ᏂᏆᏘᎴᎢ -12.988 ▁ᏭᏂᏍᏆ -12.9881 ᏍᏕᎵᏍᎨ -12.9881 ▁ᎤᎾᏕᏯ -12.9881 ᎵᎮᎵᏍᏗ -12.9884 ᏯᏓᏙᎵᏍᏓᏁ -12.9885 ▁ᏥᎦᏙᎥᎯᏍᏗ -12.9885 ᏕᏣᏓ -12.989 ᏍᎫᏓᏛ -12.9893 ▁ᏮᏓᏣᏘ -12.9897 ▁ᎢᏍᏓᏓᏅ -12.9901 ᏂᏣᏍᏛᎾ -12.9901 ▁ᏧᏯᏪ -12.9907 ▁ᏙᏓᎨᏥ -12.9912 ▁ᏍᏆᎫᏴ -12.9913 ᎬᏩᎶ -12.9915 ᎪᏓᏁᎸ -12.9927 ▁ᏓᏳᎾᏂᎩ -12.9928 ▁ᏣᎵᏂᎪᎯᏍᏗ -12.9928 ᎵᏃᎮᏙᏗ -12.993 ᎩᏯᏛᏁᎴ -12.9931 ▁ᎢᏣᎵᏍ -12.9934 ▁ᎩᏄ -12.994 ▁ᏚᎾᏚᏓ -12.9945 ᏓᏬᏍ -12.9951 ▁ᏧᏒᎦ -12.9955 ▁ᎤᎾᎵᏍᎪᎸ -12.9957 ᎵᏥᏆ -12.9957 ▁ᎠᏲᎯᏍᏗᏍ -12.996 ᏣᏘᏃᎦ -12.9966 ▁ᎨᎦᏓᏅᏖ -12.9966 ᏔᏩᏕᎩ -12.9968 ᎪᏓᏁᎭ -12.9971 ᏑᎦᏢ -12.9972 ᏄᎪᏫᏍᎪᎢ -12.9976 ᏰᎸᏍᎨᏍᏗ -12.9977 ᏯᎸᏅ -12.998 ᏴᎯᎰᎢ -12.9984 ᏝᏍᎨ -12.9987 ᎴᏴᏙᏗ -12.9995 ᏣᏗᏔᎯ -12.9995 ▁ᎤᎵᏍᏔ -12.9998 ▁ᏗᏣᏓᏙᏢᎾᏁ -13.0002 ▁ᏣᏁᏢᏔᏅ -13.0003 ᏥᏪᏍᏗ -13.0007 ᎪᏩᏛᏙ -13.0009 ᏓᎴᏛ -13.001 ᏓᎾᏓᏂᎸᎪ -13.001 ᎩᏪᏎᎭ -13.001 ▁ᏥᎦᏴᎵ -13.0011 ᏥᏲᎢᏎᎸᎭ -13.0017 ᎶᏔᏁ -13.0018 ▁ᏫᏚᏂᏴ -13.0023 ▁ᎤᎾᎦᏔᏅ -13.0028 ᏕᏋᎯᏍ -13.003 ▁ᏫᏕᎨᎦ -13.0032 ▁ᏕᎦᏃᏴ -13.0033 ᎱᏍᏕᏎ -13.0035 ▁ᏓᏜᏍ -13.0039 ᏂᏕᎦᏪᏎᎰ -13.0039 ᏛᎥᎦ -13.0043 ᏩᎾᎢ -13.0043 ᎵᏍᏗᏍᎨ -13.0048 ᎯᏯᏍᎬ -13.0048 ▁ᏴᏗᏓᎴ -13.005 ᏓᏥᎷᏥ -13.0052 ▁ᎤᏔᏍᎩ -13.0055 ▁ᏚᎷᎸ -13.0056 ▁ᎬᎩᎨᏳᎯ -13.0057 ᎶᎨᏒ -13.0059 ᏂᏍᎬ -13.0066 ᎤᎸᏛ -13.0073 ᏲᏏᏍᎩ -13.0073 ▁ᏥᎥᎡ -13.0075 ᏄᎪᏫᏍᎨᎢ -13.0077 ᏛᏣᏂ -13.0078 ᏓᏅᎡᎸᎩ -13.0081 Ꮬ -13.009 ▁ᎠᎬᏕ -13.0092 ᏲᎰᎢ -13.0093 ᏠᏒᎩ -13.0099 ᎧᏅᏑᎸᎢ -13.0099 ▁ᏱᏥᎨᏳ -13.01 ᏓᏂᎸᏨ -13.0102 ▁ᏕᎩᏲ -13.0103 ▁ᎤᎨᎯᏙ -13.0109 ▁ᏱᏚᎸᏫᏍᏓ -13.0111 ᏂᎦᏔᎲᏍᎩ -13.0113 ▁ᏍᏆᎦᏎ -13.0114 ᏂᏗᏍᏗᏱ -13.0114 ᏟᏍᏛᎢ -13.0116 ᏅᏩᏍᏙᎢ -13.0116 ᏓᎦᎵᏍᏔᏂ -13.0117 ᎬᏩᏓ -13.0123 ᏍᎦᎢᎲ -13.0124 ▁ᏄᎨᏳ -13.0125 ᏣᎵᏥᏙᎲᏍᎦ -13.0129 ᎬᏩᏍᏗᏉ -13.0133 ᎫᏰ -13.0133 ᎵᏂᎪᎯᏍᏗᏍᎨ -13.0134 ᏍᎦᏍᏙᏗᏍᎩ -13.0136 ▁ᎤᎾᏠ -13.014 ᏪᎵᏎᎴᎢ -13.0141 ▁ᏣᏓᎨᏳ -13.0141 ᏍᏓᏛᏓᏍᏓ -13.0147 ▁ᎤᏂᏅᎪ -13.0158 ▁ᏱᎬᏩᎾᏛ -13.0161 ▁ᏫᏚᎧ -13.0161 ti -13.0162 ▁ᏥᏥᏁᏤ -13.0163 ᏲᏌ -13.0163 ▁ᎢᏳᎾᎵᏍᏔ -13.0164 ita -13.0164 ᏪᏙᎥᎦ -13.0165 ᏖᏉᎶ -13.0168 ᎵᎪᏁᎯ -13.0173 ᎬᏩᎶᏓ -13.0175 ▁ᎢᏣᏗᎦᎴᏲ -13.018 ᎪᏄᎶᎯᏍᏗ -13.0183 ▁ᎬᏍᏗᏰ -13.0188 ▁ᏓᏨᏰ -13.0189 ᎨᎦᏓᎢᏅᏒᎩ -13.0195 ᎬᎩᎪᎵᏰᎥ -13.0198 ▁ᎬᏩᏄᏬᎯᏍ -13.0203 ▁ᎠᎩᏩᏛ -13.0204 ᎾᏁᎶᏛᎢ -13.0205 ᎵᎬᎾ -13.0206 ▁ᎦᎵᏥᏙᏂᏙ -13.0208 ▁ᏓᏆᏙ -13.021 ▁ᏧᎸᏉᏙ -13.0217 ᏓᎵᏁᎯᏕᎮᏍᏗ -13.022 ᏥᎤᏍᏕᏎ -13.0225 ▁ᎢᏓᏓᏅᏖᏍ -13.0225 ᏩᏍᎬᎩ -13.0233 ᏯᏒᎦᎶᏔ -13.0233 ▁ᎬᏇᎯᏍᏗ -13.0237 ᏔᎳᎧ -13.024 ᏍᏕᎸᏙᏗ -13.0242 ▁ᏯᎵᏍᏓᏴ -13.0244 ▁ᏥᏦᎯᏳ -13.0245 ᏥᎾᏰᏍᎩ -13.0249 ▁ᎤᏍᏆᏕ -13.0253 ᎾᏗᏔᎮᎢ -13.0256 ᏃᎮᎮᎭ -13.0258 ᎾᏂᎩᏍᎨ -13.0259 ▁ᏫᏄᏂᏪ -13.0259 ▁ᎦᎨᏣᏕᎶ -13.0269 ᎩᎵᏲᎢᏍᏗᏍᎨᏍᏗ -13.027 ▁ᎤᎵᏱᎶ -13.027 ▁ᏚᎦᏙᏍ -13.0274 ᏍᎩᏍᏕᎸᎡᎸ -13.0274 ▁ᏂᏚᏲ -13.0275 ᏁᏓᏍᏗ -13.0276 ᏁᏦᏅ -13.0276 ᏓᏡᏩᏍᏗᏕ -13.0282 ▁ᎢᏗᎦᏲ -13.0283 ▁ᏗᏂᏍᎪᏂ -13.0284 ▁ᏱᏚᏂᎶ -13.0293 ▁ᎠᏂᏬᏂᏍᎨᏍ -13.0294 ▁ᏣᏍᏆᏂᎪᏕ -13.0295 ᏒᏂᏍᏗ -13.0298 ᏂᏣᏛᏅ -13.0299 ▁ᎤᏑᏯ -13.0311 ▁ᏚᏄᎪ -13.0315 ᎵᏖᎸᎮ -13.0319 ▁ᎡᏥᏃᎮ -13.0319 ᏂᎨᎬᏁᎭ -13.0323 ▁ᎤᎾᏓᏎᎪᎩ -13.0324 ▁ᏥᏂᏣᏛ -13.0324 ▁ᎠᏆᎵᏍᏚ -13.0326 ▁ᎠᎾᏚᏓ -13.0328 ᏂᏨᏛ -13.0329 ▁ᎤᏄᎪᏫᏒ -13.0331 ᏓᎩᏯᏪ -13.0333 ▁ᎢᏣᎵᏍᎦᏍᏙ -13.0337 ▁ᏕᏥᎦᎿᏩᏕ -13.0338 ᏒᏍᏓᏁᎸ -13.0341 il -13.0341 ᏲᏨᎯ -13.0343 ᏁᎵᏒ -13.0344 ▁ᎤᏓᏌᎧ -13.0347 ▁ᏯᏍᎦᎢ -13.0349 ᏔᎳᏬᎯᏍ -13.0354 ▁ᎯᏍᏕᎸ -13.0355 ᏩᏁᎵ -13.0355 ᏥᏍᏆᏛ -13.0356 ᏣᎵᏃᎮᏗ -13.0358 ▁ᏕᏥᏍᏚ -13.0361 ᏌᏓᏗᏍᏗᏱ -13.0363 ▁ᏗᎬᏆ -13.0366 ▁ᏣᏛᏍ -13.0368 ▁ᎡᏣᏡ -13.0374 ▁ᎬᎦᏔ -13.0375 ▁ᎤᏕᏔ -13.038 ▁ᎤᎾᏓᏛᏛ -13.0381 ▁ᎤᎦᎿ -13.0382 ᏍᏆᏕᎴᎢ -13.0385 ▁ᎢᏣᎵᏍᎪᎸᏔ -13.0386 ᏯᎫᏴᏗ -13.0387 ᏣᏪᏐᎸᏍᏔ -13.0387 ▁ᎠᎵᏱᎶ -13.0388 ᎾᏕᎶᏆᏍ -13.0389 ᏲᏓᏝ -13.0394 ▁ᎠᎾᎵᏍᏕ -13.0397 ▁ᏱᏗᏣᏓᏂᎸ -13.0398 ▁ᎥᎬᏩᏛ -13.0398 ᏥᎶᏄᎮ -13.0401 ▁ᎤᎪᏄᎶ -13.0402 ᏯᏫᏍᎩ -13.0405 ▁ᎨᏥᏍᏛᏗ -13.0406 ᎬᏩᏓᏙᎵᏍᏓᏁ -13.0409 ᏍᏓᏩᏕ -13.0411 ▁ᏕᏣᏓᏲ -13.0411 ▁ᎠᏕᎶᎰ -13.0414 ▁ᎢᏣᎵᏩᏛᎡ -13.0421 ▁ᏳᏭ -13.0427 ▁ᏂᏕᎤᏩ -13.0428 ᏅᏍᎨᏂ -13.0432 ▁ᎠᎩᏲᏍᏙᏓ -13.0433 ▁ᎢᏥᎧᎵᎢᏍ -13.0434 ▁ᎢᎩᏴᏁ -13.0435 ᏙᏑᎴ -13.0439 ᏂᏲᎱᎯᏍᏗ -13.0442 ▁ᏚᏲᎮ -13.0447 ▁ᏱᏓᎾᎵ -13.0451 ▁ᎬᏩᏂᎷᏤ -13.0451 ▁ᏥᎾᏋ -13.0459 ᏁᎰᎾ -13.0459 ᏣᏓᏄᏴᏗ -13.046 ᏚᎴᏔᏁᎢ -13.0462 ᎾᏏᏛᏂ -13.0465 ᏪᏐᏨ -13.0467 ᏆᏟᏃᎮ -13.0467 ᏗᎦᏲᏥᏁ -13.0468 ▁ᏚᏩᏅ -13.0469 ᏨᎨᏫᏍ -13.0469 ᏲᎵᎮᏍᏗ -13.0469 ᏅᎦᎸᏙᏗᏱ -13.0471 ᎴᎯᏌ -13.0476 ᏕᎯᎮᏍᏗ -13.0478 ᏚᏓᏕᏫ -13.0478 ▁ᎨᏯᏔ -13.0478 ▁ᎠᏁᏙ -13.0479 ᏄᎳᏍᏓᏁ -13.048 ▁ᏄᎫᏴ -13.0481 ᏑᏴ -13.0483 ᏙᎯᏗᏍᏗ -13.0483 ▁ᏥᏄᏪ -13.0484 ᎵᎮᎵᏤᏗᏱ -13.049 ᏓᎴᎾ -13.049 ᏥᎤᏍᏕᏎᎴ -13.0494 ᏨᏁᎵ -13.05 ▁ᎢᏥᎧᎵ -13.0501 ▁ᏗᏍᏔᏲ -13.0502 ᏬᏁᏗᎭ -13.0502 ᏫᏎᎲᎢ -13.0504 ᏚᏂᏩᏛᎮ -13.0505 ᎵᎬᏚ -13.0506 ᏚᏒᏂᎴ -13.0508 ▁ᎢᏤᎳᏗᏍᏗ -13.0508 ᏙᎵᏍᏔᏂ -13.051 ᎦᏚᎵᏍᎬ -13.0512 ▁ᎢᏥᏍᏓᏩᏗ -13.0514 ▁ᏥᎾᏂᏪ -13.0515 ᎦᏘᎸᏍᏗ -13.0518 ▁ᏅᏓᏳᎵᏍᏙ -13.0521 ᏅᎦᎸᏓ -13.0522 ᏌᏓᏛᎩ -13.0525 ▁ᎥᏆᏒᎦᎶ -13.0527 ▁ᏧᎾᏗᏔᏍ -13.0528 ᎦᏑᏯᎩᏍᏗ -13.0529 ▁ᎤᏓᏃᏴᎵ -13.0534 ▁ᎱᏚ -13.0537 ᏨᏯᏍᏗ -13.0538 ᏂᎷᎨᏍᏗ -13.0539 ▁ᏍᏆᏛᏅᎢᏍᏓ -13.0539 ᏣᎵᏍᎪᎸᏗᏍᎬᎢ -13.054 ᏬᎵᏤᎢ -13.054 ᏯᏂᏍᎪ -13.0542 ᎨᏣᎵᏍᏚ -13.0543 ᏖᎸᏅᎩ -13.0545 ᏄᏪᏎᎴᎢ -13.0547 ▁ᏦᏥᎨ -13.0549 ▁ᎪᎯᏳᏙ -13.0551 ᏍᏕᏓᎵᏴᏍᎬ -13.0552 ▁ᎤᏂᎨᎲ -13.0553 ᏃᎯᏴᎯ -13.0554 ▁ᎠᏂᎬᎭᎷᏯᏍ -13.0555 ᎪᎳᏅ -13.0556 ▁ᎤᏍᏆᏙ -13.0556 ▁ᎠᏆᎵᏃᎮ -13.0558 ᎳᏛᎥᏍᎬ -13.056 ᏲᎲᎦ -13.0562 ᏈᏗᏍᎩ -13.0564 ᎤᏪᎳᏗᏍᏗ -13.0566 ▁ᏭᏅᏍ -13.0567 ᎦᏘᏗᏍᏔᏁ -13.0568 ᏱᎵᏙᎲ -13.057 ᏐᏈᎸᎦ -13.057 ᏚᏂᎰᏁ -13.0571 ᎨᎦᏗ -13.0572 ᏥᏃᏁᎭ -13.0574 ▁ᎢᏍᏗᏴ -13.0579 ▁ᏣᎾᏄᎪᏫᏎ -13.0579 ᏆᎵᏍᏓᏁ -13.058 ▁ᏂᏣᏚᎵ -13.0583 ▁ᏫᎬᏪᎧ -13.0583 ▁ᏥᏯᏚᎸᎡ -13.0586 ▁ᏱᏩᏂ -13.0586 ▁ᎤᏓᏓᎴᏔ -13.0588 ▁ᎤᏃᏣ -13.0591 ▁ᎤᎶᏄᎮ -13.0592 ᎦᏠᏯᏍᏗ -13.0595 ▁ᎤᎵᎪᎾ -13.0599 ᎵᏍᏓᏴᎲᏍᎩ -13.06 ▁ᎬᏯᎫᏴ -13.0605 ᎦᏙᎠᏍᎪ -13.0605 ▁ᏓᏩᏛᎯ -13.0608 ▁ᏓᏍᎩᏅ -13.0608 ᏃᏟᏍ -13.0609 ▁ᏗᎬᏩᎾᏁᎶ -13.0612 ▁ᎬᎩᎦᏔ -13.0612 ▁ᎨᏥᏌᎳ -13.0613 ᏂᏏᏂᏙᎸᎢ -13.0618 ▁ᏄᎾᏚᎵ -13.0619 ᏢᏍᎪᎢ -13.0627 ᏅᏍᎦᏝᏁ -13.0629 ᏔᎶᎯᏍᏗ -13.063 ▁ᏱᏣᏓᏅ -13.0632 ▁ᎤᎾᏁᎶ -13.0632 ᎦᏄᏓᏛ -13.0633 ᏆᎧᎾᏅᎩ -13.0634 ᎳᎾᎶ -13.0635 ᏉᏗᏳ -13.0636 ᎨᏥᏄᏬ -13.0637 ᏓᏁᏥᏴ -13.0639 ᏰᏥᏍᎨ -13.0644 ▁ᏤᏦ -13.0644 ᎯᎦᏔᎮᎢ -13.0644 ᏏᏔᏓ -13.0645 ᏲᎤᎴ -13.0646 ▁ᎠᏆᏡᏗᏍ -13.0648 ᏚᏂᏍᏗᏰ -13.065 ᏑᎳ -13.0652 ▁ᎦᎵᏥᏙ -13.0652 ▁ᏱᏅᏗᎦᎵᏍᏙ -13.0654 ▁ᎤᏂᎭᏲ -13.0654 ᏎᎵᏔᏅ -13.0655 ᎷᏫᏍᏔᏁᏗ -13.0656 ▁ᎤᏰᏌ -13.0658 ▁ᎣᎦᏢ -13.066 ▁ᏗᎫᎪ -13.0662 ▁ᏧᏛᎯᏍ -13.0662 ᎾᏘᏃᎮᎴ -13.0663 ▁ᎤᏃᏕ -13.0665 ᎭᏫᏂ -13.0667 ᏓᏙᏢᎾᏁ -13.0669 ᏓᏅᏖᎮᎸ -13.067 ▁ᎢᏤᎳᏗ -13.0674 ᏙᎯᎮᏍᏗ -13.0677 ᎵᏂᏆᏅ -13.068 ᏅᏩᏁᎢ -13.0682 ▁ᎠᎾᏕᏯ -13.0695 ▁ᎤᏓᏍᏕ -13.0699 ᎩᏰᎸᏎᏍᏗ -13.0703 ᎪᏓᏁᏗᏱ -13.0703 ▁ᎤᏃᎯᏎ -13.0705 ᎬᏆᎵᏍᏓᏴᎾᏁ -13.0706 ᎨᏳᏔᏅᎩ -13.071 ᏍᏔᏁᎸ -13.071 ▁ᎯᏯᎵᏍᎪᎸ -13.0713 ᏲᎵᏳ -13.0713 ᎨᎯᏙᎰ -13.0713 ▁ᏱᏗᏥᏯᏅ -13.0716 ᏖᎸᎲᏍ -13.0721 ▁ᏗᏂᏓᎭ -13.0722 ᏃᏟᏍᏔ -13.0723 ᏓᎭᏲᎯ -13.0726 ᎦᎴᏴᏓ -13.0727 ▁ᎤᏂᏁᏟᏴᏍ -13.0727 ▁ᏫᏣᎦᏔ -13.0727 ᏚᎸᏗᏉ -13.0728 ᎦᏥᏯᏠᎢᏍᏓᏁ -13.0729 ▁ᎦᏥᏯᏓᏙᎵᏍ -13.073 ▁ᎡᏙᎢᏳ -13.0731 ▁ᏕᏥᎧᎿᏩ -13.0732 ᎦᏠᏯᏍ -13.0733 ᏑᎳᏁ -13.0735 ▁ᏥᏂᏕᎬ -13.0737 ᏍᎩᎾᎩᎢ -13.0738 ᎵᏍᏔᏴ -13.0739 ᏩᏗᏓᏍᏗᏱ -13.074 ᏓᏩᏛᎡ -13.074 ▁ᏧᎨᏳ -13.074 ▁ᏣᎩᎵᏲᎢᏍᏗ -13.0741 ▁ᎤᎾᏅᎪ -13.0741 ᎾᏛᎦᏁᎢ -13.0745 ᎪᎥᏍᎦ -13.0746 ᎾᏓᏅᏘ -13.0747 ᎵᏬᏦ -13.0747 ᏗᏍᎦᏢᎢ -13.0749 ᏣᎧᎲ -13.0749 ᏙᏔᏘᎾᏫᏛ -13.0751 ▁ᎢᏣᏓᏅᎡ -13.0755 ᏂᎦᎵᏍᏙᏗ -13.0755 ▁ᎤᏃᎯᏳ -13.0757 ▁ᏧᎾᏘᏃ -13.0764 ᎵᏍᏓᏁᎰ -13.0769 ᎫᏏᏲ -13.077 ᏅᏆᎶᏍᏗ -13.0774 ▁ᎤᏂᏍᎫᏕ -13.0775 ▁ᎤᏁᎷ -13.0776 ᏚᏅᎦᎸᎡ -13.0778 ᎬᏑᎶ -13.0782 ᏟᎶᎥᎩ -13.0785 ᏥᏍᎦᏅᏤᎲ -13.0786 ▁ᏚᏓᏁ -13.0791 ᏛᏓᏍᏓᏁ -13.0791 ᎾᏓᏁᎳᏁ -13.0792 ᏄᎾᎵᏍᏓᏁᎰ -13.0795 ᏲᎢᏍᏗᏱ -13.0797 ▁ᏚᏕᏲ -13.0798 ▁ᎦᏂᏏᏅ -13.08 ᎵᏍᏔᏴᏅ -13.0802 ▁ᏣᏁᎸᏔᏅᎯ -13.0804 ᎫᎪᏓᏏ -13.0804 ᏖᎸᎲᎦ -13.0804 ᏗᏐᎢᏃ -13.0805 ᏚᏫᏛ -13.0806 ▁ᎣᎦᏂᎩ -13.0807 ᎠᎯᏎᎸ -13.0807 ▁ᏚᏂᎸᏫᏍᏓᏁ -13.0808 ᏠᏆ -13.0808 ᎦᏪᏍᏗ -13.0809 ᎫᏴᎯᏓᏍᏗ -13.0812 ᏣᏪᏎᎭ -13.0813 ▁ᏗᎬᏬ -13.0815 ▁ᏚᏕᏯᏙᏔ -13.0816 ▁ᎣᏣᎵᏥᏙ -13.0818 ▁ᏕᎧᏁᎢᏍ -13.0819 ᏕᏦ -13.0819 ᏓᎩᏅᏎᎢ -13.082 ▁ᏳᏂᎪ -13.0821 ᏖᏥ -13.0831 ᏗᎨᏥᎤᏍᏕᏎᎸ -13.0836 ▁ᎤᎾᎦᎸ -13.0836 ▁ᏣᎩᏁᏤ -13.0839 ᏓᏙᎵᏍᏗᏍᎨᏍᏗ -13.0842 ▁ᎤᎷᏥᏗ -13.0842 ᏋᏁᎸ -13.0843 ᏢᎾᏁᎸᎩ -13.0845 ᏥᏍᏕᎸᎮᎢ -13.0847 ᏛᏂᎡ -13.0849 ᏲᎱᏏ -13.085 ▁ᏙᏓᎨᏣ -13.0851 ᏐᏢᏕᏍᏗ -13.0851 ᎫᏴᎡᎵ -13.0851 ᏥᏬᏂᎭ -13.0851 ᎾᏂᏢᏅ -13.0852 ᏣᏓᏅᏛᎩ -13.0853 ᏅᎦᎸᎲ -13.0853 ᎩᏍᏆᎵᏍ -13.0853 ᏭᏢᏅ -13.0854 ᏗᏣᎵᏘ -13.0854 ▁ᏂᏑ -13.0856 ᎦᏛᎯᏍᏗ -13.0856 ᏓᏂᎸᏥ -13.0857 ▁ᎤᏂᎦᏙᎥ -13.0858 ᏍᎩᏴᎦ -13.0859 ᏓᏅᏙᎩᎯ -13.0863 ▁ᎤᎦᏴᎵ -13.0864 ᏇᏲ -13.0865 ᏘᎾᏫᏛᎮᎢ -13.0866 ᎧᎿᏅ -13.0868 ᎤᎦᏎ -13.0874 ᎩᏃᎮᎮ -13.0875 ▁ᎭᏂᎧᏔ -13.0875 ᏍᏚᏤ -13.0877 ᎧᎲᏒ -13.0879 ▁ᎤᎾᎵᏍᎦᏍ -13.088 ▁ᎠᏲᎯᏍ -13.088 ᏓᏥᏯᎧᏂ -13.0882 ▁ᏱᏚᏩᏛ -13.0883 ▁ᏗᎨᏥᏍᏚ -13.0892 ᏓᎢᏅᏗ -13.0894 ᎲᏍᏗᏍᎩ -13.0895 ▁ᎠᏓᏅᏓᏗᏍ -13.0896 ᎤᎾᏙ -13.0897 ᎢᏥᏗᏱ -13.0898 ᎦᏓᏅᏖᏍᎨᎢ -13.09 ᎾᏙᎴᎰᎯ -13.0903 ▁ᎠᎪᏩᏗᏍ -13.0904 ᏁᎬᏁ -13.0906 ᏯᏛᏁᎭ -13.0906 ᏍᏛᎦᎸ -13.0908 ᏰᎪᎢ -13.0908 ᏍᎦᏤ -13.0908 ᎤᏰᎸ -13.0909 ᏔᏂᏙ -13.091 ▁ᏕᎦᏠ -13.0912 ▁ᎡᏣᏛᎦᏁ -13.0916 ▁ᎠᎵᏖᎸ -13.0916 ▁ᎤᏕᎶᎰ -13.0918 ᎩᏥᏍᎨᎢ -13.0921 ᎨᏥᎪᎵᏰᏍᎨ -13.0923 ᎵᏍᎪᎸᏓᏁᎭ -13.0924 ▁ᏚᏍᎫᏓ -13.0925 ▁ᎤᎴᏴ -13.0929 ᎵᎥᏂᎲ -13.0929 ᏯᏅᎡᎸ -13.093 ᏬᏂᏒᎢ -13.0932 ▁ᎤᏪᏯᏔ -13.0932 ▁ᏧᏠᎯᏍ -13.0932 ▁ᎤᏁᎵᏌ -13.0934 ᏳᎨᏗ -13.0937 ᎾᎵᎮᎵ -13.0938 ▁ᏴᏓᏲ -13.0938 ᎧᎲᎾ -13.0945 ▁ᏯᎴᏫᏍ -13.0945 ▁ᏧᏃᎯᏎ -13.0946 ᎦᏢᏆ -13.0947 ᏍᏓᎵᎪ -13.0947 ᏕᏯᏙᏔᏅ -13.0949 ᏥᎦᏌᎢ -13.0949 ▁ᎤᏲᏍᏙᏓᏁ -13.095 ᎠᏍᎪᎸ -13.095 ᏞᏌ -13.0952 ▁ᏫᎦᏥᎷᏤ -13.0954 ᎦᏂᎭ -13.0955 lia -13.0956 ᎵᏂᏆᏅᏅ -13.0956 ▁ᏕᎯᎶᏁ -13.096 ▁ᎣᎩᎾᏚ -13.0961 ᎬᏩᏂᎷᏤᏗ -13.0962 ▁ᏕᎤᏙ -13.0969 ᏗᎴᎲᎯ -13.0972 ▁ᏗᎦᏃᏣ -13.0972 ▁ᎯᏲᎢᏳ -13.0973 ᏥᏄᏬ -13.0975 ▁ᎤᏂᏄᎪ -13.0976 ᎬᏩᏰᏣᏍ -13.0981 ᎫᎯᏍᏗ -13.0984 ▁ᏗᎦᎸᏫᏍᏓ -13.0986 ▁ᏥᏨᏲᏪ -13.0988 ▁ᎠᎾᏓᏴᎳ -13.0988 ▁ᏧᏲᎱᎯᏎ -13.0991 ᎵᏍᏆᏕᎴ -13.0991 ᏠᏱᎲᎢ -13.0992 ᎧᎿᏩᏗᏙᎯ -13.0994 ᏟᏃᎮᏙ -13.0996 ▁ᎤᏪᎿ -13.0998 ▁ᎤᎾᏅᏓᏗ -13.0999 ᏣᏱᎵ -13.0999 ▁ᏨᏓᏥ -13.1001 ᎣᏣᏂᎩ -13.1001 ᏲᏤ -13.1001 ᏕᏥᏰ -13.1006 ᏍᏗᏴᎸ -13.1006 ᏓᏅᏖᎵᏙᎸ -13.1007 ▁ᏨᏓᏣ -13.1007 ᏯᎵᏍᎪᎥ -13.1008 ᏓᎪᏄᎶᎯ -13.101 ▁ᏄᏍᏆᎸ -13.101 ᎵᏍᏔᏁᎳ -13.101 ᏪᎵᏎᏗ -13.101 ▁ᎣᎦᏅᏔ -13.1011 ▁ᏩᏇ -13.1012 ᏛᏛᎮᎸ -13.1013 ᎵᎮᎵᎬ -13.1015 ᎠᏥᎪᏅ -13.1015 ▁ᎠᏓᏩᏛ -13.1016 ᏥᎪᏁᎸ -13.1018 ᏃᎮᏍᎨ -13.1019 ▁ᏧᎾᏛᏛ -13.1019 ᏄᎪᏫᏍᎩ -13.102 ᎦᏐᎠᏏ -13.1022 ▁ᎤᏓᏓᏍ -13.1024 ᎳᏗᏙᎴ -13.1026 ᏣᎴᏂᏙᎲ -13.1028 ᏓᏩᏛᎡᎲ -13.1029 ▁ᏗᏣᏓᏙᎵᏍ -13.1029 ▁ᏓᏍᏚ -13.103 ᏓᏂᏂᏏᏍᎨ -13.103 ▁ᎠᏟᏂᎬ -13.1034 ▁ᏂᏕᎦᏪ -13.1034 ᎩᏴᏁᎸ -13.1036 ᏙᎵᏣᏘᏳ -13.1038 ᎨᎳᏗᏙᎮ -13.1038 ᎦᏃᏣᎸ -13.1039 ▁ᏳᏬᏢ -13.1039 ᎵᎡᎵᏤᎰ -13.104 ▁ᏫᏨᏲᏪ -13.104 ▁ᏚᏂᏯᎣ -13.1041 ᏕᎧᏁᏤᎮ -13.1041 ▁ᏦᎢᎦᏚ -13.1042 ▁ᏕᎬᏩᏄ -13.1045 ᏅᎪᎣ -13.1046 ▁ᏚᏪᎵᏎ -13.1046 ▁ᏚᏑᏰ -13.1048 ▁ᏚᏪᏟᏌ -13.1051 ▁ᎠᏁᎷᎲᏍ -13.1052 ᏓᏅᏓᏗᏍᏔ -13.1054 ᎨᏫᏒᎭ -13.1056 ᎾᏁᎷᎩᎡᎴ -13.1057 ᎸᎥᏍᎨᏍᏗ -13.1058 ᏰᎵᎯᏍᏔᏅᏃ -13.1059 ▁ᎤᎾᏁᎷᎩ -13.106 ᏳᏓᏍᏙᏗ -13.1064 ▁ᏫᏗᏨ -13.1064 ᎤᎷᏤᎴᎢ -13.1064 ▁ᏧᏂᎸᏫᏍ -13.1065 ▁ᏚᏓᏅᎡᎸ -13.1069 ▁ᏧᎦᎿ -13.1069 ᏚᏅᏂ -13.1069 ᏁᏙᎴᎢ -13.107 ᎪᏆᎵ -13.107 ᏳᎪᏓᏁᏗᏱ -13.1072 ▁ᎤᎵᏰᏑᏍᏙ -13.1072 ᏓᏳᏅᏏᏛ -13.1072 ᏌᎹ -13.1073 ᎾᏤᎵᏛ -13.1074 ▁ᏚᏂᏟᏌ -13.1074 ▁ᎠᎪᏍᏓ -13.1075 ▁ᏚᏂᏬ -13.1076 ᎵᏠᏯᏍᏙᏗ -13.1078 ᎾᏦᎥ -13.1079 ᏪᏯᏗ -13.108 ᏂᏃᎮᏍᎪ -13.1081 ▁ᎠᏓᏍᏔᏴ -13.1082 ᏍᎦᏍᏙᏙ -13.1082 ▁ᏄᏂᏍᏓ -13.1083 ▁ᏱᏂᏣᎵᏍᏓ -13.1084 ▁ᏬᎶ -13.1085 ᏐᎲᏍᏗᏱ -13.1085 ▁ᎬᏩᎪᏁᎶᎯᏎ -13.1086 ▁ᏩᏂᏁ -13.1086 ᎾᎵᏥᏙᏂᏙᎸ -13.1086 ᏣᏛᏓᏍᏓ -13.1087 ᏆᏛᏓᏍᏓᏏ -13.1087 ᎦᏯᎷ -13.1088 ᏐᏢᏔᏁᎢ -13.1089 ᏰᎢᎶᎯᏍᏗ -13.109 ᏰᎸᎾᏁᎴ -13.1091 ▁ᎠᏂᎦᏲᎵ -13.1092 ▁ᏗᎬᏩᏲᎯ -13.1093 ▁ᎠᏓᏍᏕ -13.1093 ▁ᎬᏉᎯᏳ -13.1094 ᎦᎷᎪᎢ -13.1095 ᏖᎸᏂᏍᏗ -13.1096 ᎨᏣᏲᏎ -13.1096 ᏂᏣᏓᏛᏁ -13.1097 ▁ᎦᎾᏰᎯᏍ -13.1098 ᏚᎬᎭᎷᏰ -13.1099 ▁ᎦᏥᏁᎢᏍ -13.1102 ᏘᏙᎵ -13.1102 ᎦᎬᏲᎯ -13.1104 ᏗᏤᏲᎲ -13.1104 ▁ᏱᏅᎨ -13.1108 ᎡᏣᏘᎾᏫᏛ -13.1108 ▁ᎠᎦᎵᏍᎪᎸ -13.111 ▁ᎠᎾᏓᏌ -13.1111 ᎵᏲᎢᏍᏗᏱ -13.1113 ᏕᎦᏂᏱ -13.1113 ▁ᎠᎦᎵᎮ -13.1115 ᏆᎸᏕ -13.1117 ᎾᎵᏍᏓᏴ -13.1117 ▁ᎨᎦᎫᏴ -13.1118 ᏕᏍᎩᏯᎧ -13.112 ᏧᎾᏓᎴᏁ -13.112 ᏂᏐᏢᏗ -13.1121 ▁ᏕᎬᏩᎾᏢ -13.1122 ▁ᎠᏐᏢᎢᏍ -13.1122 ᏥᏲᎯᏍᏓ -13.1123 ▁ᏫᏚᎾᎧᎿ -13.1125 ᏟᏴᏍᎩ -13.1126 ▁ᏓᏂᏍᏕ -13.1127 ᏳᎾᏄᎪᏨ -13.1128 ▁ᏚᎾᏓᏛᏛ -13.1128 ▁ᎧᏃᎩᏍ -13.113 ᏁᎩᏴ -13.1131 ᏱᎵᏒᎢ -13.1131 ᏨᏁᎲ -13.1132 ▁ᎠᎵᏏᎾ -13.1132 ᏃᎦᏛᎿᏕ -13.1133 ▁ᎤᏩᎾᏬ -13.1133 ▁ᎢᏨᎨᏳ -13.1134 ▁ᏳᏫᏗᏣ -13.1135 ᏍᏕᏓᎵᏴᏓ -13.1135 ▁ᏱᏗᎬᏕ -13.1135 ᏲᎱᏒ -13.1136 ▁ᏕᏥᏅᎦᎵᏍ -13.1136 ▁ᏚᏄᎪᏫ -13.1137 ᏥᎶᎢ -13.1137 ▁ᏄᏍᏚ -13.1138 ᏯᏠᎢ -13.1138 ▁ᏥᏙᏓᏨ -13.1138 ᏭᏂᎷᏤ -13.1139 ▁ᏓᏆᎧᎾ -13.1139 ᏬᏎᎴᎢ -13.1141 ᏆᏂᎩᏒ -13.1142 ᎾᏓᏬ -13.1142 ᏕᏣᎵᏂᎬ -13.1143 ▁ᏂᏕᎩᎾ -13.1143 ᏚᏭᎪᏔᏁ -13.1144 ᏨᏃᏁᎸ -13.1145 ᎩᎳᏫᏒ -13.1145 ▁ᎠᎾᏗᏒ -13.1147 ▁ᎤᏩᏴ -13.1147 ᎦᏩᏙᎣᏍ -13.1147 ᎵᏈᏱ -13.1148 ▁ᎤᎾᏓᏅᎦ -13.1148 ᏰᏍᎪᎢ -13.1148 ᏓᏓᎴᏔᏅᎯ -13.1148 ᏩᏅᏁᏗ -13.1149 ᏣᏕᏲᏗ -13.115 ᏬᏰᏂ -13.1151 ▁ᏥᎨᎦᏛᏅᎢᏍ -13.1152 ᎵᏍᏔᏴᏗ -13.1152 ᏄᏅᏁᎴ -13.1152 ▁ᏱᏚᎾᏄ -13.1154 ᏍᏆᏂᎩ -13.1157 ᎤᏛᏁ -13.1158 ᏓᎬᏍᎪᎸᏗ -13.1159 ▁ᏓᏟᎶ -13.1159 ᎯᏳᎪᏓᏁᎭ -13.1159 ᎾᎦᎸᎲ -13.1159 ᏍᏆᏗᏍᎬ -13.1159 ᏥᎬᏍᎪᎸᎥᏍᎨᏍᏗ -13.1159 ▁ᎤᎾᏕᎶᎰ -13.1162 ▁ᎤᏂᎵᏰᏗᏍ -13.1162 ▁ᏚᏂᏔᎳ -13.1163 ▁ᏄᎵᏍᏔ -13.1165 ▁ᏚᏃᏣᏝ -13.1166 ▁ᎠᎩᏍᏓᏩ -13.1166 ▁ᎠᏋᏕ -13.1166 ᏴᎦᏥ -13.1166 ᏗᎨᎦᏨᏍᏔ -13.1167 ᏍᎩᏯᏓᏂᎸᏨ -13.1168 ᏓᏁᎸᎥᏍᎬ -13.1168 ᎬᏁᎮ -13.1168 ᎯᏳᎭᏧ -13.1169 ᏬᎳᏕᏍᎬ -13.117 ▁ᎠᏥᎵᎥ -13.1172 ᏚᏫᏍᏔᏁᎢ -13.1174 ᏟᏃᎮᏔ -13.1175 ᏴᏕᏥ -13.1176 ᏗᏨᏁ -13.118 ᎦᎾᏍᏓ -13.118 ᏗᎦᎧᎯᏯᏍ -13.118 ▁ᏕᎭᏓᏅ -13.118 ᎩᎦᎨᎢ -13.1181 ▁ᏏᏴᏫ -13.1182 ▁ᏧᏛᎦᏁ -13.1182 ▁ᏂᏥᏍᎦ -13.1182 ▁ᎤᏂᏃᎮ -13.1185 ᏲᎢᏍᏗᏍᎬᎾ -13.1185 ᏄᏢ -13.1186 ᏣᎵᎮᎵᏍᏗ -13.1186 ᏓᎨᏨᏁᎵ -13.1188 ᏓᏴᎳᏘ -13.1188 ᎬᏃᎯᏎ -13.1189 ᎾᎵᏍᏔᏅᎢ -13.119 ᏜᏅᏓ -13.119 ᎩᏂᎬᏎᎲ -13.119 ▁ᎠᎵᏌᎳᏗᏍ -13.119 ▁ᎤᏔᎷ -13.1191 ᏰᎢᎶᎦ -13.1193 ᏘᎸᏍᏗ -13.1195 ᎾᎦᏙᏍᏔᏁ -13.1195 ▁ᏗᎦᏁᏟ -13.1195 ▁ᎤᏩᏇ -13.1195 ᎾᏙᎴᎰ -13.1196 ᏕᎰᎯᏍ -13.1198 ▁ᏫᎤᎾ -13.1198 ▁ᎤᏗᏔ -13.12 ▁ᏧᏯᏛ -13.1201 ᎬᏩᏪᏎ -13.1201 ᏃᏍᎩᏒ -13.1201 ᏖᎸᏅᎯ -13.1202 ▁ᏭᏓᎾᏫᏛ -13.1202 ᎧᎿᏩᏛ -13.1202 ᏣᏍᏆᏂᎪ -13.1204 ᏓᎵᏗᎩ -13.1205 ᏗᏩᎾᎦᎳ -13.1205 ᏰᏫ -13.1205 ▁ᎾᎾᏓᏛ -13.1206 ᏥᏳᎪᏓᏁᎭ -13.1206 ᏣᏙᎴᎰᏍᎬ -13.1207 ᏒᏍᏔᏁ -13.1207 ᏧᎵᏍᏙᏔᏅ -13.1208 ᎬᏭᎪᏓᏁ -13.1209 ᎵᏣᏛᎾ -13.121 ᏓᎦᎴᏅ -13.1212 ᎦᏖᏅ -13.1212 ▁ᎤᏪᏔ -13.1213 ▁ᏚᏩᏥᏍ -13.1213 ▁ᎤᏅᎪᎳ -13.1214 ᏥᎩᎵᏲᎦ -13.1214 ▁ᏧᏣᎷ -13.1215 ᏯᎧᏁ -13.1215 ▁ᏱᏚᏬᏕ -13.1216 ᏍᏓᏴᏅᎩ -13.1216 ᏤᎦᏈ -13.1217 ᏍᎩᏯᏑᏰ -13.1217 ᏚᎸᏫᏍᏓᏁ -13.1217 ᎾᏍᏗᏍᎬᎩ -13.1217 ᏕᎬᏩᏂᎾᏝ -13.1218 ▁ᎤᏓᎬᏩᏓᎴ -13.1219 ᏛᎮᏏ -13.1219 ▁ᎤᏙᏯᏅᎯ -13.122 ᎤᏁᏅ -13.122 ᎦᏥᏄᎪᏫᏒ -13.1221 ᏯᏏᏔ -13.1221 ᏥᏙᎰ -13.1222 ▁ᏫᏛᏂ -13.1222 ᎡᏝᏪ -13.1222 ▁ᏥᏯᎵᎡᎵ -13.1222 ▁ᎨᎦᏅᏓ -13.1223 ᏍᏙᏰᎲ -13.1223 ᏒᎦᎳᏗᏍᏔ -13.1223 ▁ᏓᏳᏂᏰ -13.1223 ᎤᏂᎶᏎᎢ -13.1225 ▁ᏚᏄᏩ -13.1226 ▁ᏭᏅᏥ -13.1226 ᏒᏂᏍᏙ -13.1226 ▁ᎠᏆᎵᏍᏕ -13.1227 ᎧᎿᏩᏗᏙ -13.1227 ᎦᏛᎴᏏ -13.1227 ᏄᎾᏍᏗ -13.1227 ᏥᎸᏌᏓᏕ -13.1228 ▁ᏳᏫᏣ -13.1228 ▁ᏅᏆᏓᎴ -13.1228 ▁ᏂᏥᏪᏒ -13.1229 ▁ᏓᎾᎳᏍ -13.1229 ᏓᏰᎮ -13.1229 ᏧᎦᏣ -13.1229 ᏔᏫᎢᏍᏗᏱ -13.123 ᏂᏍᏆᏛᏁᎸ -13.123 ▁ᎦᏃᎯᎵ -13.1231 ᏥᎥᎡᎸ -13.1231 ᎸᏉᏔᏁ -13.1231 ▁ᏧᏕᏘᏴᏌ -13.1231 ᏂᎦᏙᎵᏃ -13.1232 ᎤᏪᏅᏃ -13.1232 ᏙᏯᏅᎯᏕ -13.1232 ᏧᏓᏅᏎ -13.1232 ▁ᏚᎾᏘᏅ -13.1233 ᎤᎶᏒᎩ -13.1233 ᏂᏍᏋᏁᎸ -13.1233 ᏓᏂᏙᎬᎩ -13.1233 ᎤᎾᏓᏈᎬ -13.1233 ᏕᏨᏯᏠᎢᏍᏓᏁ -13.1233 ᎤᎵᏍᏛᏂᎴᎢ -13.1233 ᎤᎿᏍᎬᏤ -13.1233 ᎭᎴᏫᏍᏓ -13.1233 ᏙᏓᎬᏩᏂᎾᏢᏂ -13.1233 ᏮᏓᏨᎷᏤᎵ -13.1233 ᏂᎬᏩᏅᎿᏕᎬ -13.1233 ᏂᎬᏩᏛᏁᎴᎢ -13.1233 ᏗᏣᎸᏫᏍᏓᏏ -13.1233 ᏗᏥᎸᏫᏍᏓᏏ -13.1233 ᎦᎵᏥᏙᏅ -13.1233 ᎭᏓᏄᏖᏯ -13.1233 ᎯᏄᏴᏓ -13.1233 ᎦᎾᎱᎩᏍᎬ -13.1233 ▁ᎠᏂᏔᏲᎯ -13.1233 ᏕᎤᎸᏫᏍᏓᏁᎭ -13.1233 ᏧᏓᏆ -13.1234 ᏂᎦᏥᏪᏎᎸᎩ -13.1234 ᎤᏥᎸᏎᏍᏗ -13.1235 ᏗᎨᏅᏒ -13.1235 ᎩᏯᏒᎦᎶᏗ -13.1236 ᏚᏂᏴᏍᏕ -13.1236 ᏚᎾᎦᎴᏅ -13.1237 ᏩᏍᏕᏍᏗ -13.1237 ▁ᎠᏂᎪᏩ -13.1237 ᏓᎦᎵᏬᏥ -13.1237 ᏂᎦᎵᏍᏗᎭ -13.1238 ᏥᏯᏅᏔᏅ -13.1238 ᏥᏆᎵᏏ -13.1238 ᏛᏐᏅᎯ -13.1238 ᏓᎪᏪᎳᏂ -13.1239 ᏓᏍᏚᎲᎢ -13.1239 ᏑᎵᎪᏨ -13.1239 ᏓᏅᏖᎢ -13.1239 ᏄᏩᏁᎰ -13.124 ᏛᏂᏍᏗᏍᎩ -13.124 ▁ᏚᏂᎸᏫᏍᏓ -13.124 ᏕᎦᏅᏌ -13.124 ᏤᎳᏍᏔᏂ -13.1241 ᏍᏋᏂ -13.1241 ᎯᏱᎵᏙ -13.1241 ᎦᏓᏅᏖᏍᎪ -13.1242 ▁ᎤᏗᎴ -13.1242 ᎺᏌᏯ -13.1243 ᎣᏥᏁᎦ -13.1243 ᏕᎪᏢᏒᎩ -13.1243 ᏚᏟᎶᏍᏓᏁᎴᎢ -13.1243 ᏥᏄᏍᏙ -13.1243 ᎤᎾᏁᎳᏗᏍᏗᏱ -13.1243 ᏅᏓᎦᏛᏁᎵ -13.1243 ᏅᏛᎾᎵᏍᏔᏂ -13.1243 ᏓᏰᏥᏁᎵ -13.1243 ᏨᏗᎦᏚᎭ -13.1243 ᏭᏙᎯᏳᎲ -13.1243 ᎠᎵᏍᏓᏴᎲᏍᎬ -13.1243 ᎠᎻᎳᎻ -13.1243 ᎠᏂᎦᏔᎮ -13.1243 ▁ᏚᏂᏴᏍ -13.1243 ᏱᏥᏁᎦ -13.1243 ᎠᎩᎵᏓᏍ -13.1243 ᎠᏁᏙᎮᎢ -13.1243 ᎠᏓᏅᏖᏍᎨᎢ -13.1243 ᎤᏥᏯ -13.1243 ᎦᏄᎸ -13.1243 ᎵᏍᏙᏔᏂ -13.1243 ▁ᎠᎱᏢ -13.1243 ▁ᎢᏣᎵᏍᏕ -13.1243 ᏭᏓᎴᏎ -13.1243 ᎤᏍᏗᎩᎨ -13.1244 ᎾᏂᏪᎭ -13.1244 ᏩᎩᎶᏒᎩ -13.1244 ᏍᎦᏅᏤᎲ -13.1244 ᏍᏗᎦᏔᎮ -13.1244 ᏣᎵᏂᎩ -13.1244 ᏩᏪᏎᎸᎩ -13.1244 ▁ᏙᏗᎧᏅ -13.1245 ᏍᎩᏍᏕᎳ -13.1245 ᎤᎵᏰ -13.1245 ᏰᏗᏩᏛ -13.1245 ᏓᏃᏎᎰ -13.1246 ᏥᎨᎭ -13.1246 ᏓᏕᏲᎲᏍᎨ -13.1246 ᏓᏂᎧᎿᏩᏗ -13.1246 ᏚᎾᏟᏴ -13.1246 ᎺᏌ -13.1246 ▁ᎥᎩᎱᏍᏕ -13.1246 ᎧᎾᎷ -13.1247 ᎠᎵᎮᎵᎩ -13.1247 ᏧᎾᎵᏍᏓᏴᏗᏱ -13.1247 ᏭᏩᏅᏓᏕ -13.1247 ᎣᎦᏣᏅ -13.1247 ᎤᏓᏅᎦᎸᏓ -13.1247 ᎥᎦᏥᎪᎥᎩ -13.1247 ᎠᏃᏍᏓ -13.1247 ᏒᎦᎾᏲᎪ -13.1247 ᎠᏛᎩᏍᎨ -13.1247 ᏕᎭᎷᎨ -13.1248 ᎤᏴᎸ -13.1248 ᏂᎬᏩᏂᏪᏎ -13.1248 ᏓᎩᏯᏪᎬ -13.1248 ᏃᎦᏛᏁᎸ -13.1248 ᎩᏂᏌᏅᎩ -13.1248 ▁ᏣᎾᏛᎩ -13.1248 ᏂᏕᎲᏁ -13.1248 ᎯᎴᏴᏍ -13.1249 ᏄᏪᎡᎢ -13.1249 ᎠᏓᏲᏁ -13.1249 ᏎᎵᏓᏁᎴ -13.1249 ▁ᏕᏨᏯᏠᎢᏍ -13.1249 ᎨᎪᏎ -13.1249 ᎤᎾᏙᎴᎰᎯᏍᏗᏱ -13.1249 ᎬᏩᎪᎮᎢ -13.1249 ᏂᏚᏂᏪᏎᎴᎢ -13.1249 ᏫᎨᏥᏯᏅᏛ -13.1249 ᏓᎪᏄᎸ -13.1249 ᎡᏚᏥ -13.125 ▁ᏭᏗᏢᏍᏔᏁ -13.125 ▁ᎠᎾᎵᏍᏓᏴᎲᏍᎪ -13.125 ▁ᎤᎵᏯᏍᏚᏁ -13.125 ▁ᏧᏗᎴ -13.125 ▁ᏕᏣᏁᎶᏛ -13.125 ᏓᏦᎯᏍᏛ -13.125 ▁ᎤᏂᏍᏆᏂᎪᏍᎨ -13.125 ᏓᏂᎾᏏᏂ -13.125 ᏓᎴᏂᏍᎨ -13.125 ᏚᎪᏓᏁᎯ -13.125 ▁ᏧᏂᎶᏎ -13.125 ▁ᏍᏔᏲ -13.1251 ▁ᏫᎬᏩᏘᏅ -13.1251 ▁ᎡᏦᏎᎲ -13.1251 ᏍᎩᏲᎮᎸᎭ -13.1251 ▁ᏚᏪᎳᏍᏔᏁ -13.1251 ▁ᎠᏂᏍᎦᏅ -13.1251 ᏂᏥᏪᏍᎬ -13.1251 ᎤᎵᏨᏓᏆᏓ -13.1251 ᏗᎨᎫᎪᏓᏁᏗ -13.1251 ᏄᏩᎥ -13.1251 ᏭᎷᏤᎴ -13.1251 ᎤᏲᎱᏎᎮᏍᏗ -13.1251 ▁ᏳᎾᏛᎦ -13.1252 ᎢᏯᏓᏅᏖᏗ -13.1252 ▁ᏚᏂᏯᏙ -13.1252 ᎠᏂᎦᏲᏟ -13.1252 ᏍᏈᏍᏔ -13.1252 ᎤᏒᏂᎴᎢ -13.1252 ᎦᎶᏐᎲᏍ -13.1252 ᎠᎦᏔᎮ -13.1253 ▁ᏧᏫᏎ -13.1253 ᏚᏦᎯᏍᏛ -13.1253 ᏚᏭᎪᏔᏅ -13.1253 ᎤᎾᏛᏁᎸᏗ -13.1253 ▁ᎠᎾᏓᏁᏟᏴᏎᎬ -13.1253 ᏯᏖᎾ -13.1253 ᏥᏙᏁ -13.1253 ᎧᏃᏁ -13.1254 ᎢᏧᏕᏘᏴᏛ -13.1254 ᎥᏥᎪᎥᎩ -13.1254 ᎤᏂᎷᏨ -13.1254 ᎣᎦᏛᎦᏅ -13.1254 ᎣᎩᏴ -13.1254 ᏲᎱᏎᎸ -13.1254 ᎤᎩᏨᏅ -13.1254 ᏗᏣᏘᏄᎦ -13.1254 ᎤᏬᏎᎴᎢ -13.1254 ▁ᏕᎨᏥᎾᏝᎥ -13.1254 ▁ᏓᏆᏕ -13.1254 ᎠᎹᎴᎩ -13.1255 Ꮐ -13.1255 ᎠᏆᏓᏅᏙᎩ -13.1255 ᏗᏣᎧᏅᎦ -13.1255 ᎨᏥᏅᏒᎯ -13.1255 ᎨᏥᏅ -13.1255 ᎠᏂᎩᏏᏙᎯ -13.1255 ᏦᏞ -13.1255 ▁ᎥᏆᎸᎥ -13.1255 ᎡᏘᏴ -13.1255 ᎦᏰᏌᏗ -13.1255 ᎢᏥᏯᏫᏍᎨᏍᏗ -13.1255 ᎤᎾᏙᎴᎰᏒ -13.1255 ▁ᎤᏍᎪᏂᎴ -13.1255 ᎨᏥᏙᎵᏍᏗ -13.1255 ᎠᏂᎨᎾᏂ -13.1256 ᏕᎹᏍᎦ -13.1256 ᏕᎨᏌᏗᏒ -13.1256 ᎩᎾᎵᎢ -13.1256 ᎠᏫᏄᏣ -13.1256 ᏧᏍᏆᏅᎾ -13.1256 ᎨᏥᎵᎥᏂ -13.1256 ᏧᎾᎩᎸᏗ -13.1256 ᏗᏍᏓᏓᏅᏟ -13.1256 ᎦᏁᏌᎢ -13.1256 ᏌᎪᏂᎨ -13.1256 ᎤᏫᏯ -13.1256 ᏓᏓᎿᏩᏍᏛ -13.1256 ᏣᏓᏅᏙ -13.1256 ᎤᏍᏆᎸᎲ -13.1256 ᎠᏆᏛᎦᏅᎩ -13.1256 ᏓᎬᏔᏂ -13.1256 ᏧᏂᎸᏫᏍᏓᏁᏗᏱ -13.1257 ᎠᏈᎻᎴᎩ -13.1257 ᎤᎦᏎᏂ -13.1257 ᎾᏓᎢᏅᏎ -13.1257 ᏄᎵᏍᏔᏂᏙᎸ -13.1257 ᏓᏆᎴᎷ -13.1257 ᎤᏪᏅᎩ -13.1257 ᏂᏚᏪᏎᎴ -13.1257 ᏅᏗᎦᎵᏍᏙᏗᏍᎬ -13.1257 ▁ᎨᏥᏛᏔᏁ -13.1257 ᎭᏯᏛ -13.1257 ᎢᏯᏛᏁᎯ -13.1257 ᎤᎦᎵᏍᏗ -13.1257 ᎤᎾᏤᎵᎪᎯ -13.1257 ᎦᏓᎷᎪᏗ -13.1258 ᎠᏙᎴᎰᏍᎩ -13.1258 ᏄᎾᏍᏛ -13.1258 ᎠᏂᏴᏫᏯ -13.1258 ᎠᏕᎳ -13.1258 ᎤᏂᏃᏕᎾ -13.1258 ᏅᏩᏓᎴ -13.1258 ▁ᏅᏧᏪᏎ -13.1258 ᎤᎾᏤᎵᎦ -13.1258 ᎤᏓᏙᎵᏍᏗ -13.1258 ▁ᎠᏆᏛᏅᎢᏍᏔ -13.1258 ᎢᏯᏂᏛ -13.1258 ᏎᎮᎲ -13.1258 ᏧᎾᏓᎴᏅᏛ -13.1258 ▁ᏕᎬᏩᏘᏃᎮᎴ -13.1258 ▁ᏫᎤᏂᎶᏎ -13.1258 ▁ᏧᏁᏢᏔᏅᏒ -13.1258 ᏧᎬᏩ -13.1258 ▁ᏓᎪᏄᎴ -13.1258 ᎢᏣᎵᏍᏓᏁᏗ -13.1258 ▁ᎤᎾᏓᏁᏟᏴᏒᏒ -13.1258 ▁ᏚᏅᏩᏁ -13.1258 ᎤᏂᎩᏎ -13.1258 ᎤᏲᎱᏎᎢ -13.1258 ᏗᏇᏥ -13.1258 ▁ᎤᏓᏅᏔᏕ -13.1258 ᏕᏡᎬᎢ -13.1258 ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ -13.1258 ᎧᏅᏂᏍᎩ -13.1258 ᎠᏆᏓᏅᏖᏗ -13.1258 ᏂᏨᏪᏎᎭ -13.1258 ▁ᏓᏐᏴ -13.1258 ᎦᏴᎯᏓ -13.1259 ᏗᎦᎸᏫᏍᏓᏁᏗ -13.1259 ᏍᏚᎶ -13.1259 ▁ᎡᏤᏲᏅ -13.1259 ᏗᏯᏠ -13.1259 ᎠᏂᏍᎦᏯ -13.1259 ᏓᎩᎳᎩ -13.1259 ᎤᎦᎾᏍᏓ -13.1259 ᎤᏩᏙᎯᏴᏓ -13.1259 ▁ᎤᎴᏴᏎ -13.1259 ᎩᎳᏈᏴ -13.126 ᎤᏃᏕᎾ -13.126 ᎿᏛᏁᎲ -13.126 ▁ᎢᎬᏩᏂᏆ -13.126 ᎤᏁᏢᏔᏅᎯ -13.126 ᏅᏛᎩᏅᏏᏛ -13.126 ᎨᏥᏍᏚᎮ -13.126 ᎢᏣᏛᏁᏗᏱ -13.126 ▁ᏚᏪᏣᎦᎸᎮ -13.126 ᏓᏳᏓᎴᏅᏓ -13.1261 ᏅᏛᏛᏁᎵ -13.1261 ᎦᏆᏘ -13.1261 ▁ᏓᎾᎵᏍᏓᏴᎲᏍᎨ -13.1261 ᎠᏂᏧᏏ -13.1261 ▁ᎦᏳᏩ -13.1261 ᏰᎶᎢᏍ -13.1261 ᏗᏅᏃᏛ -13.1261 ᎢᏳᎵᏍᏔᏅᎯ -13.1261 ᎤᎾᏂᎩᏒ -13.1261 ᎠᎩᏅᏏᏙᎯ -13.1262 ▁ᎤᏪᏙᎵᏤ -13.1262 ▁ᏫᎤᎶᏎ -13.1262 ᏓᎪᏄᎶ -13.1262 ᏙᏱᏗᏢ -13.1262 ▁ᎤᏍᎩᏓᏎ -13.1262 ▁ᏓᎩᎸᏫᏍᏓ -13.1262 ▁ᏭᏘᏅᏍᏔᏁ -13.1262 ᎤᎵᎮᎵᏤ -13.1262 ᏗᎪᏪᎳᏅ -13.1262 ᎤᎦᏔ -13.1262 ᎠᏂᎦᏘᏯ -13.1263 ᎢᏳᏅᏁᏗᏱ -13.1263 ▁ᏗᎧᎾᏩ -13.1263 ▁ᏱᎦᏓᏅ -13.1263 ᎤᏰᎸᏛᎢ -13.1263 ▁ᏓᏍᏚᎲ -13.1264 ᎤᎵᏍᏕᎸ -13.1264 ▁ᏣᏃᏎᎰ -13.1264 ᎤᎷᎯᏍᏗᏱ -13.1264 ᎢᏳᎵᏍᏙᏗᏱ -13.1264 ᎦᏒᏍᏙᎢ -13.1264 ▁ᎬᏴᏗᏍᎬ -13.1264 ▁ᎣᎦᏚᎵ -13.1265 ᎦᏕᏲᏅ -13.1265 ᏧᏂᏢᎩ -13.1265 ▁ᏂᏓᏋ -13.1265 ▁ᏚᎵᏍᏚᎢᏎ -13.1265 ▁ᏚᏘᏃᎮᎴ -13.1265 ▁ᏚᏃᏪᎸ -13.1265 ▁ᏚᏚᏓᏛ -13.1265 ᎠᏲᎱᏒ -13.1266 ᏧᎾᏁᎶᏗ -13.1266 ᎪᎯᏳᎲᏍᎩ -13.1266 ᏥᏝᏁ -13.1266 ᎤᎵᏏᎩ -13.1266 ▁ᏂᏣᏛᎿᏕᎬ -13.1266 ᏦᏔᏅ -13.1266 ▁ᎤᏂᏐᏅᏤᎴ -13.1266 ᎢᎪᎯᏛ -13.1266 ᏄᏦ -13.1267 ▁ᎢᏣᏓᏁᏟᏴᏎᎬ -13.1267 ᎵᎬᎭᎷ -13.1267 ▁ᏙᏗᏣᏓᏅᏛ -13.1267 ᎬᏍᏓᏩᏛᏍᏗ -13.1267 ▁ᎤᎾᏁᏢᏔᏅᏒ -13.1267 ᏥᎷᏏᎵᎻ -13.1267 ᎤᏁᏅᏍᏗ -13.1267 ᎤᏂᏴᏎ -13.1267 ᎤᏚᎸᏗ -13.1267 ᏪᎳᏏ -13.1268 ᏗᎨᏫ -13.1268 ▁ᏭᎩᎶᏫ -13.1268 ᏩᏘᏍᎨ -13.1268 ▁ᏂᏚᎾᏓᏪᏎᎴ -13.1268 ᎴᏫᏍᏙ -13.1268 ▁ᎠᎦᏬᎡ -13.1268 ᎠᏂᎪᏩᏘᏍᎬ -13.1268 ᏚᏂᏂᏆᏘ -13.1269 ᏱᏂᏪᏍᎨᏍᏗ -13.1269 ᎬᏩᎦᏘᏯ -13.1269 ᎤᎳᏏᏕᏂ -13.1269 ᎯᏍᏓᏁᎲ -13.1269 ▁ᏂᎦᏪᏍᎨ -13.1269 ᎦᏂᎦᏔ -13.127 ᏧᎾᎵᏂᎩᏛ -13.127 ᏍᏓᏩᏕᎪ -13.127 ᎠᏆᎵᏏ -13.127 ᎾᏓᏁᏟᏴᏏᏒ -13.1271 ▁ᏕᎦᎾᏄᎪᏫ -13.1271 ᎦᏄᎸᏒ -13.1271 ᏗᏕᏲᏗ -13.1271 ᎯᏴᏎ -13.1271 ᏂᏬᏂᏍᎨᏍᏗ -13.1271 ᎤᏟᏍᏓ -13.1272 ᏃᏥᎥ -13.1272 ᎤᎪᏩᏛᏗᏱ -13.1272 ᏗᏤᏅᏒ -13.1272 ᎧᏃᎮᏍᎩ -13.1272 ᏥᎧᏍᎨᏂ -13.1273 ᎠᎹᏰᎵ -13.1273 ᏚᏠᏱᎴᎢ -13.1273 ᎸᏫᏍᏓᏁᎲ -13.1273 ᏦᎣᏎ -13.1273 ᎤᎾᏓᏡᎬ -13.1273 ▁ᎤᎵᏛᏔᏁ -13.1274 ▁ᏪᏓᏓ -13.1274 ▁ᎤᏓᏅᏓᏕ -13.1274 ᎪᎲᏍᏔ -13.1274 ▁ᎤᎵᏦᏔᏁ -13.1274 ᏍᏚᎶᏔᏅ -13.1274 ᏚᎪᎲ -13.1274 ▁ᏣᎢᏎ -13.1275 ᏧᏂᏴ -13.1275 ᎧᏴᏤ -13.1275 ᏕᏣᎵᏍᏓᏴᎲ -13.1275 ᎤᏯᏅᎯ -13.1275 ▁ᏳᎾᏟ -13.1275 ▁ᏁᏪᏎᎴ -13.1275 ᏣᎵᏍᏓᏴᎾᏁ -13.1275 ᎵᏦᏔᏁᎢ -13.1276 ᏅᎬᏩᏪᏎᎸᎩ -13.1276 ▁ᎬᏬᎯᏳᏅ -13.1276 ▁ᎠᏓᏴᏗ -13.1276 ᏃᎴᏍᏉ -13.1276 ᎤᏣᏘᏂ -13.1276 ᏂᏕᏨ -13.1277 ▁ᎢᏨᏁᎢᏍᏗᏍᎬ -13.1277 ᎤᏓᏅᏘ -13.1277 ᎤᎩᎬ -13.1277 ᎦᏙᎥᎯ -13.1278 ᏚᏓᏖᏍᏗ -13.1278 ▁ᎠᏥᏩᏛᎡᎸ -13.1278 ᏲᏟᎨ -13.1278 ▁ᏧᎾᏄᎪᏤ -13.1278 ᎬᎾᏬ -13.1278 ᎾᏁᎳᏗᏍ -13.1278 ▁ᎤᏓᏙᎵᏍᏓᏁᎸ -13.1279 ▁ᎤᏄᏖᏒ -13.1279 ▁ᏚᏅᏍᏓᏕᎸ -13.1279 ᏪᎷᏁ -13.1279 ▁ᎠᏍᎩᏗᏍᎨ -13.1279 ▁ᎬᏩᏡᏗᏍᎬ -13.1279 ᏩᏳᏤᎴ -13.1279 ᎳᎨᏯᏛᏤᎢ -13.128 ᏏᏛᏂᎸ -13.128 ᏕᎶᎰᏎ -13.128 ▁ᎠᏂᏯᏙᎯᎲ -13.128 ᏓᏍᎩᏁᎵ -13.128 ᏓᏟᏃᎮ -13.128 ᏩᏛᎡᎴ -13.128 ▁ᎠᎫᎢᏍᏗᏍᎬ -13.128 ᏩᏗᏎ -13.1281 ▁ᏚᏭᏓᏔ -13.1281 ᏓᏆᏙᎥ -13.1281 ▁ᏭᏘᏅᏍᏔᏅ -13.1281 ᏬᏪᎳᏅ -13.1281 ᎵᏍᏓᏗᏍᏗ -13.1281 ᏓᏓᎶᏂ -13.1282 ᎬᎪᏩᏘ -13.1282 ▁ᏐᏈᎵᏗᎦᎵᎠᏅ -13.1282 ▁ᎢᏨᎨᏳᏒ -13.1283 ᎩᏍᎦᏅᏨ -13.1283 ᏂᏆᏘᏍᏗ -13.1283 ᏄᎬᏫᏳᏌᏕᎩ -13.1283 ▁ᏃᎩᏅᏁᎸ -13.1283 ᎦᏓᏅᏔᏩᏕᎪ -13.1283 ᏂᎧᎿᏩ -13.1283 ᎩᏍᏆᎸᎡ -13.1284 ᏩᏗᏙᎮᏍᏗ -13.1284 ▁ᎠᏄᎯᏍᏗᏍ -13.1284 ᏓᏆᎴᎳ -13.1284 ᏑᎵᏍᎬ -13.1285 ᎪᏪᎳᏅᎯ -13.1285 ᏣᏕᎰᎯ -13.1285 ▁ᎤᏓᏱᎸ -13.1285 ᎭᎵᎮᎵᎩ -13.1286 ▁ᏂᎬᏩᏛᏁᎴ -13.1286 ᏅᎨᏫ -13.1286 ▁ᎬᏩᏁᏄᎳᏍ -13.1286 ▁ᏓᏂᏄᏙᎬ -13.1286 ᏓᏁᎪᏴᏓ -13.1286 ᎵᎶᎲᏍᎩ -13.1287 ▁ᎠᏓᏴᏍᏔᎩᏍ -13.1287 ▁ᎤᏁᏐᎠᏒ -13.1287 ᎤᏡᏗᏍᎩ -13.1287 ᎵᏍᏚᎢ -13.1287 ᏅᎪᎳᏛ -13.1287 ᏌᏯᏍᏗᏕᎩ -13.1287 ᏩᏩᏙᎣ -13.1287 ᎾᎦᏎᏍᏛ -13.1287 ᎩᏍᏙᎡ -13.1287 ▁ᎤᎾᏓᏄᎸ -13.1287 ▁ᎤᏗᏩᏒ -13.1287 ᎪᎯᏳᏗᏍᎩ -13.1287 ᎬᎥᏍᎩ -13.1287 ᎦᏴᎳᏥᎶᏛ -13.1287 ᎾᎵᏃᎮᏔᏁ -13.1288 ᏥᎧᎯᏴ -13.1288 ᎠᏥᏁ -13.1288 ᏂᏲᎯᏍᏔ -13.1288 ▁ᏛᏓᎴᎲᏍᎬ -13.1288 ▁ᎢᎬᏩᏂᎩ -13.1288 ᎣᎩᎷ -13.1288 ▁ᏕᎭᏕᏲᎲᏍᎬ -13.1289 ᏄᏬᏍᏛᎩ -13.1289 ▁ᏣᏍᎦᎸ -13.1289 ᎤᏍᎦᏃᎵ -13.1289 ▁ᎤᎾᏄᎪᏤ -13.1289 ᎦᏅᏌᏗ -13.1289 ▁ᏂᏚᏂᏪᏎᎸ -13.1289 ▁ᎤᏂᎷᎯᏍ -13.1289 ᏍᏔᏂᏙᎲ -13.1289 ᎾᏅᏓᏗᏍᎨ -13.1289 ▁ᎦᏓᏙᎵᏍᏗᏍ -13.129 ᏂᏴᎯᎰ -13.129 ᎠᏫᏅ -13.129 ▁ᎴᎹ -13.129 ▁ᎤᏡᏗᏍ -13.129 ᎵᎮᎵᏤᎰᎢ -13.129 ᎾᏓᏙᎵᏍᏓᏁᎲ -13.129 ᏍᏆᏚᎸ -13.129 ᎾᏓᏃᎮᎵᏙᎯ -13.129 ▁ᏱᏥᏩᏘᏍᎪ -13.129 ᏚᎢᏍᏔᏁ -13.129 ᎦᏎᏙ -13.1291 ᏟᏅᏨ -13.1291 ᏓᎪᏩᏘ -13.1291 ▁ᏗᎦᏃᎸᏗᏍ -13.1291 ᏗᎦᎴᏲᏨ -13.1291 ᎾᎴᏲᎥ -13.1291 ᎵᏍᎫᏮ -13.1291 ᏯᏍᏚᏎᎢ -13.1291 ᏌᏯᏍᏗ -13.1291 ▁ᎢᏧᏅᏁ -13.1291 ᏣᏪᏐᎸᏍᏙ -13.1292 ᏔᎸᎩᏓ -13.1292 ᏦᏨ -13.1292 ▁ᏅᎬᏩᏪᏎᎸ -13.1292 ▁ᎡᏥᏯᏅ -13.1292 ▁ᏑᎾᏓᏡ -13.1292 ▁ᎬᏩᏜ -13.1293 ▁ᏗᏄᎪᏗᏍ -13.1293 ▁ᎢᏣᎫᏴ -13.1293 ᎾᏓᏅᏓᏕᎢ -13.1293 ᏂᏂᎬᏎᎲ -13.1293 ▁ᎨᏥᏃᎮᏍᎬ -13.1293 ▁ᎦᎷᎪ -13.1293 ᏄᎩᏣᏁ -13.1293 ▁ᏱᎦᎾᏄᎪ -13.1294 ▁ᏚᏂᎵᏬᏤ -13.1294 ᏣᏛᏅᎢᏍᏔᏅ -13.1294 ▁ᏕᎦᏚᏓᏕᏫᏒ -13.1294 ᎾᎵᎮᎵᎨᎢ -13.1294 ᏪᏙᎵᏤᎢ -13.1294 ᏥᏌᎳᏙ -13.1294 ᏍᎩᎾᎾᏂ -13.1294 ▁ᏱᏥᏩᏘ -13.1294 ᏐᏢᎢᏍᏗᏍᎬᎢ -13.1294 ᏓᎵᏁᎯᏕᎸ -13.1295 ᏗᏣᏁᎶ -13.1295 ▁ᏯᏆᏛᏁ -13.1295 ▁ᎤᏴᏓᏆᎶ -13.1295 ᏨᎪᏩᏘ -13.1295 ▁ᎾᎩᏪ -13.1295 ᏩᏙᎯᏴᏓ -13.1295 ᎦᏓᏅᏖᏍᎬ -13.1295 ᎤᎸᏓᎸᎥ -13.1295 ▁ᎤᏓᏱᎴ -13.1295 ▁ᏗᏟᏰᎵᏓᏍ -13.1295 ▁ᎨᎬᏬᎣ -13.1295 ▁ᏧᏬᏑᎴ -13.1296 ᏥᏚᏙᎥ -13.1296 ▁ᎣᎯᏍ -13.1296 ▁ᏂᏍᎩᏯᏛ -13.1296 ▁ᏦᎯᏳᏎᏍᏗ -13.1296 ᏠᏯᏍᏔᏅᎩ -13.1296 ᏴᏍᏔᏁ -13.1296 ▁ᏍᏊᏓᎳ -13.1296 ᎦᏐᎠᏍᎬ -13.1296 ᎤᏣᏔ -13.1297 ▁ᎤᏩᏩᏙ -13.1297 ▁ᏗᎦᏯᎩᏍ -13.1297 ▁ᎣᎦᏅᏅ -13.1297 ▁ᏫᎨᏥ -13.1297 ▁ᎬᏩᏂᎪᏩ -13.1297 ᏕᎦᎶᎨᏒ -13.1297 ᏗᏜ -13.1297 ᎩᏓᏟᏅᏯ -13.1297 ▁ᏯᏂᏲ -13.1297 ᎵᏍᏆᏛ -13.1298 ᎨᏥᏍᏚᎲ -13.1298 ᏔᏂᏗᎨ -13.1298 ᎤᎵᏬᏨ -13.1298 ᏘᏍᏕᏍᏗ -13.1298 ᏟᏴᎲ -13.1299 ▁ᎤᎾᎩᎳᏫ -13.1299 ▁ᎥᎪᎩ -13.1299 ᏂᎧᎵᎢᏍᏔ -13.1299 ▁ᎤᎶᏐᏂ -13.1299 ᎧᏁᎢᏍᏗ -13.1299 ᏍᏕᏯᏓ -13.1299 ▁ᎬᏩᎾᏰᏍ -13.1299 ᎥᎩᏁᎸ -13.1299 ᎾᏂᎩᏎ -13.1299 ᎤᏟᏂᎩᏓ -13.1299 ᏘᏴᏛ -13.13 ▁ᏄᏂᎬᏫᏳᏌᏕ -13.13 ᏓᏁᎳᏁᎸ -13.13 ᎦᏠᏏ -13.13 ᎦᏙᎥᎯᏍᏙᏗ -13.13 ᎤᏠᎠ -13.13 ▁ᎨᏥᏐᏅᎢᏍᏔᏅ -13.13 ᏔᎷᎩ -13.13 ᏬᎯᏳᏒ -13.1301 ▁ᏚᏂᎦᎵᏒ -13.1301 ᏂᏃᎯᎵᏙᎯ -13.1301 ᎳᏫᏎᎸᎩ -13.1301 ᏪᏓᏍᏗ -13.1301 ᎬᏋᏁᏗ -13.1301 ᏁᏉᏨ -13.1302 ᎵᏬᎢᏍᏗ -13.1302 ᎢᏳᏛᎿᏕᎩ -13.1302 ᎯᏳᎲᏍᎨᏍᏗ -13.1302 ᏆᎫᏴᎡᎲᎢ -13.1302 ▁ᏂᎨᏥᎳ -13.1302 ᏖᎵᏙᎩᎯ -13.1302 ᏙᏱᏨ -13.1302 ▁ᎤᎵᏍᎫᏫ -13.1302 ᎵᏰᎢᎵ -13.1302 ▁ᏓᎾᎵᏍᏓᏴᎲ -13.1302 ▁ᎢᏯᏆᎵᏍᏓᏁ -13.1302 ᎿᏩᏛᏍᏗ -13.1303 ᎤᏤᎵ -13.1303 ᏌᎯᎸ -13.1303 ᎾᎥᏂᎨ -13.1303 ▁ᏧᏙᏓᏆ -13.1303 ᎴᏫᏍᏙᏗ -13.1303 ᎪᏍᏔᏴ -13.1303 ▁ᎢᏯᏥᎸᏉ -13.1303 ▁ᏧᏬᏪᎶ -13.1304 ᎧᏃᎮᎭ -13.1304 ᏫᏚᏯᏅᎮ -13.1304 ᏨᏃᎮᎮ -13.1304 ᎬᏫᏳᏎᏍᏗ -13.1304 ᎭᏲᏛ -13.1304 ▁ᎠᎩᏍᏆᏂ -13.1304 ᎧᎹ -13.1304 ▁ᎤᏙᎴᎰ -13.1304 ᏇᏕᎵ -13.1304 ▁ᎢᏣᏓᏙᎵᏣ -13.1304 ▁ᎨᎪᏢᏅ -13.1304 ▁ᏭᏢᏁ -13.1305 ▁ᎠᏓᏛᏂᏗᏍ -13.1305 ᏛᏛᎲᏍᎨᎢ -13.1306 ᎴᏅᏗᏍᎪ -13.1306 ᎠᎦᏙᎥᎯᏍᏗ -13.1306 ᎦᎾᏍᏛ -13.1306 ᏕᏥᏯᏁᎶ -13.1306 ▁ᏱᏙᎩᎸᏫᏍᏓᏁ -13.1306 ▁ᏱᏗᏥᎸᏫᏍᏓᏁ -13.1306 ▁ᏱᎬᏲᏎ -13.1306 ᏥᏏᎾᏒ -13.1306 ▁ᎤᏣᏪᏐᎸᏍ -13.1306 ᏧᏅᏏᏓᏍᏗ -13.1307 ▁ᎦᎬᏩᏐᏢᏕ -13.1307 ᏓᎩᏲᎯᏎᎸ -13.1307 ▁ᎤᏬᏑᎶᏨ -13.1307 ᏆᏓᏬᏅ -13.1307 ᎵᏏᎾᎯᏍ -13.1307 ▁ᎤᏘᏍᏛ -13.1308 ▁ᎤᎧᏲᏛ -13.1308 ᏱᏙᎨ -13.1308 ▁ᏗᎨᎦᏁᎶ -13.1308 ᏗᏲᎱᎯᏎ -13.1308 ᎠᏘᏍᏓᏁ -13.1308 ᏔᎳᏚ -13.1308 ▁ᏓᎾᏣᏅ -13.1308 ▁ᎤᏂᎾᏝᎾ -13.1308 ᎫᏬ -13.1308 ᏯᏪᏐᎴ -13.1309 ▁ᎬᏩᎨᏳ -13.1309 ᎷᏥᏗᏒ -13.1309 ▁ᎠᏂᎦᏯᎷᎥᏍ -13.1309 ᎿᏬᎡ -13.1309 ▁ᏗᎧᎵ -13.1309 ▁ᏧᎸᏫᏍᏓᏁᎸ -13.1309 ▁ᏣᎾᏓᎾᏏᏂᏙ -13.1309 ▁ᎭᎢᏒ -13.1309 ᎵᏍᏛᏧᏅ -13.1309 ᏅᎦᎳᎲ -13.1309 ᎧᏂᎩᏓ -13.1309 ᏓᏂᏙᎨ -13.1309 ᎧᎵᎢᏍᏙᏗ -13.131 ᏙᏑᎴᏗᏱ -13.131 ▁ᎢᏍᎩᏳᏍ -13.131 ᏫᏍᏙᏗᏱ -13.131 ᏗᎦᎵᏍᏙᏗᏍᎨ -13.131 ▁ᏥᏥᎪᏩᏘ -13.131 ▁ᏱᎦᏬᏂ -13.131 ▁ᏄᏍᏗᏕᎬ -13.131 ▁ᏱᏚᎾᏓᎴ -13.1311 ▁ᎠᏥᏓᎦᎸ -13.1311 ▁ᏫᏓᏙᎴ -13.1311 ᎵᏖᎸᏅᎩ -13.1311 ᏯᏪᏐ -13.1311 ᏗᏛᎮᎢ -13.1311 ▁ᏧᏓᏆᏙ -13.1311 ▁ᎤᏓᏕᏲᏗ -13.1311 ▁ᏧᎾᏓᏙᎵᏍᏓᏁᏗ -13.1311 ▁ᎤᏍᏓᏩᏗᏓᏍᏗ -13.1312 ▁ᎬᏔᏲᏎ -13.1312 ▁ᏗᏧᎪᏙᏗ -13.1312 ᎱᏍᏕᏎᎴ -13.1312 ▁ᎥᏆᎸᏍᏗ -13.1312 ᎩᎵᏲᏤᎴ -13.1312 ▁ᏣᎩᏰᎸ -13.1312 ᏂᏄᎸᏅ -13.1312 ᎦᎶᏇ -13.1313 ᏖᎵᏙ -13.1313 ▁ᏩᎵᏰᎢᎶᎯ -13.1313 ▁ᏗᎾᏦ -13.1313 ᎵᏠᏯᏍᏛ -13.1313 ▁ᏗᎩᏲᏢ -13.1313 ᎪᏁᎶᎯᏎᏗ -13.1313 ▁ᎢᏨᎪᏩᏛ -13.1314 ▁ᎦᎾᏄ -13.1314 ᎬᏩᏝ -13.1314 ▁ᏤᏥᎤᏍᏕᏎᏗ -13.1314 ▁ᏱᏄᏪ -13.1314 ▁ᎠᏆᏢᏈᏍᏗ -13.1314 ᏪᏙᎵᏍᏗ -13.1314 ▁ᎤᏂᏴᏔᏂᎯᏍᏗ -13.1314 ᏥᏯᏛᏛᏅ -13.1315 ᎩᎵᏲᏥ -13.1315 ▁ᎤᎾᏓᏍᏔ -13.1315 ▁ᎢᎬᏪᏅ -13.1315 ᎾᏛᏛᎲᏍᎨ -13.1315 ▁ᏱᏓᏂᎳᏫ -13.1315 ᎾᏫᏛᎲᎩ -13.1315 ▁ᎠᏂᏔᏲ -13.1316 ᏟᏰᎵᏓᏍᏗ -13.1316 ᎵᏍᏓᏁᎸᎢ -13.1316 ▁ᏳᎨᏳ -13.1316 ▁ᎤᏍᎫ -13.1316 ᏳᎪᏓᏁᎵ -13.1316 ᏓᏕᎮᏍᏗ -13.1316 ▁ᏚᎵᏂᏆ -13.1316 ▁ᎢᏦᎯᏳᏗ -13.1316 ▁ᏓᎦᏥᏲ -13.1316 ▁ᎤᏂᏂᏴᏗ -13.1316 ᏂᏨᏴᏁᎭ -13.1317 ᏍᏓᎦᎸ -13.1317 ▁ᎢᏳᏩᏂᏌ -13.1317 ᎷᏏᎵᎻ -13.1317 ᎤᏂᎲ -13.1317 ᏣᏙᎴᎰᏍᎨ -13.1317 ▁ᎨᏥᎩᎵᏲᎢᏍᏙᏗ -13.1317 ᏰᎢᎶᎯ -13.1317 ᎭᎵᏍᏗᎭ -13.1317 ᎳᏛᎥᎦ -13.1317 ᏓᏙᎵᏍᏙ -13.1318 ᏓᏙᏕᏍᏗᏍᎩ -13.1318 ᎠᏡᏗᏍᎬ -13.1318 ᏂᎸᏫᏍᏓᏁᎯ -13.1318 ᎠᏁᎶ -13.1318 ▁ᏗᏒᏆᎶ -13.1318 ᎩᎵᏲᎢᏍᏙᏗ -13.1319 ▁ᎢᏯᏆᎵᏍᏙᏗ -13.1319 ▁ᎢᏧᏕᏘᏴ -13.1319 ▁ᎤᏍᏉᎵ -13.1319 ▁ᎣᎦᏕᏯᏙᏗ -13.1319 ▁ᏧᏂᏲᎱᏒ -13.1319 ▁ᏚᏯᏅᎮ -13.1319 ▁ᏛᎦᏓᏅ -13.1319 ▁ᏓᎾᏤᎨᏍᏗ -13.1319 ᏙᏛᎩᎸᏫᏍᏓᏁᎵ -13.1319 ▁ᏅᏩᏛᏁ -13.1319 ᏂᏌᏄᎦ -13.1319 ᎨᏍᎩᎥᏏᏉ -13.1319 ᏜᏍᏔᏅᎯ -13.1319 ▁ᏄᏂᎪᎸ -13.1319 ▁ᎠᏂᏏᏴᏫ -13.132 ᎾᏙᏓᏆᏍᎬ -13.132 ᏳᏓᏁᎭᏰᏃ -13.132 ᏓᏅᏓᏗᏍᏙᏗᏱ -13.132 ᏖᎸᎲᏍᎪᎢ -13.132 ᏂᏩᎾᎦᎳ -13.132 ▁ᎭᏛᏓᏍ -13.132 ᎾᏂᏏᏗᏱ -13.132 ᏥᏗᏒᎩ -13.1321 ᏓᏁᏟᏴᏎᎬ -13.1321 ▁ᏯᏂᏍᎦ -13.1321 ᏂᏏᎾᏌ -13.1321 ▁ᏥᎦᎷᎯᏍᏗ -13.1321 ▁ᏫᎨᏣᏲᎵ -13.1321 ▁ᎬᎩᏁᏤᎸ -13.1321 ▁ᎦᏃᎸᎥᏍ -13.1321 ᏕᎯᏳᎪᏓᏁ -13.1321 ▁ᏧᎾᏁᎳᏗᏍᏗ -13.1321 ▁ᏚᏂᏲᎯᏎᎸ -13.1322 ▁ᏅᏓᏩ -13.1322 ▁ᏚᎦᏒᏍ -13.1322 ᎦᏄᏖᏲ -13.1322 ▁ᎤᏂᎵᏦᏩ -13.1322 ▁ᎤᏓᏙᎵᏍᏔᏅᏎ -13.1322 ▁ᏧᏂᏴᏍᏕᏍ -13.1322 ▁ᎣᎩᏃᎮᏍᎬ -13.1322 ▁ᎦᎶᎯᏍ -13.1322 ᎾᎵᏍᏓᏁᎴᎢ -13.1323 ᏠᏒᏎ -13.1323 ▁ᏲᏨᏗᏍ -13.1323 ▁ᎤᎶᏒᏍᏕ -13.1323 ᏬᎯᏍᏗᏍᎩ -13.1323 ᎦᏌᏯᏍᏓ -13.1324 ᏣᏤᎵ -13.1324 ▁ᏫᎩᎾᏄ -13.1324 ᏥᎧᎿᏩᏛᏍᏗ -13.1324 ᏧᏤᎵ -13.1324 ▁ᎢᏧᏅᏁᎸ -13.1324 ᏁᏙᎸᎩ -13.1324 ᏱᏄᎳ -13.1324 ▁ᏅᏓᏳᎶᎯᏍᏗ -13.1324 ▁ᏍᏆᏛᏅᎢᏍᏓᏁᎸ -13.1324 ᏯᎧᎲᏍᏗ -13.1324 ᏩᎾᎦᎸ -13.1325 ᎵᎬᏩᏢ -13.1325 ᏰᎵᏏᏙᎴᎢ -13.1325 ▁ᏓᏥᏛᏔ -13.1325 ᎮᏙᎭ -13.1325 ▁ᏱᏂᏣᎵᏍᏔ -13.1325 ᏨᎾᏄᏫᏎᎭ -13.1325 ▁ᎤᏂᏍᏕᏲ -13.1325 ᎳᏬᎯᏍᏗ -13.1325 ᏍᏈᏛ -13.1325 ᎳᏑᏝ -13.1325 ᏆᏗᏍᏗ -13.1325 ▁ᎬᏁᏤᎲ -13.1325 ᏥᎧᎿᏩᏗᏓᏍᏗ -13.1325 ᎫᏍᎨᏂ -13.1325 ᎵᏍᎪᎸᏔᏅ -13.1326 ᏣᏓᎵᏁᎯᏕ -13.1326 ▁ᏗᏥᎦᏴᎵ -13.1326 ▁ᏗᏂᎧᎿᏩ -13.1326 ᎡᏙᏓ -13.1326 ᏂᏅᏍᏓᏕᎸ -13.1326 ᎾᎵᏥᏙᎲ -13.1326 ▁ᏚᏟᏰᎵᏙ -13.1326 ▁ᎠᏍᏕᏯ -13.1326 ᏣᏓᏄᎸᏗ -13.1326 ▁ᏚᏟᎶᏍ -13.1326 ▁ᏚᎧᎿᏂᏙ -13.1326 ᏓᏄᏴᏙ -13.1326 ᏚᏘᏅᏍᏔᏁ -13.1327 ᏍᏓᎢᏒᎢ -13.1327 ▁ᏓᏥᏴᏂ -13.1327 ▁ᏗᎨᎦᏬᏍ -13.1327 ▁ᎾᏕᏘ -13.1327 ᏍᏓᏱᏗᏍᏗ -13.1327 ▁ᎤᏂᎾᏄᎪᏤ -13.1327 ᎳᏍᏗᏍᎪ -13.1328 ▁ᎤᏂᏍᎦᎸ -13.1328 ᏂᎳᏫᎡ -13.1328 ᏥᏍᏓᏩᏕᎨᏍᏗ -13.1328 ᎯᏴᏁᏗ -13.1328 ᏓᏅᏖᎵ -13.1328 ▁ᎢᏯᎩᏳᏍᏈ -13.1328 ᏥᎿᏍᏕ -13.1328 ▁ᎤᎾᏓᏙᏢ -13.1328 ▁ᎠᎩᏁᎢᏍᏗ -13.1328 ▁ᏫᏥᎪᎥ -13.1328 ᏅᏆᎶᎥᎯ -13.1328 ▁ᏕᏥᏍᏕᎵᏍᎬ -13.1328 ᎾᏓᎪᎾᏗ -13.1328 ᎾᎩᎸᏁ -13.1328 ᎨᏥᏁᎢᏍ -13.1328 ▁ᏥᏅᏗᎦᎵᏍ -13.1329 ᏳᏗᏩᏏ -13.1329 ▁ᎧᏴᏐ -13.1329 ▁ᏑᏟᎶ -13.1329 ᏂᏅᎪᏫᏍ -13.1329 ᏓᏘᎾᎢ -13.1329 ᎵᏍᏡᏰᎢ -13.1329 ᏀᎢᏳ -13.1329 ▁ᎶᏩ -13.1329 ᎵᏍᏛᏧ -13.1329 ▁ᏄᏂᎬᏫ -13.1329 ▁ᎤᏧᏗ -13.133 ᏴᏔᏂᎯᏍᏗᏱ -13.133 ᎵᎡᎵᎬ -13.133 ᎨᎳᏗᏙᎭ -13.133 ᏟᏴᏌ -13.133 ▁ᏱᏍᎩᎧᏁ -13.133 ᏂᎴᏴᏍᎩ -13.133 ᎦᏌᏯᏍᏙᎢ -13.133 ᎦᏰᏣᎵᏍᏕ -13.133 ▁ᏧᎸᏫᏍᏓ -13.133 ▁ᎢᏥᎦᏔ -13.133 ᏂᏅᏫᏍᏔᏂᏙᎯ -13.133 ᏠᏤᏉ -13.133 ▁ᏧᎦᏴᎵ -13.133 ᏓᎸᎥᏍᎨ -13.1331 ▁ᎠᏂᎦᏴᎵ -13.1331 ▁ᏫᎯᎶ -13.1331 ▁ᏦᎦᏤᎵ -13.1331 ᏙᎩᎸᏫᏍᏓᏁᎭ -13.1331 ᏩᎦᏘᏯ -13.1331 ▁ᏱᎾᏆᎵᏍᏔ -13.1331 ᏛᏓᏅᎯ -13.1331 ▁ᏚᏌᎳ -13.1331 ▁ᏧᏬᎯᏳᏁ -13.1331 ▁ᎬᏆᏓᏙᎵᏍ -13.1331 ᏁᎶᏔᏅᎩ -13.1331 i -13.1332 P -14.5196 C -14.5197 ( -14.5198 [ -14.5199 ================================================ FILE: a4/test_outputs.txt ================================================ The Abraham said unto him, Moses and prophets; that he may be with them. “Well,” said Charlotte. 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. When he was going to the other side. 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. not in the evil work, but the righteousness of righteousness; which is not worthy of you, neither is no more with him: And there was no root of them, that the faith of faith were with them. And they were all amazed, they said to another, Know ye, not all these things are of Galilee? 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. 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. 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. But if we cast out demons in the temple of God, ye shall not see the kingdom of God. I guess I was a tree in the tree, and I would have a tree.” 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. It went into the air and wiped their noses and ate. Even as it is written in the law of the law in the law of Israel; 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. Wilbur stood asleep. 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; I’m going to me. He sat on the edge of the other side, he put them into heaven. 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. Her egg sac sac. And as he had seen it, he took bread, and gave thanks, he gave them, and gave them, and said, This is my body. Perry went back to the ground and the sounds of the man, wet wet. Not me. And when they were come to pass, they were astonished, they began to say, Who is this, who did also also also? This was three days, when he went out again unto the second time. 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. “I don’t feel life for the barn’s barn. 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. And they shall not say that it is written, that the stones of the chief corner; “Oh, Charlotte,” she said. “I’m going to the Ferris wheel, but I’m not need. I say unto you, I will keep you; for it is, I will give you: I pray thee, ye shall die. whose Father is greater than all, and I cannot be able to my Father. The spider seemed to the web, This is the web seemed to the spider. It was like the winds of the air. Yea, who is the law of the law, but the law of the law, And he said unto him, Friend, why do ye that thou art here that thou art? And they were afraid. Salute another with love with love. II. For whatsoever is no one that is in the things; he that doeth all things are the things of God. “What are you going to do?” asked asked. 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? And they took the fire in the fire, and the fish, and the fishes. But though it is good for thee for thee. “I’m going to eat, and his tail was sitting in the sun. 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. 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, 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. You'll get you, Wilbur! 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. And when he went to the door of the door, and said unto Peter, Art thou also this man? I am not. For this is the love of God, that he may keep his commandments to the law; and the law is not. “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. And in the blue, of gold, with gold, with their handss. erily I say unto you, This generation shall not pass away. You’re all my morning.” And there are the disciples of the disciples. and when I beseech thee, I pray thee, I pray thee not a new law; I am not a new law; He went back to the dump and went back to his house. And, behold, this voice came out of heaven, This is my beloved son, that it is well. Then do good good tree, and shall be done evil evil evil; for it is a tree that is in the world. One morning Wilbur. Mrs milk.” And he that followed him, and saw him; and the flood was left, and took him. 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. 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. nto the multitude of the multitude, because they were three days three days, because they were not three days; And they that were with him, they brought him out of the demons, and gave him a pig. 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. For your faith were gone down from all men. And when they heard these things, and they that were with him, they were not afraid. Now there was a certain man named Csarea, a centurion, a centurion, a centurion, of the centurion. Fern was sitting in the edge of Fern, and I’d going to another. 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. And I will give thee thee, and ye shall be with me: and because I have found me. And Philip said unto him, two hundred and the bread that is not able to make one of them. And he went out another, and said unto them that were bidden, and said unto them that were with us. When he fell down to the ground. Then another spider. And when John came to him, and began to say unto John the people; how are ye into the wilderness? But they told them not. 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. But we know that the truth is true, and I thought that they might have been made. He went back to be a long time to be a long time to be a long time to be the water. There was also that two thousand came also two talents. Then he went on the eleven disciples to the disciples, The Jews therefore said, What shall I tell him? saying, I will not go. When it came to the top of the air, and she sat down from the ground, and then it was a deep. And they brought him to him, Paul said unto him, The centurion came unto the centurion of the centurion. “Look out for it!” he Fern. Lurvy went and went up and went on his own hand. It was like a lot of wood. He that is born in his own body, that we might receive the body, that we might be made for a sin unto righteousness; This will I live with me. He would have a swim in the straw. And in the midst of the web. And they said, Because thou hast found in the presence of Moses, and in the country. And they that were not ignorant, let him hear. And they tell me, whose is the greatest? Mr. He was tired and happy. “Well, Wilbur!” said the old sheep. 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. But I say, Is not I say unto you? yea, indeed ye have heard the world, and from the end of the earth. “Don’t worry, Templeton!” said Charlotte. But when he was gone away, but I’m not going to be, when he didn’t want to sleep. So that we may make one of each one of each one of God. For I say unto you, There shall not come unto you, until ye say, This is the name of the Lord: And he answered and said, There is no man in the house of Egypt, the sheep of the sheep of the house of Israel. Beloved, because it is love: for love is the God of God, and one of the God of God; 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. Charley started with a stone in a rock, and put it into the top of his head. From the ueens, and rolled to the Ridges, and I’d like the Ridges of the Nation. “Yes, it is,” said Wilbur. p! And the last egg, he said, I will surely my son. “It’s name of him. “Well,” said the goose. “Good!” said Charlotte. 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. For there are all things that are in the sight of God, yea, and erily is in the sight of God. 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. These are they that are sown in the way, that they went into the country, and went down into the midst of his hands, Please, I'm going to sleep!” 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. 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. For ye shall say unto the bread of bread, and this cup, The cup of the Lord, until he come. 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. Take heed unto you, and pray thee, if any man thinketheth me, if any man hath given you, even as ye also do. But ye shall not be of them, for your Father because ye have your father before you. This is the work which thou hast given me, my beloved brother, even as thou hast given me to be comforted. And I pray thee, and be filled with me, and in my name; Wherefore, my beloved, beloved, ye know that the things which is with you? The days seemed up and the Zuckermans and the Zuckermans were gone up. 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? 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: Mr. The chief priests and the chief priests and the elders shall come to death, and they shall see. And there was one of the four living creatures seven angels and seven angels, and the wrath of God, even for ever and ever. But concerning the Son of man’s Son, whose Son are in the world, 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. 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, 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. The horses seemed to the goose, but the goose said. This is a good world. They answered him and said unto him, I am Abraham of Abraham’s seed, and I will not see it? And he that sent him by the way of them, when he saw it in the sight of it. And he said unto her a man, half a half. But if thou refuse to him, let him go to the poor to the poor, that they might receive the poor, and the blind; They shall not be with a stranger, let it be no wise. So in the end of sin is sin; and sin is the death of death. 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, “I’ll worry about here,” said Fern. “I don’t know what I don’t know the word.” “Yes,” he said. And when I was come to because of the time, I was in the sight of the swine. Then he looked up into the air. that the righteousness of righteousness, which is in the resurrection, the resurrection of the resurrection; and they gave them away of the resurrection. It seemed to the end of the end of it was very grievous to be. Perry’t not going to be a good way to the West, but I guessed it was not. “Do Fern Fern?” He that would not be found in the house of the dead, and see Mr. Zuckerman. And straightway the voice of Jesus went out from him, and said unto him, Sirs is, because thou art in the earth? 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, 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. 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. 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. “This, one seven?” When he had left him, and went away to the master’s wombs, that they might make all that were with him. “Oalutations!” And he went to sleep. 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. The goose came to pass, the seven goslings had gone up and seven goslings. 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. But he spake unto him, and said unto his hand, Arise, and sat down. And he arose and sat down. 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. That he was coming from the city. But the other part of some rose up, and fell upon the ship. And there came to him, and took him on him, and said unto him, If thou wilt, thou canst make me. Wherefore he sent to me, that he might send them out of them. It was a few time, one of the other fish. 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. 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. I'll let you see the pig. Don't now now!” 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. He went back into his yard. Sack for the first Grounds of the Fair Grounds, all the Zuckermans’s life. This is the things which I have spoken unto you, that they might eat. 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. And they brought all his hand. And when they were in those days, that they were able to God; but when he had seen all the people all the people, 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. And Peter and John came with them with them, and asked him, and John came into the third hour. And some of them believed, and gave them forth to Paul and Silas, and many rulers of God, 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, These things are the church of the church: If they say unto you, that ye may be saved, the disciples of God, are good. And they said, John the Baptist; but some of Elijah is Elijah; and others, a certain prophets. 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. When they were going down. 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; And he sent unto him Peter and John, saying, Go into the passover, that it may be light. and he did not know that he did not know that in Jesus: for Jesus went away from them; for they were there. Arise, behold, the sower went forth; behold, the sower went forth; Templeton. And all men shall be for all men’s sake. And they knew not no man: and there was no more come out of heaven. 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. I am the light of the world, that he that believeth on me is no more in darkness. 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? On the morrow was in the morrow, he was standing in the morrow, 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. It was in his own. But he charged them, and said, It is not lawful in the spirit of you. but this is written, It is written, Behold, I send my servant before thy face, that thou shalt take before thee before thee. “Look, it!” cried Wilbur. And the angel said unto him, Go on, and thou shalt eat his feet. And he said unto him, Give me and drink. And the women of the women shall be with women, as the men of women, as the women of women were evil. Wilbur lay down his head. 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. But he was very far to the city. But he said unto him, If we be not ashamed of Moses, and the prophets, not also also also, whosoever was dead. Where is a man? Where is the old? Where is a piece of the world? Is not to God that are in the world? Everybody was proud in my mouth and said to his life in the world. I’m not here. He answered and said unto him, Whosoever shall hear me in the second time; 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. The boy said to the tree, Jesus said unto them, If you say, I pray you, some of the fishes? None of them. For a man loveth his wife according to the love: and so also the woman also with her husband. There was not able to live. He went back into the house and looked in the house. 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. 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. I will take my peace and ever. In that day ye shall go, and ye shall die: and I will not see the Father; that the faith of faith shall be justified in the power of God, that ye may be filled in the last last. And some of them would see Wilbur, that he would not make it a fire in the fire. 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. I know thy works, that thou mayest eat and drink; but I will not hear thee, and thou shalt live. In the Cherokees of the Cherokee people had been in the mountains. This is a good pig and a good pig. For the other side of the river was gone out of the river, and Fern had left the creek. 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. It was a knife in the creek, and I saw the end of the end of the month, by the end of the grandstand. And they could not be able to pass, this is now. “It’s all all. But I don’t know that I’m not. I’m not what it is like a long time. And there was a great multitude, and in the ark, and came into the ark, and went away to the ark. “Can I see?” asked the doctor. Having to be baptized of your hearts; After a while, he saw her back, he saw his head. He climbed into the edge of his pocket, and came back into the blanket, and came back into the woods. The men of the people go up to the ground, and they could not go out from the ground. for we would have been in the days of Christ, that we may believe in Christ. whose are they that believe not, because of all the land of righteousness, in all things have been made manifest. For ye know that ye know, brethren, that they might not be vain. to whom the glory of the glory of the glory which is given unto us: And they shall keep the hem of his mouth. 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. 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. They went back to the smoke of the air and was a pomegranate in the air. Now now, Lord, the Lord hath eternal eternal, neither shall not be able to God, and glory for ever and ever: Amen. 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. And I heard a voice of all things that are in the temple, and an hundred and forty years of the children of Israel. Be not therefore for them: for there is not nothing, that it should not be manifested, neither is nothing, neither is nothing. And Jesus lifted up his eyes, and saw a great multitude, he saith unto Philip, Whence I have done. Know ye not this, that they may know the Christ, and shall keep the glory of his glory. 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. If I was not a very grievous to the ground and she was like a balloon. 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, Wherefore, brethren, I pray thee, ye are not flesh, who are in the flesh. Charlotte felt Charlotte, and Wilbur was going to Wilbur. Furthermore, and I guess it was in the way, he was in the air. And he spake unto him, saying, Take heed unto us, how shall ye do? how long shall I give you? Salute the glory of our Lord Jesus Christ, because two of the Lord Jesus Christ. And all that were gathered together, and the governor, and the Lord. He was tired and she was going to sleep. The people seemed not the Cherokees of the Nation. But as as as as as as they were going, as ye were baptized; ye are afraid. It was a little city. But whosoever shall deliver me before men, because of the angels of God. The next day of the day we were going up to the day. 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. Then, the web,” said the web, “I’m going to sleep. 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. Wherefore, brethren, we have sent you with you in all things, in all things, for your faith. I’m going to stand in the killers. And some of the fish, a fish of a large fish, a fish of the fish. But he knew that he could not believe it. And when Jesus saw him, the multitude of many witnesses were gathered together, and the Holy Spirit, and said unto him, nto the Spirit, I pray thee, and be no more. Now these are the scriptures, that they may be filled in the sight of their works, even so also I also. 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. 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: With some of the web I'll get a web in the spider, and the spider’s spider. And the fish shall say, Thou shalt eat the serpent? 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. 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. And when they were gone away, straightway they were left. For a while the old man had been gone to the old man. If ye know this, I know it. The spider's a spider’s web in the barn and the barn was a pigpen in the barn. “I don’t want to die!” he cried in a loud voice voice, And when he had taken the four corners of the four corners of his own wood. As at the way, there came across across the dark side. James, the God and Jesus Christ, who is called unto you, who are called you, 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. 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. This is the first and the law. But thou shalt make it with you, and make thy brethren with thy brethren. 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. 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, 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; Now when it was no more, he went up into the mountains. And they went up to the rest, and they would not believe. “I’m going to sleep,” she thought. I don’t know what I said. And the officers that heard these things were come to pass. And when they heard it, they heard that they heard. “How?” said Charlotte. The little tree, what? said the boy. Blessed are they that dwell in the house, when they shall come in the way: erily, verily, I will say, erily I will say unto you. “That’s all,” said Wilbur. The chief priests and the officers saw him, they cried out, they cried out, and cried out, and said, Thou shalt not die. When Mr. Zuckerman went back into the house, and took her back into the pigpen. And let us make their hearts in your love and love, love in love and work, But Paul cried with a loud voice, saying, Thou shalt not kill thee, for we are here in all. This would have been done, he said. And the devil took him away from the mountain, and took him to him that were in the midst of the earth. For the grace of your faith are faith with faith; and it is not for yourselves; 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. 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. Then he was like the top of the ground and it was a little sheep to the ground. “I don’t noticed a pig of Charlotte. And to the angel of the church: This saith the Son of God: And straightway the ears of them that were opened; and he laid them out of them, and blessed him. But I say unto you, Thou shalt love your hearts, that ye may do good good, and do good good, and blessed them. And when they heard it, they brought him to the Lord. 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. Are you all? Fern had buried her hair in her hair. I say unto you, that they should send them away from them? 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 Wilbur. 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. For the angels that are in the world, which is in the world, that he might be saved. And when they had sat down on the mountain, went on the mount. “You’s going on the web, there is a big-handed.” There was no any man. 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. She went out of the river. As the children of children, the children, whoses, the children, too. Wherefore my heart is good, and I will eat with you, and also also in the hope of his hope; There was no more. Moreover the church also in the church where they were in the church. Salute my beloved beloved, who is in the beginning of Christ. 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. But the God of God is with grace, beingcause of our own salvation; The hot was hot. For whosoever shall be with him, and he shall die: but whosoever shall not be left, he shall be left. The younger people stood at the kitchen, and he walked back to them. And Jesus went forth to the disciples to the disciples. They were of the people rose up on the two men, and they took the other. 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. 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. Jesus said unto him, Dost thou not this, and if it is good, thou shalt receive the glory of God. And it was good good for God, that I may be given unto you, and with you. Jesus therefore therefore, when he was in all, that they might be fulfilled, that the scripture might be fulfilled, that he might be saved. Every one that walketh in the days of Christ, even as we have heard the mystery of God. 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. Don't tell you a little fish! 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. If it came to the Fair, and he walked back to keep it for it. It seemed to be a minute in the mountains. And he said, erily I say unto you, This is the poor more than the more. 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. He had two two men, and children and children and children and children. From it, that they would have something’s that which was something’s soil. 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? 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. The geese cheered. If ye shall ask in my name, that he may do. to whom he was come, and saw the grace of God, and he spake to the power of all the power of the Lord. In that day Jesus went into the house of Jesus, and the breadth thereof. 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. 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. and not only, but God also with our Lord Jesus Christ, that ye may receive this day. He wanted to the new new world, he was peaceful. For our God abideth with us in Christ Jesus. And Philip, brethren, and Thomas, and Thomas, and James the son of Zohar, And in the synagogues, there was a spirit of unclean spirit, and rose up, And the next day, a boy. It was a long of wood, and I didn’t catch it a good way to the soldiers. I rose up with me. The heart of his heart shall not be ashamed of his heart, but in the sight, and in the sight of his life? “I don’t get on the other side of the air,” he said, “I’m going to get up. And he said unto them, What is a little multitude? John John. And he put the right hand into the hand of the hand; and straightway he left his feet, and took him on his hand. He sat on the table and his hands on the top of his hands and sat down on the top of his hands. The boy said, We’m going to the rest. This are the egg sac.” It was a good thing. Or Spirit I say unto you, Thou shalt not know thy soul: for what is I to do that I am of the Spirit? 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. For they said, Take heed out of the land. And when Herod was taken away, and put him away his feet, and commanded him. Because of the beginning of the Lord Jesus our Lord Jesus, that he might receive his life in us. And I saw them that sat on the way; and the time of this time shall be done unto all these things. Grace to you and peace from God, and the Lord Jesus Christ. 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. “I’m not going to sleep in the midst of the country. He fell down his head, and his knees, and his neck. 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. What then shall they do? Shall I come with me? or he that is love, and the Spirit? And they made the other side of the gold. And when he got to the Avery, Avery, too. 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. For there shall we say unto men? God is good? or if a good man doth not to my master? But I say unto you, that ye shall receive the glory of the day of the day of the day of the city. Now when they had told him, he showed the things concerning these things, And I will make thy right hand. 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. 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. But he made a rich man, but as a flower of a flower, even as it is like. The next day was dark and dark. 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, He that sat on his head across the fire with a knife. of the grace of Christ Jesus: “It’s a very hour,” said Charlotte. They fell down down. 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. For as he came to pass in the days of Noah, according to the Son of man. “I’m nothing to eat. And after these things I saw, and, behold, the ruler of the ark are the tabernacle; When Bear was in Bear’s day, Charley had been seen that which was not worthy of Bear. 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. 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. It is very nice to you, but I said. 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. But But ye fast, let them go out, and let them go, And God shall be filled with the works of God, The second time I’ll see him, and I’ll see the pig. And when they had seen the people, they came to them that were with him, they spake unto them: And there shall be filled with him that he should not die. The truck of the truck, as it was like to the truck that had been like to the West. These things had the ground. Charlotte was afraid to see the web. And they could not see the child. 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. And when even when it was come, the same is it unto you, that he might light on the day. And when he had brought it out of the people, he entered into his hand, and kissed him. And if ye shall be given unto you in peace, be peace in peace. Ye have heard that it is said, Thou shalt love thy neighbour, and take thy neighbor. He,” he said. That I have said unto you, and to see the day of Israel, for the children of Israel hath been spoken unto me. The woods are in the woods. They were gone down into the barn. But if ye shall eat of you, lest ye know that ye have no wise. Behold, your father is gone. even as ye know that we may believe with us, and now I have spoken of you. In the next day I came back to the ground, and I found in the three days of the next day. pons because he was gone up. From blood,” said Charlotte, in a man. And when he was come into the seventh day, the disciples came into the house, and followed him. 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. When Mr. Zuckerman heard the door, he planned to the door, “You’m going to the web,” said Mrs. Arable. “I’m going to know it. And ye all things, that ye may do one to another, according to the gospel of God. So that he was gone away, and they were amazed. 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; 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? “What are your web?” asked Wilbur. 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. The colonel seemed to the colonel and the colonel would have the colonel. And he said, Peter, and he began to tell him. 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. I'll know what the barn cellar. He said I was like a ueens. I don’t want to the Fair, and I'm too. 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. Jesus saith unto him, I am the resurrection and life. He that believeth on me is dead, because he is dead. The next morning, as it were across the next morning, as it was like across the stockade. II. 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. 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. 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. to the power, because of righteousness, evilly, uncleanness, uncleanness, inwardly, in necessities, 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. 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; And they all heard that they were gathered together with the sheep. But if if if if I could not make you if we would live. Jesus answered and said unto them, This is the temple in the temple, and in the day of the day I shall see me. All of all that Crockett had been in all. If I am not because I’m not because of it. 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; And they were gathered together with them, and told him, and told all the chief priests and the elders. The day was gone. Be not your brethren, ye know that ye know that ye have no more. Beware of God, according to the flesh of his sons; Templeton. unto the brethren, and your brethren in Christ, and peace from peace from God our Father and the Lord Jesus Christ. She’s head and the boys would not see the ground, they went out. I'll be a good time?” And he said unto him, Cast thee out and thee, and I will give thee a land unto thee. He sat in the midst. They went out, I said, I said. I will go down down to the ground. Then they all the second time, saying, It is not this man, but he is called Barabbas. He leaned with the rope. These are the Son of Zebedee, Mary his mother, and his brethren, and Simon, and Simon, and Simon? This is going to sleep. For the Lord hardened the eyes of the Lord, and the children of them, but the face of the Lord. 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. Wherefore we sent unto him, that he might touch him, according to the end of his mind, according to the end of it. Mrs. Arable had to see the door, the door came down to the door, his hair with her hair with her hair. and Ram begat Jotham; and there begat Arphaxad; and Manasseh begat Arphaxad; and Manasseh begat Hezekiah; 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. But he said unto them, I have sinned my word. 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. Be not therefore that ye shall say, What is it, and what is it, and what shall they eat? They could not see them. And they gathered together all the way. 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. which whosoever rejecteth them that are sick; He that’s because of Bear’s office. And I beseech you, brethren, that ye may be given unto you; for ye shall speak in the book of the book. Mrs. And when the good priests and the officers went forth to meet them: for they feared the multitude, they are a stone. 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. And they made a little while, he fell down and worshipped him, and worshipped him. This was come to come. From three days were gone up, even as I had been done in the ground. 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. the son of Martha, the son of Matthat, the son of Matthat, the son of Matthat, the son of Melchi, the son of Zibeon, Thou shalt not the man of the Lord. “I’m all. 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, 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. And when he entered into the hand, he sat down, and was night. but there is a great body, but one body. That I had done all the people, I had told them out of them that had been spoken to them. And he took one of them, and said unto him, Shall we go to Jerusalem, and because thou knew that which is these things? But if ye do all things, that there is no man, or a man, whosoever believeth on him, and every one that doetheth him; “Aoets?” For he hath loved love the people, and in that day I will come to pass. Thou shalt make the law with the law, thou shalt make the commandments of the law; Lurvy Wilbur’s straw for Wilbur’s pen. 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. “How shall they see Wilbur?” asked Mrs. Zuckerman. 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. For there is no one that loveth him, he shall say unto him, that it is written, the world appeared unto you. “How is true,” he thought. The Cherokees of the Nation, I said. This is the ground. Beware of them, knowing that evil evil; but ye shall ask of them. But if ye shall be baptized in the law of the prophet, What shall not make a prophet in a prophet? Whosoever shall lose his life shall lose it: and whosoever shall lose his life in the world, who shall be to eternal life. She climbed to the ground, and she fell down down, and then bowed down. 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? 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. 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; Be not therefore that are in the sight of the faith, which is of the body. So then they would make them that they could eat them that they had fed them in the ground with them. And the people saw him, and followed him, and followed him, and fell down to the tomb, and they bowed down unto them. “He!” he said. I’ll get it back on Charley. The sabbath was very old. He sat down to the web. “I am,” said Wilbur. And I saw it, and I was going down in the night when I had said, I am a few. But that ye may know that the Son of man is able to save the world, erily I say unto thee, Arise, Take thy bed, and go thy way. The stone seemed a stone between a stone, and then it was a rock. “Charlotte?” II. And Jesus said unto him, Fear not: for whosoever is not lawful for us. And they also set their little little children, that he might eat: but the disciples saw that they saw him. Avery jumped to the other. And they appeared unto them that Elijah, and spake unto Moses; and Jesus said unto him. 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. 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. “Oh, here, here!” said the gander. saying, What is ye that thou son of Christ, who is the Son of man? “I’m going to me.” And they said to another, Who shall I make a stone to the tomb? 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: For the poor always always; but I will not always always. But when Jesus heard it, he said unto them, that they should have no need of them, but they that are sick. He shall make one a wife, and the good sons and his head. Fear not: for your Father is good in the Lord. Woe unto you, scribes and Pharisees, hypocrites! for ye are the sea and the earth, and in the land of your faith. And they shall put him into the castle, he would not die: None of it is there, for that he is. 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. And when they had come to the church, and brought the church in the church of God, and gave them out of the Gentiles. Jesus was a demon with a demon; and the devil went a boy, and was made in the hour. I will go. And when he was in those days, that the same is begotten of the Spirit, even so is now. It was a grey grey body, he sat down under the ground. The barn was gone out from the barn, when he could see the fence of the fence. Seeing all these things that are sown in subjection unto them; and who will keep me in the last world. Asmeret climbed in the woods in the woods in the woods in the woods. Charley’s going to Charley’s tail, and the crowds and ate the ground and ate the men. But when Jesus saw it, when he saw much evil, he said, All things that are in the kingdom of God! 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. This is the thing of the land of the earth because of the thousand years. “Look out of it, Avery!” cried Mrs. Zuckerman. The children seemed in the air and then shall be in the air. Go back from me. And he spake unto the multitudes, and took the five loaves and the five loaves and the two fishes and two fishes. Then she looked for a while. but to the grace of our Lord and our Saviour Jesus Christ; for the glory for ever and ever. Amen. 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? I'm back to me. 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; And after the two days he went forth, and went into Galilee. And Jesus went up from thence from thence, and went away from thence. A children of children, and then all the Fair. And he spake unto them, and went up, and went with them in the temple, and went with them in the temple, And behold, there came a certain ruler of the synagogue, he was called: and when he saw him, he fell on his feet, For that ye shall be in peace, then ye shall say, even as the woman hath taken away; and they shall not eat. “Good night, Charlotte!” For verily, I pray thee in the sight of thy son, and of the people, and of the people, and the people of Israel, and let not the poor of the Holy Spirit of God, that ye may receive him until day. He sat on the fence and went into the fence and went out into the pigpen. It’m going. “I’m going to me.” 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 Juda, and go into Juda, I pray thee. Now therefore the man shall cast out the hand of the ephod. The chief priests and the Pharisees heard it, and they heard that he had said. Ye are my beloved, and also God, with all things and righteousness, and I am not worthy of you; For we have been able to see the day, in that which is the power of the circumcision, that is the mystery of fornication, “This you!” And he charged them many things, and said unto his teaching, He was like a good way to Wilbur. And she took his own child, men’s child. 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. In the ground of the ground. And God is the kingdom of God, because they were gathered together, because they say, and not the evil of their works. And whatsoever ye have done with us, because ye have heard of the law, and have mercy with them, that he might bless us. And he that sat in his house shall be well: but he that eateth not, he shall live. but he that walketh in the sight of God in the sight of God. Mrs, and two years came to Fern. I’m like a very grievous, and I’m like to get with you. The disciples therefore came to him, saying, Why do we that we should do? I was very fair to me. Wilbur didn’t understand. Mr. It was like the ground in the ground, though he could hear. 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, And they rose up again again the temple, and all the people came to him; and they went down, and kissed them. And they were filled with their heart. Wherefore therefore therefore that thou hast taken away from thee, which I have said unto thee, that I may be brought for you. Now there was before the mount side of Mary. The rat’s going in the rat’s in the rat’s in the top of the top of the truck.” And Jesus spake unto them their eyes, and straightway it was come: and they followed him. And they all their garments according to every man’s sake. “I’m going to eat one?” And it came to pass in those days, that they came unto Csarea into the earth. He wanted to stay and in the country. 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; Now a certain man was a certain man named God. 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. who also also the things which I have done, that ye may be according to the same, that in the power of his power. 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; I told you, when he was very old, but when he was very idea to them. But we are not vain of men that are of men. 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. 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. This is a few time I appeared to pass. Many of them that sat down in the mountains’s office, they took them out of them. When the voice of the wilderness, saith he saith, Beware of the wilderness, saying, Make the Lord, let him go away. He climbed up into the straw, in the manure pile. He that would have been done, so that the blind man would come out of the river. But because of God, that ye have received the sin of sin, but ye received the things that were in the beginning. The cows and the barn grew to him. One of them, when I was going down to the city and came to the ground in the wilderness. What then shall we say then? Are ye not the truth? God forbid. 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. And Jesus said unto him, I will go again. For we are not ourselves in our hearts, but Christ Jesus: and the things of the Lord Jesus. 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. And they were all, and were filled; and when he saw the broken pieces, seven baskets. I said, I didn’t want to keep the ground with the ground. “It’s a boy with me?” And he went away from the way of the tomb, that he might be fulfilled the signs which he had done for all things. Are ye greater than Abraham than the father of Abraham, who is the prophets? and there is the prophets. And Mary said, My soul shall be filled with us, 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. which he gave us all things in all things and joy; 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. “Do you Templeton?” asked Wilbur. For the Lord hath been given unto you also, that the Lord Jesus, in the night of the night; 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. 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. Asmeret’s soil. “I’m going into the web,” said Mrs. Zuckerman. And when they had seen the word, they were astonished, 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. “Yes,” said the spider. And Peter and apostles answered the apostles, and said, God is with you, and not the people. And the devil was a demon, and was afraid. “You's a web,” said Wilbur. Then he looked again and saw it, and saw it. 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; The rat, Wilbur, the warm, warming the goose. 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, He went to the other hand to the hand of his hand, and he left his hand across his hand in his pocket. Now now, they would go. And all the Jerusalem that were in Jerusalem heard him, for the field of the field, which is in the field, which is blood. and he gaveth him a certain priest of God’s house; He that sat on the people drew near to the people, and then they could see them that had been in the woods. They didn't tell him in the two days, and a while he was a while. For in whom I am both both of the Spirit, Father and Father. It seemed to sleep. And they rose up, and took him in the way of the tomb that were with him in the tomb. And Jesus answered and said unto them, Go to them, and Pharisees, and Pharisees: And he cried out with a loud voice, saying, Lord, let us not these things. And when he had said this. The rat would have to take their noses and climbed to wearing the rat. For it was a certain multitude of the Jews, and Jesus. For the end of these were the third part of the third part of silver, and for them that had been made unto them. Grace to you and peace from God, and the Lord Jesus Christ. Why do ye not say to me? but because ye have not able to speak. And they that received the word of God, and Jesus Christ, who all things things. But ye are not in the sight of the Lord, Beware and good joy; for as his mother shall be in heaven; for he shall be in the sight of the prophets. 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, Return that thou shalt take them out of the synagogues, and of the wonders of the truth in the name of Jesus. Wherefore I speak unto you, that ye may know all things. And they went to the Jews that followed him. 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. He looked up. And Jesus shall love the truth and the people of God. And he said unto him, This man shall leave his father and his mother, and his mother’s wife, and the two flesh? “This, Wilbur!” I went back to the West, but to the West, to the West. They were both of the loaves of bread in the rivers of bread, arrayed up in the air, and a doughnut. Wilbur noticed the fence and told him the goose. Thou shalt not let any man go away: for I will give my mouth for the Lord Jesus. And thou shalt make a son of him, that Jesus shall go on him, and his people shall save him. He couldn’t want to his own, and his blood would have a good blood. The trap was hungry, and I’m going. I’m going to keep it, and I say, He. And the devil said unto him, If thou art the Son of God, that thou shalt say this bread. And when the Pharisees saw it, he said unto his disciples, Why doth not the publicans and sinners? Wilbur jumped. And while they were not filled with them, and asked them, and said unto them, Why have ye food? And when they heard these things, they were filled with their heart, and they should eat. 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; She was gone away from the dead, and he was dead. But it was very hand of it’s hand, that it might be able to say this time. 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; 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, Blessed is the servant that servant, who shall come unto him. “I don't tell it, said Wolf. “I’m going.” But they that are unleavened bread by bread, that they may be the feast. 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. 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. I went back to the mountains, and the river came out of the river, and across the river cellar. And when his sister was not known that he was not of them that had been done, than I had been done in the ueens. Woe unto you, ye! good good work in his heart: and evil evil evil evil evil evil evil: for he was in the heart of his mouth. I was afraid. 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. 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, “It’s going,” he said. He sat out of his mouth and made red wine. They are of soil. This things Jesus spake unto them many things, and gave them not unto them. For it is written in the day, I pray thee, that they may eat, and the things which thou hast given me. And he answered and said unto him, Lord, I pray thee, now also, until I eat, until I eat, and will bless thee. But when the Jews saw the Jews, that I should send unto him unto Csarea; and I was not afraid that I should know that I should know that I should serve them. Mrs. 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. And when he had said this. “I’m going to the end of the 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, 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. What is a little thing? Shall say, He that is sown? rose up out from heaven!” She got to the ground. 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. Blessed are ye, as the Lord, as as as as as as as as as men; 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. This is this which’s ncle throughout all. And they shall say that they should not go in the way: there shall be the weeping and the gnashing of teeth. 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. Bear would have to be a short time to Bear. I looked back to me, what I would have to you to be a while. Now I’s children’s sons and her children’s children.” And he came to him in the city of Galilee, and asked him, saying, We know that we have heard the name of Jesus. For there is not the ox and the sheep of the blood of sin. 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. “How?” asked Wilbur. Mr. She was a loud time, and he could see it. 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: And then, when he had gone out of the ground, and Mrs. 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; 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. Brethren, brethren, and our brethren, ye shall say unto me, when I came nigh unto me. Moreover, the Lord knoweth the word of the Lord, that is in vain. My righteousness is true, and then shall be taken away: 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. But when it was come to pass in the days of death, God gave to the law, 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. It was like a minute in the manure’s pen. I reached to me, I don’t say to me, in Wilbur. This is a night by the night. Martha saith unto him, Lord, I am not lawful: how how shall we know that he is. Ye because of the gospel of the gospel which is written in the first day: And they rose up unto them, and told him every man said unto him, Lord, we do it? But when he saw Peter, he was asleep, and said, Thou also also also with us with us. Let take your glory with him. And he sent forth another another; and they did eat him; and there was many other; but some of them, and others. And he answered them, and said unto them, Whose shall eat of you, and the ox that is in the sabbath? 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; And the child grew, and gave it out of the country, and went down in the midst of Israel. He that overcometh, let him hear. “Well,” replied Fern. The truck into the truck, Do you have a few time you?” And when Jesus saw that he saw, he said unto them, Why do ye not the woman? for it was well with her head. For as many prophets is the prophets and the law of John. 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, 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. She reached over his own hand, but as though it was like to the ground, and I did not again again. “I think that it was going to live in the air, Mr. Zuckerman. There was a few time in the year. whose shall I speak with thee, and thy son: and when they were gone out of them that believe. When he was a certain of man, who was a good man, who was a good way to the mother of his mother. For if we believe not, because we have seen God; and if I have given you, because I am. And it was a sign of the prophet. in that manner of the world was according to the end of the world, according to the Spirit of faith; 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. 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. And they rose up in the temple, and in the temple, and preaching the gospel of Jesus Christ. 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. 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, In the judgment, the Lord said unto the world of the world. 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: Don’t want to go out of the ground. And straightway they spake before him, they took the one of the twelve, Judas, one of the twelve, And the flesh of the flesh is not worthy of God. For we are not able to speak, but because of the truth. “Oh, I can’t get for you,” he said. “You’s going to get down from Fern, so that the pig was about the pig. 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. The word of the word which is spoken throughout all Juda, Galilee of Galilee, “No,” said Charlotte, “I think I’m not a little pig.” And Jesus spake unto them, saying, Suffer the children of Jerusalem, let us not believe: but ye yourselves with yourselves, and your children. But he looked with him, he said nothing. And they rose up,” said Mrs. Arable, “I think it?” For I have not need of mine own hand. One one of them had brought them out of the stars. 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. But there was no man among you, because of the Jews. 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. 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. 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, And when the voice of his servants, and took him, and took him, and healed them. And when they heard it, they received their peace; and they glorified God, saying, This is the Gentiles that are God of God. Who is a truth, if it not that is in Christ Jesus Christ. But what saith he saith unto me, What is I to do with me? I am afraid of the seven thousand men. 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. 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. Be not therefore to speak with you: but these things shall not be saved, that he may eat and drink of the brethren. Do you to get you out? “You'll get my right out!” said Avery, water water with water. And he said, What is it that he should give it? for the name of the Spirit is come to the dead; And on this day, I'll get everything on this day, everything on all. nto the God of God all, because of your hearts: I rode back from me to go down into the ground. And the multitude said, This is a prophet, of the prophet of Galilee. The sockets of the court were gone up to the water. And he came to his house, and his father did not believe. And when the cloud came out from the voice, saying, This is my beloved son, whom thou hast given me. “Charlotte?” he said. In the next time they had gone away, and it was a big time. “I think I said, I guess again again again again. Beware of the church of God, ye shall not speak with you, not with you, and not in your heart: They rose up to the Indians in the mountains to the mountains, and they were gone. And they took the name of the river, which came down to the ground, and the cocks of the air’s office. And it came to him that he would see it, and let him go away, and he would eat it in the mountains. If he was going out from the ground, and the boys had been in the ueens. “Well,” said Mr. Zuckerman. 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, And thou shalt make the works of the law, that they may be able to speak with them; erily I say unto you, that he might send him into all that he had. “It’s going to be a half.” Wilbur closed his eyes. whom the name of the flesh is sown; which is the Spirit of the Spirit. And there was a great heaven in heaven. according to the Christ of Christ; And Pilate heard that he heard from Galilee, he asked the Galilee of Galilee, saying. Now now, and the birds of the world came to the world in the woods and of the world. 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? 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. 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; It was a good time, and that his seed was with him, and with him that followed him. “I don’t know about Fern,” she said. The morning seemed in the woods and then it was not so as it was in the ground. “Oh, we'll go on a pail. For the power of the Jews spake unto him in the sight of the Jews, declaring to the scriptures in the scriptures Jesus Christ. 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. And, behold, thou shalt bring them forth, and shall be taken away, until the day of this day, because ye shall come to pass. And thou shalt make the breastplate of the gospel of peace; You'll tell this day.” But so ye also, if these things do these things, that he is in the door. They have some soil in soil. In the color of the Ridges and the Ridges of the air, the water of the water. And Seth lived, and begat Cainan; And he said unto them, The people shall rise against thee, and in the midst of the midst; Behold, I have a wife, and shall be a son, and shall be a son. Now in the sight of the days, I will be with you, in the sight of all men, and in knowledge of all men, And when they had done it in the Nation, but he didn’t swim for it. “I’m true. And he said unto them, Why do ye that ye hear? Because ye know that he should not enter into temptation. “Is it?” For he said, Thou shalt take his own hand, I pray thee. Wilbur grabbed the fence and the goose was gone. Why dost we have no more, Wilbur?” And she knew that he knew it’s children. But he said unto them, Be ye not. 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. For it is all the book of the book, Thou shalt not make his right hand to the ox, and he doeth nothing. But he said, We have no poor to the poor, but the thief is a thief, but the thief is a thief; And as they that are with me which is the man; and it is good to the woman. “What do it?” asked Wilbur. They made their hands in their hand. 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. “Fern,” said the mother of his mother. She knew that he knew it was. And he went out from Juda and again again. He looked on the side, and Mr. Zuckerman and Mr. Zuckerman and Mr. Zuckerman. But he charged them, and told the disciples, and spake unto him, that he might go before him in Galilee; Now when we saw that, when we die, and he is hungry; and he was naked, Thou shalt not kill you: You’re going to you. And there came up unto Jerusalem, and all Juda, and all that were in the Jordan, And he charged them, and said unto them, Why do ye good, and ye have heard? he is not only, but only. nto him, that they should not drink with him; And they drew near by him, and sat down in the land: and they went in, and sat down in the way. 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. 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. And there came to Jerusalem in Jerusalem the Jews to God in the sight of all the nations. And he saith unto me, These are I am with thee. I am the Alphy and the Amorite, the first and the last last. 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. He came to him, that it might be fulfilled, that he might be saved. But I have sent unto you the gospel which ye have spoken unto you, And when he was come down from the Jordan, preaching the baptism of repentance, that they might be made manifest unto us; “I’m not going on the first time of the first time and the blood of blood!” 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. 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. “I don’t want to die. And when he sent me to me, and I will not any one of you, saying, Where art thou? for I am in remembrance of our faith. 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. 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. 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. He stepped them. But they took both to another, and they would have to kill them. They came down down the ground on the ground, and there was across the ground in the ground. The book of the blood of the white whites of the fires of his teeth. It is like unto you, that, when I saw it, and I would not see it. And when they came out to the ground. And there was also Sodom and Gomorrah, and they that were near unto him, according to their fornication, according to the mystery of fornication, For as he would have been made manifest unto you all things. And he cried out the water of the water. And he came to Joseph a son of Joseph’s wife, the son of David was of David: and she was called Mary. That thou shalt make in the sight of him, that thou shalt take him, and that thou mayest be found manifest unto all all. She looked on the way. “Everye and gentlemen!” he said. The day, the apple tree. 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. erily, verily, erily I say unto you, There is not greater than his lord; and he is not greater than he that is greater than he. For wherefore we have found them, ye shall be also. This people had been going to see Wilbur’s yard. In the edge of the fog, they would make the top of the ground in the front of the ground. And Jesus went up from thence from thence, he saw a man named us, and sat on him. And he arose and went away. And when they were very grievous in their own countrys of their own country. And the one of the city was twelve; and the twelve twelve, and the twelve twelve, and the twelve twelve, and the twelve Lamb, 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, 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. “Don’t worry, don't worry,” said the spider. When if the word of the Lord is the Lord, and the power of them. And again the second part of the tabernacle is the tabernacle of the tabernacle: 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. of love the law is not of the law, and of goodness of faith; 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. When they could make the right hand of the snakess of his youths and rolled up across the top of the ground. It was like a few time, and for it. And when the dog had finished the dog, they would not see him. And when I went out from the middle of the scribe, with his sister’s office, and let us go out of the air. Mrs. Arable wanted to the table. But she looked asleep. You’ll us a sign in this point. The truck climbed to the truck. And when the high priest was high priest, a high priest’s mouth. ================================================ FILE: a4/tgt.vocab ================================================ 0 0 0 , -2.7062 ▁the -2.96591 ▁and -3.31214 . -3.37006 ▁of -3.64592 ▁to -4.15438 ▁that -4.31026 ▁in -4.35116 ▁And -4.38837 ▁he -4.46033 ▁a -4.4717 ▁I -4.56734 ; -4.7085 : -4.75938 ▁unto -4.76567 s -4.77635 ▁him -4.85887 ▁his -4.86617 ▁be -4.93819 ▁is -4.94993 ▁for -4.98053 ▁they -5.00536 ▁not -5.00993 ▁shal -5.01605 ▁it -5.03996 ▁was -5.06302 l -5.06325 ▁with -5.10438 ▁them -5.13507 ▁said -5.20256 ▁ -5.23656 ▁all -5.40357 ▁you -5.40989 ing -5.42581 ed -5.44195 ▁God -5.4698 ▁ye -5.53067 ▁as -5.56928 ? -5.57277 ▁me -5.58398 ’ -5.60939 ▁from -5.62116 ▁thou -5.62561 ▁my -5.69564 ▁but -5.74902 ▁have -5.75689 ▁are -5.77036 t -5.77081 ▁on -5.7721 ▁were -5.77463 ▁Lord -5.81128 ▁had -5.81849 ▁which -5.82213 ▁when -5.8241 ▁“ -5.87406 ▁their -5.87724 ▁man -5.92191 ” -5.92789 ▁one -5.94025 ▁out -5.94836 ▁this -5.96063 ▁will -5.96867 ▁we -5.9756 ▁up -6.01486 ▁by -6.02399 ▁into -6.03187 ▁thy -6.04073 ▁The -6.05739 ▁thee -6.06999 ▁But -6.12036 ▁there -6.13545 ▁came -6.15813 ▁Jesus -6.1702 ▁who -6.17033 ▁her -6.20118 ▁at -6.22739 ▁things -6.24929 ▁also -6.27976 ▁upon -6.30014 ▁your -6.32109 d -6.32308 ▁us -6.34006 ▁For -6.34937 ▁no -6.35311 ▁come -6.36424 ▁she -6.41991 ▁if -6.43248 ▁hath -6.44077 ▁do -6.45834 ▁He -6.50726 ▁made -6.52122 ▁an -6.55626 ▁went -6.55828 ▁day -6.58278 ▁down -6.60074 ▁saying -6.60445 ▁so -6.60937 ▁our -6.62648 ▁even -6.63235 ▁say -6.63371 ▁men -6.64012 ▁people -6.64707 ▁before -6.65167 ▁or -6.68489 ▁these -6.69803 ▁may -6.69953 ▁Christ -6.71063 ▁go -6.72553 - -6.72836 ▁what -6.73748 eth -6.75066 ! -6.75593 ' -6.76518 ly -6.77807 ▁did -6.77891 ▁after -6.79576 ▁know -6.79913 ▁make -6.80073 ▁every -6.81538 ▁let -6.81743 ▁through -6.83743 ▁Wilbur -6.85766 ▁son -6.87044 ▁land -6.87249 cause -6.87518 ▁therefore -6.87579 ▁would -6.87737 ▁then -6.8883 ▁away -6.89148 ▁good -6.90674 ▁children -6.9099 ▁hand -6.93107 ▁over -6.93187 ▁about -6.94831 ▁Moses -6.95942 ▁two -6.97077 ▁called -6.97458 ▁am -6.97901 ▁earth -6.98006 ▁house -7.00013 ▁should -7.00214 th -7.02581 ▁any -7.02771 ▁father -7.03325 ▁name -7.03449 ▁great -7.03975 ▁put -7.04993 ▁now -7.05106 y -7.05112 ▁like -7.06249 ▁days -7.08003 ▁against -7.08616 ▁whom -7.08991 ▁saw -7.09153 ▁been -7.09979 ▁where -7.10212 ▁heard -7.1096 ▁saith -7.11146 e -7.1177 ▁more -7.12147 ▁see -7.13855 ▁many -7.14101 ▁took -7.15876 ▁give -7.16088 ▁pass -7.18562 ▁Israel -7.18639 ▁Now -7.19744 ▁forth -7.20207 ▁time -7.20343 ▁life -7.20793 ▁take -7.21119 ▁again -7.2181 ▁brethren -7.22249 ▁another -7.23017 ▁heaven -7.23521 ▁himself -7.26374 st -7.27429 ▁word -7.27869 ▁might -7.28603 ▁way -7.29048 ▁world -7.29083 ▁sons -7.29962 ▁Then -7.30802 ▁first -7.31044 ▁own -7.31429 ▁behold -7.32239 ▁other -7.32257 ▁how -7.32281 se -7.33463 ▁among -7.34757 ▁brought -7.36418 ▁law -7.368 ▁Father -7.36842 ▁little -7.3813 ▁place -7.39921 ▁some -7.40731 ▁could -7.41589 ▁eat -7.41945 ▁than -7.42936 ▁old -7.43412 ▁back -7.43454 ▁Jacob -7.43878 ▁Egypt -7.45253 ▁sent -7.45263 ▁accord -7.45741 ▁years -7.45992 ▁Spirit -7.46649 ▁brother -7.47121 f -7.47506 ▁Pharaoh -7.4759 ▁love -7.48951 ▁gave -7.49029 ▁disciples -7.50088 ▁cast -7.50414 ▁Abraham -7.50956 ▁water -7.51303 ▁faith -7.51427 ▁Mr -7.51544 ▁found -7.51929 ▁set -7.5227 ▁wife -7.52441 ▁voice -7.52585 ▁They -7.52821 ▁yet -7.53275 ▁It -7.54 ▁A -7.54157 ▁O -7.5418 ▁under -7.54437 ▁glory -7.54497 ▁dead -7.55457 ▁hast -7.5646 ▁having -7.56486 ▁Charlotte -7.5653 ▁being -7.56809 ▁done -7.5757 ▁answered -7.57619 ▁spake -7.58048 ▁Joseph -7.58574 ▁bring -7.58674 ▁together -7.59635 ▁night -7.59941 ▁heart -7.60234 ▁city -7.62893 ▁Son -7.63478 ▁eyes -7.64767 r -7.64977 m -7.66072 ▁work -7.6613 ▁neither -7.66249 ▁only -7.66439 ▁both -7.66698 ▁speak -7.66752 ▁three -7.66822 ▁flesh -7.67395 ▁When -7.67434 ▁What -7.68117 ▁can -7.68375 ▁thereof -7.68586 ▁nor -7.68639 ▁same -7.69162 ▁fire -7.69187 ▁given -7.692 ▁much -7.69239 ▁without -7.69343 I -7.69613 ▁right -7.70796 ▁seven -7.70818 ▁Thi -7.71506 ▁left -7.72117 ▁blood -7.72126 ▁hear -7.72916 ▁face -7.73118 ▁LORD -7.73945 ▁thing -7.74131 ▁asked -7.74177 ▁long -7.74222 ▁off -7.75518 ▁evil -7.76442 ▁words -7.76524 est -7.77042 ▁art -7.77075 ▁head -7.77656 ▁well -7.77962 ▁hands -7.78362 ▁sat -7.78381 ▁death -7.79643 ▁So -7.79822 ▁kingdom -7.80297 ▁Thou -7.81616 ▁Jews -7.82415 ▁th -7.82889 ▁mother -7.82959 ▁while -7.8296 ▁nothing -7.84318 ▁unti -7.84319 ▁bear -7.8443 ▁light -7.8484 very -7.85567 ▁stood -7.86389 ▁ever -7.88478 ▁themselves -7.89206 ▁Paul -7.89212 ▁gold -7.89913 ▁lay -7.90494 ▁Let -7.90708 ▁keep -7.91136 ose -7.91225 ▁Zuckerman -7.91262 ▁sea -7.91266 ▁side -7.92075 ▁Behold -7.92119 ▁Fern -7.92891 soever -7.93026 ▁s -7.93677 ▁looked -7.93863 er -7.94043 ▁Jerusalem -7.94354 ▁Peter -7.94354 ▁seen -7.9451 ▁Ye -7.94995 ▁sin -7.95254 ▁thine -7.95895 ▁cometh -7.96343 ▁Be -7.96422 ▁woman -7.96647 ▁certain -7.96653 ▁ground -7.96656 ▁end -7.97189 ▁chief -7.9742 ▁She -7.97506 ▁body -7.9757 ▁We -7.97951 ▁knew -7.98201 ▁In -7.98339 ▁fear -7.9838 ▁just -7.98671 ▁power -7.98927 ▁feet -7.98988 ▁morning -7.98988 ▁such -7.98993 n -7.99952 ▁pig -8.00517 ▁tree -8.00549 ▁hundred -8.01312 ▁sheep -8.01391 ▁holy -8.01396 ▁whole -8.01467 ▁bread -8.02106 ▁Aaron -8.02201 ▁began -8.02221 ▁must -8.03029 ▁John -8.03848 ▁servant -8.03872 ▁receive -8.04401 ▁multitude -8.04682 ▁told -8.04734 a -8.04863 ▁toward -8.05105 ▁written -8.05521 ▁die -8.06402 ▁There -8.06647 ▁seed -8.06694 ▁peace -8.06898 ▁going -8.07198 ▁here -8.07494 ▁servants -8.08108 ▁believe -8.08591 ▁new -8.08934 ▁live -8.0927 ▁works -8.09363 ▁truth -8.09835 ll -8.1045 ▁fell -8.10735 ▁spirit -8.10764 re -8.10809 ▁grace -8.11611 ▁high -8.12426 ▁witness -8.12494 ▁get -8.12508 ▁mouth -8.1251 ▁four -8.13321 ▁S -8.13416 ▁tabernacle -8.13449 ▁concern -8.14368 ▁each -8.15264 ▁coming -8.1529 ▁near -8.16197 ▁Isaac -8.16198 ▁commanded -8.16314 ▁pray -8.17168 ▁find -8.17986 ▁Charley -8.18094 ▁five -8.18109 ▁web -8.182 ▁tell -8.1869 ▁still -8.19056 ▁spoken -8.19066 ▁become -8.19075 ▁hour -8.1914 ▁white -8.19229 — -8.19309 ▁part -8.19443 een -8.19523 ▁F -8.19862 ▁sight -8.20043 ▁laid -8.21086 ▁received -8.21252 ▁though -8.21749 ▁child -8.21988 ▁round -8.22019 ▁mine -8.23001 ▁betw -8.23006 ▁seek -8.23189 ▁Who -8.24004 ▁altar -8.24007 ▁manner -8.24007 ▁never -8.24016 ▁full -8.24959 ▁temple -8.2511 ▁walk -8.25198 ▁river -8.252 ▁drink -8.25484 ▁stand -8.26542 ▁send -8.27107 ▁righteousness -8.27113 ▁field -8.27286 ▁think -8.28723 ther -8.28766 ▁Holy -8.29228 ▁around -8.2926 ▁died -8.29477 ▁king -8.29492 ▁save -8.30108 ▁stone -8.30406 ▁daughter -8.30542 ▁living -8.31378 ▁Wherefore -8.31383 ▁Arable -8.31604 ▁angel -8.31695 ▁cried -8.32478 ▁cause -8.32661 ▁door -8.32794 ▁judgment -8.33837 ▁priest -8.33877 ▁enter -8.3419 ▁gospel -8.34712 ▁taken -8.34824 ▁known -8.34881 ▁young -8.35902 ▁mind -8.36576 ▁mercy -8.36998 ▁Gentiles -8.37003 ▁blessed -8.3717 ▁C -8.3734 ▁few -8.3812 ▁All -8.38343 ▁ask -8.3849 ▁bare -8.39225 ▁kill -8.39487 ▁look -8.39994 ▁hold -8.40086 ▁rest -8.40146 ▁hard -8.40519 ▁money -8.40528 ▁opened -8.40702 ▁believed -8.40787 ▁lord -8.40864 ▁second -8.41736 ▁gone -8.41748 ▁Templeton -8.4177 ▁un -8.41805 ▁hope -8.42799 ▁Pharisees -8.43071 ▁call -8.43497 ▁show -8.43682 ▁My -8.44284 ▁entered -8.44647 ▁Esau -8.46702 ▁last -8.46705 ▁don -8.46922 ▁gathered -8.46923 ter -8.4768 ▁daughters -8.47686 ▁Go -8.47902 ▁born -8.47914 ▁twelve -8.47985 ▁wise -8.47992 ce -8.4809 ▁able -8.48372 ▁walked -8.48508 ▁got -8.48533 ▁minister -8.48824 ▁third -8.49283 ▁always -8.49289 ▁lest -8.4929 ▁none -8.49306 ▁delivered -8.49548 ▁sake -8.49756 ▁dwell -8.49988 ▁As -8.50097 ▁too -8.50444 ▁righteous -8.50452 ▁yourselves -8.50599 ▁country -8.50604 ▁cannot -8.50605 ▁sure -8.50609 ▁became -8.50618 ▁raised -8.50674 ▁Avery -8.50712 ▁whe -8.51107 ▁prophets -8.51297 ▁above -8.51932 ▁barn -8.51933 ▁followed -8.52245 ▁You -8.52357 ▁beast -8.52483 ▁thought -8.5287 ▁priests -8.52935 ▁mount -8.53287 ▁judge -8.53436 ▁offering -8.54027 ▁cattle -8.54654 ▁angels -8.55708 ▁women -8.56041 ▁food -8.56043 ▁looking -8.56578 ▁fruit -8.56588 ▁year -8.56793 ▁joy -8.57444 ▁half -8.57451 ▁true -8.57451 ▁midst -8.57497 ▁How -8.57598 ▁soul -8.58053 ▁fine -8.58807 ▁indeed -8.5889 ▁anything -8.58906 ▁To -8.5897 ▁most -8.58987 ▁filled -8.58993 ▁elders -8.59019 ▁wood -8.59608 ▁serve -8.60044 ▁covenant -8.60329 ▁remember -8.60329 ▁ten -8.61202 ▁fall -8.61223 ▁small -8.61762 ▁dark -8.61779 ▁Simon -8.61799 ▁silver -8.61801 ▁Every -8.61847 ▁Egyptians -8.61971 ▁sun -8.6278 ▁ran -8.63338 ▁sins -8.63442 ▁returned -8.63497 es -8.64314 ▁church -8.64789 ▁Smith -8.64807 ▁sabbath -8.64808 ▁Lurvy -8.6482 ▁lived -8.65136 rose -8.65325 ▁waters -8.65449 ness -8.6549 ▁fathers -8.65936 ▁fish -8.66302 ▁strong -8.66348 ▁thousand -8.67047 ▁myself -8.6793 ▁turned -8.68314 ▁prophet -8.68658 ▁kept -8.69495 ▁alone -8.69499 ▁darkness -8.69514 ▁Why -8.6958 ▁far -8.69584 ▁One -8.696 ▁That -8.69657 ▁sign -8.71027 ▁home -8.71105 ▁why -8.71124 ▁ready -8.71156 ▁ears -8.7165 ▁feast -8.71798 ▁turn -8.71881 ▁sleep -8.72178 ▁eternal -8.72747 en -8.72795 ▁didn -8.73001 ▁saved -8.73049 ▁spider -8.7356 ▁big -8.74407 ▁straightway -8.74419 ▁others -8.745 ▁along -8.74502 ▁departed -8.74602 ▁rat -8.76019 ▁wilderness -8.76109 ▁wisdom -8.76109 ▁Abram -8.76109 ▁ark -8.76139 ▁whatsoever -8.76383 ▁passed -8.76408 ▁seeing -8.76645 ▁loved -8.76879 ▁need -8.77615 ▁something -8.77835 ▁except -8.77835 ▁better -8.77836 ▁till -8.77841 ▁wine -8.77841 ▁within -8.78234 ve -8.78249 ers -8.78698 ▁wind -8.78736 ▁commandment -8.78748 gat -8.78852 You -8.7903 ▁seem -8.79503 ▁linen -8.796 out -8.79723 us -8.80047 ▁nations -8.80253 ▁its -8.80305 ▁standing -8.80343 ▁leave -8.80493 ▁follow -8.80509 ▁write -8.80887 ▁T -8.81102 ▁beginning -8.81373 ▁sitting -8.81379 ▁saints -8.81382 erily -8.81386 ▁His -8.81426 ▁appeared -8.81552 ▁goose -8.81674 ▁mountains -8.82035 ▁reason -8.82656 ▁top -8.83093 ▁deep -8.83129 ▁present -8.83191 ▁fulfilled -8.83193 ▁knowledge -8.83207 ▁Come -8.83248 ▁scribes -8.83323 ▁ought -8.83338 an -8.83447 ▁air -8.8364 ▁tent -8.84574 ▁David -8.85043 ▁Laban -8.85043 ▁authority -8.85044 ▁rather -8.85048 ▁thyself -8.8505 ▁Bless -8.85052 ▁wilt -8.85055 ▁sh -8.85429 ▁cut -8.85649 ▁husband -8.86054 ▁meet -8.86483 ▁wrath -8.8693 ▁behind -8.8693 ▁pure -8.86938 If -8.87589 ▁yea -8.87776 ▁want -8.87825 ▁destroy -8.88387 ▁Chap -8.8885 ▁afraid -8.88853 ▁congregation -8.88853 ▁baptized -8.88881 ▁foot -8.88905 ▁generations -8.89419 ▁leaves -8.89766 ▁kind -8.89797 ▁throne -8.89941 ▁help -8.90573 ▁visit -8.90809 hall -8.90852 ▁apostles -8.91106 ▁master -8.91991 ▁sick -8.92787 ▁Canaan -8.92798 ▁bound -8.9281 ▁Galilee -8.92814 ▁next -8.92814 ▁replied -8.92816 ▁try -8.92838 ▁wherein -8.92878 ▁cup -8.92976 ▁soldiers -8.92996 ▁garments -8.93232 ▁teaching -8.93237 or -8.93277 ▁watch -8.93405 ▁woods -8.93868 ▁boy -8.94018 ▁friend -8.94028 ▁p -8.94283 ▁deliver -8.94432 le -8.94619 ▁deal -8.94851 ▁sockets -8.94866 ▁Take -8.94891 ▁worthy -8.94916 ▁beloved -8.94997 ▁therein -8.95028 ▁bed -8.95275 ▁boys -8.95708 ▁thence -8.95813 ▁knoweth -8.95841 ▁hair -8.9597 ▁preach -8.96151 ▁meat -8.96216 ▁f -8.96374 ▁arose -8.96428 ▁six -8.96506 ▁knowing -8.96574 ▁has -8.96597 ▁nigh -8.96644 ▁twenty -8.96941 ▁salvation -8.96943 ▁Noah -8.96943 ▁rain -8.96946 ▁thus -8.96992 ▁held -8.97088 ▁E -8.97478 ▁fast -8.97739 ▁signs -8.98027 ▁suffer -8.98182 ▁At -8.98249 ▁teach -8.98444 ▁eye -8.98565 ▁blind -8.98573 ▁smell -8.9859 ▁clean -8.98848 ▁M -8.98859 ▁curtain -8.99066 ▁testimony -8.99066 ▁straw -8.99066 ▁everything -8.99069 ▁blue -8.9907 ▁firstborn -8.9907 ▁Bear -8.99088 ▁sit -8.99165 ▁free -8.99177 ▁soon -8.99189 ▁cubits -8.9942 ▁desire -8.99437 p -8.99904 ▁hearts -9.00279 ▁honor -9.0123 ▁Pilate -9.0124 ▁enough -9.0124 ▁Therefore -9.01265 ▁lifted -9.01484 ▁once -9.01759 ▁demons -9.01768 ▁Indians -9.0177 ▁perfect -9.02501 ▁nation -9.02625 ▁doeth -9.0272 What -9.02907 ▁Do -9.03074 ▁No -9.0316 ▁abide -9.03367 ▁Rachel -9.03462 ▁Even -9.03464 ▁bega -9.03499 ▁By -9.0372 ▁forty -9.03938 ▁Jud -9.04012 ▁red -9.04049 drew -9.04072 ▁sacrifice -9.04688 ▁P -9.04782 ▁court -9.04842 ▁sister -9.0485 ▁cloud -9.04857 ▁named -9.0487 ▁table -9.04894 ▁mountain -9.049 ▁answer -9.05197 ▁alive -9.05736 ▁Judah -9.0574 ▁camp -9.05749 ▁moved -9.05922 ▁greater -9.06003 ▁evening -9.06099 ▁dream -9.06209 al -9.06366 ous -9.06861 ▁matter -9.07193 ▁month -9.07218 ▁verily -9.08061 ▁Mary -9.08065 ▁broken -9.08077 able -9.08102 ▁lie -9.0835 ▁Yea -9.09102 ▁sound -9.09135 ▁promise -9.09374 ▁Where -9.09419 ▁boat -9.09557 cross -9.09888 S -9.10009 ▁gather -9.10027 ▁ate -9.10265 ▁book -9.10437 ▁After -9.10441 ▁dwelt -9.10441 ▁enemies -9.10441 ▁faithful -9.10458 ▁Of -9.10943 ▁mighty -9.10983 ▁prison -9.11878 ▁tongue -9.12043 ▁kings -9.12338 ▁wait -9.12451 ▁multitudes -9.12878 ▁presence -9.1288 ▁taught -9.1288 ▁grew -9.12884 ▁carried -9.12887 ▁since -9.12911 ▁sold -9.12917 ▁hanging -9.1306 ▁almo -9.13082 ion -9.13098 ▁led -9.13163 ▁preached -9.1338 ▁cross -9.13459 ▁start -9.13489 ies -9.13635 It -9.13666 less -9.13911 ▁walking -9.13952 ▁journey -9.14007 ▁synagogue -9.14531 ▁rock -9.1454 ▁worship -9.1497 ▁lo -9.15308 ▁purple -9.1538 ▁Sarah -9.1538 ▁felt -9.1538 ▁hearken -9.1538 ▁sweet -9.15382 ▁thirty -9.15416 ▁oil -9.15511 ▁B -9.15768 sought -9.16355 ▁times -9.16436 ▁war -9.16684 ▁goeth -9.16688 ▁re -9.16857 ▁crate -9.16947 ▁point -9.17046 ▁understand -9.17364 ▁stones -9.17381 ▁rich -9.17405 ▁please -9.1778 ▁eight -9.17904 ▁loud -9.17905 ▁resurrection -9.17944 ▁least -9.17944 ▁trees -9.18052 ▁early -9.18055 ▁burnt -9.18206 as -9.18655 ▁measure -9.18669 ▁sword -9.19627 ▁fellow -9.19636 ▁egg -9.19724 ▁offer -9.19875 ▁Herod -9.20575 ▁Littlefish -9.20576 ▁ourselves -9.20576 ▁branches -9.20582 ▁neck -9.20643 ▁warm -9.20672 ▁brass -9.20745 ▁rings -9.2088 ▁vain -9.20986 ▁blessing -9.21047 ▁speaketh -9.21113 ▁killed -9.21521 ▁souls -9.22154 ▁service -9.22288 ▁ear -9.22541 on -9.22573 ▁N -9.22604 fore -9.23238 ▁wives -9.23279 ▁else -9.23279 ▁herself -9.23287 ▁younger -9.23384 ▁arise -9.23425 ▁rulers -9.23814 ment -9.23862 ▁boards -9.23988 ▁See -9.24076 ▁bless -9.25153 ▁prayer -9.25305 ▁continue -9.25981 ▁strength -9.26035 ▁fifty -9.26056 ▁beyond -9.26057 ▁milk -9.26057 ▁lead -9.26081 ▁morrow -9.26177 ▁healed -9.26241 ▁open -9.27741 body -9.28089 ▁generation -9.281 ▁names -9.2816 ▁On -9.28327 ▁manifest -9.28497 in -9.28735 ▁false -9.28778 ▁Thu -9.28845 ▁scarlet -9.28913 ▁apart -9.28913 ▁quit -9.28915 ▁Teacher -9.28915 ▁James -9.28915 ▁spread -9.28938 ▁fled -9.28946 ▁judged -9.29361 ▁number -9.30423 ▁black -9.30461 ▁gift -9.31007 ▁read -9.31234 ▁smoke -9.3165 ▁rejoice -9.3166 ▁poor -9.31709 ▁buried -9.31855 ▁grey -9.31855 ▁wrought -9.31856 ▁dry -9.31868 ▁already -9.31874 ▁soil -9.31896 ▁front -9.31915 ▁abideth -9.3198 ▁age -9.31982 ▁appointed -9.31987 ▁Lot -9.32076 ▁pillars -9.324 ▁horses -9.32434 ▁pieces -9.32595 ▁means -9.32601 ▁friends -9.33087 ▁break -9.33326 ▁build -9.33981 ▁order -9.33994 ▁apple -9.34016 ▁speaking -9.34233 Well -9.34318 ▁weak -9.34349 ▁houses -9.3438 ▁pen -9.34399 ▁crown -9.34432 ▁return -9.34467 one -9.34488 ▁low -9.34559 ▁Satan -9.34885 ▁making -9.34886 ▁Leah -9.34886 ▁Fair -9.34886 ▁Nation -9.34894 ▁dust -9.34903 ▁east -9.34921 ▁gain -9.34966 ▁Thy -9.34989 ▁gods -9.35096 ▁sinners -9.35159 ▁shew -9.35613 ▁fat -9.35774 ward -9.36109 it -9.36283 ty -9.3717 ▁gate -9.37213 rom -9.37331 ▁comfort -9.37571 ▁places -9.37719 ▁corn -9.37991 ▁shame -9.38016 ▁worshipped -9.38063 ▁fallen -9.38069 ▁stopped -9.38073 ▁vessels -9.3832 ▁thanks -9.38554 ▁heavens -9.38793 ▁giveth -9.38887 ▁bad -9.39046 ▁stay -9.4033 ▁tomb -9.40357 much -9.4061 ▁length -9.40758 ▁anoint -9.40804 ▁close -9.40865 ▁praise -9.41016 ▁draw -9.412 ▁unclean -9.41219 ▁grow -9.41222 ▁Wolf -9.41236 ▁beautiful -9.41236 ▁crucified -9.41236 ▁kiss -9.41236 ▁ephod -9.41236 ▁circumcision -9.41236 ▁trough -9.41238 ▁cold -9.41238 ▁justified -9.41245 ▁Give -9.41269 ▁course -9.41301 ▁King -9.41302 ▁finished -9.41326 ▁lost -9.41331 ▁climbed -9.4134 ▁animals -9.41556 with -9.41836 ation -9.41929 ▁run -9.42756 el -9.42869 ▁famine -9.43571 h -9.43663 ▁board -9.43805 ▁command -9.44011 ▁feel -9.44092 ▁exceeding -9.44476 ▁rise -9.44554 ▁wrong -9.44566 ▁Philip -9.44569 ▁abroad -9.44569 ▁Rebekah -9.44569 ▁devil -9.4457 ▁shut -9.44575 ▁south -9.44578 ▁past -9.44582 ▁Judas -9.44586 ▁moment -9.44587 ▁itself -9.44604 ▁prepared -9.44648 ▁talked -9.44807 ▁often -9.44915 ▁seventh -9.4511 ▁offered -9.45122 ▁suffered -9.45239 ▁Not -9.45316 ▁seat -9.46083 ▁working -9.46209 ▁commandments -9.46209 ▁burn -9.46815 ur -9.46855 ▁sorrow -9.47019 ▁scripture -9.47164 ▁Indian -9.47188 ▁dis -9.47421 ▁best -9.47449 ▁perish -9.47459 ▁grass -9.47905 ▁office -9.47969 ▁foolish -9.48001 ▁Cherokee -9.48017 ▁asleep -9.48017 ▁beseech -9.48017 ▁staves -9.48018 ▁summer -9.4802 ▁reward -9.48029 ▁passover -9.48035 ▁speech -9.48044 ▁room -9.48047 ▁conceived -9.48048 ▁Amen -9.4805 ▁green -9.48057 ▁crowd -9.48071 A -9.48266 ▁pleased -9.48276 ▁covered -9.48337 ▁believeth -9.48401 ▁understanding -9.48623 ▁flocks -9.4881 ▁tongues -9.49231 ▁members -9.49845 ▁met -9.49845 ▁season -9.5026 ▁smite -9.50392 ▁counsel -9.50591 ▁hearing -9.50607 ▁edge -9.5065 ▁bow -9.50668 ▁image -9.50668 ▁captain -9.50695 ▁parable -9.50714 ▁tribe -9.50725 ▁piece -9.50754 gotten -9.51013 ▁sharp -9.51439 ▁reign -9.51443 ▁care -9.51464 ▁bright -9.51536 ▁subject -9.51582 ▁fornication -9.51589 ▁patience -9.51589 ▁salute -9.51589 ▁writing -9.51589 ▁sky -9.51589 ▁wept -9.5159 ▁swim -9.5159 ▁guard -9.51594 ▁buy -9.51597 ▁slay -9.51598 ▁divided -9.51707 ▁beheld -9.51709 ▁eaten -9.51731 ▁troubled -9.51783 ▁dur -9.51939 ▁legs -9.51966 ▁crying -9.51971 ▁riches -9.52194 ▁hid -9.52259 ▁loveth -9.52316 ▁wanted -9.52388 ▁forward -9.5241 am -9.52986 ▁prayed -9.53212 ng -9.53357 ▁committe -9.53624 ▁depart -9.54028 ful -9.54067 ▁duke -9.54427 ▁creature -9.54438 ▁flock -9.5445 ▁b -9.54715 ▁lift -9.54874 ▁repent -9.5514 ▁short -9.55173 ▁strange -9.55237 ▁forgive -9.55251 ▁eating -9.55257 ▁ox -9.55277 ▁incense -9.55292 ▁large -9.55293 ▁account -9.55293 ▁truck -9.55293 ▁spiritual -9.55293 ▁Adam -9.55294 ▁glorified -9.55297 ▁Sodom -9.55299 ▁pay -9.553 ittim -9.55304 ▁Lamb -9.55304 ▁immediately -9.55308 ▁circumcised -9.55334 ▁churches -9.55337 ▁yard -9.55393 ▁Th -9.5548 ▁poured -9.55508 ▁clothes -9.55509 ▁closed -9.55567 ▁thereon -9.55621 ▁raise -9.55679 ▁touched -9.55703 ▁breadth -9.55733 ▁bowed -9.55737 ▁receiveth -9.55748 ▁sore -9.55777 ▁rod -9.55802 ▁besought -9.56316 ▁bit -9.56435 ir -9.5653 ▁putt -9.56568 ▁wax -9.56673 ▁e -9.56921 ▁mean -9.58042 ▁disciple -9.58307 ▁stranger -9.5834 ▁touch -9.58606 ▁carry -9.58687 ▁wash -9.58973 ▁glad -9.59004 ▁quiet -9.59056 ▁lawful -9.59069 ▁council -9.59138 ▁Barnabas -9.59139 ▁Woe -9.59139 ▁garden -9.59139 ▁iniquity -9.59139 ▁hurt -9.59139 ▁whither -9.59139 ▁cities -9.59139 ▁tried -9.5914 ▁empty -9.59153 ▁deny -9.59168 ▁lad -9.59173 ▁bought -9.59175 ▁exceedingly -9.59273 ▁pulled -9.59297 ▁pit -9.59317 ▁happened -9.59365 ▁longer -9.59368 ▁charged -9.59389 ▁hated -9.59424 ▁manifested -9.59713 ▁knowest -9.59844 ▁worketh -9.59937 ▁less -9.59951 ▁greatly -9.60633 ▁sac -9.6071 ▁reach -9.61166 taking -9.61834 ▁breastplate -9.62142 ▁Lo -9.62168 ▁garment -9.62312 of -9.62371 ▁multiply -9.62616 ▁t -9.6269 ▁obey -9.62698 ▁car -9.62719 ri -9.62724 ▁Some -9.62773 ted -9.62883 ▁road -9.63136 ▁Jackson -9.63139 ▁couple -9.63139 ▁guess -9.63139 ▁spent -9.6314 ▁bondage -9.6314 ▁created -9.63151 ▁built -9.63152 ▁brown -9.63153 ▁swear -9.63157 at -9.63168 ▁quickly -9.63169 giving -9.63175 ▁self -9.63179 ▁h -9.63217 o -9.63292 ▁nine -9.63296 ▁stretched -9.63355 ▁trouble -9.63407 ▁Are -9.63409 ▁couldn -9.63474 ▁wonders -9.63475 ▁touching -9.63606 ▁stars -9.63728 sar -9.63824 ▁purpose -9.64255 ▁gifts -9.64309 ▁heads -9.64565 and -9.6468 is -9.64905 day -9.65041 ▁D -9.65836 ear -9.65838 ped -9.65962 ▁afternoon -9.66357 ▁foundation -9.66379 ▁appear -9.66408 ▁Jew -9.66644 ▁cry -9.66922 ▁rule -9.66923 ▁wall -9.67057 ▁spirits -9.67079 ▁straight -9.67303 ▁Abimelech -9.67305 ▁bottom -9.67305 ▁caught -9.67305 ▁conscience -9.67305 ▁twin -9.67305 ▁unleavened -9.67305 ▁Elijah -9.67305 ▁hungry -9.67308 ▁story -9.67309 ▁winter -9.6731 ▁teeth -9.67312 ▁catch -9.67313 ▁household -9.67323 ▁sinned -9.67326 ▁With -9.67342 ▁really -9.6735 ▁risen -9.67351 ▁learned -9.67666 ▁beat -9.67735 ▁sides -9.67906 ▁ways -9.67932 ▁watched -9.68202 ▁ones -9.68253 ▁skins -9.68281 im -9.68654 ▁calling -9.68849 ▁months -9.68857 ▁faces -9.68924 ▁horse -9.69118 ▁H -9.69182 i -9.69223 for -9.69549 ▁state -9.70662 ▁tail -9.70714 ▁creek -9.70749 ▁ruler -9.70862 ▁act -9.70911 Oh -9.71075 ▁parts -9.71077 ▁feed -9.71185 ▁count -9.71368 ▁double -9.71427 ▁secret -9.71504 ▁abound -9.71505 ▁loose -9.71537 ▁wild -9.71555 ▁thin -9.7162 ▁spoke -9.71631 ▁Levi -9.71649 ▁hither -9.71651 ▁raiment -9.71653 ▁glorify -9.71653 ▁afar -9.71654 ▁vineyard -9.71654 ▁Ridge -9.71656 ▁space -9.71656 ▁pigpen -9.71659 ▁goats -9.7166 ▁wrote -9.71667 ▁suddenly -9.71681 ▁creep -9.71684 ▁forgiven -9.71696 ▁outside -9.71707 ▁maid -9.71709 ▁golden -9.71752 ▁hot -9.71767 ▁witnesses -9.71781 ▁officers -9.7187 ▁ends -9.72034 ▁heed -9.72088 ▁birds -9.72219 ▁wet -9.72272 ar -9.72331 ▁mayest -9.7254 ▁eateth -9.7281 ▁heavenly -9.73048 ▁synagogues -9.73161 ▁Whi -9.73192 ▁feared -9.74065 ▁beasts -9.74473 ▁skin -9.74854 ▁charge -9.75078 w -9.75133 rew -9.75159 ▁pleasure -9.75317 ▁pillar -9.75355 He -9.75522 ▁L -9.75591 either -9.75634 ▁remain -9.75654 ▁play -9.75692 ▁sail -9.75828 ▁report -9.75856 ake -9.76055 ▁confess -9.76189 ▁inherit -9.76194 ▁Benjamin -9.76199 ▁Isaiah -9.76199 ▁array -9.76199 ▁haply -9.76199 ▁remembrance -9.76199 ▁womb -9.76199 ▁Timothy -9.76199 ▁mystery -9.76199 ▁daily -9.76199 ▁hail -9.762 ▁tired -9.762 ▁fence -9.762 ▁likewise -9.76201 ▁inheritance -9.76203 ▁arrived -9.76232 ▁Put -9.76334 ▁Have -9.76368 ▁inside -9.76477 ▁talking -9.76544 ▁camels -9.76562 ▁weight -9.76575 ▁lose -9.76583 ah -9.76814 ▁breath -9.76993 ▁heareth -9.7709 ▁willing -9.77102 ▁d -9.77309 ▁g -9.77384 ▁c -9.77666 rs -9.77708 ▁spring -9.78101 ity -9.78192 ▁fight -9.78886 ▁— -9.78976 ▁candlestick -9.80067 ▁village -9.80091 ▁lamb -9.80103 ▁cover -9.80122 ▁coat -9.80128 ▁finger -9.8016 adventure -9.80273 ▁W -9.80337 ▁song -9.80341 Yes -9.80366 ▁bury -9.80485 ▁fashion -9.80502 ▁establish -9.80527 ▁thank -9.80613 ▁possess -9.8077 ▁stumble -9.80872 ▁flee -9.80874 ▁ashamed -9.8096 ▁dominion -9.8096 ▁flood -9.8096 ▁knife -9.8096 ▁trail -9.8096 ▁devour -9.80961 ▁precious -9.80961 ▁Saviour -9.80961 ▁vail -9.80961 ▁happy -9.80961 ▁marry -9.80961 ▁further -9.80962 ▁Perry -9.80963 ▁possible -9.80972 ▁elect -9.80976 ▁adultery -9.80989 ▁smote -9.80996 ▁sware -9.81007 ▁amazed -9.81009 ▁stick -9.81026 ▁slowly -9.81037 ▁scattered -9.81076 ▁sort -9.81105 ▁hardened -9.81108 ▁sixth -9.81186 ▁hire -9.81193 ▁bones -9.81277 ▁borne -9.81315 ▁hence -9.8138 ▁liveth -9.81494 ▁burned -9.81557 ▁feeling -9.81653 ily -9.81884 ▁notice -9.81945 ▁destroyed -9.82034 ▁strangers -9.82038 ▁doing -9.82973 ▁Is -9.83049 ▁R -9.83169 ▁perceive -9.84637 ▁Salut -9.84827 ▁hole -9.85062 ▁Hebrew -9.85097 ▁cubit -9.8512 ▁ship -9.85191 ▁sanctif -9.85251 ▁curse -9.85812 ▁grave -9.85927 ▁naked -9.85943 ▁supper -9.85959 ▁Macedonia -9.8596 ▁Spearfinger -9.8596 ▁behalf -9.8596 ▁ignorant -9.8596 ▁thither -9.8596 ▁bottle -9.85961 ▁crawl -9.85961 ▁Saul -9.85961 ▁idea -9.85961 ▁loaves -9.85961 ▁reproach -9.85969 ▁cheer -9.85972 ▁moon -9.85973 ▁Arise -9.85977 ▁tidings -9.85985 ▁handmaid -9.85997 ▁decided -9.86005 ▁horns -9.86046 ▁wide -9.8611 ▁idols -9.86203 ▁fly -9.86244 ▁shoes -9.86291 ▁knees -9.86341 ▁bonds -9.86467 ▁washed -9.86538 ▁goods -9.86571 ate -9.86578 ▁either -9.86591 ▁letters -9.86601 ▁use -9.87014 ▁move -9.87397 ▁eggs -9.87619 ▁tables -9.87886 ▁sacrifices -9.8789 g -9.88076 ▁thinking -9.88136 ▁form -9.88295 ▁needs -9.88493 nto -9.88661 ▁accuse -9.89308 ▁bearing -9.89505 ▁question -9.8981 ▁demon -9.89935 ▁affliction -9.90232 ▁governor -9.90276 ▁root -9.90322 ▁possession -9.90342 ▁neighbor -9.90349 ▁wheel -9.90383 ▁host -9.9039 ▁corner -9.90431 ▁afterward -9.905 ▁clear -9.90626 How -9.90667 But -9.9067 ▁worry -9.90729 ▁regard -9.90753 ▁proceed -9.90767 nt -9.90798 ▁forbid -9.91018 ▁shoulder -9.91021 ▁wicked -9.91057 ▁grievous -9.91098 ▁late -9.91199 ▁Cain -9.91222 ▁Claire -9.91224 ▁Jordan -9.91224 ▁abode -9.91224 ▁centurion -9.91224 ▁company -9.91224 ▁marriage -9.91224 ▁neighbour -9.91224 ▁flies -9.91224 ▁parents -9.91224 ▁families -9.91224 ▁struck -9.91224 ▁breakfast -9.91225 ▁nought -9.91225 ▁business -9.91227 ▁repentance -9.9123 ▁subjection -9.91239 ▁brake -9.91244 ▁Most -9.91245 ▁fill -9.91257 ▁tiny -9.91265 ▁cock -9.91266 ▁begin -9.9127 ▁direction -9.91276 ▁sell -9.91291 ▁robe -9.91305 ▁anger -9.91324 ▁marvelled -9.91353 ▁Art -9.91355 ▁tied -9.91393 ting -9.91411 ▁reckoned -9.91489 ▁Here -9.91588 ▁covering -9.91745 ever -9.91788 ▁lusts -9.91854 ▁served -9.91941 ▁fully -9.91948 ▁height -9.92032 ▁corners -9.92118 ▁journeyed -9.92144 ▁hate -9.92196 ▁faint -9.92406 ▁Her -9.92547 ▁scriptures -9.92552 ▁gates -9.92695 ▁declare -9.92829 ▁falling -9.92878 ▁treasure -9.93402 the -9.93419 ▁G -9.93652 ▁commit -9.93664 ance -9.94595 ▁voices -9.95052 ▁labor -9.95267 ish -9.95405 ▁tribulation -9.95784 red -9.95786 ▁join -9.95908 ▁arm -9.95912 ▁apostle -9.95976 The -9.96069 times -9.96124 That -9.96222 ▁profit -9.96299 ▁utter -9.96321 ▁strip -9.96335 ▁change -9.96365 ▁leaven -9.96459 ▁stop -9.96566 ▁refuse -9.96583 ▁plain -9.96655 ▁natural -9.96668 ▁chose -9.96749 ▁Again -9.96779 ▁Brethren -9.96779 ▁Grace -9.96779 ▁Nazareth -9.96779 ▁beneath -9.96779 ▁geese -9.96779 ▁middle -9.96779 ▁woe -9.9678 ▁fourteen -9.9678 ▁fair -9.9678 ▁respect -9.96781 ▁spoil -9.96792 ▁Asia -9.96797 ▁abundantly -9.96803 ▁Nay -9.96808 ▁drove -9.96822 ▁wish -9.96835 ▁lying -9.96839 ▁Know -9.96869 ▁rent -9.96907 ▁revealed -9.96914 ▁Dr -9.97031 ▁spin -9.97088 ▁talents -9.97099 ▁clothed -9.97112 ▁ago -9.97193 ▁persons -9.97298 ▁remained -9.97305 ill -9.97309 ▁fourth -9.97382 ▁stayed -9.97529 ▁wouldest -9.9774 ▁creatures -9.98087 ▁following -9.98221 ▁perceiv -9.98275 ▁drive -9.98326 ▁rocks -9.98734 ▁rush -9.99315 ▁race -9.99744 ▁star -9.99957 ▁nights -10.0014 ▁trust -10.0023 ▁ass -10.0036 ▁wear -10.0085 ▁pain -10.0143 ▁oath -10.0167 ▁snow -10.0167 ▁vision -10.0171 ▁ram -10.0173 ▁fowl -10.0174 ▁miracle -10.0174 ▁male -10.0175 ▁serpent -10.0176 ▁learn -10.0177 ▁talk -10.0179 ▁widow -10.018 ▁border -10.0181 ry -10.0186 k -10.0202 ▁won -10.021 ▁redeem -10.0222 ▁escape -10.0247 ▁several -10.0255 ▁lot -10.0257 he -10.0258 ▁Antioch -10.0266 ▁Crockett -10.0266 ▁Ishmael -10.0266 ▁Reuben -10.0266 ▁Washington -10.0266 ▁baptism -10.0266 ▁cunning -10.0266 ▁everlasting -10.0266 ▁language -10.0266 ▁leaving -10.0266 ▁truly -10.0266 ▁Sarai -10.0266 ▁Sinai -10.0266 ▁astray -10.0266 ▁dawn -10.0266 ▁slew -10.0266 ▁nature -10.0266 ▁sitteth -10.0266 ▁colonel -10.0266 ▁swallow -10.0266 ▁Shechem -10.0266 ▁Howbeit -10.0266 ▁sanctuary -10.0266 ▁tarried -10.0267 ▁grain -10.0267 ▁bitter -10.0267 ▁yellow -10.0268 ▁interpretation -10.0268 ▁sanctified -10.0268 ▁oxen -10.0269 ▁sorry -10.0272 ▁wheat -10.0273 ▁fishes -10.0273 ▁farm -10.0279 ▁sown -10.028 ▁pail -10.0282 ▁exalted -10.0286 ▁Te -10.0297 ▁weeping -10.0298 ▁loosed -10.0299 ▁line -10.0302 ▁Look -10.0304 ▁lower -10.0305 ▁tears -10.0306 ▁wipe -10.0307 ory -10.0309 ▁sailed -10.0322 ▁calleth -10.0324 ▁counted -10.0325 ▁comforted -10.0348 ▁lines -10.0352 ▁borders -10.0352 ▁north -10.038 ▁noise -10.0388 ▁watching -10.0412 ▁turning -10.0434 ▁st -10.0442 ▁doest -10.0447 ▁Br -10.0508 ▁nose -10.053 ▁con -10.0541 ▁spiders -10.0581 ▁inso -10.0581 ▁Oh -10.0589 ▁cr -10.0601 ▁offerings -10.0651 ▁thoughts -10.0655 ▁r -10.0671 ▁per -10.0679 ▁hide -10.0701 ▁cabin -10.0792 ▁exhort -10.0795 ▁fig -10.0796 ▁hill -10.0804 to -10.0824 Charlotte -10.0836 Now -10.0836 ▁lack -10.0839 ch -10.085 ▁Ha -10.0855 ▁dirt -10.0882 ▁swam -10.0883 ▁overcome -10.0883 ▁building -10.0891 ▁Asmeret -10.0891 ▁Ephesus -10.0891 ▁Hittite -10.0891 ▁Nahor -10.0891 ▁Simeon -10.0891 ▁cellar -10.0891 ▁harlot -10.0891 ▁rope -10.0891 ▁yield -10.0891 ▁running -10.0891 ▁Damascus -10.0891 ▁different -10.0891 ▁drank -10.0891 ▁godliness -10.0891 ▁common -10.0892 ▁wings -10.0892 ▁shook -10.0892 ▁compassion -10.0893 ▁grant -10.0894 ▁beaten -10.0894 ▁pick -10.0894 ▁bigge -10.0894 ▁chosen -10.0895 ▁pool -10.0895 ▁thorns -10.09 ▁asses -10.09 ▁An -10.09 ▁tempted -10.0909 ▁jumped -10.0909 ▁Did -10.0909 ▁chains -10.0911 ▁row -10.0912 ▁Hear -10.0915 ▁mourning -10.0916 men -10.0919 ▁wor -10.0931 ▁goodness -10.0934 ▁herds -10.0934 ▁pipe -10.0939 ants -10.0946 ▁bowls -10.0956 ▁pale -10.0958 ▁lamps -10.0961 ▁breaking -10.0987 ▁arms -10.0988 ▁lambs -10.1006 ▁sayest -10.103 ▁Shem -10.1055 ▁de -10.107 ▁withal -10.1075 ▁prayers -10.1101 ▁heal -10.1151 ▁drinking -10.1176 ▁commun -10.1202 ▁judges -10.1268 ▁fruits -10.1292 ▁roll -10.133 ▁desert -10.1409 ▁bringing -10.1454 ▁girdle -10.1459 ▁cave -10.146 age -10.1462 ▁stream -10.1463 ▁week -10.1469 ▁Greek -10.1472 ▁bird -10.1473 ▁glorying -10.1479 ▁reap -10.149 Good -10.1495 ▁flow -10.1504 ▁render -10.1505 laid -10.1521 ▁letter -10.1533 ▁flat -10.1545 ▁haste -10.1546 ▁Man -10.1555 ollow -10.1557 ▁stumbling -10.1558 ▁Almighty -10.1558 ▁anxious -10.1558 ▁bodies -10.1558 ▁bridegroom -10.1558 ▁damsel -10.1558 ▁disobedient -10.1558 ▁divers -10.1558 ▁necessary -10.1558 ▁obedience -10.1558 ▁prosper -10.1558 ▁screamed -10.1558 ▁silence -10.1558 ▁uncircumcision -10.1558 ▁diligence -10.1558 ▁iron -10.1558 ▁trumpet -10.1558 ▁harvest -10.1558 ▁Stephen -10.1558 ▁lips -10.1558 ▁slain -10.1558 ▁Haran -10.1558 ▁honey -10.1558 ▁rising -10.1558 ▁Nancy -10.1558 ▁acceptable -10.1559 ▁spare -10.1559 ▁boldness -10.1559 ▁overlay -10.1559 ▁temptation -10.1559 ▁lodge -10.1561 ▁steal -10.1562 ▁worse -10.1565 ▁Can -10.1566 ▁hypocrites -10.1567 ▁Sure -10.157 ▁ceased -10.1572 ▁Sir -10.1573 ▁removed -10.1573 ▁defiled -10.1576 ite -10.1577 ▁goslings -10.1579 ▁henceforth -10.158 ▁shortly -10.158 ▁hell -10.1582 ▁obtained -10.1583 THE -10.1585 wo -10.1593 ▁onto -10.1595 ▁stared -10.161 ▁sacrificed -10.1617 ▁soft -10.1626 ▁frogs -10.1633 ▁Greeks -10.1645 ▁widows -10.1657 ▁pro -10.1663 ▁Sen -10.1685 ▁comes -10.1713 ▁needed -10.1729 ors -10.1735 ▁seeth -10.1749 ▁prove -10.1774 ▁sad -10.1821 ▁rebuke -10.1831 ▁holding -10.1835 ▁ill -10.1926 ge -10.1963 rolled -10.1978 ▁liked -10.1996 score -10.2001 ▁fore -10.2002 ▁occasion -10.2061 No -10.2129 ▁happen -10.213 ▁lust -10.2134 ▁burden -10.2136 ▁add -10.2158 c -10.216 ▁revelation -10.2173 ▁region -10.2177 ▁supplication -10.2182 ▁shepherd -10.2185 ▁blanket -10.2185 ▁Egyptian -10.2188 ▁mark -10.2196 ▁dog -10.2204 ris -10.2205 ▁beside -10.2209 F -10.2214 ▁salt -10.2223 ▁laugh -10.2226 ▁inhabit -10.2226 ▁interest -10.2227 ▁condemn -10.2228 ▁betray -10.2229 ▁pour -10.2233 ▁heat -10.2234 ▁defile -10.2241 ary -10.2243 ▁je -10.2244 ▁release -10.2252 ▁despise -10.2252 ▁taste -10.2253 ▁store -10.2253 ▁slow -10.2264 ▁vine -10.2272 ▁Sadducees -10.2272 ▁America -10.2272 ▁Lazarus -10.2272 ▁Manasseh -10.2272 ▁Sequoyah -10.2272 ▁awoke -10.2272 ▁confidence -10.2272 ▁countenance -10.2272 ▁doctrine -10.2272 ▁dumb -10.2272 ▁multiplied -10.2272 ▁ointment -10.2272 ▁recompense -10.2272 ▁substance -10.2272 ▁tarry -10.2272 ▁Hagar -10.2272 ▁crep -10.2272 ▁digged -10.2272 ▁contrary -10.2272 ▁gander -10.2272 ▁fellowship -10.2273 ▁loins -10.2273 ▁pretty -10.2273 ▁Zion -10.2273 ▁understood -10.2273 ▁continually -10.2273 ▁unrighteousness -10.2273 ▁ungodly -10.2274 ▁loss -10.2274 ▁wickedness -10.2275 ▁price -10.2275 ▁trade -10.2275 ▁exactly -10.2275 ▁married -10.2276 ▁heap -10.2276 ▁rejected -10.2277 ▁doorway -10.2277 ▁stedfastly -10.2278 ▁carefully -10.2278 ▁fruitful -10.2278 ▁shot -10.228 ▁stirred -10.228 ▁descended -10.2283 ▁spit -10.2285 ▁kindness -10.2285 ▁hunger -10.2286 ▁prevailed -10.2287 ▁thick -10.2289 ▁dying -10.229 ▁manure -10.2292 ▁ring -10.2293 ▁quietly -10.2294 ▁loops -10.2295 ▁bars -10.2296 ▁town -10.2298 ▁final -10.2303 ▁pond -10.231 ▁divide -10.2314 xcept -10.232 ▁chariots -10.232 ▁rejoiced -10.232 ▁condemned -10.2322 ▁cleanse -10.2325 ▁powers -10.233 ▁promised -10.2335 ▁consider -10.2342 ke -10.2345 time -10.2365 ▁fasten -10.2371 ▁desired -10.2379 ach -10.238 ▁m -10.2383 ▁dreamed -10.241 ▁seasons -10.245 ▁Re -10.2451 ▁Well -10.2455 ▁lives -10.2457 unto -10.2507 ight -10.2552 ▁mo -10.2559 ▁ca -10.2567 ▁parted -10.2604 ▁praying -10.263 ▁intend -10.2684 ▁west -10.2713 ▁tr -10.2743 ▁laying -10.2743 ▁shed -10.2759 ▁favor -10.2779 ▁desir -10.2792 ▁rivers -10.2907 ▁hang -10.2927 ▁custom -10.2947 ▁case -10.2949 ▁frog -10.2956 ▁lamp -10.2956 ▁trap -10.2959 ▁prophesy -10.2986 what -10.2986 though -10.299 ▁fetch -10.2992 ▁stretch -10.2999 ▁Say -10.3002 that -10.3007 ▁Rabbi -10.3008 ▁endure -10.3015 ▁owner -10.3019 ▁complete -10.302 ug -10.3021 ▁hung -10.3026 ▁proud -10.3026 ▁commend -10.3028 ▁eleven -10.303 ▁content -10.3031 ▁branch -10.304 sarea -10.3041 ▁Babylon -10.3041 ▁Capernaum -10.3041 ▁English -10.3041 ▁Nevertheless -10.3041 ▁Remember -10.3041 ▁Titus -10.3041 ▁cousin -10.3041 ▁enemy -10.3041 ▁epistle -10.3041 ▁fifteen -10.3041 ▁ghost -10.3041 ▁thief -10.3041 ▁travail -10.3041 ▁Festus -10.3041 ▁calf -10.3041 ▁Moreover -10.3041 ▁broad -10.3041 ▁compass -10.3041 ▁excellent -10.3041 ▁void -10.3041 ▁stuff -10.3041 ▁particular -10.3041 ▁famous -10.3041 ▁Edom -10.3042 ▁bidden -10.3042 ▁prophecy -10.3042 ▁heavy -10.3042 ▁family -10.3042 ▁nay -10.3042 ▁Which -10.3042 ▁palm -10.3042 ▁single -10.3043 ▁ashes -10.3043 ▁Abel -10.3043 ▁jealousy -10.3043 ▁husbandmen -10.3043 ▁bind -10.3044 ▁kindred -10.3044 ▁Hello -10.3044 ▁trial -10.3044 ▁beforehand -10.3044 ▁shaken -10.3044 bee -10.3045 ▁cherubims -10.3045 ▁determined -10.3045 ▁wander -10.3046 ▁driven -10.3047 ▁Homer -10.3049 ▁portion -10.3049 ▁later -10.3049 ▁required -10.305 ▁everywhere -10.305 ▁ball -10.3052 ▁fit -10.3056 ▁wrapp -10.3058 ier -10.3062 ▁remaineth -10.3062 ▁increased -10.3062 ▁pitched -10.3064 ▁hateth -10.3064 ▁anybody -10.3067 ▁hooks -10.307 ▁planted -10.3071 ▁stool -10.3071 ▁youngest -10.3072 ▁hunting -10.3075 ▁publicans -10.308 ▁withered -10.3085 b -10.3086 ▁likeness -10.3087 ▁stead -10.3087 ▁betrayed -10.3088 ▁en -10.3091 ▁special -10.3091 ▁does -10.3091 ▁fugitives -10.3094 Many -10.3094 ▁tall -10.3096 ▁aside -10.3101 ▁standeth -10.3136 ▁findeth -10.314 ▁builded -10.3154 ▁greatest -10.3157 ▁numbered -10.3159 ▁gotten -10.317 ▁hosts -10.3171 ▁reading -10.3171 ▁Zuckermans -10.3174 ▁Hebrews -10.3178 ▁waited -10.3182 ▁sounded -10.3189 ▁shoulders -10.3214 ought -10.3233 ▁tribes -10.3234 ▁meeting -10.3245 ▁sleeping -10.3264 if -10.3285 ned -10.3289 stead -10.3382 ▁masters -10.339 all -10.3413 nder -10.345 reached -10.347 ▁thousands -10.3491 ▁Heth -10.3514 ▁yours -10.3518 ▁seal -10.3538 ened -10.3629 ▁Du -10.3701 ic -10.3717 ▁forget -10.3763 ▁paper -10.378 ▁shadow -10.3785 ▁animal -10.379 ▁vessel -10.379 ▁Pharisee -10.3791 ▁band -10.3793 ▁elder -10.3794 ▁sack -10.3794 ▁shekel -10.3796 ▁bond -10.3799 ▁color -10.3803 ▁herb -10.3807 ▁prisoner -10.3812 Do -10.3815 Can -10.3818 ▁doubt -10.3823 ▁swing -10.3823 ▁proclaim -10.3831 ▁reckon -10.3832 ▁press -10.3835 ▁suck -10.3835 ▁weep -10.3837 ▁deed -10.3842 ▁restore -10.3857 ▁observe -10.3858 ▁memorial -10.386 elah -10.3863 ▁broke -10.3871 id -10.3871 ncle -10.3874 ▁buttermilk -10.3875 ▁Calhoun -10.3875 ▁Ephraim -10.3875 ▁Finally -10.3875 ▁Gomorrah -10.3875 ▁Goshen -10.3875 ▁High -10.3875 ▁Lichen -10.3875 ▁Solomon -10.3875 ▁asunder -10.3875 ▁creation -10.3875 ▁female -10.3875 ▁longsuffering -10.3875 ▁school -10.3875 ▁slept -10.3875 ▁twice -10.3875 ▁idle -10.3875 ▁spend -10.3875 ▁hidden -10.3875 ▁crieth -10.3875 ▁oak -10.3875 ▁alms -10.3875 ▁destruction -10.3875 ▁dried -10.3875 ▁wroth -10.3875 ▁forehead -10.3875 ▁steward -10.3875 ▁colt -10.3875 ▁Dorian -10.3875 ▁stole -10.3875 ▁sang -10.3875 ▁dump -10.3875 ▁pasture -10.3875 ▁scratch -10.3875 ▁corruption -10.3876 ▁lawyer -10.3876 ▁size -10.3876 ▁fun -10.3876 ▁denied -10.3876 ▁tender -10.3876 ▁kine -10.3876 ▁trespasses -10.3876 ▁sow -10.3876 ▁expect -10.3876 ▁thanksgiving -10.3877 ▁pitcher -10.3877 ▁astonished -10.3877 ▁discern -10.3877 ▁ministration -10.3877 ▁merciful -10.3878 ▁dash -10.3878 ▁cook -10.3879 ▁worth -10.3879 ▁deer -10.3879 ▁error -10.388 ▁getting -10.3882 ▁thirst -10.3884 ▁mill -10.3884 ▁whispered -10.3884 ▁bath -10.3884 ▁drawn -10.3885 ▁persuaded -10.3887 ▁dirty -10.3887 ▁floor -10.3887 ▁wonderful -10.3889 ▁warned -10.3893 ▁belly -10.3897 ▁partakers -10.3905 ▁separate -10.3907 ▁Just -10.3911 ▁attention -10.3913 ▁highest -10.3917 ▁Canaanites -10.3918 ▁cows -10.392 ▁string -10.392 ▁sufferings -10.3925 ▁bowl -10.3928 ▁Don -10.394 ▁drunken -10.3943 ▁... -10.3951 ▁str -10.3951 ▁dwelleth -10.3953 ▁reported -10.3956 ▁shekels -10.3962 ▁West -10.3967 ▁carrying -10.3976 ▁burdens -10.3977 ▁o -10.3982 ▁hiding -10.3982 ▁canst -10.3988 ▁burning -10.3989 ▁anointed -10.3991 ▁rams -10.4 be -10.403 z -10.4038 ew -10.4039 ▁heir -10.4055 ▁fo -10.4065 reby -10.4068 ied -10.4077 ▁dukes -10.4077 ine -10.4091 ▁Andrew -10.4131 ad -10.4144 ▁sing -10.416 aw -10.4177 ▁net -10.4192 ▁rested -10.4193 ▁La -10.4213 ably -10.4253 ▁minded -10.4261 ▁ex -10.4279 ▁co -10.4285 ▁claim -10.4347 O -10.4358 hi -10.4378 ▁spra -10.442 ▁mov -10.4507 ▁w -10.4516 ard -10.4525 ▁Je -10.4526 wn -10.4558 minded -10.4559 ▁cloth -10.4602 ▁fillet -10.4627 ▁person -10.4666 ▁leg -10.4683 ▁thread -10.4684 ▁log -10.4691 ▁hatchet -10.4692 ring -10.4695 ▁sinner -10.4702 ▁J -10.4703 ▁soldier -10.471 ▁teacher -10.4713 ▁chamber -10.4715 bye -10.4726 Look -10.4727 C -10.4727 Let -10.4728 which -10.4728 ▁interpret -10.4733 And -10.4734 ▁travel -10.4734 ▁sojourn -10.4734 ▁veil -10.4738 ▁inter -10.4745 ▁appoint -10.4748 te -10.4762 ▁humble -10.4763 ▁cease -10.4764 ▁prepare -10.4765 ▁nice -10.477 ▁pleasant -10.477 um -10.4773 ▁direct -10.4778 ▁unrighteous -10.4782 erhaps -10.4782 ▁equal -10.4783 ▁fulfil -10.4783 ▁suggest -10.4783 ▁absent -10.4784 ▁Agrippa -10.4784 ▁Axe -10.4784 ▁Baptist -10.4784 ▁Featherstone -10.4784 ▁Iscariot -10.4784 ▁Lamech -10.4784 ▁Martha -10.4784 ▁Midian -10.4784 ▁Wasseton -10.4784 ▁Zebedee -10.4784 ▁abiding -10.4784 ▁crucify -10.4784 ▁desolate -10.4784 ▁exercise -10.4784 ▁laurel -10.4784 ▁leap -10.4784 ▁savour -10.4784 ▁smooth -10.4784 ▁swine -10.4784 ▁trembling -10.4784 ▁Also -10.4784 ▁Ephron -10.4784 ▁atonement -10.4784 ▁fulness -10.4784 ▁merry -10.4784 ▁lean -10.4784 ▁dragon -10.4784 ▁resist -10.4784 ▁Sidon -10.4784 ▁choice -10.4784 ▁token -10.4784 ▁defence -10.4784 ▁Ross -10.4784 ▁dinner -10.4784 ▁trip -10.4784 ▁Enoch -10.4784 ▁Wayah -10.4784 ▁chair -10.4784 ▁uttermost -10.4784 ▁Ham -10.4784 ▁plow -10.4784 ▁lake -10.4785 ▁kid -10.4785 ▁Master -10.4785 ▁coast -10.4785 ▁horsemen -10.4785 ▁condemnation -10.4785 ▁distance -10.4785 ▁Hamor -10.4785 ▁pluck -10.4785 ▁plann -10.4786 ▁yourself -10.4787 ▁roof -10.4787 ▁prize -10.4787 ▁snare -10.4788 ▁post -10.479 ▁radiant -10.4791 ▁whereby -10.4791 ▁shone -10.4791 ▁sixty -10.4793 ▁sober -10.4794 ▁grown -10.4795 ▁pile -10.4795 ▁robbers -10.4797 ▁murmured -10.4798 ixt -10.4799 ▁consumed -10.4802 ▁shouted -10.4802 ▁Edith -10.4803 ▁terrific -10.4803 man -10.4806 ▁cleansed -10.4811 ▁favoured -10.4811 ▁failed -10.4815 ▁refused -10.4817 ▁Hav -10.4817 joined -10.4818 ▁everybody -10.4822 ▁St -10.4823 ▁Rabbit -10.4823 ▁wondered -10.4824 ▁Ch -10.4826 ▁pressed -10.4831 ▁laughed -10.484 ▁Beer -10.4843 ▁speaker -10.4848 ▁plagues -10.4855 ▁Per -10.4868 ▁established -10.4869 ▁party -10.4874 ▁glass -10.4889 ▁blankets -10.4897 old -10.4897 ive -10.4911 ▁forest -10.4927 ▁dozen -10.4928 not -10.4934 ▁villages -10.4956 ▁fingers -10.4956 ▁hit -10.4962 ▁shape -10.4977 ▁walls -10.4977 ▁Beth -10.498 ▁goest -10.4985 ns -10.4988 ▁strive -10.5013 ▁gr -10.5021 ▁apples -10.5061 ▁ha -10.5071 ain -10.5132 ▁showing -10.5138 ▁Dan -10.5142 ched -10.5173 ▁wr -10.5207 ▁husbands -10.5229 ▁telling -10.5244 ▁fact -10.5264 most -10.5278 em -10.5291 math -10.5299 ▁vi -10.5408 ank -10.5442 ▁bade -10.5462 ▁Get -10.5486 ber -10.5492 ▁worked -10.5527 ▁tro -10.5553 ▁wonder -10.5592 ▁fields -10.5608 loved -10.5671 ▁earthquake -10.5684 ▁thigh -10.5689 ▁minute -10.5692 ▁window -10.5692 ▁knop -10.5694 ▁ordinance -10.5695 ▁prince -10.5695 ▁basket -10.5696 ▁meal -10.5699 ▁figure -10.5704 where -10.5713 ne -10.5715 ▁corrupt -10.5719 Why -10.5728 un -10.5728 ▁consent -10.5729 Don -10.5731 There -10.5734 ▁accept -10.5736 ▁pull -10.5743 seat -10.5755 ▁healing -10.5759 ▁increase -10.5764 ▁awake -10.5766 ▁earnest -10.5769 ▁hunt -10.577 ▁suppose -10.5771 ▁ride -10.5772 sheba -10.5783 ▁fool -10.5784 ▁Amalek -10.5784 ▁Hivite -10.5784 ▁Jethro -10.5784 ▁Magdalene -10.5784 ▁Mamre -10.5784 ▁Peace -10.5784 ▁Philadelphia -10.5784 ▁Philistines -10.5784 ▁Samaria -10.5784 ▁Silas -10.5784 ▁apparel -10.5784 ▁bacon -10.5784 ▁believing -10.5784 ▁coupling -10.5784 ▁dishonor -10.5784 ▁fault -10.5784 ▁fountain -10.5784 ▁liberty -10.5784 ▁lieutenant -10.5784 ▁ministry -10.5784 ▁plenty -10.5784 ▁stomach -10.5784 ▁strife -10.5784 ▁taches -10.5784 ▁thrice -10.5784 ▁tribute -10.5784 ▁underneath -10.5784 ▁aught -10.5784 ▁barren -10.5784 ▁enjoy -10.5784 ▁imitat -10.5784 ▁Ananias -10.5784 ▁bosom -10.5784 ▁shirt -10.5784 ▁firmament -10.5784 ▁Bethany -10.5784 ▁JE -10.5784 ▁shining -10.5784 ▁staff -10.5784 ▁curious -10.5784 wels -10.5784 ▁weather -10.5784 ▁chicken -10.5784 ▁Speak -10.5784 ▁remission -10.5784 ▁cool -10.5784 ▁meekness -10.5784 ▁fog -10.5784 ▁George -10.5784 ▁dropped -10.5784 ▁Terah -10.5785 ▁decomposers -10.5785 ▁fighting -10.5785 ▁bunch -10.5785 ▁dew -10.5786 ▁armies -10.5786 ▁darkened -10.5786 ▁shake -10.5787 ▁span -10.5787 ▁testified -10.5787 ▁upper -10.5787 ▁nakedness -10.5787 ueen -10.5787 ▁motion -10.5788 ▁exhortation -10.5788 ▁approved -10.5789 ▁seize -10.5789 ▁moreover -10.579 ▁busy -10.579 ▁Henry -10.5793 ▁boldly -10.5794 ▁Perhaps -10.5795 ▁flame -10.5796 ▁endureth -10.5797 ▁butler -10.58 ▁overcometh -10.58 ▁Pig -10.58 ▁agreed -10.5801 ▁accomplished -10.5805 ▁pushed -10.5805 ▁spices -10.5807 ▁someone -10.5809 Run -10.581 ▁separated -10.581 ▁pack -10.5815 ▁listening -10.5815 ▁anyone -10.5816 ▁blow -10.5817 hick -10.5819 ▁dragg -10.5819 owed -10.582 ▁escaped -10.5821 ▁searched -10.5823 ▁guide -10.5826 ▁lieth -10.583 ▁supposed -10.5834 ▁Though -10.5834 ▁proclaimed -10.5837 ▁Wom -10.584 ▁thunders -10.5844 ▁brush -10.5856 ▁tenth -10.5859 ▁streets -10.5863 ▁judgeth -10.5864 ▁falleth -10.5869 ▁shine -10.5882 ▁teachers -10.5889 ▁sacks -10.5891 ▁deeds -10.5894 ▁perished -10.5916 ▁formed -10.5918 ure -10.593 ▁ru -10.5936 ▁neighbors -10.5956 ▁force -10.5961 ▁hoped -10.5962 ▁beam -10.5998 ▁Ma -10.6044 ant -10.6076 ▁simple -10.6081 ▁sha -10.611 thrown -10.6143 ▁ministering -10.6161 ▁bell -10.6164 land -10.6173 ▁promises -10.6175 ▁matters -10.6183 ▁dwelling -10.6184 ▁dreams -10.6187 ▁sprinkl -10.6188 ▁Pr -10.62 ▁Pa -10.6208 ▁Me -10.6224 ▁share -10.6239 ▁kinds -10.626 ▁thrones -10.626 ▁Ga -10.6308 les -10.6316 u -10.6318 ▁winds -10.6318 ▁par -10.6324 ▁Cap -10.6396 ra -10.642 me -10.643 ▁rode -10.6473 led -10.6487 ▁sakes -10.6504 ump -10.6516 ▁Wil -10.6531 ▁declar -10.6554 ot -10.6606 ▁wave -10.6658 ▁hat -10.6672 ▁knee -10.6703 ments -10.6704 ▁tin -10.6706 od -10.6714 ▁hu -10.6715 ery -10.6717 dded -10.6792 ▁drunk -10.6794 ▁captive -10.68 ▁habitation -10.68 ▁game -10.68 ▁mourn -10.6803 ▁effort -10.6803 ▁nest -10.6804 ▁virgin -10.6804 ▁flower -10.6806 ▁street -10.6807 ▁plague -10.6808 ware -10.6809 ▁drop -10.6809 ▁search -10.6814 ▁scribe -10.6815 ▁girl -10.6818 ▁youth -10.6819 ▁path -10.6821 ▁rubb -10.6822 pleasing -10.6828 ▁marvel -10.6834 ▁twist -10.6838 ▁pot -10.6844 ▁testify -10.6847 ▁delight -10.6849 ▁ninet -10.685 ▁due -10.6851 ▁obtain -10.6852 special -10.6854 ▁mad -10.6855 ▁real -10.6855 ▁den -10.6861 ▁preserve -10.6873 ▁bid -10.6873 ▁consume -10.6876 ▁bold -10.6882 ▁entire -10.6883 Thi -10.6885 We -10.689 laver -10.6891 eople -10.6892 ▁trespass -10.6893 ▁public -10.6893 ▁danger -10.6894 ▁agree -10.6895 ▁tight -10.6895 ▁Padan -10.6895 ▁future -10.6895 ▁Beaver -10.6895 ▁Bethuel -10.6895 ▁Charlie -10.6895 ▁Japheth -10.6895 ▁Joppa -10.6895 ▁Joshua -10.6895 ▁Zacharias -10.6895 ▁altogether -10.6895 ▁bundle -10.6895 ▁diligently -10.6895 ▁disobedience -10.6895 ▁fifth -10.6895 ▁furnace -10.6895 ▁grieved -10.6895 ▁group -10.6895 ▁guile -10.6895 ▁indignation -10.6895 ▁iniquities -10.6895 ▁kitchen -10.6895 ▁leaf -10.6895 ▁midnight -10.6895 ▁nevertheless -10.6895 ▁offended -10.6895 ▁practise -10.6895 ▁publish -10.6895 ▁sanctification -10.6895 ▁silk -10.6895 ▁slops -10.6895 ▁speckled -10.6895 ▁stoop -10.6895 ▁surname -10.6895 ▁sweat -10.6895 ▁venison -10.6895 ▁violence -10.6895 ▁Charleston -10.6895 ▁abyss -10.6895 ▁devout -10.6895 ▁Apollos -10.6895 ▁angry -10.6895 ▁wove -10.6895 ▁brimstone -10.6895 ▁smitten -10.6895 ▁slaves -10.6895 ▁gracious -10.6895 ▁Bilhah -10.6895 ▁degree -10.6895 ▁magicians -10.6895 ▁below -10.6895 ▁blew -10.6895 ▁bride -10.6895 ▁trick -10.6895 ▁easier -10.6895 ▁Everything -10.6895 ▁wages -10.6895 ▁lightning -10.6895 ▁harm -10.6895 ▁privily -10.6895 ▁Seir -10.6896 ▁mix -10.6896 ▁unbelief -10.6896 ▁issue -10.6896 ▁mingled -10.6896 ▁usual -10.6896 ▁New -10.6897 ▁choose -10.6897 ▁sentence -10.6897 ▁Hono -10.6897 ▁Chapman -10.6897 ▁upright -10.6897 ▁Anah -10.6897 ▁innocent -10.6897 ▁roast -10.6897 ▁assembly -10.6898 ▁confession -10.6898 ▁unbelieving -10.6898 ▁print -10.6899 ▁rear -10.6899 ▁bondservant -10.69 ▁muskets -10.6901 ▁crickets -10.6901 ▁City -10.6901 ▁foolishness -10.6901 ▁honorable -10.6901 ▁appeal -10.6901 ▁somewhere -10.6902 ▁Way -10.6902 ▁bag -10.6903 ▁sighed -10.6903 ▁dart -10.6904 owbeit -10.6905 ▁mention -10.6905 ▁Seven -10.6905 ▁earnestly -10.6908 ▁boots -10.6911 ▁locusts -10.6911 ▁maybe -10.6913 ▁dove -10.6915 ▁persecuted -10.6918 ▁hinder -10.692 ▁Sit -10.6924 ▁afflicted -10.6929 ▁listened -10.6929 ▁mocked -10.6929 ▁peril -10.6934 ▁br -10.6934 ▁entreated -10.6934 ▁sand -10.6934 ▁Fer -10.6939 ▁changed -10.6939 ▁hunters -10.6944 ▁Doth -10.6948 ▁interpreted -10.6949 ▁pocket -10.6952 ttach -10.6957 ▁valu -10.6961 ▁breasts -10.6963 ▁soli -10.6966 ▁kindly -10.6967 ▁beans -10.6971 ▁miles -10.6974 ▁suit -10.6976 ▁leavened -10.6988 ix -10.6989 ▁baskets -10.6994 ▁kneel -10.7004 ▁cloths -10.7006 ▁prisoners -10.7023 ▁bestow -10.7026 ▁besides -10.7036 ▁says -10.7048 ▁beating -10.7054 ▁mess -10.7061 ▁lots -10.7068 ▁exalt -10.7069 op -10.7102 ▁coats -10.711 ▁Ho -10.712 ▁stoned -10.7121 ▁salutation -10.7121 mah -10.7169 ▁fearful -10.7179 ▁parables -10.7184 ▁lands -10.7185 ▁ward -10.7215 ▁tombs -10.7216 ▁reasoning -10.7245 ▁god -10.7247 ▁sp -10.7334 fully -10.7338 ▁aim -10.7348 ans -10.7354 ▁clouds -10.7356 ▁today -10.7379 ia -10.7389 ture -10.7396 ol -10.7409 ▁haven -10.7454 na -10.7471 ▁puff -10.753 ▁rebuk -10.7637 ▁arrow -10.7643 godly -10.767 ▁stepp -10.7686 ▁Repe -10.7692 formed -10.7708 ▁avenge -10.7741 ▁po -10.7751 ▁withstand -10.7756 dal -10.7789 ▁looks -10.7793 ▁rattl -10.7796 ▁step -10.7836 ern -10.7841 ▁judgments -10.7854 ▁inward -10.7864 ▁Arables -10.7876 ▁doors -10.7895 morrow -10.7909 ries -10.7914 ▁ho -10.7926 ▁bush -10.7933 ▁hem -10.7935 ered -10.7971 ▁Abi -10.7977 ▁cove -10.7978 ▁watered -10.7983 ent -10.799 gged -10.8025 nother -10.8033 ▁fail -10.8038 ▁tradition -10.8046 ▁Cas -10.8048 ▁trunk -10.8055 ▁climb -10.8056 kins -10.8058 ▁fugitive -10.8058 ▁chariot -10.8059 ▁mile -10.8059 ▁bras -10.8062 ▁toil -10.8062 ▁shoe -10.8067 K -10.8083 aram -10.8088 you -10.8089 Fern -10.809 ▁fold -10.8092 ▁bone -10.8093 ▁rail -10.8095 ▁tear -10.8095 ▁torment -10.8099 ▁dress -10.8101 ▁entreat -10.8102 down -10.8107 ▁baptize -10.8114 rust -10.8116 some -10.8118 ▁provoke -10.8123 doing -10.8126 ▁becoming -10.813 ▁patient -10.8131 ▁crow -10.8134 ▁Maj -10.8139 ▁murder -10.8139 aithful -10.8144 eathen -10.8144 ▁vari -10.8145 ▁advantage -10.8145 ▁Barabbas -10.8145 ▁Caiaphas -10.8145 ▁Cephas -10.8145 ▁Cilicia -10.8145 ▁Naphtali -10.8145 ▁Rejoice -10.8145 ▁Return -10.8145 ▁Stretch -10.8145 ▁Zebulun -10.8145 ▁abundance -10.8145 ▁anguish -10.8145 ▁attempt -10.8145 ▁beauty -10.8145 ▁capital -10.8145 ▁cloak -10.8145 ▁coffee -10.8145 ▁courage -10.8145 ▁dancing -10.8145 ▁desperate -10.8145 ▁example -10.8145 ▁expedient -10.8145 ▁experience -10.8145 ▁necessity -10.8145 ▁ninth -10.8145 ▁nourish -10.8145 ▁olive -10.8145 ▁ouches -10.8145 ▁perdition -10.8145 ▁pledge -10.8145 ▁renew -10.8145 ▁stories -10.8145 ▁supply -10.8145 ▁terribl -10.8145 ▁uncircumcised -10.8145 ▁valley -10.8145 ▁wolf -10.8145 ▁almonds -10.8145 ▁mitre -10.8145 ▁stiff -10.8145 ▁Bethlehem -10.8145 ▁Dinah -10.8145 ▁Scot -10.8145 ▁blank -10.8145 ▁easy -10.8145 ▁narrow -10.8145 ▁snake -10.8145 ▁baby -10.8145 ▁calm -10.8145 ▁Mark -10.8145 ▁dispute -10.8145 ▁pattern -10.8145 ▁redemption -10.8145 ▁Rome -10.8145 ▁Think -10.8145 ▁abomination -10.8145 ▁conversation -10.8145 ▁yoke -10.8145 ▁provide -10.8145 ▁tunnel -10.8145 ▁townhouse -10.8145 ▁chance -10.8145 ▁Gerar -10.8145 ▁coals -10.8145 ▁Great -10.8145 ▁Adah -10.8145 ▁division -10.8145 ▁blameless -10.8145 ▁disgust -10.8145 ▁lump -10.8146 ▁Tyre -10.8146 ▁impossible -10.8146 ▁zealous -10.8146 ▁blasphemy -10.8146 ▁covetousness -10.8146 ▁miserable -10.8146 ▁admonish -10.8146 ▁signet -10.8146 ▁Jake -10.8146 ▁Eber -10.8147 ▁torn -10.8147 ook -10.8147 ▁sufficien -10.8147 ▁spies -10.8148 ▁partake -10.8148 ▁profitable -10.8148 ▁sorrowful -10.8148 ▁dish -10.8148 ▁dear -10.8148 ▁privately -10.8149 ▁kindled -10.8149 ▁clay -10.8149 ▁Lowan -10.8149 ▁clerk -10.8149 ▁skull -10.8149 ▁shift -10.8149 ▁fresh -10.8149 ▁scourge -10.815 ▁Love -10.815 ▁vast -10.8151 ▁weakness -10.8151 ▁doesn -10.8151 ▁cheek -10.8152 ▁firstfruits -10.8152 ▁uncleanness -10.8152 ▁track -10.8153 ▁ordained -10.8154 ▁grabbed -10.8154 ▁Day -10.8154 ▁discover -10.8156 ▁anyway -10.8157 ▁wasn -10.8157 ▁hopeless -10.8157 ▁hay -10.8159 ▁entirely -10.8159 ▁selves -10.8163 ▁fist -10.8164 ▁health -10.8165 ▁descending -10.8167 ▁farther -10.8167 ▁waved -10.8168 ▁Soon -10.8168 ▁stripes -10.8169 light -10.8169 ▁contain -10.817 ▁clearly -10.8175 ▁smaller -10.8179 up -10.8179 line -10.8179 ▁yelled -10.818 ▁endured -10.8182 ▁disappeared -10.8183 ▁pearls -10.8187 ▁ridges -10.8187 ▁diseases -10.8187 ul -10.8192 ▁pins -10.8197 ▁limbs -10.8198 ▁babes -10.8198 ▁porch -10.8199 ▁music -10.82 ▁corrupted -10.8201 ▁openly -10.8201 ▁bugs -10.8202 mote -10.8205 ▁dressed -10.8209 ▁wagons -10.821 ▁transgressions -10.821 ▁clothing -10.8211 ▁shade -10.8212 ▁proved -10.8216 ▁wit -10.8217 ▁quarter -10.8219 ▁freely -10.822 ▁teacheth -10.822 ▁sowed -10.8228 ▁island -10.8236 ▁poke -10.8246 ▁drops -10.8247 ▁pigs -10.8256 ▁ordinances -10.8258 ▁princes -10.8258 pa -10.8258 ab -10.8277 ▁ra -10.8279 ▁barely -10.8282 ping -10.8284 lee -10.8287 ▁obeyed -10.829 ▁judgest -10.829 ▁nets -10.8303 ites -10.8304 ▁shepherds -10.8306 ▁towns -10.8306 ▁preacher -10.8309 ▁beholding -10.8317 ctually -10.8318 ▁weeks -10.8318 ▁hills -10.833 ▁sawest -10.8333 ▁Seth -10.8334 ▁seeme -10.8359 ▁handle -10.8373 ▁acknowledge -10.8377 ▁Write -10.8379 ▁opening -10.8383 ▁songs -10.8391 ▁perfected -10.8411 ▁rods -10.846 ions -10.8467 ee -10.8487 iel -10.8495 ▁lights -10.8499 ▁ti -10.8538 ▁lover -10.855 aved -10.8554 liness -10.8557 ▁strike -10.8559 cy -10.8596 ▁Ar -10.8651 tuck -10.8669 ▁sisters -10.8673 ▁principal -10.8715 ▁Les -10.8818 ▁Al -10.8819 ree -10.8831 hu -10.8847 ▁Z -10.8855 ▁dra -10.8857 ▁Whe -10.8873 pe -10.8886 ush -10.8888 ft -10.8896 mer -10.8916 ▁thereby -10.892 ▁ended -10.8925 ▁settl -10.8925 ▁saidst -10.8925 ated -10.8949 ▁admir -10.8975 ▁camest -10.8985 ▁liken -10.9017 dden -10.9049 ▁bus -10.9096 ▁wa -10.9114 ▁du -10.9125 ver -10.9168 way -10.9171 ice -10.9192 ▁distress -10.9225 ▁butter -10.9297 ings -10.9326 ▁hearted -10.9331 ▁Am -10.9341 ▁plan -10.9354 ade -10.9381 rash -10.9385 ash -10.939 ▁Ja -10.9391 ipped -10.9407 ut -10.9409 ▁Wa -10.9414 ▁Er -10.9438 il -10.9438 W -10.9439 house -10.9444 over -10.9455 ▁bullock -10.9464 ▁platter -10.9466 ▁plant -10.9467 ▁tale -10.9475 ▁bank -10.9475 ▁blade -10.9479 ▁mock -10.9481 ▁dance -10.9481 ▁listen -10.9484 ▁thunder -10.9485 ▁clothe -10.9485 ▁talent -10.9489 ▁breast -10.9491 ▁weigh -10.95 ▁envy -10.9509 Just -10.9516 stool -10.9516 ▁forbear -10.9516 deep -10.9518 Where -10.9518 but -10.9518 So -10.952 Go -10.952 ▁suppos -10.952 My -10.9524 ▁afflict -10.9528 ▁disappear -10.9529 ▁favour -10.953 ▁hatch -10.9531 ▁jump -10.9531 ▁finish -10.9532 ▁harp -10.9543 same -10.9544 ▁persecute -10.9548 ▁harden -10.9553 ▁plot -10.9554 ▁pea -10.9557 ▁silent -10.956 ▁quick -10.9562 pon -10.9563 ▁adulter -10.9565 ▁careful -10.9565 ▁fade -10.9566 ▁potato -10.9571 ▁engrav -10.9572 ▁forsake -10.9572 ▁birth -10.9573 ▁speed -10.9573 ▁Galil -10.9573 ▁affection -10.9573 ▁Achaia -10.9573 ▁Aholibamah -10.9573 ▁Arphaxad -10.9573 ▁Beelzebub -10.9573 ▁Children -10.9573 ▁Cornelius -10.9573 ▁Cyprus -10.9573 ▁Cyren -10.9573 ▁Eliphaz -10.9573 ▁Elisabeth -10.9573 ▁Felix -10.9573 ▁Fussy -10.9573 ▁Galatia -10.9573 ▁Grounds -10.9573 ▁Hezron -10.9573 ▁Lieutenant -10.9573 ▁Melchizedek -10.9573 ▁Milcah -10.9573 ▁Zilpah -10.9573 ▁Zoar -10.9573 ▁accompan -10.9573 ▁adversaries -10.9573 ▁carnal -10.9573 ▁enormous -10.9573 ▁frozen -10.9573 ▁furniture -10.9573 ▁grandchildren -10.9573 ▁grapes -10.9573 ▁honour -10.9573 ▁infirmity -10.9573 ▁mediator -10.9573 ▁midwives -10.9573 ▁mischief -10.9573 ▁obedient -10.9573 ▁opportunity -10.9573 ▁outdoors -10.9573 ▁refuge -10.9573 ▁ringstraked -10.9573 ▁runners -10.9573 ▁steep -10.9573 ▁storm -10.9573 ▁strove -10.9573 ▁woke -10.9573 ▁wolves -10.9573 ▁clever -10.9573 ▁slaughter -10.9573 ▁Olives -10.9573 ▁aloud -10.9573 ▁beckon -10.9573 ▁gnash -10.9573 ▁occupied -10.9573 ▁pertain -10.9573 ▁adversary -10.9573 ▁myrrh -10.9573 ▁Korah -10.9573 ▁consecrate -10.9573 ▁regular -10.9573 ▁important -10.9574 ▁doctor -10.9574 ▁stockade -10.9574 ▁punishment -10.9574 ▁sinneth -10.9574 ▁Enos -10.9574 ▁birthright -10.9574 ▁holiness -10.9574 ▁stedfast -10.9574 ▁offspring -10.9574 ▁frame -10.9574 ▁Hades -10.9574 ▁train -10.9574 ▁mercies -10.9574 ▁freedom -10.9574 ▁litter -10.9574 ▁comment -10.9574 ▁reins -10.9574 ▁grate -10.9575 ▁check -10.9575 ▁Bash -10.9575 ▁flight -10.9575 ▁imagination -10.9576 ▁useful -10.9576 ▁lame -10.9576 ▁Asher -10.9576 ▁rejecteth -10.9576 ▁hundredfold -10.9576 ▁err -10.9577 ▁human -10.9577 ▁sense -10.9577 ▁perplexed -10.9577 ▁evermore -10.9577 ▁books -10.9577 ▁fever -10.9577 ▁Him -10.9577 ▁spear -10.9577 ▁swarm -10.9577 ▁Bar -10.9578 ▁southward -10.9578 ▁chest -10.9578 ▁Cainan -10.9578 ▁eastward -10.9578 ▁adorn -10.9578 ▁bake -10.9578 ▁throat -10.9579 ▁onyx -10.9579 ▁lend -10.9579 zale -10.958 ▁fourscore -10.958 ▁recent -10.9581 ▁gladness -10.9581 ▁frost -10.9582 ▁menservants -10.9583 ▁sickle -10.9585 ▁view -10.9585 ▁box -10.9585 ▁pursued -10.9585 ▁march -10.9586 ▁Watch -10.9588 ▁shineth -10.9588 ▁ham -10.9589 ▁managed -10.9589 ▁ascended -10.959 ▁deceived -10.9591 ▁refreshed -10.9591 ▁passage -10.9592 ▁tithes -10.9595 ▁soweth -10.9595 ked -10.9595 ▁Hast -10.9595 ▁loaded -10.9598 ▁strengthened -10.9599 der -10.9599 ▁Gad -10.96 ▁axe -10.9602 ▁convict -10.9604 ▁manna -10.9607 tial -10.9609 ▁scared -10.9609 ▁restored -10.9609 skins -10.9618 ▁realize -10.9618 ▁observed -10.962 ▁gladly -10.9621 ▁pe -10.9624 ▁tasted -10.9625 ▁climbing -10.9628 ▁Amorites -10.9636 ▁Only -10.9637 ▁higher -10.9638 ▁wondering -10.9643 ue -10.9645 ▁weary -10.9655 ▁answereth -10.9656 ▁hanged -10.966 ▁mid -10.9665 ▁rust -10.9665 ▁plans -10.9665 ▁sealed -10.9669 ▁incorruptible -10.9671 ▁beware -10.9674 ▁Hai -10.9677 ▁trunks -10.9678 ▁therewith -10.968 ▁steps -10.968 ▁noon -10.9687 ▁redeemed -10.9687 ▁baker -10.969 ▁doves -10.9692 ▁learning -10.9694 ▁fainted -10.97 ▁upward -10.9704 ▁shadows -10.9734 ▁tempt -10.9738 ▁herbs -10.9745 ▁feeding -10.9755 immed -10.9761 ▁dogs -10.9762 tion -10.9762 ▁castle -10.9762 ▁accus -10.9765 ▁meant -10.9766 L -10.9784 ack -10.9796 ▁wouldn -10.9805 ▁attend -10.9811 ▁suffering -10.9827 ▁possessions -10.9833 stroke -10.9835 ▁sixt -10.9836 ▁reed -10.9839 ▁spot -10.9841 ▁candlesticks -10.986 ▁pitch -10.9911 do -10.9955 ▁captains -10.996 ▁temper -10.9961 ▁imagine -10.9966 ▁lovely -10.9973 ▁seats -10.9984 more -10.9992 ▁blot -11.003 ▁Roman -11.0036 ins -11.0049 go -11.0065 ▁killing -11.0082 ▁keeper -11.0119 ▁wars -11.012 om -11.0153 ▁Will -11.0155 ▁boats -11.0162 ▁sounds -11.0165 ith -11.0186 lock -11.0186 ▁courts -11.0191 ▁cow -11.0218 ▁Ad -11.022 ▁El -11.0235 she -11.0312 os -11.0328 ▁tents -11.0338 ified -11.0351 ▁herd -11.0365 ▁De -11.0381 nd -11.0388 ship -11.039 ▁fan -11.0402 ni -11.0422 ▁base -11.0427 ▁dippe -11.0428 ▁Bo -11.0434 ▁worm -11.0435 ▁comest -11.0459 dge -11.0466 ▁pai -11.0507 N -11.0649 ▁prov -11.0649 ▁sa -11.0657 ble -11.0693 ▁yell -11.0714 ▁va -11.0725 ster -11.0732 br -11.0733 don -11.0774 ▁n -11.078 ▁fro -11.0792 pers -11.0822 ▁gun -11.0844 ▁com -11.0855 ane -11.0862 ally -11.0863 ▁befall -11.0943 ay -11.095 test -11.0963 ▁pre -11.0979 head -11.0992 ▁Yes -11.1002 set -11.1008 ough -11.1039 servant -11.1061 lk -11.1062 pped -11.1076 ▁hours -11.1088 ▁cha -11.11 ▁scrap -11.1101 ▁Sa -11.1107 ▁balloon -11.1116 ▁webs -11.1118 ▁scatter -11.1127 ▁whoso -11.1129 ▁labour -11.1131 ations -11.1139 fold -11.1141 ▁sepulchre -11.1141 ▁brick -11.1141 ▁lion -11.1144 ▁statute -11.1145 ▁provision -11.1146 ▁liar -11.1146 ▁persecution -11.1146 ▁messenger -11.1148 ▁maidservant -11.115 ▁murderer -11.1151 ▁wound -11.1152 ▁wagon -11.1152 ▁transgression -11.1152 sh -11.1153 ▁idol -11.1154 ced -11.1154 ▁publican -11.1156 ▁Canaanite -11.1162 H -11.117 control -11.1172 Please -11.1174 ists -11.1177 ▁stir -11.1177 ▁receiv -11.1178 May -11.118 ▁pound -11.118 ▁officer -11.1182 chamber -11.1182 ▁gnaw -11.1183 ▁tabernacles -11.1183 Some -11.1184 Come -11.1184 Templeton -11.1185 li -11.1185 ▁boil -11.1186 She -11.1188 ▁attain -11.1191 ▁confirm -11.1192 ▁oppress -11.1193 ▁bark -11.1197 icken -11.1202 ▁reveal -11.1204 ▁eviden -11.1206 All -11.1208 ▁Y -11.121 ▁fin -11.121 ▁deceive -11.1214 ▁sc -11.1215 ▁peri -11.1218 ▁mud -11.1218 ▁gird -11.1219 ▁inquire -11.1221 ▁require -11.1221 rough -11.1224 bor -11.1224 ▁remove -11.1226 ▁fierce -11.1227 ▁assured -11.1227 ▁glorious -11.123 ▁lone -11.1232 uffer -11.1232 ▁knock -11.1234 ▁Syria -11.1236 gers -11.1237 ▁gentle -11.1237 ▁sect -11.1239 urthermore -11.1239 ▁correct -11.1239 stitute -11.124 ▁abst -11.124 ▁effect -11.124 ▁wool -11.124 torium -11.124 ▁Alexander -11.124 ▁Aquila -11.124 ▁Believe -11.124 ▁Creek -11.124 ▁Eleazar -11.124 ▁Hebron -11.124 ▁Iconium -11.124 ▁Issachar -11.124 ▁Jericho -11.124 ▁KING -11.124 ▁Laodicea -11.124 ▁Lystra -11.124 ▁Machpelah -11.124 ▁Mahalaleel -11.124 ▁Methuselah -11.124 ▁Nazarene -11.124 ▁Peleg -11.124 ▁Sunday -11.124 ▁Troas -11.124 ▁Zibeon -11.124 ▁audience -11.124 ▁autumn -11.124 ▁baptizing -11.124 ▁blemish -11.124 ▁bracelets -11.124 ▁breeze -11.124 ▁ceiling -11.124 ▁cleave -11.124 ▁conditions -11.124 ▁desolation -11.124 ▁eldest -11.124 ▁enmity -11.124 ▁ensample -11.124 ▁execute -11.124 ▁extra -11.124 ▁foreordained -11.124 ▁foreskin -11.124 ▁ignorance -11.124 ▁jasper -11.124 ▁majesty -11.124 ▁merchandise -11.124 ▁mirror -11.124 ▁muscle -11.124 ▁newspaper -11.124 ▁opinion -11.124 ▁plenteous -11.124 ▁rejoicing -11.124 ▁relief -11.124 ▁represent -11.124 ▁reprobate -11.124 ▁reserved -11.124 ▁rotten -11.124 ▁serving -11.124 ▁studie -11.124 ▁taskmasters -11.124 ▁tetrarch -11.124 ▁tobacco -11.124 ▁treasury -11.124 ▁unprofitable -11.124 ▁Army -11.124 ▁Reu -11.124 ▁Word -11.124 ▁downhill -11.124 ▁overshadow -11.124 ▁paused -11.124 ▁queer -11.124 ▁roar -11.124 ▁savor -11.124 ▁shield -11.124 ▁magic -11.124 ▁Eden -11.124 ▁existence -11.124 ▁spell -11.124 ▁Alph -11.124 ▁scorch -11.124 ▁soap -11.124 ▁success -11.124 ▁excellenc -11.124 ▁needlework -11.124 ▁stink -11.124 ▁limit -11.124 ▁grind -11.124 ▁estate -11.124 ▁magnified -11.124 ▁Jesse -11.124 ▁triumph -11.124 ▁foursquare -11.124 ▁Tamar -11.124 ▁vinegar -11.124 ▁quail -11.124 ▁brave -11.124 ▁displease -11.124 ▁unfruitful -11.124 ▁aforetime -11.124 ▁Government -11.124 ▁situation -11.124 ▁folk -11.124 ▁serious -11.124 ▁squatted -11.1241 ▁Salah -11.1241 ▁fame -11.1241 ▁doughnut -11.1241 ▁herdmen -11.1241 ▁encamp -11.1241 ▁government -11.1241 ▁message -11.1241 ▁omer -11.1241 ▁Jared -11.1241 ▁object -11.1241 ▁readiness -11.1241 ▁Reuel -11.1241 ▁Rain -11.1241 ▁hypocrisy -11.1241 ▁tenons -11.1241 ▁center -11.1241 ▁Moon -11.1242 ▁melt -11.1242 ▁barnyard -11.1242 ▁dangerous -11.1242 ▁dy -11.1242 ▁proof -11.1242 ▁depth -11.1242 ▁match -11.1243 ▁Rise -11.1243 ▁saving -11.1243 ▁Shelah -11.1244 ▁Syrian -11.1244 ▁Old -11.1244 ▁squash -11.1245 ▁range -11.1245 ▁recover -11.1245 ▁thrash -11.1246 ▁study -11.1246 ▁Without -11.1247 ▁spotted -11.1247 ▁mass -11.1248 ▁laden -11.1248 ▁convert -11.1249 ▁whiskers -11.1249 ▁prophesied -11.1249 ▁purchased -11.1249 ▁justice -11.1251 ext -11.1251 ▁surety -11.1252 ▁lonely -11.1252 ▁eighth -11.1253 ▁repeated -11.1253 ▁sniffed -11.1253 ▁vexed -11.1253 ▁prof -11.1253 ▁reproved -11.1253 ▁edifying -11.1253 workers -11.1255 ▁pair -11.1256 ▁ripe -11.1257 ▁sickness -11.1257 ▁sum -11.1257 ▁nurse -11.1258 ▁sinful -11.1259 ▁sway -11.1259 ▁Hur -11.1261 ▁fixed -11.1261 cut -11.1262 ael -11.1262 ▁circle -11.1263 ▁couch -11.1264 ▁inquired -11.1265 muel -11.1267 ▁setting -11.1268 ▁blaspheme -11.1268 ▁instructed -11.1269 ▁collected -11.1269 ▁covet -11.1269 ▁exten -11.127 ▁nodded -11.1272 ▁softly -11.1273 ▁groaning -11.1274 ▁evident -11.1275 ▁backward -11.1278 ▁Other -11.1279 ▁plainly -11.128 ▁riding -11.128 ▁somebody -11.1282 ▁wounded -11.1286 ▁despised -11.129 ▁released -11.129 ▁lace -11.1291 ▁marvell -11.1292 ▁pervert -11.1296 ▁Cret -11.1297 ▁murmurings -11.1298 ▁distressed -11.13 ▁forbidd -11.131 ▁distan -11.1312 ▁cursed -11.1314 ▁searching -11.1314 ▁testifying -11.1314 ▁hogs -11.1315 ▁marketplaces -11.1315 ▁Samaritans -11.1315 ▁questionings -11.1316 ▁accepted -11.1318 ▁May -11.1318 ▁openeth -11.1319 ▁intent -11.1321 ▁hairy -11.1322 ▁laws -11.1323 ▁sojourned -11.1327 ▁ju -11.1327 ▁pounds -11.1331 ▁maidservants -11.1332 ▁ours -11.1332 ▁housetop -11.1337 ▁plants -11.1347 robably -11.135 ▁begged -11.1354 ▁workers -11.1354 uffle -11.1366 ▁coves -11.1366 ▁exhorted -11.1369 mit -11.1376 ▁paths -11.1381 ▁virgins -11.1381 ▁waves -11.1382 ▁uttered -11.1384 ▁labored -11.1386 ▁speakest -11.1387 ▁knops -11.1398 Not -11.14 ▁shapes -11.14 ▁clearing -11.1402 ▁Good -11.1405 ▁hundreds -11.1409 ▁entertain -11.1415 ▁burying -11.1419 ▁Mo -11.1421 ▁beach -11.1427 ▁bands -11.1431 ▁pots -11.1436 ech -11.1443 ▁Eli -11.1446 ▁appearing -11.1446 ▁Mi -11.1454 ▁drinketh -11.1459 ▁supplications -11.1465 ▁occasions -11.147 ▁Sometime -11.1476 ▁Co -11.1478 gging -11.1486 ▁di -11.1505 ▁rac -11.1512 ▁serpents -11.1516 ▁Ou -11.152 ide -11.152 ▁En -11.1524 ▁roots -11.155 ▁fasting -11.1551 ▁holes -11.1567 ▁constrain -11.1607 iness -11.1615 ▁creeks -11.1618 nce -11.1619 ▁Pi -11.1622 ▁char -11.1634 ▁bother -11.1641 ▁sayings -11.1653 ▁smelling -11.1657 ▁dreaming -11.1666 ▁seest -11.1674 ▁examin -11.168 ▁helping -11.1686 ▁Ne -11.1709 ▁pop -11.1713 ▁Sin -11.1723 ▁process -11.1728 ▁gra -11.1743 ha -11.1751 ▁sta -11.1797 ▁tangle -11.1812 uch -11.1894 how -11.1916 by -11.1938 longeth -11.1983 ig -11.1991 trusted -11.2007 ▁nuts -11.2051 ▁hairs -11.2055 v -11.2082 lushed -11.21 Is -11.2101 tur -11.2121 ▁Con -11.2123 ▁signifie -11.2126 lic -11.2127 pic -11.2144 ▁member -11.2164 ious -11.2165 ▁spi -11.2167 pensation -11.2183 ▁Ari -11.2199 son -11.2212 ▁Jo -11.2235 ▁Le -11.2249 ▁mere -11.2256 ▁win -11.2311 ▁cur -11.2317 tic -11.2336 treated -11.2355 ▁sub -11.2357 da -11.2375 ▁welcome -11.2381 are -11.2387 ▁treasures -11.2394 ign -11.2402 ▁im -11.2408 ▁bas -11.2417 ▁ease -11.2425 ancy -11.243 ▁sprinkle -11.244 ▁throw -11.2458 ▁pie -11.2473 lah -11.2505 sive -11.2514 ▁dodg -11.253 ale -11.2565 ▁fain -11.2602 ▁lords -11.2638 ▁cutt -11.2646 cession -11.2675 io -11.2696 ▁imagin -11.2697 ▁simpl -11.2702 bal -11.2702 llen -11.2723 ▁examine -11.2728 ▁longing -11.2732 ▁shave -11.2735 ▁cor -11.2739 shed -11.2741 ▁heave -11.2742 ▁Sheba -11.2762 nas -11.2787 pping -11.2808 pots -11.2836 ▁Gree -11.2837 ▁min -11.2842 tained -11.2882 ▁cap -11.2908 ▁flu -11.2942 own -11.2967 right -11.2979 ving -11.2984 ▁Sha -11.2988 long -11.2995 ged -11.2997 ▁Ju -11.3005 ▁Ten -11.3029 like -11.3046 M -11.3075 cept -11.3088 hold -11.3101 ▁ga -11.3108 ▁rid -11.3108 held -11.3112 ccord -11.3126 ▁tumult -11.3131 ▁trans -11.3144 ▁eunuch -11.3148 ▁shilling -11.3148 ▁chestnut -11.3148 corruptible -11.3149 ▁sheet -11.3149 ▁plate -11.3149 ▁Samaritan -11.315 ▁marketplace -11.315 ▁Amorite -11.3151 ▁babe -11.3152 worker -11.3153 ▁hunter -11.316 ▁push -11.317 wear -11.317 ▁hog -11.3171 ▁limb -11.3173 ▁Na -11.3173 ▁instruction -11.318 Will -11.3182 color -11.3183 When -11.3185 Wilbur -11.3185 ▁includ -11.3186 midst -11.3186 ▁pin -11.3187 ▁accomplish -11.3197 Of -11.3197 ▁prevail -11.3197 ▁Late -11.3199 ▁hind -11.3199 ▁charg -11.32 ▁handful -11.3205 yard -11.3207 ▁dim -11.321 ▁K -11.322 ▁decide -11.3221 ▁conceive -11.3221 ▁circumcise -11.3222 lace -11.3223 ursed -11.3225 ▁lunch -11.3225 ▁mouths -11.3226 ▁confident -11.3227 ▁fervent -11.3227 ▁brief -11.3227 ▁shout -11.3228 ▁deceitful -11.3228 ▁difficult -11.323 uddenly -11.323 ▁warn -11.3232 ▁overthrow -11.3236 ▁rend -11.3239 ▁purse -11.3239 ▁zeal -11.3239 ▁confus -11.3239 ▁deceit -11.3239 ▁cruel -11.3239 ▁pant -11.324 ▁Corinth -11.324 ▁Bethsaida -11.324 ▁Boudinot -11.324 ▁Chedorlaomer -11.324 ▁Chief -11.324 ▁Deliver -11.324 ▁Friend -11.324 ▁Nadab -11.324 ▁Pamphylia -11.324 ▁Philippi -11.324 ▁Serug -11.324 ▁Tarsus -11.324 ▁Thomas -11.324 ▁Tychicus -11.324 ▁YHWH -11.324 ▁abolish -11.324 ▁accurately -11.324 ▁affrighted -11.324 ▁amazement -11.324 ▁anathema -11.324 ▁attitude -11.324 ▁beguile -11.324 ▁betrothed -11.324 ▁borrow -11.324 ▁bridle -11.324 ▁carriage -11.324 ▁cheese -11.324 ▁consecration -11.324 ▁cornmeal -11.324 ▁cotton -11.324 ▁dissolved -11.324 ▁furlongs -11.324 ▁grandmother -11.324 ▁grandstand -11.324 ▁grief -11.324 ▁grinned -11.324 ▁heretofore -11.324 ▁hospitality -11.324 ▁hurry -11.324 ▁infirmities -11.324 ▁insurrection -11.324 ▁leather -11.324 ▁magazine -11.324 ▁mandrakes -11.324 ▁muttered -11.324 ▁nutrients -11.324 ▁organisms -11.324 ▁perfume -11.324 ▁powder -11.324 ▁racket -11.324 ▁regret -11.324 ▁religion -11.324 ▁spinnerets -11.324 ▁strict -11.324 ▁stunned -11.324 ▁swelling -11.324 ▁task -11.324 ▁terrified -11.324 ▁thieves -11.324 ▁thoroughly -11.324 ▁ungodliness -11.324 ▁upstairs -11.324 ▁vanity -11.324 ▁vengeance -11.324 ▁whisky -11.324 ▁avoid -11.324 ▁cream -11.324 ▁deaf -11.324 ▁decision -11.324 ▁excess -11.324 ▁flavor -11.324 ▁indoors -11.324 ▁kinsmen -11.324 ▁lascivious -11.324 ▁orchard -11.324 ▁progress -11.324 ▁sweep -11.324 ▁thumb -11.324 ▁worried -11.324 ▁Diana -11.324 ▁Nathanael -11.324 ▁burst -11.324 ▁neglect -11.324 ▁polish -11.324 ▁secur -11.324 closing -11.324 ▁Hosanna -11.324 ▁alien -11.324 ▁rumor -11.324 ▁slumber -11.324 ▁sneak -11.324 ▁Like -11.324 ▁gravity -11.324 ▁Aholi -11.324 ▁crumbs -11.324 ▁difference -11.324 ▁citizenship -11.324 ▁snout -11.324 Sleep -11.324 ▁choke -11.324 ▁heavily -11.324 ▁continuing -11.324 ▁fables -11.324 Humble -11.324 ▁Deep -11.324 ▁delay -11.324 ▁tag -11.324 ▁overtake -11.324 ▁bald -11.324 ▁odor -11.324 diment -11.324 ▁Gaius -11.324 ▁Zerah -11.324 ▁Jason -11.324 ▁bowels -11.324 ▁Heaven -11.324 ▁Depart -11.324 ▁support -11.324 ▁babies -11.324 ▁straitened -11.324 ▁consolation -11.324 ▁bucket -11.324 ▁riverboat -11.324 ▁seventeen -11.324 ▁Tru -11.3241 ▁graft -11.3241 ▁bleed -11.3241 ▁urgent -11.3241 ▁uncertain -11.3241 ▁brook -11.3241 ▁stewardship -11.3241 ▁sincerity -11.3241 ▁dig -11.3241 ▁gentlemen -11.3241 ▁dollar -11.3241 ▁buck -11.3241 ▁property -11.3241 ▁wallet -11.3241 ▁partner -11.3241 ▁crook -11.3241 ▁assign -11.3241 ▁accusation -11.3241 ▁otherwise -11.3241 ▁Herodias -11.3241 ▁provender -11.3241 ▁scales -11.3241 ▁confusion -11.3241 ▁stem -11.3241 ▁victory -11.3241 ▁attack -11.3241 ▁tower -11.3241 ▁envie -11.3241 ▁assay -11.3241 ▁hys -11.3242 ▁landscape -11.3242 ▁liquor -11.3242 ▁wot -11.3242 ▁duty -11.3242 ▁chew -11.3242 ▁lice -11.3242 ▁shamefully -11.3242 ▁carton -11.3242 ▁split -11.3242 Bee -11.3242 ▁dung -11.3242 ▁shortened -11.3242 ▁utterance -11.3242 ▁distinction -11.3242 ▁friendship -11.3242 ▁expectation -11.3242 ▁raw -11.3242 ▁behave -11.3243 ▁motionless -11.3243 ▁square -11.3243 ▁offence -11.3243 ▁appearance -11.3243 ▁potatoes -11.3243 ▁firm -11.3243 ▁westward -11.3243 ▁filthy -11.3243 ▁dizzy -11.3243 ▁memory -11.3243 ▁pepper -11.3244 ▁spilled -11.3244 ▁peach -11.3244 ▁tossed -11.3244 ▁potter -11.3244 neck -11.3245 ▁argument -11.3245 ▁Save -11.3245 ▁cris -11.3245 ▁election -11.3245 ▁punished -11.3246 ▁frightened -11.3246 ▁booth -11.3246 ▁ladies -11.3247 agement -11.3247 ▁Jonah -11.3248 ▁Keep -11.3248 ▁boast -11.325 ▁wake -11.325 ▁priesthood -11.325 ▁glanc -11.3251 ▁squirrels -11.3252 ▁relieved -11.3252 ▁Onan -11.3252 ▁Sam -11.3255 tual -11.3256 ▁chuckled -11.3256 ▁explained -11.3256 ▁trembled -11.3256 ▁Over -11.3256 ▁comfortable -11.3256 ▁gainsaying -11.3257 ▁graven -11.3257 ▁slight -11.3258 R -11.3259 ▁stage -11.326 ▁pine -11.3262 ▁moth -11.3264 lapped -11.3264 ▁pretend -11.3265 ▁noble -11.3265 ▁chastening -11.3267 ▁scar -11.3268 ▁upside -11.3269 ross -11.327 ▁however -11.3271 ▁weave -11.3271 ▁Fall -11.3271 ▁damp -11.3271 ▁whispering -11.3271 ▁tares -11.3271 ▁warriors -11.3271 ▁idolaters -11.3272 ▁swo -11.3272 ▁blasphemed -11.3272 servants -11.3272 ▁entr -11.3272 ▁stern -11.3274 ▁liver -11.3275 ▁closer -11.3276 ▁laborers -11.3278 ▁Anna -11.3284 ▁ax -11.3285 ▁severally -11.3286 ▁position -11.3287 ▁key -11.3288 ▁Nothing -11.3289 ▁humbled -11.3289 ▁assembled -11.329 ▁ma -11.3291 ▁Jebusites -11.3292 ▁fornicators -11.3292 ▁shelters -11.3292 ▁Perizzites -11.3292 ▁grievously -11.3292 ▁news -11.3294 ▁throwing -11.3294 ▁forthwith -11.3294 ▁chase -11.3295 ▁girded -11.3297 ▁bug -11.3297 ▁barking -11.33 ▁flatter -11.33 ▁sir -11.3302 ▁spinn -11.3303 ▁stack -11.3304 ▁passions -11.3306 ▁lid -11.3307 ▁scattering -11.3309 ▁fi -11.3309 ▁thereunto -11.3309 ▁seethe -11.3309 ▁droppings -11.3312 ▁joints -11.3313 ▁sparrows -11.3313 ▁personal -11.3316 ▁tormented -11.3317 ▁perisheth -11.332 ▁mocking -11.3321 ▁failing -11.3322 bed -11.3322 ▁closely -11.3326 ▁delighted -11.3327 ▁starv -11.3327 ▁fatherless -11.3327 ▁deck -11.3328 Thank -11.3329 ▁eunuchs -11.3333 ▁shillings -11.3333 ▁chestnuts -11.3333 ▁plates -11.3333 ▁thinkest -11.3338 som -11.3339 ▁stopp -11.3342 ▁treated -11.3342 ▁veiled -11.3348 ▁questioning -11.3351 ▁invisible -11.3354 ▁messengers -11.3354 ▁Whom -11.3354 ature -11.3358 arley -11.3363 ▁singing -11.3365 ▁firstling -11.3367 ▁wont -11.337 ole -11.3373 ▁considered -11.3375 ▁inhabited -11.3379 sop -11.3385 ▁mist -11.3388 ton -11.3391 ▁manif -11.3394 ▁interesting -11.3394 ▁prophesying -11.3395 iest -11.3399 ▁serveth -11.34 ▁ahead -11.34 ▁needeth -11.3401 ▁exhorting -11.3409 II -11.3412 ▁efforts -11.3416 vile -11.3426 ▁cart -11.3426 ▁proceeded -11.3429 ▁older -11.3433 ▁minutes -11.3437 ▁filling -11.3437 ▁windows -11.3438 ards -11.3442 ▁believest -11.3446 ▁fashioned -11.3451 ▁dec -11.3451 ▁ja -11.3452 ▁fle -11.3457 ▁hatchets -11.3458 ▁breathing -11.347 his -11.3472 ▁heirs -11.3479 ▁awful -11.35 ▁seals -11.3505 ible -11.3519 alam -11.3532 side -11.3548 ▁tooth -11.3555 ▁divine -11.3561 ▁forever -11.3566 mp -11.3574 ▁fowls -11.3584 ▁miracles -11.3584 ▁males -11.3585 ▁pri -11.3591 revious -11.3613 ▁sco -11.3626 ▁wheels -11.3627 ▁afterwards -11.3627 ▁questions -11.3629 ▁remind -11.3639 ▁Se -11.3643 ▁cane -11.3649 ▁pleasures -11.3691 ▁helper -11.3695 nath -11.3698 co -11.3698 ff -11.3699 ▁tails -11.3712 ▁Cana -11.3728 bah -11.3745 dom -11.3766 ▁helped -11.3768 ▁accuser -11.3773 ▁pa -11.3779 ran -11.378 ▁Bu -11.3786 uth -11.3796 hin -11.3809 ▁images -11.382 ▁ash -11.3823 row -11.3829 ▁scorn -11.3882 ▁doll -11.3888 ded -11.3896 gy -11.3925 urge -11.3926 ▁orders -11.3928 ▁shell -11.3987 eph -11.4023 ▁points -11.4053 ise -11.4071 ▁peaceful -11.4082 ears -11.4099 ▁trac -11.4116 ias -11.4117 ▁sy -11.4119 ▁su -11.4122 ▁intreat -11.4135 ▁lur -11.415 ast -11.4158 ▁tip -11.4181 ork -11.4203 tal -11.4241 ▁decompose -11.4241 ▁bl -11.4249 aph -11.4274 ▁helps -11.4322 ▁ver -11.434 ▁puffe -11.4362 ▁empt -11.4399 ▁runt -11.4407 ating -11.4429 rushed -11.4434 ▁steppe -11.4462 por -11.4471 ▁commune -11.4476 ▁decompos -11.4505 ▁bees -11.4506 nched -11.4556 ▁mar -11.4573 ify -11.4616 ull -11.4641 cked -11.4657 ▁layer -11.4677 als -11.4693 ▁tu -11.4696 ▁tool -11.4711 phe -11.4745 ile -11.4759 ▁Si -11.4771 ▁Ti -11.4771 ▁bar -11.4798 ▁Whit -11.4809 rim -11.4841 pture -11.4862 ▁val -11.4875 angled -11.4905 ▁mol -11.4906 ▁qua -11.4913 erah -11.4915 ▁kn -11.5027 pen -11.503 iv -11.5031 rous -11.5034 ▁dip -11.5086 ▁Wi -11.5108 ▁distribute -11.5135 ▁doer -11.5138 com -11.5148 ▁Ah -11.5151 ▁settle -11.5166 dull -11.5177 ▁Di -11.5189 ▁camel -11.5195 ere -11.5214 ▁whit -11.5257 bout -11.5269 ▁rag -11.5319 ▁Ca -11.5327 ians -11.5351 ▁injur -11.5359 lations -11.5368 ▁overthr -11.5387 rated -11.5387 eak -11.5392 unt -11.5395 board -11.5412 ung -11.542 onsider -11.5426 eez -11.5436 ▁cake -11.5441 uck -11.5458 ▁using -11.5465 ▁Bela -11.5489 ower -11.5497 ▁Mu -11.5556 round -11.5567 work -11.5571 ▁prefer -11.5586 ▁vow -11.5587 ▁skill -11.5593 ▁Set -11.5595 visible -11.5597 antic -11.5622 ttention -11.5626 ▁candle -11.5628 ▁invent -11.5636 cerning -11.5638 ▁exp -11.5639 ▁groan -11.564 ▁nail -11.5642 ▁rank -11.5642 ▁debtor -11.5643 ▁pomegranate -11.5646 ▁weapon -11.5646 ined -11.5647 ▁murmur -11.5647 ngel -11.5648 ▁sparrow -11.5648 ▁dropping -11.5649 ▁deceiver -11.565 ▁disease -11.5652 stone -11.5652 ▁perver -11.5654 ▁descend -11.5654 ▁gosling -11.5655 took -11.5655 ▁loop -11.5657 ▁pearl -11.5659 ▁cla -11.5659 aged -11.5661 ▁partaker -11.5665 ▁chain -11.5667 course -11.5667 tled -11.5671 ▁prais -11.5678 Stop -11.5678 Nothing -11.5679 ▁judg -11.568 Edith -11.5682 terrific -11.5682 ▁despair -11.5683 D -11.5683 bow -11.5684 front -11.5684 Who -11.5685 worthy -11.5685 gave -11.5685 Did -11.5687 ▁waste -11.5688 ▁purify -11.5688 master -11.5688 fell -11.5689 face -11.5691 For -11.5691 ▁load -11.5692 thirst -11.5693 ▁jo -11.5694 ▁instruct -11.5694 ▁threaten -11.5694 ▁collect -11.5694 ▁ridge -11.5697 foot -11.5699 ▁Kno -11.5699 ▁murmuring -11.5699 nets -11.5702 Then -11.5707 ouched -11.5713 ▁strengthen -11.5714 ▁preten -11.5714 rent -11.5715 key -11.5715 ▁excite -11.5718 ▁arrange -11.5719 ▁tremble -11.5719 ▁surprise -11.5719 ▁reprove -11.572 ▁approve -11.5721 ▁swa -11.5722 ▁dr -11.5725 ps -11.5726 ▁general -11.5726 ounded -11.5726 ▁clan -11.5727 ▁vague -11.5727 ▁Ke -11.5728 ▁exact -11.5728 ▁abundant -11.5728 ▁immediate -11.5729 ▁bruise -11.5729 ▁supplie -11.573 ▁greas -11.573 ▁map -11.5731 ▁cheerful -11.5732 ▁glorie -11.5732 ▁sur -11.5733 hood -11.5733 They -11.5734 ▁bon -11.5734 ▁ski -11.5735 ▁safe -11.5736 weed -11.5736 spect -11.5736 ▁railing -11.5737 ▁transgress -11.5737 belief -11.5738 they -11.5738 ▁debt -11.5738 ▁riot -11.5739 ▁express -11.5739 ▁cherub -11.5739 ▁proper -11.5739 ▁flour -11.5739 ▁yo -11.574 ▁strait -11.574 nswere -11.574 bby -11.574 ▁glutton -11.574 ▁horizon -11.574 ▁occur -11.574 Listen -11.574 Terrific -11.574 latchet -11.574 tarsus -11.574 ▁Amminadab -11.574 ▁Aristarchus -11.574 ▁Comforter -11.574 ▁Congress -11.574 ▁Cranshaw -11.574 ▁Derbe -11.574 ▁Dishon -11.574 ▁Ephrath -11.574 ▁Euphrates -11.574 ▁GOD -11.574 ▁Havilah -11.574 ▁Hearken -11.574 ▁Hogsucker -11.574 ▁Ishmeelites -11.574 ▁Kohath -11.574 ▁Nicodemus -11.574 ▁PIG -11.574 ▁Receive -11.574 ▁Servant -11.574 ▁Succoth -11.574 ▁Would -11.574 ▁Zohar -11.574 ▁absence -11.574 ▁adoption -11.574 ▁afford -11.574 ▁assurance -11.574 ▁blowgun -11.574 ▁bounty -11.574 ▁cabbage -11.574 ▁century -11.574 ▁chapiters -11.574 ▁cinnamon -11.574 ▁concubine -11.574 ▁convenient -11.574 ▁correspond -11.574 ▁demanded -11.574 ▁devise -11.574 ▁emerald -11.574 ▁engine -11.574 ▁foxes -11.574 ▁greeting -11.574 ▁handkerchief -11.574 ▁haught -11.574 ▁hereafter -11.574 ▁impart -11.574 ▁incorruption -11.574 ▁insects -11.574 ▁level -11.574 ▁mysterious -11.574 ▁necessities -11.574 ▁nostrils -11.574 ▁obeisance -11.574 ▁perform -11.574 ▁picture -11.574 ▁pilgrims -11.574 ▁president -11.574 ▁proconsul -11.574 ▁pronounce -11.574 ▁propitiation -11.574 ▁province -11.574 ▁raspberr -11.574 ▁request -11.574 ▁response -11.574 ▁restitution -11.574 ▁restrained -11.574 ▁reviling -11.574 ▁revived -11.574 ▁riverbank -11.574 ▁sapphire -11.574 ▁sardius -11.574 ▁showbread -11.574 ▁shrank -11.574 ▁smiled -11.574 ▁solemn -11.574 ▁straddle -11.574 ▁survive -11.574 ▁swift -11.574 ▁sworn -11.574 ▁terror -11.574 ▁twig -11.574 ▁unimagin -11.574 ▁unloose -11.574 ▁unmarried -11.574 ▁unusual -11.574 ▁whiskey -11.574 ▁Brother -11.574 ▁diminish -11.574 ▁disappoint -11.574 ▁element -11.574 ▁emerge -11.574 ▁latter -11.574 ▁orange -11.574 ▁queen -11.574 ▁raven -11.574 ▁roam -11.574 ▁scrivener -11.574 ▁Gilead -11.574 ▁Ithamar -11.574 ▁Likewise -11.574 ▁discreet -11.574 ▁fraction -11.574 ▁impress -11.574 ▁knuckle -11.574 ▁leprosy -11.574 ▁mammon -11.574 ▁merchant -11.574 ▁mule -11.574 ▁mysteries -11.574 ▁reproof -11.574 ▁giant -11.574 ▁clipping -11.574 ▁middling -11.574 ▁Potiph -11.574 ▁circum -11.574 ▁crystal -11.574 ▁bereaved -11.574 ▁bondwoman -11.574 ▁exchange -11.574 ▁holler -11.574 ▁instru -11.574 ▁noodle -11.574 ▁adulteress -11.574 ▁beggar -11.574 ▁kicked -11.574 ▁title -11.574 ▁buryingplace -11.574 ▁refrain -11.574 ▁Christmas -11.574 ▁turban -11.574 ▁Salmon -11.574 ▁liberality -11.574 ▁enchantments -11.574 ▁workmanship -11.574 ▁occupation -11.574 ▁sackcloth -11.574 ▁bodily -11.574 ▁flash -11.574 ▁gorge -11.574 ▁snapp -11.574 ▁Preparation -11.574 ▁Count -11.574 ▁stumblingblock -11.574 ▁Joses -11.574 ▁arrival -11.574 ▁blasphemies -11.574 ▁blossoms -11.574 ▁freewoman -11.574 ▁fungus -11.574 access -11.574 ▁Buddy -11.574 ▁covetous -11.574 ▁Abb -11.574 ▁palsied -11.574 ▁Walk -11.574 ▁nap -11.574 ▁winepress -11.574 ▁digging -11.574 ▁decree -11.574 ▁Moab -11.574 ▁paddle -11.574 ▁foggy -11.574 ▁job -11.574 ▁reverence -11.574 ▁Drink -11.5741 ▁Italy -11.5741 ▁confe -11.5741 ▁Goodbye -11.5741 ▁Little -11.5741 ▁principalities -11.5741 ▁thicket -11.5741 ▁tonight -11.5741 kay -11.5741 ▁cursing -11.5741 ▁gently -11.5741 ▁Shur -11.5741 ▁permit -11.5741 nquire -11.5741 ▁Haden -11.5741 ▁announcement -11.5741 ▁lane -11.5741 ▁pink -11.5741 ▁Shinar -11.5741 ▁towel -11.5741 ▁adj -11.5741 ▁tempest -11.5741 ▁scoop -11.5741 ▁flick -11.5741 ▁Gran -11.5741 ▁patch -11.5741 ▁package -11.5741 ▁midday -11.5741 ▁conceal -11.5741 ▁candy -11.5741 ntil -11.5742 ▁apostleship -11.5742 ▁halt -11.5742 ▁entangle -11.5742 ▁Elam -11.5742 ▁guilty -11.5742 ▁loving -11.5742 ▁crime -11.5742 ▁malice -11.5742 ▁countries -11.5742 ▁heathen -11.5742 ▁awkwardly -11.5742 ▁crash -11.5742 ▁Miz -11.5742 ndy -11.5742 ▁shore -11.5742 ville -11.5743 ▁main -11.5743 ▁pillow -11.5743 ▁claw -11.5743 ▁furthermore -11.5743 ▁satisfied -11.5744 ▁defer -11.5744 ▁thistles -11.5744 ▁stedfastness -11.5744 ▁vo -11.5744 ▁Weep -11.5744 ▁barbarian -11.5744 ▁bill -11.5744 ▁communicate -11.5745 ▁husbandman -11.5745 ▁Abib -11.5745 ▁cleansing -11.5746 ▁nearby -11.5746 ▁operat -11.5746 ▁sheepfold -11.5746 ▁easily -11.5746 ▁super -11.5747 ▁blast -11.5747 ▁jar -11.5747 ▁armor -11.5748 ▁violent -11.5748 ▁forsaken -11.5748 ▁grunted -11.5748 ▁gambl -11.5748 chol -11.5748 eedy -11.5748 ▁crushed -11.5749 ▁phone -11.5749 ▁whiteman -11.575 ▁disturb -11.575 ▁skirt -11.575 no -11.575 ▁grease -11.575 ▁wealth -11.5751 ▁supplieth -11.5751 ▁Jam -11.5751 ently -11.5751 ▁blame -11.5752 ▁difficulty -11.5753 ▁agreement -11.5753 ▁contend -11.5753 ▁vaguely -11.5753 ▁Else -11.5753 ▁needful -11.5753 pro -11.5754 ▁weaving -11.5754 ▁wrist -11.5754 ▁dare -11.5754 ▁cheerfully -11.5754 ▁cost -11.5755 ▁trott -11.5755 ▁curv -11.5755 ▁acres -11.5755 ▁ribs -11.5755 ▁magistrates -11.5755 ▁Lotan -11.5756 ▁knot -11.5756 ▁candie -11.5757 ▁briefly -11.5757 sual -11.5757 ▁deceitfully -11.5757 ▁persecutest -11.5757 ▁maple -11.576 ▁ability -11.576 ▁fiercely -11.576 ▁sink -11.576 ▁vanished -11.5761 ▁overhead -11.5761 ▁arranged -11.5761 ▁slipp -11.5762 ▁sower -11.5764 ▁silently -11.5764 ▁clang -11.5767 quil -11.5767 ▁float -11.5768 ▁stalk -11.5768 ode -11.5768 ▁Summ -11.5769 ▁block -11.5769 ▁wink -11.5769 ▁quake -11.577 ▁reconciled -11.577 ▁platt -11.577 ▁shovel -11.5771 ▁thirsty -11.5772 ▁soup -11.5774 ▁Never -11.5774 ▁overthrown -11.5774 ▁remark -11.5774 ▁Men -11.5774 ▁steady -11.5776 ration -11.5779 ▁sincere -11.578 ▁slopes -11.5781 ▁physicians -11.5781 ▁killers -11.5782 ▁dad -11.5783 ▁action -11.5784 ▁louder -11.5784 irst -11.5784 ▁endless -11.5785 ▁commendeth -11.5786 ▁groaned -11.5788 ▁card -11.5788 ▁manservant -11.5789 ▁anew -11.5789 ▁joint -11.5791 ▁sever -11.5797 ▁stumbleth -11.5802 ▁pushing -11.5804 ▁naturally -11.5805 azed -11.5807 ▁flip -11.5808 ▁earrings -11.5808 ▁lepers -11.5808 ▁boughs -11.5809 ▁transgressors -11.5809 ▁faithless -11.5811 ▁invented -11.5811 ▁shit -11.5812 ▁trapper -11.5812 ▁sojourners -11.5814 ▁oppressed -11.5814 ▁confirmed -11.5814 ▁Remov -11.5815 ▁melted -11.5816 ▁urge -11.5819 ▁yester -11.5819 ▁wildly -11.5823 ▁completed -11.5824 ▁particle -11.5824 ▁whoring -11.5825 ▁companions -11.5825 ▁Hous -11.583 ▁hon -11.5835 ▁pomegranates -11.5835 ▁weapons -11.5836 ▁wond -11.5836 ev -11.5837 ▁actions -11.5837 ▁overmuch -11.5838 ▁hatched -11.5839 ▁Teman -11.5847 ▁continueth -11.5848 ▁commandeth -11.5849 ▁rep -11.5851 king -11.5855 ▁wh -11.5855 ▁mourned -11.5855 ▁extortioner -11.5856 this -11.5857 ▁thereto -11.5859 alutations -11.5859 ▁mudd -11.5859 ▁sen -11.5861 aid -11.5864 ▁ci -11.5865 ▁department -11.5869 position -11.5881 erable -11.5882 ▁comb -11.5882 ▁rider -11.5883 In -11.5883 ▁richly -11.5883 rops -11.5886 lessly -11.5889 ▁liars -11.589 ▁statutes -11.589 ▁provisions -11.589 ▁persecutions -11.589 ac -11.5891 ▁chin -11.5892 ▁guns -11.5893 ▁murderers -11.5894 za -11.5895 ▁sucked -11.5896 ▁needy -11.5903 ▁transform -11.5905 ▁Romans -11.5908 ▁wanton -11.5911 ▁finest -11.5911 ▁driver -11.5913 ▁preacheth -11.5916 ▁dances -11.5917 ▁squa -11.5932 oc -11.5941 ▁deeply -11.5942 ▁smoked -11.5946 ups -11.5947 cum -11.595 ▁lacked -11.5951 gered -11.5953 unny -11.5961 ▁mete -11.5966 ▁goes -11.5967 its -11.5968 ▁pi -11.597 ▁nests -11.5973 ▁games -11.5973 ▁captives -11.5973 ▁habitations -11.5973 ▁girls -11.5973 ep -11.5975 ▁profited -11.5978 ▁flowers -11.598 vice -11.5982 ▁trapp -11.5991 ▁regarded -11.5991 ction -11.5995 ▁thighs -11.6 tty -11.6002 ▁worrying -11.6006 T -11.6018 ▁amount -11.6021 ▁righteously -11.6024 oth -11.6024 ▁logs -11.6028 ▁willeth -11.6036 ▁killeth -11.6052 cakes -11.6056 ▁colors -11.6056 ▁papers -11.6056 mong -11.6061 ▁tea -11.6062 ▁customs -11.6084 ius -11.6086 che -11.6108 ▁regions -11.6112 ▁forgett -11.6114 ric -11.6116 ▁seasoned -11.6119 ▁embrace -11.6119 bs -11.612 ▁Abid -11.6124 ▁tomorrow -11.6136 ▁streams -11.614 ▁Christian -11.614 ▁worshipp -11.6149 ▁style -11.6149 full -11.6163 ▁figs -11.6168 ▁aged -11.6169 ▁buildings -11.6172 ▁meaning -11.6183 ▁staying -11.6184 ▁crowned -11.6197 ▁visions -11.6207 ▁owners -11.621 uz -11.6223 ▁Fe -11.6224 ▁mon -11.6243 ▁governors -11.6253 ▁sus -11.6263 ▁ships -11.6288 figur -11.6288 ▁Par -11.6298 arm -11.6307 et -11.6311 ives -11.6318 ▁treat -11.6326 inning -11.6336 ▁charges -11.6343 compelled -11.6371 ▁Eph -11.6371 ▁afternoons -11.6397 ▁doings -11.643 enable -11.6432 ▁ink -11.6465 ok -11.6465 ▁penn -11.6479 mma -11.649 ▁wanting -11.6503 fe -11.651 ▁edges -11.6512 ▁rehears -11.6514 racles -11.6518 ▁writer -11.654 ▁favorabl -11.6541 ▁rattle -11.6612 tent -11.6629 inner -11.6645 anke -11.6654 ▁conce -11.6729 ▁busi -11.6747 ▁smit -11.6748 ▁perp -11.6759 ▁shower -11.677 ▁Was -11.6772 ▁earthy -11.6778 ons -11.6795 ▁Stop -11.6802 ▁swords -11.681 ▁fellows -11.6811 bone -11.6813 ▁entice -11.6825 ave -11.684 ▁belong -11.6866 ▁journeys -11.6869 ▁lap -11.6875 ▁differ -11.6888 ▁prisons -11.6901 ▁heel -11.6903 x -11.6911 ▁curl -11.6927 ema -11.6933 eral -11.6942 Be -11.6952 vil -11.6952 born -11.6963 ▁beard -11.6966 ich -11.6974 ular -11.6991 ddle -11.7009 ▁Ben -11.7039 ▁Ph -11.704 aking -11.7052 ▁afore -11.7056 ban -11.7062 ▁lashe -11.707 ▁earthly -11.7093 van -11.7103 ▁ch -11.7121 ▁meats -11.7122 ore -11.7256 bel -11.7274 wled -11.7341 dder -11.735 wood -11.7356 ▁argu -11.7369 ▁mus -11.7402 ▁Phi -11.7409 ond -11.7426 ▁interrupt -11.7441 ▁gaz -11.7515 her -11.7536 ▁feasts -11.754 wardly -11.7545 ▁struggle -11.7618 nut -11.7651 ▁parting -11.7661 ai -11.7697 ▁inch -11.7731 ▁owe -11.7789 ▁Shal -11.7789 pringtime -11.7805 ▁ob -11.782 ▁driv -11.7849 lation -11.7849 dding -11.7861 ▁hug -11.791 ▁strik -11.7917 ro -11.8006 ▁breathe -11.805 ▁Pra -11.8054 mortal -11.8136 ▁temperat -11.8148 rred -11.8154 ▁pur -11.8166 ▁j -11.8176 uni -11.8177 ities -11.8198 nic -11.8198 uring -11.8205 lings -11.8207 ▁ascend -11.8208 ▁striv -11.8212 itches -11.8212 ▁cares -11.8223 ▁calls -11.8224 ▁Ass -11.8236 ▁crack -11.8257 uddle -11.8259 doers -11.8277 ▁mis -11.8296 ener -11.8309 urn -11.831 lab -11.8332 ten -11.8347 fare -11.8358 fire -11.8369 ▁bre -11.8386 ca -11.8419 ▁Ro -11.8441 rian -11.8479 ▁Eu -11.8487 ▁oppos -11.8495 eyed -11.8522 we -11.8523 ▁Eve -11.8536 mus -11.8563 ▁embrac -11.8569 tting -11.8577 ati -11.8581 mmed -11.8626 tery -11.8644 tops -11.8662 ▁fla -11.8681 lia -11.8699 ▁resid -11.8704 rance -11.8709 ▁fre -11.8728 ▁temples -11.8761 eries -11.8768 ▁chi -11.8779 ak -11.8781 pher -11.8781 ▁hasted -11.8781 ▁backs -11.8782 ▁Sal -11.8783 sha -11.8835 ▁bu -11.8837 unted -11.8858 aimed -11.8869 ▁fir -11.887 ized -11.8885 Th -11.8895 ega -11.8896 handed -11.89 ▁Mes -11.8905 ▁extortion -11.8915 ading -11.8919 ▁wrest -11.8921 doer -11.8933 ▁compel -11.8938 gg -11.894 ▁bough -11.8949 nceforth -11.8955 orted -11.8956 ▁chasten -11.8965 ▁benefit -11.8965 ▁patriarch -11.8965 ▁guest -11.8965 ▁result -11.8965 ▁bishop -11.8965 ▁ewe -11.8966 will -11.8966 rches -11.8969 ▁faction -11.897 ▁psalm -11.8975 ▁senator -11.8975 come -11.8975 ▁pigeon -11.8975 ▁whisper -11.8975 ▁eagle -11.8976 ▁repute -11.8976 ▁section -11.8978 ▁Levite -11.8978 dressed -11.8978 ▁leper -11.8979 unch -11.898 ▁transgressor -11.8981 ▁Jebusite -11.8982 ▁Perizzite -11.8982 ▁fornicator -11.8982 hand -11.8982 ▁peoples -11.8983 ▁bla -11.8985 ▁earring -11.8985 ▁shelter -11.8985 ▁hook -11.8991 ▁bo -11.8994 upon -11.8994 ▁stab -11.8995 ▁spice -11.8996 ▁sojourner -11.8997 eas -11.9 quench -11.9001 ▁gir -11.9001 witch -11.9001 load -11.9004 ▁needle -11.9005 bbed -11.9007 ▁farmer -11.9007 Certainly -11.9008 warm -11.9008 owing -11.9011 worm -11.9011 bas -11.9011 Y -11.9012 stood -11.9013 ridge -11.9014 hearted -11.9016 Pig -11.9016 floor -11.9016 prisoner -11.9016 Ho -11.9016 hooks -11.9016 learned -11.9017 legs -11.9018 quiet -11.9018 pieces -11.9018 break -11.9018 thirty -11.9018 closed -11.9018 blood -11.9018 finger -11.9018 wife -11.9018 Take -11.9019 ground -11.9019 looking -11.9019 ick -11.9019 ▁encounter -11.9019 ▁remov -11.9019 Sure -11.9022 ▁assembl -11.9022 ocked -11.9024 ▁affirm -11.9024 ▁buffet -11.9024 ▁loos -11.9025 Every -11.9026 ▁explo -11.9029 ▁refresh -11.9029 speak -11.903 ▁fix -11.9034 volut -11.9035 sembled -11.9035 que -11.9036 back -11.9038 five -11.9042 An -11.9042 hath -11.9043 ▁miss -11.9047 ▁Alexandria -11.9048 Here -11.9049 Te -11.9049 ▁Right -11.905 ▁cree -11.905 ▁enlarge -11.9051 ▁relieve -11.9053 ▁prophesie -11.9053 ▁purchase -11.9053 ▁bore -11.9054 ▁determine -11.9054 ▁excuse -11.9056 ▁marrie -11.9056 ▁pursue -11.9056 ▁arrive -11.9057 ▁meek -11.9057 ▁pierce -11.9058 posed -11.9059 ▁delicate -11.9059 ▁nervous -11.906 ▁app -11.906 cient -11.9062 ▁private -11.9062 ocia -11.9062 alvation -11.9064 ▁possibl -11.9064 ▁jealous -11.9065 atic -11.9066 ju -11.9066 ected -11.9067 upp -11.9068 istles -11.9069 ▁brim -11.9072 roi -11.9072 ▁gener -11.9072 ossum -11.9072 ▁mirac -11.9072 ntity -11.9072 ▁forgot -11.9072 ▁princip -11.9072 ▁meditat -11.9072 ▁announce -11.9072 orthy -11.9073 appy -11.9073 reakfast -11.9073 ▁author -11.9073 olonel -11.9073 ▁desp -11.9073 oyal -11.9073 ▁apprecia -11.9073 Congratu -11.9073 ▁Jehovah -11.9073 wilight -11.9073 zziah -11.9073 ▁Adullamite -11.9073 ▁Ahaz -11.9073 ▁Aranea -11.9073 ▁Bartholomew -11.9073 ▁Bernice -11.9073 ▁Bethphage -11.9073 ▁Boaz -11.9073 ▁Boston -11.9073 ▁Chaldees -11.9073 ▁Chesapeake -11.9073 ▁Crawdaddy -11.9073 ▁Decapolis -11.9073 ▁Demetrius -11.9073 ▁Echota -11.9073 ▁Eliezer -11.9073 ▁Epaphras -11.9073 ▁Ethiopia -11.9073 ▁Galway -11.9073 ▁Gennesaret -11.9073 ▁Gershon -11.9073 ▁Golgotha -11.9073 ▁Hallelujah -11.9073 ▁Hezekiah -11.9073 ▁Horeb -11.9073 ▁Jeremiah -11.9073 ▁Joktan -11.9073 ▁Jotham -11.9073 ▁Jupiter -11.9073 ▁Kadesh -11.9073 ▁Kenaz -11.9073 ▁Luke -11.9073 ▁Matthew -11.9073 ▁Merari -11.9073 ▁Nahshon -11.9073 ▁Nebajoth -11.9073 ▁Nellie -11.9073 ▁Notwithstanding -11.9073 ▁Olivet -11.9073 ▁Peabody -11.9073 ▁Pentecost -11.9073 ▁Perez -11.9073 ▁Perga -11.9073 ▁Pharez -11.9073 ▁Phrygia -11.9073 ▁Pontus -11.9073 ▁Prince -11.9073 ▁Priscilla -11.9073 ▁Psalms -11.9073 ▁Rehoboth -11.9073 ▁Rephidim -11.9073 ▁Sardis -11.9073 ▁Shealtiel -11.9073 ▁Siddim -11.9073 ▁Silvanus -11.9073 ▁Street -11.9073 ▁Symeon -11.9073 ▁Tarshish -11.9073 ▁Thessalonica -11.9073 ▁Trophimus -11.9073 ▁Twelve -11.9073 ▁Zeboi -11.9073 ▁Zillah -11.9073 ▁Zipporah -11.9073 ▁achieve -11.9073 ▁addition -11.9073 ▁advance -11.9073 ▁aeronaut -11.9073 ▁affairs -11.9073 ▁anxiety -11.9073 ▁apiece -11.9073 ▁attire -11.9073 ▁avail -11.9073 ▁balsam -11.9073 ▁bountifully -11.9073 ▁canvas -11.9073 ▁captivity -11.9073 ▁chickadee -11.9073 ▁colours -11.9073 ▁column -11.9073 ▁conclusion -11.9073 ▁conduct -11.9073 ▁conflict -11.9073 ▁congealed -11.9073 ▁constructed -11.9073 ▁contrariwise -11.9073 ▁contributi -11.9073 ▁corpse -11.9073 ▁crazy -11.9073 ▁curiosity -11.9073 ▁deacons -11.9073 ▁desperation -11.9073 ▁destiny -11.9073 ▁disorderly -11.9073 ▁disputing -11.9073 ▁dissension -11.9073 ▁district -11.9073 ▁draught -11.9073 ▁dungeon -11.9073 ▁edifieth -11.9073 ▁embarrass -11.9073 ▁esteem -11.9073 ▁exhausted -11.9073 ▁exotic -11.9073 ▁farewell -11.9073 ▁fascinating -11.9073 ▁feeble -11.9073 ▁fetters -11.9073 ▁fifties -11.9073 ▁forewarn -11.9073 ▁fragments -11.9073 ▁frankincense -11.9073 ▁furnished -11.9073 ▁handbreadth -11.9073 ▁hayloft -11.9073 ▁hymn -11.9073 ▁immortality -11.9073 ▁increasing -11.9073 ▁jailor -11.9073 ▁journals -11.9073 ▁kinsfolk -11.9073 ▁knothole -11.9073 ▁leanfleshed -11.9073 ▁lodging -11.9073 ▁machine -11.9073 ▁matrix -11.9073 ▁meadow -11.9073 ▁mistress -11.9073 ▁moisture -11.9073 ▁mosquitoes -11.9073 ▁oblig -11.9073 ▁opposition -11.9073 ▁philosoph -11.9073 ▁pilgrimage -11.9073 ▁pistol -11.9073 ▁poison -11.9073 ▁poverty -11.9073 ▁predator -11.9073 ▁produce -11.9073 ▁rabbit -11.9073 ▁recognize -11.9073 ▁rectang -11.9073 ▁remnant -11.9073 ▁replenish -11.9073 ▁representatives -11.9073 ▁retrieve -11.9073 ▁sermon -11.9073 ▁shewbread -11.9073 ▁shoot -11.9073 ▁shotgun -11.9073 ▁subsistence -11.9073 ▁swept -11.9073 ▁swipe -11.9073 ▁tavern -11.9073 ▁terrain -11.9073 ▁territory -11.9073 ▁throng -11.9073 ▁titmouse -11.9073 ▁tread -11.9073 ▁unawares -11.9073 ▁unceasing -11.9073 ▁undefiled -11.9073 ▁unexpected -11.9073 ▁unjust -11.9073 ▁unknown -11.9073 ▁unreasonable -11.9073 ▁unveiled -11.9073 ▁uproar -11.9073 ▁vehemently -11.9073 ▁vertical -11.9073 ▁virtue -11.9073 ▁waterproof -11.9073 ▁yesternight -11.9073 ▁antichrist -11.9073 ▁compact -11.9073 ▁congress -11.9073 ▁dedicat -11.9073 ▁gnat -11.9073 ▁maintain -11.9073 ▁oven -11.9073 ▁unloaded -11.9073 ▁Asshur -11.9073 ▁Demas -11.9073 ▁Latin -11.9073 ▁clover -11.9073 ▁conquer -11.9073 ▁distinguish -11.9073 ▁dowry -11.9073 ▁dusk -11.9073 ▁freeze -11.9073 ▁major -11.9073 ▁overwhelm -11.9073 ▁pitfall -11.9073 ▁proverb -11.9073 ▁quiver -11.9073 ▁Dishan -11.9073 ▁Glory -11.9073 ▁agony -11.9073 ▁desk -11.9073 ▁saddlebag -11.9073 ▁succeed -11.9073 ▁superscription -11.9073 Play -11.9073 dopted -11.9073 satisfact -11.9073 ▁Serve -11.9073 ▁cedar -11.9073 ▁conclud -11.9073 ▁loaf -11.9073 ▁lucre -11.9073 ▁oats -11.9073 ▁satisfy -11.9073 ▁topaz -11.9073 vaga -11.9073 ▁Bind -11.9073 ▁Erastus -11.9073 ▁moaned -11.9073 ▁smart -11.9073 ▁Besides -11.9073 ▁Talk -11.9073 ▁backbit -11.9073 ▁profess -11.9073 timber -11.9074 ▁Arabia -11.9074 ▁approaching -11.9074 ▁undone -11.9074 ▁Dedan -11.9074 ▁procur -11.9074 ▁Shobal -11.9074 ▁authorities -11.9074 ▁consult -11.9074 Could -11.9074 ▁limp -11.9074 havi -11.9074 ▁Welch -11.9074 ▁brawle -11.9074 ▁Jobab -11.9074 ▁River -11.9074 ▁wafer -11.9074 alley -11.9074 ▁abated -11.9074 ▁emotion -11.9074 ▁surround -11.9074 ▁united -11.9074 ▁Balaam -11.9074 ▁delicious -11.9074 ▁dread -11.9074 ▁abuse -11.9074 ▁engage -11.9074 ▁swimming -11.9074 ▁Marah -11.9074 ▁mumbled -11.9074 ▁stock -11.9074 ▁tanner -11.9074 ▁Syr -11.9074 ▁Tiberias -11.9074 ▁Phoenicia -11.9074 ▁assistance -11.9074 ▁ceasing -11.9074 ▁tape -11.9074 ▁pottage -11.9074 ▁trading -11.9074 ▁chide -11.9074 ▁rebelled -11.9074 ▁slanderers -11.9074 ▁Territories -11.9074 ▁prophetess -11.9074 ▁sheaf -11.9074 ▁Prisc -11.9074 ▁glow -11.9074 ▁grownups -11.9074 ▁terrify -11.9074 ▁vote -11.9074 ▁pestilence -11.9074 ▁quill -11.9074 ▁Creator -11.9074 ▁midway -11.9074 ▁route -11.9074 ▁slant -11.9074 ▁luck -11.9074 ▁brink -11.9074 ▁nobleman -11.9074 OM -11.9074 choni -11.9074 ▁device -11.9074 iletus -11.9074 ▁scent -11.9074 ella -11.9074 ▁contentious -11.9074 ▁Shuah -11.9074 ▁cords -11.9074 ▁smear -11.9074 ▁Zeal -11.9074 ▁Paradise -11.9074 ▁stubble -11.9074 ▁indig -11.9074 ▁Ezer -11.9074 ▁Luz -11.9074 ▁bolt -11.9074 clock -11.9074 ▁Fift -11.9074 ▁destitute -11.9074 kling -11.9074 ▁Lys -11.9075 ▁crafti -11.9075 ▁spun -11.9075 ▁amiss -11.9075 everal -11.9075 ▁prun -11.9075 ▁mistake -11.9075 east -11.9075 ▁locks -11.9075 ▁pouches -11.9075 ▁safety -11.9075 ▁birch -11.9075 ▁variet -11.9075 ▁lounge -11.9075 phath -11.9075 ▁affectionate -11.9075 ▁responsibilit -11.9075 ▁bondman -11.9075 ▁possum -11.9075 ▁Herodians -11.9075 ▁lobby -11.9075 ▁moonlight -11.9075 ▁harness -11.9075 ▁poking -11.9075 ▁shorn -11.9075 ▁birthday -11.9075 ▁lawlessness -11.9075 ▁Corn -11.9075 ▁errand -11.9075 ▁cruse -11.9076 ▁favorite -11.9076 ▁spru -11.9076 ▁stank -11.9076 noch -11.9076 ▁jerky -11.9076 ▁hireling -11.9076 ▁garnet -11.9076 ▁hatred -11.9076 ▁justification -11.9076 ▁Still -11.9076 ▁Big -11.9076 ▁modest -11.9076 ▁sideboards -11.9076 ▁correction -11.9076 ▁imprisonment -11.9076 ▁advertisement -11.9076 ▁peel -11.9076 ▁lain -11.9076 ▁Pass -11.9076 ▁weaned -11.9076 ▁lowliness -11.9076 ▁Meat -11.9076 ▁beryl -11.9077 ▁equality -11.9077 ▁Elon -11.9077 ▁pallet -11.9077 ▁departure -11.9077 ▁Hard -11.9077 ▁ladder -11.9077 ▁population -11.9077 ▁Esh -11.9077 ▁womenservants -11.9078 ulous -11.9078 ▁scarce -11.9078 ▁harmless -11.9078 ▁Bethel -11.9078 ▁withereth -11.9078 ▁moss -11.9078 ▁forks -11.9078 ▁braid -11.9078 pparent -11.9078 ▁observation -11.9078 ▁heritage -11.9079 ▁trance -11.9079 ▁hateful -11.908 ▁Mother -11.908 ▁weaknesses -11.908 ▁decease -11.908 ▁cele -11.908 ▁Cush -11.9081 ▁lofty -11.9081 ▁thoughtfully -11.9081 ▁specifi -11.9081 ▁practic -11.9081 circling -11.9081 ▁resolv -11.9082 ▁boundary -11.9082 ▁joyful -11.9082 ▁owest -11.9083 ▁Canaanit -11.9083 ▁visitors -11.9083 ▁More -11.9083 ▁cust -11.9083 ▁Dog -11.9084 ▁purser -11.9084 ▁bay -11.9084 little -11.9084 ▁Ram -11.9084 ▁broth -11.9084 ▁deliverance -11.9084 ▁engraver -11.9084 ▁Life -11.9084 ▁hoisted -11.9084 ▁enlightened -11.9084 ▁Timnath -11.9085 ▁Lif -11.9085 mates -11.9085 ▁lingere -11.9085 ▁sevenfold -11.9085 ▁exist -11.9086 ▁rare -11.9086 lves -11.9086 ▁bitterness -11.9087 ▁treaty -11.9087 ▁nervously -11.9087 ▁alleg -11.9087 ▁reviled -11.9087 ▁thefts -11.9087 ▁Five -11.9087 ▁overhear -11.9088 ubtle -11.9088 ▁fur -11.9088 ▁swoop -11.9088 ▁waist -11.9088 ▁wishes -11.9088 ▁drift -11.9088 ▁rifle -11.9088 ▁smoking -11.9088 ▁ridden -11.9088 ▁barrel -11.9088 ▁Any -11.9088 ▁collection -11.9088 ▁Really -11.9089 ▁sobbed -11.9089 lick -11.909 ▁Ski -11.909 ▁clu -11.909 ▁maiden -11.909 ▁Away -11.909 ▁slice -11.9091 ▁interpreter -11.9091 ▁Amram -11.9092 ▁costly -11.9092 ▁safely -11.9092 ▁stall -11.9093 ▁avenger -11.9093 ▁quietness -11.9094 ▁dishes -11.9094 roughly -11.9095 ▁plantation -11.9095 ▁forgiveness -11.9095 ▁Athens -11.9096 ▁Horites -11.9096 ▁Ephesians -11.9096 ▁buttocks -11.9096 ▁malefactors -11.9096 ▁ornaments -11.9096 ▁stairs -11.9096 ▁spoons -11.9096 ▁mounds -11.9096 ▁reflect -11.9096 ▁enlarged -11.9096 ▁plead -11.9096 ▁discour -11.9096 ▁sowest -11.9096 ▁prey -11.9096 ▁workman -11.9097 ▁builders -11.9097 makers -11.9097 ▁fervently -11.9098 ▁confidently -11.9098 ▁passway -11.9098 ▁sport -11.9098 ▁Obed -11.9098 gar -11.9101 ▁blasphemeth -11.9101 ▁blackness -11.9101 bib -11.9101 ▁sup -11.9102 ▁fadeth -11.9102 ▁knocketh -11.9103 ▁quenched -11.9103 ▁confounded -11.9103 ▁hallowed -11.9104 ▁unfe -11.9104 ▁excited -11.9105 ▁balloonist -11.9105 ▁signifying -11.9105 ▁threshing -11.9105 ▁basin -11.9105 ▁blink -11.9107 ▁faithfulness -11.9107 ▁lit -11.9108 uci -11.911 quet -11.9111 ▁compli -11.9112 ▁trout -11.9112 ▁source -11.9114 ▁patiently -11.9114 cated -11.9114 ▁referr -11.9114 ▁surprised -11.9116 ▁bruised -11.9116 ▁Ash -11.9116 ▁consideration -11.9116 ▁passion -11.9118 llaba -11.9119 ▁uprightly -11.9119 ▁diam -11.9119 ▁address -11.9119 ▁pans -11.912 ▁fishers -11.912 aster -11.9121 ▁tie -11.9121 ▁affirmed -11.9123 ▁buffeted -11.9123 ▁chastened -11.9124 ▁eighteen -11.9124 ▁outwardly -11.9124 uit -11.9124 ▁mash -11.9124 ▁squat -11.9125 ▁childless -11.9125 ▁pierced -11.9126 onge -11.9126 ▁contention -11.9126 ▁hor -11.9127 ▁joke -11.9127 ▁beheaded -11.9128 ▁AN -11.9128 ▁eleventh -11.9129 ▁pleasantly -11.913 ament -11.9132 stance -11.9132 ▁brimm -11.9133 ▁strands -11.9134 ▁anchors -11.9134 ▁features -11.9134 ▁sorcerers -11.9134 ▁None -11.9134 ▁basons -11.9134 ▁peaceable -11.9135 did -11.9136 ▁defilement -11.9138 ▁memorialize -11.914 ▁purifie -11.9144 ▁Certainly -11.9144 ▁Hunt -11.9145 mission -11.9145 ▁army -11.9145 avan -11.9146 ▁purifying -11.9146 ▁bidd -11.9148 ▁preserved -11.9149 ▁provoked -11.9151 hair -11.9151 ▁reapeth -11.9152 ▁outhouse -11.9155 gate -11.9155 ▁control -11.9158 ▁Herm -11.9158 ▁har -11.9158 ▁destroyer -11.916 Egg -11.916 ▁wrestl -11.9163 ▁boo -11.9163 ▁threatening -11.9164 ▁pals -11.9167 ▁impen -11.9167 gars -11.9171 ▁Lib -11.9172 ▁pigeons -11.9173 ▁psalms -11.9173 ▁senators -11.9173 ▁Levites -11.9173 ▁eagles -11.9173 ▁sections -11.9174 ▁stirr -11.9176 ▁ruleth -11.9178 oming -11.9182 cob -11.9183 ▁Timna -11.9185 ▁farmers -11.9185 ▁cured -11.9185 ▁wounding -11.9188 ▁fleeth -11.9188 ical -11.9189 ▁lawless -11.9192 ▁lu -11.9194 ▁metal -11.9203 attered -11.9203 ▁remarks -11.9211 RE -11.9212 ▁heels -11.9212 ▁nails -11.9212 ▁agate -11.9212 ▁meaneth -11.9213 ▁vows -11.9213 ▁debtors -11.9213 ▁loads -11.9214 ▁cards -11.9214 ▁Pat -11.9214 ▁deceivers -11.9214 ▁tur -11.9215 ▁moveth -11.9217 ▁fewer -11.9217 ▁scraping -11.9217 ▁Please -11.922 ▁attained -11.9227 ▁possessor -11.9231 ▁cu -11.9233 ▁envying -11.9242 ▁slime -11.9248 traightway -11.9249 ▁lowly -11.925 ▁handfuls -11.9253 xa -11.9258 ▁falsely -11.926 ▁pants -11.9261 ways -11.9261 edent -11.9263 ndered -11.9268 ▁k -11.9269 ▁patt -11.9272 ▁handled -11.9278 ▁traveled -11.9281 ▁understandeth -11.9284 ▁doubled -11.9286 ▁ruled -11.9287 killet -11.9288 ▁bricks -11.9293 ▁sepulchres -11.9293 ▁scraps -11.9294 ▁lions -11.9294 ▁worms -11.9298 ▁fastings -11.9299 ▁justif -11.93 ▁pleasing -11.9302 ▁livers -11.9302 ▁def -11.9303 ▁swinging -11.9313 ▁doubting -11.9314 ▁favored -11.9317 strain -11.9321 ▁fetched -11.9321 ▁seemly -11.9324 ▁alike -11.9327 ▁careth -11.9328 ▁frie -11.9329 ▁goal -11.9332 ▁blades -11.9333 ▁banks -11.9333 ▁tales -11.9333 ▁Saying -11.9335 ▁spl -11.9336 ▁salted -11.9341 ▁rate -11.9341 ▁burdened -11.9343 ▁harps -11.9347 mal -11.9357 ference -11.936 ▁flowed -11.936 ▁deserted -11.9364 sia -11.9364 ronic -11.9365 ▁folds -11.9373 ▁traditions -11.9374 ▁inv -11.9376 ads -11.9393 ▁inwards -11.9395 ▁jell -11.9411 ▁rubbe -11.9418 changers -11.9418 phan -11.9422 ▁beg -11.9428 ▁chil -11.9438 ▁piti -11.9446 ▁guides -11.9452 ▁figures -11.9455 ▁earthquakes -11.9455 enness -11.9457 ▁healings -11.9458 ▁fightings -11.9458 ▁outward -11.9464 zah -11.9467 coal -11.9476 ▁dine -11.9477 ▁sop -11.9484 ▁posts -11.9492 ▁scal -11.9493 ▁chambers -11.9496 ▁threads -11.9496 ▁washing -11.9501 ▁daze -11.9515 ▁seeds -11.9515 ▁playing -11.9528 skinned -11.953 stern -11.9554 sea -11.9556 ▁Za -11.9568 ▁cases -11.9579 uts -11.9579 lax -11.9585 ▁multiplying -11.9594 ograph -11.9614 ▁revelations -11.9621 ▁happens -11.9623 ▁wail -11.9627 ▁departing -11.9641 ▁adventure -11.9648 ▁pal -11.9651 ause -11.9662 ▁caves -11.9663 ▁girdles -11.9664 ▁deserts -11.9665 bach -11.9678 —- -11.9679 ▁oppose -11.9687 ▁hens -11.9702 ▁cabins -11.9705 ittle -11.9705 ▁Sea -11.9721 ▁War -11.9722 ▁occasional -11.9735 ▁oaths -11.9747 ▁snows -11.9747 ▁cau -11.975 oking -11.9773 ▁bushe -11.9774 omp -11.9785 ▁tribulations -11.979 ▁labors -11.9792 ▁gallo -11.9806 raise -11.9816 ▁afflictions -11.9833 stable -11.9846 uff -11.9871 imate -11.988 ▁Gre -11.9891 ▁hearer -11.9914 ▁la -11.9948 ium -11.9966 ▁class -11.9973 ▁states -12.0005 ▁rightly -12.0013 ui -12.0024 ▁blinded -12.0024 ▁fasted -12.0033 cu -12.0041 lent -12.0042 ▁res -12.0043 ▁perfecting -12.0045 ▁foundations -12.0065 ▁Ab -12.0069 ▁Sett -12.0073 oli -12.0078 amped -12.0087 ▁breastplates -12.0092 rah -12.0095 ▁Sh -12.0103 ▁gat -12.0103 ▁fr -12.0136 ▁crackl -12.0146 ▁Med -12.0159 ecting -12.0169 ▁shove -12.0179 ▁counsels -12.0225 ▁needles -12.0227 ▁Haz -12.026 ▁sorrows -12.0261 oned -12.0271 eady -12.0276 ▁inte -12.0282 ▁Hush -12.0285 ▁Hol -12.0286 ▁Hid -12.0295 ye -12.0309 ▁famines -12.0315 ON -12.0316 ▁Gat -12.0317 ▁sel -12.0342 ▁workings -12.0345 ▁socia -12.0361 ▁snatch -12.0371 yst -12.0384 ▁wil -12.0397 ▁persuad -12.0404 damn -12.0417 ▁uses -12.0447 ▁breaks -12.0459 ▁numbers -12.0501 ▁Almo -12.0506 Che -12.0547 ▁Zi -12.0554 ▁services -12.0635 ▁reform -12.0664 ▁weari -12.0664 ▁fe -12.0679 ▁crates -12.0729 herein -12.0734 MO -12.0736 ▁allow -12.0748 ▁uncle -12.0751 cord -12.0756 nigh -12.0763 arrows -12.0771 ▁struggl -12.0777 ▁rou -12.0785 ▁admire -12.0797 eigne -12.0847 ▁hum -12.0962 ▁Ber -12.1015 ander -12.102 B -12.1024 allowed -12.1033 ▁gaze -12.104 ▁blackberr -12.1092 ▁uneas -12.1092 ▁argue -12.1114 ching -12.1116 claimed -12.1122 vi -12.1131 wist -12.1143 ▁pace -12.1153 tended -12.1179 ▁cat -12.1226 ▁elevate -12.1231 ▁Jac -12.1236 ▁Jet -12.1243 empti -12.1261 ▁Pen -12.1273 ▁loft -12.1275 actic -12.1289 ▁da -12.1301 ray -12.1409 ▁sole -12.1429 berries -12.1452 ▁mood -12.147 top -12.1492 ▁pat -12.16 spir -12.1603 shell -12.1625 illy -12.1641 epho -12.1642 ▁blu -12.1652 ock -12.1666 ▁Car -12.168 ▁Command -12.1701 ▁gall -12.1724 lashes -12.1732 ▁sacr -12.1796 ▁trace -12.1803 ▁commo -12.1821 ▁wi -12.1821 iles -12.1932 orn -12.196 ▁waxe -12.1963 hai -12.1978 came -12.205 ▁invit -12.208 ▁Jer -12.2116 Isn -12.2129 ▁Hi -12.2138 ▁tast -12.2149 ▁Pu -12.215 ▁che -12.2152 lasses -12.2152 ▁slu -12.2168 ud -12.2169 onster -12.2204 ame -12.2215 ▁inde -12.2288 oved -12.2354 mar -12.2354 ows -12.2356 ieth -12.2386 ▁contr -12.2407 ▁Ri -12.2459 ▁pr -12.246 ▁rehearse -12.2506 lids -12.2584 ▁Sep -12.2594 rity -12.263 zo -12.2643 ow -12.2688 ▁Sou -12.2689 rench -12.2696 ncy -12.2788 ence -12.2819 igure -12.283 ▁constraine -12.2867 congratu -12.2876 oon -12.2908 ano -12.2932 ▁rage -12.295 ▁pu -12.295 met -12.2968 eek -12.2974 hew -12.2979 ▁Sho -12.3004 nah -12.3004 bi -12.3015 tie -12.3019 asped -12.3041 ▁Amon -12.3054 tening -12.3065 asty -12.3076 han -12.3077 ▁considerabl -12.3108 vious -12.3121 zens -12.3148 ▁strok -12.3154 husks -12.3161 loo -12.3165 ▁spat -12.3178 ▁rais -12.3183 To -12.3195 ▁scra -12.3211 ▁port -12.324 ▁wag -12.3259 ace -12.3259 ▁rec -12.3278 mbled -12.329 ▁actual -12.3299 ▁troubl -12.3332 rie -12.3346 awfully -12.336 ench -12.3383 laus -12.3414 rable -12.3424 ▁chal -12.3424 ▁Om -12.3467 ron -12.3481 cial -12.3496 roth -12.3514 ▁li -12.352 ▁divid -12.354 P -12.3575 ▁stripe -12.3593 ER -12.3634 any -12.3676 obably -12.3692 giver -12.3699 ▁plo -12.37 amo -12.3726 oiled -12.3729 amia -12.3749 TH -12.3757 ivity -12.3762 wish -12.3775 E -12.3783 self -12.3785 nger -12.3787 ▁attendan -12.3795 ▁slim -12.3795 ▁ston -12.3815 ging -12.3817 itable -12.3832 AR -12.3855 ib -12.3858 minate -12.3869 sided -12.3872 ▁magn -12.3873 ▁rob -12.3881 ▁companion -12.3883 inch -12.3887 Hey -12.3888 icles -12.3888 j -12.3895 ounding -12.3914 headed -12.3916 never -12.3919 ▁impe -12.3923 ▁Tra -12.3927 mobil -12.3931 ▁arch -12.3931 struction -12.3933 ▁slap -12.3934 ips -12.3934 ▁wrap -12.394 him -12.3944 ▁Tim -12.3946 ▁bite -12.3946 ▁horn -12.3947 ▁convi -12.3947 ▁complain -12.3963 ▁impo -12.3964 oving -12.3964 ▁scorpion -12.3966 ▁elbow -12.3966 ▁poplar -12.3966 ▁apron -12.3966 ▁impla -12.3968 ▁hillside -12.3968 ▁sorcerer -12.3976 ▁anchor -12.3976 ▁feature -12.3976 use -12.3977 ▁bason -12.398 ▁slope -12.398 ▁physician -12.3981 ▁Sanct -12.3981 ▁strand -12.3982 ▁warrior -12.3983 hereabouts -12.3983 ▁highway -12.3983 ▁idolater -12.3984 ▁locust -12.3987 ▁payment -12.3987 ▁speci -12.3988 ▁tithe -12.3988 orry -12.3988 ▁selve -12.3989 ▁hypocrite -12.3989 ▁robber -12.399 ▁tare -12.3991 ▁observ -12.3994 ▁thorn -12.3995 ▁tran -12.3999 ▁sigh -12.3999 ▁mil -12.4 ▁revile -12.4 agger -12.4001 jected -12.4002 continu -12.4002 rag -12.4003 citizen -12.4003 Wash -12.4003 uncle -12.4005 corn -12.4007 source -12.4008 pathetic -12.4009 tions -12.4009 ▁excus -12.4009 handled -12.4009 draft -12.401 float -12.4011 stalk -12.4012 AN -12.4012 limb -12.4012 block -12.4012 Summ -12.4013 hog -12.4013 Never -12.4014 ▁pierc -12.4014 ▁bro -12.4014 ▁persecut -12.4014 gird -12.4015 box -12.4015 stedfast -12.4015 Watch -12.4015 cloth -12.4015 ▁sid -12.4015 None -12.4015 search -12.4016 Seven -12.4016 Get -12.4016 Henry -12.4016 keeper -12.4016 soldier -12.4016 J -12.4016 Perhaps -12.4016 shekel -12.4017 fields -12.4017 ounted -12.4017 shot -12.4017 kindness -12.4017 condemned -12.4017 Homer -12.4017 ▁whistl -12.4017 please -12.4017 Hur -12.4018 horse -12.4018 witnesses -12.4018 pleasure -12.4018 bade -12.4018 spread -12.4018 Give -12.4018 bush -12.4018 friend -12.4018 myself -12.4019 Lurvy -12.4019 wheel -12.4019 perfect -12.4019 With -12.4019 room -12.4019 pans -12.4019 generation -12.4019 while -12.4019 burnt -12.4019 nothing -12.4019 knowledge -12.4019 ▁reject -12.4019 push -12.402 aa -12.402 ▁dismiss -12.402 dad -12.402 serve -12.402 coat -12.4021 ▁Gi -12.4021 One -12.4021 whe -12.4021 trap -12.4022 sail -12.4022 ▁thresh -12.4022 ▁lum -12.4022 green -12.4022 ertainly -12.4023 Say -12.4023 place -12.4023 ▁confound -12.4025 ▁hallow -12.4025 ▁gainsay -12.4026 ▁signify -12.4027 ▁edify -12.4027 ▁vanish -12.4027 eeches -12.4028 only -12.4028 ▁explain -12.4028 ▁kno -12.4029 ▁vex -12.4029 ▁sniff -12.4029 ▁repeat -12.4029 ▁exceed -12.403 ▁chuckl -12.403 ▁ordain -12.403 ▁grabb -12.403 bond -12.4031 ▁threat -12.4031 ▁flam -12.4032 Put -12.4032 ▁amaz -12.4032 See -12.4033 pri -12.4034 portion -12.4034 ▁laborer -12.4035 lead -12.4036 ▁citizen -12.4036 seeing -12.4037 ▁shear -12.4037 ▁ta -12.4038 ▁plea -12.4038 Wa -12.4039 oasty -12.404 nything -12.4042 ▁App -12.4043 made -12.4048 ▁tame -12.4051 ▁boot -12.4053 ▁testifie -12.4054 run -12.4055 ▁Exp -12.4055 ▁create -12.4055 ▁boar -12.4055 ▁Israelite -12.4055 tant -12.4058 olved -12.406 ▁flourish -12.406 hod -12.4061 ▁continual -12.4062 ▁genealog -12.4062 ▁sudden -12.4063 sparag -12.4063 ufficien -12.4063 oldiers -12.4064 ▁dizz -12.4064 ▁choos -12.4064 trong -12.4064 ▁filth -12.4064 ▁snar -12.4064 ▁reconcile -12.4064 ▁communicat -12.4065 ▁memor -12.4065 ▁twent -12.4065 phos -12.4065 hould -12.4066 angel -12.4066 ▁distinct -12.4067 bur -12.4067 ification -12.4069 ▁Amra -12.407 ▁import -12.4071 ▁mir -12.4071 ▁merci -12.4071 path -12.4071 ▁persuasi -12.4071 ▁tee -12.4072 ▁Mattha -12.4072 ▁appro -12.4072 aradise -12.4072 aughter -12.4072 neys -12.4072 ▁attract -12.4072 ▁Govern -12.4072 ▁situat -12.4072 ▁stubb -12.4072 ▁subtil -12.4072 ▁habit -12.4072 ▁abomina -12.4073 ▁pouch -12.4073 ecomposers -12.4073 estroy -12.4073 ntreat -12.4073 attering -12.4073 xcellent -12.4073 ontrary -12.4073 ontinue -12.4073 ▁gloom -12.4073 venture -12.4073 urmur -12.4073 ilbur -12.4073 epart -12.4073 istened -12.4073 ▁Apoll -12.4073 ▁excel -12.4073 ▁Ponti -12.4073 ▁esp -12.4073 arvel -12.4073 ▁succ -12.4073 rink -12.4073 ▁bureau -12.4073 ▁employ -12.4073 ▁scru -12.4073 ▁August -12.4073 ▁Nico -12.4073 ▁centipede -12.4073 ▁executi -12.4073 ▁expense -12.4073 ▁frail -12.4073 ▁grasshopper -12.4073 ▁happie -12.4073 ▁revelling -12.4073 ▁skelet -12.4073 ▁traitor -12.4073 ▁victual -12.4073 Crunchy -12.4073 Phoebe -12.4073 Slowly -12.4073 bulus -12.4073 cian -12.4073 consequen -12.4073 continency -12.4073 gullible -12.4073 hippoorwill -12.4073 languish -12.4073 mphas -12.4073 olog -12.4073 petitions -12.4073 roduction -12.4073 significan -12.4073 zziel -12.4073 ▁Agabus -12.4073 ▁Areopag -12.4073 ▁Assyria -12.4073 ▁Baal -12.4073 ▁Baalzephon -12.4073 ▁Babel -12.4073 ▁Baptizer -12.4073 ▁Beautiful -12.4073 ▁Beroea -12.4073 ▁Bigfish -12.4073 ▁Bithynia -12.4073 ▁Carmi -12.4073 ▁Circumcision -12.4073 ▁Cotton -12.4073 ▁Cowee -12.4073 ▁Crispus -12.4073 ▁Crucify -12.4073 ▁Dalma -12.4073 ▁Dorcas -12.4073 ▁Ellasar -12.4073 ▁Epaphroditus -12.4073 ▁Florida -12.4073 ▁Fulfil -12.4073 ▁Gabriel -12.4073 ▁Gerasenes -12.4073 ▁Gershom -12.4073 ▁Gethsemane -12.4073 ▁Girgas -12.4073 ▁Increase -12.4073 ▁Izhar -12.4073 ▁Jehoshaphat -12.4073 ▁Jokshan -12.4073 ▁Joram -12.4073 ▁Lebanon -12.4073 ▁Lydda -12.4073 ▁Lydia -12.4073 ▁Mattath -12.4073 ▁Matthias -12.4073 ▁Mehujael -12.4073 ▁Melchi -12.4073 ▁Methusael -12.4073 ▁Millipede -12.4073 ▁Nimrod -12.4073 ▁Nineveh -12.4073 ▁Onesiphorus -12.4073 ▁Pergamum -12.4073 ▁Phoeni -12.4073 ▁Pisidia -12.4073 ▁Potomac -12.4073 ▁Prophesy -12.4073 ▁Publius -12.4073 ▁Rabboni -12.4073 ▁Radiant -12.4073 ▁Rahab -12.4073 ▁Rameses -12.4073 ▁Rephaims -12.4073 ▁Rufus -12.4073 ▁Sabaoth -12.4073 ▁Sacrifice -12.4073 ▁Salome -12.4073 ▁School -12.4073 ▁Search -12.4073 ▁Seba -12.4073 ▁Secret -12.4073 ▁Shaveh -12.4073 ▁Siloam -12.4073 ▁Smyrna -12.4073 ▁Sosthenes -12.4073 ▁Squirrel -12.4073 ▁Supreme -12.4073 ▁Tavern -12.4073 ▁Theophilus -12.4073 ▁Thessalonians -12.4073 ▁Tubalcain -12.4073 ▁Zachariah -12.4073 ▁Zerubbabel -12.4073 ▁absolute -12.4073 ▁acquired -12.4073 ▁advise -12.4073 ▁ammunition -12.4073 ▁apothecary -12.4073 ▁appetizing -12.4073 ▁apprehend -12.4073 ▁armpits -12.4073 ▁assumption -12.4073 ▁beefsteak -12.4073 ▁bison -12.4073 ▁bomb -12.4073 ▁boulder -12.4073 ▁brilliant -12.4073 ▁burial -12.4073 ▁busybodies -12.4073 ▁calico -12.4073 ▁clamor -12.4073 ▁companies -12.4073 ▁compound -12.4073 ▁conspiracy -12.4073 ▁convocation -12.4073 ▁cornbread -12.4073 ▁craftsmen -12.4073 ▁crawfish -12.4073 ▁cumber -12.4073 ▁delusion -12.4073 ▁denarius -12.4073 ▁detail -12.4073 ▁dictionary -12.4073 ▁disannul -12.4073 ▁discarded -12.4073 ▁divorcement -12.4073 ▁doorframes -12.4073 ▁downstream -12.4073 ▁elaborate -12.4073 ▁eloquent -12.4073 ▁emperor -12.4073 ▁enact -12.4073 ▁evangelist -12.4073 ▁experiment -12.4073 ▁extreme -12.4073 ▁fatfleshed -12.4073 ▁fathoms -12.4073 ▁foreknew -12.4073 ▁fullgrown -12.4073 ▁fumbling -12.4073 ▁futile -12.4073 ▁garner -12.4073 ▁gleam -12.4073 ▁goddess -12.4073 ▁gravy -12.4073 ▁grisled -12.4073 ▁gulped -12.4073 ▁gutted -12.4073 ▁gutters -12.4073 ▁happiness -12.4073 ▁hominy -12.4073 ▁humiliation -12.4073 ▁immutab -12.4073 ▁implements -12.4073 ▁inconvenient -12.4073 ▁infield -12.4073 ▁influen -12.4073 ▁ingathering -12.4073 ▁interlude -12.4073 ▁kinswoman -12.4073 ▁kneadingtroughs -12.4073 ▁lamentation -12.4073 ▁lantern -12.4073 ▁leisure -12.4073 ▁lintel -12.4073 ▁material -12.4073 ▁medicine -12.4073 ▁millipedes -12.4073 ▁moccasins -12.4073 ▁mudflat -12.4073 ▁muzzle -12.4073 ▁nerve -12.4073 ▁nipple -12.4073 ▁oysters -12.4073 ▁pellets -12.4073 ▁penknife -12.4073 ▁pollut -12.4073 ▁porcupine -12.4073 ▁portrait -12.4073 ▁preeminence -12.4073 ▁prejudice -12.4073 ▁preparing -12.4073 ▁presumptuous -12.4073 ▁problem -12.4073 ▁promptly -12.4073 ▁provocation -12.4073 ▁rabble -12.4073 ▁rapid -12.4073 ▁religious -12.4073 ▁renounce -12.4073 ▁restraineth -12.4073 ▁ridiculous -12.4073 ▁rigour -12.4073 ▁roost -12.4073 ▁sandwich -12.4073 ▁scruples -12.4073 ▁slog -12.4073 ▁slothful -12.4073 ▁smiling -12.4073 ▁sobriety -12.4073 ▁sorceries -12.4073 ▁sorcery -12.4073 ▁stimulate -12.4073 ▁stupor -12.4073 ▁subdue -12.4073 ▁suffice -12.4073 ▁sumptuous -12.4073 ▁supreme -12.4073 ▁survival -12.4073 ▁television -12.4073 ▁terrestrial -12.4073 ▁theoretical -12.4073 ▁thereafter -12.4073 ▁thirteen -12.4073 ▁thistledown -12.4073 ▁timbrel -12.4073 ▁tomatoes -12.4073 ▁traffic -12.4073 ▁trample -12.4073 ▁tremen -12.4073 ▁trinket -12.4073 ▁unaccountabl -12.4073 ▁unfair -12.4073 ▁univers -12.4073 ▁unruly -12.4073 ▁unthankful -12.4073 ▁unwashen -12.4073 ▁vesture -12.4073 ▁vicinity -12.4073 ▁victim -12.4073 ▁woodpile -12.4073 ▁wrinkle -12.4073 ▁yawned -12.4073 ▁zero -12.4073 ▁Death -12.4073 acinth -12.4073 shrunk -12.4073 ummim -12.4073 ▁Ancih -12.4073 ▁Antipa -12.4073 ▁Frankl -12.4073 ▁Jenny -12.4073 ▁Malch -12.4073 ▁Mississippi -12.4073 ▁accommodat -12.4073 ▁altercat -12.4073 ▁calculat -12.4073 ▁clown -12.4073 ▁clutter -12.4073 ▁copy -12.4073 ▁cripple -12.4073 ▁expanse -12.4073 ▁flags -12.4073 ▁gabbl -12.4073 ▁grove -12.4073 ▁license -12.4073 ▁lilies -12.4073 ▁magnificen -12.4073 ▁morter -12.4073 ▁pastille -12.4073 ▁plaster -12.4073 ▁ribbon -12.4073 ▁snuffdishes -12.4073 ▁surmis -12.4073 ▁terms -12.4073 ietly -12.4073 ▁Jann -12.4073 ▁assault -12.4073 ▁chryso -12.4073 ▁crafty -12.4073 ▁delud -12.4073 ▁drool -12.4073 ▁grandfather -12.4073 ▁humility -12.4073 ▁lamented -12.4073 ▁lungs -12.4073 ▁mankind -12.4073 ▁narrat -12.4073 ▁negotiat -12.4073 ▁risk -12.4073 ▁smack -12.4073 ▁soothsay -12.4073 ▁spark -12.4073 ▁squeal -12.4073 ▁stove -12.4073 ▁twirl -12.4073 ▁unsettle -12.4073 ▁whicker -12.4073 ▁withdraw -12.4073 ▁Earth -12.4073 ▁Towers -12.4073 ▁circuit -12.4073 ▁expert -12.4073 ▁foaming -12.4073 ▁ignore -12.4073 ▁wobbl -12.4073 ▁beho -12.4073 ▁garnish -12.4073 xtort -12.4073 ▁Galeed -12.4073 ▁Sabt -12.4073 ▁basketfuls -12.4073 ▁daddy -12.4073 ▁fragran -12.4073 ▁motor -12.4073 ▁napkin -12.4073 ▁scourging -12.4073 ▁surpass -12.4073 versatile -12.4074 ▁balance -12.4074 ▁glid -12.4074 ▁overflow -12.4074 ▁suspicio -12.4074 spouts -12.4074 ▁dazzling -12.4074 ▁effectual -12.4074 ▁initial -12.4074 ▁opus -12.4074 ▁waistcoat -12.4074 ▁hobbl -12.4074 ▁numer -12.4074 ▁purification -12.4074 ▁Joanna -12.4074 ▁dragline -12.4074 ▁runneth -12.4074 ▁Hirah -12.4074 ▁assessment -12.4074 ▁loathe -12.4074 ▁superlative -12.4074 ▁Pontiac -12.4074 ▁persistent -12.4074 ▁uphill -12.4074 ▁Amoz -12.4074 ▁rude -12.4074 ilacs -12.4074 ▁approached -12.4074 ▁billows -12.4074 ▁globe -12.4074 ▁oink -12.4074 ▁option -12.4074 ▁rescue -12.4074 ▁balm -12.4074 ▁councillor -12.4074 ▁frying -12.4074 ▁hazard -12.4074 ▁nursing -12.4074 ▁shiver -12.4074 ▁Josiah -12.4074 ▁enchant -12.4074 ▁sentiment -12.4074 ▁ambassage -12.4074 ▁filthiness -12.4074 ▁forefather -12.4074 ▁consist -12.4074 ▁eventide -12.4074 ▁grandson -12.4074 ▁reclin -12.4074 pproximately -12.4074 ▁dignities -12.4074 ▁peaks -12.4074 ▁Slug -12.4074 ▁furious -12.4074 ▁stroll -12.4074 ▁superfluity -12.4074 ▁Raamah -12.4074 ▁aloft -12.4074 ▁divinity -12.4074 ▁slats -12.4074 ▁caution -12.4074 ▁pride -12.4074 ▁cautiously -12.4074 ▁ginger -12.4074 ▁splash -12.4074 ▁Doctor -12.4074 ▁appeti -12.4074 ▁babblings -12.4074 ▁befitting -12.4074 ▁leasing -12.4074 ▁precede -12.4074 ▁welfare -12.4074 ▁outfit -12.4074 ▁spoonful -12.4074 ▁bacteria -12.4074 ▁uniform -12.4074 azin -12.4074 ▁Corinthians -12.4074 ▁usury -12.4074 ▁display -12.4074 ▁salon -12.4074 ▁battle -12.4074 ▁turtle -12.4074 ▁vomit -12.4074 substan -12.4074 ▁manger -12.4074 ▁Calah -12.4074 ▁exhal -12.4074 ▁stanched -12.4074 ▁vaunt -12.4074 ▁chaise -12.4074 ▁translat -12.4074 ▁britches -12.4074 ▁guiltless -12.4074 ▁owl -12.4074 ▁travers -12.4074 ▁Salem -12.4074 ▁fuss -12.4074 ▁acquaintance -12.4074 ▁Gaza -12.4074 ▁Mizraim -12.4074 ▁allotted -12.4074 ▁soaked -12.4074 ▁primar -12.4074 ▁suet -12.4074 ▁droop -12.4074 ▁clash -12.4074 ▁gloomily -12.4074 ▁vouch -12.4074 ▁Rhod -12.4074 ▁decay -12.4074 ▁dripping -12.4074 ▁loyal -12.4074 ▁Julius -12.4074 ▁enforc -12.4074 ▁partiality -12.4074 Meeting -12.4074 ▁eaves -12.4074 ▁enrolment -12.4074 ▁kidding -12.4074 tude -12.4074 ▁popover -12.4074 ▁laz -12.4074 ▁legitima -12.4074 ▁Tert -12.4074 ▁Claudius -12.4074 ▁poet -12.4074 ▁flake -12.4074 ▁streak -12.4074 Nice -12.4074 sabba -12.4074 ▁okay -12.4074 ▁tube -12.4074 ▁cinder -12.4074 ▁railhead -12.4074 ▁anti -12.4074 NK -12.4074 ▁Jeze -12.4074 ▁Poor -12.4074 ▁pulse -12.4074 churn -12.4074 jah -12.4074 ▁Javan -12.4074 ▁Lud -12.4074 ▁subtilty -12.4074 ▁Job -12.4075 agic -12.4075 ▁whale -12.4075 ▁factious -12.4075 ▁blunt -12.4075 ▁edified -12.4075 iggled -12.4075 ▁decade -12.4075 tenance -12.4075 ▁Maha -12.4075 ▁hammer -12.4075 ▁rhythmic -12.4075 ▁Kid -12.4075 ▁concourse -12.4075 bited -12.4075 zzling -12.4075 ▁Zac -12.4075 ▁earshot -12.4075 ▁coco -12.4075 ▁hencefor -12.4075 ▁Dead -12.4075 ▁horseback -12.4075 ▁kin -12.4075 ▁Teach -12.4075 ▁oilcloth -12.4075 ▁Elisha -12.4075 ▁Padanaram -12.4075 ▁spectac -12.4075 ▁sheath -12.4075 ▁severity -12.4075 ▁embroiderer -12.4075 ▁Naaman -12.4075 ▁impu -12.4075 ▁stew -12.4075 ▁recall -12.4075 ▁flute -12.4075 ▁ownership -12.4075 ▁Irad -12.4075 ▁ancest -12.4075 ▁suggestions -12.4075 bia -12.4075 ember -12.4075 bula -12.4075 ▁foreship -12.4075 ▁Massa -12.4075 ▁Lyc -12.4075 ▁Carry -12.4075 ▁persuasive -12.4075 ▁rig -12.4075 ▁tripod -12.4075 urvey -12.4076 ▁instant -12.4076 ▁Merc -12.4076 ▁trump -12.4076 ▁trench -12.4076 ▁Edomites -12.4076 hites -12.4076 ▁meditation -12.4076 ▁detest -12.4076 ▁thankfulness -12.4076 enser -12.4076 ▁calam -12.4076 ▁Beersheba -12.4076 AT -12.4076 ▁tackl -12.4076 ▁Bridge -12.4076 ▁cookery -12.4076 ▁piss -12.4076 osity -12.4076 ▁scalp -12.4076 ▁wavering -12.4076 ▁rebel -12.4076 ▁missionar -12.4076 ▁eff -12.4076 ▁removal -12.4076 ▁drear -12.4076 ▁Kir -12.4076 ▁wakeful -12.4076 ▁Kar -12.4076 ▁partial -12.4076 ▁grid -12.4076 ▁justifieth -12.4076 ▁speedily -12.4076 ▁beget -12.4076 erceive -12.4076 ▁variance -12.4076 cade -12.4076 egion -12.4076 ▁expression -12.4077 ▁cruelty -12.4077 ▁Naph -12.4077 ▁pomp -12.4077 ▁Hog -12.4077 Easy -12.4077 ▁thunderings -12.4077 ▁riotous -12.4077 ▁history -12.4077 ▁transit -12.4077 ▁funny -12.4077 ▁theatre -12.4077 ▁confirmation -12.4077 ▁roadway -12.4077 ▁boyhood -12.4077 ▁Hermon -12.4077 ▁mineral -12.4077 naim -12.4077 ▁fuck -12.4077 ▁Hori -12.4077 ▁bondmen -12.4078 ▁rocket -12.4078 ▁policy -12.4078 ▁unholy -12.4078 ▁unseemly -12.4078 nkle -12.4078 ▁gallery -12.4078 apolis -12.4078 ▁wavered -12.4078 ▁encourage -12.4078 ▁phoe -12.4078 ▁hop -12.4078 ▁alternate -12.4078 ▁Beriah -12.4078 ▁wariness -12.4078 ▁State -12.4078 ▁skirmish -12.4078 ▁Aram -12.4078 ▁parings -12.4078 ▁cling -12.4078 ▁Matthan -12.4078 ndron -12.4078 ▁Bow -12.4078 ▁axle -12.4078 polis -12.4078 ilver -12.4078 ▁nea -12.4079 ccent -12.4079 ▁Lie -12.4079 ▁carrie -12.4079 ▁sparingly -12.4079 ▁politely -12.4079 ▁similarly -12.4079 nnels -12.4079 ▁doubleminded -12.4079 ▁wrongfully -12.4079 ▁Shim -12.4079 ▁noisy -12.4079 ulation -12.4079 gage -12.4079 ▁bump -12.4079 ▁suppertime -12.4079 ▁arising -12.4079 guiltiness -12.4079 abies -12.4079 ▁alongside -12.408 ▁dough -12.408 uda -12.408 ddling -12.408 onia -12.408 ▁acceptation -12.408 ▁grand -12.408 ▁Hadar -12.408 ▁Onesi -12.408 ▁chaste -12.4081 ▁promi -12.4081 eously -12.4081 ▁rill -12.4081 ▁fitting -12.4081 acter -12.4081 ▁crunch -12.4081 ▁crust -12.4081 ▁gentleness -12.4081 ▁Rhe -12.4081 ▁gum -12.4082 ▁lam -12.4082 ▁mockers -12.4082 ▁hitherto -12.4082 ▁eag -12.4082 ▁collapsed -12.4082 ▁disbelieved -12.4082 ▁scabb -12.4082 ▁confi -12.4082 ▁surre -12.4083 ▁hello -12.4083 ▁Jah -12.4083 ▁attachment -12.4083 ▁boxes -12.4083 ▁china -12.4083 ▁identi -12.4083 ▁thankful -12.4084 ▁Tab -12.4084 oper -12.4084 ▁stings -12.4084 ▁attraction -12.4084 ▁Tryph -12.4084 ▁freeman -12.4085 ▁genealogy -12.4085 ▁bull -12.4085 ▁tighten -12.4085 ▁team -12.4085 ▁shaven -12.4085 ▁Gomer -12.4085 ▁mire -12.4085 lene -12.4085 ▁fearfulness -12.4085 ▁gorgeous -12.4085 riah -12.4086 ▁fume -12.4086 geon -12.4086 ▁honest -12.4086 ▁seduc -12.4086 ▁homeland -12.4086 ▁incl -12.4086 ▁tones -12.4087 ▁station -12.4087 ▁approvedness -12.4087 ▁earnestness -12.4087 ▁normal -12.4087 ▁alo -12.4087 ▁Cover -12.4087 ▁agent -12.4088 ▁flourisheth -12.4088 chant -12.4089 ▁pew -12.4089 ▁soberness -12.4089 pilled -12.4089 ▁bedtime -12.4089 ▁backbone -12.409 educ -12.409 horus -12.409 ▁Ken -12.409 retty -12.409 rubs -12.409 Are -12.409 rged -12.4091 ▁reconcil -12.4091 ▁assist -12.4091 ▁foes -12.4092 ▁chast -12.4092 ▁dau -12.4092 ▁scare -12.4092 ▁ledge -12.4092 cientist -12.4093 ▁dreamily -12.4093 ▁belonging -12.4093 ▁embalmed -12.4093 ▁drowned -12.4093 ▁hesitated -12.4093 ▁butchered -12.4093 orci -12.4093 ▁underwear -12.4094 ▁cobbler -12.4094 ▁Mish -12.4094 voca -12.4094 Goodness -12.4095 isc -12.4095 ▁gloriest -12.4095 ▁Near -12.4095 ▁meta -12.4095 ▁Apple -12.4096 ▁sym -12.4096 ▁delicately -12.4098 ▁meekly -12.4098 ▁laughter -12.4098 ▁tamed -12.4098 ▁chasteneth -12.4098 ▁flapped -12.4098 ▁Elim -12.4098 ▁dealings -12.4099 ▁acquaint -12.4099 ▁Mib -12.4099 ▁tailor -12.41 ▁blaze -12.41 ▁familiar -12.41 ▁ordinary -12.41 ▁wreck -12.41 amous -12.4101 ▁Wind -12.4101 ▁cure -12.4102 eneration -12.4102 ▁thump -12.4102 ▁Fight -12.4103 anim -12.4103 ▁firelight -12.4103 ▁defende -12.4103 ▁Majest -12.4103 ▁watchful -12.4103 ▁overboard -12.4103 bsolution -12.4104 allel -12.4104 ▁Obe -12.4104 ▁saddle -12.4104 luc -12.4105 affl -12.4105 ▁worshippeth -12.4106 oic -12.4106 arge -12.4106 blossom -12.4106 ▁generally -12.4108 ▁sunris -12.4108 ▁ruff -12.4109 yway -12.4109 rban -12.411 ▁joyfully -12.4111 rsel -12.4111 ▁lightened -12.4111 ▁striker -12.4111 Avery -12.4111 anging -12.4112 ▁unity -12.4112 ▁perfection -12.4113 willing -12.4113 ▁copies -12.4113 ▁endeavors -12.4113 ▁feathers -12.4113 ▁morals -12.4113 ▁palaces -12.4113 ▁politics -12.4113 ▁proselytes -12.4113 ▁symbols -12.4113 eyond -12.4113 ▁convers -12.4113 ▁Mana -12.4114 ▁rambl -12.4115 siah -12.4115 hepherd -12.4115 ▁Alexandrian -12.4115 ▁mites -12.4116 ▁bored -12.4116 ighteous -12.4116 ▁Boy -12.4116 ▁scour -12.4119 ▁unbeliever -12.4119 ▁thereupon -12.4121 sorry -12.4123 esis -12.4123 ▁penny -12.4123 planted -12.4123 ▁fisherm -12.4124 jack -12.4124 ▁decrease -12.4124 ▁cult -12.4126 ▁assuredly -12.4127 ▁gloriously -12.4127 col -12.4127 ▁scattereth -12.4127 ▁licked -12.4127 ▁dismissed -12.4127 ▁carcase -12.4127 ▁drunkard -12.4128 ▁complained -12.4128 ▁reviler -12.4129 ▁lackest -12.4129 ▁whistling -12.413 ▁contem -12.413 burger -12.413 ▁complaining -12.413 ▁mom -12.4131 ▁Had -12.4132 inter -12.4133 ▁baptizeth -12.4133 ▁pyr -12.4134 ▁wedding -12.4135 ▁project -12.4135 ▁Joy -12.4135 ripe -12.4138 ▁lick -12.4139 evolution -12.414 ▁mouthful -12.414 ▁dries -12.4141 ▁spy -12.4143 lunta -12.4143 ▁constant -12.4143 ▁Ach -12.4144 ▁quench -12.4144 ▁pathetic -12.4146 ▁becomingly -12.4146 ▁faileth -12.4146 ▁draft -12.4147 ▁summ -12.4148 ▁dar -12.4148 ▁sling -12.4148 ▁explod -12.4148 ▁Shil -12.4148 ▁TH -12.4149 ▁compare -12.4151 ▁Wash -12.4152 ▁earlie -12.4152 ▁abhorre -12.4153 ▁local -12.4155 quality -12.4156 arsely -12.4156 ▁heartily -12.4156 qui -12.4157 ▁Aren -12.4158 ffer -12.4159 ▁Phu -12.416 ouching -12.4161 esture -12.4162 ▁encountered -12.4162 ▁mansion -12.4164 ▁thereabout -12.4167 ▁missing -12.4168 ▁excused -12.4168 ▁fastness -12.4169 ▁swamp -12.4169 ▁brightest -12.4172 ▁nicely -12.4175 non -12.4175 ▁Ze -12.4175 urning -12.4176 ▁glare -12.4177 ▁Nan -12.4179 rks -12.4179 ▁ramp -12.418 rped -12.4181 ▁hillsides -12.4182 ▁elbows -12.4182 ▁poplars -12.4182 ▁scorpions -12.4182 ▁aprons -12.4182 ▁citizens -12.4182 controlled -12.4183 ▁belongings -12.4183 ▁payments -12.4187 ymen -12.4188 year -12.4188 ▁highways -12.4188 ▁outright -12.4188 ▁ref -12.4189 ffed -12.4189 ▁legion -12.419 venge -12.4192 ▁proudly -12.4195 ▁readest -12.4195 lunchtime -12.4195 ▁witch -12.4195 ▁hangeth -12.4195 ▁archer -12.4196 ▁remarked -12.4196 ▁someday -12.4198 ▁vowed -12.4199 Alon -12.4202 ▁stare -12.4203 ▁lesson -12.4203 mely -12.4203 ▁despairing -12.4205 ▁inventing -12.4205 ▁ev -12.4209 woods -12.4209 nuts -12.4209 ▁wrestling -12.421 ▁sadly -12.421 ▁weakling -12.4211 ▁gear -12.4215 ▁faster -12.4218 ▁Phil -12.4219 ▁miser -12.4219 ▁hasn -12.422 ▁impos -12.422 ngular -12.4221 ▁stunt -12.4221 ▁Beor -12.4222 ▁uncover -12.4225 ▁awaked -12.4226 ▁paces -12.4228 ▁Rest -12.4228 ▁Israelites -12.4231 ▁consol -12.4231 ▁included -12.4233 ▁admoni -12.4239 ▁plu -12.4242 ball -12.4248 orehouses -12.4252 ▁wickedly -12.4253 ▁guests -12.4253 ▁bishops -12.4253 ▁patriarchs -12.4253 ▁results -12.4253 ▁benefits -12.4253 ▁ewes -12.4253 ▁factions -12.4255 ▁dispos -12.4258 ▁reput -12.4258 ▁washings -12.4259 ▁Spid -12.4259 ▁nast -12.4265 boards -12.4266 stones -12.4268 works -12.4271 fied -12.4274 TER -12.4277 ▁dissipat -12.4278 ▁decomposed -12.4279 ▁gnawing -12.428 ▁coveting -12.4283 determin -12.4284 ▁grassy -12.4285 ▁Ked -12.429 allows -12.4291 ▁aboundeth -12.4291 ▁secretly -12.4293 band -12.4295 ▁boiled -12.4297 tay -12.4301 ▁Nor -12.4304 ▁bin -12.4317 ▁dre -12.4318 ▁blasphemer -12.4325 ▁candles -12.4325 ▁ranks -12.4326 ▁Tir -12.4326 ▁railings -12.4327 ▁repenteth -12.433 ▁sorely -12.4331 ▁departeth -12.4333 ▁cries -12.4338 lay -12.4339 ▁reigneth -12.434 ▁sharply -12.4342 ▁stag -12.4343 ▁forbearing -12.4353 ▁weeds -12.4354 ▁Dis -12.4359 hips -12.4362 ▁lawfully -12.4368 ▁Hot -12.4375 aves -12.4376 ▁warmth -12.4379 ▁breaketh -12.4393 ▁twisting -12.4395 ▁sheets -12.4398 ▁tumults -12.4399 ▁instructions -12.44 ▁poorly -12.4402 gree -12.4409 ▁consented -12.4413 ▁afoot -12.4423 wailed -12.4423 ▁aboard -12.4427 ▁preferr -12.4432 ▁rouse -12.4443 ▁jet -12.4446 rock -12.4454 ▁Cos -12.4459 ▁fou -12.4466 ▁planning -12.4469 ▁labours -12.4472 ▁balloons -12.4474 ▁belt -12.4483 shearer -12.4484 ▁airy -12.4485 ▁duel -12.4488 ▁Arch -12.4502 ▁clapp -12.4504 ▁activit -12.4507 ▁test -12.4521 ▁sleepy -12.4533 ▁signal -12.454 ▁plots -12.4543 ▁vig -12.4545 ▁bullocks -12.4547 ▁enjoin -12.455 ▁platters -12.4552 ▁Abia -12.4556 ▁lusted -12.4564 ▁seedling -12.4568 ▁killings -12.4568 ▁retain -12.4569 ▁bloo -12.4569 ▁ge -12.4573 ▁Hada -12.4577 ▁reaped -12.4598 ▁rendered -12.4601 ▁kne -12.4661 vity -12.4667 ▁Sm -12.4672 ▁praised -12.4707 arcel -12.4708 ▁dism -12.473 ▁Pau -12.4751 consider -12.477 ▁marking -12.4789 ▁popula -12.479 ▁farth -12.479 chem -12.4795 ▁residen -12.4797 actors -12.4814 acked -12.483 there -12.4833 AB -12.4847 porter -12.4853 La -12.4862 sters -12.4867 umbled -12.4911 had -12.4915 ▁agenc -12.4921 raggle -12.4947 gation -12.4951 ▁sanctifie -12.4989 city -12.4989 ▁radian -12.5018 udg -12.5043 balanc -12.5048 ency -12.5058 ▁lengthen -12.5062 ▁husk -12.5103 ▁blur -12.5109 ▁weaken -12.5126 fallen -12.515 tines -12.5183 tac -12.5191 ▁gunfi -12.5234 ▁mini -12.5251 twee -12.5268 lative -12.5324 hip -12.5362 rich -12.539 rake -12.5394 escend -12.5395 gratulation -12.5429 ▁distresse -12.5437 journ -12.5455 ▁kni -12.5457 ▁paint -12.5518 ▁Mesh -12.5525 ▁ripp -12.5587 ▁distribut -12.5597 ays -12.5656 ral -12.5715 ▁Alva -12.5722 ▁gar -12.5723 ▁blo -12.5727 ▁trou -12.5749 Ever -12.5781 ▁morta -12.5817 ▁watche -12.586 ex -12.5894 ▁carpe -12.6038 ▁quali -12.6063 informed -12.6067 ▁contra -12.6074 lets -12.6161 gin -12.6165 nches -12.6186 ▁dainti -12.6194 ▁unmo -12.6195 ▁ba -12.6205 gi -12.6246 air -12.6268 ▁relat -12.6274 ▁sla -12.6301 Try -12.6349 nish -12.6357 ttle -12.6368 ▁aveng -12.6394 par -12.6431 fighters -12.6493 och -12.6504 ▁non -12.6511 ▁obs -12.6521 ▁naviga -12.6547 ▁invite -12.6556 view -12.6573 composed -12.6642 efraud -12.6685 ▁sca -12.6837 hen -12.691 orseshoe -12.6985 rang -12.699 ▁protect -12.7045 ▁welcom -12.7089 ust -12.71 ▁Cre -12.712 iving -12.7188 ormwood -12.7303 ana -12.7344 clusive -12.7346 ▁dam -12.7437 ▁humm -12.7453 ▁dep -12.7457 opping -12.7478 bag -12.7553 tasting -12.7757 oz -12.7881 aving -12.7946 ▁impr -12.7968 ▁pac -12.7975 ▁elevat -12.801 ▁compensat -12.8018 nuel -12.8029 nstead -12.8051 ▁Mel -12.8123 add -12.8257 mock -12.8411 phras -12.8512 ether -12.8513 ▁exclu -12.8561 ▁epi -12.8715 ▁principalit -12.8755 hereunto -12.8768 formation -12.8775 evil -12.8791 ▁prote -12.8823 ize -12.8857 ▁Creat -12.8869 shoe -12.8929 awl -12.8994 pot -12.9071 wed -12.9102 llows -12.9111 udder -12.9134 bat -12.9136 bon -12.9155 ▁protecti -12.9224 ▁Rep -12.9308 ▁entic -12.9312 fraud -12.9356 ck -12.9371 ▁endur -12.9414 ▁compose -12.9523 ioch -12.953 ▁navigati -12.9536 move -12.9655 ▁persuade -12.9699 rk -12.9726 ▁Po -12.9814 omantic -12.9883 ▁snatche -12.9899 ▁conc -12.9974 vo -13.0007 ▁daint -13.0026 LO -13.0041 unic -13.0095 ushim -13.0136 lotted -13.016 phra -13.0209 AM -13.024 ▁measur -13.0276 bits -13.0286 ▁purpos -13.0332 elect -13.0341 ▁Revi -13.0361 arrow -13.0389 ▁enrol -13.0477 mali -13.0506 ignity -13.0713 ▁na -13.0891 ▁treati -13.0955 ripping -13.0966 arba -13.1004 acle -13.1061 olent -13.1138 ▁adjo -13.1167 scend -13.1168 ▁slack -13.1238 ▁bewail -13.1328 ▁grip -13.1425 ▁compelle -13.1434 ▁exalte -13.144 tching -13.1469 nction -13.1489 ▁Writ -13.1525 ▁acknowledg -13.1548 ▁gla -13.1594 ▁mode -13.1599 ▁lin -13.1763 ▁vainglor -13.1803 kite -13.1832 ▁Bac -13.1833 ▁mids -13.1877 ammi -13.188 ▁pudd -13.1894 ▁radia -13.1928 ▁divin -13.1943 Pre -13.195 styles -13.1966 ▁rele -13.1984 ▁temp -13.2003 ▁Immediate -13.2061 ▁guid -13.2062 tographe -13.2071 ▁hi -13.2111 easing -13.2152 ▁nois -13.218 ruption -13.2191 trot -13.2246 mble -13.2281 ggle -13.2291 vah -13.2351 ▁Li -13.2384 ▁squ -13.2394 ▁deci -13.2396 hab -13.2487 teller -13.2619 ▁reli -13.2628 ▁heav -13.2756 now -13.2772 pops -13.281 ▁refer -13.2814 ▁Mac -13.2875 ▁blasphem -13.2888 ▁Byron -13.294 ▁loc -13.2959 ▁proposi -13.297 emarkable -13.3045 bakers -13.3055 ▁Ex -13.3058 ▁separat -13.3098 gro -13.3108 Spring -13.3137 quarters -13.3191 uc -13.3192 Jach -13.3217 shares -13.323 pockets -13.3309 ▁Straight -13.3336 ▁nu -13.3339 reaching -13.336 rley -13.3384 ooted -13.3402 plicat -13.3408 ▁plac -13.342 ▁Atta -13.344 dresse -13.3444 maker -13.3451 racker -13.3452 covered -13.3467 cca -13.3474 wise -13.348 gger -13.3493 ▁Tema -13.3495 arry -13.3499 pine -13.3501 Ti -13.3518 counting -13.354 ▁Dio -13.3541 mount -13.355 ▁spo -13.3568 sipate -13.3584 piders -13.3602 ▁Whoso -13.3604 uddy -13.3618 ▁simpli -13.362 ▁esc -13.3643 omen -13.3644 ▁chang -13.3646 admonit -13.365 maids -13.3681 thrus -13.3685 ickle -13.3697 ▁northw -13.3732 ▁Arc -13.3741 gaining -13.3778 ▁Step -13.3786 hanging -13.3789 ppers -13.3806 emon -13.3807 pecial -13.3835 ▁circ -13.3837 uary -13.3848 ▁plat -13.3855 ticks -13.3859 ekah -13.3861 ▁unfo -13.3861 uckle -13.3867 ▁priv -13.3869 ▁abhor -13.3874 ual -13.3878 ▁hoar -13.3879 ▁comp -13.388 ▁reconcili -13.3883 Ba -13.3893 ▁conver -13.3897 nstantly -13.3897 ▁rub -13.3901 pra -13.3908 ▁unbeliev -13.3916 ▁fac -13.3919 lute -13.3923 change -13.3924 pti -13.393 ▁contemp -13.3931 bearing -13.3937 ▁carcas -13.3937 vented -13.3938 ▁Buck -13.394 wake -13.3942 eaten -13.3942 ▁clap -13.3959 burg -13.3961 kin -13.3961 creased -13.3963 ▁bruis -13.3964 ppoint -13.3964 postle -13.3966 lready -13.3967 give -13.397 ▁endeavor -13.3973 G -13.3994 Z -13.4019 q -14.7832 “ -14.7833 ================================================ FILE: a4/utils.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-21: Homework 4 nmt.py: NMT Model Pencheng Yin Sahil Chopra Vera Lin """ import math from typing import List import numpy as np import torch import torch.nn as nn import torch.nn.functional as F import nltk import sentencepiece as spm nltk.download('punkt') def pad_sents(sents, pad_token): """ Pad list of sentences according to the longest sentence in the batch. The paddings should be at the end of each sentence. @param sents (list[list[str]]): list of sentences, where each sentence is represented as a list of words @param pad_token (str): padding token @returns sents_padded (list[list[str]]): list of sentences where sentences shorter than the max length sentence are padded out with the pad_token, such that each sentences in the batch now has equal length. """ sents_padded = [] ### YOUR CODE HERE (~6 Lines) max_length = max([len(sent) for sent in sents]) # or max_length = max(map(len, sents)) for sent in sents: pad_length = max_length - len(sent) sents_padded.append(sent + [pad_token] * pad_length) ### END YOUR CODE return sents_padded def read_corpus(file_path, source, vocab_size=2500): """ Read file, where each sentence is dilineated by a `\n`. @param file_path (str): path to file containing corpus @param source (str): "tgt" or "src" indicating whether text is of the source language or target language @param vocab_size (int): number of unique subwords in vocabulary when reading and tokenizing """ data = [] sp = spm.SentencePieceProcessor() sp.load('{}.model'.format(source)) with open(file_path, 'r', encoding='utf8') as f: for line in f: subword_tokens = sp.encode_as_pieces(line) # only append and to the target sentence if source == 'tgt': subword_tokens = [''] + subword_tokens + [''] data.append(subword_tokens) return data def autograder_read_corpus(file_path, source): """ Read file, where each sentence is dilineated by a `\n`. @param file_path (str): path to file containing corpus @param source (str): "tgt" or "src" indicating whether text is of the source language or target language """ data = [] for line in open(file_path): sent = nltk.word_tokenize(line) # only append and to the target sentence if source == 'tgt': sent = [''] + sent + [''] data.append(sent) return data def batch_iter(data, batch_size, shuffle=False): """ Yield batches of source and target sentences reverse sorted by length (largest to smallest). @param data (list of (src_sent, tgt_sent)): list of tuples containing source and target sentence @param batch_size (int): batch size @param shuffle (boolean): whether to randomly shuffle the dataset """ batch_num = math.ceil(len(data) / batch_size) index_array = list(range(len(data))) if shuffle: np.random.shuffle(index_array) for i in range(batch_num): indices = index_array[i * batch_size: (i + 1) * batch_size] examples = [data[idx] for idx in indices] examples = sorted(examples, key=lambda e: len(e[0]), reverse=True) src_sents = [e[0] for e in examples] tgt_sents = [e[1] for e in examples] yield src_sents, tgt_sents ================================================ FILE: a4/vocab.json ================================================ { "src_word2id": { "": 0, "": 1, "": 2, "": 3, ",": 4, ".": 5, "\u2581\u13a0\u13b4": 6, "\u2581\u13be\u13cd\u13a9": 7, ";": 8, "\u13c3": 9, "\u2581\u13af\u13a0": 10, "\u2581\u13a8\u13d2": 11, "\u2581": 12, "\u13a2": 13, "\u2581\u13a5\u13dd": 14, "\u2581\u13a8\u13d2\u13a2": 15, "\u13f0\u13c3": 16, "\u13a9": 17, "\u2581\u13a8\u13ce\u13cd\u13d7": 18, "\u2581\u13a4\u13c1\u13b3\u13c5\u13af": 19, "?": 20, "\u2581\u13c3\u13b4": 21, "\u2581\u13a4": 22, "\u2581\u13a0": 23, "\u2581\u13f4\u13eb": 24, "\u13c9": 25, "\u13d7": 26, "\u201d": 27, "\u13af": 28, "\u2581\u13a9\u13b6": 29, "\u2581\u13be\u13cd\u13c9": 30, "\u2581\u13a2\u13f3\u13cd\u13d7": 31, "\u2581\u13be\u13bf": 32, "\u2581\u13be\u13cd\u13a9\u13ef": 33, "\u2060": 34, "\u2581\u13a0\u13ce\u13c3": 35, "\u2581\u13a0\u13f4": 36, "\u13ad": 37, "\u2581\u13f1\u13a9": 38, "\u2581\u13be": 39, "-": 40, "\u2581\u13e5\u13a9": 41, "\u2581\u13f1\u13b0\u13e9": 42, "\u2581\u13aa\u13b1\u13cd\u13d7": 43, "\u2581\u13c2\u13a6\u13db": 44, "\u2581\u13c2\u13af": 45, "\u2581\u13a2\u13a6": 46, "\u2581\u13a4\u13ac\u13eb\u13f3\u13af": 47, "\u2581\u13e5\u13cc": 48, "\u2581\u13c2\u13a8\u13d2\u13be": 49, "\u13f1": 50, "\u2581\u201c": 51, "\u13be": 52, "\u13cd\u13a9\u13c2": 53, "\u2581\u13a3\u13cd\u13db": 54, "\u13db": 55, "\u2581\u13af\u13a0\u13c3": 56, "\u13cd\u13d7": 57, "\u2581\u13a4\u13ea\u13e5": 58, "\u2581\u13e7": 59, "\u2581\u13d7": 60, "\u2581\u13a2\u13f3\u13c3": 61, "\u2581\u13be\u13cd\u13a9\u13c3": 62, "\u2581\u13e7\u13ea\u13e5": 63, "\u2581\u13a6\u13b6\u13c1\u13db": 64, "\u2581\u13c4\u13ea\u13ce\u13a2": 65, "\u13d3": 66, "\u2581\u13bf\u13c9": 67, "\u2581\u13a1\u13b6\u13af": 68, "\u2581\u13de\u13cd\u13d7": 69, "\u2581\u13e5": 70, "\u2581\u13a0\u13c2": 71, "\u2581\u13a8\u13cd\u13d7": 72, "\u2581\u13bf\u13c9\u13c3": 73, "\u2581\u13a4\u13f2": 74, "\u13a6": 75, "\u2581\u13a4\u13db\u13c1": 76, "\u2581\u13e3": 77, "!": 78, "\u2581\u13a4\u13e3\u13d8": 79, "\u2581\u13a0\u13e5\u13b8": 80, "\u2581\u13f1": 81, "\u2581\u13da": 82, "\u2581\u201d": 83, "\u2581\u13eb\u13b5\u13bb": 84, "\u2581\u13be\u13af\u13f3": 85, "\u2581\u13c2\u13a6\u13a5": 86, "\u2581\u13ac\u13c2\u13a8\u13d2": 87, "\u2581\u13a0\u13cd\u13a6\u13ef": 88, "\u2581\u13a6\u13b8\u13c9\u13d7\u13f3": 89, "\u2581\u13ac\u13c2\u13f3\u13c9": 90, "\u2581\u13c4\u13cd\u13db": 91, "\u2581\u13a6\u13d9": 92, "\u2581\u13a7\u13c3\u13ae\u13db": 93, "\u13c2": 94, "\u2581\u13a1\u13af": 95, "\u2581\u13a4\u13e9\u13d2": 96, "\u2581\u13a0\u13c1\u13af": 97, "\u2581\u13a6\u13b8\u13b3\u13d7": 98, "\u2581\u13a0\u13f0\u13b5": 99, "\u13c5": 100, "\u2581\u13a0\u13d5\u13b8": 101, "\u2581\u13a8\u13ce\u13a2": 102, "\u2581\u13a4\u13e4\u13b5": 103, "\u2581\u13cc\u13c9": 104, "\u2581\u13f0\u13b5": 105, "\u2581\u13a4\u13e4\u13b5\u13a6": 106, "\u2581\u13a0\u13b9": 107, "\u2581\u13a2\u13e3": 108, "\u2581\u13a2\u13f4\u13db": 109, "\u13a8": 110, "\u13d7\u13f1": 111, "\u2581\u13a4\u13c2": 112, "\u13cf": 113, "\u13b8": 114, "\u13b5": 115, "\u2581\u13be\u13c2\u13a5": 116, "\u2581\u13a2": 117, "\u2581\u13a3\u13cf\u13f3": 118, "\u2581\u13a0\u13ce": 119, "\u13f3": 120, "\u2581\u13a6\u13d9\u13af": 121, "\u2581\u13d4\u13b5": 122, "\u2581\u13a2\u13cf\u13b5": 123, "\u2581[": 124, "\u13b4": 125, "\u2581\u13a4\u13df": 126, "]": 127, "\u2581\u13aa\u13af": 128, "\u2581\u13d7\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 129, "\u2581\u13af": 130, "\u2581\u13a0\u13d3\u13c5\u13d9": 131, "\u2581\u13a3\u13cd\u13d3": 132, "\u2581\u13a0\u13c2\u13cd\u13a6\u13ef": 133, "\u13d2": 134, "\u2581\u13d3": 135, "\u2581\u13a8\u13ce": 136, "\u2581\u13a2\u13e5\u13c8\u13f1": 137, "\u2581\u13d4\u13b5\u13c1": 138, "\u2581\u13bc\u13cf": 139, "\u13b2": 140, "\u13cd\u13aa": 141, "\u2581\u13a6": 142, "\u2581\u13a2\u13f3": 143, "\u2581\u13a8\u13d2\u13a9": 144, "\u2581\u13ac\u13e9": 145, "\u2581\u2060": 146, "\u2581\u13a4\u13cd\u13d7": 147, "\u2581\u13a2\u13ac\u13f1": 148, "\u2581\u13e4\u13a6\u13c8": 149, "\u2581\u13da\u13f3\u13aa\u13db": 150, "\u2581\u13a4\u13c2\u13e3\u13d8": 151, "\u2581\u13a1\u13b3\u13d7": 152, "\u2581\u13a1\u13c6\u13ad\u13bb": 153, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d9\u13d7\u13f1": 154, "\u2581\u13a6\u13d9\u13c3": 155, "\u2581\u13a0\u13eb": 156, "\u13cd\u13a9": 157, "\u2581\u13f3": 158, ":": 159, "\u13a8\u13cd\u13d7": 160, "\u2581\u13a2\u13d7\u13e2": 161, "\u2581\u13e9\u13a6": 162, "\u13a0": 163, "\u2581\u13c7\u13b5\u13f2": 164, "\u2581\u13eb": 165, "\u2581\u13cf\u13c6": 166, "\u2581\u13a0\u13a8\u13f4": 167, "\u2581\u13f2\u13be": 168, "\u13ac": 169, "\u2581\u13a4\u13be": 170, "\u2581\u13e6\u13e9": 171, "\u2581\u13cc\u13b3\u13d3": 172, "\u13aa": 173, "\u2581\u13a0\u13cf": 174, "\u2581\u13be\u13a5": 175, "\u13d9\u13d7": 176, "\u2581\u13c4\u13ea\u13d2\u13a9": 177, "\u2581\u13c5\u13a9": 178, "\u2581\u13c4\u13ea\u13ce\u13b4\u13a2": 179, "\u2581\u13c2\u13a6\u13d3": 180, "\u2581\u13ed": 181, "\u2581\u13e7\u13d3\u13b4\u13c5\u13db": 182, "\u2581\u13f1\u13a8\u13ce\u13cd\u13d7": 183, "\u2581\u13e6\u13a2": 184, "\u13ef": 185, "\u2581\u13a2\u13e5": 186, "\u13c1": 187, "\u2581\u13a4\u13d9\u13af\u13f3\u13af\u13ef": 188, "\u2581\u13e5\u13cc\u13c3": 189, "\u2581\u13c5\u13ef": 190, "\u13e5": 191, "\u2581\u13c2\u13da\u13ea\u13ce\u13b4\u13a2": 192, "\u2581\u13ef": 193, "\u2581\u13a6\u13da": 194, "\u2581\u13d0\u13c8\u13b5": 195, "\u2581\u13dd\u13cd\u13aa": 196, "\u2581\u13a0\u13c2\u13e7\u13cf": 197, "\u2581\u13c4": 198, "\u2581\u13e3\u13ac\u13eb\u13f3\u13af": 199, "\u2581\u13a4\u13ac\u13e9\u13b5": 200, "\u13ce": 201, "\u2581\u13e7\u13e4\u13b5": 202, "\u2581\u13c2": 203, "\u2581\u13a6\u13b5\u13c9\u13a9": 204, "\u2581\u13d3\u13b6\u13c2\u13a8": 205, "\u2581\u13ac": 206, "\u2581\u13ac\u13e9\u13cd\u13d3\u13e9\u13d7\u13d9\u13af": 207, "\u2581\u13c4\u13ea\u13ce\u13b8\u13a9": 208, "\u13cd\u13ac": 209, "\u2581\u13a1\u13cd\u13a6": 210, "\u2581\u13a6\u13aa": 211, "\u2581\u13c2\u13a6\u13d7\u13f3": 212, "\u2581\u13a2\u13e7\u13b3\u13ad": 213, "\u2581\u13ac\u13d7": 214, "\u2581\u13c2\u13aa\u13af\u13b8": 215, "\u2581\u13f0\u13b5\u13c9": 216, "\u13ae": 217, "\u2581\u13a6\u13d3": 218, "\u13b3": 219, "\u2581\u13a8": 220, "\u2581\u13a0\u13c6": 221, "\u2581\u13a0\u13d3": 222, "\u2581\u13a4\u13d9\u13d3": 223, "\u2581\u13da\u13c2": 224, "\u2581\u13c8\u13d3": 225, "\u2581\u13a3\u13c2": 226, "\u2581\u13c4\u13ea\u13ce\u13b4": 227, "\u2581\u13a4\u13e4\u13cd\u13d9": 228, "\u2581\u13d5": 229, "\u2581\u13e5\u13b7\u13cf\u13b5\u13bb": 230, "\u2581\u13c2\u13da\u13ea\u13ce\u13b8\u13a9": 231, "\u2581\u13a0\u13cf\u13c9": 232, "\u2581\u13e3\u13c2": 233, "\u2581\u13a6\u13da\u13b2": 234, "\u2581\u13a1": 235, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13ad": 236, "\u2581\u13a0\u13c2\u13a8\u13f4": 237, "\u2581\u13ac\u13c2": 238, "\u2581\u13a4\u13c5\u13d2": 239, "\u2581\u13a2\u13a9": 240, "\u2581\u13aa\u13ea\u13b5": 241, "\u2581\u13c9\u13b3": 242, "\u2581\u13e7\u13be\u13d3\u13b4\u13c5\u13db": 243, "\u2581\u13f1\u13a8\u13ce": 244, "\u2581\u13a2\u13ef\u13c2\u13db": 245, "\u2581\u13ac\u13c2\u13db": 246, "\u2581\u13a0\u13a9": 247, "\u2581\u13a1\u13d9\u13d3": 248, "\u2581\u13c4\u13ac\u13eb\u13f3\u13d2": 249, "\u13d8": 250, "\u2581\u13c2\u13ac\u13be\u13db": 251, "\u2581\u13a2\u13a6\u13a2": 252, "\u2581\u13cd\u13a9": 253, "\u2581\u13be\u13cd\u13a9\u13ef\u13a2": 254, "\u2581\u13d0\u13c9": 255, "\u2581\u13e3\u13b5": 256, "\u2581\u13aa\u13af\u13f3\u13d7": 257, "\u13d4\u13c5\u13af": 258, "\u2581\u13a0\u13c2\u13d4\u13b5": 259, "\u13f4": 260, "\u2581\u13be\u13a5\u13c2": 261, "\u2581\u13a1\u13b3\u13c2": 262, "\u13b0": 263, "\u2581\u13a4\u13b5\u13c2\u13a9\u13db": 264, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c1\u13a2": 265, "\u2581\u13a2\u13f4": 266, "\u2581\u13a4\u13c1\u13e8": 267, "\u2581\u13a4\u13d9\u13af\u13f3\u13af": 268, "\u2581\u13bc\u13cf\u13c3": 269, "\u2581\u13a4\u13d3\u13b5\u13a2": 270, "\u13b8\u13a9": 271, "\u2581\u13d7\u13a6\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 272, "\u2581\u13e7\u13c2": 273, "\u2581\u13a2\u13ac\u13f1\u13d7\u13e2": 274, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d7": 275, "\u2581\u13a0\u13e3\u13d7": 276, "\u2581\u13c4\u13c2\u13ea\u13ce\u13a2": 277, "\u2581\u13e5\u13aa": 278, "\u13b8\u13af": 279, "\u2581\u13ad": 280, "\u13b4\u13a2": 281, "\u13cd\u13a8\u13cd\u13d7": 282, "\u2581\u13a2\u13a8\u13ce\u13cd\u13d7": 283, "\u13ae\u13cd\u13d7": 284, "\u2581\u13d7\u13a7\u13bf\u13e9\u13d7\u13d9\u13af": 285, "\u2581\u13a7": 286, "\u13a5": 287, "\u2581\u13d9": 288, "\u2581\u13af\u13cd\u13a9": 289, "\u2581\u13d7\u13a6\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7": 290, "\u2581\u13a0\u13ef": 291, "\u2581\u13a2\u13e7\u13b3": 292, "\u2581\u13a4\u13db\u13c5": 293, "\u2581\u13a1\u13cf\u13a9": 294, "\u2581\u13a0\u13be\u13b5\u13c5\u13df": 295, "\u2581\u13cc\u13cc": 296, "\u2581\u13d7\u13e3": 297, "\u2581\u13a9\u13a6\u13a8": 298, "\u2581\u13b0\u13bb": 299, "\u2581\u13a6\u13b6\u13af\u13cd\u13d7\u13f1": 300, "\u2581\u13c5\u13e9\u13d3\u13b4": 301, "\u2581\u13ad\u13eb\u13c2": 302, "\u2581\u13d1\u13be\u13b4": 303, "\u2581\u13e7\u13be": 304, "\u2581\u13a0\u13b5\u13cd\u13d3\u13f4\u13d7": 305, "\u13d4\u13c5": 306, "\u2581\u13cd\u13a9\u13be\u13be": 307, "\u13e8": 308, "\u2581\u13c5\u13d9": 309, "\u13eb": 310, "\u2581\u13d2\u13c3\u13f1": 311, "\u2581\u13a2\u13ac\u13f1\u13f1": 312, "\u2581\u13a2\u13be\u13a8": 313, "\u2581\u13ac\u13e9\u13a6\u13d8\u13ef": 314, "\u2581\u13a4\u13c3\u13d5\u13be": 315, "\u2581\u13a0\u13e7\u13e3": 316, "\u2581\u13a4\u13e9\u13cc": 317, "\u2581\u13d4\u13b3\u13da": 318, "\u13e2": 319, "\u2581\u13a4\u13e5": 320, "\u2581\u13a6\u13b8\u13b6\u13a2": 321, "\u2581\u13f1\u13a8\u13ce\u13a2": 322, "\u2581\u13a3": 323, "\u2581\u13e7\u13ac\u13e9\u13b6\u13d7": 324, "\u2581\u13a9\u13b3": 325, "\u2581\u13a4\u13d3": 326, "\u13cc": 327, "\u2581\u13a4\u13be\u13e4\u13b5\u13a6": 328, "\u13c5\u13af": 329, "\u2581\u13da\u13d9\u13a5": 330, "\u2581\u13da\u13be": 331, "\u13e3": 332, "\u2581\u13a2\u13e4": 333, "\u2581\u13a6\u13f2\u13df": 334, "\u2581\u13c5\u13e9\u13d9\u13af\u13ef\u13db": 335, "\u2581\u13a0\u13cf\u13f4\u13eb": 336, "\u2581\u13a5": 337, "\u13cd\u13db": 338, "\u13c9\u13cd\u13a9\u13c2": 339, "\u2581\u13a2\u13b8\u13af\u13f3": 340, "\u2581\u13a2\u13d3\u13b5\u13c5\u13df": 341, "\u2581\u13e7\u13be\u13c1\u13b6\u13d7": 342, "\u13cd\u13a9\u13c2\u13c3\u13c5": 343, "\u13d9": 344, "\u2581\u13f1\u13a8\u13d2\u13be": 345, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13d7": 346, "\u2581\u13a4\u13da\u13a9": 347, "\u2581\u13d7\u13a6": 348, "\u2581\u13a0\u13c6\u13e4\u13b5": 349, "\u2581\u13a2\u13aa\u13af\u13db": 350, "\u2581\u13a0\u13ac\u13f1": 351, "\u13cd": 352, "\u2581\u13a3\u13a9": 353, "\u2581\u13a0\u13f0\u13b8": 354, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c5": 355, "\u2581\u13a1\u13c6": 356, "\u2581\u13ad\u13eb\u13c2\u13d7\u13e2": 357, "\u2581\u13a0\u13c7\u13e5": 358, "\u13d5": 359, "\u2581\u13e7\u13e4\u13b5\u13a6": 360, "\u2581\u13a9\u13b3\u13c9": 361, "\u2581\u13c5\u13d3\u13f3\u13d3\u13b4\u13c5\u13af": 362, "\u2581\u13c2\u13e8\u13ea\u13ce\u13ad": 363, "\u2581\u13c4\u13c2\u13ea\u13d2\u13a9": 364, "\u2581\u13a6\u13d3\u13ad": 365, "\u2581\u13a4\u13c7\u13d3\u13b5": 366, "\u2581\u13a6\u13f3\u13b3": 367, "\u2581\u13a4\u13be\u13d3\u13c5\u13d8": 368, "\u13d4": 369, "\u13ce\u13a2": 370, "\u2581\u13a2\u13f3\u13e9\u13c2\u13cc\u13db": 371, "\u2581\u13a2\u13f3\u13f0\u13c3": 372, "\u2581\u13a2\u13d0": 373, "\u2581\u13e5\u13f3": 374, "\u2581\u13c3\u13d7": 375, "\u2581\u13a2\u13a6\u13db": 376, "\u2581\u13a4\u13c1\u13b3\u13a9": 377, "\u2581\u13a4\u13d5\u13b5\u13db": 378, "\u2581\u13e7\u13d9\u13a2\u13db": 379, "\u2581\u13c4\u13ea\u13d2": 380, "\u2581\u13c4\u13cd\u13d7": 381, "\u2581\u13db": 382, "\u2581\u13a2\u13ef\u13a6\u13f4\u13b5": 383, "\u2581\u13e7\u13cd\u13c6\u13f4\u13cd\u13d7": 384, "\u2581\u13a4\u13db\u13db\u13c1": 385, "\u2581\u13d7\u13aa\u13e2\u13d4\u13c5\u13af": 386, "\u2581\u13e6": 387, "\u13c1\u13a2": 388, "\u2581\u13d3\u13c2": 389, "\u2581\u13cd\u13c9": 390, "\u2581\u13a0\u13c1\u13b2": 391, "\u2581\u13a6\u13b5\u13e6\u13db": 392, "\u13ae\u13a2": 393, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c1": 394, "\u2581\u13e9": 395, "\u2581\u13c4\u13d3\u13b4\u13d2": 396, "\u13b8\u13a2": 397, "\u13cd\u13d7\u13f1": 398, "\u2581\u13a0\u13c1\u13b2\u13a2": 399, "\u13d2\u13a9": 400, "\u2581\u13a0\u13cd\u13d3\u13ef": 401, "\u13c5\u13a9": 402, "\u2581\u13a4\u13be\u13e4\u13b5": 403, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d9\u13d7": 404, "\u2581\u13a0\u13be\u13d9\u13b4\u13b0\u13cd\u13a9": 405, "\u2581\u13a6\u13c1\u13b8": 406, "\u2581\u13d0\u13a2": 407, "\u2581\u13e6\u13a2\u13c1": 408, "\u13d9\u13d7\u13f1": 409, "\u2581\u13c3\u13c9": 410, "\u2581\u13a0\u13cd\u13aa\u13af\u13e7\u13c8": 411, "\u2581\u13a1\u13b3\u13c6\u13d7": 412, "\u2581\u13e7\u13c5\u13cf\u13d3\u13cd\u13d7": 413, "\u2581\u13a9\u13ac": 414, "\u13a8\u13a2": 415, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c5\u13a9": 416, "\u13b2\u13a2": 417, "\u2581\u13cc\u13e9\u13c2": 418, "\u2581\u13a0\u13c2\u13c6\u13b5\u13cf": 419, "\u2581\u13e0\u13a8\u13cf": 420, "\u2581\u13a0\u13f2\u13b1\u13af\u13cd\u13d7": 421, "\u2581\u13a0\u13d3\u13c1\u13b8": 422, "\u2581\u13a7\u13c5\u13c2\u13cd\u13a9": 423, "\u2581\u13a0\u13a6\u13f4\u13b5\u13a8": 424, "\u2581\u13a0\u13ba\u13c9\u13af": 425, "\u2581\u13c4\u13c2\u13ac\u13eb\u13f3\u13d2": 426, "\u2581\u13e7\u13d5\u13d8\u13f4\u13db": 427, "\u2581\u13a4\u13c2\u13c3\u13d5\u13be": 428, "\u2581\u13e5\u13f3\u13af": 429, "\u2581\u13a4\u13c1\u13ac": 430, "\u2581\u13dd": 431, "\u2581\u13a4\u13d2\u13af": 432, "\u2581\u13cf": 433, "\u2581\u13a4\u13c2\u13ac\u13eb\u13f3\u13af": 434, "\u2581\u13a4\u13c3\u13b4": 435, "\u13aa\u13a2": 436, "\u2581\u13a2\u13a6\u13e4\u13b5": 437, "\u2581\u13a0\u13d9\u13b4\u13b0\u13cd\u13a9": 438, "\u2581\u13a0\u13cd\u13aa\u13b5": 439, "\u2581\u13d5\u13e5": 440, "\u2581\u13d7\u13c2\u13a7\u13bf\u13e9\u13d7\u13d9\u13af": 441, "\u2581\u13e3\u13c4\u13cf": 442, "\u2581\u13c5\u13e9\u13be\u13d3\u13b4": 443, "\u2581\u13c2\u13af\u13cd\u13a9\u13c2": 444, "\u2581\u13a0\u13cd\u13a6\u13c2": 445, "\u13e4": 446, "\u2581\u13be\u13bf\u13c2": 447, "\u13a8\u13b6\u13af": 448, "\u2581\u13a1\u13e3": 449, "\u2581\u13a4\u13d3\u13c5\u13d8": 450, "\u2581\u13e7\u13c2\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 451, "\u2581\u13a5\u13a5": 452, "\u13b6": 453, "\u2581\u13d7\u13c2\u13f2\u13b5": 454, "\u2581\u13c2\u13ac": 455, "\u2581\u13a4\u13ec\u13f0\u13c2": 456, "\u2581\u13a1\u13c6\u13bb": 457, "\u2581\u13a4\u13b5\u13c2\u13a9\u13d7\u13f3": 458, "\u2581\u13a1\u13dd\u13ea\u13af": 459, "\u2581\u13c2\u13ac\u13c5": 460, "\u2581\u13a0\u13a6\u13f4\u13b5\u13a8\u13a2": 461, "\u2581\u13a4\u13b5\u13cf\u13a9": 462, "\u2581\u13aa\u13b0\u13cd\u13d7": 463, "\u2581\u13e8\u13d2": 464, "\u2581\u13a2\u13e8\u13d2": 465, "\u13c1\u13b8": 466, "\u13ac\u13a2": 467, "\u2581\u13a6\u13b8\u13b6": 468, "\u2581\u13a0\u13f2\u13b5": 469, "\u2581\u13a1\u13e5": 470, "\u2581\u13e4\u13e5": 471, "\u13cd\u13d9\u13d7": 472, "\u2581\u13d4\u13b5\u13c1\u13c3": 473, "\u2581\u13a6\u13be\u13dd\u13a2": 474, "\u2581\u13a0\u13d3\u13a8\u13f3\u13d7": 475, "\u2581\u13a8\u13b5\u13b5": 476, "\u2581\u13e5\u13a8\u13d2\u13a9": 477, "\u2581\u13e5\u13a8\u13ce\u13a2": 478, "\u2581\u13a8\u13d0\u13a2": 479, "\u13a0\u13c1\u13b6\u13af": 480, "\u13a4": 481, "\u13a3": 482, "\u13c6": 483, "\u2581\u13d5\u13a6": 484, "\u2581\u13a4\u13c1\u13b3\u13c5\u13af\u13c3": 485, ")": 486, "\u2581\u13a2\u13ef\u13a9\u13f3\u13cd\u13c8\u13db": 487, "\u2581\u13ad\u13be": 488, "\u2581\u13a2\u13e8": 489, "\u13cd\u13a6": 490, "\u2581\u13a0\u13c4\u13ec": 491, "\u2581\u13d7\u13c3\u13ea\u13b5\u13cd\u13a9": 492, "\u2581\u13a0\u13cd\u13a9\u13be": 493, "\u2581\u13a4\u13e4\u13b5\u13aa\u13af": 494, "\u2581\u13a4\u13c5\u13cf\u13d3\u13cd\u13d7": 495, "\u2581\u13d5\u13eb": 496, "\u2581\u13a2\u13d7": 497, "\u13e7": 498, "\u2581\u13a6\u13f0\u13aa\u13a9": 499, "\u2581\u13a0\u13c2\u13f4\u13eb\u13ef": 500, "\u2581\u13a2\u13aa\u13af\u13d3": 501, "\u13cd\u13ac\u13a2": 502, "\u2581\u13a0\u13a6\u13d4\u13b2\u13a2": 503, "\u2581\u13ad\u13c2": 504, "\u2581\u13a3\u13d3\u13b8": 505, "\u2581\u13d7\u13e5": 506, "\u2581(": 507, "\u13c8": 508, "\u2581\u13a6\u13b8\u13c9\u13d7": 509, "\u13a1": 510, "\u2581\u13d8": 511, "\u13a7": 512, "\u13a6\u13b5": 513, "\u13d2\u13a2": 514, "\u2581\u13d7\u13c6\u13e4\u13b5": 515, "\u2581\u13a4\u13f4\u13cd\u13d7": 516, "\u2581\u13b4\u13c6\u13c2": 517, "\u2581\u13a0\u13c3\u13af\u13f3\u13b2\u13cd\u13a9": 518, "\u2581\u13d3\u13c6\u13b4\u13b3": 519, "\u2581\u13a4\u13e3\u13d4\u13c5\u13af": 520, "\u2581\u13e5\u13cd\u13d5\u13e5": 521, "\u2581\u13a0\u13f0\u13b3\u13cd\u13d7": 522, "\u2581\u13a4\u13ac\u13eb\u13f3\u13cc\u13d5\u13a9": 523, "\u2581\u13a7\u13c1\u13cc\u13a2": 524, "\u2581\u13c4\u13cd\u13d5\u13cd\u13d7": 525, "\u2581\u13a8\u13d0": 526, "\u13d4\u13c5\u13a9": 527, "\u13e9": 528, "\u2581\u13c4\u13d3\u13b4": 529, "\u2581\u13e3\u13e4\u13b5": 530, "\u2581\u13aa\u13a2": 531, "\u2581\u13a0\u13db": 532, "\u2581\u13a7\u13c1\u13cd\u13a6": 533, "\u2581\u13a0\u13c2\u13cd\u13a9\u13be": 534, "\u2581\u13d7\u13a6\u13d9\u13b5": 535, "\u13cd\u13a8\u13a2": 536, "\u2581\u13a0\u13a9\u13be": 537, "\u2581\u13a8\u13b3\u13cd\u13d7\u13f1": 538, "\u2581\u13a4\u13f0\u13b8\u13d7": 539, "\u2581\u13a4\u13db\u13a6\u13c5": 540, "\u2581\u13eb\u13e5": 541, "\u2581\u13a6\u13da\u13b2\u13a2": 542, "\u2581\u13d7\u13c2\u13f2\u13df": 543, "\u2581\u13a0\u13cc\u13bb\u13d3": 544, "\u2581\u13a8\u13e5\u13c5\u13cf\u13db": 545, "\u2581\u13ba\u13b5": 546, "\u2581\u13a0\u13d7\u13be": 547, "\u2581\u13e7\u13c1\u13e5": 548, "\u2581\u13a0\u13c2\u13cf\u13f4\u13eb\u13ad": 549, "\u2581\u13a4\u13f2\u13b1\u13d2": 550, "\u2581\u13a2\u13a6\u13db\u13c3": 551, "\u2581\u13e8": 552, "\u2581\u13a0\u13be": 553, "\u2581\u13a4\u13f0\u13b8\u13db": 554, "\u2581\u13e5\u13a8\u13d2": 555, "\u2581\u13a4\u13aa\u13b2": 556, "\u2581\u13d7\u13e3\u13e4\u13b5": 557, "\u2581\u13a2\u13b8\u13af\u13e2": 558, "\u2581\u13a6\u13e9\u13d2\u13a9": 559, "\u2581\u13e7\u13c2\u13f2\u13b1\u13d2\u13af": 560, "\u2581\u13a2\u13f3\u13d5\u13d8\u13f4\u13db": 561, "\u2581\u13a4\u13d5\u13c1\u13b4\u13a2": 562, "\u2581\u13aa\u13e2\u13d4\u13c5\u13af": 563, "\u2581\u13a2\u13ef": 564, "\u2581\u13a0\u13e5": 565, "\u2581\u13d1\u13d3\u13b5": 566, "\u2581\u13a0\u13cd\u13aa\u13af": 567, "\u2581\u13a0\u13ce\u13c9": 568, "\u13e7\u13c8": 569, "\u2581\u13a2\u13f3\u13cd\u13a9\u13c2": 570, "\u2581\u13e5\u13a8\u13ce": 571, "\u2581\u13ac\u13c5": 572, "\u13f2": 573, "\u2581\u13b1": 574, "\u2581\u13c5\u13d3\u13ac\u13e9\u13d3\u13b4\u13c5\u13db": 575, "\u2581\u13e3\u13c1\u13b3\u13c5\u13af": 576, "\u2581\u13c2\u13aa\u13af\u13b8\u13a2": 577, "\u2581\u13a2\u13f3\u13be\u13cd\u13d7": 578, "\u13cd\u13a8": 579, "\u2581\u13a0\u13a6\u13d9\u13a5\u13af\u13cd\u13d7": 580, "\u2581\u13a4\u13d2": 581, "\u13ac\u13be": 582, "\u13d7\u13a6\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 583, "\u2581\u13a4\u13be\u13d3\u13e1\u13ac": 584, "\u2581\u13a7\u13c1\u13ac": 585, "\u2581\u13f4": 586, "\u13cd\u13aa\u13a2": 587, "\u13d4\u13c1\u13a2": 588, "\u2581\u13d7\u13d3\u13cd\u13da\u13d7\u13f1": 589, "\u2581\u13c3\u13ef": 590, "\u2581\u13c5": 591, "\u2581\u13c5\u13f2\u13af": 592, "\u13c1\u13d7\u13f1": 593, "\u2581\u13e5\u13a6\u13d4\u13ad": 594, "\u13b2\u13a9": 595, "\u13cd\u13d4\u13c5": 596, "\u13df": 597, "o": 598, "\u2581\u13c4\u13ea\u13ce": 599, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8": 600, "\u13ad\u13e9": 601, "\u2581\u13a8\u13f4": 602, "\u2581\u13d4\u13d5\u13f2\u13b2\u13cd\u13a9": 603, "\u2581\u13c6\u13b4\u13d7": 604, "\u2581\u13d7\u13e4\u13e5": 605, "\u2581\u13a5\u13e3\u13f1": 606, "\u2581\u13a4\u13be\u13e4\u13b5\u13aa\u13af": 607, "\u2581\u13d7\u13be\u13d3\u13c5\u13df": 608, "\u2581\u13a4\u13d0\u13c5": 609, "\u2581\u13a4\u13b5": 610, "\u2581\u13a4\u13c5\u13d7": 611, "\u2581\u13a4\u13be\u13db\u13a6\u13c5": 612, "\u2581\u13c2\u13a6": 613, "\u2581\u13a0\u13b2": 614, "\u2581\u13b0\u13e9": 615, "\u2581\u13b0": 616, "\u2581\u13d7\u13c2": 617, "\u2581\u13c5\u13a6\u13cd\u13aa\u13af": 618, "\u2581\u13a4\u13b5\u13ae\u13b5\u13cd\u13d7": 619, "\u2581\u13a4\u13b4\u13c5\u13ae": 620, "\u2581\u13c5\u13d3\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13ac\u13a9": 621, "\u2581\u13a4\u13f2\u13a2\u13f3": 622, "\u2581\u13a0\u13b3\u13c2": 623, "\u2581\u13ac\u13d8": 624, "\u2581\u13da\u13ec\u13a1\u13a2": 625, "\u2581\u13a1\u13b6\u13db": 626, "\u2581\u13a4\u13e0\u13f1": 627, "\u2581\u13a0\u13c2\u13ef\u13eb\u13cd\u13a9": 628, "\u13ce\u13cd\u13d7": 629, "\u13f0": 630, "\u2581\u13d3\u13d4\u13b4\u13d2": 631, "\u2581\u13a0\u13c2\u13d0\u13a2": 632, "\u2581\u13a4\u13b7\u13e8": 633, "\u2581\u13a6\u13c1\u13b8\u13a2": 634, "\u2581\u13a6\u13b5\u13e6\u13db\u13a2": 635, "\u2581\u13a4\u13d9\u13af\u13f3": 636, "\u13d4\u13c1": 637, "\u2581-": 638, "\u2581\u13a4\u13a7\u13db": 639, "\u2581\u13a4\u13c5": 640, "\u13be\u13cd\u13a9": 641, "\u2581\u13cc\u13c9\u13c9": 642, "\u2581\u13c2\u13af\u13c3": 643, "\u13d2\u13af": 644, "\u2581\u13d7\u13c5\u13c3\u13db": 645, "\u2581\u13a1\u13ba\u13c5": 646, "\u2581\u13ac\u13e9\u13da\u13eb\u13db": 647, "\u2581\u13a0\u13c2\u13e7\u13e3": 648, "\u2581\u13a9\u13b3\u13c8\u13f4": 649, "\u2581\u13a0\u13ac\u13f1\u13e3": 650, "\u2581\u13ad\u13eb\u13c2\u13e3": 651, "\u2581\u13a3\u13af\u13cd\u13d9\u13d7": 652, "\u2581\u13be\u13cd\u13a9\u13cd\u13a9\u13c2": 653, "\u2581\u13ac\u13d4\u13c5\u13af": 654, "\u13d0": 655, "\u2581\u13ab": 656, "\u2581\u13ac\u13c2\u13a8": 657, "\u2581\u13a3\u13c2\u13c3": 658, "\u2581\u13a6\u13cd\u13a9\u13b8": 659, "\u2581\u13c2\u13da\u13ea\u13ce\u13b4": 660, "\u2581\u13a4\u13d9\u13b4\u13b0\u13d2": 661, "\u2581\u13e5\u13da": 662, "\u2581\u13b4\u13e5\u13b5": 663, "\u2581\u13a4\u13e3\u13b4\u13cd\u13d7": 664, "\u2581\u13c2\u13e3": 665, "\u2581\u13a6\u13b8\u13b3\u13d7\u13e2": 666, "\u2581\u13ad\u13e2": 667, "\u2581\u13e4": 668, "\u13a8\u13b3\u13cd\u13d7\u13f1": 669, "\u2581\u13d3\u13a6": 670, "\u2581\u13e5\u13a8\u13d0": 671, "\u2581\u13c2\u13e5\u13a5": 672, "\u2581\u13cd\u13a9\u13f4": 673, "\u2581\u13a4\u13d3\u13c5\u13d9": 674, "\u2581\u13f1\u13a6": 675, "\u2581\u13d7\u13c4\u13ec": 676, "\u2581\u13eb\u13be\u13cd\u13db\u13be": 677, "\u2581\u13e7\u13d2\u13af\u13db": 678, "\u2581\u13ce\u13b5": 679, "\u2581\u13a4\u13c1": 680, "\u2581\u13e4\u13af": 681, "\u2581\u13d7\u13ac\u13e9": 682, "\u2581\u13da\u13cf\u13b3\u13db": 683, "\u13ac\u13a9": 684, "\u2581\u13a4\u13be\u13d9\u13d3\u13c6\u13cd\u13ac": 685, "\u2581\u13a2\u13b8\u13cd\u13a9": 686, "\u2581\u13a2\u13ef\u13c2": 687, "\u13c1\u13b8\u13af": 688, "\u13cd\u13d3": 689, "\u2581\u13d6\u13b8\u13b3\u13d7": 690, "\u2581\u13a6\u13b5\u13e6\u13d5": 691, "\u2581\u13a1\u13c9\u13c2": 692, "\u2581\u13be\u13c2\u13ea\u13cd\u13a8\u13a2": 693, "\u2581\u13d4\u13b7\u13a9\u13cd\u13a9": 694, "\u2581\u13a0\u13c6\u13e4\u13b5\u13a6": 695, "\u2581\u13a1\u13ad": 696, "\u2581\u13e7\u13d7\u13f1": 697, "\u2581\u13a0\u13cb\u13d2": 698, "\u2581\u13a0\u13a6": 699, "\u2581\u13a8\u13be\u13c2": 700, "\u2581\u13ad\u13eb\u13ef": 701, "\u2581\u13a4\u13cf\u13d9\u13b5": 702, "\u2581\u13a2\u13f3\u13df\u13b6\u13db": 703, "\u2581\u13c3\u13c8\u13cf": 704, "\u2581\u13c2\u13ac\u13e9\u13ea\u13ce\u13b4\u13a2": 705, "\u2581\u13d5\u13e3": 706, "\u2581\u13aa\u13f1\u13c1\u13a2": 707, "\u2581\u13a6\u13da\u13cf": 708, "\u2581\u13e4\u13cd\u13d7": 709, "\u2581\u13a0\u13c2\u13a6\u13d4\u13b2": 710, "\u2581\u13a4\u13c1\u13e4": 711, "\u2581\u13a2\u13be\u13a8\u13a2": 712, "\u13d3\u13c1\u13d7": 713, "\u2581\u13ed\u13d5\u13b5\u13ac": 714, "\u2581\u13d7\u13e8\u13cd\u13d9\u13d7": 715, "\u2581\u13d1\u13be\u13d3\u13e1\u13a9": 716, "\u13d2\u13be": 717, "\u2581\u13e7\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 718, "\u2581\u13a2\u13be\u13db": 719, "\u2581\u13ab\u13e9": 720, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8\u13cd\u13d7": 721, "\u2581\u13a6\u13cd\u13a9\u13b6": 722, "\u2581\u13e5\u13a8\u13d0\u13a2": 723, "\u2581\u13a0\u13f4\u13c3": 724, "\u2581\u13a1\u13af\u13cd\u13d7": 725, "\u13b2\u13be": 726, "\u2581\u13d7\u13ab\u13aa\u13d9\u13d7": 727, "\u2581\u13a4\u13ea\u13b5\u13ce": 728, "\u2581\u13c4\u13be\u13cd\u13db": 729, "\u13db\u13be": 730, "\u2581\u13a4\u13c1\u13e4\u13b4": 731, "\u2581\u13a8\u13e5": 732, "\u2581\u13a3\u13ad\u13c1": 733, "\u13d7\u13cd\u13ac": 734, "\u2581\u13ac\u13c3\u13db": 735, "\u2581\u13d7\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 736, "\u2581\u13a0\u13e5\u13b8\u13c9\u13d7\u13f3": 737, "\u2581\u13a4\u13c1\u13b3\u13c5\u13af\u13cd\u13a9\u13c2": 738, "\u2581\u13a4\u13d9": 739, "\u2581\u13c2\u13da": 740, "\u2581\u13aa": 741, "\u13b4\u13cd\u13d7": 742, "\u13d7\u13cd\u13a9": 743, "\u13af\u13a0": 744, "\u2581\u13c2\u13a6\u13ea\u13cd\u13ac": 745, "\u2581\u13a4\u13b5\u13cf\u13ac": 746, "\u2581\u13a1\u13b6": 747, "\u2581\u13a4\u13ea\u13b7\u13c1": 748, "\u2581\u13c4\u13db\u13c1\u13b4": 749, "\u2581\u13ac\u13c2\u13f3\u13c9\u13c3": 750, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d9": 751, "\u2581\u13e5\u13cd\u13c6": 752, "\u13af\u13f3": 753, "\u2581\u13a2\u13c5": 754, "\u2581\u13a6\u13b5": 755, "\u2581\u13a4\u13c2\u13b7\u13e4": 756, "\u2581\u13e7\u13be\u13e4\u13b5": 757, "\u2581\u13c2\u13a6\u13ea\u13ad": 758, "\u2581\u13a5\u13de\u13cd\u13d7": 759, "\u2581\u13a0\u13b0\u13b5": 760, "\u2581\u13a0\u13b5": 761, "\u2581\u13a0\u13ce\u13c9\u13c9": 762, "\u2581\u13a3\u13a6": 763, "\u13b7": 764, "\u2581\u13a4\u13ac\u13eb\u13f3": 765, "\u2581\u13ae\u13be": 766, "\u13d5\u13cd\u13d7": 767, "\u2581\u13e3\u13e5": 768, "\u2581\u13a1\u13b5": 769, "\u2581\u13a0\u13f0\u13b8\u13a2": 770, "\u13da": 771, "\u2581\u13d1\u13be\u13b4\u13a2": 772, "\u2581\u13a0\u13d3\u13c5\u13d6\u13cd\u13ac": 773, "\u2581\u13a8\u13e3": 774, "\u13c4": 775, "\u2581\u13a3\u13e5": 776, "\u13b0\u13a2": 777, "\u2581\u13a0\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7": 778, "\u2581\u13eb\u13da": 779, "\u2581\u13a4\u13cd\u13aa\u13b8": 780, "\u2581\u13a9\u13b6\u13cd\u13a9\u13c2": 781, "\u2581\u13e6\u13a0\u13cd\u13aa\u13af": 782, "\u2581\u13e7\u13c6\u13b6\u13a6": 783, "\u2581\u13a9\u13a6": 784, "\u2581\u13d7\u13c2\u13b3\u13eb\u13a9": 785, "\u2581\u13a4\u13a9\u13ac": 786, "\u2581\u13d4": 787, "\u2581\u13e7\u13be\u13e4\u13b5\u13a6": 788, "\u2581\u13e3\u13c1\u13ad": 789, "\u2581\u13a9\u13a6\u13a8\u13a2": 790, "\u13bb": 791, "\u2581\u13a4\u13e9\u13d2\u13c9": 792, "\u13c1\u13e2\u13d4\u13c5\u13db": 793, "\u2581\u13cd\u13a9\u13be": 794, "\u2581\u13d7\u13ac": 795, "\u2581\u13d3\u13f3": 796, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13ac": 797, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d3\u13c1\u13d7": 798, "\u2581\u13e9\u13ad\u13ef": 799, "\u2581\u13d7\u13a7\u13b8\u13ac": 800, "\u2581\u13d9\u13f1\u13d7\u13e2": 801, "\u2581\u13e3\u13b3\u13a9": 802, "\u2581\u13a1\u13b6\u13d7": 803, "\u2581\u13a4\u13e0\u13f1\u13c9": 804, "\u2581\u13a0\u13d9\u13af": 805, "\u13ea": 806, "\u13d9\u13a2\u13f3\u13cd\u13d7": 807, "\u13af\u13cd\u13d7": 808, "\u2581\u13f1\u13d3": 809, "\u2581\u13a6\u13b6\u13af\u13cd\u13d7": 810, "\u2581\u13a4\u13e3\u13d8\u13c2": 811, "\u2581\u13a4\u13da\u13b5\u13cd\u13ac": 812, "\u2581\u13a4\u13be\u13d3": 813, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d3\u13c1\u13d7": 814, "\u2581\u13a2\u13f3\u13be\u13db\u13c1\u13d7": 815, "\u13c1\u13b4": 816, "\u2581\u13af\u13cd\u13a6\u13cd\u13aa\u13af": 817, "\u2581\u13c2\u13da\u13f3\u13aa\u13db\u13be": 818, "\u2581\u13e7\u13ec\u13f0\u13c2": 819, "\u2581\u13a0\u13c2\u13f2\u13cd\u13a9": 820, "\u2581\u13e3\u13c1\u13e2\u13d4\u13c5\u13af": 821, "\u2581\u13e3\u13d9\u13d3": 822, "\u2581\u13a4\u13c2\u13d9\u13d3": 823, "\u2581\u13e9\u13cd\u13db": 824, "\u2581\u13ac\u13e9\u13c2": 825, "\u2581\u13f1\u13e5\u13a6\u13d4\u13ad": 826, "\u2581\u13e5\u13bb": 827, "\u2581\u13a4\u13cd\u13c6\u13c2\u13a9\u13d7": 828, "\u2581\u13b6\u13d7": 829, "\u2581\u13be\u13a5\u13c2\u13a8": 830, "\u13cd\u13d3\u13ef": 831, "\u2581\u13a4\u13a6\u13d4": 832, "\u2581\u13a4\u13b5\u13cd\u13c6\u13b8\u13d7": 833, "\u2581\u13a0\u13c2\u13c5": 834, "\u13d7\u13cd\u13a8\u13cd\u13d7": 835, "\u2581\u13a4\u13d0\u13f1": 836, "\u2581\u13a4\u13e9": 837, "\u2581\u13a4\u13ea": 838, "\u2581\u13ac\u13a9": 839, "\u2581\u13f1\u13e3": 840, "\u13d4\u13c2": 841, "\u2581\u13a4\u13b5\u13cd\u13d3\u13f4\u13d7": 842, "\u2581\u13d5\u13a4": 843, "\u2581\u13a4\u13ea\u13d8": 844, "\u2581\u13f1\u13a6\u13b5\u13cd\u13d9\u13d3": 845, "\u2581\u13b5\u13a0": 846, "\u2581\u13a4\u13b5\u13cd\u13c8\u13d7": 847, "\u2581\u13a0\u13e5\u13c5\u13cf\u13d3\u13cd\u13d7": 848, "\u2581\u13c3\u13ca": 849, "\u2581\u13a2\u13e5\u13cd\u13a6\u13ef": 850, "\u2581\u13ce\u13a6": 851, "\u2581\u13a4\u13c1\u13a6": 852, "\u2581\u13a4\u13a7\u13b5\u13e8\u13af": 853, "\u2581\u13e7\u13d3\u13cf": 854, "\u2581\u13a0\u13a6\u13d4\u13b2": 855, "\u2581\u13a4\u13be\u13dd\u13a2": 856, "\u13ca": 857, "\u13d7\u13ad": 858, "\u2581\u13a4\u13cd\u13aa\u13cd": 859, "\u2581\u13f2": 860, "\u2581\u13a2\u13e4\u13b2\u13a2": 861, "--": 862, "\u13db\u13a2": 863, "\u2581\u13a2\u13e4\u13b2": 864, "\u13c1\u13d7": 865, "\u2581\u13a0\u13b9\u13f1": 866, "\u2581\u13c4\u13ea\u13ce\u13b8": 867, "\u2581\u13a0\u13f4\u13cd\u13a9\u13c2": 868, "\u2581\u13d3\u13a9": 869, "\u2581\u13a4\u13b7\u13e4": 870, "\u2581\u13b5\u13c7\u13a9": 871, "\u2581\u13da\u13c5\u13d3\u13d2": 872, "\u2581\u13d2\u13a6\u13d4": 873, "\u2581\u13a4\u13a6\u13be\u13cd\u13db": 874, "\u2581\u13a6\u13b6\u13c7": 875, "\u2581\u13cf\u13cc": 876, "\u2581\u13da\u13be\u13d9\u13a5": 877, "\u2581\u13e5\u13c4\u13cd\u13d7": 878, "\u2581\u13ac\u13d9\u13d7": 879, "\u13b8\u13ad": 880, "\u2581\u13a6\u13b8\u13b3\u13d7\u13e3": 881, "\u13cd\u13d4\u13c1\u13a2": 882, "\u13dd": 883, "\u2581\u13e7\u13d3": 884, "\u13cd\u13d8": 885, "\u2581\u13a1\u13b2": 886, "\u2581\u13e1\u13ac": 887, "\u2581\u13db\u13a6": 888, "\u13af\u13cd\u13d7\u13f1": 889, "\u2581\u13a2\u13ef\u13db\u13c1\u13d7": 890, "\u2581\u13f1\u13da": 891, "\u2581\u13ce\u13d3\u13c2": 892, "\u2581\u13d4\u13b4\u13b2\u13a6": 893, "\u2581\u13e5\u13aa\u13ea\u13b3": 894, "\u2581\u13a0\u13c2\u13f3\u13e9\u13c1\u13a6": 895, "\u2581\u13e7\u13d3\u13c6\u13d9\u13a9": 896, "\u2581\u13a0\u13c2\u13f4\u13eb": 897, "\u2581\u13a2\u13ac\u13c1\u13b8\u13af": 898, "\u2581\u13a6\u13da\u13a2\u13e3": 899, "\u2581\u13a4\u13f2\u13b1\u13ce\u13a2": 900, "\u2581\u13d3\u13e5": 901, "\u2581\u13ed\u13b7\u13e4": 902, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d3\u13c1\u13d7": 903, "\u2581\u13a0\u13d7\u13d4\u13cd\u13d7": 904, "\u2581\u13ac\u13c5\u13a2": 905, "\u2581\u13c4\u13be": 906, "\u13d6": 907, "\u2581\u13a8\u13b5": 908, "\u13cf\u13f4\u13eb\u13ad": 909, "\u2581\u13a4\u13ec\u13e2": 910, "\u2581\u13a4\u13c2\u13cd\u13a6\u13c5\u13e8": 911, "\u2581\u13d5\u13af": 912, "\u2581\u13a4\u13db\u13a6\u13c1": 913, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c2\u13d9\u13b8": 914, "\u2581\u13a6\u13f0": 915, "\u2581\u13c8\u13b5\u13a9": 916, "\u2581\u13a8\u13bb\u13b5": 917, "\u2581\u13e7\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 918, "\u2581\u13c5\u13d3\u13a6\u13b5\u13cd\u13d4\u13c2": 919, "\u2581\u13d4\u13b3\u13cd\u13aa\u13af": 920, "\u2581\u13a2\u13e3\u13b5\u13c5\u13df": 921, "\u2581\u13a6\u13c5\u13cd\u13d9\u13d7": 922, "\u2581\u13d5\u13e7\u13ac": 923, "\u2581\u13a4\u13be\u13d3\u13e4\u13b5\u13db": 924, "\u2581\u13af\u13c5\u13cf\u13d3\u13cd\u13d7": 925, "\u2581\u13a2\u13e5\u13d9\u13d3": 926, "\u2581\u13e7\u13be\u13db\u13d0\u13c5\u13af": 927, "\u2581\u13a2\u13e3\u13db\u13c1\u13d7\u13f1": 928, "\u2581\u13c2\u13d7": 929, "\u2581\u13a4\u13d5\u13ef\u13d9\u13d7": 930, "\u2581\u13a6\u13da\u13a2": 931, "\u2581\u13d9\u13f1": 932, "\u2581\u13a4\u13c2\u13aa\u13b2": 933, "\u13d9\u13b8\u13a2": 934, "\u2581\u13a4\u13b6\u13a9\u13b8": 935, "\u2581\u13ac\u13d7\u13cd\u13ac": 936, "\u13a3\u13cd\u13d3": 937, "\u2581\u13c2\u13af\u13f0\u13c3": 938, "\u2581\u13a4\u13db\u13be": 939, "\u2581\u13d0\u13a3\u13c1\u13b3": 940, "\u2581\u13a0\u13c2\u13a8\u13ef": 941, "\u2581\u13a4\u13a9\u13e8\u13db": 942, "\u2581\u13e5\u13c2\u13ac\u13c5": 943, "\u2581\u13a2\u13ef\u13db\u13c1\u13af": 944, "\u2581\u13a0\u13d5\u13b3": 945, "\u2581\u13a2\u13e8\u13a8\u13f3\u13a2": 946, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13ad": 947, "\u2581\u13a6\u13b8\u13c9\u13d9\u13d7": 948, "\u2581\u13a4\u13b4\u13c2\u13d9\u13b4\u13a2": 949, "\u2581\u13a6\u13c1\u13a6": 950, "\u2581\u13d3\u13be": 951, "\u2581\u13a2\u13ef\u13cd\u13d7": 952, "\u2581\u13ed\u13b6\u13ce\u13a2": 953, "\u2581\u13a1\u13ae\u13a2": 954, "\u2581\u13be\u13af\u13f3\u13c9": 955, "\u2581\u13a6\u13b5\u13c9\u13a9\u13c1": 956, "\u2581\u13a4\u13b7\u13e8\u13a9": 957, "\u2581\u13a4\u13aa\u13ae": 958, "\u2581\u13a4\u13ea\u13c5\u13ce": 959, "\u2581\u13c2\u13a6\u13a5\u13c9": 960, "\u2581\u13a4\u13c1\u13e4\u13b8": 961, "\u2581\u13a6\u13ec\u13c2\u13cd\u13ac": 962, "\u13a8\u13f3\u13af\u13f3": 963, "\u13a0\u13d7\u13d4\u13cd\u13d7": 964, "\u13d7\u13a6\u13c5\u13cc\u13d7": 965, "\u13e1": 966, "\u2581\u13d7\u13a8\u13d2": 967, "\u13a7\u13d4\u13ae\u13a2": 968, "\u2581\u13c2\u13ac\u13be\u13db\u13a2": 969, "\u2581\u13a4\u13b5\u13cd\u13c6\u13d7\u13cd\u13d7": 970, "\u2581\u13e7\u13c2\u13be\u13eb": 971, "\u2581\u13a0\u13c2\u13cd\u13a6\u13be": 972, "\u2581\u13a4\u13be\u13eb": 973, "\u2581\u13d3\u13c6\u13b4\u13b7": 974, "\u2581\u13c5\u13ac\u13e9\u13ea\u13ce\u13b8\u13a9": 975, "\u2581\u13a2\u13e5\u13a6\u13d4\u13ad": 976, "\u2581\u13cf\u13d3\u13c1\u13b8\u13af": 977, "\u2581\u13a0\u13c2\u13c3\u13af\u13b5\u13d9\u13af": 978, "\u2581\u13a0\u13d3\u13c1\u13af": 979, "\u2581\u13a4\u13df\u13af\u13f3": 980, "\u2581\u13a6\u13db\u13a6": 981, "\u2581\u13a0\u13e4\u13af": 982, "\u2581\u13e4\u13ad": 983, "\u2581\u13a2\u13ac\u13e9": 984, "\u2581\u13a2\u13a6\u13d3": 985, "\u2581\u13a0\u13c2\u13a6\u13d4\u13b2\u13a2": 986, "\u13c7": 987, "\u13db\u13a9": 988, "\u2581\u13a6\u13d3\u13c1": 989, "\u2581\u13a0\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7": 990, "\u13b2\u13a6": 991, "\u2581\u13f4\u13eb\u13c9": 992, "\u2581\u13aa\u13ea\u13b8": 993, "\u2581\u13c5\u13e9\u13d3\u13b4\u13c3": 994, "\u2581\u13e5\u13d3": 995, "\u2581\u13a0\u13c2\u13ec\u13c2\u13cd\u13ac": 996, "\u2581\u13c4\u13e9\u13c1\u13b4": 997, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13ac": 998, "\u2581\u13a0\u13e0\u13c1\u13d7": 999, "\u2581\u13d3\u13bf\u13e9": 1000, "\u2581\u13c5\u13d3\u13f3\u13b6\u13d2\u13af": 1001, "\u2581\u13a7\u13c3\u13af\u13f0\u13a9": 1002, "\u2581\u13a1\u13c9\u13af\u13f3": 1003, "\u2581\u13a0\u13a6\u13d8\u13cf\u13d7\u13e2": 1004, "\u2581\u13e7\u13f3\u13aa\u13d7": 1005, "\u2581\u13be\u13cd\u13a9\u13ef\u13c9": 1006, "\u2581\u13d7\u13f0\u13b8\u13af": 1007, "\u2581\u13a4\u13d4\u13b3\u13ec\u13af\u13cd\u13d7": 1008, "\u2581\u13a6\u13b7\u13e8\u13ad": 1009, "\u2581\u13c5\u13c3\u13af": 1010, "\u2581\u13a0\u13b9\u13df": 1011, "\u2581\u13a0\u13c6\u13db\u13c5": 1012, "\u2581\u13a4\u13c2\u13f2": 1013, "\u2581\u13a4\u13be\u13b5": 1014, "\u2581\u13e7\u13c2\u13cd\u13d7": 1015, "\u2581\u13aa\u13ea\u13b8\u13a2": 1016, "\u2581\u13a4\u13c1\u13e8\u13a9": 1017, "\u2581\u13c4\u13db\u13c1\u13b8": 1018, "\u2581\u13a6\u13d9\u13a8": 1019, "---": 1020, "\u2581\u13c4\u13cd\u13d5": 1021, "\u2581\u13a4\u13d5\u13d8\u13f4\u13cc\u13d7\u13d2": 1022, "\u2581\u13d5\u13a4\u13d9\u13a5": 1023, "\u2581\u13d3\u13f3\u13d3\u13b4\u13c5": 1024, "\u2581\u13a0\u13cd\u13db": 1025, "\u2581\u13a6\u13d9\u13ac": 1026, "\u2581\u13d7\u13cf\u13d3\u13b5": 1027, "\u2581\u13a3\u13e3\u13b5\u13c5\u13df": 1028, "\u2581\u13e4\u13a9\u13cf\u13c2": 1029, "\u2581\u13c6\u13c2\u13c6": 1030, "\u2581\u13af\u13b8\u13a2\u13f4": 1031, "\u2581\u13a2\u13d3\u13d3\u13c5\u13df": 1032, "\u2581\u13a8\u13e5\u13b8\u13c9\u13d7": 1033, "\u2581\u13d7\u13a8\u13a6\u13c1\u13b6\u13d7": 1034, "\u2581\u13a0\u13c8\u13bb\u13b4\u13a9": 1035, "\u2581\u13d7\u13c7\u13e5": 1036, "\u2581\u13a4\u13a6\u13b5\u13cd\u13d7": 1037, "\u13c5\u13cf\u13db": 1038, "\u2581\u13e9\u13b6\u13cf": 1039, "\u2581\u13ac\u13e9\u13d5\u13c1\u13b4\u13a2": 1040, "\u2581\u13be\u13a9\u13ea\u13ce\u13b8\u13a9": 1041, "\u2581\u13d5\u13e3\u13d3\u13c5\u13db\u13a2": 1042, "\u2581\u13a0\u13d3\u13eb": 1043, "\u2581\u13e6\u13f0\u13c2": 1044, "\u2581\u13e7\u13e9": 1045, "\u13f1\u13a9": 1046, "\u2581\u13a0\u13c2\u13aa\u13a2": 1047, "\u2581\u13aa\u13cd\u13d3": 1048, "\u2581\u13e7\u13ac": 1049, "\u2581\u13af\u13aa": 1050, "\u2581\u13aa\u13ea\u13b5\u13af": 1051, "\u2581\u13aa\u13b3": 1052, "\u2581\u13a0\u13ef\u13d9": 1053, "\u13cd\u13aa\u13af": 1054, "\u13a2\u13cd\u13d7\u13f1": 1055, "\u13c1\u13ad": 1056, "\u2581\u13da\u13b4\u13c5": 1057, "\u2581\u13be\u13c3": 1058, "\u2581\u13a6\u13b8": 1059, "\u2581\u13d5\u13e3\u13d9\u13a5": 1060, "\u13d9\u13af": 1061, "\u2581\u13a2\u13e3\u13e4\u13b5": 1062, "\u2581\u13d8\u13c5\u13cf\u13d3\u13cd\u13d7": 1063, "\u2581\u13c4\u13c2\u13ac\u13eb\u13f3\u13cc\u13d5\u13a9": 1064, "\u2581\u13a5\u13d3\u13b5": 1065, "\u2581\u13a2\u13b3\u13ef": 1066, "\u2581\u13a4\u13be\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 1067, "\u2581\u13d7\u13d8\u13c2\u13d9\u13af": 1068, "\u2581\u13d0\u13b3": 1069, "\u2581\u13a0\u13c1\u13d9\u13af": 1070, "\u2581\u13d7\u13a8": 1071, "\u2581\u13a4\u13e9\u13d2\u13af\u13f3": 1072, "\u2581\u13ce\u13a6\u13e8": 1073, "\u2581\u13d7\u13e3\u13e4\u13b5\u13a6": 1074, "\u2581\u13a4\u13d9\u13af\u13f3\u13d2": 1075, "\u2581\u13a4\u13d5\u13c5\u13af": 1076, "\u13e8\u13a9": 1077, "\u2581\u13a0\u13cd\u13d3\u13f1": 1078, "\u2581\u13ac\u13d7\u13cd\u13a9": 1079, "\u2581\u13a0\u13a6\u13d7": 1080, "\u2581\u13ed\u13c2": 1081, "\u2581\u13a0\u13c2\u13d3": 1082, "\u13a7\u13c2": 1083, "\u13db\u13c1\u13d7": 1084, "\u2581\u13c1": 1085, "\u2581\u13a3\u13d3\u13b8\u13a2": 1086, "\u13a6\u13c5\u13af\u13db": 1087, "\u13a2\u13f3\u13cd\u13d7": 1088, "e": 1089, "\u2581\u13a0\u13b5\u13cd\u13da\u13b6": 1090, "\u13a9\u13cd\u13d7": 1091, "\u2581\u13a5\u13a9": 1092, "\u13cc\u13db": 1093, "\u13c5\u13d2": 1094, "\u2581\u13a0\u13e5\u13b8\u13f1": 1095, "\u2581\u13f1\u13e5": 1096, "\u2581\u13c4\u13e9\u13c1\u13b8": 1097, "\u2581\u13d9\u13db": 1098, "\u2581\u13a4\u13b6\u13d0\u13c5": 1099, "\u2581\u13a0\u13a6\u13f4\u13b5": 1100, "\u2581\u13a0\u13a7\u13b5\u13a2": 1101, "\u2581\u13a0\u13f0\u13d9\u13b3\u13db\u13d7": 1102, "\u2581\u13e9\u13cf\u13d3\u13c2": 1103, "\u2581\u13d3\u13cf\u13b3\u13db": 1104, "\u2581\u13da\u13ec\u13e2\u13d4\u13c5\u13a9": 1105, "\u2581\u13d7\u13d3\u13c5\u13d9": 1106, "\u2581\u13a0\u13a8\u13f3\u13e3": 1107, "\u2581\u13f1\u13c4\u13cd\u13d7": 1108, "\u2581\u13d7\u13a8\u13eb": 1109, "\u2581\u13e7\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7\u13f1": 1110, "\u2581\u13a0\u13b9\u13f0\u13b5": 1111, "\u2581\u13a4\u13cd\u13a6\u13c3\u13b5": 1112, "\u2581\u13e5\u13c1\u13ac\u13a2": 1113, "\u2581\u13c2\u13e5": 1114, "\u2581\u13a0\u13e4": 1115, "\u2581\u13a4\u13f2\u13b1\u13d2\u13af": 1116, "\u2581\u13a8\u13c2": 1117, "\u2581\u13aa\u13a9": 1118, "\u2581\u13a2\u13ac": 1119, "\u2581\u13ab\u13e2\u13d7": 1120, "\u13af\u13cd\u13d9\u13d7": 1121, "\u13a0\u13c2\u13b3\u13cd\u13d3\u13b8": 1122, "\u13cd\u13d9": 1123, "\u2581\u13d7\u13a9": 1124, "\u2581\u13a7\u13c1\u13ac\u13a2": 1125, "\u13cd\u13ac\u13be": 1126, "\u2581\u13d1": 1127, "\u2581\u13da\u13c1\u13e4\u13b4": 1128, "\u2581\u13d7\u13a6\u13b8\u13c9\u13d7": 1129, "\u2581\u13be\u13c2\u13a5\u13c9": 1130, "\u2581\u13a0\u13b2\u13a2": 1131, "\u13c5\u13a2": 1132, "\u2581\u13da\u13d9\u13a5\u13a2": 1133, "\u13a8\u13d2": 1134, "\u2581\u13a0\u13e6\u13f4": 1135, "\u2581\u13d7\u13d3\u13b4\u13c2\u13cd\u13ac": 1136, "\u2581\u13a4\u13ec\u13b8": 1137, "\u2581\u13a3\u13cf": 1138, "t": 1139, "\u2581\u13d7\u13a6\u13ab\u13cd\u13db\u13d7": 1140, "\u2581\u13cd\u13c8\u13cd\u13d3": 1141, "\u2581\u13a0\u13cd\u13c6\u13a8\u13c2": 1142, "\u2581\u13b5\u13eb": 1143, "\u2581\u13a8\u13e5\u13c5\u13cf\u13d3\u13cd\u13d7": 1144, "\u2581\u13a7\u13c2\u13a9\u13d3": 1145, "\u2581\u13a6\u13ec\u13c2\u13cd\u13a9": 1146, "\u2581\u13da\u13ec\u13e2\u13c5\u13a9": 1147, "\u2581\u13a2\u13a9\u13d9\u13d3": 1148, "\u2581\u13be\u13cd\u13a6\u13c5\u13be": 1149, "\u2581\u13a4\u13d7\u13b4\u13a9": 1150, "\u2581\u13a7\u13c3\u13ae\u13cd\u13a9": 1151, "\u2581\u13cd\u13d4\u13ef": 1152, "\u2581\u13a4\u13be\u13c1\u13b3\u13a9": 1153, "\u2581\u13a2\u13f3\u13cd\u13d7\u13c9": 1154, "\u2581\u13a4\u13c5\u13cc": 1155, "\u2581\u13a0\u13e2\u13d7\u13f1": 1156, "\u2581\u13a6\u13b6\u13d9\u13d7": 1157, "\u13ec": 1158, "\u13d5\u13a2": 1159, "\u2581\u13a0\u13f2\u13a9": 1160, "\u2581\u13a4\u13d3\u13c5\u13d8\u13f3": 1161, "\u2581\u13a4\u13c2\u13e5": 1162, "\u2581\u13a4\u13c5\u13df": 1163, "\u2581\u13f1\u13d7\u13e5": 1164, "\u13d2\u13ad": 1165, "\u2581\u13a6\u13b6": 1166, "\u2581\u13a4\u13b5\u13cd\u13d7": 1167, "\u2581\u13a6\u13c5\u13af\u13db": 1168, "\u2581\u13d5\u13a8": 1169, "\u2581\u13c2\u13d3": 1170, "\u2581\u13a1\u13b2\u13a2": 1171, "\u2581\u13e5\u13d5": 1172, "\u2581\u13a4\u13d3\u13c5\u13d6": 1173, "\u13e4\u13a2": 1174, "\u2581\u13a0\u13cd\u13a6\u13be": 1175, "\u2581\u13f1\u13d7": 1176, "\u2581\u13c5\u13d3": 1177, "\u2581\u13d3\u13ac": 1178, "\u2581\u13a0\u13d4\u13b4\u13d2": 1179, "\u13a0\u13b4": 1180, "\u2581\u13eb\u13e3": 1181, "\u2581\u13e6\u13a9": 1182, "\u2581\u13d3\u13d3\u13bf\u13e9\u13cd\u13db": 1183, "\u2581\u13a4\u13c2\u13e3\u13d6": 1184, "\u2581\u13c2\u13da\u13a9\u13e8\u13c2\u13d2": 1185, "\u13da\u13b5\u13cd\u13ac\u13be": 1186, "\u2581\u13d3\u13c6\u13d9\u13a5": 1187, "\u2581\u13a2\u13a6\u13a6\u13db": 1188, "\u2581\u13d7\u13a7\u13c3\u13d7": 1189, "\u2581\u13e7\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7": 1190, "\u2581\u13e9\u13da\u13b5\u13cf": 1191, "\u2581\u13a6\u13b7\u13ef\u13cd\u13d7": 1192, "\u2581\u13aa\u13cd\u13da": 1193, "\u2581\u13e7\u13ef\u13d6\u13be": 1194, "\u13b4\u13af\u13d0\u13d7": 1195, "\u2581\u13e7\u13c3\u13f0\u13c2": 1196, "\u2581\u13d3\u13a6\u13b7\u13e5": 1197, "\u2581\u13c5\u13db\u13a9\u13c5\u13cf\u13db": 1198, "\u2581\u13c2\u13a6\u13ea\u13cd\u13a8\u13a2": 1199, "\u2581\u13a9": 1200, "\u2581\u13e7\u13c2\u13e2\u13a9": 1201, "\u2581\u13d7\u13c2\u13a6\u13d9\u13b5": 1202, "\u2581\u13be\u13ce\u13b5\u13d7": 1203, "\u2581\u13a0\u13a9\u13c5\u13cf\u13d9\u13af": 1204, "\u2581\u13af\u13b8\u13af\u13f3": 1205, "\u2581\u13ac\u13c2\u13d7\u13f3": 1206, "\u2581\u13a0\u13c2\u13a9\u13cf": 1207, "\u2581\u13a4\u13cd\u13c6\u13b8\u13b2": 1208, "\u2581\u13d7\u13a7\u13c3\u13d7\u13f1": 1209, "\u2581\u13a0\u13a9\u13cf": 1210, "\u2581\u13a4\u13c2\u13b7\u13e8\u13a9": 1211, "\u2581\u13ad\u13be\u13be": 1212, "\u2581\u13a4\u13e5\u13b8\u13a2": 1213, "\u13cd\u13c6": 1214, "\u2581\u13a0\u13bc": 1215, "\u2581\u13a2\u13a6\u13d8": 1216, "\u2581\u13ed\u13b7\u13e4\u13a2": 1217, "\u13c1\u13af": 1218, "\u13cd\u13c9": 1219, "\u2581\u13a2\u13ac\u13c1\u13d7": 1220, "\u13a0\u13cb\u13cc": 1221, "\u13a6\u13d4\u13b2\u13be": 1222, "\u2581\u13e9\u13ef": 1223, "\u13cd\u13ac\u13a9": 1224, "\u13a1\u13b5": 1225, "\u13c5\u13be": 1226, "\u13cd\u13a6\u13c5\u13a2\u13cd\u13d7": 1227, "\u2581\u13ae": 1228, "\u13a9\u13ce": 1229, "\u2581\u13a4\u13f2\u13a2": 1230, "\u2581\u13a4\u13cd\u13a6\u13c5\u13e8": 1231, "\u2581\u13e5\u13e3": 1232, "\u2581\u13a2\u13e4\u13be": 1233, "\u13e4\u13cd\u13d7": 1234, "\u2581\u13a0\u13b4\u13ec": 1235, "\u13b2\u13cf": 1236, "\u2581\u13a6\u13db\u13ac": 1237, "\u2581\u13a6\u13b3\u13a8\u13f4": 1238, "\u2581\u13d5\u13a6\u13da\u13b2": 1239, "\u2581\u13d7\u13a9\u13a6\u13f4\u13b5\u13a8": 1240, "\u2581\u13c2\u13e3\u13db\u13c1\u13b8": 1241, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 1242, "\u2581\u13a6\u13d3\u13c5\u13d6\u13cd\u13ac": 1243, "\u2581\u13da\u13be\u13d3\u13c5\u13db": 1244, "\u2581\u13a4\u13d5\u13c5": 1245, "\u2581\u13a0\u13aa": 1246, "\u2581\u13a6\u13c4\u13b8": 1247, "\u13f0\u13b5": 1248, "\u2581\u13c7\u13c2": 1249, "\u2581\u13e5\u13a6": 1250, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13d7": 1251, "\u2581\u13a2\u13e5\u13c8": 1252, "c": 1253, "\u2581\u13d7\u13be": 1254, "\u2581\u13a2\u13f3\u13e9\u13ab\u13d7": 1255, "\u2581\u13d2\u13a7\u13d4": 1256, "\u2581\u13a2\u13f3\u13d3\u13b4\u13a9": 1257, "\u2581\u13c4\u13c3\u13af\u13f3\u13d2\u13be": 1258, "\u2581\u13a2\u13e5\u13e1\u13f1": 1259, "\u2581\u13a6\u13b5\u13c6\u13cd\u13aa\u13af": 1260, "\u2581\u13da\u13d9\u13a1\u13a2": 1261, "\u2581\u13d9\u13b4\u13db": 1262, "\u2581\u13eb\u13e5\u13a2\u13a6": 1263, "\u2581\u13ce\u13b7": 1264, "\u2581\u13a0\u13c2\u13e3\u13b3\u13a9": 1265, "\u2581\u13a2\u13e4\u13ef\u13d4\u13ae\u13cd\u13d7": 1266, "\u2581\u13a4\u13cd\u13a6\u13ce\u13d7": 1267, "\u2581\u13a2\u13cc\u13ef": 1268, "\u2581\u13a2\u13d7\u13a6\u13d4\u13ad": 1269, "\u2581\u13c5\u13d3\u13f3\u13b5\u13cd\u13d9\u13d4\u13c5\u13a9": 1270, "\u2581\u13c4\u13ac\u13eb\u13f3\u13cc\u13d5\u13a9": 1271, "\u2581\u13a2\u13e8\u13f2\u13ce\u13ad": 1272, "\u2581\u13d7\u13b9\u13d7": 1273, "\u2581\u13a0\u13c2\u13aa\u13d5\u13cd\u13a9": 1274, "\u2581\u13a4\u13af\u13d0\u13d7": 1275, "\u2581\u13e7\u13d9\u13d3\u13c6\u13d3": 1276, "\u2581\u13be\u13c2\u13a5\u13a2": 1277, "\u13b5\u13a6": 1278, "\u2581\u13a0\u13cf\u13be\u13cc\u13c2": 1279, "\u2581\u13a0\u13ab\u13f4\u13d9\u13d7": 1280, "\u2581\u13d7\u13a6\u13aa\u13d7\u13f1": 1281, "\u2581\u13a6\u13be\u13f0\u13af\u13cd\u13d7": 1282, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13d2\u13af": 1283, "\u2581\u13a4\u13be\u13eb\u13f1": 1284, "\u2581\u13a0\u13c6\u13db\u13a6\u13c5\u13a9": 1285, "\u2581\u13d7\u13e6\u13e2\u13d7": 1286, "\u2581\u13a6\u13ec\u13c2\u13af\u13cd\u13d7": 1287, "\u2581\u13c1\u13b3": 1288, "\u13c1\u13b3\u13c5\u13af": 1289, "\u2581\u13ed\u13f4\u13b4\u13a2": 1290, "\u2581\u13e9\u13cd\u13d7": 1291, "\u2581\u13c9\u13b3\u13c3": 1292, "\u2581\u13e7\u13ea": 1293, "\u2581\u13a0\u13d7\u13ad": 1294, "\u2581\u13c2\u13d5": 1295, "\u2581\u13a4\u13ea\u13bf\u13a2": 1296, "\u2581\u13f4\u13a9": 1297, "\u2581\u13d7\u13e6": 1298, "\u2581\u13eb\u13a6": 1299, "\u2581\u13a2\u13e4\u13af": 1300, "\u2581\u13c5\u13db": 1301, "\u2581\u13a6\u13e5": 1302, "\u2581\u13c4\u13cd\u13db\u13a2": 1303, "\u2581\u13a1\u13d8": 1304, "\u13d7\u13cd\u13aa": 1305, "\u13c2\u13cf": 1306, "\u13a1\u13a2": 1307, "\u13a6\u13d8": 1308, "\u13d5\u13be": 1309, "\u2581\u13da\u13aa\u13ae": 1310, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13aa": 1311, "\u13a4\u13c1\u13b3\u13c5\u13af": 1312, "\u2581\u13a0\u13c2\u13c3\u13ae\u13cd\u13ac": 1313, "\u2581\u13e7\u13ea\u13c5\u13d2": 1314, "\u2581\u13a4\u13c3\u13f4\u13ac": 1315, "\u2581\u13d3\u13d3\u13c1\u13b8": 1316, "\u2581\u13af\u13ef": 1317, "\u13b2\u13cd\u13a9": 1318, "\u13c1\u13b3": 1319, "\u13b6\u13af": 1320, "\u13db\u13ac\u13a6": 1321, "\u2581\u13a1\u13c9\u13d7": 1322, "\u2581\u13a4\u13c2\u13ec\u13c2\u13af\u13cd\u13d7": 1323, "\u13be\u13dd\u13a2": 1324, "\u2581Cr": 1325, "\u2581\u13a2\u13f3\u13be\u13db\u13bf\u13d5\u13a9": 1326, "\u2581\u13cd\u13a6\u13da\u13a9": 1327, "\u2581\u13c2\u13e5\u13ea\u13ad": 1328, "\u2581\u13ce\u13a9\u13b5": 1329, "\u2581\u13e7\u13d3\u13d5\u13d2\u13db": 1330, "\u2581\u13d7\u13c2\u13ad\u13c4\u13b8\u13af": 1331, "\u2581\u13a1\u13c8\u13cc": 1332, "\u2581\u13d4\u13b7\u13e3": 1333, "\u2581\u13a0\u13e6\u13ad\u13f4": 1334, "\u2581\u13a0\u13a9\u13b5\u13ef": 1335, "\u2581\u13cc\u13aa\u13c2\u13a8": 1336, "\u2581\u13a2\u13b3\u13aa": 1337, "\u2581\u13cd\u13a9\u13c3\u13b2\u13cf": 1338, "\u2581\u13d7\u13aa\u13ea\u13b5\u13cd\u13a9": 1339, "\u2581\u13a4\u13e9\u13d9\u13af\u13f4\u13d3": 1340, "\u2581\u13a2\u13f3\u13d3\u13b4\u13c5\u13db": 1341, "\u2581\u13a4\u13c2\u13ac\u13eb\u13f3\u13cc\u13d5\u13a9": 1342, "\u2581\u13a2\u13f3\u13e9\u13c2\u13d0\u13d7\u13f1": 1343, "\u2581\u13a2\u13f3\u13e9\u13c1\u13d7\u13f1": 1344, "\u2581\u13d9\u13f0": 1345, "\u2581\u13a4\u13f0\u13af": 1346, "\u2581\u13a4\u13ec\u13d7\u13a8": 1347, "\u2581\u13d2\u13ae\u13f1\u13e3": 1348, "\u2581\u13a2\u13ac\u13c1\u13af": 1349, "\u2581\u13d3\u13ef\u13a2": 1350, "\u2581\u13be\u13cd\u13a9\u13c9": 1351, "\u2581\u13c6": 1352, "\u2581\u13a7\u13b8\u13a2": 1353, "\u13d9\u13a9": 1354, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 1355, "\u2581\u13da\u13be\u13d3\u13c5\u13db\u13a2": 1356, "\u13c1\u13b4\u13a2": 1357, "\u2581\u13a4\u13be\u13b5\u13a2": 1358, "\u13d4\u13c5\u13ad": 1359, "\u2581\u13c4\u13db\u13c1\u13b4\u13a2": 1360, "\u13d1\u13f4\u13be": 1361, "\u2581\u13a6\u13b8\u13b3\u13d7\u13f3": 1362, "\u2581\u13a4\u13be\u13d3\u13e1\u13ac\u13a2": 1363, "\u2581\u13e3\u13e4\u13b5\u13a6": 1364, "\u2581\u13a1\u13d3": 1365, "\u2581\u13a8\u13a6": 1366, "\u2581\u13aa\u13af\u13d3": 1367, "\u13c1\u13b8\u13a9": 1368, "\u2581\u13c2\u13a6\u13d7": 1369, "\u2581\u13f4\u13a6": 1370, "\u13c1\u13b2": 1371, "\u2581\u13a4\u13d3\u13c5\u13d6\u13d7": 1372, "\u2581\u13d7\u13a7\u13bf\u13e9\u13db\u13cd\u13d7\u13f1": 1373, "\u2581\u13f1\u13c2": 1374, "\u2581\u13ef\u13c6": 1375, "\u2581\u13d7\u13a6\u13d3": 1376, "\u2581\u13af\u13b8": 1377, "\u2581\u13be\u13cd\u13a9\u13f4": 1378, "\u2581\u13be\u13c2": 1379, "\u2581\u13a6\u13c3\u13b8\u13a5\u13cd\u13ac": 1380, "\u2581\u13a7\u13b3\u13e9\u13d7\u13d2": 1381, "\u13a6\u13d4\u13ad": 1382, "\u13a2\u13cd\u13d7": 1383, "\u2581\u13d7\u13a6\u13da\u13b2": 1384, "\u2581\u13a2\u13e6\u13af\u13f3\u13d2": 1385, "\u2581\u13a0\u13e4\u13b5\u13cd\u13db": 1386, "\u13e5\u13cc": 1387, "\u2581\u13a6\u13a8": 1388, "\u2581\u13a0\u13c3": 1389, "\u2581\u13a8\u13b3": 1390, "\u2581\u13ed\u13b6\u13d2": 1391, "\u2581\u13a0\u13c6\u13da\u13b5": 1392, "\u2581\u13a4\u13c5\u13d2\u13c9": 1393, "\u2581\u13a6\u13c1\u13cc\u13a2": 1394, "\u13cd\u13d4\u13c2": 1395, "\u2581\u13d9\u13af": 1396, "\u2581\u13cd\u13c6": 1397, "\u2581\u13e8\u13d7\u13d3\u13b4\u13b2\u13cd\u13a6": 1398, "\u2581\u13e7\u13d5\u13d8\u13f4\u13d3": 1399, "\u2581\u13d7\u13df\u13b6\u13cd\u13d4\u13c5\u13af": 1400, "\u2581\u13d7\u13d6\u13b5\u13d9": 1401, "\u2581\u13a4\u13aa\u13cf\u13d3": 1402, "\u2581\u13e6\u13d3\u13c2": 1403, "\u2581\u13a0\u13c2\u13eb\u13c5": 1404, "\u2581\u13f1\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13ad": 1405, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d9\u13d7\u13f1": 1406, "\u2581\u13a4\u13a6\u13be\u13cd\u13d3": 1407, "\u2581\u13e7\u13aa\u13b3": 1408, "\u2581\u13a2\u13ef\u13be\u13db\u13c1\u13af": 1409, "\u2581\u13ac\u13e9\u13df\u13cd\u13d7": 1410, "\u2581\u13a0\u13e5\u13cd\u13db": 1411, "\u2581\u13e7\u13cd\u13d7": 1412, "\u2581\u13aa\u13af\u13d7\u13f3": 1413, "\u2581\u13a0\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 1414, "\u2581\u13a4\u13da\u13b5\u13cd\u13a8\u13cd\u13d7": 1415, "\u2581\u13a4\u13da\u13b8\u13d7": 1416, "\u2581\u13a2\u13e3\u13e4\u13b5\u13a6": 1417, "\u2581\u13e3\u13c1\u13b3": 1418, "\u2581\u13a2\u13a6\u13a6\u13d8": 1419, "\u13c1\u13b5": 1420, "\u13aa\u13af": 1421, "\u2581\u13d7\u13c6\u13e4\u13b5\u13a6": 1422, "\u13db\u13a6": 1423, "\u2581\u13a1\u13b5\u13cd\u13d7": 1424, "\u2581\u13f1\u13ac": 1425, "\u13c9\u13c3": 1426, "\u2581\u13e7\u13d3\u13c3": 1427, "\u13d5\u13b5": 1428, "\u2581\u13d9\u13d3": 1429, "\u2581\u13a4\u13c2\u13e3\u13d4": 1430, "\u2581\u13a3\u13c2\u13f1": 1431, "\u2581\u13af\u13a0\u13cd\u13a9\u13c2": 1432, "\u13aa\u13d7": 1433, "\u2581\u13d7\u13c6": 1434, "\u13ad\u13c2": 1435, "\u2581\u13c3\u13e5": 1436, "\u13c1\u13ae\u13cd\u13d7": 1437, "\u2581\u13f1\u13e8": 1438, "\u2581\u13a0\u13d3\u13c1\u13b8\u13a2": 1439, "\u2581\u13ed\u13be": 1440, "\u2581\u13c4\u13ea\u13d2\u13a2": 1441, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c5\u13a2": 1442, "\u2581\u13ef\u13a9": 1443, "\u2581\u13be\u13be\u13db\u13c1\u13b2": 1444, "\u2581\u13de\u13a6": 1445, "\u2581\u13ac\u13e9\u13be": 1446, "\u13b7\u13a6": 1447, "\u2581\u13da\u13b3\u13cd\u13ac": 1448, "\u2581\u13a4\u13c1\u13e8\u13a2": 1449, "\u2581\u13eb\u13d3": 1450, "\u2581\u13a4\u13a8\u13d3\u13b5\u13f4": 1451, "\u2581\u13a4\u13c5\u13cf\u13f4": 1452, "\u2581\u13ed\u13ef\u13c5\u13ae": 1453, "\u13a9\u13b6": 1454, "\u2581\u13a0\u13be\u13a2\u13d2": 1455, "\u2581\u13a4\u13c2\u13b7\u13e8": 1456, "\u2581\u13d5\u13ad\u13b7\u13a8": 1457, "\u2581\u13a6\u13c5\u13c5": 1458, "\u2581\u13d5\u13a9": 1459, "\u2581\u13ed\u13b7\u13e8": 1460, "\u2581\u13e7\u13be\u13cd\u13d7": 1461, "\u2581\u13a4\u13d2\u13a2": 1462, "\u2581\u13d7\u13e5\u13be\u13eb": 1463, "\u2581\u13d0\u13d3\u13bb": 1464, "\u2581\u13d3\u13e3": 1465, "\u13cc\u13b3\u13d3": 1466, "\u2581\u13a4\u13b7\u13af\u13cd\u13d7": 1467, "\u2581\u13a4\u13c2\u13f4\u13cd\u13d7": 1468, "\u2581\u13a0\u13a6\u13d8\u13cf": 1469, "\u2581Perry": 1470, "\u2581\u13e7\u13a6\u13be\u13ee": 1471, "\u13da\u13d3\u13b4\u13cd\u13d9\u13d7": 1472, "\u2581\u13a5\u13f3\u13a9": 1473, "\u2581\u13a0\u13b5\u13cd\u13d4\u13f4\u13d7": 1474, "\u2581\u13a4\u13a9\u13e8\u13d3": 1475, "\u2581\u13a7\u13c2\u13a9\u13db": 1476, "\u2581\u13d7\u13d5\u13f2\u13d7": 1477, "\u2581\u13a4\u13be\u13f0\u13af\u13cd\u13d7": 1478, "\u2581\u13a4\u13eb\u13ef": 1479, "\u2581\u13a4\u13c2\u13a9\u13ac": 1480, "\u2581\u13a4\u13ec\u13e2\u13d4\u13c5\u13a9": 1481, "\u2581\u13e7\u13be\u13a9\u13b8\u13d7": 1482, "\u2581\u13d7\u13d3\u13d8\u13c2\u13d9\u13af": 1483, "\u2581\u13a4\u13c1\u13ab\u13e5\u13db": 1484, "\u2581\u13d7\u13aa": 1485, "\u2581\u13a0\u13c6\u13c1\u13b3\u13c5\u13af": 1486, "\u2581\u13a0\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5\u13af": 1487, "\u2581\u13f3\u13da\u13b5\u13cd\u13a8": 1488, "\u2581\u13a0\u13cd\u13da\u13d7": 1489, "\u2581\u13a8\u13b5\u13cd\u13ac": 1490, "\u2581\u13c2\u13d7\u13a5": 1491, "\u2581\u13da\u13d3\u13d8\u13be\u13a5\u13a2": 1492, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13ce\u13a2": 1493, "\u2581\u13a2\u13f3\u13be\u13db\u13c1\u13d7\u13f1": 1494, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13d7\u13f3": 1495, "\u2581\u13d3\u13c6": 1496, "\u2581\u13a3\u13cf\u13c9": 1497, "\u2581\u13c4\u13db\u13c1\u13b8\u13a9": 1498, "\u2581\u13a4\u13bf": 1499, "\u2581\u13d7\u13a8\u13d2\u13a2": 1500, "\u2581\u13f0": 1501, "\u2581\u13a4\u13be\u13b5\u13aa": 1502, "\u2581\u13a0\u13eb\u13c5": 1503, "\u13cd\u13d5\u13b8\u13d7": 1504, "\u2581\u13c2\u13a6\u13ea\u13cd\u13ac\u13a2": 1505, "\u13b4\u13c2": 1506, "\u2581\u13a0\u13a9\u13cd\u13d7": 1507, "\u13b5\u13cd\u13d9\u13d7": 1508, "\u13a1\u13af": 1509, "\u2581\u13a2\u13e7": 1510, "\u13b5\u13cd\u13d7": 1511, "\u2581\u13c5\u13a9\u13c1": 1512, "\u13a1\u13d7\u13f1": 1513, "\u2581\u13c1\u13b0": 1514, "\u2581\u13f3\u13be": 1515, "\u2581\u13be\u13a5\u13a2": 1516, "\u13cd\u13d4": 1517, "\u2581\u13a4\u13c1\u13e8\u13af": 1518, "n": 1519, "\u2581\u13a0\u13cf\u13f4\u13eb\u13c3": 1520, "\u2581\u13e3\u13be": 1521, "\u2581\u13eb\u13ac\u13e9": 1522, "\u2581\u13da\u13f3\u13aa\u13db\u13a2": 1523, "\u2581\u13a2\u13f3\u13a2": 1524, "\u13d7\u13cd\u13a8\u13a2": 1525, "\u2581\u13a4\u13e5\u13b8": 1526, "\u13b6\u13db": 1527, "\u2581\u13a4\u13ea\u13b5\u13af\u13cd\u13d7": 1528, "\u2581\u13a4\u13d5\u13c1\u13b8": 1529, "\u2581\u13a0\u13f0\u13d9\u13b3\u13db": 1530, "\u2581\u13a1\u13d9\u13b2": 1531, "\u13d7\u13f3": 1532, "\u2581\u13a0\u13be\u13d3": 1533, "\u2581\u13a4\u13d3\u13c2\u13b5\u13a8": 1534, "\u2581\u13a4\u13b5\u13c1\u13e8": 1535, "\u2581\u13d5\u13e1\u13ac": 1536, "\u2581\u13d3\u13c1\u13e9\u13d7\u13d2": 1537, "\u2581\u13d5\u13a8\u13cc\u13d7\u13d2": 1538, "\u2581\u13a4\u13d3\u13c5\u13d6\u13b4": 1539, "\u2581\u13a0\u13c6\u13da\u13b5\u13cd\u13ac": 1540, "\u2581\u13a4\u13d3\u13f4\u13cd\u13d7": 1541, "\u2581\u13b7\u13c8\u13c2": 1542, "\u2581\u13d7\u13c2\u13b5\u13a0\u13c5\u13af\u13db": 1543, "\u2581\u13a2\u13c8\u13ac\u13a2": 1544, "\u2581\u13b9\u13cf\u13d9\u13c2": 1545, "\u2581\u13de\u13a9\u13f3": 1546, "\u2581\u13a0\u13be\u13d3\u13c5\u13df": 1547, "\u2581\u13ac\u13d4\u13c2\u13d3\u13cd\u13d7": 1548, "\u2581\u13a0\u13aa\u13c4": 1549, "\u2581\u13cc\u13ba\u13b5\u13f1": 1550, "\u2581\u13a0\u13d9\u13b3\u13c5\u13cd\u13d7": 1551, "\u2581\u13a9\u13df": 1552, "\u2581\u13d7\u13a6\u13c5\u13d9\u13d7": 1553, "\u2581\u13a0\u13eb\u13c4\u13e3": 1554, "\u2581\u13a0\u13df\u13b6\u13cd\u13d7": 1555, "\u2581\u13a2\u13e8\u13d7\u13cd\u13a8\u13cd\u13d7": 1556, "\u2581\u13a2\u13f3\u13ea\u13c5\u13cd\u13d7": 1557, "\u2581\u13e7\u13cd\u13c6\u13c5\u13be": 1558, "\u2581\u13a1\u13cf\u13f1": 1559, "\u2581\u13a4\u13ec\u13da\u13af": 1560, "\u2581\u13a4\u13ec\u13da\u13af\u13f3": 1561, "\u2581\u13a0\u13e5\u13be\u13dd\u13a2": 1562, "\u2581\u13a4\u13b6\u13d2\u13cd\u13d7": 1563, "\u2581\u13e7\u13d3\u13b4\u13c5\u13d3": 1564, "\u2581\u13a0\u13d3\u13af": 1565, "\u2581\u13ce\u13b3\u13f1": 1566, "\u2581\u13a4\u13c2\u13f4\u13cd\u13d7\u13f1": 1567, "\u2581\u13d4\u13b5\u13e7\u13c8": 1568, "\u13a4\u13c5": 1569, "\u2581\u13a3\u13c1": 1570, "\u2581\u13da\u13ef": 1571, "\u2581\u13e4\u13ae\u13a2": 1572, "\u13b6\u13d7": 1573, "\u2581\u13a0\u13c1\u13ae\u13a2": 1574, "\u2581\u13da\u13b4\u13c1\u13a2": 1575, "\u2581\u13f0\u13ad": 1576, "\u2581\u13a0\u13c1\u13ad": 1577, "\u2581\u13d0\u13a2\u13f1": 1578, "\u2581\u13f1\u13d7\u13e3": 1579, "\u13be\u13cf": 1580, "\u13e8\u13af": 1581, "\u2581\u13a2\u13f3\u13be": 1582, "\u2581\u13a0\u13ac": 1583, "\u2581\u13d3\u13e8": 1584, "\u2581\u13a6\u13cd\u13a9\u13b8\u13a2": 1585, "\u2581\u13a0\u13e5\u13b8\u13c9\u13d7": 1586, "\u13cd\u13ca": 1587, "\u13cd\u13d7\u13cd\u13ac": 1588, "\u2581\u13a4\u13a8\u13f3\u13af": 1589, "\u2581\u13a2\u13d3": 1590, "\u2581\u13a4\u13ec\u13b5": 1591, "\u2581\u13d9\u13af\u13f1": 1592, "\u2581\u13a0\u13ce\u13a9": 1593, "\u2581\u13a0\u13dc": 1594, "\u13db\u13d7": 1595, "\u2581\u13da\u13b4\u13c1": 1596, "\u2581\u13a4\u13c1\u13c5\u13ce": 1597, "\u2581\u13a4\u13b8": 1598, "\u2581\u13d3\u13be\u13d3": 1599, "a": 1600, "\u13e0\u13be\u13cd\u13d7": 1601, "\u13db\u13af": 1602, "\u13b8\u13c9\u13d9\u13d7": 1603, "\u13db\u13ad": 1604, "\u13b8\u13c9\u13d7\u13f3": 1605, "\u2581\u13c5\u13d3\u13f3": 1606, "\u2581\u13a0\u13c2\u13d9\u13be\u13a5": 1607, "\u13c5\u13d2\u13a9": 1608, "\u2581\u13d4\u13b5\u13ad": 1609, "\u2581\u13c4\u13c2": 1610, "\u2581\u13d7\u13e3\u13d3\u13c5\u13d9": 1611, "\u2581\u13a1\u13d7": 1612, "\u2581\u13ac\u13c6": 1613, "\u13a0\u13ef": 1614, "\u2581\u13e8\u13cd\u13a9\u13c3": 1615, "\u2581\u13a4\u13f0\u13e4": 1616, "\u2581\u13a0\u13c6\u13a7\u13db": 1617, "\u2581\u13d3\u13e0\u13af\u13cd\u13db": 1618, "\u2581\u13a0\u13c1\u13d9\u13b2": 1619, "\u2581\u13ed\u13b6\u13ce": 1620, "\u2581\u13a0\u13be\u13db": 1621, "\u2581\u13a4\u13d3\u13c5\u13ce": 1622, "\u2581\u13d7\u13d3": 1623, "\u2581\u13d5\u13a6\u13b6\u13d7": 1624, "\u2581\u13cf\u13a9\u13bb": 1625, "\u2581\u13a0\u13e5\u13a6\u13d8\u13d7\u13cd\u13d7": 1626, "\u2581\u13a4\u13d3\u13c5": 1627, "\u2581\u13a4\u13cd\u13aa\u13b5": 1628, "\u2581\u13aa\u13ea\u13b3": 1629, "\u13d0\u13a2": 1630, "\u2581\u13a4\u13d5\u13b0\u13af\u13cd\u13d7": 1631, "\u2581\u13a2\u13f3\u13db\u13c1\u13d7": 1632, "y": 1633, "\u2581\u13a6\u13b7\u13ef\u13cd\u13d8": 1634, "\u2581\u13a2\u13cf\u13ba\u13b5": 1635, "\u2581\u13ac\u13e9\u13cd\u13d3\u13e9\u13db\u13ce\u13a2": 1636, "\u2581\u13a4\u13b5\u13d7\u13e8": 1637, "ett": 1638, "\u2581\u13c5\u13d3\u13f3\u13c2\u13b6\u13d2\u13af": 1639, "\u2581\u13d1\u13be\u13d9\u13d3\u13c6\u13cd\u13d7": 1640, "\u2581\u13a2\u13ef\u13c5\u13d9": 1641, "\u2581\u13d7\u13ac\u13d4\u13c2\u13d3\u13cd\u13d7": 1642, "\u2581\u13a2\u13a6\u13ea\u13cd\u13d7": 1643, "\u2581\u13c2\u13ac\u13e9\u13ea\u13ce\u13b8\u13a9": 1644, "\u2581\u13a4\u13d3\u13b5": 1645, "\u2581\u13d7\u13f0\u13d9\u13b3\u13db\u13d7": 1646, "\u2581\u13a0\u13d6\u13b5\u13d9": 1647, "\u2581\u13ad\u13e9\u13e7": 1648, "\u2581\u13da\u13d8\u13c5\u13ce": 1649, "\u2581\u13a4\u13b4\u13c2\u13d9\u13b8": 1650, "\u2581\u13d5\u13b9\u13cd\u13a6": 1651, "\u2581\u13a0\u13c2\u13a8\u13be\u13c2": 1652, "\u2581\u13a0\u13eb\u13d2\u13d7\u13f1": 1653, "\u2581\u13d7\u13cd\u13d3\u13d3\u13c5\u13df": 1654, "\u2581\u13a6\u13c2\u13a6\u13d4": 1655, "\u2581\u13e3\u13d3\u13b5\u13a2": 1656, "\u2581\u13a0\u13c2\u13a6\u13d3\u13ad": 1657, "\u2581\u13cc\u13be\u13f1": 1658, "\u2581\u13e5\u13da\u13d9\u13a5": 1659, "\u2581\u13a4\u13c1\u13b5\u13e4\u13a2": 1660, "\u2581\u13a4\u13be\u13c1\u13b3\u13c5\u13af": 1661, "\u2581\u13a0\u13aa\u13d9\u13d7": 1662, "\u2581\u13d9\u13f1\u13e8": 1663, "\u2581\u13a4\u13be\u13e0\u13be\u13cd\u13d7": 1664, "\u2581\u13d7\u13e6\u13e2\u13d9\u13d7": 1665, "\u2581\u13a4\u13be\u13f0\u13af\u13cd\u13d7\u13f3": 1666, "\u2581\u13ce\u13bb": 1667, "\u2581\u13a4\u13cf\u13e9": 1668, "\u2581\u13a4\u13ec\u13da\u13e8": 1669, "\u2581\u13ae\u13a6": 1670, "\u2581\u13c1\u13b2\u13be": 1671, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d3": 1672, "\u2581\u13f1\u13c2\u13a6\u13b5\u13cd\u13d3": 1673, "\u13a2\u13f3": 1674, "\u2581\u13a0\u13a9\u13f0\u13b8\u13ad": 1675, "\u2581\u13a4\u13c2\u13af\u13cd\u13d7\u13f1": 1676, "\u2581\u13a2\u13a8": 1677, "\u2581\u13eb\u13d7": 1678, "\u2581\u13a0\u13cd\u13aa\u13af\u13c1": 1679, "\u2581\u13a4\u13df\u13cd\u13d3": 1680, "\u2581\u13a2\u13ac\u13d3": 1681, "\u2581\u13a4\u13b7\u13af\u13cd\u13d7\u13f1": 1682, "\u2581\u13be\u13c2\u13ea\u13cd\u13ac\u13a9": 1683, "\u2581\u13c8\u13b3": 1684, "\u13e9\u13db\u13b2": 1685, "\u2581\u13a2\u13ac\u13d2": 1686, "\u2581\u13d7\u13c2\u13c5\u13cc\u13d7": 1687, "\u2581\u13a0\u13b1\u13cd\u13d5": 1688, "\u2581\u13a0\u13c1\u13a9": 1689, "\u13a8\u13f3\u13ce\u13cd\u13d7": 1690, "\u2581\u13a2\u13be": 1691, "\u2581\u13c4\u13be\u13db\u13c5\u13a2": 1692, "\u2581\u13d3\u13c1\u13e9\u13d7\u13d2\u13a2": 1693, "\u2581\u13d5\u13ad\u13b7\u13a8\u13a2": 1694, "\u2581\u13d9\u13a9": 1695, "\u13e0": 1696, "\u2581\u13a6\u13c2": 1697, "\u2581\u13d5\u13a6\u13db": 1698, "\u13c3\u13ae\u13ad": 1699, "\u2581\u13a8\u13f4\u13a2": 1700, "\u13a5\u13cd\u13ac": 1701, "\u13a5\u13a2": 1702, "\u13b3\u13c5\u13af": 1703, "\u13aa\u13b5\u13f0\u13cd\u13a9": 1704, "\u13e9\u13db\u13d7": 1705, "\u13d1": 1706, "\u2581\u13a0\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7": 1707, "\u2581\u13a0\u13d9": 1708, "\u2581\u13af\u13b3": 1709, "\u2581\u13a4\u13c2\u13c1": 1710, "\u2581\u13d7\u13e4": 1711, "\u2581\u13a4\u13c2\u13e0\u13f1": 1712, "\u13c9\u13f0\u13c3": 1713, "\u2581\u13d5\u13e3\u13d3": 1714, "\u2581\u13a4\u13be\u13d9\u13b4\u13b0\u13d2": 1715, "\u2581\u13a4\u13c7\u13d3\u13b8": 1716, "\u2581\u13d7\u13d7": 1717, "\u13a6\u13db": 1718, "\u2581\u13e3\u13c9": 1719, "\u13a1\u13ad": 1720, "\u2581\u13a6\u13e5\u13ef": 1721, "\u2581\u13d4\u13b5\u13c1\u13a2": 1722, "\u2581\u13e7\u13be\u13d3": 1723, "\u13c5\u13df": 1724, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 1725, "\u13bf": 1726, "\u2581\u13ef\u13be": 1727, "\u13b8\u13be": 1728, "\u2581\u13a6\u13c1\u13b2": 1729, "\u2581\u13a4\u13f4": 1730, "\u13b5\u13f1": 1731, "\u13db\u13c5": 1732, "\u2581\u13a4\u13da\u13b5\u13cd\u13a8": 1733, "\u2581\u13c1\u13b3\u13a9": 1734, "\u2581\u13d5\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 1735, "\u2581\u13ed\u13f4\u13b4": 1736, "\u13ef\u13d6\u13c5": 1737, "\u13b5\u13cd\u13c6\u13d7\u13cd\u13a9": 1738, "\u2581\u13d9\u13d3\u13b8": 1739, "\u2581\u13c4\u13be\u13db\u13c5": 1740, "\u2581\u13a1\u13ae": 1741, "\u2581\u13d7\u13c1\u13b2": 1742, "\u13b2\u13cd\u13ac": 1743, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7": 1744, "\u2581\u13a4\u13c1\u13b8": 1745, "\u13b1": 1746, "\u2581\u13a4\u13db\u13c1\u13a2": 1747, "\u2581\u13a0\u13be\u13d3\u13be\u13cf\u13c2\u13d9\u13af": 1748, "\u2581\u13ef\u13a6\u13d4\u13ae": 1749, "\u2581\u13a0\u13b5\u13f0\u13be": 1750, "\u2581\u13a6\u13e3\u13c4\u13b3": 1751, "\u2581\u13a0\u13e8\u13cd\u13d9\u13d7": 1752, "\u2581\u13e7\u13a6\u13d2\u13cd\u13d7": 1753, "\u2581\u13a2\u13ac\u13e9\u13b5\u13cd\u13d9\u13d7": 1754, "\u2581\u13a0\u13d2\u13ac": 1755, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d9\u13d7\u13f1": 1756, "\u2581\u13d7\u13e5\u13f2\u13b5": 1757, "\u2581\u13d7\u13c2\u13cf\u13d7": 1758, "\u2581\u13a0\u13e4\u13b7\u13a9": 1759, "\u2581\u13e5\u13c4\u13ea\u13ce\u13a2": 1760, "\u2581\u13a0\u13c2\u13a9\u13b7\u13eb": 1761, "\u2581\u13e7\u13b3\u13cf\u13d5\u13c2": 1762, "\u2581\u13a4\u13db": 1763, "\u2581\u13eb\u13a6\u13b7\u13a9": 1764, "\u2581\u13e5\u13cd\u13da": 1765, "\u2581\u13a4\u13be\u13b3\u13c5\u13af": 1766, "\u2581\u13d7\u13c2\u13f0\u13b8": 1767, "\u2581\u13c4\u13be\u13d3\u13b4\u13d2": 1768, "\u2581\u13ab\u13ab": 1769, "\u13ef\u13c5\u13db": 1770, "\u13b5\u13f0\u13a2\u13b6\u13af\u13cd\u13d7": 1771, "\u2581\u13a4\u13f2\u13b1\u13af\u13cd\u13d7\u13f1": 1772, "\u2581\u13a4\u13b5\u13cd\u13a8\u13db": 1773, "\u2581\u13cf\u13f2": 1774, "\u2581\u13ad\u13eb\u13c2\u13e8": 1775, "\u2581\u13a7\u13c3\u13ae\u13d7": 1776, "\u2581\u13a2\u13f3\u13cd\u13d8": 1777, "\u2581\u13a0\u13be\u13d3\u13c5\u13d6\u13cd\u13ac": 1778, "\u2581\u13da\u13be\u13d3": 1779, "\u2581\u13ab\u13b4": 1780, "\u2581\u13a4\u13c2\u13e3\u13db\u13a9": 1781, "\u2581\u13ed\u13c2\u13b6\u13ce\u13a2": 1782, "\u13a6\u13d9\u13c3": 1783, "\u2581\u13d7\u13a9\u13cf": 1784, "\u2581\u13a0\u13c6\u13da\u13b5\u13ad": 1785, "\u2581\u13a0\u13aa\u13e9\u13db\u13d7": 1786, "\u2581\u13d3\u13c5\u13c5": 1787, "\u2581\u13c2\u13aa\u13af\u13b8\u13be\u13c9": 1788, "\u2581\u13a4\u13f2\u13e8": 1789, "\u2581\u13d9\u13a6": 1790, "\u2581\u13e5\u13a8\u13f3\u13a2": 1791, "\u2581\u13f1\u13a8\u13d0\u13a2": 1792, "\u13b3\u13bb": 1793, "\u13f4\u13eb": 1794, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d9\u13d7": 1795, "\u2581\u13a8\u13b5\u13a0": 1796, "\u2581\u13a1\u13ae\u13cd\u13d7": 1797, "\u2581\u13a1\u13a9": 1798, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13a2": 1799, "\u2581\u13a0\u13c1": 1800, "\u2581\u13a0\u13c1\u13d9\u13b2\u13a2": 1801, "\u2581\u13a2\u13a6\u13e4\u13b5\u13a6": 1802, "\u2581\u13aa\u13a8": 1803, "\u2581\u13a1\u13d9\u13b2\u13a2": 1804, "\u2581\u13d7\u13c1\u13b2\u13a2": 1805, "\u2581\u13a4\u13d3\u13c5\u13c5": 1806, "\u2581\u13a0\u13d3\u13c1\u13d7": 1807, "\u2581\u13a0\u13d7": 1808, "\u2581\u13d0": 1809, "\u2581\u13a1\u13be": 1810, "\u2581\u13c2\u13d9\u13d3\u13f3": 1811, "\u2581\u13c2\u13aa\u13af\u13b8\u13be": 1812, "\u2581\u13a4\u13c2\u13b7\u13e4\u13a2": 1813, "\u2581\u13c2\u13e5\u13a5\u13a2": 1814, "\u13a6\u13d7\u13d3": 1815, "\u2581\u13e7\u13c5": 1816, "\u2581\u13cd\u13a9\u13ef": 1817, "\u2581\u13a0\u13c2\u13d0": 1818, "\u2581\u13a0\u13cb\u13d2\u13c9": 1819, "\u2581\u13e3\u13da": 1820, "\u2581\u13cc": 1821, "\u2581\u13f4\u13ac": 1822, "\u2581\u13e4\u13e3": 1823, "\u13e7\u13c8\u13cd\u13d7": 1824, "\u13b2\u13cd\u13a8\u13cd\u13d7": 1825, "\u2581\u13aa\u13af\u13cd\u13a9\u13c2": 1826, "\u13d9\u13b4\u13b0\u13af\u13cd\u13d7": 1827, "\u13e2\u13d9\u13d7": 1828, "\u13b3\u13d7": 1829, "\u13e3\u13d8": 1830, "\u2581\u13d5\u13ac\u13e9": 1831, "\u2581\u13da\u13ea": 1832, "\u13c2\u13b8": 1833, "\u2581\u13e7\u13be\u13c4\u13ec": 1834, "\u13b9": 1835, "\u2581\u13ce\u13b3": 1836, "\u13a6\u13b6\u13c1\u13db": 1837, "\u2581\u13a0\u13c6\u13db\u13a6\u13c5": 1838, "\u2581\u13a1\u13b3\u13ea": 1839, "\u2581\u13ce": 1840, "\u2581\u13d3\u13eb\u13d2": 1841, "\u2581\u13a2\u13f3\u13ea": 1842, "\u2581\u13ed\u13c2\u13b7\u13e8": 1843, "\u13e9\u13ac\u13d8": 1844, "\u2581\u13da\u13c1\u13b4": 1845, "\u2581\u13c4\u13db\u13c5": 1846, "\u13b5\u13cd\u13a6\u13cd\u13d9\u13db": 1847, "\u2581\u13a1\u13dd\u13ea": 1848, "\u2581\u13a4\u13d3\u13c5\u13db": 1849, "\u2581\u13d7\u13a7\u13c3\u13a9\u13cd\u13d7": 1850, "\u2581\u13a0\u13db\u13aa\u13d7": 1851, "\u2581\u13ac\u13cd\u13a6\u13a2\u13cd\u13d3\u13a9": 1852, "\u2581\u13a0\u13d7\u13c6\u13b8\u13d5\u13f2": 1853, "\u2581\u13c2\u13a6\u13c5\u13af\u13ce\u13cd\u13d7": 1854, "\u2581\u13a0\u13c2\u13cc\u13da\u13cf": 1855, "\u2581\u13c4\u13dc\u13cf\u13db\u13d2\u13be": 1856, "\u2581\u13cc\u13ef\u13c2": 1857, "\u2581\u13a4\u13b5\u13aa\u13b2\u13cd\u13d7": 1858, "\u2581\u13d7\u13c1\u13b6\u13d9\u13d7": 1859, "\u2581\u13e7\u13c3\u13d1\u13b6\u13e8\u13af": 1860, "\u2581\u13e5\u13d4\u13a6": 1861, "\u2581\u13a4\u13b6\u13d2\u13cd\u13d4\u13c5\u13af": 1862, "\u2581\u13e7\u13be\u13e6\u13af\u13cd\u13d7": 1863, "\u2581\u13a2\u13e8\u13d4\u13f2\u13ce\u13ad": 1864, "\u2581\u13e7\u13be\u13b3\u13cf\u13d5\u13c2": 1865, "\u2581\u13b3\u13cf\u13b3": 1866, "\u2581\u13a2\u13f3\u13d3\u13a8\u13db": 1867, "\u2581\u13a2\u13e3\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 1868, "\u2581\u13a2\u13a9\u13cd\u13d5\u13b5\u13cd\u13a9": 1869, "\u2581\u13be\u13db\u13c1\u13ae\u13cd\u13d7": 1870, "\u2581\u13a4\u13da\u13eb\u13db": 1871, "\u2581\u13eb\u13c2\u13a6\u13b5\u13cd\u13d3": 1872, "\u2581\u13eb\u13c4\u13d2\u13b8": 1873, "\u2581\u13a3\u13cc\u13c2": 1874, "\u2581\u13a3\u13a6\u13c1\u13b3\u13c5\u13af": 1875, "\u2581\u13a4\u13f4\u13e3": 1876, "\u2581\u13a4\u13be\u13b4\u13c5\u13ae": 1877, "\u2581\u13a6\u13f0\u13cc\u13d7": 1878, "\u2581\u13e4\u13c8": 1879, "\u2581\u13a0\u13a6\u13d8\u13ef": 1880, "\u2581\u13a0\u13c2\u13a6\u13d4\u13bf\u13a2": 1881, "\u2581\u13ac\u13aa\u13e9\u13db\u13d7": 1882, "\u2581\u13d7\u13ef\u13d6\u13be": 1883, "\u2581\u13a0\u13b5\u13ae\u13b5\u13cd\u13d7": 1884, "\u2581\u13a2\u13a6\u13ea\u13db": 1885, "\u2581\u13a4\u13b5\u13d1\u13eb\u13d3": 1886, "\u13ad\u13d7": 1887, "\u2581\u13a4\u13a6\u13c3\u13e9": 1888, "\u2581\u13e7\u13be\u13d3\u13b5\u13a2": 1889, "\u13db\u13f3\u13a8\u13d7": 1890, "\u2581\u13a2\u13f3\u13c5\u13c1\u13d7\u13f1": 1891, "\u2581\u13a2\u13be\u13d3": 1892, "\u2581\u13aa\u13a8\u13f1": 1893, "\u2581\u13a4\u13ec\u13e2\u13c5\u13af": 1894, "\u2581\u13a4\u13b4\u13eb\u13cd\u13d4\u13c5": 1895, "\u13d4\u13f2\u13ce\u13b4": 1896, "\u2581\u13a0\u13d3\u13c5\u13d6\u13d7": 1897, "\u2581\u13a2\u13cd\u13d7": 1898, "\u2581\u13e3\u13c1\u13ae\u13a2": 1899, "\u2581\u13e7\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7\u13f1": 1900, "\u2581\u13d7\u13a6\u13b5\u13a0\u13c5\u13af\u13db": 1901, "\u2581\u13c4\u13be\u13db\u13c1\u13b8\u13a9": 1902, "\u2581\u13da\u13f3\u13aa\u13d7": 1903, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13ce\u13a2": 1904, "\u2581\u13a0\u13e5\u13b8\u13a0\u13c1\u13b6\u13af": 1905, "\u2581\u13a4\u13d4\u13b7\u13a9\u13cd\u13a9": 1906, "\u2581\u13e5\u13e5": 1907, "\u2581\u13ac\u13e9\u13db\u13db\u13c1": 1908, "\u2581\u13ed\u13b6\u13d2\u13a9": 1909, "\u2581\u13a0\u13a6\u13d4\u13ad": 1910, "\u2581\u13a4\u13b5\u13cd\u13a8": 1911, "\u2581\u13e7\u13b5\u13a2": 1912, "\u2581\u13be\u13a5\u13c2\u13f3": 1913, "\u2581\u13a0\u13d3\u13f0\u13cd": 1914, "\u2581\u13d3\u13e0\u13af\u13cd\u13db\u13a2": 1915, "\u2581\u13d5\u13a8\u13cc\u13d7\u13d2\u13a2": 1916, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 1917, "\u2581\u13a4\u13c2\u13b5": 1918, "\u2581\u13ad\u13d3\u13c5\u13d6\u13cd\u13ac": 1919, "\u2581\u13a3\u13e3": 1920, "\u2581\u13cd\u13aa\u13af": 1921, "\u13d7\u13cd\u13a8": 1922, "\u13cc\u13d8": 1923, "\u2581\u13a4\u13c1\u13e4\u13b8\u13a9": 1924, "\u2581\u13a7\u13c1\u13a2\u13cd\u13d7": 1925, "\u13c5\u13cd\u13d7": 1926, "an": 1927, "\u13a6\u13d8\u13cd\u13d9\u13d7": 1928, "\u2581\u13d1\u13d3\u13b5\u13c1": 1929, "\u2581\u13a4\u13e3\u13db": 1930, "\u2581\u13f3\u13c2": 1931, "\u2581\u13d9\u13f3": 1932, "\u2581\u13d7\u13a8\u13e5": 1933, "\u2581\u13e5\u13ef": 1934, "\u13b5\u13cf": 1935, "\u2581\u13ac\u13d7\u13cd\u13ac\u13a2": 1936, "\u2581\u13d7\u13e3\u13d3": 1937, "\u13c3\u13af\u13ce\u13b8": 1938, "\u2581\u13a4\u13b4\u13c5": 1939, "\u2581\u13a0\u13f0\u13b8\u13d7": 1940, "\u2581\u13f3\u13e9": 1941, "\u2581\u13da\u13c5": 1942, "\u13b5\u13cd\u13d4\u13c5": 1943, "\u2581\u13a4\u13f0\u13b8\u13db\u13a2": 1944, "\u13cd\u13d4\u13c5\u13a9": 1945, "\u2581\u13a4\u13d5": 1946, "\u2581\u13a4\u13f2\u13c9": 1947, "\u13c1\u13e5": 1948, "\u2581\u13e4\u13a9": 1949, "\u13ab": 1950, "\u2581\u13aa\u13af\u13db": 1951, "\u2581\u13a0\u13d3\u13c5\u13d9\u13cd\u13a9\u13c2": 1952, "\u13af\u13ad": 1953, "\u13df\u13cd\u13d7": 1954, "\u2581\u13cd\u13a9\u13c3": 1955, "\u2581\u13af\u13a6\u13d4\u13ad": 1956, "\u2581\u13a4\u13ec": 1957, "\u2581---": 1958, "\u2581\u13a2\u13c5\u13af": 1959, "\u2581\u13f1\u13a8": 1960, "\u13c2\u13d7\u13f3": 1961, "\u2581\u13d9\u13d3\u13a6": 1962, "\u2581\u13ec": 1963, "\u2581\u13a4\u13ab\u13f4\u13d7": 1964, "\u2581\u13d1\u13be\u13b4\u13c3": 1965, "\u2581\u13e9\u13c1": 1966, "\u2581\u13d7\u13ac\u13e9\u13c2": 1967, "\u2581\u13e5\u13c5\u13cf\u13d3\u13cd\u13d7": 1968, "\u2581\u13c4\u13cd\u13db\u13be": 1969, "\u2581\u13e7\u13b5": 1970, "\u2581\u13a4\u13aa": 1971, "\u2581\u13db\u13be": 1972, "\u2581\u13e2": 1973, "\u2581\u13a0\u13c1\u13d9\u13ae": 1974, "\u2581\u13d5\u13a8\u13f4": 1975, "\u2581\u13be\u13d1\u13f4": 1976, "\u13aa\u13e9\u13db\u13d7": 1977, "\u2581\u13da\u13be\u13d3\u13e1\u13e9\u13d7\u13d2": 1978, "\u2581\u13af\u13c6": 1979, "\u2581\u13c5\u13c3": 1980, "\u2581\u13a4\u13c4\u13aa\u13e8": 1981, "\u2581\u13da\u13aa\u13b2": 1982, "\u2581\u13a6\u13c5\u13ac": 1983, "\u2581\u13a4\u13ea\u13d9\u13b8": 1984, "\u2581\u13a4\u13ea\u13c5\u13cd\u13d7": 1985, "\u2581\u13e5\u13ac": 1986, "\u2581\u13a0\u13d2\u13a8": 1987, "\u2581\u13a0\u13a9\u13be\u13eb": 1988, "\u2581\u13a4\u13f2\u13b1\u13af\u13cd\u13d7": 1989, "\u2581\u13a0\u13c7": 1990, "\u13c4\u13ae\u13db": 1991, "\u2581\u13c5\u13ec\u13d8": 1992, "\u2581\u13d1\u13d3\u13b4\u13a9": 1993, "\u2581\u13a6\u13c3\u13cd\u13a9\u13cd\u13a9": 1994, "\u2581\u13c0\u13be": 1995, "\u2581\u13cd\u13cf\u13c9\u13ef": 1996, "\u2581\u13d7\u13a6\u13d9\u13cc\u13d7\u13cd\u13d7\u13f1": 1997, "\u2581\u13d7\u13c2\u13a8\u13eb": 1998, "\u2581\u13cc\u13d9\u13c2": 1999, "\u2581\u13e7\u13be\u13e6\u13f4\u13cd\u13d7": 2000, "\u2581\u13ae\u13b3\u13c2": 2001, "\u2581\u13d7\u13aa\u13d2\u13d4\u13c5": 2002, "\u2581\u13be\u13a6\u13a5": 2003, "\u2581\u13a8\u13e3\u13cd\u13a6\u13a9": 2004, "\u2581\u13a0\u13c9\u13f0\u13c2": 2005, "\u2581\u13a6\u13da\u13a2\u13d7\u13e2": 2006, "\u2581\u13c7\u13cd\u13d3": 2007, "\u2581\u13d7\u13c2\u13b0\u13b5": 2008, "\u2581\u13cd\u13d7\u13eb": 2009, "\u2581\u13cc\u13ca": 2010, "\u2581\u13da\u13d1\u13ac": 2011, "\u2581\u13a4\u13a7\u13f2\u13db\u13af": 2012, "\u2581\u13c1\u13c2\u13cf": 2013, "\u2581\u13a8\u13a6\u13d1\u13f0\u13db": 2014, "\u2581\u13a0\u13c2\u13a6\u13d4\u13be\u13a2": 2015, "\u2581\u13da\u13a6\u13d2\u13cd\u13db": 2016, "\u2581\u13d7\u13cd\u13c6\u13be\u13b3\u13d7\u13cd\u13d7": 2017, "\u2581\u13c4\u13cd\u13d7\u13d3\u13c5": 2018, "\u2581\u13d7\u13b3\u13d1\u13b6": 2019, "\u2581\u13a2\u13f3\u13d3\u13c5\u13af\u13d3": 2020, "\u2581\u13ac\u13a9\u13cd\u13a6\u13a9": 2021, "\u2581\u13a3\u13e5\u13a6\u13d4\u13ad": 2022, "\u2581\u13a4\u13d5\u13b6\u13b0\u13ce": 2023, "\u2581\u13e9\u13db\u13ac\u13a6": 2024, "\u2581\u13a2\u13e5\u13ef\u13eb\u13cd\u13a8\u13cd\u13d7": 2025, "\u2581\u13a3\u13ad\u13c2": 2026, "\u13aa\u13e3\u13b4\u13db": 2027, "\u2581\u13a0\u13c2\u13a9\u13cf\u13d9\u13af": 2028, "\u2581\u13a8\u13c6\u13c2": 2029, "\u2581\u13a0\u13c2\u13a6\u13d4\u13af": 2030, "\u2581\u13d7\u13e5\u13b6\u13cd\u13d4\u13c5": 2031, "\u2581\u13a2\u13e5\u13c5\u13df": 2032, "\u2581\u13a4\u13d3\u13c5\u13d6\u13b8": 2033, "\u2581\u13a0\u13cd\u13a6\u13f0\u13ac\u13cd\u13d4": 2034, "\u2581\u13e5\u13ae\u13be": 2035, "\u2581\u13eb\u13b6\u13af": 2036, "\u2581\u13a4\u13d9\u13b4\u13b0\u13ce": 2037, "\u2581\u13a4\u13ea\u13b7\u13c5\u13a9": 2038, "\u2581\u13c4\u13d5\u13d8\u13f4\u13ae\u13a2": 2039, "\u13c1\u13b2\u13a2": 2040, "\u2581\u13d3\u13f3\u13b6\u13d2": 2041, "\u2581\u13c2\u13a6\u13da": 2042, "\u2581\u13a4\u13e4": 2043, "\u2581\u13da\u13a7\u13be\u13c1": 2044, "\u2581\u13a4\u13db\u13d0\u13c5\u13af": 2045, "\u2581\u13a4\u13c1\u13b7\u13c1\u13a2": 2046, "\u2581\u13a2\u13e5\u13cd\u13a6\u13c5\u13e8\u13a2": 2047, "\u2581\u13aa\u13e2\u13c5\u13af": 2048, "\u2581\u13ef\u13c2": 2049, "\u2581\u13a4\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 2050, "\u2581\u13a4\u13d3\u13c5\u13d2\u13a9": 2051, "\u2581\u13a0\u13e7\u13cf": 2052, "\u13a0\u13ce\u13c3": 2053, "\u2581\u13d5\u13a6\u13b6\u13d7\u13af": 2054, "\u2581\u13a0\u13a9\u13aa\u13b2\u13a9": 2055, "\u2581\u13a4\u13d3\u13d4\u13c5\u13af": 2056, "\u2581\u13d3\u13a7\u13c5\u13a2": 2057, "\u2581\u13d3\u13d3": 2058, "\u2581\u13ac\u13e9\u13b7\u13e4\u13b8\u13a9": 2059, "\u2581\u13aa\u13e2\u13d2\u13a2": 2060, "\u2581\u13a1\u13b3\u13d7\u13e3": 2061, "\u13bf\u13a8": 2062, "\u2581\u13a2\u13e7\u13e9\u13c1": 2063, "\u2581\u13a4\u13c4\u13aa\u13e4": 2064, "\u13d7\u13cd\u13aa\u13a2": 2065, "\u2581\u13a0\u13e5\u13b8\u13a8\u13b6\u13af": 2066, "\u2581\u13a1\u13d9\u13af": 2067, "\u2581\u13d3\u13ac\u13be": 2068, "\u13b6\u13a2": 2069, "\u2581\u13a0\u13c1\u13b3": 2070, "\u2581\u13a8\u13be\u13c2\u13f1": 2071, "\u2581\u13da\u13be\u13d3\u13e1\u13e9\u13d7\u13d2\u13a2": 2072, "\u2581\u13a4\u13c1\u13b3\u13c5\u13af\u13f1": 2073, "\u2581\u13a4\u13c2\u13cd\u13a6\u13c5\u13e8\u13af": 2074, "\u13cc\u13c2": 2075, "\u13ee": 2076, "\u2581\u13a4\u13be\u13d3\u13d1\u13f4": 2077, "\u2581\u13aa\u13e3\u13b4\u13db": 2078, "\u2581\u13ae\u13d7": 2079, "\u2581\u13a4\u13cd\u13d8\u13f0\u13ac": 2080, "\u2581\u13e5\u13aa\u13a8": 2081, "\u2581\u13e3\u13c2\u13c3": 2082, "\u13d9\u13d3": 2083, "\u13d6\u13b8\u13d7": 2084, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 2085, "\u13d3\u13e5": 2086, "\u2581\u13a0\u13d4\u13b4\u13d2\u13a2": 2087, "\u13b8\u13d7": 2088, "\u2581\u13c2\u13a6\u13ea\u13cd\u13ac\u13a9": 2089, "\u13b5\u13d3\u13cd\u13d7": 2090, "\u13d5\u13a9": 2091, "\u2581\u13f1\u13a6\u13a9": 2092, "\u2581\u13a4\u13aa\u13ae\u13a2": 2093, "\u2581\u13e1\u13ac\u13a2": 2094, "\u2581\u13a4\u13b4": 2095, "\u2581\u13a4\u13e3": 2096, "\u2581\u13d9\u13d7": 2097, "\u2581\u13a0\u13cd\u13a6": 2098, "\u2581\u13a4\u13f2\u13b1\u13d2\u13a2": 2099, "\u2581\u13d3\u13f0": 2100, "\u2581\u13a1\u13b3": 2101, "\u2581\u13bb": 2102, "\u13f4\u13d3": 2103, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8\u13af": 2104, "\u2581\u13a0\u13c2\u13c2": 2105, "\u2581\u13e5\u13d3\u13c2": 2106, "\u2581\u13a4\u13e9\u13db\u13d7": 2107, "\u13da\u13a6": 2108, "\u13b4\u13ad": 2109, "\u2581\u13e5\u13f4": 2110, "\u13e3\u13d3": 2111, "\u13b7\u13e5\u13cf": 2112, "\u13d6\u13cd\u13d7": 2113, "\u2581\u13a4\u13c4\u13ec": 2114, "\u2581\u13a4\u13c2\u13c1\u13e8": 2115, "\u13a5\u13be": 2116, "\u2581\u13a6\u13be": 2117, "\u13d3\u13d1\u13ef": 2118, "\u13c5\u13ce": 2119, "\u13d3\u13c2\u13b8\u13e8\u13af": 2120, "\u2581\u13a2\u13cd": 2121, "\u13d7\u13e3": 2122, "\u2581\u13f1\u13ac\u13e9": 2123, "\u2581\u13a4\u13e6": 2124, "\u2581\u13a6\u13c1": 2125, "\u2581\u13cf\u13bb\u13ef\u13c2": 2126, "\u13ce\u13b8": 2127, "\u2581\u13aa\u13af\u13f3\u13d7\u13cd\u13a9": 2128, "\u13e4\u13b5": 2129, "\u2581\u13a0\u13af\u13d7": 2130, "\u2581\u13a3\u13a6\u13e4\u13b5": 2131, "\u13c1\u13b6\u13d7": 2132, "\u2581\u13a6\u13db": 2133, "\u13d2\u13c5": 2134, "\u2581\u13c2\u13ac\u13c1": 2135, "\u2581\u13a7\u13c3\u13ae\u13cd\u13ac": 2136, "\u2581\u13c4\u13be\u13db\u13c1\u13b8": 2137, "\u2581\u13a0\u13cd\u13d3": 2138, "\u2581\u13a0\u13c5\u13d7\u13cd\u13ac": 2139, "\u2581\u13a4\u13dc\u13c5\u13db": 2140, "\u2581\u13a4\u13bf\u13e5": 2141, "\u2581\u13eb\u13da\u13ef\u13c5\u13ae": 2142, "\u2581\u13a0\u13e8\u13ef": 2143, "\u2581\u13a0\u13c2\u13c1\u13ac": 2144, "\u2581\u13a4\u13be\u13da\u13b5\u13cd\u13ac": 2145, "\u2581\u13a4\u13c2\u13a9\u13ce": 2146, "\u13a5\u13af\u13cd\u13d7": 2147, "\u2581\u13aa\u13f1\u13c1": 2148, "\u2581\u13da\u13b8\u13cc\u13db": 2149, "\u2581\u13a0\u13c7\u13b5\u13d2": 2150, "\u2581\u13c2\u13da\u13e9\u13c1\u13b8": 2151, "\u2581\u13a4\u13ea\u13c5\u13d2": 2152, "\u13ac\u13ad\u13b7\u13f4": 2153, "\u2581\u13e5\u13c1\u13ac": 2154, "\u2581\u13a0\u13f4\u13eb\u13ef": 2155, "\u13b8\u13cc\u13db": 2156, "\u2581\u13a2\u13e8\u13ef": 2157, "\u2581\u13f1\u13e5\u13a6\u13d4": 2158, "\u13b6\u13d2": 2159, "\u2581\u13eb\u13ac": 2160, "\u2581\u13a2\u13ef\u13c6\u13db\u13c1\u13d7": 2161, "\u2581\u13c2\u13e8\u13c1\u13b8": 2162, "\u2581\u13a4\u13c1\u13d3\u13cd\u13d7": 2163, "\u2581\u13d7\u13a6\u13aa\u13d7": 2164, "\u2581\u13a0\u13c1\u13b5\u13cd\u13a8": 2165, "\u2581\u13a1\u13b3\u13c2\u13ac": 2166, "\u2581\u13a4\u13e9\u13db\u13b2": 2167, "\u2581\u13a4\u13b5\u13ec\u13e8": 2168, "\u2581\u13a0\u13c2\u13e9\u13e5\u13c2": 2169, "\u2581\u13a6\u13b3\u13b1\u13c2": 2170, "\u2581\u13d5\u13a6\u13b3\u13eb\u13a5": 2171, "\u2581\u13e7\u13d3\u13bf\u13e9\u13db": 2172, "\u2581\u13a2\u13c6\u13b6\u13c2": 2173, "\u2581\u13be\u13aa\u13d4\u13c5\u13be": 2174, "\u2581\u13da\u13be\u13a7\u13db": 2175, "\u2581\u13d7\u13c2\u13ec\u13c2\u13cd\u13a9": 2176, "\u2581\u13e3\u13d4\u13a6": 2177, "\u2581\u13a4\u13d9\u13b4\u13b0\u13af\u13cd\u13d7\u13f1": 2178, "\u2581\u13da\u13c3\u13e2\u13d4\u13c5\u13a9": 2179, "\u2581\u13a2\u13d5\u13af": 2180, "\u2581\u13c4\u13d3\u13b5\u13d3\u13cd\u13db\u13be": 2181, "\u2581\u13d7\u13a8\u13e5\u13a4\u13cd\u13d5\u13ce\u13b8\u13af": 2182, "\u2581\u13c5\u13d3\u13a6\u13b5\u13cd\u13d9\u13d3": 2183, "\u2581\u13d7\u13c2\u13cd\u13aa\u13b5": 2184, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d4\u13c2\u13d9\u13b2": 2185, "\u2581\u13a6\u13c2\u13d3\u13db": 2186, "\u2581\u13cd\u13aa\u13ef": 2187, "\u2581\u13e7\u13c6\u13b6\u13ac": 2188, "\u2581\u13c2\u13e3\u13db\u13c1\u13ae\u13cd\u13d7": 2189, "\u2581\u13be\u13b5\u13cd\u13c6\u13d7\u13cd\u13ac\u13be": 2190, "\u2581\u13a2\u13e5\u13f0\u13b8\u13ce\u13cd\u13d7": 2191, "\u2581\u13a2\u13e3\u13c5\u13d6\u13cd\u13d7": 2192, "\u2581\u13a4\u13ec\u13d1\u13b6\u13e8\u13af": 2193, "\u2581\u13a5\u13a9\u13c5\u13cf\u13db": 2194, "\u2581\u13a0\u13c2\u13c3\u13cd\u13a9\u13cd\u13a9": 2195, "\u2581\u13d7\u13d3\u13ec\u13cd\u13a9": 2196, "\u2581\u13d3\u13ac\u13e9": 2197, "\u2581\u13a2\u13f3\u13d5\u13d8\u13f4\u13d3": 2198, "\u2581\u13a2\u13e7\u13b3\u13d7\u13e2": 2199, "\u2581\u13af\u13cd\u13a6\u13ef": 2200, "\u2581\u13a2\u13e5\u13a6\u13d4\u13ae\u13cd\u13d7": 2201, "\u2581\u13a1\u13c2\u13d7": 2202, "\u2581\u13c2\u13da\u13be\u13d3\u13ea\u13ce\u13b4\u13a2": 2203, "\u2581\u13a0\u13cc\u13c5\u13d9\u13d7": 2204, "\u2581\u13d7\u13d1\u13e2\u13db": 2205, "\u2581\u13a3\u13c2\u13d7\u13e2": 2206, "\u2581\u13c5\u13d3\u13a6\u13b5\u13cd\u13d9\u13d4\u13c2": 2207, "\u2581\u13a0\u13b5\u13e5\u13d9\u13b2\u13cd\u13a9": 2208, "\u2581\u13a2\u13ef\u13cd\u13d8": 2209, "\u2581\u13a1\u13c8\u13b5": 2210, "\u2581\u13a2\u13e5\u13a6\u13d9\u13a5\u13af\u13cd\u13d7\u13f1": 2211, "\u2581\u13e7\u13be\u13b5\u13c2\u13a9\u13db": 2212, "\u2581\u13a0\u13a6\u13ef\u13b7\u13d7": 2213, "\u2581\u13a0\u13e5\u13a4\u13cd\u13d5\u13ce\u13b8\u13af": 2214, "\u2581\u13aa\u13af\u13f3\u13b2\u13cd\u13a9": 2215, "\u2581\u13c2\u13ac\u13ea\u13ce\u13ad": 2216, "\u2581\u13e3\u13d3\u13c5\u13d9": 2217, "\u2581\u13e7\u13cd\u13aa\u13b5": 2218, "\u2581\u13a6\u13be\u13cd\u13d3": 2219, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d4\u13c5\u13ad": 2220, "\u2581\u13c5\u13e7\u13b5\u13cd\u13d9\u13d4\u13c5": 2221, "\u2581\u13cd\u13a9\u13d9\u13b5\u13a9": 2222, "\u2581\u13a4\u13d5\u13b5\u13d2": 2223, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d4\u13c5\u13af": 2224, "\u2581\u13a4\u13b5\u13cd\u13d7\u13f3": 2225, "\u2581\u13e7\u13c2\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 2226, "\u2581\u13a2\u13d5\u13be": 2227, "\u2581\u13d3\u13d3\u13cf": 2228, "\u2581\u13a0\u13a6\u13d4\u13bf\u13a2": 2229, "\u2581\u13a0\u13c6\u13b5\u13cf": 2230, "\u2581\u13da\u13e0\u13f1\u13b4\u13a2": 2231, "\u2581\u13a4\u13cd\u13c6\u13db": 2232, "\u2581\u13a2\u13ef\u13c6\u13db\u13c1\u13d7\u13f1": 2233, "\u2581\u13a2\u13d3\u13b5": 2234, "\u2581\u13b9\u13d7": 2235, "\u2581\u13a4\u13ea\u13d7\u13f1": 2236, "\u2581\u13a8\u13a5\u13a2": 2237, "\u2581\u13a4\u13df\u13c2\u13a9\u13d3": 2238, "\u13b7\u13e4\u13d7\u13f1": 2239, "\u2581\u13a4\u13c2\u13a9\u13d2\u13a9": 2240, "\u2581\u13d8\u13b5": 2241, "\u2581\u13a1\u13d8\u13f4": 2242, "\u2581\u13a4\u13be\u13db\u13c1\u13a2": 2243, "\u2581\u13a4\u13e9\u13c5": 2244, "\u2581\u13b9\u13a9": 2245, "\u2581\u13c2\u13da\u13e9\u13c1\u13b8\u13a9": 2246, "\u2581\u13c4\u13be\u13cd\u13d7": 2247, "\u2581\u13e7\u13c2\u13be\u13eb\u13f1": 2248, "\u2581\u13eb\u13da\u13c2": 2249, "\u2581\u13e7\u13d3\u13c5\u13db\u13a2": 2250, "\u2581\u13ac\u13e9\u13aa\u13b2": 2251, "\u2581\u13ed\u13c2\u13b7\u13e4\u13a2": 2252, "\u2581\u13a8\u13d9\u13b2": 2253, "\u13e2\u13d7": 2254, "\u2581\u13a8\u13c2\u13d7": 2255, "\u2581\u13c2\u13d9": 2256, "\u13c3\u13c1\u13b8\u13a9": 2257, "\u13d3\u13e1\u13ac": 2258, "\u2581\u13c8": 2259, "\u2581\u13c2\u13eb": 2260, "\u2581\u13ef\u13c6\u13da\u13b5": 2261, "\u2581\u13a0\u13c6\u13b5": 2262, "\u2581\u13a4\u13e3\u13d6": 2263, "\u2581\u13ad\u13b5": 2264, "\u2581\u13f1\u13b0": 2265, "\u2581\u13af\u13b8\u13af": 2266, "\u2581\u13a6\u13db\u13ac\u13a2": 2267, "\u13c1\u13cd\u13a8": 2268, "\u2581\u13a4\u13aa\u13b2\u13af": 2269, "\u2581\u13a8\u13d3\u13b5": 2270, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d7": 2271, "\u2581\u13a4\u13ad\u13a8": 2272, "\u13d9\u13a5": 2273, "\u2581\u13c4\u13db\u13c1\u13b8\u13a2": 2274, "\u13a1\u13cd\u13d7": 2275, "\u13d3\u13c5": 2276, "\u13c3\u13b2\u13cf": 2277, "\u13d9\u13b5\u13cd\u13d7": 2278, "\u2581\u13a4\u13e9\u13a8\u13eb": 2279, "\u13cd\u13c6\u13c2\u13aa\u13d7": 2280, "\u13ab\u13f4\u13d9\u13d7": 2281, "\u13ea\u13e8\u13af": 2282, "\u2581\u13a4\u13b4\u13c5\u13b2": 2283, "\u2581\u13e7\u13ea\u13d8": 2284, "\u2581\u13a4\u13ef": 2285, "\u2581\u13d7\u13ac\u13d9\u13d7": 2286, "\u13c5\u13ad": 2287, "\u2581\u13a0\u13a9\u13ad": 2288, "\u2581\u13af\u13be": 2289, "\u13d3\u13cf": 2290, "\u13e9\u13db\u13ae": 2291, "\u2581\u13a0\u13a6\u13db": 2292, "\u2581\u13d3\u13e5\u13ef": 2293, "\u2581\u13a4\u13d4\u13c5": 2294, "\u13a0\u13ef\u13d7": 2295, "\u2581\u13a4\u13d9\u13d3\u13c3": 2296, "\u13c2\u13d2": 2297, "\u13c5\u13cf\u13d9\u13af": 2298, "\u13cd\u13d5\u13cd\u13d7": 2299, "\u2581\u13a4\u13db\u13c5\u13a9": 2300, "\u2581\u13a8\u13b6\u13af": 2301, "\u2581\u13ed\u13c2\u13b7\u13e4": 2302, "\u13c1\u13b8\u13d4\u13c5": 2303, "\u2581\u13c4\u13d3": 2304, "\u2581\u13c2\u13e3\u13db\u13c5\u13a2": 2305, "\u13e7\u13cf": 2306, "\u13a4\u13d9\u13af\u13f3": 2307, "\u13d3\u13c1\u13b8": 2308, "\u13d9\u13b5": 2309, "\u13f4\u13ad": 2310, "\u13d0\u13c5": 2311, "\u13a9\u13cd\u13a8\u13cd\u13d7": 2312, "\u13a5\u13dd": 2313, "\u13d3\u13c5\u13a6\u13b8\u13db": 2314, "\u2581\u13a0\u13c2\u13c1": 2315, "\u2581\u13a0\u13cd\u13a6\u13c5\u13e8": 2316, "\u13d3\u13b6\u13c2\u13a8": 2317, "\u2581\u13be\u13c6\u13db\u13c1\u13b8": 2318, "\u13d4\u13b7\u13a9\u13cd\u13a9": 2319, "\u13a8\u13b3\u13cd\u13d7": 2320, "\u13da\u13b5": 2321, "\u2581\u13a0\u13a9\u13c1\u13e8": 2322, "\u2581\u13a0\u13d3\u13c5\u13d6\u13cd\u13a8": 2323, "\u2581\u13a1\u13b5\u13cd\u13a8": 2324, "\u2581\u13eb\u13a6\u13c5\u13c5": 2325, "\u2581\u13a0\u13c2\u13e8\u13ef": 2326, "\u2581\u13a0\u13d3\u13ef": 2327, "\u2581\u13a4\u13a9\u13e8\u13c5": 2328, "\u2581\u13a4\u13b5\u13c2\u13ac\u13ac": 2329, "\u2581\u13d5\u13a6\u13c5\u13c5": 2330, "\u2581\u13d7\u13e4\u13b2": 2331, "\u2581\u13a5\u13d3\u13b8": 2332, "\u13a9\u13af": 2333, "\u13a2\u13f3\u13be\u13cd\u13d7": 2334, "\u2581\u13a4\u13c2\u13c3\u13ae\u13b8": 2335, "\u2581\u13e3\u13a7\u13db": 2336, "\u2581\u13a6\u13f0\u13cc\u13db": 2337, "\u2581\u13ac\u13e9\u13b7\u13e4\u13b4": 2338, "\u2581\u13d7\u13d3\u13c1\u13b8": 2339, "\u2581\u13c2\u13e3\u13db\u13c5": 2340, "\u2581\u13a4\u13f0\u13b8\u13c1": 2341, "\u13ce\u13d7": 2342, "\u2581\u13a4\u13bf\u13a5": 2343, "\u2581\u13d7\u13e5\u13f0\u13b8": 2344, "\u2581\u13e5\u13d9\u13ac": 2345, "\u2581\u13eb\u13da\u13ef\u13c5\u13b2": 2346, "\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 2347, "\u2581\u13a0\u13cd\u13da\u13b2": 2348, "\u13c5\u13d3": 2349, "\u2581\u13ac\u13e9\u13b7\u13e4\u13b8": 2350, "\u2581\u13c2\u13aa": 2351, "\u2581\u13a0\u13c2\u13c3\u13af\u13b5\u13d9": 2352, "\u2581\u13d7\u13c4\u13aa\u13d7\u13cd\u13a9": 2353, "\u2581\u13a2\u13ac\u13e9\u13c1\u13d7": 2354, "\u2581\u13a0\u13e5\u13a2\u13cd\u13d7": 2355, "\u2581\u13f1\u13d9": 2356, "\u2581\u13a0\u13c1\u13b5\u13cd\u13ac": 2357, "\u13d4\u13c5\u13a2": 2358, "\u2581\u13da\u13c5\u13ce": 2359, "\u2581\u13a0\u13f0\u13b2": 2360, "\u2581\u13c2\u13d3\u13aa\u13d4\u13c5\u13be": 2361, "\u2581\u13a1\u13a9\u13b5\u13c8": 2362, "\u2581\u13a2\u13d7\u13cd\u13d3\u13d3\u13b3": 2363, "\u2581\u13a2\u13ef\u13ac\u13c1\u13b8\u13af": 2364, "\u2581\u13cc\u13ec\u13da": 2365, "\u2581Chap": 2366, "\u2581\u13a0\u13c2\u13c8\u13b5\u13cd\u13d7": 2367, "\u2581\u13cc\u13f1\u13b3": 2368, "\u2581\u13a0\u13f0\u13b3\u13cd\u13d8": 2369, "\u2581\u13da\u13a7\u13d4\u13cd\u13d4\u13c1\u13a2": 2370, "\u2581\u13e3\u13a6\u13df\u13b6\u13cd\u13d4\u13c5\u13af": 2371, "\u2581\u13e5\u13cd\u13aa\u13f4": 2372, "\u2581\u13c5\u13d3\u13a6\u13e5\u13f4\u13c1\u13b5": 2373, "\u2581\u13e7\u13d3\u13d5\u13cd\u13d7\u13f1": 2374, "\u2581\u13a0\u13d7\u13d2\u13cd\u13d7": 2375, "\u2581\u13ae\u13bc": 2376, "\u2581\u13a4\u13f2\u13cd\u13db\u13c9": 2377, "\u2581\u13a0\u13d5\u13d2\u13b2\u13cd\u13a9": 2378, "\u2581\u13a2\u13c6\u13bb": 2379, "\u2581\u13d7\u13e5\u13a6\u13d9\u13b5": 2380, "\u2581\u13e7\u13be\u13d3\u13c5\u13d9": 2381, "\u2581\u13a4\u13c2\u13c1\u13ab\u13e5\u13db": 2382, "\u2581\u13e5\u13c2\u13e3\u13db\u13c5": 2383, "\u2581\u13a4\u13b3\u13a8\u13ef\u13db\u13e4\u13a2": 2384, "\u2581\u13a4\u13a9\u13d3\u13df\u13c5\u13ef": 2385, "\u2581\u13a2\u13f3\u13db\u13c1\u13b8\u13af": 2386, "\u2581\u13cc\u13da": 2387, "\u2581\u13a0\u13b9\u13f3\u13b8\u13d3": 2388, "\u2581\u13f1\u13e5\u13cd\u13a6\u13a2\u13ae\u13cd\u13d7": 2389, "\u2581\u13a0\u13a9\u13ac\u13eb\u13f3\u13af": 2390, "\u2581\u13e3\u13e4\u13b5\u13aa\u13af": 2391, "\u2581\u13cf\u13b5\u13f1": 2392, "\u2581\u13a6\u13ab\u13cd\u13db\u13d7": 2393, "\u2581\u13e4\u13d9\u13b2": 2394, "\u2581\u13a4\u13cd\u13da\u13a2\u13d2": 2395, "\u2581\u13a4\u13e3\u13d4": 2396, "\u2581\u13ed\u13b7\u13e3": 2397, "\u2581\u13c7\u13d5\u13b5": 2398, "\u2581\u13d7\u13a8\u13e5\u13be\u13cc\u13a2": 2399, "\u2581\u13a0\u13c2\u13c3\u13ae\u13cd\u13a9": 2400, "\u2581\u13a7\u13c1\u13cd\u13aa": 2401, "\u2581\u13e5\u13f2\u13ce\u13b8": 2402, "\u2581\u13a0\u13c9\u13b3": 2403, "\u2581\u13a0\u13a6\u13d4\u13be\u13a2": 2404, "\u2581\u13a4\u13be\u13d7\u13cd\u13a6\u13b6\u13d7": 2405, "\u2581\u13d3\u13ac\u13d4\u13c2": 2406, "\u2581\u13a3\u13a9\u13d9\u13d3": 2407, "\u2581\u13ac\u13e9\u13cd\u13d3\u13e9\u13db\u13d2\u13a9": 2408, "\u2581\u13d7\u13a6\u13c5\u13cd\u13a8\u13c2": 2409, "\u2581\u13ac\u13b5\u13cd\u13c6\u13d7\u13cd\u13a9": 2410, "\u2581\u13d7\u13ac\u13e9\u13b8\u13cc\u13db": 2411, "\u2581\u13a2\u13f3\u13e9\u13c1\u13af": 2412, "\u2581\u13e5\u13e5\u13a6\u13d4\u13ad": 2413, "\u2581\u13a0\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13d7": 2414, "\u2581\u13da\u13c3\u13a1\u13a2": 2415, "\u2581\u13ef\u13a6\u13d4\u13ad": 2416, "\u2581\u13a0\u13c3\u13cd\u13db": 2417, "\u2581\u13d3\u13a8\u13cf": 2418, "\u2581\u13be\u13e5\u13be\u13dd\u13a5\u13be": 2419, "\u2581\u13a4\u13c1\u13e2\u13d4\u13c5\u13af": 2420, "\u2581\u13be\u13a8": 2421, "\u13ac\u13eb\u13f3\u13d2": 2422, "\u2581\u13a0\u13c2\u13c5\u13a2": 2423, "\u2581\u13e6\u13b3\u13c2": 2424, "\u2581\u13e7\u13c2\u13a6\u13f4\u13b5\u13a8": 2425, "\u2581\u13ed\u13b6\u13af\u13cd\u13d7\u13f1": 2426, "\u2581\u13f3\u13e9\u13c1\u13a6": 2427, "\u2581\u13a2\u13e3\u13e0\u13be\u13cd\u13d7": 2428, "\u2581\u13aa\u13ea\u13b3\u13c5\u13af": 2429, "\u2581\u13e6\u13c8": 2430, "\u2581\u13ac\u13c2\u13a8\u13d2\u13a2\u13f3": 2431, "\u2581\u13e5\u13c2\u13a6\u13ea\u13ad": 2432, "\u2581\u13e6\u13b3": 2433, "\u13a6\u13c5\u13af\u13d3": 2434, "\u2581\u13a0\u13e5\u13c3\u13ae\u13cd\u13ac\u13a2": 2435, "\u2581\u13c2\u13a6\u13c5\u13af\u13d2\u13a9": 2436, "\u2581\u13e7\u13c1\u13ac": 2437, "\u2581\u13c2\u13da\u13cd\u13db": 2438, "\u2581\u13a4\u13ec\u13e2\u13c5\u13a9": 2439, "\u2581\u13a4\u13e2\u13a9": 2440, "\u2581\u13a2\u13f3\u13e9": 2441, "\u2581\u13a4\u13c5\u13cf\u13d9\u13af": 2442, "\u2581\u13a1\u13c9\u13d7\u13f1": 2443, "\u2581\u13d5\u13cd\u13a9": 2444, "\u2581\u13a4\u13d3\u13c5\u13d6\u13b8\u13af": 2445, "\u2581\u13a4\u13d5\u13c1\u13b8\u13af": 2446, "\u13be\u13f0\u13cd\u13ac\u13be": 2447, "\u13b8\u13c9\u13d7": 2448, "\u2581\u13a1\u13b3\u13d7\u13e2": 2449, "\u2581\u13d3\u13c2\u13c1\u13b8\u13a2": 2450, "\u2581\u13a0\u13a2\u13d2\u13a2": 2451, "\u2581\u13ac\u13c2\u13f3": 2452, "\u2581\u13a4\u13cd\u13a6\u13c5\u13e8\u13af": 2453, "\u13a8\u13f3\u13d7": 2454, "\u13cf\u13d7\u13d2": 2455, "\u13f3\u13af": 2456, "\u2581\u13e7\u13ec\u13da\u13af": 2457, "\u2581\u13a6\u13c5\u13af\u13d3": 2458, "\u2581\u13a0\u13a9\u13cd\u13d7\u13f1": 2459, "\u2581\u13a4\u13bf\u13a5\u13a2": 2460, "\u2581\u13a8\u13b3\u13cd\u13d7": 2461, "\u2581\u13a4\u13c4\u13e2": 2462, "\u13d3\u13b5": 2463, "\u2581\u13e4\u13c6": 2464, "\u2581\u13d5\u13e1\u13ac\u13a2": 2465, "\u13d7\u13cd\u13ac\u13a2": 2466, "\u13d1\u13f0\u13db": 2467, "\u2581\u13a4\u13be\u13db\u13a6\u13c5\u13af": 2468, "\u2581\u13e5\u13a8": 2469, "\u2581\u13be\u13c6": 2470, "\u2581\u13a4\u13be\u13db": 2471, "\u2581\u13d5\u13c2": 2472, "\u2581\u13eb\u13cd\u13a9": 2473, "\u13a1\u13b8\u13af": 2474, "\u2581\u13a0\u13a9\u13f0\u13b8": 2475, "\u13c5\u13d7": 2476, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d9\u13a9": 2477, "\u2581\u13a6\u13d9\u13ac\u13a9": 2478, "\u13c4\u13aa\u13eb\u13d2\u13a9": 2479, "\u13c1\u13c3": 2480, "\u2581\u13c2\u13ac\u13c1\u13b2": 2481, "\u2581\u13be\u13db\u13c1\u13b2": 2482, "\u13f0\u13af": 2483, "\u13d9\u13d3\u13c6\u13d3": 2484, "\u13d9\u13e2\u13c5": 2485, "\u13d5\u13b6\u13b0\u13af\u13cd\u13d7": 2486, "\u2581\u13a4\u13c2\u13cd\u13a6\u13c5\u13e8\u13a2": 2487, "\u13d4\u13c5\u13be": 2488, "\u2581\u13a4\u13b7\u13e4\u13a2": 2489, "\u2581\u13da\u13a6": 2490, "\u2581\u13a4\u13da": 2491, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13ac\u13a2": 2492, "\u2581\u13d5\u13ac": 2493, "\u2581\u13a4\u13ef\u13c5": 2494, "\u13c2\u13d3\u13cd\u13d7\u13f1": 2495, "\u2581\u13a0\u13ad": 2496, "\u13b4\u13c5": 2497, "\u13d4\u13f2\u13cf": 2498, "\u2581\u13a0\u13d2\u13a9": 2499, "\u2581\u13a2\u13d2": 2500, "\u2581\u13ac\u13ef": 2501, "\u13e4\u13b8": 2502, "\u2581\u13e6\u13af\u13f3\u13d2": 2503, "\u13e6\u13e2\u13d7": 2504, "id": 2505, "\u13c1\u13e4\u13b4": 2506, "\u13a6\u13d9": 2507, "\u2581\u13d7\u13e8": 2508, "\u2581\u13a0\u13a9\u13aa\u13b2": 2509, "\u2581\u13a4\u13c2\u13b2": 2510, "\u13d9\u13b4\u13b0\u13cf": 2511, "\u13b5\u13cf\u13f1": 2512, "\u2581\u13ad\u13e9": 2513, "\u2581\u13a6\u13f2\u13b5": 2514, "\u13c9\u13d7": 2515, "\u2581\u13e5\u13d9": 2516, "\u13cd\u13d4\u13c5\u13af": 2517, "\u13a9\u13b3": 2518, "l": 2519, "\u13a7\u13b5\u13a2": 2520, "\u2581\u13a2\u13e5\u13f0\u13b8": 2521, "\u13cc\u13c1": 2522, "\u13c2\u13a9\u13db": 2523, "\u2581\u13a0\u13c2\u13eb\u13be": 2524, "\u13f2\u13af\u13cd\u13d7": 2525, "\u2581\u13a2\u13cf\u13b5\u13f1": 2526, "\u2581\u13eb\u13a9": 2527, "\u2581\u13a0\u13f0": 2528, "\u13c5\u13d3\u13d3": 2529, "\u2581\u13a0\u13be\u13b5": 2530, "\u13c1\u13e4\u13d7": 2531, "\u13aa\u13b5\u13f0\u13d7": 2532, "\u13db\u13c2": 2533, "\u2581\u13c7": 2534, "\u13b5\u13cd\u13d4\u13c1": 2535, "\u13d2\u13c3": 2536, "\u13a9\u13d3": 2537, "\u13c4\u13a6": 2538, "\u13b6\u13e8": 2539, "\u2581\u13e5\u13c4": 2540, "\u2581\u13af\u13cd\u13a9\u13c1": 2541, "\u2581\u13a0\u13a2\u13d2": 2542, "\u2581\u13a0\u13a6\u13d4": 2543, "\u2581\u13c2\u13a8": 2544, "\u13e5\u13f2\u13cf": 2545, "\u13c1\u13e4\u13b8\u13af": 2546, "\u2581\u13a0\u13cb": 2547, "\u2581\u13da\u13be\u13b4\u13c1": 2548, "\u2581\u13af\u13a6\u13d8\u13cf": 2549, "\u2581\u13ad\u13bb": 2550, "\u13d5\u13c5": 2551, "\u13d7\u13e2": 2552, "\u13aa\u13e9\u13d8\u13ad": 2553, "\u13ec\u13c2\u13af\u13cd\u13d7": 2554, "\u2581\u13da\u13a7\u13bf\u13c5": 2555, "\u2581\u13a4\u13c2\u13e3\u13db": 2556, "\u2581\u13a3\u13a9\u13be": 2557, "\u2581\u13be\u13a9": 2558, "\u13ac\u13bf": 2559, "\u2581\u13a0\u13d4\u13b4\u13a6\u13d2": 2560, "\u2581\u13a4\u13c3\u13c1\u13b4": 2561, "\u2581\u13d5\u13a6\u13da\u13e9\u13d7\u13d2": 2562, "\u2581\u13a4\u13c2\u13b7\u13e4\u13d7": 2563, "\u2581\u13e7\u13e9\u13ab\u13d4\u13c5\u13d2": 2564, "\u13be\u13c4\u13aa\u13eb\u13cf": 2565, "\u2581\u13d3\u13d5\u13f2\u13b2\u13cd\u13ac": 2566, "\u2581\u13f1\u13a8\u13d0": 2567, "\u2581\u13da\u13ec\u13a1": 2568, "\u2581\u13a0\u13a6\u13cd\u13a6\u13c2": 2569, "\u2581\u13a0\u13da\u13a2\u13cd\u13db": 2570, "\u2581\u13a6\u13b8\u13c9": 2571, "\u2581\u13a4\u13f0\u13b8\u13c5": 2572, "\u2581\u13d3\u13c2\u13c1\u13b8": 2573, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd\u13d7": 2574, "\u13c3\u13ae\u13cd\u13ac\u13a2": 2575, "\u2581\u13a4\u13a6\u13d4\u13b2\u13d2": 2576, "\u2581\u13a3\u13b5\u13e9": 2577, "\u2581\u13a4\u13b7\u13e4\u13b4": 2578, "\u2581\u13a4\u13ec\u13da": 2579, "\u2581\u13e4\u13ae": 2580, "\u2581\u13d5\u13aa\u13ea\u13b8": 2581, "\u2581\u13a4\u13db\u13d0\u13c5": 2582, "\u13f2\u13af\u13cd\u13d4\u13c5": 2583, "\u2581\u13a6\u13b4\u13c2": 2584, "\u13ef\u13c5\u13b2": 2585, "\u2581\u13a6\u13c1\u13e5": 2586, "\u2581\u13a4\u13c5\u13ce": 2587, "\u2581\u13e9\u13a9": 2588, "\u13d3\u13b4\u13c5\u13db": 2589, "\u13b0\u13b2\u13cd\u13d7": 2590, "\u2581\u13a1\u13c2\u13be\u13ef": 2591, "\u2581\u13a2\u13cd\u13a6\u13b3\u13d7": 2592, "\u2581\u13a5\u13d8\u13a3\u13a9": 2593, "\u2581\u13a6\u13cc\u13c6\u13b8": 2594, "\u2581\u13d1\u13d3\u13b3\u13cd\u13aa\u13af": 2595, "\u2581\u13d7\u13ab\u13d3\u13b8\u13d7\u13f1": 2596, "\u2581\u13e4\u13a6\u13b3\u13ef": 2597, "\u2581\u13a1\u13b9\u13c2\u13d3": 2598, "\u2581\u13e7\u13d9\u13d3\u13cb\u13d3": 2599, "\u2581\u13e7\u13ef\u13d6\u13c3\u13af": 2600, "\u2581\u13ef\u13c3\u13a9\u13f3": 2601, "\u2581\u13eb\u13da\u13a7\u13bf\u13c1": 2602, "\u2581\u13a4\u13ef\u13d6\u13c3\u13af": 2603, "\u2581\u13d7\u13cd\u13c6\u13a8\u13c2": 2604, "\u2581\u13a2\u13e4\u13b3\u13d7\u13d9\u13ae\u13cd\u13d7": 2605, "\u2581\u13ac\u13c9\u13ce\u13b0": 2606, "\u2581\u13d5\u13a8\u13e5\u13f0\u13b8\u13d4\u13c5\u13a9": 2607, "\u2581\u13a4\u13be\u13e2\u13c9\u13d7": 2608, "\u2581\u13bb\u13be\u13cc": 2609, "\u2581\u13c2\u13e3\u13ea\u13d2": 2610, "\u2581\u13a2\u13f3\u13e9\u13c2\u13cc\u13c5\u13af": 2611, "\u2581\u13d1\u13be\u13d3\u13b4\u13a9": 2612, "\u2581\u13a6\u13b6\u13af\u13cd\u13d7\u13f3\u13b6\u13d7": 2613, "\u2581\u13a1\u13e5\u13b8\u13c9\u13d3": 2614, "\u2581\u13a4\u13c2\u13c3\u13ae\u13b4": 2615, "\u2581\u13c5\u13d3\u13f3\u13b5\u13cd\u13d9\u13d7\u13f1": 2616, "\u2581\u13a8\u13e3\u13cd\u13d3\u13e9\u13d7\u13d9\u13af": 2617, "\u2581\u13d7\u13a7\u13be\u13e9\u13db\u13cd\u13d7": 2618, "\u2581\u13a0\u13a6\u13b5\u13cd\u13ac": 2619, "\u2581\u13c4\u13b5\u13cd\u13d4\u13be": 2620, "\u2581\u13cd\u13a9\u13c4\u13cd\u13db": 2621, "\u2581\u13a2\u13f2\u13cd\u13db": 2622, "\u2581\u13a6\u13cc\u13be\u13b5": 2623, "\u2581\u13c5\u13d3\u13ac\u13c1\u13b5": 2624, "\u2581\u13f1\u13c5\u13a6\u13b5\u13cd\u13d3": 2625, "\u2581\u13aa\u13cc\u13c2": 2626, "\u2581\u13f1\u13da\u13c2": 2627, "\u2581\u13a2\u13f3\u13e9\u13c2\u13b8": 2628, "\u2581\u13a0\u13c2\u13c8\u13b7": 2629, "\u2581\u13a4\u13b5\u13cd\u13d4\u13f4\u13d7": 2630, "\u2581\u13a4\u13f0\u13b8\u13ae": 2631, "\u2581\u13d1\u13d5\u13d8\u13f4\u13db": 2632, "\u2581\u13c4\u13be\u13b5\u13cd\u13d4\u13c1": 2633, "\u2581\u13ed\u13f4\u13b8": 2634, "\u2581\u13af\u13a8\u13f4": 2635, "\u2581\u13d7\u13d3\u13b4\u13b2\u13cd\u13a6": 2636, "\u2581\u13a2\u13f3\u13db\u13bf\u13d5\u13a9": 2637, "\u2581\u13a2\u13a7\u13c1\u13e8\u13af": 2638, "\u13cd\u13a6\u13a2\u13b2\u13be": 2639, "\u2581\u13d7\u13d3\u13c2\u13d0\u13d7\u13f1": 2640, "\u2581\u13d3\u13d3\u13b6\u13c2": 2641, "\u2581\u13eb\u13e8\u13b7\u13e4\u13d7\u13f1": 2642, "\u13b8\u13c9\u13d5\u13cd\u13d7": 2643, "\u2581\u13a4\u13c2\u13b7\u13af\u13cd\u13d7\u13f1": 2644, "\u2581\u13a4\u13b5\u13e0\u13ef\u13cd\u13d5\u13cd\u13d7": 2645, "\u2581\u13a0\u13c2\u13e6\u13a2": 2646, "\u2581\u13db\u13cd\u13c6\u13b8\u13af": 2647, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 2648, "\u2581\u13a2\u13e3\u13db\u13a6\u13c5\u13af": 2649, "\u2581\u13d7\u13a6\u13b4\u13c2": 2650, "\u2581\u13a0\u13d9\u13b4\u13b0\u13af\u13cd\u13d9\u13d7": 2651, "\u2581\u13a4\u13c2\u13a9\u13cd\u13d7": 2652, "\u2581\u13a4\u13db\u13aa\u13d7\u13f1": 2653, "\u2581\u13a2\u13f3\u13e9\u13c1\u13b8\u13af": 2654, "\u2581\u13a0\u13a9\u13c5\u13cf\u13db": 2655, "\u2581\u13ed\u13c2\u13b6\u13af\u13cd\u13d7\u13f1": 2656, "\u2581\u13a4\u13ea\u13b5\u13cd\u13d7": 2657, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b4\u13a2": 2658, "\u2581\u13a2\u13e3\u13d3\u13e1\u13ac": 2659, "\u2581\u13be\u13c2\u13a6\u13d4\u13b2\u13be": 2660, "\u2581\u13a4\u13c1\u13b7\u13c5\u13a9": 2661, "\u2581\u13a7\u13c3\u13ae\u13d3": 2662, "\u2581\u13a4\u13c1\u13cd\u13d3\u13b3": 2663, "\u2581\u13a4\u13d3\u13d9\u13b5\u13e3\u13d8\u13f3": 2664, "\u2581\u13e6\u13d3\u13b8": 2665, "\u2581\u13a4\u13ea\u13d9\u13b5\u13cd\u13d7": 2666, "\u2581\u13ac\u13e9\u13d4\u13f2\u13ce\u13b4": 2667, "\u2581\u13a2\u13a8\u13ac\u13c1\u13d7": 2668, "\u2581\u13d9\u13d3\u13f3": 2669, "\u2581\u13be\u13a9\u13ea\u13d2\u13a9": 2670, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 2671, "\u2581\u13a4\u13c2\u13c7\u13d3\u13b8\u13a2": 2672, "\u2581\u13aa\u13e2\u13c5": 2673, "\u2581\u13a0\u13a6\u13cd\u13ac": 2674, "\u2581\u13e5\u13cd\u13c6\u13ef": 2675, "\u2581\u13a4\u13c2\u13c1\u13ab": 2676, "\u2581\u13d7\u13a6\u13b6\u13d7": 2677, "\u13a6\u13f4\u13b5\u13a8": 2678, "\u2581\u13d9\u13a9\u13be": 2679, "\u2581\u13a4\u13be\u13d5\u13c5\u13af": 2680, "\u2581\u13a4\u13c2\u13c3\u13ae\u13b8\u13af": 2681, "\u2581\u13c2\u13ac\u13c1\u13ad": 2682, "\u2581\u13a4\u13b5\u13ec\u13e8\u13af": 2683, "\u2581\u13a6\u13c1\u13b3": 2684, "\u2581\u13f4\u13a8\u13e5": 2685, "\u2581\u13a0\u13c2\u13c1\u13b5": 2686, "\u2581\u13da\u13c2\u13c5\u13ce": 2687, "\u2581\u13da\u13c1\u13e4\u13b8\u13a9": 2688, "\u2581\u13d9\u13e7\u13be\u13d3\u13c5\u13db\u13a2": 2689, "\u2581\u13ad\u13b4": 2690, "\u2581\u13a2\u13f3\u13db\u13c1\u13d7\u13f1": 2691, "\u2581\u13a4\u13ea\u13c5\u13cd\u13d7\u13f1": 2692, "\u2581\u13a4\u13d3\u13b4\u13c5\u13db": 2693, "\u2581\u13a4\u13d3\u13d1\u13ef": 2694, "\u2581\u13a4\u13f0\u13b8\u13af": 2695, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 2696, "\u2581\u13e4\u13b2\u13a9": 2697, "\u2581\u13c4\u13be\u13db\u13c1\u13b4\u13a2": 2698, "\u2581\u13a0\u13c6\u13d3\u13c5\u13db": 2699, "\u2581\u13eb\u13da\u13ef\u13c5\u13b2\u13a9": 2700, "\u2581\u13a3\u13ac\u13d2": 2701, "\u2581\u13be\u13a6\u13d4\u13b2\u13be": 2702, "\u13a6\u13d4\u13af": 2703, "\u2581\u13a4\u13ea\u13c5\u13d2\u13a9": 2704, "\u2581\u13da\u13cc\u13b3\u13d3\u13c1": 2705, "\u2581\u13a4\u13ea\u13d9\u13b8\u13a9": 2706, "\u2581\u13be\u13c2\u13ea\u13cd\u13ac\u13a2": 2707, "\u2581\u13a0\u13e5\u13b8\u13a8\u13b3\u13cd\u13d7\u13f1": 2708, "\u2581\u13d3\u13d5\u13f2\u13b2\u13cd\u13ac\u13a2": 2709, "\u2581\u13e7\u13d2\u13af": 2710, "\u2581\u13a8\u13a6\u13ab\u13f4\u13a1": 2711, "\u2581\u13a7\u13c5\u13d1\u13b8": 2712, "\u2581\u13a2\u13be\u13a9": 2713, "\u13cf\u13c5\u13d3": 2714, "\u2581\u13a4\u13c4\u13aa\u13e8\u13a9": 2715, "\u2581\u13a0\u13ce\u13cd\u13a9\u13c2\u13c3\u13c5": 2716, "\u2581\u13a4\u13f0\u13b8\u13c1\u13a2": 2717, "\u2581\u13a0\u13e8\u13ef\u13a2": 2718, "\u13c5\u13c3": 2719, "\u2581\u13e9\u13be": 2720, "\u2581\u13a4\u13c2\u13f0": 2721, "\u13d3\u13c2": 2722, "\u2581\u13d5\u13b3": 2723, "\u13c4\u13aa\u13e9": 2724, "\u2581\u13a4\u13c2\u13f0\u13b8\u13c1": 2725, "\u2581\u13a0\u13eb\u13cd\u13a9": 2726, "\u2581\u13a7\u13aa": 2727, "\u2581\u13a0\u13e4\u13b5\u13cd\u13db\u13a2": 2728, "\u13cd\u13d4\u13c1": 2729, "\u2581\u13e7\u13d9": 2730, "\u2581\u13a4\u13e5\u13b8\u13d2": 2731, "\u13cd\u13db\u13be": 2732, "\u13c1\u13b8\u13be": 2733, "\u2581\u13c4\u13e9\u13c1\u13b4\u13a2": 2734, "\u2581\u13a6\u13ec\u13c2\u13cd\u13ac\u13a2": 2735, "\u2581\u13a4\u13b6\u13a9\u13b8\u13a2": 2736, "\u13c5\u13cd\u13d7\u13f1": 2737, "\u13d3\u13f1\u13b5": 2738, "\u2581\u13a3\u13ac": 2739, "\u2581\u13be\u13cb\u13c1\u13b8": 2740, "\u13c1\u13ae": 2741, "\u2581\u13d7\u13a6\u13c5\u13cc\u13d7": 2742, "\u2581\u13a6\u13f0\u13e5": 2743, "\u13a8\u13db": 2744, "\u13c6\u13b5": 2745, "\u2581\u13d5\u13aa": 2746, "\u2581\u13a0\u13c9": 2747, "\u13f2\u13af": 2748, "\u2581\u13d7\u13aa\u13ea\u13b6\u13d7": 2749, "\u2581\u13e7\u13ec": 2750, "\u2581\u13a4\u13b4\u13c1": 2751, "\u13a6\u13d3\u13c1": 2752, "\u2581\u13f1\u13cf": 2753, "\u2581\u13d5\u13ad": 2754, "\u13a2\u13f4": 2755, "\u13c5\u13cf\u13d3\u13cd\u13d7": 2756, "\u2581\u13a4\u13a7\u13db\u13a2": 2757, "\u13b0\u13b5": 2758, "\u13cd\u13d3\u13f4": 2759, "\u13a6\u13d4\u13b0": 2760, "\u2581\u13a4\u13b2\u13a2": 2761, "\u2581\u13c2\u13d5\u13ac\u13c1": 2762, "\u13cf\u13c6": 2763, "\u13c1\u13c6": 2764, "\u2581\u13a9\u13b6\u13a2": 2765, "\u13a1\u13b8\u13a9": 2766, "\u2581\u13a0\u13f2": 2767, "\u13e3\u13db\u13c1\u13af": 2768, "\u13eb\u13cd\u13d7": 2769, "\u13d3\u13b3": 2770, "\u13c2\u13cc\u13c1": 2771, "\u13be\u13a5": 2772, "\u2581\u13a6\u13c3": 2773, "\u13db\u13d9\u13d7": 2774, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c1\u13ae": 2775, "\u2581\u13f1\u13d9\u13a6": 2776, "\u13cd\u13c6\u13d9\u13c5": 2777, "\u13e4\u13b5\u13a6": 2778, "\u2581\u13f0\u13b5\u13cd\u13a8": 2779, "\u13a0\u13c8": 2780, "\u2581\u13a2\u13af": 2781, "\u13e5\u13aa\u13e9\u13db": 2782, "\u2581\u13a3\u13a9\u13c2": 2783, "\u13d7\u13cf": 2784, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d8": 2785, "\u13a6\u13d0\u13af": 2786, "\u13c1\u13ae\u13a2": 2787, "\u2581\u13a4\u13b2": 2788, "\u2581\u13a2\u13ac\u13c1": 2789, "\u13b5\u13ef": 2790, "\u13d9\u13ae\u13cd\u13d7": 2791, "\u13b5\u13aa": 2792, "\u2581\u13a9\u13b3\u13af": 2793, "\u13b8\u13c9\u13d9\u13d7\u13f1": 2794, "\u13be\u13c4\u13aa\u13e8\u13af": 2795, "\u13b7\u13e3": 2796, "\u2581\u13a1\u13e5\u13c1\u13d7": 2797, "\u2581\u13a6\u13c5": 2798, "\u2581\u13a4\u13be\u13db\u13a6\u13c1": 2799, "\u2581\u13a2\u13b3": 2800, "\u13cd\u13d3\u13e9\u13d7\u13d9\u13af": 2801, "\u13aa\u13b5\u13f0\u13a1": 2802, "\u13af\u13eb": 2803, "\u2581\u13ee": 2804, "\u2581\u13a4\u13b6\u13d2": 2805, "\u2581\u13a4\u13f2\u13b1\u13ce": 2806, "\u2581\u13b9": 2807, "\u13f0\u13c2": 2808, "\u2581\u13a4\u13b6": 2809, "\u13d9\u13b8": 2810, "\u13cd\u13a6\u13a9": 2811, "\u13c5\u13d3\u13d7\u13cd\u13d9\u13d7": 2812, "\u2581\u13f2\u13a9": 2813, "\u2581\u13e5\u13be": 2814, "\u2581\u13d7\u13be\u13d3": 2815, "\u13cd\u13d4\u13f1": 2816, "\u2581\u13a0\u13c2\u13d0\u13a2\u13c3": 2817, "\u2581\u13e5\u13c2\u13a6\u13ea": 2818, "\u2581\u13c4\u13ea": 2819, "\u2581\u13be\u13bf\u13c9": 2820, "\u2581\u13a0\u13d3\u13c5\u13d6\u13b5\u13d9": 2821, "\u13a8\u13c2": 2822, "\u2581\u13e5\u13c2": 2823, "\u13cf\u13c1": 2824, "\u13a9\u13a1\u13b8": 2825, "\u2581\u13a0\u13cd\u13aa\u13af\u13c3": 2826, "\u2581\u13eb\u13d3\u13c2": 2827, "\u13a1\u13b4\u13a2": 2828, "\u2581\u13c4\u13c2\u13ea\u13d2": 2829, "\u13e0\u13f1": 2830, "\u2581\u13aa\u13e2\u13d2": 2831, "\u13a0\u13ce": 2832, "\u13f0\u13ad": 2833, "\u2581\u13f1\u13d7\u13a6": 2834, "\u13cd\u13d5": 2835, "\u2581\u13be\u13ac\u13c1\u13b8": 2836, "\u2581\u13be\u13c2\u13ea\u13cd\u13ac": 2837, "\u2581\u13e5\u13c1\u13b8": 2838, "\u2581\u13e3\u13d3": 2839, "\u13d7\u13d2": 2840, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13a8": 2841, "\u13ce\u13b4": 2842, "\u13d7\u13c2\u13c5\u13cc\u13d7": 2843, "\u13ad\u13d5\u13ec": 2844, "\u2581\u13a3\u13d3\u13c5\u13db": 2845, "\u2581\u13a4\u13f2\u13af\u13cd\u13d4\u13c1": 2846, "\u13a8\u13b5\u13a0": 2847, "\u13aa\u13b1\u13cd\u13d7": 2848, "\u13a0\u13d5\u13b8": 2849, "\u13a7\u13b5\u13e8\u13af": 2850, "\u13d7\u13a6\u13d8\u13ef": 2851, "\u13a0\u13a9\u13be": 2852, "\u2581\u13af\u13f0\u13b8": 2853, "\u2581\u13a1\u13d9\u13ae": 2854, "\u2581\u13a0\u13d5": 2855, "\u2581\u13e7\u13d3\u13c5\u13db": 2856, "\u2581\u13d5\u13a4\u13b4\u13d4\u13c5": 2857, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 2858, "\u2581\u13a4\u13c1\u13a6\u13b8": 2859, "\u13e0\u13a0\u13cf": 2860, "\u2581\u13a0\u13d3\u13c1\u13e3\u13cd\u13da\u13b6": 2861, "\u2581\u13e7\u13be\u13b4\u13af\u13d0": 2862, "\u13b6\u13d0\u13c5": 2863, "\u2581\u13a4\u13be\u13b5\u13ae\u13b5\u13e4": 2864, "\u2581\u13a2\u13d9\u13bb": 2865, "\u2581\u13cf\u13d3\u13c1\u13b8": 2866, "\u2581\u13c5\u13f2": 2867, "\u2581\u13e7\u13c2\u13b3\u13eb\u13a2\u13cd\u13d7": 2868, "\u2581\u13a0\u13e5\u13cd\u13d5\u13b8\u13d7": 2869, "\u13b5\u13cd\u13d7\u13f1": 2870, "\u2581\u13a0\u13f2\u13b1\u13d2": 2871, "\u2581\u13e3\u13be\u13eb": 2872, "\u2581\u13a4\u13be\u13d5\u13c5": 2873, "\u2581\u13f1\u13d3\u13c2": 2874, "\u13b6\u13af\u13cd\u13d7\u13f1": 2875, "\u13cd\u13d5\u13b8\u13af": 2876, "\u13a5\u13a9": 2877, "\u2581\u13d7\u13aa\u13ea\u13b5": 2878, "\u13f2\u13a2\u13f4": 2879, "\u13ad\u13c4\u13b8\u13af": 2880, "\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7\u13f1": 2881, "rs": 2882, "\u2581Philadelphia": 2883, "\u2581\u13a0\u13d3\u13ea\u13b3\u13a9\u13cd\u13a9": 2884, "\u2581\u13d0\u13b5\u13b9\u13c5": 2885, "\u2581\u13d5\u13e6\u13af\u13f3\u13ce\u13cd\u13d7": 2886, "\u2581\u13da\u13cd\u13c6\u13b8\u13d4\u13c1": 2887, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d4\u13be": 2888, "\u2581\u13c6\u13b3\u13c6": 2889, "\u2581\u13d7\u13a6\u13d2\u13cd\u13d4\u13c5": 2890, "\u2581\u13a2\u13e6\u13af\u13f3\u13af": 2891, "\u2581\u13c7\u13da\u13a1\u13b5": 2892, "\u2581\u13a4\u13e3\u13b4\u13d3": 2893, "\u2581\u13d7\u13be\u13d5\u13f2\u13b2\u13cd\u13a9": 2894, "\u2581\u13e7\u13b4\u13af\u13cc\u13c5\u13af": 2895, "\u2581\u13a7\u13c2\u13b5\u13ef": 2896, "\u2581\u13d7\u13c7\u13c5\u13d2": 2897, "\u2581\u13e7\u13f4\u13e8": 2898, "\u2581\u13a4\u13ec\u13d3\u13b8": 2899, "\u2581\u13da\u13a7\u13bf\u13c1": 2900, "\u2581\u13d3\u13f3\u13c2\u13b6\u13d2": 2901, "\u2581\u13a0\u13da\u13b8\u13d7": 2902, "\u2581\u13a4\u13d3\u13c5\u13b5\u13f0\u13a5": 2903, "\u2581\u13a2\u13d7\u13c5\u13c1": 2904, "\u2581\u13f1\u13e3\u13d3\u13c5\u13d6\u13d7\u13cd\u13a8\u13cd\u13d7": 2905, "\u2581\u13a2\u13e5\u13c6\u13b5\u13cf": 2906, "\u2581\u13ac\u13e9\u13e0\u13ef\u13cd\u13d7": 2907, "\u2581\u13a2\u13e7\u13be\u13d3\u13b3": 2908, "\u2581\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7\u13f1": 2909, "\u2581\u13d7\u13a6\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13af": 2910, "\u2581\u13a4\u13d3\u13d1\u13f1": 2911, "\u2581\u13da\u13db\u13db\u13c1": 2912, "\u2581\u13a8\u13c5\u13a2\u13cd\u13d7": 2913, "\u2581\u13a1\u13e3\u13c2\u13b5": 2914, "\u2581\u13d5\u13aa\u13ea\u13b5\u13cd\u13ac": 2915, "\u2581\u13d7\u13db\u13d3\u13c5\u13af": 2916, "\u2581\u13d7\u13a8\u13e5\u13be\u13dd\u13a2": 2917, "\u2581\u13a4\u13d2\u13af\u13f0\u13f1": 2918, "\u2581\u13a6\u13d3\u13b7\u13ef\u13db": 2919, "\u2581\u13a0\u13be\u13db\u13a9\u13cd\u13a9": 2920, "\u2581\u13d7\u13ac\u13aa\u13e9\u13db\u13d7": 2921, "\u2581\u13a0\u13a9\u13b7\u13e5\u13b8": 2922, "\u2581\u13f1\u13aa\u13b5\u13a6": 2923, "\u2581\u13a0\u13cd\u13c6\u13da\u13b8": 2924, "\u2581\u13a0\u13c2\u13b4\u13f4\u13cd\u13a9": 2925, "\u2581\u13a0\u13b5\u13ae\u13b5\u13ac": 2926, "\u2581\u13a4\u13c2\u13aa\u13ae": 2927, "\u2581\u13e7\u13d3\u13b4\u13c5\u13b2": 2928, "\u2581\u13a4\u13be\u13d3\u13d3\u13cd\u13ac": 2929, "\u2581\u13c2\u13e3\u13db\u13a6": 2930, "\u2581\u13ac\u13e9\u13f2\u13b1\u13af\u13cd\u13d7": 2931, "\u2581\u13be\u13ef\u13db\u13a1\u13cd\u13d7": 2932, "\u2581\u13a0\u13c4\u13a6\u13b8": 2933, "\u2581\u13a6\u13e3\u13c3\u13cd": 2934, "\u2581\u13e5\u13d5\u13a6": 2935, "\u2581\u13a7\u13f4\u13d0\u13b5": 2936, "\u2581\u13da\u13c3\u13e2\u13c5\u13a9": 2937, "\u2581\u13d7\u13aa\u13d1\u13b4\u13d7\u13f1": 2938, "\u2581\u13e7\u13f4\u13e2": 2939, "\u2581\u13a4\u13d3\u13b4\u13e8": 2940, "\u2581\u13e7\u13b4\u13d4\u13c5\u13af": 2941, "\u2581\u13a4\u13c4\u13aa\u13a2\u13cd\u13d7": 2942, "\u2581\u13e5\u13a3\u13b5": 2943, "\u2581\u13ac\u13c6\u13db\u13c1\u13d7\u13f1": 2944, "\u2581\u13a0\u13d3\u13cd\u13d3\u13e9\u13d7\u13d9\u13af": 2945, "\u2581\u13c2\u13e5\u13a6\u13d4\u13b2\u13be": 2946, "\u2581\u13c0\u13a2\u13f3": 2947, "\u2581\u13a5\u13e5\u13aa\u13a5\u13a9": 2948, "\u13b3\u13cf\u13d5\u13be": 2949, "\u2581\u13a4\u13be\u13b5\u13d7\u13a9\u13db": 2950, "\u2581\u13a4\u13ec\u13ea\u13b3\u13c5\u13af": 2951, "\u2581\u13da\u13b7\u13eb\u13cd\u13d4\u13c1\u13b2": 2952, "\u2581\u13a2\u13e7\u13d5\u13d8\u13f4\u13db": 2953, "\u2581\u13a0\u13b9\u13b4\u13a9": 2954, "\u2581\u13d4\u13b8\u13d7": 2955, "\u2581\u13a4\u13d7\u13d4\u13b2": 2956, "\u2581\u13a2\u13a9\u13c5\u13df": 2957, "\u13db\u13c5\u13a2\u13cd\u13d9\u13d7\u13f1": 2958, "\u2581\u13cd\u13a9\u13be\u13dd\u13a2": 2959, "\u2581\u13a4\u13ac\u13eb\u13f3\u13ce\u13cd\u13d7": 2960, "\u2581\u13a6\u13c5\u13d9\u13d7": 2961, "\u2581\u13e7\u13be\u13c4\u13e9\u13a2": 2962, "\u2581\u13c4\u13e9\u13c5": 2963, "\u2581\u13be\u13c1\u13b2\u13be": 2964, "\u2581\u13a4\u13c2\u13f0\u13b8\u13d2\u13a9": 2965, "\u2581\u13a4\u13d5\u13c1\u13a2": 2966, "\u2581\u13a2\u13f3\u13d3\u13b5\u13ad": 2967, "\u2581\u13a0\u13a9\u13f0\u13b8\u13b2": 2968, "\u2581\u13a4\u13a7\u13ad\u13db": 2969, "\u2581\u13ed\u13c2\u13f4\u13b4\u13a2": 2970, "\u2581\u13e9\u13a9\u13b7\u13e8": 2971, "\u2581\u13a4\u13b4\u13eb\u13cd\u13d4\u13c1": 2972, "\u13e5\u13af\u13cd\u13d7": 2973, "\u2581\u13a0\u13b5\u13e5\u13d9\u13b2\u13cd\u13a8": 2974, "\u2581\u13a4\u13be\u13d7\u13c5\u13d7": 2975, "\u2581\u13a1\u13d9\u13ad": 2976, "\u2581\u13a4\u13cc\u13b3\u13d3\u13c5": 2977, "\u2581\u13a8\u13e5\u13c1\u13b8\u13af": 2978, "\u2581\u13a5\u13a9\u13d9\u13c9": 2979, "\u13f2\u13af\u13ce\u13b8\u13a9": 2980, "\u2581\u13a0\u13df\u13cd\u13db\u13a2": 2981, "\u2581\u13a4\u13ec\u13af\u13f3": 2982, "\u2581\u13ed\u13c2\u13b6\u13d2\u13a9": 2983, "\u2581\u13c5\u13d3\u13ac": 2984, "\u2581\u13a4\u13ea\u13a7\u13c5\u13a9": 2985, "\u2581\u13a4\u13c5\u13d9\u13d7\u13f1": 2986, "\u2581\u13d7\u13c2\u13a6\u13d8\u13ef": 2987, "\u2581\u13a4\u13d5\u13d7\u13f1": 2988, "\u2581\u13be\u13cd\u13a6\u13a2\u13b2\u13be": 2989, "\u2581\u13c4\u13c2\u13ea\u13ce\u13b8\u13a9": 2990, "\u2581\u13be\u13c2\u13a1\u13a2": 2991, "\u2581\u13a4\u13b5\u13cf\u13c2": 2992, "\u2581\u13e7\u13ec\u13b8": 2993, "\u2581\u13a2\u13d7\u13a6\u13ea\u13cd": 2994, "\u2581\u13a0\u13a7\u13b5\u13ec\u13af": 2995, "\u2581\u13a4\u13e8\u13c9\u13d7": 2996, "\u2581\u13a4\u13ea\u13c1\u13a2": 2997, "\u2581\u13d7\u13df\u13cd\u13d7": 2998, "\u2581\u13a4\u13e2": 2999, "\u2581\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13ad": 3000, "\u2581\u13a4\u13aa\u13e9\u13db\u13d7": 3001, "\u2581\u13a4\u13d4\u13be": 3002, "\u13be\u13c4\u13aa\u13a2\u13cd\u13d7": 3003, "\u2581\u13d0\u13d3\u13bb\u13f1": 3004, "\u2581\u13a2\u13a9\u13c1\u13b8\u13af": 3005, "\u2581\u13e7\u13c1\u13b3": 3006, "\u13d7\u13cd\u13aa\u13c2\u13af": 3007, "\u2581\u13d3\u13f3\u13d3\u13b4\u13c5\u13d3": 3008, "\u2581\u13ef\u13a9\u13ad": 3009, "\u2581\u13a2\u13a6\u13c1\u13b3\u13c5\u13af": 3010, "\u13c1\u13ac": 3011, "\u2581\u13a2\u13ef\u13ac\u13c1\u13d7": 3012, "\u2581\u13a4\u13ef\u13c5\u13af": 3013, "\u2581\u13a6\u13c1\u13cc\u13a2\u13af": 3014, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13a2": 3015, "\u2581\u13d7\u13d0\u13a2": 3016, "\u2581\u13a1\u13d9\u13ae\u13a2": 3017, "\u2581\u13ad\u13be\u13c2": 3018, "\u2581\u13e5\u13a8\u13e5": 3019, "\u2581\u13a4\u13be\u13db\u13a6\u13c1\u13a2": 3020, "\u2581\u13d3\u13c8": 3021, "\u2581\u13a4\u13e9\u13db\u13ae\u13a2": 3022, "\u2581\u13cd\u13a9\u13a8\u13f3": 3023, "\u13c2\u13ef": 3024, "\u2581\u13d7\u13cd\u13a9": 3025, "\u2581\u13a7\u13b8": 3026, "\u2581\u13ed\u13b7\u13e8\u13a9": 3027, "\u2581\u13a4\u13ef\u13a2": 3028, "\u2581\u13a1\u13b5\u13cd\u13a8\u13a2": 3029, "\u2581\u13a4\u13ce\u13b5\u13d4\u13c5": 3030, "\u13a1\u13d7": 3031, "\u2581\u13a0\u13d2\u13ad": 3032, "\u2581\u13a5\u13b5": 3033, "\u13ad\u13f2\u13b2": 3034, "\u13d3\u13cd\u13d7": 3035, "\u13b3\u13c1\u13a2": 3036, "\u2581\u13a4\u13d3\u13c5\u13d6\u13b8\u13a2": 3037, "on": 3038, "\u2581\u13d5\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 3039, "\u2581\u13ac\u13d9\u13d7\u13f1": 3040, "\u13aa\u13b5\u13ef": 3041, "\u2581\u13a4\u13d3\u13c5\u13db\u13a2": 3042, "\u2581\u13a4\u13c3\u13ae\u13b4": 3043, "\u2581\u13c7\u13b5\u13e5": 3044, "\u2581\u13a4\u13d3\u13c5\u13ce\u13a2": 3045, "\u2581\u13d7\u13ac\u13d7": 3046, "\u2581\u13da\u13c1\u13b4\u13a2": 3047, "\u2581\u13be\u13be\u13db\u13c1\u13b2\u13a2": 3048, "\u2581\u13a2\u13e6\u13af\u13f3\u13d2\u13a2": 3049, "\u2581\u13a6\u13d3\u13c5\u13d6\u13cd\u13ac\u13a2": 3050, "\u13c1\u13b0\u13a2": 3051, "\u2581\u13a4\u13f2\u13b4": 3052, "\u2581\u13a2\u13e6": 3053, "\u13a6\u13e8": 3054, "\u2581\u13a0\u13cd\u13a6\u13be\u13a2": 3055, "\u2581\u13a0\u13c1\u13b0": 3056, "\u2581\u13e6\u13be": 3057, "\u2581\u13da\u13c1\u13e4\u13b4\u13a2": 3058, "\u2581\u13a1\u13b2\u13a9": 3059, "\u2581\u13a1\u13b5\u13a9": 3060, "\u2581\u13e7\u13b4": 3061, "\u2581\u13cc\u13b5": 3062, "\u13cd\u13db\u13f1": 3063, "\u13bf\u13a2": 3064, "\u13f2\u13b0\u13ce\u13b8": 3065, "\u2581\u13a4\u13c5\u13c5": 3066, "\u2581\u13a4\u13ea\u13c5\u13ce\u13a2": 3067, "\u2581\u13e7\u13be\u13c4\u13aa\u13eb\u13ce\u13d7": 3068, "\u2581\u13a0\u13cd\u13db\u13a2": 3069, "\u13cd\u13aa\u13c3": 3070, "\u2581\u13c5\u13d3\u13f3\u13be\u13b5\u13cd\u13aa\u13b8\u13d4": 3071, "\u2581\u13a4\u13e9\u13c2": 3072, "\u13d5\u13d7": 3073, "\u13a6\u13ef": 3074, "\u2581\u13d7\u13ac\u13e9\u13d3\u13c2\u13b8\u13a2\u13cd": 3075, "\u2581\u13aa\u13cd\u13d4": 3076, "\u2581\u13a9\u13b5": 3077, "\u2581\u13a4\u13aa\u13b2\u13a9": 3078, "\u2581\u13a0\u13d3\u13c5\u13d6\u13cd\u13ac\u13a2": 3079, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13d2": 3080, "\u2581\u13a4\u13ea\u13b7\u13c1\u13a2": 3081, "\u2581\u13d7\u13c2\u13e9\u13be\u13a6\u13b3": 3082, "\u13f3\u13b5": 3083, "\u2581\u13a2\u13ef\u13c2\u13a2": 3084, "\u2581\u13a2\u13e3\u13d3": 3085, "\u2581\u13a4\u13be\u13d9\u13d3\u13c6\u13cd\u13ac\u13a2": 3086, "\u2581\u13a6\u13e8": 3087, "\u2581\u13a4\u13c2\u13ac": 3088, "\u2581\u13d7\u13c2\u13c3": 3089, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8\u13a2": 3090, "\u13d9\u13a2": 3091, "\u13b4\u13c5\u13af": 3092, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d6\u13d7": 3093, "\u2581\u13a6\u13da\u13f1": 3094, "\u2581\u13a4\u13a9\u13b8": 3095, "\u13d3\u13c1\u13df\u13f4\u13db": 3096, "\u13b1\u13cd\u13d7": 3097, "\u13b2\u13cd\u13a6": 3098, "\u13ce\u13ad": 3099, "\u13b3\u13cf": 3100, "\u13c2\u13eb": 3101, "\u2581\u13da\u13d9": 3102, "\u2581\u13eb\u13da\u13be": 3103, "\u2581\u13a4\u13c2\u13e9\u13db\u13d7": 3104, "\u2581\u13d9\u13d8": 3105, "\u2581\u13de": 3106, "\u2581\u13a0\u13eb\u13be": 3107, "\u2581\u13ac\u13d7\u13ad": 3108, "\u13cd\u13c6\u13c2\u13aa\u13d5\u13cd\u13d7": 3109, "\u13c1\u13e4\u13b5": 3110, "\u13e2\u13c5": 3111, "\u2581\u13e6\u13a6": 3112, "\u2581\u13d7\u13e8\u13c2\u13d7": 3113, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13ce": 3114, "\u2581\u13e3\u13c1": 3115, "\u13e5\u13e9\u13db\u13b2": 3116, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8": 3117, "\u2581\u13a4\u13b5\u13ae\u13b5\u13e4": 3118, "\u2581\u13a6\u13c5\u13a8": 3119, "\u2581\u13da\u13c1\u13b8": 3120, "\u13b5\u13cd\u13ac": 3121, "\u2581\u13a4\u13ac": 3122, "\u13df\u13b6\u13cd\u13d9\u13d7": 3123, "\u2581\u13a0\u13a6\u13d5": 3124, "\u13be\u13c4\u13aa\u13eb\u13d2\u13af": 3125, "\u2581\u13a7\u13c1\u13c9": 3126, "\u2581\u13d7\u13a8\u13e3": 3127, "\u2581\u13e7\u13c2\u13b5": 3128, "\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 3129, "\u13d7\u13cd\u13ac\u13be": 3130, "\u13b8\u13d3": 3131, "\u2581\u13a2\u13e5\u13a9\u13cd\u13d7": 3132, "\u2581\u13a0\u13cb\u13ad": 3133, "\u2581\u13a0\u13a6\u13d8\u13f0": 3134, "\u2581\u13a4\u13c1\u13b4": 3135, "\u13cf\u13f3": 3136, "\u2581\u13db\u13a9": 3137, "\u13a4\u13c5\u13d3\u13d5": 3138, "\u13cd\u13d5\u13b5\u13ad": 3139, "\u2581\u13a5\u13cd\u13a9": 3140, "\u2581\u13a4\u13e5\u13c3": 3141, "\u13a6\u13d9\u13a5\u13af\u13cd\u13d7\u13f1": 3142, "\u2581\u13a1\u13e3\u13ab\u13f4": 3143, "\u13a9\u13cd\u13aa": 3144, "\u2581\u13be\u13a6\u13db": 3145, "\u2581\u13bf": 3146, "\u13ce\u13b8\u13a9": 3147, "\u2581\u13c4\u13c5": 3148, "\u13a8\u13cd\u13d7\u13d7": 3149, "\u2581\u13a4\u13c2\u13b8\u13c9\u13d7": 3150, "\u2581\u13a2\u13e5\u13b2": 3151, "\u2581\u13db\u13c2": 3152, "\u2581\u13c2\u13af\u13cd\u13aa": 3153, "\u2581\u13a0\u13f2\u13b1\u13cd": 3154, "\u2581\u13a1\u13b3\u13ea\u13f1": 3155, "\u13a2\u13cd\u13d4\u13c2": 3156, "\u2581\u13c2\u13ac\u13e9": 3157, "\u13da\u13ac": 3158, "\u13c1\u13cd\u13d7": 3159, "\u13e6\u13c5": 3160, "\u2581\u13f1\u13eb": 3161, "\u2581\u13e3\u13a9": 3162, "\u2581\u13a4\u13c2\u13d7": 3163, "\u2581\u13e3\u13c6": 3164, "\u13c1\u13df\u13f4\u13cd\u13d7": 3165, "\u13ac\u13eb\u13f3\u13af": 3166, "\u13c2\u13ac\u13a6": 3167, "\u13c7\u13d3\u13b5": 3168, "\u2581\u13a4\u13a7\u13d4": 3169, "\u2581\u13a6\u13d7": 3170, "\u2581\u13a0\u13d7\u13cd\u13ac": 3171, "\u13f2\u13aa": 3172, "\u13b7\u13e8": 3173, "\u2581\u13c1\u13b5\u13cd\u13ac": 3174, "\u13ce\u13b8\u13af": 3175, "\u2581\u13a3\u13cd\u13d7": 3176, "\u13aa\u13e9\u13db": 3177, "h": 3178, "\u13a5\u13a6": 3179, "\u13b4\u13c5\u13db": 3180, "\u13f0\u13cc\u13db": 3181, "\u2581\u13a4\u13ec\u13c2\u13d2": 3182, "\u2581\u13c2\u13da\u13ea\u13ce\u13b8": 3183, "\u2581\u13af\u13a0\u13c9": 3184, "\u13a6\u13d4": 3185, "\u2581\u13be\u13cd": 3186, "\u2581\u13a0\u13f2\u13df": 3187, "\u2581\u13d3\u13b5\u13cd\u13d7\u13b3\u13c1\u13ac": 3188, "r": 3189, "\u13e5\u13a8\u13f3\u13a2": 3190, "\u2581\u13a4\u13ec\u13b4": 3191, "\u2581\u13d7\u13a6\u13c5\u13ec": 3192, "\u2581\u13a4\u13c1\u13b5\u13ce": 3193, "\u2581\u13a7\u13b8\u13ac": 3194, "\u2581\u13a2\u13d5\u13b2": 3195, "\u2581\u13d3\u13c2\u13b3\u13eb\u13a5": 3196, "\u2581\u13d7\u13e5\u13a6\u13f4\u13b5\u13a8": 3197, "\u2581\u13d3\u13df\u13b6\u13cd\u13db": 3198, "\u2581\u13a4\u13d7\u13db\u13ae": 3199, "\u2581\u13a4\u13da\u13a2\u13cd\u13d4\u13c5": 3200, "\u2581\u13a2\u13a9\u13cd\u13a6\u13c5\u13e8": 3201, "\u2581\u13a4\u13ec\u13ce\u13b4": 3202, "\u2581\u13a4\u13cd\u13d3\u13a6\u13b8": 3203, "\u13a0\u13b9": 3204, "\u13d4\u13be": 3205, "\u2581\u13a0\u13c2\u13d9\u13be\u13a1": 3206, "\u2581\u13da\u13b4\u13af\u13cc\u13c5": 3207, "\u2581\u13a4\u13ea\u13a7\u13c1\u13b4": 3208, "\u2581\u13a0\u13c2\u13a6\u13f4\u13b5\u13a8": 3209, "\u2581\u13d3\u13c2\u13a7\u13c5": 3210, "\u2581\u13e7\u13a6\u13f4\u13b5\u13a8": 3211, "\u2581\u13a4\u13c2\u13a6\u13d9\u13a5\u13d2": 3212, "\u13d8\u13f0": 3213, "\u13b5\u13ec\u13e8": 3214, "\u13ef\u13a0": 3215, "\u13a4\u13cd\u13c6\u13c2\u13a9\u13d7": 3216, "\u13c2\u13a6\u13d3": 3217, "\u13ac\u13eb\u13f3\u13cc\u13d5\u13a9": 3218, "\u2581\u13da\u13c1\u13e4\u13b8": 3219, "\u13a7\u13b5\u13ec\u13af": 3220, "\u2581\u13f3\u13eb": 3221, "\u2581\u13a4\u13c2\u13f4": 3222, "\u2581\u13a4\u13c2\u13a9\u13d2": 3223, "\u2581\u13a2\u13e3\u13da\u13b5": 3224, "\u13df\u13c2\u13a9\u13d3": 3225, "\u2581\u13a0\u13c1\u13ae": 3226, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 3227, "\u2581\u13aa\u13b9\u13b5": 3228, "\u2581\u13da\u13b7\u13eb\u13cd\u13d4\u13c1": 3229, "\u2581\u13e3\u13a8": 3230, "\u2581\u13a2\u13e5\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 3231, "\u2581\u13a2\u13f3\u13c5\u13c1\u13d7": 3232, "\u2581\u13a4\u13be\u13c5\u13d7": 3233, "\u13d4\u13f2\u13ce\u13b8\u13a9": 3234, "\u13b4\u13af\u13cc\u13c5": 3235, "\u2581\u13a8\u13e5\u13c1\u13d7": 3236, "\u2581\u13a4\u13e9\u13db\u13ae": 3237, "\u2581\u13a4\u13be\u13c5\u13c5": 3238, "\u13f4\u13d0\u13b5": 3239, "\u13be\u13d3\u13b4\u13a9": 3240, "\u2581\u13a1\u13c9\u13c4\u13b6\u13d7": 3241, "\u2581\u13a4\u13ad\u13b8\u13c2\u13af": 3242, "\u2581\u13a4\u13c2\u13da\u13ef\u13cd\u13d7": 3243, "\u2581\u13a4\u13d3\u13cf\u13c2\u13d5\u13be": 3244, "\u2581\u13a4\u13ea\u13f2\u13d3\u13db": 3245, "\u2581\u13c5\u13d3\u13ac\u13f4\u13c1\u13b5": 3246, "\u2581\u13c8\u13ef\u13cf\u13c6": 3247, "\u2581\u13d5\u13a8\u13a6\u13e8\u13cd\u13d7\u13cd\u13ac": 3248, "\u2581\u13d7\u13be\u13d9\u13c2\u13cd\u13a9": 3249, "\u2581\u13e6\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 3250, "\u13a6\u13cc\u13ef\u13cd\u13d5\u13cd\u13d7": 3251, "\u2581\u13a2\u13f0\u13c6": 3252, "\u2581\u13a6\u13b5\u13e6\u13d9\u13d9\u13d7": 3253, "\u2581\u13c6\u13bb\u13c6\u13c2": 3254, "\u2581\u13da\u13e9\u13c2\u13a6\u13e2": 3255, "\u2581\u13a0\u13e3\u13ea\u13d0\u13b8\u13cd\u13d9\u13d7\u13f1": 3256, "\u2581\u13af\u13a7\u13c5\u13ad": 3257, "\u2581\u13e7\u13e3\u13f2\u13cd": 3258, "\u2581\u13af\u13a6\u13d9\u13b5": 3259, "\u2581\u13a0\u13b5\u13ae\u13b5\u13a8": 3260, "\u2581\u13a4\u13d3\u13db\u13db\u13c1": 3261, "\u2581\u13e7\u13a6\u13c3\u13ee": 3262, "\u2581\u13c2\u13da\u13be\u13d3\u13ea\u13ce\u13b8\u13a9": 3263, "\u2581\u13eb\u13c2\u13a6\u13b5\u13cd\u13d9\u13d3": 3264, "\u2581\u13d7\u13c9\u13f0\u13c2": 3265, "\u2581\u13d7\u13be\u13d3\u13c2\u13f1\u13cd\u13a9": 3266, "\u2581\u13d7\u13a6\u13c3\u13e3\u13df": 3267, "\u2581\u13be\u13c2\u13b3\u13cd\u13d3\u13b8": 3268, "\u2581\u13e7\u13d9\u13a2\u13d3": 3269, "\u2581\u13d7\u13c6\u13b3\u13cf\u13d5\u13c2": 3270, "\u2581\u13c4\u13ec\u13af\u13f3\u13d2\u13be": 3271, "\u2581\u13c5\u13d3\u13aa\u13af\u13e5": 3272, "\u2581\u13c5\u13c3\u13b1\u13b6\u13d7": 3273, "\u2581\u13c5\u13e9\u13d9\u13af": 3274, "\u13cd\u13a6\u13a3\u13c5": 3275, "\u2581\u13a4\u13ec\u13de": 3276, "\u2581\u13a4\u13ea\u13da\u13b2": 3277, "\u2581\u13e7\u13e9\u13c2\u13a6\u13dd\u13c5": 3278, "\u2581\u13a6\u13e3\u13c4\u13b8": 3279, "\u2581\u13d5\u13e5\u13f2\u13b5\u13b8\u13ad": 3280, "\u2581\u13ac\u13e9\u13d5\u13c1\u13b8\u13af": 3281, "\u2581\u13cc\u13b6\u13b5": 3282, "\u2581\u13a4\u13c2\u13ac\u13a5\u13cd\u13a9": 3283, "\u2581\u13aa\u13d2\u13d4\u13c5": 3284, "\u2581\u13a4\u13c2\u13b8\u13c9\u13d4\u13c1": 3285, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d4\u13c5": 3286, "\u2581\u13b2\u13d7\u13cd\u13a8\u13cd\u13d7": 3287, "\u13a5\u13cd\u13a8\u13cd\u13d7": 3288, "\u2581\u13b0\u13ea\u13b8\u13a6": 3289, "\u2581\u13e7\u13d3\u13d8\u13be\u13a2": 3290, "\u2581\u13d7\u13a7\u13c1\u13a2\u13cd\u13d7": 3291, "\u2581\u13aa\u13e2\u13d7": 3292, "\u2581\u13a4\u13be\u13d3\u13d1\u13f0\u13db": 3293, "\u2581\u13a5\u13a9\u13c5\u13df": 3294, "\u2581\u13a2\u13e8\u13cd\u13d7\u13f0\u13d7\u13ad": 3295, "\u2581\u13a6\u13ef\u13b4\u13cd\u13d7": 3296, "\u2581\u13a2\u13ac\u13ea\u13c5\u13db": 3297, "\u2581\u13a0\u13d3\u13cd\u13d3\u13f4\u13d7": 3298, "\u2581\u13d5\u13aa\u13e2\u13e9\u13d7\u13d2": 3299, "\u2581\u13e7\u13c3\u13e9": 3300, "\u2581\u13c5\u13d3\u13f3\u13d3\u13b4\u13c5\u13db": 3301, "\u2581\u13c2\u13da\u13c5\u13cf\u13f4": 3302, "\u2581\u13d7\u13a9\u13c5\u13d2": 3303, "\u2581\u13c4\u13c2\u13b2\u13be": 3304, "\u2581\u13d7\u13c1\u13d9\u13b2": 3305, "\u2581\u13a0\u13c2\u13be\u13c1\u13cd\u13ac": 3306, "\u2581\u13c4\u13e0\u13be\u13cd\u13db\u13be": 3307, "\u2581\u13a4\u13e2\u13c9\u13d7": 3308, "\u2581\u13cc\u13c8": 3309, "\u2581\u13da\u13a6\u13cc\u13db": 3310, "\u2581\u13a0\u13c6\u13b5\u13cd\u13d3\u13f4\u13d7": 3311, "\u2581\u13a0\u13d3\u13e0\u13cd\u13d7": 3312, "\u2581\u13a0\u13b9\u13f3\u13b6\u13d7": 3313, "\u2581\u13a2\u13e5\u13ea\u13cd\u13d7\u13f1": 3314, "\u13c3\u13b4": 3315, "\u2581\u13a4\u13c2\u13d1\u13b8\u13d3": 3316, "\u2581\u13a1\u13e3\u13b8\u13c9\u13d7\u13f3": 3317, "\u2581\u13a2\u13a0": 3318, "\u2581\u13ac\u13e9\u13d3\u13cd\u13d5\u13b8\u13d7": 3319, "\u2581\u13eb\u13a8\u13e5\u13f2\u13b5\u13ad": 3320, "\u2581\u13a0\u13c2\u13d9\u13be\u13a2": 3321, "\u2581\u13d9\u13d7\u13e3\u13d3\u13c5\u13db\u13a2": 3322, "\u2581\u13a0\u13c1\u13e2\u13d4\u13c5\u13af": 3323, "\u13c5\u13aa\u13e4": 3324, "\u2581\u13ac\u13c1\u13cd\u13d7": 3325, "\u2581\u13d3\u13ad\u13c3\u13eb": 3326, "\u2581\u13da\u13e6\u13af\u13cd\u13db": 3327, "\u2581\u13a4\u13d8\u13f4\u13af": 3328, "\u2581\u13a0\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13af": 3329, "\u2581\u13a1\u13c3\u13f1": 3330, "\u13bf\u13d5\u13a9": 3331, "\u2581\u13a0\u13ef\u13d6\u13be": 3332, "\u2581\u13e7\u13d9\u13d3\u13c6\u13db": 3333, "\u2581\u13a0\u13ac\u13ad\u13b8\u13db": 3334, "\u2581\u13a0\u13c6\u13d3\u13b5\u13a2": 3335, "\u2581\u13a0\u13d3\u13ea\u13b3\u13a9\u13cd\u13ac": 3336, "\u2581\u13a2\u13a7\u13c1\u13a2\u13cd\u13d7": 3337, "\u2581\u13af\u13ec\u13c2\u13cd\u13ac": 3338, "\u2581\u13eb\u13a6\u13b6\u13af\u13cd\u13d7": 3339, "\u2581\u13a4\u13c3\u13cd\u13db": 3340, "\u2581\u13a6\u13c6\u13d8": 3341, "\u2581\u13a4\u13b6\u13af\u13cd\u13d7": 3342, "\u2581\u13a4\u13cd\u13d7\u13a9\u13db": 3343, "\u2581\u13a4\u13c2\u13b5\u13e6\u13e9\u13db": 3344, "\u2581\u13a4\u13a9\u13b5\u13f2\u13e8": 3345, "\u2581\u13e5\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13ad": 3346, "\u2581\u13d3\u13ac\u13c1\u13b5": 3347, "\u2581\u13f1\u13cd\u13a6\u13a2\u13ae\u13cd\u13d7": 3348, "\u2581\u13a4\u13be\u13db\u13c1\u13b8\u13d7": 3349, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13d2\u13a9": 3350, "\u13a6\u13c3\u13b1\u13a9\u13cd\u13ac": 3351, "\u2581\u13a4\u13f0\u13b8\u13ce": 3352, "\u2581\u13d7\u13d3\u13ec\u13cd\u13d7": 3353, "\u2581\u13ac\u13e9\u13c3\u13c1\u13b4": 3354, "\u2581\u13a0\u13aa\u13ce\u13ae\u13cd\u13d7": 3355, "\u2581\u13a6\u13b5\u13a1\u13b5\u13a6": 3356, "\u2581\u13b9\u13be": 3357, "\u13b3\u13a9\u13d2": 3358, "\u2581\u13a2\u13aa\u13af": 3359, "\u2581\u13a0\u13c2\u13ef\u13a2": 3360, "\u2581\u13d5\u13ac\u13d7\u13cd\u13ac": 3361, "\u2581\u13a4\u13db\u13c5\u13a2\u13cd\u13d4\u13c1": 3362, "\u2581\u13a2\u13e5\u13c1\u13cd\u13d7": 3363, "\u2581\u13ae\u13c2\u13b5": 3364, "\u2581\u13a0\u13d3\u13f0\u13a8\u13cd\u13d7": 3365, "\u2581\u13a0\u13f4\u13e4\u13c2": 3366, "\u2581\u13a0\u13aa\u13d4\u13c5\u13af": 3367, "\u2581\u13a4\u13c3\u13af\u13f3\u13d7\u13f1": 3368, "\u2581\u13a0\u13a6\u13b8\u13d3": 3369, "\u2581\u13a0\u13e5\u13c5\u13cf\u13db": 3370, "\u2581\u13f3\u13da\u13b5": 3371, "\u2581\u13e7\u13be\u13c4\u13aa\u13eb\u13d2\u13af": 3372, "\u2581\u13a9\u13be\u13b5\u13a2": 3373, "\u2581\u13ad\u13c2\u13e3": 3374, "\u2581\u13d5\u13a7\u13c1\u13e4": 3375, "\u2581\u13ee\u13db": 3376, "\u2581\u13a0\u13c2\u13af\u13d7": 3377, "\u2581\u13a4\u13be\u13a6\u13d9\u13cd\u13d5\u13a2": 3378, "\u2581\u13ef\u13d7\u13ad": 3379, "\u2581\u13a7\u13c3\u13a9\u13cd\u13d7": 3380, "\u13b2\u13cd\u13ac\u13be": 3381, "\u2581\u13c4\u13be\u13b5\u13cd\u13d3\u13c1\u13b8": 3382, "\u2581\u13a4\u13be\u13d5\u13d7\u13f1": 3383, "\u2581\u13a0\u13f2\u13d9\u13d7": 3384, "\u2581\u13d7\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8\u13af": 3385, "\u2581\u13a0\u13e5\u13b3": 3386, "\u2581\u13a4\u13c2\u13e9\u13db\u13ae": 3387, "\u2581\u13a0\u13c7\u13c5\u13cd\u13d7": 3388, "\u2581\u13e5\u13cd\u13aa\u13b5": 3389, "\u13f0\u13a2\u13b5\u13d3\u13cd\u13d7": 3390, "\u13d3\u13c5\u13d6\u13d7": 3391, "\u2581\u13d5\u13e5\u13c1\u13b8": 3392, "\u2581\u13a4\u13c2\u13a9\u13cd\u13d7\u13f1": 3393, "\u2581\u13a4\u13c2\u13c1\u13ac": 3394, "\u2581\u13ec\u13a9\u13b7\u13e8\u13a9": 3395, "\u2581\u13a4\u13d7\u13d7\u13e2": 3396, "\u2581\u13a4\u13e1\u13d7\u13cd\u13a9": 3397, "\u2581\u13d9\u13e5": 3398, "\u2581\u13a0\u13ac\u13d7\u13cd\u13ac\u13a2": 3399, "\u2581\u13a1\u13ae\u13be": 3400, "\u2581\u13a7\u13eb": 3401, "\u2581\u13a0\u13b4\u13c2\u13cd\u13a9": 3402, "\u2581\u13a0\u13d3\u13b4\u13c2\u13cd\u13ac": 3403, "\u13d3\u13c1\u13ae": 3404, "\u2581\u13a0\u13c2\u13a9\u13cd\u13ac": 3405, "\u13f2\u13be": 3406, "\u13a4\u13f2": 3407, "\u2581\u13e7\u13c1\u13e4\u13a2": 3408, "\u2581\u13a4\u13ea\u13c5\u13a9": 3409, "\u2581\u13d7\u13e5\u13be\u13eb\u13f1": 3410, "\u13d3\u13f4\u13b3\u13db": 3411, "\u2581\u13a6\u13df\u13ae": 3412, "\u2581\u13a0\u13aa\u13b5\u13f0\u13d7": 3413, "\u13db\u13c1\u13b2": 3414, "\u2581\u13ea": 3415, "\u2581\u13a4\u13f0\u13b8\u13ad": 3416, "\u13ef\u13d4\u13ae\u13cd\u13d7": 3417, "\u2581\u13d7\u13a7\u13c2\u13a8": 3418, "\u2581\u13d3\u13cd\u13db\u13a2": 3419, "\u2581\u13a4\u13cc\u13af\u13b8\u13a2": 3420, "\u2581\u13d7\u13c1\u13af": 3421, "\u2581\u13d5\u13e3\u13a7": 3422, "\u2581\u13ce\u13c9": 3423, "\u2581\u13c4\u13db\u13c5\u13a2": 3424, "\u13cd\u13db\u13a2": 3425, "\u2581\u13a0\u13e5\u13db\u13d9\u13d7": 3426, "\u2581\u13be\u13c6\u13cd\u13db": 3427, "\u2581\u13d3\u13c6\u13a7\u13be\u13c5": 3428, "\u2581\u13a0\u13ef\u13a5": 3429, "\u13ef\u13c5": 3430, "\u2581\u13a2\u13a9\u13cd\u13a6\u13c5\u13e8\u13a2": 3431, "\u2581\u13a4\u13c2\u13c1\u13e8\u13a9": 3432, "\u2581\u13a4\u13be\u13d3\u13c5\u13ce": 3433, "\u2581\u13a6\u13d3\u13cd\u13ac\u13a2": 3434, "\u2581\u13ae\u13d3": 3435, "\u2581\u13a4\u13b4\u13c5\u13a9": 3436, "\u2581\u13d3\u13e4\u13b8": 3437, "\u2581\u13d9\u13ef": 3438, "\u2581\u13a6\u13c1\u13df\u13f4\u13cd\u13d7": 3439, "\u2581\u13da\u13e9\u13db\u13ae": 3440, "\u2581\u13a6\u13c4\u13b8\u13d2": 3441, "\u2581\u13d7\u13aa\u13e2": 3442, "\u2581\u13c5\u13b5\u13cc\u13b5\u13c9": 3443, "\u2581\u13a4\u13c2\u13a9\u13ce\u13a2": 3444, "\u13c2\u13cd\u13d9\u13d7": 3445, "\u2581\u13a3\u13d2": 3446, "\u2581\u13ac\u13a8\u13f3\u13a2": 3447, "\u2581\u13a4\u13c2\u13aa\u13b2\u13af": 3448, "\u2581\u13cf\u13b3": 3449, "\u2581\u13e3\u13da\u13b5\u13cd\u13ac": 3450, "\u13a0\u13c6": 3451, "\u13d0\u13c9": 3452, "\u2581\u13ee\u13d3": 3453, "\u2581\u13a4\u13e9\u13d4\u13c5": 3454, "\u13c3\u13ae\u13b8": 3455, "\u13d5\u13ef\u13d9\u13d4\u13c5\u13a9": 3456, "\u13a5\u13cf": 3457, "\u2581\u13a0\u13cd\u13d8": 3458, "\u2581\u13a4\u13cd\u13c9\u13df": 3459, "\u2581\u13a6\u13ac\u13e9": 3460, "\u2581\u13d7\u13a6\u13c5": 3461, "\u2581\u13a4\u13c1\u13b3": 3462, "\u13e5\u13b6\u13cf": 3463, "\u13d4\u13c2\u13d3": 3464, "\u2581\u13a6\u13c5\u13c5\u13a2": 3465, "\u2581\u13aa\u13ea\u13b8\u13a9": 3466, "\u2581\u13a0\u13b5\u13cd\u13c6\u13d7\u13cd": 3467, "\u2581\u13a4\u13c1\u13d2": 3468, "\u2581\u13a4\u13a6\u13c3": 3469, "\u2581\u13d3\u13b6\u13c2\u13a8\u13a2": 3470, "\u2581\u13e8\u13d7": 3471, "\u2581\u13c4\u13d3\u13b4\u13af": 3472, "\u2581\u13a1\u13cd\u13a6\u13c2": 3473, "\u2581\u13a4\u13ec\u13b8\u13a2": 3474, "\u13a7\u13cf": 3475, "\u2581\u13a0\u13a6\u13d9": 3476, "\u2581\u13a0\u13c2\u13f2": 3477, "\u13aa\u13b2": 3478, "\u13d9\u13b3": 3479, "\u2581\u13a4\u13ed": 3480, "\u13e6\u13e9\u13db": 3481, "\u2581\u13a0\u13c2\u13cd\u13a6\u13be\u13a2": 3482, "\u13b8\u13c9\u13db\u13be": 3483, "\u2581\u13c4\u13cd\u13d5\u13a2": 3484, "\u13af\u13f3\u13b2\u13cd\u13a6": 3485, "\u2581\u13ae\u13af": 3486, "\u13a1\u13b5\u13cd\u13d7": 3487, "\u2581\u13c5\u13d7": 3488, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd\u13d9\u13d7": 3489, "\u2581\u13a4\u13a6\u13db": 3490, "\u2581\u13a4\u13c1\u13e4\u13b8\u13a2": 3491, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c2\u13d9\u13b8\u13a2": 3492, "\u13af\u13ef": 3493, "\u13ac\u13be\u13a8": 3494, "\u2581\u13f2\u13e5": 3495, "\u13cd\u13a6\u13c3\u13b3": 3496, "\u2581\u13a5\u13e3": 3497, "\u2581\u13c5\u13e9\u13cd\u13db": 3498, "\u2581\u13da\u13ec": 3499, "\u2581\u13a4\u13be\u13db\u13a6\u13c5\u13a9": 3500, "\u13a9\u13cd\u13d7\u13f1": 3501, "\u13a7\u13c5": 3502, "\u13b5\u13b9": 3503, "\u2581\u13b2\u13a6": 3504, "\u2581\u13b5\u13cf": 3505, "\u2581\u13d5\u13c5": 3506, "\u13cd\u13d9\u13d7\u13f1": 3507, "\u2581\u13a7\u13b5": 3508, "\u2581\u13a2\u13e5\u13a9": 3509, "\u2581\u13f1\u13be": 3510, "\u13be\u13c9": 3511, "ss": 3512, "\u2581\u13a4\u13cd\u13aa": 3513, "\u13e6\u13f0\u13c2": 3514, "\u2581\u13a4\u13e9\u13c1": 3515, "\u13ef\u13c5\u13b2\u13a9": 3516, "\u2581\u13af\u13c1\u13b8": 3517, "s": 3518, "\u13de": 3519, "\u2581\u13a2\u13e3\u13df\u13c2\u13ac\u13c1": 3520, "\u2581\u13a0\u13c2\u13d4\u13b5\u13ad": 3521, "\u2581\u13e5\u13aa\u13a5": 3522, "\u13d9\u13b5\u13e8": 3523, "\u2581\u13ac\u13e9\u13cd\u13d3\u13e9\u13d7": 3524, "\u2581\u13e3\u13db": 3525, "\u2581\u13a4\u13b5\u13cd\u13da\u13a2": 3526, "\u2581\u13be\u13d5\u13d8\u13f4": 3527, "\u2581\u13a4\u13d7\u13d4\u13cd\u13d7": 3528, "\u13b4\u13c3": 3529, "\u2581\u13d7\u13b2": 3530, "\u13ec\u13c2\u13cd\u13ac": 3531, "\u13d3\u13c5\u13d6\u13b4": 3532, "\u2581\u13d9\u13c9": 3533, "\u13e5\u13c3\u13ae\u13cd\u13a9": 3534, "\u13f0\u13b8\u13ad": 3535, "\u13eb\u13d2": 3536, "\u2581\u13a4\u13c2\u13b7\u13e4\u13b8": 3537, "\u2581\u13f1\u13d5": 3538, "\u13d8\u13c3\u13ae\u13b8\u13a9": 3539, "\u2581\u13d3\u13f2": 3540, "\u13e6\u13e2\u13d9\u13d7": 3541, "\u2581\u13a0\u13cc": 3542, "\u13f0\u13b8\u13b2": 3543, "\u2581\u13a0\u13a9\u13f0\u13b8\u13c5": 3544, "\u2581\u13a8\u13a9": 3545, "\u13f0\u13b8\u13d7": 3546, "\u13cd\u13da\u13a2\u13d2": 3547, "\u13b6\u13cf": 3548, "\u2581\u13d1\u13be\u13b4\u13c9": 3549, "\u13cf\u13be\u13cc\u13c2": 3550, "\u13f4\u13b5": 3551, "\u2581\u13a2\u13e3\u13b5\u13ae\u13b5": 3552, "\u2581\u13e5\u13c1": 3553, "\u13e3\u13b5\u13cd\u13d9": 3554, "\u2581\u13a4\u13ea\u13c5\u13ce\u13c3": 3555, "\u2581\u13cd\u13a6": 3556, "\u2581\u13d7\u13ab": 3557, "\u2581\u13a4\u13c1\u13c5": 3558, "\u13a6\u13d8\u13f4": 3559, "\u2581\u13ac\u13e9\u13aa\u13e9\u13db": 3560, "\u2581\u13a0\u13c1\u13b6\u13af": 3561, "\u2581\u13e7\u13c4\u13ec": 3562, "\u2581\u13da\u13c3": 3563, "\u2581\u13ac\u13be": 3564, "\u13cd\u13d4\u13c5\u13ad": 3565, "\u13af\u13d3": 3566, "\u2581\u13d5\u13a6\u13c5": 3567, "\u2581\u13a0\u13a6\u13d4\u13ae": 3568, "\u2581\u13a6\u13c2\u13cf": 3569, "\u13b7\u13e4\u13b8": 3570, "\u13c1\u13ce\u13a2": 3571, "\u2581\u13f1\u13c2\u13ac": 3572, "\u2581\u13da\u13c2\u13f2": 3573, "\u2581\u13d7\u13a9\u13a6": 3574, "\u13d5\u13ac": 3575, "\u13be\u13c4\u13aa\u13e9": 3576, "\u2581\u13a4\u13a6": 3577, "\u13c1\u13b8\u13ad": 3578, "\u13b3\u13d5": 3579, "\u13db\u13c1\u13b5": 3580, "\u13cd\u13d6": 3581, "\u2581\u13d3\u13c2\u13b8": 3582, "\u2581\u13a4\u13c2\u13b6\u13d2": 3583, "\u13cf\u13b3": 3584, "\u13a4\u13cd\u13d7": 3585, "\u2581\u13d7\u13a9\u13f2\u13af": 3586, "\u13ed": 3587, "\u13e3\u13b5": 3588, "\u13e6": 3589, "\u2581\u13af\u13cd\u13a9\u13a6\u13da": 3590, "\u13e3\u13c5\u13a9": 3591, "\u13d9\u13ac": 3592, "\u2581\u13f1\u13cd\u13a9": 3593, "\u2581\u13a4\u13f0": 3594, "\u13c5\u13d3\u13d7\u13cd\u13d7": 3595, "\u13db\u13d4\u13c2": 3596, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 3597, "\u2581\u13a4\u13e9\u13d2\u13cd\u13a9\u13c2": 3598, "\u2581\u13a0\u13d3\u13c5": 3599, "\u2581\u13eb\u13e8\u13f2\u13ea\u13b3": 3600, "\u2581\u13be\u13d3": 3601, "\u2581\u13c4\u13ec": 3602, "\u2581\u13e5\u13a6\u13d4\u13b2": 3603, "\u2581\u13c2\u13e8": 3604, "\u13f2\u13cd\u13d4\u13c2": 3605, "\u2581\u13d3\u13a8\u13e3": 3606, "\u13cb": 3607, "\u13e2\u13a2": 3608, "\u2581\u13a4\u13be\u13d5": 3609, "\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 3610, "\u2581\u13c2\u13a6\u13a5\u13a9": 3611, "\u2581\u13da\u13c2\u13a7\u13b5": 3612, "\u13a2\u13cd\u13d9\u13d7": 3613, "\u13e9\u13db": 3614, "\u13e9\u13d2": 3615, "\u2581\u13cd": 3616, "\u2581\u13c8\u13b5": 3617, "\u2581\u13a2\u13cd\u13d3": 3618, "\u13e0\u13cd\u13d7": 3619, "\u13b5\u13d9\u13b4": 3620, "\u13af\u13af": 3621, "\u2581\u13d5\u13e8": 3622, "\u2581\u13e5\u13da\u13c2": 3623, "\u13e5\u13aa\u13e9\u13db\u13d7\u13f1": 3624, "\u13c6\u13cf": 3625, "\u13d8\u13c3\u13b8": 3626, "\u13c7\u13c5": 3627, "\u13cd\u13d3\u13f1": 3628, "\u13f4\u13d7": 3629, "\u2581\u13a4\u13ad": 3630, "\u13b8\u13db": 3631, "\u2581\u13a4\u13be\u13a9\u13b8": 3632, "\u13c1\u13e8": 3633, "\u13e8\u13d7": 3634, "\u2581\u13a4\u13cd\u13d7\u13c9": 3635, "\u13cd\u13d7\u13cd\u13a9": 3636, "\u13aa\u13db": 3637, "\u2581\u13ac\u13e9\u13d3": 3638, "\u13b4\u13a3": 3639, "\u2581\u13a4\u13c3\u13ae\u13b8": 3640, "\u2581\u13a2\u13e5\u13e0": 3641, "\u13cd\u13da": 3642, "\u2581\u13a4\u13b5\u13ae\u13b5\u13e8": 3643, "\u13ec\u13a5": 3644, "\u2581\u13c2\u13e3\u13db\u13c1\u13b2": 3645, "d": 3646, "\u2581\u13a4\u13c2\u13d9": 3647, "\u2581\u13da\u13be\u13c4\u13aa\u13eb\u13ce\u13b4": 3648, "\u2581\u13a6\u13a6\u13b6": 3649, "\u2581\u13d3\u13c2\u13d9\u13a8": 3650, "\u13e7\u13cd\u13c6\u13f4\u13cd\u13d7": 3651, "\u2581\u13d9\u13d3\u13c6\u13cd\u13ac": 3652, "\u13d7\u13a6\u13b5\u13a0\u13c5\u13af\u13db": 3653, "\u2581\u13e4\u13b2": 3654, "\u2581\u13d5\u13a6\u13b6\u13a8\u13d2": 3655, "\u13d1\u13be\u13b4": 3656, "\u2581\u13a4\u13e6\u13f1\u13b4": 3657, "\u2581\u13ed\u13c2\u13b6\u13ce": 3658, "\u2581\u13a4\u13cc\u13af\u13b8": 3659, "\u2581\u13d5\u13e3\u13d3\u13c5\u13db": 3660, "\u2581\u13a7\u13c1\u13cc": 3661, "\u2581\u13a0\u13cd\u13c6\u13b5\u13cd\u13ac": 3662, "\u2581\u13a4\u13d3\u13d1\u13f4": 3663, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13ce\u13b4": 3664, "\u2581\u13d7\u13e7": 3665, "\u13cd\u13c6\u13c2\u13aa\u13d4\u13c2": 3666, "\u2581\u13d9\u13d3\u13ac": 3667, "\u13a2\u13a6": 3668, "\u2581\u13c4\u13be\u13db\u13c1\u13b4": 3669, "\u13a4\u13d9\u13af\u13f3\u13af": 3670, "\u13b3\u13c1": 3671, "\u2581\u13a0\u13c2\u13cd\u13a6\u13a2\u13b2": 3672, "\u13d4\u13f2\u13cd\u13d7": 3673, "\u2581\u13a4\u13c2\u13f4\u13ae": 3674, "\u2581\u13c2\u13a8\u13ce": 3675, "\u2581\u13a4\u13ea\u13f4": 3676, "\u2581\u13e7\u13b5\u13cf": 3677, "\u13e0\u13e8": 3678, "\u13d3\u13b4\u13c2\u13cd\u13ac": 3679, "\u13cd\u13c8\u13ef": 3680, "\u2581\u13a0\u13ab": 3681, "\u2581\u13ec\u13a9\u13b7\u13e8": 3682, "\u2581\u13c2\u13a6\u13c5\u13af\u13d2": 3683, "\u13a6\u13b8": 3684, "\u2581\u13a6\u13a2\u13d2": 3685, "\u2581\u13a1\u13b5\u13cd\u13ac": 3686, "\u13ac\u13c1\u13b5": 3687, "\u2581\u13be\u13ef\u13db\u13a5": 3688, "\u2581\u13d5\u13a6\u13a7\u13b2": 3689, "\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7": 3690, "\u2581\u13a4\u13c1\u13dd\u13c5": 3691, "\u13f0\u13b8": 3692, "\u2581\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 3693, "\u2581\u13da\u13e9\u13c2\u13a6\u13b8": 3694, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d4\u13c5": 3695, "\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7": 3696, "\u13b5\u13cd\u13d3\u13f4\u13d9\u13d7": 3697, "\u2581\u13e7\u13ed\u13aa\u13d9\u13d7": 3698, "\u2581\u13a4\u13be\u13c2\u13a9\u13d2": 3699, "\u13a6\u13b5\u13b7\u13a8\u13cd\u13d7": 3700, "\u2581\u13a5\u13de": 3701, "\u2581\u13c2\u13a6\u13db\u13c1\u13b2": 3702, "\u2581\u13aa\u13b5\u13cd\u13d7": 3703, "\u13a6\u13d8\u13d5\u13af": 3704, "\u2581\u13e7\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7": 3705, "\u2581\u13a0\u13e9\u13be\u13a6\u13b3": 3706, "\u2581\u13e5\u13a6\u13d8\u13cf": 3707, "\u2581\u13a0\u13b5\u13cf\u13be\u13af\u13cd\u13d4\u13c5\u13af": 3708, "\u2581\u13a0\u13c2\u13f0\u13aa\u13a9": 3709, "\u2581\u13a0\u13f2\u13d3\u13cc\u13b2": 3710, "\u2581\u13a4\u13be\u13d7\u13cd\u13a6\u13df": 3711, "\u2581\u13a4\u13e9\u13ad\u13c2\u13b4": 3712, "\u2581\u13c2\u13a9\u13ea\u13ce\u13b8\u13ad": 3713, "\u2581\u13c5\u13e7\u13d3\u13b4\u13c5\u13b2\u13be": 3714, "\u2581\u13d7\u13e6\u13ea\u13b5\u13cd\u13a9": 3715, "\u2581\u13a0\u13d0\u13a5\u13cd\u13d9\u13d7": 3716, "\u2581\u13c5\u13db\u13c6\u13d3\u13b4\u13c5\u13af": 3717, "\u2581\u13cf\u13b5\u13c6": 3718, "\u2581\u13e3\u13d3\u13f2\u13c1\u13b8\u13a9": 3719, "\u2581\u13a0\u13be\u13d3\u13cd\u13a6\u13b6\u13a9": 3720, "\u2581\u13a6\u13c5\u13c3\u13e9": 3721, "\u2581\u13c5\u13e5\u13ea\u13ce\u13b8\u13a9": 3722, "\u2581\u13a4\u13da\u13d3\u13b4\u13db": 3723, "\u2581\u13a0\u13d3\u13ea\u13af": 3724, "\u2581\u13c4\u13be\u13d3\u13a1\u13cd\u13d7": 3725, "\u2581\u13e6\u13d1\u13eb": 3726, "\u2581\u13a4\u13ea\u13d0\u13c5\u13f4": 3727, "\u2581\u13a4\u13db\u13b4\u13ae": 3728, "\u2581\u13a4\u13bf\u13b7\u13d2\u13a9": 3729, "\u2581\u13a2\u13e3\u13db\u13d3\u13cd\u13d3": 3730, "\u2581\u13a2\u13b3\u13a9\u13f3": 3731, "\u13f2\u13a6": 3732, "\u2581\u13a0\u13aa\u13d5\u13cd\u13a9": 3733, "\u2581\u13e7\u13c1\u13bf\u13a2": 3734, "\u2581\u13a0\u13cd\u13a9\u13d3\u13cd\u13ac": 3735, "\u2581\u13e4\u13c6\u13b3\u13c2": 3736, "\u2581\u13e7\u13c1\u13b5\u13c1": 3737, "\u2581\u13a8\u13b4\u13cf\u13f1": 3738, "\u2581\u13a4\u13b5\u13cf\u13c2\u13d5\u13c5": 3739, "\u2581\u13a4\u13b5\u13f2\u13d7": 3740, "\u2581\u13a2\u13aa\u13ea\u13b3": 3741, "\u2581\u13d5\u13e5\u13c3\u13a9\u13cd\u13a8\u13cd\u13d7": 3742, "\u2581\u13be\u13a8\u13a2\u13f4": 3743, "\u2581\u13a0\u13be\u13d3\u13cd\u13d3\u13e9\u13d7\u13d9\u13af": 3744, "\u2581\u13a4\u13c2\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7": 3745, "\u2581\u13d3\u13f2\u13e4\u13cf": 3746, "\u2581\u13d4\u13d8\u13c4\u13a6": 3747, "\u2581\u13a0\u13be\u13b5\u13cd\u13d5\u13b5\u13cd\u13a9": 3748, "\u2581\u13f1\u13c2\u13ac\u13c1\u13ad": 3749, "\u2581\u13a0\u13d3\u13c5\u13d6\u13cd\u13aa": 3750, "\u2581\u13c2\u13a9\u13ea\u13cf": 3751, "\u2581\u13da\u13a8\u13d3\u13b5\u13f4": 3752, "\u2581\u13a0\u13be\u13d3\u13e4\u13b5": 3753, "\u2581\u13a0\u13e6\u13b3\u13c5": 3754, "\u2581\u13d5\u13e5\u13a7\u13bf\u13e9\u13d7\u13d9\u13ae\u13cd\u13d7": 3755, "\u2581\u13da\u13cd\u13d3\u13a6\u13b8": 3756, "\u2581\u13f1\u13e4\u13b5\u13af\u13cd\u13a8\u13cd\u13d7": 3757, "\u2581\u13d7\u13a6\u13b6\u13d4\u13c5": 3758, "\u2581\u13da\u13ad\u13c4\u13ee": 3759, "\u2581\u13d7\u13a7\u13c3\u13a9\u13cd\u13d9\u13d7": 3760, "\u2581\u13e7\u13be\u13ac\u13e9\u13b6\u13d7": 3761, "\u2581\u13a4\u13ed\u13e2\u13d4\u13c5\u13a9": 3762, "\u13d8\u13ef\u13cd\u13d3\u13c1": 3763, "\u2581\u13d7\u13be\u13a2\u13d2": 3764, "\u2581\u13d5\u13aa\u13ea\u13b4\u13cd\u13d7": 3765, "\u2581\u13a4\u13c1\u13c9\u13e8": 3766, "\u2581\u13eb\u13d7\u13b6\u13af": 3767, "\u2581\u13d3\u13a6\u13db\u13c1\u13b5": 3768, "\u2581\u13c4\u13ea\u13b2\u13be": 3769, "\u2581\u13a2\u13e6\u13af\u13f3\u13d7\u13f1": 3770, "\u2581\u13a4\u13db\u13a6\u13cd\u13d5": 3771, "\u2581\u13d3\u13f1\u13be": 3772, "\u2581\u13ae\u13b5\u13a0": 3773, "\u2581\u13a0\u13d3\u13f2\u13c1\u13ae\u13cd\u13d7": 3774, "\u2581\u13a1\u13e5\u13c5\u13cf\u13d3\u13cd\u13d7": 3775, "\u2581\u13a2\u13ac\u13db\u13c1\u13d7": 3776, "\u2581\u13a3\u13a6\u13da\u13b5\u13ad": 3777, "\u2581\u13e5\u13da\u13f3\u13aa\u13d7": 3778, "\u2581\u13e7\u13c2\u13b6\u13b8\u13d7": 3779, "\u2581\u13a8\u13e5\u13cd\u13d5\u13b8\u13d7": 3780, "\u2581\u13a0\u13ab\u13e9\u13cc": 3781, "\u2581\u13a6\u13c2\u13a9\u13b8": 3782, "\u2581\u13a2\u13ef\u13e5\u13b8\u13c9\u13d7": 3783, "\u2581\u13a4\u13ac\u13a5\u13cd\u13a9": 3784, "\u2581\u13f0\u13d9\u13ad": 3785, "\u2581\u13a0\u13c2\u13aa\u13b2\u13ad": 3786, "\u2581\u13a0\u13f0\u13df": 3787, "\u2581\u13bf\u13db\u13a6": 3788, "\u2581\u13ac\u13ec\u13af\u13f3\u13c5\u13a9": 3789, "\u2581\u13e7\u13c2\u13c1\u13df\u13f4\u13cd\u13d7": 3790, "\u2581\u13e3\u13a6\u13e8\u13cd": 3791, "\u2581\u13a4\u13b4\u13f4\u13d2": 3792, "\u2581\u13a0\u13cd\u13d5\u13ef\u13d3": 3793, "\u2581\u13a2\u13f3\u13ea\u13ce\u13b8\u13af": 3794, "\u2581\u13b2\u13d3": 3795, "\u2581\u13d3\u13ad\u13cf": 3796, "\u2581\u13cd\u13a9\u13cd\u13d3\u13e9\u13da\u13a6": 3797, "\u2581\u13a4\u13c2\u13aa\u13e9\u13db\u13d7\u13f1": 3798, "\u2581\u13af\u13b8\u13c9\u13d3": 3799, "\u2581\u13e3\u13d9\u13b3\u13c5\u13cd\u13d7": 3800, "\u2581\u13a4\u13d5\u13b6\u13b0\u13d2": 3801, "\u2581\u13ad\u13d3\u13c5\u13be": 3802, "\u2581\u13d7\u13ab\u13aa\u13d7\u13cd\u13a9": 3803, "\u2581\u13a4\u13b6\u13d7\u13e2": 3804, "\u2581\u13c2\u13f4\u13c1\u13b8": 3805, "\u2581\u13c2\u13e3\u13db\u13bf\u13d5\u13ac\u13a2": 3806, "\u2581\u13d7\u13aa\u13e2\u13c5\u13af": 3807, "\u2581\u13d1\u13d3\u13b5\u13cd\u13aa\u13af": 3808, "\u2581\u13a2\u13a9\u13c1\u13b8": 3809, "\u2581\u13a0\u13cd\u13a9\u13d7\u13cd\u13a8\u13a2": 3810, "\u2581\u13a2\u13e3\u13da\u13b5\u13cd\u13a8\u13cd\u13d7": 3811, "\u2581\u13da\u13ef\u13ea\u13a8": 3812, "\u2581\u13a2\u13e5\u13ef\u13a1\u13cd\u13d7": 3813, "\u2581\u13cd\u13c8\u13cd\u13d4": 3814, "\u2581\u13d7\u13e3\u13a7\u13c5\u13a6": 3815, "\u2581\u13eb\u13e5\u13b7\u13e8\u13ad": 3816, "\u2581\u13a2\u13e3\u13b5\u13ae\u13b5\u13a8\u13cd\u13d7": 3817, "\u2581\u13a8\u13e5\u13c5\u13d2\u13af": 3818, "\u2581\u13e5\u13e3\u13db\u13a9\u13ad": 3819, "\u2581\u13d7\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7\u13f1": 3820, "\u2581\u13c7\u13d7\u13c2\u13f1": 3821, "\u2581\u13b6\u13bb": 3822, "\u2581\u13a1\u13e5\u13ef\u13c5\u13db": 3823, "\u2581\u13a0\u13e0\u13d7\u13f1": 3824, "\u2581\u13a4\u13cd\u13c6": 3825, "\u2581\u13ce\u13d8": 3826, "\u2581\u13e7\u13b3\u13cd\u13a9": 3827, "\u2581\u13a4\u13be\u13db\u13c5\u13a9": 3828, "\u2581\u13e7\u13b7\u13eb\u13cd\u13d4\u13c1\u13d7": 3829, "\u2581\u13a0\u13c2\u13a6\u13f2\u13df": 3830, "\u2581\u13d7\u13e3\u13d3\u13b4\u13c5\u13db": 3831, "\u2581\u13c8\u13b5\u13cf": 3832, "\u2581\u13cd\u13aa\u13c1": 3833, "\u2581\u13a0\u13a9\u13b5\u13a8\u13c2": 3834, "\u2581\u13a4\u13c1\u13af": 3835, "\u2581\u13a0\u13c2\u13f4\u13a9": 3836, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b8\u13a9": 3837, "\u2581\u13a6\u13c3\u13d9\u13d7\u13f1": 3838, "\u2581\u13aa\u13af\u13a2\u13f4": 3839, "\u2581\u13a2\u13a6\u13b5\u13cd\u13d9\u13d7\u13f1": 3840, "\u2581\u13da\u13c3\u13b8": 3841, "\u2581\u13a2\u13e8\u13c3\u13ae\u13ae\u13b8": 3842, "\u2581\u13c2\u13e8\u13a6": 3843, "\u2581\u13a2\u13a6\u13a6\u13d3": 3844, "\u2581\u13aa\u13b0\u13cd": 3845, "\u2581\u13a4\u13d3\u13d9\u13b5\u13e3\u13db": 3846, "\u2581\u13a0\u13e8\u13cd\u13db": 3847, "\u2581\u13b9\u13a6": 3848, "\u2581\u13d3\u13be\u13d5\u13f2\u13b2\u13cd\u13ac": 3849, "\u2581\u13c4\u13e9\u13c1\u13b0": 3850, "\u2581\u13a4\u13a6\u13d4\u13d4\u13c5\u13af": 3851, "\u2581\u13a4\u13c3\u13af\u13f3\u13c5\u13af": 3852, "\u2581\u13a0\u13d3\u13c1\u13e3\u13cd\u13da\u13b6\u13a9\u13af": 3853, "\u13a1\u13b8": 3854, "\u2581\u13a0\u13cd\u13ab\u13d5\u13cd\u13d7\u13f1": 3855, "\u2581\u13a4\u13f0\u13e8": 3856, "\u2581\u13ef\u13c2\u13a6\u13d4\u13ae": 3857, "\u2581\u13e5\u13c1\u13a6": 3858, "\u2581\u13a4\u13db\u13d2\u13af": 3859, "\u2581\u13a2\u13cd\u13d5\u13be": 3860, "\u2581\u13d7\u13d8\u13f2\u13af": 3861, "\u2581\u13c3\u13a9\u13ea\u13ce\u13b8": 3862, "\u2581\u13a0\u13a6\u13d4\u13af\u13f3": 3863, "\u2581\u13a4\u13d3\u13f4\u13ce\u13a2": 3864, "\u2581\u13e7\u13d3\u13b4": 3865, "\u2581\u13e5\u13d9\u13a6": 3866, "\u2581\u13ac\u13e9\u13db\u13d7": 3867, "\u2581\u13a4\u13ea\u13a7\u13c1\u13a2": 3868, "\u2581\u13a4\u13be\u13d5\u13d7": 3869, "\u2581\u13e5\u13aa\u13e9\u13d8\u13cd\u13ac": 3870, "\u2581\u13a4\u13c1\u13c9\u13e8\u13af": 3871, "\u2581\u13d3\u13a7\u13c5": 3872, "\u2581\u13a9\u13b3\u13af\u13f3": 3873, "\u2581\u13a4\u13be\u13c4\u13aa\u13a2\u13cd\u13d7": 3874, "\u2581\u13a4\u13c2\u13be\u13eb": 3875, "\u2581\u13c7\u13b5\u13a9": 3876, "\u2581\u13aa\u13ea\u13b4": 3877, "\u2581\u13a4\u13c3\u13af\u13f3\u13c5\u13a9": 3878, "\u2581\u13d3\u13e8\u13c1\u13b5": 3879, "\u2581\u13a1\u13a6": 3880, "\u2581\u13a4\u13aa\u13e9\u13db\u13d7\u13f1": 3881, "\u2581\u13a8\u13b5\u13cd\u13a9": 3882, "\u2581\u13d7\u13a6\u13e5": 3883, "\u2581\u13e5\u13ef\u13b5\u13a1\u13b5\u13e4": 3884, "\u13c1\u13c9\u13e5": 3885, "\u2581\u13a1\u13d3\u13cd\u13d7": 3886, "\u2581\u13a4\u13be\u13db\u13aa\u13d7\u13f1": 3887, "\u2581\u13a4\u13ea\u13cd\u13a9\u13b8\u13a2": 3888, "\u2581\u13eb\u13e5\u13a6\u13db\u13a2": 3889, "\u2581\u13e7\u13d3\u13b5\u13a2": 3890, "\u2581\u13a4\u13a9\u13d2\u13a9": 3891, "\u2581\u13a0\u13c2\u13c3\u13ae\u13ad": 3892, "\u2581\u13c2\u13da\u13e9\u13c1\u13b4\u13a2": 3893, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13db": 3894, "\u2581\u13bb\u13b3": 3895, "\u2581\u13a2\u13a6\u13b5\u13a2": 3896, "\u2581\u13be\u13ef\u13db\u13a5\u13a9": 3897, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d4\u13c1\u13a2": 3898, "\u2581\u13d7\u13be\u13d3\u13aa\u13be\u13d7\u13cd\u13ac\u13a2": 3899, "\u2581\u13a0\u13be\u13d3\u13aa\u13be\u13d7\u13cd\u13ac\u13a2": 3900, "\u13cd\u13a6\u13ce\u13d7": 3901, "\u2581\u13a4\u13be\u13c2\u13a9\u13d2\u13a9": 3902, "\u2581\u13a6\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac\u13a2": 3903, "\u2581\u13a2\u13aa": 3904, "\u2581\u13a2\u13f3\u13d2\u13af": 3905, "\u2581\u13a0\u13a6\u13cd\u13a9": 3906, "\u13c5\u13ec\u13d7\u13f1": 3907, "\u2581\u13e5\u13f0\u13b8\u13a2": 3908, "\u2581\u13a4\u13ec\u13e2\u13c5": 3909, "\u2581\u13a3\u13b5\u13e9\u13f2": 3910, "\u13d3\u13db\u13cd\u13a9": 3911, "\u2581\u13a4\u13c7\u13d3\u13b5\u13c9": 3912, "\u2581\u13a4\u13be\u13c2\u13a9\u13ce\u13a2": 3913, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6\u13b4": 3914, "\u2581\u13a4\u13e9\u13d4\u13c5\u13a9": 3915, "\u13c2\u13d3\u13cd\u13d7": 3916, "\u2581\u13a4\u13c2\u13e3\u13d6\u13cd\u13d7": 3917, "\u2581\u13a0\u13c6\u13e3": 3918, "\u2581\u13a4\u13a9\u13ce\u13a2": 3919, "\u2581\u13da\u13e9\u13c2\u13a6\u13b8\u13a2": 3920, "\u2581\u13a4\u13e6\u13f1\u13b4\u13a2": 3921, "\u2581\u13a4\u13b5\u13cd\u13c6\u13db": 3922, "\u2581\u13a0\u13a2\u13d2\u13a9": 3923, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6\u13b8": 3924, "\u2581\u13a6\u13ef\u13b8": 3925, "\u13d3\u13c2\u13b8\u13a9": 3926, "\u2581\u13e5\u13c4\u13cd\u13d5": 3927, "\u2581\u13e3\u13d7\u13ad": 3928, "\u2581\u13a4\u13cd\u13aa\u13d2": 3929, "\u2581\u13a4\u13d7\u13db\u13ae\u13a2": 3930, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d6\u13cd\u13ac": 3931, "\u2581\u13a4\u13f2\u13a2\u13f4": 3932, "\u13f0\u13db": 3933, "\u2581\u13dd\u13a8": 3934, "\u2581\u13ed\u13c2\u13b7\u13e8\u13a9": 3935, "\u13d4\u13b5": 3936, "\u13d7\u13c2\u13cd\u13aa\u13c2\u13af": 3937, "\u2581\u13a4\u13c1\u13cd\u13d4": 3938, "\u2581\u13a0\u13d3\u13af\u13af": 3939, "\u2581\u13eb\u13a6\u13b7\u13ac": 3940, "\u2581\u13a0\u13a9\u13c1\u13e8\u13a2": 3941, "\u13da\u13a2\u13cd\u13d3\u13c1\u13b4": 3942, "\u2581\u13e7\u13c1\u13a6": 3943, "\u2581\u13ab\u13a6": 3944, "\u2581\u13cd\u13a9\u13cd\u13d5\u13b8": 3945, "\u2581\u13a2\u13d7\u13ac\u13c1": 3946, "\u13c3\u13af\u13ce\u13b4": 3947, "\u2581\u13eb\u13da\u13ef\u13c5\u13ae\u13a2": 3948, "\u2581\u13a4\u13c4\u13aa\u13e4\u13a2": 3949, "\u2581\u13a2\u13e8\u13d7\u13cd\u13ac": 3950, "\u2581\u13a2\u13d4": 3951, "\u2581\u13d7\u13d0\u13f4": 3952, "\u13ef\u13a5\u13a2": 3953, "\u2581\u13c2\u13d5\u13ac\u13c1\u13b2": 3954, "\u2581\u13a4\u13c5\u13ce\u13a2": 3955, "\u2581\u13af\u13a6\u13d4\u13b2": 3956, "\u2581\u13a0\u13c1\u13ae\u13cd\u13d7": 3957, "\u2581\u13ea\u13e3": 3958, "\u13d4\u13c1\u13cd\u13d7": 3959, "\u13de\u13cd\u13d7": 3960, "\u2581\u13e7\u13c1\u13d7\u13f1": 3961, "\u2581\u13a4\u13ec\u13e8": 3962, "\u13db\u13c1\u13d7\u13f1": 3963, "\u13a6\u13db\u13a6": 3964, "\u2581\u13a4\u13aa\u13b5\u13f0\u13a5": 3965, "\u2581\u13ad\u13d7": 3966, "\u2581\u13a4\u13b7\u13e4\u13b4\u13a2": 3967, "\u13d3\u13c1\u13af": 3968, "\u2581\u13d7\u13ac\u13e9\u13be": 3969, "\u2581\u13a4\u13e9\u13d4\u13c1": 3970, "\u2581\u13a1\u13be\u13a2": 3971, "\u2581\u13a4\u13c1\u13cd\u13a9\u13b8": 3972, "\u2581\u13a4\u13ec\u13c2\u13ce": 3973, "\u13b3\u13c5\u13a9": 3974, "\u13c2\u13d7": 3975, "\u2581\u13da\u13d9\u13cd\u13db": 3976, "\u2581\u13a4\u13be\u13db\u13c1": 3977, "\u2581\u13c4\u13e9\u13c1\u13b8\u13a9": 3978, "\u13cd\u13d7\u13cd\u13a8\u13a2": 3979, "\u13a8\u13ce\u13a2": 3980, "\u13df\u13cc\u13c2": 3981, "\u2581\u13a4\u13aa\u13d7": 3982, "\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a6": 3983, "\u2581\u13a0\u13be\u13b5\u13ae\u13b5\u13a8": 3984, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13d7\u13f1": 3985, "\u13cf\u13d0\u13d7": 3986, "\u2581\u13d9\u13d3\u13a8": 3987, "\u2581\u13c2\u13e5\u13ea\u13ce\u13b8": 3988, "\u2581\u13e7\u13c1\u13e4\u13b4": 3989, "\u2581\u13a4\u13e4\u13b8": 3990, "\u2581\u13d7\u13ac\u13a9": 3991, "\u13ab\u13e9": 3992, "\u2581\u13e5\u13d7": 3993, "\u2581\u13a4\u13c2\u13aa\u13b2\u13a9": 3994, "\u2581\u13d3\u13ac\u13a9": 3995, "\u13c1\u13b2\u13a9": 3996, "\u2581\u13d7\u13a9\u13a6\u13f4\u13b5\u13a8\u13a2": 3997, "\u13c5\u13a6": 3998, "\u13d6\u13b5": 3999, "\u13c4\u13aa\u13eb\u13cf": 4000, "\u2581\u13c2\u13da\u13a9\u13e8\u13c2\u13d2\u13a2": 4001, "\u13e2\u13be\u13c1\u13d7": 4002, "\u2581\u13a0\u13e6\u13f4\u13a2": 4003, "\u2581\u13e7\u13be\u13e6": 4004, "\u2581\u13a4\u13cd\u13a6\u13c5\u13e8\u13a2": 4005, "\u13c5\u13d7\u13cd\u13a8\u13cd\u13d7": 4006, "\u2581\u13d5\u13ac\u13e9\u13c2": 4007, "\u2581\u13aa\u13a6": 4008, "\u13b2\u13cd\u13aa\u13a2": 4009, "\u2581\u13a4\u13c1\u13c5\u13cd\u13d7": 4010, "\u2581\u13c3\u13f3": 4011, "\u2581\u13f1\u13d3\u13a9": 4012, "\u13d2\u13d7": 4013, "\u2581\u13a4\u13c2\u13c5": 4014, "\u2581\u13d5\u13e3\u13d9\u13a5\u13a2": 4015, "\u13f3\u13cd\u13d7": 4016, "\u13c7\u13b5": 4017, "\u13f0\u13b2": 4018, "\u2581\u13a4\u13d3\u13c5\u13d9\u13a9": 4019, "\u13ea\u13ce\u13d7": 4020, "\u2581\u13d7\u13cd\u13c6": 4021, "\u13cf\u13e9": 4022, "\u13cf\u13b3\u13db\u13d7": 4023, "\u2581\u13c3\u13a9": 4024, "\u2581\u13a4\u13cd\u13d3\u13f1\u13d5": 4025, "\u2581\u13a4\u13b5\u13cd\u13c6\u13d5": 4026, "\u2581\u13e3\u13aa": 4027, "\u13df\u13ef": 4028, "\u2581\u13a4\u13a7\u13b5\u13b8": 4029, "\u13b3\u13da": 4030, "\u13e8\u13be": 4031, "\u13ac\u13c2\u13a8": 4032, "\u13d3\u13c1\u13ae\u13cd\u13d7": 4033, "\u13a7\u13c1\u13b8": 4034, "\u13a9\u13cd\u13ac": 4035, "\u2581\u13a0\u13c2\u13c1\u13b8": 4036, "\u2581\u13a4\u13d9\u13af\u13f3\u13ad": 4037, "\u13aa\u13c5": 4038, "\u13cc\u13b3\u13d3\u13c1": 4039, "\u2581\u13d7\u13a8\u13a6": 4040, "\u2581\u13c2\u13ac\u13c1\u13b8": 4041, "\u13cf\u13d7": 4042, "\u2581\u13d7\u13db": 4043, "\u13a6\u13d4\u13b2": 4044, "\u2581\u13e6\u13e5": 4045, "\u13c2\u13cc\u13c2": 4046, "\u2581\u13a0\u13c9\u13e2": 4047, "\u2581\u13a0\u13c3\u13b5": 4048, "\u13c5\u13a6\u13b8\u13db": 4049, "\u2581\u13c4\u13ea\u13ce\u13b8\u13a2": 4050, "\u13aa\u13b5\u13c2\u13d7": 4051, "\u2581\u13a4\u13d3\u13c5\u13d2": 4052, "\u2581\u13a4\u13cd\u13c6\u13b8": 4053, "\u2581\u13a4\u13a7\u13b5": 4054, "\u13a6\u13d9\u13a5\u13ce": 4055, "\u13d9\u13b2\u13a2": 4056, "\u2581\u13a4\u13c1\u13c5\u13ce\u13c3": 4057, "\u13e7\u13c2\u13f2\u13af\u13cd\u13d7\u13f1": 4058, "\u2581\u13da\u13b8": 4059, "\u13d5\u13a6": 4060, "\u2581\u13a0\u13f0\u13b5\u13d2": 4061, "\u13af\u13b2\u13a2": 4062, "\u13f2\u13cf": 4063, "\u2581\u13a4\u13c3\u13f4\u13b5": 4064, "\u2581\u13a4\u13c1\u13e4\u13a2": 4065, "\u2581\u13ac\u13d2": 4066, "\u2581\u13f3\u13aa": 4067, "\u2581\u13c3\u13d2": 4068, "\u2581\u13a4\u13d9\u13af": 4069, "\u13c2\u13d9\u13b8": 4070, "\u13e3\u13d7": 4071, "\u13a4\u13e9\u13c2\u13a6\u13b8": 4072, "\u2581\u13a4\u13c1\u13e4\u13b4\u13a2": 4073, "\u2581\u13a4\u13d9\u13f3": 4074, "\u13c9\u13cd\u13aa": 4075, "\u13cd\u13a6\u13a2\u13ae\u13cd\u13d7": 4076, "\u2581\u13be\u13c2\u13a5\u13a9": 4077, "\u2581\u13d3\u13d4\u13b4\u13d2\u13a2": 4078, "\u2581\u13a4\u13c5\u13c1": 4079, "\u2581\u13a0\u13c2\u13b8\u13c9\u13d7\u13cd\u13a8": 4080, "\u2581\u13e6\u13cf": 4081, "\u2581\u13d9\u13d3\u13e3": 4082, "\u2581\u13e6\u13d2": 4083, "\u13e1\u13d7\u13cd\u13a9": 4084, "\u2581\u13a0\u13b9\u13c2": 4085, "\u2581\u13e4\u13b3\u13d7": 4086, "\u13b5\u13cd\u13d3\u13f4\u13d7": 4087, "\u2581\u13a6\u13f2\u13a6": 4088, "\u2581\u13a4\u13b3": 4089, "\u2581\u13f2\u13a6": 4090, "\u13c1\u13a2\u13cd\u13d3\u13c1\u13d7": 4091, "\u2581\u13a1\u13cd\u13d7": 4092, "\u2581\u13a0\u13ab\u13f4\u13d7": 4093, "\u13b3\u13db": 4094, "\u2581\u13a4\u13c2\u13cf\u13d7": 4095, "\u13e4\u13ad": 4096, "\u2581\u13da\u13c1\u13e4\u13b4\u13c3": 4097, "\u2581\u13e5\u13d5\u13e3": 4098, "\u2581\u13a2\u13ac\u13f1\u13f1\u13c9": 4099, "\u2581\u13a8\u13a2": 4100, "\u13ac\u13c5": 4101, "\u2581\u13d3\u13a6\u13e5": 4102, "\u13cd\u13d3\u13e9\u13d5\u13a9": 4103, "\u2581\u13a0\u13e5\u13c1\u13b8": 4104, "\u13d8\u13cd\u13d7\u13cd\u13a9": 4105, "\u2581\u13a0\u13a9\u13cd\u13a6\u13c5\u13e8": 4106, "\u13a7\u13af\u13ef\u13cd\u13d7": 4107, "\u2581\u13f1\u13e5\u13f0\u13b8": 4108, "\u13e5\u13e7\u13e3": 4109, "\u2581\u13a6\u13be\u13c4\u13aa": 4110, "\u13a6\u13da": 4111, "\u2581\u13a4\u13c2\u13f4\u13b8": 4112, "\u13e2\u13c5\u13af": 4113, "\u13d7\u13ef": 4114, "\u13d7\u13cd\u13d4\u13c1": 4115, "\u13f2\u13ad": 4116, "\u2581\u13e5\u13f3\u13aa": 4117, "\u13cd\u13d3\u13c1": 4118, "\u13c2\u13c6\u13d8\u13af": 4119, "\u13d7\u13d4\u13cd\u13ac": 4120, "\u2581\u13e9\u13f4": 4121, "\u13b5\u13a2": 4122, "\u2581\u13d7\u13a7": 4123, "\u2581\u13c2\u13db": 4124, "\u13c4\u13b5": 4125, "\u2581\u13e5\u13a6\u13d4": 4126, "\u13c2\u13f4": 4127, "\u2581\u13aa\u13db": 4128, "\u2581\u13a0\u13be\u13d7\u13cd\u13a8": 4129, "\u2581\u13a4\u13c2\u13c4\u13aa\u13e8": 4130, "\u2581\u13a2\u13f3\u13c2": 4131, "\u2581\u13a4\u13e3\u13c5": 4132, "\u13ea\u13ce\u13b4\u13a2": 4133, "\u13d8\u13be\u13eb\u13db\u13b2\u13a9": 4134, "\u13cd\u13c6\u13b5": 4135, "\u13eb\u13ce\u13b4\u13a2": 4136, "\u13cd\u13a6\u13f0\u13ac\u13cd\u13d3": 4137, "\u13b6\u13d3": 4138, "\u2581\u13a0\u13e9\u13db": 4139, "\u2581\u13c2\u13a6\u13a5\u13a2": 4140, "\u13d3\u13f1": 4141, "\u13cd\u13d5\u13b5\u13cd\u13ac": 4142, "\u13c1\u13df\u13f4": 4143, "\u2581\u13a2\u13a4": 4144, "\u2581\u13a4\u13ea\u13f0": 4145, "\u2581\u13a4\u13b5\u13cd\u13c6\u13b8\u13d7\u13c3": 4146, "\u13d3\u13ce\u13aa\u13a9\u13cd": 4147, "\u13a9\u13d2": 4148, "\u13a6\u13b3": 4149, "\u2581\u13be\u13af\u13f3\u13a2": 4150, "\u13db\u13c3\u13af": 4151, "\u13b8\u13c9\u13d7\u13cd\u13a9": 4152, "\u2581\u13da\u13f3": 4153, "\u2581\u13d5\u13a8\u13e5": 4154, "\u13f2\u13cd\u13d7\u13cd\u13ac": 4155, "\u13e1\u13d7\u13cd\u13ac\u13a2": 4156, "\u2581\u13da\u13f2\u13ce": 4157, "\u13eb\u13db": 4158, "\u2581\u13a0\u13a8": 4159, "\u2581\u13f1\u13a8\u13e3": 4160, "\u13cd\u13d7\u13cd\u13ac\u13a2": 4161, "\u13cd\u13d5\u13b5\u13cd\u13a9": 4162, "\u13f3\u13b3": 4163, "\u13d7\u13cd\u13d7\u13cd\u13a9": 4164, "\u13c5\u13aa\u13a2\u13cd\u13d7": 4165, "\u2581\u13a4\u13b5\u13cd\u13c6": 4166, "al": 4167, "\u13f0\u13b8\u13af": 4168, "\u13c2\u13d9\u13af": 4169, "\u2581\u13ef\u13d3\u13c5\u13d6": 4170, "\u13d1\u13f0\u13d2": 4171, "\u2581\u13a0\u13b5\u13f0\u13a2\u13b5": 4172, "\u2581\u13a6\u13ef": 4173, "\u13e2\u13d7\u13f1": 4174, "\u2581\u13ed\u13e9": 4175, "\u13f4\u13cd\u13d7": 4176, "\u13b5\u13f3": 4177, "\u2581\u13d5\u13ab": 4178, "\u13c2\u13a9\u13cd\u13ac": 4179, "\u2581\u13a9\u13ef": 4180, "\u2581\u13a2\u13e8\u13f2\u13ea\u13b3": 4181, "\u13e5\u13cd\u13a6\u13ef": 4182, "\u2581\u13d3\u13f3\u13c2": 4183, "\u2581\u13c4\u13cd\u13db\u13a9": 4184, "\u13cd\u13a9\u13b8": 4185, "\u13a1\u13b0\u13a2": 4186, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 4187, "\u13e5\u13c1\u13b8": 4188, "\u13c5\u13db": 4189, "\u13d3\u13d1\u13f0\u13cd\u13d7": 4190, "\u13cd\u13d3\u13e9\u13db\u13d2\u13a9": 4191, "\u13cd\u13d3\u13e9\u13d7\u13d2": 4192, "\u13db\u13c5\u13a2\u13cd\u13d3": 4193, "\u2581\u13e5\u13c2\u13ac": 4194, "\u2581\u13d4\u13ef": 4195, "\u13d3\u13b5\u13d3\u13cd\u13d7": 4196, "\u13a4\u13cd\u13d3\u13a6\u13f4\u13af\u13d3": 4197, "\u2581\u13da\u13ed": 4198, "\u2581\u13a8\u13cd\u13d7\u13d7": 4199, "\u2581\u13a6\u13ac": 4200, "\u2581\u13da\u13c1": 4201, "\u13f2\u13d2\u13a9": 4202, "\u2581\u13a2\u13d7\u13a6\u13d8": 4203, "\u2581\u13a2\u13f3\u13cd\u13a9\u13c2\u13c3": 4204, "\u13b3\u13d3": 4205, "\u13a6\u13c1\u13b6\u13d7": 4206, "\u13f2\u13b5": 4207, "\u13b3\u13c2": 4208, "\u2581\u13a5\u13a9\u13b8\u13c9": 4209, "\u2581\u13a4\u13b5\u13f0": 4210, "\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac": 4211, "\u13b7\u13af\u13cd\u13d7": 4212, "\u13d8\u13c3\u13af\u13cd\u13d7\u13f1": 4213, "\u13cd\u13a6\u13e8\u13af": 4214, "\u13c2\u13aa\u13b2": 4215, "\u13a6\u13d8\u13d3": 4216, "\u2581\u13a2\u13cd\u13db": 4217, "\u2581\u13ac\u13f0\u13b8": 4218, "\u2581\u13c5\u13d3\u13ac\u13e9": 4219, "\u2581\u13a0\u13e2": 4220, "\u13a7\u13c1": 4221, "\u13d9\u13ae": 4222, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13ce": 4223, "\u13b8\u13c2": 4224, "\u2581\u13d7\u13e3\u13c1\u13b6": 4225, "\u2581\u13d7\u13cd\u13da": 4226, "\u13c9\u13c2": 4227, "\u2581\u13a4\u13b7": 4228, "\u13d3\u13c2\u13b8\u13e4\u13a2": 4229, "\u2581\u13f3\u13ec\u13af\u13f3": 4230, "\u13b6\u13af\u13cd\u13d7": 4231, "\u13e9\u13d5\u13ac": 4232, "\u13bc": 4233, "\u2581\u13a0\u13c2\u13a6": 4234, "\u13a6\u13c5\u13a6": 4235, "\u2581\u13c4\u13c2\u13ea\u13ce": 4236, "\u2581\u13e3\u13a6": 4237, "\u2581\u13e7\u13c1\u13e8": 4238, "\u13ea\u13ce\u13b8\u13a9": 4239, "\u13bf\u13a5\u13a2": 4240, "\u2581\u13a4\u13b8\u13c9\u13d7": 4241, "\u2581\u13a7\u13c3\u13ae": 4242, "\u13ea\u13b6\u13d7": 4243, "\u13cd\u13d5\u13b8\u13d7\u13f1": 4244, "\u13a2\u13a6\u13b8\u13c9\u13d7": 4245, "\u13e6\u13c1": 4246, "\u13e2\u13db": 4247, "\u2581\u13a6\u13df": 4248, "\u2581\u13a4\u13c1\u13b7\u13ac": 4249, "\u13d3\u13ec\u13cd\u13d7": 4250, "\u2581\u13e7\u13b3\u13d1\u13b6": 4251, "\u2581\u13a4\u13c3\u13b8": 4252, "\u13af\u13cd\u13d4\u13c2": 4253, "\u2581\u13d9\u13e7": 4254, "\u2581\u13a4\u13cd\u13a6": 4255, "\u2581\u13d5\u13a6\u13c4\u13aa\u13eb\u13cd": 4256, "\u13aa\u13b5\u13f0\u13a5\u13af": 4257, "\u2581\u13a5\u13e5": 4258, "\u13cd\u13a6\u13c3\u13b5": 4259, "\u2581\u13a2\u13a9\u13f0\u13b8": 4260, "\u2581\u13d5\u13a6\u13c4\u13aa\u13ac": 4261, "\u2581\u13d5\u13a6\u13b3\u13c5\u13db": 4262, "\u13a6\u13b8\u13b3\u13d7": 4263, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13ce": 4264, "\u2581\u13a0\u13d0\u13f4": 4265, "\u2581\u13a3\u13a6\u13db\u13a6\u13c5": 4266, "\u13d3\u13a9\u13cd\u13a8": 4267, "\u2581\u13a0\u13d3\u13ea\u13b5\u13a9\u13cd\u13ac": 4268, "\u2581\u13da\u13f2": 4269, "\u13c4\u13d3\u13b4": 4270, "\u13eb\u13b5\u13bb": 4271, "\u13d7\u13a6\u13db\u13af": 4272, "\u2581\u13a0\u13a9\u13c7\u13d3\u13b8": 4273, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13aa": 4274, "\u2581\u13d5\u13a6\u13cd\u13a9\u13b8": 4275, "\u2581\u13a2\u13e3\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac": 4276, "\u2581\u13e7\u13c1": 4277, "\u2581\u13f1\u13a8\u13e5": 4278, "\u2581\u13ac\u13e9\u13be\u13d5": 4279, "\u2581\u13a4\u13b5\u13f0\u13d4\u13c1": 4280, "\u2581\u13d9\u13e7\u13be\u13d3\u13c5\u13db": 4281, "\u2581\u13f1\u13e5\u13a6\u13d4\u13ae": 4282, "\u2581\u13c4\u13c2\u13ea\u13ce\u13b4": 4283, "\u2581\u13a2\u13e3\u13b5\u13ae\u13b5\u13ac": 4284, "\u2581\u13a4\u13be\u13c2\u13a9\u13ce": 4285, "\u2581\u13da\u13d3\u13d8\u13be\u13a5": 4286, "\u2581\u13a4\u13b6\u13a8\u13d2": 4287, "\u2581\u13ef\u13db\u13c5": 4288, "\u2581\u13f1\u13c4\u13cd\u13d5": 4289, "\u2581\u13a4\u13ec\u13af\u13f3\u13d2": 4290, "\u13b0\u13e9": 4291, "\u2581\u13a4\u13c4\u13e9\u13a5": 4292, "\u2581\u13c8\u13ac": 4293, "\u2581\u13d5\u13a6\u13ec\u13c1\u13d7\u13cd\u13ac": 4294, "\u2581\u13be\u13a9\u13ea\u13ce\u13b8": 4295, "\u13a3\u13cf": 4296, "\u13aa\u13b2\u13cd\u13d9\u13d7": 4297, "\u2581\u13ed\u13ef\u13c5\u13b2": 4298, "\u2581\u13a0\u13a9\u13e9\u13db\u13b2": 4299, "\u2581\u13c4\u13c5\u13c1\u13b8": 4300, "\u2581\u13c4\u13db\u13c1": 4301, "\u13b5\u13d9\u13af": 4302, "\u2581\u13a4\u13b5\u13e6\u13db": 4303, "\u2581\u13a5\u13a9\u13d9": 4304, "\u13f0\u13b3\u13cd\u13d7": 4305, "\u2581\u13a2\u13ab\u13e9": 4306, "\u2581\u13be\u13cf": 4307, "\u13ec\u13d7\u13a8": 4308, "\u2581\u13a0\u13c2\u13aa\u13e9\u13d8\u13cd\u13ac": 4309, "\u13aa\u13b5\u13f0": 4310, "\u2581\u13c7\u13d3\u13c1\u13b3\u13bb": 4311, "\u2581\u13a0\u13d3\u13a8\u13d7": 4312, "\u2581\u13e7\u13c2\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 4313, "\u2581\u13eb\u13d7\u13a6": 4314, "\u2581\u13a0\u13cd\u13ab\u13d5\u13cd\u13d7": 4315, "\u13a4\u13b7\u13e8": 4316, "\u2581\u13a4\u13ec\u13af\u13f3\u13c5": 4317, "\u2581\u13c2\u13d5\u13a6\u13ea\u13ce\u13b2": 4318, "\u2581\u13d7\u13ab\u13cd\u13d9\u13cd\u13d7": 4319, "\u13d2\u13c6\u13b6\u13cd\u13d7": 4320, "\u2581\u13d7\u13a8\u13ab\u13aa\u13d3\u13c1\u13d7": 4321, "\u2581\u13a4\u13ea\u13d3\u13cd\u13d7": 4322, "\u13c5\u13b5": 4323, "\u13f2\u13b1\u13af\u13ce\u13b8\u13af": 4324, "\u2581\u13a0\u13e5\u13c1\u13d7": 4325, "\u2581\u13ed\u13b7\u13e4\u13b4": 4326, "\u2581\u13e4\u13c5\u13cd\u13d7": 4327, "\u13b2\u13ce": 4328, "\u2581\u13a4\u13be\u13db\u13aa\u13d7": 4329, "\u2581\u13a0\u13c7\u13d3\u13cd\u13d7": 4330, "\u2581\u13c5\u13d3\u13f0": 4331, "\u2581\u13da\u13c4\u13aa\u13eb\u13d2": 4332, "\u2581\u13a0\u13c2\u13be\u13f0\u13cd\u13a9": 4333, "\u2581\u13a0\u13c2\u13e5\u13ca\u13cf": 4334, "\u2581\u13a2\u13a8\u13ac\u13c1\u13b8\u13af": 4335, "\u2581\u13a2\u13b5\u13a1\u13cc": 4336, "\u2581\u13a4\u13cd\u13d4\u13f2\u13d2": 4337, "\u2581\u13a4\u13d6\u13b8\u13b3\u13db": 4338, "\u2581\u13a5\u13c6\u13b8\u13a2\u13db": 4339, "\u2581\u13ab\u13eb\u13cd\u13ab\u13eb": 4340, "\u2581\u13ac\u13ec\u13af\u13f3\u13b2\u13cd\u13a9": 4341, "\u2581\u13b0\u13e2\u13d4\u13c5\u13ad": 4342, "\u2581\u13b4\u13a3\u13d7\u13cf\u13ef": 4343, "\u2581\u13bb\u13da\u13cf\u13b3": 4344, "\u2581\u13c2\u13e6\u13b5\u13ac\u13be": 4345, "\u2581\u13c7\u13e3\u13b5\u13b5": 4346, "\u2581\u13cd\u13aa\u13c2\u13d7\u13e2": 4347, "\u2581\u13d3\u13c7\u13aa\u13d4\u13c5": 4348, "\u2581\u13d7\u13be\u13d9\u13b4\u13c6\u13cd\u13a9": 4349, "\u2581\u13d7\u13d3\u13b4\u13c5\u13d7\u13cd\u13a9": 4350, "\u2581\u13e5\u13c8\u13a3\u13c2": 4351, "\u2581\u13e7\u13c2\u13e6\u13ef\u13cd\u13d7": 4352, "\u2581\u13a4\u13c2\u13b5\u13c5\u13e8\u13af": 4353, "\u2581\u13d7\u13ac\u13e9\u13a9\u13e8\u13d7": 4354, "\u2581\u13ed\u13d5\u13b5\u13e4": 4355, "\u2581\u13d3\u13d7\u13b6\u13c2": 4356, "\u2581\u13e7\u13be\u13d7\u13a9\u13d3": 4357, "\u2581\u13a2\u13ef\u13db\u13c1\u13b5\u13d3\u13cd\u13d7": 4358, "\u2581\u13d7\u13e5\u13a8\u13eb": 4359, "\u13eb\u13c2\u13d7\u13e2": 4360, "\u2581\u13e6\u13cd\u13d3\u13d3\u13c5\u13df": 4361, "\u2581\u13e5\u13c2\u13e8\u13ea\u13ce\u13b8\u13a9": 4362, "\u2581\u13a0\u13c6\u13d7\u13d4\u13cd\u13d7": 4363, "\u2581\u13a4\u13ea\u13ef\u13b8\u13e4\u13a2": 4364, "\u2581\u13a0\u13b5\u13cf\u13be\u13af\u13cd\u13d9\u13d7": 4365, "\u2581\u13a0\u13be\u13b5\u13d6\u13b8\u13b2\u13cd\u13a9": 4366, "\u2581\u13a2\u13ac\u13c6\u13db\u13c1\u13d7": 4367, "\u2581\u13a4\u13b5\u13cd\u13db\u13e7\u13c1": 4368, "\u2581\u13a0\u13df\u13b6\u13a5": 4369, "\u2581\u13d7\u13a8\u13d8\u13c2\u13d3\u13cd\u13d7": 4370, "\u2581\u13b9\u13ba\u13b5": 4371, "\u2581\u13a0\u13c2\u13b6\u13cd\u13a9": 4372, "\u2581\u13e7\u13ac\u13e9\u13b3\u13c5\u13af": 4373, "\u2581\u13ed\u13d5\u13b5\u13e8": 4374, "\u2581\u13a4\u13e6\u13a0\u13ce\u13d7": 4375, "\u2581\u13aa\u13af\u13f3\u13b2\u13cd\u13a8\u13cd\u13d7": 4376, "\u2581\u13a4\u13b5\u13c3\u13af\u13f4\u13af": 4377, "\u2581\u13a4\u13a6\u13db\u13be\u13e8\u13af": 4378, "\u2581\u13e3\u13a6\u13d1\u13b2\u13a2": 4379, "\u2581\u13a0\u13aa\u13b2\u13cd\u13d4\u13c5\u13af": 4380, "\u2581\u13c6\u13cf\u13b9": 4381, "\u2581\u13a2\u13e5\u13c1\u13ab": 4382, "\u2581\u13d5\u13e5\u13c2\u13f4\u13ce\u13cd\u13d7": 4383, "\u2581\u13d3\u13f2\u13e3\u13db\u13c1\u13b5": 4384, "\u2581\u13a0\u13c1\u13b8\u13d7\u13cd\u13a8\u13a2": 4385, "\u2581\u13a2\u13aa\u13c2\u13ef": 4386, "\u2581\u13d6\u13b9": 4387, "\u2581\u13ac\u13f2\u13ce\u13ad": 4388, "\u2581\u13c5\u13d3\u13f3\u13be\u13d3\u13b4\u13c5\u13af": 4389, "\u2581\u13d7\u13a9\u13f2\u13b1\u13d2\u13af": 4390, "\u2581\u13e7\u13c3\u13da\u13af": 4391, "\u2581\u13be\u13c2\u13cd\u13a6\u13c5\u13be": 4392, "\u2581\u13d5\u13a6\u13c5\u13d9\u13ac": 4393, "\u2581\u13f1\u13e5\u13aa\u13b5\u13f0\u13a3": 4394, "\u2581\u13a6\u13d7\u13a8\u13c2": 4395, "\u13d9\u13b4\u13cb": 4396, "\u2581\u13a0\u13c2\u13aa\u13d7\u13f3": 4397, "\u2581\u13be\u13c3\u13af\u13f3\u13b2\u13cd\u13ac\u13be": 4398, "\u2581\u13e7\u13c8\u13ef": 4399, "\u2581\u13e9\u13a9\u13b7\u13e3": 4400, "\u13a9\u13cf\u13d5\u13a9": 4401, "\u2581\u13ac\u13e9\u13d5\u13f1\u13db": 4402, "\u2581\u13a2\u13e5\u13c7\u13d3\u13b8": 4403, "\u2581\u13a0\u13d9\u13b4\u13b0\u13d2\u13af": 4404, "\u2581\u13a4\u13a6\u13c3\u13ee": 4405, "\u2581\u13c4\u13be\u13db\u13c1\u13b5\u13d9\u13b8": 4406, "\u2581\u13d3\u13d3\u13db\u13c2": 4407, "\u2581\u13f3\u13f2\u13b1\u13d2": 4408, "\u2581\u13d7\u13ac\u13e9\u13c2\u13f0\u13af": 4409, "\u2581\u13d7\u13c2\u13c3\u13a8\u13c2": 4410, "\u2581\u13a6\u13b6\u13e3\u13d7": 4411, "\u2581\u13a4\u13f4\u13b5\u13b4": 4412, "\u2581\u13a2\u13f3\u13be\u13d3\u13b3": 4413, "\u2581\u13d7\u13c2\u13d0\u13af": 4414, "\u2581\u13c1\u13c6\u13b8": 4415, "\u2581\u13d8\u13a6\u13d9\u13b5": 4416, "\u2581\u13a4\u13c6\u13db\u13a9": 4417, "\u2581\u13a2\u13ac\u13be\u13d5\u13c5": 4418, "\u2581\u13da\u13ea\u13a7\u13c5\u13a9": 4419, "\u2581\u13eb\u13e5\u13f2\u13b5\u13a6": 4420, "\u2581\u13b6\u13e9\u13c2": 4421, "\u2581\u13a6\u13b5\u13c6\u13da": 4422, "\u2581\u13a0\u13c2\u13b1\u13e3": 4423, "\u2581\u13da\u13ed\u13e2\u13d4\u13c5\u13a9": 4424, "\u2581\u13a0\u13c6\u13df\u13c2\u13ac\u13c1\u13b8": 4425, "\u13cc\u13b3\u13db\u13a6": 4426, "\u2581\u13e7\u13be\u13aa\u13c5\u13cd\u13d3\u13b5": 4427, "\u2581\u13a5\u13c3\u13e5": 4428, "\u2581\u13e7\u13ec\u13e2\u13c5\u13af": 4429, "\u2581\u13e7\u13b5\u13ac\u13e9\u13df": 4430, "\u2581\u13d7\u13a6\u13be\u13cc\u13a2": 4431, "\u2581\u13a2\u13ef\u13d3\u13db\u13c1\u13af": 4432, "\u2581\u13d3\u13a9\u13ef\u13ea\u13a6": 4433, "\u2581\u13d0\u13c1\u13b3": 4434, "\u2581\u13d7\u13df\u13cd\u13d9\u13d7": 4435, "\u13d0\u13ad\u13db": 4436, "\u2581\u13ad\u13db\u13d3\u13cd\u13d3": 4437, "\u2581\u13a0\u13c2\u13c3\u13ae\u13cd\u13a8": 4438, "\u2581\u13d7\u13e3\u13b4\u13b2\u13a6": 4439, "\u2581\u13a4\u13be\u13da\u13b5\u13cd\u13a9": 4440, "\u2581\u13d3\u13a6\u13e5\u13c1\u13b5": 4441, "\u2581\u13a2\u13ef\u13c6\u13b5\u13cd\u13d9\u13d7\u13f1": 4442, "\u2581\u13aa\u13a2\u13f3\u13b2\u13cd\u13a6": 4443, "\u2581\u13c5\u13c1\u13b8\u13ad": 4444, "\u2581\u13d7\u13a9\u13f4\u13eb": 4445, "\u2581\u13a6\u13e5\u13ef\u13c1\u13b3\u13c5\u13af": 4446, "\u2581\u13e5\u13cd\u13a6\u13a2\u13b2": 4447, "\u2581\u13c5\u13d3\u13f3\u13c5\u13cf\u13db": 4448, "\u2581\u13b1\u13b7\u13e3": 4449, "\u2581\u13d5\u13a6\u13f0\u13cc\u13db": 4450, "\u2581\u13a4\u13be\u13d9\u13b4\u13b0\u13af\u13cd\u13d9\u13d7": 4451, "\u2581\u13d3\u13d3\u13c2\u13b8\u13a8\u13cd\u13d7": 4452, "\u2581\u13a1\u13e5\u13f2\u13b5\u13b8\u13ad": 4453, "\u2581\u13a0\u13ac\u13d3\u13a8\u13c2": 4454, "\u2581\u13c4\u13d3\u13d1\u13f4\u13be": 4455, "\u2581\u13a4\u13c3\u13af\u13f3\u13af": 4456, "\u2581\u13e6\u13a8\u13e5": 4457, "\u2581\u13a0\u13be\u13d3\u13ad\u13f2\u13af": 4458, "\u2581\u13d5\u13c5\u13d9\u13a5": 4459, "\u2581\u13c5\u13d3\u13cd\u13c6": 4460, "\u2581\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 4461, "\u2581\u13a0\u13c2\u13a1\u13bc\u13b5": 4462, "\u2581\u13a4\u13c2\u13c6\u13d8\u13cd\u13d7": 4463, "\u2581\u13a0\u13c6\u13d5\u13b6\u13b0\u13d2": 4464, "\u2581\u13a2\u13e5\u13a8\u13f4": 4465, "\u2581\u13a0\u13c6\u13db\u13c5\u13a2\u13cd\u13d7": 4466, "\u2581\u13a4\u13b8\u13c9\u13d4\u13c1": 4467, "\u13e1\u13d4\u13c2": 4468, "\u2581\u13a2\u13e7\u13d6": 4469, "\u2581\u13d7\u13e3\u13b3\u13cf": 4470, "\u2581\u13d7\u13ad\u13be\u13ec": 4471, "\u2581\u13a4\u13a7": 4472, "\u13f2\u13b5\u13cd\u13d7\u13f1": 4473, "\u2581\u13ec\u13e4": 4474, "\u2581\u13eb\u13c2\u13ea\u13cf": 4475, "\u2581\u13da\u13c4\u13cc\u13db": 4476, "\u2581\u13d7\u13a6\u13aa\u13d9\u13d7": 4477, "\u2581\u13a4\u13d3\u13d1\u13f0\u13db": 4478, "\u2581\u13af\u13cd\u13aa\u13b5": 4479, "\u13c2\u13b4": 4480, "\u2581\u13aa\u13d2\u13c5": 4481, "\u13d3\u13b4\u13d2": 4482, "\u2581\u13d3\u13c2\u13f4\u13ac\u13a2": 4483, "\u2581\u13e3\u13d3\u13b8\u13a9": 4484, "\u2581\u13e5\u13a6\u13da\u13ad": 4485, "\u2581\u13d3\u13c2\u13f4\u13a8\u13cd\u13d7": 4486, "\u2581\u13ac\u13d4\u13f2\u13ce\u13ad": 4487, "\u2581\u13a4\u13d9\u13b3\u13c5\u13cd\u13d7": 4488, "\u2581\u13d3\u13c2\u13c4\u13d9\u13ac\u13a2": 4489, "\u2581\u13da\u13da\u13d3\u13db\u13a2": 4490, "\u2581\u13a0\u13a8\u13ef": 4491, "\u2581\u13a0\u13c4\u13ec\u13a9\u13af": 4492, "\u2581\u13a2\u13e4\u13c5\u13cd\u13d7\u13f1": 4493, "\u2581\u13a4\u13ec\u13d2\u13c5": 4494, "\u2581\u13da\u13d5\u13f2\u13c1": 4495, "\u2581\u13d7\u13e3\u13b3\u13cf\u13d5\u13c2": 4496, "\u2581\u13d3\u13e5\u13c1\u13b5": 4497, "\u2581\u13e4\u13b5\u13aa": 4498, "\u2581\u13a1\u13c8\u13b3": 4499, "\u2581\u13ed\u13b3\u13a9\u13d2": 4500, "\u2581\u13ed\u13a9\u13b6\u13eb\u13ce": 4501, "\u2581\u13a0\u13c2\u13a9\u13be": 4502, "\u2581\u13da\u13ec\u13c1\u13d4\u13c5\u13a9": 4503, "\u2581\u13e7\u13f2\u13af\u13cd\u13d7\u13f1": 4504, "\u2581\u13a2\u13e8\u13f2\u13ea\u13b3\u13c1\u13ad": 4505, "\u2581\u13d9\u13b3\u13e7\u13a6": 4506, "\u13a9\u13be\u13dd\u13a2": 4507, "\u2581\u13a4\u13b5\u13e6\u13af\u13db": 4508, "\u13cd\u13a6\u13a2\u13cd\u13d7": 4509, "\u2581\u13c7\u13b5\u13cf": 4510, "\u2581\u13e7\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13af": 4511, "\u2581\u13c5\u13db\u13db\u13c1\u13b5": 4512, "\u2581\u13d5\u13af\u13a7\u13c5": 4513, "\u2581\u13a4\u13c5\u13ea": 4514, "\u2581\u13d7\u13a6\u13c1\u13b2": 4515, "\u2581\u13e7\u13ec\u13ea\u13b3\u13c5": 4516, "\u2581\u13da\u13d8\u13c3\u13ae\u13b4\u13a2": 4517, "\u2581\u13eb\u13c4\u13ea\u13ce\u13a2": 4518, "\u2581\u13e3\u13d4\u13b3\u13ec\u13af\u13cd\u13d7": 4519, "\u2581\u13ac\u13ef\u13b5\u13a1\u13b5\u13e4": 4520, "\u2581\u13a2\u13ef\u13d3\u13c5\u13d6\u13d7": 4521, "\u2581\u13b7": 4522, "\u2581\u13da\u13cf\u13d4\u13db": 4523, "\u13c4\u13cd\u13d7": 4524, "\u2581\u13a0\u13c8\u13b7": 4525, "\u2581\u13a0\u13cc\u13b3\u13d9\u13d7": 4526, "\u2581\u13a2\u13e5\u13c1\u13e8": 4527, "\u2581\u13c2\u13e5\u13ea\u13cd\u13ac": 4528, "\u2581\u13e7\u13a7\u13ad\u13f2": 4529, "\u2581\u13a7\u13c1\u13cd\u13ac": 4530, "\u2581\u13a4\u13b5\u13e8\u13d3\u13c6\u13d3": 4531, "\u2581\u13b4\u13bb\u13a9": 4532, "\u2581\u13a2\u13e4\u13b5\u13ad": 4533, "\u2581\u13e7\u13be\u13c1\u13b3\u13c5\u13af": 4534, "\u2581\u13d3\u13a7\u13c1": 4535, "\u2581\u13a0\u13c1\u13d9\u13ad": 4536, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 4537, "\u2581\u13a2\u13e8\u13c1\u13d7": 4538, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d6\u13db": 4539, "\u2581\u13e3\u13d3\u13c5\u13db\u13a2": 4540, "\u2581\u13a0\u13c6\u13db\u13c1\u13d7\u13f1": 4541, "\u2581\u13a4\u13ec\u13ea\u13b3\u13c5\u13a9": 4542, "\u2581\u13a4\u13f2\u13b1\u13ce\u13ae\u13cd\u13d7": 4543, "\u2581\u13d1\u13d3\u13b5\u13e7\u13c8": 4544, "\u2581\u13a1\u13cd\u13a6\u13c2\u13f3": 4545, "\u2581\u13a0\u13a6\u13d9\u13b5": 4546, "-\u201c": 4547, "\u2581\u13a0\u13d3\u13ac\u13bf": 4548, "\u2581\u13a6\u13f0\u13b5\u13cd\u13d7": 4549, "\u2581\u13a0\u13c2\u13cd\u13a6\u13f0\u13ac\u13cd\u13d3": 4550, "\u2581\u13a4\u13c3\u13ea\u13b3\u13c5": 4551, "\u2581\u13a0\u13c2\u13a6\u13d8\u13ef": 4552, "\u2581\u13a0\u13eb\u13cc\u13c5": 4553, "\u2581\u13a0\u13e4\u13cd\u13d9\u13a9\u13af": 4554, "\u2581\u13a4\u13db\u13a6\u13be": 4555, "\u2581\u13a6\u13aa\u13b5\u13cd\u13d7": 4556, "\u2581\u13a0\u13ba": 4557, "\u2581\u13d7\u13e5\u13a7\u13bf\u13e9\u13db\u13cd\u13d7\u13f1": 4558, "\u2581\u13da\u13ed\u13aa\u13d4\u13c5": 4559, "\u2581\u13a4\u13ec\u13b3": 4560, "\u2581\u13da\u13ea\u13f4": 4561, "\u2581\u13e3\u13cd\u13c6": 4562, "\u2581\u13a4\u13c1\u13c5\u13d2\u13a9": 4563, "\u2581\u13f3\u13ea\u13ad": 4564, "\u2581\u13d3\u13be\u13e0\u13f1\u13b2": 4565, "\u2581\u13a4\u13e9\u13c2\u13a6\u13b8\u13a2": 4566, "\u2581\u13a4\u13be\u13c4\u13aa\u13e5\u13b8": 4567, "\u2581\u13f1\u13e5\u13cf\u13be": 4568, "\u2581\u13a4\u13c2\u13be\u13a5": 4569, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13d4\u13c1\u13a2": 4570, "\u2581\u13a4\u13c2\u13cd\u13a6\u13b4\u13a2": 4571, "\u2581\u13a0\u13cb\u13d4\u13c5\u13af": 4572, "\u2581\u13a4\u13ea\u13d9\u13b4\u13a2": 4573, "\u2581\u13a2\u13f3\u13e9\u13ac\u13d7": 4574, "\u2581\u13a6\u13c3\u13af\u13b5\u13d9": 4575, "\u2581\u13d7\u13ab\u13cd\u13d9\u13cd\u13d7\u13f1": 4576, "\u2581\u13ad\u13df\u13c2\u13ac\u13c1": 4577, "\u2581\u13f1\u13c5\u13a6": 4578, "\u2581\u13be\u13e5\u13ea\u13ce\u13b4\u13a2": 4579, "\u2581\u13a2\u13f3\u13ea\u13cd\u13d7": 4580, "\u2581\u13a2\u13e3\u13db\u13c1\u13d7": 4581, "\u2581\u13a4\u13c2\u13c1\u13c9\u13e4": 4582, "\u2581\u13a4\u13a6\u13b9": 4583, "\u2581\u13a4\u13c2\u13c3\u13ae\u13d7\u13f1": 4584, "\u2581\u13e7\u13be\u13db\u13be": 4585, "\u13e5\u13a4\u13cd\u13d5\u13ce\u13b8\u13be": 4586, "\u2581\u13c2\u13e8\u13c1\u13b2": 4587, "\u2581\u13ac\u13e9\u13cd\u13a6\u13a9": 4588, "\u2581\u13be\u13e5\u13a4\u13cd\u13d5\u13ce\u13b8\u13be": 4589, "\u2581\u13f1\u13c2\u13a6\u13a9": 4590, "\u2581\u13a4\u13d5\u13d4\u13c5\u13af": 4591, "\u2581\u13d7\u13e5\u13c1\u13df\u13f4": 4592, "\u13f4\u13b5\u13b8": 4593, "\u13e9\u13db\u13b2\u13cd\u13d7\u13f1": 4594, "\u2581\u13a4\u13db\u13c5\u13d7\u13a6\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 4595, "\u2581\u13a4\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5\u13af": 4596, "\u2581\u13e4\u13e3\u13a7\u13c3\u13d7": 4597, "\u13c1\u13c9\u13e3\u13d8": 4598, "\u2581\u13a4\u13c2\u13da\u13b2\u13a2": 4599, "\u2581\u13a2\u13e8\u13d9\u13d7\u13f1": 4600, "\u2581\u13a0\u13a9\u13b7\u13e4\u13b8\u13a9": 4601, "\u2581\u13d3\u13aa": 4602, "\u2581\u13e5\u13c4\u13cd\u13db": 4603, "\u2581\u13e3\u13be\u13eb\u13f1": 4604, "\u2581\u13a4\u13be\u13c5\u13d7\u13f1": 4605, "\u2581\u13a2\u13e5\u13c1\u13d7": 4606, "\u2581\u13e5\u13ac\u13e9": 4607, "\u13c1\u13c5": 4608, "\u13b5\u13d6\u13b8\u13c2\u13cd\u13d7": 4609, "\u2581\u13a2\u13e3\u13c1\u13b3\u13c5\u13af": 4610, "\u2581\u13a4\u13c2\u13f0\u13b8\u13af": 4611, "\u2581\u13a6\u13c1\u13e5\u13f1": 4612, "\u2581\u13ed\u13d3\u13d2\u13cd\u13d4\u13c1": 4613, "\u2581\u13ed\u13d3\u13aa\u13be\u13db\u13db": 4614, "\u2581\u13a4\u13f4\u13b8\u13a9": 4615, "\u2581\u13a4\u13c1\u13dd\u13c5\u13af": 4616, "\u2581\u13a4\u13a6\u13d4\u13b2\u13ce": 4617, "\u2581\u13cd\u13a6\u13f0\u13ac\u13cd\u13d4": 4618, "\u2581\u13a4\u13e6\u13cd\u13d7": 4619, "\u2581\u13a0\u13cd\u13d5\u13b5\u13cd\u13a9": 4620, "\u2581\u13b1\u13c2\u13b7\u13e4": 4621, "\u2581\u13a1\u13e5\u13c1\u13b8\u13af": 4622, "\u2581\u13af\u13c4\u13aa\u13a2": 4623, "\u2581\u13a6\u13ac\u13e9\u13d0\u13e2": 4624, "\u2581\u13da\u13c3\u13c1\u13b4": 4625, "\u2581\u13a0\u13c2\u13a9\u13a6\u13a8": 4626, "\u2581\u13a3\u13a8\u13c5\u13d2": 4627, "\u2581\u13c2\u13a8\u13e5\u13ea\u13ce\u13b8": 4628, "\u2581\u13d7\u13aa\u13e9\u13db\u13d7": 4629, "\u2581\u13e7\u13be\u13cd\u13d7\u13a6": 4630, "\u2581\u13e9\u13a6\u13db\u13a2": 4631, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13cd\u13d7\u13f1": 4632, "\u2581\u13a4\u13a9\u13b5": 4633, "\u2581\u13a4\u13be\u13d3\u13df\u13cc\u13c5": 4634, "\u2581\u13a4\u13d4\u13ea\u13d9\u13c1\u13a2": 4635, "\u2581\u13a4\u13cd\u13d5\u13b8\u13d7\u13f1": 4636, "\u2581\u13a0\u13b3\u13d1\u13b6": 4637, "\u2581\u13a2\u13d3\u13d9\u13b4\u13b0\u13af\u13cd\u13d7": 4638, "\u2581\u13a0\u13a6\u13c5\u13a9": 4639, "\u13d8\u13c1\u13d2\u13ad": 4640, "\u2581\u13a4\u13c5\u13d9\u13d7": 4641, "\u2581\u13a4\u13cd\u13da\u13c1": 4642, "\u2581\u13cc\u13bb": 4643, "\u2581\u13a0\u13a9\u13aa\u13e9\u13db\u13d7\u13f1": 4644, "\u13ec\u13c1\u13d4\u13c1": 4645, "\u2581\u13d5\u13a6\u13a7\u13b2\u13a9": 4646, "\u2581\u13a0\u13be\u13d7\u13cd\u13ac": 4647, "\u2581\u13e7\u13ea\u13e5\u13db\u13af": 4648, "\u2581\u13b9\u13b5": 4649, "\u2581\u13a4\u13c2\u13f4\u13d7": 4650, "\u2581\u13a0\u13e9\u13db\u13d7": 4651, "\u2581\u13a2\u13be\u13cf": 4652, "\u2581\u13a4\u13ec\u13e2\u13c1\u13a2": 4653, "\u2581\u13e7\u13d3\u13b4\u13c1\u13a2": 4654, "\u2581\u13e7\u13a6": 4655, "\u2581\u13a4\u13cd\u13a6\u13e4": 4656, "\u13a7\u13b8": 4657, "\u13b4\u13c1\u13af": 4658, "\u2581\u13a6\u13c1\u13ae\u13a2": 4659, "\u2581\u13a4\u13cd\u13d3\u13e9\u13d7\u13d9\u13af": 4660, "\u2581\u13d3\u13e5\u13c2": 4661, "\u2581\u13d3\u13cd\u13db": 4662, "\u2581\u13e5\u13c5\u13b5": 4663, "\u2581\u13bc": 4664, "\u13ce\u13d7\u13f1": 4665, "\u2581\u13af\u13f4": 4666, "\u2581\u13a2\u13a8\u13e3\u13db\u13c1\u13d7": 4667, "\u13c2\u13ec\u13c2\u13af\u13cd\u13d7": 4668, "\u2581\u13d5\u13a0": 4669, "\u2581\u13a6\u13c6\u13b5": 4670, "\u2581\u13a4\u13b5\u13f0\u13d4\u13c1\u13a2": 4671, "\u2581\u13a4\u13c4\u13ec\u13cd\u13d7": 4672, "\u2581\u13a0\u13a9\u13c3\u13ae\u13b8": 4673, "\u13cd\u13d7\u13f0\u13d7\u13ad": 4674, "\u2581\u13a4\u13c2\u13be": 4675, "\u2581\u13a4\u13be\u13b4\u13c5\u13b2": 4676, "\u2581\u13d5\u13aa\u13ea\u13b8\u13a9": 4677, "\u2581\u13ed\u13f4\u13b8\u13a9": 4678, "\u2581\u13c2\u13e3\u13db\u13c1\u13b2\u13a2": 4679, "\u2581\u13d7\u13a6\u13ab\u13cd\u13db\u13d7\u13f1": 4680, "\u2581\u13a3\u13a9\u13be\u13b5\u13aa": 4681, "\u2581\u13a4\u13b6\u13a8\u13d2\u13a2": 4682, "\u2581\u13a0\u13eb\u13d2\u13af": 4683, "\u2581\u13a4\u13f0\u13ac": 4684, "\u2581\u13a4\u13ec\u13e2\u13c5\u13a2": 4685, "\u2581\u13ed\u13b7\u13e4\u13b4\u13a2": 4686, "\u2581\u13e9\u13a9\u13a6": 4687, "\u13e5\u13c1\u13a2\u13cd\u13d7\u13ad": 4688, "\u2581\u13a4\u13cd\u13d3\u13a6\u13b8\u13a2": 4689, "\u2581\u13d3\u13df\u13b6\u13cd\u13db\u13a2": 4690, "\u2581\u13a0\u13c7\u13b5\u13d2\u13a9": 4691, "\u2581\u13a6\u13b5\u13b7\u13a8\u13cd\u13d7": 4692, "\u13d5\u13aa\u13a2": 4693, "\u2581\u13a7\u13c3\u13ae\u13cd\u13ac\u13a9": 4694, "\u2581\u13c2\u13d7\u13a8": 4695, "ill": 4696, "\u2581\u13a2\u13e3\u13b4\u13c2\u13d9\u13b2": 4697, "\u2581\u13a4\u13ec\u13ad": 4698, "\u2581\u13f1\u13cd\u13db": 4699, "\u2581\u13e5\u13c2\u13a8\u13ac\u13c1": 4700, "\u2581\u13a4\u13c2\u13f4\u13ae\u13a2": 4701, "\u2581\u13e7\u13c3\u13b8": 4702, "\u2581\u13a4\u13ec\u13ce\u13b4\u13a2": 4703, "\u13e2\u13c2": 4704, "\u2581\u13a6\u13f2\u13df\u13a8": 4705, "\u13e9\u13d4": 4706, "\u2581\u13ce\u13b3\u13a9": 4707, "\u13b5\u13d3\u13cd\u13d4\u13c5": 4708, "\u2581\u13a4\u13c4\u13b8": 4709, "\u2581\u13e7\u13e9\u13ab\u13d4\u13c5\u13d2\u13a2": 4710, "\u13b6\u13b8\u13d7": 4711, "\u13d5\u13b6\u13b0\u13cc": 4712, "\u13d3\u13c5\u13a1\u13ae\u13cd\u13d7": 4713, "\u13d8\u13f1": 4714, "\u2581\u13ac\u13e9\u13a6": 4715, "\u2581\u13a4\u13be\u13d9\u13b4\u13b0\u13d2\u13a9": 4716, "\u13a0\u13a9\u13cf\u13d9\u13af": 4717, "\u2581\u13ad\u13d5\u13ec": 4718, "\u2581\u13af\u13cc": 4719, "\u13ef\u13ea\u13a2\u13cd\u13d7": 4720, "\u13b5\u13ce\u13b2": 4721, "\u2581\u13e3\u13a7\u13db\u13a2": 4722, "\u2581\u13da\u13c2\u13aa\u13b2": 4723, "\u2581\u13be\u13c6\u13db\u13c1\u13b8\u13a2": 4724, "\u13db\u13db\u13be": 4725, "\u2581\u13ac\u13e9\u13b7\u13e4\u13b4\u13a2": 4726, "\u2581\u13a1\u13d9\u13b2\u13a9": 4727, "\u2581\u13a0\u13e5\u13be": 4728, "\u2581\u13a8\u13d9\u13b2\u13a2": 4729, "\u13a6\u13b6\u13a8\u13d2": 4730, "\u2581\u13a0\u13c2\u13c1\u13ac\u13a2": 4731, "\u2581\u13be\u13db\u13c1\u13b2\u13a2": 4732, "\u13da\u13b5\u13cd\u13aa": 4733, "\u2581\u13e4\u13cf": 4734, "\u2581\u13a6\u13b5\u13e6\u13d9\u13d7": 4735, "\u2581\u13a6\u13c1\u13af": 4736, "\u13b3\u13d7\u13cd\u13ac": 4737, "\u13da\u13d3\u13b4\u13cd\u13d7\u13f1": 4738, "\u2581\u13cf\u13a6": 4739, "\u2581\u13a2\u13cc": 4740, "\u2581\u13a4\u13ea\u13ad": 4741, "\u2581\u13ef\u13a9\u13f0\u13b8": 4742, "\u2581\u13a2\u13e5\u13b2\u13a2": 4743, "\u2581\u13be\u13db\u13a6": 4744, "\u2581\u13d3\u13eb\u13d2\u13a2": 4745, "\u2581\u13e7\u13be\u13d7\u13d4\u13cd\u13d7": 4746, "\u2581\u13a2\u13e2": 4747, "\u2581\u13e3\u13cd\u13a6\u13c5\u13e8": 4748, "\u2581\u13a0\u13a2\u13ce": 4749, "\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7": 4750, "\u13d9\u13a1\u13cd\u13d7": 4751, "\u2581\u13a0\u13a9\u13b2": 4752, "\u2581\u13a1\u13b3\u13c2\u13ac\u13a2": 4753, "\u2581\u13a4\u13c2\u13af": 4754, "\u13cd\u13da\u13df\u13cd\u13d7": 4755, "\u2581\u13da\u13b7\u13ac": 4756, "\u13a9\u13f3\u13cd\u13c8\u13db": 4757, "\u2581\u13d9\u13d3\u13b8\u13a2": 4758, "ha": 4759, "\u2581\u13a4\u13c4\u13ea": 4760, "\u2581\u13d5\u13a8\u13d2": 4761, "\u2581\u13d5\u13af\u13c1\u13b8": 4762, "\u2581\u13e5\u13a9\u13b5\u13f2\u13ac": 4763, "\u2581\u13a4\u13da\u13b8\u13b2": 4764, "\u2581\u13a0\u13be\u13a2\u13d2\u13a2": 4765, "\u13f1\u13c6": 4766, "\u2581\u13a0\u13a6\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8": 4767, "\u2581\u13c1\u13e3": 4768, "\u13cc\u13db\u13d7": 4769, "\u2581\u13c4\u13b3": 4770, "\u2581\u13d7\u13cd\u13a9\u13a7\u13c1": 4771, "\u2581\u13c5\u13a9\u13c3": 4772, "\u2581\u13a4\u13c1\u13b3\u13c5": 4773, "\u13b5\u13cd\u13d7\u13cd\u13a9": 4774, "\u2581\u13e5\u13b3": 4775, "\u2581\u13d7\u13df": 4776, "\u2581\u13a0\u13e3": 4777, "\u13a7\u13be": 4778, "\u2581\u13c2\u13a9": 4779, "\u2581\u13d3\u13d3\u13c1\u13b8\u13a2": 4780, "\u2581\u13d9\u13a4": 4781, "\u2581\u13a4\u13b7\u13e8\u13af": 4782, "\u2581\u13a6\u13b3\u13a8\u13f4\u13a2": 4783, "\u2581\u13d5\u13a6\u13da\u13b2\u13a2": 4784, "\u13f4\u13ae\u13a2": 4785, "\u2581\u13c2\u13e3\u13db\u13c1\u13b8\u13a2": 4786, "\u13cc\u13db\u13a5\u13cd\u13a9": 4787, "\u13eb\u13cd\u13a9": 4788, "\u2581\u13d3\u13c6\u13d9\u13a5\u13a2": 4789, "\u2581\u13a2\u13e5\u13cd\u13c6": 4790, "\u2581\u13a4\u13d5\u13b8": 4791, "\u13ec\u13ad": 4792, "\u13d3\u13b4\u13be\u13cd\u13d7": 4793, "\u2581\u13a9\u13d3": 4794, "\u2581\u13a1\u13cf": 4795, "\u2581\u13b5\u13cd\u13d7": 4796, "\u2581\u13a4\u13d3\u13c5\u13d6\u13a2": 4797, "\u2581\u13ad\u13d7\u13d4": 4798, "\u2581\u13a4\u13c3\u13e2\u13c5": 4799, "\u2581\u13c2\u13e3\u13cd\u13db": 4800, "\u2581\u13a6\u13b8\u13cd\u13d7": 4801, "\u13c2\u13f2\u13cf\u13cd\u13a9": 4802, "\u2581\u13ac\u13e9\u13db\u13db": 4803, "\u13b5\u13e6\u13e9\u13db": 4804, "\u13a4\u13e3": 4805, "\u2581\u13d4\u13b5\u13cd\u13aa": 4806, "\u2581\u13e5\u13c2\u13a6": 4807, "\u13d3\u13be\u13eb\u13db\u13ae": 4808, "\u13cf\u13b3\u13db": 4809, "\u2581\u13a0\u13cd\u13a9": 4810, "\u2581\u13a0\u13c2\u13ec\u13c2\u13cd\u13ac\u13a2": 4811, "\u2581\u13a4\u13d5\u13b5": 4812, "\u13cf\u13c2": 4813, "\u2581\u13a4\u13d3\u13a8\u13f3": 4814, "\u2581\u13cf\u13c6\u13cf": 4815, "\u2581\u13c3\u13a6": 4816, "\u2581\u13e3\u13ac": 4817, "\u13d9\u13b4": 4818, "\u2581\u13a0\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 4819, "\u2581\u13f1\u13e3\u13d3\u13c5\u13d6": 4820, "\u2581\u13e5\u13eb": 4821, "\u2581\u13a0\u13be\u13db\u13a9\u13cd\u13a8": 4822, "\u2581\u13a2\u13c6": 4823, "\u2581\u13a4\u13db\u13a6\u13c1\u13a2": 4824, "\u2581\u13a0\u13d1": 4825, "\u13c2\u13cd\u13c6\u13c2\u13aa": 4826, "\u13be\u13c4\u13aa\u13eb\u13cd\u13a8\u13cd\u13d7": 4827, "\u2581\u13a6\u13f3": 4828, "\u2581\u13a0\u13cf\u13be": 4829, "\u13b5\u13ad": 4830, "\u13b5\u13f1\u13b6\u13af\u13cd\u13d7": 4831, "\u13db\u13c1\u13b2\u13a2": 4832, "\u2581\u13e5\u13f0\u13b8": 4833, "\u13af\u13d7\u13f3": 4834, "\u2581\u13c7\u13b3": 4835, "\u2581\u13d5\u13d7": 4836, "\u13cf\u13cf": 4837, "\u2581\u13c2\u13da\u13d3\u13b4": 4838, "\u13d9\u13b5\u13a9": 4839, "\u13f0\u13b5\u13c9": 4840, "\u13a9\u13ef": 4841, "\u2581\u13c3\u13c9\u13d7": 4842, "\u2581\u13c4\u13c5\u13c1": 4843, "\u2581\u13a4\u13b6\u13ce": 4844, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13cf": 4845, "\u2581\u13a8\u13cd": 4846, "\u13d7\u13c5\u13d3": 4847, "\u13ef\u13a1\u13cd\u13d7": 4848, "\u13dd\u13a1": 4849, "\u13d3\u13c5\u13d6\u13d9\u13d7": 4850, "\u2581\u13da\u13c2\u13b8": 4851, "\u2581\u13f1\u13c2\u13e3\u13db\u13c1": 4852, "\u13ef\u13d4\u13ec": 4853, "\u13c5\u13c1\u13ae\u13cd\u13d7": 4854, "\u2581\u13a2\u13e5\u13b7\u13e4\u13b8": 4855, "\u2581\u13f3\u13f0\u13b8": 4856, "\u13cf\u13d4\u13db": 4857, "\u2581\u13a2\u13cd\u13d5": 4858, "\u2581\u13a0\u13be\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13a8": 4859, "\u13a6\u13cd\u13aa": 4860, "\u13cd\u13d7\u13ad": 4861, "\u13df\u13c2\u13ac\u13ac": 4862, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa\u13d7\u13cd\u13a8": 4863, "\u2581\u13a2\u13b8": 4864, "\u13b0\u13b8": 4865, "\u2581\u13a4\u13a9\u13d2": 4866, "\u2581\u13a0\u13c6\u13d3": 4867, "\u2581\u13c2\u13ac\u13c1\u13ae": 4868, "\u2581\u13a4\u13ed\u13e2": 4869, "\u2581\u13a4\u13c2\u13ac\u13eb\u13f3": 4870, "\u13b7\u13e4": 4871, "\u2581\u13ed\u13cd\u13d7": 4872, "\u13d7\u13a6\u13c5\u13af\u13db": 4873, "\u2581\u13cd\u13a9\u13f0\u13b8\u13d7": 4874, "\u2581\u13e7\u13f2\u13af\u13ce\u13d7": 4875, "\u2581\u13cd\u13a9\u13f3": 4876, "\u2581\u13a3\u13cd": 4877, "\u2581\u13e3\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7": 4878, "\u13f0\u13b5\u13ce": 4879, "\u13db\u13c5\u13a9": 4880, "\u2581\u13e7\u13c1\u13e4": 4881, "\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7": 4882, "\u13b5\u13cd\u13d3\u13cf": 4883, "\u13be\u13d7": 4884, "\u2581\u13be\u13e5": 4885, "\u2581\u13a2\u13a1": 4886, "\u2581\u13a0\u13c1\u13b2\u13a9": 4887, "\u13c5\u13cd\u13d3\u13d5\u13b8\u13a9": 4888, "\u13e5\u13be\u13c4\u13aa\u13eb\u13cf": 4889, "\u2581\u13a0\u13c2\u13e4": 4890, "\u2581\u13a4\u13c6": 4891, "\u2581\u13be\u13db\u13c1\u13b0": 4892, "\u2581\u13a1\u13d9": 4893, "\u13d8\u13c3\u13a6": 4894, "\u13e4\u13b4": 4895, "\u13c1\u13e4\u13b8": 4896, "\u2581\u13a4\u13cd\u13c6\u13b8\u13af\u13d7": 4897, "\u2581\u13f0\u13b5\u13a6": 4898, "\u2581\u13a0\u13aa\u13a2": 4899, "\u13da\u13c3\u13f4\u13ac": 4900, "\u13d3\u13c1\u13b8\u13af": 4901, "\u13b8\u13cd\u13d7\u13f1": 4902, "\u13ac\u13d3": 4903, "\u2581\u13a2\u13e5\u13ad": 4904, "\u13d2\u13b2\u13cd\u13d7": 4905, "\u2581\u13a3\u13e4": 4906, "\u2581\u13d2": 4907, "\u2581\u13a0\u13eb\u13c3": 4908, "\u2581\u13aa\u13e2": 4909, "\u2581\u13a0\u13d3\u13f2\u13c1": 4910, "\u13d0\u13c1": 4911, "\u13d0\u13d7": 4912, "\u2581\u13a2\u13d7\u13a6": 4913, "\u13b3\u13d7\u13cd\u13d7": 4914, "\u2581\u13e3\u13c1\u13a9": 4915, "\u13c2\u13b2": 4916, "\u2581\u13e6\u13a2\u13ad": 4917, "\u2581\u13be\u13ef": 4918, "\u13f2\u13af\u13ce\u13d7\u13f1": 4919, "\u13d3\u13ce\u13aa\u13a9": 4920, "\u13d3\u13ec\u13af\u13b3": 4921, "\u13d9\u13c2": 4922, "\u13e9\u13d7\u13d2\u13a2": 4923, "\u2581\u13a4\u13b5\u13cf\u13c5": 4924, "\u13a9\u13b5": 4925, "\u2581\u13a4\u13b5\u13a2": 4926, "\u2581\u13c6\u13be": 4927, "\u13e2\u13c5\u13a9": 4928, "\u13af\u13ae\u13cd\u13d7": 4929, "\u13cd\u13d7\u13cd\u13a8": 4930, "\u13aa\u13a6": 4931, "\u2581\u13da\u13d3": 4932, "\u13a8\u13af\u13d3\u13cd\u13d7": 4933, "\u2581\u13eb\u13f1": 4934, "\u13ae\u13be": 4935, "\u13aa\u13a9": 4936, "\u13a9\u13a8\u13f3\u13af\u13f3": 4937, "\u13e5\u13a6\u13d4\u13b2\u13be": 4938, "\u13d3\u13c1\u13d7\u13f1": 4939, "\u13cd\u13c7\u13da": 4940, "\u13b2\u13cd\u13a8\u13a2": 4941, "\u2581\u13d3\u13cc": 4942, "\u13be\u13d4": 4943, "\u13cd\u13d5\u13be": 4944, "\u2581\u13a2\u13f2": 4945, "\u13a6\u13d5": 4946, "\u13be\u13db\u13a6": 4947, "\u13e4\u13d7": 4948, "\u2581\u13a6\u13d8": 4949, "\u2581\u13d9\u13e3": 4950, "\u13cc\u13d5": 4951, "\u13b5\u13d3\u13cd\u13d7\u13f1": 4952, "\u13f4\u13d4\u13c1\u13a2": 4953, "\u2581\u13af\u13c3": 4954, "\u2581\u13a0\u13c2\u13c9": 4955, "\u2581\u13a2\u13e5\u13cd\u13c6\u13c2\u13aa": 4956, "\u2581\u13a4\u13ea\u13c5": 4957, "\u13e5\u13a6\u13d4\u13ad": 4958, "\u13b3\u13a9\u13cd\u13d7": 4959, "\u2581\u13f0\u13e3": 4960, "\u2581\u13e3\u13d3\u13f0": 4961, "\u2581\u13c2\u13da\u13c5": 4962, "\u2581\u13f1\u13e3\u13d3": 4963, "\u13f0\u13b8\u13cd\u13ac": 4964, "\u2581\u13d3\u13be\u13b5": 4965, "\u13e6\u13af": 4966, "\u13c1\u13b0": 4967, "\u13cc\u13c5": 4968, "\u13b8\u13c5\u13af": 4969, "\u13db\u13c1\u13ad": 4970, "\u2581\u13a0\u13be\u13d8": 4971, "\u13a9\u13cf": 4972, "\u13c5\u13d4": 4973, "\u13d8\u13c5\u13d2\u13a9": 4974, "\u13e4\u13b7\u13af\u13d2": 4975, "\u2581\u13a6\u13b6\u13c1\u13db\u13f0\u13c3": 4976, "\u13e1\u13ac": 4977, "\u2581\u13a0\u13cf\u13f4\u13eb\u13c9": 4978, "\u2581\u13e5\u13d5\u13e5": 4979, "\u13aa\u13b3": 4980, "\u2581\u13ac\u13be\u13ec": 4981, "\u13f0\u13cd\u13d7": 4982, "\u2581\u13f1\u13d9\u13a9": 4983, "\u2581\u13a4\u13ea\u13ef": 4984, "\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7\u13f1": 4985, "\u13db\u13c1": 4986, "\u2581\u13d7\u13cd\u13d3": 4987, "\u13d5\u13c5\u13af": 4988, "\u13cd\u13d7\u13c9": 4989, "\u13a6\u13ec\u13c2\u13af\u13cd\u13d7": 4990, "\u13ec\u13a2": 4991, "\u13c5\u13e4\u13a2": 4992, "\u13db\u13c2\u13cf": 4993, "\u13a6\u13ce\u13cd\u13d5\u13cd\u13d7": 4994, "\u13ec\u13e3": 4995, "\u13d1\u13eb\u13d3": 4996, "\u13cd\u13c6\u13c2\u13a9\u13d7": 4997, "\u13ce\u13ae\u13cd\u13d7": 4998, "\u2581\u13da\u13c2\u13cd\u13da": 4999, "\u2581\u13a0\u13da\u13a2\u13cd": 5000, "\u2581\u13c2\u13a6\u13ea": 5001, "\u2581\u13d3\u13e5\u13f2": 5002, "\u13c2\u13f4\u13db": 5003, "\u13c1\u13b3\u13a9": 5004, "\u2581\u13e5\u13c5": 5005, "\u13a7\u13ef": 5006, "\u13d5\u13b0": 5007, "\u13e4\u13a6\u13c8\u13c3": 5008, "\u13aa\u13e9\u13d8\u13cd\u13ac\u13be": 5009, "\u13d3\u13be": 5010, "\u2581\u13a0\u13c2\u13e7\u13cf\u13c3": 5011, "\u2581\u13f3\u13d3": 5012, "\u2581\u13a0\u13b5\u13e5\u13d9": 5013, "\u13bb\u13c2": 5014, "\u2581\u13a4\u13f0\u13b8": 5015, "\u2581\u13a9\u13c2": 5016, "\u13e5\u13c1\u13e4\u13b8": 5017, "\u13ef\u13d9": 5018, "\u13c4\u13aa": 5019, "\u2581\u13a4\u13e9\u13d7": 5020, "\u2581\u13a6\u13b5\u13e6": 5021, "\u2581\u13c2\u13ef": 5022, "\u2581\u13e5\u13cd": 5023, "\u13d9\u13ad": 5024, "\u13cd\u13a6\u13b3\u13c1\u13b8": 5025, "\u13aa\u13ce\u13ad": 5026, "\u13a6\u13c5\u13d3\u13d7\u13cd\u13d9\u13d7": 5027, "\u2581\u13d8\u13c5": 5028, "\u13de\u13a2": 5029, "\u2581\u13a0\u13a6\u13d3": 5030, "\u2581\u13a6\u13b6\u13d7": 5031, "\u13db\u13c1\u13af": 5032, "\u13ef\u13c5\u13d7": 5033, "\u13b5\u13cd\u13d5\u13b5\u13cd\u13ac": 5034, "\u2581\u13f1\u13c2\u13aa": 5035, "\u13f0\u13a2": 5036, "\u2581\u13e7\u13c2\u13c5": 5037, "\u2581\u13e3\u13ab": 5038, "\u13cd\u13d4\u13be": 5039, "\u2581\u13d3\u13db": 5040, "\u2581\u13a0\u13a9\u13c1": 5041, "\u2581\u13a4\u13d3\u13c1": 5042, "\u13a6\u13d4\u13c1\u13a2": 5043, "\u13c2\u13af": 5044, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d6": 5045, "\u13df\u13d0\u13d7\u13f1": 5046, "\u13d5\u13d8\u13f1": 5047, "\u2581\u13c2\u13a4": 5048, "\u13f2\u13cd\u13ac": 5049, "\u13d6\u13a2": 5050, "\u2581\u13da\u13c2\u13c1": 5051, "\u13a6\u13d4\u13ae\u13cd\u13d7": 5052, "\u2581\u13a2\u13e5\u13cd\u13a6\u13be": 5053, "\u13c1\u13e4\u13d7\u13f1": 5054, "\u2581\u13a4\u13c5\u13e4": 5055, "\u13d8\u13c4\u13a6": 5056, "\u2581\u13a2\u13d7\u13e3": 5057, "\u13aa\u13d5\u13cd\u13d7": 5058, "\u13ce\u13ae": 5059, "\u13aa\u13be\u13db": 5060, "\u2581\u13a0\u13c2\u13cd\u13a6\u13a2\u13ae": 5061, "\u13e3\u13db": 5062, "\u13b5\u13b0": 5063, "\u2581\u13a0\u13ce\u13b5": 5064, "\u2581\u13a4\u13c2\u13e9": 5065, "\u2581\u13c2\u13da\u13e9": 5066, "\u2581\u13a0\u13c2\u13cd\u13a6": 5067, "\u2581\u13a0\u13e5\u13b8\u13f3": 5068, "\u13ac\u13e9\u13b6\u13d3\u13c1": 5069, "\u13c1\u13e4\u13b2": 5070, "\u13be\u13c4\u13aa\u13eb\u13cd\u13d7\u13f1": 5071, "\u2581\u13a0\u13f2\u13b1": 5072, "\u13d4\u13f2\u13ce\u13ad": 5073, "\u2581\u13a4\u13c4": 5074, "\u2581\u13db\u13c6": 5075, "\u2581\u13e7\u13f2": 5076, "\u13f4\u13db": 5077, "\u13da\u13af": 5078, "\u2581\u13a6\u13ec\u13c2": 5079, "\u2581\u13af\u13e5": 5080, "\u13c5\u13d3\u13db": 5081, "\u13c7\u13c5\u13af": 5082, "\u2581\u13d7\u13c2\u13c5": 5083, "\u13c4\u13ec\u13cd\u13d7": 5084, "\u13a6\u13c4\u13aa\u13eb\u13cd\u13a6": 5085, "\u2581\u13a4\u13f2\u13a2\u13cd\u13d7": 5086, "\u2581\u13d5\u13cd": 5087, "\u13b7\u13e5": 5088, "\u2581\u13d9\u13a9\u13c2": 5089, "\u2581\u13a4\u13ea\u13b5": 5090, "\u13c1\u13be": 5091, "\u13db\u13d7\u13cd\u13a9": 5092, "\u2581\u13a4\u13c1\u13d9\u13b8": 5093, "\u2581\u13a0\u13da\u13d3\u13b4\u13cd\u13d7": 5094, "\u2581\u13a4\u13be\u13e3\u13a2": 5095, "\u2581\u13e4\u13c8\u13db": 5096, "\u2581\u13d7\u13a7\u13c3\u13a9": 5097, "\u13c2\u13b5": 5098, "\u2581\u13eb\u13c2": 5099, "\u2581\u13f1\u13ac\u13a9": 5100, "\u2581\u13e3\u13e4\u13cd\u13d9": 5101, "\u13a8\u13be": 5102, "\u2581\u13d9\u13d3\u13a7": 5103, "\u13ef\u13d7": 5104, "\u13ac\u13ad": 5105, "\u2581\u13e6\u13a9\u13c2": 5106, "\u2581\u13a6\u13ec\u13c2\u13cd\u13a8": 5107, "\u13cd\u13c6\u13b3": 5108, "\u2581\u13a4\u13c2\u13f0\u13b8\u13ce": 5109, "\u2581\u13e5\u13e8": 5110, "\u13d3\u13cd\u13d7\u13f1": 5111, "\u2581\u13eb\u13da\u13a7\u13be\u13c1": 5112, "\u2581\u13a6\u13cd\u13a9\u13d3\u13cd\u13ac": 5113, "\u2581\u13a0\u13e5\u13c3\u13c1\u13b4": 5114, "\u2581\u13d9\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 5115, "\u2581\u13a2\u13db\u13d7\u13cd\u13ac": 5116, "\u2581\u13a0\u13be\u13db\u13a9\u13cd\u13ac": 5117, "\u2581\u13a0\u13be\u13b5\u13ae\u13b5\u13ac": 5118, "\u2581\u13d7\u13a9\u13f2": 5119, "\u2581\u13a4\u13c3\u13af\u13f3\u13d2": 5120, "\u2581\u13d5\u13a4\u13b7\u13ac": 5121, "\u2581\u13c2\u13d3\u13d5\u13d8\u13f4\u13af\u13d2": 5122, "\u2581\u13a0\u13c2\u13a9\u13b5\u13f2\u13ac": 5123, "\u13be\u13f0\u13af\u13cd\u13d7": 5124, "\u13df\u13cf\u13cd\u13aa": 5125, "\u13a2\u13cf\u13b5": 5126, "\u13a1\u13dd\u13ea\u13af": 5127, "\u2581\u13a4\u13d2\u13c2\u13b4": 5128, "\u2581\u13d7\u13be\u13d3\u13aa\u13be\u13d7\u13cd\u13ac": 5129, "\u13a0\u13b3\u13c2": 5130, "\u2581\u13af\u13c1\u13ac": 5131, "\u2581\u13a0\u13c2\u13a7\u13b8": 5132, "\u2581\u13a4\u13c3\u13af\u13f3\u13c5": 5133, "\u13a0\u13cd\u13a6\u13ef": 5134, "\u2581\u13a4\u13c1\u13b7\u13c1": 5135, "\u13be\u13c4\u13aa\u13eb\u13ce": 5136, "\u2581\u13a0\u13a9\u13cd\u13db\u13d7\u13cd\u13ac": 5137, "\u13f4\u13d4\u13c2\u13b8": 5138, "\u2581\u13a0\u13ac\u13d7\u13cd\u13ac": 5139, "\u2581\u13a0\u13be\u13d5\u13b2\u13cd\u13ac": 5140, "\u2581\u13e6\u13a2\u13c9": 5141, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d4\u13c5": 5142, "\u2581\u13a4\u13cd\u13d7\u13f0\u13d4\u13c1": 5143, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d4\u13c5": 5144, "\u13c6\u13b4": 5145, "\u2581\u13be\u13c6\u13b5\u13cd\u13d4\u13c5": 5146, "\u13c4\u13d5\u13d8\u13f4\u13b2": 5147, "\u2581\u13aa\u13d9": 5148, "\u2581\u13a6\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac": 5149, "\u2581\u13a4\u13e6\u13af": 5150, "\u2581\u13a0\u13c7\u13c5\u13d2": 5151, "\u2581\u13a4\u13c2\u13f0\u13b8\u13c5": 5152, "\u2581\u13ed\u13c2\u13b6\u13d2": 5153, "\u2581\u13a4\u13ea\u13a7\u13c5": 5154, "\u2581\u13e5\u13c3\u13ae\u13cd\u13ac": 5155, "\u2581\u13c5\u13d3\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13ac": 5156, "\u2581\u13a0\u13be\u13d3\u13aa\u13be\u13d7\u13cd\u13ac": 5157, "\u2581\u13a2\u13d7\u13c2": 5158, "\u13c8\u13b3": 5159, "\u2581\u13d7\u13a6\u13c1\u13b8": 5160, "\u2581\u13e7\u13b6\u13d2": 5161, "\u2581\u13a0\u13c9\u13ea\u13b3\u13c5": 5162, "\u2581\u13e8\u13cc": 5163, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9": 5164, "\u13d3\u13cd\u13d5\u13b8\u13d7": 5165, "\u2581\u13e7\u13d3\u13b4\u13c1": 5166, "\u13a0\u13c1\u13af": 5167, "\u2581\u13ed\u13d3\u13aa\u13be\u13db": 5168, "\u2581\u13a2\u13ef\u13c5\u13c1": 5169, "\u2581\u13da\u13aa": 5170, "\u2581\u13a4\u13d9\u13af\u13f3\u13c1": 5171, "\u2581\u13e7\u13be\u13db\u13d0\u13c5": 5172, "\u2581\u13a2\u13d3\u13b5\u13ae\u13b5": 5173, "\u2581\u13d7\u13a9\u13be\u13eb": 5174, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d4\u13c2\u13d3\u13cd\u13d7": 5175, "\u13b8\u13d9\u13d7": 5176, "\u13c1\u13b5\u13cd\u13ac\u13be": 5177, "\u13ce\u13aa\u13a9\u13cd\u13d7": 5178, "\u2581\u13d7\u13aa\u13ea\u13b3\u13c5": 5179, "\u13f2\u13af\u13b2": 5180, "\u2581\u13a8\u13e5\u13db\u13d9\u13d7": 5181, "\u13e5\u13be\u13dd\u13a5\u13be": 5182, "\u2581\u13d3\u13a6\u13e5\u13ef": 5183, "\u2581\u13d5\u13e3\u13d3\u13c2\u13b8\u13e8": 5184, "\u2581\u13ed\u13c2\u13b6\u13af\u13cd\u13d7": 5185, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d4\u13c5": 5186, "\u2581\u13d7\u13e5\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 5187, "\u2581\u13d7\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 5188, "\u2581\u13e3\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 5189, "\u2581\u13ed\u13b6\u13af\u13cd\u13d7": 5190, "\u2581\u13d7\u13a6\u13b5\u13e6": 5191, "\u2581\u13a2\u13f3\u13df\u13b6": 5192, "\u2581\u13a0\u13c1\u13b5": 5193, "\u2581\u13a4\u13c2\u13c3\u13ae\u13d7": 5194, "\u2581\u13a4\u13b5\u13c2\u13a9\u13d7": 5195, "\u2581\u13e9\u13be\u13a2": 5196, "\u2581\u13d7\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7": 5197, "\u2581\u13e9\u13e5\u13b3": 5198, "\u13e0\u13be\u13cd\u13db\u13be": 5199, "\u2581\u13aa\u13b5\u13ac": 5200, "\u2581\u13a8\u13e8": 5201, "\u13b0\u13e2\u13c5\u13ad": 5202, "\u13c1\u13d4\u13c1": 5203, "es": 5204, "\u13e5\u13c1\u13b8\u13af": 5205, "\u2581\u13a4\u13c2\u13b8": 5206, "\u13e6\u13a2": 5207, "dinot": 5208, "\u2581\u13a0\u13b0\u13b5\u13c6\u13b9": 5209, "\u2581\u13a4\u13a7\u13d6\u13c3\u13b4": 5210, "\u2581\u13a4\u13ac\u13e9\u13b3": 5211, "\u2581\u13b1\u13c1\u13c5\u13ce": 5212, "\u2581\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac\u13be": 5213, "\u2581\u13c2\u13e5\u13aa\u13b8\u13be": 5214, "\u2581\u13c2\u13e5\u13ea\u13a0": 5215, "\u2581\u13d5\u13cf\u13b6\u13c2\u13a6": 5216, "\u2581\u13d7\u13a6\u13c3\u13e3\u13dd\u13cd\u13a9": 5217, "\u2581\u13d7\u13a6\u13cc\u13c6\u13b8": 5218, "\u2581\u13e7\u13be\u13cd\u13d5\u13e5": 5219, "\u2581\u13e7\u13c2\u13b3\u13be\u13a2": 5220, "\u2581\u13ec\u13a9\u13b6\u13d2\u13a9": 5221, "\u2581\u13ed\u13a9\u13e8\u13c5": 5222, "\u2581\u13f1\u13d5\u13cd\u13ac\u13cf": 5223, "\u2581\u13a0\u13f3\u13be\u13a6": 5224, "\u2581\u13a4\u13d4\u13b3\u13ec\u13ce\u13a2": 5225, "\u2581\u13e7\u13e9\u13d7\u13d4\u13ef": 5226, "\u2581\u13f1\u13c5\u13ce\u13a6\u13a9": 5227, "\u2581\u13a4\u13d3\u13e5\u13be\u13cd": 5228, "\u2581\u13a4\u13d4\u13b4\u13a6\u13d2": 5229, "\u2581\u13a4\u13e9\u13ef\u13a8\u13a2": 5230, "\u2581\u13c2\u13e3\u13db\u13bf\u13d5\u13a8\u13cd\u13d7": 5231, "\u2581\u13a4\u13d5\u13ef\u13d4\u13c1\u13b4": 5232, "\u2581\u13c4\u13be\u13d3\u13c5\u13db\u13be": 5233, "\u2581\u13d7\u13a6\u13e9\u13d2\u13a9": 5234, "\u2581\u13a4\u13d3\u13e9\u13d7\u13cd\u13d9\u13db": 5235, "\u2581\u13be\u13c5\u13db\u13c1\u13b0": 5236, "\u2581\u13c5\u13e7\u13b5\u13cd\u13d9\u13d4\u13c1": 5237, "\u2581\u13cd\u13a9\u13c1\u13b2\u13cf": 5238, "\u2581\u13a0\u13a9\u13cd\u13d3\u13e9\u13d5\u13a8\u13cd\u13d7": 5239, "\u2581\u13a0\u13b5\u13f0\u13a2\u13b6\u13b8\u13ad": 5240, "\u2581\u13a2\u13e3\u13db\u13c5\u13a2\u13cd\u13d9\u13a2": 5241, "\u2581\u13a3\u13cd\u13d3\u13d3\u13e4\u13b5": 5242, "\u2581\u13a4\u13c1\u13b3\u13eb\u13ce\u13b8": 5243, "\u2581\u13a8\u13a2\u13be\u13c2": 5244, "\u2581\u13d7\u13d4\u13b3\u13d7\u13cd\u13d7\u13f1": 5245, "\u2581\u13e5\u13c2\u13e5\u13ea\u13ad": 5246, "\u2581\u13d7\u13e0\u13cd\u13a9": 5247, "\u2581\u13a0\u13d3\u13ea\u13b5\u13a9\u13cd\u13a9": 5248, "\u2581\u13c4\u13be\u13db\u13be\u13d5\u13ac": 5249, "\u2581\u13eb\u13c2\u13e8\u13a6": 5250, "\u2581\u13a4\u13ac\u13e9\u13b4": 5251, "\u2581\u13a4\u13cd\u13d4\u13e9\u13db": 5252, "\u2581\u13d9\u13d3\u13ab\u13aa\u13d3\u13c1\u13b5": 5253, "\u2581\u13c5\u13d3\u13e3\u13d3\u13b4\u13c5\u13af": 5254, "\u2581\u13d7\u13ab\u13aa\u13d3\u13c1\u13af": 5255, "\u2581\u13c2\u13aa\u13af\u13f3\u13b2\u13cd\u13ac\u13be": 5256, "\u2581\u13a2\u13a6\u13ea\u13cd\u13a9": 5257, "\u2581\u13a5\u13a8\u13d2\u13a9": 5258, "\u13c1\u13c9\u13e3\u13d6\u13cd\u13d7": 5259, "\u2581\u13a2\u13ac\u13e9\u13be\u13db\u13c1\u13d7": 5260, "\u2581\u13a4\u13ac\u13e9\u13b8": 5261, "\u2581\u13a4\u13b5\u13d8\u13be\u13a5": 5262, "\u2581\u13e5\u13d5\u13e3\u13aa\u13b2\u13a9": 5263, "\u2581\u13c5\u13d3\u13e5\u13f4\u13c1\u13b5": 5264, "\u2581\u13f4\u13a6\u13e5\u13db\u13d3": 5265, "\u2581\u13c2\u13ac\u13e0\u13cd\u13ac\u13be": 5266, "\u2581\u13a0\u13b5\u13db\u13d3": 5267, "\u2581\u13a0\u13a8\u13f2\u13c5": 5268, "\u2581\u13e3\u13c3\u13ae\u13b8\u13a9": 5269, "\u2581\u13cd\u13a8\u13eb": 5270, "\u2581\u13f1\u13c2\u13a6\u13db\u13c1\u13ad": 5271, "\u2581\u13d7\u13aa\u13cf\u13cf\u13cd\u13a9": 5272, "\u2581\u13e4\u13bf\u13a0": 5273, "\u2581\u13a5\u13d3\u13b7\u13b6\u13d7": 5274, "\u2581\u13d5\u13ad\u13d3\u13c5\u13a1\u13ae\u13cd\u13d7": 5275, "\u2581\u13e7\u13be\u13b4\u13d0\u13db": 5276, "\u2581\u13d7\u13c2\u13a7\u13bf\u13e9\u13d5\u13a9": 5277, "\u2581\u13e5\u13e8\u13f0\u13b3\u13d7\u13d9\u13b2\u13a9": 5278, "\u2581\u13a4\u13e9\u13c3\u13ea": 5279, "\u2581\u13e5\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 5280, "\u2581\u13d5\u13aa\u13e2\u13ce\u13cd\u13d7": 5281, "\u2581\u13da\u13dc\u13c5\u13db": 5282, "\u2581\u13c2\u13d5\u13a4\u13cd\u13d5\u13cd\u13d7": 5283, "\u2581\u13d4\u13d8\u13c2\u13d9\u13af": 5284, "\u2581\u13c5\u13d3\u13ac\u13ef\u13db\u13c1\u13b5": 5285, "\u2581\u13a4\u13be\u13d7\u13a6\u13b4\u13f2\u13e8\u13af": 5286, "\u2581\u13c4\u13cd\u13a6\u13c5\u13e8\u13be": 5287, "\u2581\u13c2\u13a9\u13f4\u13c1\u13b8": 5288, "\u2581\u13d5\u13af\u13c1\u13e4\u13ae\u13cd\u13d7": 5289, "\u2581\u13b0\u13cc\u13be": 5290, "\u2581\u13a4\u13be\u13b5\u13cd\u13d4\u13f4\u13d7": 5291, "\u2581\u13c2\u13a8\u13b5\u13cd\u13ac": 5292, "\u2581\u13d7\u13be\u13c2\u13cf\u13b2\u13cd\u13a9": 5293, "\u2581\u13d7\u13e3\u13d3\u13b5\u13a2": 5294, "\u2581\u13a0\u13be\u13db\u13c1\u13b5\u13cd\u13a9": 5295, "\u2581\u13d5\u13e5\u13d9\u13a8\u13cd\u13d7": 5296, "\u2581\u13cd\u13a9\u13f2\u13ae\u13cd\u13d7": 5297, "\u2581\u13d7\u13e5\u13f2\u13b1\u13d2\u13af": 5298, "\u2581\u13a4\u13c4\u13ec\u13cd\u13d5\u13cd\u13d7": 5299, "\u2581\u13c2\u13ea\u13cd\u13ac\u13a2": 5300, "\u13e4\u13ec\u13a9": 5301, "ans": 5302, "\u2581\u13c2\u13d1\u13ea\u13ce\u13b4\u13a2": 5303, "\u13b5\u13cd\u13aa\u13b8\u13d7\u13cd\u13a8\u13cd\u13d7": 5304, "\u2581\u13c5\u13d3\u13e8\u13c1\u13b5": 5305, "\u2581\u13f1\u13c4\u13ea\u13d2": 5306, "\u2581\u13d7\u13c2\u13f2\u13a4\u13b5": 5307, "\u2581\u13a4\u13c2\u13be\u13f0\u13ce\u13a2": 5308, "\u2581\u13a2\u13e3\u13a6\u13cc\u13ef\u13cd\u13d3": 5309, "\u2581\u13e7\u13ef\u13cd\u13a6": 5310, "\u2581\u13a4\u13e9\u13be\u13d5": 5311, "\u2581\u13a0\u13a9\u13cd\u13a6\u13c5\u13e5\u13d9\u13b8\u13a2": 5312, "\u2581\u13a0\u13be\u13c1\u13b8\u13d7\u13cd\u13ac": 5313, "\u2581\u13a2\u13f3\u13e9\u13a6\u13d8": 5314, "\u2581\u13da\u13cc\u13af\u13b8": 5315, "\u2581\u13c2\u13e5\u13cd\u13a6\u13a2\u13b2\u13be": 5316, "\u2581\u13da\u13d3\u13c2\u13b8\u13e8": 5317, "\u2581\u13e7\u13be\u13d8\u13c2\u13d9\u13af": 5318, "\u2581\u13d7\u13e3\u13d8\u13c2\u13d9\u13af": 5319, "\u2581\u13c2\u13a6\u13ea\u13cd\u13aa\u13a2": 5320, "\u2581\u13a4\u13c1\u13be\u13a2": 5321, "\u13d9\u13b4\u13c7": 5322, "ay": 5323, "\u2581\u13a4\u13c3\u13e2\u13d4\u13c5\u13a9": 5324, "\u2581\u13a8\u13b5\u13cc\u13d5": 5325, "\u2581\u13ac\u13e9\u13be\u13a6\u13cc\u13ef\u13cd\u13d7\u13d5\u13a9": 5326, "\u2581\u13a8\u13a6\u13ab\u13f4\u13d3\u13c1\u13d7": 5327, "\u2581\u13da\u13c6\u13db": 5328, "\u2581\u13d9\u13db\u13db\u13d4\u13c2": 5329, "\u2581\u13d7\u13be\u13d3\u13be\u13cc\u13b2\u13cd\u13a9": 5330, "\u2581\u13a4\u13db\u13d2": 5331, "\u2581\u13ad\u13d3\u13c5\u13d3\u13d3": 5332, "\u2581\u13d7\u13d5\u13f2\u13b2\u13cd\u13a9": 5333, "\u2581\u13e7\u13d4\u13be\u13b6": 5334, "\u2581\u13f2\u13e5\u13a6\u13d4\u13ad": 5335, "\u2581\u13a2\u13e8\u13f0\u13b3\u13d7\u13d9\u13ad": 5336, "\u2581\u13e7\u13b3\u13cf\u13d5\u13c5": 5337, "\u2581\u13a2\u13e3\u13d3\u13c5\u13df": 5338, "\u2581\u13a6\u13d9\u13b4\u13a3\u13cd": 5339, "\u2581\u13a0\u13c2\u13b6\u13bb": 5340, "\u2581\u13c2\u13a6\u13da\u13cf\u13c1": 5341, "\u2581\u13a4\u13d7\u13cc\u13d3\u13db": 5342, "\u2581\u13a0\u13b5\u13cd\u13a6\u13c1\u13db": 5343, "\u2581\u13a1\u13ad\u13a6\u13d4": 5344, "\u2581\u13f3\u13d3\u13ec\u13a0": 5345, "\u2581\u13a0\u13c2\u13ec\u13c2\u13cd\u13a9": 5346, "\u2581\u13c2\u13e4\u13b2\u13be": 5347, "\u2581\u13a8\u13e5\u13cd\u13a6\u13a9": 5348, "\u13b8\u13c2\u13d7\u13cd\u13a9": 5349, "\u2581\u13a0\u13a9\u13ec\u13c2\u13af\u13cd\u13d7\u13f1": 5350, "\u2581\u13be\u13c5\u13c1\u13b2": 5351, "\u2581\u13a8\u13a6\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8\u13af": 5352, "\u2581\u13e9\u13b5\u13f0\u13a2\u13b6\u13af\u13ad": 5353, "\u2581\u13a0\u13db\u13c2\u13d7\u13cd\u13d9\u13d7": 5354, "\u2581\u13a2\u13e5\u13aa\u13e9\u13d8\u13cd\u13a8\u13cd\u13d7": 5355, "\u2581\u13e3\u13c2\u13a7\u13b3": 5356, "\u2581\u13ed\u13d3\u13d0\u13b4": 5357, "\u2581\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 5358, "\u2581\u13c2\u13a6\u13be\u13f0\u13cd\u13ac\u13be": 5359, "\u2581\u13a2\u13e3\u13e4\u13b5\u13aa\u13af": 5360, "\u2581\u13a2\u13f0\u13e8\u13c1\u13b8\u13af": 5361, "\u2581\u13a1\u13e3\u13c5\u13cf\u13d3\u13cd\u13d7": 5362, "\u2581\u13a4\u13d3\u13f4\u13db": 5363, "\u2581\u13e7\u13da\u13aa\u13d4\u13c5": 5364, "\u2581\u13d3\u13e5\u13cd\u13d3\u13f1\u13d5\u13b5": 5365, "\u2581\u13e4\u13cc\u13c2": 5366, "\u2581\u13a4\u13ee\u13d9\u13d7\u13f1": 5367, "\u2581\u13e0": 5368, "\u2581\u13a3\u13be\u13c2": 5369, "\u2581\u13c2\u13e3\u13d3\u13c5\u13db\u13be": 5370, "\u2581\u13a4\u13be\u13b5\u13cf\u13be\u13af\u13cd\u13d7": 5371, "\u2581\u13ac\u13a9\u13c1\u13c9\u13e4\u13d7\u13f1": 5372, "\u2581\u13da\u13d5\u13d8\u13f4\u13cc\u13d7\u13d2": 5373, "\u2581\u13c2\u13cd\u13a6\u13c5\u13be": 5374, "\u2581\u13c2\u13e3\u13db\u13c1\u13ad": 5375, "\u13d3\u13ec\u13c5\u13db": 5376, "\u2581\u13d3\u13be\u13e4\u13b8": 5377, "\u2581\u13e3\u13c3\u13cd\u13a9\u13d2\u13a9": 5378, "\u2581\u13ef\u13c6\u13da\u13b5\u13cd\u13a8": 5379, "\u2581\u13a4\u13ec\u13ef\u13c1\u13d2": 5380, "\u2581\u13d5\u13ac\u13c6": 5381, "\u2581\u13d7\u13a7\u13bf\u13e9\u13d5\u13a9": 5382, "\u2581\u13a0\u13aa\u13ce": 5383, "\u2581\u13a3\u13e9\u13d2": 5384, "\u2581\u13a0\u13c7\u13f2\u13c5": 5385, "\u2581\u13a4\u13ef\u13d6\u13be": 5386, "\u2581\u13a4\u13d4\u13c2\u13d7\u13a8": 5387, "\u2581\u13ed\u13aa\u13ae": 5388, "\u2581\u13a0\u13a9\u13cd\u13d5\u13b5\u13cd\u13a9": 5389, "\u2581\u13d7\u13a9\u13f2\u13af\u13cd\u13d7\u13f1": 5390, "\u2581\u13d7\u13c2\u13b4\u13c2": 5391, "\u2581\u13a4\u13c2\u13ac\u13a5\u13cd\u13ac": 5392, "\u2581\u13e3\u13d3\u13f4\u13b3\u13d4\u13cd": 5393, "\u2581\u13ed\u13c2\u13b7\u13e3": 5394, "\u2581\u13b9\u13d3": 5395, "\u2581\u13a0\u13b1\u13b5": 5396, "\u2581\u13e7\u13c2\u13f4\u13cd\u13d5\u13cd\u13a9": 5397, "\u2581\u13a2\u13e5\u13e9\u13db\u13d7\u13f1": 5398, "\u2581\u13d5\u13a4\u13d9\u13cd\u13db": 5399, "\u2581\u13a4\u13be\u13d5\u13d8\u13f1": 5400, "\u2581\u13ac\u13e9\u13c3\u13ae\u13cd\u13a9": 5401, "\u2581\u13d9\u13d3\u13f0": 5402, "\u2581\u13a1\u13e5\u13be\u13f0\u13cd\u13a8\u13cd\u13d7": 5403, "\u2581\u13e3\u13a2\u13ce\u13cd\u13d7": 5404, "\u2581\u13a1\u13e4\u13be": 5405, "\u2581\u13db\u13d3\u13b4\u13b2\u13cd\u13ac\u13a9": 5406, "\u2581\u13a4\u13c2\u13c3\u13c1\u13d7\u13f1": 5407, "\u2581\u13c1\u13b3\u13da": 5408, "\u2581\u13da\u13bf\u13cd\u13d5\u13e2": 5409, "\u2581\u13f1\u13d9\u13a8\u13e5": 5410, "\u2581\u13d7\u13a6\u13df\u13d3": 5411, "\u2581\u13da\u13c5\u13cd\u13d3\u13d5\u13b4": 5412, "\u2581\u13d7\u13e3\u13a6\u13f4\u13b5\u13a8": 5413, "\u2581\u13a0\u13a9\u13c3\u13ae\u13cd\u13a9": 5414, "\u2581\u13eb\u13e5\u13a6\u13d8": 5415, "\u2581\u13d7\u13c6\u13b5\u13a2": 5416, "\u13e8\u13c1\u13d7": 5417, "\u2581\u13a0\u13be\u13db\u13ac\u13a6": 5418, "\u13a6\u13d8\u13b4\u13c5": 5419, "\u2581\u13a4\u13cd\u13d7\u13a9\u13f3": 5420, "\u2581\u13aa\u13e2\u13cd\u13a9": 5421, "\u2581\u13a2\u13cf\u13a6": 5422, "\u2581\u13cd\u13a9\u13c5\u13cf\u13d3\u13cd\u13d7": 5423, "\u2581\u13d7\u13f2\u13cd\u13d9\u13d7": 5424, "\u13be\u13cc\u13be\u13a9": 5425, "\u2581\u13cf\u13d0\u13a2": 5426, "\u2581\u13e5\u13c4\u13b5\u13cd\u13d4\u13c5": 5427, "\u13c2\u13ac\u13ac": 5428, "\u2581\u13a2\u13e5\u13b7\u13a9": 5429, "\u2581\u13a2\u13e8\u13c3\u13c1\u13ad": 5430, "\u2581\u13d7\u13a7\u13c3\u13a8\u13c2": 5431, "\u2581\u13a1\u13bf\u13a2": 5432, "\u2581\u13e3\u13c3\u13ce\u13b0\u13a2": 5433, "\u2581\u13a6\u13df\u13b2": 5434, "\u2581\u13ed\u13f4\u13ae": 5435, "\u2581\u13aa\u13f1\u13c5\u13cd\u13d7": 5436, "\u2581\u13a1\u13e5\u13cd\u13d5\u13b8\u13d7\u13f1": 5437, "\u2581\u13a2\u13e5\u13a6\u13d4\u13b2": 5438, "\u2581\u13f2\u13e8\u13d7\u13cd\u13a8": 5439, "\u2581\u13a2\u13e5\u13ac\u13eb\u13f3\u13af": 5440, "\u13cd\u13d3\u13e9\u13db\u13cd\u13d7\u13f1": 5441, "\u2581\u13a0\u13b5\u13e5\u13d9\u13b2\u13cd\u13ac": 5442, "\u2581\u13a4\u13c2\u13c2\u13f4\u13d7\u13f1": 5443, "\u2581\u13a0\u13e5\u13b8\u13a8\u13b3\u13cd\u13d7": 5444, "\u2581\u13c2\u13a6\u13a1\u13cd\u13d7": 5445, "\u2581\u13c2\u13e8\u13f4\u13c1\u13ad": 5446, "\u2581\u13d7\u13e8\u13f2\u13af\u13ce\u13d7\u13f1": 5447, "\u2581\u13a4\u13db\u13d3\u13cd\u13d3\u13c1\u13b4": 5448, "\u2581\u13d3\u13aa\u13c4\u13b8": 5449, "\u2581\u13a1\u13da\u13e5": 5450, "\u2581\u13a4\u13be\u13d9\u13b4\u13b0\u13af\u13cd\u13d7\u13f1": 5451, "\u2581\u13ac\u13c1\u13e4\u13ad": 5452, "\u2581\u13a0\u13c2\u13a6\u13f2\u13b5\u13f3": 5453, "\u2581\u13e7\u13ec\u13b3": 5454, "\u2581\u13a0\u13a9\u13f0\u13b8\u13b0": 5455, "\u2581\u13d7\u13d1\u13f1": 5456, "\u13b5\u13db\u13d3\u13c1": 5457, "\u2581\u13a4\u13db\u13aa\u13d7": 5458, "\u2581\u13da\u13b5\u13cd\u13da\u13a2\u13ce\u13a2": 5459, "\u2581\u13a2\u13e5\u13a6\u13f4\u13b5\u13a8": 5460, "\u2581\u13a6\u13d3\u13b7\u13aa\u13d7": 5461, "\u2581\u13ac\u13a5\u13cf": 5462, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 5463, "\u2581\u13a4\u13b5\u13d6\u13b8\u13c5\u13a9": 5464, "\u2581\u13d3\u13e6\u13af\u13cd\u13db": 5465, "\u2581\u13ac\u13e9\u13d4\u13f2\u13ce\u13b8\u13a9": 5466, "\u2581\u13a0\u13f4\u13d3\u13c6\u13b6\u13cd\u13a9": 5467, "\u2581\u13da\u13d8\u13c5\u13d2\u13a9": 5468, "\u2581\u13cd\u13a9\u13b7\u13e5\u13cf": 5469, "\u2581\u13ed\u13c5\u13e5\u13b4": 5470, "\u2581\u13e7\u13d5\u13f2\u13c5\u13af": 5471, "\u2581\u13a1\u13e3\u13ab\u13f4\u13a1\u13d7": 5472, "\u2581\u13d7\u13d9\u13b4\u13c6\u13cd\u13d7": 5473, "\u2581\u13d7\u13e3\u13c4\u13ec": 5474, "\u2581\u13a6\u13b6\u13d0\u13c5\u13ad": 5475, "\u2581\u13cd\u13cb": 5476, "\u2581\u13a4\u13be\u13e4": 5477, "\u2581\u13a0\u13be\u13d7\u13cd\u13aa": 5478, "\u2581\u13e3\u13be\u13a5\u13a2": 5479, "\u2581\u13c2\u13a6\u13e5\u13f4\u13c1\u13b8\u13ad": 5480, "\u2581\u13d3\u13ac\u13a9\u13b5": 5481, "\u2581\u13a2\u13e5\u13aa\u13e9\u13d8\u13ad": 5482, "\u2581\u13a3\u13d3\u13b5": 5483, "\u2581\u13d7\u13b5\u13d2\u13cd\u13d7": 5484, "\u2581\u13ed\u13c3\u13c1\u13b8\u13a9": 5485, "\u2581\u13e7\u13aa\u13b8": 5486, "\u2581\u13cd\u13a9\u13a5\u13cf": 5487, "\u2581\u13d7\u13a6\u13d8\u13b4\u13a9": 5488, "\u2581\u13e5\u13c2\u13a6\u13b5\u13cd\u13d7\u13ad": 5489, "\u2581\u13e9\u13cd\u13d8": 5490, "\u2581\u13d7\u13a6\u13b3\u13eb\u13a9": 5491, "\u2581\u13eb\u13a8\u13e5\u13ef\u13c5\u13db": 5492, "\u13f0\u13b8\u13cd\u13a6": 5493, "\u2581\u13d7\u13c2\u13e2\u13d7\u13f1": 5494, "\u2581\u13e7\u13c2\u13f2\u13b1\u13af\u13cd\u13d7\u13f1": 5495, "\u2581\u13c5\u13a9\u13e6\u13c1": 5496, "\u2581\u13af\u13b0\u13b5": 5497, "\u2581\u13c2\u13a8\u13f3\u13ce\u13cd\u13d7": 5498, "\u2581\u13a0\u13c2\u13cd\u13d3\u13e9\u13d5\u13a9": 5499, "\u2581\u13c5\u13a6": 5500, "\u2581\u13a4\u13be\u13b5\u13c3\u13ae\u13b4": 5501, "\u2581\u13a6\u13c2\u13b3": 5502, "\u2581\u13a0\u13db\u13a9\u13cd\u13a8\u13cd\u13d7": 5503, "\u2581\u13be\u13c2\u13ea\u13cd\u13a8\u13cd\u13d7": 5504, "\u2581\u13a4\u13be\u13d3\u13d3\u13cd\u13a9": 5505, "\u2581\u13a6\u13b8\u13c9\u13d7\u13cd\u13a8": 5506, "\u13e8\u13ad": 5507, "\u2581\u13a8\u13e5\u13ef\u13c5\u13db": 5508, "\u13c3\u13af\u13ce\u13b2": 5509, "\u2581\u13a4\u13b5\u13c3\u13ae\u13d4\u13c5\u13a2": 5510, "\u2581\u13a0\u13be\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac": 5511, "\u2581\u13d5\u13a6\u13c5\u13cc\u13db": 5512, "\u2581\u13a2\u13e5\u13d4\u13f2": 5513, "\u2581\u13c4\u13be\u13b5\u13cd\u13d4\u13c5": 5514, "\u2581\u13a0\u13a9\u13e0\u13eb\u13cd": 5515, "\u2581\u13e5\u13e4\u13ad": 5516, "\u2581\u13a4\u13c2\u13a8\u13f3\u13af": 5517, "\u2581\u13d7\u13c6\u13d3\u13c5\u13db": 5518, "\u2581\u13a1\u13e6\u13a2\u13f3\u13d2": 5519, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13af": 5520, "\u2581\u13a4\u13a7\u13b5\u13e8": 5521, "\u2581\u13c4\u13b5\u13c2\u13ac\u13ac": 5522, "\u2581\u13c4\u13be\u13d3\u13b4": 5523, "\u2581\u13a2\u13a8\u13ce\u13a2": 5524, "\u2581\u13eb\u13da\u13c2\u13ef\u13c5\u13b2": 5525, "\u13d3\u13b8\u13db": 5526, "\u2581\u13a4\u13cd\u13d3\u13f2\u13d2": 5527, "\u2581\u13d3\u13f0\u13cf": 5528, "\u13e2\u13d4\u13c2": 5529, "\u2581\u13a0\u13e9\u13be\u13a6\u13b3\u13af\u13f3": 5530, "\u2581\u13a4\u13be\u13d3\u13c5\u13d2\u13a9": 5531, "\u2581\u13be\u13c5\u13c1\u13ad": 5532, "\u2581\u13a2\u13e5\u13b7\u13e4\u13d7\u13f1": 5533, "\u2581\u13f0\u13b5\u13a6\u13ef": 5534, "\u2581\u13c4\u13e9\u13c2\u13cc\u13c5": 5535, "\u13d2\u13be\u13d4\u13c5": 5536, "\u2581\u13e3\u13f0\u13af": 5537, "\u2581\u13d5\u13be\u13d3\u13aa\u13b2\u13f3": 5538, "\u2581\u13ed\u13c2\u13f4\u13b8\u13a9": 5539, "\u2581\u13af\u13cd\u13a9\u13cd\u13aa\u13af": 5540, "\u2581\u13d7\u13a6\u13da\u13b2\u13cd\u13a9": 5541, "\u2581\u13a0\u13aa\u13e9\u13d8\u13cd\u13ac": 5542, "\u2581\u13a0\u13c2\u13b7\u13a9": 5543, "\u2581\u13a4\u13d5\u13b0\u13af\u13cd\u13d7\u13f3": 5544, "\u2581\u13a2\u13ef\u13c5\u13c1\u13af": 5545, "\u2581\u13e3\u13d3\u13c5\u13d6\u13cd\u13d7": 5546, "\u2581\u13be\u13a6\u13b8\u13b3\u13d7": 5547, "\u2581\u13af\u13b7\u13a6": 5548, "\u2581\u13ef\u13c3\u13c9": 5549, "\u13b7\u13ac": 5550, "\u2581\u13e5\u13cd\u13a6\u13c5\u13e4\u13b8": 5551, "\u2581\u13a4\u13c1\u13d9\u13b8\u13af": 5552, "\u2581\u13e3\u13da\u13b5\u13cd\u13aa": 5553, "\u2581\u13a6\u13d3\u13a5": 5554, "\u2581\u13ac\u13e9\u13aa\u13ae\u13a2": 5555, "\u2581\u13bf\u13db\u13c1\u13b2": 5556, "\u13da\u13b8\u13c5\u13a5\u13cd\u13ac": 5557, "\u2581\u13a4\u13cd\u13c9\u13b5\u13f1": 5558, "\u13b9\u13c2": 5559, "\u2581\u13a4\u13d3\u13d4\u13c5": 5560, "\u2581\u13a4\u13d3\u13c5\u13cd\u13d7\u13f1": 5561, "\u2581\u13a1\u13c8": 5562, "\u2581\u13a3\u13e4\u13af": 5563, "\u2581\u13da\u13be\u13b4\u13c5\u13a9": 5564, "\u13c5\u13d3\u13db\u13a9": 5565, "\u2581\u13a0\u13a6\u13db\u13c5\u13af": 5566, "\u13a3\u13cf\u13c9": 5567, "\u2581\u13d5\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 5568, "\u2581\u13d3\u13a9\u13cf\u13b3\u13db\u13a2": 5569, "\u2581\u13da\u13ec\u13e2\u13c1\u13a2": 5570, "\u2581\u13e7\u13d1\u13f0\u13db": 5571, "\u2581\u13a4\u13be\u13b5\u13ce\u13a2": 5572, "\u2581\u13d7\u13ac\u13d4\u13c5\u13af": 5573, "\u2581\u13a2\u13a6\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 5574, "\u13c1\u13c5\u13cd\u13d7\u13f1": 5575, "\u13c2\u13c3\u13c1\u13b4": 5576, "\u2581\u13a4\u13b3\u13cf\u13d5\u13c2": 5577, "\u2581\u13aa\u13b5\u13cd\u13d7\u13f1": 5578, "\u2581\u13a2\u13a8\u13e8\u13c1\u13d7": 5579, "\u2581\u13da\u13c2\u13a7\u13c1\u13a2": 5580, "\u2581\u13be\u13c6\u13cd\u13d7": 5581, "\u2581\u13a0\u13c7\u13b7\u13c5": 5582, "\u2581\u13a0\u13ef\u13eb\u13cd\u13a9": 5583, "\u2581\u13da\u13ea\u13a7\u13b2": 5584, "\u2581\u13d3\u13f0\u13c2": 5585, "\u2581\u13a4\u13c2\u13a6\u13b8": 5586, "\u2581\u13a0\u13c2\u13cd\u13c6\u13c2\u13aa\u13d7\u13cd\u13a9": 5587, "\u2581\u13a4\u13b8\u13c1\u13a2": 5588, "\u2581\u13e7\u13c1\u13b6\u13d7": 5589, "\u2581\u13a0\u13c7\u13c5\u13d2\u13a9": 5590, "\u2581\u13e6\u13cd\u13db": 5591, "\u2581\u13e6\u13b4\u13cd\u13d7": 5592, "\u2581\u13f4\u13a8\u13e8": 5593, "\u2581\u13c2\u13da\u13c2\u13ea\u13ce\u13b4\u13a2": 5594, "\u2581\u13a4\u13c2\u13f0\u13b8\u13ad": 5595, "\u13bf\u13b7\u13d2": 5596, "\u13a6\u13c1\u13b3\u13c5\u13af": 5597, "\u2581\u13a4\u13d3\u13c5\u13cd\u13d7": 5598, "\u2581\u13ea\u13af": 5599, "\u2581\u13f1\u13cd\u13c6": 5600, "\u2581\u13a4\u13b5\u13cd\u13d9\u13d4\u13c5": 5601, "\u2581\u13d5\u13a4\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 5602, "\u2581\u13b2\u13c5\u13a2": 5603, "\u2581\u13d3\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac\u13a2": 5604, "\u2581\u13c4\u13b5\u13cd\u13d3\u13c1\u13b8\u13a2": 5605, "\u2581\u13d3\u13d8\u13c1\u13b2\u13a2": 5606, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13ae": 5607, "\u13a7\u13b5\u13a2\u13cd\u13d7\u13f1": 5608, "\u2581\u13a0\u13d3\u13b4\u13d2\u13a2": 5609, "\u2581\u13a4\u13ab\u13f4\u13a1\u13d7": 5610, "\u2581\u13a4\u13c1\u13d3\u13cd\u13d7\u13f1": 5611, "\u2581\u13da\u13d3\u13d8\u13bf\u13a5\u13a2": 5612, "\u2581\u13ea\u13d9\u13ae": 5613, "\u2581\u13a4\u13d3\u13c5\u13a1\u13b4\u13a2": 5614, "\u2581\u13a0\u13a7\u13d8": 5615, "\u2581\u13d5\u13a6\u13ec\u13c1\u13d7\u13cd\u13ac\u13a9": 5616, "\u2581\u13a8\u13b3\u13cd\u13d9\u13d7": 5617, "\u2581\u13a4\u13c1\u13b7\u13ac\u13a9": 5618, "\u2581\u13a0\u13d3\u13c1\u13e3\u13cd\u13da\u13b6\u13a9": 5619, "\u2581\u13a0\u13f0\u13b8\u13d2\u13a9": 5620, "\u13db\u13d7\u13cd\u13aa\u13a2": 5621, "\u2581\u13a4\u13da\u13b5\u13ad": 5622, "\u13a6\u13c2\u13cc\u13b2": 5623, "\u2581\u13a4\u13ec\u13af\u13f3\u13c5\u13a9": 5624, "\u2581\u13e7\u13a7": 5625, "\u2581\u13a4\u13c2\u13c1\u13a2\u13cd\u13d4\u13c5": 5626, "\u13a6\u13cc\u13b4": 5627, "\u2581\u13d3\u13bb": 5628, "\u13c6\u13e0": 5629, "\u2581\u13a8\u13cd\u13d3": 5630, "\u13f0\u13f2\u13b2\u13cd\u13a9": 5631, "\u13c3\u13af\u13ce\u13d7": 5632, "\u2581\u13d7\u13cd\u13d3\u13f1": 5633, "\u2581\u13a0\u13c2\u13cd\u13a6\u13a2\u13ae\u13a2": 5634, "\u2581\u13da\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 5635, "\u2581\u13a0\u13c1\u13b5\u13cd\u13aa": 5636, "\u13d9\u13f1": 5637, "\u2581\u13a4\u13b5\u13ae\u13b5\u13e8\u13af": 5638, "\u13e0\u13af\u13cd\u13d3": 5639, "\u2581\u13e5\u13ef\u13a5\u13a2": 5640, "\u2581\u13a1\u13b6\u13d7\u13cf": 5641, "\u2581\u13d1\u13df\u13b6\u13db\u13c9": 5642, "\u13a8\u13f3\u13c5\u13be": 5643, "\u2581\u13da\u13c2\u13cd\u13d8\u13f0\u13ac": 5644, "\u2581\u13c2\u13d3\u13db\u13c1\u13b2": 5645, "\u2581\u13e5\u13aa\u13a5\u13a9": 5646, "\u2581\u13e7\u13b4\u13af\u13d0\u13d7": 5647, "\u2581\u13d5\u13e8\u13c5": 5648, "\u2581\u13c4\u13d5\u13d8\u13f4\u13b2": 5649, "\u2581\u13a4\u13d2\u13c2\u13b4\u13a2": 5650, "\u2581\u13a4\u13c3\u13db": 5651, "\u2581\u13cc\u13be": 5652, "\u2581\u13a4\u13c2\u13c2\u13f4\u13ae": 5653, "\u2581\u13a0\u13be\u13d7\u13cd\u13ac\u13a2": 5654, "\u2581\u13a6\u13d3\u13cd\u13ac": 5655, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13cf": 5656, "\u2581\u13c1\u13e8\u13c1\u13b8": 5657, "\u2581\u13da\u13c2\u13cf\u13c2\u13d9\u13b8": 5658, "\u2581\u13a6\u13f0\u13e5\u13d0\u13e2": 5659, "\u2581\u13c2\u13d5\u13e8\u13c1\u13b8": 5660, "\u13e3\u13c9\u13af": 5661, "\u2581\u13da\u13ef\u13ea": 5662, "\u2581\u13e6\u13e8": 5663, "\u2581\u13a8\u13e5\u13da\u13a2\u13cd\u13d3\u13c1\u13b8": 5664, "\u13f3\u13d3\u13b4\u13cf": 5665, "\u13d3\u13c2\u13a7\u13bf\u13e9\u13d5": 5666, "\u2581\u13e7\u13c2\u13f2": 5667, "\u2581\u13c5\u13d4": 5668, "\u2581\u13a4\u13ea\u13f4\u13a2": 5669, "\u2581\u13a4\u13f0\u13b8\u13c5\u13a9": 5670, "\u13d3\u13d9\u13b5\u13cd\u13d4\u13c2": 5671, "\u2581\u13b5\u13f3": 5672, "\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7": 5673, "\u13d9\u13a5\u13af\u13cd\u13d7": 5674, "\u2581\u13a4\u13c2\u13c5\u13c5": 5675, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13ce\u13b4\u13a2": 5676, "\u2581\u13a2\u13cd\u13a9": 5677, "\u2581\u13a0\u13b4\u13c2\u13cd\u13ac": 5678, "\u2581\u13a0\u13c1\u13b5\u13cd\u13ac\u13a9": 5679, "\u13c1\u13a9\u13ce\u13a2": 5680, "\u13f2\u13b5\u13b8": 5681, "\u13d9\u13b2": 5682, "\u2581\u13c2\u13a8\u13ce\u13a2": 5683, "\u2581\u13a1\u13b5\u13cd\u13ac\u13a2": 5684, "\u13d3\u13c1\u13b2": 5685, "\u2581\u13d3\u13c2\u13a7\u13c5\u13a2": 5686, "\u2581\u13a0\u13c2\u13d9\u13be\u13a1\u13a2": 5687, "\u2581\u13d3\u13c2\u13b3\u13eb\u13a5\u13a2": 5688, "\u2581\u13be\u13cb": 5689, "\u2581\u13c2\u13da\u13ea\u13ce\u13b8\u13a2": 5690, "\u13c2\u13b7\u13e5": 5691, "\u2581\u13a2\u13e3\u13d5\u13b6\u13c6": 5692, "\u2581\u13c4\u13db\u13c1\u13b8\u13be": 5693, "\u2581\u13a4\u13db\u13a6": 5694, "\u2581\u13a4\u13a9\u13ce": 5695, "\u2581\u13ed\u13c2\u13f4\u13ae": 5696, "\u2581\u13af\u13a9": 5697, "\u2581\u13a1\u13b3\u13ea\u13c9": 5698, "\u2581\u13e3\u13a9\u13cd\u13d7": 5699, "\u2581\u13d7\u13a6\u13d9\u13d7": 5700, "\u2581\u13da\u13f2\u13af\u13ce\u13b4": 5701, "\u2581\u13e7\u13ec\u13b8\u13a2": 5702, "\u2581\u13be\u13c9\u13af\u13f3": 5703, "\u2581\u13a0\u13a6\u13d4\u13af": 5704, "\u13a6\u13d9\u13a5\u13d2\u13af": 5705, "\u2581\u13e5\u13d5\u13ad": 5706, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c1\u13b4": 5707, "\u2581\u13e3\u13aa\u13e9\u13d8\u13cd\u13aa": 5708, "\u13b3\u13c5\u13db": 5709, "\u2581\u13e5\u13f0": 5710, "\u2581\u13a4\u13cd": 5711, "\u2581\u13c4\u13c2\u13ea\u13ce\u13b8": 5712, "\u2581\u13a0\u13da\u13a2\u13cd\u13db\u13a2": 5713, "\u13ea\u13b3": 5714, "\u2581\u13df\u13d7": 5715, "\u13af\u13c9": 5716, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6": 5717, "\u2581\u13e9\u13be\u13a2\u13d2": 5718, "\u2581\u13a4\u13c2\u13f2\u13ad": 5719, "\u2581\u13a4\u13d5\u13d7": 5720, "\u13a6\u13cd\u13a6\u13c2\u13d7\u13e2": 5721, "\u13cd\u13d5\u13b8": 5722, "\u2581\u13eb\u13ef": 5723, "\u2581\u13d7\u13a6\u13d8\u13ef": 5724, "\u2581\u13a6\u13c1\u13b2\u13a9": 5725, "\u2581\u13a0\u13be\u13b5\u13e5\u13d9\u13b2\u13cd": 5726, "\u2581\u13a4\u13e2\u13d7": 5727, "\u2581\u13a0\u13c2\u13d9\u13be\u13a5\u13a9": 5728, "\u2581\u13e3\u13c9\u13a9": 5729, "\u13b4\u13c2\u13d3\u13cd\u13d7": 5730, "\u2581\u13a3\u13a6\u13b5\u13aa": 5731, "\u13d3\u13b4\u13c5\u13af": 5732, "\u2581\u13da\u13c5\u13ce\u13a2": 5733, "\u2581\u13f1\u13d7\u13d3": 5734, "\u13d7\u13d4\u13af": 5735, "\u13d4\u13b3\u13ec\u13af\u13cd\u13d7": 5736, "\u2581\u13c4\u13be\u13db\u13c1\u13b8\u13a2": 5737, "\u13c6\u13b3": 5738, "\u2581\u13da\u13be\u13b5": 5739, "\u13f2\u13a6\u13db\u13c5": 5740, "\u2581\u13a4\u13e9\u13a8\u13eb\u13ce": 5741, "\u2581\u13ea\u13e5": 5742, "\u13c5\u13d3\u13d7\u13cd\u13ac": 5743, "\u2581\u13a0\u13a9\u13cd\u13a8\u13cd\u13d7": 5744, "\u2581\u13a7\u13c3\u13ae\u13cd\u13ac\u13a2": 5745, "\u13da\u13aa\u13d3\u13c1\u13d7": 5746, "\u2581\u13a0\u13cd\u13c6\u13b8": 5747, "\u2581\u13a0\u13c2\u13b5": 5748, "\u2581\u13a6\u13c5\u13ac\u13a2": 5749, "\u2581\u13ac\u13e9\u13b7\u13e4\u13ae": 5750, "\u2581\u13a2\u13e7\u13d3\u13b4": 5751, "\u2581\u13a4\u13c2\u13c4\u13aa\u13e8\u13c3": 5752, "\u13e4\u13af": 5753, "\u2581\u13a4\u13b6\u13d7": 5754, "\u2581\u13c7\u13b5": 5755, "\u2581\u13a0\u13d7\u13cd\u13a8": 5756, "\u13c3\u13ae\u13ae\u13b8": 5757, "\u13c5\u13a1\u13b5": 5758, "\u13a6\u13cd\u13d9\u13d7": 5759, "\u13cd\u13d3\u13c1\u13b8\u13af": 5760, "\u2581\u13a4\u13c5\u13cf\u13db": 5761, "\u13c1\u13b5\u13cd\u13ac": 5762, "\u2581\u13a4\u13b7\u13e4\u13b8": 5763, "\u2581\u13f1\u13d9\u13a8": 5764, "\u2581\u13a4\u13ea\u13b7\u13ac": 5765, "\u13e5\u13c4\u13aa\u13eb\u13cd\u13d7": 5766, "\u13c5\u13d7\u13cd\u13aa": 5767, "\u2581\u13a7\u13c1": 5768, "\u2581\u13a2\u13e5\u13cd\u13a6\u13c5\u13e8": 5769, "\u2581\u13ee\u13d3\u13f2": 5770, "\u13c6\u13d3": 5771, "\u2581\u13e8\u13cd\u13a9\u13c3\u13a2": 5772, "\u2581\u13f1\u13d7\u13d7": 5773, "\u2581\u13a0\u13c6\u13a7\u13db\u13a2": 5774, "\u2581\u13a4\u13c1\u13b5\u13cd\u13d7": 5775, "\u2581\u13a4\u13ea\u13af": 5776, "\u2581\u13a4\u13c2\u13e3\u13d6\u13f0\u13c3": 5777, "\u2581\u13a4\u13f0\u13e4\u13a2": 5778, "\u13e3\u13d8\u13c3\u13b5": 5779, "\u2581\u13a4\u13c3\u13e2\u13d7": 5780, "\u2581\u13ef\u13db": 5781, "\u2581\u13e5\u13a6\u13b6": 5782, "\u2581\u13eb\u13d3\u13a6": 5783, "\u2581\u13a6\u13c1\u13b2\u13a2": 5784, "\u13d3\u13c5\u13af\u13d3": 5785, "\u2581\u13a0\u13f0\u13d9\u13b3\u13db\u13a2": 5786, "\u2581\u13da\u13b4\u13c5\u13a9": 5787, "\u13f4\u13cd\u13d7\u13f1": 5788, "\u13c5\u13a2\u13cd\u13d7\u13f1": 5789, "\u2581\u13a4\u13c1\u13c5\u13ce\u13a2": 5790, "\u13e5\u13b6\u13cd\u13d4\u13c5": 5791, "\u13a9\u13aa\u13e9\u13db\u13d7\u13f1": 5792, "\u13e3\u13db\u13c2\u13cf": 5793, "\u2581\u13a2\u13e8\u13f4": 5794, "\u2581\u13a6\u13b6\u13cd\u13ac": 5795, "\u13b4\u13eb\u13cd\u13d4\u13be": 5796, "\u2581\u13a4\u13ec\u13af\u13f3\u13c1": 5797, "\u2581\u13e7\u13b3": 5798, "\u2581\u13d7\u13b5": 5799, "\u2581\u13a4\u13f4\u13cd\u13d7\u13f1": 5800, "\u2581\u13d7\u13e6\u13b8": 5801, "\u13b5\u13c2\u13a9\u13db": 5802, "\u2581\u13a6\u13ec\u13c2\u13cd\u13ac\u13a9": 5803, "\u13db\u13c5\u13a2\u13cd\u13d5": 5804, "\u13b7\u13e4\u13b8\u13a9": 5805, "\u2581\u13d3\u13ef": 5806, "\u2581\u13a4\u13c1\u13e4\u13b8\u13af": 5807, "\u2581\u13a4\u13af\u13cd\u13d7\u13f1": 5808, "\u2581\u13e7\u13ea\u13c5\u13d2\u13a2": 5809, "\u2581\u13a4\u13c3\u13f4\u13ac\u13a2": 5810, "\u2581\u13f3\u13c2\u13f0\u13b8": 5811, "\u2581\u13a2\u13e3\u13b5": 5812, "\u2581\u13a4\u13c2\u13b2\u13a2": 5813, "\u2581\u13d5\u13a8\u13a6\u13b8": 5814, "\u2581\u13f3\u13b3": 5815, "\u13ef\u13a9\u13cd\u13d7": 5816, "\u2581\u13da\u13ed\u13e2": 5817, "\u2581\u13a4\u13d5\u13c5\u13a2": 5818, "\u2581\u13d5\u13a6\u13c1\u13b2": 5819, "\u2581\u13a4\u13c3\u13e2": 5820, "\u2581\u13a6\u13aa\u13a8": 5821, "\u13db\u13c3": 5822, "\u2581\u13a0\u13a6\u13db\u13c5": 5823, "\u2581\u13da\u13a7\u13bf\u13c5\u13c3": 5824, "\u2581\u13a2\u13a6\u13db\u13cd\u13a9\u13c2": 5825, "\u2581\u13a2\u13a9\u13f4\u13c1\u13d7": 5826, "\u13d2\u13cd\u13d7": 5827, "\u2581\u13d7\u13d3\u13b4\u13c2\u13cd\u13ac\u13a2": 5828, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d4\u13c5": 5829, "\u2581\u13a0\u13a2\u13d2\u13c3": 5830, "\u2581\u13d7\u13a6\u13a6": 5831, "\u2581\u13a8\u13e5\u13c1\u13e4\u13b8": 5832, "\u13cd\u13a6\u13b3\u13c1": 5833, "\u2581\u13d5\u13a8\u13a6\u13db": 5834, "\u2581\u13a6\u13c5\u13a6": 5835, "\u13b5\u13c2\u13a9\u13d7\u13f3": 5836, "\u2581\u13e9\u13e5": 5837, "\u2581\u13a8\u13c6": 5838, "\u2581\u13a2\u13e8\u13ef\u13b5\u13e5\u13d9\u13c1\u13b8": 5839, "\u2581\u13a4\u13c2\u13e3\u13d8\u13f0\u13c3": 5840, "\u2581\u13da\u13c2\u13a9\u13d2": 5841, "\u2581\u13a4\u13d5\u13d8\u13f4\u13cc\u13d7\u13d2\u13a2": 5842, "\u13a0\u13e4": 5843, "\u2581\u13d5\u13a4\u13d9\u13a5\u13a2": 5844, "\u2581\u13ae\u13b5\u13cd\u13ac": 5845, "\u13f4\u13ae": 5846, "\u2581\u13a8\u13a5": 5847, "\u2581\u13a4\u13be\u13d3\u13c5\u13db": 5848, "\u13e8\u13a2": 5849, "\u2581\u13cf\u13bb\u13ef\u13c2\u13c3": 5850, "\u2581\u13a3\u13c2\u13a6": 5851, "\u13a7\u13d4\u13ad": 5852, "\u2581\u13a4\u13f2\u13af": 5853, "\u13f4\u13d9\u13d7\u13f1": 5854, "\u2581\u13a4\u13d9\u13e2\u13d2": 5855, "\u13cc\u13a5": 5856, "\u2581\u13a4\u13c2\u13c1\u13e8\u13c3": 5857, "\u13da\u13a7\u13be\u13c5": 5858, "\u13f4\u13af\u13ae\u13cd\u13d7": 5859, "\u13b3\u13c5": 5860, "\u13e5\u13ef\u13c5\u13d7": 5861, "\u2581\u13a4\u13be\u13d3\u13c3\u13f4\u13b5\u13cd": 5862, "\u2581\u13d7\u13cd\u13db": 5863, "\u13f3\u13e9\u13c5": 5864, "\u13d3\u13db\u13c1\u13ae\u13cd\u13d7": 5865, "\u13a6\u13d6\u13c3\u13b2": 5866, "\u13df\u13b6": 5867, "\u2581\u13a4\u13da\u13b5": 5868, "\u13e5\u13d0\u13c5\u13c5": 5869, "\u13cf\u13b8": 5870, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d6\u13b8": 5871, "\u2581\u13d7\u13a6\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7\u13f1": 5872, "\u13f4\u13a2": 5873, "\u2581\u13f1\u13da\u13be": 5874, "\u13aa\u13b2\u13a9": 5875, "\u13f2\u13af\u13ce\u13b8\u13af": 5876, "\u2581\u13a4\u13f2\u13b1\u13d2\u13a9": 5877, "\u13e5\u13cd\u13a6\u13e8\u13af": 5878, "\u13b8\u13ce": 5879, "\u13b5\u13b8": 5880, "\u2581\u13d3\u13d5\u13f2\u13b2\u13cd\u13a8": 5881, "\u13c1\u13df\u13f4\u13db": 5882, "\u2581\u13a4\u13c1\u13d7": 5883, "\u13cd\u13db\u13a9": 5884, "\u2581\u13e5\u13e9": 5885, "\u2581\u13a2\u13a9\u13db": 5886, "\u2581\u13a2\u13f3\u13d3\u13b5": 5887, "\u13aa\u13e9\u13d8\u13cd\u13aa": 5888, "\u13b0\u13c5": 5889, "\u13e3\u13d3\u13d9\u13b5\u13cd\u13d7": 5890, "\u13cf\u13f1": 5891, "\u13d5\u13ad": 5892, "\u13e3\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 5893, "\u13b2\u13d2": 5894, "\u2581\u13a4\u13c3\u13ae\u13d7": 5895, "\u2581\u13a6\u13c5\u13a2": 5896, "\u13d5\u13b6\u13c6\u13cd\u13d7": 5897, "\u2581\u13a0\u13a9\u13e2": 5898, "\u2581\u13a4\u13b5\u13cf\u13ac\u13a2": 5899, "\u13be\u13a5\u13a2": 5900, "\u13e4\u13ae": 5901, "\u2581\u13e7\u13be\u13d9": 5902, "\u13be\u13f0\u13cd\u13a8\u13cd\u13d7": 5903, "\u2581\u13a0\u13c2\u13aa": 5904, "\u2581\u13a6\u13b8\u13b3\u13d7\u13a8": 5905, "\u13d4\u13c2\u13d3\u13cd\u13d7": 5906, "\u13cd\u13a6\u13be\u13af\u13f3": 5907, "\u13c4\u13ec": 5908, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6\u13d7": 5909, "\u13e9\u13db\u13d7\u13f1": 5910, "\u2581\u13d5\u13e3\u13c2\u13f4": 5911, "\u2581\u13d3\u13e5\u13e9\u13db\u13af": 5912, "\u2581\u13a3\u13cd\u13d5": 5913, "\u2581\u13e3\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7": 5914, "\u13a6\u13d3\u13ad": 5915, "\u2581\u13da\u13c2\u13ac": 5916, "\u2581\u13a4\u13ea\u13b7": 5917, "\u13e5\u13b6\u13cd\u13d7": 5918, "\u2581\u13a0\u13d0": 5919, "\u2581\u13ac\u13d3": 5920, "\u13db\u13a6\u13c1\u13b0\u13a2": 5921, "\u13d2\u13f0\u13c3": 5922, "\u13c2\u13ea\u13cf": 5923, "\u2581\u13a2\u13e5\u13c1": 5924, "\u13c5\u13d7\u13f1": 5925, "\u13a9\u13cd\u13d9\u13d7": 5926, "\u2581\u13da\u13e9": 5927, "\u13b2\u13cd\u13ac\u13a2": 5928, "\u13e2\u13c8\u13cd\u13d7\u13f1": 5929, "\u2581\u13d5\u13e5\u13a7": 5930, "\u13af\u13f0": 5931, "\u13db\u13c5\u13af": 5932, "\u13c2\u13a6": 5933, "\u13c1\u13ea\u13ce\u13a2": 5934, "\u2581\u13a2\u13e5\u13f4": 5935, "\u2581\u13e6\u13a8": 5936, "\u13be\u13d3": 5937, "\u13a8\u13f4": 5938, "\u13d8\u13cd\u13ac": 5939, "\u2581\u13a4\u13c2\u13c5\u13c1": 5940, "\u2581\u13a4\u13cd\u13d5\u13b8\u13b2": 5941, "\u2581\u13e7\u13c3\u13e2": 5942, "\u13aa\u13cd\u13ac": 5943, "\u13a6\u13d8\u13b4\u13a9": 5944, "\u13a2\u13e3": 5945, "\u2581\u13e7\u13c2\u13f0\u13b8": 5946, "\u13c2\u13cf\u13c5\u13af": 5947, "\u13d7\u13d7\u13f1": 5948, "\u2581\u13a4\u13aa\u13b2\u13a2": 5949, "\u2581\u13a2\u13ad": 5950, "\u2581\u13d7\u13a7\u13be": 5951, "\u2581\u13d5\u13e4": 5952, "\u2581\u13da\u13f2\u13af\u13ce\u13b8": 5953, "\u2581\u13c2\u13a6\u13ea\u13ce": 5954, "\u2581\u13a4\u13c2\u13b7\u13e4\u13b4": 5955, "\u2581\u13aa\u13b1": 5956, "\u2581\u13d7\u13c5\u13c2": 5957, "\u13be\u13d5\u13d8\u13f4\u13db": 5958, "\u13c5\u13af\u13d2": 5959, "\u2581\u13f1\u13d9\u13e5": 5960, "\u13d3\u13c1\u13b8\u13a9": 5961, "\u13a7\u13ad": 5962, "\u13d3\u13ef\u13c2\u13cd\u13aa": 5963, "\u2581\u13a8\u13be": 5964, "\u13c5\u13d2\u13be": 5965, "\u13c1\u13e4\u13b8\u13ad": 5966, "\u13f2\u13ae\u13a2": 5967, "\u2581\u13d7\u13e5\u13f2\u13af\u13cd\u13d7": 5968, "\u2581\u13e7\u13be\u13d3\u13b4\u13c5": 5969, "\u13c1\u13a9": 5970, "\u13c3\u13af\u13cd\u13d7": 5971, "\u13a8\u13f3\u13ad": 5972, "\u13b6\u13c3": 5973, "\u13c5\u13c1\u13d7\u13f1": 5974, "\u13ce\u13b4\u13a2": 5975, "\u13b5\u13d9\u13ae": 5976, "\u2581\u13ac\u13db\u13aa": 5977, "\u2581\u13cd\u13a9\u13c9": 5978, "\u13a9\u13cd\u13c6\u13c2\u13aa\u13d4\u13c5": 5979, "\u13d3\u13c1\u13b4": 5980, "\u13c6\u13df": 5981, "\u13e7\u13ac": 5982, "\u2581\u13a4\u13a6\u13d9\u13cd\u13d5": 5983, "\u13b5\u13e6\u13db": 5984, "\u2581\u13a8\u13aa\u13ce": 5985, "\u2581\u13a0\u13cd\u13d3\u13f1\u13db": 5986, "\u2581\u13a0\u13c2\u13eb\u13be\u13a8": 5987, "\u13a8\u13e9": 5988, "\u2581\u13eb\u13d9": 5989, "\u13d1\u13b6": 5990, "\u2581\u13f1\u13da\u13f3\u13aa": 5991, "\u2581\u13f1\u13c5": 5992, "\u2581\u13e5\u13b6": 5993, "\u13d3\u13f4\u13ce": 5994, "\u13be\u13b2": 5995, "\u13a6\u13db\u13c1": 5996, "\u13a2\u13cd\u13d4\u13c5": 5997, "\u2581\u13a8\u13db": 5998, "\u13c2\u13cf\u13cd\u13a8\u13cd\u13d7": 5999, "\u2581\u13e6\u13a0": 6000, "\u2581\u13a6\u13d9\u13a8\u13c3": 6001, "\u2581\u13d6": 6002, "\u2581\u13c5\u13e9\u13be\u13d3\u13b4\u13a2": 6003, "\u2581\u13a1\u13c9": 6004, "\u13b4\u13d9\u13d7": 6005, "\u2581\u13a6\u13b6\u13af\u13cd\u13d7\u13f3": 6006, "\u2581\u13a2\u13e6\u13b5\u13cd": 6007, "\u2581\u13a4\u13be\u13da\u13b5\u13cd\u13a8": 6008, "\u13c2\u13a9\u13d3": 6009, "\u13d3\u13c5\u13db\u13b5": 6010, "\u13e3\u13a6\u13cc\u13ef\u13cd\u13d7\u13d5\u13a9": 6011, "\u2581\u13a4\u13ae\u13cd\u13d7": 6012, "\u2581\u13a2\u13e3\u13d3\u13c5\u13db": 6013, "\u2581\u13a0\u13be\u13b5\u13ae\u13b5": 6014, "\u2581\u13a4\u13b8\u13a2": 6015, "\u2581\u13f1\u13d8": 6016, "\u13d7\u13cd\u13ac\u13a9": 6017, "\u2581\u13a0\u13e5\u13c5": 6018, "\u2581\u13a7\u13c3": 6019, "\u2581\u13cd\u13a9\u13cd\u13d3\u13e9\u13d5": 6020, "\u13cc\u13b3\u13d3\u13c5": 6021, "\u13a7\u13b5\u13ce": 6022, "\u2581\u13eb\u13cd\u13d7": 6023, "\u13e9\u13db\u13af\u13d9": 6024, "\u13cd\u13d3\u13c1\u13b8": 6025, "\u2581\u13a6\u13d9\u13a6": 6026, "\u13b5\u13ce": 6027, "\u2581\u13a4\u13be\u13b5\u13aa\u13ce": 6028, "\u13ce\u13c3": 6029, "\u13aa\u13e9\u13d8\u13cd\u13ac": 6030, "\u2581\u13a0\u13cd\u13aa": 6031, "\u2581\u13a1\u13e5\u13c1": 6032, "\u2581\u13d5\u13a4\u13f2": 6033, "\u2581\u13a4\u13c2\u13a7\u13b5": 6034, "\u2581\u13d3\u13d8": 6035, "\u13db\u13af\u13cd\u13d9\u13d7": 6036, "\u13b5\u13cd\u13d3": 6037, "\u2581\u13a0\u13c9\u13af\u13f3": 6038, "\u2581\u13a0\u13a6\u13c5": 6039, "\u2581\u13c2\u13a6\u13db\u13c9": 6040, "\u2581\u13d9\u13af\u13f1\u13c9": 6041, "\u13e3\u13c9": 6042, "\u2581\u13e5\u13e9\u13be\u13a6": 6043, "\u13c2\u13a6\u13d4\u13b2\u13be": 6044, "\u2581\u13ef\u13c7": 6045, "\u13d3\u13db\u13c1\u13d7": 6046, "\u2581\u13a4\u13ec\u13c2\u13af\u13cd\u13d7": 6047, "\u13cf\u13ef": 6048, "\u13d9\u13b4\u13b0\u13d2": 6049, "\u2581\u13a0\u13c2\u13aa\u13e9\u13d8\u13cd\u13a8": 6050, "\u2581\u13e8\u13c6": 6051, "\u13cd\u13c6\u13c2\u13aa\u13d3\u13c1\u13d7": 6052, "\u2581\u13a0\u13c6\u13d3\u13c5": 6053, "\u13e5\u13cd\u13d4\u13c5": 6054, "\u2581\u13f1\u13c5\u13e9\u13cd\u13d7": 6055, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d6": 6056, "\u13ec\u13c1\u13d4\u13c5": 6057, "\u13ec\u13c1\u13d9\u13d7": 6058, "\u13ea\u13cf": 6059, "\u13f2\u13cd\u13d4\u13c5": 6060, "\u13d8\u13cd\u13a9": 6061, "\u13d4\u13b4\u13d2": 6062, "\u13a8\u13ce": 6063, "\u13b4\u13d7\u13f1": 6064, "\u13e5\u13b5": 6065, "\u13ce\u13b5\u13d9\u13d7": 6066, "\u2581\u13a2\u13e3\u13d3\u13d9\u13b5\u13cd\u13d7": 6067, "\u13c1\u13b8\u13d7\u13cd\u13ac": 6068, "\u13b5\u13cd\u13d5\u13b8": 6069, "\u13e9\u13db\u13af": 6070, "\u2581\u13f4\u13a6\u13e5": 6071, "\u2581\u13a0\u13cd\u13da": 6072, "\u2581\u13f3\u13f2": 6073, "\u2581\u13a4\u13be\u13d3\u13c5": 6074, "\u13c5\u13c2": 6075, "\u13c4\u13aa\u13e8\u13a9": 6076, "\u2581\u13d5\u13a6\u13d8": 6077, "\u13ef\u13c5\u13af": 6078, "\u13c5\u13d3\u13d7\u13cd\u13a8\u13cd\u13d7": 6079, "\u13cd\u13d5\u13b8\u13af\u13d9\u13af": 6080, "\u2581\u13a5\u13dd\u13cd\u13a9\u13c2": 6081, "\u2581\u13f4\u13d7": 6082, "\u13cd\u13d9\u13a2": 6083, "\u13e9\u13d3": 6084, "\u13cd\u13d3\u13f2": 6085, "\u13da\u13b5\u13ad": 6086, "\u13a7\u13c2\u13cd\u13ac": 6087, "\u13ae\u13b5": 6088, "\u13b6\u13c5": 6089, "\u2581\u13a0\u13f0\u13b5\u13c9": 6090, "\u13b5\u13cd\u13a9": 6091, "\u13c1\u13a6": 6092, "\u13c2\u13ea\u13ce": 6093, "\u2581\u13a4\u13c4\u13aa\u13eb\u13ce": 6094, "\u2581\u13a0\u13cd\u13c6": 6095, "\u13ea\u13ce\u13b5": 6096, "\u2581\u13a0\u13ce\u13cd\u13a9\u13c2": 6097, "\u2581\u13f3\u13b8": 6098, "\u13c1\u13b6\u13d5\u13cd\u13d7": 6099, "\u2581\u13a4\u13c2\u13e9\u13db": 6100, "\u13e3\u13b7\u13e4\u13d7\u13f1": 6101, "\u2581\u13f1\u13ac\u13c6": 6102, "\u13d9\u13b5\u13aa": 6103, "\u13b8\u13ae": 6104, "\u13d3\u13b4\u13b2\u13a6": 6105, "\u2581\u13a6\u13ea": 6106, "\u13d4\u13ea\u13d9": 6107, "\u13cd\u13c6\u13c2\u13aa\u13d3": 6108, "\u13a5\u13cd\u13a8\u13a2": 6109, "\u13f2\u13d9\u13d7": 6110, "\u13b5\u13bb": 6111, "\u2581\u13a0\u13c2\u13aa\u13b5\u13f0\u13cd\u13a8": 6112, "\u13b5\u13cd\u13c6\u13d9\u13be": 6113, "\u13e2\u13c1\u13a2": 6114, "\u13ae\u13b8": 6115, "\u13e6\u13d2": 6116, "\u2581\u13a4\u13c2\u13c3": 6117, "\u2581\u13a6\u13f2": 6118, "\u2581\u13ef\u13c6\u13d3": 6119, "\u2581\u13a0\u13a9\u13c1\u13b8": 6120, "\u13cc\u13b2": 6121, "\u13e5\u13d3": 6122, "\u2581\u13a5\u13dd\u13cd\u13d7": 6123, "\u2581\u13e5\u13cd\u13a6\u13be": 6124, "\u2581\u13a4\u13e9\u13ce": 6125, "\u13dc\u13d7": 6126, "\u13c9\u13af": 6127, "\u13b7\u13a9\u13cd\u13a9": 6128, "\u13f0\u13ac": 6129, "\u13d3\u13db\u13c1\u13b5": 6130, "\u2581\u13eb\u13ef\u13c5": 6131, "\u13c7\u13d3": 6132, "\u2581\u13e3\u13e2": 6133, "\u2581\u13a2\u13e5\u13cd\u13a6\u13c5": 6134, "\u2581\u13a4\u13a9\u13cd\u13d7": 6135, "\u13b2\u13cd\u13a8": 6136, "\u13d3\u13c1\u13a2": 6137, "\u13db\u13c1\u13b0": 6138, "\u13b4\u13c5\u13d3": 6139, "\u2581\u13a9\u13b3\u13a2": 6140, "\u13d3\u13d1\u13f4": 6141, "\u2581\u13ac\u13e9\u13b5\u13aa\u13c1": 6142, "\u13aa\u13a8": 6143, "\u2581\u13a0\u13d1\u13f4": 6144, "\u13a6\u13db\u13a9": 6145, "\u2581\u13a4\u13f2\u13cd\u13d4\u13c5": 6146, "\u2581\u13d7\u13d5\u13b6\u13c6\u13cd": 6147, "\u2581\u13ad\u13d3\u13c5\u13d6": 6148, "\u2581\u13d5\u13a8\u13e3": 6149, "\u2581\u13d9\u13ac": 6150, "\u2581\u13e9\u13c2\u13b7": 6151, "\u13be\u13b5": 6152, "\u2581\u13a0\u13a9\u13a8\u13f3\u13af": 6153, "\u2581\u13d3\u13cd\u13a9": 6154, "\u2581\u13a4\u13e9\u13d9": 6155, "\u13a1\u13b2\u13a2": 6156, "\u13b4\u13c5\u13ae": 6157, "\u2581\u13ad\u13d3": 6158, "\u13d3\u13d9\u13b5\u13cd\u13d3\u13cf": 6159, "\u13d1\u13b8\u13d3": 6160, "\u13cd\u13d4\u13c5\u13a2": 6161, "\u2581\u13a0\u13c2\u13be": 6162, "\u13a8\u13af\u13d9\u13b8": 6163, "\u2581\u13c4\u13e9\u13c1": 6164, "\u2581\u13f3\u13d3\u13d1": 6165, "\u13f2\u13ce\u13b8": 6166, "\u13ea\u13d2": 6167, "\u13a8\u13e5\u13c1\u13d7\u13f1": 6168, "\u13e5\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 6169, "\u13cd\u13aa\u13d2": 6170, "\u13a3\u13c1": 6171, "\u2581\u13d7\u13cd": 6172, "\u13be\u13a1": 6173, "\u13b5\u13d3": 6174, "\u13f2\u13ae\u13d7": 6175, "\u13b2\u13cd\u13d7\u13f1": 6176, "\u2581\u13d3\u13a8": 6177, "\u2581\u13c2\u13e5\u13ea\u13ce": 6178, "\u2581\u13a0\u13e5\u13b8\u13c3": 6179, "\u2581\u13a4\u13cd\u13db": 6180, "\u2581\u13c8\u13c2": 6181, "\u13c2\u13cd\u13a8\u13cd\u13d7": 6182, "\u13da\u13b8\u13c5\u13d7": 6183, "\u13b5\u13ec": 6184, "\u2581\u13a6\u13d0": 6185, "\u13c2\u13e2\u13d7\u13f1": 6186, "\u13d5\u13a8": 6187, "\u2581\u13e9\u13c6": 6188, "\u2581\u13ec\u13a9": 6189, "\u13e4\u13ea": 6190, "\u13cd\u13a6\u13ef": 6191, "\u2581\u13be\u13e5\u13b8\u13c9": 6192, "\u13c5\u13e9\u13cd\u13d7\u13c9": 6193, "\u13d3\u13a8\u13f3\u13d7": 6194, "\u13e5\u13ef\u13c5\u13db": 6195, "\u13a9\u13db": 6196, "\u13f2\u13b1\u13af": 6197, "\u13d8\u13ce\u13a2": 6198, "\u13cd\u13d3\u13e9\u13d5\u13cf": 6199, "\u13aa\u13d2": 6200, "\u13aa\u13b5\u13f0\u13cd\u13a8\u13a2": 6201, "\u13e3\u13c1": 6202, "\u2581\u13da\u13b5": 6203, "\u13d3\u13d8\u13c2\u13d9\u13af": 6204, "\u2581\u13da\u13be\u13b5\u13aa": 6205, "\u2581\u13c4\u13b5\u13cd": 6206, "\u13e0\u13a0\u13af": 6207, "\u13c3\u13ae\u13d7": 6208, "\u2581\u13a4\u13b7\u13e8\u13c3": 6209, "\u13b3\u13cf\u13d5\u13c2": 6210, "\u2581\u13a0\u13c6\u13db": 6211, "\u2581\u13f3\u13ea": 6212, "\u13c2\u13f1\u13cd\u13a8": 6213, "\u13b4\u13c5\u13b2": 6214, "\u13d9\u13be": 6215, "\u2581\u13a0\u13c2\u13ef\u13eb\u13cd\u13a9\u13c3": 6216, "\u13d0\u13e2": 6217, "\u2581\u13a0\u13f4\u13c9": 6218, "\u13d5\u13e3\u13d9": 6219, "\u13cd\u13a6\u13c5\u13e8\u13a2": 6220, "\u13cd\u13db\u13d7": 6221, "\u2581\u13a0\u13c2\u13a1": 6222, "\u2581\u13e7\u13c5\u13cf": 6223, "\u13f2\u13b1\u13af\u13cd\u13d7": 6224, "\u13a6\u13d3": 6225, "\u13d3\u13d7\u13cd\u13d7": 6226, "\u2581\u13a0\u13b5\u13e5": 6227, "\u13db\u13db\u13b2\u13cd\u13a6": 6228, "\u2581\u13a0\u13d3\u13cd\u13d5\u13b5": 6229, "\u2581\u13c2\u13e3\u13b5\u13cd\u13d3\u13c1": 6230, "\u2581\u13a4\u13d0\u13c5\u13a2": 6231, "\u13d2\u13a6\u13b8": 6232, "\u13cd\u13aa\u13b5": 6233, "\u13da\u13a9": 6234, "\u2581\u13f3\u13c3\u13f4": 6235, "\u13e8\u13cd\u13d7\u13f1": 6236, "\u13d9\u13a6": 6237, "\u2581\u13a5\u13c6": 6238, "\u2581\u13a0\u13cd": 6239, "\u13ae\u13af": 6240, "\u13e2\u13d4\u13c5\u13af": 6241, "\u13da\u13b5\u13cd\u13a8": 6242, "\u13af\u13cd\u13d7\u13cd\u13ac": 6243, "\u13a6\u13c9": 6244, "\u13e5\u13a6\u13d4": 6245, "\u2581\u13c2\u13a6\u13e5\u13f4\u13c1": 6246, "\u13b8\u13c9\u13d3": 6247, "\u13eb\u13ce\u13a2": 6248, "\u13ce\u13b8\u13a2": 6249, "\u13c4\u13aa\u13eb\u13d2\u13af": 6250, "\u2581\u13c5\u13d3\u13f3\u13d3\u13b4": 6251, "\u2581\u13d7\u13a9\u13cd\u13d7": 6252, "\u2581\u13c5\u13b5\u13cc\u13b5": 6253, "\u13d8\u13c3\u13af\u13cd\u13d7": 6254, "\u2581\u13c5\u13e9": 6255, "\u13e5\u13f2\u13cd\u13d9\u13d3\u13c1": 6256, "\u13f2\u13af\u13cf": 6257, "\u13cd\u13d7\u13c2": 6258, "\u13cd\u13da\u13a9\u13d2": 6259, "\u2581\u13a0\u13d5\u13b8\u13c3": 6260, "\u13b6\u13a5": 6261, "\u13aa\u13e9\u13d7\u13cd\u13ac": 6262, "\u13cd\u13ac\u13be\u13c9": 6263, "\u13e3\u13b4\u13db": 6264, "\u2581\u13f1\u13da\u13d3": 6265, "\u13c3\u13c5\u13af": 6266, "\u2581\u13ef\u13a9\u13aa": 6267, "\u13a6\u13b5\u13b0": 6268, "\u13a6\u13b6": 6269, "\u13e2\u13ad": 6270, "\u13f4\u13d4\u13c5\u13a9": 6271, "\u13af\u13db": 6272, "\u13da\u13d3\u13f2\u13ce": 6273, "\u13e7\u13d4\u13c5": 6274, "\u13d0\u13be": 6275, "\u13cd\u13d5\u13a2": 6276, "\u2581\u13c1\u13e9\u13d4\u13b5": 6277, "\u2581\u13ef\u13a6\u13d3": 6278, "\u2581\u13da\u13e9\u13db\u13b2": 6279, "\u13ce\u13b0\u13a2": 6280, "\u2581\u13af\u13c1\u13a9": 6281, "\u13cf\u13c5\u13cd\u13d7": 6282, "\u13cd\u13c6\u13b5\u13cd\u13ac": 6283, "\u2581\u13d5\u13e5\u13ef": 6284, "\u13aa\u13b0\u13cd": 6285, "\u13db\u13a6\u13c5": 6286, "\u13a1\u13c3": 6287, "\u2581\u13d8\u13c1": 6288, "\u2581\u13a4\u13be\u13b4\u13c5": 6289, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac": 6290, "\u2581\u13ac\u13e9\u13c3\u13af\u13f3": 6291, "\u13be\u13c4\u13aa\u13eb\u13d2": 6292, "\u13aa\u13af\u13f3": 6293, "\u2581\u13d5\u13aa\u13e2\u13d2": 6294, "\u13a6\u13cc\u13ef\u13cd\u13d9\u13d7": 6295, "\u2581\u13a6\u13a6": 6296, "\u13d7\u13e2\u13cd\u13d9\u13d7": 6297, "\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac": 6298, "\u2581\u13a4\u13c2\u13e9\u13d2": 6299, "\u13a9\u13cd\u13d3": 6300, "\u2581\u13a4\u13e2\u13ac": 6301, "\u13a8\u13f3\u13af": 6302, "\u2581\u13a0\u13e5\u13f0\u13b8\u13be\u13c1": 6303, "\u13e5\u13b7\u13a9": 6304, "\u13d9\u13b4\u13b0\u13ce": 6305, "\u13d8\u13d3": 6306, "\u13cd\u13d5\u13b5\u13cd\u13aa": 6307, "\u2581\u13d3\u13df\u13b6\u13cd\u13d7": 6308, "\u2581\u13d1\u13df\u13b6\u13db": 6309, "\u2581\u13ed\u13ed\u13cd": 6310, "\u13da\u13f2\u13ce": 6311, "\u2581\u13c6\u13cf": 6312, "\u2581\u13f1\u13d3\u13be": 6313, "\u2581\u13a6\u13c5\u13aa\u13a2": 6314, "\u13a6\u13b8\u13b2\u13a9": 6315, "\u13d7\u13c9": 6316, "\u2581\u13f4\u13d3": 6317, "\u2581\u13a4\u13c5\u13c2": 6318, "\u2581\u13c2\u13d3\u13d9\u13d3\u13c8\u13d2": 6319, "\u2581\u13be\u13ac\u13c1\u13b4": 6320, "\u2581\u13a0\u13a7\u13b5": 6321, "\u2581\u13c2\u13da\u13cd\u13d5": 6322, "\u13a4\u13e8\u13c9\u13d7": 6323, "\u13a2\u13d7\u13a6\u13d8": 6324, "\u13d8\u13c5\u13cd\u13d4\u13c1\u13a2": 6325, "\u2581\u13da\u13c4\u13e9\u13a5": 6326, "\u13a4\u13c2\u13b7\u13e4\u13a2": 6327, "\u2581\u13a4\u13be\u13c5\u13c1": 6328, "\u13d2\u13ae\u13f1\u13e3": 6329, "\u2581\u13a1\u13cc": 6330, "\u2581\u13d5\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 6331, "\u13a7\u13c3\u13ae\u13db": 6332, "\u13a2\u13e5\u13c8\u13f1": 6333, "\u2581\u13a6\u13b5\u13a1\u13b5\u13ac": 6334, "\u13a0\u13ac\u13f1": 6335, "\u2581\u13be\u13a9\u13ea\u13d2": 6336, "\u2581\u13a4\u13c3\u13af\u13f3\u13c1": 6337, "\u13b5\u13aa\u13af": 6338, "\u2581\u13be\u13c2\u13ea\u13cd\u13a8": 6339, "\u2581\u13da\u13d3\u13d8\u13bf\u13a5": 6340, "\u2581\u13d5\u13a4\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 6341, "\u2581\u13da\u13cd\u13ab\u13d3\u13db": 6342, "\u2581\u13c4\u13b5\u13cd\u13d3\u13c1\u13b8": 6343, "\u2581\u13a4\u13b5\u13d6\u13b8\u13c1": 6344, "\u13c7\u13b5\u13e5": 6345, "\u13c9\u13a1\u13d7": 6346, "\u2581\u13a4\u13d4\u13ea\u13d9\u13c1": 6347, "\u2581\u13a4\u13ce\u13b5": 6348, "\u2581\u13c2\u13e3\u13d3\u13a8\u13f3\u13d2": 6349, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d4\u13c1": 6350, "\u2581\u13da\u13c4\u13aa\u13d4\u13c5": 6351, "\u2581\u13a4\u13ea\u13cd\u13a9\u13b8": 6352, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d4\u13c1": 6353, "\u2581\u13da\u13c2\u13e2\u13ac": 6354, "\u2581\u13e7\u13b6\u13ce": 6355, "\u2581\u13a4\u13b4\u13c2\u13d9\u13b4": 6356, "\u2581\u13b2\u13c5": 6357, "\u2581\u13a2\u13e3\u13da\u13b5\u13cd\u13ac": 6358, "\u2581\u13d3\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac": 6359, "\u2581\u13a2\u13e5\u13c1\u13ac": 6360, "\u2581\u13eb\u13e5\u13a6\u13db": 6361, "\u2581\u13a4\u13d3\u13c5\u13a1\u13b4": 6362, "\u2581\u13c2\u13da\u13e9\u13c1\u13b4": 6363, "\u2581\u13d3\u13c5\u13d7\u13cd\u13ac": 6364, "\u13af\u13e2\u13be": 6365, "\u13cd\u13d3\u13e9\u13db\u13ce": 6366, "\u2581\u13be\u13c2\u13a1": 6367, "\u2581\u13a4\u13cd\u13a9\u13d3\u13d2": 6368, "\u2581\u13a0\u13e5\u13c3\u13ae\u13cd\u13ac": 6369, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d4\u13c5": 6370, "\u2581\u13a2\u13e8\u13f0\u13b3\u13d7\u13d9\u13b2": 6371, "\u2581\u13a4\u13cd\u13d3\u13f1\u13db": 6372, "\u13b5\u13a8\u13c2": 6373, "\u2581\u13a8\u13ac": 6374, "\u2581\u13a4\u13cd\u13a6\u13b4": 6375, "\u13da\u13d3\u13d5\u13eb\u13d2": 6376, "\u2581\u13a4\u13d1\u13b5\u13aa\u13e8": 6377, "\u2581\u13a4\u13ee\u13d4\u13c5": 6378, "\u2581\u13da\u13c2\u13f2\u13b1\u13d2": 6379, "\u2581\u13a4\u13d3\u13c5\u13c1": 6380, "\u13cd\u13c9\u13b5\u13f1": 6381, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7": 6382, "\u2581\u13a0\u13c4\u13af\u13cd\u13d7\u13cd\u13ac": 6383, "\u13a6\u13d8\u13d7\u13cd\u13d7\u13f1": 6384, "\u2581\u13e5\u13ec\u13c2\u13cd\u13ac": 6385, "\u13cd\u13a9\u13d3\u13ce\u13a2": 6386, "\u13b5\u13cd\u13aa\u13b8\u13d7\u13cd\u13ac": 6387, "\u2581\u13da\u13be\u13b4\u13c5": 6388, "\u2581\u13a4\u13ef\u13c5\u13ae": 6389, "\u2581\u13e3\u13c1\u13e8": 6390, "\u2581\u13a0\u13c6\u13b4\u13c5": 6391, "\u2581\u13ea\u13d9": 6392, "\u13b8\u13a5\u13cd\u13ac": 6393, "\u2581\u13a3\u13aa\u13af\u13f3": 6394, "\u13b8\u13cd\u13a6": 6395, "\u2581\u13a3\u13a6\u13e3\u13c5": 6396, "\u13be\u13be\u13db\u13c1\u13b0": 6397, "\u13a9\u13cd\u13d3\u13e9\u13d5": 6398, "\u2581\u13a6\u13c1\u13ae": 6399, "\u13d9\u13e2\u13be": 6400, "\u2581\u13d7\u13d8\u13f2": 6401, "\u13d2\u13b5": 6402, "\u2581\u13a4\u13cd\u13d3\u13e9\u13db\u13ce": 6403, "\u2581\u13d7\u13d8\u13c2\u13d9": 6404, "\u2581\u13a4\u13ea\u13a7\u13b2": 6405, "\u13a6\u13d4\u13b2\u13cd\u13ac": 6406, "\u13f2\u13b5\u13b4": 6407, "\u13cd\u13d5\u13b8\u13b2\u13a9": 6408, "\u13f4\u13e4\u13c2": 6409, "\u2581\u13e6\u13a9\u13be\u13eb": 6410, "\u13d3\u13d3\u13cd\u13ac": 6411, "\u2581\u13f1\u13d9\u13ac": 6412, "\u2581\u13e5\u13aa\u13e9\u13db": 6413, "\u13c1\u13b5\u13ce\u13a2": 6414, "\u13b8\u13c9\u13d4\u13c2": 6415, "\u2581\u13a1\u13a9\u13cd\u13d5\u13b8\u13d7": 6416, "\u2581\u13a6\u13c5\u13c6\u13b6": 6417, "\u13d2\u13b2\u13cd\u13a6": 6418, "\u2581\u13a2\u13f3\u13e9\u13c2\u13d0\u13d7": 6419, "\u2581\u13d7\u13ac\u13e9\u13b8\u13cc": 6420, "\u2581\u13a0\u13c2\u13db": 6421, "\u2581\u13e7\u13c2\u13d2\u13cd\u13d7": 6422, "\u2581\u13e3\u13c1\u13ae": 6423, "\u2581\u13a2\u13e3\u13d3\u13c5\u13a6\u13b8": 6424, "\u2581\u13a2\u13e8\u13f2\u13ce": 6425, "\u2581\u13a4\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7": 6426, "\u13e9\u13c1\u13a6": 6427, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d4\u13c2": 6428, "\u2581\u13a4\u13ec\u13e2\u13c1": 6429, "\u2581\u13d7\u13a7\u13c3\u13a8": 6430, "\u13cd\u13c6\u13c2\u13aa\u13d7\u13f3": 6431, "\u13cf\u13d4\u13d7\u13cd\u13d7": 6432, "\u2581\u13e9\u13da": 6433, "\u13e0\u13a0\u13d2": 6434, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d3\u13f4\u13d7": 6435, "\u2581\u13d7\u13a6\u13e4\u13b5": 6436, "\u2581\u13a6\u13b7\u13e8": 6437, "\u13d5\u13f2\u13c5\u13af": 6438, "\u2581\u13a0\u13c2\u13cd\u13c6\u13c2\u13aa\u13d7\u13cd": 6439, "\u13c4\u13ec\u13a1\u13a2": 6440, "\u13c2\u13c1\u13e8": 6441, "\u13d3\u13c2\u13b5\u13a8": 6442, "\u2581\u13a4\u13c2\u13f2\u13b4": 6443, "\u13c3\u13b5\u13e4": 6444, "\u13da\u13c5\u13cf\u13f4": 6445, "\u13d9\u13b4\u13c6\u13cd\u13d7": 6446, "\u2581\u13a0\u13db\u13a9\u13cd\u13a8": 6447, "\u2581\u13ed\u13d3": 6448, "\u13c1\u13e4\u13ae\u13cd\u13d7": 6449, "\u13e6\u13ce\u13ad": 6450, "\u2581\u13e5\u13ef\u13a5": 6451, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7\u13cd\u13a9": 6452, "\u2581\u13a0\u13d3\u13b4\u13d2": 6453, "\u2581\u13f1\u13a1\u13e6\u13a2\u13f3": 6454, "\u13d3\u13be\u13d5\u13d2\u13b2\u13cd\u13aa\u13a2": 6455, "\u2581\u13a0\u13c1\u13ef\u13d4\u13af": 6456, "\u2581\u13a0\u13c2\u13a2\u13cf\u13ba\u13b5": 6457, "\u2581\u13a0\u13cd\u13d5\u13f1\u13db": 6458, "\u2581\u13a2\u13cd\u13aa\u13c2\u13d7\u13e2": 6459, "\u2581\u13a2\u13ef\u13c6\u13d5\u13d8\u13f4\u13d3": 6460, "\u2581\u13a4\u13be\u13d3\u13aa\u13be\u13d9\u13d7": 6461, "\u2581\u13a4\u13be\u13d7\u13cd\u13a6\u13e2": 6462, "\u2581\u13a4\u13d4\u13f2\u13b4": 6463, "\u2581\u13a4\u13e9\u13ac\u13d8\u13b6\u13d3": 6464, "\u2581\u13a4\u13e9\u13be\u13d3\u13b4": 6465, "\u2581\u13a5\u13d6\u13a3\u13a9": 6466, "\u2581\u13c1\u13e5\u13ea\u13ce\u13b8\u13ad": 6467, "\u2581\u13c2\u13a6\u13d7\u13b9\u13cf": 6468, "\u2581\u13c2\u13d3\u13c1\u13e2\u13db\u13be": 6469, "\u2581\u13c2\u13d7\u13ac\u13e9\u13d3\u13b4": 6470, "\u2581\u13c2\u13e7\u13ea\u13ce": 6471, "\u2581\u13c4\u13c3\u13af\u13f3\u13c5\u13be": 6472, "\u2581\u13d2\u13d7\u13e9\u13df": 6473, "\u2581\u13d3\u13b1\u13c3\u13b2": 6474, "\u2581\u13d3\u13be\u13e6\u13ad\u13f1\u13b2": 6475, "\u2581\u13d3\u13c2\u13b3\u13cd\u13d3\u13b3\u13e9\u13d7\u13d2\u13a2": 6476, "\u2581\u13d3\u13c2\u13b6\u13c4\u13ae\u13cd": 6477, "\u2581\u13d3\u13ca\u13aa\u13d4\u13c5": 6478, "\u2581\u13d3\u13df\u13f0\u13b5\u13d9": 6479, "\u2581\u13d7\u13be\u13b5\u13e6\u13af\u13db": 6480, "\u2581\u13d7\u13dd\u13d7\u13cd\u13d7\u13f1": 6481, "\u2581\u13d9\u13db\u13be\u13d3\u13e1\u13d4\u13c2": 6482, "\u2581\u13e5\u13c2\u13e5\u13ea\u13a0": 6483, "\u2581\u13e5\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 6484, "\u2581\u13e5\u13d5\u13ad\u13d8\u13c1\u13ad": 6485, "\u2581\u13e7\u13c4\u13e9\u13a2": 6486, "\u2581\u13ef\u13d9\u13b4\u13b0\u13cd\u13a6": 6487, "\u2581\u13f1\u13d3\u13b4\u13c2\u13d9\u13ad": 6488, "\u2581\u13f1\u13e3\u13c1\u13a2\u13cd\u13d4\u13c1\u13cd\u13d7": 6489, "\u2581\u13f1\u13eb\u13e3\u13f4\u13b8": 6490, "\u2581\u13a4\u13a9\u13e0\u13eb\u13ce": 6491, "\u2581\u13a8\u13e5\u13a6\u13d8\u13d7\u13cd\u13d7": 6492, "\u2581\u13ba\u13ae\u13b4\u13b5": 6493, "\u2581\u13c2\u13da\u13be\u13c1\u13b6\u13db\u13be": 6494, "\u2581\u13c4\u13db\u13bf\u13d5\u13ac": 6495, "\u2581\u13c6\u13bb\u13c8\u13b5\u13f1": 6496, "\u2581\u13d3\u13a6\u13ab\u13f4\u13af": 6497, "\u2581\u13da\u13ec\u13cf\u13cc\u13c1": 6498, "\u2581\u13e5\u13aa\u13b5\u13f0\u13cd\u13ac": 6499, "\u2581\u13e8\u13d3\u13ef\u13a2": 6500, "\u13b5\u13cd\u13a8\u13d7\u13f4": 6501, "\u2581\u13a0\u13b5\u13ae\u13b5\u13aa": 6502, "\u2581\u13a4\u13ea\u13df\u13cc\u13c1": 6503, "\u2581\u13b9\u13bb\u13b5": 6504, "\u2581\u13c1\u13d3\u13c8": 6505, "\u2581\u13d9\u13d3\u13e5\u13f2\u13b1\u13cf": 6506, "\u2581\u13d9\u13d7\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac": 6507, "\u2581\u13db\u13be\u13db\u13a6\u13c2": 6508, "\u2581\u13ee\u13d8\u13ef\u13c5\u13af": 6509, "\u2581\u13f3\u13b5\u13c3\u13af\u13f0": 6510, "\u2581\u13d3\u13cd\u13d7\u13f0\u13d7\u13cd\u13ac": 6511, "\u13a9\u13ea\u13ce\u13b2\u13a9": 6512, "\u2581\u13a1\u13bb\u13b3": 6513, "\u2581\u13a2\u13a6\u13d7\u13cd\u13a6\u13b6\u13d7\u13f1": 6514, "\u2581\u13a9\u13c5\u13aa\u13a2": 6515, "\u2581\u13c1\u13a8\u13d2\u13be": 6516, "\u2581\u13c2\u13e8\u13f4\u13c1\u13b8": 6517, "\u2581\u13e7\u13be\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7\u13f1": 6518, "\u2581\u13ef\u13ce\u13a6\u13a9": 6519, "\u2581\u13a0\u13f2\u13d3\u13dd\u13b2\u13a2": 6520, "\u2581\u13da\u13c2\u13a7\u13ae\u13cd\u13d7": 6521, "\u2581\u13da\u13df\u13c2\u13c6\u13c5\u13c1": 6522, "\u2581\u13ee\u13d8\u13b6\u13cf": 6523, "\u2581\u13ef\u13b5\u13d6\u13b8\u13ae\u13cd\u13ac\u13be": 6524, "\u13a6\u13ad\u13be\u13c5": 6525, "\u2581\u13a2\u13d6\u13b3": 6526, "\u2581\u13c2\u13ea\u13ce\u13b8\u13ad": 6527, "\u2581\u13d3\u13e4\u13b5\u13cd\u13db": 6528, "\u2581\u13d5\u13b7\u13a8": 6529, "\u2581\u13ec\u13a9\u13c5\u13cd\u13d4\u13c5\u13a9": 6530, "\u2581\u13a2\u13ac\u13e9\u13db\u13db\u13c1": 6531, "\u2581\u13ef\u13d3\u13c5\u13cd\u13ac\u13be": 6532, "\u2581\u13e5\u13c4\u13e9\u13c1\u13b8": 6533, "\u2581\u13a4\u13ea\u13ef\u13b8\u13c5\u13a9": 6534, "\u2581\u13a0\u13a6\u13d4\u13db\u13cd\u13a9": 6535, "\u2581\u13a4\u13ce\u13a6\u13e8\u13af": 6536, "\u2581\u13aa\u13b6\u13c1\u13db": 6537, "\u2581\u13ac\u13e9\u13f4\u13b8\u13af": 6538, "\u2581\u13d8\u13f0\u13b8\u13c2": 6539, "\u2581\u13da\u13b5\u13c3\u13ae\u13d4\u13c1\u13a2": 6540, "\u13ec\u13c1\u13d7\u13cd\u13aa": 6541, "\u2581\u13ac\u13cd\u13a6\u13b5": 6542, "\u2581\u13e7\u13d8\u13f2": 6543, "\u2581\u13eb\u13ac\u13f2\u13ea\u13b3\u13cf": 6544, "\u2581\u13a1\u13d7\u13c2\u13f1": 6545, "\u2581\u13c4\u13cd\u13c6\u13c2\u13a9\u13db": 6546, "\u2581\u13db\u13c2\u13be\u13c4\u13aa\u13e5": 6547, "\u2581\u13a2\u13e6\u13b5\u13a9": 6548, "\u2581\u13e3\u13d4\u13b3\u13ec\u13cd\u13ac": 6549, "\u2581\u13a4\u13c2\u13d4\u13b3\u13ec\u13cd\u13ac\u13a2": 6550, "\u2581\u13c1\u13cd\u13d7\u13ea\u13ce\u13b8\u13ad": 6551, "\u2581\u13a2\u13f3\u13be\u13db\u13be\u13d5\u13a9": 6552, "\u2581\u13a4\u13af\u13d0\u13d3\u13c1": 6553, "\u2581\u13a4\u13d5\u13d2\u13c2\u13b8\u13af": 6554, "\u2581\u13a4\u13be\u13b5\u13c3\u13af\u13f4\u13af": 6555, "\u2581\u13c2\u13e6\u13af\u13f3": 6556, "\u2581\u13d3\u13d1\u13eb\u13cd\u13ac": 6557, "\u2581\u13a0\u13cd\u13ab\u13d5\u13d2": 6558, "\u2581\u13a0\u13cd\u13d9\u13cd\u13a9": 6559, "\u2581\u13a4\u13b5\u13cc\u13b5\u13d3\u13c1": 6560, "\u2581\u13f1\u13d7\u13e3\u13f0\u13b8\u13c1\u13a2": 6561, "\u2581\u13a4\u13e9\u13c2\u13a6\u13e2": 6562, "\u2581\u13a0\u13d9\u13c2\u13cd\u13a9": 6563, "\u2581\u13a6\u13c4\u13be\u13d3\u13b4\u13a9": 6564, "\u2581\u13d7\u13c2\u13ac\u13d3\u13a8\u13c2": 6565, "\u2581\u13a2\u13e3\u13d3\u13df\u13cc": 6566, "\u2581\u13d3\u13e5\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b5": 6567, "\u2581\u13a3\u13a8\u13d9\u13b8": 6568, "\u2581\u13d9\u13db\u13be\u13b4\u13c2": 6569, "\u2581\u13ef\u13c2\u13b7\u13ac\u13be": 6570, "\u2581\u13d7\u13be\u13d3\u13f2\u13c1\u13af": 6571, "\u2581\u13e7\u13b5\u13a6\u13b8\u13d3": 6572, "\u2581\u13c2\u13d7\u13a8\u13e5\u13be\u13dd\u13a5\u13be": 6573, "\u2581\u13c2\u13e6\u13af\u13f3\u13b2\u13cd\u13ac\u13be": 6574, "\u2581\u13d7\u13a8\u13a6\u13db\u13c5\u13af": 6575, "\u2581\u13d7\u13d0\u13c2": 6576, "\u13d3\u13eb\u13cd\u13a6\u13a8": 6577, "\u2581\u13a0\u13c2\u13b7\u13e8\u13ad": 6578, "\u2581\u13a2\u13e3\u13d5\u13d7\u13f1": 6579, "\u2581\u13a4\u13ac\u13cd\u13d5\u13b5": 6580, "\u2581\u13aa\u13e2\u13c5\u13a5\u13cd\u13a9": 6581, "\u2581\u13cc\u13b6\u13bb": 6582, "\u2581\u13d3\u13c6\u13d3\u13c2\u13b8\u13a8\u13cd\u13d7": 6583, "\u2581\u13d9\u13a9\u13be\u13e6\u13d2": 6584, "\u2581\u13a6\u13b5\u13d2\u13cd\u13d7\u13cd\u13ac": 6585, "\u2581\u13d5\u13ab\u13d3\u13db": 6586, "\u2581\u13a2\u13ac\u13c2\u13ae\u13cd\u13d7": 6587, "\u13a8\u13c5\u13f4": 6588, "\u2581\u13d7\u13a6\u13b6\u13a9\u13cd\u13a9": 6589, "\u2581\u13d7\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13af": 6590, "\u2581\u13a4\u13d4\u13f2\u13b8": 6591, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13c1\u13c3": 6592, "\u2581\u13c2\u13d3\u13be\u13d3": 6593, "\u2581\u13f1\u13e8\u13f0\u13b5\u13ce\u13ad": 6594, "\u2581\u13d7\u13d3\u13c2\u13f1\u13cd\u13a9": 6595, "\u2581\u13a9\u13b5\u13ef\u13d7": 6596, "\u2581\u13d3\u13d3\u13c2\u13cc\u13b2": 6597, "\u13e7\u13aa\u13d3\u13cf": 6598, "\u2581\u13c5\u13d3\u13f3\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5\u13af": 6599, "\u2581\u13a2\u13e3\u13c4\u13ec\u13cd\u13d5\u13cd\u13d7": 6600, "\u2581\u13c2\u13d5\u13e3\u13db\u13c1\u13ae\u13cd\u13d7": 6601, "\u2581\u13cd\u13a9\u13ef\u13db\u13a6\u13c1\u13b8\u13af": 6602, "\u2581\u13a4\u13bf\u13b7\u13ce": 6603, "\u2581\u13c4\u13be\u13d3\u13db\u13a9": 6604, "\u2581\u13d9\u13d3\u13f3\u13f2\u13cf": 6605, "\u2581\u13a4\u13c1\u13a2\u13b8\u13d7": 6606, "\u2581\u13cd\u13a9\u13ef\u13c5\u13d3\u13d7\u13cd\u13a8\u13cd\u13d7": 6607, "\u2581\u13a4\u13d3\u13c1\u13df\u13f4\u13cd\u13d3\u13c1\u13b4": 6608, "\u2581\u13a9\u13c2\u13d9\u13d3": 6609, "\u2581\u13a1\u13d7\u13b8\u13c9\u13d3": 6610, "\u2581\u13d5\u13a6\u13a7\u13ae\u13cd\u13d7": 6611, "\u2581\u13da\u13be\u13ad\u13c4\u13ee": 6612, "\u2581\u13a5\u13c7\u13b5\u13ce\u13b8": 6613, "\u13af\u13e3\u13db\u13a6\u13cd\u13d3": 6614, "\u2581\u13a0\u13a9\u13b5\u13ec\u13a2\u13cd\u13d7": 6615, "\u2581\u13c2\u13d5\u13a6\u13b5\u13cd\u13d7\u13cd\u13a8": 6616, "\u2581\u13a0\u13db\u13a9\u13cd\u13a9": 6617, "\u2581\u13a0\u13e5\u13c5\u13e9\u13c5\u13af": 6618, "\u13d4\u13b4\u13d0": 6619, "\u2581\u13c5\u13db\u13c2\u13ea\u13cf": 6620, "\u13ac\u13f2\u13b5\u13ad": 6621, "\u2581\u13d3\u13ac\u13c5\u13cf": 6622, "\u2581\u13d7\u13a9\u13c2\u13f4\u13d7\u13f1": 6623, "\u2581\u13f4\u13a8\u13e5\u13aa\u13e9\u13db": 6624, "\u13ef\u13db\u13c1\u13ae\u13cd\u13d7": 6625, "\u2581\u13d3\u13c2\u13c2\u13d3\u13db": 6626, "\u2581\u13e3\u13b5\u13cd\u13d3\u13f4\u13d7": 6627, "\u2581\u13d7\u13ab\u13d3\u13d9\u13d7": 6628, "\u2581\u13e7\u13be\u13d3\u13c5\u13ec\u13d7\u13f1": 6629, "ran": 6630, "\u2581\u13eb\u13c4\u13be\u13b5\u13cd\u13d3\u13cf": 6631, "\u2581\u13d7\u13a6\u13c3\u13d9\u13d7\u13f1": 6632, "\u2581\u13a0\u13c2\u13c1\u13c9\u13a8": 6633, "\u2581\u13a0\u13cd\u13a6\u13f2\u13af": 6634, "\u2581\u13ac\u13cd\u13a6\u13c5\u13e4\u13b8": 6635, "\u2581\u13be\u13c6\u13db\u13c1\u13b5\u13d9\u13b8": 6636, "\u2581\u13d7\u13d7\u13f0\u13b8": 6637, "\u2581\u13a4\u13c1\u13b5\u13e8": 6638, "\u2581\u13f3\u13f2\u13b1\u13ce\u13b8": 6639, "\u2581\u13a4\u13b8\u13eb\u13d2": 6640, "\u2581\u13ac\u13e9\u13c2\u13c5\u13eb\u13cd\u13d4\u13c2\u13d9\u13af": 6641, "\u2581\u13c2\u13e8\u13c1\u13ae\u13cd\u13d7": 6642, "\u2581\u13e7\u13b5\u13a9\u13cf": 6643, "\u2581\u13a0\u13be\u13df\u13b2": 6644, "\u13d3\u13d2\u13cd\u13d3": 6645, "\u13ac\u13e9\u13f3\u13aa\u13d7": 6646, "\u13cd\u13d3\u13e9\u13d7\u13d2\u13a9": 6647, "\u2581\u13d5\u13ac\u13e9\u13e0\u13ce\u13a2": 6648, "\u2581\u13ab\u13ad\u13b3": 6649, "\u2581\u13e7\u13ed\u13d3\u13b4\u13cd\u13d7\u13f1": 6650, "\u2581\u13d3\u13cd\u13c6\u13da\u13b8": 6651, "\u2581\u13a2\u13e5\u13a7\u13b5\u13e3": 6652, "\u2581\u13a0\u13be\u13df\u13c3\u13ae\u13cd\u13ac": 6653, "\u2581\u13d3\u13c5\u13e9": 6654, "\u2581\u13da\u13a9\u13d2\u13a9": 6655, "\u2581\u13a4\u13d3\u13be\u13cf\u13c5": 6656, "\u13e0\u13ef\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 6657, "\u2581\u13aa\u13e2\u13db\u13a9": 6658, "\u2581\u13e7\u13c1\u13c5\u13d2": 6659, "\u2581\u13a0\u13a9\u13f2\u13cf\u13cd\u13ac": 6660, "\u2581\u13da\u13c1\u13c5\u13d2": 6661, "\u2581\u13c3\u13a6\u13db\u13c5": 6662, "\u2581\u13d7\u13a9\u13e3\u13d7": 6663, "\u2581\u13ed\u13d3\u13d3\u13a9\u13c5\u13ce": 6664, "\u2581\u13a2\u13cd\u13d7\u13d9\u13d3": 6665, "\u2581\u13eb\u13f2\u13ea\u13b3\u13cf": 6666, "\u2581\u13a1\u13b6\u13c2\u13b5": 6667, "\u2581\u13d7\u13c2\u13a6\u13d8\u13b4\u13a9": 6668, "\u13cf\u13c0\u13a5": 6669, "\u13ab\u13d8\u13b6": 6670, "\u2581\u13a0\u13c6\u13b5\u13e5\u13d9\u13d7\u13f1": 6671, "\u2581\u13f1\u13c2\u13d3\u13a6\u13b5\u13cd\u13d4\u13c2": 6672, "\u2581\u13a4\u13d3\u13cd\u13db\u13d7\u13cd\u13d7": 6673, "\u2581\u13da\u13d9\u13d3\u13c8\u13d2": 6674, "\u2581\u13da\u13b5\u13ac\u13e9\u13e2": 6675, "\u2581\u13eb\u13a6\u13a2\u13d2": 6676, "\u2581\u13ed\u13d5\u13c1\u13a2": 6677, "\u2581\u13f1\u13c4\u13e9\u13c1\u13b0": 6678, "\u2581\u13a2\u13ac\u13e9\u13cd\u13d7\u13ad": 6679, "\u2581\u13d5\u13e3\u13d3\u13a8\u13f3\u13ce\u13cd\u13d7": 6680, "ers": 6681, "\u2581\u13f1\u13d3\u13f2\u13a9": 6682, "\u2581\u13a0\u13d3\u13c5\u13d6\u13b8": 6683, "\u13be\u13de\u13ac": 6684, "\u2581\u13a0\u13d3\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd\u13a9": 6685, "\u2581\u13d8\u13b9\u13c2": 6686, "\u2581\u13d9\u13d3\u13ac\u13c1\u13b5": 6687, "\u2581\u13e5\u13d5\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 6688, "\u2581\u13a4\u13ea\u13b7\u13c5": 6689, "\u2581\u13d5\u13e3\u13a7\u13bf\u13e9\u13d7\u13d9\u13ae\u13cd\u13d7": 6690, "\u13c8\u13aa\u13b5": 6691, "\u2581\u13d5\u13a6\u13b5\u13e6\u13db": 6692, "\u2581\u13a3\u13e3\u13b5\u13a1\u13b5\u13e4": 6693, "\u2581\u13a4\u13c2\u13a7\u13b2": 6694, "\u2581\u13e5\u13cd\u13a6\u13c5\u13a9": 6695, "\u2581\u13a4\u13c5\u13c2\u13cd\u13d7\u13f1": 6696, "\u2581\u13d7\u13a4\u13c1\u13e4": 6697, "\u2581\u13a0\u13c2\u13cd\u13c6\u13c2\u13aa\u13cd\u13a8": 6698, "\u2581\u13da\u13aa\u13c4\u13b6\u13ce": 6699, "\u2581\u13cc\u13aa\u13d7": 6700, "\u2581\u13a2\u13e5\u13a9\u13b5\u13f2\u13ac\u13a2": 6701, "\u2581\u13ac\u13e9\u13c2\u13cd\u13d3\u13e9\u13d7\u13d9\u13af": 6702, "\u2581\u13e7\u13d3\u13c5\u13d3\u13d7\u13cd\u13d9\u13d7\u13f1": 6703, "\u2581\u13e7\u13ea\u13b7\u13c1": 6704, "\u2581\u13e7\u13c5\u13a8\u13eb": 6705, "\u2581\u13d7\u13d3\u13d9\u13d5\u13cd\u13d7\u13cd\u13a9": 6706, "\u2581\u13da\u13c3\u13a9\u13ce": 6707, "\u2581\u13d7\u13c2\u13d9\u13ac": 6708, "\u2581\u13d7\u13dc\u13cd\u13d4\u13c5\u13af": 6709, "\u13b5\u13cd\u13d8\u13c2\u13b8": 6710, "\u2581\u13d7\u13a9\u13d9\u13d3": 6711, "\u2581\u13a4\u13c2\u13c3\u13ae\u13db": 6712, "\u2581\u13c4\u13c2\u13aa\u13b8\u13be": 6713, "\u2581\u13b1\u13b7\u13e8": 6714, "\u2581\u13c2\u13d7\u13e3\u13d3": 6715, "\u2581\u13a0\u13a9\u13f2\u13b1\u13af\u13cd\u13d7\u13f1": 6716, "\u2581\u13d7\u13ac\u13ef\u13e0": 6717, "\u2581\u13a4\u13be\u13d3\u13db\u13c5\u13af": 6718, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d3\u13f4\u13d7\u13cd\u13a8\u13cd\u13d7": 6719, "\u13c5\u13d3\u13e5\u13ea\u13ce\u13b5": 6720, "\u2581\u13d3\u13a6\u13be\u13c4\u13aa\u13eb\u13cf": 6721, "\u2581\u13e3\u13a9\u13ef\u13a0": 6722, "\u2581\u13ac\u13ec\u13b3\u13d5\u13cd\u13ac": 6723, "\u2581\u13d7\u13c2\u13c1\u13b5\u13db": 6724, "\u2581\u13a0\u13e5\u13c2\u13cc\u13c5": 6725, "\u2581\u13c2\u13d3\u13be\u13e4": 6726, "\u2581\u13a0\u13b5\u13cd\u13c6\u13d3": 6727, "\u2581\u13d3\u13ac\u13b7\u13e4\u13b5": 6728, "\u2581\u13a1\u13e3\u13d9\u13b5\u13a9": 6729, "\u2581\u13cd\u13a9\u13f2\u13cd\u13d3": 6730, "\u2581\u13ad\u13e0\u13a0\u13af": 6731, "\u2581\u13a2\u13e5\u13a6\u13db\u13c2\u13d9\u13af\u13c9": 6732, "\u2581\u13c5\u13ef\u13d7\u13a6\u13aa\u13d7\u13f1": 6733, "\u2581\u13a6\u13b6\u13aa\u13d7": 6734, "\u2581\u13f1\u13a6\u13ec\u13c2\u13ad": 6735, "\u2581\u13a4\u13be\u13e8\u13d3\u13b5": 6736, "\u2581\u13a3\u13a9\u13b5\u13e6\u13e9\u13db": 6737, "\u2581\u13d7\u13cd\u13a9\u13f2\u13af\u13cf": 6738, "\u2581\u13a0\u13a9\u13a9\u13ac": 6739, "\u2581\u13a4\u13f0\u13b6\u13a2\u13cd\u13d4": 6740, "\u2581\u13e6\u13da\u13af": 6741, "\u2581\u13d7\u13a8\u13e5\u13f2\u13af\u13ce\u13b8\u13af": 6742, "\u2581\u13e7\u13ec\u13ea\u13b3\u13c1": 6743, "\u2581\u13a0\u13e5\u13c2\u13cc\u13c1": 6744, "\u2581\u13a4\u13e3\u13ea\u13d0\u13b8\u13cd\u13d5": 6745, "\u2581\u13c5\u13d3\u13f3\u13b6\u13af\u13cd\u13d7\u13f1": 6746, "\u2581\u13c1\u13d3\u13c2\u13b5": 6747, "\u2581\u13cc\u13c6\u13ef": 6748, "\u2581\u13be\u13a9\u13b2\u13be": 6749, "\u2581\u13e7\u13be\u13c2\u13cf\u13d7\u13f1": 6750, "\u13ab\u13d3\u13b4\u13cd\u13a9": 6751, "\u2581\u13c2\u13a6\u13d6\u13cd\u13d7": 6752, "\u13cd\u13d5\u13b5": 6753, "\u2581\u13e7\u13d9\u13cd\u13d9\u13d7": 6754, "\u13f0\u13b8\u13be": 6755, "\u2581\u13a4\u13a9\u13e2": 6756, "\u2581\u13c2\u13a8\u13e8\u13c1": 6757, "\u2581\u13a8\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d9\u13d7\u13f1": 6758, "\u2581\u13d5\u13a7\u13c5": 6759, "\u2581\u13a4\u13d7\u13e9\u13d2\u13af": 6760, "\u2581\u13d3\u13b6\u13a8": 6761, "\u2581\u13e7\u13a6\u13cc\u13ec\u13b8": 6762, "\u2581\u13a2\u13d3\u13bb": 6763, "\u13be\u13b5\u13cd\u13d3\u13c1\u13d7": 6764, "\u2581\u13e7\u13ec\u13ea\u13b6\u13d7": 6765, "\u13a6\u13ab\u13cd\u13d3\u13a5": 6766, "\u2581\u13a0\u13a6\u13d9\u13a5\u13af\u13cd\u13d9\u13d7": 6767, "\u2581\u13d5\u13b0\u13e2\u13c5\u13ad": 6768, "\u13c2\u13b8\u13ac\u13be": 6769, "\u2581\u13aa\u13ad\u13d7": 6770, "\u2581\u13af\u13cc\u13d9\u13ef": 6771, "\u2581\u13a2\u13e3\u13db\u13c1\u13b8\u13af": 6772, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13c1\u13a2": 6773, "\u2581\u13db\u13c2\u13aa\u13af": 6774, "\u2581\u13f1\u13e5\u13ef\u13a0": 6775, "\u2581\u13aa\u13b5": 6776, "\u2581\u13a4\u13be\u13d3\u13c5\u13d3\u13d5\u13a2": 6777, "\u2581\u13a0\u13c2\u13cf\u13be\u13cc\u13c5": 6778, "\u2581\u13a4\u13ef\u13ea\u13d0\u13b4": 6779, "\u2581\u13a7\u13c3\u13a8\u13c2": 6780, "\u2581\u13a4\u13c4\u13a9\u13e3\u13c1": 6781, "\u13be\u13d9\u13d3\u13c6\u13cd\u13d7": 6782, "\u2581\u13a0\u13d3\u13db\u13d7\u13cd\u13a9": 6783, "\u2581\u13a2\u13d7\u13ac\u13c1\u13b8\u13af": 6784, "\u2581\u13e7\u13be\u13e8\u13cd\u13d7\u13f1": 6785, "\u2581\u13f3\u13c3\u13b5\u13e4": 6786, "\u2581\u13a3\u13a9\u13c5\u13cf\u13d3\u13cd\u13d7": 6787, "\u2581\u13d7\u13e5\u13c5\u13cf\u13d3\u13cd\u13d7": 6788, "\u2581\u13a3\u13a9\u13b7\u13e4\u13b8": 6789, "\u2581\u13ef\u13d5\u13b6\u13b0\u13cd": 6790, "\u2581\u13ad\u13a6\u13cc\u13ef\u13cd\u13d3": 6791, "\u2581\u13d7\u13c2\u13be\u13d5\u13a9": 6792, "\u2581\u13a0\u13d3\u13f4\u13cd\u13d4\u13a9\u13cd\u13a9": 6793, "\u2581\u13a4\u13c1\u13d0\u13a0\u13d2\u13a9": 6794, "\u2581\u13ac\u13e9\u13be\u13f0\u13cd\u13a9": 6795, "\u2581\u13b4\u13b9\u13a9": 6796, "\u2581\u13a0\u13e5\u13b6\u13a5": 6797, "\u2581\u13a6\u13cc\u13b4\u13c5": 6798, "\u2581\u13cd\u13ca\u13d3\u13b3\u13a9": 6799, "\u13d3\u13c5\u13db\u13b3": 6800, "\u2581\u13e3\u13cd\u13a6\u13b8\u13a9": 6801, "\u2581\u13c2\u13da\u13c2\u13ea\u13ce\u13b8\u13a9": 6802, "\u2581\u13b0\u13af\u13f3\u13b2\u13cd\u13a6": 6803, "\u2581\u13e7\u13c4\u13aa\u13d4\u13c5": 6804, "\u2581\u13da\u13ed\u13d3\u13d4\u13c5\u13a9": 6805, "\u2581\u13da\u13c2\u13da\u13b2": 6806, "\u2581\u13a0\u13d7\u13d4\u13cd\u13a8\u13cd\u13d7": 6807, "\u2581\u13d3\u13d5\u13cf": 6808, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa\u13af\u13cd\u13d7": 6809, "\u2581\u13a4\u13be\u13d7\u13d4\u13cd\u13d7": 6810, "\u2581\u13a4\u13b5\u13e8\u13d3\u13c6\u13db": 6811, "\u2581\u13a0\u13d6\u13b5\u13d9\u13a9\u13af": 6812, "\u2581\u13ef\u13c6\u13db\u13c1\u13b8": 6813, "\u2581\u13e7\u13c2\u13c4\u13aa\u13eb\u13cd\u13d7\u13f1": 6814, "\u2581\u13a4\u13c1\u13cd\u13d4\u13b3": 6815, "\u2581\u13a2\u13e3\u13b5\u13cf\u13be\u13af\u13cd\u13d7": 6816, "\u2581\u13a2\u13e5\u13f4\u13cd\u13d7\u13f1": 6817, "\u2581\u13d5\u13a6\u13b6\u13db": 6818, "\u2581\u13a4\u13e9\u13c2\u13b8\u13a9": 6819, "\u2581\u13ac\u13e9\u13c4\u13af": 6820, "\u2581\u13d7\u13e3\u13b5\u13c2\u13a9\u13d7\u13f3": 6821, "\u2581\u13e3\u13f0\u13b8\u13c5": 6822, "\u2581\u13bb\u13d7\u13c2\u13f1": 6823, "\u2581\u13eb\u13e5\u13b6\u13af": 6824, "\u13a4\u13c1\u13e8": 6825, "\u13da\u13a7\u13be\u13be": 6826, "\u13ea\u13ce\u13b8\u13af": 6827, "\u2581\u13d7\u13b5\u13cd\u13da\u13b6": 6828, "\u2581\u13a2\u13e5\u13ef\u13a5\u13a2": 6829, "\u13d5\u13ef\u13d9\u13d7": 6830, "\u2581\u13f1\u13b0\u13e3": 6831, "\u2581\u13a4\u13be\u13db\u13c5\u13a2\u13cd\u13d4\u13c1": 6832, "\u2581\u13d7\u13a7\u13bf": 6833, "\u2581\u13e5\u13e5\u13ef\u13a0": 6834, "\u2581\u13a2\u13ef\u13cb\u13c1\u13d7\u13f1": 6835, "\u2581\u13a4\u13d3\u13aa\u13b5\u13f0\u13d7": 6836, "\u2581\u13ac\u13a9\u13c1\u13e4\u13b8\u13af": 6837, "\u2581\u13a1\u13e5\u13a8\u13f3\u13a2": 6838, "\u2581\u13a0\u13a9\u13c5\u13cf\u13d3\u13cd\u13d7": 6839, "\u2581\u13a0\u13c2\u13a8\u13f3\u13e3": 6840, "\u2581\u13a3\u13e5\u13c3\u13ae\u13cd\u13a9": 6841, "\u2581\u13a4\u13d3\u13c5\u13a1\u13b8\u13a9": 6842, "\u13cd\u13d4\u13c1\u13b0": 6843, "\u2581\u13a4\u13be\u13b5\u13d3\u13a9\u13db": 6844, "\u2581\u13ac\u13e9\u13c2\u13f4\u13d7\u13f1": 6845, "\u2581\u13a4\u13d3\u13c5\u13d3\u13d5\u13a2": 6846, "\u2581\u13c5\u13e7\u13ea\u13ce\u13a2": 6847, "\u2581\u13a4\u13d9\u13ef\u13c5\u13af\u13db": 6848, "\u2581\u13a4\u13d3\u13f1\u13b4\u13a2": 6849, "\u2581\u13a4\u13c7\u13d3\u13e2": 6850, "\u2581\u13e5\u13c4\u13be\u13cd\u13d7": 6851, "\u2581\u13a4\u13be\u13db\u13c5\u13a2\u13cd\u13d7": 6852, "\u2581\u13f3\u13a8\u13f3\u13ad": 6853, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13d4\u13c5": 6854, "\u2581\u13d7\u13a6\u13c3\u13b8\u13d7\u13cd\u13ac": 6855, "\u2581\u13a4\u13be\u13cd\u13aa\u13ce": 6856, "\u2581\u13e6\u13a8\u13c5\u13d2": 6857, "\u13cd\u13d3\u13f1\u13d7\u13cd\u13d7\u13f1": 6858, "\u2581\u13a4\u13c1\u13cd\u13d3": 6859, "\u2581\u13e7\u13b5\u13cf\u13ac": 6860, "\u2581\u13a6\u13ac\u13e9\u13d0\u13e2\u13d5\u13a2": 6861, "\u2581\u13eb\u13a4\u13b6\u13ce\u13a2": 6862, "\u2581\u13a4\u13c2\u13be\u13f0\u13af\u13cd\u13d7": 6863, "\u2581\u13a4\u13be\u13d3\u13cd\u13d4\u13f4": 6864, "\u2581\u13e5\u13e5\u13aa\u13e9\u13d8\u13ad": 6865, "\u2581\u13c1\u13ea\u13ce\u13b4\u13a2": 6866, "\u13e9\u13d8\u13cd\u13a9": 6867, "\u13cc\u13a9\u13d2": 6868, "\u2581\u13d2\u13a6\u13be\u13f2\u13aa": 6869, "\u2581\u13a5\u13a6\u13e5\u13aa\u13a5\u13a9": 6870, "\u2581\u13e7\u13be\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 6871, "\u2581\u13d5\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 6872, "\u2581\u13c5\u13cb\u13c1\u13b8": 6873, "\u2581\u13ed\u13e9\u13c5\u13d3\u13d5": 6874, "\u2581\u13a3\u13a6\u13b5\u13aa\u13c5": 6875, "\u2581\u13a4\u13a7\u13ad\u13f2\u13db": 6876, "\u2581\u13a6\u13b8\u13cd\u13d9\u13d7": 6877, "\u2581\u13d5\u13a6\u13c3\u13e3\u13b8": 6878, "\u2581\u13a3\u13a6\u13da\u13b5\u13cd\u13ac": 6879, "\u2581\u13a4\u13d3\u13c5\u13a6\u13b8\u13d3": 6880, "\u2581\u13d3\u13a9\u13f2\u13af\u13ce\u13b8": 6881, "\u2581\u13d7\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5\u13af": 6882, "\u2581\u13ad\u13d9\u13b4\u13b0\u13af": 6883, "\u2581\u13a1\u13a6\u13d4": 6884, "\u2581\u13f3\u13b7\u13e8": 6885, "\u2581\u13a0\u13d7\u13cd\u13a6\u13b6\u13d7": 6886, "\u2581\u13da\u13cc\u13b3\u13d3\u13c5": 6887, "\u2581\u13a0\u13be\u13a6\u13b5\u13cd\u13a9": 6888, "\u13d2\u13c1\u13b0": 6889, "\u2581\u13a0\u13c1\u13b7\u13b2\u13cd\u13a8": 6890, "\u2581\u13e5\u13d0\u13af": 6891, "\u2581\u13d3\u13cd\u13a9\u13c1\u13b5": 6892, "\u2581\u13f1\u13c2\u13e3\u13db\u13c1\u13b8": 6893, "\u2581\u13a2\u13e5\u13b7\u13e8\u13ad": 6894, "\u2581\u13e7\u13c4\u13aa\u13d9\u13d7\u13f1": 6895, "\u2581\u13c2\u13ac\u13e9\u13c2\u13ea\u13ce": 6896, "\u2581\u13a2\u13e3\u13db\u13aa\u13d7\u13f1": 6897, "\u2581\u13a2\u13f3\u13c2\u13ea\u13cd\u13d7\u13f1": 6898, "\u2581\u13e7\u13c2\u13b7\u13eb\u13cd\u13d4\u13c1\u13d7": 6899, "\u2581\u13da\u13f2\u13b5\u13b8": 6900, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13c5\u13af": 6901, "\u2581\u13af\u13e5\u13e7\u13e3": 6902, "\u2581\u13da\u13c2\u13f2\u13ce": 6903, "\u2581\u13d3\u13de\u13cd\u13d7": 6904, "\u2581\u13a0\u13a6\u13ab\u13f4\u13a1\u13d7": 6905, "\u2581\u13b6\u13d4\u13c2": 6906, "\u2581\u13e7\u13cf\u13b3\u13db\u13d9\u13d7": 6907, "\u2581\u13a0\u13c6\u13e1\u13d7\u13cd\u13a9": 6908, "\u2581\u13d3\u13e5\u13b7\u13e5": 6909, "\u13d7\u13a6\u13b4\u13f2\u13e4": 6910, "\u13a6\u13bf\u13e9": 6911, "\u2581\u13a0\u13e8\u13cf\u13f0\u13d7": 6912, "\u2581\u13be\u13be\u13db\u13c1\u13ae\u13cd\u13d7": 6913, "\u2581\u13a2\u13e5\u13a6\u13d4\u13b0": 6914, "\u2581\u13a4\u13e9\u13c7\u13c5\u13d4\u13c1": 6915, "\u2581\u13f1\u13e3\u13de": 6916, "\u2581\u13ed\u13d8\u13c5\u13cd\u13d4\u13c1\u13a2": 6917, "\u2581\u13a4\u13d3\u13b7\u13b8": 6918, "\u2581\u13a0\u13db\u13af\u13cd\u13d7\u13cd\u13a9": 6919, "\u2581\u13a0\u13d4\u13f2\u13af\u13ae\u13cd\u13d7": 6920, "\u2581\u13a4\u13c2\u13f0\u13e8": 6921, "\u2581\u13a4\u13ea\u13d9\u13b5\u13e4\u13a2": 6922, "\u2581\u13a4\u13d3\u13f4\u13b3\u13d4\u13c5": 6923, "\u2581\u13a0\u13f2\u13b1\u13cd\u13a8\u13cd\u13d7": 6924, "\u2581\u13ed\u13f4\u13cd\u13d7\u13f1": 6925, "\u2581\u13a4\u13c1\u13b3\u13d7\u13cd\u13d7\u13f1": 6926, "\u2581\u13a7\u13c3\u13cd\u13a6": 6927, "\u2581\u13a6\u13be\u13c4\u13aa\u13e5\u13b8\u13ad": 6928, "\u2581\u13e5\u13cd\u13a6": 6929, "\u2581\u13a4\u13d8\u13c5\u13ce": 6930, "\u2581\u13a4\u13ac\u13cd\u13aa\u13b8\u13c1": 6931, "\u2581\u13a1\u13e5\u13c1\u13b8": 6932, "\u2581\u13e4\u13cf\u13c2": 6933, "\u2581\u13d7\u13a6\u13b8": 6934, "\u2581\u13a8\u13e5\u13f0\u13b8\u13af": 6935, "\u2581\u13d7\u13a6\u13ab\u13cd": 6936, "\u2581\u13e5\u13a7\u13cd\u13a8\u13c2": 6937, "\u2581\u13a2\u13e3\u13d9\u13b4\u13b0\u13af": 6938, "\u2581\u13a1\u13e5\u13a6\u13d4\u13ad": 6939, "\u2581\u13f1\u13be\u13db\u13a6": 6940, "\u2581\u13a0\u13c2\u13d0\u13e2\u13a2\u13cd\u13d7\u13cd\u13a9": 6941, "\u2581\u13da\u13c5\u13e9\u13c5\u13a9": 6942, "\u2581\u13eb\u13d3\u13c6\u13a7\u13be\u13c5\u13a9": 6943, "\u2581\u13a4\u13c2\u13c1\u13a2\u13cd\u13d7\u13f1": 6944, "\u2581\u13c2\u13d5\u13b2\u13c1": 6945, "\u2581\u13ac\u13ad\u13c3": 6946, "\u2581\u13a4\u13cd\u13d4\u13a6": 6947, "\u2581\u13a4\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13f1": 6948, "\u2581\u13a4\u13be\u13d3\u13c5\u13cd\u13d7\u13f1": 6949, "\u2581\u13d5\u13db\u13c5": 6950, "\u2581\u13f3\u13ea\u13be": 6951, "\u2581\u13ae\u13ae\u13cd\u13d7": 6952, "\u2581\u13da\u13ea\u13d0\u13e4": 6953, "\u2581\u13a0\u13e4\u13b7\u13af\u13cd\u13d7": 6954, "\u2581\u13af\u13cd\u13a9\u13cd\u13c6": 6955, "\u2581\u13be\u13c5\u13c1\u13b0": 6956, "\u2581\u13aa\u13cd\u13d4\u13f4": 6957, "\u13a0\u13cd\u13a6": 6958, "\u13d0\u13cd\u13d9\u13d7": 6959, "\u2581\u13a0\u13c6\u13d5\u13d7\u13f1": 6960, "\u2581\u13a0\u13e5\u13a4\u13cd\u13d5\u13ce": 6961, "\u13cc\u13b3\u13d9\u13d7\u13f1": 6962, "\u13be\u13dd\u13a5\u13be": 6963, "\u2581\u13a4\u13be\u13e0\u13be\u13cd\u13db": 6964, "\u2581\u13da\u13b5\u13f0": 6965, "\u2581\u13a4\u13cd\u13c6\u13c2\u13a9": 6966, "\u2581\u13a0\u13c5": 6967, "\u2581\u13a4\u13be\u13d7\u13d4\u13cd\u13d7\u13f1": 6968, "\u2581\u13ac\u13e9\u13c2\u13f4\u13b2\u13a9": 6969, "\u2581\u13e3\u13be\u13d7\u13ad": 6970, "\u13cd\u13a9\u13f0\u13b5\u13ce\u13ae\u13cd\u13d7": 6971, "\u2581\u13a4\u13b5\u13cc\u13b3\u13d3\u13c1": 6972, "\u2581\u13a0\u13c2\u13e3\u13d7": 6973, "\u2581\u13d4\u13d4": 6974, "\u2581\u13f1\u13d3\u13da": 6975, "\u2581\u13a0\u13f2\u13cd\u13d9\u13d7": 6976, "\u2581\u13e7\u13cd\u13d5\u13b8\u13d7\u13f1": 6977, "\u2581\u13a0\u13c2\u13a6\u13d8\u13f4": 6978, "\u2581\u13a2\u13ac\u13f4": 6979, "\u2581\u13a0\u13cd\u13d3\u13f1\u13d7\u13cd\u13a9": 6980, "\u13e6\u13a6\u13d3\u13b5": 6981, "\u2581\u13a0\u13a9\u13c1\u13e4\u13b8\u13a9": 6982, "\u2581\u13a9\u13b3\u13ca": 6983, "\u2581\u13d7\u13cd\u13d5\u13b5\u13cd\u13a9": 6984, "\u2581\u13d7\u13ac\u13e9\u13c1\u13b6\u13d7": 6985, "\u2581\u13e3\u13a6\u13d9\u13a5\u13af\u13cd\u13d7\u13f1": 6986, "\u2581\u13e7\u13cf\u13b3\u13db\u13d7": 6987, "\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13ad": 6988, "\u2581\u13a0\u13be\u13d3\u13e9\u13db\u13af\u13d9\u13a2": 6989, "\u2581\u13a4\u13c5\u13d3\u13d7\u13d7\u13d2\u13a2": 6990, "\u2581\u13d3\u13d3\u13c1\u13b3\u13d7\u13d2\u13a2": 6991, "\u2581\u13d7\u13c6\u13d3\u13b4\u13c5\u13a2": 6992, "\u2581\u13da\u13e0\u13d2\u13ce\u13a2": 6993, "\u2581\u13da\u13da\u13aa\u13d4\u13c5\u13a2": 6994, "\u2581\u13a4\u13d3\u13cf\u13c1\u13a2": 6995, "\u2581\u13a4\u13c2\u13cc\u13db\u13d7": 6996, "\u2581\u13d5\u13e3\u13d3\u13d8\u13be\u13a5\u13a2": 6997, "\u2581\u13e7\u13be\u13c4\u13aa\u13eb\u13ce\u13b4\u13a2": 6998, "\u2581\u13f3\u13eb\u13a6": 6999, "\u2581\u13d3\u13ac\u13e9\u13b5": 7000, "\u2581\u13d7\u13d2\u13c6\u13b6\u13cd\u13d7": 7001, "\u2581\u13e3\u13cd\u13a6\u13a9": 7002, "\u2581\u13da\u13be\u13c4\u13aa\u13eb\u13ce\u13a2": 7003, "\u2581\u13a2\u13e3\u13c2\u13a9": 7004, "\u2581\u13e7\u13db\u13d2": 7005, "\u2581\u13a0\u13d5\u13b8\u13d3\u13b6\u13c2\u13a8": 7006, "\u2581\u13d9\u13e3\u13d3": 7007, "\u2581\u13a4\u13db\u13a6\u13cd\u13d4\u13c1\u13a2": 7008, "\u2581\u13d7\u13a6\u13b5\u13e6\u13db\u13a2": 7009, "\u13cd\u13d3\u13c1\u13ad": 7010, "\u2581\u13da\u13be\u13d3\u13c2\u13b8\u13e8": 7011, "\u2581\u13cd\u13a9\u13a8\u13f3\u13af\u13f3": 7012, "\u13c5\u13cd\u13d4\u13c5\u13af": 7013, "\u2581\u13a7\u13c1\u13a8\u13a2": 7014, "\u2581\u13a0\u13c2\u13a6\u13d4\u13ae\u13cd\u13d7": 7015, "\u2581\u13a3\u13e4\u13b2\u13a2": 7016, "\u13a7\u13b2\u13cd\u13d7\u13f1": 7017, "\u2581\u13e3\u13da\u13b5\u13ad": 7018, "\u2581\u13f4\u13a6\u13ac": 7019, "\u2581\u13a4\u13b5\u13cf\u13be\u13af\u13cd\u13d7": 7020, "\u2581\u13a4\u13c2\u13f2\u13b8\u13a9": 7021, "\u2581\u13a0\u13a9\u13f0\u13af": 7022, "\u2581\u13a4\u13e2\u13a6": 7023, "\u2581\u13a3\u13a6\u13d3\u13c5\u13d4\u13e9\u13d5": 7024, "\u2581\u13a0\u13d3\u13be\u13c5": 7025, "\u2581\u13e5\u13c3\u13aa\u13a2": 7026, "\u2581\u13c2\u13a4\u13cd\u13d7": 7027, "\u2581\u13a4\u13be\u13db\u13d3\u13cd\u13db": 7028, "\u2581\u13a0\u13e5\u13ef\u13c5\u13b2": 7029, "\u13ac\u13ad\u13b7\u13f0\u13a2": 7030, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa\u13db": 7031, "\u2581\u13a0\u13cd\u13a6\u13a2\u13ae\u13f0\u13c3": 7032, "\u2581\u13ae\u13d9\u13ad": 7033, "\u2581\u13c4\u13c1\u13a9\u13f4": 7034, "\u2581\u13be\u13c6\u13b5\u13cd\u13d3\u13c1\u13b8\u13a9": 7035, "\u13db\u13c2\u13d7\u13cd\u13d5\u13cd\u13d7": 7036, "\u2581\u13e5\u13da\u13c1\u13e4\u13b4": 7037, "\u2581\u13d5\u13a8\u13e5\u13f2": 7038, "\u2581\u13f3\u13db\u13a6": 7039, "\u13cd\u13c6\u13c2\u13aa\u13d4\u13c5": 7040, "\u2581\u13a2\u13ac\u13e9\u13c5\u13c1": 7041, "\u2581\u13a0\u13e5\u13cd\u13db\u13d7\u13cd\u13d9\u13d7": 7042, "\u2581\u13be\u13c2\u13a0": 7043, "\u13cd\u13da\u13b2\u13cd\u13aa": 7044, "\u2581\u13a4\u13be\u13c4\u13aa\u13a2\u13cd\u13d7\u13f1": 7045, "\u2581\u13a4\u13c1\u13c9\u13a2\u13cd\u13d7\u13f1": 7046, "\u13c4\u13ea\u13ce": 7047, "\u2581\u13d5\u13e5\u13b3\u13eb\u13a9": 7048, "\u2581\u13a0\u13ab\u13e4\u13b5": 7049, "\u2581\u13a4\u13c1\u13d9\u13b4\u13a2": 7050, "\u2581\u13e7\u13cd\u13a9\u13c3": 7051, "\u2581\u13a0\u13c2\u13b5\u13be": 7052, "\u2581\u13a0\u13a9\u13b8\u13d9\u13d7": 7053, "\u2581\u13a4\u13ea\u13c1": 7054, "\u2581\u13e7\u13c5\u13aa\u13e4": 7055, "\u2581\u13e7\u13c2\u13cd\u13d3": 7056, "\u2581\u13a4\u13c1\u13ab": 7057, "\u2581\u13a4\u13be\u13b5\u13aa\u13b2": 7058, "\u2581\u13da\u13d1\u13f0\u13d2": 7059, "\u2581\u13a4\u13be\u13db\u13a6": 7060, "\u2581\u13a0\u13d3\u13c5\u13d9\u13a9\u13af": 7061, "\u2581\u13ef\u13a9\u13f0\u13b8\u13ad": 7062, "\u2581\u13a0\u13ef\u13eb\u13cd": 7063, "\u2581\u13d7\u13bb\u13be": 7064, "\u2581\u13da\u13be\u13d4\u13c5\u13a9": 7065, "\u13b5\u13cd\u13d4\u13c5\u13af": 7066, "\u13a7\u13c1\u13d7": 7067, "\u13b7\u13e4\u13b4\u13a2": 7068, "\u2581\u13a4\u13c1\u13b8\u13d9\u13d7": 7069, "\u2581\u13a8\u13e5\u13cd\u13d5\u13b8\u13d7\u13f1": 7070, "\u2581\u13aa\u13b9\u13b5\u13f1": 7071, "\u2581\u13a4\u13c2\u13b6\u13d0\u13c5": 7072, "\u2581\u13c2\u13da\u13db\u13c1\u13b8": 7073, "\u2581\u13a6\u13b5\u13a1\u13b5": 7074, "\u2581\u13a0\u13c2\u13a6\u13d4\u13af\u13f3": 7075, "\u2581\u13d7\u13e4\u13c5\u13d2": 7076, "\u13a8\u13ae\u13a9": 7077, "\u2581\u13da\u13c2\u13f2\u13b1\u13d2\u13a9": 7078, "\u2581\u13d5\u13e5\u13a7\u13c5": 7079, "\u2581\u13a0\u13be\u13d3\u13c5": 7080, "\u2581\u13c2\u13aa\u13af": 7081, "\u2581\u13c4\u13ea\u13a1\u13a2": 7082, "\u2581\u13e7\u13ea\u13b3": 7083, "\u2581\u13a3\u13a6\u13db\u13a6\u13c5\u13af": 7084, "\u2581\u13a3\u13a6\u13e3\u13c5\u13a9": 7085, "\u2581\u13a3\u13e5\u13ec\u13c2\u13cd\u13ac": 7086, "\u2581\u13be\u13c6\u13db\u13c5\u13a2": 7087, "\u2581\u13a4\u13d4\u13b3\u13ec\u13cd\u13ac\u13a2": 7088, "\u2581\u13a3\u13a6\u13e4\u13b5\u13a6": 7089, "\u2581\u13ee\u13d3\u13e5": 7090, "\u2581\u13da\u13ea\u13f2\u13c1\u13a2": 7091, "\u2581\u13a4\u13ea\u13d3\u13cd\u13d7\u13f1": 7092, "\u13c5\u13ec\u13d2": 7093, "\u2581\u13a4\u13e2\u13ac\u13a9": 7094, "\u2581\u13a0\u13eb\u13be\u13a8\u13cd\u13d7": 7095, "\u13f2\u13d3\u13ac": 7096, "\u2581\u13a9\u13e5": 7097, "\u2581\u13a4\u13cd\u13a9\u13d3\u13ce\u13a2": 7098, "\u13a6\u13d4\u13bf\u13a2": 7099, "\u2581\u13a4\u13c2\u13a9\u13cc": 7100, "\u2581\u13ae\u13d9\u13b2\u13a2": 7101, "\u2581\u13a4\u13a7\u13b5\u13a2\u13cd\u13d7\u13f1": 7102, "\u2581\u13a4\u13c2\u13f0\u13b8\u13d7": 7103, "\u2581\u13a4\u13c2\u13ec\u13c2\u13d2": 7104, "\u2581\u13a6\u13b5\u13e6\u13c5": 7105, "\u2581\u13c5\u13d3\u13cd\u13a9": 7106, "\u13ac\u13c2\u13db": 7107, "\u2581\u13e5\u13e7\u13cf": 7108, "\u2581\u13a4\u13db\u13db\u13c5\u13a9": 7109, "\u2581\u13f3\u13c1\u13ad": 7110, "\u2581\u13e5\u13e4\u13be": 7111, "\u2581\u13a4\u13f0\u13b8\u13d2": 7112, "\u2581\u13e7\u13d3\u13b4\u13c5\u13a2": 7113, "\u2581\u13a0\u13d7\u13c5\u13d3": 7114, "\u2581\u13a4\u13be\u13c1\u13b6\u13d4\u13c5": 7115, "\u2581\u13a1\u13e5\u13a6\u13d9\u13a5": 7116, "\u2581\u13e7\u13c4\u13ec\u13cd\u13d7": 7117, "\u2581\u13a0\u13c8": 7118, "\u2581\u13e4\u13d9\u13ad": 7119, "\u13ec\u13a5\u13af": 7120, "\u2581\u13a6\u13b7\u13a9": 7121, "\u2581\u13e3\u13e0\u13be\u13cd\u13d7": 7122, "\u2581\u13a4\u13b5\u13e6": 7123, "\u13db\u13db\u13b2\u13cd\u13a8\u13cd\u13d7": 7124, "\u2581\u13a1\u13d3\u13cd\u13d7\u13f1": 7125, "\u2581\u13d5\u13d3\u13d3\u13aa\u13b2\u13f3": 7126, "\u2581\u13a0\u13d1\u13eb\u13cd": 7127, "\u2581\u13a2\u13d3\u13b5\u13ae\u13b5\u13a9": 7128, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d4\u13c5\u13a9": 7129, "\u2581\u13a4\u13c3\u13ae\u13b8\u13af": 7130, "\u2581\u13a4\u13b5\u13d3\u13cd\u13d4\u13c5": 7131, "\u13b3\u13eb": 7132, "\u2581\u13aa\u13e2\u13d7\u13f1": 7133, "\u2581\u13a2\u13b3\u13bb": 7134, "\u2581\u13ed\u13b6\u13d2\u13cd\u13db": 7135, "\u2581\u13a2\u13e5\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7\u13f1": 7136, "\u13a9\u13a6\u13d8\u13db": 7137, "\u13d5\u13a8\u13cd\u13d7": 7138, "\u2581\u13da\u13ed\u13aa\u13d4\u13c1\u13a2": 7139, "\u13d5\u13ad\u13f2": 7140, "\u2581\u13a4\u13c2\u13f4\u13b2\u13a9": 7141, "\u2581\u13f1\u13a6\u13d4\u13ad": 7142, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b0": 7143, "\u2581\u13a0\u13c1\u13a8": 7144, "\u2581\u13a6\u13b5\u13d9\u13d7": 7145, "\u2581\u13a9\u13a6\u13a8\u13cd\u13db\u13f1": 7146, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7\u13f1": 7147, "\u2581\u13a7\u13c3\u13ae\u13ad": 7148, "\u2581\u13e7\u13d3\u13b5": 7149, "\u2581\u13d3\u13f0\u13d9\u13b3\u13db\u13a2": 7150, "\u2581\u13a2\u13a8\u13a6": 7151, "\u2581\u13a4\u13f0\u13b8\u13d2\u13a9": 7152, "\u2581\u13aa\u13b5\u13a9": 7153, "\u2581\u13e3\u13c1\u13e8\u13a2": 7154, "\u2581\u13a4\u13cd\u13d3\u13e9\u13db\u13ce\u13a2": 7155, "\u2581\u13a4\u13b5\u13d6\u13b8\u13c1\u13a2": 7156, "\u2581\u13a2\u13f3\u13c5\u13c2": 7157, "\u13b3\u13c1\u13b8\u13af": 7158, "\u2581\u13a2\u13e8\u13c1\u13d7\u13f1": 7159, "\u2581\u13a4\u13c2\u13c4\u13aa\u13e4\u13c3": 7160, "\u2581\u13da\u13ea\u13df\u13cc\u13c5": 7161, "\u13a9\u13cd\u13ac\u13a2": 7162, "\u2581\u13d7\u13e3\u13b5\u13a2": 7163, "\u2581\u13a0\u13e5\u13cd\u13d5\u13b8\u13d7\u13f1": 7164, "\u2581\u13a0\u13b5\u13ae\u13b5\u13e4\u13d7": 7165, "\u2581\u13d7\u13c2\u13c1\u13af": 7166, "\u2581\u13d3\u13d8\u13c1\u13b2": 7167, "\u2581\u13ec\u13e5": 7168, "\u2581\u13a4\u13cd\u13a6\u13b4\u13a2": 7169, "\u2581\u13f3\u13db\u13be": 7170, "\u2581\u13c2\u13d3\u13c5": 7171, "\u13cf\u13d9\u13b4": 7172, "\u2581\u13a0\u13a9\u13be\u13eb\u13f1": 7173, "\u13df\u13b6\u13cd\u13d4\u13c5": 7174, "\u2581\u13e7\u13b6\u13ce\u13a2": 7175, "\u2581\u13d5\u13e6\u13d5\u13cd\u13d7": 7176, "\u2581\u13f1\u13d5\u13ac": 7177, "\u2581\u13a8\u13a6\u13b5\u13e5\u13d9\u13c1": 7178, "\u2581\u13a1\u13d3\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 7179, "\u13d9\u13d4\u13c5\u13a9": 7180, "\u2581\u13a2\u13e5\u13f0\u13b8\u13ad": 7181, "\u2581\u13a4\u13f2\u13cd\u13d4\u13c5\u13af": 7182, "\u2581\u13f4\u13ac\u13be": 7183, "\u13af\u13cd\u13d4\u13c5": 7184, "\u2581\u13a2\u13ef\u13cb\u13c1": 7185, "\u2581\u13a4\u13ec\u13e2\u13d7\u13f1": 7186, "\u2581\u13c7\u13af": 7187, "\u2581\u13ac\u13a8\u13f3": 7188, "\u2581\u13e5\u13c2\u13e3\u13db\u13c1\u13b8": 7189, "\u13a6\u13a8\u13d7\u13f3": 7190, "\u2581\u13d9\u13cc": 7191, "\u13e8\u13d2\u13a9": 7192, "\u2581\u13a0\u13c2\u13a6\u13d4\u13ad": 7193, "\u2581\u13a4\u13ef\u13a0": 7194, "\u2581\u13a2\u13e7\u13cd\u13d7": 7195, "\u13a4\u13c5\u13d7": 7196, "\u2581\u13c2\u13d3\u13d5\u13d8\u13f4\u13af\u13d2\u13a2": 7197, "\u2581\u13d7\u13a6\u13c1\u13b8\u13a2": 7198, "\u13db\u13c5\u13a2\u13cd\u13d7\u13cd\u13a8": 7199, "\u13be\u13d3\u13e1\u13a9": 7200, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6\u13b8\u13a9": 7201, "\u2581\u13a6\u13be\u13c4\u13aa\u13eb\u13cd\u13aa": 7202, "\u2581\u13da\u13c2\u13b2\u13a2": 7203, "\u2581\u13a4\u13c2\u13cd\u13da": 7204, "\u2581\u13e9\u13cc": 7205, "\u2581\u13d3\u13f0\u13d9\u13b3\u13db": 7206, "\u13e5\u13b3\u13eb\u13ce\u13b2": 7207, "\u2581\u13da\u13ef\u13cd\u13d7": 7208, "\u2581\u13e6\u13d5": 7209, "\u2581\u13a4\u13d7\u13b4\u13b2\u13cd\u13ac": 7210, "\u13a6\u13d9\u13cd\u13d9": 7211, "\u13cc\u13bb": 7212, "\u2581\u13d7\u13c6\u13c4\u13ec": 7213, "\u13aa\u13b2\u13cd\u13ac": 7214, "\u2581\u13a4\u13c2\u13c5\u13c5\u13a2": 7215, "\u13cd\u13a6\u13c5\u13be": 7216, "\u13ac\u13d7\u13ad": 7217, "\u13b6\u13d8": 7218, "\u2581\u13a2\u13f3\u13f2": 7219, "\u2581\u13a3\u13cf\u13c9\u13cd\u13aa": 7220, "\u2581\u13c6\u13b7": 7221, "\u2581\u13c2\u13a8\u13d2": 7222, "\u2581\u13a4\u13ec\u13c2\u13d2\u13a9": 7223, "\u2581\u13a4\u13c1\u13d9\u13b8\u13a2": 7224, "\u2581\u13a4\u13db\u13d7\u13f1": 7225, "\u2581\u13d1\u13d3\u13a8": 7226, "\u2581\u13a4\u13d3\u13f0": 7227, "\u2581\u13a4\u13ef\u13c5\u13ae\u13a2": 7228, "\u2581\u13a4\u13c2\u13c1\u13e8\u13af": 7229, "\u13b5\u13cd\u13d3\u13c1\u13b8\u13a9": 7230, "\u13c8\u13a6": 7231, "\u2581\u13d1\u13be\u13b4\u13a2\u13f3": 7232, "\u13d7\u13a3\u13c8": 7233, "\u2581\u13a0\u13a9\u13c7\u13d3\u13b8\u13a2": 7234, "\u2581\u13d5\u13a6\u13cd\u13a9\u13b8\u13a2": 7235, "\u2581\u13a4\u13a9\u13b8\u13d7": 7236, "\u2581\u13d5\u13a6\u13b8\u13a2": 7237, "\u13e9\u13cc\u13d9\u13f0": 7238, "\u2581\u13f0\u13ae\u13cd\u13d7": 7239, "\u2581\u13be\u13be\u13db\u13c1\u13b2\u13be": 7240, "\u2581\u13d7\u13b9": 7241, "\u2581\u13a4\u13da\u13d3\u13b3": 7242, "\u2581\u13a2\u13e3\u13b5\u13ae\u13b5\u13ac\u13a2": 7243, "\u2581\u13a0\u13c7\u13b5\u13cd\u13d7": 7244, "\u2581\u13a4\u13ec\u13af\u13f3\u13d2\u13a2": 7245, "\u2581\u13a4\u13b6\u13cf": 7246, "\u2581\u13cc\u13c9\u13af\u13f3": 7247, "\u13ef\u13cd\u13db": 7248, "\u13e9\u13db\u13ae\u13a2": 7249, "\u2581\u13a0\u13c1\u13ac": 7250, "\u2581\u13a4\u13a9\u13b8\u13a9": 7251, "\u2581\u13a0\u13d3\u13b6\u13c2\u13a8": 7252, "\u2581\u13c4\u13c2\u13ea\u13ce\u13b4\u13a2": 7253, "\u2581\u13a0\u13df\u13cd\u13d5": 7254, "\u2581\u13a4\u13be\u13da\u13b8": 7255, "\u2581\u13ac\u13e9\u13db\u13db\u13c5\u13a9": 7256, "\u2581\u13ae\u13b5": 7257, "\u2581\u13a4\u13ec\u13af\u13e8\u13c3": 7258, "\u2581\u13a0\u13d4\u13b8": 7259, "\u2581\u13a4\u13d5\u13b6\u13b0\u13af\u13cd\u13d7": 7260, "\u13b5\u13cd\u13aa\u13b8\u13d4": 7261, "\u2581\u13a0\u13c6\u13db\u13a6\u13c5\u13af": 7262, "\u2581\u13e7\u13a6\u13b4\u13c5": 7263, "\u2581\u13a0\u13a9\u13cd\u13a6\u13c5\u13e8\u13a2": 7264, "\u2581\u13eb\u13da\u13b7\u13e4\u13b4": 7265, "\u13ce\u13b5\u13d4\u13c1": 7266, "\u13c4\u13aa\u13eb\u13d2\u13ad": 7267, "\u13d5\u13b8\u13a9": 7268, "\u13cf\u13b3\u13d7": 7269, "\u2581\u13a6\u13c6": 7270, "\u13a4\u13d9\u13af\u13f3\u13ad": 7271, "\u2581\u13f1\u13c1": 7272, "\u13e5\u13b8\u13c9\u13d4\u13c5\u13af": 7273, "\u2581\u13a8\u13d9": 7274, "\u2581\u13a6\u13a2\u13d2\u13a2": 7275, "\u2581\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 7276, "\u2581\u13a3\u13b3": 7277, "\u2581\u13af\u13a6\u13d4\u13b2\u13a2": 7278, "ree": 7279, "\u13d3\u13db\u13c1\u13b8": 7280, "\u13f4\u13c5\u13ae": 7281, "\u2581\u13e4\u13a6": 7282, "\u13d1\u13b6\u13d7": 7283, "\u2581\u13a6\u13d7\u13ad": 7284, "\u2581\u13a6\u13ef\u13b8\u13a2": 7285, "\u13c2\u13f4\u13d7\u13f1": 7286, "\u2581\u13a4\u13ac\u13ad\u13b7\u13f4": 7287, "\u13be\u13be\u13db\u13c1\u13ad": 7288, "\u2581\u13a4\u13d4\u13b7\u13a9\u13cd\u13ac": 7289, "\u2581\u13e7\u13c4\u13ec\u13a2": 7290, "\u13a9\u13cd\u13a8": 7291, "\u13d3\u13e2\u13a9": 7292, "\u2581\u13e3\u13ef": 7293, "\u2581\u13a4\u13cd\u13da\u13a2\u13d2\u13a9": 7294, "\u2581\u13d3\u13be\u13d7\u13d4\u13cd\u13a8": 7295, "\u2581\u13a4\u13e6\u13cd\u13d4\u13c1": 7296, "\u13a6\u13c5\u13cd\u13a8\u13c2": 7297, "\u2581\u13a4\u13c2\u13c3\u13ae\u13b8\u13a9": 7298, "\u2581\u13be\u13c6\u13db\u13c1\u13b8\u13a9": 7299, "\u2581\u13a0\u13c6\u13b4\u13c2\u13d9\u13b8": 7300, "\u13cd\u13aa\u13af\u13e7\u13c8": 7301, "\u2581\u13a4\u13c1\u13b3\u13a9\u13c9": 7302, "\u2581\u13e5\u13c2\u13a6\u13ea\u13cd\u13aa": 7303, "\u2581\u13a4\u13a6\u13d4\u13b2\u13d2\u13a9": 7304, "\u2581\u13e3\u13cd\u13d3": 7305, "\u13eb\u13cf": 7306, "\u2581\u13da\u13b4\u13af\u13cc\u13c5\u13a2": 7307, "\u2581\u13e3\u13d3\u13c1\u13d7": 7308, "\u2581\u13d7\u13e5\u13a6\u13f4\u13b5\u13a8\u13a2": 7309, "\u2581\u13a0\u13c2\u13a6\u13f4\u13b5\u13a8\u13a2": 7310, "\u2581\u13e7\u13a6\u13f4\u13b5\u13a8\u13a2": 7311, "\u2581\u13a4\u13f0\u13b8\u13ce\u13a2": 7312, "\u13d3\u13a2\u13c5\u13d2\u13a9": 7313, "\u13eb\u13d2\u13d7": 7314, "\u13c2\u13c5\u13aa\u13a0": 7315, "\u2581\u13a2\u13d5\u13b2\u13a2": 7316, "\u2581\u13e9\u13a9\u13f4": 7317, "\u2581\u13a4\u13be\u13da\u13b5\u13cd\u13ac\u13a9": 7318, "\u2581\u13a2\u13e8\u13f0\u13b5\u13ce": 7319, "\u13b5\u13ae": 7320, "\u2581\u13a6\u13c4\u13b8\u13d2\u13a2": 7321, "\u2581\u13a4\u13be\u13e3": 7322, "\u2581\u13a6\u13b6\u13db": 7323, "\u2581\u13a4\u13c2\u13b7\u13e8\u13af": 7324, "\u2581\u13e5\u13c2\u13e5": 7325, "\u2581\u13a1\u13aa\u13a2": 7326, "\u2581\u13a4\u13ec\u13b4\u13a2": 7327, "\u2581\u13e7\u13c2\u13e5": 7328, "\u2581\u13a0\u13aa\u13b5\u13f0\u13cd\u13a9": 7329, "\u13aa\u13e2\u13d4\u13c5\u13af": 7330, "\u2581\u13a3\u13c1\u13af": 7331, "\u2581\u13ad\u13b3": 7332, "\u2581\u13a2\u13e3\u13a6\u13d4\u13c5\u13ce": 7333, "\u2581\u13a4\u13b5\u13cd\u13c6\u13d7\u13cd\u13d7\u13f1": 7334, "\u13d3\u13b3\u13a9": 7335, "\u2581\u13d7\u13af\u13cd\u13d7\u13f1": 7336, "\u2581\u13ac\u13cd\u13a6\u13b3": 7337, "\u13f0\u13b8\u13d7\u13f1": 7338, "\u2581\u13a2\u13b6": 7339, "\u13b5\u13c2\u13aa\u13af\u13cd\u13d7\u13cd\u13a9": 7340, "\u2581\u13a0\u13c2\u13cd\u13a6\u13a9": 7341, "\u13b5\u13ae\u13b5\u13cd\u13d9\u13d7": 7342, "\u2581\u13e5\u13c1\u13b8\u13a2": 7343, "\u2581\u13c8\u13b5\u13a9\u13f1": 7344, "\u2581\u13d3\u13c2\u13c3": 7345, "\u13b5\u13b7\u13ac": 7346, "\u13d3\u13c5\u13d6\u13cd\u13d7": 7347, "\u2581\u13ed\u13b6": 7348, "\u13e5\u13c9\u13b3": 7349, "\u2581\u13da\u13c2\u13c5\u13e8": 7350, "\u13cf\u13d9": 7351, "\u13db\u13d3\u13cd\u13d3\u13c1\u13b5": 7352, "\u13e2\u13eb\u13cd\u13d9\u13d7": 7353, "\u2581\u13a4\u13be\u13b5\u13e5\u13d9\u13c5": 7354, "\u2581\u13a0\u13bc\u13af": 7355, "\u13cf\u13d9\u13ae": 7356, "\u2581\u13a2\u13ef\u13db\u13c1\u13d7\u13f1": 7357, "\u2581\u13e7\u13cd\u13aa\u13b8": 7358, "\u2581\u13d5\u13a6\u13da\u13e9\u13d7\u13d2\u13a2": 7359, "\u2581\u13a4\u13f0\u13b8\u13c5\u13a2": 7360, "\u13d3\u13ce\u13aa\u13a9\u13cd\u13d7\u13f1": 7361, "\u2581\u13d5\u13ae": 7362, "\u2581\u13a4\u13c2\u13c1\u13af": 7363, "\u2581\u13a0\u13f2\u13df\u13a8": 7364, "\u2581\u13a4\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 7365, "\u2581\u13a0\u13a6\u13b8": 7366, "\u2581\u13a4\u13e3\u13d7": 7367, "\u13ea\u13db": 7368, "\u2581\u13ac\u13a9\u13cd\u13d7": 7369, "\u2581\u13e7\u13c1\u13d7": 7370, "\u13c6\u13c2": 7371, "\u2581\u13d3\u13f0\u13e3": 7372, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d3\u13c1\u13d7\u13f1": 7373, "\u13a9\u13b3\u13be\u13b3\u13d7\u13cd": 7374, "\u13c2\u13cd\u13d3\u13e9\u13da\u13a6": 7375, "\u2581\u13a3\u13a6\u13be": 7376, "\u2581\u13d9\u13d3\u13e5": 7377, "\u2581\u13a0\u13aa\u13b2\u13cd\u13ac": 7378, "\u2581\u13ac\u13e9\u13cd\u13db\u13d7\u13cd": 7379, "\u13e3\u13d3\u13c5\u13db\u13be": 7380, "\u13af\u13a0\u13be": 7381, "\u13c2\u13a8\u13d2\u13be": 7382, "\u2581\u13e7\u13c2\u13f2\u13b0": 7383, "\u13a4\u13ac\u13eb\u13f3": 7384, "\u13c4\u13db\u13d7": 7385, "\u2581\u13e7\u13ed\u13d3": 7386, "\u2581\u13a0\u13ef\u13a5\u13a2": 7387, "\u2581\u13a4\u13dc\u13c5\u13db\u13a2": 7388, "\u2581\u13a0\u13aa\u13b2": 7389, "\u2581\u13a4\u13d7\u13cd\u13a6\u13e2": 7390, "\u2581\u13d7\u13a6\u13b4\u13f4": 7391, "\u2581\u13a4\u13e2\u13e8": 7392, "or": 7393, "\u13a8\u13eb\u13cd\u13d7": 7394, "\u2581\u13a4\u13c2\u13e7\u13c8\u13cd": 7395, "\u13d3\u13c1\u13b4\u13a2": 7396, "\u2581\u13d7\u13c4\u13ec\u13cd\u13d7": 7397, "\u13cc\u13c1\u13a2": 7398, "\u13c2\u13a2\u13db": 7399, "\u2581\u13a0\u13cd\u13a6\u13c5\u13e8\u13a2": 7400, "\u13ea\u13d2\u13a9": 7401, "\u2581\u13c6\u13a9": 7402, "\u13d5\u13d7\u13f4": 7403, "\u2581\u13c2\u13d5\u13a6\u13ea\u13ce": 7404, "\u13f2\u13af\u13ce\u13d7": 7405, "\u2581\u13f3\u13be\u13b5\u13aa": 7406, "\u2581\u13a7\u13c3\u13b2\u13cd": 7407, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa\u13cd\u13a8": 7408, "\u2581\u13a4\u13b5\u13cd\u13d9\u13d7": 7409, "\u2581\u13a4\u13be\u13d3\u13c5\u13a6\u13b8": 7410, "\u13f1\u13b5\u13d9\u13b8": 7411, "\u2581\u13c5\u13e9\u13cd\u13d7": 7412, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13ce\u13c3": 7413, "\u2581\u13f3\u13f0\u13b8\u13c1": 7414, "\u13a9\u13b7\u13eb": 7415, "\u2581\u13e7\u13be\u13c4\u13ec\u13a2": 7416, "\u13c4\u13cd\u13db": 7417, "\u13d3\u13c2\u13d9\u13a6": 7418, "\u2581\u13ed\u13cf\u13b3\u13db\u13c1": 7419, "\u13af\u13d0\u13d7": 7420, "\u2581\u13a0\u13cc\u13c5": 7421, "\u13d5\u13b8": 7422, "\u2581\u13c3\u13b4\u13cd\u13c9": 7423, "\u13ac\u13c1\u13d7": 7424, "\u2581\u13d3\u13cd\u13c6\u13c2\u13aa\u13d7": 7425, "\u13df\u13cf\u13cd\u13aa\u13a2": 7426, "\u2581\u13cf\u13c9": 7427, "\u13d3\u13a2\u13c5\u13ce\u13a2": 7428, "\u2581\u13a8\u13e3\u13b5\u13ae\u13b5": 7429, "\u13c1\u13c9\u13a2\u13cd\u13d7\u13f1": 7430, "\u2581\u13d5\u13a4\u13b4": 7431, "\u13d9\u13d9\u13f1": 7432, "\u13aa\u13ef\u13db": 7433, "\u2581\u13f4\u13be": 7434, "\u13db\u13a6\u13c1\u13b4": 7435, "\u13f0\u13ae\u13cd\u13d7": 7436, "\u2581\u13a6\u13b8\u13a2": 7437, "\u2581\u13a0\u13df": 7438, "\u2581\u13a4\u13c7\u13d3\u13b8\u13a2": 7439, "\u2581\u13eb\u13d7\u13a9": 7440, "\u2581\u13a4\u13be\u13a5": 7441, "\u13cd\u13d7\u13cd\u13aa": 7442, "\u13c5\u13ac": 7443, "\u13cd\u13d4\u13c1\u13b4": 7444, "\u2581\u13e3\u13d3\u13e1\u13d7\u13cd\u13aa": 7445, "\u2581\u13a5\u13a9\u13c2\u13d0\u13d7": 7446, "\u2581\u13e7\u13c2\u13d7\u13f1": 7447, "\u2581\u13a0\u13a9\u13b7\u13e4\u13b8": 7448, "\u2581\u13a0\u13c2\u13d9\u13be\u13a5\u13a2": 7449, "\u13c6\u13a7\u13bf\u13c5\u13a9": 7450, "\u2581\u13a6\u13e5\u13ef\u13b5\u13e5\u13d9\u13c1": 7451, "\u13f2\u13cd\u13d9\u13d3\u13c1\u13d7": 7452, "\u13b8\u13c9\u13d9\u13a2": 7453, "\u2581\u13cd\u13a9\u13b5": 7454, "\u2581\u13a0\u13a9\u13aa\u13b5\u13f0": 7455, "\u2581\u13a6\u13b5\u13e3": 7456, "\u2581\u13d5\u13a6\u13db\u13a2": 7457, "\u13e5\u13a9": 7458, "\u13c2\u13c6\u13d8\u13ae\u13cd\u13d7": 7459, "\u2581\u13a4\u13b5\u13c1\u13e8\u13a2": 7460, "\u2581\u13f1\u13c2\u13ac\u13c2": 7461, "\u13e5\u13cd\u13db\u13d7\u13cd\u13d9\u13d7": 7462, "\u2581\u13a0\u13c4\u13ec\u13cd\u13d7": 7463, "\u2581\u13a8\u13a6\u13ce\u13b8": 7464, "\u2581\u13f1\u13d3\u13d3": 7465, "\u13ae\u13d7": 7466, "\u13d3\u13cc\u13b3\u13d7\u13cd\u13a8\u13cd\u13d7": 7467, "\u13cf\u13b3\u13db\u13d9\u13d7": 7468, "\u13d4\u13cd\u13d7": 7469, "\u13a9\u13b8\u13d9\u13d7": 7470, "\u2581\u13d3\u13f3\u13d3\u13b4\u13c5\u13a9": 7471, "\u2581\u13a0\u13ca": 7472, "\u13d3\u13c5\u13ec\u13d7": 7473, "\u2581\u13a4\u13c5\u13cf\u13f4\u13a2": 7474, "\u2581\u13a4\u13a8\u13d3\u13b5\u13f4\u13a2": 7475, "\u2581\u13ef\u13e5": 7476, "\u2581\u13ed\u13ef\u13c5\u13ae\u13a2": 7477, "\u2581\u13e7\u13e9\u13d4\u13c1": 7478, "\u13d9\u13af\u13c9": 7479, "\u13c2\u13c5\u13cf\u13d3\u13cd\u13d7": 7480, "\u2581\u13a0\u13cd\u13a6\u13c2\u13cd\u13a9\u13c2": 7481, "\u13d3\u13c5\u13d8": 7482, "\u13c3\u13ae\u13cd\u13a8\u13cd\u13d7": 7483, "\u2581\u13a2\u13e8\u13ef\u13c5\u13d3\u13d7\u13cd": 7484, "\u2581\u13a5\u13cd\u13a9\u13c3": 7485, "\u13a7\u13c1\u13b8\u13be": 7486, "\u13be\u13d7\u13c5\u13d7": 7487, "\u2581\u13a7\u13b3\u13e9\u13d7\u13d2\u13a2": 7488, "\u2581\u13d7\u13a6\u13da\u13b2\u13a2": 7489, "\u2581\u13c3\u13a6\u13cd": 7490, "\u2581\u13a4\u13c3\u13f4": 7491, "\u2581\u13a4\u13be\u13de": 7492, "\u13be\u13da\u13a6": 7493, "\u2581\u13c2\u13e5\u13cd\u13a6\u13c5": 7494, "\u13be\u13d7\u13c5\u13ce": 7495, "\u2581\u13f0\u13ae": 7496, "\u13aa\u13b5\u13ac\u13be": 7497, "\u13ad\u13e2": 7498, "\u13b4\u13db": 7499, "\u2581\u13da\u13be\u13d3\u13b8": 7500, "\u13cd\u13a9\u13ef\u13c5\u13a1\u13b8": 7501, "\u13c1\u13c9\u13e4\u13d7\u13f1": 7502, "\u13e5\u13db\u13af": 7503, "\u13af\u13f0\u13c3": 7504, "\u13b5\u13a2\u13cd\u13d7": 7505, "\u13aa\u13b2\u13cd\u13d4\u13c1": 7506, "\u2581\u13e7\u13c2\u13c1": 7507, "\u2581\u13a0\u13c2\u13ef\u13a5": 7508, "\u2581\u13a3\u13e3\u13b5\u13e5\u13d9\u13b2\u13cd": 7509, "\u13d0\u13af": 7510, "\u2581\u13d7\u13a6\u13b4": 7511, "\u2581\u13a4\u13db\u13db": 7512, "\u2581\u13a3\u13d3": 7513, "\u2581\u13e7\u13c2\u13a6\u13d0\u13a0": 7514, "\u2581\u13a4\u13af\u13cd\u13d7": 7515, "\u2581\u13f1\u13a6\u13a8\u13ce": 7516, "\u2581\u13ac\u13d7\u13cd\u13ac\u13a9": 7517, "\u13b8\u13cf": 7518, "\u2581\u13a2\u13d7\u13d3\u13db\u13c1": 7519, "\u2581\u13a4\u13be\u13d9\u13e2": 7520, "\u2581\u13a2\u13f3\u13c2\u13e8": 7521, "\u2581\u13c9\u13cf": 7522, "\u2581\u13d3\u13d3\u13bf\u13e9\u13cd\u13db\u13a2": 7523, "\u13d3\u13c1\u13b2\u13a9": 7524, "\u2581\u13a2\u13a6\u13a6\u13db\u13a2": 7525, "\u2581\u13a0\u13c2\u13c3\u13ae\u13cd\u13ac\u13a2": 7526, "\u13c4\u13aa\u13a8\u13cd\u13d7": 7527, "\u2581\u13a4\u13be\u13df": 7528, "\u2581\u13a5\u13b4": 7529, "\u2581\u13f1\u13a6\u13b7": 7530, "\u13cd\u13d3\u13c1\u13d7": 7531, "\u13d6\u13c3\u13af": 7532, "\u2581\u13a4\u13f2\u13b4\u13c3": 7533, "\u2581\u13a6\u13db\u13a9": 7534, "\u2581\u13a4\u13c1\u13b4\u13a2": 7535, "\u13d3\u13c2\u13f4": 7536, "\u13b7\u13e4\u13b8\u13ad": 7537, "\u2581\u13b1\u13c2\u13b7": 7538, "\u13cd\u13db\u13c5\u13af": 7539, "\u2581\u13d7\u13a6\u13b3": 7540, "\u13a8\u13f3\u13d2": 7541, "\u2581\u13d4\u13b3": 7542, "\u13f0\u13e8": 7543, "\u2581\u13a6\u13b6\u13cd\u13a8": 7544, "\u13cd\u13d7\u13f0\u13ac": 7545, "\u13cd\u13da\u13a9\u13ce": 7546, "\u13be\u13b7\u13d2": 7547, "\u13e0\u13f1\u13ad": 7548, "\u13c5\u13e3\u13db": 7549, "\u13e8\u13db": 7550, "\u2581\u13a2\u13e5\u13d4\u13f2\u13af": 7551, "\u13f3\u13b6\u13d7": 7552, "\u13da\u13b2": 7553, "\u2581\u13a4\u13ec\u13d2": 7554, "\u2581\u13a4\u13be\u13b5\u13aa\u13d2": 7555, "\u2581\u13d5\u13a6\u13b8": 7556, "\u2581\u13a4\u13e3\u13d9": 7557, "\u13c2\u13a8\u13c2": 7558, "\u13aa\u13e9\u13d7\u13ad": 7559, "\u13f2\u13a4\u13b5": 7560, "\u13e3\u13b5\u13ae\u13b5\u13a6": 7561, "\u13c2\u13ea\u13a0": 7562, "\u13a5\u13ad": 7563, "\u2581\u13ac\u13e9\u13d5": 7564, "\u13db\u13c2\u13d7\u13cd\u13d7": 7565, "\u2581\u13f4\u13eb\u13ef": 7566, "\u13d3\u13c5\u13d6\u13cd\u13a8": 7567, "\u13a9\u13da\u13a2\u13cd\u13d3\u13c1\u13b8": 7568, "\u2581\u13a4\u13e4\u13b5\u13aa": 7569, "\u13d9\u13ad\u13f4": 7570, "\u13c2\u13a6\u13db": 7571, "\u2581\u13a4\u13e4\u13b5\u13a6\u13ef": 7572, "\u2581\u13f1\u13c2\u13a8": 7573, "\u2581\u13a6\u13e5\u13f2": 7574, "\u13a6\u13d4\u13af\u13f3": 7575, "\u13a6\u13d4\u13d9\u13a5": 7576, "\u2581\u13eb\u13ac\u13e9\u13f4": 7577, "\u13a6\u13b8\u13a2\u13db": 7578, "\u2581\u13e5\u13eb\u13a6": 7579, "\u2581\u13ac\u13e9\u13c3\u13b5\u13cd": 7580, "\u2581\u13a0\u13a6\u13d4\u13b2\u13a9": 7581, "\u13c3\u13ce\u13ad": 7582, "\u13af\u13cd\u13d7\u13cd\u13aa": 7583, "\u2581\u13a3\u13e3\u13b5\u13cd\u13a6\u13cd\u13d9": 7584, "\u13be\u13c4\u13aa\u13eb\u13ce\u13b8\u13af": 7585, "\u2581\u13ed\u13da": 7586, "\u13cc\u13a1": 7587, "\u13d3\u13ef": 7588, "\u13ac\u13c1\u13b2": 7589, "\u2581\u13a2\u13e3\u13d3\u13c4\u13f4": 7590, "\u13b7\u13e5\u13b8": 7591, "\u2581\u13a4\u13e3\u13c1": 7592, "\u13f2\u13af\u13ce\u13b4": 7593, "\u2581\u13ec\u13a9\u13c2": 7594, "\u2581\u13a0\u13e4\u13b8\u13cd": 7595, "\u13a6\u13d9\u13a5\u13d2": 7596, "\u13d3\u13ac\u13e9\u13cd\u13d3\u13e9\u13db\u13db": 7597, "\u2581\u13a4\u13d9\u13b4\u13b0\u13d2\u13a9": 7598, "\u2581\u13a4\u13b5\u13cd\u13d9": 7599, "\u2581\u13a4\u13c2\u13aa\u13b2\u13a2": 7600, "\u2581\u13da\u13a7\u13b5": 7601, "\u13da\u13d3\u13b3\u13a1": 7602, "\u2581\u13f4\u13a6\u13a6": 7603, "\u2581\u13a0\u13d7\u13cd\u13a9": 7604, "\u2581\u13da\u13ea\u13a7\u13ae": 7605, "\u13d3\u13e4\u13b5\u13db": 7606, "\u2581\u13d5\u13a8\u13a6\u13ec\u13cd": 7607, "\u2581\u13a6\u13d9\u13c9": 7608, "\u2581\u13a4\u13be\u13e8\u13ce": 7609, "\u2581\u13af\u13ac": 7610, "\u2581\u13a2\u13e4\u13d9\u13af": 7611, "\u2581\u13a3\u13ac\u13d9\u13d7": 7612, "\u13cd\u13c9\u13df": 7613, "\u2581\u13a0\u13a1": 7614, "\u13ea\u13ce\u13ae\u13cd\u13d7": 7615, "\u2581\u13e7\u13b5\u13f0": 7616, "\u13ef\u13c5\u13d3": 7617, "\u2581\u13a4\u13d3\u13e3\u13a6\u13b8": 7618, "\u2581\u13a0\u13c2\u13a6\u13d4\u13b2\u13a9": 7619, "\u13b3\u13cd\u13d3": 7620, "\u2581\u13c2\u13af\u13be": 7621, "\u13cd\u13a6\u13c5\u13e8\u13af": 7622, "\u13f2\u13b1\u13cd\u13a6": 7623, "\u13cd\u13c6\u13c2\u13aa\u13d7\u13cd\u13a9": 7624, "\u13a6\u13cd\u13a9\u13b6\u13a9": 7625, "\u2581\u13a1\u13e3\u13d1\u13f0": 7626, "\u2581\u13f4\u13db": 7627, "\u2581\u13a4\u13c2\u13f2\u13ae": 7628, "\u13db\u13a9\u13cd\u13ac": 7629, "\u2581\u13e9\u13f4\u13cd\u13d7": 7630, "\u2581\u13a3\u13a9\u13ad": 7631, "\u13c3\u13ae\u13cd\u13a9": 7632, "\u2581\u13a2\u13e8\u13f0": 7633, "\u2581\u13f1\u13ed\u13c2": 7634, "ri": 7635, "\u13e5\u13c1\u13b0\u13a2": 7636, "\u2581\u13d7\u13f0": 7637, "\u13d7\u13cd\u13d9\u13d7": 7638, "\u2581\u13ac\u13e9\u13b5": 7639, "\u2581\u13d8\u13a9": 7640, "\u13d1\u13e2": 7641, "\u2581\u13e3\u13cd\u13a6\u13c5\u13aa": 7642, "\u2581\u13a4\u13c2\u13f0\u13b8": 7643, "\u13cf\u13b3\u13d5": 7644, "\u13a4\u13d9": 7645, "\u13a6\u13da\u13a9\u13f1": 7646, "\u2581\u13a6\u13c2\u13f4\u13d7": 7647, "\u13c4\u13aa\u13eb\u13cd\u13d7\u13f1": 7648, "\u13f2\u13ae\u13b8": 7649, "\u13c5\u13c5": 7650, "\u13c9\u13af\u13f3\u13ad": 7651, "\u2581\u13a4\u13da\u13b5\u13cd\u13ac\u13a2": 7652, "\u2581\u13a6\u13be\u13b8": 7653, "\u2581\u13e5\u13e8\u13f2\u13ce": 7654, "\u13db\u13d7\u13f1": 7655, "\u2581\u13a2\u13dd": 7656, "\u13ab\u13a2\u13cd": 7657, "\u13b3\u13ad": 7658, "\u13af\u13ae": 7659, "\u13d7\u13cd\u13d7\u13f1": 7660, "\u13f4\u13a6": 7661, "\u2581\u13a2\u13e5\u13c1\u13b8": 7662, "\u2581\u13da\u13b4\u13c1\u13c3": 7663, "\u2581\u13a0\u13be\u13d3\u13c5\u13d6": 7664, "\u2581\u13a1\u13b3\u13ea\u13f1\u13c9": 7665, "\u13be\u13c4\u13aa\u13eb\u13cd\u13a6": 7666, "\u2581\u13d7\u13e7\u13ac": 7667, "\u2581\u13d7\u13e3\u13b5": 7668, "\u2581\u13c4\u13be\u13cd\u13db\u13a2": 7669, "\u13e5\u13cc\u13b3\u13d9\u13d7": 7670, "\u2581\u13a0\u13d1\u13f0": 7671, "\u13b5\u13cf\u13be\u13af\u13cd\u13d7": 7672, "\u2581\u13a0\u13aa\u13b5\u13f0\u13cd\u13ac": 7673, "\u13d2\u13c9": 7674, "\u13a8\u13cf": 7675, "\u13d5\u13cf": 7676, "\u2581\u13f1\u13c2\u13a6": 7677, "\u13f4\u13c1\u13d7\u13f1": 7678, "\u2581\u13f1\u13e4": 7679, "\u13e5\u13f0\u13af": 7680, "\u13d8\u13f2\u13af": 7681, "\u2581\u13d5\u13ac\u13d5": 7682, "\u13f2\u13af\u13ce\u13b8": 7683, "\u2581\u13c1\u13b5": 7684, "\u13e3\u13db\u13c5\u13a2\u13cd\u13d3\u13c1": 7685, "\u2581\u13f1\u13e5\u13e9\u13db": 7686, "\u13b8\u13cd\u13d9\u13d7\u13f1": 7687, "\u13ea\u13b3\u13c5": 7688, "\u2581\u13a4\u13be\u13d1": 7689, "\u2581\u13ca": 7690, "\u2581\u13a0\u13a9\u13cd\u13c6\u13c2\u13aa": 7691, "\u2581\u13ce\u13d7": 7692, "\u13d2\u13c2\u13b8": 7693, "\u2581\u13a4\u13f4\u13b8": 7694, "\u2581\u13d5\u13e7\u13aa": 7695, "\u2581\u13a4\u13b5\u13e6\u13d4\u13c5": 7696, "\u13db\u13c1\u13a2": 7697, "\u13e5\u13ef\u13c2\u13cd\u13a8\u13cd\u13d7": 7698, "\u13c2\u13ef\u13ea\u13e8": 7699, "\u13be\u13e1\u13d7\u13cd\u13ac": 7700, "\u13d9\u13d4\u13c1\u13a2": 7701, "\u2581\u13e5\u13a6\u13c3": 7702, "\u2581\u13c2\u13ac\u13a9": 7703, "\u13be\u13cc\u13a2": 7704, "\u13e8\u13cd\u13db": 7705, "\u13a4\u13be\u13e3\u13c1": 7706, "\u13c1\u13db": 7707, "\u2581\u13d3\u13a7\u13bf\u13e9\u13d7": 7708, "\u13d3\u13d1\u13f2": 7709, "\u13cd\u13d7\u13f0\u13d4\u13c5\u13a9": 7710, "\u2581\u13a0\u13a9\u13be\u13a5": 7711, "\u2581\u13a4\u13be\u13c4\u13aa\u13e8": 7712, "\u13db\u13c5\u13a2\u13cd\u13d4\u13c5\u13af": 7713, "\u13e8\u13c1\u13b8": 7714, "\u2581\u13e3\u13a6\u13b4": 7715, "\u2581\u13e5\u13a0": 7716, "\u13f2\u13ce\u13ae\u13cd\u13d7": 7717, "\u13c2\u13d0\u13d7\u13f1": 7718, "\u2581\u13d7\u13c2\u13c1": 7719, "\u2581\u13a2\u13e6\u13af\u13f3\u13b2\u13cd": 7720, "\u13e3\u13a6\u13ce\u13cd\u13d5\u13cd\u13d7": 7721, "\u13f2\u13cd\u13d3": 7722, "\u2581\u13a2\u13e3\u13e0\u13ef\u13cd\u13d9\u13d7": 7723, "\u13be\u13ab\u13f4\u13d7": 7724, "\u2581\u13a0\u13d3\u13c5\u13cd\u13a8": 7725, "\u2581\u13c2\u13ac\u13ea\u13ce": 7726, "\u2581\u13d3\u13c2\u13c1\u13b2": 7727, "\u13f2\u13ae\u13b8\u13a9": 7728, "\u2581\u13a3\u13a9\u13be\u13b5": 7729, "\u13d7\u13b9": 7730, "\u2581\u13a4\u13f2\u13cf\u13cd\u13a8": 7731, "\u13c2\u13a6\u13a5": 7732, "\u2581\u13ac\u13c6\u13d3\u13c5": 7733, "\u13d9\u13db": 7734, "\u13d4\u13cd\u13ac": 7735, "\u2581\u13d3\u13f3\u13c1": 7736, "\u13cd\u13d3\u13c1\u13b5": 7737, "\u13a6\u13b4\u13d4\u13c2": 7738, "\u13cc\u13db\u13a2": 7739, "\u2581\u13d3\u13b4\u13b2\u13cd\u13ac": 7740, "\u13ce\u13af": 7741, "\u13b5\u13aa\u13c1\u13b8\u13af": 7742, "\u2581\u13a0\u13c2\u13af": 7743, "\u13b4\u13eb\u13cd\u13d4\u13c5": 7744, "\u2581\u13d8\u13c2": 7745, "\u13d3\u13d3\u13b8": 7746, "\u13c3\u13ae\u13cd\u13ac": 7747, "\u2581\u13a8\u13e5\u13c1\u13b8": 7748, "\u13c3\u13f4\u13b5\u13cd\u13d7": 7749, "\u13c5\u13d9": 7750, "\u13f4\u13d9\u13d7": 7751, "\u2581\u13d7\u13a7\u13bf\u13e9": 7752, "\u13b5\u13c2": 7753, "\u13d7\u13a4\u13e8\u13ce": 7754, "\u2581\u13ed\u13e2": 7755, "\u13e5\u13c1\u13b4": 7756, "\u2581\u13a2\u13e5\u13aa\u13b5\u13f0": 7757, "\u13b6\u13d9\u13d7": 7758, "\u2581\u13a4\u13d3\u13b4": 7759, "\u13ae\u13b8\u13a9": 7760, "\u2581\u13a0\u13d3\u13b4": 7761, "\u2581\u13ef\u13b5": 7762, "\u13cd\u13d5\u13d3\u13b5\u13f4": 7763, "\u13ce\u13aa\u13a9\u13d2": 7764, "\u2581\u13ae\u13d9": 7765, "\u13b5\u13d9\u13b2\u13a2": 7766, "\u2581\u13f1\u13a6\u13d3": 7767, "\u13dc\u13cf\u13db\u13a1": 7768, "\u2581\u13c2\u13da\u13ea": 7769, "\u2581\u13e7\u13cd\u13aa": 7770, "\u2581\u13e3\u13d7": 7771, "\u13a0\u13a9": 7772, "\u13c5\u13d7\u13cd\u13ac": 7773, "\u13d9\u13a5\u13a2": 7774, "\u13cd\u13c6\u13c2\u13aa\u13db": 7775, "\u13ac\u13e9\u13c2\u13aa\u13e9\u13db": 7776, "\u13c5\u13cf": 7777, "\u13cd\u13a6\u13cd\u13d3\u13c1\u13d7\u13f1": 7778, "\u2581\u13a0\u13ef\u13e6": 7779, "\u13be\u13f0\u13cd\u13a6": 7780, "\u13e9\u13af\u13cd\u13d4\u13c5\u13af": 7781, "\u2581\u13a4\u13cd\u13a9": 7782, "\u2581\u13a4\u13c2\u13cf": 7783, "\u13d3\u13c5\u13d9": 7784, "\u13da\u13b5\u13cd\u13ac\u13a2": 7785, "\u2581\u13a4\u13be\u13b4\u13c5\u13d7": 7786, "\u13f2\u13ce\u13a2": 7787, "\u2581\u13da\u13c2\u13ad": 7788, "\u13da\u13b8\u13cc\u13db": 7789, "\u13b5\u13cd\u13d7\u13cd\u13ac": 7790, "\u13c4\u13b6\u13d4\u13c5": 7791, "\u13d3\u13be\u13c5": 7792, "\u13da\u13a2\u13cd\u13d3\u13c1": 7793, "\u13a3\u13a2": 7794, "\u13aa\u13e9\u13d4": 7795, "\u2581\u13ef\u13c2\u13a6\u13d4": 7796, "\u2581\u13eb\u13d8": 7797, "\u13b5\u13e5\u13d9\u13c1\u13b8": 7798, "\u2581\u13a4\u13b8\u13d5": 7799, "\u2581\u13e7\u13ea\u13a7\u13c1": 7800, "\u2581\u13a4\u13be\u13b5\u13cd": 7801, "\u13f3\u13a2": 7802, "\u2581--": 7803, "\u13e8\u13d3": 7804, "\u13b3\u13d5\u13d7": 7805, "\u2581\u13eb\u13a6\u13be\u13c4\u13aa": 7806, "\u2581\u13ef\u13ad": 7807, "\u13d3\u13c2\u13d0\u13d7\u13f1": 7808, "\u13ea\u13a2": 7809, "\u2581\u13a4\u13c2\u13cd\u13c6\u13db": 7810, "\u13eb\u13ce\u13b8\u13af": 7811, "\u2581\u13d7\u13ef\u13d6": 7812, "\u13cd\u13a9\u13b2\u13cf": 7813, "\u2581\u13e3\u13d9\u13b5": 7814, "\u13a6\u13b9": 7815, "\u13cd\u13a9\u13c3": 7816, "\u13af\u13cf": 7817, "\u2581\u13a4\u13e2\u13c1": 7818, "\u13da\u13b5\u13cd\u13ac": 7819, "\u2581\u13e5\u13cd\u13a9": 7820, "\u2581\u13be\u13c1": 7821, "\u2581\u13a4\u13c1\u13a2": 7822, "\u13f2\u13af\u13ae": 7823, "\u13f2\u13b0\u13ce\u13d7": 7824, "\u13ef\u13a1": 7825, "\u2581\u13a4\u13be\u13c2\u13e2": 7826, "\u2581\u13eb\u13d5": 7827, "\u13f2\u13a2\u13f3": 7828, "\u2581\u13a6\u13c4\u13aa\u13ac": 7829, "\u2581\u13a4\u13c2\u13a6": 7830, "\u13e5\u13f2\u13a2\u13ce": 7831, "\u2581\u13a0\u13c2\u13e9\u13db": 7832, "\u13da\u13d3\u13b4": 7833, "\u13f3\u13b5\u13cd\u13d9\u13d7": 7834, "\u2581\u13d7\u13c2\u13b3": 7835, "\u13b6\u13af\u13ce\u13b8": 7836, "\u13a6\u13b6\u13af\u13cd\u13d7\u13f1": 7837, "\u13e5\u13c2\u13a8\u13c2": 7838, "\u2581\u13a2\u13af\u13ef": 7839, "\u13c3\u13ae\u13d7\u13f1": 7840, "\u2581\u13f1\u13e5\u13cd\u13c6\u13c2\u13aa": 7841, "\u13d4\u13f2\u13af\u13b0": 7842, "\u13b4\u13d7": 7843, "\u13a6\u13d8\u13b4\u13a6": 7844, "\u13e5\u13f4\u13d4\u13c2": 7845, "\u13d9\u13b2\u13be": 7846, "\u13d8\u13b7\u13a6": 7847, "\u13db\u13ce": 7848, "\u13a6\u13b7\u13ac": 7849, "\u13c2\u13d3": 7850, "\u13b3\u13a9": 7851, "\u2581\u13e7\u13ea\u13f2": 7852, "\u13c2\u13f4\u13b2": 7853, "\u2581\u13a4\u13cd\u13d3\u13e9\u13d7\u13d2": 7854, "\u2581\u13a4\u13d1\u13f0": 7855, "\u2581\u13a0\u13a8\u13f3": 7856, "\u13d3\u13f2": 7857, "\u2581\u13a0\u13c6\u13d7": 7858, "\u2581\u13a2\u13a6\u13db\u13c9": 7859, "\u13d3\u13c5\u13d4": 7860, "\u2581\u13a6\u13c2\u13b5": 7861, "\u13e5\u13ea\u13cf": 7862, "\u2581\u13a0\u13b3": 7863, "\u2581\u13a2\u13e8\u13c1\u13b8": 7864, "\u13dd\u13a5": 7865, "\u2581\u13f1\u13a6\u13f0": 7866, "\u2581\u13ef\u13c9": 7867, "\u13bb\u13a6": 7868, "\u2581\u13e3\u13a2\u13d2": 7869, "\u13e9\u13be\u13a6\u13b3\u13af\u13f3": 7870, "\u13f0\u13b5\u13cf": 7871, "\u13c2\u13a9\u13cd\u13d4\u13c1": 7872, "\u2581\u13a4\u13be\u13e3\u13c5": 7873, "\u13db\u13c5\u13a2\u13cd\u13d9\u13d7": 7874, "\u2581\u13d7\u13e3\u13d3\u13a8\u13f3": 7875, "\u2581\u13a3\u13e4\u13b5": 7876, "\u13c2\u13cd\u13a6\u13a9": 7877, "\u13e9\u13db\u13b2\u13be": 7878, "\u13f4\u13b3\u13d2": 7879, "\u13e4\u13b3": 7880, "\u2581\u13a8\u13e5\u13c5": 7881, "\u13c2\u13c6\u13d8\u13ad": 7882, "\u2581\u13a4\u13aa\u13c5": 7883, "\u13a6\u13b5\u13cd\u13d9\u13d7\u13ad": 7884, "da": 7885, "\u13eb\u13cd": 7886, "\u13e5\u13e9\u13af\u13cd\u13d4\u13c5\u13af": 7887, "\u2581\u13f0\u13d9\u13ae": 7888, "\u13a6\u13cc\u13ef\u13cd\u13d7\u13cd": 7889, "\u13f4\u13b3": 7890, "\u13cc\u13ec\u13b8": 7891, "\u2581\u13a0\u13a9\u13cd\u13a9": 7892, "\u2581\u13ab\u13d3": 7893, "\u2581\u13a4\u13ab\u13f4": 7894, "\u13eb\u13d7": 7895, "\u13a4\u13df": 7896, "\u2581\u13a3\u13a9\u13c3\u13ae": 7897, "\u2581\u13ad\u13b5\u13cd\u13d3\u13f4": 7898, "\u2581\u13d7\u13e5\u13f4": 7899, "\u2581\u13ed\u13b7\u13e4\u13b8": 7900, "\u13a6\u13b5\u13cd\u13d3": 7901, "\u13a6\u13d4\u13b0\u13a2": 7902, "\u13af\u13f4\u13a9": 7903, "\u2581\u13a4\u13a8\u13f3": 7904, "\u2581\u13a4\u13c2\u13a7\u13b5\u13e8": 7905, "\u13af\u13cd\u13d3\u13c1\u13b8": 7906, "\u13c7\u13d7": 7907, "\u13d8\u13c3\u13b8\u13a9": 7908, "\u13a2\u13d2": 7909, "\u2581\u13a4\u13c2\u13c1\u13e4": 7910, "\u13cd\u13d3\u13f4\u13d7": 7911, "\u13f2\u13b2\u13cd\u13ac": 7912, "\u13e5\u13c1\u13aa\u13a2": 7913, "\u2581\u13a0\u13b1": 7914, "\u13e8\u13c1\u13cd\u13d7": 7915, "\u13be\u13db\u13a9\u13cd\u13aa": 7916, "\u2581\u13d6\u13be": 7917, "\u13a4\u13e8\u13ce": 7918, "\u2581\u13c2\u13da\u13c2": 7919, "\u13b5\u13cd\u13d3\u13f4\u13d9\u13d7\u13f1": 7920, "\u13b5\u13d9\u13b8\u13a2": 7921, "\u13a9\u13d0\u13c5": 7922, "\u13dd\u13c5": 7923, "\u13a8\u13af\u13d2": 7924, "\u13d8\u13c2\u13d2": 7925, "\u13a7\u13c3\u13d7": 7926, "\u13d5\u13aa": 7927, "\u13a6\u13d8\u13f2": 7928, "\u13a6\u13d9\u13cd\u13d4\u13c1\u13a2": 7929, "\u13b8\u13eb\u13cd\u13d3\u13c1\u13b0\u13a2": 7930, "\u13d0\u13e2\u13a2\u13cd\u13d9\u13d7\u13f1": 7931, "\u13b7\u13e4\u13d7": 7932, "\u2581\u13a4\u13db\u13db\u13c1\u13a2": 7933, "\u2581\u13a3\u13a9\u13f4": 7934, "\u13a6\u13f2\u13b5\u13f3": 7935, "\u2581\u13ed\u13f4": 7936, "\u13aa\u13e9\u13d8\u13cd\u13a8\u13cd\u13d7": 7937, "\u2581\u13a2\u13a9\u13a7": 7938, "\u13e3\u13b5\u13cd\u13d7\u13ad": 7939, "\u13db\u13c1\u13b4\u13a2": 7940, "\u2581\u13a0\u13c2\u13b8": 7941, "\u13a1\u13aa\u13a2": 7942, "\u2581\u13d5\u13a6\u13be": 7943, "\u13c1\u13b2\u13be": 7944, "\u2581\u13a4\u13bf\u13b8": 7945, "\u13f2\u13ae\u13b4\u13a2": 7946, "\u2581\u13f3\u13be\u13c5": 7947, "\u2581\u13a2\u13be\u13a8\u13c9": 7948, "\u13c1\u13cd\u13a8\u13cd\u13a9": 7949, "\u13c3\u13c1\u13b5": 7950, "\u2581\u13a0\u13d0\u13e2\u13a2\u13cd\u13d9\u13d7": 7951, "\u13db\u13c1\u13b8": 7952, "\u13c5\u13cd\u13d4\u13c1\u13a2": 7953, "\u2581\u13a0\u13e8": 7954, "\u13d3\u13d3\u13f1": 7955, "\u13b8\u13c5": 7956, "\u13b4\u13d4\u13c2": 7957, "\u13f0\u13b8\u13ce": 7958, "\u2581\u13a4\u13e2\u13a8": 7959, "\u2581\u13a6\u13e5\u13c1\u13d7": 7960, "\u2581\u13e7\u13be\u13da\u13aa\u13d3\u13c1\u13d7": 7961, "\u2581\u13a4\u13c2\u13c7\u13d3": 7962, "\u13f1\u13b4": 7963, "\u13a2\u13b2": 7964, "\u13c8\u13d3": 7965, "\u2581\u13a4\u13aa\u13b3": 7966, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8": 7967, "\u2581\u13a1\u13e5\u13b8": 7968, "\u13d3\u13e5\u13b6": 7969, "\u13cd\u13d3\u13c1\u13ae": 7970, "\u2581\u13d7\u13ef": 7971, "\u13e9\u13ef": 7972, "\u2581\u13a0\u13ce\u13aa\u13a9\u13cd": 7973, "\u13e9\u13c2\u13a6\u13b8": 7974, "\u13f4\u13d3\u13c6\u13b6\u13a5\u13a9": 7975, "\u2581\u13a4\u13be\u13b5\u13cd\u13a9": 7976, "\u13ce\u13b5\u13db": 7977, "\u13f4\u13cd\u13d5\u13cd": 7978, "\u2581\u13d5\u13a4\u13c5": 7979, "\u2581\u13f1\u13c2\u13a6\u13b5\u13cd": 7980, "\u2581\u13a0\u13c6\u13d5": 7981, "\u13aa\u13e2\u13d9\u13d7": 7982, "\u13db\u13aa\u13d7": 7983, "\u13be\u13db\u13c1\u13ad": 7984, "\u13d3\u13c9": 7985, "\u2581\u13d5\u13a6\u13d3": 7986, "\u13b5\u13cd\u13aa\u13a2": 7987, "\u2581\u13a4\u13d9\u13af\u13f3\u13d7": 7988, "\u2581\u13c5\u13d3\u13e3": 7989, "\u2581\u13a2\u13e5\u13a8\u13f3": 7990, "\u2581\u13ad\u13b8": 7991, "\u2581\u13e7\u13d3\u13f4\u13b3": 7992, "\u2581\u13a4\u13d9\u13ef\u13c5\u13af\u13d5": 7993, "\u13d7\u13e9\u13db\u13af": 7994, "\u13e2\u13c8": 7995, "\u13b6\u13cd\u13ac": 7996, "\u13d7\u13ce\u13a2": 7997, "\u13b5\u13a5\u13c2\u13b8": 7998, "\u13d4\u13f2\u13ce\u13ae": 7999, "\u13a6\u13e7": 8000, "\u13aa\u13a5\u13af": 8001, "\u2581\u13ed\u13c2\u13f4": 8002, "\u13a1\u13b0": 8003, "\u13af\u13a0\u13c3": 8004, "\u13a6\u13b5\u13cd\u13aa": 8005, "\u2581\u13a6\u13be\u13f0": 8006, "\u13aa\u13d4\u13c5": 8007, "\u13d0\u13c5\u13a2\u13cd\u13d4\u13c5\u13af": 8008, "\u2581\u13a1\u13ac": 8009, "\u13cd\u13d7\u13f0\u13d4\u13c1": 8010, "\u13da\u13b6": 8011, "\u13f1\u13e2\u13d7": 8012, "\u13d3\u13d5\u13f2\u13b2\u13cd\u13a8\u13cd\u13d7": 8013, "\u13a9\u13cd\u13d5\u13b8\u13d7\u13f1": 8014, "\u13b2\u13cd\u13aa": 8015, "\u2581\u13a4\u13c2\u13b7\u13e4\u13c3": 8016, "\u2581\u13a4\u13c2\u13be\u13d7\u13c5": 8017, "\u2581\u13d7\u13a6\u13d3\u13a8\u13f3\u13af": 8018, "\u2581\u13da\u13be\u13e0\u13af\u13cd": 8019, "\u13af\u13cd\u13d4\u13c1": 8020, "\u13c5\u13cc": 8021, "\u2581\u13d4\u13b4": 8022, "le": 8023, "\u13f4\u13d7\u13f1": 8024, "\u2581\u13a4\u13be\u13aa\u13b8": 8025, "\u2581\u13a1\u13e5\u13be\u13f0": 8026, "\u2581\u13e5\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 8027, "\u2581\u13a6\u13b7\u13b6": 8028, "\u13f0\u13b5\u13af\u13cd\u13d7": 8029, "\u2581\u13e5\u13ed": 8030, "\u13a6\u13b8\u13a2": 8031, "\u13b2\u13af": 8032, "\u2581\u13d3\u13a9\u13ef": 8033, "\u2581\u13a0\u13d3\u13c2": 8034, "\u2581\u13d7\u13aa\u13ea\u13b6": 8035, "\u2581\u13a8\u13e5\u13ef\u13c5\u13d7": 8036, "\u13b3\u13c5\u13d3\u13d5": 8037, "\u2581\u13a4\u13b4\u13d7": 8038, "\u13c1\u13df\u13f4\u13d2": 8039, "\u13c2\u13a8\u13e5\u13ea\u13ce\u13b4": 8040, "\u13e3\u13a6\u13b8": 8041, "\u13c8\u13f4\u13a1": 8042, "\u13b5\u13cd\u13c6\u13d7": 8043, "\u13b5\u13cf\u13c2": 8044, "\u13b4\u13b2": 8045, "\u2581\u13d7\u13a6\u13b5": 8046, "\u2581\u13eb\u13b7\u13e5": 8047, "\u2581\u13f1\u13a6\u13e5": 8048, "\u13d3\u13c5\u13db\u13a2": 8049, "ia": 8050, "\u13c5\u13c1": 8051, "\u13da\u13e9\u13c2\u13a6\u13b8": 8052, "\u13d4\u13f2\u13af\u13b2": 8053, "\u2581\u13a6\u13b3\u13c5\u13db": 8054, "\u13b6\u13d4\u13c5": 8055, "\u2581\u13d3\u13c5": 8056, "\u13d3\u13cd\u13a9": 8057, "\u2581\u13a0\u13a9\u13c3\u13ae": 8058, "\u13a6\u13d4\u13b2\u13cd\u13d7\u13f1": 8059, "\u13cd\u13a6\u13c5\u13e4\u13ae\u13cd\u13d7": 8060, "\u13e4\u13b4\u13cd\u13d7": 8061, "\u2581\u13a4\u13e4\u13ea": 8062, "\u13ea\u13e5": 8063, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d4\u13c5": 8064, "\u2581\u13c6\u13c2": 8065, "\u2581\u13ac\u13e9\u13c1": 8066, "\u2581\u13e7\u13ed\u13aa": 8067, "\u2581\u13d4\u13ab\u13f4": 8068, "\u13eb\u13cd\u13aa": 8069, "\u13cd\u13da\u13a2\u13cd\u13d7": 8070, "\u2581\u13a3\u13c2\u13a9": 8071, "\u2581\u13eb\u13c4": 8072, "\u2581\u13a4\u13e3\u13d8\u13c2\u13c9": 8073, "\u13d7\u13d2\u13cd\u13d7\u13f1": 8074, "\u2581\u13e9\u13aa\u13e9\u13db": 8075, "\u13c5\u13d9\u13d7": 8076, "\u13be\u13db\u13c1\u13b0\u13a2": 8077, "\u13a9\u13f3": 8078, "\u2581\u13a2\u13e5\u13f0": 8079, "\u13bf\u13a2\u13f3": 8080, "\u13b5\u13ae\u13b5\u13cd\u13d7\u13f1": 8081, "\u13a8\u13e5\u13be\u13cc\u13a2": 8082, "\u13e3\u13aa\u13e9\u13db\u13d7\u13f1": 8083, "\u13b2\u13cd\u13d7": 8084, "\u2581\u13a4\u13ec\u13af\u13f3\u13af": 8085, "\u2581\u13da\u13c2\u13a8": 8086, "\u13b5\u13cd\u13a6\u13b8": 8087, "\u13e5\u13c5\u13b5": 8088, "\u2581\u13a4\u13ea\u13a7\u13c1": 8089, "\u13f2\u13b0\u13d2": 8090, "\u2581\u13a6\u13d9\u13a9": 8091, "\u13be\u13eb\u13db\u13ae": 8092, "\u2581\u13e7\u13d3\u13b4\u13c5": 8093, "\u2581\u13d3\u13ad": 8094, "\u13aa\u13cd\u13d3\u13ef": 8095, "\u2581\u13ed\u13d7\u13c5": 8096, "\u13b5\u13cd\u13a8\u13cd\u13d7": 8097, "\u13a6\u13be\u13c5\u13aa": 8098, "\u13e5\u13cd\u13d5\u13b5\u13cd\u13ac": 8099, "\u13e5\u13aa\u13e9\u13d7\u13ad": 8100, "\u2581\u13a0\u13e5\u13aa": 8101, "\u13c2\u13f3": 8102, "\u13d8\u13cc": 8103, "\u2581\u13a4\u13c2\u13ef": 8104, "\u13eb\u13cd\u13aa\u13a2": 8105, "\u2581\u13e6\u13af\u13cd": 8106, "\u13a7\u13b2\u13a6": 8107, "\u2581\u13a8\u13af": 8108, "\u13cd\u13d3\u13e9\u13d5\u13c5": 8109, "\u13c5\u13db\u13be": 8110, "\u2581\u13c5\u13e9\u13d3\u13b4\u13a2": 8111, "\u2581\u13a2\u13ef\u13be\u13db\u13c1": 8112, "\u2581\u13a0\u13d3\u13f0": 8113, "\u2581\u13a4\u13dd": 8114, "\u2581\u13a4\u13c5\u13a2\u13cd\u13d7": 8115, "\u2581\u13a6\u13c7\u13c5": 8116, "\u13c6\u13e4\u13b5": 8117, "\u13af\u13cd\u13d9\u13d7\u13f1": 8118, "\u2581\u13a2\u13f3\u13af": 8119, "\u2581\u13a0\u13c2\u13b4": 8120, "\u13aa\u13a5": 8121, "\u13e5\u13c3\u13af\u13ce\u13b8": 8122, "\u13d1\u13ef\u13a9": 8123, "\u2581\u13a4\u13c1\u13c9\u13e4": 8124, "\u13ac\u13e9\u13b6\u13d7": 8125, "\u13bf\u13a5\u13be": 8126, "\u13be\u13e3\u13a5": 8127, "\u13d3\u13e8\u13ef\u13cd\u13d7": 8128, "\u13a1\u13ae\u13cd\u13d7": 8129, "\u13db\u13c5\u13a2\u13cd\u13d4\u13c5\u13a9": 8130, "\u13be\u13d7\u13cd\u13aa\u13a2": 8131, "\u2581\u13a0\u13a6\u13de": 8132, "\u2581\u13eb\u13ac\u13a9": 8133, "\u13aa\u13b5\u13f0\u13cd\u13a8\u13cd\u13d7": 8134, "\u13cd\u13d8\u13f0": 8135, "\u13cc\u13d9": 8136, "\u13e9\u13d8\u13cd\u13a8\u13cd\u13d7": 8137, "\u2581\u13a6\u13f4": 8138, "\u13c5\u13ec\u13d7": 8139, "\u13c3\u13af\u13ae": 8140, "\u13aa\u13b5\u13f0\u13cd\u13aa\u13a2": 8141, "\u2581\u13a0\u13c2\u13b7": 8142, "\u2581\u13a4\u13c2\u13e5\u13b8": 8143, "\u13f2\u13e2\u13be\u13c1": 8144, "\u13d7\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7": 8145, "\u13cf\u13d4\u13d7": 8146, "\u2581\u13a4\u13be\u13d7\u13d3": 8147, "\u13af\u13b0\u13a2": 8148, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d3\u13c1": 8149, "\u2581\u13ed\u13d5": 8150, "\u13b5\u13cd\u13d3\u13f4": 8151, "\u13c2\u13d9\u13b2\u13a2": 8152, "\u2581\u13d3\u13be\u13d3\u13c5": 8153, "\u13e5\u13c5\u13cd\u13d7": 8154, "\u13c2\u13e3\u13d4": 8155, "\u13d3\u13c5\u13d8\u13d0": 8156, "\u13a5\u13cd\u13ac\u13a2": 8157, "\u13a6\u13b8\u13c9\u13d7\u13f3": 8158, "\u13c2\u13d9\u13b2": 8159, "\u2581\u13d9\u13db\u13c2": 8160, "\u13d3\u13d3\u13b4\u13d3": 8161, "\u13be\u13dd\u13a0": 8162, "as": 8163, "\u2581\u13d7\u13cd\u13a9\u13ef": 8164, "\u13a8\u13ce\u13cd\u13d7": 8165, "\u2581\u13db\u13e3": 8166, "\u2581\u13a0\u13cc\u13b9\u13d7": 8167, "\u2581\u13e8\u13d9\u13d7": 8168, "\u2581\u13ef\u13f0": 8169, "\u13d9\u13e5\u13e9\u13db\u13b2\u13a9": 8170, "\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5\u13af": 8171, "\u13d8\u13c5": 8172, "\u13ef\u13c5\u13b2\u13ad": 8173, "\u13be\u13bb": 8174, "\u13cf\u13c1\u13a9": 8175, "\u2581\u13d3\u13be\u13db": 8176, "\u13cd\u13d8\u13f0\u13ac\u13a2": 8177, "\u2581\u13d7\u13e3\u13b6": 8178, "\u2581\u13e9\u13d7": 8179, "\u2581\u13ef\u13a6": 8180, "\u2581\u13f1\u13da\u13c1": 8181, "\u2581\u13d5\u13e3\u13b5": 8182, "\u2581\u13f4\u13a6\u13f0": 8183, "\u2581\u13a4\u13d4\u13b6": 8184, "\u2581\u13a0\u13eb\u13d2": 8185, "\u2581\u13a0\u13e9": 8186, "\u13cd\u13a6\u13cd\u13aa": 8187, "\u13a0\u13c2": 8188, "\u13ef\u13eb\u13cd\u13a8\u13cd\u13d7": 8189, "\u2581\u13a2\u13a4\u13c1\u13c5": 8190, "\u2581\u13a2\u13e5\u13a8\u13f3\u13af": 8191, "\u2581\u13d9\u13d3\u13d3": 8192, "\u2581\u13d3\u13b4\u13c5": 8193, "\u13cd\u13c8\u13d7": 8194, "\u13a4\u13d9\u13d3": 8195, "\u13e9\u13db\u13af\u13b5": 8196, "\u2581\u13d7\u13a9\u13a6\u13a8": 8197, "\u13cd\u13d3\u13e9\u13db\u13db": 8198, "\u2581\u13a0\u13be\u13c1\u13b7\u13a9": 8199, "\u13c5\u13b2\u13ad": 8200, "\u13a3\u13b5": 8201, "\u13c1\u13e3": 8202, "\u2581\u13f1\u13db": 8203, "\u13e5\u13be\u13dd\u13a2": 8204, "\u13b3\u13d7\u13d3\u13cd\u13d7\u13f1": 8205, "\u13b8\u13c1": 8206, "\u13b7\u13e4\u13b5": 8207, "\u13c3\u13f4\u13b5\u13cd": 8208, "\u2581\u13ab\u13e2": 8209, "\u13d0\u13f4\u13a2": 8210, "\u13c2\u13c2\u13cc\u13c1\u13a2": 8211, "\u2581\u13a0\u13f4\u13a9": 8212, "\u2581\u13e5\u13da\u13be": 8213, "\u13a9\u13b3\u13e9": 8214, "\u13b3\u13cd\u13d9\u13d7": 8215, "\u13b6\u13a8\u13d2\u13a2": 8216, "\u13cf\u13c5": 8217, "\u2581\u13a4\u13c2\u13ad": 8218, "\u2581\u13e7\u13ed": 8219, "\u13a6\u13d7\u13d4": 8220, "\u2581\u13be\u13be\u13b5\u13cd": 8221, "\u2581\u13a2\u13e3\u13db": 8222, "\u2581\u13a4\u13da\u13d2": 8223, "\u2581\u13d5\u13a6\u13c1": 8224, "\u2581\u13f1\u13e8\u13ef": 8225, "\u2581\u13a4\u13c1\u13d9": 8226, "\u13d8\u13c1\u13aa": 8227, "\u2581\u13a0\u13c6\u13da": 8228, "\u13c1\u13a8": 8229, "\u13cf\u13cd\u13a8": 8230, "\u13a6\u13cc\u13ef\u13cd\u13d7\u13d5\u13a9": 8231, "\u13b5\u13a5\u13c2\u13b4": 8232, "\u13e4\u13b0": 8233, "\u2581\u13e7\u13c2\u13ef": 8234, "\u13d3\u13c1\u13b2\u13a2": 8235, "\u13c2\u13b7\u13e3": 8236, "\u2581\u13e8\u13d4\u13c5": 8237, "\u2581\u13d3\u13a7": 8238, "\u2581\u13d5\u13e8\u13ef": 8239, "\u2581\u13a6\u13e5\u13c3\u13cd": 8240, "\u13d2\u13c2\u13cd\u13d7\u13f1": 8241, "\u13be\u13e3\u13a1\u13a2": 8242, "\u13f2\u13de\u13af": 8243, "\u2581\u13a4\u13b5\u13d8": 8244, "\u13d3\u13b4\u13cd\u13a8\u13cd\u13d7": 8245, "\u2581\u13d7\u13a7\u13c3\u13ae": 8246, "\u2581\u13e4\u13b3": 8247, "\u2581\u13db\u13ac": 8248, "\u2581\u13a6\u13c4": 8249, "\u2581\u13a0\u13cf\u13be\u13cc\u13c5": 8250, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d4": 8251, "\u13d5\u13cd\u13a9": 8252, "\u2581\u13d7\u13aa\u13f1": 8253, "\u2581\u13a0\u13e9\u13d4": 8254, "\u13cd\u13d4\u13f4": 8255, "\u2581\u13ad\u13a6\u13d4": 8256, "\u13a9\u13b8\u13d7": 8257, "\u2581\u13a0\u13d7\u13d4\u13cd": 8258, "\u2581\u13e5\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7": 8259, "\u13da\u13d3": 8260, "\u2581\u13d9\u13d3\u13a6\u13e5": 8261, "\u13af\u13f3\u13b2\u13a6": 8262, "\u2581\u13a4\u13c2\u13c1\u13d7": 8263, "\u13a7\u13bf": 8264, "\u2581\u13af\u13cd\u13c6": 8265, "\u13be\u13e9\u13db": 8266, "\u2581\u13a3\u13a9\u13d9": 8267, "\u13c5\u13d3\u13d7\u13cd\u13d7\u13f1": 8268, "\u13ce\u13b2": 8269, "\u13a9\u13f0\u13c3": 8270, "\u13d3\u13e1\u13d7\u13cd\u13aa\u13a2": 8271, "\u2581\u13e7\u13e2\u13eb": 8272, "\u2581\u13f1\u13e3\u13c1": 8273, "\u13c2\u13be\u13f0\u13cd\u13ac": 8274, "\u2581\u13d7\u13a6\u13f0": 8275, "\u2581\u13a6\u13e3\u13c4\u13b5": 8276, "\u2581\u13d3\u13cd\u13c6": 8277, "\u13bf\u13ec": 8278, "\u2581\u13a0\u13a9\u13f0": 8279, "\u13a9\u13b7\u13af\u13cd\u13d7\u13f1": 8280, "\u2581\u13d5\u13e3\u13d3\u13e0": 8281, "\u2581\u13c2\u13e8\u13ea\u13ce": 8282, "\u13b5\u13f0\u13a2\u13b6": 8283, "\u2581\u13a1\u13e6": 8284, "\u2581\u13a4\u13be\u13d3\u13df\u13cc": 8285, "\u13f2\u13b2\u13cd\u13a9": 8286, "\u2581\u13e6\u13cd\u13aa": 8287, "\u13be\u13d5\u13b6\u13c6\u13cd\u13d7": 8288, "\u13d6\u13b8\u13ae\u13cd\u13ac": 8289, "\u2581\u13d7\u13bb": 8290, "\u13d7\u13c5\u13d7": 8291, "\u2581\u13a4\u13d4\u13b7\u13a9\u13cd": 8292, "\u2581\u13a3\u13e8\u13d7": 8293, "\u2581\u13a4\u13cd\u13c6\u13c3\u13f4": 8294, "\u13dd\u13c1\u13a2": 8295, "\u2581\u13da\u13c2\u13e3": 8296, "\u2581\u13a0\u13e5\u13b8\u13c9\u13d9\u13d7": 8297, "\u13e3\u13ef": 8298, "\u13ae\u13d7\u13f1": 8299, "\u2581\u13e3\u13f2": 8300, "\u2581\u13f1\u13c4": 8301, "\u13be\u13d3\u13d7\u13cd\u13aa": 8302, "\u13d3\u13d3": 8303, "\u2581\u13cd\u13a9\u13f2\u13ce": 8304, "\u2581\u13a4\u13ec\u13e2\u13c5\u13c5": 8305, "\u2581\u13f1\u13d3\u13c6": 8306, "\u2581\u13a4\u13ec\u13af\u13e8": 8307, "\u2581\u13c5\u13e9\u13cd\u13d5": 8308, "\u13b8\u13c9\u13db": 8309, "\u13b5\u13cd\u13d4\u13c1\u13a2": 8310, "\u2581\u13a0\u13be\u13d7\u13d2\u13af": 8311, "\u13b4\u13c2\u13d3\u13cd\u13d7\u13f1": 8312, "\u13b5\u13f1\u13b6\u13b8": 8313, "\u13a8\u13b3\u13cd\u13d9\u13d7": 8314, "\u13e9\u13af\u13cd\u13d7": 8315, "\u13f2\u13b2\u13cd\u13a8\u13cd\u13d7": 8316, "\u2581\u13be\u13c6\u13b5\u13cd\u13d3\u13c1\u13b8": 8317, "\u13a6\u13d3\u13c5\u13d3\u13d7": 8318, "\u13c1\u13e4\u13b4\u13a2": 8319, "\u13d7\u13a7": 8320, "\u13a7\u13ad\u13f2\u13d4": 8321, "\u13ba": 8322, "\u2581\u13f1\u13e9": 8323, "\u13cd\u13a6\u13f0\u13ac\u13cd\u13d4": 8324, "\u13ac\u13d7\u13cd\u13a8\u13a2": 8325, "\u2581\u13e5\u13c2\u13a6\u13b5\u13cd\u13d7": 8326, "\u13cd\u13d4\u13c1\u13cd\u13d7": 8327, "\u13e9\u13cd\u13a6": 8328, "\u13ba\u13b5": 8329, "\u2581\u13a2\u13d3\u13d9\u13b4\u13b0\u13af": 8330, "\u2581\u13f1\u13d3\u13e5": 8331, "\u13e8\u13ef": 8332, "\u13d3\u13a6\u13b6\u13d0\u13c2": 8333, "\u13ef\u13c5\u13a1\u13b5": 8334, "\u13d7\u13a8\u13b4": 8335, "\u13b0\u13c2": 8336, "\u13cd\u13d4\u13c5\u13be": 8337, "\u13ae\u13b5\u13a0\u13cd\u13aa": 8338, "\u2581\u13d7\u13cc": 8339, "\u13a6\u13b5\u13a1\u13b5": 8340, "\u2581\u13c2\u13d5\u13a6": 8341, "\u13a6\u13d4\u13b2\u13a9": 8342, "\u2581\u13a6\u13b8\u13c9\u13d7\u13f3\u13f0\u13c3": 8343, "\u13b5\u13ec\u13e4": 8344, "\u13d5\u13d3\u13d3\u13aa\u13b2\u13f3": 8345, "\u13a9\u13a6\u13a8\u13cd\u13db\u13f1": 8346, "\u13f2\u13a2\u13ce\u13b4": 8347, "\u13a0\u13e1\u13d7\u13cd\u13a9": 8348, "\u2581\u13a4\u13c2\u13b6\u13ce": 8349, "\u2581\u13a4\u13c5\u13cd\u13a6\u13b4": 8350, "\u2581\u13a4\u13b5\u13cd\u13aa\u13b8\u13d4\u13c1": 8351, "\u2581\u13a0\u13a9\u13aa\u13c1\u13b8": 8352, "\u2581\u13da\u13c2\u13a7\u13b2": 8353, "\u13d7\u13a6\u13aa\u13d7\u13f1": 8354, "\u2581\u13a4\u13d3\u13d9\u13ce\u13b4": 8355, "\u2581\u13d3\u13be\u13d3\u13c5\u13d6\u13cd\u13ac": 8356, "\u13da\u13ea\u13a7\u13c1\u13a2": 8357, "\u2581\u13a0\u13b5\u13ac": 8358, "\u2581\u13f3\u13c2\u13aa\u13ae": 8359, "\u13a6\u13be\u13c4\u13aa\u13eb\u13cd\u13aa": 8360, "\u2581\u13a2\u13e8\u13ec\u13c1\u13d4\u13c5": 8361, "\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 8362, "\u2581\u13a2\u13ac\u13ec": 8363, "\u2581\u13e9\u13c2\u13a6\u13db": 8364, "\u2581\u13eb\u13da\u13f3\u13aa\u13db": 8365, "\u13e1\u13d4\u13c5": 8366, "\u13aa\u13b5\u13f0\u13cd\u13ac\u13a2": 8367, "\u13a0\u13b3\u13d1\u13b6": 8368, "\u13a4\u13ec\u13da\u13e8": 8369, "\u13a4\u13d3\u13c5\u13d2": 8370, "\u13e3\u13c4\u13cf": 8371, "\u13e7\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 8372, "\u13ac\u13c2\u13f3\u13c9": 8373, "\u2581\u13a2\u13e3\u13d3\u13c1\u13df\u13f4\u13cf\u13d2": 8374, "\u2581\u13e5\u13a6\u13b7\u13aa": 8375, "\u2581\u13a0\u13be\u13a2\u13ce": 8376, "\u13e7\u13d9\u13a2\u13db": 8377, "\u2581\u13a0\u13cb\u13d4\u13c5": 8378, "\u2581\u13da\u13c2\u13c2\u13f4\u13ae": 8379, "\u13e7\u13ea\u13e5": 8380, "\u2581\u13a0\u13d0\u13e2\u13a2\u13cd\u13d7\u13cd\u13ac": 8381, "\u2581\u13a0\u13c2\u13a6\u13d4\u13ae": 8382, "\u2581\u13a4\u13d4\u13b3\u13ec\u13cd\u13ac": 8383, "\u13d7\u13c2\u13a6\u13d8\u13ef": 8384, "\u2581\u13a4\u13c2\u13c2\u13ac\u13ce\u13b2": 8385, "\u13a1\u13b3\u13c2": 8386, "\u13a3\u13cf\u13c9\u13cd\u13aa": 8387, "\u2581\u13da\u13ea\u13a7\u13c1\u13b4": 8388, "\u2581\u13c2\u13da\u13c2\u13ea\u13ce\u13b4": 8389, "\u13aa\u13ea\u13b4": 8390, "\u2581\u13d5\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 8391, "\u2581\u13e3\u13be\u13d7": 8392, "\u13a4\u13d4\u13b7\u13a9\u13cd\u13a9": 8393, "\u2581\u13e5\u13c4\u13b5\u13cd\u13d4\u13c1": 8394, "\u2581\u13d3\u13a9\u13cf\u13b3\u13db": 8395, "\u2581\u13a4\u13be\u13a6\u13d9\u13cd\u13d5": 8396, "\u2581\u13d7\u13e6\u13e2": 8397, "\u2581\u13d3\u13ab": 8398, "\u2581\u13a4\u13c1\u13b8\u13d4\u13c1": 8399, "\u13c2\u13e8\u13c1\u13cd\u13d7": 8400, "\u13a0\u13ce\u13d7": 8401, "\u2581\u13da\u13e0\u13f1\u13b4": 8402, "\u2581\u13c4\u13d5\u13d8\u13f4\u13ae": 8403, "\u13aa\u13ea\u13b5": 8404, "\u13aa\u13ea\u13b8\u13a2": 8405, "\u2581\u13c2\u13a8\u13ac\u13c1\u13b8": 8406, "\u2581\u13ac\u13e9\u13cd\u13d3": 8407, "\u13b5\u13cd\u13d9\u13d4\u13c5": 8408, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13d7": 8409, "\u13a0\u13a8\u13f4": 8410, "\u2581\u13da\u13eb\u13de\u13eb\u13d2": 8411, "\u2581\u13a0\u13df\u13cd\u13db": 8412, "\u2581\u13c2\u13ac\u13e9\u13ea\u13ce\u13b4": 8413, "\u13c2\u13cd\u13da\u13c1": 8414, "\u2581\u13a2\u13e5\u13aa\u13b2": 8415, "\u13e5\u13c5\u13ec\u13d7": 8416, "\u2581\u13d5\u13ab\u13aa\u13d3\u13c1": 8417, "\u13e3\u13c1\u13b3": 8418, "\u13a6\u13b5\u13c9\u13a9": 8419, "\u13a3\u13af\u13cd\u13d9\u13d7": 8420, "\u2581\u13e7\u13ef": 8421, "\u13a4\u13db\u13c1\u13a2": 8422, "\u2581\u13a0\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac": 8423, "\u13be\u13d7\u13d4\u13cd\u13d7": 8424, "\u2581\u13a4\u13c2\u13da\u13b2": 8425, "\u2581\u13ea\u13ae": 8426, "\u2581\u13e5\u13cd\u13da\u13c2\u13a9\u13cd\u13d7": 8427, "\u2581\u13d5\u13e5\u13b3\u13eb": 8428, "\u2581\u13da\u13c2\u13a7\u13c1": 8429, "\u2581\u13be\u13c6\u13db\u13c5": 8430, "\u13c2\u13ec\u13c2": 8431, "\u2581\u13a4\u13c2\u13c7\u13d3\u13b8": 8432, "\u2581\u13a6\u13c3\u13aa": 8433, "\u2581\u13da\u13ec\u13e2\u13c1": 8434, "\u13e5\u13b8\u13c9\u13d4\u13c5": 8435, "\u2581\u13a0\u13d2\u13db": 8436, "\u2581\u13e9\u13a9\u13b6\u13d2": 8437, "\u13a6\u13ea\u13cd\u13ac\u13a9": 8438, "\u2581\u13a4\u13c1\u13b2": 8439, "\u2581\u13d3\u13c2\u13d9\u13ac": 8440, "\u2581\u13da\u13ea\u13f2\u13c1": 8441, "\u2581\u13e5\u13c4\u13ea\u13d2": 8442, "\u2581\u13da\u13c2\u13b3\u13eb\u13e8": 8443, "\u2581\u13d3\u13a9\u13aa\u13b2": 8444, "\u13a9\u13cc": 8445, "\u13ac\u13c2\u13a8\u13d2": 8446, "\u2581\u13a4\u13ee": 8447, "\u13d7\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 8448, "\u13af\u13d9\u13b2": 8449, "\u13c5\u13aa\u13e8": 8450, "\u2581\u13e3\u13c5": 8451, "\u13f2\u13c2": 8452, "\u2581\u13a4\u13c3\u13af\u13f3\u13d7": 8453, "\u13c1\u13a2\u13cd\u13d4\u13c1": 8454, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d4\u13c1": 8455, "\u13d3\u13d9\u13b5\u13cd\u13d7\u13ad": 8456, "\u13c2\u13aa\u13b5\u13f0\u13a5": 8457, "\u2581\u13a0\u13db\u13cd\u13a8": 8458, "\u2581\u13e7\u13be\u13d3\u13e1": 8459, "\u13a6\u13d3\u13a1\u13a2": 8460, "\u13ef\u13eb\u13cd\u13d7": 8461, "\u13af\u13c4\u13aa\u13a2": 8462, "\u2581\u13a4\u13be\u13e0\u13e4": 8463, "\u2581\u13a0\u13e7": 8464, "\u13ea\u13ce\u13a2": 8465, "\u2581\u13a4\u13c1\u13b5\u13d2": 8466, "\u2581\u13d7\u13c2\u13b3\u13eb": 8467, "\u13a9\u13d3\u13df": 8468, "\u2581\u13eb\u13ac\u13c6": 8469, "\u13ab\u13c8": 8470, "\u2581\u13a2\u13a6\u13af": 8471, "\u13f2\u13b1\u13ce": 8472, "\u13a6\u13cd\u13a6\u13c2": 8473, "\u2581\u13ed\u13c2\u13f4\u13b8": 8474, "\u2581\u13c2\u13e3\u13b5\u13cd\u13d4\u13c5": 8475, "\u2581\u13ed\u13c2\u13c3\u13c1": 8476, "\u13b6\u13c4\u13ae\u13d7\u13f1": 8477, "\u13c2\u13d0\u13e2\u13a2\u13cd\u13d9\u13d7": 8478, "\u2581\u13db\u13e5": 8479, "\u13c0\u13a2": 8480, "\u13c1\u13cd\u13d3\u13b3": 8481, "\u2581\u13c4\u13c5\u13c1\u13b4": 8482, "\u13cd\u13d3\u13c1\u13b4": 8483, "\u2581\u13a0\u13c9\u13b8": 8484, "\u13f2\u13b1\u13d2\u13af": 8485, "\u13cf\u13d3\u13cd\u13d7": 8486, "\u13c5\u13e8\u13a9": 8487, "\u2581\u13f1\u13da\u13b8\u13eb\u13cd\u13d3\u13c1": 8488, "\u13b9\u13b5": 8489, "\u13c6\u13d5": 8490, "\u2581\u13d7\u13ac\u13e9\u13c1\u13b6": 8491, "\u2581\u13a6\u13be\u13c4\u13aa\u13e5\u13b8": 8492, "\u2581\u13f1\u13e5\u13aa\u13e9\u13d8": 8493, "\u13df\u13cc": 8494, "\u13d8\u13f3": 8495, "\u13c2\u13ea\u13cd\u13ac": 8496, "\u13a1\u13c6": 8497, "\u2581\u13a4\u13be\u13d8\u13c5\u13cd\u13d7": 8498, "\u2581\u13f1\u13e3\u13da\u13b5": 8499, "\u2581\u13e7\u13f3\u13aa": 8500, "\u2581\u13a1\u13a9\u13c1\u13b8": 8501, "\u2581\u13be\u13ce\u13b5": 8502, "\u13c3\u13af\u13f0": 8503, "\u13ea\u13b3\u13c5\u13af": 8504, "\u2581\u13ed\u13c2\u13b7\u13af\u13cd\u13d7": 8505, "\u13a0\u13c6\u13da\u13b5": 8506, "\u2581\u13a2\u13f3\u13c2\u13ea\u13cd\u13d7": 8507, "\u2581\u13e7\u13c4\u13aa\u13d9\u13d7": 8508, "\u2581\u13a0\u13c6\u13b5\u13ae\u13b5\u13cd\u13d7": 8509, "\u2581\u13a4\u13be\u13d3\u13e1": 8510, "\u2581\u13a2\u13e3\u13d3\u13e4\u13b5": 8511, "\u2581\u13a2\u13f3\u13ea\u13c5\u13cd": 8512, "\u2581\u13d7\u13a8\u13e5\u13a2\u13cd\u13d7": 8513, "\u2581\u13eb\u13e8\u13b7\u13e4\u13d7": 8514, "\u2581\u13c7\u13d7\u13c2": 8515, "\u2581\u13a3\u13a6\u13b5\u13cd\u13d3\u13f4\u13d7": 8516, "\u13b8\u13a2\u13cd\u13d7": 8517, "\u2581\u13e5\u13c4\u13b5\u13cd\u13d4": 8518, "\u2581\u13a4\u13be\u13c4\u13aa\u13eb\u13cd\u13d7": 8519, "\u2581\u13d7\u13a6\u13b3\u13eb\u13a2\u13cd\u13d7": 8520, "\u13c1\u13b6\u13d9": 8521, "\u13e9\u13d9\u13af\u13ef\u13db": 8522, "\u2581\u13d7\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7": 8523, "\u2581\u13a0\u13f0\u13d9\u13b3": 8524, "\u13ef\u13d8\u13c3\u13ae\u13b8": 8525, "\u2581\u13e7\u13cd\u13c6\u13c5": 8526, "\u2581\u13a0\u13e5\u13d9\u13b5\u13cd\u13d7": 8527, "\u13a8\u13f3\u13e3": 8528, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d9\u13d7": 8529, "\u13f2\u13a6\u13db\u13c1\u13d7": 8530, "\u13c8\u13f1": 8531, "\u13cd\u13da\u13a2\u13ce": 8532, "\u13e3\u13b3\u13c1": 8533, "\u2581\u13a0\u13cd\u13a6\u13a2\u13ae": 8534, "\u2581\u13a2\u13e3\u13db\u13a6\u13c5": 8535, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13ae": 8536, "\u13e1\u13a6": 8537, "\u2581\u13a0\u13eb\u13be\u13a8": 8538, "\u13b4\u13b2\u13a6": 8539, "\u2581\u13a0\u13cd\u13c6\u13b8\u13b2": 8540, "\u13c3\u13ae\u13ae\u13b4": 8541, "\u2581\u13a8\u13e3\u13b5": 8542, "\u13a8\u13c5\u13d5": 8543, "\u13b4\u13ac": 8544, "\u13bf\u13cd\u13d5\u13e2": 8545, "\u2581\u13a0\u13c2\u13a9\u13b5\u13f2": 8546, "\u13be\u13db\u13d7\u13f1": 8547, "\u13c4\u13e9\u13a2\u13f4": 8548, "\u2581\u13be\u13c6\u13b5\u13cd\u13d4\u13c1": 8549, "\u2581\u13d5\u13be\u13d3\u13aa": 8550, "\u13b5\u13cd\u13d3\u13f4\u13be\u13c1\u13d7": 8551, "\u2581\u13a2\u13e3\u13db\u13aa\u13d7": 8552, "\u13c1\u13d3\u13e5\u13db": 8553, "\u13a7\u13bf\u13e9\u13d7\u13d3": 8554, "\u2581\u13c4\u13df\u13c2\u13ac": 8555, "\u13dd\u13ea\u13af": 8556, "\u13dc\u13cf\u13db\u13a1\u13b2\u13be": 8557, "\u13a3\u13cd\u13db": 8558, "\u2581\u13ae\u13b2": 8559, "\u13a8\u13e2\u13d4\u13c5\u13ad": 8560, "\u13a6\u13db\u13c2\u13d9\u13af\u13c9": 8561, "\u13b5\u13cd\u13d4\u13c1\u13cd\u13d7": 8562, "\u13c5\u13cd\u13d3\u13d5\u13b4": 8563, "\u13c5\u13b5\u13f0\u13d3": 8564, "in": 8565, "\u13d7\u13cc\u13d3\u13d5": 8566, "\u13e3\u13b5\u13a1\u13b5\u13e4\u13d7": 8567, "\u2581\u13d5\u13ac\u13a6\u13bf\u13e9\u13d7\u13d9": 8568, "\u13aa\u13c5\u13cd\u13d3\u13b5": 8569, "\u13d3\u13f2\u13b5\u13cd\u13d7": 8570, "\u13a4\u13cd\u13d5\u13ce\u13b8\u13af": 8571, "\u13b5\u13cf\u13be\u13af\u13cd\u13db\u13be": 8572, "\u2581\u13a4\u13d3\u13f4\u13ce": 8573, "\u2581\u13e9\u13be\u13a6\u13b3": 8574, "\u13ad\u13c4\u13e9": 8575, "aire": 8576, "ichael": 8577, "reland": 8578, "\u13a6\u13e8\u13e9\u13cd\u13d9\u13d7\u13f1": 8579, "\u13b6\u13c4\u13b2\u13b5": 8580, "\u13c2\u13cd\u13cb\u13a6": 8581, "\u13cd\u13d5\u13b5\u13cc\u13d5\u13d2\u13ad": 8582, "\u13d3\u13c2\u13f2\u13b0\u13cd\u13aa": 8583, "\u13d3\u13c5\u13d6\u13d4\u13c2": 8584, "\u13d3\u13d3\u13be\u13c1\u13b6\u13c2\u13a8": 8585, "\u13d4\u13d5\u13b6\u13b0\u13cf": 8586, "\u13da\u13b8\u13a1\u13b8\u13a9": 8587, "\u13e9\u13db\u13b1\u13a6": 8588, "\u2581\u13a0\u13a9\u13f2\u13b1\u13cf\u13d7": 8589, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13c2\u13d9\u13ae": 8590, "\u2581\u13a0\u13c2\u13ef\u13d9\u13af\u13af": 8591, "\u2581\u13a0\u13cd\u13c8\u13c5": 8592, "\u2581\u13a0\u13e5\u13c2\u13cc\u13b2": 8593, "\u2581\u13a1\u13e3\u13c1\u13b3\u13c1\u13b8": 8594, "\u2581\u13a2\u13a1\u13cd\u13d5\u13b5\u13cc\u13d5": 8595, "\u2581\u13a2\u13cd\u13d9\u13ce\u13b8\u13ad": 8596, "\u2581\u13a2\u13e8\u13f0\u13b3\u13d7\u13d9\u13b8": 8597, "\u2581\u13a2\u13f0\u13ac\u13c1\u13b8\u13af": 8598, "\u2581\u13a4\u13a6\u13d1\u13b2\u13a2": 8599, "\u2581\u13a4\u13b3\u13cd\u13da\u13d2": 8600, "\u2581\u13a4\u13be\u13d3\u13c4\u13f4\u13d7": 8601, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b4": 8602, "\u2581\u13a4\u13c1\u13c4\u13b3\u13cd\u13d4\u13c1\u13a2": 8603, "\u2581\u13a4\u13c2\u13d4\u13b3\u13ec\u13d2\u13a9": 8604, "\u2581\u13a4\u13c4\u13d6\u13ce": 8605, "\u2581\u13a4\u13cd\u13ab\u13d3\u13c1\u13a6\u13b8": 8606, "\u2581\u13a4\u13ed\u13d3\u13b8\u13e4": 8607, "\u2581\u13a6\u13d6\u13cc\u13d7": 8608, "\u2581\u13a8\u13e4\u13b3\u13d7\u13d9\u13ae\u13cd\u13d7": 8609, "\u2581\u13ac\u13e9\u13c4\u13b8\u13d7": 8610, "\u2581\u13ac\u13e9\u13d3\u13e1\u13eb\u13cd\u13d4\u13c5\u13a9": 8611, "\u2581\u13ac\u13ec\u13cd\u13d4\u13c5\u13af": 8612, "\u2581\u13ad\u13d3\u13a6\u13d6\u13d9\u13a2\u13cd\u13a8\u13cd\u13d7": 8613, "\u2581\u13ae\u13cf\u13a6\u13ef": 8614, "\u2581\u13c2\u13a0\u13c2\u13ea\u13ad": 8615, "\u2581\u13c2\u13a6\u13b8\u13c9\u13d7\u13cd\u13ac\u13be": 8616, "\u2581\u13c2\u13a7\u13ea\u13cd\u13ac\u13a9": 8617, "\u2581\u13c2\u13d3\u13d3\u13c2\u13b8\u13ac\u13be": 8618, "\u2581\u13c2\u13d7\u13a6\u13b5\u13cd\u13d4\u13c2": 8619, "\u2581\u13c2\u13e5\u13ea\u13cd\u13aa\u13a2": 8620, "\u2581\u13c4\u13be\u13d3\u13c1\u13df\u13f4\u13ce\u13a2": 8621, "\u2581\u13c4\u13c2\u13a6\u13d9\u13a5\u13d2\u13be": 8622, "\u2581\u13c5\u13d3\u13a8\u13e5\u13c5\u13cf\u13db": 8623, "\u2581\u13c5\u13d3\u13cd\u13db\u13f4\u13c1\u13b5": 8624, "\u2581\u13c5\u13e9\u13cd\u13d7\u13d7\u13ce\u13cd\u13d7\u13c9": 8625, "\u2581\u13c8\u13ef\u13cf\u13f1\u13c6": 8626, "\u2581\u13cd\u13c6\u13ce\u13b5\u13d3\u13c1\u13b8\u13a2": 8627, "\u2581\u13cd\u13c6\u13ce\u13b5\u13d3\u13cf": 8628, "\u2581\u13d0\u13a3\u13c1\u13b5\u13c1": 8629, "\u2581\u13d1\u13a7\u13d4": 8630, "\u2581\u13d3\u13aa\u13c4\u13b6\u13cf\u13d9\u13ae\u13cd\u13d7": 8631, "\u2581\u13d3\u13b5\u13d6\u13b8\u13c2\u13d9\u13ae\u13cd\u13d7": 8632, "\u2581\u13d3\u13be\u13e6\u13cd\u13ac": 8633, "\u2581\u13d3\u13c2\u13cd\u13d4\u13f2\u13af\u13b2": 8634, "\u2581\u13d3\u13c2\u13cf\u13b3\u13db\u13a5\u13cd\u13a8": 8635, "\u2581\u13d3\u13c6\u13da\u13eb\u13cd\u13d4\u13c5\u13a9": 8636, "\u2581\u13d3\u13d3\u13ec\u13cd\u13d7\u13cd\u13ac\u13a9": 8637, "\u2581\u13d3\u13db\u13af\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 8638, "\u2581\u13d4\u13d3\u13c5\u13d7\u13cd\u13d3": 8639, "\u2581\u13d5\u13a4\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 8640, "\u2581\u13d5\u13a6\u13b6\u13b4\u13ac\u13a2": 8641, "\u2581\u13d5\u13e5\u13c5\u13aa\u13a5\u13d7\u13cd\u13a8\u13cd\u13d7": 8642, "\u2581\u13d5\u13e5\u13c5\u13eb\u13cd\u13a8\u13cd\u13d7": 8643, "\u2581\u13d5\u13e6\u13e2\u13af\u13cf": 8644, "\u2581\u13d7\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 8645, "\u2581\u13d7\u13a9\u13c4\u13aa\u13e8": 8646, "\u2581\u13d7\u13d3\u13d9\u13ea\u13d9\u13a5": 8647, "\u2581\u13d9\u13d3\u13f3\u13b8\u13eb\u13cd\u13d3\u13c1\u13b5": 8648, "\u2581\u13d9\u13d7\u13c2\u13c1\u13b8\u13a2": 8649, "\u2581\u13da\u13a7\u13d9\u13cd\u13d5": 8650, "\u2581\u13da\u13be\u13c1\u13e2\u13d4\u13c5\u13d2\u13a2": 8651, "\u2581\u13da\u13be\u13e0\u13f1\u13b4\u13a2": 8652, "\u2581\u13da\u13c2\u13d6\u13b8\u13c1": 8653, "\u2581\u13da\u13c3\u13e3\u13b6\u13e4": 8654, "\u2581\u13da\u13e2\u13eb\u13ce\u13b4": 8655, "\u2581\u13e0\u13c6\u13b9": 8656, "\u2581\u13e3\u13cd\u13d5\u13c5\u13e8": 8657, "\u2581\u13e3\u13d7\u13eb\u13cd\u13d3": 8658, "\u2581\u13e7\u13a6\u13ce\u13cd\u13d7\u13d5\u13a9": 8659, "\u2581\u13e7\u13c3\u13d5\u13cd\u13d7\u13cd\u13a9": 8660, "\u2581\u13eb\u13d9\u13d3\u13e8\u13ef": 8661, "\u2581\u13eb\u13f4\u13a8\u13e5\u13b7\u13a9": 8662, "\u2581\u13ed\u13ed\u13d3\u13b8": 8663, "\u2581\u13ee\u13d3\u13a6\u13b6\u13cf": 8664, "\u2581\u13ef\u13d3\u13ec\u13cd\u13a8\u13cd\u13d7": 8665, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d4\u13c3": 8666, "\u2581\u13f1\u13d9\u13ac\u13e9\u13b8\u13eb\u13cd\u13d3\u13cf": 8667, "\u2581\u13f1\u13da\u13d3\u13cc\u13dd\u13ae\u13cd\u13d7": 8668, "\u2581\u13f1\u13da\u13db\u13d3\u13cd\u13d3\u13c1\u13b4\u13a2": 8669, "\u2581\u13f1\u13da\u13ea\u13d8\u13b8": 8670, "\u2581\u13f1\u13e8\u13f2\u13ea\u13b3\u13c1\u13ad": 8671, "\u2581\u13f3\u13be\u13db\u13c5\u13a2\u13cd\u13d7": 8672, "\u2581\u13f3\u13cd\u13a6\u13c5\u13e8": 8673, "\u2581\u13f4\u13ac\u13c2\u13b7\u13a9": 8674, "\u13b5\u13f0\u13d1\u13cd\u13da\u13ec": 8675, "\u13cd\u13c7\u13b5\u13f0\u13d7": 8676, "\u13d3\u13be\u13eb\u13db\u13d7": 8677, "\u2581\u13a0\u13c2\u13ab\u13cc\u13e9\u13a9": 8678, "\u2581\u13a2\u13cd\u13c9\u13ce\u13ad": 8679, "\u2581\u13a4\u13e6\u13d4\u13ae": 8680, "\u2581\u13c2\u13d3\u13b7\u13b8\u13a5\u13cd\u13ac\u13be": 8681, "\u2581\u13c2\u13da\u13bf\u13cd\u13d5\u13e2\u13be": 8682, "\u2581\u13d7\u13a9\u13a7\u13c1\u13b8\u13af": 8683, "\u2581\u13d9\u13d3\u13a8\u13e5\u13f2\u13af\u13ce\u13b5": 8684, "\u2581\u13d9\u13e7\u13c1\u13c5\u13d2": 8685, "\u2581\u13e9\u13c2\u13a6\u13d6\u13a2": 8686, "\u13e5\u13cd\u13a9\u13c5\u13db\u13af": 8687, "\u13ec\u13af\u13b5\u13f4\u13cd\u13d3\u13c1": 8688, "\u2581\u13a0\u13a6\u13d8\u13d7\u13cd\u13d9\u13d7": 8689, "\u2581\u13a0\u13be\u13d3\u13cc\u13a9\u13d9\u13b2": 8690, "\u2581\u13a4\u13d3\u13cf\u13c2\u13d5\u13c5": 8691, "\u2581\u13a4\u13d9\u13b4\u13b1": 8692, "\u2581\u13b5\u13c6\u13d7\u13bb": 8693, "\u2581\u13cd\u13a9\u13ef\u13c5\u13d3\u13d7\u13cd\u13ac\u13a2": 8694, "\u2581\u13cd\u13a9\u13f2\u13a2\u13f3\u13b2\u13a6": 8695, "\u2581\u13d3\u13a6\u13d3\u13c5\u13cf": 8696, "\u2581\u13d3\u13cd\u13c6\u13b8\u13ae\u13ac\u13a2": 8697, "\u2581\u13e6\u13a7\u13d4\u13c2": 8698, "\u2581\u13e8\u13d3\u13ac\u13ef\u13ce\u13ae\u13b5": 8699, "\u2581\u13ed\u13ea\u13d9\u13b4\u13a2": 8700, "\u2581\u13f1\u13c4\u13d3\u13a0": 8701, "\u13af\u13ac\u13cd\u13aa\u13b8\u13a5\u13cd\u13a8\u13cd\u13d7": 8702, "\u13e4\u13f2\u13b2\u13cd\u13a6": 8703, "\u2581\u13a0\u13bb\u13d7\u13cf": 8704, "\u2581\u13a0\u13be\u13d3\u13a9\u13a1\u13af": 8705, "\u2581\u13a2\u13e8\u13c2\u13cc\u13db": 8706, "\u2581\u13a2\u13ef\u13c2\u13ea\u13cd\u13a9": 8707, "\u2581\u13a4\u13c2\u13cd\u13db\u13db\u13af": 8708, "\u2581\u13a4\u13c3\u13b1\u13a6\u13c5": 8709, "\u2581\u13a4\u13c9\u13d4\u13d7": 8710, "\u2581\u13a4\u13d6\u13b8\u13c1": 8711, "\u2581\u13aa\u13b8\u13cc\u13db\u13d7": 8712, "\u2581\u13c2\u13da\u13be\u13d1\u13b4\u13b2\u13be": 8713, "\u2581\u13c5\u13d7\u13db\u13c1\u13b5\u13d2": 8714, "\u2581\u13c7\u13e3\u13f1\u13d7": 8715, "\u2581\u13cc\u13b7\u13f1": 8716, "\u2581\u13cd\u13a9\u13a8\u13f3\u13ad\u13e7": 8717, "\u2581\u13d3\u13ac\u13ef\u13ab\u13f4\u13a1\u13b5": 8718, "\u2581\u13d7\u13a6\u13b8\u13c9\u13d4\u13c5\u13af": 8719, "\u2581\u13d7\u13c2\u13ad\u13f2\u13af": 8720, "\u2581\u13d7\u13c2\u13cf\u13b2\u13cd\u13a9": 8721, "\u2581\u13d7\u13f2\u13b3\u13c5\u13af": 8722, "\u2581\u13d9\u13db\u13c2\u13f2\u13af\u13ce\u13b5": 8723, "\u2581\u13e3\u13c2\u13a6\u13f4\u13b5": 8724, "\u2581\u13e6\u13a9\u13a6\u13f4\u13b5\u13a8\u13a2": 8725, "\u2581\u13f1\u13c4\u13e9\u13c1\u13b8": 8726, "\u2581\u13a0\u13a9\u13d4\u13b3\u13ec\u13cd\u13ac": 8727, "\u2581\u13a0\u13be\u13b5\u13d9\u13a9\u13ef\u13cd\u13a9": 8728, "\u2581\u13a3\u13a6\u13db\u13c5\u13a2\u13cd\u13d7": 8729, "\u2581\u13a4\u13b5\u13cd\u13a6\u13ce": 8730, "\u2581\u13a4\u13f2\u13cf\u13cc\u13c1\u13a2": 8731, "\u2581\u13ac\u13e9\u13b5\u13c3\u13ae\u13d4\u13c1": 8732, "\u2581\u13cd\u13c7\u13b5\u13ce\u13d7\u13f1": 8733, "\u2581\u13da\u13c2\u13d0\u13e8": 8734, "\u2581\u13da\u13df\u13b6\u13cd\u13d3\u13c1\u13b8\u13a9": 8735, "\u2581\u13e5\u13eb\u13d7\u13a8\u13a6\u13d8\u13c5\u13cd\u13d4\u13c1": 8736, "\u2581\u13ef\u13c2\u13b7\u13a9": 8737, "\u13d7\u13a9\u13f4\u13a9": 8738, "\u2581Co": 8739, "\u2581\u13a1\u13b5\u13cd\u13d3\u13a6": 8740, "\u2581\u13a2\u13e8\u13c1\u13e4\u13b8\u13a2": 8741, "\u2581\u13a4\u13c1\u13b3\u13a5\u13af": 8742, "\u2581\u13a4\u13e9\u13a2\u13ce\u13b8\u13af": 8743, "\u2581\u13be\u13c2\u13f4\u13ac\u13be": 8744, "\u2581\u13c4\u13aa\u13b8\u13be": 8745, "\u2581\u13c5\u13d3\u13f2\u13e3\u13db\u13c1\u13b5": 8746, "\u2581\u13da\u13ec\u13d1\u13b4": 8747, "\u2581\u13e7\u13c2\u13cd\u13da\u13d7": 8748, "\u2581\u13e9\u13d3\u13c1\u13df\u13f4\u13cd\u13d3": 8749, "\u2581\u13a0\u13c2\u13c7\u13b5\u13cf": 8750, "\u2581\u13a4\u13d3\u13c1\u13df\u13f4\u13cd\u13d4\u13c1\u13b4": 8751, "\u2581\u13c2\u13da\u13be\u13b5\u13c2\u13ac\u13ac": 8752, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c2\u13d9\u13b4": 8753, "\u2581\u13d5\u13d3\u13a7\u13c2\u13cd\u13ac": 8754, "\u2581\u13e5\u13c5\u13d3\u13a6\u13b5\u13cd\u13d4\u13c2": 8755, "\u2581\u13e5\u13d3\u13be\u13d5\u13f2\u13b2\u13cd": 8756, "\u2581\u13a4\u13d5\u13ef\u13d4\u13c1\u13b8": 8757, "\u2581\u13c4\u13b5\u13cd\u13da\u13b8\u13be": 8758, "\u2581\u13e9\u13a6\u13d8\u13c5\u13cd\u13d9\u13d7\u13f1": 8759, "\u2581\u13a0\u13a9\u13b3\u13eb\u13cd\u13d7\u13f1": 8760, "\u2581\u13a0\u13c6\u13d9\u13b4\u13b0\u13af\u13cd\u13d7\u13f1": 8761, "\u2581\u13a0\u13e5\u13c5\u13e9\u13c5\u13a2": 8762, "\u2581\u13a4\u13be\u13b5\u13db\u13d4\u13c5": 8763, "\u2581\u13a4\u13c6\u13b6\u13a6": 8764, "\u2581\u13c8\u13e5\u13f1": 8765, "\u2581\u13d5\u13b1\u13d3": 8766, "\u2581\u13da\u13f0\u13b5\u13af\u13cd\u13d4\u13c1": 8767, "\u2581\u13e6\u13d3\u13bb": 8768, "\u2581\u13eb\u13b7\u13e8\u13ad": 8769, "\u2581\u13ee\u13d3\u13a6\u13d9\u13b4\u13a3\u13cf": 8770, "\u2581\u13f4\u13a8\u13e6\u13af\u13f3\u13b2\u13a6": 8771, "\u2581\u13a3\u13cc\u13ef": 8772, "\u2581\u13a4\u13be\u13d5\u13ef\u13d4\u13c1\u13b4\u13a2": 8773, "\u2581\u13a4\u13be\u13d7\u13d2\u13b8": 8774, "\u2581\u13bb\u13b4\u13b3": 8775, "\u2581\u13d3\u13be\u13d7\u13d4\u13cd\u13d7\u13cd\u13a8": 8776, "\u2581\u13d7\u13c2\u13cd\u13d4\u13f2\u13af": 8777, "\u2581\u13e5\u13a8\u13f3\u13a0": 8778, "per": 8779, "\u2581\u13a0\u13ab\u13f4\u13a1\u13d7\u13f1": 8780, "\u2581\u13a4\u13da\u13e3\u13b3\u13c5\u13a9": 8781, "\u2581\u13d9\u13d3\u13f0\u13e3\u13ec\u13cd\u13d4\u13c2": 8782, "\u2581\u13da\u13b5\u13d8\u13be\u13a5": 8783, "\u2581\u13da\u13c2\u13b5\u13ec\u13e8\u13a9": 8784, "\u2581\u13e5\u13da\u13c3\u13b1\u13a6\u13c1": 8785, "\u2581\u13a0\u13d3\u13cd\u13d5\u13b8\u13d3": 8786, "\u2581\u13a1\u13e6\u13af\u13f3\u13b2\u13cd": 8787, "\u2581\u13d3\u13a6\u13e5\u13c1\u13c9\u13a2": 8788, "\u2581\u13d3\u13f1\u13d3\u13b5": 8789, "\u2581\u13e3\u13b7\u13af\u13cd\u13d7\u13f1": 8790, "\u2581\u13e7\u13b3\u13cf\u13d7\u13f1": 8791, "\u13a9\u13f2\u13b1\u13ce\u13b2\u13a9": 8792, "\u13ec\u13c1\u13d3": 8793, "\u2581\u13a0\u13c2\u13c3\u13df\u13d9": 8794, "\u2581\u13a4\u13a6\u13d6\u13c3": 8795, "\u2581\u13a4\u13be\u13e3\u13ea\u13d0\u13b8\u13cd\u13d9\u13d7\u13f1": 8796, "\u2581\u13a6\u13e8\u13e9\u13cd\u13d4\u13c5\u13af": 8797, "\u2581\u13ac\u13e9\u13aa\u13b5\u13f0\u13cd\u13ac": 8798, "\u2581\u13c2\u13d9\u13d3\u13a6\u13ea\u13ce\u13b5": 8799, "\u2581\u13d3\u13e4\u13c5\u13a1\u13b5": 8800, "\u2581\u13d5\u13a6\u13c6\u13db": 8801, "\u2581\u13d5\u13af\u13ef\u13c1\u13b6\u13d5\u13cd\u13d7": 8802, "\u2581\u13e5\u13c2\u13f4\u13c1\u13ad": 8803, "\u2581\u13a4\u13ec\u13a6\u13d2": 8804, "\u2581\u13ec\u13a9\u13c3\u13b8\u13a9": 8805, "\u2581\u13be\u13c2\u13a6\u13d4\u13be\u13a5\u13be": 8806, "\u2581\u13d7\u13be\u13b5\u13cd\u13d3\u13f4\u13c2": 8807, "\u13cd\u13da\u13a2\u13a1\u13b8": 8808, "\u2581\u13a0\u13b5\u13cd\u13d5\u13b5\u13cd\u13ac": 8809, "\u2581\u13d7\u13ac\u13e9\u13be\u13db\u13aa\u13d9\u13d7": 8810, "\u2581\u13d9\u13a6\u13e0\u13d2\u13a9": 8811, "\u2581\u13a4\u13be\u13d5\u13b6\u13c6\u13cd\u13d7\u13f1": 8812, "\u2581\u13bb\u13d7\u13ef\u13c2": 8813, "\u2581\u13c4\u13c2\u13cd\u13a6\u13c5\u13e8\u13be": 8814, "\u2581\u13db\u13d3\u13b8\u13a2": 8815, "\u2581\u13ef\u13e5\u13ef\u13dd": 8816, "\u13d3\u13b4\u13f4\u13d7\u13cd\u13a9": 8817, "\u13d3\u13d3\u13b4\u13d4\u13c2": 8818, "\u2581\u13a2\u13e5\u13aa\u13b5\u13f0\u13a5\u13ad": 8819, "\u2581\u13a4\u13be\u13e6\u13cd\u13d4\u13c1": 8820, "\u2581\u13c2\u13e8\u13be\u13db": 8821, "\u2581\u13f1\u13c5\u13d3\u13a6\u13b5\u13cd\u13d9\u13d3": 8822, "\u13b1\u13e2\u13d4\u13c5\u13ad": 8823, "\u2581\u13db\u13e5\u13b7\u13e5": 8824, "\u2581\u13d2\u13a6\u13d9\u13af": 8825, "\u13d9\u13e5\u13b5\u13e6\u13db\u13a6": 8826, "\u2581\u13a0\u13b5\u13c3\u13ae\u13d7\u13cd\u13ac\u13a2": 8827, "\u2581\u13a0\u13c2\u13c1\u13a2\u13cd\u13d7\u13cd\u13a9": 8828, "\u2581\u13a4\u13be\u13d8\u13cd\u13d9\u13d7\u13f1": 8829, "\u2581\u13a4\u13ce\u13b5\u13d3\u13c1\u13b4\u13c3": 8830, "\u2581\u13c2\u13d9\u13d3\u13ac\u13c1\u13b5": 8831, "\u2581\u13c5\u13d3\u13e8\u13f4\u13c1\u13b5": 8832, "\u2581\u13d7\u13be\u13d3\u13d9\u13d5\u13cd\u13d7\u13cd\u13a9": 8833, "\u2581\u13a0\u13f0\u13b4\u13a9": 8834, "\u2581\u13a6\u13f4\u13d3\u13d7": 8835, "\u2581\u13d5\u13a6\u13d5\u13f2\u13b2\u13cd\u13ac": 8836, "\u2581\u13d5\u13a7\u13c3\u13ae\u13cd\u13ac": 8837, "\u2581\u13da\u13b3\u13eb\u13db": 8838, "\u13a9\u13b5\u13f2\u13e5\u13d9\u13b8\u13a2": 8839, "\u2581\u13a4\u13c5\u13d8\u13db": 8840, "\u2581\u13a4\u13cd\u13c6\u13b7\u13aa": 8841, "\u2581\u13a4\u13d9\u13e3\u13b8\u13a2": 8842, "\u2581\u13be\u13be\u13d3\u13db\u13cd\u13ac\u13be": 8843, "\u2581\u13a3\u13e5\u13ef\u13a5": 8844, "\u2581\u13a4\u13d3\u13e6\u13af\u13ef": 8845, "\u2581\u13d7\u13e7\u13aa\u13d7\u13cd\u13a9": 8846, "\u2581\u13af\u13ef\u13db\u13a5\u13a6": 8847, "\u2581\u13d9\u13a9\u13be\u13d7\u13d4\u13b2": 8848, "\u2581\u13a6\u13c5\u13c3\u13eb": 8849, "\u2581\u13e7\u13c3\u13d1\u13b4\u13d7": 8850, "\u13f2\u13b1\u13af\u13ce\u13b4\u13a2": 8851, "\u2581\u13a6\u13e2\u13cd\u13a9": 8852, "\u2581\u13c4\u13be\u13d9\u13d3\u13c8\u13d2": 8853, "\u2581\u13a4\u13be\u13d3\u13d3\u13cd\u13a9\u13cc\u13b2": 8854, "\u2581\u13a6\u13c3\u13b1\u13a9\u13cd\u13a8": 8855, "\u2581\u13c5\u13d7\u13a6\u13ea": 8856, "\u2581\u13a0\u13c2\u13c2\u13a9\u13b8": 8857, "\u2581\u13a0\u13cd\u13da\u13a2\u13db": 8858, "\u2581\u13a4\u13a6\u13db\u13b4\u13af\u13cd\u13d7\u13f1": 8859, "\u2581\u13d7\u13ac\u13e9\u13c2\u13ef\u13a2": 8860, "\u2581\u13db\u13b5\u13db\u13d4\u13c2": 8861, "\u2581\u13c4\u13b5\u13cc": 8862, "\u2581\u13a0\u13d0\u13e2\u13a2\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 8863, "\u2581\u13a4\u13cd\u13d8\u13f0\u13a9": 8864, "\u2581\u13a4\u13df\u13c3\u13ae\u13d4\u13c1\u13a2": 8865, "\u2581\u13c4\u13c2\u13e7\u13c8\u13cd\u13d5\u13cd\u13d7": 8866, "\u2581\u13db\u13ac\u13ef\u13d8\u13c3": 8867, "\u2581\u13a0\u13b5\u13f1\u13b5\u13d2\u13a2": 8868, "\u2581\u13a0\u13c3\u13e2\u13c5\u13a5\u13cd\u13a9": 8869, "\u2581\u13e7\u13be\u13db\u13d2\u13af": 8870, "\u13ab\u13aa\u13d3\u13c1\u13d7": 8871, "\u13d1\u13b6\u13e8\u13af": 8872, "\u2581\u13a0\u13be\u13b5\u13cd\u13a9\u13cd\u13ac": 8873, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13c3\u13c5": 8874, "\u2581\u13e5\u13c4\u13be\u13cd\u13db\u13a2": 8875, "\u13e8\u13ef\u13db\u13db\u13c2": 8876, "\u2581\u13a6\u13a8\u13e5\u13d0\u13e2": 8877, "\u13bf\u13b8\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 8878, "\u13d5\u13ef\u13d4\u13c1\u13ad": 8879, "\u13e3\u13d3\u13c5\u13a1\u13b8": 8880, "\u2581\u13c3\u13a9\u13ea\u13d2\u13a9": 8881, "\u2581\u13d3\u13f3\u13c2\u13c4\u13aa\u13e8\u13a9": 8882, "\u2581\u13a4\u13d7\u13db\u13b2\u13a9": 8883, "\u2581\u13c2\u13a8\u13e3\u13db\u13c1\u13ae\u13cd\u13d7": 8884, "\u2581\u13e7\u13be\u13d3\u13df\u13f4\u13d7": 8885, "\u2581\u13d7\u13b5\u13f0": 8886, "\u2581\u13d9\u13a9\u13c3\u13e2": 8887, "\u2581\u13a0\u13a9\u13d4\u13d5\u13a9\u13cd\u13ac": 8888, "\u2581\u13d9\u13d8\u13f2\u13a2": 8889, "\u2581\u13da\u13e5\u13b8\u13d2": 8890, "\u2581\u13eb\u13c4\u13d2": 8891, "\u2581\u13a2\u13e3\u13db\u13bf\u13d5\u13a9": 8892, "\u2581\u13be\u13c6\u13b5\u13cd\u13d3\u13c1\u13b5\u13d5\u13ac": 8893, "\u2581\u13da\u13be\u13b5\u13ef\u13cd\u13da": 8894, "\u2581\u13e3\u13a6\u13e5\u13b6\u13cd\u13d4\u13c5": 8895, "\u2581\u13e7\u13a7\u13c3\u13d7\u13f1": 8896, "\u13ac\u13e3\u13dd\u13c5": 8897, "\u2581\u13c2\u13a6\u13b7\u13b6\u13ac\u13be": 8898, "\u2581\u13da\u13b5\u13e5\u13d9\u13c1\u13b4\u13a2": 8899, "\u2581\u13e5\u13c2\u13a6\u13db\u13c1\u13ad": 8900, "\u2581\u13a0\u13a9\u13df\u13f2": 8901, "\u2581\u13c5\u13d3\u13e5\u13ef\u13db\u13c1\u13b5": 8902, "\u2581\u13a2\u13e5\u13aa\u13d9\u13cd\u13a8\u13cd\u13d7": 8903, "\u2581\u13f0\u13e6\u13ce\u13ae\u13cd\u13d7": 8904, "\u2581\u13da\u13c4\u13ee": 8905, "\u2581\u13a0\u13c9\u13b5\u13e8": 8906, "\u2581\u13a4\u13c4\u13ec\u13a5\u13af": 8907, "\u2581\u13a1\u13e3\u13c1\u13cd\u13a8\u13b2\u13af": 8908, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d4\u13c2\u13d9\u13ae\u13cd\u13d7": 8909, "\u2581\u13d7\u13a9\u13aa\u13b6\u13af": 8910, "\u2581\u13d7\u13e5\u13c5\u13cd\u13a8\u13c2": 8911, "\u2581\u13e7\u13c1\u13a9\u13f3": 8912, "\u2581\u13c4\u13d3\u13c5\u13db\u13be": 8913, "\u2581\u13a0\u13c3\u13e2\u13cd\u13ac": 8914, "\u2581\u13a4\u13cd\u13a6\u13a2\u13d3": 8915, "\u2581\u13a2\u13e5\u13be\u13eb": 8916, "\u2581\u13a0\u13b5\u13cd\u13c6\u13db\u13ad": 8917, "\u2581\u13a1\u13e3\u13b5\u13a1\u13b5\u13e4\u13ae\u13cd\u13d7": 8918, "\u13b3\u13eb\u13ce\u13ae\u13cd\u13d7": 8919, "\u13e7\u13be\u13da\u13a9\u13ce": 8920, "\u2581\u13a0\u13c6\u13b5\u13c2\u13ac\u13ac\u13a2": 8921, "\u2581\u13eb\u13b7\u13a9": 8922, "\u2581\u13a2\u13e8\u13ef\u13c5\u13d3\u13d7\u13cd\u13d7\u13cd\u13ac\u13a2": 8923, "\u2581\u13a2\u13cf\u13b3\u13bb": 8924, "\u2581\u13be\u13d0\u13c2": 8925, "\u2581\u13be\u13d3\u13db\u13c1\u13b2\u13a2": 8926, "\u13be\u13aa\u13c4\u13b8": 8927, "\u2581\u13a8\u13a9\u13cd\u13a6\u13a9": 8928, "\u2581\u13b9\u13c8\u13b3": 8929, "\u2581\u13a4\u13c2\u13be\u13f0\u13d2\u13a9": 8930, "\u2581\u13c2\u13d5\u13a6\u13c5\u13af\u13d2\u13a9": 8931, "\u2581\u13a2\u13e3\u13db\u13a9\u13cd\u13a8\u13cd\u13d7": 8932, "\u13a9\u13b5\u13f2\u13a8\u13cd\u13d7": 8933, "\u13b3\u13eb\u13ce\u13d7": 8934, "\u2581\u13a4\u13c1\u13e2\u13d4\u13c5\u13d2\u13a2": 8935, "\u2581\u13c4\u13f2\u13b1\u13d2\u13a9": 8936, "\u2581\u13d7\u13d3\u13aa\u13d7\u13cd\u13a9": 8937, "\u13cd\u13a6\u13b3\u13e4": 8938, "\u2581\u13f1\u13e9\u13cd\u13d4": 8939, "\u2581\u13db\u13a9\u13f2\u13b5": 8940, "\u13ac\u13f2\u13ce\u13d7": 8941, "\u13e2\u13e5\u13f0\u13cd": 8942, "\u2581\u13e5\u13d3\u13d3\u13c2\u13b8\u13aa\u13a2": 8943, "\u2581\u13a0\u13b5\u13f1\u13b6\u13b8\u13ad": 8944, "\u2581\u13d9\u13a8\u13e5": 8945, "\u2581\u13eb\u13e8\u13f2\u13b5": 8946, "\u2581\u13a0\u13c6\u13c1\u13b3\u13eb\u13ce": 8947, "\u2581\u13be\u13c2\u13a6\u13d4\u13bf\u13a5\u13be": 8948, "\u2581\u13a4\u13a7\u13b5\u13e6\u13c5": 8949, "\u13b3\u13cd\u13d5\u13b5\u13f4\u13cc": 8950, "\u2581\u13d2\u13af\u13f0": 8951, "\u2581\u13f1\u13d3\u13c2\u13c1\u13df\u13f4": 8952, "\u2581\u13a4\u13ea\u13e3\u13c4": 8953, "\u2581\u13a0\u13a8\u13be\u13c2": 8954, "\u2581\u13e7\u13f2\u13cd\u13d4\u13c5\u13af": 8955, "\u2581\u13ec\u13e5\u13a6\u13db": 8956, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d4\u13c1\u13d7": 8957, "\u2581\u13a4\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8": 8958, "\u2581\u13e7\u13be\u13b3\u13cf\u13d5\u13c4\u13b6\u13d7": 8959, "\u2581\u13a0\u13a9\u13ec\u13c2": 8960, "\u2581\u13a4\u13be\u13c1\u13b3\u13db": 8961, "\u2581\u13d5\u13b1\u13aa": 8962, "\u2581\u13eb\u13da\u13be\u13d8\u13c3\u13ae\u13b8\u13a9": 8963, "\u13f2\u13b1\u13d2\u13be": 8964, "\u2581\u13c5\u13d3\u13f3\u13ea\u13d2\u13a9": 8965, "\u2581\u13f3\u13cd\u13c6\u13b8": 8966, "\u2581\u13a0\u13cd\u13c6\u13be\u13b8": 8967, "\u2581\u13e7\u13be\u13b3\u13cf\u13d5\u13c5": 8968, "\u2581\u13ed\u13ea\u13d9\u13b8": 8969, "\u2581\u13a0\u13c6\u13db\u13db\u13c5": 8970, "\u13a9\u13cd\u13da\u13b2\u13a9": 8971, "\u2581\u13c2\u13d7\u13e8\u13a6": 8972, "\u2581\u13a2\u13aa\u13af\u13f3\u13d2": 8973, "\u2581\u13e3\u13aa\u13ce\u13b0\u13a2": 8974, "\u2581\u13c2\u13e5\u13f2\u13af\u13cd\u13d7\u13cd\u13ac\u13be": 8975, "\u2581\u13a0\u13be\u13d5\u13b2\u13cd\u13a8": 8976, "\u2581\u13a4\u13c3\u13f4\u13b3\u13d2": 8977, "\u2581\u13a4\u13c5\u13eb\u13cd\u13d7\u13cd\u13a9": 8978, "\u2581\u13c4\u13b5\u13c1\u13e8": 8979, "\u2581\u13c5\u13e7\u13ea\u13ce\u13b4\u13a2": 8980, "\u13cd\u13c7\u13f2\u13b2\u13a6": 8981, "\u2581\u13a0\u13aa\u13e9\u13d8\u13cd\u13a9": 8982, "\u2581\u13c1\u13d9\u13b2\u13be": 8983, "\u2581\u13cd\u13a9\u13ef\u13db\u13d3\u13cd\u13d3\u13cf": 8984, "\u13e9\u13b5": 8985, "\u13b5\u13af\u13ae\u13a2": 8986, "\u2581\u13cf\u13d7\u13bb": 8987, "\u2581\u13da\u13c2\u13f2\u13cf\u13cd\u13ac": 8988, "\u2581\u13a2\u13a9\u13c7\u13d3\u13b8": 8989, "\u2581\u13da\u13c2\u13a6\u13d8\u13b8\u13ce": 8990, "\u13e5\u13ef\u13eb\u13cd\u13ac": 8991, "\u2581\u13a0\u13c2\u13f2\u13b5\u13ae": 8992, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d3\u13d3": 8993, "\u2581\u13a4\u13d7\u13b4\u13b2\u13cd\u13a8\u13a2": 8994, "\u2581\u13a4\u13d9\u13b5\u13cd\u13d9": 8995, "\u2581\u13a0\u13c6\u13db\u13d0\u13c5\u13af": 8996, "\u13df\u13b6\u13cd\u13d4\u13c2": 8997, "\u2581\u13a0\u13a2\u13d7\u13e2": 8998, "\u2581\u13c4\u13b8\u13c9\u13d4\u13c5\u13be": 8999, "\u2581\u13da\u13ec\u13a5\u13a9": 9000, "\u2581\u13a2\u13a8\u13d3\u13cd\u13d7\u13f1": 9001, "\u2581\u13d7\u13be\u13d3\u13af\u13af": 9002, "\u13e3\u13a6\u13ce\u13cd\u13d3": 9003, "\u2581\u13e7\u13d3\u13c5\u13b5\u13f0\u13d3": 9004, "\u2581\u13a4\u13b5\u13d2\u13cd\u13d4\u13c1\u13a2": 9005, "\u2581\u13d3\u13e5\u13be\u13c4\u13aa\u13eb\u13ce\u13b5": 9006, "\u2581\u13a0\u13d3\u13c5\u13ec\u13af\u13cd\u13d7\u13cd\u13a9": 9007, "\u13ad\u13c4\u13eb": 9008, "\u2581\u13a2\u13e8\u13c1\u13e4\u13ad": 9009, "\u2581\u13ac\u13e9\u13db\u13a1\u13b4\u13cd\u13d7": 9010, "\u2581\u13a4\u13a6\u13cc\u13db\u13a2": 9011, "\u2581\u13a4\u13e0\u13a9": 9012, "\u2581\u13d3\u13f3\u13e0\u13a0\u13d2\u13a9": 9013, "\u2581\u13da\u13c2\u13ce\u13aa\u13a9\u13ce": 9014, "\u2581\u13a0\u13ce\u13b5\u13db\u13cd\u13ac": 9015, "\u2581\u13a3\u13e3\u13d3\u13c5\u13df": 9016, "\u2581\u13eb\u13da\u13c2\u13f4\u13cd\u13d7\u13f1": 9017, "\u2581\u13a4\u13af\u13cc\u13db": 9018, "\u2581\u13a0\u13be\u13d3\u13b8\u13c9\u13d7\u13cd\u13a9": 9019, "\u2581\u13a0\u13a9\u13c1\u13c9\u13e4": 9020, "\u2581\u13d5\u13a4\u13f2\u13af\u13ce\u13b4\u13a2": 9021, "\u2581\u13a0\u13cd\u13d9\u13d3": 9022, "\u2581\u13f3\u13c2\u13c3\u13ae\u13b8": 9023, "\u2581\u13a2\u13e8\u13f2\u13b5\u13a6": 9024, "\u2581\u13e6\u13e5\u13f0\u13b8": 9025, "\u2581\u13a0\u13d3\u13d3\u13f1\u13ae\u13cd\u13d7": 9026, "\u2581\u13be\u13be\u13b5\u13cd\u13d7\u13ad": 9027, "\u2581\u13d5\u13a6\u13a6\u13d9\u13cd\u13db": 9028, "\u2581\u13a0\u13c1\u13e6": 9029, "\u13ef\u13d3\u13c2\u13b8\u13e5": 9030, "\u2581\u13a5\u13c6\u13ec\u13cd\u13d9\u13d7": 9031, "\u2581\u13ed\u13d7\u13e2\u13cd\u13d4\u13c5": 9032, "\u2581\u13a2\u13e5\u13f2\u13ae\u13cd\u13d7": 9033, "\u2581\u13a2\u13e5\u13c1\u13a2\u13cd\u13d7\u13f1": 9034, "\u2581\u13a4\u13be\u13b5\u13cd\u13d4\u13f4\u13c5": 9035, "\u2581\u13f3\u13e5\u13cd\u13aa\u13b8": 9036, "\u13e8\u13c9\u13db\u13be": 9037, "\u2581\u13a5\u13a9\u13c2\u13b5": 9038, "\u2581\u13f1\u13a6\u13c2\u13c6\u13d8\u13ad": 9039, "\u13ac\u13d1\u13b6\u13d9\u13d7": 9040, "\u2581\u13eb\u13ac\u13b7\u13e4\u13d7\u13f1": 9041, "\u2581\u13da\u13be\u13c2\u13cf\u13c1\u13a2": 9042, "\u2581\u13d7\u13aa\u13cf\u13d0\u13d7": 9043, "\u2581\u13a0\u13c9\u13af\u13f3\u13b2\u13cd\u13a8\u13cd\u13d7": 9044, "\u2581\u13f3\u13d3\u13c5\u13d2": 9045, "\u2581\u13a4\u13be\u13c1\u13b6\u13d4\u13c1": 9046, "\u2581\u13a3\u13a6\u13c2\u13a9\u13d2\u13a9": 9047, "\u2581\u13a4\u13c2\u13f2\u13a2\u13ce\u13b8\u13af": 9048, "\u2581\u13eb\u13da\u13b5\u13cd\u13d8\u13c2\u13b8": 9049, "\u2581\u13da\u13c2\u13b3\u13eb\u13e6\u13b4": 9050, "\u13e6\u13a3\u13cd\u13d9\u13d7": 9051, "\u2581\u13a2\u13e3\u13d7\u13d4\u13cd\u13a8\u13cd\u13d7": 9052, "\u2581\u13d3\u13c6\u13ad\u13c4\u13ee": 9053, "\u2581\u13eb\u13cd\u13a9\u13e9\u13af\u13cf": 9054, "\u2581\u13a4\u13db\u13b8\u13ae": 9055, "\u2581\u13d9\u13c2\u13cd\u13a9": 9056, "\u13b5\u13cd\u13d3\u13c1\u13b5\u13d5\u13ac": 9057, "\u2581\u13a6\u13be\u13dc\u13a2": 9058, "\u2581\u13c5\u13d3\u13f3\u13be\u13c4\u13aa\u13a2\u13cd\u13d7": 9059, "ost": 9060, "\u2581\u13d3\u13f0\u13e5\u13aa\u13a2": 9061, "\u2581\u13a0\u13a6\u13d8\u13c5\u13cd\u13d7\u13f1": 9062, "\u2581\u13cc\u13b3\u13d3\u13f1\u13b5": 9063, "\u13d5\u13b0\u13cd\u13ac\u13be": 9064, "\u2581\u13d3\u13d8\u13ad\u13c1\u13b2": 9065, "\u2581\u13d3\u13f3\u13d7\u13e9\u13cf": 9066, "\u2581\u13a2\u13cd\u13a9\u13aa\u13e9\u13d8\u13cd\u13a8\u13cd\u13d7": 9067, "\u2581\u13a4\u13be\u13a6\u13d9\u13cd\u13db": 9068, "\u2581\u13eb\u13d3\u13c2\u13b7\u13a6": 9069, "\u2581\u13d3\u13c9\u13d9\u13a5": 9070, "er": 9071, "\u2581\u13d0\u13c6\u13b5": 9072, "\u2581\u13cc\u13d7\u13cf": 9073, "\u2581\u13e7\u13df\u13f4": 9074, "\u2581\u13a2\u13e8\u13cd\u13d3\u13e9\u13d5\u13c5": 9075, "\u2581\u13d9\u13d3\u13f2\u13e3": 9076, "\u2581\u13e7\u13be\u13ad\u13be\u13ec": 9077, "\u2581\u13a4\u13d3\u13ec\u13a1": 9078, "\u2581\u13c5\u13db\u13b4\u13c5\u13db": 9079, "\u13e2\u13c8\u13cd\u13a6": 9080, "\u13d7\u13a8\u13e5\u13f0\u13aa\u13a2": 9081, "\u2581\u13eb\u13d7\u13cd\u13a9\u13ef\u13c5\u13cf": 9082, "\u2581\u13a1\u13e5\u13b8\u13c9\u13d7\u13cd\u13a8\u13cd\u13d7": 9083, "\u2581\u13dd\u13ec": 9084, "\u2581\u13a4\u13c2\u13a6\u13be\u13cd\u13d3": 9085, "\u2581\u13a3\u13a6\u13c1\u13b3\u13a9": 9086, "\u13b6\u13c4\u13ae\u13b8\u13a9": 9087, "\u13a0\u13a9\u13b7\u13e8": 9088, "\u2581\u13a0\u13d3\u13c5\u13d6\u13cd\u13a9": 9089, "\u2581\u13a4\u13b5\u13cf\u13c2\u13d5\u13be": 9090, "\u13a8\u13b2\u13d2\u13a9": 9091, "\u2581\u13a2\u13f3\u13be\u13d3\u13b5": 9092, "\u2581\u13f1\u13cd\u13a9\u13aa\u13e9\u13d8\u13cd\u13a8\u13cd\u13d7": 9093, "\u2581\u13a2\u13d3\u13a2\u13ce\u13cd\u13d7": 9094, "\u2581\u13a2\u13e3\u13d3\u13c4\u13b8\u13d7": 9095, "\u2581\u13a2\u13a8\u13b3\u13d7\u13d9\u13ad": 9096, "\u2581\u13a4\u13ea\u13a7\u13ae": 9097, "\u13c3\u13ea\u13b3\u13c1": 9098, "\u2581\u13ab\u13d8\u13cd\u13ac": 9099, "\u2581\u13a2\u13a4\u13c2\u13b7\u13e8": 9100, "\u2581\u13a4\u13be\u13d3\u13c5\u13a1\u13b8\u13a9": 9101, "\u2581\u13a1\u13b3\u13c6\u13d8": 9102, "\u2581\u13d9\u13e5\u13f2\u13a6": 9103, "\u2581\u13d5\u13e3\u13cf\u13b3\u13db": 9104, "\u2581\u13a0\u13c9\u13af\u13f3\u13b2\u13cd\u13a9": 9105, "\u2581\u13a3\u13a9\u13be\u13df\u13c3\u13ae\u13b8": 9106, "\u2581\u13a3\u13e6\u13af\u13f3\u13b2\u13cd\u13a6": 9107, "\u2581\u13e5\u13e5\u13c3\u13ae\u13ad": 9108, "\u2581\u13a2\u13f0\u13e8\u13c1\u13d7\u13f1": 9109, "\u2581\u13a0\u13c6\u13ce\u13b5\u13d9\u13d4\u13c5": 9110, "\u2581\u13f1\u13c2\u13ac\u13e9\u13cd\u13d7\u13c9": 9111, "\u2581\u13a0\u13c7\u13d9\u13c5": 9112, "\u2581\u13da\u13f0\u13b5\u13cf\u13d9\u13b4\u13a2": 9113, "\u2581\u13da\u13cd\u13d5\u13b8\u13af\u13b8": 9114, "\u2581\u13f1\u13cd\u13a9\u13c3\u13af\u13ce": 9115, "\u2581\u13d7\u13e4\u13b5\u13cf": 9116, "\u2581\u13a4\u13e9\u13c3\u13eb\u13cd": 9117, "\u2581\u13f4\u13d7\u13d3\u13b4\u13b2\u13cd\u13a6": 9118, "\u2581\u13ed\u13c2\u13a7\u13c1": 9119, "\u2581\u13d5\u13e5\u13c1\u13e4\u13ae\u13cd\u13d7": 9120, "\u2581\u13da\u13c2\u13d0\u13c8": 9121, "\u2581\u13a4\u13b5\u13cd\u13da\u13b8\u13a9": 9122, "\u2581\u13d7\u13ab\u13aa\u13d7\u13f1": 9123, "\u2581\u13d5\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 9124, "\u2581\u13a2\u13d7\u13dc": 9125, "\u2581\u13d3\u13be\u13b4\u13af\u13cc\u13c5": 9126, "\u2581\u13cc\u13b5\u13b9": 9127, "\u2581\u13da\u13be\u13e0\u13f1\u13b8\u13a9": 9128, "\u2581\u13a4\u13a9\u13b4\u13cd\u13d7": 9129, "\u2581\u13a0\u13c6\u13e3\u13c5\u13d3\u13d5": 9130, "\u2581\u13ad\u13b5\u13cd\u13d3\u13f4\u13b2\u13a6": 9131, "\u2581\u13a1\u13e3\u13d3\u13c5\u13db\u13b5": 9132, "\u2581\u13a2\u13aa\u13af\u13f3\u13c5": 9133, "\u2581\u13d7\u13ac\u13e9\u13c2\u13be\u13dd\u13a2": 9134, "\u2581\u13a0\u13ac\u13c2\u13d7\u13f3": 9135, "\u2581\u13d5\u13e3\u13d3\u13c5\u13d6\u13cd\u13d7": 9136, "\u2581\u13a4\u13cd\u13c6\u13c4": 9137, "\u2581\u13a4\u13d3\u13c5\u13b5\u13f0\u13d3": 9138, "\u2581\u13f4\u13a8\u13e4": 9139, "\u2581\u13c2\u13e5\u13be\u13f0\u13cd\u13ac\u13be": 9140, "\u2581\u13a0\u13c5\u13cd\u13ac\u13a2": 9141, "\u2581\u13a2\u13ab\u13d3\u13b4\u13cd\u13d7\u13f1": 9142, "\u2581\u13a2\u13ac\u13f4\u13c1\u13d7\u13f1": 9143, "\u13d3\u13da\u13aa\u13d3\u13c1\u13ad": 9144, "\u13d7\u13d4\u13cd\u13d4\u13c1": 9145, "\u2581\u13e5\u13d7\u13a7\u13b8\u13aa": 9146, "\u2581\u13ef\u13ec\u13c5": 9147, "\u2581\u13a6\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 9148, "\u2581\u13d6\u13d2": 9149, "\u2581\u13d7\u13c2\u13c2\u13d9\u13af": 9150, "\u2581\u13ed\u13a6\u13d4\u13b2\u13cd\u13d4\u13c5": 9151, "\u2581\u13a0\u13d4\u13cd\u13a9\u13cd": 9152, "\u2581\u13a0\u13be\u13d9\u13b4\u13b0\u13cd\u13a8\u13cd\u13d7": 9153, "\u2581\u13d5\u13e3\u13d3\u13a8\u13f3\u13d2": 9154, "\u2581\u13d7\u13a6\u13be\u13af\u13cd\u13d9\u13d7": 9155, "\u2581\u13e5\u13a8\u13b3\u13d7\u13d9\u13ae": 9156, "\u2581\u13da\u13c2\u13c3\u13b8\u13a9": 9157, "\u2581\u13a2\u13e5\u13eb\u13c5": 9158, "\u2581\u13e5\u13be\u13c2\u13a5": 9159, "\u2581\u13a4\u13c3\u13d2\u13c5": 9160, "\u2581\u13e9\u13ce\u13af": 9161, "\u13cd\u13a6\u13de\u13a2": 9162, "\u2581\u13c2\u13cd\u13a9\u13f4\u13c1\u13b8": 9163, "\u13cd\u13d5\u13d3\u13b5\u13f4\u13cc": 9164, "\u2581\u13da\u13cd\u13da\u13e4": 9165, "\u2581\u13a4\u13c2\u13cf\u13c1\u13a2": 9166, "\u2581\u13ed\u13b5\u13f0\u13a2\u13b6\u13b8": 9167, "\u2581\u13a2\u13d7\u13ac\u13d3": 9168, "\u2581\u13a2\u13e8\u13c5\u13b5": 9169, "\u2581\u13e7\u13ea\u13f2\u13c5\u13af": 9170, "\u2581\u13a4\u13c1\u13cd\u13a8\u13b4": 9171, "\u2581\u13d5\u13e8\u13f0": 9172, "\u2581\u13e7\u13d5\u13f2\u13d7\u13f1": 9173, "\u13b5\u13f4\u13cc": 9174, "\u13f3\u13aa\u13db\u13be": 9175, "\u2581\u13a8\u13e3\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 9176, "\u13f2\u13b2": 9177, "\u2581\u13a2\u13e5\u13c2\u13ac\u13ce\u13b2\u13a2": 9178, "\u2581\u13cd\u13a9\u13ef\u13d3\u13c5\u13cf": 9179, "\u13a9\u13a9\u13a1\u13b5": 9180, "\u2581\u13d3\u13f3\u13cd\u13d5\u13b8\u13af": 9181, "\u2581\u13a4\u13e4\u13e5\u13cd\u13d7": 9182, "\u2581\u13a6\u13c1\u13d0\u13a0\u13cd\u13ac": 9183, "\u2581\u13c5\u13e9\u13db\u13c1\u13cd\u13d7": 9184, "\u2581\u13cd\u13c6\u13d5\u13c1\u13b8": 9185, "\u2581\u13a2\u13e8\u13f2\u13a2\u13f3": 9186, "\u2581\u13a0\u13d5\u13c4": 9187, "\u2581\u13a0\u13d5\u13b0\u13af\u13cd\u13d7": 9188, "\u2581\u13a2\u13f3\u13e5\u13b6\u13d3": 9189, "\u13d3\u13c4\u13f4\u13db\u13be": 9190, "\u2581\u13eb\u13e8\u13f2\u13ea\u13b3\u13c1\u13d7\u13f1": 9191, "\u2581\u13d7\u13e3\u13e0\u13f1\u13b8\u13a9": 9192, "\u2581\u13a4\u13c2\u13ef\u13d9\u13b4": 9193, "\u2581\u13da\u13c5\u13eb\u13cd\u13d4\u13c5": 9194, "\u2581\u13b9\u13da": 9195, "\u2581\u13e7\u13d3\u13b4\u13c5\u13d4\u13c5\u13af": 9196, "\u2581\u13c4\u13be\u13cd\u13d5\u13cd\u13d7": 9197, "\u2581\u13a0\u13a6\u13ec\u13a5": 9198, "\u2581\u13d5\u13a6\u13b6\u13cd\u13ac": 9199, "\u13f4\u13b3\u13ce\u13a2": 9200, "\u2581\u13c4\u13d3\u13a8\u13d2": 9201, "\u2581\u13a0\u13ef\u13a3\u13a2": 9202, "\u2581\u13a0\u13be\u13b5\u13cd\u13d4\u13f4\u13b2\u13cd\u13ac": 9203, "\u2581\u13a2\u13f2\u13a6\u13db\u13c1\u13d7\u13f1": 9204, "\u2581\u13e4\u13e5\u13a4\u13cd\u13d5\u13ce\u13d7\u13f1": 9205, "\u2581\u13f1\u13d3\u13a8\u13cf": 9206, "\u2581\u13a3\u13e3\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 9207, "\u2581\u13af\u13c5\u13a6\u13b8": 9208, "\u2581\u13a2\u13d5\u13ae\u13cd\u13d7": 9209, "\u2581\u13e7\u13be\u13c1\u13b3\u13d7\u13cd\u13d7\u13f1": 9210, "\u2581\u13e5\u13c4\u13ea\u13ce\u13b4\u13a2": 9211, "\u2581\u13cb\u13d7\u13f1": 9212, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d7": 9213, "\u2581\u13a6\u13c1\u13b5\u13db": 9214, "\u2581\u13af\u13c1\u13d2\u13ad": 9215, "\u13a6\u13ce\u13cd\u13d4\u13c5": 9216, "\u13d9\u13b0\u13ce": 9217, "\u2581\u13db\u13a8\u13e5": 9218, "\u2581\u13ef\u13c6\u13db\u13a6": 9219, "\u2581\u13f1\u13d9\u13a6\u13f0": 9220, "\u2581\u13a2\u13e8\u13ef\u13db\u13c1\u13d7\u13f1": 9221, "\u2581\u13c2\u13a6\u13c1\u13b2\u13be": 9222, "\u13d5\u13b0\u13af\u13cd\u13d9\u13d7\u13f1": 9223, "\u2581\u13a2\u13e4\u13b3\u13d7\u13d9\u13ad": 9224, "\u2581\u13a0\u13be\u13d4\u13cd\u13a9\u13cd\u13a9": 9225, "\u2581\u13a2\u13a4\u13b7\u13e4": 9226, "\u13a5\u13cd\u13a9\u13f1\u13a9": 9227, "\u2581\u13a4\u13d3\u13c5\u13d3\u13db\u13a9": 9228, "\u2581\u13a2\u13e5\u13b7\u13a8\u13cd\u13d7": 9229, "\u2581\u13a0\u13dd\u13b2": 9230, "\u2581\u13a2\u13e3\u13d3\u13ef\u13eb\u13cd\u13a8\u13cd\u13d7": 9231, "\u2581\u13cd\u13a9\u13ef\u13d8\u13c3\u13ae\u13b8\u13ad": 9232, "\u2581\u13e3\u13be\u13d3\u13be\u13cf\u13c2\u13d9\u13ad": 9233, "\u2581\u13e5\u13a6\u13b7\u13af\u13cd\u13d7\u13ad": 9234, "\u2581\u13a2\u13f3\u13ea\u13cd\u13d8": 9235, "\u13ab\u13f4": 9236, "\u2581\u13c2\u13e5\u13ea\u13d2\u13ad": 9237, "\u2581\u13d7\u13a6\u13c5\u13cd\u13d9\u13d7": 9238, "\u2581\u13f1\u13e3\u13f0\u13b8\u13c5": 9239, "\u2581\u13f3\u13f2\u13e4\u13a2": 9240, "\u2581\u13a4\u13c2\u13d1\u13b5\u13aa\u13e4": 9241, "\u2581\u13c5\u13d3\u13f3\u13c4\u13aa\u13e8\u13af": 9242, "\u2581\u13be\u13be\u13d3\u13c1\u13df\u13f4\u13cf\u13d2": 9243, "\u13b6\u13c5\u13ae\u13b8": 9244, "\u2581\u13be\u13e5\u13ea\u13ce\u13b8": 9245, "\u2581\u13f1\u13e6\u13b5\u13a6": 9246, "\u2581\u13a2\u13e3\u13e3\u13ea\u13d0\u13b8\u13cd\u13d3": 9247, "\u2581\u13d7\u13a6\u13da\u13d7\u13f1": 9248, "\u2581\u13a2\u13f3\u13e9\u13aa\u13d7": 9249, "\u2581\u13a4\u13e9\u13a6\u13d8": 9250, "\u2581\u13d3\u13c2\u13be\u13cc\u13db": 9251, "\u2581\u13af\u13eb\u13c5": 9252, "\u2581\u13d7\u13a8\u13aa\u13cd": 9253, "\u2581\u13a0\u13c2\u13b5\u13eb": 9254, "\u2581\u13d5\u13e8\u13c1\u13cd\u13d7": 9255, "\u2581\u13ac\u13a9\u13b7\u13e4\u13d7\u13f1": 9256, "\u2581\u13f1\u13be\u13e5\u13b8\u13c9\u13d9": 9257, "\u13ce\u13d2\u13ae": 9258, "\u2581\u13e5\u13ef\u13b5\u13aa\u13c1\u13af": 9259, "\u13e0\u13af\u13cd\u13d7\u13f1": 9260, "\u2581\u13d7\u13d1\u13eb\u13cd\u13a9": 9261, "\u2581\u13cd\u13a9\u13c2\u13cc\u13c5\u13ad": 9262, "\u2581\u13d7\u13cb\u13c5": 9263, "\u2581\u13a0\u13e5\u13cc\u13b3\u13d3\u13c5": 9264, "\u2581\u13a4\u13d3\u13c5\u13d8\u13cc\u13c5": 9265, "\u13d3\u13d0\u13b4": 9266, "st": 9267, "\u2581\u13a0\u13a9\u13c1\u13a2\u13cd\u13d7\u13f1": 9268, "\u2581\u13a6\u13b8\u13b3": 9269, "\u2581\u13a1\u13d9\u13d9\u13f1": 9270, "\u2581\u13a2\u13e8\u13a5\u13cf": 9271, "\u2581\u13a0\u13ef\u13d6\u13c2": 9272, "\u2581\u13cd\u13a9\u13e9\u13af": 9273, "\u2581\u13a1\u13e5\u13ef\u13a1\u13cd\u13d7": 9274, "\u2581\u13a2\u13e6\u13af\u13f3\u13c5": 9275, "\u2581\u13a8\u13e5\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac": 9276, "\u2581\u13e6\u13e5\u13a6\u13d4\u13ad": 9277, "\u2581\u13a4\u13f0\u13e5\u13cd\u13a9": 9278, "\u2581\u13d7\u13e3\u13da\u13d9": 9279, "\u2581\u13a1\u13e6\u13a2\u13f3\u13d7\u13f1": 9280, "\u2581\u13ac\u13e9\u13c2\u13f4\u13ae\u13a2": 9281, "\u13c4\u13b5\u13cd\u13d3\u13c1\u13b4": 9282, "\u2581\u13a4\u13c2\u13f4\u13d4\u13c2\u13af\u13cd\u13d7\u13f1": 9283, "\u2581\u13da\u13c2\u13b5\u13e6\u13db": 9284, "\u2581\u13d7\u13c2\u13c3\u13a9\u13cd\u13a9": 9285, "\u2581\u13e5\u13a6\u13c1\u13ad": 9286, "\u2581\u13e5\u13f0\u13b8\u13a5": 9287, "\u2581\u13ad\u13b4\u13b2\u13a6": 9288, "\u2581\u13eb\u13af\u13b6\u13af": 9289, "\u2581\u13da\u13c3\u13b8\u13ce\u13a2": 9290, "\u2581\u13f1\u13e5\u13e9\u13d8\u13ad": 9291, "\u2581\u13a2\u13e8\u13aa\u13e9\u13db\u13d7\u13f1": 9292, "\u2581\u13a4\u13be\u13d3\u13c5\u13d4\u13e9\u13d5": 9293, "\u2581\u13e5\u13da\u13d9\u13a0": 9294, "\u2581\u13c2\u13aa\u13b5\u13ac\u13be": 9295, "\u2581\u13a2\u13e8\u13b7\u13e4\u13d7\u13f1": 9296, "\u2581\u13d5\u13e8\u13d7\u13cd\u13a8\u13cd\u13d7": 9297, "\u2581\u13a4\u13d3\u13b5\u13c1\u13af\u13d5": 9298, "\u2581\u13a4\u13ec\u13af\u13f3\u13af\u13cd\u13db": 9299, "\u2581\u13d5\u13a8\u13e5\u13b5\u13a5\u13c2": 9300, "\u2581\u13da\u13c3\u13af\u13f3": 9301, "\u2581\u13a0\u13c6\u13d9\u13b4\u13b0\u13d2": 9302, "\u2581\u13b0\u13af\u13f3\u13b2\u13a6": 9303, "\u13ef\u13d3\u13c5\u13cf": 9304, "\u2581\u13a5\u13a9\u13cd\u13d5\u13b8\u13d7\u13f1": 9305, "\u2581\u13d5\u13e5\u13b8\u13c9\u13d5\u13cd\u13d7": 9306, "\u2581\u13a0\u13a6\u13b8\u13e5": 9307, "\u2581\u13a0\u13ab\u13e3": 9308, "\u2581\u13f1\u13a6\u13d5\u13a3\u13cd\u13a6": 9309, "\u2581\u13ef\u13f2\u13b1\u13af": 9310, "\u2581\u13a4\u13b5\u13cd\u13c6\u13d9\u13c5": 9311, "\u2581\u13f1\u13be\u13db\u13c1\u13ae": 9312, "\u2581\u13a2\u13ef\u13c6\u13b5\u13cd\u13d3\u13c1\u13d7": 9313, "\u2581\u13e3\u13cd\u13c9\u13c2\u13aa\u13d7": 9314, "\u2581\u13a4\u13c2\u13f2\u13cd\u13d9\u13d7\u13f1": 9315, "\u2581\u13a6\u13d3\u13c6\u13df": 9316, "\u13e0\u13f1\u13b8\u13a9": 9317, "\u2581\u13da\u13f0\u13b5\u13d2": 9318, "\u2581\u13af\u13f2\u13cd\u13d7\u13cd\u13a9": 9319, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a9": 9320, "\u2581\u13a4\u13cd\u13c6\u13b8\u13af\u13d7\u13d2\u13a9": 9321, "\u2581\u13e7\u13c2\u13a6\u13ef\u13b7\u13d7": 9322, "\u2581\u13a0\u13a9\u13be\u13c4\u13aa\u13eb\u13ce\u13b8\u13a9": 9323, "\u2581\u13a0\u13a9\u13b8\u13d7\u13cd\u13a9": 9324, "\u13aa\u13b2\u13cd\u13d4\u13c2": 9325, "\u2581\u13a8\u13aa\u13e2\u13c5\u13af": 9326, "\u2581\u13d3\u13c6\u13b4\u13b8": 9327, "\u2581\u13a6\u13b6\u13d0\u13c5": 9328, "\u2581\u13a0\u13be\u13d3\u13c1\u13df\u13f4\u13cf\u13d2": 9329, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d9\u13d7\u13f1": 9330, "\u2581\u13e9\u13f2\u13af": 9331, "\u2581\u13a2\u13e5\u13b7\u13e4\u13d7": 9332, "\u2581\u13ad\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac": 9333, "\u2581\u13ac\u13e9\u13cd\u13da\u13a2\u13cd\u13d7": 9334, "\u2581\u13e7\u13e9\u13bf": 9335, "\u2581\u13a3\u13e3\u13a2\u13d2": 9336, "\u2581\u13da\u13be\u13b5\u13c2\u13ac\u13ac": 9337, "\u2581\u13e7\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7\u13f3": 9338, "\u2581\u13e3\u13d3\u13c5\u13d6\u13d7\u13f1": 9339, "\u2581\u13a4\u13d3\u13f4\u13d2\u13a9": 9340, "\u2581\u13e5\u13a6\u13e1\u13a6": 9341, "\u2581\u13eb\u13c4\u13e9\u13c1\u13b4": 9342, "\u2581\u13e5\u13a6\u13d8\u13cf\u13d7\u13e2": 9343, "\u2581\u13e7\u13c2\u13f2\u13b1\u13af\u13cd\u13d7": 9344, "\u2581\u13a4\u13a7\u13f2\u13d3": 9345, "\u2581\u13a4\u13b5\u13cd\u13db\u13e7\u13c5": 9346, "\u2581\u13a4\u13b1\u13cd\u13d5\u13ce\u13b4": 9347, "\u2581\u13a4\u13b5\u13cd\u13ab\u13ee": 9348, "\u2581\u13a4\u13b5\u13ec\u13a2\u13cd\u13d7": 9349, "\u2581\u13a4\u13ef\u13cd\u13da\u13ce\u13a2": 9350, "\u2581\u13e7\u13be\u13d3\u13b5": 9351, "\u2581\u13a8\u13e5\u13db\u13a6": 9352, "\u2581\u13c2\u13ac\u13e9\u13cd\u13db": 9353, "\u2581\u13ed\u13d5\u13b5\u13a8": 9354, "\u13b1\u13e9": 9355, "\u13c5\u13ee\u13a6": 9356, "\u2581\u13a0\u13a9\u13c1\u13ab": 9357, "\u2581\u13a0\u13c6\u13ce\u13b5\u13d4\u13c5": 9358, "\u2581\u13c5\u13db\u13c1\u13b5": 9359, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7\u13f1": 9360, "\u2581\u13a0\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a9": 9361, "\u2581\u13a4\u13c5\u13a6\u13b3\u13b2": 9362, "\u13d1\u13e9": 9363, "\u2581\u13a2\u13e3\u13d7\u13d4\u13cd\u13d7\u13f1": 9364, "\u2581\u13e3\u13f4\u13cd\u13d7": 9365, "\u2581\u13a4\u13bf\u13ec\u13a1": 9366, "\u2581\u13be\u13c6\u13b5\u13cd\u13d4\u13c1\u13b8": 9367, "\u2581\u13a0\u13f1\u13cd\u13a8\u13cd\u13d7": 9368, "\u2581\u13e5\u13c2\u13ac\u13c1\u13ad": 9369, "\u2581\u13a0\u13a9\u13c1\u13a2\u13cd\u13d4\u13c5": 9370, "\u2581\u13a4\u13df\u13b6\u13a5\u13a9": 9371, "\u2581\u13aa\u13b5\u13a6\u13d3": 9372, "\u2581\u13e5\u13c1\u13e3\u13db\u13c1": 9373, "\u2581\u13e5\u13a6\u13d8\u13ef": 9374, "\u13c2\u13b6\u13cc": 9375, "\u2581\u13a1\u13a9\u13e9": 9376, "\u2581\u13c4\u13db\u13c1\u13b5\u13d9\u13b8": 9377, "\u2581\u13a0\u13be\u13b5\u13b2\u13a2": 9378, "\u2581\u13a0\u13b6\u13bb": 9379, "\u2581\u13a2\u13e3\u13b4\u13c2\u13d3\u13cd\u13d7\u13f1": 9380, "\u2581\u13ed\u13d7\u13c5\u13ce": 9381, "\u2581\u13d9\u13db\u13a0\u13b4": 9382, "\u2581\u13da\u13c4\u13aa\u13eb\u13ce": 9383, "\u2581\u13a4\u13f0\u13e3": 9384, "\u2581\u13d3\u13cd\u13d5\u13b5\u13cd\u13ac\u13a9": 9385, "\u2581\u13e5\u13e7": 9386, "\u2581\u13a3\u13a6\u13c5\u13c5\u13a9": 9387, "\u2581\u13b9\u13cc": 9388, "\u2581\u13d7\u13a6\u13c1\u13b6": 9389, "\u13a4\u13f0\u13b8\u13d7": 9390, "\u2581\u13c4\u13db\u13c1\u13b3": 9391, "\u2581\u13e4\u13e3\u13db\u13c5\u13a9": 9392, "\u2581\u13af\u13c3\u13ae\u13cd\u13a9": 9393, "\u2581\u13a2\u13e4\u13d9\u13ae\u13cd\u13d7": 9394, "\u2581\u13a4\u13be\u13d3\u13c4\u13b8\u13d7": 9395, "\u2581\u13a4\u13c2\u13b7\u13af\u13cd\u13d7": 9396, "\u13e5\u13f2\u13a4\u13af": 9397, "\u13ef\u13e0\u13a2\u13cd\u13d3\u13c1\u13b5": 9398, "\u13e5\u13cd\u13a6\u13a2\u13ad": 9399, "\u2581\u13f3\u13e9\u13db\u13ae\u13a2": 9400, "\u13cb\u13a8\u13eb": 9401, "\u2581\u13a4\u13ad\u13c4\u13ee": 9402, "\u2581\u13e7\u13ad\u13be\u13ec": 9403, "\u2581\u13f3\u13ea\u13b5\u13ce": 9404, "\u13c2\u13a6\u13db\u13c1\u13b0\u13a2": 9405, "\u13cd\u13da\u13a2\u13cf": 9406, "\u2581\u13a5\u13d8\u13cd\u13a9": 9407, "\u2581\u13a0\u13c6\u13e6": 9408, "\u2581\u13e7\u13ea\u13f2\u13b2\u13cd\u13a9": 9409, "\u2581\u13a2\u13f3\u13be\u13d5\u13d8\u13f4\u13db": 9410, "\u13f0\u13eb\u13d2": 9411, "\u2581\u13a4\u13d7\u13e9\u13d2\u13a9": 9412, "\u2581\u13a2\u13ac\u13e9\u13c2\u13a9\u13cd\u13d4\u13c1": 9413, "\u2581\u13a6\u13c3\u13d9\u13d7": 9414, "\u2581\u13d3\u13aa\u13e9\u13d8\u13cd\u13ac": 9415, "\u13a9\u13e9\u13db\u13b2\u13a9": 9416, "\u2581\u13da\u13ad\u13c1\u13a6\u13b8": 9417, "\u2581\u13a0\u13c6\u13e2\u13c8\u13cd\u13d7\u13f1": 9418, "\u2581\u13a0\u13d3\u13a6\u13d8\u13d5\u13af": 9419, "\u2581\u13e7\u13ac\u13e9\u13df": 9420, "\u2581\u13a4\u13cd\u13c6\u13b8\u13ae": 9421, "\u2581\u13d7\u13d3\u13d8\u13cd\u13d7": 9422, "\u13e7\u13a7\u13b8\u13e8": 9423, "\u2581\u13a0\u13db\u13c1\u13ae\u13cd\u13d7": 9424, "\u2581\u13f1\u13e6\u13af\u13f3\u13b2\u13a6": 9425, "\u13b4\u13b3\u13db\u13c5": 9426, "\u2581\u13a2\u13e5\u13a6\u13d4\u13af\u13f3": 9427, "\u2581\u13da\u13cd\u13da\u13a2\u13ce": 9428, "\u2581\u13a0\u13b5\u13cd\u13a9\u13cd\u13d7": 9429, "\u2581\u13eb\u13da\u13a7\u13be\u13c5": 9430, "\u2581\u13a0\u13e5\u13b8\u13a8\u13b3\u13cd\u13d9\u13d7": 9431, "\u2581\u13a2\u13ef\u13a9\u13ea\u13cd\u13d7\u13f1": 9432, "\u2581\u13d7\u13be\u13df": 9433, "\u2581\u13a0\u13c6\u13cd\u13a6\u13f1": 9434, "\u2581\u13a0\u13d3\u13ec\u13cd\u13d7\u13f1": 9435, "\u2581\u13a4\u13c2\u13aa\u13b5\u13f0\u13d7\u13f1": 9436, "\u2581\u13a3\u13be\u13eb\u13f1": 9437, "\u2581\u13e3\u13f1\u13b5\u13d9\u13af": 9438, "\u13e3\u13d8\u13c3\u13b8\u13ad": 9439, "\u2581\u13e7\u13ea\u13d9\u13b5\u13cd\u13d7\u13f1": 9440, "\u2581\u13a2\u13a9\u13cd\u13d5\u13b5\u13ad": 9441, "\u2581\u13eb\u13d7\u13a6\u13d8": 9442, "\u2581\u13a6\u13d3\u13eb\u13d4\u13c5": 9443, "\u13d5\u13d9\u13b2\u13a9": 9444, "\u2581\u13d7\u13a6\u13d8\u13cd\u13d7": 9445, "\u2581\u13a2\u13e5\u13d9\u13be": 9446, "\u2581\u13ad\u13c5\u13d3\u13d3": 9447, "\u2581\u13eb\u13be\u13db\u13a6": 9448, "\u2581\u13a0\u13c2\u13aa\u13e9\u13d8\u13cd\u13a9": 9449, "\u2581\u13f1\u13c4\u13be\u13cd\u13d7": 9450, "\u13ec\u13cd\u13aa\u13a2": 9451, "\u2581\u13e7\u13f4\u13b4": 9452, "\u2581\u13e5\u13da\u13a6\u13d2\u13cd\u13d9": 9453, "\u2581\u13e7\u13cc\u13a8": 9454, "\u2581\u13bb\u13cc": 9455, "\u2581\u13eb\u13e5\u13e4\u13a2": 9456, "\u2581\u13ed\u13b7\u13af\u13cd\u13d7": 9457, "\u2581\u13a6\u13d0\u13c2": 9458, "\u2581\u13d4\u13b7": 9459, "\u2581\u13ed\u13b3\u13db": 9460, "\u13cf\u13cf\u13cd\u13a9": 9461, "\u13a6\u13a7\u13b2\u13cd\u13a8\u13cd\u13d7": 9462, "\u2581\u13a2\u13e3\u13d9\u13b4\u13b0\u13af\u13cd\u13d7\u13f1": 9463, "\u13b5\u13ef\u13bb": 9464, "\u2581\u13a0\u13c2\u13cd\u13a6\u13f0\u13ac\u13cd\u13d4": 9465, "\u13c1\u13e2\u13d9\u13d7\u13f1": 9466, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d9": 9467, "\u2581\u13af\u13a6\u13d4\u13ae\u13cd\u13d7": 9468, "\u2581\u13be\u13d1\u13b5\u13aa\u13ac\u13be": 9469, "\u2581\u13e5\u13d5\u13d9\u13ad": 9470, "\u2581\u13e7\u13c4\u13aa\u13e4\u13a2": 9471, "\u2581\u13a1\u13e4\u13f2\u13c5\u13a2": 9472, "\u2581\u13a2\u13e8\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac\u13a2": 9473, "\u2581\u13ac\u13c1\u13e4\u13b2\u13a2": 9474, "\u2581\u13da\u13c3\u13ea\u13b8\u13a2": 9475, "\u2581\u13da\u13ea\u13e3\u13a6\u13b8\u13ae\u13a2": 9476, "\u2581\u13e7\u13be\u13c4\u13aa\u13e4\u13a2": 9477, "\u2581\u13e7\u13c1\u13e2\u13d4\u13c5\u13d2\u13a2": 9478, "\u2581\u13a4\u13be\u13d3\u13c1\u13df\u13f4\u13d2\u13d2\u13a2": 9479, "\u2581\u13a4\u13d3\u13c5\u13d4\u13d5\u13a2": 9480, "\u2581\u13c4\u13cd\u13d7\u13d5\u13ac\u13a2": 9481, "\u2581\u13d3\u13aa\u13c4\u13b4\u13a2": 9482, "\u2581\u13a2\u13e3\u13db\u13a9\u13cd\u13ac\u13a2": 9483, "\u2581\u13a0\u13a6\u13ec\u13a1\u13a2": 9484, "\u2581\u13a4\u13be\u13c1\u13e2\u13d4\u13c5\u13d2\u13a2": 9485, "\u2581\u13a7\u13c4\u13a6": 9486, "\u2581\u13f1\u13e5\u13e9\u13d8\u13cd\u13aa\u13a2": 9487, "\u13d3\u13e8\u13be\u13c4\u13aa\u13eb\u13ce\u13b5": 9488, "\u2581\u13e7\u13c2\u13b6\u13d2": 9489, "\u13cd\u13d3\u13e9\u13d5\u13aa\u13a2": 9490, "\u2581\u13a7\u13c1\u13c9\u13e5\u13ce": 9491, "\u2581\u13d5\u13ac\u13e9\u13d8\u13c3\u13ae\u13b4\u13a2": 9492, "\u2581\u13c4\u13ea\u13b5\u13cd": 9493, "\u2581\u13c2\u13a6\u13ea\u13a0": 9494, "\u2581\u13ac\u13c3\u13d3": 9495, "\u2581\u13a4\u13ac\u13a5\u13cd\u13ac": 9496, "\u13d3\u13b5\u13c5\u13df": 9497, "\u13d5\u13c1\u13b5": 9498, "\u2581\u13a8\u13e3\u13d3\u13d1\u13f4": 9499, "\u2581\u13d5\u13ad\u13d5\u13f2\u13b2\u13cd\u13ac\u13a2": 9500, "\u2581\u13d3\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8\u13a2": 9501, "\u2581\u13d7\u13e3\u13cf\u13b3\u13db\u13d7": 9502, "\u2581\u13a4\u13c2\u13c1\u13a2\u13cd\u13d7": 9503, "\u2581\u13e7\u13a6\u13d9\u13cd\u13d9\u13d7": 9504, "\u2581\u13f1\u13da\u13be\u13d3": 9505, "\u2581\u13eb\u13a4\u13c2\u13b6\u13ce\u13a2": 9506, "\u13cb\u13d5\u13e8": 9507, "\u2581\u13ac\u13e9\u13a8\u13f3\u13af": 9508, "\u2581\u13d7\u13e3\u13b5\u13c2\u13aa\u13af\u13cd\u13d9\u13d7\u13f1": 9509, "\u2581\u13d5\u13af\u13ec\u13c1\u13d7\u13cd\u13ac": 9510, "\u2581\u13da\u13c4\u13ec\u13a1\u13a2": 9511, "\u2581\u13dd\u13ec\u13da": 9512, "\u2581\u13af\u13b6\u13c1\u13a5\u13ad": 9513, "\u2581\u13a4\u13b8\u13c1": 9514, "\u13d6\u13cd\u13ac\u13a2": 9515, "\u2581\u13eb\u13c2\u13ac\u13a6": 9516, "\u2581\u13e9\u13e5\u13b3\u13a8": 9517, "\u2581\u13c4\u13df\u13c2\u13ac\u13ac": 9518, "\u2581\u13a4\u13cc\u13a8": 9519, "\u2581\u13ed\u13c5\u13aa\u13e4": 9520, "\u2581\u13a0\u13a9\u13c3\u13ae\u13cd\u13ac\u13a2": 9521, "\u2581\u13a4\u13f4\u13e8": 9522, "\u2581\u13a4\u13da\u13a2\u13cd\u13d3\u13c1\u13b8": 9523, "\u2581\u13a4\u13be\u13d3\u13c5\u13cd\u13d7": 9524, "\u2581\u13da\u13c2\u13b5\u13ec\u13e4\u13a2": 9525, "\u2581\u13e7\u13c2\u13e3\u13d4": 9526, "\u13cd\u13d4\u13e9\u13d5": 9527, "\u2581\u13da\u13c2\u13f4\u13b2": 9528, "\u2581\u13da\u13c5\u13e9\u13c1\u13a2": 9529, "\u2581\u13c5\u13db\u13be\u13b5\u13cd\u13d4\u13c2": 9530, "\u2581\u13c5\u13d3\u13a6\u13db\u13c1\u13b5": 9531, "\u2581\u13e8\u13d7\u13a6\u13da\u13ad": 9532, "\u2581\u13ed\u13d9\u13af\u13f3\u13b2": 9533, "\u2581\u13a4\u13be\u13c1\u13b3\u13d7\u13cd\u13d7\u13f1": 9534, "\u2581\u13cd\u13a9\u13cd\u13d5\u13b3": 9535, "\u2581\u13d3\u13aa\u13ea\u13b3\u13c2": 9536, "\u2581\u13a0\u13bb\u13b3\u13bb": 9537, "\u2581\u13a6\u13b3\u13a8\u13f0": 9538, "\u2581\u13a4\u13c2\u13db\u13d7\u13cd\u13a9": 9539, "\u2581\u13d3\u13c2\u13a7\u13bf\u13e9\u13d7": 9540, "\u2581\u13a4\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8\u13cd\u13d7": 9541, "\u2581\u13c3\u13a6\u13db\u13c1\u13b8": 9542, "\u2581\u13a2\u13f3\u13e9\u13c1\u13d7": 9543, "\u2581\u13ad\u13b5\u13d8": 9544, "\u2581\u13a0\u13d3\u13cf\u13ce": 9545, "\u2581\u13a4\u13e9\u13d3\u13b4": 9546, "\u2581\u13a2\u13a6\u13b5\u13cd\u13d3\u13c1\u13d7": 9547, "\u13a7\u13b2\u13cd\u13a9": 9548, "\u2581\u13d3\u13f0\u13e5\u13c1\u13b5": 9549, "\u2581\u13d7\u13e9\u13be\u13a8": 9550, "\u2581\u13e3\u13eb\u13ce\u13a2": 9551, "\u13aa\u13ea\u13b8\u13be": 9552, "\u2581\u13a6\u13b7\u13a8\u13cd\u13d7": 9553, "\u2581\u13cd\u13a9\u13c1\u13e5": 9554, "\u2581\u13a4\u13f0\u13be\u13a5": 9555, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d6\u13d9\u13d7": 9556, "\u2581\u13a4\u13d3\u13d9\u13b5\u13e3\u13d8": 9557, "\u2581\u13a0\u13ac\u13d4\u13c5\u13db": 9558, "\u2581\u13f1\u13a6\u13d7\u13ad": 9559, "\u2581\u13e7\u13c2\u13b7\u13e4\u13b8": 9560, "\u2581\u13a2\u13b3\u13cd\u13d3": 9561, "\u2581\u13da\u13c5\u13f4": 9562, "\u2581\u13f1\u13e5\u13c1\u13a6": 9563, "\u2581\u13a4\u13f4\u13b4\u13a2": 9564, "\u2581\u13f3\u13b5\u13ec\u13e8": 9565, "\u2581\u13a4\u13be\u13b3\u13cd\u13d3\u13a1\u13d7": 9566, "\u2581\u13f1\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8\u13cd\u13d7": 9567, "\u2581\u13a0\u13d3\u13cd\u13d5\u13b5\u13cd\u13a9": 9568, "\u2581\u13f1\u13c2\u13d9": 9569, "\u2581\u13d3\u13d5\u13f2": 9570, "\u2581\u13a8\u13e5\u13c3\u13ae\u13cd\u13ac\u13a2": 9571, "\u2581\u13a2\u13f3\u13c5\u13c1\u13af": 9572, "\u2581\u13a2\u13f3\u13cf\u13d7": 9573, "\u2581\u13a4\u13a6\u13d4\u13d4\u13c1\u13a2": 9574, "\u2581\u13a6\u13b5\u13e6\u13e9\u13db": 9575, "\u2581\u13f1\u13be\u13f0\u13cd\u13a8\u13cd\u13d7": 9576, "\u2581\u13d7\u13a8\u13e5\u13f0\u13af": 9577, "\u2581\u13c5\u13a9\u13d7\u13c2\u13c5\u13cc\u13d7": 9578, "\u2581\u13a3\u13a6\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 9579, "\u2581\u13a0\u13c2\u13aa\u13e9\u13d7\u13cd\u13ac": 9580, "\u2581\u13a4\u13aa\u13b5\u13f0\u13d7\u13f1": 9581, "\u2581\u13a0\u13c6\u13e4\u13b5\u13aa\u13af": 9582, "\u2581\u13a4\u13d7\u13cd\u13a6\u13b6\u13d7": 9583, "\u2581\u13eb\u13da\u13e9": 9584, "\u2581\u13a4\u13c2\u13bf\u13a5\u13a2": 9585, "\u2581\u13c2\u13ef\u13db\u13c2\u13cf": 9586, "\u13be\u13cd\u13c6\u13b6\u13cd": 9587, "\u2581\u13a4\u13d7\u13b4\u13ac": 9588, "\u2581\u13a4\u13c2\u13a7\u13ad\u13f2": 9589, "\u13cd\u13c6\u13c3\u13f4\u13aa": 9590, "\u2581\u13a0\u13f2\u13cd\u13d7\u13cd\u13aa": 9591, "\u2581\u13a6\u13ac\u13d9\u13d7": 9592, "\u13b5\u13b2\u13f2\u13b5": 9593, "\u2581\u13a4\u13f0\u13b8\u13d0\u13a2": 9594, "\u2581\u13a1\u13e4\u13b5\u13ce": 9595, "\u2581\u13c2\u13da\u13c2\u13a8\u13f3\u13d2": 9596, "\u2581\u13a0\u13c6\u13c5\u13db": 9597, "\u2581\u13d3\u13ab\u13e9": 9598, "\u13cd\u13da\u13a2\u13a1\u13b4": 9599, "\u13da\u13c1\u13a2": 9600, "\u13d3\u13c1\u13cf": 9601, "\u2581\u13e5\u13a6\u13d9": 9602, "\u2581\u13a4\u13cd\u13d7\u13a9\u13a8": 9603, "\u2581\u13ac\u13e9\u13c2\u13cd\u13a6\u13a9": 9604, "\u2581\u13ef\u13c3\u13af\u13f3\u13b2": 9605, "\u2581\u13b9\u13b3": 9606, "\u2581\u13d7\u13a6\u13c5\u13ac": 9607, "\u13c4\u13ec\u13a5\u13ad": 9608, "\u2581\u13a0\u13f4\u13d3\u13c6\u13b6\u13cd\u13ac": 9609, "\u2581\u13a3\u13e5\u13c3\u13ae\u13ad": 9610, "\u2581\u13a0\u13b5\u13f0\u13a2\u13b6\u13a6": 9611, "\u2581\u13a0\u13ad\u13be\u13ec": 9612, "\u13a6\u13c2\u13cd\u13ac": 9613, "\u2581\u13a2\u13d7\u13b9": 9614, "\u2581\u13a0\u13c2\u13c3\u13b2\u13cd\u13a8": 9615, "\u2581\u13a2\u13e3\u13b5\u13c2\u13ac\u13c1": 9616, "\u2581\u13a0\u13e3\u13b3\u13a9": 9617, "\u2581\u13a2\u13b6\u13c2": 9618, "\u2581\u13da\u13c2\u13c2\u13f4\u13b2": 9619, "\u2581\u13a8\u13e5\u13d9\u13b5\u13cd\u13d7": 9620, "\u2581\u13ac\u13e9\u13d5\u13b0\u13af\u13cd": 9621, "\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13d7\u13f1": 9622, "\u2581\u13d9\u13d3\u13e8": 9623, "\u2581\u13d9\u13db\u13c1\u13b5": 9624, "\u2581\u13a0\u13ef\u13db\u13a5": 9625, "\u2581\u13a3\u13a9\u13aa\u13b2\u13af": 9626, "\u2581\u13a1\u13b5\u13bb": 9627, "\u13f4\u13b3\u13cf": 9628, "\u2581\u13e5\u13da\u13be\u13da": 9629, "\u13db\u13a6\u13c5\u13a2": 9630, "\u2581\u13a0\u13d2\u13db\u13d3": 9631, "\u2581\u13d3\u13d0\u13f4\u13a2": 9632, "\u2581\u13a0\u13be\u13b5\u13e5\u13d9\u13b2\u13cd\u13a6": 9633, "\u2581\u13a0\u13c3\u13ce\u13ae": 9634, "\u13ee\u13d5\u13e8": 9635, "\u2581\u13a6\u13c3\u13df": 9636, "\u2581\u13d7\u13e3\u13d8\u13c4\u13a6": 9637, "\u2581\u13a4\u13ec\u13af\u13e4": 9638, "\u13a0\u13d7\u13d2": 9639, "\u13d7\u13a6\u13d4\u13eb\u13a2\u13cd\u13d7\u13f1": 9640, "\u2581\u13a4\u13ec\u13cd\u13a9\u13b5": 9641, "\u2581\u13a4\u13f2\u13b1\u13cf\u13d5\u13be": 9642, "\u13c5\u13ac\u13db": 9643, "\u2581\u13a1\u13e5\u13f2\u13ad": 9644, "\u2581\u13d7\u13cd\u13c6\u13c2\u13aa\u13d7\u13cd\u13a9": 9645, "\u2581\u13a4\u13a7\u13ad\u13f2": 9646, "\u13c5\u13e8\u13be": 9647, "\u2581\u13da\u13ef\u13d9\u13ae\u13b4": 9648, "\u2581\u13a4\u13b5\u13db\u13d4\u13c1\u13a2": 9649, "\u13f1\u13b5\u13d5\u13b2\u13a2": 9650, "\u2581\u13a0\u13cd\u13c6\u13b8\u13b2\u13ad": 9651, "\u2581\u13e7\u13cc\u13b4\u13c5": 9652, "\u2581\u13a4\u13e3\u13a2\u13d2": 9653, "\u2581\u13a0\u13c6\u13b5\u13ae\u13b5\u13cd\u13d7\u13f1": 9654, "\u2581\u13a0\u13c6\u13b5\u13ae\u13b5\u13e8\u13a9": 9655, "\u2581\u13a8\u13aa\u13e3\u13b4\u13db": 9656, "\u2581\u13e3\u13c2\u13c3\u13ae\u13ad": 9657, "\u13c5\u13a5\u13cf": 9658, "\u2581\u13eb\u13a6\u13b6\u13cd\u13ac": 9659, "\u2581\u13da\u13aa\u13d3\u13c1\u13af": 9660, "\u2581\u13a0\u13db\u13c3": 9661, "\u13d0\u13f2": 9662, "\u2581\u13d6\u13d2\u13ad": 9663, "\u2581\u13a4\u13b5\u13e6\u13d4\u13c1\u13a2": 9664, "\u2581\u13f1\u13e3\u13da\u13b5\u13ad": 9665, "\u13a6\u13d3\u13b4\u13c5\u13af": 9666, "\u2581\u13f3\u13f0\u13b8\u13c5": 9667, "\u2581\u13a4\u13e9\u13c2\u13b4\u13a2": 9668, "\u2581\u13da\u13d9\u13a1\u13cd\u13d7": 9669, "\u2581\u13da\u13be\u13d3\u13e1\u13ac": 9670, "\u2581\u13da\u13ef\u13c5\u13ae\u13a2": 9671, "\u2581\u13f1\u13a8\u13e9": 9672, "\u2581\u13a0\u13f2\u13cd\u13a9": 9673, "\u2581\u13d3\u13c3\u13ce\u13b0": 9674, "\u2581\u13eb\u13e5\u13b6\u13a2": 9675, "\u2581\u13f3\u13c7\u13d7": 9676, "\u13b6\u13a9\u13af": 9677, "\u2581\u13a4\u13b8\u13d3\u13b8\u13a5\u13cd\u13a9": 9678, "\u2581\u13cd\u13a9\u13c1\u13ae\u13cd\u13d7": 9679, "\u2581\u13d7\u13a7\u13c3\u13a9\u13d3": 9680, "\u2581\u13c4\u13be\u13b5\u13cd\u13d4\u13c1\u13b2": 9681, "\u2581\u13a4\u13be\u13e4\u13b8\u13af": 9682, "\u2581\u13d5\u13a8\u13e5\u13c2": 9683, "\u2581\u13a0\u13c2\u13d4\u13f2\u13af\u13ae\u13cd\u13d7": 9684, "\u2581\u13e3\u13c1\u13e4\u13d7\u13f1": 9685, "\u2581\u13a4\u13d2\u13a6\u13b8\u13a9": 9686, "\u2581\u13a4\u13b8\u13d6\u13b4": 9687, "\u2581\u13d1\u13e5\u13b6": 9688, "\u13f0\u13d7\u13ad": 9689, "\u2581\u13a6\u13a7\u13ae": 9690, "\u2581\u13e6\u13a9\u13be\u13eb\u13f1": 9691, "\u13b5\u13c2\u13aa\u13af\u13cd\u13d9\u13d7\u13f1": 9692, "\u2581\u13d3\u13a9\u13a7\u13ad": 9693, "\u13ef\u13db\u13a9\u13ad": 9694, "\u13c2\u13dc": 9695, "\u2581\u13a4\u13cd\u13da\u13c5": 9696, "\u13c5\u13d3\u13a8\u13e8\u13c1\u13b5": 9697, "\u13a7\u13d4\u13c1": 9698, "\u13b5\u13cd\u13d3\u13c1\u13b5\u13d2": 9699, "\u2581\u13e3\u13db\u13c1\u13b8": 9700, "\u13db\u13c2\u13b8\u13c9\u13d4\u13c2": 9701, "\u2581\u13ac\u13c1\u13e4\u13b8\u13a2": 9702, "\u2581\u13aa\u13b6": 9703, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13c5\u13a9": 9704, "\u2581\u13a0\u13ef\u13e8\u13d7": 9705, "\u2581\u13d7\u13aa\u13cd\u13d3\u13ef": 9706, "\u2581\u13e7\u13b5\u13e0\u13ef\u13cd": 9707, "\u2581\u13a2\u13e3\u13d3\u13c1\u13ae\u13cd\u13d7": 9708, "\u2581\u13d9\u13e8\u13d7\u13cd": 9709, "\u2581\u13d5\u13a6\u13b5": 9710, "\u2581\u13d7\u13a6\u13e5\u13ef": 9711, "\u2581\u13a0\u13c5\u13ec\u13b3\u13d5\u13cd": 9712, "\u13cf\u13d4\u13d7\u13cd\u13d7\u13f1": 9713, "\u2581\u13a4\u13c2\u13cd\u13a6\u13a2\u13cd\u13d7": 9714, "\u2581\u13a4\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8\u13a9": 9715, "\u2581\u13a4\u13c2\u13f4\u13b2": 9716, "\u2581\u13f1\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8": 9717, "\u2581\u13e5\u13a8\u13b2": 9718, "\u2581\u13c4\u13c3\u13af": 9719, "\u2581\u13a2\u13e8\u13c3\u13c1\u13b8\u13af": 9720, "\u2581\u13e7\u13c2\u13d2\u13cd\u13d7\u13f1": 9721, "\u13d3\u13d5\u13b5\u13ce": 9722, "\u2581\u13c4\u13e6": 9723, "\u2581\u13a4\u13be\u13ce\u13b8": 9724, "\u2581\u13a4\u13cd\u13da\u13de": 9725, "\u2581\u13ac\u13e9\u13e1\u13d7\u13cd\u13ac\u13a2": 9726, "\u2581\u13a1\u13b3\u13bb": 9727, "\u2581\u13a6\u13ec\u13c2\u13cd\u13d7": 9728, "\u13c5\u13c5\u13a2": 9729, "\u2581\u13a3\u13e5\u13c1\u13a6": 9730, "\u2581\u13e7\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7": 9731, "\u13a6\u13aa\u13af\u13f3\u13d7": 9732, "\u2581\u13a6\u13f0\u13e3": 9733, "\u13d7\u13a8\u13b3\u13cd\u13d9\u13d7": 9734, "\u13df\u13c2\u13ac\u13c1\u13b0": 9735, "\u13d5\u13b0\u13cf": 9736, "\u13d3\u13d9\u13b5\u13e3\u13d8\u13f3": 9737, "\u13e8\u13cc": 9738, "\u13b7\u13a8\u13cd\u13d7": 9739, "\u2581\u13e3\u13da\u13b5": 9740, "\u13e5\u13f0\u13b8\u13c2": 9741, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6\u13db": 9742, "\u13e3\u13a6\u13d4\u13b2\u13db": 9743, "\u13d9\u13d3\u13c6\u13db": 9744, "\u13a5\u13cd\u13aa\u13a2": 9745, "\u2581\u13bb\u13b5": 9746, "\u2581\u13be\u13c2\u13ea\u13ad": 9747, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d3\u13db": 9748, "\u2581\u13a0\u13c6\u13d5\u13d7": 9749, "\u2581\u13d5\u13e5\u13a8\u13f3\u13d2": 9750, "\u2581\u13a1\u13a9\u13cd\u13d5\u13b8\u13d7\u13f1": 9751, "\u2581\u13a4\u13c2\u13c2\u13a9\u13db": 9752, "\u2581\u13a4\u13be\u13da\u13b8\u13c5\u13d7": 9753, "\u2581\u13a6\u13e2\u13d7": 9754, "\u2581\u13a1\u13e5\u13ef\u13c5\u13b2": 9755, "\u2581\u13e3\u13e3\u13ea\u13d0\u13b8\u13cd\u13d9\u13d7": 9756, "\u2581\u13da\u13be\u13d9": 9757, "\u2581\u13e3\u13f0\u13b8\u13d7": 9758, "\u2581\u13d3\u13c1\u13b6\u13db\u13a9": 9759, "\u2581\u13a9\u13a6\u13a8\u13a0\u13d7\u13d4\u13cd\u13d7": 9760, "\u2581\u13a4\u13cd\u13c6\u13d7\u13cd\u13d7\u13f1": 9761, "\u2581\u13f3\u13ec": 9762, "\u2581\u13a4\u13c4\u13b8\u13c5": 9763, "\u2581\u13c4\u13b5\u13cd\u13d3\u13c1\u13b2": 9764, "\u2581\u13a4\u13c2\u13f2\u13b8\u13af": 9765, "\u13b5\u13cd\u13d3\u13f4\u13c1\u13a2": 9766, "\u2581\u13cd\u13d4\u13b5": 9767, "\u2581\u13a0\u13d3\u13c1\u13b3": 9768, "\u2581\u13a4\u13a6\u13cc\u13ef\u13cd\u13d7\u13d5\u13a9": 9769, "\u2581\u13d7\u13a4\u13b7\u13e8": 9770, "\u2581\u13a8\u13e5\u13db\u13d9\u13d7\u13f1": 9771, "\u2581\u13a4\u13b5\u13cf\u13b2\u13ce": 9772, "\u13b5\u13cd\u13d9\u13d7\u13f1": 9773, "\u13c6\u13a7\u13bf\u13c5": 9774, "\u13d5\u13b6\u13c6\u13a1": 9775, "\u13d3\u13c1\u13b2\u13be": 9776, "\u2581\u13e3\u13b7\u13e8": 9777, "\u2581\u13f1\u13be\u13a9": 9778, "\u2581\u13a4\u13c1\u13b7\u13c5": 9779, "\u2581\u13a4\u13be\u13cf\u13c1": 9780, "\u2581\u13aa\u13ea\u13b3\u13c5": 9781, "\u2581\u13a3\u13a9\u13cd\u13a6\u13c5\u13e8\u13a2": 9782, "\u2581\u13a4\u13e9\u13be\u13ec\u13d2": 9783, "\u2581\u13e5\u13d3\u13a9\u13c2\u13f4": 9784, "\u13a8\u13a6\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13b8": 9785, "\u2581\u13d5\u13a6\u13ef\u13b8": 9786, "\u2581\u13d3\u13c2\u13d0": 9787, "\u2581\u13a4\u13d3\u13c5\u13d6\u13d7\u13cd\u13a8\u13a2": 9788, "\u2581\u13a4\u13be\u13e8\u13cf": 9789, "\u2581\u13d7\u13d7\u13d9\u13d7": 9790, "\u2581\u13a0\u13c2\u13b6\u13cd\u13ac": 9791, "\u2581\u13aa\u13af\u13cd\u13d7\u13cd\u13a9": 9792, "\u2581\u13da\u13c1\u13d2": 9793, "\u2581\u13a4\u13c5\u13aa\u13e8": 9794, "\u2581\u13a0\u13be\u13d9\u13b4\u13b0": 9795, "\u2581\u13a2\u13f3\u13c2\u13c1\u13ab\u13e5": 9796, "\u2581\u13a4\u13b5\u13a6\u13b5\u13f4": 9797, "\u2581\u13c4\u13d3\u13db\u13c1\u13b4": 9798, "\u2581\u13a4\u13a9\u13d3\u13df": 9799, "\u2581\u13c2\u13e3\u13b5\u13cd\u13d3\u13c1\u13b2\u13a2": 9800, "\u2581\u13c4\u13d3\u13ea\u13ce\u13b4": 9801, "\u2581\u13a4\u13be\u13d3\u13f4\u13b3\u13db": 9802, "\u2581\u13c4\u13be\u13db\u13bf\u13d5\u13ac\u13a2": 9803, "\u2581\u13d5\u13a6\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13a2": 9804, "\u2581\u13e5\u13ee\u13a6\u13d9\u13a2": 9805, "\u13d3\u13c5\u13eb\u13cd\u13a9": 9806, "\u13f1\u13b5\u13d3\u13cd\u13d7\u13f1": 9807, "\u2581\u13a4\u13ec\u13c1\u13d4\u13c5\u13a2": 9808, "\u2581\u13a4\u13c1\u13b3\u13eb\u13ce\u13b2\u13a2": 9809, "\u2581\u13a0\u13e9\u13d8\u13cd\u13aa\u13a2": 9810, "\u2581\u13e8\u13d3\u13b8\u13a2": 9811, "\u2581\u13ed\u13d3\u13be\u13eb\u13db\u13ae": 9812, "\u2581\u13a4\u13d7\u13d4\u13ae\u13a2": 9813, "\u2581\u13d7\u13aa\u13e2\u13d9\u13d7": 9814, "\u2581\u13a0\u13cc\u13cd\u13db": 9815, "\u2581\u13ed\u13e9\u13a6\u13d8\u13d7\u13d2\u13a2": 9816, "\u2581\u13d7\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7\u13f1": 9817, "\u2581\u13e7\u13b6\u13af\u13cd\u13d7": 9818, "\u13f2\u13af\u13cd\u13d7\u13f1": 9819, "\u2581\u13a0\u13f4\u13c8\u13db": 9820, "\u13cc\u13db\u13c5\u13a9": 9821, "\u2581\u13c2\u13a8\u13d0\u13a2": 9822, "\u2581\u13a0\u13b5\u13cc\u13b3\u13d7\u13cd\u13ac": 9823, "\u2581\u13a2\u13cd\u13db\u13ef": 9824, "\u2581\u13a0\u13e5\u13cd\u13d9\u13d7": 9825, "\u2581\u13a4\u13e9\u13db\u13db": 9826, "\u2581\u13a0\u13d3\u13b4\u13c2\u13cd\u13a9": 9827, "\u2581\u13e5\u13c4\u13cd\u13d9": 9828, "\u13f0\u13a9": 9829, "\u2581\u13a2\u13e3\u13b5\u13aa\u13af": 9830, "\u2581\u13c7\u13d3\u13c1\u13b3\u13bb\u13f1": 9831, "\u2581\u13e7\u13c2\u13a7\u13bf\u13e9\u13db\u13cd\u13d7\u13f1": 9832, "\u2581\u13a3\u13e5\u13ec\u13c2": 9833, "\u2581\u13a2\u13e3\u13a2\u13d2\u13a2": 9834, "\u2581\u13a6\u13e5\u13aa\u13a5": 9835, "\u2581\u13a4\u13f2\u13b0\u13d2": 9836, "\u2581\u13a0\u13d3\u13a8\u13d7\u13f1": 9837, "\u13d9\u13af\u13f3\u13b2\u13a6": 9838, "\u2581\u13c2\u13e3\u13b5\u13cd\u13d4\u13c5\u13a9": 9839, "\u2581\u13da\u13c2\u13b3\u13eb\u13e8\u13a9": 9840, "\u2581\u13a4\u13c1\u13b5\u13d2\u13a9": 9841, "\u13cf\u13d5\u13c5": 9842, "\u2581\u13a0\u13a9\u13f0\u13b8\u13d7\u13f1": 9843, "\u2581\u13e4\u13c6\u13c2": 9844, "\u2581\u13e5\u13c4\u13ea\u13d2\u13a9": 9845, "\u2581\u13a7\u13c1\u13a6": 9846, "\u2581\u13a4\u13d3\u13c5\u13d6\u13d7\u13cd\u13ac": 9847, "\u13ef\u13db\u13c2\u13cf": 9848, "\u2581\u13d3\u13a9\u13aa\u13b2\u13a9": 9849, "\u13cc\u13d9\u13ad": 9850, "\u2581\u13a4\u13d3\u13a2\u13c5": 9851, "\u2581\u13a4\u13be\u13b5\u13d6\u13b8\u13c5\u13a9": 9852, "\u2581\u13a0\u13be\u13d7\u13ad": 9853, "\u2581\u13b4\u13c8": 9854, "\u2581\u13f4\u13db\u13be": 9855, "\u2581\u13f1\u13c2\u13e3\u13b5\u13cd\u13d3\u13c1": 9856, "\u2581\u13da\u13ec\u13c1\u13d4\u13c1\u13a2": 9857, "\u2581\u13d3\u13cd\u13d4\u13c5\u13c5": 9858, "\u2581\u13a0\u13a6\u13b8\u13a2\u13db": 9859, "\u2581\u13ac\u13e9\u13c2\u13aa\u13e9\u13db\u13d7": 9860, "\u2581\u13a2\u13e3\u13d3\u13b3": 9861, "\u2581\u13e5\u13cd\u13d3\u13f1": 9862, "\u2581\u13e4\u13c5\u13cd\u13d7\u13f1": 9863, "\u2581\u13ac\u13e9\u13be\u13dd\u13a2": 9864, "\u2581\u13ad\u13d7\u13db": 9865, "\u2581\u13f3\u13c1\u13d0": 9866, "\u2581\u13ac\u13ec\u13ce\u13b8\u13a9": 9867, "\u13a7\u13aa": 9868, "\u13a6\u13b4\u13c2\u13d9\u13ad": 9869, "\u2581\u13d5\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 9870, "\u2581\u13d7\u13d3\u13be\u13c5": 9871, "\u2581\u13c2\u13d7\u13ac": 9872, "\u13ad\u13c1\u13a6\u13b8": 9873, "\u13cd\u13c6\u13d7\u13cd\u13d7\u13cd\u13a9": 9874, "\u2581\u13a4\u13de\u13a9": 9875, "\u13cd\u13d9\u13d7\u13cd\u13a8": 9876, "\u2581\u13cd\u13a9\u13c3\u13af\u13cf": 9877, "\u2581\u13c2\u13e3\u13db\u13c1\u13b2\u13be": 9878, "\u2581\u13cd\u13a9\u13ef\u13c5\u13db": 9879, "\u2581\u13eb\u13da\u13a7\u13bf\u13c5": 9880, "\u2581\u13ed\u13cd\u13c6": 9881, "\u13aa\u13b2\u13af": 9882, "\u2581\u13a4\u13be\u13d3\u13c5\u13a6\u13b8\u13db": 9883, "\u2581\u13eb\u13da\u13be\u13a7\u13bf\u13c5": 9884, "\u2581\u13a4\u13cd\u13da\u13a9\u13ce": 9885, "\u2581\u13da\u13f0\u13b5\u13af\u13cd\u13d4\u13c5": 9886, "\u2581\u13d5\u13ab\u13aa\u13d7\u13cd\u13ac": 9887, "\u2581\u13a0\u13d4\u13b4": 9888, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b0\u13a2": 9889, "\u2581\u13a8\u13e5\u13f0\u13b8\u13a2": 9890, "\u2581\u13a4\u13be\u13b7\u13d2": 9891, "\u13f0\u13a2\u13b8\u13cd\u13d7\u13f1": 9892, "\u2581\u13e5\u13eb\u13be": 9893, "\u2581\u13a4\u13c2\u13aa\u13c1": 9894, "\u13f0\u13a2\u13b5\u13d9\u13b2\u13a2": 9895, "\u2581\u13eb\u13da\u13e0\u13ce": 9896, "\u2581\u13d7\u13c1": 9897, "\u2581\u13a4\u13c2\u13d4\u13f2\u13ce\u13b4": 9898, "\u13f1\u13b5\u13d9\u13af": 9899, "\u2581\u13a4\u13c2\u13f2\u13b0\u13a2": 9900, "\u2581\u13a4\u13d3\u13d3\u13cd\u13ac": 9901, "\u13aa\u13b2\u13cd\u13d4\u13c5": 9902, "\u2581\u13a4\u13cd\u13ab\u13d5": 9903, "\u13d8\u13ad\u13c1": 9904, "\u2581\u13d5\u13a8\u13e5\u13f0": 9905, "\u2581\u13f1\u13d9\u13a8\u13d7": 9906, "\u13c1\u13d9\u13ae": 9907, "\u2581\u13f3\u13da\u13b5\u13cd\u13ac\u13be": 9908, "\u2581\u13a4\u13db\u13d7\u13d5\u13a8": 9909, "\u2581\u13b0\u13b5\u13c8": 9910, "\u2581\u13d7\u13aa\u13ea\u13b3\u13c5\u13af": 9911, "\u2581\u13a0\u13a9\u13cd\u13da": 9912, "\u2581\u13e5\u13e3\u13d3": 9913, "\u13ea\u13d2\u13db": 9914, "\u2581\u13ed\u13c2\u13a6\u13d0\u13a0": 9915, "\u2581\u13da\u13df\u13b6\u13cd\u13d3\u13c1\u13b4\u13a2": 9916, "\u2581\u13a4\u13c5\u13d3\u13db": 9917, "\u2581\u13a4\u13c3\u13f4\u13a9": 9918, "\u2581\u13a4\u13be\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5\u13af": 9919, "\u2581\u13d1\u13a0": 9920, "\u2581\u13a1\u13e5\u13cd\u13a6\u13c5\u13e4": 9921, "\u2581\u13a0\u13c2\u13b7\u13ac": 9922, "\u2581\u13f1\u13ee": 9923, "\u13b7\u13b3": 9924, "\u13f4\u13b2": 9925, "\u2581\u13d7\u13d3\u13a8": 9926, "\u2581\u13d5\u13e5\u13b5\u13b7": 9927, "\u2581\u13a1\u13e3\u13d9": 9928, "\u2581\u13f2\u13a9\u13be": 9929, "\u2581\u13e9\u13a9\u13b6\u13d2\u13a9": 9930, "\u2581\u13a2\u13f3\u13ea\u13cd\u13d7\u13f1": 9931, "\u2581\u13f1\u13cd\u13a9\u13c3\u13c1\u13b4": 9932, "\u2581\u13a2\u13b5\u13bb": 9933, "\u2581\u13a4\u13a6\u13d8\u13d7\u13cd\u13d7\u13f1": 9934, "\u13e0\u13a0\u13d2\u13a9": 9935, "\u2581\u13a4\u13cd\u13c6\u13b8\u13ad": 9936, "\u2581\u13c2\u13e5\u13c3\u13af": 9937, "\u2581\u13a4\u13be\u13c1\u13b6\u13d4\u13c5\u13a9": 9938, "\u2581\u13d3\u13c2\u13cd\u13a6\u13a2": 9939, "\u2581\u13a2\u13e3\u13a8\u13f3\u13c5": 9940, "\u2581\u13a4\u13ee\u13d4\u13c5\u13a9": 9941, "\u2581\u13d5\u13da": 9942, "\u2581\u13a0\u13a9\u13f0\u13e8": 9943, "\u2581\u13a7\u13c1\u13c9\u13a8\u13a2": 9944, "\u2581\u13a2\u13e3\u13db\u13d3\u13cd\u13d7\u13cd": 9945, "\u13dd\u13c5\u13af": 9946, "\u2581\u13e5\u13eb\u13af": 9947, "\u2581\u13a0\u13ef\u13a1\u13a2": 9948, "\u2581\u13e7\u13a6\u13bf\u13c1": 9949, "\u2581\u13d5\u13a8\u13b6": 9950, "\u2581\u13aa\u13d9\u13af": 9951, "\u13cd\u13ac\u13f0\u13c3": 9952, "\u2581\u13a4\u13cd\u13d7\u13f0\u13ac": 9953, "\u2581\u13a0\u13be\u13a2\u13ce\u13a2": 9954, "\u2581\u13a4\u13c2\u13c4\u13aa\u13a2\u13cd\u13d7": 9955, "\u2581\u13f1\u13c2\u13ac\u13a6": 9956, "\u2581\u13f3\u13f0\u13b8\u13ad": 9957, "\u2581\u13a0\u13c2\u13c1\u13c9\u13cd": 9958, "\u13eb\u13c2\u13f4": 9959, "\u2581\u13a4\u13c3\u13e2\u13c5\u13af": 9960, "\u13d8\u13c1\u13aa\u13a2": 9961, "\u2581\u13a3\u13e5\u13a9\u13b5\u13f2\u13ac": 9962, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d4\u13c1\u13a2": 9963, "\u13cd\u13a9\u13b3\u13db": 9964, "\u13da\u13be\u13da\u13eb\u13cd\u13d4\u13c1\u13a2": 9965, "\u2581\u13a2\u13e7\u13d3": 9966, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13d4\u13c5": 9967, "\u13db\u13bf": 9968, "\u2581\u13a2\u13e3\u13d3\u13c1\u13df\u13f4\u13cf\u13d2\u13a2": 9969, "\u13a9\u13e0\u13eb\u13cd": 9970, "\u2581\u13a0\u13be\u13d3\u13c5\u13d6\u13b5\u13d9": 9971, "\u2581\u13e5\u13c4\u13b5\u13cd\u13d4\u13c1\u13a2": 9972, "\u2581\u13a0\u13c2\u13ab": 9973, "\u2581\u13a4\u13d8\u13c3\u13b4\u13a2": 9974, "\u2581\u13a4\u13ea\u13b2\u13a2": 9975, "\u13c2\u13d0\u13d7": 9976, "\u2581\u13ae\u13d9\u13b2": 9977, "\u2581\u13a0\u13c2\u13f2\u13af\u13b2": 9978, "\u2581\u13a4\u13b5\u13e0\u13ef\u13cd\u13db": 9979, "\u2581\u13e5\u13a6\u13b7\u13aa\u13a2": 9980, "\u2581\u13a4\u13be\u13d6": 9981, "\u2581\u13a4\u13c1\u13c9\u13e4\u13a2": 9982, "\u2581\u13a4\u13ea\u13d8\u13c1\u13a2": 9983, "\u13b6\u13d2\u13cd\u13d9\u13d7\u13f1": 9984, "\u2581\u13eb\u13b2\u13a6": 9985, "\u2581\u13d3\u13c2\u13c5\u13ac": 9986, "\u2581\u13f3\u13ec\u13b5\u13e4": 9987, "\u2581\u13ad\u13a7": 9988, "\u2581\u13a0\u13e5\u13c1\u13d7\u13f1": 9989, "\u2581\u13d2\u13cd\u13a6": 9990, "\u2581\u13c2\u13a6\u13c5\u13c5": 9991, "\u2581\u13be\u13be\u13db\u13c1\u13ae": 9992, "\u2581\u13a0\u13df\u13c2\u13ac\u13c1": 9993, "\u2581\u13eb\u13da\u13ef": 9994, "\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13ad": 9995, "\u2581\u13a0\u13d0\u13e2\u13a2\u13cd\u13d7\u13cd\u13ac\u13a2": 9996, "\u2581\u13a4\u13be\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5": 9997, "\u2581\u13e5\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8": 9998, "\u2581\u13a4\u13c1\u13b8\u13d4\u13c1\u13a2": 9999, "\u13ef\u13c5\u13ae\u13a2": 10000, "\u2581\u13c4\u13c5\u13c1\u13b4\u13a2": 10001, "\u2581\u13a0\u13c2\u13f1\u13d9": 10002, "\u2581\u13a4\u13ea\u13b7\u13a9": 10003, "\u2581\u13a0\u13cd\u13a7": 10004, "\u2581\u13e7\u13c2\u13c1\u13d7\u13f1": 10005, "\u2581\u13e4\u13aa\u13a2": 10006, "\u2581\u13a6\u13b6\u13d0\u13b2\u13cd": 10007, "\u13c2\u13d9\u13b8\u13af": 10008, "\u2581\u13d7\u13c1\u13b6\u13d7": 10009, "\u2581\u13a4\u13c5\u13d5\u13e8": 10010, "\u2581\u13a0\u13c2\u13b1": 10011, "\u2581\u13d7\u13aa\u13d2": 10012, "\u2581\u13a0\u13cd\u13c6\u13b5": 10013, "\u2581\u13a0\u13be\u13b5\u13e5\u13d9\u13b2\u13cd\u13a9": 10014, "\u2581\u13e3\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7\u13f1": 10015, "\u2581\u13a4\u13cd\u13c6\u13b3": 10016, "\u13a6\u13b7\u13a9": 10017, "\u2581\u13a0\u13bf\u13a5\u13a2": 10018, "\u2581\u13e7\u13aa\u13c4\u13b6": 10019, "\u13a7\u13d2\u13a2": 10020, "\u2581\u13a4\u13c2\u13f2\u13cd\u13d4\u13c1": 10021, "\u2581\u13eb\u13ac\u13cd\u13d7": 10022, "\u2581\u13f1\u13aa\u13af\u13f3\u13b2": 10023, "\u2581\u13da\u13c6\u13b5": 10024, "\u2581\u13d5\u13aa\u13e2\u13d2\u13a9": 10025, "\u2581\u13a4\u13be\u13cf\u13c5": 10026, "\u2581\u13a4\u13a6\u13be\u13ec\u13cd\u13ac": 10027, "\u2581\u13be\u13ac\u13c1\u13b8\u13ad": 10028, "\u2581\u13a4\u13c2\u13c3\u13b4": 10029, "\u2581\u13e5\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13aa": 10030, "\u2581\u13d7\u13c4\u13aa\u13d7\u13cd\u13a9\u13f1": 10031, "\u13f0\u13b5\u13ce\u13d7": 10032, "\u2581\u13da\u13c5\u13d2\u13a9": 10033, "\u2581\u13da\u13f2\u13cd\u13d4\u13c5": 10034, "\u2581\u13c4\u13be\u13b5\u13cd\u13d3\u13c1\u13b2": 10035, "\u13d7\u13d4\u13b2\u13ad": 10036, "\u2581\u13a4\u13f2\u13b1\u13af\u13ce\u13b8\u13af": 10037, "\u2581\u13a3\u13e3\u13d3": 10038, "\u2581\u13ae\u13b2\u13a2": 10039, "\u2581\u13a2\u13e5\u13a9\u13ac": 10040, "\u2581\u13ac\u13e9\u13af\u13cd\u13d7\u13f1": 10041, "\u13e2\u13d4\u13ae": 10042, "\u13e5\u13c5\u13a6\u13b8\u13a1": 10043, "\u13de\u13d2": 10044, "\u2581\u13c2\u13d3\u13c5\u13c1\u13b2": 10045, "\u13e3\u13d8\u13c3\u13af\u13ae\u13cd\u13d7": 10046, "\u13c7\u13d3\u13cd\u13d7": 10047, "\u13a4\u13c2\u13c3\u13d5\u13c5": 10048, "\u2581\u13d7\u13a6\u13d0\u13af": 10049, "\u2581\u13a0\u13d2\u13a8\u13cd\u13d7": 10050, "\u2581\u13a1\u13e3\u13db\u13a6\u13c1\u13b8": 10051, "\u2581\u13af\u13f4\u13ad": 10052, "\u13d1\u13e2\u13db": 10053, "\u2581\u13f1\u13c5\u13e9\u13cd\u13d7\u13d7": 10054, "\u13d5\u13ac\u13f2\u13af\u13cf": 10055, "\u2581\u13a4\u13d3\u13c5\u13d9\u13a9\u13af": 10056, "\u13e2\u13d4\u13b2": 10057, "\u2581\u13a0\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac\u13a2": 10058, "\u2581\u13a4\u13be\u13b5\u13d6\u13b8\u13c5": 10059, "\u2581\u13eb\u13a6\u13be\u13c4\u13aa\u13a2": 10060, "\u2581\u13d7\u13cc\u13c2": 10061, "\u2581\u13d5\u13af\u13c1": 10062, "\u2581\u13a4\u13c5\u13ce\u13cd\u13d7": 10063, "\u2581\u13cd\u13c6\u13db\u13a6\u13c1": 10064, "\u2581\u13a4\u13b7\u13e4\u13b8\u13af": 10065, "\u2581\u13a2\u13f2\u13a9": 10066, "\u2581\u13da\u13c2\u13e2\u13ac\u13a2": 10067, "\u2581\u13d5\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13a2": 10068, "\u2581\u13a0\u13c4\u13af\u13cd\u13d7\u13cd\u13ac\u13a2": 10069, "\u2581\u13da\u13cd\u13ab\u13d3\u13db\u13a2": 10070, "\u2581\u13d3\u13c5\u13d7\u13cd\u13ac\u13a2": 10071, "\u2581\u13da\u13c4\u13aa\u13d4\u13c5\u13a2": 10072, "\u2581\u13a4\u13c3\u13af\u13f3\u13c1\u13a2": 10073, "\u2581\u13af\u13b2\u13a6": 10074, "\u13d2\u13d7\u13f1": 10075, "\u2581\u13e5\u13d9\u13d3\u13a6": 10076, "\u2581\u13a0\u13ef\u13a1\u13cd\u13d7": 10077, "\u2581\u13e7\u13aa\u13e9\u13db\u13d7": 10078, "\u2581\u13db\u13e8": 10079, "\u2581\u13a4\u13be\u13df\u13b6\u13a5": 10080, "\u2581\u13e7\u13f4\u13eb": 10081, "\u2581\u13a2\u13a6\u13c5\u13af\u13db": 10082, "\u2581\u13a6\u13d3\u13c5\u13d6\u13cd\u13aa": 10083, "\u2581\u13da\u13df\u13b6\u13cd\u13d3\u13c1\u13b4\u13c3": 10084, "\u2581\u13aa\u13aa": 10085, "\u13e5\u13ef\u13c1\u13b6\u13d7": 10086, "\u2581\u13a4\u13d3\u13b4\u13c5\u13af": 10087, "\u13b5\u13cd\u13d3\u13f4\u13be\u13c1\u13d7\u13f1": 10088, "\u2581\u13a4\u13be\u13b5\u13aa\u13d2\u13a2": 10089, "\u2581\u13a0\u13db\u13cd\u13a8\u13a2": 10090, "\u13b5\u13c2\u13c6\u13c5\u13c1": 10091, "\u2581\u13e7\u13be\u13c4\u13ec\u13cd\u13d7": 10092, "\u2581\u13a4\u13e2\u13ac\u13a2": 10093, "\u2581\u13a2\u13ac\u13e9\u13c1\u13d7\u13f1": 10094, "\u13a8\u13e0\u13ae": 10095, "\u2581\u13a2\u13f3\u13e9\u13c1\u13b8": 10096, "\u2581\u13a4\u13ec\u13db": 10097, "\u2581\u13a0\u13e5\u13a2\u13cd\u13d7\u13f1": 10098, "\u2581\u13a4\u13be\u13b5\u13d7\u13a9": 10099, "\u13be\u13cd\u13c9": 10100, "\u13b3\u13d7\u13cd\u13a8\u13a2": 10101, "\u2581\u13f1\u13a6\u13b7\u13a9": 10102, "\u13da\u13d3\u13b8": 10103, "\u2581\u13a0\u13be\u13d7": 10104, "\u2581\u13a4\u13e5\u13cd\u13db": 10105, "\u2581\u13a2\u13e3\u13b5\u13aa": 10106, "\u2581\u13a0\u13c1\u13d9\u13ae\u13cd\u13d7": 10107, "\u2581\u13a0\u13c6\u13ab\u13f4": 10108, "\u2581\u13f3\u13f2\u13b0": 10109, "\u13ef\u13b7\u13a6": 10110, "\u2581\u13c1\u13e8\u13c1": 10111, "\u13d2\u13b2\u13cd\u13d7\u13f1": 10112, "\u13c2\u13e9\u13db\u13ae": 10113, "\u2581\u13d3\u13d5\u13f2\u13b2\u13cd\u13a8\u13a2": 10114, "\u2581\u13c4\u13c5\u13c1\u13b8\u13a9": 10115, "\u2581\u13a4\u13e9\u13f4\u13d2": 10116, "\u2581\u13d3\u13f0\u13cd": 10117, "\u2581\u13a2\u13f3\u13cd\u13d7\u13d3\u13c2": 10118, "\u13cd\u13d4\u13c1\u13d7": 10119, "\u2581\u13a4\u13cd\u13d5\u13d3\u13b5\u13f4": 10120, "\u2581\u13e5\u13ef\u13a0": 10121, "\u13d9\u13f3": 10122, "\u2581\u13f1\u13ac\u13c5": 10123, "\u2581\u13a3\u13a9\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd": 10124, "\u2581\u13ef\u13c6\u13da\u13b5\u13ad": 10125, "\u2581\u13a0\u13ef\u13d9\u13b5": 10126, "\u2581\u13e7\u13c2\u13b7\u13e4": 10127, "\u2581\u13d7\u13a6\u13c5\u13c6\u13b6": 10128, "\u2581\u13e5\u13b8\u13c9\u13d7": 10129, "\u2581\u13a4\u13ec\u13f1": 10130, "\u2581\u13a2\u13ac\u13e9\u13b7\u13e4\u13b4": 10131, "\u13b8\u13c9\u13d4\u13c5\u13a9": 10132, "\u13d0\u13c5\u13e4\u13b8\u13a9": 10133, "\u13ad\u13b5\u13d9\u13a9": 10134, "\u13d3\u13cf\u13d2": 10135, "\u2581\u13d7\u13a7\u13c3\u13a9\u13cd\u13d7\u13f1": 10136, "\u2581\u13a4\u13ea\u13b4": 10137, "\u13d3\u13e8\u13c1\u13b5": 10138, "\u2581\u13d5\u13a8\u13e5\u13c5\u13e9": 10139, "\u13f2\u13c5\u13b5": 10140, "\u2581\u13ed\u13ef\u13c5\u13b2\u13a9": 10141, "\u2581\u13a0\u13a9\u13c1\u13b8\u13af": 10142, "\u2581\u13e3\u13a6\u13db": 10143, "\u13d3\u13e1\u13d7\u13ad": 10144, "\u2581\u13a2\u13e3\u13d3\u13c5\u13db\u13a2": 10145, "\u2581\u13a4\u13d3\u13c5\u13c1\u13a2": 10146, "\u13a6\u13e5\u13f2\u13ce\u13b8": 10147, "\u2581\u13a4\u13cd\u13a9\u13d3\u13d2\u13a2": 10148, "\u2581\u13e4\u13e5\u13c3": 10149, "\u2581\u13e4\u13d9\u13b0": 10150, "\u2581\u13a8\u13e5\u13b8": 10151, "\u2581\u13a4\u13d3\u13d9": 10152, "\u2581\u13a2\u13e4\u13ae\u13cd\u13d7": 10153, "\u2581\u13a0\u13be\u13d5\u13b2\u13cd\u13ac\u13a2": 10154, "\u2581\u13a0\u13a9\u13c2\u13ac\u13ce\u13b2": 10155, "\u2581\u13ac\u13e3": 10156, "\u2581\u13a4\u13c3\u13af\u13f3\u13d2\u13a2": 10157, "\u2581\u13a3\u13af\u13cd\u13d7": 10158, "\u2581\u13da\u13be\u13e6\u13ce": 10159, "\u13d3\u13c1\u13b8\u13ad": 10160, "\u13f4\u13ce\u13b8\u13a9": 10161, "\u2581\u13e7\u13ec\u13e2\u13c1": 10162, "\u2581\u13a4\u13c3\u13ae\u13b8\u13a9": 10163, "\u2581\u13da\u13ea\u13a7\u13c1\u13a2": 10164, "\u13c3\u13ae\u13b5": 10165, "\u2581\u13a0\u13a9\u13cd\u13db\u13d7\u13cd\u13ac\u13a2": 10166, "\u2581\u13a0\u13f2\u13cd\u13d7\u13cd\u13ac": 10167, "\u2581\u13c2\u13a6\u13ea\u13cf": 10168, "\u2581\u13d3\u13e5\u13c1": 10169, "\u13b5\u13e5\u13d9\u13c1\u13b2\u13a2": 10170, "\u2581\u13e7\u13e9\u13d2": 10171, "\u2581\u13c2\u13e5\u13f4": 10172, "\u2581\u13e4\u13ae\u13cd\u13d7": 10173, "\u2581\u13d7\u13a6\u13b7\u13eb\u13cd\u13d4\u13c1": 10174, "\u2581\u13e7\u13d4\u13c2": 10175, "\u2581\u13e3\u13c2\u13c5\u13a9": 10176, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13d7\u13cd\u13ac": 10177, "\u2581\u13e5\u13aa\u13e9\u13d8\u13ad": 10178, "\u2581\u13a0\u13e5\u13a6\u13d8\u13d7\u13cd\u13d7\u13f1": 10179, "\u13e6\u13e9": 10180, "\u13a7\u13bf\u13e9\u13db\u13a1": 10181, "\u13a7\u13ad\u13f2": 10182, "\u13bf\u13ec\u13cd\u13d7": 10183, "\u2581\u13d3\u13cd\u13d3": 10184, "\u13a9\u13e9\u13db\u13d7\u13f1": 10185, "\u2581\u13e7\u13cd\u13a6": 10186, "\u2581\u13d3\u13c2\u13c1\u13b5": 10187, "\u2581\u13a6\u13cc\u13b4": 10188, "\u2581\u13a4\u13b5\u13cd\u13d5\u13b8": 10189, "\u2581\u13e5\u13da\u13f2\u13ce": 10190, "\u13c2\u13f1\u13cd\u13a9": 10191, "\u13b5\u13cd\u13d9\u13d4\u13c1": 10192, "\u13c2\u13d5\u13c5": 10193, "\u13ad\u13ef\u13b8": 10194, "\u13a7\u13c1\u13cd\u13d7": 10195, "\u2581\u13d3\u13f2\u13a9": 10196, "\u2581\u13a1\u13af\u13cd\u13d7\u13f3": 10197, "\u2581\u13a0\u13c2\u13a9\u13b5\u13f2\u13ac\u13a2": 10198, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d9": 10199, "\u2581\u13e5\u13c4\u13db\u13c1\u13b4": 10200, "\u2581\u13f1\u13af\u13a6\u13d4\u13ae": 10201, "\u13d3\u13ec\u13cd\u13d9\u13d7": 10202, "\u2581\u13a5\u13d8": 10203, "\u2581\u13a4\u13aa\u13b5\u13f0\u13d7": 10204, "\u13ab\u13f4\u13a1\u13b8": 10205, "\u2581\u13a0\u13a9\u13e9\u13db\u13b2\u13a9": 10206, "\u2581\u13b5\u13d3": 10207, "\u2581\u13d5\u13e3\u13b4": 10208, "\u13a8\u13ac\u13c1\u13b5": 10209, "\u2581\u13a4\u13d3\u13f4\u13cd\u13d7\u13f1": 10210, "\u2581\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7": 10211, "\u13d3\u13e6\u13cd\u13ac": 10212, "\u13e3\u13db\u13a9\u13ad": 10213, "\u2581\u13a4\u13c2\u13be\u13d7\u13c5\u13ce": 10214, "\u2581\u13a0\u13de": 10215, "\u13a6\u13ce\u13cd\u13d9": 10216, "\u13f2\u13cd\u13d7\u13cd\u13a9": 10217, "\u13d4\u13c1\u13b8\u13af": 10218, "\u2581\u13a0\u13ab\u13ec\u13f0": 10219, "\u2581\u13d0\u13ad": 10220, "\u2581\u13da\u13b7\u13ac\u13a2": 10221, "\u2581\u13c2\u13ea\u13cf": 10222, "\u2581\u13eb\u13da\u13b7\u13e4\u13b8": 10223, "\u2581\u13a4\u13d4\u13f2\u13ce\u13b8\u13a9": 10224, "\u2581\u13e5\u13cd\u13a9\u13ef": 10225, "\u13cd\u13e2\u13c2\u13cd\u13d4\u13c5": 10226, "\u13a4\u13cf": 10227, "\u2581\u13a4\u13be\u13e4\u13b5\u13aa": 10228, "\u13be\u13cb\u13c1\u13b8": 10229, "\u2581\u13e7\u13c2\u13ac": 10230, "\u2581\u13a0\u13d3\u13ea\u13b5\u13a9\u13cd\u13ac\u13a2": 10231, "\u13e5\u13c2": 10232, "\u2581\u13a4\u13c1\u13b7\u13ac\u13a2": 10233, "\u2581\u13a4\u13b5\u13e6\u13db\u13a2": 10234, "\u2581\u13a6\u13d3\u13a5\u13a2": 10235, "\u2581\u13a1\u13ad\u13cf": 10236, "\u2581\u13a2\u13f3\u13e9\u13ac": 10237, "\u2581\u13a4\u13c2\u13d6\u13b8\u13c5": 10238, "\u2581\u13e3\u13d3\u13c5\u13d8": 10239, "\u2581\u13a1\u13d7\u13a8\u13f3\u13a2": 10240, "\u2581\u13da\u13c7": 10241, "\u13d3\u13c2\u13f1": 10242, "\u2581\u13f1\u13d4": 10243, "\u13d7\u13ac\u13e9\u13a7\u13c3\u13d7": 10244, "\u2581\u13ea\u13d9\u13b2": 10245, "\u2581\u13a4\u13b3\u13cf": 10246, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13aa\u13a2": 10247, "\u13e4\u13b5\u13af\u13cd\u13aa": 10248, "\u2581\u13be\u13be\u13db\u13c1\u13ad": 10249, "\u2581\u13aa\u13af\u13f3\u13d9\u13d7": 10250, "\u13be\u13f0\u13af\u13cd\u13db": 10251, "\u2581\u13a4\u13f0\u13af\u13cd\u13a9\u13c2": 10252, "\u2581\u13da\u13b8\u13cc\u13d3": 10253, "\u2581\u13d3\u13c2\u13e2": 10254, "\u2581\u13a6\u13b7\u13e5": 10255, "\u13a6\u13b5\u13cd\u13d3\u13db": 10256, "\u2581\u13d7\u13a7\u13b5\u13a2": 10257, "\u2581\u13f1\u13c4\u13cd\u13d5\u13a2": 10258, "\u2581\u13f1\u13dd": 10259, "\u2581\u13a2\u13e5\u13c1\u13d7\u13f1": 10260, "\u2581\u13e3\u13af\u13cd\u13d7\u13f1": 10261, "\u2581\u13da\u13d3\u13d3\u13b4\u13d4\u13c1": 10262, "\u13e4\u13ef\u13d9\u13e4\u13ae\u13cd\u13d7": 10263, "\u2581\u13f1\u13e5\u13a6\u13d4\u13ae\u13a2": 10264, "\u2581\u13a4\u13c2\u13af\u13cd\u13d7": 10265, "\u2581\u13da\u13d8\u13c3\u13b4": 10266, "\u2581\u13d3\u13d3\u13af": 10267, "\u2581\u13aa\u13e2\u13d2\u13a9": 10268, "\u2581\u13c2\u13d9\u13d4\u13d8": 10269, "\u2581\u13c5\u13e9\u13d3": 10270, "\u13f1\u13a9\u13b5": 10271, "\u13ea\u13b5\u13cf": 10272, "\u2581\u13a4\u13cd\u13d7\u13f0": 10273, "\u13b0\u13af\u13cd\u13d7": 10274, "\u2581\u13c4\u13e9\u13c1\u13b2": 10275, "\u2581\u13a4\u13c1\u13b3\u13db": 10276, "\u2581\u13a3\u13e8\u13d7\u13cd\u13ac": 10277, "\u2581\u13a0\u13d3\u13b4\u13c2\u13cd": 10278, "\u2581\u13a4\u13c2\u13ec\u13c2\u13af\u13cd\u13d7\u13f1": 10279, "\u2581\u13e5\u13c2\u13a9": 10280, "\u13a7\u13c1\u13ac": 10281, "\u2581\u13a0\u13c6\u13da\u13b8\u13b2": 10282, "\u2581\u13a0\u13c6\u13d3\u13e4\u13b5\u13a6": 10283, "\u2581\u13a6\u13db\u13ac\u13a6": 10284, "\u13c2\u13cd\u13d7\u13ad": 10285, "\u2581\u13c4\u13ec\u13da\u13d2": 10286, "\u2581\u13a0\u13e5\u13c1\u13b8\u13af": 10287, "\u2581\u13d7\u13a6\u13f2\u13e5": 10288, "\u2581\u13a8\u13db\u13a2": 10289, "\u2581\u13a0\u13a9\u13cc": 10290, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d4\u13c1": 10291, "\u2581\u13cd\u13c6\u13b3": 10292, "\u13cd\u13d3\u13e9\u13d7\u13d9": 10293, "\u2581\u13d9\u13d3\u13c6\u13cd\u13ac\u13a2": 10294, "\u2581\u13e5\u13c3\u13ae\u13cd\u13ac\u13a2": 10295, "\u2581\u13c2\u13a6\u13d4\u13b2\u13be": 10296, "\u2581\u13f1\u13da\u13e9\u13db\u13ae": 10297, "\u13b3\u13d1\u13b3": 10298, "\u2581\u13a4\u13c2\u13c3\u13c1\u13b4": 10299, "\u13be\u13d5\u13a8": 10300, "\u2581\u13a8\u13cc": 10301, "\u13b7\u13b8\u13c1": 10302, "\u2581\u13c3\u13e5\u13a5": 10303, "\u13c1\u13b3\u13d5\u13a2": 10304, "\u13cd\u13d4\u13f2\u13cd\u13d9\u13d7": 10305, "\u13c2\u13d3\u13c5\u13c1\u13b0": 10306, "\u13cc\u13d9\u13ef": 10307, "\u13b5\u13c9\u13a9": 10308, "\u2581\u13c2\u13da\u13e9\u13c1": 10309, "\u2581\u13c2\u13cd\u13db": 10310, "\u2581\u13d7\u13ac\u13c5": 10311, "\u2581\u13da\u13c2\u13f0\u13b5\u13d2": 10312, "\u13db\u13b2\u13c3": 10313, "\u13ef\u13a6\u13ce\u13cd\u13d7": 10314, "\u2581\u13c5\u13c2": 10315, "\u2581\u13d9\u13a6\u13e0\u13af\u13cd": 10316, "\u13df\u13c3\u13ae\u13d4\u13c1": 10317, "\u2581\u13cd\u13a9\u13ef\u13d5\u13b6\u13c6\u13a1": 10318, "\u2581\u13a0\u13a9\u13c1\u13e8\u13a9": 10319, "\u2581\u13a0\u13e5\u13aa\u13b5\u13f0\u13a5": 10320, "\u13ef\u13aa": 10321, "\u13ab\u13f4\u13b2\u13be": 10322, "\u2581\u13d5\u13ad\u13d8\u13c1": 10323, "\u2581\u13ac\u13e9\u13c2\u13c3\u13ae\u13d7": 10324, "\u2581\u13a4\u13b6\u13af\u13cd\u13d7\u13f1": 10325, "\u2581\u13c2\u13ac\u13c1\u13b0": 10326, "\u13ac\u13ce": 10327, "\u2581\u13f1\u13be\u13be\u13db\u13c1\u13b0": 10328, "\u2581\u13c2\u13e3\u13db\u13c1\u13b0": 10329, "\u2581\u13a4\u13be\u13c2\u13a9\u13cd\u13d7": 10330, "\u2581\u13ac\u13e9\u13be\u13d3\u13c5\u13a1": 10331, "\u2581\u13af\u13a6\u13d8": 10332, "\u2581\u13c2\u13e3\u13ea\u13ce\u13b8": 10333, "\u2581\u13a4\u13c3\u13ad": 10334, "\u13cd\u13db\u13d7\u13cd\u13d7": 10335, "\u2581\u13d7\u13a6\u13c5\u13ec\u13a2": 10336, "\u2581\u13eb\u13ac\u13ea\u13a7\u13c1": 10337, "\u2581\u13af\u13a9\u13cd\u13aa": 10338, "\u13aa\u13db\u13a2": 10339, "\u13c5\u13cd\u13ac\u13be": 10340, "\u2581\u13c2\u13a6\u13db\u13c1\u13b0\u13a2": 10341, "\u13a3\u13b8": 10342, "\u2581\u13a6\u13b4\u13c2\u13d9\u13b2": 10343, "\u2581\u13c1\u13b5\u13cd\u13ac\u13be": 10344, "\u2581\u13a4\u13e9\u13cc\u13c6": 10345, "\u2581\u13a4\u13c1\u13c9\u13a1": 10346, "\u2581\u13a4\u13c5\u13c1\u13a2": 10347, "\u13e5\u13cd\u13e2": 10348, "\u2581\u13a4\u13a7\u13ad": 10349, "\u2581\u13a4\u13e9\u13db\u13b2\u13a9": 10350, "\u2581\u13d3\u13f3\u13ea": 10351, "\u2581\u13f1\u13da\u13e9\u13db\u13b2": 10352, "\u2581\u13e7\u13ac\u13e9\u13b4": 10353, "\u13d3\u13c7": 10354, "\u2581\u13a4\u13be\u13cc": 10355, "\u13be\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13aa\u13a2": 10356, "\u2581\u13e4\u13b2\u13a2": 10357, "\u13ef\u13db\u13a6\u13c1\u13b5": 10358, "\u13ac\u13c7\u13af\u13cd\u13d7\u13ad": 10359, "\u2581\u13a4\u13e5\u13ef": 10360, "\u13da\u13d3\u13f4\u13b3\u13db": 10361, "\u13ea\u13cc\u13c6\u13b4": 10362, "\u2581\u13ef\u13c3\u13b5": 10363, "\u2581\u13e7\u13c1\u13af": 10364, "\u2581\u13eb\u13ac\u13e9\u13c2\u13f4": 10365, "\u13f2\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 10366, "\u2581\u13e7\u13c2\u13f4": 10367, "\u2581\u13c2\u13e8\u13ea\u13ce\u13b8": 10368, "\u2581\u13a6\u13c1\u13b5\u13d2": 10369, "\u13d5\u13f2\u13b2": 10370, "\u2581\u13ef\u13a9\u13cd\u13c6\u13b8\u13a1": 10371, "\u2581\u13e7\u13be\u13d9\u13c5": 10372, "\u2581\u13a4\u13c2\u13c4\u13b8\u13c5": 10373, "\u2581\u13a4\u13b5\u13e6\u13af": 10374, "\u2581\u13c1\u13e9\u13d4\u13b5\u13c3": 10375, "\u13db\u13d7\u13cd\u13a8\u13cd\u13d7": 10376, "\u2581\u13a4\u13da\u13a2\u13cd\u13d4\u13c5\u13a2": 10377, "\u2581\u13da\u13be\u13d8\u13c3\u13b8": 10378, "\u13c1\u13df\u13f4\u13cd\u13d4\u13c1": 10379, "\u2581\u13a0\u13a6\u13ef": 10380, "\u2581\u13a4\u13be\u13b5\u13ae\u13b5\u13e4\u13a2": 10381, "\u13a5\u13cd\u13a6": 10382, "\u13a0\u13f4": 10383, "\u2581\u13a4\u13e9\u13d3": 10384, "\u2581\u13a2\u13e5\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd": 10385, "\u2581\u13a2\u13f3\u13e9\u13c1": 10386, "\u2581\u13a4\u13b5\u13d8\u13ce": 10387, "\u13f0\u13cd\u13d4\u13c1\u13a2": 10388, "\u13b5\u13d4\u13d5": 10389, "\u2581\u13d5\u13a4\u13b4\u13d4\u13c5\u13a2": 10390, "\u13e4\u13cd\u13d9\u13a9\u13af": 10391, "\u13a6\u13d9\u13cd\u13d9\u13d7": 10392, "\u2581\u13f1\u13d5\u13cd\u13d7": 10393, "\u2581\u13c4\u13c2\u13ea\u13d2\u13a2": 10394, "\u13d3\u13c1\u13b0\u13a2": 10395, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13a8\u13a2": 10396, "\u2581\u13a3\u13a9\u13f0\u13b8": 10397, "\u2581\u13cd\u13a9\u13c5\u13a6\u13b8": 10398, "\u2581\u13c2\u13a6\u13db\u13c5\u13a2": 10399, "\u13cd\u13da\u13b6\u13d9\u13d7": 10400, "\u2581\u13d8\u13a6\u13b5\u13cd\u13d9": 10401, "\u2581\u13d9\u13a6\u13d8\u13c1": 10402, "\u2581\u13eb\u13d3\u13d7": 10403, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d4\u13c5\u13af": 10404, "\u2581\u13f1\u13cd\u13a9\u13ef": 10405, "\u2581\u13a4\u13b7\u13e4\u13d7": 10406, "\u2581\u13a4\u13d5\u13d2\u13c5": 10407, "\u13d3\u13c5\u13d4\u13e9\u13d5\u13ac": 10408, "\u2581\u13aa\u13f1": 10409, "\u2581\u13d3\u13c4": 10410, "\u13e8\u13c1\u13b0": 10411, "\u2581\u13f1\u13c5\u13a8\u13e3": 10412, "\u2581\u13a4\u13cd\u13d5\u13b8\u13d7": 10413, "\u13e6\u13af\u13f3\u13b2\u13a6": 10414, "\u2581\u13a4\u13b6\u13d2\u13a2": 10415, "\u13da\u13f3\u13af\u13db": 10416, "\u2581\u13a4\u13f0\u13e5": 10417, "\u13b4\u13ce\u13a2": 10418, "\u2581\u13a0\u13a7": 10419, "\u13d3\u13f4\u13cd\u13d7": 10420, "\u2581\u13b3\u13cf": 10421, "\u2581\u13c2\u13a6\u13e5\u13f4\u13c1\u13b8": 10422, "\u2581\u13a8\u13e5\u13cd\u13d7": 10423, "\u2581\u13a2\u13a6\u13db\u13c1\u13d7": 10424, "\u2581\u13d3\u13d8\u13c1": 10425, "\u2581\u13f4\u13ac\u13e9": 10426, "\u2581\u13a4\u13bf\u13b8\u13e4": 10427, "\u2581\u13a0\u13c9\u13af\u13f3\u13c5": 10428, "\u13cc\u13d5\u13a2": 10429, "\u2581\u13a4\u13be\u13d7\u13d4\u13b2": 10430, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6\u13d4\u13c1": 10431, "\u2581\u13a6\u13b8\u13a5": 10432, "\u2581\u13a6\u13b3\u13a9": 10433, "\u2581\u13a4\u13c1\u13b5\u13ce\u13a2": 10434, "\u13be\u13a5\u13be": 10435, "\u2581\u13a4\u13c2\u13e9\u13db\u13b2": 10436, "\u2581\u13d5\u13a8\u13f2\u13b2\u13cd\u13a8": 10437, "\u2581\u13a2\u13ac\u13e9\u13b5\u13cd\u13d3\u13c1": 10438, "\u13d4\u13b7\u13a9\u13cd\u13ac": 10439, "\u2581\u13e4\u13b5": 10440, "\u13c2\u13a8\u13d2": 10441, "\u2581\u13a4\u13c2\u13be\u13dd\u13be\u13a5": 10442, "\u2581\u13f1\u13d7\u13cd\u13a9": 10443, "\u2581\u13a0\u13f2\u13b5\u13c3": 10444, "\u13e3\u13db\u13c1\u13ae\u13cd\u13d7": 10445, "\u2581\u13a0\u13e2\u13db": 10446, "\u2581\u13a0\u13c2\u13a6\u13b5": 10447, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13a9": 10448, "\u2581\u13f1\u13e7": 10449, "\u13cd\u13d7\u13f0": 10450, "\u2581\u13e5\u13b6\u13c3": 10451, "\u2581\u13a6\u13a8\u13e3": 10452, "\u2581\u13da\u13d1\u13a6": 10453, "\u13d3\u13c2\u13b8\u13e4": 10454, "\u2581\u13f1\u13be\u13c5": 10455, "\u2581\u13d8\u13f2": 10456, "\u2581\u13a2\u13e5\u13ea\u13cd": 10457, "\u13e5\u13f0\u13b8\u13be\u13c1\u13b0\u13a2": 10458, "\u13aa\u13ae": 10459, "\u13ae\u13d9\u13ae": 10460, "\u2581\u13a0\u13c2\u13c1\u13a9": 10461, "\u2581\u13d7\u13e5\u13f0\u13b8\u13a2": 10462, "\u2581\u13be\u13c6\u13b5\u13cd\u13d3\u13c1": 10463, "\u13be\u13ec\u13cd\u13d4\u13c1\u13a2": 10464, "\u13dd\u13c1": 10465, "\u2581\u13ac\u13b3": 10466, "\u2581\u13e7\u13f2\u13b0": 10467, "\u13ef\u13c2\u13cd\u13ac\u13a2": 10468, "\u13d4\u13db": 10469, "\u13aa\u13ea\u13b6\u13d7": 10470, "\u2581\u13a0\u13d7\u13d4\u13cd\u13d7\u13f1": 10471, "\u2581\u13a6\u13f0\u13cc\u13db\u13a2": 10472, "\u2581\u13a0\u13ce\u13cd\u13d7": 10473, "\u2581\u13d3\u13f2\u13e3": 10474, "\u13f0\u13b6\u13b4": 10475, "\u2581\u13a2\u13d3\u13d3": 10476, "\u13c9\u13ce\u13d7": 10477, "\u2581\u13a4\u13ea\u13b6": 10478, "\u2581\u13a1\u13d9\u13b0": 10479, "\u13d3\u13d9\u13b5\u13a8\u13cd\u13d7": 10480, "\u2581\u13da\u13ec\u13ce\u13b4": 10481, "\u13e5\u13cd\u13d3\u13f1\u13d5\u13b8": 10482, "\u13c2\u13cf\u13c5\u13a9": 10483, "\u2581\u13a1\u13e5\u13b7\u13e4\u13b8": 10484, "\u13c7\u13b5\u13ce": 10485, "\u2581\u13a4\u13ea\u13b5\u13d2": 10486, "\u2581\u13a0\u13d3\u13c5\u13d6\u13cd\u13a8\u13a2": 10487, "\u13e5\u13cf": 10488, "\u13b8\u13d2": 10489, "\u13db\u13c2\u13b2": 10490, "\u13db\u13d9\u13d7\u13f1": 10491, "\u13f2\u13b1\u13cd\u13ac": 10492, "\u2581\u13da\u13b8\u13cc\u13db\u13a2": 10493, "\u2581\u13a2\u13f3\u13d3": 10494, "\u2581\u13e3\u13ac\u13a9": 10495, "\u2581\u13a0\u13c1\u13b5\u13cd\u13a8\u13a2": 10496, "\u2581\u13a4\u13c2\u13cd\u13ab\u13d5\u13d2": 10497, "\u2581\u13f3\u13c2\u13ac": 10498, "\u2581\u13a2\u13e3\u13d3\u13d1\u13f4": 10499, "\u2581\u13f2\u13aa": 10500, "\u13aa\u13b0\u13cd\u13ac": 10501, "\u13a0\u13a9\u13f2\u13cf": 10502, "\u2581\u13a4\u13c2\u13c1\u13e8\u13a2": 10503, "\u2581\u13e7\u13d9\u13e2": 10504, "\u2581\u13d7\u13ac\u13e9\u13c2\u13d0\u13e2": 10505, "\u2581\u13a0\u13da": 10506, "\u13f1\u13c9\u13cd\u13a9\u13c2": 10507, "\u13d1\u13ef\u13a9\u13cd\u13d7": 10508, "\u2581\u13d5\u13b0": 10509, "\u13ef\u13db\u13c5": 10510, "\u13d8\u13cd\u13ac\u13be": 10511, "\u13d1\u13f0\u13ce": 10512, "\u13cd\u13c6\u13db\u13af": 10513, "\u2581\u13f3\u13d4\u13b3\u13ec": 10514, "\u13cf\u13f2": 10515, "\u13d3\u13db\u13c1\u13ad": 10516, "\u2581\u13a0\u13aa\u13ce\u13b4": 10517, "\u2581\u13d7\u13ac\u13e9\u13c1": 10518, "\u2581\u13a4\u13c2\u13c1\u13b8": 10519, "\u2581\u13d2\u13df": 10520, "\u2581\u13a4\u13db\u13d7": 10521, "\u2581\u13f3\u13ef": 10522, "\u13cd\u13a9\u13d8": 10523, "\u2581\u13a0\u13ef\u13a0": 10524, "\u2581\u13a3\u13a9\u13b8\u13c9\u13d7": 10525, "\u13ac\u13cd\u13aa\u13b8\u13c5\u13a2": 10526, "\u13d9\u13d3\u13cb": 10527, "\u13be\u13df\u13c3\u13ae\u13b8": 10528, "\u13b5\u13e9\u13db\u13a1\u13b2\u13a2": 10529, "\u13d3\u13c5\u13db": 10530, "\u2581\u13da\u13f2\u13b4": 10531, "\u2581\u13c2\u13a6\u13b7\u13ac": 10532, "\u2581\u13db\u13be\u13a2": 10533, "\u2581\u13e7\u13c1\u13e8\u13c3": 10534, "\u13a9\u13ce\u13a2": 10535, "\u13e3\u13d9\u13b4\u13b0\u13af\u13cd\u13d7\u13f1": 10536, "\u2581\u13a0\u13c1\u13d9\u13ae\u13a2": 10537, "\u2581\u13da\u13d1\u13f0\u13ce": 10538, "\u13f1\u13d0": 10539, "\u13e8\u13d7\u13cd\u13a8\u13cd\u13d7": 10540, "\u2581\u13a4\u13c2\u13b7\u13e4\u13ad": 10541, "\u13b5\u13c3\u13ae\u13d7\u13cd\u13a8\u13cd\u13d7": 10542, "\u2581\u13a0\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7\u13f1": 10543, "\u2581\u13a2\u13e8\u13c1": 10544, "\u13c5\u13cd\u13d9\u13d7\u13f1": 10545, "\u13f2\u13a2": 10546, "\u13d3\u13a6\u13b5\u13cd\u13d9\u13d3": 10547, "\u13c5\u13be\u13c9": 10548, "\u13ac\u13d9\u13d7": 10549, "\u2581\u13ad\u13d5\u13b6\u13b0": 10550, "\u13cd\u13d3\u13f1\u13d5": 10551, "\u2581\u13c2\u13a6\u13ea\u13d2": 10552, "\u2581\u13f3\u13be\u13da\u13b5\u13cd": 10553, "\u13f2\u13d2": 10554, "\u2581\u13e5\u13c2\u13a6\u13ea\u13cd\u13ac": 10555, "\u13cd\u13d4\u13c1\u13af": 10556, "\u2581\u13e7\u13be\u13d3\u13d5": 10557, "\u13a8\u13b5": 10558, "\u13b5\u13a6\u13b5\u13f4": 10559, "\u2581\u13c4\u13db\u13be\u13d5": 10560, "\u13d9\u13b4\u13b0\u13af\u13cd\u13d9\u13d7": 10561, "\u2581\u13a6\u13b5\u13ad": 10562, "\u2581\u13a4\u13da\u13b5\u13cd\u13a8\u13a2": 10563, "\u2581\u13a4\u13f2\u13e8\u13a9": 10564, "\u2581\u13d7\u13d1\u13eb": 10565, "\u13a7\u13af\u13f4\u13a9": 10566, "\u2581\u13e9\u13e5\u13ef\u13c5": 10567, "\u2581\u13a3\u13ac\u13d4\u13c5": 10568, "\u2581\u13a6\u13d9\u13a5": 10569, "\u2581\u13d5\u13e6": 10570, "\u2581\u13a2\u13e8\u13d7\u13cd\u13aa": 10571, "\u13e9\u13d7\u13cd\u13ac": 10572, "\u2581\u13da\u13d5\u13f2\u13c5": 10573, "\u13ab\u13d3\u13b8": 10574, "\u13d7\u13ce": 10575, "\u2581\u13db\u13b5": 10576, "\u13d0\u13e2\u13a2\u13cd\u13d7\u13ad": 10577, "\u13c4\u13ea\u13ce\u13a2": 10578, "\u2581\u13a2\u13eb": 10579, "\u13aa\u13eb\u13ce": 10580, "\u2581\u13a4\u13be\u13b5\u13cd\u13a6\u13cd\u13d9": 10581, "\u2581\u13f2\u13a8": 10582, "\u13e9\u13be\u13a8": 10583, "\u13da\u13c5\u13c1\u13b4": 10584, "\u2581\u13a0\u13aa\u13e2\u13c5": 10585, "\u2581\u13a0\u13cd\u13aa\u13d2": 10586, "\u13b3\u13a8\u13ef\u13db": 10587, "\u2581\u13a4\u13a6\u13d8\u13d7\u13cd": 10588, "\u2581\u13a6\u13db\u13a2": 10589, "\u2581\u13a3\u13e3\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd": 10590, "\u13e5\u13c3\u13b2\u13cf": 10591, "\u2581\u13a0\u13c6\u13a9\u13b8": 10592, "\u13be\u13d3\u13e1\u13ac": 10593, "\u2581\u13cd\u13a9\u13be\u13be\u13c2": 10594, "\u2581\u13a0\u13a9\u13cd\u13c6\u13db": 10595, "\u2581\u13da\u13c2\u13ef\u13ea": 10596, "\u2581\u13e9\u13a9\u13b6\u13af": 10597, "\u13a2\u13ce\u13d7": 10598, "\u13c3\u13b8\u13d4\u13c5\u13a9": 10599, "\u2581\u13a6\u13f0\u13d7": 10600, "\u2581\u13ac\u13a9\u13b8\u13c9\u13d7": 10601, "\u13c1\u13e4\u13b8\u13a9": 10602, "\u13d7\u13a6\u13da\u13b2": 10603, "\u2581\u13a4\u13d5\u13ef": 10604, "\u2581\u13d5\u13e5\u13be": 10605, "\u2581\u13f1\u13d7\u13a9": 10606, "\u13e5\u13ef\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1": 10607, "\u2581\u13c2\u13a0": 10608, "\u13a6\u13da\u13e2": 10609, "\u13a9\u13b7\u13e8\u13a9": 10610, "\u13f4\u13cd\u13aa\u13f3\u13c1": 10611, "\u2581\u13d3\u13cd\u13c6\u13b5\u13cd": 10612, "\u13ce\u13b2\u13a2": 10613, "\u2581\u13a0\u13c6\u13da\u13b5\u13cd\u13ac\u13a2": 10614, "\u13d5\u13aa\u13e2\u13be": 10615, "\u13c6\u13b6": 10616, "\u2581\u13a0\u13c2\u13b3\u13a8\u13f4": 10617, "\u2581\u13d8\u13aa": 10618, "\u2581\u13a4\u13de": 10619, "\u13b5\u13d1\u13eb\u13d3": 10620, "\u2581\u13e5\u13a9\u13c1\u13b8": 10621, "\u13aa\u13e2\u13c1\u13a2": 10622, "\u2581\u13a4\u13cd\u13aa\u13cd\u13d7": 10623, "\u13a3\u13d0\u13c5": 10624, "\u2581\u13a3\u13e5\u13c1": 10625, "\u13c1\u13df\u13f4\u13ce": 10626, "\u13b8\u13d4\u13c5\u13af": 10627, "\u2581\u13e7\u13c2\u13d9": 10628, "\u2581\u13d7\u13c2\u13c2\u13a8": 10629, "\u2581\u13e3\u13be\u13a2": 10630, "\u13d3\u13b4\u13cd\u13d7": 10631, "\u13be\u13b5\u13a9\u13db": 10632, "\u2581\u13e6\u13e5\u13e9\u13be\u13a6\u13b3": 10633, "\u13be\u13b5\u13d9\u13a9\u13ef": 10634, "\u2581\u13a0\u13e5\u13f0": 10635, "\u2581\u13da\u13be\u13d7\u13e9\u13cd\u13a8": 10636, "\u13ef\u13c2\u13cd\u13ac": 10637, "\u2581\u13ac\u13e9\u13d3\u13c5\u13d8": 10638, "\u2581\u13da\u13c2\u13c5\u13c1": 10639, "\u2581\u13ef\u13a9\u13cd\u13d5\u13b5": 10640, "\u13ac\u13be\u13ec\u13d9\u13d7\u13f1": 10641, "\u2581\u13d7\u13a8\u13a9": 10642, "\u2581\u13a0\u13cd\u13d3\u13f2": 10643, "\u2581\u13d9\u13cd\u13a9": 10644, "\u2581\u13f3\u13c3\u13af\u13f3": 10645, "\u13a6\u13b5\u13ef": 10646, "\u2581\u13a4\u13be\u13db\u13d3\u13cd": 10647, "\u2581\u13c2\u13cd\u13a9": 10648, "\u2581\u13d9\u13e5\u13e9\u13db\u13b2": 10649, "\u2581\u13c2\u13a4\u13ea\u13ce": 10650, "\u2581\u13cd\u13ca": 10651, "\u2581\u13a4\u13eb\u13d2": 10652, "\u2581\u13a0\u13cd\u13d3\u13f1\u13d7\u13cd\u13d7": 10653, "\u2581\u13a2\u13e8\u13c3\u13c1\u13b8": 10654, "\u13c2\u13c6\u13d8\u13b8": 10655, "\u2581\u13eb\u13e5\u13b7\u13e4\u13b8": 10656, "\u13ef\u13c2\u13cd\u13a8\u13cd\u13d7": 10657, "\u2581\u13a4\u13d9\u13e9\u13d7\u13cd": 10658, "\u13d9\u13b3\u13c5": 10659, "\u2581\u13e3\u13da\u13b3": 10660, "\u13d7\u13a6\u13b8\u13c9\u13d7": 10661, "\u2581\u13e7\u13e9\u13c5": 10662, "\u13a1\u13e5\u13cd\u13d3\u13e9\u13d5\u13a9": 10663, "\u2581\u13a0\u13aa\u13b5\u13f0\u13cd\u13a8": 10664, "\u2581\u13a2\u13f3\u13be\u13db\u13c1\u13b8": 10665, "\u13da\u13d3\u13b8\u13d9": 10666, "\u2581\u13c2\u13d7\u13a9": 10667, "\u13e4\u13b8\u13a9": 10668, "\u2581\u13a0\u13be\u13d3\u13f1": 10669, "\u13ab\u13f4\u13a1\u13ae\u13cd\u13d7": 10670, "\u13bf\u13d5\u13ac": 10671, "\u2581\u13d3\u13c2\u13c3\u13a9\u13cd": 10672, "\u13d2\u13cd\u13d7\u13f1": 10673, "\u2581\u13a4\u13f4\u13d4\u13c1": 10674, "\u13e9\u13d4\u13b0": 10675, "\u13c2\u13ac\u13ac\u13a2": 10676, "\u2581\u13c2\u13e8\u13c3\u13c1": 10677, "\u2581\u13ac\u13a9\u13f0\u13b8": 10678, "\u2581\u13a4\u13e9\u13d2\u13af": 10679, "\u13ef\u13a9\u13cd\u13aa": 10680, "\u2581\u13a4\u13f0\u13b6": 10681, "\u2581\u13da\u13c4": 10682, "\u13ab\u13f4\u13d7\u13f1": 10683, "\u13d3\u13c1\u13d8": 10684, "\u2581\u13a6\u13b5\u13e5\u13d9\u13b2\u13cd": 10685, "\u2581\u13a4\u13b4\u13c5\u13d4\u13c5": 10686, "\u13d0\u13cd\u13d4\u13c5": 10687, "\u13ef\u13d4\u13b2": 10688, "\u2581\u13e7\u13be\u13a6": 10689, "\u2581\u13b7\u13a6": 10690, "\u13ea\u13c5\u13ce": 10691, "\u13b5\u13d6\u13b8\u13c2\u13b4": 10692, "\u2581\u13da\u13be\u13d3\u13c5": 10693, "\u2581\u13d9\u13d3\u13a6\u13c5": 10694, "\u13aa\u13ea\u13b8": 10695, "\u13c5\u13a6\u13b8\u13ae\u13a2": 10696, "\u2581\u13a4\u13f2\u13ae\u13cd\u13d7": 10697, "\u13c6\u13d2\u13a6\u13b8": 10698, "\u2581\u13d3\u13c2\u13be": 10699, "\u2581\u13d7\u13e3\u13d3\u13c5\u13d9\u13a9": 10700, "\u13a6\u13d4\u13bf\u13a5\u13be": 10701, "\u13b4\u13cd\u13d7\u13f1": 10702, "\u13f4\u13cd\u13aa\u13a2": 10703, "\u2581\u13ac\u13b5": 10704, "\u13c6\u13d7\u13c5\u13db": 10705, "\u13d2\u13d3\u13c5": 10706, "\u13cd\u13a6\u13a2\u13ae": 10707, "\u2581\u13a4\u13ec\u13e2\u13be\u13c1": 10708, "\u2581\u13a4\u13f2\u13c9\u13cd\u13a9\u13c2": 10709, "\u13ea\u13e3": 10710, "\u2581\u13a2\u13e5\u13a6": 10711, "\u13af\u13e5\u13a8": 10712, "\u13ac\u13cd\u13a6\u13b8": 10713, "\u2581\u13a4\u13c5\u13d7\u13f1": 10714, "\u2581\u13f1\u13d7\u13e5\u13f3\u13aa\u13d3\u13c1": 10715, "\u13d4\u13db\u13a9": 10716, "\u2581\u13a6\u13aa\u13d7\u13f1": 10717, "\u2581\u13a4\u13b5\u13c2": 10718, "\u13e5\u13cd\u13c8": 10719, "\u13f0\u13d7": 10720, "\u2581\u13da\u13be\u13b5\u13c2\u13aa": 10721, "\u13d7\u13cd\u13a6\u13b3\u13c1": 10722, "\u2581\u13a0\u13c2\u13b2\u13cd\u13a8": 10723, "\u2581\u13e7\u13c2\u13ad": 10724, "\u13be\u13cf\u13d7": 10725, "\u13be\u13b5\u13d6\u13b8\u13c2": 10726, "\u13b5\u13a8": 10727, "\u2581\u13a0\u13c2\u13df": 10728, "\u13ab\u13f4\u13b2": 10729, "\u2581\u13a2\u13e3\u13b4": 10730, "\u2581\u13a0\u13db\u13c1\u13b5\u13cd": 10731, "\u13a6\u13d9\u13a5\u13af\u13cd\u13d7": 10732, "\u13da\u13db\u13db\u13c5\u13a9": 10733, "\u13ac\u13be\u13c9": 10734, "\u2581\u13a4\u13c1\u13c5\u13a2\u13cd\u13d7": 10735, "\u13aa\u13b8\u13cf": 10736, "\u13f2\u13de\u13d2": 10737, "\u2581\u13a4\u13b6\u13d2\u13cd\u13d3\u13c1": 10738, "\u2581\u13a0\u13e2\u13c8\u13cd\u13d7": 10739, "\u13df\u13eb\u13db\u13d7": 10740, "\u13b5\u13a5\u13c2": 10741, "\u13c2\u13f4\u13ad": 10742, "\u2581\u13db\u13a0": 10743, "\u2581\u13d3\u13c2\u13f1": 10744, "\u2581\u13a4\u13e9\u13db": 10745, "\u13a9\u13ac": 10746, "\u2581\u13f1\u13c4\u13c5\u13c1": 10747, "\u13a8\u13f0\u13a2": 10748, "\u2581\u13ef\u13c6\u13d3\u13c5\u13d3\u13d7\u13cd": 10749, "\u2581\u13a0\u13cd\u13da\u13a9": 10750, "\u2581\u13d7\u13ac\u13c2": 10751, "\u2581\u13a4\u13cd\u13d5\u13b8\u13ae": 10752, "\u13db\u13ce\u13a2": 10753, "\u2581\u13c4\u13e9\u13be": 10754, "\u2581\u13a4\u13d3\u13c2\u13f4": 10755, "\u2581\u13a6\u13e5\u13d4\u13f2\u13ce": 10756, "\u2581\u13ac\u13e9\u13c2\u13be\u13c4\u13aa\u13eb\u13d2": 10757, "\u13ab\u13e4\u13b5": 10758, "\u2581\u13a3\u13a9\u13c2\u13d9": 10759, "\u2581\u13f1\u13d5\u13e3": 10760, "\u2581\u13d7\u13b2\u13a2": 10761, "\u13d9\u13b0\u13a2": 10762, "\u13db\u13d3\u13cd\u13d3\u13c1\u13d7\u13f1": 10763, "\u13ec\u13a6": 10764, "\u13a7\u13be\u13c2": 10765, "\u2581\u13da\u13a9\u13ce": 10766, "\u13be\u13e3\u13ea\u13d0\u13b8\u13cd\u13d9\u13d7": 10767, "\u2581\u13a0\u13d3\u13a9\u13a1": 10768, "\u2581\u13e3\u13cd\u13c6\u13c2\u13aa": 10769, "\u13b5\u13ce\u13af": 10770, "\u2581\u13d7\u13e4\u13b7": 10771, "\u13c2\u13f4\u13b2\u13a9": 10772, "\u2581\u13eb\u13da\u13c2\u13f2\u13af\u13ce": 10773, "\u2581\u13a2\u13e8\u13f4\u13c1": 10774, "\u13e5\u13aa\u13b5\u13f0\u13d7\u13f1": 10775, "\u13eb\u13f1": 10776, "\u2581\u13a0\u13e5\u13f4": 10777, "\u2581\u13a1\u13e5\u13c3\u13c1": 10778, "\u2581\u13d7\u13a6\u13ac": 10779, "\u2581\u13d5\u13e5\u13c1": 10780, "\u13a5\u13cd\u13ac\u13be": 10781, "\u2581\u13d3\u13be\u13c1\u13b6": 10782, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d7\u13cd\u13ac\u13a2": 10783, "\u2581\u13a4\u13ec\u13d8": 10784, "\u2581\u13a0\u13c6\u13b5\u13c3\u13ae\u13d4\u13c5": 10785, "\u13eb\u13d2\u13af": 10786, "\u13aa\u13d7\u13f1": 10787, "\u2581\u13a4\u13ea\u13c5\u13a1": 10788, "\u13e9\u13d8\u13ad": 10789, "\u13c5\u13ce\u13c3": 10790, "\u13c2\u13cd\u13a9\u13f4\u13a6": 10791, "\u13e9\u13db\u13a1\u13d7\u13f1": 10792, "\u13be\u13d7\u13c5\u13d2\u13a9": 10793, "\u2581\u13da\u13c5\u13c5": 10794, "\u13c2\u13ce": 10795, "\u2581\u13e7\u13ea\u13f0": 10796, "\u2581\u13a0\u13c2\u13a7\u13b5": 10797, "\u13d2\u13c1": 10798, "\u13d4\u13c2\u13b4": 10799, "\u13da\u13d9\u13a5": 10800, "\u2581\u13a4\u13c2\u13a6\u13d9\u13a5\u13af\u13cd\u13d7": 10801, "\u2581\u13a8\u13e3\u13aa\u13e9\u13db\u13d7": 10802, "\u13ce\u13a6": 10803, "\u13f2\u13b8\u13a9": 10804, "\u2581\u13d7\u13a6\u13b4\u13c5": 10805, "\u2581\u13a4\u13d1\u13b8": 10806, "\u2581\u13a2\u13cf": 10807, "\u2581\u13e7\u13d0": 10808, "\u13e5\u13a6\u13d6\u13c3\u13ad": 10809, "\u13a6\u13d4\u13c2\u13b4": 10810, "\u2581\u13e3\u13d3\u13c5\u13d6": 10811, "\u2581\u13a0\u13a9\u13f0\u13b8\u13d2": 10812, "\u13e5\u13c2\u13d0\u13d7\u13f1": 10813, "\u2581\u13d3\u13da": 10814, "\u2581\u13a8\u13e5\u13ef\u13c5": 10815, "\u13ef\u13c5\u13af\u13b8": 10816, "\u13c5\u13cd\u13d3\u13d5": 10817, "\u13cd\u13d3\u13a6\u13f4\u13af\u13d3": 10818, "\u13d5\u13b6\u13c6\u13a5": 10819, "\u2581\u13e7\u13be\u13c1": 10820, "\u13d3\u13e6\u13b2": 10821, "\u13f1\u13cd\u13aa\u13a2": 10822, "\u2581\u13a2\u13b8\u13cd\u13a9\u13c9": 10823, "\u2581\u13aa\u13cd\u13d7": 10824, "\u13e5\u13da\u13a2\u13cd\u13d3\u13c1\u13b8": 10825, "\u13cd\u13c6\u13d7\u13cd\u13d7\u13f1": 10826, "\u13ab\u13f4\u13a1\u13d7": 10827, "\u13d2\u13b2": 10828, "\u13b7\u13e4\u13b0\u13a2": 10829, "\u13b6\u13c4\u13ae\u13cd\u13a9": 10830, "\u13f0\u13d9\u13b3\u13db\u13c5": 10831, "\u13c2\u13f4\u13d9\u13d7": 10832, "\u2581\u13a0\u13a9\u13e9\u13d2": 10833, "\u2581\u13ac\u13cd\u13ac": 10834, "\u2581\u13da\u13aa\u13b2\u13c3": 10835, "\u2581\u13d3\u13c2\u13af\u13ef\u13cd": 10836, "\u2581\u13e7\u13be\u13d3\u13af\u13cd\u13d7": 10837, "\u13ab\u13cd\u13db\u13d7": 10838, "\u13cd\u13aa\u13b3": 10839, "\u2581\u13ac\u13e9\u13cd\u13c6\u13d7\u13cd": 10840, "\u13be\u13d3\u13e8\u13ef\u13cd": 10841, "\u13a7\u13b5\u13a2\u13cd\u13d4\u13c5": 10842, "\u13f3\u13b2\u13cd\u13a9": 10843, "\u2581\u13e5\u13c5\u13cf\u13d3\u13cd\u13d7\u13c3": 10844, "\u2581\u13e5\u13f3\u13af\u13c3": 10845, "\u2581\u13a4\u13f2\u13b4\u13a2": 10846, "\u2581\u13ed\u13d6\u13b3": 10847, "\u2581\u13a4\u13f2\u13b0\u13ce": 10848, "\u13ef\u13d9\u13ae\u13ae\u13cd\u13d7": 10849, "\u13cd\u13aa\u13b8\u13e8": 10850, "\u13f2\u13b1\u13ce\u13b8\u13af": 10851, "\u13a6\u13df": 10852, "\u2581\u13f3\u13d7\u13d4": 10853, "\u2581\u13d9\u13d3\u13e5\u13c3\u13a9": 10854, "\u13ed\u13aa": 10855, "\u2581\u13a4\u13be\u13d5\u13ef\u13d9\u13d7": 10856, "\u13d3\u13c1\u13df\u13f4\u13d2": 10857, "\u2581\u13a4\u13c2\u13df\u13cc\u13c5": 10858, "\u13f2\u13b2\u13a9": 10859, "\u13b5\u13c3\u13ae\u13d4\u13c5\u13a9": 10860, "\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13af": 10861, "\u2581\u13a1\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd": 10862, "\u2581\u13cd\u13c6\u13db\u13d3\u13cd\u13d3": 10863, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4": 10864, "\u2581\u13d7\u13e5\u13c1\u13b8": 10865, "\u13c4\u13ec\u13a5": 10866, "\u2581\u13ef\u13d3": 10867, "\u2581\u13f1\u13c2\u13e8\u13c1": 10868, "\u2581\u13a7\u13c5\u13c2\u13cd\u13a9\u13c9": 10869, "\u2581\u13a2\u13e3\u13d9\u13b4\u13b0": 10870, "\u2581\u13a4\u13b5\u13cd\u13d9\u13f0": 10871, "\u13b7\u13aa": 10872, "\u13d0\u13c8\u13b5": 10873, "\u13a7\u13f2\u13d7": 10874, "\u2581\u13a0\u13d3\u13d4\u13b6\u13af": 10875, "\u13df\u13b6\u13cd\u13d7": 10876, "\u2581\u13a2\u13e3\u13ea\u13cd\u13d7": 10877, "\u2581\u13e7\u13c3\u13af\u13f3\u13d7": 10878, "\u13be\u13d3\u13db\u13c1\u13ad": 10879, "\u2581\u13d9\u13a4\u13c1\u13c5": 10880, "\u2581\u13a1\u13e5\u13cd\u13d5\u13b8": 10881, "\u13c2\u13ef\u13eb\u13cd\u13ac": 10882, "\u13a7\u13bf\u13e9\u13d7\u13d9\u13ae\u13cd\u13d7": 10883, "\u2581\u13a0\u13b4\u13c2\u13d3\u13cd\u13d7": 10884, "\u13e5\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac": 10885, "\u2581\u13a4\u13cd\u13d3": 10886, "\u13b8\u13e8": 10887, "\u13ef\u13d8\u13c3\u13af\u13cf": 10888, "\u13b6\u13a8": 10889, "\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd\u13ac\u13a2": 10890, "\u2581\u13a4\u13db\u13af\u13cd\u13d7": 10891, "\u13e8\u13c1\u13d7\u13f1": 10892, "\u13af\u13ef\u13cd\u13d7": 10893, "\u2581\u13a4\u13b5\u13ac\u13da": 10894, "\u2581\u13c6\u13d9": 10895, "\u13be\u13d3\u13db\u13c1\u13d7\u13f1": 10896, "\u13c2\u13a5": 10897, "\u13b3\u13d1\u13b8": 10898, "\u13f2\u13b1\u13cd": 10899, "\u2581\u13cf\u13bb": 10900, "\u2581\u13d2\u13c3": 10901, "\u13e5\u13b7\u13e4\u13b8": 10902, "\u13a6\u13b4\u13cd\u13d7": 10903, "\u2581\u13a8\u13e6\u13af\u13f3\u13d7": 10904, "\u2581\u13a4\u13be\u13d9\u13b4\u13b0\u13d2\u13c3": 10905, "\u2581\u13a6\u13d9\u13ac\u13a2": 10906, "\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd\u13d7\u13f1": 10907, "\u2581\u13a2\u13e8\u13aa": 10908, "\u2581\u13a0\u13f2\u13aa": 10909, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d8": 10910, "\u13af\u13d9\u13b8": 10911, "\u13d3\u13c5\u13d6\u13ad": 10912, "\u2581\u13cf\u13c2": 10913, "\u2581\u13d2\u13d5": 10914, "\u13cd\u13d4\u13ef": 10915, "\u2581\u13a0\u13ce\u13db": 10916, "\u13ae\u13b8\u13af": 10917, "\u13b6\u13c1\u13a5": 10918, "\u2581\u13ad\u13b5\u13cd": 10919, "\u2581\u13d8\u13c5\u13b5": 10920, "\u13e5\u13be\u13cc\u13a2": 10921, "\u13c5\u13a1\u13af": 10922, "\u13e4\u13b6\u13af": 10923, "\u2581\u13c4\u13a8\u13f3\u13ce": 10924, "\u13e4\u13d9\u13ad": 10925, "\u13d9\u13ef\u13c5\u13af\u13d5\u13a2": 10926, "\u13b2\u13cd\u13d4\u13c5": 10927, "\u13d2\u13a8": 10928, "\u13c2\u13c5\u13eb\u13cd\u13d7\u13cd\u13a9": 10929, "\u13d8\u13c5\u13cd\u13d7\u13f1": 10930, "\u2581\u13a4\u13b5\u13d8\u13d2": 10931, "\u13ab\u13d3\u13b4": 10932, "\u13ae\u13ad": 10933, "\u2581\u13a3\u13a8": 10934, "\u2581\u13a0\u13cd\u13da\u13a2\u13cd": 10935, "\u2581\u13a0\u13a9\u13db": 10936, "\u2581\u13a3\u13a9\u13c3": 10937, "\u13d7\u13a6\u13c4\u13aa\u13aa": 10938, "\u13ac\u13d4\u13c5\u13af": 10939, "\u13a9\u13c1\u13e5": 10940, "\u13a6\u13e5\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13ad": 10941, "\u13e3\u13db\u13a6\u13c1\u13b8": 10942, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d4\u13c1": 10943, "\u13aa\u13d7\u13cd\u13a9": 10944, "\u2581\u13a4\u13ea\u13b5\u13ce\u13a2": 10945, "\u2581\u13a6\u13f0\u13aa": 10946, "\u2581\u13a7\u13be": 10947, "\u13c8\u13c3": 10948, "\u2581\u13a6\u13c2\u13a9": 10949, "\u13cd\u13d5\u13d3\u13b5\u13f4\u13cd": 10950, "\u2581\u13d7\u13e3\u13db": 10951, "\u13af\u13a6\u13d4\u13ad\u13cd\u13aa": 10952, "\u13e5\u13b5\u13a5\u13c2\u13b5": 10953, "\u13a6\u13d4\u13c2\u13b8": 10954, "\u13cd\u13d3\u13e9\u13d7\u13d9\u13ad": 10955, "\u2581\u13d4\u13b5\u13c9": 10956, "\u13d0\u13d7\u13f1": 10957, "\u2581\u13a6\u13d9\u13a8\u13a2": 10958, "\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8\u13cd\u13d7": 10959, "\u2581\u13a4\u13c2\u13a9": 10960, "\u2581\u13a0\u13cd\u13a6\u13f0\u13ac\u13cd": 10961, "\u13cf\u13d9\u13b8": 10962, "\u13e5\u13f4\u13a9": 10963, "\u13d5\u13d9\u13db": 10964, "\u2581\u13a0\u13be\u13e1\u13d7": 10965, "\u13e2\u13be": 10966, "\u13e3\u13d3\u13c5\u13d4": 10967, "\u2581\u13a2\u13cd\u13d7\u13aa": 10968, "\u13c2\u13a6\u13b8": 10969, "\u2581\u13da\u13c3\u13d2": 10970, "\u2581\u13a6\u13b8\u13c5": 10971, "\u2581\u13a3\u13e5\u13c5": 10972, "\u13b8\u13be\u13c9": 10973, "\u13f0\u13b8\u13c5": 10974, "\u2581\u13a0\u13d9\u13b4\u13b0": 10975, "\u13be\u13b5\u13cd\u13d3\u13f4\u13d7": 10976, "\u2581\u13e3\u13c2\u13a7\u13d4\u13ae": 10977, "p": 10978, "\u13be\u13d3\u13c2\u13b8\u13e4": 10979, "\u2581\u13da\u13cf\u13b3\u13db\u13a2": 10980, "\u13e5\u13ec\u13c1\u13d4\u13c5": 10981, "\u2581\u13a6\u13d5\u13b6\u13a3\u13cd": 10982, "\u2581\u13a3\u13c2\u13cd\u13a9\u13c2": 10983, "\u13b5\u13c1\u13cc": 10984, "\u13aa\u13b8": 10985, "\u2581\u13e5\u13d5\u13b2": 10986, "\u13e9\u13c2\u13cc\u13c1": 10987, "\u2581\u13af\u13c3\u13ae\u13cd\u13ac": 10988, "\u13c2\u13f4\u13cd\u13d7": 10989, "\u2581\u13c2\u13ac\u13c5\u13a9": 10990, "\u2581\u13af\u13cd\u13da": 10991, "\u13db\u13c1\u13b0\u13a2": 10992, "\u13b7\u13cf": 10993, "\u13c2\u13ce\u13a2": 10994, "\u2581\u13a4\u13ea\u13b3\u13d7\u13cd": 10995, "\u13b7\u13e4\u13b2": 10996, "\u2581\u13a4\u13f1\u13b6": 10997, "\u2581\u13a0\u13c6\u13cd\u13d7": 10998, "\u2581\u13a4\u13c2\u13d4\u13f2": 10999, "\u13f4\u13cd\u13d5\u13cd\u13d7": 11000, "\u13c2\u13cf\u13c1": 11001, "\u2581\u13a7\u13c1\u13c9\u13a8": 11002, "\u13c5\u13cd\u13d4": 11003, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1": 11004, "\u13e5\u13ef\u13c5\u13b2": 11005, "\u2581\u13a0\u13a9\u13ac": 11006, "\u13c2\u13a6\u13b5\u13cd\u13d3": 11007, "\u2581\u13e7\u13ec\u13e2": 11008, "\u2581\u13a4\u13c2\u13d0": 11009, "\u13cd\u13d3\u13a1": 11010, "\u2581\u13a4\u13d0": 11011, "\u2581\u13d5\u13a9\u13c2\u13f4": 11012, "\u13d3\u13a6": 11013, "\u13be\u13f0\u13cd\u13ac\u13a2": 11014, "\u2581\u13e7\u13c2\u13cd": 11015, "\u13e5\u13eb": 11016, "\u2581\u13c2\u13e5\u13a6\u13d4": 11017, "\u13c5\u13eb\u13cd\u13d7\u13cd\u13a8": 11018, "\u2581\u13a4\u13d3\u13b5\u13d3\u13cd": 11019, "\u13f0\u13b8\u13b0": 11020, "\u13be\u13a6\u13d4\u13b2": 11021, "\u13cf\u13be\u13cd\u13db": 11022, "\u2581\u13cd\u13c6\u13c2": 11023, "\u2581\u13a4\u13b7\u13e8\u13a2": 11024, "\u13d3\u13d9\u13b5\u13cd\u13d9\u13d7\u13f1": 11025, "\u2581\u13d3\u13a9\u13a7": 11026, "\u13e5\u13cd\u13aa\u13b5": 11027, "\u2581\u13c2\u13ac\u13f4": 11028, "\u13ad\u13c2\u13cd\u13d4\u13c5": 11029, "\u13af\u13ce\u13b4": 11030, "\u13ec\u13a1": 11031, "\u2581\u13d3\u13c6\u13b4": 11032, "\u2581\u13e7\u13ec\u13da": 11033, "\u13d5\u13e8\u13a9": 11034, "\u2581\u13a2\u13e4\u13b5": 11035, "\u13a9\u13d9\u13b5\u13cd\u13d7\u13f1": 11036, "\u13ac\u13c2\u13d0\u13d7\u13f1": 11037, "\u13b4\u13c5\u13d7\u13f1": 11038, "\u2581\u13a4\u13be\u13b4\u13d7": 11039, "\u13ef\u13aa\u13a6": 11040, "\u2581\u13a4\u13a8\u13a2": 11041, "\u13d8\u13cd\u13d3\u13c1\u13af": 11042, "\u13ef\u13e8": 11043, "\u2581\u13d3\u13c1\u13b6\u13db": 11044, "\u2581\u13da\u13c2\u13f2\u13d2": 11045, "\u2581\u13eb\u13d3\u13be": 11046, "\u13a6\u13b6\u13d9\u13d7": 11047, "\u2581\u13eb\u13a6\u13c5": 11048, "\u13cd\u13da\u13e3": 11049, "\u13a7\u13ae": 11050, "\u13d4\u13b6": 11051, "\u2581\u13d3\u13aa\u13e9\u13d8\u13cd\u13a8": 11052, "\u2581\u13a4\u13d4\u13d5\u13a9\u13cd\u13a8": 11053, "\u13b5\u13ce\u13d7": 11054, "\u2581\u13e7\u13be\u13c1\u13b3": 11055, "\u2581\u13ac\u13ef\u13db\u13c1": 11056, "\u2581\u13a4\u13b5\u13c3\u13af\u13f0": 11057, "\u2581\u13be\u13d7\u13cd": 11058, "\u2581\u13a4\u13e4\u13b8\u13c5": 11059, "ns": 11060, "\u2581\u13a2\u13cd\u13aa": 11061, "\u13f0\u13b5\u13ce\u13ad": 11062, "\u2581\u13c2\u13da\u13be": 11063, "\u13d5\u13d4\u13c5\u13af": 11064, "\u2581\u13c5\u13ac": 11065, "\u2581\u13db\u13be\u13b5\u13cd\u13d3\u13f4": 11066, "\u2581\u13a2\u13cd\u13d3\u13db": 11067, "\u2581\u13ac\u13e9\u13ef\u13a2": 11068, "\u2581\u13da\u13a6\u13d9\u13cd\u13d4\u13c1": 11069, "\u13a6\u13e1\u13d3": 11070, "\u2581\u13a6\u13d3\u13ec": 11071, "\u13bf\u13b8": 11072, "\u13cd\u13a9\u13f0\u13f2\u13b2": 11073, "\u13eb\u13cd\u13d4\u13c1": 11074, "\u2581\u13a0\u13b5\u13cd\u13a9": 11075, "\u13d4\u13f2\u13ce\u13b8": 11076, "\u2581\u13ac\u13ec\u13af\u13f3\u13b2\u13cd\u13a8": 11077, "\u13d7\u13cd": 11078, "\u2581\u13a4\u13cd\u13a6\u13cd\u13d3\u13c1": 11079, "\u13c6\u13d3\u13be\u13f0\u13cd": 11080, "\u2581\u13ed\u13aa\u13b2": 11081, "\u2581\u13d3\u13c2\u13c3\u13ae": 11082, "\u13b3\u13cd\u13db": 11083, "\u13d3\u13c1\u13ae\u13a2": 11084, "\u2581\u13a4\u13c3\u13ae": 11085, "\u13a6\u13d1\u13f0\u13db": 11086, "\u2581\u13da\u13ea\u13ef": 11087, "\u2581\u13e5\u13ef\u13d9\u13b5": 11088, "\u13f0\u13c5": 11089, "\u2581\u13ac\u13e9\u13f2": 11090, "\u13be\u13d3\u13c2\u13b8\u13e8": 11091, "\u13c2\u13cc\u13d9\u13f4": 11092, "\u2581\u13a2\u13e4\u13b5\u13ce": 11093, "\u2581\u13d3\u13e5\u13c3": 11094, "\u2581\u13a4\u13c2\u13a6\u13ef\u13b7": 11095, "\u13d1\u13f1": 11096, "\u13b5\u13f2": 11097, "\u2581\u13e7\u13be\u13b5": 11098, "\u2581\u13cd\u13c6\u13d3\u13c5": 11099, "\u13b8\u13eb\u13cd\u13d3\u13c1\u13b4": 11100, "\u13af\u13ce\u13b8\u13a2": 11101, "\u2581\u13f1\u13d3\u13a9\u13ef": 11102, "\u2581\u13a4\u13c2\u13c1\u13ce": 11103, "\u13a7\u13b8\u13a9": 11104, "\u2581\u13a4\u13c2\u13e3": 11105, "\u2581\u13da\u13cf\u13d4\u13d5": 11106, "\u13c1\u13b3\u13d7\u13cd\u13a8": 11107, "\u2581\u13a0\u13aa\u13b5\u13f0\u13cd\u13aa": 11108, "\u2581\u13a1\u13e3\u13b5": 11109, "\u2581\u13a0\u13d3\u13ef\u13c5": 11110, "\u2581\u13da\u13d2\u13c1": 11111, "\u13be\u13f2\u13aa": 11112, "\u13be\u13a9\u13ea\u13d2": 11113, "\u2581\u13a8\u13e6\u13af\u13f3": 11114, "\u13a9\u13c2\u13ac\u13a6": 11115, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa": 11116, "\u13ce\u13a9": 11117, "\u2581\u13a2\u13e5\u13f0\u13b8\u13d2": 11118, "\u2581\u13ef\u13cd\u13a6\u13a2\u13ae": 11119, "\u2581\u13a4\u13ec\u13ce": 11120, "\u2581\u13ac\u13e9\u13db\u13d3\u13cd\u13d3\u13c1": 11121, "\u13af\u13ce\u13b8\u13af": 11122, "\u2581\u13e7\u13aa\u13b2": 11123, "\u13a2\u13cd\u13d3\u13c1\u13d7\u13f1": 11124, "\u2581\u13a4\u13be\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7": 11125, "\u2581\u13a2\u13cd\u13c6": 11126, "\u13d9\u13b4\u13a2": 11127, "\u13a6\u13b5\u13f4": 11128, "\u2581\u13ed\u13c2\u13f4\u13cd\u13d7": 11129, "\u2581\u13f1\u13e5\u13f2": 11130, "\u13e4\u13c5": 11131, "\u13ab\u13cd\u13db": 11132, "\u13a7\u13d8": 11133, "\u13b5\u13f2\u13a9": 11134, "\u2581\u13d7\u13d3\u13b4\u13b2\u13cd\u13a8": 11135, "\u2581\u13f4\u13eb\u13cd\u13a9\u13c2": 11136, "\u13a8\u13d9\u13b0": 11137, "\u2581\u13a4\u13be\u13e6\u13d7": 11138, "\u13cf\u13cc\u13c5": 11139, "\u2581\u13d3\u13f0\u13e5": 11140, "\u13b8\u13cd\u13d4\u13c5": 11141, "\u2581\u13a0\u13e5\u13aa\u13d7": 11142, "\u13e3\u13b6\u13c1": 11143, "\u13be\u13c9\u13af": 11144, "\u13e3\u13c3\u13c1\u13b5": 11145, "\u2581\u13da\u13c2\u13c5": 11146, "\u13d3\u13b4\u13b2\u13cd\u13a9": 11147, "\u13d3\u13f0\u13c5": 11148, "\u2581\u13d9\u13e4": 11149, "\u2581\u13db\u13ad": 11150, "\u13e3\u13c5": 11151, "\u13d3\u13c5\u13a6\u13b8": 11152, "\u13a9\u13b8\u13d4\u13c1": 11153, "\u13ce\u13aa\u13a9": 11154, "\u13ea\u13b8": 11155, "\u13b5\u13b4": 11156, "\u13ec\u13c2\u13af\u13cd\u13d7\u13f1": 11157, "\u13c6\u13c5\u13d4": 11158, "\u2581\u13c2\u13a8\u13e5": 11159, "\u13c9\u13d1\u13b4": 11160, "\u2581\u13a0\u13be\u13c5": 11161, "\u13e8\u13a6": 11162, "\u2581\u13a5\u13a9\u13c1\u13b8": 11163, "\u2581\u13d7\u13d5": 11164, "\u2581\u13e5\u13f2": 11165, "\u13b3\u13c5\u13d3\u13d5\u13b8": 11166, "\u2581\u13f1\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1": 11167, "\u13b4\u13eb\u13cd\u13d7\u13cd\u13a8": 11168, "\u13b8\u13c3\u13d8\u13ad": 11169, "\u2581\u13a5\u13ac\u13e9": 11170, "\u13b5\u13ae\u13b5\u13e5": 11171, "\u13c5\u13a6\u13b5\u13cd\u13ac\u13a2": 11172, "\u13b8\u13a5\u13cd\u13a9": 11173, "\u2581\u13e5\u13d3\u13be": 11174, "\u13c2\u13df": 11175, "\u2581\u13a4\u13a7\u13d9\u13cd": 11176, "\u13d4\u13b3\u13ec": 11177, "\u13e5\u13a9\u13cd\u13d7": 11178, "\u13df\u13cc\u13c5\u13a9": 11179, "\u2581\u13f1\u13c2\u13e3\u13db": 11180, "\u2581\u13a4\u13b5\u13ae\u13b5\u13e4\u13b8": 11181, "\u13cd\u13a6\u13c3\u13b8": 11182, "\u2581\u13e7\u13c5\u13d9\u13d7": 11183, "\u2581\u13ac\u13c6\u13d5": 11184, "\u2581\u13a7\u13c1\u13a2\u13cd": 11185, "\u2581\u13a0\u13be\u13db\u13a9": 11186, "\u13db\u13a6\u13c1\u13d7\u13f1": 11187, "\u13a6\u13e2\u13c8": 11188, "\u2581\u13f3\u13dd": 11189, "\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8\u13a2": 11190, "\u13be\u13b4\u13eb\u13cd\u13d4\u13c1": 11191, "\u2581\u13d7\u13c2\u13f2\u13b5\u13c9": 11192, "\u13d2\u13a6\u13b3": 11193, "\u13dd\u13b4": 11194, "\u13e5\u13ef\u13ec\u13a5": 11195, "\u2581\u13a4\u13ec\u13ea\u13b3": 11196, "\u2581\u13d9\u13d3\u13e5\u13ef": 11197, "\u2581\u13a0\u13a9\u13b7\u13e4\u13d7": 11198, "\u2581\u13ac\u13ef\u13db\u13c1\u13b8": 11199, "\u13d7\u13d4\u13cd\u13d7\u13f1": 11200, "\u2581\u13e7\u13c2\u13c1\u13e4": 11201, "\u2581\u13a4\u13db\u13d3\u13cd": 11202, "\u2581\u13a4\u13ea\u13d9\u13b5\u13e8": 11203, "\u13ac\u13c1\u13d7\u13f1": 11204, "\u13d3\u13aa\u13e9\u13d8\u13ad": 11205, "\u2581\u13a1\u13e3\u13da": 11206, "\u2581\u13d9\u13db\u13c3": 11207, "\u2581\u13e5\u13c5\u13e9\u13cd\u13d7": 11208, "\u13ef\u13db\u13d7": 11209, "\u2581\u13d7\u13a6\u13a8": 11210, "\u13cc\u13be": 11211, "\u13af\u13d3\u13cd\u13d7\u13f1": 11212, "\u13be\u13da\u13b5\u13cd\u13a8\u13cd\u13d7": 11213, "\u13b5\u13cd\u13d4\u13f4\u13b2\u13cd\u13ac": 11214, "\u13f2\u13cd\u13d9\u13d7": 11215, "\u2581\u13a4\u13c2\u13ef\u13b8": 11216, "\u2581\u13a4\u13c1\u13b3\u13d7\u13cd\u13d7": 11217, "\u13af\u13cd\u13d7\u13cd\u13a9": 11218, "\u13c2\u13cd\u13da\u13a9": 11219, "\u13a9\u13a7\u13cf": 11220, "\u13cd\u13a9\u13f2\u13ce\u13ad": 11221, "\u2581\u13a0\u13d3\u13be\u13cf\u13c2": 11222, "\u2581\u13ac\u13a9\u13ef": 11223, "\u13e9\u13c9": 11224, "\u2581\u13b2\u13c2": 11225, "\u13e5\u13f0\u13b5\u13d2": 11226, "\u13ab\u13f1\u13cd\u13a8\u13cd\u13d7": 11227, "\u2581\u13d5\u13b6": 11228, "\u13db\u13c1\u13b5\u13cd\u13a9": 11229, "\u13cd\u13aa\u13b8\u13d3\u13cf": 11230, "\u2581\u13c2\u13ac\u13c5\u13a2": 11231, "\u13be\u13c4\u13aa\u13a8\u13cd\u13d7": 11232, "\u13cd\u13a9\u13a6\u13d4\u13ad": 11233, "\u13c6\u13c2\u13cf": 11234, "\u13c3\u13c1\u13b8\u13af": 11235, "\u13e5\u13c3\u13cd\u13db": 11236, "\u13ac\u13e9\u13aa\u13b2": 11237, "\u2581\u13d7\u13a6\u13cd\u13a9\u13b6": 11238, "\u13d5\u13cb\u13af\u13cd\u13d7": 11239, "\u13be\u13bf": 11240, "\u2581\u13a6\u13a7\u13b2": 11241, "\u2581\u13da\u13d9\u13ea": 11242, "\u13e3\u13f2\u13ad": 11243, "\u2581\u13da\u13d9\u13a5\u13a9": 11244, "\u2581\u13a0\u13b9\u13c9": 11245, "\u13b5\u13ce\u13ad": 11246, "\u13d3\u13c2\u13b8\u13a8\u13cd\u13d7": 11247, "\u13a6\u13c4\u13aa\u13ac\u13a2": 11248, "\u13a6\u13e5\u13f4": 11249, "\u13ea\u13d9\u13b5\u13e8\u13a9": 11250, "\u13be\u13d3\u13c5\u13d6\u13b8": 11251, "\u13b5\u13e8": 11252, "\u13b5\u13cd\u13da\u13b6": 11253, "\u2581\u13a4\u13b5\u13e0\u13ef\u13cd": 11254, "\u2581\u13a6\u13d7\u13d4": 11255, "\u2581\u13da\u13ea\u13a7": 11256, "\u2581\u13c4\u13e7\u13c8\u13cd": 11257, "\u2581\u13e3\u13db\u13d7": 11258, "\u2581\u13a4\u13c2\u13f2\u13b0\u13ce": 11259, "\u13eb\u13a8\u13d9\u13b2": 11260, "\u2581\u13a0\u13e5\u13cd\u13da": 11261, "\u13ae\u13cd\u13ac\u13be": 11262, "\u2581\u13a0\u13c2\u13be\u13b7\u13cd": 11263, "\u13a8\u13d3\u13b5": 11264, "\u2581\u13a0\u13a9\u13e9\u13db\u13d7": 11265, "\u13a9\u13a1\u13b4": 11266, "\u13c5\u13ce\u13a2": 11267, "\u2581\u13f4\u13a6\u13e5\u13cd\u13a6": 11268, "\u2581\u13af\u13e9\u13db": 11269, "\u2581\u13c2\u13ac\u13c2\u13cf": 11270, "\u2581\u13a4\u13b5\u13cd\u13aa\u13b8\u13d9\u13d7": 11271, "\u13d8\u13c2\u13d9\u13af": 11272, "\u2581\u13ef\u13c2\u13c1": 11273, "\u2581\u13f3\u13f4": 11274, "\u13db\u13d3\u13b4\u13b2\u13cd\u13a9": 11275, "\u13c3\u13ad\u13dd": 11276, "\u2581\u13a8\u13e3\u13c1\u13a2\u13cd\u13d7": 11277, "\u13b8\u13c9\u13d7\u13cd\u13a8\u13cd\u13d7": 11278, "\u2581\u13a2\u13e5\u13a7\u13b5\u13a2": 11279, "\u13b5\u13cd\u13d3\u13c1\u13d7": 11280, "\u2581\u13e9\u13c2": 11281, "\u13a9\u13e0": 11282, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1": 11283, "\u2581\u13d5\u13a6\u13c2\u13f1\u13cd": 11284, "\u13be\u13c4\u13aa\u13ac": 11285, "\u13e3\u13d3\u13f1\u13b8": 11286, "\u2581\u13a0\u13be\u13b5\u13e5\u13d9\u13c2\u13d9": 11287, "\u13c4\u13aa\u13eb\u13cd\u13a6": 11288, "\u2581\u13b2\u13be": 11289, "\u13d3\u13ec\u13a0": 11290, "\u13d3\u13c1\u13b5": 11291, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7\u13f1": 11292, "\u2581\u13a8\u13e5\u13f0\u13b8": 11293, "\u13c4\u13aa\u13e4": 11294, "\u13ce\u13db": 11295, "\u13e0\u13ef": 11296, "\u13a6\u13d9\u13cd\u13d5\u13a2": 11297, "\u13d9\u13e2\u13d2\u13a2": 11298, "\u13a1\u13be": 11299, "\u13c2\u13da\u13ea\u13ce\u13b8\u13a9": 11300, "\u13a6\u13db\u13b4\u13af": 11301, "\u2581\u13a8\u13e5\u13c1": 11302, "\u2581\u13a6\u13c1\u13df\u13f4": 11303, "\u13be\u13f0\u13af": 11304, "\u13e5\u13d3\u13cd\u13d7": 11305, "\u13a6\u13b8\u13d3": 11306, "\u13f0\u13b2\u13be": 11307, "\u13c6\u13d5\u13d8\u13f4\u13b2": 11308, "\u13a6\u13d4\u13b2\u13a2": 11309, "\u13df\u13f4\u13ad": 11310, "\u2581\u13a4\u13db\u13c2\u13d7": 11311, "\u2581\u13e8\u13db": 11312, "\u2581\u13e7\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 11313, "\u13f1\u13b5\u13d9\u13ad": 11314, "\u2581\u13a0\u13b5\u13cd\u13aa": 11315, "\u13d5\u13d9\u13ad": 11316, "\u13d9\u13a8\u13cd\u13d7": 11317, "\u13d1\u13b5\u13aa\u13ac": 11318, "\u2581\u13a4\u13aa\u13ae\u13c3": 11319, "\u2581\u13a0\u13a9\u13c1\u13e4": 11320, "\u2581\u13c4\u13ea\u13a1": 11321, "\u13c4\u13ae\u13b5": 11322, "\u2581\u13a6\u13be\u13cd": 11323, "\u13c2\u13e9\u13db\u13b2": 11324, "\u2581\u13af\u13c3\u13c1\u13b8": 11325, "\u2581\u13e5\u13da\u13c4\u13aa": 11326, "\u13c2\u13cd\u13aa": 11327, "\u13c1\u13d9\u13af": 11328, "\u13a7\u13be\u13c5": 11329, "\u2581\u13d3\u13f0\u13b5": 11330, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd": 11331, "\u2581\u13d3\u13e5\u13b6\u13cd": 11332, "\u13b7\u13ac\u13be": 11333, "\u2581\u13da\u13c3\u13f4": 11334, "\u13a8\u13ae": 11335, "\u2581\u13a2\u13e3\u13ab\u13f1\u13cd": 11336, "\u13ad\u13c9": 11337, "\u2581\u13a0\u13b8\u13af": 11338, "\u13d5\u13c3": 11339, "\u2581\u13a2\u13a6\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7": 11340, "\u13a6\u13d8\u13f0\u13a2": 11341, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8\u13a9": 11342, "\u13db\u13d3\u13cd\u13d4\u13c2": 11343, "\u13a7\u13c1\u13e5": 11344, "\u2581\u13e7\u13f3": 11345, "\u2581\u13a1\u13b6\u13af\u13c9": 11346, "\u2581\u13d5\u13ac\u13a9": 11347, "\u13c2\u13cd\u13d8\u13f0\u13ac": 11348, "\u13f2\u13a9": 11349, "\u13e3\u13e2": 11350, "\u2581\u13d3\u13ac\u13ef": 11351, "\u13ef\u13d1\u13f0\u13db": 11352, "\u2581\u13ac\u13f4": 11353, "\u2581\u13a0\u13d4": 11354, "\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 11355, "\u2581\u13db\u13aa": 11356, "\u13d3\u13b4\u13b2\u13cd\u13a8": 11357, "\u2581\u13af\u13cd\u13d5\u13b8\u13d7": 11358, "\u13c2\u13ad": 11359, "\u2581\u13e3\u13c4\u13ec": 11360, "\u2581\u13a2\u13e4\u13d3\u13cd\u13d7": 11361, "\u2581\u13a2\u13e4\u13f2": 11362, "\u13d6\u13c6\u13b6": 11363, "\u2581\u13a0\u13c2\u13b6\u13cf\u13d9": 11364, "\u13d7\u13d2\u13c5": 11365, "\u13c1\u13b5\u13d9\u13b8": 11366, "\u13a6\u13f0\u13c3": 11367, "\u2581\u13a4\u13c2\u13c1\u13a6": 11368, "\u13c2\u13d4\u13f2\u13b4": 11369, "\u2581\u13e7\u13b5\u13cd\u13da": 11370, "\u13a6\u13c3\u13e5": 11371, "\u2581\u13a4\u13c2\u13cd\u13d8\u13f0": 11372, "\u2581\u13ac\u13d4\u13c5": 11373, "\u13e5\u13c1\u13e4\u13b8\u13af": 11374, "\u2581\u13e5\u13c2\u13e8": 11375, "\u2581\u13e7\u13ab\u13f4": 11376, "\u13e4\u13b5\u13a6\u13ef": 11377, "\u13a7\u13be\u13e9\u13d7\u13d9": 11378, "\u13a9\u13a1\u13d7": 11379, "\u13a1\u13ae": 11380, "\u2581\u13d5\u13e7\u13aa\u13d7\u13cd": 11381, "\u13e7\u13e3": 11382, "\u2581\u13f4\u13d3\u13a6": 11383, "\u13be\u13a6\u13d4\u13b2\u13cd\u13ac": 11384, "\u2581\u13a8\u13aa": 11385, "\u13e6\u13f1": 11386, "\u13d3\u13d1\u13f4\u13a2": 11387, "\u13de\u13e4": 11388, "\u2581\u13a4\u13cd\u13c6\u13b8\u13d7": 11389, "\u13d3\u13a8\u13db": 11390, "pi": 11391, "\u13ef\u13d6\u13c3": 11392, "\u13ce\u13b5\u13d9": 11393, "\u13f4\u13ad\u13a6": 11394, "\u2581\u13de\u13a6\u13c9": 11395, "\u13e3\u13c1\u13b5": 11396, "\u13c3\u13af\u13cf": 11397, "\u13db\u13db\u13c5\u13a9": 11398, "\u2581\u13e3\u13d5": 11399, "\u13f2\u13a6\u13d8": 11400, "\u13be\u13c1\u13cd\u13a8\u13d7": 11401, "\u13d3\u13e5\u13a9\u13cf": 11402, "\u2581\u13a0\u13a7\u13d4": 11403, "\u2581\u13a4\u13c2\u13f2\u13af\u13cd\u13d4": 11404, "\u13b5\u13d9\u13ae\u13cd\u13d7": 11405, "\u2581\u13ac\u13ed\u13af\u13cd\u13d7\u13cd": 11406, "\u13e5\u13e9\u13db\u13d3": 11407, "\u13e8\u13c9": 11408, "\u2581\u13a2\u13e5\u13aa\u13e9\u13db": 11409, "\u2581\u13d3\u13a6\u13c2": 11410, "\u2581\u13ef\u13a6\u13b5": 11411, "\u13d7\u13e4\u13be": 11412, "\u13b5\u13d7": 11413, "\u2581\u13e5\u13a8\u13e3": 11414, "\u13be\u13ef": 11415, "\u13b5\u13a5\u13c2\u13b5": 11416, "\u13d3\u13c2\u13b8\u13a6": 11417, "\u13b7\u13af\u13cd\u13d3\u13c1": 11418, "\u13d3\u13b4\u13c5\u13d3": 11419, "\u13cf\u13be\u13cf": 11420, "\u13a1\u13b2": 11421, "\u2581\u13a4\u13c1\u13b3\u13d7\u13cd": 11422, "\u13aa\u13b8\u13d2": 11423, "\u2581\u13e7\u13be\u13d3\u13c1\u13b3": 11424, "\u13c2\u13f2": 11425, "\u2581\u13a4\u13d3\u13be": 11426, "\u13be\u13d5\u13aa": 11427, "\u13aa\u13ce\u13ae\u13cd\u13d7": 11428, "\u13b5\u13c2\u13aa\u13af\u13cd\u13d3": 11429, "\u13e9\u13d8\u13cd\u13ac": 11430, "\u13e9\u13c1\u13b2": 11431, "\u2581\u13d7\u13c6\u13d3": 11432, "\u13d1\u13b4\u13d7": 11433, "\u13c3\u13f4\u13ac": 11434, "\u2581\u13d7\u13a6\u13b6\u13af\u13cd\u13d7": 11435, "\u2581\u13a0\u13a9\u13c1\u13b5\u13cd": 11436, "\u13e9\u13af\u13ce\u13b4\u13a2": 11437, "\u2581\u13f3\u13be\u13d7\u13c5": 11438, "\u13b6\u13c2": 11439, "\u2581\u13d3\u13c2\u13c5": 11440, "\u13ac\u13e9\u13c2": 11441, "\u13b6\u13cd\u13a8\u13cd\u13d7": 11442, "\u13c1\u13b5\u13cd\u13a8": 11443, "\u2581\u13a4\u13c2\u13b6\u13af\u13cd\u13d7": 11444, "\u13a6\u13d8\u13f0\u13cd\u13d7": 11445, "\u13ed\u13be": 11446, "\u2581\u13a0\u13c2\u13a6\u13d7": 11447, "\u13a6\u13d8\u13ef": 11448, "\u13c6\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1": 11449, "\u2581\u13a2\u13e5\u13a6\u13b5": 11450, "\u2581\u13e5\u13ef\u13d3\u13c5\u13d6\u13cd": 11451, "\u13e9\u13d0": 11452, "\u2581\u13a3\u13c6": 11453, "\u2581\u13a4\u13b5\u13cf": 11454, "\u2581\u13e7\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1": 11455, "\u13b3\u13d1\u13b6": 11456, "\u13b4\u13a6": 11457, "\u13ec\u13a5\u13a2": 11458, "\u13a7\u13c5\u13a9": 11459, "\u2581\u13a4\u13d2\u13b4": 11460, "\u2581\u13a0\u13a6\u13d8\u13c3\u13ae": 11461, "\u13e5\u13aa\u13a5": 11462, "\u2581\u13a2\u13e3\u13cd\u13d7": 11463, "\u13a9\u13c2\u13c6\u13d8\u13af": 11464, "\u13f4\u13e2": 11465, "\u13d1\u13f0\u13d2\u13a2": 11466, "\u13e3\u13db\u13c1\u13b5": 11467, "\u13be\u13d7\u13c5": 11468, "\u13d3\u13c5\u13d2\u13ad": 11469, "\u13a6\u13b5\u13f1": 11470, "\u13f0\u13b8\u13be\u13c1\u13d7": 11471, "\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 11472, "\u13e9\u13d5\u13a8": 11473, "\u2581\u13dd\u13f0": 11474, "\u2581\u13f3\u13d4\u13f2\u13ce": 11475, "\u13d2\u13d7\u13cd\u13ac": 11476, "\u13e6\u13af\u13f3\u13b2\u13cd\u13a6": 11477, "\u2581\u13f3\u13be\u13da\u13b5": 11478, "\u2581\u13f1\u13e5\u13f2\u13cd": 11479, "\u13d5\u13d8\u13f4\u13db": 11480, "\u2581\u13a0\u13c2\u13ef\u13eb\u13cd": 11481, "\u13d7\u13d5\u13ac\u13a2": 11482, "\u13ef\u13a6\u13d4\u13c2": 11483, "\u13c2\u13b0": 11484, "\u2581\u13a0\u13a9\u13c1\u13e4\u13b8": 11485, "\u13ab\u13cf": 11486, "\u13d8\u13c3\u13af\u13cf": 11487, "\u13cd\u13a6\u13c5\u13aa\u13a2": 11488, "\u2581\u13be\u13a6": 11489, "\u13d6\u13b3\u13d7": 11490, "\u13a9\u13b5\u13f2\u13a2\u13cd\u13d9\u13d7\u13f1": 11491, "\u2581\u13e7\u13c3\u13af\u13f3": 11492, "\u2581\u13eb\u13d3\u13ef\u13c2\u13cd": 11493, "\u13ef\u13a9\u13cd\u13ac": 11494, "\u13d7\u13eb\u13ce\u13d7": 11495, "\u13cd\u13db\u13d7\u13cd\u13ac\u13a2": 11496, "\u13d0\u13ef\u13cd\u13d7": 11497, "\u13d3\u13c5\u13a1\u13d7\u13f1": 11498, "\u13d3\u13a4\u13a6": 11499, "\u13d0\u13b8": 11500, "\u2581\u13e7\u13ec\u13ce": 11501, "\u13b5\u13aa\u13d4\u13c5": 11502, "\u13a7\u13b3": 11503, "\u13db\u13d4\u13c1": 11504, "\u13c2\u13a9\u13cf": 11505, "\u13cf\u13c3\u13b4": 11506, "\u13ad\u13b7\u13a8": 11507, "\u13c2\u13aa\u13af\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 11508, "\u13b5\u13d6\u13b8\u13b2\u13cd\u13a6": 11509, "\u13e9\u13db\u13a1\u13ae": 11510, "\u13c2\u13ef\u13cd\u13d7": 11511, "\u13ea\u13cd\u13d7\u13f1": 11512, "\u13b8\u13c5\u13a9": 11513, "\u2581\u13a0\u13c2\u13a6\u13d4": 11514, "\u13bc\u13cf": 11515, "\u13d3\u13a9\u13c5": 11516, "\u13d3\u13df\u13f4": 11517, "\u2581\u13e5\u13a6\u13b3": 11518, "\u2581\u13f3\u13c2\u13c1": 11519, "\u2581\u13e7\u13b6": 11520, "\u13ea\u13b6": 11521, "\u13a8\u13f3\u13d2\u13be": 11522, "\u13c1\u13b5\u13cd\u13aa": 11523, "\u13b5\u13cd\u13d4\u13c1\u13d7": 11524, "\u2581\u13a4\u13b4\u13be": 11525, "\u13b3\u13c3": 11526, "\u2581\u13f1\u13a8\u13a6": 11527, "\u13e0\u13ce": 11528, "\u2581\u13a0\u13c2\u13b6\u13cd\u13a8": 11529, "\u2581\u13c2\u13d5\u13a4\u13cd": 11530, "\u13ec\u13ef\u13c1\u13ce\u13a2": 11531, "\u2581\u13a0\u13c2\u13c3\u13af": 11532, "\u13d5\u13ef\u13d9\u13d3": 11533, "\u13e3\u13c5\u13d4": 11534, "\u13e1\u13d7\u13ad": 11535, "\u2581\u13a6\u13be\u13c4\u13aa\u13eb\u13ce": 11536, "\u13d9\u13bb": 11537, "\u13cd\u13c6\u13d7\u13cd\u13d7": 11538, "\u2581\u13da\u13db": 11539, "\u2581\u13a0\u13a9\u13ef": 11540, "\u2581\u13a2\u13be\u13af": 11541, "\u13b4\u13b2\u13cd\u13ac\u13a9": 11542, "\u2581\u13a3\u13a6\u13b5\u13cd\u13d4\u13f4": 11543, "\u2581\u13d5\u13a6\u13e5": 11544, "\u13b5\u13cd\u13d4\u13f4\u13be": 11545, "\u13d7\u13d3\u13b4\u13b2\u13cd\u13aa\u13a2": 11546, "\u13af\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 11547, "\u2581\u13f1\u13e3\u13db\u13d3\u13cd\u13d4": 11548, "\u13c8\u13f4": 11549, "\u13c2\u13b6\u13d2\u13af": 11550, "\u13d7\u13e5\u13c2\u13f4": 11551, "\u13e4\u13b2\u13be": 11552, "\u2581\u13a4\u13b5\u13cd\u13da": 11553, "\u13c4\u13d9\u13ac": 11554, "\u2581\u13c2\u13da\u13be\u13d3": 11555, "\u13b5\u13aa\u13b2": 11556, "\u2581\u13a0\u13bf\u13ec": 11557, "\u2581\u13c2\u13d9\u13d3": 11558, "\u13c4\u13e3": 11559, "\u13c2\u13aa\u13e9\u13db": 11560, "\u13d8\u13d2\u13b4\u13a2": 11561, "\u13f2\u13cd\u13d9\u13d3\u13c1\u13b8\u13a9": 11562, "\u2581\u13da\u13b5\u13cd\u13da": 11563, "\u2581\u13a4\u13b5\u13cd\u13d4\u13c1": 11564, "\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 11565, "\u2581\u13a4\u13d3\u13e6": 11566, "\u13be\u13d7\u13be": 11567, "\u13f1\u13d9": 11568, "\u13aa\u13af\u13f3\u13d7\u13f1": 11569, "\u2581\u13a5\u13a0\u13a9": 11570, "\u2581\u13c5\u13d3\u13f3\u13c2": 11571, "\u2581\u13eb\u13da\u13c3\u13c1": 11572, "\u13d5\u13ef\u13d9\u13d7\u13ad": 11573, "\u13ae\u13b4\u13a2": 11574, "\u13c2\u13e9\u13db\u13af\u13d9": 11575, "\u13b6\u13d2\u13af": 11576, "\u13db\u13d3\u13cd\u13d4\u13c5": 11577, "\u13f2\u13cf\u13cd\u13a8\u13a2": 11578, "\u13d7\u13a6\u13d4\u13ad": 11579, "\u2581\u13d8\u13cf": 11580, "\u13d6\u13c6\u13b6\u13af": 11581, "\u13cd\u13d3\u13a5": 11582, "\u2581\u13d7\u13e0\u13af\u13cd": 11583, "lo": 11584, "\u2581\u13a3\u13cd\u13d5\u13d9": 11585, "\u13e2\u13d4": 11586, "\u2581\u13a0\u13af\u13ef": 11587, "\u13b4\u13c9": 11588, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa\u13d7\u13cd": 11589, "\u2581\u13e3\u13d3\u13c5\u13a6\u13b8": 11590, "\u13d7\u13cd\u13a6\u13b3": 11591, "\u13ef\u13a6\u13bf\u13c5": 11592, "\u2581\u13e3\u13c1\u13e4": 11593, "\u13c4\u13aa\u13ac\u13a2": 11594, "\u13a0\u13f0\u13b8": 11595, "\u13b5\u13cd\u13d9": 11596, "\u13e3\u13ea\u13d0\u13b8\u13cd\u13d9\u13d7": 11597, "\u2581\u13ac\u13e9\u13be\u13d3": 11598, "\u2581\u13eb\u13e5\u13c2": 11599, "\u2581\u13d3\u13f3\u13be": 11600, "\u13c2\u13f2\u13b8": 11601, "\u13e5\u13f3": 11602, "\u2581\u13a2\u13e5\u13b6\u13c1": 11603, "\u2581\u13ac\u13e9\u13b8\u13c9\u13d7": 11604, "\u2581\u13d5\u13e3\u13b8": 11605, "\u2581\u13ac\u13e9\u13c2\u13a9\u13b5\u13f2\u13a2\u13cd": 11606, "\u13c3\u13a9\u13cd\u13d4\u13c2": 11607, "\u13c2\u13cd\u13d9\u13d7\u13f1": 11608, "\u13da\u13be\u13db": 11609, "\u13cc\u13b4\u13d3": 11610, "\u13a6\u13d8\u13f0": 11611, "\u13e5\u13b8\u13af": 11612, "\u13d3\u13d4\u13b6\u13af\u13cd\u13d7": 11613, "\u13da\u13d3\u13b3": 11614, "\u13aa\u13e9\u13d8\u13cd\u13aa\u13a2": 11615, "\u13ae\u13b5\u13cd\u13ac\u13c9": 11616, "\u2581\u13a0\u13a9\u13b5\u13d3\u13cd": 11617, "\u2581\u13e3\u13cd\u13d5\u13b8": 11618, "\u13af\u13b6\u13a5": 11619, "\u13b5\u13cf\u13c5\u13d3": 11620, "\u13f0\u13b8\u13c1": 11621, "\u13ef\u13ca": 11622, "\u2581\u13d7\u13e5\u13f2\u13af": 11623, "\u2581\u13d7\u13a6\u13d4": 11624, "\u13ee\u13a9": 11625, "\u13b6\u13b8\u13af": 11626, "\u13e3\u13d3\u13d1\u13ef": 11627, "\u2581\u13e5\u13c3\u13ae": 11628, "\u2581\u13e7\u13c2\u13b8\u13c9\u13d7": 11629, "\u13c2\u13ec\u13c2\u13ad": 11630, "\u2581\u13a5\u13ac": 11631, "\u13d3\u13d2\u13c2": 11632, "\u13be\u13b4\u13d7": 11633, "\u13e9\u13d8\u13cd\u13aa": 11634, "\u2581\u13db\u13a4": 11635, "\u13cd\u13d5\u13b8\u13a1\u13d7\u13f1": 11636, "\u2581\u13a4\u13b5\u13aa": 11637, "\u13c5\u13d6": 11638, "\u2581\u13f3\u13d9": 11639, "\u2581\u13a0\u13e2\u13c8\u13cd": 11640, "\u13e5\u13f2\u13b5\u13ad": 11641, "\u2581\u13c2\u13cd\u13a9\u13f4": 11642, "\u2581\u13a1\u13e6\u13a2\u13f3": 11643, "\u2581\u13a2\u13d5\u13d9": 11644, "\u2581\u13dd\u13c9": 11645, "\u13b5\u13a5\u13c2\u13b8\u13a9": 11646, "\u2581\u13f1\u13aa\u13af": 11647, "\u13e9\u13db\u13d4\u13c5": 11648, "\u13a9\u13c2\u13f4\u13ce\u13cd\u13d7": 11649, "\u2581\u13e7\u13e2\u13d7": 11650, "\u13df\u13f4\u13d7": 11651, "\u13f0\u13b8\u13d2\u13a9": 11652, "\u13e3\u13a6\u13b8\u13ae": 11653, "\u13cd\u13da\u13ae\u13a2": 11654, "\u13d4\u13b2\u13be": 11655, "\u13e9\u13d7\u13d2": 11656, "\u2581\u13d9\u13cd\u13d7": 11657, "\u2581\u13a0\u13a9\u13cd\u13d5\u13b8\u13d7": 11658, "\u13e3\u13a7\u13c2\u13cd\u13ac": 11659, "\u2581\u13da\u13a6\u13d4": 11660, "\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 11661, "\u2581\u13a4\u13c2\u13cd\u13aa\u13b8": 11662, "\u13e2\u13d7\u13cd\u13a8": 11663, "\u2581\u13a6\u13b3": 11664, "\u13d8\u13cd\u13a8": 11665, "\u2581\u13a4\u13e9\u13d9\u13d7": 11666, "\u2581\u13d3\u13e5\u13ef\u13db": 11667, "\u13b8\u13b2": 11668, "\u13e5\u13cd\u13a6\u13c5\u13e4\u13b8": 11669, "\u2581\u13a2\u13e5\u13ef\u13c5": 11670, "la": 11671, "\u2581\u13a4\u13c3\u13af\u13b8": 11672, "\u13f2\u13af\u13ce\u13b4\u13a2": 11673, "\u13d9\u13af\u13f3\u13ae": 11674, "\u2581\u13e5\u13aa\u13e9\u13d8": 11675, "\u13be\u13d3\u13db\u13c1\u13ae\u13cd\u13d7": 11676, "\u13c4\u13c2": 11677, "\u2581\u13ef\u13c6\u13d3\u13c5\u13d4": 11678, "\u2581\u13a2\u13f3\u13be\u13db\u13c1": 11679, "\u13c8\u13b5": 11680, "\u2581\u13a0\u13a9\u13b7": 11681, "\u13c2\u13f2\u13af\u13cd\u13d9\u13d7": 11682, "\u2581\u13a4\u13d5\u13d8": 11683, "\u13a7\u13bf\u13c5\u13a9": 11684, "\u13d7\u13d9\u13b5\u13a9": 11685, "\u2581\u13eb\u13d7\u13a8": 11686, "\u2581\u13a0\u13a9\u13cd\u13a6": 11687, "\u13d3\u13e5\u13e9\u13db\u13af\u13c3": 11688, "\u2581\u13d7\u13b7": 11689, "\u13b8\u13c5\u13ad": 11690, "\u13a6\u13d6\u13c3\u13ad": 11691, "\u2581\u13e7\u13d3\u13c5\u13d6": 11692, "\u2581\u13e7\u13d4": 11693, "\u13cd\u13a9\u13b3": 11694, "\u13d7\u13c5\u13ce": 11695, "\u2581\u13d5\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1": 11696, "\u2581\u13da\u13a7\u13c1": 11697, "\u13a9\u13b5\u13f2\u13ac\u13a2": 11698, "\u2581\u13d3\u13c2\u13c1": 11699, "\u13e3\u13c5\u13d3\u13d7\u13cd": 11700, "\u2581\u13a4\u13c3\u13af": 11701, "\u2581\u13a4\u13cf\u13b3\u13db": 11702, "\u2581\u13a0\u13e6": 11703, "\u13d3\u13c2\u13b8\u13aa\u13a2": 11704, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b4": 11705, "\u13be\u13d9\u13b4\u13c6\u13cd\u13ac": 11706, "\u13cc\u13b3\u13d9\u13d7": 11707, "\u13a9\u13b8\u13c9\u13d4\u13c5": 11708, "\u2581\u13a0\u13d4\u13f2\u13af": 11709, "\u13c4\u13aa\u13e5": 11710, "\u13b5\u13ae\u13b5\u13e8\u13af": 11711, "\u13ea\u13b5": 11712, "\u13c2\u13d7\u13cd\u13d7": 11713, "\u2581\u13a4\u13cd\u13c6\u13b8\u13a1": 11714, "\u13b3\u13cd\u13d3\u13b8": 11715, "\u2581\u13a4\u13be\u13d5\u13b0": 11716, "\u2581\u13a4\u13b4\u13eb\u13cd": 11717, "\u2581\u13d5\u13af\u13ef": 11718, "\u13d2\u13b8\u13a9": 11719, "\u13d8\u13cd\u13aa": 11720, "\u13a6\u13d8\u13d7": 11721, "\u2581\u13a4\u13e5\u13cd\u13d3": 11722, "\u2581\u13a0\u13b5\u13d6\u13b8\u13ae\u13cd": 11723, "\u2581\u13a0\u13c1\u13cd\u13a8": 11724, "\u13e6\u13af\u13f3\u13c5": 11725, "\u13a6\u13cc\u13ef\u13cd\u13d7": 11726, "\u13c2\u13aa\u13e9\u13d8\u13cd\u13a8\u13a2": 11727, "\u13d5\u13b2\u13a6": 11728, "\u2581\u13a0\u13d1\u13f0\u13cd": 11729, "\u13b8\u13aa\u13eb\u13cd": 11730, "\u2581\u13a3\u13a9\u13cd\u13db\u13d7\u13cd": 11731, "\u2581\u13ac\u13e9\u13cd\u13a6": 11732, "\u2581\u13dc": 11733, "\u2581\u13da\u13c2\u13da": 11734, "\u13aa\u13e9": 11735, "\u13d3\u13ea\u13b5\u13a9\u13cd": 11736, "\u13f2\u13b5\u13a6": 11737, "\u13a4\u13c5\u13ce": 11738, "\u13c2\u13a9\u13d2\u13a9": 11739, "\u13d3\u13c5\u13b5\u13f0": 11740, "\u2581\u13a0\u13a9\u13be\u13c4\u13aa\u13eb\u13cd\u13d7": 11741, "\u2581\u13a0\u13c2\u13a6\u13d6\u13c3": 11742, "\u13af\u13f4\u13c1\u13b8": 11743, "\u2581\u13a1\u13e5\u13c4\u13aa": 11744, "\u13a2\u13a6\u13da\u13a9": 11745, "\u2581\u13db\u13db": 11746, "\u2581\u13a2\u13e4\u13ef\u13d4": 11747, "\u2581\u13be\u13cb\u13c1": 11748, "\u13e5\u13f2\u13ad": 11749, "\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13af": 11750, "\u2581\u13a0\u13e1\u13d7\u13cd": 11751, "\u13e9\u13db\u13db": 11752, "\u2581\u13a3\u13a9\u13cd\u13db\u13d7\u13cd\u13d7": 11753, "\u2581\u13d3\u13a8\u13e5": 11754, "\u13b8\u13a1\u13b4": 11755, "\u2581\u13e5\u13a7\u13c1\u13a2\u13cd\u13d7": 11756, "\u2581\u13a9\u13a6\u13a8\u13c3": 11757, "\u2581\u13d3\u13c2\u13b3\u13eb": 11758, "\u13d3\u13d8\u13be\u13a5": 11759, "\u13cd\u13db\u13d7\u13cd\u13d7\u13f1": 11760, "\u13a0\u13e7": 11761, "\u13e5\u13ec\u13c1\u13d9\u13d7": 11762, "\u13c2\u13a8\u13f4": 11763, "\u13f0\u13b5\u13d2": 11764, "\u2581\u13d5\u13aa\u13e2": 11765, "\u2581\u13e5\u13c2\u13e3\u13b5\u13cd": 11766, "\u13c6\u13d9": 11767, "\u2581\u13a2\u13ef\u13a6": 11768, "\u2581\u13a2\u13f3\u13c5\u13c1": 11769, "\u13a6\u13ef\u13b7\u13d7": 11770, "\u13b6\u13cd\u13aa": 11771, "\u13e8\u13cd\u13d7": 11772, "\u13c1\u13a2\u13cd\u13d3": 11773, "\u2581\u13e7\u13ed\u13d3\u13b4": 11774, "\u13d3\u13cd\u13a6\u13a8\u13cd\u13d7": 11775, "\u2581\u13d5\u13cd\u13a9\u13ef": 11776, "\u2581\u13a2\u13ef\u13e5": 11777, "\u2581\u13ac\u13e9\u13cd\u13d5\u13b8\u13af\u13d9": 11778, "\u13c2\u13cd\u13d4\u13c5": 11779, "\u13b7\u13e8\u13af": 11780, "\u2581\u13e7\u13b4\u13d7": 11781, "\u13d3\u13be\u13cc\u13b2\u13cd\u13a9": 11782, "\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac\u13a2": 11783, "\u13eb\u13d2\u13c5": 11784, "\u13f4\u13c5": 11785, "----": 11786, "\u2581\u13ef\u13c2\u13b8\u13c9": 11787, "\u13a6\u13d3\u13a1": 11788, "\u2581\u13a4\u13aa\u13af": 11789, "\u2581\u13a0\u13a9\u13cd\u13ac": 11790, "\u13d9\u13b5\u13cd\u13d7\u13f1": 11791, "\u13e5\u13cd\u13ac": 11792, "\u13a6\u13c5\u13be": 11793, "\u2581\u13e9\u13c2\u13f4": 11794, "\u13d3\u13db\u13a2": 11795, "\u2581\u13a4\u13cf\u13d4\u13d5": 11796, "\u13db\u13d7\u13d5\u13ac": 11797, "\u2581\u13ac\u13e9\u13ef\u13eb": 11798, "\u2581\u13e5\u13eb\u13ac": 11799, "\u2581\u13af\u13f0": 11800, "\u2581\u13a4\u13d3\u13aa\u13be\u13db": 11801, "\u13b4\u13b2\u13cd\u13a6": 11802, "\u2581\u13a0\u13c2\u13c3\u13ae\u13b5\u13d9": 11803, "\u13cd\u13c6\u13d3\u13c3": 11804, "\u13f3\u13e8": 11805, "\u13d1\u13a6\u13b8": 11806, "\u13d2\u13a6\u13b6\u13d7": 11807, "\u2581\u13a4\u13b5\u13d6\u13b8\u13c2": 11808, "\u13ac\u13e9\u13db\u13d7": 11809, "\u13d3\u13d6\u13b8\u13ae\u13cd": 11810, "\u13e9\u13d8\u13c3": 11811, "\u2581\u13a6\u13b8\u13c9\u13d7\u13f3\u13cd\u13a9\u13c2": 11812, "\u2581\u13a2\u13e8\u13ef\u13b5\u13e5\u13d9\u13c1": 11813, "\u2581\u13d3\u13a7\u13bf\u13e9\u13d7\u13d9\u13ae": 11814, "\u13c2\u13c6\u13d8\u13b2": 11815, "\u2581\u13e9\u13d3": 11816, "\u13cc\u13d9\u13f0": 11817, "\u13a6\u13b5\u13cd\u13a8\u13a2": 11818, "\u2581\u13a1\u13e3\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1": 11819, "\u13ea\u13ce": 11820, "\u13af\u13d0": 11821, "\u13c1\u13a2\u13cd\u13d3\u13c1\u13ad": 11822, "\u13cd\u13da\u13df": 11823, "\u13b5\u13c2\u13ac\u13ac": 11824, "\u13f2\u13cd\u13d9\u13d3": 11825, "\u2581\u13f3\u13d5\u13b6\u13b0": 11826, "\u2581\u13e7\u13be\u13c1\u13cd\u13a8": 11827, "\u13ef\u13c5\u13ae": 11828, "\u2581\u13ac\u13e9\u13c2\u13a9": 11829, "\u13b1\u13c1": 11830, "\u2581\u13da\u13be\u13d5": 11831, "\u13c4\u13aa\u13eb\u13ce": 11832, "\u2581\u13a2\u13e8\u13f2\u13ea\u13b3\u13c1": 11833, "\u13f3\u13e9\u13c2": 11834, "\u2581\u13a2\u13a6\u13da\u13d3\u13b4\u13cd": 11835, "\u13cf\u13d4\u13d5\u13a2": 11836, "\u13b6\u13a9": 11837, "\u2581\u13a2\u13d9\u13af\u13f3\u13b2\u13cd": 11838, "\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd\u13a9": 11839, "\u13c2\u13a8\u13f3\u13af": 11840, "\u13e3\u13db\u13a6\u13c1": 11841, "\u2581\u13d3\u13d7": 11842, "\u13b6\u13a2\u13cd\u13d7\u13f1": 11843, "\u2581\u13a0\u13db\u13b5": 11844, "\u13b5\u13cc\u13b3\u13d3\u13c5\u13a9": 11845, "\u13a6\u13d4\u13b2\u13d2\u13a9": 11846, "\u2581\u13e5\u13be\u13c6": 11847, "\u13a0\u13ef\u13a8": 11848, "\u13aa\u13e2\u13ad": 11849, "\u13c2\u13b6\u13cd\u13a8\u13cd\u13d7": 11850, "\u2581\u13a6\u13b5\u13d7": 11851, "\u13cb\u13c1\u13b8\u13a9": 11852, "\u13b5\u13aa\u13c1\u13b8\u13a9": 11853, "\u13b4\u13d2": 11854, "\u2581\u13a4\u13c2\u13f2\u13b5": 11855, "\u2581\u13e7\u13b7\u13e4": 11856, "\u13b6\u13cd\u13a6": 11857, "\u13cd\u13d4\u13c1\u13b2": 11858, "\u2581\u13a0\u13a9\u13eb": 11859, "\u2581\u13e5\u13c5\u13d2": 11860, "\u13d5\u13cd\u13d4": 11861, "\u13d3\u13ec\u13a2": 11862, "\u13d3\u13cd\u13d5\u13d3\u13b5\u13f4\u13cd\u13a9": 11863, "\u13dc\u13cd\u13db": 11864, "\u2581\u13a4\u13c2\u13c1\u13c9": 11865, "\u2581\u13ab\u13d4": 11866, "\u13e3\u13b7\u13e4\u13b5": 11867, "\u2581\u13be\u13f2": 11868, "\u2581\u13f1\u13c2\u13ac\u13e9": 11869, "\u13da\u13c2": 11870, "\u2581\u13e7\u13e2": 11871, "\u13d8\u13c3\u13ae\u13d7\u13f1": 11872, "\u2581\u13e3\u13d5\u13b2\u13cd": 11873, "\u2581\u13aa\u13d2": 11874, "\u13c3\u13ae\u13b4\u13a2": 11875, "\u13be\u13d5\u13cf": 11876, "\u13d3\u13b7\u13b8": 11877, "\u2581\u13d3\u13a6\u13e2": 11878, "\u13cd\u13c6\u13b6": 11879, "\u2581\u13da\u13be\u13c1\u13b6": 11880, "\u13d0\u13e2\u13d7\u13ad": 11881, "\u2581\u13c4\u13be\u13d3": 11882, "\u2581\u13e7\u13da\u13a2\u13cd\u13d3\u13c1": 11883, "\u2581\u13af\u13c5\u13c1": 11884, "\u2581\u13a2\u13e3\u13e0\u13ef\u13cd": 11885, "\u13ec\u13ef": 11886, "\u13cd\u13aa\u13ce": 11887, "\u2581\u13d7\u13a6\u13c4": 11888, "\u13c2\u13b0\u13a2": 11889, "\u13e5\u13cd\u13d5\u13b8\u13d7\u13f1": 11890, "\u2581\u13d7\u13e7\u13aa\u13d3": 11891, "\u13c2\u13f4\u13a9": 11892, "\u2581\u13a2\u13a0\u13d3": 11893, "\u13ef\u13d3\u13f1": 11894, "\u13ef\u13b4": 11895, "\u13d5\u13b0\u13cd\u13a8\u13cd\u13d7": 11896, "\u13c5\u13e9\u13c5": 11897, "\u13ac\u13e9\u13df": 11898, "\u13a9\u13b3\u13be\u13b3": 11899, "\u13c5\u13cd\u13aa\u13a2": 11900, "\u13d3\u13e3": 11901, "\u13be\u13dd\u13be\u13a5\u13a2": 11902, "\u2581\u13a4\u13be\u13b5\u13cd\u13d7": 11903, "\u2581\u13d7\u13be\u13d3\u13c5\u13df\u13c9": 11904, "\u2581\u13be\u13c2\u13ea": 11905, "\u2581\u13c2\u13a8\u13e3": 11906, "\u13b1\u13cd\u13d5\u13ce\u13b8": 11907, "\u13b5\u13c2\u13aa\u13af\u13cd\u13d4\u13c5": 11908, "\u13b5\u13c3\u13ae\u13d9\u13d7\u13f1": 11909, "\u2581\u13a0\u13a9\u13b6": 11910, "\u13c5\u13d3\u13d7\u13cd\u13aa": 11911, "\u13e3\u13d3\u13c5\u13a6\u13b8\u13db": 11912, "\u13be\u13c1\u13b4": 11913, "\u13e5\u13cd\u13d5\u13b8": 11914, "\u13cd\u13c9\u13df\u13a2": 11915, "\u13d3\u13b7\u13ef\u13db": 11916, "\u13d1\u13f0\u13ce\u13a2": 11917, "\u13c3\u13cd\u13a9\u13db": 11918, "\u13e5\u13c5\u13c1\u13d7": 11919, "\u2581\u13be\u13be\u13db\u13c1": 11920, "\u13cd\u13c6\u13b5\u13ce": 11921, "\u2581\u13db\u13be\u13d3": 11922, "\u2581\u13d5\u13a6\u13e5\u13ef": 11923, "\u2581\u13a4\u13be\u13d8\u13f2": 11924, "\u13c9\u13d7\u13cd\u13ac": 11925, "\u13f2\u13e4\u13a2": 11926, "\u2581\u13a0\u13b5\u13ae\u13b5\u13cd": 11927, "\u13d1\u13b4\u13cd\u13d7": 11928, "\u2581\u13a2\u13ab": 11929, "\u13d5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 11930, "\u2581\u13f1\u13a6\u13c5": 11931, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13d7\u13cd": 11932, "\u2581\u13a4\u13a6\u13cc": 11933, "\u13a6\u13d4\u13be\u13a2": 11934, "\u2581\u13a2\u13e7\u13b3\u13ad\u13c9": 11935, "\u13c5\u13a2\u13cd\u13d7": 11936, "\u13df\u13b6\u13a1\u13b8": 11937, "\u13d3\u13f0\u13a8\u13cd\u13d7": 11938, "\u13cf\u13c5\u13af": 11939, "\u13df\u13cd\u13d4\u13c1": 11940, "\u2581\u13a4\u13c2\u13c4\u13b8": 11941, "\u13cc\u13db\u13a5\u13cd\u13ac": 11942, "\u13d7\u13d4\u13b2\u13a9": 11943, "\u13ac\u13c2\u13cd\u13d7": 11944, "\u13cd\u13a9\u13d3\u13d2\u13a2": 11945, "\u2581\u13a1\u13e5\u13be\u13f0\u13cd": 11946, "\u13c2\u13d2\u13a9": 11947, "\u13a6\u13b7\u13ef": 11948, "\u13d2\u13b4\u13a2": 11949, "\u13c1\u13b5\u13d2\u13a2": 11950, "\u2581\u13e7\u13e5\u13cd": 11951, "\u13b5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 11952, "\u2581\u13a0\u13c6\u13db\u13a6": 11953, "\u2581\u13e6\u13b8": 11954, "\u2581\u13a4\u13a6\u13db\u13be": 11955, "\u13c2\u13b4\u13a2": 11956, "\u13af\u13cd\u13d3\u13c1\u13af": 11957, "\u2581\u13d7\u13d3\u13be": 11958, "\u13d3\u13d9\u13b5\u13cd\u13d4\u13c1\u13a2": 11959, "\u2581\u13da\u13d3\u13c2\u13b8\u13e4": 11960, "\u2581\u13a4\u13c2\u13cd\u13a6": 11961, "\u13ef\u13db\u13c1\u13b5": 11962, "\u2581\u13cd\u13a9\u13ef\u13d5\u13b6\u13c6": 11963, "\u13c5\u13d7\u13cd\u13d7": 11964, "\u2581\u13a8\u13b6": 11965, "\u13f2\u13cd\u13d9\u13d7\u13f1": 11966, "\u2581\u13a0\u13e2\u13c6\u13cd": 11967, "\u13c3\u13c1\u13b8": 11968, "\u13c5\u13ef": 11969, "\u13e6\u13af\u13f3\u13d2\u13a2": 11970, "\u2581\u13a4\u13c2\u13cd\u13c6": 11971, "\u13ea\u13ad": 11972, "\u13c1\u13b3\u13a9\u13c9": 11973, "\u2581\u13d7\u13a6\u13c2\u13f4": 11974, "\u2581\u13e7\u13ac\u13e9": 11975, "\u2581\u13f3\u13e9\u13db": 11976, "\u2581\u13d3\u13a7\u13bf": 11977, "\u13eb\u13da\u13d3\u13a2\u13c5": 11978, "\u13ef\u13d9\u13e4\u13ae\u13cd\u13d7": 11979, "\u13a6\u13cc\u13ec\u13a2": 11980, "\u13a6\u13c3\u13b8": 11981, "\u13f2\u13cf\u13cc": 11982, "\u13c4\u13aa\u13a2": 11983, "\u2581\u13a4\u13d5\u13d2": 11984, "\u13ef\u13cd\u13db\u13be": 11985, "\u2581\u13f1\u13c4\u13be\u13db\u13c1": 11986, "\u13c4\u13cd\u13d5\u13a2": 11987, "\u13e5\u13ce\u13aa\u13a9": 11988, "\u2581\u13e7\u13be\u13b5\u13aa": 11989, "\u13b4\u13c2\u13d9\u13b8\u13a2": 11990, "\u2581\u13a0\u13be\u13b5\u13cd\u13aa\u13b8\u13d7\u13cd": 11991, "\u2581\u13a4\u13be\u13d3\u13db\u13c1": 11992, "\u13ec\u13c5": 11993, "\u13da\u13a8": 11994, "\u13e9\u13d5\u13c1\u13b4\u13a2": 11995, "\u13c1\u13df\u13f4\u13a1\u13d7": 11996, "\u13e3\u13ef\u13c5": 11997, "\u2581\u13a4\u13b8\u13cc": 11998, "\u2581\u13e7\u13d3\u13c4": 11999, "\u2581\u13a3\u13e5\u13c3\u13ae": 12000, "\u2581\u13d3\u13c1\u13b6": 12001, "\u13e1\u13d3": 12002, "\u2581\u13da\u13c2\u13e3\u13a6": 12003, "\u13d3\u13c1\u13b6": 12004, "\u13e9\u13c2": 12005, "\u13df\u13cd\u13d7\u13cd\u13aa\u13a2": 12006, "\u13d4\u13cd\u13aa\u13a2": 12007, "\u13f4\u13c8\u13db": 12008, "\u13ef\u13c5\u13d3\u13d7\u13cd\u13aa": 12009, "\u13ac\u13eb\u13f3": 12010, "\u2581\u13a4\u13d4\u13d5": 12011, "\u2581\u13f1\u13eb\u13e8": 12012, "\u2581\u13da\u13ed\u13aa\u13d3\u13c1": 12013, "\u2581\u13e3\u13a7\u13b5\u13a2": 12014, "\u2581\u13a4\u13cd\u13e2\u13c2\u13cd": 12015, "\u13ec\u13af\u13f3\u13c5": 12016, "\u2581\u13a4\u13c1\u13b5\u13e4": 12017, "\u13af\u13f3\u13d2\u13be": 12018, "\u2581\u13a4\u13d3\u13e0\u13cd": 12019, "\u2581\u13ac\u13ec\u13ce": 12020, "\u13be\u13db\u13c1\u13d7\u13f1": 12021, "\u2581\u13da\u13df\u13b6\u13cd\u13d3\u13c1\u13b4": 12022, "\u2581\u13a4\u13c2\u13f2\u13a2": 12023, "\u13e5\u13aa\u13d7": 12024, "\u13cc\u13b3\u13d7": 12025, "\u2581\u13be\u13c5\u13c1": 12026, "\u13be\u13c4\u13aa\u13eb": 12027, "\u13a3\u13d2": 12028, "\u2581\u13d5\u13cd\u13d3": 12029, "\u13cd\u13d4\u13c1\u13ae": 12030, "\u13b1\u13cd\u13d5": 12031, "\u13e3\u13ac": 12032, "\u2581\u13a4\u13c2\u13c4\u13aa\u13e4": 12033, "\u13d8\u13c3\u13b5": 12034, "\u2581\u13a4\u13be\u13d9\u13d3": 12035, "\u13da\u13b3": 12036, "\u13f0\u13b5\u13d2\u13a9": 12037, "\u2581\u13e3\u13da\u13d3\u13b4": 12038, "\u2581\u13a4\u13cd\u13c6\u13c2": 12039, "\u13cf\u13d9\u13b0": 12040, "\u2581\u13c2\u13cd\u13cb\u13c1": 12041, "\u13df\u13f4\u13ae\u13a2": 12042, "\u13cd\u13c6\u13d9\u13be": 12043, "\u13d4\u13a9\u13cd\u13d7": 12044, "\u13a4\u13cd\u13c6\u13c2\u13a9": 12045, "\u2581\u13d5\u13ab\u13aa\u13d7": 12046, "\u2581\u13c2\u13cd\u13a9\u13ea\u13ce": 12047, "\u2581\u13b1\u13f0": 12048, "\u2581\u13a0\u13c2\u13ef\u13a1": 12049, "\u2581\u13a0\u13f2\u13de": 12050, "\u2581\u13a6\u13f0\u13e5\u13d9": 12051, "\u2581\u13c2\u13d3\u13db": 12052, "\u13a7\u13b5\u13b5": 12053, "\u2581\u13a4\u13be\u13b4\u13bf\u13eb\u13cd": 12054, "\u13c1\u13c5\u13d2\u13a9": 12055, "\u2581\u13a4\u13b5\u13cd\u13d5\u13cd\u13d4": 12056, "\u2581\u13a0\u13d3\u13c4\u13d6\u13f2": 12057, "\u13e3\u13d3\u13c2\u13b8\u13a9": 12058, "\u2581\u13da\u13be\u13c4\u13aa\u13eb\u13ce": 12059, "\u2581\u13a0\u13c2\u13cf\u13be": 12060, "\u2581\u13a0\u13e5\u13b8\u13cd\u13a9\u13c2": 12061, "\u13ac\u13cd\u13aa\u13b8\u13c1": 12062, "\u13a4\u13c3\u13b4": 12063, "\u2581\u13a4\u13be\u13da\u13b5": 12064, "\u13cd\u13d5\u13b8\u13d9\u13d3": 12065, "\u13cd\u13da\u13b8": 12066, "\u2581\u13da\u13be\u13da\u13eb\u13cd": 12067, "\u2581\u13a0\u13a9\u13f2\u13b0": 12068, "\u2581\u13a2\u13d3\u13b4\u13c2\u13d9": 12069, "\u2581\u13e9\u13ab": 12070, "\u13d3\u13a6\u13d8\u13b4": 12071, "\u13a9\u13c2\u13f4\u13d7": 12072, "\u2581\u13e5\u13e9\u13c2": 12073, "\u13c2\u13ac\u13ce\u13b2\u13a2": 12074, "\u2581\u13a4\u13d5\u13ef\u13d9": 12075, "\u2581\u13a0\u13ab\u13ec": 12076, "\u2581\u13a4\u13ad\u13f2": 12077, "\u2581\u13a2\u13e3\u13d3\u13d9\u13b5\u13cd": 12078, "\u13cd\u13ab\u13d5\u13cd\u13ac": 12079, "\u2581\u13d7\u13e9\u13be\u13a6\u13b3": 12080, "\u13ab\u13d3\u13b4\u13cf": 12081, "\u13bf\u13e9\u13d7\u13d2": 12082, "\u2581\u13a1\u13cd\u13d3": 12083, "\u13ad\u13f2\u13ae": 12084, "\u13d6\u13b3\u13d5": 12085, "\u13f2\u13ce\u13b2\u13a9": 12086, "\u13cd\u13d7\u13f0\u13d5": 12087, "\u2581\u13d3\u13a6\u13db": 12088, "\u13c4\u13cd\u13d5": 12089, "\u2581\u13d3\u13b5\u13c2\u13aa\u13af\u13cd\u13d7\u13cd": 12090, "\u13d1\u13b4\u13a5": 12091, "\u13af\u13cd\u13d4\u13c1\u13a2": 12092, "\u13cd\u13a9\u13d3\u13d2": 12093, "\u2581\u13f3\u13e3\u13c5\u13d3\u13d5": 12094, "\u2581\u13a0\u13c2\u13a6\u13d8\u13d7\u13cd": 12095, "\u13bf\u13b7": 12096, "\u13e5\u13a8\u13f3\u13ad": 12097, "\u2581\u13e5\u13c4\u13db\u13c1": 12098, "\u13db\u13c1\u13b8\u13a9": 12099, "\u13cd\u13aa\u13c2\u13af": 12100, "\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 12101, "\u2581\u13f1\u13c5\u13e9": 12102, "\u13e0\u13cf": 12103, "\u2581\u13d7\u13e5\u13ef": 12104, "\u13d3\u13a6\u13b5\u13cd\u13d9\u13d4\u13c2": 12105, "\u2581\u13e5\u13e5\u13ef": 12106, "\u13d9\u13e9\u13d7\u13cd": 12107, "\u2581\u13f1\u13c4\u13be": 12108, "\u13b5\u13cd\u13a6\u13cd\u13d9\u13d4\u13c2": 12109, "\u2581\u13a4\u13c3\u13b1": 12110, "\u2581\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1": 12111, "\u2581\u13f1\u13ed": 12112, "\u13b5\u13cd\u13da\u13b8": 12113, "\u13e3\u13a2\u13d2": 12114, "\u2581\u13a0\u13c2\u13ec\u13c2\u13cd\u13a8": 12115, "\u13b5\u13cd\u13d3\u13f4\u13d4\u13c2": 12116, "\u2581\u13f4\u13a8\u13e3": 12117, "\u13c2\u13a8\u13af\u13d9\u13b4\u13a2": 12118, "\u2581\u13c4\u13db\u13be": 12119, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d3": 12120, "\u13e6\u13d5": 12121, "\u13a9\u13cd\u13d5\u13b8\u13af\u13d9\u13b8": 12122, "\u13ea\u13ce\u13ae\u13a2": 12123, "\u2581\u13e9\u13c2\u13f4\u13af": 12124, "\u13ac\u13c6\u13db\u13a6\u13c1": 12125, "\u13aa\u13b8\u13db": 12126, "\u13b5\u13d9\u13b0": 12127, "\u2581\u13a4\u13be\u13e1": 12128, "\u13c3\u13ae\u13e2": 12129, "\u13c2\u13ea\u13cd\u13a8": 12130, "\u13b8\u13c9\u13d9": 12131, "\u2581\u13d3\u13d5\u13d9": 12132, "\u2581\u13c2\u13e5\u13ef": 12133, "\u13aa\u13e9\u13db\u13a1\u13d7": 12134, "\u13c2\u13a8\u13f3": 12135, "\u13ac\u13cd\u13a6\u13b3": 12136, "\u201c": 12137, "\u2581\u13c3\u13a6\u13b5\u13cd\u13d4": 12138, "\u13a6\u13d9\u13a8": 12139, "\u13f4\u13a1\u13b2": 12140, "\u13d3\u13c1\u13e3\u13cd\u13da": 12141, "\u13bc\u13c2": 12142, "\u13d3\u13db\u13c1\u13b2\u13a9": 12143, "\u13cd\u13d5\u13b8\u13b2": 12144, "\u13f4\u13af\u13b2": 12145, "\u2581\u13a4\u13c2\u13f2\u13b0": 12146, "\u13c5\u13a6\u13b8\u13d7": 12147, "\u13db\u13d7\u13cd\u13ac": 12148, "\u13ab\u13a9": 12149, "\u13eb\u13cd\u13d7\u13cd\u13a9": 12150, "\u2581\u13d3\u13be\u13df": 12151, "\u2581\u13da\u13c2\u13f0": 12152, "\u2581\u13f1\u13c2\u13e8": 12153, "\u13e9\u13be\u13a6\u13b6": 12154, "\u2581\u13c2\u13cd\u13c6\u13db\u13c1": 12155, "\u13e3\u13da\u13b5\u13cd\u13a8\u13cd\u13d7": 12156, "\u13c2\u13be\u13eb": 12157, "\u13ad\u13c2\u13b8": 12158, "\u2581\u13a2\u13e3\u13a8\u13f3": 12159, "\u2581\u13a4\u13a6\u13be\u13ec": 12160, "\u13f0\u13b8\u13cd\u13d7": 12161, "\u13df\u13c2\u13ac\u13c1\u13b8": 12162, "\u2581\u13eb\u13a6\u13b6\u13af": 12163, "\u13a7\u13c1\u13d7\u13f1": 12164, "\u2581\u13a4\u13be\u13b4\u13eb\u13cd": 12165, "\u13aa\u13d3\u13c1\u13af": 12166, "\u2581\u13a0\u13c7\u13b7": 12167, "\u13df\u13f4\u13a1": 12168, "\u13e7\u13c1\u13cd\u13a8\u13ae\u13a2": 12169, "\u13da\u13c2\u13b3\u13eb\u13e4": 12170, "\u13a6\u13c4\u13b3\u13e5": 12171, "\u2581\u13a0\u13db\u13c5\u13a2\u13cd\u13d7": 12172, "\u13a3\u13a8\u13c5": 12173, "\u13c4\u13b8\u13b2": 12174, "\u13e7\u13d3\u13b4\u13c5": 12175, "\u13d8\u13c5\u13cd\u13d3": 12176, "\u13a4\u13db\u13ce\u13a2": 12177, "\u13ad\u13be\u13ec": 12178, "\u13d8\u13f2\u13b8": 12179, "\u13b6\u13c1\u13a2": 12180, "\u13d3\u13df\u13b6\u13cd\u13d7\u13cd\u13ac": 12181, "\u2581\u13a5\u13e5\u13ef": 12182, "\u13a6\u13d5\u13b6\u13a3\u13cd": 12183, "\u13be\u13be\u13b5\u13cd\u13d7": 12184, "\u13a9\u13aa\u13b2\u13af": 12185, "\u2581\u13d7\u13e4\u13cd\u13d9": 12186, "\u13c2\u13a8\u13d0": 12187, "\u13ac\u13ec\u13ce\u13b8\u13a9": 12188, "\u13bf\u13a5": 12189, "\u13d3\u13e5\u13ef\u13c5\u13af": 12190, "\u13a9\u13b8\u13c2": 12191, "\u13e3\u13aa\u13cd\u13d7": 12192, "\u13d9\u13ef": 12193, "\u13d3\u13cd\u13d4\u13c5\u13c5": 12194, "\u13cd\u13a9\u13be\u13be": 12195, "\u13d3\u13f0\u13d9\u13b3\u13db": 12196, "\u13a4\u13c1\u13ab": 12197, "\u13a9\u13b6\u13af\u13cd\u13d7": 12198, "\u13c4\u13e9\u13c2\u13cc\u13c5": 12199, "\u13d5\u13be\u13d3\u13aa\u13b2\u13f3": 12200, "\u2581\u13d7\u13a6\u13b8\u13eb\u13cd": 12201, "\u2581\u13a2\u13a4\u13be\u13e8\u13ce": 12202, "\u2581\u13da\u13a7\u13bf\u13e9\u13d7\u13d9\u13ae": 12203, "\u2581\u13a4\u13c5\u13e9\u13c1": 12204, "\u2581\u13a8\u13e3\u13e1\u13d7\u13cd\u13ac": 12205, "\u2581\u13e7\u13a9\u13e5\u13cd\u13aa": 12206, "\u2581\u13a0\u13be\u13b5\u13c5\u13e2": 12207, "\u2581\u13ed\u13a9\u13b8\u13c1": 12208, "\u2581\u13a4\u13cd\u13a6\u13c5\u13e5\u13d9\u13b8": 12209, "\u13a0\u13be\u13d3\u13aa\u13be\u13d7\u13cd\u13ac": 12210, "\u13c4\u13be\u13d3\u13b4": 12211, "\u2581\u13e7\u13f2\u13cf\u13cd\u13a8": 12212, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d3\u13c1\u13b8": 12213, "\u13da\u13f3\u13aa\u13db": 12214, "\u13cd\u13aa\u13c2\u13cd\u13d7": 12215, "\u2581\u13c4\u13cd\u13c6\u13c2": 12216, "\u13ec\u13af\u13f3\u13c1": 12217, "\u2581\u13c2\u13da\u13db\u13c1\u13b4": 12218, "\u2581\u13d9\u13d7\u13a7\u13c2\u13cd\u13ac": 12219, "\u13b5\u13cd\u13d3\u13f4\u13c1": 12220, "\u13a4\u13c2\u13b6\u13d2": 12221, "\u13a4\u13c1\u13a2\u13cd\u13d4\u13c5": 12222, "\u13a4\u13be\u13db\u13aa\u13d7\u13f1": 12223, "\u13aa\u13af\u13f3\u13b2\u13cd\u13aa": 12224, "\u13d3\u13b4\u13cd\u13ac\u13a2": 12225, "\u2581\u13a2\u13e5\u13be\u13f0\u13cd\u13ac": 12226, "\u13d9\u13d3\u13a6\u13e5": 12227, "\u13a4\u13b5\u13cd\u13d9\u13d4\u13c5": 12228, "\u13cd\u13a9\u13c3\u13af\u13cf": 12229, "\u2581\u13a0\u13a9\u13b5\u13f2\u13ac": 12230, "\u2581\u13a0\u13a9\u13ef\u13a5": 12231, "\u13a4\u13b5\u13cd\u13a8": 12232, "\u13d3\u13f3\u13b6\u13d2": 12233, "\u13a4\u13a6\u13c3\u13e9": 12234, "\u13c5\u13c1\u13ad": 12235, "\u13a0\u13c2\u13aa\u13d5\u13cd\u13a9": 12236, "\u13e7\u13d3\u13b4\u13c1": 12237, "\u13a0\u13a6\u13f4\u13b5": 12238, "\u13a4\u13b5\u13cd\u13c6\u13b8\u13d7": 12239, "\u13da\u13be\u13d9\u13a5": 12240, "\u13e6\u13b4\u13cd\u13d7": 12241, "\u2581\u13eb\u13ac\u13e9\u13f4\u13d4\u13c1": 12242, "\u13a0\u13e5\u13b8\u13c9\u13d7\u13f3": 12243, "\u2581\u13eb\u13d3\u13a7\u13c1": 12244, "\u13e5\u13cd\u13d5\u13e5": 12245, "\u13a4\u13be\u13c4\u13aa\u13eb\u13ce\u13a2": 12246, "\u13d7\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 12247, "\u13a1\u13b3\u13c6\u13d7": 12248, "\u2581\u13e7\u13c2\u13b3\u13eb": 12249, "\u13d5\u13a4\u13d9\u13a5": 12250, "\u13d3\u13d7\u13cd\u13d7\u13f1": 12251, "\u2581\u13a4\u13c1\u13b3\u13eb\u13ce\u13b2": 12252, "\u2581\u13d5\u13a6\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 12253, "\u2581\u13e5\u13ee\u13a6\u13d9": 12254, "\u2581\u13ed\u13e9\u13a6\u13d8\u13d7\u13d2": 12255, "\u2581\u13c4\u13be\u13db\u13bf\u13d5\u13ac": 12256, "\u2581\u13a4\u13d8\u13c3\u13b4": 12257, "\u2581\u13a0\u13a9\u13d0\u13c5": 12258, "\u2581\u13e8\u13d3\u13b8": 12259, "\u13c4\u13be\u13db\u13c5": 12260, "\u13e0\u13a8\u13cf": 12261, "\u2581\u13e5\u13c2\u13a8\u13ce": 12262, "\u13a2\u13aa\u13af\u13d3": 12263, "\u13e3\u13c5\u13d3\u13d5": 12264, "\u2581\u13a3\u13a9\u13aa\u13b2": 12265, "\u13c2\u13aa\u13af\u13b8\u13be": 12266, "\u2581\u13a4\u13d7\u13d4\u13ae": 12267, "\u13a8\u13e5\u13cd\u13d5\u13b8\u13d7": 12268, "\u2581\u13c5\u13d3\u13ac\u13e9\u13be": 12269, "\u13a1\u13c6\u13ad\u13bb": 12270, "\u2581\u13d5\u13e5\u13a7\u13bf\u13e9\u13d7\u13d2": 12271, "\u2581\u13da\u13ea\u13a7\u13c1": 12272, "\u2581\u13a3\u13e5\u13c3\u13ae\u13cd\u13ac": 12273, "\u2581\u13a4\u13c5\u13d3\u13d7\u13d7\u13d2": 12274, "\u2581\u13e7\u13be\u13c4\u13aa\u13eb\u13ce\u13b4": 12275, "\u13e7\u13ac\u13e9\u13b6\u13d7": 12276, "\u2581\u13f1\u13aa\u13b5\u13a8": 12277, "\u2581\u13d3\u13d3\u13c1\u13b3\u13d7\u13d2": 12278, "\u2581\u13d7\u13e3\u13b8\u13eb": 12279, "\u2581\u13d7\u13c6\u13d3\u13b4\u13c5": 12280, "\u13c2\u13ac\u13be\u13db": 12281, "\u2581\u13a4\u13db\u13a6\u13cd\u13d4\u13c1": 12282, "\u2581\u13a0\u13be\u13d3\u13e9\u13db\u13af\u13d9": 12283, "\u13a4\u13c1\u13a6": 12284, "\u2581\u13a4\u13df\u13cd\u13d4": 12285, "\u13cd\u13db\u13d7\u13cd\u13a8": 12286, "\u13c3\u13c8\u13cf": 12287, "\u13c4\u13c2\u13ea\u13ce\u13a2": 12288, "\u13e1\u13a9": 12289, "\u13e3\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8": 12290, "\u13c5\u13a2\u13cd\u13d4\u13c5\u13af": 12291, "\u13c1\u13ab\u13e5\u13db": 12292, "\u13f3\u13e9\u13c1\u13a6": 12293, "\u13a1\u13d2\u13ad": 12294, "\u13a6\u13c2\u13f4\u13db": 12295, "\u13e9\u13ab": 12296, "\u13e7\u13c1\u13ac": 12297, "\u13da\u13b3\u13d1\u13dd": 12298, "\u13da\u13cd\u13c6\u13c3\u13f4": 12299, "\u13a6\u13d9\u13ac\u13a9": 12300, "\u13a4\u13be\u13e3\u13c5": 12301, "\u13b6\u13c4\u13ae\u13d7": 12302, "\u2581\u13da\u13e0\u13d2\u13ce": 12303, "\u13db\u13c5\u13a2\u13cd\u13d4\u13c1": 12304, "\u13e9\u13b6\u13cf": 12305, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b4": 12306, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13d4\u13c1": 12307, "\u13ac\u13ec\u13b5": 12308, "\u2581\u13d5\u13e3\u13d3\u13d8\u13be\u13a5": 12309, "\u2581\u13d3\u13c2\u13ec\u13c2\u13cd\u13ac": 12310, "\u13a0\u13e5\u13b8": 12311, "\u2581\u13a4\u13d3\u13d9\u13b5\u13e3": 12312, "\u13a9\u13a8\u13f3\u13d2\u13a2": 12313, "\u13ae\u13b5\u13a0": 12314, "\u2581\u13e7\u13c2\u13a6\u13f4\u13b5": 12315, "\u13da\u13ec\u13c1\u13d4\u13c1\u13a2": 12316, "\u2581\u13c2\u13da\u13c5\u13c1\u13b4": 12317, "\u13d7\u13aa\u13e2": 12318, "\u13f2\u13cd\u13d4": 12319, "\u13b5\u13e5\u13d9\u13c1\u13ad": 12320, "\u13a4\u13c1\u13ac": 12321, "\u13ef\u13d8\u13c5\u13cd\u13d7": 12322, "\u13cd\u13a9\u13ef\u13d8\u13c3": 12323, "\u13a2\u13f3\u13cd\u13d8": 12324, "\u2581\u13a9\u13be\u13b5": 12325, "\u13c5\u13a5\u13cd\u13a9": 12326, "\u13d3\u13f4\u13b3\u13d4\u13cd": 12327, "\u2581\u13da\u13da\u13aa\u13d4\u13c5": 12328, "\u13be\u13d8\u13f2": 12329, "\u13be\u13eb\u13db\u13db": 12330, "\u13ae\u13c2\u13b5": 12331, "\u2581\u13ac\u13e9\u13d5\u13c1\u13b4": 12332, "\u2581\u13a0\u13c2\u13b7\u13a8": 12333, "\u13ad\u13d7\u13ad": 12334, "\u13a4\u13f2\u13e8": 12335, "\u13d7\u13a7\u13bf\u13e9\u13d7\u13d9\u13af": 12336, "\u2581\u13e7\u13c6": 12337, "\u13a0\u13d3\u13c5\u13d9": 12338, "\u13d3\u13b5\u13c2\u13aa\u13af\u13cd\u13d9\u13d7": 12339, "\u2581\u13be\u13e5\u13ea\u13ce\u13b4": 12340, "\u13e3\u13ac\u13eb\u13f3\u13af": 12341, "\u2581\u13a6\u13c5\u13ec": 12342, "\u2581\u13a0\u13e5\u13f0\u13b8\u13be\u13c1\u13b4": 12343, "\u13c2\u13e4\u13b7\u13af": 12344, "\u13cd\u13aa\u13b8\u13d9\u13d7": 12345, "\u2581\u13e3\u13b5\u13c2\u13a9": 12346, "\u2581\u13a3\u13a6\u13d3": 12347, "\u13e7\u13d3\u13b4\u13c5\u13d3": 12348, "\u2581\u13ac\u13e9\u13aa\u13ae": 12349, "\u13cf\u13be\u13cc\u13c5": 12350, "\u2581\u13a4\u13c2\u13f2\u13e0\u13af\u13ce\u13b8": 12351, "\u2581\u13c2\u13a6\u13e5\u13ea\u13ce\u13b8": 12352, "\u2581\u13be\u13c6\u13db\u13bf\u13d5\u13ac": 12353, "\u13d7\u13a6\u13b6": 12354, "\u2581\u13f2\u13e3": 12355, "\u2581\u13af\u13a6\u13cd\u13a6\u13c2": 12356, "\u2581\u13e7\u13cd\u13c6\u13c2\u13aa": 12357, "\u13e6\u13d3\u13b8": 12358, "\u2581\u13eb\u13be\u13a9": 12359, "\u13d3\u13d9\u13b5\u13e3\u13d8": 12360, "\u13a0\u13a9\u13aa\u13e9\u13db\u13d7\u13f1": 12361, "\u13a4\u13b5\u13ae\u13b5\u13cd\u13d7": 12362, "\u2581\u13a4\u13ea\u13d9\u13b4": 12363, "\u13cd\u13a6\u13c5\u13e5\u13d9\u13b8\u13a2": 12364, "\u13a9\u13cd\u13d5\u13b8\u13af\u13d3\u13cd\u13d7": 12365, "\u13cc\u13b3\u13db": 12366, "\u13d6\u13b8\u13c2": 12367, "\u13e5\u13a8\u13f3": 12368, "\u13be\u13db\u13c1\u13ae": 12369, "\u13c1\u13a5\u13ad": 12370, "\u13e9\u13d8\u13cd\u13ac\u13be": 12371, "\u13d0\u13b4\u13cd\u13d7": 12372, "\u2581\u13a0\u13b5\u13cd\u13c6\u13d7\u13cd\u13ac": 12373, "\u13d6\u13cd\u13ac": 12374, "\u2581\u13a4\u13c1\u13d9\u13b4": 12375, "\u2581\u13d7\u13a6\u13d9\u13a8": 12376, "\u13b9\u13c5": 12377, "\u2581\u13eb\u13d7\u13ac\u13e9": 12378, "\u2581\u13e3\u13c1\u13ab": 12379, "\u2581\u13a4\u13ec\u13c2": 12380, "\u2581\u13d3\u13f0\u13d9\u13b3": 12381, "\u2581\u13da\u13cd\u13d3\u13e9\u13db\u13ce": 12382, "\u13a2\u13e7\u13b3\u13ad": 12383, "\u2581\u13a4\u13ea\u13d9": 12384, "\u2581\u13a4\u13be\u13da\u13b5\u13cd\u13aa": 12385, "\u13b5\u13cd\u13a6\u13c2\u13cd\u13db": 12386, "\u2581\u13eb\u13d3\u13c6\u13a7\u13be\u13c5": 12387, "\u13be\u13d3\u13b5\u13c1\u13af\u13d5": 12388, "\u2581\u13a4\u13d3\u13cf\u13c1": 12389, "\u13a6\u13be\u13cf\u13cd\u13a9": 12390, "\u2581\u13a4\u13c2\u13cd\u13a6\u13b4": 12391, "\u13ac\u13ec\u13af\u13f3": 12392, "\u2581\u13ed\u13e3\u13c5": 12393, "\u2581\u13a1\u13a6\u13ab\u13f4": 12394, "\u13d4\u13b5\u13c1": 12395, "\u13cd\u13a9\u13be\u13db": 12396, "\u2581\u13a4\u13b5\u13d6\u13b8": 12397, "\u13cd\u13a9\u13d9\u13b5\u13a9": 12398, "\u2581\u13a4\u13d5\u13c1\u13b4": 12399, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b8": 12400, "\u13d3\u13ea\u13b3\u13a9\u13cd\u13ac": 12401, "\u2581\u13ed\u13c2\u13f4\u13b4": 12402, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13d2": 12403, "\u13d7\u13e5\u13c1\u13df\u13f4": 12404, "\u2581\u13a8\u13e5\u13cc": 12405, "\u2581\u13b4\u13bb": 12406, "\u2581\u13c4\u13be\u13db\u13c1": 12407, "\u13a6\u13be\u13ec\u13cd\u13ac": 12408, "\u13f2\u13b1\u13cf\u13d5\u13be": 12409, "\u13b5\u13f1\u13b5\u13d5": 12410, "\u2581\u13a3\u13e4\u13b2": 12411, "\u2581\u13e7\u13be\u13e4": 12412, "\u2581\u13a4\u13be\u13a6\u13ce\u13cd\u13db": 12413, "\u2581\u13c2\u13da\u13b5\u13cd\u13d4\u13c5": 12414, "\u13c4\u13e9\u13c1\u13b4": 12415, "\u2581\u13da\u13ec\u13e2\u13c5": 12416, "\u2581\u13ad\u13d3\u13c5": 12417, "\u2581\u13bf\u13db": 12418, "\u2581\u13e7\u13be\u13b5\u13c2": 12419, "\u13af\u13aa\u13e9\u13db": 12420, "\u13f4\u13d3\u13c6\u13b6\u13cd\u13ac": 12421, "\u13c3\u13af\u13b8\u13cd\u13d4": 12422, "\u2581\u13a4\u13d7\u13b4\u13b2": 12423, "\u2581\u13c4\u13b5\u13c2\u13ac": 12424, "\u2581\u13a4\u13c1\u13df\u13f4": 12425, "\u13a6\u13f0\u13ac\u13cd\u13d4": 12426, "\u13c5\u13cd\u13a6\u13b8": 12427, "\u2581\u13a4\u13a9\u13e8": 12428, "\u13e8\u13cf\u13f0\u13d7": 12429, "\u2581\u13a4\u13ec\u13ea\u13b3\u13c5": 12430, "\u13b5\u13e0\u13ef\u13cd\u13d5\u13cd\u13d7": 12431, "\u13c6\u13d3\u13c5\u13d6\u13b8": 12432, "\u13d7\u13a6\u13b6\u13d7": 12433, "\u13f4\u13d3\u13c6\u13b6\u13cd\u13a9": 12434, "\u13e9\u13d7\u13ce\u13a2": 12435, "\u2581\u13a0\u13e9\u13d8\u13cd\u13aa": 12436, "\u13ce\u13a6\u13e8": 12437, "\u13d9\u13b4\u13c6\u13cd": 12438, "\u13c4\u13af\u13cd\u13d7\u13cd\u13ac": 12439, "\u2581\u13e7\u13c3\u13ea\u13b3\u13c5": 12440, "\u2581\u13a4\u13be\u13b3\u13cd\u13d3\u13a1": 12441, "\u2581\u13c4\u13c2\u13ea": 12442, "\u13c2\u13d9\u13b4": 12443, "\u2581\u13e5\u13a7\u13c1": 12444, "\u13d3\u13be\u13cf\u13c2": 12445, "\u2581\u13e5\u13c3\u13aa": 12446, "\u2581\u13e7\u13c2\u13b7\u13eb\u13cd\u13d4\u13c1": 12447, "\u2581\u13d3\u13be\u13d5\u13f2\u13b2\u13cd": 12448, "\u2581\u13a4\u13b5\u13e8\u13d3\u13c6": 12449, "\u13b5\u13cd\u13d9\u13f0\u13d7": 12450, "\u13b5\u13cf\u13b2\u13ce": 12451, "\u13be\u13c2\u13a9\u13d2": 12452, "\u2581\u13a0\u13a6\u13ab\u13f4\u13a1": 12453, "\u13a6\u13df\u13ae": 12454, "\u2581\u13da\u13c5\u13e9\u13c5": 12455, "\u2581\u13da\u13b5\u13e6": 12456, "\u13d3\u13f4\u13b3\u13d4\u13c5": 12457, "\u2581\u13e7\u13b7\u13eb\u13cd\u13d4\u13c1": 12458, "\u2581\u13ac\u13e9\u13db\u13a6\u13c1\u13b8": 12459, "\u2581\u13a2\u13f3\u13d5\u13d8\u13f4": 12460, "\u2581\u13a4\u13b8\u13d3\u13b8\u13a5\u13cd": 12461, "\u2581\u13ad\u13d9\u13b4\u13b0": 12462, "\u13cc\u13ba\u13b5": 12463, "\u2581\u13a0\u13c2\u13d0\u13e2\u13a2\u13cd\u13d7\u13cd": 12464, "\u13ac\u13ad\u13b8\u13db": 12465, "\u13a4\u13b5\u13ae\u13b5": 12466, "\u2581\u13a7\u13c1\u13a8": 12467, "\u13be\u13d5\u13b2\u13cd\u13ac": 12468, "\u2581\u13a0\u13be\u13a6": 12469, "\u2581\u13ad\u13b5\u13ae\u13b5": 12470, "\u2581\u13a2\u13a7\u13c1\u13e8": 12471, "\u2581\u13ac\u13e9\u13c2\u13f4\u13b2": 12472, "\u13ec\u13cd\u13a9\u13b5": 12473, "\u13b5\u13cd\u13d7\u13f0\u13d3\u13c1": 12474, "\u13c5\u13e7\u13b5\u13cd\u13d9\u13d4\u13c5": 12475, "\u13ec\u13e5": 12476, "\u13ec\u13c1\u13d7\u13cd\u13a8": 12477, "\u2581\u13a4\u13d8\u13f4": 12478, "\u2581\u13d9\u13a9\u13be\u13cd\u13a9\u13d3\u13d2": 12479, "\u2581\u13a2\u13f3\u13db\u13c1": 12480, "\u13b5\u13c3\u13ae\u13d7\u13cd\u13ac": 12481, "\u13d1\u13b5\u13aa\u13e8\u13a9": 12482, "\u13b5\u13c2\u13aa\u13af\u13cd\u13d7": 12483, "\u2581\u13d9\u13e6": 12484, "\u13d5\u13ef\u13d4\u13c1\u13ae": 12485, "\u13a0\u13a6\u13db": 12486, "\u13b7\u13af\u13cd\u13d4\u13c5": 12487, "\u2581\u13d7\u13a6\u13b3\u13eb": 12488, "\u13c2\u13c4\u13aa\u13e4\u13a2": 12489, "\u13eb\u13cc\u13c5": 12490, "\u2581\u13ac\u13ef\u13b5\u13c3\u13ae\u13d9\u13d7": 12491, "\u13f2\u13e4\u13be": 12492, "\u13d7\u13a9\u13ef\u13cd\u13d7": 12493, "\u13d7\u13b4\u13a9": 12494, "\u2581\u13be\u13e5\u13ea\u13ce": 12495, "\u13ef\u13c6": 12496, "\u13f0\u13cc\u13db\u13a2": 12497, "\u13be\u13c4\u13aa\u13e5": 12498, "\u13ac\u13ad\u13b7\u13ef\u13cd": 12499, "\u2581\u13a2\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7": 12500, "\u2581\u13f1\u13d5\u13e3\u13d3": 12501, "\u2581\u13a5\u13a4": 12502, "\u2581\u13a2\u13ef\u13a9\u13ea\u13cd\u13d7": 12503, "\u2581\u13da\u13c3\u13d5": 12504, "\u2581\u13da\u13c2\u13a7\u13c5": 12505, "\u2581\u13a4\u13be\u13b5\u13d6\u13b8": 12506, "\u13a7\u13cd\u13a8\u13c2": 12507, "\u2581\u13bb\u13d7\u13c2": 12508, "\u2581\u13a2\u13af\u13f4\u13c1\u13d7": 12509, "\u13ed\u13c2": 12510, "\u13d3\u13c5\u13cd\u13a8": 12511, "\u13a8\u13b3\u13d7": 12512, "\u2581\u13d7\u13aa\u13d1\u13b4\u13d7": 12513, "\u13db\u13d3\u13cd\u13d3\u13c1\u13ae": 12514, "\u13b7\u13eb\u13cd\u13d3\u13c1\u13d7": 12515, "\u2581\u13eb\u13a8\u13e5\u13ef\u13c5": 12516, "\u2581\u13a0\u13b5\u13cd\u13a6": 12517, "\u2581\u13d5\u13ac\u13e9\u13b3\u13eb": 12518, "\u2581\u13a3\u13be\u13eb": 12519, "\u13be\u13d3\u13d1\u13f0": 12520, "\u2581\u13d7\u13e3\u13b5\u13c2\u13aa\u13af\u13cd\u13d9\u13d7": 12521, "\u13c5\u13b5\u13f0\u13a5": 12522, "\u2581\u13a4\u13b5\u13cd\u13c7\u13da": 12523, "\u13b7\u13e4\u13a2": 12524, "\u2581\u13c5\u13d3\u13ac\u13e9\u13d3\u13b4": 12525, "\u13d5\u13ad\u13f2\u13b2": 12526, "\u2581\u13a1\u13b3\u13c6": 12527, "\u2581\u13a0\u13a9\u13cd\u13db\u13d7": 12528, "\u13cd\u13c6\u13be\u13b3\u13d7\u13cd\u13d7": 12529, "\u2581\u13da\u13d3\u13d3\u13b4": 12530, "\u13a6\u13b5\u13cd\u13d7\u13cd\u13aa\u13a2": 12531, "\u2581\u13a5\u13d3\u13d7": 12532, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d4\u13e9\u13d5": 12533, "\u13ea\u13b5\u13ce\u13a2": 12534, "\u13aa\u13ea\u13b5\u13af": 12535, "\u13d8\u13c5\u13ce": 12536, "\u13ec\u13af\u13e4": 12537, "\u2581\u13be\u13ef\u13db\u13a1": 12538, "\u2581\u13eb\u13e5\u13b7\u13e8": 12539, "\u13c2\u13e2\u13a9": 12540, "\u13e3\u13ea\u13d0\u13b8\u13cd\u13d3": 12541, "\u13cd\u13d3\u13e9\u13d5\u13d2\u13ad": 12542, "\u2581\u13c4\u13c2\u13ac\u13eb\u13f3": 12543, "\u2581\u13da\u13ec\u13e2\u13d4": 12544, "\u13cd\u13d3\u13f2\u13d2": 12545, "\u2581\u13c4\u13ac\u13eb": 12546, "\u13a6\u13d5\u13a3\u13cd\u13a6": 12547, "\u2581\u13a4\u13d2\u13a6\u13b8": 12548, "\u13b4\u13d4\u13c5\u13a2": 12549, "\u13d5\u13d8\u13f4\u13cc\u13d7\u13d2": 12550, "\u2581\u13d7\u13e3\u13d3\u13b4\u13c5": 12551, "\u2581\u13a4\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5": 12552, "\u13ed\u13b7\u13e4\u13a2": 12553, "\u2581\u13a4\u13be\u13c4\u13aa\u13e5": 12554, "\u13cd\u13d5\u13af": 12555, "\u13cd\u13c9\u13c2\u13aa\u13d7": 12556, "\u13b7\u13b8\u13d7\u13f1": 12557, "\u2581\u13a4\u13e3\u13b4\u13cd": 12558, "\u13c2\u13d9\u13be\u13a1": 12559, "\u2581\u13a4\u13cd\u13a6\u13b8": 12560, "\u13d5\u13cd\u13d7\u13f1": 12561, "\u13a6\u13ab\u13f4\u13d3\u13c1\u13d7": 12562, "\u2581\u13ac\u13c6\u13db\u13c1\u13d7": 12563, "\u13d6\u13b8\u13c2\u13b8": 12564, "\u13d5\u13b5\u13d9": 12565, "\u13d9\u13e3\u13c1": 12566, "\u2581\u13a1\u13e5\u13d9\u13b5\u13cd\u13d7": 12567, "\u13be\u13a5\u13c2": 12568, "\u13a6\u13b5\u13c2\u13aa\u13af": 12569, "\u2581\u13e7\u13ea\u13d9\u13b5\u13cd\u13d7": 12570, "\u2581\u13a0\u13c6\u13b4\u13c2\u13d3\u13cd\u13d7": 12571, "\u13a6\u13ef\u13b7\u13a5\u13cd\u13a9": 12572, "\u2581\u13a2\u13e7\u13c5\u13c1\u13d7": 12573, "\u13c5\u13b5\u13f0\u13d7": 12574, "\u2581\u13a4\u13ec\u13ef\u13c1": 12575, "\u13e5\u13b5\u13e6": 12576, "\u2581\u13ac\u13a9\u13c1\u13c9\u13e4": 12577, "\u2581\u13a0\u13ab\u13a2\u13cd\u13d7\u13cd": 12578, "\u2581\u13d9\u13d7\u13cd\u13a9\u13ef\u13d8": 12579, "\u13cc\u13b3\u13d3\u13c1\u13a2": 12580, "\u2581\u13eb\u13a8\u13e5\u13f2\u13b5": 12581, "\u13c3\u13cd\u13a9\u13d2\u13a2": 12582, "\u2581\u13d5\u13ad\u13d5\u13f2\u13b2\u13cd": 12583, "\u13d4\u13a7\u13c5\u13a6": 12584, "\u2581\u13f3\u13e3\u13c5": 12585, "\u2581\u13ac\u13ec\u13b3\u13d5\u13cd": 12586, "\u2581\u13a9\u13ef\u13ce": 12587, "\u2581\u13a4\u13c2\u13d4\u13b3": 12588, "\u2581\u13ed\u13d4\u13b7": 12589, "\u13a6\u13ea\u13a0": 12590, "\u2581\u13a0\u13d3\u13be\u13eb\u13d7": 12591, "\u2581\u13d5\u13e5\u13a7\u13bf\u13e9\u13d7": 12592, "\u13e9\u13af\u13ce\u13b8": 12593, "\u13b3\u13c1\u13b8": 12594, "\u2581\u13d3\u13ad\u13ec\u13a2": 12595, "\u13ad\u13b7\u13f0": 12596, "\u13cd\u13c6\u13d7\u13cd\u13ac\u13be": 12597, "\u13cd\u13db\u13d7\u13cd\u13d4\u13c5": 12598, "\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 12599, "\u2581\u13a1\u13bb\u13c2\u13d3": 12600, "\u13e5\u13cd\u13d3\u13f1\u13d5\u13b5": 12601, "\u2581\u13a4\u13a6\u13be\u13cf": 12602, "\u2581\u13c1\u13d3\u13c2": 12603, "\u2581\u13d5\u13e3\u13d3\u13d8\u13be": 12604, "\u2581\u13a2\u13e3\u13a2\u13d2": 12605, "\u13de\u13eb\u13d2": 12606, "\u13e2\u13c6\u13cd\u13d9\u13d7": 12607, "\u13df\u13cd\u13d5": 12608, "\u13c5\u13ab\u13db\u13a2": 12609, "\u13c8\u13b7": 12610, "\u2581\u13a0\u13e5\u13a4\u13cd\u13d5\u13ce\u13b8": 12611, "\u2581\u13af\u13cd\u13ab": 12612, "\u13ef\u13d8\u13c5\u13cd\u13d4": 12613, "\u13da\u13eb\u13cd\u13db": 12614, "\u2581\u13d5\u13e3\u13a7\u13bf\u13e9\u13d7\u13d9": 12615, "\u2581\u13a2\u13ef\u13a9\u13f3\u13cd": 12616, "\u13da\u13da": 12617, "\u2581\u13a6\u13d5\u13b6": 12618, "\u13b5\u13d3\u13a9\u13db": 12619, "\u13d4\u13d5\u13a9\u13cd\u13a8": 12620, "\u13be\u13eb\u13db\u13af": 12621, "\u13cd\u13d3\u13e9\u13d5\u13a6": 12622, "\u13ea\u13d0\u13b8\u13cd\u13d4": 12623, "\u2581\u13d9\u13d3\u13f2": 12624, "\u13d4\u13cd\u13a9\u13cd\u13a9": 12625, "\u2581\u13f1\u13d7\u13e7\u13aa": 12626, "\u2581\u13d7\u13a6\u13c5\u13cd\u13a8": 12627, "\u13db\u13db\u13b2\u13a6": 12628, "\u2581\u13e5\u13d5\u13aa\u13ea": 12629, "\u13e2\u13c8\u13cd\u13d9\u13d7": 12630, "\u13a2\u13d3\u13d9\u13b4\u13b0": 12631, "\u13d5\u13ef\u13d9\u13d4\u13c2": 12632, "hi": 12633, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa\u13af": 12634, "\u2581\u13da\u13df\u13c2\u13c6": 12635, "\u13f4\u13cc\u13d7\u13d2": 12636, "ape": 12637, "\u2581Ch": 12638, "\u13d3\u13bf\u13cd\u13c6\u13b6\u13cd\u13d7": 12639, "\u13a6\u13b4\u13ef\u13cd\u13aa": 12640, "\u2581\u13a0\u13e9\u13c2\u13a6\u13b3": 12641, "\u2581\u13a8\u13e3\u13d4\u13f2\u13ce": 12642, "\u2581\u13c2\u13da\u13ec\u13da": 12643, "\u2581\u13d7\u13a6\u13b7\u13eb\u13cd\u13d4\u13c5\u13d7": 12644, "\u2581\u13da\u13b7\u13c6\u13d7\u13c5": 12645, "\u2581\u13da\u13c2\u13c4\u13ea\u13d2": 12646, "\u2581\u13eb\u13f0\u13e3\u13d3\u13a2": 12647, "\u13a2\u13d7\u13ac\u13e4\u13b5\u13db": 12648, "\u13a4\u13b8\u13d5\u13a6": 12649, "\u13a6\u13cc\u13ef\u13cd\u13db\u13be": 12650, "\u13a8\u13aa\u13ea\u13b6\u13d4\u13c5\u13af": 12651, "\u13a9\u13b7\u13eb\u13cd\u13d4\u13cf": 12652, "\u13ad\u13b4\u13eb\u13cd\u13d4": 12653, "\u13ad\u13d3\u13be\u13eb\u13d3": 12654, "\u13b3\u13c5\u13d3\u13d7\u13cf": 12655, "\u13b5\u13c2\u13ac\u13c1\u13ad": 12656, "\u13b5\u13cd\u13ab\u13ad\u13f4": 12657, "\u13b5\u13cd\u13c7\u13d4\u13ec": 12658, "\u13b5\u13cd\u13d5\u13b8\u13d9\u13d4\u13be": 12659, "\u13ba\u13b5\u13a9\u13cc\u13d5\u13a9\u13c3": 12660, "\u13be\u13d7\u13d4\u13b0\u13c5": 12661, "\u13be\u13d9\u13af\u13f3\u13be\u13c1\u13d7": 12662, "\u13c2\u13a6\u13e5\u13ef\u13db\u13c1\u13b0": 12663, "\u13c2\u13c5\u13a6\u13b4\u13b0\u13c5": 12664, "\u13c2\u13c6\u13d8\u13b5": 12665, "\u13c2\u13d7\u13e5\u13f2\u13d5\u13cd\u13d7\u13cd\u13ac\u13be": 12666, "\u13c3\u13af\u13b5\u13e3\u13c1": 12667, "\u13c5\u13d4\u13d7\u13d8\u13cd\u13ac": 12668, "\u13cd\u13c6\u13c2\u13aa\u13ce\u13b4": 12669, "\u13d1\u13f0\u13cd\u13ac": 12670, "\u13d3\u13a6\u13d5\u13b6\u13a3\u13cf": 12671, "\u13d3\u13d3\u13cf\u13be\u13b2\u13cd\u13d9\u13d7": 12672, "\u13d3\u13d5\u13d8\u13f4\u13ae\u13ac": 12673, "\u13d4\u13d5\u13a6\u13c5\u13a9": 12674, "\u13d5\u13a6\u13b5\u13a9\u13a1\u13ae\u13a2": 12675, "\u13d6\u13a1\u13af\u13cd\u13d7\u13cd\u13a8\u13a2": 12676, "\u13d9\u13db\u13aa\u13c4\u13b6\u13cf": 12677, "\u13da\u13c2\u13cd\u13d4\u13f2\u13b3": 12678, "\u13e3\u13b5\u13c2\u13aa\u13af\u13cd\u13d4\u13c2": 12679, "\u13e5\u13d4\u13f2\u13af\u13ad": 12680, "\u13e5\u13e5\u13c3\u13af\u13cd\u13d3": 12681, "\u13e5\u13ee\u13d7\u13a6\u13b6\u13cf": 12682, "\u13ef\u13d3\u13f4\u13a1\u13b5": 12683, "\u13f2\u13b0\u13ce\u13b5": 12684, "\u2581Po": 12685, "\u2581\u13a0\u13a6\u13ab\u13f4\u13d3\u13c1\u13ae\u13cd\u13d7": 12686, "\u2581\u13a0\u13a6\u13d4\u13d4\u13c5\u13a5\u13cd\u13a9": 12687, "\u2581\u13a0\u13a7\u13d6\u13c3\u13ae": 12688, "\u2581\u13a0\u13be\u13c1\u13b3\u13d7\u13cd\u13aa\u13a2": 12689, "\u2581\u13a0\u13be\u13c1\u13e2\u13d4\u13c2\u13d2\u13a2": 12690, "\u2581\u13a0\u13c2\u13a7\u13d4\u13b2": 12691, "\u2581\u13a0\u13c2\u13bb\u13d7\u13ef\u13c2": 12692, "\u2581\u13a0\u13c2\u13c3\u13d4\u13c2\u13d9\u13af": 12693, "\u2581\u13a0\u13c3\u13e2\u13c5\u13a5\u13cd\u13ac\u13a2": 12694, "\u2581\u13a0\u13c6\u13d3\u13d9\u13b5\u13cd\u13d4\u13c5": 12695, "\u2581\u13a0\u13cd\u13aa\u13c2\u13d7\u13e2": 12696, "\u2581\u13a0\u13cd\u13ab\u13d5\u13cd\u13aa\u13a2": 12697, "\u2581\u13a0\u13d2\u13be\u13d8\u13b6\u13a5\u13af": 12698, "\u2581\u13a0\u13d3\u13c1\u13e4\u13af": 12699, "\u2581\u13a0\u13db\u13d2\u13a5\u13cd\u13a9": 12700, "\u2581\u13a0\u13dc\u13e9\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 12701, "\u2581\u13a0\u13e5\u13cd\u13db\u13d7\u13cd\u13d7\u13cd\u13ac\u13a2": 12702, "\u2581\u13a0\u13ef\u13cd\u13dc\u13d7\u13cd\u13a9": 12703, "\u2581\u13a1\u13b5\u13a3\u13c8\u13a6": 12704, "\u2581\u13a2\u13a4\u13c4\u13aa\u13e8": 12705, "\u2581\u13a2\u13a6\u13a4\u13d8\u13cd\u13db": 12706, "\u2581\u13a2\u13cd\u13a9\u13cc\u13db\u13a5\u13cd\u13a6": 12707, "\u2581\u13a2\u13cd\u13db\u13a8\u13f3\u13a2": 12708, "\u2581\u13a2\u13e3\u13da\u13b8\u13d7\u13f1": 12709, "\u2581\u13a2\u13e3\u13e0\u13be\u13cd\u13db": 12710, "\u2581\u13a2\u13e5\u13be\u13dd\u13be\u13a5": 12711, "\u2581\u13a2\u13e8\u13f0\u13b3\u13d7\u13d9\u13ae\u13cd\u13d7": 12712, "\u2581\u13a2\u13e8\u13f0\u13ef\u13d4\u13c5\u13a2": 12713, "\u2581\u13a2\u13ef\u13df\u13b6\u13a5\u13af": 12714, "\u2581\u13a2\u13f0\u13e3\u13db\u13c1\u13d7": 12715, "\u2581\u13a2\u13f2\u13e8\u13f4\u13c1\u13d7\u13f1": 12716, "\u2581\u13a3\u13a6\u13b5\u13e5\u13d9\u13d7\u13f1": 12717, "\u2581\u13a3\u13c1\u13cf\u13c9\u13b3": 12718, "\u2581\u13a4\u13a6\u13ce\u13cd\u13d5\u13a2": 12719, "\u2581\u13a4\u13a7\u13f2\u13d0\u13c5": 12720, "\u2581\u13a4\u13a9\u13b3\u13eb\u13ce": 12721, "\u2581\u13a4\u13b5\u13cd\u13d4\u13f4\u13c3\u13c1\u13cd\u13d7": 12722, "\u2581\u13a4\u13b7\u13e6\u13c5\u13af": 12723, "\u2581\u13a4\u13be\u13a6\u13b0\u13cd\u13d4\u13c5": 12724, "\u2581\u13a4\u13be\u13d9\u13b4\u13a8\u13ce": 12725, "\u2581\u13a4\u13c1\u13e7\u13e5\u13db": 12726, "\u2581\u13a4\u13c2\u13a6\u13d8\u13d5\u13a2": 12727, "\u2581\u13a4\u13c2\u13aa\u13af\u13d9\u13b8\u13af": 12728, "\u2581\u13a4\u13c2\u13aa\u13c1\u13b6\u13af\u13cc\u13d8": 12729, "\u2581\u13a4\u13c2\u13cd\u13c8\u13cd\u13d3": 12730, "\u2581\u13a4\u13c2\u13d0\u13e2\u13a2\u13cd\u13d4\u13c5": 12731, "\u2581\u13a4\u13c2\u13d4\u13b3\u13ec\u13ce\u13a2": 12732, "\u2581\u13a4\u13c3\u13b1\u13a6\u13c2\u13b8": 12733, "\u2581\u13a4\u13d0\u13e2\u13a2\u13cd\u13d4\u13c5": 12734, "\u2581\u13a4\u13d3\u13d1\u13f0\u13a2": 12735, "\u2581\u13a4\u13d3\u13e5\u13c3\u13af\u13cd\u13d4\u13c5": 12736, "\u2581\u13a4\u13d3\u13e9\u13d7\u13cd\u13db": 12737, "\u2581\u13a4\u13da\u13d3\u13db\u13d7\u13f1": 12738, "\u2581\u13a4\u13df\u13f4\u13cd\u13a9\u13b8\u13ae": 12739, "\u2581\u13a4\u13e7\u13c8\u13cd\u13d9\u13d2\u13af": 12740, "\u2581\u13a4\u13ea\u13d9\u13b5\u13a8\u13a2": 12741, "\u2581\u13a8\u13e4\u13b3\u13d7\u13d9\u13ad": 12742, "\u2581\u13a8\u13e5\u13d0\u13e0\u13b8\u13a2": 12743, "\u2581\u13ac\u13e9\u13a6\u13cc\u13ef\u13cd\u13d5": 12744, "\u2581\u13ac\u13e9\u13c2\u13be\u13c4\u13aa\u13eb\u13ce\u13ae\u13cd\u13d7": 12745, "\u2581\u13ac\u13e9\u13cd\u13d3\u13e9\u13d9\u13af": 12746, "\u2581\u13ad\u13c6\u13e5\u13c2": 12747, "\u2581\u13ad\u13d3\u13c5\u13d7\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 12748, "\u2581\u13af\u13ef\u13b5\u13cd\u13a6\u13cd\u13d9": 12749, "\u2581\u13bb\u13b1\u13e4\u13b5": 12750, "\u2581\u13bb\u13cf\u13b4\u13bb": 12751, "\u2581\u13bb\u13da\u13ce\u13b5": 12752, "\u2581\u13c1\u13e3\u13db\u13c1\u13cd\u13d7\u13c9": 12753, "\u2581\u13c2\u13a6\u13c5\u13a6\u13b8\u13b2\u13be": 12754, "\u2581\u13c2\u13a6\u13e5\u13ea\u13ce\u13ad": 12755, "\u2581\u13c2\u13ac\u13eb\u13cd\u13d5": 12756, "\u2581\u13c2\u13d5\u13e3\u13d3\u13db\u13c1\u13ae\u13cd\u13d7": 12757, "\u2581\u13c2\u13d7\u13e3\u13d3\u13d5\u13b5\u13ce\u13b2\u13be": 12758, "\u2581\u13c2\u13d7\u13e3\u13e2\u13eb\u13ce\u13b2\u13be": 12759, "\u2581\u13c2\u13d7\u13e5\u13c1\u13b2\u13be": 12760, "\u2581\u13c2\u13d9\u13e3\u13b5\u13cd\u13d3\u13c1\u13ad": 12761, "\u2581\u13c4\u13be\u13b5\u13ae\u13b5\u13e3\u13db\u13be": 12762, "\u2581\u13c4\u13c2\u13b7\u13b6\u13e4\u13b2\u13be": 12763, "\u2581\u13c5\u13a4\u13ea\u13ce\u13b8\u13a9": 12764, "\u2581\u13c5\u13cb\u13c1\u13b5\u13d9\u13b8\u13a2": 12765, "\u2581\u13c5\u13d3\u13a6\u13ea\u13cf": 12766, "\u2581\u13c5\u13d3\u13cd\u13a9\u13f4\u13c1\u13b5": 12767, "\u2581\u13c5\u13d3\u13f3\u13be\u13b5\u13cd\u13d3\u13c1\u13b5": 12768, "\u2581\u13c5\u13d3\u13f3\u13cd\u13d7\u13d7\u13d2\u13a9": 12769, "\u2581\u13c5\u13db\u13c2\u13d9\u13be\u13a2": 12770, "\u2581\u13c8\u13d7\u13c2\u13f1": 12771, "\u2581\u13cd\u13a9\u13ef\u13b5\u13a1\u13b5\u13cd": 12772, "\u2581\u13cd\u13a9\u13ef\u13d0\u13a5\u13a6": 12773, "\u2581\u13cd\u13c6\u13d5\u13b2\u13cf": 12774, "\u2581\u13d0\u13b5\u13bc\u13c5": 12775, "\u2581\u13d3\u13a6\u13b3\u13d0\u13eb\u13cf": 12776, "\u2581\u13d3\u13a7\u13bf\u13e9\u13d5\u13a8\u13cd\u13d7": 12777, "\u2581\u13d3\u13a8\u13af\u13db\u13d4\u13c2": 12778, "\u2581\u13d3\u13a9\u13ef\u13ea\u13e5\u13d9\u13b8": 12779, "\u2581\u13d3\u13ac\u13c1\u13c9\u13a2": 12780, "\u2581\u13d3\u13ac\u13cd\u13d3\u13e9\u13d7\u13d9\u13b5": 12781, "\u2581\u13d3\u13be\u13d5\u13d2\u13b2\u13cd\u13a8\u13a2": 12782, "\u2581\u13d3\u13be\u13e6\u13ad\u13f1\u13ae": 12783, "\u2581\u13d3\u13bf\u13ec\u13cd\u13a8": 12784, "\u2581\u13d3\u13c1\u13d9\u13b2\u13a9": 12785, "\u2581\u13d3\u13c2\u13c2\u13a9\u13b8": 12786, "\u2581\u13d3\u13c2\u13e5\u13cd\u13d4\u13b3\u13cd\u13ac": 12787, "\u2581\u13d3\u13cd\u13a9\u13ef\u13e0\u13e5": 12788, "\u2581\u13d3\u13d3\u13d8\u13c1\u13b2\u13a2": 12789, "\u2581\u13d3\u13e5\u13b4\u13d0\u13c2": 12790, "\u2581\u13d3\u13e5\u13cd\u13d4\u13e9\u13d5\u13cf": 12791, "\u2581\u13d3\u13e5\u13d4\u13f2\u13b5": 12792, "\u2581\u13d3\u13e8\u13f2\u13ce\u13b5": 12793, "\u2581\u13d3\u13f2\u13cd\u13d3\u13c1\u13b3\u13d7": 12794, "\u2581\u13d3\u13f3\u13be\u13da\u13a9\u13d2": 12795, "\u2581\u13d5\u13a4\u13b8\u13eb\u13cd\u13d3\u13cf": 12796, "\u2581\u13d5\u13a8\u13a6\u13d3\u13c2\u13b8\u13e8": 12797, "\u2581\u13d5\u13a9\u13be\u13e6\u13d2": 12798, "\u2581\u13d5\u13ac\u13d2\u13b2\u13cd\u13ac\u13a2": 12799, "\u2581\u13d5\u13ac\u13e9\u13d3\u13c2\u13b8\u13e8\u13a9": 12800, "\u2581\u13d5\u13ac\u13ef\u13ab\u13f4\u13d3\u13c1\u13ae\u13cd\u13d7": 12801, "\u2581\u13d5\u13ac\u13ef\u13e0\u13a2\u13cd\u13d3\u13c1\u13b8": 12802, "\u2581\u13d5\u13ad\u13c5\u13d3\u13d7\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 12803, "\u2581\u13d5\u13af\u13ef\u13d3\u13c2\u13b8\u13e8\u13ad": 12804, "\u2581\u13d5\u13cd\u13d7\u13c2\u13f4\u13ae\u13cd\u13d7": 12805, "\u2581\u13d5\u13e5\u13a6\u13bf\u13e9\u13d7\u13d2": 12806, "\u2581\u13d7\u13a6\u13b5\u13ef\u13c5\u13af\u13db": 12807, "\u2581\u13d7\u13a8\u13e5\u13c5\u13cd\u13d5\u13ce\u13b8\u13af": 12808, "\u2581\u13d7\u13a9\u13be\u13d3\u13db\u13d9\u13d7": 12809, "\u2581\u13d7\u13ab\u13e9\u13ad\u13c4\u13eb": 12810, "\u2581\u13d7\u13ac\u13e9\u13d5\u13f2\u13d7": 12811, "\u2581\u13d7\u13c2\u13b3\u13cd\u13d3\u13b3\u13e9\u13d7\u13d2": 12812, "\u2581\u13d7\u13d3\u13d9\u13d5\u13af\u13af": 12813, "\u2581\u13d7\u13d7\u13c2\u13c3\u13a9\u13cd\u13a8\u13a2": 12814, "\u2581\u13d7\u13f4\u13a6\u13b4\u13f4\u13d3": 12815, "\u2581\u13d8\u13f0\u13b5\u13af\u13cd\u13d3": 12816, "\u2581\u13d9\u13a6\u13d3\u13f2\u13b5\u13b8": 12817, "\u2581\u13d9\u13b5\u13d3\u13cd\u13c6": 12818, "\u2581\u13d9\u13d3\u13a6\u13e5\u13ef\u13df\u13b6\u13cd\u13d4\u13c2": 12819, "\u2581\u13d9\u13d3\u13e6\u13b5\u13cd\u13d4\u13c2": 12820, "\u2581\u13d9\u13d8\u13f4\u13d4\u13c2\u13b5": 12821, "\u2581\u13d9\u13db\u13a0\u13b4\u13af\u13cc\u13c2": 12822, "\u2581\u13da\u13b5\u13d6\u13b8\u13c1": 12823, "\u2581\u13da\u13be\u13c1\u13b3\u13d7\u13d9\u13b4": 12824, "\u2581\u13da\u13be\u13c1\u13cd\u13d3\u13dd\u13b0\u13a2": 12825, "\u2581\u13da\u13be\u13d0\u13d3\u13b8": 12826, "\u2581\u13da\u13be\u13d7\u13eb\u13cd\u13d7\u13cd\u13a8": 12827, "\u2581\u13da\u13be\u13e6\u13ad\u13f1\u13b8": 12828, "\u2581\u13da\u13c2\u13b5\u13f0\u13d7\u13cd\u13ac": 12829, "\u2581\u13da\u13c2\u13b7\u13eb\u13cd\u13d4\u13c1\u13b2": 12830, "\u2581\u13da\u13cc\u13ec\u13b4": 12831, "\u2581\u13da\u13cd\u13c6\u13b8\u13d4\u13c5": 12832, "\u2581\u13da\u13d7\u13a6\u13b4\u13ef\u13cd\u13d4\u13c5": 12833, "\u2581\u13da\u13df\u13b7\u13c6\u13d7\u13c5\u13ce": 12834, "\u2581\u13da\u13e5\u13cd\u13e0\u13e8\u13a9": 12835, "\u2581\u13da\u13e9\u13c5\u13a6\u13e2": 12836, "\u2581\u13da\u13ee\u13a9\u13b6\u13a5\u13a9": 12837, "\u2581\u13da\u13ef\u13cd\u13dc\u13db": 12838, "\u2581\u13db\u13a9\u13ef\u13c5\u13a1\u13b4\u13cd\u13d7": 12839, "\u2581\u13db\u13b5\u13f0\u13a2\u13b8\u13cd\u13d3": 12840, "\u2581\u13db\u13be\u13b5\u13db\u13d4\u13c2": 12841, "\u2581\u13db\u13cb\u13cd\u13a6\u13b8\u13c2": 12842, "\u2581\u13e3\u13e5\u13f0\u13b8\u13be\u13c1\u13b4\u13a2": 12843, "\u2581\u13e5\u13a6\u13a7\u13b0\u13a2": 12844, "\u2581\u13e5\u13ac\u13a9\u13be\u13b8\u13cd\u13d4\u13c5\u13a9": 12845, "\u2581\u13e5\u13c1\u13e3\u13db\u13a9\u13cd\u13aa\u13a2": 12846, "\u2581\u13e5\u13c2\u13d5\u13af\u13ea\u13ce\u13b8\u13a9": 12847, "\u2581\u13e5\u13c2\u13da\u13e9\u13c1\u13b8": 12848, "\u2581\u13e5\u13cd\u13a9\u13ef\u13c2\u13a9\u13cd\u13d3": 12849, "\u2581\u13e5\u13d3\u13c5\u13bf\u13d7\u13cd\u13d9\u13d7": 12850, "\u2581\u13e5\u13d3\u13da\u13eb\u13cd\u13d7\u13ad": 12851, "\u2581\u13e5\u13da\u13e3\u13c3\u13db\u13a9": 12852, "\u2581\u13e5\u13eb\u13d7\u13a6\u13b8\u13cc\u13d3\u13d7\u13cd\u13aa\u13a2": 12853, "\u2581\u13e5\u13eb\u13e8\u13f2\u13ea\u13b3\u13c1": 12854, "\u2581\u13e5\u13ef\u13b5\u13c3\u13ae\u13d7\u13cd\u13ac\u13a2": 12855, "\u2581\u13e5\u13ef\u13d3\u13c1\u13df\u13f4\u13cd\u13d3\u13c1\u13b8": 12856, "\u2581\u13e5\u13ef\u13da\u13e3\u13b3\u13c5\u13ad": 12857, "\u2581\u13e6\u13a6\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7\u13f1": 12858, "\u2581\u13e6\u13a9\u13f2\u13b1\u13af\u13cd\u13d7\u13f1": 12859, "\u2581\u13e6\u13e3\u13b5\u13e5\u13d9\u13c1\u13d7\u13f1": 12860, "\u2581\u13e7\u13c3\u13d5\u13af\u13af": 12861, "\u2581\u13e7\u13e3\u13ec\u13d3": 12862, "\u2581\u13e8\u13e7\u13b6\u13ce\u13a2": 12863, "\u2581\u13e9\u13c2\u13b6\u13d2\u13ad": 12864, "\u2581\u13e9\u13c6\u13d8\u13c5\u13cd\u13d4\u13c5\u13a9": 12865, "\u2581\u13eb\u13a4\u13ea\u13c5": 12866, "\u2581\u13eb\u13ac\u13e9\u13f2\u13e5\u13d3\u13cd\u13d7": 12867, "\u2581\u13eb\u13c2\u13da\u13e9\u13c1\u13b4": 12868, "\u2581\u13eb\u13c4\u13be\u13db\u13c1\u13b8\u13a9": 12869, "\u2581\u13eb\u13d9\u13db\u13be\u13b4\u13d4\u13c2": 12870, "\u2581\u13eb\u13d9\u13db\u13be\u13d3\u13a1\u13cf": 12871, "\u2581\u13eb\u13d9\u13db\u13c2\u13f2\u13af\u13ce\u13b5": 12872, "\u2581\u13eb\u13da\u13a6\u13d4\u13b2\u13cd\u13d9\u13d7\u13f1": 12873, "\u2581\u13eb\u13f1\u13e3\u13a7\u13b2\u13a6": 12874, "\u2581\u13ed\u13c1\u13b3\u13d7\u13d3": 12875, "\u2581\u13ed\u13c1\u13d9\u13b8\u13af": 12876, "\u2581\u13ed\u13d3\u13ec\u13a5\u13cd\u13d7": 12877, "\u2581\u13ed\u13d7\u13cd\u13a6\u13dd\u13c1": 12878, "\u2581\u13ed\u13e9\u13ef\u13b8\u13e5\u13b4": 12879, "\u2581\u13ee\u13d3\u13f3\u13ce\u13ae\u13b5": 12880, "\u2581\u13ee\u13db\u13c2\u13b6\u13cf": 12881, "\u2581\u13ef\u13a9\u13b7\u13e4\u13b4\u13cd\u13d7": 12882, "\u2581\u13ef\u13be\u13d3\u13c5\u13cd\u13ac\u13be": 12883, "\u2581\u13ef\u13c2\u13cd\u13d9\u13b0\u13a2": 12884, "\u2581\u13ef\u13c9\u13af\u13f3\u13ae": 12885, "\u2581\u13ef\u13d5\u13e0\u13c6\u13cd\u13a6": 12886, "\u2581\u13f1\u13c1\u13e8\u13be\u13d5\u13a8\u13cd\u13d7": 12887, "\u2581\u13f1\u13c5\u13e7\u13b5\u13cd\u13d9\u13d4\u13c1": 12888, "\u2581\u13f1\u13cd\u13a9\u13a6\u13d4\u13ae\u13a2": 12889, "\u2581\u13f1\u13cd\u13a9\u13f2\u13a2\u13f3\u13b2\u13cd\u13a6": 12890, "\u2581\u13f1\u13cd\u13a9\u13f2\u13a2\u13f3\u13c1\u13a2": 12891, "\u2581\u13f1\u13cd\u13c6\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b8": 12892, "\u2581\u13f1\u13d3\u13c2\u13cd\u13d3\u13e9\u13a6\u13a6": 12893, "\u2581\u13f1\u13d5\u13e5\u13a4\u13cd\u13d5\u13ce\u13b8": 12894, "\u2581\u13f1\u13d7\u13e5\u13cd\u13c6\u13c2\u13aa": 12895, "\u2581\u13f1\u13da\u13c2\u13bf\u13cd\u13d5\u13e0\u13a2": 12896, "\u2581\u13f1\u13e3\u13cd\u13a6\u13c5\u13e4\u13cd\u13d7": 12897, "\u2581\u13f1\u13e5\u13aa\u13c1\u13b6\u13cd\u13a8\u13cd\u13d7": 12898, "\u2581\u13f1\u13e6\u13af\u13f3\u13ad": 12899, "\u2581\u13f1\u13e6\u13af\u13f3\u13c1\u13cd\u13d7": 12900, "\u2581\u13f3\u13a6\u13cc\u13ef\u13cd\u13d4\u13c1": 12901, "\u2581\u13f3\u13c2\u13ec\u13c2\u13cc": 12902, "\u2581\u13f4\u13a6\u13ac\u13f4\u13d5\u13a9": 12903, "\u2581\u13f4\u13ac\u13da\u13d3\u13b4\u13cd\u13d3": 12904, "\u2581\u13a0\u13a9\u13aa\u13e9\u13d8\u13cd\u13a9": 12905, "\u2581\u13a0\u13b5\u13d6\u13b8\u13c2\u13ae\u13a2": 12906, "\u2581\u13a0\u13c2\u13eb\u13c4\u13e3": 12907, "\u2581\u13a0\u13c2\u13eb\u13c5\u13a8\u13cc\u13c2": 12908, "\u2581\u13a0\u13c5\u13f3\u13e4\u13b2": 12909, "\u2581\u13a0\u13eb\u13d2\u13a5\u13cd\u13a9": 12910, "\u2581\u13a4\u13c2\u13f2\u13b8\u13a2\u13cd\u13d4\u13c5": 12911, "\u2581\u13a4\u13c4\u13b6\u13b8": 12912, "\u2581\u13ac\u13f2\u13b5\u13cd\u13d4\u13c5": 12913, "\u2581\u13c2\u13db\u13c5\u13c1\u13b5": 12914, "\u2581\u13c2\u13e5\u13ea\u13cd\u13a8\u13cd\u13d7": 12915, "\u2581\u13d5\u13a4\u13ec\u13a1\u13a2": 12916, "\u2581\u13d5\u13e5\u13a6\u13cc\u13ec\u13a2\u13b2\u13a2": 12917, "\u2581\u13db\u13c3\u13b5\u13e5": 12918, "\u2581\u13e5\u13bf\u13db\u13a6": 12919, "\u2581\u13eb\u13d7\u13cd\u13a9\u13ef\u13d8\u13c5\u13cd\u13d4\u13c5\u13a9": 12920, "\u2581\u13ef\u13a9\u13f2\u13cf\u13ad": 12921, "\u2581\u13f3\u13f0\u13b5\u13db\u13be": 12922, "\u13a6\u13d9\u13b4\u13b0\u13cd\u13a6": 12923, "\u13a9\u13f0\u13b3\u13d7\u13d9\u13ad": 12924, "\u13c2\u13a8\u13af\u13d9\u13b5": 12925, "\u13cc\u13c6\u13de": 12926, "\u13cd\u13ab\u13c6": 12927, "\u13e5\u13a6\u13d6\u13c3\u13ae\u13cd\u13d7": 12928, "\u13e9\u13d2\u13d9\u13a3\u13ce": 12929, "\u13f4\u13cd\u13d3\u13a9\u13cd\u13a9": 12930, "\u2581\u13a0\u13a6\u13be\u13ec\u13d7\u13cd": 12931, "\u2581\u13a0\u13c4\u13d6\u13cd\u13a8": 12932, "\u2581\u13a0\u13cd\u13aa\u13b5\u13f0\u13cd\u13a8": 12933, "\u2581\u13a0\u13cd\u13ab\u13d5\u13cd\u13a9": 12934, "\u2581\u13a1\u13b5\u13a1\u13cc": 12935, "\u2581\u13a1\u13e5\u13d4\u13f2\u13ce\u13ae\u13cd\u13d7": 12936, "\u2581\u13a2\u13a1\u13e5\u13aa\u13b5\u13f0": 12937, "\u2581\u13a2\u13a9\u13f2\u13b1\u13af\u13ce\u13b8": 12938, "\u2581\u13a2\u13cd\u13a9\u13c3\u13c1\u13b5\u13b8": 12939, "\u2581\u13a2\u13cd\u13a9\u13cd\u13a6\u13a6": 12940, "\u2581\u13a4\u13a6\u13f4\u13b3\u13e8": 12941, "\u2581\u13a4\u13b5\u13a9\u13f3\u13cd": 12942, "\u2581\u13a4\u13b5\u13cd\u13a9\u13c3\u13d8\u13cd": 12943, "\u2581\u13a4\u13c2\u13e9\u13d2\u13a5\u13cd\u13a9": 12944, "\u2581\u13a4\u13cd\u13d5\u13c5\u13e8": 12945, "\u2581\u13a4\u13d6\u13b8\u13c5": 12946, "\u2581\u13a5\u13c6\u13a8\u13c5\u13db": 12947, "\u2581\u13ac\u13be\u13f0\u13cd\u13ac": 12948, "\u2581\u13ac\u13e9\u13c2\u13f2\u13e5\u13d9\u13b8": 12949, "\u2581\u13ac\u13e9\u13d5\u13b0\u13d4\u13c1\u13a2": 12950, "\u2581\u13ad\u13d9\u13ef\u13c5\u13af": 12951, "\u2581\u13c2\u13a6\u13e5\u13ef\u13db\u13c1\u13b8\u13a9": 12952, "\u2581\u13c2\u13bb\u13b6\u13d7": 12953, "\u2581\u13c2\u13d3\u13a6\u13db\u13c1\u13b5": 12954, "\u2581\u13c2\u13d9\u13d3\u13ac\u13e9": 12955, "\u2581\u13c5\u13e7\u13db\u13bf\u13d7\u13ce": 12956, "\u2581\u13d3\u13c2\u13c4\u13aa\u13eb\u13cd": 12957, "\u2581\u13d3\u13f3\u13d0\u13c5\u13c2": 12958, "\u2581\u13d5\u13a8\u13a6\u13b4\u13d7": 12959, "\u2581\u13d5\u13e3\u13d3\u13e1\u13e9\u13d7\u13d2": 12960, "\u2581\u13d5\u13e5\u13b3\u13eb\u13e6\u13af\u13b2": 12961, "\u2581\u13d5\u13e5\u13c4\u13aa\u13eb\u13cd": 12962, "\u2581\u13d7\u13a6\u13a6\u13e0\u13f1\u13af": 12963, "\u2581\u13d7\u13a9\u13be\u13e2\u13d7\u13f1": 12964, "\u2581\u13da\u13b3\u13d1\u13de": 12965, "\u2581\u13db\u13b5\u13cd\u13d3\u13f4\u13c2": 12966, "\u2581\u13e3\u13c2\u13d9\u13be\u13a0": 12967, "\u2581\u13e3\u13e6\u13d4\u13cd\u13d4\u13c5": 12968, "\u2581\u13e5\u13d5\u13be\u13e6\u13af": 12969, "\u2581\u13e5\u13da\u13f1\u13b6\u13b4\u13a2": 12970, "\u2581\u13e7\u13c3\u13b8\u13d4\u13c2\u13d9\u13b0": 12971, "\u2581\u13e7\u13c4\u13aa\u13e8": 12972, "\u2581\u13e7\u13da\u13aa\u13d9\u13d7": 12973, "\u2581\u13f1\u13a6\u13b3\u13cd\u13e2": 12974, "\u2581\u13f1\u13ea\u13e3\u13d3\u13a2\u13c5": 12975, "\u2581\u13f3\u13c2\u13da\u13ac\u13be": 12976, "\u2581\u13f4\u13ac\u13d3\u13db\u13a6": 12977, "\u13a8\u13a9\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd\u13ac\u13a9": 12978, "\u13ad\u13c4\u13ed": 12979, "\u13b3\u13eb\u13ce\u13b5": 12980, "\u13cd\u13da\u13a2\u13a1\u13d7\u13f1": 12981, "\u13d3\u13be\u13c7\u13cd\u13ac": 12982, "\u13da\u13be\u13d3\u13e9\u13db\u13d4\u13c1\u13a2": 12983, "\u13da\u13d4\u13b2\u13a2": 12984, "\u13e3\u13ac\u13e9\u13b3\u13c5\u13af": 12985, "\u13ec\u13c1\u13d4\u13c2": 12986, "\u13f4\u13a7\u13c1\u13b5": 12987, "\u2581\u13a0\u13a6\u13d0\u13a0\u13cf\u13af\u13b2": 12988, "\u2581\u13a0\u13b5\u13d2\u13a2\u13cd\u13d9\u13d7": 12989, "\u2581\u13a0\u13c5\u13f3\u13ac": 12990, "\u2581\u13a2\u13e5\u13d1\u13b5\u13aa\u13a2": 12991, "\u2581\u13a2\u13e8\u13a9\u13b5\u13f2\u13e4\u13b2": 12992, "\u2581\u13a4\u13be\u13cd\u13d5\u13e5": 12993, "\u2581\u13a5\u13e5\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b8\u13a9": 12994, "\u2581\u13a5\u13e5\u13ef\u13db\u13a6\u13c1\u13b8\u13a9": 12995, "\u2581\u13c2\u13e4\u13b5\u13cd\u13ac\u13be": 12996, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d7\u13d9\u13d7\u13cd": 12997, "\u2581\u13d5\u13a6\u13d3\u13ec\u13cd\u13d7\u13ad": 12998, "\u2581\u13d5\u13e5\u13f2\u13cd\u13a8\u13cd\u13d7": 12999, "\u2581\u13d7\u13a8\u13e5\u13d0\u13c5\u13c5\u13af": 13000, "\u2581\u13d7\u13a9\u13a7\u13c1\u13f4\u13d7\u13f1": 13001, "\u2581\u13d9\u13e8\u13c5\u13a2": 13002, "\u2581\u13da\u13df\u13b6\u13cd\u13d4\u13c1\u13b4": 13003, "\u2581\u13db\u13be\u13d3\u13c5\u13d3\u13d7": 13004, "\u2581\u13e7\u13be\u13b5\u13c2\u13a6\u13c2": 13005, "\u2581\u13e7\u13c2\u13be\u13e6\u13f4\u13cd\u13d7": 13006, "\u2581\u13e9\u13d0\u13dd": 13007, "\u2581\u13eb\u13c2\u13da\u13c5": 13008, "\u2581\u13eb\u13d3\u13c2\u13c5\u13a8\u13a2": 13009, "\u2581\u13eb\u13e5\u13be\u13c4\u13aa\u13a2\u13cd\u13d7\u13f1": 13010, "\u2581\u13ed\u13d3\u13a9\u13c5\u13d2": 13011, "\u2581\u13ed\u13e9\u13be\u13ec": 13012, "\u2581\u13ed\u13ec\u13af\u13b6": 13013, "\u2581\u13ee\u13a0\u13a6\u13d4\u13b2\u13cd\u13d3": 13014, "\u2581\u13f3\u13ac\u13eb\u13f3\u13ad": 13015, "\u2581\u13f3\u13e9\u13a8\u13eb": 13016, "\u13a0\u13c6\u13d8\u13c2\u13d9": 13017, "\u13a7\u13d9\u13f4": 13018, "\u13d0\u13e2\u13a2\u13cd\u13d4\u13c1\u13a2": 13019, "\u13d5\u13ad\u13d3\u13df\u13f4\u13b2": 13020, "\u13d7\u13cd\u13a6\u13c5\u13a8\u13cd\u13d7": 13021, "\u13ef\u13d9\u13b4\u13a3\u13af": 13022, "\u2581\u13a0\u13a9\u13c2\u13f0\u13b8": 13023, "\u2581\u13a0\u13d3\u13bf\u13cd\u13c6\u13b6\u13cd\u13d7\u13cd\u13a9": 13024, "\u2581\u13a1\u13e3\u13db\u13d3\u13cd\u13d3\u13cf": 13025, "\u2581\u13a3\u13a6\u13e2\u13c6\u13d2": 13026, "\u2581\u13a4\u13cd\u13d8\u13f0\u13c5\u13af": 13027, "\u2581\u13ac\u13e9\u13a6\u13d8\u13d7\u13cd\u13a9": 13028, "\u2581\u13ad\u13c7\u13c5\u13cd\u13d7": 13029, "\u2581\u13af\u13a8\u13f3\u13a2": 13030, "\u2581\u13c2\u13d3\u13b5\u13cd\u13d7\u13ad": 13031, "\u2581\u13c3\u13e3\u13db\u13c1\u13b2": 13032, "\u2581\u13d0\u13f1\u13c1\u13b3": 13033, "\u2581\u13d7\u13c5\u13c2\u13a6\u13b5\u13cd\u13d7": 13034, "\u2581\u13da\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13b8": 13035, "\u2581\u13e5\u13da\u13ed\u13d3": 13036, "\u2581\u13e7\u13c2\u13c4\u13aa\u13e8": 13037, "\u2581\u13f1\u13a8\u13b5\u13cd\u13a8": 13038, "\u2581\u13f3\u13c2\u13b7\u13e4\u13ae": 13039, "\u2581\u13a0\u13a9\u13b5\u13f2\u13a6": 13040, "\u2581\u13a0\u13b5\u13cd\u13db\u13e7\u13cd\u13d7": 13041, "\u2581\u13a0\u13b5\u13d8\u13cd\u13aa\u13a2": 13042, "\u2581\u13a0\u13c6\u13c2\u13a9\u13cd\u13d7\u13f1": 13043, "\u2581\u13a4\u13a7\u13f2\u13d0\u13c1": 13044, "\u2581\u13a4\u13ac\u13cd\u13c9\u13a1": 13045, "\u2581\u13a4\u13be\u13f0\u13d2\u13af": 13046, "\u2581\u13c2\u13da\u13b3\u13cd\u13ac\u13a2": 13047, "\u2581\u13c2\u13da\u13be\u13d3\u13c1\u13b6\u13db\u13be": 13048, "\u2581\u13e3\u13b6\u13c5\u13ae\u13ad": 13049, "\u2581\u13e5\u13e3\u13e3\u13a0": 13050, "\u2581\u13e9\u13cd\u13d6\u13cd\u13d7": 13051, "\u2581\u13ef\u13aa\u13e9\u13d8\u13cd\u13a8\u13a2": 13052, "\u2581\u13f2\u13cd\u13d7\u13a6\u13d4\u13ad": 13053, "\u13a8\u13e5\u13a4\u13cd\u13d5\u13ce\u13b4\u13a2": 13054, "\u13a8\u13e6\u13ce\u13b0": 13055, "\u13c1\u13b6\u13b2\u13cd\u13a9": 13056, "\u13da\u13e3\u13aa\u13ce": 13057, "\u13e9\u13cd\u13a6\u13b8\u13c1\u13a2": 13058, "\u13eb\u13da\u13d8\u13c5\u13cd\u13d4\u13c5\u13a9": 13059, "\u13ec\u13c1\u13d7\u13cd\u13a9": 13060, "\u2581\u13a0\u13be\u13d3\u13db\u13cd\u13ac\u13a2": 13061, "\u2581\u13a0\u13e0\u13c4\u13ae\u13db": 13062, "\u2581\u13a2\u13a0\u13e5\u13e9\u13db\u13b2\u13c3": 13063, "\u2581\u13a3\u13e3\u13c1\u13e6\u13a5\u13cd": 13064, "\u2581\u13ac\u13c7\u13c5\u13cd\u13d7": 13065, "\u2581\u13ad\u13d3\u13f3\u13a6": 13066, "\u2581\u13c2\u13e3\u13d3\u13a8\u13d2": 13067, "\u2581\u13d5\u13a6\u13c3\u13e3\u13e2": 13068, "\u2581\u13d5\u13a8\u13ab\u13aa\u13d3\u13c1": 13069, "\u2581\u13d7\u13a6\u13b6\u13d0\u13b2\u13cd\u13a9": 13070, "\u2581\u13d7\u13cd\u13c7\u13f2\u13b2\u13cd\u13a9": 13071, "\u2581\u13d9\u13a9\u13ef\u13ea\u13e5\u13d9": 13072, "\u2581\u13d9\u13d3\u13a6\u13e5\u13f3\u13aa\u13d3\u13c1\u13b5": 13073, "\u2581\u13d9\u13d3\u13e8\u13f2\u13af\u13ce\u13b5": 13074, "\u2581\u13da\u13c2\u13cd\u13c6\u13b8\u13d4": 13075, "\u2581\u13e3\u13c1\u13c9\u13a5\u13af": 13076, "\u2581\u13e5\u13ac\u13f2\u13ce\u13b8\u13a9": 13077, "\u2581\u13e5\u13c2\u13d3\u13a6\u13d4\u13b0\u13a2": 13078, "\u2581\u13e5\u13c2\u13da\u13ea\u13ce\u13b4\u13a2": 13079, "\u2581\u13e6\u13ea\u13b3\u13c5\u13a9": 13080, "\u2581\u13e7\u13d9\u13a8\u13cd\u13a9": 13081, "\u2581\u13eb\u13e5\u13a7\u13c5\u13af": 13082, "\u2581\u13f3\u13a8\u13c5\u13db": 13083, "\u13a9\u13f0\u13f2\u13d7": 13084, "\u13ad\u13d3\u13be\u13eb\u13d7\u13cd": 13085, "\u13c2\u13d2\u13b3\u13cd\u13a8": 13086, "\u13ef\u13e0\u13a9\u13c9": 13087, "\u2581\u13a0\u13be\u13d9\u13c2\u13cd\u13a9": 13088, "\u2581\u13a0\u13d3\u13ec\u13cd\u13ac": 13089, "\u2581\u13a0\u13d3\u13f4\u13cd\u13d5\u13cd\u13a9": 13090, "\u2581\u13a2\u13a8\u13e3\u13b5\u13cd\u13d3\u13c1\u13d7": 13091, "\u2581\u13a3\u13c2\u13cf\u13b9": 13092, "\u2581\u13a4\u13d3\u13c1\u13aa\u13f3\u13b2": 13093, "\u2581\u13a6\u13b4\u13eb\u13cd\u13d7": 13094, "\u2581\u13d3\u13a6\u13c1\u13d0": 13095, "\u2581\u13d3\u13c7\u13b7\u13ac": 13096, "\u2581\u13d5\u13a6\u13df\u13b6\u13cd\u13d7\u13cd\u13ac": 13097, "\u2581\u13da\u13be\u13d8\u13d4": 13098, "\u2581\u13e3\u13d3\u13a6\u13cc": 13099, "\u2581\u13e4\u13e7\u13aa\u13d3\u13c1": 13100, "\u2581\u13e7\u13a6\u13d4\u13d8": 13101, "\u2581\u13e7\u13c2\u13e8\u13cd\u13d9\u13d7": 13102, "\u13d3\u13a9\u13a7\u13bf\u13e9\u13d7\u13d9\u13b8": 13103, "\u2581\u13a0\u13a9\u13f2\u13ae": 13104, "\u2581\u13a0\u13c2\u13eb\u13d2\u13a5\u13cd\u13a9": 13105, "\u2581\u13a0\u13c6\u13d8\u13c2\u13d9\u13b2\u13a9": 13106, "\u2581\u13a4\u13ea\u13e9\u13d2\u13a2\u13cd\u13d7": 13107, "\u2581\u13a8\u13e5\u13cd\u13a6\u13c2": 13108, "\u2581\u13aa\u13ce\u13b0": 13109, "\u2581\u13af\u13c2\u13cc\u13c9": 13110, "\u2581\u13c2\u13a8\u13b5\u13cd\u13aa": 13111, "\u2581\u13d3\u13c2\u13b6\u13d2\u13ad": 13112, "\u2581\u13d3\u13e5\u13b5\u13ec\u13e5": 13113, "\u2581\u13d5\u13d3\u13e6\u13cd\u13ac\u13a2": 13114, "\u2581\u13d7\u13c2\u13b3\u13eb\u13e6\u13af\u13af": 13115, "\u2581\u13da\u13d4\u13ea\u13d9\u13c1": 13116, "\u2581\u13db\u13a1\u13e5": 13117, "\u2581\u13e3\u13f0\u13b8\u13ce\u13cd\u13d7": 13118, "\u2581\u13a0\u13c9\u13db\u13b8\u13af": 13119, "\u2581\u13ac\u13d5\u13d8\u13f1\u13a9": 13120, "\u2581\u13d3\u13ac\u13ef\u13ce\u13ae\u13b5": 13121, "\u2581\u13e7\u13c2\u13c2\u13f4\u13d3": 13122, "\u13d3\u13bf\u13eb": 13123, "\u13d7\u13da\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 13124, "\u13da\u13be\u13c4\u13e9\u13a1": 13125, "\u13e3\u13b4\u13eb\u13cd\u13d7\u13cd\u13ac": 13126, "\u2581\u13a4\u13c1\u13d0\u13a0\u13af\u13cd\u13d7": 13127, "\u2581\u13d3\u13be\u13b5\u13c3\u13ae\u13b5\u13d9\u13b2": 13128, "\u13a6\u13d2\u13b3\u13cd\u13aa": 13129, "\u13ac\u13ef\u13b5\u13ae\u13b5\u13e4\u13ad": 13130, "\u13d1\u13b4\u13cd\u13aa": 13131, "\u13da\u13a6\u13b4\u13c5\u13d4\u13c1": 13132, "\u13ec\u13ce\u13b5": 13133, "\u2581\u13a0\u13a9\u13ef\u13a3\u13c5": 13134, "\u2581\u13a1\u13e7\u13a2\u13cd\u13d7": 13135, "\u2581\u13ac\u13e9\u13b5\u13e0\u13ef\u13cd\u13d7": 13136, "\u2581\u13c2\u13e8\u13ef\u13db\u13c1\u13b8": 13137, "\u2581\u13c5\u13d7\u13a6\u13cd\u13d9\u13d7\u13cd\u13a8": 13138, "\u2581\u13cd\u13c6\u13c2\u13cf\u13b2\u13cf": 13139, "\u2581\u13d5\u13e3\u13d3\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd": 13140, "\u2581\u13d8\u13bb\u13be": 13141, "\u2581\u13e5\u13c2\u13e5\u13ea\u13cd\u13ac\u13a9": 13142, "\u2581\u13eb\u13a6\u13d3\u13a5": 13143, "\u2581\u13eb\u13e5\u13b6\u13d2\u13a9": 13144, "\u2581\u13f1\u13ab\u13e9\u13c2": 13145, "\u2581\u13f1\u13d7\u13e6\u13af\u13f3": 13146, "\u2581\u13a0\u13be\u13cd\u13a9\u13d3\u13d2\u13a5\u13cd": 13147, "\u2581\u13a4\u13a6\u13b6\u13ac": 13148, "\u2581\u13a4\u13c2\u13c3\u13f4\u13b5\u13d3": 13149, "den": 13150, "\u13c1\u13b7\u13a9\u13a1\u13b8": 13151, "\u13d3\u13d3\u13da\u13aa\u13d3\u13c1\u13b2": 13152, "\u13d9\u13e7\u13c4\u13aa\u13eb\u13ce\u13a2": 13153, "\u2581Pri": 13154, "\u2581\u13a0\u13f2\u13d3\u13d2": 13155, "\u2581\u13a3\u13a6\u13d5\u13d7\u13f1": 13156, "\u2581\u13a3\u13cd\u13d7\u13f4\u13a9": 13157, "\u2581\u13a6\u13b3\u13cd\u13e2": 13158, "\u2581\u13aa\u13af\u13f3\u13b2\u13cd\u13ac": 13159, "\u2581\u13ac\u13c7\u13b8": 13160, "\u2581\u13cc\u13ec\u13db": 13161, "\u2581\u13d3\u13e4\u13f2\u13c2": 13162, "\u2581\u13d5\u13db\u13c1\u13cd\u13d7": 13163, "\u2581\u13e5\u13af\u13c3\u13c1\u13b5": 13164, "\u2581\u13e7\u13cd\u13da\u13a2\u13a1\u13b8\u13af": 13165, "\u2581\u13e6\u13cc\u13ef": 13166, "\u2581\u13c2\u13ac\u13a9\u13f2\u13b8\u13be": 13167, "\u2581\u13c5\u13d7\u13a0\u13e5\u13ea\u13ce": 13168, "\u2581\u13eb\u13d9\u13d3\u13a8": 13169, "\u2581\u13f0\u13e3\u13db\u13d3": 13170, "\u13a0\u13a6\u13cd\u13a6\u13c3": 13171, "\u2581\u13a4\u13c4\u13d3\u13b4\u13cd\u13a9": 13172, "\u2581\u13a4\u13d5\u13af\u13f4": 13173, "\u2581\u13ab\u13ad\u13df": 13174, "\u2581\u13ba\u13a0": 13175, "\u2581\u13da\u13f0\u13cd\u13db": 13176, "\u2581\u13e5\u13d5\u13a8\u13e5": 13177, "\u2581\u13e7\u13cd\u13d5\u13b8\u13db": 13178, "\u13a6\u13be\u13ec\u13d2": 13179, "\u2581\u13a0\u13be\u13b5\u13d6\u13b8\u13b2\u13cd\u13ac": 13180, "\u2581\u13a0\u13c2\u13f4\u13cd\u13d7\u13cd\u13a9": 13181, "\u2581\u13a0\u13c6\u13c2\u13cf\u13d7\u13f1": 13182, "\u2581\u13a0\u13e5\u13d3\u13a6\u13b8\u13a2\u13d2\u13af": 13183, "\u2581\u13a4\u13b5\u13cd\u13a9\u13c3\u13b3": 13184, "\u2581\u13d7\u13a6\u13b7\u13e5\u13d2": 13185, "\u2581\u13da\u13c1\u13f2\u13c1": 13186, "\u2581\u13e5\u13ac\u13e9\u13c2\u13db\u13d4\u13c1": 13187, "\u2581\u13a1\u13e5\u13e9\u13db\u13b2\u13ad": 13188, "\u13d3\u13e1\u13eb\u13cd\u13d5\u13a2": 13189, "\u13d7\u13eb\u13ce\u13b8\u13a9": 13190, "\u2581\u13a0\u13cc\u13f1\u13b5": 13191, "\u2581\u13a0\u13e3\u13a9\u13cd\u13a9": 13192, "\u2581\u13a4\u13a6\u13be\u13c5": 13193, "\u2581\u13a4\u13cd\u13a9\u13c5\u13d5": 13194, "\u2581\u13a7\u13c1\u13ae\u13db": 13195, "\u2581\u13e5\u13c2\u13cc\u13c5\u13a9": 13196, "\u2581\u13e5\u13d9\u13e3\u13e0\u13af": 13197, "\u2581\u13e7\u13a8\u13c5\u13db": 13198, "\u2581\u13e7\u13ce\u13aa\u13a9\u13cd\u13d7\u13f1": 13199, "\u2581\u13a0\u13d1\u13ef\u13a9\u13db": 13200, "\u2581\u13a1\u13d0\u13cf": 13201, "\u2581\u13a2\u13e3\u13e2\u13c6\u13cd\u13ac": 13202, "\u2581\u13a4\u13c2\u13cd\u13d4\u13e9\u13db": 13203, "\u2581\u13d5\u13e5\u13a6\u13c5\u13a9": 13204, "\u2581\u13da\u13d2\u13a6\u13b8\u13a9": 13205, "\u2581\u13e5\u13db\u13e6": 13206, "\u2581\u13eb\u13be\u13f4\u13af": 13207, "\u2581\u13ef\u13d7\u13d4\u13cd\u13a8": 13208, "\u2581\u13f1\u13c2\u13a6\u13ea\u13ad": 13209, "\u2581\u13f1\u13e8\u13c3\u13c1\u13b4\u13a2": 13210, "\u13e5\u13cd\u13dd": 13211, "\u2581\u13a0\u13c6\u13cd\u13aa\u13d2\u13af": 13212, "\u2581\u13a6\u13c4\u13d3\u13b4\u13a9": 13213, "\u2581\u13ac\u13ef\u13db\u13a6\u13c1\u13b8": 13214, "\u2581\u13ad\u13db\u13c5\u13ad": 13215, "\u2581\u13d7\u13d3\u13a2\u13d2\u13a2": 13216, "\u2581\u13d9\u13db\u13c2\u13f4\u13b3\u13cf": 13217, "\u2581\u13da\u13be\u13d7\u13cd\u13da": 13218, "\u2581\u13da\u13c2\u13b3\u13eb\u13db": 13219, "\u2581\u13e7\u13b5\u13ef\u13cf": 13220, "\u2581\u13eb\u13ab\u13e9\u13c2\u13b6\u13af\u13cd\u13d7": 13221, "\u2581\u13eb\u13f1\u13e3\u13f4": 13222, "\u2581\u13f1\u13ab\u13e9\u13be": 13223, "\u2581\u13a4\u13d0\u13d3\u13b8": 13224, "\u2581\u13a4\u13e3\u13c3\u13db\u13a9": 13225, "\u2581\u13a6\u13f2\u13a9\u13c2": 13226, "\u2581\u13c9\u13d7\u13c6": 13227, "\u2581\u13e5\u13c2\u13d5\u13a4": 13228, "\u2581\u13e5\u13c2\u13e8\u13ea\u13cf": 13229, "\u2581\u13f3\u13ac\u13e9": 13230, "\u13e3\u13b5\u13ae\u13b5\u13aa\u13a2": 13231, "\u2581\u13a0\u13aa\u13e9\u13d8\u13cd\u13a8\u13a2": 13232, "\u2581\u13a0\u13b5\u13cd\u13d4\u13f4\u13b2\u13cd\u13a8": 13233, "\u2581\u13a0\u13c2\u13af\u13f2\u13b2\u13a2": 13234, "\u2581\u13a2\u13e3\u13b5\u13e5\u13d9\u13b2\u13cd\u13a8\u13cd\u13d7": 13235, "\u2581\u13a2\u13f3\u13c5\u13c2\u13d0\u13d7\u13f1": 13236, "\u2581\u13a3\u13a6\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13b8": 13237, "\u2581\u13a4\u13d7\u13cd\u13da\u13c5": 13238, "\u2581\u13a6\u13c3\u13b4\u13cd\u13ac": 13239, "\u2581\u13d9\u13d3\u13f2\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1": 13240, "\u2581\u13d9\u13d7\u13c2\u13a7\u13c1\u13a2": 13241, "\u2581\u13da\u13b5\u13e5\u13cd": 13242, "\u2581\u13da\u13d3\u13b4\u13c5\u13d4\u13c5": 13243, "\u2581\u13e9\u13d5\u13d7\u13f1": 13244, "\u2581\u13eb\u13ac\u13e9\u13d8\u13c5\u13cd\u13d4\u13c5\u13a9": 13245, "\u2581\u13f1\u13c2\u13a6\u13d4\u13ae": 13246, "\u2581\u13ac\u13e9\u13a9\u13e8\u13d7": 13247, "\u13cf\u13c4\u13f4": 13248, "\u13dc\u13c5\u13d3\u13d5": 13249, "\u2581\u13a0\u13cc\u13bb\u13db": 13250, "\u2581\u13a0\u13cd\u13da\u13df\u13cd\u13a9": 13251, "\u2581\u13be\u13c6\u13b5\u13cd\u13d3\u13c1\u13b5\u13d9\u13b2\u13a2": 13252, "\u2581\u13da\u13be\u13d3\u13df\u13f4\u13b2": 13253, "\u2581\u13f1\u13d7\u13d3\u13d3\u13c2\u13b8\u13a6": 13254, "\u2581\u13a2\u13a8\u13ac\u13be\u13d5\u13a9": 13255, "\u2581\u13a4\u13c3\u13b1\u13f2\u13b5": 13256, "\u2581\u13c4\u13da\u13ea\u13ce\u13b8\u13a9": 13257, "\u2581\u13df\u13cd\u13c6": 13258, "\u2581\u13ac\u13ec\u13f1": 13259, "\u2581\u13e9\u13d3\u13ec\u13e3": 13260, "\u2581\u13ed\u13df\u13eb\u13db": 13261, "\u2581\u13f3\u13a6\u13d9\u13a5\u13ce\u13a2": 13262, "\u2581\u13f3\u13da\u13d3\u13b4\u13cd\u13d4\u13c1": 13263, "\u13b5\u13db\u13d7\u13cd\u13ac\u13be": 13264, "\u2581\u13a4\u13a6\u13ce\u13cd\u13d7\u13d5": 13265, "\u2581\u13d9\u13d3\u13e3\u13e0\u13cf": 13266, "\u2581\u13db\u13e5\u13b8\u13c9\u13d4\u13c2": 13267, "\u2581\u13e5\u13d5\u13af\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 13268, "\u2581\u13a2\u13a6\u13e0\u13ef\u13cd\u13d4\u13c5": 13269, "\u2581\u13a2\u13e3\u13db\u13a9\u13cd\u13a9": 13270, "\u2581\u13d5\u13ac\u13e9\u13be\u13cd\u13d7\u13cd\u13a8\u13a2": 13271, "\u2581\u13eb\u13c4\u13ea\u13d2\u13a9": 13272, "\u13c1\u13a2\u13cd\u13d3\u13c1\u13b2\u13a9": 13273, "\u13cd\u13d4\u13e9\u13d7\u13ce": 13274, "\u13d0\u13ef\u13a6": 13275, "\u2581\u13a1\u13cd\u13d7\u13cd\u13d3\u13e9\u13d5\u13d2\u13ad": 13276, "\u2581\u13a4\u13b8\u13c9\u13d4\u13c5\u13af": 13277, "\u2581\u13a4\u13c5\u13e9\u13c5\u13a9": 13278, "\u2581\u13a4\u13cd\u13ab\u13d3\u13db\u13a2": 13279, "\u2581\u13a7\u13f4\u13cc\u13db": 13280, "\u2581\u13ac\u13e9\u13d3\u13e1\u13eb\u13cd\u13d4\u13c1\u13a2": 13281, "\u2581\u13d5\u13a9\u13be\u13d3\u13a8\u13f3\u13d2\u13a2": 13282, "\u2581\u13d7\u13e5\u13be\u13cc": 13283, "\u13da\u13b5\u13e5\u13d9\u13c1\u13b4": 13284, "\u2581\u13cf\u13c2\u13b9\u13c2": 13285, "\u2581\u13d3\u13c2\u13aa\u13e9\u13d7\u13cd\u13a8": 13286, "\u2581\u13d5\u13a6\u13a6\u13ce\u13cd": 13287, "\u2581\u13ef\u13a9\u13f2\u13b1\u13d2": 13288, "\u2581\u13ef\u13c6\u13b4\u13c2\u13d9\u13b8": 13289, "\u2581\u13f1\u13a8\u13a8\u13ad": 13290, "\u2581\u13a0\u13a6\u13ce\u13cd\u13d9\u13d7": 13291, "\u2581\u13a0\u13b1\u13c3\u13b2": 13292, "\u2581\u13a0\u13d7\u13c5\u13d7\u13c9": 13293, "\u2581\u13a4\u13f4\u13dc": 13294, "\u2581\u13d5\u13b0\u13e2\u13d4\u13c5\u13ad": 13295, "\u2581\u13da\u13a9\u13b8\u13e8": 13296, "\u2581\u13da\u13f4\u13d2\u13a9": 13297, "\u2581\u13e5\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 13298, "\u2581\u13e7\u13b5\u13c3\u13af\u13f4\u13af": 13299, "\u2581\u13e8\u13a9\u13c5\u13d2": 13300, "\u13e7\u13be\u13c4\u13aa\u13e8": 13301, "\u2581\u13a0\u13be\u13e0\u13be\u13cd\u13d7\u13cd\u13ac": 13302, "\u2581\u13ac\u13c9\u13af\u13f3\u13b2\u13cd\u13a9": 13303, "\u2581\u13da\u13ea\u13cc\u13cd\u13d4\u13c1": 13304, "\u2581\u13f0\u13e5\u13a6\u13d4\u13ae": 13305, "\u2581\u13c2\u13ea\u13d2\u13ad": 13306, "\u13e5\u13a6\u13bf\u13e9\u13d7\u13d9": 13307, "\u2581\u13a0\u13c2\u13c5\u13dc\u13a1\u13a2": 13308, "\u2581\u13a0\u13e8\u13cf\u13f0\u13cd\u13a8": 13309, "\u2581\u13a5\u13b6\u13f1": 13310, "\u2581\u13cd\u13aa\u13c2\u13f4": 13311, "\u2581\u13d6\u13f2\u13b2\u13cd\u13a9": 13312, "\u2581\u13d7\u13d4\u13b8\u13a2": 13313, "\u2581\u13e5\u13a6\u13b6\u13d2\u13cd\u13d7\u13ad": 13314, "\u2581\u13d5\u13aa\u13ea\u13b5\u13cd": 13315, "\u2581\u13e5\u13c2\u13d5\u13e3\u13db\u13c1": 13316, "\u13c1\u13c9\u13a1\u13b5": 13317, "\u2581\u13a0\u13c3\u13da\u13a2\u13cd\u13d7\u13cd\u13ac": 13318, "\u2581\u13a0\u13e3\u13be\u13c9\u13af": 13319, "\u2581\u13d3\u13e5\u13f2\u13a4\u13cf": 13320, "\u2581\u13e6\u13a9\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 13321, "\u2581\u13e7\u13ea\u13da\u13c1\u13af": 13322, "\u13d3\u13db\u13f3\u13e4": 13323, "\u2581\u13b9\u13d3\u13ef\u13c3": 13324, "\u2581\u13d5\u13a8\u13e5\u13c2\u13cc\u13b2": 13325, "\u2581\u13d9\u13e5\u13f4\u13ac": 13326, "\u2581\u13ef\u13cd\u13a6\u13a6": 13327, "\u2581\u13ba\u13ae": 13328, "\u2581\u13a4\u13c1\u13b3\u13d7\u13d9\u13b2": 13329, "\u2581\u13d3\u13f0\u13e5\u13c4\u13aa\u13eb\u13cf": 13330, "\u2581\u13da\u13c2\u13f2\u13b1\u13ce\u13a2": 13331, "\u13a8\u13f2\u13b2\u13cd\u13a6": 13332, "\u2581\u13d9\u13a9\u13f2\u13d0\u13c5": 13333, "\u2581\u13f3\u13af\u13d0\u13d3\u13c1": 13334, "\u13d3\u13b5\u13c1\u13af\u13d7\u13cd": 13335, "\u13f2\u13a2\u13b1\u13af": 13336, "\u2581\u13a4\u13b5\u13c3\u13ae\u13d4\u13c1": 13337, "\u2581\u13a4\u13c1\u13cc\u13f4": 13338, "\u2581\u13e5\u13a1\u13e5": 13339, "\u2581\u13e7\u13aa\u13b5\u13f0\u13d7\u13f1": 13340, "\u2581\u13d8\u13d4\u13b4": 13341, "ps": 13342, "\u13df\u13b6\u13cd\u13d3\u13c1\u13ad": 13343, "\u2581\u13e3\u13a6\u13b5\u13cd\u13d3\u13f4\u13be\u13c1\u13d7\u13f1": 13344, "\u2581\u13ef\u13c2\u13cf\u13be": 13345, "\u2581\u13f1\u13c2\u13e3\u13cd\u13d5\u13cd\u13d7": 13346, "\u2581\u13f1\u13d7\u13e5\u13ec\u13c2\u13ad": 13347, "\u2581\u13da\u13d7\u13d4\u13cd\u13d4\u13c5": 13348, "\u2581\u13eb\u13d7\u13a6\u13c5\u13aa": 13349, "\u13a9\u13be\u13c4\u13aa\u13e5\u13b8\u13a9": 13350, "\u13a9\u13c1\u13df\u13f4\u13cf": 13351, "\u2581\u13d3\u13d7\u13cd\u13c6\u13c2\u13aa\u13d4\u13c2": 13352, "\u2581\u13d7\u13a9\u13b7\u13eb\u13cd\u13d4\u13c1\u13d7": 13353, "\u2581\u13a0\u13a9\u13b5\u13f4": 13354, "\u2581\u13a4\u13c2\u13bf\u13b8\u13e8": 13355, "\u2581\u13c4\u13d9\u13af\u13f3\u13d2": 13356, "\u2581\u13d3\u13a6\u13ce\u13b5": 13357, "\u2581\u13e5\u13d5\u13e5\u13d9\u13a6": 13358, "\u2581\u13d3\u13e5\u13d4\u13f2\u13ce\u13b5": 13359, "\u2581\u13e7\u13c3\u13f4\u13aa": 13360, "\u13c4\u13f2\u13a2\u13ef": 13361, "\u2581\u13a4\u13a9\u13b5\u13f2\u13e4\u13a2": 13362, "\u2581\u13b2\u13c1\u13cd\u13d7": 13363, "\u2581\u13c2\u13a8\u13ac\u13c1\u13ae": 13364, "\u2581\u13c2\u13a8\u13ac\u13c1\u13b2\u13a2": 13365, "\u2581\u13c2\u13ac\u13c5\u13aa\u13ea\u13b3": 13366, "\u2581\u13d3\u13ac\u13e9\u13cd\u13aa\u13c2\u13b5": 13367, "\u13d4\u13b8\u13a9\u13cd\u13d7": 13368, "\u2581\u13a0\u13ab\u13b7\u13e4\u13d7": 13369, "\u2581\u13d7\u13ac\u13e9\u13be\u13d3\u13c1\u13df\u13f4\u13a1\u13d7": 13370, "\u2581\u13e7\u13f4\u13e3": 13371, "\u2581\u13ec\u13a9\u13f4\u13b8": 13372, "\u2581\u13ee\u13d3\u13e5\u13b7\u13e4\u13b5": 13373, "\u2581\u13f1\u13d9\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 13374, "\u2581\u13a0\u13e3\u13c5\u13d9\u13d7": 13375, "\u2581\u13a4\u13ea\u13e9\u13d2\u13e4": 13376, "\u2581\u13d3\u13be\u13d3\u13f1\u13b5\u13d9\u13b2": 13377, "\u2581\u13d3\u13e2\u13a5\u13cd\u13ac": 13378, "\u2581\u13d5\u13a8\u13a6\u13e8\u13cd\u13d4": 13379, "\u13b5\u13c3\u13ae\u13d7\u13cd\u13a8\u13a2": 13380, "\u2581\u13ad\u13d3\u13ec\u13e3": 13381, "\u2581\u13e5\u13be\u13f0\u13cd\u13a6\u13f0\u13c3": 13382, "\u13af\u13f2\u13af\u13cd\u13d3": 13383, "\u13cc\u13b3\u13d9\u13d3": 13384, "\u2581\u13a0\u13c6\u13d8\u13c2": 13385, "\u2581\u13a0\u13d4\u13b8\u13a6\u13d2": 13386, "\u2581\u13a2\u13ad\u13db\u13c1\u13af": 13387, "\u2581\u13d7\u13c2\u13a7\u13c5\u13a2": 13388, "\u2581\u13eb\u13ef\u13f4\u13af\u13ae\u13cd\u13d7": 13389, "\u2581\u13a4\u13ac\u13ad\u13d3": 13390, "\u2581\u13c5\u13d3\u13ac\u13e9\u13ea\u13ce\u13b5": 13391, "\u2581\u13d5\u13e8\u13ef\u13ec\u13cd\u13d7\u13ad": 13392, "\u13a8\u13e3\u13ab\u13f4\u13cf": 13393, "\u2581\u13a2\u13f3\u13e9\u13d3\u13d7": 13394, "\u2581\u13a7\u13b9\u13b9": 13395, "\u2581\u13d7\u13a8\u13e5\u13f4\u13a9\u13c5\u13af": 13396, "\u2581\u13d9\u13d3\u13a6\u13d8\u13c3\u13b5": 13397, "\u2581\u13ed\u13be\u13b5\u13c3\u13ae": 13398, "\u13e7\u13d8\u13cd\u13d3\u13c1\u13d7\u13f1": 13399, "\u2581\u13a2\u13d3\u13d3\u13c5\u13d3\u13d3": 13400, "\u2581\u13a8\u13e3\u13d5\u13ef\u13d9\u13d7\u13cd\u13a9": 13401, "\u2581\u13c2\u13da\u13c1\u13b6\u13db\u13be": 13402, "\u2581\u13e9\u13c6\u13d7\u13c5\u13d2": 13403, "\u2581\u13d3\u13ac\u13be\u13c4\u13aa\u13eb\u13ce\u13b5": 13404, "\u2581\u13d7\u13e4\u13b5\u13db": 13405, "\u13d8\u13c1\u13cf": 13406, "\u2581\u13d9\u13d7\u13eb\u13d2\u13a2": 13407, "\u2581\u13f1\u13c2\u13a6\u13ea\u13cd\u13a8": 13408, "\u13ca\u13aa\u13d3\u13c1\u13b8": 13409, "\u2581\u13a4\u13f4\u13cd\u13d5\u13cd\u13a9": 13410, "\u2581\u13c5\u13d3\u13e3\u13c4\u13aa\u13eb\u13d2\u13af": 13411, "\u2581\u13f3\u13c1\u13e4\u13a2": 13412, "\u2581\u13f3\u13e3\u13a9\u13d2\u13be": 13413, "\u2581\u13c4\u13cd\u13c6\u13b8\u13b2\u13be": 13414, "\u2581\u13e5\u13a7\u13c3\u13ae\u13cd": 13415, "\u2581\u13f1\u13d3\u13f2\u13a9\u13cd\u13c6\u13c2\u13aa\u13d4\u13c2": 13416, "\u2581\u13da\u13ef\u13c5\u13a1\u13b4\u13a2": 13417, "\u13a8\u13ec\u13d7": 13418, "\u2581\u13a0\u13a6\u13e0\u13ef\u13cd\u13d4\u13c5\u13a9": 13419, "\u2581\u13e6\u13e5\u13da\u13a9": 13420, "\u13e0\u13d2\u13d2\u13a9": 13421, "\u13ef\u13d5\u13a5\u13cf": 13422, "\u2581\u13a9\u13c3\u13af\u13f3\u13c5": 13423, "\u2581\u13eb\u13d8\u13ef\u13c5": 13424, "\u13a6\u13d9\u13cc\u13d7\u13cd\u13db": 13425, "\u2581\u13a3\u13e3\u13b5\u13cd\u13d4\u13f4\u13b2\u13cd\u13ac": 13426, "\u2581\u13a6\u13c4\u13f2\u13af": 13427, "\u2581\u13c3\u13a6\u13e0\u13be\u13cd\u13db\u13be": 13428, "\u2581\u13f1\u13da\u13ea\u13b5\u13ce": 13429, "\u2581\u13f1\u13e9\u13a6\u13d3\u13a2\u13c5": 13430, "\u13c1\u13a9\u13f0\u13cd\u13d7": 13431, "\u2581\u13a0\u13c4\u13d6\u13cd\u13ac": 13432, "\u2581\u13a0\u13e5\u13c1\u13a2\u13cd\u13d4\u13c5": 13433, "\u2581\u13b4\u13a0\u13b9": 13434, "\u2581\u13d9\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 13435, "\u2581\u13a4\u13b5\u13cd\u13ab\u13ea": 13436, "\u2581\u13b7\u13cf\u13ef": 13437, "\u2581\u13d3\u13d3\u13cc\u13b3\u13d7\u13cd": 13438, "\u2581\u13e5\u13ef\u13db\u13a6\u13c1\u13b8\u13a2": 13439, "\u2581\u13e7\u13ea\u13b5\u13cf\u13ef": 13440, "\u2581\u13f3\u13e9\u13c2\u13cd\u13d4\u13c5": 13441, "\u13c6\u13e6\u13a5": 13442, "\u2581\u13ac\u13e9\u13b5\u13cd\u13da": 13443, "\u2581\u13d8\u13cd\u13c6\u13c2\u13aa\u13d3\u13c1\u13d7\u13f1": 13444, "\u2581\u13f2\u13a9\u13c2\u13ad": 13445, "\u13f4\u13a9\u13c5\u13af": 13446, "\u2581\u13a6\u13ac\u13e9\u13c2\u13d0\u13e2": 13447, "\u2581\u13c5\u13d3\u13e8\u13f0": 13448, "\u2581\u13d5\u13e3\u13d3\u13d9\u13af\u13f3": 13449, "\u2581\u13d7\u13cd\u13db\u13d7\u13cd\u13d7\u13cd\u13a9": 13450, "\u2581\u13da\u13c5\u13c2\u13a6\u13b8\u13b2\u13a9": 13451, "\u2581\u13e6\u13a6\u13d3\u13c5\u13d9": 13452, "\u2581\u13ef\u13a9\u13cd\u13db\u13d3": 13453, "\u2581\u13da\u13a7\u13bf\u13e9\u13d7\u13d9\u13b2\u13a2": 13454, "\u13a7\u13be\u13ec\u13a8": 13455, "\u13be\u13f0\u13cf": 13456, "\u13e5\u13c2\u13ac\u13ce\u13b2": 13457, "\u2581\u13d7\u13ab\u13e2\u13d4\u13c5\u13af": 13458, "\u2581\u13d7\u13c2\u13c5\u13cd\u13a8\u13c2": 13459, "\u2581\u13ef\u13c6\u13d8\u13dd": 13460, "\u2581\u13f4\u13db\u13c2\u13b6\u13d0\u13c2": 13461, "\u2581\u13cc\u13a8\u13a2\u13f3": 13462, "\u13b5\u13aa\u13c1\u13b2\u13be": 13463, "\u2581\u13a0\u13be\u13d3\u13ce\u13aa\u13a9\u13cd\u13ac\u13a9": 13464, "\u2581\u13a4\u13d3\u13f4\u13b3\u13d4\u13c1": 13465, "\u2581\u13bf\u13db\u13c1\u13ae\u13cd\u13d7": 13466, "\u2581\u13d7\u13e0\u13d7": 13467, "\u2581\u13a4\u13e6\u13a2\u13ce\u13d7": 13468, "\u2581\u13a4\u13f2\u13de\u13d2\u13a2": 13469, "\u13a9\u13a7\u13bf\u13e9\u13d7\u13d9\u13b0\u13a2": 13470, "\u2581\u13d3\u13c6\u13d3\u13d8\u13be\u13a5": 13471, "\u13c2\u13ad\u13b7\u13a5\u13cd": 13472, "\u2581\u13d7\u13e6\u13d1\u13b5": 13473, "\u2581\u13e5\u13a6\u13b6\u13a8\u13ce\u13a2": 13474, "\u2581\u13f1\u13ac\u13e9\u13f2\u13b1\u13ce": 13475, "\u13ac\u13e9\u13b3\u13c1": 13476, "\u13be\u13b5\u13cd\u13aa\u13b8\u13d7\u13cd\u13a8\u13a2": 13477, "\u2581\u13a4\u13d3\u13c5\u13d3\u13db\u13a2": 13478, "\u2581\u13d7\u13be\u13a6\u13b4\u13c5\u13d7\u13cd\u13a9": 13479, "\u2581\u13da\u13be\u13d3\u13e0\u13b2": 13480, "\u2581\u13da\u13bf\u13b8\u13e4": 13481, "\u2581\u13e0\u13d7\u13ef": 13482, "\u2581\u13a0\u13d8\u13cd\u13d9\u13d7": 13483, "\u2581\u13a4\u13c5\u13d3\u13d2": 13484, "\u2581\u13c5\u13d3\u13f3\u13be\u13e8": 13485, "\u2581\u13da\u13ed\u13d3\u13b4\u13d2": 13486, "\u2581\u13f1\u13c5\u13ac\u13db\u13a6": 13487, "\u13e8\u13cf\u13f0\u13cd\u13ac": 13488, "\u2581\u13a2\u13e3\u13c5\u13e8": 13489, "\u2581\u13a4\u13c2\u13c1\u13c9\u13e8\u13af": 13490, "\u2581\u13e5\u13d5\u13a6\u13b6\u13c4\u13ae": 13491, "\u2581\u13c3\u13e5\u13ea\u13ad": 13492, "\u2581\u13ed\u13b3\u13a9\u13ce": 13493, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d8\u13cd\u13ac": 13494, "\u2581\u13e7\u13d3\u13b4\u13be\u13a2": 13495, "\u2581\u13a4\u13c2\u13c4\u13af": 13496, "\u2581\u13bb\u13c8\u13cc": 13497, "\u2581\u13a0\u13be\u13d4\u13cd\u13a9": 13498, "\u2581\u13ac\u13db\u13cd\u13a8\u13cd\u13d7": 13499, "\u2581\u13d3\u13a7\u13c2\u13cd\u13ac\u13a2": 13500, "\u2581\u13d5\u13ac\u13a6\u13c6": 13501, "\u13d3\u13f3\u13d3\u13b4\u13c5\u13af": 13502, "\u2581\u13da\u13f0\u13b8\u13d2": 13503, "\u13c4\u13b6\u13b4\u13a2": 13504, "\u13d3\u13df\u13c3\u13ae\u13d7\u13cd\u13a8": 13505, "\u2581\u13a2\u13d3\u13b5\u13cd\u13d3\u13f4\u13d7\u13cd\u13ac\u13a2": 13506, "\u2581\u13bf\u13b5\u13cd\u13d3": 13507, "\u2581\u13c2\u13da\u13b8\u13eb\u13cd\u13d3\u13c1": 13508, "\u2581\u13d5\u13a8\u13e5\u13f2\u13af\u13cf": 13509, "\u2581\u13e7\u13df\u13b7\u13c6": 13510, "\u13e3\u13ea\u13a2\u13cd\u13d4": 13511, "\u2581\u13af\u13c1\u13a8\u13cd\u13d7": 13512, "\u2581\u13a0\u13c2\u13ec\u13c2\u13cd\u13aa": 13513, "\u2581\u13a1\u13be\u13a2\u13d3\u13cd\u13d7\u13f1": 13514, "\u2581\u13f1\u13c5\u13a6\u13a6\u13db\u13a6": 13515, "\u2581\u13f3\u13d9\u13af\u13f3\u13b2\u13be": 13516, "\u13e4\u13ec\u13e4": 13517, "\u2581\u13a4\u13be\u13a6\u13ce\u13cd\u13d5\u13a2": 13518, "\u2581\u13ed\u13d3\u13ec\u13a1": 13519, "\u13c1\u13e2\u13d7\u13ad": 13520, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13d5": 13521, "\u2581\u13a5\u13a9\u13f4\u13a9\u13c5\u13af": 13522, "\u13a6\u13d7\u13d9\u13af": 13523, "\u2581\u13d9\u13db\u13d5\u13ef\u13d9\u13d4\u13c2": 13524, "\u2581\u13c5\u13d3\u13f3\u13ea\u13c5": 13525, "\u2581\u13a0\u13d3\u13c1\u13e3\u13cd": 13526, "\u2581\u13a0\u13be\u13d9\u13a9\u13ef\u13cd": 13527, "\u2581\u13e5\u13e8\u13f2\u13ea\u13b3\u13c1\u13ad": 13528, "\u13d9\u13d1\u13b4\u13a5\u13a9": 13529, "\u2581\u13d3\u13ab\u13aa\u13d3\u13c1": 13530, "\u2581\u13e6\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8\u13af": 13531, "\u13af\u13ce\u13b5": 13532, "\u2581\u13d7\u13ac\u13c5\u13c3\u13db": 13533, "\u2581\u13d3\u13a6\u13e5\u13c4\u13aa\u13eb\u13cf": 13534, "\u2581\u13d5\u13ac\u13e9\u13c2\u13c2\u13f4": 13535, "\u2581\u13d5\u13ac\u13e9\u13f2\u13d2": 13536, "\u2581\u13a7\u13f3\u13a6": 13537, "\u13d3\u13da\u13d3\u13d4": 13538, "\u2581\u13a0\u13c2\u13f2\u13af\u13ae\u13cd\u13d7": 13539, "\u2581\u13a4\u13d3\u13e0\u13cd\u13d5\u13a2": 13540, "\u2581\u13a4\u13e9\u13d3\u13b7\u13a6": 13541, "\u2581\u13c2\u13c4\u13be": 13542, "\u2581\u13d3\u13c2\u13be\u13c4\u13aa\u13eb\u13cd\u13aa\u13a2": 13543, "\u2581\u13a2\u13af\u13a9\u13b5\u13f2": 13544, "\u2581\u13a4\u13c2\u13c1\u13a9\u13b8\u13d7": 13545, "\u13c3\u13e8\u13c1\u13ad": 13546, "\u2581\u13c5\u13d7\u13ac\u13e9": 13547, "\u2581\u13f3\u13be\u13d3\u13c5\u13d4": 13548, "\u2581\u13d5\u13af\u13cd\u13d3\u13e9\u13d7\u13ce\u13cd\u13d7": 13549, "\u2581\u13d7\u13d3\u13f1\u13b5\u13d3\u13cd\u13d7\u13f1": 13550, "\u2581\u13a4\u13ef\u13a3\u13a2": 13551, "\u2581\u13a4\u13f1\u13b8\u13d2\u13a9": 13552, "\u2581\u13d5\u13a6\u13b6\u13c4\u13ae": 13553, "\u2581\u13a4\u13a8\u13b2": 13554, "\u2581\u13f3\u13dc\u13c5\u13d5": 13555, "ash": 13556, "\u2581\u13a0\u13a6\u13d4\u13be\u13a5\u13a2": 13557, "\u2581\u13a4\u13b5\u13cd\u13a6\u13f0\u13ac\u13cd\u13d4\u13c1\u13a2": 13558, "\u2581\u13a6\u13c3\u13af\u13b5\u13d2\u13a9": 13559, "\u2581\u13a2\u13e7\u13b5\u13cd\u13d9\u13d7\u13f1": 13560, "\u2581\u13db\u13a4\u13e8\u13d2\u13a9": 13561, "\u2581\u13d9\u13a8\u13a6": 13562, "\u13b8\u13e5\u13b4": 13563, "\u2581\u13a0\u13ab\u13f1\u13cd\u13ac\u13a2": 13564, "\u2581\u13a2\u13e5\u13c3\u13d4\u13c2\u13d9": 13565, "\u2581\u13cd\u13a9\u13aa\u13e9\u13db\u13d7\u13f1": 13566, "\u13d3\u13d9\u13d3\u13c7": 13567, "\u2581\u13e5\u13be\u13a9\u13ea\u13d2\u13a9": 13568, "\u2581\u13d8\u13cd\u13d3\u13e9\u13da\u13a6": 13569, "\u2581\u13d3\u13b5\u13cc\u13b3\u13d7\u13cd\u13ac": 13570, "\u2581\u13d3\u13c6\u13e0\u13af\u13cd\u13db\u13a2": 13571, "\u2581\u13d5\u13af\u13be\u13c4\u13aa\u13eb\u13ce\u13b8\u13a2": 13572, "\u2581\u13d7\u13d3\u13cd\u13d4\u13f4": 13573, "\u2581\u13d7\u13e5\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 13574, "\u2581\u13f3\u13d3\u13d3\u13b3": 13575, "\u2581\u13c1\u13e3\u13db\u13c1\u13b8": 13576, "\u2581\u13c2\u13d3\u13d9\u13e2": 13577, "\u2581\u13f1\u13e3\u13dc\u13c5\u13d3\u13d5": 13578, "\u2581\u13a4\u13b6\u13d0\u13c1": 13579, "\u2581\u13a4\u13be\u13b4\u13be\u13eb\u13cd": 13580, "\u2581\u13d7\u13be\u13d8\u13c2\u13d9\u13af": 13581, "\u2581\u13e7\u13c3\u13ea\u13b6\u13d7": 13582, "\u13c1\u13df\u13f4\u13cd\u13d3": 13583, "\u13f1\u13b6\u13b5": 13584, "\u2581\u13da\u13be\u13c4\u13e9\u13a5": 13585, "\u2581\u13da\u13be\u13e1\u13d5\u13cd\u13d7": 13586, "\u2581\u13f2\u13e2\u13be\u13cf": 13587, "\u13d7\u13eb\u13cd\u13d7\u13f1": 13588, "\u2581\u13a5\u13c7\u13f2\u13c5": 13589, "\u2581\u13d3\u13e5\u13c4\u13aa\u13a2": 13590, "\u13ac\u13be\u13d8\u13c1\u13af": 13591, "\u2581\u13a4\u13e2\u13f2\u13b5": 13592, "\u2581\u13db\u13e8\u13b7\u13e4\u13b5": 13593, "\u13a9\u13c2\u13aa\u13af\u13ce": 13594, "\u2581\u13d5\u13ac\u13e9\u13da\u13eb\u13cd": 13595, "\u13d2\u13ce\u13b5": 13596, "\u2581\u13a3\u13a9\u13c7\u13d3\u13b8": 13597, "\u2581\u13a4\u13d3\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13ac\u13a9": 13598, "\u2581\u13a8\u13e7\u13af\u13cd\u13d7\u13cd\u13a9": 13599, "\u2581\u13be\u13a9\u13f4\u13cd\u13d7\u13f1": 13600, "\u2581\u13f4\u13ac\u13f2\u13b1\u13af": 13601, "\u2581\u13e3\u13c2\u13cf\u13d7\u13f1": 13602, "\u2581\u13a4\u13d3\u13b5\u13d7\u13a9\u13a1\u13b8": 13603, "\u2581\u13f4\u13a6\u13e3\u13a6\u13b8": 13604, "\u2581\u13a0\u13db\u13c5\u13a2\u13cd\u13d4\u13c3\u13c5\u13af": 13605, "\u2581\u13e9\u13c6\u13b5\u13f0\u13a2\u13b6\u13af\u13cd\u13d7": 13606, "\u2581\u13ea\u13e5\u13b7\u13e5\u13cf": 13607, "\u2581\u13f1\u13e3\u13f0\u13b8\u13ce\u13cd\u13d7": 13608, "\u2581\u13ac\u13e9\u13c2\u13ef\u13a2": 13609, "\u2581\u13c1\u13e3\u13c1\u13b8\u13be": 13610, "\u2581\u13da\u13c5\u13c2\u13cd\u13d4\u13c1": 13611, "\u2581\u13e5\u13d5\u13e3\u13d3\u13c2\u13b8\u13e8": 13612, "\u2581\u13a0\u13be\u13b4\u13c2\u13d9": 13613, "\u2581\u13e3\u13c9\u13ea\u13b3\u13c5": 13614, "\u2581\u13e7\u13be\u13d5\u13f2\u13d7\u13f1": 13615, "\u2581\u13a0\u13a6\u13b5\u13b2": 13616, "\u2581\u13af\u13ef\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13ae\u13cd\u13d7": 13617, "\u2581\u13ac\u13c6\u13d5\u13ef\u13d9\u13d7": 13618, "\u2581\u13a1\u13cd\u13d7\u13c5\u13cf\u13d3\u13cd\u13d7": 13619, "\u2581\u13d5\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 13620, "\u2581\u13e5\u13e5\u13f2\u13a2\u13ce\u13b8": 13621, "\u2581\u13a0\u13a7\u13c1\u13b2": 13622, "\u2581\u13e6\u13e8\u13c3\u13db": 13623, "\u2581\u13a4\u13c3\u13af\u13f3\u13d4\u13c5": 13624, "\u2581\u13e4\u13c9\u13bb": 13625, "\u2581\u13a4\u13ea\u13b5\u13af\u13cd\u13ac": 13626, "\u2581\u13d1\u13d9\u13d3\u13c6\u13db": 13627, "\u2581\u13d7\u13be\u13d3\u13c5\u13eb\u13cd\u13a9": 13628, "\u13a9\u13a6\u13b7\u13f4": 13629, "\u2581\u13a4\u13c4\u13aa\u13a9": 13630, "\u2581\u13da\u13e9\u13c7\u13c5\u13d4\u13c5": 13631, "\u13d3\u13c1\u13d6\u13d7": 13632, "\u2581\u13a3\u13a9\u13e9\u13cf": 13633, "\u2581\u13c2\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13be": 13634, "\u2581\u13da\u13c2\u13be\u13cc\u13a5": 13635, "\u2581\u13f1\u13e3\u13e4\u13b8\u13ae\u13cd\u13d7": 13636, "\u2581\u13aa\u13af\u13f3\u13cd\u13a9": 13637, "\u2581\u13d3\u13a8\u13e5\u13c4\u13aa\u13eb\u13d2\u13a9": 13638, "\u2581\u13a6\u13d9\u13a9\u13ef\u13cd\u13ac": 13639, "\u2581\u13d9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 13640, "\u2581\u13d9\u13d3\u13aa\u13ea\u13b3\u13c2": 13641, "\u2581\u13d7\u13a6\u13c3\u13e3\u13e2": 13642, "\u2581\u13ad\u13d3\u13e0": 13643, "\u2581\u13f1\u13c2\u13ac\u13c1\u13b0\u13a2": 13644, "\u2581\u13a3\u13a9\u13cc\u13d9\u13f4": 13645, "\u13ac\u13ef\u13a7\u13c1\u13b5": 13646, "\u2581\u13a2\u13cd\u13d3\u13b5\u13a2": 13647, "\u2581\u13ac\u13c9\u13ce\u13ae\u13cd\u13d7": 13648, "\u2581\u13da\u13c5\u13eb\u13cd\u13d4\u13c1": 13649, "\u13a9\u13f2\u13b1\u13ce\u13b5": 13650, "\u2581\u13d5\u13e3\u13eb\u13d2\u13a2": 13651, "\u2581\u13a4\u13be\u13db\u13c2\u13db": 13652, "\u13aa\u13a2\u13f3\u13c1\u13a2": 13653, "\u2581\u13a3\u13a6\u13b5\u13cd\u13d3\u13f4\u13c5": 13654, "\u2581\u13a0\u13c6\u13d3\u13d9\u13b5\u13cd\u13d7": 13655, "\u2581\u13a4\u13ad\u13f4\u13cd\u13d7": 13656, "\u2581\u13c2\u13e3\u13db\u13a9\u13cd\u13ac\u13be": 13657, "\u2581\u13ad\u13d7\u13db\u13b2\u13ad": 13658, "\u2581\u13bb\u13cf\u13f1": 13659, "\u2581\u13da\u13c2\u13ef\u13d9\u13b8\u13a9": 13660, "\u2581\u13d9\u13a9\u13d4\u13d5\u13a9": 13661, "\u2581\u13e5\u13eb\u13a6\u13b6\u13af": 13662, "\u13a6\u13c4\u13aa\u13e8": 13663, "\u13be\u13d8\u13c3\u13ae\u13b8\u13ad": 13664, "\u2581\u13a4\u13db\u13af\u13cd\u13d4\u13c5": 13665, "\u13da\u13eb\u13cd\u13d4": 13666, "\u2581\u13a4\u13d3\u13be\u13db\u13a2": 13667, "\u2581\u13cd\u13a9\u13cd\u13a6\u13c5\u13e4\u13d7": 13668, "\u2581\u13da\u13d3\u13c5\u13b5\u13f0\u13a5": 13669, "\u2581\u13ed\u13c2\u13cf\u13c1\u13b4": 13670, "\u2581\u13f1\u13d7\u13e7\u13aa\u13d7\u13ad": 13671, "\u13b5\u13c3\u13af\u13f4": 13672, "\u2581\u13c4\u13b5\u13cd\u13d7\u13cd\u13a8\u13a2": 13673, "\u2581\u13f1\u13c4\u13db\u13c1": 13674, "\u13c2\u13c6\u13c5\u13a5\u13a6": 13675, "\u2581\u13d9\u13a6\u13da\u13d3": 13676, "\u13a6\u13b5\u13e5\u13d9\u13c1\u13b8\u13a9": 13677, "\u2581\u13a4\u13cd\u13da\u13d4\u13c1\u13a2": 13678, "\u2581\u13a8\u13e3\u13cc\u13b3\u13d9": 13679, "\u2581\u13a0\u13be\u13c1\u13cd\u13a8\u13cd\u13ac": 13680, "\u2581\u13a0\u13df\u13b6\u13db": 13681, "\u13a7\u13b5\u13a9": 13682, "\u2581\u13a4\u13be\u13d8\u13f0\u13b8\u13af": 13683, "\u2581\u13a6\u13e5\u13f0\u13f2": 13684, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13d4\u13c1": 13685, "\u2581\u13d7\u13e5\u13a6\u13b5\u13cd\u13d3\u13d5\u13d7": 13686, "\u2581\u13e6\u13a9\u13b7\u13e5\u13b8": 13687, "\u2581\u13a0\u13c6\u13b5\u13cd\u13d3\u13c1\u13b8": 13688, "\u13a7\u13d4\u13be\u13eb\u13cd": 13689, "\u2581\u13a0\u13c9\u13ea\u13b6\u13d7": 13690, "\u2581\u13e7\u13b5\u13cd\u13c6\u13b5": 13691, "\u13ec\u13da\u13a2\u13cd\u13d5": 13692, "\u13da\u13c2\u13d0\u13e4": 13693, "\u13be\u13af\u13cd\u13d7\u13ad": 13694, "\u13b5\u13cd\u13da\u13d4\u13c5": 13695, "\u2581\u13a0\u13a9\u13a6\u13d8\u13d7\u13cd": 13696, "\u2581\u13c4\u13be\u13b5\u13cf\u13be\u13af\u13cd\u13db\u13be": 13697, "\u2581\u13c4\u13be\u13d3\u13c4\u13f4\u13db\u13be": 13698, "\u2581\u13da\u13b5\u13c2\u13c6\u13c5\u13c1\u13b8\u13a9": 13699, "\u2581\u13e6\u13cd\u13d3\u13d1": 13700, "\u2581\u13e7\u13c4\u13aa\u13d3\u13c1": 13701, "\u2581\u13c4\u13be\u13dc\u13cf\u13db\u13a1\u13b2\u13be": 13702, "\u2581\u13a2\u13a6\u13d5\u13d7\u13f1": 13703, "\u2581\u13d5\u13e3\u13b3\u13cd\u13ac": 13704, "\u2581\u13ac\u13e9\u13d3\u13d9\u13b5\u13cd\u13d7": 13705, "\u2581\u13d7\u13ac\u13e9\u13b6\u13d2\u13af": 13706, "\u2581\u13eb\u13d3\u13d7\u13c5\u13d7": 13707, "\u2581\u13a4\u13be\u13aa\u13b2\u13cd\u13d9\u13d7\u13f1": 13708, "\u2581\u13e4\u13e3\u13d8\u13c1\u13d2\u13ad": 13709, "\u13cd\u13a9\u13be\u13db\u13c2\u13cf": 13710, "\u2581\u13a2\u13a9\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7": 13711, "\u2581\u13ed\u13a7\u13d4\u13c1\u13a2": 13712, "\u2581\u13d7\u13be\u13d3\u13cd\u13a6\u13a9": 13713, "\u2581\u13ef\u13c2\u13ef\u13a0": 13714, "\u2581\u13c2\u13e5\u13d4\u13f2\u13af\u13b2": 13715, "\u2581\u13a0\u13be\u13e8\u13cf\u13f0\u13cd\u13ac": 13716, "\u2581\u13ea\u13e3\u13da\u13a6": 13717, "\u2581\u13a0\u13a6\u13d3\u13d3\u13b4\u13d4\u13c5\u13af": 13718, "\u2581\u13a4\u13c5\u13a8\u13eb\u13d2": 13719, "\u2581\u13a4\u13ac\u13eb\u13e9": 13720, "\u2581\u13d5\u13a9\u13be\u13d3\u13c1\u13e4\u13b8": 13721, "\u2581\u13a4\u13da\u13d3\u13b8\u13db": 13722, "\u2581\u13eb\u13c4\u13ea\u13ce\u13b8\u13a9": 13723, "\u2581\u13f1\u13da\u13be\u13dd\u13a0": 13724, "\u2581\u13a0\u13e5\u13ac\u13cd\u13aa\u13b8\u13c1": 13725, "\u2581\u13d3\u13e8\u13c2\u13b5": 13726, "\u2581\u13a4\u13be\u13d3\u13d3\u13b4\u13d3\u13c1": 13727, "\u2581\u13d7\u13a9\u13cf\u13b3\u13db\u13d9\u13d7": 13728, "\u2581\u13d7\u13ac\u13e9\u13c2\u13f2\u13b1\u13af\u13ce\u13b8\u13af": 13729, "\u2581\u13ef\u13c6\u13b4\u13eb\u13cd\u13d4\u13be": 13730, "\u2581\u13e7\u13c1\u13ab": 13731, "\u2581\u13e7\u13c2\u13b5\u13b6\u13b2\u13cd\u13a6": 13732, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d3\u13c1\u13b8": 13733, "\u2581\u13a1\u13e5\u13a7\u13c1\u13d7\u13f1": 13734, "\u2581\u13a4\u13a7\u13d9\u13cd\u13d4\u13c1\u13a2": 13735, "\u2581\u13d3\u13c3\u13e2\u13cd\u13ac\u13a2": 13736, "\u2581\u13e5\u13d3\u13c2\u13f0\u13b2\u13a9": 13737, "\u13a6\u13b5\u13f3\u13f0\u13c3": 13738, "\u13af\u13b7\u13e5\u13cc": 13739, "\u13d3\u13cd\u13d5\u13d3\u13b5\u13f4\u13cd\u13aa": 13740, "\u13ac\u13e3\u13b6\u13d7": 13741, "\u2581\u13d5\u13a6\u13ef\u13a9\u13cd\u13a8": 13742, "\u2581\u13e5\u13a6\u13a7\u13ad": 13743, "\u2581\u13e7\u13be\u13d9\u13b3\u13c5\u13cd\u13d7": 13744, "\u2581\u13ef\u13a6\u13cd\u13ac\u13be": 13745, "\u13f2\u13a2\u13ce\u13ae\u13cd\u13d7": 13746, "\u2581\u13c3\u13e4\u13b2\u13be": 13747, "\u2581\u13d7\u13a8\u13e5\u13c5\u13ec\u13d7\u13f1": 13748, "\u2581\u13a4\u13ec\u13ea\u13b6\u13d7": 13749, "\u2581\u13a1\u13e3\u13db\u13db\u13b2\u13a6": 13750, "\u2581\u13a3\u13a6\u13c5\u13e2": 13751, "\u2581\u13a8\u13a6\u13ce\u13cd\u13d7\u13f1": 13752, "\u2581\u13a8\u13e5\u13d4\u13f2\u13ce\u13d7": 13753, "\u13b6\u13a3\u13ce": 13754, "\u2581\u13f1\u13d3\u13ac\u13ef": 13755, "\u2581\u13a6\u13e5\u13ec\u13c1\u13d7\u13cd\u13ac": 13756, "\u2581\u13ed\u13be\u13a6\u13d6": 13757, "\u13d1\u13b5\u13aa\u13e5": 13758, "\u13de\u13a6": 13759, "\u2581\u13a1\u13c2\u13a4": 13760, "\u2581\u13c1\u13ea\u13d2": 13761, "\u2581\u13d5\u13e5\u13cd\u13c6\u13c2\u13aa\u13d9": 13762, "\u2581\u13ef\u13d5\u13b0\u13cd\u13a6": 13763, "\u2581\u13a4\u13be\u13d3\u13a9\u13b8\u13d7": 13764, "\u2581\u13ac\u13a9\u13b7\u13e4\u13b0\u13a2": 13765, "\u2581\u13ef\u13d3\u13db\u13cd\u13aa\u13a2": 13766, "\u13cd\u13d7\u13f0\u13d7\u13cd\u13a8\u13cd\u13d7": 13767, "\u2581\u13c2\u13d3\u13db\u13d3\u13cd\u13d3\u13c1\u13b2\u13be": 13768, "\u2581\u13c2\u13e3\u13db\u13d3\u13cd\u13d3\u13c1\u13b2\u13be": 13769, "\u13d3\u13e9\u13d7\u13cd\u13d9": 13770, "\u2581\u13be\u13cb\u13c2\u13cf": 13771, "\u2581\u13db\u13be\u13db\u13c1\u13b5": 13772, "\u2581\u13eb\u13ac\u13e9\u13db\u13c5\u13a9": 13773, "\u2581\u13ac\u13c6\u13e1\u13d7\u13cd\u13a9": 13774, "\u2581\u13a5\u13c6\u13d3\u13c5\u13d6": 13775, "\u2581\u13c2\u13da\u13ea\u13ad\u13b8": 13776, "\u2581\u13a0\u13d2\u13e8": 13777, "\u13e3\u13b5\u13cd\u13d3": 13778, "\u2581\u13c2\u13d3\u13db\u13c1\u13b0": 13779, "\u2581\u13af\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 13780, "\u2581\u13f1\u13be\u13c6\u13b5\u13cd\u13d4\u13c1": 13781, "\u13be\u13b5\u13db\u13af": 13782, "\u2581\u13a4\u13ea\u13f2\u13b2\u13cd\u13ac": 13783, "\u2581\u13eb\u13a8\u13d3": 13784, "\u13af\u13aa\u13e9\u13d8\u13ad\u13e7": 13785, "\u2581\u13d4\u13b7\u13a9\u13cd\u13a9\u13ac\u13be\u13ec\u13d9\u13d7\u13f1": 13786, "\u2581\u13a1\u13d7\u13ef\u13a5\u13a2": 13787, "\u2581\u13e9\u13c2\u13cc\u13d9\u13ef": 13788, "\u2581\u13d3\u13a9\u13c5\u13c5\u13a2": 13789, "\u2581\u13ed\u13be\u13d8\u13c5\u13cd\u13d4\u13c5\u13a9": 13790, "\u2581\u13a0\u13a9\u13b7\u13e4\u13ae\u13cd\u13d7": 13791, "\u2581\u13db\u13c2\u13c1\u13e5": 13792, "\u2581\u13e4\u13a6\u13e1": 13793, "\u13d3\u13c5\u13d5\u13d9\u13d7": 13794, "\u2581\u13c3\u13e5\u13ea\u13ce\u13b8\u13a9": 13795, "\u2581\u13d5\u13a6\u13ec\u13cd\u13ac\u13a2": 13796, "\u2581\u13a4\u13cd\u13c6\u13b3\u13af\u13f3": 13797, "\u2581\u13a5\u13e3\u13c2\u13a9": 13798, "\u2581\u13a4\u13c3\u13b5\u13e8": 13799, "\u2581\u13c2\u13a6\u13db\u13bf\u13d5\u13ac\u13a2": 13800, "\u2581\u13a4\u13e9\u13dd\u13a5": 13801, "\u2581\u13a4\u13ec\u13e2\u13af\u13d0\u13d7": 13802, "\u2581\u13eb\u13ac\u13ef\u13c5\u13b2\u13ad": 13803, "\u2581\u13eb\u13c2\u13da\u13ea\u13ce\u13b4\u13a2": 13804, "\u2581\u13c2\u13e5\u13ef\u13db\u13c1\u13ad": 13805, "\u2581\u13d7\u13a8\u13b5\u13cd\u13a9": 13806, "\u2581\u13d7\u13c2\u13c5\u13ec": 13807, "\u2581\u13a2\u13e7\u13be\u13d3": 13808, "\u2581\u13da\u13be\u13df\u13b8": 13809, "\u2581\u13cc\u13a9\u13ef": 13810, "\u2581\u13d3\u13e5\u13b8\u13c9\u13d4\u13c2": 13811, "\u2581\u13a1\u13ad\u13a9\u13b3\u13e9": 13812, "ate": 13813, "\u2581\u13d3\u13b6\u13c1": 13814, "\u2581\u13d3\u13c2\u13b3\u13cd\u13d3\u13b8": 13815, "\u2581\u13d3\u13cb\u13d4\u13c5": 13816, "\u2581\u13e7\u13ec\u13aa\u13d9\u13d7": 13817, "\u2581\u13d1\u13b9\u13c2": 13818, "\u2581\u13d5\u13e5\u13be\u13f0": 13819, "\u2581\u13f2\u13a9\u13cc\u13c2": 13820, "\u2581\u13e5\u13ac\u13c9\u13af\u13f3\u13b2\u13cd": 13821, "\u2581\u13a4\u13d7\u13e9\u13ce\u13a2": 13822, "\u2581\u13a2\u13f0\u13ac\u13c1\u13d7": 13823, "\u2581\u13ed\u13be\u13e0\u13e8": 13824, "\u2581\u13f1\u13da\u13f2\u13b1\u13af": 13825, "\u2581\u13e9\u13d9\u13d1\u13b5": 13826, "\u13d4\u13b3\u13ec\u13cd\u13a6": 13827, "\u2581\u13c3\u13e8\u13c1\u13b0": 13828, "\u13be\u13e3\u13ea\u13d0\u13b8\u13cd\u13d7\u13cd\u13ac": 13829, "\u2581\u13d7\u13d3\u13e0\u13cd\u13d7": 13830, "\u2581\u13f1\u13e3\u13db\u13db\u13b2\u13cd\u13a8\u13cd\u13d7": 13831, "\u2581\u13a0\u13e5\u13da\u13a8": 13832, "\u13be\u13b4\u13c5\u13c1\u13a2": 13833, "\u2581\u13eb\u13ac\u13f2\u13ea\u13b3\u13c1": 13834, "\u13f0\u13f2\u13c2": 13835, "\u2581\u13e3\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a6": 13836, "\u2581\u13eb\u13cd\u13d7\u13b7\u13e8\u13ad": 13837, "\u13d3\u13ec\u13a2\u13a1": 13838, "\u2581\u13cd\u13c9\u13d1\u13b5": 13839, "\u2581\u13ed\u13be\u13e3\u13c5": 13840, "\u2581\u13d3\u13e5\u13c5\u13cf": 13841, "\u2581\u13f1\u13a6\u13c5\u13a5\u13cf": 13842, "\u2581\u13d5\u13e5\u13a0\u13c1": 13843, "\u2581\u13af\u13cd\u13d3\u13e9\u13d5\u13a8\u13cd\u13d7": 13844, "\u2581\u13f1\u13ac\u13c9\u13ce": 13845, "\u2581\u13e5\u13c2\u13ac\u13c2\u13cf": 13846, "\u2581\u13a0\u13d3\u13be\u13e9\u13cd": 13847, "\u13e5\u13e3\u13c1\u13b8\u13d3": 13848, "\u2581\u13d3\u13c4\u13aa\u13d7\u13cd\u13a8\u13cd\u13d7": 13849, "\u13cb\u13c1\u13b5": 13850, "\u2581\u13d7\u13a6\u13c1\u13a6\u13b8": 13851, "\u13db\u13af\u13ce\u13ae\u13cd\u13d7": 13852, "\u2581\u13e5\u13c2\u13da\u13cd": 13853, "\u13a6\u13c1\u13b3\u13d7\u13cd\u13d7\u13f1": 13854, "\u2581\u13a4\u13c4\u13f4\u13d5": 13855, "\u2581\u13a1\u13d7\u13be\u13c4\u13aa\u13eb\u13ce": 13856, "\u2581\u13d3\u13be\u13d7\u13d4\u13af": 13857, "\u2581\u13ac\u13e9\u13c2\u13d0\u13e2\u13d7": 13858, "\u2581\u13d3\u13f3\u13b8\u13c9\u13d4\u13c2": 13859, "\u13a1\u13e3\u13df\u13b6\u13a1": 13860, "\u2581\u13e7\u13be\u13d3\u13b4\u13db": 13861, "\u13e4\u13b5\u13ce\u13d7": 13862, "\u13f3\u13be\u13cc\u13be\u13a9\u13d2": 13863, "\u2581\u13f1\u13d7\u13e5\u13a8\u13f3\u13ad": 13864, "\u2581\u13f1\u13e3\u13da\u13b5\u13cd\u13a8\u13a2": 13865, "\u2581\u13a3\u13a6\u13da\u13d3\u13d5\u13eb\u13d2": 13866, "\u2581\u13a4\u13b6\u13a9\u13b3": 13867, "\u2581\u13c2\u13ac\u13f4\u13c1\u13b8": 13868, "\u13b5\u13cd\u13a6\u13cd\u13d9\u13d9": 13869, "\u2581\u13a4\u13c2\u13bf\u13b8\u13af": 13870, "\u2581\u13d7\u13a6\u13d9\u13b3\u13db\u13d7": 13871, "\u2581\u13a0\u13c2\u13b5\u13c7": 13872, "\u13a6\u13c6\u13b8\u13c2": 13873, "\u2581\u13f1\u13e3\u13b5\u13cd\u13a9": 13874, "\u2581\u13a4\u13be\u13b4\u13be\u13b8\u13af": 13875, "\u2581\u13f3\u13ec\u13ce\u13b4\u13a2": 13876, "\u13e6\u13a3\u13cc": 13877, "\u2581\u13ac\u13c4\u13ef\u13a9\u13cd": 13878, "\u2581\u13d9\u13db\u13e1\u13d4\u13c2": 13879, "\u13b0\u13d2\u13cd\u13a6": 13880, "\u2581\u13a4\u13ea\u13f2\u13c5": 13881, "\u2581\u13d3\u13e5\u13ef\u13ec\u13a2": 13882, "\u2581\u13da\u13be\u13e0\u13af\u13cd\u13d4\u13c1\u13a2": 13883, "\u2581\u13da\u13c3\u13a5\u13a9": 13884, "\u2581\u13a5\u13ac\u13ad\u13c5": 13885, "\u2581\u13a6\u13c5\u13c6\u13b6\u13a5\u13af": 13886, "\u2581\u13ac\u13e9\u13c2\u13cc\u13c1\u13a2": 13887, "\u13d3\u13d8\u13cd\u13d7": 13888, "\u13e0\u13a3\u13d2": 13889, "\u2581\u13a2\u13e5\u13f0\u13e3\u13cd": 13890, "\u2581\u13c2\u13da\u13ea\u13ce\u13b5": 13891, "\u2581\u13d3\u13c2\u13a9\u13cd\u13a8\u13a2": 13892, "\u2581\u13eb\u13e3\u13b7\u13af\u13cd\u13d7": 13893, "\u2581\u13a2\u13cd\u13d3\u13c1\u13b3\u13c5\u13af": 13894, "\u2581\u13d7\u13be\u13d3\u13c2\u13b8\u13a9": 13895, "\u13d5\u13e5\u13aa\u13a5\u13a9": 13896, "\u13d3\u13c1\u13c4\u13b8": 13897, "\u2581\u13a4\u13e3\u13c5\u13d5\u13a2": 13898, "\u13b5\u13a6\u13f2\u13d9\u13d7": 13899, "\u2581\u13a6\u13d9\u13b4\u13a3\u13af": 13900, "\u2581\u13a6\u13c3\u13af\u13b5\u13d3\u13cd\u13d7": 13901, "\u2581\u13a6\u13b8\u13aa\u13ac": 13902, "\u2581\u13d3\u13e5\u13cc\u13b3\u13d3\u13c2": 13903, "\u2581\u13a4\u13c3\u13d2\u13d7": 13904, "\u2581\u13af\u13a7\u13c1\u13a6": 13905, "\u13b5\u13ae\u13b5\u13cd\u13db": 13906, "\u2581\u13c2\u13a8\u13e5\u13ea\u13ce\u13ae\u13cd\u13d7": 13907, "\u2581\u13a3\u13a6\u13d9\u13b4\u13b0\u13d2": 13908, "\u13e3\u13f0\u13b8\u13ae": 13909, "\u2581\u13da\u13f2\u13e8\u13a9": 13910, "\u2581\u13f1\u13d7\u13e3\u13e0\u13f1": 13911, "\u13c3\u13cd\u13a9\u13cd\u13d7\u13f1": 13912, "\u2581\u13a2\u13ef\u13c2\u13a2\u13db\u13ad": 13913, "\u2581\u13d3\u13c2\u13c1\u13b5\u13ac\u13a2": 13914, "\u2581\u13a2\u13a6\u13da\u13d3\u13b4\u13cd\u13d9\u13d7\u13f1": 13915, "\u2581\u13a2\u13e8\u13c1\u13e4\u13b8\u13a9": 13916, "\u2581\u13a4\u13aa\u13d0\u13c5": 13917, "\u2581\u13f1\u13d3\u13c2\u13ec\u13c2\u13ad": 13918, "\u13d3\u13d3\u13b4\u13d7\u13cd\u13a8\u13cd\u13d7": 13919, "\u2581\u13af\u13ef\u13d9\u13b5\u13a8\u13cd\u13d7": 13920, "\u2581\u13ed\u13be\u13a6\u13d4\u13b2\u13cd": 13921, "\u2581\u13a4\u13d3\u13e0\u13cd\u13d4\u13c5\u13a9": 13922, "\u2581\u13d3\u13a6\u13be\u13c4\u13aa\u13e5": 13923, "\u13aa\u13ac\u13c2\u13cd\u13d3": 13924, "\u2581\u13e7\u13be\u13d3\u13a9\u13ef\u13cd\u13d7": 13925, "\u13da\u13d8\u13bf\u13eb\u13db\u13ae\u13a2": 13926, "\u2581\u13a0\u13be\u13b5\u13aa\u13b2\u13cd": 13927, "\u2581\u13a3\u13a9\u13cd\u13d5\u13b5\u13cd\u13ac\u13a2": 13928, "\u2581\u13e7\u13c3\u13e2\u13be\u13c1\u13d7": 13929, "\u2581\u13b1\u13db\u13c1\u13a2": 13930, "\u2581\u13a4\u13be\u13cd\u13d3\u13b8": 13931, "\u2581\u13d5\u13ad\u13d8\u13c3\u13b8": 13932, "\u2581\u13ef\u13c6\u13da\u13b3": 13933, "\u13a6\u13d8\u13b8\u13db": 13934, "\u2581\u13d5\u13d3\u13c1\u13b6\u13db\u13a2": 13935, "\u2581\u13a4\u13be\u13d3\u13c5\u13d3\u13db\u13a9": 13936, "\u2581\u13a6\u13f0\u13e5\u13cd\u13d5\u13b8\u13d7": 13937, "\u2581\u13d2\u13b6\u13af": 13938, "\u13a9\u13a6\u13d4\u13ae\u13a2": 13939, "\u2581\u13a4\u13a7\u13cc": 13940, "\u2581\u13d3\u13a6\u13c4\u13aa\u13e5": 13941, "\u2581\u13d3\u13c2\u13be\u13c6": 13942, "\u2581\u13d7\u13c2\u13cd\u13c6\u13c2\u13aa\u13d7\u13cd\u13a9": 13943, "\u13a9\u13a6\u13f4\u13b3": 13944, "\u13e5\u13ef\u13b4\u13c1\u13d7": 13945, "\u2581\u13e4\u13e6\u13ce\u13ad": 13946, "\u2581\u13d9\u13e7\u13c2\u13c5": 13947, "\u13d9\u13d3\u13e3\u13d8\u13be\u13eb\u13db": 13948, "\u2581\u13d3\u13e5\u13f4\u13c2\u13b5": 13949, "\u2581\u13d5\u13e5\u13c1\u13e4\u13ad": 13950, "\u2581\u13d5\u13e5\u13ef\u13a6\u13bf\u13c5": 13951, "\u2581\u13d3\u13a6\u13c5\u13cf": 13952, "\u2581\u13d3\u13f3\u13c4\u13aa\u13e8\u13a9": 13953, "\u2581\u13da\u13a7\u13bf\u13c2\u13d9\u13b8": 13954, "\u2581\u13da\u13df\u13f0\u13b5\u13d9\u13b8": 13955, "\u2581\u13f3\u13be\u13b5\u13cd\u13d3\u13f4": 13956, "\u2581\u13a4\u13cd\u13d9\u13f0": 13957, "\u2581\u13e4\u13e3\u13df\u13f4\u13cf": 13958, "\u2581\u13a4\u13c2\u13dd\u13d7\u13e4": 13959, "\u2581\u13a4\u13c2\u13c2\u13c6\u13d8\u13cd\u13d7": 13960, "\u2581\u13af\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13cf": 13961, "\u2581\u13c2\u13da\u13c5\u13c1\u13b8\u13a9": 13962, "\u2581\u13a4\u13c2\u13be\u13c4\u13aa\u13e4\u13b8": 13963, "\u2581\u13eb\u13e3\u13b7\u13e8": 13964, "\u2581\u13a4\u13b5\u13cd\u13a9\u13f0": 13965, "\u2581\u13a0\u13a6\u13b4\u13d7": 13966, "\u2581\u13a1\u13e5\u13ce\u13aa\u13a9\u13d2": 13967, "\u2581\u13a6\u13c3\u13b8\u13a5\u13cd\u13a8": 13968, "\u2581\u13da\u13be\u13cf\u13d4\u13d5\u13a2": 13969, "\u2581\u13c4\u13b5\u13cd\u13d4\u13cf": 13970, "\u13b1\u13ce\u13a2": 13971, "\u2581\u13a2\u13e5\u13b5\u13d3\u13cd\u13d7\u13ad": 13972, "\u2581\u13a0\u13c7\u13c5\u13d3": 13973, "\u2581\u13e7\u13be\u13d9\u13a2\u13db": 13974, "\u2581\u13d5\u13e5\u13a6\u13d8\u13b8": 13975, "\u13c1\u13c9\u13cf": 13976, "\u2581\u13cd\u13a9\u13b7\u13e5": 13977, "\u2581\u13a2\u13af\u13a6\u13d4\u13ad": 13978, "\u2581\u13a0\u13c5\u13d7\u13cd\u13a9": 13979, "\u2581\u13a0\u13d9\u13c2\u13cd\u13ac": 13980, "\u2581\u13a1\u13d3\u13e4\u13b5\u13a6": 13981, "\u2581\u13ac\u13e9\u13c2\u13c4\u13aa": 13982, "\u2581\u13ad\u13e3\u13ea\u13d0\u13b8\u13cd\u13d3": 13983, "\u2581\u13f1\u13e5\u13cf\u13b3\u13db\u13a5\u13a6": 13984, "\u2581\u13d5\u13a6\u13be\u13e4\u13cd": 13985, "\u13ef\u13d3\u13c2\u13b8\u13e4": 13986, "\u2581\u13a4\u13f4\u13b4\u13c3": 13987, "\u2581\u13a0\u13e5\u13d5\u13b8\u13a9": 13988, "\u13d3\u13b8\u13cd\u13db\u13a2": 13989, "\u2581\u13da\u13a9\u13e8": 13990, "\u13e2\u13c6\u13cd\u13d9\u13d7\u13cd\u13a8\u13cd\u13d7": 13991, "\u2581\u13d7\u13ac\u13e9\u13f2\u13af\u13ce\u13b8\u13af": 13992, "\u2581\u13a2\u13e5\u13cd\u13d3\u13e9\u13d5\u13a8\u13cd\u13d7": 13993, "\u2581\u13a2\u13e8\u13be\u13c4\u13eb\u13ce\u13ad": 13994, "\u2581\u13ac\u13ef\u13a6\u13d9\u13cd": 13995, "\u2581\u13ae\u13cf\u13b6\u13c5": 13996, "\u2581\u13da\u13be\u13d3\u13c5\u13c5\u13a9": 13997, "\u2581\u13a0\u13df\u13f0\u13b5": 13998, "\u2581\u13a4\u13c2\u13cd\u13d5\u13f2\u13c5": 13999, "\u2581\u13d3\u13be\u13d7\u13d4\u13cd\u13ac": 14000, "\u2581\u13d7\u13d3\u13c2\u13c3": 14001, "\u2581\u13db\u13b5\u13cd\u13c6\u13d7": 14002, "\u2581\u13a2\u13e3\u13d9\u13a9\u13ef\u13cd": 14003, "\u2581\u13e6\u13e4\u13d9\u13ad": 14004, "\u13e5\u13b6\u13c4\u13a1\u13b8": 14005, "\u2581\u13a4\u13be\u13e8\u13d3": 14006, "\u2581\u13a2\u13cd\u13d3\u13a2\u13d2\u13a2": 14007, "\u2581\u13a3\u13cd\u13d3\u13df\u13c3\u13ae\u13cd\u13ac": 14008, "\u2581\u13aa\u13b9": 14009, "\u2581\u13d5\u13e5\u13be\u13eb\u13cd": 14010, "\u2581\u13d7\u13a8\u13a6\u13ec\u13cd\u13d7\u13f1": 14011, "\u2581\u13a2\u13e3\u13d2\u13c2\u13b8\u13a9": 14012, "\u13c3\u13cf\u13cc\u13c1": 14013, "\u2581\u13a0\u13ab\u13f4\u13cd": 14014, "\u2581\u13f1\u13be\u13ac\u13c1\u13b8": 14015, "\u2581\u13a4\u13be\u13d3\u13e1\u13a8\u13a2": 14016, "\u2581\u13c4\u13b6\u13ce\u13a2": 14017, "\u2581\u13f1\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13ae\u13a2": 14018, "\u2581\u13a5\u13d3\u13d8": 14019, "\u2581\u13a4\u13eb\u13d2\u13c1\u13a2": 14020, "\u2581\u13d5\u13e5\u13c2\u13f4\u13b2": 14021, "\u2581\u13a2\u13ac\u13e9\u13f0\u13b8\u13ad": 14022, "\u2581\u13a1\u13e5\u13dd\u13c5\u13af": 14023, "\u13a6\u13b5\u13aa\u13d4\u13c5\u13af": 14024, "\u13f4\u13a1\u13b4": 14025, "\u2581\u13d7\u13cd\u13a9\u13be\u13dd\u13a2": 14026, "\u2581\u13f4\u13ac\u13f4\u13ad": 14027, "\u2581\u13c4\u13ea\u13ad\u13b4": 14028, "\u2581\u13d5\u13ad\u13d4\u13c5\u13ad": 14029, "\u13a9\u13f2\u13b1\u13d2\u13a9": 14030, "\u2581\u13a4\u13d3\u13c4\u13b8": 14031, "\u13a7\u13b5\u13a2\u13cd\u13d4\u13c2": 14032, "\u2581\u13a8\u13e5\u13f4\u13d4\u13c2\u13b8": 14033, "\u2581\u13a3\u13e5\u13cd\u13d5\u13b5\u13cd\u13a9": 14034, "\u2581\u13a1\u13bb\u13c2\u13d3\u13c8": 14035, "\u13e3\u13c5\u13db\u13a9": 14036, "\u2581\u13a4\u13f0\u13b8\u13d5\u13cd\u13d7": 14037, "\u2581\u13a2\u13e5\u13a9\u13d2\u13ad": 14038, "\u2581\u13a4\u13be\u13d5\u13b0\u13af\u13cd\u13d7\u13cd\u13a9": 14039, "\u2581\u13a0\u13c9\u13e0": 14040, "\u2581\u13a4\u13db\u13c2\u13db": 14041, "\u2581\u13da\u13e9\u13d3\u13b7\u13ef\u13db": 14042, "\u2581\u13d7\u13e6\u13b8\u13d2\u13af": 14043, "\u2581\u13a2\u13e5\u13ef\u13a2": 14044, "\u2581\u13d7\u13d3\u13ea\u13cd": 14045, "\u2581\u13a2\u13e3\u13db\u13c5\u13a2\u13cd\u13d5\u13cd\u13d7": 14046, "\u2581\u13d3\u13c3\u13f1\u13c1": 14047, "\u2581\u13f1\u13cd\u13a9\u13a7\u13c1\u13b8": 14048, "\u2581\u13a2\u13e5\u13a6\u13db\u13c2": 14049, "\u2581\u13d5\u13a6\u13ce\u13af": 14050, "\u2581\u13a3\u13aa\u13ea": 14051, "\u2581\u13f4\u13d3\u13a8\u13cf": 14052, "\u2581\u13af\u13cd\u13da\u13b6\u13d4\u13c5": 14053, "\u2581\u13a0\u13c7\u13b3\u13d7\u13cd": 14054, "\u2581\u13a0\u13b5\u13cc\u13b3\u13db\u13a6": 14055, "\u2581\u13da\u13be\u13d3\u13c1\u13e4\u13b8": 14056, "\u2581\u13a0\u13e5\u13f4\u13a9\u13c5": 14057, "\u2581\u13a0\u13b5\u13d6\u13b8\u13b2\u13cd\u13ac": 14058, "\u2581\u13a2\u13e5\u13a9\u13b5\u13f2\u13e8": 14059, "\u2581\u13a0\u13c6\u13d3\u13c4": 14060, "\u2581\u13be\u13a6\u13d4\u13be\u13a5\u13be": 14061, "\u13be\u13a6\u13d9\u13cd\u13d4\u13c2": 14062, "\u2581\u13da\u13d6\u13b8": 14063, "\u2581\u13da\u13ac\u13e9\u13dd": 14064, "\u2581\u13da\u13b5\u13cd\u13e1\u13f0\u13a2": 14065, "\u2581\u13da\u13c2\u13b3\u13a6\u13b8": 14066, "\u13e8\u13f1\u13e2\u13c5": 14067, "\u2581\u13a2\u13e8\u13ec\u13c1\u13d7\u13ad": 14068, "\u2581\u13e5\u13a9\u13b5\u13b5": 14069, "\u2581\u13da\u13c2\u13a7\u13af\u13f0": 14070, "\u2581\u13a0\u13c6\u13d2\u13c2\u13a6": 14071, "\u2581\u13e5\u13e6\u13af\u13f3\u13c2": 14072, "\u2581\u13f1\u13e8\u13b8\u13c9\u13d7\u13ad": 14073, "\u2581\u13a2\u13ac\u13e9\u13cd\u13d7\u13f0\u13d4\u13c1": 14074, "\u13e5\u13ad\u13b7": 14075, "\u2581\u13d3\u13c2\u13b4\u13f4\u13cd": 14076, "\u2581\u13f3\u13c2\u13d7\u13cd\u13a9\u13cc": 14077, "\u2581\u13f1\u13a7\u13c1\u13c9\u13a6": 14078, "\u2581\u13e5\u13f2\u13a2\u13f3\u13b2\u13cd": 14079, "\u2581\u13cf\u13c5\u13d9": 14080, "\u13b5\u13cf\u13b2\u13cd\u13d3": 14081, "\u2581\u13a0\u13c6\u13e2\u13c8\u13cd\u13d9\u13d7": 14082, "\u2581\u13a4\u13d9\u13b3\u13d2": 14083, "\u2581\u13d7\u13e8\u13c1\u13b8\u13a9": 14084, "\u2581\u13a8\u13e5\u13c3\u13ae\u13cd\u13a8\u13cd\u13d7": 14085, "\u2581\u13d3\u13ad\u13ec\u13a2\u13ae": 14086, "\u2581\u13cd\u13d5\u13a9": 14087, "\u2581\u13d3\u13d8\u13c1\u13ae\u13a2": 14088, "\u2581\u13e3\u13b5\u13ec\u13a2\u13cd\u13d7": 14089, "\u2581\u13e3\u13db\u13d0\u13c5\u13af": 14090, "\u2581\u13a6\u13cc\u13be": 14091, "\u2581\u13eb\u13a6\u13b6\u13cd\u13a9": 14092, "\u2581\u13f2\u13e4\u13ad": 14093, "\u13a6\u13f0\u13e5\u13d0\u13e2\u13d4\u13c2": 14094, "\u2581\u13a0\u13c2\u13ab\u13cc": 14095, "\u2581\u13e5\u13d5\u13aa\u13ea\u13b3": 14096, "\u13cd\u13d9\u13f0\u13af": 14097, "\u2581\u13da\u13be\u13d7\u13cc\u13d3\u13d5": 14098, "\u2581\u13a2\u13e8\u13ef\u13d1\u13f0\u13db": 14099, "\u2581\u13a0\u13d3\u13be\u13eb\u13d7\u13cd\u13ac": 14100, "\u2581\u13a3\u13a6\u13c5\u13d7\u13f1": 14101, "\u2581\u13da\u13c1\u13a2\u13cd\u13d3\u13c1\u13b4": 14102, "\u2581\u13ac\u13e9\u13cd\u13d5\u13b8\u13af\u13d9\u13ae\u13a2": 14103, "\u2581\u13d3\u13d4\u13b4\u13a6": 14104, "\u2581\u13d7\u13e3\u13e0\u13f1\u13a6": 14105, "\u2581\u13a0\u13c1\u13e2\u13d7\u13cd": 14106, "\u2581\u13d3\u13e5\u13f4\u13b5": 14107, "\u2581\u13eb\u13a8\u13e3\u13f2\u13b5\u13a6": 14108, "\u2581\u13f1\u13e7\u13e2": 14109, "\u2581\u13a0\u13d3\u13e9\u13db\u13a1\u13af": 14110, "\u2581\u13da\u13be\u13d3\u13c5\u13c1\u13a2": 14111, "\u2581\u13f1\u13a6\u13be\u13c4\u13aa\u13a6": 14112, "\u2581\u13da\u13cd\u13a6\u13e4": 14113, "\u2581\u13f1\u13a6\u13b5\u13e5\u13d9\u13b2\u13cd\u13a6": 14114, "\u2581\u13f1\u13d9\u13ac\u13db\u13c2\u13cf": 14115, "\u2581\u13a4\u13be\u13b5\u13cd\u13d4\u13f4\u13c3\u13be": 14116, "\u13be\u13b4\u13c2\u13cd\u13ac": 14117, "\u13d5\u13d8\u13f1\u13b6\u13cd\u13ac": 14118, "ino": 14119, "\u13a4\u13c3\u13af\u13f3\u13d3\u13c1\u13af": 14120, "\u13a6\u13d4\u13be\u13eb\u13cd": 14121, "\u2581\u13ef\u13c5\u13d7\u13ad": 14122, "\u13c4\u13c1\u13a9\u13f4": 14123, "\u2581\u13ef\u13a9\u13e9\u13db\u13b2": 14124, "\u2581\u13a4\u13ec\u13e8\u13db\u13a2": 14125, "\u13c2\u13c5\u13cc\u13d3": 14126, "\u2581\u13e5\u13bf\u13db\u13c1\u13ad": 14127, "\u2581\u13f1\u13aa\u13ea\u13b3": 14128, "\u2581\u13a2\u13e4\u13b3\u13d7\u13d3\u13cd\u13d7\u13f1": 14129, "\u2581\u13a2\u13e8\u13c1\u13e4\u13b2": 14130, "\u2581\u13e7\u13be\u13c4\u13ec\u13a9\u13af": 14131, "\u2581\u13c2\u13d5\u13a4": 14132, "\u2581\u13ef\u13c6\u13d3\u13c5\u13d6\u13b3": 14133, "\u2581\u13a4\u13c2\u13b8\u13d0": 14134, "\u13a9\u13cd\u13d5\u13b5\u13cd\u13ac\u13a2": 14135, "\u2581\u13a2\u13e5\u13cd\u13db\u13d7\u13cd\u13a8\u13cd\u13d7": 14136, "\u2581\u13d3\u13e5\u13b6\u13a5": 14137, "\u2581\u13a0\u13c2\u13d1\u13b5\u13aa": 14138, "\u2581\u13e3\u13ce\u13b5\u13d4\u13c5": 14139, "\u2581\u13eb\u13a8\u13a5": 14140, "\u2581\u13a4\u13d7\u13b4\u13a6": 14141, "el": 14142, "\u2581\u13be\u13e5\u13f0\u13b2\u13be": 14143, "\u2581\u13da\u13ec\u13b5\u13e4\u13a2": 14144, "\u13ec\u13d0\u13c5": 14145, "\u2581\u13d5\u13e5\u13aa\u13be\u13db": 14146, "\u13e5\u13ad\u13d3\u13c5\u13db\u13b3": 14147, "\u2581\u13d9\u13d3\u13ab": 14148, "\u2581\u13a4\u13b5\u13cd\u13d3\u13db": 14149, "\u2581\u13a4\u13c1\u13e1\u13ac": 14150, "\u2581\u13a0\u13e7\u13cd\u13db": 14151, "\u13cd\u13a9\u13b3\u13d7\u13cd\u13d7": 14152, "\u2581\u13ab\u13e9\u13be\u13db": 14153, "\u2581\u13a8\u13e6\u13b5": 14154, "\u2581\u13ed\u13be\u13cc\u13be\u13a9\u13ce": 14155, "\u2581\u13c4\u13d3\u13c5\u13a6\u13b8\u13be": 14156, "\u2581\u13c4\u13b3\u13cf\u13c1": 14157, "\u2581\u13e3\u13be\u13c2\u13a9\u13cd\u13a8": 14158, "\u2581\u13da\u13d3\u13c5\u13a1\u13b4": 14159, "\u2581\u13d5\u13e5\u13f2\u13cd\u13d4\u13c5": 14160, "\u2581\u13e5\u13c2\u13cc\u13c4\u13a6": 14161, "\u2581\u13e5\u13d9\u13db\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b5": 14162, "\u2581\u13f1\u13a7\u13c3\u13ae": 14163, "\u2581\u13eb\u13d3\u13a7\u13c5": 14164, "\u2581\u13a4\u13be\u13d8\u13c3\u13ae\u13b4\u13a2": 14165, "\u2581\u13e5\u13a6\u13b5\u13a1\u13b5\u13a6": 14166, "\u2581\u13e5\u13a7\u13c3\u13ae\u13ad": 14167, "\u2581\u13e5\u13e5\u13a9\u13b5\u13f2\u13a6": 14168, "\u13d3\u13be\u13c5\u13a5\u13cd\u13a9": 14169, "\u2581\u13eb\u13d5\u13e3": 14170, "\u2581\u13da\u13b6\u13a8\u13d2": 14171, "\u13a6\u13b5\u13cd\u13d3\u13b4\u13a9": 14172, "\u2581\u13f4\u13d9\u13ad": 14173, "\u13d3\u13a6\u13b8\u13a5\u13a6": 14174, "\u13d3\u13c5\u13eb\u13cd\u13a8": 14175, "\u2581\u13d3\u13e5\u13cd\u13d5": 14176, "\u2581\u13f1\u13a6\u13c1\u13b8\u13d3": 14177, "\u2581\u13d7\u13ac\u13e9\u13a6\u13d8\u13d5\u13af": 14178, "\u13cd\u13da\u13e2\u13a9": 14179, "\u2581\u13d5\u13ac\u13a6\u13bf\u13e9\u13d7\u13d9\u13ae\u13cd\u13d7": 14180, "\u2581\u13c4\u13d2\u13b4\u13a2": 14181, "\u2581\u13ef\u13d5\u13b0\u13cd\u13a8\u13cd\u13d7": 14182, "\u13d3\u13a9\u13ef\u13cd\u13d7": 14183, "\u13d6\u13b3\u13db": 14184, "\u2581\u13a0\u13a9\u13f2\u13b8\u13a9": 14185, "\u2581\u13a4\u13be\u13d8\u13bf\u13eb\u13db\u13b2\u13a9": 14186, "\u2581\u13a4\u13d3\u13c5\u13d6\u13b5\u13d3\u13cd\u13d7": 14187, "\u2581\u13d9\u13d3\u13a6\u13b6\u13d0\u13c2": 14188, "\u2581\u13da\u13ec\u13ea\u13b3\u13c5": 14189, "\u2581\u13ed\u13c5\u13ab\u13db\u13a2": 14190, "\u2581\u13f1\u13c2\u13da\u13e9\u13c1": 14191, "\u2581\u13a2\u13e5\u13d9\u13b5\u13cd\u13d7\u13f1": 14192, "\u13c2\u13a6\u13d7": 14193, "\u2581\u13c2\u13e8\u13d2\u13be": 14194, "\u2581\u13a6\u13df\u13cf\u13cd\u13a8\u13cd\u13d7": 14195, "\u2581\u13da\u13bf\u13b7\u13d4": 14196, "\u2581\u13a3\u13e5\u13aa\u13a5": 14197, "\u2581\u13ef\u13d5\u13b2\u13a6": 14198, "\u2581\u13c4\u13cd\u13d7\u13d3\u13c1": 14199, "\u2581\u13d3\u13db\u13cd\u13ac\u13a2": 14200, "\u2581\u13da\u13b5\u13e6\u13d4\u13c1\u13a2": 14201, "\u13d1\u13b8\u13ae": 14202, "\u2581\u13a2\u13e5\u13cd\u13c6\u13c2\u13aa\u13cd\u13a6": 14203, "\u13db\u13a3\u13e5": 14204, "\u2581\u13f1\u13c2\u13e3\u13b5\u13cd\u13d4\u13c5": 14205, "\u2581\u13c2\u13ea\u13ad": 14206, "\u2581\u13d7\u13e5\u13cc\u13b3\u13db\u13a6": 14207, "\u2581\u13f1\u13e3\u13d9\u13b4\u13b0\u13cd": 14208, "\u2581\u13a8\u13c8\u13b5": 14209, "\u2581\u13eb\u13a6\u13e2\u13cd": 14210, "\u2581\u13a4\u13c1\u13cd\u13a8\u13ae": 14211, "\u13b6\u13c5\u13ae\u13cd\u13a9": 14212, "\u2581\u13d5\u13e4\u13b2\u13a2": 14213, "\u2581\u13eb\u13d7\u13a8\u13e5": 14214, "\u2581\u13a0\u13a9\u13eb\u13ef": 14215, "\u2581\u13ac\u13ec\u13af\u13f3\u13af": 14216, "\u2581\u13ed\u13d4\u13b7\u13aa": 14217, "\u2581\u13e3\u13b5\u13c2\u13ac\u13ac\u13a2": 14218, "\u13d3\u13ec\u13d4\u13c5\u13a9": 14219, "\u2581\u13e7\u13a7\u13bf\u13e9\u13d7\u13d3\u13cd\u13d7\u13f1": 14220, "\u2581\u13e7\u13d5\u13d8\u13f1\u13b6\u13db": 14221, "\u2581\u13a6\u13cc\u13d9\u13f1": 14222, "\u2581\u13d7\u13c2\u13c1\u13df\u13f4\u13cd\u13a9": 14223, "\u13c8\u13d9\u13b2": 14224, "\u2581\u13e7\u13b3\u13a8\u13ef\u13db\u13e4\u13a2": 14225, "\u13ac\u13ec\u13af\u13f3\u13c1\u13a2": 14226, "\u2581\u13a3\u13c7\u13d7": 14227, "\u2581\u13da\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13b4": 14228, "\u2581\u13d5\u13e5\u13a6\u13be": 14229, "\u2581\u13d7\u13a8\u13cd\u13a9\u13a5\u13cf\u13c9": 14230, "\u2581\u13d7\u13ab\u13cd\u13a8\u13c2": 14231, "\u2581\u13a4\u13c1\u13c9\u13e4\u13b4\u13a2": 14232, "\u2581\u13a8\u13e5\u13db\u13ac": 14233, "\u2581\u13e9\u13d7\u13e2\u13cd\u13d3": 14234, "\u2581\u13ef\u13be\u13d5\u13b0": 14235, "\u13ac\u13eb\u13f3\u13cc\u13d5\u13a8\u13cd\u13d7": 14236, "\u2581\u13e3\u13d3\u13f4\u13d2\u13a9": 14237, "\u2581\u13a1\u13e3\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 14238, "\u2581\u13f3\u13c1\u13c5\u13ce\u13a2": 14239, "\u13a4\u13d9\u13af\u13f3\u13a9": 14240, "\u13d2\u13c2\u13b5\u13d9\u13b8": 14241, "\u2581\u13be\u13a6\u13d4\u13db": 14242, "\u2581\u13d7\u13a6\u13b5\u13e6\u13db": 14243, "\u13d3\u13db\u13db\u13ae\u13b8\u13a5\u13cd\u13a8": 14244, "\u2581\u13eb\u13be\u13c6\u13b5\u13cd\u13d3\u13cf": 14245, "\u13a6\u13ab\u13f4\u13a1\u13b5": 14246, "\u2581\u13a2\u13e5\u13b7\u13e4\u13ae\u13cd\u13d7": 14247, "\u2581\u13d7\u13d5\u13ad\u13b7\u13a8": 14248, "\u13e8\u13c7\u13cd\u13a8": 14249, "\u2581\u13a2\u13d7\u13cd\u13d3\u13e9\u13d5\u13a9": 14250, "\u2581\u13e9\u13d0\u13be": 14251, "\u2581\u13c4\u13a1\u13ce": 14252, "\u13d5\u13b5\u13ce\u13ad": 14253, "\u2581\u13ad\u13b5\u13ae\u13b5\u13a8\u13cd\u13d7": 14254, "\u2581\u13a0\u13c6\u13b4\u13c1\u13b8": 14255, "\u2581\u13e5\u13e5\u13c3\u13ae\u13cd\u13ac": 14256, "\u2581\u13ac\u13e9\u13be\u13e1\u13d7\u13cd\u13a9": 14257, "\u2581\u13d5\u13e3\u13c2\u13ac\u13a6": 14258, "\u2581\u13eb\u13d4\u13a7\u13c5\u13a6": 14259, "\u2581\u13d3\u13c3\u13e2": 14260, "\u2581\u13d5\u13a6\u13b5\u13a5\u13c2": 14261, "\u2581\u13e5\u13da\u13b4\u13af": 14262, "\u2581\u13a7\u13c1\u13aa\u13a2": 14263, "\u13d3\u13aa\u13af\u13e5": 14264, "\u2581\u13d5\u13ad\u13d5\u13f2\u13b2\u13cd\u13a8\u13cd\u13d7": 14265, "\u2581\u13a0\u13a9\u13f2\u13b1\u13d2\u13af": 14266, "\u2581\u13e7\u13d6\u13b5\u13d9": 14267, "\u2581\u13a8\u13e5\u13a8\u13f3\u13af": 14268, "\u2581\u13f1\u13a6\u13b5\u13ad": 14269, "\u13db\u13db\u13c5\u13a9\u13c3": 14270, "\u2581\u13d7\u13e5\u13c3\u13cd\u13a6\u13b8\u13db": 14271, "\u2581\u13d5\u13ab\u13cd\u13d9": 14272, "\u2581\u13ef\u13b5\u13d6\u13b8": 14273, "\u2581\u13af\u13c1\u13a9\u13c9\u13cd\u13a9\u13c2": 14274, "\u2581\u13d3\u13a6\u13b6\u13cf": 14275, "\u2581\u13a4\u13c3\u13af\u13b5\u13d9\u13b8": 14276, "\u2581\u13a4\u13ea\u13be\u13ea": 14277, "\u2581\u13f1\u13c2\u13a6\u13b5\u13cd\u13d7\u13ad": 14278, "\u2581\u13a2\u13e8\u13cd\u13d5\u13b5\u13cd\u13ac": 14279, "\u2581\u13a8\u13a6\u13ab\u13f4\u13db": 14280, "ca": 14281, "\u2581\u13e7\u13f2\u13b1\u13d2": 14282, "\u2581\u13a2\u13e8\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 14283, "\u2581\u13e5\u13f2\u13a2\u13f3\u13d7": 14284, "\u13c3\u13eb\u13a0": 14285, "\u2581\u13da\u13b5\u13cd\u13d3\u13f1\u13d7\u13cd": 14286, "\u13d3\u13c5\u13b5\u13f0\u13a0": 14287, "\u13ac\u13aa\u13a5\u13a9": 14288, "\u2581\u13e5\u13e3\u13d3\u13e1\u13ac": 14289, "\u2581\u13da\u13c2\u13aa\u13ae": 14290, "\u13c4\u13ec\u13af\u13cd\u13d4\u13c2": 14291, "\u13dd\u13eb\u13cd\u13d7": 14292, "\u2581\u13f3\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b4": 14293, "\u13da\u13aa\u13c4\u13b6": 14294, "\u13a6\u13d6\u13be": 14295, "\u2581\u13ac\u13e9\u13ac\u13cd\u13aa\u13b8\u13c1": 14296, "\u2581\u13ed\u13be\u13c5\u13c5\u13a9": 14297, "\u2581\u13e7\u13d1\u13f4": 14298, "\u13c4\u13e9\u13a5\u13be": 14299, "\u2581\u13a2\u13e8\u13f0\u13b3\u13cd\u13d4": 14300, "\u2581\u13d5\u13b0\u13af\u13f3\u13b2\u13cd": 14301, "\u2581\u13b1\u13be\u13d3": 14302, "\u2581\u13e7\u13a6\u13be\u13cd\u13d3": 14303, "\u2581\u13d7\u13c2\u13c1\u13e5\u13f1": 14304, "\u2581\u13d7\u13e7\u13aa\u13d9\u13d7\u13f1": 14305, "\u2581\u13a4\u13cd\u13d3\u13e9\u13d7\u13d3\u13cd\u13d7\u13f1": 14306, "\u2581\u13a2\u13aa\u13e2\u13c5\u13af": 14307, "\u2581\u13a2\u13cd\u13d9\u13af\u13f3\u13b2\u13cd": 14308, "\u13db\u13c1\u13b0\u13b2\u13cd\u13d7\u13f1": 14309, "\u2581\u13cd\u13c6\u13c1\u13b3\u13c5\u13af": 14310, "\u2581\u13a1\u13e5\u13aa\u13b5\u13f0\u13d7\u13f1": 14311, "\u2581\u13f3\u13ec\u13b3": 14312, "\u13e5\u13d3\u13a6\u13b8\u13a2\u13d2": 14313, "\u2581\u13cf\u13f1\u13c6": 14314, "\u2581\u13ef\u13a6\u13b5\u13cd\u13a8\u13a2": 14315, "\u2581\u13d5\u13a8\u13e2\u13d4\u13c5\u13ad": 14316, "\u2581\u13a6\u13b5\u13ec\u13a6": 14317, "\u2581\u13a6\u13c5\u13b5\u13f0\u13d7": 14318, "nt": 14319, "\u2581\u13eb\u13c4\u13db\u13c1": 14320, "\u2581\u13f3\u13e9\u13a9\u13b8": 14321, "\u13d9\u13c5\u13b8\u13a2": 14322, "\u2581\u13a0\u13c2\u13b8\u13c9\u13d7\u13cd\u13ac": 14323, "\u2581\u13a8\u13e3\u13db\u13a6\u13c1\u13b8": 14324, "\u2581\u13c4\u13d3\u13db\u13a9": 14325, "\u2581\u13eb\u13a7\u13b3": 14326, "\u2581\u13a4\u13be\u13b5\u13c3\u13ae\u13b8": 14327, "\u2581\u13d3\u13e5\u13c2\u13f4\u13af": 14328, "\u2581\u13a5\u13c6\u13b8\u13cd\u13d7\u13f1": 14329, "\u2581\u13da\u13c2\u13cd\u13d7\u13f0\u13d4\u13c1": 14330, "\u2581\u13aa\u13da\u13a2\u13cd\u13db": 14331, "\u2581\u13a4\u13be\u13d7\u13d2\u13c5": 14332, "\u2581\u13a4\u13c4\u13ec\u13af\u13cd\u13d7\u13f1": 14333, "\u2581\u13a8\u13e5\u13b6\u13c1\u13a5": 14334, "\u2581\u13a6\u13df\u13d0\u13d7": 14335, "\u2581\u13a0\u13a9\u13c2\u13c6\u13d8\u13ae\u13cd\u13d7": 14336, "\u13cd\u13aa\u13b8\u13aa": 14337, "\u13e5\u13b7\u13e8\u13ad": 14338, "\u2581\u13ef\u13cd\u13a6\u13c5\u13aa\u13a2": 14339, "\u2581\u13a4\u13a9\u13b8\u13c2\u13b8": 14340, "\u2581\u13cd\u13a9\u13b7\u13e4\u13b8\u13ad": 14341, "\u2581\u13a2\u13e5\u13be\u13f0\u13cd\u13a9": 14342, "\u2581\u13d3\u13d3\u13ea\u13b3\u13a9\u13cd\u13ac": 14343, "\u2581\u13a3\u13cd\u13d3\u13d5\u13ad\u13f2\u13b2": 14344, "\u2581\u13a8\u13e5\u13a8\u13f3\u13ad": 14345, "\u2581\u13a0\u13c6\u13da\u13d3\u13b8": 14346, "\u2581\u13da\u13c3\u13e2\u13e9\u13d7\u13d2": 14347, "\u2581\u13e3\u13d3\u13cf\u13c2": 14348, "\u2581\u13ac\u13cb\u13d5\u13e8": 14349, "\u2581\u13db\u13a0\u13e5": 14350, "\u13da\u13d3\u13d5\u13eb\u13cd\u13db": 14351, "\u2581\u13d3\u13e5\u13db\u13d4\u13c2": 14352, "\u13b5\u13f2\u13ac": 14353, "\u2581\u13d5\u13e8\u13f2\u13af\u13ce\u13b8": 14354, "\u2581\u13da\u13ec\u13d2\u13a2": 14355, "\u2581\u13d7\u13e3\u13d3\u13c5\u13db\u13b5": 14356, "\u2581\u13f1\u13da\u13da\u13aa": 14357, "\u2581\u13e3\u13e5\u13d0\u13c5": 14358, "\u2581\u13cd\u13a9\u13f2\u13af\u13cf": 14359, "\u2581\u13da\u13c2\u13c1\u13a6\u13b8": 14360, "\u13d8\u13c2\u13d9\u13b2": 14361, "\u2581\u13a4\u13d3\u13d5\u13f2\u13d7\u13f1": 14362, "\u13cd\u13a9\u13a7\u13c1\u13b8\u13a9": 14363, "\u2581\u13a4\u13b6\u13d2\u13cd\u13d5\u13cd\u13d7": 14364, "\u13a7\u13af\u13f0": 14365, "\u2581\u13c2\u13da\u13d3\u13c5": 14366, "\u2581\u13a6\u13c4\u13aa": 14367, "\u2581\u13a4\u13ad\u13f2\u13b4": 14368, "\u2581\u13da\u13be\u13cc\u13a5": 14369, "\u2581\u13a4\u13be\u13d3\u13c2\u13ef\u13db": 14370, "\u2581\u13e6\u13a6\u13e4\u13b5\u13a6": 14371, "\u2581\u13ac\u13e9\u13c3\u13b4\u13a2": 14372, "\u2581\u13a0\u13e5\u13cd\u13d5": 14373, "\u13c2\u13aa\u13b5\u13f0\u13a0": 14374, "\u2581\u13f1\u13e3\u13d5\u13b6\u13b0": 14375, "\u2581\u13e7\u13ee\u13d4\u13c5": 14376, "\u2581\u13a0\u13c2\u13be\u13c4\u13aa\u13eb\u13cd\u13a9": 14377, "\u2581\u13f1\u13da\u13b4\u13c5": 14378, "\u2581\u13d5\u13a7\u13c3": 14379, "\u2581\u13c4\u13dc\u13cf\u13db\u13a1\u13b2\u13be": 14380, "\u2581\u13c4\u13f2\u13b1\u13d2\u13be": 14381, "\u2581\u13d7\u13e5\u13b6\u13d3": 14382, "\u2581\u13a8\u13e5\u13be\u13c4\u13aa\u13eb\u13d2\u13af": 14383, "\u13be\u13df\u13b6\u13be": 14384, "\u2581\u13e7\u13d0\u13f1\u13ad": 14385, "\u13a9\u13cd\u13c6\u13b8\u13d4\u13c5": 14386, "\u13ac\u13e9\u13be\u13d3\u13d0\u13e2": 14387, "\u2581\u13f1\u13d9\u13a8\u13e8": 14388, "\u2581\u13da\u13c2\u13ac\u13e8": 14389, "\u2581\u13a2\u13d7\u13aa": 14390, "\u13e9\u13db\u13af\u13b8\u13a9": 14391, "\u2581\u13e7\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13d7\u13f1": 14392, "\u13cb\u13c2\u13cd\u13d7\u13f1": 14393, "\u2581\u13a4\u13e7\u13d7\u13ad": 14394, "\u2581\u13f1\u13ac\u13f2\u13ce\u13ad": 14395, "\u13cd\u13db\u13d7\u13cd\u13d4\u13c2": 14396, "\u13db\u13a8\u13e3": 14397, "\u13cd\u13c6\u13db\u13a6\u13cd\u13d3\u13cf": 14398, "\u2581\u13a4\u13c2\u13c3\u13cd\u13a9\u13cd\u13d7\u13f1": 14399, "\u2581\u13a6\u13f0\u13e5\u13d0\u13e2\u13d4\u13c5": 14400, "\u13f4\u13cb\u13c1\u13b8\u13af": 14401, "\u13e9\u13be\u13d6": 14402, "\u2581\u13e7\u13f2\u13e8": 14403, "\u2581\u13f1\u13c4\u13db\u13c1\u13b8": 14404, "\u2581\u13e5\u13ef\u13c4": 14405, "\u2581\u13a4\u13ac\u13eb": 14406, "ol": 14407, "\u13a6\u13c2\u13a9\u13cd\u13d4\u13c1\u13a2": 14408, "\u2581\u13d9\u13db\u13a6\u13b4": 14409, "\u13d1\u13b5\u13aa\u13e4": 14410, "\u2581\u13af\u13ef\u13d8\u13c4\u13a6": 14411, "\u2581\u13be\u13be\u13b5\u13ae\u13b5": 14412, "\u2581\u13e5\u13da\u13b4\u13d4\u13c1\u13a2": 14413, "\u2581\u13ed\u13c2\u13b7": 14414, "\u2581\u13a0\u13e5\u13e9\u13db\u13a1\u13b8\u13ad": 14415, "\u2581\u13a2\u13d7\u13c1\u13ac": 14416, "\u2581\u13cd\u13c6\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13b8\u13ad": 14417, "\u13da\u13a7\u13bf\u13e9\u13d7\u13d9\u13b2": 14418, "\u2581\u13a0\u13c3\u13af\u13f3\u13b2\u13cd\u13a6": 14419, "\u2581\u13d7\u13d9\u13b3\u13c5\u13cd\u13d7": 14420, "\u2581\u13e5\u13c5\u13e9\u13cd\u13d9\u13a2": 14421, "\u2581\u13f4\u13ac\u13a9\u13b7\u13e5": 14422, "\u2581\u13ea\u13e4": 14423, "\u2581\u13f1\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 14424, "\u13d7\u13dd\u13a5\u13d4": 14425, "\u2581\u13a4\u13be\u13b5\u13d3\u13a9": 14426, "\u13db\u13d3\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 14427, "\u2581\u13a6\u13c3\u13d7\u13cd\u13a9": 14428, "\u2581\u13d3\u13d8\u13c1\u13ae\u13cd\u13d7": 14429, "\u2581\u13d5\u13ac\u13e9\u13c2\u13ae\u13a2": 14430, "\u2581\u13a2\u13e5\u13df\u13cc": 14431, "\u2581\u13a0\u13e5\u13c1\u13e4\u13b4": 14432, "\u2581\u13e6\u13e2\u13c5\u13af": 14433, "\u13d5\u13b3\u13b0": 14434, "\u2581\u13c4\u13cd\u13d7\u13d5\u13a6": 14435, "\u2581\u13a0\u13e5\u13a7\u13c5": 14436, "\u2581\u13a4\u13c2\u13e8\u13c5": 14437, "\u2581\u13a4\u13b5\u13cd\u13ab\u13eb\u13ce\u13b8": 14438, "\u2581\u13d7\u13a8\u13e5\u13a4\u13cd\u13d5\u13ce\u13d7": 14439, "\u2581\u13c5\u13d7\u13a4": 14440, "\u2581\u13a0\u13b9\u13f3\u13b8": 14441, "\u2581\u13a3\u13a8\u13c5\u13cd\u13d7\u13f1": 14442, "\u2581\u13e9\u13c2\u13b7\u13e8": 14443, "\u2581\u13a2\u13a9\u13cd\u13d5\u13b5\u13cd\u13ac\u13a2": 14444, "\u2581\u13a3\u13a6\u13d5\u13ef\u13d9\u13d7\u13ad": 14445, "\u2581\u13f1\u13da\u13ea": 14446, "\u2581\u13a4\u13c1\u13cd\u13a8\u13b2\u13a2": 14447, "\u2581\u13c2\u13ac\u13e9\u13c1\u13b8": 14448, "\u2581\u13b5\u13cc": 14449, "\u13d3\u13a7\u13ad\u13c5": 14450, "\u2581\u13a1\u13cd\u13aa\u13b5": 14451, "\u2581\u13a2\u13e3\u13d3\u13b3\u13eb\u13ce\u13b8": 14452, "\u2581\u13a3\u13a9\u13aa\u13c1": 14453, "\u2581\u13a0\u13d3\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7\u13cd\u13a9": 14454, "\u13ef\u13cd\u13d7": 14455, "\u2581\u13ad\u13b5\u13cd\u13d5\u13b8": 14456, "\u2581\u13c2\u13a6\u13cd\u13d5\u13cd\u13d7": 14457, "\u13c3\u13e2\u13cd\u13a9": 14458, "\u2581\u13e5\u13a6\u13b3\u13a8": 14459, "\u2581\u13eb\u13a6\u13f2\u13a9": 14460, "\u2581\u13a0\u13e5\u13b5\u13a5\u13c2\u13b8": 14461, "\u13da\u13b6\u13af\u13ce\u13b4": 14462, "\u2581\u13a6\u13f2\u13a9\u13d0\u13e2": 14463, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13a8\u13a2": 14464, "\u2581\u13c4\u13c1\u13b2\u13be": 14465, "\u2581\u13e9\u13c6\u13d5": 14466, "\u13ac\u13e9\u13c2\u13f4\u13ae\u13c3": 14467, "\u2581\u13e5\u13d3\u13d3\u13ec\u13cd\u13ac\u13a9": 14468, "\u2581\u13a0\u13e5\u13e9\u13db\u13a1\u13b8\u13af": 14469, "\u2581\u13a4\u13c2\u13aa\u13d9": 14470, "\u2581\u13ac\u13ec\u13af\u13f3\u13c5\u13af": 14471, "\u2581\u13ad\u13c8\u13b3": 14472, "\u2581\u13a4\u13be\u13d7\u13cd\u13a6\u13b3\u13c1": 14473, "\u13b5\u13aa\u13da\u13c5": 14474, "\u2581\u13ac\u13e9\u13b6\u13c1\u13d7": 14475, "\u2581\u13a2\u13e4\u13f2\u13d7\u13f1": 14476, "\u13a9\u13cd\u13d7\u13f0\u13d7\u13cd\u13ac": 14477, "\u2581\u13a0\u13f2\u13b0\u13cd": 14478, "\u2581\u13e7\u13c2\u13b5\u13a1\u13be": 14479, "\u13a6\u13be\u13af": 14480, "\u2581\u13d5\u13af\u13a6\u13d4\u13ad": 14481, "\u2581\u13cd\u13a9\u13a8\u13af\u13d9\u13b8": 14482, "\u2581\u13cd\u13a9\u13cd\u13d3\u13e9\u13db\u13cd\u13d7\u13f1": 14483, "\u13a9\u13b3\u13eb\u13cd\u13d7": 14484, "\u2581\u13a4\u13be\u13d5\u13b6\u13c6\u13a1": 14485, "\u2581\u13ae\u13d9\u13ae\u13cd\u13d7": 14486, "\u2581\u13a0\u13be\u13d9\u13b4": 14487, "\u2581\u13d7\u13c2\u13a7\u13bf\u13e9\u13d7": 14488, "\u2581\u13a2\u13e5\u13f2\u13cd\u13d3": 14489, "\u13b7\u13e5\u13b4\u13a2": 14490, "\u13c3\u13b2\u13b3": 14491, "\u2581\u13cd\u13a9\u13ef\u13d3\u13c5\u13d6": 14492, "\u2581\u13a8\u13ef\u13d4\u13af": 14493, "\u13be\u13e2\u13c6": 14494, "\u13d3\u13c2\u13b8\u13e3": 14495, "\u2581\u13a0\u13a9\u13b7\u13b3": 14496, "\u2581\u13a4\u13c2\u13ef\u13c5\u13ae": 14497, "\u2581\u13b7\u13eb": 14498, "\u2581\u13a4\u13be\u13dc\u13cf\u13db\u13a1": 14499, "\u2581\u13da\u13b5\u13cf\u13b2\u13d2\u13a9": 14500, "\u2581\u13ed\u13be\u13cc\u13be\u13a9": 14501, "\u2581\u13a4\u13be\u13d8\u13c5\u13ce": 14502, "\u2581\u13d3\u13be\u13e4\u13a8\u13cd\u13d7\u13c9": 14503, "\u2581\u13a6\u13d3\u13c5\u13d6\u13ad": 14504, "\u2581\u13da\u13c5\u13b5\u13f0\u13a5": 14505, "\u2581\u13e6\u13af\u13f3\u13ce\u13cd\u13d7\u13c9": 14506, "\u2581\u13a0\u13d3\u13cd\u13d5\u13b8\u13af\u13d9\u13af": 14507, "\u13f0\u13b6\u13b5": 14508, "\u2581\u13a2\u13e3\u13db\u13d3\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 14509, "\u2581\u13ef\u13d9\u13e2\u13be": 14510, "\u2581\u13a0\u13a9\u13cd\u13d3\u13e9\u13db\u13cd\u13d7\u13f1": 14511, "\u2581\u13a4\u13b6\u13d0\u13c2\u13d7": 14512, "\u2581\u13a8\u13ac\u13ec\u13a3\u13d7": 14513, "\u2581\u13af\u13d7\u13a6\u13d4\u13ad": 14514, "\u2581\u13ed\u13a9\u13ce": 14515, "\u2581\u13eb\u13d7\u13a8\u13a6": 14516, "\u2581\u13e5\u13be\u13c6\u13cd\u13d7\u13c9": 14517, "\u13a9\u13e9\u13af\u13cd\u13d9\u13d7": 14518, "\u2581\u13da\u13ad\u13be\u13ec": 14519, "\u2581\u13f1\u13c5\u13db\u13c5\u13c1\u13b5": 14520, "\u2581\u13c7\u13b4\u13d7": 14521, "\u13f0\u13a2\u13cd\u13d4\u13c1": 14522, "\u2581\u13e7\u13ec\u13d1\u13b4\u13d7": 14523, "\u2581\u13a1\u13e5\u13a5\u13cf": 14524, "\u2581\u13a4\u13d3\u13c1\u13df\u13f4\u13cd\u13d3\u13c1\u13b8": 14525, "\u13da\u13be\u13df\u13ef\u13db": 14526, "\u2581\u13a4\u13be\u13e0\u13ef\u13cd\u13d7": 14527, "\u2581\u13a4\u13c4\u13d8": 14528, "\u13d5\u13b3\u13cd\u13d7": 14529, "\u2581\u13d8\u13c5\u13cf\u13d7": 14530, "\u2581\u13a4\u13a7\u13e8": 14531, "\u2581\u13e5\u13cd\u13c6\u13b8\u13be": 14532, "\u2581\u13d7\u13c4\u13ea": 14533, "\u13a4\u13b8\u13af": 14534, "\u13d3\u13ac\u13c5\u13c1\u13b5": 14535, "\u2581\u13a9\u13b3\u13cb": 14536, "\u13d3\u13e2\u13cd\u13db": 14537, "ee": 14538, "\u2581\u13da\u13d3\u13a5": 14539, "\u2581\u13e9\u13a6\u13d8\u13c3\u13b8\u13a9": 14540, "\u13eb\u13cd\u13d4\u13c1\u13b2": 14541, "\u2581\u13d3\u13be\u13d3\u13db\u13db\u13b2\u13cd\u13a8": 14542, "\u2581\u13eb\u13a3\u13a9": 14543, "\u2581\u13a8\u13e5\u13d0\u13c5\u13a2\u13cd\u13d4\u13c5\u13af": 14544, "\u13ac\u13f2": 14545, "\u13c2\u13c2\u13f4\u13af": 14546, "\u2581\u13d7\u13e3\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7": 14547, "\u2581\u13f1\u13c2\u13e8\u13ea\u13ce\u13b4": 14548, "\u13c5\u13b0\u13c1": 14549, "\u2581\u13a4\u13be\u13c5\u13e3\u13db": 14550, "\u13e9\u13d7\u13d2\u13c2": 14551, "\u2581\u13a4\u13cd\u13d7\u13f1\u13db": 14552, "\u2581\u13da\u13d3\u13df\u13f4\u13ae": 14553, "\u13e5\u13c2\u13d5\u13af": 14554, "\u2581\u13f1\u13e5\u13f0\u13b8\u13cd\u13a8\u13cd\u13d7": 14555, "\u13d3\u13e6\u13b3\u13c2\u13d2": 14556, "\u2581\u13f1\u13c2\u13e3\u13db\u13c1\u13ae\u13cd\u13d7": 14557, "\u2581\u13eb\u13d7\u13a6\u13a6\u13c2": 14558, "\u2581\u13c1\u13ad\u13d7": 14559, "\u2581\u13e3\u13d3\u13ea\u13b5\u13a9\u13cd": 14560, "\u2581\u13a4\u13db\u13d5\u13cd\u13d7": 14561, "\u2581\u13a4\u13ec\u13df": 14562, "\u2581\u13d7\u13a9\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 14563, "\u2581\u13da\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b4": 14564, "\u13c4\u13ea\u13cd\u13d7\u13f1": 14565, "\u2581\u13a2\u13e3\u13d5\u13d8\u13f4\u13db": 14566, "\u13eb\u13cd\u13d3\u13c1\u13d7": 14567, "\u13b3\u13f2\u13cd\u13a8": 14568, "\u2581\u13a2\u13a9\u13c1\u13e4\u13b8": 14569, "\u2581\u13ed\u13e9\u13c2\u13a6\u13b8": 14570, "\u13b5\u13c1\u13cc\u13b8": 14571, "\u2581\u13a0\u13b5\u13c3\u13af\u13ef": 14572, "\u2581\u13a2\u13e7\u13c5\u13c1\u13b8\u13af": 14573, "\u2581\u13eb\u13c2\u13e3": 14574, "\u2581\u13a0\u13d9\u13d1\u13b4\u13d7\u13f1": 14575, "\u2581\u13a0\u13df\u13c5\u13e8": 14576, "\u2581\u13a0\u13be\u13d3\u13c3\u13ae\u13b5\u13d9\u13af": 14577, "\u2581\u13a0\u13a9\u13cd\u13d5\u13b8\u13db": 14578, "\u2581\u13a4\u13d4\u13f2\u13ce\u13b8": 14579, "\u2581\u13d7\u13d1\u13f4\u13c5": 14580, "\u2581\u13a0\u13be\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7\u13cd\u13a8\u13cd\u13d7": 14581, "\u13be\u13c1\u13cd\u13ac": 14582, "\u2581\u13a4\u13be\u13e8\u13c9": 14583, "\u2581\u13a0\u13a9\u13cd\u13c6\u13b8\u13a1": 14584, "\u2581\u13e7\u13b4\u13d9\u13d7\u13f1": 14585, "\u2581\u13a0\u13db\u13f2\u13b1\u13cf": 14586, "\u2581\u13a0\u13d6\u13b8\u13c5\u13af": 14587, "\u2581\u13a4\u13c2\u13c4\u13aa\u13eb\u13ce": 14588, "\u13c4\u13c2\u13ea\u13d2\u13a9": 14589, "\u2581\u13a0\u13aa\u13ce\u13b2\u13a9": 14590, "\u2581\u13a0\u13c6\u13ab\u13f4\u13a1\u13b2\u13a2": 14591, "\u2581\u13a0\u13d3\u13db\u13cd\u13aa\u13a2": 14592, "\u2581\u13a4\u13be\u13a6\u13d9\u13cd\u13d9\u13d7": 14593, "\u13d3\u13ec\u13d4\u13c2": 14594, "\u2581\u13f1\u13d9\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 14595, "\u2581\u13da\u13c2\u13b3\u13eb\u13e4": 14596, "\u2581\u13a0\u13c2\u13f4\u13af\u13ad": 14597, "\u2581\u13a0\u13db\u13b5\u13cd\u13ac": 14598, "\u2581\u13a4\u13c2\u13cd\u13d9\u13b8": 14599, "\u2581\u13e7\u13ed\u13aa\u13d3\u13c1\u13d7": 14600, "\u2581\u13a0\u13b5\u13ae\u13b5\u13e4\u13b0\u13a2": 14601, "\u2581\u13f1\u13ed\u13b7\u13e8": 14602, "\u2581\u13eb\u13e5\u13e9\u13db": 14603, "\u2581\u13a4\u13ef\u13cd\u13a6": 14604, "\u2581\u13a4\u13d3\u13c5\u13a6\u13b8\u13d7": 14605, "\u2581\u13d8\u13c2\u13f4": 14606, "\u2581\u13c2\u13da\u13db\u13d3\u13cd\u13d3\u13c1": 14607, "\u2581\u13f3\u13f0\u13e8": 14608, "\u2581\u13a0\u13c9\u13da\u13af": 14609, "\u2581\u13a0\u13be\u13e6\u13a5": 14610, "\u2581\u13af\u13cd\u13c6\u13b5": 14611, "\u2581\u13a0\u13cd\u13aa\u13a9\u13cd\u13ac": 14612, "\u2581\u13a0\u13c2\u13dd\u13b2\u13cd\u13aa": 14613, "\u13a7\u13af\u13f4\u13cd\u13d7": 14614, "\u2581\u13a0\u13d3\u13cd\u13d5\u13d3\u13b5\u13f4\u13cd\u13ac": 14615, "\u2581\u13f1\u13c2\u13e8\u13a6": 14616, "\u13d3\u13c1\u13b3\u13c1\u13b8\u13af": 14617, "\u2581\u13a4\u13c1\u13cd\u13a8\u13b2\u13af": 14618, "\u2581\u13a1\u13a9\u13c1\u13d7\u13f1": 14619, "\u2581\u13e5\u13c1\u13a2\u13cd\u13d3": 14620, "\u2581\u13a4\u13ce\u13a6\u13b3\u13af": 14621, "\u2581\u13a3\u13a9\u13b6\u13d0\u13c5": 14622, "\u2581\u13a0\u13d4\u13b8\u13a9\u13d3": 14623, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d4\u13c1\u13b4": 14624, "\u2581\u13e5\u13cd\u13d3\u13e9\u13d5\u13a6": 14625, "\u2581\u13da\u13a9\u13b8\u13d4\u13c1": 14626, "\u2581\u13a4\u13be\u13b5\u13c3\u13ae\u13d4\u13c1": 14627, "\u2581\u13a4\u13a6\u13f4\u13b3\u13e5\u13b6\u13db": 14628, "\u2581\u13a4\u13be\u13b4\u13f2\u13a5": 14629, "\u2581\u13a4\u13d3\u13c1\u13aa\u13f4\u13d3": 14630, "\u2581\u13e7\u13b4\u13c1\u13a2": 14631, "\u2581\u13a6\u13b5\u13a5\u13c2\u13ae": 14632, "\u2581\u13ac\u13e9\u13db\u13c1\u13a2": 14633, "\u2581\u13a0\u13a9\u13f2\u13b1\u13af\u13ce\u13b8\u13af": 14634, "\u2581\u13a0\u13d3\u13c5\u13a6\u13b8\u13d7": 14635, "\u2581\u13e3\u13a6\u13a8\u13c5": 14636, "\u13db\u13d3\u13cd\u13d3\u13c1\u13af": 14637, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 14638, "\u2581\u13a8\u13b5\u13d2\u13ad": 14639, "\u13e3\u13e2\u13c6": 14640, "\u2581\u13ac\u13e9\u13c1\u13c4\u13b3\u13cd\u13d7\u13cd\u13a8": 14641, "\u2581\u13a2\u13ef\u13ef\u13d6\u13c5": 14642, "\u13e5\u13c4\u13aa\u13e8": 14643, "\u2581\u13da\u13c2\u13ef\u13ea\u13a8": 14644, "\u2581\u13a2\u13ac\u13e9\u13b5\u13cd\u13d4\u13c5\u13af": 14645, "\u2581\u13eb\u13ab\u13d3\u13b8": 14646, "\u2581\u13e7\u13c2\u13c5\u13ec\u13d7\u13f1": 14647, "\u2581\u13c4\u13ec\u13da": 14648, "\u2581\u13a4\u13c2\u13a6\u13b5\u13f4": 14649, "\u2581\u13e3\u13d7\u13e5": 14650, "\u2581\u13a0\u13c6\u13ce\u13ae\u13b2": 14651, "\u2581\u13a4\u13a9\u13cd\u13d9\u13a1": 14652, "\u13cd\u13d5\u13b5\u13cd\u13a8\u13cd\u13d7": 14653, "\u13da\u13b3\u13d5": 14654, "\u2581\u13af\u13aa\u13a2\u13a6": 14655, "\u2581\u13a4\u13c2\u13be\u13d5\u13a8": 14656, "\u2581\u13a8\u13a6\u13e0\u13ef\u13cd": 14657, "\u2581\u13a4\u13c2\u13c1\u13d3\u13e5\u13db": 14658, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d4\u13e9\u13d5\u13a6": 14659, "\u2581\u13a4\u13c2\u13cd\u13d3\u13e9\u13db\u13db": 14660, "\u2581\u13a0\u13c2\u13c3\u13d4\u13c5": 14661, "\u2581\u13f4\u13a6\u13f0\u13b3": 14662, "\u13aa\u13d4\u13c2": 14663, "\u2581\u13a2\u13d7\u13be\u13cc": 14664, "\u13cd\u13d9\u13f4\u13d7": 14665, "\u2581\u13a2\u13e5\u13c2\u13c6\u13d8\u13ae\u13cd\u13d7": 14666, "\u2581\u13da\u13d3\u13ec\u13a5": 14667, "\u2581\u13a4\u13e9\u13c5\u13e4": 14668, "\u2581\u13a0\u13c6\u13b5\u13c2\u13a9\u13db": 14669, "\u2581\u13a0\u13c2\u13cd\u13d4\u13e9\u13d7\u13d2": 14670, "\u13c3\u13cd\u13a9\u13d2\u13a9": 14671, "\u2581\u13ef\u13c6\u13db\u13be": 14672, "\u2581\u13a6\u13be\u13cc\u13a2": 14673, "\u2581\u13ac\u13e9\u13d4\u13f2\u13ce\u13af": 14674, "\u2581\u13ed\u13b4\u13c5\u13ae": 14675, "\u2581\u13a0\u13f2\u13b1\u13cd\u13a8\u13a2": 14676, "\u2581\u13d7\u13c9\u13ea\u13b3\u13c5": 14677, "\u13e4\u13b8\u13cd\u13a6": 14678, "\u2581\u13ac\u13e9\u13d3\u13c5\u13ec\u13d7": 14679, "\u2581\u13da\u13be\u13b5\u13e5": 14680, "\u2581\u13a4\u13c3\u13af\u13f4\u13af": 14681, "\u2581\u13be\u13a6\u13db\u13c1\u13b8": 14682, "\u2581\u13d3\u13e4\u13b4\u13cd\u13d7": 14683, "\u13c1\u13c4\u13b3\u13cd\u13d7\u13cd": 14684, "\u2581\u13e5\u13da\u13b3\u13cd": 14685, "\u2581\u13a0\u13ca\u13d3\u13b4": 14686, "\u2581\u13af\u13aa\u13a5\u13af": 14687, "\u2581\u13a0\u13a6\u13d3\u13a2\u13c5": 14688, "\u13c2\u13a9\u13cd\u13d9\u13d7\u13f1": 14689, "\u2581\u13a4\u13be\u13e0\u13be\u13cd": 14690, "\u2581\u13a0\u13c2\u13a6\u13d4\u13bf\u13a5": 14691, "\u2581\u13a2\u13a9\u13ef\u13a5\u13a2": 14692, "\u13cd\u13a9\u13a8\u13f3": 14693, "\u2581\u13d5\u13a8\u13e5\u13f0\u13b8": 14694, "\u2581\u13f1\u13e6\u13af\u13f3\u13b2\u13cd\u13a6": 14695, "\u2581\u13da\u13c2\u13ea\u13ce\u13b8\u13a9": 14696, "\u2581\u13a4\u13c5\u13be\u13cf": 14697, "\u2581\u13c2\u13a6\u13cd\u13db": 14698, "\u2581\u13a4\u13c2\u13cd\u13d3\u13e9\u13d5\u13c5": 14699, "\u2581\u13a2\u13cd\u13d3\u13b5\u13cd\u13d3\u13f4\u13d4\u13c5\u13a9": 14700, "\u13d7\u13cd\u13d3\u13da\u13d3": 14701, "\u2581\u13a2\u13a9\u13a9\u13b5\u13f2\u13e4": 14702, "\u2581\u13a8\u13d9\u13af\u13c9": 14703, "\u2581\u13a0\u13d3\u13db\u13c2\u13d7\u13cd\u13a9": 14704, "\u2581\u13a4\u13c4\u13d6\u13d2\u13a9": 14705, "\u2581\u13c3\u13a9\u13c5\u13c1\u13b8\u13a9": 14706, "\u2581\u13eb\u13e5\u13aa\u13a5\u13a9": 14707, "\u2581\u13a0\u13cd\u13c6\u13d7\u13cd\u13ac": 14708, "\u2581\u13da\u13c2\u13a6\u13b5\u13d2\u13a9": 14709, "\u13ec\u13d7\u13ad": 14710, "\u2581\u13a0\u13e5\u13b8\u13c9\u13d3": 14711, "\u2581\u13e7\u13b7\u13eb\u13cd\u13d3\u13c1\u13d7": 14712, "\u2581\u13ed\u13d8\u13c5\u13cd\u13d4\u13c5\u13a9": 14713, "\u2581\u13d7\u13df\u13c3\u13ae\u13d9\u13d7": 14714, "\u2581\u13e7\u13db\u13c5\u13a2\u13cd\u13d4\u13c1": 14715, "\u2581\u13d7\u13e3\u13a7\u13c3\u13d7\u13f1": 14716, "\u2581\u13a0\u13c2\u13cd\u13d9\u13cd\u13a8\u13cd\u13d7": 14717, "\u13b5\u13d7\u13cd\u13a9\u13cd\u13ac": 14718, "\u13c4\u13aa\u13d3\u13c1\u13ae\u13cd\u13d7": 14719, "\u2581\u13eb\u13da\u13d3\u13f4\u13b3\u13db": 14720, "\u13cf\u13db\u13c2\u13b8\u13a9": 14721, "\u2581\u13a6\u13be\u13aa\u13a2": 14722, "\u2581\u13a4\u13c2\u13f0\u13e3": 14723, "\u13af\u13ef\u13cd\u13a8\u13cd\u13d7": 14724, "\u2581\u13c2\u13a6\u13ea\u13cd\u13a8\u13cd\u13d7": 14725, "\u13d6\u13b8\u13b2\u13cd\u13a9": 14726, "\u13b4\u13f2\u13a1\u13b8": 14727, "\u2581\u13a4\u13b8\u13b2\u13a9": 14728, "\u2581\u13a4\u13da\u13a2\u13cd\u13d4\u13c1": 14729, "\u2581\u13a0\u13d9\u13a9\u13ef": 14730, "\u2581\u13d3\u13cf\u13b3\u13db\u13a5\u13cd\u13ac": 14731, "\u13a9\u13b7\u13e4\u13ad": 14732, "\u2581\u13c2\u13a6\u13db\u13c1\u13b0": 14733, "\u13dd\u13d7\u13cd\u13d4\u13c2\u13d9": 14734, "\u2581\u13a0\u13e5\u13b6\u13db": 14735, "\u2581\u13a0\u13ef\u13d9\u13b5\u13f3": 14736, "\u2581\u13a4\u13c2\u13aa\u13d7\u13f1": 14737, "\u2581\u13da\u13e9\u13d0": 14738, "\u2581\u13a0\u13cd\u13db\u13aa\u13d2": 14739, "\u2581\u13d8\u13b4\u13c2": 14740, "\u2581\u13d7\u13b5\u13f0\u13a2\u13b8\u13cd\u13d7\u13cd": 14741, "\u2581\u13e5\u13cd\u13c6\u13d9\u13be": 14742, "\u13b5\u13c6\u13d7": 14743, "\u2581\u13ac\u13e9\u13dc\u13eb\u13cd\u13d7": 14744, "\u2581\u13d5\u13a6\u13da\u13d3\u13d5\u13eb\u13d2\u13f0\u13c3": 14745, "\u2581\u13d3\u13be\u13aa\u13b2\u13cd\u13d7\u13cd\u13a8": 14746, "\u2581\u13e5\u13a8\u13d4": 14747, "\u2581\u13a6\u13b5\u13c9\u13a9\u13e6\u13c1": 14748, "\u2581\u13a4\u13c1\u13b7\u13a9": 14749, "\u13d0\u13e2\u13d7\u13cd\u13a9": 14750, "\u2581\u13a0\u13b4\u13eb\u13cd\u13d9\u13d7": 14751, "\u13ab\u13ab": 14752, "\u2581\u13f1\u13e3\u13c5\u13d4": 14753, "\u13a6\u13c5\u13a6\u13b8\u13af": 14754, "\u2581\u13d7\u13df\u13f0\u13b5\u13d3\u13cd\u13d7": 14755, "\u2581\u13ac\u13e9\u13f3\u13e4": 14756, "\u2581\u13a3\u13a8\u13c5": 14757, "\u2581\u13a8\u13e5\u13cd\u13a6\u13e8\u13af": 14758, "\u13a6\u13a8\u13a0\u13d7\u13d4\u13cd\u13d7": 14759, "\u2581\u13e5\u13a7\u13c1\u13a6": 14760, "ce": 14761, "\u2581\u13d7\u13be\u13a2\u13ce": 14762, "\u2581\u13f1\u13c2\u13e3\u13db\u13a6": 14763, "\u2581\u13d5\u13ac\u13c2\u13a6": 14764, "\u13a4\u13be\u13da\u13d3\u13d6\u13cd\u13d7": 14765, "\u13be\u13d9\u13e2": 14766, "\u2581\u13af\u13c3\u13ae\u13cd\u13a8\u13cd\u13d7": 14767, "\u2581\u13a1\u13df\u13ef": 14768, "\u2581\u13a4\u13e5\u13cd\u13d4\u13c1": 14769, "\u13dd\u13b2\u13a6": 14770, "\u2581\u13cd\u13a9\u13a8\u13f3\u13ae\u13cd\u13d7": 14771, "\u2581\u13ac\u13ec\u13af\u13f3\u13d7": 14772, "\u2581\u13a1\u13af\u13c4\u13aa\u13a2": 14773, "\u2581\u13d5\u13a8\u13a6\u13ec\u13a5": 14774, "\u13d3\u13d3\u13df\u13cc\u13c1": 14775, "\u13e9\u13db\u13a1\u13af": 14776, "\u2581\u13a4\u13be\u13a7\u13d9\u13cd\u13d5": 14777, "\u13d0\u13c8": 14778, "\u2581\u13a0\u13cd\u13d5\u13f4": 14779, "\u2581\u13d7\u13c2\u13d9\u13a9": 14780, "\u2581\u13ac\u13cd\u13d5\u13b5\u13cd\u13ac": 14781, "\u13ad\u13e6\u13a3": 14782, "\u2581\u13d3\u13ce\u13af": 14783, "\u2581\u13a4\u13b5\u13c7\u13c5": 14784, "\u2581\u13a3\u13e4\u13aa": 14785, "\u13d3\u13db\u13c2\u13af": 14786, "\u2581\u13a2\u13e4\u13ef\u13d9\u13e4\u13ae\u13cd\u13d7": 14787, "\u2581\u13a0\u13ef\u13c2\u13ad": 14788, "\u2581\u13ef\u13e5\u13b8": 14789, "\u2581\u13e7\u13b7\u13b8\u13d7\u13f1": 14790, "\u2581\u13e5\u13be\u13ac\u13c1\u13b4": 14791, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d3\u13c1\u13ae": 14792, "\u2581\u13d7\u13a6\u13ef\u13a9\u13cd\u13d7": 14793, "\u13a9\u13be\u13b5\u13cd\u13a9\u13d2": 14794, "\u2581\u13da\u13ef\u13ea\u13e8": 14795, "\u13a9\u13ea\u13a1\u13b8\u13a9": 14796, "\u13d7\u13a9\u13ef\u13cd\u13d7\u13f1": 14797, "\u13e9\u13d3\u13df\u13cc": 14798, "\u2581\u13af\u13c1\u13e5\u13f1": 14799, "\u2581\u13c2\u13d9\u13b2\u13c1": 14800, "\u2581\u13a4\u13f2\u13cf\u13cd\u13a9": 14801, "\u2581\u13a2\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13f1": 14802, "\u2581\u13a0\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b2": 14803, "\u13e5\u13e9\u13db\u13b2\u13d2\u13a9": 14804, "\u2581\u13e3\u13db\u13a6\u13c5\u13a2": 14805, "\u2581\u13f1\u13da\u13c3\u13d5": 14806, "\u2581\u13a0\u13aa\u13b2\u13cd\u13d9\u13d7\u13f1": 14807, "\u2581\u13a4\u13df\u13c3\u13ae\u13d4\u13c5": 14808, "\u13c7\u13c4\u13a9": 14809, "\u13e6\u13ea\u13b3\u13c1\u13b8": 14810, "\u2581\u13e5\u13da\u13a2\u13cd\u13d7": 14811, "\u2581\u13d3\u13e5\u13d0\u13c5\u13c5": 14812, "\u2581\u13e3\u13b4\u13c2\u13d3\u13cd\u13d7\u13f1": 14813, "\u13dd\u13c1\u13b4\u13a2": 14814, "\u2581\u13ed\u13e9\u13c1": 14815, "\u2581\u13a2\u13af\u13f4\u13c1\u13d7\u13f1": 14816, "\u2581\u13ef\u13c6\u13d3\u13c5\u13d6": 14817, "\u13db\u13d4\u13c3\u13c5": 14818, "\u13d3\u13a6\u13e5\u13f4\u13c1\u13b5": 14819, "\u2581\u13da\u13ee\u13d5": 14820, "\u2581\u13a4\u13c2\u13cd\u13c9\u13b5\u13f1": 14821, "\u2581\u13ed\u13d7\u13c5\u13d2\u13a9": 14822, "\u13a6\u13d0\u13a0\u13d2\u13a9": 14823, "\u2581\u13af\u13f2\u13cd\u13d3": 14824, "\u13e0\u13b2": 14825, "\u2581\u13db\u13c2\u13cd\u13d3\u13e9\u13d5\u13cf": 14826, "\u2581\u13d7\u13e5\u13c5\u13cd\u13d3\u13d5\u13b8\u13a9": 14827, "\u2581\u13af\u13ec\u13c1\u13d4\u13c5": 14828, "\u2581\u13a0\u13c1\u13b5\u13cd\u13a9": 14829, "\u13ec\u13a5\u13ce": 14830, "\u13c2\u13f4\u13d7\u13af": 14831, "\u13b8\u13a3\u13a2": 14832, "\u2581\u13a0\u13e5\u13f2\u13cd\u13d7": 14833, "\u2581\u13a4\u13db\u13c5\u13a2\u13cd\u13d4\u13be": 14834, "\u13be\u13c1\u13b3\u13d3": 14835, "\u13c2\u13ea\u13cd\u13a8\u13a2": 14836, "\u2581\u13f1\u13a8\u13e5\u13aa": 14837, "\u2581\u13c2\u13e8\u13c1\u13ad": 14838, "\u2581\u13a0\u13be\u13d3\u13ec": 14839, "\u2581\u13f3\u13a6\u13d8\u13d3": 14840, "\u2581\u13d7\u13e5\u13aa\u13a5": 14841, "\u2581\u13a1\u13e5\u13d9\u13b5\u13cd\u13d7\u13f1": 14842, "\u2581\u13e6\u13cf\u13c6": 14843, "\u2581\u13e9\u13a6\u13d6\u13a2": 14844, "\u2581\u13ac\u13ef\u13b5\u13c3\u13ae\u13d9\u13d7\u13f1": 14845, "\u13b1\u13c3\u13f4": 14846, "\u2581\u13e5\u13d7\u13a6\u13d4\u13ad": 14847, "\u2581\u13f1\u13d7\u13ac\u13a9": 14848, "\u2581\u13a0\u13d3\u13b6\u13c4\u13ae\u13cd\u13a9": 14849, "\u2581\u13af\u13aa\u13e9\u13d8\u13cd\u13a8\u13cd\u13d7": 14850, "\u2581\u13a4\u13be\u13cc\u13a5": 14851, "\u13c5\u13db\u13a2": 14852, "\u2581\u13c2\u13a6\u13a8\u13d2": 14853, "\u2581\u13ef\u13e5\u13c3\u13cd\u13a9": 14854, "\u2581\u13e7\u13c2\u13aa\u13b5\u13f0\u13d7": 14855, "\u13e4\u13ea\u13b8": 14856, "\u2581\u13c6\u13cf\u13d7\u13f1": 14857, "\u2581\u13a4\u13c2\u13c1\u13e4\u13b8\u13a9": 14858, "\u2581\u13da\u13d3\u13c5\u13a1\u13b8\u13a9": 14859, "\u13be\u13d3\u13e1\u13e9\u13d7\u13d2\u13a2": 14860, "\u2581\u13e3\u13a9\u13f0\u13b8\u13ad": 14861, "\u13dd\u13c5\u13a9": 14862, "\u2581\u13a4\u13df\u13c2\u13ac\u13c1\u13b4": 14863, "\u2581\u13a4\u13be\u13c1\u13e6": 14864, "\u2581\u13a3\u13a9\u13f2\u13cd\u13d9": 14865, "\u2581\u13a0\u13c2\u13f2\u13cd\u13d7\u13cd\u13a9": 14866, "\u13a8\u13b2\u13af": 14867, "\u2581\u13da\u13c4\u13d3": 14868, "\u2581\u13d9\u13a9\u13b2\u13a2": 14869, "\u2581\u13a4\u13be\u13d3\u13d3\u13cd\u13a9\u13cc\u13c1": 14870, "\u13a9\u13b8\u13d7\u13cd\u13ac": 14871, "\u13c1\u13a5\u13cf": 14872, "\u2581\u13da\u13c3\u13ae\u13ae\u13b4": 14873, "\u13be\u13b5\u13cd\u13d3": 14874, "\u13cd\u13c6\u13db\u13a6\u13cd\u13d3": 14875, "\u2581\u13d5\u13aa\u13a9\u13c2": 14876, "\u2581\u13a4\u13da\u13d3\u13d5\u13eb\u13d2": 14877, "\u2581\u13af\u13a7\u13d4\u13ad": 14878, "\u2581\u13a5\u13c6\u13ab\u13f4\u13a1": 14879, "\u2581\u13e3\u13c5\u13c5\u13a2": 14880, "\u2581\u13a2\u13a4\u13c1\u13e8": 14881, "\u2581\u13d8\u13cd\u13c6": 14882, "\u13cd\u13d7\u13b7\u13a9": 14883, "\u2581\u13ed\u13c3\u13af\u13ce\u13b4": 14884, "\u2581\u13ba\u13cc": 14885, "\u2581\u13af\u13ef\u13e0\u13ef\u13cd\u13d4\u13c5": 14886, "\u13b0\u13bb": 14887, "\u2581\u13a4\u13c2\u13a6\u13d8\u13ef": 14888, "\u2581\u13a0\u13c2\u13cd\u13a6\u13c5\u13a9": 14889, "\u2581\u13d3\u13b9\u13c2": 14890, "\u2581\u13f3\u13ea\u13c5": 14891, "\u2581\u13a4\u13c4\u13ee\u13a2": 14892, "\u2581\u13be\u13a9\u13f2": 14893, "\u2581\u13a0\u13e9\u13db\u13d9\u13d7": 14894, "\u2581\u13a4\u13ef\u13e4\u13a2": 14895, "\u13aa\u13b3\u13d7\u13f4\u13d7\u13f1": 14896, "\u2581\u13d5\u13e5\u13cd\u13d5\u13b5\u13cd\u13ac\u13a2": 14897, "\u2581\u13a4\u13d8\u13cd\u13db\u13a2": 14898, "\u2581\u13a0\u13c2\u13ef\u13d9\u13af\u13b2\u13a2": 14899, "\u2581\u13a2\u13e3\u13d3\u13c1\u13df\u13f4\u13ce\u13ac\u13a2": 14900, "\u2581\u13a4\u13be\u13c4\u13aa\u13e4\u13a2": 14901, "\u2581\u13a4\u13c2\u13d0\u13c5\u13e4\u13b4\u13a2": 14902, "\u13d3\u13c2\u13d9\u13b5\u13ac": 14903, "\u2581\u13a0\u13be\u13d3\u13c1\u13df\u13f4\u13ce\u13ac\u13a2": 14904, "\u2581\u13a5\u13c6\u13b8\u13a5\u13a2": 14905, "\u2581\u13a4\u13b5\u13ef\u13cd\u13da\u13c1\u13a2": 14906, "\u2581\u13d5\u13e3\u13c1\u13b6\u13db\u13a2": 14907, "\u2581\u13da\u13ea\u13b3\u13cd\u13d4\u13c1\u13a2": 14908, "\u2581\u13d9\u13d7\u13a7\u13c5\u13a2": 14909, "\u2581\u13e7\u13ec\u13af\u13f3\u13c1\u13a2": 14910, "\u2581\u13c2\u13e5\u13ea\u13d2\u13a2": 14911, "\u2581\u13a8\u13e5\u13db\u13d4\u13c1\u13a2": 14912, "\u2581\u13cd\u13a9\u13b7\u13e4\u13d7\u13f1": 14913, "\u2581\u13a1\u13e6\u13ce\u13b2\u13a2": 14914, "\u2581\u13da\u13ec\u13c1\u13d4\u13c5\u13a2": 14915, "\u2581\u13a8\u13e5\u13a8\u13f3\u13a2": 14916, "\u13c2\u13da\u13d1\u13f0\u13d0": 14917, "\u2581\u13cd\u13a9\u13f0\u13af": 14918, "\u2581\u13d5\u13a8\u13e5\u13be\u13dd\u13a5\u13a2": 14919, "\u13c3\u13b2\u13b5": 14920, "\u2581\u13a4\u13c2\u13c2\u13f4\u13db": 14921, "\u13d1\u13b5\u13ad": 14922, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13aa\u13a2": 14923, "\u2581\u13eb\u13f3\u13b6": 14924, "\u2581\u13a2\u13e8\u13a8\u13f3\u13d2\u13a2": 14925, "\u2581\u13a4\u13b5\u13b6\u13b2\u13cd\u13a9": 14926, "\u13c2\u13c1\u13a2\u13cd\u13d7": 14927, "\u2581\u13f4\u13d3\u13e5": 14928, "\u2581\u13ac\u13f4\u13d7\u13cd\u13ac\u13a2": 14929, "\u2581\u13a2\u13a9\u13ec\u13c2\u13af\u13cd\u13d7": 14930, "\u2581\u13ad\u13a2\u13d2\u13a2": 14931, "\u2581\u13a4\u13b4\u13f4\u13ce\u13a2": 14932, "\u2581\u13da\u13b5\u13e6\u13db\u13a2": 14933, "\u2581\u13a4\u13a6\u13d9\u13cd\u13db": 14934, "\u2581\u13d9\u13d3\u13e6": 14935, "\u2581\u13e7\u13c5\u13d5": 14936, "\u2581\u13da\u13e8\u13cd\u13db": 14937, "\u2581\u13a0\u13c2\u13a7\u13b2\u13cd": 14938, "\u2581\u13e5\u13d4\u13f2\u13af\u13b2": 14939, "\u2581\u13e5\u13e9\u13f4\u13af": 14940, "\u2581\u13a0\u13c6\u13db\u13c5\u13a2\u13cd\u13d4\u13c5": 14941, "\u2581\u13db\u13a6\u13db\u13a9": 14942, "\u2581\u13d3\u13c6\u13d9\u13cd\u13db": 14943, "\u2581\u13a2\u13a6\u13e4\u13b5\u13aa\u13af": 14944, "\u13cd\u13d5\u13b2": 14945, "\u2581\u13a4\u13e9\u13e9\u13d9\u13a3": 14946, "\u13d4\u13d7\u13cd\u13ac": 14947, "\u13c2\u13d4\u13b3\u13ec\u13cd\u13ac": 14948, "\u2581\u13a4\u13a8\u13b2\u13ce": 14949, "\u2581\u13d7\u13cd\u13a9\u13ef\u13d3\u13c2\u13b8\u13a9": 14950, "\u13d1\u13b5\u13cd\u13ac\u13a2": 14951, "\u2581\u13c2\u13aa\u13a9\u13ea\u13ce": 14952, "\u2581\u13d7\u13cd\u13d9\u13cd": 14953, "\u2581\u13a6\u13b5\u13d3\u13cd\u13d4\u13c5": 14954, "\u2581\u13a0\u13ab\u13a2\u13cd\u13d7\u13cd\u13ac\u13a2": 14955, "\u2581\u13da\u13c3\u13ae": 14956, "\u2581\u13f3\u13e9\u13d4\u13c5": 14957, "\u2581\u13c2\u13a8\u13d0": 14958, "\u2581\u13c5\u13d3\u13f2": 14959, "\u2581\u13d7\u13e3\u13b8\u13eb\u13cd\u13d3\u13c1": 14960, "\u2581\u13d5\u13a6\u13be\u13c4\u13aa\u13eb\u13ce": 14961, "\u13b4\u13f4\u13cd\u13d3": 14962, "\u2581\u13a2\u13e7\u13c5\u13c1\u13d7\u13f1": 14963, "\u2581\u13ed\u13d7\u13e2\u13cd\u13d4\u13c1\u13a2": 14964, "\u13e7\u13e1\u13cd": 14965, "\u2581\u13da\u13be\u13d7\u13c5\u13ce": 14966, "\u2581\u13d6\u13cf": 14967, "\u2581\u13ac\u13e9\u13cd\u13da": 14968, "\u13f0\u13a5": 14969, "\u2581\u13a6\u13b4\u13f4": 14970, "\u2581\u13a5\u13bf": 14971, "\u2581\u13e7\u13c2\u13b6\u13ce\u13a2": 14972, "\u2581\u13da\u13be\u13d0\u13b8": 14973, "\u13cc\u13d7\u13a6": 14974, "\u2581\u13a4\u13c2\u13bf\u13b7\u13d2": 14975, "\u2581\u13a0\u13c6\u13b4\u13c5\u13b2": 14976, "\u2581\u13d3\u13be\u13e3": 14977, "\u2581\u13a5\u13a9\u13b1\u13cd\u13d5\u13ce\u13b8": 14978, "\u2581\u13e7\u13cd\u13c6\u13c3\u13f4\u13aa": 14979, "\u2581\u13e5\u13c4\u13be\u13b5\u13cd\u13d4\u13c5": 14980, "\u2581\u13e9\u13c2\u13b6\u13af": 14981, "\u2581\u13a0\u13c6\u13b4\u13c2\u13d3\u13cd\u13d7\u13f1": 14982, "\u2581\u13e3\u13dd\u13ae": 14983, "\u2581\u13ac\u13e9\u13cd\u13d5\u13b5\u13cd\u13a9": 14984, "\u2581\u13a4\u13c4\u13e2\u13d4\u13c5\u13a9": 14985, "\u13a6\u13b5\u13cd\u13d7\u13f0\u13d3\u13c1\u13ad": 14986, "\u2581\u13d3\u13c1\u13a8": 14987, "\u2581\u13f3\u13d7\u13db\u13ad": 14988, "\u13c2\u13c9\u13d8": 14989, "\u2581\u13d5\u13e5\u13c1\u13ae\u13cd\u13d7": 14990, "\u2581\u13ef\u13be\u13cc": 14991, "\u2581\u13ac\u13e9\u13cd\u13d3\u13e9\u13d7\u13d9\u13ae": 14992, "\u2581\u13a0\u13c1\u13d9\u13b5\u13d9": 14993, "\u2581\u13eb\u13e8\u13b7\u13e4\u13b8": 14994, "\u2581\u13a2\u13e3\u13db\u13c1\u13b8\u13a9": 14995, "\u13e5\u13ef\u13b5\u13d7\u13a1": 14996, "\u13e5\u13cc\u13b3\u13d3\u13c5\u13ad": 14997, "\u2581\u13d7\u13e8\u13f3\u13aa\u13d3\u13c1\u13d7": 14998, "\u2581\u13f1\u13c3\u13e3\u13db\u13c1": 14999, "\u2581\u13a4\u13db\u13be\u13d7\u13a6\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 15000, "\u2581\u13d3\u13e3\u13be\u13c4\u13aa\u13eb\u13ce\u13b5": 15001, "\u13e5\u13d9\u13b5\u13e8\u13af": 15002, "\u13da\u13aa\u13d3\u13c1\u13b8": 15003, "\u13e5\u13cd\u13d3": 15004, "\u2581\u13d7\u13c2\u13c1\u13b3": 15005, "\u2581\u13a4\u13ea\u13ef\u13e2\u13c1": 15006, "\u2581\u13a0\u13be\u13d9\u13b4\u13b0\u13cd\u13d7": 15007, "\u2581\u13a0\u13c2\u13a9\u13cc": 15008, "\u2581\u13f1\u13c2\u13e8\u13c1\u13b8": 15009, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13cd\u13a8\u13a2": 15010, "\u2581\u13da\u13f2\u13b5\u13b4": 15011, "\u13b5\u13a5\u13c2\u13cd\u13d7\u13f1": 15012, "\u2581\u13a2\u13e7\u13e9\u13c1\u13b8\u13af": 15013, "\u2581\u13da\u13ec\u13d5\u13af\u13b0\u13a2": 15014, "\u2581\u13cd\u13a9\u13c2\u13d9\u13b5\u13a9": 15015, "\u2581\u13e7\u13c2\u13aa\u13e9\u13db\u13d7": 15016, "\u13c5\u13cf\u13d9": 15017, "\u2581\u13ac\u13e9\u13c2\u13c6\u13d8\u13b4\u13a2": 15018, "\u2581\u13a2\u13e4\u13c5\u13d2\u13a9": 15019, "\u2581\u13a0\u13c2\u13f0\u13b5\u13d2": 15020, "\u13b5\u13f0\u13a2\u13b6\u13a6": 15021, "\u2581\u13a4\u13e0\u13ef\u13cd\u13d9\u13d7\u13f1": 15022, "\u2581\u13a6\u13be\u13c4\u13aa\u13eb\u13cd\u13ac": 15023, "\u2581\u13d9\u13d3\u13e8\u13f2\u13cf": 15024, "\u2581\u13da\u13cd\u13d4\u13c5\u13c5": 15025, "\u2581\u13e3\u13a2\u13ce\u13a2": 15026, "\u2581\u13d9\u13db\u13c2\u13b5": 15027, "\u2581\u13a6\u13be\u13b1\u13a9\u13cd\u13ac": 15028, "\u2581\u13cd\u13a9\u13f2\u13ae\u13b8\u13ad": 15029, "\u2581\u13d7\u13e3\u13b8\u13eb\u13cd\u13d3\u13cf": 15030, "\u2581\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13cf": 15031, "\u2581\u13ad\u13b4\u13eb\u13cd\u13d3": 15032, "\u2581\u13d9\u13d3\u13ac\u13e9\u13c2\u13be\u13e2\u13c2": 15033, "\u2581\u13a4\u13b5\u13cd\u13db\u13c2\u13b4\u13a2": 15034, "\u2581\u13c2\u13ac\u13e9\u13c5\u13bf\u13d5\u13ac": 15035, "\u2581\u13a4\u13bf\u13cd\u13ac\u13e4": 15036, "\u2581\u13ad\u13d3\u13c4\u13d6\u13ef": 15037, "\u2581\u13af\u13c4\u13f4\u13d3": 15038, "\u2581\u13be\u13cb\u13c1\u13ad": 15039, "\u13d3\u13c5\u13a6\u13b8\u13be": 15040, "\u2581\u13a4\u13c2\u13c2\u13ac\u13ac": 15041, "\u2581\u13a4\u13c4\u13ec\u13cd\u13db\u13a9": 15042, "\u2581\u13ee\u13d3\u13e8\u13b7\u13e4\u13b5": 15043, "\u2581\u13e5\u13ef\u13ce\u13b5\u13d3\u13c1\u13b8": 15044, "\u2581\u13ac\u13e9\u13db\u13a6\u13c1\u13b8\u13af": 15045, "\u13c6\u13ad\u13bb": 15046, "\u2581\u13d3\u13a9\u13b7\u13eb\u13cd\u13d4\u13c1": 15047, "\u2581\u13e5\u13a9\u13b5\u13f2\u13a6": 15048, "\u2581\u13a0\u13c2\u13e5\u13b8\u13cd\u13a9": 15049, "\u13d1\u13b4\u13a5\u13af": 15050, "\u13f4\u13b2\u13ad": 15051, "\u2581\u13d3\u13db\u13a9\u13ad": 15052, "\u2581\u13e5\u13c6\u13b5\u13cf": 15053, "\u2581\u13eb\u13c2\u13a8": 15054, "\u2581\u13e7\u13ed\u13aa\u13d3\u13c1\u13d7\u13f1": 15055, "\u2581\u13a6\u13c5\u13c1\u13ae\u13cd\u13d7": 15056, "\u2581\u13f3\u13d3\u13b8": 15057, "\u2581\u13a4\u13d3\u13f1\u13b8\u13a9": 15058, "\u2581\u13a9\u13ef\u13d2\u13a6\u13b6\u13d7": 15059, "\u2581\u13a7\u13c3\u13a8": 15060, "\u2581\u13e7\u13c3\u13ea\u13b3\u13c5\u13af": 15061, "\u2581\u13d3\u13cd\u13ab\u13d3\u13db": 15062, "\u2581\u13ed\u13a6\u13d6": 15063, "\u13d3\u13f2\u13e4\u13b3\u13cd\u13d4\u13c2": 15064, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d4\u13c2\u13a6": 15065, "\u2581\u13a4\u13a9\u13b6\u13eb\u13ce": 15066, "\u2581\u13a4\u13e4\u13b8\u13b2": 15067, "\u2581\u13f1\u13ef\u13a1": 15068, "\u2581\u13d7\u13ef\u13e0": 15069, "\u2581\u13a4\u13be\u13db\u13a6\u13c1\u13b8": 15070, "\u13af\u13cc\u13d4\u13c1\u13a2": 15071, "\u2581\u13a4\u13d3\u13c2\u13ef\u13db": 15072, "\u2581\u13d5\u13a4\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 15073, "\u2581\u13d3\u13d3\u13be\u13c4\u13aa\u13eb": 15074, "\u2581\u13f1\u13d9\u13ac\u13c2": 15075, "\u2581\u13db\u13c2\u13cd\u13d7\u13cd\u13a9": 15076, "\u2581\u13e4\u13c5\u13d2\u13a9": 15077, "\u2581\u13c5\u13c6\u13d3\u13b4\u13c9": 15078, "\u2581\u13da\u13eb\u13ce\u13a2": 15079, "\u13c5\u13e9\u13c5\u13af": 15080, "\u2581\u13d7\u13a8\u13b6": 15081, "\u2581\u13f3\u13be\u13da\u13b5\u13ad": 15082, "\u2581\u13a4\u13be\u13d3\u13c8\u13ac": 15083, "\u2581\u13c2\u13ac\u13c2\u13cf\u13ad": 15084, "\u2581\u13e6\u13b3\u13bb": 15085, "\u2581\u13da\u13be\u13c2\u13cf": 15086, "\u13cf\u13db\u13d2\u13be": 15087, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b8\u13a9": 15088, "\u2581\u13d3\u13a6\u13b5\u13ec\u13e5": 15089, "\u2581\u13a6\u13dd\u13d7": 15090, "\u13d7\u13c1\u13b8\u13d9\u13d7": 15091, "\u13b3\u13eb\u13ce\u13b0": 15092, "\u2581\u13a2\u13e5\u13cd\u13d5\u13b8\u13d7\u13f1": 15093, "\u13c2\u13d4\u13f2\u13ce\u13d7\u13f1": 15094, "\u2581\u13a0\u13ef\u13e0": 15095, "\u2581\u13a6\u13be\u13a1": 15096, "\u2581\u13a4\u13c2\u13b5\u13d3\u13cd\u13d4\u13c5": 15097, "\u2581\u13ac\u13ec\u13b5\u13cd\u13d7": 15098, "\u2581\u13e7\u13be\u13c4\u13aa\u13eb\u13ce\u13b8\u13af": 15099, "\u2581\u13a0\u13e5\u13c3\u13ae\u13ad": 15100, "\u2581\u13c7\u13b5\u13c2": 15101, "\u2581\u13d7\u13a9\u13a1\u13d7\u13f1": 15102, "\u13e2\u13c9\u13d9\u13d7": 15103, "\u2581\u13b9\u13d3\u13c2": 15104, "\u2581\u13a0\u13c2\u13d7\u13e2\u13c9": 15105, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d4\u13c5\u13ce\u13a2": 15106, "\u2581\u13a2\u13e5\u13cd\u13a6\u13a9": 15107, "\u2581\u13e7\u13e6\u13d7": 15108, "\u2581\u13e7\u13d3\u13c2\u13d0\u13d7\u13f1": 15109, "\u2581\u13d7\u13cd\u13d9\u13cd\u13d7": 15110, "\u2581\u13ad\u13b9": 15111, "\u2581\u13a6\u13b7\u13a8": 15112, "\u13cd\u13d9\u13cd\u13a8\u13cd\u13d7": 15113, "\u2581\u13cc\u13b9": 15114, "\u13cd\u13d3\u13ca": 15115, "\u2581\u13a4\u13c2\u13c1\u13a6\u13b8": 15116, "\u2581\u13f3\u13c2\u13c3\u13ae\u13b4": 15117, "\u2581\u13e5\u13d5\u13a6\u13d8": 15118, "\u2581\u13ac\u13e9\u13b7\u13af\u13cd\u13d7": 15119, "\u2581\u13e5\u13eb\u13d7\u13a6": 15120, "\u2581\u13e5\u13eb\u13cd\u13aa\u13a2": 15121, "\u2581\u13a6\u13e5\u13a6\u13d4\u13ad": 15122, "\u13d7\u13a6\u13e3\u13c3\u13cd": 15123, "\u2581\u13da\u13ec\u13ef\u13c1\u13ce\u13a2": 15124, "\u13d1\u13b4\u13ad": 15125, "\u13c2\u13d9\u13ad": 15126, "\u2581\u13d3\u13c6\u13e2": 15127, "\u2581\u13a6\u13b5\u13e5\u13d9\u13c5": 15128, "\u2581\u13f3\u13aa\u13e9\u13db": 15129, "\u2581\u13d5\u13e3\u13d3\u13db\u13d7\u13cd\u13ac": 15130, "\u13d9\u13b5\u13e5\u13f0\u13c3": 15131, "\u13ee\u13d4\u13c1\u13a2": 15132, "\u13cf\u13d7\u13e2": 15133, "\u2581\u13c2\u13ac\u13c2\u13cc": 15134, "\u2581\u13a0\u13be\u13e8\u13cd": 15135, "\u2581\u13f1\u13c2\u13ea\u13cd\u13a8\u13cd\u13d7": 15136, "\u13db\u13aa\u13d9\u13d7": 15137, "\u2581\u13d3\u13d7\u13e9\u13db\u13af": 15138, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13c5": 15139, "\u2581\u13d7\u13e7\u13aa\u13d4\u13c5": 15140, "\u13f1\u13e3\u13b8\u13c2\u13d7\u13cd": 15141, "\u2581\u13a4\u13d4\u13c3": 15142, "\u2581\u13a0\u13b1\u13e2\u13db": 15143, "\u2581\u13d7\u13e5\u13f4\u13cf": 15144, "\u2581\u13c2\u13da\u13c5\u13bf\u13d5": 15145, "\u2581\u13a4\u13c2\u13cd\u13d3\u13e9\u13db\u13d2\u13a9": 15146, "\u2581\u13a8\u13e5\u13cd\u13a6\u13c5\u13e4": 15147, "\u2581\u13ed\u13c2\u13b7\u13af\u13cd\u13d7\u13f1": 15148, "\u13d3\u13f2\u13af\u13cf": 15149, "\u2581\u13a4\u13c2\u13cd\u13a6\u13b8\u13a9": 15150, "\u2581\u13da\u13c2\u13be\u13d7\u13c5\u13ce": 15151, "\u2581\u13ba\u13cc\u13ef": 15152, "\u2581\u13d3\u13a6\u13d8\u13f4": 15153, "\u2581\u13a6\u13b8\u13c9\u13d4\u13c5\u13af": 15154, "\u2581\u13a0\u13cd\u13a6\u13a2\u13b2": 15155, "\u2581\u13a1\u13a9\u13d9\u13b5\u13e8": 15156, "\u2581\u13da\u13c2\u13d2\u13c5": 15157, "\u2581\u13f4\u13a8\u13d7": 15158, "\u2581\u13e3\u13b4\u13eb\u13cd\u13d4\u13c5": 15159, "\u13c1\u13df\u13f4\u13cf": 15160, "\u2581\u13e7\u13db\u13c1\u13a2": 15161, "\u2581\u13e7\u13d5\u13c1\u13a2": 15162, "\u2581\u13f2\u13a9\u13aa": 15163, "\u2581\u13a0\u13e5\u13d9\u13b5\u13cd\u13d7\u13f1": 15164, "\u2581\u13cc\u13c6": 15165, "\u2581\u13a0\u13c2\u13c3\u13d7\u13cd\u13a9": 15166, "\u2581\u13c2\u13a6\u13a1": 15167, "\u2581\u13a0\u13c6\u13d5\u13c5\u13a9": 15168, "\u2581\u13a4\u13c2\u13c5\u13aa\u13a2\u13cd\u13d7": 15169, "\u2581\u13a0\u13c2\u13a9\u13cd\u13a8": 15170, "\u2581\u13f4\u13e7": 15171, "\u2581\u13a8\u13d9\u13ae\u13cd\u13d7": 15172, "\u2581\u13f1\u13e3\u13b5\u13cd\u13d3\u13f4": 15173, "\u13cf\u13d9\u13c2": 15174, "\u2581\u13c4\u13c1\u13e4": 15175, "\u2581\u13a2\u13e5\u13a6\u13d4\u13af": 15176, "\u13ac\u13ef\u13ab\u13f4\u13a1\u13b8": 15177, "\u13d3\u13be\u13e3\u13c5\u13d7\u13cd\u13a8\u13cd\u13d7": 15178, "\u2581\u13c2\u13d7\u13a6\u13b8\u13c9": 15179, "\u13d1\u13b8": 15180, "\u2581\u13a1\u13e5\u13a7\u13b5\u13a2": 15181, "\u2581\u13a4\u13c2\u13ad\u13b7\u13ac": 15182, "\u13da\u13a2\u13cd\u13d4\u13c5\u13a2": 15183, "\u2581\u13a0\u13c2\u13a6\u13ef\u13b7\u13a5\u13cd\u13a9": 15184, "\u2581\u13a4\u13ee\u13d7": 15185, "\u2581\u13a0\u13df\u13c3\u13ae\u13d9\u13d7": 15186, "\u2581\u13a0\u13d3\u13db\u13cd\u13ac": 15187, "\u13ef\u13aa\u13d7\u13f1": 15188, "\u2581\u13e5\u13d3\u13a6\u13b4\u13d4\u13c1": 15189, "\u2581\u13f3\u13c2\u13b8\u13c9": 15190, "\u2581\u13a0\u13e5\u13a6\u13d8\u13d7\u13cd\u13db": 15191, "\u2581\u13a4\u13ee\u13d7\u13f1": 15192, "\u2581\u13a0\u13c1\u13b8\u13d9\u13d7": 15193, "\u2581\u13e4\u13cd\u13d3": 15194, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 15195, "\u13d7\u13a6\u13b4\u13f2\u13d7": 15196, "\u2581\u13da\u13df\u13b6\u13cd\u13d4\u13c5": 15197, "\u2581\u13e6\u13cd\u13d3": 15198, "\u2581\u13aa\u13b5\u13a6": 15199, "\u2581\u13ed\u13a7": 15200, "\u13f2\u13e3\u13c3": 15201, "\u2581\u13c5\u13d3\u13e9\u13d3\u13b4\u13c5": 15202, "\u2581\u13d7\u13db\u13d9\u13d7\u13f1": 15203, "\u2581\u13a3\u13a8\u13b5\u13d2": 15204, "\u2581\u13a4\u13c1\u13a9\u13d2\u13a9": 15205, "\u2581\u13e5\u13a6\u13d4\u13be\u13a5": 15206, "\u13c2\u13d4\u13eb": 15207, "\u2581\u13e5\u13c2\u13a6\u13ea\u13a0": 15208, "\u2581\u13d1\u13d5\u13d8\u13f4": 15209, "\u2581\u13e3\u13be\u13b5\u13d6\u13b8": 15210, "\u2581\u13c5\u13d3\u13a6\u13e5": 15211, "\u2581\u13da\u13e9\u13ef": 15212, "\u2581\u13f1\u13d3\u13a9\u13ef\u13ea": 15213, "\u2581\u13a0\u13d5\u13ad\u13f2\u13b2": 15214, "\u2581\u13a4\u13e9\u13ad\u13c2\u13b8": 15215, "\u2581\u13e7\u13be\u13b5\u13cd\u13d9\u13d7": 15216, "\u13a4\u13f2\u13ae\u13b4": 15217, "\u2581\u13a0\u13e5\u13cd\u13da\u13d7": 15218, "\u2581\u13eb\u13da\u13d8\u13c3\u13b4": 15219, "\u2581\u13e7\u13f2\u13b1\u13ce": 15220, "\u2581\u13c3\u13c8": 15221, "\u2581\u13a4\u13b8\u13b4\u13a2": 15222, "\u2581\u13a4\u13b5\u13f0\u13a2\u13b6\u13b8": 15223, "\u2581\u13e5\u13a6\u13e5": 15224, "\u2581\u13e5\u13f0\u13bf\u13a5": 15225, "\u2581\u13a4\u13c1\u13df": 15226, "\u2581\u13a4\u13ea\u13d0": 15227, "\u2581\u13a0\u13cd\u13a9\u13d3\u13d2": 15228, "\u2581\u13e7\u13d9\u13b4\u13b0\u13ce": 15229, "\u2581\u13a4\u13b5\u13c3\u13ae\u13d7\u13cd\u13ac": 15230, "\u13ae\u13be\u13c2": 15231, "\u13ec\u13af\u13e8": 15232, "\u2581\u13a4\u13be\u13a9\u13b8\u13c1": 15233, "\u2581\u13a4\u13be\u13d7\u13a6\u13b5": 15234, "\u2581\u13a4\u13c3\u13cd\u13a9\u13d2\u13a2": 15235, "\u13b3\u13eb\u13e8": 15236, "\u2581\u13a4\u13b5\u13cd\u13a6\u13c2\u13cd\u13db": 15237, "\u2581\u13a5\u13a9\u13b8\u13a2": 15238, "\u2581\u13d5\u13a6\u13be\u13f0": 15239, "\u2581\u13da\u13c3\u13ae\u13ae\u13b8": 15240, "\u13b8\u13a1\u13d7": 15241, "\u2581\u13da\u13d5\u13b3\u13cd\u13d4": 15242, "\u13a6\u13e5\u13f4\u13d7\u13cd\u13ac": 15243, "\u13a9\u13af\u13b5\u13d3\u13cd\u13d7": 15244, "\u13d0\u13c5\u13ef": 15245, "\u2581\u13a0\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8\u13cd\u13d7": 15246, "\u2581\u13a4\u13c5\u13cd\u13a6\u13b8": 15247, "\u2581\u13a3\u13a9\u13c5\u13d2": 15248, "\u2581\u13d9\u13cd\u13d4": 15249, "\u2581\u13a0\u13a6\u13f2": 15250, "\u2581\u13a4\u13c4\u13f4": 15251, "\u2581\u13a5\u13d3\u13d7\u13cd\u13d5\u13b8\u13d7": 15252, "\u2581\u13d7\u13cd\u13c6\u13a7": 15253, "\u2581\u13a4\u13ec\u13af\u13f3\u13b2": 15254, "\u13c2\u13cc\u13b3\u13db\u13a9": 15255, "\u2581\u13a4\u13b5\u13c3\u13ae\u13d9\u13d7\u13f1": 15256, "\u2581\u13d7\u13a8\u13e5\u13a2\u13cd\u13d7\u13f1": 15257, "\u2581\u13a4\u13be\u13de\u13db": 15258, "\u13f2\u13b1\u13af\u13ce\u13ad": 15259, "\u13b4\u13cf\u13c2": 15260, "\u2581\u13da\u13c2\u13f2\u13af\u13ce\u13b8\u13a9": 15261, "\u2581\u13a4\u13be\u13da\u13b5\u13ad": 15262, "\u2581\u13a6\u13a6\u13b3": 15263, "\u2581\u13a0\u13d3\u13b9": 15264, "\u13f4\u13af\u13d3": 15265, "\u13b6\u13a3\u13d2": 15266, "\u2581\u13a4\u13c2\u13aa\u13b5\u13f0\u13d7": 15267, "\u2581\u13a4\u13c2\u13e6": 15268, "\u2581\u13eb\u13ac\u13e9\u13e3\u13c1": 15269, "\u13c3\u13e3\u13dd": 15270, "\u2581\u13e7\u13e9\u13db\u13d4\u13c5": 15271, "\u13aa\u13eb\u13d2": 15272, "\u2581\u13a4\u13c3\u13d4\u13c5": 15273, "\u2581\u13a4\u13c3\u13eb": 15274, "\u2581\u13a4\u13ee\u13d4\u13c1\u13a2": 15275, "\u2581\u13e5\u13eb\u13d9": 15276, "\u2581\u13e7\u13a8\u13f3\u13af": 15277, "\u2581\u13d7\u13a8\u13c5\u13d2": 15278, "\u2581\u13ed\u13f4\u13cd\u13d7": 15279, "\u2581\u13e5\u13c2\u13a6\u13a5": 15280, "\u2581\u13a0\u13c6\u13d9\u13b5": 15281, "\u13a4\u13ea\u13a7\u13c1\u13b4": 15282, "\u13d3\u13c1\u13e2": 15283, "\u13b5\u13f0\u13b2": 15284, "\u13f4\u13e3\u13d7\u13cd\u13d7": 15285, "\u2581\u13a0\u13aa\u13e9\u13d8\u13cd\u13aa\u13a2": 15286, "\u2581\u13a4\u13be\u13d8\u13c5\u13cd\u13d7\u13f1": 15287, "\u2581\u13f4\u13ac\u13be\u13db": 15288, "\u2581\u13a0\u13a9\u13ef\u13a0": 15289, "\u2581\u13a3\u13cd\u13d4": 15290, "\u13d5\u13d7\u13f1\u13a9": 15291, "\u2581\u13e7\u13e6": 15292, "\u2581\u13a6\u13be\u13c4\u13aa\u13e9": 15293, "\u2581\u13da\u13ea\u13a7\u13c1\u13b8": 15294, "\u2581\u13e3\u13be\u13f4": 15295, "\u2581\u13d3\u13e0\u13f1\u13b2\u13a9": 15296, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d4\u13c1": 15297, "\u2581\u13e5\u13f2\u13b5\u13a9": 15298, "\u2581\u13a6\u13c5\u13c6\u13b6\u13cd\u13d7": 15299, "\u2581\u13e5\u13c2\u13a8\u13e8\u13c1": 15300, "\u2581\u13a4\u13c2\u13ef\u13c5\u13b2\u13a9": 15301, "\u2581\u13a4\u13a6\u13ce\u13c2": 15302, "\u2581\u13a6\u13b5\u13c6": 15303, "\u2581\u13a2\u13ef\u13c9\u13b5\u13cd": 15304, "\u13cd\u13d5\u13b8\u13b2\u13ce": 15305, "\u13d5\u13f2\u13c5\u13a2": 15306, "\u2581\u13a3\u13a9\u13c3\u13ae\u13cd\u13ac\u13a2": 15307, "\u2581\u13a6\u13df\u13d0\u13d7\u13f1": 15308, "\u2581\u13a0\u13c2\u13c1\u13aa": 15309, "\u2581\u13c2\u13e5\u13f2": 15310, "\u13cc\u13b4\u13d3\u13c5": 15311, "\u13d9\u13a6\u13b5\u13c2\u13ac\u13ac": 15312, "\u2581\u13a4\u13c2\u13cc\u13b3\u13d3\u13c1": 15313, "\u2581\u13e7\u13b5\u13c2\u13a9\u13d7\u13f3": 15314, "\u2581\u13ed\u13e2\u13c1\u13a2": 15315, "\u2581\u13d9\u13a9\u13be\u13cd\u13a9\u13d3\u13d2\u13a9": 15316, "\u2581\u13da\u13b7\u13eb\u13cd\u13d4\u13c1\u13b8": 15317, "\u2581\u13e7\u13f2\u13af\u13ce\u13b8\u13af": 15318, "\u2581\u13a4\u13f0\u13df": 15319, "\u2581\u13d3\u13e8\u13cd\u13db": 15320, "\u2581\u13be\u13c6\u13db\u13bf\u13d5\u13ac\u13a9": 15321, "\u2581\u13c2\u13da\u13b5\u13cd\u13d4\u13c5\u13a9": 15322, "\u2581\u13a4\u13c2\u13f2\u13e0\u13af\u13ce\u13b8\u13a9": 15323, "\u2581\u13a4\u13ec\u13c1\u13d4\u13c5": 15324, "\u2581\u13a4\u13be\u13b5\u13ce": 15325, "\u13f2\u13cd\u13d4\u13c2\u13b8": 15326, "\u2581\u13e5\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1": 15327, "\u13c4\u13aa\u13a6": 15328, "\u2581\u13cf\u13ca": 15329, "\u2581\u13a4\u13c2\u13f4\u13eb\u13db": 15330, "\u2581\u13da\u13ed\u13aa\u13d4\u13c1": 15331, "\u2581\u13f4\u13d3\u13e8\u13f4": 15332, "\u2581\u13a0\u13b5\u13ae\u13b5\u13a9": 15333, "\u2581\u13a0\u13d4\u13d7": 15334, "\u2581\u13a3\u13ac\u13d5": 15335, "\u2581\u13a4\u13e5\u13b8\u13ce\u13cd\u13d7": 15336, "\u2581\u13be\u13c2\u13ea\u13ce\u13ae": 15337, "\u2581\u13cd\u13c7": 15338, "\u13db\u13e5\u13c1\u13e5": 15339, "\u2581\u13d3\u13be\u13d3\u13da": 15340, "\u2581\u13a4\u13d3\u13f2\u13c1": 15341, "\u2581\u13a4\u13a6\u13be\u13cf\u13cd\u13a9": 15342, "\u2581\u13a0\u13c2\u13d4\u13f2\u13af\u13ae": 15343, "\u2581\u13a4\u13d7\u13c5\u13ce": 15344, "\u2581\u13f3\u13cd\u13c6\u13c2\u13aa\u13d7": 15345, "\u2581\u13af\u13c1\u13e5": 15346, "\u13a6\u13ef\u13b7\u13a5": 15347, "\u2581\u13da\u13c2\u13f4\u13cd\u13d5": 15348, "\u2581\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 15349, "\u13d7\u13d3\u13b8": 15350, "\u2581\u13e3\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 15351, "\u2581\u13e9\u13cd\u13d5\u13cd\u13d7": 15352, "\u13b5\u13cd\u13c7\u13da\u13ee": 15353, "\u13be\u13c4\u13aa\u13aa\u13a2": 15354, "\u2581\u13d7\u13ac\u13cd\u13a6": 15355, "\u13f0\u13a2\u13b5\u13d5": 15356, "\u2581\u13a4\u13db\u13af\u13cd\u13d4\u13c1": 15357, "\u2581\u13e7\u13c2\u13f0\u13b8\u13cd\u13d7": 15358, "\u2581\u13eb\u13ac\u13be\u13a9": 15359, "\u13a9\u13ce\u13aa\u13a9\u13d2\u13a9": 15360, "\u2581\u13be\u13c6\u13b5\u13cd\u13d3\u13c1\u13ad": 15361, "\u13d2\u13c2\u13b2": 15362, "\u2581\u13e5\u13c2\u13d5\u13ac\u13c1\u13b0": 15363, "\u13c8\u13bb": 15364, "\u2581\u13eb\u13da\u13e0\u13d2": 15365, "\u2581\u13e3\u13e1\u13d7\u13cd\u13a9": 15366, "\u2581\u13b9\u13be\u13cf": 15367, "\u2581\u13a4\u13cd\u13c6\u13d9\u13be": 15368, "\u2581\u13a4\u13be\u13d3\u13b5\u13c1\u13af\u13d5": 15369, "\u2581\u13d3\u13a6\u13c4\u13aa\u13ac": 15370, "\u2581\u13da\u13c1\u13af\u13cd\u13d3\u13c1": 15371, "\u2581\u13da\u13cf\u13b3": 15372, "\u13c4\u13d3\u13c5\u13af\u13db": 15373, "\u2581\u13a8\u13e5\u13be\u13c4\u13aa\u13eb\u13ce\u13d7": 15374, "\u2581\u13da\u13c2\u13c5\u13d2\u13a9": 15375, "\u13d6\u13b8\u13a2": 15376, "\u13e5\u13aa\u13a5\u13cd\u13a6": 15377, "\u2581\u13a4\u13be\u13d3\u13c5\u13d2": 15378, "\u2581\u13a0\u13c2\u13ad\u13b9": 15379, "\u13ea\u13b3\u13be": 15380, "\u2581\u13a4\u13b1\u13c1": 15381, "\u2581\u13a2\u13e3\u13d3\u13e4\u13b5\u13db": 15382, "\u2581\u13a4\u13ec\u13d2\u13c1": 15383, "\u2581\u13b9\u13cf": 15384, "\u13b8\u13c9\u13d7\u13cd\u13ac\u13a2": 15385, "\u2581\u13d5\u13e5\u13ac\u13cd\u13aa\u13b8\u13a5\u13cd": 15386, "\u2581\u13a4\u13d3\u13ec\u13a2": 15387, "\u13be\u13b3\u13cd\u13d8\u13f0": 15388, "\u2581\u13a4\u13c2\u13c3\u13ae\u13b5\u13d9": 15389, "\u13cb\u13bf\u13d5\u13ac": 15390, "\u2581\u13a4\u13c2\u13b5\u13f0\u13d7\u13cd\u13ac": 15391, "\u2581\u13a4\u13c2\u13be\u13c4\u13aa\u13a2\u13cd\u13d7": 15392, "\u2581\u13da\u13c2\u13a7\u13c5\u13a9": 15393, "\u13ac\u13e9\u13b6\u13d4\u13c1": 15394, "\u13db\u13a8\u13cd\u13ac": 15395, "\u2581\u13da\u13d9\u13a8": 15396, "\u13af\u13f3\u13b2\u13cd\u13ac\u13be": 15397, "\u2581\u13d7\u13a8\u13e8": 15398, "\u2581\u13d7\u13cd\u13a9\u13f3\u13aa\u13d3\u13c1": 15399, "\u2581\u13d9\u13d7\u13e3": 15400, "\u2581\u13b9\u13b5\u13a6": 15401, "\u2581\u13e7\u13ec\u13aa\u13d3\u13c1": 15402, "\u2581\u13eb\u13d5\u13a6": 15403, "\u2581\u13eb\u13ac\u13a9\u13f4\u13cd": 15404, "\u2581\u13a4\u13cd\u13aa\u13c2\u13b4\u13a2": 15405, "\u2581\u13f1\u13c5\u13ac": 15406, "\u13c5\u13a5\u13a6": 15407, "\u13f0\u13b8\u13be\u13c1\u13b2": 15408, "\u2581\u13da\u13c5\u13cd\u13d3\u13d5\u13b8\u13a9": 15409, "\u2581\u13d4\u13c8": 15410, "\u2581\u13be\u13ef\u13db": 15411, "\u13d5\u13d9\u13b3\u13db\u13d7": 15412, "\u2581\u13a0\u13be\u13d7\u13cd\u13a9": 15413, "\u2581\u13af\u13c5\u13cd\u13d7\u13f1": 15414, "\u2581\u13a0\u13db\u13cd\u13aa\u13a2": 15415, "\u13b6\u13ae\u13cd\u13d7": 15416, "\u2581\u13a3\u13a9\u13aa\u13b2\u13a9": 15417, "\u13d7\u13c1\u13d7": 15418, "\u2581\u13a0\u13c2\u13c2\u13c6\u13d8\u13af": 15419, "\u2581\u13e5\u13f0\u13b8\u13c5": 15420, "\u2581\u13ed\u13ef\u13c5\u13db": 15421, "\u2581\u13a5\u13c6\u13d3\u13d3\u13b4": 15422, "\u2581\u13d3\u13a6\u13c5\u13d3": 15423, "\u13a8\u13af\u13d9\u13ae": 15424, "\u2581\u13a4\u13be\u13db\u13a6\u13c1\u13b8\u13af": 15425, "\u2581\u13a0\u13c2\u13b8\u13c9\u13d7\u13cd\u13a9": 15426, "\u2581\u13a2\u13e3\u13d3\u13d3\u13b4": 15427, "\u13ac\u13c6\u13e1\u13d4\u13c5": 15428, "\u2581\u13a4\u13b8\u13c3\u13d8\u13ad": 15429, "\u2581\u13a0\u13be\u13b5\u13d6\u13b8\u13c2": 15430, "\u2581\u13a6\u13b6\u13d0\u13b2\u13cd\u13a6": 15431, "\u2581\u13a8\u13a6\u13ce\u13b8\u13ad": 15432, "\u2581\u13d3\u13ac\u13f4": 15433, "\u2581\u13f1\u13d7\u13e3\u13d8\u13c2\u13d9": 15434, "\u2581\u13a4\u13be\u13e0\u13a5\u13d4": 15435, "\u2581\u13a2\u13e5\u13f2\u13a2": 15436, "\u2581\u13d7\u13a8\u13a6\u13e8\u13cd": 15437, "\u2581\u13a0\u13d7\u13d4\u13cd\u13a6": 15438, "\u2581\u13eb\u13a6\u13e9\u13d9": 15439, "\u2581\u13ad\u13a6\u13cc\u13ef\u13cd": 15440, "\u13da\u13d7\u13c5\u13d2\u13a9": 15441, "\u2581\u13a0\u13d2\u13db\u13d7": 15442, "\u13c1\u13b3\u13d7\u13d2": 15443, "\u2581\u13e5\u13e5\u13b7\u13a9": 15444, "\u13b7\u13e5\u13cc\u13c1": 15445, "\u2581\u13db\u13ca": 15446, "\u2581\u13c8\u13b3\u13ef": 15447, "\u2581\u13f1\u13d3\u13c6\u13c1": 15448, "\u2581\u13a4\u13b5\u13aa\u13d7": 15449, "\u2581\u13a3\u13a9\u13f0\u13b8\u13ad": 15450, "\u13e5\u13b8\u13c9\u13d7": 15451, "\u13f2\u13cf\u13cd\u13aa\u13a2": 15452, "\u2581\u13a0\u13c1\u13b7\u13b2\u13cd\u13ac": 15453, "\u2581\u13e6\u13a0\u13be": 15454, "\u2581\u13a4\u13be\u13a6\u13cc\u13ef\u13cd\u13d4\u13c1": 15455, "\u2581\u13d3\u13cd\u13da\u13b2\u13a2": 15456, "\u2581\u13a4\u13df\u13b6\u13cd\u13d7": 15457, "\u2581\u13d3\u13c2\u13b3\u13eb\u13a1": 15458, "\u13c5\u13db\u13c5\u13c1\u13b5": 15459, "\u2581\u13ac\u13cd\u13d5\u13b8\u13d7": 15460, "\u13ce\u13b5\u13d3\u13c1\u13b4\u13a2": 15461, "\u2581\u13af\u13b7\u13e4\u13d7\u13f1": 15462, "\u2581\u13a4\u13be\u13e0\u13e4\u13c9": 15463, "\u2581\u13a4\u13c2\u13d0\u13ef\u13cd": 15464, "\u2581\u13e7\u13d7\u13b4\u13a9": 15465, "\u2581\u13a1\u13a6\u13ab\u13f4\u13d3\u13c1\u13d7": 15466, "\u13df\u13c3\u13ae\u13d9\u13d7": 15467, "\u2581\u13a4\u13c5\u13aa\u13b3\u13db": 15468, "\u13a9\u13ef\u13ec\u13cd": 15469, "\u2581\u13a4\u13c2\u13f0\u13b8\u13ce\u13cd\u13d7": 15470, "\u13ce\u13ae\u13b5": 15471, "\u13d7\u13e5\u13f2\u13df": 15472, "\u2581\u13c5\u13e7": 15473, "\u2581\u13a7\u13c1\u13e8\u13af": 15474, "\u13cd\u13a6\u13c5\u13ac": 15475, "\u2581\u13ac\u13c3\u13cc": 15476, "\u2581\u13e5\u13d5\u13a6\u13d3": 15477, "\u13e5\u13cd\u13d4\u13dd": 15478, "\u13bc\u13d3": 15479, "\u2581\u13da\u13c2\u13ef\u13d9\u13ae": 15480, "\u2581\u13e6\u13a9\u13c3\u13a9\u13cd": 15481, "\u13b5\u13d1\u13eb": 15482, "\u2581\u13d7\u13e8\u13cd\u13d7\u13f1": 15483, "\u2581\u13c4\u13be\u13d3\u13d5": 15484, "\u2581\u13d5\u13e8\u13ef\u13e0\u13a2\u13cd\u13d3\u13c1": 15485, "\u2581\u13af\u13e3": 15486, "\u2581\u13d8\u13ef\u13d9": 15487, "\u2581\u13a4\u13be\u13d5\u13c1\u13a2": 15488, "\u13cc\u13d4\u13c1\u13a2": 15489, "\u2581\u13a4\u13c2\u13cd\u13a6\u13a2": 15490, "\u2581\u13e5\u13d5\u13af\u13f3\u13aa\u13d3\u13c1": 15491, "\u2581\u13d5\u13e5\u13c5\u13a6\u13b5\u13cd\u13aa": 15492, "\u2581\u13d7\u13a6\u13c1\u13cd": 15493, "\u2581\u13a2\u13c2\u13ef": 15494, "\u2581\u13f1\u13d7\u13ac\u13d5\u13aa": 15495, "\u2581\u13a0\u13be\u13e7": 15496, "\u13c3\u13cd\u13a9\u13ad": 15497, "\u2581\u13c2\u13ac\u13e9\u13db\u13c1\u13b4\u13a2": 15498, "\u2581\u13eb\u13a6\u13d5": 15499, "\u2581\u13ed\u13c2\u13f4\u13b2": 15500, "\u2581\u13d5\u13e7\u13aa\u13d4\u13c5": 15501, "\u2581\u13e3\u13a7\u13c5": 15502, "\u13af\u13b7\u13a9": 15503, "\u2581\u13c2\u13e3\u13db\u13c1\u13b4": 15504, "\u2581\u13a6\u13b7\u13aa\u13a2": 15505, "\u2581\u13ae\u13b5\u13ad": 15506, "\u2581\u13eb\u13d9\u13a4\u13b7\u13e4": 15507, "\u2581\u13eb\u13d9\u13db": 15508, "\u2581\u13d7\u13e5\u13a6\u13b5": 15509, "\u13ac\u13cd\u13aa\u13b8\u13d7\u13f1": 15510, "\u2581\u13a4\u13be\u13a6\u13cc\u13ef\u13cd\u13d9\u13a2": 15511, "\u2581\u13a0\u13c2\u13d7\u13e2": 15512, "\u2581\u13a7\u13b9": 15513, "\u2581\u13da\u13d3\u13c5\u13a1\u13b8\u13c3": 15514, "\u2581\u13f1\u13e5\u13aa\u13e9\u13d8\u13ad": 15515, "\u2581\u13a4\u13cd\u13a6\u13b8\u13a9": 15516, "\u2581\u13d3\u13be\u13b5\u13cd\u13db": 15517, "\u13a9\u13e3\u13c5": 15518, "\u2581\u13a3\u13a9\u13be\u13d6\u13c6\u13b6": 15519, "\u13e7\u13be\u13db\u13d2": 15520, "\u2581\u13ed\u13c2\u13c3\u13ae\u13b4": 15521, "\u2581\u13c2\u13cd\u13d3": 15522, "\u2581\u13c1\u13e3\u13d3": 15523, "\u13b8\u13d5\u13cd\u13d7\u13ad": 15524, "\u2581\u13d7\u13a9\u13be\u13eb\u13f1": 15525, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d4\u13c2\u13d3\u13cd\u13d7\u13f1": 15526, "\u2581\u13da\u13c5\u13a6\u13b8": 15527, "\u2581\u13a4\u13c2\u13aa\u13e9\u13db\u13d7": 15528, "\u2581\u13c2\u13ac\u13a9\u13ea\u13ce\u13b2": 15529, "\u2581\u13eb\u13d4": 15530, "\u13af\u13f3\u13af\u13ef": 15531, "\u2581\u13ef\u13be\u13b5\u13d6\u13b8\u13b2": 15532, "\u2581\u13a3\u13e3\u13db\u13a6": 15533, "\u2581\u13a0\u13d2\u13a2\u13cd\u13d7\u13cd": 15534, "\u2581\u13a7\u13c1\u13e8": 15535, "\u2581\u13a1\u13c2\u13cf": 15536, "\u2581\u13a4\u13c2\u13cd\u13a9\u13b8": 15537, "\u13da\u13be\u13c4\u13ee": 15538, "\u13ef\u13d7\u13d2\u13a2": 15539, "\u13be\u13ec\u13cf": 15540, "\u2581\u13e7\u13be\u13d3\u13b8": 15541, "\u13a9\u13b8\u13d4\u13c5": 15542, "\u2581\u13a4\u13b8\u13c9\u13db": 15543, "\u2581\u13c5\u13d3\u13f0\u13e5": 15544, "\u2581\u13f1\u13a6\u13b5\u13cd\u13d7\u13cd\u13a8": 15545, "\u2581\u13a1\u13a9\u13c1\u13b8\u13af": 15546, "\u13e5\u13f2\u13a2\u13f3\u13d3\u13c1\u13ad": 15547, "\u2581\u13a0\u13a9\u13cd\u13d9": 15548, "\u13e4\u13b3\u13cd\u13d3": 15549, "\u2581\u13d3\u13c2\u13f1\u13b5\u13d2": 15550, "\u2581\u13a4\u13c2\u13c1\u13a2\u13cd\u13d4\u13c1": 15551, "\u2581\u13a0\u13c3\u13cd\u13d3": 15552, "\u2581\u13a0\u13cd\u13da\u13c5": 15553, "\u2581\u13a0\u13e5\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac": 15554, "\u2581\u13d7\u13a6\u13e4\u13b5\u13a6": 15555, "\u2581\u13a4\u13b5\u13cd\u13d3\u13f4\u13be\u13c1\u13d7\u13f1": 15556, "\u13e5\u13c1\u13e6": 15557, "\u13c1\u13b3\u13c5": 15558, "\u13ac\u13e9\u13db\u13d3\u13cd\u13d3\u13c1\u13b4": 15559, "\u13b6\u13c8": 15560, "\u2581\u13ac\u13e3\u13d3": 15561, "\u13e3\u13d5\u13b0\u13af\u13cd\u13d7": 15562, "\u13e0\u13d7\u13f1": 15563, "\u2581\u13a2\u13d5\u13c5": 15564, "\u2581\u13ac\u13be\u13c4\u13aa\u13eb\u13ce\u13d7": 15565, "\u2581\u13a4\u13be\u13e3\u13c5\u13af": 15566, "\u2581\u13d7\u13d6\u13b5": 15567, "\u2581\u13e7\u13be\u13d3\u13b8\u13af": 15568, "\u2581\u13d7\u13e4\u13c5": 15569, "\u2581\u13a6\u13be\u13c4\u13aa\u13eb\u13cd\u13a6": 15570, "\u2581\u13da\u13c3\u13e3\u13dd\u13c1": 15571, "\u2581\u13a4\u13c2\u13aa\u13b5\u13f0\u13a5": 15572, "\u2581\u13cc\u13ba\u13b5": 15573, "\u2581\u13d5\u13ac\u13e9\u13be\u13e2\u13a5\u13cd": 15574, "\u2581\u13a0\u13c2\u13cd\u13a6\u13c5\u13ac": 15575, "\u2581\u13e7\u13d3\u13c6": 15576, "\u2581\u13f1\u13c1\u13a6": 15577, "\u13b5\u13d9\u13a9\u13af": 15578, "\u2581\u13d3\u13a6\u13db\u13a6": 15579, "\u2581\u13a6\u13b6\u13c1": 15580, "\u2581\u13e3\u13be\u13db\u13a9\u13cd\u13aa": 15581, "\u2581\u13e3\u13f4\u13cd\u13d7\u13f1": 15582, "\u2581\u13d7\u13cb": 15583, "\u2581\u13e7\u13eb\u13ce\u13a2": 15584, "\u2581\u13a0\u13be\u13d9": 15585, "\u13c4\u13ec\u13a5\u13a9": 15586, "\u13d7\u13c6\u13b8\u13d5": 15587, "\u13d3\u13ec\u13cd\u13a9": 15588, "\u13c2\u13aa\u13c1\u13b6\u13cd\u13a8\u13a2": 15589, "\u2581\u13e5\u13d5\u13a4\u13b4\u13d4": 15590, "\u2581\u13a4\u13c1\u13b7\u13a8": 15591, "\u2581\u13a4\u13e8\u13a2\u13cd\u13d7": 15592, "\u13a2\u13ab\u13e9\u13df\u13cd": 15593, "\u2581\u13cd\u13a9\u13a2\u13cd\u13d7\u13f1": 15594, "\u2581\u13d8\u13aa\u13af": 15595, "\u2581\u13e5\u13aa\u13ce\u13ad": 15596, "\u2581\u13e3\u13c1\u13b8\u13ad": 15597, "\u2581\u13a0\u13e5\u13cd\u13da\u13b2\u13a2": 15598, "\u2581\u13d7\u13e5\u13ef\u13a6\u13c5": 15599, "\u2581\u13da\u13c2\u13b3\u13eb\u13e4\u13a2": 15600, "\u2581\u13f1\u13ac\u13d7\u13ad": 15601, "\u2581\u13a4\u13da\u13d3\u13d5\u13eb\u13d2\u13a2": 15602, "\u13ad\u13c4\u13ec": 15603, "\u2581\u13e5\u13a6\u13db\u13a6": 15604, "\u2581\u13da\u13cd\u13d3\u13e9\u13db\u13ce\u13a2": 15605, "\u2581\u13d9\u13d7\u13a7\u13c2\u13cd\u13ac\u13a2": 15606, "\u2581\u13da\u13a7\u13bf\u13e9\u13d7\u13d9\u13ae\u13a2": 15607, "\u2581\u13e7\u13a9\u13e5\u13cd\u13aa\u13a2": 15608, "\u2581\u13ed\u13a9\u13b8\u13c1\u13a2": 15609, "\u2581\u13d3\u13be\u13d3\u13a7\u13c5": 15610, "\u2581\u13a4\u13b5\u13d8\u13d2\u13a9": 15611, "\u2581\u13a4\u13be\u13a9\u13b3\u13eb\u13ce": 15612, "\u2581\u13a4\u13be\u13a6\u13ce\u13cd": 15613, "\u2581\u13a0\u13c2\u13a6\u13f2\u13b5\u13c9": 15614, "\u2581\u13a0\u13be\u13b5\u13c5\u13e2\u13a2": 15615, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8\u13a2": 15616, "\u2581\u13a6\u13ec\u13c2\u13cd\u13a8\u13cd\u13d7": 15617, "\u2581\u13a4\u13d9\u13af\u13f3\u13ad\u13cd\u13aa": 15618, "\u2581\u13ac\u13a6\u13d4\u13ad": 15619, "\u13ad\u13db\u13a6": 15620, "\u2581\u13af\u13b6\u13c1": 15621, "\u2581\u13a4\u13be\u13a6\u13ce\u13cd\u13db\u13a2": 15622, "\u2581\u13a2\u13ef\u13c6": 15623, "\u2581\u13eb\u13d3\u13a7\u13c1\u13a2": 15624, "\u2581\u13d3\u13c2\u13ec\u13c2\u13cd\u13ac\u13a2": 15625, "\u2581\u13e5\u13c2\u13a8\u13ce\u13a2": 15626, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d3\u13c1\u13b8\u13a2": 15627, "\u2581\u13a4\u13be\u13da\u13b5\u13cd\u13aa\u13a2": 15628, "\u2581\u13a4\u13b6\u13c4\u13ae\u13d7\u13f1": 15629, "\u2581\u13d5\u13e5\u13a7\u13bf\u13e9\u13d7\u13d2\u13a2": 15630, "\u2581\u13ac\u13e9\u13ad\u13b7": 15631, "\u2581\u13d7\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7": 15632, "\u2581\u13e7\u13aa\u13c5": 15633, "\u2581\u13a3\u13e3\u13d9\u13b4\u13b0": 15634, "\u2581\u13f1\u13aa\u13b5\u13a8\u13a2": 15635, "\u2581\u13eb\u13c2\u13d3": 15636, "\u2581\u13a4\u13aa\u13cf": 15637, "\u2581\u13a4\u13cd\u13aa\u13ce": 15638, "\u2581\u13da\u13be\u13d8\u13c5\u13ce": 15639, "\u2581\u13a4\u13ea\u13d8\u13c1": 15640, "\u13cf\u13d9\u13b5": 15641, "\u13aa\u13af\u13f3\u13b2\u13cd\u13aa\u13a2": 15642, "\u2581\u13a0\u13a6\u13d8\u13f2": 15643, "\u2581\u13a4\u13c2\u13e2\u13d7": 15644, "\u13c6\u13ce\u13b5\u13d3\u13c1\u13b8\u13a9": 15645, "\u2581\u13c2\u13da\u13db\u13c1\u13b4\u13a2": 15646, "\u2581\u13a4\u13ef\u13db\u13c5": 15647, "\u2581\u13c2\u13da\u13c5\u13c1\u13b4\u13a2": 15648, "\u2581\u13a4\u13d2\u13a6\u13b8\u13a2": 15649, "\u13a7\u13ad\u13db": 15650, "\u2581\u13a4\u13be\u13da\u13d3\u13b4\u13cd\u13d9\u13d7": 15651, "\u2581\u13a4\u13ef\u13b7\u13a6": 15652, "\u2581\u13e4\u13a6\u13db": 15653, "\u13cd\u13a9\u13c5\u13a6\u13b8": 15654, "\u13d5\u13d2\u13be": 15655, "\u13f2\u13cd\u13d9\u13d7\u13cd\u13ac\u13a2": 15656, "\u2581\u13da\u13c2\u13f2\u13b0\u13ce": 15657, "\u2581\u13e3\u13aa\u13e9\u13d8\u13ad": 15658, "\u2581\u13c4\u13a6\u13d4\u13b2\u13be": 15659, "\u2581\u13a8\u13e3\u13e1\u13d7\u13cd\u13ac\u13a2": 15660, "\u2581\u13d3\u13cd\u13da\u13db": 15661, "\u2581\u13a0\u13c2\u13b7\u13a8\u13a2": 15662, "\u13db\u13c1\u13cf": 15663, "\u13e3\u13da\u13d3\u13b3\u13a1\u13d7": 15664, "\u2581\u13c2\u13ac\u13a9\u13ea\u13ce\u13b8": 15665, "\u2581\u13e5\u13cd\u13da\u13c2\u13a9\u13cd\u13d7\u13af": 15666, "\u13ba\u13cf": 15667, "\u2581\u13a4\u13c2\u13cc\u13c5": 15668, "\u2581\u13eb\u13ac\u13e9\u13f4\u13d4\u13c1\u13a2": 15669, "\u2581\u13a4\u13be\u13b5\u13d2\u13a9": 15670, "\u13be\u13eb\u13db\u13ae\u13a2": 15671, "\u2581\u13c5\u13e9\u13cd\u13d5\u13cd\u13d7": 15672, "\u13b5\u13d2\u13cd\u13d4\u13c1": 15673, "\u2581\u13a2\u13a4\u13be\u13e8\u13ce\u13a2": 15674, "\u2581\u13a6\u13ec\u13c2\u13ad": 15675, "\u2581\u13a0\u13be\u13d3\u13cd\u13d4\u13f4\u13b2\u13cd": 15676, "\u2581\u13ac\u13e3\u13d7": 15677, "\u2581\u13d7\u13a8\u13ab\u13aa\u13d3\u13c1\u13d7\u13f1": 15678, "\u2581\u13e3\u13c5\u13cf\u13d3\u13cd\u13d7": 15679, "\u13b3\u13d1\u13dd\u13c5": 15680, "\u2581\u13a4\u13c2\u13e9\u13d2\u13af": 15681, "\u2581\u13d8\u13be\u13c4\u13aa\u13eb\u13cf": 15682, "\u13be\u13d3\u13b4\u13c1\u13a2": 15683, "\u13be\u13c4\u13aa\u13eb\u13ce\u13d7": 15684, "\u2581\u13d5\u13e3\u13d3\u13c2\u13b8\u13e8\u13ad": 15685, "\u13be\u13e6\u13a5\u13cd\u13d7": 15686, "\u2581\u13ad\u13db\u13a9": 15687, "\u2581\u13ed\u13be\u13d3": 15688, "\u2581\u13c2\u13a6\u13cd\u13db\u13a2": 15689, "\u2581\u13a6\u13c5\u13d3\u13d7\u13cd\u13aa": 15690, "\u2581\u13c2\u13a6\u13e5\u13ea\u13ce\u13b8\u13a9": 15691, "\u2581\u13a0\u13c7\u13d3\u13cd\u13d7\u13f1": 15692, "\u2581\u13ad\u13b5\u13ae\u13b5\u13a9": 15693, "\u2581\u13a0\u13c6\u13b4\u13c5\u13d7": 15694, "\u13be\u13d5\u13a8\u13cd\u13d7": 15695, "\u2581\u13a0\u13e5\u13f0\u13b8\u13be\u13c1\u13b4\u13a2": 15696, "\u2581\u13e3\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 15697, "\u13f2\u13b5\u13b8\u13ad": 15698, "\u2581\u13ed\u13c1\u13b4\u13a2": 15699, "\u2581\u13a3\u13e5\u13c3\u13ae\u13cd\u13ac\u13a2": 15700, "\u2581\u13a4\u13b5\u13c2\u13aa\u13af\u13cd\u13d7": 15701, "\u13e7\u13d4\u13a9": 15702, "\u2581\u13a4\u13b5\u13f0\u13d1\u13cd\u13d9\u13a9": 15703, "\u13a6\u13b5\u13cd\u13d3\u13db\u13a9": 15704, "\u2581\u13cd\u13a9\u13cd\u13d5\u13b8\u13af\u13d3": 15705, "\u2581\u13d7\u13cd\u13a9\u13b3\u13d7\u13cd\u13d7": 15706, "\u2581\u13a1\u13ab\u13d3\u13b4": 15707, "\u2581\u13d5\u13a0\u13be": 15708, "\u2581\u13a0\u13db\u13c5\u13a2\u13cd\u13d4\u13c5\u13af": 15709, "\u2581\u13a0\u13a7\u13b5\u13e8": 15710, "\u13a9\u13b5\u13a8\u13c2": 15711, "\u2581\u13da\u13be\u13d9\u13a1": 15712, "\u2581\u13f1\u13e5\u13aa": 15713, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d6\u13cd\u13d7": 15714, "\u13c2\u13d4\u13f2\u13b4\u13a2": 15715, "\u2581\u13d3\u13c2\u13cd\u13d5\u13f2": 15716, "\u2581\u13ed\u13c2\u13e9\u13af": 15717, "\u2581\u13a6\u13c4\u13aa\u13a2": 15718, "\u13df\u13b6\u13d2\u13b8": 15719, "\u2581\u13ed\u13a9\u13ce\u13a2": 15720, "\u2581\u13e3\u13b5\u13c2\u13a9\u13db": 15721, "\u13ac\u13e9\u13aa\u13c1\u13b6\u13af\u13ce\u13b8\u13a9": 15722, "\u2581\u13f2\u13e4\u13be": 15723, "\u2581\u13e7\u13c2\u13c4": 15724, "\u2581\u13a8\u13be\u13cf": 15725, "\u2581\u13db\u13c7": 15726, "\u2581\u13af\u13ef\u13cf\u13d4\u13db": 15727, "\u13b3\u13d7\u13d9\u13ae\u13a2": 15728, "\u13db\u13db\u13ae\u13b8\u13c1": 15729, "\u13c2\u13d0\u13a2": 15730, "\u2581\u13e7\u13c1\u13cd\u13a8\u13ae\u13a2": 15731, "\u2581\u13ed\u13b5\u13d2": 15732, "\u2581\u13a6\u13a7\u13b2\u13a2": 15733, "\u13cd\u13d3\u13f1\u13d7": 15734, "\u2581\u13a4\u13a9\u13d0\u13c5": 15735, "\u13cd\u13d3\u13c1\u13b8\u13a9": 15736, "\u2581\u13da\u13c2\u13e1": 15737, "\u13a6\u13b5\u13d2": 15738, "\u2581\u13d7\u13ac\u13ed\u13aa": 15739, "\u13b9\u13de": 15740, "\u13d3\u13d9\u13b3\u13cd\u13d7\u13cd": 15741, "\u2581\u13a4\u13d5\u13c3\u13c5": 15742, "\u2581\u13a6\u13c4\u13b3\u13e5": 15743, "\u13d7\u13d2\u13b2\u13cd\u13a6": 15744, "\u13a6\u13c1\u13b2\u13be": 15745, "\u2581\u13a4\u13c5\u13e9\u13c1\u13a2": 15746, "\u2581\u13f1\u13c2\u13e3\u13db\u13c1\u13ad": 15747, "\u13a9\u13dd\u13c5": 15748, "\u2581\u13eb\u13d5\u13d3": 15749, "\u13c6\u13f2\u13d7": 15750, "\u13e3\u13c5\u13d6\u13cd\u13d7": 15751, "\u2581\u13a0\u13a9\u13ef\u13a5\u13a2": 15752, "\u2581\u13a4\u13be\u13e6\u13db": 15753, "\u13d0\u13af\u13cd\u13d7": 15754, "\u2581\u13e7\u13ec\u13d5\u13cd\u13d7": 15755, "\u13cf\u13cd\u13a8\u13a2": 15756, "\u2581\u13a4\u13c2\u13b5\u13d3\u13cd\u13d7": 15757, "\u2581\u13a0\u13a6\u13cc\u13ef\u13cd\u13d9\u13d7": 15758, "\u13d8\u13dd": 15759, "\u2581\u13a0\u13cb\u13d4\u13c5\u13a9": 15760, "\u2581\u13d7\u13a6\u13d9\u13a8\u13a2": 15761, "\u13cd\u13da\u13de": 15762, "\u2581\u13a4\u13c2\u13a8\u13db": 15763, "\u2581\u13a0\u13b5\u13cd\u13c6\u13d7\u13cd\u13ac\u13a2": 15764, "\u2581\u13a2\u13e5\u13be\u13f0\u13cd\u13ac\u13a2": 15765, "\u2581\u13eb\u13ac\u13e9\u13b7\u13e4\u13b4": 15766, "\u2581\u13e3\u13da\u13b5\u13cd\u13a8\u13cd\u13d7": 15767, "\u2581\u13d3\u13e8\u13cd\u13d5": 15768, "\u13b7\u13e8\u13be": 15769, "\u2581\u13e7\u13f2\u13cf\u13cd\u13a8\u13a2": 15770, "\u2581\u13a0\u13c2\u13d4\u13f2\u13af\u13b2": 15771, "\u2581\u13a8\u13a6\u13d9": 15772, "\u2581\u13a0\u13c2\u13a8\u13d5": 15773, "\u13ac\u13cd\u13c9": 15774, "\u2581\u13a3\u13a9\u13be\u13b5\u13aa\u13ad": 15775, "\u2581\u13a0\u13c9\u13ea\u13b3\u13c5\u13af": 15776, "\u2581\u13e8\u13e3": 15777, "\u13ac\u13e9\u13b7\u13e4\u13d7\u13f1": 15778, "\u13db\u13c1\u13b8\u13d7": 15779, "\u2581\u13c5\u13db\u13cd\u13a9": 15780, "\u2581\u13a5\u13a9\u13c1\u13b8\u13a2": 15781, "\u13d3\u13c1\u13b4\u13cd\u13d7": 15782, "\u2581\u13a0\u13e5\u13b3\u13eb\u13ce\u13b2": 15783, "\u2581\u13cc\u13a8": 15784, "\u2581\u13ef\u13d7\u13d7": 15785, "\u13c5\u13aa\u13eb\u13cd\u13d7": 15786, "\u2581\u13da\u13ea\u13b3\u13d7\u13d9": 15787, "\u2581\u13da\u13c2\u13a9\u13cd\u13d4\u13c1": 15788, "\u13da\u13be\u13d3\u13b4\u13bf": 15789, "\u2581\u13e7\u13ed\u13aa\u13d9\u13d7\u13f1": 15790, "\u13e9\u13be\u13a6\u13b6\u13e4": 15791, "\u13d9\u13a2\u13db": 15792, "\u2581\u13e7\u13c2\u13f0\u13b8\u13af": 15793, "\u2581\u13e5\u13c4\u13be\u13b5\u13cd\u13d3\u13c1\u13b4": 15794, "\u2581\u13c2\u13d3\u13ac": 15795, "\u2581\u13e3\u13c5\u13cf\u13d9\u13af": 15796, "\u13a6\u13d4\u13b2\u13a1": 15797, "\u2581\u13d3\u13f2\u13cd\u13d7": 15798, "\u13d2\u13c2\u13a6": 15799, "\u13a4\u13d7\u13db\u13b2": 15800, "\u13db\u13a9\u13cd\u13ac\u13be": 15801, "\u2581\u13eb\u13a6\u13be\u13c4\u13aa\u13a9": 15802, "\u2581\u13a4\u13ea\u13ae\u13a2": 15803, "\u2581\u13a0\u13a6\u13d4\u13e9\u13d5": 15804, "\u2581\u13f2\u13a6\u13da\u13b5": 15805, "\u2581\u13a5\u13a9\u13c3\u13c1\u13b8": 15806, "\u13d7\u13e5\u13c2\u13f1\u13cd": 15807, "\u2581\u13e6\u13c6": 15808, "\u2581\u13a0\u13be\u13c2\u13a9\u13cd\u13ac": 15809, "\u2581\u13d7\u13a8\u13a6\u13a6\u13c5\u13d7": 15810, "\u2581\u13a4\u13d3\u13c1\u13df\u13f4\u13ce": 15811, "\u13c2\u13f2\u13ae\u13b2": 15812, "\u13b5\u13cf\u13b2\u13d2\u13a9": 15813, "\u2581\u13a4\u13e3\u13b4\u13db": 15814, "\u2581\u13be\u13be\u13db\u13a6": 15815, "\u13d3\u13c1\u13e3\u13cd\u13da\u13b6": 15816, "\u2581\u13d7\u13aa\u13e2\u13d2": 15817, "\u13af\u13ef\u13cd\u13aa": 15818, "\u2581\u13e3\u13d2\u13a6\u13b8": 15819, "\u13e6\u13b5": 15820, "\u13b3\u13eb\u13a9": 15821, "\u2581\u13ec\u13b6\u13d2": 15822, "\u13a2\u13b5\u13bb": 15823, "\u2581\u13a0\u13be\u13d3\u13d9\u13b5": 15824, "\u2581\u13ad\u13d7\u13cd\u13a8\u13cd\u13d7": 15825, "\u2581\u13a0\u13c2\u13a1\u13bc": 15826, "\u13eb\u13c5": 15827, "\u2581\u13a2\u13d1": 15828, "\u2581\u13da\u13d3\u13a8": 15829, "\u13a8\u13e3\u13e1\u13d7\u13ad": 15830, "\u2581\u13a4\u13b5\u13cd\u13d3\u13f4\u13c5": 15831, "\u2581\u13a4\u13ec\u13b4\u13cd\u13d7": 15832, "\u2581\u13da\u13be\u13b5\u13cd": 15833, "\u13c1\u13e5\u13ea\u13cf": 15834, "\u2581\u13e5\u13a9\u13ef\u13a0": 15835, "\u13e5\u13c1\u13e4\u13b8\u13a2": 15836, "\u2581\u13a4\u13b3\u13cd\u13d3": 15837, "\u2581\u13a0\u13e8\u13c9\u13d7\u13cd": 15838, "\u13c5\u13a5\u13cd\u13ac": 15839, "\u2581\u13e3\u13a6\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7": 15840, "\u13ab\u13d3\u13b4\u13cd\u13ac\u13a2": 15841, "\u2581\u13a4\u13c3\u13af\u13b5": 15842, "\u2581\u13a4\u13ea\u13b2": 15843, "\u13b2\u13cd\u13d4\u13c5\u13a9": 15844, "\u2581\u13da\u13c2\u13ef\u13a3\u13c5": 15845, "\u2581\u13a0\u13b5\u13cd\u13a6\u13c3\u13cd": 15846, "\u2581\u13f1\u13ac\u13cd\u13a6\u13c5": 15847, "\u13d5\u13d9\u13b3\u13db": 15848, "\u2581\u13f3\u13db\u13c5": 15849, "\u13c6\u13b8\u13db": 15850, "\u2581\u13d5\u13a4\u13ea\u13a7": 15851, "\u13aa\u13e2\u13be\u13c1\u13b4\u13a2": 15852, "\u13ef\u13c2\u13cf\u13c1\u13b8": 15853, "\u2581\u13a0\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 15854, "\u2581\u13e5\u13d7\u13b8\u13c9\u13d7": 15855, "\u2581\u13ac\u13e9\u13c4\u13aa\u13eb": 15856, "\u2581\u13a2\u13e6\u13db": 15857, "\u13d5\u13a9\u13b3\u13c1\u13b8": 15858, "\u13cc\u13cc": 15859, "\u13d3\u13c2\u13cf\u13be": 15860, "\u2581\u13a2\u13e3\u13d3\u13d9": 15861, "\u13ce\u13b2\u13be": 15862, "\u2581\u13cd\u13a9\u13ef\u13ab\u13f4\u13d3": 15863, "\u2581\u13a0\u13ef\u13a1": 15864, "\u13e9\u13af\u13cf": 15865, "\u2581\u13a4\u13cd\u13c6\u13b8\u13af": 15866, "\u13d3\u13b5\u13d3\u13cd\u13d7\u13ad": 15867, "\u2581\u13d9\u13db\u13d9": 15868, "\u2581\u13a4\u13c2\u13cd\u13da\u13b6\u13d4": 15869, "\u13be\u13db\u13cd\u13a9": 15870, "\u13b5\u13cd\u13d3\u13f4\u13b2\u13a6": 15871, "\u2581\u13e3\u13d5\u13a6": 15872, "\u2581\u13a4\u13ea\u13b5\u13ce\u13b4\u13a2": 15873, "\u2581\u13ac\u13c6\u13d3\u13c5\u13d3\u13d7\u13cd": 15874, "\u13d7\u13e5\u13a6\u13d8\u13ef": 15875, "\u2581\u13c4\u13d3\u13b5": 15876, "\u2581\u13d7\u13d3\u13b5\u13ce": 15877, "\u2581\u13d3\u13c2\u13d9\u13ac\u13a9": 15878, "\u2581\u13c2\u13a4\u13ea\u13ce\u13a2": 15879, "\u13ec\u13c1\u13d4\u13c5\u13a9": 15880, "\u2581\u13a2\u13f3\u13b5\u13cd\u13d4\u13c5\u13a9": 15881, "\u2581\u13d9\u13cd": 15882, "\u2581\u13f1\u13ac\u13f3": 15883, "\u2581\u13a0\u13d3\u13ec\u13cd\u13d7": 15884, "\u2581\u13a2\u13e8\u13f0\u13b3\u13d7\u13d9\u13b2\u13a9": 15885, "\u2581\u13a2\u13e8\u13c3\u13c1": 15886, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac\u13a9": 15887, "\u13a6\u13e5\u13ef\u13e2\u13d4": 15888, "\u2581\u13a4\u13db\u13db\u13a9": 15889, "\u2581\u13ef\u13db\u13a6": 15890, "\u2581\u13c2\u13d3\u13cb\u13c1\u13b8": 15891, "\u2581\u13d7\u13a6\u13c6": 15892, "\u13d3\u13c2\u13cd\u13ab\u13d3\u13db": 15893, "\u2581\u13a2\u13e8\u13c3\u13c1\u13b8\u13a2": 15894, "\u2581\u13d5\u13af\u13f4": 15895, "\u2581\u13a4\u13a6\u13d4\u13b2": 15896, "\u2581\u13a4\u13cd\u13a6\u13c5\u13e5\u13d9\u13b8\u13a2": 15897, "\u13ef\u13db\u13a5": 15898, "\u2581\u13c2\u13e8\u13ea": 15899, "\u2581\u13a4\u13c2\u13c4\u13aa\u13e4\u13a2": 15900, "\u2581\u13e7\u13be\u13da\u13b5\u13cd\u13aa": 15901, "\u2581\u13d7\u13c2\u13c5\u13d7": 15902, "\u2581\u13a4\u13d1\u13b6": 15903, "\u13c2\u13c5\u13aa\u13a2": 15904, "\u2581\u13a4\u13be\u13b5\u13d6\u13b8\u13c5\u13a2": 15905, "\u13b5\u13ec\u13e4\u13a2": 15906, "\u2581\u13f3\u13ec\u13e2\u13c1": 15907, "\u2581\u13a0\u13a9\u13b5\u13f2\u13ac\u13a2": 15908, "\u2581\u13a0\u13c2\u13c3\u13ae": 15909, "\u2581\u13a4\u13c2\u13a6\u13b8\u13af": 15910, "\u2581\u13e7\u13ed\u13aa\u13d3\u13c1": 15911, "\u2581\u13ed\u13be\u13d3\u13dd": 15912, "\u2581\u13c2\u13e8\u13ea\u13ce\u13b8\u13a2": 15913, "\u2581\u13d7\u13a6\u13d9": 15914, "\u2581\u13d9\u13d3\u13cd": 15915, "\u2581\u13e4\u13aa": 15916, "\u13aa\u13b2\u13ad": 15917, "\u2581\u13d7\u13a8\u13f4": 15918, "\u13be\u13cd\u13a9\u13ef": 15919, "\u2581\u13eb\u13a6\u13e5\u13b7\u13e4\u13b8": 15920, "\u2581\u13a0\u13c3\u13af\u13cd\u13d7\u13cd\u13a9": 15921, "\u2581\u13c2\u13a8\u13ac\u13c1\u13b8\u13a2": 15922, "\u2581\u13da\u13eb\u13de\u13eb\u13d2\u13a2": 15923, "\u13cd\u13ab\u13d3\u13d5\u13a2": 15924, "\u2581\u13e9\u13c2\u13a6\u13db\u13a2": 15925, "\u2581\u13eb\u13ac\u13e9\u13d8\u13c3\u13b8": 15926, "\u2581\u13eb\u13da\u13f3\u13aa\u13db\u13a2": 15927, "\u2581\u13a0\u13a9\u13aa\u13c1\u13b8\u13a2": 15928, "\u2581\u13a4\u13c5\u13cd\u13a6\u13b4\u13a2": 15929, "\u2581\u13a4\u13b5\u13cd\u13aa\u13b8\u13d4\u13c1\u13a2": 15930, "\u2581\u13da\u13c2\u13a7\u13b2\u13a2": 15931, "\u13a3\u13cd\u13aa\u13a2": 15932, "\u2581\u13d5\u13ab\u13aa\u13d7\u13cd\u13aa": 15933, "\u2581\u13d3\u13be\u13d3\u13c5\u13d6\u13cd\u13ac\u13a2": 15934, "\u2581\u13a4\u13d3\u13d9\u13ce\u13b4\u13a2": 15935, "\u2581\u13a2\u13ac\u13d9\u13d7": 15936, "\u13d4\u13c5\u13d2\u13a2": 15937, "\u2581\u13a4\u13c1\u13b3\u13db\u13a2": 15938, "\u13be\u13d3\u13cd\u13d5\u13d3\u13b5\u13f4\u13d3": 15939, "\u2581\u13f3\u13c2\u13aa\u13ae\u13a2": 15940, "\u2581\u13da\u13be\u13b5\u13aa\u13c1\u13b4": 15941, "\u2581\u13c5\u13e9\u13cd\u13d5\u13a2": 15942, "\u2581\u13c2\u13a6\u13e5\u13f4\u13c1\u13b8\u13a2": 15943, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d3": 15944, "\u2581\u13eb\u13ac\u13e9\u13d8\u13c5\u13cd\u13d4\u13c1": 15945, "\u2581\u13eb\u13d3\u13ac": 15946, "\u2581\u13f1\u13ac\u13d7": 15947, "\u13b5\u13c2\u13aa\u13cd\u13ac\u13a2": 15948, "\u2581\u13a0\u13b5\u13cd\u13d5\u13b5\u13cd\u13ac\u13a2": 15949, "\u13f1\u13b5\u13d0": 15950, "\u2581\u13a4\u13db\u13c5\u13a2\u13cd\u13db": 15951, "\u2581\u13da\u13d3\u13c2\u13b8\u13e4\u13a2": 15952, "\u2581\u13f1\u13d9\u13ac\u13be": 15953, "\u2581\u13e8\u13d3\u13e5\u13c1": 15954, "\u2581\u13a0\u13c2\u13b7\u13ac\u13a2": 15955, "\u13ef\u13b6\u13d8": 15956, "\u13a0\u13d0": 15957, "\u2581\u13a2\u13e5\u13aa\u13b2\u13a2": 15958, "\u2581\u13a2\u13d9\u13bb\u13f1": 15959, "\u2581\u13a0\u13c2\u13a6\u13d4\u13ae\u13a2": 15960, "\u2581\u13e5\u13ef\u13db\u13a6\u13c1\u13d7": 15961, "\u13ac\u13e9\u13e9\u13db\u13b2\u13c3": 15962, "\u2581\u13da\u13be\u13da\u13eb\u13cd\u13db": 15963, "\u2581\u13ce\u13b3\u13bb": 15964, "\u2581\u13a2\u13e8\u13ec\u13c1\u13d4\u13c5\u13a2": 15965, "\u2581\u13a4\u13be\u13b5\u13cd\u13d9\u13d7": 15966, "\u2581\u13a0\u13a8\u13b3\u13d7\u13cd": 15967, "\u13b3\u13c1\u13b8\u13a9": 15968, "\u2581\u13d5\u13aa\u13ce\u13b2": 15969, "\u2581\u13a2\u13cd\u13d3\u13db\u13c5": 15970, "\u2581\u13da\u13ea\u13a7\u13c1\u13b4\u13a2": 15971, "\u2581\u13a2\u13e8\u13d3": 15972, "\u2581\u13d3\u13ad\u13e6": 15973, "\u2581\u13a4\u13d3\u13c1\u13b5": 15974, "\u2581\u13be\u13c6\u13b5\u13cd\u13d3\u13c1\u13b8\u13a2": 15975, "\u2581\u13a0\u13b4\u13c2\u13d9\u13b2": 15976, "\u2581\u13f1\u13e4\u13b5": 15977, "\u2581\u13da\u13be\u13d3\u13f2": 15978, "\u2581\u13a4\u13cd\u13a6\u13ce\u13d7\u13f3": 15979, "\u2581\u13da\u13c2\u13c2\u13f4\u13ae\u13a2": 15980, "\u13d4\u13c3\u13af\u13cd\u13d4": 15981, "\u2581\u13da\u13c2\u13d2\u13be": 15982, "\u2581\u13f1\u13da\u13a7": 15983, "\u2581\u13a4\u13c1\u13d4\u13c5\u13af": 15984, "\u2581\u13d3\u13a7\u13be\u13e9\u13d7": 15985, "\u2581\u13a0\u13aa\u13b2\u13cd\u13d9\u13d7": 15986, "\u2581\u13a6\u13f2\u13df\u13a8\u13c9": 15987, "\u13ac\u13c2\u13cd\u13d7\u13cd\u13a8": 15988, "\u2581\u13f1\u13d3\u13be\u13d5\u13cd\u13aa": 15989, "\u13f2\u13cd\u13d3\u13d7": 15990, "\u13d3\u13f1\u13ad": 15991, "\u2581\u13a4\u13f4\u13d4\u13c2\u13b8": 15992, "\u2581\u13a4\u13e9\u13e5": 15993, "\u2581\u13e9\u13c1\u13d9\u13b2": 15994, "\u2581\u13c5\u13db\u13c5": 15995, "\u2581\u13f3\u13eb\u13da": 15996, "\u13d3\u13ac\u13ef\u13db\u13c1\u13b5": 15997, "\u2581\u13a4\u13ec\u13e5": 15998, "\u13a6\u13d3\u13c2\u13b8\u13e8\u13a9": 15999, "\u2581\u13d7\u13cd\u13c6\u13c2\u13aa\u13db": 16000, "\u2581\u13f1\u13c5\u13e9\u13cd\u13d5": 16001, "\u2581\u13a6\u13c5\u13ec\u13cd\u13a8": 16002, "\u2581\u13eb\u13a6\u13b6\u13af\u13cd\u13d7\u13f1": 16003, "\u2581\u13f1\u13e8\u13c5": 16004, "\u2581\u13d7\u13a7\u13c5": 16005, "\u2581\u13c4\u13da": 16006, "\u13d3\u13cc\u13c6\u13b4\u13cd": 16007, "\u13ec\u13b7\u13e9\u13db": 16008, "\u2581\u13db\u13cd\u13c6": 16009, "\u2581\u13a4\u13c3\u13ad\u13dd": 16010, "\u2581\u13ac\u13e9\u13db\u13d7\u13f1": 16011, "\u2581\u13a4\u13c2\u13c2\u13ac\u13ce\u13b2\u13a2": 16012, "\u2581\u13a2\u13e3\u13d3\u13c5\u13a6\u13b8\u13db": 16013, "\u2581\u13d5\u13a0\u13c1\u13b2": 16014, "\u2581\u13a0\u13d3\u13af\u13cd\u13d7\u13f1": 16015, "\u13e2\u13be\u13cf": 16016, "\u13a2\u13cd\u13d3": 16017, "\u13d1\u13b5\u13aa\u13ac\u13be": 16018, "\u2581\u13a4\u13cf\u13d4\u13db": 16019, "\u13b3\u13d7\u13cd\u13aa": 16020, "\u13d5\u13b2\u13a2": 16021, "\u2581\u13a2\u13cd\u13db\u13d4\u13f2\u13ce": 16022, "\u2581\u13a2\u13d7\u13ac\u13c1\u13af": 16023, "\u2581\u13da\u13b8\u13c9\u13d7\u13f3": 16024, "\u2581\u13a0\u13d3\u13c5\u13d6\u13cd\u13a8\u13cd\u13d7": 16025, "\u2581\u13eb\u13c2\u13d7": 16026, "\u2581\u13a4\u13f2\u13cd\u13d9\u13d7\u13f1": 16027, "\u13e9\u13ad": 16028, "\u13cd\u13aa\u13c2\u13b5": 16029, "\u13cc\u13b3\u13d7\u13cd\u13aa": 16030, "\u13be\u13d3\u13d7\u13eb\u13ce\u13b8": 16031, "\u13c4\u13b5\u13cd\u13d3\u13c1\u13b4\u13a2": 16032, "\u13ac\u13eb\u13f3\u13d4\u13c5": 16033, "\u2581\u13a1\u13e7\u13d3\u13b4": 16034, "\u2581\u13af\u13f2\u13a2\u13f3\u13b2": 16035, "\u13c5\u13aa\u13a3\u13d2": 16036, "\u13b5\u13ce\u13d7\u13f1": 16037, "\u2581\u13e7\u13d3\u13c2\u13b8\u13e8\u13af": 16038, "\u2581\u13e3\u13a6\u13cc\u13ef\u13cd": 16039, "\u13d9\u13b5\u13e8\u13a2": 16040, "\u13b5\u13c3\u13a1\u13d4": 16041, "\u2581\u13da\u13be\u13a6\u13b4\u13c5\u13b2": 16042, "\u2581\u13a0\u13cd\u13a9\u13e5\u13cd": 16043, "\u2581\u13a0\u13f3\u13a2": 16044, "\u2581\u13a6\u13c3\u13aa\u13a2": 16045, "\u2581\u13a0\u13be\u13d3\u13c5\u13d6\u13cd": 16046, "\u13a6\u13b5\u13cd\u13d9": 16047, "\u2581\u13eb\u13d7\u13e3": 16048, "\u13be\u13a6\u13d4\u13c5\u13ce": 16049, "\u13cd\u13d3\u13c1\u13b4\u13a2": 16050, "\u2581\u13d7\u13a8\u13e5\u13cd\u13da\u13c1\u13d7": 16051, "\u2581\u13ac\u13e9\u13b8\u13b8": 16052, "\u2581\u13e3\u13d5\u13b8": 16053, "\u2581\u13e7\u13ef\u13c5\u13d7": 16054, "\u2581\u13ac\u13e9\u13be\u13b5\u13aa\u13c1": 16055, "\u2581\u13eb\u13cd\u13a9\u13ef\u13c5": 16056, "\u13b6\u13e4": 16057, "\u2581\u13a0\u13cd\u13d5\u13b8\u13d7\u13f1": 16058, "\u2581\u13a4\u13d5\u13b0": 16059, "\u13e5\u13c3\u13af\u13cd\u13d9\u13d7": 16060, "\u2581\u13f1\u13c4\u13be\u13b5\u13cd\u13d4": 16061, "\u2581\u13a2\u13e3\u13a6\u13d4\u13b2\u13be": 16062, "\u2581\u13a0\u13c9\u13b8\u13a2": 16063, "\u13be\u13c6\u13b5\u13cd\u13d3\u13cf": 16064, "\u2581\u13a6\u13dd": 16065, "\u2581\u13a4\u13d3\u13cd\u13a6": 16066, "\u13c9\u13e2\u13c5": 16067, "\u2581\u13e4\u13e3\u13c1\u13b6\u13d9\u13d7": 16068, "\u2581\u13d3\u13a6\u13b6\u13d0\u13c2": 16069, "\u13e3\u13d3\u13a8\u13f3\u13d2": 16070, "\u2581\u13a0\u13a6\u13c1\u13b3\u13c5\u13af": 16071, "\u2581\u13d3\u13e8\u13ef\u13ab\u13f4": 16072, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d4\u13c5\u13a9": 16073, "\u2581\u13a4\u13b6\u13aa\u13d7": 16074, "\u13a8\u13e2\u13c5\u13ad": 16075, "\u2581\u13a4\u13ed\u13cc\u13a5": 16076, "\u2581\u13be\u13c6\u13b5\u13cd\u13d4\u13c5\u13a9": 16077, "\u13e5\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac\u13a9": 16078, "\u2581\u13a5\u13a9\u13d9\u13b5": 16079, "\u13d9\u13ce\u13a2": 16080, "\u2581\u13aa\u13b5\u13ac\u13a9": 16081, "\u2581\u13a4\u13a8\u13f3\u13ce": 16082, "\u13d9\u13d1\u13b5": 16083, "\u13e5\u13ef\u13db\u13a6\u13c1\u13b8": 16084, "\u2581\u13f1\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7": 16085, "\u13db\u13af\u13cd\u13d7\u13cd\u13a9": 16086, "\u2581\u13d3\u13be\u13cd\u13aa": 16087, "\u2581\u13d5\u13a6\u13a6\u13c2": 16088, "\u13d9\u13d8": 16089, "\u13cd\u13c6\u13c2\u13aa\u13d9": 16090, "\u2581\u13a0\u13a9\u13cd\u13a6\u13a9": 16091, "\u2581\u13f1\u13d5\u13af": 16092, "\u2581\u13cd\u13cb\u13c2": 16093, "\u13e3\u13d2\u13a9": 16094, "\u2581\u13a0\u13cd\u13a6\u13cd\u13d7": 16095, "\u13c5\u13d4\u13e9\u13d7\u13d2": 16096, "\u2581\u13a2\u13ef\u13a6\u13db\u13c1": 16097, "\u2581\u13ac\u13d4": 16098, "\u2581\u13e7\u13d3\u13c5\u13ce": 16099, "\u2581\u13a0\u13f2\u13b1\u13d2\u13ad": 16100, "\u2581\u13a4\u13c2\u13f0\u13b8\u13c5\u13a9": 16101, "\u2581\u13d3\u13e1\u13d7\u13ad": 16102, "\u13e5\u13cd\u13a6\u13a6": 16103, "\u2581\u13ef\u13be\u13d3\u13c5\u13d6": 16104, "\u2581\u13a8\u13e5\u13be\u13c4\u13aa\u13eb": 16105, "\u2581\u13d3\u13c2\u13f4\u13a8": 16106, "\u13d3\u13c4\u13aa\u13d3\u13c1": 16107, "\u13d3\u13c1\u13b0": 16108, "\u2581\u13a4\u13cd\u13d3\u13f1\u13db\u13a9": 16109, "\u13ab\u13db": 16110, "\u2581\u13d7\u13ef\u13a2": 16111, "\u13f2\u13af\u13cd\u13d9\u13d7": 16112, "\u2581\u13ed\u13c1\u13d9\u13b4": 16113, "\u2581\u13d7\u13a6\u13d3\u13b7\u13a9\u13cd": 16114, "\u2581\u13a4\u13d1\u13b5\u13aa\u13e8\u13a9": 16115, "\u13c8\u13ac": 16116, "\u13c9\u13af\u13f3\u13d3\u13c1\u13af": 16117, "\u2581\u13a0\u13cc\u13af": 16118, "\u2581\u13e5\u13b8\u13c9\u13d9\u13d7": 16119, "\u13e5\u13be\u13f0\u13cd\u13ac\u13a2": 16120, "\u2581\u13a2\u13e3\u13da\u13b5\u13ad": 16121, "\u2581\u13a0\u13c6\u13cd\u13a6": 16122, "\u2581\u13d5\u13e5\u13f4": 16123, "\u13da\u13cf": 16124, "\u13ce\u13d2\u13af": 16125, "\u2581\u13e5\u13e8\u13f2\u13ea\u13b3": 16126, "\u2581\u13da\u13d2\u13c5": 16127, "\u13a4\u13d9\u13af\u13f3\u13d7": 16128, "\u2581\u13a4\u13be\u13db\u13d7\u13f1": 16129, "\u13be\u13c5\u13c5\u13a9": 16130, "\u13a8\u13b6\u13b0": 16131, "\u13a9\u13f0\u13a2": 16132, "\u2581\u13f3\u13c4": 16133, "\u13c3\u13ac\u13c1\u13b8": 16134, "\u2581\u13a4\u13cd\u13d5\u13b5\u13cd\u13a9": 16135, "\u13c2\u13da\u13a9": 16136, "\u13ef\u13d3\u13c2\u13b8\u13a6": 16137, "\u2581\u13a4\u13b5\u13cd\u13da\u13a9": 16138, "\u13e0\u13af\u13cd\u13db\u13a2": 16139, "\u2581\u13a4\u13c2\u13b6\u13ce\u13a2": 16140, "\u2581\u13a4\u13cd\u13d3\u13e9\u13db\u13d2\u13a9": 16141, "\u2581\u13e5\u13d3\u13e5\u13f2": 16142, "\u2581\u13ed\u13e3\u13c5\u13a9": 16143, "\u13be\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5\u13af": 16144, "\u2581\u13a4\u13be\u13e4\u13b8": 16145, "\u2581\u13a0\u13cb\u13d7\u13cd\u13ac": 16146, "\u2581\u13a8\u13b3\u13c2": 16147, "\u2581\u13a1\u13d2\u13ad": 16148, "\u2581\u13a2\u13e3\u13d3\u13c5\u13d6\u13af": 16149, "\u2581\u13ed\u13d3\u13a9\u13c5\u13ce": 16150, "\u13e3\u13a7\u13c3\u13d7\u13f1": 16151, "\u2581\u13a2\u13e8\u13cd\u13d7\u13f0": 16152, "\u2581\u13a2\u13a9\u13d9": 16153, "\u13cd\u13d9\u13d7\u13ad": 16154, "\u13d3\u13b5\u13f1": 16155, "\u2581\u13d5\u13e5\u13ef\u13a6\u13c5": 16156, "\u2581\u13b2\u13d4\u13c5": 16157, "\u13da\u13d3\u13b4\u13cd": 16158, "\u2581\u13ec\u13a9\u13b6\u13af\u13cd\u13d7": 16159, "\u13a9\u13ef\u13c5\u13a1\u13b5": 16160, "\u2581\u13d9\u13e5\u13cd\u13d7\u13f0\u13d7": 16161, "\u2581\u13a4\u13ea\u13a7\u13b2\u13a2": 16162, "\u2581\u13d9\u13d3\u13c2": 16163, "\u13ad\u13c1\u13cd\u13d7": 16164, "\u13d4\u13c5\u13c5\u13a9": 16165, "\u13c5\u13cd\u13d4\u13c5\u13a2": 16166, "\u2581\u13a4\u13d3\u13b8\u13a2": 16167, "\u2581\u13f1\u13c4\u13b5\u13cd\u13d4\u13c1\u13a2": 16168, "\u2581\u13e3\u13cd\u13c6\u13c2\u13aa\u13db": 16169, "\u13ef\u13ea\u13a2\u13cd\u13d4\u13c5": 16170, "\u2581\u13e5\u13ec\u13c2\u13cd\u13ac\u13a2": 16171, "\u2581\u13c2\u13e3\u13d3\u13a8\u13f3\u13d2\u13a2": 16172, "\u2581\u13c2\u13d3\u13d9\u13d3\u13c8\u13d2\u13a2": 16173, "\u13cd\u13da\u13c5": 16174, "\u2581\u13da\u13c4\u13e9\u13a5\u13a2": 16175, "\u2581\u13be\u13ac\u13c1\u13b4\u13a2": 16176, "\u2581\u13a4\u13c1\u13d9\u13b8\u13a9": 16177, "\u2581\u13a4\u13be\u13c5\u13c1\u13a2": 16178, "\u2581\u13a0\u13a9\u13c6": 16179, "\u13e3\u13c1\u13b8\u13d4\u13c5\u13af\u13cd\u13aa": 16180, "\u2581\u13d7\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7\u13f1": 16181, "\u2581\u13be\u13a9\u13ea\u13d2\u13a2": 16182, "\u2581\u13a0\u13d9\u13e9\u13d7\u13cd\u13d7": 16183, "\u2581\u13af\u13cd\u13ab\u13d5\u13cd": 16184, "\u13d4\u13db\u13c1\u13b5": 16185, "\u2581\u13e9\u13be\u13a6\u13b3\u13af\u13f3": 16186, "\u13b4\u13d2\u13ad": 16187, "\u13d5\u13b5\u13db": 16188, "\u2581\u13d7\u13d4\u13b3": 16189, "\u2581\u13d5\u13aa\u13e2\u13d2\u13a2": 16190, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac\u13a2": 16191, "\u2581\u13af\u13c3\u13af": 16192, "\u2581\u13c2\u13da\u13cd\u13d5\u13a2": 16193, "\u2581\u13a4\u13c2\u13e5\u13b8\u13a2": 16194, "\u13c1\u13b7\u13a9\u13a1\u13b4\u13a2": 16195, "\u2581\u13bb\u13be": 16196, "\u2581\u13d9\u13db\u13b5": 16197, "\u2581\u13c4\u13ec\u13af\u13f3": 16198, "\u13f2\u13c5": 16199, "\u2581\u13d9\u13a6\u13b8": 16200, "\u2581\u13a0\u13cd\u13a6\u13f1": 16201, "\u2581\u13a6\u13b5\u13a1\u13b5\u13ac\u13a2": 16202, "\u2581\u13f4\u13e5": 16203, "\u13b5\u13f0\u13a2\u13b6\u13b8": 16204, "\u2581\u13ae\u13d3\u13d7": 16205, "\u2581\u13a2\u13e5\u13c1\u13ac\u13a2": 16206, "\u13a6\u13b5\u13cd\u13d9\u13ce": 16207, "\u13d7\u13cd\u13a6\u13b3\u13c5\u13a9": 16208, "\u2581\u13a4\u13c1\u13b5\u13e4\u13c3": 16209, "\u13e3\u13c5\u13d3\u13d5\u13ae": 16210, "\u2581\u13e7\u13e9\u13c2": 16211, "\u2581\u13a4\u13c7\u13d3\u13b8\u13cd\u13a9\u13c2": 16212, "\u13cd\u13da\u13c1\u13b0": 16213, "\u2581\u13a4\u13c2\u13d0\u13d7": 16214, "\u13c4\u13d4\u13a9": 16215, "\u2581\u13a4\u13c4\u13e9\u13a5\u13a9": 16216, "\u13ef\u13a9\u13b7\u13e8": 16217, "\u13a9\u13b7\u13e4\u13b8": 16218, "\u2581\u13a3\u13a6\u13db\u13a6\u13c5\u13a9": 16219, "\u2581\u13a0\u13c2\u13aa\u13e9\u13d8\u13cd\u13ac\u13a9": 16220, "\u2581\u13a3\u13e4\u13d9\u13b2": 16221, "\u13e5\u13c2\u13f4\u13af": 16222, "\u2581\u13a4\u13be\u13c2\u13a9\u13d0": 16223, "\u13b7\u13e5\u13b8\u13a2": 16224, "\u2581\u13a0\u13ef\u13d6": 16225, "\u2581\u13e7\u13a6\u13e3": 16226, "\u2581\u13c2\u13d5\u13e8": 16227, "\u2581\u13a4\u13e3\u13c1\u13a2": 16228, "\u2581\u13f1\u13c2\u13e5\u13ea\u13ce": 16229, "\u2581\u13c2\u13d5\u13a6\u13ea\u13ce\u13b2\u13a9": 16230, "\u2581\u13a4\u13b7\u13e5\u13d7\u13d2": 16231, "\u13bb\u13f1": 16232, "\u2581\u13e5\u13f2\u13b5": 16233, "\u2581\u13a4\u13be\u13d3\u13df\u13cc\u13c5\u13a9": 16234, "\u2581\u13a4\u13d3\u13cd\u13db": 16235, "\u13a0\u13ef\u13cd\u13aa": 16236, "\u2581\u13a0\u13c2\u13a6\u13d8\u13d7\u13cd\u13a8": 16237, "\u2581\u13f4\u13ac\u13db": 16238, "\u2581\u13a4\u13ea\u13a7\u13af\u13f4": 16239, "\u13d3\u13d5\u13b0\u13d7": 16240, "\u2581\u13a4\u13cd\u13c8\u13ef": 16241, "\u13a4\u13eb\u13c2": 16242, "\u13c1\u13c5\u13ce\u13a2": 16243, "\u2581\u13d9\u13d3\u13ac\u13e9": 16244, "\u2581\u13a0\u13af\u13db": 16245, "\u2581\u13d3\u13e0\u13f1\u13b2": 16246, "\u2581\u13ec\u13f1": 16247, "\u13db\u13d7\u13cd\u13ac\u13a2": 16248, "\u2581\u13a4\u13be\u13c4\u13aa\u13e8\u13a9": 16249, "\u2581\u13a1\u13c9\u13af": 16250, "\u2581\u13a0\u13d3\u13c4\u13d6\u13f2\u13ae": 16251, "\u2581\u13eb\u13af\u13f3": 16252, "\u2581\u13c5\u13e5": 16253, "\u2581\u13f1\u13a7\u13c1": 16254, "\u2581\u13d3\u13f1\u13d9": 16255, "\u13d7\u13cc\u13a7": 16256, "\u2581\u13a4\u13b5\u13cd\u13d4\u13c1\u13a2": 16257, "\u13c2\u13b7\u13e4\u13d7": 16258, "\u2581\u13a4\u13b5\u13cd\u13d5\u13cd\u13d4\u13c1": 16259, "\u13c2\u13b3\u13eb\u13e6\u13af": 16260, "\u2581\u13a0\u13a6\u13c5\u13d9": 16261, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13d7\u13cd\u13aa": 16262, "\u13ef\u13d3\u13c5\u13d3\u13d7\u13cd\u13d4\u13c5": 16263, "\u2581\u13f3\u13e3\u13c5\u13d3\u13d5\u13ae": 16264, "\u2581\u13eb\u13cd\u13a9\u13be\u13a9": 16265, "\u2581\u13e5\u13af\u13ef": 16266, "\u13d5\u13ef\u13d9\u13d7\u13cd\u13ac": 16267, "\u2581\u13a4\u13c4\u13a9": 16268, "\u2581\u13ed\u13b7\u13e4\u13b8\u13a9": 16269, "\u2581\u13d3\u13c1\u13b0\u13a2": 16270, "\u2581\u13a4\u13b5\u13cc\u13b3\u13c1": 16271, "\u13a6\u13d4\u13b2\u13cd\u13d4\u13c5": 16272, "\u13ef\u13ea\u13d0\u13b8\u13cd\u13d7\u13f1": 16273, "\u2581\u13a2\u13e3\u13da\u13d3\u13b4": 16274, "\u2581\u13aa\u13e2\u13ad": 16275, "\u2581\u13d3\u13e5\u13f3": 16276, "\u2581\u13a4\u13be\u13da\u13b5\u13cd\u13a8\u13a2": 16277, "\u2581\u13a4\u13be\u13ce\u13b5\u13d4\u13c5": 16278, "\u13c4\u13ec\u13cd\u13d9\u13d7": 16279, "\u2581\u13eb\u13da\u13c2\u13be": 16280, "\u2581\u13e7\u13a8\u13af\u13d9": 16281, "\u13b5\u13cd\u13d4\u13c1\u13ad": 16282, "\u2581\u13d5\u13a6\u13b3": 16283, "\u2581\u13a6\u13b5\u13e5\u13d9\u13b2\u13cd\u13ac": 16284, "\u13c1\u13b5\u13cc\u13d5": 16285, "\u13d5\u13d2\u13b2\u13cd\u13d7\u13f1": 16286, "\u2581\u13a0\u13be\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7\u13cd": 16287, "\u2581\u13e5\u13b0\u13b5": 16288, "\u13c2\u13d9\u13b8\u13a9": 16289, "\u13c3\u13b1\u13b6\u13d7": 16290, "\u2581\u13a0\u13d9\u13b4\u13b0\u13cd\u13ac": 16291, "\u13c5\u13d4\u13db\u13c1\u13b5": 16292, "\u13b3\u13cd\u13d7\u13f1": 16293, "\u2581\u13d5\u13a4\u13ea": 16294, "\u2581\u13a2\u13e3\u13da\u13b5\u13cd\u13ac\u13a2": 16295, "\u13d2\u13cd\u13d4\u13c1\u13a2": 16296, "\u13be\u13b4\u13c2\u13b4": 16297, "\u13a3\u13a6\u13c2\u13a9\u13d2": 16298, "\u2581\u13eb\u13ac\u13e9\u13c2": 16299, "\u13d5\u13ef\u13d9\u13d3\u13c5": 16300, "\u2581\u13a0\u13db\u13aa\u13d7\u13f1": 16301, "\u2581\u13ac\u13e9\u13d8\u13be\u13eb\u13db\u13ae": 16302, "\u13e6\u13b8\u13af\u13cd\u13d7": 16303, "\u2581\u13d7\u13c2\u13c5\u13a6": 16304, "\u2581\u13d7\u13a6\u13e5\u13ef\u13e0\u13a2\u13cd": 16305, "\u2581\u13d7\u13d3\u13c3\u13ae": 16306, "\u2581\u13e5\u13cd\u13d3\u13b5": 16307, "\u2581\u13e5\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13aa": 16308, "\u13d7\u13a9\u13cf": 16309, "\u2581\u13c2\u13e8\u13c1\u13b8\u13ad": 16310, "\u2581\u13a0\u13cb\u13a8\u13eb\u13cd": 16311, "\u2581\u13a0\u13bc\u13c2": 16312, "\u2581\u13e7\u13cd\u13d4": 16313, "\u13c2\u13b4\u13f4": 16314, "\u2581\u13a0\u13db\u13c1\u13d7": 16315, "\u2581\u13a0\u13c2\u13a6\u13be": 16316, "\u13c2\u13df\u13c5": 16317, "\u2581\u13a4\u13c2\u13c1\u13b2": 16318, "\u13f0\u13e3\u13cd\u13d7\u13cd\u13a8": 16319, "\u2581\u13a1\u13d9\u13a2\u13f3\u13c5": 16320, "\u2581\u13a3\u13a9\u13d9\u13b5\u13e8": 16321, "\u2581\u13e5\u13b7\u13a9": 16322, "\u13b5\u13cd\u13d3\u13f4\u13c5": 16323, "\u2581\u13f1\u13d9\u13a8\u13cd\u13d7": 16324, "\u2581\u13a6\u13a8\u13d7\u13f3": 16325, "\u2581\u13e3\u13ac\u13cd\u13aa\u13b8": 16326, "\u2581\u13a4\u13be\u13d8": 16327, "\u2581\u13e6\u13e5\u13c5\u13aa\u13a2": 16328, "\u2581\u13e3\u13cd\u13aa": 16329, "\u2581\u13a1\u13b3\u13d7\u13a8": 16330, "\u13ed\u13cd\u13d8\u13c5": 16331, "\u2581\u13a2\u13d3\u13b4\u13c2\u13d9\u13b2": 16332, "\u2581\u13e3\u13a9\u13c1\u13e4\u13b8": 16333, "\u13db\u13a6\u13c1\u13b5": 16334, "\u13c2\u13b6\u13cd\u13ac": 16335, "\u13a4\u13c2\u13cd\u13a6\u13e8": 16336, "\u2581\u13cd\u13a6\u13eb\u13cd": 16337, "\u2581\u13a4\u13c1\u13b3\u13d7\u13cd\u13d7\u13cd\u13ac": 16338, "\u2581\u13a0\u13c2\u13cd\u13a6\u13a2\u13b2\u13a9": 16339, "\u13e5\u13ec\u13c1\u13d7\u13ad": 16340, "\u2581\u13c4\u13cd\u13a6": 16341, "\u13d8\u13c3\u13ae\u13b4\u13c3": 16342, "\u2581\u13a4\u13c1\u13a2\u13cd\u13d4\u13c5\u13a9": 16343, "\u13a0\u13ce\u13b5\u13db\u13cd": 16344, "\u2581\u13a4\u13b5\u13ae\u13b5\u13e8\u13a9": 16345, "\u2581\u13d7\u13f4\u13c8": 16346, "\u2581\u13a0\u13a7\u13d4\u13b2": 16347, "\u2581\u13a4\u13ef\u13c5\u13b2\u13a9": 16348, "\u13e1\u13c2": 16349, "\u2581\u13e5\u13c2\u13e3\u13db\u13c1": 16350, "\u2581\u13a6\u13d3\u13a1\u13a2": 16351, "\u2581\u13a4\u13c2\u13f2\u13cd\u13d4\u13c5": 16352, "\u13bb\u13b4": 16353, "\u2581\u13ac\u13ec\u13b5\u13e4": 16354, "\u2581\u13a0\u13be\u13d4": 16355, "\u13d3\u13c5\u13d5\u13ad": 16356, "\u2581\u13a4\u13b7\u13af\u13cd\u13d3\u13c1": 16357, "\u2581\u13da\u13ea\u13a7\u13b2\u13a2": 16358, "\u13a4\u13ce\u13d2": 16359, "\u2581\u13d5\u13a4\u13b7\u13ac\u13a2": 16360, "\u2581\u13a6\u13cd\u13a9\u13d3\u13cd\u13ac\u13a2": 16361, "\u2581\u13d9\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 16362, "\u2581\u13af\u13c1\u13ac\u13a2": 16363, "\u2581\u13a0\u13c2\u13a7\u13b8\u13a2": 16364, "\u2581\u13ac\u13e9\u13d3\u13c5\u13c1\u13ae": 16365, "\u2581\u13a0\u13e5\u13c3\u13c1\u13b4\u13a2": 16366, "\u13d3\u13b5\u13cd\u13d3\u13f4\u13b2\u13a6": 16367, "\u13ea\u13f2\u13b2\u13cd\u13a9": 16368, "\u2581\u13eb\u13da\u13a7\u13be\u13c1\u13a2": 16369, "\u2581\u13af\u13e2\u13be": 16370, "\u2581\u13ac\u13e9\u13f2\u13b1": 16371, "\u2581\u13d3\u13e5\u13b5": 16372, "\u2581\u13af\u13f0\u13b6": 16373, "\u13d5\u13e5\u13f2\u13d2": 16374, "\u2581\u13c5\u13d3\u13f3\u13b5\u13cd\u13d9\u13d4\u13c5": 16375, "\u2581\u13d5\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 16376, "\u2581\u13d3\u13b3": 16377, "\u2581\u13e5\u13d5\u13a6\u13b6": 16378, "\u2581\u13e7\u13b6\u13d2\u13a2": 16379, "\u2581\u13a4\u13be\u13b5\u13f1": 16380, "\u2581\u13a0\u13be\u13db\u13a9\u13cd\u13ac\u13a2": 16381, "\u13a9\u13b3\u13be\u13b6": 16382, "\u2581\u13a4\u13be\u13d3\u13c5\u13d6\u13a2": 16383, "\u2581\u13a4\u13cd\u13d7\u13f0\u13d4\u13c1\u13a2": 16384, "\u13d3\u13d3\u13c5\u13df": 16385, "\u13aa\u13a9\u13c2\u13c4\u13aa": 16386, "\u2581\u13d5\u13a6\u13c5\u13cd\u13d3": 16387, "\u2581\u13f3\u13c7": 16388, "\u2581\u13ae\u13b5\u13a0\u13cd\u13aa": 16389, "\u2581\u13e7\u13c3\u13f0": 16390, "\u2581\u13a0\u13be\u13b5\u13ae\u13b5\u13ac\u13a2": 16391, "\u2581\u13a0\u13c7\u13ad": 16392, "\u13a6\u13b7\u13e8\u13ad": 16393, "\u2581\u13a6\u13ec\u13c2\u13cd\u13a8\u13a2": 16394, "\u2581\u13e5\u13a8\u13ad": 16395, "\u13f2\u13cd\u13d4\u13c3": 16396, "\u2581\u13f1\u13a8\u13e5\u13ce\u13aa\u13a9": 16397, "\u2581\u13a0\u13f0\u13b8\u13ce\u13a2": 16398, "\u2581\u13a4\u13c2\u13f0\u13b8\u13ce\u13a2": 16399, "\u2581\u13a4\u13c5\u13cd\u13a6\u13dd": 16400, "\u2581\u13a2\u13e8\u13d9\u13d7": 16401, "\u13d3\u13d3\u13f2\u13af\u13ce": 16402, "\u13c1\u13b5\u13db": 16403, "\u2581\u13a4\u13be\u13b5\u13d8": 16404, "\u2581\u13cf\u13a9\u13bb\u13f1": 16405, "\u2581\u13db\u13be\u13a6": 16406, "\u2581\u13a0\u13b3\u13cf": 16407, "\u13d7\u13eb\u13cf": 16408, "\u2581\u13a0\u13c2\u13c3\u13d7\u13cd\u13ac": 16409, "\u2581\u13a4\u13f0\u13b8\u13be\u13c1": 16410, "\u2581\u13db\u13c2\u13cd\u13c6\u13c2\u13aa": 16411, "\u2581\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b0": 16412, "\u2581\u13a4\u13be\u13d8\u13c3\u13b4": 16413, "\u2581\u13a2\u13db\u13d7\u13cd\u13ac\u13a2": 16414, "\u13f0\u13be": 16415, "\u2581\u13e8\u13d5\u13e8": 16416, "\u2581\u13d7\u13ac\u13e9\u13be\u13c1\u13b6\u13d9\u13d7": 16417, "\u13be\u13db\u13c1\u13b2": 16418, "\u13d2\u13cd\u13d9\u13d7": 16419, "\u13eb\u13d2\u13a2": 16420, "\u13d3\u13aa\u13be\u13db": 16421, "\u13be\u13b5\u13aa\u13b2\u13cd\u13ac": 16422, "\u2581\u13a4\u13c2\u13f2\u13ae\u13a2": 16423, "\u2581\u13a4\u13d9\u13af\u13f3\u13b2": 16424, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd\u13d7\u13ad": 16425, "\u2581\u13a2\u13e5\u13a6\u13d4\u13b2\u13a2": 16426, "\u13f3\u13e9\u13c2\u13b8": 16427, "\u2581\u13a0\u13d3\u13d4": 16428, "\u2581\u13a0\u13af\u13af": 16429, "\u13c2\u13cd\u13a9\u13ea\u13ce\u13b0": 16430, "\u13da\u13bf\u13a5\u13a2": 16431, "\u2581\u13a4\u13be\u13d3\u13c5\u13d9": 16432, "\u13c2\u13b7\u13e8": 16433, "\u2581\u13a4\u13be\u13b5\u13cf": 16434, "\u13e6\u13f1\u13ae": 16435, "\u13a1\u13b5\u13cd\u13a8\u13cd\u13d7": 16436, "\u13e5\u13f4\u13cc": 16437, "\u2581\u13e5\u13e5\u13ad": 16438, "\u2581\u13e5\u13a6\u13da": 16439, "\u2581\u13a4\u13c2\u13f2\u13b4\u13a2": 16440, "\u2581\u13c2\u13cd\u13cb\u13c1\u13b8": 16441, "\u2581\u13e5\u13ef\u13da\u13b8\u13a1\u13b8": 16442, "\u13cd\u13aa\u13b5\u13f0\u13a5": 16443, "\u13dd\u13db\u13a9": 16444, "\u13c2\u13f0\u13b8\u13d2": 16445, "\u13d5\u13b6\u13b0\u13cd\u13ac": 16446, "\u13ae\u13ae\u13a2": 16447, "\u13b4\u13c8": 16448, "\u13e6\u13c2": 16449, "\u13a0\u13c6\u13db\u13a6\u13c1\u13b8": 16450, "\u13a2\u13cd\u13d3\u13c1\u13b8\u13a2": 16451, "\u13d7\u13d2\u13c1": 16452, "\u2581\u13a4\u13e0\u13a0\u13cf": 16453, "\u13aa\u13a5\u13cd\u13a6\u13c9": 16454, "\u2581\u13a0\u13c6\u13d9\u13d7\u13f1": 16455, "\u2581\u13eb\u13e3\u13a2\u13d2": 16456, "\u13d3\u13d7\u13cd\u13ac": 16457, "\u13a6\u13b3\u13ae": 16458, "\u13d3\u13a8\u13d9\u13b5": 16459, "\u2581\u13d7\u13a6\u13c6\u13b5": 16460, "\u2581\u13d3\u13e3\u13be": 16461, "\u2581\u13da\u13be\u13df\u13f4": 16462, "\u2581\u13da\u13ea\u13d0": 16463, "\u13be\u13d9\u13d3\u13c6": 16464, "\u2581\u13f3\u13c2\u13ad": 16465, "\u2581\u13a4\u13cd\u13c6\u13c3\u13f4\u13ac": 16466, "\u13ed\u13e3\u13c5\u13a9": 16467, "\u2581\u13e3\u13d9\u13af": 16468, "\u13a6\u13c1\u13b4\u13a2": 16469, "\u13c1\u13d9\u13b0": 16470, "\u2581\u13a4\u13c2\u13e9\u13cf": 16471, "\u2581\u13e5\u13c2\u13e3\u13ea": 16472, "\u2581\u13eb\u13a6\u13c5\u13a8": 16473, "\u13a6\u13e1\u13d7\u13cd\u13ac": 16474, "\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7\u13f1": 16475, "\u2581\u13a4\u13d9\u13e2\u13c1": 16476, "\u13ac\u13e9\u13d5\u13c1\u13b4\u13a2": 16477, "\u13d9\u13d7\u13cd\u13a8\u13a2": 16478, "\u13d9\u13e3\u13b8": 16479, "\u2581\u13a4\u13f1\u13b5\u13d9": 16480, "\u2581\u13ac\u13e9\u13c2\u13c5": 16481, "\u13d9\u13b3\u13db\u13d7": 16482, "\u2581\u13d7\u13e5\u13d0\u13c8\u13b8": 16483, "\u2581\u13a1\u13e3\u13db": 16484, "\u13cc\u13db\u13d9\u13d7": 16485, "\u13c2\u13e3\u13ea\u13ce\u13ad": 16486, "\u2581\u13d3\u13be\u13cf\u13d4\u13d7\u13cd": 16487, "\u13a6\u13b5\u13cd\u13a9": 16488, "\u2581\u13a4\u13ea\u13c5\u13a1\u13ae": 16489, "\u13a6\u13bf\u13c1": 16490, "\u13e4\u13b0\u13a2": 16491, "\u2581\u13da\u13ea\u13ad": 16492, "\u2581\u13a6\u13d9\u13a5\u13a2": 16493, "\u2581\u13a4\u13db\u13ce\u13a2": 16494, "\u2581\u13d7\u13a8\u13e5\u13f0": 16495, "\u13a8\u13a6\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8\u13a9": 16496, "\u2581\u13a5\u13c6\u13d2\u13a6\u13b6\u13d4\u13c5": 16497, "\u13a0\u13d2\u13a2": 16498, "\u13e5\u13c5\u13c1\u13b8\u13a9": 16499, "\u13e5\u13f4\u13cf": 16500, "\u2581\u13f3\u13be\u13db\u13a6\u13c1": 16501, "\u2581\u13a4\u13db\u13db\u13c5": 16502, "\u2581\u13a3\u13e5\u13c2": 16503, "\u2581\u13a4\u13c2\u13a6\u13db": 16504, "\u2581\u13eb\u13a6\u13b7\u13af\u13cd\u13d7": 16505, "\u2581\u13c2\u13d5\u13a6\u13b5\u13cd\u13d7": 16506, "\u2581\u13e7\u13c2\u13c6\u13c2\u13f2\u13cd": 16507, "\u13ee\u13d4\u13c1": 16508, "\u13da\u13d3\u13d5\u13eb\u13cd\u13d7": 16509, "\u2581\u13a1\u13d9\u13a2": 16510, "\u2581\u13d3\u13e4": 16511, "\u2581\u13d7\u13c1\u13b3": 16512, "\u2581\u13da\u13b9": 16513, "\u13e9\u13e5\u13aa": 16514, "\u2581\u13a2\u13d7\u13cd\u13d3\u13f1": 16515, "\u2581\u13be\u13cb\u13c1\u13b2": 16516, "\u13af\u13cd\u13d5\u13b8\u13d7": 16517, "\u2581\u13a3\u13a9\u13c5\u13cd\u13d4\u13c5": 16518, "\u2581\u13a4\u13db\u13ce": 16519, "\u2581\u13a2\u13a6\u13b5\u13cd\u13d9\u13d7": 16520, "\u13e9\u13db\u13af\u13b8\u13ad": 16521, "\u13d3\u13c2\u13df\u13cd\u13d7\u13cd\u13aa\u13a2": 16522, "\u13db\u13c5\u13a2\u13cd\u13d3\u13c1": 16523, "\u2581\u13a4\u13b5\u13aa\u13be\u13d4\u13c5": 16524, "\u13af\u13aa\u13e9\u13d8\u13ad": 16525, "\u2581\u13e5\u13ac\u13ad": 16526, "\u2581\u13a0\u13e5\u13b8\u13c9\u13d9\u13d7\u13f1": 16527, "\u13c4\u13e2\u13d5": 16528, "\u13cd\u13d3\u13f1\u13db\u13a9": 16529, "\u2581\u13d5\u13a6\u13b3\u13c5\u13db\u13a2": 16530, "\u13b5\u13f0\u13db": 16531, "\u2581\u13d3\u13f2\u13e3\u13db": 16532, "\u2581\u13a2\u13a8\u13ad": 16533, "\u13da\u13d3\u13b4\u13cd\u13d7\u13cd\u13ac": 16534, "\u13ac\u13ad\u13b7\u13ef\u13cd\u13ac\u13a2": 16535, "\u2581\u13b0\u13b5\u13a6": 16536, "\u2581\u13cd\u13a9\u13be\u13c2": 16537, "\u2581\u13a4\u13c2\u13e9\u13af\u13cd\u13d4": 16538, "\u2581\u13d5\u13a6\u13c2": 16539, "\u2581\u13a4\u13cd\u13c6\u13c2\u13aa\u13ce\u13a2": 16540, "\u13da\u13de": 16541, "\u2581\u13d4\u13d8\u13cd\u13d3\u13c1": 16542, "\u2581\u13a2\u13e3\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac\u13a2": 16543, "\u2581\u13a0\u13be\u13c2\u13a9": 16544, "\u13a2\u13a8\u13c5\u13cd\u13d7": 16545, "\u13c2\u13f4\u13cd\u13d4\u13a9\u13cd": 16546, "\u13db\u13a6\u13cd\u13d3": 16547, "\u2581\u13da\u13c2\u13c3\u13a9\u13d2": 16548, "\u13a9\u13d0\u13be": 16549, "\u13a6\u13e5\u13c3\u13c1\u13b8\u13a9": 16550, "\u2581\u13d4\u13b5\u13cd\u13aa\u13af": 16551, "\u2581\u13d3\u13e5\u13a6": 16552, "\u2581\u13a0\u13b5\u13e3": 16553, "\u13c2\u13d4\u13d5\u13a9": 16554, "\u2581\u13e7\u13c2\u13b8\u13af": 16555, "\u13d7\u13a7\u13c3\u13a9\u13cd\u13a8": 16556, "\u2581\u13a0\u13f4\u13eb\u13ef\u13af": 16557, "\u2581\u13d5\u13a6\u13c4\u13aa\u13ac\u13a2": 16558, "\u13ac\u13aa\u13e9\u13d4": 16559, "\u13cf\u13c2\u13d9\u13ae": 16560, "\u2581\u13cd\u13d5\u13be": 16561, "\u2581\u13da\u13d3\u13c2\u13b8\u13e4\u13b4": 16562, "\u13ec\u13d2\u13c1": 16563, "\u13b9\u13d3\u13d7": 16564, "\u2581\u13a0\u13c6\u13e2": 16565, "\u2581\u13a7\u13c3\u13af\u13f4": 16566, "\u13aa\u13d2\u13be": 16567, "\u2581\u13a0\u13ab\u13cf": 16568, "\u2581\u13e5\u13e5\u13f0\u13b8": 16569, "\u2581\u13a1\u13b5\u13cf": 16570, "\u2581\u13c8\u13ac\u13a2": 16571, "\u13be\u13b5\u13cd\u13aa\u13b8\u13d7\u13cd\u13ac\u13a2": 16572, "\u13cd\u13d3\u13a6\u13d4": 16573, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8": 16574, "\u13d3\u13c4\u13d6": 16575, "\u2581\u13a0\u13c2\u13a8\u13c2": 16576, "\u13b6\u13db\u13be": 16577, "\u13e6\u13ce\u13ae\u13cd\u13d7": 16578, "\u2581\u13d7\u13a6\u13c5\u13a6\u13b8\u13d9\u13d7": 16579, "\u2581\u13d5\u13ab\u13aa\u13d3\u13c1\u13b0": 16580, "\u13a6\u13ec\u13c2\u13cd\u13aa\u13a2": 16581, "\u13ef\u13ab\u13f4\u13a1\u13d7\u13f1": 16582, "\u13f2\u13cd\u13d7\u13cd\u13aa": 16583, "\u2581\u13a0\u13c2\u13b2\u13a6": 16584, "\u2581\u13ad\u13e2\u13a8": 16585, "\u2581\u13f1\u13c4\u13be\u13db\u13c1\u13b4": 16586, "\u13aa\u13af\u13cd\u13d3\u13c1\u13af": 16587, "\u13e5\u13ef\u13db\u13c1\u13b8": 16588, "\u13d7\u13b4\u13b2\u13cd\u13ac": 16589, "\u13da\u13a2\u13cd\u13db": 16590, "\u2581\u13d7\u13c2\u13c3\u13a9\u13cd\u13d7\u13cd": 16591, "\u13af\u13f4\u13d3": 16592, "\u13c3\u13af\u13f3\u13cf\u13f1": 16593, "\u13b6\u13c5\u13ae": 16594, "\u2581\u13d5\u13e3\u13d3\u13e0\u13b2": 16595, "\u2581\u13c7\u13c2\u13cd\u13a9\u13c2": 16596, "\u2581\u13c2\u13ac\u13c1\u13ae\u13a2": 16597, "\u13d3\u13c5\u13d2\u13af": 16598, "\u2581\u13da\u13e8": 16599, "\u2581\u13a0\u13a6\u13d8\u13c3\u13b8": 16600, "\u13be\u13cf\u13c3\u13b4": 16601, "\u2581\u13be\u13c6\u13b5\u13cd": 16602, "\u2581\u13d3\u13c1\u13ae": 16603, "\u2581\u13d3\u13c2\u13cd\u13a6\u13a2\u13ae": 16604, "\u2581\u13a0\u13be\u13d7\u13d2\u13af\u13b2": 16605, "\u2581\u13a6\u13c5\u13aa\u13a2\u13cd\u13d7": 16606, "\u2581\u13a4\u13d9\u13af\u13f3\u13c1\u13a2": 16607, "\u2581\u13a0\u13f0\u13b8\u13ce": 16608, "\u2581\u13a0\u13c2\u13b8\u13c9\u13d7\u13cd\u13a8\u13a2": 16609, "\u13c5\u13db\u13a9": 16610, "\u13b4\u13cf": 16611, "\u2581\u13e7\u13d3\u13da": 16612, "\u2581\u13ad\u13d3\u13c5\u13d6\u13cd\u13aa": 16613, "\u13c2\u13f2\u13cd\u13d3\u13c1": 16614, "\u2581\u13a6\u13e3\u13c4\u13b5\u13a8": 16615, "\u13cd\u13db\u13d7\u13cd\u13a8\u13a2": 16616, "\u2581\u13ed\u13be\u13d7\u13c5": 16617, "\u13e2\u13c6\u13cd\u13aa\u13a2": 16618, "\u2581\u13da\u13b4\u13d4\u13c1": 16619, "\u2581\u13aa\u13d9\u13d7": 16620, "\u2581\u13a4\u13c2\u13f0\u13b8\u13d2": 16621, "\u13c5\u13a6\u13b6\u13d4\u13c5": 16622, "\u2581\u13da\u13c4\u13cc": 16623, "\u13da\u13c2\u13d0\u13af\u13cd": 16624, "\u2581\u13a4\u13e9\u13e3": 16625, "\u13c5\u13a6\u13cd\u13aa": 16626, "\u2581\u13ac\u13ed\u13af\u13cd\u13d7\u13cd\u13a8": 16627, "\u13b5\u13f1\u13b6\u13af\u13cd\u13d7\u13f1": 16628, "\u13d6\u13db": 16629, "\u2581\u13a2\u13a9\u13ae\u13cd\u13d7": 16630, "\u13c5\u13c2\u13cc": 16631, "\u2581\u13a8\u13e3\u13c8\u13d7": 16632, "\u13e3\u13ea\u13d0\u13b8\u13cd\u13d4\u13c1": 16633, "\u13a6\u13be\u13c5\u13aa\u13a8": 16634, "\u2581\u13e7\u13be\u13d3\u13e1\u13ac": 16635, "\u2581\u13da\u13e9\u13ad\u13c2\u13cd": 16636, "\u13d7\u13be\u13d8": 16637, "\u2581\u13a4\u13b5\u13e5\u13d9": 16638, "\u2581\u13d5\u13e5\u13cd\u13da\u13c5": 16639, "\u13eb\u13be": 16640, "\u2581\u13c8\u13a6": 16641, "\u13e5\u13f2\u13af\u13ce\u13b8": 16642, "\u2581\u13a4\u13eb\u13d2\u13ce": 16643, "\u2581\u13ed\u13c1\u13a2": 16644, "\u13a8\u13a6\u13d2\u13a6\u13b6": 16645, "\u2581\u13d3\u13c2\u13d9\u13a8\u13a2": 16646, "\u13a6\u13d8\u13be\u13eb\u13db": 16647, "\u2581\u13d7\u13a9\u13aa": 16648, "\u2581\u13e7\u13b8\u13cc\u13d3": 16649, "\u2581\u13a6\u13a6\u13b6\u13a2": 16650, "\u2581\u13af\u13e3\u13d5\u13b6\u13b0": 16651, "\u2581\u13d7\u13a6\u13da": 16652, "\u2581\u13a4\u13d3\u13cc\u13a7\u13af": 16653, "\u13e5\u13b0\u13b5": 16654, "\u13d3\u13aa\u13b2\u13cd\u13d7": 16655, "\u13c2\u13be\u13d5\u13a9": 16656, "\u2581\u13ed\u13d4": 16657, "\u2581\u13c2\u13d3\u13c5\u13c1": 16658, "\u13a6\u13e4\u13b5\u13a6": 16659, "\u2581\u13d5\u13a6\u13b6\u13a8\u13d2\u13a2": 16660, "\u2581\u13e7\u13a8\u13f3\u13af\u13f3": 16661, "\u2581\u13a0\u13cd\u13c6\u13b5\u13cd\u13ac\u13a2": 16662, "\u2581\u13a1\u13b5\u13cd\u13a8\u13cd\u13d7": 16663, "\u13a9\u13f2\u13cf\u13af": 16664, "\u13d5\u13e5\u13a6\u13bf\u13e9\u13d5\u13a6": 16665, "\u2581\u13da\u13be\u13c4\u13aa\u13eb\u13ce\u13b4\u13a2": 16666, "\u13a4\u13ea\u13c5\u13cd\u13d7\u13f1": 16667, "\u2581\u13e7\u13c2\u13f0\u13b8\u13d0": 16668, "\u13cf\u13b3\u13db\u13a5\u13cd\u13ac": 16669, "\u2581\u13a4\u13c3\u13ae\u13b8\u13a2": 16670, "\u13a9\u13f2\u13cd\u13d9\u13d3\u13c1": 16671, "\u13d0\u13e2\u13d9\u13d7": 16672, "\u2581\u13a0\u13be\u13b5\u13ae\u13b5\u13a8\u13a2": 16673, "\u13d4\u13cd\u13a8": 16674, "\u2581\u13cd\u13d5\u13b5\u13cd\u13a9": 16675, "\u2581\u13c2\u13d5\u13c5": 16676, "\u13c6\u13b5\u13a2": 16677, "\u13eb\u13e3\u13b7\u13e3": 16678, "\u2581\u13a4\u13e5\u13b8\u13d2\u13a9": 16679, "\u2581\u13a4\u13be\u13d5\u13ef\u13d9\u13d7\u13cd\u13ac": 16680, "\u13a2\u13e5\u13a6\u13d4\u13be\u13a2": 16681, "\u2581\u13a2\u13e3\u13b5\u13cd\u13aa\u13b8\u13d7\u13cd\u13ac": 16682, "\u2581\u13a6\u13c1\u13ac": 16683, "\u13cf\u13b2\u13cf": 16684, "\u2581\u13a3\u13ce": 16685, "\u2581\u13e7\u13c1\u13f2\u13b2\u13cd": 16686, "\u13d3\u13cd\u13d7\u13cd\u13a9": 16687, "\u2581\u13a0\u13d0\u13f4\u13a2": 16688, "\u2581\u13a2\u13e7\u13c5": 16689, "\u13c1\u13b8\u13d9\u13d7": 16690, "\u2581\u13a1\u13d7\u13a8\u13f3": 16691, "\u13ef\u13db\u13c1\u13d7": 16692, "\u13be\u13d5\u13b6\u13c6": 16693, "\u13e9\u13cd\u13d7\u13d5\u13a9": 16694, "\u2581\u13da\u13c3\u13b8\u13a2": 16695, "\u2581\u13a0\u13c9\u13af\u13f3\u13d2": 16696, "\u2581\u13a4\u13b6\u13d2\u13a9": 16697, "\u2581\u13a4\u13c1\u13b8\u13d4\u13c5": 16698, "\u2581\u13a4\u13c2\u13e0\u13f1\u13c9": 16699, "\u2581\u13a4\u13f2\u13b7": 16700, "\u13c4\u13ef\u13a9": 16701, "\u2581\u13cd\u13a6\u13f0\u13ac\u13cd\u13d3": 16702, "\u13d5\u13d8\u13f1\u13b6": 16703, "\u13e9\u13c2\u13f4\u13af\u13ae": 16704, "\u13d3\u13a7\u13c3\u13ae\u13b5": 16705, "\u13a3\u13a6\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 16706, "\u2581\u13a4\u13c5\u13c5\u13a9": 16707, "\u2581\u13a0\u13e5\u13aa\u13b5\u13f0\u13cd\u13ac": 16708, "\u13d3\u13c1\u13e4\u13b8": 16709, "\u13be\u13c1\u13ad": 16710, "\u13a2\u13cd\u13d7\u13cd\u13a8\u13a2": 16711, "\u13da\u13a2\u13cd\u13d4\u13c5": 16712, "\u13aa\u13d5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 16713, "\u2581\u13a0\u13a6\u13d4\u13ae\u13a2": 16714, "\u2581\u13f1\u13e3\u13b4": 16715, "\u2581\u13a8\u13a6\u13d2\u13a6": 16716, "\u2581\u13a0\u13c6\u13a7": 16717, "\u2581\u13a0\u13c2\u13b7\u13e4": 16718, "\u13ef\u13d2\u13a6\u13b6\u13d4\u13c5": 16719, "\u2581\u13a0\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 16720, "\u2581\u13eb\u13da\u13aa\u13b2": 16721, "\u13a6\u13df\u13b6\u13a1\u13b8": 16722, "\u13be\u13d3\u13d3\u13cd\u13a9": 16723, "\u2581\u13a0\u13e1\u13d7\u13cd\u13a9": 16724, "\u13c6\u13c1\u13e6\u13c5": 16725, "\u2581\u13a0\u13c6\u13cd\u13a9\u13d3\u13d2": 16726, "\u2581\u13a2\u13e5\u13c5\u13af": 16727, "\u13c5\u13a1\u13b2": 16728, "\u13ea\u13ef\u13b8\u13e4": 16729, "\u2581\u13f1\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3": 16730, "\u2581\u13eb\u13c4\u13ea\u13ce\u13b4": 16731, "\u2581\u13a4\u13a9\u13d3": 16732, "\u13d3\u13c5\u13d6\u13d7\u13cd\u13a8\u13a2": 16733, "\u13a2\u13cd\u13d4\u13c5\u13ad": 16734, "\u2581\u13a0\u13c6\u13db\u13a6\u13cd\u13d9": 16735, "\u2581\u13d3\u13b5\u13cd\u13d7\u13b3\u13c1\u13ac\u13a2": 16736, "\u2581\u13af\u13c1\u13a9\u13d2": 16737, "\u2581\u13d5\u13aa\u13b5": 16738, "\u2581\u13e7\u13d7\u13a6\u13b4": 16739, "\u13d3\u13d3\u13c5\u13d6\u13cd\u13ac\u13a2": 16740, "\u2581\u13f1\u13ac\u13ad": 16741, "\u2581\u13af\u13ef\u13d3\u13b5\u13c1\u13af\u13d5": 16742, "\u13c4\u13ec\u13af\u13cd\u13d7\u13cd\u13a9": 16743, "\u13c1\u13a2\u13cd\u13d9\u13d7": 16744, "\u2581\u13a4\u13d3\u13d1\u13f4\u13a2": 16745, "\u13ae\u13b8\u13d2": 16746, "\u2581\u13a6\u13e5\u13f2\u13ea\u13b3\u13c1": 16747, "\u2581\u13a0\u13cd\u13db\u13d7\u13cd\u13d7\u13cd": 16748, "\u2581\u13a4\u13ea\u13a7\u13c1\u13b4\u13a2": 16749, "\u13b5\u13a1\u13be": 16750, "\u2581\u13d7\u13c1\u13a8": 16751, "\u2581\u13e7\u13be\u13e5": 16752, "\u13d3\u13f2\u13cd\u13d4\u13c1": 16753, "\u2581\u13da\u13a7": 16754, "\u2581\u13a2\u13d7\u13b5": 16755, "\u2581\u13a4\u13be\u13a9\u13b4": 16756, "\u2581\u13a4\u13e9\u13c2\u13a6\u13b8": 16757, "\u2581\u13a7\u13b8\u13ac\u13a2": 16758, "\u13db\u13af\u13ce\u13b8\u13af": 16759, "\u13eb\u13cd\u13a6": 16760, "\u13d7\u13d4\u13cf": 16761, "\u13ac\u13ad\u13c5": 16762, "\u2581\u13a0\u13ef\u13e5": 16763, "di": 16764, "\u13ae\u13f0\u13c3": 16765, "\u2581\u13e7\u13d3\u13c5\u13d6\u13b4": 16766, "\u2581\u13a3\u13c2\u13f4": 16767, "\u2581\u13a4\u13d3\u13c1\u13c1": 16768, "\u2581\u13d3\u13a9\u13cd\u13a8": 16769, "\u13eb\u13e3\u13b6\u13d2": 16770, "\u2581\u13a3\u13a6\u13d7\u13d4\u13cd\u13d7": 16771, "\u2581\u13a4\u13ec\u13c2\u13d2\u13a2": 16772, "\u2581\u13e6\u13a9\u13ad": 16773, "\u13f4\u13c5\u13af": 16774, "\u2581\u13e7\u13af\u13cd\u13d7\u13f1": 16775, "\u13b9\u13a9": 16776, "\u2581d": 16777, "\u2581\u13d5\u13ab\u13aa\u13d3\u13c1\u13b8": 16778, "\u13f2\u13d7": 16779, "\u2581\u13a0\u13d3\u13c5\u13cd\u13ac": 16780, "\u2581\u13da\u13be\u13d3\u13db\u13db\u13c1": 16781, "\u13c1\u13b6\u13af": 16782, "\u13e5\u13e9\u13be\u13a6\u13b8\u13a2": 16783, "\u2581\u13c2\u13ac\u13b8": 16784, "\u2581\u13e6\u13d2\u13a2": 16785, "\u2581\u13e5\u13d9\u13e5": 16786, "\u2581\u13a4\u13d5\u13ad\u13ef": 16787, "\u13be\u13d6\u13c9\u13b6": 16788, "\u2581\u13e3\u13df\u13cd\u13db": 16789, "\u2581\u13d5\u13a4\u13be": 16790, "\u13f2\u13b2\u13a2": 16791, "\u13e5\u13aa\u13b5\u13f0\u13cd\u13a8\u13cd\u13d7": 16792, "\u2581\u13a3\u13cd\u13d9": 16793, "\u2581\u13a6\u13c5\u13a8\u13a2": 16794, "\u13aa\u13b8\u13cd\u13d4\u13c1": 16795, "\u2581\u13da\u13d9\u13af": 16796, "\u2581\u13a0\u13e5\u13cd\u13da\u13b2": 16797, "\u13e9\u13ad\u13c2\u13b8": 16798, "\u2581\u13a8\u13e5\u13c1\u13d7\u13f1": 16799, "\u2581\u13c4\u13d5": 16800, "\u2581\u13ab\u13cf": 16801, "\u13e6\u13af\u13f3\u13c5\u13a9": 16802, "\u13b5\u13c3": 16803, "\u2581\u13e7\u13b3\u13d1\u13b6\u13a9": 16804, "\u13a9\u13f0\u13b8\u13ad": 16805, "\u13c1\u13c9\u13a5": 16806, "\u13d7\u13e3\u13cf\u13b3\u13db\u13d9\u13d7": 16807, "\u13d3\u13c2\u13cf\u13c5": 16808, "\u13b5\u13cd\u13d4\u13c2\u13d3\u13cd\u13d7": 16809, "\u2581\u13a4\u13d1\u13ef\u13a9": 16810, "\u2581\u13a1\u13cc\u13c3": 16811, "\u13c2\u13d5\u13be": 16812, "\u2581\u13c2\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8\u13a2": 16813, "\u13b8\u13a1\u13b8\u13af": 16814, "\u2581\u13d3\u13df\u13b6\u13cd\u13d7\u13cd\u13ac": 16815, "\u13cd\u13da\u13d5\u13cd\u13d7": 16816, "\u2581\u13d3\u13b2\u13a2": 16817, "\u2581\u13eb\u13cd\u13db": 16818, "\u2581\u13da\u13be\u13d7\u13d4\u13ae": 16819, "\u2581\u13d7\u13cd\u13a9\u13be": 16820, "\u13e3\u13e0\u13ef\u13cd\u13d3": 16821, "\u2581\u13a4\u13be\u13b8\u13b8": 16822, "\u13c1\u13d9\u13ad": 16823, "\u13d8\u13be\u13eb\u13db\u13b2": 16824, "\u2581\u13a4\u13c2\u13e9\u13d2\u13a8": 16825, "\u2581\u13a0\u13d7\u13d4\u13cd\u13ac": 16826, "\u2581\u13a0\u13a7\u13b5\u13a2\u13ad": 16827, "\u2581\u13c2\u13ac\u13e9\u13db\u13c1": 16828, "\u2581\u13f1\u13aa\u13b5": 16829, "\u2581\u13d7\u13c4": 16830, "\u2581\u13a3\u13a9\u13c3\u13ae\u13b8": 16831, "\u13e4\u13b3\u13d7\u13cd\u13d7\u13cd\u13ac\u13a2": 16832, "\u2581\u13a0\u13e2\u13d7": 16833, "\u2581\u13a2\u13a8\u13d0": 16834, "\u13e8\u13d2": 16835, "\u2581\u13e3\u13c6\u13b5\u13c2\u13aa\u13af\u13cd": 16836, "\u2581\u13c5\u13e9\u13cd\u13d9": 16837, "\u2581\u13a3\u13d3\u13c5\u13db\u13a2": 16838, "\u2581\u13a2\u13e5\u13b7\u13e4": 16839, "\u2581\u13e3\u13c1\u13b3\u13d7\u13cd\u13d7": 16840, "\u2581\u13be\u13ac\u13c1\u13b8\u13a2": 16841, "\u13c6\u13db\u13c2\u13cf": 16842, "\u2581\u13f1\u13e8\u13ef\u13db": 16843, "\u2581\u13e5\u13a9\u13c1\u13b8\u13a9": 16844, "\u13c3\u13e3\u13b6\u13d7": 16845, "\u2581\u13ab\u13c7": 16846, "\u2581\u13f4\u13a8\u13e3\u13db": 16847, "\u13c1\u13a9\u13a1": 16848, "\u13a5\u13cd\u13aa": 16849, "\u2581\u13af\u13ef\u13c5\u13d7": 16850, "\u2581\u13c2\u13a6\u13a6": 16851, "\u2581\u13a0\u13cf\u13be\u13cc\u13c5\u13a2": 16852, "\u2581\u13da\u13b5\u13aa\u13c1": 16853, "\u2581\u13f1\u13e9\u13be": 16854, "\u2581\u13a0\u13e5\u13b7": 16855, "\u2581\u13a4\u13f2\u13af\u13cd\u13d4\u13c1\u13a2": 16856, "\u2581\u13a1\u13e5\u13f2\u13a2\u13ce\u13b8": 16857, "\u13c2\u13cf\u13c1\u13d7\u13f1": 16858, "\u13b5\u13aa\u13c5\u13db": 16859, "\u13d3\u13cd\u13db\u13d7\u13cd\u13d9\u13d7": 16860, "\u2581\u13a3\u13a6\u13b5\u13ae\u13b5\u13cd\u13d7": 16861, "\u2581\u13a2\u13ab\u13e9\u13be": 16862, "\u13be\u13c1\u13b3\u13d7\u13cd\u13ac": 16863, "\u2581\u13a7\u13c3\u13ae\u13cd\u13a8": 16864, "\u2581\u13eb\u13a6\u13b7": 16865, "\u13b5\u13cf\u13a9": 16866, "\u2581\u13b7\u13c6": 16867, "\u13e3\u13d3\u13d9\u13e2\u13be\u13c1\u13b8\u13a9": 16868, "\u2581\u13e9\u13a6\u13d8": 16869, "\u13a7\u13c3\u13ae\u13d7": 16870, "\u2581\u13c2\u13a6\u13ea\u13ce\u13b2": 16871, "\u2581\u13d7\u13af\u13cd\u13d7": 16872, "\u2581\u13a0\u13da\u13d3\u13b4\u13cd\u13d7\u13cd\u13ac": 16873, "\u2581\u13a4\u13f2\u13b0\u13a2": 16874, "\u2581\u13a0\u13c2\u13dd": 16875, "\u2581\u13d9\u13db\u13be": 16876, "\u13a6\u13db\u13be\u13e8": 16877, "\u2581\u13da\u13d4\u13c5\u13a9": 16878, "\u2581\u13f1\u13c3\u13a9": 16879, "\u13cf\u13d3\u13cd\u13d7\u13f1": 16880, "\u13ef\u13ea\u13e8": 16881, "\u13e5\u13ef\u13d8\u13cd\u13d3\u13c1\u13af": 16882, "\u2581\u13af\u13a6\u13d4\u13ad\u13f0\u13c3": 16883, "\u13be\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7": 16884, "\u13f4\u13af\u13ad": 16885, "\u13b8\u13a1\u13b8": 16886, "\u13c3\u13b8\u13d4\u13c1": 16887, "\u13b5\u13c3\u13ae\u13d7\u13cd\u13aa": 16888, "\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b4\u13cd\u13d7": 16889, "\u13cd\u13db\u13d7\u13cd\u13a8\u13cd\u13d7": 16890, "\u13a1\u13e5\u13a9\u13cf": 16891, "\u13cd\u13d5\u13b8\u13d9\u13d7\u13cd\u13a8": 16892, "\u13a1\u13e3\u13d8\u13c3\u13a6": 16893, "\u13e8\u13f4\u13a6": 16894, "\u2581\u13b6\u13cf": 16895, "\u2581\u13a0\u13f0\u13d9\u13b3\u13db\u13d7\u13f1": 16896, "\u2581\u13a2\u13e3\u13c1\u13e2\u13d4\u13c5": 16897, "\u13cf\u13d9\u13b2": 16898, "\u2581\u13a0\u13d4\u13b4\u13a6\u13d2\u13a2": 16899, "\u13d7\u13d3\u13b4\u13b2\u13cd\u13ac": 16900, "\u2581\u13a0\u13c2\u13cd\u13da": 16901, "\u2581\u13da\u13e9\u13db\u13b2\u13ce": 16902, "\u13a6\u13b5\u13cf": 16903, "\u2581\u13a3\u13a9\u13c1\u13e4\u13b8": 16904, "\u2581\u13a4\u13c2\u13e3\u13db\u13a2": 16905, "\u2581\u13a0\u13c2\u13f4\u13af\u13b0": 16906, "\u13a0\u13cd\u13aa\u13a2": 16907, "\u13c7\u13b5\u13d2": 16908, "\u13b3\u13b9": 16909, "\u2581\u13a4\u13be\u13b5\u13cd\u13aa": 16910, "\u13c6\u13c1\u13cd\u13a9": 16911, "\u2581\u13da\u13ea\u13b5\u13ce\u13b4": 16912, "\u13e6\u13a3\u13ce\u13a2": 16913, "\u2581\u13da\u13be\u13c1\u13b6\u13db": 16914, "\u13ed\u13cc\u13c5": 16915, "\u2581\u13f1\u13a6\u13b8\u13c9\u13d7": 16916, "\u13d6\u13ad": 16917, "\u2581\u13e3\u13e5\u13cd\u13da": 16918, "\u2581\u13a4\u13c3\u13c1\u13b4\u13a2": 16919, "\u13be\u13f1\u13a9": 16920, "\u13be\u13f0\u13af\u13cd\u13d7\u13f1": 16921, "\u2581\u13d8\u13f0": 16922, "\u13a2\u13cd\u13a8\u13cd\u13d7": 16923, "\u2581\u13ef\u13c9\u13ce": 16924, "\u2581\u13eb\u13da\u13b8\u13cc": 16925, "\u2581\u13a4\u13c1\u13a6\u13b8\u13a2": 16926, "\u2581\u13e5\u13a5\u13a1\u13b8": 16927, "\u2581\u13da\u13c2\u13c5\u13c5": 16928, "\u13a7\u13c1\u13a2": 16929, "\u13d8\u13bf\u13eb\u13db\u13b2\u13a9": 16930, "\u2581\u13a4\u13be\u13d3\u13c2\u13f4": 16931, "\u2581\u13da\u13b5\u13cd\u13da\u13b8": 16932, "\u2581\u13f3\u13dc\u13cf\u13db": 16933, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d3\u13c1": 16934, "\u2581\u13e5\u13d5\u13af": 16935, "\u13a8\u13cd\u13d7\u13c9\u13cd\u13a9\u13c2": 16936, "\u13aa\u13d4\u13c5\u13af": 16937, "\u13d8\u13b4\u13a2": 16938, "\u13b0\u13c1\u13a2": 16939, "\u2581\u13a0\u13b5\u13db\u13d7\u13cd": 16940, "\u2581\u13af\u13cd\u13c6\u13b5\u13ce": 16941, "\u2581\u13a3\u13be": 16942, "\u13c3\u13ce\u13ae": 16943, "\u13d7\u13a6\u13d9\u13b5": 16944, "\u13be\u13c4\u13aa\u13e8\u13a9": 16945, "\u13a2\u13f3\u13cd\u13d7\u13c9": 16946, "\u13cd\u13d6\u13f4": 16947, "\u13a6\u13d3\u13cd\u13d5\u13d3\u13b5\u13f4\u13cd\u13a9": 16948, "\u13d3\u13c3\u13cd\u13a9\u13db": 16949, "\u13e5\u13ef\u13a7\u13c1\u13b8": 16950, "\u2581\u13f3\u13c2\u13cf": 16951, "\u13cd\u13d7\u13d9\u13ac": 16952, "\u2581\u13eb\u13db\u13d3": 16953, "\u13c2\u13c1\u13c9\u13a9": 16954, "\u2581\u13a4\u13b5\u13cd\u13d5\u13b8\u13d9": 16955, "\u2581\u13e5\u13ac\u13a9\u13aa\u13b5\u13f0": 16956, "\u13ef\u13b8\u13e4": 16957, "\u2581\u13a1\u13e5\u13ef\u13a5": 16958, "\u2581\u13f1\u13c2\u13e5\u13ea": 16959, "\u2581\u13a4\u13b6\u13d0\u13c5\u13af": 16960, "\u13f2\u13ae\u13d7\u13f1": 16961, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d3\u13c1\u13d7\u13f1": 16962, "\u13be\u13d8\u13f2\u13b8\u13a9": 16963, "\u13d3\u13f3\u13be\u13c2\u13a9\u13db": 16964, "\u13a9\u13cd\u13d4\u13c2": 16965, "\u2581\u13a8\u13e3\u13b4": 16966, "\u2581\u13e7\u13be\u13da\u13b5": 16967, "\u2581\u13af\u13cd\u13a9\u13cd\u13aa": 16968, "\u2581\u13a5\u13a9\u13b5\u13a5\u13c2": 16969, "\u2581\u13ac\u13e9\u13db\u13d3\u13cd\u13d3\u13c1\u13b4": 16970, "\u2581\u13a0\u13c2\u13e8\u13ef\u13a2": 16971, "\u2581\u13a4\u13a9\u13e8\u13c5\u13a2": 16972, "\u13b5\u13cc\u13b3\u13d3\u13c5": 16973, "\u13d7\u13e6\u13ad\u13f4": 16974, "\u2581\u13c2\u13ad\u13b5\u13cd\u13d7": 16975, "\u2581\u13a5\u13d3\u13b8\u13a2": 16976, "\u2581\u13eb\u13a6\u13c5\u13c5\u13a2": 16977, "\u2581\u13a0\u13c6\u13d3\u13be": 16978, "\u2581\u13a4\u13b5\u13c2\u13ac\u13ac\u13a2": 16979, "\u13a9\u13a1\u13ad": 16980, "\u2581\u13a0\u13cd\u13da\u13b2\u13a2": 16981, "\u13e7\u13aa\u13d3\u13c1\u13af": 16982, "\u13af\u13d0\u13e2\u13d7\u13ad": 16983, "\u13be\u13d5\u13b0": 16984, "\u13cf\u13cd\u13d7\u13f1": 16985, "\u13d3\u13db\u13c1\u13d7\u13f1": 16986, "\u2581\u13d5\u13a6\u13c5\u13c5\u13a2": 16987, "\u2581\u13a4\u13ec\u13f0": 16988, "\u13c2\u13cd\u13ab\u13d5\u13cd\u13aa": 16989, "\u13a6\u13df\u13d3": 16990, "\u2581\u13a0\u13c6\u13a6\u13d4\u13b2\u13d2": 16991, "\u2581\u13a4\u13c1\u13e5": 16992, "\u13d3\u13c6\u13ce\u13b8": 16993, "\u2581\u13a4\u13c2\u13c6": 16994, "\u2581\u13a4\u13e6\u13af\u13c3": 16995, "\u2581\u13e5\u13d9\u13ac\u13a2": 16996, "\u2581\u13a0\u13f0\u13b2\u13a2": 16997, "\u13be\u13d7\u13cd\u13a6\u13b6\u13d7": 16998, "\u2581\u13e4\u13c8\u13db\u13c3": 16999, "\u13e5\u13f2\u13b5\u13b4": 17000, "\u2581\u13e5\u13c6": 17001, "\u2581\u13a0\u13c2\u13cd\u13a6\u13a2\u13ae\u13c3": 17002, "\u2581\u13d7\u13d3\u13c1\u13b8\u13a2": 17003, "\u13b5\u13f0\u13c5": 17004, "\u13bf\u13d5\u13a8": 17005, "\u13f4\u13e3\u13d7": 17006, "\u13a4\u13c2\u13f4": 17007, "\u2581\u13c2\u13ac\u13c1\u13b2\u13a2": 17008, "\u2581\u13c2\u13a6\u13db\u13c1\u13b2\u13a2": 17009, "\u2581\u13d7\u13f0\u13b6": 17010, "\u13da\u13ed\u13aa\u13d3\u13c1\u13b4": 17011, "\u2581\u13a4\u13c6\u13d9": 17012, "\u13cc\u13ec\u13a2\u13b2": 17013, "\u2581\u13a3\u13a9\u13b5": 17014, "\u13c5\u13aa\u13a5": 17015, "\u2581\u13d7\u13e4\u13b2\u13a2": 17016, "\u13a6\u13b4\u13c5\u13d7\u13cd\u13a9": 17017, "\u13cd\u13a9\u13f2\u13e2\u13be\u13c1": 17018, "\u13a6\u13b5\u13e6\u13d9": 17019, "\u2581\u13f4\u13a6\u13a6\u13b5\u13cd\u13d3\u13f4": 17020, "\u13a6\u13db\u13c2\u13d7\u13cd\u13d7\u13f1": 17021, "\u2581\u13d5\u13e5\u13b8\u13cc\u13d3": 17022, "\u2581\u13e3\u13b5\u13d8": 17023, "\u13a6\u13df\u13c2\u13ac\u13c1": 17024, "\u2581\u13a4\u13ea\u13be": 17025, "\u13e5\u13ef\u13a1\u13cd\u13d7": 17026, "\u2581\u13e3\u13e3": 17027, "\u2581\u13d7\u13e4\u13b3\u13cd": 17028, "\u2581\u13cd\u13a9\u13cc\u13b3": 17029, "\u2581\u13f0\u13d7": 17030, "\u13e9\u13ab\u13b5": 17031, "\u13d7\u13bb\u13ef": 17032, "\u2581\u13a0\u13a9\u13a8\u13f3": 17033, "\u13a2\u13cd\u13d4\u13be": 17034, "\u2581\u13da\u13c2\u13b6\u13a8\u13d2": 17035, "\u13df\u13db": 17036, "\u13e5\u13c1\u13e4\u13b0\u13a2": 17037, "\u13d7\u13aa\u13b5\u13a9": 17038, "\u13a2\u13d3\u13cd\u13d7": 17039, "\u2581\u13a4\u13c2\u13ab": 17040, "\u2581\u13a0\u13c5\u13d7\u13cd\u13ac\u13a2": 17041, "\u13d3\u13d3\u13b5\u13c1\u13af\u13d5": 17042, "\u13d7\u13d3\u13c5": 17043, "\u2581\u13a8\u13e5\u13d2\u13b2\u13cd": 17044, "\u2581\u13da\u13c2\u13a6\u13d8\u13b8\u13d2": 17045, "\u13ac\u13eb\u13f3\u13cc\u13d5": 17046, "\u2581\u13a4\u13d3\u13b8\u13c9": 17047, "\u2581\u13a0\u13be\u13b5\u13c3\u13ae\u13cd": 17048, "\u13cd\u13d3\u13e9\u13d7\u13ce\u13cd\u13d7": 17049, "\u2581\u13a1\u13e5\u13aa": 17050, "\u2581\u13d7\u13a8\u13b4": 17051, "\u2581\u13ad\u13b4\u13c5": 17052, "\u2581\u13db\u13c4": 17053, "\u13e5\u13a6\u13d8\u13f4": 17054, "\u13e3\u13db\u13a9\u13cd\u13aa": 17055, "\u13d2\u13cd\u13db": 17056, "\u13e9\u13db\u13af\u13d3\u13cd\u13d7": 17057, "\u2581\u13a0\u13f2\u13b3": 17058, "\u2581\u13a8\u13b3\u13d7": 17059, "\u13c3\u13c1\u13d7\u13f1": 17060, "\u13a9\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd\u13ac\u13a9": 17061, "\u13c3\u13e3\u13b6": 17062, "\u2581\u13be\u13be\u13db\u13c1\u13b2\u13a9": 17063, "\u2581\u13d3\u13be\u13cf": 17064, "\u13e3\u13a9\u13cd\u13d7": 17065, "\u2581\u13d3\u13e8\u13ef": 17066, "\u13b5\u13d3\u13cd\u13d9\u13d7": 17067, "\u13e3\u13d6": 17068, "\u13da\u13d9\u13a1": 17069, "\u13c6\u13b5\u13e5\u13d9\u13c5": 17070, "\u13e5\u13ef\u13e2\u13c8": 17071, "\u13d7\u13a4\u13e0\u13a0\u13ce": 17072, "\u13b5\u13d4\u13ec": 17073, "\u2581\u13d7\u13a9\u13d7": 17074, "\u2581\u13f1\u13e3\u13ce\u13b5": 17075, "\u2581\u13a8\u13a6\u13b5\u13e5\u13d9\u13c1\u13b4": 17076, "\u2581\u13a2\u13a4\u13a8": 17077, "\u2581\u13a4\u13f2\u13cd\u13d9\u13d7": 17078, "\u13e5\u13cd\u13d3\u13e9\u13d5\u13a9": 17079, "\u13d3\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 17080, "\u13cd\u13a9\u13c5\u13d7\u13cd\u13a8\u13cd\u13d7": 17081, "\u13a8\u13e5\u13f2\u13ae": 17082, "\u2581\u13eb\u13d7\u13a6\u13b6\u13cd": 17083, "\u13ea\u13b3\u13d7\u13d3\u13cd\u13d7\u13f1": 17084, "\u2581\u13a9\u13cf": 17085, "\u13d3\u13a7\u13bf\u13e9\u13d5\u13ac": 17086, "\u13e5\u13aa\u13d9\u13af\u13cd\u13d4\u13c2": 17087, "\u13d3\u13e5\u13b3\u13c2": 17088, "\u2581\u13ed\u13df": 17089, "\u2581\u13f1\u13c2\u13e3\u13ea": 17090, "\u2581\u13a0\u13be\u13d3\u13db\u13a5": 17091, "\u2581\u13b0\u13b5": 17092, "\u2581\u13d5\u13a8\u13f4\u13a2": 17093, "\u13d2\u13a6\u13b6\u13d7\u13cd": 17094, "\u13c2\u13ae\u13cd\u13d7": 17095, "\u13eb\u13ac\u13e9": 17096, "\u13ac\u13d2": 17097, "\u13d1\u13a6\u13b8\u13d9\u13d7": 17098, "\u13eb\u13db\u13b2": 17099, "\u2581\u13d3\u13a6\u13be\u13ec": 17100, "\u13e5\u13a6\u13d8\u13d7": 17101, "\u2581\u13a4\u13b5\u13db": 17102, "\u13ef\u13e8\u13d7": 17103, "\u2581\u13a2\u13ef\u13db": 17104, "\u2581\u13a0\u13b5\u13cd\u13aa\u13b8\u13c9": 17105, "\u13ac\u13ec\u13ce\u13b4\u13a2": 17106, "\u2581\u13a0\u13a9\u13f2\u13b2": 17107, "\u13e9\u13ab\u13d7\u13d7": 17108, "\u2581\u13a4\u13cd\u13da": 17109, "\u13b3\u13d1\u13e0": 17110, "\u13a2\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 17111, "\u2581\u13d7\u13c5\u13c3\u13db\u13cd\u13a9\u13c2": 17112, "\u2581\u13a8\u13a6\u13d3\u13c5\u13d6\u13cd\u13a8": 17113, "\u2581\u13a0\u13ef\u13d9\u13af": 17114, "\u2581\u13d7\u13ac\u13a9\u13b6": 17115, "\u2581\u13a4\u13ea\u13c5\u13c3": 17116, "\u13c3\u13d3\u13c1\u13b4\u13a2": 17117, "\u2581\u13c2\u13da\u13d5\u13d8\u13f4": 17118, "\u2581\u13a4\u13a9\u13b8\u13db": 17119, "\u2581\u13ad\u13eb\u13c2\u13f3": 17120, "\u2581\u13e9\u13e5\u13ef\u13c5\u13b2": 17121, "\u2581\u13d5\u13ac\u13e9\u13e0": 17122, "\u2581\u13d5\u13e3\u13d3\u13f2\u13b5": 17123, "\u2581\u13a0\u13be\u13df\u13c2\u13ac\u13c1": 17124, "\u2581\u13e8\u13db\u13a9": 17125, "\u13cd\u13d3\u13d3\u13c5\u13d4": 17126, "\u2581\u13a6\u13ec": 17127, "\u13cf\u13b2\u13cd\u13aa": 17128, "\u2581\u13e7\u13c2\u13cd\u13d4\u13e9": 17129, "\u13d7\u13e8\u13f2": 17130, "\u13d3\u13c5\u13d8\u13f3": 17131, "\u2581\u13ed\u13b5\u13cc\u13b3\u13d3\u13c5": 17132, "\u2581\u13ac\u13be\u13a2": 17133, "\u13b8\u13c9\u13d5": 17134, "\u2581\u13a4\u13f2\u13b0": 17135, "\u13e5\u13a5\u13cd\u13a6": 17136, "\u2581\u13a4\u13c2\u13ef\u13eb": 17137, "\u2581\u13a2\u13e5\u13aa": 17138, "\u13d3\u13ef\u13eb\u13cd\u13a8\u13cd\u13d7": 17139, "\u13b7\u13c9\u13d7": 17140, "\u2581\u13e7\u13c2\u13f0": 17141, "\u13e3\u13b6\u13c1\u13d4\u13c5": 17142, "\u13d7\u13d4\u13cd\u13d4": 17143, "\u2581\u13a6\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac": 17144, "\u13c4\u13aa\u13eb\u13ce\u13d7\u13f1": 17145, "\u2581\u13c2\u13e3\u13b5\u13cd\u13d3\u13c1\u13b2": 17146, "\u13e8\u13c9\u13d5": 17147, "\u13ea\u13d3\u13cd\u13d7\u13f1": 17148, "\u2581\u13f1\u13e3\u13d5\u13ef\u13d4\u13c1": 17149, "\u2581\u13ed\u13f4\u13b5": 17150, "\u13b5\u13b2\u13be": 17151, "\u2581\u13d8\u13e9\u13db": 17152, "\u13c1\u13e2\u13d9\u13d7": 17153, "\u2581\u13c2\u13d5\u13e8\u13c1": 17154, "\u2581\u13a0\u13b4\u13c8\u13f1": 17155, "\u2581\u13c2\u13ac\u13c1\u13a2": 17156, "\u2581\u13a4\u13cd\u13c6\u13b8\u13af\u13d7\u13ce": 17157, "\u13a9\u13cd\u13c6\u13c2\u13aa\u13d4\u13c5\u13a9": 17158, "\u13d7\u13ef\u13a5": 17159, "\u13ac\u13e9\u13cd\u13d9\u13a2": 17160, "\u13c2\u13eb\u13af": 17161, "\u2581\u13c2\u13a8\u13ac": 17162, "\u13cd\u13da\u13a2\u13d2\u13c3": 17163, "\u13ac\u13e9\u13be\u13db\u13c1\u13a2": 17164, "\u13d3\u13b4\u13b2\u13cd\u13a6": 17165, "\u2581\u13e5\u13a8\u13e5\u13cd\u13d5\u13b8": 17166, "\u2581\u13c2\u13d9\u13db": 17167, "\u2581\u13c2\u13da\u13db": 17168, "\u13f4\u13a9\u13c1": 17169, "\u2581\u13a4\u13a9\u13b8\u13d4\u13c1": 17170, "\u2581\u13ef\u13b5\u13d7": 17171, "\u2581\u13ef\u13c1\u13ae": 17172, "\u2581\u13d7\u13dc": 17173, "\u2581\u13eb\u13c2\u13a6\u13b5\u13cd\u13d7": 17174, "\u2581\u13a4\u13c2\u13e8": 17175, "\u2581\u13a4\u13c2\u13f0\u13b8\u13d0": 17176, "\u2581\u13a0\u13e5\u13a9": 17177, "\u13d8\u13cd\u13d7": 17178, "\u2581\u13a4\u13c2\u13c6\u13c2\u13f2\u13cd": 17179, "\u13d8\u13c3\u13ae\u13b8": 17180, "\u2581\u13a8\u13a6\u13d1\u13f4": 17181, "\u2581\u13da\u13cd\u13da\u13c1": 17182, "\u13c4\u13e9\u13c1\u13ae": 17183, "\u2581\u13a4\u13c2\u13f4\u13b8\u13c3": 17184, "\u13d3\u13d7\u13a6\u13b4\u13f2": 17185, "\u2581\u13a4\u13d3\u13aa\u13be\u13db\u13d4\u13c5": 17186, "\u2581\u13d8\u13ef": 17187, "\u2581\u13da\u13c2\u13c3\u13a9": 17188, "\u13af\u13cd\u13d3\u13f1": 17189, "\u2581\u13c2\u13a6\u13be": 17190, "\u2581\u13a4\u13be\u13e3\u13a1": 17191, "\u2581\u13d7\u13a9\u13a6\u13a8\u13a2": 17192, "\u13d7\u13d5\u13a8\u13cd\u13d7": 17193, "\u2581\u13da\u13eb": 17194, "\u2581\u13e5\u13d3\u13e5\u13b6": 17195, "\u13c2\u13ea\u13d2": 17196, "\u2581\u13f3\u13ec\u13af\u13f3\u13c1": 17197, "\u13c2\u13f4\u13ae\u13a2": 17198, "\u2581\u13a0\u13c2\u13d4": 17199, "\u2581\u13cd\u13a9\u13ef\u13b5\u13aa": 17200, "\u2581\u13a2\u13f3\u13c5\u13c1\u13b8": 17201, "\u2581\u13e7\u13ee\u13d7": 17202, "\u2581\u13af\u13f0\u13cc\u13db": 17203, "\u2581\u13ef\u13c2\u13cd\u13a6\u13a2": 17204, "\u2581\u13d5\u13e8\u13f2\u13af": 17205, "\u2581\u13ed\u13c2\u13c2\u13cc\u13c1": 17206, "\u2581\u13af\u13c1\u13e4": 17207, "\u2581\u13ed\u13dd\u13c1": 17208, "\u13be\u13bf\u13ec\u13cd": 17209, "\u2581\u13d5\u13a4\u13c1\u13b6\u13d5": 17210, "\u13e0\u13ce\u13a2": 17211, "\u2581\u13d7\u13e3\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 17212, "\u13c3\u13af\u13f0\u13b8": 17213, "\u13d9\u13b3\u13cd\u13d7\u13cd\u13ac": 17214, "\u2581\u13d3\u13a6\u13b5\u13cd\u13a8": 17215, "\u2581\u13eb\u13a1": 17216, "\u2581\u13a4\u13db\u13c5\u13a2\u13cd": 17217, "\u13e3\u13ab\u13f4\u13d3\u13cf": 17218, "\u2581\u13f1\u13a6\u13c4": 17219, "\u2581\u13a4\u13e9\u13c5\u13ac": 17220, "\u13a9\u13b8\u13c5\u13a9": 17221, "\u13e9\u13d5\u13c5": 17222, "\u2581\u13e9\u13db": 17223, "\u2581\u13a4\u13c3\u13e2\u13c1": 17224, "\u2581\u13a4\u13b4\u13eb\u13cd\u13d9\u13d7": 17225, "\u13a8\u13e8\u13c1\u13b4": 17226, "\u13a6\u13cd\u13aa\u13af": 17227, "\u2581\u13a0\u13d4\u13b4\u13d2\u13a9": 17228, "\u13e3\u13b3\u13cf\u13d5\u13c2": 17229, "\u13e5\u13db": 17230, "\u2581\u13a6\u13b8\u13b3\u13d7\u13e8": 17231, "\u2581\u13ac\u13e9\u13c2\u13aa\u13b2": 17232, "\u2581\u13e7\u13c2\u13f2\u13b1\u13af\u13cd": 17233, "\u2581\u13e3\u13c2\u13c3\u13a2": 17234, "\u13ef\u13db\u13db\u13b2\u13cd\u13a6": 17235, "\u2581\u13ac\u13ce": 17236, "\u13a3\u13be": 17237, "\u13d7\u13d4\u13cd\u13a6": 17238, "\u2581\u13ef\u13cb\u13d4": 17239, "\u2581\u13a3\u13a9\u13f0\u13b8\u13d2": 17240, "\u2581\u13a4\u13d4\u13b6\u13a9": 17241, "\u2581\u13e5\u13d5\u13d3": 17242, "\u2581\u13cf\u13cf": 17243, "\u2581\u13c2\u13cd\u13c6\u13db\u13c1\u13b8": 17244, "\u2581\u13a4\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13d7": 17245, "\u13c4\u13c2\u13e3\u13d4": 17246, "\u2581\u13a4\u13c2\u13ec\u13c1": 17247, "\u13a6\u13a8\u13c5\u13d7\u13cd\u13d7": 17248, "\u2581\u13da\u13aa\u13b5\u13f0\u13a5": 17249, "\u2581\u13d3\u13be\u13d3\u13cd\u13a6": 17250, "\u2581\u13a4\u13f2\u13e8\u13a2": 17251, "\u2581\u13d3\u13b5\u13cd\u13c6": 17252, "\u2581\u13a0\u13c6\u13b5\u13ae\u13b5\u13e8": 17253, "\u2581\u13a0\u13c2\u13c6": 17254, "\u13d3\u13f2\u13e5\u13c2": 17255, "\u2581\u13c5\u13d3\u13f3\u13c5\u13cd\u13d7": 17256, "\u2581\u13ad\u13c1\u13cd\u13a8\u13cd": 17257, "\u13cd\u13d3\u13c1\u13b0": 17258, "\u2581\u13a1\u13e5\u13c5\u13c1": 17259, "\u13b8\u13b6\u13a2": 17260, "\u13c5\u13b2\u13a9": 17261, "\u2581\u13a1\u13e4": 17262, "\u13c3\u13f4\u13d8\u13cd": 17263, "\u2581\u13a0\u13b2\u13cd\u13a9": 17264, "\u2581\u13a4\u13ea\u13e2\u13c5": 17265, "\u2581\u13a4\u13d4\u13d5\u13a9\u13cd": 17266, "\u13d3\u13c5\u13a9": 17267, "\u13cd\u13d7\u13a7": 17268, "\u2581\u13a4\u13be\u13a1": 17269, "\u2581\u13ac\u13a9\u13c1\u13a2\u13cd": 17270, "\u13ee\u13c5": 17271, "\u2581\u13ad\u13cf": 17272, "\u13a9\u13cc\u13db": 17273, "\u2581\u13f1\u13a6\u13b7\u13aa": 17274, "\u13ac\u13c3\u13af\u13cf": 17275, "\u2581\u13a4\u13d3\u13ea\u13b5": 17276, "\u13e3\u13cd\u13c6\u13c2\u13aa\u13d7": 17277, "\u2581\u13da\u13c2\u13df\u13cc\u13c5": 17278, "\u13c9\u13af\u13f3": 17279, "\u13ac\u13ce\u13b8": 17280, "\u13c5\u13cd\u13d4\u13c5\u13a9": 17281, "\u13d5\u13d2\u13c5": 17282, "\u2581\u13ac\u13e9\u13be\u13d5\u13c1\u13b8": 17283, "\u13a6\u13be\u13a6\u13d8": 17284, "\u2581\u13eb\u13d3\u13c2\u13f4": 17285, "\u2581\u13a0\u13c6\u13d9": 17286, "\u13af\u13ce\u13d7": 17287, "\u2581\u13c2\u13d1\u13ea\u13ce": 17288, "\u13ac\u13d3\u13c3\u13cd": 17289, "\u2581\u13ed\u13b8\u13c5": 17290, "\u2581\u13d9\u13c5": 17291, "\u13e6\u13b8": 17292, "\u2581\u13d7\u13a8\u13a6\u13df\u13b6\u13cd": 17293, "\u2581\u13a4\u13e4\u13cd\u13d7": 17294, "\u2581\u13e3\u13cc": 17295, "\u13c6\u13b8": 17296, "\u2581\u13d7\u13cd\u13a9\u13f2\u13af": 17297, "\u2581\u13c1\u13cd\u13d7": 17298, "\u2581\u13da\u13e2": 17299, "\u2581\u13a9\u13db": 17300, "\u2581\u13d5\u13a6\u13b7\u13a8": 17301, "\u2581\u13a2\u13a9\u13cd\u13a6": 17302, "\u2581\u13a0\u13c2\u13cc": 17303, "\u13e5\u13c5\u13cf\u13db": 17304, "\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8\u13cd\u13d7": 17305, "\u13a8\u13f3\u13d0": 17306, "\u2581\u13a3\u13aa\u13af\u13f3\u13af": 17307, "\u2581\u13a4\u13be\u13d3\u13df\u13d0\u13d7": 17308, "\u2581\u13a0\u13b5\u13f0\u13b5": 17309, "\u2581\u13d7\u13c2\u13b6": 17310, "\u13ef\u13d8\u13c3\u13af\u13cd\u13d7": 17311, "\u2581\u13d3\u13f4": 17312, "\u13c2\u13e8\u13c1\u13b8": 17313, "\u2581\u13a4\u13d3\u13c2\u13b5\u13a8\u13a2": 17314, "\u13be\u13dd\u13a5\u13a2": 17315, "\u13d3\u13e2": 17316, "\u2581\u13a3\u13ad\u13c1\u13af": 17317, "\u2581\u13a4\u13d5\u13c1\u13b8\u13a2": 17318, "\u13cc\u13b9\u13d7\u13f4": 17319, "\u2581\u13da\u13c2\u13cd\u13da\u13c5": 17320, "\u2581\u13a0\u13be\u13ce\u13b5": 17321, "\u2581\u13d3\u13a6\u13d8\u13f0": 17322, "\u13b5\u13aa\u13e9\u13d5": 17323, "\u13e5\u13c1\u13a2\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 17324, "\u2581\u13a2\u13e5\u13b7\u13e8": 17325, "\u2581\u13eb\u13d5\u13a8\u13a6\u13d3\u13a2": 17326, "\u13e3\u13c5\u13d3\u13d7\u13cd\u13a8\u13cd\u13d7": 17327, "\u13be\u13c1\u13b6\u13d7": 17328, "\u2581\u13da\u13c5\u13c1\u13b8": 17329, "\u2581\u13d5\u13ac\u13e9\u13be": 17330, "\u2581\u13a8\u13e3\u13d5\u13c1": 17331, "\u2581\u13d5\u13e3\u13e0\u13f1": 17332, "\u2581\u13a4\u13c2\u13ae": 17333, "\u2581\u13ee\u13d3\u13e5\u13ef": 17334, "\u13ac\u13e9\u13d3\u13b4\u13c5\u13db": 17335, "\u2581\u13a3\u13a6\u13e4\u13b5\u13aa": 17336, "\u2581\u13a4\u13be\u13d9\u13b4\u13c6": 17337, "\u13be\u13d5\u13d8\u13f4": 17338, "\u13ce\u13b5\u13d9\u13d4\u13c5": 17339, "\u2581\u13a4\u13b8\u13c5": 17340, "\u13e3\u13d5\u13ef\u13d9\u13d7\u13ad": 17341, "\u2581\u13a1\u13e3\u13e1\u13d7": 17342, "\u13c1\u13b4\u13c3": 17343, "\u13b5\u13ce\u13cd\u13d7": 17344, "\u13e6\u13ce\u13b8\u13af": 17345, "\u13c1\u13d2\u13ad": 17346, "\u13cc\u13c6\u13b4\u13b8": 17347, "\u13ac\u13b7\u13e4\u13b5": 17348, "\u2581\u13a2\u13e4\u13ef\u13d4\u13af": 17349, "\u2581\u13e5\u13cd\u13ab\u13d5\u13d2": 17350, "\u2581\u13eb\u13e5\u13ef": 17351, "\u2581\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 17352, "\u2581\u13d7\u13e5\u13c2\u13f4\u13d7": 17353, "\u13e5\u13b8": 17354, "\u2581\u13a4\u13be\u13b8": 17355, "\u2581\u13ef\u13f4": 17356, "\u13c6\u13d2\u13ad\u13c2\u13b8": 17357, "\u13da\u13f2\u13d0": 17358, "\u2581\u13f1\u13d9\u13e5\u13f2\u13b1": 17359, "\u13f1\u13cd\u13ac\u13a2": 17360, "\u13e5\u13ef\u13d0\u13c5\u13f0\u13b5": 17361, "\u13a9\u13c3\u13ae\u13ad": 17362, "\u13cd\u13d3\u13c1\u13d7\u13f1": 17363, "\u2581\u13a0\u13cc\u13c3": 17364, "\u2581\u13da\u13b3\u13cd\u13ac\u13a2": 17365, "\u13a6\u13b6\u13cd\u13ac": 17366, "\u13d2\u13ad\u13c2\u13b8": 17367, "\u13c2\u13cd\u13d3\u13e9\u13d9\u13b8\u13af": 17368, "\u2581\u13a4\u13d3\u13c5\u13d6\u13b4\u13a2": 17369, "\u2581\u13f1\u13d7\u13b5": 17370, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d2": 17371, "\u2581\u13d7\u13ac\u13e9\u13c2\u13f2\u13b1\u13af": 17372, "\u2581\u13d9\u13db\u13cd": 17373, "\u13e9\u13db\u13cd\u13d7": 17374, "\u2581\u13a2\u13e3\u13c9": 17375, "\u2581\u13c1\u13b5\u13cd\u13ac\u13c3": 17376, "\u13f3\u13d5\u13c3": 17377, "\u2581\u13d3\u13f0\u13d9": 17378, "\u13cd\u13d7\u13c3\u13ae\u13cd\u13ac": 17379, "\u13e9\u13d7": 17380, "\u13e9\u13db\u13af\u13b4": 17381, "\u2581\u13a8\u13a6\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1": 17382, "\u2581\u13a4\u13d3\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5": 17383, "\u13f1\u13b2\u13a2": 17384, "\u13d3\u13aa\u13e9\u13d8\u13cd\u13aa\u13a2": 17385, "\u13e5\u13cc\u13db\u13a5\u13cd\u13a9": 17386, "\u13a0\u13a9\u13a7\u13c1\u13b8": 17387, "\u13d3\u13b5\u13cc\u13b3\u13d7": 17388, "\u13cc\u13b9\u13d7": 17389, "\u13d7\u13e3\u13a7\u13be": 17390, "\u2581\u13da\u13b4\u13c5\u13f0\u13c3": 17391, "\u2581\u13a3\u13a9\u13d2\u13cd\u13d7": 17392, "\u13ac\u13be\u13ec\u13cd\u13ac": 17393, "\u2581\u13ed\u13d3\u13c5\u13d6": 17394, "\u2581\u13a1\u13e3\u13b5\u13a1": 17395, "\u2581\u13a4\u13cd\u13d8": 17396, "\u2581\u13e9\u13e0\u13a0": 17397, "\u2581\u13a8\u13e5\u13c3\u13c1\u13b8": 17398, "\u2581\u13a2\u13e4\u13d9\u13b2": 17399, "\u2581\u13f1\u13da\u13d3\u13f2": 17400, "\u2581\u13a5\u13d3": 17401, "\u2581\u13a4\u13a7\u13d4\u13b2": 17402, "\u2581\u13a4\u13c7\u13d3\u13b8\u13c9": 17403, "\u13ec\u13c2\u13ce\u13a2": 17404, "\u2581\u13ef\u13cd\u13a6\u13c5": 17405, "\u2581\u13da\u13c3\u13d5\u13af": 17406, "\u2581\u13a6\u13c3\u13b8\u13a5\u13cd\u13ac\u13a2": 17407, "\u2581\u13e5\u13d5\u13a9": 17408, "\u13e5\u13f2\u13ce\u13ae\u13cd\u13d7": 17409, "\u13a9\u13cd\u13a8\u13a2": 17410, "\u13e8\u13ef\u13b5\u13e5\u13d9\u13c1\u13b8\u13a9": 17411, "\u2581\u13e7\u13ea\u13f0\u13cd\u13d7": 17412, "\u2581\u13e7\u13c2\u13ac\u13e9\u13b6": 17413, "\u13e3\u13b5\u13c2\u13ac\u13a6": 17414, "\u2581\u13cd\u13a9\u13db\u13d4\u13c2": 17415, "\u13be\u13d3\u13f4\u13b3\u13db": 17416, "\u13ef\u13d8\u13c4\u13a6": 17417, "\u2581\u13d3\u13be\u13d8\u13c1": 17418, "\u13db\u13c5\u13c2": 17419, "\u2581\u13da\u13ed\u13aa": 17420, "\u13d7\u13d7\u13d0": 17421, "\u2581\u13a1\u13c6\u13d3": 17422, "\u13cd\u13d7\u13f4\u13cd\u13d7\u13f1": 17423, "\u13b5\u13f0\u13a2\u13b8\u13cd": 17424, "\u2581\u13a1\u13e3\u13ab\u13f4\u13a1": 17425, "\u2581\u13a2\u13f4\u13d3": 17426, "\u13ed\u13d3\u13b4\u13ce\u13a2": 17427, "\u2581\u13da\u13be\u13d3\u13a1": 17428, "\u2581\u13c5\u13db\u13a9\u13c5": 17429, "\u2581\u13d3\u13c2\u13ec\u13c2": 17430, "\u13a6\u13db\u13c5": 17431, "\u13d8\u13b9": 17432, "\u13e5\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13ad": 17433, "\u2581\u13ac\u13e9\u13ef\u13eb\u13cd": 17434, "\u2581\u13d5\u13a8\u13e5\u13cd\u13da": 17435, "\u13be\u13db\u13c1\u13b5\u13d9\u13af": 17436, "\u13b5\u13ae\u13b5\u13e4\u13ae": 17437, "\u13d7\u13e5\u13b1\u13cd\u13d5\u13ce": 17438, "\u2581\u13a4\u13d7\u13e9": 17439, "\u2581\u13a4\u13b6\u13a9\u13b8\u13a9": 17440, "\u13cd\u13c6\u13b8\u13a1\u13b8": 17441, "\u2581\u13a1\u13e6\u13a2\u13f3\u13b2": 17442, "\u13a6\u13d5\u13f2\u13b2\u13cd\u13a6": 17443, "\u13e4\u13b7\u13af\u13cd\u13d7": 17444, "\u13b5\u13ce\u13ae": 17445, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7": 17446, "\u2581\u13da\u13c2\u13e2\u13c1": 17447, "\u13af\u13c2\u13f4\u13ce\u13cd\u13d7": 17448, "\u2581\u13d3\u13dc\u13cd\u13d7\u13cd": 17449, "\u13da\u13ed\u13aa\u13d4\u13c1\u13a2": 17450, "\u2581\u13a5\u13a9\u13c1\u13e4\u13d7": 17451, "\u2581\u13a4\u13e2\u13c5": 17452, "\u2581\u13d5\u13e3\u13d7": 17453, "\u2581\u13ef\u13db\u13d3\u13cd": 17454, "\u13c2\u13ac\u13a8\u13cd\u13d7": 17455, "\u2581\u13b9\u13c1": 17456, "\u2581\u13a0\u13c6\u13da\u13b8": 17457, "\u13be\u13d3\u13cd\u13d5\u13d3\u13b5\u13f4": 17458, "\u13c2\u13cd\u13d5\u13b8": 17459, "\u13ac\u13a9\u13a6\u13d8\u13b4": 17460, "\u2581\u13da\u13c2\u13a8\u13af\u13d9\u13b4": 17461, "\u13d9\u13b5\u13cd\u13d7\u13cd\u13ac\u13a2": 17462, "\u2581\u13a4\u13c2\u13c3\u13b8\u13d4": 17463, "\u2581\u13a2\u13b3\u13cf": 17464, "\u2581\u13da\u13aa\u13ae\u13a2": 17465, "\u13f4\u13cd\u13d4\u13c5\u13af": 17466, "\u2581\u13e9\u13a9\u13b7\u13af\u13cd\u13d7": 17467, "\u2581\u13a3\u13a9\u13cd\u13a6\u13c5\u13e8": 17468, "\u2581\u13a1\u13d9\u13d3\u13c3": 17469, "\u13a9\u13a1\u13d7\u13f1": 17470, "\u2581\u13a0\u13b5\u13cd\u13d5\u13b5\u13cd": 17471, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13aa\u13a2": 17472, "\u2581\u13a3\u13a6\u13da\u13a9": 17473, "\u2581\u13da\u13be\u13d3\u13c2\u13f4": 17474, "\u2581\u13a0\u13d3\u13d9\u13b5": 17475, "\u13eb\u13d7\u13e3\u13a7\u13be": 17476, "\u2581\u13a2\u13e5\u13f4\u13b8": 17477, "\u2581\u13a4\u13d5\u13f2": 17478, "\u13cd\u13db\u13d3": 17479, "\u2581\u13eb\u13ac\u13e9\u13be\u13db": 17480, "\u2581\u13a3\u13a9\u13be\u13b5\u13a2": 17481, "\u2581\u13a3\u13cd\u13d7\u13b6": 17482, "\u2581\u13cd\u13c6\u13b5\u13cd\u13aa\u13b8\u13d3": 17483, "\u13d4\u13f2\u13af\u13ae\u13cd\u13d7": 17484, "\u2581\u13a0\u13c2\u13c1\u13a2": 17485, "\u13f2\u13b8\u13be": 17486, "\u13e5\u13cd\u13a6\u13be\u13a2": 17487, "\u13e9\u13d5\u13a9": 17488, "\u13b8\u13cd\u13d7\u13cd\u13a8\u13a2": 17489, "\u13c1\u13a6\u13b8": 17490, "\u2581\u13e4\u13e0": 17491, "\u13e9\u13c5\u13ec": 17492, "\u13e3\u13b4": 17493, "\u2581\u13e7\u13c2\u13b7": 17494, "\u13a6\u13ef\u13b1\u13b6": 17495, "\u2581\u13c2\u13d3\u13c2": 17496, "\u13be\u13b5\u13cd\u13d4\u13c5\u13a9": 17497, "\u13af\u13b2\u13a9": 17498, "\u13b5\u13cd\u13d3\u13f4\u13c5\u13ad": 17499, "\u13e8\u13cd\u13d5\u13b8\u13a1\u13d7\u13f1": 17500, "\u13c2\u13c1\u13a2\u13cd\u13d9\u13d7\u13f1": 17501, "\u2581\u13ac\u13d7\u13cf": 17502, "\u2581\u13d3\u13be\u13d5\u13cd\u13aa": 17503, "\u2581\u13a7\u13c1\u13c9\u13a8\u13c9": 17504, "\u2581\u13a4\u13b5\u13c3\u13ae\u13d4\u13c5": 17505, "\u2581\u13a4\u13c2\u13f4\u13ce": 17506, "\u13a4\u13ea\u13a7\u13c1\u13d7\u13f1": 17507, "\u13be\u13d3\u13f4\u13b3\u13d4": 17508, "\u2581\u13a4\u13b8\u13d5\u13cd\u13d7\u13cd": 17509, "\u13a6\u13d8\u13cf\u13d7\u13e2": 17510, "\u13c6\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13b8": 17511, "\u13a4\u13b5\u13ec\u13e5\u13d5\u13be": 17512, "\u2581\u13da\u13eb\u13d2": 17513, "\u2581\u13b0\u13e9\u13c9": 17514, "\u13e5\u13a9\u13a1\u13d7": 17515, "\u13bf\u13d7\u13cd\u13d7\u13cd\u13a8": 17516, "\u2581\u13d5\u13e8\u13ef\u13a7": 17517, "\u2581\u13c1\u13b9": 17518, "\u13ab\u13cd\u13d9": 17519, "\u2581\u13a0\u13a9\u13b6\u13d2": 17520, "\u2581\u13a2\u13e5\u13c5\u13cf\u13d9": 17521, "\u2581\u13a4\u13c1\u13a9\u13d2": 17522, "\u13ac\u13e9\u13b5\u13aa\u13c1\u13b8\u13a9": 17523, "\u2581\u13d5\u13e5\u13f2\u13b5": 17524, "\u13cc\u13d9\u13f1": 17525, "\u13e6\u13f4": 17526, "\u2581\u13c2\u13db\u13c1": 17527, "\u13a6\u13d9\u13a8\u13a2": 17528, "\u13ad\u13f0\u13af": 17529, "\u2581\u13a2\u13e5\u13c4\u13aa\u13a2": 17530, "\u2581\u13d7\u13d3\u13d6": 17531, "\u2581\u13e8\u13db\u13cd\u13c6": 17532, "\u2581\u13a4\u13c2\u13b5\u13a5\u13c2\u13b8": 17533, "\u2581\u13a0\u13c2\u13c4\u13aa\u13ac": 17534, "\u2581\u13ab\u13e9\u13d5": 17535, "\u13cd\u13a9\u13f0\u13b3\u13cd\u13d4": 17536, "\u2581\u13eb\u13c4\u13e9\u13c1": 17537, "\u13f0\u13b8\u13cd\u13a8": 17538, "\u13a7\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac\u13a2": 17539, "\u2581\u13c2\u13a6\u13ea\u13ce\u13b4": 17540, "\u13d7\u13db\u13d7": 17541, "\u2581\u13d5\u13a4\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1": 17542, "\u2581\u13e6\u13a9\u13f0\u13b8": 17543, "\u2581\u13a3\u13a9\u13db": 17544, "\u13df\u13cf\u13cd\u13a8\u13cd\u13d7": 17545, "\u2581\u13c5\u13d7\u13a6\u13b5\u13cd": 17546, "\u13b0\u13cd\u13d7": 17547, "\u13a6\u13b5\u13a5\u13c2": 17548, "\u2581\u13d3\u13c2\u13c2\u13f1": 17549, "\u2581\u13ad\u13eb": 17550, "\u13b5\u13d6\u13b8\u13ae\u13cd\u13ac": 17551, "\u2581\u13a0\u13af\u13cd\u13d7": 17552, "\u13ec\u13d4\u13c2": 17553, "\u2581\u13f1\u13ac\u13a9\u13e9\u13db": 17554, "\u13b2\u13ac": 17555, "\u2581\u13a0\u13c2\u13cd\u13d9": 17556, "\u2581\u13da\u13be\u13b4\u13c1\u13c3": 17557, "\u13d4\u13f1": 17558, "\u2581\u13e7\u13ed\u13aa\u13d4\u13c5": 17559, "\u2581\u13d5\u13e5\u13f2\u13af\u13ce\u13b8": 17560, "\u2581\u13e7\u13a6\u13be": 17561, "\u2581\u13a0\u13c6\u13b5\u13cd\u13aa\u13b8": 17562, "\u13aa\u13af\u13d7": 17563, "\u13a4\u13ea\u13aa\u13d7": 17564, "\u2581\u13a4\u13d5\u13b4": 17565, "\u2581\u13ad\u13bb\u13c3": 17566, "\u13ac\u13e9\u13b6\u13d3\u13c1\u13b8": 17567, "\u2581\u13d9\u13a9\u13f2": 17568, "\u2581\u13c4\u13cd\u13d9": 17569, "\u2581\u13da\u13d8": 17570, "\u2581\u13a3\u13a9\u13be\u13da\u13b5": 17571, "\u13e5\u13df\u13cf\u13cd\u13a8\u13cd\u13d7": 17572, "\u2581\u13d2\u13b2": 17573, "\u2581\u13da\u13d9\u13e2\u13d2": 17574, "\u13e8\u13a8\u13eb\u13d2": 17575, "\u2581\u13ac\u13e9\u13d5\u13e8": 17576, "\u13d3\u13f4\u13d9\u13d7": 17577, "\u13d5\u13d2\u13ad": 17578, "\u13a6\u13b5\u13ec\u13a9": 17579, "\u2581\u13d4\u13b4\u13c5": 17580, "\u13b3\u13d7\u13cd\u13d7\u13f1": 17581, "\u13aa\u13a9\u13d4\u13f2\u13ce\u13b2\u13a9": 17582, "\u2581\u13a2\u13a9\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 17583, "\u13d9\u13af\u13f3\u13b2\u13cd\u13a6": 17584, "\u2581\u13e7\u13c2\u13c1\u13b5": 17585, "\u13d8\u13cd\u13d3\u13c1\u13b0": 17586, "\u13b5\u13d4\u13d7\u13c5\u13ce": 17587, "\u2581\u13a3\u13a9\u13c2\u13f0": 17588, "\u2581\u13a0\u13a6\u13d8\u13c3\u13af\u13cd\u13d7": 17589, "\u2581\u13e5\u13ac\u13da": 17590, "\u13d8\u13f0\u13b4": 17591, "\u2581\u13a3\u13a9\u13f1": 17592, "\u2581\u13a2\u13e4\u13b2\u13a9": 17593, "\u2581\u13a4\u13be\u13d6\u13c6\u13b6": 17594, "\u2581\u13f1\u13da\u13c2\u13f2": 17595, "\u13ef\u13ea\u13a6": 17596, "\u13e5\u13c4\u13aa\u13eb\u13d2\u13a9": 17597, "\u2581\u13a4\u13d3\u13c5\u13d6\u13af\u13b6": 17598, "\u13d3\u13a7\u13bf\u13e9\u13d5\u13aa": 17599, "\u2581\u13f4\u13d7\u13cd\u13ac": 17600, "\u2581\u13d7\u13d3\u13d3": 17601, "\u2581\u13a4\u13b7\u13af\u13cd": 17602, "\u2581\u13f3\u13c2\u13b8": 17603, "\u2581\u13a4\u13be\u13db\u13db\u13c1": 17604, "\u13e3\u13d7\u13d2\u13c2": 17605, "\u2581\u13d5\u13e5\u13b8": 17606, "\u2581\u13e7\u13be\u13db\u13c5": 17607, "\u2581\u13e9\u13a9\u13b7\u13e5": 17608, "\u13db\u13d3\u13c1\u13b5": 17609, "\u2581\u13d7\u13a6\u13be": 17610, "\u2581\u13da\u13c3\u13b8\u13d2": 17611, "\u2581\u13f3\u13aa\u13b2": 17612, "\u2581\u13a0\u13d3\u13b5\u13c2\u13aa\u13af\u13cd\u13d7\u13cd\u13aa": 17613, "\u2581\u13a4\u13be\u13db\u13c5\u13a2\u13cd\u13d4": 17614, "\u2581\u13c2\u13d3\u13e3\u13b5\u13cd\u13d4": 17615, "\u13c4\u13aa\u13d4\u13c5": 17616, "\u13db\u13c9": 17617, "\u13db\u13e8\u13a9": 17618, "\u2581\u13da\u13c4\u13aa\u13d4": 17619, "\u2581\u13d3\u13c2\u13f4": 17620, "\u13e3\u13b3\u13a9": 17621, "\u13a9\u13be\u13a9\u13db": 17622, "ll": 17623, "\u13ef\u13ea\u13d0\u13b8\u13cd\u13d7": 17624, "\u2581\u13a4\u13ea\u13b5\u13af\u13cd\u13d7\u13cd\u13a8": 17625, "\u2581\u13f1\u13ac\u13bf\u13d7\u13cd": 17626, "\u2581\u13d5\u13af\u13f0\u13cc": 17627, "\u2581\u13eb\u13da\u13d0": 17628, "\u13a4\u13af": 17629, "\u2581\u13a4\u13c2\u13e5\u13b8\u13c5": 17630, "\u2581\u13c4\u13b5\u13cd\u13d4\u13c5\u13be": 17631, "\u2581\u13a3\u13a6\u13d3\u13c5\u13d3\u13d7\u13cd": 17632, "\u2581\u13a6\u13cd\u13a9": 17633, "\u2581\u13a4\u13c3\u13af\u13b8\u13cd\u13d4": 17634, "\u2581\u13d5\u13a6\u13c5\u13cc": 17635, "\u2581\u13e7\u13bf\u13ec": 17636, "\u13aa\u13d4\u13c5\u13ad": 17637, "\u13a9\u13a7\u13ad": 17638, "\u13c2\u13b8\u13c9\u13d7\u13ad": 17639, "\u2581\u13ac\u13e9\u13c3\u13ce": 17640, "\u2581\u13a0\u13f2\u13a4": 17641, "\u13d9\u13a5\u13d4\u13c5": 17642, "\u13a0\u13cf": 17643, "\u13a9\u13cd\u13d3\u13f1\u13d5\u13b8": 17644, "\u13cd\u13a6\u13cd\u13d3\u13c1\u13b2": 17645, "\u13a9\u13b5\u13f2\u13e5\u13d9\u13b2": 17646, "\u2581\u13d7\u13e0\u13af\u13cd\u13d9": 17647, "\u2581\u13ac\u13e9\u13aa\u13e9": 17648, "\u13a6\u13de\u13e5": 17649, "\u13e3\u13b7\u13e4\u13ae\u13cd\u13d7": 17650, "\u13e6\u13c1\u13a2": 17651, "\u13b5\u13b2\u13a2": 17652, "\u2581\u13ac\u13c1\u13a2\u13cd\u13d3\u13c1": 17653, "\u13c2\u13a6\u13d6": 17654, "\u2581\u13f1\u13e3\u13a6\u13cc\u13ef\u13cd": 17655, "\u13db\u13c2\u13cc\u13c2": 17656, "\u13da\u13b2\u13a6": 17657, "\u13d1\u13ac": 17658, "\u2581\u13db\u13d5": 17659, "\u2581\u13a4\u13ea\u13c5\u13a2": 17660, "\u2581\u13ed\u13ce\u13b4": 17661, "\u2581\u13d7\u13a9\u13c2\u13d3\u13cd\u13d7": 17662, "\u2581\u13d4\u13b8": 17663, "\u2581\u13a6\u13b3\u13c5\u13db\u13c9": 17664, "\u2581\u13a8\u13e3\u13a6\u13d9\u13a5\u13af\u13cd\u13d7": 17665, "\u13df\u13cf\u13cd\u13ac": 17666, "\u2581\u13a3\u13e5\u13aa\u13e9\u13db": 17667, "\u13be\u13b8\u13e4": 17668, "\u2581\u13d3\u13ac\u13c2": 17669, "\u13d7\u13cd\u13a6\u13a9": 17670, "\u13a0\u13c1": 17671, "\u2581\u13ac\u13e9\u13be\u13b4": 17672, "\u2581\u13a4\u13be\u13a6\u13cc\u13ef\u13cd\u13d9": 17673, "\u2581\u13a4\u13d7\u13cd\u13a9": 17674, "\u13e3\u13df\u13f4\u13d7": 17675, "\u13e5\u13e9\u13db\u13a1": 17676, "\u13d1\u13b5": 17677, "\u2581\u13d3\u13c2\u13b5": 17678, "\u2581\u13eb\u13d8\u13a6\u13d4\u13b2\u13cd": 17679, "\u13b5\u13d9": 17680, "\u2581\u13e5\u13c4\u13db": 17681, "\u13e5\u13cd\u13a6\u13a2\u13ae\u13cd\u13d7": 17682, "\u13d9\u13ea\u13b8": 17683, "\u2581\u13ac\u13e9\u13d2": 17684, "\u2581\u13d7\u13a6\u13d8": 17685, "\u2581\u13a4\u13da\u13a8": 17686, "\u13b6\u13c4\u13ae\u13d4\u13c5\u13a9": 17687, "\u13cd\u13da\u13b2\u13a6": 17688, "\u2581\u13a4\u13ec\u13ef": 17689, "\u13b4\u13eb\u13cd\u13d4\u13c1": 17690, "\u2581\u13f1\u13d3\u13a9\u13aa": 17691, "\u13d3\u13d3\u13c2\u13b8\u13aa": 17692, "\u2581\u13e5\u13da\u13e0": 17693, "\u2581\u13a6\u13e3": 17694, "\u2581\u13a6\u13a8\u13e5\u13c1": 17695, "\u2581\u13a4\u13ab": 17696, "\u2581\u13a4\u13c2\u13a7\u13c5": 17697, "\u13d3\u13be\u13e0\u13f1": 17698, "\u2581\u13d7\u13e3\u13cd\u13d7": 17699, "\u2581\u13c2\u13cd\u13d3\u13db\u13c1": 17700, "\u13c5\u13b2": 17701, "\u2581\u13d5\u13af\u13f2": 17702, "\u2581\u13ef\u13b5\u13cd\u13d4\u13f4": 17703, "\u2581\u13de\u13a9": 17704, "\u13a6\u13d4\u13db\u13cd": 17705, "\u2581\u13a4\u13bf\u13b8\u13d2": 17706, "\u2581\u13a0\u13f2\u13b5\u13c9": 17707, "\u2581\u13eb\u13da\u13be\u13e0": 17708, "\u2581\u13ed\u13d3\u13cf": 17709, "\u2581\u13a4\u13c2\u13f4\u13b4": 17710, "\u2581\u13a2\u13ac\u13af": 17711, "\u2581\u13e8\u13e4": 17712, "\u2581\u13da\u13c5\u13a6\u13b8\u13ae": 17713, "\u2581\u13eb\u13b5": 17714, "\u2581\u13d5\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd": 17715, "\u13b0\u13d3": 17716, "\u13c2\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 17717, "\u13d3\u13c5\u13d6\u13b3": 17718, "\u13be\u13d5\u13ef\u13d9": 17719, "\u2581\u13db\u13c2\u13b6": 17720, "\u2581\u13d5\u13a8\u13f0": 17721, "\u2581\u13a0\u13e5\u13be\u13d7\u13c5\u13d7": 17722, "\u2581\u13d7\u13a9\u13ec\u13c2\u13af": 17723, "\u13be\u13b5\u13cd\u13da\u13b8": 17724, "\u2581\u13d7\u13c2\u13f0": 17725, "\u2581\u13a4\u13a8\u13f3\u13b2": 17726, "\u13d3\u13e3\u13a6\u13b8": 17727, "\u13b5\u13cd\u13aa\u13b8": 17728, "\u13c3\u13af\u13b0": 17729, "\u13f4\u13e9\u13db\u13ae": 17730, "\u2581\u13a2\u13e5\u13b6\u13c4\u13ae": 17731, "\u13a6\u13cc\u13ec\u13a2\u13b2": 17732, "\u2581\u13a2\u13e3\u13d6": 17733, "\u13c4\u13cd\u13c6\u13c2\u13a9\u13d7": 17734, "\u2581\u13a8\u13e5\u13b8\u13c9\u13d9\u13d7": 17735, "\u13c5\u13aa\u13a5\u13d3\u13c1": 17736, "\u2581\u13d3\u13c2\u13f0\u13b2": 17737, "\u13e5\u13d9\u13d3": 17738, "\u13a4\u13c3\u13af\u13f3\u13b2": 17739, "\u13a9\u13c1\u13d3\u13cd\u13d7": 17740, "\u13d3\u13c2\u13b3\u13a9": 17741, "\u13d9\u13cd\u13d3": 17742, "\u2581\u13a3\u13a6\u13db": 17743, "\u13a6\u13b7\u13b6\u13ac": 17744, "\u2581\u13d5\u13e5\u13f2\u13af": 17745, "\u13d8\u13c3\u13af": 17746, "\u2581\u13e7\u13be\u13e3\u13c5": 17747, "\u13be\u13db\u13c1\u13af": 17748, "\u2581\u13a4\u13d3\u13e0": 17749, "\u2581\u13cd\u13a9\u13ef\u13d5": 17750, "\u13cd\u13a9\u13be\u13c4\u13aa\u13eb\u13ce\u13b8": 17751, "\u2581\u13da\u13f2\u13cd\u13d9\u13d3\u13c1\u13b8": 17752, "\u2581\u13eb\u13e8\u13f2\u13ea\u13b3\u13c1\u13b8": 17753, "\u2581\u13a8\u13e5\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 17754, "\u2581\u13a2\u13e8\u13ef\u13d3\u13c5\u13d6": 17755, "\u2581\u13d7\u13e7\u13aa\u13d3\u13c1\u13d7": 17756, "\u2581\u13a4\u13b4\u13c2": 17757, "\u2581\u13a1\u13d7\u13a6\u13d4": 17758, "\u13a9\u13c1\u13e4\u13b8\u13af": 17759, "\u13c5\u13d4\u13c5\u13a2": 17760, "\u2581\u13a4\u13d2\u13ae": 17761, "\u2581\u13be\u13c5\u13a9": 17762, "\u13c3\u13ee": 17763, "\u13d7\u13d3\u13be\u13a9\u13cd": 17764, "\u2581\u13c4\u13b4\u13eb\u13cd\u13d4\u13c1": 17765, "\u13d7\u13c2": 17766, "\u13c4\u13aa\u13e4\u13b8\u13af": 17767, "\u2581\u13a4\u13c2\u13c2\u13f4\u13b2": 17768, "\u2581\u13ac\u13ed\u13af\u13cd\u13d7": 17769, "\u13cd\u13da\u13b6\u13a9\u13af": 17770, "\u2581\u13e3\u13ab\u13f4": 17771, "\u13a4\u13c2": 17772, "\u2581\u13a8\u13e5\u13c5\u13cf\u13d9": 17773, "\u13e3\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13ae\u13cd\u13d7": 17774, "\u13a6\u13d3\u13c5\u13d6\u13d7": 17775, "\u13c3\u13c5\u13ad": 17776, "\u2581\u13a0\u13be\u13d5\u13d2": 17777, "\u13d8\u13c2\u13d9\u13b5": 17778, "\u13a9\u13b5\u13f2\u13e8": 17779, "\u2581\u13a0\u13cd\u13a6\u13c2\u13c9": 17780, "\u2581\u13c2\u13d9\u13d7": 17781, "\u2581\u13d3\u13d4\u13b4\u13d2\u13a9": 17782, "\u2581\u13a1\u13e3\u13cd\u13d5\u13b8\u13d7": 17783, "\u2581\u13a5\u13cd\u13a9\u13ef": 17784, "\u2581\u13d7\u13e5\u13a7\u13b2": 17785, "\u13ea\u13f2\u13c1": 17786, "\u13f4\u13e8\u13a9": 17787, "\u2581\u13a4\u13ad\u13ef": 17788, "\u13c3\u13b8\u13d4\u13c2": 17789, "\u2581\u13d3\u13be\u13d3\u13f0\u13a2\u13b5\u13d9": 17790, "\u2581\u13a4\u13be\u13db\u13c5\u13a2\u13cd\u13d4\u13c5": 17791, "\u13d5\u13a6\u13ec": 17792, "\u2581\u13f2\u13e5\u13e9\u13db": 17793, "\u2581\u13eb\u13ab\u13e9\u13c2": 17794, "\u13ac\u13e9\u13d3\u13c2\u13b8\u13e4\u13a2": 17795, "\u2581\u13d5\u13a8\u13e5\u13b8": 17796, "\u13a5\u13db": 17797, "\u2581\u13a5\u13a9\u13d0\u13c5\u13a2\u13cd": 17798, "\u2581\u13a4\u13cd\u13d3\u13e9\u13d7\u13ce": 17799, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7\u13cd\u13a8": 17800, "\u2581\u13d7\u13f0\u13af": 17801, "\u2581\u13c4\u13a8\u13f3\u13d2": 17802, "\u2581\u13a2\u13e3\u13c4\u13ec\u13cd": 17803, "\u13e8\u13d9\u13d7\u13f1": 17804, "\u13c6\u13db\u13c1\u13b8\u13ad": 17805, "\u13eb\u13cd\u13d4\u13c1\u13b8": 17806, "\u2581\u13d5\u13e3\u13ec\u13cd": 17807, "\u13a7\u13bf\u13e9\u13d5\u13a9": 17808, "\u2581\u13a0\u13cd\u13d3\u13f1\u13d7\u13cd": 17809, "\u2581\u13d3\u13c2\u13ef\u13a9\u13cd": 17810, "\u2581\u13ef\u13be\u13a6\u13d4\u13b2": 17811, "\u2581\u13ac\u13ef\u13c5\u13d3\u13d7\u13cd": 17812, "\u2581\u13a0\u13c2\u13ae": 17813, "\u2581\u13c4\u13dc": 17814, "\u13c3\u13a8\u13c2": 17815, "\u2581\u13a6\u13d3\u13b7\u13a9\u13cd": 17816, "\u13e5\u13ea\u13ce\u13ae\u13cd\u13d7": 17817, "\u2581\u13a2\u13e4\u13d9\u13b8": 17818, "\u2581\u13e5\u13d5\u13e5\u13f2": 17819, "\u13e3\u13be\u13d4": 17820, "\u2581\u13bb\u13ce": 17821, "\u13c2\u13cd\u13a8\u13a2": 17822, "\u2581\u13ef\u13a9\u13c2\u13ac": 17823, "\u13be\u13d3\u13d9\u13ea\u13b3": 17824, "\u2581\u13f0\u13b5\u13a0": 17825, "\u13b5\u13cd\u13d4\u13f4\u13c3\u13be": 17826, "\u2581\u13e7\u13d3\u13c3\u13e3": 17827, "\u2581\u13e5\u13d3\u13d3": 17828, "\u2581\u13c5\u13d3\u13e5\u13ea": 17829, "\u2581\u13a5\u13c6\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1": 17830, "\u2581\u13a3\u13a6\u13e0\u13be\u13cd": 17831, "\u13e0\u13ef\u13cd\u13d7\u13cd\u13ac": 17832, "\u2581\u13d0\u13cf": 17833, "\u2581\u13ac\u13c1\u13b3\u13a9": 17834, "\u13e6\u13a3": 17835, "\u13b7\u13b8\u13a5\u13cd": 17836, "\u2581\u13db\u13a9\u13a7": 17837, "\u13b3\u13d1\u13b5": 17838, "\u13f0\u13b8\u13d0\u13a2": 17839, "\u13e5\u13c5\u13eb\u13cd\u13d4\u13c5": 17840, "\u2581\u13d3\u13e5\u13b6\u13cd\u13d7\u13cd": 17841, "\u2581\u13a4\u13b6\u13a8": 17842, "\u13f0\u13a2\u13b5\u13d3": 17843, "\u13be\u13d5\u13ac\u13a2": 17844, "\u2581\u13d3\u13e5\u13f2\u13ce": 17845, "\u2581\u13e7\u13c2\u13be": 17846, "\u13d7\u13a9\u13cd\u13d7": 17847, "\u13cd\u13d3\u13c1\u13b2": 17848, "\u2581\u13a2\u13a8\u13b2": 17849, "\u13d7\u13aa\u13a2": 17850, "\u13a1\u13a9": 17851, "\u13ec\u13c1\u13d7\u13cd\u13ac": 17852, "\u13a6\u13d3\u13c5\u13d2\u13ad": 17853, "\u2581\u13a4\u13e4\u13cc": 17854, "\u13a0\u13a9\u13b8\u13c9\u13d7": 17855, "\u13c1\u13e2\u13d4\u13c5\u13af": 17856, "\u13be\u13b5\u13d7\u13a9": 17857, "\u2581\u13a2\u13e8\u13ef\u13b5": 17858, "\u2581\u13d7\u13e5\u13c5\u13a6\u13b8": 17859, "\u13c5\u13a6\u13b8": 17860, "\u13db\u13c1\u13b8\u13a2": 17861, "\u13d3\u13c1\u13b8\u13a2": 17862, "\u2581\u13a4\u13be\u13d5\u13c3": 17863, "\u13aa\u13b2\u13cd\u13d4\u13c5\u13a9": 17864, "\u13ef\u13cc\u13db\u13c1": 17865, "\u2581\u13a2\u13ac\u13cb\u13c1\u13d7": 17866, "\u2581\u13ac\u13e9\u13f2\u13cd\u13d9": 17867, "\u13c5\u13d7\u13ad": 17868, "\u2581\u13af\u13aa\u13d9": 17869, "\u2581\u13a4\u13b8\u13d2": 17870, "\u13e6\u13a3\u13d2": 17871, "\u2581\u13d3\u13be\u13df\u13c3\u13ae": 17872, "\u2581\u13d5\u13ab\u13d3\u13b4": 17873, "\u13d3\u13d3\u13cd\u13a6": 17874, "\u13ef\u13a7\u13c1\u13b8": 17875, "\u2581\u13cd\u13a9\u13c1\u13e4\u13b8": 17876, "\u13c1\u13e9\u13d7\u13d2": 17877, "\u2581\u13a0\u13a9\u13f2\u13cd": 17878, "\u2581\u13d3\u13a7\u13c3": 17879, "\u13a6\u13b5\u13cd\u13aa\u13a2": 17880, "\u2581\u13a2\u13d7\u13ef\u13d9\u13af": 17881, "\u2581\u13a8\u13e5\u13e9\u13af\u13ce": 17882, "\u13a6\u13d8\u13cd\u13d7\u13cd\u13a9": 17883, "\u13e7\u13e0\u13a0\u13ce\u13a2": 17884, "\u13e3\u13f0\u13e8": 17885, "\u13e5\u13cd\u13a6\u13c5\u13a8\u13cd\u13d7": 17886, "\u2581\u13a0\u13c6\u13d3\u13c5\u13d3\u13d7\u13cd\u13d7": 17887, "\u13aa\u13be\u13db\u13d4\u13c5": 17888, "\u2581\u13ef\u13c6\u13d3\u13c5": 17889, "\u2581\u13f1\u13e5\u13cd\u13a6\u13c5": 17890, "\u13d8\u13c3\u13ae\u13b4\u13a2": 17891, "\u13e9\u13d7\u13d9\u13af": 17892, "\u13a9\u13e8\u13c2\u13d2": 17893, "\u2581\u13a2\u13e3\u13d7\u13d4": 17894, "\u2581\u13a0\u13f4\u13cd\u13d7\u13f1": 17895, "\u2581\u13a4\u13c2\u13f4\u13d3\u13c6\u13b6\u13a5": 17896, "\u2581\u13e3\u13c6\u13db": 17897, "\u2581\u13da\u13b5\u13c3\u13ae\u13d4\u13c5": 17898, "\u13e3\u13ec\u13cd\u13d4\u13c2": 17899, "\u2581\u13e5\u13e8\u13f0\u13b3\u13d7\u13d9": 17900, "\u13e3\u13ea\u13d0\u13b8\u13cd\u13d7": 17901, "\u13f0\u13d7\u13cd\u13ac": 17902, "\u13e5\u13a6\u13b3\u13ad": 17903, "\u2581\u13a6\u13e5\u13c1\u13b8": 17904, "\u13e4\u13d3\u13cd\u13d7": 17905, "\u2581\u13e7\u13c5\u13a9": 17906, "\u2581\u13f1\u13da\u13be\u13c4\u13aa\u13eb\u13ce": 17907, "\u2581\u13da\u13c2\u13f0\u13cd\u13db": 17908, "\u13ab\u13d3\u13b4\u13d2": 17909, "\u2581\u13e5\u13ef\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7": 17910, "\u13e6\u13e2\u13c5": 17911, "\u13d3\u13c2\u13f2\u13af\u13ce": 17912, "\u13da\u13c2\u13f4\u13d4\u13c5\u13a9": 17913, "\u13a6\u13da\u13cf\u13c1": 17914, "\u2581\u13a4\u13cd\u13d5\u13b8\u13af\u13d9": 17915, "\u13be\u13d3\u13c5\u13db\u13a2": 17916, "\u2581\u13a0\u13c2\u13ef": 17917, "\u2581\u13a0\u13e4\u13b7\u13af": 17918, "\u13d4\u13df": 17919, "\u2581\u13c2\u13a8\u13e5\u13ea\u13ce": 17920, "\u13eb\u13da\u13d8\u13c5\u13cd\u13d4\u13c1\u13a2": 17921, "\u2581\u13e3\u13cd\u13ab\u13d5\u13cd\u13d7": 17922, "\u13d2\u13c2\u13b8\u13af": 17923, "\u13a4\u13d0\u13f1\u13c9": 17924, "\u13d7\u13cd\u13a6\u13b6\u13d7": 17925, "\u13a7\u13c1\u13a2\u13cd\u13d7\u13cd\u13a8": 17926, "\u2581\u13a6\u13b8\u13d9": 17927, "\u13d8\u13be\u13c4\u13aa\u13eb\u13cf": 17928, "\u13ac\u13cd\u13aa\u13b8": 17929, "\u2581\u13a0\u13cd\u13a6\u13a2\u13cd\u13d7": 17930, "\u13a4\u13da\u13b5\u13cd\u13ac": 17931, "\u2581\u13a1\u13d7\u13d4\u13f2": 17932, "\u13bb\u13c6": 17933, "\u13e8\u13f2\u13ce\u13ad": 17934, "\u2581\u13a2\u13aa\u13e2": 17935, "\u13df\u13cd\u13d4\u13c5": 17936, "\u2581\u13a3\u13e4\u13d9": 17937, "\u2581\u13ef\u13c6\u13c1\u13b8\u13d4": 17938, "\u2581\u13b1\u13a6": 17939, "\u2581\u13c6\u13cc": 17940, "\u2581\u13a0\u13e5\u13c3\u13c1\u13b8": 17941, "\u13cd\u13d3\u13e9\u13da\u13a6": 17942, "\u2581\u13a0\u13c6\u13a6\u13ce": 17943, "\u2581\u13ac\u13e9\u13ef\u13a5": 17944, "\u13e5\u13aa\u13e9\u13d8\u13ad": 17945, "\u13c4\u13e9\u13c5": 17946, "\u13e5\u13a5\u13cf": 17947, "\u2581\u13a4\u13be\u13df\u13c2\u13ac\u13c1": 17948, "\u13e3\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7": 17949, "\u2581\u13da\u13f3\u13aa": 17950, "\u2581\u13e7\u13be\u13da\u13aa\u13d3\u13c1": 17951, "\u13e9\u13d2\u13ac": 17952, "\u13ea\u13b6\u13d4": 17953, "\u2581\u13d3\u13a6\u13d9": 17954, "\u13be\u13d3\u13c5\u13d6\u13d7\u13cd\u13ac": 17955, "\u13e5\u13a8\u13f3\u13af": 17956, "\u2581\u13ed\u13b5": 17957, "\u2581\u13d7\u13df\u13b6\u13cd": 17958, "\u13ef\u13d2\u13c2\u13cd\u13d7\u13f1": 17959, "\u2581\u13ed\u13c2\u13b7\u13e4\u13b4": 17960, "\u2581\u13d7\u13e5\u13c5\u13d2": 17961, "\u2581\u13eb\u13d3\u13b5": 17962, "\u13a6\u13e2\u13d4\u13cd\u13d7": 17963, "\u13da\u13d9\u13a0": 17964, "\u13a6\u13c5\u13d3\u13d3": 17965, "\u13c2\u13a8\u13b2\u13ce": 17966, "\u13d4\u13b3\u13ec\u13af": 17967, "\u2581\u13a4\u13e2\u13be": 17968, "\u2581\u13d3\u13d6\u13b8\u13b2\u13cd": 17969, "\u2581\u13a3\u13a9\u13c3\u13c1\u13b8": 17970, "\u2581\u13ad\u13d3\u13c3\u13ae": 17971, "\u2581\u13a8\u13e5\u13be\u13cc": 17972, "\u13e3\u13d3\u13b8\u13c9\u13d7\u13ad": 17973, "\u2581\u13d9\u13cd\u13d3\u13d3\u13aa\u13e9": 17974, "\u2581\u13d7\u13de": 17975, "\u2581\u13d3\u13be\u13e4": 17976, "\u2581\u13a4\u13ea\u13ef\u13d4\u13c5": 17977, "\u13d2\u13c2\u13ae\u13cd\u13d7": 17978, "\u13a9\u13c2\u13f4\u13b2": 17979, "\u2581\u13a7\u13c2": 17980, "\u2581\u13e7\u13b5\u13cd\u13da\u13a2": 17981, "\u2581\u13f4\u13a6\u13f2": 17982, "\u13e5\u13aa\u13e9\u13d8\u13cd\u13ac\u13be": 17983, "\u2581\u13a2\u13ad\u13c5\u13d3": 17984, "\u2581\u13a0\u13b5\u13cd": 17985, "\u13a9\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 17986, "\u13d3\u13a8\u13e3\u13b5": 17987, "\u13a6\u13b7": 17988, "\u2581\u13da\u13c2\u13e8": 17989, "\u13da\u13df\u13cd\u13d4\u13c5\u13a9": 17990, "\u2581\u13ac\u13c1\u13e4\u13b8": 17991, "\u2581\u13a2\u13ac\u13c1\u13b8": 17992, "\u13e5\u13a9\u13a1\u13b8": 17993, "\u13e9\u13c2\u13b7\u13a6": 17994, "\u2581\u13a1\u13e5\u13b8\u13c9\u13d9\u13d7": 17995, "\u13bf\u13a0": 17996, "\u13d8\u13cd": 17997, "\u2581\u13a4\u13be\u13b5\u13e5\u13d9\u13c2": 17998, "\u2581\u13e7\u13be\u13cd\u13d7\u13a9": 17999, "\u13a8\u13a6\u13b5\u13cd\u13aa": 18000, "\u2581\u13f1\u13ac\u13c1": 18001, "\u2581\u13ac\u13c6\u13db\u13a6": 18002, "\u2581\u13f1\u13c2\u13e3": 18003, "\u2581\u13a6\u13b5\u13c9": 18004, "\u2581\u13d7\u13d3\u13b4\u13b2": 18005, "\u2581\u13ed\u13d3\u13d2\u13cd": 18006, "\u2581\u13d2\u13d9": 18007, "\u2581\u13da\u13b5\u13cd\u13c6": 18008, "\u2581\u13d7\u13e5\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 18009, "\u13af\u13a5\u13cf": 18010, "\u13dc\u13cd\u13d7": 18011, "\u2581\u13a4\u13d4\u13b4": 18012, "\u2581\u13a8\u13e5\u13aa\u13b5\u13f0\u13d7": 18013, "\u2581\u13e5\u13f0\u13c5": 18014, "\u2581\u13a2\u13e8\u13f2": 18015, "et": 18016, "\u2581\u13da\u13be\u13a6\u13b4\u13c5": 18017, "\u2581\u13ef\u13ab\u13da\u13b5": 18018, "\u2581\u13a0\u13ad\u13f0": 18019, "\u13a9\u13b5\u13f2\u13e4": 18020, "\u13a9\u13b6\u13eb\u13ce": 18021, "\u2581\u13a4\u13b8\u13ae": 18022, "\u13a6\u13e5\u13aa\u13a5": 18023, "\u13ef\u13d9\u13b5\u13a9": 18024, "\u2581\u13a4\u13be\u13e3\u13a2\u13ce": 18025, "\u13a4\u13be\u13d7\u13d2": 18026, "\u13af\u13c1\u13a6": 18027, "\u2581\u13a4\u13a6\u13db\u13c5": 18028, "\u13d7\u13a6\u13b4\u13f2": 18029, "\u13b7\u13a9\u13cd\u13ac": 18030, "\u13b4\u13b0\u13d2": 18031, "\u13b5\u13b8\u13a9": 18032, "\u13be\u13db\u13aa\u13d7": 18033, "\u13d5\u13e3\u13b3\u13d1": 18034, "\u2581\u13a2\u13ef\u13cb\u13c2": 18035, "\u13e5\u13d1\u13b5\u13aa\u13ac": 18036, "\u13df\u13b8": 18037, "\u2581\u13ed\u13be\u13d8\u13c3": 18038, "\u13d4\u13c1\u13c9": 18039, "\u2581\u13d5\u13e3\u13d5\u13f2": 18040, "\u2581\u13a6\u13d3\u13c5": 18041, "\u2581\u13ef\u13c7\u13b5": 18042, "\u2581\u13e8\u13d7\u13a6": 18043, "\u13b5\u13c2\u13aa\u13af\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 18044, "\u13f0\u13b8\u13c1\u13a2": 18045, "\u13ef\u13a2\u13ce": 18046, "\u2581\u13d3\u13c2\u13c5\u13a8": 18047, "\u13a2\u13cd\u13d7\u13cd\u13aa": 18048, "\u13da\u13d3\u13b8\u13c1": 18049, "\u13b6\u13ce\u13a2": 18050, "\u2581\u13da\u13be\u13c1\u13b6\u13d5": 18051, "\u13e5\u13d9\u13b2": 18052, "\u2581\u13ac\u13a9\u13cd\u13d3\u13e9\u13d7\u13d9": 18053, "\u13c2\u13b5\u13d9\u13b8": 18054, "\u13cc\u13c9": 18055, "\u2581\u13d7\u13ab\u13aa\u13d9": 18056, "\u13b8\u13cc\u13d3\u13d5": 18057, "\u13df\u13c2\u13ac\u13c1": 18058, "\u2581\u13a4\u13d3\u13aa": 18059, "\u2581\u13f3\u13d7\u13db": 18060, "\u2581\u13d7\u13ab\u13c5": 18061, "\u13e3\u13c2\u13a9": 18062, "\u13be\u13d3\u13d1\u13f2": 18063, "\u13a6\u13c1\u13cd\u13ac": 18064, "\u2581\u13e5\u13da\u13c2\u13c2\u13f4": 18065, "\u2581\u13a0\u13c6\u13d1\u13f0": 18066, "\u13a0\u13f0\u13cd\u13d3\u13a5": 18067, "\u2581\u13e4\u13e5\u13f2\u13af\u13ce\u13b8": 18068, "\u13a7\u13be\u13c1\u13a2": 18069, "\u13c3\u13ae\u13cd\u13aa\u13a2": 18070, "\u2581\u13f1\u13e3\u13f0\u13b8": 18071, "\u2581\u13d5\u13a7\u13c5\u13eb": 18072, "\u13ae\u13c3": 18073, "\u2581\u13a4\u13c1\u13c9": 18074, "\u2581\u13da\u13d4\u13cd": 18075, "\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b0\u13a2": 18076, "\u13af\u13d9\u13ae": 18077, "\u2581\u13af\u13aa\u13a2": 18078, "\u2581\u13a8\u13e3\u13d9\u13b4\u13b0\u13af": 18079, "\u2581\u13a3\u13a6\u13da\u13d3": 18080, "\u13e1\u13d7\u13cd\u13a8": 18081, "\u13a3\u13a9\u13be\u13b5\u13f1": 18082, "\u13be\u13b5\u13c2\u13aa\u13ce\u13a2": 18083, "\u2581\u13f1\u13e3\u13db\u13d3\u13cd": 18084, "\u2581\u13e5\u13ac\u13c5": 18085, "\u2581\u13da\u13c3\u13e2": 18086, "\u2581\u13da\u13c2\u13f0\u13b8": 18087, "\u2581\u13da\u13be\u13d3\u13d8": 18088, "\u2581\u13d3\u13cd\u13c6\u13c2\u13aa": 18089, "\u13d1\u13f4\u13c5": 18090, "\u2581\u13e3\u13d3\u13b5": 18091, "\u13ad\u13c8": 18092, "\u2581\u13a0\u13ce\u13aa\u13a9": 18093, "\u2581\u13eb\u13c2\u13da\u13ea\u13ce": 18094, "\u13ac\u13f0\u13b5\u13ce": 18095, "\u2581\u13a4\u13be\u13dd\u13a5": 18096, "\u2581\u13a4\u13be\u13b5\u13d2": 18097, "\u13e5\u13b5\u13a5\u13c2\u13ae\u13cd\u13d7": 18098, "\u2581\u13e7\u13e9\u13c2\u13a6": 18099, "\u13c6\u13a7\u13c3\u13d7": 18100, "\u13ef\u13b8\u13a2": 18101, "\u13db\u13bf\u13d5\u13a6": 18102, "\u13e5\u13ac\u13e9\u13b6\u13d4": 18103, "\u13b4\u13b5": 18104, "\u13d3\u13c1\u13e4\u13d7": 18105, "\u2581\u13d3\u13c2\u13a8\u13af": 18106, "\u13e0\u13a0": 18107, "\u13c2\u13f2\u13b4": 18108, "\u2581\u13a0\u13d3\u13c5\u13d6\u13b5\u13d9\u13b2": 18109, "\u2581\u13eb\u13c4\u13e9": 18110, "\u13f2\u13af\u13cd\u13d7\u13cd\u13ac\u13be": 18111, "\u13a9\u13d9\u13b5\u13a9": 18112, "\u2581\u13a0\u13a9\u13eb\u13d2": 18113, "\u13e5\u13ef\u13c2\u13cd\u13ac": 18114, "\u13b5\u13cd\u13a6\u13cd\u13d9\u13d4\u13c5": 18115, "\u2581\u13c4\u13be\u13d5": 18116, "\u2581\u13a0\u13d3\u13d2\u13b2\u13cd": 18117, "\u2581\u13da\u13be\u13e6": 18118, "\u2581\u13a0\u13a9\u13cd\u13c6\u13c2\u13aa\u13d9": 18119, "\u13e3\u13cf\u13b3\u13db\u13d7": 18120, "\u2581\u13db\u13c2\u13a9": 18121, "\u2581\u13d7\u13cd\u13a9\u13c5": 18122, "\u13c2\u13d3\u13db": 18123, "\u2581\u13a4\u13d8\u13c3\u13ae\u13b4": 18124, "\u2581\u13a4\u13db\u13a6\u13c5\u13c9": 18125, "\u13a6\u13cc\u13ec\u13b8": 18126, "\u2581\u13e3\u13f2\u13b8": 18127, "\u13c2\u13a6\u13db\u13b4\u13af": 18128, "\u13b5\u13cd\u13c7\u13da": 18129, "\u2581\u13a4\u13be\u13df\u13c3\u13ae": 18130, "\u2581\u13a6\u13e5\u13c1\u13e4\u13b8": 18131, "\u13be\u13db\u13db": 18132, "\u13b6\u13be\u13cd\u13d4": 18133, "\u13d3\u13c2\u13b8\u13e4\u13b8\u13af": 18134, "\u2581\u13a2\u13e8\u13c1\u13b5": 18135, "\u2581\u13f1\u13e8\u13f2\u13ce": 18136, "\u13d8\u13bf\u13eb\u13db": 18137, "\u2581\u13e7\u13c2\u13ef\u13c5": 18138, "\u13c2\u13c4\u13aa\u13eb\u13cd\u13d7\u13f1": 18139, "\u2581\u13a4\u13c5\u13aa\u13a2\u13cd": 18140, "\u13dc\u13eb\u13cd": 18141, "\u2581\u13a6\u13e5\u13ef\u13d1\u13f0": 18142, "\u13ec\u13c2\u13cd\u13a8\u13cd\u13d7": 18143, "\u2581\u13f1\u13d9\u13a6\u13d9": 18144, "\u2581\u13a4\u13db\u13d7\u13d5": 18145, "\u2581\u13a2\u13e8\u13ef\u13db\u13c1": 18146, "\u2581\u13f4\u13a8\u13cd\u13a9": 18147, "\u2581\u13eb\u13c4\u13c2\u13ea\u13ce": 18148, "\u2581\u13d3\u13be\u13d3\u13c2\u13b8": 18149, "\u13c2\u13a7\u13b5\u13b4\u13a2": 18150, "\u13be\u13da\u13d3\u13b8": 18151, "\u13f4\u13d4\u13c5": 18152, "\u2581\u13f1\u13da\u13d1\u13f0": 18153, "\u13a6\u13e9\u13d2\u13ac": 18154, "\u2581\u13a3\u13da\u13d3\u13b4\u13cd\u13d7": 18155, "\u2581\u13a4\u13b2\u13d2": 18156, "\u2581\u13a4\u13be\u13d3\u13d4\u13b6": 18157, "\u2581\u13e7\u13c2\u13d0\u13af\u13cd\u13d7": 18158, "\u13e3\u13a8\u13f3": 18159, "\u13b5\u13e5\u13d9\u13b2\u13cd\u13ac": 18160, "\u2581\u13a0\u13cf\u13cd\u13aa": 18161, "\u2581\u13ac\u13e9\u13db\u13c5": 18162, "\u13cd\u13a6\u13c9": 18163, "\u13c6\u13d8\u13be\u13eb\u13db\u13b2\u13a9": 18164, "\u13be\u13aa\u13d2": 18165, "\u2581\u13a2\u13e8\u13e9\u13db": 18166, "\u13c4\u13db\u13c1": 18167, "\u13b4\u13c2\u13d9\u13b2\u13a2": 18168, "\u2581\u13d7\u13d3\u13b4\u13b2\u13cd\u13aa": 18169, "\u2581\u13a4\u13c2\u13f4\u13d4\u13c1": 18170, "\u13c1\u13df\u13f4\u13ad": 18171, "\u13cd\u13a9\u13a1\u13b4\u13a2": 18172, "\u13d9\u13b8\u13ad": 18173, "\u13e9\u13aa\u13d7": 18174, "\u2581\u13a0\u13c2\u13aa\u13b5\u13f0\u13cd\u13ac": 18175, "\u2581\u13f1\u13c2\u13da\u13d3": 18176, "\u13a0\u13be\u13e1\u13d7\u13cd\u13a9": 18177, "\u2581\u13ed\u13cd\u13da": 18178, "\u13a6\u13d9\u13cd\u13d3\u13c1": 18179, "\u2581\u13d4\u13d1\u13f0": 18180, "\u13c2\u13f4\u13ce\u13cd\u13d7": 18181, "\u13c2\u13ea\u13d2\u13a9": 18182, "tin": 18183, "\u2581\u13a2\u13cd\u13c6\u13d3": 18184, "\u13da\u13aa\u13d3": 18185, "\u2581\u13eb\u13d9\u13e5": 18186, "\u2581\u13e3\u13aa\u13ce": 18187, "\u2581\u13d5\u13ac\u13e9\u13cf\u13d4": 18188, "\u13d5\u13d8\u13f4\u13b2\u13d2": 18189, "\u13c2\u13cf\u13c5\u13ce": 18190, "\u2581\u13f3\u13c2\u13f4": 18191, "\u2581\u13cd\u13a9\u13f2": 18192, "\u2581\u13a4\u13c2\u13c2\u13ac\u13a8": 18193, "\u2581\u13af\u13d0\u13e2\u13a2\u13cd\u13d7": 18194, "\u13d5\u13d8\u13f4\u13b2": 18195, "\u2581\u13e7\u13c5\u13c2\u13cd": 18196, "\u2581\u13e5\u13d3\u13b5\u13d6\u13b8\u13b2": 18197, "\u13a6\u13a7\u13b2\u13a9": 18198, "\u2581\u13eb\u13a8\u13d9": 18199, "\u13e5\u13d9\u13aa": 18200, "\u2581\u13a4\u13cd\u13db\u13a6": 18201, "\u2581\u13eb\u13a6\u13b6": 18202, "\u2581\u13d7\u13ac\u13e9\u13f2": 18203, "\u13e3\u13db\u13c1\u13b5\u13d9\u13b2": 18204, "\u13a9\u13f1\u13b5\u13d9\u13ad": 18205, "\u13d3\u13c2\u13ef\u13db": 18206, "\u2581\u13a4\u13a6\u13d4\u13db": 18207, "\u2581\u13a4\u13be\u13b5\u13e5\u13d9": 18208, "\u2581\u13ad\u13b5\u13e5\u13d9\u13b2\u13cd": 18209, "\u13c1\u13cd\u13a8\u13b2\u13a9": 18210, "\u13a6\u13b5\u13cd\u13d4\u13c1\u13b2": 18211, "\u13d7\u13be\u13d3": 18212, "\u2581\u13d5\u13e3\u13d3\u13c2\u13b8": 18213, "\u2581\u13ed\u13be\u13cf": 18214, "\u2581\u13a2\u13cd\u13db\u13b7\u13e4": 18215, "\u13d6\u13b8\u13b2\u13cd\u13a6": 18216, "\u13db\u13db\u13d4\u13c2": 18217, "\u2581\u13f1\u13e4\u13d9": 18218, "\u2581\u13c2\u13a8\u13c2\u13be": 18219, "\u2581\u13a2\u13e3\u13db\u13c1\u13b2": 18220, "\u13c2\u13cc\u13c5": 18221, "\u13b6\u13c4\u13ae\u13b4\u13a2": 18222, "\u2581\u13a4\u13f4\u13cd": 18223, "\u13d3\u13d3\u13ec\u13cd\u13a8": 18224, "\u13c2\u13b8\u13cc\u13d3\u13d5": 18225, "\u13e5\u13b3\u13eb\u13e4": 18226, "\u13be\u13b7\u13cd\u13ac": 18227, "\u13be\u13df\u13c3\u13ae\u13d7": 18228, "\u13a9\u13c5\u13c1\u13b8": 18229, "\u13f2\u13a2\u13cd\u13d7": 18230, "\u13d1\u13f0\u13cd\u13d7": 18231, "\u2581\u13ac\u13e9\u13c3\u13ae\u13cd\u13ac": 18232, "\u13e4\u13b5\u13af\u13cd": 18233, "\u2581\u13f1\u13a6\u13ac": 18234, "\u2581\u13ed\u13b3\u13cf": 18235, "\u13da\u13a9\u13db": 18236, "\u13a6\u13b7\u13a8": 18237, "\u13b3\u13d7\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 18238, "\u2581\u13a2\u13e8\u13c3\u13ae": 18239, "\u13c5\u13a1\u13b4\u13a2": 18240, "\u13da\u13cd\u13d5\u13b8\u13ae\u13a2": 18241, "\u13d3\u13d5\u13f2\u13b2\u13cd\u13a6": 18242, "\u2581\u13ac\u13e9\u13e1\u13d7\u13cd": 18243, "\u2581\u13a0\u13b5\u13cd\u13c6\u13d9": 18244, "\u2581\u13d5\u13e3\u13b5\u13c2\u13aa": 18245, "\u13e5\u13e9\u13db\u13af": 18246, "\u2581\u13a4\u13c2\u13b7": 18247, "\u13ac\u13c1\u13e4\u13b8\u13ad": 18248, "\u2581\u13a8\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd": 18249, "\u2581\u13a0\u13a9\u13c1\u13b2": 18250, "\u2581\u13d8\u13a7\u13b5": 18251, "\u2581\u13a0\u13a6\u13b7": 18252, "\u2581\u13a4\u13d3\u13b4\u13c5": 18253, "\u13e3\u13d3\u13c5\u13d2\u13a9": 18254, "\u2581\u13cd\u13a9\u13f0\u13b5": 18255, "\u2581\u13a0\u13a9\u13f4\u13cd\u13d7": 18256, "\u13d3\u13ec\u13af\u13b3\u13d7\u13cd": 18257, "\u2581\u13d3\u13f2\u13e5": 18258, "\u13be\u13aa\u13b2\u13cd\u13d7": 18259, "\u13cd\u13d3\u13e9\u13db\u13d2": 18260, "\u13d5\u13ab\u13aa\u13d3\u13cf": 18261, "\u2581\u13f2\u13af": 18262, "\u2581\u13d3\u13b5\u13c2\u13aa\u13af\u13cd\u13d7\u13cd\u13aa": 18263, "\u2581\u13d3\u13c2\u13a6\u13d8\u13b4": 18264, "\u2581\u13da\u13d7\u13a6\u13b4": 18265, "\u13ef\u13b5\u13c3\u13ae": 18266, "\u2581\u13a1\u13e5\u13cd\u13a6": 18267, "\u13be\u13e0\u13af\u13cd\u13d4\u13c5": 18268, "\u13a9\u13d2\u13ce": 18269, "\u13e5\u13c2\u13f4\u13b2\u13a9": 18270, "\u2581\u13d3\u13be\u13d8": 18271, "\u2581\u13a0\u13e5\u13c3\u13ae": 18272, "\u2581\u13b1\u13f0\u13b8": 18273, "\u13a9\u13c4\u13b8\u13c5": 18274, "\u13a6\u13d9\u13af": 18275, "\u2581\u13a0\u13c6\u13c4\u13ec": 18276, "\u13e9\u13e5\u13cd\u13a6\u13b8": 18277, "\u13cd\u13aa\u13c2\u13b4\u13a2": 18278, "\u13ef\u13e5\u13aa\u13c1\u13b8": 18279, "\u2581\u13a4\u13be\u13d5\u13c1": 18280, "\u2581\u13d8\u13c5\u13cd\u13d3": 18281, "\u13d0\u13c5\u13f0": 18282, "\u2581\u13a0\u13a9\u13cd\u13d5\u13b8\u13b2": 18283, "\u2581\u13a1\u13cd\u13d5": 18284, "\u13d3\u13d3\u13ec\u13cd\u13ac\u13a2": 18285, "\u2581\u13f4\u13a8": 18286, "\u13a9\u13b8\u13eb\u13cd\u13d3\u13cf": 18287, "\u2581\u13a2\u13e5\u13c2\u13c6\u13d8": 18288, "\u13d5\u13b2\u13cd\u13aa": 18289, "\u13be\u13b4\u13bf\u13eb\u13cd\u13db\u13a9": 18290, "\u2581\u13da\u13e9\u13e5\u13cd\u13a6": 18291, "\u2581\u13a0\u13c6\u13d5\u13c5": 18292, "\u2581\u13d7\u13e8\u13d9": 18293, "\u2581\u13d3\u13e5\u13f0": 18294, "\u2581\u13a0\u13a9\u13cd\u13a6\u13c5": 18295, "\u13cd\u13d5\u13b8\u13af\u13d9\u13b8\u13af": 18296, "\u2581\u13a0\u13a9\u13c4\u13b8": 18297, "\u2581\u13a4\u13b5\u13cd": 18298, "\u13d3\u13a1\u13cf": 18299, "\u2581\u13d5\u13ad\u13e1\u13d7": 18300, "\u13a6\u13be\u13e9": 18301, "\u13cd\u13a6\u13b6\u13d7": 18302, "\u2581\u13f3\u13f4\u13b5": 18303, "\u13ec\u13ea\u13b3\u13c1": 18304, "\u13c7\u13c5\u13d4\u13c5": 18305, "\u2581\u13e5\u13d3\u13d5\u13f2\u13b2\u13cd": 18306, "\u2581\u13a0\u13d3\u13f0\u13ae": 18307, "\u2581\u13ac\u13c1\u13e4\u13d7": 18308, "\u13da\u13f3\u13aa\u13d7": 18309, "\u13e3\u13db\u13af\u13ce\u13b8": 18310, "\u13e5\u13a6\u13d9\u13a5\u13d2": 18311, "\u2581\u13e3\u13b8\u13c3\u13d8": 18312, "\u13e3\u13db\u13c1\u13b2\u13a2": 18313, "\u2581\u13d5\u13a4\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1": 18314, "\u13ec\u13da\u13e8": 18315, "\u2581\u13af\u13ef\u13e5\u13aa\u13c1": 18316, "\u13ac\u13a9\u13b7\u13e4\u13b8": 18317, "\u13be\u13db\u13c1\u13b4": 18318, "\u13cd\u13d5\u13b5\u13cd\u13a8\u13a2": 18319, "\u13f4\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 18320, "\u2581\u13a2\u13e5\u13be\u13c4\u13aa\u13eb\u13cd": 18321, "\u2581\u13ed\u13f2": 18322, "\u13db\u13c5\u13a2\u13cd\u13d4\u13c5\u13be": 18323, "\u13f2\u13d4\u13c1": 18324, "\u2581\u13d3\u13e6": 18325, "\u13c7\u13b5\u13ce\u13ae\u13cd\u13d7": 18326, "\u13e5\u13cf\u13be\u13cc\u13c2": 18327, "\u2581\u13a4\u13be\u13d2\u13c2": 18328, "\u13cd\u13a9\u13aa\u13e9\u13db": 18329, "\u13d9\u13ad\u13f0": 18330, "\u13cd\u13a9\u13f4\u13c1\u13b8": 18331, "\u2581\u13a2\u13e5\u13f4\u13c1\u13d7": 18332, "\u2581\u13be\u13be\u13db": 18333, "\u13aa\u13af\u13cd\u13d7": 18334, "\u13c2\u13d5\u13ac\u13c1\u13b0": 18335, "\u2581\u13a4\u13be\u13e6": 18336, "\u2581\u13a8\u13e5\u13c5\u13a6\u13b5\u13cd": 18337, "\u2581\u13f1\u13d7\u13e3\u13d3": 18338, "\u13e9\u13c2\u13b4\u13a2": 18339, "\u13d3\u13f2\u13c1\u13af": 18340, "\u2581\u13f1\u13c2\u13da": 18341, "\u2581\u13e7\u13be\u13d1": 18342, "\u2581\u13d3\u13f3\u13be\u13b4\u13bf\u13eb\u13cd": 18343, "\u13d3\u13d7\u13cd\u13aa\u13a2": 18344, "\u13c6\u13db\u13c1\u13d7\u13f1": 18345, "\u13be\u13c4\u13aa\u13eb\u13cd\u13a9": 18346, "\u13c7\u13d3\u13e2": 18347, "\u2581\u13a0\u13c2\u13c3\u13d7\u13cd": 18348, "\u13b5\u13d9\u13b8": 18349, "\u13be\u13af\u13cd\u13d3\u13c1\u13b8": 18350, "\u2581\u13d3\u13c2\u13c3\u13af": 18351, "\u13b3\u13cf\u13c1": 18352, "\u2581\u13da\u13e6": 18353, "\u2581\u13e5\u13d5\u13ab\u13aa\u13d3\u13c1": 18354, "\u2581\u13b1\u13c3\u13ae": 18355, "\u13bf\u13d5\u13a6": 18356, "\u2581\u13d7\u13e5\u13c5": 18357, "\u13c2\u13aa\u13b5\u13f0\u13cd\u13ac\u13a9": 18358, "\u13d9\u13a9\u13e8\u13cd": 18359, "\u13c2\u13f2\u13b1": 18360, "\u13c2\u13f2\u13b2\u13a9": 18361, "\u2581\u13a4\u13be\u13db\u13c5\u13a2\u13cd": 18362, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13d9\u13d7": 18363, "\u13c2\u13d7\u13cd\u13a9\u13cc": 18364, "\u2581\u13d7\u13ab\u13f4\u13a1": 18365, "\u13a9\u13cd\u13db\u13d7\u13cd\u13d7": 18366, "\u13f4\u13b8\u13be": 18367, "\u2581\u13a0\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8": 18368, "\u13cd\u13a9\u13ef": 18369, "\u2581\u13a0\u13e5\u13a9\u13a1": 18370, "\u2581\u13d3\u13a7\u13bf\u13e9\u13d7\u13d9": 18371, "\u13ac\u13bf\u13d7\u13cd\u13d7": 18372, "\u13f4\u13eb\u13ef\u13af": 18373, "\u2581\u13a4\u13d3\u13df\u13cc\u13c5": 18374, "\u2581\u13a3\u13a9\u13be\u13a9": 18375, "\u13a4\u13f4\u13e2": 18376, "\u2581\u13e3\u13d3\u13f4": 18377, "\u13e5\u13c2\u13c6\u13d8\u13ad": 18378, "\u13d5\u13b0\u13d7\u13cd\u13ac": 18379, "\u13ef\u13a7\u13af\u13ef": 18380, "\u13c2\u13c1\u13a6": 18381, "\u13ac\u13cd\u13d5\u13b8": 18382, "\u2581\u13f3\u13b5\u13cd\u13c6\u13d9": 18383, "\u2581\u13a4\u13b5\u13cd\u13c6\u13c2\u13aa\u13d9": 18384, "\u2581\u13af\u13ef\u13ab\u13f4": 18385, "\u13d3\u13cd\u13a6": 18386, "\u13cd\u13d7\u13d7\u13ce": 18387, "\u13cd\u13d5\u13b8\u13ae\u13a2": 18388, "\u13c2\u13d0\u13af\u13cd\u13d7\u13f1": 18389, "\u2581\u13a4\u13c2\u13cd\u13d5\u13b8\u13af\u13d9": 18390, "\u13c2\u13a9\u13ce\u13a2": 18391, "\u2581\u13cd\u13a9\u13c2\u13f4": 18392, "\u13f0\u13cd\u13db\u13a2": 18393, "\u2581\u13a0\u13c2\u13d9": 18394, "\u13e3\u13ef\u13c2\u13cd\u13a8\u13cd\u13d7": 18395, "\u13a0\u13d1\u13b5": 18396, "\u13e5\u13be\u13f0\u13cd\u13a6": 18397, "\u13a1\u13c9": 18398, "\u2581\u13d3\u13f3\u13f0": 18399, "\u13d5\u13ae\u13cd\u13d7": 18400, "\u13b7\u13c5": 18401, "\u2581\u13d7\u13e3\u13b5\u13c2\u13aa\u13af\u13cd": 18402, "\u2581\u13a2\u13e8\u13f2\u13ea\u13b3\u13c1\u13d7": 18403, "ne": 18404, "\u2581\u13f1\u13d7\u13e5\u13aa\u13e9\u13d8": 18405, "\u13e5\u13c5\u13cd\u13d3\u13d5\u13b8\u13a9": 18406, "\u13a0\u13d0\u13e2\u13a2\u13cd\u13d7\u13ad": 18407, "\u2581\u13a4\u13c2\u13e3\u13c4": 18408, "\u13ef\u13c5\u13cf": 18409, "\u13be\u13d5\u13cb\u13af\u13cd\u13d7": 18410, "\u2581\u13a3\u13a9\u13c3\u13b8": 18411, "\u2581\u13a3\u13a9\u13cd\u13d5\u13b8\u13d7": 18412, "\u13d7\u13db\u13b2": 18413, "\u2581\u13a4\u13c3\u13f4\u13a8": 18414, "\u13e3\u13d3\u13c5\u13d6\u13cd\u13a8\u13cd\u13d7": 18415, "\u13d3\u13c5\u13d6\u13d7\u13cd\u13a8": 18416, "\u2581\u13e7\u13c2\u13c5\u13a2\u13cd": 18417, "\u2581\u13a2\u13e3\u13d8\u13cd\u13d7\u13cd": 18418, "\u13b5\u13cf\u13ef": 18419, "\u13e5\u13d9\u13b5\u13a9": 18420, "\u2581\u13a1\u13e3\u13b5\u13ae\u13b5": 18421, "\u2581\u13da\u13be\u13b3\u13d1": 18422, "\u2581\u13f1\u13cd\u13a9\u13c1": 18423, "\u2581\u13a3\u13a6\u13d3\u13d9\u13b5\u13cd": 18424, "\u2581\u13a0\u13e5\u13aa\u13b5\u13f0": 18425, "\u2581\u13d5\u13e5\u13a6\u13d4\u13b2": 18426, "\u13d3\u13e3\u13db\u13c2": 18427, "\u2581\u13f2\u13af\u13f3\u13b2": 18428, "\u2581\u13a6\u13c2\u13c6\u13d8\u13ae": 18429, "\u2581\u13d3\u13a6\u13e5\u13f4": 18430, "\u2581\u13a2\u13e5\u13c3\u13af": 18431, "\u13e5\u13ad\u13ef\u13b8": 18432, "\u13a6\u13b4\u13c5\u13d4\u13c5": 18433, "\u2581\u13c4\u13be\u13d5\u13c1": 18434, "\u2581\u13ed\u13be\u13b5\u13cd\u13d4": 18435, "\u13f2\u13ce\u13b4\u13a2": 18436, "\u13ce\u13b5\u13d9\u13d4\u13c1": 18437, "\u2581\u13d4\u13d9\u13b4\u13b0": 18438, "\u2581\u13a4\u13c5\u13a6\u13b8\u13ae": 18439, "\u2581\u13f1\u13be\u13a9\u13ea": 18440, "\u13ac\u13ec\u13af\u13f3\u13b2\u13cd\u13a8\u13a2": 18441, "\u13c2\u13cd\u13d3\u13e9\u13d7\u13d2\u13a9": 18442, "\u13e4\u13b2\u13a9": 18443, "\u2581\u13a2\u13a6\u13e0\u13ef\u13cd\u13d9\u13d7": 18444, "\u13a8\u13eb\u13d2": 18445, "\u13e5\u13ef\u13a0": 18446, "\u13c6\u13b5\u13c2\u13ac\u13ac": 18447, "\u2581\u13a2\u13e8\u13ef\u13c5": 18448, "\u13ef\u13c5\u13a1\u13d7\u13f1": 18449, "\u2581\u13a4\u13be\u13c2\u13a9": 18450, "\u13be\u13a6\u13cc\u13ef\u13cd\u13d7\u13d5\u13a9": 18451, "\u13b5\u13a5\u13c2\u13ae\u13cd\u13d7": 18452, "\u13b5\u13c3\u13ae": 18453, "\u13b6\u13cf\u13d9\u13ae": 18454, "\u13c2\u13bf\u13b8": 18455, "\u13be\u13c4\u13aa\u13eb\u13ce\u13b5": 18456, "\u13ee\u13d5": 18457, "\u2581\u13d5\u13a7\u13c5\u13eb\u13cd": 18458, "\u13db\u13af\u13cd\u13d3": 18459, "\u2581\u13a2\u13a9\u13c5\u13a6": 18460, "\u2581\u13f0\u13d9": 18461, "\u13e0\u13ef\u13cd\u13d9\u13d7\u13f1": 18462, "\u13e3\u13df\u13b6\u13cd\u13d9\u13d7": 18463, "\u13e4\u13b5\u13cd\u13aa\u13a2": 18464, "\u2581\u13a0\u13f0\u13cd\u13d3": 18465, "\u13b5\u13c3\u13af\u13f0\u13af": 18466, "\u13c2\u13f2\u13b5\u13b4": 18467, "\u13d3\u13aa\u13e9\u13d8\u13cd\u13a8\u13a2": 18468, "\u2581\u13e3\u13e9\u13af": 18469, "\u2581\u13a1\u13e3\u13b8\u13c9": 18470, "\u13d3\u13cd\u13d6": 18471, "\u2581\u13ef\u13ce": 18472, "\u13c4\u13f4\u13b8": 18473, "\u13ae\u13d9\u13b8": 18474, "\u13da\u13be\u13d3\u13c2\u13b8\u13e8": 18475, "\u2581\u13a8\u13e5\u13da\u13a2\u13cd\u13d3": 18476, "\u2581\u13a2\u13e5\u13c4\u13aa": 18477, "\u2581\u13cd\u13a9\u13f0\u13b5\u13ce": 18478, "\u13e5\u13f2\u13a6": 18479, "\u13f2\u13cf\u13cc\u13c5": 18480, "\u2581\u13a4\u13be\u13a9\u13b6\u13eb": 18481, "\u13d3\u13c1\u13b6\u13db\u13a2": 18482, "\u13d3\u13ec\u13cd\u13aa": 18483, "\u13e3\u13d3\u13c5\u13d8": 18484, "\u2581\u13ef\u13c7\u13b5\u13ce": 18485, "\u2581\u13d1\u13d3\u13b5\u13c9": 18486, "\u13b5\u13a1\u13b5\u13e4\u13b2": 18487, "\u13d3\u13a1\u13aa\u13a2": 18488, "\u2581\u13be\u13c2\u13a6\u13d4": 18489, "\u2581\u13cd\u13a9\u13c3\u13c1\u13d7": 18490, "\u13e4\u13b8\u13af": 18491, "\u13ef\u13d7\u13d2": 18492, "\u2581\u13f1\u13d5\u13ab\u13aa\u13d3": 18493, "\u2581\u13eb\u13da\u13b6": 18494, "\u13da\u13a2\u13cd": 18495, "ati": 18496, "\u13ac\u13ef\u13db\u13c1\u13b8\u13a2": 18497, "\u13a4\u13aa\u13b2": 18498, "\u2581\u13e9\u13be\u13d3\u13c5": 18499, "\u13b0\u13ce\u13b4": 18500, "\u13f4\u13c2\u13b8": 18501, "\u2581\u13da\u13ed\u13cd": 18502, "\u13ef\u13b8\u13ce": 18503, "\u2581\u13eb\u13a9\u13ef": 18504, "\u2581\u13e7\u13a6\u13d8\u13b4": 18505, "\u13db\u13d3\u13cd\u13d3\u13c1\u13b8": 18506, "\u13f0\u13b6": 18507, "\u2581\u13f4\u13a6\u13f2\u13e5": 18508, "\u13ac\u13e9\u13b6\u13d4\u13c5": 18509, "\u2581\u13d7\u13a6\u13ec\u13c1": 18510, "\u13c1\u13d9\u13ae\u13cd\u13d7": 18511, "\u13a9\u13f2\u13cd\u13d9\u13d7": 18512, "\u2581\u13ef\u13f2\u13cd": 18513, "\u13ec\u13cd\u13a8\u13a2": 18514, "\u2581\u13d7\u13a8\u13e7\u13aa": 18515, "\u13ec\u13b5\u13e8": 18516, "\u2581\u13a4\u13be\u13ab\u13f4": 18517, "\u2581\u13d3\u13a6\u13b5\u13cd\u13d3\u13f4": 18518, "\u2581\u13ef\u13ab": 18519, "\u13d9\u13b3\u13c5\u13cd\u13d7": 18520, "\u13f1\u13b6\u13b4": 18521, "\u13c8\u13b5\u13f1": 18522, "\u2581\u13d9\u13cd\u13d3\u13d3": 18523, "\u13a9\u13ef\u13ea\u13a6": 18524, "\u13cd\u13d4\u13e9\u13d7\u13d2": 18525, "\u2581\u13a6\u13c5\u13eb\u13cd\u13d7\u13cd": 18526, "\u2581\u13cd\u13c6\u13d8\u13c2": 18527, "\u13da\u13b5\u13cd\u13d3": 18528, "\u13d7\u13a7\u13bf\u13e9\u13d7": 18529, "\u2581\u13ef\u13b4\u13eb\u13cd\u13d7\u13cd": 18530, "\u2581\u13a0\u13e5\u13c4\u13aa\u13eb\u13d2": 18531, "\u13d0\u13e2\u13d4\u13c5": 18532, "\u2581\u13d7\u13d3\u13c1": 18533, "\u13d3\u13b8\u13c9\u13d7\u13ad": 18534, "\u13ea\u13a7\u13c1\u13b4": 18535, "\u13da\u13d3\u13f4\u13ce": 18536, "\u2581\u13d7\u13e5\u13c1\u13d7": 18537, "\u13e5\u13aa\u13e9\u13d4": 18538, "\u2581\u13d9\u13d3\u13ac\u13ef": 18539, "\u13f1\u13be\u13c6\u13db\u13c1": 18540, "\u13e5\u13d4\u13f2\u13b8\u13a9": 18541, "\u13aa\u13b5\u13a9": 18542, "\u13aa\u13e9\u13d8\u13cd\u13a8": 18543, "\u2581\u13e7\u13f2\u13cd\u13d9\u13d7": 18544, "\u2581\u13a4\u13da\u13b5\u13cd": 18545, "\u13ea\u13ae\u13a2": 18546, "\u13df\u13c2\u13ac\u13c1\u13b4": 18547, "\u13a9\u13d0\u13e2": 18548, "\u13c2\u13d9\u13b4\u13a2": 18549, "\u2581\u13a4\u13be\u13da\u13d3\u13b4\u13cd\u13d7": 18550, "\u2581\u13a2\u13a4\u13ea\u13c5": 18551, "\u2581\u13a3\u13a9\u13e9\u13db": 18552, "\u13c1\u13e4\u13ad": 18553, "\u13cc\u13b4\u13d2": 18554, "\u13a6\u13a9\u13f3": 18555, "\u2581\u13d3\u13e3\u13c4\u13aa": 18556, "\u13d7\u13e5\u13ef\u13ea": 18557, "\u13b5\u13f0\u13a2": 18558, "\u2581\u13eb\u13ab\u13d3": 18559, "\u13b5\u13cd\u13da\u13a2\u13ce\u13a2": 18560, "\u2581\u13ac\u13e9\u13d3\u13c5\u13a1": 18561, "\u13cd\u13ab\u13d5\u13cd\u13d7\u13f1": 18562, "\u13aa\u13eb\u13cd\u13aa": 18563, "\u13f2\u13cd\u13a6": 18564, "\u13d7\u13d4\u13cd\u13d3": 18565, "\u13a1\u13cf\u13a9\u13c3": 18566, "\u2581\u13db\u13af": 18567, "\u13cd\u13da\u13df\u13cd\u13d4\u13c5": 18568, "\u13c2\u13c2\u13d2\u13a9": 18569, "\u2581\u13a2\u13a9\u13a8\u13f3\u13af": 18570, "\u2581\u13a7\u13c1\u13a2\u13cd\u13d9\u13d7": 18571, "\u2581\u13a4\u13cd\u13a6\u13c5": 18572, "\u2581\u13a3\u13a6\u13e2\u13c8": 18573, "\u13be\u13d1\u13a9\u13cd": 18574, "\u2581\u13f1\u13a6\u13d3\u13d9": 18575, "\u13a6\u13be\u13c4\u13aa\u13ac": 18576, "\u13cd\u13d3\u13f1\u13d5\u13b4": 18577, "\u2581\u13a4\u13aa\u13b5\u13f0\u13cd\u13ac": 18578, "\u2581\u13ac\u13e9\u13c1\u13e4": 18579, "\u13f0\u13cd\u13db\u13c1": 18580, "\u2581\u13a6\u13d5\u13b6\u13a3": 18581, "\u2581\u13a0\u13e5\u13c1\u13ae": 18582, "\u2581\u13f1\u13c2\u13a6\u13db": 18583, "\u2581\u13d5\u13e3\u13d8\u13c3": 18584, "\u13e8\u13f0\u13b3\u13d7\u13d9\u13ad": 18585, "\u13a8\u13d3\u13b5\u13f0": 18586, "\u2581\u13da\u13d2\u13ad\u13c2": 18587, "\u13c2\u13f1\u13cd\u13aa": 18588, "\u13b5\u13e5\u13d9\u13c2\u13d9\u13b8\u13ad": 18589, "\u2581\u13a2\u13ab\u13d3\u13b4": 18590, "\u2581\u13f3\u13be\u13d3\u13c5\u13d6": 18591, "\u2581\u13d9\u13a9\u13a9\u13e8": 18592, "\u13ec\u13cd\u13d4\u13c2": 18593, "\u13ef\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7\u13ad": 18594, "\u2581\u13a1\u13e5\u13ec": 18595, "\u13a6\u13ce\u13d9\u13d7": 18596, "\u2581\u13e7\u13d5\u13c1": 18597, "\u13e4\u13b7\u13a9": 18598, "\u2581\u13a4\u13be\u13b5\u13e5\u13d9\u13c1": 18599, "\u13be\u13b5\u13cd\u13d5\u13b8\u13d9\u13d7": 18600, "\u2581\u13ed\u13c2\u13e9\u13db": 18601, "\u2581\u13da\u13f2\u13d2": 18602, "\u2581\u13d7\u13a8\u13e3\u13d3\u13c2\u13b8": 18603, "\u2581\u13e7\u13e0\u13a0\u13ce": 18604, "\u2581\u13ed\u13be\u13d5": 18605, "\u2581\u13a4\u13be\u13aa\u13b2\u13cd": 18606, "\u13a6\u13be\u13a8": 18607, "\u2581\u13a3\u13e5\u13cd\u13d7\u13f0": 18608, "\u2581\u13d7\u13db\u13c5\u13a2\u13cd\u13d4\u13c5": 18609, "\u13cd\u13a9\u13a7\u13cf": 18610, "\u13e9\u13db\u13c1\u13b8\u13a2": 18611, "\u13f2\u13b1": 18612, "\u13d4\u13cd\u13a9\u13ce": 18613, "\u13f2\u13af\u13ce\u13b2": 18614, "\u2581\u13a0\u13cb\u13a8": 18615, "\u13da\u13a2\u13cd\u13d3\u13c1\u13b8": 18616, "\u2581\u13d3\u13cc\u13ec\u13a2": 18617, "\u13a9\u13c2\u13f4\u13db": 18618, "\u13aa\u13d3\u13cf": 18619, "\u2581\u13e5\u13b6\u13d2": 18620, "\u13e4\u13d9\u13b5\u13d9\u13ae": 18621, "\u2581\u13da\u13cd\u13d5\u13b8\u13ae": 18622, "\u13aa\u13eb": 18623, "\u2581\u13eb\u13da\u13d8\u13c5\u13cd\u13d4\u13c1": 18624, "\u13f2\u13b0\u13cf": 18625, "\u2581\u13a1\u13e3\u13b5\u13e5\u13d9\u13c1": 18626, "\u13e3\u13db\u13c2": 18627, "\u13d7\u13a6\u13d8\u13b8\u13cd\u13d7": 18628, "\u2581\u13a0\u13c6\u13e6\u13e9": 18629, "\u13d3\u13c5\u13a9\u13b6": 18630, "\u13d9\u13d7\u13f1\u13c9": 18631, "\u2581\u13a6\u13d3\u13c5\u13d6\u13cd": 18632, "\u2581\u13e5\u13e3\u13da\u13b5": 18633, "\u13c2\u13cf\u13c5\u13d2": 18634, "\u13c2\u13f0\u13b8\u13ad": 18635, "\u13e3\u13d7\u13cd\u13d3\u13c1": 18636, "\u13c5\u13eb\u13cd\u13d4\u13c5": 18637, "\u2581\u13a2\u13e5\u13cd\u13a6\u13c3": 18638, "\u13d7\u13f2\u13aa": 18639, "\u13a6\u13d9\u13b2": 18640, "\u2581\u13a0\u13c6\u13c5": 18641, "\u13d3\u13c5\u13d6\u13cd\u13ac": 18642, "\u2581\u13a2\u13e5\u13a7\u13b5\u13a2\u13cd\u13d7": 18643, "\u13d7\u13ef\u13c2": 18644, "\u13b7\u13e4\u13ae\u13cd\u13d7": 18645, "\u2581\u13a4\u13ea\u13b3\u13d7": 18646, "\u2581\u13a0\u13e5\u13f2": 18647, "\u2581\u13e7\u13d8\u13c5\u13cd\u13d7": 18648, "\u13e3\u13ef\u13a0": 18649, "\u13e5\u13f2\u13ce\u13b5": 18650, "\u13a8\u13b2\u13ce": 18651, "\u2581\u13e5\u13ae": 18652, "\u13ef\u13d9\u13ae\u13ae": 18653, "\u13be\u13b5\u13cd\u13d3\u13f4\u13af": 18654, "\u13e5\u13c4\u13aa\u13eb\u13cd\u13a6": 18655, "\u2581\u13f1\u13d9\u13a6\u13d3\u13c2\u13b8": 18656, "\u2581\u13a2\u13a8\u13e3": 18657, "\u13e0\u13b8": 18658, "\u2581\u13e7\u13b3\u13d1": 18659, "\u13e2\u13be\u13c1\u13b8\u13af": 18660, "\u2581\u13a3\u13a9\u13c2\u13f2": 18661, "\u13cd\u13d3\u13f1\u13d5\u13b8": 18662, "\u13ea\u13ce\u13b2\u13a2": 18663, "\u13d9\u13ea\u13b3\u13c1": 18664, "\u2581\u13d5\u13d3": 18665, "\u13c2\u13a8\u13ce": 18666, "\u13d4\u13ec\u13d9": 18667, "\u13d9\u13cd\u13d9": 18668, "\u2581\u13a0\u13c2\u13c5\u13eb\u13cd\u13d7\u13cd": 18669, "\u2581\u13a4\u13c2\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd": 18670, "\u13d3\u13b5\u13aa\u13c1": 18671, "\u2581\u13a4\u13e9\u13a8\u13eb\u13d2": 18672, "\u2581\u13e5\u13a6\u13e1": 18673, "\u13ec\u13e3\u13b3": 18674, "\u13e3\u13c4\u13ec\u13cd\u13d3": 18675, "\u2581\u13d7\u13d0\u13c8": 18676, "\u2581\u13e5\u13e4\u13d9": 18677, "\u13c2\u13f4\u13ae": 18678, "\u13c2\u13a6\u13ef\u13b7\u13d7": 18679, "\u13d7\u13d5\u13c2": 18680, "\u2581\u13ac\u13e9\u13cd\u13aa\u13c2": 18681, "\u13cd\u13d3\u13e9\u13d7\u13ce\u13a2": 18682, "\u13b5\u13ac\u13da\u13b3\u13c1": 18683, "\u2581\u13d7\u13a6\u13d6": 18684, "\u13a6\u13be\u13c4\u13aa\u13eb\u13cd\u13a6": 18685, "\u2581\u13da\u13be\u13a7\u13be": 18686, "\u2581\u13a6\u13e5\u13a5": 18687, "\u13ac\u13e9\u13db\u13db\u13d7": 18688, "\u13a9\u13a9\u13b5\u13f2": 18689, "\u2581\u13d9\u13db\u13d8\u13c2": 18690, "\u13ac\u13cb\u13c1\u13d7\u13f1": 18691, "\u2581\u13a1\u13e3\u13ef\u13c5": 18692, "\u13e5\u13cd\u13c6\u13c2\u13aa\u13d4\u13c5": 18693, "\u2581\u13eb\u13ab\u13e9": 18694, "\u2581\u13f3\u13d9\u13af\u13f3": 18695, "\u13a9\u13cf\u13d9\u13ae": 18696, "\u13e5\u13b8\u13cd\u13ac": 18697, "\u13a9\u13a7\u13b2": 18698, "\u13be\u13e3\u13a2\u13ce\u13a2": 18699, "\u2581\u13d5\u13ad\u13d8": 18700, "\u2581\u13a0\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d9\u13d7": 18701, "\u13db\u13af\u13cd\u13d7\u13cd\u13a8": 18702, "\u13d9\u13b8\u13af": 18703, "\u13c2\u13a7\u13c5": 18704, "\u2581\u13a4\u13d5\u13c1": 18705, "\u2581\u13a4\u13c2\u13f2\u13a2\u13ce": 18706, "\u2581\u13a4\u13be\u13d3\u13b8\u13c9\u13d7": 18707, "\u2581\u13a4\u13c2\u13c4\u13aa\u13eb\u13d2": 18708, "\u13b5\u13e5\u13d9\u13b2\u13cd\u13a9": 18709, "\u2581\u13e7\u13c2\u13cd\u13d5\u13b8": 18710, "\u2581\u13e7\u13b3\u13c1\u13b8": 18711, "\u13b5\u13f0\u13a1": 18712, "\u13ef\u13db\u13c5\u13a2\u13cd\u13d3": 18713, "\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13aa\u13a2": 18714, "\u2581\u13a2\u13e5\u13aa\u13e9\u13db\u13d7": 18715, "\u13b4\u13eb\u13cd\u13d4\u13c1\u13b4": 18716, "\u13d3\u13eb\u13d4\u13c5": 18717, "\u13e3\u13db\u13c1\u13ad": 18718, "\u13f2\u13ea\u13b3\u13cf": 18719, "\u2581\u13ac\u13e9\u13c4\u13aa\u13e4": 18720, "\u2581\u13e5\u13c2\u13ac\u13c1": 18721, "\u2581\u13da\u13cd\u13da": 18722, "\u2581\u13a3\u13a9\u13f2\u13b0\u13ce": 18723, "re": 18724, "\u2581\u13a4\u13ef\u13ea\u13d0\u13b8": 18725, "\u2581\u13a0\u13c6\u13db\u13c1\u13b8": 18726, "\u2581\u13a4\u13c2\u13c3\u13f4": 18727, "\u2581\u13be\u13c6\u13b5\u13c2\u13ac": 18728, "\u13b5\u13d9\u13b2": 18729, "\u2581\u13a4\u13cd\u13aa\u13b5\u13f0": 18730, "\u2581\u13a0\u13e5\u13c1\u13b0": 18731, "\u2581\u13d7\u13e5\u13f2": 18732, "\u2581\u13a4\u13be\u13a6\u13cc\u13ef\u13cd": 18733, "\u13e0\u13ef\u13cd\u13d7": 18734, "\u2581\u13ac\u13a9\u13e2": 18735, "\u2581\u13e7\u13a7\u13b5\u13e8": 18736, "\u13be\u13cf\u13c2\u13ce\u13a2": 18737, "\u2581\u13a2\u13e3\u13d9\u13b4\u13b0\u13cd": 18738, "\u13c3\u13af\u13f3\u13b2": 18739, "\u13d3\u13a2\u13c5": 18740, "\u2581\u13a0\u13e5\u13be\u13d7\u13c5": 18741, "\u2581\u13ac\u13e9\u13c1\u13c1": 18742, "\u13c4\u13aa\u13a2\u13cd\u13d7": 18743, "\u2581\u13a6\u13c5\u13aa": 18744, "\u2581\u13f3\u13d3\u13b5": 18745, "\u13be\u13b5\u13aa\u13c1": 18746, "\u13d8\u13c2\u13d3\u13cd\u13d7": 18747, "\u13e6\u13ea\u13b5\u13cd": 18748, "\u13af\u13ce\u13d7\u13f1": 18749, "\u2581\u13a0\u13be\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd": 18750, "\u2581\u13a0\u13d0\u13e9": 18751, "\u13aa\u13b5\u13f0\u13a5\u13a9": 18752, "\u13d3\u13db\u13c1\u13b2": 18753, "\u13ce\u13b5\u13d3\u13c1\u13b8": 18754, "\u13be\u13db\u13c1\u13b2\u13be": 18755, "\u13eb\u13db\u13b2\u13ad": 18756, "\u2581\u13e6\u13e3": 18757, "\u2581\u13d3\u13ef\u13d9\u13ae": 18758, "\u2581\u13a4\u13aa\u13b5\u13f0\u13cd\u13a8": 18759, "\u13e3\u13ab\u13f4\u13a1\u13d7": 18760, "\u13b5\u13cd\u13d9\u13f0\u13b2": 18761, "\u13be\u13d3\u13d8\u13be\u13a5": 18762, "\u2581\u13da\u13c2\u13ec\u13c2": 18763, "\u2581\u13a0\u13b4\u13eb\u13cd\u13d8\u13cd": 18764, "\u13e9\u13e5\u13cd\u13d3": 18765, "\u2581\u13e3\u13ab\u13f4\u13a1": 18766, "\u13b5\u13d6\u13b8\u13c2": 18767, "\u13b5\u13b6\u13b2\u13cd\u13a6": 18768, "\u2581\u13a0\u13d5\u13b6\u13b0\u13af\u13cd": 18769, "\u13aa\u13a1\u13b8": 18770, "\u2581\u13f1\u13ed\u13c2\u13b7": 18771, "\u2581\u13d5\u13e3\u13a7\u13c2\u13cd": 18772, "\u13b5\u13cd\u13a6\u13cd\u13d9\u13d7\u13cd\u13a9": 18773, "\u13ea\u13d8\u13b8\u13af": 18774, "\u13d3\u13f3\u13c2\u13b6\u13d2\u13af": 18775, "\u13c4\u13ea": 18776, "\u2581\u13a2\u13f2\u13ac": 18777, "\u2581\u13d3\u13be\u13d5\u13b0": 18778, "\u2581\u13a4\u13a6\u13d9\u13a5\u13af\u13cd": 18779, "\u2581\u13a4\u13f0\u13d9\u13b3": 18780, "\u13a7\u13b5\u13b4": 18781, "\u2581\u13d3\u13cb\u13c2": 18782, "\u2581\u13d3\u13b5": 18783, "\u13d7\u13e7\u13ac\u13a2": 18784, "\u13a6\u13c5\u13d7\u13f1": 18785, "\u2581\u13e3\u13d3\u13d9\u13b5\u13cd": 18786, "\u2581\u13a0\u13d2\u13c2\u13ae": 18787, "\u2581\u13a4\u13c2\u13cd\u13d3\u13f1": 18788, "\u13da\u13b8\u13b2\u13a9": 18789, "\u2581\u13d5\u13a8\u13a6\u13ec": 18790, "\u2581\u13e3\u13d9\u13b4\u13b0\u13af\u13cd": 18791, "\u13cd\u13d8\u13f0\u13ac": 18792, "\u2581\u13af\u13df\u13cf": 18793, "\u13da\u13d2\u13c1\u13a2": 18794, "\u2581\u13a0\u13c2\u13cc\u13db\u13a5\u13cd": 18795, "\u13c4\u13ea\u13cd\u13d7": 18796, "\u13a7\u13f2": 18797, "\u13ac\u13e9\u13d9\u13e2": 18798, "\u13e9\u13be\u13db\u13c1\u13d7": 18799, "\u2581\u13c2\u13a6\u13b5\u13cd": 18800, "\u2581\u13a3\u13e5\u13c1\u13a2\u13cd\u13d7": 18801, "\u13e5\u13c3\u13c1\u13d7\u13f1": 18802, "\u2581\u13e5\u13e8\u13ef\u13b5\u13e5\u13d9\u13c1": 18803, "\u2581\u13da\u13cd\u13d5\u13b8": 18804, "\u13c5\u13e9\u13cd\u13db\u13c9": 18805, "\u2581\u13a6\u13e5\u13f2\u13a2\u13f3\u13d3\u13c1": 18806, "\u2581\u13a8\u13e5\u13d0\u13c5": 18807, "\u2581\u13a1\u13e5\u13b7\u13e5": 18808, "\u13b5\u13e4\u13d7\u13f1": 18809, "\u13f0\u13ce\u13a2": 18810, "\u13e2\u13d4\u13cd\u13d7": 18811, "\u13e3\u13b5\u13c2\u13aa\u13af\u13cd\u13d3": 18812, "\u2581\u13a0\u13c2\u13a9\u13b5\u13f2\u13e5\u13d9": 18813, "\u13c1\u13a2\u13cd\u13d3\u13cf": 18814, "\u2581\u13a3\u13e3\u13b4\u13c2": 18815, "\u2581\u13a0\u13d3\u13c5\u13d6": 18816, "\u13a9\u13d0\u13e2\u13a2\u13cd\u13d9\u13d7\u13f1": 18817, "\u2581\u13a0\u13c2\u13cc\u13c6\u13b4": 18818, "\u13b6\u13c4\u13a1": 18819, "\u2581\u13ad\u13b4\u13c2\u13d9": 18820, "\u13d0\u13c5\u13f0\u13b5": 18821, "\u2581\u13a4\u13e3\u13b3": 18822, "\u13b8\u13c9\u13d7\u13cd\u13aa": 18823, "\u2581\u13c4\u13be\u13b5\u13cd\u13d3\u13c1": 18824, "\u2581\u13e5\u13d4\u13f2\u13ce": 18825, "\u2581\u13a0\u13c6\u13d5\u13b0": 18826, "\u13cd\u13a6\u13c5\u13e4\u13b8": 18827, "\u13d3\u13e3\u13b5\u13cd\u13d4\u13c2": 18828, "\u2581\u13d3\u13c2\u13a6\u13d4\u13b2\u13cd": 18829, "\u13cd\u13ab\u13d5\u13d2\u13a9": 18830, "\u2581\u13c2\u13d3\u13be\u13db": 18831, "\u13f3\u13d6\u13cd": 18832, "\u13b2\u13cd": 18833, "\u13e3\u13d3\u13c1\u13ae\u13cd\u13d7": 18834, "\u2581\u13f1\u13d3\u13a7\u13bf\u13e9\u13d5": 18835, "\u2581\u13d7\u13e5\u13da": 18836, "\u13a4\u13a8\u13f3\u13ad": 18837, "\u13d1\u13f4\u13a5\u13cd": 18838, "\u13c4\u13aa\u13e8\u13ad": 18839, "\u2581\u13d5\u13a6\u13ab": 18840, "\u2581\u13cd\u13a9\u13a9\u13b5\u13f2\u13a2\u13cd": 18841, "\u13ec\u13c2\u13cd\u13a9": 18842, "\u13b3\u13d7\u13cd\u13db": 18843, "\u13e5\u13f1\u13b5\u13d9": 18844, "\u13c1\u13a2\u13cd\u13d9\u13d7\u13f1": 18845, "\u13b5\u13cc\u13b3\u13d7": 18846, "\u13cd\u13a6\u13c5\u13a6": 18847, "\u13a6\u13b5\u13cd\u13d9\u13d3": 18848, "\u13c2\u13ad\u13b7\u13a9\u13cd": 18849, "\u2581\u13a0\u13c7\u13d9": 18850, "\u13aa\u13b2\u13cd\u13d3": 18851, "\u2581\u13a2\u13e5\u13be\u13f0": 18852, "\u2581\u13da\u13a8\u13af\u13d9": 18853, "\u13be\u13c2\u13cd\u13ac": 18854, "\u13a0\u13cf\u13b3\u13db": 18855, "\u2581\u13d8\u13c2\u13e3": 18856, "\u2581\u13da\u13be\u13d7\u13e9": 18857, "\u13ef\u13cd\u13d4\u13c1": 18858, "\u13a0\u13c2\u13b2\u13cd\u13a8\u13cd\u13d7": 18859, "\u13e5\u13a6\u13d4\u13b0": 18860, "\u2581\u13a5\u13aa\u13a9\u13d4\u13f2\u13ce": 18861, "\u13be\u13db\u13db\u13c1\u13a2": 18862, "\u13c9\u13cc": 18863, "\u13c2\u13ef\u13a1\u13a2": 18864, "\u13bf\u13b8\u13d2\u13a2": 18865, "\u2581\u13a4\u13c2\u13a7\u13b5\u13a2\u13cd": 18866, "\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b5": 18867, "\u2581\u13e9\u13a9\u13cd": 18868, "\u13db\u13cd\u13c6\u13b8\u13af": 18869, "\u13e4\u13d9\u13b8\u13af": 18870, "\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13b4": 18871, "\u2581\u13a6\u13e5\u13cd\u13d5\u13b8": 18872, "\u13e5\u13a6\u13d4\u13b2\u13a2": 18873, "\u2581\u13a4\u13c2\u13b6\u13c4\u13ae": 18874, "\u2581\u13e7\u13be\u13db\u13af\u13cd": 18875, "\u2581\u13eb\u13d3\u13be\u13d3": 18876, "\u2581\u13e5\u13da\u13f2": 18877, "\u13da\u13ce\u13aa\u13a9\u13ce": 18878, "\u2581\u13f1\u13aa\u13ea": 18879, "\u2581\u13a6\u13b5\u13ec": 18880, "\u13da\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a9": 18881, "\u13e5\u13c2\u13f4": 18882, "\u13ce\u13aa\u13a9\u13cf": 18883, "\u13db\u13d3\u13cd\u13d3\u13c1\u13b4": 18884, "\u13d7\u13b7\u13e8": 18885, "\u13da\u13aa\u13d4\u13c5": 18886, "\u13e3\u13b5\u13c2\u13a9\u13d7\u13f3": 18887, "\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2\u13a2": 18888, "\u13ea\u13ce\u13b8": 18889, "\u13d9\u13af\u13f3\u13c5\u13a9": 18890, "\u13e3\u13b5\u13cd\u13a6\u13cd\u13d9\u13db": 18891, "\u2581\u13da\u13e9\u13cd\u13a6": 18892, "\u13d8\u13c3\u13b4\u13a2": 18893, "\u2581\u13ac\u13e9\u13cd\u13c6\u13c2\u13aa\u13d9\u13d7": 18894, "\u13cd\u13d3\u13db\u13c1\u13b8": 18895, "\u2581\u13cd\u13a9\u13f0\u13b8": 18896, "\u13db\u13c5\u13a2\u13cd\u13d4\u13be": 18897, "\u13e9\u13d5\u13a6": 18898, "\u13d5\u13ef\u13d9": 18899, "\u13cc\u13d9\u13f1\u13cd": 18900, "\u2581\u13eb\u13a6\u13d3\u13d9\u13b5\u13cd": 18901, "\u13b5\u13ec\u13e5\u13d5\u13be": 18902, "to": 18903, "\u2581\u13f1\u13a6\u13d4\u13ae": 18904, "\u13e5\u13b3\u13c5\u13d3\u13d5": 18905, "\u13ef\u13f4\u13ad": 18906, "\u13d3\u13d4\u13b6\u13d2": 18907, "\u2581\u13e3\u13a6\u13b8\u13cd": 18908, "\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d9\u13d7\u13f1": 18909, "\u2581\u13f3\u13be\u13d5": 18910, "en": 18911, "\u13b8\u13c9\u13d7\u13cd\u13ac": 18912, "\u2581\u13eb\u13d7\u13b7": 18913, "\u2581\u13a4\u13c2\u13cd\u13aa\u13c2": 18914, "\u2581\u13a4\u13df\u13eb\u13db": 18915, "\u13b5\u13aa\u13c1\u13b4": 18916, "\u13a6\u13d8\u13d7\u13cd\u13d3\u13c1\u13b8": 18917, "\u13b6\u13d5\u13cd\u13d7": 18918, "\u13df\u13cc\u13c5\u13af": 18919, "\u2581\u13c2\u13da\u13ed\u13aa\u13d4": 18920, "\u2581\u13a6\u13c1\u13df\u13f4\u13cd": 18921, "\u2581\u13ef\u13d3\u13c1": 18922, "\u2581\u13a4\u13cc\u13b5\u13d3": 18923, "\u2581\u13e5\u13e5\u13b7": 18924, "\u2581\u13e3\u13b8\u13c9": 18925, "\u13a6\u13da\u13b2": 18926, "\u13b6\u13cd\u13a8": 18927, "\u2581\u13a2\u13d3\u13d3\u13c1": 18928, "\u13e5\u13cd\u13c8\u13cd": 18929, "\u13d5\u13b6\u13b0\u13d2": 18930, "\u2581\u13d3\u13d3\u13c5": 18931, "\u13a6\u13b4\u13d9\u13d7": 18932, "\u13a6\u13d4\u13b2\u13cd\u13a8\u13cd\u13d7": 18933, "\u13d3\u13c5\u13d6\u13b5\u13d9\u13b2\u13a2": 18934, "\u2581\u13e5\u13c2\u13c6\u13d8": 18935, "\u2581\u13a4\u13c2\u13b8\u13c9\u13d9": 18936, "\u13d2\u13cd\u13d7\u13cd\u13ac": 18937, "\u2581\u13a0\u13b5\u13cd\u13c6": 18938, "\u13cd\u13a6\u13b8\u13a6": 18939, "\u13df\u13c3\u13ae\u13d4\u13c5": 18940, "\u2581\u13a0\u13c2\u13be\u13f0\u13cd\u13a8": 18941, "\u13a3\u13af\u13cd\u13d7": 18942, "\u13da\u13cf\u13d4\u13d5\u13a2": 18943, "\u2581\u13e5\u13d5\u13a6\u13d5\u13f2": 18944, "\u13c2\u13b7\u13c6\u13d7\u13c5": 18945, "\u13ef\u13cf\u13d4\u13db": 18946, "\u2581\u13f1\u13e3\u13db\u13a6\u13c1": 18947, "\u13e0\u13b0": 18948, "\u13da\u13a9\u13cd\u13d7\u13f1": 18949, "\u2581\u13da\u13e9\u13c2": 18950, "\u13e5\u13b7\u13a6": 18951, "\u13c6\u13c2\u13f2\u13cd\u13d7": 18952, "\u2581\u13f3\u13b7\u13e5": 18953, "\u2581\u13d5\u13e5\u13b8\u13eb\u13cd\u13d3": 18954, "\u13a6\u13d8\u13b4\u13ac": 18955, "\u2581\u13e5\u13c2\u13ea": 18956, "\u13da\u13ef\u13d9\u13ae\u13b8": 18957, "\u13d3\u13c3\u13f4\u13b5\u13cd\u13db": 18958, "\u2581\u13a8\u13e5\u13c3\u13ae": 18959, "\u13d3\u13c2\u13b8\u13aa": 18960, "\u13e5\u13f3\u13aa\u13d3\u13c1\u13b0\u13a2": 18961, "\u13cd\u13a9\u13f0\u13b3": 18962, "\u13d5\u13b6\u13c6": 18963, "\u2581\u13a4\u13c2\u13cd\u13c6\u13d7\u13cd": 18964, "\u13e5\u13ef\u13da\u13d3\u13b3": 18965, "\u2581\u13a0\u13c6\u13d5\u13b6\u13c6": 18966, "\u13a6\u13d8\u13c5\u13cd\u13d7": 18967, "\u13d9\u13b4\u13b0\u13af": 18968, "\u2581\u13c5\u13d7\u13a6\u13b5": 18969, "\u13d3\u13c4\u13f4\u13db": 18970, "\u13a9\u13c5\u13d2\u13af": 18971, "\u2581\u13a6\u13c5\u13d3\u13d7": 18972, "\u13d3\u13a6\u13d3\u13c2\u13b8\u13aa": 18973, "\u13c2\u13c1\u13a6\u13b8": 18974, "\u13a6\u13d0\u13a0\u13d2": 18975, "\u13a6\u13cc\u13ef\u13cd\u13d4\u13c5": 18976, "\u2581\u13d3\u13a6\u13b8\u13cd": 18977, "\u2581\u13a0\u13c6\u13db\u13aa": 18978, "\u13e0\u13af\u13cd\u13d4\u13c5": 18979, "\u13ec\u13c1\u13d7\u13cd\u13a8\u13cd\u13d7": 18980, "\u2581\u13d3\u13a6\u13e5\u13c1": 18981, "\u13c5\u13e4": 18982, "\u13c2\u13a8\u13e8\u13bf\u13d5": 18983, "\u13cd\u13db\u13d7\u13cd\u13d9\u13d7": 18984, "\u13c4\u13aa\u13eb\u13cd\u13d7": 18985, "\u2581\u13f1\u13d5\u13e5": 18986, "\u2581\u13ac\u13e9\u13d4\u13f2\u13ce": 18987, "\u13b5\u13e6\u13d4\u13c5\u13a9": 18988, "\u2581\u13e3\u13a6\u13d3\u13c2\u13b8": 18989, "\u2581\u13f1\u13a6\u13b5\u13cd": 18990, "\u2581\u13f1\u13c4\u13c5": 18991, "\u13e4\u13d7\u13f1": 18992, "\u13cd\u13d3\u13e9\u13d9\u13b8\u13af": 18993, "\u2581\u13d3\u13e3\u13d3\u13c5": 18994, "\u13d5\u13e6\u13c1": 18995, "\u13d6\u13b3\u13d7\u13cd\u13d7": 18996, "\u2581\u13a5\u13a8\u13e5": 18997, "\u13c2\u13ef\u13a5\u13a2": 18998, "\u13ad\u13c4\u13ee": 18999, "\u2581\u13b2\u13f2": 19000, "\u13db\u13d4\u13c2\u13b8": 19001, "\u13a7\u13bf\u13e9\u13d5\u13ac": 19002, "\u2581\u13a4\u13be\u13b5\u13cd\u13a6\u13cd\u13d9\u13d4": 19003, "\u2581\u13a2\u13d7\u13e9\u13db": 19004, "\u13f0\u13b6\u13b8": 19005, "\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd\u13a9": 19006, "\u2581\u13f1\u13a6\u13b7\u13e4": 19007, "\u13be\u13db\u13c1\u13a2": 19008, "\u13ac\u13da\u13a2\u13cd\u13d3": 19009, "\u13d4\u13db\u13a6": 19010, "\u13be\u13af\u13f3": 19011, "\u13e4\u13b8\u13cd\u13a9": 19012, "\u13e3\u13aa\u13e9\u13db\u13d7": 19013, "\u2581\u13a2\u13e8\u13ef\u13a6\u13d4": 19014, "\u2581\u13a0\u13c2\u13b3\u13a8": 19015, "\u13e3\u13aa\u13b3": 19016, "\u13a2\u13d0\u13c3": 19017, "\u13b5\u13e5\u13d9\u13c1": 19018, "\u13d7\u13e5\u13cd\u13d5\u13b8\u13d7": 19019, "\u13d3\u13b4\u13b2\u13cd\u13aa\u13a2": 19020, "\u13d3\u13f4\u13b3\u13d4": 19021, "\u2581\u13a4\u13c1\u13e2\u13d4\u13c5": 19022, "\u13da\u13d3\u13b4\u13cd\u13d7": 19023, "\u2581\u13a2\u13e3\u13d3\u13c1": 19024, "\u13e3\u13db\u13bf\u13d7": 19025, "\u13b4\u13c5\u13d9\u13d7": 19026, "\u13d5\u13a8\u13a6\u13b8\u13a5": 19027, "\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13d7\u13f1": 19028, "\u2581\u13a4\u13d7\u13a6\u13b5\u13cd\u13d9": 19029, "\u13b5\u13aa\u13c1\u13d7\u13f1": 19030, "\u2581\u13d5\u13ab\u13aa\u13d3": 19031, "\u13c3\u13af\u13f3\u13c5": 19032, "\u2581\u13da\u13c2\u13ef\u13b8": 19033, "\u2581\u13e3\u13a7\u13b5\u13e8": 19034, "\u13b8\u13c9\u13d4\u13c5": 19035, "\u13cd\u13d3\u13e9\u13d7\u13d9\u13ae": 19036, "\u13b5\u13d4\u13d7": 19037, "\u13ab\u13f4\u13d3\u13cf": 19038, "\u13a9\u13b5\u13f2\u13a2\u13cd": 19039, "\u13af\u13cc\u13b9": 19040, "\u2581\u13a0\u13d3\u13b8\u13c9\u13d7": 19041, "\u13d9\u13b5\u13e5": 19042, "\u2581\u13da\u13c2\u13e9\u13db": 19043, "\u13a4\u13c4\u13aa\u13e4\u13c3": 19044, "\u2581\u13a4\u13c2\u13be\u13b7": 19045, "\u2581\u13cd\u13a9\u13c1\u13a2\u13cd": 19046, "\u2581\u13a3\u13e5\u13d4\u13f2\u13af": 19047, "\u13cd\u13ac\u13d3\u13a8": 19048, "\u13b5\u13aa\u13c1\u13b8": 19049, "\u13cd\u13d4\u13f4\u13b2\u13cd\u13a9": 19050, "\u2581\u13a7\u13c1\u13e4": 19051, "\u2581\u13da\u13a8\u13e9": 19052, "\u2581\u13f1\u13c2\u13f4": 19053, "\u13cd\u13da\u13d7\u13f1": 19054, "\u13e0\u13f1\u13ae\u13cd\u13d7": 19055, "\u2581\u13e5\u13be\u13cc": 19056, "\u2581\u13d7\u13d3\u13b4\u13b2\u13cd": 19057, "\u13b7\u13ac\u13d2": 19058, "\u13f3\u13eb\u13ef": 19059, "\u2581\u13ad\u13d7\u13d4\u13cd": 19060, "\u2581\u13a0\u13cd\u13c6\u13c2\u13aa": 19061, "\u2581\u13da\u13e0": 19062, "\u13af\u13d9\u13b8\u13a2": 19063, "\u13b3\u13eb\u13a2\u13cd\u13d7\u13f1": 19064, "\u13cc\u13d9\u13f4": 19065, "\u13cf\u13b3\u13db\u13a5\u13a6": 19066, "\u2581\u13e5\u13a6\u13d6\u13c3": 19067, "\u2581\u13cd\u13a9\u13aa\u13e9\u13d8\u13cd": 19068, "\u13d9\u13a9\u13ef\u13cd": 19069, "\u2581\u13d8\u13a7\u13bf\u13e9": 19070, "\u2581\u13a8\u13cd\u13a9\u13d0\u13e2": 19071, "\u2581\u13a2\u13e3\u13da\u13d3": 19072, "\u13c2\u13b3\u13a8\u13f4\u13a2": 19073, "\u2581\u13f1\u13d9\u13a8\u13e3": 19074, "\u2581\u13d7\u13e5\u13a7\u13bf\u13e9": 19075, "\u13d7\u13e4\u13b5\u13ce": 19076, "\u13b5\u13f4\u13cd\u13aa\u13f3": 19077, "\u2581\u13c2\u13d3\u13cd\u13a6": 19078, "\u13a4\u13be\u13e8\u13ce\u13a2": 19079, "\u2581\u13e7\u13f2\u13cd\u13d9": 19080, "\u2581\u13d5\u13e5\u13aa\u13e9": 19081, "\u13c3\u13af\u13f3\u13b2\u13cd\u13aa": 19082, "\u13a6\u13d3\u13a2\u13c5\u13d2\u13a9": 19083, "\u2581\u13d7\u13cd\u13c6\u13c2\u13aa": 19084, "\u13d9\u13be\u13a5\u13a9": 19085, "\u2581\u13a2\u13d7\u13cd\u13a6\u13be": 19086, "\u13d9\u13e2\u13d2": 19087, "\u2581\u13a0\u13c6\u13d7\u13cd\u13a6": 19088, "\u13db\u13b4\u13eb\u13cd\u13d4": 19089, "\u2581\u13e7\u13c2\u13f2\u13af\u13cd\u13d7": 19090, "\u13a8\u13c5\u13d7\u13cd\u13d7": 19091, "\u2581\u13e7\u13be\u13c4\u13aa\u13eb\u13cd\u13d7": 19092, "\u13ea\u13db\u13e8": 19093, "\u13c2\u13f4\u13b8\u13a9": 19094, "\u2581\u13a0\u13c2\u13be\u13cf\u13c2": 19095, "\u13f4\u13d4\u13c2": 19096, "\u2581\u13e5\u13be\u13ac": 19097, "\u13cc\u13b3\u13d7\u13cd\u13a8\u13cd\u13d7": 19098, "\u13a7\u13f2\u13d9": 19099, "\u2581\u13ef\u13cb": 19100, "\u2581\u13a0\u13f0\u13ae": 19101, "\u2581\u13da\u13c2\u13a8\u13f3": 19102, "\u2581\u13af\u13c2\u13d3": 19103, "\u2581\u13a2\u13e3\u13df\u13c2\u13ac": 19104, "\u13aa\u13d1\u13b4": 19105, "\u13a6\u13f0\u13e7": 19106, "\u13e9\u13c2\u13a6\u13b6": 19107, "\u2581\u13a4\u13c2\u13c2\u13ac": 19108, "\u2581\u13a1\u13e3\u13d3\u13d9\u13b5\u13cd\u13d3": 19109, "\u2581\u13e7\u13be\u13c2\u13cf": 19110, "\u2581\u13ad\u13b5\u13cd\u13aa\u13b8\u13d3": 19111, "\u2581\u13a4\u13d3\u13c5\u13d3\u13d7": 19112, "\u2581\u13a4\u13f0\u13a2\u13b5": 19113, "\u13b5\u13cd\u13d8\u13cd\u13ac": 19114, "\u13b7\u13f4": 19115, "\u13e5\u13b6\u13d2\u13cd\u13d3": 19116, "\u13a9\u13ef\u13c5\u13a1\u13b8\u13a9": 19117, "\u13a6\u13d1\u13f4\u13db": 19118, "\u2581\u13d3\u13a6\u13d9\u13b4\u13a3": 19119, "\u2581\u13a8\u13a9\u13c3\u13ae": 19120, "\u13c3\u13af\u13b5\u13d9": 19121, "\u13d3\u13b4\u13b2\u13cd\u13ac\u13a9": 19122, "\u13e0\u13af\u13cd\u13db": 19123, "\u2581\u13d3\u13be\u13e0": 19124, "\u2581\u13a0\u13be\u13d3\u13cf\u13c2": 19125, "\u13cf\u13be\u13af": 19126, "\u13ec\u13ea\u13b3": 19127, "\u2581\u13a0\u13c9\u13da": 19128, "\u2581\u13d3\u13c2\u13f0": 19129, "\u13ac\u13e9\u13b5\u13d6\u13b8": 19130, "\u13c2\u13b3\u13a8\u13ef\u13db": 19131, "\u2581\u13eb\u13c2\u13a6\u13b5\u13cd": 19132, "\u13c6\u13c5\u13d3\u13db": 19133, "\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd\u13ac": 19134, "\u2581\u13a2\u13a9\u13aa\u13e9\u13db": 19135, "\u13da\u13ec": 19136, "\u2581\u13e7\u13be\u13d3\u13f2": 19137, "\u13a4\u13b6\u13ce\u13a2": 19138, "\u13d5\u13ef\u13d4\u13c1\u13ae\u13cd\u13d7": 19139, "\u13c5\u13d3\u13d5": 19140, "\u13b7\u13b8\u13c1\u13b4": 19141, "\u13e5\u13b7\u13e5\u13cf": 19142, "\u2581\u13ed\u13c3\u13ae": 19143, "\u2581\u13a4\u13c3\u13c1\u13d7": 19144, "\u2581\u13a2\u13a6\u13da\u13b8": 19145, "\u2581\u13d7\u13cd\u13c6\u13d3\u13c2\u13b8": 19146, "\u2581\u13a2\u13ac\u13e9\u13b5\u13cd": 19147, "\u13ef\u13d9\u13af\u13b2": 19148, "ar": 19149, "\u13aa\u13b3\u13d7\u13f4": 19150, "os": 19151, "\u2581\u13d3\u13a6\u13be\u13ec\u13cd": 19152, "\u13df\u13d0\u13d7": 19153, "\u13a7\u13b5\u13cd\u13d3\u13d7\u13cd": 19154, "\u13a4\u13d9\u13af\u13f3\u13af\u13cd\u13aa": 19155, "\u13c1\u13c9\u13e4": 19156, "\u13be\u13d9\u13b3\u13cd\u13d7\u13cd": 19157, "\u13a7\u13c1\u13ae\u13cd\u13d7": 19158, "\u2581\u13a4\u13be\u13b5\u13cd\u13d3\u13f4\u13c2": 19159, "\u2581\u13f1\u13e5\u13b5\u13d3\u13cd": 19160, "\u2581\u13a0\u13a6\u13ec": 19161, "\u2581\u13eb\u13da\u13c4": 19162, "\u13aa\u13d9\u13af\u13cd\u13d4\u13c2": 19163, "\u13a6\u13b8\u13cd\u13d9\u13d7\u13f1": 19164, "\u13be\u13e1\u13d7\u13cd\u13a9": 19165, "\u13aa\u13c1\u13b6": 19166, "\u2581\u13e5\u13c2\u13e3": 19167, "\u2581\u13ed\u13e9\u13ab": 19168, "\u13d3\u13f1\u13ae\u13cd\u13d7": 19169, "\u2581\u13f3\u13a6\u13d4": 19170, "\u13aa\u13e2\u13c5\u13af": 19171, "\u13ec\u13e2\u13c1": 19172, "\u2581\u13a0\u13c6\u13b5\u13e5\u13d9": 19173, "\u13d8\u13b8\u13c9\u13d9": 19174, "\u13a6\u13d9\u13cd\u13db": 19175, "\u13d0\u13e2\u13d9\u13d7\u13f1": 19176, "\u2581\u13a4\u13d5\u13d8\u13f4": 19177, "\u2581\u13a4\u13cd\u13d3\u13e9\u13db": 19178, "\u13f3\u13cd\u13c8\u13db": 19179, "\u13a7\u13c2\u13cd\u13a8": 19180, "\u2581\u13a0\u13b5\u13c3\u13ae\u13d7\u13cd\u13a8": 19181, "\u2581\u13d3\u13cd\u13a6\u13a2": 19182, "\u2581\u13c4\u13f0\u13b8": 19183, "\u2581\u13a0\u13c2\u13aa\u13e9\u13d8\u13cd": 19184, "\u2581\u13f1\u13d7\u13ab\u13aa": 19185, "\u2581\u13af\u13ef\u13d2\u13c2": 19186, "\u2581\u13e3\u13a7\u13d4\u13ae": 19187, "\u13dc\u13c5\u13d3\u13d7\u13cd\u13a8": 19188, "\u13b5\u13c2\u13aa\u13ce\u13a2": 19189, "\u13ad\u13d3\u13c5\u13d6\u13cd\u13ac\u13a2": 19190, "\u13c1\u13a2\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 19191, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d9\u13d7": 19192, "\u13d4\u13b6\u13d2": 19193, "\u13b5\u13d7\u13d2\u13c2\u13ae": 19194, "\u13d7\u13d4\u13b2": 19195, "\u2581\u13ac\u13a9\u13a6\u13b5\u13cd\u13d3\u13d7\u13cd": 19196, "\u13da\u13d5\u13a2": 19197, "\u13d3\u13b5\u13c1\u13af\u13d5\u13d7": 19198, "\u13b5\u13cd\u13d9\u13d3": 19199, "\u2581\u13a0\u13a9\u13b7\u13af\u13cd\u13d7": 19200, "\u13a9\u13cd\u13a6\u13c5\u13e4": 19201, "\u13c2\u13d1\u13ea\u13ce\u13b8": 19202, "\u2581\u13a0\u13d8\u13f2": 19203, "\u13ac\u13c1\u13ae\u13cd\u13d7": 19204, "\u2581\u13d7\u13a8\u13e5\u13f2": 19205, "\u2581\u13a0\u13c2\u13df\u13cc": 19206, "\u13c1\u13cd\u13a9\u13b8\u13d7": 19207, "\u13df\u13c3\u13ae\u13cd\u13ac": 19208, "\u13cf\u13b3\u13db\u13c1\u13b4": 19209, "\u2581\u13a2\u13ef\u13c2\u13b5\u13cd": 19210, "\u13c2\u13a6\u13d8\u13b8\u13d2\u13a9": 19211, "\u13a4\u13e0\u13a0\u13ce": 19212, "\u13b5\u13ae\u13b5\u13a9": 19213, "\u2581\u13a2\u13e8\u13ac\u13cd\u13aa\u13b8": 19214, "\u2581\u13a0\u13c2\u13a6\u13be\u13a6": 19215, "\u2581\u13da\u13be\u13d5\u13f2": 19216, "\u13eb\u13de\u13eb\u13d2": 19217, "\u13d2\u13c2\u13c9": 19218, "\u2581\u13c2\u13cd\u13c6\u13db": 19219, "\u13d3\u13c5\u13a1\u13b4": 19220, "\u13b5\u13e5\u13d9\u13c2\u13d9\u13ae": 19221, "\u13b3\u13d0\u13eb": 19222, "\u13db\u13c5\u13d3\u13a9": 19223, "\u13e3\u13d6\u13cd\u13d7": 19224, "\u13be\u13c2\u13a9\u13cd\u13ac": 19225, "\u2581\u13a4\u13c3\u13d9": 19226, "\u13b6\u13c1\u13d4\u13c5": 19227, "\u2581\u13e5\u13ef\u13d8\u13c5": 19228, "\u13d4\u13b6\u13ce": 19229, "\u2581\u13a2\u13f0\u13e8\u13c1": 19230, "\u2581\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1": 19231, "\u2581\u13a2\u13ac\u13c6": 19232, "\u13ce\u13aa\u13a9\u13ce": 19233, "\u13b5\u13d9\u13a9\u13ef\u13cd": 19234, "\u2581\u13c1\u13ea\u13ce": 19235, "\u2581\u13ed\u13c2\u13cc\u13d9": 19236, "\u2581\u13f3\u13c2\u13c6\u13d8": 19237, "\u2581\u13a6\u13e5\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 19238, "\u13a4\u13b4\u13c5": 19239, "\u13db\u13d7\u13d5\u13a8": 19240, "\u2581\u13ac\u13e9\u13b7\u13e4": 19241, "\u13be\u13b5\u13d4\u13d7\u13c5": 19242, "\u13be\u13da\u13aa\u13d3\u13c1\u13d7": 19243, "\u2581\u13e5\u13a6\u13c2\u13f1\u13cd": 19244, "\u2581\u13a0\u13c1\u13b8\u13d7\u13cd": 19245, "\u13cd\u13c6\u13c2\u13aa\u13cd\u13a8\u13a2": 19246, "\u13be\u13b5\u13cd\u13d3\u13c1\u13af": 19247, "\u13ab\u13aa\u13d3": 19248, "\u2581\u13ed\u13ea\u13a7": 19249, "\u2581\u13a0\u13c2\u13cd\u13ab\u13d5\u13cd": 19250, "\u2581\u13d7\u13a4\u13be\u13e8": 19251, "\u2581\u13a0\u13be\u13d7\u13d4\u13cd": 19252, "\u2581\u13a0\u13d3\u13c5\u13d6\u13d9": 19253, "\u13e5\u13d4\u13f2\u13ce\u13ad": 19254, "\u13e6\u13ad\u13f4": 19255, "\u13a6\u13ce\u13cd\u13d4": 19256, "\u13a9\u13c1\u13e4\u13d7\u13f1": 19257, "\u13d9\u13cd\u13db\u13a2": 19258, "\u2581\u13af\u13c1\u13a2\u13cd\u13d7": 19259, "\u13b6\u13bb": 19260, "\u2581\u13cd\u13a9\u13f0\u13b8\u13be": 19261, "\u2581\u13a0\u13be\u13d3\u13db\u13a5\u13cd": 19262, "\u2581\u13ed\u13be\u13b5\u13f1\u13b6": 19263, "\u2581\u13f3\u13de": 19264, "\u13e9\u13d7\u13d9\u13b8\u13af": 19265, "\u2581\u13a0\u13ab\u13f1\u13cd": 19266, "\u13b5\u13ce\u13ae\u13cd\u13d7": 19267, "\u13cd\u13ab\u13d5": 19268, "\u13a4\u13c2\u13a9\u13db": 19269, "\u2581\u13ab\u13e9\u13be\u13d3": 19270, "\u13ce\u13b5\u13d9\u13ae": 19271, "\u13d7\u13a7\u13c1\u13e4": 19272, "\u13b5\u13d8\u13a1": 19273, "\u13b6\u13d4\u13c2": 19274, "\u13e5\u13b6\u13c1\u13a5": 19275, "\u13d7\u13e9\u13cd\u13ac": 19276, "\u2581\u13ac\u13e9\u13d8\u13bf\u13eb\u13db": 19277, "\u2581\u13da\u13d4\u13b7\u13a9": 19278, "\u13c2\u13c6\u13d8\u13b4\u13a2": 19279, "\u2581\u13ed\u13c2\u13cd\u13c6": 19280, "\u13cd\u13d5\u13b5\u13cd\u13a8": 19281, "\u2581\u13a4\u13be\u13d5\u13ef": 19282, "\u13b5\u13ae\u13b5\u13cd\u13d7": 19283, "\u13ef\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 19284, "\u2581\u13e5\u13a6\u13d9\u13a5\u13af\u13cd\u13d7": 19285, "\u13d5\u13e3\u13d3": 19286, "\u13cd\u13ab\u13d3\u13db": 19287, "\u2581\u13ee\u13d3\u13e3\u13d8": 19288, "\u2581\u13a2\u13cd\u13d3\u13d3\u13c5": 19289, "\u13c2\u13e3\u13cd\u13db\u13be": 19290, "\u2581\u13e7\u13ef\u13ea": 19291, "\u2581\u13d9\u13d3\u13a8\u13e5": 19292, "\u2581\u13cd\u13c6\u13ab\u13f4": 19293, "\u13ac\u13e9\u13b6": 19294, "\u13aa\u13d3\u13c1\u13b8": 19295, "\u2581\u13d3\u13f3\u13be\u13c2\u13a9": 19296, "\u2581\u13e3\u13b5\u13c2\u13aa\u13af\u13cd\u13d7": 19297, "\u13b5\u13c3\u13ae\u13d9\u13d7": 19298, "\u13a9\u13ef\u13db\u13c1\u13b4": 19299, "\u2581\u13a2\u13e3\u13b5\u13cd": 19300, "\u2581\u13a9\u13c4": 19301, "\u2581\u13da\u13be\u13da\u13d3": 19302, "\u13d3\u13ec\u13cd": 19303, "\u2581\u13e7\u13d2\u13a6": 19304, "\u2581\u13a4\u13be\u13b5\u13cd\u13aa\u13b8": 19305, "\u13b5\u13e5\u13c6": 19306, "\u2581\u13a0\u13f2\u13af\u13cd\u13d7\u13cd": 19307, "\u13e3\u13d8\u13c3\u13a6": 19308, "\u2581\u13a8\u13a6\u13d3\u13c5\u13d6": 19309, "\u13d4\u13e9\u13d5\u13a9": 19310, "\u13aa\u13d3\u13c1\u13ad": 19311, "\u13d1\u13a6\u13e2": 19312, "\u13c4\u13aa\u13eb\u13cd\u13aa\u13a2": 19313, "\u13f0\u13b8\u13cd\u13a8\u13cd\u13d7": 19314, "\u13ef\u13b8\u13c5": 19315, "\u13f4\u13af\u13b0\u13a2": 19316, "\u13dd\u13cd\u13a8": 19317, "\u13b4\u13f4\u13d9\u13d7": 19318, "\u13e3\u13d7\u13d4\u13af": 19319, "\u2581\u13a4\u13b5\u13cd\u13d4": 19320, "\u2581\u13d7\u13e3\u13d3\u13d9\u13e2\u13be\u13c1": 19321, "\u2581\u13e3\u13c1\u13e2\u13d4\u13c5": 19322, "\u13e5\u13ea\u13cd\u13d7": 19323, "\u13aa\u13e9\u13db\u13d9": 19324, "\u13d3\u13b4\u13db": 19325, "\u13d3\u13be\u13d3\u13c2\u13b8\u13aa": 19326, "\u13a9\u13ea\u13ce\u13ad": 19327, "\u2581\u13e5\u13a6\u13f4\u13b5": 19328, "\u13e5\u13f2\u13a2\u13ce\u13b8\u13ad": 19329, "\u13b6\u13d4\u13c1": 19330, "\u2581\u13eb\u13da\u13c2\u13f4": 19331, "\u2581\u13a4\u13be\u13a6\u13d4\u13c5": 19332, "\u13d5\u13cb\u13af\u13cd": 19333, "\u2581\u13eb\u13d5\u13a8\u13a6": 19334, "\u2581\u13d5\u13a6\u13c3\u13f4": 19335, "\u13b1\u13cd\u13d5\u13ce": 19336, "\u2581\u13d3\u13dc\u13cd": 19337, "\u13c2\u13d5\u13a6\u13ea\u13ce\u13b0": 19338, "\u13db\u13a5\u13a6": 19339, "\u13e9\u13be\u13a2": 19340, "\u13b5\u13cd\u13d7\u13cd\u13a8": 19341, "\u13af\u13ef\u13cd\u13ac": 19342, "\u2581\u13f4\u13d7\u13d3\u13b4": 19343, "\u13d3\u13e5\u13b7\u13e5": 19344, "\u2581\u13a4\u13d4\u13cd\u13a9": 19345, "\u2581\u13da\u13b7\u13b8": 19346, "\u2581\u13ac\u13a9\u13a8\u13f3\u13af": 19347, "\u13b6\u13a8\u13d2": 19348, "\u13c2\u13cd\u13ac": 19349, "\u13a4\u13b8\u13db": 19350, "\u13f2\u13cf\u13cd\u13a9": 19351, "\u2581\u13e5\u13a5\u13a1": 19352, "\u13c4\u13aa\u13eb\u13cd\u13a8\u13a2": 19353, "\u13db\u13e3\u13c2": 19354, "\u13d3\u13c5\u13a1\u13b8\u13a9": 19355, "\u13dc": 19356, "\u2581\u13a0\u13ac\u13d5": 19357, "\u13f2\u13b0\u13a2": 19358, "\u13e0\u13d2\u13a9": 19359, "\u13a7\u13c5\u13d1\u13b8\u13a2": 19360, "\u2581\u13f1\u13e5\u13a8\u13f3": 19361, "\u13d3\u13c2\u13b8\u13e8": 19362, "\u2581\u13d5\u13a9\u13f2": 19363, "\u2581\u13a4\u13a8\u13af\u13d9": 19364, "\u2581\u13f1\u13da\u13b8\u13eb\u13cd\u13d3": 19365, "\u13c2\u13a6\u13d4\u13b2\u13cd\u13a9": 19366, "\u2581\u13cd\u13c6\u13a6\u13ce": 19367, "\u13c2\u13d7\u13cd\u13d7\u13f1": 19368, "\u13df\u13cd\u13db\u13a2": 19369, "\u13c5\u13e9\u13cd\u13d9\u13a2": 19370, "\u13d3\u13a6\u13b5\u13cd\u13d4\u13c2": 19371, "\u13ac\u13e9\u13d3": 19372, "\u13cd\u13a6\u13a2\u13b2": 19373, "\u2581\u13c4\u13a8\u13f3": 19374, "\u13e3\u13b5\u13e5\u13d9\u13b2\u13cd\u13a6": 19375, "\u13ac\u13e9\u13cd\u13d7\u13c9": 19376, "\u13ab\u13f0": 19377, "\u13b5\u13c2\u13aa\u13af\u13cd\u13d7\u13cd\u13a8": 19378, "\u13cd\u13a6\u13cd\u13d9\u13d7\u13cd\u13a9": 19379, "\u2581\u13a4\u13be\u13e0": 19380, "\u13ea\u13b5\u13ce\u13b4\u13a2": 19381, "\u2581\u13e3\u13d3\u13a8\u13f3": 19382, "\u13cd\u13d3\u13db\u13d3\u13cd\u13d3": 19383, "\u2581\u13a4\u13c2\u13c5\u13aa": 19384, "\u2581\u13f1\u13ac\u13e9\u13be\u13db": 19385, "\u2581\u13eb\u13da\u13a7": 19386, "ti": 19387, "\u2581\u13e5\u13e5\u13c1\u13e4": 19388, "\u13f2\u13cc": 19389, "\u2581\u13a2\u13f3\u13be\u13b5\u13cd\u13d4": 19390, "ita": 19391, "\u13ea\u13d9\u13a5\u13a6": 19392, "\u13d6\u13c9\u13b6": 19393, "\u13b5\u13aa\u13c1\u13af": 19394, "\u13ac\u13e9\u13b6\u13d3": 19395, "\u2581\u13a2\u13e3\u13d7\u13a6\u13b4\u13f2": 19396, "\u13aa\u13c4\u13b6\u13af\u13cd\u13d7": 19397, "\u2581\u13ac\u13cd\u13d7\u13f0": 19398, "\u2581\u13d3\u13e8\u13f0": 19399, "\u13a8\u13a6\u13d3\u13a2\u13c5\u13d2\u13a9": 19400, "\u13ac\u13a9\u13aa\u13b5\u13f0\u13a5": 19401, "\u2581\u13ac\u13e9\u13c4\u13ec\u13af\u13cd": 19402, "\u2581\u13a0\u13a9\u13e9\u13db": 19403, "\u13be\u13c1\u13b6\u13db\u13a2": 19404, "\u13b5\u13ac\u13be": 19405, "\u2581\u13a6\u13b5\u13e5\u13d9\u13c2\u13d9": 19406, "\u2581\u13d3\u13c6\u13d9": 19407, "\u2581\u13e7\u13b8\u13c9\u13d9": 19408, "\u13d3\u13b5\u13c1\u13af\u13d5\u13ae\u13cd\u13d7": 19409, "\u13e5\u13a4\u13cd\u13d5\u13ce": 19410, "\u2581\u13a2\u13d3\u13d3\u13c5\u13d6\u13cd": 19411, "\u13e9\u13cd\u13ac\u13a9": 19412, "\u13ef\u13d2\u13a6\u13b6\u13d4": 19413, "\u2581\u13ac\u13c7\u13af\u13cd\u13d7": 19414, "\u13d4\u13b3\u13a7": 19415, "\u13cd\u13d5\u13b8\u13d9\u13d7": 19416, "\u2581\u13ef\u13b5\u13cd\u13d3\u13f4": 19417, "\u2581\u13e5\u13e6\u13af\u13f3": 19418, "\u13e5\u13be\u13f0\u13cd\u13a9": 19419, "\u2581\u13a4\u13cd\u13c6\u13d5": 19420, "\u13be\u13d7\u13d4\u13ae\u13a2": 19421, "\u13c3\u13ae\u13ae\u13ad": 19422, "\u13be\u13c2\u13a9\u13cd\u13a8": 19423, "\u2581\u13eb\u13c4\u13c2\u13ea": 19424, "\u2581\u13a6\u13a8\u13e3\u13d5\u13b6": 19425, "\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 19426, "\u2581\u13a4\u13b5\u13f1\u13b6": 19427, "\u2581\u13da\u13a6\u13d9\u13cd": 19428, "\u13cd\u13a9\u13cd\u13d5\u13b8\u13a1\u13b8": 19429, "\u2581\u13c2\u13da\u13f2": 19430, "\u13c1\u13d3\u13cd\u13d7": 19431, "\u13c1\u13e6\u13c5": 19432, "\u13d3\u13e1\u13e9\u13cd\u13d7\u13d5": 19433, "\u2581\u13a2\u13d7\u13a6\u13f2": 19434, "\u2581\u13d7\u13c2\u13cd\u13aa\u13c2": 19435, "\u2581\u13f1\u13da\u13c2\u13b6": 19436, "\u2581\u13a0\u13c2\u13ec\u13c2\u13cd\u13a8\u13cd": 19437, "\u2581\u13e3\u13cd\u13c6\u13c2\u13aa\u13d5": 19438, "\u13d2\u13c2\u13cd\u13d7": 19439, "\u13c2\u13e3\u13db\u13c5": 19440, "\u2581\u13a4\u13d1\u13ef": 19441, "\u2581\u13da\u13c4\u13aa": 19442, "\u13b5\u13d6\u13b8\u13ae": 19443, "\u2581\u13a1\u13e5\u13c3\u13ae": 19444, "\u13c2\u13a8\u13ac\u13c1\u13ad": 19445, "\u2581\u13a4\u13be\u13d3\u13ce\u13aa\u13a9": 19446, "\u2581\u13e5\u13c2\u13e3\u13db": 19447, "\u2581\u13a0\u13c6\u13b5\u13cd\u13da": 19448, "\u2581\u13a0\u13be\u13da\u13d3": 19449, "\u13c2\u13e8\u13db": 19450, "\u2581\u13a4\u13c4\u13aa\u13eb\u13d2": 19451, "\u13d3\u13a9\u13ef\u13ea": 19452, "\u2581\u13a2\u13e3\u13b5\u13cd\u13a6\u13cd\u13d9": 19453, "\u2581\u13d5\u13e5\u13a6\u13bf\u13e9\u13d5": 19454, "\u13d2\u13cd\u13d3\u13c1\u13b8": 19455, "il": 19456, "\u13f2\u13e8\u13af": 19457, "\u13c1\u13b5\u13d2": 19458, "\u2581\u13a4\u13d3\u13cc\u13a7": 19459, "\u2581\u13ef\u13cd\u13a6\u13a2": 19460, "\u13d4\u13b3\u13ec\u13af\u13cd": 19461, "\u2581\u13af\u13cd\u13d5\u13b8": 19462, "\u13e9\u13c1\u13b5": 19463, "\u13e5\u13cd\u13c6\u13db": 19464, "\u13e3\u13b5\u13c3\u13ae\u13d7": 19465, "\u2581\u13d5\u13e5\u13cd\u13da": 19466, "\u13cc\u13d3\u13d7\u13cd\u13d7\u13f1": 19467, "\u2581\u13d7\u13ac\u13c6": 19468, "\u2581\u13e3\u13db\u13cd": 19469, "\u2581\u13a1\u13e3\u13e1": 19470, "\u2581\u13ac\u13a6\u13d4": 19471, "\u2581\u13a4\u13d5\u13d4": 19472, "\u2581\u13a4\u13be\u13d3\u13db\u13db": 19473, "\u2581\u13a4\u13a6\u13bf": 19474, "\u13cd\u13c6\u13d5\u13b4\u13a2": 19475, "\u2581\u13a2\u13e3\u13b5\u13cd\u13aa\u13b8\u13d4": 19476, "\u13ef\u13ab\u13f4\u13d7": 19477, "\u13e3\u13ea\u13d0\u13b8\u13cd\u13d4": 19478, "\u2581\u13a0\u13b5\u13f1\u13b6": 19479, "\u13be\u13d5\u13b6\u13c6\u13cd": 19480, "\u13f2\u13d3\u13dd": 19481, "\u2581\u13a0\u13be\u13b5\u13cd\u13d5": 19482, "\u2581\u13f1\u13d7\u13e3\u13d3\u13c2\u13b8": 19483, "\u2581\u13a5\u13ac\u13e9\u13db": 19484, "\u13e5\u13b6\u13c4\u13ae": 19485, "\u2581\u13a4\u13aa\u13c4\u13b6": 19486, "\u13ef\u13eb\u13cd\u13a9": 19487, "\u2581\u13a8\u13e5\u13cd\u13db\u13d7": 19488, "\u13ac\u13e9\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1": 19489, "\u13cd\u13d3\u13e9\u13d5": 19490, "\u2581\u13d5\u13e3\u13d3\u13f2": 19491, "\u2581\u13a0\u13d5\u13b6\u13b0": 19492, "\u2581\u13a2\u13e3\u13b5\u13e9\u13db\u13a1": 19493, "\u2581\u13f3\u13ed": 19494, "\u2581\u13c2\u13d5\u13a4\u13e9": 19495, "\u13c5\u13cd\u13a8\u13c2": 19496, "\u2581\u13a0\u13a9\u13f2\u13cd\u13d9\u13d3": 19497, "\u2581\u13a2\u13e5\u13a7\u13b5\u13a2\u13cd": 19498, "\u2581\u13a2\u13a9\u13f4\u13c1": 19499, "\u13d9\u13d1\u13b4": 19500, "\u13c2\u13f2\u13b1\u13af\u13cd\u13d7": 19501, "\u2581\u13da\u13f2\u13ae": 19502, "\u2581\u13f1\u13d3\u13be\u13b5": 19503, "\u2581\u13ac\u13e9\u13c2\u13b7\u13e4": 19504, "\u2581\u13e5\u13be\u13cb": 19505, "\u13c1\u13b0\u13be": 19506, "\u13e3\u13d3\u13c4\u13f4\u13d7": 19507, "\u13da\u13b4\u13d4\u13c1\u13a2": 19508, "\u13be\u13cf\u13db\u13c2": 19509, "\u13ea\u13d0\u13e8": 19510, "\u13c6\u13df\u13c3\u13ae": 19511, "\u13d7\u13a6\u13f2\u13e5\u13c1": 19512, "\u2581\u13da\u13e9\u13c5": 19513, "\u13e8\u13a8\u13eb\u13cd": 19514, "\u13f2\u13b5\u13ae\u13cd\u13d7": 19515, "\u13c5\u13a6\u13b8\u13d9\u13d7\u13f1": 19516, "\u13b4\u13af\u13cc": 19517, "\u13d5\u13af\u13ae\u13cd\u13d7": 19518, "\u13da\u13d3\u13d5\u13eb": 19519, "\u2581\u13a8\u13ef\u13d4": 19520, "\u2581\u13a0\u13c1\u13d9": 19521, "\u13c4\u13b3\u13cd\u13d3\u13c1": 19522, "\u2581\u13c4\u13ab\u13f4": 19523, "\u13d1\u13f4": 19524, "\u13d9\u13af\u13d7\u13cd\u13d7": 19525, "\u2581\u13e5\u13c4\u13ea": 19526, "\u13b5\u13ae\u13b5\u13e4\u13d7\u13f1": 19527, "\u13d3\u13b4\u13be": 19528, "\u13e5\u13a4\u13cd\u13d5\u13ce\u13b4": 19529, "\u13e8\u13c1\u13b5": 19530, "\u2581\u13a2\u13e5\u13a7\u13b5": 19531, "\u2581\u13d7\u13cd\u13d4\u13f2": 19532, "\u13ec\u13c1\u13d7\u13ad": 19533, "\u13eb\u13ce\u13b2\u13a2": 19534, "\u13da\u13c2\u13e9\u13db\u13ae": 19535, "\u13b5\u13ac\u13da": 19536, "\u13da\u13d2\u13c2\u13b4": 19537, "\u2581\u13a2\u13e4\u13b3\u13d7\u13cd\u13d7": 19538, "\u13d9\u13b5\u13cd\u13d4\u13c2": 19539, "\u13a6\u13da\u13b5\u13cd\u13ac": 19540, "\u2581\u13a2\u13e5\u13cd\u13d3\u13e9\u13d7": 19541, "\u2581\u13e5\u13be\u13c2\u13ea": 19542, "\u13a6\u13d8\u13b8\u13cd\u13d7": 19543, "\u2581\u13c5\u13d3\u13f3\u13b5\u13cd\u13d9": 19544, "\u13c5\u13a6\u13b8\u13d3": 19545, "\u13cc\u13d3\u13db\u13a9": 19546, "\u2581\u13a5\u13c6\u13d2\u13a6\u13b6": 19547, "\u2581\u13e7\u13be\u13d7\u13d4\u13cd": 19548, "\u13a6\u13d1\u13ef\u13a9\u13cd\u13d7": 19549, "\u2581\u13a4\u13d3\u13c3\u13f4\u13b5": 19550, "\u2581\u13b1\u13da": 19551, "\u13e8\u13ef\u13cd\u13d7": 19552, "\u13c2\u13b7\u13a8\u13cd\u13d7": 19553, "\u2581\u13cd\u13c6\u13db\u13c5\u13a2\u13cd\u13d3": 19554, "\u13e3\u13b5\u13cd\u13aa\u13b8\u13d7\u13cd\u13ac\u13a2": 19555, "\u13ec\u13b5\u13e4\u13a2": 19556, "\u13ef\u13c2\u13cd\u13aa": 19557, "\u13a8\u13e3\u13b5\u13cd\u13da": 19558, "\u13d6\u13b8\u13c5\u13a9": 19559, "\u13c4\u13ea\u13ce\u13b4\u13a2": 19560, "\u2581\u13e6\u13e5\u13a8": 19561, "\u2581\u13aa\u13af\u13f3\u13d9": 19562, "\u13cd\u13d5\u13d3\u13b5\u13f4\u13cd\u13ac": 19563, "\u2581\u13a4\u13c2\u13a8\u13b2": 19564, "\u13c3\u13af\u13f4\u13af": 19565, "\u2581\u13a0\u13c2\u13ac\u13ad\u13b7\u13ef\u13cd": 19566, "\u13aa\u13b3\u13c5": 19567, "\u2581\u13a4\u13cd\u13c6\u13d9": 19568, "\u2581\u13a0\u13c6\u13b5\u13c3\u13ae": 19569, "\u13b3\u13db\u13a5\u13cd\u13ac": 19570, "\u13f2\u13b2\u13a6": 19571, "\u13c8\u13d7\u13cd\u13a9": 19572, "\u13a4\u13ea\u13b3\u13d7\u13cd\u13d7": 19573, "\u2581\u13ed\u13c5\u13cd": 19574, "\u13a6\u13d8\u13d7\u13cd\u13d4\u13c1": 19575, "\u13f1\u13b5\u13d9\u13b2": 19576, "\u13d0\u13c8\u13b8\u13a6": 19577, "\u13da\u13c2\u13b0\u13c1": 19578, "\u13a8\u13a6\u13d7": 19579, "\u13e5\u13c3\u13c1\u13ad": 19580, "\u2581\u13a2\u13cd\u13d7\u13f4": 19581, "\u2581\u13e3\u13be\u13c4\u13aa\u13eb\u13ce": 19582, "\u13c6\u13b5\u13cd\u13d3\u13c1": 19583, "\u2581\u13c2\u13e3\u13da\u13b5": 19584, "\u2581\u13eb\u13ac\u13ea\u13a7": 19585, "\u2581\u13e5\u13ef\u13da\u13b8\u13a1": 19586, "\u2581\u13f1\u13e9\u13c2": 19587, "\u2581\u13a4\u13d3\u13d3\u13b4\u13d4": 19588, "\u2581\u13a4\u13c3\u13e3": 19589, "\u2581\u13a4\u13b6\u13c4\u13ae": 19590, "\u13a6\u13e0\u13ef\u13cd\u13d7": 19591, "\u2581\u13a4\u13b5\u13aa\u13be": 19592, "\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a9": 19593, "\u2581\u13ac\u13ef\u13ab\u13f4": 19594, "\u13a6\u13d9\u13a0\u13cd\u13aa": 19595, "\u2581\u13d3\u13e9\u13db\u13af": 19596, "\u2581\u13d3\u13cd\u13a9\u13c5": 19597, "\u13c3\u13df\u13cd": 19598, "\u2581\u13d7\u13ac\u13e9\u13be\u13c1\u13b6": 19599, "\u2581\u13ac\u13a9\u13a6\u13d4": 19600, "\u2581\u13a8\u13e5\u13cc\u13b3": 19601, "\u13c2\u13cf\u13c2\u13d9\u13b8\u13a2": 19602, "\u2581\u13c4\u13be\u13da\u13b5": 19603, "\u13e2\u13cd\u13aa\u13a2": 19604, "\u13c5\u13cd\u13a6\u13dd\u13c1": 19605, "\u13d4\u13b6\u13af\u13cd\u13d7": 19606, "\u2581\u13f1\u13e3\u13d3\u13c5": 19607, "\u2581\u13a4\u13be\u13c1\u13b6": 19608, "\u13a6\u13c4\u13d3\u13db": 19609, "\u13c6\u13a7\u13be\u13c5\u13a9": 19610, "\u13b3\u13be\u13b6": 19611, "\u13c9\u13d7\u13f3": 19612, "\u13a8\u13e5\u13c4\u13ec": 19613, "\u13d3\u13c1\u13e5\u13f4": 19614, "\u13f0\u13e5\u13cd\u13a8": 19615, "\u2581\u13e4\u13e6": 19616, "\u13af\u13a6\u13d4\u13ae\u13a2": 19617, "\u13cf\u13d4\u13d3": 19618, "\u13f2\u13a4\u13b4": 19619, "\u2581\u13a0\u13c6\u13e1\u13d7\u13cd": 19620, "\u13da\u13c2\u13cd\u13d7\u13f0": 19621, "\u13d1\u13b3": 19622, "\u2581\u13a6\u13b5\u13e5\u13d9": 19623, "\u2581\u13f1\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9": 19624, "\u2581\u13a4\u13c2\u13ad\u13f2": 19625, "\u13ce\u13b5\u13d4\u13c5": 19626, "\u13b7\u13eb\u13cd\u13d4\u13c1\u13d7": 19627, "\u2581\u13a4\u13f0\u13cc": 19628, "\u2581\u13a3\u13a6\u13e2": 19629, "\u2581\u13d7\u13ab\u13aa": 19630, "\u2581\u13e7\u13db\u13af\u13cd": 19631, "\u13be\u13d8\u13c3\u13ae\u13b4": 19632, "\u2581\u13a4\u13c3\u13d5": 19633, "\u13ad\u13eb\u13c2": 19634, "\u13d3\u13d9\u13e2\u13be\u13c1": 19635, "\u13d3\u13c5\u13d6\u13ae\u13b8": 19636, "\u2581\u13a2\u13e4\u13b3\u13d7": 19637, "\u13d9\u13af\u13ae\u13cd\u13d7": 19638, "\u13b5\u13c2\u13c6\u13c5": 19639, "\u13c5\u13e9\u13c1\u13a2": 19640, "\u2581\u13a0\u13be\u13d5\u13ef": 19641, "\u2581\u13a4\u13d3\u13cd\u13d5": 19642, "\u13a9\u13f0\u13b8\u13ce\u13cd\u13d7": 19643, "\u13aa\u13d3\u13c1\u13d7\u13f1": 19644, "\u2581\u13a4\u13c3\u13af\u13ce": 19645, "\u13ac\u13c6\u13b5\u13cd\u13d3\u13f4\u13be\u13c1": 19646, "\u13a8\u13f3\u13d4\u13c5\u13a9": 19647, "\u13cd\u13d4\u13c1\u13b8": 19648, "\u2581\u13af\u13ef\u13b5\u13cd\u13aa\u13b8": 19649, "\u13f2\u13b5\u13f3": 19650, "\u13a8\u13af\u13d9\u13b0": 19651, "\u2581\u13f1\u13d7\u13e5\u13ef\u13c5": 19652, "\u13d6\u13b8\u13b2\u13cd": 19653, "\u2581\u13d7\u13c2\u13d3\u13ad": 19654, "\u13c3\u13df\u13cd\u13d4": 19655, "\u13d3\u13ad\u13f2\u13af": 19656, "\u13a6\u13b4\u13f4\u13d3": 19657, "\u2581\u13a4\u13c2\u13c1\u13df\u13f4\u13cd": 19658, "\u2581\u13eb\u13e3\u13a6\u13d4": 19659, "\u13da\u13b8\u13d7\u13c9": 19660, "\u13a6\u13e5\u13ef\u13e0\u13a2\u13cd\u13d3\u13c1": 19661, "\u2581\u13a6\u13e5\u13ef\u13d3\u13d9\u13b5\u13cd": 19662, "\u2581\u13a1\u13d9\u13a2\u13f3": 19663, "\u2581\u13d5\u13e5\u13a7\u13bf\u13e9": 19664, "\u13a6\u13e0\u13ef\u13cd": 19665, "\u13d1\u13b3\u13c1": 19666, "\u2581\u13e5\u13c2\u13d5\u13ac": 19667, "\u13cd\u13a9\u13be\u13a9\u13a2": 19668, "\u13b5\u13cd\u13d4\u13f4": 19669, "\u13e9\u13d7\u13d3\u13cd\u13d7\u13f1": 19670, "\u13d3\u13e9\u13db\u13a1": 19671, "\u2581\u13e7\u13a8\u13f3": 19672, "\u2581\u13e3\u13a9\u13b5\u13f2\u13a2\u13cd\u13d7": 19673, "\u2581\u13a4\u13be\u13c5\u13aa": 19674, "\u13be\u13db\u13a6\u13c1\u13a2": 19675, "\u13aa\u13a5\u13cd\u13a6": 19676, "\u13be\u13d3\u13c5\u13d8": 19677, "\u13b5\u13ec\u13e6": 19678, "\u13d7\u13cd\u13a6\u13e2\u13a2": 19679, "\u13e3\u13a7\u13b2": 19680, "\u13d9\u13d4\u13d8\u13be\u13eb\u13db": 19681, "\u2581\u13a2\u13e3\u13d3\u13c5\u13a1": 19682, "\u13c2\u13a6\u13b5\u13cd\u13d9\u13d7": 19683, "\u2581\u13a4\u13c3\u13af\u13f3": 19684, "\u2581\u13e7\u13be\u13d8\u13c3": 19685, "\u13b5\u13cd\u13d3\u13c1\u13b0": 19686, "\u13ab\u13cf\u13f2": 19687, "\u13c5\u13c6\u13b6\u13cd\u13d7": 19688, "\u2581\u13a4\u13c2\u13cd\u13ab\u13d5": 19689, "\u2581\u13a4\u13c1\u13b7": 19690, "\u13da\u13c5\u13a6\u13b8\u13a1": 19691, "\u13ac\u13d1\u13b6": 19692, "\u13df\u13b6\u13a5\u13a9": 19693, "\u13e5\u13cd\u13a6\u13c5\u13e4\u13b2": 19694, "\u2581\u13da\u13d3\u13c1": 19695, "\u13db\u13d3\u13cd\u13d3\u13c1": 19696, "\u13be\u13d3\u13c1\u13b3\u13c1": 19697, "\u13c4\u13be\u13b5\u13cd\u13d3\u13c1\u13b0": 19698, "\u13f2\u13a2\u13cd\u13d7\u13f1": 19699, "\u2581\u13da\u13d5\u13f2": 19700, "\u2581\u13a6\u13c2\u13cf\u13c5": 19701, "\u13b5\u13cd\u13d4\u13f4\u13c5": 19702, "\u2581\u13e3\u13c1\u13b8\u13d4\u13c5\u13af": 19703, "\u13ab\u13aa\u13d3\u13cf": 19704, "\u13d6\u13b8\u13b2\u13a6": 19705, "\u13d7\u13d0\u13a2\u13c3": 19706, "\u13da\u13eb\u13db": 19707, "\u2581\u13a3\u13a6\u13c2\u13a9": 19708, "\u13a0\u13af\u13ce\u13b8": 19709, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1": 19710, "\u13e0\u13c6": 19711, "\u13a6\u13ea\u13cd\u13d7": 19712, "\u13ab\u13f4\u13af\u13d3\u13cd\u13d7": 19713, "\u13e3\u13ea\u13ce\u13ad": 19714, "\u2581\u13d7\u13ac\u13ec": 19715, "\u2581\u13da\u13d5\u13ef\u13d9\u13d4": 19716, "\u2581\u13a3\u13e3\u13b5\u13e5\u13d9": 19717, "\u2581\u13d5\u13a7\u13c1\u13a2\u13cd": 19718, "\u13d5\u13e6": 19719, "\u13d3\u13a9\u13c5\u13ce\u13a2": 19720, "\u2581\u13f3\u13c2\u13aa": 19721, "\u13d6\u13e5": 19722, "\u13d7\u13a8\u13e5\u13a4\u13cd\u13d5\u13ce\u13b8": 19723, "\u2581\u13a4\u13be\u13a6\u13b8": 19724, "\u2581\u13e3\u13a9\u13c1\u13e4": 19725, "\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd\u13a8\u13cd\u13d7": 19726, "\u2581\u13a4\u13b7\u13e5\u13d7": 19727, "\u13cb\u13c1\u13b8": 19728, "\u13e2\u13be\u13c1\u13b8\u13a9": 19729, "\u13e5\u13cd\u13d5\u13b8\u13ae\u13a2": 19730, "\u13db\u13c2\u13a1": 19731, "\u13f2\u13b1\u13cf": 19732, "\u2581\u13d9\u13d3\u13a8\u13e3": 19733, "\u13d0\u13e2\u13d5\u13cd\u13d7": 19734, "\u13ab\u13f4\u13a1\u13b5": 19735, "\u13e5\u13ec\u13c2\u13ad": 19736, "\u13be\u13c2\u13e2\u13c5": 19737, "\u13e3\u13d3\u13c5\u13db\u13a9": 19738, "\u13c5\u13a6\u13b8\u13b2": 19739, "\u13a9\u13cd\u13c6\u13b5\u13cd": 19740, "\u13ed\u13e2\u13c5": 19741, "\u13d7\u13e3\u13b5\u13d8": 19742, "\u2581\u13c2\u13d1": 19743, "\u13a6\u13db\u13af\u13cd\u13d7": 19744, "\u13d3\u13c2\u13b8\u13e5": 19745, "\u2581\u13a4\u13c2\u13a6\u13d9\u13a5": 19746, "\u13cd\u13a9\u13f4\u13a6": 19747, "\u13d3\u13c5\u13d9\u13a9\u13af": 19748, "\u2581\u13a4\u13a6\u13f4\u13b5": 19749, "\u13c7\u13f2": 19750, "\u13d8\u13be\u13eb\u13db\u13ae\u13a2": 19751, "\u13a7\u13bf\u13c5": 19752, "\u13a4\u13a6\u13ce": 19753, "\u13a9\u13c3\u13ae\u13ae": 19754, "\u2581\u13ad\u13c2\u13a7\u13d4": 19755, "\u13cd\u13da\u13e4": 19756, "\u13a7\u13b2\u13d2": 19757, "\u2581\u13a4\u13be\u13b5\u13cd\u13a6\u13cd": 19758, "\u2581\u13a0\u13f2\u13af\u13cd": 19759, "\u13d3\u13e5\u13ef\u13a7\u13c2": 19760, "\u2581\u13f1\u13da\u13e9\u13db": 19761, "\u2581\u13d7\u13a8\u13e5\u13cd\u13da": 19762, "\u13d3\u13a2\u13c5\u13d7": 19763, "\u13b2\u13cd\u13d7\u13cd\u13a9": 19764, "\u2581\u13a0\u13d3\u13c5\u13d3\u13d7\u13cd": 19765, "\u13a4\u13be\u13d9": 19766, "\u13a2\u13e5\u13d7\u13f1": 19767, "\u13a6\u13d3\u13c5\u13d6\u13cd\u13a8\u13a2": 19768, "\u13be\u13d9\u13b4\u13b0\u13af": 19769, "\u2581\u13a0\u13aa\u13e9\u13d7\u13cd": 19770, "\u13c1\u13ac\u13c1": 19771, "\u13ef\u13db\u13c1\u13ad": 19772, "\u13cd\u13db\u13a6\u13b8": 19773, "\u13f0\u13aa\u13a2": 19774, "\u13cd\u13a6\u13e4": 19775, "\u13a4\u13f0\u13b8": 19776, "\u13d4\u13c2\u13d9": 19777, "\u2581\u13d5\u13a6\u13e0": 19778, "\u2581\u13a1\u13e3\u13db\u13a6\u13c1": 19779, "\u2581\u13a0\u13b5\u13d6\u13b8": 19780, "\u2581\u13a4\u13d5\u13b6\u13b0": 19781, "\u13a9\u13e5\u13cd\u13a8\u13a2": 19782, "\u13a8\u13e5\u13aa\u13b5\u13f0\u13cd\u13a8": 19783, "\u13b5\u13cd\u13aa\u13b8\u13d3\u13c1\u13ad": 19784, "\u2581\u13da\u13cd\u13ab\u13d3": 19785, "\u2581\u13a4\u13b4\u13f4": 19786, "\u13b5\u13a5\u13c2\u13b2": 19787, "\u13ef\u13c5\u13a1\u13b8": 19788, "\u13ec\u13c2\u13d2\u13a2": 19789, "\u2581\u13a4\u13ea\u13ef\u13d4": 19790, "\u2581\u13e7\u13e0\u13af\u13cd": 19791, "\u2581\u13a4\u13c1\u13b5\u13cc": 19792, "\u13f3\u13a8\u13d7": 19793, "\u13be\u13b5\u13ae\u13b5": 19794, "\u2581\u13f4\u13d3\u13f2": 19795, "\u13a7\u13b2\u13be": 19796, "\u2581\u13ef\u13b4\u13eb\u13cd": 19797, "\u2581\u13e7\u13c3\u13af\u13ce": 19798, "\u13a6\u13e2\u13c6": 19799, "\u13cd\u13d3\u13b5\u13aa": 19800, "\u13d5\u13ef\u13d9\u13d4\u13c5": 19801, "\u13e5\u13a6\u13cc\u13a2": 19802, "\u2581\u13a4\u13f2\u13cd\u13d9\u13d3\u13c1": 19803, "\u13a0\u13cd\u13aa\u13b8": 19804, "\u13de\u13cc": 19805, "\u2581\u13eb\u13a6\u13e5\u13b7\u13e4": 19806, "\u13a6\u13c2\u13ad": 19807, "lia": 19808, "\u13b5\u13c2\u13c6\u13c5\u13c5": 19809, "\u2581\u13d5\u13af\u13b6\u13c1": 19810, "\u2581\u13a3\u13a9\u13be\u13da": 19811, "\u13ac\u13e9\u13c2\u13b7\u13e4\u13d7": 19812, "\u2581\u13d5\u13a4\u13d9": 19813, "\u13d7\u13b4\u13b2\u13af": 19814, "\u2581\u13d7\u13a6\u13c3\u13e3": 19815, "\u2581\u13af\u13f2\u13a2\u13f3": 19816, "\u13e5\u13c4\u13ec": 19817, "\u2581\u13a4\u13c2\u13c4\u13aa": 19818, "\u13ac\u13e9\u13f0\u13e3\u13cd": 19819, "\u13ab\u13af\u13cd\u13d7": 19820, "\u2581\u13d7\u13a6\u13b8\u13eb\u13cd\u13d3": 19821, "\u2581\u13e5\u13e8\u13f2\u13ea": 19822, "\u2581\u13a0\u13be\u13d3\u13f4\u13b3": 19823, "\u2581\u13e7\u13f2\u13b1\u13af\u13ce": 19824, "\u13b5\u13cd\u13c6\u13d5\u13b4": 19825, "\u13e0\u13f1\u13b2\u13a2": 19826, "\u13a7\u13bf\u13e9\u13d7\u13d9\u13af": 19827, "\u13df\u13c3\u13ae\u13d9": 19828, "\u2581\u13a4\u13ea\u13bf": 19829, "\u2581\u13a4\u13be\u13c5\u13d3\u13d7": 19830, "\u13e3\u13f1\u13b5": 19831, "\u2581\u13e8\u13d3\u13e5": 19832, "\u13a3\u13e3\u13c2\u13a9": 19833, "\u13f2\u13e4": 19834, "\u13d5\u13e5\u13f0": 19835, "\u13cd\u13d7\u13f4\u13b8": 19836, "\u13d3\u13c5\u13d6\u13b5\u13d9\u13b8": 19837, "\u2581\u13e8\u13d3\u13e3": 19838, "\u13ef\u13b5\u13cd\u13aa\u13a5": 19839, "\u13d3\u13aa\u13c4\u13b6\u13af": 19840, "\u2581\u13c4\u13cd\u13c6\u13b8": 19841, "\u13b5\u13cd\u13d4\u13c1\u13b3": 19842, "\u13ea\u13b5\u13ce\u13d7": 19843, "\u2581\u13a3\u13a6\u13c5\u13d4": 19844, "\u2581\u13e9\u13c7": 19845, "\u13db\u13db\u13ae\u13b8": 19846, "\u13b5\u13ae\u13b5\u13ac": 19847, "\u13a0\u13e5\u13aa\u13c5": 19848, "\u2581\u13a0\u13d3\u13e9\u13db": 19849, "\u13e5\u13aa\u13c1\u13b8": 19850, "\u13c3\u13ae\u13cd\u13a8": 19851, "\u2581\u13e7\u13be\u13db\u13db": 19852, "\u13c4\u13aa\u13eb\u13cd\u13a9": 19853, "\u13a6\u13d0\u13a0\u13cf": 19854, "\u2581\u13a4\u13d3\u13d3\u13cd": 19855, "\u13b3\u13d7\u13d9\u13b4": 19856, "\u13e3\u13b4\u13c2\u13d9\u13b2": 19857, "\u13d3\u13e9\u13db\u13a1\u13b2": 19858, "\u2581\u13d7\u13e3\u13d3\u13d9\u13b5\u13cd": 19859, "\u2581\u13d3\u13cd\u13da": 19860, "\u13d3\u13c2\u13c2\u13cf\u13cd\u13a8": 19861, "\u2581\u13a0\u13df\u13c2\u13ac": 19862, "\u2581\u13c2\u13d5\u13a6\u13ea": 19863, "\u13a9\u13f4\u13c1\u13b8": 19864, "\u13d9\u13b5\u13e3\u13d8\u13f3": 19865, "\u13a8\u13b3\u13d7\u13d9\u13ae": 19866, "\u13a6\u13c3\u13e3\u13b8": 19867, "\u2581\u13f3\u13ec\u13e2": 19868, "\u13b5\u13a1\u13b5\u13e4\u13b0": 19869, "\u2581\u13eb\u13e8\u13f2\u13ea": 19870, "\u2581\u13da\u13c2\u13ef\u13a3": 19871, "\u13d5\u13a7\u13c1\u13e4\u13ae": 19872, "\u2581\u13e6\u13a2\u13a6\u13da": 19873, "\u2581\u13d5\u13ac\u13e9\u13c4": 19874, "\u13c5\u13aa\u13a3": 19875, "\u2581\u13da\u13ea\u13b5\u13ce": 19876, "\u2581\u13da\u13d1\u13f0": 19877, "\u2581\u13da\u13ea\u13df\u13cc": 19878, "\u2581\u13a0\u13c1\u13b7\u13b2\u13cd": 19879, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d4": 19880, "\u13a8\u13eb\u13d2\u13ad": 19881, "\u13be\u13c1\u13b7\u13a9\u13a1\u13b4": 19882, "\u13b8\u13a5\u13cd\u13a8\u13cd\u13d7": 19883, "\u13f0\u13b5\u13af\u13cd\u13d4\u13c5\u13c3": 19884, "\u2581\u13a4\u13be\u13c1\u13b7\u13a9": 19885, "\u13f3\u13d3\u13cd\u13d9\u13d7": 19886, "\u2581\u13eb\u13d7\u13e8": 19887, "\u13a4\u13b7\u13e4\u13b4\u13a2": 19888, "\u2581\u13e7\u13c2\u13b8\u13eb\u13cd": 19889, "\u2581\u13da\u13d3\u13c5\u13a1\u13b8": 19890, "\u2581\u13e7\u13a6\u13bf": 19891, "\u13da\u13c5\u13c2": 19892, "\u13c1\u13d9\u13b4\u13a2": 19893, "\u13aa\u13c6\u13b5": 19894, "\u13f3\u13aa\u13d3\u13c1\u13d7\u13f1": 19895, "\u2581\u13a4\u13b5\u13f0\u13d1\u13cd\u13d9": 19896, "\u13d3\u13f3\u13c5\u13cf\u13db": 19897, "\u13cc\u13b9": 19898, "\u13be\u13e4\u13b5\u13db": 19899, "\u2581\u13da\u13c2\u13df\u13cc": 19900, "\u2581\u13a0\u13aa\u13cd\u13d3": 19901, "\u2581\u13da\u13c2\u13ec": 19902, "\u13b5\u13e0\u13ef\u13cd\u13d9\u13d7": 19903, "\u13be\u13e6\u13a5": 19904, "\u13ea\u13ef\u13d7": 19905, "\u13c2\u13c3\u13ae\u13cd\u13aa": 19906, "\u2581\u13a0\u13d3\u13cd\u13d4\u13f4": 19907, "\u13cd\u13a6\u13cd\u13d9\u13d9": 19908, "\u2581\u13c4\u13c2\u13cd\u13d3": 19909, "\u2581\u13f1\u13c2\u13e3\u13b5\u13cd\u13d3": 19910, "\u2581\u13ec\u13b6": 19911, "\u13d0\u13b2\u13cd\u13d7\u13f1": 19912, "\u2581\u13ac\u13e9\u13aa\u13c1\u13b6\u13af\u13ce": 19913, "\u2581\u13e9\u13c2\u13c1": 19914, "\u13be\u13b5\u13e5\u13d9\u13c2\u13d9\u13b8": 19915, "\u13e3\u13db\u13d3\u13cd\u13d3": 19916, "\u13c6\u13db\u13d3\u13cd\u13d3\u13cf": 19917, "\u13a6\u13ef\u13b7": 19918, "\u13d0\u13e2\u13d4\u13c1\u13a2": 19919, "\u13f0\u13a2\u13b6\u13af\u13cd\u13d7": 19920, "\u13f0\u13b8\u13be\u13c1\u13b4": 19921, "\u2581\u13a0\u13c2\u13a6\u13f2\u13b5": 19922, "\u2581\u13d7\u13ac\u13e9\u13f2\u13af": 19923, "\u2581\u13a0\u13d3\u13cd\u13d5": 19924, "\u2581\u13ac\u13c9\u13af\u13f3": 19925, "\u13a6\u13b7\u13aa\u13a2": 19926, "\u13d6\u13b8\u13c2\u13cd\u13d7": 19927, "\u13a8\u13e3\u13f2\u13ce": 19928, "\u13c2\u13e3\u13d3\u13db\u13c1": 19929, "\u2581\u13a6\u13be\u13f0\u13af\u13cd": 19930, "\u13da\u13ac\u13ad\u13b7\u13f0": 19931, "\u2581\u13a6\u13e5\u13c1\u13a2\u13cd": 19932, "\u13d8\u13d9\u13b5": 19933, "\u13a6\u13ac\u13f2\u13af": 19934, "\u13d7\u13e4\u13f2\u13b2": 19935, "\u2581\u13f1\u13c5\u13a8": 19936, "\u13a1\u13e3\u13d8\u13be\u13eb\u13db": 19937, "\u2581\u13a0\u13a6\u13b5\u13cd\u13aa\u13b8": 19938, "\u2581\u13a0\u13be\u13d3\u13cc": 19939, "\u13b5\u13f2\u13a2\u13cd\u13d7\u13f1": 19940, "\u13d5\u13a6\u13c2\u13f1": 19941, "\u2581\u13a0\u13a6\u13b5\u13ae": 19942, "\u13c6\u13b8\u13d5": 19943, "\u13be\u13b5\u13cd\u13d3\u13f4": 19944, "\u2581\u13a8\u13a6\u13ab\u13f4": 19945, "\u13d5\u13cd\u13a9\u13ef\u13a7": 19946, "\u13e7\u13be\u13d3\u13b4\u13c1": 19947, "\u13c2\u13d0\u13e2\u13d7": 19948, "\u2581\u13d5\u13ac\u13e9\u13be\u13e2": 19949, "\u2581\u13a0\u13d0\u13e2\u13a2\u13cd": 19950, "\u13e5\u13f2\u13af\u13cd\u13d3": 19951, "\u2581\u13eb\u13da\u13be\u13a7\u13bf": 19952, "\u13df\u13f4\u13cd\u13a9": 19953, "\u2581\u13d3\u13c2\u13cd\u13d5": 19954, "\u13f3\u13be\u13c4\u13aa\u13e8": 19955, "\u2581\u13da\u13be\u13d3\u13db\u13db": 19956, "\u2581\u13a7\u13c3\u13a9\u13cd": 19957, "\u13c1\u13a9\u13f4": 19958, "\u13f1\u13b5\u13d2\u13a2": 19959, "\u13e8\u13c1\u13b2": 19960, "\u2581\u13a0\u13b5\u13cf\u13be": 19961, "\u13c3\u13a6\u13db\u13bf\u13d5": 19962, "\u2581\u13a4\u13e9\u13be\u13ec": 19963, "\u2581\u13a2\u13e8\u13a8\u13f3": 19964, "\u2581\u13f3\u13eb\u13d7\u13e3": 19965, "\u13cd\u13d5\u13d3\u13b5\u13f4\u13d3": 19966, "\u2581\u13f1\u13d7\u13ac\u13d5": 19967, "\u13f2\u13b1\u13d2": 19968, "\u2581\u13d5\u13e5\u13c5\u13a6\u13b5\u13cd": 19969, "\u2581\u13da\u13c4\u13aa\u13eb": 19970, "\u13e5\u13b6\u13a2": 19971, "\u2581\u13c4\u13cd\u13da": 19972, "\u13ef\u13e0\u13a2": 19973, "\u2581\u13e5\u13d9\u13d3\u13e8": 19974, "\u13ed\u13c2\u13b7\u13e4": 19975, "\u2581\u13d3\u13c6\u13a7\u13be": 19976, "\u13ec\u13ce\u13b4\u13a2": 19977, "\u13c6\u13c2\u13a9\u13d2": 19978, "\u13be\u13d3\u13ec": 19979, "\u13d5\u13e3\u13b5\u13c2\u13ac": 19980, "\u2581\u13c2\u13d5\u13a9\u13be": 19981, "\u13da\u13ed\u13aa\u13d4\u13c1": 19982, "\u13e8\u13c3\u13c1\u13b8": 19983, "\u13a9\u13b3\u13eb\u13d2": 19984, "\u2581\u13a0\u13be\u13d7\u13d2": 19985, "\u2581\u13a4\u13e9\u13f4": 19986, "\u13a6\u13e9\u13d9\u13a3\u13cd": 19987, "\u13b5\u13c8\u13f1": 19988, "\u2581\u13a4\u13be\u13d3\u13c5\u13a6": 19989, "\u13f0\u13cd\u13aa\u13a2": 19990, "\u13d3\u13d3\u13b4\u13d4\u13c5\u13af": 19991, "\u13e9\u13c5\u13c1\u13d7": 19992, "\u13e3\u13d5\u13f2\u13d7": 19993, "\u13ec\u13f0\u13c2": 19994, "\u2581\u13e5\u13a8\u13a6\u13db\u13c5\u13a2\u13cd": 19995, "\u13b5\u13cd\u13d4\u13f4\u13d7": 19996, "\u13c4\u13c5\u13c1\u13b4": 19997, "\u2581\u13f1\u13da\u13be\u13c4": 19998, "\u13cd\u13c6\u13c2\u13a9": 19999, "\u13a4\u13db\u13c1": 20000, "\u13d3\u13ac\u13cd\u13aa\u13b8\u13d7": 20001, "\u2581\u13d3\u13df\u13b6": 20002, "\u13af\u13f3\u13aa\u13d3\u13c1\u13ad": 20003, "\u13be\u13a6\u13b8\u13b2": 20004, "\u13cd\u13c6\u13d7\u13cd\u13ac": 20005, "\u13e5\u13ac\u13cd\u13aa\u13b8\u13a5\u13cd\u13a8\u13cd\u13d7": 20006, "\u2581\u13a4\u13be\u13d5\u13b6\u13b0": 20007, "\u2581\u13a4\u13c2\u13b5\u13f0\u13d7\u13cd": 20008, "\u2581\u13da\u13c2\u13d4\u13b3": 20009, "\u2581\u13c4\u13b5\u13cd\u13d4": 20010, "\u2581\u13da\u13c3\u13e3\u13dd": 20011, "\u2581\u13a0\u13a9\u13cd\u13d3\u13e9": 20012, "\u2581\u13a0\u13cb\u13d5": 20013, "\u13f4\u13a6\u13e5": 20014, "\u13d7\u13a8\u13a6\u13e8\u13cd\u13d4": 20015, "\u13cd\u13a9\u13ef\u13d3\u13c2\u13b8\u13e8": 20016, "\u13d3\u13c1\u13b8\u13a5\u13cd\u13ac": 20017, "\u13ac\u13c1\u13ae": 20018, "\u13af\u13f3\u13ad\u13e7": 20019, "\u13ec\u13b3\u13d5\u13cd\u13ac": 20020, "\u2581\u13a0\u13e5\u13b5\u13a5": 20021, "\u13da\u13eb\u13cd\u13d4\u13c1\u13a2": 20022, "\u13df\u13c3\u13ae\u13d4": 20023, "\u13f4\u13d5\u13e5": 20024, "\u13d7\u13e8\u13c1": 20025, "\u13a6\u13be\u13cd\u13d3": 20026, "\u13d7\u13a6\u13a7\u13af\u13ef\u13cd": 20027, "\u2581\u13d5\u13ad\u13d3\u13c5": 20028, "\u13a9\u13a6\u13a8\u13a2": 20029, "\u2581\u13cf\u13f4\u13eb": 20030, "\u2581\u13e7\u13db\u13a6\u13c1": 20031, "\u2581\u13c2\u13e5\u13cd\u13a6": 20032, "\u2581\u13a4\u13c2\u13c3\u13ae": 20033, "\u13f2\u13a2\u13cd\u13d7\u13cd\u13ac\u13be": 20034, "\u13c4\u13e2": 20035, "\u13e3\u13b5\u13ae\u13b5\u13cd\u13d7": 20036, "\u13d3\u13a8\u13e8\u13c1\u13b5": 20037, "\u13d3\u13f4\u13b3\u13d8": 20038, "\u13ac\u13c3\u13af\u13ce": 20039, "\u13be\u13b5\u13cd\u13d4\u13c5\u13a2": 20040, "\u13dc\u13c5\u13d3": 20041, "\u13a9\u13c2\u13ac\u13ce\u13b2": 20042, "\u2581\u13a0\u13b5\u13cc\u13b3\u13d7\u13cd": 20043, "\u2581\u13a4\u13d4\u13b7": 20044, "\u13f0\u13a2\u13b6\u13a6": 20045, "\u13d8\u13b8\u13cd\u13d7": 20046, "\u13be\u13a6\u13d9\u13cd\u13d4\u13c1": 20047, "\u2581\u13d7\u13a6\u13c1\u13df": 20048, "\u2581\u13a4\u13e9\u13c7": 20049, "\u13be\u13d9\u13b4\u13b0": 20050, "\u13d5\u13b0\u13af\u13cd": 20051, "\u2581\u13eb\u13a4\u13be": 20052, "\u2581\u13a4\u13d7\u13d4": 20053, "\u2581\u13e7\u13ef\u13db": 20054, "\u13ac\u13e9\u13ea\u13ce": 20055, "\u13c3\u13cd\u13a9\u13d2": 20056, "\u13d6\u13b8\u13c5\u13af": 20057, "\u2581\u13ed\u13d3\u13be\u13eb\u13db": 20058, "\u13a7\u13bf\u13e9\u13db": 20059, "\u13e3\u13cd\u13c6\u13c2\u13aa": 20060, "\u13d3\u13b5\u13d7\u13a9": 20061, "\u13d7\u13e9\u13be\u13a6\u13b3": 20062, "\u13f0\u13eb": 20063, "\u2581\u13be\u13be\u13d3\u13db": 20064, "\u13e5\u13f3\u13aa\u13d3\u13c1\u13ad": 20065, "\u13e3\u13d9\u13b4\u13b0\u13cd\u13ac": 20066, "\u13d2\u13cd\u13d4\u13c1": 20067, "\u13e7\u13b5\u13cd\u13d9\u13d4\u13c5": 20068, "\u13ac\u13ed\u13aa\u13d3\u13c1": 20069, "\u13b5\u13e3\u13db\u13be": 20070, "\u13d3\u13a6\u13b4\u13c5": 20071, "\u13a6\u13d6\u13c5": 20072, "\u2581\u13a4\u13ea\u13d4": 20073, "\u2581\u13da\u13e9\u13e5\u13cd": 20074, "\u2581\u13a4\u13c5\u13aa\u13b3": 20075, "\u13e5\u13a9\u13b5\u13f2\u13a6": 20076, "\u2581\u13e7\u13e3\u13b7": 20077, "\u13ef\u13a7\u13c1": 20078, "\u2581\u13f1\u13da\u13ec\u13d5": 20079, "\u13cd\u13d3\u13f4\u13c5\u13a9": 20080, "\u13e4\u13a6\u13c8": 20081, "\u13cd\u13a9\u13ef\u13d1\u13f0": 20082, "\u13da\u13b8\u13eb\u13cd\u13d3\u13c1": 20083, "\u13be\u13cd\u13d7\u13cd\u13ac\u13a9": 20084, "\u13d5\u13ac\u13e9\u13c2\u13be\u13dd": 20085, "\u2581\u13a4\u13d3\u13ac\u13e9\u13d3\u13b4": 20086, "\u13db\u13ae\u13cf": 20087, "\u2581\u13a4\u13d9\u13ef\u13c5\u13af": 20088, "\u13a4\u13c1\u13c5": 20089, "\u13a6\u13e5\u13c4\u13aa\u13eb\u13d2": 20090, "\u13ef\u13cf\u13d4": 20091, "\u13e5\u13d9\u13b0": 20092, "\u2581\u13eb\u13db\u13c2": 20093, "\u13a1\u13dd\u13ea": 20094, "\u2581\u13e5\u13ef\u13b5\u13a1\u13b5": 20095, "\u2581\u13a8\u13a6\u13c5\u13d3": 20096, "\u13cd\u13d9\u13f0\u13b2": 20097, "\u13d2\u13a6\u13b3\u13d7\u13cd\u13d4": 20098, "\u2581\u13d3\u13f3\u13c2\u13f0": 20099, "\u13a4\u13c2\u13b6\u13ce\u13a2": 20100, "\u2581\u13da\u13c4\u13e9": 20101, "\u2581\u13ed\u13c5\u13e5": 20102, "\u13d2\u13c2\u13cd\u13d9": 20103, "\u2581\u13a0\u13c6\u13b5\u13cd\u13d5": 20104, "\u13a7\u13bf\u13e9\u13d7\u13d9": 20105, "\u13a6\u13db\u13b4\u13cf": 20106, "\u13c4\u13be\u13cd\u13d7": 20107, "\u13e5\u13b8\u13cc\u13d3\u13d5": 20108, "\u2581\u13f3\u13eb\u13e3": 20109, "\u2581\u13c5\u13c6\u13d3\u13b4": 20110, "\u2581\u13c2\u13e5\u13ea\u13d2": 20111, "\u2581\u13d3\u13be\u13b3\u13cd": 20112, "\u13d3\u13f0\u13ae": 20113, "\u13e7\u13a6\u13e3": 20114, "\u13d4\u13eb\u13a2\u13cd\u13d7\u13f1": 20115, "\u13c2\u13cd\u13c6\u13db\u13c1\u13b8": 20116, "\u2581\u13a6\u13c3\u13af\u13b5": 20117, "\u13e5\u13a5\u13a1\u13b8": 20118, "\u13b8\u13c9\u13d4\u13c1": 20119, "\u2581\u13e7\u13d5\u13d8\u13f4\u13cc": 20120, "\u13c2\u13a6\u13d9\u13b5\u13c3": 20121, "\u13a4\u13ea\u13c5\u13c3": 20122, "\u13d9\u13ef\u13c5\u13af\u13d5": 20123, "\u13e7\u13d3\u13c5\u13ce": 20124, "\u2581\u13da\u13be\u13d8\u13c5": 20125, "\u13a4\u13b6\u13d2\u13a9": 20126, "\u13c2\u13cd\u13cb\u13c1\u13b8": 20127, "\u13d3\u13c2\u13d9\u13ac\u13a9": 20128, "\u13a4\u13be\u13d3\u13c8\u13ac": 20129, "\u13d5\u13e8\u13ef\u13e0\u13a2\u13cd\u13d3\u13c1": 20130, "\u13a4\u13b5\u13cd\u13db\u13c2\u13b4\u13a2": 20131, "\u13a4\u13bf\u13cd\u13ac\u13e4": 20132, "\u13ad\u13b4\u13eb\u13cd\u13d3": 20133, "\u13d9\u13d3\u13ac\u13e9\u13c2\u13be\u13e2\u13c2": 20134, "\u13ee\u13d3\u13e8\u13b7\u13e4\u13b5": 20135, "\u13c2\u13ac\u13e9\u13c5\u13bf\u13d5\u13ac": 20136, "\u13c2\u13ac\u13e9\u13db\u13c1\u13b4\u13a2": 20137, "\u13d7\u13e3\u13b8\u13eb\u13cd\u13d3\u13cf": 20138, "\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13cf": 20139, "\u13a6\u13b5\u13e5\u13d9\u13c5": 20140, "\u13ad\u13d3\u13c4\u13d6\u13ef": 20141, "\u13af\u13c4\u13f4\u13d3": 20142, "\u13a6\u13be\u13b1\u13a9\u13cd\u13ac": 20143, "\u2581\u13a0\u13c2\u13d4\u13f2\u13af": 20144, "\u13d5\u13a4\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 20145, "\u13e7\u13d3\u13c6": 20146, "\u13c2\u13a6\u13e5\u13ea\u13ce\u13b8\u13a9": 20147, "\u13a4\u13e5\u13b8\u13ce\u13cd\u13d7": 20148, "\u13d7\u13a8\u13c5\u13d2": 20149, "\u13a9\u13ef\u13d2\u13a6\u13b6\u13d7": 20150, "\u13da\u13c2\u13f4\u13cd\u13d5": 20151, "\u13da\u13be\u13a6\u13b4\u13c5": 20152, "\u13e9\u13cd\u13d5\u13cd\u13d7": 20153, "\u2581\u13a0\u13c2\u13aa\u13e9": 20154, "\u13d3\u13a6\u13b5\u13ec\u13e5": 20155, "\u13c2\u13a6\u13b5\u13cd\u13d7\u13ad": 20156, "\u13e5\u13ef\u13c5\u13d4\u13c5": 20157, "\u13e5\u13c6\u13b5\u13cf": 20158, "\u13db\u13d0\u13c5\u13af": 20159, "\u13d3\u13aa\u13ea\u13b3\u13c2": 20160, "\u13d3\u13cd\u13da\u13b2\u13a2": 20161, "\u13d1\u13b5\u13aa\u13e8": 20162, "\u13d3\u13c5\u13d6\u13a2": 20163, "\u13c4\u13e9\u13c1\u13b0": 20164, "\u13db\u13c2\u13cd\u13d7\u13cd\u13a9": 20165, "\u2581\u13da\u13c2\u13b8\u13eb\u13cd\u13d3": 20166, "\u13d5\u13a6\u13c5\u13cc": 20167, "\u13e4\u13b3\u13cd\u13d4\u13c2": 20168, "\u13cd\u13cb\u13c2": 20169, "\u13af\u13f1\u13b5\u13d9": 20170, "\u13a6\u13d3\u13c5\u13d6\u13cd\u13aa": 20171, "\u2581\u13a4\u13d7\u13b4": 20172, "\u13ba\u13cc\u13ef": 20173, "\u13a3\u13e5\u13c1\u13a6": 20174, "\u13d5\u13aa\u13e2\u13d2\u13a9": 20175, "\u13da\u13df\u13b6\u13cd\u13d3\u13c1\u13b4\u13a2": 20176, "\u13e5\u13c4\u13cd\u13d9": 20177, "\u13a4\u13be\u13c1\u13b3\u13d7\u13cd\u13d7\u13f1": 20178, "\u13c5\u13d3\u13a6\u13db\u13c1\u13b5": 20179, "\u13c5\u13db\u13be\u13b5\u13cd\u13d4\u13c2": 20180, "\u13d3\u13f0\u13e5\u13c1\u13b5": 20181, "\u13e8\u13d7\u13a6\u13da\u13ad": 20182, "\u13ed\u13d9\u13af\u13f3\u13b2": 20183, "\u13a0\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13ac": 20184, "\u13a0\u13bb\u13b3\u13bb": 20185, "\u13a0\u13c2\u13a6\u13d4\u13ae": 20186, "\u2581\u13da\u13c2\u13f4\u13cd": 20187, "\u13f1\u13e5\u13c1\u13a6": 20188, "\u13a0\u13a9\u13b5\u13d3\u13cd": 20189, "\u13a0\u13c1\u13d9\u13ae\u13a2": 20190, "\u13a0\u13d3\u13c5\u13d6\u13cd\u13a8\u13a2": 20191, "\u13a4\u13e5\u13ef": 20192, "\u13a6\u13c4\u13b8": 20193, "\u13b5\u13cd\u13d9\u13d4\u13c2": 20194, "\u2581\u13a0\u13b1\u13e2": 20195, "\u2581\u13a2\u13e3\u13b5\u13cd\u13d5": 20196, "\u13ed\u13d3\u13b4\u13ce": 20197, "\u13a4\u13cd\u13d7\u13a9\u13a8": 20198, "\u13be\u13c2\u13ea\u13ad": 20199, "\u13e9\u13a9\u13b6\u13d2\u13a9": 20200, "\u13cd\u13a6\u13c5\u13e4\u13b2": 20201, "\u13cd\u13d7\u13a6\u13d4\u13ae": 20202, "\u13e3\u13b5\u13c2\u13a9": 20203, "\u13e9\u13ea\u13ce\u13b8\u13a9": 20204, "\u2581\u13d9\u13d7\u13a7\u13c5": 20205, "\u13cd\u13a9\u13cd\u13d5\u13b3": 20206, "\u13a4\u13b5\u13f0": 20207, "\u13f0\u13d7\u13e9\u13db": 20208, "\u13d3\u13c3\u13ce\u13b0": 20209, "\u13e5\u13a8\u13ad": 20210, "\u13d3\u13d5\u13f2\u13b2\u13cd\u13a8": 20211, "\u13d3\u13c2\u13a7\u13bf\u13e9\u13d7": 20212, "\u13da\u13be\u13df\u13f4": 20213, "\u13ba\u13cc": 20214, "\u2581\u13a5\u13a9\u13b1\u13cd\u13d5": 20215, "\u13a7\u13be\u13b7": 20216, "\u13a0\u13b5\u13ae\u13b5\u13a9": 20217, "\u13e7\u13be\u13b5\u13cd\u13d3\u13f4\u13d7\u13f1": 20218, "\u13ed\u13e9\u13c5\u13d3\u13d5": 20219, "\u13a3\u13a6\u13e3\u13c5": 20220, "\u13a4\u13d3\u13c5\u13a6\u13b8\u13d3": 20221, "\u13a5\u13a6\u13e5\u13aa\u13a5\u13a9": 20222, "\u13a0\u13c3\u13cd\u13d3": 20223, "\u13d2\u13a6\u13be\u13f2\u13aa": 20224, "\u13a0\u13db\u13a9\u13cd\u13a8": 20225, "\u13d5\u13ad\u13b7\u13a8": 20226, "\u13a4\u13f4\u13b8": 20227, "\u13c2\u13ac\u13e9\u13c2\u13ea\u13ce": 20228, "\u13d3\u13a9\u13ef\u13ea\u13ac": 20229, "\u13c3\u13a6\u13db\u13c1\u13b8": 20230, "\u13a9\u13c2\u13cc\u13c5\u13a9": 20231, "\u2581\u13e3\u13be\u13db\u13a9": 20232, "\u13c2\u13d5\u13b2\u13c1": 20233, "\u13af\u13b4\u13f4\u13cd": 20234, "\u13c4\u13ea\u13a1\u13a2": 20235, "\u13a0\u13d3\u13f2\u13c1": 20236, "\u13ce\u13b5\u13d3\u13c1\u13b4": 20237, "\u2581\u13d5\u13e8\u13ef\u13e0\u13a2\u13cd": 20238, "\u13a8\u13aa\u13ce": 20239, "\u13a4\u13be\u13d9\u13b4\u13b0\u13af\u13cd\u13d7\u13f1": 20240, "\u13ac\u13e9\u13aa\u13ae\u13a2": 20241, "\u13c2\u13da\u13c2\u13ea\u13ce\u13b4\u13a2": 20242, "\u13eb\u13a8\u13e5\u13ef\u13c5\u13db": 20243, "\u13d3\u13aa\u13c4\u13b8": 20244, "\u13a1\u13da\u13e5": 20245, "\u2581\u13ed\u13d7\u13e2\u13cd\u13d4\u13c1": 20246, "\u2581\u13a0\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13aa": 20247, "\u2581\u13a4\u13b5\u13ef\u13cd\u13da\u13c1": 20248, "\u2581\u13e7\u13d7\u13b4": 20249, "\u2581\u13d5\u13e3\u13c1\u13b6\u13db": 20250, "\u13d3\u13e6\u13af\u13cd\u13db": 20251, "\u2581\u13a4\u13c2\u13cd\u13c6\u13c2\u13aa\u13cd\u13a8": 20252, "\u13d3\u13c2\u13be\u13cf\u13c2": 20253, "\u13d3\u13b4\u13c2\u13cd\u13a8": 20254, "\u13da\u13aa\u13d3\u13c1\u13af": 20255, "\u2581\u13e7\u13c2\u13b6\u13ce": 20256, "\u2581\u13cd\u13d4\u13f2": 20257, "\u2581\u13eb\u13ac\u13e9\u13d8\u13c5": 20258, "\u2581\u13a1\u13e6\u13ce\u13b2": 20259, "\u13cd\u13a9\u13f2\u13ae\u13b8\u13ad": 20260, "\u2581\u13da\u13ea\u13b3\u13cd\u13d4\u13c1": 20261, "\u2581\u13a0\u13c2\u13cd\u13a6\u13c5": 20262, "\u13c2\u13e5\u13ea\u13cd\u13ac": 20263, "\u13a4\u13b5\u13e8\u13d3\u13c6\u13d3": 20264, "\u13d7\u13a8\u13ab\u13aa\u13d3\u13c1\u13d7": 20265, "\u13c4\u13e9\u13a5": 20266, "\u13ed\u13b7\u13e4\u13b4": 20267, "\u13a4\u13f2\u13b1\u13ce\u13ae\u13cd\u13d7": 20268, "\u2581\u13f3\u13be\u13db\u13a6": 20269, "\u13a2\u13ef\u13d3\u13c5\u13d6\u13d7": 20270, "\u2581\u13da\u13c2\u13ef\u13d9": 20271, "\u13a0\u13c2\u13a6\u13f2\u13df": 20272, "\u13cd\u13c8\u13cd\u13d4": 20273, "\u13a4\u13d2\u13c2\u13b4\u13a2": 20274, "\u13a6\u13b6\u13d0\u13b2\u13cd": 20275, "\u13a0\u13a6\u13d4\u13ae": 20276, "\u2581\u13e7\u13eb\u13ce": 20277, "\u13da\u13e6\u13af\u13cd\u13db": 20278, "\u13da\u13ed\u13aa\u13d4\u13c5": 20279, "\u13a4\u13be\u13db\u13c1\u13b8\u13d7": 20280, "\u2581\u13a0\u13be\u13d3\u13c1\u13df\u13f4\u13ce\u13ac": 20281, "\u13ef\u13d6\u13be": 20282, "\u13e5\u13d9\u13c1": 20283, "\u13a7\u13c3\u13c1": 20284, "\u13a2\u13e7\u13d5\u13d8\u13f4\u13db": 20285, "\u13a5\u13e5\u13aa\u13a5\u13a9": 20286, "\u13a4\u13c2\u13b7\u13e8": 20287, "\u13a3\u13a6\u13db\u13a6\u13c5": 20288, "\u13a3\u13a9\u13f4": 20289, "\u13f2\u13b1\u13ce\u13b8": 20290, "\u13a4\u13a9\u13e8\u13c5": 20291, "\u13d7\u13e3\u13d8\u13c4\u13a6": 20292, "\u13a4\u13ec\u13ce\u13b4\u13a2": 20293, "\u2581\u13d5\u13a8\u13e5\u13be\u13dd\u13a5": 20294, "\u2581\u13d3\u13c6\u13d5": 20295, "\u13a0\u13b9\u13b4\u13a9": 20296, "\u13c0": 20297, "\u13a0\u13c6\u13d3\u13c5\u13d9\u13a9": 20298, "\u13d7\u13e3\u13a7\u13c5\u13a6": 20299, "\u13a8\u13e5\u13c5\u13d2\u13af": 20300, "\u13a8\u13e5\u13c5": 20301, "\u13a0\u13c2\u13a9\u13cf\u13d9\u13af": 20302, "\u13e6\u13de": 20303, "\u2581\u13a5\u13c6\u13b8\u13a5": 20304, "\u13a1\u13d8\u13f4": 20305, "\u13a6\u13f0\u13cc\u13d7": 20306, "\u13a2\u13e5\u13ef\u13eb\u13cd\u13a8\u13cd\u13d7": 20307, "\u13a4\u13be\u13d9\u13b4\u13b0\u13d2": 20308, "\u2581\u13a4\u13cd\u13aa\u13c2\u13b4": 20309, "\u13a8\u13e5\u13d9\u13b5\u13cd\u13d7": 20310, "\u13a0\u13c2\u13a8\u13be\u13c2": 20311, "\u13d5\u13b9\u13cd\u13a6": 20312, "\u13d5\u13a8\u13cc\u13d7\u13d2": 20313, "\u13a9\u13be\u13b5\u13a2": 20314, "\u13a0\u13eb\u13c4\u13e3": 20315, "\u13e7\u13cd\u13c6\u13c5\u13be": 20316, "\u13a8\u13e5\u13b5\u13a5\u13c2": 20317, "\u13e7\u13be\u13a9\u13b8\u13d7": 20318, "\u13d7\u13cd\u13d3\u13d3\u13c5\u13df": 20319, "\u13a6\u13c1\u13cc\u13a2": 20320, "\u13cc\u13aa\u13c2\u13a8": 20321, "\u13a4\u13eb\u13ef": 20322, "\u13d3\u13d3\u13bf\u13e9\u13cd\u13db": 20323, "\u13e3\u13d3\u13c5\u13d9": 20324, "\u13a4\u13cd\u13c6\u13b8\u13b2": 20325, "\u13a0\u13c6\u13db\u13a6\u13c5\u13a9": 20326, "\u13d3\u13ac\u13d4\u13c2": 20327, "\u13e7\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7\u13f1": 20328, "\u13a0\u13c8\u13bb\u13b4\u13a9": 20329, "\u13a4\u13a6\u13ce\u13c2": 20330, "\u13be\u13d3\u13a2\u13c5\u13ce": 20331, "\u13c4\u13b5\u13cd\u13d4\u13c2\u13d9\u13b8": 20332, "\u13d3\u13c6\u13b4\u13b7": 20333, "\u13a4\u13ea\u13c5\u13a9": 20334, "\u13c2\u13da\u13ea\u13ce\u13b4": 20335, "\u13c5\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13ac": 20336, "\u2581\u13a8\u13e5\u13db\u13d4\u13c1": 20337, "\u13ad\u13ef\u13db": 20338, "\u13a2\u13ef\u13db\u13c1\u13af": 20339, "\u13a4\u13a6\u13b5\u13cd\u13d7": 20340, "\u13a4\u13be\u13e4\u13b5\u13aa\u13af": 20341, "\u13a6\u13d3\u13b7\u13aa\u13d7": 20342, "\u13a0\u13d9\u13b4\u13b0\u13cd\u13a9": 20343, "\u13c4\u13be\u13cd\u13db": 20344, "\u13a0\u13c2\u13f4\u13eb\u13ef": 20345, "\u13a0\u13d5\u13b3": 20346, "\u13a4\u13c2\u13c3\u13d5\u13be": 20347, "\u13c5\u13e9\u13d3\u13b4": 20348, "\u2581\u13c5\u13e7\u13ea\u13ce": 20349, "\u13a4\u13be\u13e4\u13b5\u13a6": 20350, "\u13a4\u13d3\u13d9\u13b5\u13cd\u13d7": 20351, "\u2581\u13a0\u13c6\u13db\u13c5\u13a2\u13cd\u13d4": 20352, "\u13a2\u13ef\u13c2\u13db": 20353, "\u13ce\u13ae\u13b2": 20354, "\u13e7\u13be\u13d3\u13b4\u13c5\u13db": 20355, "\u2581\u13d5\u13ac\u13e9\u13d8\u13c3\u13ae\u13b4": 20356, "\u2581\u13eb\u13a4\u13c2\u13b6\u13ce": 20357, "\u2581\u13e7\u13c1\u13e2\u13d4\u13c5\u13d2": 20358, "\u13e7\u13ac\u13e9": 20359, "\u2581\u13d3\u13aa\u13c4\u13b4": 20360, "\u13a2\u13e3\u13b5\u13cd\u13d3\u13c1\u13d7": 20361, "\u2581\u13a4\u13be\u13d3\u13c1\u13df\u13f4\u13d2\u13d2": 20362, "\u2581\u13da\u13c5\u13e9\u13c1": 20363, "\u13a4\u13c2\u13a9\u13ce": 20364, "\u13a4\u13f2\u13b1\u13ce\u13a2": 20365, "\u13d7\u13c7\u13e5": 20366, "\u2581\u13a4\u13d3\u13c5\u13d4\u13d5": 20367, "\u13d5\u13e1\u13ac\u13a2": 20368, "\u13c5\u13d3\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13ac\u13a9": 20369, "\u13a7\u13c5\u13c2\u13cd\u13a9": 20370, "\u13a0\u13c6\u13d3\u13c5\u13d6\u13d7": 20371, "\u13c2\u13e8\u13ea\u13ce\u13ad": 20372, "\u2581\u13d3\u13d0\u13f4": 20373, "\u13a6\u13f4\u13af\u13d3": 20374, "\u13d7\u13a6\u13b8\u13eb\u13cd\u13d3\u13c1\u13d7": 20375, "\u13cd\u13da\u13b6": 20376, "\u2581\u13a1\u13e4\u13f2\u13c5": 20377, "\u13d7\u13ef\u13e0": 20378, "\u13a0\u13c2\u13cd\u13a6\u13ef": 20379, "\u13d3\u13a9\u13b3\u13a9": 20380, "\u13a4\u13a6\u13be\u13cd\u13d3": 20381, "\u13a4\u13e9\u13d9\u13af\u13f4\u13d3": 20382, "\u2581\u13a4\u13b4\u13f4\u13ce": 20383, "\u13a9\u13b3\u13c8\u13f4": 20384, "\u13a4\u13c3\u13d5\u13be": 20385, "\u13bf\u13db\u13c1\u13b2": 20386, "\u2581\u13a2\u13ac\u13e9\u13c2\u13c6": 20387, "\u13a4\u13c1\u13e2\u13d4\u13c5\u13af": 20388, "\u13c5\u13db\u13a9\u13c5\u13cf\u13db": 20389, "\u13a8\u13e5\u13cd\u13da\u13ae": 20390, "\u13a2\u13e3\u13db\u13c1\u13d7\u13f1": 20391, "\u2581\u13da\u13ea\u13e3\u13a6\u13b8\u13ae": 20392, "\u13d3\u13f3\u13d3\u13b4\u13c5\u13d3": 20393, "\u13c5\u13db\u13db\u13c1\u13b5": 20394, "\u13a6\u13c6\u13d8": 20395, "\u2581\u13d3\u13be\u13b5\u13cd\u13d3\u13f4\u13b2\u13cd\u13a8": 20396, "\u13a0\u13c2\u13e7\u13cf": 20397, "\u2581\u13a6\u13f3\u13e9": 20398, "\u13f0\u13b6\u13a2\u13cd": 20399, "\u13d7\u13c5\u13c3\u13db": 20400, "\u13a2\u13f3\u13b5\u13cd\u13d4\u13c5\u13af": 20401, "\u13a4\u13be\u13c2\u13a9\u13d2": 20402, "\u13a0\u13a9\u13c5\u13cf\u13d9\u13af": 20403, "\u2581\u13a4\u13ea\u13d9\u13b5\u13e4": 20404, "\u2581\u13eb\u13a4\u13b6\u13ce": 20405, "\u13d3\u13aa\u13c4\u13b6": 20406, "\u13d9\u13f1\u13d7\u13e2": 20407, "\u2581\u13a4\u13cd\u13a9\u13d3\u13ce": 20408, "\u2581\u13d3\u13a9\u13b8\u13eb\u13cd\u13d3": 20409, "\u2581\u13ed\u13d8\u13c5\u13cd\u13d4\u13c1": 20410, "\u13a4\u13b5\u13ae\u13b5\u13e4": 20411, "\u13d7\u13aa\u13ea\u13b3\u13c5": 20412, "\u13a4\u13a6\u13d4": 20413, "\u13a0\u13c2\u13a6\u13d8\u13ef": 20414, "\u13a2\u13f3\u13c5\u13c1\u13d7\u13f1": 20415, "\u2581\u13d7\u13a7\u13be\u13e9": 20416, "\u2581\u13f1\u13a6\u13d3\u13c5": 20417, "\u13a4\u13f0\u13b8\u13db\u13a2": 20418, "\u2581\u13d3\u13cd\u13da\u13b2": 20419, "\u13a4\u13b5\u13cd\u13d5\u13b8": 20420, "\u2581\u13e3\u13c3\u13ce\u13b0": 20421, "\u13a4\u13b7\u13af\u13cd\u13d7\u13f1": 20422, "\u13a2\u13f3\u13b5\u13cd\u13d9\u13d7\u13f1": 20423, "\u13a6\u13d2\u13cd\u13d9\u13a2": 20424, "\u2581\u13ac\u13f4\u13d7\u13cd\u13ac": 20425, "\u2581\u13a3\u13a6\u13da\u13b5": 20426, "\u13a6\u13d5\u13f2\u13c5": 20427, "\u13e7\u13c2\u13e2\u13a9": 20428, "\u2581\u13c2\u13d3\u13cb": 20429, "\u2581\u13da\u13b5\u13cd\u13da\u13a2\u13ce": 20430, "\u2581\u13da\u13d8\u13c3\u13ae\u13b4": 20431, "\u2581\u13da\u13c3\u13ea\u13b8": 20432, "\u2581\u13da\u13da\u13d3\u13db": 20433, "\u13a0\u13f2\u13b1\u13d2": 20434, "\u13e7\u13be\u13c1\u13b6\u13d7": 20435, "\u13aa\u13af\u13f3\u13b2\u13cd\u13a9": 20436, "\u13e5\u13dd\u13c1": 20437, "\u13a4\u13b5\u13cf\u13a9": 20438, "\u2581\u13c2\u13e3\u13db\u13bf\u13d5\u13ac": 20439, "\u13e6\u13d4\u13c5": 20440, "\u2581\u13a4\u13c2\u13d0\u13c5\u13e4\u13b4": 20441, "\u13a2\u13aa\u13af\u13db": 20442, "\u13c4\u13e6": 20443, "\u2581\u13a2\u13e3\u13d3\u13c1\u13df\u13f4\u13ce\u13ac": 20444, "\u13b5\u13ac\u13ad\u13b7": 20445, "\u2581\u13d9\u13d7\u13e3\u13d3\u13c5\u13db": 20446, "\u13ac\u13cd\u13d3\u13e9\u13db\u13cd\u13d7": 20447, "\u2581\u13a4\u13be\u13c1\u13e2\u13d4\u13c5\u13d2": 20448, "\u13e5\u13b7\u13cf\u13b5\u13bb": 20449, "\u13a4\u13c1\u13c5\u13cd\u13d7": 20450, "\u13a4\u13c2\u13f4\u13ce": 20451, "\u13a4\u13da\u13b8\u13d7": 20452, "\u13ea\u13b3\u13cf": 20453, "\u13d7\u13a8\u13eb": 20454, "\u2581\u13ed\u13a9\u13b6\u13eb": 20455, "\u13e9\u13d8\u13cd\u13a8": 20456, "\u2581\u13c2\u13da\u13be\u13d3\u13ea\u13ce\u13b4": 20457, "\u13b4\u13eb\u13cd\u13d9": 20458, "\u2581\u13a0\u13a6\u13ec\u13a1": 20459, "\u13a0\u13c2\u13aa\u13e9\u13d8\u13cd\u13ac": 20460, "\u13da\u13c2\u13c2\u13c6\u13d8": 20461, "\u13f1\u13c2\u13ea\u13cd\u13a8\u13cd\u13d7": 20462, "\u13ac\u13e9\u13a6\u13d8\u13ef": 20463, "\u13a4\u13b3\u13cf\u13d5\u13c2": 20464, "\u13af\u13cd\u13d3\u13c1\u13b2": 20465, "\u2581\u13c2\u13a6\u13ea\u13cd\u13a8": 20466, "\u13a6\u13c2\u13a6\u13d4": 20467, "\u13e7\u13be\u13b5\u13c2\u13a9\u13db": 20468, "\u13cd\u13d3\u13e9\u13d5\u13aa": 20469, "\u13a0\u13c6\u13b5\u13cf": 20470, "\u13be\u13d3\u13c1\u13df\u13f4\u13cf\u13d2": 20471, "\u2581\u13d5\u13a6\u13be\u13c4\u13aa\u13eb": 20472, "\u13a6\u13c4\u13b8\u13d2": 20473, "\u13d7\u13d5\u13f2\u13d7": 20474, "\u13af\u13f4\u13ce": 20475, "\u13c2\u13ec\u13c2\u13cd\u13a8\u13cd\u13d7": 20476, "\u13a4\u13df\u13cd\u13d3": 20477, "\u13c3\u13e5\u13a5": 20478, "\u13a4\u13aa\u13e9\u13db\u13d7\u13f1": 20479, "\u13d7\u13e4\u13c5\u13d2": 20480, "\u13a7\u13c3\u13ae\u13cd\u13a9": 20481, "\u13e5\u13a7\u13cd\u13a8\u13c2": 20482, "\u13a0\u13b9\u13f0\u13b5": 20483, "\u13da\u13e0\u13f1\u13b4\u13a2": 20484, "\u13b8\u13eb\u13cd\u13d3\u13c1\u13b2": 20485, "\u13e6\u13a3\u13ce": 20486, "\u13a4\u13be\u13d3\u13e1\u13ac": 20487, "\u2581\u13a4\u13b5\u13db\u13d4\u13c1": 20488, "\u2581\u13ea\u13d3\u13d3": 20489, "\u2581\u13a4\u13d3\u13c5\u13d3\u13d5": 20490, "\u13aa\u13b2\u13cd\u13d4": 20491, "\u2581\u13a4\u13b5\u13e6\u13d4\u13c1": 20492, "\u13cd\u13da\u13b6\u13d4\u13c5": 20493, "\u13da\u13aa\u13b2": 20494, "\u2581\u13e3\u13a2\u13ce": 20495, "\u13e7\u13c2\u13f4": 20496, "\u13a7\u13f4\u13e4": 20497, "\u13d5\u13e3\u13b5\u13cd\u13d3\u13f4\u13b2": 20498, "\u13a4\u13ef\u13c5\u13af": 20499, "\u2581\u13f3\u13be\u13df": 20500, "\u2581\u13c1\u13ea\u13ce\u13b4": 20501, "\u13e3\u13b5\u13cd\u13d3\u13f4\u13be\u13c1": 20502, "\u13b5\u13e6\u13d4\u13c1\u13a2": 20503, "\u13c5\u13ac\u13e9\u13ea\u13ce\u13b8\u13a9": 20504, "\u2581\u13ac\u13ec\u13af\u13f3\u13c5": 20505, "\u2581\u13a0\u13d3\u13f4\u13d7": 20506, "\u13c3\u13b4\u13cd\u13c9": 20507, "\u13a4\u13e3\u13d8\u13c2": 20508, "\u13c2\u13d5\u13e8": 20509, "\u2581\u13a2\u13e8\u13c1\u13a2\u13cd\u13d7\u13cd\u13ac": 20510, "\u13a4\u13d3\u13c5\u13d8": 20511, "\u13a4\u13a9\u13ac": 20512, "\u13a6\u13d9\u13a5\u13af": 20513, "\u13da\u13d3\u13d6\u13cd\u13d7": 20514, "\u2581\u13a0\u13e5\u13e9\u13db\u13a1\u13b8": 20515, "\u13f2\u13df\u13a8": 20516, "\u2581\u13e7\u13be\u13c4\u13aa\u13e4": 20517, "\u13ac\u13be\u13ec": 20518, "\u13be\u13c1\u13b3\u13d7\u13cd": 20519, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b8": 20520, "\u2581\u13a4\u13c4\u13d6\u13d2": 20521, "\u2581\u13da\u13c5\u13cd\u13d3\u13d5\u13b8": 20522, "\u13ea\u13b7\u13c1": 20523, "\u2581\u13a0\u13cd\u13a9\u13d7\u13cd\u13a8": 20524, "\u2581\u13ac\u13e9\u13e1\u13d7\u13cd\u13ac": 20525, "\u13e9\u13f3\u13e4\u13b4": 20526, "\u13b3\u13a8\u13ef\u13db\u13e4\u13a2": 20527, "\u13cf\u13db\u13c2\u13b8": 20528, "\u13d5\u13b6\u13b0\u13ce": 20529, "\u2581\u13a0\u13c2\u13ef\u13d9\u13af\u13b2": 20530, "\u13d3\u13cd\u13a9\u13c1\u13b5": 20531, "\u13d3\u13df\u13c3\u13ae": 20532, "\u13e9\u13db\u13a1\u13b4": 20533, "\u2581\u13a0\u13ab\u13a2\u13cd\u13d7\u13cd\u13ac": 20534, "\u13e9\u13d7\u13ce": 20535, "\u2581\u13da\u13ed\u13d3\u13d4": 20536, "\u13d3\u13c6\u13d9\u13a5": 20537, "\u2581\u13ed\u13d8\u13c5\u13cd\u13d4\u13c5": 20538, "\u13ec\u13ea\u13b3\u13c5": 20539, "\u13b5\u13cd\u13d3\u13d7\u13cd\u13d7": 20540, "\u13d3\u13d3\u13b6\u13c2": 20541, "\u13ac\u13aa\u13e9\u13d8": 20542, "\u2581\u13d0\u13c8\u13b5\u13d7\u13a6\u13b5\u13a0\u13c5": 20543, "\u2581\u13a2\u13e8\u13a8\u13f3\u13d2": 20544, "\u13a9\u13cd\u13a6\u13c5\u13e8": 20545, "\u13c2\u13c6\u13d8\u13cd\u13d7": 20546, "\u13c4\u13ac\u13eb\u13f3\u13cc\u13d5\u13a9": 20547, "\u2581\u13c3\u13a9\u13c5\u13c1\u13b8": 20548, "\u13a6\u13d3\u13c5\u13d4\u13e9\u13d5\u13aa": 20549, "\u13c2\u13a7\u13bf\u13e9": 20550, "\u13a9\u13cd\u13c6\u13b8\u13a1": 20551, "\u13e9\u13d7\u13d9\u13ae\u13cd\u13d7": 20552, "\u2581\u13a0\u13c4\u13af\u13cd\u13d7\u13cd": 20553, "\u13d3\u13c6\u13b4\u13b3": 20554, "\u13d1\u13b5\u13cd\u13ac": 20555, "\u13aa\u13ea\u13b3\u13c5\u13af": 20556, "\u13e3\u13d5\u13b0\u13af": 20557, "\u2581\u13a4\u13d3\u13f1\u13b8": 20558, "\u13ad\u13b5\u13ae\u13b5\u13a9": 20559, "\u2581\u13c2\u13ac\u13e9\u13db\u13c1\u13b4": 20560, "\u13c5\u13a8\u13eb": 20561, "\u2581\u13ac\u13e9\u13c1\u13c4\u13b3\u13cd": 20562, "\u2581\u13d3\u13c2\u13c4\u13d9\u13ac": 20563, "\u13d3\u13c1\u13aa\u13f4\u13d3": 20564, "\u13b5\u13b6\u13b2\u13cd\u13a9": 20565, "\u2581\u13a0\u13d3\u13f4\u13cd\u13d4\u13a9\u13cd": 20566, "\u2581\u13a4\u13c1\u13d0\u13a0\u13d2": 20567, "\u13a4\u13e1\u13d7\u13cd\u13a9": 20568, "\u13b5\u13cd\u13da\u13a2": 20569, "\u13c5\u13aa\u13b3\u13db": 20570, "\u13cc\u13ef\u13cd\u13d7\u13d5\u13a9": 20571, "\u13e9\u13e9\u13d9\u13a3": 20572, "\u13be\u13a6\u13ce\u13cd\u13db": 20573, "\u13a9\u13cd\u13d9\u13a1": 20574, "\u2581\u13a4\u13be\u13d3\u13c4\u13b8": 20575, "\u2581\u13a4\u13d7\u13e9\u13d2": 20576, "\u13aa\u13af\u13f3\u13d7\u13cd\u13a9": 20577, "\u13ac\u13a5\u13cd\u13a9": 20578, "\u13a6\u13f4\u13b3\u13e5\u13b6\u13db": 20579, "\u13be\u13b5\u13c3\u13ae\u13d4\u13c1": 20580, "\u13e5\u13a7\u13af\u13f4": 20581, "\u13a0\u13e5\u13c1": 20582, "\u13c2\u13f2\u13af\u13cd\u13d4": 20583, "\u2581\u13db\u13d3\u13b4\u13b2\u13cd\u13ac": 20584, "\u2581\u13a2\u13ac\u13e9\u13c2\u13a9": 20585, "\u13a3\u13a9\u13b7": 20586, "\u2581\u13d5\u13ad\u13d5\u13f2\u13b2\u13cd\u13ac": 20587, "\u13c4\u13ec\u13cd\u13db\u13a9": 20588, "\u2581\u13e3\u13cd\u13a6\u13b8": 20589, "\u13a4\u13cd\u13a6\u13c3\u13b5": 20590, "\u2581\u13a4\u13be\u13c4\u13aa\u13e4": 20591, "\u13a6\u13c5\u13cc\u13d7": 20592, "\u2581\u13c2\u13da\u13c2\u13ea\u13ce\u13b8": 20593, "\u2581\u13a4\u13c2\u13b7\u13af\u13cd": 20594, "\u13cd\u13d4\u13c2\u13d9\u13b2": 20595, "\u13be\u13c5\u13d3\u13d7\u13cd\u13a8": 20596, "\u2581\u13a6\u13d3\u13d9\u13b5\u13cd\u13d7\u13cd": 20597, "\u13c2\u13f4\u13af\u13b0": 20598, "\u13a0\u13eb\u13c5": 20599, "\u2581\u13b4\u13b9": 20600, "\u2581\u13a4\u13e1\u13d7\u13cd": 20601, "\u13b5\u13ae\u13b5\u13e4\u13b0\u13a2": 20602, "\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13b2": 20603, "\u13cd\u13c6\u13da\u13b8": 20604, "\u13be\u13d3\u13c3\u13ae\u13b5\u13d9\u13af": 20605, "\u2581\u13f1\u13e5\u13e9\u13d8\u13cd\u13aa": 20606, "\u13da\u13a2\u13cd\u13d4\u13c1": 20607, "\u13a6\u13ce\u13d9": 20608, "\u13df\u13c5\u13e8": 20609, "\u13d3\u13aa\u13e9\u13d8": 20610, "\u2581\u13d7\u13a6\u13c3\u13b8\u13d7\u13cd": 20611, "\u13d7\u13a6\u13b4\u13f2\u13e8": 20612, "\u13be\u13b4\u13f2\u13a5": 20613, "\u13b5\u13cd\u13ab\u13ee": 20614, "\u13ef\u13cd\u13da\u13ce\u13a2": 20615, "\u13cc\u13ef\u13cd\u13d7": 20616, "\u2581\u13a2\u13e7\u13c5\u13c1": 20617, "\u13e3\u13ea\u13d0\u13b8\u13cd\u13d9": 20618, "\u13d4\u13b8\u13a9\u13d3": 20619, "\u13e6\u13e8": 20620, "\u2581\u13c5\u13ac\u13e9\u13ea\u13ce\u13b8": 20621, "\u2581\u13a1\u13e5\u13ef\u13c5": 20622, "\u2581\u13d1\u13be\u13d3\u13e1": 20623, "\u2581\u13ac\u13e9\u13dc": 20624, "\u2581\u13d7\u13c4\u13aa\u13d7\u13cd": 20625, "\u2581\u13a2\u13e3\u13ab\u13f4": 20626, "\u13be\u13d3\u13c5\u13d3\u13d5\u13a2": 20627, "\u13c2\u13c2\u13ac\u13ce\u13b2": 20628, "\u2581\u13a8\u13e5\u13c3\u13ae\u13cd\u13ac": 20629, "\u2581\u13a6\u13b7\u13aa": 20630, "\u13c4\u13a9\u13e3\u13c1": 20631, "\u2581\u13f1\u13a6\u13be\u13c4\u13aa": 20632, "\u2581\u13da\u13c2\u13b5\u13ec\u13e4": 20633, "\u13e3\u13db\u13c5\u13a2\u13cd\u13d4\u13c5": 20634, "\u2581\u13d5\u13a6\u13da\u13d3\u13d5\u13eb\u13d2": 20635, "\u13be\u13b5\u13ae\u13b5\u13a8\u13a2": 20636, "\u13ea\u13d9\u13b5\u13e4\u13a2": 20637, "\u13e5\u13cc\u13b3\u13d9": 20638, "\u13cd\u13a9\u13be\u13be\u13c2": 20639, "\u2581\u13f1\u13e5\u13e9\u13d8": 20640, "\u13d0\u13e2\u13a2\u13cd\u13d7\u13cd\u13ac\u13a2": 20641, "\u13d3\u13b5\u13c1\u13af\u13d5\u13b8": 20642, "\u13d7\u13e3\u13c1\u13b6": 20643, "\u2581\u13ef\u13c6\u13db\u13c1": 20644, "\u2581\u13a4\u13f4\u13d3\u13c6\u13b6": 20645, "\u13e8\u13aa\u13e9\u13d8": 20646, "\u2581\u13be\u13a9\u13ea": 20647, "\u13e9\u13d9\u13af\u13f4\u13d3": 20648, "\u13a6\u13d3\u13c5\u13d6\u13cd\u13ac": 20649, "\u13a4\u13b8\u13d3\u13b8\u13a5": 20650, "\u2581\u13a4\u13d3\u13f1\u13b4": 20651, "\u2581\u13d7\u13df\u13f0\u13b5\u13d3\u13cd": 20652, "\u2581\u13a8\u13ac\u13ec\u13a3": 20653, "\u2581\u13e7\u13ec\u13d1\u13b4": 20654, "\u13e5\u13da\u13d9\u13a5": 20655, "\u2581\u13a3\u13af\u13cd": 20656, "\u2581\u13c2\u13cd\u13a9\u13ef\u13db": 20657, "\u2581\u13e6\u13af\u13f3\u13ce\u13cd\u13d7": 20658, "\u13e0\u13ef\u13cd\u13d4\u13c5\u13a9": 20659, "\u13f4\u13cd\u13d4\u13c1": 20660, "\u2581\u13cd\u13ca\u13d3\u13b3": 20661, "\u13a6\u13d0\u13a0\u13cd\u13ac": 20662, "\u13a4\u13e3\u13d4": 20663, "\u2581\u13a4\u13e9\u13e9\u13d9": 20664, "\u2581\u13d7\u13a6\u13ef\u13a9\u13cd": 20665, "\u2581\u13a3\u13a6\u13c5\u13c5": 20666, "\u2581\u13eb\u13a8\u13e5": 20667, "\u2581\u13ac\u13e9\u13c2\u13aa\u13e9": 20668, "\u13d5\u13a6\u13b6\u13a8\u13d2": 20669, "\u13d7\u13dc": 20670, "\u13a9\u13d3\u13df\u13c5\u13ef": 20671, "\u2581\u13ef\u13c2\u13f2": 20672, "\u13b5\u13cd\u13c6\u13db": 20673, "\u13a8\u13e5\u13cd\u13da\u13b2": 20674, "\u13d4\u13c2\u13d7\u13a8": 20675, "\u13a4\u13b5\u13ec\u13e8": 20676, "\u13d8\u13cd\u13d5\u13cd\u13d7": 20677, "\u13df\u13f4\u13b2": 20678, "\u2581\u13a4\u13be\u13a9\u13b3\u13eb": 20679, "\u2581\u13a5\u13aa\u13a9": 20680, "\u13c2\u13a7\u13b5\u13a2\u13cd\u13d4": 20681, "\u2581\u13a4\u13b6\u13d0\u13c2": 20682, "\u13a7\u13c1\u13a2\u13cd\u13d7": 20683, "\u13cd\u13d5\u13ef\u13d3": 20684, "\u2581\u13ac\u13e9\u13be\u13f0\u13cd": 20685, "\u13a5\u13a9\u13c1\u13b8": 20686, "\u13be\u13c2\u13a9\u13ce": 20687, "\u13a4\u13df\u13c2\u13a9\u13d3": 20688, "\u13d8\u13f4\u13db": 20689, "\u2581\u13c4\u13c2\u13ac\u13eb\u13f3\u13cc\u13d5": 20690, "\u13d3\u13c1\u13b3\u13c1\u13b8": 20691, "\u13a6\u13e0\u13cf": 20692, "\u13a6\u13d9\u13a5\u13af\u13cd\u13d9\u13d7": 20693, "\u13a4\u13e0\u13a0": 20694, "\u2581\u13a8\u13e5\u13d0\u13c5\u13a2\u13cd\u13d4\u13c5": 20695, "\u13d4\u13b7\u13a9": 20696, "\u13ec\u13af\u13f3\u13d2": 20697, "\u2581\u13da\u13c2\u13a6\u13b5\u13d2": 20698, "\u13c2\u13c3\u13af\u13b5\u13d9\u13af": 20699, "\u13b3\u13eb\u13ce\u13b8\u13a9": 20700, "\u13ea\u13d3\u13cd\u13d7": 20701, "\u13ac\u13cb\u13c1\u13d7": 20702, "\u13c1\u13c9\u13e8": 20703, "\u13b5\u13ec\u13a2\u13cd\u13d7": 20704, "\u13a2\u13f3\u13db\u13bf\u13d5\u13a9": 20705, "\u13af\u13f3\u13b2\u13cd\u13a8\u13cd\u13d7": 20706, "\u13c6\u13ab\u13f4\u13a1\u13b2\u13a2": 20707, "\u2581\u13c2\u13a8\u13e5\u13b3": 20708, "\u13d6\u13b5\u13d9\u13a9\u13af": 20709, "\u13d9\u13f1\u13e8": 20710, "\u2581\u13a4\u13b5\u13cd\u13ab\u13eb": 20711, "\u13b5\u13f0\u13a2\u13b5": 20712, "\u2581\u13d3\u13be\u13b5\u13cd\u13d3\u13f4\u13b2": 20713, "\u2581\u13a2\u13ef\u13c6\u13b5\u13cd\u13d3\u13c1": 20714, "\u13bf\u13e9\u13db\u13cd\u13d7": 20715, "\u13a4\u13e4\u13b5": 20716, "\u13cc\u13af\u13b8": 20717, "\u13be\u13a5\u13c2\u13a8": 20718, "\u2581\u13e7\u13d9\u13d3\u13c6": 20719, "\u13b4\u13eb\u13cd\u13d9\u13d7": 20720, "\u13aa\u13cd\u13d4\u13f4": 20721, "\u2581\u13a2\u13ef\u13e5\u13b8\u13c9": 20722, "\u2581\u13e7\u13ec\u13ea\u13b6": 20723, "\u13a7\u13c3\u13ae\u13ad": 20724, "\u13eb\u13da\u13ef\u13c5\u13ae": 20725, "\u13e8\u13c3\u13ae\u13ae": 20726, "\u13ac\u13eb\u13f3\u13ce\u13cd\u13d7": 20727, "\u13ad\u13f2\u13db": 20728, "\u2581\u13a0\u13a9\u13cd\u13c6\u13c2": 20729, "\u13a7\u13b9": 20730, "\u2581\u13a4\u13d9\u13b4\u13b0": 20731, "\u13c7\u13d5\u13b5": 20732, "\u2581\u13a2\u13e3\u13d3\u13d9\u13b5\u13e3": 20733, "\u2581\u13a8\u13aa\u13e2\u13c5": 20734, "\u2581\u13ed\u13e2\u13c1": 20735, "\u2581\u13a0\u13d3\u13db\u13c2\u13d7\u13cd": 20736, "\u13db\u13db\u13b2\u13cd\u13a8\u13a2": 20737, "\u13b4\u13c5\u13d7\u13cd\u13aa": 20738, "\u13a0\u13a6\u13d9\u13a5\u13af\u13cd\u13d7": 20739, "\u13a6\u13be\u13cd\u13db": 20740, "\u13d5\u13e5\u13ef\u13c1\u13b6": 20741, "\u2581\u13f1\u13d9\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1": 20742, "\u2581\u13f1\u13d7\u13e5\u13b8\u13eb\u13cd\u13d3\u13c1": 20743, "\u2581\u13f1\u13ac\u13f2\u13ce": 20744, "\u13e5\u13cf\u13be\u13d2": 20745, "\u2581\u13a4\u13e3\u13ea\u13d0\u13b8\u13cd": 20746, "\u13e7\u13c5\u13cf\u13d3\u13cd\u13d7": 20747, "\u2581\u13a6\u13ac\u13e9\u13d0\u13e2\u13d5": 20748, "\u13d3\u13a9\u13f2\u13af\u13ce\u13b8": 20749, "\u2581\u13a4\u13ec\u13d1\u13b6\u13e8": 20750, "\u13c6\u13d3\u13ec\u13c5": 20751, "\u13b5\u13cf\u13be\u13af\u13cd": 20752, "\u2581\u13a4\u13d8\u13cd\u13db": 20753, "\u2581\u13a4\u13a7\u13f2\u13db": 20754, "\u13f1\u13d9\u13a8": 20755, "\u2581\u13d7\u13a8\u13a6\u13c1\u13b6": 20756, "\u13d7\u13f2\u13b1\u13af\u13ce": 20757, "\u13a0\u13d8\u13cd\u13d3\u13c1": 20758, "\u13d4\u13b3\u13da": 20759, "\u2581\u13d3\u13be\u13e3\u13c5": 20760, "\u2581\u13a4\u13c2\u13be\u13dd\u13be": 20761, "\u13ab\u13ec": 20762, "\u13ef\u13ea\u13d0\u13b4": 20763, "\u2581\u13ac\u13e9\u13a8\u13f3": 20764, "\u13b7\u13e5\u13d7\u13d2": 20765, "\u2581\u13a0\u13c2\u13a6\u13ef\u13b7\u13a5\u13cd": 20766, "\u13bf\u13ec\u13a1": 20767, "\u2581\u13d7\u13a7\u13b5": 20768, "\u2581\u13e7\u13b8\u13eb\u13cd\u13d3\u13c1\u13b8": 20769, "\u2581\u13e3\u13be\u13d3\u13be\u13cf\u13c2\u13d9": 20770, "\u2581\u13ad\u13a2\u13d2": 20771, "\u13b5\u13cd\u13db\u13e7\u13c5": 20772, "\u13c5\u13a6\u13b3\u13b2": 20773, "\u13a7\u13c2\u13a9\u13d3": 20774, "\u13d3\u13c2\u13d9\u13a8": 20775, "\u13a7\u13b5\u13a2\u13cd\u13d9\u13d7": 20776, "\u13d9\u13d1\u13b4\u13d7\u13f1": 20777, "\u2581\u13a2\u13cd\u13a9\u13f3\u13cd": 20778, "\u13eb\u13cd\u13d9\u13d7\u13f1": 20779, "\u13d7\u13a6\u13b5\u13cd\u13d9\u13d7\u13cd\u13a8": 20780, "\u2581\u13e5\u13e5\u13aa\u13e9\u13d8": 20781, "\u2581\u13f1\u13a6\u13ec\u13c2": 20782, "\u2581\u13c4\u13cd\u13d7\u13d5\u13ac": 20783, "\u2581\u13f1\u13da\u13be\u13d3\u13b4": 20784, "\u2581\u13a0\u13e5\u13d3\u13a6\u13b8": 20785, "\u2581\u13eb\u13d3\u13d9\u13b4": 20786, "\u13b5\u13d6\u13b8\u13c5\u13a9": 20787, "\u13ef\u13ea\u13d0": 20788, "\u13d7\u13db\u13ae\u13a2": 20789, "\u2581\u13e7\u13d3\u13c6\u13d9": 20790, "\u2581\u13a4\u13d3\u13d5\u13f2\u13d7": 20791, "\u2581\u13e7\u13be\u13d3\u13d9\u13b5\u13cd\u13d3\u13c1\u13d7": 20792, "\u2581\u13a4\u13cd\u13d3\u13e9\u13d7\u13d3\u13cd\u13d7": 20793, "\u2581\u13ac\u13d4\u13f2\u13ce": 20794, "\u2581\u13d7\u13e7\u13aa\u13d9\u13d7": 20795, "\u13b1\u13cd\u13d5\u13ce\u13b4": 20796, "\u2581\u13a5\u13c6\u13b8\u13cd\u13d7": 20797, "\u13a9\u13b5\u13f2\u13e4\u13b4": 20798, "\u2581\u13e3\u13a9\u13f0\u13b8": 20799, "\u13c2\u13c4\u13b8\u13c5": 20800, "\u13a6\u13b6\u13c7": 20801, "\u13d6\u13b5\u13d9": 20802, "\u2581\u13e9\u13b5\u13f0\u13a2\u13b6\u13af": 20803, "\u2581\u13d7\u13be\u13e6": 20804, "\u13b5\u13e0\u13ef\u13cd\u13db": 20805, "\u2581\u13d7\u13a9\u13f2\u13e2": 20806, "\u13aa\u13c1\u13b6\u13af\u13ce\u13d7": 20807, "\u2581\u13a2\u13e8\u13aa\u13e9\u13db": 20808, "\u2581\u13a6\u13be\u13c4": 20809, "\u13ac\u13e9\u13dd": 20810, "\u2581\u13e4\u13e5\u13a4\u13cd\u13d5\u13ce\u13d7": 20811, "\u2581\u13f1\u13c4\u13ea": 20812, "\u2581\u13a0\u13c6\u13e2\u13c8\u13cd\u13d7": 20813, "\u13ea\u13d9\u13b5\u13cd\u13d7": 20814, "\u2581\u13a4\u13c2\u13f4\u13d4\u13c2\u13af\u13cd\u13d7": 20815, "\u13e5\u13ef\u13db\u13db\u13c5": 20816, "\u13a9\u13b5\u13f2\u13e5": 20817, "\u2581\u13a4\u13be\u13d3\u13cd\u13d4": 20818, "\u2581\u13a2\u13ac\u13ea\u13c5": 20819, "\u13be\u13db\u13db\u13b2\u13cd\u13a8": 20820, "\u2581\u13f1\u13d3\u13c2\u13b3\u13eb": 20821, "\u13be\u13eb\u13db\u13b2\u13a9": 20822, "\u2581\u13a0\u13c2\u13d4\u13f2": 20823, "\u13df\u13f0\u13b5\u13d3\u13cd\u13d7": 20824, "\u13b5\u13cd\u13d3\u13c1\u13b8\u13a2": 20825, "\u2581\u13f3\u13a8\u13f3": 20826, "\u2581\u13a4\u13cd\u13ab": 20827, "\u13f3\u13aa\u13d3\u13c1\u13b5": 20828, "\u13d3\u13d5\u13ae\u13cd\u13d7": 20829, "\u2581\u13da\u13b5\u13c2\u13c6": 20830, "\u2581\u13a2\u13e6\u13af\u13f3\u13d7": 20831, "\u2581\u13d3\u13a6\u13e5\u13f2": 20832, "\u2581\u13a4\u13c2\u13c2\u13f4\u13d7": 20833, "\u13c2\u13e8\u13f4\u13c1\u13ad": 20834, "\u13cd\u13d3\u13a6\u13b8": 20835, "\u2581\u13a2\u13f3\u13e9\u13c2\u13cc": 20836, "\u13b7\u13cf\u13b5\u13bb": 20837, "\u13a4\u13c2\u13b2": 20838, "\u13e3\u13d9\u13b4\u13b0\u13cd\u13a8": 20839, "\u2581\u13a8\u13e5\u13a9\u13b5\u13f2\u13a2\u13cd\u13d9\u13d7": 20840, "\u13f0\u13a2\u13b6\u13af": 20841, "\u13ad\u13b5\u13cd\u13d7\u13ad": 20842, "\u13b3\u13db\u13a5\u13a6": 20843, "\u13d3\u13d9\u13b5\u13cd\u13d9": 20844, "\u13d3\u13d9\u13d5\u13cd\u13d7\u13cd\u13a9": 20845, "\u13a0\u13e1\u13d7\u13cd\u13ac": 20846, "\u13c2\u13b8\u13eb\u13cd\u13d3\u13c1\u13af": 20847, "\u13a0\u13c1\u13b6": 20848, "\u2581\u13d7\u13d2\u13c6\u13b6": 20849, "\u13a9\u13b5\u13f2\u13a2\u13cd\u13d9\u13d7": 20850, "\u2581\u13a2\u13ef\u13c6\u13b5\u13cd\u13d9\u13d7": 20851, "\u2581\u13a2\u13e7\u13d5\u13d8\u13f4": 20852, "\u2581\u13a4\u13cd\u13c9\u13b5": 20853, "\u2581\u13a3\u13a6\u13d5\u13ef\u13d9\u13d7": 20854, "\u2581\u13e7\u13c2\u13f2\u13b1\u13d2": 20855, "\u2581\u13da\u13ef\u13c5\u13ae": 20856, "\u2581\u13db\u13a6\u13d3\u13c5": 20857, "\u2581\u13d3\u13be\u13e4\u13a8\u13cd\u13d7": 20858, "\u13d9\u13db\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13b5": 20859, "\u2581\u13c5\u13e9\u13db\u13c1": 20860, "\u13c2\u13cc\u13c4\u13a6": 20861, "\u13a8\u13cd\u13a9\u13a5\u13cf\u13c9": 20862, "\u13dc\u13cd\u13d4\u13c5\u13af": 20863, "\u2581\u13c4\u13c2\u13aa\u13b8": 20864, "\u2581\u13a0\u13c2\u13cf\u13f4\u13eb": 20865, "\u13be\u13d9\u13d3\u13c6\u13cd\u13ac": 20866, "\u13f3\u13d3\u13c1\u13ad\u13f0\u13c3": 20867, "\u13d3\u13c5\u13d3\u13d7\u13cd\u13d9\u13d7\u13f1": 20868, "\u13d6\u13b8\u13b2\u13cd\u13aa\u13a2": 20869, "\u13c2\u13e9\u13be\u13a6\u13b3": 20870, "\u2581\u13ad\u13db\u13d3\u13cd": 20871, "\u13be\u13c2\u13cf\u13d7\u13f1": 20872, "\u13e5\u13d7\u13d2\u13a9": 20873, "\u13d3\u13c1\u13df\u13f4\u13ce\u13ac": 20874, "\u2581\u13ef\u13c2\u13cd\u13a6": 20875, "\u13c2\u13cf\u13be\u13cc": 20876, "\u2581\u13e5\u13a6\u13b7\u13af\u13cd\u13d7": 20877, "\u2581\u13eb\u13a8\u13e3\u13f2\u13b5": 20878, "\u2581\u13ac\u13a9\u13c1\u13e4\u13b8": 20879, "\u2581\u13a6\u13c3\u13b8\u13a5\u13cd": 20880, "\u13d5\u13af\u13f3\u13aa\u13d3\u13c1": 20881, "\u2581\u13e7\u13be\u13c1\u13b3\u13d7\u13cd\u13d7": 20882, "\u2581\u13da\u13c2\u13f2\u13af\u13ce\u13b8": 20883, "\u2581\u13c5\u13d3\u13e9": 20884, "\u2581\u13da\u13a6\u13d2\u13cd": 20885, "\u13a6\u13c4\u13d6\u13f2": 20886, "\u2581\u13a4\u13c2\u13b5\u13e6\u13e9": 20887, "\u2581\u13a4\u13d3\u13d9\u13b5\u13cd\u13d4\u13c5\u13ce": 20888, "\u2581\u13e7\u13c2\u13f4\u13cd\u13d5\u13cd": 20889, "\u2581\u13a3\u13a9\u13c3\u13ae\u13cd\u13ac": 20890, "\u2581\u13a6\u13b6\u13af\u13cd": 20891, "\u13be\u13b5\u13cd\u13d3\u13c1\u13b4\u13a2": 20892, "\u13e0\u13d2\u13ce": 20893, "\u2581\u13f2\u13e8\u13d7\u13cd": 20894, "\u2581\u13a4\u13b6\u13d2\u13cd\u13d5": 20895, "\u13ec\u13af\u13cd\u13d7\u13cd\u13a9": 20896, "\u13a6\u13cc\u13ef\u13cd\u13d3": 20897, "\u13e3\u13e4\u13b5": 20898, "\u2581\u13eb\u13a9\u13be\u13c4": 20899, "\u13e5\u13a7\u13bf\u13e9\u13db\u13cd\u13d7": 20900, "\u13e7\u13e4\u13b5": 20901, "\u2581\u13a2\u13e7\u13c5\u13c1\u13b8": 20902, "\u13c1\u13d9\u13b8\u13a9": 20903, "\u13f1\u13c4\u13b3": 20904, "\u2581\u13c5\u13d3\u13f3\u13b6\u13af\u13cd\u13d7": 20905, "\u2581\u13cd\u13c6\u13db\u13c5\u13a2\u13cd\u13d3\u13c1\u13b8": 20906, "\u13ef\u13a7\u13b2\u13cd\u13d7": 20907, "\u13e9\u13be\u13a6\u13b8": 20908, "\u13b5\u13ac\u13e9\u13e2": 20909, "\u13f0\u13b5\u13cf\u13d9\u13b4\u13a2": 20910, "\u2581\u13d3\u13e5\u13db\u13d4": 20911, "\u13ae\u13d9\u13ad": 20912, "\u2581\u13f1\u13c2\u13e3\u13b5\u13cd\u13d4": 20913, "\u13e8\u13be\u13c4\u13eb\u13ce\u13ad": 20914, "\u2581\u13a4\u13c2\u13cd\u13d5\u13f2": 20915, "\u13b3\u13ec\u13af\u13cd\u13d7": 20916, "\u13cd\u13c8\u13db": 20917, "\u13b3\u13d1\u13dd": 20918, "\u13c6\u13d7\u13cd\u13d7": 20919, "\u2581\u13ac\u13c1\u13e4\u13b2": 20920, "\u13e5\u13a7\u13bf\u13e9\u13d7\u13d3\u13cd\u13d7": 20921, "\u13ab\u13cd\u13a8\u13c2": 20922, "\u13b5\u13cd\u13aa\u13b8\u13d4\u13c5": 20923, "\u13e3\u13d3\u13b5\u13c1\u13af\u13d5": 20924, "\u2581\u13d7\u13e5\u13a6\u13f4\u13b5": 20925, "\u2581\u13d7\u13c2\u13a7\u13bf\u13e9": 20926, "\u13a1\u13d9\u13d3": 20927, "\u13c2\u13c5\u13cd\u13d3\u13d5\u13b8": 20928, "\u13be\u13b5\u13e5\u13d9\u13b2": 20929, "\u2581\u13da\u13df\u13f0\u13b5\u13d9": 20930, "\u2581\u13a0\u13cd\u13d5\u13ef": 20931, "\u13e3\u13d3\u13c4\u13b8\u13d7": 20932, "\u2581\u13da\u13df\u13b6\u13cd": 20933, "\u2581\u13da\u13a7\u13bf\u13c2\u13d9": 20934, "\u13d3\u13c4\u13f4\u13d9": 20935, "\u13da\u13d8\u13c5\u13cd\u13d4\u13c1": 20936, "\u13cd\u13d3\u13a2\u13d2\u13a2": 20937, "\u2581\u13d3\u13e5\u13f4\u13c2": 20938, "\u2581\u13d7\u13a8\u13a6\u13ec\u13cd": 20939, "\u2581\u13be\u13d5\u13d8": 20940, "\u13cd\u13d3\u13f1\u13d7\u13cd\u13d7": 20941, "\u2581\u13a4\u13c2\u13be\u13c4\u13aa\u13e4": 20942, "\u13b3\u13cd\u13d7\u13cd\u13aa": 20943, "\u2581\u13a4\u13c2\u13cd\u13a6\u13b8": 20944, "\u13c2\u13b3\u13eb\u13a1": 20945, "\u13e5\u13cd\u13d3\u13e9\u13d5\u13a8\u13cd\u13d7": 20946, "\u13af\u13f4\u13c1\u13d7": 20947, "\u13d3\u13c5\u13d6\u13b5": 20948, "\u2581\u13a2\u13ef\u13a9\u13f3\u13cd\u13c8": 20949, "\u13e5\u13bf\u13cd\u13d5": 20950, "\u2581\u13a4\u13be\u13d3\u13d9\u13e2": 20951, "\u2581\u13a0\u13a9\u13c1\u13a2\u13cd\u13d7": 20952, "\u2581\u13eb\u13e5\u13aa\u13a5": 20953, "\u13c5\u13c6\u13b6\u13a5\u13af": 20954, "\u2581\u13d5\u13e5\u13cd\u13d5\u13b5\u13cd\u13ac": 20955, "\u13be\u13d3\u13aa\u13be\u13d7": 20956, "\u13be\u13a9\u13b8\u13c1": 20957, "\u13a8\u13e5\u13c1\u13a2\u13cd": 20958, "\u2581\u13e5\u13c5\u13d7\u13a6\u13b5\u13cd": 20959, "\u13f3\u13d7\u13e9\u13cf": 20960, "\u2581\u13a7\u13f4\u13d0": 20961, "\u2581\u13d1\u13df\u13b6": 20962, "\u13c2\u13c5\u13aa\u13eb\u13cd": 20963, "\u13d3\u13d8\u13be\u13a2": 20964, "\u13b5\u13cd\u13e1\u13f0\u13a2": 20965, "\u13c0\u13a2\u13f3": 20966, "\u2581\u13b6\u13e9": 20967, "\u13b5\u13cd\u13db\u13e7": 20968, "\u2581\u13c4\u13c2\u13ac\u13eb": 20969, "\u2581\u13a4\u13e7\u13d7": 20970, "\u13f4\u13d4\u13c2\u13af\u13cd\u13d7\u13f1": 20971, "\u13b5\u13a1\u13b5\u13ac": 20972, "\u13a8\u13b3\u13d7\u13d9\u13ad": 20973, "\u13df\u13f4\u13cc": 20974, "\u2581\u13f1\u13cd\u13a9\u13a7\u13c1": 20975, "\u13c2\u13b4\u13f4\u13cd\u13a9": 20976, "\u13a6\u13cc\u13ef\u13cd\u13d9\u13a2": 20977, "\u13a6\u13f0\u13e3\u13b5\u13cd\u13d5": 20978, "\u2581\u13e7\u13b8\u13eb\u13cd\u13d3": 20979, "\u2581\u13a2\u13e5\u13a6\u13d4": 20980, "\u13c2\u13c5\u13eb\u13cd\u13d4\u13c2\u13d9\u13af": 20981, "\u13e0\u13e4\u13c9": 20982, "\u2581\u13e7\u13a6\u13f4\u13b5": 20983, "\u13d3\u13b8\u13a5\u13cd\u13a8": 20984, "\u2581\u13a0\u13c2\u13a6\u13f4\u13b5": 20985, "\u2581\u13eb\u13af\u13b6": 20986, "\u2581\u13e6\u13a6\u13e4\u13b5": 20987, "\u13d9\u13a9\u13b8\u13eb\u13cd\u13d3\u13c1\u13ad": 20988, "\u13e9\u13a6\u13d8\u13ef": 20989, "\u2581\u13f1\u13be\u13c6\u13b5\u13cd\u13d4": 20990, "\u13db\u13d3\u13c5\u13af": 20991, "\u2581\u13da\u13cc\u13b3": 20992, "\u2581\u13e7\u13ec\u13af\u13f3\u13c1": 20993, "\u2581\u13ac\u13c6\u13d3\u13d9\u13b5\u13cd": 20994, "\u13c1\u13b6\u13d4\u13c5\u13a9": 20995, "i": 20996, "P": 20997, "C": 20998, "(": 20999, "[": 21000 }, "tgt_word2id": { "": 0, "": 1, "": 2, "": 3, ",": 4, "\u2581the": 5, "\u2581and": 6, ".": 7, "\u2581of": 8, "\u2581to": 9, "\u2581that": 10, "\u2581in": 11, "\u2581And": 12, "\u2581he": 13, "\u2581a": 14, "\u2581I": 15, ";": 16, ":": 17, "\u2581unto": 18, "s": 19, "\u2581him": 20, "\u2581his": 21, "\u2581be": 22, "\u2581is": 23, "\u2581for": 24, "\u2581they": 25, "\u2581not": 26, "\u2581shal": 27, "\u2581it": 28, "\u2581was": 29, "l": 30, "\u2581with": 31, "\u2581them": 32, "\u2581said": 33, "\u2581": 34, "\u2581all": 35, "\u2581you": 36, "ing": 37, "ed": 38, "\u2581God": 39, "\u2581ye": 40, "\u2581as": 41, "?": 42, "\u2581me": 43, "\u2019": 44, "\u2581from": 45, "\u2581thou": 46, "\u2581my": 47, "\u2581but": 48, "\u2581have": 49, "\u2581are": 50, "t": 51, "\u2581on": 52, "\u2581were": 53, "\u2581Lord": 54, "\u2581had": 55, "\u2581which": 56, "\u2581when": 57, "\u2581\u201c": 58, "\u2581their": 59, "\u2581man": 60, "\u201d": 61, "\u2581one": 62, "\u2581out": 63, "\u2581this": 64, "\u2581will": 65, "\u2581we": 66, "\u2581up": 67, "\u2581by": 68, "\u2581into": 69, "\u2581thy": 70, "\u2581The": 71, "\u2581thee": 72, "\u2581But": 73, "\u2581there": 74, "\u2581came": 75, "\u2581Jesus": 76, "\u2581who": 77, "\u2581her": 78, "\u2581at": 79, "\u2581things": 80, "\u2581also": 81, "\u2581upon": 82, "\u2581your": 83, "d": 84, "\u2581us": 85, "\u2581For": 86, "\u2581no": 87, "\u2581come": 88, "\u2581she": 89, "\u2581if": 90, "\u2581hath": 91, "\u2581do": 92, "\u2581He": 93, "\u2581made": 94, "\u2581an": 95, "\u2581went": 96, "\u2581day": 97, "\u2581down": 98, "\u2581saying": 99, "\u2581so": 100, "\u2581our": 101, "\u2581even": 102, "\u2581say": 103, "\u2581men": 104, "\u2581people": 105, "\u2581before": 106, "\u2581or": 107, "\u2581these": 108, "\u2581may": 109, "\u2581Christ": 110, "\u2581go": 111, "-": 112, "\u2581what": 113, "eth": 114, "!": 115, "'": 116, "ly": 117, "\u2581did": 118, "\u2581after": 119, "\u2581know": 120, "\u2581make": 121, "\u2581every": 122, "\u2581let": 123, "\u2581through": 124, "\u2581Wilbur": 125, "\u2581son": 126, "\u2581land": 127, "cause": 128, "\u2581therefore": 129, "\u2581would": 130, "\u2581then": 131, "\u2581away": 132, "\u2581good": 133, "\u2581children": 134, "\u2581hand": 135, "\u2581over": 136, "\u2581about": 137, "\u2581Moses": 138, "\u2581two": 139, "\u2581called": 140, "\u2581am": 141, "\u2581earth": 142, "\u2581house": 143, "\u2581should": 144, "th": 145, "\u2581any": 146, "\u2581father": 147, "\u2581name": 148, "\u2581great": 149, "\u2581put": 150, "\u2581now": 151, "y": 152, "\u2581like": 153, "\u2581days": 154, "\u2581against": 155, "\u2581whom": 156, "\u2581saw": 157, "\u2581been": 158, "\u2581where": 159, "\u2581heard": 160, "\u2581saith": 161, "e": 162, "\u2581more": 163, "\u2581see": 164, "\u2581many": 165, "\u2581took": 166, "\u2581give": 167, "\u2581pass": 168, "\u2581Israel": 169, "\u2581Now": 170, "\u2581forth": 171, "\u2581time": 172, "\u2581life": 173, "\u2581take": 174, "\u2581again": 175, "\u2581brethren": 176, "\u2581another": 177, "\u2581heaven": 178, "\u2581himself": 179, "st": 180, "\u2581word": 181, "\u2581might": 182, "\u2581way": 183, "\u2581world": 184, "\u2581sons": 185, "\u2581Then": 186, "\u2581first": 187, "\u2581own": 188, "\u2581behold": 189, "\u2581other": 190, "\u2581how": 191, "se": 192, "\u2581among": 193, "\u2581brought": 194, "\u2581law": 195, "\u2581Father": 196, "\u2581little": 197, "\u2581place": 198, "\u2581some": 199, "\u2581could": 200, "\u2581eat": 201, "\u2581than": 202, "\u2581old": 203, "\u2581back": 204, "\u2581Jacob": 205, "\u2581Egypt": 206, "\u2581sent": 207, "\u2581accord": 208, "\u2581years": 209, "\u2581Spirit": 210, "\u2581brother": 211, "f": 212, "\u2581Pharaoh": 213, "\u2581love": 214, "\u2581gave": 215, "\u2581disciples": 216, "\u2581cast": 217, "\u2581Abraham": 218, "\u2581water": 219, "\u2581faith": 220, "\u2581Mr": 221, "\u2581found": 222, "\u2581set": 223, "\u2581wife": 224, "\u2581voice": 225, "\u2581They": 226, "\u2581yet": 227, "\u2581It": 228, "\u2581A": 229, "\u2581O": 230, "\u2581under": 231, "\u2581glory": 232, "\u2581dead": 233, "\u2581hast": 234, "\u2581having": 235, "\u2581Charlotte": 236, "\u2581being": 237, "\u2581done": 238, "\u2581answered": 239, "\u2581spake": 240, "\u2581Joseph": 241, "\u2581bring": 242, "\u2581together": 243, "\u2581night": 244, "\u2581heart": 245, "\u2581city": 246, "\u2581Son": 247, "\u2581eyes": 248, "r": 249, "m": 250, "\u2581work": 251, "\u2581neither": 252, "\u2581only": 253, "\u2581both": 254, "\u2581speak": 255, "\u2581three": 256, "\u2581flesh": 257, "\u2581When": 258, "\u2581What": 259, "\u2581can": 260, "\u2581thereof": 261, "\u2581nor": 262, "\u2581same": 263, "\u2581fire": 264, "\u2581given": 265, "\u2581much": 266, "\u2581without": 267, "I": 268, "\u2581right": 269, "\u2581seven": 270, "\u2581Thi": 271, "\u2581left": 272, "\u2581blood": 273, "\u2581hear": 274, "\u2581face": 275, "\u2581LORD": 276, "\u2581thing": 277, "\u2581asked": 278, "\u2581long": 279, "\u2581off": 280, "\u2581evil": 281, "\u2581words": 282, "est": 283, "\u2581art": 284, "\u2581head": 285, "\u2581well": 286, "\u2581hands": 287, "\u2581sat": 288, "\u2581death": 289, "\u2581So": 290, "\u2581kingdom": 291, "\u2581Thou": 292, "\u2581Jews": 293, "\u2581th": 294, "\u2581mother": 295, "\u2581while": 296, "\u2581nothing": 297, "\u2581unti": 298, "\u2581bear": 299, "\u2581light": 300, "very": 301, "\u2581stood": 302, "\u2581ever": 303, "\u2581themselves": 304, "\u2581Paul": 305, "\u2581gold": 306, "\u2581lay": 307, "\u2581Let": 308, "\u2581keep": 309, "ose": 310, "\u2581Zuckerman": 311, "\u2581sea": 312, "\u2581side": 313, "\u2581Behold": 314, "\u2581Fern": 315, "soever": 316, "\u2581s": 317, "\u2581looked": 318, "er": 319, "\u2581Jerusalem": 320, "\u2581Peter": 321, "\u2581seen": 322, "\u2581Ye": 323, "\u2581sin": 324, "\u2581thine": 325, "\u2581cometh": 326, "\u2581Be": 327, "\u2581woman": 328, "\u2581certain": 329, "\u2581ground": 330, "\u2581end": 331, "\u2581chief": 332, "\u2581She": 333, "\u2581body": 334, "\u2581We": 335, "\u2581knew": 336, "\u2581In": 337, "\u2581fear": 338, "\u2581just": 339, "\u2581power": 340, "\u2581feet": 341, "\u2581morning": 342, "\u2581such": 343, "n": 344, "\u2581pig": 345, "\u2581tree": 346, "\u2581hundred": 347, "\u2581sheep": 348, "\u2581holy": 349, "\u2581whole": 350, "\u2581bread": 351, "\u2581Aaron": 352, "\u2581began": 353, "\u2581must": 354, "\u2581John": 355, "\u2581servant": 356, "\u2581receive": 357, "\u2581multitude": 358, "\u2581told": 359, "a": 360, "\u2581toward": 361, "\u2581written": 362, "\u2581die": 363, "\u2581There": 364, "\u2581seed": 365, "\u2581peace": 366, "\u2581going": 367, "\u2581here": 368, "\u2581servants": 369, "\u2581believe": 370, "\u2581new": 371, "\u2581live": 372, "\u2581works": 373, "\u2581truth": 374, "ll": 375, "\u2581fell": 376, "\u2581spirit": 377, "re": 378, "\u2581grace": 379, "\u2581high": 380, "\u2581witness": 381, "\u2581get": 382, "\u2581mouth": 383, "\u2581four": 384, "\u2581S": 385, "\u2581tabernacle": 386, "\u2581concern": 387, "\u2581each": 388, "\u2581coming": 389, "\u2581near": 390, "\u2581Isaac": 391, "\u2581commanded": 392, "\u2581pray": 393, "\u2581find": 394, "\u2581Charley": 395, "\u2581five": 396, "\u2581web": 397, "\u2581tell": 398, "\u2581still": 399, "\u2581spoken": 400, "\u2581become": 401, "\u2581hour": 402, "\u2581white": 403, "\u2014": 404, "\u2581part": 405, "een": 406, "\u2581F": 407, "\u2581sight": 408, "\u2581laid": 409, "\u2581received": 410, "\u2581though": 411, "\u2581child": 412, "\u2581round": 413, "\u2581mine": 414, "\u2581betw": 415, "\u2581seek": 416, "\u2581Who": 417, "\u2581altar": 418, "\u2581manner": 419, "\u2581never": 420, "\u2581full": 421, "\u2581temple": 422, "\u2581walk": 423, "\u2581river": 424, "\u2581drink": 425, "\u2581stand": 426, "\u2581send": 427, "\u2581righteousness": 428, "\u2581field": 429, "\u2581think": 430, "ther": 431, "\u2581Holy": 432, "\u2581around": 433, "\u2581died": 434, "\u2581king": 435, "\u2581save": 436, "\u2581stone": 437, "\u2581daughter": 438, "\u2581living": 439, "\u2581Wherefore": 440, "\u2581Arable": 441, "\u2581angel": 442, "\u2581cried": 443, "\u2581cause": 444, "\u2581door": 445, "\u2581judgment": 446, "\u2581priest": 447, "\u2581enter": 448, "\u2581gospel": 449, "\u2581taken": 450, "\u2581known": 451, "\u2581young": 452, "\u2581mind": 453, "\u2581mercy": 454, "\u2581Gentiles": 455, "\u2581blessed": 456, "\u2581C": 457, "\u2581few": 458, "\u2581All": 459, "\u2581ask": 460, "\u2581bare": 461, "\u2581kill": 462, "\u2581look": 463, "\u2581hold": 464, "\u2581rest": 465, "\u2581hard": 466, "\u2581money": 467, "\u2581opened": 468, "\u2581believed": 469, "\u2581lord": 470, "\u2581second": 471, "\u2581gone": 472, "\u2581Templeton": 473, "\u2581un": 474, "\u2581hope": 475, "\u2581Pharisees": 476, "\u2581call": 477, "\u2581show": 478, "\u2581My": 479, "\u2581entered": 480, "\u2581Esau": 481, "\u2581last": 482, "\u2581don": 483, "\u2581gathered": 484, "ter": 485, "\u2581daughters": 486, "\u2581Go": 487, "\u2581born": 488, "\u2581twelve": 489, "\u2581wise": 490, "ce": 491, "\u2581able": 492, "\u2581walked": 493, "\u2581got": 494, "\u2581minister": 495, "\u2581third": 496, "\u2581always": 497, "\u2581lest": 498, "\u2581none": 499, "\u2581delivered": 500, "\u2581sake": 501, "\u2581dwell": 502, "\u2581As": 503, "\u2581too": 504, "\u2581righteous": 505, "\u2581yourselves": 506, "\u2581country": 507, "\u2581cannot": 508, "\u2581sure": 509, "\u2581became": 510, "\u2581raised": 511, "\u2581Avery": 512, "\u2581whe": 513, "\u2581prophets": 514, "\u2581above": 515, "\u2581barn": 516, "\u2581followed": 517, "\u2581You": 518, "\u2581beast": 519, "\u2581thought": 520, "\u2581priests": 521, "\u2581mount": 522, "\u2581judge": 523, "\u2581offering": 524, "\u2581cattle": 525, "\u2581angels": 526, "\u2581women": 527, "\u2581food": 528, "\u2581looking": 529, "\u2581fruit": 530, "\u2581year": 531, "\u2581joy": 532, "\u2581half": 533, "\u2581true": 534, "\u2581midst": 535, "\u2581How": 536, "\u2581soul": 537, "\u2581fine": 538, "\u2581indeed": 539, "\u2581anything": 540, "\u2581To": 541, "\u2581most": 542, "\u2581filled": 543, "\u2581elders": 544, "\u2581wood": 545, "\u2581serve": 546, "\u2581covenant": 547, "\u2581remember": 548, "\u2581ten": 549, "\u2581fall": 550, "\u2581small": 551, "\u2581dark": 552, "\u2581Simon": 553, "\u2581silver": 554, "\u2581Every": 555, "\u2581Egyptians": 556, "\u2581sun": 557, "\u2581ran": 558, "\u2581sins": 559, "\u2581returned": 560, "es": 561, "\u2581church": 562, "\u2581Smith": 563, "\u2581sabbath": 564, "\u2581Lurvy": 565, "\u2581lived": 566, "rose": 567, "\u2581waters": 568, "ness": 569, "\u2581fathers": 570, "\u2581fish": 571, "\u2581strong": 572, "\u2581thousand": 573, "\u2581myself": 574, "\u2581turned": 575, "\u2581prophet": 576, "\u2581kept": 577, "\u2581alone": 578, "\u2581darkness": 579, "\u2581Why": 580, "\u2581far": 581, "\u2581One": 582, "\u2581That": 583, "\u2581sign": 584, "\u2581home": 585, "\u2581why": 586, "\u2581ready": 587, "\u2581ears": 588, "\u2581feast": 589, "\u2581turn": 590, "\u2581sleep": 591, "\u2581eternal": 592, "en": 593, "\u2581didn": 594, "\u2581saved": 595, "\u2581spider": 596, "\u2581big": 597, "\u2581straightway": 598, "\u2581others": 599, "\u2581along": 600, "\u2581departed": 601, "\u2581rat": 602, "\u2581wilderness": 603, "\u2581wisdom": 604, "\u2581Abram": 605, "\u2581ark": 606, "\u2581whatsoever": 607, "\u2581passed": 608, "\u2581seeing": 609, "\u2581loved": 610, "\u2581need": 611, "\u2581something": 612, "\u2581except": 613, "\u2581better": 614, "\u2581till": 615, "\u2581wine": 616, "\u2581within": 617, "ve": 618, "ers": 619, "\u2581wind": 620, "\u2581commandment": 621, "gat": 622, "You": 623, "\u2581seem": 624, "\u2581linen": 625, "out": 626, "us": 627, "\u2581nations": 628, "\u2581its": 629, "\u2581standing": 630, "\u2581leave": 631, "\u2581follow": 632, "\u2581write": 633, "\u2581T": 634, "\u2581beginning": 635, "\u2581sitting": 636, "\u2581saints": 637, "erily": 638, "\u2581His": 639, "\u2581appeared": 640, "\u2581goose": 641, "\u2581mountains": 642, "\u2581reason": 643, "\u2581top": 644, "\u2581deep": 645, "\u2581present": 646, "\u2581fulfilled": 647, "\u2581knowledge": 648, "\u2581Come": 649, "\u2581scribes": 650, "\u2581ought": 651, "an": 652, "\u2581air": 653, "\u2581tent": 654, "\u2581David": 655, "\u2581Laban": 656, "\u2581authority": 657, "\u2581rather": 658, "\u2581thyself": 659, "\u2581Bless": 660, "\u2581wilt": 661, "\u2581sh": 662, "\u2581cut": 663, "\u2581husband": 664, "\u2581meet": 665, "\u2581wrath": 666, "\u2581behind": 667, "\u2581pure": 668, "If": 669, "\u2581yea": 670, "\u2581want": 671, "\u2581destroy": 672, "\u2581Chap": 673, "\u2581afraid": 674, "\u2581congregation": 675, "\u2581baptized": 676, "\u2581foot": 677, "\u2581generations": 678, "\u2581leaves": 679, "\u2581kind": 680, "\u2581throne": 681, "\u2581help": 682, "\u2581visit": 683, "hall": 684, "\u2581apostles": 685, "\u2581master": 686, "\u2581sick": 687, "\u2581Canaan": 688, "\u2581bound": 689, "\u2581Galilee": 690, "\u2581next": 691, "\u2581replied": 692, "\u2581try": 693, "\u2581wherein": 694, "\u2581cup": 695, "\u2581soldiers": 696, "\u2581garments": 697, "\u2581teaching": 698, "or": 699, "\u2581watch": 700, "\u2581woods": 701, "\u2581boy": 702, "\u2581friend": 703, "\u2581p": 704, "\u2581deliver": 705, "le": 706, "\u2581deal": 707, "\u2581sockets": 708, "\u2581Take": 709, "\u2581worthy": 710, "\u2581beloved": 711, "\u2581therein": 712, "\u2581bed": 713, "\u2581boys": 714, "\u2581thence": 715, "\u2581knoweth": 716, "\u2581hair": 717, "\u2581preach": 718, "\u2581meat": 719, "\u2581f": 720, "\u2581arose": 721, "\u2581six": 722, "\u2581knowing": 723, "\u2581has": 724, "\u2581nigh": 725, "\u2581twenty": 726, "\u2581salvation": 727, "\u2581Noah": 728, "\u2581rain": 729, "\u2581thus": 730, "\u2581held": 731, "\u2581E": 732, "\u2581fast": 733, "\u2581signs": 734, "\u2581suffer": 735, "\u2581At": 736, "\u2581teach": 737, "\u2581eye": 738, "\u2581blind": 739, "\u2581smell": 740, "\u2581clean": 741, "\u2581M": 742, "\u2581curtain": 743, "\u2581testimony": 744, "\u2581straw": 745, "\u2581everything": 746, "\u2581blue": 747, "\u2581firstborn": 748, "\u2581Bear": 749, "\u2581sit": 750, "\u2581free": 751, "\u2581soon": 752, "\u2581cubits": 753, "\u2581desire": 754, "p": 755, "\u2581hearts": 756, "\u2581honor": 757, "\u2581Pilate": 758, "\u2581enough": 759, "\u2581Therefore": 760, "\u2581lifted": 761, "\u2581once": 762, "\u2581demons": 763, "\u2581Indians": 764, "\u2581perfect": 765, "\u2581nation": 766, "\u2581doeth": 767, "What": 768, "\u2581Do": 769, "\u2581No": 770, "\u2581abide": 771, "\u2581Rachel": 772, "\u2581Even": 773, "\u2581bega": 774, "\u2581By": 775, "\u2581forty": 776, "\u2581Jud": 777, "\u2581red": 778, "drew": 779, "\u2581sacrifice": 780, "\u2581P": 781, "\u2581court": 782, "\u2581sister": 783, "\u2581cloud": 784, "\u2581named": 785, "\u2581table": 786, "\u2581mountain": 787, "\u2581answer": 788, "\u2581alive": 789, "\u2581Judah": 790, "\u2581camp": 791, "\u2581moved": 792, "\u2581greater": 793, "\u2581evening": 794, "\u2581dream": 795, "al": 796, "ous": 797, "\u2581matter": 798, "\u2581month": 799, "\u2581verily": 800, "\u2581Mary": 801, "\u2581broken": 802, "able": 803, "\u2581lie": 804, "\u2581Yea": 805, "\u2581sound": 806, "\u2581promise": 807, "\u2581Where": 808, "\u2581boat": 809, "cross": 810, "S": 811, "\u2581gather": 812, "\u2581ate": 813, "\u2581book": 814, "\u2581After": 815, "\u2581dwelt": 816, "\u2581enemies": 817, "\u2581faithful": 818, "\u2581Of": 819, "\u2581mighty": 820, "\u2581prison": 821, "\u2581tongue": 822, "\u2581kings": 823, "\u2581wait": 824, "\u2581multitudes": 825, "\u2581presence": 826, "\u2581taught": 827, "\u2581grew": 828, "\u2581carried": 829, "\u2581since": 830, "\u2581sold": 831, "\u2581hanging": 832, "\u2581almo": 833, "ion": 834, "\u2581led": 835, "\u2581preached": 836, "\u2581cross": 837, "\u2581start": 838, "ies": 839, "It": 840, "less": 841, "\u2581walking": 842, "\u2581journey": 843, "\u2581synagogue": 844, "\u2581rock": 845, "\u2581worship": 846, "\u2581lo": 847, "\u2581purple": 848, "\u2581Sarah": 849, "\u2581felt": 850, "\u2581hearken": 851, "\u2581sweet": 852, "\u2581thirty": 853, "\u2581oil": 854, "\u2581B": 855, "sought": 856, "\u2581times": 857, "\u2581war": 858, "\u2581goeth": 859, "\u2581re": 860, "\u2581crate": 861, "\u2581point": 862, "\u2581understand": 863, "\u2581stones": 864, "\u2581rich": 865, "\u2581please": 866, "\u2581eight": 867, "\u2581loud": 868, "\u2581resurrection": 869, "\u2581least": 870, "\u2581trees": 871, "\u2581early": 872, "\u2581burnt": 873, "as": 874, "\u2581measure": 875, "\u2581sword": 876, "\u2581fellow": 877, "\u2581egg": 878, "\u2581offer": 879, "\u2581Herod": 880, "\u2581Littlefish": 881, "\u2581ourselves": 882, "\u2581branches": 883, "\u2581neck": 884, "\u2581warm": 885, "\u2581brass": 886, "\u2581rings": 887, "\u2581vain": 888, "\u2581blessing": 889, "\u2581speaketh": 890, "\u2581killed": 891, "\u2581souls": 892, "\u2581service": 893, "\u2581ear": 894, "on": 895, "\u2581N": 896, "fore": 897, "\u2581wives": 898, "\u2581else": 899, "\u2581herself": 900, "\u2581younger": 901, "\u2581arise": 902, "\u2581rulers": 903, "ment": 904, "\u2581boards": 905, "\u2581See": 906, "\u2581bless": 907, "\u2581prayer": 908, "\u2581continue": 909, "\u2581strength": 910, "\u2581fifty": 911, "\u2581beyond": 912, "\u2581milk": 913, "\u2581lead": 914, "\u2581morrow": 915, "\u2581healed": 916, "\u2581open": 917, "body": 918, "\u2581generation": 919, "\u2581names": 920, "\u2581On": 921, "\u2581manifest": 922, "in": 923, "\u2581false": 924, "\u2581Thu": 925, "\u2581scarlet": 926, "\u2581apart": 927, "\u2581quit": 928, "\u2581Teacher": 929, "\u2581James": 930, "\u2581spread": 931, "\u2581fled": 932, "\u2581judged": 933, "\u2581number": 934, "\u2581black": 935, "\u2581gift": 936, "\u2581read": 937, "\u2581smoke": 938, "\u2581rejoice": 939, "\u2581poor": 940, "\u2581buried": 941, "\u2581grey": 942, "\u2581wrought": 943, "\u2581dry": 944, "\u2581already": 945, "\u2581soil": 946, "\u2581front": 947, "\u2581abideth": 948, "\u2581age": 949, "\u2581appointed": 950, "\u2581Lot": 951, "\u2581pillars": 952, "\u2581horses": 953, "\u2581pieces": 954, "\u2581means": 955, "\u2581friends": 956, "\u2581break": 957, "\u2581build": 958, "\u2581order": 959, "\u2581apple": 960, "\u2581speaking": 961, "Well": 962, "\u2581weak": 963, "\u2581houses": 964, "\u2581pen": 965, "\u2581crown": 966, "\u2581return": 967, "one": 968, "\u2581low": 969, "\u2581Satan": 970, "\u2581making": 971, "\u2581Leah": 972, "\u2581Fair": 973, "\u2581Nation": 974, "\u2581dust": 975, "\u2581east": 976, "\u2581gain": 977, "\u2581Thy": 978, "\u2581gods": 979, "\u2581sinners": 980, "\u2581shew": 981, "\u2581fat": 982, "ward": 983, "it": 984, "ty": 985, "\u2581gate": 986, "rom": 987, "\u2581comfort": 988, "\u2581places": 989, "\u2581corn": 990, "\u2581shame": 991, "\u2581worshipped": 992, "\u2581fallen": 993, "\u2581stopped": 994, "\u2581vessels": 995, "\u2581thanks": 996, "\u2581heavens": 997, "\u2581giveth": 998, "\u2581bad": 999, "\u2581stay": 1000, "\u2581tomb": 1001, "much": 1002, "\u2581length": 1003, "\u2581anoint": 1004, "\u2581close": 1005, "\u2581praise": 1006, "\u2581draw": 1007, "\u2581unclean": 1008, "\u2581grow": 1009, "\u2581Wolf": 1010, "\u2581beautiful": 1011, "\u2581crucified": 1012, "\u2581kiss": 1013, "\u2581ephod": 1014, "\u2581circumcision": 1015, "\u2581trough": 1016, "\u2581cold": 1017, "\u2581justified": 1018, "\u2581Give": 1019, "\u2581course": 1020, "\u2581King": 1021, "\u2581finished": 1022, "\u2581lost": 1023, "\u2581climbed": 1024, "\u2581animals": 1025, "with": 1026, "ation": 1027, "\u2581run": 1028, "el": 1029, "\u2581famine": 1030, "h": 1031, "\u2581board": 1032, "\u2581command": 1033, "\u2581feel": 1034, "\u2581exceeding": 1035, "\u2581rise": 1036, "\u2581wrong": 1037, "\u2581Philip": 1038, "\u2581abroad": 1039, "\u2581Rebekah": 1040, "\u2581devil": 1041, "\u2581shut": 1042, "\u2581south": 1043, "\u2581past": 1044, "\u2581Judas": 1045, "\u2581moment": 1046, "\u2581itself": 1047, "\u2581prepared": 1048, "\u2581talked": 1049, "\u2581often": 1050, "\u2581seventh": 1051, "\u2581offered": 1052, "\u2581suffered": 1053, "\u2581Not": 1054, "\u2581seat": 1055, "\u2581working": 1056, "\u2581commandments": 1057, "\u2581burn": 1058, "ur": 1059, "\u2581sorrow": 1060, "\u2581scripture": 1061, "\u2581Indian": 1062, "\u2581dis": 1063, "\u2581best": 1064, "\u2581perish": 1065, "\u2581grass": 1066, "\u2581office": 1067, "\u2581foolish": 1068, "\u2581Cherokee": 1069, "\u2581asleep": 1070, "\u2581beseech": 1071, "\u2581staves": 1072, "\u2581summer": 1073, "\u2581reward": 1074, "\u2581passover": 1075, "\u2581speech": 1076, "\u2581room": 1077, "\u2581conceived": 1078, "\u2581Amen": 1079, "\u2581green": 1080, "\u2581crowd": 1081, "A": 1082, "\u2581pleased": 1083, "\u2581covered": 1084, "\u2581believeth": 1085, "\u2581understanding": 1086, "\u2581flocks": 1087, "\u2581tongues": 1088, "\u2581members": 1089, "\u2581met": 1090, "\u2581season": 1091, "\u2581smite": 1092, "\u2581counsel": 1093, "\u2581hearing": 1094, "\u2581edge": 1095, "\u2581bow": 1096, "\u2581image": 1097, "\u2581captain": 1098, "\u2581parable": 1099, "\u2581tribe": 1100, "\u2581piece": 1101, "gotten": 1102, "\u2581sharp": 1103, "\u2581reign": 1104, "\u2581care": 1105, "\u2581bright": 1106, "\u2581subject": 1107, "\u2581fornication": 1108, "\u2581patience": 1109, "\u2581salute": 1110, "\u2581writing": 1111, "\u2581sky": 1112, "\u2581wept": 1113, "\u2581swim": 1114, "\u2581guard": 1115, "\u2581buy": 1116, "\u2581slay": 1117, "\u2581divided": 1118, "\u2581beheld": 1119, "\u2581eaten": 1120, "\u2581troubled": 1121, "\u2581dur": 1122, "\u2581legs": 1123, "\u2581crying": 1124, "\u2581riches": 1125, "\u2581hid": 1126, "\u2581loveth": 1127, "\u2581wanted": 1128, "\u2581forward": 1129, "am": 1130, "\u2581prayed": 1131, "ng": 1132, "\u2581committe": 1133, "\u2581depart": 1134, "ful": 1135, "\u2581duke": 1136, "\u2581creature": 1137, "\u2581flock": 1138, "\u2581b": 1139, "\u2581lift": 1140, "\u2581repent": 1141, "\u2581short": 1142, "\u2581strange": 1143, "\u2581forgive": 1144, "\u2581eating": 1145, "\u2581ox": 1146, "\u2581incense": 1147, "\u2581large": 1148, "\u2581account": 1149, "\u2581truck": 1150, "\u2581spiritual": 1151, "\u2581Adam": 1152, "\u2581glorified": 1153, "\u2581Sodom": 1154, "\u2581pay": 1155, "ittim": 1156, "\u2581Lamb": 1157, "\u2581immediately": 1158, "\u2581circumcised": 1159, "\u2581churches": 1160, "\u2581yard": 1161, "\u2581Th": 1162, "\u2581poured": 1163, "\u2581clothes": 1164, "\u2581closed": 1165, "\u2581thereon": 1166, "\u2581raise": 1167, "\u2581touched": 1168, "\u2581breadth": 1169, "\u2581bowed": 1170, "\u2581receiveth": 1171, "\u2581sore": 1172, "\u2581rod": 1173, "\u2581besought": 1174, "\u2581bit": 1175, "ir": 1176, "\u2581putt": 1177, "\u2581wax": 1178, "\u2581e": 1179, "\u2581mean": 1180, "\u2581disciple": 1181, "\u2581stranger": 1182, "\u2581touch": 1183, "\u2581carry": 1184, "\u2581wash": 1185, "\u2581glad": 1186, "\u2581quiet": 1187, "\u2581lawful": 1188, "\u2581council": 1189, "\u2581Barnabas": 1190, "\u2581Woe": 1191, "\u2581garden": 1192, "\u2581iniquity": 1193, "\u2581hurt": 1194, "\u2581whither": 1195, "\u2581cities": 1196, "\u2581tried": 1197, "\u2581empty": 1198, "\u2581deny": 1199, "\u2581lad": 1200, "\u2581bought": 1201, "\u2581exceedingly": 1202, "\u2581pulled": 1203, "\u2581pit": 1204, "\u2581happened": 1205, "\u2581longer": 1206, "\u2581charged": 1207, "\u2581hated": 1208, "\u2581manifested": 1209, "\u2581knowest": 1210, "\u2581worketh": 1211, "\u2581less": 1212, "\u2581greatly": 1213, "\u2581sac": 1214, "\u2581reach": 1215, "taking": 1216, "\u2581breastplate": 1217, "\u2581Lo": 1218, "\u2581garment": 1219, "of": 1220, "\u2581multiply": 1221, "\u2581t": 1222, "\u2581obey": 1223, "\u2581car": 1224, "ri": 1225, "\u2581Some": 1226, "ted": 1227, "\u2581road": 1228, "\u2581Jackson": 1229, "\u2581couple": 1230, "\u2581guess": 1231, "\u2581spent": 1232, "\u2581bondage": 1233, "\u2581created": 1234, "\u2581built": 1235, "\u2581brown": 1236, "\u2581swear": 1237, "at": 1238, "\u2581quickly": 1239, "giving": 1240, "\u2581self": 1241, "\u2581h": 1242, "o": 1243, "\u2581nine": 1244, "\u2581stretched": 1245, "\u2581trouble": 1246, "\u2581Are": 1247, "\u2581couldn": 1248, "\u2581wonders": 1249, "\u2581touching": 1250, "\u2581stars": 1251, "sar": 1252, "\u2581purpose": 1253, "\u2581gifts": 1254, "\u2581heads": 1255, "and": 1256, "is": 1257, "day": 1258, "\u2581D": 1259, "ear": 1260, "ped": 1261, "\u2581afternoon": 1262, "\u2581foundation": 1263, "\u2581appear": 1264, "\u2581Jew": 1265, "\u2581cry": 1266, "\u2581rule": 1267, "\u2581wall": 1268, "\u2581spirits": 1269, "\u2581straight": 1270, "\u2581Abimelech": 1271, "\u2581bottom": 1272, "\u2581caught": 1273, "\u2581conscience": 1274, "\u2581twin": 1275, "\u2581unleavened": 1276, "\u2581Elijah": 1277, "\u2581hungry": 1278, "\u2581story": 1279, "\u2581winter": 1280, "\u2581teeth": 1281, "\u2581catch": 1282, "\u2581household": 1283, "\u2581sinned": 1284, "\u2581With": 1285, "\u2581really": 1286, "\u2581risen": 1287, "\u2581learned": 1288, "\u2581beat": 1289, "\u2581sides": 1290, "\u2581ways": 1291, "\u2581watched": 1292, "\u2581ones": 1293, "\u2581skins": 1294, "im": 1295, "\u2581calling": 1296, "\u2581months": 1297, "\u2581faces": 1298, "\u2581horse": 1299, "\u2581H": 1300, "i": 1301, "for": 1302, "\u2581state": 1303, "\u2581tail": 1304, "\u2581creek": 1305, "\u2581ruler": 1306, "\u2581act": 1307, "Oh": 1308, "\u2581parts": 1309, "\u2581feed": 1310, "\u2581count": 1311, "\u2581double": 1312, "\u2581secret": 1313, "\u2581abound": 1314, "\u2581loose": 1315, "\u2581wild": 1316, "\u2581thin": 1317, "\u2581spoke": 1318, "\u2581Levi": 1319, "\u2581hither": 1320, "\u2581raiment": 1321, "\u2581glorify": 1322, "\u2581afar": 1323, "\u2581vineyard": 1324, "\u2581Ridge": 1325, "\u2581space": 1326, "\u2581pigpen": 1327, "\u2581goats": 1328, "\u2581wrote": 1329, "\u2581suddenly": 1330, "\u2581creep": 1331, "\u2581forgiven": 1332, "\u2581outside": 1333, "\u2581maid": 1334, "\u2581golden": 1335, "\u2581hot": 1336, "\u2581witnesses": 1337, "\u2581officers": 1338, "\u2581ends": 1339, "\u2581heed": 1340, "\u2581birds": 1341, "\u2581wet": 1342, "ar": 1343, "\u2581mayest": 1344, "\u2581eateth": 1345, "\u2581heavenly": 1346, "\u2581synagogues": 1347, "\u2581Whi": 1348, "\u2581feared": 1349, "\u2581beasts": 1350, "\u2581skin": 1351, "\u2581charge": 1352, "w": 1353, "rew": 1354, "\u2581pleasure": 1355, "\u2581pillar": 1356, "He": 1357, "\u2581L": 1358, "either": 1359, "\u2581remain": 1360, "\u2581play": 1361, "\u2581sail": 1362, "\u2581report": 1363, "ake": 1364, "\u2581confess": 1365, "\u2581inherit": 1366, "\u2581Benjamin": 1367, "\u2581Isaiah": 1368, "\u2581array": 1369, "\u2581haply": 1370, "\u2581remembrance": 1371, "\u2581womb": 1372, "\u2581Timothy": 1373, "\u2581mystery": 1374, "\u2581daily": 1375, "\u2581hail": 1376, "\u2581tired": 1377, "\u2581fence": 1378, "\u2581likewise": 1379, "\u2581inheritance": 1380, "\u2581arrived": 1381, "\u2581Put": 1382, "\u2581Have": 1383, "\u2581inside": 1384, "\u2581talking": 1385, "\u2581camels": 1386, "\u2581weight": 1387, "\u2581lose": 1388, "ah": 1389, "\u2581breath": 1390, "\u2581heareth": 1391, "\u2581willing": 1392, "\u2581d": 1393, "\u2581g": 1394, "\u2581c": 1395, "rs": 1396, "\u2581spring": 1397, "ity": 1398, "\u2581fight": 1399, "\u2581\u2014": 1400, "\u2581candlestick": 1401, "\u2581village": 1402, "\u2581lamb": 1403, "\u2581cover": 1404, "\u2581coat": 1405, "\u2581finger": 1406, "adventure": 1407, "\u2581W": 1408, "\u2581song": 1409, "Yes": 1410, "\u2581bury": 1411, "\u2581fashion": 1412, "\u2581establish": 1413, "\u2581thank": 1414, "\u2581possess": 1415, "\u2581stumble": 1416, "\u2581flee": 1417, "\u2581ashamed": 1418, "\u2581dominion": 1419, "\u2581flood": 1420, "\u2581knife": 1421, "\u2581trail": 1422, "\u2581devour": 1423, "\u2581precious": 1424, "\u2581Saviour": 1425, "\u2581vail": 1426, "\u2581happy": 1427, "\u2581marry": 1428, "\u2581further": 1429, "\u2581Perry": 1430, "\u2581possible": 1431, "\u2581elect": 1432, "\u2581adultery": 1433, "\u2581smote": 1434, "\u2581sware": 1435, "\u2581amazed": 1436, "\u2581stick": 1437, "\u2581slowly": 1438, "\u2581scattered": 1439, "\u2581sort": 1440, "\u2581hardened": 1441, "\u2581sixth": 1442, "\u2581hire": 1443, "\u2581bones": 1444, "\u2581borne": 1445, "\u2581hence": 1446, "\u2581liveth": 1447, "\u2581burned": 1448, "\u2581feeling": 1449, "ily": 1450, "\u2581notice": 1451, "\u2581destroyed": 1452, "\u2581strangers": 1453, "\u2581doing": 1454, "\u2581Is": 1455, "\u2581R": 1456, "\u2581perceive": 1457, "\u2581Salut": 1458, "\u2581hole": 1459, "\u2581Hebrew": 1460, "\u2581cubit": 1461, "\u2581ship": 1462, "\u2581sanctif": 1463, "\u2581curse": 1464, "\u2581grave": 1465, "\u2581naked": 1466, "\u2581supper": 1467, "\u2581Macedonia": 1468, "\u2581Spearfinger": 1469, "\u2581behalf": 1470, "\u2581ignorant": 1471, "\u2581thither": 1472, "\u2581bottle": 1473, "\u2581crawl": 1474, "\u2581Saul": 1475, "\u2581idea": 1476, "\u2581loaves": 1477, "\u2581reproach": 1478, "\u2581cheer": 1479, "\u2581moon": 1480, "\u2581Arise": 1481, "\u2581tidings": 1482, "\u2581handmaid": 1483, "\u2581decided": 1484, "\u2581horns": 1485, "\u2581wide": 1486, "\u2581idols": 1487, "\u2581fly": 1488, "\u2581shoes": 1489, "\u2581knees": 1490, "\u2581bonds": 1491, "\u2581washed": 1492, "\u2581goods": 1493, "ate": 1494, "\u2581either": 1495, "\u2581letters": 1496, "\u2581use": 1497, "\u2581move": 1498, "\u2581eggs": 1499, "\u2581tables": 1500, "\u2581sacrifices": 1501, "g": 1502, "\u2581thinking": 1503, "\u2581form": 1504, "\u2581needs": 1505, "nto": 1506, "\u2581accuse": 1507, "\u2581bearing": 1508, "\u2581question": 1509, "\u2581demon": 1510, "\u2581affliction": 1511, "\u2581governor": 1512, "\u2581root": 1513, "\u2581possession": 1514, "\u2581neighbor": 1515, "\u2581wheel": 1516, "\u2581host": 1517, "\u2581corner": 1518, "\u2581afterward": 1519, "\u2581clear": 1520, "How": 1521, "But": 1522, "\u2581worry": 1523, "\u2581regard": 1524, "\u2581proceed": 1525, "nt": 1526, "\u2581forbid": 1527, "\u2581shoulder": 1528, "\u2581wicked": 1529, "\u2581grievous": 1530, "\u2581late": 1531, "\u2581Cain": 1532, "\u2581Claire": 1533, "\u2581Jordan": 1534, "\u2581abode": 1535, "\u2581centurion": 1536, "\u2581company": 1537, "\u2581marriage": 1538, "\u2581neighbour": 1539, "\u2581flies": 1540, "\u2581parents": 1541, "\u2581families": 1542, "\u2581struck": 1543, "\u2581breakfast": 1544, "\u2581nought": 1545, "\u2581business": 1546, "\u2581repentance": 1547, "\u2581subjection": 1548, "\u2581brake": 1549, "\u2581Most": 1550, "\u2581fill": 1551, "\u2581tiny": 1552, "\u2581cock": 1553, "\u2581begin": 1554, "\u2581direction": 1555, "\u2581sell": 1556, "\u2581robe": 1557, "\u2581anger": 1558, "\u2581marvelled": 1559, "\u2581Art": 1560, "\u2581tied": 1561, "ting": 1562, "\u2581reckoned": 1563, "\u2581Here": 1564, "\u2581covering": 1565, "ever": 1566, "\u2581lusts": 1567, "\u2581served": 1568, "\u2581fully": 1569, "\u2581height": 1570, "\u2581corners": 1571, "\u2581journeyed": 1572, "\u2581hate": 1573, "\u2581faint": 1574, "\u2581Her": 1575, "\u2581scriptures": 1576, "\u2581gates": 1577, "\u2581declare": 1578, "\u2581falling": 1579, "\u2581treasure": 1580, "the": 1581, "\u2581G": 1582, "\u2581commit": 1583, "ance": 1584, "\u2581voices": 1585, "\u2581labor": 1586, "ish": 1587, "\u2581tribulation": 1588, "red": 1589, "\u2581join": 1590, "\u2581arm": 1591, "\u2581apostle": 1592, "The": 1593, "times": 1594, "That": 1595, "\u2581profit": 1596, "\u2581utter": 1597, "\u2581strip": 1598, "\u2581change": 1599, "\u2581leaven": 1600, "\u2581stop": 1601, "\u2581refuse": 1602, "\u2581plain": 1603, "\u2581natural": 1604, "\u2581chose": 1605, "\u2581Again": 1606, "\u2581Brethren": 1607, "\u2581Grace": 1608, "\u2581Nazareth": 1609, "\u2581beneath": 1610, "\u2581geese": 1611, "\u2581middle": 1612, "\u2581woe": 1613, "\u2581fourteen": 1614, "\u2581fair": 1615, "\u2581respect": 1616, "\u2581spoil": 1617, "\u2581Asia": 1618, "\u2581abundantly": 1619, "\u2581Nay": 1620, "\u2581drove": 1621, "\u2581wish": 1622, "\u2581lying": 1623, "\u2581Know": 1624, "\u2581rent": 1625, "\u2581revealed": 1626, "\u2581Dr": 1627, "\u2581spin": 1628, "\u2581talents": 1629, "\u2581clothed": 1630, "\u2581ago": 1631, "\u2581persons": 1632, "\u2581remained": 1633, "ill": 1634, "\u2581fourth": 1635, "\u2581stayed": 1636, "\u2581wouldest": 1637, "\u2581creatures": 1638, "\u2581following": 1639, "\u2581perceiv": 1640, "\u2581drive": 1641, "\u2581rocks": 1642, "\u2581rush": 1643, "\u2581race": 1644, "\u2581star": 1645, "\u2581nights": 1646, "\u2581trust": 1647, "\u2581ass": 1648, "\u2581wear": 1649, "\u2581pain": 1650, "\u2581oath": 1651, "\u2581snow": 1652, "\u2581vision": 1653, "\u2581ram": 1654, "\u2581fowl": 1655, "\u2581miracle": 1656, "\u2581male": 1657, "\u2581serpent": 1658, "\u2581learn": 1659, "\u2581talk": 1660, "\u2581widow": 1661, "\u2581border": 1662, "ry": 1663, "k": 1664, "\u2581won": 1665, "\u2581redeem": 1666, "\u2581escape": 1667, "\u2581several": 1668, "\u2581lot": 1669, "he": 1670, "\u2581Antioch": 1671, "\u2581Crockett": 1672, "\u2581Ishmael": 1673, "\u2581Reuben": 1674, "\u2581Washington": 1675, "\u2581baptism": 1676, "\u2581cunning": 1677, "\u2581everlasting": 1678, "\u2581language": 1679, "\u2581leaving": 1680, "\u2581truly": 1681, "\u2581Sarai": 1682, "\u2581Sinai": 1683, "\u2581astray": 1684, "\u2581dawn": 1685, "\u2581slew": 1686, "\u2581nature": 1687, "\u2581sitteth": 1688, "\u2581colonel": 1689, "\u2581swallow": 1690, "\u2581Shechem": 1691, "\u2581Howbeit": 1692, "\u2581sanctuary": 1693, "\u2581tarried": 1694, "\u2581grain": 1695, "\u2581bitter": 1696, "\u2581yellow": 1697, "\u2581interpretation": 1698, "\u2581sanctified": 1699, "\u2581oxen": 1700, "\u2581sorry": 1701, "\u2581wheat": 1702, "\u2581fishes": 1703, "\u2581farm": 1704, "\u2581sown": 1705, "\u2581pail": 1706, "\u2581exalted": 1707, "\u2581Te": 1708, "\u2581weeping": 1709, "\u2581loosed": 1710, "\u2581line": 1711, "\u2581Look": 1712, "\u2581lower": 1713, "\u2581tears": 1714, "\u2581wipe": 1715, "ory": 1716, "\u2581sailed": 1717, "\u2581calleth": 1718, "\u2581counted": 1719, "\u2581comforted": 1720, "\u2581lines": 1721, "\u2581borders": 1722, "\u2581north": 1723, "\u2581noise": 1724, "\u2581watching": 1725, "\u2581turning": 1726, "\u2581st": 1727, "\u2581doest": 1728, "\u2581Br": 1729, "\u2581nose": 1730, "\u2581con": 1731, "\u2581spiders": 1732, "\u2581inso": 1733, "\u2581Oh": 1734, "\u2581cr": 1735, "\u2581offerings": 1736, "\u2581thoughts": 1737, "\u2581r": 1738, "\u2581per": 1739, "\u2581hide": 1740, "\u2581cabin": 1741, "\u2581exhort": 1742, "\u2581fig": 1743, "\u2581hill": 1744, "to": 1745, "Charlotte": 1746, "Now": 1747, "\u2581lack": 1748, "ch": 1749, "\u2581Ha": 1750, "\u2581dirt": 1751, "\u2581swam": 1752, "\u2581overcome": 1753, "\u2581building": 1754, "\u2581Asmeret": 1755, "\u2581Ephesus": 1756, "\u2581Hittite": 1757, "\u2581Nahor": 1758, "\u2581Simeon": 1759, "\u2581cellar": 1760, "\u2581harlot": 1761, "\u2581rope": 1762, "\u2581yield": 1763, "\u2581running": 1764, "\u2581Damascus": 1765, "\u2581different": 1766, "\u2581drank": 1767, "\u2581godliness": 1768, "\u2581common": 1769, "\u2581wings": 1770, "\u2581shook": 1771, "\u2581compassion": 1772, "\u2581grant": 1773, "\u2581beaten": 1774, "\u2581pick": 1775, "\u2581bigge": 1776, "\u2581chosen": 1777, "\u2581pool": 1778, "\u2581thorns": 1779, "\u2581asses": 1780, "\u2581An": 1781, "\u2581tempted": 1782, "\u2581jumped": 1783, "\u2581Did": 1784, "\u2581chains": 1785, "\u2581row": 1786, "\u2581Hear": 1787, "\u2581mourning": 1788, "men": 1789, "\u2581wor": 1790, "\u2581goodness": 1791, "\u2581herds": 1792, "\u2581pipe": 1793, "ants": 1794, "\u2581bowls": 1795, "\u2581pale": 1796, "\u2581lamps": 1797, "\u2581breaking": 1798, "\u2581arms": 1799, "\u2581lambs": 1800, "\u2581sayest": 1801, "\u2581Shem": 1802, "\u2581de": 1803, "\u2581withal": 1804, "\u2581prayers": 1805, "\u2581heal": 1806, "\u2581drinking": 1807, "\u2581commun": 1808, "\u2581judges": 1809, "\u2581fruits": 1810, "\u2581roll": 1811, "\u2581desert": 1812, "\u2581bringing": 1813, "\u2581girdle": 1814, "\u2581cave": 1815, "age": 1816, "\u2581stream": 1817, "\u2581week": 1818, "\u2581Greek": 1819, "\u2581bird": 1820, "\u2581glorying": 1821, "\u2581reap": 1822, "Good": 1823, "\u2581flow": 1824, "\u2581render": 1825, "laid": 1826, "\u2581letter": 1827, "\u2581flat": 1828, "\u2581haste": 1829, "\u2581Man": 1830, "ollow": 1831, "\u2581stumbling": 1832, "\u2581Almighty": 1833, "\u2581anxious": 1834, "\u2581bodies": 1835, "\u2581bridegroom": 1836, "\u2581damsel": 1837, "\u2581disobedient": 1838, "\u2581divers": 1839, "\u2581necessary": 1840, "\u2581obedience": 1841, "\u2581prosper": 1842, "\u2581screamed": 1843, "\u2581silence": 1844, "\u2581uncircumcision": 1845, "\u2581diligence": 1846, "\u2581iron": 1847, "\u2581trumpet": 1848, "\u2581harvest": 1849, "\u2581Stephen": 1850, "\u2581lips": 1851, "\u2581slain": 1852, "\u2581Haran": 1853, "\u2581honey": 1854, "\u2581rising": 1855, "\u2581Nancy": 1856, "\u2581acceptable": 1857, "\u2581spare": 1858, "\u2581boldness": 1859, "\u2581overlay": 1860, "\u2581temptation": 1861, "\u2581lodge": 1862, "\u2581steal": 1863, "\u2581worse": 1864, "\u2581Can": 1865, "\u2581hypocrites": 1866, "\u2581Sure": 1867, "\u2581ceased": 1868, "\u2581Sir": 1869, "\u2581removed": 1870, "\u2581defiled": 1871, "ite": 1872, "\u2581goslings": 1873, "\u2581henceforth": 1874, "\u2581shortly": 1875, "\u2581hell": 1876, "\u2581obtained": 1877, "THE": 1878, "wo": 1879, "\u2581onto": 1880, "\u2581stared": 1881, "\u2581sacrificed": 1882, "\u2581soft": 1883, "\u2581frogs": 1884, "\u2581Greeks": 1885, "\u2581widows": 1886, "\u2581pro": 1887, "\u2581Sen": 1888, "\u2581comes": 1889, "\u2581needed": 1890, "ors": 1891, "\u2581seeth": 1892, "\u2581prove": 1893, "\u2581sad": 1894, "\u2581rebuke": 1895, "\u2581holding": 1896, "\u2581ill": 1897, "ge": 1898, "rolled": 1899, "\u2581liked": 1900, "score": 1901, "\u2581fore": 1902, "\u2581occasion": 1903, "No": 1904, "\u2581happen": 1905, "\u2581lust": 1906, "\u2581burden": 1907, "\u2581add": 1908, "c": 1909, "\u2581revelation": 1910, "\u2581region": 1911, "\u2581supplication": 1912, "\u2581shepherd": 1913, "\u2581blanket": 1914, "\u2581Egyptian": 1915, "\u2581mark": 1916, "\u2581dog": 1917, "ris": 1918, "\u2581beside": 1919, "F": 1920, "\u2581salt": 1921, "\u2581laugh": 1922, "\u2581inhabit": 1923, "\u2581interest": 1924, "\u2581condemn": 1925, "\u2581betray": 1926, "\u2581pour": 1927, "\u2581heat": 1928, "\u2581defile": 1929, "ary": 1930, "\u2581je": 1931, "\u2581release": 1932, "\u2581despise": 1933, "\u2581taste": 1934, "\u2581store": 1935, "\u2581slow": 1936, "\u2581vine": 1937, "\u2581Sadducees": 1938, "\u2581America": 1939, "\u2581Lazarus": 1940, "\u2581Manasseh": 1941, "\u2581Sequoyah": 1942, "\u2581awoke": 1943, "\u2581confidence": 1944, "\u2581countenance": 1945, "\u2581doctrine": 1946, "\u2581dumb": 1947, "\u2581multiplied": 1948, "\u2581ointment": 1949, "\u2581recompense": 1950, "\u2581substance": 1951, "\u2581tarry": 1952, "\u2581Hagar": 1953, "\u2581crep": 1954, "\u2581digged": 1955, "\u2581contrary": 1956, "\u2581gander": 1957, "\u2581fellowship": 1958, "\u2581loins": 1959, "\u2581pretty": 1960, "\u2581Zion": 1961, "\u2581understood": 1962, "\u2581continually": 1963, "\u2581unrighteousness": 1964, "\u2581ungodly": 1965, "\u2581loss": 1966, "\u2581wickedness": 1967, "\u2581price": 1968, "\u2581trade": 1969, "\u2581exactly": 1970, "\u2581married": 1971, "\u2581heap": 1972, "\u2581rejected": 1973, "\u2581doorway": 1974, "\u2581stedfastly": 1975, "\u2581carefully": 1976, "\u2581fruitful": 1977, "\u2581shot": 1978, "\u2581stirred": 1979, "\u2581descended": 1980, "\u2581spit": 1981, "\u2581kindness": 1982, "\u2581hunger": 1983, "\u2581prevailed": 1984, "\u2581thick": 1985, "\u2581dying": 1986, "\u2581manure": 1987, "\u2581ring": 1988, "\u2581quietly": 1989, "\u2581loops": 1990, "\u2581bars": 1991, "\u2581town": 1992, "\u2581final": 1993, "\u2581pond": 1994, "\u2581divide": 1995, "xcept": 1996, "\u2581chariots": 1997, "\u2581rejoiced": 1998, "\u2581condemned": 1999, "\u2581cleanse": 2000, "\u2581powers": 2001, "\u2581promised": 2002, "\u2581consider": 2003, "ke": 2004, "time": 2005, "\u2581fasten": 2006, "\u2581desired": 2007, "ach": 2008, "\u2581m": 2009, "\u2581dreamed": 2010, "\u2581seasons": 2011, "\u2581Re": 2012, "\u2581Well": 2013, "\u2581lives": 2014, "unto": 2015, "ight": 2016, "\u2581mo": 2017, "\u2581ca": 2018, "\u2581parted": 2019, "\u2581praying": 2020, "\u2581intend": 2021, "\u2581west": 2022, "\u2581tr": 2023, "\u2581laying": 2024, "\u2581shed": 2025, "\u2581favor": 2026, "\u2581desir": 2027, "\u2581rivers": 2028, "\u2581hang": 2029, "\u2581custom": 2030, "\u2581case": 2031, "\u2581frog": 2032, "\u2581lamp": 2033, "\u2581trap": 2034, "\u2581prophesy": 2035, "what": 2036, "though": 2037, "\u2581fetch": 2038, "\u2581stretch": 2039, "\u2581Say": 2040, "that": 2041, "\u2581Rabbi": 2042, "\u2581endure": 2043, "\u2581owner": 2044, "\u2581complete": 2045, "ug": 2046, "\u2581hung": 2047, "\u2581proud": 2048, "\u2581commend": 2049, "\u2581eleven": 2050, "\u2581content": 2051, "\u2581branch": 2052, "sarea": 2053, "\u2581Babylon": 2054, "\u2581Capernaum": 2055, "\u2581English": 2056, "\u2581Nevertheless": 2057, "\u2581Remember": 2058, "\u2581Titus": 2059, "\u2581cousin": 2060, "\u2581enemy": 2061, "\u2581epistle": 2062, "\u2581fifteen": 2063, "\u2581ghost": 2064, "\u2581thief": 2065, "\u2581travail": 2066, "\u2581Festus": 2067, "\u2581calf": 2068, "\u2581Moreover": 2069, "\u2581broad": 2070, "\u2581compass": 2071, "\u2581excellent": 2072, "\u2581void": 2073, "\u2581stuff": 2074, "\u2581particular": 2075, "\u2581famous": 2076, "\u2581Edom": 2077, "\u2581bidden": 2078, "\u2581prophecy": 2079, "\u2581heavy": 2080, "\u2581family": 2081, "\u2581nay": 2082, "\u2581Which": 2083, "\u2581palm": 2084, "\u2581single": 2085, "\u2581ashes": 2086, "\u2581Abel": 2087, "\u2581jealousy": 2088, "\u2581husbandmen": 2089, "\u2581bind": 2090, "\u2581kindred": 2091, "\u2581Hello": 2092, "\u2581trial": 2093, "\u2581beforehand": 2094, "\u2581shaken": 2095, "bee": 2096, "\u2581cherubims": 2097, "\u2581determined": 2098, "\u2581wander": 2099, "\u2581driven": 2100, "\u2581Homer": 2101, "\u2581portion": 2102, "\u2581later": 2103, "\u2581required": 2104, "\u2581everywhere": 2105, "\u2581ball": 2106, "\u2581fit": 2107, "\u2581wrapp": 2108, "ier": 2109, "\u2581remaineth": 2110, "\u2581increased": 2111, "\u2581pitched": 2112, "\u2581hateth": 2113, "\u2581anybody": 2114, "\u2581hooks": 2115, "\u2581planted": 2116, "\u2581stool": 2117, "\u2581youngest": 2118, "\u2581hunting": 2119, "\u2581publicans": 2120, "\u2581withered": 2121, "b": 2122, "\u2581likeness": 2123, "\u2581stead": 2124, "\u2581betrayed": 2125, "\u2581en": 2126, "\u2581special": 2127, "\u2581does": 2128, "\u2581fugitives": 2129, "Many": 2130, "\u2581tall": 2131, "\u2581aside": 2132, "\u2581standeth": 2133, "\u2581findeth": 2134, "\u2581builded": 2135, "\u2581greatest": 2136, "\u2581numbered": 2137, "\u2581gotten": 2138, "\u2581hosts": 2139, "\u2581reading": 2140, "\u2581Zuckermans": 2141, "\u2581Hebrews": 2142, "\u2581waited": 2143, "\u2581sounded": 2144, "\u2581shoulders": 2145, "ought": 2146, "\u2581tribes": 2147, "\u2581meeting": 2148, "\u2581sleeping": 2149, "if": 2150, "ned": 2151, "stead": 2152, "\u2581masters": 2153, "all": 2154, "nder": 2155, "reached": 2156, "\u2581thousands": 2157, "\u2581Heth": 2158, "\u2581yours": 2159, "\u2581seal": 2160, "ened": 2161, "\u2581Du": 2162, "ic": 2163, "\u2581forget": 2164, "\u2581paper": 2165, "\u2581shadow": 2166, "\u2581animal": 2167, "\u2581vessel": 2168, "\u2581Pharisee": 2169, "\u2581band": 2170, "\u2581elder": 2171, "\u2581sack": 2172, "\u2581shekel": 2173, "\u2581bond": 2174, "\u2581color": 2175, "\u2581herb": 2176, "\u2581prisoner": 2177, "Do": 2178, "Can": 2179, "\u2581doubt": 2180, "\u2581swing": 2181, "\u2581proclaim": 2182, "\u2581reckon": 2183, "\u2581press": 2184, "\u2581suck": 2185, "\u2581weep": 2186, "\u2581deed": 2187, "\u2581restore": 2188, "\u2581observe": 2189, "\u2581memorial": 2190, "elah": 2191, "\u2581broke": 2192, "id": 2193, "ncle": 2194, "\u2581buttermilk": 2195, "\u2581Calhoun": 2196, "\u2581Ephraim": 2197, "\u2581Finally": 2198, "\u2581Gomorrah": 2199, "\u2581Goshen": 2200, "\u2581High": 2201, "\u2581Lichen": 2202, "\u2581Solomon": 2203, "\u2581asunder": 2204, "\u2581creation": 2205, "\u2581female": 2206, "\u2581longsuffering": 2207, "\u2581school": 2208, "\u2581slept": 2209, "\u2581twice": 2210, "\u2581idle": 2211, "\u2581spend": 2212, "\u2581hidden": 2213, "\u2581crieth": 2214, "\u2581oak": 2215, "\u2581alms": 2216, "\u2581destruction": 2217, "\u2581dried": 2218, "\u2581wroth": 2219, "\u2581forehead": 2220, "\u2581steward": 2221, "\u2581colt": 2222, "\u2581Dorian": 2223, "\u2581stole": 2224, "\u2581sang": 2225, "\u2581dump": 2226, "\u2581pasture": 2227, "\u2581scratch": 2228, "\u2581corruption": 2229, "\u2581lawyer": 2230, "\u2581size": 2231, "\u2581fun": 2232, "\u2581denied": 2233, "\u2581tender": 2234, "\u2581kine": 2235, "\u2581trespasses": 2236, "\u2581sow": 2237, "\u2581expect": 2238, "\u2581thanksgiving": 2239, "\u2581pitcher": 2240, "\u2581astonished": 2241, "\u2581discern": 2242, "\u2581ministration": 2243, "\u2581merciful": 2244, "\u2581dash": 2245, "\u2581cook": 2246, "\u2581worth": 2247, "\u2581deer": 2248, "\u2581error": 2249, "\u2581getting": 2250, "\u2581thirst": 2251, "\u2581mill": 2252, "\u2581whispered": 2253, "\u2581bath": 2254, "\u2581drawn": 2255, "\u2581persuaded": 2256, "\u2581dirty": 2257, "\u2581floor": 2258, "\u2581wonderful": 2259, "\u2581warned": 2260, "\u2581belly": 2261, "\u2581partakers": 2262, "\u2581separate": 2263, "\u2581Just": 2264, "\u2581attention": 2265, "\u2581highest": 2266, "\u2581Canaanites": 2267, "\u2581cows": 2268, "\u2581string": 2269, "\u2581sufferings": 2270, "\u2581bowl": 2271, "\u2581Don": 2272, "\u2581drunken": 2273, "\u2581...": 2274, "\u2581str": 2275, "\u2581dwelleth": 2276, "\u2581reported": 2277, "\u2581shekels": 2278, "\u2581West": 2279, "\u2581carrying": 2280, "\u2581burdens": 2281, "\u2581o": 2282, "\u2581hiding": 2283, "\u2581canst": 2284, "\u2581burning": 2285, "\u2581anointed": 2286, "\u2581rams": 2287, "be": 2288, "z": 2289, "ew": 2290, "\u2581heir": 2291, "\u2581fo": 2292, "reby": 2293, "ied": 2294, "\u2581dukes": 2295, "ine": 2296, "\u2581Andrew": 2297, "ad": 2298, "\u2581sing": 2299, "aw": 2300, "\u2581net": 2301, "\u2581rested": 2302, "\u2581La": 2303, "ably": 2304, "\u2581minded": 2305, "\u2581ex": 2306, "\u2581co": 2307, "\u2581claim": 2308, "O": 2309, "hi": 2310, "\u2581spra": 2311, "\u2581mov": 2312, "\u2581w": 2313, "ard": 2314, "\u2581Je": 2315, "wn": 2316, "minded": 2317, "\u2581cloth": 2318, "\u2581fillet": 2319, "\u2581person": 2320, "\u2581leg": 2321, "\u2581thread": 2322, "\u2581log": 2323, "\u2581hatchet": 2324, "ring": 2325, "\u2581sinner": 2326, "\u2581J": 2327, "\u2581soldier": 2328, "\u2581teacher": 2329, "\u2581chamber": 2330, "bye": 2331, "Look": 2332, "C": 2333, "Let": 2334, "which": 2335, "\u2581interpret": 2336, "And": 2337, "\u2581travel": 2338, "\u2581sojourn": 2339, "\u2581veil": 2340, "\u2581inter": 2341, "\u2581appoint": 2342, "te": 2343, "\u2581humble": 2344, "\u2581cease": 2345, "\u2581prepare": 2346, "\u2581nice": 2347, "\u2581pleasant": 2348, "um": 2349, "\u2581direct": 2350, "\u2581unrighteous": 2351, "erhaps": 2352, "\u2581equal": 2353, "\u2581fulfil": 2354, "\u2581suggest": 2355, "\u2581absent": 2356, "\u2581Agrippa": 2357, "\u2581Axe": 2358, "\u2581Baptist": 2359, "\u2581Featherstone": 2360, "\u2581Iscariot": 2361, "\u2581Lamech": 2362, "\u2581Martha": 2363, "\u2581Midian": 2364, "\u2581Wasseton": 2365, "\u2581Zebedee": 2366, "\u2581abiding": 2367, "\u2581crucify": 2368, "\u2581desolate": 2369, "\u2581exercise": 2370, "\u2581laurel": 2371, "\u2581leap": 2372, "\u2581savour": 2373, "\u2581smooth": 2374, "\u2581swine": 2375, "\u2581trembling": 2376, "\u2581Also": 2377, "\u2581Ephron": 2378, "\u2581atonement": 2379, "\u2581fulness": 2380, "\u2581merry": 2381, "\u2581lean": 2382, "\u2581dragon": 2383, "\u2581resist": 2384, "\u2581Sidon": 2385, "\u2581choice": 2386, "\u2581token": 2387, "\u2581defence": 2388, "\u2581Ross": 2389, "\u2581dinner": 2390, "\u2581trip": 2391, "\u2581Enoch": 2392, "\u2581Wayah": 2393, "\u2581chair": 2394, "\u2581uttermost": 2395, "\u2581Ham": 2396, "\u2581plow": 2397, "\u2581lake": 2398, "\u2581kid": 2399, "\u2581Master": 2400, "\u2581coast": 2401, "\u2581horsemen": 2402, "\u2581condemnation": 2403, "\u2581distance": 2404, "\u2581Hamor": 2405, "\u2581pluck": 2406, "\u2581plann": 2407, "\u2581yourself": 2408, "\u2581roof": 2409, "\u2581prize": 2410, "\u2581snare": 2411, "\u2581post": 2412, "\u2581radiant": 2413, "\u2581whereby": 2414, "\u2581shone": 2415, "\u2581sixty": 2416, "\u2581sober": 2417, "\u2581grown": 2418, "\u2581pile": 2419, "\u2581robbers": 2420, "\u2581murmured": 2421, "ixt": 2422, "\u2581consumed": 2423, "\u2581shouted": 2424, "\u2581Edith": 2425, "\u2581terrific": 2426, "man": 2427, "\u2581cleansed": 2428, "\u2581favoured": 2429, "\u2581failed": 2430, "\u2581refused": 2431, "\u2581Hav": 2432, "joined": 2433, "\u2581everybody": 2434, "\u2581St": 2435, "\u2581Rabbit": 2436, "\u2581wondered": 2437, "\u2581Ch": 2438, "\u2581pressed": 2439, "\u2581laughed": 2440, "\u2581Beer": 2441, "\u2581speaker": 2442, "\u2581plagues": 2443, "\u2581Per": 2444, "\u2581established": 2445, "\u2581party": 2446, "\u2581glass": 2447, "\u2581blankets": 2448, "old": 2449, "ive": 2450, "\u2581forest": 2451, "\u2581dozen": 2452, "not": 2453, "\u2581villages": 2454, "\u2581fingers": 2455, "\u2581hit": 2456, "\u2581shape": 2457, "\u2581walls": 2458, "\u2581Beth": 2459, "\u2581goest": 2460, "ns": 2461, "\u2581strive": 2462, "\u2581gr": 2463, "\u2581apples": 2464, "\u2581ha": 2465, "ain": 2466, "\u2581showing": 2467, "\u2581Dan": 2468, "ched": 2469, "\u2581wr": 2470, "\u2581husbands": 2471, "\u2581telling": 2472, "\u2581fact": 2473, "most": 2474, "em": 2475, "math": 2476, "\u2581vi": 2477, "ank": 2478, "\u2581bade": 2479, "\u2581Get": 2480, "ber": 2481, "\u2581worked": 2482, "\u2581tro": 2483, "\u2581wonder": 2484, "\u2581fields": 2485, "loved": 2486, "\u2581earthquake": 2487, "\u2581thigh": 2488, "\u2581minute": 2489, "\u2581window": 2490, "\u2581knop": 2491, "\u2581ordinance": 2492, "\u2581prince": 2493, "\u2581basket": 2494, "\u2581meal": 2495, "\u2581figure": 2496, "where": 2497, "ne": 2498, "\u2581corrupt": 2499, "Why": 2500, "un": 2501, "\u2581consent": 2502, "Don": 2503, "There": 2504, "\u2581accept": 2505, "\u2581pull": 2506, "seat": 2507, "\u2581healing": 2508, "\u2581increase": 2509, "\u2581awake": 2510, "\u2581earnest": 2511, "\u2581hunt": 2512, "\u2581suppose": 2513, "\u2581ride": 2514, "sheba": 2515, "\u2581fool": 2516, "\u2581Amalek": 2517, "\u2581Hivite": 2518, "\u2581Jethro": 2519, "\u2581Magdalene": 2520, "\u2581Mamre": 2521, "\u2581Peace": 2522, "\u2581Philadelphia": 2523, "\u2581Philistines": 2524, "\u2581Samaria": 2525, "\u2581Silas": 2526, "\u2581apparel": 2527, "\u2581bacon": 2528, "\u2581believing": 2529, "\u2581coupling": 2530, "\u2581dishonor": 2531, "\u2581fault": 2532, "\u2581fountain": 2533, "\u2581liberty": 2534, "\u2581lieutenant": 2535, "\u2581ministry": 2536, "\u2581plenty": 2537, "\u2581stomach": 2538, "\u2581strife": 2539, "\u2581taches": 2540, "\u2581thrice": 2541, "\u2581tribute": 2542, "\u2581underneath": 2543, "\u2581aught": 2544, "\u2581barren": 2545, "\u2581enjoy": 2546, "\u2581imitat": 2547, "\u2581Ananias": 2548, "\u2581bosom": 2549, "\u2581shirt": 2550, "\u2581firmament": 2551, "\u2581Bethany": 2552, "\u2581JE": 2553, "\u2581shining": 2554, "\u2581staff": 2555, "\u2581curious": 2556, "wels": 2557, "\u2581weather": 2558, "\u2581chicken": 2559, "\u2581Speak": 2560, "\u2581remission": 2561, "\u2581cool": 2562, "\u2581meekness": 2563, "\u2581fog": 2564, "\u2581George": 2565, "\u2581dropped": 2566, "\u2581Terah": 2567, "\u2581decomposers": 2568, "\u2581fighting": 2569, "\u2581bunch": 2570, "\u2581dew": 2571, "\u2581armies": 2572, "\u2581darkened": 2573, "\u2581shake": 2574, "\u2581span": 2575, "\u2581testified": 2576, "\u2581upper": 2577, "\u2581nakedness": 2578, "ueen": 2579, "\u2581motion": 2580, "\u2581exhortation": 2581, "\u2581approved": 2582, "\u2581seize": 2583, "\u2581moreover": 2584, "\u2581busy": 2585, "\u2581Henry": 2586, "\u2581boldly": 2587, "\u2581Perhaps": 2588, "\u2581flame": 2589, "\u2581endureth": 2590, "\u2581butler": 2591, "\u2581overcometh": 2592, "\u2581Pig": 2593, "\u2581agreed": 2594, "\u2581accomplished": 2595, "\u2581pushed": 2596, "\u2581spices": 2597, "\u2581someone": 2598, "Run": 2599, "\u2581separated": 2600, "\u2581pack": 2601, "\u2581listening": 2602, "\u2581anyone": 2603, "\u2581blow": 2604, "hick": 2605, "\u2581dragg": 2606, "owed": 2607, "\u2581escaped": 2608, "\u2581searched": 2609, "\u2581guide": 2610, "\u2581lieth": 2611, "\u2581supposed": 2612, "\u2581Though": 2613, "\u2581proclaimed": 2614, "\u2581Wom": 2615, "\u2581thunders": 2616, "\u2581brush": 2617, "\u2581tenth": 2618, "\u2581streets": 2619, "\u2581judgeth": 2620, "\u2581falleth": 2621, "\u2581shine": 2622, "\u2581teachers": 2623, "\u2581sacks": 2624, "\u2581deeds": 2625, "\u2581perished": 2626, "\u2581formed": 2627, "ure": 2628, "\u2581ru": 2629, "\u2581neighbors": 2630, "\u2581force": 2631, "\u2581hoped": 2632, "\u2581beam": 2633, "\u2581Ma": 2634, "ant": 2635, "\u2581simple": 2636, "\u2581sha": 2637, "thrown": 2638, "\u2581ministering": 2639, "\u2581bell": 2640, "land": 2641, "\u2581promises": 2642, "\u2581matters": 2643, "\u2581dwelling": 2644, "\u2581dreams": 2645, "\u2581sprinkl": 2646, "\u2581Pr": 2647, "\u2581Pa": 2648, "\u2581Me": 2649, "\u2581share": 2650, "\u2581kinds": 2651, "\u2581thrones": 2652, "\u2581Ga": 2653, "les": 2654, "u": 2655, "\u2581winds": 2656, "\u2581par": 2657, "\u2581Cap": 2658, "ra": 2659, "me": 2660, "\u2581rode": 2661, "led": 2662, "\u2581sakes": 2663, "ump": 2664, "\u2581Wil": 2665, "\u2581declar": 2666, "ot": 2667, "\u2581wave": 2668, "\u2581hat": 2669, "\u2581knee": 2670, "ments": 2671, "\u2581tin": 2672, "od": 2673, "\u2581hu": 2674, "ery": 2675, "dded": 2676, "\u2581drunk": 2677, "\u2581captive": 2678, "\u2581habitation": 2679, "\u2581game": 2680, "\u2581mourn": 2681, "\u2581effort": 2682, "\u2581nest": 2683, "\u2581virgin": 2684, "\u2581flower": 2685, "\u2581street": 2686, "\u2581plague": 2687, "ware": 2688, "\u2581drop": 2689, "\u2581search": 2690, "\u2581scribe": 2691, "\u2581girl": 2692, "\u2581youth": 2693, "\u2581path": 2694, "\u2581rubb": 2695, "pleasing": 2696, "\u2581marvel": 2697, "\u2581twist": 2698, "\u2581pot": 2699, "\u2581testify": 2700, "\u2581delight": 2701, "\u2581ninet": 2702, "\u2581due": 2703, "\u2581obtain": 2704, "special": 2705, "\u2581mad": 2706, "\u2581real": 2707, "\u2581den": 2708, "\u2581preserve": 2709, "\u2581bid": 2710, "\u2581consume": 2711, "\u2581bold": 2712, "\u2581entire": 2713, "Thi": 2714, "We": 2715, "laver": 2716, "eople": 2717, "\u2581trespass": 2718, "\u2581public": 2719, "\u2581danger": 2720, "\u2581agree": 2721, "\u2581tight": 2722, "\u2581Padan": 2723, "\u2581future": 2724, "\u2581Beaver": 2725, "\u2581Bethuel": 2726, "\u2581Charlie": 2727, "\u2581Japheth": 2728, "\u2581Joppa": 2729, "\u2581Joshua": 2730, "\u2581Zacharias": 2731, "\u2581altogether": 2732, "\u2581bundle": 2733, "\u2581diligently": 2734, "\u2581disobedience": 2735, "\u2581fifth": 2736, "\u2581furnace": 2737, "\u2581grieved": 2738, "\u2581group": 2739, "\u2581guile": 2740, "\u2581indignation": 2741, "\u2581iniquities": 2742, "\u2581kitchen": 2743, "\u2581leaf": 2744, "\u2581midnight": 2745, "\u2581nevertheless": 2746, "\u2581offended": 2747, "\u2581practise": 2748, "\u2581publish": 2749, "\u2581sanctification": 2750, "\u2581silk": 2751, "\u2581slops": 2752, "\u2581speckled": 2753, "\u2581stoop": 2754, "\u2581surname": 2755, "\u2581sweat": 2756, "\u2581venison": 2757, "\u2581violence": 2758, "\u2581Charleston": 2759, "\u2581abyss": 2760, "\u2581devout": 2761, "\u2581Apollos": 2762, "\u2581angry": 2763, "\u2581wove": 2764, "\u2581brimstone": 2765, "\u2581smitten": 2766, "\u2581slaves": 2767, "\u2581gracious": 2768, "\u2581Bilhah": 2769, "\u2581degree": 2770, "\u2581magicians": 2771, "\u2581below": 2772, "\u2581blew": 2773, "\u2581bride": 2774, "\u2581trick": 2775, "\u2581easier": 2776, "\u2581Everything": 2777, "\u2581wages": 2778, "\u2581lightning": 2779, "\u2581harm": 2780, "\u2581privily": 2781, "\u2581Seir": 2782, "\u2581mix": 2783, "\u2581unbelief": 2784, "\u2581issue": 2785, "\u2581mingled": 2786, "\u2581usual": 2787, "\u2581New": 2788, "\u2581choose": 2789, "\u2581sentence": 2790, "\u2581Hono": 2791, "\u2581Chapman": 2792, "\u2581upright": 2793, "\u2581Anah": 2794, "\u2581innocent": 2795, "\u2581roast": 2796, "\u2581assembly": 2797, "\u2581confession": 2798, "\u2581unbelieving": 2799, "\u2581print": 2800, "\u2581rear": 2801, "\u2581bondservant": 2802, "\u2581muskets": 2803, "\u2581crickets": 2804, "\u2581City": 2805, "\u2581foolishness": 2806, "\u2581honorable": 2807, "\u2581appeal": 2808, "\u2581somewhere": 2809, "\u2581Way": 2810, "\u2581bag": 2811, "\u2581sighed": 2812, "\u2581dart": 2813, "owbeit": 2814, "\u2581mention": 2815, "\u2581Seven": 2816, "\u2581earnestly": 2817, "\u2581boots": 2818, "\u2581locusts": 2819, "\u2581maybe": 2820, "\u2581dove": 2821, "\u2581persecuted": 2822, "\u2581hinder": 2823, "\u2581Sit": 2824, "\u2581afflicted": 2825, "\u2581listened": 2826, "\u2581mocked": 2827, "\u2581peril": 2828, "\u2581br": 2829, "\u2581entreated": 2830, "\u2581sand": 2831, "\u2581Fer": 2832, "\u2581changed": 2833, "\u2581hunters": 2834, "\u2581Doth": 2835, "\u2581interpreted": 2836, "\u2581pocket": 2837, "ttach": 2838, "\u2581valu": 2839, "\u2581breasts": 2840, "\u2581soli": 2841, "\u2581kindly": 2842, "\u2581beans": 2843, "\u2581miles": 2844, "\u2581suit": 2845, "\u2581leavened": 2846, "ix": 2847, "\u2581baskets": 2848, "\u2581kneel": 2849, "\u2581cloths": 2850, "\u2581prisoners": 2851, "\u2581bestow": 2852, "\u2581besides": 2853, "\u2581says": 2854, "\u2581beating": 2855, "\u2581mess": 2856, "\u2581lots": 2857, "\u2581exalt": 2858, "op": 2859, "\u2581coats": 2860, "\u2581Ho": 2861, "\u2581stoned": 2862, "\u2581salutation": 2863, "mah": 2864, "\u2581fearful": 2865, "\u2581parables": 2866, "\u2581lands": 2867, "\u2581ward": 2868, "\u2581tombs": 2869, "\u2581reasoning": 2870, "\u2581god": 2871, "\u2581sp": 2872, "fully": 2873, "\u2581aim": 2874, "ans": 2875, "\u2581clouds": 2876, "\u2581today": 2877, "ia": 2878, "ture": 2879, "ol": 2880, "\u2581haven": 2881, "na": 2882, "\u2581puff": 2883, "\u2581rebuk": 2884, "\u2581arrow": 2885, "godly": 2886, "\u2581stepp": 2887, "\u2581Repe": 2888, "formed": 2889, "\u2581avenge": 2890, "\u2581po": 2891, "\u2581withstand": 2892, "dal": 2893, "\u2581looks": 2894, "\u2581rattl": 2895, "\u2581step": 2896, "ern": 2897, "\u2581judgments": 2898, "\u2581inward": 2899, "\u2581Arables": 2900, "\u2581doors": 2901, "morrow": 2902, "ries": 2903, "\u2581ho": 2904, "\u2581bush": 2905, "\u2581hem": 2906, "ered": 2907, "\u2581Abi": 2908, "\u2581cove": 2909, "\u2581watered": 2910, "ent": 2911, "gged": 2912, "nother": 2913, "\u2581fail": 2914, "\u2581tradition": 2915, "\u2581Cas": 2916, "\u2581trunk": 2917, "\u2581climb": 2918, "kins": 2919, "\u2581fugitive": 2920, "\u2581chariot": 2921, "\u2581mile": 2922, "\u2581bras": 2923, "\u2581toil": 2924, "\u2581shoe": 2925, "K": 2926, "aram": 2927, "you": 2928, "Fern": 2929, "\u2581fold": 2930, "\u2581bone": 2931, "\u2581rail": 2932, "\u2581tear": 2933, "\u2581torment": 2934, "\u2581dress": 2935, "\u2581entreat": 2936, "down": 2937, "\u2581baptize": 2938, "rust": 2939, "some": 2940, "\u2581provoke": 2941, "doing": 2942, "\u2581becoming": 2943, "\u2581patient": 2944, "\u2581crow": 2945, "\u2581Maj": 2946, "\u2581murder": 2947, "aithful": 2948, "eathen": 2949, "\u2581vari": 2950, "\u2581advantage": 2951, "\u2581Barabbas": 2952, "\u2581Caiaphas": 2953, "\u2581Cephas": 2954, "\u2581Cilicia": 2955, "\u2581Naphtali": 2956, "\u2581Rejoice": 2957, "\u2581Return": 2958, "\u2581Stretch": 2959, "\u2581Zebulun": 2960, "\u2581abundance": 2961, "\u2581anguish": 2962, "\u2581attempt": 2963, "\u2581beauty": 2964, "\u2581capital": 2965, "\u2581cloak": 2966, "\u2581coffee": 2967, "\u2581courage": 2968, "\u2581dancing": 2969, "\u2581desperate": 2970, "\u2581example": 2971, "\u2581expedient": 2972, "\u2581experience": 2973, "\u2581necessity": 2974, "\u2581ninth": 2975, "\u2581nourish": 2976, "\u2581olive": 2977, "\u2581ouches": 2978, "\u2581perdition": 2979, "\u2581pledge": 2980, "\u2581renew": 2981, "\u2581stories": 2982, "\u2581supply": 2983, "\u2581terribl": 2984, "\u2581uncircumcised": 2985, "\u2581valley": 2986, "\u2581wolf": 2987, "\u2581almonds": 2988, "\u2581mitre": 2989, "\u2581stiff": 2990, "\u2581Bethlehem": 2991, "\u2581Dinah": 2992, "\u2581Scot": 2993, "\u2581blank": 2994, "\u2581easy": 2995, "\u2581narrow": 2996, "\u2581snake": 2997, "\u2581baby": 2998, "\u2581calm": 2999, "\u2581Mark": 3000, "\u2581dispute": 3001, "\u2581pattern": 3002, "\u2581redemption": 3003, "\u2581Rome": 3004, "\u2581Think": 3005, "\u2581abomination": 3006, "\u2581conversation": 3007, "\u2581yoke": 3008, "\u2581provide": 3009, "\u2581tunnel": 3010, "\u2581townhouse": 3011, "\u2581chance": 3012, "\u2581Gerar": 3013, "\u2581coals": 3014, "\u2581Great": 3015, "\u2581Adah": 3016, "\u2581division": 3017, "\u2581blameless": 3018, "\u2581disgust": 3019, "\u2581lump": 3020, "\u2581Tyre": 3021, "\u2581impossible": 3022, "\u2581zealous": 3023, "\u2581blasphemy": 3024, "\u2581covetousness": 3025, "\u2581miserable": 3026, "\u2581admonish": 3027, "\u2581signet": 3028, "\u2581Jake": 3029, "\u2581Eber": 3030, "\u2581torn": 3031, "ook": 3032, "\u2581sufficien": 3033, "\u2581spies": 3034, "\u2581partake": 3035, "\u2581profitable": 3036, "\u2581sorrowful": 3037, "\u2581dish": 3038, "\u2581dear": 3039, "\u2581privately": 3040, "\u2581kindled": 3041, "\u2581clay": 3042, "\u2581Lowan": 3043, "\u2581clerk": 3044, "\u2581skull": 3045, "\u2581shift": 3046, "\u2581fresh": 3047, "\u2581scourge": 3048, "\u2581Love": 3049, "\u2581vast": 3050, "\u2581weakness": 3051, "\u2581doesn": 3052, "\u2581cheek": 3053, "\u2581firstfruits": 3054, "\u2581uncleanness": 3055, "\u2581track": 3056, "\u2581ordained": 3057, "\u2581grabbed": 3058, "\u2581Day": 3059, "\u2581discover": 3060, "\u2581anyway": 3061, "\u2581wasn": 3062, "\u2581hopeless": 3063, "\u2581hay": 3064, "\u2581entirely": 3065, "\u2581selves": 3066, "\u2581fist": 3067, "\u2581health": 3068, "\u2581descending": 3069, "\u2581farther": 3070, "\u2581waved": 3071, "\u2581Soon": 3072, "\u2581stripes": 3073, "light": 3074, "\u2581contain": 3075, "\u2581clearly": 3076, "\u2581smaller": 3077, "up": 3078, "line": 3079, "\u2581yelled": 3080, "\u2581endured": 3081, "\u2581disappeared": 3082, "\u2581pearls": 3083, "\u2581ridges": 3084, "\u2581diseases": 3085, "ul": 3086, "\u2581pins": 3087, "\u2581limbs": 3088, "\u2581babes": 3089, "\u2581porch": 3090, "\u2581music": 3091, "\u2581corrupted": 3092, "\u2581openly": 3093, "\u2581bugs": 3094, "mote": 3095, "\u2581dressed": 3096, "\u2581wagons": 3097, "\u2581transgressions": 3098, "\u2581clothing": 3099, "\u2581shade": 3100, "\u2581proved": 3101, "\u2581wit": 3102, "\u2581quarter": 3103, "\u2581freely": 3104, "\u2581teacheth": 3105, "\u2581sowed": 3106, "\u2581island": 3107, "\u2581poke": 3108, "\u2581drops": 3109, "\u2581pigs": 3110, "\u2581ordinances": 3111, "\u2581princes": 3112, "pa": 3113, "ab": 3114, "\u2581ra": 3115, "\u2581barely": 3116, "ping": 3117, "lee": 3118, "\u2581obeyed": 3119, "\u2581judgest": 3120, "\u2581nets": 3121, "ites": 3122, "\u2581shepherds": 3123, "\u2581towns": 3124, "\u2581preacher": 3125, "\u2581beholding": 3126, "ctually": 3127, "\u2581weeks": 3128, "\u2581hills": 3129, "\u2581sawest": 3130, "\u2581Seth": 3131, "\u2581seeme": 3132, "\u2581handle": 3133, "\u2581acknowledge": 3134, "\u2581Write": 3135, "\u2581opening": 3136, "\u2581songs": 3137, "\u2581perfected": 3138, "\u2581rods": 3139, "ions": 3140, "ee": 3141, "iel": 3142, "\u2581lights": 3143, "\u2581ti": 3144, "\u2581lover": 3145, "aved": 3146, "liness": 3147, "\u2581strike": 3148, "cy": 3149, "\u2581Ar": 3150, "tuck": 3151, "\u2581sisters": 3152, "\u2581principal": 3153, "\u2581Les": 3154, "\u2581Al": 3155, "ree": 3156, "hu": 3157, "\u2581Z": 3158, "\u2581dra": 3159, "\u2581Whe": 3160, "pe": 3161, "ush": 3162, "ft": 3163, "mer": 3164, "\u2581thereby": 3165, "\u2581ended": 3166, "\u2581settl": 3167, "\u2581saidst": 3168, "ated": 3169, "\u2581admir": 3170, "\u2581camest": 3171, "\u2581liken": 3172, "dden": 3173, "\u2581bus": 3174, "\u2581wa": 3175, "\u2581du": 3176, "ver": 3177, "way": 3178, "ice": 3179, "\u2581distress": 3180, "\u2581butter": 3181, "ings": 3182, "\u2581hearted": 3183, "\u2581Am": 3184, "\u2581plan": 3185, "ade": 3186, "rash": 3187, "ash": 3188, "\u2581Ja": 3189, "ipped": 3190, "ut": 3191, "\u2581Wa": 3192, "\u2581Er": 3193, "il": 3194, "W": 3195, "house": 3196, "over": 3197, "\u2581bullock": 3198, "\u2581platter": 3199, "\u2581plant": 3200, "\u2581tale": 3201, "\u2581bank": 3202, "\u2581blade": 3203, "\u2581mock": 3204, "\u2581dance": 3205, "\u2581listen": 3206, "\u2581thunder": 3207, "\u2581clothe": 3208, "\u2581talent": 3209, "\u2581breast": 3210, "\u2581weigh": 3211, "\u2581envy": 3212, "Just": 3213, "stool": 3214, "\u2581forbear": 3215, "deep": 3216, "Where": 3217, "but": 3218, "So": 3219, "Go": 3220, "\u2581suppos": 3221, "My": 3222, "\u2581afflict": 3223, "\u2581disappear": 3224, "\u2581favour": 3225, "\u2581hatch": 3226, "\u2581jump": 3227, "\u2581finish": 3228, "\u2581harp": 3229, "same": 3230, "\u2581persecute": 3231, "\u2581harden": 3232, "\u2581plot": 3233, "\u2581pea": 3234, "\u2581silent": 3235, "\u2581quick": 3236, "pon": 3237, "\u2581adulter": 3238, "\u2581careful": 3239, "\u2581fade": 3240, "\u2581potato": 3241, "\u2581engrav": 3242, "\u2581forsake": 3243, "\u2581birth": 3244, "\u2581speed": 3245, "\u2581Galil": 3246, "\u2581affection": 3247, "\u2581Achaia": 3248, "\u2581Aholibamah": 3249, "\u2581Arphaxad": 3250, "\u2581Beelzebub": 3251, "\u2581Children": 3252, "\u2581Cornelius": 3253, "\u2581Cyprus": 3254, "\u2581Cyren": 3255, "\u2581Eliphaz": 3256, "\u2581Elisabeth": 3257, "\u2581Felix": 3258, "\u2581Fussy": 3259, "\u2581Galatia": 3260, "\u2581Grounds": 3261, "\u2581Hezron": 3262, "\u2581Lieutenant": 3263, "\u2581Melchizedek": 3264, "\u2581Milcah": 3265, "\u2581Zilpah": 3266, "\u2581Zoar": 3267, "\u2581accompan": 3268, "\u2581adversaries": 3269, "\u2581carnal": 3270, "\u2581enormous": 3271, "\u2581frozen": 3272, "\u2581furniture": 3273, "\u2581grandchildren": 3274, "\u2581grapes": 3275, "\u2581honour": 3276, "\u2581infirmity": 3277, "\u2581mediator": 3278, "\u2581midwives": 3279, "\u2581mischief": 3280, "\u2581obedient": 3281, "\u2581opportunity": 3282, "\u2581outdoors": 3283, "\u2581refuge": 3284, "\u2581ringstraked": 3285, "\u2581runners": 3286, "\u2581steep": 3287, "\u2581storm": 3288, "\u2581strove": 3289, "\u2581woke": 3290, "\u2581wolves": 3291, "\u2581clever": 3292, "\u2581slaughter": 3293, "\u2581Olives": 3294, "\u2581aloud": 3295, "\u2581beckon": 3296, "\u2581gnash": 3297, "\u2581occupied": 3298, "\u2581pertain": 3299, "\u2581adversary": 3300, "\u2581myrrh": 3301, "\u2581Korah": 3302, "\u2581consecrate": 3303, "\u2581regular": 3304, "\u2581important": 3305, "\u2581doctor": 3306, "\u2581stockade": 3307, "\u2581punishment": 3308, "\u2581sinneth": 3309, "\u2581Enos": 3310, "\u2581birthright": 3311, "\u2581holiness": 3312, "\u2581stedfast": 3313, "\u2581offspring": 3314, "\u2581frame": 3315, "\u2581Hades": 3316, "\u2581train": 3317, "\u2581mercies": 3318, "\u2581freedom": 3319, "\u2581litter": 3320, "\u2581comment": 3321, "\u2581reins": 3322, "\u2581grate": 3323, "\u2581check": 3324, "\u2581Bash": 3325, "\u2581flight": 3326, "\u2581imagination": 3327, "\u2581useful": 3328, "\u2581lame": 3329, "\u2581Asher": 3330, "\u2581rejecteth": 3331, "\u2581hundredfold": 3332, "\u2581err": 3333, "\u2581human": 3334, "\u2581sense": 3335, "\u2581perplexed": 3336, "\u2581evermore": 3337, "\u2581books": 3338, "\u2581fever": 3339, "\u2581Him": 3340, "\u2581spear": 3341, "\u2581swarm": 3342, "\u2581Bar": 3343, "\u2581southward": 3344, "\u2581chest": 3345, "\u2581Cainan": 3346, "\u2581eastward": 3347, "\u2581adorn": 3348, "\u2581bake": 3349, "\u2581throat": 3350, "\u2581onyx": 3351, "\u2581lend": 3352, "zale": 3353, "\u2581fourscore": 3354, "\u2581recent": 3355, "\u2581gladness": 3356, "\u2581frost": 3357, "\u2581menservants": 3358, "\u2581sickle": 3359, "\u2581view": 3360, "\u2581box": 3361, "\u2581pursued": 3362, "\u2581march": 3363, "\u2581Watch": 3364, "\u2581shineth": 3365, "\u2581ham": 3366, "\u2581managed": 3367, "\u2581ascended": 3368, "\u2581deceived": 3369, "\u2581refreshed": 3370, "\u2581passage": 3371, "\u2581tithes": 3372, "\u2581soweth": 3373, "ked": 3374, "\u2581Hast": 3375, "\u2581loaded": 3376, "\u2581strengthened": 3377, "der": 3378, "\u2581Gad": 3379, "\u2581axe": 3380, "\u2581convict": 3381, "\u2581manna": 3382, "tial": 3383, "\u2581scared": 3384, "\u2581restored": 3385, "skins": 3386, "\u2581realize": 3387, "\u2581observed": 3388, "\u2581gladly": 3389, "\u2581pe": 3390, "\u2581tasted": 3391, "\u2581climbing": 3392, "\u2581Amorites": 3393, "\u2581Only": 3394, "\u2581higher": 3395, "\u2581wondering": 3396, "ue": 3397, "\u2581weary": 3398, "\u2581answereth": 3399, "\u2581hanged": 3400, "\u2581mid": 3401, "\u2581rust": 3402, "\u2581plans": 3403, "\u2581sealed": 3404, "\u2581incorruptible": 3405, "\u2581beware": 3406, "\u2581Hai": 3407, "\u2581trunks": 3408, "\u2581therewith": 3409, "\u2581steps": 3410, "\u2581noon": 3411, "\u2581redeemed": 3412, "\u2581baker": 3413, "\u2581doves": 3414, "\u2581learning": 3415, "\u2581fainted": 3416, "\u2581upward": 3417, "\u2581shadows": 3418, "\u2581tempt": 3419, "\u2581herbs": 3420, "\u2581feeding": 3421, "immed": 3422, "\u2581dogs": 3423, "tion": 3424, "\u2581castle": 3425, "\u2581accus": 3426, "\u2581meant": 3427, "L": 3428, "ack": 3429, "\u2581wouldn": 3430, "\u2581attend": 3431, "\u2581suffering": 3432, "\u2581possessions": 3433, "stroke": 3434, "\u2581sixt": 3435, "\u2581reed": 3436, "\u2581spot": 3437, "\u2581candlesticks": 3438, "\u2581pitch": 3439, "do": 3440, "\u2581captains": 3441, "\u2581temper": 3442, "\u2581imagine": 3443, "\u2581lovely": 3444, "\u2581seats": 3445, "more": 3446, "\u2581blot": 3447, "\u2581Roman": 3448, "ins": 3449, "go": 3450, "\u2581killing": 3451, "\u2581keeper": 3452, "\u2581wars": 3453, "om": 3454, "\u2581Will": 3455, "\u2581boats": 3456, "\u2581sounds": 3457, "ith": 3458, "lock": 3459, "\u2581courts": 3460, "\u2581cow": 3461, "\u2581Ad": 3462, "\u2581El": 3463, "she": 3464, "os": 3465, "\u2581tents": 3466, "ified": 3467, "\u2581herd": 3468, "\u2581De": 3469, "nd": 3470, "ship": 3471, "\u2581fan": 3472, "ni": 3473, "\u2581base": 3474, "\u2581dippe": 3475, "\u2581Bo": 3476, "\u2581worm": 3477, "\u2581comest": 3478, "dge": 3479, "\u2581pai": 3480, "N": 3481, "\u2581prov": 3482, "\u2581sa": 3483, "ble": 3484, "\u2581yell": 3485, "\u2581va": 3486, "ster": 3487, "br": 3488, "don": 3489, "\u2581n": 3490, "\u2581fro": 3491, "pers": 3492, "\u2581gun": 3493, "\u2581com": 3494, "ane": 3495, "ally": 3496, "\u2581befall": 3497, "ay": 3498, "test": 3499, "\u2581pre": 3500, "head": 3501, "\u2581Yes": 3502, "set": 3503, "ough": 3504, "servant": 3505, "lk": 3506, "pped": 3507, "\u2581hours": 3508, "\u2581cha": 3509, "\u2581scrap": 3510, "\u2581Sa": 3511, "\u2581balloon": 3512, "\u2581webs": 3513, "\u2581scatter": 3514, "\u2581whoso": 3515, "\u2581labour": 3516, "ations": 3517, "fold": 3518, "\u2581sepulchre": 3519, "\u2581brick": 3520, "\u2581lion": 3521, "\u2581statute": 3522, "\u2581provision": 3523, "\u2581liar": 3524, "\u2581persecution": 3525, "\u2581messenger": 3526, "\u2581maidservant": 3527, "\u2581murderer": 3528, "\u2581wound": 3529, "\u2581wagon": 3530, "\u2581transgression": 3531, "sh": 3532, "\u2581idol": 3533, "ced": 3534, "\u2581publican": 3535, "\u2581Canaanite": 3536, "H": 3537, "control": 3538, "Please": 3539, "ists": 3540, "\u2581stir": 3541, "\u2581receiv": 3542, "May": 3543, "\u2581pound": 3544, "\u2581officer": 3545, "chamber": 3546, "\u2581gnaw": 3547, "\u2581tabernacles": 3548, "Some": 3549, "Come": 3550, "Templeton": 3551, "li": 3552, "\u2581boil": 3553, "She": 3554, "\u2581attain": 3555, "\u2581confirm": 3556, "\u2581oppress": 3557, "\u2581bark": 3558, "icken": 3559, "\u2581reveal": 3560, "\u2581eviden": 3561, "All": 3562, "\u2581Y": 3563, "\u2581fin": 3564, "\u2581deceive": 3565, "\u2581sc": 3566, "\u2581peri": 3567, "\u2581mud": 3568, "\u2581gird": 3569, "\u2581inquire": 3570, "\u2581require": 3571, "rough": 3572, "bor": 3573, "\u2581remove": 3574, "\u2581fierce": 3575, "\u2581assured": 3576, "\u2581glorious": 3577, "\u2581lone": 3578, "uffer": 3579, "\u2581knock": 3580, "\u2581Syria": 3581, "gers": 3582, "\u2581gentle": 3583, "\u2581sect": 3584, "urthermore": 3585, "\u2581correct": 3586, "stitute": 3587, "\u2581abst": 3588, "\u2581effect": 3589, "\u2581wool": 3590, "torium": 3591, "\u2581Alexander": 3592, "\u2581Aquila": 3593, "\u2581Believe": 3594, "\u2581Creek": 3595, "\u2581Eleazar": 3596, "\u2581Hebron": 3597, "\u2581Iconium": 3598, "\u2581Issachar": 3599, "\u2581Jericho": 3600, "\u2581KING": 3601, "\u2581Laodicea": 3602, "\u2581Lystra": 3603, "\u2581Machpelah": 3604, "\u2581Mahalaleel": 3605, "\u2581Methuselah": 3606, "\u2581Nazarene": 3607, "\u2581Peleg": 3608, "\u2581Sunday": 3609, "\u2581Troas": 3610, "\u2581Zibeon": 3611, "\u2581audience": 3612, "\u2581autumn": 3613, "\u2581baptizing": 3614, "\u2581blemish": 3615, "\u2581bracelets": 3616, "\u2581breeze": 3617, "\u2581ceiling": 3618, "\u2581cleave": 3619, "\u2581conditions": 3620, "\u2581desolation": 3621, "\u2581eldest": 3622, "\u2581enmity": 3623, "\u2581ensample": 3624, "\u2581execute": 3625, "\u2581extra": 3626, "\u2581foreordained": 3627, "\u2581foreskin": 3628, "\u2581ignorance": 3629, "\u2581jasper": 3630, "\u2581majesty": 3631, "\u2581merchandise": 3632, "\u2581mirror": 3633, "\u2581muscle": 3634, "\u2581newspaper": 3635, "\u2581opinion": 3636, "\u2581plenteous": 3637, "\u2581rejoicing": 3638, "\u2581relief": 3639, "\u2581represent": 3640, "\u2581reprobate": 3641, "\u2581reserved": 3642, "\u2581rotten": 3643, "\u2581serving": 3644, "\u2581studie": 3645, "\u2581taskmasters": 3646, "\u2581tetrarch": 3647, "\u2581tobacco": 3648, "\u2581treasury": 3649, "\u2581unprofitable": 3650, "\u2581Army": 3651, "\u2581Reu": 3652, "\u2581Word": 3653, "\u2581downhill": 3654, "\u2581overshadow": 3655, "\u2581paused": 3656, "\u2581queer": 3657, "\u2581roar": 3658, "\u2581savor": 3659, "\u2581shield": 3660, "\u2581magic": 3661, "\u2581Eden": 3662, "\u2581existence": 3663, "\u2581spell": 3664, "\u2581Alph": 3665, "\u2581scorch": 3666, "\u2581soap": 3667, "\u2581success": 3668, "\u2581excellenc": 3669, "\u2581needlework": 3670, "\u2581stink": 3671, "\u2581limit": 3672, "\u2581grind": 3673, "\u2581estate": 3674, "\u2581magnified": 3675, "\u2581Jesse": 3676, "\u2581triumph": 3677, "\u2581foursquare": 3678, "\u2581Tamar": 3679, "\u2581vinegar": 3680, "\u2581quail": 3681, "\u2581brave": 3682, "\u2581displease": 3683, "\u2581unfruitful": 3684, "\u2581aforetime": 3685, "\u2581Government": 3686, "\u2581situation": 3687, "\u2581folk": 3688, "\u2581serious": 3689, "\u2581squatted": 3690, "\u2581Salah": 3691, "\u2581fame": 3692, "\u2581doughnut": 3693, "\u2581herdmen": 3694, "\u2581encamp": 3695, "\u2581government": 3696, "\u2581message": 3697, "\u2581omer": 3698, "\u2581Jared": 3699, "\u2581object": 3700, "\u2581readiness": 3701, "\u2581Reuel": 3702, "\u2581Rain": 3703, "\u2581hypocrisy": 3704, "\u2581tenons": 3705, "\u2581center": 3706, "\u2581Moon": 3707, "\u2581melt": 3708, "\u2581barnyard": 3709, "\u2581dangerous": 3710, "\u2581dy": 3711, "\u2581proof": 3712, "\u2581depth": 3713, "\u2581match": 3714, "\u2581Rise": 3715, "\u2581saving": 3716, "\u2581Shelah": 3717, "\u2581Syrian": 3718, "\u2581Old": 3719, "\u2581squash": 3720, "\u2581range": 3721, "\u2581recover": 3722, "\u2581thrash": 3723, "\u2581study": 3724, "\u2581Without": 3725, "\u2581spotted": 3726, "\u2581mass": 3727, "\u2581laden": 3728, "\u2581convert": 3729, "\u2581whiskers": 3730, "\u2581prophesied": 3731, "\u2581purchased": 3732, "\u2581justice": 3733, "ext": 3734, "\u2581surety": 3735, "\u2581lonely": 3736, "\u2581eighth": 3737, "\u2581repeated": 3738, "\u2581sniffed": 3739, "\u2581vexed": 3740, "\u2581prof": 3741, "\u2581reproved": 3742, "\u2581edifying": 3743, "workers": 3744, "\u2581pair": 3745, "\u2581ripe": 3746, "\u2581sickness": 3747, "\u2581sum": 3748, "\u2581nurse": 3749, "\u2581sinful": 3750, "\u2581sway": 3751, "\u2581Hur": 3752, "\u2581fixed": 3753, "cut": 3754, "ael": 3755, "\u2581circle": 3756, "\u2581couch": 3757, "\u2581inquired": 3758, "muel": 3759, "\u2581setting": 3760, "\u2581blaspheme": 3761, "\u2581instructed": 3762, "\u2581collected": 3763, "\u2581covet": 3764, "\u2581exten": 3765, "\u2581nodded": 3766, "\u2581softly": 3767, "\u2581groaning": 3768, "\u2581evident": 3769, "\u2581backward": 3770, "\u2581Other": 3771, "\u2581plainly": 3772, "\u2581riding": 3773, "\u2581somebody": 3774, "\u2581wounded": 3775, "\u2581despised": 3776, "\u2581released": 3777, "\u2581lace": 3778, "\u2581marvell": 3779, "\u2581pervert": 3780, "\u2581Cret": 3781, "\u2581murmurings": 3782, "\u2581distressed": 3783, "\u2581forbidd": 3784, "\u2581distan": 3785, "\u2581cursed": 3786, "\u2581searching": 3787, "\u2581testifying": 3788, "\u2581hogs": 3789, "\u2581marketplaces": 3790, "\u2581Samaritans": 3791, "\u2581questionings": 3792, "\u2581accepted": 3793, "\u2581May": 3794, "\u2581openeth": 3795, "\u2581intent": 3796, "\u2581hairy": 3797, "\u2581laws": 3798, "\u2581sojourned": 3799, "\u2581ju": 3800, "\u2581pounds": 3801, "\u2581maidservants": 3802, "\u2581ours": 3803, "\u2581housetop": 3804, "\u2581plants": 3805, "robably": 3806, "\u2581begged": 3807, "\u2581workers": 3808, "uffle": 3809, "\u2581coves": 3810, "\u2581exhorted": 3811, "mit": 3812, "\u2581paths": 3813, "\u2581virgins": 3814, "\u2581waves": 3815, "\u2581uttered": 3816, "\u2581labored": 3817, "\u2581speakest": 3818, "\u2581knops": 3819, "Not": 3820, "\u2581shapes": 3821, "\u2581clearing": 3822, "\u2581Good": 3823, "\u2581hundreds": 3824, "\u2581entertain": 3825, "\u2581burying": 3826, "\u2581Mo": 3827, "\u2581beach": 3828, "\u2581bands": 3829, "\u2581pots": 3830, "ech": 3831, "\u2581Eli": 3832, "\u2581appearing": 3833, "\u2581Mi": 3834, "\u2581drinketh": 3835, "\u2581supplications": 3836, "\u2581occasions": 3837, "\u2581Sometime": 3838, "\u2581Co": 3839, "gging": 3840, "\u2581di": 3841, "\u2581rac": 3842, "\u2581serpents": 3843, "\u2581Ou": 3844, "ide": 3845, "\u2581En": 3846, "\u2581roots": 3847, "\u2581fasting": 3848, "\u2581holes": 3849, "\u2581constrain": 3850, "iness": 3851, "\u2581creeks": 3852, "nce": 3853, "\u2581Pi": 3854, "\u2581char": 3855, "\u2581bother": 3856, "\u2581sayings": 3857, "\u2581smelling": 3858, "\u2581dreaming": 3859, "\u2581seest": 3860, "\u2581examin": 3861, "\u2581helping": 3862, "\u2581Ne": 3863, "\u2581pop": 3864, "\u2581Sin": 3865, "\u2581process": 3866, "\u2581gra": 3867, "ha": 3868, "\u2581sta": 3869, "\u2581tangle": 3870, "uch": 3871, "how": 3872, "by": 3873, "longeth": 3874, "ig": 3875, "trusted": 3876, "\u2581nuts": 3877, "\u2581hairs": 3878, "v": 3879, "lushed": 3880, "Is": 3881, "tur": 3882, "\u2581Con": 3883, "\u2581signifie": 3884, "lic": 3885, "pic": 3886, "\u2581member": 3887, "ious": 3888, "\u2581spi": 3889, "pensation": 3890, "\u2581Ari": 3891, "son": 3892, "\u2581Jo": 3893, "\u2581Le": 3894, "\u2581mere": 3895, "\u2581win": 3896, "\u2581cur": 3897, "tic": 3898, "treated": 3899, "\u2581sub": 3900, "da": 3901, "\u2581welcome": 3902, "are": 3903, "\u2581treasures": 3904, "ign": 3905, "\u2581im": 3906, "\u2581bas": 3907, "\u2581ease": 3908, "ancy": 3909, "\u2581sprinkle": 3910, "\u2581throw": 3911, "\u2581pie": 3912, "lah": 3913, "sive": 3914, "\u2581dodg": 3915, "ale": 3916, "\u2581fain": 3917, "\u2581lords": 3918, "\u2581cutt": 3919, "cession": 3920, "io": 3921, "\u2581imagin": 3922, "\u2581simpl": 3923, "bal": 3924, "llen": 3925, "\u2581examine": 3926, "\u2581longing": 3927, "\u2581shave": 3928, "\u2581cor": 3929, "shed": 3930, "\u2581heave": 3931, "\u2581Sheba": 3932, "nas": 3933, "pping": 3934, "pots": 3935, "\u2581Gree": 3936, "\u2581min": 3937, "tained": 3938, "\u2581cap": 3939, "\u2581flu": 3940, "own": 3941, "right": 3942, "ving": 3943, "\u2581Sha": 3944, "long": 3945, "ged": 3946, "\u2581Ju": 3947, "\u2581Ten": 3948, "like": 3949, "M": 3950, "cept": 3951, "hold": 3952, "\u2581ga": 3953, "\u2581rid": 3954, "held": 3955, "ccord": 3956, "\u2581tumult": 3957, "\u2581trans": 3958, "\u2581eunuch": 3959, "\u2581shilling": 3960, "\u2581chestnut": 3961, "corruptible": 3962, "\u2581sheet": 3963, "\u2581plate": 3964, "\u2581Samaritan": 3965, "\u2581marketplace": 3966, "\u2581Amorite": 3967, "\u2581babe": 3968, "worker": 3969, "\u2581hunter": 3970, "\u2581push": 3971, "wear": 3972, "\u2581hog": 3973, "\u2581limb": 3974, "\u2581Na": 3975, "\u2581instruction": 3976, "Will": 3977, "color": 3978, "When": 3979, "Wilbur": 3980, "\u2581includ": 3981, "midst": 3982, "\u2581pin": 3983, "\u2581accomplish": 3984, "Of": 3985, "\u2581prevail": 3986, "\u2581Late": 3987, "\u2581hind": 3988, "\u2581charg": 3989, "\u2581handful": 3990, "yard": 3991, "\u2581dim": 3992, "\u2581K": 3993, "\u2581decide": 3994, "\u2581conceive": 3995, "\u2581circumcise": 3996, "lace": 3997, "ursed": 3998, "\u2581lunch": 3999, "\u2581mouths": 4000, "\u2581confident": 4001, "\u2581fervent": 4002, "\u2581brief": 4003, "\u2581shout": 4004, "\u2581deceitful": 4005, "\u2581difficult": 4006, "uddenly": 4007, "\u2581warn": 4008, "\u2581overthrow": 4009, "\u2581rend": 4010, "\u2581purse": 4011, "\u2581zeal": 4012, "\u2581confus": 4013, "\u2581deceit": 4014, "\u2581cruel": 4015, "\u2581pant": 4016, "\u2581Corinth": 4017, "\u2581Bethsaida": 4018, "\u2581Boudinot": 4019, "\u2581Chedorlaomer": 4020, "\u2581Chief": 4021, "\u2581Deliver": 4022, "\u2581Friend": 4023, "\u2581Nadab": 4024, "\u2581Pamphylia": 4025, "\u2581Philippi": 4026, "\u2581Serug": 4027, "\u2581Tarsus": 4028, "\u2581Thomas": 4029, "\u2581Tychicus": 4030, "\u2581YHWH": 4031, "\u2581abolish": 4032, "\u2581accurately": 4033, "\u2581affrighted": 4034, "\u2581amazement": 4035, "\u2581anathema": 4036, "\u2581attitude": 4037, "\u2581beguile": 4038, "\u2581betrothed": 4039, "\u2581borrow": 4040, "\u2581bridle": 4041, "\u2581carriage": 4042, "\u2581cheese": 4043, "\u2581consecration": 4044, "\u2581cornmeal": 4045, "\u2581cotton": 4046, "\u2581dissolved": 4047, "\u2581furlongs": 4048, "\u2581grandmother": 4049, "\u2581grandstand": 4050, "\u2581grief": 4051, "\u2581grinned": 4052, "\u2581heretofore": 4053, "\u2581hospitality": 4054, "\u2581hurry": 4055, "\u2581infirmities": 4056, "\u2581insurrection": 4057, "\u2581leather": 4058, "\u2581magazine": 4059, "\u2581mandrakes": 4060, "\u2581muttered": 4061, "\u2581nutrients": 4062, "\u2581organisms": 4063, "\u2581perfume": 4064, "\u2581powder": 4065, "\u2581racket": 4066, "\u2581regret": 4067, "\u2581religion": 4068, "\u2581spinnerets": 4069, "\u2581strict": 4070, "\u2581stunned": 4071, "\u2581swelling": 4072, "\u2581task": 4073, "\u2581terrified": 4074, "\u2581thieves": 4075, "\u2581thoroughly": 4076, "\u2581ungodliness": 4077, "\u2581upstairs": 4078, "\u2581vanity": 4079, "\u2581vengeance": 4080, "\u2581whisky": 4081, "\u2581avoid": 4082, "\u2581cream": 4083, "\u2581deaf": 4084, "\u2581decision": 4085, "\u2581excess": 4086, "\u2581flavor": 4087, "\u2581indoors": 4088, "\u2581kinsmen": 4089, "\u2581lascivious": 4090, "\u2581orchard": 4091, "\u2581progress": 4092, "\u2581sweep": 4093, "\u2581thumb": 4094, "\u2581worried": 4095, "\u2581Diana": 4096, "\u2581Nathanael": 4097, "\u2581burst": 4098, "\u2581neglect": 4099, "\u2581polish": 4100, "\u2581secur": 4101, "closing": 4102, "\u2581Hosanna": 4103, "\u2581alien": 4104, "\u2581rumor": 4105, "\u2581slumber": 4106, "\u2581sneak": 4107, "\u2581Like": 4108, "\u2581gravity": 4109, "\u2581Aholi": 4110, "\u2581crumbs": 4111, "\u2581difference": 4112, "\u2581citizenship": 4113, "\u2581snout": 4114, "Sleep": 4115, "\u2581choke": 4116, "\u2581heavily": 4117, "\u2581continuing": 4118, "\u2581fables": 4119, "Humble": 4120, "\u2581Deep": 4121, "\u2581delay": 4122, "\u2581tag": 4123, "\u2581overtake": 4124, "\u2581bald": 4125, "\u2581odor": 4126, "diment": 4127, "\u2581Gaius": 4128, "\u2581Zerah": 4129, "\u2581Jason": 4130, "\u2581bowels": 4131, "\u2581Heaven": 4132, "\u2581Depart": 4133, "\u2581support": 4134, "\u2581babies": 4135, "\u2581straitened": 4136, "\u2581consolation": 4137, "\u2581bucket": 4138, "\u2581riverboat": 4139, "\u2581seventeen": 4140, "\u2581Tru": 4141, "\u2581graft": 4142, "\u2581bleed": 4143, "\u2581urgent": 4144, "\u2581uncertain": 4145, "\u2581brook": 4146, "\u2581stewardship": 4147, "\u2581sincerity": 4148, "\u2581dig": 4149, "\u2581gentlemen": 4150, "\u2581dollar": 4151, "\u2581buck": 4152, "\u2581property": 4153, "\u2581wallet": 4154, "\u2581partner": 4155, "\u2581crook": 4156, "\u2581assign": 4157, "\u2581accusation": 4158, "\u2581otherwise": 4159, "\u2581Herodias": 4160, "\u2581provender": 4161, "\u2581scales": 4162, "\u2581confusion": 4163, "\u2581stem": 4164, "\u2581victory": 4165, "\u2581attack": 4166, "\u2581tower": 4167, "\u2581envie": 4168, "\u2581assay": 4169, "\u2581hys": 4170, "\u2581landscape": 4171, "\u2581liquor": 4172, "\u2581wot": 4173, "\u2581duty": 4174, "\u2581chew": 4175, "\u2581lice": 4176, "\u2581shamefully": 4177, "\u2581carton": 4178, "\u2581split": 4179, "Bee": 4180, "\u2581dung": 4181, "\u2581shortened": 4182, "\u2581utterance": 4183, "\u2581distinction": 4184, "\u2581friendship": 4185, "\u2581expectation": 4186, "\u2581raw": 4187, "\u2581behave": 4188, "\u2581motionless": 4189, "\u2581square": 4190, "\u2581offence": 4191, "\u2581appearance": 4192, "\u2581potatoes": 4193, "\u2581firm": 4194, "\u2581westward": 4195, "\u2581filthy": 4196, "\u2581dizzy": 4197, "\u2581memory": 4198, "\u2581pepper": 4199, "\u2581spilled": 4200, "\u2581peach": 4201, "\u2581tossed": 4202, "\u2581potter": 4203, "neck": 4204, "\u2581argument": 4205, "\u2581Save": 4206, "\u2581cris": 4207, "\u2581election": 4208, "\u2581punished": 4209, "\u2581frightened": 4210, "\u2581booth": 4211, "\u2581ladies": 4212, "agement": 4213, "\u2581Jonah": 4214, "\u2581Keep": 4215, "\u2581boast": 4216, "\u2581wake": 4217, "\u2581priesthood": 4218, "\u2581glanc": 4219, "\u2581squirrels": 4220, "\u2581relieved": 4221, "\u2581Onan": 4222, "\u2581Sam": 4223, "tual": 4224, "\u2581chuckled": 4225, "\u2581explained": 4226, "\u2581trembled": 4227, "\u2581Over": 4228, "\u2581comfortable": 4229, "\u2581gainsaying": 4230, "\u2581graven": 4231, "\u2581slight": 4232, "R": 4233, "\u2581stage": 4234, "\u2581pine": 4235, "\u2581moth": 4236, "lapped": 4237, "\u2581pretend": 4238, "\u2581noble": 4239, "\u2581chastening": 4240, "\u2581scar": 4241, "\u2581upside": 4242, "ross": 4243, "\u2581however": 4244, "\u2581weave": 4245, "\u2581Fall": 4246, "\u2581damp": 4247, "\u2581whispering": 4248, "\u2581tares": 4249, "\u2581warriors": 4250, "\u2581idolaters": 4251, "\u2581swo": 4252, "\u2581blasphemed": 4253, "servants": 4254, "\u2581entr": 4255, "\u2581stern": 4256, "\u2581liver": 4257, "\u2581closer": 4258, "\u2581laborers": 4259, "\u2581Anna": 4260, "\u2581ax": 4261, "\u2581severally": 4262, "\u2581position": 4263, "\u2581key": 4264, "\u2581Nothing": 4265, "\u2581humbled": 4266, "\u2581assembled": 4267, "\u2581ma": 4268, "\u2581Jebusites": 4269, "\u2581fornicators": 4270, "\u2581shelters": 4271, "\u2581Perizzites": 4272, "\u2581grievously": 4273, "\u2581news": 4274, "\u2581throwing": 4275, "\u2581forthwith": 4276, "\u2581chase": 4277, "\u2581girded": 4278, "\u2581bug": 4279, "\u2581barking": 4280, "\u2581flatter": 4281, "\u2581sir": 4282, "\u2581spinn": 4283, "\u2581stack": 4284, "\u2581passions": 4285, "\u2581lid": 4286, "\u2581scattering": 4287, "\u2581fi": 4288, "\u2581thereunto": 4289, "\u2581seethe": 4290, "\u2581droppings": 4291, "\u2581joints": 4292, "\u2581sparrows": 4293, "\u2581personal": 4294, "\u2581tormented": 4295, "\u2581perisheth": 4296, "\u2581mocking": 4297, "\u2581failing": 4298, "bed": 4299, "\u2581closely": 4300, "\u2581delighted": 4301, "\u2581starv": 4302, "\u2581fatherless": 4303, "\u2581deck": 4304, "Thank": 4305, "\u2581eunuchs": 4306, "\u2581shillings": 4307, "\u2581chestnuts": 4308, "\u2581plates": 4309, "\u2581thinkest": 4310, "som": 4311, "\u2581stopp": 4312, "\u2581treated": 4313, "\u2581veiled": 4314, "\u2581questioning": 4315, "\u2581invisible": 4316, "\u2581messengers": 4317, "\u2581Whom": 4318, "ature": 4319, "arley": 4320, "\u2581singing": 4321, "\u2581firstling": 4322, "\u2581wont": 4323, "ole": 4324, "\u2581considered": 4325, "\u2581inhabited": 4326, "sop": 4327, "\u2581mist": 4328, "ton": 4329, "\u2581manif": 4330, "\u2581interesting": 4331, "\u2581prophesying": 4332, "iest": 4333, "\u2581serveth": 4334, "\u2581ahead": 4335, "\u2581needeth": 4336, "\u2581exhorting": 4337, "II": 4338, "\u2581efforts": 4339, "vile": 4340, "\u2581cart": 4341, "\u2581proceeded": 4342, "\u2581older": 4343, "\u2581minutes": 4344, "\u2581filling": 4345, "\u2581windows": 4346, "ards": 4347, "\u2581believest": 4348, "\u2581fashioned": 4349, "\u2581dec": 4350, "\u2581ja": 4351, "\u2581fle": 4352, "\u2581hatchets": 4353, "\u2581breathing": 4354, "his": 4355, "\u2581heirs": 4356, "\u2581awful": 4357, "\u2581seals": 4358, "ible": 4359, "alam": 4360, "side": 4361, "\u2581tooth": 4362, "\u2581divine": 4363, "\u2581forever": 4364, "mp": 4365, "\u2581fowls": 4366, "\u2581miracles": 4367, "\u2581males": 4368, "\u2581pri": 4369, "revious": 4370, "\u2581sco": 4371, "\u2581wheels": 4372, "\u2581afterwards": 4373, "\u2581questions": 4374, "\u2581remind": 4375, "\u2581Se": 4376, "\u2581cane": 4377, "\u2581pleasures": 4378, "\u2581helper": 4379, "nath": 4380, "co": 4381, "ff": 4382, "\u2581tails": 4383, "\u2581Cana": 4384, "bah": 4385, "dom": 4386, "\u2581helped": 4387, "\u2581accuser": 4388, "\u2581pa": 4389, "ran": 4390, "\u2581Bu": 4391, "uth": 4392, "hin": 4393, "\u2581images": 4394, "\u2581ash": 4395, "row": 4396, "\u2581scorn": 4397, "\u2581doll": 4398, "ded": 4399, "gy": 4400, "urge": 4401, "\u2581orders": 4402, "\u2581shell": 4403, "eph": 4404, "\u2581points": 4405, "ise": 4406, "\u2581peaceful": 4407, "ears": 4408, "\u2581trac": 4409, "ias": 4410, "\u2581sy": 4411, "\u2581su": 4412, "\u2581intreat": 4413, "\u2581lur": 4414, "ast": 4415, "\u2581tip": 4416, "ork": 4417, "tal": 4418, "\u2581decompose": 4419, "\u2581bl": 4420, "aph": 4421, "\u2581helps": 4422, "\u2581ver": 4423, "\u2581puffe": 4424, "\u2581empt": 4425, "\u2581runt": 4426, "ating": 4427, "rushed": 4428, "\u2581steppe": 4429, "por": 4430, "\u2581commune": 4431, "\u2581decompos": 4432, "\u2581bees": 4433, "nched": 4434, "\u2581mar": 4435, "ify": 4436, "ull": 4437, "cked": 4438, "\u2581layer": 4439, "als": 4440, "\u2581tu": 4441, "\u2581tool": 4442, "phe": 4443, "ile": 4444, "\u2581Si": 4445, "\u2581Ti": 4446, "\u2581bar": 4447, "\u2581Whit": 4448, "rim": 4449, "pture": 4450, "\u2581val": 4451, "angled": 4452, "\u2581mol": 4453, "\u2581qua": 4454, "erah": 4455, "\u2581kn": 4456, "pen": 4457, "iv": 4458, "rous": 4459, "\u2581dip": 4460, "\u2581Wi": 4461, "\u2581distribute": 4462, "\u2581doer": 4463, "com": 4464, "\u2581Ah": 4465, "\u2581settle": 4466, "dull": 4467, "\u2581Di": 4468, "\u2581camel": 4469, "ere": 4470, "\u2581whit": 4471, "bout": 4472, "\u2581rag": 4473, "\u2581Ca": 4474, "ians": 4475, "\u2581injur": 4476, "lations": 4477, "\u2581overthr": 4478, "rated": 4479, "eak": 4480, "unt": 4481, "board": 4482, "ung": 4483, "onsider": 4484, "eez": 4485, "\u2581cake": 4486, "uck": 4487, "\u2581using": 4488, "\u2581Bela": 4489, "ower": 4490, "\u2581Mu": 4491, "round": 4492, "work": 4493, "\u2581prefer": 4494, "\u2581vow": 4495, "\u2581skill": 4496, "\u2581Set": 4497, "visible": 4498, "antic": 4499, "ttention": 4500, "\u2581candle": 4501, "\u2581invent": 4502, "cerning": 4503, "\u2581exp": 4504, "\u2581groan": 4505, "\u2581nail": 4506, "\u2581rank": 4507, "\u2581debtor": 4508, "\u2581pomegranate": 4509, "\u2581weapon": 4510, "ined": 4511, "\u2581murmur": 4512, "ngel": 4513, "\u2581sparrow": 4514, "\u2581dropping": 4515, "\u2581deceiver": 4516, "\u2581disease": 4517, "stone": 4518, "\u2581perver": 4519, "\u2581descend": 4520, "\u2581gosling": 4521, "took": 4522, "\u2581loop": 4523, "\u2581pearl": 4524, "\u2581cla": 4525, "aged": 4526, "\u2581partaker": 4527, "\u2581chain": 4528, "course": 4529, "tled": 4530, "\u2581prais": 4531, "Stop": 4532, "Nothing": 4533, "\u2581judg": 4534, "Edith": 4535, "terrific": 4536, "\u2581despair": 4537, "D": 4538, "bow": 4539, "front": 4540, "Who": 4541, "worthy": 4542, "gave": 4543, "Did": 4544, "\u2581waste": 4545, "\u2581purify": 4546, "master": 4547, "fell": 4548, "face": 4549, "For": 4550, "\u2581load": 4551, "thirst": 4552, "\u2581jo": 4553, "\u2581instruct": 4554, "\u2581threaten": 4555, "\u2581collect": 4556, "\u2581ridge": 4557, "foot": 4558, "\u2581Kno": 4559, "\u2581murmuring": 4560, "nets": 4561, "Then": 4562, "ouched": 4563, "\u2581strengthen": 4564, "\u2581preten": 4565, "rent": 4566, "key": 4567, "\u2581excite": 4568, "\u2581arrange": 4569, "\u2581tremble": 4570, "\u2581surprise": 4571, "\u2581reprove": 4572, "\u2581approve": 4573, "\u2581swa": 4574, "\u2581dr": 4575, "ps": 4576, "\u2581general": 4577, "ounded": 4578, "\u2581clan": 4579, "\u2581vague": 4580, "\u2581Ke": 4581, "\u2581exact": 4582, "\u2581abundant": 4583, "\u2581immediate": 4584, "\u2581bruise": 4585, "\u2581supplie": 4586, "\u2581greas": 4587, "\u2581map": 4588, "\u2581cheerful": 4589, "\u2581glorie": 4590, "\u2581sur": 4591, "hood": 4592, "They": 4593, "\u2581bon": 4594, "\u2581ski": 4595, "\u2581safe": 4596, "weed": 4597, "spect": 4598, "\u2581railing": 4599, "\u2581transgress": 4600, "belief": 4601, "they": 4602, "\u2581debt": 4603, "\u2581riot": 4604, "\u2581express": 4605, "\u2581cherub": 4606, "\u2581proper": 4607, "\u2581flour": 4608, "\u2581yo": 4609, "\u2581strait": 4610, "nswere": 4611, "bby": 4612, "\u2581glutton": 4613, "\u2581horizon": 4614, "\u2581occur": 4615, "Listen": 4616, "Terrific": 4617, "latchet": 4618, "tarsus": 4619, "\u2581Amminadab": 4620, "\u2581Aristarchus": 4621, "\u2581Comforter": 4622, "\u2581Congress": 4623, "\u2581Cranshaw": 4624, "\u2581Derbe": 4625, "\u2581Dishon": 4626, "\u2581Ephrath": 4627, "\u2581Euphrates": 4628, "\u2581GOD": 4629, "\u2581Havilah": 4630, "\u2581Hearken": 4631, "\u2581Hogsucker": 4632, "\u2581Ishmeelites": 4633, "\u2581Kohath": 4634, "\u2581Nicodemus": 4635, "\u2581PIG": 4636, "\u2581Receive": 4637, "\u2581Servant": 4638, "\u2581Succoth": 4639, "\u2581Would": 4640, "\u2581Zohar": 4641, "\u2581absence": 4642, "\u2581adoption": 4643, "\u2581afford": 4644, "\u2581assurance": 4645, "\u2581blowgun": 4646, "\u2581bounty": 4647, "\u2581cabbage": 4648, "\u2581century": 4649, "\u2581chapiters": 4650, "\u2581cinnamon": 4651, "\u2581concubine": 4652, "\u2581convenient": 4653, "\u2581correspond": 4654, "\u2581demanded": 4655, "\u2581devise": 4656, "\u2581emerald": 4657, "\u2581engine": 4658, "\u2581foxes": 4659, "\u2581greeting": 4660, "\u2581handkerchief": 4661, "\u2581haught": 4662, "\u2581hereafter": 4663, "\u2581impart": 4664, "\u2581incorruption": 4665, "\u2581insects": 4666, "\u2581level": 4667, "\u2581mysterious": 4668, "\u2581necessities": 4669, "\u2581nostrils": 4670, "\u2581obeisance": 4671, "\u2581perform": 4672, "\u2581picture": 4673, "\u2581pilgrims": 4674, "\u2581president": 4675, "\u2581proconsul": 4676, "\u2581pronounce": 4677, "\u2581propitiation": 4678, "\u2581province": 4679, "\u2581raspberr": 4680, "\u2581request": 4681, "\u2581response": 4682, "\u2581restitution": 4683, "\u2581restrained": 4684, "\u2581reviling": 4685, "\u2581revived": 4686, "\u2581riverbank": 4687, "\u2581sapphire": 4688, "\u2581sardius": 4689, "\u2581showbread": 4690, "\u2581shrank": 4691, "\u2581smiled": 4692, "\u2581solemn": 4693, "\u2581straddle": 4694, "\u2581survive": 4695, "\u2581swift": 4696, "\u2581sworn": 4697, "\u2581terror": 4698, "\u2581twig": 4699, "\u2581unimagin": 4700, "\u2581unloose": 4701, "\u2581unmarried": 4702, "\u2581unusual": 4703, "\u2581whiskey": 4704, "\u2581Brother": 4705, "\u2581diminish": 4706, "\u2581disappoint": 4707, "\u2581element": 4708, "\u2581emerge": 4709, "\u2581latter": 4710, "\u2581orange": 4711, "\u2581queen": 4712, "\u2581raven": 4713, "\u2581roam": 4714, "\u2581scrivener": 4715, "\u2581Gilead": 4716, "\u2581Ithamar": 4717, "\u2581Likewise": 4718, "\u2581discreet": 4719, "\u2581fraction": 4720, "\u2581impress": 4721, "\u2581knuckle": 4722, "\u2581leprosy": 4723, "\u2581mammon": 4724, "\u2581merchant": 4725, "\u2581mule": 4726, "\u2581mysteries": 4727, "\u2581reproof": 4728, "\u2581giant": 4729, "\u2581clipping": 4730, "\u2581middling": 4731, "\u2581Potiph": 4732, "\u2581circum": 4733, "\u2581crystal": 4734, "\u2581bereaved": 4735, "\u2581bondwoman": 4736, "\u2581exchange": 4737, "\u2581holler": 4738, "\u2581instru": 4739, "\u2581noodle": 4740, "\u2581adulteress": 4741, "\u2581beggar": 4742, "\u2581kicked": 4743, "\u2581title": 4744, "\u2581buryingplace": 4745, "\u2581refrain": 4746, "\u2581Christmas": 4747, "\u2581turban": 4748, "\u2581Salmon": 4749, "\u2581liberality": 4750, "\u2581enchantments": 4751, "\u2581workmanship": 4752, "\u2581occupation": 4753, "\u2581sackcloth": 4754, "\u2581bodily": 4755, "\u2581flash": 4756, "\u2581gorge": 4757, "\u2581snapp": 4758, "\u2581Preparation": 4759, "\u2581Count": 4760, "\u2581stumblingblock": 4761, "\u2581Joses": 4762, "\u2581arrival": 4763, "\u2581blasphemies": 4764, "\u2581blossoms": 4765, "\u2581freewoman": 4766, "\u2581fungus": 4767, "access": 4768, "\u2581Buddy": 4769, "\u2581covetous": 4770, "\u2581Abb": 4771, "\u2581palsied": 4772, "\u2581Walk": 4773, "\u2581nap": 4774, "\u2581winepress": 4775, "\u2581digging": 4776, "\u2581decree": 4777, "\u2581Moab": 4778, "\u2581paddle": 4779, "\u2581foggy": 4780, "\u2581job": 4781, "\u2581reverence": 4782, "\u2581Drink": 4783, "\u2581Italy": 4784, "\u2581confe": 4785, "\u2581Goodbye": 4786, "\u2581Little": 4787, "\u2581principalities": 4788, "\u2581thicket": 4789, "\u2581tonight": 4790, "kay": 4791, "\u2581cursing": 4792, "\u2581gently": 4793, "\u2581Shur": 4794, "\u2581permit": 4795, "nquire": 4796, "\u2581Haden": 4797, "\u2581announcement": 4798, "\u2581lane": 4799, "\u2581pink": 4800, "\u2581Shinar": 4801, "\u2581towel": 4802, "\u2581adj": 4803, "\u2581tempest": 4804, "\u2581scoop": 4805, "\u2581flick": 4806, "\u2581Gran": 4807, "\u2581patch": 4808, "\u2581package": 4809, "\u2581midday": 4810, "\u2581conceal": 4811, "\u2581candy": 4812, "ntil": 4813, "\u2581apostleship": 4814, "\u2581halt": 4815, "\u2581entangle": 4816, "\u2581Elam": 4817, "\u2581guilty": 4818, "\u2581loving": 4819, "\u2581crime": 4820, "\u2581malice": 4821, "\u2581countries": 4822, "\u2581heathen": 4823, "\u2581awkwardly": 4824, "\u2581crash": 4825, "\u2581Miz": 4826, "ndy": 4827, "\u2581shore": 4828, "ville": 4829, "\u2581main": 4830, "\u2581pillow": 4831, "\u2581claw": 4832, "\u2581furthermore": 4833, "\u2581satisfied": 4834, "\u2581defer": 4835, "\u2581thistles": 4836, "\u2581stedfastness": 4837, "\u2581vo": 4838, "\u2581Weep": 4839, "\u2581barbarian": 4840, "\u2581bill": 4841, "\u2581communicate": 4842, "\u2581husbandman": 4843, "\u2581Abib": 4844, "\u2581cleansing": 4845, "\u2581nearby": 4846, "\u2581operat": 4847, "\u2581sheepfold": 4848, "\u2581easily": 4849, "\u2581super": 4850, "\u2581blast": 4851, "\u2581jar": 4852, "\u2581armor": 4853, "\u2581violent": 4854, "\u2581forsaken": 4855, "\u2581grunted": 4856, "\u2581gambl": 4857, "chol": 4858, "eedy": 4859, "\u2581crushed": 4860, "\u2581phone": 4861, "\u2581whiteman": 4862, "\u2581disturb": 4863, "\u2581skirt": 4864, "no": 4865, "\u2581grease": 4866, "\u2581wealth": 4867, "\u2581supplieth": 4868, "\u2581Jam": 4869, "ently": 4870, "\u2581blame": 4871, "\u2581difficulty": 4872, "\u2581agreement": 4873, "\u2581contend": 4874, "\u2581vaguely": 4875, "\u2581Else": 4876, "\u2581needful": 4877, "pro": 4878, "\u2581weaving": 4879, "\u2581wrist": 4880, "\u2581dare": 4881, "\u2581cheerfully": 4882, "\u2581cost": 4883, "\u2581trott": 4884, "\u2581curv": 4885, "\u2581acres": 4886, "\u2581ribs": 4887, "\u2581magistrates": 4888, "\u2581Lotan": 4889, "\u2581knot": 4890, "\u2581candie": 4891, "\u2581briefly": 4892, "sual": 4893, "\u2581deceitfully": 4894, "\u2581persecutest": 4895, "\u2581maple": 4896, "\u2581ability": 4897, "\u2581fiercely": 4898, "\u2581sink": 4899, "\u2581vanished": 4900, "\u2581overhead": 4901, "\u2581arranged": 4902, "\u2581slipp": 4903, "\u2581sower": 4904, "\u2581silently": 4905, "\u2581clang": 4906, "quil": 4907, "\u2581float": 4908, "\u2581stalk": 4909, "ode": 4910, "\u2581Summ": 4911, "\u2581block": 4912, "\u2581wink": 4913, "\u2581quake": 4914, "\u2581reconciled": 4915, "\u2581platt": 4916, "\u2581shovel": 4917, "\u2581thirsty": 4918, "\u2581soup": 4919, "\u2581Never": 4920, "\u2581overthrown": 4921, "\u2581remark": 4922, "\u2581Men": 4923, "\u2581steady": 4924, "ration": 4925, "\u2581sincere": 4926, "\u2581slopes": 4927, "\u2581physicians": 4928, "\u2581killers": 4929, "\u2581dad": 4930, "\u2581action": 4931, "\u2581louder": 4932, "irst": 4933, "\u2581endless": 4934, "\u2581commendeth": 4935, "\u2581groaned": 4936, "\u2581card": 4937, "\u2581manservant": 4938, "\u2581anew": 4939, "\u2581joint": 4940, "\u2581sever": 4941, "\u2581stumbleth": 4942, "\u2581pushing": 4943, "\u2581naturally": 4944, "azed": 4945, "\u2581flip": 4946, "\u2581earrings": 4947, "\u2581lepers": 4948, "\u2581boughs": 4949, "\u2581transgressors": 4950, "\u2581faithless": 4951, "\u2581invented": 4952, "\u2581shit": 4953, "\u2581trapper": 4954, "\u2581sojourners": 4955, "\u2581oppressed": 4956, "\u2581confirmed": 4957, "\u2581Remov": 4958, "\u2581melted": 4959, "\u2581urge": 4960, "\u2581yester": 4961, "\u2581wildly": 4962, "\u2581completed": 4963, "\u2581particle": 4964, "\u2581whoring": 4965, "\u2581companions": 4966, "\u2581Hous": 4967, "\u2581hon": 4968, "\u2581pomegranates": 4969, "\u2581weapons": 4970, "\u2581wond": 4971, "ev": 4972, "\u2581actions": 4973, "\u2581overmuch": 4974, "\u2581hatched": 4975, "\u2581Teman": 4976, "\u2581continueth": 4977, "\u2581commandeth": 4978, "\u2581rep": 4979, "king": 4980, "\u2581wh": 4981, "\u2581mourned": 4982, "\u2581extortioner": 4983, "this": 4984, "\u2581thereto": 4985, "alutations": 4986, "\u2581mudd": 4987, "\u2581sen": 4988, "aid": 4989, "\u2581ci": 4990, "\u2581department": 4991, "position": 4992, "erable": 4993, "\u2581comb": 4994, "\u2581rider": 4995, "In": 4996, "\u2581richly": 4997, "rops": 4998, "lessly": 4999, "\u2581liars": 5000, "\u2581statutes": 5001, "\u2581provisions": 5002, "\u2581persecutions": 5003, "ac": 5004, "\u2581chin": 5005, "\u2581guns": 5006, "\u2581murderers": 5007, "za": 5008, "\u2581sucked": 5009, "\u2581needy": 5010, "\u2581transform": 5011, "\u2581Romans": 5012, "\u2581wanton": 5013, "\u2581finest": 5014, "\u2581driver": 5015, "\u2581preacheth": 5016, "\u2581dances": 5017, "\u2581squa": 5018, "oc": 5019, "\u2581deeply": 5020, "\u2581smoked": 5021, "ups": 5022, "cum": 5023, "\u2581lacked": 5024, "gered": 5025, "unny": 5026, "\u2581mete": 5027, "\u2581goes": 5028, "its": 5029, "\u2581pi": 5030, "\u2581nests": 5031, "\u2581games": 5032, "\u2581captives": 5033, "\u2581habitations": 5034, "\u2581girls": 5035, "ep": 5036, "\u2581profited": 5037, "\u2581flowers": 5038, "vice": 5039, "\u2581trapp": 5040, "\u2581regarded": 5041, "ction": 5042, "\u2581thighs": 5043, "tty": 5044, "\u2581worrying": 5045, "T": 5046, "\u2581amount": 5047, "\u2581righteously": 5048, "oth": 5049, "\u2581logs": 5050, "\u2581willeth": 5051, "\u2581killeth": 5052, "cakes": 5053, "\u2581colors": 5054, "\u2581papers": 5055, "mong": 5056, "\u2581tea": 5057, "\u2581customs": 5058, "ius": 5059, "che": 5060, "\u2581regions": 5061, "\u2581forgett": 5062, "ric": 5063, "\u2581seasoned": 5064, "\u2581embrace": 5065, "bs": 5066, "\u2581Abid": 5067, "\u2581tomorrow": 5068, "\u2581streams": 5069, "\u2581Christian": 5070, "\u2581worshipp": 5071, "\u2581style": 5072, "full": 5073, "\u2581figs": 5074, "\u2581aged": 5075, "\u2581buildings": 5076, "\u2581meaning": 5077, "\u2581staying": 5078, "\u2581crowned": 5079, "\u2581visions": 5080, "\u2581owners": 5081, "uz": 5082, "\u2581Fe": 5083, "\u2581mon": 5084, "\u2581governors": 5085, "\u2581sus": 5086, "\u2581ships": 5087, "figur": 5088, "\u2581Par": 5089, "arm": 5090, "et": 5091, "ives": 5092, "\u2581treat": 5093, "inning": 5094, "\u2581charges": 5095, "compelled": 5096, "\u2581Eph": 5097, "\u2581afternoons": 5098, "\u2581doings": 5099, "enable": 5100, "\u2581ink": 5101, "ok": 5102, "\u2581penn": 5103, "mma": 5104, "\u2581wanting": 5105, "fe": 5106, "\u2581edges": 5107, "\u2581rehears": 5108, "racles": 5109, "\u2581writer": 5110, "\u2581favorabl": 5111, "\u2581rattle": 5112, "tent": 5113, "inner": 5114, "anke": 5115, "\u2581conce": 5116, "\u2581busi": 5117, "\u2581smit": 5118, "\u2581perp": 5119, "\u2581shower": 5120, "\u2581Was": 5121, "\u2581earthy": 5122, "ons": 5123, "\u2581Stop": 5124, "\u2581swords": 5125, "\u2581fellows": 5126, "bone": 5127, "\u2581entice": 5128, "ave": 5129, "\u2581belong": 5130, "\u2581journeys": 5131, "\u2581lap": 5132, "\u2581differ": 5133, "\u2581prisons": 5134, "\u2581heel": 5135, "x": 5136, "\u2581curl": 5137, "ema": 5138, "eral": 5139, "Be": 5140, "vil": 5141, "born": 5142, "\u2581beard": 5143, "ich": 5144, "ular": 5145, "ddle": 5146, "\u2581Ben": 5147, "\u2581Ph": 5148, "aking": 5149, "\u2581afore": 5150, "ban": 5151, "\u2581lashe": 5152, "\u2581earthly": 5153, "van": 5154, "\u2581ch": 5155, "\u2581meats": 5156, "ore": 5157, "bel": 5158, "wled": 5159, "dder": 5160, "wood": 5161, "\u2581argu": 5162, "\u2581mus": 5163, "\u2581Phi": 5164, "ond": 5165, "\u2581interrupt": 5166, "\u2581gaz": 5167, "her": 5168, "\u2581feasts": 5169, "wardly": 5170, "\u2581struggle": 5171, "nut": 5172, "\u2581parting": 5173, "ai": 5174, "\u2581inch": 5175, "\u2581owe": 5176, "\u2581Shal": 5177, "pringtime": 5178, "\u2581ob": 5179, "\u2581driv": 5180, "lation": 5181, "dding": 5182, "\u2581hug": 5183, "\u2581strik": 5184, "ro": 5185, "\u2581breathe": 5186, "\u2581Pra": 5187, "mortal": 5188, "\u2581temperat": 5189, "rred": 5190, "\u2581pur": 5191, "\u2581j": 5192, "uni": 5193, "ities": 5194, "nic": 5195, "uring": 5196, "lings": 5197, "\u2581ascend": 5198, "\u2581striv": 5199, "itches": 5200, "\u2581cares": 5201, "\u2581calls": 5202, "\u2581Ass": 5203, "\u2581crack": 5204, "uddle": 5205, "doers": 5206, "\u2581mis": 5207, "ener": 5208, "urn": 5209, "lab": 5210, "ten": 5211, "fare": 5212, "fire": 5213, "\u2581bre": 5214, "ca": 5215, "\u2581Ro": 5216, "rian": 5217, "\u2581Eu": 5218, "\u2581oppos": 5219, "eyed": 5220, "we": 5221, "\u2581Eve": 5222, "mus": 5223, "\u2581embrac": 5224, "tting": 5225, "ati": 5226, "mmed": 5227, "tery": 5228, "tops": 5229, "\u2581fla": 5230, "lia": 5231, "\u2581resid": 5232, "rance": 5233, "\u2581fre": 5234, "\u2581temples": 5235, "eries": 5236, "\u2581chi": 5237, "ak": 5238, "pher": 5239, "\u2581hasted": 5240, "\u2581backs": 5241, "\u2581Sal": 5242, "sha": 5243, "\u2581bu": 5244, "unted": 5245, "aimed": 5246, "\u2581fir": 5247, "ized": 5248, "Th": 5249, "ega": 5250, "handed": 5251, "\u2581Mes": 5252, "\u2581extortion": 5253, "ading": 5254, "\u2581wrest": 5255, "doer": 5256, "\u2581compel": 5257, "gg": 5258, "\u2581bough": 5259, "nceforth": 5260, "orted": 5261, "\u2581chasten": 5262, "\u2581benefit": 5263, "\u2581patriarch": 5264, "\u2581guest": 5265, "\u2581result": 5266, "\u2581bishop": 5267, "\u2581ewe": 5268, "will": 5269, "rches": 5270, "\u2581faction": 5271, "\u2581psalm": 5272, "\u2581senator": 5273, "come": 5274, "\u2581pigeon": 5275, "\u2581whisper": 5276, "\u2581eagle": 5277, "\u2581repute": 5278, "\u2581section": 5279, "\u2581Levite": 5280, "dressed": 5281, "\u2581leper": 5282, "unch": 5283, "\u2581transgressor": 5284, "\u2581Jebusite": 5285, "\u2581Perizzite": 5286, "\u2581fornicator": 5287, "hand": 5288, "\u2581peoples": 5289, "\u2581bla": 5290, "\u2581earring": 5291, "\u2581shelter": 5292, "\u2581hook": 5293, "\u2581bo": 5294, "upon": 5295, "\u2581stab": 5296, "\u2581spice": 5297, "\u2581sojourner": 5298, "eas": 5299, "quench": 5300, "\u2581gir": 5301, "witch": 5302, "load": 5303, "\u2581needle": 5304, "bbed": 5305, "\u2581farmer": 5306, "Certainly": 5307, "warm": 5308, "owing": 5309, "worm": 5310, "bas": 5311, "Y": 5312, "stood": 5313, "ridge": 5314, "hearted": 5315, "Pig": 5316, "floor": 5317, "prisoner": 5318, "Ho": 5319, "hooks": 5320, "learned": 5321, "legs": 5322, "quiet": 5323, "pieces": 5324, "break": 5325, "thirty": 5326, "closed": 5327, "blood": 5328, "finger": 5329, "wife": 5330, "Take": 5331, "ground": 5332, "looking": 5333, "ick": 5334, "\u2581encounter": 5335, "\u2581remov": 5336, "Sure": 5337, "\u2581assembl": 5338, "ocked": 5339, "\u2581affirm": 5340, "\u2581buffet": 5341, "\u2581loos": 5342, "Every": 5343, "\u2581explo": 5344, "\u2581refresh": 5345, "speak": 5346, "\u2581fix": 5347, "volut": 5348, "sembled": 5349, "que": 5350, "back": 5351, "five": 5352, "An": 5353, "hath": 5354, "\u2581miss": 5355, "\u2581Alexandria": 5356, "Here": 5357, "Te": 5358, "\u2581Right": 5359, "\u2581cree": 5360, "\u2581enlarge": 5361, "\u2581relieve": 5362, "\u2581prophesie": 5363, "\u2581purchase": 5364, "\u2581bore": 5365, "\u2581determine": 5366, "\u2581excuse": 5367, "\u2581marrie": 5368, "\u2581pursue": 5369, "\u2581arrive": 5370, "\u2581meek": 5371, "\u2581pierce": 5372, "posed": 5373, "\u2581delicate": 5374, "\u2581nervous": 5375, "\u2581app": 5376, "cient": 5377, "\u2581private": 5378, "ocia": 5379, "alvation": 5380, "\u2581possibl": 5381, "\u2581jealous": 5382, "atic": 5383, "ju": 5384, "ected": 5385, "upp": 5386, "istles": 5387, "\u2581brim": 5388, "roi": 5389, "\u2581gener": 5390, "ossum": 5391, "\u2581mirac": 5392, "ntity": 5393, "\u2581forgot": 5394, "\u2581princip": 5395, "\u2581meditat": 5396, "\u2581announce": 5397, "orthy": 5398, "appy": 5399, "reakfast": 5400, "\u2581author": 5401, "olonel": 5402, "\u2581desp": 5403, "oyal": 5404, "\u2581apprecia": 5405, "Congratu": 5406, "\u2581Jehovah": 5407, "wilight": 5408, "zziah": 5409, "\u2581Adullamite": 5410, "\u2581Ahaz": 5411, "\u2581Aranea": 5412, "\u2581Bartholomew": 5413, "\u2581Bernice": 5414, "\u2581Bethphage": 5415, "\u2581Boaz": 5416, "\u2581Boston": 5417, "\u2581Chaldees": 5418, "\u2581Chesapeake": 5419, "\u2581Crawdaddy": 5420, "\u2581Decapolis": 5421, "\u2581Demetrius": 5422, "\u2581Echota": 5423, "\u2581Eliezer": 5424, "\u2581Epaphras": 5425, "\u2581Ethiopia": 5426, "\u2581Galway": 5427, "\u2581Gennesaret": 5428, "\u2581Gershon": 5429, "\u2581Golgotha": 5430, "\u2581Hallelujah": 5431, "\u2581Hezekiah": 5432, "\u2581Horeb": 5433, "\u2581Jeremiah": 5434, "\u2581Joktan": 5435, "\u2581Jotham": 5436, "\u2581Jupiter": 5437, "\u2581Kadesh": 5438, "\u2581Kenaz": 5439, "\u2581Luke": 5440, "\u2581Matthew": 5441, "\u2581Merari": 5442, "\u2581Nahshon": 5443, "\u2581Nebajoth": 5444, "\u2581Nellie": 5445, "\u2581Notwithstanding": 5446, "\u2581Olivet": 5447, "\u2581Peabody": 5448, "\u2581Pentecost": 5449, "\u2581Perez": 5450, "\u2581Perga": 5451, "\u2581Pharez": 5452, "\u2581Phrygia": 5453, "\u2581Pontus": 5454, "\u2581Prince": 5455, "\u2581Priscilla": 5456, "\u2581Psalms": 5457, "\u2581Rehoboth": 5458, "\u2581Rephidim": 5459, "\u2581Sardis": 5460, "\u2581Shealtiel": 5461, "\u2581Siddim": 5462, "\u2581Silvanus": 5463, "\u2581Street": 5464, "\u2581Symeon": 5465, "\u2581Tarshish": 5466, "\u2581Thessalonica": 5467, "\u2581Trophimus": 5468, "\u2581Twelve": 5469, "\u2581Zeboi": 5470, "\u2581Zillah": 5471, "\u2581Zipporah": 5472, "\u2581achieve": 5473, "\u2581addition": 5474, "\u2581advance": 5475, "\u2581aeronaut": 5476, "\u2581affairs": 5477, "\u2581anxiety": 5478, "\u2581apiece": 5479, "\u2581attire": 5480, "\u2581avail": 5481, "\u2581balsam": 5482, "\u2581bountifully": 5483, "\u2581canvas": 5484, "\u2581captivity": 5485, "\u2581chickadee": 5486, "\u2581colours": 5487, "\u2581column": 5488, "\u2581conclusion": 5489, "\u2581conduct": 5490, "\u2581conflict": 5491, "\u2581congealed": 5492, "\u2581constructed": 5493, "\u2581contrariwise": 5494, "\u2581contributi": 5495, "\u2581corpse": 5496, "\u2581crazy": 5497, "\u2581curiosity": 5498, "\u2581deacons": 5499, "\u2581desperation": 5500, "\u2581destiny": 5501, "\u2581disorderly": 5502, "\u2581disputing": 5503, "\u2581dissension": 5504, "\u2581district": 5505, "\u2581draught": 5506, "\u2581dungeon": 5507, "\u2581edifieth": 5508, "\u2581embarrass": 5509, "\u2581esteem": 5510, "\u2581exhausted": 5511, "\u2581exotic": 5512, "\u2581farewell": 5513, "\u2581fascinating": 5514, "\u2581feeble": 5515, "\u2581fetters": 5516, "\u2581fifties": 5517, "\u2581forewarn": 5518, "\u2581fragments": 5519, "\u2581frankincense": 5520, "\u2581furnished": 5521, "\u2581handbreadth": 5522, "\u2581hayloft": 5523, "\u2581hymn": 5524, "\u2581immortality": 5525, "\u2581increasing": 5526, "\u2581jailor": 5527, "\u2581journals": 5528, "\u2581kinsfolk": 5529, "\u2581knothole": 5530, "\u2581leanfleshed": 5531, "\u2581lodging": 5532, "\u2581machine": 5533, "\u2581matrix": 5534, "\u2581meadow": 5535, "\u2581mistress": 5536, "\u2581moisture": 5537, "\u2581mosquitoes": 5538, "\u2581oblig": 5539, "\u2581opposition": 5540, "\u2581philosoph": 5541, "\u2581pilgrimage": 5542, "\u2581pistol": 5543, "\u2581poison": 5544, "\u2581poverty": 5545, "\u2581predator": 5546, "\u2581produce": 5547, "\u2581rabbit": 5548, "\u2581recognize": 5549, "\u2581rectang": 5550, "\u2581remnant": 5551, "\u2581replenish": 5552, "\u2581representatives": 5553, "\u2581retrieve": 5554, "\u2581sermon": 5555, "\u2581shewbread": 5556, "\u2581shoot": 5557, "\u2581shotgun": 5558, "\u2581subsistence": 5559, "\u2581swept": 5560, "\u2581swipe": 5561, "\u2581tavern": 5562, "\u2581terrain": 5563, "\u2581territory": 5564, "\u2581throng": 5565, "\u2581titmouse": 5566, "\u2581tread": 5567, "\u2581unawares": 5568, "\u2581unceasing": 5569, "\u2581undefiled": 5570, "\u2581unexpected": 5571, "\u2581unjust": 5572, "\u2581unknown": 5573, "\u2581unreasonable": 5574, "\u2581unveiled": 5575, "\u2581uproar": 5576, "\u2581vehemently": 5577, "\u2581vertical": 5578, "\u2581virtue": 5579, "\u2581waterproof": 5580, "\u2581yesternight": 5581, "\u2581antichrist": 5582, "\u2581compact": 5583, "\u2581congress": 5584, "\u2581dedicat": 5585, "\u2581gnat": 5586, "\u2581maintain": 5587, "\u2581oven": 5588, "\u2581unloaded": 5589, "\u2581Asshur": 5590, "\u2581Demas": 5591, "\u2581Latin": 5592, "\u2581clover": 5593, "\u2581conquer": 5594, "\u2581distinguish": 5595, "\u2581dowry": 5596, "\u2581dusk": 5597, "\u2581freeze": 5598, "\u2581major": 5599, "\u2581overwhelm": 5600, "\u2581pitfall": 5601, "\u2581proverb": 5602, "\u2581quiver": 5603, "\u2581Dishan": 5604, "\u2581Glory": 5605, "\u2581agony": 5606, "\u2581desk": 5607, "\u2581saddlebag": 5608, "\u2581succeed": 5609, "\u2581superscription": 5610, "Play": 5611, "dopted": 5612, "satisfact": 5613, "\u2581Serve": 5614, "\u2581cedar": 5615, "\u2581conclud": 5616, "\u2581loaf": 5617, "\u2581lucre": 5618, "\u2581oats": 5619, "\u2581satisfy": 5620, "\u2581topaz": 5621, "vaga": 5622, "\u2581Bind": 5623, "\u2581Erastus": 5624, "\u2581moaned": 5625, "\u2581smart": 5626, "\u2581Besides": 5627, "\u2581Talk": 5628, "\u2581backbit": 5629, "\u2581profess": 5630, "timber": 5631, "\u2581Arabia": 5632, "\u2581approaching": 5633, "\u2581undone": 5634, "\u2581Dedan": 5635, "\u2581procur": 5636, "\u2581Shobal": 5637, "\u2581authorities": 5638, "\u2581consult": 5639, "Could": 5640, "\u2581limp": 5641, "havi": 5642, "\u2581Welch": 5643, "\u2581brawle": 5644, "\u2581Jobab": 5645, "\u2581River": 5646, "\u2581wafer": 5647, "alley": 5648, "\u2581abated": 5649, "\u2581emotion": 5650, "\u2581surround": 5651, "\u2581united": 5652, "\u2581Balaam": 5653, "\u2581delicious": 5654, "\u2581dread": 5655, "\u2581abuse": 5656, "\u2581engage": 5657, "\u2581swimming": 5658, "\u2581Marah": 5659, "\u2581mumbled": 5660, "\u2581stock": 5661, "\u2581tanner": 5662, "\u2581Syr": 5663, "\u2581Tiberias": 5664, "\u2581Phoenicia": 5665, "\u2581assistance": 5666, "\u2581ceasing": 5667, "\u2581tape": 5668, "\u2581pottage": 5669, "\u2581trading": 5670, "\u2581chide": 5671, "\u2581rebelled": 5672, "\u2581slanderers": 5673, "\u2581Territories": 5674, "\u2581prophetess": 5675, "\u2581sheaf": 5676, "\u2581Prisc": 5677, "\u2581glow": 5678, "\u2581grownups": 5679, "\u2581terrify": 5680, "\u2581vote": 5681, "\u2581pestilence": 5682, "\u2581quill": 5683, "\u2581Creator": 5684, "\u2581midway": 5685, "\u2581route": 5686, "\u2581slant": 5687, "\u2581luck": 5688, "\u2581brink": 5689, "\u2581nobleman": 5690, "OM": 5691, "choni": 5692, "\u2581device": 5693, "iletus": 5694, "\u2581scent": 5695, "ella": 5696, "\u2581contentious": 5697, "\u2581Shuah": 5698, "\u2581cords": 5699, "\u2581smear": 5700, "\u2581Zeal": 5701, "\u2581Paradise": 5702, "\u2581stubble": 5703, "\u2581indig": 5704, "\u2581Ezer": 5705, "\u2581Luz": 5706, "\u2581bolt": 5707, "clock": 5708, "\u2581Fift": 5709, "\u2581destitute": 5710, "kling": 5711, "\u2581Lys": 5712, "\u2581crafti": 5713, "\u2581spun": 5714, "\u2581amiss": 5715, "everal": 5716, "\u2581prun": 5717, "\u2581mistake": 5718, "east": 5719, "\u2581locks": 5720, "\u2581pouches": 5721, "\u2581safety": 5722, "\u2581birch": 5723, "\u2581variet": 5724, "\u2581lounge": 5725, "phath": 5726, "\u2581affectionate": 5727, "\u2581responsibilit": 5728, "\u2581bondman": 5729, "\u2581possum": 5730, "\u2581Herodians": 5731, "\u2581lobby": 5732, "\u2581moonlight": 5733, "\u2581harness": 5734, "\u2581poking": 5735, "\u2581shorn": 5736, "\u2581birthday": 5737, "\u2581lawlessness": 5738, "\u2581Corn": 5739, "\u2581errand": 5740, "\u2581cruse": 5741, "\u2581favorite": 5742, "\u2581spru": 5743, "\u2581stank": 5744, "noch": 5745, "\u2581jerky": 5746, "\u2581hireling": 5747, "\u2581garnet": 5748, "\u2581hatred": 5749, "\u2581justification": 5750, "\u2581Still": 5751, "\u2581Big": 5752, "\u2581modest": 5753, "\u2581sideboards": 5754, "\u2581correction": 5755, "\u2581imprisonment": 5756, "\u2581advertisement": 5757, "\u2581peel": 5758, "\u2581lain": 5759, "\u2581Pass": 5760, "\u2581weaned": 5761, "\u2581lowliness": 5762, "\u2581Meat": 5763, "\u2581beryl": 5764, "\u2581equality": 5765, "\u2581Elon": 5766, "\u2581pallet": 5767, "\u2581departure": 5768, "\u2581Hard": 5769, "\u2581ladder": 5770, "\u2581population": 5771, "\u2581Esh": 5772, "\u2581womenservants": 5773, "ulous": 5774, "\u2581scarce": 5775, "\u2581harmless": 5776, "\u2581Bethel": 5777, "\u2581withereth": 5778, "\u2581moss": 5779, "\u2581forks": 5780, "\u2581braid": 5781, "pparent": 5782, "\u2581observation": 5783, "\u2581heritage": 5784, "\u2581trance": 5785, "\u2581hateful": 5786, "\u2581Mother": 5787, "\u2581weaknesses": 5788, "\u2581decease": 5789, "\u2581cele": 5790, "\u2581Cush": 5791, "\u2581lofty": 5792, "\u2581thoughtfully": 5793, "\u2581specifi": 5794, "\u2581practic": 5795, "circling": 5796, "\u2581resolv": 5797, "\u2581boundary": 5798, "\u2581joyful": 5799, "\u2581owest": 5800, "\u2581Canaanit": 5801, "\u2581visitors": 5802, "\u2581More": 5803, "\u2581cust": 5804, "\u2581Dog": 5805, "\u2581purser": 5806, "\u2581bay": 5807, "little": 5808, "\u2581Ram": 5809, "\u2581broth": 5810, "\u2581deliverance": 5811, "\u2581engraver": 5812, "\u2581Life": 5813, "\u2581hoisted": 5814, "\u2581enlightened": 5815, "\u2581Timnath": 5816, "\u2581Lif": 5817, "mates": 5818, "\u2581lingere": 5819, "\u2581sevenfold": 5820, "\u2581exist": 5821, "\u2581rare": 5822, "lves": 5823, "\u2581bitterness": 5824, "\u2581treaty": 5825, "\u2581nervously": 5826, "\u2581alleg": 5827, "\u2581reviled": 5828, "\u2581thefts": 5829, "\u2581Five": 5830, "\u2581overhear": 5831, "ubtle": 5832, "\u2581fur": 5833, "\u2581swoop": 5834, "\u2581waist": 5835, "\u2581wishes": 5836, "\u2581drift": 5837, "\u2581rifle": 5838, "\u2581smoking": 5839, "\u2581ridden": 5840, "\u2581barrel": 5841, "\u2581Any": 5842, "\u2581collection": 5843, "\u2581Really": 5844, "\u2581sobbed": 5845, "lick": 5846, "\u2581Ski": 5847, "\u2581clu": 5848, "\u2581maiden": 5849, "\u2581Away": 5850, "\u2581slice": 5851, "\u2581interpreter": 5852, "\u2581Amram": 5853, "\u2581costly": 5854, "\u2581safely": 5855, "\u2581stall": 5856, "\u2581avenger": 5857, "\u2581quietness": 5858, "\u2581dishes": 5859, "roughly": 5860, "\u2581plantation": 5861, "\u2581forgiveness": 5862, "\u2581Athens": 5863, "\u2581Horites": 5864, "\u2581Ephesians": 5865, "\u2581buttocks": 5866, "\u2581malefactors": 5867, "\u2581ornaments": 5868, "\u2581stairs": 5869, "\u2581spoons": 5870, "\u2581mounds": 5871, "\u2581reflect": 5872, "\u2581enlarged": 5873, "\u2581plead": 5874, "\u2581discour": 5875, "\u2581sowest": 5876, "\u2581prey": 5877, "\u2581workman": 5878, "\u2581builders": 5879, "makers": 5880, "\u2581fervently": 5881, "\u2581confidently": 5882, "\u2581passway": 5883, "\u2581sport": 5884, "\u2581Obed": 5885, "gar": 5886, "\u2581blasphemeth": 5887, "\u2581blackness": 5888, "bib": 5889, "\u2581sup": 5890, "\u2581fadeth": 5891, "\u2581knocketh": 5892, "\u2581quenched": 5893, "\u2581confounded": 5894, "\u2581hallowed": 5895, "\u2581unfe": 5896, "\u2581excited": 5897, "\u2581balloonist": 5898, "\u2581signifying": 5899, "\u2581threshing": 5900, "\u2581basin": 5901, "\u2581blink": 5902, "\u2581faithfulness": 5903, "\u2581lit": 5904, "uci": 5905, "quet": 5906, "\u2581compli": 5907, "\u2581trout": 5908, "\u2581source": 5909, "\u2581patiently": 5910, "cated": 5911, "\u2581referr": 5912, "\u2581surprised": 5913, "\u2581bruised": 5914, "\u2581Ash": 5915, "\u2581consideration": 5916, "\u2581passion": 5917, "llaba": 5918, "\u2581uprightly": 5919, "\u2581diam": 5920, "\u2581address": 5921, "\u2581pans": 5922, "\u2581fishers": 5923, "aster": 5924, "\u2581tie": 5925, "\u2581affirmed": 5926, "\u2581buffeted": 5927, "\u2581chastened": 5928, "\u2581eighteen": 5929, "\u2581outwardly": 5930, "uit": 5931, "\u2581mash": 5932, "\u2581squat": 5933, "\u2581childless": 5934, "\u2581pierced": 5935, "onge": 5936, "\u2581contention": 5937, "\u2581hor": 5938, "\u2581joke": 5939, "\u2581beheaded": 5940, "\u2581AN": 5941, "\u2581eleventh": 5942, "\u2581pleasantly": 5943, "ament": 5944, "stance": 5945, "\u2581brimm": 5946, "\u2581strands": 5947, "\u2581anchors": 5948, "\u2581features": 5949, "\u2581sorcerers": 5950, "\u2581None": 5951, "\u2581basons": 5952, "\u2581peaceable": 5953, "did": 5954, "\u2581defilement": 5955, "\u2581memorialize": 5956, "\u2581purifie": 5957, "\u2581Certainly": 5958, "\u2581Hunt": 5959, "mission": 5960, "\u2581army": 5961, "avan": 5962, "\u2581purifying": 5963, "\u2581bidd": 5964, "\u2581preserved": 5965, "\u2581provoked": 5966, "hair": 5967, "\u2581reapeth": 5968, "\u2581outhouse": 5969, "gate": 5970, "\u2581control": 5971, "\u2581Herm": 5972, "\u2581har": 5973, "\u2581destroyer": 5974, "Egg": 5975, "\u2581wrestl": 5976, "\u2581boo": 5977, "\u2581threatening": 5978, "\u2581pals": 5979, "\u2581impen": 5980, "gars": 5981, "\u2581Lib": 5982, "\u2581pigeons": 5983, "\u2581psalms": 5984, "\u2581senators": 5985, "\u2581Levites": 5986, "\u2581eagles": 5987, "\u2581sections": 5988, "\u2581stirr": 5989, "\u2581ruleth": 5990, "oming": 5991, "cob": 5992, "\u2581Timna": 5993, "\u2581farmers": 5994, "\u2581cured": 5995, "\u2581wounding": 5996, "\u2581fleeth": 5997, "ical": 5998, "\u2581lawless": 5999, "\u2581lu": 6000, "\u2581metal": 6001, "attered": 6002, "\u2581remarks": 6003, "RE": 6004, "\u2581heels": 6005, "\u2581nails": 6006, "\u2581agate": 6007, "\u2581meaneth": 6008, "\u2581vows": 6009, "\u2581debtors": 6010, "\u2581loads": 6011, "\u2581cards": 6012, "\u2581Pat": 6013, "\u2581deceivers": 6014, "\u2581tur": 6015, "\u2581moveth": 6016, "\u2581fewer": 6017, "\u2581scraping": 6018, "\u2581Please": 6019, "\u2581attained": 6020, "\u2581possessor": 6021, "\u2581cu": 6022, "\u2581envying": 6023, "\u2581slime": 6024, "traightway": 6025, "\u2581lowly": 6026, "\u2581handfuls": 6027, "xa": 6028, "\u2581falsely": 6029, "\u2581pants": 6030, "ways": 6031, "edent": 6032, "ndered": 6033, "\u2581k": 6034, "\u2581patt": 6035, "\u2581handled": 6036, "\u2581traveled": 6037, "\u2581understandeth": 6038, "\u2581doubled": 6039, "\u2581ruled": 6040, "killet": 6041, "\u2581bricks": 6042, "\u2581sepulchres": 6043, "\u2581scraps": 6044, "\u2581lions": 6045, "\u2581worms": 6046, "\u2581fastings": 6047, "\u2581justif": 6048, "\u2581pleasing": 6049, "\u2581livers": 6050, "\u2581def": 6051, "\u2581swinging": 6052, "\u2581doubting": 6053, "\u2581favored": 6054, "strain": 6055, "\u2581fetched": 6056, "\u2581seemly": 6057, "\u2581alike": 6058, "\u2581careth": 6059, "\u2581frie": 6060, "\u2581goal": 6061, "\u2581blades": 6062, "\u2581banks": 6063, "\u2581tales": 6064, "\u2581Saying": 6065, "\u2581spl": 6066, "\u2581salted": 6067, "\u2581rate": 6068, "\u2581burdened": 6069, "\u2581harps": 6070, "mal": 6071, "ference": 6072, "\u2581flowed": 6073, "\u2581deserted": 6074, "sia": 6075, "ronic": 6076, "\u2581folds": 6077, "\u2581traditions": 6078, "\u2581inv": 6079, "ads": 6080, "\u2581inwards": 6081, "\u2581jell": 6082, "\u2581rubbe": 6083, "changers": 6084, "phan": 6085, "\u2581beg": 6086, "\u2581chil": 6087, "\u2581piti": 6088, "\u2581guides": 6089, "\u2581figures": 6090, "\u2581earthquakes": 6091, "enness": 6092, "\u2581healings": 6093, "\u2581fightings": 6094, "\u2581outward": 6095, "zah": 6096, "coal": 6097, "\u2581dine": 6098, "\u2581sop": 6099, "\u2581posts": 6100, "\u2581scal": 6101, "\u2581chambers": 6102, "\u2581threads": 6103, "\u2581washing": 6104, "\u2581daze": 6105, "\u2581seeds": 6106, "\u2581playing": 6107, "skinned": 6108, "stern": 6109, "sea": 6110, "\u2581Za": 6111, "\u2581cases": 6112, "uts": 6113, "lax": 6114, "\u2581multiplying": 6115, "ograph": 6116, "\u2581revelations": 6117, "\u2581happens": 6118, "\u2581wail": 6119, "\u2581departing": 6120, "\u2581adventure": 6121, "\u2581pal": 6122, "ause": 6123, "\u2581caves": 6124, "\u2581girdles": 6125, "\u2581deserts": 6126, "bach": 6127, "\u2014-": 6128, "\u2581oppose": 6129, "\u2581hens": 6130, "\u2581cabins": 6131, "ittle": 6132, "\u2581Sea": 6133, "\u2581War": 6134, "\u2581occasional": 6135, "\u2581oaths": 6136, "\u2581snows": 6137, "\u2581cau": 6138, "oking": 6139, "\u2581bushe": 6140, "omp": 6141, "\u2581tribulations": 6142, "\u2581labors": 6143, "\u2581gallo": 6144, "raise": 6145, "\u2581afflictions": 6146, "stable": 6147, "uff": 6148, "imate": 6149, "\u2581Gre": 6150, "\u2581hearer": 6151, "\u2581la": 6152, "ium": 6153, "\u2581class": 6154, "\u2581states": 6155, "\u2581rightly": 6156, "ui": 6157, "\u2581blinded": 6158, "\u2581fasted": 6159, "cu": 6160, "lent": 6161, "\u2581res": 6162, "\u2581perfecting": 6163, "\u2581foundations": 6164, "\u2581Ab": 6165, "\u2581Sett": 6166, "oli": 6167, "amped": 6168, "\u2581breastplates": 6169, "rah": 6170, "\u2581Sh": 6171, "\u2581gat": 6172, "\u2581fr": 6173, "\u2581crackl": 6174, "\u2581Med": 6175, "ecting": 6176, "\u2581shove": 6177, "\u2581counsels": 6178, "\u2581needles": 6179, "\u2581Haz": 6180, "\u2581sorrows": 6181, "oned": 6182, "eady": 6183, "\u2581inte": 6184, "\u2581Hush": 6185, "\u2581Hol": 6186, "\u2581Hid": 6187, "ye": 6188, "\u2581famines": 6189, "ON": 6190, "\u2581Gat": 6191, "\u2581sel": 6192, "\u2581workings": 6193, "\u2581socia": 6194, "\u2581snatch": 6195, "yst": 6196, "\u2581wil": 6197, "\u2581persuad": 6198, "damn": 6199, "\u2581uses": 6200, "\u2581breaks": 6201, "\u2581numbers": 6202, "\u2581Almo": 6203, "Che": 6204, "\u2581Zi": 6205, "\u2581services": 6206, "\u2581reform": 6207, "\u2581weari": 6208, "\u2581fe": 6209, "\u2581crates": 6210, "herein": 6211, "MO": 6212, "\u2581allow": 6213, "\u2581uncle": 6214, "cord": 6215, "nigh": 6216, "arrows": 6217, "\u2581struggl": 6218, "\u2581rou": 6219, "\u2581admire": 6220, "eigne": 6221, "\u2581hum": 6222, "\u2581Ber": 6223, "ander": 6224, "B": 6225, "allowed": 6226, "\u2581gaze": 6227, "\u2581blackberr": 6228, "\u2581uneas": 6229, "\u2581argue": 6230, "ching": 6231, "claimed": 6232, "vi": 6233, "wist": 6234, "\u2581pace": 6235, "tended": 6236, "\u2581cat": 6237, "\u2581elevate": 6238, "\u2581Jac": 6239, "\u2581Jet": 6240, "empti": 6241, "\u2581Pen": 6242, "\u2581loft": 6243, "actic": 6244, "\u2581da": 6245, "ray": 6246, "\u2581sole": 6247, "berries": 6248, "\u2581mood": 6249, "top": 6250, "\u2581pat": 6251, "spir": 6252, "shell": 6253, "illy": 6254, "epho": 6255, "\u2581blu": 6256, "ock": 6257, "\u2581Car": 6258, "\u2581Command": 6259, "\u2581gall": 6260, "lashes": 6261, "\u2581sacr": 6262, "\u2581trace": 6263, "\u2581commo": 6264, "\u2581wi": 6265, "iles": 6266, "orn": 6267, "\u2581waxe": 6268, "hai": 6269, "came": 6270, "\u2581invit": 6271, "\u2581Jer": 6272, "Isn": 6273, "\u2581Hi": 6274, "\u2581tast": 6275, "\u2581Pu": 6276, "\u2581che": 6277, "lasses": 6278, "\u2581slu": 6279, "ud": 6280, "onster": 6281, "ame": 6282, "\u2581inde": 6283, "oved": 6284, "mar": 6285, "ows": 6286, "ieth": 6287, "\u2581contr": 6288, "\u2581Ri": 6289, "\u2581pr": 6290, "\u2581rehearse": 6291, "lids": 6292, "\u2581Sep": 6293, "rity": 6294, "zo": 6295, "ow": 6296, "\u2581Sou": 6297, "rench": 6298, "ncy": 6299, "ence": 6300, "igure": 6301, "\u2581constraine": 6302, "congratu": 6303, "oon": 6304, "ano": 6305, "\u2581rage": 6306, "\u2581pu": 6307, "met": 6308, "eek": 6309, "hew": 6310, "\u2581Sho": 6311, "nah": 6312, "bi": 6313, "tie": 6314, "asped": 6315, "\u2581Amon": 6316, "tening": 6317, "asty": 6318, "han": 6319, "\u2581considerabl": 6320, "vious": 6321, "zens": 6322, "\u2581strok": 6323, "husks": 6324, "loo": 6325, "\u2581spat": 6326, "\u2581rais": 6327, "To": 6328, "\u2581scra": 6329, "\u2581port": 6330, "\u2581wag": 6331, "ace": 6332, "\u2581rec": 6333, "mbled": 6334, "\u2581actual": 6335, "\u2581troubl": 6336, "rie": 6337, "awfully": 6338, "ench": 6339, "laus": 6340, "rable": 6341, "\u2581chal": 6342, "\u2581Om": 6343, "ron": 6344, "cial": 6345, "roth": 6346, "\u2581li": 6347, "\u2581divid": 6348, "P": 6349, "\u2581stripe": 6350, "ER": 6351, "any": 6352, "obably": 6353, "giver": 6354, "\u2581plo": 6355, "amo": 6356, "oiled": 6357, "amia": 6358, "TH": 6359, "ivity": 6360, "wish": 6361, "E": 6362, "self": 6363, "nger": 6364, "\u2581attendan": 6365, "\u2581slim": 6366, "\u2581ston": 6367, "ging": 6368, "itable": 6369, "AR": 6370, "ib": 6371, "minate": 6372, "sided": 6373, "\u2581magn": 6374, "\u2581rob": 6375, "\u2581companion": 6376, "inch": 6377, "Hey": 6378, "icles": 6379, "j": 6380, "ounding": 6381, "headed": 6382, "never": 6383, "\u2581impe": 6384, "\u2581Tra": 6385, "mobil": 6386, "\u2581arch": 6387, "struction": 6388, "\u2581slap": 6389, "ips": 6390, "\u2581wrap": 6391, "him": 6392, "\u2581Tim": 6393, "\u2581bite": 6394, "\u2581horn": 6395, "\u2581convi": 6396, "\u2581complain": 6397, "\u2581impo": 6398, "oving": 6399, "\u2581scorpion": 6400, "\u2581elbow": 6401, "\u2581poplar": 6402, "\u2581apron": 6403, "\u2581impla": 6404, "\u2581hillside": 6405, "\u2581sorcerer": 6406, "\u2581anchor": 6407, "\u2581feature": 6408, "use": 6409, "\u2581bason": 6410, "\u2581slope": 6411, "\u2581physician": 6412, "\u2581Sanct": 6413, "\u2581strand": 6414, "\u2581warrior": 6415, "hereabouts": 6416, "\u2581highway": 6417, "\u2581idolater": 6418, "\u2581locust": 6419, "\u2581payment": 6420, "\u2581speci": 6421, "\u2581tithe": 6422, "orry": 6423, "\u2581selve": 6424, "\u2581hypocrite": 6425, "\u2581robber": 6426, "\u2581tare": 6427, "\u2581observ": 6428, "\u2581thorn": 6429, "\u2581tran": 6430, "\u2581sigh": 6431, "\u2581mil": 6432, "\u2581revile": 6433, "agger": 6434, "jected": 6435, "continu": 6436, "rag": 6437, "citizen": 6438, "Wash": 6439, "uncle": 6440, "corn": 6441, "source": 6442, "pathetic": 6443, "tions": 6444, "\u2581excus": 6445, "handled": 6446, "draft": 6447, "float": 6448, "stalk": 6449, "AN": 6450, "limb": 6451, "block": 6452, "Summ": 6453, "hog": 6454, "Never": 6455, "\u2581pierc": 6456, "\u2581bro": 6457, "\u2581persecut": 6458, "gird": 6459, "box": 6460, "stedfast": 6461, "Watch": 6462, "cloth": 6463, "\u2581sid": 6464, "None": 6465, "search": 6466, "Seven": 6467, "Get": 6468, "Henry": 6469, "keeper": 6470, "soldier": 6471, "J": 6472, "Perhaps": 6473, "shekel": 6474, "fields": 6475, "ounted": 6476, "shot": 6477, "kindness": 6478, "condemned": 6479, "Homer": 6480, "\u2581whistl": 6481, "please": 6482, "Hur": 6483, "horse": 6484, "witnesses": 6485, "pleasure": 6486, "bade": 6487, "spread": 6488, "Give": 6489, "bush": 6490, "friend": 6491, "myself": 6492, "Lurvy": 6493, "wheel": 6494, "perfect": 6495, "With": 6496, "room": 6497, "pans": 6498, "generation": 6499, "while": 6500, "burnt": 6501, "nothing": 6502, "knowledge": 6503, "\u2581reject": 6504, "push": 6505, "aa": 6506, "\u2581dismiss": 6507, "dad": 6508, "serve": 6509, "coat": 6510, "\u2581Gi": 6511, "One": 6512, "whe": 6513, "trap": 6514, "sail": 6515, "\u2581thresh": 6516, "\u2581lum": 6517, "green": 6518, "ertainly": 6519, "Say": 6520, "place": 6521, "\u2581confound": 6522, "\u2581hallow": 6523, "\u2581gainsay": 6524, "\u2581signify": 6525, "\u2581edify": 6526, "\u2581vanish": 6527, "eeches": 6528, "only": 6529, "\u2581explain": 6530, "\u2581kno": 6531, "\u2581vex": 6532, "\u2581sniff": 6533, "\u2581repeat": 6534, "\u2581exceed": 6535, "\u2581chuckl": 6536, "\u2581ordain": 6537, "\u2581grabb": 6538, "bond": 6539, "\u2581threat": 6540, "\u2581flam": 6541, "Put": 6542, "\u2581amaz": 6543, "See": 6544, "pri": 6545, "portion": 6546, "\u2581laborer": 6547, "lead": 6548, "\u2581citizen": 6549, "seeing": 6550, "\u2581shear": 6551, "\u2581ta": 6552, "\u2581plea": 6553, "Wa": 6554, "oasty": 6555, "nything": 6556, "\u2581App": 6557, "made": 6558, "\u2581tame": 6559, "\u2581boot": 6560, "\u2581testifie": 6561, "run": 6562, "\u2581Exp": 6563, "\u2581create": 6564, "\u2581boar": 6565, "\u2581Israelite": 6566, "tant": 6567, "olved": 6568, "\u2581flourish": 6569, "hod": 6570, "\u2581continual": 6571, "\u2581genealog": 6572, "\u2581sudden": 6573, "sparag": 6574, "ufficien": 6575, "oldiers": 6576, "\u2581dizz": 6577, "\u2581choos": 6578, "trong": 6579, "\u2581filth": 6580, "\u2581snar": 6581, "\u2581reconcile": 6582, "\u2581communicat": 6583, "\u2581memor": 6584, "\u2581twent": 6585, "phos": 6586, "hould": 6587, "angel": 6588, "\u2581distinct": 6589, "bur": 6590, "ification": 6591, "\u2581Amra": 6592, "\u2581import": 6593, "\u2581mir": 6594, "\u2581merci": 6595, "path": 6596, "\u2581persuasi": 6597, "\u2581tee": 6598, "\u2581Mattha": 6599, "\u2581appro": 6600, "aradise": 6601, "aughter": 6602, "neys": 6603, "\u2581attract": 6604, "\u2581Govern": 6605, "\u2581situat": 6606, "\u2581stubb": 6607, "\u2581subtil": 6608, "\u2581habit": 6609, "\u2581abomina": 6610, "\u2581pouch": 6611, "ecomposers": 6612, "estroy": 6613, "ntreat": 6614, "attering": 6615, "xcellent": 6616, "ontrary": 6617, "ontinue": 6618, "\u2581gloom": 6619, "venture": 6620, "urmur": 6621, "ilbur": 6622, "epart": 6623, "istened": 6624, "\u2581Apoll": 6625, "\u2581excel": 6626, "\u2581Ponti": 6627, "\u2581esp": 6628, "arvel": 6629, "\u2581succ": 6630, "rink": 6631, "\u2581bureau": 6632, "\u2581employ": 6633, "\u2581scru": 6634, "\u2581August": 6635, "\u2581Nico": 6636, "\u2581centipede": 6637, "\u2581executi": 6638, "\u2581expense": 6639, "\u2581frail": 6640, "\u2581grasshopper": 6641, "\u2581happie": 6642, "\u2581revelling": 6643, "\u2581skelet": 6644, "\u2581traitor": 6645, "\u2581victual": 6646, "Crunchy": 6647, "Phoebe": 6648, "Slowly": 6649, "bulus": 6650, "cian": 6651, "consequen": 6652, "continency": 6653, "gullible": 6654, "hippoorwill": 6655, "languish": 6656, "mphas": 6657, "olog": 6658, "petitions": 6659, "roduction": 6660, "significan": 6661, "zziel": 6662, "\u2581Agabus": 6663, "\u2581Areopag": 6664, "\u2581Assyria": 6665, "\u2581Baal": 6666, "\u2581Baalzephon": 6667, "\u2581Babel": 6668, "\u2581Baptizer": 6669, "\u2581Beautiful": 6670, "\u2581Beroea": 6671, "\u2581Bigfish": 6672, "\u2581Bithynia": 6673, "\u2581Carmi": 6674, "\u2581Circumcision": 6675, "\u2581Cotton": 6676, "\u2581Cowee": 6677, "\u2581Crispus": 6678, "\u2581Crucify": 6679, "\u2581Dalma": 6680, "\u2581Dorcas": 6681, "\u2581Ellasar": 6682, "\u2581Epaphroditus": 6683, "\u2581Florida": 6684, "\u2581Fulfil": 6685, "\u2581Gabriel": 6686, "\u2581Gerasenes": 6687, "\u2581Gershom": 6688, "\u2581Gethsemane": 6689, "\u2581Girgas": 6690, "\u2581Increase": 6691, "\u2581Izhar": 6692, "\u2581Jehoshaphat": 6693, "\u2581Jokshan": 6694, "\u2581Joram": 6695, "\u2581Lebanon": 6696, "\u2581Lydda": 6697, "\u2581Lydia": 6698, "\u2581Mattath": 6699, "\u2581Matthias": 6700, "\u2581Mehujael": 6701, "\u2581Melchi": 6702, "\u2581Methusael": 6703, "\u2581Millipede": 6704, "\u2581Nimrod": 6705, "\u2581Nineveh": 6706, "\u2581Onesiphorus": 6707, "\u2581Pergamum": 6708, "\u2581Phoeni": 6709, "\u2581Pisidia": 6710, "\u2581Potomac": 6711, "\u2581Prophesy": 6712, "\u2581Publius": 6713, "\u2581Rabboni": 6714, "\u2581Radiant": 6715, "\u2581Rahab": 6716, "\u2581Rameses": 6717, "\u2581Rephaims": 6718, "\u2581Rufus": 6719, "\u2581Sabaoth": 6720, "\u2581Sacrifice": 6721, "\u2581Salome": 6722, "\u2581School": 6723, "\u2581Search": 6724, "\u2581Seba": 6725, "\u2581Secret": 6726, "\u2581Shaveh": 6727, "\u2581Siloam": 6728, "\u2581Smyrna": 6729, "\u2581Sosthenes": 6730, "\u2581Squirrel": 6731, "\u2581Supreme": 6732, "\u2581Tavern": 6733, "\u2581Theophilus": 6734, "\u2581Thessalonians": 6735, "\u2581Tubalcain": 6736, "\u2581Zachariah": 6737, "\u2581Zerubbabel": 6738, "\u2581absolute": 6739, "\u2581acquired": 6740, "\u2581advise": 6741, "\u2581ammunition": 6742, "\u2581apothecary": 6743, "\u2581appetizing": 6744, "\u2581apprehend": 6745, "\u2581armpits": 6746, "\u2581assumption": 6747, "\u2581beefsteak": 6748, "\u2581bison": 6749, "\u2581bomb": 6750, "\u2581boulder": 6751, "\u2581brilliant": 6752, "\u2581burial": 6753, "\u2581busybodies": 6754, "\u2581calico": 6755, "\u2581clamor": 6756, "\u2581companies": 6757, "\u2581compound": 6758, "\u2581conspiracy": 6759, "\u2581convocation": 6760, "\u2581cornbread": 6761, "\u2581craftsmen": 6762, "\u2581crawfish": 6763, "\u2581cumber": 6764, "\u2581delusion": 6765, "\u2581denarius": 6766, "\u2581detail": 6767, "\u2581dictionary": 6768, "\u2581disannul": 6769, "\u2581discarded": 6770, "\u2581divorcement": 6771, "\u2581doorframes": 6772, "\u2581downstream": 6773, "\u2581elaborate": 6774, "\u2581eloquent": 6775, "\u2581emperor": 6776, "\u2581enact": 6777, "\u2581evangelist": 6778, "\u2581experiment": 6779, "\u2581extreme": 6780, "\u2581fatfleshed": 6781, "\u2581fathoms": 6782, "\u2581foreknew": 6783, "\u2581fullgrown": 6784, "\u2581fumbling": 6785, "\u2581futile": 6786, "\u2581garner": 6787, "\u2581gleam": 6788, "\u2581goddess": 6789, "\u2581gravy": 6790, "\u2581grisled": 6791, "\u2581gulped": 6792, "\u2581gutted": 6793, "\u2581gutters": 6794, "\u2581happiness": 6795, "\u2581hominy": 6796, "\u2581humiliation": 6797, "\u2581immutab": 6798, "\u2581implements": 6799, "\u2581inconvenient": 6800, "\u2581infield": 6801, "\u2581influen": 6802, "\u2581ingathering": 6803, "\u2581interlude": 6804, "\u2581kinswoman": 6805, "\u2581kneadingtroughs": 6806, "\u2581lamentation": 6807, "\u2581lantern": 6808, "\u2581leisure": 6809, "\u2581lintel": 6810, "\u2581material": 6811, "\u2581medicine": 6812, "\u2581millipedes": 6813, "\u2581moccasins": 6814, "\u2581mudflat": 6815, "\u2581muzzle": 6816, "\u2581nerve": 6817, "\u2581nipple": 6818, "\u2581oysters": 6819, "\u2581pellets": 6820, "\u2581penknife": 6821, "\u2581pollut": 6822, "\u2581porcupine": 6823, "\u2581portrait": 6824, "\u2581preeminence": 6825, "\u2581prejudice": 6826, "\u2581preparing": 6827, "\u2581presumptuous": 6828, "\u2581problem": 6829, "\u2581promptly": 6830, "\u2581provocation": 6831, "\u2581rabble": 6832, "\u2581rapid": 6833, "\u2581religious": 6834, "\u2581renounce": 6835, "\u2581restraineth": 6836, "\u2581ridiculous": 6837, "\u2581rigour": 6838, "\u2581roost": 6839, "\u2581sandwich": 6840, "\u2581scruples": 6841, "\u2581slog": 6842, "\u2581slothful": 6843, "\u2581smiling": 6844, "\u2581sobriety": 6845, "\u2581sorceries": 6846, "\u2581sorcery": 6847, "\u2581stimulate": 6848, "\u2581stupor": 6849, "\u2581subdue": 6850, "\u2581suffice": 6851, "\u2581sumptuous": 6852, "\u2581supreme": 6853, "\u2581survival": 6854, "\u2581television": 6855, "\u2581terrestrial": 6856, "\u2581theoretical": 6857, "\u2581thereafter": 6858, "\u2581thirteen": 6859, "\u2581thistledown": 6860, "\u2581timbrel": 6861, "\u2581tomatoes": 6862, "\u2581traffic": 6863, "\u2581trample": 6864, "\u2581tremen": 6865, "\u2581trinket": 6866, "\u2581unaccountabl": 6867, "\u2581unfair": 6868, "\u2581univers": 6869, "\u2581unruly": 6870, "\u2581unthankful": 6871, "\u2581unwashen": 6872, "\u2581vesture": 6873, "\u2581vicinity": 6874, "\u2581victim": 6875, "\u2581woodpile": 6876, "\u2581wrinkle": 6877, "\u2581yawned": 6878, "\u2581zero": 6879, "\u2581Death": 6880, "acinth": 6881, "shrunk": 6882, "ummim": 6883, "\u2581Ancih": 6884, "\u2581Antipa": 6885, "\u2581Frankl": 6886, "\u2581Jenny": 6887, "\u2581Malch": 6888, "\u2581Mississippi": 6889, "\u2581accommodat": 6890, "\u2581altercat": 6891, "\u2581calculat": 6892, "\u2581clown": 6893, "\u2581clutter": 6894, "\u2581copy": 6895, "\u2581cripple": 6896, "\u2581expanse": 6897, "\u2581flags": 6898, "\u2581gabbl": 6899, "\u2581grove": 6900, "\u2581license": 6901, "\u2581lilies": 6902, "\u2581magnificen": 6903, "\u2581morter": 6904, "\u2581pastille": 6905, "\u2581plaster": 6906, "\u2581ribbon": 6907, "\u2581snuffdishes": 6908, "\u2581surmis": 6909, "\u2581terms": 6910, "ietly": 6911, "\u2581Jann": 6912, "\u2581assault": 6913, "\u2581chryso": 6914, "\u2581crafty": 6915, "\u2581delud": 6916, "\u2581drool": 6917, "\u2581grandfather": 6918, "\u2581humility": 6919, "\u2581lamented": 6920, "\u2581lungs": 6921, "\u2581mankind": 6922, "\u2581narrat": 6923, "\u2581negotiat": 6924, "\u2581risk": 6925, "\u2581smack": 6926, "\u2581soothsay": 6927, "\u2581spark": 6928, "\u2581squeal": 6929, "\u2581stove": 6930, "\u2581twirl": 6931, "\u2581unsettle": 6932, "\u2581whicker": 6933, "\u2581withdraw": 6934, "\u2581Earth": 6935, "\u2581Towers": 6936, "\u2581circuit": 6937, "\u2581expert": 6938, "\u2581foaming": 6939, "\u2581ignore": 6940, "\u2581wobbl": 6941, "\u2581beho": 6942, "\u2581garnish": 6943, "xtort": 6944, "\u2581Galeed": 6945, "\u2581Sabt": 6946, "\u2581basketfuls": 6947, "\u2581daddy": 6948, "\u2581fragran": 6949, "\u2581motor": 6950, "\u2581napkin": 6951, "\u2581scourging": 6952, "\u2581surpass": 6953, "versatile": 6954, "\u2581balance": 6955, "\u2581glid": 6956, "\u2581overflow": 6957, "\u2581suspicio": 6958, "spouts": 6959, "\u2581dazzling": 6960, "\u2581effectual": 6961, "\u2581initial": 6962, "\u2581opus": 6963, "\u2581waistcoat": 6964, "\u2581hobbl": 6965, "\u2581numer": 6966, "\u2581purification": 6967, "\u2581Joanna": 6968, "\u2581dragline": 6969, "\u2581runneth": 6970, "\u2581Hirah": 6971, "\u2581assessment": 6972, "\u2581loathe": 6973, "\u2581superlative": 6974, "\u2581Pontiac": 6975, "\u2581persistent": 6976, "\u2581uphill": 6977, "\u2581Amoz": 6978, "\u2581rude": 6979, "ilacs": 6980, "\u2581approached": 6981, "\u2581billows": 6982, "\u2581globe": 6983, "\u2581oink": 6984, "\u2581option": 6985, "\u2581rescue": 6986, "\u2581balm": 6987, "\u2581councillor": 6988, "\u2581frying": 6989, "\u2581hazard": 6990, "\u2581nursing": 6991, "\u2581shiver": 6992, "\u2581Josiah": 6993, "\u2581enchant": 6994, "\u2581sentiment": 6995, "\u2581ambassage": 6996, "\u2581filthiness": 6997, "\u2581forefather": 6998, "\u2581consist": 6999, "\u2581eventide": 7000, "\u2581grandson": 7001, "\u2581reclin": 7002, "pproximately": 7003, "\u2581dignities": 7004, "\u2581peaks": 7005, "\u2581Slug": 7006, "\u2581furious": 7007, "\u2581stroll": 7008, "\u2581superfluity": 7009, "\u2581Raamah": 7010, "\u2581aloft": 7011, "\u2581divinity": 7012, "\u2581slats": 7013, "\u2581caution": 7014, "\u2581pride": 7015, "\u2581cautiously": 7016, "\u2581ginger": 7017, "\u2581splash": 7018, "\u2581Doctor": 7019, "\u2581appeti": 7020, "\u2581babblings": 7021, "\u2581befitting": 7022, "\u2581leasing": 7023, "\u2581precede": 7024, "\u2581welfare": 7025, "\u2581outfit": 7026, "\u2581spoonful": 7027, "\u2581bacteria": 7028, "\u2581uniform": 7029, "azin": 7030, "\u2581Corinthians": 7031, "\u2581usury": 7032, "\u2581display": 7033, "\u2581salon": 7034, "\u2581battle": 7035, "\u2581turtle": 7036, "\u2581vomit": 7037, "substan": 7038, "\u2581manger": 7039, "\u2581Calah": 7040, "\u2581exhal": 7041, "\u2581stanched": 7042, "\u2581vaunt": 7043, "\u2581chaise": 7044, "\u2581translat": 7045, "\u2581britches": 7046, "\u2581guiltless": 7047, "\u2581owl": 7048, "\u2581travers": 7049, "\u2581Salem": 7050, "\u2581fuss": 7051, "\u2581acquaintance": 7052, "\u2581Gaza": 7053, "\u2581Mizraim": 7054, "\u2581allotted": 7055, "\u2581soaked": 7056, "\u2581primar": 7057, "\u2581suet": 7058, "\u2581droop": 7059, "\u2581clash": 7060, "\u2581gloomily": 7061, "\u2581vouch": 7062, "\u2581Rhod": 7063, "\u2581decay": 7064, "\u2581dripping": 7065, "\u2581loyal": 7066, "\u2581Julius": 7067, "\u2581enforc": 7068, "\u2581partiality": 7069, "Meeting": 7070, "\u2581eaves": 7071, "\u2581enrolment": 7072, "\u2581kidding": 7073, "tude": 7074, "\u2581popover": 7075, "\u2581laz": 7076, "\u2581legitima": 7077, "\u2581Tert": 7078, "\u2581Claudius": 7079, "\u2581poet": 7080, "\u2581flake": 7081, "\u2581streak": 7082, "Nice": 7083, "sabba": 7084, "\u2581okay": 7085, "\u2581tube": 7086, "\u2581cinder": 7087, "\u2581railhead": 7088, "\u2581anti": 7089, "NK": 7090, "\u2581Jeze": 7091, "\u2581Poor": 7092, "\u2581pulse": 7093, "churn": 7094, "jah": 7095, "\u2581Javan": 7096, "\u2581Lud": 7097, "\u2581subtilty": 7098, "\u2581Job": 7099, "agic": 7100, "\u2581whale": 7101, "\u2581factious": 7102, "\u2581blunt": 7103, "\u2581edified": 7104, "iggled": 7105, "\u2581decade": 7106, "tenance": 7107, "\u2581Maha": 7108, "\u2581hammer": 7109, "\u2581rhythmic": 7110, "\u2581Kid": 7111, "\u2581concourse": 7112, "bited": 7113, "zzling": 7114, "\u2581Zac": 7115, "\u2581earshot": 7116, "\u2581coco": 7117, "\u2581hencefor": 7118, "\u2581Dead": 7119, "\u2581horseback": 7120, "\u2581kin": 7121, "\u2581Teach": 7122, "\u2581oilcloth": 7123, "\u2581Elisha": 7124, "\u2581Padanaram": 7125, "\u2581spectac": 7126, "\u2581sheath": 7127, "\u2581severity": 7128, "\u2581embroiderer": 7129, "\u2581Naaman": 7130, "\u2581impu": 7131, "\u2581stew": 7132, "\u2581recall": 7133, "\u2581flute": 7134, "\u2581ownership": 7135, "\u2581Irad": 7136, "\u2581ancest": 7137, "\u2581suggestions": 7138, "bia": 7139, "ember": 7140, "bula": 7141, "\u2581foreship": 7142, "\u2581Massa": 7143, "\u2581Lyc": 7144, "\u2581Carry": 7145, "\u2581persuasive": 7146, "\u2581rig": 7147, "\u2581tripod": 7148, "urvey": 7149, "\u2581instant": 7150, "\u2581Merc": 7151, "\u2581trump": 7152, "\u2581trench": 7153, "\u2581Edomites": 7154, "hites": 7155, "\u2581meditation": 7156, "\u2581detest": 7157, "\u2581thankfulness": 7158, "enser": 7159, "\u2581calam": 7160, "\u2581Beersheba": 7161, "AT": 7162, "\u2581tackl": 7163, "\u2581Bridge": 7164, "\u2581cookery": 7165, "\u2581piss": 7166, "osity": 7167, "\u2581scalp": 7168, "\u2581wavering": 7169, "\u2581rebel": 7170, "\u2581missionar": 7171, "\u2581eff": 7172, "\u2581removal": 7173, "\u2581drear": 7174, "\u2581Kir": 7175, "\u2581wakeful": 7176, "\u2581Kar": 7177, "\u2581partial": 7178, "\u2581grid": 7179, "\u2581justifieth": 7180, "\u2581speedily": 7181, "\u2581beget": 7182, "erceive": 7183, "\u2581variance": 7184, "cade": 7185, "egion": 7186, "\u2581expression": 7187, "\u2581cruelty": 7188, "\u2581Naph": 7189, "\u2581pomp": 7190, "\u2581Hog": 7191, "Easy": 7192, "\u2581thunderings": 7193, "\u2581riotous": 7194, "\u2581history": 7195, "\u2581transit": 7196, "\u2581funny": 7197, "\u2581theatre": 7198, "\u2581confirmation": 7199, "\u2581roadway": 7200, "\u2581boyhood": 7201, "\u2581Hermon": 7202, "\u2581mineral": 7203, "naim": 7204, "\u2581fuck": 7205, "\u2581Hori": 7206, "\u2581bondmen": 7207, "\u2581rocket": 7208, "\u2581policy": 7209, "\u2581unholy": 7210, "\u2581unseemly": 7211, "nkle": 7212, "\u2581gallery": 7213, "apolis": 7214, "\u2581wavered": 7215, "\u2581encourage": 7216, "\u2581phoe": 7217, "\u2581hop": 7218, "\u2581alternate": 7219, "\u2581Beriah": 7220, "\u2581wariness": 7221, "\u2581State": 7222, "\u2581skirmish": 7223, "\u2581Aram": 7224, "\u2581parings": 7225, "\u2581cling": 7226, "\u2581Matthan": 7227, "ndron": 7228, "\u2581Bow": 7229, "\u2581axle": 7230, "polis": 7231, "ilver": 7232, "\u2581nea": 7233, "ccent": 7234, "\u2581Lie": 7235, "\u2581carrie": 7236, "\u2581sparingly": 7237, "\u2581politely": 7238, "\u2581similarly": 7239, "nnels": 7240, "\u2581doubleminded": 7241, "\u2581wrongfully": 7242, "\u2581Shim": 7243, "\u2581noisy": 7244, "ulation": 7245, "gage": 7246, "\u2581bump": 7247, "\u2581suppertime": 7248, "\u2581arising": 7249, "guiltiness": 7250, "abies": 7251, "\u2581alongside": 7252, "\u2581dough": 7253, "uda": 7254, "ddling": 7255, "onia": 7256, "\u2581acceptation": 7257, "\u2581grand": 7258, "\u2581Hadar": 7259, "\u2581Onesi": 7260, "\u2581chaste": 7261, "\u2581promi": 7262, "eously": 7263, "\u2581rill": 7264, "\u2581fitting": 7265, "acter": 7266, "\u2581crunch": 7267, "\u2581crust": 7268, "\u2581gentleness": 7269, "\u2581Rhe": 7270, "\u2581gum": 7271, "\u2581lam": 7272, "\u2581mockers": 7273, "\u2581hitherto": 7274, "\u2581eag": 7275, "\u2581collapsed": 7276, "\u2581disbelieved": 7277, "\u2581scabb": 7278, "\u2581confi": 7279, "\u2581surre": 7280, "\u2581hello": 7281, "\u2581Jah": 7282, "\u2581attachment": 7283, "\u2581boxes": 7284, "\u2581china": 7285, "\u2581identi": 7286, "\u2581thankful": 7287, "\u2581Tab": 7288, "oper": 7289, "\u2581stings": 7290, "\u2581attraction": 7291, "\u2581Tryph": 7292, "\u2581freeman": 7293, "\u2581genealogy": 7294, "\u2581bull": 7295, "\u2581tighten": 7296, "\u2581team": 7297, "\u2581shaven": 7298, "\u2581Gomer": 7299, "\u2581mire": 7300, "lene": 7301, "\u2581fearfulness": 7302, "\u2581gorgeous": 7303, "riah": 7304, "\u2581fume": 7305, "geon": 7306, "\u2581honest": 7307, "\u2581seduc": 7308, "\u2581homeland": 7309, "\u2581incl": 7310, "\u2581tones": 7311, "\u2581station": 7312, "\u2581approvedness": 7313, "\u2581earnestness": 7314, "\u2581normal": 7315, "\u2581alo": 7316, "\u2581Cover": 7317, "\u2581agent": 7318, "\u2581flourisheth": 7319, "chant": 7320, "\u2581pew": 7321, "\u2581soberness": 7322, "pilled": 7323, "\u2581bedtime": 7324, "\u2581backbone": 7325, "educ": 7326, "horus": 7327, "\u2581Ken": 7328, "retty": 7329, "rubs": 7330, "Are": 7331, "rged": 7332, "\u2581reconcil": 7333, "\u2581assist": 7334, "\u2581foes": 7335, "\u2581chast": 7336, "\u2581dau": 7337, "\u2581scare": 7338, "\u2581ledge": 7339, "cientist": 7340, "\u2581dreamily": 7341, "\u2581belonging": 7342, "\u2581embalmed": 7343, "\u2581drowned": 7344, "\u2581hesitated": 7345, "\u2581butchered": 7346, "orci": 7347, "\u2581underwear": 7348, "\u2581cobbler": 7349, "\u2581Mish": 7350, "voca": 7351, "Goodness": 7352, "isc": 7353, "\u2581gloriest": 7354, "\u2581Near": 7355, "\u2581meta": 7356, "\u2581Apple": 7357, "\u2581sym": 7358, "\u2581delicately": 7359, "\u2581meekly": 7360, "\u2581laughter": 7361, "\u2581tamed": 7362, "\u2581chasteneth": 7363, "\u2581flapped": 7364, "\u2581Elim": 7365, "\u2581dealings": 7366, "\u2581acquaint": 7367, "\u2581Mib": 7368, "\u2581tailor": 7369, "\u2581blaze": 7370, "\u2581familiar": 7371, "\u2581ordinary": 7372, "\u2581wreck": 7373, "amous": 7374, "\u2581Wind": 7375, "\u2581cure": 7376, "eneration": 7377, "\u2581thump": 7378, "\u2581Fight": 7379, "anim": 7380, "\u2581firelight": 7381, "\u2581defende": 7382, "\u2581Majest": 7383, "\u2581watchful": 7384, "\u2581overboard": 7385, "bsolution": 7386, "allel": 7387, "\u2581Obe": 7388, "\u2581saddle": 7389, "luc": 7390, "affl": 7391, "\u2581worshippeth": 7392, "oic": 7393, "arge": 7394, "blossom": 7395, "\u2581generally": 7396, "\u2581sunris": 7397, "\u2581ruff": 7398, "yway": 7399, "rban": 7400, "\u2581joyfully": 7401, "rsel": 7402, "\u2581lightened": 7403, "\u2581striker": 7404, "Avery": 7405, "anging": 7406, "\u2581unity": 7407, "\u2581perfection": 7408, "willing": 7409, "\u2581copies": 7410, "\u2581endeavors": 7411, "\u2581feathers": 7412, "\u2581morals": 7413, "\u2581palaces": 7414, "\u2581politics": 7415, "\u2581proselytes": 7416, "\u2581symbols": 7417, "eyond": 7418, "\u2581convers": 7419, "\u2581Mana": 7420, "\u2581rambl": 7421, "siah": 7422, "hepherd": 7423, "\u2581Alexandrian": 7424, "\u2581mites": 7425, "\u2581bored": 7426, "ighteous": 7427, "\u2581Boy": 7428, "\u2581scour": 7429, "\u2581unbeliever": 7430, "\u2581thereupon": 7431, "sorry": 7432, "esis": 7433, "\u2581penny": 7434, "planted": 7435, "\u2581fisherm": 7436, "jack": 7437, "\u2581decrease": 7438, "\u2581cult": 7439, "\u2581assuredly": 7440, "\u2581gloriously": 7441, "col": 7442, "\u2581scattereth": 7443, "\u2581licked": 7444, "\u2581dismissed": 7445, "\u2581carcase": 7446, "\u2581drunkard": 7447, "\u2581complained": 7448, "\u2581reviler": 7449, "\u2581lackest": 7450, "\u2581whistling": 7451, "\u2581contem": 7452, "burger": 7453, "\u2581complaining": 7454, "\u2581mom": 7455, "\u2581Had": 7456, "inter": 7457, "\u2581baptizeth": 7458, "\u2581pyr": 7459, "\u2581wedding": 7460, "\u2581project": 7461, "\u2581Joy": 7462, "ripe": 7463, "\u2581lick": 7464, "evolution": 7465, "\u2581mouthful": 7466, "\u2581dries": 7467, "\u2581spy": 7468, "lunta": 7469, "\u2581constant": 7470, "\u2581Ach": 7471, "\u2581quench": 7472, "\u2581pathetic": 7473, "\u2581becomingly": 7474, "\u2581faileth": 7475, "\u2581draft": 7476, "\u2581summ": 7477, "\u2581dar": 7478, "\u2581sling": 7479, "\u2581explod": 7480, "\u2581Shil": 7481, "\u2581TH": 7482, "\u2581compare": 7483, "\u2581Wash": 7484, "\u2581earlie": 7485, "\u2581abhorre": 7486, "\u2581local": 7487, "quality": 7488, "arsely": 7489, "\u2581heartily": 7490, "qui": 7491, "\u2581Aren": 7492, "ffer": 7493, "\u2581Phu": 7494, "ouching": 7495, "esture": 7496, "\u2581encountered": 7497, "\u2581mansion": 7498, "\u2581thereabout": 7499, "\u2581missing": 7500, "\u2581excused": 7501, "\u2581fastness": 7502, "\u2581swamp": 7503, "\u2581brightest": 7504, "\u2581nicely": 7505, "non": 7506, "\u2581Ze": 7507, "urning": 7508, "\u2581glare": 7509, "\u2581Nan": 7510, "rks": 7511, "\u2581ramp": 7512, "rped": 7513, "\u2581hillsides": 7514, "\u2581elbows": 7515, "\u2581poplars": 7516, "\u2581scorpions": 7517, "\u2581aprons": 7518, "\u2581citizens": 7519, "controlled": 7520, "\u2581belongings": 7521, "\u2581payments": 7522, "ymen": 7523, "year": 7524, "\u2581highways": 7525, "\u2581outright": 7526, "\u2581ref": 7527, "ffed": 7528, "\u2581legion": 7529, "venge": 7530, "\u2581proudly": 7531, "\u2581readest": 7532, "lunchtime": 7533, "\u2581witch": 7534, "\u2581hangeth": 7535, "\u2581archer": 7536, "\u2581remarked": 7537, "\u2581someday": 7538, "\u2581vowed": 7539, "Alon": 7540, "\u2581stare": 7541, "\u2581lesson": 7542, "mely": 7543, "\u2581despairing": 7544, "\u2581inventing": 7545, "\u2581ev": 7546, "woods": 7547, "nuts": 7548, "\u2581wrestling": 7549, "\u2581sadly": 7550, "\u2581weakling": 7551, "\u2581gear": 7552, "\u2581faster": 7553, "\u2581Phil": 7554, "\u2581miser": 7555, "\u2581hasn": 7556, "\u2581impos": 7557, "ngular": 7558, "\u2581stunt": 7559, "\u2581Beor": 7560, "\u2581uncover": 7561, "\u2581awaked": 7562, "\u2581paces": 7563, "\u2581Rest": 7564, "\u2581Israelites": 7565, "\u2581consol": 7566, "\u2581included": 7567, "\u2581admoni": 7568, "\u2581plu": 7569, "ball": 7570, "orehouses": 7571, "\u2581wickedly": 7572, "\u2581guests": 7573, "\u2581bishops": 7574, "\u2581patriarchs": 7575, "\u2581results": 7576, "\u2581benefits": 7577, "\u2581ewes": 7578, "\u2581factions": 7579, "\u2581dispos": 7580, "\u2581reput": 7581, "\u2581washings": 7582, "\u2581Spid": 7583, "\u2581nast": 7584, "boards": 7585, "stones": 7586, "works": 7587, "fied": 7588, "TER": 7589, "\u2581dissipat": 7590, "\u2581decomposed": 7591, "\u2581gnawing": 7592, "\u2581coveting": 7593, "determin": 7594, "\u2581grassy": 7595, "\u2581Ked": 7596, "allows": 7597, "\u2581aboundeth": 7598, "\u2581secretly": 7599, "band": 7600, "\u2581boiled": 7601, "tay": 7602, "\u2581Nor": 7603, "\u2581bin": 7604, "\u2581dre": 7605, "\u2581blasphemer": 7606, "\u2581candles": 7607, "\u2581ranks": 7608, "\u2581Tir": 7609, "\u2581railings": 7610, "\u2581repenteth": 7611, "\u2581sorely": 7612, "\u2581departeth": 7613, "\u2581cries": 7614, "lay": 7615, "\u2581reigneth": 7616, "\u2581sharply": 7617, "\u2581stag": 7618, "\u2581forbearing": 7619, "\u2581weeds": 7620, "\u2581Dis": 7621, "hips": 7622, "\u2581lawfully": 7623, "\u2581Hot": 7624, "aves": 7625, "\u2581warmth": 7626, "\u2581breaketh": 7627, "\u2581twisting": 7628, "\u2581sheets": 7629, "\u2581tumults": 7630, "\u2581instructions": 7631, "\u2581poorly": 7632, "gree": 7633, "\u2581consented": 7634, "\u2581afoot": 7635, "wailed": 7636, "\u2581aboard": 7637, "\u2581preferr": 7638, "\u2581rouse": 7639, "\u2581jet": 7640, "rock": 7641, "\u2581Cos": 7642, "\u2581fou": 7643, "\u2581planning": 7644, "\u2581labours": 7645, "\u2581balloons": 7646, "\u2581belt": 7647, "shearer": 7648, "\u2581airy": 7649, "\u2581duel": 7650, "\u2581Arch": 7651, "\u2581clapp": 7652, "\u2581activit": 7653, "\u2581test": 7654, "\u2581sleepy": 7655, "\u2581signal": 7656, "\u2581plots": 7657, "\u2581vig": 7658, "\u2581bullocks": 7659, "\u2581enjoin": 7660, "\u2581platters": 7661, "\u2581Abia": 7662, "\u2581lusted": 7663, "\u2581seedling": 7664, "\u2581killings": 7665, "\u2581retain": 7666, "\u2581bloo": 7667, "\u2581ge": 7668, "\u2581Hada": 7669, "\u2581reaped": 7670, "\u2581rendered": 7671, "\u2581kne": 7672, "vity": 7673, "\u2581Sm": 7674, "\u2581praised": 7675, "arcel": 7676, "\u2581dism": 7677, "\u2581Pau": 7678, "consider": 7679, "\u2581marking": 7680, "\u2581popula": 7681, "\u2581farth": 7682, "chem": 7683, "\u2581residen": 7684, "actors": 7685, "acked": 7686, "there": 7687, "AB": 7688, "porter": 7689, "La": 7690, "sters": 7691, "umbled": 7692, "had": 7693, "\u2581agenc": 7694, "raggle": 7695, "gation": 7696, "\u2581sanctifie": 7697, "city": 7698, "\u2581radian": 7699, "udg": 7700, "balanc": 7701, "ency": 7702, "\u2581lengthen": 7703, "\u2581husk": 7704, "\u2581blur": 7705, "\u2581weaken": 7706, "fallen": 7707, "tines": 7708, "tac": 7709, "\u2581gunfi": 7710, "\u2581mini": 7711, "twee": 7712, "lative": 7713, "hip": 7714, "rich": 7715, "rake": 7716, "escend": 7717, "gratulation": 7718, "\u2581distresse": 7719, "journ": 7720, "\u2581kni": 7721, "\u2581paint": 7722, "\u2581Mesh": 7723, "\u2581ripp": 7724, "\u2581distribut": 7725, "ays": 7726, "ral": 7727, "\u2581Alva": 7728, "\u2581gar": 7729, "\u2581blo": 7730, "\u2581trou": 7731, "Ever": 7732, "\u2581morta": 7733, "\u2581watche": 7734, "ex": 7735, "\u2581carpe": 7736, "\u2581quali": 7737, "informed": 7738, "\u2581contra": 7739, "lets": 7740, "gin": 7741, "nches": 7742, "\u2581dainti": 7743, "\u2581unmo": 7744, "\u2581ba": 7745, "gi": 7746, "air": 7747, "\u2581relat": 7748, "\u2581sla": 7749, "Try": 7750, "nish": 7751, "ttle": 7752, "\u2581aveng": 7753, "par": 7754, "fighters": 7755, "och": 7756, "\u2581non": 7757, "\u2581obs": 7758, "\u2581naviga": 7759, "\u2581invite": 7760, "view": 7761, "composed": 7762, "efraud": 7763, "\u2581sca": 7764, "hen": 7765, "orseshoe": 7766, "rang": 7767, "\u2581protect": 7768, "\u2581welcom": 7769, "ust": 7770, "\u2581Cre": 7771, "iving": 7772, "ormwood": 7773, "ana": 7774, "clusive": 7775, "\u2581dam": 7776, "\u2581humm": 7777, "\u2581dep": 7778, "opping": 7779, "bag": 7780, "tasting": 7781, "oz": 7782, "aving": 7783, "\u2581impr": 7784, "\u2581pac": 7785, "\u2581elevat": 7786, "\u2581compensat": 7787, "nuel": 7788, "nstead": 7789, "\u2581Mel": 7790, "add": 7791, "mock": 7792, "phras": 7793, "ether": 7794, "\u2581exclu": 7795, "\u2581epi": 7796, "\u2581principalit": 7797, "hereunto": 7798, "formation": 7799, "evil": 7800, "\u2581prote": 7801, "ize": 7802, "\u2581Creat": 7803, "shoe": 7804, "awl": 7805, "pot": 7806, "wed": 7807, "llows": 7808, "udder": 7809, "bat": 7810, "bon": 7811, "\u2581protecti": 7812, "\u2581Rep": 7813, "\u2581entic": 7814, "fraud": 7815, "ck": 7816, "\u2581endur": 7817, "\u2581compose": 7818, "ioch": 7819, "\u2581navigati": 7820, "move": 7821, "\u2581persuade": 7822, "rk": 7823, "\u2581Po": 7824, "omantic": 7825, "\u2581snatche": 7826, "\u2581conc": 7827, "vo": 7828, "\u2581daint": 7829, "LO": 7830, "unic": 7831, "ushim": 7832, "lotted": 7833, "phra": 7834, "AM": 7835, "\u2581measur": 7836, "bits": 7837, "\u2581purpos": 7838, "elect": 7839, "\u2581Revi": 7840, "arrow": 7841, "\u2581enrol": 7842, "mali": 7843, "ignity": 7844, "\u2581na": 7845, "\u2581treati": 7846, "ripping": 7847, "arba": 7848, "acle": 7849, "olent": 7850, "\u2581adjo": 7851, "scend": 7852, "\u2581slack": 7853, "\u2581bewail": 7854, "\u2581grip": 7855, "\u2581compelle": 7856, "\u2581exalte": 7857, "tching": 7858, "nction": 7859, "\u2581Writ": 7860, "\u2581acknowledg": 7861, "\u2581gla": 7862, "\u2581mode": 7863, "\u2581lin": 7864, "\u2581vainglor": 7865, "kite": 7866, "\u2581Bac": 7867, "\u2581mids": 7868, "ammi": 7869, "\u2581pudd": 7870, "\u2581radia": 7871, "\u2581divin": 7872, "Pre": 7873, "styles": 7874, "\u2581rele": 7875, "\u2581temp": 7876, "\u2581Immediate": 7877, "\u2581guid": 7878, "tographe": 7879, "\u2581hi": 7880, "easing": 7881, "\u2581nois": 7882, "ruption": 7883, "trot": 7884, "mble": 7885, "ggle": 7886, "vah": 7887, "\u2581Li": 7888, "\u2581squ": 7889, "\u2581deci": 7890, "hab": 7891, "teller": 7892, "\u2581reli": 7893, "\u2581heav": 7894, "now": 7895, "pops": 7896, "\u2581refer": 7897, "\u2581Mac": 7898, "\u2581blasphem": 7899, "\u2581Byron": 7900, "\u2581loc": 7901, "\u2581proposi": 7902, "emarkable": 7903, "bakers": 7904, "\u2581Ex": 7905, "\u2581separat": 7906, "gro": 7907, "Spring": 7908, "quarters": 7909, "uc": 7910, "Jach": 7911, "shares": 7912, "pockets": 7913, "\u2581Straight": 7914, "\u2581nu": 7915, "reaching": 7916, "rley": 7917, "ooted": 7918, "plicat": 7919, "\u2581plac": 7920, "\u2581Atta": 7921, "dresse": 7922, "maker": 7923, "racker": 7924, "covered": 7925, "cca": 7926, "wise": 7927, "gger": 7928, "\u2581Tema": 7929, "arry": 7930, "pine": 7931, "Ti": 7932, "counting": 7933, "\u2581Dio": 7934, "mount": 7935, "\u2581spo": 7936, "sipate": 7937, "piders": 7938, "\u2581Whoso": 7939, "uddy": 7940, "\u2581simpli": 7941, "\u2581esc": 7942, "omen": 7943, "\u2581chang": 7944, "admonit": 7945, "maids": 7946, "thrus": 7947, "ickle": 7948, "\u2581northw": 7949, "\u2581Arc": 7950, "gaining": 7951, "\u2581Step": 7952, "hanging": 7953, "ppers": 7954, "emon": 7955, "pecial": 7956, "\u2581circ": 7957, "uary": 7958, "\u2581plat": 7959, "ticks": 7960, "ekah": 7961, "\u2581unfo": 7962, "uckle": 7963, "\u2581priv": 7964, "\u2581abhor": 7965, "ual": 7966, "\u2581hoar": 7967, "\u2581comp": 7968, "\u2581reconcili": 7969, "Ba": 7970, "\u2581conver": 7971, "nstantly": 7972, "\u2581rub": 7973, "pra": 7974, "\u2581unbeliev": 7975, "\u2581fac": 7976, "lute": 7977, "change": 7978, "pti": 7979, "\u2581contemp": 7980, "bearing": 7981, "\u2581carcas": 7982, "vented": 7983, "\u2581Buck": 7984, "wake": 7985, "eaten": 7986, "\u2581clap": 7987, "burg": 7988, "kin": 7989, "creased": 7990, "\u2581bruis": 7991, "ppoint": 7992, "postle": 7993, "lready": 7994, "give": 7995, "\u2581endeavor": 7996, "G": 7997, "Z": 7998, "q": 7999, "\u201c": 8000 } } ================================================ FILE: a4/vocab.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CS224N 2020-21: Homework 4 vocab.py: Vocabulary Generation Pencheng Yin Sahil Chopra Vera Lin Usage: vocab.py --train-src= --train-tgt= [options] VOCAB_FILE Options: -h --help Show this screen. --train-src= File of training source sentences --train-tgt= File of training target sentences --size= vocab size [default: 50000] --freq-cutoff= frequency cutoff [default: 2] """ from collections import Counter from docopt import docopt from itertools import chain import json import torch from typing import List from utils import read_corpus, pad_sents import sentencepiece as spm class VocabEntry(object): """ Vocabulary Entry, i.e. structure containing either src or tgt language terms. """ def __init__(self, word2id=None): """ Init VocabEntry Instance. @param word2id (dict): dictionary mapping words 2 indices """ if word2id: self.word2id = word2id else: self.word2id = dict() self.word2id[''] = 0 # Pad Token self.word2id[''] = 1 # Start Token self.word2id[''] = 2 # End Token self.word2id[''] = 3 # Unknown Token self.unk_id = self.word2id[''] self.id2word = {v: k for k, v in self.word2id.items()} def __getitem__(self, word): """ Retrieve word's index. Return the index for the unk token if the word is out of vocabulary. @param word (str): word to look up. @returns index (int): index of word """ return self.word2id.get(word, self.unk_id) def __contains__(self, word): """ Check if word is captured by VocabEntry. @param word (str): word to look up @returns contains (bool): whether word is contained """ return word in self.word2id def __setitem__(self, key, value): """ Raise error, if one tries to edit the VocabEntry. """ raise ValueError('vocabulary is readonly') def __len__(self): """ Compute number of words in VocabEntry. @returns len (int): number of words in VocabEntry """ return len(self.word2id) def __repr__(self): """ Representation of VocabEntry to be used when printing the object. """ return 'Vocabulary[size=%d]' % len(self) def id2word(self, wid): """ Return mapping of index to word. @param wid (int): word index @returns word (str): word corresponding to index """ return self.id2word[wid] def add(self, word): """ Add word to VocabEntry, if it is previously unseen. @param word (str): word to add to VocabEntry @return index (int): index that the word has been assigned """ if word not in self: wid = self.word2id[word] = len(self) self.id2word[wid] = word return wid else: return self[word] def words2indices(self, sents): """ Convert list of words or list of sentences of words into list or list of list of indices. @param sents (list[str] or list[list[str]]): sentence(s) in words @return word_ids (list[int] or list[list[int]]): sentence(s) in indices """ if type(sents[0]) == list: return [[self[w] for w in s] for s in sents] else: return [self[w] for w in sents] def indices2words(self, word_ids): """ Convert list of indices into words. @param word_ids (list[int]): list of word ids @return sents (list[str]): list of words """ return [self.id2word[w_id] for w_id in word_ids] def to_input_tensor(self, sents: List[List[str]], device: torch.device) -> torch.Tensor: """ Convert list of sentences (words) into tensor with necessary padding for shorter sentences. @param sents (List[List[str]]): list of sentences (words) @param device: device on which to load the tesnor, i.e. CPU or GPU @returns sents_var: tensor of (max_sentence_length, batch_size) """ word_ids = self.words2indices(sents) sents_t = pad_sents(word_ids, self['']) sents_var = torch.tensor(sents_t, dtype=torch.long, device=device) return torch.t(sents_var) @staticmethod def from_corpus(corpus, size, freq_cutoff=2): """ Given a corpus construct a Vocab Entry. @param corpus (list[str]): corpus of text produced by read_corpus function @param size (int): # of words in vocabulary @param freq_cutoff (int): if word occurs n < freq_cutoff times, drop the word @returns vocab_entry (VocabEntry): VocabEntry instance produced from provided corpus """ vocab_entry = VocabEntry() word_freq = Counter(chain(*corpus)) valid_words = [w for w, v in word_freq.items() if v >= freq_cutoff] print('number of word types: {}, number of word types w/ frequency >= {}: {}' .format(len(word_freq), freq_cutoff, len(valid_words))) top_k_words = sorted(valid_words, key=lambda w: word_freq[w], reverse=True)[:size] for word in top_k_words: vocab_entry.add(word) return vocab_entry @staticmethod def from_subword_list(subword_list): vocab_entry = VocabEntry() for subword in subword_list: vocab_entry.add(subword) return vocab_entry class Vocab(object): """ Vocab encapsulating src and target langauges. """ def __init__(self, src_vocab: VocabEntry, tgt_vocab: VocabEntry): """ Init Vocab. @param src_vocab (VocabEntry): VocabEntry for source language @param tgt_vocab (VocabEntry): VocabEntry for target language """ self.src = src_vocab self.tgt = tgt_vocab @staticmethod def build(src_sents, tgt_sents) -> 'Vocab': """ Build Vocabulary. @param src_sents (list[str]): Source subwords provided by SentencePiece @param tgt_sents (list[str]): Target subwords provided by SentencePiece """ print('initialize source vocabulary ..') src = VocabEntry.from_subword_list(src_sents) print('initialize target vocabulary ..') tgt = VocabEntry.from_subword_list(tgt_sents) return Vocab(src, tgt) def save(self, file_path): """ Save Vocab to file as JSON dump. @param file_path (str): file path to vocab file """ with open(file_path, 'w') as f: json.dump(dict(src_word2id=self.src.word2id, tgt_word2id=self.tgt.word2id), f, indent=2) @staticmethod def load(file_path): """ Load vocabulary from JSON dump. @param file_path (str): file path to vocab file @returns Vocab object loaded from JSON dump """ entry = json.load(open(file_path, 'r')) src_word2id = entry['src_word2id'] tgt_word2id = entry['tgt_word2id'] return Vocab(VocabEntry(src_word2id), VocabEntry(tgt_word2id)) def __repr__(self): """ Representation of Vocab to be used when printing the object. """ return 'Vocab(source %d words, target %d words)' % (len(self.src), len(self.tgt)) def get_vocab_list(file_path, source, vocab_size): """ Use SentencePiece to tokenize and acquire list of unique subwords. @param file_path (str): file path to corpus @param source (str): tgt or src @param vocab_size: desired vocabulary size """ spm.SentencePieceTrainer.train(input=file_path, model_prefix=source, vocab_size=vocab_size) # train the spm model sp = spm.SentencePieceProcessor() # create an instance; this saves .model and .vocab files sp.load('{}.model'.format(source)) # loads tgt.model or src.model sp_list = [sp.id_to_piece(piece_id) for piece_id in range(sp.get_piece_size())] # this is the list of subwords return sp_list if __name__ == '__main__': args = docopt(__doc__) print('read in source sentences: %s' % args['--train-src']) print('read in target sentences: %s' % args['--train-tgt']) src_sents = get_vocab_list(args['--train-src'], source='src', vocab_size=21000) tgt_sents = get_vocab_list(args['--train-tgt'], source='tgt', vocab_size=8000) vocab = Vocab.build(src_sents, tgt_sents) print('generated vocabulary, source %d words, target %d words' % (len(src_sents), len(tgt_sents))) vocab.save(args['VOCAB_FILE']) print('vocabulary saved to %s' % args['VOCAB_FILE']) ================================================ FILE: a5/birth_dev.tsv ================================================ Where was Bryan Dubreuiel born? Atlanta Where was Ralf Wadephul born? Berlin Where was Joseph Baggaley born? England Where was Sandhya Sanjana born? Mumbai Where was Alfred Mele born? Detroit Where was Murray Esler born? Geelong Where was Ryan Barton born? Australia Where was Ernst Florian Winter born? Vienna Where was Salvatore Papaccio born? Naples Where was Raymond Brown born? Ontario Where was Bruno Rubess born? Riga Where was Vivek Razdan born? Delhi Where was Pete Winslow born? Washington Where was Trevor Taylor born? Sheffield Where was Richard Eddy born? Providence Where was Michele Radosevich born? Minneapolis Where was Catherine Keller born? Paris Where was Richard Cobbold born? Ipswich Where was Zhang Xueling born? Beijing Where was William Mackenzie McLeod born? Sydney Where was Erna Paris born? Toronto Where was Edward Searing born? Aurora Where was Theodore Pollock Ferguson born? Mansfield Where was Pietro Delfino born? Venice Where was George Alexander Pearre born? Cumberland Where was Alessandro Vollero born? Italy Where was Diane Greene born? Rochester Where was Sy Landy born? Brooklyn Where was Michio Ihara born? Paris Where was Rafael Nieto Abeill%C3%A9 born? Cuba Where was Eric Goldberg born? Berlin Where was Baron Wormser born? Baltimore Where was Asli Sungu born? Istanbul Where was Eija Krogerus born? Helsinki Where was William Hare born? Leicester Where was Gaurav Keerthi born? India Where was John Thorne born? Quincy Where was Konrad Wasiela born? Vancouver Where was Jeremy Holmes born? London Where was Daniel M. Hausman born? Chicago Where was Peter Brown born? Ireland Where was Janne Parviainen born? Finland Where was Eric Boniface born? France Where was C%C3%A9sar de Oliveira born? Porto Where was Leo Treitler born? Dortmund Where was Moses Mason, Jr. born? Dublin Where was Denis McQuade born? Glasgow Where was Nerses Yeritsyan born? Yerevan Where was John Henry born? Dublin Where was Adrian Baker born? London Where was Fritz Noll born? Frankfurt Where was Adam Kowalczyk born? York Where was Megan Spencer born? Australia Where was George William Houghton born? Perth Where was Marcus Dods born? Edinburgh Where was Nicola Campogrande born? Turin Where was Michael Falcon born? Norwich Where was Margaret Haile born? Canada Where was John Percival Postgate born? Birmingham Where was Walter Lupi born? Milan Where was George Hurst born? Edinburgh Where was Albert McElroy born? Glasgow Where was Witold Rodziński born? Lviv Where was Mika Salmi born? Helsinki Where was Martin Grams, Jr. born? Baltimore Where was Arthur Nichols born? Bristol Where was Giulio Carpioni born? Venice Where was Bhupinder Nath Kirpal born? Lahore Where was Francisco Ortiz de Vergara born? Seville Where was Ahmed Djoghlaf born? Algiers Where was Abraham Mintchine born? Kiev Where was John A. Dalles born? Pittsburgh Where was Christian Day born? Blackpool Where was Alfred Kossmann born? Leiden Where was Victor Tolgesy born? Hungary Where was Devin Hoff born? Colorado Where was Linnea Johnson born? Chicago Where was Brett Hestla born? Alabama Where was Armand Toussaint born? Paris Where was George Johnston born? Melbourne Where was Elvis Yero born? Havana Where was Spyros Sofos born? Athens Where was John Whistler born? Ulster Where was William Emery born? London Where was John Buckley born? Leeds Where was Nigel Tangye born? Kensington Where was Nicholas Colla born? Melbourne Where was Chuck Swirsky born? Norfolk Where was Milton Wright born? Georgia Where was William Clarke born? Nottingham Where was Rebecca Pronsky born? Brooklyn Where was Raymond Monsour Scurfield born? Chicago Where was Wendy Mulford born? Wales Where was Luis Ulacia born? Havana Where was Robert Briffault born? London Where was Lou Stein born? Philadelphia Where was George Savoidakis born? Crete Where was Laurent d'Arvieux born? Marseille Where was Neil Rollinson born? Yorkshire Where was Gustav Bartholin Hagen born? Copenhagen Where was Andy LaRocque born? Gothenburg Where was John Hirst born? Bradford Where was Gordon Stratton born? Winnipeg Where was Sarah Stiles born? Massachusetts Where was Piotr Buciarski born? Warsaw Where was Robert Morrison, 1st Baron Morrison born? Aberdeen Where was Neil Doncaster born? Devon Where was David Solomon born? Australia Where was James S. Smart born? Baltimore Where was Thomas Passmore born? Belfast Where was Nathan B. Spingold born? Chicago Where was Emmanuel Scheffer born? Germany Where was Charles Nicholas Aubé born? Paris Where was Wilkes Angel born? Exeter Where was Benjamin Kunkel born? Colorado Where was Steve Bjorklund born? Chicago Where was Branko %C5%A0alamon born? Zagreb Where was J. N. Williamson born? Indianapolis Where was George Butler born? Mansfield Where was Tom McGuinness born? Wimbledon Where was Owen McAuley born? Belfast Where was Roger Q. Williams born? Brooklyn Where was Gabriel Tschumi born? Switzerland Where was Henry Hall born? Sheffield Where was Rudolf von Erlach born? Bern Where was Keena Rothhammer born? Arkansas Where was John Ambrose Meyer born? Baltimore Where was Jean Baptiste Rives born? Bordeaux Where was Jacob Guay born? Quebec Where was Ryan Naraine born? Georgetown Where was Claude Wiseler born? Luxembourg Where was Idriss Ndele Moussa born? Chad Where was Meike Evers born? Berlin Where was Ruslan Gritsan born? Moscow Where was Ahmed Maher born? Alexandria Where was Dion Fischer born? Romeo Where was James Burnham born? Chicago Where was Johannes Falkenberg born? Oslo Where was Peter Milligan born? London Where was Thomas Kerr born? Calgary Where was Lou Angeli born? Wilmington Where was Tom French born? Kilkenny Where was Kex Gorin born? Birmingham Where was Thomas Birch Florence born? Philadelphia Where was Siddhant Karnick born? Mumbai Where was Mel Watkins born? Memphis Where was Warren Cann born? Victoria Where was Henry Albert Roby born? Massachusetts Where was William Worthy born? Boston Where was Leslie Howe born? Ontario Where was Oscar Bianchi born? Milan Where was Michael Hosking born? Singapore Where was Andrew Grant born? Birmingham Where was Adelaide Tosi born? Milan Where was James Hooker born? Windsor Where was Oxana Narozniak born? Germany Where was Charles Hylton Stewart born? Chester Where was Nick Richmond born? Garland Where was Münir Göle born? Istanbul Where was James Poole born? Watford Where was Francisco Cervantes de Salazar born? Toledo Where was Renato Beghe born? Illinois Where was Michelangelo Pisani di Massa e di Mormile born? Naples Where was Dan Armon born? Jerusalem Where was Edward Stransham born? Oxford Where was Gerald McLaughlin born? Newark Where was Cathy Busby born? Toronto Where was Michael Mason born? Ohio Where was Rob Heanley born? Surrey Where was Alfons Martí Bauçà born? Palma Where was Colin Slater born? Bradford Where was Keagan Kang born? Perth Where was Brian Hodgson born? Liverpool Where was John Cole born? Toronto Where was Harry South born? Fulham Where was Judd Buchanan born? Edmonton Where was Eric Kloss born? Greenville Where was Jumoke Verissimo born? Lagos Where was Kym Anderson born? Adelaide Where was Thomas Miller born? Norwich Where was Ethel Merston born? London Where was Barry Palmer born? England Where was Stephanie Andujar born? Manhattan Where was Derek Murray born? Dublin Where was Ted Grouya born? Bucharest Where was Marinko Madžgalj born? Belgrade Where was John J. Gorman born? Minneapolis Where was William Magennis born? Belfast Where was Ondřej Neff born? Prague Where was Andrea Newman born? Dover Where was Eugene O'Conor born? Ireland Where was Andrew Knight born? England Where was Frederick Franklin Schrader born? Hamburg Where was Janek Schaefer born? England Where was Charles William King born? Newport Where was Chris Woodhead born? Edmonton Where was Stephen Tompkins born? Cleveland Where was Arto Sipinen born? Helsinki Where was Adam Begley born? Boston Where was Pavel Polakovič born? Slovakia Where was Tansy Davies born? Bristol Where was Gregg Weaver born? California Where was Liza Manili born? Strasbourg Where was Jason Eckardt born? Princeton Where was Jon Elster born? Oslo Where was Fyodor Vinberg born? Kiev Where was Ali Lakhani born? England Where was Alfred Payne born? Leicester Where was Sean McGreevy born? Belfast Where was Christine Niederberger Betton born? Bordeaux Where was Anna Maria Guarnieri born? Milan Where was Gerald J. Tate born? Belfast Where was Henry Howell born? Richmond Where was Baruch Arensburg born? Santiago Where was Hedvig Willman born? Stockholm Where was Jane Tanner born? Melbourne Where was John Ferrar Holms born? India Where was Myer Hoffman born? Leeds Where was Joan Hartigan born? Sydney Where was Dionysis Boukouvalas born? Athens Where was Galina Fokina born? Moscow Where was Dexter Perkins born? Boston Where was Philippe N'Dioro born? France Where was William Mattieu Williams born? London Where was Sara Agnes Mclaughlin Conboy born? Boston Where was Adam Melonas born? Canberra Where was Hifumi Shimoyama born? Japan Where was Claire Cox born? Peterborough Where was Manu Farrarons born? France Where was Frank Gohlke born? Texas Where was Paul Chadwick born? Seattle Where was Vlastimil Pt%C3%A1k born? Prague Where was Huck Whitney born? Birmingham Where was Richard Nye born? Gloucester Where was Bill Downe born? Montreal Where was Lee King born? Dublin Where was Gladys Ewart born? Ottawa Where was Stephen Griew born? London Where was Michel Reis born? Luxembourg Where was Anselm Jappe born? Bonn Where was Freddy Winnai born? Philadelphia Where was Edward Harrington born? Victoria Where was Harry James Angus born? Melbourne Where was David J. Farrar born? London Where was John Smith born? Toronto Where was Johnny Rodgers born? Miami Where was Stacy Barthe born? Brooklyn Where was Ákos Császár born? Budapest Where was Glynnis McDaris born? Memphis Where was Johann Friedrich Schleusner born? Leipzig Where was Michael Swanton born? London Where was Kari Økland born? Bergen Where was Rosabelle Sinclair born? Russia Where was Thomas Smith born? England Where was Mickael Marquet born? France Where was Michael Upton born? Birmingham Where was Sally Price born? Boston Where was Luca Bottale born? Milan Where was Paul Moyer Limbert born? Pennsylvania Where was Malcolm Terris born? Sunderland Where was Mia Riddle born? Ventura Where was Irina Borogan born? Moscow Where was Aleksander Kogoj born? Ljubljana Where was Thomas Edward Gordon born? Aberdeen Where was Wilhelm Krause born? Hanover Where was Albrecht Dietz born? Dresden Where was Grigori Kromanov born? Tallinn Where was Sami Hinkka born? Finland Where was Paul Burston born? Yorkshire Where was William Francis Whitman, Jr. born? Chicago Where was John D. Strong born? Lawrence Where was Aleksandar Simi%C4%87 born? Belgrade Where was Murray Hocking born? Victoria Where was Darren Ockert born? Lincoln Where was Max Lehmann born? Berlin Where was Riccardo Ghedin born? Rome Where was Pietro Fancelli born? Bologna Where was Henry Frederick Strohecker born? Macon Where was George J. Graham, Jr. born? Dayton Where was Frederick Hickford born? Brunswick Where was Leah Goldstein born? Canada Where was Louis Gurlitt born? Holstein Where was Tom Luken born? Cincinnati Where was Annar Petersen born? Oslo Where was Behnoosh Tabatabayi born? Tehran Where was Vernon Carroll Porter born? Cleveland Where was Ernest Breton born? Paris Where was Andrew Lemoncello born? Tokyo Where was Myra Sklarew born? Baltimore Where was John Rutledge, Jr. born? Charleston Where was Ashley Webster born? Brighton Where was Matthew T. Abruzzo born? Brooklyn Where was Erik Willoch born? Oslo Where was Heinz Oestergaard born? Berlin Where was Terry Byrne born? London Where was Jared Cohen born? Weston Where was Alma Redlinger born? Bucharest Where was John Millen born? Savannah Where was Julien Fountain born? Sussex Where was Giuseppe de Majo born? Naples Where was Joel Pelletier born? Massachusetts Where was Rudolf Ehlers born? Hamburg Where was Jacek Sauk born? Vilnius Where was Stephen Luttrell born? Leicester Where was Lawrence Walford born? London Where was Stella Inger born? Russia Where was Ludwig von Buhl born? Munich Where was Shen Zhihua born? Beijing Where was Fenton Johnson born? Chicago Where was Sasha Neulinger born? Philadelphia Where was Gerald Murphy born? Boston Where was Alana Miller born? Winnipeg Where was Drew McDowall born? Paisley Where was Henry Corbould born? London Where was Ymer Pampuri born? Tirana Where was Eduard Ritter von Weber born? Munich Where was Raymond R. Schumacher born? Chicago Where was Pierre Sabatie born? France Where was Nariman Farvardin born? Iran Where was Jorn Madslien born? Oslo Where was Mary Jayne Gold born? Chicago Where was Nelson Fogarty born? Canterbury Where was John Caskie born? Richmond Where was Gillian Cooke born? Edinburgh Where was Joseph Silverstein born? Detroit Where was Ernest Lafont born? Lyon Where was David T. Walker born? Tulsa Where was Jessy Moss born? England Where was Catherine Ransom Karoly born? Minneapolis Where was Akihiro Tsukiyama born? Tokyo Where was Ferenc A. Váli born? Budapest Where was William Williams born? Bolton Where was John Mann Goggin born? Chicago Where was Hélène Carrère d'Encausse born? Paris Where was Bill Dillard born? Pennsylvania Where was Richard Schroeppel born? Illinois Where was Mark McCulloch born? Inverness Where was Richard Symonds born? Norfolk Where was Nasos Galakteros born? Athens Where was Joe M. O'Connell born? Austin Where was Brody Condon born? Mexico Where was Ernst Zacharias Platner born? Leipzig Where was Henri Nussbaumer born? Paris Where was John Boson born? Paul Where was Morris Bear Squire born? Chicago Where was Yolande Thibeault born? Montreal Where was James Tocco born? Detroit Where was Constant Ferdinand Burille born? Paris Where was John Samuel Kenyon born? Medina Where was Franz Galich born? Guatemala Where was Tom Adams born? Gettysburg Where was Daniel Joseph Jaffé born? London Where was Matteo Salvini born? Milan Where was Tony Naumovski born? Sydney Where was Joseph M. Baumgarten born? Vienna Where was Daniel Sproule born? Melbourne Where was Theodor Holman born? Amsterdam Where was Dave Connell born? Dublin Where was Alfredo Moreno born? Santiago Where was Luke Sullivan born? Singapore Where was Lynn Faulds Wood born? Glasgow Where was Roy Stuart Brown born? Minneapolis Where was Andrew Park born? Lafayette Where was Richard Laurence born? Bath Where was Brian Murphy born? Ottawa Where was René Mayer born? Paris Where was Leopoldo Gout born? Mexico Where was Robert Tripp Ross born? Washington Where was Ragnhild Lundén born? Gothenburg Where was Fatima Rainey born? Sweden Where was John Edwin born? London Where was Arthur Bingham Walkley born? Bristol Where was Mazen Mneimneh born? Lebanon Where was Howard O. McMahon born? Alberta Where was Joe Caccia born? Naples Where was George Stone born? London Where was Alice Temple born? London Where was Andrew Kennedy born? Dayton Where was Michael Randle born? England Where was Michael Charlton born? Sydney Where was Lars Svensson born? Stockholm Where was Eva Aridjis born? Holland Where was David B. Mellish born? Oxford Where was John Brown born? Sheffield Where was Patrick Hicks born? Charlotte Where was Ludovicus Stornebrink born? Rotterdam Where was Michael Feiner born? Gothenburg Where was Giancarlo Primo born? Italy Where was Thomas Davis born? Worcester Where was Lottie Gilson born? Pennsylvania Where was Brian Bram born? Chicago Where was J. E. P. Aldous born? Sheffield Where was Billy Blue born? Jamaica Where was Christian Wilhelm Berger born? Bucharest Where was Ulla Pia born? Copenhagen Where was Samuel Bernstein born? France Where was Steve Laine born? London Where was Antonio Ruiz de Montoya born? Lima Where was Bernhard R%C3%BChling born? Stuttgart Where was Don Swaim born? Kansas Where was Lawrence Dundas, 1st Earl of Zetland born? Westminster Where was Sam Bartlett born? Burlington Where was Martin Timell born? Stockholm Where was Lucien Barbour born? Canton Where was Edward Moore born? Cardiff Where was Bridget Allchin born? Oxford Where was Pieter Harting born? Rotterdam Where was Anthony Poon born? Singapore Where was Brihaspati Dev Triguna born? India Where was Knut Kjeldstadli born? Oslo Where was William Byrne born? London Where was Fiachna %C3%93 Braon%C3%A1in born? Dublin Where was Harold Drasdo born? Bradford Where was William Main Page born? London Where was Theron Metcalf born? Franklin Where was Robert Callender born? Barbados Where was Mohd Shoaib Hassan born? Lahore Where was Lisa Sheridan born? Macon Where was Georg Kloss born? Frankfurt Where was Julianna Barwick born? Louisiana Where was William Erskine born? Edinburgh Where was Albert Chamberland born? Montreal Where was Len Zengel born? Dayton Where was William Henry Brockenbrough born? Virginia Where was Brook Pridemore born? Detroit Where was Arthur Levering born? Baltimore Where was Sheila Sondergard born? Seoul Where was Lee Davies born? Blackburn Where was Nicole Richardson born? Melbourne Where was Paul Heeren born? Adelaide Where was William James Henderson born? Newark Where was Nicolae Herlea born? Bucharest Where was Fred Rosenstock born? Galicia Where was Lucie Vrbensk%C3%A1 born? Prague Where was Kenneth William Junor born? Toronto Where was Nicolas Colibert born? Paris Where was Jan Pawe%C5%82 Nowacki born? Berlin Where was Brandon Bird born? Carmichael Where was A. M. Esmonde born? Swansea Where was Thomas Wright Rudderow born? Philadelphia Where was Francis Gano Benedict born? Milwaukee Where was William Davidson born? Charleston Where was Austin Lloyd Fleming born? Toronto Where was Li Weiliang born? Beijing Where was Migidio Bourifa born? Casablanca Where was Zhang Li born? Shanghai Where was Charles Jones born? Wolverhampton Where was Yehonatan Berick born? Israel Where was Georg Hellmesberger born? Vienna Where was George Georgiou born? London Where was John R. Tunis born? Boston Where was Buono de' Buoni born? Naples Where was Dave Steele born? Tampa Where was Tim Benjamin born? London Where was Alina Gut born? Lublin Where was Michel Roger Lafosse born? Belgium Where was Martin A. Janis born? Toledo Where was John William Mellor born? London Where was Robert S. Richardson born? Indiana Where was Derek Kreckler born? Sydney Where was Yosef Harish born? Jerusalem Where was Robert Chen born? Taipei Where was Max Angelelli born? Bologna Where was Alan Welsh born? Edinburgh Where was Billy Edwards born? Birmingham Where was Paul Lebreton born? Bordeaux Where was Lowrell Simon born? Chicago Where was R. W. Johnson born? England Where was Benjamin Pine born? London Where was Charles Forbes René de Montalembert born? London Where was George Schutt born? Ireland Where was Matt Ryan born? Sydney Where was Marie Nicolas Sylvestre Guillon born? Paris Where was Daniel Spielman born? Philadelphia Where was Tony Conran born? India Where was Oscar O'Brien born? Ottawa Where was Pietra Montecorvino born? Naples Where was Lennox Raphael born? Trinidad Where was Su Lian Tan born? Malaysia Where was Oğuz Abadan born? Ankara Where was Donald W. Loveland born? Rochester Where was Francis MacManus born? Kilkenny Where was Monica Esposito born? Genoa Where was Mike Vosburg born? California Where was Kraisak Choonhavan born? Bangkok Where was Ken Lyons born? Florida Where was René Renoult born? Paris Where was David Empringham born? Toronto Where was Saleem Pervez born? Lahore Where was Adnan Awad born? Palestine Where was Juan Carlos Bersague born? Havana Where was Joseph Bosworth born? Derbyshire Where was Khalid Malik born? Pakistan Where was Paddy Crowley born? Dublin Where was John Joseph Braham, Sr. born? England Where was Calvary Morris born? Charleston Where was Carlo Bacchiocco born? Milan Where was Robert Ilyasov born? Kazan Where was George Henderson born? Edinburgh Where was Aaron Walden born? Warsaw ================================================ FILE: a5/birth_places_train.tsv ================================================ Where was Khatchig Mouradian born? Lebanon Where was Jacob Henry Studer born? Columbus Where was John Stephen born? Glasgow Where was Georgina Willis born? Australia Where was Stanley Corrsin born? Philadelphia Where was Eduard Ender born? Rome Where was John Fisher born? Glasgow Where was Iago Dekanozishvili born? Tbilisi Where was Lucy Toulmin Smith born? Boston Where was George Osborn born? Rochester Where was Leslie Hofton born? Sheffield Where was Chiyoki Ikeda born? Honolulu Where was Geoffrey Nutter born? Sacramento Where was Eyolf Kleven born? Copenhagen Where was Marvano born? Belgium Where was Naïma Azough born? Morocco Where was Eugenia Popa born? Bucharest Where was Douglas P. Fry born? Boston Where was Hans Gefors born? Stockholm Where was Sohail Fazal born? Lahore Where was James Johnson born? Virginia Where was Håvard Rem born? Oslo Where was Hubert Schiffer born? Germany Where was Ivan Petch born? Concord Where was Guido Marzorati born? Venice Where was Sean Hickey born? Detroit Where was Hector de Castro born? Constantinople Where was Lloyd Goffe born? Reading Where was Alois Wachsman born? Prague Where was Martin Connor born? Trenton Where was Mohammad Hossein Barkhah born? Tehran Where was James Robert Rhind born? Inverness Where was Jean Hamilius born? Luxembourg Where was Danny Seward born? Salford Where was Stephen Grey born? Rotterdam Where was Louie Verrecchio born? Baltimore Where was Marcus Junkelmann born? Munich Where was John Dodington born? Toronto Where was Graham Salisbury born? Philadelphia Where was Bunny Johnson born? Jamaica Where was Cenk Renda born? Turkey Where was Mihael Brejc born? Belgrade Where was Gordon Baldwin born? England Where was Shlomo Shriki born? Morocco Where was Tatiana Belokonenko born? Odessa Where was Rob Childs born? Derby Where was Andreas Musalus born? Crete Where was Francesco Maria Bonini born? Naples Where was Raymond McGrath born? Sydney Where was Stephen Carter, Baron Carter of Barnes born? Scotland Where was Jack Macgougan born? Belfast Where was Julia Wilson born? Sydney Where was James Jordan born? Chatham Where was Wang Yong born? Shanghai Where was Ronny Swiggers born? Belgium Where was Sofia Ester born? Lisbon Where was Nathan Long born? Australia Where was Ylli Bufi born? Tirana Where was Sir Andrew Agnew, 8th Baronet born? Edinburgh Where was John Seru born? Australia Where was Sebastiano Maffettone born? Naples Where was Wang Wei born? Beijing Where was Theodore Baskin born? Detroit Where was Ferenc Sipos born? Budapest Where was Tadahisa Saizen born? Tokyo Where was Arthur Harold Stone born? London Where was Bransby Williams born? London Where was Walter Branscombe born? Exeter Where was Jeanne Deroin born? Paris Where was Frederick Pottinger born? India Where was Patrick Thomas Stone born? Pembroke Where was Andrea Neil born? Vancouver Where was Karl Albert Buehr born? Germany Where was Alexander Mullenbach born? Luxembourg Where was Gilbert John Arrow born? London Where was John Howard born? London Where was Elizur Goodrich born? Durham Where was Zenon Nowosz born? Warsaw Where was Greta Knutson born? Stockholm Where was Paul Daniels born? Burlington Where was Tom Jones born? Dallas Where was Elizabeth Bartlett born? Deal Where was Laura Moriarty born? Honolulu Where was David Moss born? Doncaster Where was Richard Tillinghast born? Memphis Where was Judith Mok born? Bergen Where was Eugen Enderlen born? Salzburg Where was Frank Farrell born? Birmingham Where was John Savage born? Dublin Where was Joel Honig born? Chicago Where was Jan Cox Speas born? Raleigh Where was Norman Spector born? Montreal Where was Peeter van Bredael born? Antwerp Where was John Jaffray born? Stirling Where was Sir William Coddington, 1st Baronet born? Salford Where was Azra Erhat born? Istanbul Where was Helen Sharsmith born? Oakland Where was Jeff Spiers born? Belfast Where was Ilus Vay born? Budapest Where was Igors Vihrovs born? Riga Where was Harry Chadwick born? Toronto Where was Franz Rummel born? England Where was Jim Grace born? Dublin Where was Ali Sarmini born? Aleppo Where was Robert Daniel Murphy born? Milwaukee Where was Shannon Emerick born? Dallas Where was Walter Gretzky born? Ontario Where was Kristian Geelmuyden born? Oslo Where was Tala Raassi born? Iran Where was Jules Louis Lewal born? Paris Where was Patrick Daughters born? Berkeley Where was Renaud Gagneux born? Paris Where was Elizabeth Burmaster born? Baltimore Where was Dave Mazzoni born? Philadelphia Where was Aamer Haleem born? London Where was John Van Lear McMahon born? Maryland Where was Jan Jacob Kieft born? Amsterdam Where was Wilhelmine von Hillern born? Munich Where was Tracey Magee born? Belfast Where was George Edward Hughes born? Waterford Where was Alexander Riese born? Frankfurt Where was Tina Kim born? Seoul Where was Bernard de Wolff born? Amsterdam Where was Peter Ording born? Stade Where was Branko Rasić born? Serbia Where was Ketil Hvoslef born? Bergen Where was John Carlin born? Nottinghamshire Where was Antonio Selvaggio born? Palermo Where was Michael Aufhauser born? Augsburg Where was Paula Tesoriero born? Wellington Where was John Marcum born? Toledo Where was Beth Liebling born? Illinois Where was José Bénazéraf born? Casablanca Where was Witold Nazarewicz born? Warsaw Where was Aarne Lakomaa born? Finland Where was Jerry Knight born? California Where was Yanitzia Canetti born? Havana Where was Ken Niles born? Livingston Where was Riccardo Maspero born? Italy Where was Margaret Maury born? Kenya Where was Bernard Wright born? Jamaica Where was Caroline Beil born? Hamburg Where was Joseph Judah Chorny born? Minsk Where was Thomas Godfrey Faussett born? Oxford Where was Árpád Soós born? Budapest Where was Samuel Davidson born? Ireland Where was Leonard Gyllenhaal born? Sweden Where was Sheyene Gerardi born? Caracas Where was Bryn Atkinson born? Canberra Where was Claudine Chomat born? France Where was Peter G. Engelman born? London Where was Stanis%C5%82aw Stolarczyk born? Poland Where was Sean Naylor born? Calgary Where was Jean Muller born? Luxembourg Where was Victoria Roberts born? Manhattan Where was Thomas F. Konop born? Franklin Where was Richard Cullen born? Brooklyn Where was Webster Edgerly born? Massachusetts Where was Peter Smedley born? Perth Where was Eric Ziebold born? Iowa Where was Adam Buszko born? Warsaw Where was Syms Covington born? Bedford Where was Joan Vincent Murray born? London Where was Gabriela Kulka born? Warsaw Where was Andrea Ratuski born? Winnipeg Where was Donald Haddow born? Ontario Where was Joe Daly born? London Where was Jane R. Goodall born? Yorkshire Where was Natalia Skobeeva born? Russia Where was Charles Murphy born? Ottawa Where was Charles Duncan born? Middlesbrough Where was Adel Sedra born? Egypt Where was William Wilson born? Preston Where was Thomas Bond born? Somerset Where was Michael Manuel born? Tacoma Where was James William Wallack born? London Where was Neil Swaab born? Detroit Where was Jean Cotelle born? Paris Where was Nick Hall born? Birmingham Where was Julie Aberg Robison born? Madison Where was Fina de Calderón born? Madrid Where was Gordan Kožulj born? Zagreb Where was Francis Henry Newbery born? Devon Where was Katherine Prescott Wormeley born? England Where was Avi Bortnick born? Israel Where was James L. Hogeboom born? Ghent Where was Samuel Kneeland born? Boston Where was Denise Holt born? Vienna Where was Riccardo Azzoli born? Rome Where was Russell Bawden born? Queensland Where was Bachar Kouatly born? Damascus Where was Charles Ignatius White born? Baltimore Where was John Halsey born? Boston Where was Russya born? Kiev Where was Brian White born? Winnipeg Where was Ashley Gilbertson born? Melbourne Where was Rosere Manguelle born? France Where was James A. MacAlister born? Glasgow Where was Dennis Rea born? Chicago Where was Nick Pugh born? Paris Where was Douglas Fee born? Kingston Where was Colin Carr born? Liverpool Where was Robert Harth born? Louisville Where was Pierre de Savoye born? Montreal Where was Lionello Grifo born? Rome Where was Marcin Gawron born? Poland Where was Alex Coke born? Dallas Where was Martinus Tels born? Rotterdam Where was Matthew Kent born? Melbourne Where was Johan de Graeff born? Amsterdam Where was Norbert Balatsch born? Vienna Where was Eugen von Halácsy born? Vienna Where was Fergus Morton, Baron Morton of Henryton born? Glasgow Where was Horatio Balch Hackett born? Salisbury Where was Pascal Aubier born? Paris Where was Steven Alexander born? London Where was Ray Sharp born? Stirling Where was Luke Youlden born? Melbourne Where was Michael Urbano born? Sacramento Where was Ernst Fries born? Heidelberg Where was Giovanni Polese born? Venice Where was Ellie Tesher born? Toronto Where was Alain de Cadenet born? London Where was Jemma Gawned born? Perth Where was Reginald Henry Campbell born? Edinburgh Where was Elfie W%C3%B6rner born? Berlin Where was Frederic Heath born? Milwaukee Where was Jimmy Norris born? Newport Where was John Baird born? Glasgow Where was Giacomo Luigi Brignole born? Genoa Where was Kenn Burke born? Fife Where was Anna Maria Villani Scicolone born? Rome Where was George Schlukbier born? Germany Where was Pietro Leonardi born? Rome Where was Ole Buck born? Copenhagen Where was Alastair Gordon born? Sydney Where was Dariusz Lipiński born? Warsaw Where was Che Arthur born? Mobile Where was Alan Wace born? Cambridge Where was Scientist born? Kingston Where was Pat Passlof born? Brunswick Where was Elizabeth Filippouli born? Athens Where was Al Harewood born? Brooklyn Where was Laurie Fisher born? Canberra Where was Neil M. Cohen born? Newark Where was Carl Blumenreuter born? Berlin Where was Ian Dench born? Cheltenham Where was George FitzGeorge born? London Where was Charles A. Barlow born? Cleveland Where was Didier Pfirter born? Basel Where was Jon Stock born? England Where was Michael Gallagher born? Scotland Where was Sergei Ordzhonikidze born? Moscow Where was John Clarke born? Ireland Where was A. G. E. Blake born? Bristol Where was Billy Hoffman born? Atlanta Where was Marcello Abbado born? Milan Where was Eugénie Söderberg born? Heidelberg Where was Russell Stannard born? London Where was Charles Ejogo born? London Where was George Clifford Sziklai born? Budapest Where was Mary Jean Stone born? Brighton Where was Mat Chivers born? Bristol Where was Linda MacLennan born? Toronto Where was Marthe Chenal born? Paris Where was Horatio Luro born? Argentina Where was Adolfo Davila born? Mexico Where was Charles Cotin born? Paris Where was Wayne Eagling born? Montreal Where was Aldo Franchi born? Milan Where was Dennis Frank Thompson born? Ohio Where was Ferenc Mérei born? Budapest Where was Roger Brunet born? Toulouse Where was Theodore Low De Vinne born? Stamford Where was Michael Francis Phelan born? Lynn Where was Celestino Sfondrati born? Milan Where was Samuel Verblunsky born? London Where was David Stainer born? Exeter Where was Andrew O'Neill born? Portsmouth Where was Gritakumar E. Chitty born? Colombo Where was Des Abbott born? Darwin Where was Dumont de Montigny born? Paris Where was Conrad Keely born? England Where was Titane Laurent born? Morocco Where was Edwin E. Wagner born? Philadelphia Where was Ronnie Stephenson born? Sunderland Where was Will Kirby born? Florence Where was Rosina Storchio born? Venice Where was Sylvester Rosa Koehler born? Leipzig Where was Julie Mullen born? Liverpool Where was Charles Kemper born? Oklahoma Where was Philip Smouha born? Sydney Where was Jan Jakob Tønseth born? Oslo Where was Tony Mitchell born? Toronto Where was Michel Host born? Flanders Where was Yang Yang born? China Where was Tom Mattera born? Philadelphia Where was Maarten Fontein born? Leiden Where was Brian Ervine born? Belfast Where was Takeshi Miyazawa born? Canada Where was Stephan Shakespeare born? Germany Where was John Barry born? London Where was Stanisław Urban born? Warsaw Where was Harvey Emerson Oswald born? Columbus Where was Alec Mullen born? Irvine Where was Alexander Mishnaevski born? Moscow Where was Leo Ehrnrooth born? Sweden Where was John William Thomson born? Toronto Where was Steve Arrington born? Dayton Where was Alexander C. Kirk born? Angus Where was Jimmy Gregg born? Dublin Where was Raymond Castilloux born? Canada Where was Florent Fidèle Constant Bourgeois born? Paris Where was Isaac Sharp born? Dublin Where was Asa G. Yancey, Sr. born? Atlanta Where was Robert Hamilton Paterson born? Edinburgh Where was Jan van Ispelen born? Germany Where was Harold Arthur Stuart born? York Where was Gerry Markman born? Montreal Where was Amber Parkinson born? Melbourne Where was Alexander Cores born? Russia Where was Homa Shaibany born? Iran Where was George Arnald born? Berkshire Where was William M. Crane born? Elizabeth Where was Samuel Joseph Fuenn born? Vilnius Where was Aurel S. Croissant born? Germany Where was Marie Fisher born? Sydney Where was Mihály Kovács born? Budapest Where was Susan Bullock born? Cheshire Where was Ximena Armas born? Santiago Where was John David Hennessey born? London Where was Simone Pasticcio born? Genoa Where was Andreas Lagios born? Athens Where was Michael Birt born? Melbourne Where was William Dimma born? Montreal Where was Harry Philbrick born? Providence Where was Lasse Lintilä born? Finland Where was Julia Kendell born? Middlesex Where was Nikos Aliagas born? Paris Where was James Fagan born? Australia Where was Hiram Hunter born? Christchurch Where was Lawrence Taub born? Newark Where was Samuel Gezalian born? Odessa Where was Taavi Vartia born? Helsinki Where was Akhtar Naraghi born? Iran Where was Friedrich Rehberg born? Hanover Where was Ernst Mehlich born? Berlin Where was Pierre Lecomte du Noüy born? Paris Where was Ahmet Esat Tomruk born? Constantinople Where was Jonah Smith born? Syracuse Where was Henry James born? Boston Where was Werner Münch born? Westphalia Where was Charles Weissmann born? Budapest Where was Ron Westrum born? Chicago Where was John M. Coffee born? Tacoma Where was Johnny Praize Hernandez born? Newark Where was William Taylor born? Alexandria Where was Alastair Layzell born? Jersey Where was Samuel Sterett born? Carlisle Where was Bobby Parker born? Coventry Where was Sun Lingfeng born? Beijing Where was Sheenagh Pugh born? Birmingham Where was Patricia Stokkers born? Utrecht Where was Necmi S%C3%B6nmez born? Istanbul Where was Jonathan Wilkins born? London Where was Harry Pelling Gill born? Brighton Where was Joan Brotat born? Barcelona Where was William Charles Brenke born? Berlin Where was Ernest Wilson Huffcut born? Kent Where was Clive Brooks born? Bow Where was Aleksandar Novaković born? Belgrade Where was Maja Tucholke born? Leipzig Where was Bruce Carmichael born? Winnipeg Where was Arthur Kinnaird, 11th Lord Kinnaird born? Kensington Where was Laszlo Gardony born? Hungary Where was Kelley Deal born? Dayton Where was William Henry Harrison Stowell born? Windsor Where was Serdar Apaydın born? Turkey Where was Barrett Martin born? Olympia Where was Sal Sparace born? Italy Where was Tzipora Laskov born? Ukraine Where was Frank Beck born? Salisbury Where was Robert Fulford born? Colchester Where was Saad Salman born? Baghdad Where was Jan Bull born? Paris Where was Terry Zahn born? Milwaukee Where was Murdoch Macdonald born? Inverness Where was Hugo Consuegra born? Havana Where was Mark Ettinger born? Manhattan Where was Winfield Myers born? Georgia Where was Daniel Steven Crafts born? Detroit Where was Rebekah Modrak born? Pittsburgh Where was Piero Rodarte born? Mexico Where was René Gagnier born? Montreal Where was Wang Beiming born? Shanghai Where was James Adler born? Chicago Where was Jüri Reinvere born? Tallinn Where was Lucille Wallenrod born? Brooklyn Where was Henry S. Magoon born? Wisconsin Where was Anna Kurska born? Lviv Where was Wally Stocker born? London Where was Cristy Coors Beasley born? Memphis Where was Viktor Ivan%C4%8Di%C4%87 born? Sarajevo Where was Eugène Lanti born? Normandy Where was Dominique de Williencourt born? Lille Where was Paul Zuccarelli born? Milan Where was Francisco de Osuna born? Seville Where was Emmanuel Aquin born? Montreal Where was Denis Denisenko born? Moscow Where was Jonathan Shearer born? Glasgow Where was Charles T. Clotfelter born? Birmingham Where was Stan Rosenthal born? London Where was Michael Shine born? Warren Where was Jonas Slier born? Amsterdam Where was Barry Mitcalfe born? Wellington Where was Jennifer Ness born? Cheshire Where was David Barstow born? Boston Where was György Bródy born? Budapest Where was William Russell Birch born? Warwickshire Where was Henry Taylor born? Philadelphia Where was Steve Sundholm born? Portland Where was Frederic Bayco born? London Where was Ethan Schreiber born? Detroit Where was Francis Waddelove born? England Where was Renato Caccioppoli born? Naples Where was John Heath born? Worcester Where was Leo Abrahams born? England Where was Innocente Alessandri born? Venice Where was Silja Ekeland Bjørkly born? Bergen Where was Harry Zvi Tabor born? London Where was Mirela Ivanova born? Sofia Where was Bobby Skafish born? Hammond Where was John Montague born? Syracuse Where was Józef Wieniawski born? Lublin Where was Joe Torres born? Brooklyn Where was Rhett Davies born? London Where was Saradindu Mukherjee born? Kolkata Where was Peter Smith born? Mansfield Where was Jennifer Moyle born? Norwich Where was Ottaviano Nonni born? Bologna Where was Vincenzo Re born? Parma Where was Göran Gentele born? Stockholm Where was Hamilton Sloan born? Belfast Where was Ann Corio born? Hartford Where was Brad Heald born? Sydney Where was Gordon Edward Corbould born? Toronto Where was Byron Fulcher born? Cornwall Where was Yvette Giraud born? Paris Where was Robert E. Merriam born? Chicago Where was Leszek Korzeniowski born? Warsaw Where was Eugene Elliott Reed born? Manchester Where was Cynthia Cruz born? Germany Where was Enrico Montesano born? Rome Where was Stephen McGonagle born? Derry Where was Kirk Hunter born? Belfast Where was Paul Lacroix born? Paris Where was Argiris Pedoulakis born? Athens Where was Andrei Soldatov born? Moscow Where was Yuki Matsuzawa born? Tokyo Where was Cliff Jones born? London Where was Daniel Dayan born? Casablanca Where was Zoltán Szilády born? Budapest Where was Warington Wilkinson Smyth born? Naples Where was Thomas Hoegh born? Oslo Where was Jan Schreiber born? Wisconsin Where was John Carlyle Herbert born? Alexandria Where was Stuart Ford born? Sheffield Where was John DeCew born? Vermont Where was John Boling born? Indianapolis Where was Peter Griffen born? Adelaide Where was Gregory Woods born? Ghana Where was K. Bhaskaran born? Chennai Where was Sergio Zaniboni born? Turin Where was Mike Delph born? Indianapolis Where was Tanis Rideout born? Belgium Where was Edwin Sutherland born? Nebraska Where was Anders Agensø born? Denmark Where was Alexander Smith born? Edinburgh Where was Brian Callison born? Manchester Where was Hanna Ożogowska born? Warsaw Where was Luis G. Pedraja born? Cuba Where was Adalbert Vitalyos born? Hungary Where was Eero Paloheimo born? Helsinki Where was Nick Grosso born? London Where was George Sutherland born? Scotland Where was Ludwig von Wohlgemuth born? Vienna Where was Nikhil Haldipur born? Kolkata Where was Kris Kane born? Glasgow Where was Albert Geouffre de Lapradelle born? Paris Where was Fran%C3%A7ois Desjardins born? Montreal Where was Marco Maccarini born? Turin Where was Hanna Thompson born? Rochester Where was Andrzej Mańka born? Lublin Where was Rika Noguchi born? Tokyo Where was Tobias Summerer born? Bavaria Where was Albert Warren Ferris born? Brooklyn Where was Hans Solereder born? Munich Where was Mark McCrea born? Belfast Where was László Z. Bitó born? Budapest Where was Brian Costello born? Florida Where was Georges Hugon born? Paris Where was Christfried Burmeister born? Bradford Where was Nick Greenstock born? Dubai Where was Thomas Wroth born? London Where was Aliuska López born? Havana Where was Vladeta Janković born? Belgrade Where was Staffan de Mistura born? Stockholm Where was Brett Hayman born? Melbourne Where was Mike Teasdale born? Elgin Where was Walter Hilgers born? Germany Where was Gilbert de Clare, 7th Earl of Gloucester born? Christchurch Where was Nektaria Karantzi born? Greece Where was Phil Dudderidge born? Hertfordshire Where was Edward Meredith Cope born? Birmingham Where was Boris Yampolsky born? Ukraine Where was Edith Leyrer born? Vienna Where was Susan Denin born? Philadelphia Where was Harrison Allen born? Philadelphia Where was Valentin Raychev born? Sofia Where was Kev Moore born? Chesterfield Where was Romuald Giegiel born? Warsaw Where was Léon Gimpel born? Paris Where was Colin Groves born? England Where was Azzedine Sakhri born? Algiers Where was Serafino Amedeo De Ferrari born? Genoa Where was Ahmet Gülhan born? Ankara Where was Duncan Fallowell born? London Where was Ernest Baldwin born? Gloucester Where was George Bruce Malleson born? Wimbledon Where was Matthew Price born? London Where was Ippongi Bang born? Yokohama Where was Alex Halberstadt born? Moscow Where was Richard Vale born? London Where was Alistair Griffin born? Middlesbrough Where was Gary Loizzo born? Illinois Where was Kim Mackay born? Bathurst Where was Benjamin Brecknell Turner born? London Where was Eduard Ortgies born? Bremen Where was Wilhelm Sander born? Berlin Where was Sampson Low born? London Where was Mario Theodoli born? Rome Where was Joy Williams born? Sydney Where was Adam McLean born? Glasgow Where was Philip Warwick born? Westminster Where was Kimiko Kasai born? Kyoto Where was Nina Repeta born? Shelby Where was Rudolf Křesťan born? Prague Where was David Atkinson born? Montreal Where was Edmund Port born? Syracuse Where was Sonya Emery born? Austin Where was Giuliano Ciannella born? Palermo Where was Otto Griessing born? Munich Where was Marcus Bierich born? Hamburg Where was Zhu Dawei born? Shanghai Where was Nicole Jordan born? Oklahoma Where was Hugh Andrew Johnstone Munro born? Elgin Where was Johnny Mowlem born? London Where was Hall Hibbard born? Kansas Where was Cris af Enehielm born? Helsinki Where was Mouloud Sihali born? Algeria Where was Patrick Lemarié born? Paris Where was Matthew Baillie Begbie born? Mauritius Where was Edward Gardner born? Gloucester Where was Marija Lugari%C4%87 born? Zagreb Where was Andrea Mátay born? Budapest Where was John P. Cassidy born? Boise Where was Glenn Cunningham born? Bristol Where was Richard Keese born? Peru Where was Safdar Malik born? Lahore Where was Francisca Pleguezuelos born? Granada Where was Laurie Allan born? London Where was Yves Roucaute born? Paris Where was Bob Alberti born? Brooklyn Where was Noah Creshevsky born? Rochester Where was Ivo Lukačovič born? Prague Where was Gary Titley born? Salford Where was Arseni Markov born? Moscow Where was Farid Chopel born? Paris Where was Martin Smith born? Southampton Where was Alice Gerrard born? Seattle Where was Sheyla Bonnick born? Jamaica Where was Brian G. W. Manning born? Birmingham Where was Stewart Brown born? Southampton Where was George Graham born? Stirling Where was Péter Lendvay born? Budapest Where was John Galea born? Norfolk Where was Arthur Andrews born? Sunderland Where was Ben Ali born? Trinidad Where was Hallgeir Langeland born? Strand Where was Michał Tober born? Warsaw Where was Howard Griffiths born? Wales Where was Philippe Lardy born? Switzerland Where was Moritz Hornes born? Vienna Where was Ken Little born? Canyon Where was Romain Pelletier born? Montreal Where was David Paton born? Hamilton Where was Henry Curtis Meanor born? Cleveland Where was Neil Fingleton born? Durham Where was Lionel Tiger born? Montreal Where was Charles Henry Douglass born? Macon Where was Harry Marshall Ward born? Hereford Where was Murat Evliyaoğlu born? Turkey Where was Jesse A. Hamilton born? Portland Where was Michael Anti born? Nanjing Where was Jan Kregel born? Dallas Where was Silas Halsey born? Southampton Where was Eugene Cotran born? Jerusalem Where was Herbert Kingsford born? Dover Where was Frank Sayers born? London Where was Thanhha Lai born? Vietnam Where was Kevin Noe born? Dallas Where was John Graham born? Derby Where was Stefanie van Vliet born? Amsterdam Where was Stephen Smyth born? Derry Where was Jacques Mehler born? Barcelona Where was Adam Gierek born? Belgium Where was Russell Trainer born? Detroit Where was James Bigwood born? Bristol Where was George Clark born? Tulsa Where was Byron Morrow born? Chicago Where was Hervé Alphand born? Paris Where was Georges Henri Roger born? Paris Where was Charles Tanguy born? France Where was Ethel du Pont born? Wilmington Where was Domenico Cunego born? Verona Where was Robert K. Brown born? Monroe Where was Festus Walters born? Philadelphia Where was Noel Moore born? Yorkshire Where was Oliver Bevan born? Peterborough Where was Alexander Pope Field born? Louisville Where was D'Arcy Browning born? Edmonton Where was George Rowe born? Exeter Where was Pierre Albuisson born? Madagascar Where was Simon Laurens born? Jersey Where was Clere Parsons born? India Where was Peter Wraxall born? Bristol Where was Louis Godin born? Paris Where was George William Knox born? Rome Where was Wayne Budd born? Springfield Where was George Jacobs born? Massachusetts Where was Claude Duflos born? Paris Where was Rod Anderson born? Australia Where was A. Ledyard Smith born? Milwaukee Where was Jean Pérol born? Vienna Where was Jorge Pacheco Klein born? Montevideo Where was Rambhau Mhalgi born? Pune Where was Edward Balfour born? Angus Where was Margaret Bloodworth born? Winnipeg Where was Eric Guillemain born? Morocco Where was John Whitworth born? India Where was Christine de Veyrac born? Toulouse Where was Felicia Montealegre born? Chile Where was Michael Finney born? Woodland Where was Ian Hancock born? England Where was Graham Roberts born? Chester Where was Peter Belches born? Scotland Where was Knut Tarald Taraldsen born? Oslo Where was Filippo Soffici born? Florence Where was Paul Hedqvist born? Stockholm Where was Vladimir Galkin born? Kazan Where was Sir George Bowyer, 7th Baronet born? Berkshire Where was Yelena Belyakova born? Moscow Where was Hakob Hakobian born? Egypt Where was Martin Jacques born? Coventry Where was Tajinder Singh Hayer born? Bradford Where was Jon Courtney born? Reading Where was Ruth Volgl Cardoso born? Brazil Where was Erwin Kelm born? Minnesota Where was Swami Sundaranand born? India Where was Jacob B. Grumet born? Manhattan Where was John Honeyman born? Ireland Where was George B. Rabb born? Charleston Where was Alexander Laner born? Munich Where was David Schrader born? Chicago Where was Darren Carr born? Bristol Where was Victor Borge born? Copenhagen Where was Xavier Garbajosa born? Toulouse Where was Philippe Risoli born? Paris Where was Omar Harfouch born? Tripoli Where was Harry Newton Redman born? Illinois Where was Frederic C. Lane born? Lansing Where was Josef Metternich born? Cologne Where was David Pangai born? Tonga Where was Stephen Fox born? England Where was Martyn Joseph born? Wales Where was Frederick Ringer born? Norwich Where was Thomas Johns Perry born? Cumberland Where was Robert Atherton born? Liverpool Where was Adolf von Bomhard born? Augsburg Where was Maria Kuznetsova born? Odessa Where was Pavel Žáček born? Prague Where was Spencer Swalm born? Colorado Where was Martin Duffy born? Dublin Where was Andre Coley born? Jamaica Where was Giacomo Vaghi born? Como Where was Andrew Martin born? Cambridge Where was Nikolay Atanasov born? Sofia Where was Fran%C3%A7ois-Anne David born? Paris Where was William Evans born? Eton Where was Tayyar Yalaz born? Istanbul Where was Dorothy Whitelock born? Leeds Where was Charles James Monk born? Peterborough Where was Ted Dey born? Hull Where was Kassim Mohamed born? Kenya Where was Phil Rose born? Manchester Where was Leslie Paul born? Dublin Where was Robert McCoy born? Carlisle Where was Bertrand Lamarche born? Paris Where was Gary Clark born? Dundee Where was John Macdonell born? Scotland Where was Francis J. Ricciardone, Jr. born? Boston Where was Darnell Kennedy born? Mobile Where was Anatoly Alexine born? Moscow Where was Shane McKenzie born? Adelaide Where was Kees Maks born? Amsterdam Where was Lewis Rendt born? Germany Where was Francisco Alimama Kashu born? Hyderabad Where was Katalin Karády born? Budapest Where was Giovanni Battista Pozzi born? Milan Where was Mariano Armellino born? Rome Where was Natalia Rom born? Kazan Where was Felice Giordano born? Turin Where was Lyubomir Ivanov born? Sofia Where was Danielle McGrath born? Sydney Where was Coral Amiga born? London Where was Eva Roth born? Augsburg Where was William Fletcher Burden born? Troy Where was John Lee born? Oklahoma Where was Sheik Sadeek born? Guyana Where was David Parry born? London Where was Tim Robinson born? Yorkshire Where was Alfred Ollivant born? Manchester Where was Wen Xiao Zheng born? Shanghai Where was John Mundy born? England Where was Christopher Packe born? Norwich Where was Yasmine Mahmoudieh born? Germany Where was Giovanni Battista Rinuccini born? Rome Where was Vic Lee born? Shanghai Where was John Purchas born? Cambridge Where was Parviz Jalayer born? Tehran Where was Henry Arthur Bright born? Liverpool Where was Louis Mazetier born? Paris Where was Richard Bristow born? Worcester Where was Noël Gallon born? Paris Where was Peter Martin born? Galway Where was Leo Alexander born? Vienna Where was Milan Orlowski born? Prague Where was Lahcen Abrami born? Casablanca Where was James Henry Emerton born? Salem Where was Ma Kelu born? Shanghai Where was Ulrik Cold born? Copenhagen Where was Lyman Tremain born? Durham Where was Pandeli Ralli born? France Where was Morgan Val Baker born? Cornwall Where was Jay Kennedy born? Toledo Where was Michael Griffith born? Trinidad Where was Frederick A. Pike born? Calais Where was Algernon Methuen born? London Where was Henri Perreyve born? Paris Where was David Robert Nelson born? Stuttgart Where was Federico López born? Mexico Where was Stephen Carr born? Sydney Where was Edmund H. Pendleton born? Savannah Where was William Hayter born? Oxford Where was Pat Gerber born? Glasgow Where was David McCarthy born? Belfast Where was Guiniforte Solari born? Milan Where was Derrick Leon born? London Where was Joseph Osgood Barrett born? Bangor Where was John Jenkins born? England Where was Rastko Cvetković born? Belgrade Where was John Snyder born? Boston Where was Trevor Burton born? Aston Where was Al Cotey born? Chicago Where was Jan Antonín Duchoslav born? Prague Where was Steve Francis born? Phoenix Where was Raymond Ericson born? Brooklyn Where was Valeriu Stoica born? Bucharest Where was Christian Murchison born? Singapore Where was Julie Duncan born? Cornish Where was James Moffat born? Victoria Where was Robert Erskine born? Scotland Where was Ralph Katz born? Pittsburgh Where was Bernard Cassen born? Paris Where was Gerhard Kraft born? Heidelberg Where was Lucas Auer born? Austria Where was Andrew Amos born? India Where was Richard Bathurst born? Jamaica Where was Stewart G. Honeck born? Chicago Where was Giovanni Francesco Commendone born? Venice Where was Mary Louise Smith born? Montgomery Where was Miglena Markova born? Sofia Where was Theodore J. van den Broek born? Amsterdam Where was Amy Sarkisian born? Cleveland Where was Thomas Barclay born? Glasgow Where was Mahdi Al Tajir born? Bahrain Where was David Sander born? Melbourne Where was Massimo Carello born? Turin Where was John Small born? York Where was Alizeh Imtiaz born? Karachi Where was Judith Vollmer born? Pittsburgh Where was Shay Gibbons born? Dublin Where was Gareth Knapman born? Birmingham Where was Keith Cozens born? Surrey Where was Dick Spotswood born? California Where was James Mumford born? Norfolk Where was Jack Blum born? Toronto Where was Mark Patton born? Jersey Where was Geoffrey Girard born? Germany Where was Zhu Xueqin born? Shanghai Where was Bonnie Ladwig born? Milwaukee Where was Imafuji Ch%C5%8Dtatsur%C5%8D born? Tokyo Where was Guo Jinlong born? Nanjing Where was Maude Duncan born? Virginia Where was Stan Fine born? Pittsburgh Where was Zhores Medvedev born? Tbilisi Where was Gael Suares born? France Where was Peter Nyborg born? Gothenburg Where was Julius Goldzier born? Vienna Where was Bill Jennings born? Norwich Where was Louis Gustave Ricard born? Marseille Where was Ephraim Paine born? Canterbury Where was Horatio Bisbee, Jr. born? Canton Where was S%C3%A9bastien Leblanc born? Montreal Where was Tom Lynskey born? Galway Where was DJ Uncle Al born? Miami Where was James Milnor Coit born? Harrisburg Where was Alan Thomson born? Glasgow Where was Slaw Rebchuk born? Winnipeg Where was Ashley Gilbertson born? Australia Where was Timothy Foote born? London Where was Irving Fiske born? Brooklyn Where was Tiziano Maggiolini born? Rome Where was Pat Foote born? Durham Where was Aco Petrović born? Belgrade Where was Endre Csillag born? Budapest Where was Thomas Bottomore born? England Where was Antonio Ciacca born? Germany Where was Chris Heimerdinger born? Indiana Where was Friedrich-August Schack born? Silesia Where was Christian Ferdinand Friedrich Krauss born? Stuttgart Where was Kumar Ponnambalam born? Colombo Where was Lucius Verus born? Rome Where was Neil Zakiewicz born? London Where was Odin Langen born? Minneapolis Where was Mark Howett born? Perth Where was Isaac Green Messec born? Macon Where was Elizabeth Kell born? Sydney Where was Joel Frost born? Carmel Where was Osku Palermaa born? Finland Where was Leopold Casper born? Berlin Where was Andrew Repasky McElhinney born? Philadelphia Where was Bunita Marcus born? Madison Where was Simon James born? York Where was Herbert Postle born? Melbourne Where was Charles Henry Turner born? Wentworth Where was Marc Chervel born? Lille Where was Hans Henrik Løyche born? Copenhagen Where was Terry Eviston born? Dublin Where was Francis Davis born? Philadelphia Where was Sarah Brandner born? Munich Where was Chubb Rock born? Jamaica Where was Francis Ernest Jackson born? Huddersfield Where was MWF born? Memphis Where was John Aspinall born? Liverpool Where was Brendon Sinclair born? Hobart Where was Paul Conway born? Chicago Where was Tarek Momen born? Cairo Where was Maryam Khan born? Manchester Where was Benzion Rakow born? Frankfurt Where was Mark Buchanan born? Cleveland Where was Justine Smethurst born? Melbourne Where was Davide Sorrenti born? Naples Where was Alessandro Frosini born? Siena Where was Bhai Balmukund born? Pakistan Where was Ellen Gulbranson born? Stockholm Where was Richard Bilby born? Tucson Where was Mary Akrivopoulou born? Thessaloniki Where was Scarlett Strallen born? London Where was Athanase Josué Coquerel born? Amsterdam Where was William Samuel Booze born? Baltimore Where was Frederick Fraley born? Philadelphia Where was Giuseppe Sabbatini born? Rome Where was Frederick Hartt born? Boston Where was Edward Fitzharris born? Ireland Where was Felicitas Kuhn born? Vienna Where was Kenny Brannigan born? Glasgow Where was João de Souza Mendes born? Portugal Where was Eugene Tzigane born? Tokyo Where was Gladys Henson born? Dublin Where was David Smith born? London Where was Carl Frederik Waage Beck born? Copenhagen Where was Catherine Vickers born? Regina Where was Alex Figge born? Boulder Where was E. Riley Anderson born? Chattanooga Where was Paul Belmondo born? Algiers Where was Sébastien Roch born? Toulouse Where was John McKay born? Montreal Where was Nahum Slouschz born? Odessa Where was Aigars Vītols born? Riga Where was Richard Bayley born? Fairfield Where was David Bret born? Paris Where was Guerguina Dvoretzka born? Sofia Where was Brendon Lindsay born? Australia Where was Judy Brooke born? Leeds Where was Carlos Sampayo born? Argentina Where was Tino Vegar born? Split Where was Thomas Guthrie Marquis born? Chatham Where was Robert Simpson Woodward born? Rochester Where was H. M. Green born? Sydney Where was Katerina Lemmel born? Nuremberg Where was Carlo Silipo born? Naples Where was Mary Moody Emerson born? Concord Where was Marc Matthews born? Guyana Where was Matthias Bjornlund born? Copenhagen Where was Henry Alfred Todd born? Woodstock Where was Richard Cawley born? Doncaster Where was Michael Halvarson born? Stockholm Where was Kerry Hannon born? Pittsburgh Where was Paul Boyd born? Scotland Where was Yannick Pouliot born? Paris Where was Hasna Xhukiçi born? Albania Where was Karl Chmielewski born? Frankfurt Where was Lawrence Kushner born? Detroit Where was Charles Frodsham born? London Where was William Henry Anderdon born? London Where was Martin Theodore Orne born? Vienna Where was Travis Bowen born? Erie Where was Bruce Hoblitzell born? Louisville Where was John Bridgeman born? Exeter Where was Frank Cole born? Saskatchewan Where was John McHale born? Scotland Where was Niels Bjerrum born? Copenhagen Where was Massimo Mazzucco born? Turin Where was No I.D. born? Chicago Where was J%C3%A9r%C3%B4me Inzerillo born? Marseille Where was Stewart Rawlings Mott born? Flint Where was Roderick Blaker born? Montreal Where was Amir Mohebbian born? Tehran Where was Abel Dimier born? Paris Where was Richard Armstrong born? Leicester Where was Jean Arnault born? France Where was Stephen Gough born? Dublin Where was Mick O'Brien born? Dublin Where was Omar Rezaq born? Lebanon Where was George Pearkes born? Watford Where was Malcolm Margolin born? Boston Where was Dominique Sanson born? Paris Where was Giovanni Battista Verger born? Rome Where was Dylan Taite born? Liverpool Where was Olof Bj%C3%B6rner born? Stockholm Where was Johan Daisne born? Ghent Where was Martin Weston born? Worcester Where was Mathieu Blin born? Paris Where was E. W. Dickes born? London Where was Siamak Hariri born? Bonn Where was Mircea Florian born? Bucharest Where was Kevin Robinson born? Kilkenny Where was Peter Driben born? Boston Where was Kim Ondaatje born? Toronto Where was Antigoni Goni born? Athens Where was Sikander Bakht born? Karachi Where was George Brimley born? Cambridge Where was William Ewart born? Liverpool Where was Pat Nixon born? Nevada Where was Angus Mackay born? Lima Where was Maynard Sinclair born? Belfast Where was Dani Gal born? Jerusalem Where was Robert Holden born? Preston Where was Paweł Zalewski born? Warsaw Where was Michael Carney born? Waterford Where was Donald Appleyard born? England Where was Thomas Tod Stoddart born? Edinburgh Where was Guy De Saint Cyr born? Berlin Where was Adrian Moore born? Nottingham Where was Amélie Mummendey born? Bonn Where was Claire Burch born? Brooklyn Where was Lloyd Youngblood born? Beaumont Where was World population milestones born? Sarajevo Where was Wilhelm Boger born? Stuttgart Where was Raffaele Scalese born? Naples Where was Vittorio Blanseri born? Venice Where was Felipe Alfau born? Barcelona Where was John Blackburn born? Luton Where was Cipriano de Valera born? Seville Where was Charles Collé born? Paris Where was Thierry Ehrmann born? Lyon Where was Alain Dorval born? Algiers Where was Sandrina Malakiano born? Bangkok Where was Romeo Niram born? Romania Where was Leon Dycian born? Poland Where was Mason Cook Darling born? Amherst Where was Bertram Stuart Straus born? Manchester Where was Earle J. Gluck born? Maryland Where was Jonathan B. Barry born? Milwaukee Where was Bernard Leclerc born? France Where was Dominic Dromgoole born? Bristol Where was Stanley Arthur Franklin born? Bow Where was Marc Sangnier born? Paris Where was Leslie Allen born? Chicago Where was Yang Yang born? Beijing Where was Lawrence E. Kahn born? Troy Where was Cornélie Falcon born? Paris Where was Wojciech Rychlik born? Poland Where was Frederick Webb Hodge born? Plymouth Where was Willis Jackson, Baron Jackson of Burnley born? Burnley Where was Diane Carlson Evans born? Minnesota Where was Joseph W. White born? Cambridge Where was Franz Dominic Grassi born? Leipzig Where was Stefano Nolfi born? Rome Where was Ibrahim Diarra born? Paris Where was Jennifer Holliday born? Melbourne Where was Peter Dowdeswell born? London Where was Anna Hegner born? Basel Where was Simon H. Rifkind born? Lithuania Where was Carey Beebe born? Melbourne Where was Wang Nan born? China Where was Eric Ash born? Berlin Where was Alaric Alexander Watts born? London Where was Joseph Isabelle born? Hull Where was Alexander Wilson born? Virginia Where was Jani Golob born? Ljubljana Where was Peyman Hooshmandzadeh born? Tehran Where was Walter Dulaney Addison born? Annapolis Where was Gary Franklin born? Leipzig Where was John Esposito born? Brooklyn Where was Walter Douglas born? Glasgow Where was Denys Page born? Reading Where was Brigitte Peucker born? Germany Where was Francis Williams born? Kingston Where was Alicia Thorgrimsson born? Brandon Where was Tolga Tekinalp born? Turkey Where was Wentworth Arthur Matthew born? Lagos Where was Harry B. Cohen born? Winnipeg Where was Eduardo Lago born? Madrid Where was Sir William Pearce, 2nd Baronet born? Chatham Where was Surinder Khanna born? Delhi Where was Tom Hamilton born? Belfast Where was Stephen Levine born? Albany Where was Gottlieb Bodmer born? Munich Where was Collins J. Seitz born? Wilmington Where was Jaan Arder born? Tallinn Where was Eva Maria Zuk born? Poland Where was Benjamin Enos born? Richmond Where was Richard Anthony born? Cairo Where was Arthur Neal born? Sheffield Where was Jan Kregel born? Texas Where was Henry Lerolle born? Paris Where was Leo Connellan born? Portland Where was Alain Deloche born? Paris Where was Charles Ramsay Arbuthnot born? England Where was Edward Stone Parker born? London Where was Samuel Lancaster Gerry born? Boston Where was Adrian Lombard born? Coventry Where was Lewis Yelland Andrews born? Sydney Where was Jim Boyd born? Philadelphia Where was James Whitworth born? Sheffield Where was Sahara Smith born? Austin Where was Hugues Krafft born? Paris Where was Barbara von Johnson born? Munich Where was Leib Ostrow born? Detroit Where was Chris Vaefaga born? Auckland Where was Henry Neele born? London Where was Buzzy Linhart born? Pittsburgh Where was Worthington Hooker born? Springfield Where was Fred Lecklider born? Toledo Where was Aleksander Żabczyński born? Warsaw Where was Gabriele Castagnola born? Genoa Where was Heather Jones born? Edmonton Where was Wang He born? Beijing Where was Gabrielle de Coignard born? Toulouse Where was David Aiken born? Benton Where was Allison H. Eid born? Spokane Where was Karen Young born? Sheffield Where was Emil Cesar born? Ljubljana Where was Mamta Kharab born? Haryana Where was Christelle Lefranc born? Paris Where was Jimmy Johnson born? Sheffield Where was Emma Ejwertz born? Sweden Where was Justin Hickey born? Sydney Where was Desmond T. Burke born? Ottawa Where was Matthew Mead born? Buckinghamshire Where was Thalia Pellegrini born? London Where was Shyril O'Steen born? Seattle Where was George Vicat Cole born? Portsmouth Where was Peter Sullivan born? Virginia Where was Barys Tasman born? Minsk Where was Vernon Knowles born? Adelaide Where was Paul Streeten born? Austria Where was Gerrit Noordzij born? Rotterdam Where was Aghasi Khanjian born? Van Where was Ignatius Cockshutt born? Bradford Where was Joseph Hislop born? Edinburgh Where was Eli Capilouto born? Alabama Where was Walter Ehrlich born? Berlin Where was Justin Wintle born? London Where was William Walcutt born? Columbus Where was Felix Rottenberg born? Amsterdam Where was Radovan Sloboda born? Bratislava Where was Olaf Rude born? Estonia Where was Charlene McMann born? Chicago Where was James Chalmers born? Elgin Where was Howard Loxton born? Birmingham Where was John Ferguson born? Irvine Where was Bernard Brodie born? Chicago Where was Philip Hershkovitz born? Pittsburgh Where was Philip Jeremiah Schuyler born? Albany Where was Kong Bai Ji born? Shanghai Where was Richard Beckett born? Leeds Where was Marty O'Neill born? Winnipeg Where was Gerard Hemsworth born? London Where was George Hulse born? Liverpool Where was Jack Petticord born? Chicago Where was Sylvia Wynter born? Cuba Where was Doğa Bekleriz born? Istanbul Where was Richard Bohn born? Berlin Where was Chris Pile born? Warwickshire Where was David Hackl born? Toronto Where was Tom Arnold born? London Where was Juan Carlos Zald%C3%ADvar born? Cuba Where was Robert Wayne Thomason born? Tulsa Where was Peter Dembicki born? Vancouver Where was Eduardo Prado Coelho born? Lisbon Where was Paul Hallez born? Lille Where was George Bruce born? Scotland Where was Louisa Stevenson born? Glasgow Where was Robert Moore born? Hamilton Where was Jean Noël Hallé born? Paris Where was Julian Paynter born? Edinburgh Where was Tania Corrigan born? Auckland Where was James Christie born? Perth Where was William Kraft born? Chicago Where was Juan Bautista de Lezana born? Madrid Where was Marcus Tuite born? Dublin Where was Paul Downes born? Devon Where was Eleni Cubitt born? Greece Where was Pieter de Molijn born? England Where was Gustav Bischof born? Nuremberg Where was Wayne Elcock born? Birmingham Where was Elnathan Sweet born? Cheshire Where was Gordon de Lisle Lee born? Aberdeen Where was Fran%C3%A7ois Ozenda born? Marseille Where was Nancy Metz White born? Madison Where was Shane Price born? Melbourne Where was Sir James Grant, 8th Baronet born? Scotland Where was Simone Iannarelli born? Rome Where was John Alfred Cuthbert born? Savannah Where was Edouard Grikurov born? Tbilisi Where was Timothy L. O'Brien born? Illinois Where was John L. Morrison born? Scotland Where was DJ Woody born? Burnley Where was Joshua Newtonn born? Kerala Where was Jeff Chandler born? Philadelphia Where was Godfrey Cripps born? India Where was Samuel von Schmettau born? Berlin Where was Margi Scharff born? Memphis Where was Lance Hayward born? Bermuda Where was Henry Bernard Carpenter born? Dublin Where was Paule Ka born? Lille Where was Rona Hartner born? Bucharest Where was Terry Wardle born? Hereford Where was Ishwardas Rohani born? Karachi Where was Leonard Strong born? Utah Where was Colin Kennedy born? Hamilton Where was Peter Freebody born? Sydney Where was Biff Mitchell born? Toronto Where was Alice Harrison born? London Where was Gabriel Bertrand born? Paris Where was Don Dixon born? Easton Where was Queenie van de Zandt born? Canberra Where was Thomas Playfere born? London Where was Georges Borchardt born? Berlin Where was Carlo Giuseppe Ratti born? Genoa Where was Martin Kosleck born? Pomerania Where was Bernhard Fries born? Heidelberg Where was Reed Hansen born? Orlando Where was Ron Waksman born? Pittsburgh Where was Sir John Borlase, 2nd Baronet born? Buckinghamshire Where was Marjorie Schwarzer born? Boston Where was William L. Ward born? Greenwich Where was Christa Goetsch born? Bonn Where was Robert John born? Birmingham Where was Leonard Bosack born? Pennsylvania Where was Juan Carlos Carbonell born? Santiago Where was Alberto Saichann born? Argentina Where was Gianni Iapichino born? Florence Where was Emmanuel Schelstrate born? Antwerp Where was Arthur William à Beckett born? Fulham Where was Arja Kajermo born? Finland Where was Bob McChesney born? Maryland Where was Petr Kroutil born? Prague Where was Thomas Pole born? Philadelphia Where was Jonathan Hunt born? Massachusetts Where was Albert Richard Pritchard born? Rochester Where was Joe Long born? Elizabeth Where was Gérald Gagnier born? Montreal Where was Vishal Marwaha born? Glasgow Where was Jos%C3%A9 Pou born? Nicaragua Where was Juan Manén born? Barcelona Where was Nazik Saba Yared born? Jerusalem Where was Jean Gallon born? Paris Where was Marga van Praag born? Amsterdam Where was Hiram Pitt Bennet born? Carthage Where was Pierre Joxe born? Paris Where was Hardial Bains born? India Where was Dennis Conta born? Milwaukee Where was Harrie Wood born? Kensington Where was Robert Logan Jack born? Irvine Where was Thomas Ebdon born? Durham Where was Nick Doody born? Morley Where was Salvador Cristau Coll born? Barcelona Where was Jason Hedlesky born? Michigan Where was Michael Guider born? Melbourne Where was Salomon Konijn born? Amsterdam Where was Zdzis%C5%82aw Najder born? Warsaw Where was Francis Dunlavy born? Virginia Where was Csaba Őry born? Budapest Where was Henri Jeanneret born? Switzerland Where was Nicholas Riccardi born? Genoa Where was Raymond Meier born? Switzerland Where was Graham Reilly born? London Where was William Ernest Brymer born? Bath Where was John Philp Thompson, Sr. born? Dallas Where was Anita Vogel born? California Where was Francis Hours born? France Where was Richard E. Council born? Tampa Where was Peter Verhoek born? Auckland Where was Dennis Davis born? Manhattan Where was Lukáš Kándl born? Prague Where was Eliza Stewart Boyd born? Canada Where was Thomas Dausgaard born? Copenhagen Where was James Powell born? Eton Where was Karl Friedrich von Klöden born? Berlin Where was Brad Farrow born? Vancouver Where was Jay Neill born? London Where was Stacy Clark born? Buffalo Where was David Needham born? Leicester Where was Arsen Savadov born? Kiev Where was Simon Binnendijk born? Leiden Where was Alan Davey born? Ipswich Where was Henry W. Lee born? London Where was Alfred Clarke born? Nottingham Where was Paul Varley born? Preston Where was Narado Brown born? Kingston Where was Jarvis Kenrick born? Chichester Where was Dwight Yates born? Montana Where was Anna Barriball born? Plymouth Where was Miriam Slater born? California Where was Mark Alton Barwise born? Chester Where was Dick Stockton born? Philadelphia Where was Jacques d'Agar born? Paris Where was Mohammad Mottahedan born? Iran Where was Scott Tennant born? Detroit Where was Käte Stresemann born? Berlin Where was Laurence Lampert born? Winnipeg Where was Tancrède Dumas born? Italy Where was James Brockway born? Birmingham Where was George Otto Wirz born? Monroe Where was Jeff Simmons born? Seattle Where was Robert Ford born? Devon Where was Artur Zawisza born? Poland Where was Edward Tufnell born? Bath Where was Robbie Regan born? Wales Where was Brent Barraclough born? Canada Where was Diego Delgadillo born? Granada Where was Erwin Lauper born? Bern Where was Charles Amos Cummings born? Boston Where was Chris Christenson born? Norway Where was Irfan Yusuf born? Karachi Where was Mark McCall born? Bangor Where was Charles H. Kraft born? Connecticut Where was Moses Hagiz born? Jerusalem Where was Elemér Terták born? Budapest Where was Haru Mutasa born? Zimbabwe Where was Morten Nordeide Johansen born? Oslo Where was Ana Maria Narti born? Bucharest Where was George P. Merrill born? Auburn Where was Kjersti Elvik born? Bergen Where was Maryem Tollar born? Cairo Where was Phillip Jackson born? Chicago Where was Tony Skabar born? Ukraine Where was Dávid Kovács born? Budapest Where was Monika Meyer born? Berlin Where was Claude Weisz born? Paris Where was Brian O'Riordan born? Dublin Where was Steven Hayward born? Toronto Where was Amy Chance born? Hollywood Where was Matt O'Connor born? Manchester Where was Sam Lynch born? Limerick Where was Kris Lefcoe born? Montreal Where was John Baptist de Faria born? Portugal Where was Federico Fabregat born? Guadalajara Where was Stefan Nystrom born? Sweden Where was Lucine Amara born? Hartford Where was Anna Livia Julian Brawn born? Ireland Where was Joe Zakas born? Chicago Where was John McLaren, Lord McLaren born? Edinburgh Where was David Basnett born? Liverpool Where was James Hamilton born? Paisley Where was Alexander Manning born? Dublin Where was Ornella Oettl Reyes born? Germany Where was Samuel Partridge born? Norwich Where was Aristides Brezina born? Vienna Where was Don Mankiewicz born? Berlin Where was Giorgio de Stefani born? Verona Where was Chafik Charobim born? Cairo Where was Alexander Garden born? Scotland Where was Brandt C. Louie born? Vancouver Where was Gunnar Samuelsson born? Lima Where was Stanley Morgan born? Liverpool Where was Peter Hargitai born? Budapest Where was JJ Horner born? Minnesota Where was Mary MacLeod Banks born? Edinburgh Where was Chris McKhool born? Ottawa Where was Vincent Laforet born? Switzerland Where was Bill Barminski born? Chicago Where was Sharon Duce born? Sheffield Where was Claude Piel born? Paris Where was Herbert James Carter born? Marlborough Where was Charles W. Moorman III born? Cincinnati Where was Hadi Sepehrzad born? Tehran Where was Sam Cosstick born? Croydon Where was Ursula Evje born? Oslo Where was Nasos Thanopoulos born? Athens Where was German Sims Woodhead born? Huddersfield Where was John Keen born? Broadway Where was Harry E. T. Thayer born? Boston Where was Edith Dimock born? Hartford Where was Roland Green born? Victoria Where was Bartle Brennen Bull born? Toronto Where was Daniel O'Mahony born? Croydon Where was Tony Southgate born? Coventry Where was Henry Bocking born? Sheffield Where was John McNamara born? Cambridge Where was Morris Sigman born? Russia Where was Prosper Garnot born? Brest Where was Masataka Yanagida born? Tokyo Where was Bertram Falle, 1st Baron Portsea born? Jersey Where was John Herbert Claiborne born? Virginia Where was Vicente Gómez born? Honduras Where was Luka Grubor born? Zagreb Where was Albert Pratz born? Toronto Where was Enrique Alciati born? Marseille Where was William Schoell born? Manhattan Where was Sarah Mytton Maury born? Liverpool Where was Francis Dunlap Gamewell born? Camden Where was Álvaro Fillol born? Santiago Where was Helen Longworth born? Preston Where was Kip King born? Chicago Where was Riccardo Truccolo born? Italy Where was George E. Waldo born? Brooklyn Where was Jonathan Robinson born? Waterloo Where was Lynne Cooke born? Geelong Where was James Brown born? Blackburn Where was George Kitching born? Guangzhou Where was Rhoda Holmes Nicholls born? Coventry Where was Virginia Leng born? Malta Where was Mark Farmer born? London Where was Frank Frankfort Moore born? Limerick Where was Snorre Valen born? Oslo Where was George Mavrotas born? Athens Where was Marco Napolioni born? Rome Where was Arne Rinnan born? Oslo Where was Maurice Tadadjeu born? Cameroon Where was John Hyacinth Power born? Waterford Where was Lester Spangler born? Brook Where was Robert Moss born? Melbourne Where was Pierre deMorlaix born? France Where was Linda Newell born? Oregon Where was Martin Malvy born? Paris Where was Maurice Vaïsse born? Algiers Where was Arnaldo Faustini born? Rome Where was Nat Patton born? Texas Where was Samuel Dick born? Nottingham Where was Edward Webster Bemis born? Springfield Where was Lew Jetton born? Humboldt Where was Axel Leonard Melander born? Chicago Where was John Mundy born? Manchester Where was Alex Garc%C3%ADa born? Havana Where was Luis Mu%C3%B1oz born? Granada Where was Franz Rosei born? Vienna Where was Tadeusz Browicz born? Lviv Where was Dave Berg born? Portland Where was Dilawar Hussain born? Lahore Where was Herbert Sanders born? Wolverhampton Where was Nico Gardener born? Riga Where was Victor Antoine Signoret born? Paris Where was John B. Foster born? Gloucester Where was Francis Allegra born? Cleveland Where was Wallace Bishop born? Chicago Where was Phil Lucas born? Phoenix Where was Roy Dalgarno born? Melbourne Where was Henry Woods born? Bedford Where was Diana Trask born? Melbourne Where was Alec Briggs born? Sheffield Where was Lynne Kositsky born? Montreal Where was Robert Boughey born? Pennsylvania Where was Cecil Copping born? Lisbon Where was Xavi Vallmajó born? Barcelona Where was Graham Ackerman born? Seattle Where was J.C. Patterson born? Armagh Where was Lawrence Willis born? Lafayette Where was Elizabeth Forbes born? Ottawa Where was Izolda Barudžija born? Split Where was Rolf Schock born? France Where was Joel Lion born? France Where was Jean Baptiste Claude Chatelain born? Paris Where was Alejandro Rossi born? Florence Where was Peter Hoover born? Canada Where was John Raven born? Cambridge Where was Alex González born? Miami Where was John Smyth born? Ireland Where was Gabriel Desjardins born? Montreal Where was Abhijit Kunte born? Pune Where was Mark Koevermans born? Rotterdam Where was Espen Giljane born? Oslo Where was William Harrison Courtney born? Baltimore Where was David Mercer born? Swansea Where was Princess Bee born? Italy Where was Jeffrey H. Cohen born? Brooklyn Where was Charles Alford born? Somerset Where was Andrew Crofts born? England Where was Marcus Tsutakawa born? Seattle Where was Ken Fowler born? Fargo Where was Henry Robertson Hartley born? Southampton Where was Mark Cooksey born? England Where was Janet Coster born? London Where was Sun Lingfeng born? China Where was Ed Pizunski born? Toronto Where was Grant McNally born? Vancouver Where was Edward Locke born? England Where was Zsolt Hamar born? Budapest Where was Murray McEachern born? Toronto Where was Aboubacar Sankhare born? France Where was David Marusek born? Buffalo Where was Liljana Lu%C4%8Di%C4%87 born? Belgrade Where was Enrico Toselli born? Florence Where was Walter Bowers Pillsbury born? Burlington Where was John Butts born? Cork Where was John Cobbett born? Edinburgh Where was Minas Gekos born? Constantinople Where was Andrew Patterson born? Belfast Where was Alexander Ferdinand von der Goltz born? Prussia Where was Paul Keenan born? Lisbon Where was Barry Howard born? Nottingham Where was Mary Ann Kennedy born? Glasgow Where was Bruno Arpaia born? Naples Where was Simone Orlando born? Vancouver Where was Jazzy Jay born? Beaufort Where was Binem Heller born? Warsaw Where was Olivia Poulet born? London Where was Christoph M. Schmidt born? Canberra Where was Siamak Shayeghi born? Iran Where was Mike Shank born? Columbus Where was Spiro Zavos born? Wellington Where was Tommie Lindsey born? Oakland Where was Aneesh Kapil born? Wolverhampton Where was Bijoy Goswami born? Bangalore Where was Henry Beecher Dierdorff born? Seville Where was Samuel Barton born? Virginia Where was John Augustus Stone born? Concord Where was Thomas Rickner born? Rochester Where was Max Coyer born? Hartford Where was Serge Losique born? Yugoslavia Where was John B. Snook born? England Where was Bódog Török born? Budapest Where was Lawrence Townsend born? Philadelphia Where was Abdou Cherif born? Casablanca Where was Joseph Paul Cretzer born? Minneapolis Where was Gregory V. Palmer born? Philadelphia Where was Nathaniel Culverwell born? Middlesex Where was John Friedrich born? California Where was Jean Trembley born? Geneva Where was Giuseppe Simonelli born? Naples Where was John Warrock born? Richmond Where was Antonietta Pastori born? Milan Where was Dhyanyogi Madhusudandas born? Bihar Where was Hiba Daniel born? Lebanon Where was Jacob Murey born? Moscow Where was Emmy Verhey born? Amsterdam Where was Alain Ehrenberg born? Paris Where was Santiago I%C3%B1iguez de Onzo%C3%B1o born? Madrid Where was Aleksandra Romanić born? Zagreb Where was Gayathri Mudigonda born? India Where was Robert E. Wright born? Rochester Where was Thomas Nassi born? Albania Where was Emanuel Brouwer born? Amsterdam Where was Tariq Hashim born? Baghdad Where was David Lake born? Bangalore Where was Frederick Ellsworth Mather born? Windsor Where was Tim Davis born? Milwaukee Where was Howard Griffiths born? Swansea Where was Edward Raymond Neaher born? Brooklyn Where was John Chillag born? Vienna Where was Rich Meyer born? Cincinnati Where was Neil Rackham born? England Where was G%C3%B6khan Bozkaya born? Germany Where was Martin Kratochvíl born? Prague Where was Gaspard Terrasson born? Lyon Where was George Mudie born? Edinburgh Where was Joseph Wilhelm Swoboda born? Prague Where was John Metcalfe born? Wellington Where was Tim Long born? Brandon Where was Gonzalo Pieres, Sr. born? Argentina Where was Donald Kalish born? Chicago Where was Vladimir Georgiev born? Sofia Where was Yu Huili born? Sichuan Where was Alexandra Mazur born? Moscow Where was Nicole Hackett born? Sydney Where was Carl Ludwig Brandt born? Holstein Where was Aida Schlaepfer born? Baghdad Where was Amy Neftzger born? Illinois Where was Samuel Bourn the Elder born? Derby Where was Hans Reiche born? Berlin Where was Berthold Weisz born? Budapest Where was Marcia Gygli King born? Cleveland Where was Edmund Hobhouse born? London Where was Frederick Lewis Allen born? Boston Where was Alice Robie Resnick born? Erie Where was Philip Sington born? Cambridge Where was Nick Conrad born? Norwich Where was Anastasius I born? Rome Where was Ernst Friedrich born? Paris Where was Roy Sekoff born? Miami Where was Samuel Rickard Christophers born? Liverpool Where was David Schnitter born? Newark Where was Jamie Moses born? Ipswich Where was Takeshi Maeda born? Tokyo Where was Brian Plummer born? Saskatchewan Where was Joseph R. Chenelly born? Rochester Where was Brian Faloon born? Belfast Where was Antonio Tosti born? Rome Where was Mehmet Ali İrtemçelik born? Istanbul Where was Dmitry Grigorieff born? London Where was Adolphe Cohn born? Paris Where was Alexander Hangerli born? Istanbul Where was Lorne Rubenstein born? Toronto Where was Flemming Lassen born? Copenhagen Where was James O'Mara born? Limerick Where was Davis Gaines born? Orlando Where was Donald W. Steinmetz born? Milwaukee Where was Crist%C3%B3bal de Aguilar born? Lima Where was Rüdiger Frank born? Leipzig Where was Edward Romilly born? London Where was Essie Sakhai born? Iran Where was Francis W. Cushman born? Brighton Where was Ursula Hoff born? London Where was Carol Klimpel born? Ontario Where was Alec Statham born? Coventry Where was Marianne Peretti born? Paris Where was Matteo Barzini born? Rome Where was Alejandro Abellan born? Ottawa Where was Douglas Simpson born? Glasgow Where was Andrea Lekić born? Belgrade Where was Danny Roxo born? Portugal Where was Tommy Waidelich born? Stockholm Where was Hazard E. Reeves born? Baltimore Where was Crystal Mangum born? Durham Where was Andrea Giani born? Naples Where was Clive Gee born? Ireland Where was Vincent A. Mahler born? Chicago Where was John Hawthorne born? Sydney Where was Miryana Ivanova Basheva born? Sofia Where was Mordehai Dubin born? Riga Where was Matthew Hall McAllister born? Savannah Where was Thomas Morland born? Montreal Where was Leigh Diffey born? Brisbane Where was Yuan Yufang born? Beijing Where was Shahin Afrassiabi born? Tehran Where was Klaus Röder born? Stuttgart Where was Eric Swinkels born? Best Where was Henry Hiles born? Shrewsbury Where was Gottfried Heinrich Bach born? Leipzig Where was Silke Bodenbender born? Bonn Where was Frank Kaderabek born? Chicago Where was Ian Steel born? Glasgow Where was Ebbe Hamerik born? Copenhagen Where was Robert Lecou born? Paris Where was William Child born? Bristol Where was Edwin Edgar Voigt born? Illinois Where was Tony Kaldas born? Cairo Where was Silvana Cruciata born? Naples Where was Ernest Luxembourg Wright born? Massachusetts Where was Vivion de Valera born? Dublin Where was Francis Montague Holl born? London Where was Miguel García García born? Barcelona Where was Charles Marston born? Wolverhampton Where was Barry Upton born? Hastings Where was Dave Hilton born? England Where was Caleb H. Baumes born? Bethlehem Where was William Gifford Palgrave born? Westminster Where was Hugh Fraser, 1st Baron Fraser of Allander born? Glasgow Where was Matthew Taylor born? Miami Where was Ed Rossbach born? Chicago Where was Augusto De Marsanich born? Rome Where was František Neuwirt born? Prague Where was John Myres born? Preston Where was John Marshall Evans born? Virginia Where was Chad Hartigan born? Cyprus Where was Henry Bentley born? Westminster Where was Manuel Su%C3%A1rez %C3%81vila born? Trinidad Where was Juris Sokolovskis born? Riga Where was Tommy Rustad born? Oslo Where was Rick Holbrook born? Chicago Where was Allan Stewart born? Edinburgh Where was Stephen Codman born? Norwich Where was John Arneil born? India Where was Tomislav Smoljanović born? Split Where was Claire Ritter born? Charlotte Where was Dino Wells born? Chicago Where was Eric Robson born? Scotland Where was Herbert J. Davenport born? Vermont Where was Dave Wood born? Manchester Where was Rob Shelby born? Detroit Where was Jennifer Smith born? Lisbon Where was Mike Peden born? Edinburgh Where was Richard Collins, Baron Collins born? Dublin Where was Alonso del Arco born? Madrid Where was Ömer Kaner born? Istanbul Where was Davor Sučić born? Sarajevo Where was Pa Neumüller born? Stockholm Where was Jeremiah H. Pierson born? Newark Where was Walter Elliot born? Edinburgh Where was Brent Rickles born? London Where was John Mahaffy born? Montreal Where was Sofia Scalchi born? Turin Where was Petra Krug born? Dresden Where was Theron R. Strong born? Salisbury Where was Sathyabhama Das Biju born? Kerala Where was Petar %C4%8Culi%C4%87 born? Split Where was Lev Leshchenko born? Moscow Where was Jesper Nordin born? Stockholm Where was Martin Henriksson born? Sweden Where was John Chester Buttre born? Auburn Where was Henry Duckworth born? Brandon Where was Kaoru Kakudo born? Japan Where was Antony Cooke born? Sydney Where was Michel Dovaz born? Geneva Where was Ingrid Eide born? Oslo Where was Constantinos Decavallas born? Athens Where was Thomas Reeve born? Langley Where was Jörgen Dafgård born? Gothenburg Where was Shiva Boloorian born? Tehran Where was Georgina Kennard born? Edinburgh Where was Alexandre Desgoffe born? Paris Where was Olaf Poulsen born? Oslo Where was Andrew Bell born? London Where was Jack Curtner born? Greenville Where was Rafael Garzón Rodríguez born? Granada Where was Louis Joseph Coralie born? Mauritius Where was Carlo Fatuzzo born? Genoa Where was Ernest E. Wood born? Chico Where was Robb Gravett born? London Where was Anton Altmann born? Vienna Where was Réginald Bernut born? Sydney Where was Henry Hudson Kitson born? Huddersfield Where was Frank P. Incropera born? Lawrence Where was Martin Wright born? Germany Where was Rose Prince born? England Where was William Doan born? Maine Where was Stanis%C5%82awa Nowicka born? Warsaw Where was Énemond Massé born? Lyon Where was Károly Varga born? Budapest Where was David J. Eicher born? Oxford Where was Richard Corbould born? London Where was Ethan Mordden born? Pennsylvania Where was Thomas Adams born? London Where was Staffan de Mistura born? Sweden Where was Françoise Claustre born? Paris Where was Alejandro Colina born? Caracas Where was Virginio Colombo born? Milan Where was Franco Gentilesca born? Brooklyn Where was Mehran Khaghani born? London Where was Zhang Lei born? Nanjing Where was Desi Williams born? London Where was Robert McCrindle born? Glasgow Where was Christopher Benfield Carter born? Montreal Where was Edward Isaac Ezra born? Shanghai Where was Steve Free born? Portsmouth Where was Charles Reynolds Brown born? Bethany Where was Simon Cooke born? Manchester Where was Conyers Middleton born? Richmond Where was Bo Weavil Jackson born? Birmingham Where was Kay Lahusen born? Cincinnati Where was John O'Keefe born? Waterloo Where was Jamal Jumá born? Baghdad Where was Anwar Khan born? Karachi Where was Laurence Stallings born? Macon Where was Rick Lawson born? Raymond Where was Diego Francisco Altamirano born? Madrid Where was Eric Aarons born? Sydney Where was Charles Dixon born? London Where was Johann Christoph Friedrich Klug born? Berlin Where was Edwin Grant Dexter born? Calais Where was Arthur Napoleão dos Santos born? Porto Where was Edgar Sydney Little born? London Where was Cedric Myton born? Jamaica Where was Robert Jankel born? London Where was Jacqueline Carey born? Cambridge Where was William Presser born? Michigan Where was Natallia Helakh born? Brest Where was Yvette Higgins born? Sydney Where was Clement Payne born? Trinidad Where was Dragoș Neagu born? Bucharest Where was Theodore Augustine Mann born? Yorkshire Where was Lloyd Turner born? Australia Where was Louise Christian born? Oxford Where was Silas Bowker born? Concord Where was Penny Lernoux born? California Where was Serge Postigo born? France Where was Mary Lou Munts born? Chicago Where was Mitra Tabrizian born? Tehran Where was Zeng Fanyi born? Shanghai Where was Rani Price born? Liverpool Where was Lorne Resnick born? Toronto Where was Fabrizio Marrella born? Venice Where was Mónica Estarreado born? Madrid Where was Catherine Wellesley, Duchess of Wellington born? Dublin Where was Oliver Lieb born? Frankfurt Where was Jennifer Clulow born? Grimsby Where was Regina Sarfaty born? Rochester Where was William C. Clark born? Greenwich Where was Léonce Alloy born? Paris Where was W. T. Pfefferle born? Hamilton Where was Torgeir Micaelsen born? Bergen Where was Joseph Bennett born? Grimsby Where was Frederick Gunton born? Norwich Where was Zoran Popovich born? Akron Where was Ángel Garma born? Spain Where was Pernille Rose Gr%C3%B8nkj%C3%A6r born? Denmark Where was Mohammed Loay Bayazid born? Syria Where was Graph Nobel born? Toronto Where was Robert van der Zant born? Queensland Where was Edward Duyker born? Melbourne Where was Boris Grushin born? Moscow Where was Sumalee Montano born? Columbus Where was Juan Alfon born? Toledo Where was Claude Bourgelat born? Lyon Where was Henri de Contenson born? Paris Where was Morton Estrin born? Burlington Where was Yasir Butt born? Lahore Where was Carlo Emery born? Naples Where was Magnus Rosén born? Gothenburg Where was Alan Aboud born? Dublin Where was Zoltan Kósz born? Budapest Where was Alistair Elliot born? Liverpool Where was George Fisher born? Franklin Where was Cleve Chaffin born? Kentucky Where was Sal Cannella born? Newark Where was Sherry Kramer born? Springfield Where was Hendrick Andriessen born? Antwerp Where was Carl Herman Kraeling born? Brooklyn Where was Adolphus Drucker born? Amsterdam Where was Eileen O'Keeffe born? Kilkenny Where was Deyan Vatchkov born? Sofia Where was André Léri born? Paris Where was Nicolás Antonio de Arredondo born? Madrid Where was Aaron of Lincoln born? Lincoln Where was Martin Jervan born? Tallinn Where was Pankaj Dharmani born? Delhi Where was Nick Dranias born? Chicago Where was John Abram born? England Where was Laurent Petitguillaume born? Tours Where was Walter J. Mahoney born? Buffalo Where was William Buik born? Dundee Where was Frank J. Webb born? Philadelphia Where was William Garnett born? London Where was Sylvester Ahola born? Gloucester Where was Petras Geniušas born? Vilnius Where was Joy Katz born? Newark Where was Michael Khodarkovsky born? Odessa Where was Arthur N. Martin born? Toronto Where was Shibley Telhami born? Israel Where was Jim Berry born? Oklahoma Where was Joshua Toulmin Smith born? Birmingham Where was Alain Boire born? Montreal Where was Yash Daryanani born? Chennai Where was Marty Radovanic born? Cleveland Where was Sara Badr born? Cairo Where was Norbert Wissing born? Amsterdam Where was Sergey Kozlov born? Moscow Where was Michael Armstrong born? France Where was Charles Crawford born? Nashville Where was Luděk Frýbort born? Prague Where was Frédéric Durieux born? Paris Where was Fabian Francis born? Darwin Where was Jan Szyszko born? Warsaw Where was Nathalie De Vos born? Ghent Where was George Stone born? Fulham Where was Andy King born? Vancouver Where was John Randall Reding born? Portsmouth Where was Peter F. Donnelly born? Lynn Where was Anton Foljambe born? Christchurch Where was Bertie Felstead born? London Where was Mary Cecil Allen born? Melbourne Where was Kazimierz Flatau born? Warsaw Where was Edward Schoeneck born? Syracuse Where was Neal Peters McCurn born? Syracuse Where was Alan MacDonald born? Watford Where was Alby Why born? Sydney Where was Ben Nicholas born? Adelaide Where was Michelle Rogers born? Salford Where was Mark Gosling born? Birmingham Where was Michel Frutschi born? Geneva Where was Graham Doyle born? Dublin Where was Anne Audain born? Auckland Where was Eugene A. Toepel born? Bangor Where was Benjamin Castleman born? Everett Where was Harry W. Wellford born? Memphis Where was Albertus Jonas Brandt born? Amsterdam Where was Victor Krasin born? Kiev Where was Omar Abdel Aziz born? Cairo Where was Joe Ascione born? Brooklyn Where was Liam McMahon born? Ireland Where was Martin Firrell born? France Where was Ignacio Matte Blanco born? Santiago Where was Marc Hostert born? Luxembourg Where was Tom Kazas born? Sydney Where was Michael Brennan born? Sydney Where was Clinton D. McKinnon born? Dallas Where was Ronnie Le Drew born? Toronto Where was Simon Gerada born? Melbourne Where was Michael Greco born? Dunbar Where was James Travers born? Hamilton Where was Carol Graham born? Lima Where was Valli Valli born? Berlin Where was Francis Asbury Baker born? Baltimore Where was Rafael E. Martinez born? Cuba Where was Arthur Barnett born? Dunedin Where was Antonia Okonma born? London Where was Noush Skaugen born? Sweden Where was Roger Mears born? Wichita Where was Martin Gero born? Switzerland Where was John Duncombe born? London Where was Chris Welsby born? Exeter Where was Harry Freedman born? London Where was Bobby McDonald born? Aberdeen Where was Thomas Scott born? Pennsylvania Where was Luca Princiotta born? Como Where was Christine Melnick born? Winnipeg Where was Philippa Perry born? Warrington Where was Thomas Webley born? Bristol Where was Luigi Attademo born? Naples Where was Karolina Kosińska born? Warsaw Where was Jacques Autreau born? Paris Where was Werner Ploberger born? Vienna Where was Ephraim Hertzano born? Romania Where was Thomas Davidson born? Nottingham Where was Eileen Beldon born? Bradford Where was Edward Alfred Cowper born? London Where was John Tierney born? Derry Where was Norman Macdonnell born? Pasadena Where was Heinrich Hirschsprung born? Copenhagen Where was David Vaughan born? London Where was Gregory Woods born? Egypt Where was Symeon Cosburn born? London Where was Joanne Fox born? Melbourne Where was Federico Cervelli born? Milan Where was Al Lerner born? Cleveland Where was Rowley Leigh born? Manchester Where was Parvaz Mirza born? Birmingham Where was Mark Mitchell born? Auckland Where was Stuart Pearson Wright born? Northampton Where was Brett Warton born? Sydney Where was Fredrik Liliegren born? Lund Where was Gottlob Christian Storr born? Stuttgart Where was Donovan Blake born? Jamaica Where was Paula Malai Ali born? Brunei Where was Joe Zakas born? Illinois Where was Jason Colwell born? Dublin Where was Joachim Martin Falbe born? Berlin Where was Malcolm Cecil born? London Where was Lawrence Cherney born? Peterborough Where was Morris Schwartz born? Russia Where was Burkey Belser born? Columbia Where was Carly Milne born? Edmonton Where was Bill Utterback born? Illinois Where was Marcello Vernola born? Bari Where was Barbara Clark born? Alberta Where was Joseph Beer born? Bohemia Where was Humphrey Hopkin born? Nottingham Where was Albert Vizentini born? Paris Where was Herbert Bowden, Baron Aylestone born? Cardiff Where was Enid Bibby born? Sheffield Where was Chris Lyttle born? Belfast Where was Émile Lévy born? Paris Where was Freddy Marshall born? Caracas Where was Theodore G. Garfield born? Humboldt Where was Cathy Sisler born? Wisconsin Where was Rusty Egan born? London Where was Otto Mainzer born? Frankfurt Where was Françoise Romand born? Marseille Where was Iraj Kalantari Taleghani born? Tehran Where was Helen Thomas Dranga born? Oxford Where was Li Lei born? China Where was Randolph Runnels born? Texas Where was Jeremy Current born? Charlotte Where was Fuat Güner born? Istanbul Where was William Reed born? Montreal Where was Arthur Anae born? Fiji Where was Jacques Cartier born? Quebec Where was Alexander Yossifov born? Sofia Where was Alireza Sheikhattar born? Tehran Where was Martin Brown born? Melbourne Where was Victoria LePage born? Melbourne Where was Nabil Seidah born? Egypt Where was James Macdonald born? Aberdeen Where was Nigel Preston born? London Where was William Hardy born? Jamaica Where was Richard S. Whaley born? Charleston Where was Cillian Vallely born? Armagh Where was Alfred Darjou born? Paris Where was Medo Martinello born? Windsor Where was Georges Hanna Sabbagh born? Alexandria Where was David Lister born? Grimsby Where was Ely Devons born? Bangor Where was Kim Kuusi born? Helsinki Where was Marek Muszyński born? Lublin Where was Peter Gregg born? Kent Where was Robin Hofman born? Rotterdam Where was Rufus Phillips born? Virginia Where was John Wainwright born? Australia Where was Eugène Brieux born? Paris Where was Alexander Randall born? Annapolis Where was Hubert Buchberger born? Frankfurt Where was Margaret Gwenver born? Wilmington Where was Donald B. Cole born? Lawrence Where was Paul Pope born? Philadelphia Where was Rem Urasin born? Kazan Where was Franz Ludwig Catel born? Berlin Where was Samuel Löw Brill born? Budapest Where was Lene B%C3%B8rglum born? Denmark Where was Andrea Gallandi born? Venice Where was Thomas Elliot Bowman III born? Brooklyn Where was Thomas R. Fitzgerald born? Chicago Where was Thomas Taylor born? London Where was Peter Cooper born? Salisbury Where was Jimmy Greenspoon born? California Where was Alessio Secco born? Turin Where was Arnold Zable born? Wellington Where was Robert Bourne born? London Where was Edmund Fetting born? Warsaw Where was Johan Reuter born? Copenhagen Where was William Keasberry born? London Where was John Norton Pomeroy born? Rochester Where was Nadia Jebril born? Sweden Where was Ryan Burr born? Pennsylvania Where was Francesco Musotto born? Palermo Where was Martin Vari born? Argentina Where was Carlos Cosías born? Barcelona Where was Barrie Thorne born? Utah Where was Kate Richardson born? Melbourne Where was Hyman I. Goldstein born? Baltimore Where was Pierre Cartellier born? Paris Where was Lucius Vibullius Hipparchus born? Athens Where was Kemal Alispahić born? Sarajevo Where was Serge Collot born? Paris Where was Carl Strehl born? Berlin Where was Michael E. Driscoll born? Syracuse Where was J%C3%B8rgen Sigurd Lien born? Bergen Where was Debra A. Kemp born? Highland Where was Ralph Schoenman born? Brooklyn Where was Gerrard Wendell Haworth born? Nebraska Where was Marion Stein born? Vienna Where was Maurice Maunoury born? Alexandria Where was Valdo Spini born? Florence Where was Peter Stetina born? Boulder Where was Tim McGill born? Chicago Where was Michael Colgrass born? Chicago Where was Vlad Georgescu born? Bucharest Where was Neil Williams born? Canada Where was Diego Carranza born? Mexico Where was Augustus A. Bird born? Vermont Where was Gloria Mann born? Philadelphia Where was Orsamus B. Matteson born? Verona Where was Lars Jonsson born? Gothenburg Where was Abraham Garton born? Spain Where was Erik Dammann born? Oslo Where was Samuel S. Adams born? Lincoln Where was Laurent Boyer born? Paris Where was Michael Raedecker born? Amsterdam Where was Robin Gillett born? London Where was Gordon Coppuck born? Fleet Where was Marilyn Shrude born? Chicago Where was Regina Maršíková born? Prague Where was Stanley Sporkin born? Philadelphia Where was Juan Carlos González Zamora born? Cuba Where was Salvatore Sabella born? Sicily Where was Gosia Piotrowska born? Poland Where was Manola Saavedra born? Spain Where was John Owens born? Manchester Where was Barbara Strass born? Vienna Where was Jacques Benedict born? Chicago Where was %C3%81lvarez de Paz born? Toledo Where was Andrzej Kunert born? Warsaw Where was John Molyneux born? Warrington Where was Maggie Fitzgibbon born? Melbourne Where was Bruce Metcalf born? Amherst Where was Janet Ramsey Johnson born? Adelaide Where was Ien Ang born? Java ================================================ FILE: a5/birth_test_inputs.tsv ================================================ Where was Adam Bright born? Where was Alan Hess born? Where was Jacob Guptil Fletcher born? Where was Hisham Mohd Ashour born? Where was Toby Cockerell born? Where was Gordon Copley born? Where was Elie Rekhess born? Where was Bert Ruiter born? Where was Guillaume Couture born? Where was Jack Smooth born? Where was Rodney Cocks born? Where was Kirsten Wenzel born? Where was Miles Crowley born? Where was Anne Clark born? Where was Jack Garland born? Where was Elsa Rastad Bråten born? Where was Timothy Hoven born? Where was James Mortimer born? Where was Robert Burns born? Where was Sebastian Dacey born? Where was Marc Spackman born? Where was Leopold Wenzel born? Where was Avner W. Less born? Where was Thibaut de Reimpré born? Where was Rodney de Gruchy born? Where was Matt Berg born? Where was Thomas Blaikie born? Where was Samuele Levi born? Where was Charles Gilchrist Adams born? Where was Alan Littlejohn born? Where was Warren Spears born? Where was William Egley born? Where was Richard Ashrowan born? Where was Nyncke Beekhuyzen born? Where was Edwin Milton Abbott born? Where was Robert Samuel Ross born? Where was William Atherton born? Where was Richard Armiger born? Where was Siri Hall Arnøy born? Where was Keith Haynes born? Where was Kevin Burdette born? Where was Eran Groumi born? Where was Billy Treacy born? Where was Abbondio Sangiorgio born? Where was Richard Leigh born? Where was Adrienn Bende born? Where was Russell Taylor born? Where was Antoine Verglas born? Where was Orhan Demir born? Where was Thomas B. Sheridan born? Where was Heather Davis born? Where was Alisa Arnah born? Where was Marco Glaviano born? Where was Jaime Vallvé born? Where was Crowther Charlesworth born? Where was Marc Van Montagu born? Where was Neville Maxwell born? Where was René Théodore Berthon born? Where was Ha Sinan born? Where was Wendy White born? Where was Peter R%C3%B6sel born? Where was Bernard Lloyd born? Where was Fernando Lima Bello born? Where was John Thomas Rochead born? Where was Aaron Cleveland born? Where was Elena Lev born? Where was Mamta Baruah Herland born? Where was Edward Kavanagh born? Where was Matthew Walker born? Where was Shahan Shahnour born? Where was Bruno Campanella born? Where was Armen Ayvazyan born? Where was Scott Ambush born? Where was David Hamill born? Where was Drew Holcomb born? Where was Albert Heinrich Brendel born? Where was Henry Weekes born? Where was Homer Curran born? Where was Ian Prosser born? Where was Claire Baxter born? Where was Rose Prince born? Where was Carl R. Chindblom born? Where was Jules de Gaultier born? Where was William Garland McQuarrie born? Where was Robert Hetzron born? Where was Brian Fairlie born? Where was Fulvio Ballabio born? Where was Diarmuid Scully born? Where was C. Martin Wilbur born? Where was Iren Marik born? Where was Torraye Braggs born? Where was Johanna Meier born? Where was Giuseppe Giulietti born? Where was Peter Lachmann born? Where was Mirosław Maliszewski born? Where was Fred M. Hechinger born? Where was Adam Mamawala born? Where was Richard Hudson born? Where was Mir Khasim Ali born? Where was Giacomo Gaggini born? Where was Jerry Pettis born? Where was Joshua Watson born? Where was Roland Kitson, 3rd Baron Airedale born? Where was Zak Carr born? Where was Pierre Roland born? Where was Luke Bullen born? Where was Edward Brotherton born? Where was Koichi Morita born? Where was Jon Cone born? Where was Alicia Plaza born? Where was Albert Rudomine born? Where was Winifred Nicholson born? Where was George Brunner born? Where was Hamilton Ward, Sr. born? Where was Oliver Lanard Fassig born? Where was Ira Vail born? Where was Magdaléna Hajóssyová born? Where was Emilio De Fabris born? Where was Michel Bellemare born? Where was John Littleton and Kate Vogel born? Where was Reginald Brett, 2nd Viscount Esher born? Where was Alison Waters born? Where was Deepa Kaul born? Where was Sophia Morrison born? Where was S%C3%A9bastien Denis born? Where was Joan Backes born? Where was Robert E. Hopkins born? Where was Shlomo Wolbe born? Where was Knut Walbye born? Where was John P. Allen born? Where was Priya Thomas born? Where was Jerzy Adamuszek born? Where was Stephen Gould born? Where was Nadia Zaffar born? Where was Nick Karner born? Where was Martin Emerich born? Where was Paul Peterson born? Where was Erick Noubissie born? Where was Patrice Roy born? Where was O'Chi Brown born? Where was Jennifer Huppert born? Where was Nicolas Moreton born? Where was John Chorlton born? Where was Lynda Blutreich born? Where was William F. Brown born? Where was Gabriel Caruana born? Where was Leo C. Zeferetti born? Where was Samuel Forde born? Where was Stephanie Reaves born? Where was Lovro Artukovi%C4%87 born? Where was Edward Stotz born? Where was Otto Eugen Schulz born? Where was J. B. Jackson born? Where was Tara Brabazon born? Where was Lavrenti Ardaziani born? Where was Frank R. Reid born? Where was Murray Fraser born? Where was Azman bin Abdullah born? Where was Wolfgang Baur born? Where was Oleg Strizhakov born? Where was Nick Taylor born? Where was Publius Annius Florus born? Where was Calvin Fairbank born? Where was John Donaldson born? Where was Seymour Cocks born? Where was Peter Bladen born? Where was Charles Mickle born? Where was Verna Allee born? Where was Scott W. Skavdahl born? Where was Martine Roure born? Where was Alan Clayson born? Where was Robin McNamara born? Where was Michele Pace del Campidoglio born? Where was Uche Okeke born? Where was Satnam Rana born? Where was Percy Elland born? Where was George Glas born? Where was Jerzy Jan Lerski born? Where was Truman A. Merriman born? Where was John Darwall born? Where was Wendell White born? Where was Borah Bergman born? Where was Claude Couture born? Where was Robert Allen born? Where was Tazewell Ellett born? Where was Richard Sheepshanks born? Where was Bedük born? Where was Jonathan Hazard born? Where was Ajit Ninan born? Where was Gilles Latulippe born? Where was Pierce Galliard Smith born? Where was James Kinlay born? Where was Aytaç Biter born? Where was Richard Rood born? Where was Balthazar Armas born? Where was Mohammed Wali Zazi born? Where was Bob Rockwell born? Where was Louis Antonelli born? Where was Susan Krieg born? Where was Michael Matus born? Where was Mohammad Aslam born? Where was Bahar Movahed Bashiri born? Where was Daniel Chapman Stillson born? Where was Erich Werdermann born? Where was Charles Mayo born? Where was Leon Athanese Gosselin born? Where was Rosario Marciano born? Where was Hannan Sarkar born? Where was Simon Bowman born? Where was John Lewis Thomas born? Where was Seth Lipsky born? Where was Elizabeth Hess born? Where was Susan Oki Mollway born? Where was Judy Dunaway born? Where was John Hindle born? Where was Serenus the Gardener born? Where was Dean Sullivan born? Where was Aarne Ruben born? Where was Samuel Campbell born? Where was Nabil Kanso born? Where was Kurt Hitke born? Where was Charles Hastings Doyle born? Where was Gyles Brandreth born? Where was Gérard Granel born? Where was Javed Akhtar born? Where was Emilio Menéndez born? Where was Ghulam Abbas born? Where was John Allen Gable born? Where was Leon Bass born? Where was Anna Akhsharumova born? Where was Thomas Francis Brennan born? Where was Martin I. Townsend born? Where was Marisa Masullo born? Where was Rachel Annand Taylor born? Where was Mark Michalowski born? Where was Yisroel Meir Gabbai born? Where was Bill Endicott born? Where was Alexander Whitaker born? Where was Hayden Turner born? Where was Gus Menos born? Where was Maria Rose born? Where was Norbert Francis Attard born? Where was Elijah Wadsworth born? Where was Pasquale Conte born? Where was Tom Maniatis born? Where was Donald McGauchie born? Where was François Maspero born? Where was Bruce Pennington born? Where was John Baptist Collins born? Where was John Eaton born? Where was Gail Sidonie Sobat born? Where was Tommaso Marconi born? Where was Virginio Ferrari born? Where was Stephen K. Benjamin born? Where was Felix von Kraus born? Where was Johnny Kemp born? Where was Loredana Errore born? Where was Konstantine Vardzelashvili born? Where was Moritz Wilhelm Drobisch born? Where was Pierre Henri Joseph Baume born? Where was Linda Crockett born? Where was Elsa Lunghini born? Where was Janil Puthucheary born? Where was Luciano Caruso born? Where was Matteo Barbini born? Where was Donald Steven born? Where was Gord Simpson born? Where was François Lehideux born? Where was Geoffrey Alderman born? Where was Karl Sarafidis born? Where was Béla Glattfelder born? Where was Samuel Magaw born? Where was Gary Callander born? Where was Craig Richards born? Where was Mohammed A. Aldouri born? Where was Rich McNanna born? Where was Marcel Faribault born? Where was Adolf Patera born? Where was Auguste Georges Darzens born? Where was Ivan Triesault born? Where was Tom Arnold born? Where was Ernest Kent Coulter born? Where was Mary Scott born? Where was Edmundo Farolan born? Where was Lyndsey Rodrigues born? Where was Kelly Hardie born? Where was A. H. Raskin born? Where was Ammar Eloueini born? Where was Ross Batty born? Where was Christopher Manson born? Where was Jane Stanford born? Where was Leonard D. Wexler born? Where was George Zarkadakis born? Where was Moira von Wright born? Where was William Baldé born? Where was Lisa Kindred born? Where was Walter Carringer born? Where was Augusto Huaman Velasco born? Where was Warren Carlyle born? Where was Joe Warham born? Where was Michael Prince born? Where was Mischa Hiller born? Where was Anton Muscatelli born? Where was Didier André born? Where was George Rothera born? Where was Monica Groop born? Where was Lo%C3%AFc Jouannigot born? Where was Keith Wiggins born? Where was Thomas Y. Howe, Jr. born? Where was Steve Miller born? Where was Geno Arce born? Where was Andy Buist born? Where was Todd Jay Weinstein born? Where was Thomas McGreevy born? Where was Martin Zobel born? Where was Keppel Harcourt Barnard born? Where was Bill Kaiserman born? Where was Arthur Yoria born? Where was John Skoyles born? Where was Stéphan Perrot born? Where was Gijs Vermeulen born? Where was Jill Crossland born? Where was Andrej Šeban born? Where was Andrei Babitsky born? Where was Elizabeth Cooper born? Where was Sim%C3%B3n Moret Gallart born? Where was Marvin Delph born? Where was Daniel Rosenfeld born? Where was George Smith born? Where was Suzie Malone born? Where was Terence O'Brien born? Where was Frank Edwards born? Where was Ambalavaner Sivanandan born? Where was Konstantin Matusevich born? Where was Moshe Shekel born? Where was Leo Fernandez born? Where was Norman Mann born? Where was Tariq Iqbal born? Where was Ludvig Drescher born? Where was Cliff Bergere born? Where was John Benjamin Henck born? Where was Jason Pyrah born? Where was Gareth Russell born? Where was Alan Fisher born? Where was Roger Sinclair Aytoun born? Where was Robert Owens born? Where was Josh Quittner born? Where was John Bernhard born? Where was Douglas Paulson born? Where was J. J. Stevenson born? Where was Kajsa Kling born? Where was Charles Schreiber born? Where was Adam Macrow born? Where was Alwina Valleria born? Where was James Lomax Bardsley born? Where was Bernie Lowe born? Where was Hakim Toumi born? Where was Richard West born? Where was John Bayard McPherson born? Where was Stephen William White born? Where was A. F. Kidd born? Where was John Milne Bramwell born? Where was Lew Stringer born? Where was George Russell French born? Where was Tsotne Bakuria born? Where was Thomas Kirk born? Where was Theophilus de Garencières born? Where was Christian Johansson born? Where was Ruth Fuller Sasaki born? Where was Diego Nargiso born? Where was Keith Butler born? Where was Richie Dent born? Where was Jamielee McPherson born? Where was Derek Coughlan born? Where was Anita Håkenstad born? Where was David Scott Milton born? Where was Alfred Downward born? Where was Christos Sirros born? Where was George Jewett born? Where was Randolph Colville born? Where was William Lawrence Tower born? Where was Lowell Cauffiel born? Where was Luis Simarro Lacabra born? Where was Rui Tavares born? Where was Giambattista Nolli born? Where was Lee Blackett born? Where was Sergio Benvindo Junior born? Where was Spencer Wishart born? Where was Mila Iskrenova born? Where was Dave Marsh born? Where was Maria von Welser born? Where was Arthur Savage born? Where was Kim Bauermeister born? Where was Ye Xuanping born? Where was Niculae Conovici born? Where was John O'Conor born? Where was Georgy Ketoyev born? Where was Will Zens born? Where was Adrian Bowyer born? Where was Inge Israel born? Where was Ernest Peter Burger born? Where was Jane Bathori born? Where was Paul Willis born? Where was Henry Ussher born? Where was John Ridley Mitchell born? Where was Jane Henschel born? Where was Philip King born? Where was Spencer Bonfiglio born? Where was Ernst Witebsky born? Where was Clive Bubb born? Where was Khashayar Karimian born? Where was Mary Macmaster born? Where was Robert Aldridge born? Where was Ronald Pearson Tripp born? Where was Loukas Sideras born? Where was Terry Martin born? Where was Andrew Waterman born? Where was John Cameron born? Where was Charles Follen Adams born? Where was Elizabeth Kay born? Where was Darren Dowling born? Where was Thomas Haughey born? Where was Jan Čulík born? Where was Scott Cleverdon born? Where was Emmanuel Hocquard born? Where was Blaine Marchand born? Where was Cherry Wilder born? Where was David L. Heymann born? Where was Sam Holden born? Where was Javeria Abbasi born? Where was Imre Zachár born? Where was Godfrey Douglas Giles born? Where was Marcel Bertrand born? Where was Nick Philip born? Where was Brendan Guilfoyle born? Where was Han Zhidong born? Where was Gerald Palmer born? ================================================ FILE: a5/collect_submission.sh ================================================ rm -f assignment5_submission.zip zip -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 ================================================ FILE: a5/d_cmd ================================================ # Train on the names dataset python src/run.py finetune vanilla wiki.txt --writing_params_path vanilla.model.params --finetune_corpus_path birth_places_train.tsv # Evaluate on the dev set, writing out predictions python 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 # Evaluate on the test set, writing out predictions python 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 ================================================ FILE: a5/f_cmd ================================================ # Pretrain the model python src/run.py pretrain vanilla wiki.txt --writing_params_path vanilla.pretrain.params # Finetune the model python 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 # Evaluate on the dev set; write to disk python 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 # Evaluate on the test set; write to disk python 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 ================================================ FILE: a5/g_cmd ================================================ # Pretrain the model python src/run.py pretrain synthesizer wiki.txt --writing_params_path synthesizer.pretrain.params # Finetune the model python 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 # Evaluate on the dev set; write to disk python src/run.py evaluate synthesizer wiki.txt --reading_params_path synthesizer.finetune.params --eval_corpus_path birth_dev.tsv \ --outputs_path synthesizer.pretrain.dev.predictions # Evaluate on the test set; write to disk python 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 ================================================ FILE: a5/mingpt-demo/.ipynb_checkpoints/play_char-checkpoint.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Train a character-level GPT on some text data\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." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# set up logging\n", "import logging\n", "logging.basicConfig(\n", " format=\"%(asctime)s - %(levelname)s - %(name)s - %(message)s\",\n", " datefmt=\"%m/%d/%Y %H:%M:%S\",\n", " level=logging.INFO,\n", ")" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# make deterministic\n", "from mingpt.utils import set_seed\n", "set_seed(42)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import torch\n", "import torch.nn as nn\n", "from torch.nn import functional as F" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "import math\n", "from torch.utils.data import Dataset\n", "\n", "class CharDataset(Dataset):\n", "\n", " def __init__(self, data, block_size):\n", " chars = sorted(list(set(data)))\n", " data_size, vocab_size = len(data), len(chars)\n", " print('data has %d characters, %d unique.' % (data_size, vocab_size))\n", " \n", " self.stoi = { ch:i for i,ch in enumerate(chars) }\n", " self.itos = { i:ch for i,ch in enumerate(chars) }\n", " self.block_size = block_size\n", " self.vocab_size = vocab_size\n", " self.data = data\n", " \n", " def __len__(self):\n", " return len(self.data) - self.block_size\n", "\n", " def __getitem__(self, idx):\n", " # grab a chunk of (block_size + 1) characters from the data\n", " chunk = self.data[idx:idx + self.block_size + 1]\n", " # encode every character to an integer\n", " dix = [self.stoi[s] for s in chunk]\n", " \"\"\"\n", " arrange data and targets so that the first i elements of x\n", " will be asked to predict the i-th element of y. Notice that\n", " the eventual language model will actually make block_size\n", " individual predictions at the same time based on this data,\n", " so we are being clever and amortizing the cost of the forward\n", " pass of the network. So for example if block_size is 4, then\n", " we could e.g. sample a chunk of text \"hello\", the integers in\n", " x will correspond to \"hell\" and in y will be \"ello\". This will\n", " then actually \"multitask\" 4 separate examples at the same time\n", " in the language model:\n", " - given just \"h\", please predict \"e\" as next\n", " - given \"he\" please predict \"l\" next\n", " - given \"hel\" predict \"l\" next\n", " - given \"hell\" predict \"o\" next\n", " \n", " In addition, because the DataLoader will create batches of examples,\n", " every forward/backward pass during traning will simultaneously train\n", " a LOT of predictions, amortizing a lot of computation. In particular,\n", " for a batched input of integers X (B, T) where B is batch size and\n", " T is block_size and Y (B, T), the network will during training be\n", " simultaneously training to make B*T predictions, all at once! Of course,\n", " at test time we can paralellize across batch B, but unlike during training\n", " we cannot parallelize across the time dimension T - we have to run\n", " a forward pass of the network to recover the next single character of the \n", " sequence along each batch dimension, and repeatedly always feed in a next\n", " character to get the next one.\n", " \n", " So yes there is a big asymmetry between train/test time of autoregressive\n", " models. During training we can go B*T at a time with every forward pass,\n", " but during test time we can only go B at a time, T times, with T forward \n", " passes.\n", " \"\"\"\n", " x = torch.tensor(dix[:-1], dtype=torch.long)\n", " y = torch.tensor(dix[1:], dtype=torch.long)\n", " return x, y\n" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "block_size = 128 # spatial extent of the model for its context" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "data has 1115394 characters, 65 unique.\n" ] } ], "source": [ "# you can download this file at https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt\n", "text = open('input.txt', 'r').read() # don't worry we won't run out of file handles\n", "train_dataset = CharDataset(text, block_size) # one line of poem is roughly 50 characters" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "08/24/2020 22:59:58 - INFO - mingpt.model - number of parameters: 2.535219e+07\n" ] } ], "source": [ "from mingpt.model import GPT, GPTConfig\n", "mconf = GPTConfig(train_dataset.vocab_size, train_dataset.block_size,\n", " n_layer=8, n_head=8, n_embd=512)\n", "model = GPT(mconf)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ " 0%| | 0/2179 [00:00 (B, nh, T, T) att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1))) att = att.masked_fill(self.mask[:,:,:T,:T] == 0, float('-inf')) att = F.softmax(att, dim=-1) att = self.attn_drop(att) y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs) y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side # output projection y = self.resid_drop(self.proj(y)) return y class Block(nn.Module): """ an unassuming Transformer block """ def __init__(self, config): super().__init__() self.ln1 = nn.LayerNorm(config.n_embd) self.ln2 = nn.LayerNorm(config.n_embd) self.attn = CausalSelfAttention(config) self.mlp = nn.Sequential( nn.Linear(config.n_embd, 4 * config.n_embd), nn.GELU(), nn.Linear(4 * config.n_embd, config.n_embd), nn.Dropout(config.resid_pdrop), ) def forward(self, x): x = x + self.attn(self.ln1(x)) x = x + self.mlp(self.ln2(x)) return x class GPT(nn.Module): """ the full GPT language model, with a context size of block_size """ def __init__(self, config): super().__init__() # input embedding stem self.tok_emb = nn.Embedding(config.vocab_size, config.n_embd) self.pos_emb = nn.Parameter(torch.zeros(1, config.block_size, config.n_embd)) self.drop = nn.Dropout(config.embd_pdrop) # transformer self.blocks = nn.Sequential(*[Block(config) for _ in range(config.n_layer)]) # decoder head self.ln_f = nn.LayerNorm(config.n_embd) self.head = nn.Linear(config.n_embd, config.vocab_size, bias=False) self.block_size = config.block_size self.apply(self._init_weights) logger.info("number of parameters: %e", sum(p.numel() for p in self.parameters())) def get_block_size(self): return self.block_size def _init_weights(self, module): if isinstance(module, (nn.Linear, nn.Embedding)): module.weight.data.normal_(mean=0.0, std=0.02) if isinstance(module, nn.Linear) and module.bias is not None: module.bias.data.zero_() elif isinstance(module, nn.LayerNorm): module.bias.data.zero_() module.weight.data.fill_(1.0) def configure_optimizers(self, train_config): """ This long function is unfortunately doing something very simple and is being very defensive: We are separating out all parameters of the model into two buckets: those that will experience weight decay for regularization and those that won't (biases, and layernorm/embedding weights). We are then returning the PyTorch optimizer object. """ # separate out all parameters to those that will and won't experience regularizing weight decay decay = set() no_decay = set() whitelist_weight_modules = (torch.nn.Linear, ) blacklist_weight_modules = (torch.nn.LayerNorm, torch.nn.Embedding) for mn, m in self.named_modules(): for pn, p in m.named_parameters(): fpn = '%s.%s' % (mn, pn) if mn else pn # full param name if pn.endswith('bias'): # all biases will not be decayed no_decay.add(fpn) elif pn.endswith('weight') and isinstance(m, whitelist_weight_modules): # weights of whitelist modules will be weight decayed decay.add(fpn) elif pn.endswith('weight') and isinstance(m, blacklist_weight_modules): # weights of blacklist modules will NOT be weight decayed no_decay.add(fpn) # special case the position embedding parameter in the root GPT module as not decayed no_decay.add('pos_emb') # validate that we considered every parameter param_dict = {pn: p for pn, p in self.named_parameters()} inter_params = decay & no_decay union_params = decay | no_decay assert len(inter_params) == 0, "parameters %s made it into both decay/no_decay sets!" % (str(inter_params), ) assert len(param_dict.keys() - union_params) == 0, "parameters %s were not separated into either decay/no_decay set!" \ % (str(param_dict.keys() - union_params), ) # create the pytorch optimizer object optim_groups = [ {"params": [param_dict[pn] for pn in sorted(list(decay))], "weight_decay": train_config.weight_decay}, {"params": [param_dict[pn] for pn in sorted(list(no_decay))], "weight_decay": 0.0}, ] optimizer = torch.optim.AdamW(optim_groups, lr=train_config.learning_rate, betas=train_config.betas) return optimizer def forward(self, idx, targets=None): b, t = idx.size() assert t <= self.block_size, "Cannot forward, model block size is exhausted." # forward the GPT model token_embeddings = self.tok_emb(idx) # each index maps to a (learnable) vector position_embeddings = self.pos_emb[:, :t, :] # each position maps to a (learnable) vector x = self.drop(token_embeddings + position_embeddings) x = self.blocks(x) x = self.ln_f(x) logits = self.head(x) # if we are given some desired targets also calculate the loss loss = None if targets is not None: loss = F.cross_entropy(logits.view(-1, logits.size(-1)), targets.view(-1)) return logits, loss ================================================ FILE: a5/mingpt-demo/mingpt/trainer.py ================================================ """ Simple training loop; Boilerplate that could apply to any arbitrary neural network, so nothing in this file really has anything to do with GPT specifically. """ import math import logging from tqdm import tqdm import numpy as np import torch import torch.optim as optim from torch.optim.lr_scheduler import LambdaLR from torch.utils.data.dataloader import DataLoader logger = logging.getLogger(__name__) class TrainerConfig: # optimization parameters max_epochs = 10 batch_size = 64 learning_rate = 3e-4 betas = (0.9, 0.95) grad_norm_clip = 1.0 weight_decay = 0.1 # only applied on matmul weights # learning rate decay params: linear warmup followed by cosine decay to 10% of original lr_decay = False warmup_tokens = 375e6 # these two numbers come from the GPT-3 paper, but may not be good defaults elsewhere final_tokens = 260e9 # (at what point we reach 10% of original LR) # checkpoint settings ckpt_path = None num_workers = 0 # for DataLoader def __init__(self, **kwargs): for k,v in kwargs.items(): setattr(self, k, v) class Trainer: def __init__(self, model, train_dataset, test_dataset, config): self.model = model self.train_dataset = train_dataset self.test_dataset = test_dataset self.config = config # take over whatever gpus are on the system self.device = 'cpu' if torch.cuda.is_available(): self.device = torch.cuda.current_device() self.model = torch.nn.DataParallel(self.model).to(self.device) def save_checkpoint(self): # DataParallel wrappers keep raw model object in .module attribute raw_model = self.model.module if hasattr(self.model, "module") else self.model logger.info("saving %s", self.config.ckpt_path) torch.save(raw_model.state_dict(), self.config.ckpt_path) def train(self): model, config = self.model, self.config raw_model = model.module if hasattr(self.model, "module") else model optimizer = raw_model.configure_optimizers(config) def run_epoch(split): is_train = split == 'train' model.train(is_train) data = self.train_dataset if is_train else self.test_dataset loader = DataLoader(data, shuffle=True, pin_memory=True, batch_size=config.batch_size, num_workers=config.num_workers) losses = [] pbar = tqdm(enumerate(loader), total=len(loader)) if is_train else enumerate(loader) for it, (x, y) in pbar: # place data on the correct device x = x.to(self.device) y = y.to(self.device) # forward the model with torch.set_grad_enabled(is_train): logits, loss = model(x, y) loss = loss.mean() # collapse all losses if they are scattered on multiple gpus losses.append(loss.item()) if is_train: # backprop and update the parameters model.zero_grad() loss.backward() torch.nn.utils.clip_grad_norm_(model.parameters(), config.grad_norm_clip) optimizer.step() # decay the learning rate based on our progress if config.lr_decay: self.tokens += (y >= 0).sum() # number of tokens processed this step (i.e. label is not -100) if self.tokens < config.warmup_tokens: # linear warmup lr_mult = float(self.tokens) / float(max(1, config.warmup_tokens)) else: # cosine learning rate decay progress = float(self.tokens - config.warmup_tokens) / float(max(1, config.final_tokens - config.warmup_tokens)) lr_mult = max(0.1, 0.5 * (1.0 + math.cos(math.pi * progress))) lr = config.learning_rate * lr_mult for param_group in optimizer.param_groups: param_group['lr'] = lr else: lr = config.learning_rate # report progress pbar.set_description(f"epoch {epoch+1} iter {it}: train loss {loss.item():.5f}. lr {lr:e}") if not is_train: test_loss = float(np.mean(losses)) logger.info("test loss: %f", test_loss) return test_loss best_loss = float('inf') self.tokens = 0 # counter used for learning rate decay for epoch in range(config.max_epochs): run_epoch('train') if self.test_dataset is not None: test_loss = run_epoch('test') # supports early stopping based on the test loss, or just save always if no test set is provided good_model = self.test_dataset is None or test_loss < best_loss if self.config.ckpt_path is not None and good_model: best_loss = test_loss self.save_checkpoint() ================================================ FILE: a5/mingpt-demo/mingpt/utils.py ================================================ import random import numpy as np import torch import torch.nn as nn from torch.nn import functional as F def set_seed(seed): random.seed(seed) np.random.seed(seed) torch.manual_seed(seed) torch.cuda.manual_seed_all(seed) def top_k_logits(logits, k): v, ix = torch.topk(logits, k) out = logits.clone() out[out < v[:, [-1]]] = -float('Inf') return out @torch.no_grad() def sample(model, x, steps, temperature=1.0, sample=False, top_k=None): """ take a conditioning sequence of indices in x (of shape (b,t)) and predict the next token in the sequence, feeding the predictions back into the model each time. Clearly the sampling has quadratic complexity unlike an RNN that is only linear, and has a finite context window of block_size, unlike an RNN that has an infinite context window. """ block_size = model.get_block_size() model.eval() for k in range(steps): x_cond = x if x.size(1) <= block_size else x[:, -block_size:] # crop context if needed logits, _ = model(x_cond) # pluck the logits at the final step and scale by temperature logits = logits[:, -1, :] / temperature # optionally crop probabilities to only the top k options if top_k is not None: logits = top_k_logits(logits, top_k) # apply softmax to convert to probabilities probs = F.softmax(logits, dim=-1) # sample from the distribution or take the most likely if sample: ix = torch.multinomial(probs, num_samples=1) else: _, ix = torch.topk(probs, k=1, dim=-1) # append to the sequence and continue x = torch.cat((x, ix), dim=1) return x ================================================ FILE: a5/mingpt-demo/play_char.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Train a character-level GPT on some text data\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." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# set up logging\n", "import logging\n", "logging.basicConfig(\n", " format=\"%(asctime)s - %(levelname)s - %(name)s - %(message)s\",\n", " datefmt=\"%m/%d/%Y %H:%M:%S\",\n", " level=logging.INFO,\n", ")" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# make deterministic\n", "from mingpt.utils import set_seed\n", "set_seed(42)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import torch\n", "import torch.nn as nn\n", "from torch.nn import functional as F" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "import math\n", "from torch.utils.data import Dataset\n", "\n", "class CharDataset(Dataset):\n", "\n", " def __init__(self, data, block_size):\n", " chars = sorted(list(set(data)))\n", " data_size, vocab_size = len(data), len(chars)\n", " print('data has %d characters, %d unique.' % (data_size, vocab_size))\n", " \n", " self.stoi = { ch:i for i,ch in enumerate(chars) }\n", " self.itos = { i:ch for i,ch in enumerate(chars) }\n", " self.block_size = block_size\n", " self.vocab_size = vocab_size\n", " self.data = data\n", " \n", " def __len__(self):\n", " return len(self.data) - self.block_size\n", "\n", " def __getitem__(self, idx):\n", " # grab a chunk of (block_size + 1) characters from the data\n", " chunk = self.data[idx:idx + self.block_size + 1]\n", " # encode every character to an integer\n", " dix = [self.stoi[s] for s in chunk]\n", " \"\"\"\n", " arrange data and targets so that the first i elements of x\n", " will be asked to predict the i-th element of y. Notice that\n", " the eventual language model will actually make block_size\n", " individual predictions at the same time based on this data,\n", " so we are being clever and amortizing the cost of the forward\n", " pass of the network. So for example if block_size is 4, then\n", " we could e.g. sample a chunk of text \"hello\", the integers in\n", " x will correspond to \"hell\" and in y will be \"ello\". This will\n", " then actually \"multitask\" 4 separate examples at the same time\n", " in the language model:\n", " - given just \"h\", please predict \"e\" as next\n", " - given \"he\" please predict \"l\" next\n", " - given \"hel\" predict \"l\" next\n", " - given \"hell\" predict \"o\" next\n", " \n", " In addition, because the DataLoader will create batches of examples,\n", " every forward/backward pass during traning will simultaneously train\n", " a LOT of predictions, amortizing a lot of computation. In particular,\n", " for a batched input of integers X (B, T) where B is batch size and\n", " T is block_size and Y (B, T), the network will during training be\n", " simultaneously training to make B*T predictions, all at once! Of course,\n", " at test time we can paralellize across batch B, but unlike during training\n", " we cannot parallelize across the time dimension T - we have to run\n", " a forward pass of the network to recover the next single character of the \n", " sequence along each batch dimension, and repeatedly always feed in a next\n", " character to get the next one.\n", " \n", " So yes there is a big asymmetry between train/test time of autoregressive\n", " models. During training we can go B*T at a time with every forward pass,\n", " but during test time we can only go B at a time, T times, with T forward \n", " passes.\n", " \"\"\"\n", " x = torch.tensor(dix[:-1], dtype=torch.long)\n", " y = torch.tensor(dix[1:], dtype=torch.long)\n", " return x, y\n" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "block_size = 128 # spatial extent of the model for its context" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "ename": "FileNotFoundError", "evalue": "[Errno 2] No such file or directory: 'input.txt'", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\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", "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: 'input.txt'" ] } ], "source": [ "# you can download this file at https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt\n", "text = open('input.txt', 'r').read() # don't worry we won't run out of file handles\n", "train_dataset = CharDataset(text, block_size) # one line of poem is roughly 50 characters" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from mingpt.model import GPT, GPTConfig\n", "mconf = GPTConfig(train_dataset.vocab_size, train_dataset.block_size,\n", " n_layer=8, n_head=8, n_embd=512)\n", "model = GPT(mconf)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from mingpt.trainer import Trainer, TrainerConfig\n", "\n", "# initialize a trainer instance and kick off training\n", "tconf = TrainerConfig(max_epochs=2, batch_size=512, learning_rate=6e-4,\n", " lr_decay=True, warmup_tokens=512*20, final_tokens=2*len(train_dataset)*block_size,\n", " num_workers=4)\n", "trainer = Trainer(model, train_dataset, None, tconf)\n", "trainer.train()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# alright, let's sample some character-level Shakespeare\n", "from mingpt.utils import sample\n", "\n", "context = \"O God, O God!\"\n", "x = torch.tensor([train_dataset.stoi[s] for s in context], dtype=torch.long)[None,...].to(trainer.device)\n", "y = sample(model, x, 2000, temperature=1.0, sample=True, top_k=10)[0]\n", "completion = ''.join([train_dataset.itos[int(i)] for i in y])\n", "print(completion)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# well that was fun" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.2" } }, "nbformat": 4, "nbformat_minor": 4 } ================================================ FILE: a5/src/attention.py ================================================ import math import logging import torch import torch.nn as nn from torch.nn import functional as F logger = logging.getLogger(__name__) class CausalSelfAttention(nn.Module): """ A vanilla multi-head masked self-attention layer with a projection at the end. I believe I could have just used torch.nn.MultiheadAttention but their documentation is all but absent and code ugly so I don't trust it, rolling my own here. """ def __init__(self, config): super().__init__() assert config.n_embd % config.n_head == 0 # key, query, value projections for all heads self.key = nn.Linear(config.n_embd, config.n_embd) self.query = nn.Linear(config.n_embd, config.n_embd) self.value = nn.Linear(config.n_embd, config.n_embd) # regularization self.attn_drop = nn.Dropout(config.attn_pdrop) self.resid_drop = nn.Dropout(config.resid_pdrop) # output projection self.proj = nn.Linear(config.n_embd, config.n_embd) # causal mask to ensure that attention is only applied to the left in the input sequence self.register_buffer("mask", torch.tril(torch.ones(config.block_size, config.block_size)) .view(1, 1, config.block_size, config.block_size)) self.n_head = config.n_head def forward(self, x, layer_past=None): # B stands for Batch # T stands for Time? # C stands for "channels" in the sense of a convolutional neural network? # You can (temporarily) change n_embd (d) in the mconf definition in run.py, block_size (l) and # the batch_size in the trainer.TrainerConfig, to vary the embedding dimension, sequence length and # batch size respectively and then print out the size of x in forward() when making these changes, # to see what each axis of x corresponds to. B, T, C = x.size() # calculate query, key, values for all heads in batch and move head forward to be the batch dim k = self.key(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) q = self.query(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) v = self.value(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) # causal self-attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T) # Why is (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)? # It's a batched matrix multiply (batch dims (B, nh)). # This is defined implicitly with the matmul operation on tensors of higher numbers of axes than 2. # For more: https://pytorch.org/docs/stable/generated/torch.matmul.html # So the matrices are "really" (T, hs) x (hs, T) --> (T,T) att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1))) att = att.masked_fill(self.mask[:,:,:T,:T] == 0, -1e10) # todo: just use float('-inf') instead? att = F.softmax(att, dim=-1) att = self.attn_drop(att) y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs) y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side # output projection y = self.resid_drop(self.proj(y)) return y """ Write your SynthesizerAttention below. Hint: paste over the CausalSelfAttention above and modify it minimally. """ class SynthesizerAttention(nn.Module): def __init__(self, config): super().__init__() assert config.n_embd % config.n_head == 0 # NEW learnable weights self.w1 = nn.Linear(config.n_embd, config.n_embd) self.w2 = nn.Parameter(torch.zeros(config.n_embd // config.n_head, config.block_size-1)) self.b2 = nn.Parameter(torch.zeros(config.block_size-1)) # value projection self.value = nn.Linear(config.n_embd, config.n_embd) # regularization self.attn_drop = nn.Dropout(config.attn_pdrop) self.resid_drop = nn.Dropout(config.resid_pdrop) # output projection self.proj = nn.Linear(config.n_embd, config.n_embd) # causal mask to ensure that attention is only applied to the left in # the input sequence self.register_buffer("mask", torch.tril( torch.ones(config.block_size, config.block_size)).view( 1, 1, config.block_size, config.block_size)) self.n_head = config.n_head self.block_size = config.block_size nn.init.uniform_(self.w2,-0.001,0.001) def forward(self, x, layer_past=None): # TODO [part g]: Write your SynthesizerAttention below. # Do not modify __init__(). # Hints: # - Paste over the CausalSelfAttention above and modify it minimally. # - Consider especially the parameters self.w1, self.w2 and self.b2. # How do these map to the matrices in the handout? B, T, C = x.size() # calculate query, key, values for all heads in batch and move head forward to be the batch dim 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) # print("a", a.shape) w2 = self.w2[:, :T] # (hs, T) -> (32, 127) # print("b", b.shape) b2 = self.b2[:T] # (T) -> (127) # print("b2", b2.shape) v = self.value(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) # print(v.shape) # Synthesizer Attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T) att = (F.relu(w1) @ w2 + b2) # print(att.shape) # Mask out the future att = att.masked_fill(self.mask[:, :, :T, :T] == 0, -1e10) # todo: just use float('-inf') instead? att = F.softmax(att, dim=-1) # print(att.shape) att = self.attn_drop(att) # print(att.shape) # print(v.shape) y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs) y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side # output projection y = self.resid_drop(self.proj(y)) return y ================================================ FILE: a5/src/dataset.py ================================================ import random import torch from torch.utils.data import Dataset import argparse """ The input-output pairs (x, y) of the NameDataset are of the following form: x: Where was Khatchig Mouradian born?⁇Lebanon⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ y: □□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□⁇Lebanon⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ x: Where was Jacob Henry Studer born?⁇Columbus⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ y: □□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□⁇Columbus⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ Using the PAD_CHAR characters in y before the ⁇[place] keeps the trainer from optimizing the model to predict the question, "Where was...". Note that the NameDataset should take the pretraining_dataset defined in run.py as an input. This is to allow the vocab specification of the NameDataset to be the same as that of the pretraining dataset. You don't need to implement anything in NameDataset. """ class NameDataset(Dataset): def __init__(self, pretraining_dataset, data): self.MASK_CHAR = u"\u2047" # the doublequestionmark character, for mask self.PAD_CHAR = u"\u25A1" # the empty square character, for pad self.itos = pretraining_dataset.itos self.stoi = pretraining_dataset.stoi self.block_size = pretraining_dataset.block_size self.data = list(data.encode('utf-8').decode('ascii', errors='ignore').split('\n')) def __len__(self): # returns the length of the dataset return len(self.data) - 1 def __getitem__(self, idx): inp, oup = self.data[idx].split('\t') x = inp + self.MASK_CHAR + oup + self.MASK_CHAR x = x + self.PAD_CHAR*(self.block_size - len(x)) y = self.PAD_CHAR*(len(inp)-1) + x[len(inp):] x = x[:-1] x = torch.tensor([self.stoi[c] for c in x], dtype=torch.long) y = torch.tensor([self.stoi[c] for c in y], dtype=torch.long) return x, y """ [part e] Write a class that yields examples of a simplified span corruption objective. Do not change the signature of the __init__ or __getitem__ functions. Make sure to implement the full spec for full credit -- we list below the criteria that must be satisfied for a full implementation. -------------- Vocabulary Specification Your vocabulary is to be accessible via two dictionaries: self.stoi: a dictionary from characters in the vocabulary to indices of type int self.itos: a dictionary from indices of type int to characters in the vocabulary Your vocabulary must have the following form: Identifier 0 must be assigned to the unicode element u"\u25A1". This is the empty_square_character. Further, let self.PAD_CHAR = u"\u25A1" Identifier 1 must be assigned to the unicode element u"\u2047". This is the doublequestionmark character, which we'll use as a sentinel to represent that text is missing from the input Further, let self.MASK_CHAR = u"\u2047" Identifiers 2, ..., len(self.itos)-1 should be the sorted list of characters that appear in the data argument. -------------- Masking Specification The __getitem__ function takes an index and returns a data point (x, y) where x and y are Long tensors of length self.block_size. x encodes the input sequence, and y encodes the output sequence. 0. Use the idx argument of __getitem__ to retrieve the element of self.data at the given index. We'll call the resulting data entry a document. 1. Randomly truncate the document to a length no less than 4 characters, and no more than int(self.block_size*7/8) characters. - IMPORTANT: You are free to decide how to perform this random truncation, but make sure that the length is picked _randomly_ (every possible length from 4 to int(self.block_size*7/8) has a chance of being picked) for full credit. 2. Now, break the (truncated) document into three substrings: [prefix] [masked_content] [suffix] In other words, choose three strings prefix, masked_content and suffix such that prefix + masked_content + suffix = [the original document]. The length of [masked_content] should be random, and 1/4 the length of the truncated document on average. - IMPORTANT: You are free to decide how to perform this operation, but make sure that the length is picked _randomly_ (has a chance of being more or less than 1/4 the length of the truncated document) for full credit. 3. Rearrange these substrings into the following form: [prefix] MASK_CHAR [suffix] MASK_CHAR [masked_content] [pads] This resulting string, denoted masked_string, serves as the output example. Here MASK_CHAR is the masking character defined in Vocabulary Specification, and [pads] is a string of repeated PAD_CHAR characters chosen so that the entire string is of length self.block_size. Intuitively, the [masked_content], a string, is removed from the document and replaced with MASK_CHAR (the masking character defined in Vocabulary Specification). After the suffix of the string, the MASK_CHAR is seen again, followed by the content that was removed, and the padding characters. 4. We now use masked_string to construct the input and output example pair. To do so, simply take the input string to be masked_string[:-1], and the output string to be masked_string[1:]. In other words, for each character, the goal is to predict the next character in the masked string. 5. Making use of the vocabulary that you defined, encode the resulting input and output strings as Long tensors and return the resulting data point. ---------------- Here are some examples of input-output pairs (x, y): x: Khatchig Mouradian. Khatchig Mouradian is a jour⁇and tran⁇nalist, writer ⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ y: hatchig Mouradian. Khatchig Mouradian is a jour⁇and tran⁇nalist, writer ⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ x: Jaco⁇enry ⁇b H⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ y: aco⁇enry ⁇b H⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ x: John Stephen. Born in Glasgow, Steph⁇lder's apprentice on⁇en became a we⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ y: ohn Stephen. Born in Glasgow, Steph⁇lder's apprentice on⁇en became a we⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ """ class CharCorruptionDataset(Dataset): def __init__(self, data, block_size): self.MASK_CHAR = u"\u2047" # the doublequestionmark character, for mask self.PAD_CHAR = u"\u25A1" # the empty square character, for pad chars = list(sorted(list(set(data)))) assert self.MASK_CHAR not in chars assert self.PAD_CHAR not in chars chars.insert(0, self.MASK_CHAR) chars.insert(0, self.PAD_CHAR) self.stoi = { ch:i for i,ch in enumerate(chars) } self.itos = { i:ch for i,ch in enumerate(chars) } data_size, vocab_size = len(data), len(chars) print('data has %d characters, %d unique.' % (data_size, vocab_size)) self.block_size = block_size self.vocab_size = vocab_size self.data = data.split('\n') def __len__(self): # returns the length of the dataset return len(self.data) def __getitem__(self, idx): # TODO [part e]: see spec above doc = self.data[idx] # 1. Randomly truncate the document to a length no less than 4 characters, # and no more than int(self.block_size*7/8) characters. import random random_length = random.randint(4, int(self.block_size*7/8)) truncated_doc = doc[:random_length] # 2. Now, break the (truncated) document into three substrings: [prefix] [masked_content] [suffix] # # In other words, choose three strings prefix, masked_content and suffix # such that prefix + masked_content + suffix = [the original document]. # The length of [masked_content] should be random, and 1/4 the length of the # truncated document on average. # # - IMPORTANT: You are free to decide how to perform this operation, but # make sure that the length is picked _randomly_ (has a chance of being more or # less than 1/4 the length of the truncated document) for full credit. # Take the length of the (randomly truncated) document. truncated_doc_length = len(doc) # Add a random perturbation to the length of the masked content with randint(). # Just pick the right bounds, for example, -1/8 and 1/8 of the truncated length random_perturbation = random.randint(int(-0.125*truncated_doc_length), int(0.125*truncated_doc_length)) # Compute expected_mask_len by using 1/4 of the truncated document length # and adding a perturbation. expected_mask_len = int(0.25*truncated_doc_length + random_perturbation) # This gets you a masked length with minimum length of 1/8 of truncated length and # maximum length of 3/8 of the truncated length, and the average is 1/4. # randomly determine where to start the masked portion somewhere between the start # of the truncated document and the last index such that there are as many characters # left in the sequence as we determined the mask length should be start_mask = random.randint(0, truncated_doc_length - expected_mask_len) masked_content = truncated_doc[start_mask:start_mask+expected_mask_len] prefix = truncated_doc[:start_mask] suffix = truncated_doc[len(prefix)+expected_mask_len:] # 3. Rearrange these substrings into the following form: # # [prefix] MASK_CHAR [suffix] MASK_CHAR [masked_content] [pads] # # This resulting string, denoted masked_string, serves as the output example. # Here MASK_CHAR is the masking character defined in Vocabulary Specification, # and [pads] is a string of repeated PAD_CHAR characters chosen so that the # entire string is of length self.block_size. # Intuitively, the [masked_content], a string, is removed from the document and # replaced with MASK_CHAR (the masking character defined in Vocabulary # Specification). After the suffix of the string, the MASK_CHAR is seen again, # followed by the content that was removed, and the padding characters. masked_string = prefix + self.MASK_CHAR + suffix + self.MASK_CHAR + masked_content masked_string += self.PAD_CHAR*(self.block_size - len(masked_string)) # We now use masked_string to construct the input and output example pair. To # do so, simply take the input string to be masked_string[:-1], and the output # string to be masked_string[1:]. In other words, for each character, the goal is # to predict the next character in the masked string. input = masked_string[:-1] output = masked_string[1:] # Making use of the vocabulary that you defined, encode the resulting input # and output strings as Long tensors and return the resulting data point. x = torch.tensor([self.stoi[c] for c in input], dtype=torch.long) y = torch.tensor([self.stoi[c] for c in output], dtype=torch.long) return x, y """ Code under here is strictly for your debugging purposes; feel free to modify as desired. """ if __name__ == '__main__': argp = argparse.ArgumentParser() argp.add_argument('dataset_type', help="Type of dataset to sample from." "Options: namedata, charcorruption.", choices=["namedata", "charcorruption"]) args = argp.parse_args() if args.dataset_type == 'namedata': # Even if it hasn't been implemented, we use it to define the vocab corruption_dataset = CharCorruptionDataset(open('wiki.txt').read(), 128) # Make the name dataset name_dataset = NameDataset(corruption_dataset, open('birth_places_train.tsv').read()) for _, example in zip(range(4), name_dataset): x, y = example print('x:', ''.join([name_dataset.itos[int(c)] for c in x])) print('y:', ''.join([name_dataset.itos[int(c)] for c in y])) pass elif args.dataset_type == 'charcorruption': corruption_dataset = CharCorruptionDataset(open('wiki.txt').read(), 128) for _, example in zip(range(4), corruption_dataset): x, y = example print('x:', ''.join([corruption_dataset.itos[int(c)] for c in x])) print('y:', ''.join([corruption_dataset.itos[int(c)] for c in y])) else: raise ValueError("Unknown dataset type in command line args: {}" .format(args.dataset_type)) ================================================ FILE: a5/src/london_baseline.py ================================================ # Calculate the accuracy of a baseline that simply predicts "London" for every # example in the dev set. # Hint: Make use of existing code. # Your solution here should only be a few lines. import utils # the list comprehension in the below line is to accommodate lines with just the newline character total, correct = utils.evaluate_places('birth_dev.tsv', ['London'] * len([line for line in open('birth_dev.tsv').read().split('\n') if line])) if total > 0: print('Correct: {} out of {}: {}%'.format(correct, total, correct/total*100)) ================================================ FILE: a5/src/model.py ================================================ """ GPT model: - the initial stem consists of a combination of token encoding and a positional encoding - the meat of it is a uniform sequence of Transformer blocks - each Transformer is a sequential combination of a 1-hidden-layer MLP block and a self-attention block - all blocks feed into a central residual pathway similar to resnets - the final decoder is a linear projection into a vanilla Softmax classifier """ import math import torch import torch.nn as nn from torch.nn import functional as F import attention class GPTConfig: """ base GPT config, params common to all GPT versions """ embd_pdrop = 0.1 resid_pdrop = 0.1 attn_pdrop = 0.1 additive = False def __init__(self, vocab_size, block_size, synthesizer=False, **kwargs): self.vocab_size = vocab_size self.block_size = block_size self.synthesizer = synthesizer for k,v in kwargs.items(): setattr(self, k, v) class GPT1Config(GPTConfig): """ GPT-1 like network roughly 125M params """ n_layer = 12 n_head = 12 n_embd = 768 class Block(nn.Module): """ an unassuming Transformer block """ def __init__(self, config): super().__init__() self.ln1 = nn.LayerNorm(config.n_embd) self.ln2 = nn.LayerNorm(config.n_embd) if config.synthesizer: self.attn = attention.SynthesizerAttention(config) elif config.additive: self.attn = attention.AdditiveSelfAttention(config) else: self.attn = attention.CausalSelfAttention(config) self.mlp = nn.Sequential( nn.Linear(config.n_embd, 4 * config.n_embd), nn.GELU(), nn.Linear(4 * config.n_embd, config.n_embd), nn.Dropout(config.resid_pdrop), ) def forward(self, x): x = x + self.attn(self.ln1(x)) x = x + self.mlp(self.ln2(x)) return x class GPT(nn.Module): """ the full GPT language model, with a context size of block_size """ def __init__(self, config): super().__init__() # input embedding stem self.tok_emb = nn.Embedding(config.vocab_size, config.n_embd) self.pos_emb = nn.Parameter(torch.zeros(1, config.block_size, config.n_embd)) self.drop = nn.Dropout(config.embd_pdrop) # transformer self.blocks = nn.Sequential(*[Block(config) for _ in range(config.n_layer)]) # decoder head self.ln_f = nn.LayerNorm(config.n_embd) self.head = nn.Linear(config.n_embd, config.vocab_size, bias=False) self.block_size = config.block_size self.apply(self._init_weights) print("number of parameters: {}".format(sum(p.numel() for p in self.parameters()))) def _init_weights(self, module): if isinstance(module, (nn.Linear, nn.Embedding)): module.weight.data.normal_(mean=0.0, std=0.02) if isinstance(module, nn.Linear) and module.bias is not None: module.bias.data.zero_() elif isinstance(module, nn.LayerNorm): module.bias.data.zero_() module.weight.data.fill_(1.0) def get_block_size(self): return self.block_size def forward(self, idx, targets=None): b, t = idx.size() assert t <= self.block_size, "Cannot forward, model block size is exhausted." # forward the GPT model token_embeddings = self.tok_emb(idx) # each index maps to a (learnable) vector position_embeddings = self.pos_emb[:, :t, :] # each position maps to a (learnable) vector x = self.drop(token_embeddings + position_embeddings) x = self.blocks(x) x = self.ln_f(x) logits = self.head(x) # if we are given some desired targets also calculate the loss loss = None if targets is not None: loss = F.cross_entropy(logits.view(-1, logits.size(-1)), targets.view(-1), ignore_index=0) return logits, loss class CustomLayerNorm(nn.Module): pass ================================================ FILE: a5/src/run.py ================================================ import numpy as np import torch import torch.nn as nn from tqdm import tqdm from torch.nn import functional as F import random import argparse random.seed(0) import dataset import model import trainer import utils argp = argparse.ArgumentParser() argp.add_argument('function', help="Whether to pretrain, finetune or evaluate a model", choices=["pretrain", "finetune", "evaluate"]) argp.add_argument('variant', help="Which variant of the model to run ('vanilla' or 'synthesizer')", choices=["vanilla", "synthesizer"]) argp.add_argument('pretrain_corpus_path', help="Path of the corpus to pretrain on", default=None) argp.add_argument('--reading_params_path', help="If specified, path of the model to load before finetuning/evaluation", default=None) argp.add_argument('--writing_params_path', help="Path to save the model after pretraining/finetuning", default=None) argp.add_argument('--finetune_corpus_path', help="Path of the corpus to finetune on", default=None) argp.add_argument('--eval_corpus_path', help="Path of the corpus to evaluate on", default=None) argp.add_argument('--outputs_path', default=None) args = argp.parse_args() # Save the device device = torch.cuda.current_device() if torch.cuda.is_available() else 'cpu' # Keep the block size 128 # Why is the pretraining corpus always required (even if we're not pretraining?) # It's because we're using it as a hack to always have the same vocabulary # (that is, the same mapping from character to integer, and we build the # vocab from the pretraining corpus.) block_size = 128 text = open(args.pretrain_corpus_path).read() pretrain_dataset = dataset.CharCorruptionDataset(text, block_size) # We don't suggest you change these hyperparameters, as they're known to work. # use them for both the vanilla and the synthesizer models mconf = model.GPTConfig(pretrain_dataset.vocab_size, pretrain_dataset.block_size, n_layer=4, n_head=8, n_embd=256) """ Don't change above here; write your code below """ if args.variant == 'vanilla': # TODO [part c]: Make some model here model = model.GPT(mconf) model = model.to(device) elif args.variant == 'synthesizer': # TODO [part g]: Make some other model here mconf = model.GPTConfig(pretrain_dataset.vocab_size, pretrain_dataset.block_size, synthesizer=True, n_layer=4, n_head=8, n_embd=256) model = model.GPT(mconf) model = model.to(device) # From here on, your code should be identical independent of which # variant (vanilla or synthesizer) has been chosen. if args.function == 'pretrain': assert args.pretrain_corpus_path is not None assert args.writing_params_path is not None # TODO [part f]: # - Given: # 1. A corpus specified in args.pretrain_corpus_path # 2. An output path args.writing_params_path for the model parameters # - Goals: # 1. Pretrain the model on this corpus # 2. Save the resulting model in args.writing_params_path # - Make sure to use the following hyperparameters for pretraining: # max_epochs=650 # batch_size=128 # learning_rate=6e-3 # lr_decay=True # warmup_tokens=512*20 # final_tokens=200*len(pretrain_dataset)*block_size # num_workers=4 # initialize a trainer instance and kick off pretraining tconf = trainer.TrainerConfig(max_epochs=650, batch_size=128, learning_rate=6e-3, lr_decay=True, warmup_tokens=512*20, final_tokens=200*len(pretrain_dataset)*block_size, num_workers=4, ckpt_path=args.writing_params_path) trainer = trainer.Trainer(model, pretrain_dataset, None, tconf) trainer.train() elif args.function == 'finetune': assert args.writing_params_path is not None assert args.finetune_corpus_path is not None # TODO [part c] [part f]: # - Given: # 1. A finetuning corpus specified in args.finetune_corpus_path # 2. A path args.reading_params_path containing pretrained model # parameters, or None if finetuning without a pretrained model # 3. An output path args.writing_params_path for the model parameters # - Goals: # 1. If args.reading_params_path is specified, load these parameters # into the model # 2. Finetune the model on this corpus # 3. Save the resulting model in args.writing_params_path # - Make sure to use the following hyperparameters: # Hyperparameters for finetuning WITHOUT a pretrained model: # max_epochs=75 # batch_size=256 # learning_rate=6e-4 # lr_decay=True # warmup_tokens=512*20 # final_tokens=200*len(pretrain_dataset)*block_size # num_workers=4 # Hyperparameters for finetuning WITH a pretrained model: # max_epochs=10 # batch_size=256 # learning_rate=6e-4 # lr_decay=True # warmup_tokens=512*20 # final_tokens=200*len(pretrain_dataset)*block_size # num_workers=4 text = open(args.finetune_corpus_path, 'r', encoding='utf-8').read() finetune_dataset = dataset.NameDataset(pretrain_dataset, text) # finetuning WITH a pretrained model if args.reading_params_path: # initialize a trainer instance and kick off finetuning tconf = trainer.TrainerConfig(max_epochs=10, batch_size=256, learning_rate=6e-4, lr_decay=True, warmup_tokens=512*20, final_tokens=200*len(pretrain_dataset)*block_size, num_workers=4 if torch.cuda.is_available() else 0, ckpt_path=args.writing_params_path) model.load_state_dict(torch.load(args.reading_params_path)) model.eval() trainer = trainer.Trainer(model, finetune_dataset, None, tconf) # finetuning WITHOUT a pretrained model else: # initialize a trainer instance and kick off finetuning tconf = trainer.TrainerConfig(max_epochs=75, batch_size=256, learning_rate=6e-4, lr_decay=True, warmup_tokens=512*20, final_tokens=200*len(pretrain_dataset)*block_size, num_workers=4 if torch.cuda.is_available() else 0, ckpt_path=args.writing_params_path) trainer = trainer.Trainer(model, finetune_dataset, None, tconf) # finetune trainer.train() elif args.function == 'evaluate': assert args.outputs_path is not None assert args.reading_params_path is not None assert args.eval_corpus_path is not None # HACK to run on CPU device = torch.cuda.current_device() if torch.cuda.is_available() else 'cpu' model.load_state_dict(torch.load(args.reading_params_path, map_location=device)) correct = 0 total = 0 with open(args.outputs_path, 'w') as fout: predictions = [] for line in tqdm(open(args.eval_corpus_path)): x = line.split('\t')[0] x = x + '⁇' x = torch.tensor([pretrain_dataset.stoi[s] for s in x], dtype=torch.long)[None,...].to(device) pred = utils.sample(model, x, 32, sample=False)[0] completion = ''.join([pretrain_dataset.itos[int(i)] for i in pred]) pred = completion.split('⁇')[1] predictions.append(pred) fout.write(pred + '\n') total, correct = utils.evaluate_places(args.eval_corpus_path, predictions) if total > 0: print('Correct: {} out of {}: {}%'.format(correct, total, correct/total*100)) else: print('Predictions written to {}; no targets provided' .format(args.outputs_path)) ================================================ FILE: a5/src/trainer.py ================================================ """ Simple training loop; Boilerplate that could apply to any arbitrary neural network, so nothing in this file really has anything to do with GPT specifically. We suggest not changing anything in this file. """ import math import logging from tqdm import tqdm import numpy as np import torch import torch.optim as optim from torch.optim.lr_scheduler import LambdaLR from torch.utils.data.dataloader import DataLoader logger = logging.getLogger(__name__) class TrainerConfig: # optimization parameters max_epochs = 10 batch_size = 64 learning_rate = 3e-4 betas = (0.9, 0.95) grad_norm_clip = 1.0 weight_decay = 0.1 # only applied on matmul weights # learning rate decay params: linear warmup followed by cosine decay to 10% of original lr_decay = False warmup_tokens = 375e6 # these two numbers come from the GPT-3 paper, but may not be good defaults elsewhere final_tokens = 260e9 # (at what point we reach 10% of original LR) # checkpoint settings ckpt_path = None num_workers = 0 # for DataLoader def __init__(self, **kwargs): for k,v in kwargs.items(): setattr(self, k, v) class Trainer: def __init__(self, model, train_dataset, test_dataset, config): self.model = model self.train_dataset = train_dataset self.test_dataset = test_dataset self.config = config # take over whatever gpus are on the system self.device = 'cpu' if torch.cuda.is_available(): self.device = torch.cuda.current_device() self.model = torch.nn.DataParallel(self.model).to(self.device) def save_checkpoint(self): if self.config.ckpt_path is not None: ckpt_model = self.model.module if hasattr(self.model, "module") else self.model logger.info("saving %s", self.config.ckpt_path) torch.save(ckpt_model.state_dict(), self.config.ckpt_path) def train(self): model, config = self.model, self.config # create the optimizer no_decay = ["bias", "LayerNorm.weight"] params_decay = [p for n, p in model.named_parameters() if not any(nd in n for nd in no_decay)] params_nodecay = [p for n, p in model.named_parameters() if any(nd in n for nd in no_decay)] optim_groups = [ {"params": params_decay, "weight_decay": config.weight_decay}, {"params": params_nodecay, "weight_decay": 0.0}, ] optimizer = optim.AdamW(optim_groups, lr=config.learning_rate, betas=config.betas) def run_epoch(split): is_train = split == 'train' model.train(is_train) data = self.train_dataset if is_train else self.test_dataset loader = DataLoader(data, batch_size=config.batch_size, num_workers=config.num_workers) losses = [] pbar = tqdm(enumerate(loader), total=len(loader)) if is_train else enumerate(loader) for it, (x, y) in pbar: # place data on the correct device x = x.to(self.device) y = y.to(self.device) # forward the model with torch.set_grad_enabled(is_train): logits, loss = model(x, y) loss = loss.mean() # collapse all losses if they are scattered on multiple gpus losses.append(loss.item()) if is_train: # backprop and update the parameters model.zero_grad() loss.backward() torch.nn.utils.clip_grad_norm_(model.parameters(), config.grad_norm_clip) optimizer.step() # decay the learning rate based on our progress if config.lr_decay: self.tokens += (y >= 0).sum() # number of tokens processed this step (i.e. label is not -100) if self.tokens < config.warmup_tokens: # linear warmup lr_mult = float(self.tokens) / float(max(1, config.warmup_tokens)) else: # cosine learning rate decay progress = float(self.tokens - config.warmup_tokens) / float(max(1, config.final_tokens - config.warmup_tokens)) lr_mult = max(0.1, 0.5 * (1.0 + math.cos(math.pi * progress))) lr = config.learning_rate * lr_mult for param_group in optimizer.param_groups: param_group['lr'] = lr else: lr = config.learning_rate # report progress pbar.set_description(f"epoch {epoch+1} iter {it}: train loss {loss.item():.5f}. lr {lr:e}") if not is_train: logger.info("test loss: %f", np.mean(losses)) self.tokens = 0 # counter used for learning rate decay for epoch in range(config.max_epochs): run_epoch('train') if self.test_dataset is not None: run_epoch('test') self.save_checkpoint() ================================================ FILE: a5/src/utils.py ================================================ """ Utilities; we suggest changing none of these functions but feel free to add your own. """ import random import numpy as np import torch import torch.nn as nn from torch.nn import functional as F def set_seed(seed): random.seed(seed) np.random.seed(seed) torch.manual_seed(seed) torch.cuda.manual_seed_all(seed) def top_k_logits(logits, k): v, ix = torch.topk(logits, k) out = logits.clone() out[out < v[:, [-1]]] = -float('Inf') return out @torch.no_grad() def sample(model, x, steps, temperature=1.0, sample=False, top_k=None): """ take a conditioning sequence of indices in x (of shape (b,t)) and predict the next token in the sequence, feeding the predictions back into the model each time. Clearly the sampling has quadratic complexity unlike an RNN that is only linear, and has a finite context window of block_size, unlike an RNN that has an infinite context window. """ block_size = model.get_block_size() model.eval() for k in range(steps): x_cond = x if x.size(1) <= block_size else x[:, -block_size:] # crop context if needed logits, _ = model(x_cond) # pluck the logits at the final step and scale by temperature logits = logits[:, -1, :] / temperature # optionally crop probabilities to only the top k options if top_k is not None: logits = top_k_logits(logits, top_k) # apply softmax to convert to probabilities probs = F.softmax(logits, dim=-1) # sample from the distribution or take the most likely if sample: ix = torch.multinomial(probs, num_samples=1) else: _, ix = torch.topk(probs, k=1, dim=-1) # append to the sequence and continue x = torch.cat((x, ix), dim=1) return x def evaluate_places(filepath, predicted_places): """ Computes percent of correctly predicted birth places. Arguments: filepath: path to a file with our name, birth place data. predicted_places: a list of strings representing the predicted birth place of each person. Returns: (total, correct), floats """ with open(filepath) as fin: lines = [x.strip().split('\t') for x in fin] if len(lines[0]) == 1: print('No gold birth places provided; returning (0,0)') return (0,0) true_places = [x[1] for x in lines] total = len(true_places) assert total == len(predicted_places) correct = len(list(filter(lambda x: x[0] == x[1], zip(true_places, predicted_places)))) return (float(total),float(correct)) ================================================ FILE: a5/synthesizer.finetune.params ================================================ [File too large to display: 12.0 MB] ================================================ FILE: a5/synthesizer.pretrain.dev.predictions ================================================ Montreal London Sydney Iran London London Paris Bristol Spain London Chicago Sofia London Toronto London Melbourne Montreal Copenhagen Shanghai London Budapest Berlin Paris Melbourne Manchester Budapest Paris Beaufort Tehran Seville Berlin London Berlin Budapest London Sweden London Chicago Columbus Milwaukee Brooklyn Paris Brooklyn Montreal Melbourne Constantinople Paris Rochester Chicago Belgrade Berlin London Chicago Birmingham Liverpool Paris Paris Bangor Prague Berlin Stuttgart London Warsaw Cairo Milwaukee Berlin Venice Stuttgart Brazil London Paris London Sydney London Madrid Shanghai London London Paris Manchester Belgrade California London London London Paris Paris Copenhagen London London Chicago London London Budapest Chicago Chicago Montreal Paris Paris Montreal London London Manchester Chicago Budapest Baltimore Brooklyn Salford Chicago London Berlin Sheffield Chicago Berkshire London Copenhagen Belgrade Chicago Montreal Chicago London London Paris Chicago Brooklyn London London Paris Manhattan Sydney Stuttgart Moscow London Sydney London Dublin London Manchester Bristol London Berlin Bristol Chicago Brooklyn London London London Massachusetts London Brooklyn Bradford London London Paris Coventry Santiago Berlin Chicago Paris London Caracas Paris Rome London London Brooklyn Budapest London Chicago Montreal London Shanghai Berlin England Columbus London Chicago Copenhagen Australia London Manchester London Madrid London Glasgow Rome Massachusetts Milwaukee Belgrade London Paris London Berlin Chicago Chicago Chicago Philadelphia Spain London Prague Bristol Bergen Genoa London London Madrid Beijing Paris Melbourne Milwaukee Melbourne Brooklyn London Montreal Berlin Paris London Copenhagen Baltimore Budapest Melbourne Bristol Santiago London Buckinghamshire London Tehran Paris Lima Berlin Philadelphia Budapest London Chicago Bristol Beijing Sydney Sweden Sydney Berlin London Berlin Berlin Bristol Chicago London Berlin Budapest Bristol Berlin London Bergen Amsterdam Savannah Lille Sydney Brooklyn Berlin London London London Sheffield Berkshire London Stuttgart Berlin Tbilisi Liverpool London Chicago London Lagos Belfast London Berlin Rome Paris Berlin Monroe Berlin Paris Paris London Sydney Tehran Paris London London California Chatham London Belfast London Rotterdam Brooklyn Paris Berlin London Chicago Paris Manchester Brooklyn Chicago Boston London Berlin Berlin Beijing Paris Cairo Melbourne London London Copenhagen Budapest London Brooklyn Manchester Venice Minnesota Manchester Budapest Sydney Paris Stockholm Bristol Bristol London Chicago Tokyo Budapest London Manhattan Paris London Chicago Copenhagen London Rome London London Berlin Copenhagen London Melbourne Paris London Paris Sydney Melbourne London Melbourne Melbourne Sydney Manhattan Sweden Salford Paris Montreal Copenhagen London Columbus London London Sydney Paris Paris Rochester Paris Sydney London Berlin Melbourne Belfast Cambridge Manhattan Paris London London London London Budapest Bristol London Berkshire Liverpool Sydney Paris London Paris Philadelphia Brooklyn Brooklyn Milan Santiago Montreal Montreal Rome Berlin Chicago Philadelphia London Paris Copenhagen London Berlin Boston London Tehran Berlin London France Bristol Bath Montreal Brooklyn Chicago Montreal Budapest Philadelphia London Baltimore Bergen London Budapest Montreal Sweden Bristol Rochester Bristol Baltimore Cambridge Paris Copenhagen London Paris Poland London London London Paris London Baltimore Beijing Tokyo Beijing Massachusetts Moscow Brooklyn Montreal Chicago Madrid Berlin Toronto Paris Massachusetts Chicago London Chicago Berkshire Chicago Chicago Paris London Brooklyn Paris Belfast London Paris Marseille Scotland Chicago Rome Sweden England Split Milan Paris Manchester Tokyo Bristol Bristol Brooklyn Copenhagen Tehran Sydney Paris Bristol Sweden Paris Chicago Boston Liverpool Philadelphia Manchester California Naples Sydney Manhattan London ================================================ FILE: a5/synthesizer.pretrain.params ================================================ [File too large to display: 12.0 MB] ================================================ FILE: a5/synthesizer.pretrain.test.predictions ================================================ London Chicago Manchester London Colombo Paris Berlin Columbus Paris Coventry Columbus Berlin London London Chatham Berlin London London Chicago Moscow Chicago Paris Chicago Toulouse Paris Columbus Baghdad Paris Brooklyn Berlin Chicago Bristol London Chicago Berlin Charleston Bath London Berlin Chicago Sydney Brandon Brooklyn Venice Chicago Paris Stockholm Montreal Stockholm Chicago Berlin Barcelona Paris California Montreal Berlin Chicago Paris China Chicago Boston Stuttgart Paris London Paris Berlin London Sofia Berlin Karachi Paris London Berlin Belfast Bristol Montreal Copenhagen Copenhagen Budapest Carmel Paris Chicago Paris Scotland Columbus Paris Venice Liverpool Chicago Sheffield Brooklyn Sydney Montreal Bristol London Bristol London London Helsinki Genoa Boston London Bristol Chicago Paris Copenhagen Brooklyn Tokyo Paris Paris Brooklyn Wales Montreal Coventry Madrid Budapest Baghdad Venice Paris Brooklyn Paris London Shanghai Paris Montreal Paris Brooklyn Sheffield Chicago London Sydney California Paris Tehran Chicago Belfast Paris Copenhagen Paris Chicago Melbourne Paris Charleston Brooklyn Bristol Paris Chicago London Melbourne Budapest Berlin Boston Chatham Toronto Melbourne Chicago Baltimore London Chicago Copenhagen Chicago Verona California Dublin Columbus Bow Chicago Paris Chicago Melbourne Paris Sydney Milan Copenhagen Sheffield Brooklyn Stockholm Belfast Brooklyn London Chicago Chicago Paris California London Stockholm Budapest Sydney Shelby Paris Paris Sydney Boulder Cambridge Amsterdam London Columbus Paris Sheffield London London Tehran Paris Berlin California Paris Rome Chicago Belfast Brooklyn Berlin London Liverpool Bristol London Montreal Sydney Paris London Shelby Budapest Baltimore Montreal Paris Berlin Melbourne Montreal Paris Chicago Tokyo Philadelphia Montreal Bucharest London London Montreal Brooklyn California Stuttgart Paris Rome Brooklyn London Paris Toledo Montreal Marseille Paris Armagh Brooklyn Melbourne Turin Budapest Chicago Canada London Brooklyn Moscow London Paris Brooklyn Berlin Paris Canada Paris Bristol Spain Paris Melbourne Chicago Montreal Limerick Calais Chicago London Chicago Melbourne Paris Montreal Paris London Bristol Belfast Venice Brooklyn Budapest Chicago London Chicago Montreal Manchester Bristol Tokyo Copenhagen Bath Berlin Bristol Barcelona Chicago London Sydney Berlin London Paris Montreal Sydney Berlin Bergen Coventry Colorado Paris London Montreal Montreal London Barcelona Canada Belgium Columbus Paris Sofia Chicago Belgrade California Sydney Montreal Sydney Paris Salford Sicily Paris Berlin Milan Moscow Chicago Paris Philadelphia Toledo Bristol Berlin Copenhagen London Stockholm Barcelona Brooklyn Chicago London Chicago Paris Brooklyn China Montreal London Split Brooklyn Paris Tokyo London London Chicago London London Bergen Manhattan Paris London Paris Milwaukee Salisbury Shanghai London Paris Paris Dublin Berlin Berlin Bristol Madison Paris Paris London Chicago Marseille Toronto California Berlin Montreal Chicago Budapest Berlin London Savannah Copenhagen Beijing Cambridge London Copenhagen Chicago Belgium Budapest Boston Manchester Liverpool Sydney Brooklyn Chicago Sydney Santiago London Copenhagen Tehran London Brooklyn Pennsylvania Sydney Montreal London Cambridge Barcelona London Bristol Sydney Sydney Brooklyn Baltimore Montreal Bristol Belfast Copenhagen Tokyo Budapest Paris Paris Sheffield Salford Chicago Paris ================================================ FILE: a5/vanilla.finetune.params ================================================ [File too large to display: 13.0 MB] ================================================ FILE: a5/vanilla.model.params ================================================ [File too large to display: 13.0 MB] ================================================ FILE: a5/vanilla.nopretrain.dev.predictions ================================================ Paris Paris Moscow Australia Budapest Liverpool Cambridge Kerala Naples Sheffield Jamaica Toronto Warsaw Montreal England Marseille Montreal Dubai Shanghai Melbourne Ljubljana Lyon Amsterdam Paris India Australia Paris Budapest Rome Maratttan Exeter Consta France Montreal Lahore Demark Glasgow Warsaw Eton Cleveland Australia Naples Concord Montreal Frankfurt Amsterdam Charleshire Sheffield Ireland Copenhagen London Coventry Brooklyn London Lyon Madrid Sacramento Westminster Antins Copenhagen Liverpool Coventry Venice Como Minnesotr London Rome Toksa Lebarsgon Oslo Waterford Aberdeen Canbary London Salford Casablanca Toronto Sydney Rome Australia Shanghai London Westminster Montreal Cambridge Montreal Sacramento Columbus Germany Lahore Melbourne Satiample Chatcas Tokyo Trinidad Nevada Riga Dublin Paris Lynn Paris Sydney Salford Lisbon Paris ARocotttrd Chicago Pague Petth Lyon Cambridge Amsterdam Warsaw Madrid Stockholm Paris France Liverpool California Murich Cambridge Charleston Cuba Saskatchewan Tronto Comerk Calais Paris Madrid Nanjing Paris Paris Brooklyn Philadelphia Chanai Montreal Cambridge Glasgow Budapest London Radinga Sameroutt Dallas Copenhagen Chicago Belfast Beredford London Memphis London Paris Como Stockholm Riga Copenhagen Frankfurt London Newark Paris Norfolk Paguris Paris Madle Paris London Augsburg Miscow Toulouse Exeter Machester Paris Shanghai Sheffield Dallas London Paris France Constantinople Glasgow London Brooklyn Cairo Tourkey Lublin Spain Bangor Rochester Germany Kazan Cambridge Jamaica Paris Norwich Machester Brooklyn Norway Norwich Naples Sdney Milan Melbourne Glasgow Paris England Cambridge Paris Iran Melbourne Moscow Naples Rome Hamilton Westminster Detroit Melbourne Glasgow London Seatttle Cambridge Madrid Prague Melbourne Paris Baghrator Brandan Chicago Tridad Lanca Sacramento Philadelphia Chicago Minnichinata Norway Montreal Illinois China London Stockholm Sydney Paris Leiden India London London Ireland Exeter Sydney Warsaw Croydon Australia Belgrade Budapest Macon Oslo Columbus Wales Wellington Paris Calis Montreal Bucharest Aklaide Warsaw London Cheshire Georgia Sofia Chicago Liverpool Chattan London Split Columbus Montreal Nottingham Melbourne Melbourne Colasta Albymany Norwich Glasgow Paris Istanbul Gloucester Melbourne Vienna Canberra London London York Melbourne Liverpool Birmingham India Boston Auberia Bristol Ireland London Paris London Chanaa Columbus London Philadelphia Berlin Vienna Australia Sydney Dublin Heidelberg London London Cambridge Sydney Berlin Columbus Mexico Montreal Edinburgh Belgium France Ireland Rome Rome Switzerland Lahore Edinburgh Bradford Tehran Chicago London Edinburgh Constan Trinidad Rochester Chicago London Stirlitg Nanjing England Barcelona Lyon Eronton Milan Westminster Biristol Narkshire Cambridge London London Minnesota Rome Sofia Manhattan Paris London Vienna Rochester Prague Holstein London Pennsylvania Toulouse Dublin Cambridge Paris Nanghar Australia California Norway Leipzig Tacoma Ireland Madrid Fulham London Berlin Madrid Lyon Rochester Ireland Stockholm England Columbus Rome Waterford Melbourne Melbourne Sydney Montreal Chicago Madrid Naples Philadelphia Rome Dublin Paris Tanmpokshire Nevada Sy London Milwaukeee Paris Rome Cairo Lahore Jamaica Rome Chicago Montreal Marid London London Glasgow London Tehran hanghai Chicago Chicago Liverpool London Chicago Liverpool Cairo Rome London Chicago Maryland Lisbon Ireland Sacramento Amsterdam Montrd Toronto Madrid Warsaw Hamilton Bristol Ossa California Montreal Nalk Minneapolis Augsburg Paris Paris Syracuse Germany Australia Tacomo Akson London Seatttle Ljubljana Machester Argentina London Argentina Ohessa Australia Milwaukee Montreal England London Paris Portland Chambridge Leiden Parid Dublin Baghdad Stttheample Cairo Rome Dublin Paris Tehran Normaydad Cairo Strantiago Lima Toklonto Riga Bangkok Chesterfield Toronto Montreal Austria Egypt Madrid Brooklyn Budapest England Derry Wentworce Genoa Miami Paris Vienna ================================================ FILE: a5/vanilla.nopretrain.test.predictions ================================================ Sydney Budapest Manchester Keral London Rochester Concord Montreal Paris Sydney Poland London Winnipeg Istanbul England Glasgow Sofia Chicago Jersey Madrid Turkey Mami Hamingh Edinburgh England Sydney Seatttle Montreal Baracelond Oslo Bohemia Montreal Chaicago Syracuse Alande Manchester Milwaukee Montreal London Canberra Belgium Rome Auckland Melbourne Berlin Toronto Miami Rome Montreal Chicago Mexico Midrid Split Stirling Bradford Chicago Stuttgart Leipzig Casablanca Melbourne Australia Hertford Edinburgh Conada Midrid Bangor Kent Odessa London London Brigham Sofia London London London Annapolis Munich Springfield Stockholm Paris Rome Chaicago Paris Brookly Edinburgh Paris Prague Montreal Berlin Peland Best Elgin Paris Montreal Santiago Calais India Paris Cterbury Montreal California Chaicago Chide Santirlington Mexico Jerusem Canada Tehran Rechester Bangor England Mingham Jerusalem Spain Rome Bahai Bathangam Paris Milwaukee Paris Salfinghe Westminster Berlin Rome Morocco England Birmingham Chicago Oslo Newark Cumberidge Beth Sydney Alas Sydney Cairo Philadelphia Rome Paris Dublin Chage Sacramento Rochester Dublin Bristol Paris Chage Columbia Rome Split Budapest Cornwall Chicago France Tehran Leipzig Cleveland Odessa Australia Sofia Dublin Madrid Prague Venice London Auckland Watford London Philadelphia Tehran Egypt Manchester Paris London Cairo England Scotland Nebrgen Split chester Middlesbrough Warsaw Cacas London Savannah Alexandria Chicago Toronto Naples Paris Manchester Cheshire Melbourne Toulouse Edinburgh Tehran London Odessa CCCheenhio Madrid Spain Tehran Rome Copenhagen Edinburgh Athens Turin Philadelphia Belgium Ireland Rotterdam Beth Croydon Leicester Norway Antwa Munich Toulouse Ottawa Oslo Belfast Madrid Winnipeg Hereford Casablanca Ohio Cuba Scotland Concord Istanbul Bradford Santiago Soutia Venice Bengen Melbourne Belfast London London London Bucharest Stuttgart London Chicago Rome Warsaw Paris California Paris Scotland Rome Turin Riga Tehran Spaineg Dallas Rome Madrid Melbourne Naples Madrid Combridge Comberidge Amsterdam Melbourne Syracuse Dublin Rome Seville Lahore Stutgart Lima Dublin Bohtire Chage Taceoma Luxembourg Amsterdam Rochester Rome Oslo Berlin Paris London Machester Bergen Banghai Montreal Belfast Norway Glasgow Manchester Canada Augsburg Montreal Chicago Bristol Paris Brigham Montreal Warsaw Sydney Rome Mexico France Rome Maryland Germany Chatttan Liverpool Egypt Paris Rome Spain Paris Bahrest Bonn Fiji England Spain Cuba Dublin Cheshire Melbourne Raga Cuba Paris Munich Springfld Paris Detroit Lyon Split Beston Winipeg Toronto Manchester Baghdad Montreal Berlin Sattle Manchester Liverpool France Rome London India Glasgow Glasgow Dallas Budapest Westminster England London Manchester Hamilton Southampton Paris Bradford Bangor Chicago Milwaukee Best Granada Frankfurt London Rochester Argentina Stockholm Montreal Berkey Montreal Newark Mobile Edinburgh Santiago Edinburgh Winnipeg Montreal Manchester Beth Cambridge Turkey Badapest Madrid Syracuse Rome Constantinople Sofia Montreal Munich Dublin Hereford Shanghai Rome Norfolk Moscow Bathamore Helsinki Chicago Venice Syracuse Budapest Oslo Flintius Waterford Canada Tacomo London Paris Ireland Melbourne Rome Oslo Granada Melbourne London Norwich London Alberdeen Paris Odesssa Lumblin London Bradford Russia Exeter London Egypt Melbourne Birmingham Athens Winnipeg Sydney Antwerp Shanghai Spain ================================================ FILE: a5/vanilla.pretrain.dev.predictions ================================================ Montreal Prague Vienna Bangalore Detroit Amsterdam Sydney Kentucky Barcelona Montreal Paris Turkey Edinburgh Stockholm Pittsburgh Milan Paris Toronto Beijing Sydney Turkey Sheffield Portugal Rome Cumberland Italy Sheffield Brooklyn Caracas Portugal Stuttgart Burnley Istanbul Helsinki London Prague Derry Warsaw London Chicago England Australia Como Montreal Montreal Dublin Glasgow Orlando Rochester London Pittsburgh Warsaw Australia Edinburgh Edinburgh Spain London Warsaw Brooklyn Paris Frankfurt California Warsaw Iran Greenville Philadelphia Venice Worcester Mexico Algiers Waterloo Boston Durham London Stockholm Cornwall Minneapolis London London Glasgow Canada Athens Sydney London Leeds Yorkshire Michigan Pittsburgh Glasgow Boston Brooklyn Chicago Melbourne Holland Amsterdam Paris Egypt Paris Yorkshire Spain Hollywood Glasgow Stuttgart Ukraine Warsaw John Detroit Alexandria Baltimore Worcester Springfield Amsterdam Paris Montreal London London Zagreb Chicago Waterford Derby Belfast Chicago Toulouse Sheffield Brazil Siena Ireland Paris Montreal George Paris Oslo Berlin Moscow Alexandria Chicago Chicago Pennsylvania London Montreal Paris Philadelphia Dallas London London Milwaukee Toronto Massachusetts Boston Ontario Turin Singapore Vienna Moscow Richmond Lahore Salford Montreal Istanbul Waterford Genoa Paris Budapest Florida London Glasgow Melbourne Delaware Stockholm Amsterdam Edinburgh Beijing Stockholm Paris Westminster Chicago Florence Norway Adelaide Cambridge Hamilton England Manhattan Dublin Hull Belgrade Minnesota Montreal Prague Vienna Toronto Bergen Leipzig Australia Kentucky Edmonton Derry Montreal Illinois Prague Dayton Akron Budapest Birmingham Edinburgh Copenhagen Iran Trinidad Belfast Winnipeg Baltimore Newark London Santiago Bristol Minnesota London Colorado Spain Athens Toronto Boston Nevada Liverpool Athens Canberra Athens Paris Shanghai Leipzig Prague Poland Birmingham Sydney Montreal Dublin Ottawa Sulderland Warrington Boulder Philadelphia Springfield Boston Liverpool Ireland Manchester Philadelphia Budapest Glasgow London Worcester Bergen Inverness Surrey Amsterdam Salford Boston Como Paris Boston Bristol Sofia Ontario Stuttgart Prague Paris Tbilisi Finland Scotland London Lawrence Zagreb Vienna Watford Chicago Rome Lisbon Manhattan Charleston Philadelphia Oslo Hamburg Greenville Australia Tehran Paris Hamilton Paris London Charleston Boston Brooklyn Birmingham Basel London Hamilton Berlin Toronto Liverpool Naples Middlesex Bradford Prague London Berlin Stanford Paris Karachi Vienna Stockholm Ottawa Buffalo Glasgow Philadelphia Tirana London Chicago Montreal Tehran Oslo Chicago Paris England Edinburgh Erie Montreal Illinois England Munich Tokyo Angus London Minneapolis Paris Australia Detroit Irvine Brooklyn Athens Austin Canberra Australia Paris England Austin Montreal Italy Paris Glasgow Birmingham London Stockholm Venice Sofia Cambridge Alabama Amsterdam Dallas Rome Prague Glasgow Melbourne London London Dunbar Paris Athens Rochester Paris Sweden India Liverpool Germany Chicago Italy Fulham Detroit Dayton Antwerp Waterford Gothenburg Oslo Liverpool Exeter Chicago Rome Adelaide Naples Pennsylvania Paris Chicago Aldous Bristol Stuttgart Bucharest Florence Albany Madrid Spain Baltimore Cambridge Cambridge Switzerland Canberra Sheffield Vienna Sydney Singapore Rome Bradford London Marseille Spain Chicago Amsterdam Rochester Turkey Oslo Pakistan London Boston Melbourne Sheffield Berlin Detroit Manhattan Sydney Montreal Melbourne Australia Wilmington Oklahoma London Paris Winnipeg Paris Warsaw Sydney Auburn Rochester Milwaukee Montreal Vienna Beijing Mexico Nanjing Peterborough Canberra Paris Palermo Dallas Jamaica England Everett France Amsterdam Toledo Newport Chicago Istanbul Karachi Toulouse India Cambridge Brooklyn Brooklyn Paris Chicago England Paris Columbus Manchester Paris Antwerp Manchester Turkey Silesia Trinidad Milwaukee Turkey Milwaukee Chicago Bucharest Copenhagen Bangalore Amsterdam Paris Toronto Lille London Cuba Boston Birmingham Hamilton England Charlotte Italy Rotterdam Edinburgh England ================================================ FILE: a5/vanilla.pretrain.params ================================================ [File too large to display: 13.0 MB] ================================================ FILE: a5/vanilla.pretrain.test.predictions ================================================ India California Maine Birmingham Edmonton Pasadena Belgium Manchester Marseille London Melbourne Leipzig Croydon Prague Bathurst Oslo Milwaukee Richmond Chicago Germany Lincoln Naples Bethledo Paris Melbourne Melbourne Perth Florence England Annapolis Worcester Bethledon England Amsterdam England Minneapolis Liverpool England Oslo Canada Dublin Jerusalem Dublin Milan Germany Toronto England Rome Oslo Chicago Exeter Watford Plymouth Barcelona Swindon Ghent London Paris Kansas Bristol Spain Amsterdam Madrid Oxford Moscow Budapest Iran Milwaukee Pennsylvania Germany Naples London Carthage Ontario Philadelphia Paris Philadelphia Canada Glasgow Alexandria England Boise Paris Ottawa Prague Liverpool Madrid Limerick Dayton Copenhagen Melbourne Chicago Genoa Mansfield Warsaw Nuremberg Inverness England Kingston Palermo Minneapolis Kerala Edmonton Belfast Melbourne Estonia Springfield Chicago England Turin Montreal Rochester Wilmington Charleston France Split Barcelona Florence Santiago Newark Berlin London Lisbon Warsaw Montreal Backest Rochester Morocco Sheffield Cambridge Hamilton Poland Dublin Karachi Philadelphia Baltimore Minneapolis France Queensland Illinois Norwich Waterford Dallas Germany Liverpool Malta Amsterdam London Melbourne Zagreb London Turkey Armagh Iran Tirana GDE Liverpool Istanbul Spain Tbilisi London Paris Pike Manchester Rotterdam Paris Winnipeg Kazan London Lyon Prague Newton Naples Keefa Minneapolis Edinburgh Philadelphia Lublin Auburn Birmingham Prague Chicago Paris Paris London Leipzig Norfolk London Havana Montreal Southampton Sydney Hungary England Istanbul Nanjing London Granada Dayton Borneo Baghdad Tehran Minnesota Bristol London Amsterdam Brooklyn Belfast Minneapolis Baltimore Rochester Ottawa Oslo Mississauga Scotland Vienna Virginia Toulouse London France Frankfurt London Birmingham Paris Toronto Madrid Dublin Portland Portland Plymouth Dublin Toronto Italy Paris Poland Milan Bradford Edinburgh Oslo Athens Manhattan Marseille Springfield Granada Mauritius Sydney Marseille Newark Richmond Manchester Montreal Paris Verona Brooklyn Boston Richmond Bucharest Sweden Lublin Madison Germany Paris Malta Genoa Venice Toronto London Paris Richmond Naples Budapest Paris Minnesota Melbourne Baghdad Chicago Montreal London Frankfurt Oslo London Hamilton Norfolk Manhattan Glasgow Bremen Armagh Oklahoma Budapest Norwich Amsterdam Bristol Tokyo Alexandria Paris Budapest Kentucky Athens London Chicago London Sydney Italy Paris London Florida Bristol Bergen Auburn Portland Salisbury Norwich Edinburgh Oklahoma Wellington Canterbury Stuttgart Columbus Queensland Norwich Amsterdam England London Florence Sydney Portland Cambridge Moscow Edinburgh Florida Dublin England Sofia Kiev Havana Portland Casablanca Baghdad Sønderborg Toledo London Cambridge Melbourne Birmingham Berlin Montreal Melbourne Glasgow Athens Bristol Budapest Hollywood Victoria Amsterdam London Melbourne Algiers London Harrisburg Norwich Fleming England England London London Cairo Paris Singapore Pittsburgh Mexico Budapest Paris Glasgow Melbourne Oslo London London Athens London Toronto Dundee Michigan Florence Lisbon Rome Chicago Milan Chicago Sofia Glasgow Split Paris Casablanca Amsterdam Rome Dublin Rotterdam Milwaukee London Sheffield Augsburg Jersey Yorkshire Dallas Liverpool Wisconsin Dundee Philadelphia Montreal Ireland Kazan Newark London England Athens Melbourne London Dunbar London London London Durham Budapest Bradford Canada Toronto Edmonton Illinois Belfast Toledo Budapest Bristol Paris Cambridge Stockholm Shanghai England ================================================ FILE: a5/wiki.txt ================================================ Khatchig Mouradian. Khatchig Mouradian is a journalist, writer and translator born in Lebanon . Jacob 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 . John Stephen. Born in Glasgow, Stephen became a welder's apprentice on leaving school . Georgina Willis. Georgina Willis is an award winning film director who was born in Australia and now lives in London . Stanley Corrsin. Corrsin was born on 3 April 1920 in Philadelphia, Pennsylvania . Eduard Ender. Eduard Ender (3 March 1822 Rome -- 28 December 1883 London) was an Austrian painter . John Fisher. Born in Glasgow, Fisher is a graduate of the London Opera Centre, the Royal Academy of Music, and the University of Glasgow . Iago Dekanozishvili. Iago Dekanozishvili (born in 1951 in Tbilisi) is a Georgian artist, a graduate of the Tbilisi State Academy of Fine Arts . Lucy 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 . George Osborn. Osborn was born at Rochester in 1808 . Leslie Hofton. Born in Sheffield, Hofton began his career at Kiveton Park, before moving to Glossop via Worksop Town and Denaby United in April 1908 . Chiyoki Ikeda. Chiyoki Ikeda (born 3-11-1920 Honolulu, Hawaii; died 3-17.1960) was listed in the CIA Memorial Wall on May 14, 1997 . Geoffrey Nutter. Geoffrey Nutter is an American poet, born in Sacramento and based in New York . Eyolf Kleven. Born in Copenhagen, Kleven played as a midfielder for AB from 1927 to 1944 . Marvano. Marvano and Haldeman also worked together on a comic adaption of the novel Buying time called Dallas Barr . Naïma Azough. Naïma Azough (born April 1, 1972 in Asdif, Morocco) is a Dutch politician for GreenLeft . Eugenia Popa. Eugenia Popa (born September 10, 1973 in Bucharest, Romania) is a retired Romanian artistic gymnast . Douglas 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 . Hans Gefors. Hans Gefors (born 8 December 1952 in Stockholm) is a Swedish composer . Sohail Fazal. Sohail Fazal (born November 11, 1967, Lahore, Punjab) is a former Pakistani cricketer who played two ODIs in 1989 . James Johnson. Born in Virginia, Johnson completed preparatory studies . Håvard Rem. Håvard Rem (born 7 February 1959 in Oslo) is a Norwegian author, living in Telemark . Hubert Schiffer. Father Hubert Schiffer, born in Germany in 1915, was one of eight Jesuits who survived the bomb dropped on Hiroshima . Ivan 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 . Guido Marzorati. Guido Marzorati (born 1975, Venice, Italy) is a guitarist, singer, and songwriter . Sean Hickey. Sean Hickey is a composer, born in Detroit, Michigan, in 1970 and currently based in New York . Hector de Castro. Born in Constantinople, de Castro was educated in Paris and Vienna . Lloyd 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 . Alois Wachsman. Alois Wachsman (14 May 1898 Prague - 16 May 1942 Jičín) was a Czech painter, stage designer and architect . Martin 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 . Mohammad Hossein Barkhah. Mohammad Hossein Barkhah (, born 24 January 1977 in Tehran) is a retired weightlifting champion in Iran . James Robert Rhind. James Robert Rhind, architect, was born in Inverness, Scotland in 1854 and trained as an architect in his father's local practice . Jean Hamilius. Jean Hamilius (born 5 February 1927 in Luxembourg City) is a former Luxembourgian politician and government minister from the Democratic Party . Danny Seward. Danny Seward is a British television actor who was born in Salford, Greater Manchester, England on 17 May 1976 . Stephen 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 . Louie 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 . Marcus Junkelmann. Marcus Junkelmann (* Oct 2 1949 in Munich) is a German historian and experimental archeologist . John Dodington. John Dodington (born 3 July 1945) is a Canadian operatic bass . Graham Salisbury. Graham Salisbury (also known as Sandy Salisbury) (born April 11, 1944, Philadelphia, Pennsylvania) is an American author . Bunny 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 . Cenk Renda. Cenk Renda (born 10 January 1969 in Turkey) is a former professional basketball player from Turkey . Mihael Brejc. Miha Brejc was born to a Slovene family in Belgrade, Serbia, Yugoslavia . Gordon Baldwin. Gordon Baldwin born 1932 in Lincoln, England is an influential British studio potter . Shlomo Shriki. Shlomo Shriki, Israeli painter and artist, born in Morocco (1949), grew up and was educated in Kibbutz Yifat . Tatiana Belokonenko. Tatiana Belokonenko (, ) is a figurative art painter born in Odessa, Ukraine . Rob 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 . Andreas Musalus. Andreas Musalus was born to a noble Greek family in 1665, in Candia on the island of Crete . Francesco Maria Bonini. Born in Naples, Bonini studied singing with Beniamino Carelli at the Conservatory of San Pietro a Majella in his native city . Raymond 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 . Stephen Carter, Baron Carter of Barnes. Born in Scotland, Carter was educated at Currie High School, Edinburgh . Jack 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) . Julia 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 . James 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 . Wang 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 . Ronny Swiggers. Ronny Swiggers (born 1961 in Belgium) from Mechelen is one of Belgium's most successful quiz players . Sofia Ester. Sofia Ester was born in 1978, in Lisbon . Nathan Long. Nathan Long born in Australia is a former rugby league player . Ylli Bufi. Ylli Bufi (born 25 May 1948, Tirana) is an Albanian politician who served briefly as Prime Minister of Albania in 1991 . Sir 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 . John Seru. John Seru (born 12 January 1964, Australia) is an actor and former professional wrestler . Sebastiano Maffettone. Sebastiano Maffettone (born April 14, 1948 Naples) is an Italian philosopher, currently University Professor at LUISS University of Rome . Wang Wei. Wang Wei (; born 25 December 1978 in Beijing, China) is a baseball catcher from the People's Republic of China . Theodore Baskin. Theodore Baskin (born June 14, 1950) has been Principal Oboe of the Orchestre Symphonique de Montréal since 1980 . Ferenc Sipos. Ferenc Sipos (b. 13 December 1932, Budapest; d.1997) was a Hungarian footballer and trainer . Tadahisa Saizen. Tadahisa Saizen (西前忠久 Saizen Tadahisa) is a seiyuu born in Tokyo on 25 September 1964 . Arthur Harold Stone. Arthur Harold Stone (30 September 1916 -- 6 August 2000) was a British mathematician born in London, who worked mostly in topology . Bransby 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 . Walter Branscombe. Nothing is known of Branscombe's ancestry or education, but he was born in Exeter about 1220 . Jeanne Deroin. Born in Paris, Deroin became a seamstress . Frederick 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 . Patrick Thomas Stone. Born in Pembroke, Ontario, Canada, Stone received an LLB from Marquette University Law School in 1912 . Andrea Neil. Andrea Neil (born October 26, 1971 in Vancouver, British Columbia) is an accomplished female soccer player . Karl Albert Buehr. Karl Albert Buehr (1866--1952) was a painter born in Germany . Alexander 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 . Gilbert John Arrow. Gilbert John Arrow (20 December 1873 London- 5 October 1948) was an English entomologist . John Howard. John Howard is an English author, born in London in 1961 . Elizur Goodrich. Born in Durham, Connecticut, he was the son of Elizur Goodrich . Zenon 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 . Greta Knutson. Born in Stockholm, Greta Knutson studied at the Kungliga Konsthögskolan, and settled in Paris, France during the early 1920s . Paul Daniels. Paul Daniels (born 4 June 1981 in Burlington) is an American rower . Tom Jones. Tom Jones (born April 26, 1943) is an American former racing driver, born in Dallas, Texas . Elizabeth Bartlett. Elizabeth Bartlett (24 April 1924 Deal, Kent - 18 June 2008) was a British poet . Laura Moriarty. Laura Moriarty (b. December 24, 1970, Honolulu, Hawaii) is an American novelist . David 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 . Richard Tillinghast. Richard Tillinghast is a native of Memphis, Tennessee, a graduate of Sewanee (BA, 1962) and Harvard (MA, 1963; PhD, 1970) . Judith 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 . Eugen Enderlen. Eugen Enderlen (January 21, 1863 -- June 7, 1940) was a German physician and surgeon born in Salzburg, Austria . Frank Farrell. Frank Farrell (31 March 1947 -- 19 July 1997) was a British rock bassist, vocalist and songwriter born in Birmingham, England . John Savage. John Savage, who was born in Dublin on 13 December, 1828 . Joel 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 . Jan Cox Speas. Jan Cox Speas (1925 -- 1971) is a short story writer and novelist born in Raleigh, North Carolina in 1925 . Norman Spector. Born in Montreal, Quebec, Spector received a Bachelor of Arts with Honors in Political Science, from McGill University in 1970 . Peeter van Bredael. Pieter van Bredael was born at Antwerp in 1622, and entered the Guild in 1650 . John 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 . Sir 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 . Azra Erhat. Azra Erhat (b. 6 June 1915, Istanbul -- d 6 September 1982, Istanbul) was a Turkish authoress, archaeologist, academician and translator . Helen Sharsmith. Helen Sharsmith was born 1905 in Oakland, California . Jeff Spiers. Jeff Spiers (born 2 May 1967 in Belfast) is a retired Northern Irish footballer and coach . Ilus Vay. Ilus Vay (February 20, 1923 Budapest - October 28, 2008 Budapest) was a Hungarian film and television actress . Igors 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 . Harry Chadwick. Harry Chadwick (born 13 November 1930 in Toronto, Ontario) was a member of the Canadian House of Commons from 1988 to 1993 . Franz Rummel. Franz Rummel (January 11, 1853May 2, 1901) was a German pianist, born in England and active across continental Europe . Jim Grace. Jim Grace (born 17 July 1954 in Dublin) is a former Irish footballer . Ali Sarmini. Sarmini later achieved a doctorate in Fine Arts from the Berlin-Weißensee Academy of Arts in Germany . Robert Daniel Murphy. Born in Milwaukee, Wisconsin, Murphy had begun his diplomatic career in 1917 as a member of the American Legation in Bern, Switzerland . Shannon Emerick. Shannon Emerick (Born in Dallas, Texas) is an American stage actress and voice actress . Walter Gretzky. Tony and Mary owned a cucumber farm in Canning, Ontario where Walter Gretzky was born and raised . Kristian Geelmuyden. Kristian Geelmuyden (born 12 November 1875 in Oslo, died 18 August 1969) was a Norwegian politician for the Conservative Party . Tala 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 . Jules Louis Lewal. Jules Louis Lewal (13 December 1823 Paris 22 January 1908 Senlis) was a French general . Patrick 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 . Renaud Gagneux. Renaud Gagneux (born 15 May 1947 in Paris) is a French composer . Elizabeth Burmaster. Born in Baltimore, Maryland, Burmaster received her bachelors and masters degrees from University of Wisconsin-- Madison and was in public school administration . Dave Mazzoni. Mazzoni was born and grew up in Philadelphia . Aamer Haleem. Born in London, Haleem was raised in Canada, where he attended the University of Toronto and the School of Journalism at Humber College . John 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 . Jan Jacob Kieft. Born in Amsterdam, Kieft was part of the Dutch gymnastics team, which finished seventh in the team event . Wilhelmine von Hillern. Wilhelmine von Hillern (11 March 1836 Munich - 15 December 1916 Hohenaschau) was a German actress and novelist . Tracey Magee. Tracey Magee (b. 27 March 1969, Belfast) is a Northern Irish broadcaster and journalist . George Edward Hughes. George graduated MA with First Class Honours in Philosophy and English, and then in pure Philosophy, from the University of Glasgow . Alexander Riese. Alexander Riese (2 June 1840 Frankfurt am Main - 8 October 1924 Frankfurt) was a German classical scholar . Tina Kim. Tina Kim (born 1973 in Seoul, Korea) is a Korean-American stand-up comedian . Bernard de Wolff. Bernard de Wolff (November 1, 1955), Dutch painter, was born in Amsterdam . Peter Ording. Peter Ording (born 22 December 1976 in Stade) is a German rower . Branko Rasić. Branko Rasić (born February 13, 1976, in Prokuplje, Serbia) is a Serbian footballer (striker) playing currently for Unia Janikowo . Ketil Hvoslef. Ketil Hvoslef (né Ketil Sæverud; born 19 July 1939 in Bergen, Norway) is a Norwegian composer . John Carlin. John Carlin was a first class cricketer and test umpire http://www.cricinfo.com/england/content/player/11009.html . Antonio Selvaggio. Antonio Selvaggio (born 1 January 1958 in Palermo) is a retired male long-distance runner from Italy . Michael 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 . Paula 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 . John 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 . Beth 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'') . José Bénazéraf. José Bénazéraf (born January 8, 1922 Casablanca, Morocco) is a French filmmaker and producer . Witold Nazarewicz. Witold Nazarewicz is a nuclear physicist born in Warsaw, Poland, currently teaching at the University of Tennessee . Aarne Lakomaa. Born in Finland, Lakomaa graduated from Helsinki Polytechnics . Jerry 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 . Yanitzia Canetti. Yanitzia Canetti (born in 1967 in Havana, Cuba) is a Cuban author, translator, and editor . Ken Niles. Ken Niles (December 9, 1908, in Livingston, Montana -- October 31, 1988) was an American radio announcer . Riccardo Maspero. Riccardo Maspero (born 19 February 1970 in Lodi, Italy) is an Italian footballer who played as an attacking midfielder, most notably with Cremonese . Margaret Maury. Margaret Maury, née Kerubo (born 15 May 1974 in Kenya) is a French long-distance runner who specializes in the 5000 metres . Bernard 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 . Caroline Beil. Caroline Beil (born 3 November 1966 in Hamburg) is a German actress and television presenter . Joseph Judah Chorny. Joseph Judah Chorny was a Russian traveller, born at Minsk in 1835, on the 20th April . Thomas Godfrey Faussett. Faussett was born at Oxford in 1829, was a younger son of the Rev . Árpád Soós. Árpád Soós (20 September 1912 Budapest -- 1 June 1991 Budapest) was a Hungarian zoologist, entomologist and museologist . Samuel Davidson. Samuel Davidson (23 September 1807 -- 1 April 1898) was an Irish biblical scholar who was born near Ballymena in Ireland . Leonard 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 . Sheyene Gerardi. Sheyene Gerardi (born April 13,in Caracas, Venezuela) is a Venezuelan actress and model . Bryn Atkinson. Bryn Atkinson (born 9 December 1982, Canberra, Australian Capital Territory) is an Australian professional mountain bike racing cyclist from Townsville, QLD . Claudine 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 . Peter 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 . Stanis%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 . Sean Naylor. Born in Calgary, Canada to British parents, Naylor earned a master's degree in international relations in 1990 from Boston University . Jean Muller. Jean Muller was born on 11 December 1979 in Luxembourg City, son of Gary Muller, a piano teacher . Victoria Roberts. Born in Manhattan, Roberts grew up in Mexico City and Sydney . Thomas 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 . Richard 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 . Webster Edgerly. Born in Massachusetts to Rhoda Lucinda Stone and John Foss Edgerly, he graduated from the Boston University School of Law in 1876 . Peter Smedley. Smedley was born on 2 January 1943 in Perth, Western Australia where he completed his secondary education at the Christian Brothers' Aquinas College . Eric Ziebold. Eric Ziebold (born in 1972 in Iowa) is an award-winning American chef and restaurateur behind CityZen in Washington D.C . Adam 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 . Syms Covington. Originally named Simon Covington, he was born in Bedford, Bedfordshire, England, the youngest child of Simon Covington V and Elizabeth Brown . Joan Vincent Murray. Joan Vincent Murray (born February 12, 1917 London - January 4, 1942 Saranac Lake, New York) was a Canadian American poet . Gabriela Kulka. Gabriela Kulka (known as Gaba Kulka, born 1979 in Warsaw, Poland) is an independent artist, a songwriter and performer . Andrea 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) . Donald 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 . Joe Daly. Born in London, United Kingdom, Daly studied animation for two years at Cape Town's City Varsity . Jane R. Goodall. Born in Yorkshire, England, Goodall studied at London and Oxford Universities . Natalia 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 . Charles Murphy. He was born on 8 December 1862 in Ottawa, the son of James Murphy, who came to Ontario from Ireland, and Mary Conway . Charles Duncan. Born in Middlesbrough, Duncan was the son of a ship's pilot . Adel 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 . William 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 . Thomas 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 . Michael Manuel. Michael Manuel (born January 12, in Tacoma, Washington) is an American actor . James William Wallack. James William Wallack (c. 1794--1864) was an Anglo-American actor and manager, born in London, and brother of Henry John Wallack . Neil Swaab. Neil Swaab (born 2 January 1978 in Detroit, Michigan) is a New York based artist, designer, writer, and educator . Jean Cotelle. Jean Cotelle, 'the younger', was a painter and engraver, born in Paris in 1645 . Nick Hall. Nick Hall (born 31 December 1973, Birmingham) is an English singer-songwriter . Julie Aberg Robison. Born in Madison, Wisconsin, Robison holds a master's degree in urban and regional planning from the University of Wisconsin-- Madison . Fina de Calderón. Fina de Calderón (August 21 1927 Madrid- January 12 2010 Madrid) was a Spanish writer, poet, songwriter, and musician . Gordan 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 . Francis 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 . Katherine Prescott Wormeley. Born in England, Katherine Prescott Wormeley emigrated to the United States at a young age . Avi 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 . James 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 . Samuel Kneeland. Samuel Kneeland (1 August 1821 Boston, Massachusetts -- 27 September 1888 Hamburg, Germany) was a naturalist of the United States . Denise 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) . Riccardo 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 . Russell 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 . Bachar Kouatly. Bachar Kouatly (born 3 March 1958, Damascus) a Lebanese-- French chess master, journalist and activist . Charles 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 . John 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 . Russya. Born in the Kiev, Ukraine, Russya was raised within a family of musicians . Brian White. Brian White (born 17 January 1951 in Winnipeg, Manitoba) was a Progressive Conservative party member of the Canadian House of Commons . Ashley Gilbertson. Ashley Gilbertson (born 22 January 1978) is an award-winning photographer best known for his images of the Iraq war . Rosere 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 . James 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 . Dennis Rea. Born in Chicago, Illinois, Rea grew up in Utica, New York . Nick Pugh. Born in Paris, Pugh grew up in the Berkeley Hills east of San Francisco . Douglas Fee. Douglas Fee (born 21 July 1944 in Kingston, Ontario) was a member of the Canadian House of Commons from 1988 to 1993 . Colin Carr. Born in Liverpool, Carr is a professor of the cello, currently at the Royal Academy of Music . Robert Harth. Robert Harth (June 13, 1956 Louisville, Kentucky - January 30, 2004 New York, New York) was Carnegie Hall's executive and artistic director . Pierre 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 . Lionello 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'' . Marcin Gawron. Marcin Gawron (; born 25 May 1988, in Nowy Sącz, Poland) is a Polish tennis player . Alex Coke. Alex Coke (born 1953, Dallas, Texas) is a jazz saxophonist and flutist . Martinus Tels. Martinus Tels was born on 16 August 1926 in Rotterdam . Matthew Kent. Matthew Kent (born 2 July 1980, in Melbourne, Australia) is an Australian baseball player . Johan 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 . Norbert Balatsch. Norbert Balatsch (born 10 March 1928, Vienna) is an Austrian conductor and chorus master . Eugen von Halácsy. Eugen von Halácsy (1842 - 1913) was an Austrian physician and botanist of Hungarian descent who was born in Vienna . Fergus Morton, Baron Morton of Henryton. Born in Glasgow, he was a younger son of George Morton . Horatio Balch Hackett. Horatio Balch Hackett (December 27, 1808 - November 2, 1875), American biblical scholar, was born in Salisbury, Massachusetts . Pascal Aubier. Pascal Aubier is a French actor, director, script writer, producer and editor, born in 1943 in Paris (France) . Steven Alexander. Steven Alexander is an American filmmaker born in London, England, immigrated to New York City in the 1980s . Ray 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 . Luke Youlden. Luke Youlden (born 28 January 1978 in Melbourne, Australia) is an Australian motor racing driver . Michael Urbano. Michael Urbano (born March 19, 1960, Sacramento, California, USA) is a studio drummer, band member, programmer, and record producer . Ernst Fries. Ernst Fries (22 June 1801 Heidelberg -- 11 October 1833 Karlsruhe) was a German painter . Giovanni Polese. Born in Venice, Polese studied singing in his native city and made his professional singing debut performing there in a concert in 1892 . Ellie Tesher. Born in Toronto, Ontario, Tesher studied sociology at the University of Toronto . Alain de Cadenet. Alain de Cadenet (born 27 November 1945 in London) is an on air personality for the Speed Channel and ESPN . Jemma Gawned. Jemma Gawned (born 22 December 1974 in Perth, Australia) became well known as a contestant on Big Brother Australia 2001 . Reginald Henry Campbell. Reginald Henry Campbell (born 2 December 1877, date of death unknown) was a British artist born in Edinburgh, Scotland . Elfie 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 . Frederic Heath. Frederic F Heath was born September 6, 1864 to a Republican family in Milwaukee, Wisconsin . Jimmy Norris. Jimmy Norris (born 25 July 1988, Newport, Wales) is a Welsh rugby union player . John Baird. Born in Glasgow, he was the son of Alexander and Mary Baird . Giacomo Luigi Brignole. Brignole was born on 8 May 1797 in Genoa . Kenn Burke. Kenn Burke, a ballet dancer, was born in Fife, Scotland . Anna 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 . George Schlukbier. Born in 1951 in Germany, Schlukbier was the younger of two sons of a career US military officer . Pietro 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. . Ole Buck. Ole Buck (born 1 February 1945 in Copenhagen) is a Danish composer . Alastair Gordon. Alastair Gordon (born 8 December 1976 in Sydney) is an Australian rower . Dariusz Lipiński. Dariusz Lipiński (born August 4, 1955 in Warsaw) is a Polish politician . Che Arthur. Born in Mobile, Alabama, Arthur played guitar, keyboards, bass, and drums in numerous Southern US touring rock bands . Alan Wace. Alan John Bayard Wace (13 July 1879 in Cambridge, England -- 9 November 1957, in Athens, Greece) was an English archaeologist . Scientist. 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 . Pat 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 . Elizabeth Filippouli. Elizabeth Filippouli is a media and business consultant, and former television journalist born in Athens(Greece) . Al Harewood. Al Harewood (born June 3, 1923) is a musician and teacher, born in Brooklyn . Laurie Fisher. Laurie Fisher born in Canberra was the Head coach of the ACT Brumbies between 2005 and 2008 . Neil M. Cohen. Cohen received a BA from Athens College (now Athens State University) in History and was awarded a JD from the Howard University . Carl Blumenreuter. Carl Blumenreuter (* 16 November 1881 in Berlin; † 11 Juli 1969 in Neustadt in Holstein) was a German chemist and politician . Ian Dench. Ian Dench (born 7 August 1964, Cheltenham, Gloucestershire) is a British songwriter and musician . George 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) . Charles A. Barlow. Born in Cleveland, Ohio, Barlow attended the common schools . Didier Pfirter. Didier Pfirter (born 1959, Basel) is a Swiss diplomat . Jon Stock. Jon Stock (born 12 May 1966 in England) is a British author and journalist . Michael Gallagher. Gallagher was born on 14 December 1978 in Scotland . Sergei Ordzhonikidze. Sergei Ordzhonikidze (born on 14 March 1946 in Moscow) is a Russian diplomat . John 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 . A. G. E. Blake. Anthony Blake was born in the UK in the city of Bristol in 1939 . Billy Hoffman. Billy Hoffman, also known as Acidus, is an American hacker, born in Atlanta, Georgia on October 15, 1980 . Marcello Abbado. Marcello Abbado (born 7 October 1926, Milan) is an Italian composer, conductor, and pianist . Eugé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 . Russell Stannard. Russell Stannard is a retired high-energy particle physicist, who was born in London, England, on December 24, 1931 . Charles Ejogo. Charles Ejogo born in London, England, 1976, is a British entrepreneur . George 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 . Mary Jean Stone. Mary Jean Stone (born at Brighton, Sussex, in 1853; died at Battle, Sussex, 3 May 1908) was an English historical writer . Mat Chivers. Mat Chivers is a British artist born in 1973 in Bristol . Linda MacLennan. Born in Toronto, MacLennan is the daughter of a Canadian father and an American mother . Marthe Chenal. Born in Paris, Chenal was educated at the convent at the Basilique du Sacré-Cœur, Paris . Horatio 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 . Adolfo Davila. Adolfo Davila (born 1965) is video and film director born in Mexico . Charles Cotin. Charles Cotin or Abbé Cotin (born 1604 in Paris; died December 1681 in Paris) was a French abbé, philosopher and poet . Wayne 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 . Aldo Franchi. Aldo Franchi (21 March 1882 Milan -- Unknown) was an Italian racecar driver . Dennis 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) . Ferenc Mérei. Born in Budapest into a bourgeois family, Mérei often spent time in his parents`` photography studio at the Garay Bazaar . Roger Brunet. Born in Toulouse, Brunet attended the University of Toulouse, where he earned his PhD in 1965 . Theodore 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 . Michael Francis Phelan. Born in Lynn, Massachusetts, Phelan attended the public schools . Celestino Sfondrati. Sfondrati was born at Milan . Samuel Verblunsky. Samuel Verblunsky (1906 June 25 London -- 1996) was a British mathematician who introduced Verblunsky's theorem and Verblunsky coefficients . David Stainer. David Stainer (born 4 May 1978 in Exeter ) is an English quizzer best known for outstanding team playing skills . Andrew O'Neill. Born in Portsmouth in 1979, O'Neill grew up in the suburban town of Wallington . Gritakumar 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 . Des 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 . Dumont 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 . Conrad Keely. Born in England of Irish and Thai descent, Conrad grew up in Thailand, the US state of Hawaii and Bedworth, England . Titane Laurent. Born in Morocco, Laurent grew up in Belgium, lived in Luxembourg and is a New Zealand citizen and a permanent resident of Australia . Edwin 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) . Ronnie Stephenson. Ronnie Stephenson (born 26 January 1937 in Sunderland -- died 8 August 2002) was an English jazz drummer . Will 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'') . Rosina 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 . Sylvester 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 . Julie Mullen. Julie Mullen (born 27 October 1957, Liverpool) is a Liverpool poet . Charles Kemper. Charles Kemper (September 6, 1900 -- May 12, 1950) was an American stage-trained film character actor born in Oklahoma . Philip Smouha. Philip Smouha was born on 3 May 1952 in Sydney, Australia, and was the owner of Smouha Fabrics Group . Jan Jakob Tønseth. Jan Jakob Tønseth (born 1 September 1947 in Oslo) is a Norwegian author, poet and translator . Tony Mitchell. Tony Mitchell is a Canadian-British film and TV director, born in Toronto, who moved to London in his teens (1972) . Michel Host. Michel Host (born 1942 Flanders) is a French writer . Yang 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 . Tom Mattera. Mattera was born and grew up in Philadelphia . Maarten 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) . Brian Ervine. Brian Ervine (born October 1951, Belfast) is a playwright, songwriter and teacher living in Belfast, Northern Ireland . Takeshi 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 . Stephan 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 . John Barry. Born in London, Barry worked as an architect with experience in stage design . Stanisł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 . Harvey Emerson Oswald. Harvey Emerson Oswald, born in Columbus, Ohio, September 11, 1918, enlisted in the US Naval Reserve in April 1938 . Alec Mullen. Alec is now involved in amateur boxing coaching & running a successful boxing club in his home town of Irvine . Alexander Mishnaevski. Alexander Mishnaevski is a Russian-born American violist, the principal violist of the Detroit Symphony Orchestra . Leo Ehrnrooth. Leo Ehrnrooth (March 10 1877 in Helsinki -- July 26 1951 in Sweden) was a Finnish politician . John William Thomson. John William Thomson (born 28 December 1928 in Toronto, Ontario) was a Progressive Conservative party member of the Canadian House of Commons . Steve 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 . Alexander 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 . Jimmy Gregg. Jimmy Gregg (born in 1947 in Dublin) is a former Irish football player during the 1960s and 1970s . Raymond Castilloux. Raymond Castilloux (born November 23, 1934 in Paspébiac, Québec) is former racing cyclist, who was born in Canada . Florent Fidèle Constant Bourgeois. Florent Fidèle Constant Bourgeois, a French landscape painter, engraver, and lithographer, was born in Paris in 1767 . Isaac Sharp. Born January 13, 1681, in Dublin, Ireland, Isaac Sharp was the eldest surviving son of Quaker Anthony Sharp and Ann Crabb . Asa G. Yancey, Sr.. Asa G Yancey Sr., M.D., was born in Atlanta, GA in 1916 . Robert 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 . Jan 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 . Harold Arthur Stuart. A graduate of King's College Cambridge, Harold Stuart was born in the city of York to Peter Stuart . Gerry Markman. Gerry Markman (born 16 August 1950 Montreal), is a Canadian guitarist . Amber Parkinson. Amber Parkinson (born 3 October 1976 in Melbourne) is an Australian Epee fencer . Alexander Cores. Born in Russia, Cores studied in Berlin and at the Juilliard School under Leopold Auer and Paul Kochanski . Homa Shaibany. Homa Shaibany (Born in Iran) was Iran's first woman surgeon . George Arnald. George Arnald was born in 1763 . William M. Crane. Crane was born in 1776 at Elizabethtown, New Jersey and appointed midshipman in 1799 . Samuel Joseph Fuenn. Samuel Joseph Fuenn (September 1819 -- January 11, 1891) was a Russian scholar born in Vilnius . Aurel 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 . Marie 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 . Mihály Kovács. Mihály Kovács (born 10 September 1957 in Budapest) is a Hungarian former handball player . Susan Bullock. Susan Bullock (born 9 December 1958 in Cheshire) is an English soprano . Ximena Armas. Ximena Armas, born 29 July 1946 in Santiago (Chile), is a Chilean painter . John David Hennessey. J D Hennessey and David Hennessey, journalist and author, was born in London and went to Australia in 1875 . Simone Pasticcio. Simone Pasticcio (born 11 January 1976 in Genoa) is an Italian footballer . Andreas 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 . Michael Birt. Michael Birt was born on 18 January 1932 in Melbourne, Australia . William 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 . Harry Philbrick. Harry Philbrick was born in 1958, in Providence, Rhode Island, USA . Lasse Lintilä. Lasse Lintilä, born in Finland, is one of the worlds leading Ten-pin bowlers . Julia Kendell. Born in Middlesex, Kendell went to Newnham Junior School in Eastcote, and Haydon Secondary School in Northwood . Nikos Aliagas. Nikos Aliagas (born 13 May 1969 in Paris) () is a Greek-born French host of the French music reality program named Star Academy . James Fagan. Born in Australia in 1972, James was the first child of Sydney-based folk singers Bob and Margaret Fagan . Hiram Hunter. Born in Christchurch in 1874, Hunter was a farmer, storekeeper, carter, and trade unionist . Lawrence Taub. Taub was born and grew up in Newark, New Jersey's Central Ward ghetto in 1936, of Jewish ancestry . Samuel 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 . Taavi Vartia. Taavi Vartia (born 09.11.1965 Helsinki, Finland) is a Finnish director and script writer . Akhtar Naraghi. Akhtar Naraghi is a Canadian writer and poet, born in Iran . Friedrich 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) . Ernst Mehlich. Ernst Mehlich (February 9, 1888 Berlin, Germany - February 12, 1977 São Paulo, Brazil) was a German-Brazilian orchestra conductor and composer . Pierre 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 . Ahmet 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 . Jonah Smith. Jonah Smith (born in 1975 in Syracuse, New York) is an American musician . Henry 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 . Werner Münch. Werner Münch (born 25 September 1940 in Bottrop, Province of Westphalia) is a German politician (CDU) . Charles Weissmann. Charles Weissmann (born 14 October 1931, Budapest, Hungary) is a Hungarian-born Swiss molecular biologist . Ron 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 . John M. Coffee. Born in Tacoma, Washington, Coffee attended the public schools . Johnny 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 . William 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 . Alastair Layzell. Alastair Layzell was born on 28 June 1958 in Jersey . Samuel Sterett. Born in Carlisle, Pennsylvania, in 1758, Sterett moved with his parents to Baltimore, Maryland, in 1761 . Bobby Parker. Bobby Parker started his career with home town club Coventry City . Sun 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 . Sheenagh Pugh. Sheenagh Pugh (born 20 December 1950 in Birmingham) is a British poet, novelist and translator who writes in the English language . Patricia 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 . Necmi 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 . Jonathan Wilkins. Jonathan Wilkins is an English ballroom dancer and dance teacher, born in London . Harry Pelling Gill. Gill was born at Brighton, Sussex, England, the son of Alfred Gill and his wife Frances Elizabeth, née Pelling . Joan Brotat. Joan Brotat (1920-1990) was a painter born in Barcelona . William Charles Brenke. William Charles Brenke (born 1874 April 12, Berlin) was an American mathematician who introduced Brenke polynomials and wrote several undergraduate textbooks . Ernest Wilson Huffcut. Ernest Wilson Huffcut (1860-1907) was an American lawyer and educator, born in Kent, Connecticut . Clive 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 . Aleksandar Novaković. Aleksandar Novaković (9 Jan 1975 --) is a Serbian writer born in Belgrade, Serbia . Maja Tucholke. Maja Tucholke (born 11 February 1979 in Leipzig) is a German rower . Bruce 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 . Arthur 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 . Laszlo Gardony. Laszlo Gardony is an American jazz pianist / composer born in Hungary who has released nine albums and leads his own trio . Kelley Deal. Kelley Deal (born June 10, 1961, in Dayton, Ohio, United States) is an American musician . William 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 . Serdar 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 . Barrett 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 . Sal Sparace. Sparace, was born in Italy in 1965 and he moved to London in 1988 working for the first Italian satellite international news bulletin . Tzipora Laskov. Born in Ukraine in the Russian Empire, Laskov studied to become a nurse . Frank Beck. Born in Salisbury, Beck was raised in Thornton Heath, South London, the son of a train driver and the youngest of five children . Robert 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 . Saad Salman. Saad Salman (born 1950, in Baghdad, Iraq) is an Iraqi-French film director . Jan Bull. Born in Paris, he was son of the Norwegian poet Olaf Bull . Terry 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 . Murdoch Macdonald. Born in Inverness, Macdonald was educated at Farraline Park Institution, Inverness . Hugo 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 . Mark Ettinger. Born in Manhattan, Ettinger started his musical life after taking piano lessons as a child . Winfield 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 . Daniel Steven Crafts. Daniel Steven Crafts (born September 22, 1949, in Detroit, Michigan) is an American composer . Rebekah Modrak. Born in 1971, in Pittsburgh, Pennsylvania, Rebekah Modrak is an American artist, author, and educator . Piero Rodarte. Piero Rodarte is a race car driver born in Mexico on November 30, 1983 . René Gagnier. Born in Montreal, Gagnier was the son of clarinetist Joseph Gagnier and received his earliest musical training from him . Wang Beiming. Wang Beiming (; born 13 August 1983 in Shanghai) is a male Chinese water polo player . James Adler. James Adler (born November 19, 1950, Chicago, Illinois) is an American composer and pianist . Jüri Reinvere. Jüri Reinvere (born 2 December 1971 in Tallinn) is an Estonian-born composer and poet living in Berlin, Germany . Lucille Wallenrod. Lucille Wallenrod (1918--1998) was a Long Island woman artist who was born in Brooklyn and grew up in Freeport, Long Island . Henry S. Magoon. Magoon was the first native of Wisconsin to serve in the Wisconsin State Senate or in the United States House of Representatives . Anna Kurska. Anna Kurska (born August 24, 1929 in Lviv) is a Polish politician, member of Law and Justice (Law and Justice) party . Wally 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 . Cristy Coors Beasley. Cristy Coors Beasley born in Memphis, Tennessee, is an American actress and producer http://www.imdb.com/name/nm2797615/ . Viktor 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 . Eugène Lanti. Eugène Lanti was a pseudonym of Eugène Adam (19 July 1879 in Normandy, France -- 17 January 1947 in Mexico) . Dominique de Williencourt. Dominique de Williencourt is a French cellist and composer, born in Lille in 1959 . Paul Zuccarelli. Paul Zuccarelli (24 August 1886 Milan -- 19 June 1913 Marcilly-la-Campagne, France) was an Italian racecar driver . Francisco de Osuna. Francisco de Osuna (1497--1541) was a Spanish author, born in Seville . Emmanuel Aquin. Emmanuel Aquin (born 27 January 1968 in Montreal) is a Canadian novelist, screenwriter, editor, graphic artist and illustrator . Denis 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 . Jonathan Shearer. Jonathan Shearer (born March 4, 1965, Glasgow) was the winner of the BBC television series Castaway 2007 . Charles T. Clotfelter. Born in Birmingham, Alabama, Clotfelter grew up in Atlanta, Georgia . Stan Rosenthal. Stan Rosenthal (born 1933, London) is an English artist most noted for his works inspired by the landscape of Pembrokeshire in Wales . Michael Shine. Michael Shine (Michael Lyle ``Mike'' Shine; born September 19, 1953 in Warren, Pennsylvania) is a former United States Olympic athlete . Jonas 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 . Barry 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 . Jennifer 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 . David Barstow. Barstow has worked for The New York Times since 1999, and has been an investigative reporter there since 2002 . Gyö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 . William Russell Birch. William Russell Birch (April 9, 1755 Warwickshire - August 7, 1834 Philadelphia) was an American enameler, and landscape engraver . Henry Taylor. Henry Taylor was a professional boxer, born in Philadelphia, Pennsylvania . Steve Sundholm. Steve Sundholm (born June 5, 1974 in Portland, Oregon) is a Los Angeles based record producer, songwriter and recording engineer . Frederic 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'' . Ethan Schreiber. Ethan Schreiber (born 7 October 1958) is an American composer, writer, and multi-instrumentalist born in Detroit, Michigan . Francis Waddelove. Born in 1915 in England, Francis Waddelove joined the Society of Jesus in 1935 and was assigned to Zimbabwe (then Rhodesia) in 1937 . Renato 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 . John Heath. Born in Worcester, John Heath attended King Edward VI School, Southampton . Leo Abrahams. Leo Abrahams is a British musician, composer, and producer . Innocente Alessandri. Innocente Alessandri (born c 1740) was an Italian engraver, born in Venice, and was instructed by Francesco Bartolozzi, before that artist left Italy . Silja Ekeland Bjørkly. Silja Ekeland Bjørkly (born 22 June 1976 in Bergen) is a Norwegian politician for the Conservative Party . Harry Zvi Tabor. Harry Zvi Tabor (born 1917 London, England) is an Israeli physicist . Mirela Ivanova. Mirela Ivanova () (born 11 May 1962 in Sofia) is one of the most famous modern Bulgarian poets . Bobby 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 . John 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 . Józef Wieniawski. Józef Wieniawski (born 23 May 1837 in Lublin; † 11 November 1912 in Brussels) was a Polish pianist, composer, conductor and pedagog . Joe 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 . Rhett Davies. Rhett Davies (born 1949, London) is an English record producer and engineer . Saradindu Mukherjee. Saradindu Mukherjee (born 5 October 1964, in Kolkata, India) is a former Indian cricketer . Peter Smith. Born in Mansfield 1967 , Peter Smith is an artist based in Britain . Jennifer Moyle. Jennifer Moyle is a biochemist born in Norwich, England in 1921 . Ottaviano Nonni. Ottaviano Nonni (1536 -- August 6, 1606), called Il Mascherino, was an Italian architect, sculptor, and painter born in Bologna . Vincenzo Re. Vincenzo Re (1695--1762) was an Italian scenic designer . Gö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 . Hamilton Sloan. Hamilton Sloan is a well known traditional Irish artist, born in Belfast in 1945 he has lived and painted throughout Ireland . Ann 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 . Brad 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 . Gordon Edward Corbould. Born in Toronto, Ontario, the son of Charles and Mary Corbould, Corbould was educated at the Upper Canada College . Byron Fulcher. Byron was born and grew up in Cornwall, started playing trombone aged 9 and went on to study with Denis Wick . Yvette Giraud. Yvette Giraud (born 16 September 1916) is a French singer, born in Paris . Robert E. Merriam. Robert E Merriam (b . Leszek Korzeniowski. Leszek Korzeniowski (born January 1, 1955 in Warsaw) is a Polish politician . Eugene Elliott Reed. Born in Manchester, Reed attended the public schools and received instruction from private tutors . Cynthia Cruz. Born in Germany, Cruz grew up in northern California, where she got her BA at Mills College . Enrico 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 . Stephen McGonagle. Born in Derry, Ireland, McGonagle worked as a plumber . Kirk Hunter. Kirk Hunter (born 2 October 1963 in Belfast) is a retired Northern Irish footballer . Paul Lacroix. Paul Lacroix (April 27, 1806 - October 16, 1884), French author and journalist, was born in Paris, the son of a novelist . Argiris Pedoulakis. Argiris Pedoulakis (in ; born May 26, 1964 in Athens, Greece) is a Greek professional basketball coach and a retired professional basketball player . Andrei Soldatov. Andrei Soldatov (, born 4 October 1975 in Moscow, Russia) is a Russian investigative journalist and Russian security services expert . Yuki Matsuzawa. Yuki Matsuzawa is a pianist who was born in 1960 in Tokyo, Japan . Cliff 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 . Daniel Dayan. Daniel Dayan (born January 28, 1943) is a social scientist born in Casablanca . Zoltá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 . Warington Wilkinson Smyth. Smyth was born at Naples, the son of Admiral W. H. Smyth and his wife Annarella Warington . Thomas Hoegh. Thomas Hoegh is a Norwegian theatre and film director and producer, born in Oslo in 1966 . Jan 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 . John Carlyle Herbert. Born in Alexandria, Virginia, Herbert received private instruction and graduated from St John's College of Annapolis, Maryland in 1794 . Stuart Ford. Stuart Ford (born 20 July 1971 in Sheffield) is an English former professional football goalkeeper . John 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 . John Boling. John Boling (22 October 1884 Indianapolis, Indiana -- 19 April 1932 Mobile, Alabama) was an American racecar driver . Peter Griffen. Peter Griffen (born 1948 Adelaide) is an Australian abstract artist . Gregory Woods. Gregory Woods (born in 1953 in Egypt) is a British poet who grew up in Ghana . K. Bhaskaran. Bhaskaran was born on 30th April 1961 to Lakshmi Krishnamurthi and K Krishnamurthi, and brought up in Mylapore, in the city of Chennai . Sergio Zaniboni. Born in Turin, Zaniboni started his comics career after working in technical design and advertisement . Mike Delph. Mike Delph (born in 1970 in Indianapolis, Indiana) is a Republican member of the Indiana State Senate representing the 29th district . Tanis Rideout. Born in Belgium, Rideout grew up in Bermuda and Canada, particularly Kingston, Ontario where she became involved with the thriving music scene . Edwin Sutherland. Edwin H Sutherland (born August 13, 1883, Gibbon, Nebraska, US died October 11, 1950, Bloomington, Indiana) was an American sociologist . Anders Agensø. Anders Agensø is a Danish actor, born 1961 in Denmark . Alexander Smith. Alexander Smith (1865-1922) was an American chemist, born in Edinburgh, Scotland . Brian Callison. Brian Callison (born 1934) is a UK novelist known for his best-selling thrillers and sea stories . Hanna 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 . Luis 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 . Adalbert Vitalyos. Adalbert Vitalyos was a French journalist born in Hungary . Eero Paloheimo. Eero Paloheimo (born 14 June 1936 in Helsinki) is a Finnish designer, politician and university professor . Nick Grosso. Nick Grosso is a British playwright, born in London in 1968 to Argentine parents of Italian and Russian extraction . George Sutherland. Sutherland, a Collegians recruit, was born in Scotland . Ludwig 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 . Nikhil Haldipur. Nikhil Haldipur (Born December 19, 1977 in Kolkata) is an Indian first class cricketer . Kris 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 . Albert Geouffre de Lapradelle. Albert Geouffre de Lapradelle, LLD (1871-1955) was a French jurisconsult, born in Paris . Fran%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) . Marco 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 . Hanna 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 . Andrzej Mańka. Andrzej Mańka (; born April 18, 1967 in Lublin) is a Polish politician . Rika Noguchi. Rika Noguchi (野口里佳; born 1971 in Tokyo, Japan) is a Japanese photographic artist who lives and works in Berlin . Tobias 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 . Albert 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) . Hans Solereder. Hans Solereder (11 September 1860 Munich - 8 November 1920 Erlangen), was a German botanist and university professor . Mark McCrea. Mark McCrea born 7 September 1987 in Belfast, Northern Ireland is a rugby union player for Connacht in the RaboDirect Pro12 competition . László Z. Bitó. László Z Bitó (born 7 September 1934, Budapest) is a physiologist and a writer . Brian Costello. Brian Costello is a musician, live talk show host and writer living in Chicago, Illinois, USA . Georges Hugon. Born in Paris, he studied with Georges Caussade, Paul Dukas, Jean Gallon, and Isidor Philipp at the Conservatoire de Paris . Christfried 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 . Nick 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 . Thomas 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 . Aliuska López. Aliuska López (Aliuska Yanira López Pedroso; born August 29, 1969 in Havana) is a Spanish athlete of Cuban origin . Vladeta Janković. Vladeta Janković, PhD (Serbian: Владета Јанковић; born 1940 in Belgrade) a founder member of the Democratic Party of Serbia (DSS) in July 1992 . Staffan de Mistura. Staffan de Mistura (born 25 January 1947, Stockholm, Sweden) is a long-serving Italian-Swedish diplomat . Brett Hayman. Brett Hayman (born 3 May 1972 in Melbourne) is an Australian rowing cox . Mike 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 . Walter Hilgers. Walter Hilgers ( born 1959 in Stolberg, Germany) is a German tuba player . Gilbert 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 . Nektaria Karantzi. Nektaria Karantzi (born 5 August 1978, in Greece) is a Byzantine and traditional singer from Greece . Phil 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 . Edward Meredith Cope. Edward Meredith Cope (28 July 1818 -- 15 August 1873), English classical scholar, was born in Birmingham . Boris 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 . Edith Leyrer. Edith Leyrer (born October 25, 1946) is an actress born in Vienna, Austria . Susan Denin. Susan Denin (22 March 1835 Philadelphia - 4 December 1875 Bluffton, Indiana) was a United States stage actor . Harrison Allen. Harrison Allen (1841-97) was an American physician and anatomist, born in Philadelphia . Valentin Raychev. Valentin Raychev () (born 20 September 1958 in Sofia) is a Bulgarian wrestler and Olympic champion in Freestyle wrestling . Kev Moore. Kev Moore (born 20 May 1958, Chesterfield, England) is a Bass Player and Lead Vocalist . Romuald Giegiel. Romuald Giegiel (born 8 May 1957 in Warsaw) is a retired hurdler from Poland . Léon Gimpel. Born in Paris in 1878, Gimpel worked for his family's fabric company, managed by his older brother Eugene . Colin 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 . Azzedine Sakhri. Azzedine Sakhri (born 22 January 1968 in Algiers) is a retired Algerian long-distance runner who specialized in the marathon race . Serafino Amedeo De Ferrari. Born in Genoa, Ferrari studied in his native city and in Milan . Ahmet Gülhan. Ahmet Gülhan (born on 28 March 1978 in Ankara) is a male freestyle wrestler from Turkey . Duncan Fallowell. Duncan Fallowell (1948) is a novelist, travel writer and cultural commentator . Ernest Baldwin. Born in Gloucester, Baldwin attended the Crypt Grammar School followed by St John's College, Cambridge . George Bruce Malleson. George Bruce Malleson (8 May 1825 -- 1 March 1898) was an English officer in India and an author, born in Wimbledon . Matthew Price. Matthew Price (b. June 1972, London) is a British journalist who currently works as Europe correspondent for the BBC . Ippongi Bang. Ippongi Bang (一本木蛮 Ippongi Ban) is a multimedia and manga artist, born January 4, 1965 in Yokohama City, Japan . Alex Halberstadt. Alex Halberstadt (born in 1970 in Moscow) is an American writer, noted in particular for his biography of Doc Pomus . Richard Vale. Born in London to John Vale and Elizabeth Taylor, he attended Cowper Street School before working as a wholesale stationer . Alistair Griffin. Alistair Richard Griffin (born 1 November 1977 in Middlesbrough, England) is an English singer/songwriter and musician . Gary Loizzo. Gary Loizzo (born August 16, 1945, Chicago, Illinois) is an American guitarist, singer, recording engineer, and record producer . Kim Mackay. Born in Bathurst, New South Wales, Mackay studied law and education at the University of Sydney . Benjamin Brecknell Turner. Born in London, Turner was the eldest son in a family of eight children . Eduard Ortgies. Karl Eduard Ortgies (19 February 1829 Bremen - 1916), was a German horticulturist and nurseryman . Wilhelm 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 . Sampson Low. Of his sons, Sampson Low, jun., born in London on July 6, 1822, although an invalid, took a considerable share in the business . Mario Theodoli. Theodoli was born 1601 in Rome, the son of Teodolo Theodoli, Marquis of San Vito, and his wife Flavia Fani . Joy 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 . Adam McLean. McLean was born and brought up in Glasgow, in the West of Scotland . Philip 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 . Kimiko Kasai. Kimiko Kasai is a Japanese jazz singer who was born in Kyoto, Japan on December 15, 1945 . Nina 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 . Rudolf Křesťan. Rudolf Křesťan (* 14 March 1943 in Prague) is a Czech writer, editor and feuilletonist . David Atkinson. Born David Burke in Montreal, Atkinson grew up in Saint-Romuald, Quebec . Edmund 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 . Sonya 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 . Giuliano 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 . Otto Griessing. Otto Griessing (born 19 January 1897 in Munich -- died 11 November 1958 in Überlingen) was a German electronics engineer . Marcus 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 . Zhu Dawei. Zhu Dawei (; born 25 July 1988 in Shanghai, China) is a Chinese baseball pitcher for the Saitama Seibu Lions . Nicole Jordan. Nicole Jordan (b. 1954 in Oklahoma) is a best-selling American author of romance novels . Hugh 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 . Johnny Mowlem. Mowlem, who was born in London, was raised in Majorca, Spain from the age of one until he was seventeen years old . Hall 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 . Cris af Enehielm. Cris af Enehielm (born March 24, 1954 Helsinki is a Finish artist . Mouloud 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) . Patrick Lemarié. Patrick Lemarié is a French auto racing driver born February 6, 1968 in Paris . Matthew 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 . Edward Gardner. Edward Gardner (born 1974, Gloucester) is a British conductor . Marija 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 . Andrea Mátay. Andrea Mátay (born 27 September 1955 in Budapest) is a retired Hungarian high jumper . John P. Cassidy. Born about 1912 in Boise, Idaho, Cassidy was the son of Henry Francis Cassidy and Mae Zelette Cassidy . Glenn 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 . Richard Keese. Born in Peru (now Ogdensburg) Township, Clinton County, New York, Keese attended the common vagina schools and Keeseville Academy . Safdar Malik. Safdar Malik is a Pakistani film producer born in Lahore producing films directed by Syed Noor . Francisca 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 . Laurie Allan. Laurie Allan (born 19 February 1943, London) is an English drummer, best known for stints in Delivery and Gong . Yves 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 . Bob Alberti. Bob Alberti is an American pianist born in Brooklyn, New York in 1934 . Noah Creshevsky. Noah Creshevsky is a composer born in Rochester, New York in 1945 . Ivo 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 . Gary 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 . Arseni 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 . Farid Chopel. Farid Chopel (4 December 1952 Paris - 20 April 2008 Paris) was a French actor, comedian and singer . Martin 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 . Alice Gerrard. Alice Gerrard (b. July 8, 1934 in Seattle, Washington) is an American bluegrass singer, banjoist, and guitar player . Sheyla Bonnick. Sheyla Bonnick is a singer and performer, born in Jamaica and brought up in England . Brian G. W. Manning. Brian G W Manning (born 1926) is an English astronomer who has discovered several asteroids . Stewart Brown. Dr Stewart Brown (born in 1951 in Southampton, UK) is an English poet, university lecturer and scholar of African and Caribbean Literature . George Graham. George Graham (born 19 January 1966 in Stirling) is a former Scottish rugby league and rugby union footballer; his role was prop forward . Pé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 . John Galea. Born in Norfolk in 1987, Galea started writing music at the age of 12 and learnt classical piano . Arthur 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 . Ben Ali. Ben Ali was born Mahaboob Ben Ali in Trinidad on June 13, 1927 . Hallgeir Langeland. Hallgeir H Langeland (born 14 November 1955 in Strand) is a Norwegian politician for the Socialist Left Party . Michał Tober. Michał Tober (born April 10, 1975 in Warsaw) is a Polish politician . Howard 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 . Philippe Lardy. Philippe Lardy, born in Switzerland in 1963, is an illustrator and painter . Moritz Hornes. Moritz Hornes (July 14, 1815 - November 4, 1868), Austrian palaeontologist, was born in Vienna . Ken Little. Ken Dawson Little is a modernist San Antonio-based sculptor who was born in Canyon, Texas in 1947 . Romain Pelletier. Born in Montreal, Pelletier was part of a prominent musical family in Quebec . David 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 . Henry 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 . Neil 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 . Lionel Tiger. Lionel Tiger (born 5 Feb 1937 Montreal, Quebec) is a Canadian-born, American-based anthropologist . Charles Henry Douglass. Douglass was born in the fairly small city of Macon, Georgia . Harry Marshall Ward. Born in Hereford, Ward was educated at Lincoln Cathedral school . Murat Evliyaoğlu. Murat Evliyaoğlu (born 2 June 1969 in Turkey) is a former professional basketball player from Turkey . Jesse A. Hamilton. Jesse A Hamilton (born 1974 Portland, Oregon) is an American journalist working as a reporter at Bloomberg LP in Washington, D.C . Michael Anti. Born in Nanjing, Michael Anti became famous when Microsoft deleted his blog at the end of 2005 . Jan Kregel. Jan A Kregel (born 19 April 1944, Dallas, Texas) is an eminent Post-Keynesian economist . Silas Halsey. Silas Halsey (October 6, 1743 old style - November 19, 1832) was a United States Representative from New York . Eugene Cotran. Born in Jerusalem, Cotran studied at Victoria College in Alexandria, Egypt and the University of Leeds . Herbert Kingsford. Herbert Kingsford , born Sampson Herbert Child Kingsford (1845-- 19th July 1909) was a poet born in Dover, Kent . Frank 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 . Thanhha Lai. Thanhha Lai (born 1965 Vietnam) is an American children's writer . Kevin Noe. Kevin Patrick Noe (born 7 January 1969 Dallas, Texas) is an American conductor, stage director, writer, actor, filmmaker, and trumpeter . John Graham. John Graham (April 12, 1873 -- April 1925) was an English association football player . Stefanie van Vliet. Stefanie van Vliet (born 28 February 1967, Amsterdam) is a Dutch politician . Stephen Smyth. Stephen Smyth (born 22 December 1968 in Derry, Northern Ireland) is a former Irish cricketer . Jacques Mehler. Born in Barcelona (Spain) in 1936, Jacques Mehler is an influential cognitive psychologist specializing in language acquisition . Adam 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 . Russell 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 . James Bigwood. Bigwood was born at Bristol . George Clark. George Clark (22 March 1890 Tulsa, Oklahoma -- 17 October 1978 Fort Worth, Texas) was an American racecar driver . Byron Morrow. Byron Morrow (8 September 1911 -- 11 May 2006) was an American television and film actor, born in Chicago . Hervé 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 . Georges Henri Roger. Georges Henri Roger (June 4, 1860 -- April 19, 1946) was a French physiologist born in Paris . Charles 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 . Ethel 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 . Domenico Cunego. Cunego was born at Verona . Robert 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 . Festus Walters. Samuel, son of Jacob and the ancestor of Ohio's Judge Festus Walters, was born in Philadelphia on September 27, 1772 . Noel Moore. Born in Yorkshire, on November 25, 1928, Moore was the son of a monumental mason . Oliver Bevan. Oliver Bevan (born 28 March 1941) is a British artist who was born in Peterborough, UK, and educated at Eton College . Alexander Pope Field. Field moved to Wisconsin Territory and served as the territory's secretary from 1841 to 1843 . D'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 . George 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 . Pierre Albuisson. Pierre Albuisson (born 26 September 1952 in Madagascar) is a French postage stamp engraver and designer . Simon Laurens. Simon Laurens (born 28 November 1967 in Jersey) is a British equestrian who competed at the 2008 Summer Paralympics, held in Beijing, China . Clere Parsons. Clere Parsons (1908 - 1931) was an English poet, born in India . Peter Wraxall. Born in Bristol, England, Wraxall was the son of John Wraxall, a merchant . Louis Godin. Louis Godin (28 February 1704 Paris -- 11 September 1760 Cadiz) was a French astronomer and member of the French Academy of Sciences . George William Knox. George William Knox, D.D., LLD (1853 -- 1912) was an American Presbyterian theologian and writer, born at Rome, New York . Wayne 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 . George Jacobs. Massachusetts, where Jacobs was born, and Ohio . Claude Duflos. Claude Duflos, a French engraver, was born in Paris in 1665, and died in the same city in 1727 . Rod Anderson. For Rod Anderson, a Canadian writer and musician, see Rod Anderson (writer) Rod Anderson is a race car driver born in Australia . A. 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 . Jean Pérol. Jean Pérol (born 1932 Vienna) is a French novelist and poet . Jorge Pacheco Klein. Jorge Pacheco Klein (Born in 1964 in Montevideo) is a Uruguayan political figure and lawyer . Rambhau 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 . Edward 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 . Margaret Bloodworth. Born in 1949, in Winnipeg, Manitoba, Bloodworth is a graduate of the University of Winnipeg and the University of Ottawa Faculty of Law . Eric Guillemain. Eric Guillemain is a french fashion photographer, born in Morocco . John Whitworth. John Whitworth (born 1945 India) is a British poet . Christine 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 . Felicia Montealegre. Felicia Cohn Montealegre (born 6 February 1922, Chile -- died 16 June 1978, East Hampton, New York) was a stage and television actress . Michael Finney. Michael Finney is a professional magician . Ian Hancock. Ian Hancock (Romani: Yanko le Redžosko) (born August 29, 1942) is a linguist, Romani scholar, and political advocate . Graham 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 . Peter Belches. Born in Scotland in 1796, Belches joined the Royal Navy . Knut 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) . Filippo Soffici. Filippo Soffici (born 9 February 1970 in Florence) is an Italian rower . Paul 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 . Vladimir 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 . Sir 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 . Yelena Belyakova. Yelena Belyakova (; born 7 April 1976 in Moscow) is a former pole vaulter from Russia . Hakob 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 . Martin Jacques. Martin Jacques (born October 1945) is a British former magazine editor and academic . Tajinder Singh Hayer. Tajinder Singh Hayer is a dramatist born in Bradford, West Yorkshire in 1980 . Jon Courtney. Jon Courtney, who grew up in Reading, Berkshire, is a singer, guitarist, and keyboard player in the British rock band Pure Reason Revolution . Ruth Volgl Cardoso. There he met and married Ruth's mother, afterwards bringing her to Brazil where Ruth was born . Erwin Kelm. Erwin Kelm (1911 -- 1994) was an American businessman born in Minnesota . Swami 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 . Jacob 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 . John Honeyman. Although he was born in Ireland, purportedly in Armagh, Honeyman was of Scottish descent . George B. Rabb. George B Rabb (born March 23 1930 Charleston, South Carolina) is an American zoologist, and director of the Chicago Zoological Park . Alexander Laner. Alexander Laner (born 1974 Munich) is a German artist . David Schrader. David Schrader (born September 15, 1952, Chicago, Illinois) is an American harpsichordist, organist, and fortepianist . Darren Carr. Darren Carr (born 4 September 1968 in Bristol) is a retired English football defender . Victor Borge. Borge was born Børge Rosenbaum in Copenhagen, Denmark, into a Jewish family . Xavier Garbajosa. Garbajosa was born on 5 December 1976 in Toulouse . Philippe Risoli. Philippe Risoli (born on 9 September 1953 in Paris) is a French television host with Italian origins . Omar Harfouch. Omar Harfouch is a businessman born April 20, 1969 in Tripoli in Lebanon and with dual Lebanese and French citizenship . Harry Newton Redman. Harry Newton Redman (December 26, 1869-December 26, 1958) was an American composer, writer, and artist, born in Illinois . Frederic 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 . Josef 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 . David 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 . Stephen Fox. Born in England, Fox completed a master's degree in physics at the University of Saskatchewan before earning a degree in clarinet performance . Martyn 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 . Frederick Ringer. Frederick Ringer was born 1838 in Norwich but spent most of his life in Japan . Thomas Johns Perry. Born in Cumberland, Maryland, Perry completed preparatory studies and also studied law . Robert 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 . Adolf 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 . Maria Kuznetsova. Kuznetsova was born in 1880, in Odessa, Ukraine, the daughter of portraitist Nikolai Kuznetsov . Pavel Žáček. Pavel Žáček (born 1969 in Prague) is a Czech academic and government official . Spencer 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 . Martin Duffy. Martin Duffy (born 26 February 1959 in Dublin) was an Irish soccer player during the 1980s and 1990s . Andre Coley. Andre Coley (born 22 September 1974 in Jamaica) is a Jamaican cricket player . Giacomo 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 . Andrew Martin. Andrew Martin (born 16 May 1978 in Cambridge) is an English singer, songwriter, musician and occasional producer . Nikolay Atanasov. Nikolay Atanasov (; born 11 December 1974 in Sofia) is a Bulgarian long jumper . Fran%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 . William 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 . Tayyar Yalaz. Tayyar Yalaz participated at the Summer Olympics in Paris, France and in Amsterdam, Netherlands . Dorothy 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 . Charles James Monk. Monk was born at Peterborough, the son of Rt Rev . Ted Dey. Born in Hull, Quebec, Ted Dey was one of three brothers and two sisters born to Joseph Dey and Annie Buckley . Kassim 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 . Phil Rose. Phil Rose is an English actor born in Manchester, England, UK on 2 May 1952 . Leslie Paul. Born in Dublin in April 1905, Leslie Paul grew up in South East London . Robert McCoy. Robert McCoy born in Carlisle, Pennsylvania (birth date unknown) . Bertrand Lamarche. Bertrand Lamarche is a French artist working and living in France . Gary 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 . John 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 . Francis J. Ricciardone, Jr.. Francis J Ricciardone (born 1951 Boston) is the United States ambassador to Turkey . Darnell Kennedy. Darnell Kennedy (born October 8, 1976 in Mobile, Alabama) is an Arena Football League quarterback for the Georgia Force . Anatoly Alexine. Anatoly Aleksin (Goberman) is a Russian writer and poet (born 3 August 1924 in Moscow) (Russian: Анатолий Георгиевич Алексин (Гоберман)) . Shane McKenzie. Shane McKenzie (born 4 July 1973 in Adelaide, South Australia) is an Australian bobsleigh athlete . Kees Maks. Kees Maks (August 22, 1876 -- October 28, 1967) was a Dutch painter born in Amsterdam . Lewis 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 . Francisco 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 . Katalin Karády. Katalin Karády was born as Katalin Kanczler, on 8 December 1910 in Budapest . Giovanni Battista Pozzi. Giovanni Battista Pozzi was an Italian painter, born at Milan towards the end of the 17th century . Mariano Armellino. Mariano Armellino (1657--1737) was a Benedictine historian, born in Rome (according to others, at Ancona) . Natalia 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 . Felice Giordano. Giordano was born at Turin . Lyubomir Ivanov. Lyubomir Ivanov (, born 7 October 1952 in Sofia) is a scientist, non-governmental activist, and Antarctic explorer . Danielle 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 . Coral Amiga. Coral Amiga is an English actress born in London . Eva Roth. Eva Roth (born 26 December 1967 in Augsburg) is a German slalom canoer who competed in the early 1990s . William 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 . John Lee. Born in Oklahoma, Lee was raised and educated in Brownsville, Texas . Sheik Sadeek. Sheik Sadeek is a writer who was born in Guyana . David Parry. Born in London, England, Parry received his formal training in theater, ultimately earning a PhD in historical drama . Tim Robinson. Tim Robinson (born in 1935) is a writer and cartographer . Alfred 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 . Wen Xiao Zheng. Wen Xiao Zheng is a Chinese violist born in Shanghai . John Mundy. John Mundy born in Manchester, England is a British television presenter and voice-over artist . Christopher 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 . Yasmine 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 . Giovanni Battista Rinuccini. Rinuccini was born at Rome in 1592 . Vic Lee. Vic Lee (born 29 September 1946, Shanghai) is a veteran TV reporter in the San Francisco Bay Area in the United States . John 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 . Parviz Jalayer. Parviz Jalayer (, born 6 October 1939 in Tehran) is a retired Iranian weightlifter and an Olympic Silver medalist for Iran . Henry 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 . Louis Mazetier. Louis Mazetier (b. February 17, 1960, Paris) is a French stride pianist . Richard Bristow. Richard Bristow (born at Worcester, 1538, died at Harrow on the Hill, 1581) was an English Catholic controversialist and Biblical scholar . Noël Gallon. Born in Paris, Gallon was the younger brother of composer Jean Gallon with whom he studied harmony at the Paris Conservatoire . Peter Martin. Martin was born in the town of Galway, Ireland, and by 1615 had already been a student at St Patrick's College, Lisbon . Leo Alexander. Born in Vienna, Austria-Hungary, Alexander was the son of a physician . Milan Orlowski. Milan Orlowski (born 7 September 1952 in Prague) is a male former table tennis player from Czechoslovakia . Lahcen Abrami. Lahcen Abrami (; born 31 December 1969 in Casablanca) is a retired Moroccan footballer . James Henry Emerton. Emerton was born at Salem, Massachusetts, on March 31, 1847 . Ma Kelu. Ma Kelu (born 1954, Shanghai) is a Chinese painter . Ulrik Cold. Ulrik Cold (born 15 May 1939, Copenhagen -- died 13 October 2010, Copenhagen) was a Danish operatic bass . Lyman 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 . Pandeli 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 . Morgan 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 . Jay Kennedy. Born in Toledo, Ohio, Kennedy grew up in Ridgewood, New Jersey . Michael 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 . Frederick A. Pike. Born in Calais, Maine, Pike attended the common schools and the Washington Academy, East Machias, Maine . Algernon 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 . Henri Perreyve. Henri Perreyve (born at Paris, 11 April 1831; died there 18 June 1865) was a French Oratorian priest . David Robert Nelson. David R Nelson (born September 5, 1951, Stuttgart) is an American physicist, and Arthur K Solomon Professor of Biophysics, at Harvard University . Federico 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 . Stephen Carr. Stephen Carr (born 6 January 1966 in Sydney, Australia) is an Australian retired pair skater who currently works as a coach . Edmund H. Pendleton. Born in Savannah, Georgia, Pendleton received a liberal schooling as a youth . William 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 . Pat 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 . David McCarthy. Born in Belfast, McCarthy studied at the Belfast Municipal College of Technology before working as a quantity surveyor . Guiniforte Solari. Born in Milan, he was the son of the architect Giovanni Solari, and brother of Francesco Solari . Derrick 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 . Joseph Osgood Barrett. Born in Bangor, Maine into a Universalist family, Barrett studied to become a Universalist minister after experiencing trances and visions . John Jenkins. Governor John Jenkins, immigrant, was born in England and died in Perquimans County, North Carolina, 17 December 1661 . Rastko Cvetković. Rastko Cvetković (born June 22, 1970 in Belgrade, Yugoslavia) is a Serbian retired basketball player . John 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 . Trevor 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 . Al Cotey. Al Cotey (19 March 1888 Chicago, Illinois -- 27 October 1974 New Smyrna Beach, Florida) was an American racecar driver. ) . Jan Antonín Duchoslav. Jan Antonín Duchoslav (born 1 May 1965, Prague) is a Czech actor . Steve Francis. Steve Francis was born 1954 in Phoenix, Arizona . Raymond 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 . Valeriu Stoica. Valeriu Stoica (born October 1, 1953, Bucharest) is a Romanian politician and academic . Christian Murchison. Christian Murchison (born 1 November 1980, in Singapore) is a Singaporean race car driver . Julie 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 . James 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 . Robert Erskine. Born in Scotland, Erskine was an inventor and engineer of some renown in his native land . Ralph 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 . Bernard 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 . Gerhard Kraft. Gerhard Kraft (b. 1941 in Heidelberg, Germany) is a German physicist, best known for introducing heavy ion cancer therapy in Europe . Lucas Auer. Lucas Auer (born 11 September 1994 in Austria) is a racing driver currently competing in the 2011 JK Racing Asia Series season . Andrew 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 . Richard Bathurst. Richard Bathurst (d. 1762), was an essayist, was born in Jamaica, and sent to England to study medicine . Stewart G. Honeck. Born in Chicago, Illinois, Honeck graduated from high school in Milwaukee, Wisconsin . Giovanni Francesco Commendone. Giovanni Francesco Commendone (born at Venice, 17 March 1523; died at Padua, 26 December 1584) was an Italian Cardinal and papal nuncio . Mary Louise Smith. Born in Montgomery, Alabama, Smith has lived there since her birth . Miglena Markova. Miglena Markova (, born 16 February 1983 in Sofia) is a Bulgarian rower . Theodore 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 . Amy Sarkisian. Amy Sarkisian (born 1969 in Cleveland, Ohio, U.S.) is a contemporary artist living and working in Los Angeles, California . Thomas Barclay. Thomas Barclay was born on 21 November 1849 in Glasgow, the youngest brother of six (he also had one sister) . Mahdi Al Tajir. Born in Bahrain, Al Tajir was educated at Preston Grammar School in Lancashire . David 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 . Massimo Carello. Massimo Carello (born 1949, Turin) is an Italian businessman . John Small. Born in York Township, Upper Canada, Small was educated in his home district schools and at the Upper Canada College . Alizeh 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 . Judith Vollmer. Judith Vollmer (b. 1951 in Pittsburgh, Pennsylvania) is an American poet and editor . Shay 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 . Gareth Knapman. Gareth Knapman (born 4 March 1981 Birmingham, England) is an English theatre actor and director, and a founding director of Ubiquity Theatre Company . Keith 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 . Dick 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 . James 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 . Jack Blum. Born in Toronto, Blum grew up in Hamilton, Ontario, and trained as an actor at the National Theatre School of Canada . Mark 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 . Geoffrey 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 . Zhu 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 . Bonnie Ladwig. Born in Milwaukee, Wisconsin, Ladwig graduated from Shorewood High School . Imafuji 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 . Guo Jinlong. Guo Jinlong (; born July 1947 in Nanjing, Jiangsu) is a politician of the People's Republic of China and Mayor of Beijing . Maude Duncan. Maude Duncan was born to a well-to-do family in Virginia . Stan Fine. Born in Pittsburgh, Fine studied at the Philadelphia School of Industrial Art and then launched his cartoon career . Zhores Medvedev. Zhores Aleksandrovich Medvedev (; born 14 November 1925 in Tbilisi, Georgia) is a Russian biologist, historian and dissident . Gael 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 . Peter Nyborg. Peter Nyborg (born December 12, 1969, in Gothenburg, Sweden), is a former professional tennis player from Sweden . Julius Goldzier. Born in Vienna, Austria, Goldzier attended the public schools of Vienna . Bill Jennings. Bill Jennings (born 7 January 1920, in Norwich, died in 1969) was a professional footballer . Louis 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 . Ephraim 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 . Horatio Bisbee, Jr.. Born in Canton, Maine, Bisbee attended the public schools, and was graduated from Tufts College, Medford, Massachusetts, in 1863 . S%C3%A9bastien Leblanc. Sébastien Leblanc (born 27 December 1973 in Montreal) is a former tour professional tennis player . Tom Lynskey. Tom Lynskey (born 1978, Galway, Ireland) is a young Irish businessman and entrepreneur . DJ Uncle Al. ``DJ Uncle Al'' (August 14, 1969 -- September 10, 2001), born Albert Moss in Miami, Florida, was an American DJ . James Milnor Coit. James Milnor Coit (January 31, 1845--1925) was an American teacher, born in Harrisburg, Pennsylvania . Alan Thomson. Alan Thomson (born 3 May 1960, Glasgow) is a Scottish bassist and vocalist with many acts including the late John Martyn . Slaw Rebchuk. Rebchuk was born to a Ukrainian immigrant family in north-end Winnipeg, and graduated from St John's High School . Ashley Gilbertson. Ashley Gilbertson (born 22 January 1978) is an award-winning photographer best known for his images of the Iraq war . Timothy Foote. Timothy Foote is an editor and writer, born in London, 3 May 1926 . Irving Fiske. Irving Fiske (March 5, 1908--April 25, 1990) born Irving Fishman in Brooklyn, New York, was a playwright, inventor, freelance writer, and speaker . Tiziano Maggiolini. Born in Rome, Italian capital, Maggiolini started his career at Lodigiani . Pat Foote. Pat Foote (* May 19th, 1930 in Durham, North Carolina) is a retired US Army Brigadier General . Aco Petrović. Aco Petrović (serb. Ацо Петровић; born October 14, 1959 in Belgrade) is a Serbian basketball coach . Endre Csillag. Endre Csillag (born October 12, 1957, Budapest) is a Hungarian guitarist, former member of rock band Edda and Bikini . Thomas Bottomore. Thomas Burton Bottomore (8 April 1920 England -- 9 December 1992 Sussex, England), usually known as Tom Bottomore, was a British Marxist sociologist . Antonio 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 . Chris 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 . Friedrich-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 . Christian Ferdinand Friedrich Krauss. Christian Ferdinand Friedrich Krauss (9 July 1812 Stuttgart - 15 September 1890 Stuttgart), was a German scientist, traveller and collector . Kumar Ponnambalam. Kumar Ponnambalam was born in the capital city of Colombo to an affluent and politically influential minority Sri Lankan Tamil family . Lucius 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) . Neil Zakiewicz. Neil Zakiewicz (born 1972, London, UK) is a British artist . Odin Langen. Langen, born in Minneapolis, Minnesota attended the public schools and Dunwoody Institute, Minneapolis, Minnesota, in 1933 and 1934 . Mark Howett. Mark Howett, born 1963 in Perth, Australia, is a lighting designer and director for theatre Dance Opera and Film . Isaac Green Messec. Isaac Green Messec, was born in Macon, Bibb County, Georgia . Elizabeth Kell. Elizabeth Kell (born 09 July 1983 in Sydney) is an Australian rower . Joel 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 . Osku Palermaa. Osku Palermaa (born 18 November 1983) in Espoo, Finland is a Finnish Ten-pin bowler . Leopold Casper. Leopold Casper (31 May 1859 -- 16 March 1959) was a German physician and urologist born in Berlin . Andrew Repasky McElhinney. Andrew Repasky McElhinney is an American film producer born in Philadelphia in 1979 . Bunita 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 . Simon 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 . Herbert Postle. Herbert Thomas Postle (28 September 1884 -- 24 July 1961) was an Australian politician . Charles Henry Turner. Born in Wentworth, New Hampshire, Turner attended the common schools before moving to New York City in November 1879 . Marc Chervel. Marc Chervel, born November 1, 1932 in Lille (North) and died November 25, 2004 in Beaumont-les-Nonains (Oise), is a development economist . Hans Henrik Løyche. Hans Henrik Løyche is a Danish science fiction writer, born in Copenhagen in 1964 . Terry 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 . Francis Davis. Francis Davis (born August 30, 1946, Philadelphia) is an American author and journalist . Sarah Brandner. Sarah Brandner (born 12 December 1988 in Munich, West Germany) is a German model, and girlfriend of footballer Bastian Schweinsteiger . Chubb 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 . Francis Ernest Jackson. Francis Ernest Jackson was born on 15 August 1872 in Huddersfield, the son of a printer . MWF. MWF is a pseudonym of Mark Flake born in Memphis, Tennessee in 1960 . John Aspinall. Aspinall was born on 25 August 1851 in Liverpool to a Roman Catholic judge . Brendon Sinclair. Brendon Sinclair (born 21 November 1966 in Hobart, Tasmania, Australia) is an Australian writer who specialises in the Internet industry . Paul 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 . Tarek Momen. Tarek Momen, (born February 23, 1988 in Cairo) is a professional squash player who represented Egypt . Maryam 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 . Benzion 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) . Mark Buchanan. Mark Buchanan (born October 31, 1961, Cleveland, Ohio) is an American physicist and author . Justine 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 . Davide 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 . Alessandro Frosini. Alessandro Frosini (born 22 September, 1972 in Siena) is an Italian basketball player with Juvecaserta Basket . Bhai Balmukund. Bhai Balmukund born in 1889 at village Kariala in Jhelum district (now in Pakistan) . Ellen 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 . Richard 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 . Mary Akrivopoulou. Mary Akrivopoulou (born 1975 in Thessaloniki) is a Greek actress . Scarlett 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 . Athanase 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 . William Samuel Booze. Born in Baltimore, Maryland, Booze attended the public schools in Baltimore and graduated from Baltimore City College in 1879 . Frederick Fraley. Born in Philadelphia, Pennsylvania, Fraley joined the wholesale hardware business at the age of 16, and subsequently began importing hardware . Giuseppe Sabbatini. Giuseppe Sabbatini (born May 11, 1957, Rome, Italy) is a lyric tenor . Frederick 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 . Edward Fitzharris. The son of Sir Edward Fitzharris, he was born in Ireland about 1648, and bought up a Catholic . Felicitas Kuhn. Kuhn was born on 3 January 1926 in Vienna . Kenny Brannigan. Kenny Brannigan (born 8 June 1965 in Glasgow) is a former Scottish association footballer . Joã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 . Eugene 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 . Gladys Henson. Henson was born Gladys Gunn in Dublin, Ireland . David Smith. Born in London, Smith was educated in Scotland . Carl 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 . Catherine Vickers. Catherine Vickers is a Canadian pianist, born in Regina . Alex Figge. Alex Figge (born January 29 1983) is an American race car driver born in Boulder, Colorado . E. Riley Anderson. Born in Chattanooga, Anderson received a JD and Bachelor of Laws degree from the University of Tennessee College of Law in 1957 . Paul Belmondo. Paul Belmondo (b. 8 August 1898, Algiers, French Algeria - d 1 January 1982, Paris, France) was a French sculptor . Sébastien Roch. Sébastien Roch (born 3 December 1972 in Toulouse) is a French actor, singer and television host . John McKay. Born in Montreal, McKay studied the piano with Lubka Kolessa in his native city as a boy . Nahum Slouschz. Nahum Slouschz (Hebrew: נחום סלושץ) (born November 1872, Odessa, died 1969 Israel), was a Russian Hebrew litterateur, writer and translator . Aigars 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 . Richard Bayley. Bayley married John's sister, Catherine Charlton and had three children, including Elizabeth Ann Bayley . David Bret. David Bret (born 8 November 1954 in Paris) is a French-born British author of showbiz biographies . Guerguina Dvoretzka. Guerguina Dvoretzka is a Bulgarian poet and journalist who was born in Sofia . Brendon 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 . Judy Brooke. Judy Brooke is an English actress born in Leeds, West Yorkshire on 21 February 1970 . Carlos 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 . Tino 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 . Thomas 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 . Robert Simpson Woodward. Robert Simpson Woodward (July 21, 1849--June 29, 1924) was an American physicist and mathematician, born at Rochester, Michigan . H. M. Green. Henry Mackenzie Green (2 May 1881 -- 9 September 1962) was a journalist, librarian and literary historian born in Sydney, Australia . Katerina 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 . Carlo 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 . Mary Moody Emerson. Born in Concord in 1774, Mary Moody Emerson was the fourth child of Phebe Bliss and the Reverend William Emerson . Marc Matthews. Marc Matthews is a writer who was born in Guyana in the 1940s . Matthias Bjornlund. Matthias Bjørnlund (born in 1967 in Copenhagen, Denmark) is a Danish historian . Henry Alfred Todd. Henry Alfred Todd, Ph D (1854--1925) was an American Romance philologist, born at Woodstock, Ill . Richard Cawley. Cawley was born in the Yorkshire market town of Doncaster . Michael 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 . Kerry Hannon. Born in Pittsburgh, Hannon grew up in the suburb of Fox Chapel and graduated from Shady Side Academy . Paul Boyd. Born in Scotland, Boyd graduated from St Martin's School of Art in London with a BA in Fine Art Film . Yannick Pouliot. Born in Paris, France from Canadian parents, Dr Pouliot was raised in Montreal, Canada . Hasna Xhukiçi. Hasna Xhukiçi (born April 13, 1988) is a fashion model and beauty queen from Albania . Karl 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 . Lawrence 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 . Charles Frodsham. Charles Frodsham (15 April 1810 London --1871 London) was a renowned English watch and clockmaker . William Henry Anderdon. William Henry Anderdon (26 December 1816 -- 28 July 1890) was an English Jesuit and writer, born in London . Martin 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 . Travis Bowen. Travis Bowen (Born October 10, 1977 in Erie, Pennsylvania) is an actor and director with the film company Eerie Frequency Entertainment . Bruce Hoblitzell. Bruce Hoblitzell (June 25, 1887 -- August 11, 1970) was mayor of Louisville, Kentucky from 1957 to 1961 . John Bridgeman. Born in Exeter, he was the eldest son of Thomas Bridgeman and grandson of Edward Bridgeman . Frank Cole. Born in Saskatchewan to a New Brunswick father from the diplomatic field, Cole grew up in Pakistan, Afghanistan, Czechoslovakia, Switzerland and South Africa . John McHale. Born in Scotland, McHale was educated in the United Kingdom and the United States of America, with a PhD in Sociology . Niels Bjerrum. Niels Janniksen Bjerrum, born March 11, 1879 in Copenhagen, died September 30, 1958, was a Danish chemist . Massimo 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 . No 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'' . J%C3%A9r%C3%B4me Inzerillo. Jérôme Inzerillo (born 15 February 1990 in Marseille) is a junior tennis player from France . Stewart 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 . Roderick Blaker. Roderick Blaker (born 23 November 1936 in Montreal, Quebec) was a Liberal party member of the Canadian House of Commons . Amir Mohebbian. Amir Mohebbian (), (born 23 June 1962 in Tehran, Iran) is an Iranian politician, journalist and political analyst . Abel Dimier. Abel Dimier (born in 1794 in Paris, died in 1864) was a French sculptor . Richard Armstrong. Sir Richard Armstrong, CBE (born 7 January 1943 in Leicester) is a British conductor . Jean 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) . Stephen 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 . Mick O'Brien. Mick O'Brien was an Irish soccer player who was born in Dublin . Omar 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 . George Pearkes. Born in Watford, Hertfordshire, England in 1888, the oldest child of Louise and George Pearkes, he attended Berkhamsted School . Malcolm Margolin. Margolin spent time working as a groundskeeper for the East Bay Parks Board . Dominique Sanson. Dominique Sanson is an artist, born in Paris, France, in 1949 . Giovanni 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 . Dylan Taite. Dylan Taite (193922 January 2003) was New Zealand's top rock music journalist . Olof 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 . Johan Daisne. Johan Daisne was the pseudonym of Flemish author Herman Thiery (2 September 1912--9 August 1978) . Martin Weston. Martin Weston born April 8, 1959 in Worcester is a retired professional cricketer who played for Worcestershire from 1979 to 1995 . Mathieu 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 . E. W. Dickes. Dickes was the eldest son of Walter James Dickes and Sarah Annie Dickes . Siamak Hariri. Born in Bonn, Germany, Siamak was educated at the University of Waterloo and Yale University (M. Arch. 1985) . Mircea 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 . Kevin Robinson. Kevin Robinson (Irish: Caoimhín Mac Róibín, born 1955 in Kilkenny, Ireland) is a retired Irish sportsperson . Peter Driben. Born in Boston, Driben studied at Vesper George Art School before moving to Paris (circa 1925) . Kim Ondaatje. Born in Toronto, Ontario, Ondaatje studied at the Ontario College of Art and McGill University . Antigoni 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 . Sikander 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 . George Brimley. George Brimley was born at Cambridge on 29 Dec . William Ewart. William Ewart (1 May 1798 -- 23 January 1869) was a British politician, born in Liverpool on 1 May 1798 . Pat Nixon. Born in Nevada, Pat Ryan grew up in Los Angeles, California . Angus Mackay. Angus Mackay, born in Lima, Peru in 1939, is a Scottish historian and Hispanist, specialising in Later Medieval Spain . Maynard 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 . Dani Gal. Dani Gal (born 1977 Jerusalem) is a German video artist . Robert Holden. Robert Holden is a British landscape architect born in Preston and educated at the University of Newcastle upon Tyne . Paweł Zalewski. Paweł Zalewski (born September 25, 1964 in Warsaw) is a Polish politician . Michael Carney. Born in Waterford, Ireland, Carney was educated at the Common School of Halifax, Nova Scotia . Donald Appleyard. Born in England, Appleyard studied first architecture, and later urban planning at the Massachusetts Institute of Technology . Thomas Tod Stoddart. Thomas Tod Stoddart (1810-1880) was a Scottish angler and poet . Guy De Saint Cyr. Guy De Saint Cyr (born:15 April 1958, Berlin, Germany) is a German actor . Adrian 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 . Amélie Mummendey. Amélie Mummendey (* 19 June 1944 in Bonn, Germany) is a German social psychologist . Claire Burch. Claire Burch (b. 1925 in Brooklyn, New York - d May 21, 2009) was an American author, filmmaker and poet . Lloyd Youngblood. Born in Beaumont, Texas in 1946, Youngblood received his Bachelor of Arts degree from Rice University in 1969 . World 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 . Wilhelm Boger. Born in Stuttgart, Germany, Boger joined the HJ (Hitler youth) in his teens . Raffaele 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 . Vittorio Blanseri. Vittorio Blanseri (c. 1735-1775) (or Blancheri) was an Italian painter, born at Venice . Felipe 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 . John 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 . Cipriano de Valera. Valera was born at Seville . Charles Collé. From a notary's office, Collé was transferred to that of the receiver-general of finance, where he remained for nearly twenty years . Thierry Ehrmann. Thierry Ehrmann, artist, was born in Lyon, France . Alain Dorval. Alain Dorval (born 1946 as Alain Bergé) is a French voice actor born in Algiers . Sandrina Malakiano. Sandrina Malakiano (born 24 November 1971 in Bangkok) is a leading news presenter of Metro TV, an Indonesian news television channel . Romeo Niram. Romeo Niram (born, 1974 in Bucharest) is a painter born in Romania . Leon Dycian. Born in Poland in 1911, Dycian attended university and was certified as a lawyer . Mason Cook Darling. Born in Amherst, Massachusetts, Darling attended the public schools . Bertram Stuart Straus. Born in Manchester, he was the son of Henry S Straus of Sedgley Park, a merchant and vice consul for the Netherlands . Earle J. Gluck. Earle J Gluck (May 23, 1900 -- February 19, 1972), was a radio pioneer, born in Maryland . Jonathan B. Barry. Born in Milwaukee, Wisconsin, Barry graduated from Shorewood High School . Bernard Leclerc. Born in France, Leclerc studied political sciences in California, United States . Dominic Dromgoole. Born in Bristol, Dominic grew up on a farm in Somerset and attended Millfield School in Street, Somerset . Stanley Arthur Franklin. Stanley (Stan) Franklin, born at Bow in the East End of London, was the son of coppersmith Harry Franklin . Marc 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 . Leslie Allen. Leslie Allen (5 February 1904 Chicago, Illinois -- 1 May 1977 Wilmette, Illinois) was an American racecar driver . Yang 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 . Lawrence E. Kahn. Lawrence E Kahn (b . Cornélie Falcon. She was born Marie-Cornélie Falcon in Paris to Pierre Falcon, a master-tailor and his wife Edmé-Cornélie . Wojciech Rychlik. Wojciech Rychlik is a biologist and photographer, born in Poland and living in the USA since 1980 . Frederick 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 . Willis Jackson, Baron Jackson of Burnley. Born in Burnley, he was the only son of Herbert Jackson and his wife Annie Hiley . Diane Carlson Evans. Carlson Evans was born and raised on a dairy farm in rural Minnesota and graduated from nursing school in Minneapolis, Minnesota . Joseph W. White. Born in Cambridge, Ohio, White attended the common schools and Cambridge Academy . Franz Dominic Grassi. Franz Dominic Grassi (* 11 May 1801 in Leipzig; † 14 November 1880 Leipzig) was a merchant in Leipzig with Italian descent . Stefano 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 . Ibrahim Diarra. Ibrahim Diarra (born 25 May 1983 in Paris) is a French rugby union footballer . Jennifer 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 . Peter 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 . Anna Hegner. Anna Hegner (* 1 March 1881 in Basel; † 3 February 1963 in Basel) was a Swiss violinist, music composer and pedagogue . Simon H. Rifkind. Born in Lithuania, Rifkind emigrated to the United States in 1910 . Carey Beebe. Carey Beebe, born in Melbourne in 1960, is an Australian harpsichord maker and technician . Wang 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 . Eric Ash. Born in Berlin, Ash emigrated with his family to Britain in 1938 to escape Nazism . Alaric Alexander Watts. Alaric Alexander Watts (16 March 1797 - 5 April 1864), British poet and journalist, born in London . Joseph Isabelle. Joseph Gaston Isabelle (born 14 November 1920 in Hull, Quebec) was a Liberal party member of the Canadian House of Commons . Alexander Wilson. Born in Virginia, Wilson completed preparatory studies . Jani Golob. Jani Golob (born 18 January 1948 in Ljubljana) is a Slovenian composer, conductor and violinist . Peyman Hooshmandzadeh. Peyman Hooshmandzadeh (born 1969 in Tehran) is an Iranian photographer and author . Walter Dulaney Addison. Walter Dulaney Addison was born at Annapolis, Maryland on January 1, 1769, the son of Thomas Covington Addison and Rebecca Dulaney Addison . Gary Franklin. Gary Franklin was born to a Jewish family in Leipzig, Germany on September 22, 1928 . John Esposito. Born in Brooklyn, Esposito was raised in the Hudson Valley in a family that included policemen but also artists and musicians . Walter 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 . Denys 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 . Brigitte 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 . Francis Williams. Francis Williams (1702--1770) was a scholar and poet born in Kingston, Jamaica . Alicia Thorgrimsson. Alicia Thorgrimsson is a Canadian actress born in Brandon, Manitoba to an Icelandic/Scottish father, and a Guyanese mother . Tolga Tekinalp. Tolga Tekinalp (born 28 December 1974 in Turkey) is former professional basketball player from Turkey . Wentworth Arthur Matthew. According to Matthew, he was born in Lagos, Nigeria, although others say he was born in St Kitts . Harry 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 . Eduardo 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 . Sir William Pearce, 2nd Baronet. Pearce was son of the Clydeside shipbuilder Sir William Pearce, 1st Baronet and his wife Dinah Elizabeth, née Scooter . Surinder Khanna. Surinder Khanna (born 3 June 1956, in Delhi, India) is a former Indian cricketer . Tom Hamilton. Born in Belfast, Hamilton studied at the Methodist College, Belfast, then at Stranmillis College . Stephen Levine. Born in Albany, New York, Levine attended the University of Miami . Gottlieb Bodmer. Bodmer was born at Munich in 1804 . Collins J. Seitz. Born in Wilmington, Delaware, Seitz graduated from the University of Delaware and later the University of Virginia Law School . Jaan Arder. Jaan Arder (born February 26, 1952, Tallinn) is an Estonian singer . Eva Maria Zuk. Eva Maria Zuk is a Mexican piano concertist, who was born in Poland, but raised in Venezuela and New York City . Benjamin Enos. Benjamin Enos (February 13, 1788 Richmond, Washington County, Rhode Island - February 4, 1868 DeRuyter, Madison County, New York) was an American politician . Richard Anthony. Richard Anthony is a French singer, born 13 January 1938 in Cairo, Egypt, as Ricardo Btesh . Arthur Neal. Born in Sheffield, Neal attended Wesley College before becoming a solicitor . Jan Kregel. Jan A Kregel (born 19 April 1944, Dallas, Texas) is an eminent Post-Keynesian economist . Henry Lerolle. Henry Lerolle (3 October 1848 -- 22 April 1929) was a French painter, art collector and patron, born in Paris . Leo Connellan. Leo Connellan (November 30, 1928 -- February 22, 2001) was an American poet born in Portland, Maine . Alain Deloche. Alain Deloche, born 2 September 1940 at Paris, is a French surgeon . Charles 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 . Edward Stone Parker. Parker was born on 17 May 1802 in London to Edward Stone Parker and his wife Mary . Samuel Lancaster Gerry. Born in Boston, Gerry was self-taught as an artist . Adrian Lombard. Adrian Lombard was born in the city of Coventry, Warwickshire, on 9 January 1915 . Lewis Yelland Andrews. Lewis Yelland Andrews (b. 1896 in Sydney; d 26 September 1937 in Nazareth) . Jim Boyd. Jim Boyd is an American actor, born in Philadelphia . James 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 . Sahara Smith. Sahara Smith is a young American singer-songwriter born in Austin, Texas in 1988 . Hugues Krafft. Hugues Krafft (1853 - 1935) was a French photographer born in Paris . Barbara von Johnson. Barbara von Johnson (b. 1942 in Munich) is a German illustrator and artist . Leib Ostrow. Leib Ostrow an American music producer, was born in Detroit in 1951 and developed a keen love of music at an early age . Chris Vaefaga. Chris Vaefaga (born 1 November 1987 in Auckland, New Zealand) is a rugby league player for the Bulldogs in the National Rugby League . Henry Neele. Henry Neele (January 29, 1798 -- February 7, 1828) was an English poet and literary scholar . Buzzy 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 . Worthington Hooker. Worthington Hooker (1806-1867) was an American physician, born in Springfield, Massachusetts . Fred Lecklider. Fred Lecklider (9 June 1895 Toledo, Ohio -- 10 January 1964 Los Angeles, California) was an American racecar driver . Aleksander Ż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 . Gabriele 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 . Heather 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 . Wang 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 . Gabrielle de Coignard. Gabrielle de Coignard (1550-1586) was a French poet, born in Toulouse, France, to John de Coignard and Louise de Baulac . David Aiken. Born in Benton, Illinois, Aiken studied English at Southern Illinois Normal College where he matriculated in 1935 . Allison 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 . Karen 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) . Emil 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č) . Mamta Kharab. Mamta Kharab (born January 26, 1982, Haryana) is the current captain of the Indian women's hockey team . Christelle Lefranc. Christelle Lefranc (born March 15, 1980) is a French fashion model from Paris, France . Jimmy 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 . Emma Ejwertz. Emma Ejwertz is a Swedish singer/songwriter who grew up in southwest Sweden . Justin Hickey. Hickey was born in a working class suburb of Sydney, where he attended De La Salle College . Desmond T. Burke. Born in Ottawa, Ontario,, Burke attended Lisgar Collegiate Institute where he was a member of the school's cadet corps . Matthew Mead. Matthew Mead (born 1924, Buckinghamshire) is an English poet . Thalia Pellegrini. Thalia Pellegrini (born 16 August 1978, London) is a British television presenter . Shyril O'Steen. Shyril O'Steen (born October 5, 1960 in Seattle, Washington) is a former American competitive rower and Olympic gold medalist . George 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 . Peter 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 . Barys Tasman. Barys Tasman (; ) (born 13 November 1954, in Minsk, Belarus), is one of the most respected sports writers of Belarusian journalism . Vernon Knowles. Vernon Knowles (1899-1968) was an Australian author, born in Adelaide . Paul Streeten. Born in Austria, Streeten spent his formative years in Vienna . Gerrit Noordzij. Gerrit Noordzij (born 2 April 1931, Rotterdam) is a Dutch typographer, typeface designer, and author . Aghasi Khanjian. Khanjian was born in the city of Van, Ottoman Empire (today eastern Turkey) . Ignatius Cockshutt. The son of James Cockshutt and Mary Nightingale, he was born in Bradford, Yorkshire, England . Joseph Hislop. Joseph Hislop was born in the city of Edinburgh, at 16 Beaumont (sc. Bowmont) Place, in 1884 . Eli Capilouto. Capilouto is a native of Alabama . Walter Ehrlich. Walter Ehrlich (May 16, 1896 in Berlin -- December 26, 1968 in Bad Ragaz, Canton of St Gallen, Switzerland) was a German philosopher . Justin Wintle. Justin Wintle (born 1949) is an English author, editor and journalist who has contributed to a wide variety of media-outlets . William Walcutt. William Walcutt (April 28, 1819 Columbus, Ohio - April 22, 1882 New York City) was an American sculptor . Felix Rottenberg. Felix Rottenberg (born 4 June 1957, Amsterdam) is a Dutch politician . Radovan 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 . Olaf Rude. Olaf Rude (1886--1957) was a Danish painter who was born in Estonia . Charlene McMann. Charlene McMann, born in Chicago, Illinois, is an advocate for cancer patients and children . James 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 . Howard Loxton. Howard Loxton is a British theatre critic and writer, was born in Birmingham, England in 1934 . John Ferguson. Ferguson was born at Irvine, Ayrshire, 28 February 1787 . Bernard Brodie. Born in Chicago, Bernard Brodie was the third of four sons of Max and Esther (Bloch) Brodie, Jewish immigrants from the Russian Empire . Philip Hershkovitz. Philip Hershkovitz (12 October 1909 -- 15 February 1997) was an American mammalogist . Philip Jeremiah Schuyler. Philip Jeremiah Schuyler (January 21, 1768 Albany, New York -- February 21, 1835 New York City) was an American politician from New York . Kong Bai Ji. Kong Bai Ji is a contemporary Chinese artist born in Shanghai, in the People's Republic of China, in 1932 . Richard 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 . Marty 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) . Gerard Hemsworth. Gerard Hemsworth (born 1945, London) is an academic and a contemporary artist . George Hulse. George Hulse (1927 - September 10, 2001) was a British actor . Jack Petticord. Jack Petticord (1898 -- 2 December 1940) was an American racecar driver, born in Chicago, Illinois . Sylvia 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 . Doğa Bekleriz. Doğa Bekleriz (born 28 November 1977, Istanbul) is a Turkish model, actress and TV presenter . Richard Bohn. Karl Theodor Richard Bohn (29 December 1849 -- 22 August 1898) was a German archaeological architect born in Berlin . Chris Pile. Chris Pile, born 1969 in Warwickshire, England, was a programmer, notorious in late 1995 as ``The Black Baron'' . David Hackl. David Hackl (born 7 February 1973 in Toronto) is a Canadian film director and production designer . Tom Arnold. Tom Arnold was born (as Thomas Richard Arnold) in London on 25 January 1947 . Juan Carlos Zald%C3%ADvar. Juan Carlos Zaldívar is a filmmaker and video artist who was born in Cuba . Robert 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 . Peter Dembicki. Peter Dembicki (born 24 September 1980 in Vancouver) is a Canadian rower . Eduardo Prado Coelho. Eduardo Prado Coelho (29 March 1944 Lisbon - 25 August 2007 Lisbon, Portugal) was a Portuguese writer, journalist, columnist and university professor . Paul Hallez. Paul Hallez (10 September 1846 - 2 November 1938) was a French zoologist and embryologist born in Lille . George Bruce. Bruce, who was born in Scotland, immigrated to America in 1795 and served his apprenticeship in Philadelphia . Louisa 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 . Robert Moore. Robert Moore is a Canadian poet, actor, director, playwright, and professor, born in Hamilton, Ontario . Jean Noël Hallé. Jean Noël Hallé (January 2, 1754 -- February 11, 1822) was a French physician born in Paris . Julian 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 . Tania Corrigan. Tania Corrigan (born 24 November 1965 in Auckland, New Zealand) is a shooting competitor for New Zealand . James Christie. Born in Perth in 1730, Christie went on to found Christie's auctioneers in December 5, 1766 . William Kraft. William Kraft (born 1923, in Chicago, Illinois) is a composer, conductor, teacher, and percussionist . Juan Bautista de Lezana. Lezana was born at Madrid . Marcus Tuite. Marcus Tuite (born 11 May 1968 in Dublin) was an Irish soccer player during the 1980s and 1990s . Paul Downes. Born in Devon, Downes played classical guitar in his youth . Eleni Cubitt. Eleni Cubitt is a film maker born in Greece . Pieter de Molijn. Pieter de Molijn (6 April 159523 March 1661) was a Dutch Golden Age painter and engraver born in England . Gustav Bischof. Karl Gustav Bischof (January 18, 1792 -- November 30, 1870) was a German chemist, born in Nuremberg, Bavaria . Wayne Elcock. Wayne Elcock (born 12 February 1974 in Birmingham) is an English boxer . Elnathan 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 . Gordon 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 . Fran%C3%A7ois Ozenda. François Ozenda (1923--1976) was a painter born in Marseille, France . Nancy 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 . Shane 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 . Sir 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 . Simone Iannarelli. Simone Iannarelli is a composer and classical guitarist born in Rome, Italy, in 1970 . John 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 . Edouard Grikurov. Born in Tbilisi, Grikurov studied at the Tbilisi Conservatoire where he was a pupil of Mikhail Ippolitov-Ivanov . Timothy L. O'Brien. Born in Illinois, O'Brien is a graduate of Loyola Academy and Georgetown University, where he studied literature . John L. Morrison. Born in Scotland, Morrison emigrated to Connecticut around 1830 and learned carpentry . DJ Woody. DJ Woody (aka Lee Woodvine) is a prolific DJ and turntablist born in Burnley, Lancashire UK in 1977 . Joshua Newtonn. Joshua Newtonn (born 1969 in Kerala, India) is an Indian writer of stories and an acclaimed screenwriter and a former journalist . Jeff Chandler. ``Joltin''' Jeff Chandler (born September 3, 1956 in Philadelphia, Pennsylvania) is a former boxer . Godfrey Cripps. Born in India and educated at Cheltenham College, Cripps played just four first-class cricket matches, all of them in South Africa . Samuel von Schmettau. Samuel Graf von Schmettau (24 March 1684 Berlin - 18 August 1751) was a Prussian field marshal . Margi Scharff. Margi Scharff (b. February 11, 1955, Memphis, Tennessee - d July 2, 2007, Tiburon, California) was an American artist . Lance 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 . Henry 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 . Paule 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 . Rona Hartner. Rona Hartner (born 9 March 1973, Bucharest) is a Romanian actress and singer . Terry Wardle. Terry Wardle (born 17 April 1944) is a British writer born in Hereford . Ishwardas Rohani. Ishwardas Rohani is the speaker of Madhya Pradesh legislative assembly . Leonard Strong. Leonard Clarence Strong (b . Colin Kennedy. Born in Hamilton, Ohio in 1823, Kennedy was the second of five children in an unstable family . Peter Freebody. Freebody was born on 12 August 1950 in Sydney, Australia . Biff Mitchell. Born in Toronto, Ontario, Mitchell graduated from the University of New Brunswick with an honors degree in English Literature in 1974 . Alice Harrison. Alice Harrison (1852--May 3, 1896) was an English stage actress born in London, England . Gabriel Bertrand. Gabriel Bertrand (born 17 May 1867 in Paris, died 20 June 1962 in Paris) was a French biochemist and bacteriologist . Don 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 . Queenie 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 . Thomas Playfere. Born in London about 1561, he was son of William Playfere and Alice, daughter of William Wood of Bolling in Kent . Georges 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 . Carlo Giuseppe Ratti. Carlo Giuseppe Ratti (1737--1795) was an Italian art biographer and painter of the late-Baroque period . Martin Kosleck. Kosleck was born Nicolaie Yoshkin in Barkotzen in Pomerania, Germany, the son of a Jewish Russian forester . Bernhard Fries. Bernhard Fries (16 May 1820 Heidelberg -- 21 May 1879 Munich) was a German landscape painter . Reed Hansen. Reed Hansen (born April 22, 1990) is a wakeskater who was born in Orlando, Florida . Ron 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 . Sir 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 . Marjorie Schwarzer. Born in Boston, Schwarzer spent her early years in Buffalo, New York . William L. Ward. Born in Pemberwick, town of Greenwich, Connecticut, Ward moved to Port Chester, New York, with his parents in 1863 . Christa 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 . Robert John. Born in Birmingham, Alabama on November 10, 1961, John moved to California with his parents when he was three years old . Leonard Bosack. Born in Pennsylvania in 1952, Leonard Bosack graduated from La Salle College High School in 1969 . Juan Carlos Carbonell. Juan Carlos Carbonell (born May 16, 1970), is a Chilean open wheel racecar driver . Alberto Saichann. Alberto Saichann is a comic book artist and penciller born in Argentina . Gianni 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 . Emmanuel Schelstrate. Emmanuel Schelstrate (1649 -- 6 April 1692) was a Catholic theologian born at Antwerp in 1649 . Arthur William à Beckett. Arthur William à Beckett (25 October 1844 Fulham - 14 January 1909 London) was an English journalist and man of letters . Arja Kajermo. Arja Kajermo is a cartoonist, born in Finland, raised in Sweden, currently residing in Ireland . Bob 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 . Petr Kroutil. Petr Kroutil (b. 31 January 1973, Prague, Czechoslovakia) is a Czech musician and actor . Thomas 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 . Jonathan 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 . Albert 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 . Joe 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 . Gé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 . Vishal Marwaha. Vishal Marwaha (born 8 May 1976 in Glasgow) is a Scottish field hockey player . Jos%C3%A9 Pou. José Pou is a cartoon artist who was born in Nicaragua in 1973 . Juan Manén. Juan Manén (or , May 14, 1883 - June 26, 1971) was a Spanish violinist and composer, born in Barcelona . Nazik Saba Yared. Nazik Saba Yared (born 1928 Jerusalem) is a Lebanese novelist, and academic . Jean Gallon. Born in Paris, Gallon was the elder brother of composer Noël Gallon . Marga van Praag. Marga van Praag (born September 14, 1946, Amsterdam) is a Dutch journalist and television presenter . Hiram Pitt Bennet. Born in Carthage, Maine, Bennet moved to Ohio with his parents, who settled in Richland County in 1831 . Pierre 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 . Hardial 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) . Dennis Conta. Born in Milwaukee, Wisconsin, Conta graduated from Casimir Pulaski High School . Harrie Wood. Wood was born at Kensington in London to public servant William Alexander Wood and Margaret Eleanor Hall . Robert 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 . Thomas Ebdon. Thomas Ebdon (1738--1811) was a British composer and organist born in Durham . Nick Doody. Nick Doody (born 1972 in Morley, West Yorkshire) is a British stand-up comedian . Salvador Cristau Coll. Salvador Cristau Coll was born on 15 April 1950 in Barcelona, Spain . Jason Hedlesky. Jason Hedlesky (born February 20, 1974, Clinton, Michigan) is an American race car driver . Michael Guider. Michael Guider was born on 20 October 1950, in the city of Melbourne, Victoria . Salomon Konijn. Salomon Konijn (January 14, 1874, in Amsterdam -- March 15, 1932, in Amsterdam) was a Dutch gymnast who competed in the 1908 Summer Olympics . Zdzis%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 . Francis 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 . Csaba Ő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 . Henri Jeanneret. Henri Jeanneret (born 1 January 1878 in Switzerland) was an Australian rules football player, who played in the Victorian Football League (VFL) . Nicholas Riccardi. Nicholas Riccardi (born at Genoa, 1585; died at Rome, 30 May 1639) was an Italian Dominican theologian, writer and preacher . Raymond Meier. Raymond Meier born in Switzerland in 1957, is a Swiss-American Photographer . Graham Reilly. Graham Reilly (born in 1972 in London) is a British composer, known for composing television music . William 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 . John 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 . Anita Vogel. Anita Vogel (born November 24, 1969, California) is an American news reporter for the Fox News Channel . Francis 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 . Richard E. Council. Richard E Council (born October 1, 1947 Tampa, Florida) (sometimes credited as Richard Council) is an American film, television and stage actor . Peter Verhoek. Peter Verhoek (born 16 September 1955, Auckland) was a New Zealand cricketer who played for Central Districts Stags . Dennis 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 . Lukáš Kándl. Born in 1944 in Prague, Czech Republic, Lukáš Kándl is a well-known artist in Magic Realism . Eliza 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 . Thomas Dausgaard. Thomas Dausgaard (), (born 4 July 1963 in Copenhagen) is a Danish conductor . James 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 . Karl Friedrich von Klöden. Karl Friedrich von Klöden (21 May 1786 Berlin - 9 January 1856 Berlin) was a German educator, historian, and geographer . Brad 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 . Jay 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 . Stacy Clark. Stacy Clark (born September 21, 1980) is an American singer-songwriter born in Buffalo, New York . David 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 . Arsen Savadov. He was born in 1962 in Kiev, to the family of Vladimir Savadov, a book illustrator, originally from Baku, Azerbaijan . Simon Binnendijk. Simon Binnendijk (March 26, 1821 -- October 28, 1883) was a Dutch gardener and botanist born in Leiden . Alan Davey. Alan Davey (born 11 September 1963, Ipswich, Suffolk) is best known as the former bassist with Hawkwind . Henry W. Lee. Born in London, Lee worked in the printing industry, then joined the Social Democratic Federation (SDF) soon after its foundation . Alfred 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 . Paul Varley. Paul Varley (May 24, 1949 -- July 2, 2008) was an English musician best known as the drummer in the band Arrows . Narado 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 . Jarvis Kenrick. Jarvis Kenrick (born 13 November 1852 in Chichester, Sussex; died 29 January 1949 in Blatchington, Sussex) was an English association football (soccer) player . Dwight Yates. Born in Montana, Yates has worked as a secondary school master, medical practitioner in East Africa, and soldier in the US military . Anna Barriball. Anna Barriball (born 1972, Plymouth, UK) is an artist based in South London . Miriam Slater. Miriam Slater (born February 9, 1952, Los Angeles, California) is an American artist who paints both objects and paintings . Mark 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.) . Dick Stockton. Dick Stockton (born in 1942 in Philadelphia, Pennsylvania) is an American sportscaster . Jacques d'Agar. Jacques d'Agar (1640 -- 1716) was a French portrait painter born in Paris . Mohammad Mottahedan. Mottahedan developed close relationships with a number of contemporary artists, and started to collect circa 1985 . Scott 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 . Kä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 . Laurence Lampert. Laurence Lampert is a leading academic on Nietzsche studies . Tancrède Dumas. Tancrède Dumas (1830-1905) was a photographer born in Italy who was active in the Near East . James 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 . George Otto Wirz. Born in Monroe, Wisconsin, Wirz was ordained to the priesthood for the Madison Diocese on May 31, 1952 . Jeff Simmons. Jeff Simmons, born May 1949 in Seattle, Washington, is a rock musician and former member of Frank Zappa's Mothers of Invention . Robert 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 . Artur Zawisza. Artur Zawisza (, born March 30, 1969 in Lublin, Poland) is a Polish politician . Edward Tufnell. Tufnell was born on 3 October 1814 in Bath, Somerset and educated at Eton and Wadham College, Oxford . Robbie Regan. Robbie Regan (born 30 August 1968 in Caerphilly, Wales is a Welsh former professional boxer . Brent Barraclough. Brent Barraclough is a classical pianist and film producer who was born in Canada in 1962 and is of British Citizenship . Diego Delgadillo. Delgadillo was a native of Granada . Erwin Lauper. Erwin Lauper (born 14 June 1946 in Bern) is a Swiss wheelchair curling player . Charles Amos Cummings. Born in Boston, Cummings was educated in the Boston Public Schools . Chris Christenson. Chris I Christenson (born in 1875 in Norway) was an American figure skater . Irfan 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 . Mark 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 . Charles 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 . Moses Hagiz. Moses Hagiz (1671 -- ca 1750) (Hebrew: משה חגיז) was a Talmudic scholar, rabbi, kabbalist, and author born in Jerusalem, Palestine . Elemé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 . Haru Mutasa. Haru Mutasa born in Zimbabwe . Morten Nordeide Johansen. Morten Nordeide Johansen (born 1951) is a Norwegian luger, born in Oslo . Ana Maria Narti. Ana Maria Narti, born 1936 in Bucharest, Romania is a Swedish writer and politician . George P. Merrill. George Perkins Merrill (May 31, 1854 Auburn, Maine -- August 15, 1929) was an American geologist . Kjersti Elvik. Kjersti Elvik (born 9 March 1969) is a Norwegian actress, born in Bergen . Maryem Tollar. Born in Cairo, Maryem went to Halifax, Nova Scotia, Canada with her parents when she was 1 in 1969 . Phillip Jackson. Phillip Jackson (born September 22, 1950, Chicago, IL) is an American politician . Tony 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 . Dá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 . Monika Meyer. Monika Meyer (born 23 June 1972 in Berlin) is a retired German football striker . Claude Weisz. Claude Weisz is a French film director born in Paris . Brian O'Riordan. Brian O'Riordan (born 4 February 1981 in Dublin), is a professional rugby player . Steven Hayward. Born in Toronto, Hayward attended the University of Toronto and York University . Amy Chance. Amy Chance (born July 21, 1975) was an American child actor born in Hollywood, California . Matt 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 . Sam Lynch. Sam Lynch (born 29 November 1975 in Limerick) is an Irish rower . Kris 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 . John Baptist de Faria. John Baptist de Faria was born in 1871, in Portugal . Federico Fabregat. Federico Fabregat is a Mexican artist and poet born in Guadalajara, Jalisco . Stefan Nystrom. Nystrom was born on 31 December 1973 in Sweden . Lucine Amara. Amara was born Lucine Armaganian in Hartford, Connecticut, of Armenian heritage, before moving to San Francisco where she was raised . Anna 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 . Joe 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 . John McLaren, Lord McLaren. The son of Duncan McLaren, a former Provost of Edinburgh and Member of Parliament, he was born in Edinburgh . David Basnett. Born in Liverpool, Basnett studied at Quarry Bank High School before becoming a bank clerk . James 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 . Alexander Manning. Born in Dublin, Ireland, Manning was the last unelected Toronto mayors . Ornella 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 . Samuel Partridge. Born in Norwich, Vermont, Partridge received a limited schooling . Aristides Brezina. Aristides Brezina (4 May 1848 -- 25 May 1909) was an Austrian mineralogist born in Vienna . Don Mankiewicz. Born in Berlin, Germany, he is the son of Herman J Mankiewicz . Giorgio 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 . Chafik 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'' . Alexander Garden. Rev Alexander Garden (c. 1685-1756) was a clergyman born in Scotland, and educated at the University of Aberdeen . Brandt C. Louie. Born in Vancouver, British Columbia, Louie received his BComm from University of British Columbia and became a chartered accountant three years later . Gunnar Samuelsson. Gunnar Samuelsson (born May 2, 1927, Lima, Dalarna - November 4, 2007) was a Swedish cross-country skier who competed in the 1950s . Stanley Morgan. Stanley Morgan (born on 10 November 1929 in Liverpool, England) is an English writer and actor . Peter Hargitai. Peter Hargitai (born 1947 Budapest, Hungary) is an award winning poet, novelist, and translator of Hungarian literature . JJ Horner. JJ Horner born January 14, 1982, from Willmar, Minnesota is an American artist, who resides in Tempe, Arizona . Mary 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 . Chris McKhool. Chris McKhool, born November 18, 1968 in Ottawa, Ontario, is a Canadian violinist, guitarist, composer, producer and singer-songwriter . Vincent Laforet. Vincent Laforet (born 1975, Switzerland) is a French American director and photographer . Bill Barminski. Bill Barminski (born 26 November 1962) is an American artist and filmmaker born in Chicago, Illinois . Sharon Duce. Sharon Duce (born 17 January 1950, Sheffield, Yorkshire) is a British actress, . Claude 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 . Herbert James Carter. Carter was born at Marlborough, Wiltshire, England, the son of James Carter, farmer, and his wife Mary Ann, née Freeman . Charles W. Moorman III. Charles W Moorman III, was born in Cincinnati, Ohio in 1925 . Hadi Sepehrzad. Hadi Sepehrzad (, born 19 January 1983 in Tehran) is an Iranian decathlete . Sam Cosstick. Cosstick was born at Croydon, Surrey, England . Ursula Evje. Ursula Evje (born 13 December 1944 in Oslo) is a Norwegian politician for the Progress Party . Nasos Thanopoulos. Nasos Thanopoulos (born 8 February 1968 in Athens) is a Greek Businessman and a minor shareholder of AEK Athens FC . German Sims Woodhead. Sir German Sims Woodhead, KBE (1855--1921) was an English pathologist, born at Huddersfield . John 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 . Harry E. T. Thayer. Harry E T Thayer (born 10 September 1927, Boston) was the sixth United States Ambassador to Singapore . Edith Dimock. Edith Dimock (1876--1955) was an American painter, born in Hartford, Connecticut . Roland Green. Roland Green (born on 29 July 1974 in Victoria, British Columbia) is a retired Canadian mountain bike and road bicycle racer . Bartle Brennen Bull. In the same year he moved to Bartle, Cuba, to manage his family's cattle ranch and sugar plantation . Daniel O'Mahony. Daniel O'Mahony (born 24 July 1973) is a half-British half-Irish author, born in Croydon . Tony Southgate. Tony Southgate (b. 25 May 1940, Coventry, England) is a British engineer and former racing car designer . Henry Bocking. Both he and his team fared better, with Bocking making eleven before Bennett bowled him, and Yorkshire drawing the game . John McNamara. John McNamara (born 1950) is an American artist who was born in Cambridge, Massachusetts . Morris Sigman. Born in Russia, Morris Sigman spent his youth working as a lumberjack before moving to London in 1902 . Prosper Garnot. Garnot was born at Brest . Masataka Yanagida. Masataka Yanagida, born 4 June 1979 in Tokyo, is a Japanese racing driver . Bertram 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) . John Herbert Claiborne. Born in 1828 in Virginia, Claiborne completed his medical studies in Philadelphia in 1851 . Vicente Gómez. Vicente Gómez, born in Honduras, was President of El Salvador from 1 to 15 February 1854 . Luka 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 . Albert Pratz. Born in Toronto, Pratz studied in his native city with Broadus Farmer and Luigi von Kunits . Enrique 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 . William 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 . Sarah Mytton Maury. Sarah Mytton Maury (1 November 1803 - October, 1849) was an English authoress, born in Liverpool to Bridgit Nelson and William Hughes . Francis Dunlap Gamewell. Francis Dunlap Gamewell (b. Aug 31, 1857, Camden, SC; d Aug 14, 1950, Clifton Springs, NY) was a Methodist missionary in China . Álvaro Fillol. Álvaro Fillol (born December 4, 1952, in Santiago, Chile), is a former professional tennis player from Chile . Helen Longworth. Helen Longworth (born 1976, Preston) is a British actor . Kip King. King was born Jerome Kattan in Chicago, Illinois . Riccardo 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) . George 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 . Jonathan Robinson. Born in Waterloo, Quebec, Robinson was a member of the Legislative Assembly of Quebec for Brome from 1936 until his death in 1948 . Lynne 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 . James Brown. James Brown (31 July 1862 -- 4 July 1922) was an English association football player of the Victorian era . George Kitching. George Kitching was born on 9 September 1910 in Guangzhou (Canton), China . Rhoda Holmes Nicholls. Rhoda Holmes Nicholls (1854-1930) was an American water-color painter, born in Coventry, England . Virginia 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 . Mark 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 . Frank Frankfort Moore. Born in Limerick, Ireland, Moore worked as a journalist (1876--92) before gaining fame as an author of fiction . Snorre Valen. Snorre Serigstad Valen (born 16 September 1984 in Oslo) is a Norwegian musician and politician (SV) . George 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 . Marco Napolioni. Marco Napolioni (born 16 June 1975 in Rome) is an Italian footballer . Arne 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 . Maurice Tadadjeu. Maurice Tadadjeu (b. 1950 in Cameroon) is a Vice-President of the African Union's Economic, Social and Cultural Council of Central Africa . John 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) . Lester Spangler. Lester Spangler (15 January 1906 Brook, Indiana -- 30 May 1933 Indianapolis, Indiana) was an American racecar driver . Robert 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 . Pierre deMorlaix. It is believed that Peter's actual name was Pierre De Morlaix, born in France . Linda Newell. Born in Oregon, Newell earned a bachelor's degree from the University of California at Irvine . Martin Malvy. Martin Malvy (born 24 February 1936, in Paris) is a French politician . Maurice Vaïsse. Maurice Vaïsse (born on 7 May 1942 in Algiers) is a French historian specialised in international relations and Defence . Arnaldo 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 . Nat Patton. Patton was born on a farm near tiny Tadmor in Houston County near Crockett in east Texas . Samuel Dick. Samuel was born at Nottingham in Prince George's County, Maryland . Edward Webster Bemis. Edward Webster Bemis (7 April 1860 Springfield, Massachusetts -- 25 September 1930) was a United States economist and a public utility expert . Lew 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 . Axel Leonard Melander. Axel Leonard Melander (3 June 1878 Chicago -- 8 Aug 1962) was an American entomologist specialising in Diptera and Hymenoptera . John Mundy. John Mundy born in Manchester, England is a British television presenter and voice-over artist . Alex 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 . Luis Mu%C3%B1oz. Luis Muñoz is a poet born in Granada, Spain, in 1966 . Franz Rosei. Franz Rosei (born on 2 July 1947 in Vienna) is an Austrian sculptor and draughtsman . Tadeusz Browicz. Tadeusz Browicz (September 15, 1847 -- March 20, 1928) was a Polish pathologist born in Lviv . Dave Berg. Dave Berg is a native of Portland, Oregon . Dilawar Hussain. Dilawar Hussain ( born March 19, 1907, Lahore - died on August 26, 1967, Lahore) was an early Indian Test cricketer . Herbert 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) . Nico Gardener. Nico Gardener (1908--1989) was a British international bridge player, born in Riga, Latvia (then part of Imperial Russia) . Victor Antoine Signoret. Victor Antoine Signoret (6 April 1816 Paris - 3 April 1889 Paris ) was a French pharmacologist, physician and entomologist . John B. Foster. John B Foster (1865--1930) was a New England artist, born in Gloucester on December 25, 1865 . Francis Allegra. Francis Marion Allegra (born in 1957 in Cleveland, Ohio) is an American federal judge on the United States Court of Federal Claims . Wallace Bishop. Wallace Bishop (b. Feb. 17, 1906, Chicago, Illinois - d May 2, 1986, Hilversum, Holland) was an American swing jazz drummer . Phil 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 . Roy Dalgarno. Roy Dalgarno is a social realist artist, born in Melbourne, Victoria (Australia) in 1910, died February 2001 in Auckland, New Zealand . Henry Woods. Henry Woods (1764--1826) was a United States Representative from Pennsylvania . Diana Trask. Diana Trask (born 23 June 1940) is an Australian and American country and pop singer born in Melbourne, Australia . Alec 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 . Lynne Kositsky. Kositsky, who was born in Montreal and grew up in London, England, now lives in the Niagara region of Ontario . Robert Boughey. Robert Boughey is an American architect born in Pennsylvania, USA . Cecil 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 . Xavi Vallmajó. Xavier Vallmajó Tercero (Born 19 February 1975 in Barcelona, Spain) is a Spanish Professional basketball player . Graham Ackerman. Graham Ackerman (born 14 July 1983, in Seattle, Washington) is an American gymnast . J.C. Patterson. Born in Armagh, Ireland in 1839, Patterson was educated in Dublin, Ireland and came to Canada in 1857 . Lawrence Willis. Lawrence Willis (born 12 July 1981 in Lafayette, Louisiana) is an American triple jumper . Elizabeth Forbes. Born in Ottawa, Forbes was the daughter of William Armstrong, an employee of the Government of Canada . Izolda Barudžija. Izolda Barudžija () is a Yugoslav singer born in Split . Rolf Schock. Rolf Schock (1933--1986), philosopher and artist, was born in France of German parents . Joel 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 . Jean Baptiste Claude Chatelain. Jean Baptiste Claude Chatelain, an engraver, was born in Paris about 1710 . Alejandro 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 . Peter Hoover. Born in Canada, Peter has also worked in Mexico, Costa Rica, United States, Chile, and Australia . John 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 . Alex 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 . John Smyth. Born in Ireland, Smyth worked as a London Underground driver . Gabriel Desjardins. Gabriel Desjardins (born 14 February 1949 in Montreal, Quebec) was a Progressive Conservative member of the Canadian House of Commons . Abhijit Kunte. Abhijit Kunte (born 3 March 1977, Pune) is an Indian chess Grandmaster . Mark Koevermans. Mark Koevermans (born 3 February 1968 in Rotterdam) is a former tennis player from the Netherlands, who turned professional in 1987 . Espen Giljane. Espen Giljane (born 28 February 1962 in Oslo) is a Norwegian ballet teacher and dancer . William 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 . David Mercer. David Mercer (born April 1950, Swansea, Wales) is a British television sports presenter . Princess 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 . Jeffrey H. Cohen. Jeffrey H Cohen, PhD, born in Brooklyn, NY in 1962 is an American Anthropologist . Charles Alford. Alford was born into an ecclesiastical family in Somerset, England on 13 August 1816 . Andrew 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) . Marcus Tsutakawa. Born in Seattle, Washington, Mr Tsutakawa began his teaching career as a Japanese teacher, but became the Orchestra director in 1985 . Ken Fowler. Ken Fowler (15 March 1907 Fargo, North Dakota -- 16 January 1981 St James City, Florida) was an American racecar driver . Henry 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 . Mark 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 . Janet Coster. Born in London, the daughter of a London Transport employee, Coster studied at the Guildhall School of Music and privately with Eva Turner . Sun 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 . Ed 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 . Grant McNally. Grant McNally (born 8 January 1962 in Vancouver, British Columbia) was a member of the Canadian House of Commons from 1997 to 2004 . Edward Locke. Edward Locke (1869--1945) was an American playwright born in England . Zsolt Hamar. Zsolt Hamar (born 1968 Budapest) is a Hungarian conductor . Murray 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 . Aboubacar 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 . David Marusek. David Marusek is an author who was born in Buffalo, New York but lived various places in youth . Liljana Lu%C4%8Di%C4%87. Liljana Lučić (born in 1953 in Belgrade, Serbia) . Enrico Toselli. Enrico Toselli (March 13, 1883 Florence -- January 15, 1926 Florence) was an Italian pianist and composer . Walter Bowers Pillsbury. Walter Bowers Pillsbury (July 21, 1872 -- June 3, 1960) was an American psychologist, born at Burlington, Iowa . John Butts. John Butts, who was born and educated in Cork, Ireland, spent most of his life in Dublin . John Cobbett. John Cobbett is a sculptor born in Edinburgh in 1929 . Minas Gekos. Minas Gekos (in Greek: Μηνάς Γκέκος; born November 7, 1959 in Constantinople is a Greek professional basketball coach and retired player . Andrew Patterson. Andrew Patterson (born 4 September 1975 in Belfast, Northern Ireland) is a former Irish cricketer . Alexander 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 . Paul Keenan. Paul Keenan (born 5 November 1976 in Lisbon, Portugal) is a songwriter and producer based in Dumbarton, near Glasgow in Scotland . Barry 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! . Mary Ann Kennedy. Mary Ann Kennedy was born and brought up in Glasgow in a Gaelic-speaking household . Bruno Arpaia. Bruno Arpaia, born in Naples (Italy) in 1957, is an Italian writer and journalist . Simone Orlando. Simone Orlando is a Canadian ballet dancer and choreographer born in Vancouver British Columbia . Jazzy 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 . Binem Heller. Binem Heller is a Polish poet and activist . Olivia Poulet. Olivia Poulet (born 1978, London) is an English actress . Christoph M. Schmidt. Christoph M Schmidt (born 25 August 1962, in Canberra, Australia) is a German economist . Siamak Shayeghi. Siamak Shayeghi (, born 1954 in Abadan, Iran is an Iranian film director and film producer . Mike Shank. Mike Shank (born September 22, 1966) is an American racecar team owner and former racecar driver born in Columbus, Ohio . Spiro Zavos. Spiro Zavos (born in 1937 in Wellington, New Zealand of Greek immigrant parents) is an Australasian historian, philosopher, journalist and writer . Tommie Lindsey. Tommie Lindsey (born September 28, 1951 Oakland, California) is a Forensics coach, at James Logan High School . Aneesh Kapil. Aneesh Kapil (born 3 August 1993, Wolverhampton, England) is an English cricketer who currently plays for Worcestershire County Cricket Club . Bijoy 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 . Henry Beecher Dierdorff. Dierdorff was born near Seville in Medina County, Ohio in 1851 . Samuel 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 . John Augustus Stone. John Augustus Stone (born December 15, 1801 Concord, Massachusetts - June 1, 1834 Philadelphia) was an American actor, dramatist, and playwright . Thomas 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 . Max Coyer. Max Coyer (1954--1988) was an American artist, born in Hartford, Connecticut in 1954 . Serge Losique. Serge Losique (born in 1931 in Yugoslavia) is the founder & president of the Montreal World Film Festival since its opening . John B. Snook. Born in England, Snook emigrated to the United States with his family as a child . Bó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 . Lawrence Townsend. Born in Philadelphia, Lawrence Townsend was educated at Mantua Academy (1872--77) and entered the University of Pennsylvania in the class of 1881 . Abdou Cherif. Abdou Cherif (also Abdou Sherif, ) is an artist born in Casablanca . Joseph 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 . Gregory V. Palmer. Gregory Vaughn Palmer (born 8 August 1954) is an American Bishop of The United Methodist Church, elected in 2000 . Nathaniel Culverwell. Nathaniel Culverwell (1619-1651), alternative spellings Nathanael or Culverwell) was an English author and theologian, born in Middlesex . John Friedrich. John Friedrich (b. March 15, 1958, California) is an American film actor . Jean Trembley. Jean Trembley (1749 - September 18, 1811), born at Geneva, contributed to the development of differential equations, finite differences, and the calculus of probabilities . Giuseppe Simonelli. Born in Naples around 1650, Simonelli was one of the most important painters of the school of Luca Giordano . John Warrock. He was born in 1773 in Richmond, Virginia, to Scottish apothocary Ludovic Warrock and Molly Bransford . Antonietta Pastori. Born in Milan, Pastori studied piano and singing at the Milan Conservatory . Dhyanyogi Madhusudandas. Shri Dhyanyogi Madhusudandas was an Indian saint born in Bihar, India . Hiba Daniel. Hiba Daniel, born in Lebanon, is a Swedish-Palestinian journalist, working for Swedish Radio . Jacob Murey. Jacob Murey (born 2 August 1941, Moscow) is a Russian-born Israeli chess grandmaster . Emmy Verhey. Emmy Verhey (born 13 March 1949, Amsterdam) is a Dutch violinist . Alain Ehrenberg. Alain Ehrenberg, born in Paris in 1950, is a French sociologist . Santiago 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) . Aleksandra Romanić. Aleksandra Romanic was born 1958 in Zagreb into a family of musicians . Gayathri Mudigonda. Gayathri Mudigonda (born September 3, 1983, in India) is a Swedish actress . Robert 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 . Thomas 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 . Emanuel Brouwer. Emanuel Brouwer (August 25, 1881, in Amsterdam -- July 6, 1954, in Huizen) was a Dutch gymnast who competed in the 1908 Summer Olympics . Tariq Hashim. Tariq Hashim is an Iraqi filmmaker who was born in Baghdad, 1960 . David Lake. Born in Bangalore, India 26 March 1929, India, Lake received a Jesuit education at St Xavier's School in Calcutta (1940--44) . Frederick Ellsworth Mather. The son of Ellsworth and Laura (Wolcott) Mather, he was born in Windsor, Connecticut . Tim 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 . Howard Griffiths. Born in Swansea, Griffiths earned a scholarship to Oxford University with the highest entry results in Wales . Edward 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 . John 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 . Rich 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 . Neil 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 . G%C3%B6khan Bozkaya. Gökhan Bozkaya (born 12 May 1981 in Germany) is a German footballer . Martin 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 . Gaspard Terrasson. Terrasson was born at Lyon . George Mudie. Born in Edinburgh, Scotland in 1788, Mudie became a supporter of Robert Owen's cooperative principles . Joseph 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 . John 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 . Tim Long. Tim Long (born June 14, 1969) is a comedy writer born in Brandon, Manitoba, Canada . Gonzalo Pieres, Sr.. Gonzalo was born and grew up in Argentina . Donald 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 . Vladimir Georgiev. Vladimir Georgiev (; born 27 August 1975 in Sofia, Bulgaria) is a Bulgarian chess Grandmaster . Yu Huili. Yu Huili (born October 5, 1982 in Sichuan) is a female Chinese softball player . Alexandra 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 . Nicole Hackett. Nicole Hackett (born 10 December 1978 in Sydney) is an athlete from Australia, who competes in triathlon . Carl Ludwig Brandt. Carl Ludwig Brandt (22 September 1831 Holstein, Germany - 1905) was a German-born artist who worked mostly in the United States . Aida Schlaepfer. Aida Schlaepfer (Born in Baghdad) is a Swiss film director and writer . Amy Neftzger. Amy was born on June 23 in Illinois and graduated from Elk Grove High School in Elk Grove Village, Illinois . Samuel Bourn the Elder. Bourn was born at Derby, where his father and grandfather (who were clothiers) had provided the town with a water supply . Hans 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 . Berthold Weisz. Berthold Weisz a Hungarian deputy; born at Budapest in 1845 . Marcia Gygli King. Marcia Gygli King (June 4, 1931 Cleveland, Ohio - January 18, 2011) was an American artist . Edmund 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) . Frederick 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 . Alice Robie Resnick. Alice Robie Resnick (Born 1939 in Erie, Pennsylvania) is a former Justice of the Supreme Court of Ohio . Philip Sington. Philip Sington is an English novelist and playwright . Nick Conrad. Nick Conrad (born 29 November 1984 in Norwich, UK) is a British radio and television presenter . Anastasius I. Pope Saint Anastasius I, born in Rome the son of Maximus, was pope from November 27, 399 to 401 . Ernst Friedrich. Ernst Friedrich (23 October 1886 Paris -- 22 January 1954 Nice) was a French racecar driver . Roy Sekoff. Roy Sekoff is the founding editor of The Huffington Post . Samuel 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 . David Schnitter. David Schnitter (b. March 19, 1948, Newark, New Jersey) is an American hard bop jazz tenor saxophonist . Jamie 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 . Takeshi Maeda. Takeshi Maeda (前田 剛 Maeda Takeshi) is a Japanese actor and seiyū born on January 10, 1975 in Tokyo . Brian Plummer. Brian Plummer, was a Canadian rock musician born in Saskatchewan . Joseph R. Chenelly. Chenelly, who was born in 1976 in Rochester, NY, joined the United States Marine Corps at the age of 21 . Brian Faloon. Brian Faloon is a musician born in Belfast, Northern Ireland . Antonio Tosti. Tosti was born on 4 October 1776 in Rome and died on 20 March 1866, also in Rome . Mehmet Ali İrtemçelik. Mehmet Ali İrtemçelik (b. March 17, 1950, Istanbul) is the previous ambassador of the Republic of Turkey to Germany . Dmitry Grigorieff. Dmitry Grigorieff was born in London in 1919 . Adolphe Cohn. Adolphe Cohn (1851 -- 1930) was an American educator, born in Paris . Alexander 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 . Lorne Rubenstein. Lorne Rubenstein (born 25 June 1948 in Toronto, Canada) is a Canadian golf journalist and author . Flemming Lassen. Flemming Lassen was born on 23 February 1901 in Copenhagen into an artistic family . James O'Mara. Born in Limerick, O'Mara was educated by the Christian Brothers in Limerick, and at Clongowes Wood College in Dublin . Davis Gaines. Davis Gaines (b. January 21, 1959, Orlando, Florida) is a stage actor . Donald W. Steinmetz. Born in Milwaukee, Wisconsin, Steinmetz graduated from the University of Wisconsin-- Madison and received his law degree there . Crist%C3%B3bal de Aguilar. Aguilar was a criollo born in Lima . Rüdiger Frank. Rüdiger Frank (born in 1969 in Leipzig, GDR) is a German economist and expert on North Korea and East Asia . Edward 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 . Essie Sakhai. Essie Sakhai, born in Iran and educated in Great Britain, is an expert on Persian carpets and oriental rugs . Francis W. Cushman. Born in Brighton, Washington County, Iowa, Cushman attended the public schools in Brighton and Pleasant Plain Academy in Pleasant Plain, Iowa . Ursula 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 . Carol 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 . Alec Statham. Alec Statham (born 1912 Coventry, England) was a Speedway rider who won the London Riders' Championship in 1949 whilst with the Wimbledon Dons . Marianne Peretti. Marianne Peretti (born in 1927 in Paris) is a Franco-Brazilian artist . Matteo Barzini. Matteo Barzini is an Italian filmmaker and producer born in Rome in 1981 and raised in Los Angeles . Alejandro Abellan. Alejandro Abellan (born May 13, 1965, Ottawa) is a Canadian film and television actor . Douglas Simpson. Douglas Simpson (born 15 May 1982 in Glasgow) is a field hockey player from Scotland . Andrea 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 . Danny Roxo. Staff Sergeant Francisco Daniel ``Danny'' Roxo (1933--1976) was a legendary Portuguese soldier in Mozambique . Tommy Waidelich. Tommy Waidelich (born 13 September 1963 in Stockholm) is a Swedish social democratic politician . Hazard E. Reeves. Born in Baltimore, Maryland, Reeves graduated from Georgia School of Technology in 1928 with a degree in engineering . Crystal Mangum. Mangum was born and grew up in Durham, to a father who drove trucks . Andrea 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 . Clive Gee. Clive Gee born in Ireland is rugby league player for the Portlaoise Panthers in Irish Elite League . Vincent 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 . John 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 . Miryana Ivanova Basheva. Miryana Ivanova Basheva (born 1947 Sofia) is a Bulgarian poet . Mordehai 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 . Matthew Hall McAllister. Born in Savannah, Georgia, McAllister attended Princeton University, and then read law in 1820 to enter the State Bar of Georgia . Thomas Morland. Born in Montreal, Canada East, Morland was the son of Thomas Morland and Helen Servante . Leigh Diffey. Leigh Diffey (born on 3 March 1971 in Brisbane) is an Australian auto racing commentator with the Speed Channel in the United States . Yuan Yufang. Yuan Yufang (born 1 February 1976 in Beijing, PR China) is a Malaysian race walker . Shahin Afrassiabi. Shahin Afrassiabi, born 1963 in Tehran, is an artist . Klaus Röder. Klaus Röder (often spelled Roeder) is a German musician and music teacher, born 7 April 1948 in Stuttgart, Germany . Eric Swinkels. Eric Swinkels (born March 30, 1949, Best, Netherlands) is a Dutch sports shooter and Olympic medalist . Henry Hiles. Born in Shrewsbury, Hiles was the youngest of six sons . Gottfried 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'' . Silke Bodenbender. Silke Bodenbender (born 31 January 1974 in Bonn) is a German actress . Frank Kaderabek. Frank Kaderabek is the former principal trumpet of the Philadelphia Orchestra and former trumpet instructor of the Curtis Institute in Philadelphia . Ian Steel. Born in Glasgow, Scotland, Ian Steel joined the Glasgow United club at 18, in 1946, introduced by a friend, John Brierley . Ebbe Hamerik. Born in Copenhagen, he was the son of composer Asger Hamerik . Robert Lecou. Robert Lecou (born 25 July 1950 in Paris) is a French politician . William Child. Born in Bristol, William Child was a chorister in the cathedral under the direction of Elway Bevin . Edwin 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 . Tony 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 . Silvana Cruciata. Silvana Cruciata (born 15 February 1953 in Naples) is a former Italian middle- and long-distance runner . Ernest 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 . Vivion de Valera. Born in Dublin in 1910, Vivion de Valera was educated at Blackrock College, University College Dublin (MSc, PhD) and King's Inns . Francis Montague Holl. Frank Holl (4 July 1845 -- 31 July 1888), English painter, was born in London, and was educated chiefly at University College School . Miguel García García. Born in Barcelona, García worked first as a newspaper seller, then a printer . Charles Marston. Born in Wolverhampton, Charles was the son of John Marston the founder of Sunbeam . Barry Upton. Barry Upton (born 25 February 1954, Hastings, Sussex) is an English songwriter, arranger, musician and producer of various forms of pop music . Dave 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 . Caleb 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 . William Gifford Palgrave. William Gifford Palgrave (1826--1888) was an Arabic scholar, born at Westminster, England . Hugh 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 . Matthew Taylor. Matthew Taylor (born 1968, Miami, Florida) is a musician and artist . Ed Rossbach. Ed Rossbach was an American fiber artist who was born in Chicago, Illinois in 1914 . Augusto De Marsanich. De Marsanich was born at Rome . František Neuwirt. František Neuwirt (born 1895 Prague, died 1957 Prague), professor of stomatology at Charles University in Prague . John Myres. Sir John Linton Myres (3 July 1869 in Preston -- 6 March 1954 in Oxford) was a British archaeologist . John Marshall Evans. Born in Virginia, Evans studied Russian history at Yale University, earning an undergraduate degree . Chad Hartigan. Chad Hartigan was born on the island of Cyprus in August 1982 . Henry 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 . Manuel Su%C3%A1rez %C3%81vila. Manuel Suárez Ávila (b. February 12, 1968, Trinidad) is a Bolivian politician . Juris 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 . Tommy Rustad. Tommy Rustad (born 3 September 1968 in Oslo) is a Norwegian auto racing driver . Rick Holbrook. Rick Holbrook (born May 28, 1948, Chicago, Illinois, died December 23, 2007) was an Olympic weightlifter for the United States . Allan Stewart. Born in Edinburgh on February 11, 1865, his father being the postmaster at Leith, Stewart was educated at the Edinburgh Institution . Stephen Codman. Born in Norwich, Codman was a pupil of John Christmas Beckwith and William Crotch . John Arneil. John Arneil was born 1862 in India and died 11 August 1938 in Auckland . Tomislav 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 . Claire Ritter. Claire Ritter (b. May 31, 1952, Charlotte, North Carolina) . Dino 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 . Eric 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 . Herbert J. Davenport. Born in Vermont, Davenport began his formal career as assistant professor at the University of Chicago in 1902 . Dave Wood. Dave Wood is an Australian calligrapher born in Manchester, England . Rob Shelby. Rob Shelby was born on July 5, 1978, in a suburb of Detroit, Michigan, to Bob and Diana Shelby . Jennifer Smith. Born in Lisbon, Jennifer Smith graduated from the Lisbon Conservatory of Music and came to London on a Gulbenkian scholarship . Mike Peden. Born in Edinburgh, Scotland, Peden began his career as a bass player and as a member of The Chimes . Richard Collins, Baron Collins. Born in Dublin, Collins was educated at Trinity College, Dublin, and Downing College, Cambridge . Alonso del Arco. Alonso del Arco, born at Madrid in 1635, was a disciple of Antonio de Pereda . Ömer Kaner. Ömer Kaner (born 21 May 1951 in Istanbul) is a Turkish football coach and former player . Davor 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 . Pa Neumüller. Pa Neumüller (born 22 January 1963 in Stockholm, Sweden) . Jeremiah 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 . Walter 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 . Brent Rickles. Brent Rickles (born September 10, 1973 in London, England) is an American guitarist and indie rock musician . John Mahaffy. John Mahaffy (born July 18, 1919) is a retired professional ice hockey centre who played 37 games in the National Hockey League . Sofia Scalchi. Born in Turin in 1850, Scalchi studied voice with Augusta Boccabadati . Petra Krug. Petra Krug (born 9 November 1963 in Dresden) is a retired East German hurdler . Theron R. Strong. Theron Rudd Strong (November 7, 1802 Salisbury, Litchfield County, Connecticut - May 14, 1873) was an American lawyer and politician from New York, . Sathyabhama 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 . Petar %C4%8Culi%C4%87. Petar Čulić is one of the best world classical guitarists of young generation . Lev Leshchenko. Lev Leshchenko was born on 1 February 1942 in Moscow, Soviet Union . Jesper Nordin. Jesper Nordin, born 6 July 1971 in Stockholm, is Swedish composer . Martin 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 . John 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 . Henry 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 . Kaoru Kakudo. Kaoru Kakudo (1947- April 15, 2004), a violinist born in Japan, who performed internationally in recital and solo orchestral appearances . Antony Cooke. Antony Cooke, (born 3 August 1948, Sydney, Australia), is an American cellist, composer, astronomer, and author . Michel Dovaz. Michel Dovaz born in Geneva, Switzerland on August 14 1928 . Ingrid Eide. Ingrid Eide (born 12 July 1933 in Oslo) is a Norwegian sociologist, United Nations official and politician for the Labour Party . Constantinos Decavallas. Constantinos Decavallas (born 1925 Athens) is a Greek modernist architect . Thomas Reeve. Reeve was born at Langley, Norfolk, in 1594 . Jörgen Dafgård. Jörgen Dafgård (born 27 November 1964 in Gothenburg) is a Swedish composer . Shiva Boloorian. Shiva Boloorian (, born 5 October 1979 in Tehran) is an Iranian actress and stage director, as well as a TV moderator . Georgina 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 . Alexandre Desgoffe. Alexandre Desgoffe, a French landscape painter, was born in Paris in 1805 . Olaf Poulsen. Born in Kristiania, Poulsen was an active speed skated in his younger days . Andrew 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 . Jack Curtner. Jack Curtner (9 July 1888 Greenville, Ohio -- 1 January 1961 Dayton, Ohio) was an American racecar driver . Rafael Garzón Rodríguez. Rafael Garzón was a Spanish photographer born in Granada in 1863 and died in 1923 . Louis Joseph Coralie. Louis Joseph Coralie (1912--1967) was the first Afro-Mauritian to be involved in the Mauritian politics . Carlo 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 . Ernest E. Wood. Born in Chico, California, Wood attended the public schools and was graduated from the Stockton (California) High School in 1892 . Robb 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 . Anton Altmann. Anton Altmann, who was born in Vienna in 1808, studied from nature, and under the instruction of Mössmer at the Academy . Réginald Bernut. Reginald Bernut (born 18 January 1937 in Sydney, Australia)is an Australian born politician from New Caledonia . Henry 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 . Frank 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 . Martin Wright. Martin Wright (born 23 June 1974 in Germany) is a British bobsledder who competed for Great Britain at the 2006 Winter Olympics . Rose Prince. Rose Prince (born 4 December 1962 in Hampshire, England) is a food writer, author, cook and activist . William Doan. Born in Maine, Doan attended the common schools . Stanis%C5%82awa Nowicka. Stanisława Nowicka (1905--1990) was a Polish dancer and singer born in Warsaw . Énemond Massé. Massé was born at Lyon . Károly Varga. Károly Varga (born 28 September 1955 in Budapest) is a Hungarian sports shooter and Olympic Champion . David J. Eicher. David John Eicher (born August 7, 1961, Oxford, Ohio) is an American editor, writer, and popularizer of astronomy and space . Richard 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 . Ethan Mordden. Ethan Mordden (born January 27, 1949, Pennsylvania) is an American author . Thomas Adams. Born in London, Adams studied under Thomas Busby, and served as organist at several prominent London churches . Staffan de Mistura. Staffan de Mistura (born 25 January 1947, Stockholm, Sweden) is a long-serving Italian-Swedish diplomat . Franç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 . Alejandro Colina. Alejandro Colina, Venezuelan sculptor, born in Caracas on February 8, 1901 . Virginio 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 . Franco Gentilesca. Born in Brooklyn, Gentilesca was educated at St John's University and Pace University . Mehran Khaghani. Born in London to Iranian parents, Mehran grew up in the United Kingdom, Iran, Turkey and the suburbs of Boston . Zhang Lei. Zhang Lei (born 1979-03-23 in Nanjing, Jiangsu) is a female Chinese foil fencer, who will compete at the 2008 Summer Olympics . Desi Williams. Desi Williams is a rugby league player born in London, England . Robert McCrindle. Born in Glasgow, McCrindle was educated at Allan Glen's School . Christopher 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 . Edward 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'' . Steve 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 . Charles 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 . Simon Cooke. Simon Cooke (born 10 August 1975, Manchester, England, UK) is a British video games developer, currently resident in Seattle, Washington . Conyers Middleton. Middleton was born at Richmond in Yorkshire, and was educated at school in York and at Trinity College, Cambridge . Bo 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 . Kay Lahusen. Lahusen was born and brought up in Cincinnati, Ohio and developed her interest in photography as a child . John O'Keefe. Born in Waterloo, Iowa in 1940, O'Keefe was raised in the Midwest in Catholic orphanages and juvenile homes . Jamal Jumá. Jamal Jumá, An Iraqi poet and researcher, born in Baghdad, and since 1984 lived in Denmark . Anwar Khan. Anwar Khan (Urdu: انور خان) (born December 24, 1955, Karachi, Sindh) is a former Pakistani cricketer who played in one Test in 1979 . Laurence 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 . Rick Lawson. Rick Lawson (born 1973 in Raymond, Mississippi) is an American soul, blues and R&B singer . Diego Francisco Altamirano. Diego Francisco Altamirano was a Jesuit and author, born at Madrid, 26 October 1625; died in Lima, 22 December, 1715 . Eric Aarons. Born in Marrickville in inner-city Sydney, Aarons moved with his parents and older brother, Laurie, to Melbourne as a young boy . Charles Dixon. Charles Dixon (1858-1926) was an English ornithologist, born in London . Johann 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 . Edwin 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 . Arthur 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 . Edgar Sydney Little. The son of Colonel John William Little and Kate Nicholson Little, he was born in London, Ontario, Canada . Cedric Myton. Cedric Myton born in Jamaica is a Reggae musician and Rastafarian . Robert Jankel. Born in London in 1938, Jankel was educated at St Paul's School and studied engineering at Chelsea College . Jacqueline Carey. Jacqueline Carey (b. 1954 in Cambridge, Massachusetts) is an American novelist and short story writer . William Presser. Born in Michigan, Presser began composing in 1939 . Natallia Helakh. Natallia Helakh (; , Nataliya Gelakh) (born 30 May 1978 in Brest) is a Belarusian rower . Yvette 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 . Clement 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 . Dragoș Neagu. Dragoş Neagu (born 28 February 1967 in Bucharest) is a Romanian rower . Theodore Augustine Mann. Theodore Augustine Mann (1735--1809) was an English naturalist and historian, born in Yorkshire on June 22, 1735 . Lloyd 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 . Louise Christian. Louise Christian (born 22 May 1952, Oxford) is an award-winning British human rights lawyer . Silas 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 . Penny Lernoux. Lernoux was born into a comfortable Roman Catholic family in California and excelled in school . Serge Postigo. Immediately after his arrival, Postigo developed a strong interest in the theater industry . Mary Lou Munts. Born in Chicago, Illinois, Munts graduated from Swarthmore College . Mitra Tabrizian. Born in Tehran, Iran, Tabrizian studied at the Polytechnic of Central London in the 1980s . Zeng Fanyi. Zeng Fanyi (; born January 1968 in Shanghai) is stem cell scientist and professor at Shanghai Jiao Tong University (SJTU) medical school . Rani 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 . Lorne Resnick. Lorne Resnick (born May 16, 1961) is a Los Angeles based photographer who was born and raised in Toronto, Canada . Fabrizio Marrella. Fabrizio Marrella, born in Venice (Italy), is Professor of International Law and of International Business Law at the University of Venice . Mónica Estarreado. Mónica Estarreado (born 29 June 1975 in Madrid, Spain) is a Spanish actress of Spanish Origen (palurdos! ) . Catherine 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 . Oliver 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 . Jennifer Clulow. Born in Grimsby, Clulow worked as a continuity announcer and newsreader for Westward Television from the late 1970s until 1981 . Regina Sarfaty. Born in Rochester, New York, Sarfaty grew up in Brooklyn, New York . William 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 . Léonce Alloy. Léonce Alloy, born in Paris in 1875, died 1949, was a French medallic sculptor and engraver . W. T. Pfefferle. WT Pfefferle is an author and poet born in Hamilton, Ontario, Canada, but who was based in Texas for many years . Torgeir Micaelsen. Torgeir Eikstad Micaelsen (born 20 May 1979 in Bergen) is a Norwegian politician for the Labour Party . Joseph Bennett. Bennett was born at Grimsby, the son of William Bennett and his wife Ann . Frederick Gunton. Frederick Gunton, born 1813 in Norwich, and died 1888 in Chester, was an English Organist . Zoran 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 . Ángel Garma. Born in Spain of a Basque family, Garma studied medicine in Madrid . Pernille Rose Gr%C3%B8nkj%C3%A6r. Pernille Rose Grønkjær (born in 1973 in Denmark) is a Danish film director . Mohammed 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 . Graph 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 . Robert 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 . Edward 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 . Boris 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 . Sumalee Montano. Sumalee Montano (born: 1972) is an actress . Juan Alfon. Juan Alfon, born at Toledo, painted, in 1418, several altar-screens for the cathedral of that city, which are still preserved . Claude Bourgelat. Bourgelat was born at Lyon . Henri 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 . Morton Estrin. Morton Estrin, the noted American pianist, was born in Burlington, Vermont in 1923 . Yasir Butt. Yasir Butt, (born July 3, 1988 in Lahore) is a professional squash player who represented Pakistan . Carlo Emery. Born in Naples, Carlo Emery was professor of Zoology at the University of Bologna . Magnus 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 . Alan Aboud. Alan Aboud, graphic designer and creative director, was born in Dublin, Ireland on 13 May 1966 . Zoltan 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 . Alistair Elliot. Alistair Elliot (born 13 October 1932 Liverpool) is a British poet and translator . George Fisher. Born in Franklin, Massachusetts, Fisher attended the common schools and Brown University, Providence, Rhode Island . Cleve 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 . Sal Cannella. Sal Cannella (b. 1943 in Newark, New Jersey) is an American politician from California and a member of the Democratic party . Sherry Kramer. Sherry Kramer is an American playwright, born in Springfield, Missouri . Hendrick Andriessen. He was known as Mancken Heyn, or crippled Hein, though his still-life paintings were highly regarded and weren't at all crippled . Carl 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 . Adolphus 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 . Eileen O'Keeffe. Eileen O'Keefe (born 31 May 1981 in Kilkenny) is a former female hammer thrower from Ireland . Deyan Vatchkov. Deyan Vatchkov (born April 8, 1979, Sofia) is a Bulgarian operatic bass, . André Léri. André Léri (1875 - 8 September 1930) was a French neurologist who was born in Paris . Nicolás Antonio de Arredondo. Nicolás Antonio de Arredondo (1740 -- id 1802) was a Spanish soldier and politician born in Madrid . Aaron of Lincoln. Aaron of Lincoln was an English Jewish financier (born at Lincoln, England, about 1125, died 1186) . Martin Jervan. Martin Jervan (May 13, 1891 Tallinn -- October 15, 1942, Chelyabinsk) was an Estonian Major General and medical doctor . Pankaj Dharmani. Pankaj Dharmani (born 27 September 1974, in Delhi, India) is a former Indian cricketer . Nick 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 . John Abram. Born in England, Abram became interested in music when he was six; he began composing in his teenage years . Laurent Petitguillaume. Laurent Petitguillaume (born on 21 February 1960 in Tours) is a French radio and television host . Walter J. Mahoney. Walter J Mahoney (March 10, 1908 Buffalo, New York - March 1, 1982) was an American lawyer and politician . William Buik. Buik was born on 13 May 1824 in Dundee, Scotland of Andrew Buik and Elizabeth (or Elspeth) nee Edward . Frank 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 . William Garnett. Garnett, born in London on 13 Nov . Sylvester Ahola. Sylvester Ahola (May 24, 1902 -- 1995), a.ka Hooley, was a classic jazz trumpeter and cornetist born in Gloucester, Massachusetts . Petras Geniušas. Petras Geniušas (born 1961 in Vilnius) is a Lithuanian classical pianist . Joy 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 . Michael Khodarkovsky. Michael Khodarkovsky (Odessa, USSR, July 21, 1958) is FIDE Senior Trainer and Chess Master, was born in Odessa, Ukraine on July 21, 1958 . Arthur N. Martin. Arthur N Martin (August 31, 1889 -- 1961) was a Canadian painter, born in Toronto, Ontario . Shibley Telhami. Telhami was born into an Arab family in Israel and has spoken on his experience as an Arab Israeli at the Palestine Center . Jim Berry. Jim Berry (born 15 June 1945 in Oklahoma) is a chess expert and President of the United States Chess Federation . Joshua 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 . Alain Boire. Born in Montreal, Quebec, Boire was a Bloc Québécois member of the Canadian House of Commons . Yash Daryanani. Yash Daryanani (born 1981 Chennai (then Madras)) is a Surinamese swimmer and coach . Marty Radovanic. Born in Cleveland, Ohio, Marty joined WJAC in 1974, after previous jobs on radio . Sara Badr. Sara Badr (born June 27, 1987 in Cairo) is a professional squash player who represented Egypt . Norbert Wissing. Norbert Wissing (born 18 May 1959, Amsterdam) is a Dutch composer of chamber music, orchestral music, music for theatre and classical music . Sergey Kozlov. Sergey Kozlov (born June 15, 1964 Moscow) is a prominent award-winning American cinematographer . Michael Armstrong. Born in France, Armstrong studied law at Cambridge University and practised as a barrister before embarking on a military career . Charles Crawford. Charles Crawford (30 August 1897 Nashville, Tennessee -- 1 June 1958 Calhoun, Georgia) was an American racecar driver . Luděk Frýbort. Luděk Frýbort, born 1933 in Prague, Czechoslovakia, German writer and author living in Hannover, Germany . Frédéric Durieux. Frédéric Durieux (born February 27, 1959, Paris) is a noted French composer of orchestral, vocal and chamber works . Fabian Francis. Born in Darwin, Francis grew up playing both rugby league and Australian rules football . Jan Szyszko. Jan Szyszko (born April 19, 1944 in Stara Miłosna, a part of Warsaw) is a Polish politician . Nathalie 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 . George Stone. Born in Fulham, Stone studied at the London School of Economics and joined the Independent Labour Party (ILP) . Andy King. Andy King, born in Vancouver, British Columbia, is also known as Ace King, and Dick Van Gunn . John Randall Reding. Born in Portsmouth, New Hampshire, Reding attended the common schools . Peter 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 . Anton Foljambe. Anton Foljambe (b. 1972 in Christchurch) is a former Chairman of the National Democrats Party (NDP) in New Zealand . Bertie 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 . Mary Cecil Allen. Mary Cecil Allen (2 September 1893 Melbourne - 7 April 1962 Provincetown) was an artist, writer and lecturer . Kazimierz Flatau. Kazimierz Flatau (11 July 1910 in Warsaw -- 25 July 2000 in Poznań) -- Polish harpsichordist, music critic, physicist, translator, and astrologist . Edward 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 . Neal Peters McCurn. Neal Peters McCurn (b. 1926 in Syracuse, NY) is a federal judge for the US District Court, Northern District of New York . Alan MacDonald. Alan MacDonald (born in 1958 in Watford) is a children's writer living in Nottingham, England . Alby Why. Alby Why, born in Sydney, Australia, was a rugby league player for the South Sydney Rabbitohs in the NSWRL 1930 season . Ben Nicholas. Benjamin Nicholas (born 10 December 1987, in Adelaide, Australia) is an Australian actor . Michelle Rogers. Michelle Rogers (born 21 January 1976 in Salford) is a British judoka, who competed at the 2008 Summer Olympics in the 78kg class . Mark Gosling. The son of labourer Samuel Gosling and Hannah Nelms, Mark Gosling was born on 7 August 1886 in Birmingham, England . Michel Frutschi. Michel Frutschi (born on 6 January 1953 in Geneva - 3 April 1983) was a Grand Prix motorcycle road racer from Switzerland . Graham Doyle. Graham Doyle is an Irish soccer player who was born in Dublin on 19 January 1974 . Anne Audain. Anne Audain (born 1 November 1955 in Auckland) is a New Zealand middle and long distance athlete, competing in three Olympic Games . Eugene A. Toepel. Born in Bangor, Wisconsin, Toepel graduated from the University of Wisconsin Law School in 1939 . Benjamin 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 . Harry 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 . Albertus 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 . Victor 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 . Omar Abdel Aziz. Omar Abdel Aziz, (born September 11, 1983 in Cairo) is a professional squash player . Joe Ascione. Joe Ascione (b. March 14, 1961, Brooklyn, NY) is an American jazz drummer . Liam McMahon. Liam McMahon is an Actor, born in Ireland . Martin 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 . Ignacio 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 . Marc Hostert. Born in Luxembourg in 1965, Marc Hostert attended the European School Luxembourg . Tom Kazas. Tom Kazas (b. 1965 in Sydney, Australia) is a composer/song writer, record producer/sound engineer and film maker . Michael Brennan. Michael Brennan, born in Sydney in 1973, is an Australian poet based in Tokyo . Clinton D. McKinnon. McKinnon was born 1906 in Dallas, Texas to Dr John and Tennie McKinnon . Ronnie 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 . Simon 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 . Michael 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 . James Travers. Born in Hamilton, Ontario, Travers began his journalism career in 1972 with the Oakville Journal Record in Oakville . Carol Graham. Graham, who was born in Lima, Peru, is the mother of three children . Valli 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 . Francis 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 . Rafael E. Martinez. Born in Cuba, Martinez made a career out of medical malpractice and health law . Arthur Barnett. Born in Dunedin, Barnett was the son of William Barnett, an auctioneer, and one of eleven children . Antonia Okonma. Antonia Okonma (born 24 July 1984 in London, England) is a British actress of Nigerian descent . Noush 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 . Roger 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 . Martin Gero. Born in Switzerland, Gero spent much of his childhood in Ottawa, Ontario . John Duncombe. The only child of William Duncombe, he was born in London . Chris Welsby. Chris Welsby (born in 1948 in Exeter, Great Britain) is a British experimental filmmaker, author of film installations, and multimedia artist . Harry Freedman. Born in London in 1950, Freedman has worked as CEO in a variety of SMEs as well in the voluntary sector . Bobby McDonald. Bobby McDonald was a Scottish footballer who was born in Aberdeen who played in the left back position . Thomas Scott. Thomas Scott (1739 -- March 2, 1796) was an American lawyer and politician who was born in Chester County in the Commonwealth of Pennsylvania . Luca Princiotta. Luca Princiotta, born July 12, 1982 in Como, is an Italian guitarist . Christine 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 . Philippa Perry. Philippa Perry was born in 1957, in Warrington, Cheshire, and educated at boarding school and at a Swiss finishing school . Thomas Webley. Thomas Webley (born 2 March 1983, Bristol) is an English cricketer . Luigi Attademo. Luigi Attademo is an Italian classical guitarist born in Naples in 1972 . Karolina 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 . Jacques Autreau. Jacques Autreau, a French portrait painter and dramatic poet, was born in Paris in 1657 . Werner Ploberger. Werner Ploberger (born 5 August 1956 in Vienna) is an Austrian economist . Ephraim Hertzano. Ephraim Hertzano was a board game designer born in Romania . Thomas Davidson. Thomas Davidson (28 August 1828 Nottingham, England -- 18 February 1874 Philadelphia) was a naval constructor for the United States Navy . Eileen Beldon. Eileen Beldon was born on 12 September 1901 in Bradford, West Yorkshire to parents Albert Beldon and Bertha Nicholson . Edward Alfred Cowper. Edward Alfred Cowper (10 December 1819 London -- 9 May 1893 Rastricke, Weybridge, Surrey) was a British mechanical engineer . John Tierney. Born in Derry, Tierney worked as a tool setter before joining the Social Democratic and Labour Party (SDLP) . Norman 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 . Heinrich Hirschsprung. Heinrich Hirschsprung was born on 7 February 1836 in Copenhagen inro a family of German-Jewish decent . David 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 . Gregory Woods. Gregory Woods (born in 1953 in Egypt) is a British poet who grew up in Ghana . Symeon Cosburn. Symeon Cosburn is an accomplished jazz singer born in London, England . Joanne 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 . Federico 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 . Al Lerner. Al Lerner (b. 1919 in Cleveland, Ohio) is an American pianist, composer, arranger, and conductor from the Big band era . Rowley Leigh. Born in Manchester, Leigh went to Clifton College and Christ's College, Cambridge in 1968 . Parvaz 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 . Mark Mitchell. Mitchell was born on Auckland's North Shore and attended Rosmini College . Stuart Pearson Wright. Stuart Pearson Wright (born 1975, Northampton) is an award winning English artist who works mainly in paint . Brett Warton. Brett Warton born 4 June 1975 in Sydney, New South Wales, Australia is a former rugby league player . Fredrik Liliegren. Liliegren was born 1969 in Lund, Sweden . Gottlob Christian Storr. Gottlob Christian Storr (September 10, 1746 -- January 17, 1805) was a German Protestant theologian born in Stuttgart . Donovan Blake. Donovan Livingston Blake (born 4 December 1961 in Jamaica) is an American cricketer . Paula Malai Ali. Paula Malai Ali Othman (born 3 March 1974, in Brunei) is a television personality from Brunei . Joe 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 . Jason Colwell. Jason Colwell (born 31 January 1974 in Dublin) is an Irish former football player . Joachim Martin Falbe. Joachim Martin Falbe, a portrait painter, born at Berlin in 1709, was instructed by Harper and A Pesne . Malcolm Cecil. Malcolm Cecil (born 9 January 1937, London) is a British jazz bassist and Grammy Award-winning record producer . Lawrence Cherney. Born in Peterborough, Ontario, Cherney is the brother of composer Brian Cherney . Morris Schwartz. Born in Russia, Schwartz went to America in 1906 . Burkey 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 . Carly 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 . Bill Utterback. Bill Utterback ( 1931 - 2010 ),was born on January 5, 1931 Arlington Heights, Illinois is an illustrator and caricature artist . Marcello 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 . Barbara 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 . Joseph 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 . Humphrey Hopkin. Hopkin was born at Nottingham . Albert 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 . Herbert 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 . Enid 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 . Chris 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 . Émile Lévy. Émile Lévy (August 29, 1826 Paris - 1890) was a French genre and portrait painter . Freddy Marshall. Freddy Marshall, born in Caracas, Venezuela (November 7, 1959), is a musician and songwriter specializing in the genre known as Heavy Metal . Theodore 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 . Cathy Sisler. Cathy Sisler is an American artist, born in Wisconsin . Rusty Egan. Rusty Egan (born 19 September 1957, London) was the drummer for the British new wave band, The Rich Kids . Otto Mainzer. Otto Mainzer (November 26, 1903 in Frankfurt am Main, † 28 June 1995 in New York City) was a German-American writer . Françoise Romand. Françoise Romand, born in Marseilles, is a French moviemaker . Iraj Kalantari Taleghani. Iraj Kalantari Taleghani is a renowned contemporary Iranian architect, famous for his contribution to the modernization of Iranian architecture . Helen 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 . Li 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 . Randolph Runnels. Born in Texas probably in 1830, Randolph Runnels was a nephew of Hiram Georges Runnels . Jeremy Current. Jeremy Current (Born December 25, 1985 in Charlotte, NC) is an American songwriter, musician, and band leader . Fuat Güner. He was born on 1 April 1948 in Istanbul, Turkey to a renowned photographer father, Sami Güner . William Reed. Born in Montreal, Reed studied the organ in his youth with Romain-Octave Pelletier I and Dominique Ducharme . Arthur Anae. Anae is Samoan, although he was born in Fiji . Jacques Cartier. Cartier built a gristmill so he could produce flour . Alexander Yossifov. Alexander Yossifov (born 12 August 1940, Sofia) is a Bulgarian composer and conductor . Alireza Sheikhattar. Alireza Sheikhattar (born 9 June 1952 in Tehran) is an Iranian diplomat and current ambassador of the Islamic Republic of Iran to Berlin . Martin Brown. Martin Brown is an Australian artist who was born in Melbourne and from a very early age, could draw . Victoria LePage. Victoria Le Page (born in 1919 in Melbourne, Australia) is an Australian spiritual writer . Nabil Seidah. Nabil G Seidah, (born 1949) is a Québécois scientist . James Macdonald. Macdonald was born on 8 February 1862 in Aberdeen and was educated at Aberdeen Grammar School and the University of Aberdeen . Nigel Preston. Nigel Preston (born April 4, 1963, London, England, died April 1, 1992) was a British drummer . William 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 . Richard 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 . Cillian Vallely. Cillian Vallely is an Irish musician, born in Armagh, Northern Ireland . Alfred 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 . Medo 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 . Georges Hanna Sabbagh. Georges Hanna Sabbagh was born at Alexandria in Egypt . David Lister. David Lister (born 1930, Grimsby, Lincolnshire) is an eminent British origami historian . Ely 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 . Kim Kuusi. Kim Kuusi (born 28 December 1947 in Helsinki) is a Finnish composer best known for his advertising jingles . Marek 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 . Peter Gregg. Peter Gregg (born March 6, 1951, Kent, Ohio) is a producer and musician . Robin Hofman. Robin Hofman (born 3 May 1986 in Rotterdam) is a Dutch footballer who currently plays for Excelsior Rotterdam . Rufus Phillips. Rufus Phillips, Born in rural Virginia and educated at Yale, was a young C.IA officer in Saigon in the 1950s . John Wainwright. John Wainwright is a computer scientist, born in Australia, who has pioneered the development of pure object-based computer languages . Eugène Brieux. Eugène Brieux (19 January 1858 -- 6 December 1932), French dramatist, was born in Paris of poor parents . Alexander Randall. Born in Annapolis, Maryland, Randall was educated under private tutors . Hubert Buchberger. Hubert Buchberger (born 1951 Frankfurt) is a German violinist, conductor and music university teacher . Margaret 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 . Donald 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 . Paul 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 . Rem Urasin. Rem Urasin (born 1976, Kazan) is a Russian pianist . Franz Ludwig Catel. Franz Ludwig Catel was born at Berlin in 1778 . Samuel Löw Brill. Samuel Löw Brill (September 14, 1814 -- April 8, 1897) was a Hungarian rabbi and Talmudical scholar born in Budapest . Lene 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 . Andrea Gallandi. Andrea Gallandi (born at Venice, 7 December 1709; died there 12 January 1779, or 1780) was an Italian Oratorian and patristic scholar . Thomas Elliot Bowman III. Bowman was born and grew up in Brooklyn, New York, and graduated from Harvard College in 1941 . Thomas R. Fitzgerald. Born in Chicago, Fitzgerald attended Loyola University Chicago before enlisting in the United States Navy . Thomas Taylor. Born in London, Taylor was educated at St Paul's School, and devoted himself to the study of the classics and of mathematics . Peter 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 . Jimmy 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 . Alessio Secco. Alessio Secco (born 5 January 1970 in Turin) was an Italian director of football for the Italian Serie A club Juventus . Arnold Zable. Zable was born on 10 January 1947 in Wellington, New Zealand to Polish-Jewish refugee parents . Robert 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 . Edmund Fetting. Edmund Fetting (10 November 1927, in Warsaw, Poland -- 30 January 2001 there) was a Polish movie and theatrical actor and occasional singer . Johan Reuter. Johan Reuter (born 1969 in Copenhagen) is a Danish baritone and opera singer . William Keasberry. The son of another William Keasberry, by his marriage to Catherine Liddell, he was born in London . John 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 . Nadia 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 . Ryan Burr. Ryan Burr (born March 17, 1972, Pittsburgh, Pennsylvania) is a sports television journalist for ESPN . Francesco 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) . Martin Vari. Martin Vari (* February 27, 1982 in Argentina) is a professional kitesurfer and two times PKRA freestyle world champion in kitesurfing (2001 and 2003) . Carlos Cosías. Carlos Cosías is a Spanish operatic tenor born in Barcelona, Spain . Barrie 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 . Kate 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 . Hyman I. Goldstein. Hyman I Goldstein (November 2, 1887 -- 1954) was an American physician and medical historian born in Baltimore, Maryland . Pierre Cartellier. During the French Revolution Cartellier was part of a team of sculptors who worked on the church of Ste . Lucius Vibullius Hipparchus. When Hipparchus was born, Athenais named him in honor of his maternal grandfather and paternal great grandfather . Kemal Alispahić. Kemal Alispahić (born 1969 in Sarajevo, SR Bosnia-Herzegovina, SFR Yugoslavia) is a former Bosnian football player and now a manager . Serge Collot. Serge Collot (born 27 December 1923 in Paris) is a French violist and music educator . Carl Strehl. Carl Strehl (July 12, 1886 -- August 18, 1971) was a German educator born in Berlin . Michael E. Driscoll. Born in Syracuse, New York, Driscoll moved with his parents to the town of Camillus, Onondaga County, in 1852 . J%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 . Debra A. Kemp. Debra A Kemp (b. March 7, 1957, Highland, Indiana) is an American author . Ralph Schoenman. Born in Brooklyn, New York, Schoenman was educated at Princeton University but then left the US for Britain in 1958 . Gerrard Wendell Haworth. Haworth also studied at the University of Michigan . Marion Stein. Born in Vienna, Stein was the daughter of musician Erwin Stein . Maurice Maunoury. Maurice Maunoury was a French politician born 16 October 1863 in Alexandria (Egypt) and died 16 May 1925 in Paris . Valdo Spini. Valdo Spini (born January 20, 1946, Florence) is an Italian politician and writer . Peter Stetina. Peter Stetina (born 8 August 1987) in Boulder, Colorado is an American racing cyclist, who rides for UCI ProTeam . Tim 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 . Michael Colgrass. Michael Colgrass (b. April 22, 1932, Chicago, Illinois) is an American-born Canadian musician, composer, and educator . Vlad 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 . Neil Williams. Neil Williams was an aerobatic pilot born in Canada . Diego Carranza. Diego Carranza (born at Mexico, 1559; died at Tehuantepec, date unknown) was a Mexican Dominican missionary . Augustus A. Bird. In 1836, Bird moved to Wisconsin Territory . Gloria Mann. Gloria Mann was an American pop singer born in Philadelphia, Pennsylvania . Orsamus B. Matteson. Born in Verona, New York, Matteson attended the common schools . Lars Jonsson. Lars Jonsson (born 27 June 1970 in Gothenburg) is a former tennis player from Sweden, who turned professional in 1988 . Abraham Garton. Unfortunately, very little is known about the personal life of Abraham ben Garton . Erik Dammann. Erik Dammann (born 9 May 1931 in Oslo) is a Norwegian author and environmentalist, educated within advertising . Samuel 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 . Laurent Boyer. Laurent Boyer (born on 23 January 1958 in Paris, France) is a French radio and television host . Michael Raedecker. Michael Raedecker (born May 12, 1963, Amsterdam) is a Dutch artist based in London . Robin 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 . Gordon 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 . Marilyn 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 . Regina Maršíková. Regina Maršíková (born 11 December 1958 in Prague) is a former Czechoslovakian tennis player . Stanley Sporkin. Born in Philadelphia, Pennsylvania, Sporkin received an AB from Pennsylvania State University in 1953, and an LLB from Yale Law School in 1957 . Juan 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) . Salvatore Sabella. Born in Sicily in 1891, Sabella became a butcher's apprentice as a young boy . Gosia Piotrowska. Gosia Piotrowska is an actor born in Poland and raised in Australia . Manola 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) . John 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 . Barbara 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 . Jacques Benedict. Commonly known as Jacques Benedict, he was born in Chicago in 1879, and he studied architecture at the École des Beaux-Arts . %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 . Andrzej 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 . John 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 . Maggie Fitzgibbon. Maggie Fitzgibbon, an Australian actress and singer, was born in Melbourne on 30 January 1929 . Bruce Metcalf. Bruce Metcalf (born September 30, 1949 Amherst, Massachusetts) is an American artist who uses different materials like wood, metal, and plexiglass . Janet Ramsey Johnson. She was born Janet Ramsey Johnson in Adelaide, South Australia in 1914, one of two daughters of Peter and Jeanie Johnson . Ien 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 . Bryan Dubreuiel. Bryan Dubreuiel is an American artist . Ralf 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) . Joseph 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 . Sandhya Sanjana. Sandhya Sanjana (); is a singer born in Mumbai, India . Alfred Mele. Born in Detroit, Michigan, Mele attended Wayne State University, and received his doctorate in philosophy from the University of Michigan in 1979 . Murray 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 . Ryan Barton. Ryan Barton born in Australia is a rugby league player for the Brisbane Broncos in the National Rugby League . Ernst 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 . Salvatore Papaccio. Born in Naples on last decade of 1800, Salvatore Papaccio early began to demonstrate his predisposition to the music . Raymond Brown. Raymond Brown (born May 6, 1969 in Cambridge, Ontario) is a former backstroke swimmer from Canada . Bruno Rubess. Brunis Rubess (born December 21, 1926, Riga, Latvia - died 23 December 2009) was a Latvian businessman . Vivek 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 . Pete 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 . Trevor 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 . Richard 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 . Michele Radosevich. Born in Minneapolis, Minnesota, Radosevich graduated from Marquette University in 1969 . Catherine Keller. Catherine Keller (born in 1953 in Paris) is a French artist and sculptor . Richard 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 . Zhang Xueling. Zhang Xueling (born 7 May 1983 in Beijing, China) is a Singaporean table tennis player . William Mackenzie McLeod. Born in Sydney, Nova Scotia, McLeod was educated at Sydney Academy and Dalhousie University . Erna Paris. Erna Paris is a Canadian non-fiction author born in Toronto, Ontario . Edward Searing. Born in Aurora, New York, in Cayuga County, New York, Searing received his bachelors and masters degree from the University of Michigan . Theodore Pollock Ferguson. Ferguson was born on January 10 1853 in Mansfield, Ohio in Richland County, Ohio . Pietro 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 . George Alexander Pearre. Born in Cumberland, Maryland, Pearre attended private schools, the Allegany County Academy at Cumberland, St James College near Hagerstown, and Princeton College . Alessandro Vollero. Born in Italy, Vollero emigrated with his family to the United States in 1909 and settled in Brooklyn . Diane 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 . Sy Landy. Born in Brooklyn, Landy studied at Brooklyn College, where he joined the third camp Trotskyist Independent Socialist League (ISL), led by Max Shachtman . Michio Ihara. Michio Ihara (born 1928, Paris) is a Japanese kinetic sculptor, educated in Japan who was influenced by the work of George Rickey . Rafael 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 . Eric Goldberg. Eric Goldberg (1890--1969) was a Jewish-Canadian painter, born in 1890 in Berlin, Germany . Baron Wormser. Baron Wormser (born 1948 Baltimore, Maryland) is an American poet . Asli Sungu. Asli Sungu (born 1975 Istanbul) is a German performance artist, and painter . Eija Krogerus. Eija Krogerus (born 19 June 1932 in Helsinki) was a well known bowler in Finland . William Hare. William Hare (born February 7, 1944, Leicester, UK) is a philosopher whose writings deal primarily with problems in philosophy of education . Gaurav Keerthi. Gaurav Keerthi (born 2 April 1979, in India) is the former President of Debate Association Singapore . John Thorne. John Thorne is a culinary writer born in Quincy, Massachusetts who has written a number of best-selling books on gastronomy . Konrad Wasiela. Konrad Wasiela (born June 14, 1985, in Vancouver, British Columbia) is a professional Canadian football cornerback free agent . Jeremy Holmes. Jeremy Holmes is a British psychiatrist, born in London in 1943 . Daniel M. Hausman. Daniel M Hausman (b. March 27, 1947, Chicago, Illinois) is a US philosopher . Peter Brown. Brown, born in Ireland immigrated to Newfoundland where he was a dealer and shopkeeper in the Conception Bay area . Janne Parviainen. Janne Parviainen, born 1973 in Finland, is a heavy metal drummer, who plays in the bands Sinergy, Barathrum and Ensiferum . Eric 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 . C%C3%A9sar de Oliveira. César de Oliveira (b. May 17, 1977, Porto) is a Portuguese composer . Leo 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 . Moses Mason, Jr.. Born in Dublin, New Hampshire, Mason moved with his parents to Bethel, Maine, in 1799 . Denis McQuade. Denis McQuade (born 6 January 1951 in Glasgow) is a Scottish former footballer, who played for Partick Thistle, Hearts and Hamilton . Nerses Yeritsyan. Nerses Yeritsyan (born February 23, 1971, Yerevan) is deputy president of the Central Bank of Armenia and former Minister of Economy . John Henry. John Henry (c. 1776 -- 1853) was a spy and adventurer of mysterious origins . Adrian Baker. Adrian Baker (born 18 January 1951, London) is an English singer, songwriter, and record producer . Fritz Noll. Fritz Noll (August 27, 1858 - June 19, 1908) was a German botanist who was born in Frankfurt am Main . Adam Kowalczyk. Adam Kowalczyk is an American musician who was born in York, Pennsylvania . Megan Spencer. Born in 1966 in Australia, Spencer studied Speech pathology in Melbourne before becoming actively interested in film and radio . George William Houghton. George William Houghton (born September 9, 1905, Perth, Scotland) was a prolific British golf writer and cartoonist . Marcus Dods. Marcus Dods (born 19 April 1918, Edinburgh; died 30 April 1984, Henley-on-Thames), was a British musician and composer . Nicola Campogrande. Nicola Campogrande (born 9 October 1969 Turin) is an Italian composer, as well as a music journalist . Michael 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 . Margaret Haile. Born in Canada, Haile spent some time working for socialist causes in New England . John Percival Postgate. Born in Birmingham, the son of John Postgate, he was educated at King Edward's School where he became head boy . Walter Lupi. Walter Lupi is an Italian guitarist, born in Milan, in 1960 . George Hurst. George Hurst (born 20 May 1926, Edinburgh, Scotland) is a British conductor . Albert McElroy. Born in Glasgow, McElroy studied at Trinity College Dublin, then at Manchester College in Oxford (since 1996 known as Harris Manchester College) . Witold Rodziński. He was born in 1918 in Lviv, son of the renowned conductor Artur Rodziński . Mika Salmi. Mika Salmi (born 16 November 1965) in Helsinki, Finland, is a pioneer in new media . Martin Grams, Jr.. Born in Baltimore, Maryland, Grams is the son of magician Martin Grams, Sr and librarian Mary Pat Grams . Arthur 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 . Giulio 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 . Bhupinder Nath Kirpal. he is married to Aruna Kirpal and has three children . Francisco Ortiz de Vergara. Francisco Ortiz de Vergara was a Spanish conquistador and colonizer, born in Seville . Ahmed 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) . Abraham Mintchine. Abraham Mintchine (4 April 1898 Kiev - 25 April 1931 Paris), was a Ukrainian painter . John A. Dalles. John A Dalles is a clergyman and hymnwriter who was born in Pittsburgh, Pennsylvania . Christian Day. Christian Day (born 24 June 1983 in Blackpool, Lancashire) is a rugby union player for Northampton Saints in the Aviva Premiership . Alfred Kossmann. Born in Leiden, Kossmann was the son of the erudite librarian F H Kossmann . Victor Tolgesy. Victor Tolgesy (1928 - 1980) was a Canadian sculptor who was born in Hungary . Devin Hoff. Devin Hoff is a musician and songwriter born in Colorado whose main instruments are double bass and bass guitar . Linnea 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) . Brett Hestla. Brett Hestla, (born 1973 in Alabama) is an American guitarist, bassist, vocalist and record producer . Armand Toussaint. Armand Toussaint (April 7, 1806 -- May 24, 1862), aka François Christoph Armand Toussaint, was a French sculptor born in Paris . George Johnston. George Jameson Johnston was born on 24 October 1868 in Melbourne . Elvis Yero. Elvis Yero (born 1965-01-26 in Havana, Cuba and died 2001-10-13) was a boxer in the Welterweight division . Spyros Sofos. Spyros Sofos, born in Athens, Greece, is a social scientist known for his work on Southeastern European politics . John Whistler. John Whistler (ca. 1756 -- 3 September 1829) was a soldier, born in Ulster, Ireland . William Emery. William Emery was born on 2 February 1825 in London . John 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 . Nigel 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 . Nicholas Colla. Nicholas Colla (born on 14 October 1986 in Melbourne, Australia) is an Australian actor . Chuck Swirsky. Born in Norfolk, Virginia, U.S., Swirsky grew up in Bellevue, Washington and is graduate of Interlake High School (class of 1972) . Milton Wright. Milton S J Wright was an African-American academic born in Georgia . William 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 . Rebecca 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 . Raymond Monsour Scurfield. Raymond Monsour Scurfield, born in Chicago, IL, in 1943, is professor of social work at The University of Southern Mississippi Gulf Coast . Wendy 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 . Luis Ulacia. Luis Ulacia Álvarez (born September 24, 1963, in Havana, Cuba) is a Cuban baseball player and Olympic gold and silver medalist . Robert Briffault. According to one source, Briffault was born in Nice, France . Lou Stein. Lou Stein (born April 22, 1922, Philadelphia, Pennsylvania, died December 11, 2002) was an American jazz pianist . George Savoidakis. Savoidakis was born on the Greek island of Crete and spent his formative years in the community of Agioi Deka . Laurent d'Arvieux. Laurent d'Arvieux (1635--1702) was a French traveller and diplomat born in Marseille . Neil Rollinson. Neil Rollinson (born 1960 Yorkshire) is a British poet . Gustav 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 . Andy 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 . John Hirst. John Hirst (born 18 November 1950 in Bradford) is a convicted killer and campaigner for prisoners' rights . Gordon 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 . Sarah Stiles. Sarah Stiles was born on June 20 in Massachusetts and was later raised in New Hampshire . Piotr Buciarski. Piotr Buciarski (born 22 November 1975 in Warsaw, Poland) is a Danish pole vaulter of Polish descent . Robert Morrison, 1st Baron Morrison. Born in Aberdeen, he was the son of James Morrison . Neil Doncaster. Born in Devon, Doncaster graduated from Bristol University in 1992, qualified as a solicitor and worked for four years for Burges Salmon, solicitors . David Solomon. Born in Australia, Solomon is married to Marjorie and has three children, Talya, Reuben and Tiferet . James S. Smart. Born in Baltimore, Maryland, Smart moved with his parents to Coila, Washington County, New York, in 1849 . Thomas Passmore. Born in Belfast, Passmore worked as a salesman . Nathan 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 . Emmanuel Scheffer. Emmanuel Scheffer (, born 1 February 1924 in Germany) is an Israeli football coach . Charles Nicholas Aubé. Charles Nicholas Aubé was a French physician and entomologist born 6 May 1802 in Paris . Wilkes Angel. Wilkes Angel (February 26, 1817 Exeter, Otsego County, New York - February 1889) was an American lawyer and politician from New York . Benjamin Kunkel. Benjamin Kunkel (born in 1972 in Colorado) is an American novelist . Steve Bjorklund. Steve Bjorklund a/k/a Steve Björklund a/k/a Steffan Bjorklund was born ca 1960 in Chicago, Illinois . Branko %C5%A0alamon. Branko Šalamon (born 13 June 1948) in Zagreb, Croatia is the mayor of the Croatian city of Čakovec . J. N. Williamson. Williamson edited the popular anthology series, Masques . George 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 . Tom McGuinness. Tom McGuinness (born Thomas John Patrick McGuinness, 2 December 1941, Wimbledon, South London) is a guitarist songwriter, author, record and TV producer . Owen McAuley. Owen McAuley (born 5 October 1973 in Belfast, Northern Ireland) is a British auto racing driver . Roger Q. Williams. Roger Quincy Williams (April 30, 1894 - August 12, 1976) was an American aviator, born in Brooklyn, New York . Gabriel 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 . Henry 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 . Rudolf 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 . Keena Rothhammer. Keena Rothhammer (born February 26, 1957 in Little Rock, Arkansas) is a former freestyle swimmer from the United States . John Ambrose Meyer. Born in Baltimore, Maryland, Meyer attended the grade schools and Loyola High School . Jean Baptiste Rives. Jean Baptiste Rives was born in the city of Bordeaux (part of the region of Gascony) circa 1793 . Jacob 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 . Ryan Naraine. Ryan Naraine, born 20 January 1971 in Georgetown, Guyana, is a tech news journalist living and working in New York City . Claude Wiseler. Claude Wiseler (born 30 January 1960 in Luxembourg City) is a Luxembourgian politician . Idriss Ndele Moussa. Idriss Ndele Moussa (born on 17 April 1959 in Chad, Africa) is the president of the African Union's Pan-African Parliament . Meike Evers. Meike Evers (born 6 June 1977 in Berlin) is a German rower who was co-winner of two Olympic gold medals . Ruslan 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 . Ahmed 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 . Dion Fischer. Dion Fischer is an American musician, producer, and visual artist born in Romeo, Michigan in 1972 . James 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 . Johannes Falkenberg. Johannes Falkenberg (born in 1911 in Oslo - dead June 3, 2004, same place) was a Norwegian social anthropologist . Peter Milligan. Peter Milligan born in London, a British writer, best known for his comic book, film and television work . Thomas Kerr. Thomas Kerr (Born August 30, 1962 in Calgary, Alberta) is a Canadian illustrator . Lou Angeli. Lou Angeli (born August 11, 1951, Wilmington, Delaware) is an American writer and film maker . Tom French. Tom French (born 1966 Kilkenny) is an Irish poet . Kex Gorin. Kex Gorin (born Kevin Gorin, in 1949, in Birmingham - 21 December 2007), was a British drummer . Thomas Birch Florence. Thomas B Florence born in Philadelphia, Pennsylvania . Siddhant Karnick. Siddhant Karnick (born March 15, Mumbai, Maharashtra) is an Indian television actor . Mel 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 . Warren 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 . Henry 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 . William 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 . Leslie Howe. Leslie Howe is a musician and record producer born in Ontario, Canada . Oscar Bianchi. Oscar Bianchi (born 05 August 1975, Milan) is a Gaudeamus Laureate composer of Italian and Swiss citizenships . Michael Hosking. Born in Singapore, Hosking was educated at St John's College in Southsea, Portsmouth where he attended until the age of sixteen . Andrew Grant. Andrew Grant (born 1968, Birmingham, England) is a novelist and the younger brother of bestselling thriller writer Lee Child . Adelaide Tosi. Born in Milan, Tosi studied with Girolamo Crescentini before making her professional opera debut in her native city in 1821 . James 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 . Oxana Narozniak. Oxana Narozniak is a Ukrainian artist born in Germany and currently residing in Curitiba, Brazil . Charles 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) . Nick 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 . Münir Göle. Münir Göle is a photographer and Turkish writer, born in 1961 in Istanbul, who lives and works in Geneva . James Poole. James Poole (Born in Watford, England 16 July, 1964) has been involved in the development of computer games since the mid 1980s . Francisco Cervantes de Salazar. Francisco Cervantes de Salazar (1514? -- 1575) was a Spanish man of letters . Renato Beghe. Renato Beghe (b. 1933 in Illinois) is a senior judge of the United States Tax Court . Michelangelo Pisani di Massa e di Mormile. Michelangelo Pisani di Massa e di Mormile, count of Massa Lubrense and Mormile, is an Italian diplomat . Dan Armon. Dan Armon, Israeli poet, was born in Jerusalem in 1948, the year Israel gained independence . Edward Stransham. Edward Stransham (born at Oxford about 1554; executed at Tyburn, 21 January 1586) was an English Roman Catholic priest . Gerald 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 . Cathy 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 . Michael Mason. Michael Mason (born March 18, 1974 in Delaware, Ohio) is a former international breaststroke swimmer, who was born in the United States . Rob Heanley. Rob Heanley is an English actor born in Surrey on 12 October 1980 . Alfons Martí Bauçà. Alfons Marti, or Alfons Marti Bauza, is a Spanish writer, born in Palma de Mallorca (Balearic Islands) in 1968 . Colin Slater. Colin Slater, MBE (born in 1934 in Bradford, England) is an English Commentator for BBC Radio Nottingham . Keagan Kang. Keagan Kang (born 5 May 1976, in Perth, Western Australia) is an Australian actor . Brian 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 . John Cole. John E Cole (born 4 August 1942 in Toronto, Ontario) was a Progressive Conservative party member of the Canadian House of Commons . Harry 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 . Judd 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 . Eric Kloss. Eric Kloss (b. April 3, 1949, Greenville, Pennsylvania) is an American jazz saxophonist . Jumoke Verissimo. Jumoke Verissimo (born 26 December 1979, Lagos) is a Nigerian poet and writer . Kym 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 . Thomas Miller. Miller was born at Norwich on 14 August 1731, the son of Thomas Miller, a pavior . Ethel 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 . Barry Palmer. Barry Palmer, born 1958 in England, is a British singer who was one of Mike Oldfield's vocalists around 1984 . Stephanie 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 . Derek 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 . Ted Grouya. Ted Grouya (31 July 1910 - 14 April 2000) born Theodor Grouya in Bucharest, Romania, was a composer who studied composition with Nadia Boulanger . Marinko Madžgalj. Marinko Madžgalj () is a Serbian actor . John J. Gorman. Born in Minneapolis, Minnesota, Gorman attended the common schools and the Bryant and Stratton Business College at Chicago, Illinois . William Magennis. William Magennis (18 May 1867 -- 30 March 1946) was an Irish politician and university professor . Ondřej Neff. Ondřej Neff (born April 26, 1945, Prague) is a Czech science fiction writer and journalist . Andrea Newman. Andrea Newman (born 1938, Dover, Kent) is an English author . Eugene O'Conor. Born in Ireland in 1835, O'Conor went to Victoria, Australia in 1854, and came to New Zealand in the early 1860s . Andrew Knight. Andrew Stephen Bower Knight (born 1 November 1939 in England) is a journalist, editor, and director of News Corporation . Frederick Franklin Schrader. Frederick Franklin Schrader (27 October 1857 Hamburg, Germany - 1943) was a United States journalist and dramatist . Janek Schaefer. Janek Schaefer is a London-based sound artist, musician, and composer born in England to Polish and Canadian parents in 1970 . Charles William King. King was born at Newport, Monmouthshire, and entered Trinity College, Cambridge, in 1836 . Chris 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 . Stephen Tompkins. Stephen Tompkins (born October 4, 1971, Cleveland, Ohio) is an American artist, animator, and composer based in Southern California . Arto Sipinen. Arto Sipinen (born 20 March 1936, Helsinki) is a Finnish architect . Adam Begley. Adam Begley (born 1959 Boston, Massachusetts) is an American freelance writer, and was the books editor for the New York Observer . Pavel 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 . Tansy Davies. Tansy Davies (born May 29, 1973, Bristol) is an English composer of modern classical and avante-garde works . Gregg 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) . Liza Manili. Liza Manili is a French actress and singer, born 1986 in Strasbourg . Jason Eckardt. Jason Eckardt (b. 17 May 1971, Princeton, NJ) is an American composer . Jon 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 . Fyodor Vinberg. Born in Kiev in the family of a general, Vinberg studied in high school in Kiev and in the Alexander Lyceum . Ali 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 . Alfred 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 . Sean 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 . Christine Niederberger Betton. Christine Niederberger Betton, born in Bordeaux and deceased in 2001 in Mexico City was a French archaeologist . Anna 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 . Gerald J. Tate. Gerald J Tate (b. 6 February 1954, Belfast), is an Northern Irish Horror writer, who is also a time served aircraft engineer . Henry Howell. Born in Richmond, Virginia, Howell grew up in Norfolk . Baruch 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 . Hedvig 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 . Jane Tanner. Barbara Jane Tanner, known as Jane Tanner, (born 29 November 1946 in Melbourne) is an Australian children's book illustrator . John Ferrar Holms. John Ferrar Holms (1897--1934) was a British literary critic born in India to a British civil servant and an Irish mother . Myer Hoffman. Myer Hoffman (21 July 1902 in Leeds, Yorkshire, England -- 14 October 1959 in Lourenço Marques, Mozambique) was an English-born Irish cricketer . Joan Hartigan. Joan Hartigan Bathurst (born on 6 June 1912 in Sydney, Australia -- died on 31 August 2000) was a female tennis player from Australia . Dionysis Boukouvalas. Dionysis Boukouvalas (born 7 May 1979 in Athens) is a Greek composer, pianist and musicologist . Galina Fokina. Galina Fokina () (born January 17, 1984, in Moscow) is a Russian tennis player . Dexter Perkins. Born in Boston, and educated at Boston Latin, Perkins received his AB (1909) and PhD . Philippe 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 . William 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 . Sara Agnes Mclaughlin Conboy. She was born Sara Agnes Mclaughlin in Boston, Massachusetts . Adam Melonas. Adam Melonas (born on 10 November 1981 in Canberra, Australia) is an Australian chef of Greek heritage . Hifumi Shimoyama. Hifumi Shimoyama, born 1930 in Japan, is a composer of contemporary concert music . Claire Cox. Claire Cox (born December 19, 1975, Peterborough) is an English film, television and theatre actor . Manu Farrarons. Manu Farrarons is a Polynesian tattoo artist born in France in 1967 and grew up in Tahiti with the Polynesian culture . Frank 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 . Paul Chadwick. Born in Seattle, Chadwick grew up in its suburb Medina, where his father, Stephen F Chadwick, was the City Attorney . Vlastimil 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 . Huck Whitney. Huck Whitney, composer/film theme writer, was born in Birmingham, England in 1966 and was formerly known as Ian Whitney . Richard Nye. Richard Nye is an instrumental and choral composer born 1967 in Gloucester, England . Bill Downe. William A Downe (born in 1952 in Montreal) is a Canadian bank executive . Lee 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 . Gladys Ewart. Born in Ottawa, she was the daughter of John S Ewart and Jessie Ewart (née Campbell) . Stephen 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 . Michel 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 . Anselm Jappe. Anselm Jappe (born 1962 Bonn) is a professor of philosophy, teaching in Italy . Freddy Winnai. Freddy Winnai (8 April 1905 Philadelphia, Pennsylvania -- 4 September 1977 Philadelphia, Pennsylvania) was an American racecar driver . Edward 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 . Harry James Angus. Harry James Angus (born 11 June 1982 Melbourne, Victoria) is an Australian singer-songwriter, trumpet player and guitarist . David 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 . John Smith. Born in Toronto, Ontario, Smith earned a degree in mathematics and physics from the University of Toronto . Johnny 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!) . Stacy 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 . Ákos Császár. Ákos Császár (born 26 February 1924, Budapest) is a Hungarianmathematician, specializing in general topology and real analysis . Glynnis McDaris. Glynnis McDaris (born 1979) from Memphis, Tennessee is a photographer, artist, and curator based in New York City . Johann Friedrich Schleusner. Schleusner was born on 16 January 1759 in Leipzig . Michael 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 . Kari Økland. Kari Økland (born 16 December 1955 in Bergen) is a Norwegian politician for the Christian Democratic Party . Rosabelle 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 . Thomas Smith. Born in 1838 in England, Smith joined the US Navy from the state of New York . Mickael 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 . Michael Upton. Upton was born in 1938 into a working-class family in Birmingham . Sally 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 . Luca 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 . Paul Moyer Limbert. Born in Pennsylvania, Limbert earned a divinity degree at the Theological Seminary in Lancaster, Pennsylvania . Malcolm Terris. Malcolm Terris (born 11 January 1941 in Sunderland) is a British actor . Mia Riddle. Mia Riddle is an American indie-folk singer-songwriter born in Ventura, California . Irina Borogan. Irina Borogan (, born 9 September 1974 in Moscow, Russia) is a Russian investigative journalist . Aleksander Kogoj. Aleksander Kogoj is a Slovenian film director, born 1965 in Ljubljana . Thomas 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 . Wilhelm Krause. Wilhelm Krause (July 12, 1833 - February 4, 1910) was a German anatomist born in Hanover . Albrecht Dietz. Albrecht Dietz (* 11 March 1926 in Dresden), entrepreneur and scientist, founded the first leasing company in Germany . Grigori Kromanov. Grigori Kromanov (8 March 1926 Tallinn -- 18 July 1984 Lääne-Virumaa) was an Estonian theatre and film director . Sami Hinkka. Sami Hinkka, born 1978 in Finland, is a heavy metal bass player, presently with Ensiferum . Paul Burston. Paul Burston (born in 1965 in Yorkshire) is a British gay journalist, author, broadcaster and curator . William Francis Whitman, Jr.. He was born in 1914 in Chicago, a son of Leona and William Francis Whitman, Sr . John 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) . Aleksandar 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 . Murray Hocking. Murray Hocking (born 31 May 1971 in Victoria) is a badminton player from Australia . Darren Ockert. Darren Ockert is a pop singer, songwriter and producer born in Lincoln, Lincolnshire, England currently residing in New York City . Max Lehmann. Max Lehmann (1845 -- 1929) was a German historian, born in Berlin and educated at Königsberg, Bonn, and Berlin . Riccardo Ghedin. Riccardo Ghedin (born December 5, 1985 in Rome) is an Italian tennis player . Pietro 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 . Henry Frederick Strohecker. Henry Frederick Strohecker (October 15, 1905 Macon -November 14, 1988, Coral Gables) was an American entomologist who specialised in Coleoptera especially Endomychidae . George J. Graham, Jr.. George J Graham, Jr., was born in Dayton, Ohio . Frederick 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 . Leah Goldstein. Born in Canada, Goldstein was raised in Israel . Louis 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 . Tom Luken. Thomas Andrew Luken (b. July 9, 1925, Cincinnati, Ohio) is a politician of the Democratic Party from Ohio . Annar Petersen. Annar Petersen (born November 23, 1931) is a Norwegian ice hockey player, born in Oslo, Norway . Behnoosh Tabatabayi. Behnoosh Tabatabayi (Persian: بهنوش طباطبایی) born 1982 in Tehran is an Iranian actress . Vernon Carroll Porter. Vernon Carroll Porter, artist, was born in Cleveland, Ohio in 1896 . Ernest Breton. François Pierre Hippolyte Ernest Breton, a French artist and archaeologist, was born in Paris in 1812 . Andrew 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 . Myra Sklarew. Myra Sklarew (born 1934 Baltimore, Maryland) is an American biologist, poet and teacher . John 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 . Ashley Webster. Webster, who was born in Brighton, United Kingdom and was raised in Los Angeles, is based in the network's London bureau . Matthew 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 . Erik Willoch. Born in Oslo as a brother of Kåre Willoch, he graduated as cand.jur . Heinz Oestergaard. Heinz Oestergaard (Born August 15, 1916 in Berlin, † May 10, 2003 in Bad Reichenhall) was a German fashion designer . Terry 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 . Jared 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 . Alma Redlinger. Alma Redlinger (born March 8, 1924, Bucharest) is a painter and illustrator from Romania . John Millen. Born in Savannah, Georgia, in 1804, Millen studied law, gained admittance to the state bar and practiced law in Savannah . Julien Fountain. Julien Fountain (born 1970 in Shoreham-by-sea, Sussex) is an English professional cricket coach and former Great Britain Olympic Baseball player . Giuseppe de Majo. Born in Naples, Majo spent most of his life working in his native city . Joel 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 . Rudolf Ehlers. Rudolf Ehlers (March 30, 1834 -- August 7, 1908) was a German theologian and clergyman born in Hamburg . Jacek Sauk. Jacek Sauk (born July 21, 1944 in Vilnius) is a Polish politician, member of Law and Justice party . Stephen Luttrell. Stephen Luttrell (born 17 January 1956 in Leicester, UK) is a British physicist . Lawrence Walford. Lawrence Walford (born 20 January 1972 London) an award winning British television director . Stella Inger. Born in Russia, Stella grew up in Sherman Oaks, California . Ludwig von Buhl. Ludwig von Buhl (January 4, 1816 -- July 30, 1880) was a German pathologist born in Munich . Shen 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 . Fenton 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 . Sasha Neulinger. Sasha Neulinger is an American actor born on September 20, 1989, in Philadelphia, Pennsylvania . Gerald 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 . Alana Miller. Alana Miller (born July 22, 1980 in Winnipeg) is a professional squash player who represented Canada . Drew 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 . Henry Corbould. The third son of Richard Corbould, he was born in London . Ymer Pampuri. Ymer Pampuri was born on 30 April 1944 in Tirana . Eduard Ritter von Weber. Eduard Ritter von Weber (May 12, 1870 in Munich -- June 20, 1934 in Würzburg) was a German mathematician . Raymond 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 . Pierre Sabatie. Pierre Sabatie born in France is a rugby league player for the Villeneuve Leopards in the Elite One Championship . Nariman Farvardin. The company shared the same name as a mountain range in Iran where Farvardin was born . Jorn 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 . Mary 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 . Nelson 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 . John 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 . Gillian Cooke. Gillian Cooke was born and brought up in Edinburgh . Joseph Silverstein. Joseph Silverstein (born March 21, 1932, Detroit) is an American violinist and conductor . Ernest Lafont. Louis-Ernest Lafont (b. July 26, 1879, Lyon, d May 7, 1946, Paris) was a French socialist politician . David T. Walker. David T Walker is an American guitarist born in Tulsa, Oklahoma . Jessy 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 . Catherine 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 . Akihiro Tsukiyama. Akihiro Tsukiyama (16 March 1919 Tokyo) is a Japanese composer . Ferenc 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 . William Williams. Born in Bolton, Connecticut, Williams received a common-school education . John 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 . Hé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 . Bill 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 . Richard Schroeppel. Richard C Schroeppel (born 1948) is an American mathematician born in Illinois . Mark McCulloch. Mark McCulloch (born 19 May 1975 in Inverness) is a Scottish professional footballer who currently plays for Forfar Athletic . Richard Symonds. Richard Symonds born 21 November 1959 in Langham, Norfolk is a former professional footballer . Nasos Galakteros. Nasos Galakteros (AKA Athanasios Galakteros) (; born June 15, 1969 in Athens, Greece) is a retired Greek professional basketball player . Joe 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 . Brody Condon. Brody Condon (born 1974 Mexico) is an artist based in New York . Ernst Zacharias Platner. Ernst Zacharias Platner (October 1, 1773 -- October 14, 1855) was a German painter and writer born in Leipzig . Henri Nussbaumer. Henri Nussbaumer is a French engineer born in Paris, France in 1931 . John Boson. The son of Nicholas Boson, he was born in Paul, Cornwall . Morris Bear Squire. Morris Bear Squire was born on November 5 1923 in Chicago Illinois, the son Ukrainian immigrants . Yolande Thibeault. Yolande Thibeault (born in 1939 in Montreal, Quebec) is a journalist and politician in Quebec, Canada . James Tocco. James Tocco (b. 1943 in Detroit, Michigan) is an American concert pianist . Constant 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 . John 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'' . Franz Galich. Franz Galich (January 8, 1951 Guatemala - February 3, 2007 Managua) was a Guatemalan writer and professor of literature . Tom Adams. Tom Adams (born November 17, 1958) is a bluegrass musician born in Gettysburg, Pennsylvania . Daniel Joseph Jaffé. Daniel Joseph Jaffé was born on 2 November 1876 in London and died 11 June 1921 in Croydon, England . Matteo 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 . Tony Naumovski. Tony Naumovski (born 23 May 1977 in Sydney, Australia) is a Macedonian-Australian New York based actor . Joseph 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 . Daniel 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 . Theodor Holman. Theodor Holman (born 9 January 1953 in Amsterdam) is a Dutch journalist, presenter, and writer of Indo descent . Dave Connell. Dave Connell (born 27 November 1961 in Dublin) was an Irish soccer player during the 1970s and 1980s . Alfredo Moreno. Alfredo Moreno Charme (born August 4, 1956 Santiago, Chile) is a Chilean diplomat and politician . Luke 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 . Lynn Faulds Wood. Lynn was born on 25 March 1948 in Glasgow . Roy Stuart Brown. Roy Stuart Brown (1888- ? ) was an American aviator, born in Minneapolis, Minnesota . Andrew Park. Andrew Park born in Lafayette, Indiana is an American Theatre Director and puppeteer . Richard 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 . Brian 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 . René 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 . Leopoldo Gout. Leopoldo Gout is a film director, film producer, composer, author and painter . Robert Tripp Ross. Robert Tripp Ross (June 4, 1903 -- October 1, 1981) was a United States Representative from New York . Ragnhild Lundén. Ragnhild Lundén is a visual Swedish artist, born in Gothenburg 1945 . Fatima Rainey. Fatima Rainey (ファティマ・レイニー) is a singer who was born 24 July 1967 in Sweden . John Edwin. John Edwin (August 10, 1749 -- October 31, 1790), English actor, was born in London, the son of a watchmaker . Arthur Bingham Walkley. Arthur Bingham Walkley (1855-1926) was an English dramatic critic, born in Bristol, and educated at Balliol and Corpus Christi colleges, Oxford . Mazen Mneimneh. Mazen Mneimneh (born 1 February 1986 in Lebanon) is a Lebanese basketball player . Howard O. McMahon. McMahon, born in Alberta, Canada, was a naturalized citizen of the United States . Joe Caccia. Joe Caccia (January 19, 1899 Naples, Italy -- May 26, 1931 Indianapolis, Indiana) was an American racecar driver . George Stone. Born in London, the son of banker Andrew Stone, he was educated at Westminster School and Christ Church, Oxford . Alice Temple. Alice Temple is an English musician, singer and songwriter, born in London . Andrew Kennedy. Born in Dayton, Ohio, Kennedy moved with his parents to a farm on the Indian reserve near Lafayette, Indiana . Michael Randle. Born in England in 1933, Michael Randle spent the years of the Second World War with relatives in Ireland . Michael 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 . Lars Svensson. Lars Svensson (1926 -- 1999) was a Swedish ice hockey player, born in Stockholm . Eva Aridjis. Eva S Aridjis, born 1974 in Holland, Netherlands while her father was serving there as Mexico's ambassador, is a Mexican filmmaker . David B. Mellish. David Batcheller Mellish (January 2, 1831 - May 23, 1874) was a United States Representative from New York . John 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 . Patrick Hicks. Patrick Hicks (born 1970 Charlotte, North Carolina) is an American poet, and Writer-in-Residence at Augustana College . Ludovicus Stornebrink. Stornebrink was born on March 15th 1847 in Rotterdam, The Netherlands and moved to Japan at an early age . Michael 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 . Giancarlo Primo. Giancarlo Primo (November 4, 1924, Rome -- December 27, 2005, Civita Castellana, Italy) was an Italian basketball player and coach . Thomas 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 . Lottie Gilson. Lottie Gilson was a popular comedienne and vaudeville singer born in 1871 in Pennsylvania who died in New York in 1912 . Brian 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 . J. E. P. Aldous. Born in Sheffield, Aldous began his career as the organist at the chapel of the British Embassy in Paris . Billy Blue. Although Billy Blue's place and date of birth are uncertain, convict records suggest he was born in Jamaica around 1767 . Christian Wilhelm Berger. Christian Wilhelm Berger (born 13 June 1964 in Bucharest) is a Romanian composer, organist, and a Lecturer at the Bucharest Academy . Ulla Pia. Ulla Pia (born 17 February 1945, Copenhagen) is a Danish singer, best known internationally for her participation in the 1966 Eurovision Song Contest . Samuel Bernstein. Samuel Bernstein (1898--1987) was an historian born in France . Steve Laine. Steve Laine (born 19 March 1940, London) was the lead singer and song writer with The Liverpool Five . Antonio Ruiz de Montoya. Montoya was born at Lima, Peru . Bernhard R%C3%BChling. Bernhard Rühling (born 14 February 1969 in Stuttgart) is a German rower . Don 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 . Lawrence 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 . Sam Bartlett. Sam Bartlett (born November 8, 1961 Burlington, Vermont) is an American performer, author, and musician . Martin Timell. Martin Timell (born 13 November 1957 in Stockholm) is a Swedish carpenter, actor and television presenter . Lucien Barbour. Born in Canton, Connecticut, Barbour was graduated from Amherst College in 1837 . Edward Moore. Edward Moore (1838--1916) was an English scholar, born at Cardiff . Bridget Allchin. Bridget Allchin (born 1927, Oxford, England) is an archaeologist who specializes in South Asian archaeology . Pieter Harting. Pieter Harting (27 February 1812 -- 3 December 1885) was a Dutch biologist and naturalist, born in Rotterdam . Anthony 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 . Brihaspati 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 . Knut Kjeldstadli. Knut Kjeldstadli (born 6 June 1948 in Oslo) is a Norwegian historian . William Byrne. William Byrne, an engraver, was born in London in 1743 . Fiachna %C3%93 Braon%C3%A1in. Fiachna Ó Braonáin (born 27 November 1965) plays the guitar and sings vocals with the Irish band Hothouse Flowers . Harold Drasdo. Harold Drasdo, English rock climber, writer and educationalist, was born in Bradford, Yorkshire, England in February 1930 . William Main Page. William Main Page was a Briton, solicitor in the Scottish High Court, and vice-consul of Czechoslovakia in eastern Scotland . Theron 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 . Robert Callender. Robert Grantley Callender (born 2 November 1950, in Barbados) is a former cricketer . Mohd Shoaib Hassan. Mohd Shoaib Hassan, (born May 27, 1990 in Lahore) is a professional squash player who represented Pakistan . Lisa 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 . Georg Kloss. Georg Franz Burkhard Kloss (31 July 1787 Frankfurt am Main - 10 February 1854 Frankfurt) was a German historian of freemasonry . Julianna Barwick. Julianna Barwick is an American musician who was born in Louisiana and raised in Brooklyn . William Erskine. The son of David Erskine and his wife Jean Melvin, he was born in Edinburgh . Albert 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 . Len Zengel. Len Zengel (15 March 1887 Dayton, Ohio -- 24 September 1963 Bryn Mawr, Pennsylvania) was an American racecar driver . William Henry Brockenbrough. Born in Virginia, Brockenbrough studied law, was admitted to the bar and settled in Tallahassee, Florida . Brook Pridemore. Brook Pridemore (born in 1979 in Detroit, Michigan, USA) is an American singer-songwriter affiliated with the Antifolk scene in New York City . Arthur Levering. Arthur Levering (born March 6, 1953, Baltimore, Maryland) is an American composer of contemporary classical music . Sheila 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 . Lee 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 . Nicole 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 . Paul Heeren. Paul Heeren (born 22 November 1954 in Adelaide Australia) is a guitarist and songwriter . William James Henderson. William James Henderson (December 4, 1855--June 5, 1937) was an American musical critic and scholar, born at Newark, New Jersey . Nicolae 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 . Fred 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 . Lucie Vrbensk%C3%A1. Lucie Vrbenská (born 12 May 1977 in Prague) is a female hammer thrower from the Czech Republic . Kenneth William Junor. The younger Junor was born on 3 August 1896 in Toronto, Canada . Nicolas Colibert. Nicolas Colibert, a French painter and engraver, was born in Paris in 1750 . Jan Pawe%C5%82 Nowacki. Jan Paweł Nowacki (25 June 1905 Berlin -- 23 May 1979 Warsaw) was an engineer . Brandon Bird. Brandon Bird is an artist . A. M. Esmonde. M Esmonde (born in 1977 in Swansea, Wales) is a horror writer and producer . Thomas Wright Rudderow. Thomas Wright Rudderow was born at Philadelphia, Pennsylvania, on 8 August 1885 . Francis Gano Benedict. Born in Milwaukee, Wisconsin, Benedict attended Harvard University, earning his bachelor's degree in 1893 and his master's degree in 1894 . William Davidson. Born in Charleston, South Carolina, Davidson completed preparatory studies . Austin Lloyd Fleming. Austin Lloyd Fleming was born on 7 August 1894 in Toronto, Ontario . Li Weiliang. Li Weiliang (; born 2 September 1980 in Beijing, China) is a Chinese baseball player . Migidio Bourifa. Migidio Bourifa (born 31 January 1969 at Casablanca) is an Italian long-distance runner who specializes in the marathon races . Zhang 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 . Charles Jones. Born in Wolverhampton, Charles Jones became a gardener working on a number of private estates in England from the 1890s . Yehonatan Berick. Yehonatan Berick (born 1968) is a violin and viola virtuoso and pedagogue . Georg 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) . George Georgiou. Born in London of Greek-Cypriot parents, Georgiou graduated in photography from the Polytechnic of Central London . John 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 . Buono de' Buoni. Buono de' Buoni was born at Naples, and, according to Dominici, flourished about the year 1430 . Dave Steele. Dave Steele (born May 7, 1974, Tampa, Florida), is an American racecar driver . Tim Benjamin. Tim Benjamin (born 14 September 1975 in London) is an English composer . Alina Gut. Alina Gut (born February 10, 1938 in Lublin) is a Polish politician . Michel 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 . Martin A. Janis. Born in Toledo, Ohio, Janis was the youngest of four brothers . John 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 . Robert S. Richardson. Robert Shirley Richardson (1902 -- 1981) was an American astronomer, born in Indiana . Derek Kreckler. Derek Kreckler is an Australian visual artist, born in Sydney in 1952 . Yosef Harish. Born in Jerusalem in 1923, Harish was educated in a yeshiva . Robert Chen. Born in Taipei, Taiwan, Chen began studying the violin at the early age of seven . Max Angelelli. Massimiliano Angelelli (born 15 December 1966 in Bologna) is an Italian race car driver . Alan Welsh. Alan Welsh (born 9 July 1947, in Edinburgh) is a retired Scottish footballer . Billy 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 . Paul Lebreton. Paul Lebreton (born May 31, 1870, Bordeaux, France -- died June 21, 1956, Lyon, France) was a tennis player competing for France . Lowrell Simon. Lowrell Simon (born March 18, 1943, Chicago) is an American soul singer . R. W. Johnson. W Johnson (born 1943) is a British-South African journalist and historian . Benjamin Pine. Born in 1809 in London, Benjamin Pine was educated in Brighton and at Trinity College, Cambridge . Charles Forbes René de Montalembert. Charles Forbes René de Montalembert (March 18, 1810 London - March 13, 1870 Paris) was a French publicist and historian . George Schutt. Born in 1833 in Ireland, Schutt joined the US Navy from the state of New York . Matt Ryan. Matt Ryan (born 23 June 1984 in Sydney) is an Australian rower . Marie Nicolas Sylvestre Guillon. Marie Nicolas Sylvestre Guillon (January 1, 1760--1847), French ecclesiastic, was born in Paris . Daniel Spielman. Daniel Alan Spielman (born March 1970, Philadelphia, USA) is professor of Applied Mathematics and Computer Science at Yale University (since 2006) . Tony 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 . Oscar 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 . Pietra Montecorvino. Pietra Montecorvino is an Italian singer and actress, born in Naples, Italy in 1962 . Lennox Raphael. Lennox Raphael (b. 1939 in Trinidad, West Indies) is a journalist, poet, and playwright . Su 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 . Oğuz Abadan. Oğuz Abadan is a Turkish musician born in Ankara . Donald 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 . Francis 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 . Monica Esposito. Monica Esposito was born in 1962 in the Italian city of Genoa and died in the early spring of 2011 in Kyoto, Japan . Mike Vosburg. Born in California, Vosburg spent his first 37 years in Michigan . Kraisak Choonhavan. Kraisak Choonhavan (, born 8 October 1947 in Bangkok) is a Thai politician . Ken 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 . René Renoult. René Renoult (29 August 1867 Paris -- 30 April 1946 Paris) was a French Minister and lawyer . David Empringham. David Empringham (Born December 11, 1963 in Toronto, Ontario), is a Canadian auto racing driver . Saleem Pervez. Saleem Pervez (born September 9, 1947, Lahore, Punjab) is a former Pakistani cricketer who played one ODI in 1980 . Adnan 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 . Juan Carlos Bersague. Juan Carlos Bersague Chacón is a Choral Conductor and Conducting Professor in Venezuela, born at Havana, Cuba in 1963 . Joseph Bosworth. Joseph Bosworth (1789 -- 27 May 1876), English scholar of Anglo-Saxon language and Anglo-Saxon literature, was born in Derbyshire . Khalid Malik. Khalid Malik (born on 17 August 1952 in Pakistan) is an international civil servant . Paddy Crowley. Paddy Crowley (15 March 1932 -- 2 April 2006) was an Irish soccer player who was born in Dublin . John Joseph Braham, Sr.. He was born in 1847 in England to Joseph Braham (1827-1877), and he had a brother, David Braham . Calvary Morris. Born in Charleston, Virginia (now West Virginia), Morris attended the common schools . Carlo Bacchiocco. Carlo Bacchiocco was an Italian painter, born in Milan . Robert 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 . George Henderson. Born in Edinburgh, Henderson was the son of architect John Henderson and Hannah Matilda Exley . Aaron Walden. Aaron Walden (born at Warsaw about 1835, died 1912) was a Polish Jewish Talmudist, editor, and author . Adam Bright. Adam Bright (born 11 August 1984, in Melbourne, Australia) is an Australian left-handed pitcher . Alan 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 . Jacob Guptil Fletcher. Born in Maine, Fletcher was a clerk in Boston in the 1850s and identified himself as an artist after 1860 . Hisham Mohd Ashour. Hisham Mohd Ashour, (born May 29, 1982 in Cairo) is a professional squash player who represented Egypt . Toby 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 . Gordon Copley. Gordon Copley, born in Pasadena, California, is a bassist who briefly played bass for Black Sabbath . Elie 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 . Bert Ruiter. Bert Ruiter (born 26 November 1946, Amsterdam) is a Dutch bass guitarist, record producer, and composer . Guillaume 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 . Jack Smooth. Jack Smooth, real name Ron Wells, born in London 1970 . Rodney 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 . Kirsten Wenzel. Kirsten Wenzel (born 27 February 1961 in Leipzig) is a German rowing cox . Miles Crowley. Born in Boston, Massachusetts, Crowley attended the common schools . Anne Clark. Anne Clark (born 14 May 1960, Croydon, London, England) is an English poet and songwriter . Jack Garland. Jack Garland (1 Feb 1908 -- 29 November 1985) was a boxer born in Belfast, Northern Ireland . Elsa 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 . Timothy Hoven. Born in Milwaukee, Wisconsin, Hoven graduated from University of Wisconsin-- Oshkosh with a degree in criminal justice . James Mortimer. Born in Richmond, Virginia, Mortimer graduated from the University of Virginia . Robert Burns. Born in Hudson, New Hampshire, Burns moved with his parents in childhood to Rumney in Grafton County . Sebastian Dacey. Sebastian Dacey (born 1982 London) is a German artist . Marc 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 . Leopold Wenzel. Born in Naples, Wenzel spent most of his career working in London, with the exception of some years spent in Paris . Avner W. Less. Avner W Less (1916-1987) was an Israeli police officer, born in Berlin, Germany . Thibaut de Reimpré. Thibaut de Reimpré is a contemporary French painter . Rodney 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 . Matt Berg. Berg was born in 1977 in a small village of Cameroon and grew up in Senegal . Thomas Blaikie. Born in Aberdeen, he was the son of John Blaikie (1756--1826), a plumbing merchant and his wife Helen Richardson (1765--1844) . Samuele Levi. Samuele Levi (1813 -- 6 January 1883) was an Italian composer born in Venice . Charles 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 . Alan 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 . Warren Spears. Warren Spears (May 2, 1954 - January 8, 2005) was an American dancer and choreographer . William Egley. Egley was born at Doncaster in 1798 . Richard Ashrowan. Ashrowan was born in 1966, in Essex, England . Nyncke Beekhuyzen. Nyncke Beekhuyzen (born 24 January 1980 in Amsterdam) is a Dutch actress . Edwin 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 . Robert 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 . William Atherton. Atherton was born at Glasgow in 1806, being the son of the Rev . Richard Armiger. Born in Baltimore, Armiger attended Maryland Institute College of Art studying painting and sculpture . Siri Hall Arnøy. Siri Hall Arnøy (born 28 November 1978 in Oslo) is a Norwegian politician for the Socialist Left Party . Keith Haynes. Keith Haynes (b. 10 December 1963, Cardiff, Wales) is a published Welsh author and musician . Kevin 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 . Eran 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 . Billy Treacy. Billy Treacy born in Ireland is rugby league player for the Treaty City Titans in the Irish Elite League . Abbondio Sangiorgio. Born in Milan, Sangiorgio studied at the city's Accademia di Brera . Richard Leigh. Blessed Richard Leigh (c. 1561 -- 1588) was an English martyr born in Cambridgeshire . Adrienn 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 . Russell Taylor. Russell Taylor was born and grew up in Ipswich in Suffolk . Antoine 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 . Orhan Demir. Demir, born 1954 in Istanbul, immigrated to Canada in 1977 . Thomas 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 . Heather Davis. Heather Davis (born 26 February 1974 in Vancouver) is a Canadian rower . Alisa Arnah. Alisa Arnah is a British actress born in London . Marco Glaviano. Born in Palermo, Sicily in 1942, Marco Glaviano began his artistic career with a degree in architecture from the University of Palermo . Jaime 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 . Crowther Charlesworth. Born in Swindon, Lancashire, Charlesworth began his first-class career in 1898 and played regularly for Warwickshire until 1921 . Marc Van Montagu. Marc Van Montagu (born 10 November 1933 in Ghent) is a Belgian molecular biologist . Neville Maxwell. Born in London, Maxwell was educated at McGill University and Cambridge University . René Théodore Berthon. René Théodore Berthon was born at Tours in 1776, and studied under David . Ha Sinan. Ha Sinan (born 10 January 1992 in Kunming, Yunnan) is a swimmer from China . Wendy 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) . Peter R%C3%B6sel. Peter Rösel (February 2, 1945 Dresden) is a German concert pianist . Bernard Lloyd. Bernard Lloyd (born 30 January 1934, Newport, South Wales) is a Welsh actor noted for his television roles . Fernando 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 . John Thomas Rochead. John Thomas Rochead (28 March 1814 -- 7 April 1878) was a British architect . Aaron 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 . Elena 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 . Mamta Baruah Herland. Mamta Baruah Herland is a painter and digital artist born in Assam, north east India, now living just outside Oslo, Norway . Edward Kavanagh. Edward Kavanagh (April 27, 1795 -- January 22, 1844) was a United States Representative and the 17th Governor of Maine . Matthew Walker. Walker was born on 11 May 1984 in Hamilton, New Zealand . Shahan Shahnour. Shahan Shahnour was born Shahnour Kerestejian, on August 3, 1903, in a suburb of Istanbul, Turkey . Bruno Campanella. Bruno Campanella (born January 6, 1943, Bari) is an Italian conductor and a distinguished interpreter of the Italian Opera . Armen Ayvazyan. Armen Ayvazyan () (born May 14, 1964, Yerevan) is an Armenian historian and political scientist . Scott Ambush. He was born April 28, 1960 in Frederick, Maryland to Webster and Jeanette Lofton Ambush . David 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 . Drew Holcomb. Drew Holcomb is an American singer and songwriter who grew up in Memphis, Tennessee, and now calls East Nashville, Tennessee home . Albert Heinrich Brendel. Albert Heinrich Brendel, who was born in Berlin in 1827, studied in the Prussian Academy of Arts under Wilhelm Krause . Henry Weekes. Weekes was born at Canterbury, Kent, to Capon Weekes, a banker's clerk, and his wife, Mary Pearson . Homer 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 . Ian Prosser. Born in Scotland, Prosser first worked on a US presidential inauguration in 1993, at the inauguration of Bill Clinton . Claire Baxter. Claire Baxter (born 24 January 1982, Australia) was a professional racing cyclist, competing in both road and mountain bike racing events . Rose Prince. Rose Prince (born 4 December 1962 in Hampshire, England) is a food writer, author, cook and activist . Carl R. Chindblom. Born in Chicago, Illinois, Chindblom attended the public schools . Jules 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 . William Garland McQuarrie. Born in Ottawa, Ontario, the son of Lachlan and Mary McQuarrie, McQuarrie was raised in Winnipeg, Manitoba and New Westminster, British Columbia . Robert Hetzron. Born in Hungary, Hetzron studied at the University of Budapest . Brian Fairlie. Brian Fairlie, born 13 June 1948 in Christchurch, is a retired tennis player from New Zealand . Fulvio Ballabio. Fulvio Ballabio (born 8 October 1954) is a race car driver born in Milan, Italy . Diarmuid Scully. Born in Limerick, Diarmuid Scully was educated at St Patrick's Boys national School in the city and later CBS Sexton Street . C. Martin Wilbur. Born in Dayton, Ohio, Wilbur went at an early age with his parents to China, where they worked with the YMCA . Iren Marik. Iren Marik was a classical pianist born in Hungary in 1905 . Torraye Braggs. Torraye Braggs (born May 15, 1976 in Fresno, California) is an American professional basketball player, formerly of the NBA . Johanna 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 . Giuseppe Giulietti. Giuseppe Giulietti (born 19 October 1953) in Rome is an Italian politician . Peter 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 . Mirosław Maliszewski. Mirosław Maliszewski (born February 28, 1968 in Warsaw) is a Polish politician . Fred 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 . Adam Mamawala. Adam Mamawala (b. May 18, 1987, Aurora, Illinois) is an American stand-up comic . Richard Hudson. Richard Hudson (born 9 May 1948, Tottenham, London, England) is an English singer-songwriter and musician . Mir Khasim Ali. Mir Khasim Ali born in Hyderabad, AP was India's Men's Singles Champion in table tennis from 1968 to 1969 . Giacomo 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 . Jerry 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 . Joshua Watson. Joshua Watson was born on Tower Hill in the city of London on Ascension day, 9 May 1771 . Roland 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 . Zak Carr. Zak Carr (born March 6, 1975 Norwich, Norfolk, died 17 October 2005) was a British cyclist who specialised in the time trial discipline . Pierre Roland. Pierre Roland who was born Pierre Roland Christy, in Jakarta, Indonesia on 14 April 1979, is an Indonesian actor . Luke Bullen. Luke Bullen (born 2 September 1973, in Norwich, England) is an English drummer and percussionist . Edward 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 . Koichi Morita. Lieutenant-Colonel Koichi Morita (1865 -- 1929) was a Japanese army officer born in Tokyo . Jon Cone. Born in Miami, Florida in 1957, Jon Cone is a collaborative printmaker, pioneer and developer of photographic ink jet technologies, educator, and photographer . Alicia Plaza. Alicia Plaza, born April 30, 1957 in Caracas, Venezuela, is a veteran, Venezuelan actress . Albert 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 . Winifred Nicholson. Nicholson was born in Oxford as Rosa Winifred Roberts . George Brunner. George Brunner is an American composer and performer born in Philadelphia . Hamilton 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 . Oliver Lanard Fassig. Oliver Lanard Fassig was born at Columbus, Ohio, on April 5, 1860, son of Mathias and Elizabeth (Lanard) Fassig . Ira Vail. Ira Vail (22 November 1893 Montreal, Canada -- 21 April 1979 Daytona Beach, Florida) was a Canadian-American racecar driver . Magdalé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 . Emilio De Fabris. Emilio De Fabris was born 1808 in Florence, Italy . Michel Bellemare. Michel Bellemare (b. July 10, 1967 in Ottawa) was member of the City Council in Ottawa, Canada from 1994 to 2010 . John Littleton and Kate Vogel. John Littleton is the son of glass artist Harvey Littleton and his wife, Bess Tamura Littleton . Reginald Brett, 2nd Viscount Esher. Born in London, Brett was educated at Eton and Trinity College, Cambridge . Alison Waters. Alison Waters (born 19 March 1984, in London, United Kingdom) is a professional squash player from England . Deepa 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 . Sophia 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 . S%C3%A9bastien Denis. Sébastien Denis (born 4 May 1971 in Paris) is a French hurdler . Joan 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 . Robert 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 . Shlomo Wolbe. Rabbi Shlomo Wolbe (Wilhelm Wolbe, 1914 - April 25, 2005) was a Haredi rabbi born in Berlin and died in Jerusalem . Knut Walbye. Knut Walbye (born 9 January 1968 in Oslo) was a former Norwegian ice hockey player . John P. Allen. John Polk Allen (born 6 May 1929, Carnegie, Oklahoma) is a systems ecologist and engineer, metallurgist, adventurer and writer . Priya Thomas. Priya Thomas is a Canadian artist and musician born in Hamilton, Ontario and raised on the South Shore of Montreal, Quebec . Jerzy Adamuszek. Adamuszek, Jerzy (born 30 09 1955 in Poland; since 1980 lives in Montreal) . Stephen Gould. Stephen Gould is an American heldentenor, born in Virginia . Nadia Zaffar. Nadia Zaffar born in Karachi, is an anchor and producer for Dawn News, Pakistan's first English-language TV news channel . Nick Karner. Nick Karner is an American actor and director, born July 7, 1982 in Hartford, Connecticut . Martin Emerich. Born in Baltimore, Maryland, Emerich attended the public schools . Paul Peterson. Born in Minneapolis, Minnesota, Peterson was the youngest son in a musical family . Erick Noubissie. Although he was born in France, Noubissie represents his parents' homeland of Cameroon . Patrice Roy. Patrice Roy (born in 1963 in Quebec) is a Canadian news anchor . O'Chi Brown. O'chi Brown is a female dance music singer born in Tottenham, London England . Jennifer Huppert. Jennifer Huppert (born 13 October 1962) is an Australian politician . Nicolas Moreton. Nicolas Moreton is a British artist born in 1961 in Watford, Hertfordshire . John Chorlton. John Chorlton was born at Salford in 1666 . Lynda Blutreich. Lynda Blutreich (née Lipson; born December 13, 1971 in Lynn, Massachusetts) is a javelin thrower from the United States . William 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 . Gabriel Caruana. Gabriel Caruana (born in 1929 in Malta) is a Maltese artist who works primarily in ceramics . Leo C. Zeferetti. Leo C Zeferetti (born July 15, 1927) was a Democratic member of the United States House of Representatives from New York . Samuel 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 . Stephanie Reaves. Stephanie Reaves (born February 24, 1967, Maine) is an American professional race driver . Lovro 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 . Edward 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 . Otto Eugen Schulz. Otto Eugen Schulz (31 October 1874 - 17 February 1936) was a German botanist, born in Berlin . J. B. Jackson. Born in France to American parents, JB Jackson spent his early school years in Washington, DC and in Europe . Tara Brabazon. Tara Brabazon (3 January 1969 -) is Professor of Communication at the University of Ontario Institute of Technology, Canada . Lavrenti Ardaziani. Born in Tiflis of a deacon, Ardaziani graduated from the local theological seminary and entered the civil service under the Russian viceroyal administration . Frank R. Reid. Born in Aurora, Illinois, Reid was one of eleven children of an Irish grocery store owner . Murray Fraser. Born in Liverpool, Fraser was raised in Nova Scotia . Azman 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 . Wolfgang 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 . Oleg Strizhakov. Oleg Strizhakov (; born 18 July 1963 in Tbilisi, Georgian SSR) is a retired Russian long-distance runner . Nick Taylor. Nick Taylor (born 24 December 1971, in Oldham, Lancashire, England) is a professional squash player and squash coach from the United Kingdom . Publius 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 . Calvin Fairbank. Born in Pike, in what is now Wyoming County, New York, Fairbank grew up in an intensely religious family environment . John Donaldson. John Donaldson was born at Edinburgh in 1737, and distinguished himself as a miniature painter, both in enamel and water-colours . Seymour Cocks. Born in Darlington, Cocks was educated at Plymouth College and became a journalist . Peter Bladen. Peter Bladen, (1922 -- 2001) was an Australian poet born at Perth . Charles Mickle. Charles Julius Mickle (July 22, 1849 in Stratford, Canada West, now Ontario -- November 10, 1919, Minnedosa, Manitoba) was a politician in Manitoba, Canada . Verna 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 . Scott W. Skavdahl. Born in Lincoln, Nebraska, Scott W Skavdahl received his BS (1989) and JD (1992) from the University of Wyoming . Martine 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 . Alan 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) . Robin McNamara. Robin McNamara (born 5 May 1947, in Newton, Massachusetts) is an American singer, songwriter and musician . Michele Pace del Campidoglio. Michele Pace del Campidoglio, a painter of fruit and flowers, born at Rome in 1610 . Uche 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 . Satnam Rana. Rana was born and brought up in Wolverhampton, West Midlands, England and attended Smestow school . Percy Elland. Born in Doncaster, Elland attended Doncaster Grammar School before entering journalism . George 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 . Jerzy Jan Lerski. Born on January 20, 1917 in Lwów, Poland (now Lviv, Ukraine), Lerski studied law at Lwów University . Truman A. Merriman. Born in Auburn, New York, Merriman attended the Auburn Academy and was graduated from Hobart College, Geneva, New York, in 1861 . John 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 . Wendell White. Wendell White (born 23 November 1964 in Barbados) is a Bermudian cricketer . Borah Bergman. Borah Bergman (born December 13, 1933, Brooklyn) is an American free jazz pianist . Claude 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 . Robert Allen. Allen was born in the village of Woodstock and started college at Dickinson College in Carlisle, Pennsylvania . Tazewell Ellett. Born in Richmond, Virginia, Ellett attended private schools in Richmond . Richard Sheepshanks. Richard Sheepshanks (30 July 1794 in Leeds -- 4 August 1855) was an English astronomer . Bedük. Serhat Bedük (20 April 1983, in Ankara), more commonly known by his stage name Bedük, is a Turkish musician . Jonathan Hazard. Jonathan was born to a Quaker (Religious Society of Friends) family in Newport, Rhode Island . Ajit 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 . Gilles Latulippe. Gilles Latulippe (b. 31 August 1937, Montreal, Canada) is a Québécois actor, comedian and theatre director and manager . Pierce 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 . James Kinlay. His five children include hedge fund manager Jonathan Kinlay and the actress Antonia Kinlay is one of five grandchildren . Aytaç Biter. Aytaç Biter (born 5 November 1965 in Ankara) is a Turkish auto racing driver . Richard 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 . Balthazar 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 . Mohammed 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 . Bob Rockwell. Bob Rockwell (b. May 1945, Miami, Oklahoma) is a jazz saxophonist . Louis Antonelli. Louis Antonelli is a filmmaker and poet, born in Chicago, Illinois on July 28, 1962 . Susan 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 . Michael 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 . Mohammad Aslam. Mohammad Aslam (born 7 September 1961, Karachi, Pakistan) is a former United Arab Emirates cricketer . Bahar Movahed Bashiri. Bahar Movahed Bashiri (born April 27, 1979 - Tehran) is the Iranian portrait caricaturist, Persian classical vocalist and dentist . Daniel Chapman Stillson. He was the son of William Stillson and Nancy Chapman . Erich Werdermann. Born in Berlin, Erich Werdermann was the son of the landowner Carl Werdermann . Charles 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 . Leon 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 . Rosario Marciano. Rosario Marciano, born July 5, 1944 in Caracas, Venezuela, died there September 4, 1998 was a classical pianist, musicologist and teacher . Hannan Sarkar. Hannan Sarkar () (born December 1, 1982, in Dhaka) is a Test cricketer for the Bangladesh cricket team . Simon Bowman. Simon Bowman is a British actor and singer, born in, Cardiff and trained at Mountview Theatre School . John Lewis Thomas. Born in Baltimore, Maryland, Thomas studied law and was admitted to the bar in 1856, commencing practice soon afterwards in Cumberland, Maryland . Seth 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 . Elizabeth 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 . Susan 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 . Judy 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 . John 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 . Serenus 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 . Dean Sullivan. Dean Sullivan (born 7 June 1955 in Liverpool) is an English actor . Aarne Ruben. Aarne Ruben (17 July 1971 in Tallinn) is an Estonian writer . Samuel 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 . Nabil Kanso. Nabil Kanso is a Lebanese-American painter born in Beirut, Lebanon . Kurt Hitke. Kurt Hitke (1 December 1889 Dresden, Germany -- 23 February 1979 Miami, Florida) was an American racecar driver . Charles 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 . Gyles Brandreth. Gyles Daubeney Brandreth (born 8 March 1948, Germany) is a British writer, broadcaster and former Conservative Member of Parliament and junior minister . Gé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 . Javed Akhtar. Javed Akhtar (born November 21, 1940, Delhi, India) is a former Pakistani cricketer who played in one Test in 1962 . Emilio 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 . Ghulam Abbas. Ghulam Abbas (Urdu: )(born May 1, 1947, Delhi, India) is a former Pakistani cricketer who played in one Test in 1967 . John 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 . Leon Bass. Bass was born and grew up in Philadelphia, Pennsylvania . Anna Akhsharumova. Anna Akhsharumova (; born 9 January 1957, Moscow) is a Woman Grandmaster of chess . Thomas Francis Brennan. Brennan was born at Tipperary, Ireland, and ordained to the priesthood at Brixen-Tyrol on July 4, 1880 . Martin 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 . Marisa Masullo. Marisa Masullo (born 8 May 1959 in Milan) is an Italian athlete, who mainly competed in the 100 and 200 metres . Rachel 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 . Mark 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 . Yisroel 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 . Bill Endicott. Bill Endicott (5 November 1876 Montgomery, Indiana -- 7 June 1944 Indianapolis, Indiana) was an American racecar driver . Alexander Whitaker. Born in Cambridge, he was the son of William Whitaker (1548--1595), noted Protestant scholar and Master of St John's College, Cambridge . Hayden Turner. Hayden Turner born 16 January 1966 in Sydney, Australia, is a television and cable TV presenter . Gus Menos. Born in Milwaukee, Wisconsin, Menos graduated from Lincoln High School and served in the United States Army Air Corps . Maria 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 . Norbert 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 . Elijah 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 . Pasquale Conte. Born in Sicily, Conte is a resident of Roslyn, New York . Tom Maniatis. Tom Maniatis born 8 May 1943 in Denver, Colorado is an American professor of molecular and cellular biology . Donald 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 . Franç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 . Bruce 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 . John Baptist Collins. Born in France, Collins went to sea at age sixteen as a cooper's apprentice on a Dutch ship . John 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 . Gail 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 . Tommaso Marconi. Tommaso Marconi (born 17 January 1982 in Rome) is an Italian diver . Virginio Ferrari. Virginio Ferrari is an Italian sculptor, born in Verona and based in Chicago from the middle of the 1960s . Stephen 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 . Felix von Kraus. Felix von Kraus (October 3, 1870 - October 30, 1937) was an Austrian dramatic bass . Johnny Kemp. Johnny Kemp (born 1959, Nassau, Bahamas) is a Bahamian R&B singer and dancer . Loredana Errore. Born in Bucharest, Errore started performing in school plays during the 1990s . Konstantine Vardzelashvili. Konstantine Vardzelashvili (born 26 July 1972 in Tbilisi) is Vice-President of the Constitutional Court of Georgia . Moritz Wilhelm Drobisch. Moritz Wilhelm Drobisch (August 16, 1802, in Leipzig - September 30, 1896, in Leipzig) was a German mathematician, logician, psychologist and philosopher . Pierre Henri Joseph Baume. Baume was born at Marseilles in 1797 . Linda Crockett. Linda Crockett, born in Hamilton, Ontario, Canada, is an American author and teacher, best known for her horror, romance, and psychological thrillers . Elsa Lunghini. Elsa Lunghini, stage name Elsa (born May 20, 1973, in Paris), is a French singer and actress . Janil 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 . Luciano Caruso. Luciano Caruso (b. July 19, 1957 in Turin, Italy) is an Italian Jazz composer and Soprano saxophone performer . Matteo Barbini. Matteo Barbini (born 8 June 1982 in Venice) is an Italian rugby union player . Donald 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 . Gord 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 . Franç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 . Geoffrey 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 . Karl 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) . Bé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 . Samuel Magaw. Born in Pennsylvania, he was a son of William Magaw of Shippensburg . Gary Callander. Gary Callander (born July 5, 1959) is a retired Rugby Union player who was born in Edinburgh, Scotland . Craig Richards. Craig Richards (born 1966, Bournemouth, United Kingdom) is a tech house DJ, also known as part of Tyrant alongside Lee Burridge . Mohammed A. Aldouri. Born in Baghdad, Aldouri attended Baghdad University and earned a bachelors degree in law in 1964 . Rich 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 . Marcel Faribault. Born in Montreal, he was the son of René Faribault and Anna Pauzé and was educated at the Université de Montréal . Adolf 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 . Auguste 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 . Ivan Triesault. Ivan Triesault (; 14 July 1898, Tallinn, Estonia -- 3 January 1980, Los Angeles) was an Estonian-born American actor . Tom Arnold. Born in Yorkshire, Arnold spent much of his life travelling although he considered Brighton his second home . Ernest 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 . Mary Scott. Mary Scott (1751/2--1793), poet, was born in Somerset, England . Edmundo 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 . Lyndsey 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 . Kelly 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 . A. 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 . Ammar Eloueini. Ammar Eloueini, born 1968 in Beirut, Lebanon . Ross 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 . Christopher 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 . Jane Stanford. Born Jane Eliza Lathrop in Albany, New York, she was the daughter of Dyer and Jane Anne (Shields) Lathrop . Leonard 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 . George Zarkadakis. George Zarkadakis () is novelist, poet, playwright, and popular science writer, born in Athens in 1964 . Moira von Wright. Moira von Wright (born 1957 in Helsinki) is a Swedish academic . William Baldé. Mohamed Guy William Baldé, just known as William Baldé, is a singer-songwriter and composer born in Guinea . Lisa 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 . Walter Carringer. Born in Knoxville, Tennessee, Carringer grew up in Murphy, North Carolina and was highly active as a Boy Scout in his youth . Augusto Huaman Velasco. Augusto Huaman Velasco, born in Lima, (Sept 01, 1924 - July 20, 1998) . Warren Carlyle. Warren Carlyle is a director and choreographer who was born in Norwich, Norfolk, England . Joe 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 . Michael 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 . Mischa Hiller. Mischa Hiller (born 1962 England) is a British novelist . Anton Muscatelli. Anton Muscatelli was born on 1 January 1962 in Italy to Ambrogio and Rosellina Muscatelli . Didier André. Didier Andre (born 3 September 1974) is a race car driver born in Lyon, France . George 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 . Monica Groop. Monica Groop (born 14 April 1958, Helsinki) is a Finnish operatic mezzo-soprano . Lo%C3%AFc Jouannigot. Loïc Jouannigot (b. 1953 in Brittany, France) is a children's book illustrator . Keith Wiggins. Born in London, England in 1958, Keith began his racing career while at school as a kart driver in 1973 . Thomas Y. Howe, Jr.. Born in Auburn, New York, Howe completed preparatory studies . Steve 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 . Geno 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 . Andy Buist. Andy Buist born 25 August 1984 in Norwich, England is a rugby union player for Newcastle Falcons in the Guinness Premiership . Todd Jay Weinstein. Todd Jay Weinstein (born 1951) is a photographer and artist, born in Detroit, Michigan, and who now lives in New York City . Thomas McGreevy. Born in Quebec, he was the son of Robert McGreevy, a blacksmith, and Rose Smith . Martin Zobel. Martin Zobel (born 25 February 1957 in Tallinn) is an Estonian plant ecologist and professor at the University of Tartu . Keppel Harcourt Barnard. Keppel Harcourt Barnard (31 March 1887 London -- 22 September 1964 Cape Town), was a South African zoologist and museum director . Bill Kaiserman. Bill Kaiserman (born 8 September 1942 Brooklyn, New York) is a four-time Coty Award-winning designer (1974; 1975; 1976; 1978) . Arthur Yoria. Born in Chicago, Yoria started to play guitar very late while he was attending the University of Houston . John Skoyles. John Skoyles (b. 1949 in Queens, New York) is an American poet and writer . Sté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 . Gijs Vermeulen. Gijs Vermeulen (born May 7, 1981, Amsterdam) is a rower from the Netherlands . Jill Crossland. Jill Crossland is an English pianist, born in Yorkshire . Andrej Šeban. Andrej Šeban, born in Bratislava on June 26, 1962, is a well-known Slovak jazz fusion guitarist . Andrei 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 . Elizabeth 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) . Sim%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 . Marvin Delph. Marvin Delph (born in 1957 in Conway, Arkansas) is a retired American basketball player, who experienced his greatest success at the college level . Daniel Rosenfeld. Daniel Rosenfeld (born in Palestine, October 19, 1929) is a writer and expert on the Israeli-Palestinian conflict . George Smith. George was born at Chichester in Sussex, where his father, William Smith, was a tradesman and Baptist minister . Suzie Malone. Born in Sydney, Suzie became a dancer as soon as she could walk . Terence 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 . Frank Edwards. Frank Bathurst Edwards (6 September 1887 -- 5 March 1983) was an Australian politician . Ambalavaner 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 . Konstantin Matusevich. Konstantin Matusevich (; born 25 February 1971 in Kiev, in the Ukrainian SSR of the Soviet Union) is a retired Israeli high jumper . Moshe 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 . Leo Fernandez. Leo Fernandez is a current amateur and former professional snooker player born in Limerick, Ireland and living in London, England . Norman Mann. Norman Mann (March 3, 1914 -- February 9, 1994) was a professional ice hockey player who played 31 games in the National Hockey League . Tariq Iqbal. Tariq Iqbal (b. 1964 in Nairobi, Kenya) is a Kenyan cricketer . Ludvig 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 . Cliff Bergere. Cliff Bergere (December 6, 1896 Toledo, Ohio - June 18, 1980 Dade City, Florida) was an American racecar driver . John Benjamin Henck. John Benjamin Henck (October 20, 1815 Philadelphia - January 3, 1903 Montecito, California) was a classical scholar and civil engineer . Jason 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 . Gareth Russell. Gareth Russell is a British author, best known for writing the novel Popular . Alan 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 . Roger 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 . Robert 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 . Josh Quittner. Born in Manhattan, Quittner grew up in Reading, Pennsylvania . John Bernhard. John Bernhard (born May 17, 1957, Geneva, Switzerland) is a Swiss American artist and photographer best known for his surrealist nude studies . Douglas Paulson. Douglas Paulson (born 1980 Pennsylvania) is an artist based in New York City . J. 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 . Kajsa Kling. Kajsa Kling born December 25 1988 in Åre, Sweden is a alpine skier who competes in all disciplines . Charles 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 . Adam Macrow. Adam Macrow (born 23 November 1978, in Victoria) is a professional race car driver now living in Melbourne, Victoria, Australia . Alwina Valleria. Born Alwina Schoening in Baltimore, Valleria attended the Royal Academy of Music in London, making her operatic debut in 1871 in St Petersburg . James Lomax Bardsley. Bardsley was born at Nottingham on 7 July, 1801 . Bernie Lowe. Born Bernard Lowenthal in Philadelphia, Lowe started Teen Records and in 1955 was working with Freddie Bell and the Bellboys . Hakim Toumi. Hakim Toumi (Arabic: الحكيم التومي; born January 30, 1961 in Algiers, Algiers Province) is a retired male hammer thrower from Algeria . Richard West. Born in London, West attended Marlborough College before his national service spell in Trieste awakened a lifelong interest in Yugoslavia . John Bayard McPherson. Born in Harrisburg, Pennsylvania, McPherson attended Princeton College, receiving an AB in 1866 and an AM in 1869 . Stephen 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 . A. F. Kidd. AF Kidd is the pen name of Chico Kidd . John Milne Bramwell. John Milne Bramwell (1852 -- 1925) was a Scottish physician and author, born at Perth, and educated at the University of Edinburgh . Lew Stringer. Lew Stringer (born 22 March 1959, England) is a freelance comic artist and scriptwriter . George Russell French. George Russell French (1803--1881), antiquary, was born in London in 1803 . Tsotne Bakuria. Tsotne Bakuria (b. Dec. 22, 1971, Tbilisi, Georgia) was a member of the regional legislature of the Autonomous Republic of Adjara, Georgia . Thomas 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 . Theophilus 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 . Christian 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 . Ruth Fuller Sasaki. Ruth Fuller was born and grew up in Chicago, and enjoyed wealth and privilege . Diego Nargiso. Diego Nargiso (born 15 March 1970, in Naples) is a former tennis player from Italy . Keith Butler. Keith Butler is an award winning Indian Australian writer . Richie Dent. Richie Dent, writer, was born in Philadelphia, PA He graduated from the University of Redlands, with a BA in Creative Writing and Poetry . Jamielee McPherson. Jamielee McPherson born 9 September 1986 in Glasgow, Scotland, is an actress . Derek Coughlan. Coughlan joined his home town club Cork City in May 1996 from Brighton & Hove Albion where he'd made just one league appearance . Anita 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 . David Scott Milton. Milton was born during the Great Depression to a working class Jewish family in Pittsburgh, Pennsylvania . Alfred 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 . Christos Sirros. Christos Sirros (; born 2 February 1948, Athens) is a politician in the Province of Quebec, Canada . George 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 . Randolph 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 . William Lawrence Tower. William Lawrence Tower (born 1872, date of death unknown) was an American zoölogist, born in Halifax, Massachusetts . Lowell Cauffiel. Lowell Cauffiel, born in Michigan, USA, is an American writer and TV producer . Luis 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 . Rui Tavares. Rui Tavares (born 29 July 1972 in Lisbon) is a Portuguese politician and Member of the European Parliament . Giambattista 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 . Lee Blackett. Lee Blackett (born 21 November 1982 in Chester, Cheshire) is a rugby union footballer for Leeds Carnegie . Sergio Benvindo Junior. Sergio Benvindo Junior, born 1989, is a Swedish contemporary dancer . Spencer Wishart. Spencer Wishart (3 December 1889 Philadelphia, Pennsylvania -- 22 August 1914 Elgin, Illinois) was an American racecar driver . Mila 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 . Dave Marsh. Dave Marsh (born March 1, 1950, Detroit, Michigan) is an American music critic, author, editor and radio talk show host . Maria von Welser. Maria von Welser (born 26 June 1946 in Munich) is a German TV journalist and the President of UNICEF Germany . Arthur 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 . Kim Bauermeister. Kim Bauermeister (born 20 November 1970 in Stuttgart) is a retired German runner who specialized in the 3000 metres steeplechase . Ye Xuanping. Ye Xuanping (; born November 1924 in Guangzhou, Guangdong) is the former Governor of Guangdong province in the People's Republic of China . Niculae Conovici. Niculae Conovici (born 13 March 1948, Bucharest - died 7 June 2005, Bucharest) was a Romanian archeologist, amphorologist and numismat . John O'Conor. Born in Dublin, O'Conor attended Belvedere College in that city . Georgy 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 . Will 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 . Adrian 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 . Inge Israel. Born in Germany, Inge Israel grew up in France and Ireland and lived in Denmark for some years before settling in Canada . Ernest Peter Burger. Born in Augsburg, Burger was a machinist by trade . Jane Bathori. Jane Bathori (born Jeanne-Marie Berthier, June 14, 1877 - January 25, 1970) was a French opera singer . Paul 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 . Henry 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 . John Ridley Mitchell. Born in Livingston, Tennessee, Mitchell attended the public schools . Jane 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 . Philip King. Philip King, a British playwright and actor, was born in Yorkshire in 1904 . Spencer Bonfiglio. Spencer Bonfiglio is an award winning artist born in Philadelphia on October 5, 1991 . Ernst Witebsky. Ernst Witebsky, also Ernest Witebsky (* 3 September 1901 in Frankfurt am Main; † 7 December 1969) was a German-American immunologist . Clive 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 . Khashayar Karimian. Khashayar Karimian, born February 12, 1949 in Tehran, is an Iranian-Canadian biochemist, researcher and inventor . Mary Macmaster. Mary Macmaster (born 22 November 1955, Glasgow, Scotland) is a Scottish harpist, performing with The Poozies and the duo Sileas . Robert 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 . Ronald 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 . Loukas Sideras. Lucas Sideras, born in Athens (5th December 1944), is the former drummer of the Greek progressive rock band Aphrodite's Child . Terry Martin. Terry Martin born 25 May 1980 in Australia is a rugby league player for the Crusaders in National League One . Andrew 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 . John Cameron. Cameron was born at Glasgow and received his early education in his native city . Charles Follen Adams. Charles Follen Adams (born 21 April 1842 in Dorchester, Massachusetts-- 8 March 1918) was an American poet . Elizabeth Kay. Elizabeth Kay, born July 9, 1949 in London, is an English writer . Darren 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 . Thomas Haughey. Born in Glasgow, Scotland, Haughey received a limited education . Jan Čulík. Jan Čulík (born November 2, 1952 Prague) is an independent Czech journalist and academic . Scott Cleverdon. He was born and raised in Edinburgh, and trained in Glasgow's Royal Scottish Academy of Music and Drama . Emmanuel Hocquard. Emmanuel Hocquard (born in 1940 in Cannes) is a French poet who grew up in Tangier, Morocco . Blaine Marchand. Blaine Marchand (born 1949 Ottawa) is a Canadian poet . Cherry 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 . David 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 . Sam Holden. Sam Holden (born August 8, 1971, Kensington, London) is the pseudonym of a British author and journalist . Javeria 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 . Imre 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 . Godfrey 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 . Marcel Bertrand. Marcel Alexandre Bertrand (July 2, 1847 -- February 13, 1907) was a French geologist who was born in Paris . Nick 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 . Brendan Guilfoyle. Brendan Guilfoyle born 16 July 1984 in Kilkenny, Ireland is rugby league player for the Treaty City Titans in the Irish Elite League . Han 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 . Gerald 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 .